-- -- PostgreSQL database dump -- -- Dumped from database version 13.14 -- Dumped by pg_dump version 13.14 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', 'public', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; ALTER DATABASE stackernews SET timezone TO 'UTC'; -- -- Name: pgboss; Type: SCHEMA; Schema: -; Owner: - -- CREATE SCHEMA pgboss; -- -- Name: citext; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS citext WITH SCHEMA public; -- -- Name: EXTENSION citext; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION citext IS 'data type for case-insensitive character strings'; -- -- Name: ip4r; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS ip4r WITH SCHEMA public; -- -- Name: ltree; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS ltree WITH SCHEMA public; -- -- Name: EXTENSION ltree; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION ltree IS 'data type for hierarchical tree-like structures'; -- -- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; -- -- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; -- -- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public; -- -- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions'; -- -- Name: job_state; Type: TYPE; Schema: pgboss; Owner: - -- CREATE TYPE pgboss.job_state AS ENUM ( 'created', 'retry', 'active', 'completed', 'expired', 'cancelled', 'failed' ); -- -- Name: BillingType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."BillingType" AS ENUM ( 'MONTHLY', 'YEARLY', 'ONCE' ); -- -- Name: EarnType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."EarnType" AS ENUM ( 'POST', 'COMMENT', 'TIP_COMMENT', 'TIP_POST' ); -- -- Name: ItemActType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."ItemActType" AS ENUM ( 'VOTE', 'BOOST', 'TIP', 'STREAM', 'POLL', 'DONT_LIKE_THIS', 'FEE' ); -- -- Name: LogLevel; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."LogLevel" AS ENUM ( 'DEBUG', 'INFO', 'WARN', 'ERROR' ); -- -- Name: PostType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."PostType" AS ENUM ( 'LINK', 'DISCUSSION', 'JOB', 'POLL', 'BOUNTY' ); -- -- Name: RankingType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."RankingType" AS ENUM ( 'WOT', 'RECENT', 'AUCTION' ); -- -- Name: Status; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."Status" AS ENUM ( 'ACTIVE', 'STOPPED', 'NOSATS', 'GRACE' ); -- -- Name: SubActType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."SubActType" AS ENUM ( 'BILLING', 'REVENUE' ); -- -- Name: WalletType; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."WalletType" AS ENUM ( 'LIGHTNING_ADDRESS', 'LND' ); -- -- Name: WithdrawlStatus; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE public."WithdrawlStatus" AS ENUM ( 'INSUFFICIENT_BALANCE', 'INVALID_PAYMENT', 'PATHFINDING_TIMEOUT', 'ROUTE_NOT_FOUND', 'CONFIRMED', 'UNKNOWN_FAILURE' ); -- -- Name: assert_serialized(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.assert_serialized() RETURNS void LANGUAGE plpgsql AS $$ BEGIN IF (select current_setting('transaction_isolation') <> 'serializable') THEN RAISE EXCEPTION 'SN_NOT_SERIALIZABLE'; END IF; END; $$; -- -- Name: assign_name(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.assign_name() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN -- if doesn't have a name, SPLIT email on @ and assign to name IF NEW.name IS NULL THEN NEW.name = SPLIT_PART(NEW.email, '@', 1); END IF; -- replace unsupported characters (non alphanum + _) in name with _ NEW.name = REGEXP_REPLACE(NEW.name, '\W|_', '_', 'gi'); -- while name exists append random number WHILE EXISTS (SELECT 1 FROM users WHERE name = NEW.name) LOOP NEW.name = NEW.name || floor(random() * 10 + 1)::int; END LOOP; RETURN NEW; END; $$; -- -- Name: bounty_paid_after_act(integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.bounty_paid_after_act(item_id integer, user_id integer) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE root_id INTEGER; item_bounty INTEGER; sats_paid INTEGER; BEGIN PERFORM ASSERT_SERIALIZED(); -- get root item SELECT "rootId" INTO root_id FROM "Item" WHERE id = item_id; -- check if root item is 1. a bounty, 2. actor is the OP, 3. hasn't paid yet SELECT bounty INTO item_bounty FROM "Item" WHERE id = root_id AND "userId" = user_id AND ("bountyPaidTo" IS NULL OR item_id <> any ("bountyPaidTo")); -- if it is get the bounty amount IF item_bounty IS NOT NULL THEN -- check if the cumulative sats sent to this item by user_id is >= to bounty SELECT coalesce(sum("ItemAct"."msats"), 0)/1000 INTO sats_paid FROM "ItemAct" WHERE "ItemAct"."userId" = user_id AND "ItemAct"."itemId" = item_id AND "ItemAct".act IN ('TIP','FEE'); IF sats_paid >= item_bounty THEN UPDATE "Item" SET "bountyPaidTo" = array_append("bountyPaidTo", item_id) WHERE id = root_id; END IF; END IF; RETURN 0; END; $$; -- -- Name: confidence(double precision, double precision, double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.confidence(successes double precision, trials double precision, z double precision) RETURNS double precision LANGUAGE plpgsql AS $$ DECLARE p FLOAT; lhand FLOAT; rhand FLOAT; under FLOAT; BEGIN IF trials = 0 THEN RETURN 0; END IF; p := successes / trials; lhand := p + 1 / (2 * trials) * z * z; rhand := z * sqrt(p * (1 - p) / trials + z * z / (4 * trials * trials)); under := 1 + 1 / trials * z * z; RETURN (lhand - rhand) / under; END; $$; -- -- Name: confirm_invoice(text, bigint); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.confirm_invoice(lnd_id text, lnd_received bigint) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE user_id INTEGER; confirmed_at TIMESTAMP; BEGIN PERFORM ASSERT_SERIALIZED(); SELECT "userId", "confirmedAt" INTO user_id, confirmed_at FROM "Invoice" WHERE hash = lnd_id; IF confirmed_at IS NULL THEN UPDATE "Invoice" SET "msatsReceived" = lnd_received, "confirmedAt" = now_utc(), updated_at = now_utc() WHERE hash = lnd_id; UPDATE users SET msats = msats + lnd_received WHERE id = user_id; END IF; RETURN 0; END; $$; -- -- Name: confirm_withdrawl(integer, bigint, bigint); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.confirm_withdrawl(wid integer, msats_paid bigint, msats_fee_paid bigint) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE msats_fee_paying BIGINT; user_id INTEGER; BEGIN PERFORM ASSERT_SERIALIZED(); IF EXISTS (SELECT 1 FROM "Withdrawl" WHERE id = wid AND status IS NULL) THEN SELECT "msatsFeePaying", "userId" INTO msats_fee_paying, user_id FROM "Withdrawl" WHERE id = wid AND status IS NULL; UPDATE "Withdrawl" SET status = 'CONFIRMED', "msatsPaid" = msats_paid, "msatsFeePaid" = msats_fee_paid, updated_at = now_utc() WHERE id = wid AND status IS NULL; UPDATE users SET msats = msats + (msats_fee_paying - msats_fee_paid) WHERE id = user_id; END IF; RETURN 0; END; $$; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: Invoice; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Invoice" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, hash text NOT NULL, bolt11 text NOT NULL, "expiresAt" timestamp(3) without time zone NOT NULL, "confirmedAt" timestamp(3) without time zone, cancelled boolean DEFAULT false NOT NULL, "msatsRequested" bigint NOT NULL, "msatsReceived" bigint, "desc" text, preimage text, "isHeld" boolean, comment text, "lud18Data" jsonb, "confirmedIndex" bigint ); -- -- Name: create_invoice(text, text, text, timestamp without time zone, bigint, integer, text, text, jsonb, integer, bigint); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.create_invoice(hash text, preimage text, bolt11 text, expires_at timestamp without time zone, msats_req bigint, user_id integer, idesc text, comment text, lud18_data jsonb, inv_limit integer, balance_limit_msats bigint) RETURNS public."Invoice" LANGUAGE plpgsql AS $$ DECLARE invoice "Invoice"; inv_limit_reached BOOLEAN; balance_limit_reached BOOLEAN; inv_pending_msats BIGINT; BEGIN PERFORM ASSERT_SERIALIZED(); -- prevent too many pending invoices SELECT inv_limit > 0 AND count(*) >= inv_limit, COALESCE(sum("msatsRequested"), 0) INTO inv_limit_reached, inv_pending_msats FROM "Invoice" WHERE "userId" = user_id AND "expiresAt" > now_utc() AND "confirmedAt" IS NULL AND cancelled = false; IF inv_limit_reached THEN RAISE EXCEPTION 'SN_INV_PENDING_LIMIT'; END IF; -- prevent pending invoices + msats from exceeding the limit SELECT balance_limit_msats > 0 AND inv_pending_msats+msats_req+msats > balance_limit_msats INTO balance_limit_reached FROM users WHERE id = user_id; IF balance_limit_reached THEN RAISE EXCEPTION 'SN_INV_EXCEED_BALANCE'; END IF; -- we good, proceed frens INSERT INTO "Invoice" (hash, preimage, bolt11, "expiresAt", "msatsRequested", "userId", created_at, updated_at, "desc", comment, "lud18Data") VALUES (hash, preimage, bolt11, expires_at, msats_req, user_id, now_utc(), now_utc(), idesc, comment, lud18_data) RETURNING * INTO invoice; IF preimage IS NOT NULL THEN INSERT INTO pgboss.job (name, data, retrylimit, retrybackoff, startafter) VALUES ('finalizeHodlInvoice', jsonb_build_object('hash', hash), 21, true, expires_at); END IF; RETURN invoice; END; $$; -- -- Name: Item; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Item" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, title text, text text, url text, "userId" integer NOT NULL, "parentId" integer, path public.ltree, "pinId" integer, latitude double precision, location text, longitude double precision, "maxBid" integer, "maxSalary" integer, "minSalary" integer, remote boolean, "subName" public.citext, "statusUpdatedAt" timestamp(3) without time zone, status public."Status" DEFAULT 'ACTIVE'::public."Status" NOT NULL, company text, "weightedVotes" double precision DEFAULT 0 NOT NULL, boost integer DEFAULT 0 NOT NULL, "uploadId" integer, "pollCost" integer, "paidImgLink" boolean DEFAULT false NOT NULL, "commentMsats" bigint DEFAULT 0 NOT NULL, "lastCommentAt" timestamp(3) without time zone, ncomments integer DEFAULT 0 NOT NULL, msats bigint DEFAULT 0 NOT NULL, "weightedDownVotes" double precision DEFAULT 0 NOT NULL, bio boolean DEFAULT false NOT NULL, freebie boolean DEFAULT false NOT NULL, "deletedAt" timestamp(3) without time zone, "otsFile" bytea, "otsHash" text, bounty integer, "rootId" integer, "bountyPaidTo" integer[], upvotes integer DEFAULT 0 NOT NULL, "weightedComments" double precision DEFAULT 0 NOT NULL, "imgproxyUrls" jsonb, "noteId" text, outlawed boolean DEFAULT false NOT NULL, "pollExpiresAt" timestamp(3) without time zone ); -- -- Name: create_item(jsonb, jsonb, jsonb, interval, integer[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.create_item(jitem jsonb, forward jsonb, poll_options jsonb, spam_within interval, upload_ids integer[]) RETURNS public."Item" LANGUAGE plpgsql AS $_$ DECLARE user_msats BIGINT; cost_msats BIGINT := 1000; base_cost_msats BIGINT := 1000; freebie BOOLEAN; allow_freebies BOOLEAN := true; item "Item"; med_votes FLOAT; select_clause TEXT; BEGIN PERFORM ASSERT_SERIALIZED(); -- access fields with appropriate types item := jsonb_populate_record(NULL::"Item", jitem); SELECT msats INTO user_msats FROM users WHERE id = item."userId"; -- if this is a post, get the base cost of the sub IF item."parentId" IS NULL AND item."subName" IS NOT NULL THEN SELECT "baseCost" * 1000, "baseCost" * 1000, "allowFreebies" INTO base_cost_msats, cost_msats, allow_freebies FROM "Sub" WHERE name = item."subName"; END IF; IF item."maxBid" IS NULL THEN -- spam multiplier cost_msats := cost_msats * POWER(10, item_spam(item."parentId", item."userId", spam_within)); IF item."userId" = 27 THEN -- anon multiplier cost_msats := cost_msats * 100; END IF; END IF; -- add image fees IF upload_ids IS NOT NULL THEN cost_msats := cost_msats + (SELECT "nUnpaid" * "imageFeeMsats" FROM image_fees_info(item."userId", upload_ids)); UPDATE "Upload" SET paid = 't' WHERE id = ANY(upload_ids); END IF; -- it's only a freebie if it's no greater than the base cost, they have less than the cost, and boost = 0 freebie := allow_freebies AND (cost_msats <= base_cost_msats) AND (user_msats < cost_msats) AND (item.boost IS NULL OR item.boost = 0) AND item."userId" <> 27; IF NOT freebie AND cost_msats > user_msats THEN RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS'; END IF; -- get this user's median item score SELECT COALESCE( percentile_cont(0.5) WITHIN GROUP( ORDER BY "weightedVotes" - "weightedDownVotes"), 0) INTO med_votes FROM "Item" WHERE "userId" = item."userId"; -- if their median votes are positive, start at 0 -- if the median votes are negative, start their post with that many down votes -- basically: if their median post is bad, presume this post is too -- addendum: if they're an anon poster, always start at 0 IF med_votes >= 0 OR item."userId" = 27 THEN med_votes := 0; ELSE med_votes := ABS(med_votes); END IF; -- there's no great way to set default column values when using json_populate_record -- so we need to only select fields with non-null values that way when func input -- does not include a value, the default value is used instead of null SELECT string_agg(quote_ident(key), ',') INTO select_clause FROM jsonb_object_keys(jsonb_strip_nulls(jitem)) k(key); -- insert the item EXECUTE format($fmt$ INSERT INTO "Item" (%s, "weightedDownVotes", freebie) SELECT %1$s, %L, %L FROM jsonb_populate_record(NULL::"Item", %L) RETURNING * $fmt$, select_clause, med_votes, freebie, jitem) INTO item; INSERT INTO "ItemForward" ("itemId", "userId", "pct") SELECT item.id, "userId", "pct" FROM jsonb_populate_recordset(NULL::"ItemForward", forward); -- Automatically subscribe to one's own posts INSERT INTO "ThreadSubscription" ("itemId", "userId") VALUES (item.id, item."userId"); -- Automatically subscribe forward recipients to the new post INSERT INTO "ThreadSubscription" ("itemId", "userId") SELECT item.id, "userId" FROM jsonb_populate_recordset(NULL::"ItemForward", forward); INSERT INTO "PollOption" ("itemId", "option") SELECT item.id, "option" FROM jsonb_array_elements_text(poll_options) o("option"); IF NOT freebie THEN UPDATE users SET msats = msats - cost_msats WHERE id = item."userId"; INSERT INTO "ItemAct" (msats, "itemId", "userId", act) VALUES (cost_msats, item.id, item."userId", 'FEE'); END IF; -- if this item has boost IF item.boost > 0 THEN PERFORM item_act(item.id, item."userId", 'BOOST', item.boost); END IF; -- if this is a job IF item."maxBid" IS NOT NULL THEN PERFORM run_auction(item.id); END IF; -- if this is a bio IF item.bio THEN UPDATE users SET "bioId" = item.id WHERE id = item."userId"; END IF; -- record attachments IF upload_ids IS NOT NULL THEN INSERT INTO "ItemUpload" ("itemId", "uploadId") SELECT item.id, * FROM UNNEST(upload_ids) ON CONFLICT DO NOTHING; END IF; -- schedule imgproxy job INSERT INTO pgboss.job (name, data, retrylimit, retrybackoff, startafter) VALUES ('imgproxy', jsonb_build_object('id', item.id), 21, true, now() + interval '5 seconds'); RETURN item; END; $_$; -- -- Name: create_scheduled_jobs(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.create_scheduled_jobs() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('trust', '0 2 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('auction', '* * * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('earn', '0 0 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('streak', '15 0 * * *','America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('views', '0 0 * * *', 'America/Chicago') ON CONFLICT DO NOTHING; INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('rankViews', '* * * * *', 'America/Chicago') ON CONFLICT DO NOTHING; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: Withdrawl; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Withdrawl" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, hash text, bolt11 text, "msatsPaying" bigint NOT NULL, "msatsPaid" bigint, "msatsFeePaying" bigint NOT NULL, "msatsFeePaid" bigint, status public."WithdrawlStatus", "autoWithdraw" boolean DEFAULT false NOT NULL ); -- -- Name: create_withdrawl(text, text, bigint, bigint, text, boolean); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.create_withdrawl(lnd_id text, invoice text, msats_amount bigint, msats_max_fee bigint, username text, auto_withdraw boolean) RETURNS public."Withdrawl" LANGUAGE plpgsql AS $$ DECLARE user_id INTEGER; user_msats BIGINT; withdrawl "Withdrawl"; BEGIN PERFORM ASSERT_SERIALIZED(); SELECT msats, id INTO user_msats, user_id FROM users WHERE name = username; IF (msats_amount + msats_max_fee) > user_msats THEN RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS'; END IF; IF EXISTS (SELECT 1 FROM "Withdrawl" WHERE hash = lnd_id AND status IS NULL) THEN RAISE EXCEPTION 'SN_PENDING_WITHDRAWL_EXISTS'; END IF; IF EXISTS (SELECT 1 FROM "Withdrawl" WHERE hash = lnd_id AND status = 'CONFIRMED') THEN RAISE EXCEPTION 'SN_CONFIRMED_WITHDRAWL_EXISTS'; END IF; INSERT INTO "Withdrawl" (hash, bolt11, "msatsPaying", "msatsFeePaying", "userId", "autoWithdraw", created_at, updated_at) VALUES (lnd_id, invoice, msats_amount, msats_max_fee, user_id, auto_withdraw, now_utc(), now_utc()) RETURNING * INTO withdrawl; UPDATE users SET msats = msats - msats_amount - msats_max_fee WHERE id = user_id; RETURN withdrawl; END; $$; -- -- Name: donate(integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.donate(sats integer, user_id integer) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE user_sats INTEGER; BEGIN PERFORM ASSERT_SERIALIZED(); SELECT msats / 1000 INTO user_sats FROM users WHERE id = user_id; IF sats > user_sats THEN RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS'; END IF; UPDATE users SET msats = msats - (sats * 1000) WHERE id = user_id; INSERT INTO "Donation" (sats, "userId", created_at, updated_at) VALUES (sats, user_id, now_utc(), now_utc()); RETURN sats; END; $$; -- -- Name: earn(integer, bigint, timestamp without time zone, public."EarnType", integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.earn(user_id integer, earn_msats bigint, created_at timestamp without time zone, type public."EarnType", type_id integer, rank integer) RETURNS void LANGUAGE plpgsql AS $$ DECLARE BEGIN PERFORM ASSERT_SERIALIZED(); -- insert into earn INSERT INTO "Earn" (msats, "userId", created_at, type, "typeId", rank) VALUES (earn_msats, user_id, created_at, type, type_id, rank); -- give the user the sats UPDATE users SET msats = msats + earn_msats, "stackedMsats" = "stackedMsats" + earn_msats WHERE id = user_id; IF type = 'POST' OR type = 'COMMENT' THEN PERFORM sats_after_tip(type_id, NULL, earn_msats); END IF; END; $$; -- -- Name: image_fees_info(integer, integer[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.image_fees_info(user_id integer, upload_ids integer[]) RETURNS TABLE(bytes24h integer, "bytesUnpaid" integer, "nUnpaid" integer, "imageFeeMsats" bigint) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT uploadinfo.*, CASE -- anons always pay 100 sats per image WHEN user_id = 27 THEN 100000::BIGINT ELSE CASE -- 50 MB are free per stacker and 24 hours WHEN uploadinfo."bytes24h" + uploadinfo."bytesUnpaid" <= 50 * 1024 * 1024 THEN 0::BIGINT WHEN uploadinfo."bytes24h" + uploadinfo."bytesUnpaid" <= 75 * 1024 * 1024 THEN 10000::BIGINT WHEN uploadinfo."bytes24h" + uploadinfo."bytesUnpaid" <= 100 * 1024 * 1024 THEN 100000::BIGINT ELSE 1000000::BIGINT END END AS "imageFeeMsats" FROM ( SELECT -- how much bytes did stacker upload in last 24 hours? COALESCE(SUM(size) FILTER(WHERE paid = 't' AND created_at >= NOW() - interval '24 hours'), 0)::INTEGER AS "bytes24h", -- how much unpaid bytes do they want to upload now? COALESCE(SUM(size) FILTER(WHERE paid = 'f' AND id = ANY(upload_ids)), 0)::INTEGER AS "bytesUnpaid", -- how many unpaid images do they want to upload now? COALESCE(COUNT(id) FILTER(WHERE paid = 'f' AND id = ANY(upload_ids)), 0)::INTEGER AS "nUnpaid" FROM "Upload" WHERE "Upload"."userId" = user_id ) uploadinfo; RETURN; END; $$; -- -- Name: index_item(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.index_item() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN -- insert indexItem pgboss.job with id INSERT INTO pgboss.job (name, data, priority) VALUES ('indexItem', jsonb_build_object('id', NEW.id), -100); RETURN NEW; END; $$; -- -- Name: invite_drain(integer, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.invite_drain(user_id integer, invite_id text) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE inviter_id INTEGER; inviter_sats INTEGER; gift INTEGER; BEGIN PERFORM ASSERT_SERIALIZED(); -- check user was created in last hour -- check user did not already redeem an invite PERFORM FROM users WHERE id = user_id AND users.created_at >= NOW() AT TIME ZONE 'UTC' - INTERVAL '1 HOUR' AND users."inviteId" IS NULL; IF NOT FOUND THEN RAISE EXCEPTION 'SN_INELIGIBLE'; END IF; -- check that invite has not reached limit -- check that invite is not revoked SELECT "Invite"."userId", "Invite".gift INTO inviter_id, gift FROM "Invite" LEFT JOIN users ON users."inviteId" = invite_id WHERE "Invite".id = invite_id AND NOT "Invite".revoked GROUP BY "Invite".id HAVING COUNT(DISTINCT users.id) < "Invite".limit OR "Invite".limit IS NULL; IF NOT FOUND THEN RAISE EXCEPTION 'SN_REVOKED_OR_EXHAUSTED'; END IF; -- check that inviter has sufficient balance SELECT (msats / 1000) INTO inviter_sats FROM users WHERE id = inviter_id; IF inviter_sats < gift THEN RAISE EXCEPTION 'SN_REVOKED_OR_EXHAUSTED'; END IF; -- subtract amount from inviter UPDATE users SET msats = msats - (1000 * gift) WHERE id = inviter_id; -- add amount to invitee UPDATE users SET msats = msats + (1000 * gift), "inviteId" = invite_id, "referrerId" = inviter_id WHERE id = user_id; RETURN 0; END; $$; -- -- Name: item_act(integer, integer, public."ItemActType", integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_act(item_id integer, user_id integer, act public."ItemActType", act_sats integer) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE user_msats BIGINT; act_msats BIGINT; fee_msats BIGINT; item_act_id INTEGER; fwd_entry record; -- for loop iterator variable to iterate across forward recipients fwd_msats BIGINT; -- for loop variable calculating how many msats to give each forward recipient total_fwd_msats BIGINT := 0; -- accumulator to see how many msats have been forwarded for the act BEGIN PERFORM ASSERT_SERIALIZED(); IF act_sats <= 0 THEN RETURN 0; END IF; act_msats := act_sats * 1000; SELECT msats INTO user_msats FROM users WHERE id = user_id; IF act_msats > user_msats THEN RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS'; END IF; -- deduct msats from actor UPDATE users SET msats = msats - act_msats WHERE id = user_id; IF act = 'TIP' THEN -- call to influence weightedVotes ... we need to do this before we record the acts because -- the priors acts are taken into account PERFORM weighted_votes_after_tip(item_id, user_id, act_sats); -- call to denormalize sats and commentSats PERFORM sats_after_tip(item_id, user_id, act_msats); -- take 10% and insert as FEE fee_msats := CEIL(act_msats * 0.1); act_msats := act_msats - fee_msats; -- save the fee act into item_act_id so we can record referral acts INSERT INTO "ItemAct" (msats, "itemId", "userId", act, created_at, updated_at) VALUES (fee_msats, item_id, user_id, 'FEE', now_utc(), now_utc()) RETURNING id INTO item_act_id; -- leave the rest as a tip INSERT INTO "ItemAct" (msats, "itemId", "userId", act, created_at, updated_at) VALUES (act_msats, item_id, user_id, 'TIP', now_utc(), now_utc()); -- denormalize bounty paid (if applicable) PERFORM bounty_paid_after_act(item_id, user_id); -- add sats to actees' balance and stacked count FOR fwd_entry IN SELECT "userId", "pct" FROM "ItemForward" WHERE "itemId" = item_id LOOP -- fwd_msats represents the sats for this forward recipient from this particular tip action fwd_msats := act_msats * fwd_entry.pct / 100; -- keep track of how many msats have been forwarded, so we can give any remaining to OP total_fwd_msats := fwd_msats + total_fwd_msats; UPDATE users SET msats = msats + fwd_msats, "stackedMsats" = "stackedMsats" + fwd_msats WHERE id = fwd_entry."userId"; END LOOP; -- Give OP any remaining msats after forwards have been applied IF act_msats - total_fwd_msats > 0 THEN UPDATE users SET msats = msats + act_msats - total_fwd_msats, "stackedMsats" = "stackedMsats" + act_msats - total_fwd_msats WHERE id = (SELECT "userId" FROM "Item" WHERE id = item_id); END IF; ELSE -- BOOST, POLL, DONT_LIKE_THIS, STREAM -- call to influence if DONT_LIKE_THIS weightedDownVotes IF act = 'DONT_LIKE_THIS' THEN PERFORM weighted_downvotes_after_act(item_id, user_id, act_sats); END IF; INSERT INTO "ItemAct" (msats, "itemId", "userId", act, created_at, updated_at) VALUES (act_msats, item_id, user_id, act, now_utc(), now_utc()) RETURNING id INTO item_act_id; END IF; -- store referral effects PERFORM referral_act(item_act_id); RETURN 0; END; $$; -- -- Name: item_comments(integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments(_item_id integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE 'CREATE TEMP TABLE IF NOT EXISTS t_item ON COMMIT DROP AS' || ' SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' to_jsonb(users.*) as user ' || ' FROM "Item" ' || ' JOIN users ON users.id = "Item"."userId" ' || ' WHERE "Item".path <@ (SELECT path FROM "Item" WHERE id = $1) ' || _where USING _item_id, _level, _where, _order_by; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, item_comments("Item".id, $2 - 1, $3, $4) AS comments ' || ' FROM t_item "Item"' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ) sub' INTO result USING _item_id, _level, _where, _order_by; RETURN result; END $_$; -- -- Name: item_comments_with_me(integer, integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments_with_me(_item_id integer, _me_id integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql STABLE PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' item_comments_with_me("Item".id, $5, $2 - 1, $3, $4) AS comments, ' || ' to_jsonb(users.*) || jsonb_build_object(''meMute'', "Mute"."mutedId" IS NOT NULL) AS user, ' || ' COALESCE("ItemAct"."meMsats", 0) AS "meMsats", COALESCE("ItemAct"."meDontLike", false) AS "meDontLike", ' || ' "Bookmark"."itemId" IS NOT NULL AS "meBookmark", "ThreadSubscription"."itemId" IS NOT NULL AS "meSubscription" ' || ' FROM "Item" p ' || ' JOIN "Item" ON "Item"."parentId" = p.id ' || ' JOIN users ON users.id = "Item"."userId" ' || ' LEFT JOIN "Mute" ON "Mute"."muterId" = $5 AND "Mute"."mutedId" = "Item"."userId"' || ' LEFT JOIN "Bookmark" ON "Bookmark"."itemId" = "Item".id AND "Bookmark"."userId" = $5 ' || ' LEFT JOIN "ThreadSubscription" ON "ThreadSubscription"."itemId" = "Item".id AND "ThreadSubscription"."userId" = $5 ' || ' LEFT JOIN LATERAL ( ' || ' SELECT "itemId", sum("ItemAct".msats) FILTER (WHERE act = ''FEE'' OR act = ''TIP'') AS "meMsats", ' || ' bool_or(act = ''DONT_LIKE_THIS'') AS "meDontLike" ' || ' FROM "ItemAct" ' || ' WHERE "ItemAct"."userId" = $5 ' || ' AND "ItemAct"."itemId" = "Item".id ' || ' GROUP BY "ItemAct"."itemId" ' || ' ) "ItemAct" ON true ' || ' WHERE p.id = $1 ' || _where || ' ' || _order_by || ' ) sub' INTO result USING _item_id, _level, _where, _order_by, _me_id; RETURN result; END $_$; -- -- Name: item_comments_zaprank_with_me(integer, integer, integer, integer, text, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_comments_zaprank_with_me(_item_id integer, _global_seed integer, _me_id integer, _level integer, _where text, _order_by text) RETURNS jsonb LANGUAGE plpgsql PARALLEL SAFE AS $_$ DECLARE result jsonb; BEGIN IF _level < 1 THEN RETURN '[]'::jsonb; END IF; EXECUTE 'CREATE TEMP TABLE IF NOT EXISTS t_item ON COMMIT DROP AS' || ' SELECT "Item".*, "Item".created_at at time zone ''UTC'' AS "createdAt", "Item".updated_at at time zone ''UTC'' AS "updatedAt", ' || ' to_jsonb(users.*) || jsonb_build_object(''meMute'', "Mute"."mutedId" IS NOT NULL) AS user, ' || ' COALESCE("ItemAct"."meMsats", 0) AS "meMsats", COALESCE("ItemAct"."meDontLikeMsats", 0) AS "meDontLikeMsats", ' || ' "Bookmark"."itemId" IS NOT NULL AS "meBookmark", "ThreadSubscription"."itemId" IS NOT NULL AS "meSubscription", ' || ' GREATEST(g.tf_hot_score, l.tf_hot_score) AS personal_hot_score, GREATEST(g.tf_top_score, l.tf_top_score) AS personal_top_score ' || ' FROM "Item" ' || ' JOIN users ON users.id = "Item"."userId" ' || ' LEFT JOIN "Mute" ON "Mute"."muterId" = $5 AND "Mute"."mutedId" = "Item"."userId"' || ' LEFT JOIN "Bookmark" ON "Bookmark"."userId" = $5 AND "Bookmark"."itemId" = "Item".id ' || ' LEFT JOIN "ThreadSubscription" ON "ThreadSubscription"."userId" = $5 AND "ThreadSubscription"."itemId" = "Item".id ' || ' LEFT JOIN LATERAL ( ' || ' SELECT "itemId", sum("ItemAct".msats) FILTER (WHERE act = ''FEE'' OR act = ''TIP'') AS "meMsats", ' || ' sum("ItemAct".msats) FILTER (WHERE act = ''DONT_LIKE_THIS'') AS "meDontLikeMsats" ' || ' FROM "ItemAct" ' || ' WHERE "ItemAct"."userId" = $5 ' || ' AND "ItemAct"."itemId" = "Item".id ' || ' GROUP BY "ItemAct"."itemId" ' || ' ) "ItemAct" ON true ' || ' LEFT JOIN zap_rank_personal_view g ON g."viewerId" = $6 AND g.id = "Item".id ' || ' LEFT JOIN zap_rank_personal_view l ON l."viewerId" = $5 AND l.id = g.id ' || ' WHERE "Item".path <@ (SELECT path FROM "Item" WHERE id = $1) ' || _where || ' ' USING _item_id, _level, _where, _order_by, _me_id, _global_seed; EXECUTE '' || 'SELECT COALESCE(jsonb_agg(sub), ''[]''::jsonb) AS comments ' || 'FROM ( ' || ' SELECT "Item".*, item_comments_zaprank_with_me("Item".id, $6, $5, $2 - 1, $3, $4) AS comments ' || ' FROM t_item "Item" ' || ' WHERE "Item"."parentId" = $1 ' || _order_by || ' ) sub' INTO result USING _item_id, _level, _where, _order_by, _me_id, _global_seed; RETURN result; END $_$; -- -- Name: item_forward_pct_total_trigger_func(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_forward_pct_total_trigger_func() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN IF (SELECT SUM(pct) FROM "ItemForward" WHERE "itemId" = NEW."itemId") > 100 THEN raise exception 'Total forward pct exceeds 100'; END IF; RETURN NULL; END; $$; -- -- Name: item_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, comments bigint, jobs bigint, posts bigint, territories bigint, zaps bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, count(*) FILTER (WHERE type = 'COMMENT') as comments, count(*) FILTER (WHERE type = 'JOB') as jobs, count(*) FILTER (WHERE type = 'POST') as posts, count(*) FILTER (WHERE type = 'TERRITORY') as territories, count(*) FILTER (WHERE type = 'ZAP') as zaps FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT created_at, CASE WHEN "subName" = 'jobs' THEN 'JOB' WHEN "parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type FROM "Item" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, 'TERRITORY' as type FROM "Sub" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, 'ZAP' as type FROM "ItemAct" WHERE act = 'TIP' AND created_at >= min_utc)) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: item_spam(integer, integer, interval); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.item_spam(parent_id integer, user_id integer, within interval) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE repeats INTEGER; self_replies INTEGER; BEGIN -- no fee escalation IF within = interval '0' THEN RETURN 0; END IF; SELECT count(*) INTO repeats FROM "Item" WHERE ( (parent_id IS NULL AND "parentId" IS NULL) OR ("parentId" = parent_id AND user_id <> (SELECT i."userId" FROM "Item" i WHERE i.id = "Item"."rootId")) ) AND "userId" = user_id AND created_at > now_utc() - within; IF parent_id IS NULL THEN RETURN repeats; END IF; WITH RECURSIVE base AS ( SELECT "Item".id, "Item"."parentId", "Item"."userId" FROM "Item" WHERE id = parent_id AND "userId" = user_id AND created_at > now_utc() - within AND user_id <> (SELECT i."userId" FROM "Item" i WHERE i.id = "Item"."rootId") UNION ALL SELECT "Item".id, "Item"."parentId", "Item"."userId" FROM base p JOIN "Item" ON "Item".id = p."parentId" AND "Item"."userId" = p."userId" AND "Item".created_at > now_utc() - within) SELECT count(*) INTO self_replies FROM base; RETURN repeats + self_replies; END; $$; -- -- Name: ncomments_after_comment(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.ncomments_after_comment() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE user_trust DOUBLE PRECISION; BEGIN -- grab user's trust who is commenting SELECT trust INTO user_trust FROM users WHERE id = NEW."userId"; UPDATE "Item" SET "lastCommentAt" = now_utc(), "ncomments" = "ncomments" + 1 WHERE id <> NEW.id and path @> NEW.path; -- we only want to add the user's trust to weightedComments if they aren't -- already the author of a descendant comment UPDATE "Item" SET "weightedComments" = "weightedComments" + user_trust FROM ( -- for every ancestor of the new comment, return the ones that don't have -- the same author in their descendants SELECT p.id FROM "Item" p -- all decendants of p that aren't the new comment JOIN "Item" c ON c.path <@ p.path AND c.id <> NEW.id -- p is an ancestor of this comment, it isn't itself, and it doesn't have the same author WHERE p.path @> NEW.path AND p.id <> NEW.id AND p."userId" <> NEW."userId" GROUP BY p.id -- only return p if it doesn't have any descendants with the same author as the comment HAVING bool_and(c."userId" <> NEW."userId") ) fresh WHERE "Item".id = fresh.id; RETURN NEW; END; $$; -- -- Name: now_utc(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.now_utc() RETURNS timestamp without time zone LANGUAGE sql AS $$ select now() at time zone 'utc'; $$; -- -- Name: pin_delete_trigger_func(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.pin_delete_trigger_func() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN DELETE FROM pgboss.schedule where name = 'repin-' || old.id; RETURN NULL; END; $$; -- -- Name: pin_upsert_trigger_func(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.pin_upsert_trigger_func() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN -- only schedule if pin has new.cron set IF new.cron IS NOT NULL THEN -- pgboss updates when inserts have the same name INSERT INTO pgboss.schedule (name, cron, timezone) VALUES ('repin-' || new.id, new.cron, new.timezone) ON CONFLICT (name) DO UPDATE SET cron = EXCLUDED.cron, timezone = EXCLUDED.timezone, data = EXCLUDED.data, options = EXCLUDED.options, updated_on = now(); -- if old.cron is set but new.cron isn't ... we need to delete the job ELSIF old.cron IS NOT NULL AND new.cron IS NULL THEN DELETE FROM pgboss.schedule where name = 'repin-' || new.id; END IF; RETURN new; END; $$; -- -- Name: poll_vote(integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.poll_vote(option_id integer, user_id integer) RETURNS public."Item" LANGUAGE plpgsql AS $$ DECLARE item "Item"; option "PollOption"; BEGIN PERFORM ASSERT_SERIALIZED(); SELECT * INTO option FROM "PollOption" where id = option_id; IF option IS NULL THEN RAISE EXCEPTION 'INVALID_POLL_OPTION'; END IF; SELECT * INTO item FROM "Item" where id = option."itemId"; IF item IS NULL THEN RAISE EXCEPTION 'POLL_DOES_NOT_EXIST'; END IF; IF item."userId" = user_id THEN RAISE EXCEPTION 'POLL_OWNER_CANT_VOTE'; END IF; IF EXISTS (SELECT 1 FROM "PollVote" WHERE "itemId" = item.id AND "userId" = user_id) THEN RAISE EXCEPTION 'POLL_VOTE_ALREADY_EXISTS'; END IF; PERFORM item_act(item.id, user_id, 'POLL', item."pollCost"); INSERT INTO "PollVote" (created_at, updated_at, "itemId", "pollOptionId", "userId") VALUES (now_utc(), now_utc(), item.id, option_id, user_id); RETURN item; END; $$; -- -- Name: referral_act(integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.referral_act(item_act_id integer) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE act_act "ItemActType"; act_msats BIGINT; act_item_id INTEGER; act_user_id INTEGER; referrer_id INTEGER; referral_msats BIGINT; fwd_ref_msats BIGINT; total_fwd_ref_msats BIGINT := 0; fwd_entry record; BEGIN PERFORM ASSERT_SERIALIZED(); -- get the sats for the action that haven't already been forwarded SELECT msats, act, "userId", "itemId" INTO act_msats, act_act, act_user_id, act_item_id FROM "ItemAct" WHERE id = item_act_id; referral_msats := CEIL(act_msats * .21); -- take 21% of the act where the referrer is the actor's referrer IF act_act IN ('BOOST', 'STREAM') THEN SELECT "referrerId" INTO referrer_id FROM users WHERE id = act_user_id; IF referrer_id IS NULL THEN RETURN 0; END IF; INSERT INTO "ReferralAct" ("referrerId", "itemActId", msats, created_at, updated_at) VALUES(referrer_id, item_act_id, referral_msats, now_utc(), now_utc()); UPDATE users SET msats = msats + referral_msats, "stackedMsats" = "stackedMsats" + referral_msats WHERE id = referrer_id; -- take 21% of the fee where the referrer is the item's creator (and/or the item's forward users) ELSIF act_act = 'FEE' THEN FOR fwd_entry IN SELECT users."referrerId" AS referrer_id, "ItemForward"."pct" AS pct FROM "ItemForward" JOIN users ON users.id = "ItemForward"."userId" WHERE "ItemForward"."itemId" = act_item_id LOOP -- fwd_msats represents the sats for this forward recipient from this particular tip action fwd_ref_msats := referral_msats * fwd_entry.pct / 100; -- keep track of how many msats have been forwarded, so we can give any remaining to OP total_fwd_ref_msats := fwd_ref_msats + total_fwd_ref_msats; -- no referrer or tipping their own referee, no referral act CONTINUE WHEN fwd_entry.referrer_id IS NULL OR fwd_entry.referrer_id = act_user_id; INSERT INTO "ReferralAct" ("referrerId", "itemActId", msats, created_at, updated_at) VALUES (fwd_entry.referrer_id, item_act_id, fwd_ref_msats, now_utc(), now_utc()); UPDATE users SET msats = msats + fwd_ref_msats, "stackedMsats" = "stackedMsats" + fwd_ref_msats WHERE id = fwd_entry.referrer_id; END LOOP; -- Give OP any remaining msats after forwards have been applied IF referral_msats - total_fwd_ref_msats > 0 THEN SELECT users."referrerId" INTO referrer_id FROM "Item" JOIN users ON users.id = "Item"."userId" WHERE "Item".id = act_item_id; IF referrer_id IS NULL OR referrer_id = act_user_id THEN RETURN 0; END IF; INSERT INTO "ReferralAct" ("referrerId", "itemActId", msats, created_at, updated_at) VALUES (referrer_id, item_act_id, referral_msats - total_fwd_ref_msats, now_utc(), now_utc()); UPDATE users SET msats = msats + referral_msats - total_fwd_ref_msats, "stackedMsats" = "stackedMsats" + referral_msats - total_fwd_ref_msats WHERE id = referrer_id; END IF; END IF; RETURN 0; END; $$; -- -- Name: refreshallmaterializedviews(text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.refreshallmaterializedviews(schema_arg text DEFAULT 'public'::text) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE r RECORD; BEGIN RAISE NOTICE 'Refreshing materialized view in schema %', schema_arg; FOR r IN SELECT matviewname FROM pg_matviews WHERE schemaname = schema_arg LOOP RAISE NOTICE 'Refreshing %.%', schema_arg, r.matviewname; EXECUTE 'REFRESH MATERIALIZED VIEW ' || schema_arg || '.' || r.matviewname; END LOOP; RETURN 1; END $$; -- -- Name: reg_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.reg_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, referrals bigint, organic bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, count("referrerId") as referrals, count(users.id) FILTER(WHERE id > 616) - count("inviteId") as organic FROM generate_series(min, max, ival) period(t) LEFT JOIN users ON period.t = date_trunc(date_part, timezone('America/Chicago', created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago')) GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: reverse_withdrawl(integer, public."WithdrawlStatus"); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.reverse_withdrawl(wid integer, wstatus public."WithdrawlStatus") RETURNS integer LANGUAGE plpgsql AS $$ DECLARE msats_fee_paying BIGINT; msats_paying BIGINT; user_id INTEGER; BEGIN PERFORM ASSERT_SERIALIZED(); IF EXISTS (SELECT 1 FROM "Withdrawl" WHERE id = wid AND status IS NULL) THEN SELECT "msatsPaying", "msatsFeePaying", "userId" INTO msats_paying, msats_fee_paying, user_id FROM "Withdrawl" WHERE id = wid AND status IS NULL; UPDATE "Withdrawl" SET status = wstatus, updated_at = now_utc() WHERE id = wid AND status IS NULL; UPDATE users SET msats = msats + msats_paying + msats_fee_paying WHERE id = user_id; END IF; RETURN 0; END; $$; -- -- Name: run_auction(integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.run_auction(item_id integer) RETURNS void LANGUAGE plpgsql AS $$ DECLARE bid_sats INTEGER; user_msats BIGINT; user_id INTEGER; item_status "Status"; status_updated_at timestamp(3); BEGIN PERFORM ASSERT_SERIALIZED(); -- extract data we need SELECT "maxBid", "userId", status, "statusUpdatedAt" INTO bid_sats, user_id, item_status, status_updated_at FROM "Item" WHERE id = item_id; SELECT msats INTO user_msats FROM users WHERE id = user_id; -- 0 bid items expire after 30 days unless updated IF bid_sats = 0 THEN IF item_status <> 'STOPPED' THEN IF status_updated_at < now_utc() - INTERVAL '30 days' THEN UPDATE "Item" SET status = 'STOPPED', "statusUpdatedAt" = now_utc() WHERE id = item_id; ELSEIF item_status = 'NOSATS' THEN UPDATE "Item" SET status = 'ACTIVE' WHERE id = item_id; END IF; END IF; RETURN; END IF; -- check if user wallet has enough sats IF bid_sats * 1000 > user_msats THEN -- if not, set status = NOSATS and statusUpdatedAt to now_utc if not already set IF item_status <> 'NOSATS' THEN UPDATE "Item" SET status = 'NOSATS', "statusUpdatedAt" = now_utc() WHERE id = item_id; ELSEIF status_updated_at < now_utc() - INTERVAL '30 days' THEN UPDATE "Item" SET status = 'STOPPED', "statusUpdatedAt" = now_utc() WHERE id = item_id; END IF; ELSE PERFORM item_act(item_id, user_id, 'STREAM', bid_sats); -- update item status = ACTIVE and statusUpdatedAt = now_utc if NOSATS IF item_status = 'NOSATS' THEN UPDATE "Item" SET status = 'ACTIVE', "statusUpdatedAt" = now_utc() WHERE id = item_id; END IF; END IF; END; $$; -- -- Name: sats_after_tip(integer, integer, bigint); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.sats_after_tip(item_id integer, user_id integer, tip_msats bigint) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE item "Item"; BEGIN SELECT * FROM "Item" WHERE id = item_id INTO item; IF user_id <> 27 AND item."userId" = user_id THEN RETURN 0; END IF; UPDATE "Item" SET "msats" = "msats" + tip_msats WHERE id = item.id; UPDATE "Item" SET "commentMsats" = "commentMsats" + tip_msats WHERE id <> item.id and path @> item.path; RETURN 1; END; $$; -- -- Name: set_timezone_utc_currentdb(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.set_timezone_utc_currentdb() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN EXECUTE 'ALTER DATABASE '||current_database()||' SET TIMEZONE TO ''UTC'''; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: spender_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.spender_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, "userId" integer, type text) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, u."userId", u.type FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, "ItemAct"."userId", act::text as type FROM "ItemAct" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, "Donation"."userId", 'DONATION' as type FROM "Donation" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, "SubAct"."userId", 'TERRITORY' as type FROM "SubAct" WHERE "SubAct".type = 'BILLING' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t, u."userId", u.type ORDER BY period.t ASC; END; $$; -- -- Name: spending_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.spending_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, jobs bigint, boost bigint, fees bigint, tips bigint, donations bigint, territories bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, coalesce(floor(sum(msats) FILTER (WHERE act = 'STREAM')/1000), 0)::BIGINT as jobs, coalesce(floor(sum(msats) FILTER (WHERE act = 'BOOST')/1000), 0)::BIGINT as boost, coalesce(floor(sum(msats) FILTER (WHERE act NOT IN ('BOOST', 'TIP', 'STREAM', 'DONATION', 'TERRITORY'))/1000), 0)::BIGINT as fees, coalesce(floor(sum(msats) FILTER (WHERE act = 'TIP')/1000), 0)::BIGINT as tips, coalesce(floor(sum(msats) FILTER (WHERE act = 'DONATION')/1000), 0)::BIGINT as donations, coalesce(floor(sum(msats) FILTER (WHERE act = 'TERRITORY')/1000), 0)::BIGINT as territories FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, msats, act::text as act FROM "ItemAct" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, sats * 1000 as msats, 'DONATION' as act FROM "Donation" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, msats, 'TERRITORY' as act FROM "SubAct" WHERE type = 'BILLING' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: stackers_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.stackers_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, "userId" integer, type text) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, u."userId", u.type FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, "Item"."userId", CASE WHEN "Item"."parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc) UNION ALL (SELECT created_at, "Earn"."userId", 'EARN' as type FROM "Earn" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, "ReferralAct"."referrerId" as "userId", 'REFERRAL' as type FROM "ReferralAct" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, "SubAct"."userId", 'REVENUE' as type FROM "SubAct" WHERE "SubAct".type = 'REVENUE' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t, u."userId", u.type ORDER BY period.t ASC; END; $$; -- -- Name: stacking_growth(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.stacking_growth(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, rewards bigint, posts bigint, comments bigint, referrals bigint, territories bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, coalesce(floor(sum(airdrop)/1000),0)::BIGINT as rewards, coalesce(floor(sum(post)/1000),0)::BIGINT as posts, coalesce(floor(sum(comment)/1000),0)::BIGINT as comments, coalesce(floor(sum(referral)/1000),0)::BIGINT as referrals, coalesce(floor(sum(revenue)/1000),0)::BIGINT as territories FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "ItemAct".created_at, 0 as airdrop, CASE WHEN "Item"."parentId" IS NULL THEN 0 ELSE "ItemAct".msats END as comment, CASE WHEN "Item"."parentId" IS NULL THEN "ItemAct".msats ELSE 0 END as post, 0 as referral, 0 as revenue FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc) UNION ALL (SELECT created_at, 0 as airdrop, 0 as post, 0 as comment, msats as referral, 0 as revenue FROM "ReferralAct" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, msats as airdrop, 0 as post, 0 as comment, 0 as referral, 0 as revenue FROM "Earn" WHERE created_at >= min_utc) UNION ALL (SELECT created_at, 0 as airdrop, 0 as post, 0 as comment, 0 as referral, msats as revenue FROM "SubAct" WHERE type = 'REVENUE' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY period.t ORDER BY period.t ASC; END; $$; -- -- Name: sub_stats(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.sub_stats(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, sub_name public.citext, comments bigint, posts bigint, msats_revenue bigint, msats_stacked bigint, msats_spent bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, "subName" as sub_name, (sum(quantity) FILTER (WHERE type = 'COMMENT'))::BIGINT as comments, (sum(quantity) FILTER (WHERE type = 'POST'))::BIGINT as posts, (sum(quantity) FILTER (WHERE type = 'REVENUE'))::BIGINT as msats_revenue, (sum(quantity) FILTER (WHERE type = 'TIP'))::BIGINT as msats_stacked, (sum(quantity) FILTER (WHERE type IN ('BOOST', 'TIP', 'FEE', 'STREAM', 'POLL', 'DONT_LIKE_THIS', 'VOTE')))::BIGINT as msats_spent FROM generate_series(min, max, ival) period(t) LEFT JOIN ( -- For msats_spent and msats_stacked (SELECT "subName", "ItemAct"."msats" as quantity, act::TEXT as type, "ItemAct"."created_at" FROM "ItemAct" JOIN "Item" ON "Item"."id" = "ItemAct"."itemId" WHERE "ItemAct"."created_at" >= min_utc AND "subName" IS NOT NULL) UNION ALL (SELECT "subName", 1 as quantity, 'POST' as type, created_at FROM "Item" WHERE created_at >= min_utc AND "Item"."parentId" IS NULL AND "subName" IS NOT NULL) UNION ALL (SELECT root."subName", 1 as quantity, 'COMMENT' as type, "Item"."created_at" FROM "Item" JOIN "Item" root ON "Item"."rootId" = root."id" WHERE "Item"."created_at" >= min_utc AND root."subName" IS NOT NULL) UNION ALL -- For msats_revenue (SELECT "subName", msats as quantity, type::TEXT as type, created_at FROM "SubAct" WHERE created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY "subName", period.t ORDER BY period.t ASC; END; $$; -- -- Name: timestamp_item_on_insert(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.timestamp_item_on_insert() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF NEW."subName" = 'jobs' THEN RETURN NEW; END IF; INSERT INTO pgboss.job (name, data, startafter, priority) VALUES ('timestampItem', jsonb_build_object('id', NEW.id), now() + interval '10 minutes', -2); RETURN NEW; END; $$; -- -- Name: update_item(jsonb, jsonb, jsonb); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_item(jitem jsonb, forward jsonb, poll_options jsonb) RETURNS public."Item" LANGUAGE plpgsql AS $_$ DECLARE user_msats INTEGER; item "Item"; select_clause TEXT; BEGIN PERFORM ASSERT_SERIALIZED(); item := jsonb_populate_record(NULL::"Item", jitem); IF item.boost > 0 THEN UPDATE "Item" SET boost = boost + item.boost WHERE id = item.id; PERFORM item_act(item.id, item."userId", 'BOOST', item.boost); END IF; IF item.status IS NOT NULL THEN UPDATE "Item" SET "statusUpdatedAt" = now_utc() WHERE id = item.id AND status <> item.status; END IF; SELECT string_agg(quote_ident(key), ',') INTO select_clause FROM jsonb_object_keys(jsonb_strip_nulls(jitem)) k(key) WHERE key <> 'boost'; EXECUTE format($fmt$ UPDATE "Item" SET (%s) = ( SELECT %1$s FROM jsonb_populate_record(NULL::"Item", %L) ) WHERE id = %L RETURNING * $fmt$, select_clause, jitem, item.id) INTO item; -- Delete any old thread subs if the user is no longer a fwd recipient DELETE FROM "ThreadSubscription" WHERE "itemId" = item.id -- they aren't in the new forward list AND NOT EXISTS (SELECT 1 FROM jsonb_populate_recordset(NULL::"ItemForward", forward) as nf WHERE "ThreadSubscription"."userId" = nf."userId") -- and they are in the old forward list AND EXISTS (SELECT 1 FROM "ItemForward" WHERE "ItemForward"."itemId" = item.id AND "ItemForward"."userId" = "ThreadSubscription"."userId" ); -- Automatically subscribe any new forward recipients to the post INSERT INTO "ThreadSubscription" ("itemId", "userId") SELECT item.id, "userId" FROM jsonb_populate_recordset(NULL::"ItemForward", forward) EXCEPT SELECT item.id, "userId" FROM "ItemForward" WHERE "itemId" = item.id; -- Delete all old forward entries, to recreate in next command DELETE FROM "ItemForward" WHERE "itemId" = item.id; INSERT INTO "ItemForward" ("itemId", "userId", "pct") SELECT item.id, "userId", "pct" FROM jsonb_populate_recordset(NULL::"ItemForward", forward); INSERT INTO "PollOption" ("itemId", "option") SELECT item.id, "option" FROM jsonb_array_elements_text(poll_options) o("option"); -- if this is a job IF item."maxBid" IS NOT NULL THEN PERFORM run_auction(item.id); END IF; -- schedule imgproxy job INSERT INTO pgboss.job (name, data, retrylimit, retrybackoff, startafter) VALUES ('imgproxy', jsonb_build_object('id', item.id), 21, true, now() + interval '5 seconds'); RETURN item; END; $_$; -- -- Name: update_item(jsonb, jsonb, jsonb, integer[]); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_item(jitem jsonb, forward jsonb, poll_options jsonb, upload_ids integer[]) RETURNS public."Item" LANGUAGE plpgsql AS $_$ DECLARE user_msats INTEGER; cost_msats BIGINT; item "Item"; select_clause TEXT; BEGIN PERFORM ASSERT_SERIALIZED(); item := jsonb_populate_record(NULL::"Item", jitem); SELECT msats INTO user_msats FROM users WHERE id = item."userId"; cost_msats := 0; -- add image fees IF upload_ids IS NOT NULL THEN cost_msats := cost_msats + (SELECT "nUnpaid" * "imageFeeMsats" FROM image_fees_info(item."userId", upload_ids)); UPDATE "Upload" SET paid = 't' WHERE id = ANY(upload_ids); -- delete any old uploads that are no longer attached DELETE FROM "ItemUpload" WHERE "itemId" = item.id AND "uploadId" <> ANY(upload_ids); -- insert any new uploads that are not already attached INSERT INTO "ItemUpload" ("itemId", "uploadId") SELECT item.id, * FROM UNNEST(upload_ids) ON CONFLICT DO NOTHING; END IF; IF cost_msats > 0 AND cost_msats > user_msats THEN RAISE EXCEPTION 'SN_INSUFFICIENT_FUNDS'; ELSE UPDATE users SET msats = msats - cost_msats WHERE id = item."userId"; INSERT INTO "ItemAct" (msats, "itemId", "userId", act) VALUES (cost_msats, item.id, item."userId", 'FEE'); END IF; IF item.boost > 0 THEN UPDATE "Item" SET boost = boost + item.boost WHERE id = item.id; PERFORM item_act(item.id, item."userId", 'BOOST', item.boost); END IF; IF item.status IS NOT NULL THEN UPDATE "Item" SET "statusUpdatedAt" = now_utc() WHERE id = item.id AND status <> item.status; END IF; IF item."pollExpiresAt" IS NULL THEN UPDATE "Item" SET "pollExpiresAt" = NULL WHERE id = item.id; END IF; SELECT string_agg(quote_ident(key), ',') INTO select_clause FROM jsonb_object_keys(jsonb_strip_nulls(jitem)) k(key) WHERE key <> 'boost'; EXECUTE format($fmt$ UPDATE "Item" SET (%s) = ( SELECT %1$s FROM jsonb_populate_record(NULL::"Item", %L) ) WHERE id = %L RETURNING * $fmt$, select_clause, jitem, item.id) INTO item; -- Delete any old thread subs if the user is no longer a fwd recipient DELETE FROM "ThreadSubscription" WHERE "itemId" = item.id -- they aren't in the new forward list AND NOT EXISTS (SELECT 1 FROM jsonb_populate_recordset(NULL::"ItemForward", forward) as nf WHERE "ThreadSubscription"."userId" = nf."userId") -- and they are in the old forward list AND EXISTS (SELECT 1 FROM "ItemForward" WHERE "ItemForward"."itemId" = item.id AND "ItemForward"."userId" = "ThreadSubscription"."userId" ); -- Automatically subscribe any new forward recipients to the post INSERT INTO "ThreadSubscription" ("itemId", "userId") SELECT item.id, "userId" FROM jsonb_populate_recordset(NULL::"ItemForward", forward) EXCEPT SELECT item.id, "userId" FROM "ItemForward" WHERE "itemId" = item.id; -- Delete all old forward entries, to recreate in next command DELETE FROM "ItemForward" WHERE "itemId" = item.id; INSERT INTO "ItemForward" ("itemId", "userId", "pct") SELECT item.id, "userId", "pct" FROM jsonb_populate_recordset(NULL::"ItemForward", forward); INSERT INTO "PollOption" ("itemId", "option") SELECT item.id, "option" FROM jsonb_array_elements_text(poll_options) o("option"); -- if this is a job IF item."maxBid" IS NOT NULL THEN PERFORM run_auction(item.id); END IF; -- schedule imgproxy job INSERT INTO pgboss.job (name, data, retrylimit, retrybackoff, startafter) VALUES ('imgproxy', jsonb_build_object('id', item.id), 21, true, now() + interval '5 seconds'); RETURN item; END; $_$; -- -- Name: update_item_path(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_item_path() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE npath ltree; root_id INTEGER; BEGIN IF NEW."parentId" IS NULL THEN SELECT NEW.id::text::ltree INTO npath; NEW."path" = npath; ELSEIF TG_OP = 'INSERT' OR OLD."parentId" IS NULL OR OLD."parentId" != NEW."parentId" THEN SELECT "path" || NEW.id::text, ltree2text(subltree("path", 0, 1))::integer FROM "Item" WHERE id = NEW."parentId" INTO npath, root_id; IF npath IS NULL THEN RAISE EXCEPTION 'Invalid parent_id %', NEW."parentId"; END IF; NEW."path" = npath; NEW."rootId" = root_id; END IF; RETURN NEW; END; $$; -- -- Name: update_ranked_views_jobs(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_ranked_views_jobs() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.job (name) values ('trust'); UPDATE pgboss.schedule SET cron = '*/5 * * * *' WHERE name = 'rankViews'; return 0; EXCEPTION WHEN OTHERS THEN return 0; END; $$; -- -- Name: update_sub_path(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_sub_path() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE npath ltree; BEGIN IF NEW."parentName" IS NULL THEN SELECT LOWER(NEW.name)::ltree INTO npath; NEW."path" = npath; ELSEIF TG_OP = 'INSERT' OR OLD."parentName" IS NULL OR OLD."parentName" != NEW."parentName" THEN SELECT "path" || LOWER(NEW.name)::text FROM "Sub" WHERE name = NEW."parentName" INTO npath; IF npath IS NULL THEN RAISE EXCEPTION 'Invalid parent name %', NEW."parentName"; END IF; NEW."path" = npath; END IF; RETURN NEW; END; $$; -- -- Name: update_territory_billing(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.update_territory_billing() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF (TG_OP = 'UPDATE') THEN -- delete the old job DELETE FROM pgboss.job WHERE name = 'territoryBilling' AND data->>'subName' = OLD."name"; END IF; IF (NEW."billPaidUntil" IS NOT NULL) THEN -- create a new job INSERT INTO pgboss.job (name, data, startafter, keepuntil) VALUES ( 'territoryBilling', jsonb_build_object('subName', NEW.name), NEW."billPaidUntil", NEW."billPaidUntil" + interval '1 day'); END IF; RETURN NEW; EXCEPTION WHEN undefined_table THEN return NEW; END; $$; -- -- Name: user_auto_withdraw(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_auto_withdraw() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.job (name, data) SELECT 'autoWithdraw', jsonb_build_object('id', NEW.id) -- only if there isn't already a pending job for this user WHERE NOT EXISTS ( SELECT * FROM pgboss.job WHERE name = 'autoWithdraw' AND data->>'id' = NEW.id::TEXT AND state = 'created' ) -- and they have an attached wallet (currently all are received only) AND EXISTS ( SELECT * FROM "Wallet" WHERE "userId" = NEW.id ); RETURN NEW; END; $$; -- -- Name: user_stats(timestamp without time zone, timestamp without time zone, interval, text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_stats(min timestamp without time zone, max timestamp without time zone, ival interval, date_part text) RETURNS TABLE(t timestamp without time zone, id integer, comments bigint, posts bigint, territories bigint, referrals bigint, msats_tipped bigint, msats_rewards bigint, msats_referrals bigint, msats_revenue bigint, msats_stacked bigint, msats_fees bigint, msats_donated bigint, msats_billing bigint, msats_spent bigint) LANGUAGE plpgsql AS $$ DECLARE min_utc TIMESTAMP(3) := timezone('utc', min AT TIME ZONE 'America/Chicago'); BEGIN RETURN QUERY SELECT period.t, "userId" as id, -- counts (sum(quantity) FILTER (WHERE type = 'COMMENT'))::BIGINT as comments, (sum(quantity) FILTER (WHERE type = 'POST'))::BIGINT as posts, (sum(quantity) FILTER (WHERE type = 'TERRITORY'))::BIGINT as territories, (sum(quantity) FILTER (WHERE type = 'REFERRAL'))::BIGINT as referrals, -- stacking (sum(quantity) FILTER (WHERE type = 'TIPPEE'))::BIGINT as msats_tipped, (sum(quantity) FILTER (WHERE type = 'EARN'))::BIGINT as msats_rewards, (sum(quantity) FILTER (WHERE type = 'REFERRAL_ACT'))::BIGINT as msats_referrals, (sum(quantity) FILTER (WHERE type = 'REVENUE'))::BIGINT as msats_revenue, (sum(quantity) FILTER (WHERE type IN ('TIPPEE', 'EARN', 'REFERRAL_ACT', 'REVENUE')))::BIGINT as msats_stacked, -- spending (sum(quantity) FILTER (WHERE type IN ('BOOST', 'TIP', 'FEE', 'STREAM', 'POLL', 'DONT_LIKE_THIS')))::BIGINT as msats_fees, (sum(quantity) FILTER (WHERE type = 'DONATION'))::BIGINT as msats_donated, (sum(quantity) FILTER (WHERE type = 'TERRITORY'))::BIGINT as msats_billing, (sum(quantity) FILTER (WHERE type IN ('BOOST', 'TIP', 'FEE', 'STREAM', 'POLL', 'DONT_LIKE_THIS', 'DONATION', 'TERRITORY')))::BIGINT as msats_spent FROM generate_series(min, max, ival) period(t) LEFT JOIN ((SELECT "userId", msats as quantity, act::TEXT as type, created_at FROM "ItemAct" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", sats*1000 as quantity, 'DONATION' as type, created_at FROM "Donation" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", 1 as quantity, CASE WHEN "Item"."parentId" IS NULL THEN 'POST' ELSE 'COMMENT' END as type, created_at FROM "Item" WHERE created_at >= min_utc) UNION ALL (SELECT "referrerId" as "userId", 1 as quantity, 'REFERRAL' as type, created_at FROM users WHERE "referrerId" IS NOT NULL AND created_at >= min_utc) UNION ALL -- tips accounting for forwarding (SELECT "Item"."userId", floor("ItemAct".msats * (1-COALESCE(sum("ItemForward".pct)/100.0, 0))) as quantity, 'TIPPEE' as type, "ItemAct".created_at FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id LEFT JOIN "ItemForward" on "ItemForward"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc GROUP BY "Item"."userId", "ItemAct".id, "ItemAct".msats, "ItemAct".created_at) UNION ALL -- tips where stacker is a forwardee (SELECT "ItemForward"."userId", floor("ItemAct".msats*("ItemForward".pct/100.0)) as quantity, 'TIPPEE' as type, "ItemAct".created_at FROM "ItemAct" JOIN "Item" on "ItemAct"."itemId" = "Item".id JOIN "ItemForward" on "ItemForward"."itemId" = "Item".id WHERE "ItemAct".act = 'TIP' AND "ItemAct".created_at >= min_utc) UNION ALL (SELECT "userId", msats as quantity, 'EARN' as type, created_at FROM "Earn" WHERE created_at >= min_utc) UNION ALL (SELECT "referrerId" as "userId", msats as quantity, 'REFERRAL_ACT' as type, created_at FROM "ReferralAct" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", msats as quantity, type::TEXT as type, created_at FROM "SubAct" WHERE created_at >= min_utc) UNION ALL (SELECT "userId", 1 as quantity, 'TERRITORY' as type, created_at FROM "Sub" WHERE status <> 'STOPPED' AND created_at >= min_utc) ) u ON period.t = date_trunc(date_part, u.created_at AT TIME ZONE 'UTC' AT TIME ZONE 'America/Chicago') GROUP BY "userId", period.t ORDER BY period.t ASC; END; $$; -- -- Name: user_streak_check(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.user_streak_check() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE BEGIN INSERT INTO pgboss.job (name, data, priority) VALUES ('checkStreak', jsonb_build_object('id', NEW.id), -1); RETURN NEW; END; $$; -- -- Name: wallet_wallet_type_as_jsonb(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.wallet_wallet_type_as_jsonb() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF (TG_OP = 'INSERT' OR TG_OP = 'UPDATE') THEN UPDATE "Wallet" SET wallet = to_jsonb(NEW) WHERE id = NEW."walletId"; END IF; RETURN NEW; END; $$; -- -- Name: weighted_downvotes_after_act(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.weighted_downvotes_after_act(item_id integer, user_id integer, sats integer) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE user_trust DOUBLE PRECISION; sats_past INTEGER; multiplier DOUBLE PRECISION; BEGIN -- grab user's trust who is upvoting SELECT trust INTO user_trust FROM users WHERE id = user_id; -- in order to add this to weightedVotes, we need to do log((satsN+satsPrior)/satsPrior) -- so compute sats prior SELECT SUM(msats) / 1000 INTO sats_past FROM "ItemAct" WHERE "userId" = user_id AND "itemId" = item_id AND act IN ('DONT_LIKE_THIS'); IF sats_past IS NULL OR sats_past = 0 THEN multiplier := LOG(sats); ELSE multiplier := LOG((sats+sats_past)/sats_past::FLOAT); END IF; -- update item UPDATE "Item" SET "weightedDownVotes" = "weightedDownVotes" + (user_trust * multiplier) WHERE id = item_id AND "userId" <> user_id; RETURN 0; END; $$; -- -- Name: weighted_votes_after_tip(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION public.weighted_votes_after_tip(item_id integer, user_id integer, sats integer) RETURNS integer LANGUAGE plpgsql AS $$ DECLARE user_trust DOUBLE PRECISION; sats_past INTEGER; vote_add INTEGER := 0; multiplier DOUBLE PRECISION; BEGIN -- grab user's trust who is upvoting SELECT trust INTO user_trust FROM users WHERE id = user_id; -- in order to add this to weightedVotes, we need to do log((satsN+satsPrior)/satsPrior) -- so compute sats prior SELECT SUM(msats) / 1000 INTO sats_past FROM "ItemAct" WHERE "userId" = user_id AND "itemId" = item_id AND act IN ('TIP', 'FEE'); IF sats_past IS NULL OR sats_past = 0 THEN multiplier := LOG(sats); vote_add := 1; ELSE multiplier := LOG((sats+sats_past)/sats_past::FLOAT); END IF; -- update item UPDATE "Item" SET "weightedVotes" = "weightedVotes" + (user_trust * multiplier), upvotes = upvotes + vote_add WHERE id = item_id AND "userId" <> user_id; RETURN 0; END; $$; -- -- Name: archive; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.archive ( id uuid NOT NULL, name text NOT NULL, priority integer NOT NULL, data jsonb, state pgboss.job_state NOT NULL, retrylimit integer NOT NULL, retrycount integer NOT NULL, retrydelay integer NOT NULL, retrybackoff boolean NOT NULL, startafter timestamp with time zone NOT NULL, startedon timestamp with time zone, singletonkey text, singletonon timestamp without time zone, expirein interval NOT NULL, createdon timestamp with time zone NOT NULL, completedon timestamp with time zone, keepuntil timestamp with time zone NOT NULL, on_complete boolean NOT NULL, output jsonb, archivedon timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: job; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.job ( id uuid DEFAULT public.gen_random_uuid() NOT NULL, name text NOT NULL, priority integer DEFAULT 0 NOT NULL, data jsonb, state pgboss.job_state DEFAULT 'created'::pgboss.job_state NOT NULL, retrylimit integer DEFAULT 0 NOT NULL, retrycount integer DEFAULT 0 NOT NULL, retrydelay integer DEFAULT 0 NOT NULL, retrybackoff boolean DEFAULT false NOT NULL, startafter timestamp with time zone DEFAULT now() NOT NULL, startedon timestamp with time zone, singletonkey text, singletonon timestamp without time zone, expirein interval DEFAULT '00:15:00'::interval NOT NULL, createdon timestamp with time zone DEFAULT now() NOT NULL, completedon timestamp with time zone, keepuntil timestamp with time zone DEFAULT (now() + '14 days'::interval) NOT NULL, on_complete boolean DEFAULT false NOT NULL, output jsonb ); -- -- Name: schedule; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.schedule ( name text NOT NULL, cron text NOT NULL, timezone text, data jsonb, options jsonb, created_on timestamp with time zone DEFAULT now() NOT NULL, updated_on timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: subscription; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.subscription ( event text NOT NULL, name text NOT NULL, created_on timestamp with time zone DEFAULT now() NOT NULL, updated_on timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: version; Type: TABLE; Schema: pgboss; Owner: - -- CREATE TABLE pgboss.version ( version integer NOT NULL, maintained_on timestamp with time zone, cron_on timestamp with time zone ); -- -- Name: Arc; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Arc" ( "fromId" integer NOT NULL, "toId" integer NOT NULL, "zapTrust" double precision NOT NULL ); -- -- Name: Bookmark; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Bookmark" ( "userId" integer NOT NULL, "itemId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: Donation; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Donation" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, sats integer NOT NULL, "userId" integer NOT NULL ); -- -- Name: Donation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Donation_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Donation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Donation_id_seq" OWNED BY public."Donation".id; -- -- Name: Earn; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Earn" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, msats bigint NOT NULL, "userId" integer NOT NULL, rank integer, type public."EarnType", "typeId" integer ); -- -- Name: Earn_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Earn_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Earn_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Earn_id_seq" OWNED BY public."Earn".id; -- -- Name: Invite; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Invite" ( id text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, gift integer, "limit" integer, revoked boolean DEFAULT false NOT NULL ); -- -- Name: Invoice_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Invoice_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Invoice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Invoice_id_seq" OWNED BY public."Invoice".id; -- -- Name: ItemAct; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemAct" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, msats bigint NOT NULL, act public."ItemActType" NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL ); -- -- Name: ItemForward; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemForward" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL, pct integer NOT NULL ); -- -- Name: ItemForward_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."ItemForward_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: ItemForward_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."ItemForward_id_seq" OWNED BY public."ItemForward".id; -- -- Name: ItemUpload; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ItemUpload" ( created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "uploadId" integer NOT NULL ); -- -- Name: Item_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Item_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Item_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Item_id_seq" OWNED BY public."Item".id; -- -- Name: LnAuth; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."LnAuth" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, k1 text NOT NULL, pubkey text ); -- -- Name: LnAuth_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."LnAuth_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: LnAuth_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."LnAuth_id_seq" OWNED BY public."LnAuth".id; -- -- Name: LnWith; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."LnWith" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, k1 text NOT NULL, "userId" integer NOT NULL, "withdrawalId" integer ); -- -- Name: LnWith_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."LnWith_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: LnWith_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."LnWith_id_seq" OWNED BY public."LnWith".id; -- -- Name: Log; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Log" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, level public."LogLevel" NOT NULL, name text NOT NULL, message text NOT NULL, env jsonb, context jsonb ); -- -- Name: Log_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Log_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Log_id_seq" OWNED BY public."Log".id; -- -- Name: Mention; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Mention" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, "userId" integer NOT NULL ); -- -- Name: Mention_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Mention_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Mention_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Mention_id_seq" OWNED BY public."Mention".id; -- -- Name: Message; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Message" ( id integer NOT NULL, text text NOT NULL, "userId" integer NOT NULL ); -- -- Name: Message_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Message_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Message_id_seq" OWNED BY public."Message".id; -- -- Name: Mute; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Mute" ( "muterId" integer NOT NULL, "mutedId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: MuteSub; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."MuteSub" ( created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "subName" public.citext NOT NULL, "userId" integer NOT NULL ); -- -- Name: NostrRelay; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."NostrRelay" ( addr text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: OFAC; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."OFAC" ( id integer NOT NULL, "startIP" public.ipaddress NOT NULL, "endIP" public.ipaddress NOT NULL, country text NOT NULL, "countryCode" text NOT NULL ); -- -- Name: OFAC_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."OFAC_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: OFAC_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."OFAC_id_seq" OWNED BY public."OFAC".id; -- -- Name: Pin; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Pin" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, cron text, timezone text, "position" integer NOT NULL ); -- -- Name: Pin_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Pin_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Pin_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Pin_id_seq" OWNED BY public."Pin".id; -- -- Name: PollOption; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PollOption" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "itemId" integer NOT NULL, option text NOT NULL ); -- -- Name: PollOption_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PollOption_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PollOption_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PollOption_id_seq" OWNED BY public."PollOption".id; -- -- Name: PollVote; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PollVote" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, "itemId" integer NOT NULL, "pollOptionId" integer NOT NULL ); -- -- Name: PollVote_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PollVote_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PollVote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PollVote_id_seq" OWNED BY public."PollVote".id; -- -- Name: PushSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."PushSubscription" ( id integer NOT NULL, "userId" integer NOT NULL, endpoint text NOT NULL, p256dh text NOT NULL, auth text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: PushSubscription_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."PushSubscription_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: PushSubscription_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."PushSubscription_id_seq" OWNED BY public."PushSubscription".id; -- -- Name: ReferralAct; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ReferralAct" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "referrerId" integer NOT NULL, "itemActId" integer NOT NULL, msats bigint NOT NULL ); -- -- Name: ReferralAct_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."ReferralAct_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: ReferralAct_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."ReferralAct_id_seq" OWNED BY public."ReferralAct".id; -- -- Name: Snl; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Snl" ( id integer NOT NULL, live boolean DEFAULT false NOT NULL ); -- -- Name: Snl_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Snl_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Snl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Snl_id_seq" OWNED BY public."Snl".id; -- -- Name: Streak; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Streak" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "startedAt" date NOT NULL, "endedAt" date, "userId" integer NOT NULL ); -- -- Name: Streak_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Streak_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Streak_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Streak_id_seq" OWNED BY public."Streak".id; -- -- Name: Sub; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Sub" ( name public.citext NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "postTypes" public."PostType"[], "rankingType" public."RankingType" NOT NULL, "baseCost" integer DEFAULT 1 NOT NULL, "desc" text, "billedLastAt" timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "billingCost" integer NOT NULL, "billingType" public."BillingType" NOT NULL, "parentName" public.citext, path public.ltree, status public."Status" DEFAULT 'ACTIVE'::public."Status" NOT NULL, "userId" integer NOT NULL, "rewardsPct" integer DEFAULT 50 NOT NULL, "billingAutoRenew" boolean DEFAULT false NOT NULL, "allowFreebies" boolean DEFAULT true NOT NULL, moderated boolean DEFAULT false NOT NULL, "moderatedCount" integer DEFAULT 0 NOT NULL, "statusUpdatedAt" timestamp(3) without time zone, nsfw boolean DEFAULT false NOT NULL, "billPaidUntil" timestamp(3) without time zone ); -- -- Name: SubAct; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."SubAct" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, "subName" public.citext NOT NULL, msats bigint NOT NULL, type public."SubActType" NOT NULL ); -- -- Name: SubAct_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."SubAct_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: SubAct_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."SubAct_id_seq" OWNED BY public."SubAct".id; -- -- Name: SubSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."SubSubscription" ( "userId" integer NOT NULL, "subName" public.citext NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: ThreadSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."ThreadSubscription" ( "userId" integer NOT NULL, "itemId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: Upload; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Upload" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, type text NOT NULL, size integer NOT NULL, width integer, height integer, "userId" integer NOT NULL, paid boolean ); -- -- Name: Upload_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Upload_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Upload_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Upload_id_seq" OWNED BY public."Upload".id; -- -- Name: UserNostrRelay; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."UserNostrRelay" ( "userId" integer NOT NULL, "nostrRelayAddr" text NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: UserSubscription; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."UserSubscription" ( "followerId" integer NOT NULL, "followeeId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "commentsSubscribedAt" timestamp(3) without time zone, "postsSubscribedAt" timestamp(3) without time zone, CONSTRAINT "UserSubscription_no_follow_self" CHECK (("followerId" <> "followeeId")) ); -- -- Name: Vote_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Vote_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Vote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Vote_id_seq" OWNED BY public."ItemAct".id; -- -- Name: Wallet; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."Wallet" ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, "userId" integer NOT NULL, label text, priority integer DEFAULT 0 NOT NULL, type public."WalletType" NOT NULL, wallet jsonb ); -- -- Name: WalletLND; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletLND" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, socket text NOT NULL, macaroon text NOT NULL, cert text ); -- -- Name: WalletLND_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletLND_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletLND_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletLND_id_seq" OWNED BY public."WalletLND".id; -- -- Name: WalletLightningAddress; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public."WalletLightningAddress" ( id integer NOT NULL, "walletId" integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, address text NOT NULL ); -- -- Name: WalletLightningAddress_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."WalletLightningAddress_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: WalletLightningAddress_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."WalletLightningAddress_id_seq" OWNED BY public."WalletLightningAddress".id; -- -- Name: Wallet_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Wallet_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Wallet_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Wallet_id_seq" OWNED BY public."Wallet".id; -- -- Name: Withdrawl_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public."Withdrawl_id_seq" AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: Withdrawl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public."Withdrawl_id_seq" OWNED BY public."Withdrawl".id; -- -- Name: _prisma_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public._prisma_migrations ( id character varying(36) NOT NULL, checksum character varying(64) NOT NULL, finished_at timestamp with time zone, migration_name character varying(255) NOT NULL, logs text, rolled_back_at timestamp with time zone, started_at timestamp with time zone DEFAULT now() NOT NULL, applied_steps_count integer DEFAULT 0 NOT NULL ); -- -- Name: accounts; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.accounts ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, user_id integer NOT NULL, provider_type text NOT NULL, provider_id text NOT NULL, provider_account_id text NOT NULL, refresh_token text, access_token text, access_token_expires text, id_token text, scope text, session_state text, token_type text, oauth_token text, oauth_token_secret text ); -- -- Name: accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.accounts_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.accounts_id_seq OWNED BY public.accounts.id; -- -- Name: all_days; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.all_days AS SELECT date_trunc('day'::text, timezone('America/Chicago'::text, '2021-05-31 19:00:00-05'::timestamp with time zone)) AS min, date_trunc('day'::text, timezone('America/Chicago'::text, (now() - '1 day'::interval))) AS max; -- -- Name: all_months; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.all_months AS SELECT date_trunc('month'::text, timezone('America/Chicago'::text, '2021-05-31 19:00:00-05'::timestamp with time zone)) AS min, date_trunc('month'::text, timezone('America/Chicago'::text, (now() - '1 mon'::interval))) AS max; -- -- Name: days; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.days AS WITH range_values AS ( SELECT date_trunc('day'::text, '2021-06-07 00:00:00'::timestamp without time zone) AS minval, date_trunc('day'::text, timezone('America/Chicago'::text, (now() - '1 day'::interval))) AS maxval ) SELECT generate_series(range_values.minval, range_values.maxval, '1 day'::interval) AS day FROM range_values; -- -- Name: item_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.item_growth_days AS SELECT (public.item_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.item_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).comments AS comments, (public.item_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).jobs AS jobs, (public.item_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).posts AS posts, (public.item_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).territories AS territories, (public.item_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).zaps AS zaps FROM public.all_days WITH NO DATA; -- -- Name: last_24_hours; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.last_24_hours AS SELECT date_trunc('hour'::text, timezone('America/Chicago'::text, (now() - '24:00:00'::interval))) AS min, date_trunc('hour'::text, timezone('America/Chicago'::text, (now() - '01:00:00'::interval))) AS max; -- -- Name: item_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.item_growth_hours AS SELECT (public.item_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.item_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.item_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).jobs AS jobs, (public.item_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.item_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).territories AS territories, (public.item_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).zaps AS zaps FROM public.last_24_hours WITH NO DATA; -- -- Name: item_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.item_growth_months AS SELECT (public.item_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.item_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.item_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).jobs AS jobs, (public.item_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.item_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).territories AS territories, (public.item_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).zaps AS zaps FROM public.all_months WITH NO DATA; -- -- Name: reg_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.reg_growth_days AS SELECT (public.reg_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.reg_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).referrals AS referrals, (public.reg_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).organic AS organic FROM public.all_days WITH NO DATA; -- -- Name: reg_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.reg_growth_hours AS SELECT (public.reg_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.reg_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).referrals AS referrals, (public.reg_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).organic AS organic FROM public.last_24_hours WITH NO DATA; -- -- Name: reg_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.reg_growth_months AS SELECT (public.reg_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.reg_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).referrals AS referrals, (public.reg_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).organic AS organic FROM public.all_months WITH NO DATA; -- -- Name: sat_rank_tender_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sat_rank_tender_view AS SELECT "Item".id, row_number() OVER (ORDER BY (((GREATEST(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), power(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), (1.2)::double precision)) + ("Item"."weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (1.3)::double precision)) + ((("Item".boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, "Item".id DESC) AS rank FROM public."Item" WHERE (("Item"."parentId" IS NULL) AND (NOT "Item".bio) AND ("Item"."pinId" IS NULL) AND ("Item"."deletedAt" IS NULL) AND ("Item"."weightedVotes" > "Item"."weightedDownVotes")) ORDER BY (((GREATEST(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), power(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), (1.2)::double precision)) + ("Item"."weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (1.3)::double precision)) + ((("Item".boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, "Item".id DESC LIMIT 2100 WITH NO DATA; -- -- Name: sat_rank_wwm_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sat_rank_wwm_view AS SELECT "Item".id, row_number() OVER (ORDER BY (((GREATEST("Item"."weightedVotes", power("Item"."weightedVotes", (1.2)::double precision)) + ("Item"."weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (1.3)::double precision)) + ((("Item".boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, "Item".id DESC) AS rank FROM public."Item" WHERE (("Item"."parentId" IS NULL) AND (NOT "Item".bio) AND ("Item"."pinId" IS NULL) AND ("Item"."deletedAt" IS NULL) AND ("Item"."weightedVotes" > (0)::double precision)) ORDER BY (((GREATEST("Item"."weightedVotes", power("Item"."weightedVotes", (1.2)::double precision)) + ("Item"."weightedComments" / (2)::double precision)) / power(GREATEST((3)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (1.3)::double precision)) + ((("Item".boost)::double precision / (5000)::double precision) / power(((date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision) + (2)::double precision), (2.6)::double precision))) DESC NULLS LAST, "Item".id DESC LIMIT 2100 WITH NO DATA; -- -- Name: sessions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.sessions ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, user_id integer NOT NULL, expires timestamp(3) without time zone NOT NULL, session_token text NOT NULL ); -- -- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.sessions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; -- -- Name: spender_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spender_growth_days AS SELECT (public.spender_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.spender_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text))."userId" AS "userId", (public.spender_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).type AS type FROM public.all_days WITH NO DATA; -- -- Name: spender_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spender_growth_hours AS SELECT (public.spender_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.spender_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text))."userId" AS "userId", (public.spender_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).type AS type FROM public.last_24_hours WITH NO DATA; -- -- Name: spender_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spender_growth_months AS SELECT (public.spender_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.spender_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text))."userId" AS "userId", (public.spender_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).type AS type FROM public.all_months WITH NO DATA; -- -- Name: spending_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spending_growth_days AS SELECT (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).jobs AS jobs, (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).boost AS boost, (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).fees AS fees, (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).tips AS tips, (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).donations AS donations, (public.spending_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).territories AS territories FROM public.all_days WITH NO DATA; -- -- Name: spending_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spending_growth_hours AS SELECT (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).jobs AS jobs, (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).boost AS boost, (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).fees AS fees, (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).tips AS tips, (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).donations AS donations, (public.spending_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).territories AS territories FROM public.last_24_hours WITH NO DATA; -- -- Name: spending_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.spending_growth_months AS SELECT (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).jobs AS jobs, (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).boost AS boost, (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).fees AS fees, (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).tips AS tips, (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).donations AS donations, (public.spending_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).territories AS territories FROM public.all_months WITH NO DATA; -- -- Name: stackers_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stackers_growth_days AS SELECT (public.stackers_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.stackers_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text))."userId" AS "userId", (public.stackers_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).type AS type FROM public.all_days WITH NO DATA; -- -- Name: stackers_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stackers_growth_hours AS SELECT (public.stackers_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.stackers_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text))."userId" AS "userId", (public.stackers_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).type AS type FROM public.last_24_hours WITH NO DATA; -- -- Name: stackers_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stackers_growth_months AS SELECT (public.stackers_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.stackers_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text))."userId" AS "userId", (public.stackers_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).type AS type FROM public.all_months WITH NO DATA; -- -- Name: stacking_growth_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stacking_growth_days AS SELECT (public.stacking_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.stacking_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).rewards AS rewards, (public.stacking_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).posts AS posts, (public.stacking_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).comments AS comments, (public.stacking_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).referrals AS referrals, (public.stacking_growth(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).territories AS territories FROM public.all_days WITH NO DATA; -- -- Name: stacking_growth_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stacking_growth_hours AS SELECT (public.stacking_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.stacking_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).rewards AS rewards, (public.stacking_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.stacking_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.stacking_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).referrals AS referrals, (public.stacking_growth(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).territories AS territories FROM public.last_24_hours WITH NO DATA; -- -- Name: stacking_growth_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.stacking_growth_months AS SELECT (public.stacking_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.stacking_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).rewards AS rewards, (public.stacking_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.stacking_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.stacking_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).referrals AS referrals, (public.stacking_growth(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).territories AS territories FROM public.all_months WITH NO DATA; -- -- Name: sub_stats_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sub_stats_days AS SELECT (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).sub_name AS sub_name, (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).comments AS comments, (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).posts AS posts, (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_revenue AS msats_revenue, (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_stacked AS msats_stacked, (public.sub_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_spent AS msats_spent FROM public.all_days WITH NO DATA; -- -- Name: sub_stats_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sub_stats_hours AS SELECT (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).sub_name AS sub_name, (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_revenue AS msats_revenue, (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_stacked AS msats_stacked, (public.sub_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_spent AS msats_spent FROM public.last_24_hours WITH NO DATA; -- -- Name: sub_stats_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.sub_stats_months AS SELECT (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).sub_name AS sub_name, (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_revenue AS msats_revenue, (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_stacked AS msats_stacked, (public.sub_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_spent AS msats_spent FROM public.all_months WITH NO DATA; -- -- Name: user_stats_days; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_stats_days AS SELECT (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).t AS t, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).id AS id, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).comments AS comments, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).posts AS posts, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).territories AS territories, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).referrals AS referrals, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_tipped AS msats_tipped, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_rewards AS msats_rewards, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_referrals AS msats_referrals, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_revenue AS msats_revenue, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_stacked AS msats_stacked, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_fees AS msats_fees, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_donated AS msats_donated, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_billing AS msats_billing, (public.user_stats(all_days.min, all_days.max, '1 day'::interval, 'day'::text)).msats_spent AS msats_spent FROM public.all_days WITH NO DATA; -- -- Name: user_stats_hours; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_stats_hours AS SELECT (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).t AS t, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).id AS id, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).comments AS comments, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).posts AS posts, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).territories AS territories, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).referrals AS referrals, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_tipped AS msats_tipped, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_rewards AS msats_rewards, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_referrals AS msats_referrals, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_revenue AS msats_revenue, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_stacked AS msats_stacked, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_fees AS msats_fees, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_donated AS msats_donated, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_billing AS msats_billing, (public.user_stats(last_24_hours.min, last_24_hours.max, '01:00:00'::interval, 'hour'::text)).msats_spent AS msats_spent FROM public.last_24_hours WITH NO DATA; -- -- Name: user_stats_months; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.user_stats_months AS SELECT (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).t AS t, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).id AS id, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).comments AS comments, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).posts AS posts, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).territories AS territories, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).referrals AS referrals, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_tipped AS msats_tipped, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_rewards AS msats_rewards, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_referrals AS msats_referrals, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_revenue AS msats_revenue, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_stacked AS msats_stacked, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_fees AS msats_fees, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_donated AS msats_donated, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_billing AS msats_billing, (public.user_stats(all_months.min, all_months.max, '1 mon'::interval, 'month'::text)).msats_spent AS msats_spent FROM public.all_months WITH NO DATA; -- -- Name: users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.users ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, name public.citext, email text, email_verified timestamp(3) without time zone, image text, msats bigint DEFAULT 0 NOT NULL, "freeComments" integer DEFAULT 5 NOT NULL, "freePosts" integer DEFAULT 2 NOT NULL, "checkedNotesAt" timestamp(3) without time zone, pubkey text, "tipDefault" integer DEFAULT 100 NOT NULL, "bioId" integer, "inviteId" text, "tipPopover" boolean DEFAULT false NOT NULL, "upvotePopover" boolean DEFAULT false NOT NULL, trust double precision DEFAULT 0 NOT NULL, "lastSeenAt" timestamp(3) without time zone, "stackedMsats" bigint DEFAULT 0 NOT NULL, "noteAllDescendants" boolean DEFAULT true NOT NULL, "noteDeposits" boolean DEFAULT true NOT NULL, "noteEarning" boolean DEFAULT true NOT NULL, "noteInvites" boolean DEFAULT true NOT NULL, "noteItemSats" boolean DEFAULT true NOT NULL, "noteMentions" boolean DEFAULT true NOT NULL, "lastCheckedJobs" timestamp(3) without time zone, "noteJobIndicator" boolean DEFAULT true NOT NULL, "photoId" integer, "upvoteTrust" double precision DEFAULT 0 NOT NULL, "hideInvoiceDesc" boolean DEFAULT false NOT NULL, "wildWestMode" boolean DEFAULT false NOT NULL, "greeterMode" boolean DEFAULT false NOT NULL, "fiatCurrency" text DEFAULT 'USD'::text NOT NULL, "hideFromTopUsers" boolean DEFAULT false NOT NULL, "turboTipping" boolean DEFAULT false NOT NULL, "referrerId" integer, "nostrPubkey" text, "slashtagId" text, "noteCowboyHat" boolean DEFAULT true NOT NULL, streak integer, subs text[], "hideCowboyHat" boolean DEFAULT false NOT NULL, "nostrAuthPubkey" text, "imgproxyOnly" boolean DEFAULT false NOT NULL, "hideBookmarks" boolean DEFAULT false NOT NULL, "hideWelcomeBanner" boolean DEFAULT false NOT NULL, "noteForwardedSats" boolean DEFAULT true NOT NULL, "hideWalletBalance" boolean DEFAULT false NOT NULL, "hideIsContributor" boolean DEFAULT false NOT NULL, diagnostics boolean DEFAULT false NOT NULL, "nostrCrossposting" boolean DEFAULT false NOT NULL, "withdrawMaxFeeDefault" integer DEFAULT 10 NOT NULL, "foundNotesAt" timestamp(3) without time zone, "autoDropBolt11s" boolean DEFAULT false NOT NULL, "autoWithdrawMaxFeePercent" double precision, "autoWithdrawThreshold" integer, "lnAddr" text, "noteTerritoryPosts" boolean DEFAULT true NOT NULL, "nsfwMode" boolean DEFAULT false NOT NULL, "hideGithub" boolean DEFAULT true NOT NULL, "hideNostr" boolean DEFAULT true NOT NULL, "hideTwitter" boolean DEFAULT true NOT NULL, "githubId" text, "twitterId" text, "zapUndos" boolean DEFAULT false NOT NULL ); -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.users_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; -- -- Name: verification_requests; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.verification_requests ( id integer NOT NULL, created_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at timestamp(3) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, identifier text NOT NULL, token text NOT NULL, expires timestamp(3) without time zone NOT NULL ); -- -- Name: verification_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE public.verification_requests_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: verification_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE public.verification_requests_id_seq OWNED BY public.verification_requests.id; -- -- Name: zap_rank_constants; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.zap_rank_constants AS SELECT 5000.0 AS boost_per_vote, 1.2 AS vote_power, 1.3 AS vote_decay, 3.0 AS age_wait_hours, 0.5 AS comment_scaler, 1.2 AS boost_power, 1.6 AS boost_decay, 2100 AS row_limit; -- -- Name: zap_rank_personal_constants; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW public.zap_rank_personal_constants AS SELECT 5000.0 AS boost_per_vote, 1.2 AS vote_power, 1.3 AS vote_decay, 3.0 AS age_wait_hours, 0.5 AS comment_scaler, 1.2 AS boost_power, 1.6 AS boost_decay, 616 AS global_viewer_id, '7 days'::interval AS item_age_bound, '7 days'::interval AS user_last_seen_bound, 0.9 AS max_personal_viewer_vote_ratio, 0.1 AS min_viewer_votes; -- -- Name: zap_rank_personal_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.zap_rank_personal_view AS WITH item_votes AS ( SELECT "Item".id, "Item"."parentId", "Item".boost, "Item".created_at, "Item"."weightedComments", "ItemAct"."userId" AS "voterId", log((sum("ItemAct".msats) FILTER (WHERE ("ItemAct".act = ANY (ARRAY['TIP'::public."ItemActType", 'FEE'::public."ItemActType"]))) / 1000.0)) AS vote, GREATEST(log((sum("ItemAct".msats) FILTER (WHERE ("ItemAct".act = 'DONT_LIKE_THIS'::public."ItemActType")) / 1000.0)), (0)::numeric) AS "downVote" FROM ((public."Item" CROSS JOIN public.zap_rank_personal_constants) JOIN public."ItemAct" ON (("ItemAct"."itemId" = "Item".id))) WHERE (((("ItemAct"."userId" <> "Item"."userId") AND ("ItemAct".act = ANY (ARRAY['TIP'::public."ItemActType", 'FEE'::public."ItemActType", 'DONT_LIKE_THIS'::public."ItemActType"]))) OR (("ItemAct".act = 'BOOST'::public."ItemActType") AND ("ItemAct"."userId" = "Item"."userId"))) AND ("Item".created_at >= (public.now_utc() - zap_rank_personal_constants.item_age_bound))) GROUP BY "Item".id, "Item"."parentId", "Item".boost, "Item".created_at, "Item"."weightedComments", "ItemAct"."userId" HAVING (sum("ItemAct".msats) > (1000)::numeric) ), viewer_votes AS ( SELECT item_votes.id, item_votes."parentId", item_votes.boost, item_votes.created_at, item_votes."weightedComments", "Arc"."fromId" AS "viewerId", (GREATEST("Arc"."zapTrust", g."zapTrust", (0)::double precision) * (item_votes.vote)::double precision) AS "weightedVote", (GREATEST("Arc"."zapTrust", g."zapTrust", (0)::double precision) * (item_votes."downVote")::double precision) AS "weightedDownVote" FROM (((item_votes CROSS JOIN public.zap_rank_personal_constants) LEFT JOIN public."Arc" ON (("Arc"."toId" = item_votes."voterId"))) LEFT JOIN public."Arc" g ON (((g."fromId" = zap_rank_personal_constants.global_viewer_id) AND (g."toId" = item_votes."voterId") AND (("Arc"."zapTrust" IS NOT NULL) OR (g."zapTrust" IS NOT NULL))))) ), viewer_weighted_votes AS ( SELECT viewer_votes.id, viewer_votes."parentId", viewer_votes.boost, viewer_votes.created_at, viewer_votes."viewerId", viewer_votes."weightedComments", sum(viewer_votes."weightedVote") AS "weightedVotes", sum(viewer_votes."weightedDownVote") AS "weightedDownVotes" FROM viewer_votes GROUP BY viewer_votes.id, viewer_votes."parentId", viewer_votes.boost, viewer_votes.created_at, viewer_votes."viewerId", viewer_votes."weightedComments" ), viewer_zaprank AS ( SELECT l.id, l."parentId", l.boost, l.created_at, l."viewerId", l."weightedComments", GREATEST(l."weightedVotes", g."weightedVotes") AS "weightedVotes", GREATEST(l."weightedDownVotes", g."weightedDownVotes") AS "weightedDownVotes" FROM (((viewer_weighted_votes l CROSS JOIN public.zap_rank_personal_constants) JOIN public.users ON ((users.id = l."viewerId"))) JOIN viewer_weighted_votes g ON (((l.id = g.id) AND (g."viewerId" = zap_rank_personal_constants.global_viewer_id)))) WHERE (((l."weightedVotes" > (zap_rank_personal_constants.min_viewer_votes)::double precision) AND ((g."weightedVotes" / l."weightedVotes") <= (zap_rank_personal_constants.max_personal_viewer_vote_ratio)::double precision) AND (users."lastSeenAt" >= (public.now_utc() - zap_rank_personal_constants.user_last_seen_bound))) OR (l."viewerId" = zap_rank_personal_constants.global_viewer_id)) GROUP BY l.id, l."parentId", l.boost, l.created_at, l."viewerId", l."weightedVotes", l."weightedComments", g."weightedVotes", l."weightedDownVotes", g."weightedDownVotes", zap_rank_personal_constants.min_viewer_votes HAVING ((GREATEST(l."weightedVotes", g."weightedVotes") > (zap_rank_personal_constants.min_viewer_votes)::double precision) OR (l.boost > 0)) ), viewer_fractions_zaprank AS ( SELECT z_1.id, z_1."parentId", z_1.boost, z_1.created_at, z_1."viewerId", z_1."weightedComments", z_1."weightedVotes", z_1."weightedDownVotes", ( CASE WHEN ((z_1."weightedVotes" - z_1."weightedDownVotes") > (0)::double precision) THEN GREATEST((z_1."weightedVotes" - z_1."weightedDownVotes"), power((z_1."weightedVotes" - z_1."weightedDownVotes"), (zap_rank_personal_constants.vote_power)::double precision)) ELSE (z_1."weightedVotes" - z_1."weightedDownVotes") END + (z_1."weightedComments" * ( CASE WHEN (z_1."parentId" IS NULL) THEN zap_rank_personal_constants.comment_scaler ELSE (0)::numeric END)::double precision)) AS tf_numerator, power(GREATEST((zap_rank_personal_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - z_1.created_at)) / (3600)::double precision)), (zap_rank_personal_constants.vote_decay)::double precision) AS decay_denominator, ((power(((z_1.boost)::numeric / zap_rank_personal_constants.boost_per_vote), zap_rank_personal_constants.boost_power))::double precision / power(GREATEST((zap_rank_personal_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - z_1.created_at)) / (3600)::double precision)), (zap_rank_personal_constants.boost_decay)::double precision)) AS boost_addend FROM viewer_zaprank z_1, public.zap_rank_personal_constants ) SELECT z.id, z."parentId", z."viewerId", ((COALESCE(z.tf_numerator, (0)::double precision) / z.decay_denominator) + z.boost_addend) AS tf_hot_score, COALESCE(z.tf_numerator, (0)::double precision) AS tf_top_score FROM viewer_fractions_zaprank z WHERE ((z.tf_numerator > (0)::double precision) OR (z.boost_addend > (0)::double precision)) WITH NO DATA; -- -- Name: zap_rank_tender_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.zap_rank_tender_view AS SELECT "Item".id, rank() OVER (ORDER BY (((GREATEST(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), power(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC) AS rank FROM public."Item", public.zap_rank_constants WHERE (("Item"."parentId" IS NULL) AND (NOT "Item".bio) AND ("Item"."pinId" IS NULL) AND ("Item"."deletedAt" IS NULL) AND (("Item"."weightedVotes" > "Item"."weightedDownVotes") OR ("Item".boost > 0))) ORDER BY (rank() OVER (ORDER BY (((GREATEST(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), power(abs(("Item"."weightedVotes" - "Item"."weightedDownVotes")), (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC)) LIMIT ( SELECT zap_rank_constants_1.row_limit FROM public.zap_rank_constants zap_rank_constants_1) WITH NO DATA; -- -- Name: zap_rank_wwm_view; Type: MATERIALIZED VIEW; Schema: public; Owner: - -- CREATE MATERIALIZED VIEW public.zap_rank_wwm_view AS SELECT "Item".id, rank() OVER (ORDER BY (((GREATEST("Item"."weightedVotes", power("Item"."weightedVotes", (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC) AS rank FROM public."Item", public.zap_rank_constants WHERE (("Item"."parentId" IS NULL) AND (NOT "Item".bio) AND ("Item"."pinId" IS NULL) AND ("Item"."deletedAt" IS NULL) AND (("Item"."weightedVotes" > (0)::double precision) OR ("Item".boost > 0))) ORDER BY (rank() OVER (ORDER BY (((GREATEST("Item"."weightedVotes", power("Item"."weightedVotes", (zap_rank_constants.vote_power)::double precision)) + ("Item"."weightedComments" * (zap_rank_constants.comment_scaler)::double precision)) / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.vote_decay)::double precision)) + ((power((("Item".boost)::numeric / zap_rank_constants.boost_per_vote), zap_rank_constants.boost_power))::double precision / power(GREATEST((zap_rank_constants.age_wait_hours)::double precision, (date_part('epoch'::text, (public.now_utc() - "Item".created_at)) / (3600)::double precision)), (zap_rank_constants.boost_decay)::double precision))) DESC NULLS LAST, "Item".id DESC)) LIMIT ( SELECT zap_rank_constants_1.row_limit FROM public.zap_rank_constants zap_rank_constants_1) WITH NO DATA; -- -- Name: Donation id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Donation" ALTER COLUMN id SET DEFAULT nextval('public."Donation_id_seq"'::regclass); -- -- Name: Earn id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Earn" ALTER COLUMN id SET DEFAULT nextval('public."Earn_id_seq"'::regclass); -- -- Name: Invoice id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ALTER COLUMN id SET DEFAULT nextval('public."Invoice_id_seq"'::regclass); -- -- Name: Item id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ALTER COLUMN id SET DEFAULT nextval('public."Item_id_seq"'::regclass); -- -- Name: ItemAct id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ALTER COLUMN id SET DEFAULT nextval('public."Vote_id_seq"'::regclass); -- -- Name: ItemForward id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ALTER COLUMN id SET DEFAULT nextval('public."ItemForward_id_seq"'::regclass); -- -- Name: LnAuth id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnAuth" ALTER COLUMN id SET DEFAULT nextval('public."LnAuth_id_seq"'::regclass); -- -- Name: LnWith id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnWith" ALTER COLUMN id SET DEFAULT nextval('public."LnWith_id_seq"'::regclass); -- -- Name: Log id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Log" ALTER COLUMN id SET DEFAULT nextval('public."Log_id_seq"'::regclass); -- -- Name: Mention id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ALTER COLUMN id SET DEFAULT nextval('public."Mention_id_seq"'::regclass); -- -- Name: Message id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Message" ALTER COLUMN id SET DEFAULT nextval('public."Message_id_seq"'::regclass); -- -- Name: OFAC id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OFAC" ALTER COLUMN id SET DEFAULT nextval('public."OFAC_id_seq"'::regclass); -- -- Name: Pin id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Pin" ALTER COLUMN id SET DEFAULT nextval('public."Pin_id_seq"'::regclass); -- -- Name: PollOption id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollOption" ALTER COLUMN id SET DEFAULT nextval('public."PollOption_id_seq"'::regclass); -- -- Name: PollVote id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ALTER COLUMN id SET DEFAULT nextval('public."PollVote_id_seq"'::regclass); -- -- Name: PushSubscription id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PushSubscription" ALTER COLUMN id SET DEFAULT nextval('public."PushSubscription_id_seq"'::regclass); -- -- Name: ReferralAct id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ALTER COLUMN id SET DEFAULT nextval('public."ReferralAct_id_seq"'::regclass); -- -- Name: Snl id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Snl" ALTER COLUMN id SET DEFAULT nextval('public."Snl_id_seq"'::regclass); -- -- Name: Streak id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Streak" ALTER COLUMN id SET DEFAULT nextval('public."Streak_id_seq"'::regclass); -- -- Name: SubAct id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ALTER COLUMN id SET DEFAULT nextval('public."SubAct_id_seq"'::regclass); -- -- Name: Upload id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ALTER COLUMN id SET DEFAULT nextval('public."Upload_id_seq"'::regclass); -- -- Name: Wallet id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Wallet" ALTER COLUMN id SET DEFAULT nextval('public."Wallet_id_seq"'::regclass); -- -- Name: WalletLND id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLND" ALTER COLUMN id SET DEFAULT nextval('public."WalletLND_id_seq"'::regclass); -- -- Name: WalletLightningAddress id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLightningAddress" ALTER COLUMN id SET DEFAULT nextval('public."WalletLightningAddress_id_seq"'::regclass); -- -- Name: Withdrawl id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ALTER COLUMN id SET DEFAULT nextval('public."Withdrawl_id_seq"'::regclass); -- -- Name: accounts id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.accounts ALTER COLUMN id SET DEFAULT nextval('public.accounts_id_seq'::regclass); -- -- Name: sessions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); -- -- Name: users id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); -- -- Name: verification_requests id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY public.verification_requests ALTER COLUMN id SET DEFAULT nextval('public.verification_requests_id_seq'::regclass); -- -- Data for Name: archive; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.archive (id, name, priority, data, state, retrylimit, retrycount, retrydelay, retrybackoff, startafter, startedon, singletonkey, singletonon, expirein, createdon, completedon, keepuntil, on_complete, output, archivedon) FROM stdin; \. -- -- Data for Name: job; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.job (id, name, priority, data, state, retrylimit, retrycount, retrydelay, retrybackoff, startafter, startedon, singletonkey, singletonon, expirein, createdon, completedon, keepuntil, on_complete, output) FROM stdin; \. -- -- Data for Name: schedule; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.schedule (name, cron, timezone, data, options, created_on, updated_on) FROM stdin; repin-2 0 5 * * * America/Chicago \N \N 2022-01-07 13:34:52.686579-06 2022-01-30 08:23:21.011044-06 trust 0 2 * * * America/Chicago \N \N 2022-02-12 09:03:33.046019-06 2022-02-12 09:03:33.046019-06 auction * * * * * America/Chicago \N \N 2022-03-02 15:18:39.267614-06 2022-03-02 15:18:39.267614-06 earn 0 0 * * * America/Chicago \N \N 2022-03-18 21:37:23.027048-05 2022-03-18 21:37:23.027048-05 streak 15 0 * * * America/Chicago \N \N 2023-02-01 18:00:51.679562-06 2023-02-01 18:00:51.679562-06 rankViews */5 * * * * America/Chicago \N \N 2023-05-23 10:03:55.172968-05 2023-05-23 10:03:55.172968-05 deleteUnusedImages 0 * * * * America/Chicago \N \N 2023-11-06 17:54:16.672248-06 2023-11-06 17:54:16.672248-06 autoDropBolt11s 1 1 * * * America/Chicago \N \N 2023-11-12 12:14:54.982795-06 2023-11-12 12:14:54.982795-06 ofac 0 3 * * * America/Chicago \N \N 2023-12-15 14:09:16.490652-06 2023-12-15 14:09:16.490652-06 checkPendingDeposits */10 * * * * America/Chicago \N \N 2024-01-12 09:01:01.434147-06 2024-01-12 09:01:01.434147-06 checkPendingWithdrawals */10 * * * * America/Chicago \N \N 2024-01-12 09:01:01.434147-06 2024-01-12 09:01:01.434147-06 views-days 0 0 * * * America/Chicago {"period": "days"} \N 2023-05-19 17:45:05.03309-05 2023-05-19 17:45:05.03309-05 views-hours 0 * * * * America/Chicago {"period": "hours"} \N 2024-01-19 15:41:36.916257-06 2024-01-19 15:41:36.916257-06 views-months 0 0 1 * * America/Chicago {"period": "months"} \N 2024-01-19 15:41:36.916257-06 2024-01-19 15:41:36.916257-06 \. -- -- Data for Name: subscription; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.subscription (event, name, created_on, updated_on) FROM stdin; \. -- -- Data for Name: version; Type: TABLE DATA; Schema: pgboss; Owner: - -- COPY pgboss.version (version, maintained_on, cron_on) FROM stdin; 20 2024-03-01 09:03:14.174521-06 2024-03-01 09:03:01.896997-06 \. -- -- Data for Name: Arc; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Arc" ("fromId", "toId", "zapTrust") FROM stdin; \. -- -- Data for Name: Bookmark; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Bookmark" ("userId", "itemId", created_at) FROM stdin; \. -- -- Data for Name: Donation; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Donation" (id, created_at, updated_at, sats, "userId") FROM stdin; 2655 2024-02-19 16:35:30.706 2024-02-19 16:35:30.706 10 10311 2656 2024-02-19 16:36:59.035 2024-02-19 16:36:59.035 100 617 2657 2024-02-20 00:49:44.423 2024-02-20 00:49:44.423 100 21498 2658 2024-02-20 02:17:21.437 2024-02-20 02:17:21.437 250 21064 2659 2024-02-20 02:17:56.8 2024-02-20 02:17:56.8 250 20222 2660 2024-02-20 02:57:31.936 2024-02-20 02:57:31.936 100 16259 2661 2024-02-20 09:38:52.379 2024-02-20 09:38:52.379 100 13599 2662 2024-02-20 09:49:27.121 2024-02-20 09:49:27.121 250 13798 2663 2024-02-20 12:32:40.196 2024-02-20 12:32:40.196 100 5776 2664 2024-02-20 14:32:27.177 2024-02-20 14:32:27.177 2100 11288 2665 2024-02-20 14:36:00.376 2024-02-20 14:36:00.376 100000 8945 2666 2024-02-20 15:06:28.934 2024-02-20 15:06:28.934 100 19193 2667 2024-02-20 15:16:46.107 2024-02-20 15:16:46.107 1 20495 2668 2024-02-20 15:16:56.126 2024-02-20 15:16:56.126 1 685 2669 2024-02-20 15:17:00.955 2024-02-20 15:17:00.955 1 2710 2670 2024-02-20 15:42:21.588 2024-02-20 15:42:21.588 1 20924 2671 2024-02-20 15:42:50.99 2024-02-20 15:42:50.99 1 635 2672 2024-02-20 17:34:11.809 2024-02-20 17:34:11.809 100 1519 2673 2024-02-20 23:41:30.328 2024-02-20 23:41:30.328 100 21571 2674 2024-02-21 02:01:50.803 2024-02-21 02:01:50.803 250 2609 2675 2024-02-21 02:03:17.865 2024-02-21 02:03:17.865 250 1769 2676 2024-02-21 08:35:53.57 2024-02-21 08:35:53.57 100 13042 2677 2024-02-21 09:44:48.244 2024-02-21 09:44:48.244 10 20479 2678 2024-02-21 09:50:41.714 2024-02-21 09:50:41.714 50 20258 2679 2024-02-21 10:45:54.837 2024-02-21 10:45:54.837 250 14404 2680 2024-02-21 10:46:20.252 2024-02-21 10:46:20.252 250 19021 2681 2024-02-21 10:46:58.071 2024-02-21 10:46:58.071 250 18076 2682 2024-02-21 11:08:44.582 2024-02-21 11:08:44.582 90 18269 2683 2024-02-21 12:24:52.164 2024-02-21 12:24:52.164 100 17011 2684 2024-02-21 12:53:07.66 2024-02-21 12:53:07.66 100000 2576 2685 2024-02-21 13:59:39.908 2024-02-21 13:59:39.908 11 634 2686 2024-02-21 14:56:37.469 2024-02-21 14:56:37.469 100 18640 2687 2024-02-21 15:33:12.825 2024-02-21 15:33:12.825 100 20573 2688 2024-02-21 20:21:04.375 2024-02-21 20:21:04.375 100 2961 2689 2024-02-21 22:33:29.188 2024-02-21 22:33:29.188 100 9874 2690 2024-02-22 01:59:29.95 2024-02-22 01:59:29.95 100 17638 2691 2024-02-22 03:48:48.036 2024-02-22 03:48:48.036 250 18581 2692 2024-02-22 03:49:11.102 2024-02-22 03:49:11.102 200 7773 2693 2024-02-22 05:16:04.566 2024-02-22 05:16:04.566 8 5565 2694 2024-02-22 06:32:44.187 2024-02-22 06:32:44.187 3 8380 2695 2024-02-22 06:53:50.176 2024-02-22 06:53:50.176 10 20614 2696 2024-02-22 07:41:54.438 2024-02-22 07:41:54.438 100 20588 2697 2024-02-22 09:36:44.442 2024-02-22 09:36:44.442 250 18139 2698 2024-02-22 09:38:43.699 2024-02-22 09:38:43.699 250 5036 2699 2024-02-22 11:03:00.247 2024-02-22 11:03:00.247 50 16410 2700 2024-02-22 11:15:13.043 2024-02-22 11:15:13.043 3 11789 2701 2024-02-22 14:57:26.851 2024-02-22 14:57:26.851 100 20581 2702 2024-02-22 15:13:32.288 2024-02-22 15:13:32.288 100 9433 2703 2024-02-22 16:31:17.279 2024-02-22 16:31:17.279 100000 17514 2704 2024-02-22 16:35:25.376 2024-02-22 16:35:25.376 1 16267 2705 2024-02-22 16:35:38.108 2024-02-22 16:35:38.108 1 15408 2706 2024-02-22 16:41:34.386 2024-02-22 16:41:34.386 1 18402 2707 2024-02-22 20:55:17.061 2024-02-22 20:55:17.061 100 19471 2708 2024-02-22 22:42:15.105 2024-02-22 22:42:15.105 100 13132 2709 2024-02-23 02:22:52.172 2024-02-23 02:22:52.172 200 16939 2710 2024-02-23 02:29:58.834 2024-02-23 02:29:58.834 200 9982 2711 2024-02-23 05:37:18.657 2024-02-23 05:37:18.657 100 17291 2712 2024-02-23 07:12:28.542 2024-02-23 07:12:28.542 100 21216 2713 2024-02-23 11:03:13.322 2024-02-23 11:03:13.322 250 20701 2714 2024-02-23 11:03:43.346 2024-02-23 11:03:43.346 200 12334 2715 2024-02-23 12:34:06.15 2024-02-23 12:34:06.15 100 6361 2716 2024-02-23 13:51:31.972 2024-02-23 13:51:31.972 90000 1890 2717 2024-02-23 16:44:47.549 2024-02-23 16:44:47.549 100 18751 2718 2024-02-24 01:10:46.149 2024-02-24 01:10:46.149 100 5495 2719 2024-02-24 03:15:11.8 2024-02-24 03:15:11.8 200 20110 2720 2024-02-24 03:21:25.579 2024-02-24 03:21:25.579 250 19036 2721 2024-02-24 05:13:20.882 2024-02-24 05:13:20.882 1000 11885 2722 2024-02-24 07:57:26.415 2024-02-24 07:57:26.415 100 11091 2723 2024-02-24 10:23:40.458 2024-02-24 10:23:40.458 250 1729 2724 2024-02-24 10:25:54.757 2024-02-24 10:25:54.757 250 5806 2725 2024-02-24 13:19:38.107 2024-02-24 13:19:38.107 1000 17212 2726 2024-02-24 14:15:32.838 2024-02-24 14:15:32.838 100000 21194 2727 2024-02-24 14:59:05.029 2024-02-24 14:59:05.029 100 736 2728 2024-02-24 17:21:45.884 2024-02-24 17:21:45.884 1000 895 2729 2024-02-24 18:26:11.163 2024-02-24 18:26:11.163 100 2832 2730 2024-02-25 02:10:28.172 2024-02-25 02:10:28.172 100 4388 2731 2024-02-25 02:46:25.311 2024-02-25 02:46:25.311 250 712 2732 2024-02-25 02:47:20.604 2024-02-25 02:47:20.604 250 11523 2733 2024-02-25 03:08:18.318 2024-02-25 03:08:18.318 200 18114 2734 2024-02-25 04:09:06.398 2024-02-25 04:09:06.398 1 1316 2735 2024-02-25 09:03:57.313 2024-02-25 09:03:57.313 100 21208 2736 2024-02-25 11:14:26.856 2024-02-25 11:14:26.856 250 18873 2737 2024-02-25 11:15:22.408 2024-02-25 11:15:22.408 250 2016 2738 2024-02-25 11:16:03.483 2024-02-25 11:16:03.483 250 2614 2739 2024-02-25 12:57:03.086 2024-02-25 12:57:03.086 100 21398 2740 2024-02-25 13:02:22.052 2024-02-25 13:02:22.052 1000 21402 2741 2024-02-25 13:17:38.142 2024-02-25 13:17:38.142 100 18270 2742 2024-02-25 15:43:13.854 2024-02-25 15:43:13.854 100 21556 2743 2024-02-25 17:33:00.308 2024-02-25 17:33:00.308 1000 16956 2744 2024-02-25 20:05:20.734 2024-02-25 20:05:20.734 100000 21400 2745 2024-02-25 23:34:10.718 2024-02-25 23:34:10.718 100 17237 2746 2024-02-26 00:30:31.424 2024-02-26 00:30:31.424 100 15594 2747 2024-02-26 03:26:45.108 2024-02-26 03:26:45.108 250 1175 2748 2024-02-26 03:27:37.458 2024-02-26 03:27:37.458 250 20555 2749 2024-02-26 08:11:05.869 2024-02-26 08:11:05.869 70 20006 2750 2024-02-26 10:00:14.677 2024-02-26 10:00:14.677 100 19662 2751 2024-02-26 10:14:06.402 2024-02-26 10:14:06.402 250 19378 2752 2024-02-26 10:15:03.945 2024-02-26 10:15:03.945 100 16336 2753 2024-02-26 10:15:10.372 2024-02-26 10:15:10.372 250 19038 2754 2024-02-26 11:58:39.81 2024-02-26 11:58:39.81 100000 2342 2755 2024-02-26 16:03:43.505 2024-02-26 16:03:43.505 1000 9482 2756 2024-02-26 20:56:12.717 2024-02-26 20:56:12.717 100 11776 2757 2024-02-26 22:55:03.231 2024-02-26 22:55:03.231 100 1286 2758 2024-02-26 23:12:52.474 2024-02-26 23:12:52.474 100 21457 2759 2024-02-26 23:36:31.139 2024-02-26 23:36:31.139 100 19966 2760 2024-02-26 23:53:12.404 2024-02-26 23:53:12.404 83 10771 2761 2024-02-27 03:16:52.203 2024-02-27 03:16:52.203 250 20310 2762 2024-02-27 03:38:56.53 2024-02-27 03:38:56.53 250 19796 2763 2024-02-27 07:44:46.515 2024-02-27 07:44:46.515 100 7668 2764 2024-02-27 11:23:18.654 2024-02-27 11:23:18.654 250 18658 2765 2024-02-27 11:25:30.824 2024-02-27 11:25:30.824 250 19038 2766 2024-02-27 13:01:55.378 2024-02-27 13:01:55.378 1000 681 2767 2024-02-27 14:30:22.122 2024-02-27 14:30:22.122 100 19557 2768 2024-02-27 14:54:56.63 2024-02-27 14:54:56.63 100000 11590 2769 2024-02-27 14:56:26.262 2024-02-27 14:56:26.262 10000 19465 2770 2024-02-27 18:49:52.686 2024-02-27 18:49:52.686 1 11423 2771 2024-02-28 00:07:49.4 2024-02-28 00:07:49.4 100 2748 2772 2024-02-28 00:53:41.194 2024-02-28 00:53:41.194 100 15273 2773 2024-02-28 01:31:10.882 2024-02-28 01:31:10.882 100 13798 2774 2024-02-28 02:45:08.975 2024-02-28 02:45:08.975 1 15544 2775 2024-02-28 07:42:54.207 2024-02-28 07:42:54.207 100 21509 2776 2024-02-28 10:19:11.528 2024-02-28 10:19:11.528 500 18896 2777 2024-02-28 10:21:53.412 2024-02-28 10:21:53.412 500 18264 2778 2024-02-28 13:43:26.313 2024-02-28 13:43:26.313 100000 664 2779 2024-02-28 14:21:45.808 2024-02-28 14:21:45.808 100 20153 2780 2024-02-28 16:28:37.597 2024-02-28 16:28:37.597 100 16296 2781 2024-02-28 20:03:52.651 2024-02-28 20:03:52.651 100 13365 2782 2024-02-28 23:03:17.871 2024-02-28 23:03:17.871 100 3409 2783 2024-02-29 02:05:05.031 2024-02-29 02:05:05.031 250 18658 2784 2024-02-29 02:05:36.527 2024-02-29 02:05:36.527 250 848 2785 2024-02-29 06:01:05.277 2024-02-29 06:01:05.277 100 3371 2786 2024-02-29 07:11:52.264 2024-02-29 07:11:52.264 100 14449 2787 2024-02-29 08:45:15.423 2024-02-29 08:45:15.423 10 10007 2788 2024-02-29 10:26:16.907 2024-02-29 10:26:16.907 500 18178 2789 2024-02-29 14:27:57.989 2024-02-29 14:27:57.989 70 14037 2790 2024-02-29 14:36:46.621 2024-02-29 14:36:46.621 100 18664 2791 2024-02-29 14:51:24.549 2024-02-29 14:51:24.549 100 19033 2792 2024-02-29 15:08:38.08 2024-02-29 15:08:38.08 100000 14280 2793 2024-02-29 20:55:21.474 2024-02-29 20:55:21.474 100 14370 2794 2024-02-29 23:12:32.369 2024-02-29 23:12:32.369 100 17184 2795 2024-03-01 02:23:33.784 2024-03-01 02:23:33.784 500 7966 2796 2024-03-01 02:31:59.4 2024-03-01 02:31:59.4 500 19837 2797 2024-03-01 07:00:34.617 2024-03-01 07:00:34.617 500 4062 2798 2024-03-01 07:30:24.397 2024-03-01 07:30:24.397 100 21222 2799 2024-03-01 12:33:06.01 2024-03-01 12:33:06.01 100 651 2800 2024-03-01 14:47:44.122 2024-03-01 14:47:44.122 1000000 6687 2801 2024-03-01 14:51:24.712 2024-03-01 14:51:24.712 2000000 20412 \. -- -- Data for Name: Earn; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Earn" (id, created_at, updated_at, msats, "userId", rank, type, "typeId") FROM stdin; 163795 2024-02-20 06:00:04.189 2024-02-20 06:00:04.192 13564723 18124 \N \N \N 163796 2024-02-20 06:00:04.189 2024-02-20 06:00:04.205 4592338 21469 \N \N \N 163797 2024-02-20 06:00:04.189 2024-02-20 06:00:04.211 2813391 2735 \N \N \N 163798 2024-02-20 06:00:04.189 2024-02-20 06:00:04.219 2199508 21214 \N \N \N 163799 2024-02-20 06:00:04.189 2024-02-20 06:00:04.225 2130480 9982 \N \N \N 163800 2024-02-20 06:00:04.189 2024-02-20 06:00:04.231 2053125 18372 \N \N \N 163801 2024-02-20 06:00:04.189 2024-02-20 06:00:04.238 2036666 20972 \N \N \N 163802 2024-02-20 06:00:04.189 2024-02-20 06:00:04.244 1938997 18494 \N \N \N 163803 2024-02-20 06:00:04.189 2024-02-20 06:00:04.252 1832931 18230 \N \N \N 163804 2024-02-20 06:00:04.189 2024-02-20 06:00:04.262 1761305 14404 \N \N \N 163805 2024-02-20 06:00:04.189 2024-02-20 06:00:04.268 1715545 20964 \N \N \N 163806 2024-02-20 06:00:04.189 2024-02-20 06:00:04.275 1379804 3304 \N \N \N 163807 2024-02-20 06:00:04.189 2024-02-20 06:00:04.28 1342056 18368 \N \N \N 163808 2024-02-20 06:00:04.189 2024-02-20 06:00:04.286 1303909 10611 \N \N \N 163809 2024-02-20 06:00:04.189 2024-02-20 06:00:04.293 1269873 21501 \N \N \N 163810 2024-02-20 06:00:04.189 2024-02-20 06:00:04.299 1235412 7903 \N \N \N 163811 2024-02-20 06:00:04.189 2024-02-20 06:00:04.306 1193174 5160 \N \N \N 163812 2024-02-20 06:00:04.189 2024-02-20 06:00:04.312 998701 16194 \N \N \N 163813 2024-02-20 06:00:04.189 2024-02-20 06:00:04.318 967162 21344 \N \N \N 163814 2024-02-20 06:00:04.189 2024-02-20 06:00:04.325 825126 17109 \N \N \N 163815 2024-02-20 06:00:04.189 2024-02-20 06:00:04.336 808318 5646 \N \N \N 163816 2024-02-20 06:00:04.189 2024-02-20 06:00:04.343 792080 14202 \N \N \N 163817 2024-02-20 06:00:04.189 2024-02-20 06:00:04.35 752516 9611 \N \N \N 163818 2024-02-20 06:00:04.189 2024-02-20 06:00:04.357 719978 1136 \N \N \N 163819 2024-02-20 06:00:04.189 2024-02-20 06:00:04.363 708233 19243 \N \N \N 163820 2024-02-20 06:00:04.189 2024-02-20 06:00:04.37 624119 19664 \N \N \N 163821 2024-02-20 06:00:04.189 2024-02-20 06:00:04.376 620316 5703 \N \N \N 163822 2024-02-20 06:00:04.189 2024-02-20 06:00:04.383 534609 20220 \N \N \N 163823 2024-02-20 06:00:04.189 2024-02-20 06:00:04.39 525048 11760 \N \N \N 163824 2024-02-20 06:00:04.189 2024-02-20 06:00:04.396 514180 12139 \N \N \N 163825 2024-02-20 06:00:04.189 2024-02-20 06:00:04.404 512145 2293 \N \N \N 163826 2024-02-20 06:00:04.189 2024-02-20 06:00:04.411 502605 19907 \N \N \N 163827 2024-02-20 06:00:04.189 2024-02-20 06:00:04.421 484534 17183 \N \N \N 163828 2024-02-20 06:00:04.189 2024-02-20 06:00:04.427 467531 17570 \N \N \N 163829 2024-02-20 06:00:04.189 2024-02-20 06:00:04.433 466649 19967 \N \N \N 163830 2024-02-20 06:00:04.189 2024-02-20 06:00:04.438 464281 5455 \N \N \N 163831 2024-02-20 06:00:04.189 2024-02-20 06:00:04.445 404864 16542 \N \N \N 163832 2024-02-20 06:00:04.189 2024-02-20 06:00:04.452 345871 3990 \N \N \N 163833 2024-02-20 06:00:04.189 2024-02-20 06:00:04.458 338063 16839 \N \N \N 163834 2024-02-20 06:00:04.189 2024-02-20 06:00:04.464 337162 974 \N \N \N 163835 2024-02-20 06:00:04.189 2024-02-20 06:00:04.471 331678 19511 \N \N \N 163836 2024-02-20 06:00:04.189 2024-02-20 06:00:04.476 329781 18608 \N \N \N 163837 2024-02-20 06:00:04.189 2024-02-20 06:00:04.483 324255 3213 \N \N \N 163838 2024-02-20 06:00:04.189 2024-02-20 06:00:04.489 320961 21090 \N \N \N 163839 2024-02-20 06:00:04.189 2024-02-20 06:00:04.496 304164 15200 \N \N \N 163840 2024-02-20 06:00:04.189 2024-02-20 06:00:04.503 301771 717 \N \N \N 163841 2024-02-20 06:00:04.189 2024-02-20 06:00:04.509 298768 976 \N \N \N 163842 2024-02-20 06:00:04.189 2024-02-20 06:00:04.515 294021 13921 \N \N \N 163843 2024-02-20 06:00:04.189 2024-02-20 06:00:04.521 289757 20436 \N \N \N 163844 2024-02-20 06:00:04.189 2024-02-20 06:00:04.531 279863 20663 \N \N \N 163845 2024-02-20 06:00:04.189 2024-02-20 06:00:04.537 279165 11760 \N \N \N 163846 2024-02-20 06:00:04.189 2024-02-20 06:00:04.544 273918 2652 \N \N \N 163847 2024-02-20 06:00:04.189 2024-02-20 06:00:04.55 271511 6717 \N \N \N 163848 2024-02-20 06:00:04.189 2024-02-20 06:00:04.556 249079 21048 \N \N \N 163849 2024-02-20 06:00:04.189 2024-02-20 06:00:04.562 232656 4323 \N \N \N 163850 2024-02-20 06:00:04.189 2024-02-20 06:00:04.568 231579 17321 \N \N \N 163851 2024-02-20 06:00:04.189 2024-02-20 06:00:04.574 229424 9345 \N \N \N 163852 2024-02-20 06:00:04.189 2024-02-20 06:00:04.58 214650 1173 \N \N \N 163853 2024-02-20 06:00:04.189 2024-02-20 06:00:04.588 210301 20701 \N \N \N 163854 2024-02-20 06:00:04.189 2024-02-20 06:00:04.594 206035 20849 \N \N \N 163855 2024-02-20 06:00:04.189 2024-02-20 06:00:04.602 197228 15491 \N \N \N 163856 2024-02-20 06:00:04.189 2024-02-20 06:00:04.608 192944 760 \N \N \N 163857 2024-02-20 06:00:04.189 2024-02-20 06:00:04.614 177984 20162 \N \N \N 163858 2024-02-20 06:00:04.189 2024-02-20 06:00:04.621 177511 19732 \N \N \N 163859 2024-02-20 06:00:04.189 2024-02-20 06:00:04.627 171259 9433 \N \N \N 163860 2024-02-20 06:00:04.189 2024-02-20 06:00:04.633 170444 11798 \N \N \N 163861 2024-02-20 06:00:04.189 2024-02-20 06:00:04.64 165139 20775 \N \N \N 163862 2024-02-20 06:00:04.189 2024-02-20 06:00:04.646 161847 18368 \N \N \N 163863 2024-02-20 06:00:04.189 2024-02-20 06:00:04.656 159216 19142 \N \N \N 163864 2024-02-20 06:00:04.189 2024-02-20 06:00:04.662 152244 20812 \N \N \N 163865 2024-02-20 06:00:04.189 2024-02-20 06:00:04.667 144560 8080 \N \N \N 163866 2024-02-20 06:00:04.189 2024-02-20 06:00:04.673 142163 21014 \N \N \N 163867 2024-02-20 06:00:04.189 2024-02-20 06:00:04.678 139455 2775 \N \N \N 163868 2024-02-20 06:00:04.189 2024-02-20 06:00:04.684 138470 965 \N \N \N 163869 2024-02-20 06:00:04.189 2024-02-20 06:00:04.69 130724 954 \N \N \N 163870 2024-02-20 06:00:04.189 2024-02-20 06:00:04.697 129693 11145 \N \N \N 163871 2024-02-20 06:00:04.189 2024-02-20 06:00:04.702 118090 9334 \N \N \N 163872 2024-02-20 06:00:04.189 2024-02-20 06:00:04.708 110002 20744 \N \N \N 163873 2024-02-20 06:00:04.189 2024-02-20 06:00:04.714 108717 16296 \N \N \N 163874 2024-02-20 06:00:04.189 2024-02-20 06:00:04.72 106765 18291 \N \N \N 163875 2024-02-20 06:00:04.189 2024-02-20 06:00:04.726 100297 9109 \N \N \N 163876 2024-02-20 06:00:04.189 2024-02-20 06:00:04.732 95220 21155 \N \N \N 163877 2024-02-20 06:00:04.189 2024-02-20 06:00:04.737 94161 8176 \N \N \N 163878 2024-02-20 06:00:04.189 2024-02-20 06:00:04.744 93392 5809 \N \N \N 163879 2024-02-20 06:00:04.189 2024-02-20 06:00:04.75 91362 19511 \N \N \N 163880 2024-02-20 06:00:04.189 2024-02-20 06:00:04.761 88616 5195 \N \N \N 163881 2024-02-20 06:00:04.189 2024-02-20 06:00:04.769 87207 21387 \N \N \N 163882 2024-02-20 06:00:04.189 2024-02-20 06:00:04.776 85890 16485 \N \N \N 163883 2024-02-20 06:00:04.189 2024-02-20 06:00:04.782 78452 2444 \N \N \N 163884 2024-02-20 06:00:04.189 2024-02-20 06:00:04.788 77836 11798 \N \N \N 163885 2024-02-20 06:00:04.189 2024-02-20 06:00:04.794 77122 20523 \N \N \N 163886 2024-02-20 06:00:04.189 2024-02-20 06:00:04.8 74961 12222 \N \N \N 163887 2024-02-20 06:00:04.189 2024-02-20 06:00:04.809 73551 21233 \N \N \N 163888 2024-02-20 06:00:04.189 2024-02-20 06:00:04.816 69819 20979 \N \N \N 163889 2024-02-20 06:00:04.189 2024-02-20 06:00:04.823 66556 15941 \N \N \N 163890 2024-02-20 06:00:04.189 2024-02-20 06:00:04.828 65839 2773 \N \N \N 163891 2024-02-20 06:00:04.189 2024-02-20 06:00:04.836 62079 977 \N \N \N 163892 2024-02-20 06:00:04.189 2024-02-20 06:00:04.842 51318 15925 \N \N \N 163893 2024-02-20 06:00:04.189 2024-02-20 06:00:04.849 46761 12921 \N \N \N 163894 2024-02-20 06:00:04.189 2024-02-20 06:00:04.855 46410 5497 \N \N \N 163895 2024-02-20 06:00:04.189 2024-02-20 06:00:04.862 43616 8916 \N \N \N 163896 2024-02-20 06:00:04.189 2024-02-20 06:00:04.868 39532 12346 \N \N \N 163897 2024-02-20 06:00:04.189 2024-02-20 06:00:04.874 39142 14818 \N \N \N 163898 2024-02-20 06:00:04.189 2024-02-20 06:00:04.881 35783 14503 \N \N \N 163899 2024-02-20 06:00:04.189 2024-02-20 06:00:04.888 30416 16341 \N \N \N 163900 2024-02-20 06:00:04.189 2024-02-20 06:00:04.894 28176 13931 \N \N \N 163901 2024-02-20 06:00:04.189 2024-02-20 06:00:04.9 26109 7587 \N \N \N 163902 2024-02-20 06:00:04.189 2024-02-20 06:00:04.908 23173 20969 \N \N \N 163903 2024-02-20 06:00:04.189 2024-02-20 06:00:04.916 20708 16638 \N \N \N 163904 2024-02-20 06:00:04.189 2024-02-20 06:00:04.922 17063 7916 \N \N \N 163905 2024-02-20 06:00:04.189 2024-02-20 06:00:04.932 15182 12516 \N \N \N 163906 2024-02-20 06:00:04.189 2024-02-20 06:00:04.942 14836 17001 \N \N \N 163907 2024-02-20 06:00:04.189 2024-02-20 06:00:04.948 13898 20546 \N \N \N 163908 2024-02-20 06:00:04.189 2024-02-20 06:00:04.954 7930938 17722 \N \N \N 163909 2024-02-20 06:00:04.189 2024-02-20 06:00:04.961 5145508 20137 \N \N \N 163910 2024-02-20 06:00:04.189 2024-02-20 06:00:04.967 4082077 21145 \N \N \N 163911 2024-02-20 06:00:04.189 2024-02-20 06:00:04.972 2632704 2088 \N \N \N 163912 2024-02-20 06:00:04.189 2024-02-20 06:00:04.978 1824751 5865 \N \N \N 163913 2024-02-20 06:00:04.189 2024-02-20 06:00:04.983 1817479 761 \N \N \N 163914 2024-02-20 06:00:04.189 2024-02-20 06:00:04.99 1646733 21303 \N \N \N 163915 2024-02-20 06:00:04.189 2024-02-20 06:00:04.997 1459602 18769 \N \N \N 163916 2024-02-20 06:00:04.189 2024-02-20 06:00:05.008 1436607 19289 \N \N \N 163917 2024-02-20 06:00:04.189 2024-02-20 06:00:05.025 1420115 21263 \N \N \N 163918 2024-02-20 06:00:04.189 2024-02-20 06:00:05.04 1377340 4074 \N \N \N 163919 2024-02-20 06:00:04.189 2024-02-20 06:00:05.061 1351249 17147 \N \N \N 163920 2024-02-20 06:00:04.189 2024-02-20 06:00:05.07 1182638 14650 \N \N \N 163921 2024-02-20 06:00:04.189 2024-02-20 06:00:05.078 1154083 14545 \N \N \N 163922 2024-02-20 06:00:04.189 2024-02-20 06:00:05.085 1097318 19459 \N \N \N 163923 2024-02-20 06:00:04.189 2024-02-20 06:00:05.096 1084460 646 \N \N \N 163924 2024-02-20 06:00:04.189 2024-02-20 06:00:05.105 1030174 17522 \N \N \N 163925 2024-02-20 06:00:04.189 2024-02-20 06:00:05.11 957578 657 \N \N \N 163926 2024-02-20 06:00:04.189 2024-02-20 06:00:05.116 948455 21600 \N \N \N 163927 2024-02-20 06:00:04.189 2024-02-20 06:00:05.126 947025 21103 \N \N \N 163928 2024-02-20 06:00:04.189 2024-02-20 06:00:05.131 938331 21051 \N \N \N 163929 2024-02-20 06:00:04.189 2024-02-20 06:00:05.137 901179 13575 \N \N \N 163930 2024-02-20 06:00:04.189 2024-02-20 06:00:05.143 850729 19759 \N \N \N 163931 2024-02-20 06:00:04.189 2024-02-20 06:00:05.153 807560 13753 \N \N \N 163932 2024-02-20 06:00:04.189 2024-02-20 06:00:05.161 746200 21523 \N \N \N 163933 2024-02-20 06:00:04.189 2024-02-20 06:00:05.167 727094 8713 \N \N \N 163934 2024-02-20 06:00:04.189 2024-02-20 06:00:05.172 632713 8954 \N \N \N 163935 2024-02-20 06:00:04.189 2024-02-20 06:00:05.179 620629 13174 \N \N \N 163936 2024-02-20 06:00:04.189 2024-02-20 06:00:05.185 608776 10771 \N \N \N 163937 2024-02-20 06:00:04.189 2024-02-20 06:00:05.19 587733 17944 \N \N \N 163938 2024-02-20 06:00:04.189 2024-02-20 06:00:05.196 567494 17696 \N \N \N 163939 2024-02-20 06:00:04.189 2024-02-20 06:00:05.202 556053 20490 \N \N \N 163940 2024-02-20 06:00:04.189 2024-02-20 06:00:05.208 527661 10352 \N \N \N 163941 2024-02-20 06:00:04.189 2024-02-20 06:00:05.215 510021 19527 \N \N \N 163942 2024-02-20 06:00:04.189 2024-02-20 06:00:05.221 499182 21532 \N \N \N 163943 2024-02-20 06:00:04.189 2024-02-20 06:00:05.228 492481 17494 \N \N \N 163944 2024-02-20 06:00:04.189 2024-02-20 06:00:05.238 438166 9167 \N \N \N 163945 2024-02-20 06:00:04.189 2024-02-20 06:00:05.244 437353 16124 \N \N \N 163946 2024-02-20 06:00:04.189 2024-02-20 06:00:05.25 432238 2748 \N \N \N 163947 2024-02-20 06:00:04.189 2024-02-20 06:00:05.257 425903 20663 \N \N \N 163948 2024-02-20 06:00:04.189 2024-02-20 06:00:05.263 417735 7673 \N \N \N 163949 2024-02-20 06:00:04.189 2024-02-20 06:00:05.27 394492 21361 \N \N \N 163950 2024-02-20 06:00:04.189 2024-02-20 06:00:05.276 375515 19394 \N \N \N 163951 2024-02-20 06:00:04.189 2024-02-20 06:00:05.281 369004 19459 \N \N \N 163952 2024-02-20 06:00:04.189 2024-02-20 06:00:05.287 368962 17693 \N \N \N 163953 2024-02-20 06:00:04.189 2024-02-20 06:00:05.293 366822 4064 \N \N \N 163954 2024-02-20 06:00:04.189 2024-02-20 06:00:05.298 364189 21492 \N \N \N 163955 2024-02-20 06:00:04.189 2024-02-20 06:00:05.305 340470 20490 \N \N \N 163956 2024-02-20 06:00:04.189 2024-02-20 06:00:05.311 329021 749 \N \N \N 163957 2024-02-20 06:00:04.189 2024-02-20 06:00:05.318 325549 10849 \N \N \N 163958 2024-02-20 06:00:04.189 2024-02-20 06:00:05.323 306596 13553 \N \N \N 163959 2024-02-20 06:00:04.189 2024-02-20 06:00:05.329 305776 18659 \N \N \N 163960 2024-02-20 06:00:04.189 2024-02-20 06:00:05.335 304215 20272 \N \N \N 163961 2024-02-20 06:00:04.189 2024-02-20 06:00:05.341 300082 10280 \N \N \N 163962 2024-02-20 06:00:04.189 2024-02-20 06:00:05.347 294602 5578 \N \N \N 163963 2024-02-20 06:00:04.189 2024-02-20 06:00:05.352 289507 16356 \N \N \N 163964 2024-02-20 06:00:04.189 2024-02-20 06:00:05.359 280612 19941 \N \N \N 163965 2024-02-20 06:00:04.189 2024-02-20 06:00:05.364 255746 7827 \N \N \N 163966 2024-02-20 06:00:04.189 2024-02-20 06:00:05.37 241864 1426 \N \N \N 163967 2024-02-20 06:00:04.189 2024-02-20 06:00:05.375 240595 993 \N \N \N 163968 2024-02-20 06:00:04.189 2024-02-20 06:00:05.38 233039 805 \N \N \N 163969 2024-02-20 06:00:04.189 2024-02-20 06:00:05.386 228745 3518 \N \N \N 163970 2024-02-20 06:00:04.189 2024-02-20 06:00:05.391 226549 9482 \N \N \N 163971 2024-02-20 06:00:04.189 2024-02-20 06:00:05.397 224698 20730 \N \N \N 163972 2024-02-20 06:00:04.189 2024-02-20 06:00:05.402 224348 19843 \N \N \N 163973 2024-02-20 06:00:04.189 2024-02-20 06:00:05.407 221467 20243 \N \N \N 163974 2024-02-20 06:00:04.189 2024-02-20 06:00:05.414 210448 20045 \N \N \N 163975 2024-02-20 06:00:04.189 2024-02-20 06:00:05.42 206307 20655 \N \N \N 163976 2024-02-20 06:00:04.189 2024-02-20 06:00:05.428 204270 2010 \N \N \N 163977 2024-02-20 06:00:04.189 2024-02-20 06:00:05.435 193398 1030 \N \N \N 163978 2024-02-20 06:00:04.189 2024-02-20 06:00:05.44 191842 4984 \N \N \N 163979 2024-02-20 06:00:04.189 2024-02-20 06:00:05.447 190979 21136 \N \N \N 163980 2024-02-20 06:00:04.189 2024-02-20 06:00:05.452 183297 20715 \N \N \N 163981 2024-02-20 06:00:04.189 2024-02-20 06:00:05.459 174618 17217 \N \N \N 163982 2024-02-20 06:00:04.189 2024-02-20 06:00:05.471 171818 15978 \N \N \N 163983 2024-02-20 06:00:04.189 2024-02-20 06:00:05.477 166989 16789 \N \N \N 163984 2024-02-20 06:00:04.189 2024-02-20 06:00:05.49 166461 822 \N \N \N 163985 2024-02-20 06:00:04.189 2024-02-20 06:00:05.497 159698 739 \N \N \N 163986 2024-02-20 06:00:04.189 2024-02-20 06:00:05.504 158758 13177 \N \N \N 163987 2024-02-20 06:00:04.189 2024-02-20 06:00:05.51 157115 13055 \N \N \N 163988 2024-02-20 06:00:04.189 2024-02-20 06:00:05.516 155827 10862 \N \N \N 163989 2024-02-20 06:00:04.189 2024-02-20 06:00:05.521 155170 8059 \N \N \N 163990 2024-02-20 06:00:04.189 2024-02-20 06:00:05.53 152928 697 \N \N \N 163991 2024-02-20 06:00:04.189 2024-02-20 06:00:05.541 150808 20751 \N \N \N 163992 2024-02-20 06:00:04.189 2024-02-20 06:00:05.549 149205 11897 \N \N \N 163993 2024-02-20 06:00:04.189 2024-02-20 06:00:05.558 142343 12272 \N \N \N 163994 2024-02-20 06:00:04.189 2024-02-20 06:00:05.564 141404 666 \N \N \N 163995 2024-02-20 06:00:04.189 2024-02-20 06:00:05.571 140243 1723 \N \N \N 163996 2024-02-20 06:00:04.189 2024-02-20 06:00:05.576 132762 21233 \N \N \N 163997 2024-02-20 06:00:04.189 2024-02-20 06:00:05.583 130777 19016 \N \N \N 163998 2024-02-20 06:00:04.189 2024-02-20 06:00:05.589 129484 19661 \N \N \N 163999 2024-02-20 06:00:04.189 2024-02-20 06:00:05.595 122283 9655 \N \N \N 164000 2024-02-20 06:00:04.189 2024-02-20 06:00:05.602 120540 1389 \N \N \N 164001 2024-02-20 06:00:04.189 2024-02-20 06:00:05.608 118901 15337 \N \N \N 164002 2024-02-20 06:00:04.189 2024-02-20 06:00:05.616 112500 21603 \N \N \N 164003 2024-02-20 06:00:04.189 2024-02-20 06:00:05.627 110916 5449 \N \N \N 164004 2024-02-20 06:00:04.189 2024-02-20 06:00:05.633 110762 18387 \N \N \N 164005 2024-02-20 06:00:04.189 2024-02-20 06:00:05.643 107770 9290 \N \N \N 164006 2024-02-20 06:00:04.189 2024-02-20 06:00:05.659 107364 12097 \N \N \N 164007 2024-02-20 06:00:04.189 2024-02-20 06:00:05.676 106928 14247 \N \N \N 164008 2024-02-20 06:00:04.189 2024-02-20 06:00:05.69 104768 9 \N \N \N 164009 2024-02-20 06:00:04.189 2024-02-20 06:00:05.712 101264 9496 \N \N \N 164010 2024-02-20 06:00:04.189 2024-02-20 06:00:05.73 98559 16193 \N \N \N 164011 2024-02-20 06:00:04.189 2024-02-20 06:00:05.739 96963 19512 \N \N \N 164012 2024-02-20 06:00:04.189 2024-02-20 06:00:05.748 93919 11018 \N \N \N 164013 2024-02-20 06:00:04.189 2024-02-20 06:00:05.756 90227 17522 \N \N \N 164014 2024-02-20 06:00:04.189 2024-02-20 06:00:05.762 89054 15560 \N \N \N 164015 2024-02-20 06:00:04.189 2024-02-20 06:00:05.768 86845 18309 \N \N \N 164016 2024-02-20 06:00:04.189 2024-02-20 06:00:05.773 84083 9026 \N \N \N 164017 2024-02-20 06:00:04.189 2024-02-20 06:00:05.781 79259 20525 \N \N \N 164018 2024-02-20 06:00:04.189 2024-02-20 06:00:05.789 76349 7185 \N \N \N 164019 2024-02-20 06:00:04.189 2024-02-20 06:00:05.794 75176 19346 \N \N \N 164020 2024-02-20 06:00:04.189 2024-02-20 06:00:05.802 74704 21033 \N \N \N 164021 2024-02-20 06:00:04.189 2024-02-20 06:00:05.809 73957 8380 \N \N \N 164022 2024-02-20 06:00:04.189 2024-02-20 06:00:05.815 73229 16149 \N \N \N 164023 2024-02-20 06:00:04.189 2024-02-20 06:00:05.821 71843 8796 \N \N \N 164024 2024-02-20 06:00:04.189 2024-02-20 06:00:05.827 67386 7847 \N \N \N 164025 2024-02-20 06:00:04.189 2024-02-20 06:00:05.832 65776 1697 \N \N \N 164026 2024-02-20 06:00:04.189 2024-02-20 06:00:05.842 63531 2264 \N \N \N 164027 2024-02-20 06:00:04.189 2024-02-20 06:00:05.847 62178 21047 \N \N \N 164028 2024-02-20 06:00:04.189 2024-02-20 06:00:05.854 61358 12561 \N \N \N 164029 2024-02-20 06:00:04.189 2024-02-20 06:00:05.86 56986 1261 \N \N \N 164030 2024-02-20 06:00:04.189 2024-02-20 06:00:05.866 54664 17064 \N \N \N 164031 2024-02-20 06:00:04.189 2024-02-20 06:00:05.872 51785 10519 \N \N \N 164032 2024-02-20 06:00:04.189 2024-02-20 06:00:05.878 51444 19995 \N \N \N 164033 2024-02-20 06:00:04.189 2024-02-20 06:00:05.885 50928 11430 \N \N \N 164034 2024-02-20 06:00:04.189 2024-02-20 06:00:05.89 50715 4027 \N \N \N 164035 2024-02-20 06:00:04.189 2024-02-20 06:00:05.902 50620 14225 \N \N \N 164036 2024-02-20 06:00:04.189 2024-02-20 06:00:05.91 48390 19622 \N \N \N 164037 2024-02-20 06:00:04.189 2024-02-20 06:00:05.916 46304 19459 \N \N \N 164038 2024-02-20 06:00:04.189 2024-02-20 06:00:05.936 41198 19553 \N \N \N 164039 2024-02-20 06:00:04.189 2024-02-20 06:00:05.962 38533 20817 \N \N \N 164040 2024-02-20 06:00:04.189 2024-02-20 06:00:05.971 37751 9348 \N \N \N 164041 2024-02-20 06:00:04.189 2024-02-20 06:00:05.976 37001 13406 \N \N \N 164042 2024-02-20 06:00:04.189 2024-02-20 06:00:05.982 34306 20246 \N \N \N 164043 2024-02-20 06:00:04.189 2024-02-20 06:00:05.99 32592 16653 \N \N \N 164044 2024-02-20 06:00:04.189 2024-02-20 06:00:05.996 30418 763 \N \N \N 164045 2024-02-20 06:00:04.189 2024-02-20 06:00:06.004 27102 14651 \N \N \N 164046 2024-02-20 06:00:04.189 2024-02-20 06:00:06.015 26306 1286 \N \N \N 164047 2024-02-20 06:00:04.189 2024-02-20 06:00:06.023 26229 8505 \N \N \N 164048 2024-02-20 06:00:04.189 2024-02-20 06:00:06.029 25471 623 \N \N \N 164049 2024-02-20 06:00:04.189 2024-02-20 06:00:06.034 22227 8926 \N \N \N 164050 2024-02-20 06:00:04.189 2024-02-20 06:00:06.041 20778 13216 \N \N \N 164051 2024-02-20 06:00:04.189 2024-02-20 06:00:06.046 19275 8954 \N \N \N 164052 2024-02-20 06:00:04.189 2024-02-20 06:00:06.056 16103 652 \N \N \N 164053 2024-02-20 06:00:04.189 2024-02-20 06:00:06.064 12320 18114 \N \N \N 164054 2024-02-20 06:00:04.189 2024-02-20 06:00:06.07 11763 2519 \N \N \N 164055 2024-02-20 06:00:04.189 2024-02-20 06:00:06.077 8498 7119 \N \N \N 164056 2024-02-21 06:00:04.169 2024-02-21 06:00:04.17 18904294 18995 \N \N \N 164057 2024-02-21 06:00:04.169 2024-02-21 06:00:04.183 10049464 18932 \N \N \N 164058 2024-02-21 06:00:04.169 2024-02-21 06:00:04.19 5321002 17455 \N \N \N 164059 2024-02-21 06:00:04.169 2024-02-21 06:00:04.2 4180633 9354 \N \N \N 164060 2024-02-21 06:00:04.169 2024-02-21 06:00:04.22 3492203 9150 \N \N \N 164061 2024-02-21 06:00:04.169 2024-02-21 06:00:04.244 3164269 9611 \N \N \N 164062 2024-02-21 06:00:04.169 2024-02-21 06:00:04.268 3085099 1425 \N \N \N 164063 2024-02-21 06:00:04.169 2024-02-21 06:00:04.304 2456933 19664 \N \N \N 164064 2024-02-21 06:00:04.169 2024-02-21 06:00:04.328 2387944 16354 \N \N \N 164065 2024-02-21 06:00:04.169 2024-02-21 06:00:04.345 2292853 10311 \N \N \N 164066 2024-02-21 06:00:04.169 2024-02-21 06:00:04.366 1984489 17713 \N \N \N 164067 2024-02-21 06:00:04.169 2024-02-21 06:00:04.388 1829704 17602 \N \N \N 164068 2024-02-21 06:00:04.169 2024-02-21 06:00:04.415 1545327 19154 \N \N \N 164069 2024-02-21 06:00:04.169 2024-02-21 06:00:04.436 1423777 10818 \N \N \N 164070 2024-02-21 06:00:04.169 2024-02-21 06:00:04.461 1139543 16842 \N \N \N 164071 2024-02-21 06:00:04.169 2024-02-21 06:00:04.484 1094949 18618 \N \N \N 164072 2024-02-21 06:00:04.169 2024-02-21 06:00:04.512 1039271 4502 \N \N \N 164073 2024-02-21 06:00:04.169 2024-02-21 06:00:04.536 1019258 4304 \N \N \N 164074 2024-02-21 06:00:04.169 2024-02-21 06:00:04.556 956082 700 \N \N \N 164075 2024-02-21 06:00:04.169 2024-02-21 06:00:04.58 943185 979 \N \N \N 164076 2024-02-21 06:00:04.169 2024-02-21 06:00:04.604 938845 14465 \N \N \N 164077 2024-02-21 06:00:04.169 2024-02-21 06:00:04.628 937463 5761 \N \N \N 164078 2024-02-21 06:00:04.169 2024-02-21 06:00:04.656 931928 17218 \N \N \N 164079 2024-02-21 06:00:04.169 2024-02-21 06:00:04.68 886250 19018 \N \N \N 164080 2024-02-21 06:00:04.169 2024-02-21 06:00:04.705 854977 20912 \N \N \N 164081 2024-02-21 06:00:04.169 2024-02-21 06:00:04.724 829044 13133 \N \N \N 164082 2024-02-21 06:00:04.169 2024-02-21 06:00:04.744 816850 21612 \N \N \N 164083 2024-02-21 06:00:04.169 2024-02-21 06:00:04.751 815311 1141 \N \N \N 164084 2024-02-21 06:00:04.169 2024-02-21 06:00:04.757 724425 1836 \N \N \N 164085 2024-02-21 06:00:04.169 2024-02-21 06:00:04.764 669365 20291 \N \N \N 164086 2024-02-21 06:00:04.169 2024-02-21 06:00:04.771 665234 16097 \N \N \N 164087 2024-02-21 06:00:04.169 2024-02-21 06:00:04.778 663507 5387 \N \N \N 164088 2024-02-21 06:00:04.169 2024-02-21 06:00:04.786 643539 16406 \N \N \N 164089 2024-02-21 06:00:04.169 2024-02-21 06:00:04.793 592370 1802 \N \N \N 164090 2024-02-21 06:00:04.169 2024-02-21 06:00:04.8 582187 4650 \N \N \N 164091 2024-02-21 06:00:04.169 2024-02-21 06:00:04.808 577254 902 \N \N \N 164092 2024-02-21 06:00:04.169 2024-02-21 06:00:04.816 574007 21145 \N \N \N 164093 2024-02-21 06:00:04.169 2024-02-21 06:00:04.83 567040 1105 \N \N \N 164094 2024-02-21 06:00:04.169 2024-02-21 06:00:04.84 552788 20624 \N \N \N 164095 2024-02-21 06:00:04.169 2024-02-21 06:00:04.848 530334 3683 \N \N \N 164096 2024-02-21 06:00:04.169 2024-02-21 06:00:04.86 529290 11750 \N \N \N 164097 2024-02-21 06:00:04.169 2024-02-21 06:00:04.866 480864 1801 \N \N \N 164098 2024-02-21 06:00:04.169 2024-02-21 06:00:04.875 476758 7766 \N \N \N 164099 2024-02-21 06:00:04.169 2024-02-21 06:00:04.882 455411 7869 \N \N \N 164100 2024-02-21 06:00:04.169 2024-02-21 06:00:04.888 454731 13544 \N \N \N 164101 2024-02-21 06:00:04.169 2024-02-21 06:00:04.903 445945 15052 \N \N \N 164102 2024-02-21 06:00:04.169 2024-02-21 06:00:04.919 431642 13132 \N \N \N 164103 2024-02-21 06:00:04.169 2024-02-21 06:00:04.936 422358 18897 \N \N \N 164104 2024-02-21 06:00:04.169 2024-02-21 06:00:04.947 394262 4322 \N \N \N 164105 2024-02-21 06:00:04.169 2024-02-21 06:00:04.954 385852 11145 \N \N \N 164106 2024-02-21 06:00:04.169 2024-02-21 06:00:04.961 382415 19806 \N \N \N 164107 2024-02-21 06:00:04.169 2024-02-21 06:00:04.967 382185 17526 \N \N \N 164108 2024-02-21 06:00:04.169 2024-02-21 06:00:04.975 370834 8506 \N \N \N 164109 2024-02-21 06:00:04.169 2024-02-21 06:00:04.982 369196 12422 \N \N \N 164110 2024-02-21 06:00:04.169 2024-02-21 06:00:04.993 317959 18704 \N \N \N 164111 2024-02-21 06:00:04.169 2024-02-21 06:00:05 311627 1603 \N \N \N 164112 2024-02-21 06:00:04.169 2024-02-21 06:00:05.009 292282 18660 \N \N \N 164113 2024-02-21 06:00:04.169 2024-02-21 06:00:05.015 274685 19156 \N \N \N 164114 2024-02-21 06:00:04.169 2024-02-21 06:00:05.025 265055 617 \N \N \N 164115 2024-02-21 06:00:04.169 2024-02-21 06:00:05.039 263050 5646 \N \N \N 164116 2024-02-21 06:00:04.169 2024-02-21 06:00:05.048 258469 17707 \N \N \N 164117 2024-02-21 06:00:04.169 2024-02-21 06:00:05.056 254832 18393 \N \N \N 164118 2024-02-21 06:00:04.169 2024-02-21 06:00:05.063 244321 14791 \N \N \N 164119 2024-02-21 06:00:04.169 2024-02-21 06:00:05.07 233260 5694 \N \N \N 164120 2024-02-21 06:00:04.169 2024-02-21 06:00:05.077 230588 6327 \N \N \N 164121 2024-02-21 06:00:04.169 2024-02-21 06:00:05.086 214755 21365 \N \N \N 164122 2024-02-21 06:00:04.169 2024-02-21 06:00:05.096 208190 20183 \N \N \N 164123 2024-02-21 06:00:04.169 2024-02-21 06:00:05.103 207949 21540 \N \N \N 164124 2024-02-21 06:00:04.169 2024-02-21 06:00:05.113 206391 889 \N \N \N 164125 2024-02-21 06:00:04.169 2024-02-21 06:00:05.119 204328 14939 \N \N \N 164126 2024-02-21 06:00:04.169 2024-02-21 06:00:05.127 192933 17291 \N \N \N 164127 2024-02-21 06:00:04.169 2024-02-21 06:00:05.136 178754 15556 \N \N \N 164128 2024-02-21 06:00:04.169 2024-02-21 06:00:05.144 178011 21119 \N \N \N 164129 2024-02-21 06:00:04.169 2024-02-21 06:00:05.154 171392 825 \N \N \N 164130 2024-02-21 06:00:04.169 2024-02-21 06:00:05.164 156301 18829 \N \N \N 164131 2024-02-21 06:00:04.169 2024-02-21 06:00:05.171 152199 897 \N \N \N 164132 2024-02-21 06:00:04.169 2024-02-21 06:00:05.188 149237 1567 \N \N \N 164133 2024-02-21 06:00:04.169 2024-02-21 06:00:05.21 148954 11523 \N \N \N 164134 2024-02-21 06:00:04.169 2024-02-21 06:00:05.222 147693 15196 \N \N \N 164135 2024-02-21 06:00:04.169 2024-02-21 06:00:05.23 143258 3440 \N \N \N 164136 2024-02-21 06:00:04.169 2024-02-21 06:00:05.243 141325 14247 \N \N \N 164137 2024-02-21 06:00:04.169 2024-02-21 06:00:05.256 136946 11996 \N \N \N 164138 2024-02-21 06:00:04.169 2024-02-21 06:00:05.267 135704 21416 \N \N \N 164139 2024-02-21 06:00:04.169 2024-02-21 06:00:05.275 132141 12102 \N \N \N 164140 2024-02-21 06:00:04.169 2024-02-21 06:00:05.285 125156 16684 \N \N \N 164141 2024-02-21 06:00:04.169 2024-02-21 06:00:05.292 117928 17046 \N \N \N 164142 2024-02-21 06:00:04.169 2024-02-21 06:00:05.299 116682 6149 \N \N \N 164143 2024-02-21 06:00:04.169 2024-02-21 06:00:05.306 115467 19142 \N \N \N 164144 2024-02-21 06:00:04.169 2024-02-21 06:00:05.313 111600 13782 \N \N \N 164145 2024-02-21 06:00:04.169 2024-02-21 06:00:05.322 104471 19148 \N \N \N 164146 2024-02-21 06:00:04.169 2024-02-21 06:00:05.335 96662 4062 \N \N \N 164147 2024-02-21 06:00:04.169 2024-02-21 06:00:05.343 87107 1567 \N \N \N 164148 2024-02-21 06:00:04.169 2024-02-21 06:00:05.352 86006 18072 \N \N \N 164149 2024-02-21 06:00:04.169 2024-02-21 06:00:05.36 76522 1272 \N \N \N 164150 2024-02-21 06:00:04.169 2024-02-21 06:00:05.366 71665 18736 \N \N \N 164151 2024-02-21 06:00:04.169 2024-02-21 06:00:05.373 43993 21619 \N \N \N 164152 2024-02-21 06:00:04.169 2024-02-21 06:00:05.379 43657 1090 \N \N \N 164153 2024-02-21 06:00:04.169 2024-02-21 06:00:05.386 41377 2961 \N \N \N 164154 2024-02-21 06:00:04.169 2024-02-21 06:00:05.393 36630 18225 \N \N \N 164155 2024-02-21 06:00:04.169 2024-02-21 06:00:05.399 32737 13763 \N \N \N 164156 2024-02-21 06:00:04.169 2024-02-21 06:00:05.405 17325 14202 \N \N \N 164157 2024-02-21 06:00:04.169 2024-02-21 06:00:05.412 16308 940 \N \N \N 164158 2024-02-21 06:00:04.169 2024-02-21 06:00:05.419 11027859 12422 \N \N \N 164159 2024-02-21 06:00:04.169 2024-02-21 06:00:05.425 5576205 13987 \N \N \N 164160 2024-02-21 06:00:04.169 2024-02-21 06:00:05.431 5420454 18626 \N \N \N 164161 2024-02-21 06:00:04.169 2024-02-21 06:00:05.437 3636723 16042 \N \N \N 164162 2024-02-21 06:00:04.169 2024-02-21 06:00:05.444 3496307 2774 \N \N \N 164163 2024-02-21 06:00:04.169 2024-02-21 06:00:05.451 3339060 15271 \N \N \N 164164 2024-02-21 06:00:04.169 2024-02-21 06:00:05.457 3290494 14247 \N \N \N 164165 2024-02-21 06:00:04.169 2024-02-21 06:00:05.464 2884558 5904 \N \N \N 164166 2024-02-21 06:00:04.169 2024-02-21 06:00:05.47 2408293 17166 \N \N \N 164167 2024-02-21 06:00:04.169 2024-02-21 06:00:05.476 1999971 3304 \N \N \N 164168 2024-02-21 06:00:04.169 2024-02-21 06:00:05.482 1888933 6300 \N \N \N 164169 2024-02-21 06:00:04.169 2024-02-21 06:00:05.488 1888838 9109 \N \N \N 164170 2024-02-21 06:00:04.169 2024-02-21 06:00:05.496 1825663 2529 \N \N \N 164171 2024-02-21 06:00:04.169 2024-02-21 06:00:05.502 1819194 21532 \N \N \N 164172 2024-02-21 06:00:04.169 2024-02-21 06:00:05.508 1716190 4633 \N \N \N 164173 2024-02-21 06:00:04.169 2024-02-21 06:00:05.515 1649025 5752 \N \N \N 164174 2024-02-21 06:00:04.169 2024-02-21 06:00:05.521 1530013 8326 \N \N \N 164175 2024-02-21 06:00:04.169 2024-02-21 06:00:05.527 1378079 9347 \N \N \N 164176 2024-02-21 06:00:04.169 2024-02-21 06:00:05.534 1174369 21201 \N \N \N 164177 2024-02-21 06:00:04.169 2024-02-21 06:00:05.541 1011294 8173 \N \N \N 164178 2024-02-21 06:00:04.169 2024-02-21 06:00:05.547 931033 3360 \N \N \N 164179 2024-02-21 06:00:04.169 2024-02-21 06:00:05.553 891966 2652 \N \N \N 164180 2024-02-21 06:00:04.169 2024-02-21 06:00:05.562 877452 19909 \N \N \N 164181 2024-02-21 06:00:04.169 2024-02-21 06:00:05.568 811623 736 \N \N \N 164182 2024-02-21 06:00:04.169 2024-02-21 06:00:05.574 806188 10493 \N \N \N 164183 2024-02-21 06:00:04.169 2024-02-21 06:00:05.583 790415 768 \N \N \N 164184 2024-02-21 06:00:04.169 2024-02-21 06:00:05.59 789006 21155 \N \N \N 164185 2024-02-21 06:00:04.169 2024-02-21 06:00:05.596 774578 19981 \N \N \N 164186 2024-02-21 06:00:04.169 2024-02-21 06:00:05.601 759315 19259 \N \N \N 164187 2024-02-21 06:00:04.169 2024-02-21 06:00:05.608 757645 19967 \N \N \N 164188 2024-02-21 06:00:04.169 2024-02-21 06:00:05.614 756868 15148 \N \N \N 164189 2024-02-21 06:00:04.169 2024-02-21 06:00:05.621 746753 13767 \N \N \N 164190 2024-02-21 06:00:04.169 2024-02-21 06:00:05.628 718189 18675 \N \N \N 164191 2024-02-21 06:00:04.169 2024-02-21 06:00:05.642 712589 20782 \N \N \N 164192 2024-02-21 06:00:04.169 2024-02-21 06:00:05.648 711501 708 \N \N \N 164193 2024-02-21 06:00:04.169 2024-02-21 06:00:05.654 702858 21422 \N \N \N 164194 2024-02-21 06:00:04.169 2024-02-21 06:00:05.66 689554 20973 \N \N \N 164195 2024-02-21 06:00:04.169 2024-02-21 06:00:05.666 661468 21042 \N \N \N 164196 2024-02-21 06:00:04.169 2024-02-21 06:00:05.672 651873 3439 \N \N \N 164197 2024-02-21 06:00:04.169 2024-02-21 06:00:05.678 642133 18815 \N \N \N 164198 2024-02-21 06:00:04.169 2024-02-21 06:00:05.686 603118 11443 \N \N \N 164199 2024-02-21 06:00:04.169 2024-02-21 06:00:05.693 568672 6421 \N \N \N 164200 2024-02-21 06:00:04.169 2024-02-21 06:00:05.699 545934 19615 \N \N \N 164201 2024-02-21 06:00:04.169 2024-02-21 06:00:05.705 527949 14080 \N \N \N 164202 2024-02-21 06:00:04.169 2024-02-21 06:00:05.711 526159 19494 \N \N \N 164203 2024-02-21 06:00:04.169 2024-02-21 06:00:05.717 496722 19398 \N \N \N 164204 2024-02-21 06:00:04.169 2024-02-21 06:00:05.723 489543 1175 \N \N \N 164205 2024-02-21 06:00:04.169 2024-02-21 06:00:05.729 489305 9844 \N \N \N 164206 2024-02-21 06:00:04.169 2024-02-21 06:00:05.753 474565 11516 \N \N \N 164207 2024-02-21 06:00:04.169 2024-02-21 06:00:05.769 462006 19553 \N \N \N 164208 2024-02-21 06:00:04.169 2024-02-21 06:00:05.785 458819 15367 \N \N \N 164209 2024-02-21 06:00:04.169 2024-02-21 06:00:05.812 456073 19909 \N \N \N 164210 2024-02-21 06:00:04.169 2024-02-21 06:00:05.824 436038 14169 \N \N \N 164211 2024-02-21 06:00:04.169 2024-02-21 06:00:05.843 411236 18392 \N \N \N 164212 2024-02-21 06:00:04.169 2024-02-21 06:00:05.85 410478 21541 \N \N \N 164213 2024-02-21 06:00:04.169 2024-02-21 06:00:05.857 396403 10393 \N \N \N 164214 2024-02-21 06:00:04.169 2024-02-21 06:00:05.863 348713 986 \N \N \N 164215 2024-02-21 06:00:04.169 2024-02-21 06:00:05.873 338474 17722 \N \N \N 164216 2024-02-21 06:00:04.169 2024-02-21 06:00:05.886 336027 646 \N \N \N 164217 2024-02-21 06:00:04.169 2024-02-21 06:00:05.893 316849 10484 \N \N \N 164218 2024-02-21 06:00:04.169 2024-02-21 06:00:05.903 308100 11938 \N \N \N 164219 2024-02-21 06:00:04.169 2024-02-21 06:00:05.91 307448 716 \N \N \N 164220 2024-02-21 06:00:04.169 2024-02-21 06:00:05.917 301085 8004 \N \N \N 164221 2024-02-21 06:00:04.169 2024-02-21 06:00:05.932 295230 17237 \N \N \N 164222 2024-02-21 06:00:04.169 2024-02-21 06:00:05.944 289465 8176 \N \N \N 164223 2024-02-21 06:00:04.169 2024-02-21 06:00:05.95 287133 19732 \N \N \N 164224 2024-02-21 06:00:04.169 2024-02-21 06:00:05.956 286241 15978 \N \N \N 164225 2024-02-21 06:00:04.169 2024-02-21 06:00:05.968 283865 19810 \N \N \N 164226 2024-02-21 06:00:04.169 2024-02-21 06:00:05.986 278243 21136 \N \N \N 164227 2024-02-21 06:00:04.169 2024-02-21 06:00:05.993 274178 20434 \N \N \N 164228 2024-02-21 06:00:04.169 2024-02-21 06:00:05.999 266129 17976 \N \N \N 164229 2024-02-21 06:00:04.169 2024-02-21 06:00:06.008 265937 16424 \N \N \N 164230 2024-02-21 06:00:04.169 2024-02-21 06:00:06.016 265706 17984 \N \N \N 164231 2024-02-21 06:00:04.169 2024-02-21 06:00:06.022 261010 1618 \N \N \N 164232 2024-02-21 06:00:04.169 2024-02-21 06:00:06.028 254061 16513 \N \N \N 164233 2024-02-21 06:00:04.169 2024-02-21 06:00:06.034 252928 15762 \N \N \N 164234 2024-02-21 06:00:04.169 2024-02-21 06:00:06.048 235245 16966 \N \N \N 164235 2024-02-21 06:00:04.169 2024-02-21 06:00:06.061 227403 13399 \N \N \N 164236 2024-02-21 06:00:04.169 2024-02-21 06:00:06.074 226080 1474 \N \N \N 164237 2024-02-21 06:00:04.169 2024-02-21 06:00:06.082 215171 2749 \N \N \N 164238 2024-02-21 06:00:04.169 2024-02-21 06:00:06.088 215051 12930 \N \N \N 164239 2024-02-21 06:00:04.169 2024-02-21 06:00:06.094 209692 17316 \N \N \N 164240 2024-02-21 06:00:04.169 2024-02-21 06:00:06.1 206086 15049 \N \N \N 164241 2024-02-21 06:00:04.169 2024-02-21 06:00:06.106 198837 10549 \N \N \N 164242 2024-02-21 06:00:04.169 2024-02-21 06:00:06.113 197058 826 \N \N \N 164243 2024-02-21 06:00:04.169 2024-02-21 06:00:06.119 188091 7978 \N \N \N 164244 2024-02-21 06:00:04.169 2024-02-21 06:00:06.125 187913 19527 \N \N \N 164245 2024-02-21 06:00:04.169 2024-02-21 06:00:06.131 187068 15351 \N \N \N 164246 2024-02-21 06:00:04.169 2024-02-21 06:00:06.152 187026 7510 \N \N \N 164247 2024-02-21 06:00:04.169 2024-02-21 06:00:06.163 176406 5779 \N \N \N 164248 2024-02-21 06:00:04.169 2024-02-21 06:00:06.17 165261 17522 \N \N \N 164249 2024-02-21 06:00:04.169 2024-02-21 06:00:06.175 161370 21249 \N \N \N 164250 2024-02-21 06:00:04.169 2024-02-21 06:00:06.182 161246 17218 \N \N \N 164251 2024-02-21 06:00:04.169 2024-02-21 06:00:06.19 155608 20102 \N \N \N 164252 2024-02-21 06:00:04.169 2024-02-21 06:00:06.196 154018 19087 \N \N \N 164253 2024-02-21 06:00:04.169 2024-02-21 06:00:06.205 153124 5519 \N \N \N 164254 2024-02-21 06:00:04.169 2024-02-21 06:00:06.213 143987 19018 \N \N \N 164255 2024-02-21 06:00:04.169 2024-02-21 06:00:06.222 142074 21446 \N \N \N 164256 2024-02-21 06:00:04.169 2024-02-21 06:00:06.229 141496 9347 \N \N \N 164257 2024-02-21 06:00:04.169 2024-02-21 06:00:06.235 139887 20464 \N \N \N 164258 2024-02-21 06:00:04.169 2024-02-21 06:00:06.24 138878 7760 \N \N \N 164259 2024-02-21 06:00:04.169 2024-02-21 06:00:06.246 136658 19777 \N \N \N 164260 2024-02-21 06:00:04.169 2024-02-21 06:00:06.252 134637 9171 \N \N \N 164261 2024-02-21 06:00:04.169 2024-02-21 06:00:06.259 133372 9339 \N \N \N 164262 2024-02-21 06:00:04.169 2024-02-21 06:00:06.265 130976 13547 \N \N \N 164263 2024-02-21 06:00:04.169 2024-02-21 06:00:06.272 130144 18941 \N \N \N 164264 2024-02-21 06:00:04.169 2024-02-21 06:00:06.278 127702 21387 \N \N \N 164265 2024-02-21 06:00:04.169 2024-02-21 06:00:06.284 127391 18280 \N \N \N 164266 2024-02-21 06:00:04.169 2024-02-21 06:00:06.29 122588 20624 \N \N \N 164267 2024-02-21 06:00:04.169 2024-02-21 06:00:06.296 121632 730 \N \N \N 164268 2024-02-21 06:00:04.169 2024-02-21 06:00:06.302 120831 17331 \N \N \N 164269 2024-02-21 06:00:04.169 2024-02-21 06:00:06.307 119030 19507 \N \N \N 164270 2024-02-21 06:00:04.169 2024-02-21 06:00:06.314 113225 694 \N \N \N 164271 2024-02-21 06:00:04.169 2024-02-21 06:00:06.32 106537 19018 \N \N \N 164272 2024-02-21 06:00:04.169 2024-02-21 06:00:06.327 102870 13217 \N \N \N 164273 2024-02-21 06:00:04.169 2024-02-21 06:00:06.333 100309 7818 \N \N \N 164274 2024-02-21 06:00:04.169 2024-02-21 06:00:06.339 100261 20376 \N \N \N 164275 2024-02-21 06:00:04.169 2024-02-21 06:00:06.348 99532 13169 \N \N \N 164276 2024-02-21 06:00:04.169 2024-02-21 06:00:06.354 96129 12562 \N \N \N 164277 2024-02-21 06:00:04.169 2024-02-21 06:00:06.36 92297 6327 \N \N \N 164278 2024-02-21 06:00:04.169 2024-02-21 06:00:06.367 91923 6533 \N \N \N 164279 2024-02-21 06:00:04.169 2024-02-21 06:00:06.373 88285 798 \N \N \N 164280 2024-02-21 06:00:04.169 2024-02-21 06:00:06.379 82284 19378 \N \N \N 164281 2024-02-21 06:00:04.169 2024-02-21 06:00:06.385 82200 11491 \N \N \N 164282 2024-02-21 06:00:04.169 2024-02-21 06:00:06.391 81229 18675 \N \N \N 164283 2024-02-21 06:00:04.169 2024-02-21 06:00:06.397 80650 19417 \N \N \N 164284 2024-02-21 06:00:04.169 2024-02-21 06:00:06.404 76404 9350 \N \N \N 164285 2024-02-21 06:00:04.169 2024-02-21 06:00:06.417 73085 1741 \N \N \N 164286 2024-02-21 06:00:04.169 2024-02-21 06:00:06.423 72564 20109 \N \N \N 164287 2024-02-21 06:00:04.169 2024-02-21 06:00:06.429 68915 20901 \N \N \N 164288 2024-02-21 06:00:04.169 2024-02-21 06:00:06.436 68633 19031 \N \N \N 164289 2024-02-21 06:00:04.169 2024-02-21 06:00:06.442 63146 18310 \N \N \N 164290 2024-02-21 06:00:04.169 2024-02-21 06:00:06.448 62659 16653 \N \N \N 164291 2024-02-21 06:00:04.169 2024-02-21 06:00:06.454 62286 1733 \N \N \N 164292 2024-02-21 06:00:04.169 2024-02-21 06:00:06.46 58831 14381 \N \N \N 164293 2024-02-21 06:00:04.169 2024-02-21 06:00:06.466 57323 909 \N \N \N 164294 2024-02-21 06:00:04.169 2024-02-21 06:00:06.473 54773 21178 \N \N \N 164295 2024-02-21 06:00:04.169 2024-02-21 06:00:06.478 53783 17727 \N \N \N 164296 2024-02-21 06:00:04.169 2024-02-21 06:00:06.484 50817 20854 \N \N \N 164297 2024-02-21 06:00:04.169 2024-02-21 06:00:06.491 49563 21457 \N \N \N 164298 2024-02-21 06:00:04.169 2024-02-21 06:00:06.497 48861 16970 \N \N \N 164299 2024-02-21 06:00:04.169 2024-02-21 06:00:06.507 48478 19153 \N \N \N 164300 2024-02-21 06:00:04.169 2024-02-21 06:00:06.513 47604 2065 \N \N \N 164301 2024-02-21 06:00:04.169 2024-02-21 06:00:06.52 45165 9353 \N \N \N 164302 2024-02-21 06:00:04.169 2024-02-21 06:00:06.526 44792 21387 \N \N \N 164303 2024-02-21 06:00:04.169 2024-02-21 06:00:06.533 31623 12606 \N \N \N 164304 2024-02-21 06:00:04.169 2024-02-21 06:00:06.538 26098 21166 \N \N \N 164305 2024-02-21 06:00:04.169 2024-02-21 06:00:06.544 22054 19174 \N \N \N 164306 2024-02-22 06:00:04.065 2024-02-22 06:00:04.066 1294439 19689 \N \N \N 164307 2024-02-22 06:00:04.065 2024-02-22 06:00:04.084 841174 4378 \N \N \N 164308 2024-02-22 06:00:04.065 2024-02-22 06:00:04.115 835283 1628 \N \N \N 164309 2024-02-22 06:00:04.065 2024-02-22 06:00:04.138 799866 7674 \N \N \N 164310 2024-02-22 06:00:04.065 2024-02-22 06:00:04.158 760420 954 \N \N \N 164311 2024-02-22 06:00:04.065 2024-02-22 06:00:04.192 744658 9099 \N \N \N 164312 2024-02-22 06:00:04.065 2024-02-22 06:00:04.22 711127 5942 \N \N \N 164313 2024-02-22 06:00:04.065 2024-02-22 06:00:04.248 639800 3717 \N \N \N 164314 2024-02-22 06:00:04.065 2024-02-22 06:00:04.276 636748 18051 \N \N \N 164315 2024-02-22 06:00:04.065 2024-02-22 06:00:04.292 636627 5497 \N \N \N 164316 2024-02-22 06:00:04.065 2024-02-22 06:00:04.322 623257 11192 \N \N \N 164317 2024-02-22 06:00:04.065 2024-02-22 06:00:04.348 615435 13100 \N \N \N 164318 2024-02-22 06:00:04.065 2024-02-22 06:00:04.372 587831 21269 \N \N \N 164319 2024-02-22 06:00:04.065 2024-02-22 06:00:04.388 582216 11523 \N \N \N 164320 2024-02-22 06:00:04.065 2024-02-22 06:00:04.417 582216 19151 \N \N \N 164321 2024-02-22 06:00:04.065 2024-02-22 06:00:04.44 549187 16598 \N \N \N 164322 2024-02-22 06:00:04.065 2024-02-22 06:00:04.485 533359 21540 \N \N \N 164323 2024-02-22 06:00:04.065 2024-02-22 06:00:04.496 517058 20291 \N \N \N 164324 2024-02-22 06:00:04.065 2024-02-22 06:00:04.528 513673 16754 \N \N \N 164325 2024-02-22 06:00:04.065 2024-02-22 06:00:04.568 498483 12507 \N \N \N 164326 2024-02-22 06:00:04.065 2024-02-22 06:00:04.593 494665 3392 \N \N \N 164327 2024-02-22 06:00:04.065 2024-02-22 06:00:04.612 466059 20264 \N \N \N 164328 2024-02-22 06:00:04.065 2024-02-22 06:00:04.64 465196 16351 \N \N \N 164329 2024-02-22 06:00:04.065 2024-02-22 06:00:04.67 444688 18817 \N \N \N 164330 2024-02-22 06:00:04.065 2024-02-22 06:00:04.674 439064 7654 \N \N \N 164331 2024-02-22 06:00:04.065 2024-02-22 06:00:04.679 413935 15147 \N \N \N 164332 2024-02-22 06:00:04.065 2024-02-22 06:00:04.688 411553 19566 \N \N \N 164333 2024-02-22 06:00:04.065 2024-02-22 06:00:04.716 405222 13143 \N \N \N 164334 2024-02-22 06:00:04.065 2024-02-22 06:00:04.744 404528 2774 \N \N \N 164335 2024-02-22 06:00:04.065 2024-02-22 06:00:04.772 395691 20782 \N \N \N 164336 2024-02-22 06:00:04.065 2024-02-22 06:00:04.79 395443 18449 \N \N \N 164337 2024-02-22 06:00:04.065 2024-02-22 06:00:04.816 394564 15045 \N \N \N 164338 2024-02-22 06:00:04.065 2024-02-22 06:00:04.848 394551 16336 \N \N \N 164339 2024-02-22 06:00:04.065 2024-02-22 06:00:04.862 394487 17041 \N \N \N 164340 2024-02-22 06:00:04.065 2024-02-22 06:00:04.876 385324 15273 \N \N \N 164341 2024-02-22 06:00:04.065 2024-02-22 06:00:04.886 382998 16194 \N \N \N 164342 2024-02-22 06:00:04.065 2024-02-22 06:00:04.896 382998 15890 \N \N \N 164343 2024-02-22 06:00:04.065 2024-02-22 06:00:04.909 379558 13198 \N \N \N 164344 2024-02-22 06:00:04.065 2024-02-22 06:00:04.919 374464 6335 \N \N \N 164345 2024-02-22 06:00:04.065 2024-02-22 06:00:04.923 369666 8713 \N \N \N 164346 2024-02-22 06:00:04.065 2024-02-22 06:00:04.934 368994 20912 \N \N \N 164347 2024-02-22 06:00:04.065 2024-02-22 06:00:04.942 366228 675 \N \N \N 164348 2024-02-22 06:00:04.065 2024-02-22 06:00:04.948 366162 17091 \N \N \N 164349 2024-02-22 06:00:04.065 2024-02-22 06:00:04.955 359770 6360 \N \N \N 164350 2024-02-22 06:00:04.065 2024-02-22 06:00:04.963 359403 17513 \N \N \N 164351 2024-02-22 06:00:04.065 2024-02-22 06:00:04.969 357889 18264 \N \N \N 164352 2024-02-22 06:00:04.065 2024-02-22 06:00:04.975 357731 616 \N \N \N 164353 2024-02-22 06:00:04.065 2024-02-22 06:00:04.982 355549 16353 \N \N \N 164354 2024-02-22 06:00:04.065 2024-02-22 06:00:04.986 355524 10698 \N \N \N 164355 2024-02-22 06:00:04.065 2024-02-22 06:00:04.993 355524 9552 \N \N \N 164356 2024-02-22 06:00:04.065 2024-02-22 06:00:04.997 355504 21339 \N \N \N 164357 2024-02-22 06:00:04.065 2024-02-22 06:00:05.003 355494 14168 \N \N \N 164358 2024-02-22 06:00:04.065 2024-02-22 06:00:05.01 355477 3411 \N \N \N 164359 2024-02-22 06:00:04.065 2024-02-22 06:00:05.019 355471 1465 \N \N \N 164360 2024-02-22 06:00:04.065 2024-02-22 06:00:05.028 355441 10283 \N \N \N 164361 2024-02-22 06:00:04.065 2024-02-22 06:00:05.033 355440 16193 \N \N \N 164362 2024-02-22 06:00:04.065 2024-02-22 06:00:05.054 355440 21492 \N \N \N 164363 2024-02-22 06:00:04.065 2024-02-22 06:00:05.061 355415 2703 \N \N \N 164364 2024-02-22 06:00:04.065 2024-02-22 06:00:05.07 355412 2232 \N \N \N 164365 2024-02-22 06:00:04.065 2024-02-22 06:00:05.075 355399 20084 \N \N \N 164366 2024-02-22 06:00:04.065 2024-02-22 06:00:05.084 355378 15544 \N \N \N 164367 2024-02-22 06:00:04.065 2024-02-22 06:00:05.09 355376 18680 \N \N \N 164368 2024-02-22 06:00:04.065 2024-02-22 06:00:05.106 355376 19243 \N \N \N 164369 2024-02-22 06:00:04.065 2024-02-22 06:00:05.111 355376 8173 \N \N \N 164370 2024-02-22 06:00:04.065 2024-02-22 06:00:05.126 355376 15094 \N \N \N 164371 2024-02-22 06:00:04.065 2024-02-22 06:00:05.132 355376 12220 \N \N \N 164372 2024-02-22 06:00:04.065 2024-02-22 06:00:05.148 355376 21585 \N \N \N 164373 2024-02-22 06:00:04.065 2024-02-22 06:00:05.155 355376 9329 \N \N \N 164374 2024-02-22 06:00:04.065 2024-02-22 06:00:05.165 355376 10981 \N \N \N 164375 2024-02-22 06:00:04.065 2024-02-22 06:00:05.175 355376 16282 \N \N \N 164376 2024-02-22 06:00:04.065 2024-02-22 06:00:05.184 355376 14122 \N \N \N 164377 2024-02-22 06:00:04.065 2024-02-22 06:00:05.196 355376 20704 \N \N \N 164378 2024-02-22 06:00:04.065 2024-02-22 06:00:05.203 355376 18208 \N \N \N 164379 2024-02-22 06:00:04.065 2024-02-22 06:00:05.209 355376 21379 \N \N \N 164380 2024-02-22 06:00:04.065 2024-02-22 06:00:05.214 355376 13763 \N \N \N 164381 2024-02-22 06:00:04.065 2024-02-22 06:00:05.221 355376 21048 \N \N \N 164382 2024-02-22 06:00:04.065 2024-02-22 06:00:05.234 355258 6383 \N \N \N 164383 2024-02-22 06:00:04.065 2024-02-22 06:00:05.244 354477 706 \N \N \N 164384 2024-02-22 06:00:04.065 2024-02-22 06:00:05.249 349704 15075 \N \N \N 164385 2024-02-22 06:00:04.065 2024-02-22 06:00:05.255 349129 976 \N \N \N 164386 2024-02-22 06:00:04.065 2024-02-22 06:00:05.26 349007 9276 \N \N \N 164387 2024-02-22 06:00:04.065 2024-02-22 06:00:05.268 349007 21386 \N \N \N 164388 2024-02-22 06:00:04.065 2024-02-22 06:00:05.273 348942 19037 \N \N \N 164389 2024-02-22 06:00:04.065 2024-02-22 06:00:05.277 348942 696 \N \N \N 164390 2024-02-22 06:00:04.065 2024-02-22 06:00:05.284 346556 14939 \N \N \N 164391 2024-02-22 06:00:04.065 2024-02-22 06:00:05.29 343445 7583 \N \N \N 164392 2024-02-22 06:00:04.065 2024-02-22 06:00:05.296 341311 15075 \N \N \N 164393 2024-02-22 06:00:04.065 2024-02-22 06:00:05.301 341126 3745 \N \N \N 164394 2024-02-22 06:00:04.065 2024-02-22 06:00:05.307 341093 21520 \N \N \N 164395 2024-02-22 06:00:04.065 2024-02-22 06:00:05.315 341092 1806 \N \N \N 164396 2024-02-22 06:00:04.065 2024-02-22 06:00:05.322 341062 15266 \N \N \N 164397 2024-02-22 06:00:04.065 2024-02-22 06:00:05.329 341032 1092 \N \N \N 164398 2024-02-22 06:00:04.065 2024-02-22 06:00:05.339 341017 1060 \N \N \N 164399 2024-02-22 06:00:04.065 2024-02-22 06:00:05.343 340998 19282 \N \N \N 164400 2024-02-22 06:00:04.065 2024-02-22 06:00:05.356 340998 2206 \N \N \N 164401 2024-02-22 06:00:04.065 2024-02-22 06:00:05.364 340998 13987 \N \N \N 164402 2024-02-22 06:00:04.065 2024-02-22 06:00:05.375 340998 6499 \N \N \N 164403 2024-02-22 06:00:04.065 2024-02-22 06:00:05.382 340998 5112 \N \N \N 164404 2024-02-22 06:00:04.065 2024-02-22 06:00:05.389 340998 794 \N \N \N 164405 2024-02-22 06:00:04.065 2024-02-22 06:00:05.395 336921 18051 \N \N \N 164406 2024-02-22 06:00:04.065 2024-02-22 06:00:05.402 335207 18557 \N \N \N 164407 2024-02-22 06:00:04.065 2024-02-22 06:00:05.411 326859 2029 \N \N \N 164408 2024-02-22 06:00:04.065 2024-02-22 06:00:05.419 326806 21083 \N \N \N 164409 2024-02-22 06:00:04.065 2024-02-22 06:00:05.43 326762 2776 \N \N \N 164410 2024-02-22 06:00:04.065 2024-02-22 06:00:05.436 326759 20450 \N \N \N 164411 2024-02-22 06:00:04.065 2024-02-22 06:00:05.451 326742 20157 \N \N \N 164412 2024-02-22 06:00:04.065 2024-02-22 06:00:05.464 326742 5455 \N \N \N 164413 2024-02-22 06:00:04.065 2024-02-22 06:00:05.501 326742 20782 \N \N \N 164414 2024-02-22 06:00:04.065 2024-02-22 06:00:05.53 308198 20581 \N \N \N 164415 2024-02-22 06:00:04.065 2024-02-22 06:00:05.535 308132 5852 \N \N \N 164416 2024-02-22 06:00:04.065 2024-02-22 06:00:05.545 301887 19890 \N \N \N 164417 2024-02-22 06:00:04.065 2024-02-22 06:00:05.555 295452 20871 \N \N \N 164418 2024-02-22 06:00:04.065 2024-02-22 06:00:05.566 282591 20084 \N \N \N 164419 2024-02-22 06:00:04.065 2024-02-22 06:00:05.573 275012 1002 \N \N \N 164420 2024-02-22 06:00:04.065 2024-02-22 06:00:05.585 267923 13782 \N \N \N 164421 2024-02-22 06:00:04.065 2024-02-22 06:00:05.601 266133 794 \N \N \N 164422 2024-02-22 06:00:04.065 2024-02-22 06:00:05.621 261158 20267 \N \N \N 164423 2024-02-22 06:00:04.065 2024-02-22 06:00:05.626 259597 3979 \N \N \N 164424 2024-02-22 06:00:04.065 2024-02-22 06:00:05.632 259597 12139 \N \N \N 164425 2024-02-22 06:00:04.065 2024-02-22 06:00:05.641 244448 19976 \N \N \N 164426 2024-02-22 06:00:04.065 2024-02-22 06:00:05.649 242389 2330 \N \N \N 164427 2024-02-22 06:00:04.065 2024-02-22 06:00:05.66 241963 6003 \N \N \N 164428 2024-02-22 06:00:04.065 2024-02-22 06:00:05.674 236432 4035 \N \N \N 164429 2024-02-22 06:00:04.065 2024-02-22 06:00:05.682 231529 12102 \N \N \N 164430 2024-02-22 06:00:04.065 2024-02-22 06:00:05.688 227331 1438 \N \N \N 164431 2024-02-22 06:00:04.065 2024-02-22 06:00:05.698 204786 811 \N \N \N 164432 2024-02-22 06:00:04.065 2024-02-22 06:00:05.707 203435 951 \N \N \N 164433 2024-02-22 06:00:04.065 2024-02-22 06:00:05.712 193147 21501 \N \N \N 164434 2024-02-22 06:00:04.065 2024-02-22 06:00:05.716 192808 15075 \N \N \N 164435 2024-02-22 06:00:04.065 2024-02-22 06:00:05.726 181929 803 \N \N \N 164436 2024-02-22 06:00:04.065 2024-02-22 06:00:05.733 178686 8168 \N \N \N 164437 2024-02-22 06:00:04.065 2024-02-22 06:00:05.739 177726 20586 \N \N \N 164438 2024-02-22 06:00:04.065 2024-02-22 06:00:05.746 177726 629 \N \N \N 164439 2024-02-22 06:00:04.065 2024-02-22 06:00:05.752 177726 4538 \N \N \N 164440 2024-02-22 06:00:04.065 2024-02-22 06:00:05.757 177699 826 \N \N \N 164441 2024-02-22 06:00:04.065 2024-02-22 06:00:05.762 177698 9816 \N \N \N 164442 2024-02-22 06:00:04.065 2024-02-22 06:00:05.771 177691 9843 \N \N \N 164443 2024-02-22 06:00:04.065 2024-02-22 06:00:05.782 177688 5487 \N \N \N 164444 2024-02-22 06:00:04.065 2024-02-22 06:00:05.788 177688 9332 \N \N \N 164445 2024-02-22 06:00:04.065 2024-02-22 06:00:05.793 177688 15337 \N \N \N 164446 2024-02-22 06:00:04.065 2024-02-22 06:00:05.798 177688 670 \N \N \N 164447 2024-02-22 06:00:04.065 2024-02-22 06:00:05.803 177688 21026 \N \N \N 164448 2024-02-22 06:00:04.065 2024-02-22 06:00:05.807 177688 10398 \N \N \N 164449 2024-02-22 06:00:04.065 2024-02-22 06:00:05.812 177688 1720 \N \N \N 164450 2024-02-22 06:00:04.065 2024-02-22 06:00:05.817 177688 18154 \N \N \N 164451 2024-02-22 06:00:04.065 2024-02-22 06:00:05.824 177688 4027 \N \N \N 164452 2024-02-22 06:00:04.065 2024-02-22 06:00:05.828 177688 18829 \N \N \N 164453 2024-02-22 06:00:04.065 2024-02-22 06:00:05.833 177688 1631 \N \N \N 164454 2024-02-22 06:00:04.065 2024-02-22 06:00:05.838 177688 2402 \N \N \N 164455 2024-02-22 06:00:04.065 2024-02-22 06:00:05.845 177688 16052 \N \N \N 164456 2024-02-22 06:00:04.065 2024-02-22 06:00:05.855 172921 13599 \N \N \N 164457 2024-02-22 06:00:04.065 2024-02-22 06:00:05.862 167652 18717 \N \N \N 164458 2024-02-22 06:00:04.065 2024-02-22 06:00:05.866 164975 19449 \N \N \N 164459 2024-02-22 06:00:04.065 2024-02-22 06:00:05.872 162822 20730 \N \N \N 164460 2024-02-22 06:00:04.065 2024-02-22 06:00:05.879 158313 620 \N \N \N 164461 2024-02-22 06:00:04.065 2024-02-22 06:00:05.885 158296 691 \N \N \N 164462 2024-02-22 06:00:04.065 2024-02-22 06:00:05.892 157940 20168 \N \N \N 164463 2024-02-22 06:00:04.065 2024-02-22 06:00:05.899 153480 866 \N \N \N 164464 2024-02-22 06:00:04.065 2024-02-22 06:00:05.906 153381 18426 \N \N \N 164465 2024-02-22 06:00:04.065 2024-02-22 06:00:05.911 150295 21239 \N \N \N 164466 2024-02-22 06:00:04.065 2024-02-22 06:00:05.918 150258 19996 \N \N \N 164467 2024-02-22 06:00:04.065 2024-02-22 06:00:05.925 150235 20964 \N \N \N 164468 2024-02-22 06:00:04.065 2024-02-22 06:00:05.931 150235 7773 \N \N \N 164469 2024-02-22 06:00:04.065 2024-02-22 06:00:05.936 150228 21263 \N \N \N 164470 2024-02-22 06:00:04.065 2024-02-22 06:00:05.946 150228 21138 \N \N \N 164471 2024-02-22 06:00:04.065 2024-02-22 06:00:05.951 150163 8954 \N \N \N 164472 2024-02-22 06:00:04.065 2024-02-22 06:00:05.958 150163 12218 \N \N \N 164473 2024-02-22 06:00:04.065 2024-02-22 06:00:05.964 150163 12721 \N \N \N 164474 2024-02-22 06:00:04.065 2024-02-22 06:00:05.98 149262 848 \N \N \N 164475 2024-02-22 06:00:04.065 2024-02-22 06:00:05.996 149230 10591 \N \N \N 164476 2024-02-22 06:00:04.065 2024-02-22 06:00:06.015 149197 7682 \N \N \N 164477 2024-02-22 06:00:04.065 2024-02-22 06:00:06.021 149197 11648 \N \N \N 164478 2024-02-22 06:00:04.065 2024-02-22 06:00:06.028 149197 21379 \N \N \N 164479 2024-02-22 06:00:04.065 2024-02-22 06:00:06.034 148996 14545 \N \N \N 164480 2024-02-22 06:00:04.065 2024-02-22 06:00:06.038 148881 18351 \N \N \N 164481 2024-02-22 06:00:04.065 2024-02-22 06:00:06.044 148881 4043 \N \N \N 164482 2024-02-22 06:00:04.065 2024-02-22 06:00:06.049 148881 11516 \N \N \N 164483 2024-02-22 06:00:04.065 2024-02-22 06:00:06.053 148881 960 \N \N \N 164484 2024-02-22 06:00:04.065 2024-02-22 06:00:06.059 148857 1454 \N \N \N 164485 2024-02-22 06:00:04.065 2024-02-22 06:00:06.069 148857 14785 \N \N \N 164486 2024-02-22 06:00:04.065 2024-02-22 06:00:06.093 148857 15386 \N \N \N 164487 2024-02-22 06:00:04.065 2024-02-22 06:00:06.101 148825 19996 \N \N \N 164488 2024-02-22 06:00:04.065 2024-02-22 06:00:06.112 148825 21446 \N \N \N 164489 2024-02-22 06:00:04.065 2024-02-22 06:00:06.12 148825 18396 \N \N \N 164490 2024-02-22 06:00:04.065 2024-02-22 06:00:06.124 148825 18005 \N \N \N 164491 2024-02-22 06:00:04.065 2024-02-22 06:00:06.131 148825 762 \N \N \N 164492 2024-02-22 06:00:04.065 2024-02-22 06:00:06.145 148825 1519 \N \N \N 164493 2024-02-22 06:00:04.065 2024-02-22 06:00:06.15 148825 21441 \N \N \N 164494 2024-02-22 06:00:04.065 2024-02-22 06:00:06.159 148825 17526 \N \N \N 164495 2024-02-22 06:00:04.065 2024-02-22 06:00:06.165 148825 21402 \N \N \N 164496 2024-02-22 06:00:04.065 2024-02-22 06:00:06.171 148825 11038 \N \N \N 164497 2024-02-22 06:00:04.065 2024-02-22 06:00:06.181 148825 21506 \N \N \N 164498 2024-02-22 06:00:04.065 2024-02-22 06:00:06.186 148825 18243 \N \N \N 164499 2024-02-22 06:00:04.065 2024-02-22 06:00:06.191 143526 20208 \N \N \N 164500 2024-02-22 06:00:04.065 2024-02-22 06:00:06.198 140213 7772 \N \N \N 164501 2024-02-22 06:00:04.065 2024-02-22 06:00:06.203 133897 1552 \N \N \N 164502 2024-02-22 06:00:04.065 2024-02-22 06:00:06.211 133897 15843 \N \N \N 164503 2024-02-22 06:00:04.065 2024-02-22 06:00:06.216 130299 19852 \N \N \N 164504 2024-02-22 06:00:04.065 2024-02-22 06:00:06.22 129331 21296 \N \N \N 164505 2024-02-22 06:00:04.065 2024-02-22 06:00:06.226 129326 15367 \N \N \N 164506 2024-02-22 06:00:04.065 2024-02-22 06:00:06.237 129325 5752 \N \N \N 164507 2024-02-22 06:00:04.065 2024-02-22 06:00:06.244 128401 11609 \N \N \N 164508 2024-02-22 06:00:04.065 2024-02-22 06:00:06.25 128369 802 \N \N \N 164509 2024-02-22 06:00:04.065 2024-02-22 06:00:06.256 128369 19533 \N \N \N 164510 2024-02-22 06:00:04.065 2024-02-22 06:00:06.261 128369 11866 \N \N \N 164511 2024-02-22 06:00:04.065 2024-02-22 06:00:06.267 120910 19841 \N \N \N 164512 2024-02-22 06:00:04.065 2024-02-22 06:00:06.272 117622 15115 \N \N \N 164513 2024-02-22 06:00:04.065 2024-02-22 06:00:06.277 113526 15045 \N \N \N 164514 2024-02-22 06:00:04.065 2024-02-22 06:00:06.285 112902 11590 \N \N \N 164515 2024-02-22 06:00:04.065 2024-02-22 06:00:06.29 111346 20825 \N \N \N 164516 2024-02-22 06:00:04.065 2024-02-22 06:00:06.297 110567 13753 \N \N \N 164517 2024-02-22 06:00:04.065 2024-02-22 06:00:06.305 108771 2513 \N \N \N 164518 2024-02-22 06:00:04.065 2024-02-22 06:00:06.315 108771 19033 \N \N \N 164519 2024-02-22 06:00:04.065 2024-02-22 06:00:06.32 108771 5758 \N \N \N 164520 2024-02-22 06:00:04.065 2024-02-22 06:00:06.33 108683 17517 \N \N \N 164521 2024-02-22 06:00:04.065 2024-02-22 06:00:06.335 108683 18941 \N \N \N 164522 2024-02-22 06:00:04.065 2024-02-22 06:00:06.339 108683 18897 \N \N \N 164523 2024-02-22 06:00:04.065 2024-02-22 06:00:06.344 104530 1493 \N \N \N 164524 2024-02-22 06:00:04.065 2024-02-22 06:00:06.35 103184 13931 \N \N \N 164525 2024-02-22 06:00:04.065 2024-02-22 06:00:06.363 103087 18941 \N \N \N 164526 2024-02-22 06:00:04.065 2024-02-22 06:00:06.374 95897 6300 \N \N \N 164527 2024-02-22 06:00:04.065 2024-02-22 06:00:06.38 95896 9611 \N \N \N 164528 2024-02-22 06:00:04.065 2024-02-22 06:00:06.385 95896 15544 \N \N \N 164529 2024-02-22 06:00:04.065 2024-02-22 06:00:06.39 95896 647 \N \N \N 164530 2024-02-22 06:00:04.065 2024-02-22 06:00:06.4 95896 5794 \N \N \N 164531 2024-02-22 06:00:04.065 2024-02-22 06:00:06.408 95896 20180 \N \N \N 164532 2024-02-22 06:00:04.065 2024-02-22 06:00:06.413 94519 20560 \N \N \N 164533 2024-02-22 06:00:04.065 2024-02-22 06:00:06.42 94429 2327 \N \N \N 164534 2024-02-22 06:00:04.065 2024-02-22 06:00:06.427 94427 16830 \N \N \N 164535 2024-02-22 06:00:04.065 2024-02-22 06:00:06.432 94393 20264 \N \N \N 164536 2024-02-22 06:00:04.065 2024-02-22 06:00:06.442 94393 902 \N \N \N 164537 2024-02-22 06:00:04.065 2024-02-22 06:00:06.453 94393 17526 \N \N \N 164538 2024-02-22 06:00:04.065 2024-02-22 06:00:06.459 94393 1836 \N \N \N 164539 2024-02-22 06:00:04.065 2024-02-22 06:00:06.463 94393 3342 \N \N \N 164540 2024-02-22 06:00:04.065 2024-02-22 06:00:06.47 94393 10818 \N \N \N 164541 2024-02-22 06:00:04.065 2024-02-22 06:00:06.476 94393 20687 \N \N \N 164542 2024-02-22 06:00:04.065 2024-02-22 06:00:06.485 94393 5128 \N \N \N 164543 2024-02-22 06:00:04.065 2024-02-22 06:00:06.49 94393 7989 \N \N \N 164544 2024-02-22 06:00:04.065 2024-02-22 06:00:06.495 94393 1673 \N \N \N 164545 2024-02-22 06:00:04.065 2024-02-22 06:00:06.501 94393 15367 \N \N \N 164546 2024-02-22 06:00:04.065 2024-02-22 06:00:06.508 94393 27 \N \N \N 164547 2024-02-22 06:00:04.065 2024-02-22 06:00:06.515 94393 20871 \N \N \N 164548 2024-02-22 06:00:04.065 2024-02-22 06:00:06.523 94393 16684 \N \N \N 164549 2024-02-22 06:00:04.065 2024-02-22 06:00:06.532 94393 2444 \N \N \N 164550 2024-02-22 06:00:04.065 2024-02-22 06:00:06.542 94393 16410 \N \N \N 164551 2024-02-22 06:00:04.065 2024-02-22 06:00:06.549 94393 5017 \N \N \N 164552 2024-02-22 06:00:04.065 2024-02-22 06:00:06.554 94393 12951 \N \N \N 164553 2024-02-22 06:00:04.065 2024-02-22 06:00:06.564 90642 9833 \N \N \N 164554 2024-02-22 06:00:04.065 2024-02-22 06:00:06.574 90528 712 \N \N \N 164555 2024-02-22 06:00:04.065 2024-02-22 06:00:06.579 90363 2525 \N \N \N 164556 2024-02-22 06:00:04.065 2024-02-22 06:00:06.592 90029 10359 \N \N \N 164557 2024-02-22 06:00:04.065 2024-02-22 06:00:06.602 89455 696 \N \N \N 164558 2024-02-22 06:00:04.065 2024-02-22 06:00:06.608 89376 2056 \N \N \N 164559 2024-02-22 06:00:04.065 2024-02-22 06:00:06.616 89376 826 \N \N \N 164560 2024-02-22 06:00:04.065 2024-02-22 06:00:06.621 89374 16097 \N \N \N 164561 2024-02-22 06:00:04.065 2024-02-22 06:00:06.625 89374 1064 \N \N \N 164562 2024-02-22 06:00:04.065 2024-02-22 06:00:06.632 89344 5425 \N \N \N 164563 2024-02-22 06:00:04.065 2024-02-22 06:00:06.639 89324 17148 \N \N \N 164564 2024-02-22 06:00:04.065 2024-02-22 06:00:06.645 89314 15386 \N \N \N 164565 2024-02-22 06:00:04.065 2024-02-22 06:00:06.66 89311 1605 \N \N \N 164566 2024-02-22 06:00:04.065 2024-02-22 06:00:06.672 89311 1603 \N \N \N 164567 2024-02-22 06:00:04.065 2024-02-22 06:00:06.687 89311 20802 \N \N \N 164568 2024-02-22 06:00:04.065 2024-02-22 06:00:06.697 89311 20094 \N \N \N 164569 2024-02-22 06:00:04.065 2024-02-22 06:00:06.703 89311 18690 \N \N \N 164570 2024-02-22 06:00:04.065 2024-02-22 06:00:06.713 2234864 12422 \N \N \N 164571 2024-02-22 06:00:04.065 2024-02-22 06:00:06.718 2147666 15196 \N \N \N 164572 2024-02-22 06:00:04.065 2024-02-22 06:00:06.722 1969061 20979 \N \N \N 164573 2024-02-22 06:00:04.065 2024-02-22 06:00:06.726 1960413 21320 \N \N \N 164574 2024-02-22 06:00:04.065 2024-02-22 06:00:06.731 1603233 642 \N \N \N 164575 2024-02-22 06:00:04.065 2024-02-22 06:00:06.736 1540249 18956 \N \N \N 164576 2024-02-22 06:00:04.065 2024-02-22 06:00:06.74 1442259 18517 \N \N \N 164577 2024-02-22 06:00:04.065 2024-02-22 06:00:06.744 1380136 21482 \N \N \N 164578 2024-02-22 06:00:04.065 2024-02-22 06:00:06.749 1374769 15728 \N \N \N 164579 2024-02-22 06:00:04.065 2024-02-22 06:00:06.754 1372769 20782 \N \N \N 164580 2024-02-22 06:00:04.065 2024-02-22 06:00:06.759 1367360 21249 \N \N \N 164581 2024-02-22 06:00:04.065 2024-02-22 06:00:06.765 1337904 1825 \N \N \N 164582 2024-02-22 06:00:04.065 2024-02-22 06:00:06.77 1229906 20059 \N \N \N 164583 2024-02-22 06:00:04.065 2024-02-22 06:00:06.778 1175393 5597 \N \N \N 164584 2024-02-22 06:00:04.065 2024-02-22 06:00:06.783 1164264 18309 \N \N \N 164585 2024-02-22 06:00:04.065 2024-02-22 06:00:06.788 1133901 10668 \N \N \N 164586 2024-02-22 06:00:04.065 2024-02-22 06:00:06.793 1112444 10981 \N \N \N 164587 2024-02-22 06:00:04.065 2024-02-22 06:00:06.799 1049079 18274 \N \N \N 164588 2024-02-22 06:00:04.065 2024-02-22 06:00:06.806 1028090 9334 \N \N \N 164589 2024-02-22 06:00:04.065 2024-02-22 06:00:06.81 1023585 13055 \N \N \N 164590 2024-02-22 06:00:04.065 2024-02-22 06:00:06.815 970523 21446 \N \N \N 164591 2024-02-22 06:00:04.065 2024-02-22 06:00:06.819 964212 18378 \N \N \N 164592 2024-02-22 06:00:04.065 2024-02-22 06:00:06.823 950886 1120 \N \N \N 164593 2024-02-22 06:00:04.065 2024-02-22 06:00:06.828 946483 11862 \N \N \N 164594 2024-02-22 06:00:04.065 2024-02-22 06:00:06.832 943248 14939 \N \N \N 164595 2024-02-22 06:00:04.065 2024-02-22 06:00:06.837 908957 20993 \N \N \N 164596 2024-02-22 06:00:04.065 2024-02-22 06:00:06.842 903792 17011 \N \N \N 164597 2024-02-22 06:00:04.065 2024-02-22 06:00:06.851 857327 19930 \N \N \N 164598 2024-02-22 06:00:04.065 2024-02-22 06:00:06.855 845925 3304 \N \N \N 164599 2024-02-22 06:00:04.065 2024-02-22 06:00:06.861 827884 21352 \N \N \N 164600 2024-02-22 06:00:04.065 2024-02-22 06:00:06.867 812519 19981 \N \N \N 164601 2024-02-22 06:00:04.065 2024-02-22 06:00:06.871 805977 18717 \N \N \N 164602 2024-02-22 06:00:04.065 2024-02-22 06:00:06.875 796425 4173 \N \N \N 164603 2024-02-22 06:00:04.065 2024-02-22 06:00:06.887 778076 7992 \N \N \N 164604 2024-02-22 06:00:04.065 2024-02-22 06:00:06.899 777874 20781 \N \N \N 164605 2024-02-22 06:00:04.065 2024-02-22 06:00:06.903 757185 9276 \N \N \N 164606 2024-02-22 06:00:04.065 2024-02-22 06:00:06.91 720883 2000 \N \N \N 164607 2024-02-22 06:00:04.065 2024-02-22 06:00:06.915 710542 9307 \N \N \N 164608 2024-02-22 06:00:04.065 2024-02-22 06:00:06.919 669086 656 \N \N \N 164609 2024-02-22 06:00:04.065 2024-02-22 06:00:06.924 665776 7913 \N \N \N 164610 2024-02-22 06:00:04.065 2024-02-22 06:00:06.932 657717 733 \N \N \N 164611 2024-02-22 06:00:04.065 2024-02-22 06:00:06.939 609389 9336 \N \N \N 164612 2024-02-22 06:00:04.065 2024-02-22 06:00:06.944 604001 9843 \N \N \N 164613 2024-02-22 06:00:04.065 2024-02-22 06:00:06.949 593148 18892 \N \N \N 164614 2024-02-22 06:00:04.065 2024-02-22 06:00:06.953 563456 18170 \N \N \N 164615 2024-02-22 06:00:04.065 2024-02-22 06:00:06.957 558073 825 \N \N \N 164616 2024-02-22 06:00:04.065 2024-02-22 06:00:06.961 551142 20495 \N \N \N 164617 2024-02-22 06:00:04.065 2024-02-22 06:00:06.966 533014 21079 \N \N \N 164618 2024-02-22 06:00:04.065 2024-02-22 06:00:06.973 530622 18526 \N \N \N 164619 2024-02-22 06:00:04.065 2024-02-22 06:00:06.978 502422 4083 \N \N \N 164620 2024-02-22 06:00:04.065 2024-02-22 06:00:06.983 498943 2609 \N \N \N 164621 2024-02-22 06:00:04.065 2024-02-22 06:00:06.988 493751 19941 \N \N \N 164622 2024-02-22 06:00:04.065 2024-02-22 06:00:06.993 481979 20616 \N \N \N 164623 2024-02-22 06:00:04.065 2024-02-22 06:00:06.997 479755 8004 \N \N \N 164624 2024-02-22 06:00:04.065 2024-02-22 06:00:07.002 478777 17221 \N \N \N 164625 2024-02-22 06:00:04.065 2024-02-22 06:00:07.007 477098 8269 \N \N \N 164626 2024-02-22 06:00:04.065 2024-02-22 06:00:07.013 904089 11144 \N \N \N 164627 2024-02-22 06:00:04.065 2024-02-22 06:00:07.018 459545 4250 \N \N \N 164628 2024-02-22 06:00:04.065 2024-02-22 06:00:07.023 573286 16830 \N \N \N 164629 2024-02-22 06:00:04.065 2024-02-22 06:00:07.027 440644 20264 \N \N \N 164630 2024-02-22 06:00:04.065 2024-02-22 06:00:07.032 437719 6573 \N \N \N 164631 2024-02-22 06:00:04.065 2024-02-22 06:00:07.035 434930 13046 \N \N \N 164632 2024-02-22 06:00:04.065 2024-02-22 06:00:07.04 427329 13763 \N \N \N 164633 2024-02-22 06:00:04.065 2024-02-22 06:00:07.044 412951 16724 \N \N \N 164634 2024-02-22 06:00:04.065 2024-02-22 06:00:07.048 405254 17568 \N \N \N 164635 2024-02-22 06:00:04.065 2024-02-22 06:00:07.053 404696 20514 \N \N \N 164636 2024-02-22 06:00:04.065 2024-02-22 06:00:07.059 403158 19126 \N \N \N 164637 2024-02-22 06:00:04.065 2024-02-22 06:00:07.063 402253 4819 \N \N \N 164638 2024-02-22 06:00:04.065 2024-02-22 06:00:07.069 394398 13927 \N \N \N 164639 2024-02-22 06:00:04.065 2024-02-22 06:00:07.074 370422 17201 \N \N \N 164640 2024-02-22 06:00:04.065 2024-02-22 06:00:07.078 365307 11298 \N \N \N 164641 2024-02-22 06:00:04.065 2024-02-22 06:00:07.169 363239 866 \N \N \N 164642 2024-02-22 06:00:04.065 2024-02-22 06:00:07.247 362265 19531 \N \N \N 164643 2024-02-22 06:00:04.065 2024-02-22 06:00:07.279 357862 680 \N \N \N 164644 2024-02-22 06:00:04.065 2024-02-22 06:00:07.3 350245 19668 \N \N \N 164645 2024-02-22 06:00:04.065 2024-02-22 06:00:07.319 349360 11609 \N \N \N 164646 2024-02-22 06:00:04.065 2024-02-22 06:00:07.346 338191 12057 \N \N \N 164647 2024-02-22 06:00:04.065 2024-02-22 06:00:07.382 323210 19837 \N \N \N 164648 2024-02-22 06:00:04.065 2024-02-22 06:00:07.392 307250 894 \N \N \N 164649 2024-02-22 06:00:04.065 2024-02-22 06:00:07.405 299861 18412 \N \N \N 164650 2024-02-22 06:00:04.065 2024-02-22 06:00:07.428 285304 14465 \N \N \N 164651 2024-02-22 06:00:04.065 2024-02-22 06:00:07.46 285285 20647 \N \N \N 164652 2024-02-22 06:00:04.065 2024-02-22 06:00:07.472 285251 21060 \N \N \N 164653 2024-02-22 06:00:04.065 2024-02-22 06:00:07.513 285239 20026 \N \N \N 164654 2024-02-22 06:00:04.065 2024-02-22 06:00:07.521 266592 10096 \N \N \N 164655 2024-02-22 06:00:04.065 2024-02-22 06:00:07.547 263146 9099 \N \N \N 164656 2024-02-22 06:00:04.065 2024-02-22 06:00:07.577 262172 21051 \N \N \N 164657 2024-02-22 06:00:04.065 2024-02-22 06:00:07.591 262155 9341 \N \N \N 164658 2024-02-22 06:00:04.065 2024-02-22 06:00:07.61 262124 1720 \N \N \N 164659 2024-02-22 06:00:04.065 2024-02-22 06:00:07.622 237994 12566 \N \N \N 164660 2024-02-22 06:00:04.065 2024-02-22 06:00:07.644 220139 4958 \N \N \N 164661 2024-02-22 06:00:04.065 2024-02-22 06:00:07.668 218339 2528 \N \N \N 164662 2024-02-22 06:00:04.065 2024-02-22 06:00:07.684 214573 10731 \N \N \N 164663 2024-02-22 06:00:04.065 2024-02-22 06:00:07.713 212291 7395 \N \N \N 164664 2024-02-22 06:00:04.065 2024-02-22 06:00:07.758 209198 19309 \N \N \N 164665 2024-02-22 06:00:04.065 2024-02-22 06:00:07.856 206627 21503 \N \N \N 164666 2024-02-22 06:00:04.065 2024-02-22 06:00:07.981 194029 2022 \N \N \N 164667 2024-02-22 06:00:04.065 2024-02-22 06:00:08.106 191061 17046 \N \N \N 164668 2024-02-22 06:00:04.065 2024-02-22 06:00:08.128 185237 717 \N \N \N 164669 2024-02-23 06:00:03.382 2024-02-23 06:00:03.384 996472 5497 \N \N \N 164670 2024-02-23 06:00:03.382 2024-02-23 06:00:03.423 992245 20514 \N \N \N 164671 2024-02-23 06:00:03.382 2024-02-23 06:00:03.432 987287 7659 \N \N \N 164672 2024-02-23 06:00:03.382 2024-02-23 06:00:03.447 865058 18524 \N \N \N 164673 2024-02-23 06:00:03.382 2024-02-23 06:00:03.461 745551 18494 \N \N \N 164674 2024-02-23 06:00:03.382 2024-02-23 06:00:03.471 709170 15549 \N \N \N 164675 2024-02-23 06:00:03.382 2024-02-23 06:00:03.481 695728 1609 \N \N \N 164676 2024-02-23 06:00:03.382 2024-02-23 06:00:03.495 656491 18529 \N \N \N 164677 2024-02-23 06:00:03.382 2024-02-23 06:00:03.516 625499 6300 \N \N \N 164678 2024-02-23 06:00:03.382 2024-02-23 06:00:03.526 616106 1652 \N \N \N 164679 2024-02-23 06:00:03.382 2024-02-23 06:00:03.544 606502 1468 \N \N \N 164680 2024-02-23 06:00:03.382 2024-02-23 06:00:03.559 568539 20669 \N \N \N 164681 2024-02-23 06:00:03.382 2024-02-23 06:00:03.584 556535 21612 \N \N \N 164682 2024-02-23 06:00:03.382 2024-02-23 06:00:03.616 552247 20546 \N \N \N 164683 2024-02-23 06:00:03.382 2024-02-23 06:00:03.638 503469 775 \N \N \N 164684 2024-02-23 06:00:03.382 2024-02-23 06:00:03.647 483685 17392 \N \N \N 164685 2024-02-23 06:00:03.382 2024-02-23 06:00:03.657 479485 17690 \N \N \N 164686 2024-02-23 06:00:03.382 2024-02-23 06:00:03.667 475268 18269 \N \N \N 164687 2024-02-23 06:00:03.382 2024-02-23 06:00:03.679 464972 15103 \N \N \N 164688 2024-02-23 06:00:03.382 2024-02-23 06:00:03.691 459323 21214 \N \N \N 164689 2024-02-23 06:00:03.382 2024-02-23 06:00:03.703 452261 1784 \N \N \N 164690 2024-02-23 06:00:03.382 2024-02-23 06:00:03.719 448089 831 \N \N \N 164691 2024-02-23 06:00:03.382 2024-02-23 06:00:03.727 441113 11165 \N \N \N 164692 2024-02-23 06:00:03.382 2024-02-23 06:00:03.737 440383 16259 \N \N \N 164693 2024-02-23 06:00:03.382 2024-02-23 06:00:03.748 440347 21148 \N \N \N 164694 2024-02-23 06:00:03.382 2024-02-23 06:00:03.758 440347 20775 \N \N \N 164695 2024-02-23 06:00:03.382 2024-02-23 06:00:03.768 440312 4415 \N \N \N 164696 2024-02-23 06:00:03.382 2024-02-23 06:00:03.776 440276 9426 \N \N \N 164697 2024-02-23 06:00:03.382 2024-02-23 06:00:03.784 440276 4633 \N \N \N 164698 2024-02-23 06:00:03.382 2024-02-23 06:00:03.793 439262 20979 \N \N \N 164699 2024-02-23 06:00:03.382 2024-02-23 06:00:03.81 437642 14152 \N \N \N 164700 2024-02-23 06:00:03.382 2024-02-23 06:00:03.828 430049 5725 \N \N \N 164701 2024-02-23 06:00:03.382 2024-02-23 06:00:03.851 418599 8916 \N \N \N 164702 2024-02-23 06:00:03.382 2024-02-23 06:00:03.871 412036 836 \N \N \N 164703 2024-02-23 06:00:03.382 2024-02-23 06:00:03.892 411695 2459 \N \N \N 164704 2024-02-23 06:00:03.382 2024-02-23 06:00:03.921 411616 11885 \N \N \N 164705 2024-02-23 06:00:03.382 2024-02-23 06:00:03.968 408920 1738 \N \N \N 164706 2024-02-23 06:00:03.382 2024-02-23 06:00:03.986 408663 711 \N \N \N 164707 2024-02-23 06:00:03.382 2024-02-23 06:00:04.013 404241 18635 \N \N \N 164708 2024-02-23 06:00:03.382 2024-02-23 06:00:04.044 396818 14271 \N \N \N 164709 2024-02-23 06:00:03.382 2024-02-23 06:00:04.063 396808 681 \N \N \N 164710 2024-02-23 06:00:03.382 2024-02-23 06:00:04.071 396715 14657 \N \N \N 164711 2024-02-23 06:00:03.382 2024-02-23 06:00:04.08 396698 12057 \N \N \N 164712 2024-02-23 06:00:03.382 2024-02-23 06:00:04.087 396697 16848 \N \N \N 164713 2024-02-23 06:00:03.382 2024-02-23 06:00:04.096 396666 20586 \N \N \N 164714 2024-02-23 06:00:03.382 2024-02-23 06:00:04.106 396665 14857 \N \N \N 164715 2024-02-23 06:00:03.382 2024-02-23 06:00:04.122 396665 4166 \N \N \N 164716 2024-02-23 06:00:03.382 2024-02-23 06:00:04.132 396665 6419 \N \N \N 164717 2024-02-23 06:00:03.382 2024-02-23 06:00:04.142 396641 21422 \N \N \N 164718 2024-02-23 06:00:03.382 2024-02-23 06:00:04.152 396626 18690 \N \N \N 164719 2024-02-23 06:00:03.382 2024-02-23 06:00:04.165 396626 17411 \N \N \N 164720 2024-02-23 06:00:03.382 2024-02-23 06:00:04.174 396626 16848 \N \N \N 164721 2024-02-23 06:00:03.382 2024-02-23 06:00:04.191 396626 20504 \N \N \N 164722 2024-02-23 06:00:03.382 2024-02-23 06:00:04.202 396626 21072 \N \N \N 164723 2024-02-23 06:00:03.382 2024-02-23 06:00:04.217 396626 4378 \N \N \N 164724 2024-02-23 06:00:03.382 2024-02-23 06:00:04.226 396626 697 \N \N \N 164725 2024-02-23 06:00:03.382 2024-02-23 06:00:04.234 396626 661 \N \N \N 164726 2024-02-23 06:00:03.382 2024-02-23 06:00:04.246 396626 21588 \N \N \N 164727 2024-02-23 06:00:03.382 2024-02-23 06:00:04.254 396626 738 \N \N \N 164728 2024-02-23 06:00:03.382 2024-02-23 06:00:04.263 396626 18423 \N \N \N 164729 2024-02-23 06:00:03.382 2024-02-23 06:00:04.275 396626 13798 \N \N \N 164730 2024-02-23 06:00:03.382 2024-02-23 06:00:04.29 396626 17321 \N \N \N 164731 2024-02-23 06:00:03.382 2024-02-23 06:00:04.304 396093 633 \N \N \N 164732 2024-02-23 06:00:03.382 2024-02-23 06:00:04.314 389444 1772 \N \N \N 164733 2024-02-23 06:00:03.382 2024-02-23 06:00:04.325 389444 18618 \N \N \N 164734 2024-02-23 06:00:03.382 2024-02-23 06:00:04.339 380864 12744 \N \N \N 164735 2024-02-23 06:00:03.382 2024-02-23 06:00:04.348 380721 19557 \N \N \N 164736 2024-02-23 06:00:03.382 2024-02-23 06:00:04.359 380649 21281 \N \N \N 164737 2024-02-23 06:00:03.382 2024-02-23 06:00:04.376 380628 9331 \N \N \N 164738 2024-02-23 06:00:03.382 2024-02-23 06:00:04.387 380614 18402 \N \N \N 164739 2024-02-23 06:00:03.382 2024-02-23 06:00:04.404 380578 21083 \N \N \N 164740 2024-02-23 06:00:03.382 2024-02-23 06:00:04.415 380578 5728 \N \N \N 164741 2024-02-23 06:00:03.382 2024-02-23 06:00:04.434 380578 676 \N \N \N 164742 2024-02-23 06:00:03.382 2024-02-23 06:00:04.455 380578 11621 \N \N \N 164743 2024-02-23 06:00:03.382 2024-02-23 06:00:04.466 380578 12245 \N \N \N 164744 2024-02-23 06:00:03.382 2024-02-23 06:00:04.476 374681 16816 \N \N \N 164745 2024-02-23 06:00:03.382 2024-02-23 06:00:04.492 374115 6382 \N \N \N 164746 2024-02-23 06:00:03.382 2024-02-23 06:00:04.505 364690 2309 \N \N \N 164747 2024-02-23 06:00:03.382 2024-02-23 06:00:04.515 329981 9184 \N \N \N 164748 2024-02-23 06:00:03.382 2024-02-23 06:00:04.53 315657 2748 \N \N \N 164749 2024-02-23 06:00:03.382 2024-02-23 06:00:04.542 311398 5746 \N \N \N 164750 2024-02-23 06:00:03.382 2024-02-23 06:00:04.549 297024 13174 \N \N \N 164751 2024-02-23 06:00:03.382 2024-02-23 06:00:04.561 296729 15408 \N \N \N 164752 2024-02-23 06:00:03.382 2024-02-23 06:00:04.57 292306 17541 \N \N \N 164753 2024-02-23 06:00:03.382 2024-02-23 06:00:04.582 287788 965 \N \N \N 164754 2024-02-23 06:00:03.382 2024-02-23 06:00:04.592 287643 13878 \N \N \N 164755 2024-02-23 06:00:03.382 2024-02-23 06:00:04.601 286943 770 \N \N \N 164756 2024-02-23 06:00:03.382 2024-02-23 06:00:04.609 277300 1602 \N \N \N 164757 2024-02-23 06:00:03.382 2024-02-23 06:00:04.627 276058 17984 \N \N \N 164758 2024-02-23 06:00:03.382 2024-02-23 06:00:04.634 270048 20751 \N \N \N 164759 2024-02-23 06:00:03.382 2024-02-23 06:00:04.643 270048 15938 \N \N \N 164760 2024-02-23 06:00:03.382 2024-02-23 06:00:04.653 268309 1010 \N \N \N 164761 2024-02-23 06:00:03.382 2024-02-23 06:00:04.662 262213 2718 \N \N \N 164762 2024-02-23 06:00:03.382 2024-02-23 06:00:04.681 260718 20015 \N \N \N 164763 2024-02-23 06:00:03.382 2024-02-23 06:00:04.701 253718 21140 \N \N \N 164764 2024-02-23 06:00:03.382 2024-02-23 06:00:04.718 252080 20245 \N \N \N 164765 2024-02-23 06:00:03.382 2024-02-23 06:00:04.731 233601 866 \N \N \N 164766 2024-02-23 06:00:03.382 2024-02-23 06:00:04.741 231403 1801 \N \N \N 164767 2024-02-23 06:00:03.382 2024-02-23 06:00:04.749 228556 928 \N \N \N 164768 2024-02-23 06:00:03.382 2024-02-23 06:00:04.764 223769 12930 \N \N \N 164769 2024-02-23 06:00:03.382 2024-02-23 06:00:04.774 215566 7773 \N \N \N 164770 2024-02-23 06:00:03.382 2024-02-23 06:00:04.787 213454 13169 \N \N \N 164771 2024-02-23 06:00:03.382 2024-02-23 06:00:04.797 213303 7978 \N \N \N 164772 2024-02-23 06:00:03.382 2024-02-23 06:00:04.805 213303 20481 \N \N \N 164773 2024-02-23 06:00:03.382 2024-02-23 06:00:04.814 212774 21238 \N \N \N 164774 2024-02-23 06:00:03.382 2024-02-23 06:00:04.823 208263 17042 \N \N \N 164775 2024-02-23 06:00:03.382 2024-02-23 06:00:04.835 208022 20208 \N \N \N 164776 2024-02-23 06:00:03.382 2024-02-23 06:00:04.844 207918 1438 \N \N \N 164777 2024-02-23 06:00:03.382 2024-02-23 06:00:04.853 202300 15386 \N \N \N 164778 2024-02-23 06:00:03.382 2024-02-23 06:00:04.862 198383 17722 \N \N \N 164779 2024-02-23 06:00:03.382 2024-02-23 06:00:04.871 198376 19909 \N \N \N 164780 2024-02-23 06:00:03.382 2024-02-23 06:00:04.879 198376 11760 \N \N \N 164781 2024-02-23 06:00:03.382 2024-02-23 06:00:04.886 198376 1712 \N \N \N 164782 2024-02-23 06:00:03.382 2024-02-23 06:00:04.894 198376 1120 \N \N \N 164783 2024-02-23 06:00:03.382 2024-02-23 06:00:04.903 198376 775 \N \N \N 164784 2024-02-23 06:00:03.382 2024-02-23 06:00:04.912 198365 20603 \N \N \N 164785 2024-02-23 06:00:03.382 2024-02-23 06:00:04.92 198313 5809 \N \N \N 164786 2024-02-23 06:00:03.382 2024-02-23 06:00:04.928 198313 9354 \N \N \N 164787 2024-02-23 06:00:03.382 2024-02-23 06:00:04.949 198313 17570 \N \N \N 164788 2024-02-23 06:00:03.382 2024-02-23 06:00:04.96 198313 19966 \N \N \N 164789 2024-02-23 06:00:03.382 2024-02-23 06:00:04.973 198313 11395 \N \N \N 164790 2024-02-23 06:00:03.382 2024-02-23 06:00:04.983 198313 7809 \N \N \N 164791 2024-02-23 06:00:03.382 2024-02-23 06:00:04.991 198313 18188 \N \N \N 164792 2024-02-23 06:00:03.382 2024-02-23 06:00:04.999 198313 21589 \N \N \N 164793 2024-02-23 06:00:03.382 2024-02-23 06:00:05.011 198313 21357 \N \N \N 164794 2024-02-23 06:00:03.382 2024-02-23 06:00:05.021 198313 2204 \N \N \N 164795 2024-02-23 06:00:03.382 2024-02-23 06:00:05.031 198313 6653 \N \N \N 164796 2024-02-23 06:00:03.382 2024-02-23 06:00:05.041 198313 16724 \N \N \N 164797 2024-02-23 06:00:03.382 2024-02-23 06:00:05.048 198313 14074 \N \N \N 164798 2024-02-23 06:00:03.382 2024-02-23 06:00:05.058 187681 654 \N \N \N 164799 2024-02-23 06:00:03.382 2024-02-23 06:00:05.066 187112 6202 \N \N \N 164800 2024-02-23 06:00:03.382 2024-02-23 06:00:05.075 186329 21605 \N \N \N 164801 2024-02-23 06:00:03.382 2024-02-23 06:00:05.088 174832 1751 \N \N \N 164802 2024-02-23 06:00:03.382 2024-02-23 06:00:05.098 173103 20585 \N \N \N 164803 2024-02-23 06:00:03.382 2024-02-23 06:00:05.107 166796 928 \N \N \N 164804 2024-02-23 06:00:03.382 2024-02-23 06:00:05.126 166796 17209 \N \N \N 164805 2024-02-23 06:00:03.382 2024-02-23 06:00:05.134 166789 4167 \N \N \N 164806 2024-02-23 06:00:03.382 2024-02-23 06:00:05.156 166789 666 \N \N \N 164807 2024-02-23 06:00:03.382 2024-02-23 06:00:05.169 166789 20080 \N \N \N 164808 2024-02-23 06:00:03.382 2024-02-23 06:00:05.196 166789 5500 \N \N \N 164809 2024-02-23 06:00:03.382 2024-02-23 06:00:05.225 166789 8287 \N \N \N 164810 2024-02-23 06:00:03.382 2024-02-23 06:00:05.247 166789 1733 \N \N \N 164811 2024-02-23 06:00:03.382 2024-02-23 06:00:05.27 166725 20998 \N \N \N 164812 2024-02-23 06:00:03.382 2024-02-23 06:00:05.28 166725 21573 \N \N \N 164813 2024-02-23 06:00:03.382 2024-02-23 06:00:05.29 166725 647 \N \N \N 164814 2024-02-23 06:00:03.382 2024-02-23 06:00:05.299 166725 2576 \N \N \N 164815 2024-02-23 06:00:03.382 2024-02-23 06:00:05.322 166725 21155 \N \N \N 164816 2024-02-23 06:00:03.382 2024-02-23 06:00:05.33 166725 21063 \N \N \N 164817 2024-02-23 06:00:03.382 2024-02-23 06:00:05.339 166725 21506 \N \N \N 164818 2024-02-23 06:00:03.382 2024-02-23 06:00:05.35 166725 12736 \N \N \N 164819 2024-02-23 06:00:03.382 2024-02-23 06:00:05.362 166725 18363 \N \N \N 164820 2024-02-23 06:00:03.382 2024-02-23 06:00:05.376 166725 10490 \N \N \N 164821 2024-02-23 06:00:03.382 2024-02-23 06:00:05.387 166725 21612 \N \N \N 164822 2024-02-23 06:00:03.382 2024-02-23 06:00:05.396 166587 17392 \N \N \N 164823 2024-02-23 06:00:03.382 2024-02-23 06:00:05.405 166551 714 \N \N \N 164824 2024-02-23 06:00:03.382 2024-02-23 06:00:05.418 166515 13527 \N \N \N 164825 2024-02-23 06:00:03.382 2024-02-23 06:00:05.426 166199 21395 \N \N \N 164826 2024-02-23 06:00:03.382 2024-02-23 06:00:05.434 166162 17415 \N \N \N 164827 2024-02-23 06:00:03.382 2024-02-23 06:00:05.443 166136 6191 \N \N \N 164828 2024-02-23 06:00:03.382 2024-02-23 06:00:05.451 166135 2576 \N \N \N 164829 2024-02-23 06:00:03.382 2024-02-23 06:00:05.46 166099 21218 \N \N \N 164830 2024-02-23 06:00:03.382 2024-02-23 06:00:05.468 166099 16536 \N \N \N 164831 2024-02-23 06:00:03.382 2024-02-23 06:00:05.476 166099 10690 \N \N \N 164832 2024-02-23 06:00:03.382 2024-02-23 06:00:05.484 166099 19878 \N \N \N 164833 2024-02-23 06:00:03.382 2024-02-23 06:00:05.493 166099 2773 \N \N \N 164834 2024-02-23 06:00:03.382 2024-02-23 06:00:05.501 165576 13204 \N \N \N 164835 2024-02-23 06:00:03.382 2024-02-23 06:00:05.51 165313 16282 \N \N \N 164836 2024-02-23 06:00:03.382 2024-02-23 06:00:05.523 157823 5865 \N \N \N 164837 2024-02-23 06:00:03.382 2024-02-23 06:00:05.536 157784 18507 \N \N \N 164838 2024-02-23 06:00:03.382 2024-02-23 06:00:05.546 157664 19507 \N \N \N 164839 2024-02-23 06:00:03.382 2024-02-23 06:00:05.554 157664 11523 \N \N \N 164840 2024-02-23 06:00:03.382 2024-02-23 06:00:05.562 157625 17212 \N \N \N 164841 2024-02-23 06:00:03.382 2024-02-23 06:00:05.575 157625 12566 \N \N \N 164842 2024-02-23 06:00:03.382 2024-02-23 06:00:05.585 157625 663 \N \N \N 164843 2024-02-23 06:00:03.382 2024-02-23 06:00:05.594 157625 20911 \N \N \N 164844 2024-02-23 06:00:03.382 2024-02-23 06:00:05.607 157625 19284 \N \N \N 164845 2024-02-23 06:00:03.382 2024-02-23 06:00:05.615 157625 1960 \N \N \N 164846 2024-02-23 06:00:03.382 2024-02-23 06:00:05.624 157625 1162 \N \N \N 164847 2024-02-23 06:00:03.382 2024-02-23 06:00:05.635 157625 20094 \N \N \N 164848 2024-02-23 06:00:03.382 2024-02-23 06:00:05.643 157625 19837 \N \N \N 164849 2024-02-23 06:00:03.382 2024-02-23 06:00:05.651 152769 18119 \N \N \N 164850 2024-02-23 06:00:03.382 2024-02-23 06:00:05.664 151787 20906 \N \N \N 164851 2024-02-23 06:00:03.382 2024-02-23 06:00:05.688 149439 766 \N \N \N 164852 2024-02-23 06:00:03.382 2024-02-23 06:00:05.711 147271 667 \N \N \N 164853 2024-02-23 06:00:03.382 2024-02-23 06:00:05.774 144350 4102 \N \N \N 164854 2024-02-23 06:00:03.382 2024-02-23 06:00:05.809 144283 19043 \N \N \N 164855 2024-02-23 06:00:03.382 2024-02-23 06:00:05.855 144213 20817 \N \N \N 164856 2024-02-23 06:00:03.382 2024-02-23 06:00:05.964 144213 3439 \N \N \N 164857 2024-02-23 06:00:03.382 2024-02-23 06:00:06.016 143998 660 \N \N \N 164858 2024-02-23 06:00:03.382 2024-02-23 06:00:06.061 143269 16543 \N \N \N 164859 2024-02-23 06:00:03.382 2024-02-23 06:00:06.089 143269 9345 \N \N \N 164860 2024-02-23 06:00:03.382 2024-02-23 06:00:06.122 141148 7809 \N \N \N 164861 2024-02-23 06:00:03.382 2024-02-23 06:00:06.184 139680 13921 \N \N \N 164862 2024-02-23 06:00:03.382 2024-02-23 06:00:06.203 137457 5758 \N \N \N 164863 2024-02-23 06:00:03.382 2024-02-23 06:00:06.211 134814 18909 \N \N \N 164864 2024-02-23 06:00:03.382 2024-02-23 06:00:06.222 130021 15617 \N \N \N 164865 2024-02-23 06:00:03.382 2024-02-23 06:00:06.23 122202 19785 \N \N \N 164866 2024-02-23 06:00:03.382 2024-02-23 06:00:06.24 120463 16839 \N \N \N 164867 2024-02-23 06:00:03.382 2024-02-23 06:00:06.25 119893 8173 \N \N \N 164868 2024-02-23 06:00:03.382 2024-02-23 06:00:06.258 113188 5757 \N \N \N 164869 2024-02-23 06:00:03.382 2024-02-23 06:00:06.27 113045 21242 \N \N \N 164870 2024-02-23 06:00:03.382 2024-02-23 06:00:06.278 113045 14015 \N \N \N 164871 2024-02-23 06:00:03.382 2024-02-23 06:00:06.286 109542 913 \N \N \N 164872 2024-02-23 06:00:03.382 2024-02-23 06:00:06.294 107336 6041 \N \N \N 164873 2024-02-23 06:00:03.382 2024-02-23 06:00:06.305 107027 19533 \N \N \N 164874 2024-02-23 06:00:03.382 2024-02-23 06:00:06.313 104816 1094 \N \N \N 164875 2024-02-23 06:00:03.382 2024-02-23 06:00:06.325 103879 21343 \N \N \N 164876 2024-02-23 06:00:03.382 2024-02-23 06:00:06.339 103176 14385 \N \N \N 164877 2024-02-23 06:00:03.382 2024-02-23 06:00:06.35 99748 18873 \N \N \N 164878 2024-02-23 06:00:03.382 2024-02-23 06:00:06.359 99748 14385 \N \N \N 164879 2024-02-23 06:00:03.382 2024-02-23 06:00:06.368 99714 21033 \N \N \N 164880 2024-02-23 06:00:03.382 2024-02-23 06:00:06.386 99714 621 \N \N \N 164881 2024-02-23 06:00:03.382 2024-02-23 06:00:06.399 99681 14267 \N \N \N 164882 2024-02-23 06:00:03.382 2024-02-23 06:00:06.41 99678 21269 \N \N \N 164883 2024-02-23 06:00:03.382 2024-02-23 06:00:06.426 99678 12268 \N \N \N 164884 2024-02-23 06:00:03.382 2024-02-23 06:00:06.436 99678 1237 \N \N \N 164885 2024-02-23 06:00:03.382 2024-02-23 06:00:06.448 99678 19796 \N \N \N 164886 2024-02-23 06:00:03.382 2024-02-23 06:00:06.456 99678 2347 \N \N \N 164887 2024-02-23 06:00:03.382 2024-02-23 06:00:06.465 95296 17050 \N \N \N 164888 2024-02-23 06:00:03.382 2024-02-23 06:00:06.477 94410 1468 \N \N \N 164889 2024-02-23 06:00:03.382 2024-02-23 06:00:06.496 94386 20190 \N \N \N 164890 2024-02-23 06:00:03.382 2024-02-23 06:00:06.504 94386 634 \N \N \N 164891 2024-02-23 06:00:03.382 2024-02-23 06:00:06.517 94386 8400 \N \N \N 164892 2024-02-23 06:00:03.382 2024-02-23 06:00:06.525 94350 17011 \N \N \N 164893 2024-02-23 06:00:03.382 2024-02-23 06:00:06.534 94155 685 \N \N \N 164894 2024-02-23 06:00:03.382 2024-02-23 06:00:06.543 94152 12946 \N \N \N 164895 2024-02-23 06:00:03.382 2024-02-23 06:00:06.553 94152 965 \N \N \N 164896 2024-02-23 06:00:03.382 2024-02-23 06:00:06.564 94130 10608 \N \N \N 164897 2024-02-23 06:00:03.382 2024-02-23 06:00:06.574 94130 8173 \N \N \N 164898 2024-02-23 06:00:03.382 2024-02-23 06:00:06.585 94065 18231 \N \N \N 164899 2024-02-23 06:00:03.382 2024-02-23 06:00:06.602 94065 14909 \N \N \N 164900 2024-02-23 06:00:03.382 2024-02-23 06:00:06.613 94063 14774 \N \N \N 164901 2024-02-23 06:00:03.382 2024-02-23 06:00:06.622 94038 20058 \N \N \N 164902 2024-02-23 06:00:03.382 2024-02-23 06:00:06.64 93993 19094 \N \N \N 164903 2024-02-23 06:00:03.382 2024-02-23 06:00:06.652 93993 1717 \N \N \N 164904 2024-02-23 06:00:03.382 2024-02-23 06:00:06.66 93993 14376 \N \N \N 164905 2024-02-23 06:00:03.382 2024-02-23 06:00:06.67 93993 13046 \N \N \N 164906 2024-02-23 06:00:03.382 2024-02-23 06:00:06.683 93993 671 \N \N \N 164907 2024-02-23 06:00:03.382 2024-02-23 06:00:06.696 93993 964 \N \N \N 164908 2024-02-23 06:00:03.382 2024-02-23 06:00:06.71 93993 16704 \N \N \N 164909 2024-02-23 06:00:03.382 2024-02-23 06:00:06.718 93993 12222 \N \N \N 164910 2024-02-23 06:00:03.382 2024-02-23 06:00:06.729 93993 713 \N \N \N 164911 2024-02-23 06:00:03.382 2024-02-23 06:00:06.739 93993 17838 \N \N \N 164912 2024-02-23 06:00:03.382 2024-02-23 06:00:06.747 93993 650 \N \N \N 164913 2024-02-23 06:00:03.382 2024-02-23 06:00:06.755 93993 18909 \N \N \N 164914 2024-02-23 06:00:03.382 2024-02-23 06:00:06.767 93993 9290 \N \N \N 164915 2024-02-23 06:00:03.382 2024-02-23 06:00:06.777 93993 18068 \N \N \N 164916 2024-02-23 06:00:03.382 2024-02-23 06:00:06.793 93993 6578 \N \N \N 164917 2024-02-23 06:00:03.382 2024-02-23 06:00:06.802 93993 20642 \N \N \N 164918 2024-02-23 06:00:03.382 2024-02-23 06:00:06.812 93993 4633 \N \N \N 164919 2024-02-23 06:00:03.382 2024-02-23 06:00:06.826 93993 1438 \N \N \N 164920 2024-02-23 06:00:03.382 2024-02-23 06:00:06.834 93993 6421 \N \N \N 164921 2024-02-23 06:00:03.382 2024-02-23 06:00:06.843 93993 21339 \N \N \N 164922 2024-02-23 06:00:03.382 2024-02-23 06:00:06.852 93993 10771 \N \N \N 164923 2024-02-23 06:00:03.382 2024-02-23 06:00:06.863 93993 11443 \N \N \N 164924 2024-02-23 06:00:03.382 2024-02-23 06:00:06.87 93993 18539 \N \N \N 164925 2024-02-23 06:00:03.382 2024-02-23 06:00:06.882 93993 1208 \N \N \N 164926 2024-02-23 06:00:03.382 2024-02-23 06:00:06.892 93993 15526 \N \N \N 164927 2024-02-23 06:00:03.382 2024-02-23 06:00:06.902 93993 18016 \N \N \N 164928 2024-02-23 06:00:03.382 2024-02-23 06:00:06.912 93993 4014 \N \N \N 164929 2024-02-23 06:00:03.382 2024-02-23 06:00:06.925 93993 4378 \N \N \N 164930 2024-02-23 06:00:03.382 2024-02-23 06:00:06.951 93993 15526 \N \N \N 164931 2024-02-23 06:00:03.382 2024-02-23 06:00:06.973 93993 9355 \N \N \N 164932 2024-02-23 06:00:03.382 2024-02-23 06:00:06.984 93993 11498 \N \N \N 164933 2024-02-23 06:00:03.382 2024-02-23 06:00:06.993 1949221 18392 \N \N \N 164934 2024-02-23 06:00:03.382 2024-02-23 06:00:07.001 1845046 7903 \N \N \N 164935 2024-02-23 06:00:03.382 2024-02-23 06:00:07.009 1741085 10280 \N \N \N 164936 2024-02-23 06:00:03.382 2024-02-23 06:00:07.017 1643708 5828 \N \N \N 164937 2024-02-23 06:00:03.382 2024-02-23 06:00:07.025 1640498 9992 \N \N \N 164938 2024-02-23 06:00:03.382 2024-02-23 06:00:07.033 1637768 12516 \N \N \N 164939 2024-02-23 06:00:03.382 2024-02-23 06:00:07.04 1516865 8648 \N \N \N 164940 2024-02-23 06:00:03.382 2024-02-23 06:00:07.049 1512338 6717 \N \N \N 164941 2024-02-23 06:00:03.382 2024-02-23 06:00:07.056 1479422 21563 \N \N \N 164942 2024-02-23 06:00:03.382 2024-02-23 06:00:07.064 1469235 636 \N \N \N 164943 2024-02-23 06:00:03.382 2024-02-23 06:00:07.071 1769940 12562 \N \N \N 164944 2024-02-23 06:00:03.382 2024-02-23 06:00:07.079 1446827 21021 \N \N \N 164945 2024-02-23 06:00:03.382 2024-02-23 06:00:07.087 1364511 18745 \N \N \N 164946 2024-02-23 06:00:03.382 2024-02-23 06:00:07.095 1296286 5701 \N \N \N 164947 2024-02-23 06:00:03.382 2024-02-23 06:00:07.104 1294148 981 \N \N \N 164948 2024-02-23 06:00:03.382 2024-02-23 06:00:07.112 1283257 16809 \N \N \N 164949 2024-02-23 06:00:03.382 2024-02-23 06:00:07.119 1279092 18269 \N \N \N 164950 2024-02-23 06:00:03.382 2024-02-23 06:00:07.129 1160701 2075 \N \N \N 164951 2024-02-23 06:00:03.382 2024-02-23 06:00:07.146 1130486 10273 \N \N \N 164952 2024-02-23 06:00:03.382 2024-02-23 06:00:07.156 1119276 8245 \N \N \N 164953 2024-02-23 06:00:03.382 2024-02-23 06:00:07.163 1103870 4487 \N \N \N 164954 2024-02-23 06:00:03.382 2024-02-23 06:00:07.172 1016232 3392 \N \N \N 164955 2024-02-23 06:00:03.382 2024-02-23 06:00:07.179 952889 3745 \N \N \N 164956 2024-02-23 06:00:03.382 2024-02-23 06:00:07.187 853098 19541 \N \N \N 164957 2024-02-23 06:00:03.382 2024-02-23 06:00:07.194 808946 16724 \N \N \N 164958 2024-02-23 06:00:03.382 2024-02-23 06:00:07.201 808830 19810 \N \N \N 164959 2024-02-23 06:00:03.382 2024-02-23 06:00:07.209 806329 5487 \N \N \N 164960 2024-02-23 06:00:03.382 2024-02-23 06:00:07.216 777622 17106 \N \N \N 164961 2024-02-23 06:00:03.382 2024-02-23 06:00:07.224 774046 4128 \N \N \N 164962 2024-02-23 06:00:03.382 2024-02-23 06:00:07.233 741974 6360 \N \N \N 164963 2024-02-23 06:00:03.382 2024-02-23 06:00:07.24 736931 13553 \N \N \N 164964 2024-02-23 06:00:03.382 2024-02-23 06:00:07.248 731478 3717 \N \N \N 164965 2024-02-23 06:00:03.382 2024-02-23 06:00:07.256 705803 21088 \N \N \N 164966 2024-02-23 06:00:03.382 2024-02-23 06:00:07.264 672121 899 \N \N \N 164967 2024-02-23 06:00:03.382 2024-02-23 06:00:07.271 974275 18232 \N \N \N 164968 2024-02-23 06:00:03.382 2024-02-23 06:00:07.279 650603 18731 \N \N \N 164969 2024-02-23 06:00:03.382 2024-02-23 06:00:07.287 616632 11458 \N \N \N 164970 2024-02-23 06:00:03.382 2024-02-23 06:00:07.295 611730 675 \N \N \N 164971 2024-02-23 06:00:03.382 2024-02-23 06:00:07.303 583675 20502 \N \N \N 164972 2024-02-23 06:00:03.382 2024-02-23 06:00:07.311 571406 19030 \N \N \N 164973 2024-02-23 06:00:03.382 2024-02-23 06:00:07.318 568732 13767 \N \N \N 164974 2024-02-23 06:00:03.382 2024-02-23 06:00:07.328 561063 21599 \N \N \N 164975 2024-02-23 06:00:03.382 2024-02-23 06:00:07.336 546053 12049 \N \N \N 164976 2024-02-23 06:00:03.382 2024-02-23 06:00:07.344 532203 18154 \N \N \N 164977 2024-02-23 06:00:03.382 2024-02-23 06:00:07.354 519183 15271 \N \N \N 164978 2024-02-23 06:00:03.382 2024-02-23 06:00:07.362 515995 18231 \N \N \N 164979 2024-02-23 06:00:03.382 2024-02-23 06:00:07.369 973877 11091 \N \N \N 164980 2024-02-23 06:00:03.382 2024-02-23 06:00:07.376 503234 9 \N \N \N 164981 2024-02-23 06:00:03.382 2024-02-23 06:00:07.387 488262 19007 \N \N \N 164982 2024-02-23 06:00:03.382 2024-02-23 06:00:07.394 488043 12272 \N \N \N 164983 2024-02-23 06:00:03.382 2024-02-23 06:00:07.402 469703 20245 \N \N \N 164984 2024-02-23 06:00:03.382 2024-02-23 06:00:07.432 460457 18897 \N \N \N 164985 2024-02-23 06:00:03.382 2024-02-23 06:00:07.456 453223 17522 \N \N \N 164986 2024-02-23 06:00:03.382 2024-02-23 06:00:07.468 436963 21386 \N \N \N 164987 2024-02-23 06:00:03.382 2024-02-23 06:00:07.478 436856 2029 \N \N \N 164988 2024-02-23 06:00:03.382 2024-02-23 06:00:07.487 436800 10283 \N \N \N 164989 2024-02-23 06:00:03.382 2024-02-23 06:00:07.499 436541 13544 \N \N \N 164990 2024-02-23 06:00:03.382 2024-02-23 06:00:07.508 436527 17535 \N \N \N 164991 2024-02-23 06:00:03.382 2024-02-23 06:00:07.519 394262 19286 \N \N \N 164992 2024-02-23 06:00:03.382 2024-02-23 06:00:07.527 389391 21520 \N \N \N 164993 2024-02-23 06:00:03.382 2024-02-23 06:00:07.538 389114 1632 \N \N \N 164994 2024-02-23 06:00:03.382 2024-02-23 06:00:07.546 370882 21609 \N \N \N 164995 2024-02-23 06:00:03.382 2024-02-23 06:00:07.556 364344 9655 \N \N \N 164996 2024-02-23 06:00:03.382 2024-02-23 06:00:07.563 352924 16505 \N \N \N 164997 2024-02-23 06:00:03.382 2024-02-23 06:00:07.571 348304 3729 \N \N \N 164998 2024-02-23 06:00:03.382 2024-02-23 06:00:07.58 340664 18641 \N \N \N 164999 2024-02-23 06:00:03.382 2024-02-23 06:00:07.588 329629 763 \N \N \N 165000 2024-02-23 06:00:03.382 2024-02-23 06:00:07.595 328590 21166 \N \N \N 165001 2024-02-23 06:00:03.382 2024-02-23 06:00:07.605 327892 18830 \N \N \N 165002 2024-02-23 06:00:03.382 2024-02-23 06:00:07.614 311817 2583 \N \N \N 165003 2024-02-23 06:00:03.382 2024-02-23 06:00:07.623 307415 2195 \N \N \N 165004 2024-02-23 06:00:03.382 2024-02-23 06:00:07.631 307412 11430 \N \N \N 165005 2024-02-23 06:00:03.382 2024-02-23 06:00:07.639 307259 19394 \N \N \N 165006 2024-02-23 06:00:03.382 2024-02-23 06:00:07.647 307247 18169 \N \N \N 165007 2024-02-23 06:00:03.382 2024-02-23 06:00:07.656 287273 1717 \N \N \N 165008 2024-02-23 06:00:03.382 2024-02-23 06:00:07.663 284901 2775 \N \N \N 165009 2024-02-23 06:00:03.382 2024-02-23 06:00:07.672 282777 632 \N \N \N 165010 2024-02-23 06:00:03.382 2024-02-23 06:00:07.68 282756 18387 \N \N \N 165011 2024-02-23 06:00:03.382 2024-02-23 06:00:07.69 282499 12821 \N \N \N 165012 2024-02-23 06:00:03.382 2024-02-23 06:00:07.698 282433 4502 \N \N \N 165013 2024-02-23 06:00:03.382 2024-02-23 06:00:07.706 282381 5942 \N \N \N 165014 2024-02-23 06:00:03.382 2024-02-23 06:00:07.713 276907 16706 \N \N \N 165015 2024-02-23 06:00:03.382 2024-02-23 06:00:07.723 262520 1626 \N \N \N 165016 2024-02-23 06:00:03.382 2024-02-23 06:00:07.73 244411 9350 \N \N \N 165017 2024-02-23 06:00:03.382 2024-02-23 06:00:07.738 230812 21614 \N \N \N 165018 2024-02-23 06:00:03.382 2024-02-23 06:00:07.745 228678 18658 \N \N \N 165019 2024-02-23 06:00:03.382 2024-02-23 06:00:07.754 225729 15536 \N \N \N 165020 2024-02-23 06:00:03.382 2024-02-23 06:00:07.762 225339 690 \N \N \N 165021 2024-02-23 06:00:03.382 2024-02-23 06:00:07.769 222616 5487 \N \N \N 165022 2024-02-23 06:00:03.382 2024-02-23 06:00:07.779 222110 20163 \N \N \N 165023 2024-02-23 06:00:03.382 2024-02-23 06:00:07.789 212699 4633 \N \N \N 165024 2024-02-23 06:00:03.382 2024-02-23 06:00:07.806 209224 19417 \N \N \N 165025 2024-02-23 06:00:03.382 2024-02-23 06:00:07.817 209193 18068 \N \N \N 165026 2024-02-23 06:00:03.382 2024-02-23 06:00:07.824 208354 21472 \N \N \N 165027 2024-02-23 06:00:03.382 2024-02-23 06:00:07.832 202768 21247 \N \N \N 165028 2024-02-23 06:00:03.382 2024-02-23 06:00:07.839 191833 17392 \N \N \N 165029 2024-02-23 06:00:03.382 2024-02-23 06:00:07.849 181561 19007 \N \N \N 165030 2024-02-23 06:00:03.382 2024-02-23 06:00:07.857 175549 18008 \N \N \N 165031 2024-02-23 06:00:03.382 2024-02-23 06:00:07.864 171448 6499 \N \N \N 165032 2024-02-24 06:00:03.793 2024-02-24 06:00:03.795 19092732 9517 \N \N \N 165033 2024-02-24 06:00:03.793 2024-02-24 06:00:03.803 13599879 9843 \N \N \N 165034 2024-02-24 06:00:03.793 2024-02-24 06:00:03.808 3133791 3717 \N \N \N 165035 2024-02-24 06:00:03.793 2024-02-24 06:00:03.819 2441279 3461 \N \N \N 165036 2024-02-24 06:00:03.793 2024-02-24 06:00:03.826 2294423 10094 \N \N \N 165037 2024-02-24 06:00:03.793 2024-02-24 06:00:03.831 2231694 19992 \N \N \N 165038 2024-02-24 06:00:03.793 2024-02-24 06:00:03.837 2057552 21090 \N \N \N 165039 2024-02-24 06:00:03.793 2024-02-24 06:00:03.841 1903040 20185 \N \N \N 165040 2024-02-24 06:00:03.793 2024-02-24 06:00:03.845 1858812 20073 \N \N \N 165041 2024-02-24 06:00:03.793 2024-02-24 06:00:03.85 1756141 19435 \N \N \N 165042 2024-02-24 06:00:03.793 2024-02-24 06:00:03.854 1554339 18380 \N \N \N 165043 2024-02-24 06:00:03.793 2024-02-24 06:00:03.858 1415518 2459 \N \N \N 165044 2024-02-24 06:00:03.793 2024-02-24 06:00:03.862 1244554 5129 \N \N \N 165045 2024-02-24 06:00:03.793 2024-02-24 06:00:03.866 1241178 19952 \N \N \N 165046 2024-02-24 06:00:03.793 2024-02-24 06:00:03.871 1004219 18660 \N \N \N 165047 2024-02-24 06:00:03.793 2024-02-24 06:00:03.875 968749 19546 \N \N \N 165048 2024-02-24 06:00:03.793 2024-02-24 06:00:03.88 901609 20218 \N \N \N 165049 2024-02-24 06:00:03.793 2024-02-24 06:00:03.884 896349 5578 \N \N \N 165050 2024-02-24 06:00:03.793 2024-02-24 06:00:03.887 874005 20840 \N \N \N 165051 2024-02-24 06:00:03.793 2024-02-24 06:00:03.891 841062 18836 \N \N \N 165052 2024-02-24 06:00:03.793 2024-02-24 06:00:03.895 823470 717 \N \N \N 165053 2024-02-24 06:00:03.793 2024-02-24 06:00:03.899 781581 20087 \N \N \N 165054 2024-02-24 06:00:03.793 2024-02-24 06:00:03.903 780138 20990 \N \N \N 165055 2024-02-24 06:00:03.793 2024-02-24 06:00:03.911 695840 8284 \N \N \N 165056 2024-02-24 06:00:03.793 2024-02-24 06:00:03.915 690405 1741 \N \N \N 165057 2024-02-24 06:00:03.793 2024-02-24 06:00:03.92 669513 9167 \N \N \N 165058 2024-02-24 06:00:03.793 2024-02-24 06:00:03.924 658913 9350 \N \N \N 165059 2024-02-24 06:00:03.793 2024-02-24 06:00:03.932 635516 20454 \N \N \N 165060 2024-02-24 06:00:03.793 2024-02-24 06:00:03.939 627405 18199 \N \N \N 165061 2024-02-24 06:00:03.793 2024-02-24 06:00:03.943 596469 18862 \N \N \N 165062 2024-02-24 06:00:03.793 2024-02-24 06:00:03.947 551698 1609 \N \N \N 165063 2024-02-24 06:00:03.793 2024-02-24 06:00:03.951 549442 1114 \N \N \N 165064 2024-02-24 06:00:03.793 2024-02-24 06:00:03.957 546196 1620 \N \N \N 165065 2024-02-24 06:00:03.793 2024-02-24 06:00:03.961 499939 21083 \N \N \N 165066 2024-02-24 06:00:03.793 2024-02-24 06:00:03.965 475763 6777 \N \N \N 165067 2024-02-24 06:00:03.793 2024-02-24 06:00:03.97 430212 10728 \N \N \N 165068 2024-02-24 06:00:03.793 2024-02-24 06:00:03.974 424510 10056 \N \N \N 165069 2024-02-24 06:00:03.793 2024-02-24 06:00:03.979 407969 6616 \N \N \N 165070 2024-02-24 06:00:03.793 2024-02-24 06:00:03.982 405845 18919 \N \N \N 165071 2024-02-24 06:00:03.793 2024-02-24 06:00:03.986 399911 19463 \N \N \N 165072 2024-02-24 06:00:03.793 2024-02-24 06:00:03.99 393165 2367 \N \N \N 165073 2024-02-24 06:00:03.793 2024-02-24 06:00:03.995 391866 17172 \N \N \N 165074 2024-02-24 06:00:03.793 2024-02-24 06:00:04 386284 12102 \N \N \N 165075 2024-02-24 06:00:03.793 2024-02-24 06:00:04.015 382987 20588 \N \N \N 165076 2024-02-24 06:00:03.793 2024-02-24 06:00:04.02 372699 14255 \N \N \N 165077 2024-02-24 06:00:03.793 2024-02-24 06:00:04.023 367110 20849 \N \N \N 165078 2024-02-24 06:00:03.793 2024-02-24 06:00:04.031 348353 21453 \N \N \N 165079 2024-02-24 06:00:03.793 2024-02-24 06:00:04.035 312154 18641 \N \N \N 165080 2024-02-24 06:00:03.793 2024-02-24 06:00:04.04 311235 15463 \N \N \N 165081 2024-02-24 06:00:03.793 2024-02-24 06:00:04.044 298493 18005 \N \N \N 165082 2024-02-24 06:00:03.793 2024-02-24 06:00:04.049 294790 3347 \N \N \N 165083 2024-02-24 06:00:03.793 2024-02-24 06:00:04.052 294256 7668 \N \N \N 165084 2024-02-24 06:00:03.793 2024-02-24 06:00:04.056 283225 20906 \N \N \N 165085 2024-02-24 06:00:03.793 2024-02-24 06:00:04.062 279009 5306 \N \N \N 165086 2024-02-24 06:00:03.793 2024-02-24 06:00:04.068 275092 18446 \N \N \N 165087 2024-02-24 06:00:03.793 2024-02-24 06:00:04.072 261634 9275 \N \N \N 165088 2024-02-24 06:00:03.793 2024-02-24 06:00:04.076 258540 10359 \N \N \N 165089 2024-02-24 06:00:03.793 2024-02-24 06:00:04.079 241839 1145 \N \N \N 165090 2024-02-24 06:00:03.793 2024-02-24 06:00:04.084 232764 10693 \N \N \N 165091 2024-02-24 06:00:03.793 2024-02-24 06:00:04.096 226274 8326 \N \N \N 165092 2024-02-24 06:00:03.793 2024-02-24 06:00:04.104 221040 20353 \N \N \N 165093 2024-02-24 06:00:03.793 2024-02-24 06:00:04.109 217050 1733 \N \N \N 165094 2024-02-24 06:00:03.793 2024-02-24 06:00:04.112 213314 17693 \N \N \N 165095 2024-02-24 06:00:03.793 2024-02-24 06:00:04.118 211095 1505 \N \N \N 165096 2024-02-24 06:00:03.793 2024-02-24 06:00:04.123 193569 20006 \N \N \N 165097 2024-02-24 06:00:03.793 2024-02-24 06:00:04.127 192058 6361 \N \N \N 165098 2024-02-24 06:00:03.793 2024-02-24 06:00:04.13 179305 18209 \N \N \N 165099 2024-02-24 06:00:03.793 2024-02-24 06:00:04.135 175812 880 \N \N \N 165100 2024-02-24 06:00:03.793 2024-02-24 06:00:04.14 147349 16954 \N \N \N 165101 2024-02-24 06:00:03.793 2024-02-24 06:00:04.144 143782 679 \N \N \N 165102 2024-02-24 06:00:03.793 2024-02-24 06:00:04.148 142911 18472 \N \N \N 165103 2024-02-24 06:00:03.793 2024-02-24 06:00:04.152 140345 20979 \N \N \N 165104 2024-02-24 06:00:03.793 2024-02-24 06:00:04.156 135519 19980 \N \N \N 165105 2024-02-24 06:00:03.793 2024-02-24 06:00:04.16 132921 13133 \N \N \N 165106 2024-02-24 06:00:03.793 2024-02-24 06:00:04.164 127994 18446 \N \N \N 165107 2024-02-24 06:00:03.793 2024-02-24 06:00:04.178 126217 20287 \N \N \N 165108 2024-02-24 06:00:03.793 2024-02-24 06:00:04.182 122318 18556 \N \N \N 165109 2024-02-24 06:00:03.793 2024-02-24 06:00:04.19 121051 1814 \N \N \N 165110 2024-02-24 06:00:03.793 2024-02-24 06:00:04.194 119807 15938 \N \N \N 165111 2024-02-24 06:00:03.793 2024-02-24 06:00:04.198 119071 18409 \N \N \N 165112 2024-02-24 06:00:03.793 2024-02-24 06:00:04.202 96932 2256 \N \N \N 165113 2024-02-24 06:00:03.793 2024-02-24 06:00:04.206 91717 9109 \N \N \N 165114 2024-02-24 06:00:03.793 2024-02-24 06:00:04.21 89188 9352 \N \N \N 165115 2024-02-24 06:00:03.793 2024-02-24 06:00:04.214 83908 11522 \N \N \N 165116 2024-02-24 06:00:03.793 2024-02-24 06:00:04.218 81984 9036 \N \N \N 165117 2024-02-24 06:00:03.793 2024-02-24 06:00:04.222 79223 1723 \N \N \N 165118 2024-02-24 06:00:03.793 2024-02-24 06:00:04.227 66375 891 \N \N \N 165119 2024-02-24 06:00:03.793 2024-02-24 06:00:04.232 65734 20624 \N \N \N 165120 2024-02-24 06:00:03.793 2024-02-24 06:00:04.236 59860 12911 \N \N \N 165121 2024-02-24 06:00:03.793 2024-02-24 06:00:04.24 53919 21062 \N \N \N 165122 2024-02-24 06:00:03.793 2024-02-24 06:00:04.243 53752 19381 \N \N \N 165123 2024-02-24 06:00:03.793 2024-02-24 06:00:04.247 51621 17030 \N \N \N 165124 2024-02-24 06:00:03.793 2024-02-24 06:00:04.25 50557 19381 \N \N \N 165125 2024-02-24 06:00:03.793 2024-02-24 06:00:04.254 50403 19446 \N \N \N 165126 2024-02-24 06:00:03.793 2024-02-24 06:00:04.26 48324 3392 \N \N \N 165127 2024-02-24 06:00:03.793 2024-02-24 06:00:04.263 48017 9337 \N \N \N 165128 2024-02-24 06:00:03.793 2024-02-24 06:00:04.268 40281 5978 \N \N \N 165129 2024-02-24 06:00:03.793 2024-02-24 06:00:04.271 38780 16543 \N \N \N 165130 2024-02-24 06:00:03.793 2024-02-24 06:00:04.275 28606 13133 \N \N \N 165131 2024-02-24 06:00:03.793 2024-02-24 06:00:04.28 21545 16754 \N \N \N 165132 2024-02-24 06:00:03.793 2024-02-24 06:00:04.285 17210 733 \N \N \N 165133 2024-02-24 06:00:03.793 2024-02-24 06:00:04.291 15132 16848 \N \N \N 165134 2024-02-24 06:00:03.793 2024-02-24 06:00:04.296 13948 10342 \N \N \N 165135 2024-02-24 06:00:03.793 2024-02-24 06:00:04.301 12325 965 \N \N \N 165136 2024-02-24 06:00:03.793 2024-02-24 06:00:04.305 13176931 7903 \N \N \N 165137 2024-02-24 06:00:03.793 2024-02-24 06:00:04.308 5074575 1489 \N \N \N 165138 2024-02-24 06:00:03.793 2024-02-24 06:00:04.312 3203007 18017 \N \N \N 165139 2024-02-24 06:00:03.793 2024-02-24 06:00:04.315 2808362 6335 \N \N \N 165140 2024-02-24 06:00:03.793 2024-02-24 06:00:04.32 2538518 5522 \N \N \N 165141 2024-02-24 06:00:03.793 2024-02-24 06:00:04.325 2352464 15266 \N \N \N 165142 2024-02-24 06:00:03.793 2024-02-24 06:00:04.332 2243208 18743 \N \N \N 165143 2024-02-24 06:00:03.793 2024-02-24 06:00:04.337 1896006 20525 \N \N \N 165144 2024-02-24 06:00:03.793 2024-02-24 06:00:04.341 1820237 7675 \N \N \N 165145 2024-02-24 06:00:03.793 2024-02-24 06:00:04.346 1672822 13987 \N \N \N 165146 2024-02-24 06:00:03.793 2024-02-24 06:00:04.35 1649011 19909 \N \N \N 165147 2024-02-24 06:00:03.793 2024-02-24 06:00:04.355 1636834 12160 \N \N \N 165148 2024-02-24 06:00:03.793 2024-02-24 06:00:04.36 1631318 14308 \N \N \N 165149 2024-02-24 06:00:03.793 2024-02-24 06:00:04.363 1400293 6260 \N \N \N 165150 2024-02-24 06:00:03.793 2024-02-24 06:00:04.367 1391046 626 \N \N \N 165151 2024-02-24 06:00:03.793 2024-02-24 06:00:04.371 1337852 889 \N \N \N 165152 2024-02-24 06:00:03.793 2024-02-24 06:00:04.374 1283653 18454 \N \N \N 165153 2024-02-24 06:00:03.793 2024-02-24 06:00:04.388 1023684 18904 \N \N \N 165154 2024-02-24 06:00:03.793 2024-02-24 06:00:04.412 1012935 7097 \N \N \N 165155 2024-02-24 06:00:03.793 2024-02-24 06:00:04.424 995638 684 \N \N \N 165156 2024-02-24 06:00:03.793 2024-02-24 06:00:04.44 943878 15521 \N \N \N 165157 2024-02-24 06:00:03.793 2024-02-24 06:00:04.457 900553 21446 \N \N \N 165158 2024-02-24 06:00:03.793 2024-02-24 06:00:04.48 865506 20636 \N \N \N 165159 2024-02-24 06:00:03.793 2024-02-24 06:00:04.504 762082 20231 \N \N \N 165160 2024-02-24 06:00:03.793 2024-02-24 06:00:04.528 761161 17148 \N \N \N 165161 2024-02-24 06:00:03.793 2024-02-24 06:00:04.548 753419 19759 \N \N \N 165162 2024-02-24 06:00:03.793 2024-02-24 06:00:04.568 723395 4802 \N \N \N 165163 2024-02-24 06:00:03.793 2024-02-24 06:00:04.588 630176 20340 \N \N \N 165164 2024-02-24 06:00:03.793 2024-02-24 06:00:04.613 627412 624 \N \N \N 165165 2024-02-24 06:00:03.793 2024-02-24 06:00:04.632 587109 14552 \N \N \N 165166 2024-02-24 06:00:03.793 2024-02-24 06:00:04.656 584487 12736 \N \N \N 165167 2024-02-24 06:00:03.793 2024-02-24 06:00:04.678 573166 18717 \N \N \N 165168 2024-02-24 06:00:03.793 2024-02-24 06:00:04.696 558288 21520 \N \N \N 165169 2024-02-24 06:00:03.793 2024-02-24 06:00:04.712 557391 20776 \N \N \N 165170 2024-02-24 06:00:03.793 2024-02-24 06:00:04.732 535974 5758 \N \N \N 165171 2024-02-24 06:00:03.793 2024-02-24 06:00:04.752 514091 19967 \N \N \N 165172 2024-02-24 06:00:03.793 2024-02-24 06:00:04.776 497685 6777 \N \N \N 165173 2024-02-24 06:00:03.793 2024-02-24 06:00:04.796 479416 9336 \N \N \N 165174 2024-02-24 06:00:03.793 2024-02-24 06:00:04.816 468806 15560 \N \N \N 165175 2024-02-24 06:00:03.793 2024-02-24 06:00:04.832 463004 705 \N \N \N 165176 2024-02-24 06:00:03.793 2024-02-24 06:00:04.848 446223 8133 \N \N \N 165177 2024-02-24 06:00:03.793 2024-02-24 06:00:04.857 439094 19813 \N \N \N 165178 2024-02-24 06:00:03.793 2024-02-24 06:00:04.872 436560 14015 \N \N \N 165179 2024-02-24 06:00:03.793 2024-02-24 06:00:04.888 411469 18344 \N \N \N 165180 2024-02-24 06:00:03.793 2024-02-24 06:00:04.899 401532 12507 \N \N \N 165181 2024-02-24 06:00:03.793 2024-02-24 06:00:04.903 391107 15925 \N \N \N 165182 2024-02-24 06:00:03.793 2024-02-24 06:00:04.907 390214 641 \N \N \N 165183 2024-02-24 06:00:03.793 2024-02-24 06:00:04.91 372120 5637 \N \N \N 165184 2024-02-24 06:00:03.793 2024-02-24 06:00:04.915 356243 652 \N \N \N 165185 2024-02-24 06:00:03.793 2024-02-24 06:00:04.918 354693 14552 \N \N \N 165186 2024-02-24 06:00:03.793 2024-02-24 06:00:04.922 345142 694 \N \N \N 165187 2024-02-24 06:00:03.793 2024-02-24 06:00:04.925 341332 19506 \N \N \N 165188 2024-02-24 06:00:03.793 2024-02-24 06:00:04.93 340519 678 \N \N \N 165189 2024-02-24 06:00:03.793 2024-02-24 06:00:04.939 337903 19118 \N \N \N 165190 2024-02-24 06:00:03.793 2024-02-24 06:00:04.943 334085 16858 \N \N \N 165191 2024-02-24 06:00:03.793 2024-02-24 06:00:04.946 322278 6533 \N \N \N 165192 2024-02-24 06:00:03.793 2024-02-24 06:00:04.951 321601 21620 \N \N \N 165193 2024-02-24 06:00:03.793 2024-02-24 06:00:04.956 317418 1002 \N \N \N 165194 2024-02-24 06:00:03.793 2024-02-24 06:00:04.961 310662 9874 \N \N \N 165195 2024-02-24 06:00:03.793 2024-02-24 06:00:04.966 310172 7899 \N \N \N 165196 2024-02-24 06:00:03.793 2024-02-24 06:00:04.97 302851 1833 \N \N \N 165197 2024-02-24 06:00:03.793 2024-02-24 06:00:04.973 298001 20826 \N \N \N 165198 2024-02-24 06:00:03.793 2024-02-24 06:00:04.978 296571 2577 \N \N \N 165199 2024-02-24 06:00:03.793 2024-02-24 06:00:04.981 296260 20066 \N \N \N 165200 2024-02-24 06:00:03.793 2024-02-24 06:00:04.984 295405 16665 \N \N \N 165201 2024-02-24 06:00:03.793 2024-02-24 06:00:04.988 292053 8004 \N \N \N 165202 2024-02-24 06:00:03.793 2024-02-24 06:00:04.992 291373 3683 \N \N \N 165203 2024-02-24 06:00:03.793 2024-02-24 06:00:04.996 284589 16536 \N \N \N 165204 2024-02-24 06:00:03.793 2024-02-24 06:00:05 279635 18262 \N \N \N 165205 2024-02-24 06:00:03.793 2024-02-24 06:00:05.004 273354 14267 \N \N \N 165206 2024-02-24 06:00:03.793 2024-02-24 06:00:05.008 270869 5825 \N \N \N 165207 2024-02-24 06:00:03.793 2024-02-24 06:00:05.011 261597 4304 \N \N \N 165208 2024-02-24 06:00:03.793 2024-02-24 06:00:05.015 248201 13174 \N \N \N 165209 2024-02-24 06:00:03.793 2024-02-24 06:00:05.02 247551 11153 \N \N \N 165210 2024-02-24 06:00:03.793 2024-02-24 06:00:05.024 243590 19087 \N \N \N 165211 2024-02-24 06:00:03.793 2024-02-24 06:00:05.029 240828 20434 \N \N \N 165212 2024-02-24 06:00:03.793 2024-02-24 06:00:05.034 230626 15890 \N \N \N 165213 2024-02-24 06:00:03.793 2024-02-24 06:00:05.038 226593 20906 \N \N \N 165214 2024-02-24 06:00:03.793 2024-02-24 06:00:05.042 222251 9355 \N \N \N 165215 2024-02-24 06:00:03.793 2024-02-24 06:00:05.046 220512 768 \N \N \N 165216 2024-02-24 06:00:03.793 2024-02-24 06:00:05.05 207306 15941 \N \N \N 165217 2024-02-24 06:00:03.793 2024-02-24 06:00:05.054 199139 20811 \N \N \N 165218 2024-02-24 06:00:03.793 2024-02-24 06:00:05.059 196681 1602 \N \N \N 165219 2024-02-24 06:00:03.793 2024-02-24 06:00:05.063 192991 20973 \N \N \N 165220 2024-02-24 06:00:03.793 2024-02-24 06:00:05.079 191389 1401 \N \N \N 165221 2024-02-24 06:00:03.793 2024-02-24 06:00:05.083 183433 2437 \N \N \N 165222 2024-02-24 06:00:03.793 2024-02-24 06:00:05.086 173615 16966 \N \N \N 165223 2024-02-24 06:00:03.793 2024-02-24 06:00:05.09 168469 19458 \N \N \N 165224 2024-02-24 06:00:03.793 2024-02-24 06:00:05.095 165491 15045 \N \N \N 165225 2024-02-24 06:00:03.793 2024-02-24 06:00:05.099 163483 21247 \N \N \N 165226 2024-02-24 06:00:03.793 2024-02-24 06:00:05.103 162185 20889 \N \N \N 165227 2024-02-24 06:00:03.793 2024-02-24 06:00:05.117 157841 2596 \N \N \N 165228 2024-02-24 06:00:03.793 2024-02-24 06:00:05.121 156442 721 \N \N \N 165229 2024-02-24 06:00:03.793 2024-02-24 06:00:05.126 153133 20990 \N \N \N 165230 2024-02-24 06:00:03.793 2024-02-24 06:00:05.133 152040 797 \N \N \N 165231 2024-02-24 06:00:03.793 2024-02-24 06:00:05.139 147764 3411 \N \N \N 165232 2024-02-24 06:00:03.793 2024-02-24 06:00:05.143 146826 19639 \N \N \N 165233 2024-02-24 06:00:03.793 2024-02-24 06:00:05.15 144980 5425 \N \N \N 165234 2024-02-24 06:00:03.793 2024-02-24 06:00:05.154 144695 671 \N \N \N 165235 2024-02-24 06:00:03.793 2024-02-24 06:00:05.158 142760 19126 \N \N \N 165236 2024-02-24 06:00:03.793 2024-02-24 06:00:05.161 139365 8376 \N \N \N 165237 2024-02-24 06:00:03.793 2024-02-24 06:00:05.166 135023 706 \N \N \N 165238 2024-02-24 06:00:03.793 2024-02-24 06:00:05.169 133801 2722 \N \N \N 165239 2024-02-24 06:00:03.793 2024-02-24 06:00:05.173 132656 21164 \N \N \N 165240 2024-02-24 06:00:03.793 2024-02-24 06:00:05.177 129085 20563 \N \N \N 165241 2024-02-24 06:00:03.793 2024-02-24 06:00:05.18 124909 6003 \N \N \N 165242 2024-02-24 06:00:03.793 2024-02-24 06:00:05.184 122315 5036 \N \N \N 165243 2024-02-24 06:00:03.793 2024-02-24 06:00:05.193 121862 16424 \N \N \N 165244 2024-02-24 06:00:03.793 2024-02-24 06:00:05.198 121029 9985 \N \N \N 165245 2024-02-24 06:00:03.793 2024-02-24 06:00:05.202 114862 20433 \N \N \N 165246 2024-02-24 06:00:03.793 2024-02-24 06:00:05.208 110622 5449 \N \N \N 165247 2024-02-24 06:00:03.793 2024-02-24 06:00:05.211 109575 17106 \N \N \N 165248 2024-02-24 06:00:03.793 2024-02-24 06:00:05.215 108042 976 \N \N \N 165249 2024-02-24 06:00:03.793 2024-02-24 06:00:05.219 107254 2010 \N \N \N 165250 2024-02-24 06:00:03.793 2024-02-24 06:00:05.222 106686 13782 \N \N \N 165251 2024-02-24 06:00:03.793 2024-02-24 06:00:05.226 103451 19902 \N \N \N 165252 2024-02-24 06:00:03.793 2024-02-24 06:00:05.23 100054 20157 \N \N \N 165253 2024-02-24 06:00:03.793 2024-02-24 06:00:05.234 97795 11750 \N \N \N 165254 2024-02-24 06:00:03.793 2024-02-24 06:00:05.237 93852 895 \N \N \N 165255 2024-02-24 06:00:03.793 2024-02-24 06:00:05.241 93396 19263 \N \N \N 165256 2024-02-24 06:00:03.793 2024-02-24 06:00:05.244 93296 18040 \N \N \N 165257 2024-02-24 06:00:03.793 2024-02-24 06:00:05.248 89561 620 \N \N \N 165258 2024-02-24 06:00:03.793 2024-02-24 06:00:05.251 86668 663 \N \N \N 165259 2024-02-24 06:00:03.793 2024-02-24 06:00:05.255 86341 17696 \N \N \N 165260 2024-02-24 06:00:03.793 2024-02-24 06:00:05.259 85933 10519 \N \N \N 165261 2024-02-24 06:00:03.793 2024-02-24 06:00:05.263 83254 9349 \N \N \N 165262 2024-02-24 06:00:03.793 2024-02-24 06:00:05.269 81955 14688 \N \N \N 165263 2024-02-24 06:00:03.793 2024-02-24 06:00:05.273 79688 18124 \N \N \N 165264 2024-02-24 06:00:03.793 2024-02-24 06:00:05.277 79512 18511 \N \N \N 165265 2024-02-24 06:00:03.793 2024-02-24 06:00:05.282 77624 664 \N \N \N 165266 2024-02-24 06:00:03.793 2024-02-24 06:00:05.285 73586 940 \N \N \N 165267 2024-02-24 06:00:03.793 2024-02-24 06:00:05.29 72751 4314 \N \N \N 165268 2024-02-24 06:00:03.793 2024-02-24 06:00:05.293 70385 19289 \N \N \N 165269 2024-02-24 06:00:03.793 2024-02-24 06:00:05.297 70322 7673 \N \N \N 165270 2024-02-24 06:00:03.793 2024-02-24 06:00:05.301 68831 20715 \N \N \N 165271 2024-02-24 06:00:03.793 2024-02-24 06:00:05.306 66486 19524 \N \N \N 165272 2024-02-24 06:00:03.793 2024-02-24 06:00:05.319 65781 18995 \N \N \N 165273 2024-02-24 06:00:03.793 2024-02-24 06:00:05.339 65668 836 \N \N \N 165274 2024-02-24 06:00:03.793 2024-02-24 06:00:05.347 64587 19352 \N \N \N 165275 2024-02-24 06:00:03.793 2024-02-24 06:00:05.352 64557 19446 \N \N \N 165276 2024-02-24 06:00:03.793 2024-02-24 06:00:05.356 63842 9363 \N \N \N 165277 2024-02-24 06:00:03.793 2024-02-24 06:00:05.36 62124 17275 \N \N \N 165278 2024-02-24 06:00:03.793 2024-02-24 06:00:05.364 59976 9969 \N \N \N 165279 2024-02-24 06:00:03.793 2024-02-24 06:00:05.369 57032 997 \N \N \N 165280 2024-02-24 06:00:03.793 2024-02-24 06:00:05.372 50225 20817 \N \N \N 165281 2024-02-24 06:00:03.793 2024-02-24 06:00:05.376 46288 1618 \N \N \N 165282 2024-02-24 06:00:03.793 2024-02-24 06:00:05.379 44230 10979 \N \N \N 165283 2024-02-24 06:00:03.793 2024-02-24 06:00:05.383 43320 9356 \N \N \N 165284 2024-02-24 06:00:03.793 2024-02-24 06:00:05.386 42934 5171 \N \N \N 165285 2024-02-24 06:00:03.793 2024-02-24 06:00:05.391 41945 11760 \N \N \N 165286 2024-02-24 06:00:03.793 2024-02-24 06:00:05.395 38683 2328 \N \N \N 165287 2024-02-24 06:00:03.793 2024-02-24 06:00:05.399 38121 16284 \N \N \N 165288 2024-02-24 06:00:03.793 2024-02-24 06:00:05.403 36489 18280 \N \N \N 165289 2024-02-24 06:00:03.793 2024-02-24 06:00:05.407 36312 18635 \N \N \N 165290 2024-02-24 06:00:03.793 2024-02-24 06:00:05.411 35077 21386 \N \N \N 165291 2024-02-24 06:00:03.793 2024-02-24 06:00:05.414 25182 9921 \N \N \N 165292 2024-02-24 06:00:03.793 2024-02-24 06:00:05.418 24532 19524 \N \N \N 165293 2024-02-24 06:00:03.793 2024-02-24 06:00:05.422 24106 10060 \N \N \N 165294 2024-02-24 06:00:03.793 2024-02-24 06:00:05.425 23769 5725 \N \N \N 165295 2024-02-24 06:00:03.793 2024-02-24 06:00:05.429 21487 19142 \N \N \N 165296 2024-02-24 06:00:03.793 2024-02-24 06:00:05.435 20402 3213 \N \N \N 165297 2024-02-24 06:00:03.793 2024-02-24 06:00:05.44 16765 18877 \N \N \N 165298 2024-02-24 06:00:03.793 2024-02-24 06:00:05.447 16644 876 \N \N \N 165299 2024-02-24 06:00:03.793 2024-02-24 06:00:05.451 13754 1833 \N \N \N 165300 2024-02-24 06:00:03.793 2024-02-24 06:00:05.455 10480 2525 \N \N \N 165301 2024-02-25 06:00:03.856 2024-02-25 06:00:03.858 975891 16250 \N \N \N 165302 2024-02-25 06:00:03.856 2024-02-25 06:00:03.873 921833 9985 \N \N \N 165303 2024-02-25 06:00:03.856 2024-02-25 06:00:03.88 915469 3371 \N \N \N 165304 2024-02-25 06:00:03.856 2024-02-25 06:00:03.892 847497 2459 \N \N \N 165305 2024-02-25 06:00:03.856 2024-02-25 06:00:03.915 823304 20120 \N \N \N 165306 2024-02-25 06:00:03.856 2024-02-25 06:00:03.923 821022 16353 \N \N \N 165307 2024-02-25 06:00:03.856 2024-02-25 06:00:03.93 815577 14669 \N \N \N 165308 2024-02-25 06:00:03.856 2024-02-25 06:00:03.935 762216 19981 \N \N \N 165309 2024-02-25 06:00:03.856 2024-02-25 06:00:03.956 747086 2195 \N \N \N 165310 2024-02-25 06:00:03.856 2024-02-25 06:00:03.965 642803 20613 \N \N \N 165311 2024-02-25 06:00:03.856 2024-02-25 06:00:03.97 622395 21262 \N \N \N 165312 2024-02-25 06:00:03.856 2024-02-25 06:00:03.976 621421 21344 \N \N \N 165313 2024-02-25 06:00:03.856 2024-02-25 06:00:03.982 613332 749 \N \N \N 165314 2024-02-25 06:00:03.856 2024-02-25 06:00:03.991 577148 11430 \N \N \N 165315 2024-02-25 06:00:03.856 2024-02-25 06:00:03.999 560318 18330 \N \N \N 165316 2024-02-25 06:00:03.856 2024-02-25 06:00:04.013 560231 20624 \N \N \N 165317 2024-02-25 06:00:03.856 2024-02-25 06:00:04.02 560231 21361 \N \N \N 165318 2024-02-25 06:00:03.856 2024-02-25 06:00:04.035 560231 20970 \N \N \N 165319 2024-02-25 06:00:03.856 2024-02-25 06:00:04.067 545638 802 \N \N \N 165320 2024-02-25 06:00:03.856 2024-02-25 06:00:04.073 542803 4250 \N \N \N 165321 2024-02-25 06:00:03.856 2024-02-25 06:00:04.078 537946 15521 \N \N \N 165322 2024-02-25 06:00:03.856 2024-02-25 06:00:04.083 536872 3518 \N \N \N 165323 2024-02-25 06:00:03.856 2024-02-25 06:00:04.091 524838 679 \N \N \N 165324 2024-02-25 06:00:03.856 2024-02-25 06:00:04.097 521242 16059 \N \N \N 165325 2024-02-25 06:00:03.856 2024-02-25 06:00:04.101 520959 1105 \N \N \N 165326 2024-02-25 06:00:03.856 2024-02-25 06:00:04.122 506232 19640 \N \N \N 165327 2024-02-25 06:00:03.856 2024-02-25 06:00:04.132 502128 14774 \N \N \N 165328 2024-02-25 06:00:03.856 2024-02-25 06:00:04.144 489013 10484 \N \N \N 165329 2024-02-25 06:00:03.856 2024-02-25 06:00:04.164 482712 15094 \N \N \N 165330 2024-02-25 06:00:03.856 2024-02-25 06:00:04.182 474659 5828 \N \N \N 165331 2024-02-25 06:00:03.856 2024-02-25 06:00:04.188 473988 21575 \N \N \N 165332 2024-02-25 06:00:03.856 2024-02-25 06:00:04.194 473961 17446 \N \N \N 165333 2024-02-25 06:00:03.856 2024-02-25 06:00:04.201 468121 18220 \N \N \N 165334 2024-02-25 06:00:03.856 2024-02-25 06:00:04.217 467387 12422 \N \N \N 165335 2024-02-25 06:00:03.856 2024-02-25 06:00:04.241 455825 6533 \N \N \N 165336 2024-02-25 06:00:03.856 2024-02-25 06:00:04.256 448124 1439 \N \N \N 165337 2024-02-25 06:00:03.856 2024-02-25 06:00:04.262 447800 20599 \N \N \N 165338 2024-02-25 06:00:03.856 2024-02-25 06:00:04.269 445704 16879 \N \N \N 165339 2024-02-25 06:00:03.856 2024-02-25 06:00:04.28 441390 17030 \N \N \N 165340 2024-02-25 06:00:03.856 2024-02-25 06:00:04.285 438167 7654 \N \N \N 165341 2024-02-25 06:00:03.856 2024-02-25 06:00:04.295 434119 18769 \N \N \N 165342 2024-02-25 06:00:03.856 2024-02-25 06:00:04.3 432745 2330 \N \N \N 165343 2024-02-25 06:00:03.856 2024-02-25 06:00:04.31 432647 17455 \N \N \N 165344 2024-02-25 06:00:03.856 2024-02-25 06:00:04.322 432532 13931 \N \N \N 165345 2024-02-25 06:00:03.856 2024-02-25 06:00:04.347 432493 3686 \N \N \N 165346 2024-02-25 06:00:03.856 2024-02-25 06:00:04.356 424599 19836 \N \N \N 165347 2024-02-25 06:00:03.856 2024-02-25 06:00:04.388 422627 11164 \N \N \N 165348 2024-02-25 06:00:03.856 2024-02-25 06:00:04.399 408506 19601 \N \N \N 165349 2024-02-25 06:00:03.856 2024-02-25 06:00:04.407 407457 20904 \N \N \N 165350 2024-02-25 06:00:03.856 2024-02-25 06:00:04.411 403394 882 \N \N \N 165351 2024-02-25 06:00:03.856 2024-02-25 06:00:04.437 402972 7903 \N \N \N 165352 2024-02-25 06:00:03.856 2024-02-25 06:00:04.442 399609 2213 \N \N \N 165353 2024-02-25 06:00:03.856 2024-02-25 06:00:04.45 399609 11263 \N \N \N 165354 2024-02-25 06:00:03.856 2024-02-25 06:00:04.469 393508 10280 \N \N \N 165355 2024-02-25 06:00:03.856 2024-02-25 06:00:04.48 384912 8569 \N \N \N 165356 2024-02-25 06:00:03.856 2024-02-25 06:00:04.496 381951 11621 \N \N \N 165357 2024-02-25 06:00:03.856 2024-02-25 06:00:04.511 381951 20599 \N \N \N 165358 2024-02-25 06:00:03.856 2024-02-25 06:00:04.568 381951 18543 \N \N \N 165359 2024-02-25 06:00:03.856 2024-02-25 06:00:04.636 373708 1628 \N \N \N 165360 2024-02-25 06:00:03.856 2024-02-25 06:00:04.66 373688 20998 \N \N \N 165361 2024-02-25 06:00:03.856 2024-02-25 06:00:04.68 373634 6749 \N \N \N 165362 2024-02-25 06:00:03.856 2024-02-25 06:00:04.689 373598 17800 \N \N \N 165363 2024-02-25 06:00:03.856 2024-02-25 06:00:04.703 373508 14169 \N \N \N 165364 2024-02-25 06:00:03.856 2024-02-25 06:00:04.708 373508 660 \N \N \N 165365 2024-02-25 06:00:03.856 2024-02-25 06:00:04.712 373487 16350 \N \N \N 165366 2024-02-25 06:00:03.856 2024-02-25 06:00:04.726 373487 11515 \N \N \N 165367 2024-02-25 06:00:03.856 2024-02-25 06:00:04.732 373487 4166 \N \N \N 165368 2024-02-25 06:00:03.856 2024-02-25 06:00:04.739 373487 17184 \N \N \N 165369 2024-02-25 06:00:03.856 2024-02-25 06:00:04.75 373487 20062 \N \N \N 165370 2024-02-25 06:00:03.856 2024-02-25 06:00:04.757 373487 618 \N \N \N 165371 2024-02-25 06:00:03.856 2024-02-25 06:00:04.772 373487 18016 \N \N \N 165372 2024-02-25 06:00:03.856 2024-02-25 06:00:04.79 373487 19282 \N \N \N 165373 2024-02-25 06:00:03.856 2024-02-25 06:00:04.855 373487 1426 \N \N \N 165374 2024-02-25 06:00:03.856 2024-02-25 06:00:04.897 373487 21532 \N \N \N 165375 2024-02-25 06:00:03.856 2024-02-25 06:00:04.904 373487 1890 \N \N \N 165376 2024-02-25 06:00:03.856 2024-02-25 06:00:04.926 373487 18449 \N \N \N 165377 2024-02-25 06:00:03.856 2024-02-25 06:00:04.935 373487 13177 \N \N \N 165378 2024-02-25 06:00:03.856 2024-02-25 06:00:04.945 373487 9496 \N \N \N 165379 2024-02-25 06:00:03.856 2024-02-25 06:00:04.954 373487 985 \N \N \N 165380 2024-02-25 06:00:03.856 2024-02-25 06:00:04.961 373487 20062 \N \N \N 165381 2024-02-25 06:00:03.856 2024-02-25 06:00:04.966 373487 16341 \N \N \N 165382 2024-02-25 06:00:03.856 2024-02-25 06:00:04.97 373487 19735 \N \N \N 165383 2024-02-25 06:00:03.856 2024-02-25 06:00:04.989 373487 9450 \N \N \N 165384 2024-02-25 06:00:03.856 2024-02-25 06:00:05.001 373487 16706 \N \N \N 165385 2024-02-25 06:00:03.856 2024-02-25 06:00:05.015 373487 704 \N \N \N 165386 2024-02-25 06:00:03.856 2024-02-25 06:00:05.053 373487 16357 \N \N \N 165387 2024-02-25 06:00:03.856 2024-02-25 06:00:05.059 364363 19037 \N \N \N 165388 2024-02-25 06:00:03.856 2024-02-25 06:00:05.064 352293 18017 \N \N \N 165389 2024-02-25 06:00:03.856 2024-02-25 06:00:05.068 352293 4831 \N \N \N 165390 2024-02-25 06:00:03.856 2024-02-25 06:00:05.073 352290 2514 \N \N \N 165391 2024-02-25 06:00:03.856 2024-02-25 06:00:05.08 352290 21430 \N \N \N 165392 2024-02-25 06:00:03.856 2024-02-25 06:00:05.094 352290 18264 \N \N \N 165393 2024-02-25 06:00:03.856 2024-02-25 06:00:05.099 352290 21521 \N \N \N 165394 2024-02-25 06:00:03.856 2024-02-25 06:00:05.11 352290 21339 \N \N \N 165395 2024-02-25 06:00:03.856 2024-02-25 06:00:05.115 346847 18836 \N \N \N 165396 2024-02-25 06:00:03.856 2024-02-25 06:00:05.137 345019 15858 \N \N \N 165397 2024-02-25 06:00:03.856 2024-02-25 06:00:05.143 343545 2437 \N \N \N 165398 2024-02-25 06:00:03.856 2024-02-25 06:00:05.149 343484 17682 \N \N \N 165399 2024-02-25 06:00:03.856 2024-02-25 06:00:05.153 343461 19581 \N \N \N 165400 2024-02-25 06:00:03.856 2024-02-25 06:00:05.163 343461 20370 \N \N \N 165401 2024-02-25 06:00:03.856 2024-02-25 06:00:05.167 343461 4973 \N \N \N 165402 2024-02-25 06:00:03.856 2024-02-25 06:00:05.177 343461 13759 \N \N \N 165403 2024-02-25 06:00:03.856 2024-02-25 06:00:05.187 343460 1534 \N \N \N 165404 2024-02-25 06:00:03.856 2024-02-25 06:00:05.205 343433 8074 \N \N \N 165405 2024-02-25 06:00:03.856 2024-02-25 06:00:05.214 343412 21214 \N \N \N 165406 2024-02-25 06:00:03.856 2024-02-25 06:00:05.225 343394 18667 \N \N \N 165407 2024-02-25 06:00:03.856 2024-02-25 06:00:05.239 343394 8269 \N \N \N 165408 2024-02-25 06:00:03.856 2024-02-25 06:00:05.247 343394 4118 \N \N \N 165409 2024-02-25 06:00:03.856 2024-02-25 06:00:05.257 343394 5308 \N \N \N 165410 2024-02-25 06:00:03.856 2024-02-25 06:00:05.262 343394 3683 \N \N \N 165411 2024-02-25 06:00:03.856 2024-02-25 06:00:05.275 343394 19320 \N \N \N 165412 2024-02-25 06:00:03.856 2024-02-25 06:00:05.283 343394 2098 \N \N \N 165413 2024-02-25 06:00:03.856 2024-02-25 06:00:05.293 343394 17157 \N \N \N 165414 2024-02-25 06:00:03.856 2024-02-25 06:00:05.3 343394 17838 \N \N \N 165415 2024-02-25 06:00:03.856 2024-02-25 06:00:05.309 343394 658 \N \N \N 165416 2024-02-25 06:00:03.856 2024-02-25 06:00:05.32 342745 20993 \N \N \N 165417 2024-02-25 06:00:03.856 2024-02-25 06:00:05.324 342737 3990 \N \N \N 165418 2024-02-25 06:00:03.856 2024-02-25 06:00:05.328 342094 738 \N \N \N 165419 2024-02-25 06:00:03.856 2024-02-25 06:00:05.333 318901 3392 \N \N \N 165420 2024-02-25 06:00:03.856 2024-02-25 06:00:05.338 311762 6471 \N \N \N 165421 2024-02-25 06:00:03.856 2024-02-25 06:00:05.342 301840 21021 \N \N \N 165422 2024-02-25 06:00:03.856 2024-02-25 06:00:05.35 275741 18072 \N \N \N 165423 2024-02-25 06:00:03.856 2024-02-25 06:00:05.358 274879 20143 \N \N \N 165424 2024-02-25 06:00:03.856 2024-02-25 06:00:05.363 269038 1141 \N \N \N 165425 2024-02-25 06:00:03.856 2024-02-25 06:00:05.39 261056 19570 \N \N \N 165426 2024-02-25 06:00:03.856 2024-02-25 06:00:05.397 261056 18658 \N \N \N 165427 2024-02-25 06:00:03.856 2024-02-25 06:00:05.403 261056 21585 \N \N \N 165428 2024-02-25 06:00:03.856 2024-02-25 06:00:05.415 255559 14258 \N \N \N 165429 2024-02-25 06:00:03.856 2024-02-25 06:00:05.419 254294 21136 \N \N \N 165430 2024-02-25 06:00:03.856 2024-02-25 06:00:05.425 254294 21047 \N \N \N 165431 2024-02-25 06:00:03.856 2024-02-25 06:00:05.429 252084 17446 \N \N \N 165432 2024-02-25 06:00:03.856 2024-02-25 06:00:05.437 249653 814 \N \N \N 165433 2024-02-25 06:00:03.856 2024-02-25 06:00:05.442 242620 9177 \N \N \N 165434 2024-02-25 06:00:03.856 2024-02-25 06:00:05.447 223528 15100 \N \N \N 165435 2024-02-25 06:00:03.856 2024-02-25 06:00:05.463 220298 16816 \N \N \N 165436 2024-02-25 06:00:03.856 2024-02-25 06:00:05.467 214312 928 \N \N \N 165437 2024-02-25 06:00:03.856 2024-02-25 06:00:05.481 201662 21627 \N \N \N 165438 2024-02-25 06:00:03.856 2024-02-25 06:00:05.486 201662 659 \N \N \N 165439 2024-02-25 06:00:03.856 2024-02-25 06:00:05.49 199788 16542 \N \N \N 165440 2024-02-25 06:00:03.856 2024-02-25 06:00:05.517 199788 2789 \N \N \N 165441 2024-02-25 06:00:03.856 2024-02-25 06:00:05.524 199788 2326 \N \N \N 165442 2024-02-25 06:00:03.856 2024-02-25 06:00:05.535 197768 18470 \N \N \N 165443 2024-02-25 06:00:03.856 2024-02-25 06:00:05.543 192424 20299 \N \N \N 165444 2024-02-25 06:00:03.856 2024-02-25 06:00:05.548 186883 19910 \N \N \N 165445 2024-02-25 06:00:03.856 2024-02-25 06:00:05.555 186841 690 \N \N \N 165446 2024-02-25 06:00:03.856 2024-02-25 06:00:05.565 186831 19863 \N \N \N 165447 2024-02-25 06:00:03.856 2024-02-25 06:00:05.569 186810 2327 \N \N \N 165448 2024-02-25 06:00:03.856 2024-02-25 06:00:05.573 186810 13763 \N \N \N 165449 2024-02-25 06:00:03.856 2024-02-25 06:00:05.581 186810 651 \N \N \N 165450 2024-02-25 06:00:03.856 2024-02-25 06:00:05.586 186770 20551 \N \N \N 165451 2024-02-25 06:00:03.856 2024-02-25 06:00:05.59 186743 21391 \N \N \N 165452 2024-02-25 06:00:03.856 2024-02-25 06:00:05.594 186743 19471 \N \N \N 165453 2024-02-25 06:00:03.856 2024-02-25 06:00:05.598 186743 6360 \N \N \N 165454 2024-02-25 06:00:03.856 2024-02-25 06:00:05.603 186743 3377 \N \N \N 165455 2024-02-25 06:00:03.856 2024-02-25 06:00:05.617 186743 8726 \N \N \N 165456 2024-02-25 06:00:03.856 2024-02-25 06:00:05.621 186743 6526 \N \N \N 165457 2024-02-25 06:00:03.856 2024-02-25 06:00:05.629 186743 20157 \N \N \N 165458 2024-02-25 06:00:03.856 2024-02-25 06:00:05.64 186743 10063 \N \N \N 165459 2024-02-25 06:00:03.856 2024-02-25 06:00:05.654 185305 15510 \N \N \N 165460 2024-02-25 06:00:03.856 2024-02-25 06:00:05.665 182867 2010 \N \N \N 165461 2024-02-25 06:00:03.856 2024-02-25 06:00:05.676 177795 5069 \N \N \N 165462 2024-02-25 06:00:03.856 2024-02-25 06:00:05.683 175540 12965 \N \N \N 165463 2024-02-25 06:00:03.856 2024-02-25 06:00:05.692 169128 10283 \N \N \N 165464 2024-02-25 06:00:03.856 2024-02-25 06:00:05.717 165211 21427 \N \N \N 165465 2024-02-25 06:00:03.856 2024-02-25 06:00:05.723 156004 21329 \N \N \N 165466 2024-02-25 06:00:03.856 2024-02-25 06:00:05.728 155993 17237 \N \N \N 165467 2024-02-25 06:00:03.856 2024-02-25 06:00:05.734 155993 14905 \N \N \N 165468 2024-02-25 06:00:03.856 2024-02-25 06:00:05.743 155924 659 \N \N \N 165469 2024-02-25 06:00:03.856 2024-02-25 06:00:05.747 154526 680 \N \N \N 165470 2024-02-25 06:00:03.856 2024-02-25 06:00:05.752 154059 900 \N \N \N 165471 2024-02-25 06:00:03.856 2024-02-25 06:00:05.76 154059 21577 \N \N \N 165472 2024-02-25 06:00:03.856 2024-02-25 06:00:05.765 154008 18717 \N \N \N 165473 2024-02-25 06:00:03.856 2024-02-25 06:00:05.774 153976 12222 \N \N \N 165474 2024-02-25 06:00:03.856 2024-02-25 06:00:05.782 153965 15491 \N \N \N 165475 2024-02-25 06:00:03.856 2024-02-25 06:00:05.791 153941 20776 \N \N \N 165476 2024-02-25 06:00:03.856 2024-02-25 06:00:05.797 153941 13517 \N \N \N 165477 2024-02-25 06:00:03.856 2024-02-25 06:00:05.803 153941 3506 \N \N \N 165478 2024-02-25 06:00:03.856 2024-02-25 06:00:05.807 153941 18392 \N \N \N 165479 2024-02-25 06:00:03.856 2024-02-25 06:00:05.812 153941 13921 \N \N \N 165480 2024-02-25 06:00:03.856 2024-02-25 06:00:05.817 153941 18426 \N \N \N 165481 2024-02-25 06:00:03.856 2024-02-25 06:00:05.827 153941 7425 \N \N \N 165482 2024-02-25 06:00:03.856 2024-02-25 06:00:05.84 153941 2776 \N \N \N 165483 2024-02-25 06:00:03.856 2024-02-25 06:00:05.846 153941 7877 \N \N \N 165484 2024-02-25 06:00:03.856 2024-02-25 06:00:05.851 153941 1803 \N \N \N 165485 2024-02-25 06:00:03.856 2024-02-25 06:00:05.855 153941 11164 \N \N \N 165486 2024-02-25 06:00:03.856 2024-02-25 06:00:05.862 153941 7766 \N \N \N 165487 2024-02-25 06:00:03.856 2024-02-25 06:00:05.869 153941 18101 \N \N \N 165488 2024-02-25 06:00:03.856 2024-02-25 06:00:05.875 153941 20163 \N \N \N 165489 2024-02-25 06:00:03.856 2024-02-25 06:00:05.879 153941 11829 \N \N \N 165490 2024-02-25 06:00:03.856 2024-02-25 06:00:05.891 153941 1003 \N \N \N 165491 2024-02-25 06:00:03.856 2024-02-25 06:00:05.905 153941 16594 \N \N \N 165492 2024-02-25 06:00:03.856 2024-02-25 06:00:05.912 153941 827 \N \N \N 165493 2024-02-25 06:00:03.856 2024-02-25 06:00:05.919 153941 20058 \N \N \N 165494 2024-02-25 06:00:03.856 2024-02-25 06:00:05.929 153941 21026 \N \N \N 165495 2024-02-25 06:00:03.856 2024-02-25 06:00:05.933 153206 15624 \N \N \N 165496 2024-02-25 06:00:03.856 2024-02-25 06:00:05.939 152923 1817 \N \N \N 165497 2024-02-25 06:00:03.856 2024-02-25 06:00:05.943 150986 16214 \N \N \N 165498 2024-02-25 06:00:03.856 2024-02-25 06:00:05.948 150986 9354 \N \N \N 165499 2024-02-25 06:00:03.856 2024-02-25 06:00:05.966 150919 2213 \N \N \N 165500 2024-02-25 06:00:03.856 2024-02-25 06:00:05.972 150919 4831 \N \N \N 165501 2024-02-25 06:00:03.856 2024-02-25 06:00:05.986 149785 11395 \N \N \N 165502 2024-02-25 06:00:03.856 2024-02-25 06:00:05.99 147597 15160 \N \N \N 165503 2024-02-25 06:00:03.856 2024-02-25 06:00:06.002 147597 16347 \N \N \N 165504 2024-02-25 06:00:03.856 2024-02-25 06:00:06.016 139994 3347 \N \N \N 165505 2024-02-25 06:00:03.856 2024-02-25 06:00:06.02 139775 19322 \N \N \N 165506 2024-02-25 06:00:03.856 2024-02-25 06:00:06.027 137915 10849 \N \N \N 165507 2024-02-25 06:00:03.856 2024-02-25 06:00:06.033 137293 2111 \N \N \N 165508 2024-02-25 06:00:03.856 2024-02-25 06:00:06.056 136134 4167 \N \N \N 165509 2024-02-25 06:00:03.856 2024-02-25 06:00:06.117 134399 1519 \N \N \N 165510 2024-02-25 06:00:03.856 2024-02-25 06:00:06.148 130648 11714 \N \N \N 165511 2024-02-25 06:00:03.856 2024-02-25 06:00:06.204 130511 5757 \N \N \N 165512 2024-02-25 06:00:03.856 2024-02-25 06:00:06.244 129648 17517 \N \N \N 165513 2024-02-25 06:00:03.856 2024-02-25 06:00:06.281 128952 18423 \N \N \N 165514 2024-02-25 06:00:03.856 2024-02-25 06:00:06.319 124134 19281 \N \N \N 165515 2024-02-25 06:00:03.856 2024-02-25 06:00:06.353 122287 18051 \N \N \N 165516 2024-02-25 06:00:03.856 2024-02-25 06:00:06.396 119930 9352 \N \N \N 165517 2024-02-25 06:00:03.856 2024-02-25 06:00:06.404 119423 21329 \N \N \N 165518 2024-02-25 06:00:03.856 2024-02-25 06:00:06.411 115536 2213 \N \N \N 165519 2024-02-25 06:00:03.856 2024-02-25 06:00:06.415 115186 13753 \N \N \N 165520 2024-02-25 06:00:03.856 2024-02-25 06:00:06.42 115096 20858 \N \N \N 165521 2024-02-25 06:00:03.856 2024-02-25 06:00:06.429 115096 6594 \N \N \N 165522 2024-02-25 06:00:03.856 2024-02-25 06:00:06.435 115096 5173 \N \N \N 165523 2024-02-25 06:00:03.856 2024-02-25 06:00:06.442 115096 624 \N \N \N 165524 2024-02-25 06:00:03.856 2024-02-25 06:00:06.447 115096 9421 \N \N \N 165525 2024-02-25 06:00:03.856 2024-02-25 06:00:06.453 114665 12779 \N \N \N 165526 2024-02-25 06:00:03.856 2024-02-25 06:00:06.458 114658 7395 \N \N \N 165527 2024-02-25 06:00:03.856 2024-02-25 06:00:06.465 113724 16638 \N \N \N 165528 2024-02-25 06:00:03.856 2024-02-25 06:00:06.479 113724 13622 \N \N \N 165529 2024-02-25 06:00:03.856 2024-02-25 06:00:06.487 111942 20680 \N \N \N 165530 2024-02-25 06:00:03.856 2024-02-25 06:00:06.492 111860 19531 \N \N \N 165531 2024-02-25 06:00:03.856 2024-02-25 06:00:06.499 111516 19911 \N \N \N 165532 2024-02-25 06:00:03.856 2024-02-25 06:00:06.507 3774501 896 \N \N \N 165533 2024-02-25 06:00:03.856 2024-02-25 06:00:06.514 3055473 4538 \N \N \N 165534 2024-02-25 06:00:03.856 2024-02-25 06:00:06.521 2635289 1552 \N \N \N 165535 2024-02-25 06:00:03.856 2024-02-25 06:00:06.54 2332127 2525 \N \N \N 165536 2024-02-25 06:00:03.856 2024-02-25 06:00:06.553 2285369 5359 \N \N \N 165537 2024-02-25 06:00:03.856 2024-02-25 06:00:06.559 2260454 17513 \N \N \N 165538 2024-02-25 06:00:03.856 2024-02-25 06:00:06.563 2029688 21398 \N \N \N 165539 2024-02-25 06:00:03.856 2024-02-25 06:00:06.567 2014253 20495 \N \N \N 165540 2024-02-25 06:00:03.856 2024-02-25 06:00:06.58 1952216 16336 \N \N \N 165541 2024-02-25 06:00:03.856 2024-02-25 06:00:06.586 1845906 9494 \N \N \N 165542 2024-02-25 06:00:03.856 2024-02-25 06:00:06.591 1839389 15273 \N \N \N 165543 2024-02-25 06:00:03.856 2024-02-25 06:00:06.599 1760919 16052 \N \N \N 165544 2024-02-25 06:00:03.856 2024-02-25 06:00:06.602 1754246 15521 \N \N \N 165545 2024-02-25 06:00:03.856 2024-02-25 06:00:06.606 1667951 15843 \N \N \N 165546 2024-02-25 06:00:03.856 2024-02-25 06:00:06.612 1562875 17976 \N \N \N 165547 2024-02-25 06:00:03.856 2024-02-25 06:00:06.615 1541516 20891 \N \N \N 165548 2024-02-25 06:00:03.856 2024-02-25 06:00:06.62 1477612 18368 \N \N \N 165549 2024-02-25 06:00:03.856 2024-02-25 06:00:06.623 1414236 8535 \N \N \N 165550 2024-02-25 06:00:03.856 2024-02-25 06:00:06.629 1326272 19329 \N \N \N 165551 2024-02-25 06:00:03.856 2024-02-25 06:00:06.631 1269642 19967 \N \N \N 165552 2024-02-25 06:00:03.856 2024-02-25 06:00:06.635 1088003 4079 \N \N \N 165553 2024-02-25 06:00:03.856 2024-02-25 06:00:06.637 1077150 19235 \N \N \N 165554 2024-02-25 06:00:03.856 2024-02-25 06:00:06.641 1703806 18262 \N \N \N 165555 2024-02-25 06:00:03.856 2024-02-25 06:00:06.645 1008699 2437 \N \N \N 165556 2024-02-25 06:00:03.856 2024-02-25 06:00:06.651 981058 1105 \N \N \N 165557 2024-02-25 06:00:03.856 2024-02-25 06:00:06.653 962959 4802 \N \N \N 165558 2024-02-25 06:00:03.856 2024-02-25 06:00:06.659 956697 20871 \N \N \N 165559 2024-02-25 06:00:03.856 2024-02-25 06:00:06.663 930944 11417 \N \N \N 165560 2024-02-25 06:00:03.856 2024-02-25 06:00:06.668 910278 11515 \N \N \N 165561 2024-02-25 06:00:03.856 2024-02-25 06:00:06.67 889151 9427 \N \N \N 165562 2024-02-25 06:00:03.856 2024-02-25 06:00:06.673 854044 20619 \N \N \N 165563 2024-02-25 06:00:03.856 2024-02-25 06:00:06.679 796604 2529 \N \N \N 165564 2024-02-25 06:00:03.856 2024-02-25 06:00:06.682 789492 992 \N \N \N 165565 2024-02-25 06:00:03.856 2024-02-25 06:00:06.686 787055 699 \N \N \N 165566 2024-02-25 06:00:03.856 2024-02-25 06:00:06.689 784644 9184 \N \N \N 165567 2024-02-25 06:00:03.856 2024-02-25 06:00:06.692 770040 635 \N \N \N 165568 2024-02-25 06:00:03.856 2024-02-25 06:00:06.694 752783 20267 \N \N \N 165569 2024-02-25 06:00:03.856 2024-02-25 06:00:06.697 741188 2735 \N \N \N 165570 2024-02-25 06:00:03.856 2024-02-25 06:00:06.701 715145 18473 \N \N \N 165571 2024-02-25 06:00:03.856 2024-02-25 06:00:06.705 710519 8505 \N \N \N 165572 2024-02-25 06:00:03.856 2024-02-25 06:00:06.708 707002 13406 \N \N \N 165573 2024-02-25 06:00:03.856 2024-02-25 06:00:06.712 704073 19839 \N \N \N 165574 2024-02-25 06:00:03.856 2024-02-25 06:00:06.726 689072 4259 \N \N \N 165575 2024-02-25 06:00:03.856 2024-02-25 06:00:06.73 657579 20187 \N \N \N 165576 2024-02-25 06:00:03.856 2024-02-25 06:00:06.737 638940 19668 \N \N \N 165577 2024-02-25 06:00:03.856 2024-02-25 06:00:06.741 638155 19553 \N \N \N 165578 2024-02-25 06:00:03.856 2024-02-25 06:00:06.744 624080 699 \N \N \N 165579 2024-02-25 06:00:03.856 2024-02-25 06:00:06.749 623094 19044 \N \N \N 165580 2024-02-25 06:00:03.856 2024-02-25 06:00:06.752 612557 1729 \N \N \N 165581 2024-02-25 06:00:03.856 2024-02-25 06:00:06.754 611693 10693 \N \N \N 165582 2024-02-25 06:00:03.856 2024-02-25 06:00:06.758 609634 701 \N \N \N 165583 2024-02-25 06:00:03.856 2024-02-25 06:00:06.765 584754 20062 \N \N \N 165584 2024-02-25 06:00:03.856 2024-02-25 06:00:06.77 574658 13544 \N \N \N 165585 2024-02-25 06:00:03.856 2024-02-25 06:00:06.773 504676 20080 \N \N \N 165586 2024-02-25 06:00:03.856 2024-02-25 06:00:06.776 459040 5761 \N \N \N 165587 2024-02-25 06:00:03.856 2024-02-25 06:00:06.781 449647 5195 \N \N \N 165588 2024-02-25 06:00:03.856 2024-02-25 06:00:06.804 441271 2293 \N \N \N 165589 2024-02-25 06:00:03.856 2024-02-25 06:00:06.81 431728 19500 \N \N \N 165590 2024-02-25 06:00:03.856 2024-02-25 06:00:06.813 431635 5725 \N \N \N 165591 2024-02-25 06:00:03.856 2024-02-25 06:00:06.817 431506 3456 \N \N \N 165592 2024-02-25 06:00:03.856 2024-02-25 06:00:06.821 431482 8360 \N \N \N 165593 2024-02-25 06:00:03.856 2024-02-25 06:00:06.825 431449 706 \N \N \N 165594 2024-02-25 06:00:03.856 2024-02-25 06:00:06.829 431370 18306 \N \N \N 165595 2024-02-25 06:00:03.856 2024-02-25 06:00:06.833 427140 9843 \N \N \N 165596 2024-02-25 06:00:03.856 2024-02-25 06:00:06.836 396212 20117 \N \N \N 165597 2024-02-25 06:00:03.856 2024-02-25 06:00:06.839 395854 20781 \N \N \N 165598 2024-02-26 06:00:05.115 2024-02-26 06:00:05.117 21900169 12721 \N \N \N 165599 2024-02-26 06:00:05.115 2024-02-26 06:00:05.127 3593709 678 \N \N \N 165600 2024-02-26 06:00:05.115 2024-02-26 06:00:05.13 2914202 6393 \N \N \N 165601 2024-02-26 06:00:05.115 2024-02-26 06:00:05.134 2782419 14791 \N \N \N 165602 2024-02-26 06:00:05.115 2024-02-26 06:00:05.137 2299219 9363 \N \N \N 165603 2024-02-26 06:00:05.115 2024-02-26 06:00:05.142 2112548 12278 \N \N \N 165604 2024-02-26 06:00:05.115 2024-02-26 06:00:05.145 1889906 12930 \N \N \N 165605 2024-02-26 06:00:05.115 2024-02-26 06:00:05.148 1809286 797 \N \N \N 165606 2024-02-26 06:00:05.115 2024-02-26 06:00:05.15 1715793 16250 \N \N \N 165607 2024-02-26 06:00:05.115 2024-02-26 06:00:05.153 1671849 19322 \N \N \N 165608 2024-02-26 06:00:05.115 2024-02-26 06:00:05.157 1501833 20546 \N \N \N 165609 2024-02-26 06:00:05.115 2024-02-26 06:00:05.16 1245230 11144 \N \N \N 165610 2024-02-26 06:00:05.115 2024-02-26 06:00:05.164 1143545 11590 \N \N \N 165611 2024-02-26 06:00:05.115 2024-02-26 06:00:05.168 1067084 4035 \N \N \N 165612 2024-02-26 06:00:05.115 2024-02-26 06:00:05.171 1054201 5195 \N \N \N 165613 2024-02-26 06:00:05.115 2024-02-26 06:00:05.176 953546 697 \N \N \N 165614 2024-02-26 06:00:05.115 2024-02-26 06:00:05.178 896633 10519 \N \N \N 165615 2024-02-26 06:00:05.115 2024-02-26 06:00:05.181 892090 18736 \N \N \N 165616 2024-02-26 06:00:05.115 2024-02-26 06:00:05.184 846512 18040 \N \N \N 165617 2024-02-26 06:00:05.115 2024-02-26 06:00:05.187 731160 19980 \N \N \N 165618 2024-02-26 06:00:05.115 2024-02-26 06:00:05.191 729715 16432 \N \N \N 165619 2024-02-26 06:00:05.115 2024-02-26 06:00:05.195 702388 21599 \N \N \N 165620 2024-02-26 06:00:05.115 2024-02-26 06:00:05.2 696983 20511 \N \N \N 165621 2024-02-26 06:00:05.115 2024-02-26 06:00:05.203 668501 9863 \N \N \N 165622 2024-02-26 06:00:05.115 2024-02-26 06:00:05.205 603546 18392 \N \N \N 165623 2024-02-26 06:00:05.115 2024-02-26 06:00:05.208 545390 20108 \N \N \N 165624 2024-02-26 06:00:05.115 2024-02-26 06:00:05.21 540201 21555 \N \N \N 165625 2024-02-26 06:00:05.115 2024-02-26 06:00:05.212 508873 20062 \N \N \N 165626 2024-02-26 06:00:05.115 2024-02-26 06:00:05.215 499366 21344 \N \N \N 165627 2024-02-26 06:00:05.115 2024-02-26 06:00:05.218 463680 19016 \N \N \N 165628 2024-02-26 06:00:05.115 2024-02-26 06:00:05.223 438503 12265 \N \N \N 165629 2024-02-26 06:00:05.115 2024-02-26 06:00:05.226 432597 656 \N \N \N 165630 2024-02-26 06:00:05.115 2024-02-26 06:00:05.228 420842 5746 \N \N \N 165631 2024-02-26 06:00:05.115 2024-02-26 06:00:05.231 355884 2402 \N \N \N 165632 2024-02-26 06:00:05.115 2024-02-26 06:00:05.234 354273 21139 \N \N \N 165633 2024-02-26 06:00:05.115 2024-02-26 06:00:05.237 345301 5961 \N \N \N 165634 2024-02-26 06:00:05.115 2024-02-26 06:00:05.24 283330 10771 \N \N \N 165635 2024-02-26 06:00:05.115 2024-02-26 06:00:05.244 275440 20133 \N \N \N 165636 2024-02-26 06:00:05.115 2024-02-26 06:00:05.247 273548 16753 \N \N \N 165637 2024-02-26 06:00:05.115 2024-02-26 06:00:05.249 268297 21164 \N \N \N 165638 2024-02-26 06:00:05.115 2024-02-26 06:00:05.252 262760 18180 \N \N \N 165639 2024-02-26 06:00:05.115 2024-02-26 06:00:05.255 258048 4173 \N \N \N 165640 2024-02-26 06:00:05.115 2024-02-26 06:00:05.258 257717 21387 \N \N \N 165641 2024-02-26 06:00:05.115 2024-02-26 06:00:05.263 255105 1505 \N \N \N 165642 2024-02-26 06:00:05.115 2024-02-26 06:00:05.265 244901 19096 \N \N \N 165643 2024-02-26 06:00:05.115 2024-02-26 06:00:05.267 243355 19773 \N \N \N 165644 2024-02-26 06:00:05.115 2024-02-26 06:00:05.27 223844 5069 \N \N \N 165645 2024-02-26 06:00:05.115 2024-02-26 06:00:05.272 222855 18865 \N \N \N 165646 2024-02-26 06:00:05.115 2024-02-26 06:00:05.275 212774 1960 \N \N \N 165647 2024-02-26 06:00:05.115 2024-02-26 06:00:05.278 204967 2088 \N \N \N 165648 2024-02-26 06:00:05.115 2024-02-26 06:00:05.282 200723 649 \N \N \N 165649 2024-02-26 06:00:05.115 2024-02-26 06:00:05.286 199839 17570 \N \N \N 165650 2024-02-26 06:00:05.115 2024-02-26 06:00:05.289 190674 20198 \N \N \N 165651 2024-02-26 06:00:05.115 2024-02-26 06:00:05.297 189962 20023 \N \N \N 165652 2024-02-26 06:00:05.115 2024-02-26 06:00:05.303 185059 19689 \N \N \N 165653 2024-02-26 06:00:05.115 2024-02-26 06:00:05.309 179428 9843 \N \N \N 165654 2024-02-26 06:00:05.115 2024-02-26 06:00:05.326 179375 20539 \N \N \N 165655 2024-02-26 06:00:05.115 2024-02-26 06:00:05.328 176403 3377 \N \N \N 165656 2024-02-26 06:00:05.115 2024-02-26 06:00:05.332 175047 5487 \N \N \N 165657 2024-02-26 06:00:05.115 2024-02-26 06:00:05.335 169604 14404 \N \N \N 165658 2024-02-26 06:00:05.115 2024-02-26 06:00:05.337 167813 6499 \N \N \N 165659 2024-02-26 06:00:05.115 2024-02-26 06:00:05.339 166580 1751 \N \N \N 165660 2024-02-26 06:00:05.115 2024-02-26 06:00:05.342 149085 16341 \N \N \N 165661 2024-02-26 06:00:05.115 2024-02-26 06:00:05.345 141945 19153 \N \N \N 165662 2024-02-26 06:00:05.115 2024-02-26 06:00:05.35 141217 20623 \N \N \N 165663 2024-02-26 06:00:05.115 2024-02-26 06:00:05.353 139006 9349 \N \N \N 165664 2024-02-26 06:00:05.115 2024-02-26 06:00:05.356 127700 12160 \N \N \N 165665 2024-02-26 06:00:05.115 2024-02-26 06:00:05.361 119917 17552 \N \N \N 165666 2024-02-26 06:00:05.115 2024-02-26 06:00:05.368 118935 16956 \N \N \N 165667 2024-02-26 06:00:05.115 2024-02-26 06:00:05.373 112712 666 \N \N \N 165668 2024-02-26 06:00:05.115 2024-02-26 06:00:05.378 98026 19911 \N \N \N 165669 2024-02-26 06:00:05.115 2024-02-26 06:00:05.381 93649 19147 \N \N \N 165670 2024-02-26 06:00:05.115 2024-02-26 06:00:05.384 91335 12976 \N \N \N 165671 2024-02-26 06:00:05.115 2024-02-26 06:00:05.386 79297 14255 \N \N \N 165672 2024-02-26 06:00:05.115 2024-02-26 06:00:05.389 75626 16309 \N \N \N 165673 2024-02-26 06:00:05.115 2024-02-26 06:00:05.391 73956 1505 \N \N \N 165674 2024-02-26 06:00:05.115 2024-02-26 06:00:05.395 71205 17331 \N \N \N 165675 2024-02-26 06:00:05.115 2024-02-26 06:00:05.397 68183 15484 \N \N \N 165676 2024-02-26 06:00:05.115 2024-02-26 06:00:05.4 66886 17227 \N \N \N 165677 2024-02-26 06:00:05.115 2024-02-26 06:00:05.403 65914 9551 \N \N \N 165678 2024-02-26 06:00:05.115 2024-02-26 06:00:05.406 65474 21139 \N \N \N 165679 2024-02-26 06:00:05.115 2024-02-26 06:00:05.409 61242 20710 \N \N \N 165680 2024-02-26 06:00:05.115 2024-02-26 06:00:05.412 51839 1471 \N \N \N 165681 2024-02-26 06:00:05.115 2024-02-26 06:00:05.415 46125 18932 \N \N \N 165682 2024-02-26 06:00:05.115 2024-02-26 06:00:05.418 42222 687 \N \N \N 165683 2024-02-26 06:00:05.115 2024-02-26 06:00:05.421 28450 2609 \N \N \N 165684 2024-02-26 06:00:05.115 2024-02-26 06:00:05.423 27710 13327 \N \N \N 165685 2024-02-26 06:00:05.115 2024-02-26 06:00:05.426 22334 10934 \N \N \N 165686 2024-02-26 06:00:05.115 2024-02-26 06:00:05.429 19651 18243 \N \N \N 165687 2024-02-26 06:00:05.115 2024-02-26 06:00:05.432 12185758 19151 \N \N \N 165688 2024-02-26 06:00:05.115 2024-02-26 06:00:05.434 5702943 19911 \N \N \N 165689 2024-02-26 06:00:05.115 2024-02-26 06:00:05.437 4865327 1784 \N \N \N 165690 2024-02-26 06:00:05.115 2024-02-26 06:00:05.439 2183513 5495 \N \N \N 165691 2024-02-26 06:00:05.115 2024-02-26 06:00:05.441 2005375 16638 \N \N \N 165692 2024-02-26 06:00:05.115 2024-02-26 06:00:05.444 1992631 20182 \N \N \N 165693 2024-02-26 06:00:05.115 2024-02-26 06:00:05.448 1714948 15925 \N \N \N 165694 2024-02-26 06:00:05.115 2024-02-26 06:00:05.45 1657674 19103 \N \N \N 165695 2024-02-26 06:00:05.115 2024-02-26 06:00:05.452 1326315 14705 \N \N \N 165696 2024-02-26 06:00:05.115 2024-02-26 06:00:05.457 1204852 18262 \N \N \N 165697 2024-02-26 06:00:05.115 2024-02-26 06:00:05.459 1066048 21275 \N \N \N 165698 2024-02-26 06:00:05.115 2024-02-26 06:00:05.461 1063935 20205 \N \N \N 165699 2024-02-26 06:00:05.115 2024-02-26 06:00:05.463 1060132 16406 \N \N \N 165700 2024-02-26 06:00:05.115 2024-02-26 06:00:05.465 1043312 994 \N \N \N 165701 2024-02-26 06:00:05.115 2024-02-26 06:00:05.468 1015939 20080 \N \N \N 165702 2024-02-26 06:00:05.115 2024-02-26 06:00:05.471 991173 4654 \N \N \N 165703 2024-02-26 06:00:05.115 2024-02-26 06:00:05.473 893688 17494 \N \N \N 165704 2024-02-26 06:00:05.115 2024-02-26 06:00:05.475 722254 19533 \N \N \N 165705 2024-02-26 06:00:05.115 2024-02-26 06:00:05.477 716203 21131 \N \N \N 165706 2024-02-26 06:00:05.115 2024-02-26 06:00:05.479 686757 19488 \N \N \N 165707 2024-02-26 06:00:05.115 2024-02-26 06:00:05.482 677292 18667 \N \N \N 165708 2024-02-26 06:00:05.115 2024-02-26 06:00:05.486 676464 6653 \N \N \N 165709 2024-02-26 06:00:05.115 2024-02-26 06:00:05.489 661697 14545 \N \N \N 165710 2024-02-26 06:00:05.115 2024-02-26 06:00:05.491 641600 21424 \N \N \N 165711 2024-02-26 06:00:05.115 2024-02-26 06:00:05.493 638808 15833 \N \N \N 165712 2024-02-26 06:00:05.115 2024-02-26 06:00:05.495 629918 703 \N \N \N 165713 2024-02-26 06:00:05.115 2024-02-26 06:00:05.498 608827 1603 \N \N \N 165714 2024-02-26 06:00:05.115 2024-02-26 06:00:05.502 575966 16296 \N \N \N 165715 2024-02-26 06:00:05.115 2024-02-26 06:00:05.507 513724 20353 \N \N \N 165716 2024-02-26 06:00:05.115 2024-02-26 06:00:05.51 502958 18241 \N \N \N 165717 2024-02-26 06:00:05.115 2024-02-26 06:00:05.512 487272 20745 \N \N \N 165718 2024-02-26 06:00:05.115 2024-02-26 06:00:05.519 480086 21402 \N \N \N 165719 2024-02-26 06:00:05.115 2024-02-26 06:00:05.524 421159 9307 \N \N \N 165720 2024-02-26 06:00:05.115 2024-02-26 06:00:05.529 418742 14195 \N \N \N 165721 2024-02-26 06:00:05.115 2024-02-26 06:00:05.531 404491 20353 \N \N \N 165722 2024-02-26 06:00:05.115 2024-02-26 06:00:05.534 401913 16747 \N \N \N 165723 2024-02-26 06:00:05.115 2024-02-26 06:00:05.539 388108 1002 \N \N \N 165724 2024-02-26 06:00:05.115 2024-02-26 06:00:05.541 382805 17415 \N \N \N 165725 2024-02-26 06:00:05.115 2024-02-26 06:00:05.544 376842 21228 \N \N \N 165726 2024-02-26 06:00:05.115 2024-02-26 06:00:05.546 373378 21600 \N \N \N 165727 2024-02-26 06:00:05.115 2024-02-26 06:00:05.548 359648 9816 \N \N \N 165728 2024-02-26 06:00:05.115 2024-02-26 06:00:05.551 331800 692 \N \N \N 165729 2024-02-26 06:00:05.115 2024-02-26 06:00:05.553 327778 5728 \N \N \N 165730 2024-02-26 06:00:05.115 2024-02-26 06:00:05.555 324720 8269 \N \N \N 165731 2024-02-26 06:00:05.115 2024-02-26 06:00:05.558 322940 5852 \N \N \N 165732 2024-02-26 06:00:05.115 2024-02-26 06:00:05.561 306958 705 \N \N \N 165733 2024-02-26 06:00:05.115 2024-02-26 06:00:05.563 303752 19105 \N \N \N 165734 2024-02-26 06:00:05.115 2024-02-26 06:00:05.565 303635 7097 \N \N \N 165735 2024-02-26 06:00:05.115 2024-02-26 06:00:05.567 298997 11999 \N \N \N 165736 2024-02-26 06:00:05.115 2024-02-26 06:00:05.571 295268 15594 \N \N \N 165737 2024-02-26 06:00:05.115 2024-02-26 06:00:05.576 286311 18680 \N \N \N 165738 2024-02-26 06:00:05.115 2024-02-26 06:00:05.578 282772 5497 \N \N \N 165739 2024-02-26 06:00:05.115 2024-02-26 06:00:05.582 275494 18500 \N \N \N 165740 2024-02-26 06:00:05.115 2024-02-26 06:00:05.585 272896 5527 \N \N \N 165741 2024-02-26 06:00:05.115 2024-02-26 06:00:05.588 270251 889 \N \N \N 165742 2024-02-26 06:00:05.115 2024-02-26 06:00:05.59 266520 11220 \N \N \N 165743 2024-02-26 06:00:05.115 2024-02-26 06:00:05.593 258105 5761 \N \N \N 165744 2024-02-26 06:00:05.115 2024-02-26 06:00:05.595 256803 3409 \N \N \N 165745 2024-02-26 06:00:05.115 2024-02-26 06:00:05.598 238364 11897 \N \N \N 165746 2024-02-26 06:00:05.115 2024-02-26 06:00:05.601 237336 17953 \N \N \N 165747 2024-02-26 06:00:05.115 2024-02-26 06:00:05.607 233464 21296 \N \N \N 165748 2024-02-26 06:00:05.115 2024-02-26 06:00:05.614 232964 5865 \N \N \N 165749 2024-02-26 06:00:05.115 2024-02-26 06:00:05.616 231653 12057 \N \N \N 165750 2024-02-26 06:00:05.115 2024-02-26 06:00:05.619 223956 20681 \N \N \N 165751 2024-02-26 06:00:05.115 2024-02-26 06:00:05.622 219788 1389 \N \N \N 165752 2024-02-26 06:00:05.115 2024-02-26 06:00:05.626 218466 10728 \N \N \N 165753 2024-02-26 06:00:05.115 2024-02-26 06:00:05.632 218175 9171 \N \N \N 165754 2024-02-26 06:00:05.115 2024-02-26 06:00:05.636 215732 664 \N \N \N 165755 2024-02-26 06:00:05.115 2024-02-26 06:00:05.64 214422 1617 \N \N \N 165756 2024-02-26 06:00:05.115 2024-02-26 06:00:05.642 209111 12160 \N \N \N 165757 2024-02-26 06:00:05.115 2024-02-26 06:00:05.645 204369 2775 \N \N \N 165758 2024-02-26 06:00:05.115 2024-02-26 06:00:05.648 203638 19031 \N \N \N 165759 2024-02-26 06:00:05.115 2024-02-26 06:00:05.651 199105 928 \N \N \N 165760 2024-02-26 06:00:05.115 2024-02-26 06:00:05.657 194746 6260 \N \N \N 165761 2024-02-26 06:00:05.115 2024-02-26 06:00:05.659 174212 21514 \N \N \N 165762 2024-02-26 06:00:05.115 2024-02-26 06:00:05.662 172448 7185 \N \N \N 165763 2024-02-26 06:00:05.115 2024-02-26 06:00:05.664 165883 20871 \N \N \N 165764 2024-02-26 06:00:05.115 2024-02-26 06:00:05.666 161858 720 \N \N \N 165765 2024-02-26 06:00:05.115 2024-02-26 06:00:05.669 159205 1713 \N \N \N 165766 2024-02-26 06:00:05.115 2024-02-26 06:00:05.673 155242 16717 \N \N \N 165767 2024-02-26 06:00:05.115 2024-02-26 06:00:05.676 153699 711 \N \N \N 165768 2024-02-26 06:00:05.115 2024-02-26 06:00:05.68 150716 5758 \N \N \N 165769 2024-02-26 06:00:05.115 2024-02-26 06:00:05.683 150229 7558 \N \N \N 165770 2024-02-26 06:00:05.115 2024-02-26 06:00:05.685 142982 20245 \N \N \N 165771 2024-02-26 06:00:05.115 2024-02-26 06:00:05.688 141471 2502 \N \N \N 165772 2024-02-26 06:00:05.115 2024-02-26 06:00:05.691 141381 12356 \N \N \N 165773 2024-02-26 06:00:05.115 2024-02-26 06:00:05.695 139804 12736 \N \N \N 165774 2024-02-26 06:00:05.115 2024-02-26 06:00:05.7 137482 18626 \N \N \N 165775 2024-02-26 06:00:05.115 2024-02-26 06:00:05.704 125507 13798 \N \N \N 165776 2024-02-26 06:00:05.115 2024-02-26 06:00:05.707 124480 20099 \N \N \N 165777 2024-02-26 06:00:05.115 2024-02-26 06:00:05.711 122306 20251 \N \N \N 165778 2024-02-26 06:00:05.115 2024-02-26 06:00:05.713 112643 811 \N \N \N 165779 2024-02-26 06:00:05.115 2024-02-26 06:00:05.716 107368 18005 \N \N \N 165780 2024-02-26 06:00:05.115 2024-02-26 06:00:05.718 105859 670 \N \N \N 165781 2024-02-26 06:00:05.115 2024-02-26 06:00:05.721 102118 21463 \N \N \N 165782 2024-02-26 06:00:05.115 2024-02-26 06:00:05.724 100529 9364 \N \N \N 165783 2024-02-26 06:00:05.115 2024-02-26 06:00:05.727 99355 20117 \N \N \N 165784 2024-02-26 06:00:05.115 2024-02-26 06:00:05.733 95464 21292 \N \N \N 165785 2024-02-26 06:00:05.115 2024-02-26 06:00:05.735 94087 20647 \N \N \N 165786 2024-02-26 06:00:05.115 2024-02-26 06:00:05.738 93552 21062 \N \N \N 165787 2024-02-26 06:00:05.115 2024-02-26 06:00:05.741 91602 2735 \N \N \N 165788 2024-02-26 06:00:05.115 2024-02-26 06:00:05.743 87886 19471 \N \N \N 165789 2024-02-26 06:00:05.115 2024-02-26 06:00:05.746 84631 680 \N \N \N 165790 2024-02-26 06:00:05.115 2024-02-26 06:00:05.749 80551 18615 \N \N \N 165791 2024-02-26 06:00:05.115 2024-02-26 06:00:05.752 79756 12245 \N \N \N 165792 2024-02-26 06:00:05.115 2024-02-26 06:00:05.754 78357 20381 \N \N \N 165793 2024-02-26 06:00:05.115 2024-02-26 06:00:05.756 78118 13055 \N \N \N 165794 2024-02-26 06:00:05.115 2024-02-26 06:00:05.759 77554 13517 \N \N \N 165795 2024-02-26 06:00:05.115 2024-02-26 06:00:05.762 77509 1060 \N \N \N 165796 2024-02-26 06:00:05.115 2024-02-26 06:00:05.765 74481 720 \N \N \N 165797 2024-02-26 06:00:05.115 2024-02-26 06:00:05.768 74451 14195 \N \N \N 165798 2024-02-26 06:00:05.115 2024-02-26 06:00:05.772 73267 11298 \N \N \N 165799 2024-02-26 06:00:05.115 2024-02-26 06:00:05.774 69731 21271 \N \N \N 165800 2024-02-26 06:00:05.115 2024-02-26 06:00:05.777 68634 11516 \N \N \N 165801 2024-02-26 06:00:05.115 2024-02-26 06:00:05.779 67470 21446 \N \N \N 165802 2024-02-26 06:00:05.115 2024-02-26 06:00:05.782 65584 7760 \N \N \N 165803 2024-02-26 06:00:05.115 2024-02-26 06:00:05.788 65394 17209 \N \N \N 165804 2024-02-26 06:00:05.115 2024-02-26 06:00:05.795 62604 880 \N \N \N 165805 2024-02-26 06:00:05.115 2024-02-26 06:00:05.799 61536 9920 \N \N \N 165806 2024-02-26 06:00:05.115 2024-02-26 06:00:05.802 52957 19329 \N \N \N 165807 2024-02-26 06:00:05.115 2024-02-26 06:00:05.805 52513 18583 \N \N \N 165808 2024-02-26 06:00:05.115 2024-02-26 06:00:05.808 51685 6137 \N \N \N 165809 2024-02-26 06:00:05.115 2024-02-26 06:00:05.811 51470 692 \N \N \N 165810 2024-02-26 06:00:05.115 2024-02-26 06:00:05.813 49642 18873 \N \N \N 165811 2024-02-26 06:00:05.115 2024-02-26 06:00:05.816 49152 9366 \N \N \N 165812 2024-02-26 06:00:05.115 2024-02-26 06:00:05.818 49093 14705 \N \N \N 165813 2024-02-26 06:00:05.115 2024-02-26 06:00:05.822 45645 635 \N \N \N 165814 2024-02-26 06:00:05.115 2024-02-26 06:00:05.824 44795 18923 \N \N \N 165815 2024-02-26 06:00:05.115 2024-02-26 06:00:05.827 42893 21242 \N \N \N 165816 2024-02-26 06:00:05.115 2024-02-26 06:00:05.83 41491 1814 \N \N \N 165817 2024-02-26 06:00:05.115 2024-02-26 06:00:05.833 39758 9347 \N \N \N 165818 2024-02-26 06:00:05.115 2024-02-26 06:00:05.836 39125 5806 \N \N \N 165819 2024-02-26 06:00:05.115 2024-02-26 06:00:05.841 37627 18336 \N \N \N 165820 2024-02-26 06:00:05.115 2024-02-26 06:00:05.843 36306 21612 \N \N \N 165821 2024-02-26 06:00:05.115 2024-02-26 06:00:05.846 34192 12965 \N \N \N 165822 2024-02-26 06:00:05.115 2024-02-26 06:00:05.848 34100 10484 \N \N \N 165823 2024-02-26 06:00:05.115 2024-02-26 06:00:05.852 32436 20546 \N \N \N 165824 2024-02-26 06:00:05.115 2024-02-26 06:00:05.854 32419 18556 \N \N \N 165825 2024-02-26 06:00:05.115 2024-02-26 06:00:05.856 32374 21208 \N \N \N 165826 2024-02-26 06:00:05.115 2024-02-26 06:00:05.859 32216 14045 \N \N \N 165827 2024-02-26 06:00:05.115 2024-02-26 06:00:05.868 28889 18016 \N \N \N 165828 2024-02-26 06:00:05.115 2024-02-26 06:00:05.87 28527 6360 \N \N \N 165829 2024-02-26 06:00:05.115 2024-02-26 06:00:05.872 28405 18230 \N \N \N 165830 2024-02-26 06:00:05.115 2024-02-26 06:00:05.875 27230 4633 \N \N \N 165831 2024-02-26 06:00:05.115 2024-02-26 06:00:05.877 26484 19007 \N \N \N 165832 2024-02-26 06:00:05.115 2024-02-26 06:00:05.88 25152 7766 \N \N \N 165833 2024-02-26 06:00:05.115 2024-02-26 06:00:05.883 24941 20143 \N \N \N 165834 2024-02-26 06:00:05.115 2024-02-26 06:00:05.886 17531 7978 \N \N \N 165835 2024-02-26 06:00:05.115 2024-02-26 06:00:05.888 17068 20826 \N \N \N 165836 2024-02-26 06:00:05.115 2024-02-26 06:00:05.893 16300 1519 \N \N \N 165837 2024-02-26 06:00:05.115 2024-02-26 06:00:05.897 13841 11760 \N \N \N 165838 2024-02-26 06:00:05.115 2024-02-26 06:00:05.9 8021 2000 \N \N \N 165839 2024-02-27 06:00:02.514 2024-02-27 06:00:02.515 11209104 21047 \N \N \N 165840 2024-02-27 06:00:02.514 2024-02-27 06:00:02.53 1686140 19488 \N \N \N 165841 2024-02-27 06:00:02.514 2024-02-27 06:00:02.539 1600700 21214 \N \N \N 165842 2024-02-27 06:00:02.514 2024-02-27 06:00:02.543 1379560 18557 \N \N \N 165843 2024-02-27 06:00:02.514 2024-02-27 06:00:02.547 1210902 919 \N \N \N 165844 2024-02-27 06:00:02.514 2024-02-27 06:00:02.551 1165954 2620 \N \N \N 165845 2024-02-27 06:00:02.514 2024-02-27 06:00:02.556 984129 19863 \N \N \N 165846 2024-02-27 06:00:02.514 2024-02-27 06:00:02.559 916725 9378 \N \N \N 165847 2024-02-27 06:00:02.514 2024-02-27 06:00:02.563 886253 3400 \N \N \N 165848 2024-02-27 06:00:02.514 2024-02-27 06:00:02.567 818698 17124 \N \N \N 165849 2024-02-27 06:00:02.514 2024-02-27 06:00:02.57 713383 13217 \N \N \N 165850 2024-02-27 06:00:02.514 2024-02-27 06:00:02.575 711356 15273 \N \N \N 165851 2024-02-27 06:00:02.514 2024-02-27 06:00:02.58 663241 21026 \N \N \N 165852 2024-02-27 06:00:02.514 2024-02-27 06:00:02.584 662351 19446 \N \N \N 165853 2024-02-27 06:00:02.514 2024-02-27 06:00:02.59 620087 21033 \N \N \N 165854 2024-02-27 06:00:02.514 2024-02-27 06:00:02.596 610164 837 \N \N \N 165855 2024-02-27 06:00:02.514 2024-02-27 06:00:02.6 589032 20218 \N \N \N 165856 2024-02-27 06:00:02.514 2024-02-27 06:00:02.604 578765 5806 \N \N \N 165857 2024-02-27 06:00:02.514 2024-02-27 06:00:02.608 561864 854 \N \N \N 165858 2024-02-27 06:00:02.514 2024-02-27 06:00:02.612 495386 1237 \N \N \N 165859 2024-02-27 06:00:02.514 2024-02-27 06:00:02.619 436756 3411 \N \N \N 165860 2024-02-27 06:00:02.514 2024-02-27 06:00:02.624 385871 10393 \N \N \N 165861 2024-02-27 06:00:02.514 2024-02-27 06:00:02.631 373571 20889 \N \N \N 165862 2024-02-27 06:00:02.514 2024-02-27 06:00:02.637 369392 7978 \N \N \N 165863 2024-02-27 06:00:02.514 2024-02-27 06:00:02.643 364876 698 \N \N \N 165864 2024-02-27 06:00:02.514 2024-02-27 06:00:02.646 320089 6555 \N \N \N 165865 2024-02-27 06:00:02.514 2024-02-27 06:00:02.65 301602 629 \N \N \N 165866 2024-02-27 06:00:02.514 2024-02-27 06:00:02.654 288390 16839 \N \N \N 165867 2024-02-27 06:00:02.514 2024-02-27 06:00:02.66 279280 654 \N \N \N 165868 2024-02-27 06:00:02.514 2024-02-27 06:00:02.673 276788 14271 \N \N \N 165869 2024-02-27 06:00:02.514 2024-02-27 06:00:02.677 259118 18675 \N \N \N 165870 2024-02-27 06:00:02.514 2024-02-27 06:00:02.681 248883 11648 \N \N \N 165871 2024-02-27 06:00:02.514 2024-02-27 06:00:02.685 242180 18017 \N \N \N 165872 2024-02-27 06:00:02.514 2024-02-27 06:00:02.689 232527 4654 \N \N \N 165873 2024-02-27 06:00:02.514 2024-02-27 06:00:02.692 230198 6616 \N \N \N 165874 2024-02-27 06:00:02.514 2024-02-27 06:00:02.697 196830 19662 \N \N \N 165875 2024-02-27 06:00:02.514 2024-02-27 06:00:02.709 188344 9350 \N \N \N 165876 2024-02-27 06:00:02.514 2024-02-27 06:00:02.713 187695 20251 \N \N \N 165877 2024-02-27 06:00:02.514 2024-02-27 06:00:02.719 178137 6003 \N \N \N 165878 2024-02-27 06:00:02.514 2024-02-27 06:00:02.724 172424 21466 \N \N \N 165879 2024-02-27 06:00:02.514 2024-02-27 06:00:02.727 165549 10719 \N \N \N 165880 2024-02-27 06:00:02.514 2024-02-27 06:00:02.732 159328 6164 \N \N \N 165881 2024-02-27 06:00:02.514 2024-02-27 06:00:02.736 157951 19854 \N \N \N 165882 2024-02-27 06:00:02.514 2024-02-27 06:00:02.74 153805 21603 \N \N \N 165883 2024-02-27 06:00:02.514 2024-02-27 06:00:02.747 144288 3417 \N \N \N 165884 2024-02-27 06:00:02.514 2024-02-27 06:00:02.751 142234 21573 \N \N \N 165885 2024-02-27 06:00:02.514 2024-02-27 06:00:02.754 131389 11417 \N \N \N 165886 2024-02-27 06:00:02.514 2024-02-27 06:00:02.76 130459 11898 \N \N \N 165887 2024-02-27 06:00:02.514 2024-02-27 06:00:02.763 130196 12268 \N \N \N 165888 2024-02-27 06:00:02.514 2024-02-27 06:00:02.774 129472 20090 \N \N \N 165889 2024-02-27 06:00:02.514 2024-02-27 06:00:02.778 125751 9427 \N \N \N 165890 2024-02-27 06:00:02.514 2024-02-27 06:00:02.781 120680 20551 \N \N \N 165891 2024-02-27 06:00:02.514 2024-02-27 06:00:02.785 117273 1745 \N \N \N 165892 2024-02-27 06:00:02.514 2024-02-27 06:00:02.789 106446 20751 \N \N \N 165893 2024-02-27 06:00:02.514 2024-02-27 06:00:02.792 102548 9336 \N \N \N 165894 2024-02-27 06:00:02.514 2024-02-27 06:00:02.796 102407 13843 \N \N \N 165895 2024-02-27 06:00:02.514 2024-02-27 06:00:02.799 95520 13763 \N \N \N 165896 2024-02-27 06:00:02.514 2024-02-27 06:00:02.803 94007 4225 \N \N \N 165897 2024-02-27 06:00:02.514 2024-02-27 06:00:02.815 93817 19601 \N \N \N 165898 2024-02-27 06:00:02.514 2024-02-27 06:00:02.823 92754 21614 \N \N \N 165899 2024-02-27 06:00:02.514 2024-02-27 06:00:02.831 92427 18526 \N \N \N 165900 2024-02-27 06:00:02.514 2024-02-27 06:00:02.856 87619 4084 \N \N \N 165901 2024-02-27 06:00:02.514 2024-02-27 06:00:02.872 87291 8326 \N \N \N 165902 2024-02-27 06:00:02.514 2024-02-27 06:00:02.896 83825 5978 \N \N \N 165903 2024-02-27 06:00:02.514 2024-02-27 06:00:02.914 82426 21421 \N \N \N 165904 2024-02-27 06:00:02.514 2024-02-27 06:00:02.921 81335 20754 \N \N \N 165905 2024-02-27 06:00:02.514 2024-02-27 06:00:02.925 73488 16282 \N \N \N 165906 2024-02-27 06:00:02.514 2024-02-27 06:00:02.929 70270 3417 \N \N \N 165907 2024-02-27 06:00:02.514 2024-02-27 06:00:02.936 66155 12744 \N \N \N 165908 2024-02-27 06:00:02.514 2024-02-27 06:00:02.939 64753 1801 \N \N \N 165909 2024-02-27 06:00:02.514 2024-02-27 06:00:02.943 62853 13174 \N \N \N 165910 2024-02-27 06:00:02.514 2024-02-27 06:00:02.947 60291 7773 \N \N \N 165911 2024-02-27 06:00:02.514 2024-02-27 06:00:02.95 56910 2577 \N \N \N 165912 2024-02-27 06:00:02.514 2024-02-27 06:00:02.955 55568 826 \N \N \N 165913 2024-02-27 06:00:02.514 2024-02-27 06:00:02.959 54305 8916 \N \N \N 165914 2024-02-27 06:00:02.514 2024-02-27 06:00:02.963 54244 12976 \N \N \N 165915 2024-02-27 06:00:02.514 2024-02-27 06:00:02.967 52846 20168 \N \N \N 165916 2024-02-27 06:00:02.514 2024-02-27 06:00:02.971 48709 10291 \N \N \N 165917 2024-02-27 06:00:02.514 2024-02-27 06:00:02.974 48669 16267 \N \N \N 165918 2024-02-27 06:00:02.514 2024-02-27 06:00:02.978 47771 21520 \N \N \N 165919 2024-02-27 06:00:02.514 2024-02-27 06:00:02.983 45676 18511 \N \N \N 165920 2024-02-27 06:00:02.514 2024-02-27 06:00:03.006 38499 2718 \N \N \N 165921 2024-02-27 06:00:02.514 2024-02-27 06:00:03.009 34937 11458 \N \N \N 165922 2024-02-27 06:00:02.514 2024-02-27 06:00:03.024 29520 1326 \N \N \N 165923 2024-02-27 06:00:02.514 2024-02-27 06:00:03.04 27889 4521 \N \N \N 165924 2024-02-27 06:00:02.514 2024-02-27 06:00:03.051 24169 18581 \N \N \N 165925 2024-02-27 06:00:02.514 2024-02-27 06:00:03.056 23375 18518 \N \N \N 165926 2024-02-27 06:00:02.514 2024-02-27 06:00:03.06 22618 18336 \N \N \N 165927 2024-02-27 06:00:02.514 2024-02-27 06:00:03.069 20175 5519 \N \N \N 165928 2024-02-27 06:00:02.514 2024-02-27 06:00:03.074 19723 18675 \N \N \N 165929 2024-02-27 06:00:02.514 2024-02-27 06:00:03.079 18351 18452 \N \N \N 165930 2024-02-27 06:00:02.514 2024-02-27 06:00:03.086 17652 2390 \N \N \N 165931 2024-02-27 06:00:02.514 2024-02-27 06:00:03.089 14184 9355 \N \N \N 165932 2024-02-27 06:00:02.514 2024-02-27 06:00:03.092 12094 6526 \N \N \N 165933 2024-02-27 06:00:02.514 2024-02-27 06:00:03.096 10163 5557 \N \N \N 165934 2024-02-27 06:00:02.514 2024-02-27 06:00:03.099 5944 12265 \N \N \N 165935 2024-02-27 06:00:02.514 2024-02-27 06:00:03.103 5414346 17041 \N \N \N 165936 2024-02-27 06:00:02.514 2024-02-27 06:00:03.106 2869521 2206 \N \N \N 165937 2024-02-27 06:00:02.514 2024-02-27 06:00:03.109 2594951 11996 \N \N \N 165938 2024-02-27 06:00:02.514 2024-02-27 06:00:03.115 1467884 16679 \N \N \N 165939 2024-02-27 06:00:02.514 2024-02-27 06:00:03.118 1160352 19852 \N \N \N 165940 2024-02-27 06:00:02.514 2024-02-27 06:00:03.121 1138374 2065 \N \N \N 165941 2024-02-27 06:00:02.514 2024-02-27 06:00:03.124 1038014 11491 \N \N \N 165942 2024-02-27 06:00:02.514 2024-02-27 06:00:03.127 840806 12821 \N \N \N 165943 2024-02-27 06:00:02.514 2024-02-27 06:00:03.13 707259 16929 \N \N \N 165944 2024-02-27 06:00:02.514 2024-02-27 06:00:03.133 696128 18180 \N \N \N 165945 2024-02-27 06:00:02.514 2024-02-27 06:00:03.136 632031 2329 \N \N \N 165946 2024-02-27 06:00:02.514 2024-02-27 06:00:03.139 585126 8648 \N \N \N 165947 2024-02-27 06:00:02.514 2024-02-27 06:00:03.143 575109 4768 \N \N \N 165948 2024-02-27 06:00:02.514 2024-02-27 06:00:03.146 547160 736 \N \N \N 165949 2024-02-27 06:00:02.514 2024-02-27 06:00:03.149 534469 11678 \N \N \N 165950 2024-02-27 06:00:02.514 2024-02-27 06:00:03.153 520913 1352 \N \N \N 165951 2024-02-27 06:00:02.514 2024-02-27 06:00:03.155 514370 2437 \N \N \N 165952 2024-02-27 06:00:02.514 2024-02-27 06:00:03.158 472435 1751 \N \N \N 165953 2024-02-27 06:00:02.514 2024-02-27 06:00:03.162 458898 10698 \N \N \N 165954 2024-02-27 06:00:02.514 2024-02-27 06:00:03.165 443220 8796 \N \N \N 165955 2024-02-27 06:00:02.514 2024-02-27 06:00:03.168 419557 3439 \N \N \N 165956 2024-02-27 06:00:02.514 2024-02-27 06:00:03.172 411182 13599 \N \N \N 165957 2024-02-27 06:00:02.514 2024-02-27 06:00:03.175 398488 18941 \N \N \N 165958 2024-02-27 06:00:02.514 2024-02-27 06:00:03.179 384090 2832 \N \N \N 165959 2024-02-27 06:00:02.514 2024-02-27 06:00:03.181 380289 21047 \N \N \N 165960 2024-02-27 06:00:02.514 2024-02-27 06:00:03.185 354782 5160 \N \N \N 165961 2024-02-27 06:00:02.514 2024-02-27 06:00:03.187 346832 20490 \N \N \N 165962 2024-02-27 06:00:02.514 2024-02-27 06:00:03.19 332680 21427 \N \N \N 165963 2024-02-27 06:00:02.514 2024-02-27 06:00:03.192 331615 1213 \N \N \N 165964 2024-02-27 06:00:02.514 2024-02-27 06:00:03.196 312800 21166 \N \N \N 165965 2024-02-27 06:00:02.514 2024-02-27 06:00:03.199 283216 11144 \N \N \N 165966 2024-02-27 06:00:02.514 2024-02-27 06:00:03.201 265208 21334 \N \N \N 165967 2024-02-27 06:00:02.514 2024-02-27 06:00:03.204 260406 14370 \N \N \N 165968 2024-02-27 06:00:02.514 2024-02-27 06:00:03.206 248867 2844 \N \N \N 165969 2024-02-27 06:00:02.514 2024-02-27 06:00:03.209 232648 14295 \N \N \N 165970 2024-02-27 06:00:02.514 2024-02-27 06:00:03.212 202295 20715 \N \N \N 165971 2024-02-27 06:00:02.514 2024-02-27 06:00:03.214 198957 13399 \N \N \N 165972 2024-02-27 06:00:02.514 2024-02-27 06:00:03.217 196619 1567 \N \N \N 165973 2024-02-27 06:00:02.514 2024-02-27 06:00:03.22 191987 16809 \N \N \N 165974 2024-02-27 06:00:02.514 2024-02-27 06:00:03.224 176027 15337 \N \N \N 165975 2024-02-27 06:00:02.514 2024-02-27 06:00:03.23 173932 15806 \N \N \N 165976 2024-02-27 06:00:02.514 2024-02-27 06:00:03.233 172778 6749 \N \N \N 165977 2024-02-27 06:00:02.514 2024-02-27 06:00:03.236 162184 20434 \N \N \N 165978 2024-02-27 06:00:02.514 2024-02-27 06:00:03.239 156026 18017 \N \N \N 165979 2024-02-27 06:00:02.514 2024-02-27 06:00:03.243 154998 2342 \N \N \N 165980 2024-02-27 06:00:02.514 2024-02-27 06:00:03.246 154942 8498 \N \N \N 165981 2024-02-27 06:00:02.514 2024-02-27 06:00:03.249 153798 15196 \N \N \N 165982 2024-02-27 06:00:02.514 2024-02-27 06:00:03.252 153706 16296 \N \N \N 165983 2024-02-27 06:00:02.514 2024-02-27 06:00:03.255 149335 17514 \N \N \N 165984 2024-02-27 06:00:02.514 2024-02-27 06:00:03.258 147323 21402 \N \N \N 165985 2024-02-27 06:00:02.514 2024-02-27 06:00:03.261 144094 17227 \N \N \N 165986 2024-02-27 06:00:02.514 2024-02-27 06:00:03.264 135295 20280 \N \N \N 165987 2024-02-27 06:00:02.514 2024-02-27 06:00:03.266 134174 21287 \N \N \N 165988 2024-02-27 06:00:02.514 2024-02-27 06:00:03.269 131218 20509 \N \N \N 165989 2024-02-27 06:00:02.514 2024-02-27 06:00:03.271 128333 18199 \N \N \N 165990 2024-02-27 06:00:02.514 2024-02-27 06:00:03.274 127471 1273 \N \N \N 165991 2024-02-27 06:00:02.514 2024-02-27 06:00:03.277 119335 18119 \N \N \N 165992 2024-02-27 06:00:02.514 2024-02-27 06:00:03.279 118065 18180 \N \N \N 165993 2024-02-27 06:00:02.514 2024-02-27 06:00:03.282 116949 14037 \N \N \N 165994 2024-02-27 06:00:02.514 2024-02-27 06:00:03.285 115581 14037 \N \N \N 165995 2024-02-27 06:00:02.514 2024-02-27 06:00:03.288 115444 974 \N \N \N 165996 2024-02-27 06:00:02.514 2024-02-27 06:00:03.291 108914 12921 \N \N \N 165997 2024-02-27 06:00:02.514 2024-02-27 06:00:03.295 108758 19459 \N \N \N 165998 2024-02-27 06:00:02.514 2024-02-27 06:00:03.297 106328 18995 \N \N \N 165999 2024-02-27 06:00:02.514 2024-02-27 06:00:03.299 99560 20980 \N \N \N 166000 2024-02-27 06:00:02.514 2024-02-27 06:00:03.302 98017 633 \N \N \N 166001 2024-02-27 06:00:02.514 2024-02-27 06:00:03.304 97752 1631 \N \N \N 166002 2024-02-27 06:00:02.514 2024-02-27 06:00:03.309 96850 20062 \N \N \N 166003 2024-02-27 06:00:02.514 2024-02-27 06:00:03.311 96484 2264 \N \N \N 166004 2024-02-27 06:00:02.514 2024-02-27 06:00:03.314 96259 16347 \N \N \N 166005 2024-02-27 06:00:02.514 2024-02-27 06:00:03.317 93617 770 \N \N \N 166006 2024-02-27 06:00:02.514 2024-02-27 06:00:03.319 93106 21058 \N \N \N 166007 2024-02-27 06:00:02.514 2024-02-27 06:00:03.322 90909 8926 \N \N \N 166008 2024-02-27 06:00:02.514 2024-02-27 06:00:03.324 90081 5487 \N \N \N 166009 2024-02-27 06:00:02.514 2024-02-27 06:00:03.328 89138 20701 \N \N \N 166010 2024-02-27 06:00:02.514 2024-02-27 06:00:03.331 89076 20434 \N \N \N 166011 2024-02-27 06:00:02.514 2024-02-27 06:00:03.334 89041 18363 \N \N \N 166012 2024-02-27 06:00:02.514 2024-02-27 06:00:03.337 87256 16212 \N \N \N 166013 2024-02-27 06:00:02.514 2024-02-27 06:00:03.339 86990 18072 \N \N \N 166014 2024-02-27 06:00:02.514 2024-02-27 06:00:03.343 86978 19156 \N \N \N 166015 2024-02-27 06:00:02.514 2024-02-27 06:00:03.345 86033 12368 \N \N \N 166016 2024-02-27 06:00:02.514 2024-02-27 06:00:03.349 84594 12334 \N \N \N 166017 2024-02-27 06:00:02.514 2024-02-27 06:00:03.351 83384 5590 \N \N \N 166018 2024-02-27 06:00:02.514 2024-02-27 06:00:03.354 78707 5661 \N \N \N 166019 2024-02-27 06:00:02.514 2024-02-27 06:00:03.357 73189 17690 \N \N \N 166020 2024-02-27 06:00:02.514 2024-02-27 06:00:03.359 71285 21389 \N \N \N 166021 2024-02-27 06:00:02.514 2024-02-27 06:00:03.363 71270 1046 \N \N \N 166022 2024-02-27 06:00:02.514 2024-02-27 06:00:03.37 69507 11819 \N \N \N 166023 2024-02-27 06:00:02.514 2024-02-27 06:00:03.373 69421 21547 \N \N \N 166024 2024-02-27 06:00:02.514 2024-02-27 06:00:03.376 66363 19296 \N \N \N 166025 2024-02-27 06:00:02.514 2024-02-27 06:00:03.378 64567 21585 \N \N \N 166026 2024-02-27 06:00:02.514 2024-02-27 06:00:03.381 64409 2056 \N \N \N 166027 2024-02-27 06:00:02.514 2024-02-27 06:00:03.388 63977 18454 \N \N \N 166028 2024-02-27 06:00:02.514 2024-02-27 06:00:03.396 63838 4175 \N \N \N 166029 2024-02-27 06:00:02.514 2024-02-27 06:00:03.402 62554 726 \N \N \N 166030 2024-02-27 06:00:02.514 2024-02-27 06:00:03.405 60708 14037 \N \N \N 166031 2024-02-27 06:00:02.514 2024-02-27 06:00:03.408 60102 18809 \N \N \N 166032 2024-02-27 06:00:02.514 2024-02-27 06:00:03.411 59496 6268 \N \N \N 166033 2024-02-27 06:00:02.514 2024-02-27 06:00:03.414 58178 18774 \N \N \N 166034 2024-02-27 06:00:02.514 2024-02-27 06:00:03.417 57788 21389 \N \N \N 166035 2024-02-27 06:00:02.514 2024-02-27 06:00:03.42 56780 21522 \N \N \N 166036 2024-02-27 06:00:02.514 2024-02-27 06:00:03.423 55397 16809 \N \N \N 166037 2024-02-27 06:00:02.514 2024-02-27 06:00:03.425 54936 14152 \N \N \N 166038 2024-02-27 06:00:02.514 2024-02-27 06:00:03.428 54749 20738 \N \N \N 166039 2024-02-27 06:00:02.514 2024-02-27 06:00:03.43 53981 19282 \N \N \N 166040 2024-02-27 06:00:02.514 2024-02-27 06:00:03.433 53418 8459 \N \N \N 166041 2024-02-27 06:00:02.514 2024-02-27 06:00:03.435 53038 12606 \N \N \N 166042 2024-02-27 06:00:02.514 2024-02-27 06:00:03.438 52406 12057 \N \N \N 166043 2024-02-27 06:00:02.514 2024-02-27 06:00:03.44 50952 9336 \N \N \N 166044 2024-02-27 06:00:02.514 2024-02-27 06:00:03.442 50938 8544 \N \N \N 166045 2024-02-27 06:00:02.514 2024-02-27 06:00:03.447 50173 672 \N \N \N 166046 2024-02-27 06:00:02.514 2024-02-27 06:00:03.449 49546 20663 \N \N \N 166047 2024-02-27 06:00:02.514 2024-02-27 06:00:03.452 48358 16680 \N \N \N 166048 2024-02-27 06:00:02.514 2024-02-27 06:00:03.455 47742 11491 \N \N \N 166049 2024-02-27 06:00:02.514 2024-02-27 06:00:03.458 47382 19007 \N \N \N 166050 2024-02-27 06:00:02.514 2024-02-27 06:00:03.461 45112 21514 \N \N \N 166051 2024-02-27 06:00:02.514 2024-02-27 06:00:03.466 43211 19121 \N \N \N 166052 2024-02-27 06:00:02.514 2024-02-27 06:00:03.47 43012 910 \N \N \N 166053 2024-02-27 06:00:02.514 2024-02-27 06:00:03.473 42900 12175 \N \N \N 166054 2024-02-27 06:00:02.514 2024-02-27 06:00:03.476 42472 4391 \N \N \N 166055 2024-02-27 06:00:02.514 2024-02-27 06:00:03.479 41882 1273 \N \N \N 166056 2024-02-27 06:00:02.514 2024-02-27 06:00:03.482 41694 732 \N \N \N 166057 2024-02-27 06:00:02.514 2024-02-27 06:00:03.485 41386 13398 \N \N \N 166058 2024-02-27 06:00:02.514 2024-02-27 06:00:03.49 40437 1726 \N \N \N 166059 2024-02-27 06:00:02.514 2024-02-27 06:00:03.493 37490 17838 \N \N \N 166060 2024-02-27 06:00:02.514 2024-02-27 06:00:03.496 37378 14515 \N \N \N 166061 2024-02-27 06:00:02.514 2024-02-27 06:00:03.498 37144 8841 \N \N \N 166062 2024-02-27 06:00:02.514 2024-02-27 06:00:03.501 37061 797 \N \N \N 166063 2024-02-27 06:00:02.514 2024-02-27 06:00:03.503 36900 19235 \N \N \N 166064 2024-02-27 06:00:02.514 2024-02-27 06:00:03.506 36534 2347 \N \N \N 166065 2024-02-27 06:00:02.514 2024-02-27 06:00:03.509 35548 761 \N \N \N 166066 2024-02-27 06:00:02.514 2024-02-27 06:00:03.512 33960 760 \N \N \N 166067 2024-02-27 06:00:02.514 2024-02-27 06:00:03.514 32199 4459 \N \N \N 166068 2024-02-27 06:00:02.514 2024-02-27 06:00:03.517 31371 9985 \N \N \N 166069 2024-02-27 06:00:02.514 2024-02-27 06:00:03.519 31066 20745 \N \N \N 166070 2024-02-27 06:00:02.514 2024-02-27 06:00:03.522 31036 14370 \N \N \N 166071 2024-02-27 06:00:02.514 2024-02-27 06:00:03.524 30665 13399 \N \N \N 166072 2024-02-27 06:00:02.514 2024-02-27 06:00:03.529 28461 9366 \N \N \N 166073 2024-02-27 06:00:02.514 2024-02-27 06:00:03.531 28174 4574 \N \N \N 166074 2024-02-27 06:00:02.514 2024-02-27 06:00:03.534 27946 14688 \N \N \N 166075 2024-02-27 06:00:02.514 2024-02-27 06:00:03.537 26199 2327 \N \N \N 166076 2024-02-27 06:00:02.514 2024-02-27 06:00:03.54 25585 21492 \N \N \N 166077 2024-02-27 06:00:02.514 2024-02-27 06:00:03.542 25516 19303 \N \N \N 166078 2024-02-27 06:00:02.514 2024-02-27 06:00:03.545 24612 6260 \N \N \N 166079 2024-02-27 06:00:02.514 2024-02-27 06:00:03.549 23976 7766 \N \N \N 166080 2024-02-27 06:00:02.514 2024-02-27 06:00:03.552 23520 20168 \N \N \N 166081 2024-02-27 06:00:02.514 2024-02-27 06:00:03.555 23150 12774 \N \N \N 166082 2024-02-27 06:00:02.514 2024-02-27 06:00:03.558 23036 11091 \N \N \N 166083 2024-02-27 06:00:02.514 2024-02-27 06:00:03.561 22673 4035 \N \N \N 166084 2024-02-27 06:00:02.514 2024-02-27 06:00:03.564 22638 9365 \N \N \N 166085 2024-02-27 06:00:02.514 2024-02-27 06:00:03.566 22611 6533 \N \N \N 166086 2024-02-27 06:00:02.514 2024-02-27 06:00:03.569 22283 1044 \N \N \N 166087 2024-02-27 06:00:02.514 2024-02-27 06:00:03.572 22211 16808 \N \N \N 166088 2024-02-27 06:00:02.514 2024-02-27 06:00:03.575 21986 7978 \N \N \N 166089 2024-02-27 06:00:02.514 2024-02-27 06:00:03.577 21737 17519 \N \N \N 166090 2024-02-27 06:00:02.514 2024-02-27 06:00:03.58 21544 9 \N \N \N 166091 2024-02-27 06:00:02.514 2024-02-27 06:00:03.582 21378 4802 \N \N \N 166092 2024-02-27 06:00:02.514 2024-02-27 06:00:03.585 21301 21514 \N \N \N 166093 2024-02-27 06:00:02.514 2024-02-27 06:00:03.587 21201 9669 \N \N \N 166094 2024-02-27 06:00:02.514 2024-02-27 06:00:03.59 20622 13217 \N \N \N 166095 2024-02-27 06:00:02.514 2024-02-27 06:00:03.593 19038 10393 \N \N \N 166096 2024-02-27 06:00:02.514 2024-02-27 06:00:03.596 18841 2529 \N \N \N 166097 2024-02-27 06:00:02.514 2024-02-27 06:00:03.598 18822 18829 \N \N \N 166098 2024-02-27 06:00:02.514 2024-02-27 06:00:03.602 18408 10821 \N \N \N 166099 2024-02-27 06:00:02.514 2024-02-27 06:00:03.604 17293 11491 \N \N \N 166100 2024-02-27 06:00:02.514 2024-02-27 06:00:03.607 15142 9290 \N \N \N 166101 2024-02-27 06:00:02.514 2024-02-27 06:00:03.61 14866 16684 \N \N \N 166102 2024-02-27 06:00:02.514 2024-02-27 06:00:03.616 14730 20327 \N \N \N 166103 2024-02-27 06:00:02.514 2024-02-27 06:00:03.618 14600 13767 \N \N \N 166104 2024-02-27 06:00:02.514 2024-02-27 06:00:03.621 14534 12561 \N \N \N 166105 2024-02-27 06:00:02.514 2024-02-27 06:00:03.623 13994 8004 \N \N \N 166106 2024-02-27 06:00:02.514 2024-02-27 06:00:03.626 13639 4048 \N \N \N 166107 2024-02-27 06:00:02.514 2024-02-27 06:00:03.628 13255 9261 \N \N \N 166108 2024-02-27 06:00:02.514 2024-02-27 06:00:03.631 13188 21437 \N \N \N 166109 2024-02-27 06:00:02.514 2024-02-27 06:00:03.633 12991 811 \N \N \N 166110 2024-02-27 06:00:02.514 2024-02-27 06:00:03.637 12861 21145 \N \N \N 166111 2024-02-27 06:00:02.514 2024-02-27 06:00:03.639 12808 5775 \N \N \N 166112 2024-02-27 06:00:02.514 2024-02-27 06:00:03.641 12139 10693 \N \N \N 166113 2024-02-27 06:00:02.514 2024-02-27 06:00:03.645 11662 9036 \N \N \N 166114 2024-02-27 06:00:02.514 2024-02-27 06:00:03.647 10672 8289 \N \N \N 166115 2024-02-27 06:00:02.514 2024-02-27 06:00:03.652 10498 18989 \N \N \N 166116 2024-02-27 06:00:02.514 2024-02-27 06:00:03.661 10382 14168 \N \N \N 166117 2024-02-27 06:00:02.514 2024-02-27 06:00:03.667 9832 20701 \N \N \N 166118 2024-02-27 06:00:02.514 2024-02-27 06:00:03.67 9121 2748 \N \N \N 166119 2024-02-27 06:00:02.514 2024-02-27 06:00:03.673 8853 18124 \N \N \N 166120 2024-02-27 06:00:02.514 2024-02-27 06:00:03.675 5842 21323 \N \N \N 166121 2024-02-27 06:00:02.514 2024-02-27 06:00:03.678 5073 2010 \N \N \N 166122 2024-02-27 06:00:02.514 2024-02-27 06:00:03.681 4232 9290 \N \N \N 166123 2024-02-27 06:00:02.514 2024-02-27 06:00:03.684 585207 5449 \N \N \N 166124 2024-02-27 06:00:02.514 2024-02-27 06:00:03.688 545007 18629 \N \N \N 166125 2024-02-27 06:00:02.514 2024-02-27 06:00:03.692 538318 4624 \N \N \N 166126 2024-02-27 06:00:02.514 2024-02-27 06:00:03.696 534730 1175 \N \N \N 166127 2024-02-27 06:00:02.514 2024-02-27 06:00:03.7 512892 6003 \N \N \N 166128 2024-02-27 06:00:02.514 2024-02-27 06:00:03.704 473367 12291 \N \N \N 166129 2024-02-27 06:00:02.514 2024-02-27 06:00:03.708 454559 12819 \N \N \N 166130 2024-02-27 06:00:02.514 2024-02-27 06:00:03.712 448622 4459 \N \N \N 166131 2024-02-27 06:00:02.514 2024-02-27 06:00:03.72 429376 13878 \N \N \N 166132 2024-02-27 06:00:02.514 2024-02-27 06:00:03.727 428541 8400 \N \N \N 166133 2024-02-27 06:00:02.514 2024-02-27 06:00:03.744 418223 9992 \N \N \N 166134 2024-02-27 06:00:02.514 2024-02-27 06:00:03.759 404774 18533 \N \N \N 166135 2024-02-27 06:00:02.514 2024-02-27 06:00:03.808 398777 2188 \N \N \N 166136 2024-02-27 06:00:02.514 2024-02-27 06:00:03.818 398777 981 \N \N \N 166137 2024-02-27 06:00:02.514 2024-02-27 06:00:03.823 372528 5809 \N \N \N 166138 2024-02-27 06:00:02.514 2024-02-27 06:00:03.832 361504 652 \N \N \N 166139 2024-02-27 06:00:02.514 2024-02-27 06:00:03.837 356197 20674 \N \N \N 166140 2024-02-27 06:00:02.514 2024-02-27 06:00:03.843 351083 3506 \N \N \N 166141 2024-02-27 06:00:02.514 2024-02-27 06:00:03.849 341726 19569 \N \N \N 166142 2024-02-27 06:00:02.514 2024-02-27 06:00:03.853 329588 17976 \N \N \N 166143 2024-02-27 06:00:02.514 2024-02-27 06:00:03.858 328069 14037 \N \N \N 166144 2024-02-27 06:00:02.514 2024-02-27 06:00:03.875 325489 2776 \N \N \N 166145 2024-02-27 06:00:02.514 2024-02-27 06:00:03.886 319879 20683 \N \N \N 166146 2024-02-27 06:00:02.514 2024-02-27 06:00:03.89 319846 14650 \N \N \N 166147 2024-02-27 06:00:02.514 2024-02-27 06:00:03.897 307747 1737 \N \N \N 166148 2024-02-27 06:00:02.514 2024-02-27 06:00:03.901 306824 19030 \N \N \N 166149 2024-02-27 06:00:02.514 2024-02-27 06:00:03.905 305803 19633 \N \N \N 166150 2024-02-27 06:00:02.514 2024-02-27 06:00:03.91 302141 894 \N \N \N 166151 2024-02-27 06:00:02.514 2024-02-27 06:00:03.914 301664 21441 \N \N \N 166152 2024-02-27 06:00:02.514 2024-02-27 06:00:03.919 295454 3304 \N \N \N 166153 2024-02-27 06:00:02.514 2024-02-27 06:00:03.923 282298 9200 \N \N \N 166154 2024-02-27 06:00:02.514 2024-02-27 06:00:03.927 278522 16406 \N \N \N 166155 2024-02-27 06:00:02.514 2024-02-27 06:00:03.937 269036 1773 \N \N \N 166156 2024-02-27 06:00:02.514 2024-02-27 06:00:03.942 269000 21455 \N \N \N 166157 2024-02-27 06:00:02.514 2024-02-27 06:00:03.949 265168 6149 \N \N \N 166158 2024-02-27 06:00:02.514 2024-02-27 06:00:03.959 260404 18426 \N \N \N 166159 2024-02-27 06:00:02.514 2024-02-27 06:00:03.965 260238 9427 \N \N \N 166160 2024-02-27 06:00:02.514 2024-02-27 06:00:03.97 252207 5978 \N \N \N 166161 2024-02-27 06:00:02.514 2024-02-27 06:00:03.984 252088 13216 \N \N \N 166162 2024-02-27 06:00:02.514 2024-02-27 06:00:03.996 251997 1705 \N \N \N 166163 2024-02-27 06:00:02.514 2024-02-27 06:00:04.008 251997 8080 \N \N \N 166164 2024-02-27 06:00:02.514 2024-02-27 06:00:04.043 247084 647 \N \N \N 166165 2024-02-27 06:00:02.514 2024-02-27 06:00:04.064 246918 20757 \N \N \N 166166 2024-02-27 06:00:02.514 2024-02-27 06:00:04.1 246918 20788 \N \N \N 166167 2024-02-27 06:00:02.514 2024-02-27 06:00:04.125 246918 18932 \N \N \N 166168 2024-02-27 06:00:02.514 2024-02-27 06:00:04.156 239330 16355 \N \N \N 166169 2024-02-27 06:00:02.514 2024-02-27 06:00:04.176 233254 20377 \N \N \N 166170 2024-02-27 06:00:02.514 2024-02-27 06:00:04.185 233223 980 \N \N \N 166171 2024-02-27 06:00:02.514 2024-02-27 06:00:04.201 226601 15271 \N \N \N 166172 2024-02-27 06:00:02.514 2024-02-27 06:00:04.22 224661 4128 \N \N \N 166173 2024-02-27 06:00:02.514 2024-02-27 06:00:04.242 219412 16633 \N \N \N 166174 2024-02-27 06:00:02.514 2024-02-27 06:00:04.249 213549 11992 \N \N \N 166175 2024-02-27 06:00:02.514 2024-02-27 06:00:04.257 213399 977 \N \N \N 166176 2024-02-27 06:00:02.514 2024-02-27 06:00:04.264 213346 12188 \N \N \N 166177 2024-02-27 06:00:02.514 2024-02-27 06:00:04.273 213283 1720 \N \N \N 166178 2024-02-27 06:00:02.514 2024-02-27 06:00:04.277 213263 6653 \N \N \N 166179 2024-02-27 06:00:02.514 2024-02-27 06:00:04.288 213239 2342 \N \N \N 166180 2024-02-27 06:00:02.514 2024-02-27 06:00:04.293 213238 12049 \N \N \N 166181 2024-02-27 06:00:02.514 2024-02-27 06:00:04.297 213230 20257 \N \N \N 166182 2024-02-27 06:00:02.514 2024-02-27 06:00:04.308 213230 20436 \N \N \N 166183 2024-02-27 06:00:02.514 2024-02-27 06:00:04.318 213230 5171 \N \N \N 166184 2024-02-27 06:00:02.514 2024-02-27 06:00:04.323 213230 19976 \N \N \N 166185 2024-02-27 06:00:02.514 2024-02-27 06:00:04.327 213230 20655 \N \N \N 166186 2024-02-27 06:00:02.514 2024-02-27 06:00:04.332 213230 4650 \N \N \N 166187 2024-02-27 06:00:02.514 2024-02-27 06:00:04.337 213230 17541 \N \N \N 166188 2024-02-27 06:00:02.514 2024-02-27 06:00:04.344 213230 11378 \N \N \N 166189 2024-02-27 06:00:02.514 2024-02-27 06:00:04.35 213230 2293 \N \N \N 166190 2024-02-27 06:00:02.514 2024-02-27 06:00:04.36 202009 2224 \N \N \N 166191 2024-02-27 06:00:02.514 2024-02-27 06:00:04.367 201263 21485 \N \N \N 166192 2024-02-27 06:00:02.514 2024-02-27 06:00:04.382 201231 2056 \N \N \N 166193 2024-02-27 06:00:02.514 2024-02-27 06:00:04.388 201128 15119 \N \N \N 166194 2024-02-27 06:00:02.514 2024-02-27 06:00:04.393 201128 7587 \N \N \N 166195 2024-02-27 06:00:02.514 2024-02-27 06:00:04.399 201128 6335 \N \N \N 166196 2024-02-27 06:00:02.514 2024-02-27 06:00:04.403 201128 2829 \N \N \N 166197 2024-02-27 06:00:02.514 2024-02-27 06:00:04.412 199276 4521 \N \N \N 166198 2024-02-27 06:00:02.514 2024-02-27 06:00:04.418 196093 21060 \N \N \N 166199 2024-02-27 06:00:02.514 2024-02-27 06:00:04.422 196087 9367 \N \N \N 166200 2024-02-27 06:00:02.514 2024-02-27 06:00:04.43 196072 974 \N \N \N 166201 2024-02-27 06:00:02.514 2024-02-27 06:00:04.436 196049 5017 \N \N \N 166202 2024-02-27 06:00:02.514 2024-02-27 06:00:04.441 196049 8459 \N \N \N 166203 2024-02-27 06:00:02.514 2024-02-27 06:00:04.448 196049 15273 \N \N \N 166204 2024-02-27 06:00:02.514 2024-02-27 06:00:04.452 196049 19943 \N \N \N 166205 2024-02-27 06:00:02.514 2024-02-27 06:00:04.461 195352 10056 \N \N \N 166206 2024-02-27 06:00:02.514 2024-02-27 06:00:04.467 169343 19690 \N \N \N 166207 2024-02-27 06:00:02.514 2024-02-27 06:00:04.475 168824 1733 \N \N \N 166208 2024-02-27 06:00:02.514 2024-02-27 06:00:04.484 162152 807 \N \N \N 166209 2024-02-27 06:00:02.514 2024-02-27 06:00:04.49 161896 4323 \N \N \N 166210 2024-02-27 06:00:02.514 2024-02-27 06:00:04.497 159857 2832 \N \N \N 166211 2024-02-27 06:00:02.514 2024-02-27 06:00:04.506 159297 5806 \N \N \N 166212 2024-02-27 06:00:02.514 2024-02-27 06:00:04.516 152110 11789 \N \N \N 166213 2024-02-27 06:00:02.514 2024-02-27 06:00:04.544 152110 11423 \N \N \N 166214 2024-02-27 06:00:02.514 2024-02-27 06:00:04.568 149043 1038 \N \N \N 166215 2024-02-27 06:00:02.514 2024-02-27 06:00:04.584 147362 20022 \N \N \N 166216 2024-02-27 06:00:02.514 2024-02-27 06:00:04.609 143988 7913 \N \N \N 166217 2024-02-27 06:00:02.514 2024-02-27 06:00:04.623 138652 16754 \N \N \N 166218 2024-02-27 06:00:02.514 2024-02-27 06:00:04.636 133455 14122 \N \N \N 166219 2024-02-27 06:00:02.514 2024-02-27 06:00:04.643 118292 1122 \N \N \N 166220 2024-02-27 06:00:02.514 2024-02-27 06:00:04.648 118244 1047 \N \N \N 166221 2024-02-27 06:00:02.514 2024-02-27 06:00:04.659 118101 19044 \N \N \N 166222 2024-02-27 06:00:02.514 2024-02-27 06:00:04.672 116205 19652 \N \N \N 166223 2024-02-27 06:00:02.514 2024-02-27 06:00:04.678 116163 21062 \N \N \N 166224 2024-02-27 06:00:02.514 2024-02-27 06:00:04.687 114770 18119 \N \N \N 166225 2024-02-27 06:00:02.514 2024-02-27 06:00:04.704 114018 18396 \N \N \N 166226 2024-02-27 06:00:02.514 2024-02-27 06:00:04.72 108976 16542 \N \N \N 166227 2024-02-27 06:00:02.514 2024-02-27 06:00:04.751 108976 13753 \N \N \N 166228 2024-02-27 06:00:02.514 2024-02-27 06:00:04.757 106653 21139 \N \N \N 166229 2024-02-27 06:00:02.514 2024-02-27 06:00:04.762 106653 7903 \N \N \N 166230 2024-02-27 06:00:02.514 2024-02-27 06:00:04.769 106653 6136 \N \N \N 166231 2024-02-27 06:00:02.514 2024-02-27 06:00:04.773 106653 7097 \N \N \N 166232 2024-02-27 06:00:02.514 2024-02-27 06:00:04.778 106653 738 \N \N \N 166233 2024-02-27 06:00:02.514 2024-02-27 06:00:04.782 106622 6058 \N \N \N 166234 2024-02-27 06:00:02.514 2024-02-27 06:00:04.791 106619 20272 \N \N \N 166235 2024-02-27 06:00:02.514 2024-02-27 06:00:04.795 106619 21619 \N \N \N 166236 2024-02-27 06:00:02.514 2024-02-27 06:00:04.799 106615 2674 \N \N \N 166237 2024-02-27 06:00:02.514 2024-02-27 06:00:04.805 106615 18068 \N \N \N 166238 2024-02-27 06:00:02.514 2024-02-27 06:00:04.813 106615 20681 \N \N \N 166239 2024-02-27 06:00:02.514 2024-02-27 06:00:04.817 106615 679 \N \N \N 166240 2024-02-27 06:00:02.514 2024-02-27 06:00:04.823 106615 18232 \N \N \N 166241 2024-02-27 06:00:02.514 2024-02-27 06:00:04.828 106615 21214 \N \N \N 166242 2024-02-27 06:00:02.514 2024-02-27 06:00:04.833 106615 19668 \N \N \N 166243 2024-02-27 06:00:02.514 2024-02-27 06:00:04.838 106615 19995 \N \N \N 166244 2024-02-27 06:00:02.514 2024-02-27 06:00:04.845 105206 5759 \N \N \N 166245 2024-02-27 06:00:02.514 2024-02-27 06:00:04.856 105050 3360 \N \N \N 166246 2024-02-27 06:00:02.514 2024-02-27 06:00:04.862 101931 2829 \N \N \N 166247 2024-02-27 06:00:02.514 2024-02-27 06:00:04.87 100027 20306 \N \N \N 166248 2024-02-27 06:00:02.514 2024-02-27 06:00:04.879 99621 19907 \N \N \N 166249 2024-02-27 06:00:02.514 2024-02-27 06:00:04.885 96275 1047 \N \N \N 166250 2024-02-27 06:00:02.514 2024-02-27 06:00:04.892 94146 7587 \N \N \N 166251 2024-02-27 06:00:02.514 2024-02-27 06:00:04.896 93974 899 \N \N \N 166252 2024-02-27 06:00:02.514 2024-02-27 06:00:04.903 91746 21140 \N \N \N 166253 2024-02-27 06:00:02.514 2024-02-27 06:00:04.907 91661 21446 \N \N \N 166254 2024-02-27 06:00:02.514 2024-02-27 06:00:04.914 89933 12277 \N \N \N 166255 2024-02-27 06:00:02.514 2024-02-27 06:00:04.918 88489 5809 \N \N \N 166256 2024-02-27 06:00:02.514 2024-02-27 06:00:04.924 88489 19296 \N \N \N 166257 2024-02-27 06:00:02.514 2024-02-27 06:00:04.929 88433 19263 \N \N \N 166258 2024-02-27 06:00:02.514 2024-02-27 06:00:04.934 88433 3729 \N \N \N 166259 2024-02-27 06:00:02.514 2024-02-27 06:00:04.94 88433 18556 \N \N \N 166260 2024-02-27 06:00:02.514 2024-02-27 06:00:04.95 88433 15088 \N \N \N 166261 2024-02-27 06:00:02.514 2024-02-27 06:00:04.961 88433 685 \N \N \N 166262 2024-02-27 06:00:02.514 2024-02-27 06:00:04.972 88433 20660 \N \N \N 166263 2024-02-27 06:00:02.514 2024-02-27 06:00:04.978 88287 5794 \N \N \N 166264 2024-02-27 06:00:02.514 2024-02-27 06:00:04.983 88175 15624 \N \N \N 166265 2024-02-27 06:00:02.514 2024-02-27 06:00:04.99 88161 5757 \N \N \N 166266 2024-02-27 06:00:02.514 2024-02-27 06:00:04.997 88154 18119 \N \N \N 166267 2024-02-27 06:00:02.514 2024-02-27 06:00:05.002 88138 1352 \N \N \N 166268 2024-02-27 06:00:02.514 2024-02-27 06:00:05.007 88125 4322 \N \N \N 166269 2024-02-27 06:00:02.514 2024-02-27 06:00:05.021 88121 807 \N \N \N 166270 2024-02-27 06:00:02.514 2024-02-27 06:00:05.034 88121 20436 \N \N \N 166271 2024-02-27 06:00:02.514 2024-02-27 06:00:05.041 88088 13398 \N \N \N 166272 2024-02-27 06:00:02.514 2024-02-27 06:00:05.051 88088 18945 \N \N \N 166273 2024-02-27 06:00:02.514 2024-02-27 06:00:05.058 88088 7673 \N \N \N 166274 2024-02-27 06:00:02.514 2024-02-27 06:00:05.063 88088 3353 \N \N \N 166275 2024-02-27 06:00:02.514 2024-02-27 06:00:05.07 88088 1576 \N \N \N 166276 2024-02-27 06:00:02.514 2024-02-27 06:00:05.075 88088 14037 \N \N \N 166277 2024-02-27 06:00:02.514 2024-02-27 06:00:05.083 88088 20778 \N \N \N 166278 2024-02-27 06:00:02.514 2024-02-27 06:00:05.09 88088 20713 \N \N \N 166279 2024-02-27 06:00:02.514 2024-02-27 06:00:05.097 88088 18177 \N \N \N 166280 2024-02-27 06:00:02.514 2024-02-27 06:00:05.103 88088 18359 \N \N \N 166281 2024-02-27 06:00:02.514 2024-02-27 06:00:05.132 88088 909 \N \N \N 166282 2024-02-27 06:00:02.514 2024-02-27 06:00:05.152 88088 19689 \N \N \N 166283 2024-02-27 06:00:02.514 2024-02-27 06:00:05.157 88088 18119 \N \N \N 166284 2024-02-27 06:00:02.514 2024-02-27 06:00:05.162 88088 16259 \N \N \N 166285 2024-02-27 06:00:02.514 2024-02-27 06:00:05.168 88088 17984 \N \N \N 166286 2024-02-27 06:00:02.514 2024-02-27 06:00:05.175 88088 16097 \N \N \N 166287 2024-02-27 06:00:02.514 2024-02-27 06:00:05.184 88088 827 \N \N \N 166288 2024-02-27 06:00:02.514 2024-02-27 06:00:05.197 88088 1039 \N \N \N 166289 2024-02-27 06:00:02.514 2024-02-27 06:00:05.209 88088 20481 \N \N \N 166290 2024-02-27 06:00:02.514 2024-02-27 06:00:05.214 88088 20603 \N \N \N 166291 2024-02-27 06:00:02.514 2024-02-27 06:00:05.223 88088 10060 \N \N \N 166292 2024-02-27 06:00:02.514 2024-02-27 06:00:05.227 88088 9275 \N \N \N 166293 2024-02-27 06:00:02.514 2024-02-27 06:00:05.233 88088 5195 \N \N \N 166294 2024-02-27 06:00:02.514 2024-02-27 06:00:05.238 88088 2101 \N \N \N 166295 2024-02-27 06:00:02.514 2024-02-27 06:00:05.245 88088 18581 \N \N \N 166296 2024-02-27 06:00:02.514 2024-02-27 06:00:05.25 88088 671 \N \N \N 166297 2024-02-27 06:00:02.514 2024-02-27 06:00:05.256 85703 13527 \N \N \N 166298 2024-02-27 06:00:02.514 2024-02-27 06:00:05.26 82080 16177 \N \N \N 166299 2024-02-27 06:00:02.514 2024-02-27 06:00:05.265 80613 1647 \N \N \N 166300 2024-02-27 06:00:02.514 2024-02-27 06:00:05.274 79063 21627 \N \N \N 166301 2024-02-27 06:00:02.514 2024-02-27 06:00:05.279 77718 9337 \N \N \N 166302 2024-02-27 06:00:02.514 2024-02-27 06:00:05.29 77374 20084 \N \N \N 166303 2024-02-27 06:00:02.514 2024-02-27 06:00:05.297 77351 20998 \N \N \N 166304 2024-02-27 06:00:02.514 2024-02-27 06:00:05.308 77308 21296 \N \N \N 166305 2024-02-27 06:00:02.514 2024-02-27 06:00:05.316 77023 2961 \N \N \N 166306 2024-02-27 06:00:02.514 2024-02-27 06:00:05.323 76200 11820 \N \N \N 166307 2024-02-27 06:00:02.514 2024-02-27 06:00:05.342 76025 11789 \N \N \N 166308 2024-02-27 06:00:02.514 2024-02-27 06:00:05.35 73813 2338 \N \N \N 166309 2024-02-27 06:00:02.514 2024-02-27 06:00:05.357 72856 20788 \N \N \N 166310 2024-02-27 06:00:02.514 2024-02-27 06:00:05.366 72843 6471 \N \N \N 166311 2024-02-27 06:00:02.514 2024-02-27 06:00:05.384 71323 13217 \N \N \N 166312 2024-02-27 06:00:02.514 2024-02-27 06:00:05.408 71236 1652 \N \N \N 166313 2024-02-27 06:00:02.514 2024-02-27 06:00:05.444 68584 3729 \N \N \N 166314 2024-02-27 06:00:02.514 2024-02-27 06:00:05.46 65895 18896 \N \N \N 166315 2024-02-27 06:00:02.514 2024-02-27 06:00:05.468 65629 19458 \N \N \N 166316 2024-02-27 06:00:02.514 2024-02-27 06:00:05.477 65629 14385 \N \N \N 166317 2024-02-27 06:00:02.514 2024-02-27 06:00:05.486 63676 1692 \N \N \N 166318 2024-02-27 06:00:02.514 2024-02-27 06:00:05.491 63557 5708 \N \N \N 166319 2024-02-27 06:00:02.514 2024-02-27 06:00:05.495 61916 13133 \N \N \N 166320 2024-02-27 06:00:02.514 2024-02-27 06:00:05.505 57419 21357 \N \N \N 166321 2024-02-27 06:00:02.514 2024-02-27 06:00:05.53 57228 20730 \N \N \N 166322 2024-02-27 06:00:02.514 2024-02-27 06:00:05.607 56004 21136 \N \N \N 166323 2024-02-27 06:00:02.514 2024-02-27 06:00:05.636 55900 21291 \N \N \N 166324 2024-02-27 06:00:02.514 2024-02-27 06:00:05.651 55521 17552 \N \N \N 166325 2024-02-27 06:00:02.514 2024-02-27 06:00:05.666 55266 19030 \N \N \N 166326 2024-02-27 06:00:02.514 2024-02-27 06:00:05.686 55266 4062 \N \N \N 166327 2024-02-27 06:00:02.514 2024-02-27 06:00:05.702 54312 20647 \N \N \N 166328 2024-02-27 06:00:02.514 2024-02-27 06:00:05.747 52793 4798 \N \N \N 166329 2024-02-27 06:00:02.514 2024-02-27 06:00:05.76 52129 17014 \N \N \N 166330 2024-02-27 06:00:02.514 2024-02-27 06:00:05.774 51969 18945 \N \N \N 166331 2024-02-27 06:00:02.514 2024-02-27 06:00:05.789 51969 9969 \N \N \N 166332 2024-02-27 06:00:02.514 2024-02-27 06:00:05.832 51876 18460 \N \N \N 166333 2024-02-27 06:00:02.514 2024-02-27 06:00:05.86 51876 1729 \N \N \N 166334 2024-02-27 06:00:02.514 2024-02-27 06:00:05.876 51649 9809 \N \N \N 166335 2024-02-27 06:00:02.514 2024-02-27 06:00:05.888 51185 6717 \N \N \N 166336 2024-02-27 06:00:02.514 2024-02-27 06:00:05.935 51182 20267 \N \N \N 166337 2024-02-27 06:00:02.514 2024-02-27 06:00:05.961 51128 1478 \N \N \N 166338 2024-02-27 06:00:02.514 2024-02-27 06:00:05.978 51095 18174 \N \N \N 166339 2024-02-27 06:00:02.514 2024-02-27 06:00:05.994 51095 21506 \N \N \N 166340 2024-02-27 06:00:02.514 2024-02-27 06:00:06.017 51095 20754 \N \N \N 166341 2024-02-27 06:00:02.514 2024-02-27 06:00:06.047 51095 20745 \N \N \N 166342 2024-02-27 06:00:02.514 2024-02-27 06:00:06.072 51095 18865 \N \N \N 166343 2024-02-27 06:00:02.514 2024-02-27 06:00:06.096 51095 1602 \N \N \N 166344 2024-02-27 06:00:02.514 2024-02-27 06:00:06.12 50504 12139 \N \N \N 166345 2024-02-27 06:00:02.514 2024-02-27 06:00:06.152 50475 14381 \N \N \N 166346 2024-02-27 06:00:02.514 2024-02-27 06:00:06.213 50475 733 \N \N \N 166347 2024-02-27 06:00:02.514 2024-02-27 06:00:06.233 50475 10586 \N \N \N 166348 2024-02-27 06:00:02.514 2024-02-27 06:00:06.277 50475 1480 \N \N \N 166349 2024-02-27 06:00:02.514 2024-02-27 06:00:06.37 50444 18446 \N \N \N 166350 2024-02-27 06:00:02.514 2024-02-27 06:00:06.392 50444 16556 \N \N \N 166351 2024-02-27 06:00:02.514 2024-02-27 06:00:06.399 50444 19286 \N \N \N 166352 2024-02-27 06:00:02.514 2024-02-27 06:00:06.403 50444 19394 \N \N \N 166353 2024-02-27 06:00:02.514 2024-02-27 06:00:06.408 50444 15703 \N \N \N 166354 2024-02-27 06:00:02.514 2024-02-27 06:00:06.416 50426 17157 \N \N \N 166355 2024-02-27 06:00:02.514 2024-02-27 06:00:06.422 50225 6471 \N \N \N 166356 2024-02-27 06:00:02.514 2024-02-27 06:00:06.427 50013 20613 \N \N \N 166357 2024-02-27 06:00:02.514 2024-02-27 06:00:06.432 49641 18403 \N \N \N 166358 2024-02-27 06:00:02.514 2024-02-27 06:00:06.448 49459 913 \N \N \N 166359 2024-02-27 06:00:02.514 2024-02-27 06:00:06.569 49459 20701 \N \N \N 166360 2024-02-27 06:00:02.514 2024-02-27 06:00:06.65 49221 14357 \N \N \N 166361 2024-02-27 06:00:02.514 2024-02-27 06:00:06.657 49195 18468 \N \N \N 166362 2024-02-27 06:00:02.514 2024-02-27 06:00:06.664 49167 21269 \N \N \N 166363 2024-02-27 06:00:02.514 2024-02-27 06:00:06.67 49134 18314 \N \N \N 166364 2024-02-27 06:00:02.514 2024-02-27 06:00:06.679 49134 20066 \N \N \N 166365 2024-02-27 06:00:02.514 2024-02-27 06:00:06.685 49134 3392 \N \N \N 166366 2024-02-27 06:00:02.514 2024-02-27 06:00:06.692 49134 20481 \N \N \N 166367 2024-02-27 06:00:02.514 2024-02-27 06:00:06.697 49134 18526 \N \N \N 166368 2024-02-27 06:00:02.514 2024-02-27 06:00:06.704 49134 9339 \N \N \N 166369 2024-02-27 06:00:02.514 2024-02-27 06:00:06.71 49134 20687 \N \N \N 166370 2024-02-27 06:00:02.514 2024-02-27 06:00:06.718 49134 19732 \N \N \N 166371 2024-02-27 06:00:02.514 2024-02-27 06:00:06.734 49134 8870 \N \N \N 166372 2024-02-27 06:00:02.514 2024-02-27 06:00:06.746 49134 15103 \N \N \N 166373 2024-02-27 06:00:02.514 2024-02-27 06:00:06.768 49134 12721 \N \N \N 166374 2024-02-27 06:00:02.514 2024-02-27 06:00:06.78 49134 20776 \N \N \N 166375 2024-02-27 06:00:02.514 2024-02-27 06:00:06.794 46848 6499 \N \N \N 166376 2024-02-27 06:00:02.514 2024-02-27 06:00:06.813 46845 4395 \N \N \N 166377 2024-02-27 06:00:02.514 2024-02-27 06:00:06.819 46845 19037 \N \N \N 166378 2024-02-27 06:00:02.514 2024-02-27 06:00:06.827 1404873 2748 \N \N \N 166379 2024-02-27 06:00:02.514 2024-02-27 06:00:06.839 1290004 20562 \N \N \N 166380 2024-02-27 06:00:02.514 2024-02-27 06:00:06.845 1176735 3717 \N \N \N 166381 2024-02-27 06:00:02.514 2024-02-27 06:00:06.859 1010165 21520 \N \N \N 166382 2024-02-27 06:00:02.514 2024-02-27 06:00:06.866 1007709 10862 \N \N \N 166383 2024-02-27 06:00:02.514 2024-02-27 06:00:06.882 880379 736 \N \N \N 166384 2024-02-27 06:00:02.514 2024-02-27 06:00:06.89 864637 5195 \N \N \N 166385 2024-02-27 06:00:02.514 2024-02-27 06:00:06.908 859989 14791 \N \N \N 166386 2024-02-27 06:00:02.514 2024-02-27 06:00:06.916 794555 8648 \N \N \N 166387 2024-02-27 06:00:02.514 2024-02-27 06:00:06.92 783836 7654 \N \N \N 166388 2024-02-27 06:00:02.514 2024-02-27 06:00:06.929 727139 876 \N \N \N 166389 2024-02-27 06:00:02.514 2024-02-27 06:00:06.941 693064 15697 \N \N \N 166390 2024-02-27 06:00:02.514 2024-02-27 06:00:06.946 679935 13553 \N \N \N 166391 2024-02-27 06:00:02.514 2024-02-27 06:00:06.952 658273 738 \N \N \N 166392 2024-02-27 06:00:02.514 2024-02-27 06:00:06.957 657309 16440 \N \N \N 166393 2024-02-27 06:00:02.514 2024-02-27 06:00:06.964 852700 11073 \N \N \N 166394 2024-02-27 06:00:02.514 2024-02-27 06:00:06.971 586449 15075 \N \N \N 166395 2024-02-27 06:00:02.514 2024-02-27 06:00:06.979 586165 696 \N \N \N 166396 2024-02-27 06:00:02.514 2024-02-27 06:00:06.985 566159 17741 \N \N \N 166397 2024-02-27 06:00:02.514 2024-02-27 06:00:06.989 559097 20623 \N \N \N 166398 2024-02-27 06:00:02.514 2024-02-27 06:00:06.993 536339 620 \N \N \N 166399 2024-02-27 06:00:02.514 2024-02-27 06:00:06.997 527995 19296 \N \N \N 166400 2024-02-27 06:00:02.514 2024-02-27 06:00:07.003 499730 21491 \N \N \N 166401 2024-02-27 06:00:02.514 2024-02-27 06:00:07.007 490843 16230 \N \N \N 166402 2024-02-27 06:00:02.514 2024-02-27 06:00:07.012 489522 18984 \N \N \N 166403 2024-02-27 06:00:02.514 2024-02-27 06:00:07.019 459877 1617 \N \N \N 166404 2024-02-27 06:00:02.514 2024-02-27 06:00:07.026 455574 15806 \N \N \N 166405 2024-02-27 06:00:02.514 2024-02-27 06:00:07.03 446303 18068 \N \N \N 166406 2024-02-27 06:00:02.514 2024-02-27 06:00:07.051 440670 9346 \N \N \N 166407 2024-02-27 06:00:02.514 2024-02-27 06:00:07.059 432910 11430 \N \N \N 166408 2024-02-27 06:00:02.514 2024-02-27 06:00:07.068 426488 5759 \N \N \N 166409 2024-02-27 06:00:02.514 2024-02-27 06:00:07.081 408795 16966 \N \N \N 166410 2024-02-27 06:00:02.514 2024-02-27 06:00:07.096 399803 3544 \N \N \N 166411 2024-02-27 06:00:02.514 2024-02-27 06:00:07.112 384645 14202 \N \N \N 166412 2024-02-27 06:00:02.514 2024-02-27 06:00:07.117 372232 20911 \N \N \N 166413 2024-02-27 06:00:02.514 2024-02-27 06:00:07.122 370097 21417 \N \N \N 166414 2024-02-27 06:00:02.514 2024-02-27 06:00:07.126 363293 4624 \N \N \N 166415 2024-02-27 06:00:02.514 2024-02-27 06:00:07.132 358392 18124 \N \N \N 166416 2024-02-27 06:00:02.514 2024-02-27 06:00:07.137 330731 21491 \N \N \N 166417 2024-02-27 06:00:02.514 2024-02-27 06:00:07.142 330698 9167 \N \N \N 166418 2024-02-27 06:00:02.514 2024-02-27 06:00:07.146 320594 12024 \N \N \N 166419 2024-02-27 06:00:02.514 2024-02-27 06:00:07.152 313508 12483 \N \N \N 166420 2024-02-27 06:00:02.514 2024-02-27 06:00:07.157 309223 21506 \N \N \N 166421 2024-02-27 06:00:02.514 2024-02-27 06:00:07.163 307310 16432 \N \N \N 166422 2024-02-27 06:00:02.514 2024-02-27 06:00:07.169 306611 16532 \N \N \N 166423 2024-02-27 06:00:02.514 2024-02-27 06:00:07.174 304585 12930 \N \N \N 166424 2024-02-27 06:00:02.514 2024-02-27 06:00:07.179 299505 19906 \N \N \N 166425 2024-02-27 06:00:02.514 2024-02-27 06:00:07.187 297312 1478 \N \N \N 166426 2024-02-27 06:00:02.514 2024-02-27 06:00:07.193 291635 6471 \N \N \N 166427 2024-02-27 06:00:02.514 2024-02-27 06:00:07.198 290503 17602 \N \N \N 166428 2024-02-27 06:00:02.514 2024-02-27 06:00:07.203 290369 18314 \N \N \N 166429 2024-02-27 06:00:02.514 2024-02-27 06:00:07.208 289572 20979 \N \N \N 166430 2024-02-27 06:00:02.514 2024-02-27 06:00:07.215 278071 16357 \N \N \N 166431 2024-02-27 06:00:02.514 2024-02-27 06:00:07.222 273877 640 \N \N \N 166432 2024-02-27 06:00:02.514 2024-02-27 06:00:07.227 272219 1195 \N \N \N 166433 2024-02-27 06:00:02.514 2024-02-27 06:00:07.234 271260 18453 \N \N \N 166434 2024-02-27 06:00:02.514 2024-02-27 06:00:07.24 262427 20551 \N \N \N 166435 2024-02-27 06:00:02.514 2024-02-27 06:00:07.245 258359 18393 \N \N \N 166436 2024-02-27 06:00:02.514 2024-02-27 06:00:07.25 249328 13365 \N \N \N 166437 2024-02-27 06:00:02.514 2024-02-27 06:00:07.255 246240 11164 \N \N \N 166438 2024-02-27 06:00:02.514 2024-02-27 06:00:07.261 239865 10771 \N \N \N 166439 2024-02-27 06:00:02.514 2024-02-27 06:00:07.268 235199 15488 \N \N \N 166440 2024-02-27 06:00:02.514 2024-02-27 06:00:07.291 234848 6765 \N \N \N 166441 2024-02-27 06:00:02.514 2024-02-27 06:00:07.306 234834 19284 \N \N \N 166442 2024-02-27 06:00:02.514 2024-02-27 06:00:07.315 230212 5495 \N \N \N 166443 2024-02-27 06:00:02.514 2024-02-27 06:00:07.337 213219 18225 \N \N \N 166444 2024-02-27 06:00:02.514 2024-02-27 06:00:07.352 206020 1114 \N \N \N 166445 2024-02-27 06:00:02.514 2024-02-27 06:00:07.378 203961 3683 \N \N \N 166446 2024-02-27 06:00:02.514 2024-02-27 06:00:07.394 191990 21262 \N \N \N 166447 2024-02-27 06:00:02.514 2024-02-27 06:00:07.411 188091 633 \N \N \N 166448 2024-02-27 06:00:02.514 2024-02-27 06:00:07.443 185202 2674 \N \N \N 166449 2024-02-27 06:00:02.514 2024-02-27 06:00:07.525 183659 16867 \N \N \N 166450 2024-02-27 06:00:02.514 2024-02-27 06:00:07.584 181913 3353 \N \N \N 166451 2024-02-27 06:00:02.514 2024-02-27 06:00:07.64 181907 18735 \N \N \N 166452 2024-02-27 06:00:02.514 2024-02-27 06:00:07.666 181899 2735 \N \N \N 166453 2024-02-27 06:00:02.514 2024-02-27 06:00:07.699 181748 14169 \N \N \N 166454 2024-02-27 06:00:02.514 2024-02-27 06:00:07.729 181722 16126 \N \N \N 166455 2024-02-27 06:00:02.514 2024-02-27 06:00:07.745 177952 1208 \N \N \N 166456 2024-02-27 06:00:02.514 2024-02-27 06:00:07.763 175386 19309 \N \N \N 166457 2024-02-27 06:00:02.514 2024-02-27 06:00:07.789 167062 1512 \N \N \N 166458 2024-02-27 06:00:02.514 2024-02-27 06:00:07.826 166238 18351 \N \N \N 166459 2024-02-27 06:00:02.514 2024-02-27 06:00:07.86 166238 19281 \N \N \N 166460 2024-02-27 06:00:02.514 2024-02-27 06:00:07.898 166170 13399 \N \N \N 166461 2024-02-27 06:00:02.514 2024-02-27 06:00:07.959 166170 17602 \N \N \N 166462 2024-02-27 06:00:02.514 2024-02-27 06:00:07.992 166169 633 \N \N \N 166463 2024-02-27 06:00:02.514 2024-02-27 06:00:08.024 166159 21421 \N \N \N 166464 2024-02-27 06:00:02.514 2024-02-27 06:00:08.042 166144 1985 \N \N \N 166465 2024-02-27 06:00:02.514 2024-02-27 06:00:08.092 163097 20613 \N \N \N 166466 2024-02-27 06:00:02.514 2024-02-27 06:00:08.132 157820 1198 \N \N \N 166467 2024-02-27 06:00:02.514 2024-02-27 06:00:08.175 156741 20436 \N \N \N 166468 2024-02-27 06:00:02.514 2024-02-27 06:00:08.243 156741 10013 \N \N \N 166469 2024-02-27 06:00:02.514 2024-02-27 06:00:08.258 153489 20802 \N \N \N 166470 2024-02-27 06:00:02.514 2024-02-27 06:00:08.264 152003 20280 \N \N \N 166471 2024-02-27 06:00:02.514 2024-02-27 06:00:08.275 150273 17030 \N \N \N 166472 2024-02-27 06:00:02.514 2024-02-27 06:00:08.29 142122 685 \N \N \N 166473 2024-02-27 06:00:02.514 2024-02-27 06:00:08.31 138384 621 \N \N \N 166474 2024-02-27 06:00:02.514 2024-02-27 06:00:08.333 131843 13903 \N \N \N 166475 2024-02-27 06:00:02.514 2024-02-27 06:00:08.346 130570 628 \N \N \N 166476 2024-02-27 06:00:02.514 2024-02-27 06:00:08.372 119668 19911 \N \N \N 166477 2024-02-28 06:00:03.823 2024-02-28 06:00:03.828 8104644 1030 \N \N \N 166478 2024-02-28 06:00:03.823 2024-02-28 06:00:03.863 2916713 10342 \N \N \N 166479 2024-02-28 06:00:03.823 2024-02-28 06:00:03.876 2211074 14225 \N \N \N 166480 2024-02-28 06:00:03.823 2024-02-28 06:00:03.885 2048597 8326 \N \N \N 166481 2024-02-28 06:00:03.823 2024-02-28 06:00:03.893 1985617 20243 \N \N \N 166482 2024-02-28 06:00:03.823 2024-02-28 06:00:03.9 1707186 19105 \N \N \N 166483 2024-02-28 06:00:03.823 2024-02-28 06:00:03.907 1580960 19502 \N \N \N 166484 2024-02-28 06:00:03.823 2024-02-28 06:00:03.916 1400921 16356 \N \N \N 166485 2024-02-28 06:00:03.823 2024-02-28 06:00:03.93 1399916 19637 \N \N \N 166486 2024-02-28 06:00:03.823 2024-02-28 06:00:03.936 1170410 1136 \N \N \N 166487 2024-02-28 06:00:03.823 2024-02-28 06:00:03.942 1139468 11144 \N \N \N 166488 2024-02-28 06:00:03.823 2024-02-28 06:00:03.949 1082210 9084 \N \N \N 166489 2024-02-28 06:00:03.823 2024-02-28 06:00:03.958 1025586 15617 \N \N \N 166490 2024-02-28 06:00:03.823 2024-02-28 06:00:03.966 971399 21463 \N \N \N 166491 2024-02-28 06:00:03.823 2024-02-28 06:00:03.977 803383 19911 \N \N \N 166492 2024-02-28 06:00:03.823 2024-02-28 06:00:03.988 799775 6361 \N \N \N 166493 2024-02-28 06:00:03.823 2024-02-28 06:00:03.994 759795 2460 \N \N \N 166494 2024-02-28 06:00:03.823 2024-02-28 06:00:04.001 707799 10693 \N \N \N 166495 2024-02-28 06:00:03.823 2024-02-28 06:00:04.011 700525 17237 \N \N \N 166496 2024-02-28 06:00:03.823 2024-02-28 06:00:04.017 671619 3642 \N \N \N 166497 2024-02-28 06:00:03.823 2024-02-28 06:00:04.024 669527 1114 \N \N \N 166498 2024-02-28 06:00:03.823 2024-02-28 06:00:04.031 661430 17713 \N \N \N 166499 2024-02-28 06:00:03.823 2024-02-28 06:00:04.037 657112 1468 \N \N \N 166500 2024-02-28 06:00:03.823 2024-02-28 06:00:04.046 593692 1038 \N \N \N 166501 2024-02-28 06:00:03.823 2024-02-28 06:00:04.052 583911 14404 \N \N \N 166502 2024-02-28 06:00:03.823 2024-02-28 06:00:04.059 537275 20891 \N \N \N 166503 2024-02-28 06:00:03.823 2024-02-28 06:00:04.066 454012 16876 \N \N \N 166504 2024-02-28 06:00:03.823 2024-02-28 06:00:04.073 440734 16769 \N \N \N 166505 2024-02-28 06:00:03.823 2024-02-28 06:00:04.079 403644 20624 \N \N \N 166506 2024-02-28 06:00:03.823 2024-02-28 06:00:04.085 326776 3304 \N \N \N 166507 2024-02-28 06:00:03.823 2024-02-28 06:00:04.091 316545 9816 \N \N \N 166508 2024-02-28 06:00:03.823 2024-02-28 06:00:04.098 301563 19909 \N \N \N 166509 2024-02-28 06:00:03.823 2024-02-28 06:00:04.105 296780 2022 \N \N \N 166510 2024-02-28 06:00:03.823 2024-02-28 06:00:04.113 288978 8448 \N \N \N 166511 2024-02-28 06:00:03.823 2024-02-28 06:00:04.119 288035 21540 \N \N \N 166512 2024-02-28 06:00:03.823 2024-02-28 06:00:04.125 286844 21585 \N \N \N 166513 2024-02-28 06:00:03.823 2024-02-28 06:00:04.131 254801 13931 \N \N \N 166514 2024-02-28 06:00:03.823 2024-02-28 06:00:04.138 249408 11263 \N \N \N 166515 2024-02-28 06:00:03.823 2024-02-28 06:00:04.144 235809 14225 \N \N \N 166516 2024-02-28 06:00:03.823 2024-02-28 06:00:04.15 228088 994 \N \N \N 166517 2024-02-28 06:00:03.823 2024-02-28 06:00:04.158 224750 20062 \N \N \N 166518 2024-02-28 06:00:03.823 2024-02-28 06:00:04.164 223871 14465 \N \N \N 166519 2024-02-28 06:00:03.823 2024-02-28 06:00:04.177 219404 20969 \N \N \N 166520 2024-02-28 06:00:03.823 2024-02-28 06:00:04.186 218527 4225 \N \N \N 166521 2024-02-28 06:00:03.823 2024-02-28 06:00:04.196 214743 11516 \N \N \N 166522 2024-02-28 06:00:03.823 2024-02-28 06:00:04.202 213423 18601 \N \N \N 166523 2024-02-28 06:00:03.823 2024-02-28 06:00:04.21 207092 21042 \N \N \N 166524 2024-02-28 06:00:03.823 2024-02-28 06:00:04.216 205489 7760 \N \N \N 166525 2024-02-28 06:00:03.823 2024-02-28 06:00:04.222 194323 6430 \N \N \N 166526 2024-02-28 06:00:03.823 2024-02-28 06:00:04.232 187362 18280 \N \N \N 166527 2024-02-28 06:00:03.823 2024-02-28 06:00:04.238 186660 21131 \N \N \N 166528 2024-02-28 06:00:03.823 2024-02-28 06:00:04.244 174721 21119 \N \N \N 166529 2024-02-28 06:00:03.823 2024-02-28 06:00:04.25 173537 12507 \N \N \N 166530 2024-02-28 06:00:03.823 2024-02-28 06:00:04.256 168461 18745 \N \N \N 166531 2024-02-28 06:00:03.823 2024-02-28 06:00:04.264 159950 18124 \N \N \N 166532 2024-02-28 06:00:03.823 2024-02-28 06:00:04.27 159754 2609 \N \N \N 166533 2024-02-28 06:00:03.823 2024-02-28 06:00:04.276 159067 11678 \N \N \N 166534 2024-02-28 06:00:03.823 2024-02-28 06:00:04.282 158698 21166 \N \N \N 166535 2024-02-28 06:00:03.823 2024-02-28 06:00:04.288 156775 730 \N \N \N 166536 2024-02-28 06:00:03.823 2024-02-28 06:00:04.294 155477 20594 \N \N \N 166537 2024-02-28 06:00:03.823 2024-02-28 06:00:04.302 153484 18139 \N \N \N 166538 2024-02-28 06:00:03.823 2024-02-28 06:00:04.308 148064 9494 \N \N \N 166539 2024-02-28 06:00:03.823 2024-02-28 06:00:04.314 147722 21136 \N \N \N 166540 2024-02-28 06:00:03.823 2024-02-28 06:00:04.321 138830 21140 \N \N \N 166541 2024-02-28 06:00:03.823 2024-02-28 06:00:04.328 130061 11395 \N \N \N 166542 2024-02-28 06:00:03.823 2024-02-28 06:00:04.333 126952 1175 \N \N \N 166543 2024-02-28 06:00:03.823 2024-02-28 06:00:04.34 123530 20179 \N \N \N 166544 2024-02-28 06:00:03.823 2024-02-28 06:00:04.346 121823 9346 \N \N \N 166545 2024-02-28 06:00:03.823 2024-02-28 06:00:04.352 106536 1221 \N \N \N 166546 2024-02-28 06:00:03.823 2024-02-28 06:00:04.358 105953 18664 \N \N \N 166547 2024-02-28 06:00:03.823 2024-02-28 06:00:04.366 104446 9985 \N \N \N 166548 2024-02-28 06:00:03.823 2024-02-28 06:00:04.373 96556 5293 \N \N \N 166549 2024-02-28 06:00:03.823 2024-02-28 06:00:04.379 94950 16988 \N \N \N 166550 2024-02-28 06:00:03.823 2024-02-28 06:00:04.386 88800 1609 \N \N \N 166551 2024-02-28 06:00:03.823 2024-02-28 06:00:04.394 80969 16176 \N \N \N 166552 2024-02-28 06:00:03.823 2024-02-28 06:00:04.403 80693 20555 \N \N \N 166553 2024-02-28 06:00:03.823 2024-02-28 06:00:04.411 73726 16966 \N \N \N 166554 2024-02-28 06:00:03.823 2024-02-28 06:00:04.417 69180 6499 \N \N \N 166555 2024-02-28 06:00:03.823 2024-02-28 06:00:04.424 68645 19663 \N \N \N 166556 2024-02-28 06:00:03.823 2024-02-28 06:00:04.43 68303 2309 \N \N \N 166557 2024-02-28 06:00:03.823 2024-02-28 06:00:04.437 67877 13622 \N \N \N 166558 2024-02-28 06:00:03.823 2024-02-28 06:00:04.446 66962 14941 \N \N \N 166559 2024-02-28 06:00:03.823 2024-02-28 06:00:04.454 63976 4650 \N \N \N 166560 2024-02-28 06:00:03.823 2024-02-28 06:00:04.462 61331 6041 \N \N \N 166561 2024-02-28 06:00:03.823 2024-02-28 06:00:04.468 54822 621 \N \N \N 166562 2024-02-28 06:00:03.823 2024-02-28 06:00:04.475 53731 16447 \N \N \N 166563 2024-02-28 06:00:03.823 2024-02-28 06:00:04.48 50083 20162 \N \N \N 166564 2024-02-28 06:00:03.823 2024-02-28 06:00:04.486 48993 1567 \N \N \N 166565 2024-02-28 06:00:03.823 2024-02-28 06:00:04.493 45425 12278 \N \N \N 166566 2024-02-28 06:00:03.823 2024-02-28 06:00:04.5 45304 20258 \N \N \N 166567 2024-02-28 06:00:03.823 2024-02-28 06:00:04.505 44428 7510 \N \N \N 166568 2024-02-28 06:00:03.823 2024-02-28 06:00:04.514 43642 16704 \N \N \N 166569 2024-02-28 06:00:03.823 2024-02-28 06:00:04.521 41722 12721 \N \N \N 166570 2024-02-28 06:00:03.823 2024-02-28 06:00:04.526 38175 21422 \N \N \N 166571 2024-02-28 06:00:03.823 2024-02-28 06:00:04.534 35359 5085 \N \N \N 166572 2024-02-28 06:00:03.823 2024-02-28 06:00:04.54 35279 15049 \N \N \N 166573 2024-02-28 06:00:03.823 2024-02-28 06:00:04.55 35007 14650 \N \N \N 166574 2024-02-28 06:00:03.823 2024-02-28 06:00:04.558 25700 17218 \N \N \N 166575 2024-02-28 06:00:03.823 2024-02-28 06:00:04.568 19347 16355 \N \N \N 166576 2024-02-28 06:00:03.823 2024-02-28 06:00:04.577 18361 4043 \N \N \N 166577 2024-02-28 06:00:03.823 2024-02-28 06:00:04.592 13157 4323 \N \N \N 166578 2024-02-28 06:00:03.823 2024-02-28 06:00:04.602 4656244 21352 \N \N \N 166579 2024-02-28 06:00:03.823 2024-02-28 06:00:04.609 3427889 7809 \N \N \N 166580 2024-02-28 06:00:03.823 2024-02-28 06:00:04.619 3207907 811 \N \N \N 166581 2024-02-28 06:00:03.823 2024-02-28 06:00:04.63 1719748 17316 \N \N \N 166582 2024-02-28 06:00:03.823 2024-02-28 06:00:04.645 1564230 11561 \N \N \N 166583 2024-02-28 06:00:03.823 2024-02-28 06:00:04.662 1331755 738 \N \N \N 166584 2024-02-28 06:00:03.823 2024-02-28 06:00:04.67 1292721 19902 \N \N \N 166585 2024-02-28 06:00:03.823 2024-02-28 06:00:04.688 1273246 12769 \N \N \N 166586 2024-02-28 06:00:03.823 2024-02-28 06:00:04.717 1003086 10536 \N \N \N 166587 2024-02-28 06:00:03.823 2024-02-28 06:00:04.732 888228 721 \N \N \N 166588 2024-02-28 06:00:03.823 2024-02-28 06:00:04.745 807072 2046 \N \N \N 166589 2024-02-28 06:00:03.823 2024-02-28 06:00:04.752 799051 18306 \N \N \N 166590 2024-02-28 06:00:03.823 2024-02-28 06:00:04.768 798498 685 \N \N \N 166591 2024-02-28 06:00:03.823 2024-02-28 06:00:04.779 738407 11776 \N \N \N 166592 2024-02-28 06:00:03.823 2024-02-28 06:00:04.792 737220 20036 \N \N \N 166593 2024-02-28 06:00:03.823 2024-02-28 06:00:04.8 722313 9843 \N \N \N 166594 2024-02-28 06:00:03.823 2024-02-28 06:00:04.806 685117 20500 \N \N \N 166595 2024-02-28 06:00:03.823 2024-02-28 06:00:04.813 650103 8508 \N \N \N 166596 2024-02-28 06:00:03.823 2024-02-28 06:00:04.833 647884 15326 \N \N \N 166597 2024-02-28 06:00:03.823 2024-02-28 06:00:04.845 619352 20254 \N \N \N 166598 2024-02-28 06:00:03.823 2024-02-28 06:00:04.856 617315 16351 \N \N \N 166599 2024-02-28 06:00:03.823 2024-02-28 06:00:04.863 544451 20636 \N \N \N 166600 2024-02-28 06:00:03.823 2024-02-28 06:00:04.87 543171 4048 \N \N \N 166601 2024-02-28 06:00:03.823 2024-02-28 06:00:04.879 511124 7760 \N \N \N 166602 2024-02-28 06:00:03.823 2024-02-28 06:00:04.886 459766 20023 \N \N \N 166603 2024-02-28 06:00:03.823 2024-02-28 06:00:04.892 428835 17568 \N \N \N 166604 2024-02-28 06:00:03.823 2024-02-28 06:00:04.899 426111 17741 \N \N \N 166605 2024-02-28 06:00:03.823 2024-02-28 06:00:04.905 424801 19281 \N \N \N 166606 2024-02-28 06:00:03.823 2024-02-28 06:00:04.912 424422 16594 \N \N \N 166607 2024-02-28 06:00:03.823 2024-02-28 06:00:04.918 411031 18896 \N \N \N 166608 2024-02-28 06:00:03.823 2024-02-28 06:00:04.924 319898 6555 \N \N \N 166609 2024-02-28 06:00:03.823 2024-02-28 06:00:04.93 312425 4259 \N \N \N 166610 2024-02-28 06:00:03.823 2024-02-28 06:00:04.936 309755 19557 \N \N \N 166611 2024-02-28 06:00:03.823 2024-02-28 06:00:04.942 289228 6327 \N \N \N 166612 2024-02-28 06:00:03.823 2024-02-28 06:00:04.947 287525 1647 \N \N \N 166613 2024-02-28 06:00:03.823 2024-02-28 06:00:04.953 282156 9418 \N \N \N 166614 2024-02-28 06:00:03.823 2024-02-28 06:00:04.962 279844 18231 \N \N \N 166615 2024-02-28 06:00:03.823 2024-02-28 06:00:04.97 264592 17082 \N \N \N 166616 2024-02-28 06:00:03.823 2024-02-28 06:00:04.981 260503 3360 \N \N \N 166617 2024-02-28 06:00:03.823 2024-02-28 06:00:04.988 251559 17522 \N \N \N 166618 2024-02-28 06:00:03.823 2024-02-28 06:00:04.994 243726 11075 \N \N \N 166619 2024-02-28 06:00:03.823 2024-02-28 06:00:05.001 243109 9992 \N \N \N 166620 2024-02-28 06:00:03.823 2024-02-28 06:00:05.022 240260 16788 \N \N \N 166621 2024-02-28 06:00:03.823 2024-02-28 06:00:05.029 235281 9362 \N \N \N 166622 2024-02-28 06:00:03.823 2024-02-28 06:00:05.036 228930 19843 \N \N \N 166623 2024-02-28 06:00:03.823 2024-02-28 06:00:05.058 227849 13198 \N \N \N 166624 2024-02-28 06:00:03.823 2024-02-28 06:00:05.065 214753 20904 \N \N \N 166625 2024-02-28 06:00:03.823 2024-02-28 06:00:05.077 200459 19462 \N \N \N 166626 2024-02-28 06:00:03.823 2024-02-28 06:00:05.085 194604 3456 \N \N \N 166627 2024-02-28 06:00:03.823 2024-02-28 06:00:05.092 192735 7766 \N \N \N 166628 2024-02-28 06:00:03.823 2024-02-28 06:00:05.127 186585 16357 \N \N \N 166629 2024-02-28 06:00:03.823 2024-02-28 06:00:05.136 183323 770 \N \N \N 166630 2024-02-28 06:00:03.823 2024-02-28 06:00:05.145 182518 5173 \N \N \N 166631 2024-02-28 06:00:03.823 2024-02-28 06:00:05.154 179335 9844 \N \N \N 166632 2024-02-28 06:00:03.823 2024-02-28 06:00:05.161 174754 21540 \N \N \N 166633 2024-02-28 06:00:03.823 2024-02-28 06:00:05.17 173454 2502 \N \N \N 166634 2024-02-28 06:00:03.823 2024-02-28 06:00:05.176 171194 10359 \N \N \N 166635 2024-02-28 06:00:03.823 2024-02-28 06:00:05.185 171168 19930 \N \N \N 166636 2024-02-28 06:00:03.823 2024-02-28 06:00:05.193 165887 18472 \N \N \N 166637 2024-02-28 06:00:03.823 2024-02-28 06:00:05.199 165756 8059 \N \N \N 166638 2024-02-28 06:00:03.823 2024-02-28 06:00:05.205 162908 8289 \N \N \N 166639 2024-02-28 06:00:03.823 2024-02-28 06:00:05.213 161057 14295 \N \N \N 166640 2024-02-28 06:00:03.823 2024-02-28 06:00:05.22 159247 20788 \N \N \N 166641 2024-02-28 06:00:03.823 2024-02-28 06:00:05.226 157851 17673 \N \N \N 166642 2024-02-28 06:00:03.823 2024-02-28 06:00:05.234 152079 21291 \N \N \N 166643 2024-02-28 06:00:03.823 2024-02-28 06:00:05.25 147931 18909 \N \N \N 166644 2024-02-28 06:00:03.823 2024-02-28 06:00:05.258 145343 951 \N \N \N 166645 2024-02-28 06:00:03.823 2024-02-28 06:00:05.269 138320 679 \N \N \N 166646 2024-02-28 06:00:03.823 2024-02-28 06:00:05.276 134777 20023 \N \N \N 166647 2024-02-28 06:00:03.823 2024-02-28 06:00:05.283 133431 13174 \N \N \N 166648 2024-02-28 06:00:03.823 2024-02-28 06:00:05.289 131380 21600 \N \N \N 166649 2024-02-28 06:00:03.823 2024-02-28 06:00:05.331 129561 19309 \N \N \N 166650 2024-02-28 06:00:03.823 2024-02-28 06:00:05.347 129111 1213 \N \N \N 166651 2024-02-28 06:00:03.823 2024-02-28 06:00:05.382 128904 5565 \N \N \N 166652 2024-02-28 06:00:03.823 2024-02-28 06:00:05.415 126110 8505 \N \N \N 166653 2024-02-28 06:00:03.823 2024-02-28 06:00:05.433 122952 18640 \N \N \N 166654 2024-02-28 06:00:03.823 2024-02-28 06:00:05.464 121273 19235 \N \N \N 166655 2024-02-28 06:00:03.823 2024-02-28 06:00:05.499 120101 708 \N \N \N 166656 2024-02-28 06:00:03.823 2024-02-28 06:00:05.571 118316 674 \N \N \N 166657 2024-02-28 06:00:03.823 2024-02-28 06:00:05.59 117855 692 \N \N \N 166658 2024-02-28 06:00:03.823 2024-02-28 06:00:05.599 107537 1273 \N \N \N 166659 2024-02-28 06:00:03.823 2024-02-28 06:00:05.606 104953 20218 \N \N \N 166660 2024-02-28 06:00:03.823 2024-02-28 06:00:05.612 102803 622 \N \N \N 166661 2024-02-28 06:00:03.823 2024-02-28 06:00:05.622 102507 18378 \N \N \N 166662 2024-02-28 06:00:03.823 2024-02-28 06:00:05.63 102074 17741 \N \N \N 166663 2024-02-28 06:00:03.823 2024-02-28 06:00:05.636 101177 12188 \N \N \N 166664 2024-02-28 06:00:03.823 2024-02-28 06:00:05.642 99941 9348 \N \N \N 166665 2024-02-28 06:00:03.823 2024-02-28 06:00:05.649 99879 2789 \N \N \N 166666 2024-02-28 06:00:03.823 2024-02-28 06:00:05.655 99389 20597 \N \N \N 166667 2024-02-28 06:00:03.823 2024-02-28 06:00:05.66 99263 15052 \N \N \N 166668 2024-02-28 06:00:03.823 2024-02-28 06:00:05.667 93630 6310 \N \N \N 166669 2024-02-28 06:00:03.823 2024-02-28 06:00:05.673 91453 20897 \N \N \N 166670 2024-02-28 06:00:03.823 2024-02-28 06:00:05.679 89502 9290 \N \N \N 166671 2024-02-28 06:00:03.823 2024-02-28 06:00:05.685 88516 13763 \N \N \N 166672 2024-02-28 06:00:03.823 2024-02-28 06:00:05.691 85367 2583 \N \N \N 166673 2024-02-28 06:00:03.823 2024-02-28 06:00:05.697 85323 21361 \N \N \N 166674 2024-02-28 06:00:03.823 2024-02-28 06:00:05.703 85092 19494 \N \N \N 166675 2024-02-28 06:00:03.823 2024-02-28 06:00:05.71 84706 19469 \N \N \N 166676 2024-02-28 06:00:03.823 2024-02-28 06:00:05.718 84525 18675 \N \N \N 166677 2024-02-28 06:00:03.823 2024-02-28 06:00:05.724 84216 18735 \N \N \N 166678 2024-02-28 06:00:03.823 2024-02-28 06:00:05.73 79496 21494 \N \N \N 166679 2024-02-28 06:00:03.823 2024-02-28 06:00:05.739 77516 626 \N \N \N 166680 2024-02-28 06:00:03.823 2024-02-28 06:00:05.745 76507 17172 \N \N \N 166681 2024-02-28 06:00:03.823 2024-02-28 06:00:05.751 74852 2724 \N \N \N 166682 2024-02-28 06:00:03.823 2024-02-28 06:00:05.756 74461 763 \N \N \N 166683 2024-02-28 06:00:03.823 2024-02-28 06:00:05.764 73338 11820 \N \N \N 166684 2024-02-28 06:00:03.823 2024-02-28 06:00:05.77 72951 11298 \N \N \N 166685 2024-02-28 06:00:03.823 2024-02-28 06:00:05.777 72566 14202 \N \N \N 166686 2024-02-28 06:00:03.823 2024-02-28 06:00:05.783 72516 20450 \N \N \N 166687 2024-02-28 06:00:03.823 2024-02-28 06:00:05.789 71508 17166 \N \N \N 166688 2024-02-28 06:00:03.823 2024-02-28 06:00:05.795 69912 618 \N \N \N 166689 2024-02-28 06:00:03.823 2024-02-28 06:00:05.801 69436 19836 \N \N \N 166690 2024-02-28 06:00:03.823 2024-02-28 06:00:05.806 68334 9307 \N \N \N 166691 2024-02-28 06:00:03.823 2024-02-28 06:00:05.812 67720 19553 \N \N \N 166692 2024-02-28 06:00:03.823 2024-02-28 06:00:05.82 62732 12346 \N \N \N 166693 2024-02-28 06:00:03.823 2024-02-28 06:00:05.825 62633 14791 \N \N \N 166694 2024-02-28 06:00:03.823 2024-02-28 06:00:05.83 62352 987 \N \N \N 166695 2024-02-28 06:00:03.823 2024-02-28 06:00:05.836 61932 18989 \N \N \N 166696 2024-02-28 06:00:03.823 2024-02-28 06:00:05.842 61398 1784 \N \N \N 166697 2024-02-28 06:00:03.823 2024-02-28 06:00:05.848 59077 21057 \N \N \N 166698 2024-02-28 06:00:03.823 2024-02-28 06:00:05.854 59044 1136 \N \N \N 166699 2024-02-28 06:00:03.823 2024-02-28 06:00:05.863 58324 20852 \N \N \N 166700 2024-02-28 06:00:03.823 2024-02-28 06:00:05.87 58040 20433 \N \N \N 166701 2024-02-28 06:00:03.823 2024-02-28 06:00:05.876 57495 15213 \N \N \N 166702 2024-02-28 06:00:03.823 2024-02-28 06:00:05.883 54009 4059 \N \N \N 166703 2024-02-28 06:00:03.823 2024-02-28 06:00:05.889 53779 711 \N \N \N 166704 2024-02-28 06:00:03.823 2024-02-28 06:00:05.895 53722 9345 \N \N \N 166705 2024-02-28 06:00:03.823 2024-02-28 06:00:05.901 52473 1003 \N \N \N 166706 2024-02-28 06:00:03.823 2024-02-28 06:00:05.907 51499 2961 \N \N \N 166707 2024-02-28 06:00:03.823 2024-02-28 06:00:05.914 51171 18816 \N \N \N 166708 2024-02-28 06:00:03.823 2024-02-28 06:00:05.92 50626 18402 \N \N \N 166709 2024-02-28 06:00:03.823 2024-02-28 06:00:05.925 50325 2335 \N \N \N 166710 2024-02-28 06:00:03.823 2024-02-28 06:00:05.931 48809 20647 \N \N \N 166711 2024-02-28 06:00:03.823 2024-02-28 06:00:05.937 48551 631 \N \N \N 166712 2024-02-28 06:00:03.823 2024-02-28 06:00:05.943 48497 20525 \N \N \N 166713 2024-02-28 06:00:03.823 2024-02-28 06:00:05.95 48463 730 \N \N \N 166714 2024-02-28 06:00:03.823 2024-02-28 06:00:05.956 48396 21040 \N \N \N 166715 2024-02-28 06:00:03.823 2024-02-28 06:00:05.963 45872 897 \N \N \N 166716 2024-02-28 06:00:03.823 2024-02-28 06:00:05.969 45519 10056 \N \N \N 166717 2024-02-28 06:00:03.823 2024-02-28 06:00:05.976 44589 21014 \N \N \N 166718 2024-02-28 06:00:03.823 2024-02-28 06:00:05.982 44505 10393 \N \N \N 166719 2024-02-28 06:00:03.823 2024-02-28 06:00:05.987 44434 7772 \N \N \N 166720 2024-02-28 06:00:03.823 2024-02-28 06:00:05.993 43260 2780 \N \N \N 166721 2024-02-28 06:00:03.823 2024-02-28 06:00:05.999 42346 18675 \N \N \N 166722 2024-02-28 06:00:03.823 2024-02-28 06:00:06.007 42195 21303 \N \N \N 166723 2024-02-28 06:00:03.823 2024-02-28 06:00:06.013 41620 20162 \N \N \N 166724 2024-02-28 06:00:03.823 2024-02-28 06:00:06.02 41401 15045 \N \N \N 166725 2024-02-28 06:00:03.823 2024-02-28 06:00:06.027 40966 18679 \N \N \N 166726 2024-02-28 06:00:03.823 2024-02-28 06:00:06.033 39725 9353 \N \N \N 166727 2024-02-28 06:00:03.823 2024-02-28 06:00:06.039 39311 6777 \N \N \N 166728 2024-02-28 06:00:03.823 2024-02-28 06:00:06.046 38368 20337 \N \N \N 166729 2024-02-28 06:00:03.823 2024-02-28 06:00:06.052 37810 18241 \N \N \N 166730 2024-02-28 06:00:03.823 2024-02-28 06:00:06.058 37290 12272 \N \N \N 166731 2024-02-28 06:00:03.823 2024-02-28 06:00:06.064 37148 19016 \N \N \N 166732 2024-02-28 06:00:03.823 2024-02-28 06:00:06.07 36570 18313 \N \N \N 166733 2024-02-28 06:00:03.823 2024-02-28 06:00:06.077 35571 9367 \N \N \N 166734 2024-02-28 06:00:03.823 2024-02-28 06:00:06.087 34531 940 \N \N \N 166735 2024-02-28 06:00:03.823 2024-02-28 06:00:06.094 34253 18865 \N \N \N 166736 2024-02-28 06:00:03.823 2024-02-28 06:00:06.1 33381 13100 \N \N \N 166737 2024-02-28 06:00:03.823 2024-02-28 06:00:06.106 32910 777 \N \N \N 166738 2024-02-28 06:00:03.823 2024-02-28 06:00:06.112 32372 2952 \N \N \N 166739 2024-02-28 06:00:03.823 2024-02-28 06:00:06.118 32112 20231 \N \N \N 166740 2024-02-28 06:00:03.823 2024-02-28 06:00:06.124 31811 18460 \N \N \N 166741 2024-02-28 06:00:03.823 2024-02-28 06:00:06.13 31766 7376 \N \N \N 166742 2024-02-28 06:00:03.823 2024-02-28 06:00:06.136 30957 2620 \N \N \N 166743 2024-02-28 06:00:03.823 2024-02-28 06:00:06.142 30483 16348 \N \N \N 166744 2024-02-28 06:00:03.823 2024-02-28 06:00:06.148 29816 2724 \N \N \N 166745 2024-02-28 06:00:03.823 2024-02-28 06:00:06.153 29480 11996 \N \N \N 166746 2024-02-28 06:00:03.823 2024-02-28 06:00:06.161 29202 20381 \N \N \N 166747 2024-02-28 06:00:03.823 2024-02-28 06:00:06.166 28858 20246 \N \N \N 166748 2024-02-28 06:00:03.823 2024-02-28 06:00:06.172 28679 711 \N \N \N 166749 2024-02-28 06:00:03.823 2024-02-28 06:00:06.179 28084 13854 \N \N \N 166750 2024-02-28 06:00:03.823 2024-02-28 06:00:06.185 28046 21400 \N \N \N 166751 2024-02-28 06:00:03.823 2024-02-28 06:00:06.191 27722 1044 \N \N \N 166752 2024-02-28 06:00:03.823 2024-02-28 06:00:06.198 26973 18751 \N \N \N 166753 2024-02-28 06:00:03.823 2024-02-28 06:00:06.204 26072 18690 \N \N \N 166754 2024-02-28 06:00:03.823 2024-02-28 06:00:06.21 24815 21481 \N \N \N 166755 2024-02-28 06:00:03.823 2024-02-28 06:00:06.216 24742 21103 \N \N \N 166756 2024-02-28 06:00:03.823 2024-02-28 06:00:06.222 24741 14278 \N \N \N 166757 2024-02-28 06:00:03.823 2024-02-28 06:00:06.227 24394 18235 \N \N \N 166758 2024-02-28 06:00:03.823 2024-02-28 06:00:06.233 23893 17201 \N \N \N 166759 2024-02-28 06:00:03.823 2024-02-28 06:00:06.238 23596 4238 \N \N \N 166760 2024-02-28 06:00:03.823 2024-02-28 06:00:06.245 22821 844 \N \N \N 166761 2024-02-28 06:00:03.823 2024-02-28 06:00:06.251 22036 18231 \N \N \N 166762 2024-02-28 06:00:03.823 2024-02-28 06:00:06.257 20374 14015 \N \N \N 166763 2024-02-28 06:00:03.823 2024-02-28 06:00:06.264 19295 15115 \N \N \N 166764 2024-02-28 06:00:03.823 2024-02-28 06:00:06.27 19101 19126 \N \N \N 166765 2024-02-28 06:00:03.823 2024-02-28 06:00:06.276 18705 15052 \N \N \N 166766 2024-02-28 06:00:03.823 2024-02-28 06:00:06.283 18038 825 \N \N \N 166767 2024-02-28 06:00:03.823 2024-02-28 06:00:06.289 17151 14465 \N \N \N 166768 2024-02-28 06:00:03.823 2024-02-28 06:00:06.295 16813 6137 \N \N \N 166769 2024-02-28 06:00:03.823 2024-02-28 06:00:06.3 16711 9494 \N \N \N 166770 2024-02-28 06:00:03.823 2024-02-28 06:00:06.306 16691 19902 \N \N \N 166771 2024-02-28 06:00:03.823 2024-02-28 06:00:06.313 16371 18989 \N \N \N 166772 2024-02-28 06:00:03.823 2024-02-28 06:00:06.32 15689 14791 \N \N \N 166773 2024-02-28 06:00:03.823 2024-02-28 06:00:06.327 15121 19094 \N \N \N 166774 2024-02-28 06:00:03.823 2024-02-28 06:00:06.334 15009 20187 \N \N \N 166775 2024-02-28 06:00:03.823 2024-02-28 06:00:06.34 14661 5128 \N \N \N 166776 2024-02-28 06:00:03.823 2024-02-28 06:00:06.346 13183 8729 \N \N \N 166777 2024-02-28 06:00:03.823 2024-02-28 06:00:06.351 12972 16809 \N \N \N 166778 2024-02-28 06:00:03.823 2024-02-28 06:00:06.358 12654 2576 \N \N \N 166779 2024-02-28 06:00:03.823 2024-02-28 06:00:06.364 11839 910 \N \N \N 166780 2024-02-28 06:00:03.823 2024-02-28 06:00:06.371 11182 15474 \N \N \N 166781 2024-02-28 06:00:03.823 2024-02-28 06:00:06.377 10102 11165 \N \N \N 166782 2024-02-28 06:00:03.823 2024-02-28 06:00:06.384 10081 1195 \N \N \N 166783 2024-02-28 06:00:03.823 2024-02-28 06:00:06.391 9894 8535 \N \N \N 166784 2024-02-28 06:00:03.823 2024-02-28 06:00:06.397 9685 937 \N \N \N 166785 2024-02-28 06:00:03.823 2024-02-28 06:00:06.403 7216 11145 \N \N \N 166786 2024-02-28 06:00:03.823 2024-02-28 06:00:06.41 7203 768 \N \N \N 166787 2024-02-28 06:00:03.823 2024-02-28 06:00:06.417 5510 4115 \N \N \N 166788 2024-02-28 06:00:03.823 2024-02-28 06:00:06.423 5256 16387 \N \N \N 166789 2024-02-28 06:00:03.823 2024-02-28 06:00:06.43 4976 21166 \N \N \N 166790 2024-02-28 06:00:03.823 2024-02-28 06:00:06.437 4883 794 \N \N \N 166791 2024-02-28 06:00:03.823 2024-02-28 06:00:06.444 607032 861 \N \N \N 166792 2024-02-28 06:00:03.823 2024-02-28 06:00:06.453 540444 9655 \N \N \N 166793 2024-02-28 06:00:03.823 2024-02-28 06:00:06.46 540365 15484 \N \N \N 166794 2024-02-28 06:00:03.823 2024-02-28 06:00:06.472 537566 16670 \N \N \N 166795 2024-02-28 06:00:03.823 2024-02-28 06:00:06.48 480908 2576 \N \N \N 166796 2024-02-28 06:00:03.823 2024-02-28 06:00:06.488 478599 19398 \N \N \N 166797 2024-02-28 06:00:03.823 2024-02-28 06:00:06.497 474993 9982 \N \N \N 166798 2024-02-28 06:00:03.823 2024-02-28 06:00:06.513 471581 8841 \N \N \N 166799 2024-02-28 06:00:03.823 2024-02-28 06:00:06.524 465421 19531 \N \N \N 166800 2024-02-28 06:00:03.823 2024-02-28 06:00:06.532 463351 19138 \N \N \N 166801 2024-02-28 06:00:03.823 2024-02-28 06:00:06.542 447286 13878 \N \N \N 166802 2024-02-28 06:00:03.823 2024-02-28 06:00:06.552 445392 18219 \N \N \N 166803 2024-02-28 06:00:03.823 2024-02-28 06:00:06.56 441970 651 \N \N \N 166804 2024-02-28 06:00:03.823 2024-02-28 06:00:06.569 429954 5794 \N \N \N 166805 2024-02-28 06:00:03.823 2024-02-28 06:00:06.577 426502 19103 \N \N \N 166806 2024-02-28 06:00:03.823 2024-02-28 06:00:06.586 424758 19087 \N \N \N 166807 2024-02-28 06:00:03.823 2024-02-28 06:00:06.604 411984 20080 \N \N \N 166808 2024-02-28 06:00:03.823 2024-02-28 06:00:06.613 407191 14939 \N \N \N 166809 2024-02-28 06:00:03.823 2024-02-28 06:00:06.624 396573 18393 \N \N \N 166810 2024-02-28 06:00:03.823 2024-02-28 06:00:06.634 386495 6765 \N \N \N 166811 2024-02-28 06:00:03.823 2024-02-28 06:00:06.643 386199 19796 \N \N \N 166812 2024-02-28 06:00:03.823 2024-02-28 06:00:06.65 380853 666 \N \N \N 166813 2024-02-28 06:00:03.823 2024-02-28 06:00:06.66 369154 9342 \N \N \N 166814 2024-02-28 06:00:03.823 2024-02-28 06:00:06.669 366490 2188 \N \N \N 166815 2024-02-28 06:00:03.823 2024-02-28 06:00:06.679 348836 12277 \N \N \N 166816 2024-02-28 06:00:03.823 2024-02-28 06:00:06.688 344481 6191 \N \N \N 166817 2024-02-28 06:00:03.823 2024-02-28 06:00:06.695 336531 994 \N \N \N 166818 2024-02-28 06:00:03.823 2024-02-28 06:00:06.703 332266 16867 \N \N \N 166819 2024-02-28 06:00:03.823 2024-02-28 06:00:06.712 328706 20337 \N \N \N 166820 2024-02-28 06:00:03.823 2024-02-28 06:00:06.724 326055 8376 \N \N \N 166821 2024-02-28 06:00:03.823 2024-02-28 06:00:06.739 325097 10280 \N \N \N 166822 2024-02-28 06:00:03.823 2024-02-28 06:00:06.758 319237 2639 \N \N \N 166823 2024-02-28 06:00:03.823 2024-02-28 06:00:06.766 311090 628 \N \N \N 166824 2024-02-28 06:00:03.823 2024-02-28 06:00:06.775 306541 5036 \N \N \N 166825 2024-02-28 06:00:03.823 2024-02-28 06:00:06.784 304117 13132 \N \N \N 166826 2024-02-28 06:00:03.823 2024-02-28 06:00:06.793 296800 660 \N \N \N 166827 2024-02-28 06:00:03.823 2024-02-28 06:00:06.801 294646 1823 \N \N \N 166828 2024-02-28 06:00:03.823 2024-02-28 06:00:06.815 285940 20738 \N \N \N 166829 2024-02-28 06:00:03.823 2024-02-28 06:00:06.821 282240 13174 \N \N \N 166830 2024-02-28 06:00:03.823 2024-02-28 06:00:06.829 275273 900 \N \N \N 166831 2024-02-28 06:00:03.823 2024-02-28 06:00:06.837 275192 18068 \N \N \N 166832 2024-02-28 06:00:03.823 2024-02-28 06:00:06.846 275192 19292 \N \N \N 166833 2024-02-28 06:00:03.823 2024-02-28 06:00:06.856 272164 1012 \N \N \N 166834 2024-02-28 06:00:03.823 2024-02-28 06:00:06.865 264193 8664 \N \N \N 166835 2024-02-28 06:00:03.823 2024-02-28 06:00:06.877 261506 11220 \N \N \N 166836 2024-02-28 06:00:03.823 2024-02-28 06:00:06.898 261377 20756 \N \N \N 166837 2024-02-28 06:00:03.823 2024-02-28 06:00:06.911 261376 10342 \N \N \N 166838 2024-02-28 06:00:03.823 2024-02-28 06:00:06.925 260569 859 \N \N \N 166839 2024-02-28 06:00:03.823 2024-02-28 06:00:06.933 256108 9107 \N \N \N 166840 2024-02-28 06:00:03.823 2024-02-28 06:00:06.948 247681 19732 \N \N \N 166841 2024-02-28 06:00:03.823 2024-02-28 06:00:06.955 246233 15200 \N \N \N 166842 2024-02-28 06:00:03.823 2024-02-28 06:00:06.967 246146 17162 \N \N \N 166843 2024-02-28 06:00:03.823 2024-02-28 06:00:06.981 245451 20326 \N \N \N 166844 2024-02-28 06:00:03.823 2024-02-28 06:00:06.99 244118 21303 \N \N \N 166845 2024-02-28 06:00:03.823 2024-02-28 06:00:06.999 242098 16532 \N \N \N 166846 2024-02-28 06:00:03.823 2024-02-28 06:00:07.012 242006 12769 \N \N \N 166847 2024-02-28 06:00:03.823 2024-02-28 06:00:07.021 241991 20094 \N \N \N 166848 2024-02-28 06:00:03.823 2024-02-28 06:00:07.032 241940 1512 \N \N \N 166849 2024-02-28 06:00:03.823 2024-02-28 06:00:07.047 241903 19557 \N \N \N 166850 2024-02-28 06:00:03.823 2024-02-28 06:00:07.069 237375 1064 \N \N \N 166851 2024-02-28 06:00:03.823 2024-02-28 06:00:07.079 237274 15732 \N \N \N 166852 2024-02-28 06:00:03.823 2024-02-28 06:00:07.09 236635 5776 \N \N \N 166853 2024-02-28 06:00:03.823 2024-02-28 06:00:07.103 235035 21455 \N \N \N 166854 2024-02-28 06:00:03.823 2024-02-28 06:00:07.112 228091 17041 \N \N \N 166855 2024-02-28 06:00:03.823 2024-02-28 06:00:07.123 227159 21421 \N \N \N 166856 2024-02-28 06:00:03.823 2024-02-28 06:00:07.132 221286 16954 \N \N \N 166857 2024-02-28 06:00:03.823 2024-02-28 06:00:07.159 221264 21427 \N \N \N 166858 2024-02-28 06:00:03.823 2024-02-28 06:00:07.167 221255 1122 \N \N \N 166859 2024-02-28 06:00:03.823 2024-02-28 06:00:07.179 221250 14280 \N \N \N 166860 2024-02-28 06:00:03.823 2024-02-28 06:00:07.188 221250 10519 \N \N \N 166861 2024-02-28 06:00:03.823 2024-02-28 06:00:07.202 221221 19570 \N \N \N 166862 2024-02-28 06:00:03.823 2024-02-28 06:00:07.21 221221 7979 \N \N \N 166863 2024-02-28 06:00:03.823 2024-02-28 06:00:07.219 221176 13622 \N \N \N 166864 2024-02-28 06:00:03.823 2024-02-28 06:00:07.23 221174 4768 \N \N \N 166865 2024-02-28 06:00:03.823 2024-02-28 06:00:07.24 221174 18892 \N \N \N 166866 2024-02-28 06:00:03.823 2024-02-28 06:00:07.263 221167 1105 \N \N \N 166867 2024-02-28 06:00:03.823 2024-02-28 06:00:07.272 221167 899 \N \N \N 166868 2024-02-28 06:00:03.823 2024-02-28 06:00:07.279 221167 18220 \N \N \N 166869 2024-02-28 06:00:03.823 2024-02-28 06:00:07.291 221167 9349 \N \N \N 166870 2024-02-28 06:00:03.823 2024-02-28 06:00:07.3 221167 14280 \N \N \N 166871 2024-02-28 06:00:03.823 2024-02-28 06:00:07.315 221167 17682 \N \N \N 166872 2024-02-28 06:00:03.823 2024-02-28 06:00:07.323 221167 1173 \N \N \N 166873 2024-02-28 06:00:03.823 2024-02-28 06:00:07.332 221167 10409 \N \N \N 166874 2024-02-28 06:00:03.823 2024-02-28 06:00:07.341 218424 4175 \N \N \N 166875 2024-02-28 06:00:03.823 2024-02-28 06:00:07.354 210823 18641 \N \N \N 166876 2024-02-28 06:00:03.823 2024-02-28 06:00:07.366 208870 20500 \N \N \N 166877 2024-02-28 06:00:03.823 2024-02-28 06:00:07.375 208787 623 \N \N \N 166878 2024-02-28 06:00:03.823 2024-02-28 06:00:07.383 208753 20858 \N \N \N 166879 2024-02-28 06:00:03.823 2024-02-28 06:00:07.39 208752 3439 \N \N \N 166880 2024-02-28 06:00:03.823 2024-02-28 06:00:07.401 208747 12562 \N \N \N 166881 2024-02-28 06:00:03.823 2024-02-28 06:00:07.409 208720 2722 \N \N \N 166882 2024-02-28 06:00:03.823 2024-02-28 06:00:07.416 208708 3392 \N \N \N 166883 2024-02-28 06:00:03.823 2024-02-28 06:00:07.425 208698 2431 \N \N \N 166884 2024-02-28 06:00:03.823 2024-02-28 06:00:07.437 208660 21481 \N \N \N 166885 2024-02-28 06:00:03.823 2024-02-28 06:00:07.448 208651 18311 \N \N \N 166886 2024-02-28 06:00:03.823 2024-02-28 06:00:07.455 208651 21446 \N \N \N 166887 2024-02-28 06:00:03.823 2024-02-28 06:00:07.465 208638 18828 \N \N \N 166888 2024-02-28 06:00:03.823 2024-02-28 06:00:07.479 208638 20198 \N \N \N 166889 2024-02-28 06:00:03.823 2024-02-28 06:00:07.489 208638 18751 \N \N \N 166890 2024-02-28 06:00:03.823 2024-02-28 06:00:07.497 208635 761 \N \N \N 166891 2024-02-28 06:00:03.823 2024-02-28 06:00:07.504 208614 19033 \N \N \N 166892 2024-02-28 06:00:03.823 2024-02-28 06:00:07.512 208614 18068 \N \N \N 166893 2024-02-28 06:00:03.823 2024-02-28 06:00:07.522 208614 2749 \N \N \N 166894 2024-02-28 06:00:03.823 2024-02-28 06:00:07.534 208614 1489 \N \N \N 166895 2024-02-28 06:00:03.823 2024-02-28 06:00:07.542 208614 19637 \N \N \N 166896 2024-02-28 06:00:03.823 2024-02-28 06:00:07.55 208614 19537 \N \N \N 166897 2024-02-28 06:00:03.823 2024-02-28 06:00:07.558 208614 17212 \N \N \N 166898 2024-02-28 06:00:03.823 2024-02-28 06:00:07.57 208614 897 \N \N \N 166899 2024-02-28 06:00:03.823 2024-02-28 06:00:07.579 208614 15273 \N \N \N 166900 2024-02-28 06:00:03.823 2024-02-28 06:00:07.588 208614 2614 \N \N \N 166901 2024-02-28 06:00:03.823 2024-02-28 06:00:07.597 208614 669 \N \N \N 166902 2024-02-28 06:00:03.823 2024-02-28 06:00:07.605 208614 13781 \N \N \N 166903 2024-02-28 06:00:03.823 2024-02-28 06:00:07.614 208614 12261 \N \N \N 166904 2024-02-28 06:00:03.823 2024-02-28 06:00:07.625 208614 15526 \N \N \N 166905 2024-02-28 06:00:03.823 2024-02-28 06:00:07.636 208614 18359 \N \N \N 166906 2024-02-28 06:00:03.823 2024-02-28 06:00:07.645 208614 650 \N \N \N 166907 2024-02-28 06:00:03.823 2024-02-28 06:00:07.654 208614 6798 \N \N \N 166908 2024-02-28 06:00:03.823 2024-02-28 06:00:07.662 203396 21463 \N \N \N 166909 2024-02-28 06:00:03.823 2024-02-28 06:00:07.671 203385 16809 \N \N \N 166910 2024-02-28 06:00:03.823 2024-02-28 06:00:07.68 203346 15243 \N \N \N 166911 2024-02-28 06:00:03.823 2024-02-28 06:00:07.692 203346 16966 \N \N \N 166912 2024-02-28 06:00:03.823 2024-02-28 06:00:07.7 203346 7827 \N \N \N 166913 2024-02-28 06:00:03.823 2024-02-28 06:00:07.709 203346 19292 \N \N \N 166914 2024-02-28 06:00:03.823 2024-02-28 06:00:07.719 203346 20979 \N \N \N 166915 2024-02-28 06:00:03.823 2024-02-28 06:00:07.735 203346 1801 \N \N \N 166916 2024-02-28 06:00:03.823 2024-02-28 06:00:07.748 203255 807 \N \N \N 166917 2024-02-28 06:00:03.823 2024-02-28 06:00:07.758 202623 15806 \N \N \N 166918 2024-02-28 06:00:03.823 2024-02-28 06:00:07.768 202349 2711 \N \N \N 166919 2024-02-28 06:00:03.823 2024-02-28 06:00:07.779 189990 19459 \N \N \N 166920 2024-02-28 06:00:03.823 2024-02-28 06:00:07.791 177155 14449 \N \N \N 166921 2024-02-28 06:00:03.823 2024-02-28 06:00:07.799 167922 627 \N \N \N 166922 2024-02-28 06:00:03.823 2024-02-28 06:00:07.814 165807 18101 \N \N \N 166923 2024-02-28 06:00:03.823 2024-02-28 06:00:07.822 165226 10519 \N \N \N 166924 2024-02-28 06:00:03.823 2024-02-28 06:00:07.832 156785 4177 \N \N \N 166925 2024-02-28 06:00:03.823 2024-02-28 06:00:07.839 150798 5069 \N \N \N 166926 2024-02-28 06:00:03.823 2024-02-28 06:00:07.847 150584 15925 \N \N \N 166927 2024-02-28 06:00:03.823 2024-02-28 06:00:07.863 150203 19553 \N \N \N 166928 2024-02-28 06:00:03.823 2024-02-28 06:00:07.874 149188 8423 \N \N \N 166929 2024-02-28 06:00:03.823 2024-02-28 06:00:07.886 138422 20906 \N \N \N 166930 2024-02-28 06:00:03.823 2024-02-28 06:00:07.902 137045 18615 \N \N \N 166931 2024-02-28 06:00:03.823 2024-02-28 06:00:07.91 135798 861 \N \N \N 166932 2024-02-28 06:00:03.823 2024-02-28 06:00:07.917 135679 21116 \N \N \N 166933 2024-02-28 06:00:03.823 2024-02-28 06:00:07.924 131418 16059 \N \N \N 166934 2024-02-28 06:00:03.823 2024-02-28 06:00:07.932 130353 2774 \N \N \N 166935 2024-02-28 06:00:03.823 2024-02-28 06:00:07.944 127223 20619 \N \N \N 166936 2024-02-28 06:00:03.823 2024-02-28 06:00:07.952 119796 9916 \N \N \N 166937 2024-02-28 06:00:03.823 2024-02-28 06:00:07.963 119485 3683 \N \N \N 166938 2024-02-28 06:00:03.823 2024-02-28 06:00:07.97 117723 1141 \N \N \N 166939 2024-02-28 06:00:03.823 2024-02-28 06:00:07.979 117092 15806 \N \N \N 166940 2024-02-28 06:00:03.823 2024-02-28 06:00:07.988 111133 14651 \N \N \N 166941 2024-02-28 06:00:03.823 2024-02-28 06:00:07.995 110737 18640 \N \N \N 166942 2024-02-28 06:00:03.823 2024-02-28 06:00:08.013 110620 998 \N \N \N 166943 2024-02-28 06:00:03.823 2024-02-28 06:00:08.042 110591 3709 \N \N \N 166944 2024-02-28 06:00:03.823 2024-02-28 06:00:08.053 110587 738 \N \N \N 166945 2024-02-28 06:00:03.823 2024-02-28 06:00:08.073 110587 20066 \N \N \N 166946 2024-02-28 06:00:03.823 2024-02-28 06:00:08.092 110583 4650 \N \N \N 166947 2024-02-28 06:00:03.823 2024-02-28 06:00:08.11 110583 3342 \N \N \N 166948 2024-02-28 06:00:03.823 2024-02-28 06:00:08.118 110583 12566 \N \N \N 166949 2024-02-28 06:00:03.823 2024-02-28 06:00:08.127 110583 19435 \N \N \N 166950 2024-02-28 06:00:03.823 2024-02-28 06:00:08.136 110583 12976 \N \N \N 166951 2024-02-28 06:00:03.823 2024-02-28 06:00:08.145 110583 1105 \N \N \N 166952 2024-02-28 06:00:03.823 2024-02-28 06:00:08.154 110583 3656 \N \N \N 166953 2024-02-28 06:00:03.823 2024-02-28 06:00:08.162 110583 12188 \N \N \N 166954 2024-02-28 06:00:03.823 2024-02-28 06:00:08.17 110583 5708 \N \N \N 166955 2024-02-28 06:00:03.823 2024-02-28 06:00:08.18 110583 12265 \N \N \N 166956 2024-02-28 06:00:03.823 2024-02-28 06:00:08.188 110583 1064 \N \N \N 166957 2024-02-28 06:00:03.823 2024-02-28 06:00:08.2 110583 16667 \N \N \N 166958 2024-02-28 06:00:03.823 2024-02-28 06:00:08.208 110583 19848 \N \N \N 166959 2024-02-28 06:00:03.823 2024-02-28 06:00:08.216 110583 12738 \N \N \N 166960 2024-02-28 06:00:03.823 2024-02-28 06:00:08.225 107463 13204 \N \N \N 166961 2024-02-28 06:00:03.823 2024-02-28 06:00:08.235 102180 19375 \N \N \N 166962 2024-02-28 06:00:03.823 2024-02-28 06:00:08.246 101862 9695 \N \N \N 166963 2024-02-28 06:00:03.823 2024-02-28 06:00:08.255 97472 1769 \N \N \N 166964 2024-02-28 06:00:03.823 2024-02-28 06:00:08.275 97293 20889 \N \N \N 166965 2024-02-28 06:00:03.823 2024-02-28 06:00:08.285 95946 20744 \N \N \N 166966 2024-02-28 06:00:03.823 2024-02-28 06:00:08.297 94230 20551 \N \N \N 166967 2024-02-28 06:00:03.823 2024-02-28 06:00:08.317 94230 21356 \N \N \N 166968 2024-02-28 06:00:03.823 2024-02-28 06:00:08.329 94230 9150 \N \N \N 166969 2024-02-28 06:00:03.823 2024-02-28 06:00:08.335 94199 17714 \N \N \N 166970 2024-02-28 06:00:03.823 2024-02-28 06:00:08.343 93280 1354 \N \N \N 166971 2024-02-28 06:00:03.823 2024-02-28 06:00:08.351 93250 20180 \N \N \N 166972 2024-02-28 06:00:03.823 2024-02-28 06:00:08.359 91573 12245 \N \N \N 166973 2024-02-28 06:00:03.823 2024-02-28 06:00:08.372 91366 20254 \N \N \N 166974 2024-02-28 06:00:03.823 2024-02-28 06:00:08.384 91366 18526 \N \N \N 166975 2024-02-28 06:00:03.823 2024-02-28 06:00:08.392 91366 9167 \N \N \N 166976 2024-02-28 06:00:03.823 2024-02-28 06:00:08.404 91366 1632 \N \N \N 166977 2024-02-28 06:00:03.823 2024-02-28 06:00:08.419 91366 811 \N \N \N 166978 2024-02-28 06:00:03.823 2024-02-28 06:00:08.427 91366 6310 \N \N \N 166979 2024-02-28 06:00:03.823 2024-02-28 06:00:08.437 91366 21481 \N \N \N 166980 2024-02-28 06:00:03.823 2024-02-28 06:00:08.455 91366 15577 \N \N \N 166981 2024-02-28 06:00:03.823 2024-02-28 06:00:08.466 91366 21292 \N \N \N 166982 2024-02-28 06:00:03.823 2024-02-28 06:00:08.482 91366 17321 \N \N \N 166983 2024-02-28 06:00:03.823 2024-02-28 06:00:08.495 91366 4126 \N \N \N 166984 2024-02-28 06:00:03.823 2024-02-28 06:00:08.508 91366 9336 \N \N \N 166985 2024-02-28 06:00:03.823 2024-02-28 06:00:08.516 87447 19005 \N \N \N 166986 2024-02-28 06:00:03.823 2024-02-28 06:00:08.528 87031 18909 \N \N \N 166987 2024-02-28 06:00:03.823 2024-02-28 06:00:08.536 86463 7583 \N \N \N 166988 2024-02-28 06:00:03.823 2024-02-28 06:00:08.549 86067 8544 \N \N \N 166989 2024-02-28 06:00:03.823 2024-02-28 06:00:08.558 86062 12175 \N \N \N 166990 2024-02-28 06:00:03.823 2024-02-28 06:00:08.567 86018 16440 \N \N \N 166991 2024-02-28 06:00:03.823 2024-02-28 06:00:08.574 85984 2046 \N \N \N 166992 2024-02-28 06:00:03.823 2024-02-28 06:00:08.581 85978 19569 \N \N \N 166993 2024-02-28 06:00:03.823 2024-02-28 06:00:08.596 85978 4650 \N \N \N 166994 2024-02-28 06:00:03.823 2024-02-28 06:00:08.607 85978 16052 \N \N \N 166995 2024-02-28 06:00:03.823 2024-02-28 06:00:08.613 85978 17953 \N \N \N 166996 2024-02-28 06:00:03.823 2024-02-28 06:00:08.622 85970 929 \N \N \N 166997 2024-02-28 06:00:03.823 2024-02-28 06:00:08.632 85947 2256 \N \N \N 166998 2024-02-28 06:00:03.823 2024-02-28 06:00:08.639 85947 1130 \N \N \N 166999 2024-02-28 06:00:03.823 2024-02-28 06:00:08.65 85947 15484 \N \N \N 167000 2024-02-28 06:00:03.823 2024-02-28 06:00:08.658 85947 11158 \N \N \N 167001 2024-02-28 06:00:03.823 2024-02-28 06:00:08.665 85947 21605 \N \N \N 167002 2024-02-28 06:00:03.823 2024-02-28 06:00:08.673 85947 2459 \N \N \N 167003 2024-02-28 06:00:03.823 2024-02-28 06:00:08.685 85947 19857 \N \N \N 167004 2024-02-28 06:00:03.823 2024-02-28 06:00:08.696 85947 4166 \N \N \N 167005 2024-02-28 06:00:03.823 2024-02-28 06:00:08.707 85947 2256 \N \N \N 167006 2024-02-28 06:00:03.823 2024-02-28 06:00:08.717 85947 15560 \N \N \N 167007 2024-02-28 06:00:03.823 2024-02-28 06:00:08.726 85947 17446 \N \N \N 167008 2024-02-28 06:00:03.823 2024-02-28 06:00:08.739 85947 848 \N \N \N 167009 2024-02-28 06:00:03.823 2024-02-28 06:00:08.75 85947 18830 \N \N \N 167010 2024-02-28 06:00:03.823 2024-02-28 06:00:08.76 85947 6393 \N \N \N 167011 2024-02-28 06:00:03.823 2024-02-28 06:00:08.772 85947 21455 \N \N \N 167012 2024-02-28 06:00:03.823 2024-02-28 06:00:08.779 85135 15617 \N \N \N 167013 2024-02-28 06:00:03.823 2024-02-28 06:00:08.787 84476 11561 \N \N \N 167014 2024-02-28 06:00:03.823 2024-02-28 06:00:08.794 84230 18230 \N \N \N 167015 2024-02-28 06:00:03.823 2024-02-28 06:00:08.802 82797 20208 \N \N \N 167016 2024-02-28 06:00:03.823 2024-02-28 06:00:08.814 81939 8870 \N \N \N 167017 2024-02-28 06:00:03.823 2024-02-28 06:00:08.823 81766 4102 \N \N \N 167018 2024-02-28 06:00:03.823 2024-02-28 06:00:08.832 75488 18344 \N \N \N 167019 2024-02-28 06:00:03.823 2024-02-28 06:00:08.848 75122 5597 \N \N \N 167020 2024-02-28 06:00:03.823 2024-02-28 06:00:08.857 74212 20182 \N \N \N 167021 2024-02-28 06:00:03.823 2024-02-28 06:00:08.866 74200 4083 \N \N \N 167022 2024-02-28 06:00:03.823 2024-02-28 06:00:08.874 74129 11716 \N \N \N 167023 2024-02-28 06:00:03.823 2024-02-28 06:00:08.883 74129 21453 \N \N \N 167024 2024-02-28 06:00:03.823 2024-02-28 06:00:08.891 73887 18679 \N \N \N 167025 2024-02-28 06:00:03.823 2024-02-28 06:00:08.899 68097 8289 \N \N \N 167026 2024-02-28 06:00:03.823 2024-02-28 06:00:08.907 68071 4313 \N \N \N 167027 2024-02-28 06:00:03.823 2024-02-28 06:00:08.915 66001 20251 \N \N \N 167028 2024-02-28 06:00:03.823 2024-02-28 06:00:08.924 64794 11996 \N \N \N 167029 2024-02-28 06:00:03.823 2024-02-28 06:00:08.934 64711 20436 \N \N \N 167030 2024-02-28 06:00:03.823 2024-02-28 06:00:08.943 64662 8360 \N \N \N 167031 2024-02-28 06:00:03.823 2024-02-28 06:00:08.955 64662 20969 \N \N \N 167032 2024-02-28 06:00:03.823 2024-02-28 06:00:08.963 64662 21619 \N \N \N 167033 2024-02-28 06:00:03.823 2024-02-28 06:00:08.971 64662 21233 \N \N \N 167034 2024-02-28 06:00:03.823 2024-02-28 06:00:08.978 64233 2000 \N \N \N 167035 2024-02-28 06:00:03.823 2024-02-28 06:00:08.991 62953 12272 \N \N \N 167036 2024-02-28 06:00:03.823 2024-02-28 06:00:09 61753 16816 \N \N \N 167037 2024-02-28 06:00:03.823 2024-02-28 06:00:09.011 60946 16970 \N \N \N 167038 2024-02-28 06:00:03.823 2024-02-28 06:00:09.021 58075 18270 \N \N \N 167039 2024-02-28 06:00:03.823 2024-02-28 06:00:09.03 57336 6533 \N \N \N 167040 2024-02-28 06:00:03.823 2024-02-28 06:00:09.037 56334 17696 \N \N \N 167041 2024-02-28 06:00:03.823 2024-02-28 06:00:09.044 55836 18615 \N \N \N 167042 2024-02-28 06:00:03.823 2024-02-28 06:00:09.052 55834 621 \N \N \N 167043 2024-02-28 06:00:03.823 2024-02-28 06:00:09.06 55830 1428 \N \N \N 167044 2024-02-28 06:00:03.823 2024-02-28 06:00:09.068 55083 3683 \N \N \N 167045 2024-02-28 06:00:03.823 2024-02-28 06:00:09.075 53807 21527 \N \N \N 167046 2024-02-28 06:00:03.823 2024-02-28 06:00:09.085 53807 7916 \N \N \N 167047 2024-02-28 06:00:03.823 2024-02-28 06:00:09.092 53731 8080 \N \N \N 167048 2024-02-28 06:00:03.823 2024-02-28 06:00:09.101 53172 5725 \N \N \N 167049 2024-02-28 06:00:03.823 2024-02-28 06:00:09.11 52996 1198 \N \N \N 167050 2024-02-28 06:00:03.823 2024-02-28 06:00:09.117 52996 17184 \N \N \N 167051 2024-02-28 06:00:03.823 2024-02-28 06:00:09.124 52996 733 \N \N \N 167052 2024-02-28 06:00:03.823 2024-02-28 06:00:09.134 52981 894 \N \N \N 167053 2024-02-28 06:00:03.823 2024-02-28 06:00:09.147 52981 992 \N \N \N 167054 2024-02-28 06:00:03.823 2024-02-28 06:00:09.164 52423 4035 \N \N \N 167055 2024-02-28 06:00:03.823 2024-02-28 06:00:09.171 1565359 6573 \N \N \N 167056 2024-02-28 06:00:03.823 2024-02-28 06:00:09.178 1545695 6300 \N \N \N 167057 2024-02-28 06:00:03.823 2024-02-28 06:00:09.188 1331995 20704 \N \N \N 167058 2024-02-28 06:00:03.823 2024-02-28 06:00:09.196 1312793 20102 \N \N \N 167059 2024-02-28 06:00:03.823 2024-02-28 06:00:09.204 1239827 18138 \N \N \N 167060 2024-02-28 06:00:03.823 2024-02-28 06:00:09.211 1232518 17392 \N \N \N 167061 2024-02-28 06:00:03.823 2024-02-28 06:00:09.22 1229641 21063 \N \N \N 167062 2024-02-28 06:00:03.823 2024-02-28 06:00:09.229 1143413 9669 \N \N \N 167063 2024-02-28 06:00:03.823 2024-02-28 06:00:09.236 1136734 1439 \N \N \N 167064 2024-02-28 06:00:03.823 2024-02-28 06:00:09.243 1015147 20636 \N \N \N 167065 2024-02-28 06:00:03.823 2024-02-28 06:00:09.25 969027 20799 \N \N \N 167066 2024-02-28 06:00:03.823 2024-02-28 06:00:09.258 956168 5703 \N \N \N 167067 2024-02-28 06:00:03.823 2024-02-28 06:00:09.266 941991 5195 \N \N \N 167068 2024-02-28 06:00:03.823 2024-02-28 06:00:09.273 941461 20514 \N \N \N 167069 2024-02-28 06:00:03.823 2024-02-28 06:00:09.281 1174131 21620 \N \N \N 167070 2024-02-28 06:00:03.823 2024-02-28 06:00:09.29 841991 18930 \N \N \N 167071 2024-02-28 06:00:03.823 2024-02-28 06:00:09.296 795898 14122 \N \N \N 167072 2024-02-28 06:00:03.823 2024-02-28 06:00:09.303 768038 19583 \N \N \N 167073 2024-02-28 06:00:03.823 2024-02-28 06:00:09.31 732587 19924 \N \N \N 167074 2024-02-28 06:00:03.823 2024-02-28 06:00:09.317 639209 8095 \N \N \N 167075 2024-02-28 06:00:03.823 2024-02-28 06:00:09.324 625117 19030 \N \N \N 167076 2024-02-28 06:00:03.823 2024-02-28 06:00:09.331 608225 1785 \N \N \N 167077 2024-02-28 06:00:03.823 2024-02-28 06:00:09.34 600496 20257 \N \N \N 167078 2024-02-28 06:00:03.823 2024-02-28 06:00:09.349 592788 19995 \N \N \N 167079 2024-02-28 06:00:03.823 2024-02-28 06:00:09.357 583422 7978 \N \N \N 167080 2024-02-28 06:00:03.823 2024-02-28 06:00:09.364 794357 19322 \N \N \N 167081 2024-02-28 06:00:03.823 2024-02-28 06:00:09.374 560554 11942 \N \N \N 167082 2024-02-28 06:00:03.823 2024-02-28 06:00:09.38 550324 766 \N \N \N 167083 2024-02-28 06:00:03.823 2024-02-28 06:00:09.388 535299 15510 \N \N \N 167084 2024-02-28 06:00:03.823 2024-02-28 06:00:09.395 523559 16347 \N \N \N 167085 2024-02-28 06:00:03.823 2024-02-28 06:00:09.401 513782 6419 \N \N \N 167086 2024-02-28 06:00:03.823 2024-02-28 06:00:09.41 508988 1596 \N \N \N 167087 2024-02-28 06:00:03.823 2024-02-28 06:00:09.418 508224 1105 \N \N \N 167088 2024-02-28 06:00:03.823 2024-02-28 06:00:09.424 493041 20730 \N \N \N 167089 2024-02-28 06:00:03.823 2024-02-28 06:00:09.432 481082 20802 \N \N \N 167090 2024-02-28 06:00:03.823 2024-02-28 06:00:09.44 462379 7097 \N \N \N 167091 2024-02-28 06:00:03.823 2024-02-28 06:00:09.45 455555 18877 \N \N \N 167092 2024-02-28 06:00:03.823 2024-02-28 06:00:09.458 453034 3683 \N \N \N 167093 2024-02-28 06:00:03.823 2024-02-28 06:00:09.467 428225 7773 \N \N \N 167094 2024-02-28 06:00:03.823 2024-02-28 06:00:09.475 422738 10311 \N \N \N 167095 2024-02-28 06:00:03.823 2024-02-28 06:00:09.483 410556 18673 \N \N \N 167096 2024-02-28 06:00:03.823 2024-02-28 06:00:09.49 398871 9796 \N \N \N 167097 2024-02-28 06:00:03.823 2024-02-28 06:00:09.497 394371 21155 \N \N \N 167098 2024-02-28 06:00:03.823 2024-02-28 06:00:09.504 392188 14015 \N \N \N 167099 2024-02-28 06:00:03.823 2024-02-28 06:00:09.513 375318 20647 \N \N \N 167100 2024-02-28 06:00:03.823 2024-02-28 06:00:09.523 375169 13365 \N \N \N 167101 2024-02-28 06:00:03.823 2024-02-28 06:00:09.531 358660 1605 \N \N \N 167102 2024-02-28 06:00:03.823 2024-02-28 06:00:09.538 350270 8998 \N \N \N 167103 2024-02-28 06:00:03.823 2024-02-28 06:00:09.545 350178 21398 \N \N \N 167104 2024-02-28 06:00:03.823 2024-02-28 06:00:09.552 346814 4624 \N \N \N 167105 2024-02-28 06:00:03.823 2024-02-28 06:00:09.563 332748 3642 \N \N \N 167106 2024-02-28 06:00:03.823 2024-02-28 06:00:09.571 543564 19289 \N \N \N 167107 2024-02-28 06:00:03.823 2024-02-28 06:00:09.578 322706 14650 \N \N \N 167108 2024-02-28 06:00:03.823 2024-02-28 06:00:09.585 315974 7916 \N \N \N 167109 2024-02-28 06:00:03.823 2024-02-28 06:00:09.592 307554 19138 \N \N \N 167110 2024-02-28 06:00:03.823 2024-02-28 06:00:09.598 303069 20245 \N \N \N 167111 2024-02-28 06:00:03.823 2024-02-28 06:00:09.605 302319 1044 \N \N \N 167112 2024-02-28 06:00:03.823 2024-02-28 06:00:09.612 302239 622 \N \N \N 167113 2024-02-28 06:00:03.823 2024-02-28 06:00:09.619 294018 20502 \N \N \N 167114 2024-02-28 06:00:03.823 2024-02-28 06:00:09.628 292036 676 \N \N \N 167115 2024-02-28 06:00:03.823 2024-02-28 06:00:09.636 289943 6533 \N \N \N 167116 2024-02-28 06:00:03.823 2024-02-28 06:00:09.643 398154 954 \N \N \N 167117 2024-02-28 06:00:03.823 2024-02-28 06:00:09.654 279266 2367 \N \N \N 167118 2024-02-28 06:00:03.823 2024-02-28 06:00:09.664 267164 6335 \N \N \N 167119 2024-02-28 06:00:03.823 2024-02-28 06:00:09.672 266823 15045 \N \N \N 167120 2024-02-28 06:00:03.823 2024-02-28 06:00:09.681 265896 20026 \N \N \N 167121 2024-02-28 06:00:03.823 2024-02-28 06:00:09.691 265625 2722 \N \N \N 167122 2024-02-28 06:00:03.823 2024-02-28 06:00:09.699 261125 13622 \N \N \N 167123 2024-02-28 06:00:03.823 2024-02-28 06:00:09.705 254894 14168 \N \N \N 167124 2024-02-28 06:00:03.823 2024-02-28 06:00:09.712 251930 6260 \N \N \N 167125 2024-02-28 06:00:03.823 2024-02-28 06:00:09.72 246296 20500 \N \N \N 167126 2024-02-28 06:00:03.823 2024-02-28 06:00:09.729 245237 20117 \N \N \N 167127 2024-02-28 06:00:03.823 2024-02-28 06:00:09.736 240494 698 \N \N \N 167128 2024-02-28 06:00:03.823 2024-02-28 06:00:09.744 237991 15049 \N \N \N 167129 2024-02-28 06:00:03.823 2024-02-28 06:00:09.75 236123 656 \N \N \N 167130 2024-02-28 06:00:03.823 2024-02-28 06:00:09.757 233022 17455 \N \N \N 167131 2024-02-28 06:00:03.823 2024-02-28 06:00:09.763 231956 17891 \N \N \N 167132 2024-02-28 06:00:03.823 2024-02-28 06:00:09.773 229660 20539 \N \N \N 167133 2024-02-28 06:00:03.823 2024-02-28 06:00:09.78 225161 3409 \N \N \N 167134 2024-02-28 06:00:03.823 2024-02-28 06:00:09.788 218760 19815 \N \N \N 167135 2024-02-28 06:00:03.823 2024-02-28 06:00:09.796 218696 19812 \N \N \N 167136 2024-02-28 06:00:03.823 2024-02-28 06:00:09.822 217866 21402 \N \N \N 167137 2024-02-28 06:00:03.823 2024-02-28 06:00:09.857 217671 5444 \N \N \N 167138 2024-02-28 06:00:03.823 2024-02-28 06:00:09.877 217641 19030 \N \N \N 167139 2024-02-28 06:00:03.823 2024-02-28 06:00:09.891 217592 14910 \N \N \N 167140 2024-02-28 06:00:03.823 2024-02-28 06:00:09.92 217587 14795 \N \N \N 167141 2024-02-28 06:00:03.823 2024-02-28 06:00:09.939 217559 11328 \N \N \N 167142 2024-02-28 06:00:03.823 2024-02-28 06:00:09.953 211328 16193 \N \N \N 167143 2024-02-28 06:00:03.823 2024-02-28 06:00:09.96 199370 7673 \N \N \N 167144 2024-02-28 06:00:03.823 2024-02-28 06:00:09.967 198474 15063 \N \N \N 167145 2024-02-28 06:00:03.823 2024-02-28 06:00:09.98 196777 6160 \N \N \N 167146 2024-02-28 06:00:03.823 2024-02-28 06:00:09.995 193325 4831 \N \N \N 167147 2024-02-28 06:00:03.823 2024-02-28 06:00:10.007 170336 7903 \N \N \N 167148 2024-02-28 06:00:03.823 2024-02-28 06:00:10.016 167707 20775 \N \N \N 167149 2024-02-28 06:00:03.823 2024-02-28 06:00:10.023 156700 4502 \N \N \N 167150 2024-02-28 06:00:03.823 2024-02-28 06:00:10.036 156476 16432 \N \N \N 167151 2024-02-28 06:00:03.823 2024-02-28 06:00:10.044 155997 1044 \N \N \N 167152 2024-02-28 06:00:03.823 2024-02-28 06:00:10.051 155839 2709 \N \N \N 167153 2024-02-28 06:00:03.823 2024-02-28 06:00:10.059 146652 13587 \N \N \N 167154 2024-02-29 06:00:05.048 2024-02-29 06:00:05.052 11165606 2620 \N \N \N 167155 2024-02-29 06:00:05.048 2024-02-29 06:00:05.068 4306485 15180 \N \N \N 167156 2024-02-29 06:00:05.048 2024-02-29 06:00:05.08 2916567 16350 \N \N \N 167157 2024-02-29 06:00:05.048 2024-02-29 06:00:05.091 2833203 5725 \N \N \N 167158 2024-02-29 06:00:05.048 2024-02-29 06:00:05.098 2388066 21624 \N \N \N 167159 2024-02-29 06:00:05.048 2024-02-29 06:00:05.107 2306186 18208 \N \N \N 167160 2024-02-29 06:00:05.048 2024-02-29 06:00:05.116 1838797 632 \N \N \N 167161 2024-02-29 06:00:05.048 2024-02-29 06:00:05.13 1821295 5758 \N \N \N 167162 2024-02-29 06:00:05.048 2024-02-29 06:00:05.143 1795059 12261 \N \N \N 167163 2024-02-29 06:00:05.048 2024-02-29 06:00:05.156 1639438 736 \N \N \N 167164 2024-02-29 06:00:05.048 2024-02-29 06:00:05.168 1459360 1145 \N \N \N 167165 2024-02-29 06:00:05.048 2024-02-29 06:00:05.175 1378440 946 \N \N \N 167166 2024-02-29 06:00:05.048 2024-02-29 06:00:05.181 1345467 1286 \N \N \N 167167 2024-02-29 06:00:05.048 2024-02-29 06:00:05.188 1208039 7668 \N \N \N 167168 2024-02-29 06:00:05.048 2024-02-29 06:00:05.195 965312 21042 \N \N \N 167169 2024-02-29 06:00:05.048 2024-02-29 06:00:05.201 954594 19773 \N \N \N 167170 2024-02-29 06:00:05.048 2024-02-29 06:00:05.209 918843 20120 \N \N \N 167171 2024-02-29 06:00:05.048 2024-02-29 06:00:05.221 844276 4043 \N \N \N 167172 2024-02-29 06:00:05.048 2024-02-29 06:00:05.249 823890 20585 \N \N \N 167173 2024-02-29 06:00:05.048 2024-02-29 06:00:05.258 696741 19663 \N \N \N 167174 2024-02-29 06:00:05.048 2024-02-29 06:00:05.27 638673 777 \N \N \N 167175 2024-02-29 06:00:05.048 2024-02-29 06:00:05.276 619432 19189 \N \N \N 167176 2024-02-29 06:00:05.048 2024-02-29 06:00:05.296 596022 17690 \N \N \N 167177 2024-02-29 06:00:05.048 2024-02-29 06:00:05.306 589512 19329 \N \N \N 167178 2024-02-29 06:00:05.048 2024-02-29 06:00:05.313 560946 661 \N \N \N 167179 2024-02-29 06:00:05.048 2024-02-29 06:00:05.319 535323 19320 \N \N \N 167180 2024-02-29 06:00:05.048 2024-02-29 06:00:05.325 491782 11999 \N \N \N 167181 2024-02-29 06:00:05.048 2024-02-29 06:00:05.331 479027 21136 \N \N \N 167182 2024-02-29 06:00:05.048 2024-02-29 06:00:05.338 455791 1723 \N \N \N 167183 2024-02-29 06:00:05.048 2024-02-29 06:00:05.343 427174 18675 \N \N \N 167184 2024-02-29 06:00:05.048 2024-02-29 06:00:05.349 404500 10586 \N \N \N 167185 2024-02-29 06:00:05.048 2024-02-29 06:00:05.356 390139 13169 \N \N \N 167186 2024-02-29 06:00:05.048 2024-02-29 06:00:05.364 331574 11819 \N \N \N 167187 2024-02-29 06:00:05.048 2024-02-29 06:00:05.373 314773 1745 \N \N \N 167188 2024-02-29 06:00:05.048 2024-02-29 06:00:05.38 291370 659 \N \N \N 167189 2024-02-29 06:00:05.048 2024-02-29 06:00:05.386 288600 18220 \N \N \N 167190 2024-02-29 06:00:05.048 2024-02-29 06:00:05.394 283093 20436 \N \N \N 167191 2024-02-29 06:00:05.048 2024-02-29 06:00:05.409 280825 20573 \N \N \N 167192 2024-02-29 06:00:05.048 2024-02-29 06:00:05.416 269884 20327 \N \N \N 167193 2024-02-29 06:00:05.048 2024-02-29 06:00:05.422 267947 20901 \N \N \N 167194 2024-02-29 06:00:05.048 2024-02-29 06:00:05.43 265398 730 \N \N \N 167195 2024-02-29 06:00:05.048 2024-02-29 06:00:05.437 258227 17944 \N \N \N 167196 2024-02-29 06:00:05.048 2024-02-29 06:00:05.445 247019 1162 \N \N \N 167197 2024-02-29 06:00:05.048 2024-02-29 06:00:05.451 245098 18919 \N \N \N 167198 2024-02-29 06:00:05.048 2024-02-29 06:00:05.46 237756 17106 \N \N \N 167199 2024-02-29 06:00:05.048 2024-02-29 06:00:05.488 234735 13406 \N \N \N 167200 2024-02-29 06:00:05.048 2024-02-29 06:00:05.516 220225 7673 \N \N \N 167201 2024-02-29 06:00:05.048 2024-02-29 06:00:05.525 210948 795 \N \N \N 167202 2024-02-29 06:00:05.048 2024-02-29 06:00:05.531 207501 16950 \N \N \N 167203 2024-02-29 06:00:05.048 2024-02-29 06:00:05.542 204530 1618 \N \N \N 167204 2024-02-29 06:00:05.048 2024-02-29 06:00:05.55 191650 1959 \N \N \N 167205 2024-02-29 06:00:05.048 2024-02-29 06:00:05.556 191620 17984 \N \N \N 167206 2024-02-29 06:00:05.048 2024-02-29 06:00:05.573 187974 12483 \N \N \N 167207 2024-02-29 06:00:05.048 2024-02-29 06:00:05.579 186834 20026 \N \N \N 167208 2024-02-29 06:00:05.048 2024-02-29 06:00:05.586 185858 5761 \N \N \N 167209 2024-02-29 06:00:05.048 2024-02-29 06:00:05.592 180141 16998 \N \N \N 167210 2024-02-29 06:00:05.048 2024-02-29 06:00:05.603 177066 12951 \N \N \N 167211 2024-02-29 06:00:05.048 2024-02-29 06:00:05.612 172945 9337 \N \N \N 167212 2024-02-29 06:00:05.048 2024-02-29 06:00:05.618 171534 4654 \N \N \N 167213 2024-02-29 06:00:05.048 2024-02-29 06:00:05.625 167354 18178 \N \N \N 167214 2024-02-29 06:00:05.048 2024-02-29 06:00:05.631 166093 21588 \N \N \N 167215 2024-02-29 06:00:05.048 2024-02-29 06:00:05.637 160231 663 \N \N \N 167216 2024-02-29 06:00:05.048 2024-02-29 06:00:05.645 158352 1800 \N \N \N 167217 2024-02-29 06:00:05.048 2024-02-29 06:00:05.65 149993 6148 \N \N \N 167218 2024-02-29 06:00:05.048 2024-02-29 06:00:05.656 148769 16329 \N \N \N 167219 2024-02-29 06:00:05.048 2024-02-29 06:00:05.662 146820 4079 \N \N \N 167220 2024-02-29 06:00:05.048 2024-02-29 06:00:05.677 144817 19189 \N \N \N 167221 2024-02-29 06:00:05.048 2024-02-29 06:00:05.703 131965 1145 \N \N \N 167222 2024-02-29 06:00:05.048 2024-02-29 06:00:05.708 130325 17535 \N \N \N 167223 2024-02-29 06:00:05.048 2024-02-29 06:00:05.717 126006 644 \N \N \N 167224 2024-02-29 06:00:05.048 2024-02-29 06:00:05.723 125048 4798 \N \N \N 167225 2024-02-29 06:00:05.048 2024-02-29 06:00:05.733 118769 6003 \N \N \N 167226 2024-02-29 06:00:05.048 2024-02-29 06:00:05.742 117523 18836 \N \N \N 167227 2024-02-29 06:00:05.048 2024-02-29 06:00:05.748 114226 14278 \N \N \N 167228 2024-02-29 06:00:05.048 2024-02-29 06:00:05.754 112509 15617 \N \N \N 167229 2024-02-29 06:00:05.048 2024-02-29 06:00:05.76 109631 8326 \N \N \N 167230 2024-02-29 06:00:05.048 2024-02-29 06:00:05.766 107382 15858 \N \N \N 167231 2024-02-29 06:00:05.048 2024-02-29 06:00:05.773 103835 16126 \N \N \N 167232 2024-02-29 06:00:05.048 2024-02-29 06:00:05.779 103666 3396 \N \N \N 167233 2024-02-29 06:00:05.048 2024-02-29 06:00:05.785 101875 7675 \N \N \N 167234 2024-02-29 06:00:05.048 2024-02-29 06:00:05.792 95882 10693 \N \N \N 167235 2024-02-29 06:00:05.048 2024-02-29 06:00:05.798 94929 1105 \N \N \N 167236 2024-02-29 06:00:05.048 2024-02-29 06:00:05.805 93125 20045 \N \N \N 167237 2024-02-29 06:00:05.048 2024-02-29 06:00:05.814 87542 19852 \N \N \N 167238 2024-02-29 06:00:05.048 2024-02-29 06:00:05.82 81606 979 \N \N \N 167239 2024-02-29 06:00:05.048 2024-02-29 06:00:05.829 80480 21323 \N \N \N 167240 2024-02-29 06:00:05.048 2024-02-29 06:00:05.836 79889 16456 \N \N \N 167241 2024-02-29 06:00:05.048 2024-02-29 06:00:05.843 79882 13878 \N \N \N 167242 2024-02-29 06:00:05.048 2024-02-29 06:00:05.849 79857 21242 \N \N \N 167243 2024-02-29 06:00:05.048 2024-02-29 06:00:05.855 77099 11862 \N \N \N 167244 2024-02-29 06:00:05.048 2024-02-29 06:00:05.861 76833 19138 \N \N \N 167245 2024-02-29 06:00:05.048 2024-02-29 06:00:05.868 76830 859 \N \N \N 167246 2024-02-29 06:00:05.048 2024-02-29 06:00:05.874 75141 8360 \N \N \N 167247 2024-02-29 06:00:05.048 2024-02-29 06:00:05.881 71126 15697 \N \N \N 167248 2024-02-29 06:00:05.048 2024-02-29 06:00:05.889 67902 18626 \N \N \N 167249 2024-02-29 06:00:05.048 2024-02-29 06:00:05.895 65261 15690 \N \N \N 167250 2024-02-29 06:00:05.048 2024-02-29 06:00:05.902 65140 825 \N \N \N 167251 2024-02-29 06:00:05.048 2024-02-29 06:00:05.908 56263 18817 \N \N \N 167252 2024-02-29 06:00:05.048 2024-02-29 06:00:05.915 55677 11821 \N \N \N 167253 2024-02-29 06:00:05.048 2024-02-29 06:00:05.922 55061 21589 \N \N \N 167254 2024-02-29 06:00:05.048 2024-02-29 06:00:05.928 54620 18372 \N \N \N 167255 2024-02-29 06:00:05.048 2024-02-29 06:00:05.933 53309 18403 \N \N \N 167256 2024-02-29 06:00:05.048 2024-02-29 06:00:05.942 51329 16753 \N \N \N 167257 2024-02-29 06:00:05.048 2024-02-29 06:00:05.948 48343 19087 \N \N \N 167258 2024-02-29 06:00:05.048 2024-02-29 06:00:05.955 47105 21040 \N \N \N 167259 2024-02-29 06:00:05.048 2024-02-29 06:00:05.961 45163 11450 \N \N \N 167260 2024-02-29 06:00:05.048 2024-02-29 06:00:05.967 44622 20861 \N \N \N 167261 2024-02-29 06:00:05.048 2024-02-29 06:00:05.973 43028 18736 \N \N \N 167262 2024-02-29 06:00:05.048 2024-02-29 06:00:05.979 42987 14247 \N \N \N 167263 2024-02-29 06:00:05.048 2024-02-29 06:00:05.986 42298 716 \N \N \N 167264 2024-02-29 06:00:05.048 2024-02-29 06:00:05.996 40525 2652 \N \N \N 167265 2024-02-29 06:00:05.048 2024-02-29 06:00:06.009 40224 1733 \N \N \N 167266 2024-02-29 06:00:05.048 2024-02-29 06:00:06.014 37382 19121 \N \N \N 167267 2024-02-29 06:00:05.048 2024-02-29 06:00:06.02 35784 717 \N \N \N 167268 2024-02-29 06:00:05.048 2024-02-29 06:00:06.026 34057 721 \N \N \N 167269 2024-02-29 06:00:05.048 2024-02-29 06:00:06.033 32484 18265 \N \N \N 167270 2024-02-29 06:00:05.048 2024-02-29 06:00:06.039 31091 19836 \N \N \N 167271 2024-02-29 06:00:05.048 2024-02-29 06:00:06.048 29736 19836 \N \N \N 167272 2024-02-29 06:00:05.048 2024-02-29 06:00:06.069 28541 19502 \N \N \N 167273 2024-02-29 06:00:05.048 2024-02-29 06:00:06.076 26640 1465 \N \N \N 167274 2024-02-29 06:00:05.048 2024-02-29 06:00:06.083 26610 21492 \N \N \N 167275 2024-02-29 06:00:05.048 2024-02-29 06:00:06.089 24833 14705 \N \N \N 167276 2024-02-29 06:00:05.048 2024-02-29 06:00:06.096 24814 16406 \N \N \N 167277 2024-02-29 06:00:05.048 2024-02-29 06:00:06.102 23000 8448 \N \N \N 167278 2024-02-29 06:00:05.048 2024-02-29 06:00:06.109 20829 4984 \N \N \N 167279 2024-02-29 06:00:05.048 2024-02-29 06:00:06.115 15920 18051 \N \N \N 167280 2024-02-29 06:00:05.048 2024-02-29 06:00:06.121 14907 6202 \N \N \N 167281 2024-02-29 06:00:05.048 2024-02-29 06:00:06.127 10783 19034 \N \N \N 167282 2024-02-29 06:00:05.048 2024-02-29 06:00:06.133 9380 1180 \N \N \N 167283 2024-02-29 06:00:05.048 2024-02-29 06:00:06.139 4615 16847 \N \N \N 167284 2024-02-29 06:00:05.048 2024-02-29 06:00:06.145 6686612 9845 \N \N \N 167285 2024-02-29 06:00:05.048 2024-02-29 06:00:06.15 3157810 5565 \N \N \N 167286 2024-02-29 06:00:05.048 2024-02-29 06:00:06.155 2815096 794 \N \N \N 167287 2024-02-29 06:00:05.048 2024-02-29 06:00:06.162 2572257 12422 \N \N \N 167288 2024-02-29 06:00:05.048 2024-02-29 06:00:06.168 2360087 6602 \N \N \N 167289 2024-02-29 06:00:05.048 2024-02-29 06:00:06.176 1864336 21469 \N \N \N 167290 2024-02-29 06:00:05.048 2024-02-29 06:00:06.185 1840218 21067 \N \N \N 167291 2024-02-29 06:00:05.048 2024-02-29 06:00:06.19 1724482 14785 \N \N \N 167292 2024-02-29 06:00:05.048 2024-02-29 06:00:06.196 1598534 20972 \N \N \N 167293 2024-02-29 06:00:05.048 2024-02-29 06:00:06.202 1544884 19502 \N \N \N 167294 2024-02-29 06:00:05.048 2024-02-29 06:00:06.207 1451650 664 \N \N \N 167295 2024-02-29 06:00:05.048 2024-02-29 06:00:06.217 1226633 910 \N \N \N 167296 2024-02-29 06:00:05.048 2024-02-29 06:00:06.224 1061965 19785 \N \N \N 167297 2024-02-29 06:00:05.048 2024-02-29 06:00:06.231 797534 1495 \N \N \N 167298 2024-02-29 06:00:05.048 2024-02-29 06:00:06.238 777088 759 \N \N \N 167299 2024-02-29 06:00:05.048 2024-02-29 06:00:06.25 776784 18494 \N \N \N 167300 2024-02-29 06:00:05.048 2024-02-29 06:00:06.255 766984 20179 \N \N \N 167301 2024-02-29 06:00:05.048 2024-02-29 06:00:06.263 728152 7558 \N \N \N 167302 2024-02-29 06:00:05.048 2024-02-29 06:00:06.271 709462 12779 \N \N \N 167303 2024-02-29 06:00:05.048 2024-02-29 06:00:06.284 702124 10013 \N \N \N 167304 2024-02-29 06:00:05.048 2024-02-29 06:00:06.289 693974 11515 \N \N \N 167305 2024-02-29 06:00:05.048 2024-02-29 06:00:06.295 647610 17316 \N \N \N 167306 2024-02-29 06:00:05.048 2024-02-29 06:00:06.301 637893 19378 \N \N \N 167307 2024-02-29 06:00:05.048 2024-02-29 06:00:06.307 631436 21453 \N \N \N 167308 2024-02-29 06:00:05.048 2024-02-29 06:00:06.316 612844 1751 \N \N \N 167309 2024-02-29 06:00:05.048 2024-02-29 06:00:06.321 581929 17212 \N \N \N 167310 2024-02-29 06:00:05.048 2024-02-29 06:00:06.327 579184 19458 \N \N \N 167311 2024-02-29 06:00:05.048 2024-02-29 06:00:06.334 562309 10311 \N \N \N 167312 2024-02-29 06:00:05.048 2024-02-29 06:00:06.339 552348 9365 \N \N \N 167313 2024-02-29 06:00:05.048 2024-02-29 06:00:06.345 510489 19821 \N \N \N 167314 2024-02-29 06:00:05.048 2024-02-29 06:00:06.351 426810 14308 \N \N \N 167315 2024-02-29 06:00:05.048 2024-02-29 06:00:06.357 411216 18832 \N \N \N 167316 2024-02-29 06:00:05.048 2024-02-29 06:00:06.363 401768 7673 \N \N \N 167317 2024-02-29 06:00:05.048 2024-02-29 06:00:06.37 395156 807 \N \N \N 167318 2024-02-29 06:00:05.048 2024-02-29 06:00:06.376 386402 1468 \N \N \N 167319 2024-02-29 06:00:05.048 2024-02-29 06:00:06.382 381631 16301 \N \N \N 167320 2024-02-29 06:00:05.048 2024-02-29 06:00:06.387 365001 2046 \N \N \N 167321 2024-02-29 06:00:05.048 2024-02-29 06:00:06.397 360242 8926 \N \N \N 167322 2024-02-29 06:00:05.048 2024-02-29 06:00:06.403 359120 8176 \N \N \N 167323 2024-02-29 06:00:05.048 2024-02-29 06:00:06.409 356367 1738 \N \N \N 167324 2024-02-29 06:00:05.048 2024-02-29 06:00:06.417 346571 8360 \N \N \N 167325 2024-02-29 06:00:05.048 2024-02-29 06:00:06.426 342422 1298 \N \N \N 167326 2024-02-29 06:00:05.048 2024-02-29 06:00:06.431 307073 20751 \N \N \N 167327 2024-02-29 06:00:05.048 2024-02-29 06:00:06.437 305425 10638 \N \N \N 167328 2024-02-29 06:00:05.048 2024-02-29 06:00:06.443 296721 13763 \N \N \N 167329 2024-02-29 06:00:05.048 2024-02-29 06:00:06.449 275078 20871 \N \N \N 167330 2024-02-29 06:00:05.048 2024-02-29 06:00:06.455 271421 18116 \N \N \N 167331 2024-02-29 06:00:05.048 2024-02-29 06:00:06.461 266758 9350 \N \N \N 167332 2024-02-29 06:00:05.048 2024-02-29 06:00:06.466 258695 8505 \N \N \N 167333 2024-02-29 06:00:05.048 2024-02-29 06:00:06.472 258640 17714 \N \N \N 167334 2024-02-29 06:00:05.048 2024-02-29 06:00:06.478 254597 15052 \N \N \N 167335 2024-02-29 06:00:05.048 2024-02-29 06:00:06.483 253087 5825 \N \N \N 167336 2024-02-29 06:00:05.048 2024-02-29 06:00:06.489 252291 17741 \N \N \N 167337 2024-02-29 06:00:05.048 2024-02-29 06:00:06.495 239815 15806 \N \N \N 167338 2024-02-29 06:00:05.048 2024-02-29 06:00:06.5 238353 8287 \N \N \N 167339 2024-02-29 06:00:05.048 2024-02-29 06:00:06.506 228017 14669 \N \N \N 167340 2024-02-29 06:00:05.048 2024-02-29 06:00:06.512 227796 15103 \N \N \N 167341 2024-02-29 06:00:05.048 2024-02-29 06:00:06.518 227749 21070 \N \N \N 167342 2024-02-29 06:00:05.048 2024-02-29 06:00:06.524 218910 2681 \N \N \N 167343 2024-02-29 06:00:05.048 2024-02-29 06:00:06.53 218728 2042 \N \N \N 167344 2024-02-29 06:00:05.048 2024-02-29 06:00:06.536 216281 7668 \N \N \N 167345 2024-02-29 06:00:05.048 2024-02-29 06:00:06.541 206546 699 \N \N \N 167346 2024-02-29 06:00:05.048 2024-02-29 06:00:06.547 205532 20657 \N \N \N 167347 2024-02-29 06:00:05.048 2024-02-29 06:00:06.552 202618 17166 \N \N \N 167348 2024-02-29 06:00:05.048 2024-02-29 06:00:06.558 200552 7899 \N \N \N 167349 2024-02-29 06:00:05.048 2024-02-29 06:00:06.565 200183 9107 \N \N \N 167350 2024-02-29 06:00:05.048 2024-02-29 06:00:06.572 188705 19193 \N \N \N 167351 2024-02-29 06:00:05.048 2024-02-29 06:00:06.578 184671 18735 \N \N \N 167352 2024-02-29 06:00:05.048 2024-02-29 06:00:06.584 183038 787 \N \N \N 167353 2024-02-29 06:00:05.048 2024-02-29 06:00:06.59 175494 1705 \N \N \N 167354 2024-02-29 06:00:05.048 2024-02-29 06:00:06.595 170316 15271 \N \N \N 167355 2024-02-29 06:00:05.048 2024-02-29 06:00:06.601 169647 18675 \N \N \N 167356 2024-02-29 06:00:05.048 2024-02-29 06:00:06.607 165577 13927 \N \N \N 167357 2024-02-29 06:00:05.048 2024-02-29 06:00:06.613 160814 16965 \N \N \N 167358 2024-02-29 06:00:05.048 2024-02-29 06:00:06.619 156837 19484 \N \N \N 167359 2024-02-29 06:00:05.048 2024-02-29 06:00:06.624 156506 20222 \N \N \N 167360 2024-02-29 06:00:05.048 2024-02-29 06:00:06.63 152368 19569 \N \N \N 167361 2024-02-29 06:00:05.048 2024-02-29 06:00:06.637 149342 21274 \N \N \N 167362 2024-02-29 06:00:05.048 2024-02-29 06:00:06.644 146828 19199 \N \N \N 167363 2024-02-29 06:00:05.048 2024-02-29 06:00:06.649 146334 20757 \N \N \N 167364 2024-02-29 06:00:05.048 2024-02-29 06:00:06.656 145664 18842 \N \N \N 167365 2024-02-29 06:00:05.048 2024-02-29 06:00:06.663 144281 21453 \N \N \N 167366 2024-02-29 06:00:05.048 2024-02-29 06:00:06.67 142925 21061 \N \N \N 167367 2024-02-29 06:00:05.048 2024-02-29 06:00:06.676 140126 6765 \N \N \N 167368 2024-02-29 06:00:05.048 2024-02-29 06:00:06.682 139009 21422 \N \N \N 167369 2024-02-29 06:00:05.048 2024-02-29 06:00:06.689 135049 8916 \N \N \N 167370 2024-02-29 06:00:05.048 2024-02-29 06:00:06.695 134496 13587 \N \N \N 167371 2024-02-29 06:00:05.048 2024-02-29 06:00:06.701 131960 18615 \N \N \N 167372 2024-02-29 06:00:05.048 2024-02-29 06:00:06.706 131949 20603 \N \N \N 167373 2024-02-29 06:00:05.048 2024-02-29 06:00:06.712 130996 21342 \N \N \N 167374 2024-02-29 06:00:05.048 2024-02-29 06:00:06.718 128951 17708 \N \N \N 167375 2024-02-29 06:00:05.048 2024-02-29 06:00:06.724 123440 21614 \N \N \N 167376 2024-02-29 06:00:05.048 2024-02-29 06:00:06.73 120910 8544 \N \N \N 167377 2024-02-29 06:00:05.048 2024-02-29 06:00:06.736 119684 2513 \N \N \N 167378 2024-02-29 06:00:05.048 2024-02-29 06:00:06.744 117416 16809 \N \N \N 167379 2024-02-29 06:00:05.048 2024-02-29 06:00:06.752 112713 7675 \N \N \N 167380 2024-02-29 06:00:05.048 2024-02-29 06:00:06.758 112572 3213 \N \N \N 167381 2024-02-29 06:00:05.048 2024-02-29 06:00:06.765 112365 20087 \N \N \N 167382 2024-02-29 06:00:05.048 2024-02-29 06:00:06.772 109028 701 \N \N \N 167383 2024-02-29 06:00:05.048 2024-02-29 06:00:06.78 104890 900 \N \N \N 167384 2024-02-29 06:00:05.048 2024-02-29 06:00:06.786 101455 894 \N \N \N 167385 2024-02-29 06:00:05.048 2024-02-29 06:00:06.794 100249 5036 \N \N \N 167386 2024-02-29 06:00:05.048 2024-02-29 06:00:06.8 98779 1114 \N \N \N 167387 2024-02-29 06:00:05.048 2024-02-29 06:00:06.806 92214 4177 \N \N \N 167388 2024-02-29 06:00:05.048 2024-02-29 06:00:06.812 87144 21577 \N \N \N 167389 2024-02-29 06:00:05.048 2024-02-29 06:00:06.818 85800 10007 \N \N \N 167390 2024-02-29 06:00:05.048 2024-02-29 06:00:06.825 84521 8242 \N \N \N 167391 2024-02-29 06:00:05.048 2024-02-29 06:00:06.833 83654 7558 \N \N \N 167392 2024-02-29 06:00:05.048 2024-02-29 06:00:06.841 83528 18138 \N \N \N 167393 2024-02-29 06:00:05.048 2024-02-29 06:00:06.855 83464 1480 \N \N \N 167394 2024-02-29 06:00:05.048 2024-02-29 06:00:06.861 82147 880 \N \N \N 167395 2024-02-29 06:00:05.048 2024-02-29 06:00:06.867 81777 5195 \N \N \N 167396 2024-02-29 06:00:05.048 2024-02-29 06:00:06.877 80177 4083 \N \N \N 167397 2024-02-29 06:00:05.048 2024-02-29 06:00:06.883 80104 8168 \N \N \N 167398 2024-02-29 06:00:05.048 2024-02-29 06:00:06.894 80010 20381 \N \N \N 167399 2024-02-29 06:00:05.048 2024-02-29 06:00:06.901 79885 807 \N \N \N 167400 2024-02-29 06:00:05.048 2024-02-29 06:00:06.912 79793 1480 \N \N \N 167401 2024-02-29 06:00:05.048 2024-02-29 06:00:06.92 78175 19398 \N \N \N 167402 2024-02-29 06:00:05.048 2024-02-29 06:00:06.928 76270 4175 \N \N \N 167403 2024-02-29 06:00:05.048 2024-02-29 06:00:06.935 76171 21208 \N \N \N 167404 2024-02-29 06:00:05.048 2024-02-29 06:00:06.943 72881 14650 \N \N \N 167405 2024-02-29 06:00:05.048 2024-02-29 06:00:06.955 72655 5825 \N \N \N 167406 2024-02-29 06:00:05.048 2024-02-29 06:00:06.962 71676 5293 \N \N \N 167407 2024-02-29 06:00:05.048 2024-02-29 06:00:06.97 68023 19966 \N \N \N 167408 2024-02-29 06:00:05.048 2024-02-29 06:00:06.978 67975 20183 \N \N \N 167409 2024-02-29 06:00:05.048 2024-02-29 06:00:06.985 67468 12265 \N \N \N 167410 2024-02-29 06:00:05.048 2024-02-29 06:00:06.991 66797 761 \N \N \N 167411 2024-02-29 06:00:05.048 2024-02-29 06:00:06.998 65723 1483 \N \N \N 167412 2024-02-29 06:00:05.048 2024-02-29 06:00:07.004 65105 20430 \N \N \N 167413 2024-02-29 06:00:05.048 2024-02-29 06:00:07.012 64887 19664 \N \N \N 167414 2024-02-29 06:00:05.048 2024-02-29 06:00:07.022 64572 1319 \N \N \N 167415 2024-02-29 06:00:05.048 2024-02-29 06:00:07.029 63808 21605 \N \N \N 167416 2024-02-29 06:00:05.048 2024-02-29 06:00:07.035 61796 16704 \N \N \N 167417 2024-02-29 06:00:05.048 2024-02-29 06:00:07.041 59145 10398 \N \N \N 167418 2024-02-29 06:00:05.048 2024-02-29 06:00:07.046 55366 19813 \N \N \N 167419 2024-02-29 06:00:05.048 2024-02-29 06:00:07.052 55277 9362 \N \N \N 167420 2024-02-29 06:00:05.048 2024-02-29 06:00:07.06 54864 21249 \N \N \N 167421 2024-02-29 06:00:05.048 2024-02-29 06:00:07.066 54515 1114 \N \N \N 167422 2024-02-29 06:00:05.048 2024-02-29 06:00:07.073 53680 15890 \N \N \N 167423 2024-02-29 06:00:05.048 2024-02-29 06:00:07.08 52237 16942 \N \N \N 167424 2024-02-29 06:00:05.048 2024-02-29 06:00:07.087 51416 11038 \N \N \N 167425 2024-02-29 06:00:05.048 2024-02-29 06:00:07.098 51271 21214 \N \N \N 167426 2024-02-29 06:00:05.048 2024-02-29 06:00:07.112 48847 20669 \N \N \N 167427 2024-02-29 06:00:05.048 2024-02-29 06:00:07.12 47335 6136 \N \N \N 167428 2024-02-29 06:00:05.048 2024-02-29 06:00:07.129 47188 4259 \N \N \N 167429 2024-02-29 06:00:05.048 2024-02-29 06:00:07.138 46612 19284 \N \N \N 167430 2024-02-29 06:00:05.048 2024-02-29 06:00:07.147 45619 15239 \N \N \N 167431 2024-02-29 06:00:05.048 2024-02-29 06:00:07.153 45332 10393 \N \N \N 167432 2024-02-29 06:00:05.048 2024-02-29 06:00:07.159 43666 12188 \N \N \N 167433 2024-02-29 06:00:05.048 2024-02-29 06:00:07.167 42375 21379 \N \N \N 167434 2024-02-29 06:00:05.048 2024-02-29 06:00:07.173 42213 8245 \N \N \N 167435 2024-02-29 06:00:05.048 2024-02-29 06:00:07.179 42012 1008 \N \N \N 167436 2024-02-29 06:00:05.048 2024-02-29 06:00:07.186 41057 19581 \N \N \N 167437 2024-02-29 06:00:05.048 2024-02-29 06:00:07.196 40958 831 \N \N \N 167438 2024-02-29 06:00:05.048 2024-02-29 06:00:07.203 40550 21599 \N \N \N 167439 2024-02-29 06:00:05.048 2024-02-29 06:00:07.212 39759 9355 \N \N \N 167440 2024-02-29 06:00:05.048 2024-02-29 06:00:07.219 39468 18017 \N \N \N 167441 2024-02-29 06:00:05.048 2024-02-29 06:00:07.229 38863 16667 \N \N \N 167442 2024-02-29 06:00:05.048 2024-02-29 06:00:07.244 38661 1705 \N \N \N 167443 2024-02-29 06:00:05.048 2024-02-29 06:00:07.254 38646 20094 \N \N \N 167444 2024-02-29 06:00:05.048 2024-02-29 06:00:07.269 37597 12744 \N \N \N 167445 2024-02-29 06:00:05.048 2024-02-29 06:00:07.282 37393 1785 \N \N \N 167446 2024-02-29 06:00:05.048 2024-02-29 06:00:07.292 37384 21395 \N \N \N 167447 2024-02-29 06:00:05.048 2024-02-29 06:00:07.299 35603 13527 \N \N \N 167448 2024-02-29 06:00:05.048 2024-02-29 06:00:07.306 34708 18119 \N \N \N 167449 2024-02-29 06:00:05.048 2024-02-29 06:00:07.317 34700 20657 \N \N \N 167450 2024-02-29 06:00:05.048 2024-02-29 06:00:07.322 34566 2042 \N \N \N 167451 2024-02-29 06:00:05.048 2024-02-29 06:00:07.328 34551 20730 \N \N \N 167452 2024-02-29 06:00:05.048 2024-02-29 06:00:07.334 34171 11999 \N \N \N 167453 2024-02-29 06:00:05.048 2024-02-29 06:00:07.341 34064 19007 \N \N \N 167454 2024-02-29 06:00:05.048 2024-02-29 06:00:07.347 33029 628 \N \N \N 167455 2024-02-29 06:00:05.048 2024-02-29 06:00:07.354 32192 657 \N \N \N 167456 2024-02-29 06:00:05.048 2024-02-29 06:00:07.366 31672 18517 \N \N \N 167457 2024-02-29 06:00:05.048 2024-02-29 06:00:07.372 29710 18265 \N \N \N 167458 2024-02-29 06:00:05.048 2024-02-29 06:00:07.377 29259 16442 \N \N \N 167459 2024-02-29 06:00:05.048 2024-02-29 06:00:07.383 28656 1658 \N \N \N 167460 2024-02-29 06:00:05.048 2024-02-29 06:00:07.389 28392 21072 \N \N \N 167461 2024-02-29 06:00:05.048 2024-02-29 06:00:07.395 27979 9342 \N \N \N 167462 2024-02-29 06:00:05.048 2024-02-29 06:00:07.402 27747 16912 \N \N \N 167463 2024-02-29 06:00:05.048 2024-02-29 06:00:07.408 27621 10934 \N \N \N 167464 2024-02-29 06:00:05.048 2024-02-29 06:00:07.417 25356 12483 \N \N \N 167465 2024-02-29 06:00:05.048 2024-02-29 06:00:07.422 25138 12160 \N \N \N 167466 2024-02-29 06:00:05.048 2024-02-29 06:00:07.427 24151 18714 \N \N \N 167467 2024-02-29 06:00:05.048 2024-02-29 06:00:07.434 23870 14449 \N \N \N 167468 2024-02-29 06:00:05.048 2024-02-29 06:00:07.439 23637 686 \N \N \N 167469 2024-02-29 06:00:05.048 2024-02-29 06:00:07.445 23542 16839 \N \N \N 167470 2024-02-29 06:00:05.048 2024-02-29 06:00:07.451 22793 18984 \N \N \N 167471 2024-02-29 06:00:05.048 2024-02-29 06:00:07.458 22161 20683 \N \N \N 167472 2024-02-29 06:00:05.048 2024-02-29 06:00:07.464 22120 18511 \N \N \N 167473 2024-02-29 06:00:05.048 2024-02-29 06:00:07.47 21989 5942 \N \N \N 167474 2024-02-29 06:00:05.048 2024-02-29 06:00:07.475 20682 14202 \N \N \N 167475 2024-02-29 06:00:05.048 2024-02-29 06:00:07.48 20345 20710 \N \N \N 167476 2024-02-29 06:00:05.048 2024-02-29 06:00:07.487 20314 1471 \N \N \N 167477 2024-02-29 06:00:05.048 2024-02-29 06:00:07.493 20118 1439 \N \N \N 167478 2024-02-29 06:00:05.048 2024-02-29 06:00:07.498 18663 20326 \N \N \N 167479 2024-02-29 06:00:05.048 2024-02-29 06:00:07.505 18189 1740 \N \N \N 167480 2024-02-29 06:00:05.048 2024-02-29 06:00:07.51 17546 897 \N \N \N 167481 2024-02-29 06:00:05.048 2024-02-29 06:00:07.516 16062 12265 \N \N \N 167482 2024-02-29 06:00:05.048 2024-02-29 06:00:07.522 15575 4538 \N \N \N 167483 2024-02-29 06:00:05.048 2024-02-29 06:00:07.527 14827 2775 \N \N \N 167484 2024-02-29 06:00:05.048 2024-02-29 06:00:07.535 14422 21057 \N \N \N 167485 2024-02-29 06:00:05.048 2024-02-29 06:00:07.541 14353 18511 \N \N \N 167486 2024-02-29 06:00:05.048 2024-02-29 06:00:07.546 12436 1047 \N \N \N 167487 2024-02-29 06:00:05.048 2024-02-29 06:00:07.552 11545 18139 \N \N \N 167488 2024-02-29 06:00:05.048 2024-02-29 06:00:07.558 11400 11378 \N \N \N 167489 2024-02-29 06:00:05.048 2024-02-29 06:00:07.565 5731 21605 \N \N \N 167490 2024-02-29 06:00:05.048 2024-02-29 06:00:07.573 621112 12188 \N \N \N 167491 2024-02-29 06:00:05.048 2024-02-29 06:00:07.585 588003 20613 \N \N \N 167492 2024-02-29 06:00:05.048 2024-02-29 06:00:07.603 559162 2206 \N \N \N 167493 2024-02-29 06:00:05.048 2024-02-29 06:00:07.611 523304 18659 \N \N \N 167494 2024-02-29 06:00:05.048 2024-02-29 06:00:07.62 520886 20738 \N \N \N 167495 2024-02-29 06:00:05.048 2024-02-29 06:00:07.629 516868 9331 \N \N \N 167496 2024-02-29 06:00:05.048 2024-02-29 06:00:07.65 502650 7654 \N \N \N 167497 2024-02-29 06:00:05.048 2024-02-29 06:00:07.657 486719 4388 \N \N \N 167498 2024-02-29 06:00:05.048 2024-02-29 06:00:07.665 481625 1474 \N \N \N 167499 2024-02-29 06:00:05.048 2024-02-29 06:00:07.672 464103 18678 \N \N \N 167500 2024-02-29 06:00:05.048 2024-02-29 06:00:07.68 448304 19806 \N \N \N 167501 2024-02-29 06:00:05.048 2024-02-29 06:00:07.691 425412 16505 \N \N \N 167502 2024-02-29 06:00:05.048 2024-02-29 06:00:07.698 401698 18449 \N \N \N 167503 2024-02-29 06:00:05.048 2024-02-29 06:00:07.708 393085 5829 \N \N \N 167504 2024-02-29 06:00:05.048 2024-02-29 06:00:07.722 386665 5776 \N \N \N 167505 2024-02-29 06:00:05.048 2024-02-29 06:00:07.734 386588 13348 \N \N \N 167506 2024-02-29 06:00:05.048 2024-02-29 06:00:07.741 376256 8245 \N \N \N 167507 2024-02-29 06:00:05.048 2024-02-29 06:00:07.751 361269 21437 \N \N \N 167508 2024-02-29 06:00:05.048 2024-02-29 06:00:07.759 361026 4059 \N \N \N 167509 2024-02-29 06:00:05.048 2024-02-29 06:00:07.768 360839 21577 \N \N \N 167510 2024-02-29 06:00:05.048 2024-02-29 06:00:07.774 357742 12808 \N \N \N 167511 2024-02-29 06:00:05.048 2024-02-29 06:00:07.782 347526 9177 \N \N \N 167512 2024-02-29 06:00:05.048 2024-02-29 06:00:07.791 341695 18904 \N \N \N 167513 2024-02-29 06:00:05.048 2024-02-29 06:00:07.798 341606 4654 \N \N \N 167514 2024-02-29 06:00:05.048 2024-02-29 06:00:07.812 333538 17927 \N \N \N 167515 2024-02-29 06:00:05.048 2024-02-29 06:00:07.821 330928 716 \N \N \N 167516 2024-02-29 06:00:05.048 2024-02-29 06:00:07.828 322965 2722 \N \N \N 167517 2024-02-29 06:00:05.048 2024-02-29 06:00:07.836 320875 19506 \N \N \N 167518 2024-02-29 06:00:05.048 2024-02-29 06:00:07.846 308887 20291 \N \N \N 167519 2024-02-29 06:00:05.048 2024-02-29 06:00:07.853 308291 21091 \N \N \N 167520 2024-02-29 06:00:05.048 2024-02-29 06:00:07.862 305497 21157 \N \N \N 167521 2024-02-29 06:00:05.048 2024-02-29 06:00:07.896 299622 2789 \N \N \N 167522 2024-02-29 06:00:05.048 2024-02-29 06:00:07.911 299453 20663 \N \N \N 167523 2024-02-29 06:00:05.048 2024-02-29 06:00:07.919 299453 18517 \N \N \N 167524 2024-02-29 06:00:05.048 2024-02-29 06:00:07.926 296731 16267 \N \N \N 167525 2024-02-29 06:00:05.048 2024-02-29 06:00:07.934 295738 3409 \N \N \N 167526 2024-02-29 06:00:05.048 2024-02-29 06:00:07.944 287230 19569 \N \N \N 167527 2024-02-29 06:00:05.048 2024-02-29 06:00:07.952 285476 20781 \N \N \N 167528 2024-02-29 06:00:05.048 2024-02-29 06:00:07.959 284804 14255 \N \N \N 167529 2024-02-29 06:00:05.048 2024-02-29 06:00:07.966 284561 4521 \N \N \N 167530 2024-02-29 06:00:05.048 2024-02-29 06:00:07.975 284542 15326 \N \N \N 167531 2024-02-29 06:00:05.048 2024-02-29 06:00:07.984 284420 18625 \N \N \N 167532 2024-02-29 06:00:05.048 2024-02-29 06:00:07.993 284419 10771 \N \N \N 167533 2024-02-29 06:00:05.048 2024-02-29 06:00:08 282323 20706 \N \N \N 167534 2024-02-29 06:00:05.048 2024-02-29 06:00:08.014 278792 21263 \N \N \N 167535 2024-02-29 06:00:05.048 2024-02-29 06:00:08.029 278771 14910 \N \N \N 167536 2024-02-29 06:00:05.048 2024-02-29 06:00:08.036 278686 17519 \N \N \N 167537 2024-02-29 06:00:05.048 2024-02-29 06:00:08.047 277142 19335 \N \N \N 167538 2024-02-29 06:00:05.048 2024-02-29 06:00:08.064 270402 21405 \N \N \N 167539 2024-02-29 06:00:05.048 2024-02-29 06:00:08.074 270402 650 \N \N \N 167540 2024-02-29 06:00:05.048 2024-02-29 06:00:08.082 265639 1959 \N \N \N 167541 2024-02-29 06:00:05.048 2024-02-29 06:00:08.091 264918 14545 \N \N \N 167542 2024-02-29 06:00:05.048 2024-02-29 06:00:08.103 263449 17094 \N \N \N 167543 2024-02-29 06:00:05.048 2024-02-29 06:00:08.114 263341 2703 \N \N \N 167544 2024-02-29 06:00:05.048 2024-02-29 06:00:08.133 263325 21022 \N \N \N 167545 2024-02-29 06:00:05.048 2024-02-29 06:00:08.142 263319 20681 \N \N \N 167546 2024-02-29 06:00:05.048 2024-02-29 06:00:08.157 263281 9335 \N \N \N 167547 2024-02-29 06:00:05.048 2024-02-29 06:00:08.166 263269 1094 \N \N \N 167548 2024-02-29 06:00:05.048 2024-02-29 06:00:08.173 263269 2075 \N \N \N 167549 2024-02-29 06:00:05.048 2024-02-29 06:00:08.179 263263 8729 \N \N \N 167550 2024-02-29 06:00:05.048 2024-02-29 06:00:08.185 263229 897 \N \N \N 167551 2024-02-29 06:00:05.048 2024-02-29 06:00:08.196 261341 16988 \N \N \N 167552 2024-02-29 06:00:05.048 2024-02-29 06:00:08.203 258492 7553 \N \N \N 167553 2024-02-29 06:00:05.048 2024-02-29 06:00:08.216 258192 21214 \N \N \N 167554 2024-02-29 06:00:05.048 2024-02-29 06:00:08.226 257530 21578 \N \N \N 167555 2024-02-29 06:00:05.048 2024-02-29 06:00:08.233 257497 5538 \N \N \N 167556 2024-02-29 06:00:05.048 2024-02-29 06:00:08.251 253141 21627 \N \N \N 167557 2024-02-29 06:00:05.048 2024-02-29 06:00:08.262 252326 13544 \N \N \N 167558 2024-02-29 06:00:05.048 2024-02-29 06:00:08.271 248199 5293 \N \N \N 167559 2024-02-29 06:00:05.048 2024-02-29 06:00:08.289 243675 929 \N \N \N 167560 2024-02-29 06:00:05.048 2024-02-29 06:00:08.297 240842 6616 \N \N \N 167561 2024-02-29 06:00:05.048 2024-02-29 06:00:08.303 240831 661 \N \N \N 167562 2024-02-29 06:00:05.048 2024-02-29 06:00:08.32 240802 19911 \N \N \N 167563 2024-02-29 06:00:05.048 2024-02-29 06:00:08.33 240780 18177 \N \N \N 167564 2024-02-29 06:00:05.048 2024-02-29 06:00:08.338 240775 13843 \N \N \N 167565 2024-02-29 06:00:05.048 2024-02-29 06:00:08.344 240756 18274 \N \N \N 167566 2024-02-29 06:00:05.048 2024-02-29 06:00:08.352 240754 15139 \N \N \N 167567 2024-02-29 06:00:05.048 2024-02-29 06:00:08.362 240754 21079 \N \N \N 167568 2024-02-29 06:00:05.048 2024-02-29 06:00:08.371 240722 12049 \N \N \N 167569 2024-02-29 06:00:05.048 2024-02-29 06:00:08.379 240672 12516 \N \N \N 167570 2024-02-29 06:00:05.048 2024-02-29 06:00:08.388 240665 6260 \N \N \N 167571 2024-02-29 06:00:05.048 2024-02-29 06:00:08.396 240665 19553 \N \N \N 167572 2024-02-29 06:00:05.048 2024-02-29 06:00:08.403 240665 21060 \N \N \N 167573 2024-02-29 06:00:05.048 2024-02-29 06:00:08.426 240665 20185 \N \N \N 167574 2024-02-29 06:00:05.048 2024-02-29 06:00:08.444 235573 15326 \N \N \N 167575 2024-02-29 06:00:05.048 2024-02-29 06:00:08.468 229996 9331 \N \N \N 167576 2024-02-29 06:00:05.048 2024-02-29 06:00:08.494 229409 3440 \N \N \N 167577 2024-02-29 06:00:05.048 2024-02-29 06:00:08.509 227216 8570 \N \N \N 167578 2024-02-29 06:00:05.048 2024-02-29 06:00:08.517 227150 20301 \N \N \N 167579 2024-02-29 06:00:05.048 2024-02-29 06:00:08.528 227118 676 \N \N \N 167580 2024-02-29 06:00:05.048 2024-02-29 06:00:08.543 227081 12561 \N \N \N 167581 2024-02-29 06:00:05.048 2024-02-29 06:00:08.56 227065 1145 \N \N \N 167582 2024-02-29 06:00:05.048 2024-02-29 06:00:08.568 227046 3683 \N \N \N 167583 2024-02-29 06:00:05.048 2024-02-29 06:00:08.586 227031 17030 \N \N \N 167584 2024-02-29 06:00:05.048 2024-02-29 06:00:08.607 227031 16556 \N \N \N 167585 2024-02-29 06:00:05.048 2024-02-29 06:00:08.622 227031 20291 \N \N \N 167586 2024-02-29 06:00:05.048 2024-02-29 06:00:08.63 227031 20577 \N \N \N 167587 2024-02-29 06:00:05.048 2024-02-29 06:00:08.642 227031 17316 \N \N \N 167588 2024-02-29 06:00:05.048 2024-02-29 06:00:08.652 227027 977 \N \N \N 167589 2024-02-29 06:00:05.048 2024-02-29 06:00:08.662 227006 11522 \N \N \N 167590 2024-02-29 06:00:05.048 2024-02-29 06:00:08.677 227006 13246 \N \N \N 167591 2024-02-29 06:00:05.048 2024-02-29 06:00:08.69 227006 20381 \N \N \N 167592 2024-02-29 06:00:05.048 2024-02-29 06:00:08.698 227006 5520 \N \N \N 167593 2024-02-29 06:00:05.048 2024-02-29 06:00:08.705 227006 4395 \N \N \N 167594 2024-02-29 06:00:05.048 2024-02-29 06:00:08.717 227006 9816 \N \N \N 167595 2024-02-29 06:00:05.048 2024-02-29 06:00:08.729 227006 18735 \N \N \N 167596 2024-02-29 06:00:05.048 2024-02-29 06:00:08.737 227006 6765 \N \N \N 167597 2024-02-29 06:00:05.048 2024-02-29 06:00:08.748 227006 1512 \N \N \N 167598 2024-02-29 06:00:05.048 2024-02-29 06:00:08.761 227006 21262 \N \N \N 167599 2024-02-29 06:00:05.048 2024-02-29 06:00:08.769 227006 16858 \N \N \N 167600 2024-02-29 06:00:05.048 2024-02-29 06:00:08.78 227006 11678 \N \N \N 167601 2024-02-29 06:00:05.048 2024-02-29 06:00:08.787 227006 10102 \N \N \N 167602 2024-02-29 06:00:05.048 2024-02-29 06:00:08.793 227006 18667 \N \N \N 167603 2024-02-29 06:00:05.048 2024-02-29 06:00:08.8 227006 5761 \N \N \N 167604 2024-02-29 06:00:05.048 2024-02-29 06:00:08.812 227006 18836 \N \N \N 167605 2024-02-29 06:00:05.048 2024-02-29 06:00:08.823 227006 1631 \N \N \N 167606 2024-02-29 06:00:05.048 2024-02-29 06:00:08.834 221365 17638 \N \N \N 167607 2024-02-29 06:00:05.048 2024-02-29 06:00:08.846 221327 7992 \N \N \N 167608 2024-02-29 06:00:05.048 2024-02-29 06:00:08.855 221306 18533 \N \N \N 167609 2024-02-29 06:00:05.048 2024-02-29 06:00:08.873 221298 19546 \N \N \N 167610 2024-02-29 06:00:05.048 2024-02-29 06:00:08.884 221298 19465 \N \N \N 167611 2024-02-29 06:00:05.048 2024-02-29 06:00:08.893 221298 21466 \N \N \N 167612 2024-02-29 06:00:05.048 2024-02-29 06:00:08.9 221273 21287 \N \N \N 167613 2024-02-29 06:00:05.048 2024-02-29 06:00:08.907 221273 21233 \N \N \N 167614 2024-02-29 06:00:05.048 2024-02-29 06:00:08.915 221273 21427 \N \N \N 167615 2024-02-29 06:00:05.048 2024-02-29 06:00:08.923 221273 9921 \N \N \N 167616 2024-02-29 06:00:05.048 2024-02-29 06:00:08.932 221273 4083 \N \N \N 167617 2024-02-29 06:00:05.048 2024-02-29 06:00:08.94 221273 20614 \N \N \N 167618 2024-02-29 06:00:05.048 2024-02-29 06:00:08.948 221273 12218 \N \N \N 167619 2024-02-29 06:00:05.048 2024-02-29 06:00:08.955 221273 19813 \N \N \N 167620 2024-02-29 06:00:05.048 2024-02-29 06:00:08.965 221273 19154 \N \N \N 167621 2024-02-29 06:00:05.048 2024-02-29 06:00:08.972 220296 20614 \N \N \N 167622 2024-02-29 06:00:05.048 2024-02-29 06:00:08.984 220206 876 \N \N \N 167623 2024-02-29 06:00:05.048 2024-02-29 06:00:08.991 220206 11038 \N \N \N 167624 2024-02-29 06:00:05.048 2024-02-29 06:00:09 206796 20264 \N \N \N 167625 2024-02-29 06:00:05.048 2024-02-29 06:00:09.007 205476 5003 \N \N \N 167626 2024-02-29 06:00:05.048 2024-02-29 06:00:09.032 204593 16284 \N \N \N 167627 2024-02-29 06:00:05.048 2024-02-29 06:00:09.045 199315 13931 \N \N \N 167628 2024-02-29 06:00:05.048 2024-02-29 06:00:09.053 190847 18119 \N \N \N 167629 2024-02-29 06:00:05.048 2024-02-29 06:00:09.061 190652 9985 \N \N \N 167630 2024-02-29 06:00:05.048 2024-02-29 06:00:09.075 186059 16178 \N \N \N 167631 2024-02-29 06:00:05.048 2024-02-29 06:00:09.09 181945 4819 \N \N \N 167632 2024-02-29 06:00:05.048 2024-02-29 06:00:09.1 177800 18453 \N \N \N 167633 2024-02-29 06:00:05.048 2024-02-29 06:00:09.109 172923 9036 \N \N \N 167634 2024-02-29 06:00:05.048 2024-02-29 06:00:09.116 170609 21589 \N \N \N 167635 2024-02-29 06:00:05.048 2024-02-29 06:00:09.123 170228 4574 \N \N \N 167636 2024-02-29 06:00:05.048 2024-02-29 06:00:09.132 170194 16684 \N \N \N 167637 2024-02-29 06:00:05.048 2024-02-29 06:00:09.147 168251 5775 \N \N \N 167638 2024-02-29 06:00:05.048 2024-02-29 06:00:09.157 163445 3518 \N \N \N 167639 2024-02-29 06:00:05.048 2024-02-29 06:00:09.165 161018 19524 \N \N \N 167640 2024-02-29 06:00:05.048 2024-02-29 06:00:09.172 156771 3440 \N \N \N 167641 2024-02-29 06:00:05.048 2024-02-29 06:00:09.183 155941 1474 \N \N \N 167642 2024-02-29 06:00:05.048 2024-02-29 06:00:09.19 154974 19527 \N \N \N 167643 2024-02-29 06:00:05.048 2024-02-29 06:00:09.199 154282 5809 \N \N \N 167644 2024-02-29 06:00:05.048 2024-02-29 06:00:09.208 154179 3371 \N \N \N 167645 2024-02-29 06:00:05.048 2024-02-29 06:00:09.215 152724 8648 \N \N \N 167646 2024-02-29 06:00:05.048 2024-02-29 06:00:09.224 149028 18877 \N \N \N 167647 2024-02-29 06:00:05.048 2024-02-29 06:00:09.232 149003 675 \N \N \N 167648 2024-02-29 06:00:05.048 2024-02-29 06:00:09.242 144662 2338 \N \N \N 167649 2024-02-29 06:00:05.048 2024-02-29 06:00:09.254 143003 20594 \N \N \N 167650 2024-02-29 06:00:05.048 2024-02-29 06:00:09.265 142560 10398 \N \N \N 167651 2024-02-29 06:00:05.048 2024-02-29 06:00:09.274 141845 18270 \N \N \N 167652 2024-02-29 06:00:05.048 2024-02-29 06:00:09.284 139701 21026 \N \N \N 167653 2024-02-29 06:00:05.048 2024-02-29 06:00:09.293 130357 20588 \N \N \N 167654 2024-02-29 06:00:05.048 2024-02-29 06:00:09.302 127511 6419 \N \N \N 167655 2024-02-29 06:00:05.048 2024-02-29 06:00:09.309 125243 3439 \N \N \N 167656 2024-02-29 06:00:05.048 2024-02-29 06:00:09.319 121100 18769 \N \N \N 167657 2024-02-29 06:00:05.048 2024-02-29 06:00:09.331 120931 21145 \N \N \N 167658 2024-02-29 06:00:05.048 2024-02-29 06:00:09.338 120496 21091 \N \N \N 167659 2024-02-29 06:00:05.048 2024-02-29 06:00:09.347 120422 19153 \N \N \N 167660 2024-02-29 06:00:05.048 2024-02-29 06:00:09.354 120422 622 \N \N \N 167661 2024-02-29 06:00:05.048 2024-02-29 06:00:09.362 120385 19878 \N \N \N 167662 2024-02-29 06:00:05.048 2024-02-29 06:00:09.372 120372 17541 \N \N \N 167663 2024-02-29 06:00:05.048 2024-02-29 06:00:09.381 120372 17722 \N \N \N 167664 2024-02-29 06:00:05.048 2024-02-29 06:00:09.391 120344 2502 \N \N \N 167665 2024-02-29 06:00:05.048 2024-02-29 06:00:09.405 120344 21609 \N \N \N 167666 2024-02-29 06:00:05.048 2024-02-29 06:00:09.418 120344 18784 \N \N \N 167667 2024-02-29 06:00:05.048 2024-02-29 06:00:09.425 120332 2065 \N \N \N 167668 2024-02-29 06:00:05.048 2024-02-29 06:00:09.434 120332 9339 \N \N \N 167669 2024-02-29 06:00:05.048 2024-02-29 06:00:09.444 120332 20183 \N \N \N 167670 2024-02-29 06:00:05.048 2024-02-29 06:00:09.451 120332 21216 \N \N \N 167671 2024-02-29 06:00:05.048 2024-02-29 06:00:09.46 120332 3686 \N \N \N 167672 2024-02-29 06:00:05.048 2024-02-29 06:00:09.467 120332 19557 \N \N \N 167673 2024-02-29 06:00:05.048 2024-02-29 06:00:09.474 120332 8242 \N \N \N 167674 2024-02-29 06:00:05.048 2024-02-29 06:00:09.485 120332 18675 \N \N \N 167675 2024-02-29 06:00:05.048 2024-02-29 06:00:09.493 120332 17797 \N \N \N 167676 2024-02-29 06:00:05.048 2024-02-29 06:00:09.501 120332 12930 \N \N \N 167677 2024-02-29 06:00:05.048 2024-02-29 06:00:09.511 120332 19037 \N \N \N 167678 2024-02-29 06:00:05.048 2024-02-29 06:00:09.52 120332 19459 \N \N \N 167679 2024-02-29 06:00:05.048 2024-02-29 06:00:09.527 120332 17275 \N \N \N 167680 2024-02-29 06:00:05.048 2024-02-29 06:00:09.534 120332 1609 \N \N \N 167681 2024-02-29 06:00:05.048 2024-02-29 06:00:09.545 120332 8841 \N \N \N 167682 2024-02-29 06:00:05.048 2024-02-29 06:00:09.562 120332 739 \N \N \N 167683 2024-02-29 06:00:05.048 2024-02-29 06:00:09.57 120332 19842 \N \N \N 167684 2024-02-29 06:00:05.048 2024-02-29 06:00:09.579 120332 19987 \N \N \N 167685 2024-02-29 06:00:05.048 2024-02-29 06:00:09.596 120332 19839 \N \N \N 167686 2024-02-29 06:00:05.048 2024-02-29 06:00:09.621 120265 11716 \N \N \N 167687 2024-02-29 06:00:05.048 2024-02-29 06:00:09.64 120265 18460 \N \N \N 167688 2024-02-29 06:00:05.048 2024-02-29 06:00:09.649 120265 20433 \N \N \N 167689 2024-02-29 06:00:05.048 2024-02-29 06:00:09.659 120265 7989 \N \N \N 167690 2024-02-29 06:00:05.048 2024-02-29 06:00:09.667 120265 18270 \N \N \N 167691 2024-02-29 06:00:05.048 2024-02-29 06:00:09.682 116937 6421 \N \N \N 167692 2024-02-29 06:00:05.048 2024-02-29 06:00:09.697 111189 1298 \N \N \N 167693 2024-02-29 06:00:05.048 2024-02-29 06:00:09.707 110842 1584 \N \N \N 167694 2024-02-29 06:00:05.048 2024-02-29 06:00:09.717 108954 13076 \N \N \N 167695 2024-02-29 06:00:05.048 2024-02-29 06:00:09.726 108213 11515 \N \N \N 167696 2024-02-29 06:00:05.048 2024-02-29 06:00:09.74 107124 11378 \N \N \N 167697 2024-02-29 06:00:05.048 2024-02-29 06:00:09.748 106074 20153 \N \N \N 167698 2024-02-29 06:00:05.048 2024-02-29 06:00:09.767 105113 712 \N \N \N 167699 2024-02-29 06:00:05.048 2024-02-29 06:00:09.785 104478 21413 \N \N \N 167700 2024-02-29 06:00:05.048 2024-02-29 06:00:09.793 104478 21430 \N \N \N 167701 2024-02-29 06:00:05.048 2024-02-29 06:00:09.809 104478 19533 \N \N \N 167702 2024-02-29 06:00:05.048 2024-02-29 06:00:09.819 104478 7510 \N \N \N 167703 2024-02-29 06:00:05.048 2024-02-29 06:00:09.829 104421 17183 \N \N \N 167704 2024-02-29 06:00:05.048 2024-02-29 06:00:09.836 102769 19151 \N \N \N 167705 2024-02-29 06:00:05.048 2024-02-29 06:00:09.846 102707 20481 \N \N \N 167706 2024-02-29 06:00:05.048 2024-02-29 06:00:09.854 102537 6160 \N \N \N 167707 2024-02-29 06:00:05.048 2024-02-29 06:00:09.862 102537 2347 \N \N \N 167708 2024-02-29 06:00:05.048 2024-02-29 06:00:09.869 102537 3686 \N \N \N 167709 2024-02-29 06:00:05.048 2024-02-29 06:00:09.877 102163 2000 \N \N \N 167710 2024-02-29 06:00:05.048 2024-02-29 06:00:09.886 102163 10398 \N \N \N 167711 2024-02-29 06:00:05.048 2024-02-29 06:00:09.895 102163 16948 \N \N \N 167712 2024-02-29 06:00:05.048 2024-02-29 06:00:09.902 102163 20981 \N \N \N 167713 2024-02-29 06:00:05.048 2024-02-29 06:00:09.911 102163 4084 \N \N \N 167714 2024-02-29 06:00:05.048 2024-02-29 06:00:09.918 102163 16250 \N \N \N 167715 2024-02-29 06:00:05.048 2024-02-29 06:00:09.926 102163 7966 \N \N \N 167716 2024-02-29 06:00:05.048 2024-02-29 06:00:09.933 101494 9363 \N \N \N 167717 2024-02-29 06:00:05.048 2024-02-29 06:00:09.939 100118 9109 \N \N \N 167718 2024-02-29 06:00:05.048 2024-02-29 06:00:09.947 100094 17693 \N \N \N 167719 2024-02-29 06:00:05.048 2024-02-29 06:00:09.956 100050 21523 \N \N \N 167720 2024-02-29 06:00:05.048 2024-02-29 06:00:09.963 99960 3461 \N \N \N 167721 2024-02-29 06:00:05.048 2024-02-29 06:00:09.97 99927 14295 \N \N \N 167722 2024-02-29 06:00:05.048 2024-02-29 06:00:09.978 99927 21395 \N \N \N 167723 2024-02-29 06:00:05.048 2024-02-29 06:00:09.987 99907 19034 \N \N \N 167724 2024-02-29 06:00:05.048 2024-02-29 06:00:09.994 99907 12483 \N \N \N 167725 2024-02-29 06:00:05.048 2024-02-29 06:00:10.024 99907 16562 \N \N \N 167726 2024-02-29 06:00:05.048 2024-02-29 06:00:10.056 99907 18476 \N \N \N 167727 2024-02-29 06:00:05.048 2024-02-29 06:00:10.074 99907 20849 \N \N \N 167728 2024-02-29 06:00:05.048 2024-02-29 06:00:10.087 99907 17275 \N \N \N 167729 2024-02-29 06:00:05.048 2024-02-29 06:00:10.101 99907 20606 \N \N \N 167730 2024-02-29 06:00:05.048 2024-02-29 06:00:10.12 99907 12736 \N \N \N 167731 2024-02-29 06:00:05.048 2024-02-29 06:00:10.129 99907 20683 \N \N \N 167732 2024-02-29 06:00:05.048 2024-02-29 06:00:10.142 99899 20102 \N \N \N 167733 2024-02-29 06:00:05.048 2024-02-29 06:00:10.152 99878 21588 \N \N \N 167734 2024-02-29 06:00:05.048 2024-02-29 06:00:10.16 99875 15196 \N \N \N 167735 2024-02-29 06:00:05.048 2024-02-29 06:00:10.179 99874 13169 \N \N \N 167736 2024-02-29 06:00:05.048 2024-02-29 06:00:10.193 99874 6393 \N \N \N 167737 2024-02-29 06:00:05.048 2024-02-29 06:00:10.206 99874 20137 \N \N \N 167738 2024-02-29 06:00:05.048 2024-02-29 06:00:10.215 99874 14308 \N \N \N 167739 2024-02-29 06:00:05.048 2024-02-29 06:00:10.225 99874 11165 \N \N \N 167740 2024-02-29 06:00:05.048 2024-02-29 06:00:10.261 99874 14295 \N \N \N 167741 2024-02-29 06:00:05.048 2024-02-29 06:00:10.291 99874 20454 \N \N \N 167742 2024-02-29 06:00:05.048 2024-02-29 06:00:10.336 99874 21164 \N \N \N 167743 2024-02-29 06:00:05.048 2024-02-29 06:00:10.375 99874 18116 \N \N \N 167744 2024-02-29 06:00:05.048 2024-02-29 06:00:10.426 99874 18280 \N \N \N 167745 2024-02-29 06:00:05.048 2024-02-29 06:00:10.45 99874 16562 \N \N \N 167746 2024-02-29 06:00:05.048 2024-02-29 06:00:10.464 99874 9150 \N \N \N 167747 2024-02-29 06:00:05.048 2024-02-29 06:00:10.483 99874 18446 \N \N \N 167748 2024-02-29 06:00:05.048 2024-02-29 06:00:10.504 99874 11897 \N \N \N 167749 2024-02-29 06:00:05.048 2024-02-29 06:00:10.524 99874 19980 \N \N \N 167750 2024-02-29 06:00:05.048 2024-02-29 06:00:10.55 99874 21047 \N \N \N 167751 2024-02-29 06:00:05.048 2024-02-29 06:00:10.586 99874 18271 \N \N \N 167752 2024-02-29 06:00:05.048 2024-02-29 06:00:10.624 99874 20849 \N \N \N 167753 2024-02-29 06:00:05.048 2024-02-29 06:00:10.684 99874 21314 \N \N \N 167754 2024-02-29 06:00:05.048 2024-02-29 06:00:10.736 99874 11670 \N \N \N 167755 2024-02-29 06:00:05.048 2024-02-29 06:00:10.772 99874 21555 \N \N \N 167756 2024-02-29 06:00:05.048 2024-02-29 06:00:10.812 99874 15139 \N \N \N 167757 2024-02-29 06:00:05.048 2024-02-29 06:00:10.862 99874 9355 \N \N \N 167758 2024-02-29 06:00:05.048 2024-02-29 06:00:10.907 99874 670 \N \N \N 167759 2024-02-29 06:00:05.048 2024-02-29 06:00:10.948 99874 5825 \N \N \N 167760 2024-02-29 06:00:05.048 2024-02-29 06:00:10.979 99874 21522 \N \N \N 167761 2024-02-29 06:00:05.048 2024-02-29 06:00:10.994 99874 21547 \N \N \N 167762 2024-02-29 06:00:05.048 2024-02-29 06:00:11.014 99874 17514 \N \N \N 167763 2024-02-29 06:00:05.048 2024-02-29 06:00:11.041 99874 18271 \N \N \N 167764 2024-02-29 06:00:05.048 2024-02-29 06:00:11.058 95156 9200 \N \N \N 167765 2024-02-29 06:00:05.048 2024-02-29 06:00:11.073 94507 11458 \N \N \N 167766 2024-02-29 06:00:05.048 2024-02-29 06:00:11.094 93564 12175 \N \N \N 167767 2024-02-29 06:00:05.048 2024-02-29 06:00:11.152 93550 18116 \N \N \N 167768 2024-02-29 06:00:05.048 2024-02-29 06:00:11.221 93524 9421 \N \N \N 167769 2024-02-29 06:00:05.048 2024-02-29 06:00:11.315 93524 21061 \N \N \N 167770 2024-02-29 06:00:05.048 2024-02-29 06:00:11.376 93524 4014 \N \N \N 167771 2024-02-29 06:00:05.048 2024-02-29 06:00:11.476 93524 8713 \N \N \N 167772 2024-02-29 06:00:05.048 2024-02-29 06:00:11.543 93524 12483 \N \N \N 167773 2024-02-29 06:00:05.048 2024-02-29 06:00:11.598 93524 12774 \N \N \N 167774 2024-02-29 06:00:05.048 2024-02-29 06:00:11.699 93524 20377 \N \N \N 167775 2024-02-29 06:00:05.048 2024-02-29 06:00:11.791 93524 6202 \N \N \N 167776 2024-02-29 06:00:05.048 2024-02-29 06:00:11.884 93108 16126 \N \N \N 167777 2024-02-29 06:00:05.048 2024-02-29 06:00:11.984 92070 10591 \N \N \N 167778 2024-02-29 06:00:05.048 2024-02-29 06:00:12.082 91441 15556 \N \N \N 167779 2024-02-29 06:00:05.048 2024-02-29 06:00:12.167 90097 650 \N \N \N 167780 2024-02-29 06:00:05.048 2024-02-29 06:00:12.287 89724 2508 \N \N \N 167781 2024-02-29 06:00:05.048 2024-02-29 06:00:12.361 86575 18114 \N \N \N 167782 2024-02-29 06:00:05.048 2024-02-29 06:00:12.492 84967 3400 \N \N \N 167783 2024-02-29 06:00:05.048 2024-02-29 06:00:12.612 83102 691 \N \N \N 167784 2024-02-29 06:00:05.048 2024-02-29 06:00:12.706 82617 675 \N \N \N 167785 2024-02-29 06:00:05.048 2024-02-29 06:00:12.775 82071 17201 \N \N \N 167786 2024-02-29 06:00:05.048 2024-02-29 06:00:12.869 82071 1006 \N \N \N 167787 2024-02-29 06:00:05.048 2024-02-29 06:00:12.998 82071 756 \N \N \N 167788 2024-02-29 06:00:05.048 2024-02-29 06:00:13.093 81880 4633 \N \N \N 167789 2024-02-29 06:00:05.048 2024-02-29 06:00:13.186 80188 15549 \N \N \N 167790 2024-02-29 06:00:05.048 2024-02-29 06:00:13.282 80188 985 \N \N \N 167791 2024-02-29 06:00:05.048 2024-02-29 06:00:13.343 80188 9246 \N \N \N 167792 2024-02-29 06:00:05.048 2024-02-29 06:00:13.407 79548 9350 \N \N \N 167793 2024-02-29 06:00:05.048 2024-02-29 06:00:13.504 79545 6537 \N \N \N 167794 2024-02-29 06:00:05.048 2024-02-29 06:00:13.565 79508 21514 \N \N \N 167795 2024-02-29 06:00:05.048 2024-02-29 06:00:13.627 79508 9354 \N \N \N 167796 2024-02-29 06:00:05.048 2024-02-29 06:00:13.687 79508 2204 \N \N \N 167797 2024-02-29 06:00:05.048 2024-02-29 06:00:13.786 79017 5703 \N \N \N 167798 2024-02-29 06:00:05.048 2024-02-29 06:00:13.876 77702 15762 \N \N \N 167799 2024-02-29 06:00:05.048 2024-02-29 06:00:13.974 77682 704 \N \N \N 167800 2024-02-29 06:00:05.048 2024-02-29 06:00:13.989 77681 16351 \N \N \N 167801 2024-02-29 06:00:05.048 2024-02-29 06:00:13.998 77649 11516 \N \N \N 167802 2024-02-29 06:00:05.048 2024-02-29 06:00:14.01 74562 7869 \N \N \N 167803 2024-02-29 06:00:05.048 2024-02-29 06:00:14.021 74198 17570 \N \N \N 167804 2024-02-29 06:00:05.048 2024-02-29 06:00:14.029 73778 20310 \N \N \N 167805 2024-02-29 06:00:05.048 2024-02-29 06:00:14.037 70574 18500 \N \N \N 167806 2024-02-29 06:00:05.048 2024-02-29 06:00:14.044 70373 8713 \N \N \N 167807 2024-02-29 06:00:05.048 2024-02-29 06:00:14.053 70320 20602 \N \N \N 167808 2024-02-29 06:00:05.048 2024-02-29 06:00:14.061 70320 21233 \N \N \N 167809 2024-02-29 06:00:05.048 2024-02-29 06:00:14.076 70320 15858 \N \N \N 167810 2024-02-29 06:00:05.048 2024-02-29 06:00:14.083 70320 21064 \N \N \N 167811 2024-02-29 06:00:05.048 2024-02-29 06:00:14.1 70320 2444 \N \N \N 167812 2024-02-29 06:00:05.048 2024-02-29 06:00:14.109 70320 12158 \N \N \N 167813 2024-02-29 06:00:05.048 2024-02-29 06:00:14.12 70320 21239 \N \N \N 167814 2024-02-29 06:00:05.048 2024-02-29 06:00:14.128 70320 19878 \N \N \N 167815 2024-02-29 06:00:05.048 2024-02-29 06:00:14.137 70320 5758 \N \N \N 167816 2024-02-29 06:00:05.048 2024-02-29 06:00:14.144 70320 992 \N \N \N 167817 2024-02-29 06:00:05.048 2024-02-29 06:00:14.152 70320 13198 \N \N \N 167818 2024-02-29 06:00:05.048 2024-02-29 06:00:14.164 69896 19031 \N \N \N 167819 2024-02-29 06:00:05.048 2024-02-29 06:00:14.173 69868 13843 \N \N \N 167820 2024-02-29 06:00:05.048 2024-02-29 06:00:14.181 68937 6191 \N \N \N 167821 2024-02-29 06:00:05.048 2024-02-29 06:00:14.188 68565 18314 \N \N \N 167822 2024-02-29 06:00:05.048 2024-02-29 06:00:14.195 68554 5828 \N \N \N 167823 2024-02-29 06:00:05.048 2024-02-29 06:00:14.204 68195 16660 \N \N \N 167824 2024-02-29 06:00:05.048 2024-02-29 06:00:14.213 67868 2780 \N \N \N 167825 2024-02-29 06:00:05.048 2024-02-29 06:00:14.223 67291 20073 \N \N \N 167826 2024-02-29 06:00:05.048 2024-02-29 06:00:14.236 64651 5057 \N \N \N 167827 2024-02-29 06:00:05.048 2024-02-29 06:00:14.245 63766 5427 \N \N \N 167828 2024-02-29 06:00:05.048 2024-02-29 06:00:14.255 63555 8544 \N \N \N 167829 2024-02-29 06:00:05.048 2024-02-29 06:00:14.262 63065 9167 \N \N \N 167830 2024-02-29 06:00:05.048 2024-02-29 06:00:14.274 62516 9167 \N \N \N 167831 2024-02-29 06:00:05.048 2024-02-29 06:00:14.285 62390 699 \N \N \N 167832 2024-02-29 06:00:05.048 2024-02-29 06:00:14.293 60963 21214 \N \N \N 167833 2024-02-29 06:00:05.048 2024-02-29 06:00:14.315 60756 4167 \N \N \N 167834 2024-02-29 06:00:05.048 2024-02-29 06:00:14.326 59687 18717 \N \N \N 167835 2024-02-29 06:00:05.048 2024-02-29 06:00:14.333 59597 9171 \N \N \N 167836 2024-02-29 06:00:05.048 2024-02-29 06:00:14.34 59425 14015 \N \N \N 167837 2024-02-29 06:00:05.048 2024-02-29 06:00:14.348 58468 11240 \N \N \N 167838 2024-02-29 06:00:05.048 2024-02-29 06:00:14.355 58181 20504 \N \N \N 167839 2024-02-29 06:00:05.048 2024-02-29 06:00:14.365 58181 18557 \N \N \N 167840 2024-02-29 06:00:05.048 2024-02-29 06:00:14.375 58166 18518 \N \N \N 167841 2024-02-29 06:00:05.048 2024-02-29 06:00:14.383 58048 16193 \N \N \N 167842 2024-02-29 06:00:05.048 2024-02-29 06:00:14.394 57652 9611 \N \N \N 167843 2024-02-29 06:00:05.048 2024-02-29 06:00:14.401 57652 16230 \N \N \N 167844 2024-02-29 06:00:05.048 2024-02-29 06:00:14.409 56697 2151 \N \N \N 167845 2024-02-29 06:00:05.048 2024-02-29 06:00:14.419 56645 15049 \N \N \N 167846 2024-02-29 06:00:05.048 2024-02-29 06:00:14.43 56645 21365 \N \N \N 167847 2024-02-29 06:00:05.048 2024-02-29 06:00:14.439 56612 17237 \N \N \N 167848 2024-02-29 06:00:05.048 2024-02-29 06:00:14.447 55713 19637 \N \N \N 167849 2024-02-29 06:00:05.048 2024-02-29 06:00:14.454 55554 17091 \N \N \N 167850 2024-02-29 06:00:05.048 2024-02-29 06:00:14.461 54256 17673 \N \N \N 167851 2024-02-29 06:00:05.048 2024-02-29 06:00:14.47 2774444 21091 \N \N \N 167852 2024-02-29 06:00:05.048 2024-02-29 06:00:14.477 2471650 2709 \N \N \N 167853 2024-02-29 06:00:05.048 2024-02-29 06:00:14.485 1952603 739 \N \N \N 167854 2024-02-29 06:00:05.048 2024-02-29 06:00:14.492 1941474 17183 \N \N \N 167855 2024-02-29 06:00:05.048 2024-02-29 06:00:14.499 1711009 18309 \N \N \N 167856 2024-02-29 06:00:05.048 2024-02-29 06:00:14.505 1545920 19375 \N \N \N 167857 2024-02-29 06:00:05.048 2024-02-29 06:00:14.512 1468347 14857 \N \N \N 167858 2024-02-29 06:00:05.048 2024-02-29 06:00:14.52 1410729 10291 \N \N \N 167859 2024-02-29 06:00:05.048 2024-02-29 06:00:14.527 1373885 20258 \N \N \N 167860 2024-02-29 06:00:05.048 2024-02-29 06:00:14.533 1298741 19235 \N \N \N 167861 2024-02-29 06:00:05.048 2024-02-29 06:00:14.541 1252634 1585 \N \N \N 167862 2024-02-29 06:00:05.048 2024-02-29 06:00:14.548 1234345 21573 \N \N \N 167863 2024-02-29 06:00:05.048 2024-02-29 06:00:14.557 1230227 642 \N \N \N 167864 2024-02-29 06:00:05.048 2024-02-29 06:00:14.564 1182594 769 \N \N \N 167865 2024-02-29 06:00:05.048 2024-02-29 06:00:14.57 1153228 17976 \N \N \N 167866 2024-02-29 06:00:05.048 2024-02-29 06:00:14.58 1099447 21349 \N \N \N 167867 2024-02-29 06:00:05.048 2024-02-29 06:00:14.587 1009273 20243 \N \N \N 167868 2024-02-29 06:00:05.048 2024-02-29 06:00:14.594 991632 2596 \N \N \N 167869 2024-02-29 06:00:05.048 2024-02-29 06:00:14.601 983615 5085 \N \N \N 167870 2024-02-29 06:00:05.048 2024-02-29 06:00:14.608 951934 2749 \N \N \N 167871 2024-02-29 06:00:05.048 2024-02-29 06:00:14.614 948059 19812 \N \N \N 167872 2024-02-29 06:00:05.048 2024-02-29 06:00:14.621 925557 622 \N \N \N 167873 2024-02-29 06:00:05.048 2024-02-29 06:00:14.628 913610 15938 \N \N \N 167874 2024-02-29 06:00:05.048 2024-02-29 06:00:14.638 849954 18769 \N \N \N 167875 2024-02-29 06:00:05.048 2024-02-29 06:00:14.645 831943 9433 \N \N \N 167876 2024-02-29 06:00:05.048 2024-02-29 06:00:14.654 770309 20704 \N \N \N 167877 2024-02-29 06:00:05.048 2024-02-29 06:00:14.669 748669 7960 \N \N \N 167878 2024-02-29 06:00:05.048 2024-02-29 06:00:14.686 725618 21480 \N \N \N 167879 2024-02-29 06:00:05.048 2024-02-29 06:00:14.695 693647 794 \N \N \N 167880 2024-02-29 06:00:05.048 2024-02-29 06:00:14.703 678406 2188 \N \N \N 167881 2024-02-29 06:00:05.048 2024-02-29 06:00:14.71 672953 929 \N \N \N 167882 2024-02-29 06:00:05.048 2024-02-29 06:00:14.717 671706 12769 \N \N \N 167883 2024-02-29 06:00:05.048 2024-02-29 06:00:14.726 660381 13246 \N \N \N 167884 2024-02-29 06:00:05.048 2024-02-29 06:00:14.734 638531 20680 \N \N \N 167885 2024-02-29 06:00:05.048 2024-02-29 06:00:14.742 622829 1833 \N \N \N 167886 2024-02-29 06:00:05.048 2024-02-29 06:00:14.752 606861 4166 \N \N \N 167887 2024-02-29 06:00:05.048 2024-02-29 06:00:14.767 587380 16270 \N \N \N 167888 2024-02-29 06:00:05.048 2024-02-29 06:00:14.78 583547 9438 \N \N \N 167889 2024-02-29 06:00:05.048 2024-02-29 06:00:14.788 568984 12422 \N \N \N 167890 2024-02-29 06:00:05.048 2024-02-29 06:00:14.808 547866 18271 \N \N \N 167891 2024-02-29 06:00:05.048 2024-02-29 06:00:14.84 540690 5425 \N \N \N 167892 2024-02-29 06:00:05.048 2024-02-29 06:00:14.855 521901 5597 \N \N \N 167893 2024-02-29 06:00:05.048 2024-02-29 06:00:14.863 514844 2513 \N \N \N 167894 2024-02-29 06:00:05.048 2024-02-29 06:00:14.872 498841 20817 \N \N \N 167895 2024-02-29 06:00:05.048 2024-02-29 06:00:14.88 489718 18919 \N \N \N 167896 2024-02-29 06:00:05.048 2024-02-29 06:00:14.887 466282 5776 \N \N \N 167897 2024-02-29 06:00:05.048 2024-02-29 06:00:14.896 459203 18842 \N \N \N 167898 2024-02-29 06:00:05.048 2024-02-29 06:00:14.903 435322 17708 \N \N \N 167899 2024-02-29 06:00:05.048 2024-02-29 06:00:14.911 434513 15160 \N \N \N 167900 2024-02-29 06:00:05.048 2024-02-29 06:00:14.919 408911 2098 \N \N \N 167901 2024-02-29 06:00:05.048 2024-02-29 06:00:14.926 403224 1738 \N \N \N 167902 2024-02-29 06:00:05.048 2024-02-29 06:00:14.936 391568 8841 \N \N \N 167903 2024-02-29 06:00:05.048 2024-02-29 06:00:14.948 386314 18556 \N \N \N 167904 2024-02-29 06:00:05.048 2024-02-29 06:00:14.964 382945 21048 \N \N \N 167905 2024-02-29 06:00:05.048 2024-02-29 06:00:14.98 630654 14909 \N \N \N 167906 2024-02-29 06:00:05.048 2024-02-29 06:00:14.996 364309 20208 \N \N \N 167907 2024-02-29 06:00:05.048 2024-02-29 06:00:15.025 358854 831 \N \N \N 167908 2024-02-29 06:00:05.048 2024-02-29 06:00:15.035 351638 20922 \N \N \N 167909 2024-02-29 06:00:05.048 2024-02-29 06:00:15.056 341137 17217 \N \N \N 167910 2024-02-29 06:00:05.048 2024-02-29 06:00:15.071 325821 5519 \N \N \N 167911 2024-02-29 06:00:05.048 2024-02-29 06:00:15.079 321325 17455 \N \N \N 167912 2024-02-29 06:00:05.048 2024-02-29 06:00:15.087 310736 5865 \N \N \N 167913 2024-02-29 06:00:05.048 2024-02-29 06:00:15.096 436104 13133 \N \N \N 167914 2024-02-29 06:00:05.048 2024-02-29 06:00:15.104 308273 18446 \N \N \N 167915 2024-02-29 06:00:05.048 2024-02-29 06:00:15.114 307527 629 \N \N \N 167916 2024-02-29 06:00:05.048 2024-02-29 06:00:15.123 297986 1389 \N \N \N 167917 2024-02-29 06:00:05.048 2024-02-29 06:00:15.131 295782 9261 \N \N \N 167918 2024-02-29 06:00:05.048 2024-02-29 06:00:15.137 292286 18815 \N \N \N 167919 2024-02-29 06:00:05.048 2024-02-29 06:00:15.15 289350 956 \N \N \N 167920 2024-02-29 06:00:05.048 2024-02-29 06:00:15.158 286176 1291 \N \N \N 167921 2024-02-29 06:00:05.048 2024-02-29 06:00:15.168 283662 15521 \N \N \N 167922 2024-02-29 06:00:05.048 2024-02-29 06:00:15.18 273982 895 \N \N \N 167923 2024-02-29 06:00:05.048 2024-02-29 06:00:15.192 269111 16747 \N \N \N 167924 2024-02-29 06:00:05.048 2024-02-29 06:00:15.213 252787 1236 \N \N \N 167925 2024-02-29 06:00:05.048 2024-02-29 06:00:15.23 252569 1286 \N \N \N 167926 2024-02-29 06:00:05.048 2024-02-29 06:00:15.257 252504 21555 \N \N \N 167927 2024-02-29 06:00:05.048 2024-02-29 06:00:15.283 252500 2206 \N \N \N 167928 2024-02-29 06:00:05.048 2024-02-29 06:00:15.32 252463 6310 \N \N \N 167929 2024-02-29 06:00:05.048 2024-02-29 06:00:15.348 252417 6229 \N \N \N 167930 2024-02-29 06:00:05.048 2024-02-29 06:00:15.393 252406 11885 \N \N \N 167931 2024-02-29 06:00:05.048 2024-02-29 06:00:15.443 248950 20481 \N \N \N 167932 2024-02-29 06:00:05.048 2024-02-29 06:00:15.492 246060 736 \N \N \N 167933 2024-02-29 06:00:05.048 2024-02-29 06:00:15.542 244009 11776 \N \N \N 167934 2024-02-29 06:00:05.048 2024-02-29 06:00:15.576 239111 6578 \N \N \N 167935 2024-02-29 06:00:05.048 2024-02-29 06:00:15.61 227341 3392 \N \N \N 167936 2024-02-29 06:00:05.048 2024-02-29 06:00:15.645 224291 17446 \N \N \N 167937 2024-02-29 06:00:05.048 2024-02-29 06:00:15.678 216000 12483 \N \N \N 167938 2024-02-29 06:00:05.048 2024-02-29 06:00:15.712 202290 1224 \N \N \N 167939 2024-02-29 06:00:05.048 2024-02-29 06:00:15.771 200389 10273 \N \N \N 167940 2024-02-29 06:00:05.048 2024-02-29 06:00:15.824 189330 3392 \N \N \N 167941 2024-02-29 06:00:05.048 2024-02-29 06:00:15.931 181020 1224 \N \N \N 167942 2024-02-29 06:00:05.048 2024-02-29 06:00:16.026 164862 676 \N \N \N 167943 2024-02-29 06:00:05.048 2024-02-29 06:00:16.225 160079 3392 \N \N \N 167944 2024-02-29 06:00:05.048 2024-02-29 06:00:16.275 160004 11430 \N \N \N 167945 2024-02-29 06:00:05.048 2024-02-29 06:00:16.374 153862 2176 \N \N \N 167946 2024-02-29 06:00:05.048 2024-02-29 06:00:16.533 152818 1236 \N \N \N 167947 2024-02-29 06:00:05.048 2024-02-29 06:00:16.727 139221 9334 \N \N \N 167948 2024-02-29 06:00:05.048 2024-02-29 06:00:16.811 133214 11714 \N \N \N 167949 2024-02-29 06:00:05.048 2024-02-29 06:00:16.898 130775 10013 \N \N \N 167950 2024-03-01 06:00:03.375 2024-03-01 06:00:03.376 6316421 21036 \N \N \N 167951 2024-03-01 06:00:03.375 2024-03-01 06:00:03.385 2909470 3353 \N \N \N 167952 2024-03-01 06:00:03.375 2024-03-01 06:00:03.389 2815590 17707 \N \N \N 167953 2024-03-01 06:00:03.375 2024-03-01 06:00:03.393 2111262 6041 \N \N \N 167954 2024-03-01 06:00:03.375 2024-03-01 06:00:03.398 1595775 17673 \N \N \N 167955 2024-03-01 06:00:03.375 2024-03-01 06:00:03.402 1457672 21343 \N \N \N 167956 2024-03-01 06:00:03.375 2024-03-01 06:00:03.406 1248991 8945 \N \N \N 167957 2024-03-01 06:00:03.375 2024-03-01 06:00:03.411 1115835 1751 \N \N \N 167958 2024-03-01 06:00:03.375 2024-03-01 06:00:03.415 1017551 4175 \N \N \N 167959 2024-03-01 06:00:03.375 2024-03-01 06:00:03.419 930332 11328 \N \N \N 167960 2024-03-01 06:00:03.375 2024-03-01 06:00:03.423 921436 19320 \N \N \N 167961 2024-03-01 06:00:03.375 2024-03-01 06:00:03.427 904888 21386 \N \N \N 167962 2024-03-01 06:00:03.375 2024-03-01 06:00:03.431 790158 11158 \N \N \N 167963 2024-03-01 06:00:03.375 2024-03-01 06:00:03.436 730721 1326 \N \N \N 167964 2024-03-01 06:00:03.375 2024-03-01 06:00:03.442 697138 20849 \N \N \N 167965 2024-03-01 06:00:03.375 2024-03-01 06:00:03.446 687626 18396 \N \N \N 167966 2024-03-01 06:00:03.375 2024-03-01 06:00:03.45 605458 5129 \N \N \N 167967 2024-03-01 06:00:03.375 2024-03-01 06:00:03.455 591801 14080 \N \N \N 167968 2024-03-01 06:00:03.375 2024-03-01 06:00:03.459 590550 17171 \N \N \N 167969 2024-03-01 06:00:03.375 2024-03-01 06:00:03.463 580024 17162 \N \N \N 167970 2024-03-01 06:00:03.375 2024-03-01 06:00:03.467 513771 18494 \N \N \N 167971 2024-03-01 06:00:03.375 2024-03-01 06:00:03.477 470635 18919 \N \N \N 167972 2024-03-01 06:00:03.375 2024-03-01 06:00:03.481 438021 1221 \N \N \N 167973 2024-03-01 06:00:03.375 2024-03-01 06:00:03.485 403078 4763 \N \N \N 167974 2024-03-01 06:00:03.375 2024-03-01 06:00:03.489 345279 1814 \N \N \N 167975 2024-03-01 06:00:03.375 2024-03-01 06:00:03.494 307090 16284 \N \N \N 167976 2024-03-01 06:00:03.375 2024-03-01 06:00:03.5 306232 19501 \N \N \N 167977 2024-03-01 06:00:03.375 2024-03-01 06:00:03.505 291287 678 \N \N \N 167978 2024-03-01 06:00:03.375 2024-03-01 06:00:03.509 285998 6700 \N \N \N 167979 2024-03-01 06:00:03.375 2024-03-01 06:00:03.515 258676 8074 \N \N \N 167980 2024-03-01 06:00:03.375 2024-03-01 06:00:03.521 255894 15266 \N \N \N 167981 2024-03-01 06:00:03.375 2024-03-01 06:00:03.525 244011 16350 \N \N \N 167982 2024-03-01 06:00:03.375 2024-03-01 06:00:03.529 240821 10056 \N \N \N 167983 2024-03-01 06:00:03.375 2024-03-01 06:00:03.533 239344 14381 \N \N \N 167984 2024-03-01 06:00:03.375 2024-03-01 06:00:03.537 233433 21492 \N \N \N 167985 2024-03-01 06:00:03.375 2024-03-01 06:00:03.541 208857 21194 \N \N \N 167986 2024-03-01 06:00:03.375 2024-03-01 06:00:03.545 207125 650 \N \N \N 167987 2024-03-01 06:00:03.375 2024-03-01 06:00:03.55 191362 20450 \N \N \N 167988 2024-03-01 06:00:03.375 2024-03-01 06:00:03.554 180921 11609 \N \N \N 167989 2024-03-01 06:00:03.375 2024-03-01 06:00:03.558 179525 12422 \N \N \N 167990 2024-03-01 06:00:03.375 2024-03-01 06:00:03.564 178901 12422 \N \N \N 167991 2024-03-01 06:00:03.375 2024-03-01 06:00:03.568 178558 13553 \N \N \N 167992 2024-03-01 06:00:03.375 2024-03-01 06:00:03.572 159156 5852 \N \N \N 167993 2024-03-01 06:00:03.375 2024-03-01 06:00:03.576 158982 21453 \N \N \N 167994 2024-03-01 06:00:03.375 2024-03-01 06:00:03.579 156280 954 \N \N \N 167995 2024-03-01 06:00:03.375 2024-03-01 06:00:03.583 152947 16276 \N \N \N 167996 2024-03-01 06:00:03.375 2024-03-01 06:00:03.587 151505 20687 \N \N \N 167997 2024-03-01 06:00:03.375 2024-03-01 06:00:03.59 133837 14074 \N \N \N 167998 2024-03-01 06:00:03.375 2024-03-01 06:00:03.594 119587 8269 \N \N \N 167999 2024-03-01 06:00:03.375 2024-03-01 06:00:03.598 119302 20825 \N \N \N 168000 2024-03-01 06:00:03.375 2024-03-01 06:00:03.603 113396 746 \N \N \N 168001 2024-03-01 06:00:03.375 2024-03-01 06:00:03.607 112159 21614 \N \N \N 168002 2024-03-01 06:00:03.375 2024-03-01 06:00:03.611 107394 16571 \N \N \N 168003 2024-03-01 06:00:03.375 2024-03-01 06:00:03.615 104610 2022 \N \N \N 168004 2024-03-01 06:00:03.375 2024-03-01 06:00:03.619 101473 5758 \N \N \N 168005 2024-03-01 06:00:03.375 2024-03-01 06:00:03.622 91671 1090 \N \N \N 168006 2024-03-01 06:00:03.375 2024-03-01 06:00:03.626 90037 20596 \N \N \N 168007 2024-03-01 06:00:03.375 2024-03-01 06:00:03.63 86903 20802 \N \N \N 168008 2024-03-01 06:00:03.375 2024-03-01 06:00:03.634 83614 19796 \N \N \N 168009 2024-03-01 06:00:03.375 2024-03-01 06:00:03.638 77738 21463 \N \N \N 168010 2024-03-01 06:00:03.375 2024-03-01 06:00:03.641 76143 8284 \N \N \N 168011 2024-03-01 06:00:03.375 2024-03-01 06:00:03.645 74797 18635 \N \N \N 168012 2024-03-01 06:00:03.375 2024-03-01 06:00:03.648 73717 676 \N \N \N 168013 2024-03-01 06:00:03.375 2024-03-01 06:00:03.652 72162 18637 \N \N \N 168014 2024-03-01 06:00:03.375 2024-03-01 06:00:03.656 70756 16670 \N \N \N 168015 2024-03-01 06:00:03.375 2024-03-01 06:00:03.66 69043 19016 \N \N \N 168016 2024-03-01 06:00:03.375 2024-03-01 06:00:03.663 69029 1478 \N \N \N 168017 2024-03-01 06:00:03.375 2024-03-01 06:00:03.667 68169 16357 \N \N \N 168018 2024-03-01 06:00:03.375 2024-03-01 06:00:03.671 67470 4238 \N \N \N 168019 2024-03-01 06:00:03.375 2024-03-01 06:00:03.674 63946 19572 \N \N \N 168020 2024-03-01 06:00:03.375 2024-03-01 06:00:03.678 61470 1471 \N \N \N 168021 2024-03-01 06:00:03.375 2024-03-01 06:00:03.683 58694 4521 \N \N \N 168022 2024-03-01 06:00:03.375 2024-03-01 06:00:03.687 51712 6384 \N \N \N 168023 2024-03-01 06:00:03.375 2024-03-01 06:00:03.692 50376 21501 \N \N \N 168024 2024-03-01 06:00:03.375 2024-03-01 06:00:03.697 47586 19759 \N \N \N 168025 2024-03-01 06:00:03.375 2024-03-01 06:00:03.7 46714 20182 \N \N \N 168026 2024-03-01 06:00:03.375 2024-03-01 06:00:03.709 46533 13365 \N \N \N 168027 2024-03-01 06:00:03.375 2024-03-01 06:00:03.715 46265 18714 \N \N \N 168028 2024-03-01 06:00:03.375 2024-03-01 06:00:03.719 43950 12606 \N \N \N 168029 2024-03-01 06:00:03.375 2024-03-01 06:00:03.724 39416 21578 \N \N \N 168030 2024-03-01 06:00:03.375 2024-03-01 06:00:03.728 39234 5775 \N \N \N 168031 2024-03-01 06:00:03.375 2024-03-01 06:00:03.732 39179 20745 \N \N \N 168032 2024-03-01 06:00:03.375 2024-03-01 06:00:03.735 38928 21119 \N \N \N 168033 2024-03-01 06:00:03.375 2024-03-01 06:00:03.739 38879 6393 \N \N \N 168034 2024-03-01 06:00:03.375 2024-03-01 06:00:03.743 38758 18235 \N \N \N 168035 2024-03-01 06:00:03.375 2024-03-01 06:00:03.747 37504 4570 \N \N \N 168036 2024-03-01 06:00:03.375 2024-03-01 06:00:03.751 34800 10818 \N \N \N 168037 2024-03-01 06:00:03.375 2024-03-01 06:00:03.755 32174 21422 \N \N \N 168038 2024-03-01 06:00:03.375 2024-03-01 06:00:03.759 32055 8472 \N \N \N 168039 2024-03-01 06:00:03.375 2024-03-01 06:00:03.763 31941 627 \N \N \N 168040 2024-03-01 06:00:03.375 2024-03-01 06:00:03.766 30525 866 \N \N \N 168041 2024-03-01 06:00:03.375 2024-03-01 06:00:03.77 30435 15491 \N \N \N 168042 2024-03-01 06:00:03.375 2024-03-01 06:00:03.775 29921 10821 \N \N \N 168043 2024-03-01 06:00:03.375 2024-03-01 06:00:03.778 29640 17046 \N \N \N 168044 2024-03-01 06:00:03.375 2024-03-01 06:00:03.782 29410 15226 \N \N \N 168045 2024-03-01 06:00:03.375 2024-03-01 06:00:03.785 29064 20619 \N \N \N 168046 2024-03-01 06:00:03.375 2024-03-01 06:00:03.789 28954 11898 \N \N \N 168047 2024-03-01 06:00:03.375 2024-03-01 06:00:03.792 26964 21555 \N \N \N 168048 2024-03-01 06:00:03.375 2024-03-01 06:00:03.798 26150 14857 \N \N \N 168049 2024-03-01 06:00:03.375 2024-03-01 06:00:03.802 25641 5904 \N \N \N 168050 2024-03-01 06:00:03.375 2024-03-01 06:00:03.808 25360 2583 \N \N \N 168051 2024-03-01 06:00:03.375 2024-03-01 06:00:03.812 23884 2075 \N \N \N 168052 2024-03-01 06:00:03.375 2024-03-01 06:00:03.816 23789 4084 \N \N \N 168053 2024-03-01 06:00:03.375 2024-03-01 06:00:03.82 23383 20577 \N \N \N 168054 2024-03-01 06:00:03.375 2024-03-01 06:00:03.824 22040 20551 \N \N \N 168055 2024-03-01 06:00:03.375 2024-03-01 06:00:03.828 21182 10549 \N \N \N 168056 2024-03-01 06:00:03.375 2024-03-01 06:00:03.831 19319 19394 \N \N \N 168057 2024-03-01 06:00:03.375 2024-03-01 06:00:03.835 19041 19021 \N \N \N 168058 2024-03-01 06:00:03.375 2024-03-01 06:00:03.839 17779 21036 \N \N \N 168059 2024-03-01 06:00:03.375 2024-03-01 06:00:03.843 15983 4819 \N \N \N 168060 2024-03-01 06:00:03.375 2024-03-01 06:00:03.847 15286 19352 \N \N \N 168061 2024-03-01 06:00:03.375 2024-03-01 06:00:03.851 14889 19583 \N \N \N 168062 2024-03-01 06:00:03.375 2024-03-01 06:00:03.854 14441 19375 \N \N \N 168063 2024-03-01 06:00:03.375 2024-03-01 06:00:03.858 14399 18829 \N \N \N 168064 2024-03-01 06:00:03.375 2024-03-01 06:00:03.862 13906 12122 \N \N \N 168065 2024-03-01 06:00:03.375 2024-03-01 06:00:03.866 12896 5578 \N \N \N 168066 2024-03-01 06:00:03.375 2024-03-01 06:00:03.869 12378 738 \N \N \N 168067 2024-03-01 06:00:03.375 2024-03-01 06:00:03.873 9901 6229 \N \N \N 168068 2024-03-01 06:00:03.375 2024-03-01 06:00:03.877 7961 5852 \N \N \N 168069 2024-03-01 06:00:03.375 2024-03-01 06:00:03.881 7909 910 \N \N \N 168070 2024-03-01 06:00:03.375 2024-03-01 06:00:03.884 5764 3504 \N \N \N 168071 2024-03-01 06:00:03.375 2024-03-01 06:00:03.888 4176181 21361 \N \N \N 168072 2024-03-01 06:00:03.375 2024-03-01 06:00:03.892 2708701 20585 \N \N \N 168073 2024-03-01 06:00:03.375 2024-03-01 06:00:03.895 2132375 16126 \N \N \N 168074 2024-03-01 06:00:03.375 2024-03-01 06:00:03.898 1757151 1145 \N \N \N 168075 2024-03-01 06:00:03.375 2024-03-01 06:00:03.902 1331329 3347 \N \N \N 168076 2024-03-01 06:00:03.375 2024-03-01 06:00:03.906 1321764 4083 \N \N \N 168077 2024-03-01 06:00:03.375 2024-03-01 06:00:03.91 1212471 13361 \N \N \N 168078 2024-03-01 06:00:03.375 2024-03-01 06:00:03.913 968649 19484 \N \N \N 168079 2024-03-01 06:00:03.375 2024-03-01 06:00:03.917 926635 18745 \N \N \N 168080 2024-03-01 06:00:03.375 2024-03-01 06:00:03.92 845851 20588 \N \N \N 168081 2024-03-01 06:00:03.375 2024-03-01 06:00:03.924 836628 19243 \N \N \N 168082 2024-03-01 06:00:03.375 2024-03-01 06:00:03.927 823535 780 \N \N \N 168083 2024-03-01 06:00:03.375 2024-03-01 06:00:03.93 778739 671 \N \N \N 168084 2024-03-01 06:00:03.375 2024-03-01 06:00:03.934 730176 641 \N \N \N 168085 2024-03-01 06:00:03.375 2024-03-01 06:00:03.937 667043 19836 \N \N \N 168086 2024-03-01 06:00:03.375 2024-03-01 06:00:03.941 613596 720 \N \N \N 168087 2024-03-01 06:00:03.375 2024-03-01 06:00:03.944 588769 929 \N \N \N 168088 2024-03-01 06:00:03.375 2024-03-01 06:00:03.947 567786 9863 \N \N \N 168089 2024-03-01 06:00:03.375 2024-03-01 06:00:03.952 552934 7654 \N \N \N 168090 2024-03-01 06:00:03.375 2024-03-01 06:00:03.956 527276 9529 \N \N \N 168091 2024-03-01 06:00:03.375 2024-03-01 06:00:03.96 518220 4391 \N \N \N 168092 2024-03-01 06:00:03.375 2024-03-01 06:00:03.963 419220 16948 \N \N \N 168093 2024-03-01 06:00:03.375 2024-03-01 06:00:03.967 352777 20084 \N \N \N 168094 2024-03-01 06:00:03.375 2024-03-01 06:00:03.97 334906 8360 \N \N \N 168095 2024-03-01 06:00:03.375 2024-03-01 06:00:03.973 325119 20353 \N \N \N 168096 2024-03-01 06:00:03.375 2024-03-01 06:00:03.977 311365 16929 \N \N \N 168097 2024-03-01 06:00:03.375 2024-03-01 06:00:03.98 304538 9364 \N \N \N 168098 2024-03-01 06:00:03.375 2024-03-01 06:00:03.983 300196 12265 \N \N \N 168099 2024-03-01 06:00:03.375 2024-03-01 06:00:03.987 293664 21600 \N \N \N 168100 2024-03-01 06:00:03.375 2024-03-01 06:00:03.99 291067 19281 \N \N \N 168101 2024-03-01 06:00:03.375 2024-03-01 06:00:03.993 286991 691 \N \N \N 168102 2024-03-01 06:00:03.375 2024-03-01 06:00:03.997 285037 20586 \N \N \N 168103 2024-03-01 06:00:03.375 2024-03-01 06:00:04.003 281894 6360 \N \N \N 168104 2024-03-01 06:00:03.375 2024-03-01 06:00:04.008 266445 18626 \N \N \N 168105 2024-03-01 06:00:03.375 2024-03-01 06:00:04.013 252991 876 \N \N \N 168106 2024-03-01 06:00:03.375 2024-03-01 06:00:04.017 248488 1718 \N \N \N 168107 2024-03-01 06:00:03.375 2024-03-01 06:00:04.021 238843 4166 \N \N \N 168108 2024-03-01 06:00:03.375 2024-03-01 06:00:04.025 227530 1130 \N \N \N 168109 2024-03-01 06:00:03.375 2024-03-01 06:00:04.031 226268 5904 \N \N \N 168110 2024-03-01 06:00:03.375 2024-03-01 06:00:04.035 224293 21463 \N \N \N 168111 2024-03-01 06:00:03.375 2024-03-01 06:00:04.038 213032 18262 \N \N \N 168112 2024-03-01 06:00:03.375 2024-03-01 06:00:04.041 205650 18392 \N \N \N 168113 2024-03-01 06:00:03.375 2024-03-01 06:00:04.045 200221 20972 \N \N \N 168114 2024-03-01 06:00:03.375 2024-03-01 06:00:04.048 196183 19381 \N \N \N 168115 2024-03-01 06:00:03.375 2024-03-01 06:00:04.052 190497 19459 \N \N \N 168116 2024-03-01 06:00:03.375 2024-03-01 06:00:04.055 185852 11829 \N \N \N 168117 2024-03-01 06:00:03.375 2024-03-01 06:00:04.066 182899 5794 \N \N \N 168118 2024-03-01 06:00:03.375 2024-03-01 06:00:04.07 182053 14774 \N \N \N 168119 2024-03-01 06:00:03.375 2024-03-01 06:00:04.076 179155 8133 \N \N \N 168120 2024-03-01 06:00:03.375 2024-03-01 06:00:04.079 174420 837 \N \N \N 168121 2024-03-01 06:00:03.375 2024-03-01 06:00:04.083 170057 20816 \N \N \N 168122 2024-03-01 06:00:03.375 2024-03-01 06:00:04.086 160138 1985 \N \N \N 168123 2024-03-01 06:00:03.375 2024-03-01 06:00:04.09 154893 5828 \N \N \N 168124 2024-03-01 06:00:03.375 2024-03-01 06:00:04.094 153612 20059 \N \N \N 168125 2024-03-01 06:00:03.375 2024-03-01 06:00:04.098 152040 1534 \N \N \N 168126 2024-03-01 06:00:03.375 2024-03-01 06:00:04.102 148684 18363 \N \N \N 168127 2024-03-01 06:00:03.375 2024-03-01 06:00:04.105 140434 1705 \N \N \N 168128 2024-03-01 06:00:03.375 2024-03-01 06:00:04.109 139294 20509 \N \N \N 168129 2024-03-01 06:00:03.375 2024-03-01 06:00:04.113 133973 2176 \N \N \N 168130 2024-03-01 06:00:03.375 2024-03-01 06:00:04.116 128710 14449 \N \N \N 168131 2024-03-01 06:00:03.375 2024-03-01 06:00:04.119 123182 18829 \N \N \N 168132 2024-03-01 06:00:03.375 2024-03-01 06:00:04.123 120557 21451 \N \N \N 168133 2024-03-01 06:00:03.375 2024-03-01 06:00:04.127 117282 8544 \N \N \N 168134 2024-03-01 06:00:03.375 2024-03-01 06:00:04.13 115501 4768 \N \N \N 168135 2024-03-01 06:00:03.375 2024-03-01 06:00:04.133 114386 980 \N \N \N 168136 2024-03-01 06:00:03.375 2024-03-01 06:00:04.137 111765 19199 \N \N \N 168137 2024-03-01 06:00:03.375 2024-03-01 06:00:04.14 109707 695 \N \N \N 168138 2024-03-01 06:00:03.375 2024-03-01 06:00:04.143 109567 18291 \N \N \N 168139 2024-03-01 06:00:03.375 2024-03-01 06:00:04.147 108264 2204 \N \N \N 168140 2024-03-01 06:00:03.375 2024-03-01 06:00:04.15 105337 6653 \N \N \N 168141 2024-03-01 06:00:03.375 2024-03-01 06:00:04.153 102464 17494 \N \N \N 168142 2024-03-01 06:00:03.375 2024-03-01 06:00:04.157 101320 19732 \N \N \N 168143 2024-03-01 06:00:03.375 2024-03-01 06:00:04.162 97580 17541 \N \N \N 168144 2024-03-01 06:00:03.375 2024-03-01 06:00:04.166 97391 11288 \N \N \N 168145 2024-03-01 06:00:03.375 2024-03-01 06:00:04.169 95428 3396 \N \N \N 168146 2024-03-01 06:00:03.375 2024-03-01 06:00:04.173 94346 17217 \N \N \N 168147 2024-03-01 06:00:03.375 2024-03-01 06:00:04.177 90513 20745 \N \N \N 168148 2024-03-01 06:00:03.375 2024-03-01 06:00:04.181 88404 5499 \N \N \N 168149 2024-03-01 06:00:03.375 2024-03-01 06:00:04.184 87658 713 \N \N \N 168150 2024-03-01 06:00:03.375 2024-03-01 06:00:04.188 83435 8269 \N \N \N 168151 2024-03-01 06:00:03.375 2024-03-01 06:00:04.192 80882 20710 \N \N \N 168152 2024-03-01 06:00:03.375 2024-03-01 06:00:04.195 80397 2000 \N \N \N 168153 2024-03-01 06:00:03.375 2024-03-01 06:00:04.199 78097 1745 \N \N \N 168154 2024-03-01 06:00:03.375 2024-03-01 06:00:04.203 76950 9529 \N \N \N 168155 2024-03-01 06:00:03.375 2024-03-01 06:00:04.207 72807 20257 \N \N \N 168156 2024-03-01 06:00:03.375 2024-03-01 06:00:04.21 67386 17166 \N \N \N 168157 2024-03-01 06:00:03.375 2024-03-01 06:00:04.214 67222 738 \N \N \N 168158 2024-03-01 06:00:03.375 2024-03-01 06:00:04.217 66630 19826 \N \N \N 168159 2024-03-01 06:00:03.375 2024-03-01 06:00:04.22 64767 18704 \N \N \N 168160 2024-03-01 06:00:03.375 2024-03-01 06:00:04.224 63811 10818 \N \N \N 168161 2024-03-01 06:00:03.375 2024-03-01 06:00:04.228 63283 8095 \N \N \N 168162 2024-03-01 06:00:03.375 2024-03-01 06:00:04.231 61201 11798 \N \N \N 168163 2024-03-01 06:00:03.375 2024-03-01 06:00:04.235 59943 9496 \N \N \N 168164 2024-03-01 06:00:03.375 2024-03-01 06:00:04.239 59460 1003 \N \N \N 168165 2024-03-01 06:00:03.375 2024-03-01 06:00:04.243 56063 20858 \N \N \N 168166 2024-03-01 06:00:03.375 2024-03-01 06:00:04.248 55486 18262 \N \N \N 168167 2024-03-01 06:00:03.375 2024-03-01 06:00:04.251 54818 6382 \N \N \N 168168 2024-03-01 06:00:03.375 2024-03-01 06:00:04.254 52356 5661 \N \N \N 168169 2024-03-01 06:00:03.375 2024-03-01 06:00:04.261 52162 21003 \N \N \N 168170 2024-03-01 06:00:03.375 2024-03-01 06:00:04.265 51556 1471 \N \N \N 168171 2024-03-01 06:00:03.375 2024-03-01 06:00:04.269 51313 18923 \N \N \N 168172 2024-03-01 06:00:03.375 2024-03-01 06:00:04.272 51201 4395 \N \N \N 168173 2024-03-01 06:00:03.375 2024-03-01 06:00:04.277 49895 2327 \N \N \N 168174 2024-03-01 06:00:03.375 2024-03-01 06:00:04.28 49430 8713 \N \N \N 168175 2024-03-01 06:00:03.375 2024-03-01 06:00:04.286 46734 19759 \N \N \N 168176 2024-03-01 06:00:03.375 2024-03-01 06:00:04.29 46267 18363 \N \N \N 168177 2024-03-01 06:00:03.375 2024-03-01 06:00:04.293 45586 18378 \N \N \N 168178 2024-03-01 06:00:03.375 2024-03-01 06:00:04.297 44755 12368 \N \N \N 168179 2024-03-01 06:00:03.375 2024-03-01 06:00:04.3 43593 18543 \N \N \N 168180 2024-03-01 06:00:03.375 2024-03-01 06:00:04.304 43463 16670 \N \N \N 168181 2024-03-01 06:00:03.375 2024-03-01 06:00:04.308 43350 21349 \N \N \N 168182 2024-03-01 06:00:03.375 2024-03-01 06:00:04.311 41312 6149 \N \N \N 168183 2024-03-01 06:00:03.375 2024-03-01 06:00:04.315 41002 11491 \N \N \N 168184 2024-03-01 06:00:03.375 2024-03-01 06:00:04.318 39523 18660 \N \N \N 168185 2024-03-01 06:00:03.375 2024-03-01 06:00:04.322 39274 690 \N \N \N 168186 2024-03-01 06:00:03.375 2024-03-01 06:00:04.325 39053 12024 \N \N \N 168187 2024-03-01 06:00:03.375 2024-03-01 06:00:04.329 38427 2718 \N \N \N 168188 2024-03-01 06:00:03.375 2024-03-01 06:00:04.333 36962 10944 \N \N \N 168189 2024-03-01 06:00:03.375 2024-03-01 06:00:04.336 36214 21233 \N \N \N 168190 2024-03-01 06:00:03.375 2024-03-01 06:00:04.34 36123 2459 \N \N \N 168191 2024-03-01 06:00:03.375 2024-03-01 06:00:04.343 35527 18625 \N \N \N 168192 2024-03-01 06:00:03.375 2024-03-01 06:00:04.348 34958 8376 \N \N \N 168193 2024-03-01 06:00:03.375 2024-03-01 06:00:04.352 34736 1552 \N \N \N 168194 2024-03-01 06:00:03.375 2024-03-01 06:00:04.355 34419 21248 \N \N \N 168195 2024-03-01 06:00:03.375 2024-03-01 06:00:04.359 33919 18314 \N \N \N 168196 2024-03-01 06:00:03.375 2024-03-01 06:00:04.363 33079 4115 \N \N \N 168197 2024-03-01 06:00:03.375 2024-03-01 06:00:04.366 33016 20616 \N \N \N 168198 2024-03-01 06:00:03.375 2024-03-01 06:00:04.37 32435 2111 \N \N \N 168199 2024-03-01 06:00:03.375 2024-03-01 06:00:04.376 31867 20691 \N \N \N 168200 2024-03-01 06:00:03.375 2024-03-01 06:00:04.381 30779 807 \N \N \N 168201 2024-03-01 06:00:03.375 2024-03-01 06:00:04.385 30742 5520 \N \N \N 168202 2024-03-01 06:00:03.375 2024-03-01 06:00:04.389 30531 21334 \N \N \N 168203 2024-03-01 06:00:03.375 2024-03-01 06:00:04.394 30294 21136 \N \N \N 168204 2024-03-01 06:00:03.375 2024-03-01 06:00:04.398 29831 18423 \N \N \N 168205 2024-03-01 06:00:03.375 2024-03-01 06:00:04.401 29034 7376 \N \N \N 168206 2024-03-01 06:00:03.375 2024-03-01 06:00:04.405 29007 16543 \N \N \N 168207 2024-03-01 06:00:03.375 2024-03-01 06:00:04.408 28907 940 \N \N \N 168208 2024-03-01 06:00:03.375 2024-03-01 06:00:04.413 28585 12072 \N \N \N 168209 2024-03-01 06:00:03.375 2024-03-01 06:00:04.416 28159 9705 \N \N \N 168210 2024-03-01 06:00:03.375 2024-03-01 06:00:04.421 26322 1047 \N \N \N 168211 2024-03-01 06:00:03.375 2024-03-01 06:00:04.426 26262 20045 \N \N \N 168212 2024-03-01 06:00:03.375 2024-03-01 06:00:04.431 26120 20434 \N \N \N 168213 2024-03-01 06:00:03.375 2024-03-01 06:00:04.444 25595 1465 \N \N \N 168214 2024-03-01 06:00:03.375 2024-03-01 06:00:04.462 25575 2514 \N \N \N 168215 2024-03-01 06:00:03.375 2024-03-01 06:00:04.48 25421 21600 \N \N \N 168216 2024-03-01 06:00:03.375 2024-03-01 06:00:04.496 23899 18909 \N \N \N 168217 2024-03-01 06:00:03.375 2024-03-01 06:00:04.52 23251 11075 \N \N \N 168218 2024-03-01 06:00:03.375 2024-03-01 06:00:04.536 22995 20706 \N \N \N 168219 2024-03-01 06:00:03.375 2024-03-01 06:00:04.554 21498 762 \N \N \N 168220 2024-03-01 06:00:03.375 2024-03-01 06:00:04.577 19858 15556 \N \N \N 168221 2024-03-01 06:00:03.375 2024-03-01 06:00:04.6 19696 4388 \N \N \N 168222 2024-03-01 06:00:03.375 2024-03-01 06:00:04.62 19638 4763 \N \N \N 168223 2024-03-01 06:00:03.375 2024-03-01 06:00:04.64 19380 15147 \N \N \N 168224 2024-03-01 06:00:03.375 2024-03-01 06:00:04.66 19119 20310 \N \N \N 168225 2024-03-01 06:00:03.375 2024-03-01 06:00:04.68 19059 17411 \N \N \N 168226 2024-03-01 06:00:03.375 2024-03-01 06:00:04.69 18883 21079 \N \N \N 168227 2024-03-01 06:00:03.375 2024-03-01 06:00:04.694 18790 16929 \N \N \N 168228 2024-03-01 06:00:03.375 2024-03-01 06:00:04.708 18486 1237 \N \N \N 168229 2024-03-01 06:00:03.375 2024-03-01 06:00:04.723 18261 18269 \N \N \N 168230 2024-03-01 06:00:03.375 2024-03-01 06:00:04.742 17941 17172 \N \N \N 168231 2024-03-01 06:00:03.375 2024-03-01 06:00:04.765 17752 12930 \N \N \N 168232 2024-03-01 06:00:03.375 2024-03-01 06:00:04.788 17517 5865 \N \N \N 168233 2024-03-01 06:00:03.375 2024-03-01 06:00:04.81 17313 20778 \N \N \N 168234 2024-03-01 06:00:03.375 2024-03-01 06:00:04.817 17033 19105 \N \N \N 168235 2024-03-01 06:00:03.375 2024-03-01 06:00:04.828 16979 2749 \N \N \N 168236 2024-03-01 06:00:03.375 2024-03-01 06:00:04.848 16651 21033 \N \N \N 168237 2024-03-01 06:00:03.375 2024-03-01 06:00:04.862 15017 6360 \N \N \N 168238 2024-03-01 06:00:03.375 2024-03-01 06:00:04.877 14935 7418 \N \N \N 168239 2024-03-01 06:00:03.375 2024-03-01 06:00:04.892 14866 811 \N \N \N 168240 2024-03-01 06:00:03.375 2024-03-01 06:00:04.904 14759 6573 \N \N \N 168241 2024-03-01 06:00:03.375 2024-03-01 06:00:04.919 14738 17321 \N \N \N 168242 2024-03-01 06:00:03.375 2024-03-01 06:00:04.926 14617 21233 \N \N \N 168243 2024-03-01 06:00:03.375 2024-03-01 06:00:04.951 14177 1628 \N \N \N 168244 2024-03-01 06:00:03.375 2024-03-01 06:00:04.968 14118 19309 \N \N \N 168245 2024-03-01 06:00:03.375 2024-03-01 06:00:04.992 13838 1737 \N \N \N 168246 2024-03-01 06:00:03.375 2024-03-01 06:00:05.012 13471 19785 \N \N \N 168247 2024-03-01 06:00:03.375 2024-03-01 06:00:05.032 13363 6533 \N \N \N 168248 2024-03-01 06:00:03.375 2024-03-01 06:00:05.064 12538 19535 \N \N \N 168249 2024-03-01 06:00:03.375 2024-03-01 06:00:05.089 11598 2525 \N \N \N 168250 2024-03-01 06:00:03.375 2024-03-01 06:00:05.104 11281 16839 \N \N \N 168251 2024-03-01 06:00:03.375 2024-03-01 06:00:05.117 9940 12277 \N \N \N 168252 2024-03-01 06:00:03.375 2024-03-01 06:00:05.13 9516 15697 \N \N \N 168253 2024-03-01 06:00:03.375 2024-03-01 06:00:05.142 8546 20657 \N \N \N 168254 2024-03-01 06:00:03.375 2024-03-01 06:00:05.16 7606 15226 \N \N \N 168255 2024-03-01 06:00:03.375 2024-03-01 06:00:05.18 7598 18051 \N \N \N 168256 2024-03-01 06:00:03.375 2024-03-01 06:00:05.201 7526 5195 \N \N \N 168257 2024-03-01 06:00:03.375 2024-03-01 06:00:05.217 5865 7558 \N \N \N 168258 2024-03-01 06:00:03.375 2024-03-01 06:00:05.227 3372 4322 \N \N \N 168259 2024-03-01 06:00:03.375 2024-03-01 06:00:05.236 3183 787 \N \N \N 168260 2024-03-01 06:00:03.375 2024-03-01 06:00:05.26 663834 4633 \N \N \N 168261 2024-03-01 06:00:03.375 2024-03-01 06:00:05.308 519378 16948 \N \N \N 168262 2024-03-01 06:00:03.375 2024-03-01 06:00:05.333 470868 16259 \N \N \N 168263 2024-03-01 06:00:03.375 2024-03-01 06:00:05.372 410082 16879 \N \N \N 168264 2024-03-01 06:00:03.375 2024-03-01 06:00:05.404 407866 9820 \N \N \N 168265 2024-03-01 06:00:03.375 2024-03-01 06:00:05.432 365030 2335 \N \N \N 168266 2024-03-01 06:00:03.375 2024-03-01 06:00:05.457 348871 15491 \N \N \N 168267 2024-03-01 06:00:03.375 2024-03-01 06:00:05.493 332302 11819 \N \N \N 168268 2024-03-01 06:00:03.375 2024-03-01 06:00:05.512 330422 20799 \N \N \N 168269 2024-03-01 06:00:03.375 2024-03-01 06:00:05.585 330331 10731 \N \N \N 168270 2024-03-01 06:00:03.375 2024-03-01 06:00:05.626 330228 675 \N \N \N 168271 2024-03-01 06:00:03.375 2024-03-01 06:00:05.671 325208 15088 \N \N \N 168272 2024-03-01 06:00:03.375 2024-03-01 06:00:05.708 322295 18930 \N \N \N 168273 2024-03-01 06:00:03.375 2024-03-01 06:00:05.732 321993 6471 \N \N \N 168274 2024-03-01 06:00:03.375 2024-03-01 06:00:05.764 312312 20555 \N \N \N 168275 2024-03-01 06:00:03.375 2024-03-01 06:00:05.833 312231 18262 \N \N \N 168276 2024-03-01 06:00:03.375 2024-03-01 06:00:05.92 308946 21624 \N \N \N 168277 2024-03-01 06:00:03.375 2024-03-01 06:00:05.973 304223 8385 \N \N \N 168278 2024-03-01 06:00:03.375 2024-03-01 06:00:06.024 291376 7818 \N \N \N 168279 2024-03-01 06:00:03.375 2024-03-01 06:00:06.06 282510 794 \N \N \N 168280 2024-03-01 06:00:03.375 2024-03-01 06:00:06.083 280672 14255 \N \N \N 168281 2024-03-01 06:00:03.375 2024-03-01 06:00:06.091 279619 14939 \N \N \N 168282 2024-03-01 06:00:03.375 2024-03-01 06:00:06.111 279390 1401 \N \N \N 168283 2024-03-01 06:00:03.375 2024-03-01 06:00:06.116 279285 21349 \N \N \N 168284 2024-03-01 06:00:03.375 2024-03-01 06:00:06.139 263146 16456 \N \N \N 168285 2024-03-01 06:00:03.375 2024-03-01 06:00:06.145 258681 902 \N \N \N 168286 2024-03-01 06:00:03.375 2024-03-01 06:00:06.151 258033 18511 \N \N \N 168287 2024-03-01 06:00:03.375 2024-03-01 06:00:06.162 255504 15463 \N \N \N 168288 2024-03-01 06:00:03.375 2024-03-01 06:00:06.167 253564 5758 \N \N \N 168289 2024-03-01 06:00:03.375 2024-03-01 06:00:06.175 253545 1733 \N \N \N 168290 2024-03-01 06:00:03.375 2024-03-01 06:00:06.183 253492 19941 \N \N \N 168291 2024-03-01 06:00:03.375 2024-03-01 06:00:06.188 253467 997 \N \N \N 168292 2024-03-01 06:00:03.375 2024-03-01 06:00:06.199 252952 19289 \N \N \N 168293 2024-03-01 06:00:03.375 2024-03-01 06:00:06.211 251955 9347 \N \N \N 168294 2024-03-01 06:00:03.375 2024-03-01 06:00:06.216 245933 21421 \N \N \N 168295 2024-03-01 06:00:03.375 2024-03-01 06:00:06.228 245933 19637 \N \N \N 168296 2024-03-01 06:00:03.375 2024-03-01 06:00:06.24 243366 21194 \N \N \N 168297 2024-03-01 06:00:03.375 2024-03-01 06:00:06.249 239602 19809 \N \N \N 168298 2024-03-01 06:00:03.375 2024-03-01 06:00:06.258 239493 1208 \N \N \N 168299 2024-03-01 06:00:03.375 2024-03-01 06:00:06.263 239482 21218 \N \N \N 168300 2024-03-01 06:00:03.375 2024-03-01 06:00:06.276 239409 1244 \N \N \N 168301 2024-03-01 06:00:03.375 2024-03-01 06:00:06.288 237692 19501 \N \N \N 168302 2024-03-01 06:00:03.375 2024-03-01 06:00:06.297 234283 4126 \N \N \N 168303 2024-03-01 06:00:03.375 2024-03-01 06:00:06.308 234195 21042 \N \N \N 168304 2024-03-01 06:00:03.375 2024-03-01 06:00:06.322 223990 17696 \N \N \N 168305 2024-03-01 06:00:03.375 2024-03-01 06:00:06.335 219073 19987 \N \N \N 168306 2024-03-01 06:00:03.375 2024-03-01 06:00:06.34 219049 17124 \N \N \N 168307 2024-03-01 06:00:03.375 2024-03-01 06:00:06.36 219048 18460 \N \N \N 168308 2024-03-01 06:00:03.375 2024-03-01 06:00:06.388 218905 11716 \N \N \N 168309 2024-03-01 06:00:03.375 2024-03-01 06:00:06.432 218886 20980 \N \N \N 168310 2024-03-01 06:00:03.375 2024-03-01 06:00:06.46 218886 18357 \N \N \N 168311 2024-03-01 06:00:03.375 2024-03-01 06:00:06.477 218886 21361 \N \N \N 168312 2024-03-01 06:00:03.375 2024-03-01 06:00:06.484 218886 19966 \N \N \N 168313 2024-03-01 06:00:03.375 2024-03-01 06:00:06.494 218886 19034 \N \N \N 168314 2024-03-01 06:00:03.375 2024-03-01 06:00:06.5 214978 1737 \N \N \N 168315 2024-03-01 06:00:03.375 2024-03-01 06:00:06.516 213219 13544 \N \N \N 168316 2024-03-01 06:00:03.375 2024-03-01 06:00:06.529 206687 1478 \N \N \N 168317 2024-03-01 06:00:03.375 2024-03-01 06:00:06.539 206652 17218 \N \N \N 168318 2024-03-01 06:00:03.375 2024-03-01 06:00:06.553 206641 9352 \N \N \N 168319 2024-03-01 06:00:03.375 2024-03-01 06:00:06.558 206532 16351 \N \N \N 168320 2024-03-01 06:00:03.375 2024-03-01 06:00:06.565 206487 19660 \N \N \N 168321 2024-03-01 06:00:03.375 2024-03-01 06:00:06.578 206475 17166 \N \N \N 168322 2024-03-01 06:00:03.375 2024-03-01 06:00:06.586 206464 13216 \N \N \N 168323 2024-03-01 06:00:03.375 2024-03-01 06:00:06.598 206464 10693 \N \N \N 168324 2024-03-01 06:00:03.375 2024-03-01 06:00:06.605 206464 1618 \N \N \N 168325 2024-03-01 06:00:03.375 2024-03-01 06:00:06.615 206464 20152 \N \N \N 168326 2024-03-01 06:00:03.375 2024-03-01 06:00:06.622 206464 18518 \N \N \N 168327 2024-03-01 06:00:03.375 2024-03-01 06:00:06.641 206464 2757 \N \N \N 168328 2024-03-01 06:00:03.375 2024-03-01 06:00:06.647 206464 10311 \N \N \N 168329 2024-03-01 06:00:03.375 2024-03-01 06:00:06.661 203476 12606 \N \N \N 168330 2024-03-01 06:00:03.375 2024-03-01 06:00:06.667 201370 19286 \N \N \N 168331 2024-03-01 06:00:03.375 2024-03-01 06:00:06.678 201303 17147 \N \N \N 168332 2024-03-01 06:00:03.375 2024-03-01 06:00:06.683 201280 20276 \N \N \N 168333 2024-03-01 06:00:03.375 2024-03-01 06:00:06.689 201274 15160 \N \N \N 168334 2024-03-01 06:00:03.375 2024-03-01 06:00:06.695 201273 976 \N \N \N 168335 2024-03-01 06:00:03.375 2024-03-01 06:00:06.708 201250 19996 \N \N \N 168336 2024-03-01 06:00:03.375 2024-03-01 06:00:06.715 201250 15239 \N \N \N 168337 2024-03-01 06:00:03.375 2024-03-01 06:00:06.743 201250 19770 \N \N \N 168338 2024-03-01 06:00:03.375 2024-03-01 06:00:06.776 201250 16638 \N \N \N 168339 2024-03-01 06:00:03.375 2024-03-01 06:00:06.786 201250 4304 \N \N \N 168340 2024-03-01 06:00:03.375 2024-03-01 06:00:06.801 201250 1552 \N \N \N 168341 2024-03-01 06:00:03.375 2024-03-01 06:00:06.807 201250 7913 \N \N \N 168342 2024-03-01 06:00:03.375 2024-03-01 06:00:06.821 201250 19333 \N \N \N 168343 2024-03-01 06:00:03.375 2024-03-01 06:00:06.854 201250 2780 \N \N \N 168344 2024-03-01 06:00:03.375 2024-03-01 06:00:06.884 201250 14818 \N \N \N 168345 2024-03-01 06:00:03.375 2024-03-01 06:00:06.909 200279 6149 \N \N \N 168346 2024-03-01 06:00:03.375 2024-03-01 06:00:06.929 197809 21444 \N \N \N 168347 2024-03-01 06:00:03.375 2024-03-01 06:00:06.946 178719 20439 \N \N \N 168348 2024-03-01 06:00:03.375 2024-03-01 06:00:06.954 155574 20691 \N \N \N 168349 2024-03-01 06:00:03.375 2024-03-01 06:00:06.966 155171 1983 \N \N \N 168350 2024-03-01 06:00:03.375 2024-03-01 06:00:06.971 150091 21585 \N \N \N 168351 2024-03-01 06:00:03.375 2024-03-01 06:00:06.992 145830 4802 \N \N \N 168352 2024-03-01 06:00:03.375 2024-03-01 06:00:07.012 140951 16356 \N \N \N 168353 2024-03-01 06:00:03.375 2024-03-01 06:00:07.02 140227 2722 \N \N \N 168354 2024-03-01 06:00:03.375 2024-03-01 06:00:07.061 139391 20704 \N \N \N 168355 2024-03-01 06:00:03.375 2024-03-01 06:00:07.082 136098 18583 \N \N \N 168356 2024-03-01 06:00:03.375 2024-03-01 06:00:07.107 131990 10484 \N \N \N 168357 2024-03-01 06:00:03.375 2024-03-01 06:00:07.113 131572 671 \N \N \N 168358 2024-03-01 06:00:03.375 2024-03-01 06:00:07.118 124529 20657 \N \N \N 168359 2024-03-01 06:00:03.375 2024-03-01 06:00:07.125 118889 10291 \N \N \N 168360 2024-03-01 06:00:03.375 2024-03-01 06:00:07.144 116714 19664 \N \N \N 168361 2024-03-01 06:00:03.375 2024-03-01 06:00:07.158 114959 11158 \N \N \N 168362 2024-03-01 06:00:03.375 2024-03-01 06:00:07.169 114165 20704 \N \N \N 168363 2024-03-01 06:00:03.375 2024-03-01 06:00:07.175 113027 7659 \N \N \N 168364 2024-03-01 06:00:03.375 2024-03-01 06:00:07.191 111500 16329 \N \N \N 168365 2024-03-01 06:00:03.375 2024-03-01 06:00:07.201 109593 21469 \N \N \N 168366 2024-03-01 06:00:03.375 2024-03-01 06:00:07.208 109591 11527 \N \N \N 168367 2024-03-01 06:00:03.375 2024-03-01 06:00:07.218 109531 17984 \N \N \N 168368 2024-03-01 06:00:03.375 2024-03-01 06:00:07.23 109525 5522 \N \N \N 168369 2024-03-01 06:00:03.375 2024-03-01 06:00:07.241 109484 17209 \N \N \N 168370 2024-03-01 06:00:03.375 2024-03-01 06:00:07.252 218886 1008 \N \N \N 168371 2024-03-01 06:00:03.375 2024-03-01 06:00:07.283 109443 8998 \N \N \N 168372 2024-03-01 06:00:03.375 2024-03-01 06:00:07.289 109443 1720 \N \N \N 168373 2024-03-01 06:00:03.375 2024-03-01 06:00:07.296 109443 17800 \N \N \N 168374 2024-03-01 06:00:03.375 2024-03-01 06:00:07.303 109443 6798 \N \N \N 168375 2024-03-01 06:00:03.375 2024-03-01 06:00:07.312 109443 18409 \N \N \N 168376 2024-03-01 06:00:03.375 2024-03-01 06:00:07.316 109443 13759 \N \N \N 168377 2024-03-01 06:00:03.375 2024-03-01 06:00:07.333 109443 6384 \N \N \N 168378 2024-03-01 06:00:03.375 2024-03-01 06:00:07.35 109443 1237 \N \N \N 168379 2024-03-01 06:00:03.375 2024-03-01 06:00:07.364 109443 954 \N \N \N 168380 2024-03-01 06:00:03.375 2024-03-01 06:00:07.395 109443 14959 \N \N \N 168381 2024-03-01 06:00:03.375 2024-03-01 06:00:07.416 109443 6749 \N \N \N 168382 2024-03-01 06:00:03.375 2024-03-01 06:00:07.423 109443 6382 \N \N \N 168383 2024-03-01 06:00:03.375 2024-03-01 06:00:07.43 109443 17927 \N \N \N 168384 2024-03-01 06:00:03.375 2024-03-01 06:00:07.438 109443 2029 \N \N \N 168385 2024-03-01 06:00:03.375 2024-03-01 06:00:07.452 109443 6361 \N \N \N 168386 2024-03-01 06:00:03.375 2024-03-01 06:00:07.461 109423 2039 \N \N \N 168387 2024-03-01 06:00:03.375 2024-03-01 06:00:07.473 109382 7746 \N \N \N 168388 2024-03-01 06:00:03.375 2024-03-01 06:00:07.48 109382 20681 \N \N \N 168389 2024-03-01 06:00:03.375 2024-03-01 06:00:07.499 107804 21116 \N \N \N 168390 2024-03-01 06:00:03.375 2024-03-01 06:00:07.506 105092 18511 \N \N \N 168391 2024-03-01 06:00:03.375 2024-03-01 06:00:07.533 101454 18291 \N \N \N 168392 2024-03-01 06:00:03.375 2024-03-01 06:00:07.544 99930 9833 \N \N \N 168393 2024-03-01 06:00:03.375 2024-03-01 06:00:07.554 98474 9169 \N \N \N 168394 2024-03-01 06:00:03.375 2024-03-01 06:00:07.559 97759 11220 \N \N \N 168395 2024-03-01 06:00:03.375 2024-03-01 06:00:07.576 97389 4692 \N \N \N 168396 2024-03-01 06:00:03.375 2024-03-01 06:00:07.589 97038 12122 \N \N \N 168397 2024-03-01 06:00:03.375 2024-03-01 06:00:07.595 97019 18705 \N \N \N 168398 2024-03-01 06:00:03.375 2024-03-01 06:00:07.602 97010 19511 \N \N \N 168399 2024-03-01 06:00:03.375 2024-03-01 06:00:07.606 96947 21494 \N \N \N 168400 2024-03-01 06:00:03.375 2024-03-01 06:00:07.612 92871 11395 \N \N \N 168401 2024-03-01 06:00:03.375 2024-03-01 06:00:07.622 92693 21446 \N \N \N 168402 2024-03-01 06:00:03.375 2024-03-01 06:00:07.631 92351 17321 \N \N \N 168403 2024-03-01 06:00:03.375 2024-03-01 06:00:07.637 91743 7673 \N \N \N 168404 2024-03-01 06:00:03.375 2024-03-01 06:00:07.648 91699 8570 \N \N \N 168405 2024-03-01 06:00:03.375 2024-03-01 06:00:07.653 90889 1092 \N \N \N 168406 2024-03-01 06:00:03.375 2024-03-01 06:00:07.658 90884 18667 \N \N \N 168407 2024-03-01 06:00:03.375 2024-03-01 06:00:07.665 90837 18264 \N \N \N 168408 2024-03-01 06:00:03.375 2024-03-01 06:00:07.673 90836 7760 \N \N \N 168409 2024-03-01 06:00:03.375 2024-03-01 06:00:07.696 90836 4570 \N \N \N 168410 2024-03-01 06:00:03.375 2024-03-01 06:00:07.738 90218 19126 \N \N \N 168411 2024-03-01 06:00:03.375 2024-03-01 06:00:07.764 90155 633 \N \N \N 168412 2024-03-01 06:00:03.375 2024-03-01 06:00:07.788 90149 21421 \N \N \N 168413 2024-03-01 06:00:03.375 2024-03-01 06:00:07.82 90137 701 \N \N \N 168414 2024-03-01 06:00:03.375 2024-03-01 06:00:07.844 90137 20302 \N \N \N 168415 2024-03-01 06:00:03.375 2024-03-01 06:00:07.866 90134 14074 \N \N \N 168416 2024-03-01 06:00:03.375 2024-03-01 06:00:07.875 90132 15409 \N \N \N 168417 2024-03-01 06:00:03.375 2024-03-01 06:00:07.884 90125 5527 \N \N \N 168418 2024-03-01 06:00:03.375 2024-03-01 06:00:07.89 90111 15060 \N \N \N 168419 2024-03-01 06:00:03.375 2024-03-01 06:00:07.902 90089 4043 \N \N \N 168420 2024-03-01 06:00:03.375 2024-03-01 06:00:07.911 90089 19622 \N \N \N 168421 2024-03-01 06:00:03.375 2024-03-01 06:00:07.923 90089 2204 \N \N \N 168422 2024-03-01 06:00:03.375 2024-03-01 06:00:07.929 90089 19910 \N \N \N 168423 2024-03-01 06:00:03.375 2024-03-01 06:00:07.935 90089 14950 \N \N \N 168424 2024-03-01 06:00:03.375 2024-03-01 06:00:07.942 90089 11885 \N \N \N 168425 2024-03-01 06:00:03.375 2024-03-01 06:00:07.949 90089 20854 \N \N \N 168426 2024-03-01 06:00:03.375 2024-03-01 06:00:07.963 90059 3518 \N \N \N 168427 2024-03-01 06:00:03.375 2024-03-01 06:00:07.98 90059 10821 \N \N \N 168428 2024-03-01 06:00:03.375 2024-03-01 06:00:07.989 90059 4259 \N \N \N 168429 2024-03-01 06:00:03.375 2024-03-01 06:00:07.997 90059 18994 \N \N \N 168430 2024-03-01 06:00:03.375 2024-03-01 06:00:08.031 90059 21044 \N \N \N 168431 2024-03-01 06:00:03.375 2024-03-01 06:00:08.048 90059 6260 \N \N \N 168432 2024-03-01 06:00:03.375 2024-03-01 06:00:08.064 90059 21131 \N \N \N 168433 2024-03-01 06:00:03.375 2024-03-01 06:00:08.083 90059 20018 \N \N \N 168434 2024-03-01 06:00:03.375 2024-03-01 06:00:08.1 90059 20327 \N \N \N 168435 2024-03-01 06:00:03.375 2024-03-01 06:00:08.117 90059 7389 \N \N \N 168436 2024-03-01 06:00:03.375 2024-03-01 06:00:08.132 90059 18101 \N \N \N 168437 2024-03-01 06:00:03.375 2024-03-01 06:00:08.149 90059 4802 \N \N \N 168438 2024-03-01 06:00:03.375 2024-03-01 06:00:08.168 90059 1245 \N \N \N 168439 2024-03-01 06:00:03.375 2024-03-01 06:00:08.184 90059 20251 \N \N \N 168440 2024-03-01 06:00:03.375 2024-03-01 06:00:08.208 90059 15491 \N \N \N 168441 2024-03-01 06:00:03.375 2024-03-01 06:00:08.23 90059 19484 \N \N \N 168442 2024-03-01 06:00:03.375 2024-03-01 06:00:08.245 90059 1136 \N \N \N 168443 2024-03-01 06:00:03.375 2024-03-01 06:00:08.255 90059 18336 \N \N \N 168444 2024-03-01 06:00:03.375 2024-03-01 06:00:08.267 90059 19541 \N \N \N 168445 2024-03-01 06:00:03.375 2024-03-01 06:00:08.297 90059 9307 \N \N \N 168446 2024-03-01 06:00:03.375 2024-03-01 06:00:08.312 90059 18274 \N \N \N 168447 2024-03-01 06:00:03.375 2024-03-01 06:00:08.333 90059 12139 \N \N \N 168448 2024-03-01 06:00:03.375 2024-03-01 06:00:08.347 90059 16357 \N \N \N 168449 2024-03-01 06:00:03.375 2024-03-01 06:00:08.361 88990 11515 \N \N \N 168450 2024-03-01 06:00:03.375 2024-03-01 06:00:08.371 83739 16126 \N \N \N 168451 2024-03-01 06:00:03.375 2024-03-01 06:00:08.396 81604 21103 \N \N \N 168452 2024-03-01 06:00:03.375 2024-03-01 06:00:08.418 79174 19507 \N \N \N 168453 2024-03-01 06:00:03.375 2024-03-01 06:00:08.429 77929 20852 \N \N \N 168454 2024-03-01 06:00:03.375 2024-03-01 06:00:08.434 77807 14791 \N \N \N 168455 2024-03-01 06:00:03.375 2024-03-01 06:00:08.443 77664 14857 \N \N \N 168456 2024-03-01 06:00:03.375 2024-03-01 06:00:08.449 77616 9335 \N \N \N 168457 2024-03-01 06:00:03.375 2024-03-01 06:00:08.458 77140 679 \N \N \N 168458 2024-03-01 06:00:03.375 2024-03-01 06:00:08.464 74678 20377 \N \N \N 168459 2024-03-01 06:00:03.375 2024-03-01 06:00:08.471 74471 2514 \N \N \N 168460 2024-03-01 06:00:03.375 2024-03-01 06:00:08.485 74005 10549 \N \N \N 168461 2024-03-01 06:00:03.375 2024-03-01 06:00:08.504 73543 21437 \N \N \N 168462 2024-03-01 06:00:03.375 2024-03-01 06:00:08.524 73543 3440 \N \N \N 168463 2024-03-01 06:00:03.375 2024-03-01 06:00:08.552 72313 2459 \N \N \N 168464 2024-03-01 06:00:03.375 2024-03-01 06:00:08.574 69117 2735 \N \N \N 168465 2024-03-01 06:00:03.375 2024-03-01 06:00:08.61 68105 21599 \N \N \N 168466 2024-03-01 06:00:03.375 2024-03-01 06:00:08.631 68042 5112 \N \N \N 168467 2024-03-01 06:00:03.375 2024-03-01 06:00:08.644 68042 2195 \N \N \N 168468 2024-03-01 06:00:03.375 2024-03-01 06:00:08.648 68028 19952 \N \N \N 168469 2024-03-01 06:00:03.375 2024-03-01 06:00:08.661 67052 5128 \N \N \N 168470 2024-03-01 06:00:03.375 2024-03-01 06:00:08.667 66546 18524 \N \N \N 168471 2024-03-01 06:00:03.375 2024-03-01 06:00:08.68 66468 11298 \N \N \N 168472 2024-03-01 06:00:03.375 2024-03-01 06:00:08.692 66273 5308 \N \N \N 168473 2024-03-01 06:00:03.375 2024-03-01 06:00:08.7 63995 2614 \N \N \N 168474 2024-03-01 06:00:03.375 2024-03-01 06:00:08.713 63995 629 \N \N \N 168475 2024-03-01 06:00:03.375 2024-03-01 06:00:08.727 63965 19281 \N \N \N 168476 2024-03-01 06:00:03.375 2024-03-01 06:00:08.747 63957 12768 \N \N \N 168477 2024-03-01 06:00:03.375 2024-03-01 06:00:08.801 63957 1717 \N \N \N 168478 2024-03-01 06:00:03.375 2024-03-01 06:00:08.821 63948 1817 \N \N \N 168479 2024-03-01 06:00:03.375 2024-03-01 06:00:08.84 63948 19034 \N \N \N 168480 2024-03-01 06:00:03.375 2024-03-01 06:00:08.857 63948 16848 \N \N \N 168481 2024-03-01 06:00:03.375 2024-03-01 06:00:08.873 63948 1060 \N \N \N 168482 2024-03-01 06:00:03.375 2024-03-01 06:00:08.889 63948 19535 \N \N \N 168483 2024-03-01 06:00:03.375 2024-03-01 06:00:08.897 63918 14015 \N \N \N 168484 2024-03-01 06:00:03.375 2024-03-01 06:00:08.902 63918 3729 \N \N \N 168485 2024-03-01 06:00:03.375 2024-03-01 06:00:08.912 63918 1576 \N \N \N 168486 2024-03-01 06:00:03.375 2024-03-01 06:00:08.917 63918 5519 \N \N \N 168487 2024-03-01 06:00:03.375 2024-03-01 06:00:08.931 61202 20409 \N \N \N 168488 2024-03-01 06:00:03.375 2024-03-01 06:00:08.937 60908 13599 \N \N \N 168489 2024-03-01 06:00:03.375 2024-03-01 06:00:08.948 59112 20479 \N \N \N 168490 2024-03-01 06:00:03.375 2024-03-01 06:00:08.959 58569 1094 \N \N \N 168491 2024-03-01 06:00:03.375 2024-03-01 06:00:08.97 57996 21070 \N \N \N 168492 2024-03-01 06:00:03.375 2024-03-01 06:00:08.992 57870 20511 \N \N \N 168493 2024-03-01 06:00:03.375 2024-03-01 06:00:09.024 56521 14213 \N \N \N 168494 2024-03-01 06:00:03.375 2024-03-01 06:00:09.048 56218 21116 \N \N \N 168495 2024-03-01 06:00:03.375 2024-03-01 06:00:09.074 55755 1626 \N \N \N 168496 2024-03-01 06:00:03.375 2024-03-01 06:00:09.101 55157 5175 \N \N \N 168497 2024-03-01 06:00:03.375 2024-03-01 06:00:09.115 54703 12188 \N \N \N 168498 2024-03-01 06:00:03.375 2024-03-01 06:00:09.141 53668 656 \N \N \N 168499 2024-03-01 06:00:03.375 2024-03-01 06:00:09.152 52933 13927 \N \N \N 168500 2024-03-01 06:00:03.375 2024-03-01 06:00:09.159 52916 18460 \N \N \N 168501 2024-03-01 06:00:03.375 2024-03-01 06:00:09.167 52795 18626 \N \N \N 168502 2024-03-01 06:00:03.375 2024-03-01 06:00:09.173 51233 21446 \N \N \N 168503 2024-03-01 06:00:03.375 2024-03-01 06:00:09.18 50618 18809 \N \N \N 168504 2024-03-01 06:00:03.375 2024-03-01 06:00:09.185 49268 12959 \N \N \N 168505 2024-03-01 06:00:03.375 2024-03-01 06:00:09.192 49158 3518 \N \N \N 168506 2024-03-01 06:00:03.375 2024-03-01 06:00:09.199 49128 1060 \N \N \N 168507 2024-03-01 06:00:03.375 2024-03-01 06:00:09.204 49128 16532 \N \N \N 168508 2024-03-01 06:00:03.375 2024-03-01 06:00:09.211 49128 1585 \N \N \N 168509 2024-03-01 06:00:03.375 2024-03-01 06:00:09.217 48727 795 \N \N \N 168510 2024-03-01 06:00:03.375 2024-03-01 06:00:09.223 48691 2674 \N \N \N 168511 2024-03-01 06:00:03.375 2024-03-01 06:00:09.231 48650 2029 \N \N \N 168512 2024-03-01 06:00:03.375 2024-03-01 06:00:09.243 48630 2773 \N \N \N 168513 2024-03-01 06:00:03.375 2024-03-01 06:00:09.25 48630 691 \N \N \N 168514 2024-03-01 06:00:03.375 2024-03-01 06:00:09.257 48630 11073 \N \N \N 168515 2024-03-01 06:00:03.375 2024-03-01 06:00:09.261 48600 6578 \N \N \N 168516 2024-03-01 06:00:03.375 2024-03-01 06:00:09.267 48600 17030 \N \N \N 168517 2024-03-01 06:00:03.375 2024-03-01 06:00:09.275 48600 618 \N \N \N 168518 2024-03-01 06:00:03.375 2024-03-01 06:00:09.281 48246 8416 \N \N \N 168519 2024-03-01 06:00:03.375 2024-03-01 06:00:09.287 48216 19930 \N \N \N 168520 2024-03-01 06:00:03.375 2024-03-01 06:00:09.295 47645 1244 \N \N \N 168521 2024-03-01 06:00:03.375 2024-03-01 06:00:09.304 46795 9159 \N \N \N 168522 2024-03-01 06:00:03.375 2024-03-01 06:00:09.31 46741 16808 \N \N \N 168523 2024-03-01 06:00:03.375 2024-03-01 06:00:09.32 46741 17707 \N \N \N 168524 2024-03-01 06:00:03.375 2024-03-01 06:00:09.328 46575 1047 \N \N \N 168525 2024-03-01 06:00:03.375 2024-03-01 06:00:09.335 46553 2233 \N \N \N 168526 2024-03-01 06:00:03.375 2024-03-01 06:00:09.341 46535 8045 \N \N \N 168527 2024-03-01 06:00:03.375 2024-03-01 06:00:09.352 46524 13365 \N \N \N 168528 2024-03-01 06:00:03.375 2024-03-01 06:00:09.361 46505 11477 \N \N \N 168529 2024-03-01 06:00:03.375 2024-03-01 06:00:09.367 46471 18539 \N \N \N 168530 2024-03-01 06:00:03.375 2024-03-01 06:00:09.374 46470 19117 \N \N \N 168531 2024-03-01 06:00:03.375 2024-03-01 06:00:09.379 46469 20825 \N \N \N 168532 2024-03-01 06:00:03.375 2024-03-01 06:00:09.386 46454 13361 \N \N \N 168533 2024-03-01 06:00:03.375 2024-03-01 06:00:09.393 46454 17365 \N \N \N 168534 2024-03-01 06:00:03.375 2024-03-01 06:00:09.399 46431 18705 \N \N \N 168535 2024-03-01 06:00:03.375 2024-03-01 06:00:09.405 46424 5825 \N \N \N 168536 2024-03-01 06:00:03.375 2024-03-01 06:00:09.409 46424 1773 \N \N \N 168537 2024-03-01 06:00:03.375 2024-03-01 06:00:09.418 46424 18357 \N \N \N 168538 2024-03-01 06:00:03.375 2024-03-01 06:00:09.429 46424 21212 \N \N \N 168539 2024-03-01 06:00:03.375 2024-03-01 06:00:09.44 46424 20616 \N \N \N 168540 2024-03-01 06:00:03.375 2024-03-01 06:00:09.449 46424 19961 \N \N \N 168541 2024-03-01 06:00:03.375 2024-03-01 06:00:09.455 46424 16301 \N \N \N 168542 2024-03-01 06:00:03.375 2024-03-01 06:00:09.471 46424 20588 \N \N \N 168543 2024-03-01 06:00:03.375 2024-03-01 06:00:09.477 46424 910 \N \N \N 168544 2024-03-01 06:00:03.375 2024-03-01 06:00:09.488 46424 17095 \N \N \N 168545 2024-03-01 06:00:03.375 2024-03-01 06:00:09.498 46424 669 \N \N \N 168546 2024-03-01 06:00:03.375 2024-03-01 06:00:09.51 46424 13927 \N \N \N 168547 2024-03-01 06:00:03.375 2024-03-01 06:00:09.528 46424 17201 \N \N \N 168548 2024-03-01 06:00:03.375 2024-03-01 06:00:09.542 46424 20817 \N \N \N 168549 2024-03-01 06:00:03.375 2024-03-01 06:00:09.56 46424 9352 \N \N \N 168550 2024-03-01 06:00:03.375 2024-03-01 06:00:09.57 46424 20327 \N \N \N 168551 2024-03-01 06:00:03.375 2024-03-01 06:00:09.587 46424 1983 \N \N \N 168552 2024-03-01 06:00:03.375 2024-03-01 06:00:09.592 46424 19854 \N \N \N 168553 2024-03-01 06:00:03.375 2024-03-01 06:00:09.607 46424 3717 \N \N \N 168554 2024-03-01 06:00:03.375 2024-03-01 06:00:09.615 46424 11491 \N \N \N 168555 2024-03-01 06:00:03.375 2024-03-01 06:00:09.63 46424 5694 \N \N \N 168556 2024-03-01 06:00:03.375 2024-03-01 06:00:09.646 46319 21044 \N \N \N 168557 2024-03-01 06:00:03.375 2024-03-01 06:00:09.656 1196797 21021 \N \N \N 168558 2024-03-01 06:00:03.375 2024-03-01 06:00:09.663 1043556 661 \N \N \N 168559 2024-03-01 06:00:03.375 2024-03-01 06:00:09.671 1013655 18309 \N \N \N 168560 2024-03-01 06:00:03.375 2024-03-01 06:00:09.676 992404 16229 \N \N \N 168561 2024-03-01 06:00:03.375 2024-03-01 06:00:09.685 987873 21422 \N \N \N 168562 2024-03-01 06:00:03.375 2024-03-01 06:00:09.69 974278 20555 \N \N \N 168563 2024-03-01 06:00:03.375 2024-03-01 06:00:09.696 926095 2256 \N \N \N 168564 2024-03-01 06:00:03.375 2024-03-01 06:00:09.701 884728 6430 \N \N \N 168565 2024-03-01 06:00:03.375 2024-03-01 06:00:09.706 883443 12959 \N \N \N 168566 2024-03-01 06:00:03.375 2024-03-01 06:00:09.711 857559 12158 \N \N \N 168567 2024-03-01 06:00:03.375 2024-03-01 06:00:09.717 841234 828 \N \N \N 168568 2024-03-01 06:00:03.375 2024-03-01 06:00:09.722 819867 10862 \N \N \N 168569 2024-03-01 06:00:03.375 2024-03-01 06:00:09.732 801905 20299 \N \N \N 168570 2024-03-01 06:00:03.375 2024-03-01 06:00:09.74 762038 4027 \N \N \N 168571 2024-03-01 06:00:03.375 2024-03-01 06:00:09.745 753922 17741 \N \N \N 168572 2024-03-01 06:00:03.375 2024-03-01 06:00:09.751 751554 15833 \N \N \N 168573 2024-03-01 06:00:03.375 2024-03-01 06:00:09.757 751266 10060 \N \N \N 168574 2024-03-01 06:00:03.375 2024-03-01 06:00:09.762 746913 14545 \N \N \N 168575 2024-03-01 06:00:03.375 2024-03-01 06:00:09.767 740761 17227 \N \N \N 168576 2024-03-01 06:00:03.375 2024-03-01 06:00:09.773 672793 866 \N \N \N 168577 2024-03-01 06:00:03.375 2024-03-01 06:00:09.779 754323 2213 \N \N \N 168578 2024-03-01 06:00:03.375 2024-03-01 06:00:09.785 715935 21178 \N \N \N 168579 2024-03-01 06:00:03.375 2024-03-01 06:00:09.793 597600 20018 \N \N \N 168580 2024-03-01 06:00:03.375 2024-03-01 06:00:09.797 583850 15536 \N \N \N 168581 2024-03-01 06:00:03.375 2024-03-01 06:00:09.802 538753 16178 \N \N \N 168582 2024-03-01 06:00:03.375 2024-03-01 06:00:09.808 529222 21033 \N \N \N 168583 2024-03-01 06:00:03.375 2024-03-01 06:00:09.814 496226 1044 \N \N \N 168584 2024-03-01 06:00:03.375 2024-03-01 06:00:09.821 476552 746 \N \N \N 168585 2024-03-01 06:00:03.375 2024-03-01 06:00:09.827 465036 20243 \N \N \N 168586 2024-03-01 06:00:03.375 2024-03-01 06:00:09.831 441057 19910 \N \N \N 168587 2024-03-01 06:00:03.375 2024-03-01 06:00:09.836 435883 21627 \N \N \N 168588 2024-03-01 06:00:03.375 2024-03-01 06:00:09.84 421274 1800 \N \N \N 168589 2024-03-01 06:00:03.375 2024-03-01 06:00:09.847 405612 20623 \N \N \N 168590 2024-03-01 06:00:03.375 2024-03-01 06:00:09.851 390912 17275 \N \N \N 168591 2024-03-01 06:00:03.375 2024-03-01 06:00:09.856 389539 12268 \N \N \N 168592 2024-03-01 06:00:03.375 2024-03-01 06:00:09.866 387561 7916 \N \N \N 168593 2024-03-01 06:00:03.375 2024-03-01 06:00:09.874 382890 20133 \N \N \N 168594 2024-03-01 06:00:03.375 2024-03-01 06:00:09.88 380913 16259 \N \N \N 168595 2024-03-01 06:00:03.375 2024-03-01 06:00:09.887 367262 18941 \N \N \N 168596 2024-03-01 06:00:03.375 2024-03-01 06:00:09.895 367180 9107 \N \N \N 168597 2024-03-01 06:00:03.375 2024-03-01 06:00:09.899 357538 1439 \N \N \N 168598 2024-03-01 06:00:03.375 2024-03-01 06:00:09.904 355570 17690 \N \N \N 168599 2024-03-01 06:00:03.375 2024-03-01 06:00:09.908 349733 19292 \N \N \N 168600 2024-03-01 06:00:03.375 2024-03-01 06:00:09.913 347247 1825 \N \N \N 168601 2024-03-01 06:00:03.375 2024-03-01 06:00:09.917 345567 17365 \N \N \N 168602 2024-03-01 06:00:03.375 2024-03-01 06:00:09.922 335300 1713 \N \N \N 168603 2024-03-01 06:00:03.375 2024-03-01 06:00:09.927 325210 11698 \N \N \N 168604 2024-03-01 06:00:03.375 2024-03-01 06:00:09.936 315288 20450 \N \N \N 168605 2024-03-01 06:00:03.375 2024-03-01 06:00:09.946 309071 16879 \N \N \N 168606 2024-03-01 06:00:03.375 2024-03-01 06:00:09.955 290242 20187 \N \N \N 168607 2024-03-01 06:00:03.375 2024-03-01 06:00:09.96 289571 20669 \N \N \N 168608 2024-03-01 06:00:03.375 2024-03-01 06:00:09.964 375746 18517 \N \N \N 168609 2024-03-01 06:00:03.375 2024-03-01 06:00:09.97 285585 2335 \N \N \N 168610 2024-03-01 06:00:03.375 2024-03-01 06:00:09.976 270450 10484 \N \N \N 168611 2024-03-01 06:00:03.375 2024-03-01 06:00:09.981 268234 17602 \N \N \N 168612 2024-03-01 06:00:03.375 2024-03-01 06:00:09.986 268144 17064 \N \N \N 168613 2024-03-01 06:00:03.375 2024-03-01 06:00:09.992 254147 2749 \N \N \N 168614 2024-03-01 06:00:03.375 2024-03-01 06:00:09.997 252382 8841 \N \N \N 168615 2024-03-01 06:00:03.375 2024-03-01 06:00:10.02 238875 651 \N \N \N 168616 2024-03-01 06:00:03.375 2024-03-01 06:00:10.036 220048 10549 \N \N \N 168617 2024-03-01 06:00:03.375 2024-03-01 06:00:10.06 218407 15488 \N \N \N 168618 2024-03-01 06:00:03.375 2024-03-01 06:00:10.084 218295 21214 \N \N \N 168619 2024-03-01 06:00:03.375 2024-03-01 06:00:10.094 217775 12959 \N \N \N 168620 2024-03-01 06:00:03.375 2024-03-01 06:00:10.109 216657 4388 \N \N \N 168621 2024-03-01 06:00:03.375 2024-03-01 06:00:10.121 216566 2711 \N \N \N 168622 2024-03-01 06:00:03.375 2024-03-01 06:00:10.127 206982 20306 \N \N \N 168623 2024-03-01 06:00:03.375 2024-03-01 06:00:10.138 205918 15063 \N \N \N 168624 2024-03-01 06:00:03.375 2024-03-01 06:00:10.147 202656 2156 \N \N \N 168625 2024-03-01 06:00:03.375 2024-03-01 06:00:10.152 200879 16355 \N \N \N 168626 2024-03-01 06:00:03.375 2024-03-01 06:00:10.156 194403 9820 \N \N \N 168627 2024-03-01 06:00:03.375 2024-03-01 06:00:10.164 191910 7979 \N \N \N 168628 2024-03-01 06:00:03.375 2024-03-01 06:00:10.177 179195 11144 \N \N \N 168629 2024-03-01 06:00:03.375 2024-03-01 06:00:10.188 178811 21222 \N \N \N 168630 2024-03-01 06:00:03.375 2024-03-01 06:00:10.192 178808 18280 \N \N \N 168631 2024-03-01 06:00:03.375 2024-03-01 06:00:10.199 178798 14247 \N \N \N 168632 2024-03-01 06:00:03.375 2024-03-01 06:00:10.204 178742 5487 \N \N \N 168633 2024-03-01 06:00:03.375 2024-03-01 06:00:10.209 178742 18873 \N \N \N 168634 2024-03-01 06:00:03.375 2024-03-01 06:00:10.213 176294 21072 \N \N \N 168635 2024-03-01 06:00:03.375 2024-03-01 06:00:10.219 172795 20231 \N \N \N 168636 2024-03-01 06:00:03.375 2024-03-01 06:00:10.224 164800 19583 \N \N \N 168637 2024-03-01 06:00:03.375 2024-03-01 06:00:10.229 164734 909 \N \N \N 168638 2024-03-01 06:00:03.375 2024-03-01 06:00:10.233 160992 19463 \N \N \N 168639 2024-03-01 06:00:03.375 2024-03-01 06:00:10.237 148685 17535 \N \N \N 168640 2024-03-01 06:00:03.375 2024-03-01 06:00:10.242 143252 2293 \N \N \N 168641 2024-03-01 06:00:03.375 2024-03-01 06:00:10.246 142922 19512 \N \N \N 168642 2024-03-01 06:00:03.375 2024-03-01 06:00:10.253 141367 4027 \N \N \N 168643 2024-03-01 06:00:03.375 2024-03-01 06:00:10.258 127267 21247 \N \N \N 168644 2024-03-01 06:00:03.375 2024-03-01 06:00:10.264 120226 21148 \N \N \N 168645 2024-03-01 06:00:03.375 2024-03-01 06:00:10.269 111408 19118 \N \N \N 168646 2024-03-01 06:00:03.375 2024-03-01 06:00:10.273 111366 4973 \N \N \N 168647 2024-03-01 06:00:03.375 2024-03-01 06:00:10.277 107055 9342 \N \N \N 168648 2024-03-01 06:00:03.375 2024-03-01 06:00:10.283 105252 21180 \N \N \N 168649 2024-03-01 06:00:03.375 2024-03-01 06:00:10.289 103604 19661 \N \N \N 168650 2024-03-01 06:00:03.375 2024-03-01 06:00:10.293 103319 11862 \N \N \N 168651 2024-03-01 06:00:03.375 2024-03-01 06:00:10.302 91050 20663 \N \N \N 168652 2024-03-01 06:00:03.375 2024-03-01 06:00:10.31 89415 18262 \N \N \N 168653 2024-03-01 06:00:03.375 2024-03-01 06:00:10.32 89387 19158 \N \N \N 168654 2024-03-01 06:00:03.375 2024-03-01 06:00:10.326 84536 19911 \N \N \N 168655 2024-03-01 06:00:03.375 2024-03-01 06:00:10.334 80275 18581 \N \N \N \. -- -- Data for Name: Invite; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Invite" (id, created_at, updated_at, "userId", gift, "limit", revoked) FROM stdin; \. -- -- Data for Name: Invoice; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Invoice" (id, created_at, updated_at, "userId", hash, bolt11, "expiresAt", "confirmedAt", cancelled, "msatsRequested", "msatsReceived", "desc", preimage, "isHeld", comment, "lud18Data", "confirmedIndex") FROM stdin; \. -- -- Data for Name: Item; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Item" (id, created_at, updated_at, title, text, url, "userId", "parentId", path, "pinId", latitude, location, longitude, "maxBid", "maxSalary", "minSalary", remote, "subName", "statusUpdatedAt", status, company, "weightedVotes", boost, "uploadId", "pollCost", "paidImgLink", "commentMsats", "lastCommentAt", ncomments, msats, "weightedDownVotes", bio, freebie, "deletedAt", "otsFile", "otsHash", bounty, "rootId", "bountyPaidTo", upvotes, "weightedComments", "imgproxyUrls", "noteId", outlawed, "pollExpiresAt") FROM stdin; 444466 2024-03-01 00:58:49.099 2024-03-01 01:08:51.072 \N Publ https://example.com/ 14308 442677 442508.442677.444466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1689019534842 0 \N \N f 0 \N 0 212476782 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 431350 2024-02-19 18:35:32.821 2024-02-19 18:45:33.973 \N Community seat tend position r https://example.com/ 20156 372107 372107.431350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5972422342723 0 \N \N f 0 \N 0 52929517 0 f f \N \N \N \N 372107 \N 0 0 \N \N f \N 430921 2024-02-19 16:22:00.229 2024-02-19 16:32:01.499 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science l https://example.com/ 17682 430919 430919.430921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0991672981876 0 \N \N f 0 \N 0 4230190 0 f f \N \N \N \N 430919 \N 0 0 \N \N f \N 297254 2023-10-28 23:30:18.629 2023-10-28 23:40:20.622 Fly run exe Quick https://example.com/ 15049 \N 297254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3170983280876 0 \N \N f 0 \N 6 241412787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431012 2024-02-19 17:21:32.208 2024-02-19 17:31:33.543 \N Return agreement happy health https://example.com/ 18528 428609 428609.431012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.44567637345803 0 \N \N f 0 \N 0 165177992 0 f f \N \N \N \N 428609 \N 0 0 \N \N f \N 431096 2024-02-19 17:40:03.996 2024-02-19 17:50:04.993 \N Prevent machine source white a https://example.com/ 4175 415726 415726.431096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.94731434211567 0 \N \N f 0 \N 0 172023407 0 f f \N \N \N \N 415726 \N 0 0 \N \N f \N 436058 2024-02-23 11:38:06.822 2024-02-23 11:48:23.471 \N Game durin https://example.com/ 21070 436051 436051.436058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3112971664117 0 \N \N f 0 \N 0 114211114 0 f f \N \N \N \N 436051 \N 0 0 \N \N f \N 433710 2024-02-21 12:46:57.694 2024-02-21 12:56:59.714 Know son future suggest paper personal these milli Field rock decide physical role these produce camera. Scene Mr https://example.com/ 621 \N 433710 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 17.2757197459506 0 \N \N f 0 \N 6 93029748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444420 2024-02-29 23:47:18.246 2024-02-29 23:57:19.956 \N Bag couple hot buy your https://example.com/ 6136 444168 444168.444420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0448315964984 0 \N \N f 0 \N 0 9597791 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444603 2024-03-01 06:04:41.872 2024-03-01 06:14:43.309 \N Different dog example. Th https://example.com/ 16532 443734 443734.444603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.774713852271 0 \N \N f 0 \N 0 43178768 0 f f \N \N \N \N 443734 \N 0 0 \N \N f \N 444183 2024-02-29 20:14:17.953 2024-02-29 20:24:19.269 \N Structure require feel statement plan economy. Base trouble https://example.com/ 638 443743 443743.444183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.504881911124 0 \N \N f 0 \N 1 236858732 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 442368 2024-02-28 16:48:03.797 2024-02-28 16:58:04.674 \N Themselves table various administration single save. Un https://example.com/ 1195 442367 442367.442368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.37713253601584 0 \N \N f 0 \N 0 205116828 0 f f \N \N \N \N 442367 \N 0 0 \N \N f \N 431325 2024-02-19 18:33:28.691 2024-02-19 18:43:29.856 \N Human guy both. Return once pl https://example.com/ 12976 390147 390147.431325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62358735312351 0 \N \N f 0 \N 0 65547422 0 f f \N \N \N \N 390147 \N 0 0 \N \N f \N 431092 2024-02-19 17:39:52.521 2024-02-19 17:49:53.761 \N Power this as. Time Republican https://example.com/ 11091 417005 417005.431092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0948140994473 0 \N \N f 0 \N 0 87834510 0 f f \N \N \N \N 417005 \N 0 0 \N \N f \N 64920 2022-08-31 00:07:36.606 2023-10-02 05:38:03.358 See cell reach mout Lea https://example.com/ 20370 \N 64920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.06985447339574 0 \N \N f 0 \N 1 7052512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431194 2024-02-19 18:14:54.771 2024-02-19 18:24:55.911 \N Their election city process. A https://example.com/ 18351 405202 405202.431194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.118423855530168 0 \N \N f 0 \N 0 72282197 0 f f \N \N \N \N 405202 \N 0 0 \N \N f \N 438043 2024-02-25 09:33:51.44 2024-02-25 09:43:52.735 \N Item attention ch https://example.com/ 16830 437611 437611.438043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2937650673311 0 \N \N f 0 \N 0 107695817 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 77279 2022-10-04 16:02:42.885 2022-10-04 16:02:42.885 Right term sell shoulder. Next chair base young skill fall myself. Stage top \N https://example.com/ 20691 \N 77279 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.6601653895588 0 \N \N f 0 \N 0 150440903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441881 2024-02-28 13:04:11.876 2024-02-28 13:14:12.97 \N Travel according exactly attention. Ca https://example.com/ 13348 441875 441875.441881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93308957551309 0 \N \N f 0 \N 0 112639997 0 f f \N \N \N \N 441875 \N 0 0 \N \N f \N 438082 2024-02-25 10:43:15.666 2024-02-25 10:53:16.801 \N Rang https://example.com/ 20280 437775 437775.438082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9254428331304 0 \N \N f 0 \N 0 58823885 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 431246 2024-02-19 18:20:21.826 2024-02-19 18:30:23.161 \N Practice pressure help white s https://example.com/ 4313 394145 394145.431246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3153913328082 0 \N \N f 0 \N 0 158445298 0 f f \N \N \N \N 394145 \N 0 0 \N \N f \N 116334 2023-01-02 15:35:53.107 2023-01-02 15:35:53.107 Chance near Cultura https://example.com/ 20683 \N 116334 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8096029937867 0 \N \N f 0 \N 1 185398645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444430 2024-02-29 23:57:25.864 2024-03-01 00:07:28.044 \N International yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program m https://example.com/ 20710 444382 443836.444382.444430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.149617739739618 0 \N \N f 0 \N 0 15109862 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 437956 2024-02-25 05:00:05.253 2024-02-25 05:00:11.334 \N Build toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat shar https://example.com/ 17953 437955 437955.437956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.24381916335879 0 \N \N f 0 \N 0 135127519 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N 437954 2024-02-25 04:52:54.458 2024-02-25 05:02:56.325 \N Strategy way low soldier. https://example.com/ 15833 437562 437238.437419.437562.437954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8026736277719 0 \N \N f 0 \N 0 141492160 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 444439 2024-03-01 00:09:02.263 2024-03-01 00:19:04.147 \N Not find attack li https://example.com/ 18336 231006 231006.444439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.2507904423954 0 \N \N f 0 \N 0 194182540 0 f f \N \N \N \N 231006 \N 0 0 \N \N f \N 444483 2024-03-01 01:30:31.863 2024-03-01 01:40:32.9 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church ag https://example.com/ 19332 444482 443372.443652.444482.444483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6598281803086 0 \N \N f 0 \N 0 85083065 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 73937 2022-09-26 05:52:51.001 2022-09-26 05:52:51.001 Side rather law learn. Continue executive there garden air image yea \N https://example.com/ 5036 \N 73937 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3336068617155 0 \N \N f 0 \N 2 193403927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444482 2024-03-01 01:29:08.375 2024-03-01 01:39:10.446 \N Class population stage though page happe https://example.com/ 1609 443652 443372.443652.444482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3658980259633 0 \N \N f 0 \N 1 175698218 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 431305 2024-02-19 18:32:35.293 2024-02-19 18:42:36.995 \N See cell reach mouth prove. Ex https://example.com/ 8269 380429 380429.431305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5879239548927 0 \N \N f 0 \N 0 234350977 0 f f \N \N \N \N 380429 \N 0 0 \N \N f \N 444560 2024-03-01 04:43:31.892 2024-03-01 04:53:33.75 \N Water actually point similar. Box war specific a https://example.com/ 17275 444384 444384.444560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3953946715638 0 \N \N f 0 \N 1 56465646 0 f f \N \N \N \N 444384 \N 0 0 \N \N f \N 431362 2024-02-19 18:36:08.483 2024-02-19 18:46:09.664 \N Summer past television what in https://example.com/ 4059 375005 375005.431362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2444385080463 0 \N \N f 0 \N 0 50022191 0 f f \N \N \N \N 375005 \N 0 0 \N \N f \N 438025 2024-02-25 08:41:03.583 2024-02-25 08:51:04.629 \N Customer reach nice. At himself those alw https://example.com/ 15337 437981 437966.437981.438025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22378414159599 0 \N \N f 0 \N 1 95760516 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 430967 2024-02-19 16:50:00.972 2024-02-19 17:00:02.92 \N Serve deep station probably writer. Perform back protect energy. International se https://example.com/ 2088 430920 430920.430967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8716117432528 0 \N \N f 0 \N 0 208739571 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 443984 2024-02-29 18:06:53.072 2024-02-29 18:16:54.029 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task https://example.com/ 21104 443719 443683.443719.443984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6655238254306 0 \N \N f 0 \N 0 89232177 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 444487 2024-03-01 01:35:51.266 2024-03-01 01:45:53.565 \N N https://example.com/ 18017 444173 444173.444487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.2163833314813 0 \N \N f 0 \N 0 79511864 0 f f \N \N \N \N 444173 \N 0 0 \N \N f \N 431512 2024-02-19 19:07:12.151 2024-02-19 19:17:13.584 \N Behavior safe concern street c https://example.com/ 18904 346171 346171.431512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3062070843315 0 \N \N f 0 \N 0 184360285 0 f f \N \N \N \N 346171 \N 0 0 \N \N f \N 444635 2024-03-01 06:59:55.717 2024-03-01 07:09:56.887 \N Play dire https://example.com/ 19199 443295 443295.444635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.01845455825936 0 \N \N f 0 \N 0 144503079 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444449 2024-03-01 00:22:54.935 2024-03-01 00:32:56.793 Toward position themselves news un Beyond song throw blood hard. Sh https://example.com/ 6765 \N 444449 \N \N \N \N \N \N \N \N health \N ACTIVE \N 1.87643135952776 0 \N \N f 0 \N 2 227817311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437789 2024-02-25 00:23:49.745 2024-02-25 00:33:51.601 \N Size matter rather result other get air. Rich run direction usu https://example.com/ 10484 437784 437714.437716.437779.437784.437789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5707729455623 0 \N \N f 0 \N 4 148139518 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 444510 2024-03-01 02:50:50.841 2024-03-01 03:00:53.317 \N Plan theory effect center maintain man. Now field https://example.com/ 15213 444467 444467.444510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2970247848913 0 \N \N f 0 \N 0 116686790 0 f f \N \N \N \N 444467 \N 0 0 \N \N f \N 438077 2024-02-25 10:33:02.456 2024-02-25 10:43:03.738 \N Measure enjoy other scientist simple professor better. Check too design all refl https://example.com/ 19795 438073 438065.438073.438077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7510487121034 0 \N \N f 0 \N 1 80616188 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 438098 2024-02-25 11:06:34.03 2024-02-25 11:16:34.963 \N Apply president organization https://example.com/ 19906 437955 437955.438098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1807470548998 0 \N \N f 0 \N 0 13165167 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N 443934 2024-02-29 17:41:31.129 2024-02-29 17:51:33.037 \N Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature par https://example.com/ 9611 443836 443836.443934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9502546549927 0 \N \N f 0 \N 3 244366071 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444332 2024-02-29 21:59:38.135 2024-02-29 22:09:40.006 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property writ https://example.com/ 698 444289 444114.444132.444143.444150.444207.444213.444277.444289.444332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55334684255436 0 \N \N f 0 \N 3 81529649 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444289 2024-02-29 21:03:19.792 2024-02-29 21:13:21.273 \N Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nHappen include car man crime. Lo https://example.com/ 9246 444277 444114.444132.444143.444150.444207.444213.444277.444289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0998319557151 0 \N \N f 0 \N 4 35019623 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 431803 2024-02-19 19:59:47.956 2024-02-19 20:09:50.19 \N Provid https://example.com/ 13177 431597 431597.431803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1560899411477 0 \N \N f 0 \N 0 70422062 0 f f \N \N \N \N 431597 \N 0 0 \N \N f \N 437962 2024-02-25 05:54:35.747 2024-02-25 06:04:38.137 \N There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nSuccess against pri https://example.com/ 1090 437775 437775.437962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1794214840221 0 \N \N f 0 \N 0 93856733 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 440810 2024-02-27 17:00:15.736 2024-02-27 17:10:16.846 \N Too very admit general whole east. General activ https://example.com/ 21131 440779 440520.440779.440810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6614715988773 0 \N \N f 0 \N 0 29302868 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441013 2024-02-27 20:00:50.029 2024-02-27 20:10:51.42 \N Take discuss nature then https://example.com/ 2293 441003 440988.441003.441013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.986804173011 0 \N \N f 0 \N 0 186399675 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 430902 2024-02-19 16:04:01.917 2024-02-19 16:14:02.919 \N Leave example gro https://example.com/ 18601 430898 430892.430895.430898.430902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9716095904081 0 \N \N f 0 \N 2 174805719 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 444591 2024-03-01 05:40:46.098 2024-03-01 05:50:47.396 \N History prepare everyone role everybod https://example.com/ 17011 443799 443799.444591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39541806070402 0 \N \N f 0 \N 0 14153717 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444277 2024-02-29 20:58:35.786 2024-02-29 21:08:37.344 \N Class population stage though page happen expect. Even https://example.com/ 617 444213 444114.444132.444143.444150.444207.444213.444277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8574844457215 0 \N \N f 0 \N 5 18237178 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444474 2024-03-01 01:15:53.093 2024-03-01 01:25:54.963 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. Thes https://example.com/ 18291 444397 443399.444397.444474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83887724316972 0 \N \N f 0 \N 0 22352602 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 97032 2022-11-21 19:32:48.462 2022-11-21 19:32:48.462 Have decide business throw \N https://example.com/ 13544 \N 97032 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.647437097807 0 \N \N f 0 \N 3 45869131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438246 2024-02-25 13:42:37.622 2024-02-25 13:52:40.288 \N New parti https://example.com/ 20087 438241 438241.438246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3156208588216 0 \N \N f 0 \N 0 44893404 0 f f \N \N \N \N 438241 \N 0 0 \N \N f \N 444367 2024-02-29 22:27:55.908 2024-02-29 22:37:57.584 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and ide https://example.com/ 18208 444102 444102.444367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.51236066719667 0 \N \N f 0 \N 0 243451251 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 51769 2022-07-30 18:38:56.547 2023-10-02 04:59:46.48 Full both sound century close card. Anyone occur Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nDirection figure between get especially certain. Behind himself several di https://example.com/ 946 \N 51769 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.36327825302446 0 \N \N f 0 \N 2 159561688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431408 2024-02-19 18:58:08.958 2024-02-19 19:08:10.153 \N Enter land brother. Treat prove though. College everyth https://example.com/ 21578 431389 431294.431389.431408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3577588753608 0 \N \N f 0 \N 0 113964043 0 f f \N \N \N \N 431294 \N 0 0 \N \N f \N 444207 2024-02-29 20:23:42.608 2024-02-29 20:33:43.656 \N Ten instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. https://example.com/ 1478 444150 444114.444132.444143.444150.444207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.82833372065 0 \N \N f 0 \N 7 36677055 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444132 2024-02-29 19:38:10.586 2024-02-29 19:48:12.84 \N Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. https://example.com/ 2703 444114 444114.444132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74136603718644 0 \N \N f 0 \N 11 58192385 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 431667 2024-02-19 19:35:36.093 2024-02-19 19:45:37.996 \N Fish health while enjoy. Step https://example.com/ 4574 314902 314902.431667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5313847765727 0 \N \N f 0 \N 0 160318577 0 f f \N \N \N \N 314902 \N 0 0 \N \N f \N 444150 2024-02-29 19:45:49.144 2024-02-29 19:55:50.251 \N Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me ident https://example.com/ 17321 444143 444114.444132.444143.444150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8399240716293 0 \N \N f 0 \N 8 155896965 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444213 2024-02-29 20:26:02.858 2024-02-29 20:36:05.577 \N Wish low party shake. National offer my specific happen well. Federal word https://example.com/ 14169 444207 444114.444132.444143.444150.444207.444213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.74022577290586 0 \N \N f 0 \N 6 147569139 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 437953 2024-02-25 04:51:07.001 2024-02-25 05:01:08.158 Board Mr bar white alone hot. Court class former model always idea. Exist I task State wall myself interview will. Watch ahead suffer bed. https://example.com/ 18529 \N 437953 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 20.02109716252 0 \N \N f 0 \N 0 48868461 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437457 2024-02-24 16:46:27.748 2024-02-24 16:56:29.821 Table fish west wish point Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. https://example.com/ 19813 \N 437457 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 29.0057577125585 0 \N \N f 0 \N 4 182873166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431143 2024-02-19 17:55:19.238 2024-02-19 18:05:20.826 \N Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly https://example.com/ 11678 431088 430770.431088.431143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71178274614159 0 \N \N f 0 \N 1 39489169 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 431160 2024-02-19 18:01:32.566 2024-02-19 18:11:34.059 \N Push hair https://example.com/ 14295 431150 431150.431160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6179048786252 0 \N \N f 0 \N 1 19830883 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 431295 2024-02-19 18:26:46.019 2024-02-19 18:36:47.422 \N Break site describe address compu https://example.com/ 13921 431150 431150.431295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3753932033135 0 \N \N f 0 \N 0 13707757 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 436120 2024-02-23 12:47:22.54 2024-02-23 12:57:23.904 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nCommunity us end alone. Admit remember red st https://example.com/ 14669 436117 436028.436100.436109.436114.436117.436120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.897905027851955 0 \N \N f 0 \N 1 32318815 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 444506 2024-03-01 02:32:16.104 2024-03-01 02:42:18.004 Detail economy still boy fine i Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nFinish only air provi https://example.com/ 3642 \N 444506 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 26.1922887775696 0 \N \N f 0 \N 2 189464783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 78128 2022-10-06 14:40:28.865 2022-10-06 14:40:28.865 Her particular kind sound hard big. Area door model need phone. Cr \N https://example.com/ 664 \N 78128 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.012976683836 0 \N \N f 0 \N 1 142392780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441085 2024-02-27 20:55:25.788 2024-02-27 21:05:26.806 \N Outside mother mo https://example.com/ 9655 441066 440764.441066.441085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6659688432396 0 \N \N f 0 \N 1 133355029 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 431659 2024-02-19 19:35:20.132 2024-02-19 19:45:21.893 \N Newspaper wall begin over seri https://example.com/ 17944 315241 315241.431659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20389938082237 0 \N \N f 0 \N 0 193098935 0 f f \N \N \N \N 315241 \N 0 0 \N \N f \N 438115 2024-02-25 11:25:49.903 2024-02-25 11:35:50.871 \N Beyond new strong important. Final sport thus physical sit https://example.com/ 9992 438017 437996.438017.438115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4282202080186 0 \N \N f 0 \N 3 45898780 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 430972 2024-02-19 16:54:38.751 2024-02-19 17:04:40.957 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond co https://example.com/ 20137 430906 430619.430794.430906.430972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8482675842791 0 \N \N f 0 \N 1 70864458 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 430906 2024-02-19 16:09:19.669 2024-02-19 16:19:21.163 \N Knowledge ever his fly. Situation help treat total surface. Expe https://example.com/ 20730 430794 430619.430794.430906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.68213266734935 0 \N \N f 0 \N 2 32173233 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 438117 2024-02-25 11:25:52.676 2024-02-25 11:35:55.877 \N Seven https://example.com/ 21042 437173 437072.437173.438117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60684317304719 0 \N \N f 0 \N 0 208935539 0 f f \N \N \N \N 437072 \N 0 0 \N \N f \N 437975 2024-02-25 06:41:19.89 2024-02-25 06:51:21.066 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war https://example.com/ 3686 437855 437731.437855.437975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.753616541398 0 \N \N f 0 \N 0 38435981 0 f f \N \N \N \N 437731 \N 0 0 \N \N f \N 444621 2024-03-01 06:35:27.579 2024-03-01 06:45:29.021 \N Somebody cold factor themselves for mouth adult. Country receive anyo https://example.com/ 9177 444617 443799.444584.444617.444621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0288872723243 0 \N \N f 0 \N 0 242344777 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 431164 2024-02-19 18:03:14.276 2024-02-19 18:13:15.276 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nOccur office book. Expect return including gun training https://example.com/ 13327 430488 430488.431164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90504101380075 0 \N \N f 0 \N 0 99419229 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 442485 2024-02-28 17:42:50.07 2024-02-28 17:52:51.819 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nPolicy trade before drop particular upon science. Together cell health relate. https://example.com/ 6430 442170 442170.442485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.970389683971 0 \N \N f 0 \N 2 128136635 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 430914 2024-02-19 16:18:29.286 2024-02-19 16:28:30.147 \N Side institution practice you. Response herself television. Decide policy https://example.com/ 20424 430824 430824.430914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.582800642144 0 \N \N f 0 \N 0 11880234 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 441764 2024-02-28 11:36:48.538 2024-02-28 11:46:51.168 \N Money rise give serve will expect factor. Claim outside serious a https://example.com/ 19812 441560 441560.441764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3689480859885 0 \N \N f 0 \N 0 88008904 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 430936 2024-02-19 16:30:39.815 2024-02-19 16:40:41.38 \N Republican total impact of. North office part. Whom store usually alr https://example.com/ 964 430865 430330.430865.430936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8948056873953 0 \N \N f 0 \N 0 167147940 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 444460 2024-03-01 00:46:45.753 2024-03-01 00:56:46.985 \N Front color e https://example.com/ 19132 444365 444365.444460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86365254458043 0 \N \N f 0 \N 0 218899855 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444438 2024-03-01 00:08:50.129 2024-03-01 00:18:52.108 \N A https://example.com/ 18472 443336 443295.443336.444438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1372794148608 0 \N \N f 0 \N 0 4144980 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 431257 2024-02-19 18:20:49.321 2024-02-19 18:30:50.646 \N Tree house interest fly bit br https://example.com/ 20185 392336 392336.431257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3825687136367 0 \N \N f 0 \N 0 16668645 0 f f \N \N \N \N 392336 \N 0 0 \N \N f \N 431176 2024-02-19 18:13:44.235 2024-02-19 18:23:45.371 \N Game own manager. Everybody ol https://example.com/ 670 410197 410197.431176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5663459802414 0 \N \N f 0 \N 0 21385723 0 f f \N \N \N \N 410197 \N 0 0 \N \N f \N 431199 2024-02-19 18:15:08.03 2024-02-19 18:25:09.585 \N Environment very hospital poin https://example.com/ 18076 403864 403864.431199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27716345554992 0 \N \N f 0 \N 0 41623942 0 f f \N \N \N \N 403864 \N 0 0 \N \N f \N 431202 2024-02-19 18:15:16.338 2024-02-19 18:25:17.622 \N Though deal provide ball state https://example.com/ 9351 403388 403388.431202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74956353178278 0 \N \N f 0 \N 0 221583814 0 f f \N \N \N \N 403388 \N 0 0 \N \N f \N 431278 2024-02-19 18:22:59.433 2024-02-19 18:33:01.738 \N More recently quality despite https://example.com/ 14515 383296 383296.431278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9000925096094 0 \N \N f 0 \N 0 126767349 0 f f \N \N \N \N 383296 \N 0 0 \N \N f \N 431832 2024-02-19 20:25:43.564 2024-02-19 20:35:45.342 \N Though eye claim side government. Form program analysis some https://example.com/ 7986 431597 431597.431832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.64216600402186 0 \N \N f 0 \N 0 76458576 0 f f \N \N \N \N 431597 \N 0 0 \N \N f \N 433380 2024-02-21 05:36:05.864 2024-02-21 05:46:06.798 \N Parent c https://example.com/ 1985 433331 433331.433380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1880217645414 0 \N \N f 0 \N 1 26805379 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 3793 2021-10-22 08:44:37.135 2023-10-01 23:53:30.652 Key third PM paintin Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea https://example.com/ 20198 \N 3793 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.925597271758676 0 \N \N f 0 \N 1 110269563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437511 2024-02-24 17:24:05.993 2024-02-24 17:34:07.619 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whateve https://example.com/ 1773 437463 437463.437511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9530007255383 0 \N \N f 0 \N 0 118998065 0 f f \N \N \N \N 437463 \N 0 0 \N \N f \N 437960 2024-02-25 05:41:04.915 2024-02-25 05:51:06.788 \N Understand Mr score until. D https://example.com/ 16270 437948 437502.437948.437960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.98559234093513 0 \N \N f 0 \N 0 8419593 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 437952 2024-02-25 04:49:53.426 2024-02-25 04:59:54.958 \N Experience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform https://example.com/ 9362 437775 437775.437952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53212095868233 0 \N \N f 0 \N 0 53308226 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 3795 2021-10-22 09:00:30.614 2023-10-01 23:53:30.66 Over partner w Anyone himself set window https://example.com/ 8945 \N 3795 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.181004971058 0 \N \N f 0 \N 1 72728474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431279 2024-02-19 18:23:04.803 2024-02-19 18:33:05.804 \N Type door clear left. Test inv https://example.com/ 7418 383063 383063.431279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1539994965849 0 \N \N f 0 \N 0 55452598 0 f f \N \N \N \N 383063 \N 0 0 \N \N f \N 52199 2022-07-31 14:25:00.408 2023-10-02 05:00:21.926 Benefit car actually Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply th https://example.com/ 1738 \N 52199 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8683195327356 0 \N \N f 0 \N 10 143194353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431206 2024-02-19 18:15:25.862 2024-02-19 18:25:27.746 \N Purpose teacher manager once t https://example.com/ 11423 402075 402075.431206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1896741929467 0 \N \N f 0 \N 0 114054650 0 f f \N \N \N \N 402075 \N 0 0 \N \N f \N 431207 2024-02-19 18:15:27.811 2024-02-19 18:25:29.764 \N Social impact learn single ele https://example.com/ 21262 402056 402056.431207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79971217212999 0 \N \N f 0 \N 0 212609563 0 f f \N \N \N \N 402056 \N 0 0 \N \N f \N 431208 2024-02-19 18:15:47.912 2024-02-19 18:25:49.559 \N Any tend power space fund insi https://example.com/ 21480 401915 401915.431208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16418997875154 0 \N \N f 0 \N 0 36285657 0 f f \N \N \N \N 401915 \N 0 0 \N \N f \N 444417 2024-02-29 23:39:41.3 2024-02-29 23:49:42.967 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nRecent work wife light adult https://example.com/ 18774 444408 444408.444417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1339472880077 0 \N \N f 0 \N 1 217144497 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N 443172 2024-02-29 08:00:06.113 2024-02-29 08:00:11.649 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put https://example.com/ 12819 443171 443171.443172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7087602611978 0 \N \N f 0 \N 0 85752010 0 f f \N \N \N \N 443171 \N 0 0 \N \N f \N 437948 2024-02-25 04:36:44.068 2024-02-25 04:46:45.619 \N Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occ https://example.com/ 12516 437502 437502.437948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0391806297164 0 \N \N f 0 \N 1 139216636 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 438086 2024-02-25 10:50:58.879 2024-02-25 11:01:00.793 \N Job stage use material manage. P https://example.com/ 15719 437034 437034.438086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85103515835909 0 \N \N f 0 \N 1 83444225 0 f f \N \N \N \N 437034 \N 0 0 \N \N f \N 444396 2024-02-29 23:06:12.693 2024-02-29 23:16:13.621 \N Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third c https://example.com/ 19263 444314 442820.444314.444396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7309593390707 0 \N \N f 0 \N 0 165841720 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 434640 2024-02-22 07:22:29.597 2024-02-22 07:32:31.652 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point e https://example.com/ 21527 434440 434440.434640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8448660246519 0 \N \N f 0 \N 0 161137338 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 431283 2024-02-19 18:23:14.942 2024-02-19 18:33:15.954 \N Raise land https://example.com/ 7583 431160 431150.431160.431283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1655701901884 0 \N \N f 0 \N 0 117669919 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 444419 2024-02-29 23:46:01.015 2024-02-29 23:56:01.831 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed https://example.com/ 14260 444290 443712.444290.444419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4929515637402 0 \N \N f 0 \N 2 162029034 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 434219 2024-02-21 19:21:53.63 2024-02-21 19:31:55.117 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Forme https://example.com/ 6688 434124 434124.434219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.82267593239862 0 \N \N f 0 \N 0 243829344 0 f f \N \N \N \N 434124 \N 0 0 \N \N f \N 444485 2024-03-01 01:32:02.716 2024-03-01 01:42:03.748 \N Provide enjoy appear these. What care if de https://example.com/ 9275 444472 444365.444472.444485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26509472905916 0 \N \N f 0 \N 0 242748353 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444488 2024-03-01 01:35:54.94 2024-03-01 01:45:55.723 \N From democratic trial American blue. Save carry son else. While s https://example.com/ 19346 444168 444168.444488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.45720845484238 0 \N \N f 0 \N 0 49088764 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431950 2024-02-19 22:17:00.194 2024-02-19 22:27:01.606 \N Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chan https://example.com/ 19613 431949 431949.431950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6646755755159 0 \N \N f 0 \N 0 55082772 0 f f \N \N \N \N 431949 \N 0 0 \N \N f \N 444480 2024-03-01 01:24:46.217 2024-03-01 01:34:47.487 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single https://example.com/ 2098 444158 443372.444158.444480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.720426946196 0 \N \N f 0 \N 0 171254786 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 431967 2024-02-19 22:39:29.233 2024-02-19 22:49:30.584 \N Fall health drug child. https://example.com/ 1628 430795 430795.431967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6169792834773 0 \N \N f 0 \N 0 22164854 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 437542 2024-02-24 17:48:01.524 2024-02-24 17:58:02.299 \N Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto cou https://example.com/ 18310 437300 437044.437300.437542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.24397986106398 0 \N \N f 0 \N 0 11761396 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 68506 2022-09-11 11:38:57.315 2023-10-02 05:50:36.59 Point box near. Affect glass next behavi \N https://example.com/ 16848 \N 68506 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.5535101881847 0 \N \N f 0 \N 3 76318537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437655 2024-02-24 20:20:01.642 2024-02-24 20:30:02.539 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second m https://example.com/ 16154 437586 437044.437560.437579.437586.437655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54476938274329 0 \N \N f 0 \N 1 131628796 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 444455 2024-03-01 00:40:39.243 2024-03-01 00:50:40.384 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by https://example.com/ 20163 444453 443712.443834.444412.444416.444436.444444.444453.444455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33345071329459 0 \N \N f 0 \N 0 123151416 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 445008 2024-03-01 14:00:04.786 2024-03-01 14:10:05.938 Need movie coach nation news in about responsibility. Hospital pro \N https://example.com/ 7654 \N 445008 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 21.876332678496 0 \N \N f 0 \N 1 121703287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431165 2024-02-19 18:03:36.598 2024-02-19 18:13:37.733 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nRed production his nothing financial. Media especially bed f https://example.com/ 13217 431139 431139.431165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2847885918798 0 \N \N f 0 \N 1 82565408 0 f f \N \N \N \N 431139 \N 0 0 \N \N f \N 441729 2024-02-28 11:15:12.943 2024-02-28 11:25:14.484 Tend yes call look. Real feel scientist set factor establish agree. Si Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could https://example.com/ 713 \N 441729 \N \N \N \N \N \N \N \N science \N ACTIVE \N 5.85726469763941 0 \N \N f 0 \N 0 228447802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431334 2024-02-19 18:34:05.781 2024-02-19 18:44:07.172 \N Nature couple north bit ins https://example.com/ 20495 430795 430795.431334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.68827189044227 0 \N \N f 0 \N 0 160614065 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 443258 2024-02-29 10:08:37.671 2024-02-29 10:18:39.756 \N Own machine table garden necess https://example.com/ 19924 442215 442191.442215.443258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1696792588756 0 \N \N f 0 \N 0 60463219 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 431590 2024-02-19 19:19:22.015 2024-02-19 19:29:23.691 \N Skin summer https://example.com/ 5794 431161 431161.431590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5063903458905 0 \N \N f 0 \N 1 51037501 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 431327 2024-02-19 18:33:34.881 2024-02-19 18:43:35.875 \N Floor among test material. Mee https://example.com/ 17693 390206 390206.431327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89058425391708 0 \N \N f 0 \N 0 45935081 0 f f \N \N \N \N 390206 \N 0 0 \N \N f \N 431286 2024-02-19 18:23:19.444 2024-02-19 18:33:21.019 \N Mr right bring various. Whose https://example.com/ 17091 382518 382518.431286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2529372218904 0 \N \N f 0 \N 0 233338052 0 f f \N \N \N \N 382518 \N 0 0 \N \N f \N 430982 2024-02-19 17:01:28.254 2024-02-19 17:11:29.539 \N Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fl https://example.com/ 14385 430943 430700.430943.430982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38628164295586 0 \N \N f 0 \N 0 241940445 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 437516 2024-02-24 17:28:36.92 2024-02-24 17:38:38.541 \N Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nSimply even growth change government music. Ser https://example.com/ 16042 437269 437269.437516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51322215471372 0 \N \N f 0 \N 3 234852046 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 431287 2024-02-19 18:23:22.749 2024-02-19 18:33:24.043 \N Poor often speak everyone coll https://example.com/ 7553 381788 381788.431287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8724701017069 0 \N \N f 0 \N 0 191617024 0 f f \N \N \N \N 381788 \N 0 0 \N \N f \N 431329 2024-02-19 18:33:40.92 2024-02-19 18:43:41.909 \N Off behind four class talk. No https://example.com/ 17221 391077 391077.431329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1430483833192 0 \N \N f 0 \N 0 198970479 0 f f \N \N \N \N 391077 \N 0 0 \N \N f \N 431344 2024-02-19 18:35:14.408 2024-02-19 18:45:15.305 \N White have loss parent whole s https://example.com/ 1298 373506 373506.431344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7805565820596 0 \N \N f 0 \N 0 161779676 0 f f \N \N \N \N 373506 \N 0 0 \N \N f \N 431370 2024-02-19 18:36:32.01 2024-02-19 18:46:33.574 \N Such yourself girl realize cer https://example.com/ 7425 376743 376743.431370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7167276005221 0 \N \N f 0 \N 0 173560061 0 f f \N \N \N \N 376743 \N 0 0 \N \N f \N 430928 2024-02-19 16:26:25.407 2024-02-19 16:36:26.383 \N Drive south traditional new what unit mother. Drug professional simply. Son none daugh https://example.com/ 21042 430291 430279.430289.430291.430928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.45556171160469 0 \N \N f 0 \N 3 44803654 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 2194 2021-09-16 14:05:35.051 2023-10-01 23:51:13.547 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowle https://example.com/ 19096 2193 2186.2188.2193.2194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7734283183708 0 \N \N f 0 \N 0 78386336 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N 436752 2024-02-23 23:53:51.373 2024-02-24 00:04:08.032 Leave example grow lead something stil Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choi https://example.com/ 12097 \N 436752 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 13.5771136875333 0 \N \N f 0 \N 60 11144368 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444578 2024-03-01 05:22:41.752 2024-03-01 05:32:43.075 \N Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from s https://example.com/ 1130 444481 443372.443708.444481.444578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.99382837216303 0 \N \N f 0 \N 0 108994300 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 431367 2024-02-19 18:36:22.229 2024-02-19 18:46:23.951 \N Pull fact question for unit up https://example.com/ 18615 375687 375687.431367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3884932180562 0 \N \N f 0 \N 0 105782222 0 f f \N \N \N \N 375687 \N 0 0 \N \N f \N 431375 2024-02-19 18:36:46.047 2024-02-19 18:46:47.715 \N Determine magazine police agen https://example.com/ 913 377335 377335.431375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.64507963847 0 \N \N f 0 \N 0 248612186 0 f f \N \N \N \N 377335 \N 0 0 \N \N f \N 444589 2024-03-01 05:38:21.096 2024-03-01 05:48:23.141 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nThousand billion get leg now sort even https://example.com/ 919 444541 444541.444589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49459060640477 0 \N \N f 0 \N 0 81225438 0 f f \N \N \N \N 444541 \N 0 0 \N \N f \N 431083 2024-02-19 17:32:40.733 2024-02-19 17:42:42.083 \N Source scientist hair https://example.com/ 16556 431040 421367.431040.431083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15428295424064 0 \N \N f 0 \N 0 1739197 0 f f \N \N \N \N 421367 \N 0 0 \N \N f \N 431005 2024-02-19 17:21:05.639 2024-02-19 17:31:06.623 \N Beyond dif https://example.com/ 9438 421567 421567.431005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0125317131726 0 \N \N f 0 \N 0 71345157 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 431035 2024-02-19 17:23:11.249 2024-02-19 17:33:12.896 \N Sam https://example.com/ 5500 430972 430619.430794.430906.430972.431035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5216205277844 0 \N \N f 0 \N 0 43493202 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 431038 2024-02-19 17:23:25.567 2024-02-19 17:33:26.944 \N Pick fight simple up whose nat https://example.com/ 20185 421641 421641.431038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6233891542446 0 \N \N f 0 \N 0 234810611 0 f f \N \N \N \N 421641 \N 0 0 \N \N f \N 431039 2024-02-19 17:23:31.167 2024-02-19 17:33:32.68 \N White seven property least fat https://example.com/ 9845 421499 421499.431039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08217676418686 0 \N \N f 0 \N 0 84847395 0 f f \N \N \N \N 421499 \N 0 0 \N \N f \N 2646 2021-09-28 23:44:27.356 2023-10-01 23:52:17.888 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With success https://example.com/ 9333 2612 2612.2646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.13200745530027 0 \N \N f 0 \N 0 81032826 0 f f \N \N \N \N 2612 \N 0 0 \N \N f \N 431041 2024-02-19 17:23:36.591 2024-02-19 17:33:37.741 \N Physical woman wait smile him. https://example.com/ 20120 420698 420698.431041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1626059485149 0 \N \N f 0 \N 0 242796078 0 f f \N \N \N \N 420698 \N 0 0 \N \N f \N 431042 2024-02-19 17:23:39.048 2024-02-19 17:33:40.769 \N Occur chair truth these office https://example.com/ 1175 420483 420483.431042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.96505254941442 0 \N \N f 0 \N 0 44504820 0 f f \N \N \N \N 420483 \N 0 0 \N \N f \N 444983 2024-03-01 13:40:18.014 2024-03-01 13:50:19.581 \N Every https://example.com/ 20073 444964 444948.444964.444983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.96115608894318 0 \N \N f 0 \N 0 216182479 0 f f \N \N \N \N 444948 \N 0 0 \N \N f \N 431043 2024-02-19 17:23:41.637 2024-02-19 17:33:43 \N Get executive stock move last. https://example.com/ 6526 420404 420404.431043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.76486181436325 0 \N \N f 0 \N 0 99597079 0 f f \N \N \N \N 420404 \N 0 0 \N \N f \N 431045 2024-02-19 17:24:22.679 2024-02-19 17:34:24.372 \N Stock short may one soldier ta https://example.com/ 18470 420059 420059.431045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3358685995074 0 \N \N f 0 \N 0 52626540 0 f f \N \N \N \N 420059 \N 0 0 \N \N f \N 431046 2024-02-19 17:24:26.038 2024-02-19 17:34:27.393 \N Their election city process. A https://example.com/ 21389 419641 419641.431046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7669247026999 0 \N \N f 0 \N 0 134598725 0 f f \N \N \N \N 419641 \N 0 0 \N \N f \N 431056 2024-02-19 17:24:57.965 2024-02-19 17:34:58.831 \N Peace then kid under. Exactly https://example.com/ 20157 417756 417756.431056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.768485484363 0 \N \N f 0 \N 0 48518295 0 f f \N \N \N \N 417756 \N 0 0 \N \N f \N 431836 2024-02-19 20:28:47.719 2024-02-19 20:38:49.254 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play par https://example.com/ 776 431829 431816.431826.431828.431829.431836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3754232775652 0 \N \N f 0 \N 2 58421599 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 431047 2024-02-19 17:24:31.74 2024-02-19 17:34:32.717 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow act https://example.com/ 9427 427912 427912.431047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8779400973958 0 \N \N f 0 \N 0 197648383 0 f f \N \N \N \N 427912 \N 0 0 \N \N f \N 431048 2024-02-19 17:24:33.799 2024-02-19 17:34:34.718 \N Tax here if project. Thing how https://example.com/ 9184 419062 419062.431048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1329913311257 0 \N \N f 0 \N 0 76063347 0 f f \N \N \N \N 419062 \N 0 0 \N \N f \N 438472 2024-02-25 17:30:49.462 2024-02-25 17:40:51.349 \N Why long up fly diffi https://example.com/ 4102 438468 436151.436247.438468.438472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.445796130221 0 \N \N f 0 \N 0 117434746 0 f f \N \N \N \N 436151 \N 0 0 \N \N f \N 444113 2024-02-29 19:24:55.186 2024-02-29 19:34:56.649 \N Garden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Lett https://example.com/ 16532 441816 441816.444113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9611313074286 0 \N \N f 0 \N 1 245276143 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 2740 2021-09-30 18:53:04.111 2023-10-01 23:52:18.915 \N Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newsp https://example.com/ 1195 2739 2734.2739.2740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94078058895887 0 \N \N f 0 \N 0 79803945 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N 431050 2024-02-19 17:24:43.637 2024-02-19 17:34:44.729 \N Stage can fish building senior https://example.com/ 2735 418438 418438.431050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70405706343431 0 \N \N f 0 \N 0 71509898 0 f f \N \N \N \N 418438 \N 0 0 \N \N f \N 431052 2024-02-19 17:24:49.226 2024-02-19 17:34:50.759 \N Region side point win through. https://example.com/ 18772 418364 418364.431052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2072251194025 0 \N \N f 0 \N 0 116021398 0 f f \N \N \N \N 418364 \N 0 0 \N \N f \N 431054 2024-02-19 17:24:53.295 2024-02-19 17:34:54.79 \N Site coach strong dark while n https://example.com/ 19622 417971 417971.431054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7330947329979 0 \N \N f 0 \N 0 229997498 0 f f \N \N \N \N 417971 \N 0 0 \N \N f \N 431060 2024-02-19 17:25:07.297 2024-02-19 17:35:09.277 \N Seek military only heart. Side https://example.com/ 12160 417399 417399.431060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4990144072533 0 \N \N f 0 \N 0 84090070 0 f f \N \N \N \N 417399 \N 0 0 \N \N f \N 431061 2024-02-19 17:25:09.466 2024-02-19 17:35:10.796 \N Range happen field economic. D https://example.com/ 20080 417376 417376.431061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73362065178753 0 \N \N f 0 \N 0 227912897 0 f f \N \N \N \N 417376 \N 0 0 \N \N f \N 445005 2024-03-01 13:59:34.943 2024-03-01 14:09:36.117 \N Window here second. https://example.com/ 17682 445003 445003.445005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58211183584922 0 \N \N f 0 \N 3 190721015 0 f f \N \N \N \N 445003 \N 0 0 \N \N f \N 441502 2024-02-28 06:15:48.459 2024-02-28 06:25:49.87 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notic https://example.com/ 20099 441496 441238.441496.441502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9290958185271 0 \N \N f 0 \N 2 148723467 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 431064 2024-02-19 17:25:45.676 2024-02-19 17:35:46.889 \N Last expert dark compare nearl https://example.com/ 20901 417331 417331.431064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9976967051793 0 \N \N f 0 \N 0 70019159 0 f f \N \N \N \N 417331 \N 0 0 \N \N f \N 431065 2024-02-19 17:25:47.649 2024-02-19 17:35:48.892 \N Republican part letter tonight https://example.com/ 5708 417306 417306.431065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6688434548348 0 \N \N f 0 \N 0 51458856 0 f f \N \N \N \N 417306 \N 0 0 \N \N f \N 431960 2024-02-19 22:30:48.103 2024-02-19 22:40:49.099 \N Play direc https://example.com/ 5828 431387 431387.431960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4166858267676 0 \N \N f 0 \N 1 187667874 0 f f \N \N \N \N 431387 \N 0 0 \N \N f \N 444966 2024-03-01 13:24:10.253 2024-03-01 13:34:11.503 \N Real goal https://example.com/ 11609 444926 444770.444926.444966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8728042586312 0 \N \N f 0 \N 0 72791552 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 2743 2021-09-30 20:08:19.77 2023-10-01 23:52:18.929 \N Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information https://example.com/ 11967 2742 2734.2742.2743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4086182901134 0 \N \N f 0 \N 0 174490071 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N 2770 2021-09-30 23:14:11.358 2023-10-01 23:52:21.191 \N There everybody fish can. Exactly office event charge reduce. B https://example.com/ 19570 2751 2751.2770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.14200139155979 0 \N \N f 0 \N 1 10504350 0 f f \N \N \N \N 2751 \N 0 0 \N \N f \N 444569 2024-03-01 04:59:44.076 2024-03-01 05:09:45.268 \N Mor https://example.com/ 19142 443577 443577.444569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5746985650438 0 \N \N f 0 \N 1 198468367 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 438012 2024-02-25 08:20:20.878 2024-02-25 08:30:21.903 \N Onto although Democrat mind significant trade hair. Product foreign politics https://example.com/ 13903 437891 437891.438012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08347399635051 0 \N \N f 0 \N 0 129551593 0 f f \N \N \N \N 437891 \N 0 0 \N \N f \N 445059 2024-03-01 14:25:55.044 2024-03-01 14:35:58.109 \N Large d https://example.com/ 18076 445039 444739.444884.444889.444901.445039.445059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1699715246499 0 \N \N f 0 \N 0 88936608 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444748 2024-03-01 10:43:09.291 2024-03-01 10:53:10.908 \N Under big evening others. Trip remain money region report bill guess. Skin wide win c https://example.com/ 9026 443571 443272.443571.444748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0157013141353 0 \N \N f 0 \N 0 127439479 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 431629 2024-02-19 19:32:56.021 2024-02-19 19:42:57.689 \N Build toward black meet no you https://example.com/ 647 319717 319717.431629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7654643764365 0 \N \N f 0 \N 0 247765759 0 f f \N \N \N \N 319717 \N 0 0 \N \N f \N 431632 2024-02-19 19:33:03.243 2024-02-19 19:43:04.379 \N Hair gas woman next avoid. Blo https://example.com/ 8926 319375 319375.431632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5232480743897 0 \N \N f 0 \N 0 129091501 0 f f \N \N \N \N 319375 \N 0 0 \N \N f \N 431644 2024-02-19 19:33:31.441 2024-02-19 19:43:33.091 \N Themselves table various administration single save https://example.com/ 16543 430931 430607.430617.430641.430670.430674.430836.430863.430931.431644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2069051107146 0 \N \N f 0 \N 0 196704596 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 438013 2024-02-25 08:22:14.828 2024-02-25 08:32:15.885 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nArea ser https://example.com/ 20987 437977 437723.437854.437861.437977.438013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7990451698041 0 \N \N f 0 \N 0 224602720 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438265 2024-02-25 13:57:08.599 2024-02-25 14:07:10.195 \N Ha https://example.com/ 10591 438253 437583.437617.437628.438071.438208.438253.438265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4998733720076 0 \N \N f 0 \N 0 131982231 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 52365 2022-07-31 21:58:58.959 2023-10-02 05:00:25.263 Strong of create prevent Travel watch north career song last. Together https://example.com/ 8506 \N 52365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8719596182335 0 \N \N f 0 \N 5 193849839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444481 2024-03-01 01:26:39.898 2024-03-01 01:36:41.155 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heav https://example.com/ 21398 443708 443372.443708.444481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3660054459472 0 \N \N f 0 \N 1 205480162 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 444530 2024-03-01 03:29:59.219 2024-03-01 03:40:01.045 \N New here partner campaign rig https://example.com/ 20108 444526 444526.444530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17927303850849 0 \N \N f 0 \N 0 199168649 0 f f \N \N \N \N 444526 \N 0 0 \N \N f \N 431641 2024-02-19 19:33:27.395 2024-02-19 19:43:29.049 \N Push floor economy probably re https://example.com/ 18745 326495 326495.431641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3521205481999 0 \N \N f 0 \N 0 125507711 0 f f \N \N \N \N 326495 \N 0 0 \N \N f \N 436111 2024-02-23 12:40:46.16 2024-02-23 12:50:47.579 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nDevelop receive back PM. Use arriv https://example.com/ 2293 436110 436110.436111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.66750346284817 0 \N \N f 0 \N 0 91512381 0 f f \N \N \N \N 436110 \N 0 0 \N \N f \N 444526 2024-03-01 03:25:24.356 2024-03-01 03:35:25.533 Increase consumer itself trade ahead ab Real late stop middle firm. Final be need by lawyer whom https://example.com/ 16259 \N 444526 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 14.966613674415 0 \N \N f 0 \N 3 193606234 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445011 2024-03-01 14:02:42.815 2024-03-01 14:12:44.249 \N Because fear practice program husband remain discussion reco https://example.com/ 18526 444998 444998.445011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9925245794544 0 \N \N f 0 \N 0 101689440 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 433491 2024-02-21 09:00:05.121 2024-02-21 09:10:07.487 Focus area mean. Sometime \N https://example.com/ 20059 \N 433491 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.74443699862065 0 \N \N f 0 \N 1 178996177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435944 2024-02-23 08:25:36.676 2024-02-23 08:35:38.267 Class population stage though page happen expect. Even drug president expec Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark https://example.com/ 21391 \N 435944 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.49136978756503 0 \N \N f 0 \N 34 43075332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431089 2024-02-19 17:37:08.226 2024-02-19 17:47:09.644 \N Music energy specific plan financial fede https://example.com/ 19138 430928 430279.430289.430291.430928.431089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5713829622543 0 \N \N f 0 \N 2 200447197 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 444573 2024-03-01 05:17:00.296 2024-03-01 05:27:01.554 \N Think month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east f https://example.com/ 11515 437727 437727.444573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6101481822219 0 \N \N f 0 \N 0 90473693 0 f f \N \N \N \N 437727 \N 0 0 \N \N f \N 436134 2024-02-23 12:58:46.106 2024-02-23 13:08:47.312 \N Foot not wonder myself eat student arrive. Sell ele https://example.com/ 10283 436120 436028.436100.436109.436114.436117.436120.436134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8952637510445 0 \N \N f 0 \N 0 191337572 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 444750 2024-03-01 10:44:34.902 2024-03-01 10:54:36.381 \N Structure require feel statement plan economy. Base trouble stag https://example.com/ 21620 443895 443895.444750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2064209949398 0 \N \N f 0 \N 1 223818201 0 f f \N \N \N \N 443895 \N 0 0 \N \N f \N 435832 2024-02-23 04:43:16.771 2024-02-23 04:53:19.499 \N Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment reali https://example.com/ 11609 435576 435576.435832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3787504843785 0 \N \N f 0 \N 1 167681722 0 f f \N \N \N \N 435576 \N 0 0 \N \N f \N 431095 2024-02-19 17:40:01.675 2024-02-19 17:50:03.523 \N With officer scientist letter https://example.com/ 4388 415776 415776.431095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.9748950673386 0 \N \N f 0 \N 0 209167146 0 f f \N \N \N \N 415776 \N 0 0 \N \N f \N 436116 2024-02-23 12:43:47.911 2024-02-23 12:53:49.366 \N Speech radio kind know. Can travel though PM dee https://example.com/ 6202 435755 435551.435755.436116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2042953793175 0 \N \N f 0 \N 0 201481970 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 431639 2024-02-19 19:33:22.468 2024-02-19 19:43:23.952 \N Environment none many land par https://example.com/ 15978 317545 317545.431639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8419243542704 0 \N \N f 0 \N 0 152590489 0 f f \N \N \N \N 317545 \N 0 0 \N \N f \N 445085 2024-03-01 14:47:39.365 2024-03-01 14:57:41.556 \N Occur chair truth these officer focus black. W https://example.com/ 19826 445079 445079.445085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48382349335571 0 \N \N f 0 \N 5 172928774 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 445066 2024-03-01 14:33:59.303 2024-03-01 14:44:01.262 \N Fly teach beat. Instead section worker money argue activity bar training. Wall re https://example.com/ 16424 445044 444910.445044.445066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0208126447121 0 \N \N f 0 \N 0 122293331 0 f f \N \N \N \N 444910 \N 0 0 \N \N f \N 430968 2024-02-19 16:50:16.619 2024-02-19 17:00:18.232 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide appr https://example.com/ 2519 430321 430321.430968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7838032008713 0 \N \N f 0 \N 0 240065700 0 f f \N \N \N \N 430321 \N 0 0 \N \N f \N 436121 2024-02-23 12:47:37.651 2024-02-23 12:57:39.467 \N Skill government the life rela https://example.com/ 672 435646 435639.435646.436121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4195581224939 0 \N \N f 0 \N 1 60667930 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 441870 2024-02-28 12:59:00.441 2024-02-28 13:09:01.422 \N That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet https://example.com/ 1814 441868 441868.441870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.96615278250673 0 \N \N f 0 \N 0 200412137 0 f f \N \N \N \N 441868 \N 0 0 \N \N f \N 435872 2024-02-23 05:58:35.022 2024-02-23 06:08:35.723 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair goo https://example.com/ 2513 435803 435359.435560.435803.435872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0323038811995 0 \N \N f 0 \N 0 238265321 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435803 2024-02-23 03:34:53.477 2024-02-23 03:44:54.847 \N Condition lose result detail final will. Require not hot f https://example.com/ 16966 435560 435359.435560.435803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32210686118002 0 \N \N f 0 \N 1 88839865 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 35723 2022-06-11 13:32:15.158 2023-10-02 01:29:21.673 \N Leas https://example.com/ 14404 35694 35694.35723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5023727711262 0 \N \N f 0 \N 0 128865904 0 f f \N \N \N \N 35694 \N 0 0 \N \N f \N 431113 2024-02-19 17:42:02.804 2024-02-19 17:52:04.653 \N Director policy industry. Degr https://example.com/ 20066 413011 413011.431113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.52551469679913 0 \N \N f 0 \N 0 106344998 0 f f \N \N \N \N 413011 \N 0 0 \N \N f \N 431114 2024-02-19 17:42:04.871 2024-02-19 17:52:06.866 \N Beyond leg century level herse https://example.com/ 5701 412978 412978.431114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6456193270727 0 \N \N f 0 \N 0 109128872 0 f f \N \N \N \N 412978 \N 0 0 \N \N f \N 431115 2024-02-19 17:42:06.823 2024-02-19 17:52:08.326 \N Bag couple hot buy yourself se https://example.com/ 1094 412890 412890.431115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.30153078285289 0 \N \N f 0 \N 0 238777628 0 f f \N \N \N \N 412890 \N 0 0 \N \N f \N 431117 2024-02-19 17:42:12.116 2024-02-19 17:52:12.934 \N Pattern fear term. Second alwa https://example.com/ 19096 411470 411470.431117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.865464362065 0 \N \N f 0 \N 0 100471821 0 f f \N \N \N \N 411470 \N 0 0 \N \N f \N 441371 2024-02-28 01:51:22.533 2024-02-28 02:01:24.297 \N Call system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detai https://example.com/ 9166 441357 440898.440925.441035.441357.441371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0132925089378 0 \N \N f 0 \N 0 130684853 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 436168 2024-02-23 13:23:02.481 2024-02-23 13:33:03.637 \N Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight sta https://example.com/ 5942 426954 426954.436168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2882091124946 0 \N \N f 0 \N 0 104633715 0 f f \N \N \N \N 426954 \N 0 0 \N \N f \N 441835 2024-02-28 12:33:54.243 2024-02-28 12:43:55.007 \N Sound clearly happen age onto imagine. Bed pattern happy other. Actua https://example.com/ 16942 441833 441695.441823.441827.441833.441835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1334415862266 0 \N \N f 0 \N 0 10288371 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 431677 2024-02-19 19:36:02.315 2024-02-19 19:46:03.851 \N Very maybe current. So source https://example.com/ 5775 310861 310861.431677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2475771730867 0 \N \N f 0 \N 0 178538419 0 f f \N \N \N \N 310861 \N 0 0 \N \N f \N 438035 2024-02-25 09:00:05.249 2024-02-25 09:00:10.835 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish https://example.com/ 13574 438034 438034.438035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7889322953505 0 \N \N f 0 \N 0 152351378 0 f f \N \N \N \N 438034 \N 0 0 \N \N f \N 432195 2024-02-20 07:00:04.71 2024-02-20 07:10:07.189 Company kid protect determin \N https://example.com/ 19910 \N 432195 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.3438452805895 0 \N \N f 0 \N 1 144819024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436193 2024-02-23 13:42:44.138 2024-02-23 13:52:45.953 \N Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Mes https://example.com/ 20045 436167 436144.436164.436167.436193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5584331612668 0 \N \N f 0 \N 1 145084451 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N 438034 2024-02-25 09:00:04.842 2024-02-25 09:10:05.951 Customer reach nice. At himself those always appear how. Court nice h \N https://example.com/ 20120 \N 438034 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.79668759597678 0 \N \N f 0 \N 1 11836190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442212 2024-02-28 15:40:59.502 2024-02-28 15:51:01.016 \N Decision budget hit force have. Budget guy hospital former. Involve c https://example.com/ 10698 441944 441944.442212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.2485212767559 0 \N \N f 0 \N 0 81085279 0 f f \N \N \N \N 441944 \N 0 0 \N \N f \N 438459 2024-02-25 17:23:19.096 2024-02-25 17:33:20.118 \N Inside nor pro https://example.com/ 4633 438325 438325.438459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4473526376032 0 \N \N f 0 \N 3 26507648 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432210 2024-02-20 07:22:51.01 2024-02-20 07:32:53.922 \N Never hotel town trip thus safe eight. Share high rich ground west https://example.com/ 2703 431815 430258.430349.431815.432210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.2010682220172 0 \N \N f 0 \N 0 7714066 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 437364 2024-02-24 15:25:24.386 2024-02-24 15:35:25.249 \N Once could matter progr https://example.com/ 21140 437346 437044.437328.437346.437364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8836575356385 0 \N \N f 0 \N 0 205476682 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437991 2024-02-25 07:07:40.48 2024-02-25 07:17:42.433 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performa https://example.com/ 5703 437775 437775.437991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8236499089218 0 \N \N f 0 \N 0 197567741 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 432238 2024-02-20 08:21:56.223 2024-02-20 08:31:58.336 \N Career six also speak of difference tend. Heavy may green foot tonight you wate https://example.com/ 13921 432226 432211.432226.432238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60042065583031 0 \N \N f 0 \N 0 229527294 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 431069 2024-02-19 17:28:47.872 2024-02-19 17:38:48.917 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week pro https://example.com/ 1785 430258 430258.431069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2532039788113 0 \N \N f 0 \N 0 209416000 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 431071 2024-02-19 17:29:09.139 2024-02-19 17:39:10.949 \N Miss keep probably political forget sit. Simply street put once land history. Political step against enough https://example.com/ 21090 431028 430330.431028.431071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.21374667976171 0 \N \N f 0 \N 0 98077856 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 431073 2024-02-19 17:30:00.934 2024-02-19 17:40:01.952 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper he https://example.com/ 19735 430934 430934.431073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6324487279466 0 \N \N f 0 \N 0 146684173 0 f f \N \N \N \N 430934 \N 0 0 \N \N f \N 444566 2024-03-01 04:58:38.976 2024-03-01 05:08:40.659 Build lear Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store s https://example.com/ 5499 \N 444566 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.59178658599782 0 \N \N f 0 \N 3 27538147 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432266 2024-02-20 09:21:15.892 2024-02-20 09:31:17.082 \N Tend yes call look. Real feel scientist set factor https://example.com/ 770 430488 430488.432266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4625174022013 0 \N \N f 0 \N 0 187050348 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444799 2024-03-01 11:09:52.266 2024-03-01 11:19:53.404 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine https://example.com/ 18154 444788 444770.444775.444780.444787.444788.444799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33792630865479 0 \N \N f 0 \N 0 89641073 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 432123 2024-02-20 02:51:37.04 2024-02-20 03:01:38.174 \N Stock short may one soldier table past. https://example.com/ 21222 432120 432052.432120.432123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3758142099314 0 \N \N f 0 \N 1 58871311 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 444575 2024-03-01 05:19:08.655 2024-03-01 05:29:09.628 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program ca https://example.com/ 4074 444566 444566.444575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1840383834837 0 \N \N f 0 \N 2 63179698 0 f f \N \N \N \N 444566 \N 0 0 \N \N f \N 431118 2024-02-19 17:42:14.229 2024-02-19 17:52:14.952 \N Once could matter program fish https://example.com/ 21402 411140 411140.431118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1132504484614 0 \N \N f 0 \N 0 62585786 0 f f \N \N \N \N 411140 \N 0 0 \N \N f \N 434586 2024-02-22 05:49:04.064 2024-02-22 05:59:05.21 \N Score player recognize car https://example.com/ 17976 434189 434189.434586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3080183752724 0 \N \N f 0 \N 1 168043243 0 f f \N \N \N \N 434189 \N 0 0 \N \N f \N 37384 2022-06-18 23:30:10.177 2023-10-02 01:33:56.089 Real goal cover. Mention leg sport seem. Back certainly n \N https://example.com/ 18199 \N 37384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.1663586088333 0 \N \N f 0 \N 1 54151178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431120 2024-02-19 17:42:19.717 2024-02-19 17:52:21.186 \N Community region she TV since https://example.com/ 696 410759 410759.431120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9546917292188 0 \N \N f 0 \N 0 196717656 0 f f \N \N \N \N 410759 \N 0 0 \N \N f \N 431077 2024-02-19 17:30:54.731 2024-02-19 17:40:55.778 \N Must particular he lose claim appear son stock. Within level deep https://example.com/ 768 430891 430891.431077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0623666213594 0 \N \N f 0 \N 1 26699909 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N 431119 2024-02-19 17:42:16.331 2024-02-19 17:52:17.971 \N Month explain matter south. Th https://example.com/ 5500 410993 410993.431119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.630663168382 0 \N \N f 0 \N 0 122848748 0 f f \N \N \N \N 410993 \N 0 0 \N \N f \N 444576 2024-03-01 05:21:50.277 2024-03-01 05:31:52.309 \N Best choice maintain she e https://example.com/ 3642 444183 443743.444183.444576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4760058773872 0 \N \N f 0 \N 0 18707163 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 432310 2024-02-20 10:06:28.785 2024-02-20 10:16:29.577 \N Far they window call recent. Head light m https://example.com/ 9421 432153 432153.432310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7651785872916 0 \N \N f 0 \N 1 207535238 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 444717 2024-03-01 10:15:30.825 2024-03-01 10:25:32.79 Girl someone prepare. Realize howev Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forw https://example.com/ 14939 \N 444717 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.8767652658347 0 \N \N f 0 \N 0 114875631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431145 2024-02-19 17:56:20.741 2024-02-19 18:06:22.268 \N Entire money chair between various plant. Cut year i https://example.com/ 21090 430626 430626.431145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.595940283822038 0 \N \N f 0 \N 0 223686743 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 431738 2024-02-19 19:47:50.507 2024-02-19 19:57:51.874 \N Machine thousand determine new https://example.com/ 4395 307347 307347.431738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0754136430967 0 \N \N f 0 \N 0 30950828 0 f f \N \N \N \N 307347 \N 0 0 \N \N f \N 431739 2024-02-19 19:47:52.771 2024-02-19 19:57:53.883 \N Both peace drug most bring ins https://example.com/ 854 307385 307385.431739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6768351112329 0 \N \N f 0 \N 0 194918556 0 f f \N \N \N \N 307385 \N 0 0 \N \N f \N 431741 2024-02-19 19:47:57.973 2024-02-19 19:57:58.91 \N Purpose teacher manager once t https://example.com/ 18641 308029 308029.431741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6810862180191 0 \N \N f 0 \N 0 171214082 0 f f \N \N \N \N 308029 \N 0 0 \N \N f \N 431744 2024-02-19 19:48:06.869 2024-02-19 19:58:08.909 \N Describe radio value until fun https://example.com/ 3504 308830 308830.431744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9309548368876 0 \N \N f 0 \N 0 84896839 0 f f \N \N \N \N 308830 \N 0 0 \N \N f \N 433833 2024-02-21 14:48:52.9 2024-02-21 14:58:54.103 Score picture lot professor bed se Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nRest factor stock prepare. Area Mrs eat sister movement from Mr https://example.com/ 3213 \N 433833 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 1.37380101831511 0 \N \N f 0 \N 30 232434656 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431182 2024-02-19 18:14:15.786 2024-02-19 18:24:17.72 \N Notice after fund police. Put https://example.com/ 20094 407278 407278.431182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.754946509086 0 \N \N f 0 \N 0 58978663 0 f f \N \N \N \N 407278 \N 0 0 \N \N f \N 444507 2024-03-01 02:34:35.194 2024-03-01 05:45:05.752 \N International groun https://example.com/ 17212 444071 443593.443614.443774.443787.444071.444507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9236672044859 0 \N \N f 0 \N 0 219968247 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 437726 2024-02-24 22:20:15.716 2024-02-24 22:30:18.294 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point sum https://example.com/ 12921 437710 437233.437512.437619.437707.437710.437726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4042228656693 0 \N \N f 0 \N 0 215891464 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 441712 2024-02-28 11:04:41.481 2024-02-28 11:14:42.459 \N Pattern someone notice power fly https://example.com/ 21067 441695 441695.441712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7859584192839 0 \N \N f 0 \N 13 33345641 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441888 2024-02-28 13:08:15.138 2024-02-28 13:18:17.416 \N Same need interesting between watch base city by. Anything many watc https://example.com/ 20272 441875 441875.441888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.727628439545889 0 \N \N f 0 \N 0 3551897 0 f f \N \N \N \N 441875 \N 0 0 \N \N f \N 431213 2024-02-19 18:16:02.047 2024-02-19 18:26:03.573 \N Until must summer internationa https://example.com/ 2342 400697 400697.431213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02318431955747 0 \N \N f 0 \N 0 50189125 0 f f \N \N \N \N 400697 \N 0 0 \N \N f \N 431192 2024-02-19 18:14:50.036 2024-02-19 18:24:51.481 \N Degree third deep cause buy pu https://example.com/ 17042 405361 405361.431192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9057136352025 0 \N \N f 0 \N 0 91230937 0 f f \N \N \N \N 405361 \N 0 0 \N \N f \N 431233 2024-02-19 18:17:46.413 2024-02-19 18:27:47.669 \N Hair gas woman next avoid. Blo https://example.com/ 9246 396413 396413.431233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7631015368477 0 \N \N f 0 \N 0 179414803 0 f f \N \N \N \N 396413 \N 0 0 \N \N f \N 431261 2024-02-19 18:22:05.854 2024-02-19 18:32:07.16 \N Ready his protect provide same https://example.com/ 16193 386922 386922.431261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.43480475677188 0 \N \N f 0 \N 0 147144888 0 f f \N \N \N \N 386922 \N 0 0 \N \N f \N 431262 2024-02-19 18:22:10.13 2024-02-19 18:32:11.193 \N Fly run executive. Reach next https://example.com/ 21047 386668 386668.431262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14413463973953 0 \N \N f 0 \N 0 117864571 0 f f \N \N \N \N 386668 \N 0 0 \N \N f \N 431277 2024-02-19 18:22:56.192 2024-02-19 18:32:57.635 \N Board Mr bar white alone hot. https://example.com/ 18615 383400 383400.431277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.172431989622 0 \N \N f 0 \N 0 71133359 0 f f \N \N \N \N 383400 \N 0 0 \N \N f \N 431284 2024-02-19 18:23:15.963 2024-02-19 18:33:17.538 \N Method media and me. Tonight p https://example.com/ 17275 382751 382751.431284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8274075959634 0 \N \N f 0 \N 0 45107660 0 f f \N \N \N \N 382751 \N 0 0 \N \N f \N 431289 2024-02-19 18:23:30.483 2024-02-19 18:33:31.631 \N Everyone usually memory amount https://example.com/ 20511 381503 381503.431289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2118032788296 0 \N \N f 0 \N 0 99958148 0 f f \N \N \N \N 381503 \N 0 0 \N \N f \N 117409 2023-01-04 20:39:55.708 2023-01-04 20:39:55.708 Decision certain voice where collection thus write. Friend mind ever cha \N https://example.com/ 18262 \N 117409 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.608560938197 0 \N \N f 0 \N 1 135630803 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444579 2024-03-01 05:26:31.49 2024-03-01 05:36:33.371 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage r https://example.com/ 6327 444168 444168.444579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.665328725835 0 \N \N f 0 \N 0 242913710 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431745 2024-02-19 19:48:09.499 2024-02-19 19:58:10.992 \N Job stage use material manage. https://example.com/ 18518 308932 308932.431745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79994372038452 0 \N \N f 0 \N 0 145859673 0 f f \N \N \N \N 308932 \N 0 0 \N \N f \N 444580 2024-03-01 05:27:22.362 2024-03-01 05:37:23.885 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear tas https://example.com/ 18945 444575 444566.444575.444580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2986300999197 0 \N \N f 0 \N 1 184989740 0 f f \N \N \N \N 444566 \N 0 0 \N \N f \N 431747 2024-02-19 19:48:15.742 2024-02-19 19:58:17.046 \N Customer reach nice. At himsel https://example.com/ 20564 309803 309803.431747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.37872341117799 0 \N \N f 0 \N 0 58096645 0 f f \N \N \N \N 309803 \N 0 0 \N \N f \N 431134 2024-02-19 17:47:31.478 2024-02-19 17:57:32.738 \N Once could matter program fish adult Cong https://example.com/ 18448 430943 430700.430943.431134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5740856185685 0 \N \N f 0 \N 0 161137500 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 431749 2024-02-19 19:48:21.9 2024-02-19 19:58:23.118 \N Hear direction have instead. R https://example.com/ 19281 309826 309826.431749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23568974037352 0 \N \N f 0 \N 0 214507365 0 f f \N \N \N \N 309826 \N 0 0 \N \N f \N 438538 2024-02-25 18:20:08.039 2024-02-25 18:30:09.183 \N Add bar degree beat since. Somebo https://example.com/ 20840 438185 438093.438185.438538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79478575663646 0 \N \N f 0 \N 1 26571681 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 443312 2024-02-29 11:08:05.382 2024-02-29 11:18:06.857 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nIf put nothing put pick future doctor. Push close among participant p https://example.com/ 14545 443295 443295.443312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6438555301931 0 \N \N f 0 \N 4 85408453 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442815 2024-02-28 22:59:54.236 2024-02-28 23:09:56.127 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nTree house interest f https://example.com/ 666 442751 442751.442815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2239541469103 0 \N \N f 0 \N 1 117970183 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 441569 2024-02-28 08:22:29.786 2024-02-28 08:32:31.672 \N Theory teach dream home past. P https://example.com/ 17103 433359 433359.441569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01339546748391 0 \N \N f 0 \N 0 96084132 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 436829 2024-02-24 01:56:11.069 2024-02-24 02:06:12.443 \N Score might instead ground institution. https://example.com/ 19660 436823 436823.436829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.36803640728044 0 \N \N f 0 \N 6 129451930 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 442819 2024-02-28 23:00:05.366 2024-02-28 23:00:11.096 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. O https://example.com/ 1039 442817 442817.442819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.667759252556 0 \N \N f 0 \N 0 215727934 0 f f \N \N \N \N 442817 \N 0 0 \N \N f \N 437776 2024-02-25 00:03:04.017 2024-02-25 00:13:05.543 \N Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that pla https://example.com/ 2195 437725 433555.437725.437776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67945896418418 0 \N \N f 0 \N 0 220403307 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 438433 2024-02-25 16:47:35.336 2024-02-25 16:57:36.998 \N S https://example.com/ 21022 438414 438414.438433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0086948276154 0 \N \N f 0 \N 0 132475171 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 82439 2022-10-17 06:28:54.1 2022-10-17 06:28:54.1 Realize store science for pass. Sit decision necessary fe \N https://example.com/ 1105 \N 82439 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.99283088499445 0 \N \N f 0 \N 2 66377012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430822 2024-02-19 15:06:49.524 2024-02-19 15:16:51.09 Investment bad cultural Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born https://example.com/ 18262 \N 430822 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 11.1555254239958 0 \N \N f 0 \N 0 80866695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441177 2024-02-27 22:38:34.996 2024-02-27 22:48:36.356 \N Both peace dr https://example.com/ 715 441087 441087.441177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.782912427037239 0 \N \N f 0 \N 0 109743777 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 442637 2024-02-28 20:13:16.878 2024-02-28 20:23:18.975 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High t https://example.com/ 997 442634 439263.442558.442562.442634.442637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33838663669522 0 \N \N f 0 \N 0 150556127 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 443429 2024-02-29 13:04:15.437 2024-02-29 13:14:17.172 \N Condition door drive write. Firm simple test. Why mind trial Con https://example.com/ 2065 443427 443372.443390.443427.443429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.13066725746477 0 \N \N f 0 \N 3 67267732 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 441295 2024-02-28 00:37:15.28 2024-02-28 00:47:16.864 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. https://example.com/ 16259 441247 441247.441295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1068455493974 0 \N \N f 0 \N 1 91785853 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 431147 2024-02-19 17:56:57.87 2024-02-19 18:06:59.479 \N In grow start way pre https://example.com/ 20854 431131 431124.431131.431147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2700677113667 0 \N \N f 0 \N 0 59966353 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 442837 2024-02-28 23:11:09.727 2024-02-28 23:21:11.04 \N Yes but tru https://example.com/ 20280 442453 439946.440242.440313.441240.442453.442837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.68799369037642 0 \N \N f 0 \N 0 244531325 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 442295 2024-02-28 16:14:24.587 2024-02-28 16:24:25.534 \N Pas https://example.com/ 1617 441843 441843.442295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3089637565908 0 \N \N f 0 \N 0 35613600 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443427 2024-02-29 13:03:24.769 2024-02-29 13:13:26.045 \N Provide difference relationship. Factor view stock organization meet head crime ok https://example.com/ 20906 443390 443372.443390.443427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.3064721340556 0 \N \N f 0 \N 4 128748360 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 431157 2024-02-19 18:00:56.031 2024-02-19 18:10:57.405 \N Than https://example.com/ 21412 430825 430795.430825.431157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0242840501879 0 \N \N f 0 \N 0 235031028 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 431193 2024-02-19 18:14:52.553 2024-02-19 18:24:53.484 \N Improve different identify onl https://example.com/ 1726 405321 405321.431193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20210304308259 0 \N \N f 0 \N 0 163839611 0 f f \N \N \N \N 405321 \N 0 0 \N \N f \N 431209 2024-02-19 18:15:50.609 2024-02-19 18:25:51.561 \N Material arm interest draw pro https://example.com/ 21444 401865 401865.431209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.369387944814825 0 \N \N f 0 \N 0 138365960 0 f f \N \N \N \N 401865 \N 0 0 \N \N f \N 431224 2024-02-19 18:17:22.552 2024-02-19 18:27:23.728 \N Always friend price benefit. R https://example.com/ 9820 397694 397694.431224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.73768514577738 0 \N \N f 0 \N 0 198122444 0 f f \N \N \N \N 397694 \N 0 0 \N \N f \N 431231 2024-02-19 18:17:40.643 2024-02-19 18:27:41.759 \N Increase bring card. Figure im https://example.com/ 9365 396692 396692.431231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.39150938800743 0 \N \N f 0 \N 0 235089758 0 f f \N \N \N \N 396692 \N 0 0 \N \N f \N 438785 2024-02-26 00:44:32.569 2024-02-26 00:54:34.178 \N Nature cell https://example.com/ 21138 438575 438388.438575.438785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3601171031762 0 \N \N f 0 \N 0 203808277 0 f f \N \N \N \N 438388 \N 0 0 \N \N f \N 442157 2024-02-28 15:23:57.647 2024-02-28 15:33:59.227 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art https://example.com/ 15463 442148 441695.441712.441750.441801.441803.442135.442141.442148.442157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8861368252486 0 \N \N f 0 \N 4 16329631 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 431247 2024-02-19 18:20:24.636 2024-02-19 18:30:25.833 \N Mean particularly though mysel https://example.com/ 1713 393475 393475.431247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0475195250441729 0 \N \N f 0 \N 0 151419123 0 f f \N \N \N \N 393475 \N 0 0 \N \N f \N 431288 2024-02-19 18:23:26.6 2024-02-19 18:33:28.076 \N Force job radio law. Maybe sol https://example.com/ 8269 381604 381604.431288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5128504952661 0 \N \N f 0 \N 0 249339697 0 f f \N \N \N \N 381604 \N 0 0 \N \N f \N 432513 2024-02-20 14:30:34.227 2024-02-20 14:40:35.759 \N Deep some relate https://example.com/ 21603 432239 431844.432239.432513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9579385701754 0 \N \N f 0 \N 1 119666781 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 443839 2024-02-29 16:51:57.373 2024-02-29 17:01:58.91 \N Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nPolice civil here think minute economic. https://example.com/ 16250 443830 443799.443830.443839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1234807995658 0 \N \N f 0 \N 0 72047810 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 430829 2024-02-19 15:10:02.861 2024-02-19 15:20:04.038 \N Prot https://example.com/ 21469 430821 430626.430798.430821.430829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8640347778251 0 \N \N f 0 \N 1 190046213 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 444812 2024-03-01 11:15:22.596 2024-03-01 11:25:24.032 \N Very executive American something myself so my. Art to five indica https://example.com/ 16440 444714 444714.444812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3498945629977 0 \N \N f 0 \N 0 58888045 0 f f \N \N \N \N 444714 \N 0 0 \N \N f \N 444628 2024-03-01 06:46:53.664 2024-03-01 06:56:54.621 Film happen almost than. Staff s Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nDeal could skin some. Thr https://example.com/ 18454 \N 444628 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 15.5133301547304 0 \N \N f 0 \N 0 118550562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431338 2024-02-19 18:34:58.643 2024-02-19 18:44:59.929 \N Race civil today. Brother reco https://example.com/ 831 373999 373999.431338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71608785101811 0 \N \N f 0 \N 0 104605291 0 f f \N \N \N \N 373999 \N 0 0 \N \N f \N 433749 2024-02-21 13:26:59.02 2024-02-21 13:37:00.156 \N Site product o https://example.com/ 21091 433728 433710.433728.433749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1858172105895 0 \N \N f 0 \N 0 234497363 0 f f \N \N \N \N 433710 \N 0 0 \N \N f \N 434461 2024-02-22 01:12:43.048 2024-02-22 01:22:44.188 \N Herself will eight force small los https://example.com/ 18625 434424 434424.434461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.43769521939313 0 \N \N f 0 \N 0 41066185 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 440904 2024-02-27 18:32:32.759 2024-02-27 18:42:34.042 \N Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance hi https://example.com/ 18581 440700 440700.440904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6949510201697 0 \N \N f 0 \N 1 46672895 0 f f \N \N \N \N 440700 \N 0 0 \N \N f \N 431337 2024-02-19 18:34:55.996 2024-02-19 18:44:57.883 \N Lead against area note movemen https://example.com/ 9339 374143 374143.431337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.326036996671171 0 \N \N f 0 \N 0 120423483 0 f f \N \N \N \N 374143 \N 0 0 \N \N f \N 432380 2024-02-20 11:40:31.556 2024-02-20 11:50:32.839 \N Them debate main bad. Personal security be government. Common as civil hospital turn disco https://example.com/ 1784 432085 430892.432085.432380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.05591196270087 0 \N \N f 0 \N 0 244277371 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431485 2024-02-19 19:04:20.466 2024-02-19 19:14:21.835 \N Physical fast give music base. https://example.com/ 13169 352338 352338.431485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4920381591639 0 \N \N f 0 \N 0 173464643 0 f f \N \N \N \N 352338 \N 0 0 \N \N f \N 431488 2024-02-19 19:05:18.093 2024-02-19 19:15:19.606 \N Ever small re https://example.com/ 4574 386988 386988.431488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.258087873164 0 \N \N f 0 \N 0 83118750 0 f f \N \N \N \N 386988 \N 0 0 \N \N f \N 437878 2024-02-25 02:32:18.949 2024-02-25 02:42:20.397 \N Family happy son budget speech across. Building ef https://example.com/ 15941 437810 437524.437629.437729.437810.437878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4852335690105 0 \N \N f 0 \N 2 7525141 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 431276 2024-02-19 18:22:52.914 2024-02-19 18:32:54.605 \N Peace then https://example.com/ 3417 431264 431150.431264.431276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23171886958561 0 \N \N f 0 \N 0 52974253 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 439771 2024-02-26 19:02:47.607 2024-02-26 19:12:48.778 \N Officer forget west chec https://example.com/ 21498 439723 439723.439771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4531169824033 0 \N \N f 0 \N 3 12170041 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 431995 2024-02-19 23:12:56.391 2024-02-19 23:13:01.586 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond https://example.com/ 19639 431989 174240.431989.431995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.53508458148193 0 \N \N f 0 \N 0 229457505 0 f f \N \N \N \N 174240 \N 0 0 \N \N f \N 432529 2024-02-20 14:40:17.977 2024-02-20 14:50:19.518 \N Smile paper though to catch. Situati https://example.com/ 2000 432414 432320.432414.432529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8078100200238 0 \N \N f 0 \N 4 234072827 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 431989 2024-02-19 23:07:29.753 2024-02-19 23:07:35.203 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You materi https://example.com/ 15624 174240 174240.431989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8718138542838 0 \N \N f 0 \N 1 27294085 0 f f \N \N \N \N 174240 \N 0 0 \N \N f \N 436366 2024-02-23 16:10:25.274 2024-02-23 16:20:26.188 \N Small career baby de https://example.com/ 13599 436344 436344.436366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9399302717231 0 \N \N f 0 \N 0 9807829 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 432621 2024-02-20 15:45:49.084 2024-02-20 15:55:50.757 \N Improve different ident https://example.com/ 7389 432539 432539.432621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.19375812136349 0 \N \N f 0 \N 0 19322943 0 f f \N \N \N \N 432539 \N 0 0 \N \N f \N 431977 2024-02-19 22:52:55.425 2024-02-19 23:02:57.376 \N Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try https://example.com/ 19576 430626 430626.431977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0979174567494 0 \N \N f 0 \N 0 147771532 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 3191 2021-10-07 21:21:01.104 2023-10-01 23:52:41.148 Black leg through occur possible cent That very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear s https://example.com/ 17523 \N 3191 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.7806409716174 0 \N \N f 0 \N 26 233391860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444353 2024-02-29 22:17:08.491 2024-02-29 22:27:09.73 \N Value have anyone crime professional. Close or pass yeah peace without his. Answ https://example.com/ 20436 444137 444112.444137.444353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05742658599018 0 \N \N f 0 \N 2 16864093 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444928 2024-03-01 12:37:32.525 2024-03-01 12:47:33.548 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter org https://example.com/ 8916 444926 444770.444926.444928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5529239687614 0 \N \N f 0 \N 0 14370197 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431099 2024-02-19 17:40:12.227 2024-02-19 17:50:13.939 \N Human guy both. Return once pl https://example.com/ 20990 414654 414654.431099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.87065042293134 0 \N \N f 0 \N 0 170909803 0 f f \N \N \N \N 414654 \N 0 0 \N \N f \N 431100 2024-02-19 17:40:14.58 2024-02-19 17:50:15.706 \N Direction poor if however prop https://example.com/ 15060 414271 414271.431100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1403517107649 0 \N \N f 0 \N 0 179354556 0 f f \N \N \N \N 414271 \N 0 0 \N \N f \N 431106 2024-02-19 17:40:28.599 2024-02-19 17:50:29.527 \N Author professional find face https://example.com/ 18232 413410 413410.431106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.32364493432595 0 \N \N f 0 \N 0 52104614 0 f f \N \N \N \N 413410 \N 0 0 \N \N f \N 441250 2024-02-27 23:43:03.449 2024-02-27 23:53:05.233 \N Station nothing decide Mr sing candidate thought. Away ten finish two https://example.com/ 4035 441156 441087.441091.441156.441250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3563511531992 0 \N \N f 0 \N 0 188573998 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 438424 2024-02-25 16:37:10.465 2024-02-25 16:47:11.899 \N Mind treatment nat https://example.com/ 15690 438325 438325.438424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3035291594494 0 \N \N f 0 \N 0 54366321 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 431132 2024-02-19 17:46:43.67 2024-02-19 17:56:45.145 \N Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge bo https://example.com/ 8726 431007 430700.431007.431132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.90512719786751 0 \N \N f 0 \N 0 132438742 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 85704 2022-10-26 07:05:51.553 2022-10-26 07:05:51.553 Never new shoulder lose \N https://example.com/ 16970 \N 85704 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1380061238445 0 \N \N f 0 \N 0 114148962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435563 2024-02-22 21:48:15.285 2024-02-22 21:58:16.821 \N Already reduce grow only chance https://example.com/ 9099 435436 435154.435287.435436.435563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2147813012516 0 \N \N f 0 \N 0 160221370 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 441260 2024-02-27 23:59:53.518 2024-02-28 00:09:55.644 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nAmerican argue three local care join full another. North safe part until los https://example.com/ 13327 441087 441087.441260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7870116288636 0 \N \N f 0 \N 0 186311707 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 437435 2024-02-24 16:26:54.05 2024-02-24 16:36:56.801 \N Any ten https://example.com/ 684 437238 437238.437435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.27253624565289 0 \N \N f 0 \N 0 175312129 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 431111 2024-02-19 17:41:55.986 2024-02-19 17:51:56.676 \N Water wrong somebody book nor https://example.com/ 19854 413184 413184.431111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9608706474388 0 \N \N f 0 \N 0 65300603 0 f f \N \N \N \N 413184 \N 0 0 \N \N f \N 441877 2024-02-28 13:03:05.739 2024-02-28 13:13:07.252 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something gener https://example.com/ 17201 441854 441854.441877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4044954486144 0 \N \N f 0 \N 6 63971421 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 431116 2024-02-19 17:42:09.903 2024-02-19 17:52:10.899 \N Theory teach dream home past. https://example.com/ 9356 412359 412359.431116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0017833207132 0 \N \N f 0 \N 0 136975893 0 f f \N \N \N \N 412359 \N 0 0 \N \N f \N 431121 2024-02-19 17:42:22.467 2024-02-19 17:52:23.71 \N Treatment dream at American of https://example.com/ 19553 410728 410728.431121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9111900707878 0 \N \N f 0 \N 0 16980343 0 f f \N \N \N \N 410728 \N 0 0 \N \N f \N 437714 2024-02-24 21:49:42.401 2024-02-24 21:59:43.597 For share Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type https://example.com/ 976 \N 437714 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.2669326634924 0 \N \N f 0 \N 16 60591285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430943 2024-02-19 16:34:54.527 2024-02-19 16:44:55.668 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nRepublican total impact of. North office https://example.com/ 18583 430700 430700.430943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.26729162941661 0 \N \N f 0 \N 2 212985236 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 438120 2024-02-25 11:27:33.842 2024-02-25 11:37:34.978 \N After increase change education budget. Or tend city political mean drug co https://example.com/ 2710 438115 437996.438017.438115.438120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.018831564757 0 \N \N f 0 \N 2 132952988 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 3911 2021-10-24 16:59:43.718 2023-10-01 23:53:36.002 Whose top property wel Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nRegion side point win through. Deep check rather loss world adult. https://example.com/ 5520 \N 3911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.99322550387632 0 \N \N f 0 \N 4 9627111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431802 2024-02-19 19:59:29.935 2024-02-19 20:09:32.089 \N Realit https://example.com/ 4304 431591 431591.431802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5784450466815 0 \N \N f 0 \N 0 236155365 0 f f \N \N \N \N 431591 \N 0 0 \N \N f \N 435522 2024-02-22 21:06:34.905 2024-02-22 21:16:38.211 Door western each. Thus first tonight run chance control. Course p Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nChild air person ago modern charge little piece. Get trade manage policy hu https://example.com/ 18473 \N 435522 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.5449812333749 0 \N \N f 0 \N 0 84312176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438901 2024-02-26 05:32:21.799 2024-02-26 05:42:23.374 \N Animal law requir https://example.com/ 11789 438763 438763.438901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6176156144983 0 \N \N f 0 \N 0 168453324 0 f f \N \N \N \N 438763 \N 0 0 \N \N f \N 430878 2024-02-19 15:45:10.916 2024-02-19 15:55:12.482 \N Have decide business throw source strong town line. Local forge https://example.com/ 18208 430626 430626.430878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93762421522003 0 \N \N f 0 \N 0 33545759 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 444703 2024-03-01 10:00:05.696 2024-03-01 10:10:07.928 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anythi https://example.com/ 21472 444702 444702.444703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.84777455433748 0 \N \N f 0 \N 0 82474737 0 f f \N \N \N \N 444702 \N 0 0 \N \N f \N 431307 2024-02-19 18:32:40.926 2024-02-19 18:42:42.144 \N Structure require feel stateme https://example.com/ 16965 379754 379754.431307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8848252063119 0 \N \N f 0 \N 0 145778454 0 f f \N \N \N \N 379754 \N 0 0 \N \N f \N 431320 2024-02-19 18:33:18.338 2024-02-19 18:43:19.701 \N Benefit car actually you open. https://example.com/ 12268 389337 389337.431320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7356674227378 0 \N \N f 0 \N 0 176667157 0 f f \N \N \N \N 389337 \N 0 0 \N \N f \N 431315 2024-02-19 18:33:02.612 2024-02-19 18:43:03.493 \N Deep government cold west. Act https://example.com/ 1585 378636 378636.431315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8132927972579 0 \N \N f 0 \N 0 160382996 0 f f \N \N \N \N 378636 \N 0 0 \N \N f \N 431318 2024-02-19 18:33:12.014 2024-02-19 18:43:13.602 \N If lose particular record natu https://example.com/ 9863 378073 378073.431318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4895652076521 0 \N \N f 0 \N 0 8786365 0 f f \N \N \N \N 378073 \N 0 0 \N \N f \N 431326 2024-02-19 18:33:32.167 2024-02-19 18:43:33.825 \N Many then growth. Law become r https://example.com/ 4079 390160 390160.431326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51007501870865 0 \N \N f 0 \N 0 126672543 0 f f \N \N \N \N 390160 \N 0 0 \N \N f \N 430898 2024-02-19 16:00:40.175 2024-02-19 16:10:42.451 \N Film beautiful large internationa https://example.com/ 889 430895 430892.430895.430898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.02829960138646 0 \N \N f 0 \N 3 107075895 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431330 2024-02-19 18:33:44.783 2024-02-19 18:43:45.944 \N Eat culture event thus any eve https://example.com/ 18306 391124 391124.431330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.46265991270803 0 \N \N f 0 \N 0 193170872 0 f f \N \N \N \N 391124 \N 0 0 \N \N f \N 442596 2024-02-28 19:28:48.359 2024-02-28 19:38:50.406 Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair Set how recogniz https://example.com/ 18626 \N 442596 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.9027686956385 0 \N \N f 0 \N 0 114995587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47002 2022-07-19 17:05:28.677 2023-10-02 04:46:43.3 Floor among test material. Meet million someone family gues Middle city always. Benefit watch wide program two how. https://example.com/ 11999 \N 47002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3111923907878 0 \N \N f 0 \N 48 145138887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438053 2024-02-25 09:51:37.298 2024-02-25 10:01:38.478 Blood bill here traditional upon. Le Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nSpeak organization direction school minute. Daughter model lo https://example.com/ 21320 \N 438053 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.1869433091206 0 \N \N f 0 \N 0 36690567 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442597 2024-02-28 19:31:00.595 2024-02-28 19:41:02.33 \N Agree such recogniz https://example.com/ 18533 442526 442526.442597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8843865565304 0 \N \N f 0 \N 0 144994225 0 f f \N \N \N \N 442526 \N 0 0 \N \N f \N 442598 2024-02-28 19:32:44.323 2024-02-28 19:42:45.943 \N Health recently a https://example.com/ 4322 442548 442548.442598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8861453544941 0 \N \N f 0 \N 0 225539524 0 f f \N \N \N \N 442548 \N 0 0 \N \N f \N 431497 2024-02-19 19:05:45.828 2024-02-19 19:15:47.425 \N Term ok concern experience col https://example.com/ 18704 349708 349708.431497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9090906872658 0 \N \N f 0 \N 0 93718055 0 f f \N \N \N \N 349708 \N 0 0 \N \N f \N 444852 2024-03-01 11:42:17.081 2024-03-01 11:52:18.397 Member car law politics in. Blue sometimes perform care doctor pattern. Involve Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nAbout easy answer glass. Fire who place appr https://example.com/ 10469 \N 444852 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.0209292971118 0 \N \N f 0 \N 0 56042266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438437 2024-02-25 16:52:23.124 2024-02-25 17:02:26.233 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand spac https://example.com/ 636 438065 438065.438437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.389998868776615 0 \N \N f 0 \N 0 32842068 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 441854 2024-02-28 12:48:16.603 2024-02-28 12:58:19.029 Decision certain voice where colle Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Re https://example.com/ 19938 \N 441854 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 12.4847803607837 0 \N \N f 0 \N 22 100081882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444398 2024-02-29 23:11:14.847 2024-02-29 23:21:16.256 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Thre https://example.com/ 676 444255 444168.444255.444398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14681853665832 0 \N \N f 0 \N 1 175616434 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444326 2024-02-29 21:48:18.857 2024-02-29 21:58:19.528 \N Begin kind newspaper https://example.com/ 1465 444317 444168.444305.444317.444326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.213456682786237 0 \N \N f 0 \N 0 57470989 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444317 2024-02-29 21:41:20.126 2024-02-29 21:51:22.184 \N Let https://example.com/ 18989 444305 444168.444305.444317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5157401832032 0 \N \N f 0 \N 1 196709890 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444305 2024-02-29 21:17:30.777 2024-02-29 21:27:32.213 \N Majority certainly song between country rise every lose. Head education white need yard type nigh https://example.com/ 5904 444168 444168.444305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7413117603493 0 \N \N f 0 \N 2 31250272 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438750 2024-02-25 23:48:27.437 2024-02-25 23:58:29.604 \N Measure would expert nation two. Prove at together various style. Garden yard term. S https://example.com/ 1673 438604 438093.438603.438604.438750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6168281851632 0 \N \N f 0 \N 0 168235801 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438747 2024-02-25 23:46:38.086 2024-02-25 23:56:39.899 \N Page economic https://example.com/ 21104 438434 438414.438434.438747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2142662265008 0 \N \N f 0 \N 1 40623846 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 442811 2024-02-28 22:54:40.685 2024-02-28 23:04:42.159 \N Past hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nDecide up re https://example.com/ 2232 441752 441752.442811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71079181455892 0 \N \N f 0 \N 0 184109722 0 f f \N \N \N \N 441752 \N 0 0 \N \N f \N 432485 2024-02-20 14:06:51.571 2024-02-20 14:16:52.516 \N After increase c https://example.com/ 13843 432365 432344.432345.432365.432485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.726976781178408 0 \N \N f 0 \N 0 60862390 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 443093 2024-02-29 05:48:41.074 2024-02-29 05:58:42.584 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cos https://example.com/ 19446 442730 442508.442701.442730.443093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.666454735139 0 \N \N f 0 \N 0 163003544 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 432508 2024-02-20 14:25:46.62 2024-02-20 14:35:47.698 \N Research either https://example.com/ 20337 432493 432493.432508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07983767028448 0 \N \N f 0 \N 0 68168300 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 442701 2024-02-28 21:00:26.829 2024-02-28 21:10:28.09 \N Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nSell hundred beautiful up claim. Clear benefit material send. Government tal https://example.com/ 21539 442508 442508.442701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.54466529331209 0 \N \N f 0 \N 2 248242067 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 443580 2024-02-29 14:38:15.184 2024-02-29 14:48:16.431 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement https://example.com/ 11776 443272 443272.443580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6068095653797 0 \N \N f 0 \N 1 49716603 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 441939 2024-02-28 13:45:33.351 2024-02-28 13:55:34.678 \N Hair gas woman https://example.com/ 11938 441918 441533.441614.441676.441918.441939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.97894429353408 0 \N \N f 0 \N 0 79644856 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 432185 2024-02-20 06:31:49.118 2024-02-20 06:41:50.577 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker broth https://example.com/ 21334 432078 432078.432185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38386884180967 0 \N \N f 0 \N 0 83007993 0 f f \N \N \N \N 432078 \N 0 0 \N \N f \N 437976 2024-02-25 06:43:29.201 2024-02-25 06:53:30.816 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nMajority next authority recognize claim role. Million h https://example.com/ 3461 437868 437723.437854.437868.437976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.72974710881758 0 \N \N f 0 \N 2 171197869 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431290 2024-02-19 18:24:51.719 2024-02-19 18:34:52.966 \N According s https://example.com/ 18772 431187 431187.431290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.60804555898658 0 \N \N f 0 \N 0 208376859 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 432187 2024-02-20 06:43:20.75 2024-02-20 06:53:23.511 \N Agency rate seven fear open. Design group sense left enjoy. Voice care conference are https://example.com/ 3304 431804 431804.432187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.530556676940286 0 \N \N f 0 \N 0 179767645 0 f f \N \N \N \N 431804 \N 0 0 \N \N f \N 431818 2024-02-19 20:09:11.766 2024-02-19 20:19:13.021 \N Republican part letter tonight. Sta https://example.com/ 19174 430956 430860.430956.431818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.040745287486 0 \N \N f 0 \N 0 50245170 0 f f \N \N \N \N 430860 \N 0 0 \N \N f \N 430956 2024-02-19 16:41:58.012 2024-02-19 16:51:59.381 \N Pick fight simple up https://example.com/ 1426 430860 430860.430956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6320117617685 0 \N \N f 0 \N 1 95046814 0 f f \N \N \N \N 430860 \N 0 0 \N \N f \N 438616 2024-02-25 20:09:49.738 2024-02-25 20:19:52.182 \N Fly include https://example.com/ 18372 438604 438093.438603.438604.438616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.85652207066236 0 \N \N f 0 \N 0 4511786 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 434938 2024-02-22 13:08:57.015 2024-02-22 13:18:58.284 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nKnow son future sugge https://example.com/ 1489 434676 433828.434673.434676.434938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02227984572075 0 \N \N f 0 \N 0 226119785 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 4081 2021-10-26 13:00:05.967 2023-10-01 23:53:41.796 Pick fight simple Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nReal goal cover. Mention leg sport seem. Back certainly https://example.com/ 17673 \N 4081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4622431117584 0 \N \N f 0 \N 4 10683353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431544 2024-02-19 19:08:47.842 2024-02-19 19:18:49.412 \N Hot society statement bed watch party himself firm. Attention t https://example.com/ 18896 431463 368845.431463.431544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9747728844435 0 \N \N f 0 \N 0 92835270 0 f f \N \N \N \N 368845 \N 0 0 \N \N f \N 431545 2024-02-19 19:08:51.245 2024-02-19 19:18:52.714 \N Himself seem along exist popul https://example.com/ 20861 348975 348975.431545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3268417683834 0 \N \N f 0 \N 0 198754944 0 f f \N \N \N \N 348975 \N 0 0 \N \N f \N 440988 2024-02-27 19:45:25.771 2024-02-27 19:55:27.015 Them response usually tax tax. Marriage check appear memory why. Also major ans Action prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several an https://example.com/ 5173 \N 440988 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.32314317525085 0 \N \N f 0 \N 31 3203635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443265 2024-02-29 10:18:51.589 2024-02-29 10:28:52.701 \N According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside https://example.com/ 4973 442325 442325.443265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8578233878931 0 \N \N f 0 \N 0 12332551 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442325 2024-02-28 16:25:23.944 2024-02-28 16:35:25.696 Physical fast give music base. Gun body If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will https://example.com/ 21603 \N 442325 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 8.71383198067335 0 \N \N f 0 \N 13 96335536 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441899 2024-02-28 13:20:01.108 2024-02-28 13:30:03.028 \N Raise land together yeah natural religious. Trav https://example.com/ 16353 441895 441866.441895.441899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5664476905119 0 \N \N f 0 \N 0 160531325 0 f f \N \N \N \N 441866 \N 0 0 \N \N f \N 437716 2024-02-24 21:52:30.225 2024-02-24 22:02:31.928 \N These world usually ground grow worker. https://example.com/ 1198 437714 437714.437716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.8346927197184 0 \N \N f 0 \N 7 74324823 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 431546 2024-02-19 19:08:53.982 2024-02-19 19:18:55.444 \N American argue three local car https://example.com/ 1394 349078 349078.431546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2745443849782 0 \N \N f 0 \N 0 151468797 0 f f \N \N \N \N 349078 \N 0 0 \N \N f \N 431547 2024-02-19 19:08:56.712 2024-02-19 19:18:57.729 \N Control century lay already ra https://example.com/ 1213 349218 349218.431547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1075880461896 0 \N \N f 0 \N 0 127414322 0 f f \N \N \N \N 349218 \N 0 0 \N \N f \N 431551 2024-02-19 19:09:26.605 2024-02-19 19:19:28.05 \N Cover well feel yes crime term https://example.com/ 18717 337587 337587.431551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1282914592641 0 \N \N f 0 \N 0 14290587 0 f f \N \N \N \N 337587 \N 0 0 \N \N f \N 431552 2024-02-19 19:09:29.397 2024-02-19 19:19:31.102 \N Threat successful admit write. https://example.com/ 11561 337509 337509.431552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2356938781603 0 \N \N f 0 \N 0 188640276 0 f f \N \N \N \N 337509 \N 0 0 \N \N f \N 434949 2024-02-22 13:20:48.472 2024-02-22 13:30:50.829 \N Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career dem https://example.com/ 20287 434728 433555.433788.434728.434949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8677631894371 0 \N \N f 0 \N 0 186393114 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 444639 2024-03-01 07:01:07.543 2024-03-01 07:11:08.474 \N Improve different identify only https://example.com/ 1175 443799 443799.444639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5910087277104 0 \N \N f 0 \N 0 11041353 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 435004 2024-02-22 14:06:53.115 2024-02-22 14:16:54.958 \N Sell atte https://example.com/ 19841 434990 434990.435004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.22939391536887 0 \N \N f 0 \N 0 201420068 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 4531 2021-11-03 23:40:25.245 2023-10-01 23:54:10.458 Them response usu Factor song science administration defense radio. Pay everybo https://example.com/ 8648 \N 4531 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9164107998886 0 \N \N f 0 \N 1 55775999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4774 2021-11-11 08:18:55.725 2023-10-01 23:54:21.988 Join push rema College quality yard box s https://example.com/ 12609 \N 4774 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.427722079952524 0 \N \N f 0 \N 1 76519011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4878 2021-11-14 05:55:46.182 2023-10-01 23:54:26.831 Whose top propert Poi https://example.com/ 20452 \N 4878 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4851414997705 0 \N \N f 0 \N 2 15515656 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431420 2024-02-19 18:59:44.781 2024-02-19 19:09:46.011 \N White have loss parent whole s https://example.com/ 1426 362892 362892.431420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2266778468724 0 \N \N f 0 \N 0 83342007 0 f f \N \N \N \N 362892 \N 0 0 \N \N f \N 431158 2024-02-19 18:01:18.762 2024-02-19 18:11:20.92 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly exp https://example.com/ 18271 431082 430993.431001.431049.431074.431082.431158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8822689995887 0 \N \N f 0 \N 1 188143516 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 442738 2024-02-28 21:26:25.565 2024-02-28 21:36:27.798 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. P https://example.com/ 658 442729 441238.442729.442738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18177340286973 0 \N \N f 0 \N 2 41886493 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 441238 2024-02-27 23:26:28.433 2024-02-27 23:36:29.197 In grow start way president as compare. Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over pa https://example.com/ 760 \N 441238 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 21.4771787436489 0 \N \N f 0 \N 13 161188865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444055 2024-02-29 18:47:00.572 2024-02-29 18:57:01.984 \N That very siste https://example.com/ 20450 443816 443545.443812.443816.444055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3246162495867 0 \N \N f 0 \N 0 218537975 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 432192 2024-02-20 06:56:36.994 2024-02-20 07:06:39.128 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision https://example.com/ 6533 432088 432088.432192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3965706190655 0 \N \N f 0 \N 0 200358675 0 f f \N \N \N \N 432088 \N 0 0 \N \N f \N 21800 2022-04-21 20:05:29.857 2023-10-02 00:45:13.009 Increase br Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nKnow son future suggest paper p https://example.com/ 18336 \N 21800 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.7144774525216 0 \N \N f 0 \N 11 118292138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431560 2024-02-19 19:09:50.59 2024-02-19 19:19:51.857 \N Film happen almost than. Staff https://example.com/ 21157 338818 338818.431560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.443931613 0 \N \N f 0 \N 0 112610044 0 f f \N \N \N \N 338818 \N 0 0 \N \N f \N 444672 2024-03-01 08:31:16.859 2024-03-01 08:41:18.03 \N Police do base plan how. Her add beautif https://example.com/ 20624 444166 443272.444166.444672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0886699242855 0 \N \N f 0 \N 0 51564458 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 431758 2024-02-19 19:52:55.2 2024-02-19 20:03:09.002 \N Scientist its surface arrive w https://example.com/ 15697 294360 294360.431758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.751850729307 0 \N \N f 0 \N 0 236694307 0 f f \N \N \N \N 294360 \N 0 0 \N \N f \N 442273 2024-02-28 16:03:46.715 2024-02-28 16:13:48.71 \N Their elec https://example.com/ 1438 442263 442263.442273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86649437826291 0 \N \N f 0 \N 0 212665371 0 f f \N \N \N \N 442263 \N 0 0 \N \N f \N 444675 2024-03-01 08:46:03.664 2024-03-01 08:56:05.528 \N Herself then or effect usually treat. Exactly I agree top job economy such. https://example.com/ 7809 441133 440521.440529.441119.441133.444675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6225171409993 0 \N \N f 0 \N 0 16522504 0 f f \N \N \N \N 440521 \N 0 0 \N \N f \N 431564 2024-02-19 19:11:00.779 2024-02-19 19:21:02.195 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager o https://example.com/ 5661 431563 431563.431564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.085600450715 0 \N \N f 0 \N 0 200263906 0 f f \N \N \N \N 431563 \N 0 0 \N \N f \N 431569 2024-02-19 19:13:26.809 2024-02-19 19:23:27.409 \N Firm study certainly point. As https://example.com/ 2514 333820 333820.431569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3602897972498 0 \N \N f 0 \N 0 82746809 0 f f \N \N \N \N 333820 \N 0 0 \N \N f \N 443440 2024-02-29 13:12:18.933 2024-02-29 13:22:19.948 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require populat https://example.com/ 15488 443434 443372.443390.443427.443429.443434.443440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3844526310687 0 \N \N f 0 \N 1 116951300 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 431712 2024-02-19 19:40:19.029 2024-02-19 19:50:20.136 \N Have decide business throw sou https://example.com/ 1890 298117 298117.431712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6964857435946 0 \N \N f 0 \N 0 44157144 0 f f \N \N \N \N 298117 \N 0 0 \N \N f \N 438033 2024-02-25 08:58:56.595 2024-02-25 09:08:57.819 \N General against page door. Attention although even hospital sing recently individual material. Floor view anot https://example.com/ 10007 436566 436566.438033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4517715627422 0 \N \N f 0 \N 0 149808544 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 431149 2024-02-19 17:57:37.713 2024-02-19 18:07:39.291 \N P https://example.com/ 5519 431142 431124.431131.431140.431142.431149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6795417475008 0 \N \N f 0 \N 0 40200063 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 433127 2024-02-20 22:29:52.872 2024-02-20 22:39:54.325 \N Rise environmental https://example.com/ 5487 433114 433114.433127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65783288122978 0 \N \N f 0 \N 2 222101418 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 431135 2024-02-19 17:47:39.495 2024-02-19 17:57:40.8 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test p https://example.com/ 18828 427054 383302.421704.427054.431135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.44764932085532 0 \N \N f 0 \N 0 82309855 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 433076 2024-02-20 21:49:53.397 2024-02-20 21:59:54.9 \N Political perhaps question fo https://example.com/ 16351 433056 433056.433076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.442649960735864 0 \N \N f 0 \N 2 73488528 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 443374 2024-02-29 12:11:43.709 2024-02-29 12:21:47.25 \N Forget issue save educati https://example.com/ 664 443305 443295.443305.443374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6469302752031 0 \N \N f 0 \N 1 135364512 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443627 2024-02-29 14:58:55.505 2024-02-29 15:08:56.689 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individ https://example.com/ 5449 443625 443617.443625.443627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5329445468935 0 \N \N f 0 \N 2 233406587 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 443891 2024-02-29 17:22:50.113 2024-02-29 17:32:51.294 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor https://example.com/ 641 443888 443339.443356.443401.443888.443891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0398204085279 0 \N \N f 0 \N 0 41381987 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N 442807 2024-02-28 22:46:39.536 2024-02-28 22:56:41.004 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate a https://example.com/ 15094 442298 442298.442807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42660090732794 0 \N \N f 0 \N 0 101491432 0 f f \N \N \N \N 442298 \N 0 0 \N \N f \N 443434 2024-02-29 13:08:21.609 2024-02-29 13:18:23.61 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. https://example.com/ 5746 443429 443372.443390.443427.443429.443434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72174393724402 0 \N \N f 0 \N 2 35710578 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 437704 2024-02-24 21:35:25.316 2024-02-24 21:45:26.682 \N Full both sound century close car https://example.com/ 19639 437673 437673.437704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6946957199983 0 \N \N f 0 \N 0 52573474 0 f f \N \N \N \N 437673 \N 0 0 \N \N f \N 437772 2024-02-24 23:50:45.743 2024-02-25 00:00:47.361 \N Himself seem alon https://example.com/ 1064 430647 429534.430647.437772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6741113864986 0 \N \N f 0 \N 0 99324778 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 432451 2024-02-20 13:11:01.175 2024-02-20 13:21:02.332 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. https://example.com/ 5499 432404 432404.432451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.03602134628225 0 \N \N f 0 \N 0 220565398 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 432505 2024-02-20 14:23:52.694 2024-02-20 14:33:53.969 \N Political https://example.com/ 16347 430901 430626.430901.432505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.35339359662257 0 \N \N f 0 \N 0 247675683 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432724 2024-02-20 17:03:11.36 2024-02-20 17:13:13.165 \N Social impact learn single election send senior. Dog differen https://example.com/ 12289 432661 432661.432724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02493888281862 0 \N \N f 0 \N 3 208907742 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 441915 2024-02-28 13:29:14.851 2024-02-28 13:39:15.861 Police civil here think minute economic. Let father Move purpose well important learn population study. Key turn career industry scene wide business. Weight revea https://example.com/ 20555 \N 441915 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.25023105217736 0 \N \N f 0 \N 0 214183367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443886 2024-02-29 17:15:56.973 2024-02-29 17:25:58.444 \N Serious stay girl enter. His investment develop media out season. Mode https://example.com/ 14037 443806 443295.443781.443806.443886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3636732374392 0 \N \N f 0 \N 4 185120830 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443048 2024-02-29 03:37:05.821 2024-02-29 03:47:07.019 \N Smile paper though to catch. Situation along under road. Same let society in. Send community https://example.com/ 882 442978 442978.443048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9495901695104 0 \N \N f 0 \N 5 106102705 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 435442 2024-02-22 19:32:55.711 2024-02-22 19:42:57.103 \N Yeah word become defense ro https://example.com/ 7659 435314 435314.435442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23416136968893 0 \N \N f 0 \N 0 223163219 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 444218 2024-02-29 20:28:37.428 2024-02-29 20:38:39.437 \N Economic clearly dark. Understand remain performance want https://example.com/ 18525 444097 444097.444218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.5073667537708 0 \N \N f 0 \N 4 125090199 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 438924 2024-02-26 06:49:18.578 2024-02-26 06:59:20.386 \N Seek military only heart. Side ahe https://example.com/ 17109 438916 438916.438924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.2447565837486 0 \N \N f 0 \N 0 168950260 0 f f \N \N \N \N 438916 \N 0 0 \N \N f \N 431049 2024-02-19 17:24:42.889 2024-02-19 17:34:44.209 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style https://example.com/ 10586 431001 430993.431001.431049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.599397688925478 0 \N \N f 0 \N 5 202731560 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 444649 2024-03-01 07:14:16.83 2024-03-01 07:24:17.959 \N Hour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough art https://example.com/ 19905 443175 443175.444649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6755142786094 0 \N \N f 0 \N 0 22472108 0 f f \N \N \N \N 443175 \N 0 0 \N \N f \N 49067 2022-07-24 22:15:04.105 2023-10-02 04:52:49.884 Strategy way l Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position natur https://example.com/ 19153 \N 49067 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.705971261015783 0 \N \N f 0 \N 4 205635825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443616 2024-02-29 14:55:10.671 2024-02-29 15:05:12.173 \N Skill government the life relationship bad. Statement character spring simple https://example.com/ 15858 443545 443545.443616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1033142800101 0 \N \N f 0 \N 4 72571730 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 442417 2024-02-28 17:03:41.84 2024-02-28 17:13:43.22 \N Majority next authority recognize claim role. Mi https://example.com/ 12265 442398 442084.442398.442417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5691518076202 0 \N \N f 0 \N 0 144414279 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 444650 2024-03-01 07:16:40.445 2024-03-01 07:26:42.118 \N Young shake push apply s https://example.com/ 17183 444168 444168.444650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3161613215125 0 \N \N f 0 \N 0 201744405 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 434983 2024-02-22 13:52:38.601 2024-02-22 14:02:40.137 \N Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. https://example.com/ 18269 434636 434595.434636.434983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.77432478393398 0 \N \N f 0 \N 0 20391858 0 f f \N \N \N \N 434595 \N 0 0 \N \N f \N 431731 2024-02-19 19:47:33.285 2024-02-19 19:57:34.799 \N Enough blue provide home alone https://example.com/ 18663 303630 303630.431731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7330759572859 0 \N \N f 0 \N 0 190231582 0 f f \N \N \N \N 303630 \N 0 0 \N \N f \N 431740 2024-02-19 19:47:55.095 2024-02-19 19:57:56.639 \N Parent often ever. Song modern https://example.com/ 2151 307812 307812.431740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.943806973932 0 \N \N f 0 \N 0 140742916 0 f f \N \N \N \N 307812 \N 0 0 \N \N f \N 431471 2024-02-19 19:03:37.388 2024-02-19 19:13:38.866 \N Board age miss drug sense. Tak https://example.com/ 1439 357135 357135.431471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6514145879933 0 \N \N f 0 \N 0 228183124 0 f f \N \N \N \N 357135 \N 0 0 \N \N f \N 431472 2024-02-19 19:03:42.024 2024-02-19 19:13:42.906 \N Should doctor pressure maybe s https://example.com/ 19690 357049 357049.431472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6892962672568 0 \N \N f 0 \N 0 135220310 0 f f \N \N \N \N 357049 \N 0 0 \N \N f \N 431477 2024-02-19 19:03:58.606 2024-02-19 19:13:59.915 \N Far clearly possible enter. Tu https://example.com/ 18984 356260 356260.431477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8123182458152 0 \N \N f 0 \N 0 35474501 0 f f \N \N \N \N 356260 \N 0 0 \N \N f \N 433249 2024-02-21 00:26:26.909 2024-02-21 00:36:28.516 \N Before wro https://example.com/ 16149 433245 433114.433245.433249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.220163934634 0 \N \N f 0 \N 0 123217456 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 434986 2024-02-22 13:54:11.962 2024-02-22 14:04:12.884 Become full thank head blood family. Computer account be expert adult Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nWi https://example.com/ 16842 \N 434986 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.90803431227688 0 \N \N f 0 \N 0 103338192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432552 2024-02-20 14:56:35.485 2024-02-20 15:06:36.684 \N Company save finally water. Agree choice unti https://example.com/ 1291 432344 432344.432552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7021863054615 0 \N \N f 0 \N 0 75369013 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434345 2024-02-21 22:08:00.231 2024-02-21 22:18:01.802 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask gu https://example.com/ 7913 434343 434343.434345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9012379300574 0 \N \N f 0 \N 0 147954316 0 f f \N \N \N \N 434343 \N 0 0 \N \N f \N 432099 2024-02-20 02:17:08.391 2024-02-20 02:27:09.518 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Da https://example.com/ 1002 432091 429220.430149.430886.431298.432083.432091.432099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.56491381876561 0 \N \N f 0 \N 1 4670199 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 431002 2024-02-19 17:20:19.756 2024-02-19 17:30:21.159 \N Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happe https://example.com/ 19553 430488 430488.431002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82346304091737 0 \N \N f 0 \N 0 191102012 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431475 2024-02-19 19:03:52.087 2024-02-19 19:13:53.003 \N With feel late. Receive one fi https://example.com/ 12507 356515 356515.431475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4224750123256 0 \N \N f 0 \N 0 126022044 0 f f \N \N \N \N 356515 \N 0 0 \N \N f \N 431762 2024-02-19 19:53:06.876 2024-02-19 20:03:09.825 \N Myself candidate idea state si https://example.com/ 5590 293844 293844.431762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.27031425299204 0 \N \N f 0 \N 0 188248698 0 f f \N \N \N \N 293844 \N 0 0 \N \N f \N 431764 2024-02-19 19:53:12.655 2024-02-19 20:03:13.842 \N Structure require feel stateme https://example.com/ 20168 293224 293224.431764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.357939709159361 0 \N \N f 0 \N 0 37768348 0 f f \N \N \N \N 293224 \N 0 0 \N \N f \N 443683 2024-02-29 15:27:24.507 2024-02-29 15:37:25.983 With officer scientist letter one. Partner coach history loss. Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nReality pressure enjoy throughout beyond. Prop https://example.com/ 20102 \N 443683 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 27.6811943805295 0 \N \N f 0 \N 8 107087797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 22960 2022-04-26 10:06:28.12 2023-10-02 00:48:32.703 Customer reach nice. A With officer scientist letter one. https://example.com/ 13143 \N 22960 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4882420708052 0 \N \N f 0 \N 2 88257784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442628 2024-02-28 20:06:43.276 2024-02-28 20:16:45.19 Hundred position represent six morning manage school and. S West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very sta https://example.com/ 20108 \N 442628 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 18.8962785823158 0 \N \N f 0 \N 20 16309943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437935 2024-02-25 04:00:05.048 2024-02-25 04:10:07.031 \N Health catch toward hair https://example.com/ 16965 437723 437723.437935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61520789081261 0 \N \N f 0 \N 1 6834007 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438072 2024-02-25 10:21:13.661 2024-02-25 10:31:14.615 \N Ground https://example.com/ 12561 437935 437723.437935.438072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06279821265275 0 \N \N f 0 \N 0 209987151 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437003 2024-02-24 09:19:05.715 2024-02-24 09:29:06.476 \N Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. https://example.com/ 10586 436996 436996.437003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87568972497669 0 \N \N f 0 \N 1 153261182 0 f f \N \N \N \N 436996 \N 0 0 \N \N f \N 434786 2024-02-22 10:49:32.308 2024-02-22 10:59:33.253 Strong of create prevent choo Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee https://example.com/ 6384 \N 434786 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 25.6781269955571 0 \N \N f 0 \N 0 179133308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438062 2024-02-25 10:12:15.831 2024-02-25 10:22:17.947 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manag https://example.com/ 17184 436895 436895.438062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59907476878559 0 \N \N f 0 \N 0 141897340 0 f f \N \N \N \N 436895 \N 0 0 \N \N f \N 438066 2024-02-25 10:13:44.559 2024-02-25 10:23:45.217 \N Decision budget hit force have. Budget guy hospital former. Involve car https://example.com/ 690 437639 437089.437610.437639.438066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0414606573391 0 \N \N f 0 \N 0 34512134 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 438063 2024-02-25 10:12:34.609 2024-02-25 10:22:36.218 \N Area series street https://example.com/ 5171 437690 437690.438063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3179959323398 0 \N \N f 0 \N 0 174535863 0 f f \N \N \N \N 437690 \N 0 0 \N \N f \N 431767 2024-02-19 19:53:18.633 2024-02-19 20:03:19.867 \N Great look know get. Whatever https://example.com/ 1320 292688 292688.431767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5687301925764 0 \N \N f 0 \N 0 79248659 0 f f \N \N \N \N 292688 \N 0 0 \N \N f \N 434909 2024-02-22 12:45:05.407 2024-02-22 12:55:06.604 Purpose age cover machine. Must in Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another rad https://example.com/ 21178 \N 434909 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 10.82610041533 0 \N \N f 0 \N 0 152834932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444613 2024-03-01 06:22:40.246 2024-03-01 06:32:41.412 \N Every east political drug. Important game subject https://example.com/ 12188 444606 444606.444613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1829141035635 0 \N \N f 0 \N 0 186811836 0 f f \N \N \N \N 444606 \N 0 0 \N \N f \N 444598 2024-03-01 06:02:45.425 2024-03-01 06:12:47.455 \N Not find att https://example.com/ 20433 444558 443577.444558.444598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2789813063972 0 \N \N f 0 \N 0 12031632 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444564 2024-03-01 04:51:35.056 2024-03-01 05:01:36.314 \N Skin summer development benefit note soldier. V https://example.com/ 18680 444561 444561.444564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71874204717731 0 \N \N f 0 \N 0 97364197 0 f f \N \N \N \N 444561 \N 0 0 \N \N f \N 58526 2022-08-13 13:14:33.035 2023-10-02 05:18:10.157 Stage can fish Become season style here. Part color view local beautiful https://example.com/ 18629 \N 58526 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.11074471379587 0 \N \N f 0 \N 2 105653810 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433327 2024-02-21 02:57:22.544 2024-02-21 03:07:23.791 \N Eye million figure n https://example.com/ 618 433282 433282.433327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0765096204892 0 \N \N f 0 \N 3 194677083 0 f f \N \N \N \N 433282 \N 0 0 \N \N f \N 438042 2024-02-25 09:32:55.53 2024-02-25 09:42:56.878 \N Speech radio https://example.com/ 14255 437698 436752.437635.437678.437698.438042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0301432219971 0 \N \N f 0 \N 0 220056377 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 431769 2024-02-19 19:53:23.965 2024-02-19 20:03:25.907 \N Then voice gun. Might beautifu https://example.com/ 17201 292334 292334.431769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.02417210208743 0 \N \N f 0 \N 0 5054632 0 f f \N \N \N \N 292334 \N 0 0 \N \N f \N 431770 2024-02-19 19:53:26.631 2024-02-19 20:03:27.919 \N Then voice gun. Might beautifu https://example.com/ 919 291793 291793.431770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.217898578041 0 \N \N f 0 \N 0 66291350 0 f f \N \N \N \N 291793 \N 0 0 \N \N f \N 434930 2024-02-22 13:00:13.607 2024-02-22 13:10:14.986 \N Program https://example.com/ 21342 434902 434795.434902.434930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6504145388844 0 \N \N f 0 \N 0 1578496 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 432865 2024-02-20 18:32:59.849 2024-02-20 18:43:01.128 \N Line trade last nature number become. Left reduce speech improve sometimes https://example.com/ 7772 432848 432848.432865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.921226806728797 0 \N \N f 0 \N 1 145261114 0 f f \N \N \N \N 432848 \N 0 0 \N \N f \N 442571 2024-02-28 19:01:31.05 2024-02-28 19:11:32.568 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care b https://example.com/ 1571 442551 442551.442571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2807660097227 0 \N \N f 0 \N 2 77653098 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 443296 2024-02-29 11:00:08.912 2024-02-29 11:10:10.564 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Di https://example.com/ 18932 443295 443295.443296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6032927892479 0 \N \N f 0 \N 3 164199096 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444223 2024-02-29 20:31:42.499 2024-02-29 20:41:43.852 \N They wide https://example.com/ 7119 444220 444168.444220.444223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7885192319986 0 \N \N f 0 \N 0 154589728 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 436166 2024-02-23 13:22:20.057 2024-02-23 13:32:21.602 Risk past without recognize series career ei Determine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nScene relate paper hospital. Star cultural stay inside https://example.com/ 19398 \N 436166 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 19.8370233465777 0 \N \N f 0 \N 0 110363502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436209 2024-02-23 13:51:32.138 2024-02-23 14:01:34.159 \N Community least media interest. Senior yet https://example.com/ 8423 436189 436189.436209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3356623891964 0 \N \N f 0 \N 3 226149160 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 430857 2024-02-19 15:29:04.674 2024-02-19 15:39:06.017 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Ni https://example.com/ 18396 430853 430726.430729.430732.430748.430853.430857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2803477873133 0 \N \N f 0 \N 1 220408607 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 443477 2024-02-29 13:43:48.067 2024-02-29 13:53:49.512 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight internatio https://example.com/ 626 443473 443197.443473.443477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5136634010427 0 \N \N f 0 \N 2 149759067 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443473 2024-02-29 13:38:02.251 2024-02-29 13:48:04.125 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put https://example.com/ 20137 443197 443197.443473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2124185745659 0 \N \N f 0 \N 4 65538344 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 432870 2024-02-20 18:34:47.33 2024-02-20 18:44:49.171 \N Single level story sound. Door end upo https://example.com/ 14731 432867 432867.432870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9803395787032 0 \N \N f 0 \N 0 108606437 0 f f \N \N \N \N 432867 \N 0 0 \N \N f \N 439331 2024-02-26 13:51:39.53 2024-02-26 14:01:40.593 \N Them bag because parent see. Young https://example.com/ 20015 439165 439165.439331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7991329558964 0 \N \N f 0 \N 9 240300209 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 431088 2024-02-19 17:36:08.266 2024-02-19 17:46:09.285 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republi https://example.com/ 14015 430770 430770.431088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7753865313933 0 \N \N f 0 \N 2 205148611 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 437861 2024-02-25 02:03:18.004 2024-02-25 02:13:19.875 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog star https://example.com/ 16424 437854 437723.437854.437861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.06855282589002 0 \N \N f 0 \N 4 117129930 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 436217 2024-02-23 13:58:25.131 2024-02-23 14:08:26.622 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper https://example.com/ 18660 436209 436189.436209.436217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3644854932718 0 \N \N f 0 \N 2 83235510 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 444324 2024-02-29 21:47:39.786 2024-02-29 21:57:41.599 \N Rule hope accept blu https://example.com/ 5057 444179 443712.444179.444324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1307412514943 0 \N \N f 0 \N 2 28466852 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 431428 2024-02-19 19:00:23.347 2024-02-19 19:10:24.627 \N Term ok concern experience col https://example.com/ 12483 361762 361762.431428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1485447205738 0 \N \N f 0 \N 0 22042923 0 f f \N \N \N \N 361762 \N 0 0 \N \N f \N 432863 2024-02-20 18:32:18.155 2024-02-20 18:42:19.615 \N Nature cell fact health. Fire pressure https://example.com/ 769 432853 432811.432834.432853.432863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6689175104816 0 \N \N f 0 \N 0 243277073 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 23021 2022-04-26 15:03:58.706 2023-10-02 00:48:35.121 Religious l Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear e https://example.com/ 3686 \N 23021 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7450329746721 0 \N \N f 0 \N 4 27942907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 23119 2022-04-26 19:21:05.835 2023-10-02 00:48:48.881 Authority call ev Network art go experience example him see. Half lay there up start drea https://example.com/ 7903 \N 23119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.6672739211832 0 \N \N f 0 \N 3 24617500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444489 2024-03-01 01:37:44.007 2024-03-01 01:47:44.807 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program https://example.com/ 1044 444324 443712.444179.444324.444489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9317283494265 0 \N \N f 0 \N 1 79445659 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 436125 2024-02-23 12:50:12.135 2024-02-23 13:00:13.584 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Dem https://example.com/ 6335 436053 436028.436053.436125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3682068596621 0 \N \N f 0 \N 6 141338071 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 442436 2024-02-28 17:13:43.796 2024-02-28 17:23:45.146 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nDecade a https://example.com/ 1471 442339 442339.442436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.771547379868 0 \N \N f 0 \N 0 64865981 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 431225 2024-02-19 18:17:25.376 2024-02-19 18:27:26.727 \N Quite teacher accept per agent https://example.com/ 11158 397467 397467.431225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2267950369708 0 \N \N f 0 \N 0 158924825 0 f f \N \N \N \N 397467 \N 0 0 \N \N f \N 443297 2024-02-29 11:00:27.984 2024-02-29 11:10:29.848 \N Reach too suffer story type remember lot. Reveal https://example.com/ 19142 443295 443295.443297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.56962634561826 0 \N \N f 0 \N 10 11302301 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442568 2024-02-28 19:00:04.933 2024-02-28 19:10:05.943 Oil fast organization discussion board nation hotel. Recent challenge \N https://example.com/ 19943 \N 442568 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.00212235849356 0 \N \N f 0 \N 1 154104189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444282 2024-02-29 21:00:05.829 2024-02-29 21:10:08.259 Not reveal allow arm mill \N https://example.com/ 6653 \N 444282 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.4742844925882 0 \N \N f 0 \N 1 191126652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438046 2024-02-25 09:36:13.962 2024-02-25 09:46:15.143 \N Hear direction have https://example.com/ 18177 437886 437775.437886.438046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.42585326189151 0 \N \N f 0 \N 0 219462434 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 438052 2024-02-25 09:51:19.444 2024-02-25 10:01:20.509 \N Spend democratic second find president walk model. Challenge face section busines https://example.com/ 12779 437805 437775.437800.437805.438052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6014913153242 0 \N \N f 0 \N 0 231746330 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 438048 2024-02-25 09:37:43.231 2024-02-25 09:47:44.81 \N Your firm section wall https://example.com/ 10409 436326 436326.438048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4823235348436 0 \N \N f 0 \N 0 233232987 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 444705 2024-03-01 10:04:35.841 2024-03-01 10:14:37.109 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer https://example.com/ 13216 444522 444522.444705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85251457243805 0 \N \N f 0 \N 0 207232154 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N 431830 2024-02-19 20:23:57.706 2024-02-19 20:33:59.025 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education comp https://example.com/ 692 431401 431401.431830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8411598878608 0 \N \N f 0 \N 0 110361914 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 438144 2024-02-25 11:47:30.299 2024-02-25 11:57:31.307 \N Beyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nDoor wrong under assume get wear. Full least wro https://example.com/ 2342 426811 426811.438144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3350080536386 0 \N \N f 0 \N 0 65980527 0 f f \N \N \N \N 426811 \N 0 0 \N \N f \N 436939 2024-02-24 06:02:51.176 2024-02-24 06:12:52.691 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagi https://example.com/ 14385 436935 436935.436939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4368480286064 0 \N \N f 0 \N 0 147008551 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N 436946 2024-02-24 06:41:40.161 2024-02-24 06:51:41.311 \N Order care many https://example.com/ 8796 436937 436934.436937.436946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.602071820433 0 \N \N f 0 \N 0 227925911 0 f f \N \N \N \N 436934 \N 0 0 \N \N f \N 442442 2024-02-28 17:15:51.471 2024-02-28 17:25:53.27 \N Spend democratic second find president walk model. Challenge face section business political. https://example.com/ 5293 442395 442170.442225.442379.442388.442395.442442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70202280240768 0 \N \N f 0 \N 0 218773336 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 431183 2024-02-19 18:14:18.983 2024-02-19 18:24:20.746 \N Think cover scientist financia https://example.com/ 21274 407173 407173.431183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7238557961723 0 \N \N f 0 \N 0 93734381 0 f f \N \N \N \N 407173 \N 0 0 \N \N f \N 431185 2024-02-19 18:14:25.735 2024-02-19 18:24:26.812 \N Station mean dinner level well https://example.com/ 17014 406783 406783.431185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3596920693945 0 \N \N f 0 \N 0 204080851 0 f f \N \N \N \N 406783 \N 0 0 \N \N f \N 431186 2024-02-19 18:14:35.658 2024-02-19 18:24:36.951 \N Author travel realize. Face re https://example.com/ 20704 406671 406671.431186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0566541766911 0 \N \N f 0 \N 0 81347368 0 f f \N \N \N \N 406671 \N 0 0 \N \N f \N 439378 2024-02-26 14:27:44.21 2024-02-26 14:37:45.643 \N Program cu https://example.com/ 739 439371 439358.439371.439378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14205980567615 0 \N \N f 0 \N 0 21597969 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 431188 2024-02-19 18:14:39.06 2024-02-19 18:24:41.009 \N Speak specific energy internat https://example.com/ 10668 406483 406483.431188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0101452182846 0 \N \N f 0 \N 0 93868567 0 f f \N \N \N \N 406483 \N 0 0 \N \N f \N 431191 2024-02-19 18:14:47.507 2024-02-19 18:24:48.474 \N Research either follow across https://example.com/ 5703 405427 405427.431191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06419736169588 0 \N \N f 0 \N 0 149053221 0 f f \N \N \N \N 405427 \N 0 0 \N \N f \N 432414 2024-02-20 12:24:32.446 2024-02-20 12:34:33.923 \N Past ever https://example.com/ 18543 432320 432320.432414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6715799042811 0 \N \N f 0 \N 13 166962724 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 66443 2022-09-05 06:36:16.069 2023-10-02 05:43:13.649 Small enjoy manag Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy se https://example.com/ 10638 \N 66443 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.02155603510919 0 \N \N f 0 \N 2 217581364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431195 2024-02-19 18:14:56.996 2024-02-19 18:24:58.521 \N Remember before box of open. A https://example.com/ 16145 404356 404356.431195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1426631645443 0 \N \N f 0 \N 0 178993403 0 f f \N \N \N \N 404356 \N 0 0 \N \N f \N 431196 2024-02-19 18:14:59.649 2024-02-19 18:25:01.339 \N End and certainly language law https://example.com/ 17091 404249 404249.431196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.18823568151311 0 \N \N f 0 \N 0 134199863 0 f f \N \N \N \N 404249 \N 0 0 \N \N f \N 431197 2024-02-19 18:15:02.733 2024-02-19 18:25:03.935 \N End inside like them according https://example.com/ 5522 404172 404172.431197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.296867614366 0 \N \N f 0 \N 0 227573222 0 f f \N \N \N \N 404172 \N 0 0 \N \N f \N 431198 2024-02-19 18:15:05.494 2024-02-19 18:25:06.57 \N Happen include car man crime. https://example.com/ 16536 403898 403898.431198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.325381720609 0 \N \N f 0 \N 0 220873662 0 f f \N \N \N \N 403898 \N 0 0 \N \N f \N 431201 2024-02-19 18:15:13.613 2024-02-19 18:25:14.972 \N Middle city always. Benefit wa https://example.com/ 7682 403427 403427.431201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.9229690544942 0 \N \N f 0 \N 0 103629071 0 f f \N \N \N \N 403427 \N 0 0 \N \N f \N 431203 2024-02-19 18:15:18.909 2024-02-19 18:25:19.99 \N Community us end alone. Admit https://example.com/ 985 403289 403289.431203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3145260767111 0 \N \N f 0 \N 0 155518127 0 f f \N \N \N \N 403289 \N 0 0 \N \N f \N 431210 2024-02-19 18:15:52.805 2024-02-19 18:25:54.212 \N Per seat key down relationship https://example.com/ 6384 401806 401806.431210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4629863346212 0 \N \N f 0 \N 0 169640242 0 f f \N \N \N \N 401806 \N 0 0 \N \N f \N 433727 2024-02-21 13:02:32.776 2024-02-21 13:12:33.718 \N Se https://example.com/ 15100 433723 433588.433631.433723.433727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.876743155016 0 \N \N f 0 \N 0 13458425 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 431204 2024-02-19 18:15:21.396 2024-02-19 18:25:22.691 \N Question produce break listen https://example.com/ 10094 402363 402363.431204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3096590369867 0 \N \N f 0 \N 0 188753585 0 f f \N \N \N \N 402363 \N 0 0 \N \N f \N 79167 2022-10-09 12:16:48.979 2022-10-09 12:16:48.979 Film happe Each any growth human seek or expert data. Sit financial know fee https://example.com/ 1611 \N 79167 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9673975274047 0 \N \N f 0 \N 4 448074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431205 2024-02-19 18:15:23.596 2024-02-19 18:25:24.711 \N Move treatment rock open. Ever https://example.com/ 16447 402359 402359.431205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7874620910729 0 \N \N f 0 \N 0 247367185 0 f f \N \N \N \N 402359 \N 0 0 \N \N f \N 443517 2024-02-29 14:05:31.341 2024-02-29 14:15:32.665 \N Anyone himself set window report. Short president give part me. One new speech. Phon https://example.com/ 19576 443295 443295.443517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3576337277674 0 \N \N f 0 \N 0 76103756 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 431211 2024-02-19 18:15:55.435 2024-02-19 18:25:56.836 \N Cultural everyone partner bed https://example.com/ 11999 401763 401763.431211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7807101666233 0 \N \N f 0 \N 0 45269254 0 f f \N \N \N \N 401763 \N 0 0 \N \N f \N 443238 2024-02-29 09:54:26.857 2024-02-29 10:04:27.803 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nTax here if project. Th https://example.com/ 6229 441774 441742.441774.443238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3299365829798 0 \N \N f 0 \N 0 21161966 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N 443167 2024-02-29 07:53:42.958 2024-02-29 08:03:44.946 \N Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strat https://example.com/ 946 442835 442704.442835.443167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2483255564029 0 \N \N f 0 \N 0 98620180 0 f f \N \N \N \N 442704 \N 0 0 \N \N f \N 431212 2024-02-19 18:15:57.496 2024-02-19 18:25:58.846 \N Detail discussion line around. https://example.com/ 8162 400872 400872.431212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36446389671269 0 \N \N f 0 \N 0 15216238 0 f f \N \N \N \N 400872 \N 0 0 \N \N f \N 431214 2024-02-19 18:16:05.459 2024-02-19 18:26:06.896 \N Dark address be federal study. https://example.com/ 17714 400296 400296.431214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.825529496386359 0 \N \N f 0 \N 0 183595359 0 f f \N \N \N \N 400296 \N 0 0 \N \N f \N 431215 2024-02-19 18:16:07.597 2024-02-19 18:26:08.58 \N American animal bad responsibi https://example.com/ 20430 400120 400120.431215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2974953196156 0 \N \N f 0 \N 0 132206025 0 f f \N \N \N \N 400120 \N 0 0 \N \N f \N 431216 2024-02-19 18:16:09.766 2024-02-19 18:26:10.768 \N Off should democratic notice o https://example.com/ 14705 399731 399731.431216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0089325455782 0 \N \N f 0 \N 0 62394974 0 f f \N \N \N \N 399731 \N 0 0 \N \N f \N 431219 2024-02-19 18:16:17.401 2024-02-19 18:26:19.182 \N Increase agent management assu https://example.com/ 16789 399308 399308.431219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.921170513768 0 \N \N f 0 \N 0 140281259 0 f f \N \N \N \N 399308 \N 0 0 \N \N f \N 431221 2024-02-19 18:16:23.023 2024-02-19 18:26:24.647 \N From democratic trial American https://example.com/ 12738 398470 398470.431221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.82659527384217 0 \N \N f 0 \N 0 34804331 0 f f \N \N \N \N 398470 \N 0 0 \N \N f \N 431222 2024-02-19 18:16:25.619 2024-02-19 18:26:26.652 \N Political official world diffe https://example.com/ 5757 397861 397861.431222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4139970513199 0 \N \N f 0 \N 0 207937476 0 f f \N \N \N \N 397861 \N 0 0 \N \N f \N 431226 2024-02-19 18:17:27.542 2024-02-19 18:27:28.731 \N Least start time do. Occur bet https://example.com/ 15728 397434 397434.431226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.457497594807 0 \N \N f 0 \N 0 52642929 0 f f \N \N \N \N 397434 \N 0 0 \N \N f \N 431228 2024-02-19 18:17:33.423 2024-02-19 18:27:34.743 \N Remember draw realize. Include https://example.com/ 21040 397280 397280.431228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71160248633529 0 \N \N f 0 \N 0 133689692 0 f f \N \N \N \N 397280 \N 0 0 \N \N f \N 431230 2024-02-19 18:17:37.727 2024-02-19 18:27:38.753 \N Activity just seem enter devel https://example.com/ 16965 397082 397082.431230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4978777054211 0 \N \N f 0 \N 0 238411496 0 f f \N \N \N \N 397082 \N 0 0 \N \N f \N 431232 2024-02-19 18:17:43.405 2024-02-19 18:27:44.77 \N Small career baby democratic n https://example.com/ 14169 396641 396641.431232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9187866495555 0 \N \N f 0 \N 0 164699361 0 f f \N \N \N \N 396641 \N 0 0 \N \N f \N 431235 2024-02-19 18:17:53.777 2024-02-19 18:27:54.774 \N Against involve moment myself https://example.com/ 14472 396048 396048.431235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78815049964067 0 \N \N f 0 \N 0 213125698 0 f f \N \N \N \N 396048 \N 0 0 \N \N f \N 431234 2024-02-19 18:17:48.982 2024-02-19 18:27:49.771 \N Financial all deep why car sea https://example.com/ 16250 396141 396141.431234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9761048195716 0 \N \N f 0 \N 0 128479275 0 f f \N \N \N \N 396141 \N 0 0 \N \N f \N 432207 2024-02-20 07:20:53.113 2024-02-20 07:30:54.927 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challeng https://example.com/ 803 432206 430330.431982.432202.432206.432207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4581532403612 0 \N \N f 0 \N 1 58077462 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 432217 2024-02-20 07:35:02.809 2024-02-20 07:45:03.992 \N Machine thus avoid re https://example.com/ 15719 432211 432211.432217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16650304327031 0 \N \N f 0 \N 1 207908109 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 432837 2024-02-20 18:12:08.894 2024-02-20 18:22:09.899 \N Way majority believe feeling. Their s https://example.com/ 848 432736 432736.432837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8404487029963 0 \N \N f 0 \N 2 110154699 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 84791 2022-10-23 17:08:36.949 2022-10-23 17:08:36.949 Far clearly possible e Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nStandard choose white. Yard would c https://example.com/ 19193 \N 84791 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.935963890924221 0 \N \N f 0 \N 1 161964115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431237 2024-02-19 18:17:58.886 2024-02-19 18:27:59.912 \N Their bed hear popular fine gu https://example.com/ 18306 395180 395180.431237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7547710436126 0 \N \N f 0 \N 0 75217111 0 f f \N \N \N \N 395180 \N 0 0 \N \N f \N 441830 2024-02-28 12:29:37.012 2024-02-28 12:39:38.933 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. https://example.com/ 9426 441742 441742.441830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7052312197647 0 \N \N f 0 \N 1 163631335 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N 431238 2024-02-19 18:18:00.892 2024-02-19 18:28:01.935 \N Activity just seem enter devel https://example.com/ 17415 395087 395087.431238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63436827669771 0 \N \N f 0 \N 0 191046223 0 f f \N \N \N \N 395087 \N 0 0 \N \N f \N 431239 2024-02-19 18:18:03.054 2024-02-19 18:28:04.968 \N Race site manager blood. Presi https://example.com/ 19652 394953 394953.431239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32865468176666 0 \N \N f 0 \N 0 146822181 0 f f \N \N \N \N 394953 \N 0 0 \N \N f \N 435972 2024-02-23 09:37:25.369 2024-02-23 09:47:26.681 \N Science sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Char https://example.com/ 18124 435950 435944.435950.435972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2469358609196 0 \N \N f 0 \N 2 139570630 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 437259 2024-02-24 14:25:51.042 2024-02-24 14:35:51.977 \N Blue the that local central middle themselves effect. Concern seat push spo https://example.com/ 14152 436909 436909.437259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.966866344488402 0 \N \N f 0 \N 0 223800618 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 430945 2024-02-19 16:37:04.621 2024-02-19 16:47:06.206 \N Order care many fire per feel bill exist. Ready reach poor true. Crime away prep https://example.com/ 9333 430934 430934.430945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4074988006704 0 \N \N f 0 \N 0 159964154 0 f f \N \N \N \N 430934 \N 0 0 \N \N f \N 440897 2024-02-27 18:26:20.409 2024-02-27 18:36:21.798 \N Morning garden pers https://example.com/ 19996 440886 440886.440897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6469255691207 0 \N \N f 0 \N 0 40248391 0 f f \N \N \N \N 440886 \N 0 0 \N \N f \N 438058 2024-02-25 10:00:04.884 2024-02-25 10:00:11.266 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok orde https://example.com/ 17514 438057 438057.438058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9528855793582 0 \N \N f 0 \N 0 78435942 0 f f \N \N \N \N 438057 \N 0 0 \N \N f \N 438049 2024-02-25 09:37:56.713 2024-02-25 09:47:58.379 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody https://example.com/ 10728 437775 437775.438049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7855315195858 0 \N \N f 0 \N 0 134419160 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 431245 2024-02-19 18:20:19.011 2024-02-19 18:30:20.812 \N Company kid protect determine https://example.com/ 20562 394457 394457.431245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3109521246005 0 \N \N f 0 \N 0 121568291 0 f f \N \N \N \N 394457 \N 0 0 \N \N f \N 431251 2024-02-19 18:20:35.463 2024-02-19 18:30:36.981 \N Hot society statement bed watc https://example.com/ 19938 392804 392804.431251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4797117731329 0 \N \N f 0 \N 0 144990275 0 f f \N \N \N \N 392804 \N 0 0 \N \N f \N 431252 2024-02-19 18:20:37.758 2024-02-19 18:30:38.936 \N Almost about me amount daughte https://example.com/ 19174 392661 392661.431252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.871864607049 0 \N \N f 0 \N 0 161442425 0 f f \N \N \N \N 392661 \N 0 0 \N \N f \N 443548 2024-02-29 14:25:53.615 2024-02-29 14:35:54.932 \N Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep da https://example.com/ 20980 443295 443295.443548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.839768823761 0 \N \N f 0 \N 6 21885150 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 86850 2022-10-28 20:32:15.211 2023-03-09 12:17:43.92 Future next exist Interna https://example.com/ 21178 \N 86850 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.5203151427857 0 \N \N f 0 \N 4 90854885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431255 2024-02-19 18:20:45.194 2024-02-19 18:30:46.553 \N Plant development someone incl https://example.com/ 782 392405 392405.431255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3597571571981 0 \N \N f 0 \N 0 193363364 0 f f \N \N \N \N 392405 \N 0 0 \N \N f \N 431256 2024-02-19 18:20:47.226 2024-02-19 18:30:48.633 \N Check worry radio fine stuff. https://example.com/ 20306 392338 392338.431256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2621383861769 0 \N \N f 0 \N 0 86731720 0 f f \N \N \N \N 392338 \N 0 0 \N \N f \N 444472 2024-03-01 01:15:11.197 2024-03-01 01:25:13.643 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer b https://example.com/ 5527 444365 444365.444472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4749083959524 0 \N \N f 0 \N 1 94294927 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444469 2024-03-01 01:02:42.053 2024-03-01 01:12:43.681 Charge hold reveal easy rise method leave Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should https://example.com/ 12774 \N 444469 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.6186508767526 0 \N \N f 0 \N 0 12362112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444222 2024-02-29 20:31:36.497 2024-02-29 20:41:37.835 \N Somebody he https://example.com/ 12049 444176 444168.444176.444222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77072192844556 0 \N \N f 0 \N 0 128997960 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431258 2024-02-19 18:20:51.665 2024-02-19 18:30:52.67 \N West tend alone prepare build https://example.com/ 18005 392210 392210.431258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1975999103985 0 \N \N f 0 \N 0 147542797 0 f f \N \N \N \N 392210 \N 0 0 \N \N f \N 431259 2024-02-19 18:21:55.653 2024-02-19 18:31:56.88 \N Last expert dark compare nearl https://example.com/ 2088 387200 387200.431259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0947649080257 0 \N \N f 0 \N 0 179761871 0 f f \N \N \N \N 387200 \N 0 0 \N \N f \N 437239 2024-02-24 14:19:47.099 2024-02-24 14:29:49.255 \N Article discussion court site share past. Hot character serve box four. Lose point visit include the case let world. R https://example.com/ 1433 437233 437233.437239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0236340311846 0 \N \N f 0 \N 0 220749813 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444493 2024-03-01 02:00:04.636 2024-03-01 02:10:05.77 Least nor building physical wide special make. \N https://example.com/ 13574 \N 444493 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.0548785133997 0 \N \N f 0 \N 1 179011778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431266 2024-02-19 18:22:23.737 2024-02-19 18:32:24.334 \N These world usually ground gro https://example.com/ 4314 385622 385622.431266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9514308907548 0 \N \N f 0 \N 0 208722912 0 f f \N \N \N \N 385622 \N 0 0 \N \N f \N 436699 2024-02-23 22:02:54.035 2024-02-23 22:12:56.232 First right set. Dinner third difficult next Truth training network government behavior decade. Beyond sound g https://example.com/ 5128 \N 436699 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 22.0930872562563 0 \N \N f 0 \N 3 220003307 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1380 2021-08-25 16:24:24.716 2023-10-01 23:49:13.304 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nRepublican total impact of. North office part. Whom store usually alread https://example.com/ 20340 1375 1357.1375.1380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3501075631184 0 \N \N f 0 \N 2 38722568 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 442688 2024-02-28 20:45:45.598 2024-02-28 20:55:47.218 \N Enough blue provide home alone reality attack certain. Short s https://example.com/ 3409 442529 442529.442688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02575917942541 0 \N \N f 0 \N 0 51604800 0 f f \N \N \N \N 442529 \N 0 0 \N \N f \N 444237 2024-02-29 20:39:00.217 2024-02-29 20:49:01.254 \N Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself sing https://example.com/ 16753 444236 444236.444237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8163806318755 0 \N \N f 0 \N 0 12004753 0 f f \N \N \N \N 444236 \N 0 0 \N \N f \N 436693 2024-02-23 21:57:11.212 2024-02-23 22:07:13.634 \N Decide up red either war https://example.com/ 8245 436593 436593.436693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6680855074944 0 \N \N f 0 \N 0 23423744 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 437606 2024-02-24 19:03:40.608 2024-02-24 19:13:42.503 \N Language effort sport mention guess https://example.com/ 8459 437604 437044.437560.437588.437591.437604.437606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7794743342779 0 \N \N f 0 \N 0 63206573 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 430992 2024-02-19 17:10:06.657 2024-02-19 17:20:07.496 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. Vi https://example.com/ 17592 430091 429958.430041.430042.430043.430045.430051.430060.430091.430992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89163467253503 0 \N \N f 0 \N 0 108638613 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 439453 2024-02-26 15:20:43.687 2024-02-26 15:30:45.638 \N Animal character se https://example.com/ 18314 439386 439082.439386.439453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1782459909746 0 \N \N f 0 \N 0 16798037 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 432254 2024-02-20 08:48:05.789 2024-02-20 08:58:07.622 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note https://example.com/ 2514 432003 432003.432254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9853291417418 0 \N \N f 0 \N 0 188655678 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 444219 2024-02-29 20:28:48.621 2024-02-29 20:38:49.515 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Kno https://example.com/ 1488 436981 436981.444219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9970288881219 0 \N \N f 0 \N 0 137223150 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 432200 2024-02-20 07:11:27.401 2024-02-20 07:21:29.305 \N Call economy candidate but feeling third owner. Over either rock you. Vote age thre https://example.com/ 4115 432052 432052.432200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0215441299988 0 \N \N f 0 \N 0 215801770 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 434097 2024-02-21 17:59:32.235 2024-02-21 18:09:32.993 Scientist its surface arrive world de Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden m https://example.com/ 20198 \N 434097 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.532545219859 0 \N \N f 0 \N 2 176685145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444227 2024-02-29 20:32:26.153 2024-02-29 20:42:26.996 \N Economic https://example.com/ 17526 444188 444015.444188.444227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1376847681435 0 \N \N f 0 \N 0 179773324 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444152 2024-02-29 19:50:42.932 2024-02-29 20:00:44.642 Black leg through occur possible century far. Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action examp https://example.com/ 18231 \N 444152 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 5.2459474817373 0 \N \N f 0 \N 0 213617011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444491 2024-03-01 01:56:52.478 2024-03-01 02:06:54.238 \N Key https://example.com/ 15890 444168 444168.444491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95146210354062 0 \N \N f 0 \N 0 45362153 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444492 2024-03-01 01:57:28.174 2024-03-01 02:07:29.765 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accep https://example.com/ 15890 443197 443197.444492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6476937494565 0 \N \N f 0 \N 0 143217179 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 444494 2024-03-01 02:00:05.585 2024-03-01 02:10:07.794 \N Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until de https://example.com/ 20201 444493 444493.444494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.78677305475095 0 \N \N f 0 \N 0 150248706 0 f f \N \N \N \N 444493 \N 0 0 \N \N f \N 444373 2024-02-29 22:40:47.175 2024-02-29 22:50:48.499 \N Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry com https://example.com/ 1773 443268 443268.444373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5990685245455 0 \N \N f 0 \N 0 952551 0 f f \N \N \N \N 443268 \N 0 0 \N \N f \N 1398 2021-08-25 20:01:24.264 2023-10-01 23:49:16.728 \N Republican star int https://example.com/ 5306 1366 1359.1360.1366.1398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.56101163372821 0 \N \N f 0 \N 0 114800856 0 f f \N \N \N \N 1359 \N 0 0 \N \N f \N 444503 2024-03-01 02:29:43.814 2024-03-01 02:39:45.623 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. W https://example.com/ 2952 443810 443593.443810.444503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8124997654476 0 \N \N f 0 \N 0 161215433 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 430941 2024-02-19 16:34:32.029 2024-02-19 16:44:33.056 \N Yourself debate term during boy. Significant step line. Current learn shake n https://example.com/ 12278 430834 430330.430561.430567.430834.430941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0998527691075 0 \N \N f 0 \N 0 149092466 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 432459 2024-02-20 13:16:21.242 2024-02-20 13:26:22.062 \N Religious leg forward yes project threat ahead art. Growth he break ahead signific https://example.com/ 17714 432281 432135.432281.432459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20639700374301 0 \N \N f 0 \N 1 209473195 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 437781 2024-02-25 00:09:51.913 2024-02-25 00:19:52.724 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote https://example.com/ 1577 437737 437720.437737.437781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3199414467619 0 \N \N f 0 \N 0 209721811 0 f f \N \N \N \N 437720 \N 0 0 \N \N f \N 437280 2024-02-24 14:40:02.473 2024-02-24 14:50:03.638 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect https://example.com/ 18170 437218 437218.437280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1671414094407 0 \N \N f 0 \N 0 96650168 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 439290 2024-02-26 13:28:12.854 2024-02-26 13:38:13.961 \N Republican total impact of. North office part. Whom https://example.com/ 16259 439139 439139.439290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82460787270107 0 \N \N f 0 \N 0 19659449 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 432104 2024-02-20 02:23:52.033 2024-02-20 02:33:54.009 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next pr https://example.com/ 9084 432099 429220.430149.430886.431298.432083.432091.432099.432104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24151276039072 0 \N \N f 0 \N 0 249845286 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 432083 2024-02-20 01:23:35.535 2024-02-20 01:33:36.819 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arriv https://example.com/ 20738 431298 429220.430149.430886.431298.432083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.436776406945647 0 \N \N f 0 \N 4 36224840 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 434309 2024-02-21 21:32:45.266 2024-02-21 21:42:47.21 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\n https://example.com/ 1245 434278 434278.434309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1889283656294 0 \N \N f 0 \N 3 246175141 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 437958 2024-02-25 05:16:51.047 2024-02-25 05:26:52.415 \N Trade gas word. Player draw close by. Populati https://example.com/ 11609 437769 437769.437958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6137827199195 0 \N \N f 0 \N 2 5716486 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 438074 2024-02-25 10:27:34.414 2024-02-25 10:37:35.438 \N Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone ro https://example.com/ 19843 437980 437769.437958.437980.438074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01080828062254 0 \N \N f 0 \N 0 236711230 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 431159 2024-02-19 18:01:31.617 2024-02-19 18:11:33.04 \N B https://example.com/ 19662 431142 431124.431131.431140.431142.431159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7886035785153 0 \N \N f 0 \N 0 107213756 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 431127 2024-02-19 17:44:40.566 2024-02-19 17:54:41.749 \N Thous https://example.com/ 1291 431103 413720.431103.431127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0267927400638 0 \N \N f 0 \N 0 203184694 0 f f \N \N \N \N 413720 \N 0 0 \N \N f \N 431103 2024-02-19 17:40:19.545 2024-02-19 17:50:21.024 \N Police do base plan how. Her a https://example.com/ 4043 413720 413720.431103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8359013900495 0 \N \N f 0 \N 1 226539201 0 f f \N \N \N \N 413720 \N 0 0 \N \N f \N 444525 2024-03-01 03:24:37.892 2024-03-01 03:34:38.922 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institut https://example.com/ 21172 443336 443295.443336.444525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0067001344554 0 \N \N f 0 \N 0 221038422 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 438161 2024-02-25 12:02:26.079 2024-02-25 12:12:27.822 \N Every good development clearly poor. Fact former improve here yo https://example.com/ 16839 438159 438093.438159.438161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5880531440918 0 \N \N f 0 \N 1 236360742 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444761 2024-03-01 10:53:37.441 2024-03-01 11:03:39.452 \N Ask arm interview player. Director data order season. My total blac https://example.com/ 14552 443514 443272.443514.444761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.079636187676 0 \N \N f 0 \N 0 29727319 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444499 2024-03-01 02:25:22.904 2024-03-01 02:35:24.127 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Re https://example.com/ 2203 443593 443593.444499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4840677066934 0 \N \N f 0 \N 0 138313051 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 444747 2024-03-01 10:42:59.487 2024-03-01 10:53:01.902 \N Deep government cold west. Act computer vote parti https://example.com/ 19507 444739 444739.444747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.12729815724112 0 \N \N f 0 \N 1 213716896 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444729 2024-03-01 10:25:05.021 2024-03-01 10:35:06.894 \N Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ag https://example.com/ 1737 444676 444674.444676.444729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72903149038171 0 \N \N f 0 \N 0 53685398 0 f f \N \N \N \N 444674 \N 0 0 \N \N f \N 438076 2024-02-25 10:31:44.945 2024-02-25 10:41:46.547 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk mis https://example.com/ 13246 437945 437524.437945.438076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4211251411001 0 \N \N f 0 \N 0 165606440 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 430886 2024-02-19 15:54:31.125 2024-02-19 16:04:32.156 \N Speak organization https://example.com/ 1162 430149 429220.430149.430886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.71310545596886 0 \N \N f 0 \N 7 191193547 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 437290 2024-02-24 14:43:19.056 2024-02-24 14:53:20.213 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit inst https://example.com/ 17106 437081 436752.437081.437290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4131161401008 0 \N \N f 0 \N 1 210039724 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 431848 2024-02-19 20:39:42.164 2024-02-19 20:49:43.398 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nIf lose particular record natural camera good. Season serve someone leg https://example.com/ 664 430770 430770.431848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0998924040445 0 \N \N f 0 \N 3 141832784 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 436774 2024-02-24 00:20:25.44 2024-02-24 00:30:26.731 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employe https://example.com/ 9418 436773 436752.436773.436774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81045949187165 0 \N \N f 0 \N 0 151370055 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 431426 2024-02-19 19:00:18.044 2024-02-19 19:10:19.572 \N Eye million figure now as coll https://example.com/ 1720 362202 362202.431426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8092672230839 0 \N \N f 0 \N 0 101990318 0 f f \N \N \N \N 362202 \N 0 0 \N \N f \N 444512 2024-03-01 02:52:11.515 2024-03-01 03:02:12.487 \N Reality deal sort professional try him product. People writer religious https://example.com/ 14385 444168 444168.444512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46301388398219 0 \N \N f 0 \N 0 7066400 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 51969 2022-07-31 01:45:38.804 2023-10-02 05:00:04.72 Race civil toda \N https://example.com/ 12139 \N 51969 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6143600866246 0 \N \N f 0 \N 3 88989480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437287 2024-02-24 14:42:27.846 2024-02-24 14:52:28.906 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something pla https://example.com/ 18673 437218 437218.437287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1860790272937 0 \N \N f 0 \N 3 209826099 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 430978 2024-02-19 16:58:44.38 2024-02-19 17:08:45.32 \N May https://example.com/ 954 430917 430549.430560.430781.430912.430917.430978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79644590613076 0 \N \N f 0 \N 0 168126712 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 430979 2024-02-19 16:58:56.903 2024-02-19 17:08:58.424 \N Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase ou https://example.com/ 17106 430970 430607.430964.430970.430979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6917501574797 0 \N \N f 0 \N 0 36833081 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 444301 2024-02-29 21:15:45.403 2024-02-29 21:25:47.555 \N Speech r https://example.com/ 7389 444220 444168.444220.444301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.18582775577426 0 \N \N f 0 \N 0 241331418 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 437437 2024-02-24 16:27:25.213 2024-02-24 16:37:26.191 \N Think cover scientist financial attention he word. World laugh partner part. https://example.com/ 20837 437218 437218.437437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.398019468036 0 \N \N f 0 \N 7 5195669 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 437439 2024-02-24 16:29:26.757 2024-02-24 16:39:27.755 \N Edge environment still at mean camera. Almost talk event evening week whose. Standa https://example.com/ 15617 437437 437218.437437.437439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.26298640587506 0 \N \N f 0 \N 5 138473621 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 431435 2024-02-19 19:00:46.451 2024-02-19 19:10:47.879 \N Product analysis affect certai https://example.com/ 19909 360806 360806.431435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7141487788067 0 \N \N f 0 \N 0 200447579 0 f f \N \N \N \N 360806 \N 0 0 \N \N f \N 431467 2024-02-19 19:02:12.802 2024-02-19 19:12:13.905 \N Range network baby that. Smile https://example.com/ 21481 369828 369828.431467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7141324244621 0 \N \N f 0 \N 0 173546526 0 f f \N \N \N \N 369828 \N 0 0 \N \N f \N 437466 2024-02-24 16:54:33.9 2024-02-24 17:04:36.069 \N Summer past television what in. Find give movement certain visit race. Many https://example.com/ 1803 437454 437454.437466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1993353174149 0 \N \N f 0 \N 0 49004056 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 2010 2021-09-12 17:06:58.099 2023-10-01 23:51:03.553 Kitchen already store investm Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nImprove different https://example.com/ 9078 \N 2010 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.0846452350387 0 \N \N f 0 \N 6 62773948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432252 2024-02-20 08:45:55.091 2024-02-20 08:55:56.876 \N Never whose degree. https://example.com/ 20470 431013 428435.431013.432252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3291408978484 0 \N \N f 0 \N 0 36678098 0 f f \N \N \N \N 428435 \N 0 0 \N \N f \N 437476 2024-02-24 17:03:13.672 2024-02-24 17:13:16.263 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nAvoid avoid https://example.com/ 2741 437455 437218.437437.437439.437443.437455.437476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29893109874073 0 \N \N f 0 \N 2 179589715 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 430980 2024-02-19 17:00:06.436 2024-02-19 17:10:07.435 \N Skin summer development benefit note soldier. Variou https://example.com/ 11450 430626 430626.430980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1185877203099 0 \N \N f 0 \N 0 77913173 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430961 2024-02-19 16:47:20.352 2024-02-19 16:57:21.503 \N Stage can fish building senior. Through po https://example.com/ 6515 430626 430626.430961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1813018645706 0 \N \N f 0 \N 0 17676251 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430916 2024-02-19 16:19:17.041 2024-02-19 16:29:18.738 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network differe https://example.com/ 13097 430770 430770.430916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5402744488446 0 \N \N f 0 \N 1 161896586 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 438162 2024-02-25 12:02:43.102 2024-02-25 12:12:44.506 \N Spend democratic second find president https://example.com/ 21480 437769 437769.438162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.488171077832646 0 \N \N f 0 \N 0 105070909 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 431919 2024-02-19 21:52:28.951 2024-02-19 22:02:29.894 \N Majority member tend give recent. Degree body five society los https://example.com/ 21014 431848 430770.431848.431919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8388853743484 0 \N \N f 0 \N 0 146426161 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 431440 2024-02-19 19:01:00.315 2024-02-19 19:11:01.512 \N Kitchen already store investme https://example.com/ 16970 360262 360262.431440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04234377394717 0 \N \N f 0 \N 0 138008113 0 f f \N \N \N \N 360262 \N 0 0 \N \N f \N 431431 2024-02-19 19:00:33.099 2024-02-19 19:10:34.728 \N Word around effect game light https://example.com/ 14267 360922 360922.431431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.749868592871259 0 \N \N f 0 \N 0 163539881 0 f f \N \N \N \N 360922 \N 0 0 \N \N f \N 444721 2024-03-01 10:18:14.502 2024-03-01 10:28:15.425 \N Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any whe https://example.com/ 21389 444704 444700.444704.444721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8537414370136 0 \N \N f 0 \N 0 168818856 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 442881 2024-02-28 23:39:51.813 2024-02-28 23:49:53.195 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share compan https://example.com/ 18630 441695 441695.442881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2267211915933 0 \N \N f 0 \N 0 74771684 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 431439 2024-02-19 19:00:57.994 2024-02-19 19:10:59.508 \N Beyond song throw blood hard. https://example.com/ 1712 360427 360427.431439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.100750988656 0 \N \N f 0 \N 0 79204902 0 f f \N \N \N \N 360427 \N 0 0 \N \N f \N 431437 2024-02-19 19:00:52.742 2024-02-19 19:10:53.932 \N Fly include one church TV air. https://example.com/ 16816 360659 360659.431437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2738891946742 0 \N \N f 0 \N 0 171791078 0 f f \N \N \N \N 360659 \N 0 0 \N \N f \N 431447 2024-02-19 19:01:18.235 2024-02-19 19:11:19.325 \N After way challenge. Nothing p https://example.com/ 20301 365671 365671.431447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2937331392857 0 \N \N f 0 \N 0 136059506 0 f f \N \N \N \N 365671 \N 0 0 \N \N f \N 444644 2024-03-01 07:06:57.536 2024-03-01 07:16:58.767 \N Myself candidate idea state similar above. Firm billion mone https://example.com/ 4973 444640 444640.444644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9540798678848 0 \N \N f 0 \N 0 73829001 0 f f \N \N \N \N 444640 \N 0 0 \N \N f \N 431444 2024-02-19 19:01:10.709 2024-02-19 19:11:12.109 \N Science sea sport term page ne https://example.com/ 718 359004 359004.431444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3591095862931 0 \N \N f 0 \N 0 225460371 0 f f \N \N \N \N 359004 \N 0 0 \N \N f \N 431453 2024-02-19 19:01:35.167 2024-02-19 19:11:36.592 \N Top happen reveal west player https://example.com/ 667 366621 366621.431453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.18050086380803 0 \N \N f 0 \N 0 98791094 0 f f \N \N \N \N 366621 \N 0 0 \N \N f \N 431460 2024-02-19 19:01:55.38 2024-02-19 19:11:56.728 \N Industry great onto trial wind https://example.com/ 20087 368653 368653.431460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1294205840353 0 \N \N f 0 \N 0 69440577 0 f f \N \N \N \N 368653 \N 0 0 \N \N f \N 431067 2024-02-19 17:27:43.832 2024-02-19 17:37:44.733 \N Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher https://example.com/ 5829 431006 430984.431006.431067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5036562010276 0 \N \N f 0 \N 5 134267203 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 23862 2022-04-29 05:04:48.822 2023-12-11 01:45:28.584 Individual low nice Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nSame product run but perhaps. Statement baby assume. Po https://example.com/ 20058 \N 23862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4785827597109 0 \N \N f 0 \N 3 178685259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431505 2024-02-19 19:06:06.25 2024-02-19 19:16:07.498 \N Young nothing just. Spring pla https://example.com/ 2431 358081 358081.431505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7630022942948 0 \N \N f 0 \N 0 42439098 0 f f \N \N \N \N 358081 \N 0 0 \N \N f \N 432118 2024-02-20 02:46:16.455 2024-02-20 02:56:18.149 \N Spend democratic second find president walk model. Challenge face section business pol https://example.com/ 12738 431401 431401.432118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5031219081651 0 \N \N f 0 \N 0 74338873 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 430991 2024-02-19 17:08:06.988 2024-02-19 17:18:08.754 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie stra https://example.com/ 5527 422025 356162.356269.422025.430991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1801104720383 0 \N \N f 0 \N 0 124086468 0 f f \N \N \N \N 356162 \N 0 0 \N \N f \N 430944 2024-02-19 16:35:09.735 2024-02-19 16:45:11.512 \N Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example tra https://example.com/ 657 430590 414068.430553.430590.430944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97518154418805 0 \N \N f 0 \N 0 119444061 0 f f \N \N \N \N 414068 \N 0 0 \N \N f \N 430917 2024-02-19 16:19:17.481 2024-02-19 16:29:19.177 \N Baby body day citizen change. Present identify never b https://example.com/ 6360 430912 430549.430560.430781.430912.430917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6647772521839 0 \N \N f 0 \N 1 208530642 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 430966 2024-02-19 16:49:36.906 2024-02-19 16:59:38.622 \N Tree I there avoid win knowledge improve. Dinner hope determine https://example.com/ 1769 430059 429764.429924.430059.430966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4522596201552 0 \N \N f 0 \N 0 47936415 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 439807 2024-02-26 19:33:29.464 2024-02-26 19:43:30.673 \N Probably production better fi https://example.com/ 16432 439624 439624.439807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7520641748727 0 \N \N f 0 \N 0 90276663 0 f f \N \N \N \N 439624 \N 0 0 \N \N f \N 432218 2024-02-20 07:35:08.203 2024-02-20 07:45:09.3 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahe https://example.com/ 19967 430331 430331.432218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.744467048831901 0 \N \N f 0 \N 1 47240988 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 439783 2024-02-26 19:14:29.973 2024-02-26 19:24:31.989 \N Same li https://example.com/ 19864 439735 439729.439735.439783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.44742073334008 0 \N \N f 0 \N 0 155365228 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 439325 2024-02-26 13:46:57.609 2024-02-26 13:56:58.501 Child air person ago modern charge little piece. Get trade manage pol Rule hope accept blue. Firm performance go office accept. High https://example.com/ 20162 \N 439325 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.6471037187183 0 \N \N f 0 \N 0 23453323 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442867 2024-02-28 23:28:38.847 2024-02-28 23:38:40.267 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial ef https://example.com/ 9334 442856 442751.442856.442867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6758842472744 0 \N \N f 0 \N 1 100319275 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 432383 2024-02-20 11:45:04.656 2024-02-20 11:55:05.27 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep p https://example.com/ 2596 430503 430488.430503.432383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98237361798613 0 \N \N f 0 \N 1 17632149 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444156 2024-02-29 19:52:00.642 2024-02-29 20:02:03.089 \N Life foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nFly include one church TV air https://example.com/ 13097 444138 443794.444138.444156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3611404743633 0 \N \N f 0 \N 1 138416266 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 436060 2024-02-23 11:39:06.055 2024-02-23 11:49:07.723 \N Method same car buy side. Price order rest C https://example.com/ 21323 436050 436049.436050.436060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.041843124276 0 \N \N f 0 \N 0 135051954 0 f f \N \N \N \N 436049 \N 0 0 \N \N f \N 436039 2024-02-23 11:20:28.128 2024-02-23 11:30:29.626 \N Station mean dinner level well window. Develop white performance yourself often wrong yard. Incl https://example.com/ 20137 436022 435908.436022.436039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.20338779919858 0 \N \N f 0 \N 0 130685789 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 433453 2024-02-21 07:38:48.04 2024-02-21 07:48:50.327 \N Game management go ready star call how. Total si https://example.com/ 13169 433181 433114.433181.433453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.362512006894 0 \N \N f 0 \N 0 71599698 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 444271 2024-02-29 20:55:20.349 2024-02-29 21:05:21.651 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor de https://example.com/ 2361 444097 444097.444271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.27248833967144 0 \N \N f 0 \N 0 2651903 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444528 2024-03-01 03:27:56.102 2024-03-01 03:37:57.556 \N Purpose add when information sing like recognize. Career bad resour https://example.com/ 1626 444526 444526.444528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5459861713755 0 \N \N f 0 \N 0 202022957 0 f f \N \N \N \N 444526 \N 0 0 \N \N f \N 436067 2024-02-23 11:46:04.819 2024-02-23 11:56:06.557 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investmen https://example.com/ 21485 436030 436028.436030.436067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.628076901869 0 \N \N f 0 \N 0 84286939 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 438333 2024-02-25 14:59:43.507 2024-02-25 15:09:44.53 \N Just study one foot ball. Tv probably among impact. Letter relate within ap https://example.com/ 18865 438297 438191.438284.438297.438333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9566873424612 0 \N \N f 0 \N 2 181410530 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 442355 2024-02-28 16:39:34.444 2024-02-28 16:49:35.726 \N Provide red song family quickly. Free point fish relationship. Media who share little pr https://example.com/ 20897 442333 441600.442044.442195.442333.442355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3395393085733 0 \N \N f 0 \N 0 239345512 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N 436055 2024-02-23 11:35:26.195 2024-02-23 11:45:27.675 \N Myself meas https://example.com/ 15200 435993 435639.435993.436055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81568851663977 0 \N \N f 0 \N 0 102266538 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 444545 2024-03-01 03:59:31.656 2024-03-01 04:09:33.274 \N P https://example.com/ 20245 444537 444537.444545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4320941487494 0 \N \N f 0 \N 0 198444180 0 f f \N \N \N \N 444537 \N 0 0 \N \N f \N 52153 2022-07-31 12:28:17.198 2023-10-02 05:00:21.592 Clear suggest true gas suddenly Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Bec https://example.com/ 756 \N 52153 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.0156152517057 0 \N \N f 0 \N 21 178322772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434369 2024-02-21 22:52:22.963 2024-02-21 23:02:24.386 \N Key group certainly little s https://example.com/ 21022 434171 433943.434171.434369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5557247546195 0 \N \N f 0 \N 1 183569230 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 438284 2024-02-25 14:10:06.605 2024-02-25 14:20:08.033 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach devel https://example.com/ 15408 438191 438191.438284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.684753457197544 0 \N \N f 0 \N 4 167247125 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 437042 2024-02-24 10:54:32.835 2024-02-24 11:04:33.987 \N Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk https://example.com/ 705 436523 436523.437042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1670841937568 0 \N \N f 0 \N 0 246886711 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 438704 2024-02-25 22:03:10.954 2024-02-25 22:13:12.429 \N Detail economy still boy fine in series. Bring probably list stop still else statement sta https://example.com/ 3347 438317 438317.438704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2726292867147 0 \N \N f 0 \N 0 170601806 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432222 2024-02-20 07:45:53.259 2024-02-20 07:55:55.744 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead sa https://example.com/ 5359 432003 432003.432222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.992129786945 0 \N \N f 0 \N 0 58432152 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 432131 2024-02-20 03:02:42.789 2024-02-20 03:12:44.413 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here develop https://example.com/ 15474 432003 432003.432131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3845898588961 0 \N \N f 0 \N 0 62649235 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 436523 2024-02-23 18:15:41.209 2024-02-23 18:25:42.836 Moment smile cell cold road happen cause. Give Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultur https://example.com/ 1712 \N 436523 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.178705257605 0 \N \N f 0 \N 16 24771048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52183 2022-07-31 13:42:25.669 2023-10-02 05:00:21.872 Environment very hospital point health enough. \N https://example.com/ 1439 \N 52183 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3024308567799 0 \N \N f 0 \N 2 143682290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436131 2024-02-23 12:56:20.128 2024-02-23 13:06:21.513 \N M https://example.com/ 17984 436121 435639.435646.436121.436131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9967285647478 0 \N \N f 0 \N 0 112036010 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 437964 2024-02-25 06:03:46.816 2024-02-25 06:13:48.797 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. S https://example.com/ 19463 437963 437963.437964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4991671612728 0 \N \N f 0 \N 0 175124739 0 f f \N \N \N \N 437963 \N 0 0 \N \N f \N 436179 2024-02-23 13:28:34.149 2024-02-23 13:38:35.605 \N Question produce brea https://example.com/ 21387 436153 436153.436179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8924919279987 0 \N \N f 0 \N 0 151545268 0 f f \N \N \N \N 436153 \N 0 0 \N \N f \N 431000 2024-02-19 17:18:44.792 2024-02-19 17:28:45.965 \N Tha https://example.com/ 21233 430923 430923.431000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2481877242602 0 \N \N f 0 \N 0 221658923 0 f f \N \N \N \N 430923 \N 0 0 \N \N f \N 444402 2024-02-29 23:12:39.765 2024-02-29 23:22:41.646 \N Sense edge father camera. Region whose enough vote up. https://example.com/ 3461 444206 438414.438795.444206.444402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1582748875124 0 \N \N f 0 \N 0 59157719 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 436088 2024-02-23 12:14:31.528 2024-02-23 12:24:33.217 \N Church listen our call couple rise beyond question. Wish he ana https://example.com/ 21178 436036 436036.436088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04396844665521 0 \N \N f 0 \N 0 56589788 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 435955 2024-02-23 08:46:12.271 2024-02-23 08:56:15.261 Station mean dinner level well Focus available yeah law. Down there avoid. Program defense last know. Single mind public https://example.com/ 21575 \N 435955 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 28.1521308531982 0 \N \N f 0 \N 0 101696043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437971 2024-02-25 06:26:45.522 2024-02-25 06:36:46.915 \N Race civil today. Bro https://example.com/ 18170 437967 437524.437580.437967.437971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02546567241669 0 \N \N f 0 \N 0 68072700 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 442740 2024-02-28 21:27:59.68 2024-02-28 21:38:01.342 \N Us l https://example.com/ 18330 442023 442023.442740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9078990952859 0 \N \N f 0 \N 0 133043036 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 52184 2022-07-31 13:49:38.528 2023-10-02 05:00:21.875 Even hot political little painting home. Garden speech p \N https://example.com/ 9494 \N 52184 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.08443630628141 0 \N \N f 0 \N 9 58268032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442843 2024-02-28 23:15:17.862 2024-02-28 23:25:19.228 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degre https://example.com/ 19034 442834 442628.442639.442646.442648.442650.442670.442824.442828.442834.442843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9843462445754 0 \N \N f 0 \N 0 166905299 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 433382 2024-02-21 05:40:28.252 2024-02-21 05:50:29.171 \N Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daugh https://example.com/ 16270 433321 433114.433317.433321.433382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.89199930589 0 \N \N f 0 \N 1 8724555 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 437967 2024-02-25 06:07:57.801 2024-02-25 06:17:59.29 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pi https://example.com/ 7913 437580 437524.437580.437967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5811307779866 0 \N \N f 0 \N 1 59537550 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 433194 2024-02-20 23:40:09.395 2024-02-20 23:50:10.631 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nEvent at admini https://example.com/ 14122 433041 432920.432980.432992.433032.433034.433041.433194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1636584551691 0 \N \N f 0 \N 2 152451606 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 436097 2024-02-23 12:27:46.163 2024-02-23 12:37:47.001 \N Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student https://example.com/ 18357 436028 436028.436097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87861921210242 0 \N \N f 0 \N 2 39940002 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437947 2024-02-25 04:35:45.705 2024-02-25 04:45:47.8 \N These https://example.com/ 16965 437946 437946.437947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6448292283072 0 \N \N f 0 \N 0 155326492 0 f f \N \N \N \N 437946 \N 0 0 \N \N f \N 435068 2024-02-22 14:57:26.646 2024-02-22 15:07:28.001 \N Science sea sport term page near. Agreement forget age center yes. Figu https://example.com/ 9169 433870 433588.433870.435068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8943016609761 0 \N \N f 0 \N 0 19380215 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 441033 2024-02-27 20:08:19.514 2024-02-27 20:18:20.638 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read eve https://example.com/ 4118 440869 440764.440869.441033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.30202131222121 0 \N \N f 0 \N 0 21201426 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 440869 2024-02-27 17:52:31.017 2024-02-27 18:02:31.875 \N Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee re https://example.com/ 9351 440764 440764.440869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62627264025813 0 \N \N f 0 \N 1 241288645 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 431011 2024-02-19 17:21:29.733 2024-02-19 17:31:30.998 \N Future next exist girl prevent https://example.com/ 14906 428647 428647.431011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.065759221218 0 \N \N f 0 \N 0 80566271 0 f f \N \N \N \N 428647 \N 0 0 \N \N f \N 431019 2024-02-19 17:21:52.82 2024-02-19 17:31:53.793 \N Travel never area. Relationshi https://example.com/ 1626 426814 426814.431019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55116015080909 0 \N \N f 0 \N 0 171086760 0 f f \N \N \N \N 426814 \N 0 0 \N \N f \N 431024 2024-02-19 17:22:28.097 2024-02-19 17:32:29.843 \N Yard subject low series seriou https://example.com/ 2774 424855 424855.431024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3180408362467 0 \N \N f 0 \N 0 247013894 0 f f \N \N \N \N 424855 \N 0 0 \N \N f \N 430995 2024-02-19 17:14:05.121 2024-02-19 17:24:07.29 \N Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach chi https://example.com/ 21166 421611 421567.421585.421611.430995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9487366258885 0 \N \N f 0 \N 0 152633815 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 52191 2022-07-31 14:00:55.491 2023-10-02 05:00:21.897 Economic clearly dark. Under \N https://example.com/ 20267 \N 52191 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3204284633346 0 \N \N f 0 \N 0 18787080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438154 2024-02-25 11:56:10.929 2024-02-25 12:06:12.59 \N At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment tr https://example.com/ 15337 437861 437723.437854.437861.438154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1600298030092 0 \N \N f 0 \N 0 64442563 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438155 2024-02-25 11:56:45.559 2024-02-25 12:06:47.495 Same listen suggest five Recent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put https://example.com/ 1490 \N 438155 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.24275867640397 0 \N \N f 0 \N 0 237867477 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431478 2024-02-19 19:04:01.947 2024-02-19 19:14:03.176 \N Knowledge figure draw. Billion https://example.com/ 20110 355856 355856.431478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73735857826222 0 \N \N f 0 \N 0 35480918 0 f f \N \N \N \N 355856 \N 0 0 \N \N f \N 438150 2024-02-25 11:52:53.168 2024-02-25 12:02:55.344 \N Top group country tree light cultural simply. From https://example.com/ 17184 438135 438093.438096.438132.438135.438150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1554657957865 0 \N \N f 0 \N 2 84467674 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 431479 2024-02-19 19:04:03.415 2024-02-19 19:14:04.745 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Ag https://example.com/ 18454 430824 430824.431479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9022096103272 0 \N \N f 0 \N 0 28288829 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 431480 2024-02-19 19:04:05.616 2024-02-19 19:14:06.751 \N As quality own off arm religio https://example.com/ 19501 355108 355108.431480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9526986134338 0 \N \N f 0 \N 0 221611394 0 f f \N \N \N \N 355108 \N 0 0 \N \N f \N 444623 2024-03-01 06:36:16.261 2024-03-01 06:46:17.777 \N After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball https://example.com/ 17602 444519 444519.444623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8264638438365 0 \N \N f 0 \N 0 68440904 0 f f \N \N \N \N 444519 \N 0 0 \N \N f \N 29724 2022-05-19 12:02:54.768 2023-10-02 01:09:37.807 Ask arm intervi Between buy half story. Buy whom significant modern air price. Deal left beyond admit su https://example.com/ 15732 \N 29724 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6223153940664 0 \N \N f 0 \N 4 95456226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435175 2024-02-22 16:20:09.604 2024-02-22 16:30:10.933 \N Yard s https://example.com/ 16354 435140 435140.435175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7695881027151 0 \N \N f 0 \N 0 146891435 0 f f \N \N \N \N 435140 \N 0 0 \N \N f \N 444518 2024-03-01 03:07:52.717 2024-03-01 03:17:55.076 \N Key third PM painting wrong generation every. Authority daug https://example.com/ 2832 444387 444387.444518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.05146756405724 0 \N \N f 0 \N 0 212878042 0 f f \N \N \N \N 444387 \N 0 0 \N \N f \N 444387 2024-02-29 22:57:44.182 2024-02-29 23:07:45.434 Fly include one church Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. https://example.com/ 17415 \N 444387 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.0762189360588 0 \N \N f 0 \N 2 36487130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438151 2024-02-25 11:54:08.28 2024-02-25 12:04:09.938 \N Some nation represent who. https://example.com/ 17237 438150 438093.438096.438132.438135.438150.438151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.23761984008264 0 \N \N f 0 \N 0 178804938 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 332498 2023-11-29 01:32:20.704 2023-11-29 01:42:21.999 Candidate down Long sound cont https://example.com/ 15075 \N 332498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.751478709779 0 \N \N f 0 \N 6 197908213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444658 2024-03-01 07:51:01.938 2024-03-01 08:01:03.135 \N There everybody fish can. Exact https://example.com/ 14308 444076 444076.444658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4477579677831 0 \N \N f 0 \N 0 131018013 0 f f \N \N \N \N 444076 \N 0 0 \N \N f \N 444618 2024-03-01 06:31:05.523 2024-03-01 06:41:07.044 \N Same product run but perhaps. Statement baby assume. https://example.com/ 6688 444541 444541.444618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7418693222789 0 \N \N f 0 \N 0 235271604 0 f f \N \N \N \N 444541 \N 0 0 \N \N f \N 437857 2024-02-25 01:58:31.849 2024-02-25 02:08:39.919 \N Oil fast organization discussion board nation hotel. Recent challenge style American white. Board https://example.com/ 19777 437795 437769.437795.437857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9841296196185 0 \N \N f 0 \N 0 96276313 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 430825 2024-02-19 15:09:01.792 2024-02-19 15:19:02.91 \N Cell language e https://example.com/ 1769 430795 430795.430825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2863518236809 0 \N \N f 0 \N 1 179768565 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 437450 2024-02-24 16:40:17.54 2024-02-24 16:50:19.538 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard https://example.com/ 11561 437044 437044.437450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.216772090796 0 \N \N f 0 \N 0 152576736 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 436579 2024-02-23 19:17:11.931 2024-02-23 19:27:12.887 \N Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nInside nor professional partner new design machine. Fire occur leave image trip https://example.com/ 17014 429078 429078.436579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7700959685364 0 \N \N f 0 \N 0 104290043 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 441206 2024-02-27 22:59:30.323 2024-02-27 23:09:30.975 \N Most which usually increase event at hold. End central clearly sudd https://example.com/ 21249 441038 440692.441038.441206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0453820581456 0 \N \N f 0 \N 0 89145943 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441374 2024-02-28 01:54:08.738 2024-02-28 02:04:09.87 \N Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn thr https://example.com/ 10311 441151 440764.441052.441056.441151.441374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4475621069305 0 \N \N f 0 \N 0 67851864 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 431676 2024-02-19 19:35:59.916 2024-02-19 19:46:01.319 \N Seat commercial through proper https://example.com/ 19043 310880 310880.431676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9557556794406 0 \N \N f 0 \N 0 76854085 0 f f \N \N \N \N 310880 \N 0 0 \N \N f \N 431028 2024-02-19 17:22:39.5 2024-02-19 17:32:40.983 \N Probably production better financial. Wife https://example.com/ 17523 430330 430330.431028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4648235810354 0 \N \N f 0 \N 1 176370545 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 431680 2024-02-19 19:36:10.026 2024-02-19 19:46:11.873 \N Their bed hear popular fine gu https://example.com/ 5069 310001 310001.431680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.428033521176 0 \N \N f 0 \N 0 247570844 0 f f \N \N \N \N 310001 \N 0 0 \N \N f \N 443359 2024-02-29 11:52:03.147 2024-02-29 12:02:05.058 \N Tend yes call look. Real feel scientist set factor establish agree. Site federal material song https://example.com/ 623 443358 443105.443193.443331.443350.443358.443359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.05433534115698 0 \N \N f 0 \N 1 79755184 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444772 2024-03-01 11:00:11.954 2024-03-01 11:10:13.467 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay https://example.com/ 9494 444177 443272.444177.444772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.81384673563373 0 \N \N f 0 \N 0 51405344 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444498 2024-03-01 02:17:24.073 2024-03-01 02:27:25.765 \N Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nThough deal provide ball statement example believe. Business interview contain. We https://example.com/ 2056 444489 443712.444179.444324.444489.444498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1112267639825 0 \N \N f 0 \N 0 115145090 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444408 2024-02-29 23:23:34.03 2024-02-29 23:33:36.81 Strategy way low soldier. Thank think crime. Kind page begin news Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administratio https://example.com/ 17291 \N 444408 \N \N \N \N \N \N \N \N health \N ACTIVE \N 28.4065117000876 0 \N \N f 0 \N 4 123706346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430877 2024-02-19 15:45:00.636 2024-02-19 15:55:02.305 \N Fund bring design try claim attention. Old https://example.com/ 5825 213313 213189.213313.430877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8486286700446 0 \N \N f 0 \N 0 103219795 0 f f \N \N \N \N 213189 \N 0 0 \N \N f \N 444447 2024-03-01 00:20:41.018 2024-03-01 00:30:42.137 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep wh https://example.com/ 17184 444408 444408.444447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5669166530207 0 \N \N f 0 \N 1 190543344 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N 434834 2024-02-22 11:27:05.64 2024-02-22 11:37:07.217 \N Agency party build a https://example.com/ 20706 434477 434396.434477.434834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.986188784257 0 \N \N f 0 \N 0 42203677 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 444341 2024-02-29 22:06:59.95 2024-02-29 22:17:01.298 \N They another learn question lose to. Matter fear plant bank information per. https://example.com/ 20858 444121 443867.444117.444121.444341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4921426497757 0 \N \N f 0 \N 0 162932548 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N 430998 2024-02-19 17:17:42.998 2024-02-19 18:00:44.878 \N Value have anyone c https://example.com/ 16355 430824 430824.430998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7276881491219 0 \N \N f 0 \N 0 97063616 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 444121 2024-02-29 19:29:38.776 2024-02-29 19:39:40.308 \N Improve different identify o https://example.com/ 18557 444117 443867.444117.444121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0558499046354 0 \N \N f 0 \N 1 101296837 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N 444542 2024-03-01 03:57:11.023 2024-03-01 04:07:13.214 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Wr https://example.com/ 9421 443545 443545.444542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9584693982618 0 \N \N f 0 \N 0 187966982 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 433715 2024-02-21 12:50:55.257 2024-02-21 13:00:57.529 \N Network intervi https://example.com/ 21393 433382 433114.433317.433321.433382.433715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1311590115744 0 \N \N f 0 \N 0 114144045 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 434889 2024-02-22 12:25:19.751 2024-02-22 12:35:21.222 \N Right student yard protect cover. Carry these she https://example.com/ 910 434886 434317.434675.434886.434889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.87542435013545 0 \N \N f 0 \N 2 110562103 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 437855 2024-02-25 01:54:36.46 2024-02-25 02:04:38.693 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From he https://example.com/ 19037 437731 437731.437855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82940292866456 0 \N \N f 0 \N 1 64626703 0 f f \N \N \N \N 437731 \N 0 0 \N \N f \N 431034 2024-02-19 17:23:09.687 2024-02-19 17:33:11.438 \N Stage can fish building senior https://example.com/ 2156 422852 422852.431034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4276807265152 0 \N \N f 0 \N 0 76956203 0 f f \N \N \N \N 422852 \N 0 0 \N \N f \N 431037 2024-02-19 17:23:21.23 2024-02-19 17:33:22.624 \N Mind treatment nature play. Mr https://example.com/ 21079 421786 421786.431037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7520827467577 0 \N \N f 0 \N 0 109416179 0 f f \N \N \N \N 421786 \N 0 0 \N \N f \N 444547 2024-03-01 04:10:08.518 2024-03-01 04:20:09.833 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single gr https://example.com/ 6191 444541 444541.444547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8598096122477 0 \N \N f 0 \N 0 131165830 0 f f \N \N \N \N 444541 \N 0 0 \N \N f \N 434924 2024-02-22 12:54:29.263 2024-02-22 13:04:30.411 \N Increase bring ca https://example.com/ 13177 434631 434626.434631.434924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7436755610051 0 \N \N f 0 \N 0 9709633 0 f f \N \N \N \N 434626 \N 0 0 \N \N f \N 441222 2024-02-27 23:15:42.973 2024-02-27 23:25:43.848 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. https://example.com/ 11897 423917 423917.441222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.796665226026 0 \N \N f 0 \N 0 93845067 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 430983 2024-02-19 17:01:29.137 2024-02-19 17:11:30.593 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until. https://example.com/ 1618 430955 430949.430955.430983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25070174205634 0 \N \N f 0 \N 3 181458538 0 f f \N \N \N \N 430949 \N 0 0 \N \N f \N 430949 2024-02-19 16:38:17.138 2024-02-19 16:48:18.684 Responsibility record term buy. Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nThey another learn question lose to. Matter https://example.com/ 19398 \N 430949 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 8.19326566300422 0 \N \N f 0 \N 5 159222338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438251 2024-02-25 13:46:23.744 2024-02-25 13:56:24.687 \N At audience she. Skill performance represent mouth score side air. Alone you every everything decide. Succe https://example.com/ 4027 438231 438231.438251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2051967602671 0 \N \N f 0 \N 0 210112764 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 434414 2024-02-21 23:49:40.579 2024-02-21 23:59:42.046 \N Special identify senior https://example.com/ 1454 433837 433594.433837.434414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4561445661786 0 \N \N f 0 \N 0 153789281 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 444734 2024-03-01 10:32:07.443 2024-03-01 10:42:09.438 \N Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Sto https://example.com/ 7903 444696 444696.444734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1845735363263 0 \N \N f 0 \N 0 100728541 0 f f \N \N \N \N 444696 \N 0 0 \N \N f \N 431217 2024-02-19 18:16:12.933 2024-02-19 18:26:14.123 \N Popular rest certainly. Citize https://example.com/ 1245 399656 399656.431217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3218053477886 0 \N \N f 0 \N 0 245559558 0 f f \N \N \N \N 399656 \N 0 0 \N \N f \N 431218 2024-02-19 18:16:15.23 2024-02-19 18:26:17.163 \N Congress up environment. Hit m https://example.com/ 19735 399312 399312.431218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2158120677206 0 \N \N f 0 \N 0 114207384 0 f f \N \N \N \N 399312 \N 0 0 \N \N f \N 431220 2024-02-19 18:16:19.341 2024-02-19 18:26:20.641 \N Wide deep ahead effort. Somebo https://example.com/ 17710 399150 399150.431220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.94053314203773 0 \N \N f 0 \N 0 185295507 0 f f \N \N \N \N 399150 \N 0 0 \N \N f \N 431227 2024-02-19 18:17:30.984 2024-02-19 18:27:32.738 \N View especially nation nor thi https://example.com/ 17953 397339 397339.431227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35737419599796 0 \N \N f 0 \N 0 62531322 0 f f \N \N \N \N 397339 \N 0 0 \N \N f \N 444736 2024-03-01 10:34:07.546 2024-03-01 10:44:09.173 \N Debate property life amount writer. Animal https://example.com/ 19043 444689 444689.444736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55672851692419 0 \N \N f 0 \N 0 159144335 0 f f \N \N \N \N 444689 \N 0 0 \N \N f \N 444751 2024-03-01 10:45:22.802 2024-03-01 10:55:24.361 \N Measure western pretty serious director country. Sport usually https://example.com/ 8423 444747 444739.444747.444751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.04619951994789 0 \N \N f 0 \N 0 120813224 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444610 2024-03-01 06:17:37.56 2024-03-01 06:27:39.432 \N Never heavy tab https://example.com/ 17682 443399 443399.444610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33504541943281 0 \N \N f 0 \N 0 206910449 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 438079 2024-02-25 10:36:57.253 2024-02-25 10:46:58.777 \N Later piece skin environmental not authority finish reduce. Our individual https://example.com/ 7558 437775 437775.438079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4691473374503 0 \N \N f 0 \N 0 147715979 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 444627 2024-03-01 06:44:43.375 2024-03-01 06:54:44.344 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move https://example.com/ 4118 444562 444562.444627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0863220297039 0 \N \N f 0 \N 0 7535631 0 f f \N \N \N \N 444562 \N 0 0 \N \N f \N 444562 2024-03-01 04:50:37.676 2024-03-01 05:00:39.591 Rich value involve they al Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fa https://example.com/ 12097 \N 444562 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.03374855557806 0 \N \N f 0 \N 1 185318775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438102 2024-02-25 11:13:15.351 2024-02-25 11:23:16.698 \N Tell billion now tough chair fig https://example.com/ 19576 438088 438088.438102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5828120091671 0 \N \N f 0 \N 1 190177038 0 f f \N \N \N \N 438088 \N 0 0 \N \N f \N 431418 2024-02-19 18:59:36.426 2024-02-19 19:09:37.835 \N Type door clear left. Test inv https://example.com/ 897 363174 363174.431418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9990181219063 0 \N \N f 0 \N 0 126736110 0 f f \N \N \N \N 363174 \N 0 0 \N \N f \N 431419 2024-02-19 18:59:40.776 2024-02-19 19:09:41.877 \N Measure whether or material he https://example.com/ 4395 363009 363009.431419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.033906009197 0 \N \N f 0 \N 0 109268925 0 f f \N \N \N \N 363009 \N 0 0 \N \N f \N 431561 2024-02-19 19:09:53.006 2024-02-19 19:19:54.931 \N Which only rich free agreement https://example.com/ 1603 339584 339584.431561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56665078786656 0 \N \N f 0 \N 0 146229864 0 f f \N \N \N \N 339584 \N 0 0 \N \N f \N 437977 2024-02-25 06:46:27.427 2024-02-25 06:56:29.037 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nDrive south traditional new what unit mother. Drug professional sim https://example.com/ 705 437861 437723.437854.437861.437977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1196137592924 0 \N \N f 0 \N 2 222579519 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431438 2024-02-19 19:00:55.086 2024-02-19 19:10:56.957 \N Most describe tell speech with https://example.com/ 13517 360605 360605.431438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3129748029886 0 \N \N f 0 \N 0 6671654 0 f f \N \N \N \N 360605 \N 0 0 \N \N f \N 431430 2024-02-19 19:00:30.429 2024-02-19 19:10:31.7 \N Deal could skin some. Through https://example.com/ 10519 361473 361473.431430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8582420013102 0 \N \N f 0 \N 0 38081862 0 f f \N \N \N \N 361473 \N 0 0 \N \N f \N 431432 2024-02-19 19:00:36.16 2024-02-19 19:10:37.462 \N Series wait hotel north action https://example.com/ 13574 361473 361473.431432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2099283748771 0 \N \N f 0 \N 0 8150587 0 f f \N \N \N \N 361473 \N 0 0 \N \N f \N 431433 2024-02-19 19:00:42.114 2024-02-19 19:10:43.476 \N Structure ever film speech alo https://example.com/ 13177 360822 360822.431433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8148956077124 0 \N \N f 0 \N 0 240454965 0 f f \N \N \N \N 360822 \N 0 0 \N \N f \N 431436 2024-02-19 19:00:50.038 2024-02-19 19:10:51.492 \N Marriage interview green schoo https://example.com/ 13348 360748 360748.431436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3608057234673 0 \N \N f 0 \N 0 182766922 0 f f \N \N \N \N 360748 \N 0 0 \N \N f \N 431285 2024-02-19 18:23:17.806 2024-02-19 18:33:19.551 \N We https://example.com/ 15925 431260 387104.431260.431285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6758831419542 0 \N \N f 0 \N 0 104130270 0 f f \N \N \N \N 387104 \N 0 0 \N \N f \N 431260 2024-02-19 18:22:01.061 2024-02-19 18:32:03.118 \N Skin summer development benefi https://example.com/ 5779 387104 387104.431260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2859818338991 0 \N \N f 0 \N 1 164778760 0 f f \N \N \N \N 387104 \N 0 0 \N \N f \N 444600 2024-03-01 06:03:12.345 2024-03-01 06:13:13.478 \N Blue why https://example.com/ 18751 444569 443577.444569.444600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4722481340635 0 \N \N f 0 \N 0 178278925 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444615 2024-03-01 06:24:36.478 2024-03-01 06:34:37.241 \N Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however https://example.com/ 7119 444109 418100.444109.444615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8836566463719 0 \N \N f 0 \N 0 7387815 0 f f \N \N \N \N 418100 \N 0 0 \N \N f \N 438699 2024-02-25 22:00:47.871 2024-02-25 22:10:48.99 \N South amount subject easy office. Sea force thousand director yard someone animal. A https://example.com/ 7847 438637 438605.438637.438699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4760739767858 0 \N \N f 0 \N 1 233657432 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 444617 2024-03-01 06:28:21.066 2024-03-01 06:38:22.293 \N Determine magazine police agent billion. Head great https://example.com/ 9426 444584 443799.444584.444617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09967897162647 0 \N \N f 0 \N 1 25889501 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 431291 2024-02-19 18:24:53.335 2024-02-19 18:34:54.992 \N Mrs when number place under moment. Own inclu https://example.com/ 21083 431143 430770.431088.431143.431291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6443050065948 0 \N \N f 0 \N 0 246075021 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 440058 2024-02-26 22:42:50.702 2024-02-26 22:52:51.917 \N Machine thus a https://example.com/ 11750 439851 438573.438954.439851.440058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6250110185602 0 \N \N f 0 \N 0 17172503 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 2488 2021-09-25 00:17:27.792 2023-10-01 23:51:50.405 Wish low party sh Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring thr https://example.com/ 7587 \N 2488 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4090222964864 0 \N \N f 0 \N 1 173461662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433821 2024-02-21 14:33:40.25 2024-02-21 14:43:41.867 \N Score picture lot professor bed seas https://example.com/ 8570 433805 433805.433821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23514180078077 0 \N \N f 0 \N 2 21311551 0 f f \N \N \N \N 433805 \N 0 0 \N \N f \N 439560 2024-02-26 16:13:21.209 2024-02-26 16:23:23.064 \N Republican star interest its. College ch https://example.com/ 11942 439543 439504.439509.439543.439560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2819011215068 0 \N \N f 0 \N 1 15740270 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 432506 2024-02-20 14:24:42.61 2024-02-20 14:34:44.308 \N Understand Mr score until. Debate according western evening rate reveal. Where always century some fi https://example.com/ 11698 429439 429439.432506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9127839428645 0 \N \N f 0 \N 0 69238463 0 f f \N \N \N \N 429439 \N 0 0 \N \N f \N 432799 2024-02-20 17:50:21.902 2024-02-20 18:00:23.362 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing internat https://example.com/ 10056 432344 432344.432799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15529124321882 0 \N \N f 0 \N 0 165950070 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 431200 2024-02-19 18:15:10.838 2024-02-19 18:25:11.963 \N Hotel remember debate strategy https://example.com/ 8162 403633 403633.431200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4570005725788 0 \N \N f 0 \N 1 79895953 0 f f \N \N \N \N 403633 \N 0 0 \N \N f \N 434979 2024-02-22 13:45:49.89 2024-02-22 13:55:51.356 \N Notice after fund police. Put environ https://example.com/ 2710 392677 392486.392677.434979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0293251577638 0 \N \N f 0 \N 0 53034959 0 f f \N \N \N \N 392486 \N 0 0 \N \N f \N 435760 2024-02-23 02:08:57.731 2024-02-23 02:18:59.369 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity che https://example.com/ 19930 435746 435746.435760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9600432488891 0 \N \N f 0 \N 7 240853849 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 439831 2024-02-26 19:46:32.967 2024-02-26 19:56:34.599 \N Drug you class operation. Have job sense. Face thank factor p https://example.com/ 14503 439584 439082.439579.439584.439831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9005831038922 0 \N \N f 0 \N 4 240971587 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 437986 2024-02-25 07:02:51.454 2024-02-25 07:12:53.483 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environment https://example.com/ 10094 437324 437190.437318.437324.437986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06449648183701 0 \N \N f 0 \N 1 29206461 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N 437324 2024-02-24 14:59:28.901 2024-02-24 15:09:29.596 \N She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point pus https://example.com/ 1114 437318 437190.437318.437324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.226211196661801 0 \N \N f 0 \N 3 73140816 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N 431862 2024-02-19 21:00:05.853 2024-02-19 21:10:08.014 Customer include control and. Chance blue audie \N https://example.com/ 12097 \N 431862 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.8217170937189 0 \N \N f 0 \N 3 650599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439322 2024-02-26 13:45:54.274 2024-02-26 13:55:55.658 \N Today area benefit around subject nature. Girl explain crime although. Question dinner why section b https://example.com/ 18615 439315 439315.439322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58871539413263 0 \N \N f 0 \N 1 179276398 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 439579 2024-02-26 16:33:26.869 2024-02-26 16:43:28.111 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Re https://example.com/ 1802 439082 439082.439579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9592262582342 0 \N \N f 0 \N 7 166980048 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433464 2024-02-21 08:00:08.424 2024-02-21 08:10:10.847 Face opportunity account eat program father long \N https://example.com/ 1712 \N 433464 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.1605157902726 0 \N \N f 0 \N 1 232378446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439584 2024-02-26 16:35:59.646 2024-02-26 16:46:00.937 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perha https://example.com/ 5003 439579 439082.439579.439584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.94580219495166 0 \N \N f 0 \N 5 151615209 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436846 2024-02-24 02:18:55.237 2024-02-24 02:28:56.727 \N Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various m https://example.com/ 21329 436832 436669.436782.436832.436846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8795454996966 0 \N \N f 0 \N 1 70672550 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 432938 2024-02-20 19:42:09.332 2024-02-20 19:52:10.71 \N Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio https://example.com/ 4395 432935 432311.432635.432686.432882.432893.432935.432938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.405190420827 0 \N \N f 0 \N 0 218689913 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 431388 2024-02-19 18:44:25.685 2024-02-19 18:54:26.99 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nBusiness food practice look would full across. Official buy thought goal. Treat enough https://example.com/ 17106 430990 430949.430955.430983.430990.431388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9002374359198 0 \N \N f 0 \N 1 1698411 0 f f \N \N \N \N 430949 \N 0 0 \N \N f \N 431700 2024-02-19 19:39:39.103 2024-02-19 19:49:40.348 \N Fact theory worry. Strong itse https://example.com/ 1697 301013 301013.431700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00018482210929 0 \N \N f 0 \N 0 214395692 0 f f \N \N \N \N 301013 \N 0 0 \N \N f \N 431703 2024-02-19 19:39:48.498 2024-02-19 19:49:50.035 \N Score player recognize carry. https://example.com/ 20973 300682 300682.431703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.601743983839249 0 \N \N f 0 \N 0 42828890 0 f f \N \N \N \N 300682 \N 0 0 \N \N f \N 431622 2024-02-19 19:32:39.163 2024-02-19 19:42:40.477 \N Sell attention budget indicate https://example.com/ 21501 321804 321804.431622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7471057494467 0 \N \N f 0 \N 0 26142317 0 f f \N \N \N \N 321804 \N 0 0 \N \N f \N 431648 2024-02-19 19:33:41.269 2024-02-19 19:43:42.341 \N Friend growth election water d https://example.com/ 18667 327021 327021.431648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6921506448746 0 \N \N f 0 \N 0 221685900 0 f f \N \N \N \N 327021 \N 0 0 \N \N f \N 431623 2024-02-19 19:32:42.137 2024-02-19 19:42:44.06 \N Drug you class operation. Have https://example.com/ 16347 320940 320940.431623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06196754382851 0 \N \N f 0 \N 0 13402746 0 f f \N \N \N \N 320940 \N 0 0 \N \N f \N 431624 2024-02-19 19:32:44.857 2024-02-19 19:42:45.532 \N White seven property least fat https://example.com/ 21541 320938 320938.431624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4063343804305 0 \N \N f 0 \N 0 22747452 0 f f \N \N \N \N 320938 \N 0 0 \N \N f \N 431628 2024-02-19 19:32:53.399 2024-02-19 19:42:55.117 \N South amount subject easy offi https://example.com/ 27 319864 319864.431628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24881917324887 0 \N \N f 0 \N 0 93146677 0 f f \N \N \N \N 319864 \N 0 0 \N \N f \N 431630 2024-02-19 19:32:58.415 2024-02-19 19:42:59.756 \N Future next exist girl prevent https://example.com/ 2543 319714 319714.431630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2484753067908 0 \N \N f 0 \N 0 170638532 0 f f \N \N \N \N 319714 \N 0 0 \N \N f \N 437527 2024-02-24 17:36:11.033 2024-02-24 17:46:11.964 \N Summer past television wh https://example.com/ 20094 437357 437357.437527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4760573765286 0 \N \N f 0 \N 0 1223941 0 f f \N \N \N \N 437357 \N 0 0 \N \N f \N 431633 2024-02-19 19:33:05.678 2024-02-19 19:43:06.808 \N Agent huge issue positive air https://example.com/ 1490 319139 319139.431633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5827635904231 0 \N \N f 0 \N 0 32036475 0 f f \N \N \N \N 319139 \N 0 0 \N \N f \N 431634 2024-02-19 19:33:08.045 2024-02-19 19:43:09.833 \N Everybody laugh key left speci https://example.com/ 1471 318932 318932.431634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31580295435926 0 \N \N f 0 \N 0 215613006 0 f f \N \N \N \N 318932 \N 0 0 \N \N f \N 431638 2024-02-19 19:33:19.703 2024-02-19 19:43:20.921 \N Tree political season that fee https://example.com/ 730 317725 317725.431638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4498116219934 0 \N \N f 0 \N 0 235955830 0 f f \N \N \N \N 317725 \N 0 0 \N \N f \N 431636 2024-02-19 19:33:14.683 2024-02-19 19:43:15.878 \N Hard same business read realiz https://example.com/ 4624 318372 318372.431636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0652232204745 0 \N \N f 0 \N 0 53518289 0 f f \N \N \N \N 318372 \N 0 0 \N \N f \N 431640 2024-02-19 19:33:24.86 2024-02-19 19:43:25.972 \N Rise environmental middle fly https://example.com/ 8459 317202 317202.431640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04366681368296 0 \N \N f 0 \N 0 53145019 0 f f \N \N \N \N 317202 \N 0 0 \N \N f \N 441240 2024-02-27 23:27:13.955 2024-02-27 23:37:16.318 \N Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nEvery east political drug. Important game subject seat se https://example.com/ 7772 440313 439946.440242.440313.441240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.445055554966 0 \N \N f 0 \N 2 226622656 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 431168 2024-02-19 18:06:20.465 2024-02-19 18:16:21.301 \N Anything common leader response. Source news glass bed. Third fire understand beautiful mon https://example.com/ 20133 431156 431122.431138.431156.431168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1514795539449 0 \N \N f 0 \N 0 242596929 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 442453 2024-02-28 17:19:16.359 2024-02-28 17:29:17.336 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nBuild learn name e https://example.com/ 777 441240 439946.440242.440313.441240.442453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6694997977484 0 \N \N f 0 \N 1 130630028 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 431742 2024-02-19 19:48:00.375 2024-02-19 19:58:01.918 \N Rich leg value billion long. D https://example.com/ 18583 308037 308037.431742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2065282993628 0 \N \N f 0 \N 0 88124956 0 f f \N \N \N \N 308037 \N 0 0 \N \N f \N 444453 2024-03-01 00:30:52.726 2024-03-01 00:40:54.525 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two https://example.com/ 21527 444444 443712.443834.444412.444416.444436.444444.444453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6037686028488 0 \N \N f 0 \N 1 191120212 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 442482 2024-02-28 17:41:03.813 2024-02-28 17:51:05.447 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set stud https://example.com/ 674 442469 442023.442469.442482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.03109201862978 0 \N \N f 0 \N 2 119461852 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 431736 2024-02-19 19:47:45.88 2024-02-19 19:57:46.853 \N Writer everyone voice read. Co https://example.com/ 19854 304913 304913.431736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.02746468958853 0 \N \N f 0 \N 0 184041130 0 f f \N \N \N \N 304913 \N 0 0 \N \N f \N 438050 2024-02-25 09:42:36.289 2024-02-25 09:52:38.041 Different dog example. Themselves up or perhaps. Create election newspaper She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low https://example.com/ 18774 \N 438050 \N \N \N \N \N \N \N \N security \N ACTIVE \N 14.5812408642691 0 \N \N f 0 \N 0 26487129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431491 2024-02-19 19:05:31.07 2024-02-19 19:15:32.897 \N Build leg whole describe peace https://example.com/ 19812 350873 350873.431491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2029086949989 0 \N \N f 0 \N 0 19337473 0 f f \N \N \N \N 350873 \N 0 0 \N \N f \N 431492 2024-02-19 19:05:33.52 2024-02-19 19:15:34.917 \N Story meeting hotel opportunit https://example.com/ 19541 350823 350823.431492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8538075202401 0 \N \N f 0 \N 0 162211160 0 f f \N \N \N \N 350823 \N 0 0 \N \N f \N 431493 2024-02-19 19:05:35.778 2024-02-19 19:15:36.923 \N Nature cell fact health. Fire https://example.com/ 19502 350819 350819.431493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9347125820514 0 \N \N f 0 \N 0 186980511 0 f f \N \N \N \N 350819 \N 0 0 \N \N f \N 431494 2024-02-19 19:05:38.102 2024-02-19 19:15:39.386 \N Professional remain report inv https://example.com/ 20430 350486 350486.431494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49421548451079 0 \N \N f 0 \N 0 10276291 0 f f \N \N \N \N 350486 \N 0 0 \N \N f \N 431495 2024-02-19 19:05:41.073 2024-02-19 19:15:42.975 \N Center stand near long paintin https://example.com/ 18387 350467 350467.431495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4209998067576 0 \N \N f 0 \N 0 45564354 0 f f \N \N \N \N 350467 \N 0 0 \N \N f \N 431496 2024-02-19 19:05:43.35 2024-02-19 19:15:45.092 \N Involve morning someone them C https://example.com/ 15226 350287 350287.431496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1342653397073 0 \N \N f 0 \N 0 109187698 0 f f \N \N \N \N 350287 \N 0 0 \N \N f \N 438136 2024-02-25 11:39:36.422 2024-02-25 11:49:38.587 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four ag https://example.com/ 13378 437269 437269.438136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.187033589462864 0 \N \N f 0 \N 0 229647799 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 431498 2024-02-19 19:05:48.165 2024-02-19 19:15:49.433 \N Article discussion court site https://example.com/ 20080 349709 349709.431498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5712056107788 0 \N \N f 0 \N 0 96996406 0 f f \N \N \N \N 349709 \N 0 0 \N \N f \N 431499 2024-02-19 19:05:50.55 2024-02-19 19:15:51.442 \N Who collection suggest practic https://example.com/ 14271 349373 349373.431499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8790606051081 0 \N \N f 0 \N 0 175175112 0 f f \N \N \N \N 349373 \N 0 0 \N \N f \N 431347 2024-02-19 18:35:23.113 2024-02-19 18:45:24.359 \N Score player recognize carry. https://example.com/ 20450 372549 372549.431347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1003498230092 0 \N \N f 0 \N 0 202204033 0 f f \N \N \N \N 372549 \N 0 0 \N \N f \N 431748 2024-02-19 19:48:19.072 2024-02-19 19:58:20.289 \N Small concern peace on far eit https://example.com/ 21320 309805 309805.431748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6791643299023 0 \N \N f 0 \N 0 211174041 0 f f \N \N \N \N 309805 \N 0 0 \N \N f \N 431275 2024-02-19 18:22:52.747 2024-02-19 18:32:53.598 \N Until must summer internationa https://example.com/ 6421 383547 383547.431275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67621292643567 0 \N \N f 0 \N 1 79239508 0 f f \N \N \N \N 383547 \N 0 0 \N \N f \N 434383 2024-02-21 23:12:25.04 2024-02-21 23:22:26.154 \N Bad half least community race end. Through Democrat your https://example.com/ 21369 434030 433934.434030.434383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1278825394767 0 \N \N f 0 \N 1 88047705 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 440173 2024-02-27 01:50:35.805 2024-02-27 02:00:37.082 \N Possible late blood always bit. Plant in media https://example.com/ 13931 440170 440170.440173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.785045735581 0 \N \N f 0 \N 5 184376369 0 f f \N \N \N \N 440170 \N 0 0 \N \N f \N 439176 2024-02-26 12:35:35.514 2024-02-26 12:45:37.421 \N Any tend power space fund inside evidence. Member ce https://example.com/ 19263 439139 439139.439176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2039386457356 0 \N \N f 0 \N 0 101559048 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 438165 2024-02-25 12:07:49.058 2024-02-25 12:17:50.249 Republican begin audience guy ge Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nWest tend alone prepare build view support. Physical eye r https://example.com/ 7983 \N 438165 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 4.21937050949925 0 \N \N f 0 \N 2 143724271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431341 2024-02-19 18:35:06.889 2024-02-19 18:45:08.202 \N According shake the attack guy https://example.com/ 12516 373797 373797.431341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0812123368779 0 \N \N f 0 \N 0 60417775 0 f f \N \N \N \N 373797 \N 0 0 \N \N f \N 435806 2024-02-23 03:48:16.679 2024-02-23 03:58:18.585 Affect director focus feeling whole best. Power when Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car h https://example.com/ 21541 \N 435806 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 22.5368807218675 0 \N \N f 0 \N 2 89824208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444541 2024-03-01 03:53:49.106 2024-03-01 04:03:51.093 Too very admit general whole Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center te https://example.com/ 17707 \N 444541 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 5.88456036233666 0 \N \N f 0 \N 3 167545961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431486 2024-02-19 19:04:23.443 2024-02-19 19:14:25.11 \N Pass glass feeling five. Healt https://example.com/ 1006 352026 352026.431486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41155751752614 0 \N \N f 0 \N 0 114505788 0 f f \N \N \N \N 352026 \N 0 0 \N \N f \N 177694 2023-05-12 17:39:00.034 2023-05-12 17:51:09.687 Middle city alway Measure whether or materi https://example.com/ 19512 \N 177694 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3315443986414 0 \N \N f 0 \N 4 8030454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444665 2024-03-01 08:11:28.768 2024-03-01 08:21:29.371 \N Ten answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what https://example.com/ 21140 444655 444609.444626.444655.444665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2860792752634 0 \N \N f 0 \N 0 45094746 0 f f \N \N \N \N 444609 \N 0 0 \N \N f \N 431490 2024-02-19 19:05:28.741 2024-02-19 19:15:29.871 \N Red tough always try. Police c https://example.com/ 8726 350951 350951.431490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92181390628773 0 \N \N f 0 \N 0 86663224 0 f f \N \N \N \N 350951 \N 0 0 \N \N f \N 444429 2024-02-29 23:57:06.37 2024-03-01 00:07:08.402 \N Baby body day citizen change. Present identify never big charge. Street draw message ge https://example.com/ 11018 444338 443295.444338.444429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.916863236756029 0 \N \N f 0 \N 0 248607494 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444338 2024-02-29 22:04:11.349 2024-02-29 22:14:13.085 \N Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church https://example.com/ 14545 443295 443295.444338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.92953985468107 0 \N \N f 0 \N 1 156711963 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 431503 2024-02-19 19:06:01.561 2024-02-19 19:16:02.479 \N Take throw line right your tri https://example.com/ 19572 357811 357811.431503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.3429239753534 0 \N \N f 0 \N 0 53097264 0 f f \N \N \N \N 357811 \N 0 0 \N \N f \N 431405 2024-02-19 18:57:56.803 2024-02-19 19:07:57.657 \N Adult carry training two campa https://example.com/ 8544 365198 365198.431405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2407051377791 0 \N \N f 0 \N 0 86895081 0 f f \N \N \N \N 365198 \N 0 0 \N \N f \N 431463 2024-02-19 19:02:02.409 2024-02-19 19:12:03.907 \N Specific child according. Behi https://example.com/ 681 368845 368845.431463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4484106481202 0 \N \N f 0 \N 1 97591221 0 f f \N \N \N \N 368845 \N 0 0 \N \N f \N 431458 2024-02-19 19:01:50.9 2024-02-19 19:11:51.689 \N Bag couple hot buy yourself se https://example.com/ 21503 367555 367555.431458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5546789779049 0 \N \N f 0 \N 0 230430185 0 f f \N \N \N \N 367555 \N 0 0 \N \N f \N 431459 2024-02-19 19:01:53.203 2024-02-19 19:11:54.721 \N South both increase democratic https://example.com/ 18265 367707 367707.431459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.27393195136951 0 \N \N f 0 \N 0 179819897 0 f f \N \N \N \N 367707 \N 0 0 \N \N f \N 431461 2024-02-19 19:01:57.67 2024-02-19 19:11:58.749 \N Everyone usually memory amount https://example.com/ 20254 368832 368832.431461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.69264507989968 0 \N \N f 0 \N 1 127110987 0 f f \N \N \N \N 368832 \N 0 0 \N \N f \N 431562 2024-02-19 19:09:55.412 2024-02-19 19:19:56.732 \N View especially nation nor thi https://example.com/ 19938 340457 340457.431562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04565476277949 0 \N \N f 0 \N 0 131985962 0 f f \N \N \N \N 340457 \N 0 0 \N \N f \N 435674 2024-02-22 23:55:12.633 2024-02-23 00:05:14.157 \N Want fire once his https://example.com/ 919 435667 435667.435674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3642102861166 0 \N \N f 0 \N 0 91784189 0 f f \N \N \N \N 435667 \N 0 0 \N \N f \N 431462 2024-02-19 19:02:02.148 2024-02-19 19:12:02.901 \N She loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mou https://example.com/ 910 431400 430984.431006.431067.431123.431400.431462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6427602094965 0 \N \N f 0 \N 0 67704392 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 431464 2024-02-19 19:02:05.252 2024-02-19 19:12:06.843 \N Result treatment smile capital https://example.com/ 3979 369175 369175.431464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2424275177505 0 \N \N f 0 \N 0 32630481 0 f f \N \N \N \N 369175 \N 0 0 \N \N f \N 431466 2024-02-19 19:02:10.21 2024-02-19 19:12:10.955 \N Nature cell fact health. Fire https://example.com/ 18601 369761 369761.431466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36086561630425 0 \N \N f 0 \N 0 242171138 0 f f \N \N \N \N 369761 \N 0 0 \N \N f \N 438085 2024-02-25 10:49:59.849 2024-02-25 11:00:01.443 \N Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its https://example.com/ 20912 438037 437992.438037.438085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0475472144895 0 \N \N f 0 \N 1 32280674 0 f f \N \N \N \N 437992 \N 0 0 \N \N f \N 441998 2024-02-28 14:10:53.344 2024-02-28 14:20:55.084 \N It suggest save face though senior walk oil. Establish finally lot https://example.com/ 18235 441973 438936.438995.439041.441675.441940.441973.441998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66799607720386 0 \N \N f 0 \N 1 138568654 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439199 2024-02-26 12:44:42.103 2024-02-26 12:54:43.315 \N South both increase democratic economic. Seem measure ye https://example.com/ 9261 439139 439139.439199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7796578556055 0 \N \N f 0 \N 0 210230409 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434679 2024-02-22 08:43:54.364 2024-02-22 08:53:56.095 \N Field https://example.com/ 1729 434586 434189.434586.434679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3960033572665 0 \N \N f 0 \N 0 2370246 0 f f \N \N \N \N 434189 \N 0 0 \N \N f \N 432326 2024-02-20 10:22:13.534 2024-02-20 10:32:14.702 \N Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit dri https://example.com/ 4167 432317 432301.432317.432326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0959954527492 0 \N \N f 0 \N 3 46171113 0 f f \N \N \N \N 432301 \N 0 0 \N \N f \N 437069 2024-02-24 12:03:36.791 2024-02-24 12:13:37.861 \N Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election succ https://example.com/ 20858 436960 436837.436960.437069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8202157906865 0 \N \N f 0 \N 0 3044216 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437328 2024-02-24 15:01:59.005 2024-02-24 15:12:01.391 \N Identify health spend could. Have weight civil size piece arriv https://example.com/ 1658 437044 437044.437328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.937435087327536 0 \N \N f 0 \N 2 128236061 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 441973 2024-02-28 14:00:35.693 2024-02-28 14:10:37.962 \N Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central seaso https://example.com/ 3729 441940 438936.438995.439041.441675.441940.441973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9554084212509 0 \N \N f 0 \N 3 136113286 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432764 2024-02-20 17:33:46.44 2024-02-20 17:43:47.734 \N Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen thr https://example.com/ 1515 432635 432311.432635.432764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1027874285809 0 \N \N f 0 \N 1 196197462 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 441940 2024-02-28 13:48:04.704 2024-02-28 13:58:06.151 \N Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Als https://example.com/ 20642 441675 438936.438995.439041.441675.441940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3707209875903 0 \N \N f 0 \N 4 25866251 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 442549 2024-02-28 18:38:00.25 2024-02-28 18:48:01.828 \N Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nReach too suffer story type remembe https://example.com/ 814 442548 442548.442549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4139460569415 0 \N \N f 0 \N 0 105010320 0 f f \N \N \N \N 442548 \N 0 0 \N \N f \N 435799 2024-02-23 03:33:33.49 2024-02-23 03:43:34.945 \N Stage can fish building senior. Throu https://example.com/ 21591 435798 435798.435799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6858350195826 0 \N \N f 0 \N 0 89070649 0 f f \N \N \N \N 435798 \N 0 0 \N \N f \N 432743 2024-02-20 17:18:23.954 2024-02-20 17:28:24.968 \N Per seat key down relationship step https://example.com/ 15148 432370 429670.429679.429703.432370.432743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77833387058985 0 \N \N f 0 \N 0 68914258 0 f f \N \N \N \N 429670 \N 0 0 \N \N f \N 438643 2024-02-25 20:51:03.09 2024-02-25 21:01:04.678 \N Already reduce grow only cha https://example.com/ 6160 438614 438519.438614.438643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.7885120733097 0 \N \N f 0 \N 2 207487221 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 437882 2024-02-25 02:39:38.903 2024-02-25 02:49:40.282 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Ser https://example.com/ 19463 437775 437775.437882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5113738507218 0 \N \N f 0 \N 0 13465409 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 442533 2024-02-28 18:18:47.172 2024-02-28 18:28:48.776 \N Already reduce grow only chance o https://example.com/ 622 441823 441695.441823.442533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4557858589659 0 \N \N f 0 \N 0 121266915 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 433404 2024-02-21 06:04:11.482 2024-02-21 06:14:13.422 Light check business try. Know Her particular kind s https://example.com/ 866 \N 433404 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.76907808068297 0 \N \N f 0 \N 1 9098108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438170 2024-02-25 12:11:07.215 2024-02-25 12:21:08.591 \N Budget agent center morning series internationa https://example.com/ 21159 438149 438093.438096.438132.438135.438147.438149.438170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7285069393171 0 \N \N f 0 \N 0 214565734 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444524 2024-03-01 03:23:29.396 2024-03-01 03:33:31.12 \N Get hear chair. Far president effect or say. None itself https://example.com/ 1175 443545 443545.444524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.7119382058321 0 \N \N f 0 \N 0 190814333 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 442054 2024-02-28 14:35:03.619 2024-02-28 14:45:06.004 \N Improve most form final blood. Section ability po https://example.com/ 5308 442043 442043.442054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66813333665183 0 \N \N f 0 \N 0 170170351 0 f f \N \N \N \N 442043 \N 0 0 \N \N f \N 431006 2024-02-19 17:21:15.317 2024-02-19 17:31:16.837 \N Structure ever film speech along somebody. Member ra https://example.com/ 20691 430984 430984.431006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.23316122497705 0 \N \N f 0 \N 6 16386753 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 432769 2024-02-20 17:34:47.965 2024-02-20 17:44:49.006 \N Republican plan ever. Avoid past strong. Center man cultural respond. Partic https://example.com/ 18209 432763 432736.432763.432769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.47578096763694 0 \N \N f 0 \N 0 162521945 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 438943 2024-02-26 07:34:42.947 2024-02-26 07:44:44.968 \N Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Fr https://example.com/ 21091 438940 438794.438931.438940.438943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9754139717374 0 \N \N f 0 \N 1 105489073 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 438960 2024-02-26 07:47:35.25 2024-02-26 07:57:37.433 \N Live class artist pull nearly poor. Use vote r https://example.com/ 19966 438887 438887.438960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2288270551925 0 \N \N f 0 \N 0 244082791 0 f f \N \N \N \N 438887 \N 0 0 \N \N f \N 433477 2024-02-21 08:30:04.416 2024-02-21 08:40:05.458 \N Event at administration sister school lot beh https://example.com/ 14258 433403 433403.433477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.979655050026 0 \N \N f 0 \N 3 43411156 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 431123 2024-02-19 17:43:12.65 2024-02-19 17:53:13.756 \N Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine https://example.com/ 2088 431067 430984.431006.431067.431123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.613530129185769 0 \N \N f 0 \N 4 146697951 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 433469 2024-02-21 08:08:54.024 2024-02-21 08:18:55.465 \N Focus available yeah law. Down there avoid. Program defens https://example.com/ 15103 433359 433359.433469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.10634938546891 0 \N \N f 0 \N 0 68587999 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 440707 2024-02-27 15:54:10.617 2024-02-27 16:04:12.08 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun https://example.com/ 19810 440561 440561.440707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0232283737287 0 \N \N f 0 \N 2 189310962 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 437395 2024-02-24 15:56:03.129 2024-02-24 16:06:04.942 \N Senior than easy statement both total. https://example.com/ 17984 437388 437238.437388.437395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25459353692627 0 \N \N f 0 \N 0 79042871 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 441683 2024-02-28 10:56:09.997 2024-02-28 11:06:12.712 \N Power billion method wide. Person https://example.com/ 18923 441345 441247.441274.441345.441683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46320985863949 0 \N \N f 0 \N 0 25016739 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 433236 2024-02-21 00:13:54.613 2024-02-21 00:23:56.02 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. https://example.com/ 6268 433042 432920.433042.433236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.810641582203 0 \N \N f 0 \N 1 178113447 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432566 2024-02-20 15:05:23.868 2024-02-20 15:15:25.127 \N Door wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell https://example.com/ 16848 432378 432378.432566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.10166121427074 0 \N \N f 0 \N 0 57685821 0 f f \N \N \N \N 432378 \N 0 0 \N \N f \N 433193 2024-02-20 23:38:55.689 2024-02-20 23:48:56.726 \N Already real me back ahead especially drug late. Doctor my risk party black religious https://example.com/ 19281 433181 433114.433181.433193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.705414804984 0 \N \N f 0 \N 1 202512075 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 431399 2024-02-19 18:56:23.208 2024-02-19 19:06:24.128 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nLong interesting cut grow prevent. Western ability https://example.com/ 20573 431393 431393.431399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.55879710433077 0 \N \N f 0 \N 0 106651960 0 f f \N \N \N \N 431393 \N 0 0 \N \N f \N 440525 2024-02-27 13:02:16.846 2024-02-27 13:12:19.679 \N Region side https://example.com/ 10063 440459 440422.440459.440525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8289839528502 0 \N \N f 0 \N 2 223769409 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 431400 2024-02-19 18:56:48.109 2024-02-19 19:06:49.326 \N Figure foreign game ok first agreement. F https://example.com/ 16670 431123 430984.431006.431067.431123.431400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2521486226362 0 \N \N f 0 \N 1 63124360 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 431513 2024-02-19 19:07:16.336 2024-02-19 19:17:17.464 \N Beyond song throw blood hard. https://example.com/ 2330 346051 346051.431513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6677970141138 0 \N \N f 0 \N 0 24487248 0 f f \N \N \N \N 346051 \N 0 0 \N \N f \N 431516 2024-02-19 19:07:24.492 2024-02-19 19:17:25.802 \N Drug you class operation. Have https://example.com/ 16097 345451 345451.431516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3891320686845 0 \N \N f 0 \N 0 240868951 0 f f \N \N \N \N 345451 \N 0 0 \N \N f \N 442032 2024-02-28 14:28:20.567 2024-02-28 14:38:21.71 \N Human guy both. Return once plac https://example.com/ 12368 442016 441661.441934.441937.441960.442016.442032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38283290403208 0 \N \N f 0 \N 0 103624436 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 431522 2024-02-19 19:07:45.65 2024-02-19 19:17:46.873 \N Later piece skin environmental https://example.com/ 18220 343780 343780.431522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.159414960267057 0 \N \N f 0 \N 0 133885109 0 f f \N \N \N \N 343780 \N 0 0 \N \N f \N 438158 2024-02-25 12:01:14.099 2024-02-25 12:11:15.225 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nRa https://example.com/ 21334 435314 435314.438158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9640668651839 0 \N \N f 0 \N 0 68123075 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 439078 2024-02-26 10:57:02.983 2024-02-26 11:07:05.218 \N Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience https://example.com/ 16912 438486 438486.439078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39909933094631 0 \N \N f 0 \N 0 34585675 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 438160 2024-02-25 12:01:31.963 2024-02-25 12:11:33.495 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let https://example.com/ 797 438018 437723.438018.438160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3424418559742 0 \N \N f 0 \N 0 237908210 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438172 2024-02-25 12:13:31.592 2024-02-25 12:23:33.217 \N Though eye claim side government. Form program ana https://example.com/ 21044 438145 438145.438172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.580943017073245 0 \N \N f 0 \N 0 56283126 0 f f \N \N \N \N 438145 \N 0 0 \N \N f \N 431519 2024-02-19 19:07:34.169 2024-02-19 19:17:35.515 \N Pattern fear term. Second alwa https://example.com/ 7587 345019 345019.431519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.39514039288905 0 \N \N f 0 \N 0 228524610 0 f f \N \N \N \N 345019 \N 0 0 \N \N f \N 442088 2024-02-28 14:50:02.12 2024-02-28 15:00:04.868 \N Animal character seek so https://example.com/ 5776 442083 441695.441823.442068.442078.442083.442088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2175579310058 0 \N \N f 0 \N 2 72436480 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 438663 2024-02-25 21:07:02.051 2024-02-25 21:17:03.956 \N End and certai https://example.com/ 8380 438634 438634.438663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0869030623016 0 \N \N f 0 \N 1 50241870 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 437992 2024-02-25 07:08:12.6 2024-02-25 07:18:14.119 Scientist its surfa They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. F https://example.com/ 5036 \N 437992 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 7.93366254961622 0 \N \N f 0 \N 3 70619182 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438037 2024-02-25 09:07:41.851 2024-02-25 09:17:43.389 \N Window here second. Series line effect https://example.com/ 17827 437992 437992.438037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2899877294991 0 \N \N f 0 \N 2 236898259 0 f f \N \N \N \N 437992 \N 0 0 \N \N f \N 431518 2024-02-19 19:07:30.71 2024-02-19 19:17:32.28 \N Key third PM painting wrong ge https://example.com/ 15617 345165 345165.431518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.7379289596199 0 \N \N f 0 \N 0 36562954 0 f f \N \N \N \N 345165 \N 0 0 \N \N f \N 436108 2024-02-23 12:39:38.283 2024-02-23 12:49:39.396 \N Film without deal production let le https://example.com/ 20162 436097 436028.436097.436108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8708979143544 0 \N \N f 0 \N 1 233022012 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 444626 2024-03-01 06:42:12.275 2024-03-01 06:52:13.547 \N Call system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nLay garden sing air theory. Item simply month guess better conferen https://example.com/ 6777 444609 444609.444626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44179303521955 0 \N \N f 0 \N 2 210505608 0 f f \N \N \N \N 444609 \N 0 0 \N \N f \N 438176 2024-02-25 12:20:06.307 2024-02-25 12:30:07.075 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Souther https://example.com/ 16954 438161 438093.438159.438161.438176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.52665847889767 0 \N \N f 0 \N 0 228983464 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438177 2024-02-25 12:20:50.281 2024-02-25 12:30:51.52 \N Book ok power church man machine. Where stop custom https://example.com/ 10291 438102 438088.438102.438177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40190596853334 0 \N \N f 0 \N 0 68641971 0 f f \N \N \N \N 438088 \N 0 0 \N \N f \N 439082 2024-02-26 11:00:02.952 2024-02-26 11:10:03.984 Commercial los Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nPurpose add when information sing like r https://example.com/ 20251 \N 439082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.88793490534815 0 \N \N f 0 \N 85 140866639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432952 2024-02-20 19:54:19.055 2024-02-20 20:04:20.659 \N Small newspaper answer adult morning. Effort happy https://example.com/ 5565 432344 432344.432952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1764670879971 0 \N \N f 0 \N 8 86325274 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 437512 2024-02-24 17:24:46.719 2024-02-24 17:34:48.02 \N Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fe https://example.com/ 18017 437233 437233.437512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2794557139618 0 \N \N f 0 \N 6 113359315 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 439239 2024-02-26 13:00:37.054 2024-02-26 13:10:39.657 \N Discussion various drop throw none test wind. Exactl https://example.com/ 17710 439139 439139.439239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35031998312674 0 \N \N f 0 \N 0 231214680 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437292 2024-02-24 14:44:03.745 2024-02-24 14:54:04.887 \N Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those https://example.com/ 17944 437271 436752.437184.437271.437292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0814027685739 0 \N \N f 0 \N 38 159739394 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 441657 2024-02-28 10:31:17.897 2024-02-28 10:41:19.954 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nPr https://example.com/ 18539 441654 441514.441652.441654.441657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.46221744531 0 \N \N f 0 \N 0 2103248 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 439704 2024-02-26 18:05:36.364 2024-02-26 18:15:37.939 \N Stock short may one soldier table past. Arrive nice https://example.com/ 20546 439139 439139.439704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2035486452986 0 \N \N f 0 \N 0 147004315 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 444716 2024-03-01 10:15:25.533 2024-03-01 10:25:26.881 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nRepublican plan ever. https://example.com/ 21441 444710 444710.444716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3273924242305 0 \N \N f 0 \N 0 201057559 0 f f \N \N \N \N 444710 \N 0 0 \N \N f \N 444655 2024-03-01 07:44:51.523 2024-03-01 07:54:53.031 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain televis https://example.com/ 19637 444626 444609.444626.444655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.230225813218112 0 \N \N f 0 \N 1 162565753 0 f f \N \N \N \N 444609 \N 0 0 \N \N f \N 431402 2024-02-19 18:57:37.632 2024-02-19 19:07:39.382 \N Again trade author cultural ta https://example.com/ 21047 365443 365443.431402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6987973513434 0 \N \N f 0 \N 0 4805853 0 f f \N \N \N \N 365443 \N 0 0 \N \N f \N 431521 2024-02-19 19:07:41.246 2024-02-19 19:17:42.861 \N Measure would expert nation tw https://example.com/ 13553 343837 343837.431521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3465289570421 0 \N \N f 0 \N 0 35625332 0 f f \N \N \N \N 343837 \N 0 0 \N \N f \N 431403 2024-02-19 18:57:44.803 2024-02-19 19:07:45.57 \N With feel late. Receive one fi https://example.com/ 13574 365366 365366.431403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6617918215682 0 \N \N f 0 \N 0 240820154 0 f f \N \N \N \N 365366 \N 0 0 \N \N f \N 431417 2024-02-19 18:59:32.613 2024-02-19 19:09:33.793 \N Provide red song family quickl https://example.com/ 9335 363271 363271.431417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.81491452500282 0 \N \N f 0 \N 0 129281629 0 f f \N \N \N \N 363271 \N 0 0 \N \N f \N 438056 2024-02-25 09:55:36.467 2024-02-25 10:05:38.463 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career communit https://example.com/ 19583 437990 437099.437461.437990.438056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.69637921061518 0 \N \N f 0 \N 0 145484814 0 f f \N \N \N \N 437099 \N 0 0 \N \N f \N 431404 2024-02-19 18:57:49.56 2024-02-19 19:07:51.507 \N Chance near song measure every https://example.com/ 17927 365289 365289.431404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.33660735741277 0 \N \N f 0 \N 0 232653101 0 f f \N \N \N \N 365289 \N 0 0 \N \N f \N 437940 2024-02-25 04:22:22.427 2024-02-25 04:32:24.17 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently m https://example.com/ 15159 437931 437723.437762.437870.437921.437931.437940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2055322714866 0 \N \N f 0 \N 2 11484895 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 434141 2024-02-21 18:23:24.676 2024-02-21 18:33:25.858 Increase agent mana Then voice gun. https://example.com/ 21398 \N 434141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0781477370903 0 \N \N f 0 \N 4 125519125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438129 2024-02-25 11:35:41.007 2024-02-25 11:45:43.296 \N Too very admit general whole east. General activity prevent Mr https://example.com/ 5057 437966 437966.438129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1708207868793 0 \N \N f 0 \N 0 76569506 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 435672 2024-02-22 23:52:34.655 2024-02-23 00:02:36.256 \N Experience base structure our question https://example.com/ 986 435664 435516.435664.435672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0342350959676 0 \N \N f 0 \N 0 78428971 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 437062 2024-02-24 11:50:24.113 2024-02-24 12:00:25.124 Human appear she. So happen occur effect. If north br General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. https://example.com/ 8037 \N 437062 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.48629953375494 0 \N \N f 0 \N 3 4272132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444631 2024-03-01 06:49:55.086 2024-03-01 06:59:56.589 Never whose degree. Investment easy Down his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency https://example.com/ 14225 \N 444631 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 25.5997704102665 0 \N \N f 0 \N 0 184409484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435889 2024-02-23 06:40:43.469 2024-02-23 06:50:45.972 \N Le https://example.com/ 18357 435812 435812.435889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1404324582185 0 \N \N f 0 \N 0 198399264 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 441651 2024-02-28 10:25:11.857 2024-02-28 10:35:14.476 \N Could computer meet. Board response member bad oil h https://example.com/ 3656 441648 441514.441529.441647.441648.441651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.46624193828045 0 \N \N f 0 \N 0 6811012 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 440297 2024-02-27 07:28:14.594 2024-02-27 07:38:16.279 \N Ground https://example.com/ 21430 440236 440206.440236.440297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72467223023119 0 \N \N f 0 \N 0 238313475 0 f f \N \N \N \N 440206 \N 0 0 \N \N f \N 438381 2024-02-25 15:45:35.733 2024-02-25 15:55:37.742 \N Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And stud https://example.com/ 928 438342 437524.437945.438055.438342.438381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.15249044286933 0 \N \N f 0 \N 1 135090905 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 431874 2024-02-19 21:21:24.13 2024-02-19 21:31:25.984 \N Beat case firm shoulder dream form action. https://example.com/ 19512 430734 430700.430716.430734.431874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9154329091713 0 \N \N f 0 \N 1 143451176 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 434594 2024-02-22 06:04:53.305 2024-02-22 06:14:54.446 \N Such among bank choice themselves. Matter in really https://example.com/ 17106 434591 434591.434594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4606352413215 0 \N \N f 0 \N 0 147538335 0 f f \N \N \N \N 434591 \N 0 0 \N \N f \N 431795 2024-02-19 19:56:13.949 2024-02-19 20:06:16.033 \N Health catch toward hair I. Amount to smile sort attack. Best pass statement ad https://example.com/ 954 431102 431102.431795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72244521711082 0 \N \N f 0 \N 3 6212101 0 f f \N \N \N \N 431102 \N 0 0 \N \N f \N 434783 2024-02-22 10:47:00.242 2024-02-22 10:57:01.387 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent fi https://example.com/ 16912 434782 434782.434783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8416838195088 0 \N \N f 0 \N 0 45059283 0 f f \N \N \N \N 434782 \N 0 0 \N \N f \N 431843 2024-02-19 20:36:33.245 2024-02-19 20:46:34.411 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground thos https://example.com/ 10611 431412 431412.431843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6185554360893 0 \N \N f 0 \N 0 152751227 0 f f \N \N \N \N 431412 \N 0 0 \N \N f \N 438199 2024-02-25 12:53:03.638 2024-02-25 13:03:05.207 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime https://example.com/ 18704 438188 438188.438199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2329313298037 0 \N \N f 0 \N 0 43828836 0 f f \N \N \N \N 438188 \N 0 0 \N \N f \N 444609 2024-03-01 06:16:35.971 2024-03-01 06:26:37.967 Direction network employee only ec Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nBack spend task real. Relat https://example.com/ 1221 \N 444609 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4506704006949 0 \N \N f 0 \N 4 147983863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434652 2024-02-22 07:37:07.904 2024-02-22 07:47:09.349 \N Successful power down must next system pull prov https://example.com/ 669 434646 434646.434652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40101628774617 0 \N \N f 0 \N 2 238931644 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 444869 2024-03-01 11:55:44.772 2024-03-01 12:05:46.252 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size https://example.com/ 2773 444815 444700.444815.444869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19389639600111 0 \N \N f 0 \N 0 133504338 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 444685 2024-03-01 09:20:47.139 2024-03-01 09:30:48.697 \N Baby yourself significant both truth decide seem already. Coach around many here customer https://example.com/ 687 444657 444657.444685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7864771552515 0 \N \N f 0 \N 0 29852817 0 f f \N \N \N \N 444657 \N 0 0 \N \N f \N 438205 2024-02-25 13:00:04.949 2024-02-25 13:00:10.826 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular l https://example.com/ 9339 438204 438204.438205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64589324863923 0 \N \N f 0 \N 0 233975559 0 f f \N \N \N \N 438204 \N 0 0 \N \N f \N 434704 2024-02-22 09:29:43.684 2024-02-22 09:39:44.703 \N Measure would expert nation two. Prove at toge https://example.com/ 11776 434647 434647.434704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2760861704183 0 \N \N f 0 \N 0 7587764 0 f f \N \N \N \N 434647 \N 0 0 \N \N f \N 431584 2024-02-19 19:18:25.503 2024-02-19 19:28:26.907 \N Area series street exist cold https://example.com/ 21387 332316 332316.431584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7350948981674 0 \N \N f 0 \N 0 234725732 0 f f \N \N \N \N 332316 \N 0 0 \N \N f \N 438210 2024-02-25 13:03:55.751 2024-02-25 13:13:57.815 \N Family materi https://example.com/ 9026 438189 438189.438210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17242541924192 0 \N \N f 0 \N 0 216945070 0 f f \N \N \N \N 438189 \N 0 0 \N \N f \N 438242 2024-02-25 13:38:17.066 2024-02-25 13:48:18.45 \N Water wrong somebody book nor member. Also build off modern professor. Into trial p https://example.com/ 20683 438093 438093.438242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6667320963444 0 \N \N f 0 \N 1 39190688 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444732 2024-03-01 10:30:22.464 2024-03-01 10:40:24.131 \N We law local https://example.com/ 19668 444724 444687.444709.444724.444732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5436653521032 0 \N \N f 0 \N 2 119032582 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 443444 2024-02-29 13:14:40.319 2024-02-29 13:24:42.093 \N Debate p https://example.com/ 3360 443438 443438.443444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9662613896497 0 \N \N f 0 \N 0 81024021 0 f f \N \N \N \N 443438 \N 0 0 \N \N f \N 444840 2024-03-01 11:30:32.236 2024-03-01 11:40:33.812 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It gard https://example.com/ 19043 444732 444687.444709.444724.444732.444840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31187399100205 0 \N \N f 0 \N 1 186065760 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 434762 2024-02-22 10:25:30.582 2024-02-22 10:35:31.862 \N Company save finally water. Agree choice https://example.com/ 19303 434684 434646.434684.434762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9476842534876 0 \N \N f 0 \N 0 44540121 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 438138 2024-02-25 11:43:10.076 2024-02-25 11:53:11.157 \N Thank rule physical trip attorney staff vote reach. Effe https://example.com/ 899 438025 437966.437981.438025.438138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37489557762671 0 \N \N f 0 \N 0 56380802 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 444879 2024-03-01 12:02:53.503 2024-03-01 12:12:55.604 \N Focus available yeah law. Down there https://example.com/ 1603 444168 444168.444879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.4111074127084 0 \N \N f 0 \N 0 200073885 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 436433 2024-02-23 17:10:23.254 2024-02-23 17:20:25.584 \N Mrs when num https://example.com/ 13987 436330 436258.436330.436433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4546034778266 0 \N \N f 0 \N 0 81102877 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 431589 2024-02-19 19:18:44.519 2024-02-19 19:28:45.855 \N International yourself availab https://example.com/ 2961 333727 333727.431589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.15604698280578 0 \N \N f 0 \N 0 91546481 0 f f \N \N \N \N 333727 \N 0 0 \N \N f \N 444955 2024-03-01 13:10:04.161 2024-03-01 13:20:05.4 \N She for deep administration everybody under front over. Other from fire popular govern https://example.com/ 7903 444905 444874.444905.444955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4127538913471 0 \N \N f 0 \N 0 214034361 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 431970 2024-02-19 22:43:38.064 2024-02-19 22:53:39.089 \N Floor among test materi https://example.com/ 19267 431874 430700.430716.430734.431874.431970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.198161978404 0 \N \N f 0 \N 0 53828017 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 431379 2024-02-19 18:38:13.672 2024-02-19 18:48:15.259 \N Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Stil https://example.com/ 13547 430525 430496.430525.431379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6959645730066 0 \N \N f 0 \N 0 166644305 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 436442 2024-02-23 17:16:51.062 2024-02-23 17:26:53.089 \N Measure would expert nati https://example.com/ 20616 436364 436364.436442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.95133647441 0 \N \N f 0 \N 1 83204784 0 f f \N \N \N \N 436364 \N 0 0 \N \N f \N 441652 2024-02-28 10:25:40.611 2024-02-28 10:35:42.39 \N Yeah word become defense role yourself suddenly. Draw relationship dre https://example.com/ 876 441514 441514.441652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7476227995141 0 \N \N f 0 \N 2 240887664 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 434022 2024-02-21 17:22:57.267 2024-02-21 17:32:59.031 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself s https://example.com/ 3417 433740 433740.434022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7255738733853 0 \N \N f 0 \N 4 42456729 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 431975 2024-02-19 22:50:04.032 2024-02-19 23:00:04.729 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nSome nation represent who. Sometimes ability defense great response than. https://example.com/ 9844 431844 431844.431975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.8958439458733 0 \N \N f 0 \N 2 123512263 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 436555 2024-02-23 18:47:21.673 2024-02-23 18:57:24.01 Test rock daughter nation moment. Article want structure campaign. Pi Scientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able rese https://example.com/ 2016 \N 436555 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.060379950527 0 \N \N f 0 \N 0 125429406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438286 2024-02-25 14:13:30.918 2024-02-25 14:23:31.711 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capita https://example.com/ 17227 438231 438231.438286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4513732136297 0 \N \N f 0 \N 0 169838339 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 431750 2024-02-19 19:48:25.165 2024-02-19 19:58:26.144 \N Second point director operatio https://example.com/ 20906 309832 309832.431750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.042907119451 0 \N \N f 0 \N 0 94270211 0 f f \N \N \N \N 309832 \N 0 0 \N \N f \N 431763 2024-02-19 19:53:09.889 2024-02-19 20:03:11.829 \N Leave example grow lead someth https://example.com/ 2098 293264 293264.431763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40366950257612 0 \N \N f 0 \N 0 39000811 0 f f \N \N \N \N 293264 \N 0 0 \N \N f \N 431725 2024-02-19 19:47:16.973 2024-02-19 19:57:18.218 \N Method same car buy side. Pric https://example.com/ 12097 297785 297785.431725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4249831222244 0 \N \N f 0 \N 0 135284328 0 f f \N \N \N \N 297785 \N 0 0 \N \N f \N 431726 2024-02-19 19:47:20.262 2024-02-19 19:57:22.255 \N Main ball collection eye. What https://example.com/ 8459 297590 297590.431726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0039311206012 0 \N \N f 0 \N 0 152037848 0 f f \N \N \N \N 297590 \N 0 0 \N \N f \N 431727 2024-02-19 19:47:22.681 2024-02-19 19:57:24.267 \N Film without deal production l https://example.com/ 1010 297339 297339.431727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44324989756496 0 \N \N f 0 \N 0 227671491 0 f f \N \N \N \N 297339 \N 0 0 \N \N f \N 431566 2024-02-19 19:12:46.329 2024-02-19 19:22:47.975 \N Identify painting degree hit shake film. Plan government https://example.com/ 21320 430626 430626.431566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82740672545532 0 \N \N f 0 \N 0 213628845 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 431173 2024-02-19 18:12:49.631 2024-02-19 18:22:50.642 \N Measure would expert nation two. Prove at https://example.com/ 19282 430626 430626.431173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61687947398016 0 \N \N f 0 \N 0 64826026 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 438277 2024-02-25 14:07:42.221 2024-02-25 14:17:43.646 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain aft https://example.com/ 8945 438137 437996.438137.438277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1989192765014 0 \N \N f 0 \N 0 210182895 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 431729 2024-02-19 19:47:27.551 2024-02-19 19:57:29.304 \N Serve deep station probably wr https://example.com/ 18412 297162 297162.431729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9507381951428 0 \N \N f 0 \N 0 247887967 0 f f \N \N \N \N 297162 \N 0 0 \N \N f \N 438186 2024-02-25 12:34:29.128 2024-02-25 12:44:31.482 \N Republican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural tal https://example.com/ 626 438093 438093.438186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1766987775917 0 \N \N f 0 \N 0 101877077 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 434912 2024-02-22 12:47:29.897 2024-02-22 12:57:31.429 \N Action prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nAmerican animal bad responsibility current. Human company option drive alone need pe https://example.com/ 854 434899 434646.434871.434899.434912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.13715398920743 0 \N \N f 0 \N 1 222487664 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 431654 2024-02-19 19:34:01.195 2024-02-19 19:44:02.474 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess cha https://example.com/ 8472 430761 430761.431654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4987478393871 0 \N \N f 0 \N 0 107971164 0 f f \N \N \N \N 430761 \N 0 0 \N \N f \N 444834 2024-03-01 11:28:07.216 2024-03-01 11:38:07.934 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nHope more garden development record. Every move another every table pretty https://example.com/ 9167 444739 444739.444834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8813611037429 0 \N \N f 0 \N 3 8824447 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 431866 2024-02-19 21:01:24.074 2024-02-19 21:11:25.501 \N Smile paper though to catch. Situa https://example.com/ 21072 431848 430770.431848.431866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93748086737254 0 \N \N f 0 \N 0 90204005 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 444898 2024-03-01 12:13:58.647 2024-03-01 12:23:59.639 \N Special identify senior difference third. Study o https://example.com/ 20231 444718 444718.444898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.482360587489 0 \N \N f 0 \N 0 182360743 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 438804 2024-02-26 01:26:17.256 2024-02-26 01:36:18.119 \N Can operation lose dinner tax meet. Goal reflect when next. Card paintin https://example.com/ 2088 438651 438651.438804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9426979769724 0 \N \N f 0 \N 4 59252887 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 431867 2024-02-19 21:02:30.03 2024-02-19 21:12:31.63 \N If lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw author https://example.com/ 3642 431848 430770.431848.431867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89995696039742 0 \N \N f 0 \N 0 198802245 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 431863 2024-02-19 21:00:06.6 2024-02-19 21:00:11.781 \N Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nQuite teacher accept per agent PM suddenl https://example.com/ 20036 431862 431862.431863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2857852152434 0 \N \N f 0 \N 0 168851891 0 f f \N \N \N \N 431862 \N 0 0 \N \N f \N 431825 2024-02-19 20:19:19.615 2024-02-19 20:29:20.941 \N Product analysis affect cer https://example.com/ 7913 431756 431598.431756.431825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.672518434486 0 \N \N f 0 \N 0 58127002 0 f f \N \N \N \N 431598 \N 0 0 \N \N f \N 432382 2024-02-20 11:43:52.208 2024-02-20 11:53:53.4 \N Their election city process. Agency early its stock. Recent while population special serve eat amon https://example.com/ 1244 432344 432344.432382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0346063251254 0 \N \N f 0 \N 15 182974536 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 431756 2024-02-19 19:51:56.016 2024-02-19 20:01:57.233 \N Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statem https://example.com/ 17568 431598 431598.431756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4794482206458 0 \N \N f 0 \N 1 106337178 0 f f \N \N \N \N 431598 \N 0 0 \N \N f \N 438122 2024-02-25 11:29:26.014 2024-02-25 11:39:27.076 Join push remain behavior. Various song no successful own. Hi Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every wa https://example.com/ 658 \N 438122 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.7281774422916 0 \N \N f 0 \N 1 140902726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444903 2024-03-01 12:18:57.612 2024-03-01 12:28:59.013 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again https://example.com/ 17001 442904 442904.444903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4861059534727 0 \N \N f 0 \N 0 210791295 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 438300 2024-02-25 14:22:55.242 2024-02-25 14:32:56.381 Source scientist hair let. Tough hit specific else. Task Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relatio https://example.com/ 19488 \N 438300 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.12069373412402 0 \N \N f 0 \N 0 211010255 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430911 2024-02-19 16:15:58.529 2024-02-19 16:26:00.62 \N Research https://example.com/ 21562 430860 430860.430911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4388788483826 0 \N \N f 0 \N 0 193081728 0 f f \N \N \N \N 430860 \N 0 0 \N \N f \N 438590 2024-02-25 19:29:06.103 2024-02-25 19:39:07.318 \N Determine magazine police agent billion. Head great exist. Ag https://example.com/ 18678 438504 438504.438590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.91827159873277 0 \N \N f 0 \N 0 239640320 0 f f \N \N \N \N 438504 \N 0 0 \N \N f \N 444759 2024-03-01 10:51:39.885 2024-03-01 11:01:41.465 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply withou https://example.com/ 1114 444718 444718.444759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6831970295465 0 \N \N f 0 \N 1 219956396 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 430850 2024-02-19 15:25:27.899 2024-02-19 15:35:28.992 \N Rate thought reason six suggest help. H https://example.com/ 1493 430771 430771.430850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2242054150961 0 \N \N f 0 \N 0 227666713 0 f f \N \N \N \N 430771 \N 0 0 \N \N f \N 430856 2024-02-19 15:28:06.633 2024-02-19 15:38:08.226 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. https://example.com/ 10549 429764 429764.430856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3581238670435 0 \N \N f 0 \N 0 207389690 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 438756 2024-02-25 23:55:34.951 2024-02-26 00:05:36.206 Determine magazine police agent bil Economy rest whatever spring among least against and https://example.com/ 1046 \N 438756 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 9.8747780238455 0 \N \N f 0 \N 0 108061967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434114 2024-02-21 18:09:36.558 2024-02-21 18:19:37.515 \N Detail discussion line around. Art along house keep him. Test peace else issue. Sectio https://example.com/ 21603 433796 433796.434114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6967204124449 0 \N \N f 0 \N 0 6764680 0 f f \N \N \N \N 433796 \N 0 0 \N \N f \N 438309 2024-02-25 14:33:25.335 2024-02-25 14:43:27.366 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most optio https://example.com/ 9476 437454 437454.438309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.23095778303 0 \N \N f 0 \N 0 16550317 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 436679 2024-02-23 21:44:03.665 2024-02-23 21:54:05.797 \N We course us bank recently sig https://example.com/ 2502 436665 436665.436679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05240162029783 0 \N \N f 0 \N 0 182540584 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N 441348 2024-02-28 01:29:42.861 2024-02-28 01:39:44.559 \N Model late institution once force rock. Range media reflect argue unde https://example.com/ 4064 441236 441198.441236.441348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4757450070307 0 \N \N f 0 \N 0 68927559 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 444803 2024-03-01 11:10:49.518 2024-03-01 11:20:51.117 \N South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us https://example.com/ 9364 444718 444718.444803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2355297559362 0 \N \N f 0 \N 1 71038615 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444804 2024-03-01 11:10:54.554 2024-03-01 11:20:55.463 \N Why long up fly difficult nature. Age condition practice area https://example.com/ 19809 444294 443295.444294.444804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5741176569905 0 \N \N f 0 \N 1 142238972 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 431754 2024-02-19 19:50:53.047 2024-02-19 20:00:54.047 \N Politics or often interview. Chair value threat likely one. Evi https://example.com/ 19398 430155 430155.431754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2518399477659 0 \N \N f 0 \N 1 119820290 0 f f \N \N \N \N 430155 \N 0 0 \N \N f \N 431761 2024-02-19 19:53:03.978 2024-02-19 20:03:09.009 \N Theory teach dream home past. https://example.com/ 15063 293880 293880.431761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1341061208986 0 \N \N f 0 \N 0 101156024 0 f f \N \N \N \N 293880 \N 0 0 \N \N f \N 444895 2024-03-01 12:12:59.979 2024-03-01 12:23:02.263 \N Protect evidence very many nearly challenge pa https://example.com/ 18658 444755 444755.444895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.31589120844 0 \N \N f 0 \N 0 116989379 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 431759 2024-02-19 19:52:57.751 2024-02-19 20:03:13.841 \N Face opportunity account eat p https://example.com/ 16178 294017 294017.431759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2435282120656 0 \N \N f 0 \N 0 10936048 0 f f \N \N \N \N 294017 \N 0 0 \N \N f \N 431768 2024-02-19 19:53:21.384 2024-02-19 20:03:22.884 \N Wear role agency. Enter back r https://example.com/ 6533 292538 292538.431768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.849268277411 0 \N \N f 0 \N 0 72293071 0 f f \N \N \N \N 292538 \N 0 0 \N \N f \N 431771 2024-02-19 19:53:29.688 2024-02-19 20:03:30.933 \N Sound clearly happen age onto https://example.com/ 2203 291738 291738.431771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.609265953050162 0 \N \N f 0 \N 0 50493914 0 f f \N \N \N \N 291738 \N 0 0 \N \N f \N 431772 2024-02-19 19:53:32.475 2024-02-19 20:03:33.947 \N Entire money chair between var https://example.com/ 18468 291604 291604.431772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1043201057804 0 \N \N f 0 \N 0 23864752 0 f f \N \N \N \N 291604 \N 0 0 \N \N f \N 431773 2024-02-19 19:53:35.254 2024-02-19 20:03:37.09 \N Long sound continue test occur https://example.com/ 3729 291080 291080.431773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29865836489274 0 \N \N f 0 \N 0 64822600 0 f f \N \N \N \N 291080 \N 0 0 \N \N f \N 431774 2024-02-19 19:53:37.744 2024-02-19 20:03:39.112 \N With officer scientist letter https://example.com/ 2203 291036 291036.431774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3347761534077 0 \N \N f 0 \N 0 190647557 0 f f \N \N \N \N 291036 \N 0 0 \N \N f \N 431775 2024-02-19 19:53:40.165 2024-02-19 20:03:42.135 \N Economy rest whatever spring a https://example.com/ 11938 290864 290864.431775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.613312700264 0 \N \N f 0 \N 0 226937466 0 f f \N \N \N \N 290864 \N 0 0 \N \N f \N 431776 2024-02-19 19:53:42.719 2024-02-19 20:03:44.151 \N Involve morning someone them C https://example.com/ 19153 290627 290627.431776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2490036232705 0 \N \N f 0 \N 0 222920316 0 f f \N \N \N \N 290627 \N 0 0 \N \N f \N 436831 2024-02-24 01:58:11.36 2024-02-24 02:08:12.462 \N Letter both ability. Strong sev https://example.com/ 20871 436028 436028.436831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.927747865823 0 \N \N f 0 \N 0 116077621 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 444777 2024-03-01 11:02:12.265 2024-03-01 11:12:13.483 \N Name everyone employee visit wonder serious. Everyth https://example.com/ 6717 444738 444718.444738.444777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7878637825622 0 \N \N f 0 \N 0 66574379 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444738 2024-03-01 10:34:21.663 2024-03-01 10:44:23.276 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hou https://example.com/ 20642 444718 444718.444738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9956205557762 0 \N \N f 0 \N 2 247384180 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444835 2024-03-01 11:28:20.213 2024-03-01 11:38:21.957 \N Qu https://example.com/ 10102 444831 444770.444771.444782.444785.444794.444831.444835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.494893301738273 0 \N \N f 0 \N 0 20811989 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431797 2024-02-19 19:56:58.332 2024-02-19 20:07:00.004 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. https://example.com/ 1505 431755 430549.430560.430781.431755.431797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.27925925356887 0 \N \N f 0 \N 0 155602486 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 431841 2024-02-19 20:34:10.922 2024-02-19 20:44:12.385 \N Professional remain report involve eye https://example.com/ 11091 431001 430993.431001.431841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0691854199191 0 \N \N f 0 \N 0 114304516 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 441970 2024-02-28 14:00:04.62 2024-02-28 14:10:06.187 Produce serie \N https://example.com/ 7097 \N 441970 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.64381193270555 0 \N \N f 0 \N 2 23238270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444967 2024-03-01 13:27:40.128 2024-03-01 13:37:41.748 \N Spe https://example.com/ 12959 442014 441661.441934.441937.442000.442014.444967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33080876450312 0 \N \N f 0 \N 0 248729987 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 431849 2024-02-19 20:40:24.552 2024-02-19 20:50:26.472 \N Adult carry training two campaign. Happen military m https://example.com/ 18772 430920 430920.431849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7816511352064 0 \N \N f 0 \N 0 7035947 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 444854 2024-03-01 11:45:47.188 2024-03-01 11:55:48.08 \N Wrong according some him. Foo https://example.com/ 21609 444847 444770.444847.444854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8791019035131 0 \N \N f 0 \N 1 44452803 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431810 2024-02-19 20:04:33.571 2024-02-19 20:14:35.017 \N Main teacher local. Western rate blood tha https://example.com/ 20066 431753 430892.431723.431753.431810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6133490791429 0 \N \N f 0 \N 1 243080999 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 436781 2024-02-24 00:36:10.792 2024-02-24 00:46:12.326 \N Blood bill here tradi https://example.com/ 20162 436683 436683.436781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4531096916381 0 \N \N f 0 \N 1 104310003 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444848 2024-03-01 11:39:19.476 2024-03-01 11:49:21.287 Red tough al They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Wher https://example.com/ 18119 \N 444848 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.581610298218 0 \N \N f 0 \N 3 80876598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430993 2024-02-19 17:12:38.552 2024-02-19 17:22:39.856 Direction figure between get especially certain. Behi Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Sev https://example.com/ 3717 \N 430993 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.3796563572734 0 \N \N f 0 \N 8 234394129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432672 2024-02-20 16:31:23.727 2024-02-20 16:41:25.598 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land perfo https://example.com/ 2832 432665 432615.432665.432672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3686836392 0 \N \N f 0 \N 2 209985517 0 f f \N \N \N \N 432615 \N 0 0 \N \N f \N 432688 2024-02-20 16:39:15.257 2024-02-20 16:49:16.392 \N Tax here if project. Thing how simply then. Against single daughte https://example.com/ 2010 432567 432411.432567.432688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2785517624457 0 \N \N f 0 \N 0 133156947 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 444908 2024-03-01 12:20:53.793 2024-03-01 12:30:56.301 \N Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Re https://example.com/ 782 444894 444739.444834.444890.444894.444908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4593636313697 0 \N \N f 0 \N 0 241262420 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 435830 2024-02-23 04:33:41.628 2024-02-23 04:43:42.936 \N Door western each. Thus first tonight run chance control. C https://example.com/ 976 429291 429291.435830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8296064153711 0 \N \N f 0 \N 0 95914078 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 431001 2024-02-19 17:19:41.223 2024-02-19 17:29:43.261 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hos https://example.com/ 21455 430993 430993.431001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1116725917092 0 \N \N f 0 \N 7 67589788 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 441917 2024-02-28 13:30:26.396 2024-02-28 13:40:27.953 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious g https://example.com/ 3439 441854 441854.441917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20367342469115 0 \N \N f 0 \N 0 281439 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 435648 2024-02-22 23:18:38.793 2024-02-22 23:28:40.03 How never cut grow benefit. Dinner environmental side Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility law https://example.com/ 20562 \N 435648 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.91846856003209 0 \N \N f 0 \N 0 191620585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444791 2024-03-01 11:06:04.06 2024-03-01 11:16:05.542 \N Development political left not every themselves factor create. Weight level arm skin subject. Genera https://example.com/ 18533 444718 444718.444791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29219707413655 0 \N \N f 0 \N 2 151514187 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444865 2024-03-01 11:53:49.547 2024-03-01 12:03:51.658 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tel https://example.com/ 20602 444856 444718.444856.444865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.524119147659 0 \N \N f 0 \N 0 27355871 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 435419 2024-02-22 19:14:35.406 2024-02-22 19:24:36.353 \N According shake the attack guy development pr https://example.com/ 9916 435411 435411.435419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4053093897412 0 \N \N f 0 \N 0 83191153 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N 431847 2024-02-19 20:38:02.054 2024-02-19 20:48:03.271 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state v https://example.com/ 8326 431412 431412.431847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4679406584724 0 \N \N f 0 \N 0 101988143 0 f f \N \N \N \N 431412 \N 0 0 \N \N f \N 439446 2024-02-26 15:16:24.944 2024-02-26 15:26:41.348 \N Door wrong under assume https://example.com/ 7673 439348 439348.439446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.12960586597521 0 \N \N f 0 \N 0 47037021 0 f f \N \N \N \N 439348 \N 0 0 \N \N f \N 430963 2024-02-19 16:48:09.743 2024-02-19 16:58:11.006 \N Science sea sport term page near. Agreement forget a https://example.com/ 16004 430626 430626.430963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6286490267955 0 \N \N f 0 \N 0 218038628 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 443617 2024-02-29 14:55:32.1 2024-02-29 15:05:33.396 Pattern someone notice power fly. Against Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay imp https://example.com/ 16942 \N 443617 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.47292120445205 0 \N \N f 0 \N 8 196419493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443285 2024-02-29 10:49:55.196 2024-02-29 10:59:56.588 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight https://example.com/ 18816 443272 443272.443285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6867590041644 0 \N \N f 0 \N 2 76167885 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444765 2024-03-01 10:55:48.963 2024-03-01 11:05:50.29 \N Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more e https://example.com/ 12930 443285 443272.443285.444765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00423021371023 0 \N \N f 0 \N 1 177098481 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444873 2024-03-01 11:58:34.777 2024-03-01 12:08:35.921 \N View especially na https://example.com/ 15732 444848 444848.444873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0958470435302 0 \N \N f 0 \N 0 77864490 0 f f \N \N \N \N 444848 \N 0 0 \N \N f \N 437271 2024-02-24 14:34:44.372 2024-02-24 14:44:46.105 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nNot reveal allow arm million popular wait w https://example.com/ 17064 437184 436752.437184.437271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.65490552106418 0 \N \N f 0 \N 40 236217579 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437284 2024-02-24 14:41:21.285 2024-02-24 14:51:22.863 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. https://example.com/ 2327 436669 436669.437284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6741507526195 0 \N \N f 0 \N 2 165615342 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 432031 2024-02-19 23:50:43.211 2024-02-20 00:00:45.403 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nSuccessful power down must next system pull provide. World health century more clear. Si https://example.com/ 18769 431844 431844.432031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2785254127131 0 \N \N f 0 \N 0 175019683 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 30293 2022-05-21 09:23:29.106 2023-10-02 01:12:11.444 Statement could up s Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people spa https://example.com/ 814 \N 30293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6266114858808 0 \N \N f 0 \N 1 148114291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437812 2024-02-25 00:54:13.397 2024-02-25 01:04:14.22 \N Different dog example. Themselves up or perhaps. Create election newspaper strategy probably s https://example.com/ 10311 437775 437775.437812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.770467673582 0 \N \N f 0 \N 1 29371510 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 444820 2024-03-01 11:20:51.404 2024-03-01 11:30:53.178 \N Possible la https://example.com/ 20022 444817 444770.444789.444795.444797.444807.444816.444817.444820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.29491093700891 0 \N \N f 0 \N 0 47933700 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 440778 2024-02-27 16:43:48.026 2024-02-27 16:53:50.156 \N Boo https://example.com/ 6653 440730 440727.440730.440778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5780914959213 0 \N \N f 0 \N 0 124081842 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 444817 2024-03-01 11:20:10.511 2024-03-01 11:30:11.447 \N Small newspaper answer adult morning. E https://example.com/ 673 444816 444770.444789.444795.444797.444807.444816.444817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7785371628128 0 \N \N f 0 \N 1 159482528 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444816 2024-03-01 11:18:58.401 2024-03-01 11:29:00.064 \N Big field certainly community. North marriage animal who https://example.com/ 9552 444807 444770.444789.444795.444797.444807.444816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9817041975031 0 \N \N f 0 \N 2 241294451 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444728 2024-03-01 10:24:52.43 2024-03-01 10:34:53.18 \N Play single finally s https://example.com/ 9863 444602 444567.444602.444728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7420750886424 0 \N \N f 0 \N 0 52642150 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 444789 2024-03-01 11:05:46.213 2024-03-01 11:15:47.378 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Car https://example.com/ 11670 444770 444770.444789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06341182203279 0 \N \N f 0 \N 10 122989324 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444807 2024-03-01 11:12:03.182 2024-03-01 11:22:04.558 \N Face opportunity account eat program father long party. Certainly allow less professional. Ea https://example.com/ 21585 444797 444770.444789.444795.444797.444807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9837144089146 0 \N \N f 0 \N 6 96253886 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444797 2024-03-01 11:09:09.837 2024-03-01 11:19:11.695 \N South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago https://example.com/ 691 444795 444770.444789.444795.444797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7618157820705 0 \N \N f 0 \N 7 244682110 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 30320 2022-05-21 12:21:33.856 2023-10-02 01:12:11.958 Response finally Smile paper t https://example.com/ 18209 \N 30320 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1149595860956 0 \N \N f 0 \N 1 47822278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443645 2024-02-29 15:01:22.58 2024-02-29 15:11:24.109 \N Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value https://example.com/ 2013 443583 443583.443645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6043748325766 0 \N \N f 0 \N 0 218925958 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 437061 2024-02-24 11:48:30.87 2024-02-24 11:58:31.917 \N Gener https://example.com/ 11829 436623 436218.436623.437061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0651057690263 0 \N \N f 0 \N 0 161997752 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 438365 2024-02-25 15:29:16.66 2024-02-25 15:39:18.945 \N Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. D https://example.com/ 12921 437631 437631.438365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5324527636402 0 \N \N f 0 \N 0 146076147 0 f f \N \N \N \N 437631 \N 0 0 \N \N f \N 445099 2024-03-01 14:56:29.788 2024-03-01 14:56:34.887 \N Agent huge issue po https://example.com/ 2710 445092 445079.445085.445088.445092.445099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5559887571907 0 \N \N f 0 \N 0 195794236 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 445102 2024-03-01 14:58:54.999 2024-03-01 14:59:00.251 \N S https://example.com/ 12278 445100 444168.445100.445102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7857644770635 0 \N \N f 0 \N 0 104561786 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 440145 2024-02-27 01:00:04.708 2024-02-27 01:10:06.125 Ask arm interview player. Director data order seaso \N https://example.com/ 2639 \N 440145 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.7965224583251 0 \N \N f 0 \N 1 28338099 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438225 2024-02-25 13:18:02.561 2024-02-25 13:28:03.27 \N Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left centu https://example.com/ 3506 438202 438202.438225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7017185078481 0 \N \N f 0 \N 0 76423249 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 438157 2024-02-25 12:00:53.845 2024-02-25 12:10:54.948 \N B https://example.com/ 9332 438133 438093.438133.438157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.481165116369731 0 \N \N f 0 \N 0 62290671 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444533 2024-03-01 03:33:35.868 2024-03-01 03:43:36.696 \N Machine sell woman west bed https://example.com/ 16097 443799 443799.444533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4568121449699 0 \N \N f 0 \N 0 154457791 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 438104 2024-02-25 11:15:29.623 2024-02-25 11:25:31.202 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount https://example.com/ 18667 437008 437008.438104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2965082313567 0 \N \N f 0 \N 0 43828584 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 444288 2024-02-29 21:02:55.853 2024-02-29 21:12:57.549 \N Look surface admit attorney https://example.com/ 17171 444168 444168.444288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54709337741489 0 \N \N f 0 \N 0 167862022 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438233 2024-02-25 13:27:08.016 2024-02-25 13:37:09.47 \N Alone the crime nig https://example.com/ 20588 438209 438209.438233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2080401434016 0 \N \N f 0 \N 0 164592177 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 444697 2024-03-01 09:55:05.448 2024-03-01 10:05:06.484 \N Threat successful admit write. Likely first response thing https://example.com/ 16341 444102 444102.444697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8001952859972 0 \N \N f 0 \N 0 160469980 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 437215 2024-02-24 14:00:11.385 2024-02-24 14:10:12.784 \N Majority https://example.com/ 19484 437205 437205.437215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47302661861655 0 \N \N f 0 \N 0 88331103 0 f f \N \N \N \N 437205 \N 0 0 \N \N f \N 442488 2024-02-28 17:43:52.699 2024-02-28 17:53:54.36 \N Field eat man but religious close. Sort vote hair travel. Wond https://example.com/ 19512 442485 442170.442485.442488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36842298423601 0 \N \N f 0 \N 1 111044013 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 441350 2024-02-28 01:31:50.255 2024-02-28 01:41:52.143 \N Score player recognize carry. Value wish for https://example.com/ 18717 441277 440898.440925.441035.441204.441277.441350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3130849030098 0 \N \N f 0 \N 0 243804130 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 444584 2024-03-01 05:31:07.195 2024-03-01 05:41:09.114 \N Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look https://example.com/ 18615 443799 443799.444584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4079589770049 0 \N \N f 0 \N 2 118791474 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 433359 2024-02-21 04:30:51.996 2024-02-21 04:40:53.549 Tree political Order science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various https://example.com/ 16097 \N 433359 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 6.01161231698008 0 \N \N f 0 \N 6 157553296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438224 2024-02-25 13:17:50.406 2024-02-25 13:27:52.177 \N Bank one body pull the expect. Issue p https://example.com/ 19660 438218 438209.438211.438214.438218.438224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47321493115012 0 \N \N f 0 \N 0 108666521 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438200 2024-02-25 12:55:49.746 2024-02-25 13:05:51.499 \N There everybody fish can. Exactly https://example.com/ 20245 438142 438142.438200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22754367493538 0 \N \N f 0 \N 1 178471529 0 f f \N \N \N \N 438142 \N 0 0 \N \N f \N 431394 2024-02-19 18:53:00.749 2024-02-19 19:03:01.81 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List https://example.com/ 2151 430920 430920.431394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1838740515773 0 \N \N f 0 \N 1 244583367 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 431594 2024-02-19 19:26:32.557 2024-02-19 19:36:34.168 \N Suffer same investment. Finish https://example.com/ 19613 328486 328486.431594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2473325971096 0 \N \N f 0 \N 0 72181877 0 f f \N \N \N \N 328486 \N 0 0 \N \N f \N 437304 2024-02-24 14:48:30.028 2024-02-24 14:58:31.261 \N Hear direction have inste https://example.com/ 1620 437279 437181.437279.437304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6140678537324 0 \N \N f 0 \N 0 119839284 0 f f \N \N \N \N 437181 \N 0 0 \N \N f \N 441354 2024-02-28 01:35:00.206 2024-02-28 01:45:01.193 \N Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nRise environmental middle fly listen rest national. Fall hospital bad four mont https://example.com/ 10728 441353 441353.441354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.395247977479407 0 \N \N f 0 \N 0 46098582 0 f f \N \N \N \N 441353 \N 0 0 \N \N f \N 443109 2024-02-29 06:16:02.076 2024-02-29 06:26:03.318 \N Already reduce grow only chance opportunity group. Sort follow get director https://example.com/ 1602 443095 442632.443095.443109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7535113052711 0 \N \N f 0 \N 2 106527058 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 441355 2024-02-28 01:35:54.277 2024-02-28 01:45:56.092 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance fo https://example.com/ 20208 441344 440692.441027.441074.441178.441307.441344.441355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1190939686355 0 \N \N f 0 \N 0 135321805 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 436320 2024-02-23 15:32:13.63 2024-02-23 15:42:15.18 \N Alone the crime night stay back. Summer certain within https://example.com/ 13169 436290 436290.436320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7077776095102 0 \N \N f 0 \N 1 61697493 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 441014 2024-02-27 20:00:51.476 2024-02-27 20:10:52.424 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit https://example.com/ 10398 440764 440764.441014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1770414569328 0 \N \N f 0 \N 1 82383523 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 440848 2024-02-27 17:30:29.413 2024-02-27 17:40:31.025 \N Go game ba https://example.com/ 20964 440707 440561.440707.440848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5354915140451 0 \N \N f 0 \N 0 216795628 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 444440 2024-03-01 00:09:05.425 2024-03-01 00:19:06.154 \N Direction business early probably black method spe https://example.com/ 9169 444365 444365.444440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3661346643923 0 \N \N f 0 \N 0 152800797 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 433627 2024-02-21 11:28:26.841 2024-02-21 11:38:28.68 \N With officer scientist letter one. Partner coach history loss. Garden responsibi https://example.com/ 20377 433620 433217.433347.433444.433607.433613.433620.433627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9427519609641 0 \N \N f 0 \N 3 18944634 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 438175 2024-02-25 12:20:01.841 2024-02-25 12:30:03.863 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance https://example.com/ 21494 438168 438093.438159.438168.438175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.20991383524858 0 \N \N f 0 \N 1 213682204 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435633 2024-02-22 22:56:14.854 2024-02-22 23:06:15.855 \N Enter land brother. Treat prove though. College everything be floor generation into. Each nothing https://example.com/ 3417 435458 435458.435633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41509442651322 0 \N \N f 0 \N 0 225109048 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 436324 2024-02-23 15:35:26.516 2024-02-23 15:45:28.628 \N Benefit car actually you open. Election hear wide school mis https://example.com/ 1596 436093 436093.436324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5926810828541 0 \N \N f 0 \N 0 13242453 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436295 2024-02-23 15:12:39.782 2024-02-23 15:22:41.642 \N Step phys https://example.com/ 20182 436269 436093.436113.436269.436295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.30578894772735 0 \N \N f 0 \N 0 223547329 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 441323 2024-02-28 01:06:08.589 2024-02-28 01:16:09.353 \N Billion very news personal develop career rate. Hair there but gr https://example.com/ 6602 441087 441087.441323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2498291130349 0 \N \N f 0 \N 0 40366238 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 432213 2024-02-20 07:28:14.307 2024-02-20 07:38:15.727 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director contin https://example.com/ 21577 431913 431161.431913.432213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5852455482807 0 \N \N f 0 \N 2 106252258 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 441648 2024-02-28 10:23:46.105 2024-02-28 10:33:48.415 \N Near key among effort cover century support aut https://example.com/ 9167 441647 441514.441529.441647.441648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9317650690533 0 \N \N f 0 \N 1 86640575 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 436408 2024-02-23 16:49:57.39 2024-02-23 16:59:59.167 \N Wind through current perhaps until now y https://example.com/ 15624 436152 436036.436152.436408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.923709893964 0 \N \N f 0 \N 0 245713707 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 435091 2024-02-22 15:17:26.03 2024-02-22 15:27:28.377 \N Parent often ever. Song modern environmental become. Evening trade mov https://example.com/ 21400 435078 435073.435078.435091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90831771653244 0 \N \N f 0 \N 3 178953547 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 444741 2024-03-01 10:36:51.893 2024-03-01 10:46:52.906 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nMember I discover option technology recognize especially. Different hair smile land late open. Medica https://example.com/ 21063 443571 443272.443571.444741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7932624323351 0 \N \N f 0 \N 2 102460053 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444753 2024-03-01 10:46:42.131 2024-03-01 10:56:43.65 \N End inside li https://example.com/ 7395 444662 444662.444753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9494109875669 0 \N \N f 0 \N 0 227037766 0 f f \N \N \N \N 444662 \N 0 0 \N \N f \N 438114 2024-02-25 11:24:38.649 2024-02-25 11:34:41.779 \N Order science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nSame listen suggest five serve sit ne https://example.com/ 17522 438093 438093.438114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.504133906936843 0 \N \N f 0 \N 0 39286040 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438178 2024-02-25 12:22:10.17 2024-02-25 12:32:11.568 \N Morning hundred analysis understand admit prevent. Time bit think https://example.com/ 8713 438175 438093.438159.438168.438175.438178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36203467497021 0 \N \N f 0 \N 0 241634918 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 431614 2024-02-19 19:32:17.915 2024-02-19 19:42:19.278 \N Determine magazine police agen https://example.com/ 16536 323088 323088.431614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.59385492228645 0 \N \N f 0 \N 0 209086945 0 f f \N \N \N \N 323088 \N 0 0 \N \N f \N 431627 2024-02-19 19:32:50.679 2024-02-19 19:42:51.634 \N Morning create future popular. https://example.com/ 18556 320714 320714.431627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28727526577398 0 \N \N f 0 \N 0 110179138 0 f f \N \N \N \N 320714 \N 0 0 \N \N f \N 431616 2024-02-19 19:32:23.957 2024-02-19 19:42:24.966 \N Nature cell fact health. Fire https://example.com/ 7809 322949 322949.431616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3432316067061 0 \N \N f 0 \N 0 219767955 0 f f \N \N \N \N 322949 \N 0 0 \N \N f \N 431155 2024-02-19 18:00:49.637 2024-02-19 18:10:50.87 \N Condition door drive write. Firm simple test. Wh https://example.com/ 19809 431129 431129.431155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9551835809783 0 \N \N f 0 \N 0 162203013 0 f f \N \N \N \N 431129 \N 0 0 \N \N f \N 441778 2024-02-28 11:46:10.848 2024-02-28 11:56:12.733 \N Great how before cu https://example.com/ 2232 441761 441761.441778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8218357737313 0 \N \N f 0 \N 0 218234300 0 f f \N \N \N \N 441761 \N 0 0 \N \N f \N 432409 2024-02-20 12:15:14.729 2024-02-20 12:25:15.942 \N Power this as. Time Republican goal https://example.com/ 19601 432386 432344.432382.432386.432409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3930873671605 0 \N \N f 0 \N 0 24482479 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 437753 2024-02-24 23:03:01.223 2024-02-24 23:13:02.652 \N Cover well feel yes crime term final. Particularly take an https://example.com/ 18932 437533 437533.437753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.05607009058205 0 \N \N f 0 \N 1 47033135 0 f f \N \N \N \N 437533 \N 0 0 \N \N f \N 438341 2024-02-25 15:03:00.456 2024-02-25 15:13:01.425 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address https://example.com/ 21040 438232 438232.438341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6422687516287 0 \N \N f 0 \N 0 35080885 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 444906 2024-03-01 12:19:41.503 2024-03-01 12:29:42.745 \N Popular https://example.com/ 992 444887 444739.444841.444867.444882.444887.444906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2994019012573 0 \N \N f 0 \N 1 164741562 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 434982 2024-02-22 13:52:04.307 2024-02-22 14:02:05.614 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simply director act https://example.com/ 2162 434499 434469.434497.434499.434982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7096930133933 0 \N \N f 0 \N 0 168985153 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 438871 2024-02-26 04:01:07.739 2024-02-26 04:11:08.963 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service tradition https://example.com/ 21216 438865 438737.438863.438865.438871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9032305143908 0 \N \N f 0 \N 0 218893336 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 431952 2024-02-19 22:17:58.387 2024-02-19 22:27:59.302 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe. https://example.com/ 16194 431844 431844.431952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.926153951729 0 \N \N f 0 \N 0 76635051 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 445033 2024-03-01 14:15:21.524 2024-03-01 14:25:22.975 \N Majority foot simply point day chance rest. Sister no https://example.com/ 4624 444920 444907.444914.444920.445033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6282973079042 0 \N \N f 0 \N 0 84282822 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 444687 2024-03-01 09:27:42.937 2024-03-01 09:37:44.102 Cultural everyone partner bed d Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth wate https://example.com/ 20756 \N 444687 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.73550617096292 0 \N \N f 0 \N 11 226588601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444914 2024-03-01 12:25:06.707 2024-03-01 12:35:08.312 \N Author nearly sea similar health race per. Howe https://example.com/ 20299 444907 444907.444914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.68160493005409 0 \N \N f 0 \N 2 138893908 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 437557 2024-02-24 18:07:33.253 2024-02-24 18:17:35.644 \N North beat realize. https://example.com/ 12139 437176 437176.437557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4165496063712 0 \N \N f 0 \N 0 194281334 0 f f \N \N \N \N 437176 \N 0 0 \N \N f \N 444947 2024-03-01 13:02:28.657 2024-03-01 13:12:30.219 \N Though eye claim side government. For https://example.com/ 19826 444874 444874.444947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5645747503325 0 \N \N f 0 \N 1 179978811 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 444920 2024-03-01 12:28:41.96 2024-03-01 12:38:43.681 \N Instead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation https://example.com/ 19156 444914 444907.444914.444920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7503519429324 0 \N \N f 0 \N 1 16457028 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 438337 2024-02-25 15:02:09.332 2024-02-25 15:12:10.986 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Cou https://example.com/ 19583 438335 436752.437184.437271.437292.437293.438312.438318.438320.438322.438326.438335.438337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4162146476901 0 \N \N f 0 \N 0 161292174 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 431297 2024-02-19 18:29:06.731 2024-02-19 18:39:08.247 \N Establish material https://example.com/ 1733 431293 431293.431297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55657745478133 0 \N \N f 0 \N 0 80662948 0 f f \N \N \N \N 431293 \N 0 0 \N \N f \N 444867 2024-03-01 11:54:47.955 2024-03-01 12:04:49.44 \N Speech also his. https://example.com/ 1000 444841 444739.444841.444867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.928514611427 0 \N \N f 0 \N 6 188854316 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444887 2024-03-01 12:06:54.641 2024-03-01 12:16:56.162 \N With officer scientist https://example.com/ 18945 444882 444739.444841.444867.444882.444887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0033103368656 0 \N \N f 0 \N 2 124998304 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 445061 2024-03-01 14:27:29.862 2024-03-01 14:37:31.334 \N Take throw line right your trial public. Film open contain military soon. Attack her give se https://example.com/ 18446 444907 444907.445061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2797964096575 0 \N \N f 0 \N 0 115299774 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 444990 2024-03-01 13:50:53.035 2024-03-01 14:00:54.277 \N Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself inv https://example.com/ 4763 444984 444968.444972.444984.444990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.61693284875362 0 \N \N f 0 \N 2 221363625 0 f f \N \N \N \N 444968 \N 0 0 \N \N f \N 432026 2024-02-19 23:44:59.429 2024-02-19 23:55:01.186 \N Four whole sort. Every summer organization baby partn https://example.com/ 16149 431800 431800.432026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8734251699823 0 \N \N f 0 \N 1 198267775 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 445060 2024-03-01 14:26:00.261 2024-03-01 14:36:01.541 \N Parent often https://example.com/ 631 444907 444907.445060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30025625421099 0 \N \N f 0 \N 0 28402753 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 432649 2024-02-20 16:16:16.407 2024-02-20 16:26:17.952 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead milli https://example.com/ 2196 432517 432517.432649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.086397322974 0 \N \N f 0 \N 0 245631785 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 445038 2024-03-01 14:16:30.92 2024-03-01 14:26:32.072 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professiona https://example.com/ 19148 444998 444998.445038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.88887039004094 0 \N \N f 0 \N 0 229572320 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 444894 2024-03-01 12:12:42.726 2024-03-01 12:22:44.022 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nRaise represent leave during huge through earl https://example.com/ 18387 444890 444739.444834.444890.444894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3560821746396 0 \N \N f 0 \N 1 175790832 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 442171 2024-02-28 15:28:09.611 2024-02-28 15:38:10.512 \N Before appear girl save technology. W https://example.com/ 18310 441935 441935.442171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7998537807471 0 \N \N f 0 \N 0 68218542 0 f f \N \N \N \N 441935 \N 0 0 \N \N f \N 438482 2024-02-25 17:39:05.945 2024-02-25 17:49:07.332 \N Set how recognize operation American. Account avoid mis https://example.com/ 21391 438479 438479.438482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7733069004501 0 \N \N f 0 \N 0 235011063 0 f f \N \N \N \N 438479 \N 0 0 \N \N f \N 440498 2024-02-27 12:14:58.785 2024-02-27 12:25:01.137 \N Table fish west wish point expect. Discussion https://example.com/ 15161 440470 440422.440470.440498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0627902140599 0 \N \N f 0 \N 1 20408385 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 433840 2024-02-21 14:55:55.989 2024-02-21 15:05:57.249 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen https://example.com/ 16440 433594 433594.433840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7788705566444 0 \N \N f 0 \N 0 21398018 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 444900 2024-03-01 12:15:00.238 2024-03-01 12:25:01.833 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one https://example.com/ 6260 444899 444899.444900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85002819310609 0 \N \N f 0 \N 0 124260079 0 f f \N \N \N \N 444899 \N 0 0 \N \N f \N 433728 2024-02-21 13:02:59.461 2024-02-21 13:13:01.702 \N Majority foot simply point day chance rest. Sister notic https://example.com/ 803 433710 433710.433728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38751933055541 0 \N \N f 0 \N 1 224456107 0 f f \N \N \N \N 433710 \N 0 0 \N \N f \N 431845 2024-02-19 20:37:37.402 2024-02-19 20:47:38.683 \N Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody to https://example.com/ 1051 431816 431816.431845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85749755386138 0 \N \N f 0 \N 1 188976592 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 438600 2024-02-25 19:48:00.354 2024-02-25 19:58:01.621 \N Determine magazine police agent bil https://example.com/ 18526 438358 438358.438600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0876897436182 0 \N \N f 0 \N 0 56992302 0 f f \N \N \N \N 438358 \N 0 0 \N \N f \N 445030 2024-03-01 14:13:35.65 2024-03-01 14:23:37.076 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effec https://example.com/ 11609 444998 444998.445030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8223872629246 0 \N \N f 0 \N 0 218407919 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 431600 2024-02-19 19:31:15.98 2024-02-19 19:41:16.896 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend empl https://example.com/ 797 431580 431161.431390.431396.431580.431600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28331997677194 0 \N \N f 0 \N 0 42259931 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 444963 2024-03-01 13:21:09.163 2024-03-01 13:31:10.853 \N Least start time do. Occur bet https://example.com/ 2016 444597 444597.444963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8809775737046 0 \N \N f 0 \N 0 199942079 0 f f \N \N \N \N 444597 \N 0 0 \N \N f \N 439694 2024-02-26 17:50:54.154 2024-02-26 18:00:55.05 \N Tree house interest fly bit bring. Create yes business loss arrive together cove https://example.com/ 17275 439082 439082.439694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92932531130806 0 \N \N f 0 \N 0 52239398 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436011 2024-02-23 10:33:58.3 2024-02-23 10:43:59.652 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow https://example.com/ 20717 436001 435328.435887.435904.435957.436001.436011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64098277073717 0 \N \N f 0 \N 2 246584332 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 432126 2024-02-20 02:54:11.668 2024-02-20 03:04:12.876 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discov https://example.com/ 21148 432003 432003.432126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8430075002607 0 \N \N f 0 \N 0 244872678 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 441047 2024-02-27 20:15:04.1 2024-02-27 20:25:05.513 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. https://example.com/ 6421 440560 440422.440523.440538.440560.441047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0226750581162 0 \N \N f 0 \N 1 64263687 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 433324 2024-02-21 02:44:13.414 2024-02-21 02:54:15.841 \N Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. https://example.com/ 11698 432881 432881.433324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3729968579847 0 \N \N f 0 \N 3 103561225 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 445004 2024-03-01 13:58:08.454 2024-03-01 14:08:09.905 \N Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. https://example.com/ 18291 444410 443712.444410.445004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.84977657053431 0 \N \N f 0 \N 0 207836642 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 433287 2024-02-21 01:18:25.945 2024-02-21 01:28:27.005 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. https://example.com/ 19346 432135 432135.433287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.84849766771478 0 \N \N f 0 \N 0 101890029 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 431904 2024-02-19 21:38:21.869 2024-02-19 21:48:22.881 \N Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter ag https://example.com/ 13378 431896 431844.431896.431904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.044551776531 0 \N \N f 0 \N 2 229669343 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432047 2024-02-20 00:05:41.431 2024-02-20 00:15:42.898 \N Increase consumer itself trade ahead above https://example.com/ 1624 431904 431844.431896.431904.432047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.07970109000807 0 \N \N f 0 \N 1 71946069 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438470 2024-02-25 17:29:56.33 2024-02-25 17:39:57.337 \N Others high sea sense study https://example.com/ 7587 438467 438451.438467.438470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4188214759826 0 \N \N f 0 \N 0 2307855 0 f f \N \N \N \N 438451 \N 0 0 \N \N f \N 442107 2024-02-28 15:02:28.137 2024-02-28 15:12:30.341 \N According shake the attack guy development pressure. Police cultural area song she. Growth seco https://example.com/ 16194 441959 441843.441959.442107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8321738967078 0 \N \N f 0 \N 0 181017791 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 438388 2024-02-25 15:54:27.878 2024-02-25 16:04:29.573 Something black staff. Glass hospital force stand everybody Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest bas https://example.com/ 12768 \N 438388 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 1.69790043713931 0 \N \N f 0 \N 2 109166723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444992 2024-03-01 13:51:54.039 2024-03-01 14:01:55.491 \N Play single finally social almost serious. Ca https://example.com/ 1745 444845 444770.444845.444992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3364425977677 0 \N \N f 0 \N 0 77479515 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438572 2024-02-25 19:00:05.003 2024-02-25 19:00:10.515 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nDeterm https://example.com/ 15063 438571 438571.438572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80411408594684 0 \N \N f 0 \N 0 237131173 0 f f \N \N \N \N 438571 \N 0 0 \N \N f \N 445013 2024-03-01 14:02:52.966 2024-03-01 14:12:54.463 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rath https://example.com/ 21172 445002 444911.444997.445002.445013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9988432370082 0 \N \N f 0 \N 1 135887855 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 438476 2024-02-25 17:35:08.26 2024-02-25 17:45:09.319 \N Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. A https://example.com/ 18819 438182 438182.438476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.878284753383269 0 \N \N f 0 \N 1 69376486 0 f f \N \N \N \N 438182 \N 0 0 \N \N f \N 438281 2024-02-25 14:09:05.655 2024-02-25 14:19:06.943 \N Plan theory effect center maintain man. Now field ago hard. https://example.com/ 18138 438182 438182.438281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4588010384564 0 \N \N f 0 \N 3 30811771 0 f f \N \N \N \N 438182 \N 0 0 \N \N f \N 434250 2024-02-21 19:52:01.454 2024-02-21 20:02:02.604 \N Maj https://example.com/ 16341 434249 434160.434242.434249.434250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.91480082411363 0 \N \N f 0 \N 0 160145956 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 445021 2024-03-01 14:08:37.787 2024-03-01 14:18:38.808 \N Long management far budget rate often president stop. Section civil body ball much none father. Cle https://example.com/ 670 445013 444911.444997.445002.445013.445021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88690516499302 0 \N \N f 0 \N 0 81584474 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 445018 2024-03-01 14:06:39.126 2024-03-01 14:16:41.289 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Na https://example.com/ 7773 444016 443712.444016.445018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13738138441972 0 \N \N f 0 \N 0 59397065 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444996 2024-03-01 13:54:17.811 2024-03-01 14:04:19.228 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If h https://example.com/ 794 444981 444981.444996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57455794611582 0 \N \N f 0 \N 0 100493290 0 f f \N \N \N \N 444981 \N 0 0 \N \N f \N 444915 2024-03-01 12:26:16.236 2024-03-01 12:36:18.199 \N Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg c https://example.com/ 15337 444902 444892.444902.444915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.216932586970664 0 \N \N f 0 \N 0 141096152 0 f f \N \N \N \N 444892 \N 0 0 \N \N f \N 444841 2024-03-01 11:33:19.429 2024-03-01 11:43:21.057 \N Machine sell woman west bed risk. Region scientist test event hundred manag https://example.com/ 18396 444739 444739.444841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.299699460705 0 \N \N f 0 \N 10 13774420 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444664 2024-03-01 08:10:58.4 2024-03-01 08:20:59.59 \N Debate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organizati https://example.com/ 18225 444365 444365.444664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1975162452804 0 \N \N f 0 \N 0 189936299 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 438069 2024-02-25 10:17:31.612 2024-02-25 10:27:33.442 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democr https://example.com/ 16670 437937 437723.437937.438069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.202700595343 0 \N \N f 0 \N 0 37437745 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437574 2024-02-24 18:39:49.31 2024-02-24 18:49:50.486 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nTrade gas word. Player draw close by. Population might particularly re https://example.com/ 20817 437558 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18515131536381 0 \N \N f 0 \N 3 125038816 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 439202 2024-02-26 12:46:20.484 2024-02-26 12:56:22.448 \N Member car law politics in. Blue sometimes perform c https://example.com/ 18470 439139 439139.439202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9840131353077 0 \N \N f 0 \N 0 65421754 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434029 2024-02-21 17:27:20.59 2024-02-21 17:37:21.828 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier https://example.com/ 2961 434027 434027.434029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06287344222623 0 \N \N f 0 \N 1 230544688 0 f f \N \N \N \N 434027 \N 0 0 \N \N f \N 445017 2024-03-01 14:05:31.388 2024-03-01 14:15:33.316 \N Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nOwn abou https://example.com/ 19572 444841 444739.444841.445017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1615486865859 0 \N \N f 0 \N 1 126498556 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 437558 2024-02-24 18:07:59.55 2024-02-24 18:18:00.704 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nMrs when number place under moment. Own including alway https://example.com/ 636 437553 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7622461551844 0 \N \N f 0 \N 4 125633809 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437508 2024-02-24 17:22:13.502 2024-02-24 17:32:14.903 \N Very executive American something myself so my. Art to five indicate husban https://example.com/ 18392 437506 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0261927302378 0 \N \N f 0 \N 12 160585616 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 434016 2024-02-21 17:21:29.753 2024-02-21 17:31:30.724 \N Affect director focus https://example.com/ 2639 433986 433986.434016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4473987180336 0 \N \N f 0 \N 0 223387299 0 f f \N \N \N \N 433986 \N 0 0 \N \N f \N 437551 2024-02-24 18:02:40.185 2024-02-24 18:12:41.85 \N Although thought fall today protect ago. Abl https://example.com/ 1244 437538 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9917452158713 0 \N \N f 0 \N 8 169490285 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 442073 2024-02-28 14:45:17.91 2024-02-28 14:55:20.102 Name put just democratic follow beyond marriage minute. Only none scene l Reality front smal https://example.com/ 18357 \N 442073 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.9791702324254 0 \N \N f 0 \N 0 216606186 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437552 2024-02-24 18:03:18.904 2024-02-24 18:13:20.468 \N Perform might someone represent where not ma https://example.com/ 14404 437551 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6151817102279 0 \N \N f 0 \N 7 232432541 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 439915 2024-02-26 20:41:56.987 2024-02-26 20:51:58.28 \N Plant development someone include maybe. Address return side resp https://example.com/ 13217 439599 439390.439599.439915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5933133058734 0 \N \N f 0 \N 0 77287951 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 431965 2024-02-19 22:38:59.89 2024-02-19 22:49:01.096 \N Past skin protect than court summer e https://example.com/ 20245 431844 431844.431965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93848034166756 0 \N \N f 0 \N 1 209506442 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 440479 2024-02-27 11:46:01.376 2024-02-27 11:56:02.501 \N Experience ok car standard item https://example.com/ 19243 440422 440422.440479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8285885108059 0 \N \N f 0 \N 0 97508985 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440814 2024-02-27 17:03:43.005 2024-02-27 17:13:44.723 \N Top however address t https://example.com/ 16988 440802 440802.440814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1880326800248 0 \N \N f 0 \N 0 25672725 0 f f \N \N \N \N 440802 \N 0 0 \N \N f \N 440517 2024-02-27 12:46:20.825 2024-02-27 12:56:23.964 \N Off behind four class talk. Nor these prove https://example.com/ 20276 440132 440132.440517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6350001559948 0 \N \N f 0 \N 0 164080640 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 438430 2024-02-25 16:42:55.479 2024-02-25 16:52:57.239 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Su https://example.com/ 20291 438093 438093.438430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7071252797775 0 \N \N f 0 \N 0 57255801 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 441392 2024-02-28 02:21:04.411 2024-02-28 02:31:05.481 \N F https://example.com/ 670 441272 440422.441272.441392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3073185865475 0 \N \N f 0 \N 0 247518928 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 442662 2024-02-28 20:31:15.273 2024-02-28 20:41:16.965 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nGuess join morning man hospital human. Though always accordin https://example.com/ 2326 442648 442628.442639.442646.442648.442662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5448227433726 0 \N \N f 0 \N 0 157809564 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 443037 2024-02-29 03:21:40.204 2024-02-29 03:31:41.781 \N Pi https://example.com/ 21060 443034 442985.443034.443037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7150125019267 0 \N \N f 0 \N 0 154455362 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 440981 2024-02-27 19:40:46.099 2024-02-27 19:50:47.577 \N Debat https://example.com/ 15560 440967 440622.440960.440967.440981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5683950706272 0 \N \N f 0 \N 0 173020501 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 438362 2024-02-25 15:23:56.225 2024-02-25 15:33:57.248 \N Floor white civil remain. Purpose spend one position develop al https://example.com/ 11996 438304 437996.437997.438304.438362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4113920538182 0 \N \N f 0 \N 1 235353492 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 439317 2024-02-26 13:42:45.394 2024-02-26 13:52:46.354 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. Dur https://example.com/ 7989 439303 438596.438765.439086.439303.439317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2320958497083 0 \N \N f 0 \N 0 24412223 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 438435 2024-02-25 16:50:57.846 2024-02-25 17:00:59.107 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio th https://example.com/ 19282 438232 438232.438435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7906787372552 0 \N \N f 0 \N 0 200874227 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 432225 2024-02-20 07:51:05.882 2024-02-20 08:01:08.001 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always pe https://example.com/ 1208 432090 431918.431942.431979.432090.432225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9303289067905 0 \N \N f 0 \N 0 149423492 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 436975 2024-02-24 08:14:12.074 2024-02-24 08:24:13.651 \N Smile deb https://example.com/ 11873 436972 436720.436931.436958.436972.436975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7224810248516 0 \N \N f 0 \N 0 70736136 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 443036 2024-02-29 03:17:33.407 2024-02-29 03:27:34.946 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box techn https://example.com/ 15690 443030 442163.442664.443030.443036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2588504969061 0 \N \N f 0 \N 0 86282680 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 432146 2024-02-20 03:30:07.552 2024-02-20 03:40:09.324 \N Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nBaby yourself significant both truth decide s https://example.com/ 21585 432113 432113.432146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6889785319035 0 \N \N f 0 \N 5 115196502 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 440777 2024-02-27 16:43:01.274 2024-02-27 16:53:02.798 \N Kitchen already store investment near. Vote every stuff tha https://example.com/ 1316 440768 440725.440768.440777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2907086077869 0 \N \N f 0 \N 1 76593842 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 444800 2024-03-01 11:10:10.37 2024-03-01 11:20:11.553 \N Specific brother six pe https://example.com/ 1401 444168 444168.444800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4067158268158 0 \N \N f 0 \N 0 214029699 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444557 2024-03-01 04:37:40.439 2024-03-01 04:47:42.431 \N Technology word wish say organization https://example.com/ 20816 444435 444168.444435.444557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3962320355295 0 \N \N f 0 \N 0 139289689 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444435 2024-03-01 00:07:26.375 2024-03-01 00:17:28.41 \N Way majority believe feeling. Their see data sure office https://example.com/ 8544 444168 444168.444435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9216057564025 0 \N \N f 0 \N 1 233701689 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444971 2024-03-01 13:30:49.497 2024-03-01 13:40:51.071 \N Take discuss nature then https://example.com/ 1438 444790 444790.444971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3104929120548 0 \N \N f 0 \N 0 161428660 0 f f \N \N \N \N 444790 \N 0 0 \N \N f \N 438509 2024-02-25 17:58:27.555 2024-02-25 18:08:28.332 \N Church listen our call couple rise beyond question. Wish he analysis experience so amount site. I https://example.com/ 19320 438156 438093.438156.438509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3435947083828 0 \N \N f 0 \N 0 210509217 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438156 2024-02-25 12:00:42.411 2024-02-25 12:10:43.69 \N Fly teach beat. Instead section worker money argue activity ba https://example.com/ 1488 438093 438093.438156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1534123755572 0 \N \N f 0 \N 3 144610195 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 440768 2024-02-27 16:39:15.005 2024-02-27 16:49:16.072 \N Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three pr https://example.com/ 5003 440725 440725.440768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.30181305234082 0 \N \N f 0 \N 2 63918671 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 438421 2024-02-25 16:33:40.903 2024-02-25 16:43:41.606 \N Treatment dream at American often discussion. Whole light trade rest wide administration. Why happe https://example.com/ 647 438417 438209.438211.438261.438408.438410.438415.438417.438421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.93998331080167 0 \N \N f 0 \N 1 28730937 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 434749 2024-02-22 10:13:50.305 2024-02-22 10:23:51.377 \N Detail discussion line around. Art along house keep him. Te https://example.com/ 16485 434743 434697.434743.434749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.283357220737 0 \N \N f 0 \N 0 58930657 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N 444933 2024-03-01 12:44:06.227 2024-03-01 12:54:08.153 \N Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need https://example.com/ 20464 444911 444911.444933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5451466380594 0 \N \N f 0 \N 8 52862690 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 440877 2024-02-27 17:58:56.36 2024-02-27 18:08:57.306 \N Sell a https://example.com/ 4238 440871 440575.440871.440877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82343375839012 0 \N \N f 0 \N 0 190174848 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 438450 2024-02-25 17:11:42.781 2024-02-25 17:21:43.872 \N Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long differen https://example.com/ 1833 437570 437570.438450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.95041726193735 0 \N \N f 0 \N 0 98404900 0 f f \N \N \N \N 437570 \N 0 0 \N \N f \N 444964 2024-03-01 13:21:25.906 2024-03-01 13:31:26.853 \N True quickly government fi https://example.com/ 10586 444948 444948.444964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0437710164335 0 \N \N f 0 \N 1 72666893 0 f f \N \N \N \N 444948 \N 0 0 \N \N f \N 444975 2024-03-01 13:33:13.731 2024-03-01 13:43:14.571 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score sta https://example.com/ 19198 444770 444770.444975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.28918659458473 0 \N \N f 0 \N 0 179486069 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438220 2024-02-25 13:17:20.417 2024-02-25 13:27:22.017 \N Yourself debate term during boy. Significant step line. Current learn https://example.com/ 17707 438093 438093.438220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8917920458052 0 \N \N f 0 \N 0 191025633 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 439320 2024-02-26 13:44:06.449 2024-02-26 13:54:08.195 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water https://example.com/ 1773 439313 438936.439049.439052.439313.439320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93378111716051 0 \N \N f 0 \N 0 130925829 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 438872 2024-02-26 04:07:56.983 2024-02-26 04:17:58.555 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor https://example.com/ 19961 438868 438317.438641.438744.438868.438872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2170188984718 0 \N \N f 0 \N 2 34489235 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 440871 2024-02-27 17:54:13.289 2024-02-27 18:04:14.542 \N Increase age https://example.com/ 15588 440575 440575.440871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.60491037834331 0 \N \N f 0 \N 1 177688030 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 433339 2024-02-21 03:27:21.225 2024-02-21 03:37:22.727 \N Great idea age friend. Its financial https://example.com/ 12220 433327 433282.433327.433339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8789002488366 0 \N \N f 0 \N 2 167014543 0 f f \N \N \N \N 433282 \N 0 0 \N \N f \N 445091 2024-03-01 14:51:00.175 2024-03-01 15:01:01.527 \N Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nStill power agent hospital. Evening style true person east Republican. Reach ball descr https://example.com/ 663 444998 444998.445091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33425830877477 0 \N \N f 0 \N 0 210123126 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 438553 2024-02-25 18:36:10.149 2024-02-25 18:46:12.191 \N North beat realize. School remain number space star media. Month type cold. Brea https://example.com/ 9705 436909 436909.438553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.56852717460167 0 \N \N f 0 \N 0 98204842 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 438561 2024-02-25 18:47:01.512 2024-02-25 18:57:02.889 \N Total necessary thought task capital noth https://example.com/ 6229 438557 438519.438557.438561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.101606396151688 0 \N \N f 0 \N 0 135978712 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 432100 2024-02-20 02:18:01.886 2024-02-20 02:28:03.784 \N Person like among form https://example.com/ 1352 432088 432088.432100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.78029518414786 0 \N \N f 0 \N 0 68217649 0 f f \N \N \N \N 432088 \N 0 0 \N \N f \N 435904 2024-02-23 07:05:46.703 2024-02-23 07:15:48.448 \N After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nMethod media and me. Tonight protect community its https://example.com/ 9171 435887 435328.435887.435904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31234022398733 0 \N \N f 0 \N 5 210457441 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 432231 2024-02-20 08:00:05.823 2024-02-20 08:00:11.112 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Muc https://example.com/ 1000 432230 432230.432231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8740283488458 0 \N \N f 0 \N 0 157341205 0 f f \N \N \N \N 432230 \N 0 0 \N \N f \N 431926 2024-02-19 21:58:00.278 2024-02-19 22:08:01.406 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. https://example.com/ 20990 431816 431816.431926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.48695303921854 0 \N \N f 0 \N 0 183222045 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 432109 2024-02-20 02:34:08.2 2024-02-20 02:44:09.914 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\n https://example.com/ 27 430613 430496.430576.430613.432109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7179302240361 0 \N \N f 0 \N 0 18171741 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 442684 2024-02-28 20:43:51.652 2024-02-28 20:53:52.6 \N White have loss parent whole statement. Find couple next re https://example.com/ 4115 442673 442339.442621.442663.442673.442684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1190840168566 0 \N \N f 0 \N 1 134074697 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 430872 2024-02-19 15:37:41.769 2024-02-19 15:47:43.17 \N Question produce break https://example.com/ 11329 430795 430795.430872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.558915861093 0 \N \N f 0 \N 1 117901432 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 438570 2024-02-25 18:57:46.036 2024-02-25 19:07:47.257 \N Cell language east present. Federal arrive much. Drug financial place popular small. https://example.com/ 1652 438533 438524.438533.438570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27910542166669 0 \N \N f 0 \N 0 116993615 0 f f \N \N \N \N 438524 \N 0 0 \N \N f \N 442164 2024-02-28 15:25:56.601 2024-02-28 15:35:58.765 \N Nature wrong meeting whatever https://example.com/ 19465 442143 442143.442164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5365929717666 0 \N \N f 0 \N 0 80278658 0 f f \N \N \N \N 442143 \N 0 0 \N \N f \N 438533 2024-02-25 18:16:04.69 2024-02-25 18:26:05.419 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. https://example.com/ 15409 438524 438524.438533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.51094209170195 0 \N \N f 0 \N 1 203463757 0 f f \N \N \N \N 438524 \N 0 0 \N \N f \N 433388 2024-02-21 05:47:53.113 2024-02-21 05:57:54.931 \N Animal treatment https://example.com/ 21401 433377 433377.433388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8857826030261 0 \N \N f 0 \N 4 138780383 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 437158 2024-02-24 13:09:14.716 2024-02-24 13:19:15.792 \N Find building number energy itself. Series always thing developmen https://example.com/ 19263 437044 437044.437158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7365350886437 0 \N \N f 0 \N 13 105413152 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 438387 2024-02-25 15:54:16.371 2024-02-25 16:04:17.482 \N Public appear create he visit. Time smile leader. Performa https://example.com/ 2402 438325 438325.438387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33994110375625 0 \N \N f 0 \N 1 88772227 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432206 2024-02-20 07:18:08.919 2024-02-20 07:28:11.193 \N Under big evening others. Trip remain money region https://example.com/ 17411 432202 430330.431982.432202.432206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5110369790716 0 \N \N f 0 \N 2 52694863 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430952 2024-02-19 16:39:52.058 2024-02-19 16:49:53.183 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task fr https://example.com/ 3717 430920 430920.430952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20471435577073 0 \N \N f 0 \N 1 59911719 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 438578 2024-02-25 19:06:42.103 2024-02-25 19:16:43.15 \N Such yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Press https://example.com/ 9421 438563 438325.438345.438458.438563.438578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5171680254538 0 \N \N f 0 \N 1 214681598 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 435381 2024-02-22 18:47:25.038 2024-02-22 18:57:25.991 \N Althoug https://example.com/ 11329 435242 435242.435381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7839673724327 0 \N \N f 0 \N 1 199619534 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 440132 2024-02-27 00:39:30.222 2024-02-27 01:16:50.731 Artist fly bil Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. https://example.com/ 21292 \N 440132 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 29.0506445967696 0 \N \N f 0 \N 27 37166505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430958 2024-02-19 16:43:51.467 2024-02-19 16:53:52.649 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water https://example.com/ 782 430952 430920.430952.430958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2128037266808 0 \N \N f 0 \N 0 186975560 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 432105 2024-02-20 02:30:43.609 2024-02-20 02:40:45.036 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must la https://example.com/ 5752 432003 432003.432105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2815730915739 0 \N \N f 0 \N 0 155409715 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 431280 2024-02-19 18:23:07.698 2024-02-19 18:33:08.994 \N Leave relationship rule rich d https://example.com/ 18829 382968 382968.431280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2366411687306 0 \N \N f 0 \N 0 177905493 0 f f \N \N \N \N 382968 \N 0 0 \N \N f \N 432107 2024-02-20 02:31:39.356 2024-02-20 02:41:40.845 \N Long https://example.com/ 4167 432106 432106.432107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5702779762999 0 \N \N f 0 \N 0 228195878 0 f f \N \N \N \N 432106 \N 0 0 \N \N f \N 437286 2024-02-24 14:41:48.628 2024-02-24 14:51:50.265 \N F https://example.com/ 18675 437282 437146.437175.437201.437273.437282.437286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79418108197552 0 \N \N f 0 \N 0 14266001 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 444875 2024-03-01 11:58:41.157 2024-03-01 12:08:41.931 \N View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why flo https://example.com/ 14795 444770 444770.444875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.29669079527 0 \N \N f 0 \N 0 248267927 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441418 2024-02-28 03:19:50.377 2024-02-28 03:29:51.421 \N Very e https://example.com/ 6616 441405 441405.441418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2397325574882 0 \N \N f 0 \N 0 48679531 0 f f \N \N \N \N 441405 \N 0 0 \N \N f \N 438579 2024-02-25 19:08:09.603 2024-02-25 19:18:11.21 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well https://example.com/ 16447 438568 438231.438568.438579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1271959257062 0 \N \N f 0 \N 0 210954508 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 432111 2024-02-20 02:36:17.42 2024-02-20 02:46:19.451 \N Provide differen https://example.com/ 1310 429517 429517.432111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1986994689421 0 \N \N f 0 \N 0 206106538 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430918 2024-02-19 16:20:52.401 2024-02-19 16:30:53.452 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organ https://example.com/ 1970 430755 430607.430755.430918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7315304288871 0 \N \N f 0 \N 3 239584559 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 431885 2024-02-19 21:28:01.601 2024-02-19 21:38:02.773 \N Southern wear age then chair. Sign young end Republican box quality si https://example.com/ 15488 431876 361611.431429.431876.431885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6832933763636 0 \N \N f 0 \N 2 17763377 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 431663 2024-02-19 19:35:25.235 2024-02-19 19:45:26.043 \N Hotel remember debate strategy https://example.com/ 20470 315098 315098.431663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9464745373403 0 \N \N f 0 \N 0 82683246 0 f f \N \N \N \N 315098 \N 0 0 \N \N f \N 441756 2024-02-28 11:33:49.361 2024-02-28 11:43:50.656 \N Concern po https://example.com/ 16704 441738 441695.441699.441738.441756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3067264272112 0 \N \N f 0 \N 0 49462737 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 444859 2024-03-01 11:51:34.355 2024-03-01 12:01:35.573 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us t https://example.com/ 2789 444845 444770.444845.444859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08301706772491 0 \N \N f 0 \N 0 117955733 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441427 2024-02-28 03:37:26.597 2024-02-28 03:47:27.915 \N Very may https://example.com/ 17519 441405 441405.441427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9197054402149 0 \N \N f 0 \N 0 141338819 0 f f \N \N \N \N 441405 \N 0 0 \N \N f \N 435865 2024-02-23 05:47:15.038 2024-02-23 05:57:16.887 \N Light check business try. Know through structure owner. Process create Democr https://example.com/ 21296 435639 435639.435865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.07676641406277 0 \N \N f 0 \N 0 197044292 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 432069 2024-02-20 00:56:10.832 2024-02-20 01:06:12.036 \N Political perhaps question forward yes. Fish TV music catch b https://example.com/ 17602 431816 431816.432069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50016710678697 0 \N \N f 0 \N 0 242310632 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444798 2024-03-01 11:09:27.837 2024-03-01 11:19:29.388 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart d https://example.com/ 18470 444770 444770.444798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.00964099386179 0 \N \N f 0 \N 0 99079322 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 432076 2024-02-20 01:11:54.492 2024-02-20 01:21:55.56 \N Poor appear go since involve. How form no director mate https://example.com/ 1959 431816 431816.432076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05611589073257 0 \N \N f 0 \N 0 225321967 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 432074 2024-02-20 01:08:36.965 2024-02-20 01:18:38.268 \N Always friend price benefit. Reflect seem help https://example.com/ 10698 431816 431816.432074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7163414504925 0 \N \N f 0 \N 0 191106684 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 432043 2024-02-20 00:02:42.709 2024-02-20 00:12:44.349 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sen https://example.com/ 20680 431998 431844.431998.432043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8016891024955 0 \N \N f 0 \N 0 206083630 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438648 2024-02-25 20:56:57.333 2024-02-25 21:06:58.498 \N Everybody laugh key left https://example.com/ 721 438647 438634.438647.438648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.484897591968 0 \N \N f 0 \N 0 233805984 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 438581 2024-02-25 19:10:27.195 2024-02-25 19:20:28.473 \N Garden morning compare federal. Already west parent art work hard student. Goal sense themselv https://example.com/ 19640 438325 438325.438581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8129404951013 0 \N \N f 0 \N 0 135152202 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 433383 2024-02-21 05:41:23.109 2024-02-21 05:51:25.058 \N Light check business try. Kn https://example.com/ 16704 433339 433282.433327.433339.433383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8366909295479 0 \N \N f 0 \N 0 56462593 0 f f \N \N \N \N 433282 \N 0 0 \N \N f \N 442209 2024-02-28 15:39:36.759 2024-02-28 15:49:38.457 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nTax here if project. Thing how simply then. Aga https://example.com/ 16808 441660 441660.442209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.433028304799 0 \N \N f 0 \N 0 165400434 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441488 2024-02-28 05:37:41.526 2024-02-28 05:47:43.779 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nLight https://example.com/ 19557 441333 441333.441488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.071199872995 0 \N \N f 0 \N 0 45587639 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 433472 2024-02-21 08:12:57.137 2024-02-21 08:22:59.265 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind cha https://example.com/ 1000 433319 432889.433319.433472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16136186733733 0 \N \N f 0 \N 0 231488107 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 444814 2024-03-01 11:17:38.597 2024-03-01 11:27:39.977 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human repre https://example.com/ 11522 444811 444770.444789.444795.444797.444807.444809.444811.444814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6309266914612 0 \N \N f 0 \N 0 48882427 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444811 2024-03-01 11:15:20.787 2024-03-01 11:25:22.023 \N Blue why news enjoy include movie. Artist later stor https://example.com/ 2508 444809 444770.444789.444795.444797.444807.444809.444811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6649241600289 0 \N \N f 0 \N 1 85171201 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444787 2024-03-01 11:05:01.201 2024-03-01 11:15:02.585 \N Near whom sit wonder both lay remain. Mention school letter example. Especially thing wes https://example.com/ 1890 444780 444770.444775.444780.444787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0895310471772 0 \N \N f 0 \N 2 209673865 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444780 2024-03-01 11:02:38.347 2024-03-01 11:12:39.646 \N Instead believe animal then however price particularly. When whose ec https://example.com/ 16847 444775 444770.444775.444780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9060676265127 0 \N \N f 0 \N 3 181859032 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444775 2024-03-01 11:01:28.758 2024-03-01 11:11:29.56 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen https://example.com/ 21402 444770 444770.444775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9943369838789 0 \N \N f 0 \N 4 113543397 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 433390 2024-02-21 05:48:00.476 2024-02-21 05:58:01.983 \N Political offi https://example.com/ 9529 433388 433377.433388.433390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3021546561454 0 \N \N f 0 \N 3 123178696 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 444785 2024-03-01 11:04:12.578 2024-03-01 11:14:13.872 \N Model fall part. Teach why have read tonight technology establish note. Region born with staf https://example.com/ 5359 444782 444770.444771.444782.444785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.07155380711514 0 \N \N f 0 \N 3 27532611 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431890 2024-02-19 21:29:13.345 2024-02-19 21:39:14.958 \N After increase change education https://example.com/ 4798 431877 431877.431890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4593672346361 0 \N \N f 0 \N 4 108055466 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 438355 2024-02-25 15:14:38.238 2024-02-25 15:24:39.375 \N Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepa https://example.com/ 7558 436935 436935.438355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13317539209377 0 \N \N f 0 \N 0 156276474 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N 431229 2024-02-19 18:17:35.516 2024-02-19 18:27:36.75 \N Everything she discuss gun som https://example.com/ 12049 397137 397137.431229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4805788231136 0 \N \N f 0 \N 0 136293053 0 f f \N \N \N \N 397137 \N 0 0 \N \N f \N 439636 2024-02-26 17:12:27.869 2024-02-26 17:22:28.798 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care can https://example.com/ 9159 439618 439286.439618.439636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3407031076839 0 \N \N f 0 \N 0 220599652 0 f f \N \N \N \N 439286 \N 0 0 \N \N f \N 438360 2024-02-25 15:20:26.69 2024-02-25 15:30:29.2 Hair gas woman next avoid. Blood suggest Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fi https://example.com/ 20306 \N 438360 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.53140029420342 0 \N \N f 0 \N 0 6705356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437167 2024-02-24 13:18:17.267 2024-02-24 13:28:18.364 \N Affect body wonder do still debat https://example.com/ 19381 436970 436970.437167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.36066097549614 0 \N \N f 0 \N 0 106221820 0 f f \N \N \N \N 436970 \N 0 0 \N \N f \N 431597 2024-02-19 19:30:29.632 2024-02-19 19:40:30.996 Describe modern f Special identify senior difference third. https://example.com/ 15556 \N 431597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24842296467811 0 \N \N f 0 \N 4 142790887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439670 2024-02-26 17:33:44.831 2024-02-26 17:43:46.917 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover https://example.com/ 21522 439390 439390.439670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1595209077686 0 \N \N f 0 \N 0 34485675 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 444888 2024-03-01 12:07:17.836 2024-03-01 12:17:19.481 \N Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community h https://example.com/ 21480 444778 444365.444778.444888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7705731381132 0 \N \N f 0 \N 5 104551818 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 438391 2024-02-25 15:55:07.155 2024-02-25 16:05:09.229 \N Although thought fall today protect ago. Able institution offer authority best https://example.com/ 2390 438381 437524.437945.438055.438342.438381.438391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3270586860127 0 \N \N f 0 \N 0 158594622 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 431905 2024-02-19 21:38:28.476 2024-02-19 21:48:29.949 \N Himself seem along exist population development possible easy. https://example.com/ 19394 431900 431877.431890.431900.431905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4891469834743 0 \N \N f 0 \N 2 138288848 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 442234 2024-02-28 15:49:29.198 2024-02-28 15:59:30.711 \N Direction f https://example.com/ 21274 442163 442163.442234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5111177615888 0 \N \N f 0 \N 3 47776319 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 431939 2024-02-19 22:08:17.438 2024-02-19 22:18:19.184 \N From democratic trial American blue. Save https://example.com/ 19660 431753 430892.431723.431753.431939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9902914514982 0 \N \N f 0 \N 0 69606011 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 439894 2024-02-26 20:31:03.8 2024-02-26 20:41:04.961 \N According shake the attack guy development pressure. Police https://example.com/ 9920 439881 439638.439863.439881.439894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7122751875855 0 \N \N f 0 \N 6 61931877 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 438339 2024-02-25 15:02:44.521 2024-02-25 15:12:47.318 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant ever https://example.com/ 5746 438325 438325.438339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.81315195725175 0 \N \N f 0 \N 1 108529053 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 437222 2024-02-24 14:02:52.5 2024-02-24 14:12:53.813 \N Senior than easy statem https://example.com/ 17984 437217 437044.437158.437204.437217.437222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31389687815268 0 \N \N f 0 \N 2 37217932 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 431907 2024-02-19 21:40:15.623 2024-02-19 21:50:16.648 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require fo https://example.com/ 16355 431905 431877.431890.431900.431905.431907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4947072284645 0 \N \N f 0 \N 1 173146063 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 431451 2024-02-19 19:01:29.765 2024-02-19 19:11:31.378 \N Majority foot simply point day https://example.com/ 633 366556 366556.431451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2214231800654 0 \N \N f 0 \N 1 102885011 0 f f \N \N \N \N 366556 \N 0 0 \N \N f \N 438371 2024-02-25 15:37:24.545 2024-02-25 15:47:25.646 \N Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according foo https://example.com/ 900 438361 438361.438371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.03775238013401 0 \N \N f 0 \N 0 114309126 0 f f \N \N \N \N 438361 \N 0 0 \N \N f \N 431828 2024-02-19 20:22:11.6 2024-02-19 20:32:13.402 \N Fear size with rich skin decade community. Front https://example.com/ 21624 431826 431816.431826.431828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8376387884349 0 \N \N f 0 \N 4 237823907 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 442813 2024-02-28 22:57:35.867 2024-02-28 23:07:36.789 \N Least https://example.com/ 18731 442751 442751.442813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6144497838602 0 \N \N f 0 \N 2 115474591 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442462 2024-02-28 17:27:18.561 2024-02-28 17:37:20.197 \N At audience she. Skill p https://example.com/ 7809 442084 442084.442462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7667136130937 0 \N \N f 0 \N 0 191781057 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 431914 2024-02-19 21:49:14.977 2024-02-19 21:59:16.225 \N Record recent evening worry. https://example.com/ 19016 431903 431816.431826.431903.431914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9125978824872 0 \N \N f 0 \N 1 114774072 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444954 2024-03-01 13:07:53.599 2024-03-01 13:17:54.704 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President https://example.com/ 17221 444874 444874.444954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.68993139126005 0 \N \N f 0 \N 0 16203150 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 431936 2024-02-19 22:04:50.896 2024-02-19 22:14:52.463 \N Mind treatment nature play. Mr hit security game her want role. Health situation sell name art https://example.com/ 21212 431933 430892.430933.431933.431936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90719565743822 0 \N \N f 0 \N 0 101870270 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 440775 2024-02-27 16:42:07.797 2024-02-27 16:52:08.888 \N Consumer point treat task. Shake https://example.com/ 19333 440772 440725.440772.440775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9018806098152 0 \N \N f 0 \N 0 217459407 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 431434 2024-02-19 19:00:44.173 2024-02-19 19:10:45.479 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Saf https://example.com/ 2652 430496 430496.431434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63144671270782 0 \N \N f 0 \N 2 13609925 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 431713 2024-02-19 19:40:20.005 2024-02-19 19:50:21.149 \N Speak street chance point. Blood most stay ask fund water. Three form clear bag generatio https://example.com/ 19661 431434 430496.431434.431713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5586631338691 0 \N \N f 0 \N 1 95662941 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 437519 2024-02-24 17:31:27.205 2024-02-24 17:41:28.331 \N Focus available yeah law. Dow https://example.com/ 12609 437457 437457.437519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2485976215349 0 \N \N f 0 \N 1 58311435 0 f f \N \N \N \N 437457 \N 0 0 \N \N f \N 434507 2024-02-22 03:18:06.631 2024-02-22 03:28:08.147 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often https://example.com/ 16724 423720 423475.423720.434507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.05626175114211 0 \N \N f 0 \N 0 185420471 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 432576 2024-02-20 15:12:21.394 2024-02-20 15:22:22.723 \N Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long t https://example.com/ 687 432563 432563.432576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0791271667746 0 \N \N f 0 \N 8 212046252 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 432723 2024-02-20 17:03:10.49 2024-02-20 17:13:11.354 \N Human since term seek. Easy move guess bring training. Performance decade new https://example.com/ 20340 432719 432674.432679.432692.432715.432719.432723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9716854557145 0 \N \N f 0 \N 0 86563757 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 438452 2024-02-25 17:16:54.879 2024-02-25 17:26:56.111 Long sound continue test occur watch. Claim money speak shake. Best thro These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no https://example.com/ 2614 \N 438452 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 3.7837455136663 0 \N \N f 0 \N 0 195629024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438133 2024-02-25 11:36:20.677 2024-02-25 11:46:23.129 \N Professional remain report involve eye outside. Military boy they. Camera management act three pub https://example.com/ 13574 438093 438093.438133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8798063785265 0 \N \N f 0 \N 9 59238390 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 437724 2024-02-24 22:15:23.209 2024-02-24 22:25:24.666 \N Nam https://example.com/ 7746 437718 437233.437495.437621.437718.437724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4953597984303 0 \N \N f 0 \N 0 114704225 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 438369 2024-02-25 15:33:45.605 2024-02-25 15:43:47.183 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quic https://example.com/ 7587 438274 438093.438133.438148.438167.438274.438369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.093168705769 0 \N \N f 0 \N 4 233628274 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 439266 2024-02-26 13:14:14.491 2024-02-26 13:24:16.22 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small l https://example.com/ 2576 438908 438605.438773.438908.439266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7560006303643 0 \N \N f 0 \N 1 23561524 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 442144 2024-02-28 15:16:52.574 2024-02-28 15:26:54.266 \N Plant str https://example.com/ 20871 442143 442143.442144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23116704708324 0 \N \N f 0 \N 0 158170858 0 f f \N \N \N \N 442143 \N 0 0 \N \N f \N 434776 2024-02-22 10:36:39.583 2024-02-22 10:46:41.213 \N Specific chi https://example.com/ 13767 434775 434646.434687.434760.434769.434775.434776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1791712060498 0 \N \N f 0 \N 0 101979147 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 438274 2024-02-25 14:06:04.853 2024-02-25 14:16:06.647 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nThink cover scientist financial attention he word. World laugh https://example.com/ 21242 438167 438093.438133.438148.438167.438274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.07608206958137 0 \N \N f 0 \N 5 185840631 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 439177 2024-02-26 12:35:58.09 2024-02-26 12:45:59.1 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air env https://example.com/ 18817 439094 439029.439077.439094.439177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.14187840819945 0 \N \N f 0 \N 2 230382793 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 438148 2024-02-25 11:51:08.673 2024-02-25 12:01:09.746 \N Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest managem https://example.com/ 811 438133 438093.438133.438148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4792481306815 0 \N \N f 0 \N 7 62806009 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438167 2024-02-25 12:09:45.339 2024-02-25 12:19:46.55 \N Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network https://example.com/ 8726 438148 438093.438133.438148.438167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.230836812172583 0 \N \N f 0 \N 6 78652231 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438556 2024-02-25 18:41:06.477 2024-02-25 18:51:07.899 \N Black leg through occur possible century far. Part fly follow public with manager support. Poo https://example.com/ 7877 438451 438451.438556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2992962766148 0 \N \N f 0 \N 0 62993423 0 f f \N \N \N \N 438451 \N 0 0 \N \N f \N 431838 2024-02-19 20:32:14.792 2024-02-19 20:42:16.719 \N Garden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold n https://example.com/ 9183 431826 431816.431826.431838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.98724109788226 0 \N \N f 0 \N 1 183456787 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 438351 2024-02-25 15:11:02.904 2024-02-25 15:21:04.566 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish mor https://example.com/ 1236 438093 438093.438351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7577265118618 0 \N \N f 0 \N 2 191327642 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 442692 2024-02-28 20:47:40.998 2024-02-28 20:57:42.906 \N Small https://example.com/ 886 442677 442508.442677.442692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65395914801025 0 \N \N f 0 \N 0 131013958 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 438378 2024-02-25 15:41:44.887 2024-02-25 15:51:46.522 \N Speak specific energy international more entire partner. Moment loss within happen one let https://example.com/ 19689 438325 438325.438378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.8461390046288 0 \N \N f 0 \N 0 142844069 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432136 2024-02-20 03:11:13.64 2024-02-20 03:21:15.428 \N Plant strong west enjoy. Those everything may dark face. His seek se https://example.com/ 16543 431809 431809.432136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.446230770969 0 \N \N f 0 \N 0 23267061 0 f f \N \N \N \N 431809 \N 0 0 \N \N f \N 435892 2024-02-23 06:42:32.351 2024-02-23 06:52:33.955 \N Soon raise sense education https://example.com/ 739 435847 435847.435892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08961271981901 0 \N \N f 0 \N 0 58144539 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 442921 2024-02-29 00:25:06.376 2024-02-29 00:35:08.026 \N Last expert d https://example.com/ 1429 442913 442904.442913.442921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.26467968491166 0 \N \N f 0 \N 0 215245060 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 440181 2024-02-27 02:11:06.334 2024-02-27 02:21:07.413 \N Type door clear left. Test investment between tabl https://example.com/ 19005 436405 436405.440181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.97089743884 0 \N \N f 0 \N 2 205090491 0 f f \N \N \N \N 436405 \N 0 0 \N \N f \N 432132 2024-02-20 03:02:50.687 2024-02-20 03:12:51.756 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nLeave exam https://example.com/ 17030 432088 432088.432132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9504614537049 0 \N \N f 0 \N 0 24835118 0 f f \N \N \N \N 432088 \N 0 0 \N \N f \N 443670 2024-02-29 15:17:40.819 2024-02-29 15:27:41.948 \N Month explain matter south https://example.com/ 2390 443667 443667.443670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68060354925839 0 \N \N f 0 \N 2 142661487 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N 432121 2024-02-20 02:49:46.138 2024-02-20 02:59:47.296 \N Reality deal sort professional try him product. People write https://example.com/ 10586 432088 432088.432121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.877188785344 0 \N \N f 0 \N 0 112662688 0 f f \N \N \N \N 432088 \N 0 0 \N \N f \N 438885 2024-02-26 04:45:46.628 2024-02-26 04:55:48.108 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye co https://example.com/ 766 438737 438737.438885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4281397204145 0 \N \N f 0 \N 2 185849591 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 441020 2024-02-27 20:03:55.998 2024-02-27 20:13:57.928 \N Clear suggest t https://example.com/ 2502 440907 440907.441020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8757105126346 0 \N \N f 0 \N 0 176569778 0 f f \N \N \N \N 440907 \N 0 0 \N \N f \N 438342 2024-02-25 15:03:04.775 2024-02-25 15:13:06.72 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major perso https://example.com/ 10849 438055 437524.437945.438055.438342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38708006540796 0 \N \N f 0 \N 4 120397669 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 435851 2024-02-23 05:20:24.241 2024-02-23 05:30:25.695 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south fo https://example.com/ 13587 435795 434278.434318.435783.435795.435851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9813692232972 0 \N \N f 0 \N 0 29504485 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 430951 2024-02-19 16:38:35.262 2024-02-19 16:48:36.419 \N Family material upon Democrat. The remain appe https://example.com/ 836 430626 430626.430951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4781453461555 0 \N \N f 0 \N 0 205603018 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432167 2024-02-20 04:27:32.12 2024-02-20 04:37:33.502 \N Happen should somebody world southern player wife. Mr fi https://example.com/ 21437 432165 432165.432167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7604793366456 0 \N \N f 0 \N 0 61530434 0 f f \N \N \N \N 432165 \N 0 0 \N \N f \N 443738 2024-02-29 16:01:05.954 2024-02-29 16:11:06.991 \N Smile https://example.com/ 9874 443734 443734.443738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2674453823708 0 \N \N f 0 \N 0 71038019 0 f f \N \N \N \N 443734 \N 0 0 \N \N f \N 436025 2024-02-23 10:55:16.828 2024-02-23 11:05:18.062 Plant development someone include Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy ever https://example.com/ 10359 \N 436025 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.1523943616213 0 \N \N f 0 \N 2 106441926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432012 2024-02-19 23:36:23.051 2024-02-19 23:46:25.563 \N Speak specific energy international mor https://example.com/ 20674 432008 431816.432004.432008.432012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17783516676273 0 \N \N f 0 \N 0 8216615 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444707 2024-03-01 10:06:59.626 2024-03-01 10:17:00.816 Near whom sit wonder both lay remain. Mention school letter example. Especia Again reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agen https://example.com/ 18815 \N 444707 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.1703284404915 0 \N \N f 0 \N 0 136048874 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432020 2024-02-19 23:42:06.739 2024-02-19 23:52:09.201 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need ch https://example.com/ 11750 431923 431872.431873.431923.432020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36962731957242 0 \N \N f 0 \N 1 109307520 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 438900 2024-02-26 05:32:16.341 2024-02-26 05:42:17.911 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here arg https://example.com/ 7425 438860 438860.438900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2348818296656 0 \N \N f 0 \N 0 232220461 0 f f \N \N \N \N 438860 \N 0 0 \N \N f \N 432734 2024-02-20 17:08:20.927 2024-02-20 17:18:23.089 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day https://example.com/ 16513 430498 430498.432734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1955742578321 0 \N \N f 0 \N 1 223958085 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 432662 2024-02-20 16:26:22.003 2024-02-20 16:36:24.277 \N Page economic languag https://example.com/ 9336 432619 432619.432662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9195756926067 0 \N \N f 0 \N 1 12388716 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 438899 2024-02-26 05:31:10.481 2024-02-26 05:41:11.308 \N Decade activity affect https://example.com/ 3417 438814 438814.438899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3383453746742 0 \N \N f 0 \N 0 101427186 0 f f \N \N \N \N 438814 \N 0 0 \N \N f \N 443284 2024-02-29 10:49:52.731 2024-02-29 10:59:53.585 \N Though or meet hotel. https://example.com/ 18396 443197 443197.443284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.521722088738 0 \N \N f 0 \N 1 99212124 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 432228 2024-02-20 07:52:52.376 2024-02-20 08:02:53.906 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment wat https://example.com/ 844 431994 431994.432228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.84379318179971 0 \N \N f 0 \N 0 15828566 0 f f \N \N \N \N 431994 \N 0 0 \N \N f \N 442851 2024-02-28 23:19:19.861 2024-02-28 23:29:20.913 Condition lose result detail final will. Req Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Demo https://example.com/ 776 \N 442851 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6280507731562 0 \N \N f 0 \N 2 1099683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438454 2024-02-25 17:20:21.471 2024-02-25 17:30:23.516 \N Class population stage though page happen https://example.com/ 18635 438202 438202.438454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.52688070907175 0 \N \N f 0 \N 0 149709320 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 438195 2024-02-25 12:49:34.776 2024-02-25 12:59:35.654 \N Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly i https://example.com/ 20036 437966 437966.438195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0506688904384 0 \N \N f 0 \N 0 183204927 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 442685 2024-02-28 20:44:47.058 2024-02-28 20:54:49.055 \N After increase change education budget. Or tend https://example.com/ 638 441749 441749.442685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.513689499337282 0 \N \N f 0 \N 1 241345013 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 432232 2024-02-20 08:02:12.263 2024-02-20 08:12:14.065 \N Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care ni https://example.com/ 18511 431979 431918.431942.431979.432232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.82471326221575 0 \N \N f 0 \N 1 115380337 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 443522 2024-02-29 14:09:31.209 2024-02-29 14:19:31.872 \N Way majority b https://example.com/ 15148 443495 443495.443522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0532306506726 0 \N \N f 0 \N 0 109574145 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N 438884 2024-02-26 04:44:34.076 2024-02-26 04:54:35.515 \N Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if https://example.com/ 1577 433886 433886.438884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.31371874894587 0 \N \N f 0 \N 1 205263801 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 432763 2024-02-20 17:33:07.553 2024-02-20 17:43:09.09 \N Region side point win through. Deep check rather loss world https://example.com/ 19320 432736 432736.432763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57647224156871 0 \N \N f 0 \N 1 108105071 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 443854 2024-02-29 16:58:52.51 2024-02-29 17:08:53.288 \N Article discussio https://example.com/ 20701 443840 443577.443840.443854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3843896595624 0 \N \N f 0 \N 1 79619154 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 432718 2024-02-20 17:00:40.359 2024-02-20 17:10:41.531 \N Determine magazine police agent billion. Head great exist. Against parent officer. Network Mrs ne https://example.com/ 636 432669 432344.432669.432718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5964376689874 0 \N \N f 0 \N 3 149978545 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 441503 2024-02-28 06:19:19.865 2024-02-28 06:29:21.032 \N Popular entire medical office can https://example.com/ 10056 441424 441424.441503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8340596706343 0 \N \N f 0 \N 0 117403756 0 f f \N \N \N \N 441424 \N 0 0 \N \N f \N 439824 2024-02-26 19:40:14.032 2024-02-26 19:50:15.547 Key third PM painting wrong generation every. Authority daughter religious Out quite different te https://example.com/ 10719 \N 439824 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.8883768362626 0 \N \N f 0 \N 0 128750966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432157 2024-02-20 04:00:05.053 2024-02-20 04:00:10.486 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already wh https://example.com/ 21457 432156 432156.432157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2363932235758 0 \N \N f 0 \N 0 142455529 0 f f \N \N \N \N 432156 \N 0 0 \N \N f \N 444946 2024-03-01 13:00:15.06 2024-03-01 13:10:16.669 \N Economy rest whatever spring among least against and. Hard suffer atten https://example.com/ 2583 444939 444911.444933.444939.444946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94009922826162 0 \N \N f 0 \N 3 208854121 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 443055 2024-02-29 04:00:04.756 2024-02-29 04:10:05.686 Manager suffer she clearly whole \N https://example.com/ 19151 \N 443055 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.8604330093306 0 \N \N f 0 \N 1 185718478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441529 2024-02-28 07:32:59.805 2024-02-28 07:43:01.383 \N Red tough always try. Police clear hundred box. Ahea https://example.com/ 1224 441514 441514.441529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1214570509566 0 \N \N f 0 \N 5 249263273 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 432044 2024-02-20 00:02:45.669 2024-02-20 00:12:47.443 \N Measure enjoy other scientist simple professor bet https://example.com/ 19941 431833 430837.431076.431833.432044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4271432607349 0 \N \N f 0 \N 0 126867308 0 f f \N \N \N \N 430837 \N 0 0 \N \N f \N 432930 2024-02-20 19:34:45.012 2024-02-20 19:44:46.009 \N Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field no https://example.com/ 20551 432922 432619.432922.432930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4367911704521 0 \N \N f 0 \N 1 239540279 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 438054 2024-02-25 09:51:48.932 2024-02-25 10:01:50.391 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find https://example.com/ 15556 438041 437966.438030.438041.438054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3958999339164 0 \N \N f 0 \N 0 153745726 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 438757 2024-02-25 23:58:32.381 2024-02-26 00:08:33.812 Admit difficult figure parent account in. Suffer administratio Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify r https://example.com/ 1135 \N 438757 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.6531746393792 0 \N \N f 0 \N 0 158064181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443203 2024-02-29 09:00:18.141 2024-02-29 09:10:19.303 \N Give business wind https://example.com/ 7891 442986 442986.443203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54084918371305 0 \N \N f 0 \N 2 82603599 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 438996 2024-02-26 09:20:04.88 2024-02-26 09:30:07.015 \N World kind half pass financial job front. Itself group recognize mid https://example.com/ 16284 438946 438946.438996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44297173123659 0 \N \N f 0 \N 6 647933 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432515 2024-02-20 14:31:38.635 2024-02-20 14:41:39.888 \N Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep https://example.com/ 20562 432344 432344.432515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8468009733378 0 \N \N f 0 \N 0 104461788 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 437076 2024-02-24 12:08:27.65 2024-02-24 12:18:29.818 \N Parent control wide song section few. Region one kee https://example.com/ 20788 437070 437070.437076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58949744003766 0 \N \N f 0 \N 0 48892453 0 f f \N \N \N \N 437070 \N 0 0 \N \N f \N 438041 2024-02-25 09:19:24.141 2024-02-25 09:29:25.997 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate https://example.com/ 2774 438030 437966.438030.438041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8569715202778 0 \N \N f 0 \N 1 211747304 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 1912 2021-09-09 18:30:47.279 2023-10-01 23:50:47.331 Maybe remain help \N https://example.com/ 16704 \N 1912 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.90527640471011 0 \N \N f 0 \N 2 217439622 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444952 2024-03-01 13:05:17.952 2024-03-01 13:15:19.495 \N Wide deep ahead effort. Som https://example.com/ 2710 444949 444911.444933.444939.444946.444949.444952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.762240368768126 0 \N \N f 0 \N 0 167891126 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 444949 2024-03-01 13:03:49.143 2024-03-01 13:13:50.65 \N Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. M https://example.com/ 5978 444946 444911.444933.444939.444946.444949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48134954565495 0 \N \N f 0 \N 2 43176485 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 444713 2024-03-01 10:13:14.83 2024-03-01 10:23:16.535 \N Wind put daughter. Mr later note wish represent hundred. https://example.com/ 20560 444652 444652.444713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1594688781135 0 \N \N f 0 \N 0 211523367 0 f f \N \N \N \N 444652 \N 0 0 \N \N f \N 430920 2024-02-19 16:21:44.098 2024-02-19 16:31:45.248 She loss lawyer raise witho Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop https://example.com/ 2156 \N 430920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.90125113853939 0 \N \N f 0 \N 9 136312372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432528 2024-02-20 14:39:04.757 2024-02-20 14:49:06.216 \N Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new mai https://example.com/ 9350 432509 432170.432214.432420.432460.432483.432509.432528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4293131235126 0 \N \N f 0 \N 0 247312797 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 430974 2024-02-19 16:55:17.688 2024-02-19 17:05:18.589 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nRecent work wife light adult yard. Child although gir https://example.com/ 17673 430770 430770.430974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8059179575726 0 \N \N f 0 \N 2 234815823 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 444994 2024-03-01 13:53:28.054 2024-03-01 14:03:29.27 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for https://example.com/ 19902 444944 444365.444778.444888.444904.444922.444937.444944.444994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5974140476026 0 \N \N f 0 \N 0 233037476 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 441791 2024-02-28 11:54:41.527 2024-02-28 12:04:43.273 \N Off should democratic notice old apply society. Buy section p https://example.com/ 21067 441753 441753.441791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7459421557455 0 \N \N f 0 \N 0 164687747 0 f f \N \N \N \N 441753 \N 0 0 \N \N f \N 444995 2024-03-01 13:53:38.365 2024-03-01 14:03:39.294 \N Edge lot space military without many term others. Religious wear economy can since. https://example.com/ 3979 444770 444770.444995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8218027417706 0 \N \N f 0 \N 1 112280486 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 442351 2024-02-28 16:36:25.456 2024-02-28 16:46:26.872 \N After increase change education b https://example.com/ 18235 442205 442205.442351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4753262304085 0 \N \N f 0 \N 0 24835587 0 f f \N \N \N \N 442205 \N 0 0 \N \N f \N 437700 2024-02-24 21:17:11.412 2024-02-24 21:27:12.57 \N Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nMrs when number place under moment. Own including always especially news. Approach lo https://example.com/ 1723 437502 437502.437700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.96078112091914 0 \N \N f 0 \N 4 168696612 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 438466 2024-02-25 17:26:57.334 2024-02-25 17:36:59.454 \N Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skil https://example.com/ 18008 438207 437502.437700.438207.438466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4268980820805 0 \N \N f 0 \N 0 41771672 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 442390 2024-02-28 16:55:35.589 2024-02-28 17:05:37.402 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply https://example.com/ 20409 442382 442084.442292.442382.442390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3436571461344 0 \N \N f 0 \N 3 9737838 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 431855 2024-02-19 20:50:40.975 2024-02-19 21:00:42.404 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nScientist its surface arrive world determine according. Candidate tough appear r https://example.com/ 20861 431851 430984.431834.431850.431851.431855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7919230896711 0 \N \N f 0 \N 0 239248995 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 432041 2024-02-20 00:01:11.593 2024-02-20 00:11:13.22 \N Turn where d https://example.com/ 7510 431423 362262.431423.432041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.97308030284788 0 \N \N f 0 \N 0 231955295 0 f f \N \N \N \N 362262 \N 0 0 \N \N f \N 438352 2024-02-25 15:12:46.669 2024-02-25 15:22:48.992 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling ma https://example.com/ 18994 438093 438093.438352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.43506989978678 0 \N \N f 0 \N 1 52521130 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 442475 2024-02-28 17:35:30.068 2024-02-28 17:45:31.353 \N E https://example.com/ 16406 441998 438936.438995.439041.441675.441940.441973.441998.442475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1310304668117 0 \N \N f 0 \N 0 190468062 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 438931 2024-02-26 07:09:10.527 2024-02-26 07:19:12.104 \N Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Cha https://example.com/ 16348 438794 438794.438931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.904983009095 0 \N \N f 0 \N 3 90403781 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 439044 2024-02-26 10:17:28.85 2024-02-26 10:27:30.826 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Ca https://example.com/ 5173 439003 438936.439003.439044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5144883486154 0 \N \N f 0 \N 0 206286863 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 434353 2024-02-21 22:22:42.056 2024-02-21 22:32:44.279 \N Herself will eight force small lose. Budget box decide f https://example.com/ 20715 433950 433435.433950.434353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3556848287837 0 \N \N f 0 \N 0 154286425 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 432483 2024-02-20 14:05:34.682 2024-02-20 14:15:35.615 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student sout https://example.com/ 11192 432460 432170.432214.432420.432460.432483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.80874869350458 0 \N \N f 0 \N 2 147644544 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 435270 2024-02-22 17:24:03.151 2024-02-22 17:34:05.726 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nA item peace although method. https://example.com/ 20412 435116 435018.435116.435270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03717328605065 0 \N \N f 0 \N 0 242053019 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 438441 2024-02-25 17:00:33.244 2024-02-25 17:10:34.729 \N Anyone himself set window report. Short president https://example.com/ 10270 438362 437996.437997.438304.438362.438441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09196083033397 0 \N \N f 0 \N 0 249989172 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 434505 2024-02-22 03:14:50.945 2024-02-22 03:24:52.174 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Si https://example.com/ 18372 433833 433833.434505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9870335667997 0 \N \N f 0 \N 0 55911467 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 443983 2024-02-29 18:06:48.901 2024-02-29 18:16:49.987 \N Leas https://example.com/ 18517 443527 443272.443527.443983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.33232811515119 0 \N \N f 0 \N 0 220458505 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 445012 2024-03-01 14:02:51.25 2024-03-01 14:12:52.436 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military ye https://example.com/ 2330 444416 443712.443834.444412.444416.445012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.342999450144 0 \N \N f 0 \N 2 49709425 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 438511 2024-02-25 18:00:04.755 2024-02-25 18:10:05.931 Writer everyone voice read. Control meet four only preside \N https://example.com/ 17212 \N 438511 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.5839300649791 0 \N \N f 0 \N 1 239135735 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432455 2024-02-20 13:14:00.482 2024-02-20 13:24:01.637 \N Mater https://example.com/ 20022 432444 432344.432444.432455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5209771513074 0 \N \N f 0 \N 0 134730970 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438749 2024-02-25 23:48:16.981 2024-02-25 23:58:19.365 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really sout https://example.com/ 680 438731 438649.438731.438749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9177597964434 0 \N \N f 0 \N 6 201710295 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 444006 2024-02-29 18:15:05.913 2024-02-29 18:25:07.196 \N Drive s https://example.com/ 18453 443565 443303.443565.444006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49883959748694 0 \N \N f 0 \N 0 46901634 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N 432522 2024-02-20 14:35:21.25 2024-02-20 14:45:22.91 \N Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk https://example.com/ 4177 432477 432477.432522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6655626541487 0 \N \N f 0 \N 0 225862783 0 f f \N \N \N \N 432477 \N 0 0 \N \N f \N 432524 2024-02-20 14:36:25.44 2024-02-20 14:46:26.499 \N Item attention child take film late. Still next free list. Artist seven one record. St https://example.com/ 18199 432464 432464.432524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1317168304473 0 \N \N f 0 \N 0 83168030 0 f f \N \N \N \N 432464 \N 0 0 \N \N f \N 443834 2024-02-29 16:48:34.449 2024-02-29 16:58:35.463 \N Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice https://example.com/ 8796 443712 443712.443834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8212860584177 0 \N \N f 0 \N 11 69779543 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 441691 2024-02-28 10:59:08.202 2024-02-28 11:09:10.93 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key fo https://example.com/ 21413 441333 441333.441691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.34248692633269 0 \N \N f 0 \N 1 35895240 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442302 2024-02-28 16:16:04.169 2024-02-28 16:26:05.938 \N Program cut truth box indicate game. Agency option outside we https://example.com/ 1478 442069 442065.442069.442302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8059838430683 0 \N \N f 0 \N 0 213523140 0 f f \N \N \N \N 442065 \N 0 0 \N \N f \N 433374 2024-02-21 05:29:13.95 2024-02-21 05:39:15.373 \N Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop requir https://example.com/ 15147 433344 433344.433374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6670877637743 0 \N \N f 0 \N 0 39794221 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433365 2024-02-21 04:52:46.567 2024-02-21 05:02:48.679 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or mis https://example.com/ 19193 433364 433364.433365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2284283219484 0 \N \N f 0 \N 1 148750659 0 f f \N \N \N \N 433364 \N 0 0 \N \N f \N 432487 2024-02-20 14:08:09.955 2024-02-20 14:18:11.691 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Becom https://example.com/ 13249 432476 432468.432476.432487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9379646400762 0 \N \N f 0 \N 0 125539668 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 433362 2024-02-21 04:32:13.431 2024-02-21 04:42:15.038 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to gr https://example.com/ 18219 432982 432982.433362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8176754682357 0 \N \N f 0 \N 0 182101670 0 f f \N \N \N \N 432982 \N 0 0 \N \N f \N 442175 2024-02-28 15:28:44.806 2024-02-28 15:38:46.024 \N Myself measure first such real consumer. Only for auth https://example.com/ 7913 442163 442163.442175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54122810893419 0 \N \N f 0 \N 2 91293777 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 444195 2024-02-29 20:19:47.836 2024-02-29 20:29:49.062 \N Per over executive. Happy involve mission just compa https://example.com/ 20109 444168 444168.444195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8508952031372 0 \N \N f 0 \N 1 12838919 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 433624 2024-02-21 11:27:53.935 2024-02-21 11:37:55.024 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Onl https://example.com/ 20102 433619 433435.433520.433565.433619.433624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1339784671937 0 \N \N f 0 \N 0 76958321 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 443027 2024-02-29 03:03:10.62 2024-02-29 03:13:11.516 \N Edge lot space military without many term others. Religious w https://example.com/ 11967 442894 442894.443027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.089682917791 0 \N \N f 0 \N 1 242478362 0 f f \N \N \N \N 442894 \N 0 0 \N \N f \N 442986 2024-02-29 02:07:35.89 2024-02-29 02:17:37.749 Accept nation he. Work plan mai Girl someone prepare. Realize however yeah https://example.com/ 20337 \N 442986 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3617466776901 0 \N \N f 0 \N 8 135410786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443403 2024-02-29 12:42:06.491 2024-02-29 12:52:07.754 \N Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support spec https://example.com/ 17798 443319 443319.443403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2500911380923 0 \N \N f 0 \N 0 45750182 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N 432610 2024-02-20 15:40:27.255 2024-02-20 15:50:28.756 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project ye https://example.com/ 4459 432553 429509.432405.432553.432610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9286073698491 0 \N \N f 0 \N 0 211349830 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N 433921 2024-02-21 16:22:14.169 2024-02-21 16:32:15.569 \N Our because trip contain onto sim https://example.com/ 19105 433849 433833.433849.433921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8925025029523 0 \N \N f 0 \N 1 138525866 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 444423 2024-02-29 23:52:48.866 2024-03-01 00:02:50.607 \N Th https://example.com/ 827 444414 444414.444423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.46677565265769 0 \N \N f 0 \N 0 79654750 0 f f \N \N \N \N 444414 \N 0 0 \N \N f \N 444166 2024-02-29 19:58:38.376 2024-02-29 20:08:40.462 \N Machine sell woman west bed risk. Regi https://example.com/ 19286 443272 443272.444166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.728152649865 0 \N \N f 0 \N 1 218800443 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 432539 2024-02-20 14:44:02.681 2024-02-20 14:54:16.126 Successful power down must next system pull provide Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class fede https://example.com/ 16724 \N 432539 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 3.19906650442835 0 \N \N f 0 \N 1 27116197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439746 2024-02-26 18:41:43.173 2024-02-26 18:51:44.959 \N Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic c https://example.com/ 11750 439654 439654.439746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2030913633031 0 \N \N f 0 \N 1 175511088 0 f f \N \N \N \N 439654 \N 0 0 \N \N f \N 120704 2023-01-11 14:08:24.248 2023-01-11 14:08:24.248 Them debate mai Himself seem along exist population de https://example.com/ 635 \N 120704 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.30487594521454 0 \N \N f 0 \N 9 93243273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432622 2024-02-20 15:46:42.797 2024-02-20 15:56:43.771 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While centr https://example.com/ 12422 432604 432344.432491.432604.432622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1623493656935 0 \N \N f 0 \N 0 7888590 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432616 2024-02-20 15:43:15.863 2024-02-20 15:53:16.596 \N Similar event two high mouth. Seem however visit. Cell probably if authori https://example.com/ 20713 432606 432606.432616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.4142161310831 0 \N \N f 0 \N 0 192765658 0 f f \N \N \N \N 432606 \N 0 0 \N \N f \N 432542 2024-02-20 14:45:28.797 2024-02-20 14:55:30.538 \N News animal hour keep yoursel https://example.com/ 11714 432464 432464.432542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8236708157115 0 \N \N f 0 \N 0 236680301 0 f f \N \N \N \N 432464 \N 0 0 \N \N f \N 435027 2024-02-22 14:22:58.288 2024-02-22 14:32:59.694 \N Necessary hold quite on prove past. Stage front dark term relationship clearly money. O https://example.com/ 17827 435017 435017.435027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0956850885123 0 \N \N f 0 \N 0 101054213 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N 431972 2024-02-19 22:46:20.959 2024-02-19 22:56:22.157 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town appl https://example.com/ 1038 431963 430488.431915.431963.431972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.150921812287 0 \N \N f 0 \N 0 73311257 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 138494 2023-02-17 17:35:12.61 2023-02-17 17:45:13.743 Be human year girl treatment no \N https://example.com/ 641 \N 138494 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5017530391938 0 \N \N f 0 \N 1 27789878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437397 2024-02-24 15:57:07.128 2024-02-24 16:07:08.665 \N Front color executive find hotel. Security dark sing first eve https://example.com/ 8998 437372 437372.437397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6792868934853 0 \N \N f 0 \N 1 160908439 0 f f \N \N \N \N 437372 \N 0 0 \N \N f \N 140342 2023-02-20 10:11:25.494 2023-02-20 10:21:26.553 Billion very news personal develop career r \N https://example.com/ 11621 \N 140342 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 11.2017720685047 0 \N \N f 0 \N 0 228997472 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191096 2023-06-10 19:24:35.374 2023-06-10 19:34:37.238 Speech radio kind know. Can travel \N https://example.com/ 16598 \N 191096 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0171686164364 0 \N \N f 0 \N 1 165257895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 174240 2023-05-05 10:14:30.255 2023-05-05 10:14:30.255 Image \N https://example.com/ 658 \N 174240 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.157401559641 0 \N \N f 0 \N 13 222786256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 244737 2023-09-05 11:02:48.126 2023-09-05 11:12:49.316 \N Yeah word become https://example.com/ 928 239220 239220.244737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.932794315141159 0 \N \N f 0 \N 0 88401155 0 f f \N \N \N \N 239220 \N 0 0 \N \N f \N 324620 2023-11-21 21:39:22.369 2023-11-21 21:49:23.345 True quickly gove M https://example.com/ 13782 \N 324620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6700526379502 0 \N \N f 0 \N 7 52052567 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438514 2024-02-25 18:01:41.177 2024-02-25 18:11:42.594 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you it https://example.com/ 876 438508 438487.438508.438514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5065684166206 0 \N \N f 0 \N 0 120617217 0 f f \N \N \N \N 438487 \N 0 0 \N \N f \N 296234 2023-10-27 14:05:50.325 2023-10-27 14:15:51.741 \N Purpose age cover m https://example.com/ 18641 296073 296073.296234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51120493119063 0 \N \N f 0 \N 0 198901958 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 437752 2024-02-24 23:01:59.955 2024-02-24 23:12:01.373 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality https://example.com/ 736 437723 437723.437752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.319290541541157 0 \N \N f 0 \N 5 138059825 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 443568 2024-02-29 14:32:58.067 2024-02-29 14:42:59.003 \N Leave example rock. According p https://example.com/ 20495 443560 443295.443548.443560.443568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02637877696263 0 \N \N f 0 \N 0 104672503 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 445041 2024-03-01 14:17:34.784 2024-03-01 14:27:35.953 \N Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too arou https://example.com/ 21103 444998 444998.445041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0248125882655 0 \N \N f 0 \N 0 175382367 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 444926 2024-03-01 12:35:13.13 2024-03-01 12:45:14.452 \N Between remember watch image save win determine. Each reduce u https://example.com/ 11314 444770 444770.444926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31150605549939 0 \N \N f 0 \N 3 33173896 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 443570 2024-02-29 14:33:01.836 2024-02-29 14:43:03.024 \N Source sci https://example.com/ 4225 443552 442084.443552.443570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5189446723998 0 \N \N f 0 \N 0 156658660 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443567 2024-02-29 14:31:59.512 2024-02-29 14:42:00.464 \N West tend alone prepare build view support. Ph https://example.com/ 18116 443288 443288.443567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2539627545975 0 \N \N f 0 \N 0 30598119 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 432292 2024-02-20 09:40:53.921 2024-02-20 09:50:55.007 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun l https://example.com/ 9758 432085 430892.432085.432292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5355675092519 0 \N \N f 0 \N 0 240440810 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 445043 2024-03-01 14:18:42.401 2024-03-01 14:28:43.361 \N Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before c https://example.com/ 7674 444998 444998.445043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.90949499157994 0 \N \N f 0 \N 0 55674344 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 438508 2024-02-25 17:58:19.314 2024-02-25 18:08:20.238 \N There everybody fish can. Exactly office event charge reduce. https://example.com/ 6573 438487 438487.438508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0810684928954 0 \N \N f 0 \N 1 117112048 0 f f \N \N \N \N 438487 \N 0 0 \N \N f \N 438006 2024-02-25 08:06:51.281 2024-02-25 08:16:53.512 \N Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement cri https://example.com/ 17331 437937 437723.437937.438006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1985143044638 0 \N \N f 0 \N 1 160048834 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 411435 2024-02-03 14:33:31.975 2024-02-03 14:43:33.323 \N May another international budget. https://example.com/ 19952 399223 399223.411435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4936951801575 0 \N \N f 0 \N 0 132979980 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N 432191 2024-02-20 06:55:59.594 2024-02-20 07:06:01.36 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Fut https://example.com/ 4173 432146 432113.432146.432191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4119679976053 0 \N \N f 0 \N 0 87478956 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 433143 2024-02-20 22:48:36.08 2024-02-20 22:58:37.117 \N It suggest save face though senior walk oil. Establish finally lot present change. Into https://example.com/ 18076 433138 433114.433128.433129.433132.433138.433143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6869778700041 0 \N \N f 0 \N 6 68819412 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 440030 2024-02-26 22:11:25.799 2024-02-26 22:21:27.367 \N W https://example.com/ 4064 439386 439082.439386.440030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9916630459279 0 \N \N f 0 \N 0 25929755 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 431171 2024-02-19 18:09:49.728 2024-02-19 18:19:51.747 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course https://example.com/ 12261 431151 431109.431151.431171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09436729300162 0 \N \N f 0 \N 0 174527972 0 f f \N \N \N \N 431109 \N 0 0 \N \N f \N 443612 2024-02-29 14:53:59.193 2024-02-29 15:04:03.539 \N Keep third police section avoi https://example.com/ 1002 443596 443130.443534.443596.443612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9904426926927 0 \N \N f 0 \N 0 162842379 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N 432054 2024-02-20 00:20:24.048 2024-02-20 00:30:25.685 \N Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often mon https://example.com/ 5057 432030 430488.431915.431963.432030.432054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3838700109511 0 \N \N f 0 \N 1 197915760 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 442709 2024-02-28 21:09:22.141 2024-02-28 21:19:23.078 Admit difficult figure parent account in. Suffer admini Grow challenge small bill sometimes https://example.com/ 1237 \N 442709 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.9178634511758 0 \N \N f 0 \N 0 211023867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439571 2024-02-26 16:25:46.52 2024-02-26 16:35:48.099 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agen https://example.com/ 18344 439559 439504.439509.439540.439559.439571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4160764211026 0 \N \N f 0 \N 2 118594508 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 431963 2024-02-19 22:35:22.778 2024-02-19 22:45:24.096 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock https://example.com/ 1564 431915 430488.431915.431963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3357383117019 0 \N \N f 0 \N 4 6828750 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 423526 2024-02-13 14:54:51.945 2024-02-13 15:04:53.905 \N L https://example.com/ 1389 423520 423516.423520.423526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8718996513829 0 \N \N f 0 \N 0 57382506 0 f f \N \N \N \N 423516 \N 0 0 \N \N f \N 438461 2024-02-25 17:24:16.166 2024-02-25 17:34:17.417 \N Big money in south wide support. Meet radio walk grow lay nor interest. R https://example.com/ 20218 438448 438093.438448.438461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3523523207767 0 \N \N f 0 \N 0 219310328 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438512 2024-02-25 18:00:04.96 2024-02-25 18:10:06.144 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care re https://example.com/ 2437 438487 438487.438512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47588480919963 0 \N \N f 0 \N 2 212738776 0 f f \N \N \N \N 438487 \N 0 0 \N \N f \N 431896 2024-02-19 21:31:28.778 2024-02-19 21:41:29.629 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay https://example.com/ 18678 431844 431844.431896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6324952176676 0 \N \N f 0 \N 3 78759677 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 439749 2024-02-26 18:45:05.279 2024-02-26 18:55:07.961 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute col https://example.com/ 20430 439514 439298.439401.439514.439749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8899586964673 0 \N \N f 0 \N 0 46012031 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 437261 2024-02-24 14:26:56.183 2024-02-24 14:36:58.03 \N House west amount. Again high already himself answer type. Go back Mr https://example.com/ 18387 437218 437218.437261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01884790740832 0 \N \N f 0 \N 0 169477904 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 430976 2024-02-19 16:58:24.357 2024-02-19 17:08:25.3 \N Garden morning compare federal. Already west p https://example.com/ 20897 430626 430626.430976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7365008943542 0 \N \N f 0 \N 0 157721984 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432306 2024-02-20 09:58:02.754 2024-02-20 10:08:03.631 \N Professor entire information week article family https://example.com/ 15049 432304 432289.432304.432306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4254833233186 0 \N \N f 0 \N 0 198044079 0 f f \N \N \N \N 432289 \N 0 0 \N \N f \N 432304 2024-02-20 09:55:21.237 2024-02-20 10:05:22.12 \N College quality yard box similar. Response movie clearly often. https://example.com/ 18101 432289 432289.432304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0642958073277 0 \N \N f 0 \N 1 225281617 0 f f \N \N \N \N 432289 \N 0 0 \N \N f \N 443987 2024-02-29 18:08:39.84 2024-02-29 18:18:40.982 \N News animal hour keep yourself and. Be moment rather often recognize https://example.com/ 20464 443591 443462.443465.443591.443987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2096420261256 0 \N \N f 0 \N 0 72676109 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 434085 2024-02-21 17:53:57.766 2024-02-21 18:03:59.158 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medic https://example.com/ 20157 433851 433828.433851.434085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90315104415766 0 \N \N f 0 \N 0 224780178 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 443990 2024-02-29 18:09:36.951 2024-02-29 18:19:38.512 \N Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human https://example.com/ 4166 443820 443129.443509.443820.443990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9392836545358 0 \N \N f 0 \N 4 157743018 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 435712 2024-02-23 00:37:42.91 2024-02-23 03:38:07.938 \N Administration thre https://example.com/ 10549 435497 435497.435712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.32630576087479 0 \N \N f 0 \N 0 83511432 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 432286 2024-02-20 09:36:42.924 2024-02-20 09:46:44.272 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsib https://example.com/ 1584 432256 432203.432256.432286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2711818682682 0 \N \N f 0 \N 4 28458791 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 434605 2024-02-22 06:15:15.25 2024-02-22 06:25:16.388 \N Physical woman wait smile h https://example.com/ 2338 434440 434440.434605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53947126468629 0 \N \N f 0 \N 0 217060932 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 432298 2024-02-20 09:48:38.341 2024-02-20 09:58:39.673 \N Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place off https://example.com/ 16145 430710 430626.430710.432298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4890490239877 0 \N \N f 0 \N 0 212932209 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 443975 2024-02-29 18:04:49.197 2024-02-29 18:14:51.397 \N Light check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Cons https://example.com/ 12965 443970 443917.443970.443975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0461426882617 0 \N \N f 0 \N 1 108260759 0 f f \N \N \N \N 443917 \N 0 0 \N \N f \N 434450 2024-02-22 00:53:08.465 2024-02-22 01:03:09.334 \N Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research https://example.com/ 18114 434428 433978.434428.434450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0699440569444 0 \N \N f 0 \N 0 70160972 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 443095 2024-02-29 05:51:12.182 2024-02-29 06:01:12.886 \N Name put just democratic follow beyond marriage minute. Only none sce https://example.com/ 18659 442632 442632.443095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9419705001975 0 \N \N f 0 \N 3 117745338 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 432651 2024-02-20 16:17:21.295 2024-02-20 16:27:23.204 Push floor economy probably reason s Main teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class de https://example.com/ 20450 \N 432651 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.9189121278121 0 \N \N f 0 \N 1 49560095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432323 2024-02-20 10:18:50.67 2024-02-20 10:28:52.11 \N Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply f https://example.com/ 17183 432318 432269.432305.432318.432323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6288393873235 0 \N \N f 0 \N 1 188225661 0 f f \N \N \N \N 432269 \N 0 0 \N \N f \N 433397 2024-02-21 05:54:58.659 2024-02-21 06:04:59.785 \N Sell attention budget indicate. Oth https://example.com/ 9334 433359 433359.433397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.516245067596479 0 \N \N f 0 \N 1 225586598 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 432301 2024-02-20 09:51:15.415 2024-02-20 10:01:16.61 Range network baby that. Smile comm Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. https://example.com/ 14906 \N 432301 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 19.9886310713056 0 \N \N f 0 \N 6 127755873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 95332 2022-11-17 15:21:14.714 2022-11-17 15:21:14.714 Leave example roc Scene relate https://example.com/ 6164 \N 95332 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7422604827793 0 \N \N f 0 \N 1 205555357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444070 2024-02-29 18:57:03.459 2024-02-29 19:07:05.012 \N Book environmental good western support either be. Choic https://example.com/ 15094 444068 444068.444070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8441652636243 0 \N \N f 0 \N 0 244637829 0 f f \N \N \N \N 444068 \N 0 0 \N \N f \N 445042 2024-03-01 14:17:44.833 2024-03-01 14:27:45.973 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nSocial impact learn sin https://example.com/ 6229 444950 444950.445042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2566925283981 0 \N \N f 0 \N 0 181407798 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 445062 2024-03-01 14:28:51.326 2024-03-01 14:38:52.801 \N About easy answer glass. Fire who place approach. https://example.com/ 17797 445016 444998.445016.445062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40312972293876 0 \N \N f 0 \N 0 216564857 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 193817 2023-06-15 13:35:21.15 2023-06-17 13:12:42.415 Reflect fill team \N https://example.com/ 20852 \N 193817 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0976814604889 0 \N \N f 0 \N 0 130827572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445016 2024-03-01 14:04:47.343 2024-03-01 14:14:49.157 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Que https://example.com/ 19837 444998 444998.445016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62833381118995 0 \N \N f 0 \N 2 91307733 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 438505 2024-02-25 17:54:09.089 2024-02-25 18:04:10.666 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight https://example.com/ 4802 438423 438389.438423.438505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1576345922666 0 \N \N f 0 \N 0 224983833 0 f f \N \N \N \N 438389 \N 0 0 \N \N f \N 432312 2024-02-20 10:08:26.787 2024-02-20 10:18:28.291 \N Hot near source fact. Have high kind. Series speech subject side condit https://example.com/ 624 432261 430892.432261.432312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3023574851714 0 \N \N f 0 \N 0 118189606 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 444004 2024-02-29 18:14:36.982 2024-02-29 18:24:37.827 \N Couple writer life commercial art. https://example.com/ 19690 443321 443303.443321.444004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8199599131872 0 \N \N f 0 \N 0 215064568 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N 432315 2024-02-20 10:13:35.22 2024-02-20 10:23:36.318 \N Statement record quite ever prepare machine lawyer. Huge current c https://example.com/ 2952 432115 430496.430682.431716.432034.432115.432315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8021501481548 0 \N \N f 0 \N 0 64412988 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 438675 2024-02-25 21:31:34.503 2024-02-25 21:31:39.778 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist https://example.com/ 16966 117788 117788.438675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7795806728173 0 \N \N f 0 \N 0 105310533 0 f f \N \N \N \N 117788 \N 0 0 \N \N f \N 433746 2024-02-21 13:24:12.248 2024-02-21 13:34:14.128 \N Mr right bring various. Whose apply laugh only. Simp https://example.com/ 19105 433594 433594.433746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.032376510034 0 \N \N f 0 \N 2 222293612 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 445046 2024-03-01 14:19:15.468 2024-03-01 14:29:16.87 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society admini https://example.com/ 20511 445032 445003.445005.445032.445046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58910837441572 0 \N \N f 0 \N 0 213269443 0 f f \N \N \N \N 445003 \N 0 0 \N \N f \N 445068 2024-03-01 14:34:31.293 2024-03-01 14:44:34.51 \N Purpose age cover machine. M https://example.com/ 1273 444921 444921.445068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8548412855351 0 \N \N f 0 \N 0 150434778 0 f f \N \N \N \N 444921 \N 0 0 \N \N f \N 444684 2024-03-01 09:15:36.462 2024-03-01 09:25:38.136 \N Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open eve https://example.com/ 19189 260178 260178.444684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82271993195201 0 \N \N f 0 \N 0 56422211 0 f f \N \N \N \N 260178 \N 0 0 \N \N f \N 443677 2024-02-29 15:23:53.68 2024-02-29 15:33:54.74 \N Such among bank choice https://example.com/ 5578 443484 443372.443386.443478.443484.443677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3760093887393 0 \N \N f 0 \N 0 232924593 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 118726 2023-01-07 02:21:43.731 2023-01-07 02:21:43.731 Be human year \N https://example.com/ 7673 \N 118726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.25790667620846 0 \N \N f 0 \N 0 201242177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 188714 2023-06-06 02:49:26.597 2023-06-06 02:59:28.516 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Ac https://example.com/ 21262 188675 188308.188380.188387.188390.188396.188670.188673.188675.188714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5314959998333 0 \N \N f 0 \N 4 242226164 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 438535 2024-02-25 18:17:45.34 2024-02-25 18:27:47.649 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reaso https://example.com/ 21012 438438 438438.438535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8496501606493 0 \N \N f 0 \N 0 81968129 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 2457 2021-09-23 17:42:45.507 2023-10-01 23:51:48.738 Person like among former \N https://example.com/ 697 \N 2457 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.56136435763096 0 \N \N f 0 \N 3 150775064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444921 2024-03-01 12:30:36.785 2024-03-01 12:40:38.093 Prevent machine so Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure https://example.com/ 14472 \N 444921 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.511796327467557 0 \N \N f 0 \N 1 18066072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437996 2024-02-25 07:20:15.66 2024-02-26 07:21:45.402 Officer forget west check learn ident Treatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field histo https://example.com/ 19018 \N 437996 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 6.18422102637311 0 \N \N f 0 \N 16 12408886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442172 2024-02-28 15:28:11.281 2024-02-28 15:38:12.134 \N News animal hour keep your https://example.com/ 7673 442159 441843.441979.442087.442092.442099.442108.442129.442139.442159.442172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4482250405189 0 \N \N f 0 \N 0 165645631 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 209630 2023-07-16 09:26:18.058 2023-07-18 20:43:45.384 Smile debate leas \N https://example.com/ 4314 \N 209630 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.53736787076112 0 \N \N f 0 \N 3 2704992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445058 2024-03-01 14:25:14.185 2024-03-01 14:35:15.191 \N Born value hundred medical loss. Kid white check draw https://example.com/ 14258 445016 444998.445016.445058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0583245260413 0 \N \N f 0 \N 0 167803290 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 432115 2024-02-20 02:39:38.685 2024-02-20 02:49:39.6 \N Pick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible https://example.com/ 13544 432034 430496.430682.431716.432034.432115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3732957807144 0 \N \N f 0 \N 1 211134854 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 434746 2024-02-22 10:05:30.417 2024-02-22 10:15:32.091 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie rela https://example.com/ 17535 433833 433833.434746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9049399627331 0 \N \N f 0 \N 0 108074377 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 441059 2024-02-27 20:31:37.986 2024-02-27 20:41:40.133 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. https://example.com/ 18448 440999 440989.440999.441059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5342537808361 0 \N \N f 0 \N 1 117305590 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 444832 2024-03-01 11:27:42.837 2024-03-01 11:37:43.902 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across s https://example.com/ 8985 444718 444718.444832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31355241682624 0 \N \N f 0 \N 3 10139942 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 432110 2024-02-20 02:36:08.222 2024-02-20 02:46:09.39 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportuni https://example.com/ 16970 432034 430496.430682.431716.432034.432110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.84045941773351 0 \N \N f 0 \N 1 244067587 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 444718 2024-03-01 10:16:18.08 2024-03-01 10:26:19.391 Whatever moment pattern front up muc Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ah https://example.com/ 15833 \N 444718 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 18.8637707134741 0 \N \N f 0 \N 23 104727837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444880 2024-03-01 12:03:50.473 2024-03-01 12:13:51.635 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. https://example.com/ 18359 444857 444718.444832.444857.444880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9651605277718 0 \N \N f 0 \N 1 227063970 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 445023 2024-03-01 14:10:32.427 2024-03-01 14:20:34.528 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military con https://example.com/ 18138 443969 443712.443969.445023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6752332690367 0 \N \N f 0 \N 0 86021893 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 432073 2024-02-20 01:06:08.538 2024-02-20 01:16:09.63 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. O https://example.com/ 886 432064 431966.432055.432064.432073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.924473677012 0 \N \N f 0 \N 0 22117154 0 f f \N \N \N \N 431966 \N 0 0 \N \N f \N 432319 2024-02-20 10:16:47.604 2024-02-20 10:26:48.924 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environment https://example.com/ 14168 432303 432203.432256.432286.432303.432319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5354372326758 0 \N \N f 0 \N 2 154210880 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 438679 2024-02-25 21:43:56.689 2024-02-25 21:53:58.077 \N Right term sell should https://example.com/ 708 438540 438093.438374.438540.438679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4649219677002 0 \N \N f 0 \N 2 145518422 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 442150 2024-02-28 15:19:55.424 2024-02-28 15:29:56.496 \N Health catch toward h https://example.com/ 766 442143 442143.442150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.26352778014004 0 \N \N f 0 \N 0 89096098 0 f f \N \N \N \N 442143 \N 0 0 \N \N f \N 438602 2024-02-25 19:54:08.66 2024-02-25 20:04:09.861 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold ke https://example.com/ 3706 438537 437996.438537.438602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.89341596410523 0 \N \N f 0 \N 0 15227542 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 444881 2024-03-01 12:04:05.018 2024-03-01 12:14:06.538 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something d https://example.com/ 14449 444858 444824.444858.444881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36894273454174 0 \N \N f 0 \N 0 111210089 0 f f \N \N \N \N 444824 \N 0 0 \N \N f \N 445036 2024-03-01 14:16:05.494 2024-03-01 14:26:06.979 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major gr https://example.com/ 690 444998 444998.445036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2414621972844 0 \N \N f 0 \N 0 125949961 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 434732 2024-02-22 09:54:13.981 2024-02-22 10:04:15.471 \N Score picture lot professor bed season country. Begin watch tre https://example.com/ 1567 434717 434717.434732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62873647289008 0 \N \N f 0 \N 0 41972743 0 f f \N \N \N \N 434717 \N 0 0 \N \N f \N 432081 2024-02-20 01:15:24.007 2024-02-20 01:25:25.77 \N Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nBefore evening her visit bag building grow. Small p https://example.com/ 20439 431122 431122.432081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.86510657781839 0 \N \N f 0 \N 0 213794418 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 430866 2024-02-19 15:33:39.286 2024-02-19 15:43:40.888 \N R https://example.com/ 18930 430695 430626.430695.430866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.75939832755353 0 \N \N f 0 \N 0 74938879 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 190273 2023-06-09 03:32:26.973 2023-06-09 03:42:28.449 Direction figure between get especially certain. Behind himse \N https://example.com/ 695 \N 190273 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0896156264291 0 \N \N f 0 \N 0 15590218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438563 2024-02-25 18:49:11.505 2024-02-25 18:59:13.135 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction https://example.com/ 5173 438458 438325.438345.438458.438563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5328971448445 0 \N \N f 0 \N 3 24143976 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 444968 2024-03-01 13:27:55.887 2024-03-01 13:37:57.015 Occur chair truth these officer focus black. Walk c Find building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. https://example.com/ 7818 \N 444968 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 5.13249133288355 0 \N \N f 0 \N 5 29115713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433389 2024-02-21 05:47:57.759 2024-02-21 05:57:58.967 \N Move purpose well important learn population study. Key turn car https://example.com/ 18177 433282 433282.433389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5600772426647 0 \N \N f 0 \N 0 40735567 0 f f \N \N \N \N 433282 \N 0 0 \N \N f \N 430984 2024-02-19 17:01:34.7 2024-02-19 17:11:35.645 Shake pretty eat probably pretty stop time. E Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order busine https://example.com/ 16948 \N 430984 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.67771798041143 0 \N \N f 0 \N 14 240812405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433402 2024-02-21 06:03:03.274 2024-02-21 06:13:04.311 \N Animal treatment actually. Local me bar data personal. Imagine industry m https://example.com/ 7827 433364 433364.433402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0178219513859 0 \N \N f 0 \N 1 65064839 0 f f \N \N \N \N 433364 \N 0 0 \N \N f \N 444931 2024-03-01 12:42:53.156 2024-03-01 12:52:54.229 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. H https://example.com/ 18274 444874 444874.444931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13358343765453 0 \N \N f 0 \N 0 36345966 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 432303 2024-02-20 09:54:36.822 2024-02-20 10:04:38.017 \N Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman https://example.com/ 18658 432286 432203.432256.432286.432303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2995001982128 0 \N \N f 0 \N 3 233817843 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 432345 2024-02-20 11:00:10.455 2024-02-20 11:10:12.378 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nGlass her rememb https://example.com/ 2256 432344 432344.432345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6144255564628 0 \N \N f 0 \N 3 77996774 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433395 2024-02-21 05:53:06.903 2024-02-21 06:03:08.079 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involv https://example.com/ 21555 433385 433385.433395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8460359067395 0 \N \N f 0 \N 0 139742067 0 f f \N \N \N \N 433385 \N 0 0 \N \N f \N 433392 2024-02-21 05:51:01.21 2024-02-21 06:01:02.353 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek https://example.com/ 16341 432211 432211.433392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8779399171422 0 \N \N f 0 \N 0 113662616 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 431079 2024-02-19 17:31:44.72 2024-02-19 17:41:45.663 \N Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nDeep some relate building buy then. Letter common approach education artist as. S https://example.com/ 5746 430892 430892.431079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00694784889689 0 \N \N f 0 \N 1 228040017 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438597 2024-02-25 19:41:58.306 2024-02-25 19:51:59.996 \N Big field certainly community. North marriage animal whose health https://example.com/ 20163 438589 438325.438459.438582.438589.438597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3215063537744 0 \N \N f 0 \N 0 117730464 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 349708 2023-12-12 16:47:59.288 2023-12-12 16:58:01.409 Even hot polit Hou https://example.com/ 18468 \N 349708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1257525282139 0 \N \N f 0 \N 8 135274970 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430933 2024-02-19 16:29:30.5 2024-02-19 16:39:31.819 \N Anything common leader response. Source news glass bed. Third fire understand bea https://example.com/ 15326 430892 430892.430933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3882516846318 0 \N \N f 0 \N 2 205037529 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438652 2024-02-25 20:58:28.395 2024-02-25 21:08:29.838 \N Entire money chair between various plant. Cut year its little p https://example.com/ 17275 438438 438438.438652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3180222181243 0 \N \N f 0 \N 0 228969092 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 432242 2024-02-20 08:31:55.687 2024-02-20 08:41:57.111 \N Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Su https://example.com/ 11750 432226 432211.432226.432242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71347499076742 0 \N \N f 0 \N 0 219857195 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 435508 2024-02-22 20:48:44.372 2024-02-22 20:58:45.641 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle p https://example.com/ 20106 434978 434791.434978.435508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1334036760814 0 \N \N f 0 \N 0 196384997 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 438655 2024-02-25 21:00:04.982 2024-02-25 21:00:11.316 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room not https://example.com/ 20198 438654 438654.438655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1477554193309 0 \N \N f 0 \N 0 130364719 0 f f \N \N \N \N 438654 \N 0 0 \N \N f \N 438661 2024-02-25 21:06:45.633 2024-02-25 21:16:48.306 \N Maybe remain https://example.com/ 704 438414 438414.438661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5617083896503 0 \N \N f 0 \N 0 170045376 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432239 2024-02-20 08:25:26.581 2024-02-20 08:35:28.131 \N End and certainly https://example.com/ 19459 431844 431844.432239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.82446401884042 0 \N \N f 0 \N 2 109039769 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 433413 2024-02-21 06:33:06.01 2024-02-21 06:43:07.613 \N Budget agent center morning series international b https://example.com/ 19329 433391 433391.433413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9898775110054 0 \N \N f 0 \N 0 180007415 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 435346 2024-02-22 18:01:43.095 2024-02-22 18:11:43.925 \N North beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement https://example.com/ 19843 435217 435217.435346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0017705684285 0 \N \N f 0 \N 1 156696496 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 430072 2024-02-18 22:17:38.705 2024-02-18 22:27:40.935 \N Herself will eight force small lose. Budget box https://example.com/ 18751 429764 429764.430072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5969145503711 0 \N \N f 0 \N 2 85550742 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 433133 2024-02-20 22:40:10.951 2024-02-20 22:50:12.349 \N Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church disc https://example.com/ 19398 433042 432920.433042.433133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8996099210497 0 \N \N f 0 \N 1 92059341 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 430104 2024-02-18 22:46:21.658 2024-02-18 22:56:23.323 \N Sound clearly happen age onto imagine. https://example.com/ 11821 429642 429642.430104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0059178618385 0 \N \N f 0 \N 0 205436135 0 f f \N \N \N \N 429642 \N 0 0 \N \N f \N 432226 2024-02-20 07:51:46.625 2024-02-20 08:01:47.762 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy pr https://example.com/ 16912 432211 432211.432226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3703959085375 0 \N \N f 0 \N 2 241852900 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 438598 2024-02-25 19:46:39.01 2024-02-25 19:56:40.314 \N Parent often ever. Song m https://example.com/ 998 438486 438486.438598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82685510410227 0 \N \N f 0 \N 0 1831802 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 438413 2024-02-25 16:20:33.41 2024-02-25 16:30:34.607 Study question sing. Hour matter case tax. Bed hit consumer admit sudd Direction network em https://example.com/ 21539 \N 438413 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 0.870206161205545 0 \N \N f 0 \N 0 106493480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440020 2024-02-26 21:56:25.667 2024-02-26 22:06:27.846 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. https://example.com/ 1823 439905 439806.439905.440020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5084116528805 0 \N \N f 0 \N 0 113865098 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 379165 2024-01-06 18:46:26.485 2024-01-13 00:37:13.977 Pretty street rather S https://example.com/ 8472 \N 379165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8900285458562 0 \N \N f 0 \N 5 209589096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439733 2024-02-26 18:32:11.699 2024-02-26 18:42:12.766 \N Myself effort community ago while assume. Production you represent major degree p https://example.com/ 9378 439730 439721.439728.439730.439733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87883371727461 0 \N \N f 0 \N 0 209160219 0 f f \N \N \N \N 439721 \N 0 0 \N \N f \N 289690 2023-10-20 20:16:05.676 2023-10-20 20:26:07.973 Provide enjoy app I https://example.com/ 20744 \N 289690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.437255654832 0 \N \N f 0 \N 7 56278774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434303 2024-02-21 21:27:29.525 2024-02-21 21:37:31.228 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickl https://example.com/ 18310 434211 434211.434303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7395278344219 0 \N \N f 0 \N 0 165798467 0 f f \N \N \N \N 434211 \N 0 0 \N \N f \N 432235 2024-02-20 08:17:05.351 2024-02-20 08:27:07.409 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nIt suggest save https://example.com/ 2022 430338 430338.432235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.11829873475892 0 \N \N f 0 \N 0 153739495 0 f f \N \N \N \N 430338 \N 0 0 \N \N f \N 432272 2024-02-20 09:25:55.618 2024-02-20 09:35:57.198 \N Big fiel https://example.com/ 18378 169365 169365.432272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.133256340122 0 \N \N f 0 \N 0 87567416 0 f f \N \N \N \N 169365 \N 0 0 \N \N f \N 434304 2024-02-21 21:27:34.697 2024-02-21 21:37:35.773 \N Tell difference pattern carry join. Size fac https://example.com/ 20045 434284 434013.434284.434304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54903457505186 0 \N \N f 0 \N 0 362225 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 432279 2024-02-20 09:35:12.137 2024-02-20 09:45:12.962 \N Board Mr bar white alone hot. Court class former model al https://example.com/ 7766 432264 432203.432204.432264.432279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31021455062643 0 \N \N f 0 \N 1 105838958 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 438650 2024-02-25 20:57:46.791 2024-02-25 21:07:47.705 \N Company kid protect determine adu https://example.com/ 21405 438634 438634.438650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8483589991737 0 \N \N f 0 \N 1 235727081 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 432271 2024-02-20 09:25:25.84 2024-02-20 09:25:31.147 \N Yeah wor https://example.com/ 11298 68522 68522.432271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.43519353934603 0 \N \N f 0 \N 0 174244399 0 f f \N \N \N \N 68522 \N 0 0 \N \N f \N 430675 2024-02-19 13:59:24.955 2024-02-19 14:09:26.476 \N Never heavy table particularly land key base. Newspa https://example.com/ 14959 430626 430626.430675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43730474278524 0 \N \N f 0 \N 0 164819411 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432290 2024-02-20 09:39:49.166 2024-02-20 09:49:49.785 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal https://example.com/ 20623 432280 432203.432280.432290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9170167112328 0 \N \N f 0 \N 0 58480032 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 297339 2023-10-29 05:40:14.74 2023-10-29 05:50:15.864 Plant ever Republican Approach stuff big ahead no https://example.com/ 19888 \N 297339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4639608067912 0 \N \N f 0 \N 7 54111290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432295 2024-02-20 09:45:34.639 2024-02-20 09:55:36.003 \N Throughout which address movie agree final. Curre https://example.com/ 20340 432277 432277.432295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7362421504714 0 \N \N f 0 \N 0 106520581 0 f f \N \N \N \N 432277 \N 0 0 \N \N f \N 441836 2024-02-28 12:34:35.488 2024-02-28 12:44:36.978 \N Several follow value modern safe information well your. Meet course your y https://example.com/ 20326 441815 441815.441836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5601220807653 0 \N \N f 0 \N 0 144060360 0 f f \N \N \N \N 441815 \N 0 0 \N \N f \N 442727 2024-02-28 21:20:52.384 2024-02-28 21:30:53.532 \N Own machine table garden necessary. Go sea kitchen among some bu https://example.com/ 21091 442626 442513.442559.442626.442727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.820283533259 0 \N \N f 0 \N 1 90182634 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 439578 2024-02-26 16:32:07.853 2024-02-26 16:42:09 \N Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available https://example.com/ 18076 439477 439477.439578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4237250196066 0 \N \N f 0 \N 0 63420299 0 f f \N \N \N \N 439477 \N 0 0 \N \N f \N 334041 2023-11-30 14:18:06.612 2023-11-30 14:28:07.812 Authority Never money C https://example.com/ 12188 \N 334041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8789087040545 0 \N \N f 0 \N 5 29580273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432264 2024-02-20 09:16:24.386 2024-02-20 09:26:25.955 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. C https://example.com/ 1064 432204 432203.432204.432264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6382693411174 0 \N \N f 0 \N 2 187025349 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 435171 2024-02-22 16:19:13.031 2024-02-22 16:29:15.217 \N If lose particular record natural camera good. Season serve someone leg by type its. Main https://example.com/ 9084 434795 434795.435171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.12267425290608 0 \N \N f 0 \N 2 150971383 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435258 2024-02-22 17:13:28.961 2024-02-22 17:23:30.646 \N Tax kid loss hear ah https://example.com/ 20094 435156 434641.435156.435258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34364118701335 0 \N \N f 0 \N 0 45546244 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N 440014 2024-02-26 21:50:44.385 2024-02-26 22:00:45.323 \N Though or meet hotel. Pay center pattern quality somebody beyond president. Securit https://example.com/ 736 439766 439699.439752.439758.439766.440014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6459090253668 0 \N \N f 0 \N 7 39550275 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 432248 2024-02-20 08:41:08.812 2024-02-20 08:51:10.386 \N Play director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wal https://example.com/ 626 432203 432203.432248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7154269914604 0 \N \N f 0 \N 1 177529582 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 416798 2024-02-07 23:23:13.608 2024-02-07 23:33:15.083 Billion here la Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use https://example.com/ 21062 \N 416798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0063764476844 0 \N \N f 0 \N 5 39112140 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432204 2024-02-20 07:16:16.146 2024-02-20 07:26:17.314 \N Strong of create prevent choose final plant. Continue water white understand chance. Action avoid mig https://example.com/ 21036 432203 432203.432204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8958055628922 0 \N \N f 0 \N 3 5340968 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 438797 2024-02-26 01:13:10.226 2024-02-26 01:23:11.934 Human guy both. Return once place four whatever. Like voi Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nNeed movie coach nation ne https://example.com/ 9275 \N 438797 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.38191584518258 0 \N \N f 0 \N 1 38822275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433191 2024-02-20 23:37:36.042 2024-02-20 23:47:37.628 \N Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should https://example.com/ 21509 433123 432920.433123.433191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3052522711945 0 \N \N f 0 \N 0 213451694 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432259 2024-02-20 09:02:19.521 2024-02-20 09:12:20.917 Themselves table various administration single save. Until pattern Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why broth https://example.com/ 4304 \N 432259 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.910449147814 0 \N \N f 0 \N 9 78711782 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433516 2024-02-21 09:28:46.098 2024-02-21 09:38:47.23 \N Possible late blood always bit. Plant in media population e https://example.com/ 18630 432920 432920.433516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8641173568286 0 \N \N f 0 \N 0 12049058 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433005 2024-02-20 20:29:50.929 2024-02-20 20:39:52.67 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume d https://example.com/ 895 432785 432203.432785.433005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.47706467411012 0 \N \N f 0 \N 6 90679405 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 438345 2024-02-25 15:05:22.879 2024-02-25 15:15:25.661 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nS https://example.com/ 21083 438325 438325.438345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7230095197489 0 \N \N f 0 \N 5 171217192 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432597 2024-02-20 15:25:35.037 2024-02-20 15:35:36.359 \N Book environmental good weste https://example.com/ 21589 432564 432564.432597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33855274448162 0 \N \N f 0 \N 0 32838675 0 f f \N \N \N \N 432564 \N 0 0 \N \N f \N 432589 2024-02-20 15:19:06.301 2024-02-20 15:29:07.451 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive your https://example.com/ 18271 432582 432259.432322.432582.432589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0323261486846 0 \N \N f 0 \N 2 100736651 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 432596 2024-02-20 15:24:41.292 2024-02-20 15:34:43.229 \N Capital treat simple ahead make study. Far administra https://example.com/ 18243 432595 432320.432414.432559.432595.432596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.50148428871333 0 \N \N f 0 \N 3 231597192 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 432582 2024-02-20 15:14:34.713 2024-02-20 15:24:36.133 \N Learn international explain range edge early. Entire l https://example.com/ 15732 432322 432259.432322.432582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7766708693755 0 \N \N f 0 \N 3 136957109 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 432602 2024-02-20 15:29:36.205 2024-02-20 15:39:37.257 \N Very yes customer public music example expert. Fear would much. Necessary leader home step. Cou https://example.com/ 642 432591 432259.432322.432582.432589.432591.432602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.92157107641456 0 \N \N f 0 \N 0 212327953 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 432593 2024-02-20 15:22:10.154 2024-02-20 15:32:11.215 \N Music energy specific plan f https://example.com/ 19952 432534 432320.432414.432529.432532.432534.432593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5573974506496 0 \N \N f 0 \N 0 155926689 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 436432 2024-02-23 17:10:14.582 2024-02-23 17:20:16.933 \N End inside https://example.com/ 11153 436409 436258.436409.436432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54950909360551 0 \N \N f 0 \N 0 114838655 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 435332 2024-02-22 17:57:04.833 2024-02-22 18:07:05.884 \N Herself will eight forc https://example.com/ 20073 435328 435328.435332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54475520145899 0 \N \N f 0 \N 1 183953480 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 7968 2022-01-14 08:50:38.127 2023-10-02 00:00:47.869 Beat case fir Machine thu https://example.com/ 13398 \N 7968 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.89006493671482 0 \N \N f 0 \N 2 184624331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 366621 2023-12-26 10:02:10.503 2023-12-26 10:12:11.466 Truth traini Near see school goal. Inv https://example.com/ 7553 \N 366621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6655074513063 0 \N \N f 0 \N 3 106128987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432591 2024-02-20 15:20:24.429 2024-02-20 15:30:25.575 \N Program cut truth box indicate game. Agency option outside wear. About sign approa https://example.com/ 4763 432589 432259.432322.432582.432589.432591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89559768875454 0 \N \N f 0 \N 1 218608695 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 432559 2024-02-20 14:59:52.978 2024-02-20 15:09:54.579 \N Increase consumer itself trade https://example.com/ 20799 432414 432320.432414.432559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28856457592484 0 \N \N f 0 \N 6 64955271 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 429199 2024-02-18 04:13:32.35 2024-02-18 04:23:34.036 Everyone ment Public appear create https://example.com/ 621 \N 429199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.16182819915322 0 \N \N f 0 \N 2 22579858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438741 2024-02-25 23:40:22.161 2024-02-25 23:50:23.691 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nPattern someone notice power fly. Against expect new often size top. Station everybody which th https://example.com/ 2156 438718 438718.438741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3454731014353 0 \N \N f 0 \N 0 204994485 0 f f \N \N \N \N 438718 \N 0 0 \N \N f \N 435075 2024-02-22 15:00:20.634 2024-02-22 15:10:22.38 \N Herself will eight force small lose. Budget bo https://example.com/ 19905 434827 434827.435075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.851157863503076 0 \N \N f 0 \N 0 53575493 0 f f \N \N \N \N 434827 \N 0 0 \N \N f \N 434314 2024-02-21 21:40:56.329 2024-02-21 21:50:58.106 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter https://example.com/ 19375 434132 433828.434098.434132.434314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6724272223376 0 \N \N f 0 \N 0 86806575 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438209 2024-02-25 13:03:53.689 2024-02-25 13:13:55.812 Serious stay girl enter. His investment develop media Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine https://example.com/ 20849 \N 438209 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.5122569298238 0 \N \N f 0 \N 35 77704220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435191 2024-02-22 16:28:40.271 2024-02-22 16:38:41.309 \N Structure ever film speech alon https://example.com/ 11999 435163 435136.435163.435191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.69022426472601 0 \N \N f 0 \N 0 185401631 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 432454 2024-02-20 13:12:59.312 2024-02-20 13:23:00.897 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow https://example.com/ 14669 432429 432135.432429.432454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3763192304188 0 \N \N f 0 \N 0 67751396 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 432474 2024-02-20 13:53:05.767 2024-02-20 14:03:07.726 \N Already real me https://example.com/ 19462 432472 432472.432474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56253150015072 0 \N \N f 0 \N 0 113218746 0 f f \N \N \N \N 432472 \N 0 0 \N \N f \N 438815 2024-02-26 02:00:05.034 2024-02-26 02:00:10.077 \N Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn https://example.com/ 1224 438814 438814.438815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5169477074181 0 \N \N f 0 \N 0 5513766 0 f f \N \N \N \N 438814 \N 0 0 \N \N f \N 439379 2024-02-26 14:27:59.371 2024-02-26 14:38:00.896 \N Door wr https://example.com/ 9183 439369 439358.439369.439379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5460175532509 0 \N \N f 0 \N 0 126799487 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 439648 2024-02-26 17:17:22.765 2024-02-26 17:27:24.125 \N Tax kid loss hear ahead common best see https://example.com/ 5776 439390 439390.439648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9887782556193 0 \N \N f 0 \N 1 55500785 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 436720 2024-02-23 23:09:09.027 2024-02-23 23:19:10.76 Live child like read. Gas forget current. Heavy always sea worry generation ki Including lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street qu https://example.com/ 14552 \N 436720 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.49754270875869 0 \N \N f 0 \N 38 91286459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430677 2024-02-19 13:59:52.336 2024-02-19 14:09:53.459 \N Then approach enjoy fly effect back. Ahead watch whi https://example.com/ 2335 430626 430626.430677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2375191237069 0 \N \N f 0 \N 2 239334488 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 436533 2024-02-23 18:28:03.647 2024-02-23 18:38:06.858 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. https://example.com/ 15060 436515 436493.436515.436533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.98615859588389 0 \N \N f 0 \N 1 26133278 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 224916 2023-08-14 14:37:28.784 2023-08-14 14:47:30.817 Own machin Key t https://example.com/ 2098 \N 224916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1311038307691 0 \N \N f 0 \N 3 49945551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438717 2024-02-25 22:24:14.673 2024-02-25 22:34:16.609 \N Compare strategy affect thr https://example.com/ 16214 438065 438065.438717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9356869896356 0 \N \N f 0 \N 0 50403499 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 433614 2024-02-21 11:19:19.92 2024-02-21 11:29:20.849 \N According shake the attack guy development pressure. Police cultural area song s https://example.com/ 16848 433594 433594.433614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7590594704326 0 \N \N f 0 \N 0 152064342 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 23906 2022-04-29 12:37:39.54 2023-10-02 00:51:27.676 Condition lose r Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself v https://example.com/ 17212 \N 23906 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.3126425137174 0 \N \N f 0 \N 1 206284356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432574 2024-02-20 15:10:34.321 2024-02-20 15:20:35.549 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn https://example.com/ 9336 432558 432511.432558.432574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0469100455099 0 \N \N f 0 \N 0 68945226 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 432240 2024-02-20 08:26:59.744 2024-02-20 08:37:01.119 \N Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\n https://example.com/ 761 432176 432135.432176.432240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.0881499530403 0 \N \N f 0 \N 0 151660324 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 432276 2024-02-20 09:31:16.587 2024-02-20 09:41:18.052 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface av https://example.com/ 16988 432203 432203.432276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7631141200497 0 \N \N f 0 \N 1 239664345 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 39866 2022-06-30 00:36:00.058 2023-10-02 04:27:23.856 Play single finall Mo https://example.com/ 5497 \N 39866 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.6001380873192 0 \N \N f 0 \N 1 147387912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432601 2024-02-20 15:28:19.877 2024-02-20 15:38:21.026 \N Push recently lay whose. Window network fri https://example.com/ 6526 432369 432369.432601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6698530472374 0 \N \N f 0 \N 0 88333880 0 f f \N \N \N \N 432369 \N 0 0 \N \N f \N 438619 2024-02-25 20:17:29.43 2024-02-25 20:27:31.961 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nGet executive stock move last. Find throw i https://example.com/ 21469 438516 438516.438619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8210283921439 0 \N \N f 0 \N 0 58645604 0 f f \N \N \N \N 438516 \N 0 0 \N \N f \N 432284 2024-02-20 09:36:07.734 2024-02-20 09:46:09.827 \N Work sudden https://example.com/ 12951 432279 432203.432204.432264.432279.432284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4290999999249 0 \N \N f 0 \N 0 40757556 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 147068 2023-03-04 09:28:26.464 2023-03-04 09:38:27.797 Necessary hold Trade guy water between. W https://example.com/ 19346 \N 147068 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.66215981095205 0 \N \N f 0 \N 9 132123054 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437081 2024-02-24 12:21:05.462 2024-02-24 12:31:06.86 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress s https://example.com/ 12566 436752 436752.437081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.32271154255481 0 \N \N f 0 \N 2 220220657 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 444504 2024-03-01 02:30:36.731 2024-03-01 02:40:37.925 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring https://example.com/ 9347 444471 444471.444504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.927231103291 0 \N \N f 0 \N 0 36146118 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N 444508 2024-03-01 02:35:41.932 2024-03-01 02:45:44.461 \N Main teacher loc https://example.com/ 8459 444168 444168.444508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0933673193254 0 \N \N f 0 \N 0 156483799 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 2005 2021-09-12 16:31:14.063 2023-10-01 23:51:03.519 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nNew particularly consider condition ent https://example.com/ 1741 2004 2004.2005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.587448621019 0 \N \N f 0 \N 1 118074563 0 f f \N \N \N \N 2004 \N 0 0 \N \N f \N 430802 2024-02-19 14:48:51.681 2024-02-19 14:58:53.091 \N Family happy son budget speech across. Building effec https://example.com/ 19044 430488 430488.430802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2057061631652 0 \N \N f 0 \N 0 86202089 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430973 2024-02-19 16:54:44.022 2024-02-19 17:04:45.262 Ten instead develop somebody into school. Main buildin Seat commercial through property new. Career audienc https://example.com/ 897 \N 430973 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.36657783956311 0 \N \N f 0 \N 0 180709768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432161 2024-02-20 04:10:46.49 2024-02-20 04:20:47.699 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Que https://example.com/ 21194 432052 432052.432161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3402962993416 0 \N \N f 0 \N 0 243406836 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 431055 2024-02-19 17:24:55.499 2024-02-19 17:34:56.805 \N Never heavy table particularly https://example.com/ 21437 417769 417769.431055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8367853694664 0 \N \N f 0 \N 0 93728851 0 f f \N \N \N \N 417769 \N 0 0 \N \N f \N 437560 2024-02-24 18:10:20.177 2024-02-24 18:20:21.739 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Tr https://example.com/ 640 437044 437044.437560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7344515608129 0 \N \N f 0 \N 8 29904129 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 434966 2024-02-22 13:34:23.229 2024-02-22 13:44:24.052 \N Get executive stock https://example.com/ 2326 434498 434498.434966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6939733673043 0 \N \N f 0 \N 0 121116958 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 430805 2024-02-19 14:51:25.763 2024-02-19 15:01:28.209 \N Pull fact https://example.com/ 8570 430741 430569.430741.430805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63811508229309 0 \N \N f 0 \N 0 216740219 0 f f \N \N \N \N 430569 \N 0 0 \N \N f \N 341483 2023-12-06 20:34:52.91 2023-12-07 06:41:21.17 Second point di Any note pick American lead mention. None magazine iden https://example.com/ 17183 \N 341483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9268778012069 0 \N \N f 0 \N 10 35262282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430950 2024-02-19 16:38:29.927 2024-02-19 16:48:31.195 Race report base really very after. Focus red brother. Best test Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund. https://example.com/ 21422 \N 430950 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7182566634 0 \N \N f 0 \N 0 19804204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437837 2024-02-25 01:35:01.556 2024-02-25 01:45:02.827 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report https://example.com/ 14950 436935 436935.437837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.76136499693101 0 \N \N f 0 \N 0 211519607 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N 444427 2024-02-29 23:55:04.905 2024-03-01 00:05:06.557 \N Same need int https://example.com/ 21418 443583 443583.444427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55739681398199 0 \N \N f 0 \N 0 43314634 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 441873 2024-02-28 13:00:05.651 2024-02-28 13:00:10.79 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position https://example.com/ 12122 441872 441872.441873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6311470269761 0 \N \N f 0 \N 0 205844644 0 f f \N \N \N \N 441872 \N 0 0 \N \N f \N 442706 2024-02-28 21:07:16.322 2024-02-28 21:17:17.495 \N Top however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish mo https://example.com/ 14472 442313 442313.442706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.720990598043 0 \N \N f 0 \N 0 139287424 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 444432 2024-02-29 23:59:44.199 2024-03-01 00:09:46.017 \N Fear size with rich skin decade community. Front either election mouth. Trip care audien https://example.com/ 20218 444385 443836.444346.444378.444385.444432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7375362542238 0 \N \N f 0 \N 0 12979249 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 430912 2024-02-19 16:18:14.596 2024-02-19 16:28:16.529 \N Term growth industry election produc https://example.com/ 20606 430781 430549.430560.430781.430912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5372021881356 0 \N \N f 0 \N 2 123672031 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 443165 2024-02-29 07:50:51.543 2024-02-29 08:00:52.701 \N Girl someone prepare. Realize however yeah staff https://example.com/ 16879 443160 443160.443165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.238998289543204 0 \N \N f 0 \N 0 226326982 0 f f \N \N \N \N 443160 \N 0 0 \N \N f \N 430905 2024-02-19 16:08:47.688 2024-02-19 16:18:49.138 \N Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environmen https://example.com/ 5387 428788 428441.428788.430905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1386469210415 0 \N \N f 0 \N 0 112078781 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N 443157 2024-02-29 07:38:55.29 2024-02-29 07:48:56.895 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting https://example.com/ 9482 443129 443129.443157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08460656394445 0 \N \N f 0 \N 0 221723011 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 444424 2024-02-29 23:53:16.489 2024-03-01 00:03:18.308 \N Support line change go must do. Small audience beautiful whether art. Draw worry show gene https://example.com/ 20310 444292 444292.444424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5475682129932 0 \N \N f 0 \N 0 105225532 0 f f \N \N \N \N 444292 \N 0 0 \N \N f \N 54177 2022-08-03 22:08:45.857 2023-10-02 05:04:56.389 Through hope \N https://example.com/ 9331 \N 54177 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6486195605846 0 \N \N f 0 \N 4 106896745 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442252 2024-02-28 15:56:44.054 2024-02-28 16:06:45.712 \N Property pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nDebate physical difference https://example.com/ 11698 442243 442084.442109.442124.442243.442252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2519250659871 0 \N \N f 0 \N 0 59563214 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437595 2024-02-24 18:56:31.039 2024-02-24 19:06:32.368 Bag couple hot buy yourself serve bit. For even true deta Fish environmental fact https://example.com/ 2620 \N 437595 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.63367742385066 0 \N \N f 0 \N 2 23053210 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435347 2024-02-22 18:04:41.922 2024-02-22 18:14:44.562 \N We course us bank recently significant myself. O https://example.com/ 2151 435331 435046.435324.435331.435347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1364865270223 0 \N \N f 0 \N 0 198608468 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 430900 2024-02-19 16:02:23.585 2024-02-19 16:12:25.48 Both peace drug most bring institution. Mean become current address Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart. https://example.com/ 4763 \N 430900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.56230443867943 0 \N \N f 0 \N 0 120037755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444452 2024-03-01 00:26:22.481 2024-03-01 00:36:24.653 Increase section kind decision. Individual mission song always form parent top. Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although. https://example.com/ 1697 \N 444452 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.605749901345 0 \N \N f 0 \N 0 109553334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430935 2024-02-19 16:30:05.237 2024-02-19 16:40:06.469 \N Role number law science. Sing fight use development different. Safe song head remain interview tr https://example.com/ 14267 399223 399223.430935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30604740180654 0 \N \N f 0 \N 0 221661186 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N 54823 2022-08-05 09:19:54.082 2023-10-02 05:07:02.365 See cell reach mouth prove. Explain my song effect floor \N https://example.com/ 1806 \N 54823 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.601857802656 0 \N \N f 0 \N 10 63890618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437949 2024-02-25 04:36:48.557 2024-02-25 04:46:49.652 \N Language effort sport mention guess way. By down lay store race. During heart school matt https://example.com/ 21446 436935 436935.437949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2016975979752 0 \N \N f 0 \N 0 226962961 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N 437950 2024-02-25 04:38:42.526 2024-02-25 04:48:44.082 \N Report night class. Fight PM that food. Event market https://example.com/ 3409 436816 432920.436721.436816.437950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8630007096652 0 \N \N f 0 \N 0 170923765 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 441061 2024-02-27 20:33:21.151 2024-02-27 20:43:22.615 \N Always friend price benefit. Reflect seem help none truth myself r https://example.com/ 12609 441047 440422.440523.440538.440560.441047.441061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.847551500533 0 \N \N f 0 \N 0 105396168 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441677 2024-02-28 10:49:09.203 2024-02-28 10:59:10.369 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. Inte https://example.com/ 6191 441259 441247.441259.441677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83997251988657 0 \N \N f 0 \N 0 240502457 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 440562 2024-02-27 13:52:19.124 2024-02-27 14:02:20.387 \N College quality yard box similar. Response movie clearly oft https://example.com/ 13798 440548 440548.440562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.22389706782 0 \N \N f 0 \N 0 153163594 0 f f \N \N \N \N 440548 \N 0 0 \N \N f \N 437969 2024-02-25 06:15:28.87 2024-02-25 06:25:30.101 \N Su https://example.com/ 21571 435201 435201.437969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6866193006046 0 \N \N f 0 \N 0 102532673 0 f f \N \N \N \N 435201 \N 0 0 \N \N f \N 430903 2024-02-19 16:05:22.924 2024-02-19 16:15:24.484 \N Church listen our call couple rise beyond ques https://example.com/ 20756 430902 430892.430895.430898.430902.430903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3141480385853 0 \N \N f 0 \N 1 122009430 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 430904 2024-02-19 16:07:06.657 2024-02-19 16:17:08.226 \N By evening job should nature really. Cut b https://example.com/ 14037 430903 430892.430895.430898.430902.430903.430904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0842372379636 0 \N \N f 0 \N 0 112387566 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 430910 2024-02-19 16:15:33.757 2024-02-19 16:25:35.339 \N Under big evening others. Trip remain money re https://example.com/ 19852 430626 430626.430910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9454283653243 0 \N \N f 0 \N 0 200490628 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430915 2024-02-19 16:18:53.922 2024-02-19 16:28:55.47 \N Health catch towa https://example.com/ 18625 430608 430549.430568.430608.430915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.38432771545571 0 \N \N f 0 \N 0 7132329 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 441684 2024-02-28 10:56:33.654 2024-02-28 11:06:35.127 \N Ground baby describe might. P https://example.com/ 1433 441121 441087.441121.441684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4094358166017 0 \N \N f 0 \N 0 106587371 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441670 2024-02-28 10:45:15.375 2024-02-28 10:55:16.422 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper https://example.com/ 20062 441667 441611.441641.441667.441670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19967578630295 0 \N \N f 0 \N 1 68168662 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N 443279 2024-02-29 10:40:00.689 2024-02-29 10:50:02.104 \N Big time rise yours https://example.com/ 2711 443274 443274.443279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.73419148684035 0 \N \N f 0 \N 0 102990395 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 434970 2024-02-22 13:39:01.763 2024-02-22 13:49:02.735 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door po https://example.com/ 15159 434227 215973.216272.216481.216553.433750.434227.434970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.288259241404 0 \N \N f 0 \N 0 209915509 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 441601 2024-02-28 09:05:07.86 2024-02-28 09:15:09.786 Seat commercial through property new. Career audience body morning gas. Mo Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group. https://example.com/ 9261 \N 441601 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 9.82310537503782 0 \N \N f 0 \N 0 151207229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441697 2024-02-28 11:00:04.993 2024-02-28 11:00:11.579 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nMany then growth. Law become return event parent I boy. In https://example.com/ 7983 441696 441696.441697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6082611428267 0 \N \N f 0 \N 0 6827352 0 f f \N \N \N \N 441696 \N 0 0 \N \N f \N 442279 2024-02-28 16:05:52.988 2024-02-28 16:15:54.736 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nBuil https://example.com/ 19484 442258 442084.442109.442124.442138.442258.442279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7347360077063 0 \N \N f 0 \N 0 163962476 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 430908 2024-02-19 16:12:38.613 2024-02-19 16:22:40.185 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider sa https://example.com/ 18828 428658 428441.428658.430908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50318598857633 0 \N \N f 0 \N 0 127774324 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N 442258 2024-02-28 15:58:06.353 2024-02-28 16:08:08.56 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead hims https://example.com/ 14705 442138 442084.442109.442124.442138.442258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2615910949872 0 \N \N f 0 \N 1 238700601 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 430925 2024-02-19 16:23:11.055 2024-02-19 16:33:12.759 \N Boy force agency change score no job. Memory https://example.com/ 1478 430916 430770.430916.430925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.63442475662205 0 \N \N f 0 \N 0 31593155 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 444442 2024-03-01 00:12:11.77 2024-03-01 00:22:12.994 \N Plant development someone include maybe. Address return side response center. My recently some school safe music both. https://example.com/ 641 444417 444408.444417.444442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1307428602364 0 \N \N f 0 \N 0 180788781 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N 443217 2024-02-29 09:22:03.21 2024-02-29 09:32:05.446 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowled https://example.com/ 1631 443169 443169.443217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80015691761496 0 \N \N f 0 \N 0 176533312 0 f f \N \N \N \N 443169 \N 0 0 \N \N f \N 430946 2024-02-19 16:37:05.758 2024-02-19 16:47:07.226 \N Event at administrati https://example.com/ 1433 430726 430726.430946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20295268892057 0 \N \N f 0 \N 0 223574354 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 444445 2024-03-01 00:18:49.118 2024-03-01 00:28:50.9 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must m https://example.com/ 21522 442191 442191.444445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1684401697885 0 \N \N f 0 \N 0 49843174 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 444446 2024-03-01 00:20:09.175 2024-03-01 00:30:10.346 \N Dark address be fe https://example.com/ 13547 443527 443272.443527.444446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6205117675526 0 \N \N f 0 \N 0 26717526 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 430881 2024-02-19 15:48:31.53 2024-02-19 15:58:32.511 \N Community us end alone. Admit remember red stud https://example.com/ 13544 430626 430626.430881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8387475664931 0 \N \N f 0 \N 0 189502535 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430922 2024-02-19 16:22:09.105 2024-02-19 16:32:10.65 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development sudde https://example.com/ 16665 430824 430824.430922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7565836761365 0 \N \N f 0 \N 0 57939057 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 62127 2022-08-23 08:10:24.2 2023-10-02 05:27:20.572 Republican begin audience guy get expect table \N https://example.com/ 17237 \N 62127 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6646467704802 0 \N \N f 0 \N 0 136683052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430826 2024-02-19 15:09:13.217 2024-02-19 15:19:14.975 \N Wonder check lead door. Herself safe believe show assume will. Level t https://example.com/ 7119 430599 430599.430826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4538214174997 0 \N \N f 0 \N 0 222758793 0 f f \N \N \N \N 430599 \N 0 0 \N \N f \N 437877 2024-02-25 02:30:12.259 2024-02-25 02:40:13.276 \N Tend yes call look. Real feel scie https://example.com/ 21062 437875 437233.437495.437874.437875.437877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18888224975341 0 \N \N f 0 \N 0 226324213 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444421 2024-02-29 23:51:46.148 2024-03-01 00:01:48.607 \N Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where cert https://example.com/ 17316 444168 444168.444421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5306320422352 0 \N \N f 0 \N 0 135351382 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444451 2024-03-01 00:24:47.3 2024-03-01 00:34:48.591 \N Water actually point similar. Box war specific a o https://example.com/ 2342 444448 443836.443934.444448.444451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2101471704572 0 \N \N f 0 \N 0 137556392 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 430907 2024-02-19 16:12:34.765 2024-02-19 16:22:36.504 \N Back sp https://example.com/ 20597 430894 430891.430894.430907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33758241958545 0 \N \N f 0 \N 0 40962924 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N 430897 2024-02-19 16:00:04.962 2024-02-19 16:00:10.754 \N Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nTree I there avoid win knowledge impr https://example.com/ 1515 430896 430896.430897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.041513789882 0 \N \N f 0 \N 0 217534749 0 f f \N \N \N \N 430896 \N 0 0 \N \N f \N 430896 2024-02-19 16:00:04.507 2024-02-19 16:10:06.426 Enough blue provide home alone reality at \N https://example.com/ 14515 \N 430896 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.2041795286533 0 \N \N f 0 \N 1 98434779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436721 2024-02-23 23:16:26.239 2024-02-23 23:26:27.734 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy https://example.com/ 9334 432920 432920.436721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2307787781465 0 \N \N f 0 \N 3 25390498 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 443269 2024-02-29 10:29:12.67 2024-02-29 10:39:13.43 \N Before wrong success power p https://example.com/ 761 442904 442904.443269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0798060182847 0 \N \N f 0 \N 0 225400999 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 62926 2022-08-24 23:16:14.283 2023-10-02 05:31:22.125 Wear role agency. Enter back require mission \N https://example.com/ 721 \N 62926 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3286070300498 0 \N \N f 0 \N 1 92976824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444456 2024-03-01 00:41:12.112 2024-03-01 00:51:13.667 \N List professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indic https://example.com/ 18511 444419 443712.444290.444419.444456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88581039798446 0 \N \N f 0 \N 1 173814973 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 437689 2024-02-24 21:02:01.2 2024-02-24 21:12:02.902 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nThey wide job https://example.com/ 6300 437685 437276.437685.437689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9968010503007 0 \N \N f 0 \N 2 130813693 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 444468 2024-03-01 01:00:32.404 2024-03-01 01:10:33.45 \N Garden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nPlant ever Republican together picture. What nearly pattern Congress https://example.com/ 12139 444087 444087.444468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3740809045532 0 \N \N f 0 \N 0 112454512 0 f f \N \N \N \N 444087 \N 0 0 \N \N f \N 444431 2024-02-29 23:58:18.902 2024-03-01 00:08:20.614 \N Morning hundred analys https://example.com/ 19292 444116 443836.444116.444431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2796374537916 0 \N \N f 0 \N 0 149573730 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444116 2024-02-29 19:27:08.8 2024-02-29 19:37:10.505 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accep https://example.com/ 13042 443836 443836.444116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0048042874433 0 \N \N f 0 \N 1 193937036 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 441639 2024-02-28 10:17:36.357 2024-02-28 10:27:38.273 \N Affect director focus f https://example.com/ 1751 441637 441637.441639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39613392226865 0 \N \N f 0 \N 2 143902169 0 f f \N \N \N \N 441637 \N 0 0 \N \N f \N 441637 2024-02-28 10:11:25.831 2024-02-28 10:21:28.381 Too very admit general whole east. General activity prevent Mr co Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization. https://example.com/ 21212 \N 441637 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.3352154488714 0 \N \N f 0 \N 4 173214276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435111 2024-02-22 15:39:01.102 2024-02-22 15:49:02.362 Over partner wear detail fund rise. Conference require Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give. https://example.com/ 8448 \N 435111 \N \N \N \N \N \N \N \N security \N ACTIVE \N 10.8725464270169 0 \N \N f 0 \N 0 169615487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444476 2024-03-01 01:22:19.238 2024-03-01 01:32:21.078 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type https://example.com/ 18923 443528 443528.444476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9450667524322 0 \N \N f 0 \N 0 164413461 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 444477 2024-03-01 01:23:17.108 2024-03-01 01:33:18.996 \N Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nTe https://example.com/ 13903 444415 444365.444415.444477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.41502065593463 0 \N \N f 0 \N 0 66349231 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444463 2024-03-01 00:53:45.297 2024-03-01 01:03:46.758 \N Moment smile cell cold road happen cause. Give human recently series serve test other https://example.com/ 5759 444365 444365.444463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.489648456223044 0 \N \N f 0 \N 0 56428646 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 435134 2024-02-22 15:55:02.978 2024-02-22 16:05:05.157 \N Grow last away wind. Mr bill do expert there arrive https://example.com/ 9366 435046 435046.435134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3171561580202 0 \N \N f 0 \N 0 93037392 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 444448 2024-03-01 00:20:43.407 2024-03-01 00:30:44.139 \N Sense edge father camera. Region whose enough vote up. Final https://example.com/ 7818 443934 443836.443934.444448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9665860627686 0 \N \N f 0 \N 1 151838764 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444479 2024-03-01 01:24:23.242 2024-03-01 01:34:25.107 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Boa https://example.com/ 10934 444471 444471.444479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.163880649299699 0 \N \N f 0 \N 0 216229060 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N 430930 2024-02-19 16:28:20.405 2024-02-19 16:38:21.691 Enough book hope yard store together camera scene. Ago during player fi Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist. https://example.com/ 16341 \N 430930 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.4305482618752 0 \N \N f 0 \N 0 98453351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444470 2024-03-01 01:08:29.111 2024-03-01 01:18:31.237 \N Get executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice fa https://example.com/ 5794 444456 443712.444290.444419.444456.444470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.30501649676724 0 \N \N f 0 \N 0 9048580 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 443409 2024-02-29 12:47:44.886 2024-02-29 12:57:46.575 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager st https://example.com/ 18809 442084 442084.443409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.47293995412767 0 \N \N f 0 \N 0 206997578 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 444461 2024-03-01 00:52:43.369 2024-03-01 01:02:45.05 International gro Reality deal sort p https://example.com/ 19810 \N 444461 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 14.6495567522966 0 \N \N f 0 \N 0 48312022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441021 2024-02-27 20:04:06.122 2024-02-27 20:14:08.014 \N Per over execut https://example.com/ 1310 440902 440902.441021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26547789677237 0 \N \N f 0 \N 0 151688858 0 f f \N \N \N \N 440902 \N 0 0 \N \N f \N 430965 2024-02-19 16:49:34.348 2024-02-19 16:59:35.596 \N Girl someone pr https://example.com/ 20381 430633 430626.430633.430965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1673082460854 0 \N \N f 0 \N 0 79703132 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430948 2024-02-19 16:38:02.637 2024-02-19 16:48:04.632 \N Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nBuild learn name environment. Which specific old rule. Have result sell run though https://example.com/ 10611 430731 430331.430731.430948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8001738671734 0 \N \N f 0 \N 0 238940229 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 444087 2024-02-29 19:02:09.136 2024-02-29 19:12:10.248 Artist fly billion same. Go may avoid exact Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page par https://example.com/ 690 \N 444087 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.99278587338756 0 \N \N f 0 \N 1 196852309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443324 2024-02-29 11:17:55.857 2024-02-29 11:27:57.104 \N Serious stay girl enter. His investment develop https://example.com/ 1010 443225 442084.443225.443324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1631289459806 0 \N \N f 0 \N 0 241509381 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 435101 2024-02-22 15:27:52.251 2024-02-22 15:37:54.227 Measure western pretty serious directo Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nAgent huge issue positive air whom four. Buil https://example.com/ 16939 \N 435101 \N \N \N \N \N \N \N \N art \N ACTIVE \N 26.7298766803078 0 \N \N f 0 \N 0 60163852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434976 2024-02-22 13:44:51.435 2024-02-22 13:54:52.767 \N Hair gas woman next avoi https://example.com/ 21585 434807 434807.434976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2832813839796 0 \N \N f 0 \N 0 112669745 0 f f \N \N \N \N 434807 \N 0 0 \N \N f \N 444458 2024-03-01 00:44:54.617 2024-03-01 00:54:56.957 Possible late blood always bit Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would. https://example.com/ 19103 \N 444458 \N \N \N \N \N \N \N \N security \N ACTIVE \N 0.0766160846445985 0 \N \N f 0 \N 0 190085744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444454 2024-03-01 00:34:21.735 2024-03-01 00:44:23.07 Them reflect instead color. Public hour property wind step act Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn. https://example.com/ 16966 \N 444454 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.8167641096339 0 \N \N f 0 \N 0 243934617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444444 2024-03-01 00:16:26.642 2024-03-01 00:26:28.458 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week https://example.com/ 21493 444436 443712.443834.444412.444416.444436.444444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.20905479784754 0 \N \N f 0 \N 2 125947079 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 443361 2024-02-29 11:55:12.71 2024-02-29 12:05:15.191 \N Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself https://example.com/ 21493 443067 443067.443361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7143960916283 0 \N \N f 0 \N 0 159058912 0 f f \N \N \N \N 443067 \N 0 0 \N \N f \N 443406 2024-02-29 12:44:31.408 2024-02-29 12:54:33.209 \N Not find attack light everything differ https://example.com/ 13365 443274 443274.443406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4812354444387 0 \N \N f 0 \N 0 74795196 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 73336 2022-09-23 14:44:22.761 2023-10-02 09:29:20.315 Grow last away wind. Mr bill do expert there arrive arm. Lead professional we po \N https://example.com/ 16660 \N 73336 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7580989595507 0 \N \N f 0 \N 0 138729254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444473 2024-03-01 01:15:15.924 2024-03-01 01:25:16.646 \N Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial l https://example.com/ 1713 443295 443295.444473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.21866020235178 0 \N \N f 0 \N 0 214766960 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442926 2024-02-29 00:32:23.074 2024-02-29 00:42:24.916 \N Most describe tell speech without. Young lot next cell among war https://example.com/ 16145 442023 442023.442926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1470753741751 0 \N \N f 0 \N 0 194851770 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 430938 2024-02-19 16:31:40.161 2024-02-19 16:41:41.422 \N Reality front small we ind https://example.com/ 18472 430453 430453.430938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3720266426416 0 \N \N f 0 \N 0 64767065 0 f f \N \N \N \N 430453 \N 0 0 \N \N f \N 437577 2024-02-24 18:40:53.967 2024-02-24 18:50:56.115 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget https://example.com/ 15103 437569 435046.435209.435215.435427.435502.437569.437577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58423826337332 0 \N \N f 0 \N 0 204942357 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 444464 2024-03-01 00:55:18.298 2024-03-01 01:05:19.645 \N Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nFinally and may second. Middle want artist technolog https://example.com/ 11942 444285 436683.436833.436853.436884.444285.444464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0917527662523 0 \N \N f 0 \N 0 134761541 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436833 2024-02-24 02:02:34.705 2024-02-24 02:12:36.608 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nVer https://example.com/ 19394 436683 436683.436833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3786852581039 0 \N \N f 0 \N 7 140613715 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444285 2024-02-29 21:01:18.818 2024-02-29 21:11:21.113 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nJoin push remain behavior. Various song no succes https://example.com/ 738 436884 436683.436833.436853.436884.444285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6764991471419 0 \N \N f 0 \N 1 225961405 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 442739 2024-02-28 21:27:04.534 2024-02-28 21:37:05.327 \N Inside n https://example.com/ 18862 398753 395051.398753.442739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4749548176841 0 \N \N f 0 \N 0 173507014 0 f f \N \N \N \N 395051 \N 0 0 \N \N f \N 430849 2024-02-19 15:24:20.721 2024-02-19 15:34:21.885 \N Again reveal time hot kind own. Believe agreement thu https://example.com/ 16753 430840 430840.430849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4118186630039 0 \N \N f 0 \N 0 15589327 0 f f \N \N \N \N 430840 \N 0 0 \N \N f \N 436850 2024-02-24 02:27:12.446 2024-02-24 02:37:14.743 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nAlmost about me amount daughter himself. https://example.com/ 20596 436694 436669.436694.436850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9284946769579 0 \N \N f 0 \N 0 16166935 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 434992 2024-02-22 14:00:05.277 2024-02-22 14:10:07.334 Own about father b \N https://example.com/ 1310 \N 434992 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.80243525597974 0 \N \N f 0 \N 1 184519915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434996 2024-02-22 14:02:56.002 2024-02-22 14:12:57.295 \N Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most under https://example.com/ 16336 434971 434440.434723.434971.434996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8457051858539 0 \N \N f 0 \N 0 153465294 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 435005 2024-02-22 14:06:59.022 2024-02-22 14:17:00.964 \N Service source fact. Term affect people Con https://example.com/ 14376 434652 434646.434652.435005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6601095427086 0 \N \N f 0 \N 0 50759787 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 437513 2024-02-24 17:26:20.386 2024-02-24 17:36:22.183 \N Want fire once his six environ https://example.com/ 667 437508 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9480258144315 0 \N \N f 0 \N 11 231053158 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 444513 2024-03-01 02:52:32.594 2024-03-01 03:02:34.73 \N Statement could up https://example.com/ 7818 444403 444065.444403.444513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.82473374591715 0 \N \N f 0 \N 0 178403659 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N 444437 2024-03-01 00:08:06.402 2024-03-01 00:18:08.466 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late dev https://example.com/ 18114 444387 444387.444437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09452540874511 0 \N \N f 0 \N 0 60193191 0 f f \N \N \N \N 444387 \N 0 0 \N \N f \N 444325 2024-02-29 21:48:15.335 2024-02-29 21:58:16.5 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interestin https://example.com/ 20585 444320 444168.444320.444325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.001885072146 0 \N \N f 0 \N 1 100320233 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 441762 2024-02-28 11:35:39.879 2024-02-28 11:45:41.092 Seek military only heart. Side ahead exist spring. Commercial of pro Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare. https://example.com/ 12072 \N 441762 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.9871135627735 0 \N \N f 0 \N 0 229178233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437275 2024-02-24 14:36:17.571 2024-02-24 14:46:18.634 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nCareer six also speak of difference tend. Heavy may green foot tonight https://example.com/ 16351 435944 435944.437275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4006767079324 0 \N \N f 0 \N 0 235785070 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 444515 2024-03-01 02:55:40.698 2024-03-01 03:05:42.595 \N Happy strong Democrat some goal new service. Hair employee d https://example.com/ 21451 444450 444450.444515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27271112791129 0 \N \N f 0 \N 0 11499637 0 f f \N \N \N \N 444450 \N 0 0 \N \N f \N 444516 2024-03-01 02:58:04.66 2024-03-01 03:08:06.532 \N Born value hundred medical loss. Kid white check draw ch https://example.com/ 12606 444433 444433.444516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.15597324710094 0 \N \N f 0 \N 0 127272149 0 f f \N \N \N \N 444433 \N 0 0 \N \N f \N 437807 2024-02-25 00:45:55.464 2024-02-25 00:55:57.219 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Feder https://example.com/ 1769 437769 437769.437807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.61762070895271 0 \N \N f 0 \N 1 44934195 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 444521 2024-03-01 03:13:36.262 2024-03-01 03:23:37.67 \N They wide https://example.com/ 5661 444168 444168.444521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.22255768452911 0 \N \N f 0 \N 0 53263474 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 436777 2024-02-24 00:23:39.496 2024-02-24 18:56:05.648 Administratio Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nLarge directi https://example.com/ 798 \N 436777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1553651509427 0 \N \N f 0 \N 4 133928785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437363 2024-02-24 15:24:32.906 2024-02-24 15:34:33.963 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step https://example.com/ 20251 437233 437233.437363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.57623718077655 0 \N \N f 0 \N 0 30697617 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444520 2024-03-01 03:13:24.146 2024-03-01 03:23:25.644 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machi https://example.com/ 3342 443712 443712.444520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0906908413169 0 \N \N f 0 \N 0 7985197 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444286 2024-02-29 21:01:21.001 2024-02-29 21:11:23.129 History prepare everyone role everybody son. Meet discuss Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready. https://example.com/ 7916 \N 444286 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 21.5275653834467 0 \N \N f 0 \N 1 4536031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434956 2024-02-22 13:28:22.079 2024-02-22 13:38:24.031 \N Seat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nFly teach beat. Instead section worker money argue activity bar training. Wall requir https://example.com/ 20509 434440 434440.434956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0732573586004 0 \N \N f 0 \N 0 194358644 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 444400 2024-02-29 23:12:16.622 2024-02-29 23:22:17.567 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many t https://example.com/ 16059 444364 444236.444364.444400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.17422064624268 0 \N \N f 0 \N 0 103057017 0 f f \N \N \N \N 444236 \N 0 0 \N \N f \N 444136 2024-02-29 19:39:20.724 2024-02-29 19:49:21.991 \N Any note pick America https://example.com/ 21589 444097 444097.444136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6008453491896 0 \N \N f 0 \N 0 189933510 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444364 2024-02-29 22:26:16.764 2024-02-29 22:36:18.124 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show w https://example.com/ 10469 444236 444236.444364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67388269265262 0 \N \N f 0 \N 1 13041850 0 f f \N \N \N \N 444236 \N 0 0 \N \N f \N 437399 2024-02-24 15:58:18.253 2024-02-24 16:08:20.047 \N Political offic https://example.com/ 2431 437392 437044.437337.437356.437392.437399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58921535985404 0 \N \N f 0 \N 0 192834456 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437356 2024-02-24 15:19:31.757 2024-02-24 15:29:32.993 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical major https://example.com/ 13216 437337 437044.437337.437356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26092480330681 0 \N \N f 0 \N 2 32862014 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 444484 2024-03-01 01:31:27.833 2024-03-01 01:41:29.189 \N Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should y https://example.com/ 20837 444471 444471.444484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.019964116442 0 \N \N f 0 \N 0 190606338 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N 444490 2024-03-01 01:41:07.249 2024-03-01 01:51:09.057 \N Reality front small w https://example.com/ 18529 444365 444365.444490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33528313983955 0 \N \N f 0 \N 0 108703514 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 435140 2024-02-22 15:58:29.15 2024-02-22 16:08:30.801 Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both. https://example.com/ 6537 \N 435140 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7640049672289 0 \N \N f 0 \N 1 81567937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430955 2024-02-19 16:41:19.819 2024-02-19 16:51:21.432 \N Throughout which https://example.com/ 12218 430949 430949.430955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0777350043336 0 \N \N f 0 \N 4 60487617 0 f f \N \N \N \N 430949 \N 0 0 \N \N f \N 435186 2024-02-22 16:27:40.934 2024-02-22 16:37:42.841 \N Support line change go m https://example.com/ 1354 192644 192644.435186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8991271567499 0 \N \N f 0 \N 0 246776587 0 f f \N \N \N \N 192644 \N 0 0 \N \N f \N 437479 2024-02-24 17:05:55.2 2024-02-24 17:15:56.727 \N Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nEveryone mention lead pretty protect quite re https://example.com/ 21233 437371 437301.437371.437479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3152620454157 0 \N \N f 0 \N 2 6945113 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 430894 2024-02-19 15:59:15.194 2024-02-19 16:09:15.95 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive hu https://example.com/ 16193 430891 430891.430894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4906500124261 0 \N \N f 0 \N 1 68322061 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N 437564 2024-02-24 18:20:56.95 2024-02-24 18:30:58.221 \N Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural https://example.com/ 18274 437479 437301.437371.437479.437564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63729612679703 0 \N \N f 0 \N 1 98861865 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 430954 2024-02-19 16:41:03.906 2024-02-19 16:51:05.32 Never able over relate dark up dinner. Same daughter everyone improve what Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president. https://example.com/ 16954 \N 430954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.84000514021011 0 \N \N f 0 \N 0 218200277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444433 2024-03-01 00:00:26.876 2024-03-01 00:10:27.82 Industry great onto trial wind. Rule radio trial she its understand. Soon Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical val https://example.com/ 19332 \N 444433 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 21.8944982212608 0 \N \N f 0 \N 1 144360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444457 2024-03-01 00:41:27.985 2024-03-01 00:51:29.274 Ten answer natural star research black system three. Mention wish choose. W Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Bas https://example.com/ 9820 \N 444457 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3476088676702 0 \N \N f 0 \N 0 58335591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430969 2024-02-19 16:51:56.842 2024-02-19 17:01:58.38 \N Say this find practice. Small exactly explain https://example.com/ 16387 430417 429764.430417.430969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2587845350388 0 \N \N f 0 \N 0 135078200 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 51911 2022-07-30 22:57:13.52 2023-10-02 05:00:01.386 Skin summer developmen Myself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid. https://example.com/ 17094 \N 51911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.6751535193001 0 \N \N f 0 \N 4 119802746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430947 2024-02-19 16:37:46.554 2024-02-19 16:47:47.352 \N Health reduce performance body similar light wear this. Training purpose sugge https://example.com/ 18449 430857 430726.430729.430732.430748.430853.430857.430947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.97088216918637 0 \N \N f 0 \N 0 198024803 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 444501 2024-03-01 02:26:38.904 2024-03-01 02:36:40.201 \N How never https://example.com/ 15103 443598 443593.443598.444501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7510756164056 0 \N \N f 0 \N 0 8906379 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 441757 2024-02-28 11:33:54.735 2024-02-28 11:43:56.662 \N Heavy spring happy city start soun https://example.com/ 746 441753 441753.441757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.49306502501464 0 \N \N f 0 \N 0 188143970 0 f f \N \N \N \N 441753 \N 0 0 \N \N f \N 437585 2024-02-24 18:44:48.783 2024-02-24 18:54:49.584 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier pos https://example.com/ 16808 437564 437301.437371.437479.437564.437585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.41835478027269 0 \N \N f 0 \N 0 98280106 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 444502 2024-03-01 02:28:38.729 2024-03-01 02:38:39.933 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nCongress up environment. https://example.com/ 8569 444471 444471.444502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2474256722663 0 \N \N f 0 \N 0 164948158 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N 432280 2024-02-20 09:35:16.937 2024-02-20 09:45:18.013 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern bre https://example.com/ 2525 432203 432203.432280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9727716585593 0 \N \N f 0 \N 1 181272150 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 444281 2024-02-29 21:00:04.851 2024-02-29 21:10:07.25 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nRadio have every concern. https://example.com/ 18583 443712 443712.444281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49472850686275 0 \N \N f 0 \N 0 171209174 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 442352 2024-02-28 16:36:59.044 2024-02-28 16:47:00.99 Wrong spring according trial federal alth Product analysis affect certainly happy. Plan cup case list short. Dream fin https://example.com/ 18208 \N 442352 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.1571010955883 0 \N \N f 0 \N 0 120948038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430834 2024-02-19 15:12:28.685 2024-02-19 15:22:30.394 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nMyself measure first such real consumer. Only for author agree position couple. Remain law https://example.com/ 1105 430567 430330.430561.430567.430834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5326737160852 0 \N \N f 0 \N 1 210004402 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 444443 2024-03-01 00:13:17.277 2024-03-01 00:23:18.493 Different dog examp Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 18717 \N 444443 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.97909527645605 0 \N \N f 0 \N 0 11898796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444303 2024-02-29 21:15:59.062 2024-02-29 21:26:01.643 \N Be right whatever former various billion. T https://example.com/ 12289 444168 444168.444303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26256791932634 0 \N \N f 0 \N 0 45834874 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 430971 2024-02-19 16:54:16.788 2024-02-19 17:04:18.703 \N Born value hundred medical loss. K https://example.com/ 11873 430605 413007.430173.430605.430971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87153541152702 0 \N \N f 0 \N 0 57640569 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 437620 2024-02-24 19:19:05.238 2024-02-24 19:29:06.787 \N Glass her remember exist during. Blue prevent https://example.com/ 20059 437561 437233.437561.437620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.96889536236457 0 \N \N f 0 \N 0 230412794 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437561 2024-02-24 18:11:44.483 2024-02-24 18:21:46.492 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Co https://example.com/ 16424 437233 437233.437561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.82551763472829 0 \N \N f 0 \N 1 53856853 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 430994 2024-02-19 17:13:23.941 2024-02-19 17:23:25.619 Then political wait so remain throw anything. Produce voice three contain di Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. So https://example.com/ 960 \N 430994 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.45079975390693 0 \N \N f 0 \N 0 54753613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437411 2024-02-24 16:02:31.939 2024-02-24 16:12:33.56 \N Popular entire medical office can. Those begin for own offer relations https://example.com/ 18557 437408 437408.437411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.03538488438502 0 \N \N f 0 \N 6 99021200 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 437417 2024-02-24 16:09:25.539 2024-02-24 16:19:26.843 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nOff should democratic notice old app https://example.com/ 21271 437411 437408.437411.437417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9796230484492 0 \N \N f 0 \N 3 96050612 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 437686 2024-02-24 20:59:39.13 2024-02-24 21:09:40.715 \N To reduce each wall they raise travel yourself. Part play foot here parent year. Whi https://example.com/ 21040 437583 437583.437686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4449040467566 0 \N \N f 0 \N 1 60435588 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 437652 2024-02-24 20:17:55.401 2024-02-24 20:27:56.661 \N Wait forward with whose only card brothe https://example.com/ 1493 437630 437630.437652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52980268126317 0 \N \N f 0 \N 0 41831821 0 f f \N \N \N \N 437630 \N 0 0 \N \N f \N 52097 2022-07-31 10:42:44.705 2023-10-02 05:00:19.281 Never whose degree. Investment easy region our rece \N https://example.com/ 14705 \N 52097 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5713376650292 0 \N \N f 0 \N 1 215621084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 76480 2022-10-03 06:10:11.085 2022-10-03 06:10:11.085 Each any growth human seek or expert data. Sit financial know feeling one exis \N https://example.com/ 987 \N 76480 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1719986607473 0 \N \N f 0 \N 2 154971163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437790 2024-02-25 00:24:26.519 2024-02-25 00:34:28.058 \N Standard choose white. Yard would college him pass. Eye in education both. Together never smile suggest https://example.com/ 9348 437302 437218.437287.437302.437790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.658968404888 0 \N \N f 0 \N 1 96586631 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 430977 2024-02-19 16:58:33.356 2024-02-19 17:08:34.306 \N Family material upon Democrat. The remain appear information degree. Same employee image collection customer https://example.com/ 16808 430851 430726.430729.430732.430748.430851.430977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7177190910605 0 \N \N f 0 \N 0 104048983 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 436702 2024-02-23 22:10:00.812 2024-02-23 22:20:04.579 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. https://example.com/ 9356 436688 436549.436658.436661.436674.436688.436702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5281588237093 0 \N \N f 0 \N 1 106205039 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 1404 2021-08-25 21:33:18.272 2023-10-01 23:49:16.772 \N Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nPrevent machine source white and. Fact together father find appea https://example.com/ 17011 1357 1357.1404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0248029202705879 0 \N \N f 0 \N 4 12365723 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 431015 2024-02-19 17:21:42.326 2024-02-19 17:31:43.587 \N Stage can fish building senior https://example.com/ 20299 428276 428276.431015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.17363096166373 0 \N \N f 0 \N 0 203061112 0 f f \N \N \N \N 428276 \N 0 0 \N \N f \N 444358 2024-02-29 22:20:58.091 2024-02-29 22:30:59.629 Morning hundred analysis understand admit prevent. Time bit think as Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nHistory prepar https://example.com/ 16230 \N 444358 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.6285552828056 0 \N \N f 0 \N 1 128883010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444517 2024-03-01 03:00:38.264 2024-03-01 03:10:40.566 \N Film without deal production let letter. I product step foll https://example.com/ 13574 444414 444414.444517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48884032566062 0 \N \N f 0 \N 0 194062310 0 f f \N \N \N \N 444414 \N 0 0 \N \N f \N 431062 2024-02-19 17:25:12.377 2024-02-19 17:35:13.367 \N Finish only air provide. Wife https://example.com/ 14255 417338 417338.431062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7598758208809 0 \N \N f 0 \N 0 11358692 0 f f \N \N \N \N 417338 \N 0 0 \N \N f \N 436674 2024-02-23 21:34:40.639 2024-02-23 21:44:42.096 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole pro https://example.com/ 1549 436661 436549.436658.436661.436674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.5064595319016 0 \N \N f 0 \N 3 47896555 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 1406 2021-08-25 21:55:41.069 2023-10-01 23:49:16.782 \N South both increase democratic economic https://example.com/ 16124 1404 1357.1404.1406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51096957680085 0 \N \N f 0 \N 0 4530617 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 436661 2024-02-23 21:21:11.427 2024-02-23 21:31:13.027 \N Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nRepublican part letter tonight. Stay amou https://example.com/ 20509 436658 436549.436658.436661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.76928009929344 0 \N \N f 0 \N 4 124535791 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 431078 2024-02-19 17:31:35.131 2024-02-19 17:41:36.665 \N Different dog example. Themselves u https://example.com/ 16542 429559 429559.431078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7338890764346 0 \N \N f 0 \N 0 100288978 0 f f \N \N \N \N 429559 \N 0 0 \N \N f \N 436549 2024-02-23 18:36:45.907 2024-02-23 18:46:48.125 Stuff this how behind total his left. Know school produce together light. Blo Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into ol https://example.com/ 4177 \N 436549 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 9.2222666281922 0 \N \N f 0 \N 8 56849403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430851 2024-02-19 15:25:39.396 2024-02-19 15:35:40.815 \N Different dog example. Themselves up or perhaps. Create election newspaper strategy probably https://example.com/ 6164 430748 430726.430729.430732.430748.430851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.96606994406492 0 \N \N f 0 \N 1 89154276 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 431105 2024-02-19 17:40:25.69 2024-02-19 17:50:27.044 \N Decade activity affect another https://example.com/ 12261 413462 413462.431105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6907246834306 0 \N \N f 0 \N 0 215028455 0 f f \N \N \N \N 413462 \N 0 0 \N \N f \N 431107 2024-02-19 17:40:31.208 2024-02-19 17:50:33.091 \N Than budget time gas choice op https://example.com/ 11866 413332 413332.431107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6770079920437 0 \N \N f 0 \N 0 211851999 0 f f \N \N \N \N 413332 \N 0 0 \N \N f \N 436029 2024-02-23 11:00:25.832 2024-02-23 11:10:27.247 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nMaterial arm https://example.com/ 19031 436028 436028.436029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3034201128865 0 \N \N f 0 \N 22 165987934 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437598 2024-02-24 18:58:54.037 2024-02-24 19:08:56.283 \N Technology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region https://example.com/ 13042 437593 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574.437593.437598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5177198311267 0 \N \N f 0 \N 1 114868777 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 444505 2024-03-01 02:31:11.959 2024-03-01 02:41:14.324 \N Movie teacher to only my https://example.com/ 20502 443837 443268.443837.444505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8845610314919 0 \N \N f 0 \N 0 223256774 0 f f \N \N \N \N 443268 \N 0 0 \N \N f \N 437293 2024-02-24 14:44:34.099 2024-02-24 14:54:35.144 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Sud https://example.com/ 18380 437292 436752.437184.437271.437292.437293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9415799719314 0 \N \N f 0 \N 37 120191478 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 444378 2024-02-29 22:50:19.517 2024-02-29 23:01:20.394 \N Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Speci https://example.com/ 12951 444346 443836.444346.444378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5791343485505 0 \N \N f 0 \N 2 39452228 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444011 2024-02-29 18:17:03.618 2024-02-29 18:27:05.497 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nCollection friend offer involve partner sense policy election. Decade the within other. https://example.com/ 14074 443712 443712.444011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.531650717996 0 \N \N f 0 \N 1 247268000 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444347 2024-02-29 22:10:46.431 2024-02-29 22:20:47.888 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no t https://example.com/ 1394 443799 443799.444347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.23014089213294 0 \N \N f 0 \N 0 229207029 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 1408 2021-08-25 22:03:49.081 2023-10-01 23:49:16.8 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite https://example.com/ 13406 1389 1357.1389.1408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1943472779951 0 \N \N f 0 \N 0 109818123 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 436042 2024-02-23 11:23:19.34 2024-02-23 11:33:20.832 \N Affect key her. Development create daughter role enough. Instead education may political https://example.com/ 712 436028 436028.436042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2595755568413 0 \N \N f 0 \N 0 224636355 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 442899 2024-02-28 23:53:39.472 2024-02-29 00:03:40.092 \N Best choice ma https://example.com/ 19126 442859 442859.442899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6601897667055 0 \N \N f 0 \N 1 178881878 0 f f \N \N \N \N 442859 \N 0 0 \N \N f \N 437078 2024-02-24 12:11:29.15 2024-02-24 12:21:29.804 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when stree https://example.com/ 21555 437044 437044.437078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9527074653601 0 \N \N f 0 \N 4 25532190 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437361 2024-02-24 15:23:03.515 2024-02-24 15:33:05.744 \N Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. https://example.com/ 10063 437360 437233.437270.437311.437319.437348.437352.437360.437361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9253620719505 0 \N \N f 0 \N 1 205560318 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444532 2024-03-01 03:33:19.861 2024-03-01 03:43:20.584 \N Look surface admit attorney affect reduce necessary. Cat https://example.com/ 649 444506 444506.444532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7715385241252 0 \N \N f 0 \N 1 34004124 0 f f \N \N \N \N 444506 \N 0 0 \N \N f \N 437707 2024-02-24 21:41:39.302 2024-02-24 21:51:40.534 \N Product analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional cla https://example.com/ 18230 437619 437233.437512.437619.437707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.394017734978 0 \N \N f 0 \N 2 83879135 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444535 2024-03-01 03:39:04.588 2024-03-01 03:49:05.694 \N Leg maintain action material little field. Difference realize phone exist. Eith https://example.com/ 14169 444526 444526.444535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0211302318926 0 \N \N f 0 \N 0 224290927 0 f f \N \N \N \N 444526 \N 0 0 \N \N f \N 437352 2024-02-24 15:17:39.825 2024-02-24 15:27:41.375 \N Rich account wrong customer want amount. Sys https://example.com/ 17172 437348 437233.437270.437311.437319.437348.437352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9020176111281 0 \N \N f 0 \N 3 41977616 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437683 2024-02-24 20:58:21.87 2024-02-24 21:08:24.088 \N Still powe https://example.com/ 21064 437611 437611.437683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8590071472077 0 \N \N f 0 \N 0 23819948 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 437495 2024-02-24 17:15:10.316 2024-02-24 17:25:12.169 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue televi https://example.com/ 18769 437233 437233.437495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6855099840802 0 \N \N f 0 \N 6 189389664 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437319 2024-02-24 14:57:35.329 2024-02-24 15:07:37.077 \N Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pic https://example.com/ 20110 437311 437233.437270.437311.437319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.37710141533535 0 \N \N f 0 \N 5 55380376 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437270 2024-02-24 14:34:00.466 2024-02-24 14:44:04.106 \N Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Alth https://example.com/ 3709 437233 437233.437270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9547047714325 0 \N \N f 0 \N 7 56430471 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437311 2024-02-24 14:50:53.05 2024-02-24 15:00:54.24 \N Expert kind conference provide. Structure risk board professional. Hote https://example.com/ 14080 437270 437233.437270.437311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.63944587325735 0 \N \N f 0 \N 6 235885573 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444527 2024-03-01 03:26:00.067 2024-03-01 03:36:01.226 \N Special thought day cup hard central. Situation attention national media draw. Represent yes eve https://example.com/ 5725 444286 444286.444527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6424420200298 0 \N \N f 0 \N 0 94118265 0 f f \N \N \N \N 444286 \N 0 0 \N \N f \N 444544 2024-03-01 03:59:29.3 2024-03-01 04:09:31.267 \N Pattern someone notice power fly. https://example.com/ 6700 443836 443836.444544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.46742176375668 0 \N \N f 0 \N 0 123661883 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 438607 2024-02-25 20:03:59.911 2024-02-25 20:14:01.398 Live music official including police after in Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action l https://example.com/ 21249 \N 438607 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 0.54958295037288 0 \N \N f 0 \N 3 150612897 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430987 2024-02-19 17:03:37.286 2024-02-19 17:13:38.869 \N Out quite https://example.com/ 14503 430771 430771.430987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27513148297971 0 \N \N f 0 \N 0 240625815 0 f f \N \N \N \N 430771 \N 0 0 \N \N f \N 444531 2024-03-01 03:31:23.436 2024-03-01 03:41:25.24 \N Simply even growth change government https://example.com/ 1124 443274 443274.444531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8679690169587 0 \N \N f 0 \N 0 221229530 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 434279 2024-02-21 20:48:01.786 2024-02-21 20:58:03.078 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind https://example.com/ 861 433816 433816.434279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2288005397711 0 \N \N f 0 \N 0 104054755 0 f f \N \N \N \N 433816 \N 0 0 \N \N f \N 444343 2024-02-29 22:07:50.648 2024-02-29 22:17:51.991 \N Response finally https://example.com/ 13143 443973 443919.443973.444343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29231237456527 0 \N \N f 0 \N 0 178445036 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444352 2024-02-29 22:16:00.74 2024-02-29 22:26:01.958 \N Provide red https://example.com/ 1836 240894 239231.239323.239328.240894.444352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6942816649957 0 \N \N f 0 \N 0 18349031 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N 444368 2024-02-29 22:33:40.736 2024-02-29 22:43:42.368 \N Policy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce eve https://example.com/ 18745 444358 444358.444368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7487264889215 0 \N \N f 0 \N 0 118904386 0 f f \N \N \N \N 444358 \N 0 0 \N \N f \N 437711 2024-02-24 21:45:43.723 2024-02-24 21:55:46.244 \N Debate property life amount writer. An https://example.com/ 6765 437403 437403.437711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5990903275093 0 \N \N f 0 \N 0 239582106 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N 442333 2024-02-28 16:29:21.064 2024-02-28 16:39:22.857 \N Chance near song measure https://example.com/ 14404 442195 441600.442044.442195.442333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.38683037249551 0 \N \N f 0 \N 1 197096655 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N 436556 2024-02-23 18:48:43.172 2024-02-23 18:58:44.457 Value have anyone crime professional. Close or pass yeah peace Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly. https://example.com/ 5195 \N 436556 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 5.12475840638121 0 \N \N f 0 \N 9 39502349 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444555 2024-03-01 04:34:42.554 2024-03-01 04:44:44.807 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nWhite have loss parent whole statement. Find couple next relationsh https://example.com/ 21342 444552 444522.444552.444555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.283100836893 0 \N \N f 0 \N 0 33987763 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N 444550 2024-03-01 04:16:33.982 2024-03-01 04:26:35.173 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech e https://example.com/ 20299 443836 443836.444550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2920732291707 0 \N \N f 0 \N 0 85560190 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444306 2024-02-29 21:17:33.751 2024-02-29 21:27:35.671 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nBetween remember watch image save win determine. Each reduce usually certainly. https://example.com/ 15075 443836 443836.444306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8522251336424 0 \N \N f 0 \N 0 228723609 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444546 2024-03-01 04:05:54.646 2024-03-01 04:15:56.014 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign mo https://example.com/ 19770 444114 444114.444546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2736068350686 0 \N \N f 0 \N 0 35746085 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 441880 2024-02-28 13:03:40.159 2024-02-28 13:13:41.608 \N Author tra https://example.com/ 10398 441859 441749.441859.441880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1943753410702 0 \N \N f 0 \N 0 199326371 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 437181 2024-02-24 13:32:23.142 2024-02-24 13:42:24.165 Speech radio kind know. Can travel Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue. https://example.com/ 1985 \N 437181 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.3036251461134 0 \N \N f 0 \N 4 175295593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444559 2024-03-01 04:42:59.126 2024-03-01 04:53:00.291 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult rai https://example.com/ 19352 444173 444173.444559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19699058111681 0 \N \N f 0 \N 0 53452477 0 f f \N \N \N \N 444173 \N 0 0 \N \N f \N 444539 2024-03-01 03:52:45.246 2024-03-01 04:02:47.062 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly s https://example.com/ 27 444003 443150.444003.444539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1258006318599 0 \N \N f 0 \N 0 133703723 0 f f \N \N \N \N 443150 \N 0 0 \N \N f \N 444565 2024-03-01 04:56:32.947 2024-03-01 05:06:34.761 \N Bad half lea https://example.com/ 18817 444247 444168.444247.444565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4765464461938 0 \N \N f 0 \N 0 181372334 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444543 2024-03-01 03:58:43.095 2024-03-01 04:08:45.244 \N Common loss oil be. Wrong water cover yet edge https://example.com/ 21067 444365 444365.444543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9529783899474 0 \N \N f 0 \N 0 229180739 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 437612 2024-02-24 19:12:38.754 2024-02-24 19:22:40.156 Garden serve these speak manage Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should https://example.com/ 2652 \N 437612 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 14.8189401085102 0 \N \N f 0 \N 0 148856058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436926 2024-02-24 05:33:07.965 2024-02-24 05:43:09.375 Force job radio law. Maybe soldier soldier. Mode Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nStrategy way low soldier. Thank think crime. Kind page begin news thr https://example.com/ 20481 \N 436926 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.5099182018982 0 \N \N f 0 \N 4 19927642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439315 2024-02-26 13:42:04.062 2024-02-26 13:52:05.678 Human since term seek Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution https://example.com/ 749 \N 439315 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 12.8583254670665 0 \N \N f 0 \N 16 213301022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442707 2024-02-28 21:07:20.294 2024-02-28 21:17:21.691 \N Remember before box of open. Always region baby actually image a https://example.com/ 1173 442541 442084.442541.442707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.59470532965887 0 \N \N f 0 \N 0 68968903 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437819 2024-02-25 00:59:20.484 2024-02-25 01:09:21.938 \N Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simpl https://example.com/ 19462 437723 437723.437819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5133398944373 0 \N \N f 0 \N 0 3096 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444511 2024-03-01 02:51:56.991 2024-03-01 03:01:58.286 \N Billion very news personal develop career rate. H https://example.com/ 18945 444449 444449.444511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0965921648857 0 \N \N f 0 \N 0 222729716 0 f f \N \N \N \N 444449 \N 0 0 \N \N f \N 430988 2024-02-19 17:04:21.065 2024-02-19 17:14:23.139 \N Company save finally water. Agree choice until mean exactly. https://example.com/ 1135 392178 392178.430988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1315117377101 0 \N \N f 0 \N 0 94318406 0 f f \N \N \N \N 392178 \N 0 0 \N \N f \N 437722 2024-02-24 22:09:47.573 2024-02-24 22:19:50.406 \N Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nProgram want yeah color. Decade your peace https://example.com/ 20201 437713 437670.437713.437722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1756788523124 0 \N \N f 0 \N 0 244215492 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 438009 2024-02-25 08:12:57.281 2024-02-25 08:22:58.98 \N Person pa https://example.com/ 18363 392677 392486.392677.438009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7344288989255 0 \N \N f 0 \N 0 77288343 0 f f \N \N \N \N 392486 \N 0 0 \N \N f \N 435721 2024-02-23 00:51:45.027 2024-02-23 01:01:46.181 Area just subject pretty. Three em Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data. https://example.com/ 13378 \N 435721 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 18.6559028867765 0 \N \N f 0 \N 0 207932464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436098 2024-02-23 12:28:06.609 2024-02-23 12:38:07.432 \N Successful power down must nex https://example.com/ 19668 436081 436081.436098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0929980093755 0 \N \N f 0 \N 0 40630468 0 f f \N \N \N \N 436081 \N 0 0 \N \N f \N 438003 2024-02-25 08:00:05.042 2024-02-25 08:00:10.34 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nGive business wind base ma https://example.com/ 18618 438002 438002.438003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6878464880236 0 \N \N f 0 \N 0 34666251 0 f f \N \N \N \N 438002 \N 0 0 \N \N f \N 436110 2024-02-23 12:40:32.42 2024-02-23 12:50:33.275 Physical fast give music base. Gun body Individual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer. https://example.com/ 12277 \N 436110 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.2200739509129 0 \N \N f 0 \N 1 24195627 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436119 2024-02-23 12:46:17.254 2024-02-23 12:56:17.967 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research ever https://example.com/ 762 434441 434441.436119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5976110545123 0 \N \N f 0 \N 0 52216072 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 2014 2021-09-12 17:30:35.753 2023-10-01 23:51:03.57 Center stand Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection requir https://example.com/ 641 \N 2014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.51444944959091 0 \N \N f 0 \N 9 146570026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436104 2024-02-23 12:35:09.19 2024-02-23 12:45:12.153 \N Price countr https://example.com/ 20187 436100 436028.436100.436104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9490092099078 0 \N \N f 0 \N 0 76454254 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 442309 2024-02-28 16:18:16.802 2024-02-28 16:28:18.872 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Cl https://example.com/ 21398 442281 442281.442309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02753346353637 0 \N \N f 0 \N 0 38098688 0 f f \N \N \N \N 442281 \N 0 0 \N \N f \N 441848 2024-02-28 12:41:04.984 2024-02-28 12:51:06.46 \N Plant ever Republican together pi https://example.com/ 1090 441761 441761.441848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.3619042077212 0 \N \N f 0 \N 0 223734507 0 f f \N \N \N \N 441761 \N 0 0 \N \N f \N 442943 2024-02-29 00:55:36.977 2024-02-29 01:05:38.364 \N Exist near ago home. Continue compare general mouth just firm for. Y https://example.com/ 21036 441560 441560.442943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6523785422497 0 \N \N f 0 \N 0 169484761 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441527 2024-02-28 07:30:07.794 2024-02-28 07:40:09.293 \N Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Ne https://example.com/ 6137 440797 440797.441527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3022927417289 0 \N \N f 0 \N 0 212508547 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N 441470 2024-02-28 04:58:24.669 2024-02-28 05:08:25.77 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper h https://example.com/ 5865 441436 441436.441470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8139221128193 0 \N \N f 0 \N 1 22171722 0 f f \N \N \N \N 441436 \N 0 0 \N \N f \N 441837 2024-02-28 12:35:52.071 2024-02-28 12:45:53.89 \N Range laugh th https://example.com/ 2583 441823 441695.441823.441837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0342899964228 0 \N \N f 0 \N 3 234300516 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 444117 2024-02-29 19:28:24.605 2024-02-29 19:38:26.81 \N Fish environmental factor popular series local. Rea https://example.com/ 15843 443867 443867.444117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.131378870637 0 \N \N f 0 \N 2 240303978 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N 2019 2021-09-12 17:41:16.305 2023-10-01 23:51:03.6 \N Should doctor pressure maybe six fight. Ma https://example.com/ 640 2011 2002.2008.2011.2019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26506886615585 0 \N \N f 0 \N 1 170899187 0 f f \N \N \N \N 2002 \N 0 0 \N \N f \N 444549 2024-03-01 04:12:09.582 2024-03-01 04:22:10.997 \N Apply president organization risk school prevent baby. Step trial https://example.com/ 14503 442710 442710.444549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4200172183449 0 \N \N f 0 \N 0 92108731 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 444529 2024-03-01 03:29:41.957 2024-03-01 03:39:42.991 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nThen voice gun. Might beautiful recognize a https://example.com/ 17166 443197 443197.444529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9372854876379 0 \N \N f 0 \N 0 71557564 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 444551 2024-03-01 04:19:57.486 2024-03-01 04:29:59.387 \N Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit bo https://example.com/ 13198 444447 444408.444447.444551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.251406102136 0 \N \N f 0 \N 0 154230648 0 f f \N \N \N \N 444408 \N 0 0 \N \N f \N 444556 2024-03-01 04:36:38.828 2024-03-01 04:36:44.37 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language lette https://example.com/ 15052 444538 1620.444538.444556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.207306616544685 0 \N \N f 0 \N 0 62771546 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N 442695 2024-02-28 20:50:39.28 2024-02-28 21:00:40.884 \N Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work s https://example.com/ 1145 441285 440984.441073.441195.441285.442695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4159148288445 0 \N \N f 0 \N 0 24746312 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N 444537 2024-03-01 03:47:45.2 2024-03-01 03:57:46.903 Range laugh thousand step. Them television final ou Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV. https://example.com/ 4027 \N 444537 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.5849794893994 0 \N \N f 0 \N 1 21846925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431068 2024-02-19 17:28:06.125 2024-02-19 17:38:07.934 \N Skill government the life relationship bad. Statement character spring simple https://example.com/ 2757 431004 430331.431004.431068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69455122715943 0 \N \N f 0 \N 0 143828825 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 444574 2024-03-01 05:17:33.109 2024-03-01 05:27:35.234 \N Admit TV soon machine word futu https://example.com/ 12562 214296 214244.214296.444574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2153880069242 0 \N \N f 0 \N 0 103892785 0 f f \N \N \N \N 214244 \N 0 0 \N \N f \N 78008 2022-10-06 10:56:59.713 2022-10-06 10:56:59.713 Statement could up son I. Range book politics sign I whatever \N https://example.com/ 623 \N 78008 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8419225814184 0 \N \N f 0 \N 1 41811912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444231 2024-02-29 20:35:26.291 2024-02-29 20:45:27.525 \N Hotel black matter recently idea particular. Manager across all nation meet work so https://example.com/ 19034 443368 442904.443352.443368.444231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6236241355555 0 \N \N f 0 \N 0 127948471 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 437978 2024-02-25 06:48:49.063 2024-02-25 06:58:50.349 \N Build t https://example.com/ 5646 437872 437769.437872.437978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1253666418706 0 \N \N f 0 \N 0 118026722 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 444350 2024-02-29 22:14:29.809 2024-02-29 22:24:31.102 \N Call system shake up person. Project anythin https://example.com/ 1310 442899 442859.442899.444350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6624602283512 0 \N \N f 0 \N 0 5910161 0 f f \N \N \N \N 442859 \N 0 0 \N \N f \N 430996 2024-02-19 17:15:57.301 2024-02-19 17:25:58.725 Moment hundred skin trip hour hope computer cell. Old pretty ne Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal. https://example.com/ 1751 \N 430996 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.50049816957829 0 \N \N f 0 \N 0 237923776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444355 2024-02-29 22:19:37.116 2024-02-29 22:29:38.126 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother clai https://example.com/ 2000 444015 444015.444355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12687301124843 0 \N \N f 0 \N 0 210747878 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444536 2024-03-01 03:40:04.87 2024-03-01 03:50:07.048 \N Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several not https://example.com/ 726 444532 444506.444532.444536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.20725613298 0 \N \N f 0 \N 0 44160880 0 f f \N \N \N \N 444506 \N 0 0 \N \N f \N 437988 2024-02-25 07:04:43.656 2024-02-25 07:14:44.9 \N Past hospital she war. Firm spring g https://example.com/ 20504 437828 437828.437988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27212356235225 0 \N \N f 0 \N 0 193864284 0 f f \N \N \N \N 437828 \N 0 0 \N \N f \N 430934 2024-02-19 16:29:44.53 2024-02-19 16:39:45.494 Couple writer life commercial art. Medical bank mind place popula Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once. https://example.com/ 5003 \N 430934 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2341620431651 0 \N \N f 0 \N 2 186803249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431240 2024-02-19 18:18:05.971 2024-02-19 18:28:07.532 \N Why long up fly difficult natu https://example.com/ 21344 394884 394884.431240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.19735951179214 0 \N \N f 0 \N 0 49539542 0 f f \N \N \N \N 394884 \N 0 0 \N \N f \N 431004 2024-02-19 17:21:01.797 2024-02-19 17:31:02.588 \N Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do https://example.com/ 20225 430331 430331.431004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.13804854770088 0 \N \N f 0 \N 1 151324863 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 444582 2024-03-01 05:30:25.468 2024-03-01 05:40:27.292 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different https://example.com/ 15196 444580 444566.444575.444580.444582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90419262832015 0 \N \N f 0 \N 0 12936331 0 f f \N \N \N \N 444566 \N 0 0 \N \N f \N 81219 2022-10-13 15:33:34.561 2022-10-13 15:33:34.561 Though or meet hotel. Pay center patter \N https://example.com/ 1224 \N 81219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.0899947995563 0 \N \N f 0 \N 0 140337931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444587 2024-03-01 05:36:17.993 2024-03-01 05:46:19.145 \N American animal bad responsibility current. Human company option drive alone need personal thought. Look it https://example.com/ 2844 444522 444522.444587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9829393898821 0 \N \N f 0 \N 0 242600547 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N 444588 2024-03-01 05:36:31.198 2024-03-01 05:46:33.011 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead l https://example.com/ 3461 444384 444384.444588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0958571373077 0 \N \N f 0 \N 0 8097529 0 f f \N \N \N \N 444384 \N 0 0 \N \N f \N 437596 2024-02-24 18:57:33.902 2024-02-24 19:07:35.261 \N Own machine table garden necessary. Go sea kitch https://example.com/ 1145 437516 437269.437516.437596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2798403657597 0 \N \N f 0 \N 2 56075504 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 431031 2024-02-19 17:22:46.08 2024-02-19 17:32:47.438 \N Tree house interest fly bit br https://example.com/ 18664 423252 423252.431031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7692388368365 0 \N \N f 0 \N 0 242144763 0 f f \N \N \N \N 423252 \N 0 0 \N \N f \N 431051 2024-02-19 17:24:46.4 2024-02-19 17:34:47.72 \N Help out doctor wait. Early ce https://example.com/ 17316 418410 418410.431051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9940364639067 0 \N \N f 0 \N 0 228340611 0 f f \N \N \N \N 418410 \N 0 0 \N \N f \N 431032 2024-02-19 17:22:48.567 2024-02-19 17:32:49.449 \N Occur power prevent become iss https://example.com/ 17148 422869 422869.431032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.69121207887203 0 \N \N f 0 \N 0 241899949 0 f f \N \N \N \N 422869 \N 0 0 \N \N f \N 431057 2024-02-19 17:25:00.413 2024-02-19 17:35:01.85 \N Off class property ok try. Out https://example.com/ 12738 417685 417685.431057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.784756951607 0 \N \N f 0 \N 0 58063600 0 f f \N \N \N \N 417685 \N 0 0 \N \N f \N 431058 2024-02-19 17:25:02.53 2024-02-19 17:35:03.318 \N Environment none many land par https://example.com/ 20973 417574 417574.431058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1817087009852 0 \N \N f 0 \N 0 43535650 0 f f \N \N \N \N 417574 \N 0 0 \N \N f \N 2096 2021-09-13 19:24:55.028 2023-10-01 23:51:08.566 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree posi https://example.com/ 18659 2080 2080.2096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7754884151004 0 \N \N f 0 \N 1 187530663 0 f f \N \N \N \N 2080 \N 0 0 \N \N f \N 431059 2024-02-19 17:25:04.69 2024-02-19 17:35:05.996 \N Fish environmental factor popu https://example.com/ 12951 417426 417426.431059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1592646239755 0 \N \N f 0 \N 0 99325634 0 f f \N \N \N \N 417426 \N 0 0 \N \N f \N 431244 2024-02-19 18:20:15.799 2024-02-19 18:30:17.586 \N Such among bank choice themsel https://example.com/ 19198 394739 394739.431244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.05720594582767 0 \N \N f 0 \N 0 121048039 0 f f \N \N \N \N 394739 \N 0 0 \N \N f \N 431249 2024-02-19 18:20:29.991 2024-02-19 18:30:31.249 \N Health reduce performance body https://example.com/ 2537 393114 393114.431249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2603907110455 0 \N \N f 0 \N 0 107439447 0 f f \N \N \N \N 393114 \N 0 0 \N \N f \N 431250 2024-02-19 18:20:32.098 2024-02-19 18:30:33.273 \N Increase agent management assu https://example.com/ 5171 392928 392928.431250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6660334623519 0 \N \N f 0 \N 0 97573864 0 f f \N \N \N \N 392928 \N 0 0 \N \N f \N 431253 2024-02-19 18:20:40.14 2024-02-19 18:30:41.496 \N Sell attention budget indicate https://example.com/ 20861 392589 392589.431253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6693106094766 0 \N \N f 0 \N 0 204836468 0 f f \N \N \N \N 392589 \N 0 0 \N \N f \N 431254 2024-02-19 18:20:42.423 2024-02-19 18:30:43.519 \N Financial all deep why car sea https://example.com/ 19905 392573 392573.431254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.14635604639486 0 \N \N f 0 \N 0 179320725 0 f f \N \N \N \N 392573 \N 0 0 \N \N f \N 435642 2024-02-22 23:08:35.125 2024-02-22 23:18:36.457 Strategy way low soldier. Thank th With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually requir https://example.com/ 14909 \N 435642 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.4913038646326 0 \N \N f 0 \N 0 189672293 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432627 2024-02-20 15:49:31.106 2024-02-20 15:59:33.052 \N Third would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nYoung nothing just. Spring p https://example.com/ 18396 430507 430507.432627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.48408531946559 0 \N \N f 0 \N 0 16292950 0 f f \N \N \N \N 430507 \N 0 0 \N \N f \N 437979 2024-02-25 06:49:09.569 2024-02-25 06:59:11.62 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About off https://example.com/ 20564 437539 437539.437979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7880413672665 0 \N \N f 0 \N 0 202043721 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 437985 2024-02-25 07:00:05.024 2024-02-25 07:00:10.925 \N Take throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nFor wron https://example.com/ 18717 437984 437984.437985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4789163827287 0 \N \N f 0 \N 0 139838433 0 f f \N \N \N \N 437984 \N 0 0 \N \N f \N 437972 2024-02-25 06:28:27.516 2024-02-25 06:38:29.146 \N Artist sound return full resource lay people. Attention blue int https://example.com/ 627 437893 437893.437972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2958654174181 0 \N \N f 0 \N 0 196347706 0 f f \N \N \N \N 437893 \N 0 0 \N \N f \N 430989 2024-02-19 17:04:40.318 2024-02-19 17:14:41.834 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave https://example.com/ 21247 429764 429764.430989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58294813578071 0 \N \N f 0 \N 0 44207510 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 431008 2024-02-19 17:21:20.797 2024-02-19 17:31:21.884 \N Radio collection claim democra https://example.com/ 21342 429570 429570.431008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.99302759335342 0 \N \N f 0 \N 0 44469601 0 f f \N \N \N \N 429570 \N 0 0 \N \N f \N 2195 2021-09-16 14:22:16.599 2023-10-01 23:51:13.56 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court https://example.com/ 12289 2188 2186.2188.2195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5773419521536 0 \N \N f 0 \N 0 15046562 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N 438011 2024-02-25 08:15:45.151 2024-02-25 08:25:47.395 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Sho https://example.com/ 6798 437932 437723.437932.438011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.509269092456 0 \N \N f 0 \N 0 68138245 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444596 2024-03-01 05:49:24.254 2024-03-01 05:59:25.769 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left https://example.com/ 2293 444522 444522.444596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.27495085073964 0 \N \N f 0 \N 0 135812505 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N 444585 2024-03-01 05:32:33.308 2024-03-01 05:42:35.178 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice https://example.com/ 1740 433833 433833.444585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76646436578134 0 \N \N f 0 \N 0 199839959 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 437925 2024-02-25 03:39:08.009 2024-02-25 03:49:09.812 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven tr https://example.com/ 8326 437801 437723.437801.437925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1889569605668 0 \N \N f 0 \N 0 234501553 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444590 2024-03-01 05:39:24.005 2024-03-01 05:49:25.353 \N Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase mana https://example.com/ 7553 444365 444365.444590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3668781878606 0 \N \N f 0 \N 0 9567494 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 431044 2024-02-19 17:24:19.579 2024-02-19 17:34:20.688 \N Water actually point similar. https://example.com/ 9171 420116 420116.431044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.88551708987193 0 \N \N f 0 \N 0 141517048 0 f f \N \N \N \N 420116 \N 0 0 \N \N f \N 2238 2021-09-17 21:27:42.352 2023-10-01 23:51:36.818 \N Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indee https://example.com/ 4048 2235 2235.2238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.824857851465 0 \N \N f 0 \N 3 23936996 0 f f \N \N \N \N 2235 \N 0 0 \N \N f \N 444595 2024-03-01 05:48:08.86 2024-03-01 05:58:10.215 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south seni https://example.com/ 16353 444586 444586.444595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3156490251136 0 \N \N f 0 \N 0 89451326 0 f f \N \N \N \N 444586 \N 0 0 \N \N f \N 436122 2024-02-23 12:49:04.675 2024-02-23 12:59:06.266 \N Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month compan https://example.com/ 10549 435891 435891.436122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.26563591193499 0 \N \N f 0 \N 0 152877840 0 f f \N \N \N \N 435891 \N 0 0 \N \N f \N 431053 2024-02-19 17:24:51.168 2024-02-19 17:34:52.765 \N Every good development clearly https://example.com/ 17041 417974 417974.431053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.045047784793 0 \N \N f 0 \N 0 235243002 0 f f \N \N \N \N 417974 \N 0 0 \N \N f \N 444553 2024-03-01 04:25:08.706 2024-03-01 04:35:09.945 \N Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general th https://example.com/ 20642 443790 443790.444553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7362350465711 0 \N \N f 0 \N 0 213480584 0 f f \N \N \N \N 443790 \N 0 0 \N \N f \N 432632 2024-02-20 15:54:09.854 2024-02-20 16:05:44.146 \N Structure require f https://example.com/ 18772 432629 432493.432629.432632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0657060685046 0 \N \N f 0 \N 0 9222309 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 365366 2023-12-25 04:57:47.52 2023-12-25 05:07:49.014 Face opportunity Real late stop middle firm. Final be need by lawyer https://example.com/ 18452 \N 365366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6709454697655 0 \N \N f 0 \N 4 64039514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443790 2024-02-29 16:27:57.679 2024-02-29 16:37:59.636 Admit TV soon machine wo Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one https://example.com/ 9367 \N 443790 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.39387062901542 0 \N \N f 0 \N 2 169602312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431018 2024-02-19 17:21:50.586 2024-02-19 17:31:51.782 \N Increase agent management assu https://example.com/ 21042 427379 427379.431018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.07968141543608 0 \N \N f 0 \N 0 43260442 0 f f \N \N \N \N 427379 \N 0 0 \N \N f \N 431025 2024-02-19 17:22:31.163 2024-02-19 17:32:32.873 \N Should doctor pressure maybe s https://example.com/ 19952 424832 424832.431025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3810638560663 0 \N \N f 0 \N 0 232942021 0 f f \N \N \N \N 424832 \N 0 0 \N \N f \N 2258 2021-09-18 04:05:21.233 2023-10-01 23:51:40.046 \N Travel according exactly attention. Care before cover within prove tough Congress agree. Cell https://example.com/ 21427 2186 2186.2258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5142530563349 0 \N \N f 0 \N 1 162567695 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N 2462 2021-09-23 19:48:19.953 2023-10-01 23:51:48.756 \N Small concern peace on far either. Service clear movie https://example.com/ 7766 2457 2457.2462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7043844232449 0 \N \N f 0 \N 2 14597473 0 f f \N \N \N \N 2457 \N 0 0 \N \N f \N 430999 2024-02-19 17:18:04.903 2024-02-19 17:28:06.975 \N Improve different identify only radio myself. Relate little make whatever. East cul https://example.com/ 4487 429764 429764.430999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.11854707408465 0 \N \N f 0 \N 0 122383299 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 437993 2024-02-25 07:09:29.536 2024-02-25 07:19:31.261 Member I discover option technology recognize especially. Different hair s Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role. https://example.com/ 20669 \N 437993 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.4311869361574 0 \N \N f 0 \N 1 112281683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438020 2024-02-25 08:32:37.867 2024-02-25 08:42:39.556 \N Measure western pretty serious director count https://example.com/ 9036 437830 437642.437830.438020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1714130685755 0 \N \N f 0 \N 0 10413654 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N 438021 2024-02-25 08:32:53.776 2024-02-25 08:42:55.82 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast siste https://example.com/ 733 437999 437966.437999.438021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6069424996307 0 \N \N f 0 \N 0 236103253 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 438000 2024-02-25 07:53:48.842 2024-02-25 08:03:50.981 \N Common loss oil be. Wrong water cover https://example.com/ 18270 437769 437769.438000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2322834417729 0 \N \N f 0 \N 0 190111459 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 438026 2024-02-25 08:41:49.604 2024-02-25 08:51:50.966 \N Per over executive. Happy involve mission just company. Budget if PM https://example.com/ 12736 437993 437993.438026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79312859136512 0 \N \N f 0 \N 0 134141727 0 f f \N \N \N \N 437993 \N 0 0 \N \N f \N 431026 2024-02-19 17:22:33.844 2024-02-19 17:32:34.894 \N Structure require feel stateme https://example.com/ 19096 424703 424703.431026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4173908342887 0 \N \N f 0 \N 0 170219153 0 f f \N \N \N \N 424703 \N 0 0 \N \N f \N 444571 2024-03-01 05:15:16.934 2024-03-01 05:25:19.058 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nEye million figure now as collection. During report tree public must article expect. Hu https://example.com/ 7675 444144 443593.443614.443774.443787.444071.444144.444571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8454943382079 0 \N \N f 0 \N 0 210671516 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 438029 2024-02-25 08:47:37.905 2024-02-25 08:57:39.921 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow t https://example.com/ 631 436961 436961.438029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.67262671908652 0 \N \N f 0 \N 0 89780216 0 f f \N \N \N \N 436961 \N 0 0 \N \N f \N 431075 2024-02-19 17:30:23.521 2024-02-19 17:40:25.065 \N Lead between race contain politics. Base be https://example.com/ 13097 427972 427972.431075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4537774012134 0 \N \N f 0 \N 0 102514015 0 f f \N \N \N \N 427972 \N 0 0 \N \N f \N 444548 2024-03-01 04:11:17.501 2024-03-01 04:21:19.306 Later piece skin environmental not authority finish reduce Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview. https://example.com/ 2039 \N 444548 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.3051794885842 0 \N \N f 0 \N 0 159078988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431014 2024-02-19 17:21:39.754 2024-02-19 17:31:41.224 \N Live child like read. Gas forg https://example.com/ 6003 428348 428348.431014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9267637099134 0 \N \N f 0 \N 0 101899981 0 f f \N \N \N \N 428348 \N 0 0 \N \N f \N 3145 2021-10-07 01:21:31.257 2023-10-01 23:52:38.375 \N Technology instead seat like far. Door produce too Democrat professor ac https://example.com/ 10096 3144 3144.3145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0319612668109 0 \N \N f 0 \N 0 47525492 0 f f \N \N \N \N 3144 \N 0 0 \N \N f \N 2569 2021-09-27 03:28:32.014 2023-10-01 23:51:59.221 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nControl cent https://example.com/ 18452 2560 2553.2554.2560.2569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02638175393977 0 \N \N f 0 \N 0 97942880 0 f f \N \N \N \N 2553 \N 0 0 \N \N f \N 444563 2024-03-01 04:51:32.409 2024-03-01 05:01:33.288 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit hea https://example.com/ 20205 443197 443197.444563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2840230649726 0 \N \N f 0 \N 0 120799852 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 431016 2024-02-19 17:21:45.188 2024-02-19 17:31:46.733 \N Way majority believe feeling. https://example.com/ 3979 427795 427795.431016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71774392376356 0 \N \N f 0 \N 0 5905477 0 f f \N \N \N \N 427795 \N 0 0 \N \N f \N 431017 2024-02-19 17:21:47.943 2024-02-19 17:31:49.328 \N Small enjoy manage service ind https://example.com/ 9844 427771 427771.431017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6486520744736 0 \N \N f 0 \N 0 61782516 0 f f \N \N \N \N 427771 \N 0 0 \N \N f \N 431020 2024-02-19 17:21:55.842 2024-02-19 17:31:56.831 \N Also weight particular less se https://example.com/ 16353 426736 426736.431020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3015610029622 0 \N \N f 0 \N 0 181706942 0 f f \N \N \N \N 426736 \N 0 0 \N \N f \N 431022 2024-02-19 17:22:00.992 2024-02-19 17:32:02.891 \N Out quite different term just https://example.com/ 8448 425571 425571.431022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.63212138991581 0 \N \N f 0 \N 0 171730259 0 f f \N \N \N \N 425571 \N 0 0 \N \N f \N 431023 2024-02-19 17:22:05.978 2024-02-19 17:32:06.928 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such https://example.com/ 21371 430867 430489.430867.431023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6159727977375 0 \N \N f 0 \N 0 128646622 0 f f \N \N \N \N 430489 \N 0 0 \N \N f \N 442711 2024-02-28 21:09:48.95 2024-02-28 21:19:50.104 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr gove https://example.com/ 14795 441057 440692.441057.442711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9943328646076 0 \N \N f 0 \N 0 121633309 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 431027 2024-02-19 17:22:37.19 2024-02-19 17:32:38.964 \N Never hotel town trip thus saf https://example.com/ 4776 424652 424652.431027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.28751521046157 0 \N \N f 0 \N 0 178871175 0 f f \N \N \N \N 424652 \N 0 0 \N \N f \N 431029 2024-02-19 17:22:40.852 2024-02-19 17:32:41.99 \N Any new necessary low. Option https://example.com/ 11523 424448 424448.431029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7315655906698 0 \N \N f 0 \N 0 64353545 0 f f \N \N \N \N 424448 \N 0 0 \N \N f \N 431036 2024-02-19 17:23:16.737 2024-02-19 17:33:17.909 \N With feel late. Receive one fi https://example.com/ 14247 422191 422191.431036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8926964183576 0 \N \N f 0 \N 0 216139882 0 f f \N \N \N \N 422191 \N 0 0 \N \N f \N 430891 2024-02-19 15:55:56.689 2024-02-19 16:05:58.32 Tell difference pattern carr Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them. https://example.com/ 27 \N 430891 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 22.2004879539365 0 \N \N f 0 \N 4 75209838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431030 2024-02-19 17:22:43.496 2024-02-19 17:32:45.02 \N Near key among effort cover ce https://example.com/ 2010 424355 424355.431030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02710264413707 0 \N \N f 0 \N 0 15106467 0 f f \N \N \N \N 424355 \N 0 0 \N \N f \N 431033 2024-02-19 17:22:51.716 2024-02-19 17:32:53.145 \N Best choice maintain she else https://example.com/ 20340 423909 423909.431033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.309873862493859 0 \N \N f 0 \N 0 243102719 0 f f \N \N \N \N 423909 \N 0 0 \N \N f \N 438024 2024-02-25 08:40:25.547 2024-02-25 08:50:26.922 Experience ok car standard item treat hundred else. Kind gun kid condition ad Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve. https://example.com/ 16214 \N 438024 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.2664213646641 0 \N \N f 0 \N 0 128669489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436306 2024-02-23 15:20:11.233 2024-02-23 15:30:12.365 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nH https://example.com/ 998 436157 435657.435728.435920.435925.436157.436306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.30287147109256 0 \N \N f 0 \N 3 148327527 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 436132 2024-02-23 12:56:33.288 2024-02-23 13:06:35.013 \N Question produce break listen t https://example.com/ 21619 435975 435944.435950.435972.435975.436132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.22659232576579 0 \N \N f 0 \N 0 179282151 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 442863 2024-02-28 23:27:00.242 2024-02-28 23:37:01.721 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover direc https://example.com/ 19501 442820 442820.442863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5647344559722 0 \N \N f 0 \N 0 141313124 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 431097 2024-02-19 17:40:06.968 2024-02-19 17:50:07.996 \N Under big evening others. Trip https://example.com/ 750 415445 415445.431097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5891342225731 0 \N \N f 0 \N 0 203304289 0 f f \N \N \N \N 415445 \N 0 0 \N \N f \N 442877 2024-02-28 23:36:32.387 2024-02-28 23:46:33.61 \N About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect https://example.com/ 20225 442041 442023.442033.442041.442877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1623039898962 0 \N \N f 0 \N 0 238150946 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442900 2024-02-28 23:53:40.299 2024-02-29 00:03:41.955 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admi https://example.com/ 17682 442851 442851.442900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.81403037826 0 \N \N f 0 \N 0 169552669 0 f f \N \N \N \N 442851 \N 0 0 \N \N f \N 444568 2024-03-01 04:59:14.071 2024-03-01 05:09:15.594 \N Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern https://example.com/ 16126 444365 444365.444568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3848286243986 0 \N \N f 0 \N 0 206018209 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444577 2024-03-01 05:22:29.014 2024-03-01 05:32:30.915 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference sho https://example.com/ 2528 444561 444561.444577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34876061784703 0 \N \N f 0 \N 0 58719568 0 f f \N \N \N \N 444561 \N 0 0 \N \N f \N 442748 2024-02-28 21:31:04.959 2024-02-28 21:41:06.574 \N Tax here if project. Thing how simply then. Against single daughter wou https://example.com/ 19583 441502 441238.441496.441502.442748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37818246731167 0 \N \N f 0 \N 0 61315546 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 441855 2024-02-28 12:49:34.313 2024-02-28 12:59:35.542 \N Direction network employee only economic deep https://example.com/ 4521 441849 441695.441823.441837.441841.441849.441855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1782013294768 0 \N \N f 0 \N 0 180320299 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 431040 2024-02-19 17:23:33.847 2024-02-19 17:33:34.972 \N Who collection suggest practic https://example.com/ 18005 421367 421367.431040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0652499130365 0 \N \N f 0 \N 1 31726100 0 f f \N \N \N \N 421367 \N 0 0 \N \N f \N 431101 2024-02-19 17:40:16.831 2024-02-19 17:50:18.018 \N Whatever moment pattern front https://example.com/ 4083 413743 413743.431101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8235616894344 0 \N \N f 0 \N 0 15080599 0 f f \N \N \N \N 413743 \N 0 0 \N \N f \N 437999 2024-02-25 07:39:29.421 2024-02-25 07:49:30.625 \N Tell difference pattern carry join. Size factor particularly necessary step https://example.com/ 20717 437966 437966.437999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4090352055749 0 \N \N f 0 \N 1 193685164 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 432547 2024-02-20 14:50:11.05 2024-02-20 15:00:12.693 Have decide business throw source strong to Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nServe deep station probably wr https://example.com/ 12272 \N 432547 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.6880388604193 0 \N \N f 0 \N 1 13631921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431090 2024-02-19 17:39:46.911 2024-02-19 17:49:47.934 \N Miss keep probably political f https://example.com/ 15119 417257 417257.431090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4700405654409 0 \N \N f 0 \N 0 222366881 0 f f \N \N \N \N 417257 \N 0 0 \N \N f \N 431091 2024-02-19 17:39:49.801 2024-02-19 17:49:50.937 \N Personal factor big better. It https://example.com/ 17157 417088 417088.431091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.48757245118 0 \N \N f 0 \N 0 242341266 0 f f \N \N \N \N 417088 \N 0 0 \N \N f \N 431093 2024-02-19 17:39:55.891 2024-02-19 17:49:56.959 \N Article discussion court site https://example.com/ 19535 416798 416798.431093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.658757557056 0 \N \N f 0 \N 0 39699559 0 f f \N \N \N \N 416798 \N 0 0 \N \N f \N 431094 2024-02-19 17:39:59.608 2024-02-19 17:50:00.972 \N Beat case firm shoulder dream https://example.com/ 5565 416547 416547.431094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9598064433926 0 \N \N f 0 \N 0 175511685 0 f f \N \N \N \N 416547 \N 0 0 \N \N f \N 437408 2024-02-24 16:00:57.44 2024-02-24 16:10:58.385 Yourself debate term during boy. Signif She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce. https://example.com/ 4177 \N 437408 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.9456965737558 0 \N \N f 0 \N 10 182404276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431126 2024-02-19 17:44:13.682 2024-02-19 17:54:14.964 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Chan https://example.com/ 21466 430337 430279.430337.431126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.021182387723 0 \N \N f 0 \N 0 193057293 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 431084 2024-02-19 17:32:43.208 2024-02-19 17:42:44.754 \N Own https://example.com/ 18774 431077 430891.431077.431084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4804446282264 0 \N \N f 0 \N 0 1394233 0 f f \N \N \N \N 430891 \N 0 0 \N \N f \N 431007 2024-02-19 17:21:20.452 2024-02-19 17:31:21.517 \N Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish https://example.com/ 5425 430700 430700.431007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4285987699311 0 \N \N f 0 \N 1 197982956 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 437832 2024-02-25 01:23:59.225 2024-02-25 01:34:00.578 \N Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. https://example.com/ 7654 437775 437775.437832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39371656126544 0 \N \N f 0 \N 3 98663316 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 82141 2022-10-16 08:05:25.877 2022-10-16 08:05:25.877 Already real me back ahead espec Product analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nTry hospital s https://example.com/ 4313 \N 82141 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.103944130368667 0 \N \N f 0 \N 7 166517217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437895 2024-02-25 02:57:47.788 2024-02-25 03:07:49.49 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nReal https://example.com/ 660 437723 437723.437895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8358938616045 0 \N \N f 0 \N 0 209739435 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438022 2024-02-25 08:33:50.247 2024-02-25 08:43:51.687 \N Sc https://example.com/ 18116 437986 437190.437318.437324.437986.438022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1880403921405 0 \N \N f 0 \N 0 77805393 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N 444593 2024-03-01 05:44:55.243 2024-03-01 05:54:56.922 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Incl https://example.com/ 14074 444071 443593.443614.443774.443787.444071.444593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3529205741451 0 \N \N f 0 \N 1 78343564 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 444594 2024-03-01 05:46:20.168 2024-03-01 05:56:21.11 \N Capital treat simple ahead make study. Far administration week nothing. Than figure signific https://example.com/ 20117 444593 443593.443614.443774.443787.444071.444593.444594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25255011914573 0 \N \N f 0 \N 0 229054221 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 438019 2024-02-25 08:29:11.17 2024-02-25 08:39:12.53 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major https://example.com/ 17183 437775 437775.438019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2806169898058 0 \N \N f 0 \N 0 95251037 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437826 2024-02-25 01:08:53.334 2024-02-25 01:18:54.742 \N Return agreement happy health option. Someone collection raise p https://example.com/ 797 437762 437723.437762.437826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9126777215072 0 \N \N f 0 \N 0 224921325 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437794 2024-02-25 00:28:32.196 2024-02-25 00:38:33.733 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word https://example.com/ 17707 437020 436823.436829.436900.436930.437013.437020.437794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7833136463021 0 \N \N f 0 \N 1 53196430 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 431178 2024-02-19 18:14:02.601 2024-02-19 18:24:03.537 \N Theory teach dream home past. https://example.com/ 2513 408713 408713.431178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8883571224251 0 \N \N f 0 \N 0 82753262 0 f f \N \N \N \N 408713 \N 0 0 \N \N f \N 442848 2024-02-28 23:17:03.213 2024-02-28 23:27:05.153 \N Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nWide deep ahead effort https://example.com/ 6688 442710 442710.442848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.805068615617159 0 \N \N f 0 \N 7 244823992 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 437698 2024-02-24 21:15:47.375 2024-02-24 21:25:48.871 \N Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International inc https://example.com/ 2101 437678 436752.437635.437678.437698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6898753893493 0 \N \N f 0 \N 1 142880483 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 365443 2023-12-25 08:59:21.866 2023-12-25 09:09:23.637 Forget throughout Single https://example.com/ 16276 \N 365443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6223748506442 0 \N \N f 0 \N 3 102924081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443730 2024-02-29 15:57:38.546 2024-02-29 16:07:40.426 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family https://example.com/ 9341 442628 442628.443730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4751667709362 0 \N \N f 0 \N 0 97563039 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 431352 2024-02-19 18:35:38.713 2024-02-19 18:45:39.596 \N South amount subject easy offi https://example.com/ 16097 371743 371743.431352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6963900996042 0 \N \N f 0 \N 0 152244011 0 f f \N \N \N \N 371743 \N 0 0 \N \N f \N 438090 2024-02-25 10:54:42.483 2024-02-25 11:04:43.25 \N Last compare similar enjoy https://example.com/ 4650 437714 437714.438090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.687263308122 0 \N \N f 0 \N 0 16469183 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 443755 2024-02-29 16:11:23.903 2024-02-29 16:21:25.003 Future next ex Anything common leader response. Source news glass bed. Third fire understand be https://example.com/ 20218 \N 443755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6658703618109 0 \N \N f 0 \N 13 193657248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437786 2024-02-25 00:21:15.296 2024-02-25 00:31:16.715 \N Country audience including. Occur movie example defense live. Computer crime at lay order. Begin https://example.com/ 1273 437774 437714.437774.437786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9776811823377 0 \N \N f 0 \N 0 50869633 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437283 2024-02-24 14:41:17.738 2024-02-24 14:51:19.177 Join push remain behavior. General against https://example.com/ 13599 \N 437283 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.5368593074335 0 \N \N f 0 \N 0 90691059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437816 2024-02-25 00:57:09.991 2024-02-25 01:07:11.334 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother https://example.com/ 3342 437801 437723.437801.437816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.955303417688462 0 \N \N f 0 \N 0 238302454 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437314 2024-02-24 14:53:44.358 2024-02-24 15:03:45.901 \N Born mi https://example.com/ 715 437281 436837.437281.437314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9734915039071 0 \N \N f 0 \N 0 183619922 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 442858 2024-02-28 23:25:14.565 2024-02-28 23:35:16.252 \N South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand p https://example.com/ 12169 442371 442371.442858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1727975047548 0 \N \N f 0 \N 0 95744849 0 f f \N \N \N \N 442371 \N 0 0 \N \N f \N 437797 2024-02-25 00:31:40.309 2024-02-25 00:41:41.371 \N Pick fight simple https://example.com/ 7978 437790 437218.437287.437302.437790.437797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8915174235217 0 \N \N f 0 \N 0 236935552 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 442865 2024-02-28 23:27:49.764 2024-02-28 23:37:51.254 \N Remember draw realize. Include soon my person in https://example.com/ 4115 442853 442853.442865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0826502707786 0 \N \N f 0 \N 0 194968886 0 f f \N \N \N \N 442853 \N 0 0 \N \N f \N 437844 2024-02-25 01:44:50.22 2024-02-25 01:54:52.177 \N Cover well feel yes crime term final. Particularly take animal marriage exist https://example.com/ 2056 437642 437642.437844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2678316607671 0 \N \N f 0 \N 0 51435559 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N 437847 2024-02-25 01:47:02.404 2024-02-25 01:57:03.909 \N Life foot administration huge discover. Few rich aud https://example.com/ 8998 437727 437727.437847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.75049555386577 0 \N \N f 0 \N 0 248842041 0 f f \N \N \N \N 437727 \N 0 0 \N \N f \N 437892 2024-02-25 02:54:50.518 2024-02-25 03:04:54.178 \N Several follow value modern s https://example.com/ 21062 368174 368115.368174.437892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2308176147332 0 \N \N f 0 \N 1 15414828 0 f f \N \N \N \N 368115 \N 0 0 \N \N f \N 3239 2021-10-08 15:12:19.943 2023-10-01 23:52:44.64 \N Speak organization direction school minute. Daughter model long practice adult. Tho https://example.com/ 17827 3231 3191.3231.3239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.280763301466 0 \N \N f 0 \N 0 199047333 0 f f \N \N \N \N 3191 \N 0 0 \N \N f \N 85658 2022-10-26 01:38:33.331 2022-10-26 01:38:33.331 Under big evening others. Trip remain money region report bi \N https://example.com/ 2735 \N 85658 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.91829352601813 0 \N \N f 0 \N 1 176252903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437924 2024-02-25 03:38:42.491 2024-02-25 03:48:43.516 \N Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move he https://example.com/ 5752 435919 435154.435919.437924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8758830142471 0 \N \N f 0 \N 0 181432708 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 437862 2024-02-25 02:05:00.334 2024-02-25 02:15:02.399 Whose top property well serve national account. Himsel Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide. https://example.com/ 19806 \N 437862 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.0123107861987 0 \N \N f 0 \N 0 34529849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444538 2024-03-01 03:49:15.466 2024-03-01 03:49:20.714 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nPrice country hour whom over argue Congress upon. Nat https://example.com/ 4035 1620 1620.444538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9628484816762 0 \N \N f 0 \N 1 225790150 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N 443708 2024-02-29 15:38:44.799 2024-02-29 15:48:46.199 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene ar https://example.com/ 1515 443372 443372.443708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8480889037163 0 \N \N f 0 \N 2 94003579 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 444071 2024-02-29 18:57:04.997 2024-02-29 19:07:06.347 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nBorn value hundred medical loss. Kid white check draw chance treatment significan https://example.com/ 16769 443787 443593.443614.443774.443787.444071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8517147927677 0 \N \N f 0 \N 5 169385304 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 443796 2024-02-29 16:31:04.021 2024-02-29 16:41:05.204 \N Forget issue save education. Head of https://example.com/ 21424 443772 443577.443651.443711.443715.443731.443757.443772.443796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6601476759336 0 \N \N f 0 \N 8 22465696 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443845 2024-02-29 16:55:32.43 2024-02-29 17:05:33.78 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant im https://example.com/ 20310 443835 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831.443835.443845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3778729513635 0 \N \N f 0 \N 2 170524750 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 437798 2024-02-25 00:31:50.738 2024-02-25 00:41:52.525 \N We teacher join same push onto. Gas character each when condition. One our ex https://example.com/ 16356 437791 437714.437716.437779.437784.437789.437791.437798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38317319879437 0 \N \N f 0 \N 2 18079191 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437791 2024-02-25 00:25:22.558 2024-02-25 00:35:23.973 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\n https://example.com/ 1620 437789 437714.437716.437779.437784.437789.437791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91624260118146 0 \N \N f 0 \N 3 120438627 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437998 2024-02-25 07:26:35.475 2024-02-25 07:36:36.573 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nMyself candidate idea state similar above. Firm billion money aut https://example.com/ 14774 437775 437775.437998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4190657575797 0 \N \N f 0 \N 0 52314284 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 443502 2024-02-29 13:56:52.824 2024-02-29 14:06:54.189 \N Break sit https://example.com/ 21033 443495 443495.443502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9200778295814 0 \N \N f 0 \N 0 100482027 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N 443495 2024-02-29 13:54:14.528 2024-02-29 14:04:15.441 Your firm section wal Story do plant get. Base involve s https://example.com/ 11789 \N 443495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4652229782417 0 \N \N f 0 \N 4 202883955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442746 2024-02-28 21:30:08.603 2024-02-28 21:40:09.686 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financi https://example.com/ 2703 442738 441238.442729.442738.442746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3789927626717 0 \N \N f 0 \N 1 39734 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 442729 2024-02-28 21:21:04.2 2024-02-28 21:31:05.505 \N Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nCell language east present. Federal arrive much. Dr https://example.com/ 1307 441238 441238.442729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45522224046341 0 \N \N f 0 \N 3 1387038 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 437778 2024-02-25 00:06:10.528 2024-02-25 00:16:12.077 \N Religious l https://example.com/ 20133 437427 437408.437411.437417.437427.437778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.816460525862261 0 \N \N f 0 \N 0 13668473 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 438036 2024-02-25 09:05:23.024 2024-02-25 09:15:24.629 Main teacher local. We Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home. https://example.com/ 16270 \N 438036 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 4.36977904416537 0 \N \N f 0 \N 0 59582416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438734 2024-02-25 23:11:45.765 2024-02-25 23:21:47.119 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling ma https://example.com/ 8664 438305 437723.437738.437759.437763.437766.437771.437846.438305.438734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.94785999039566 0 \N \N f 0 \N 0 4959980 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437900 2024-02-25 03:01:44.015 2024-02-25 03:11:45.391 \N Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine https://example.com/ 1310 437827 437502.437700.437827.437900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8589425372836 0 \N \N f 0 \N 0 231923198 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 440875 2024-02-27 17:56:34.869 2024-02-27 18:06:35.997 Everything she discuss gun someb Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view https://example.com/ 19996 \N 440875 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.7084556236819 0 \N \N f 0 \N 7 4988882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443889 2024-02-29 17:21:34.477 2024-02-29 17:31:36.085 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why ra https://example.com/ 1718 443806 443295.443781.443806.443889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49326380459635 0 \N \N f 0 \N 1 105257508 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 434972 2024-02-22 13:40:35.94 2024-02-22 13:50:37.148 \N Statement these family dark. Realize American https://example.com/ 10981 434610 434577.434610.434972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3696968587052 0 \N \N f 0 \N 0 55579340 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 442427 2024-02-28 17:09:45.089 2024-02-28 17:19:46.335 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work https://example.com/ 19507 442405 442084.442405.442427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.59432859635523 0 \N \N f 0 \N 0 35187419 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442394 2024-02-28 16:56:43.765 2024-02-28 17:06:45.455 \N Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nThat very sister attention myself out bit. Wan https://example.com/ 21159 442370 441333.442370.442394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88744948834586 0 \N \N f 0 \N 1 15263533 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 444139 2024-02-29 19:40:40.402 2024-02-29 19:50:41.403 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRecor https://example.com/ 16097 443953 443919.443953.444139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0361080905185 0 \N \N f 0 \N 4 192085187 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 86447 2022-10-28 01:22:28.762 2022-10-28 01:22:28.762 Seven which nature charge. Today range along want forget. City stor \N https://example.com/ 20099 \N 86447 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.5745708849308 0 \N \N f 0 \N 1 50298256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 91022 2022-11-08 14:45:35.578 2022-11-08 14:45:35.578 Threat successful admit write. Likely first response thing miss month himself. C \N https://example.com/ 20691 \N 91022 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7550902603691 0 \N \N f 0 \N 0 132251018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443953 2024-02-29 17:47:47.236 2024-02-29 17:57:49.298 \N Blue the that local central midd https://example.com/ 18865 443919 443919.443953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77792624867667 0 \N \N f 0 \N 6 224120929 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 443902 2024-02-29 17:29:33.329 2024-02-29 17:39:34.853 \N Be right whatever former various billion. Tax politics send travel tend. https://example.com/ 21238 443894 443295.443781.443806.443886.443894.443902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.61983737325912 0 \N \N f 0 \N 2 107452392 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443781 2024-02-29 16:24:21.919 2024-02-29 16:34:23.191 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nOwn about father behind relate federal dro https://example.com/ 20208 443295 443295.443781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4877381810118 0 \N \N f 0 \N 9 15531705 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443894 2024-02-29 17:24:27.442 2024-02-29 17:34:28.369 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side https://example.com/ 10060 443886 443295.443781.443806.443886.443894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61682572237957 0 \N \N f 0 \N 3 86125509 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 433612 2024-02-21 11:18:41.446 2024-02-21 11:28:42.446 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. No https://example.com/ 20066 433601 433588.433593.433598.433601.433612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6602819639322 0 \N \N f 0 \N 0 130647899 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 442191 2024-02-28 15:35:03.572 2024-02-28 15:45:04.499 Answer party get head Democrat. Marriage letter west social sin Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their https://example.com/ 1389 \N 442191 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 12.1680288931993 0 \N \N f 0 \N 12 94166673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443452 2024-02-29 13:18:58.463 2024-02-29 13:29:00.126 \N Strategy way low soldier. Thank think https://example.com/ 11897 443381 443295.443336.443338.443381.443452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2588246050442 0 \N \N f 0 \N 1 79536296 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442410 2024-02-28 17:00:52.98 2024-02-28 17:10:54.048 Recent work wife light adult yard. Child although girl new to serious. Region Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn. https://example.com/ 21614 \N 442410 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 1.28589657400099 0 \N \N f 0 \N 1 5286279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435520 2024-02-22 21:04:36.759 2024-02-22 21:14:38.18 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box https://example.com/ 16842 435261 435261.435520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5321016821191 0 \N \N f 0 \N 1 130892781 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 441695 2024-02-28 11:00:03.514 2024-02-28 11:10:04.709 Fall health dr Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose ha https://example.com/ 17392 \N 441695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6931978464688 0 \N \N f 0 \N 155 93185462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442473 2024-02-28 17:35:00.324 2024-02-28 17:45:01.762 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand re https://example.com/ 20837 442446 441695.442446.442473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0219720173927 0 \N \N f 0 \N 6 211837057 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 435250 2024-02-22 17:08:38.001 2024-02-22 17:08:44.378 \N Need huge foreign https://example.com/ 18231 349 349.435250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1782265671393 0 \N \N f 0 \N 0 98949691 0 f f \N \N \N \N 349 \N 0 0 \N \N f \N 442446 2024-02-28 17:18:11.83 2024-02-28 17:28:12.934 \N Standard cho https://example.com/ 20892 441695 441695.442446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2893421849083 0 \N \N f 0 \N 8 38322510 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 95438 2022-11-17 19:01:55.05 2022-11-17 19:01:55.05 Wear role agency. Enter back re \N https://example.com/ 1272 \N 95438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9300217552406 0 \N \N f 0 \N 0 34253400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442419 2024-02-28 17:04:38.168 2024-02-28 17:14:39.327 \N Rest factor stock pre https://example.com/ 21401 442411 442411.442419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.605196432839001 0 \N \N f 0 \N 0 124554693 0 f f \N \N \N \N 442411 \N 0 0 \N \N f \N 437980 2024-02-25 06:51:40.411 2024-02-25 07:01:42.04 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one https://example.com/ 1769 437958 437769.437958.437980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5623826875498 0 \N \N f 0 \N 1 17933943 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 443315 2024-02-29 11:09:46.466 2024-02-29 11:19:48.011 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner https://example.com/ 1534 443311 443295.443297.443301.443308.443311.443315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68593553378434 0 \N \N f 0 \N 1 180234969 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443308 2024-02-29 11:05:06.171 2024-02-29 11:15:08.371 \N Wish low party shake. National offer my specific happen well. Federal word exp https://example.com/ 16679 443301 443295.443297.443301.443308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8774375874864 0 \N \N f 0 \N 5 80287651 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443301 2024-02-29 11:03:50.767 2024-02-29 11:13:51.848 \N Item attention child take film late. https://example.com/ 14774 443297 443295.443297.443301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7256468338842 0 \N \N f 0 \N 6 75554800 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444333 2024-02-29 22:00:47.328 2024-02-29 22:10:49.219 \N Never able over relate dark up d https://example.com/ 13878 444330 444097.444218.444330.444333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5954989167158 0 \N \N f 0 \N 2 13892815 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444330 2024-02-29 21:53:38.855 2024-02-29 22:03:39.844 \N Skill government the life rel https://example.com/ 712 444218 444097.444218.444330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71316682941133 0 \N \N f 0 \N 3 28318096 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 442443 2024-02-28 17:16:10.246 2024-02-28 17:26:11.427 Administration threat use Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing. https://example.com/ 16665 \N 442443 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 12.1750717017071 0 \N \N f 0 \N 0 92749606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431021 2024-02-19 17:21:58.294 2024-02-19 17:31:59.45 \N Thousand billion get leg now s https://example.com/ 6149 426555 426555.431021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6274615300573 0 \N \N f 0 \N 0 75066594 0 f f \N \N \N \N 426555 \N 0 0 \N \N f \N 442363 2024-02-28 16:44:17.781 2024-02-28 16:54:19.196 \N Everybody laugh key left specific wonder. Per low https://example.com/ 1326 442339 442339.442363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2459934112444 0 \N \N f 0 \N 0 14531995 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 442364 2024-02-28 16:44:44.921 2024-02-28 16:54:47 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring https://example.com/ 21064 441695 441695.442364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5055480797371 0 \N \N f 0 \N 0 249950144 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443554 2024-02-29 14:27:41.843 2024-02-29 14:37:42.588 Power billion method wi Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majo https://example.com/ 2709 \N 443554 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4245217669904 0 \N \N f 0 \N 4 27814134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443227 2024-02-29 09:44:36.719 2024-02-29 09:54:37.964 \N Town listen something design east writer paper. Clear anything there analysis https://example.com/ 9611 443178 443178.443227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6349556321838 0 \N \N f 0 \N 1 192268704 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 442367 2024-02-28 16:47:51.973 2024-02-28 16:57:53.383 Range laugh thousand step. Them telev Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection. https://example.com/ 7891 \N 442367 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 3.35738678665503 0 \N \N f 0 \N 1 64267258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442658 2024-02-28 20:28:55.244 2024-02-28 20:38:56.996 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain man https://example.com/ 20302 442653 442588.442591.442653.442658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7754242080164 0 \N \N f 0 \N 1 217075606 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N 431156 2024-02-19 18:00:53.848 2024-02-19 18:10:55.123 \N Right https://example.com/ 11885 431138 431122.431138.431156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.602000787061 0 \N \N f 0 \N 1 122520228 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 431136 2024-02-19 17:47:46.26 2024-02-19 17:57:47.349 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nEdge lot space military without many term others. Religious wear ec https://example.com/ 18472 430530 430521.430530.431136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62908780863953 0 \N \N f 0 \N 0 243347606 0 f f \N \N \N \N 430521 \N 0 0 \N \N f \N 431153 2024-02-19 18:00:06.16 2024-02-19 18:00:11.962 \N Whether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central le https://example.com/ 19843 431152 431152.431153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.0614013832187 0 \N \N f 0 \N 0 218587070 0 f f \N \N \N \N 431152 \N 0 0 \N \N f \N 444436 2024-03-01 00:07:33.864 2024-03-01 00:17:36.423 \N Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nWork suddenly pick. Interesting check state. https://example.com/ 7877 444416 443712.443834.444412.444416.444436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5125020061545 0 \N \N f 0 \N 3 20467867 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 437886 2024-02-25 02:47:27.13 2024-02-25 02:57:28.582 \N Not find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nCheck worry radio fin https://example.com/ 20023 437775 437775.437886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8245811317724 0 \N \N f 0 \N 1 20096547 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 438038 2024-02-25 09:08:02.651 2024-02-25 09:18:03.987 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nYourself debate term during boy. Significant step l https://example.com/ 11395 437955 437955.438038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5795550141424 0 \N \N f 0 \N 1 26800147 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N 442470 2024-02-28 17:34:35.612 2024-02-28 17:44:37.501 \N Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Th https://example.com/ 20979 442414 442084.442414.442470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9249609688499 0 \N \N f 0 \N 0 162715579 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437087 2024-02-24 12:23:35.024 2024-02-24 12:33:36.503 Race report base really very after Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nEnough book hope yard store together camera scene https://example.com/ 17365 \N 437087 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 5.61207827927884 0 \N \N f 0 \N 2 139155439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 62246 2022-08-23 14:48:23.706 2023-10-02 05:28:32.592 Know son future sug Field eat man but religious close. Sort vote hair travel. https://example.com/ 17212 \N 62246 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.271927189882 0 \N \N f 0 \N 3 119118817 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 64648 2022-08-30 12:59:21.064 2023-10-02 05:37:41.662 Power herself Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nMorning garden personal tax reduce less. Responsibility quite ris https://example.com/ 21563 \N 64648 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.3179679452872 0 \N \N f 0 \N 6 849714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438127 2024-02-25 11:35:10.853 2024-02-25 11:45:13.995 \N Discussion various drop throw none test wind. Exactly nation r https://example.com/ 17392 437269 437269.438127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8071659307444 0 \N \N f 0 \N 0 231642417 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 438091 2024-02-25 10:55:59.114 2024-02-25 11:06:01.03 \N Mrs when number place under moment. Own including always es https://example.com/ 9433 438088 438088.438091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.05432534804174 0 \N \N f 0 \N 0 34416369 0 f f \N \N \N \N 438088 \N 0 0 \N \N f \N 438089 2024-02-25 10:54:30.221 2024-02-25 11:04:31.968 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical https://example.com/ 10283 437963 437963.438089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6260644557627 0 \N \N f 0 \N 0 124202889 0 f f \N \N \N \N 437963 \N 0 0 \N \N f \N 431265 2024-02-19 18:22:19.765 2024-02-19 18:32:20.29 \N Hotel black matter recently id https://example.com/ 19639 385880 385880.431265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16043008756498 0 \N \N f 0 \N 0 161224454 0 f f \N \N \N \N 385880 \N 0 0 \N \N f \N 437955 2024-02-25 05:00:04.687 2024-02-25 05:10:05.812 Agency rate seven fear open. Design group sense left enjoy \N https://example.com/ 3683 \N 437955 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.0738368256919 0 \N \N f 0 \N 4 236312558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443029 2024-02-29 03:04:52.791 2024-02-29 03:14:54.376 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign di https://example.com/ 21238 442751 442751.443029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1825929910121 0 \N \N f 0 \N 0 102387532 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442907 2024-02-29 00:05:57.942 2024-02-29 00:15:59.574 \N Reflect fill team movie draw red group. Congress witho https://example.com/ 15594 442751 442751.442907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5508135478387 0 \N \N f 0 \N 0 49455947 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 431131 2024-02-19 17:46:37.281 2024-02-19 17:56:38.13 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your https://example.com/ 21138 431124 431124.431131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58670325582685 0 \N \N f 0 \N 5 228875289 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 431174 2024-02-19 18:13:33.626 2024-02-19 18:23:34.768 Maybe doctor performance school. Happen p Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call. https://example.com/ 20585 \N 431174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.66923019463848 0 \N \N f 0 \N 0 109704059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431179 2024-02-19 18:14:05.623 2024-02-19 18:24:06.766 \N Born value hundred medical los https://example.com/ 11561 408691 408691.431179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.51012417952 0 \N \N f 0 \N 0 219470571 0 f f \N \N \N \N 408691 \N 0 0 \N \N f \N 431181 2024-02-19 18:14:13.192 2024-02-19 18:24:14.971 \N Personal factor big better. It https://example.com/ 698 408230 408230.431181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.268503763524 0 \N \N f 0 \N 0 246755036 0 f f \N \N \N \N 408230 \N 0 0 \N \N f \N 436683 2024-02-23 21:46:31.19 2024-02-23 21:56:33.229 Rest factor stock prepare. Area Mrs eat sister mov Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority https://example.com/ 6149 \N 436683 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 13.6183338627708 0 \N \N f 0 \N 28 78269906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438047 2024-02-25 09:37:21.628 2024-02-25 09:47:23.017 \N Individual low nice character home Congress prevent. Wall realize language open major https://example.com/ 17148 438038 437955.438038.438047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1696774832152 0 \N \N f 0 \N 0 184581041 0 f f \N \N \N \N 437955 \N 0 0 \N \N f \N 431371 2024-02-19 18:36:35.282 2024-02-19 18:46:37.027 \N House west amount. Again high https://example.com/ 17162 376753 376753.431371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4592063116794 0 \N \N f 0 \N 0 158965871 0 f f \N \N \N \N 376753 \N 0 0 \N \N f \N 431366 2024-02-19 18:36:19.86 2024-02-19 18:36:25.798 \N Be human year girl treatment n https://example.com/ 21379 375680 375680.431366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82504278935786 0 \N \N f 0 \N 0 125600687 0 f f \N \N \N \N 375680 \N 0 0 \N \N f \N 431372 2024-02-19 18:36:38.75 2024-02-19 18:46:39.635 \N Both peace drug most bring ins https://example.com/ 19902 376857 376857.431372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1886781077665 0 \N \N f 0 \N 0 196442590 0 f f \N \N \N \N 376857 \N 0 0 \N \N f \N 437024 2024-02-24 09:48:18.43 2024-02-24 09:58:20.122 \N Own machine table garden necessary. Go sea kitchen among some https://example.com/ 1881 436935 436935.437024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0333421129352374 0 \N \N f 0 \N 0 33764775 0 f f \N \N \N \N 436935 \N 0 0 \N \N f \N 431248 2024-02-19 18:20:27.649 2024-02-19 18:30:28.855 \N Material focus experience pict https://example.com/ 980 393285 393285.431248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7643054636594 0 \N \N f 0 \N 0 28424283 0 f f \N \N \N \N 393285 \N 0 0 \N \N f \N 434989 2024-02-22 13:55:57.297 2024-02-22 14:05:59.086 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult ra https://example.com/ 768 434440 434440.434989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3823693311547 0 \N \N f 0 \N 0 173938101 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 435028 2024-02-22 14:23:02.163 2024-02-22 14:33:03.727 \N Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan https://example.com/ 19007 434987 434642.434987.435028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0485246725251 0 \N \N f 0 \N 0 202712291 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434987 2024-02-22 13:54:46.393 2024-02-22 14:04:47.56 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything e https://example.com/ 11153 434642 434642.434987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08622088785746 0 \N \N f 0 \N 1 66368574 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 442638 2024-02-28 20:14:31.815 2024-02-28 20:24:32.921 \N We quite story politics approach cond https://example.com/ 9365 442170 442170.442638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3000436588777 0 \N \N f 0 \N 0 112543325 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 431301 2024-02-19 18:31:51.155 2024-02-19 18:41:52.699 That very sister attention myself out bit. Want father presid Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act. https://example.com/ 10393 \N 431301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.0128131891790062 0 \N \N f 0 \N 0 116824879 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443982 2024-02-29 18:06:48.395 2024-02-29 18:16:49.988 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action https://example.com/ 20430 443958 443295.443940.443958.443982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8715194500087 0 \N \N f 0 \N 2 131384870 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 435914 2024-02-23 07:25:52.141 2024-02-23 07:35:53.81 Practice pressure help white source. Either lit Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nKey group certainly little https://example.com/ 6136 \N 435914 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.8208499792984 0 \N \N f 0 \N 2 169008244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437957 2024-02-25 05:07:12.437 2024-02-25 05:17:14.5 Detail discussion line aro Theory teach dream home past. Population lose establish u https://example.com/ 18678 \N 437957 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 26.404450423347 0 \N \N f 0 \N 0 132380607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 365550 2023-12-25 10:46:47.662 2023-12-25 10:56:49.813 Yourself teach Capital tre https://example.com/ 18892 \N 365550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73897822666077 0 \N \N f 0 \N 4 108386281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442552 2024-02-28 18:44:52.449 2024-02-28 18:54:53.673 Four learn tell c Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin. https://example.com/ 19174 \N 442552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.87962401900527 0 \N \N f 0 \N 0 152527205 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443940 2024-02-29 17:43:18.52 2024-02-29 17:53:19.634 \N Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student https://example.com/ 21361 443295 443295.443940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28461142025796 0 \N \N f 0 \N 4 70711393 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444351 2024-02-29 22:15:33.844 2024-02-29 22:25:35.02 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect https://example.com/ 2151 444348 444114.444132.444143.444150.444207.444213.444277.444289.444332.444340.444348.444351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.67862446771544 0 \N \N f 0 \N 0 184751631 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 437018 2024-02-24 09:34:43.559 2024-02-24 09:44:45.331 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine eve https://example.com/ 16356 436967 436967.437018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15925786286162 0 \N \N f 0 \N 1 225688087 0 f f \N \N \N \N 436967 \N 0 0 \N \N f \N 431166 2024-02-19 18:04:39.156 2024-02-19 18:14:40.576 \N Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally https://example.com/ 21405 431158 430993.431001.431049.431074.431082.431158.431166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.096107897063 0 \N \N f 0 \N 0 175906878 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 431140 2024-02-19 17:53:02.535 2024-02-19 18:03:04.009 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. https://example.com/ 18170 431131 431124.431131.431140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.17216935624549 0 \N \N f 0 \N 3 34848168 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 438105 2024-02-25 11:15:41.923 2024-02-25 11:25:43.345 \N Most which usua https://example.com/ 797 438077 438065.438073.438077.438105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9722667029989 0 \N \N f 0 \N 0 15127586 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 437029 2024-02-24 10:15:15.768 2024-02-24 10:25:16.919 \N Role before girl wonder clear many security into. Of your now so https://example.com/ 16842 437018 436967.437018.437029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9300587420357 0 \N \N f 0 \N 0 113308992 0 f f \N \N \N \N 436967 \N 0 0 \N \N f \N 431303 2024-02-19 18:32:27.474 2024-02-19 18:42:29.037 \N Special identify senior differ https://example.com/ 12218 380545 380545.431303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.77734450889867 0 \N \N f 0 \N 0 60729696 0 f f \N \N \N \N 380545 \N 0 0 \N \N f \N 437965 2024-02-25 06:04:34.536 2024-02-25 06:14:35.479 Better instead whom usu Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nFirm study certainly point. Ask major born want ph https://example.com/ 18784 \N 437965 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 15.1179501504821 0 \N \N f 0 \N 0 53343114 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444206 2024-02-29 20:23:33.687 2024-02-29 20:33:35.525 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. https://example.com/ 14663 438795 438414.438795.444206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84202101467775 0 \N \N f 0 \N 1 184952149 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 431142 2024-02-19 17:55:15.085 2024-02-19 18:05:16.766 \N Moment smile cell cold road happen cause. Give https://example.com/ 3353 431140 431124.431131.431140.431142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88755136469318 0 \N \N f 0 \N 2 159506489 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 436832 2024-02-24 01:59:49.992 2024-02-24 02:09:52.359 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nBeyond diff https://example.com/ 19911 436782 436669.436782.436832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7536449822995 0 \N \N f 0 \N 2 118434058 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 444340 2024-02-29 22:06:13.489 2024-02-29 22:16:15.521 \N Animal character seek song. Compare put sometimes c https://example.com/ 1784 444332 444114.444132.444143.444150.444207.444213.444277.444289.444332.444340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42641511921113 0 \N \N f 0 \N 2 55539219 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 95692 2022-11-18 06:03:41.711 2022-11-18 06:03:41.711 Ball training later think quite. Process since wait provide beat \N https://example.com/ 2342 \N 95692 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5216201017049 0 \N \N f 0 \N 6 130535146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438032 2024-02-25 08:58:56.534 2024-02-25 09:08:57.821 Than budget time ga Stock short may one soldier table past. Arrive nice arrive away e https://example.com/ 12291 \N 438032 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 13.9011104561229 0 \N \N f 0 \N 0 89532285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442931 2024-02-29 00:36:31.726 2024-02-29 00:46:33.048 Always line hot record. Hard discuss suddenly p Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult sour https://example.com/ 12356 \N 442931 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 4.4877243302787 0 \N \N f 0 \N 2 116337258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437828 2024-02-25 01:13:35.516 2024-02-25 01:23:37.151 Prevent arm food order. I Than level lawyer mouth they put. Model apply like ready. Impa https://example.com/ 19309 \N 437828 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 27.3588515647884 0 \N \N f 0 \N 1 46705537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442751 2024-02-28 21:33:05.45 2024-02-28 21:43:07.569 Soon raise sense education hold away. Whatever unit New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nBig field certainly community. North marriage animal whose health understan https://example.com/ 2203 \N 442751 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3386280346885 0 \N \N f 0 \N 40 168944681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438040 2024-02-25 09:16:51.023 2024-02-25 09:26:52.111 Field rock decide ph Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nKitchen already https://example.com/ 15115 \N 438040 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 2.17647589307266 0 \N \N f 0 \N 0 95781508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442551 2024-02-28 18:44:07.48 2024-02-28 18:54:08.782 Value have anyone crime professional. Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably https://example.com/ 21444 \N 442551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1806562089069 0 \N \N f 0 \N 10 88313190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442710 2024-02-28 21:09:48.025 2024-02-28 21:19:49.278 Political official world difference. Whole any smal Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Y https://example.com/ 9482 \N 442710 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.542650910740115 0 \N \N f 0 \N 40 123204423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442613 2024-02-28 19:54:04.396 2024-02-28 20:04:06.289 \N American argue three local care join full another. North safe part until lose foreign. Their https://example.com/ 1577 442313 442313.442613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0847902221848 0 \N \N f 0 \N 0 229094648 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442627 2024-02-28 20:06:12.638 2024-02-28 20:16:14.059 Best choice maintain she else member. Health country mind police. Of off fill t Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost. https://example.com/ 6749 \N 442627 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 13.4269041273318 0 \N \N f 0 \N 2 195351089 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442820 2024-02-28 23:00:24.465 2024-02-28 23:10:26.129 Most which usually increa Involve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead. https://example.com/ 3371 \N 442820 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.6854126099991 0 \N \N f 0 \N 17 238563533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431154 2024-02-19 18:00:28.639 2024-02-19 18:10:30.219 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture deca https://example.com/ 19346 431139 431139.431154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1775038600901 0 \N \N f 0 \N 0 67229561 0 f f \N \N \N \N 431139 \N 0 0 \N \N f \N 431175 2024-02-19 18:13:41.398 2024-02-19 18:23:42.808 \N Same listen sugge https://example.com/ 654 431150 431150.431175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8260889746682 0 \N \N f 0 \N 1 201257315 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 442982 2024-02-29 01:57:15.702 2024-02-29 02:07:17.134 Family material upon Democrat. T Floor white civil remain. Purpose spend one p https://example.com/ 18178 \N 442982 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 16.5396659203896 0 \N \N f 0 \N 5 99190259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 97981 2022-11-23 18:31:12.677 2022-11-23 18:31:12.677 Protect evidence very \N https://example.com/ 658 \N 97981 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4217774185487 0 \N \N f 0 \N 2 67217731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435550 2024-02-22 21:38:03.115 2024-02-22 21:48:05.239 \N House west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without https://example.com/ 5069 435520 435261.435520.435550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.97444133071062 0 \N \N f 0 \N 0 63515569 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 443197 2024-02-29 08:50:25.943 2024-02-29 09:00:27.282 Type door clear left. Test investment between table expect. Often reduce step Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nHuman since term seek. Easy move guess bring training. Performance d https://example.com/ 18235 \N 443197 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.3963382924814 0 \N \N f 0 \N 22 196217126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442366 2024-02-28 16:46:12.762 2024-02-28 16:56:14.851 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make https://example.com/ 18751 442356 441553.442229.442350.442356.442366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.070365956639 0 \N \N f 0 \N 0 22341081 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N 442229 2024-02-28 15:46:16.554 2024-02-28 15:56:18.376 \N Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. https://example.com/ 4570 441553 441553.442229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2693220712201 0 \N \N f 0 \N 3 137846666 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N 442678 2024-02-28 20:39:22.928 2024-02-28 20:49:24.478 Knowledge figure draw. Billion Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority. https://example.com/ 9820 \N 442678 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.9126872491806 0 \N \N f 0 \N 1 127998828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442356 2024-02-28 16:40:01.731 2024-02-28 16:50:02.996 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven o https://example.com/ 16229 442350 441553.442229.442350.442356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5459892204765 0 \N \N f 0 \N 1 41938925 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N 442412 2024-02-28 17:02:42.338 2024-02-28 17:12:44.166 \N Involve morning s https://example.com/ 12562 442380 442084.442380.442412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0533754789268315 0 \N \N f 0 \N 0 22199283 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 116011 2023-01-01 20:23:17.576 2023-01-01 20:23:17.576 Radio collection cl They wide job. Hit part https://example.com/ 20326 \N 116011 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2498493818877 0 \N \N f 0 \N 2 41843806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 116120 2023-01-02 03:27:11.678 2023-01-02 03:27:11.678 Guy help bo Success against price. Resource end yeah step https://example.com/ 15088 \N 116120 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.3288278072138 0 \N \N f 0 \N 4 117773597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442350 2024-02-28 16:36:23.331 2024-02-28 16:46:25.247 \N Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight https://example.com/ 21514 442229 441553.442229.442350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1991214588343 0 \N \N f 0 \N 2 61000535 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N 431070 2024-02-19 17:29:01.127 2024-02-19 17:39:02.942 \N Clear sugge https://example.com/ 2437 431009 429199.431009.431070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3656965659735 0 \N \N f 0 \N 0 181646651 0 f f \N \N \N \N 429199 \N 0 0 \N \N f \N 431009 2024-02-19 17:21:24.757 2024-02-19 17:31:25.962 \N American argue three local car https://example.com/ 14195 429199 429199.431009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9236030572138 0 \N \N f 0 \N 1 134117038 0 f f \N \N \N \N 429199 \N 0 0 \N \N f \N 437835 2024-02-25 01:30:59.01 2024-02-25 01:41:00.143 Health catch toward hair I. Amount to smil Operation against song book rise hard. Attorney issue game day https://example.com/ 2206 \N 437835 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 3.75124005233314 0 \N \N f 0 \N 0 159851043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435608 2024-02-22 22:24:20.033 2024-02-22 22:34:22.001 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report https://example.com/ 19664 435551 435551.435608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1592834759541 0 \N \N f 0 \N 3 222908928 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 443319 2024-02-29 11:14:42.136 2024-02-29 11:24:44.119 Republican total impact of. North office pa Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nSell hundred beautiful up claim. Clear be https://example.com/ 6573 \N 443319 \N \N \N \N \N \N \N \N security \N ACTIVE \N 20.3184865506759 0 \N \N f 0 \N 5 117923448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436149 2024-02-23 13:07:39.341 2024-02-23 13:17:40.516 Hotel blood consumer spend college. Know bank mind political busin Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting. https://example.com/ 20614 \N 436149 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.49993353156372 0 \N \N f 0 \N 0 85547318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442796 2024-02-28 22:32:30 2024-02-28 22:42:32.135 Accept nation he. Work plan maintain rather green idea. Different tho Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there. https://example.com/ 20523 \N 442796 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7995321081528 0 \N \N f 0 \N 10 171917533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443667 2024-02-29 15:15:42.112 2024-02-29 15:25:43.915 Return bag discover indi Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rath https://example.com/ 18583 \N 443667 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 27.9877078874476 0 \N \N f 0 \N 4 75462487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431133 2024-02-19 17:46:55.328 2024-02-19 17:56:56.172 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side direct https://example.com/ 13878 430607 430607.431133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.84826079228969 0 \N \N f 0 \N 0 92857570 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 443122 2024-02-29 06:35:17.288 2024-02-29 06:45:18.684 Operation against song book rise hard. Attorney issue game da Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote https://example.com/ 19546 \N 443122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.06242531111732 0 \N \N f 0 \N 4 231766308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442513 2024-02-28 18:04:37.898 2024-02-28 18:14:39.445 Oil fast organization discussion board nation hotel. Recent challenge style Am Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least p https://example.com/ 21357 \N 442513 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.9337668840977 0 \N \N f 0 \N 7 220002879 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437190 2024-02-24 13:38:01.863 2024-02-24 13:48:02.9 South little trip identify similar. Because accept leave lin Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service https://example.com/ 1480 \N 437190 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.9339424515488 0 \N \N f 0 \N 5 115084257 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444586 2024-03-01 05:34:24.465 2024-03-01 05:44:25.66 Beyond leg century level herself those. Significant gr Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before b https://example.com/ 10519 \N 444586 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.3944920927619 0 \N \N f 0 \N 3 175054226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444162 2024-02-29 19:55:51.434 2024-02-29 20:05:52.365 Ten throw trip up region place painting. House many unit win just stage season Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree https://example.com/ 1650 \N 444162 \N \N \N \N \N \N \N \N health \N ACTIVE \N 15.2188497434658 0 \N \N f 0 \N 2 239578590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438121 2024-02-25 11:27:34.51 2024-02-25 11:37:36.983 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must d https://example.com/ 721 438083 437723.437880.438075.438083.438121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6309818062383 0 \N \N f 0 \N 0 247282683 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 442669 2024-02-28 20:33:50.175 2024-02-28 20:43:51.4 Small enjoy manage service individual down. Season science various level benefi Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality. https://example.com/ 18230 \N 442669 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 24.2426999795159 0 \N \N f 0 \N 0 17928404 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442380 2024-02-28 16:52:29.562 2024-02-28 17:02:30.745 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw d https://example.com/ 964 442084 442084.442380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3750347708792 0 \N \N f 0 \N 1 127113191 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 438080 2024-02-25 10:41:32.375 2024-02-25 10:51:33.468 \N Who collection suggest pra https://example.com/ 2734 437840 437840.438080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6982466335769 0 \N \N f 0 \N 0 100085418 0 f f \N \N \N \N 437840 \N 0 0 \N \N f \N 442618 2024-02-28 19:58:57.28 2024-02-28 20:08:58.649 Forget issue save education. Head of fac Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. https://example.com/ 21514 \N 442618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.47884142658065 0 \N \N f 0 \N 2 89252681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443396 2024-02-29 12:34:04.104 2024-02-29 12:44:05.473 Member I discover option technology recognize espe Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple https://example.com/ 21212 \N 443396 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.9006582032753 0 \N \N f 0 \N 2 197034625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442973 2024-02-29 01:45:19.156 2024-02-29 01:55:21.151 Sell hundred beautiful up claim. Clear benefit material send. Govern Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often https://example.com/ 4175 \N 442973 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.28242545465842 0 \N \N f 0 \N 4 82724939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431184 2024-02-19 18:14:21.597 2024-02-19 18:24:22.767 \N That field beautiful American https://example.com/ 14663 406917 406917.431184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9198736163916 0 \N \N f 0 \N 0 125821154 0 f f \N \N \N \N 406917 \N 0 0 \N \N f \N 431177 2024-02-19 18:13:52.295 2024-02-19 18:23:53.391 \N Man talk ar https://example.com/ 716 431172 431167.431172.431177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.592585535928691 0 \N \N f 0 \N 0 8715863 0 f f \N \N \N \N 431167 \N 0 0 \N \N f \N 431172 2024-02-19 18:10:38.026 2024-02-19 18:20:39.506 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace https://example.com/ 21131 431167 431167.431172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7281874785735 0 \N \N f 0 \N 1 181606920 0 f f \N \N \N \N 431167 \N 0 0 \N \N f \N 444114 2024-02-29 19:25:54.839 2024-02-29 19:35:56.497 Together tree bar tonight. Safe admit kn Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nEntire money chair between various plant. Cut y https://example.com/ 671 \N 444114 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.468655730437 0 \N \N f 0 \N 16 184342662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444668 2024-03-01 08:28:28.654 2024-03-01 08:38:30.042 \N C https://example.com/ 21387 442313 442313.444668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.56790747196173 0 \N \N f 0 \N 0 60512002 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 431306 2024-02-19 18:32:37.887 2024-02-19 18:42:39.014 \N Director policy industry. Degr https://example.com/ 680 380189 380189.431306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0355145372735 0 \N \N f 0 \N 0 141737857 0 f f \N \N \N \N 380189 \N 0 0 \N \N f \N 431313 2024-02-19 18:32:57.203 2024-02-19 18:42:58.768 \N Plant ever Republican together https://example.com/ 831 378862 378862.431313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7479251045559 0 \N \N f 0 \N 0 245747115 0 f f \N \N \N \N 378862 \N 0 0 \N \N f \N 431310 2024-02-19 18:32:49.659 2024-02-19 18:42:50.748 \N Apply president organization r https://example.com/ 16965 379165 379165.431310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47610479461641 0 \N \N f 0 \N 0 238965227 0 f f \N \N \N \N 379165 \N 0 0 \N \N f \N 431151 2024-02-19 17:59:32.892 2024-02-19 18:09:34.479 \N Power billion method wide. Person play play thousand seem crime crime although. Which mou https://example.com/ 12289 431109 431109.431151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5284212974181 0 \N \N f 0 \N 1 142453167 0 f f \N \N \N \N 431109 \N 0 0 \N \N f \N 431316 2024-02-19 18:33:05.207 2024-02-19 18:43:06.789 \N Rule hope accept blue. Firm pe https://example.com/ 3213 378425 378425.431316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4691145887267 0 \N \N f 0 \N 0 231720471 0 f f \N \N \N \N 378425 \N 0 0 \N \N f \N 431319 2024-02-19 18:33:15.245 2024-02-19 18:43:17.685 \N Top group country tree light c https://example.com/ 5779 387401 387401.431319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65528021593533 0 \N \N f 0 \N 0 162670662 0 f f \N \N \N \N 387401 \N 0 0 \N \N f \N 431321 2024-02-19 18:33:19.656 2024-02-19 18:43:20.835 \N Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nAuthor https://example.com/ 21275 431165 431139.431165.431321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3931070330031 0 \N \N f 0 \N 0 185583800 0 f f \N \N \N \N 431139 \N 0 0 \N \N f \N 431323 2024-02-19 18:33:23.15 2024-02-19 18:43:24.84 \N Develop receive back PM. Use a https://example.com/ 8544 389769 389769.431323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5222829774249 0 \N \N f 0 \N 0 135438797 0 f f \N \N \N \N 389769 \N 0 0 \N \N f \N 431328 2024-02-19 18:33:37.568 2024-02-19 18:43:38.882 \N Almost about me amount daughte https://example.com/ 20776 391033 391033.431328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.18120304674711 0 \N \N f 0 \N 0 76633130 0 f f \N \N \N \N 391033 \N 0 0 \N \N f \N 431331 2024-02-19 18:33:47.605 2024-02-19 18:43:48.995 \N Need huge foreign thing coach https://example.com/ 739 391827 391827.431331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8245787392294 0 \N \N f 0 \N 0 238924218 0 f f \N \N \N \N 391827 \N 0 0 \N \N f \N 431333 2024-02-19 18:33:53.185 2024-02-19 18:43:55.039 \N Stock short may one soldier ta https://example.com/ 19142 392015 392015.431333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.852439920657808 0 \N \N f 0 \N 0 36681135 0 f f \N \N \N \N 392015 \N 0 0 \N \N f \N 431336 2024-02-19 18:34:45.917 2024-02-19 18:44:47.072 \N Stage can fish building senior https://example.com/ 11220 374514 374514.431336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4456128189377 0 \N \N f 0 \N 0 80808396 0 f f \N \N \N \N 374514 \N 0 0 \N \N f \N 431339 2024-02-19 18:35:01.302 2024-02-19 18:45:02.972 \N Later piece skin environmental https://example.com/ 18040 373942 373942.431339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62627983094982 0 \N \N f 0 \N 0 79622498 0 f f \N \N \N \N 373942 \N 0 0 \N \N f \N 431340 2024-02-19 18:35:03.938 2024-02-19 18:45:04.994 \N Help out doctor wait. Early ce https://example.com/ 960 373935 373935.431340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.66977870807958 0 \N \N f 0 \N 0 215657565 0 f f \N \N \N \N 373935 \N 0 0 \N \N f \N 431351 2024-02-19 18:35:35.744 2024-02-19 18:45:36.978 \N Service technology include stu https://example.com/ 12965 372052 372052.431351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81771788565447 0 \N \N f 0 \N 0 141581510 0 f f \N \N \N \N 372052 \N 0 0 \N \N f \N 431354 2024-02-19 18:35:45.57 2024-02-19 18:45:46.993 \N Reality deal sort professional https://example.com/ 705 371110 371110.431354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40432815817933 0 \N \N f 0 \N 0 111910524 0 f f \N \N \N \N 371110 \N 0 0 \N \N f \N 431358 2024-02-19 18:35:57.33 2024-02-19 18:45:59.04 \N Environment very hospital poin https://example.com/ 8326 370366 370366.431358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.222895316318 0 \N \N f 0 \N 0 45896426 0 f f \N \N \N \N 370366 \N 0 0 \N \N f \N 431361 2024-02-19 18:36:05.415 2024-02-19 18:46:07.155 \N Billion deep other first finan https://example.com/ 2749 369951 369951.431361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6445848484149 0 \N \N f 0 \N 0 209468976 0 f f \N \N \N \N 369951 \N 0 0 \N \N f \N 438059 2024-02-25 10:08:40.326 2024-02-25 10:18:41.43 \N Special identify senior differenc https://example.com/ 5359 437946 437946.438059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2049501874106 0 \N \N f 0 \N 0 194401983 0 f f \N \N \N \N 437946 \N 0 0 \N \N f \N 438060 2024-02-25 10:09:07.56 2024-02-25 10:19:09.148 \N Wish low party shake. National of https://example.com/ 21047 437891 437891.438060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4109560145537 0 \N \N f 0 \N 0 217383243 0 f f \N \N \N \N 437891 \N 0 0 \N \N f \N 431365 2024-02-19 18:36:17.444 2024-02-19 18:46:19.041 \N Plant strong west enjoy. Those https://example.com/ 18387 375443 375443.431365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3625575637738 0 \N \N f 0 \N 0 224491618 0 f f \N \N \N \N 375443 \N 0 0 \N \N f \N 431373 2024-02-19 18:36:41.141 2024-02-19 18:46:43.076 \N Region model over box relate c https://example.com/ 11821 376979 376979.431373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6713921621941 0 \N \N f 0 \N 0 227927964 0 f f \N \N \N \N 376979 \N 0 0 \N \N f \N 431374 2024-02-19 18:36:43.594 2024-02-19 18:46:45.073 \N It fly over audience when guy https://example.com/ 691 377197 377197.431374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6567358892767 0 \N \N f 0 \N 0 157981682 0 f f \N \N \N \N 377197 \N 0 0 \N \N f \N 438061 2024-02-25 10:10:28.181 2024-02-25 10:20:29.143 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American https://example.com/ 16341 437888 437888.438061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9762416093806 0 \N \N f 0 \N 0 127578995 0 f f \N \N \N \N 437888 \N 0 0 \N \N f \N 444572 2024-03-01 05:16:07.851 2024-03-01 08:49:34.498 Book ok power chu Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas. https://example.com/ 21214 \N 444572 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.99226649571987 0 \N \N f 0 \N 0 146957790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431549 2024-02-19 19:09:19.975 2024-02-19 19:19:21.56 \N Measure would expert nation tw https://example.com/ 9 338804 338804.431549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8940422003071 0 \N \N f 0 \N 0 229051679 0 f f \N \N \N \N 338804 \N 0 0 \N \N f \N 444599 2024-03-01 06:02:48.514 2024-03-01 06:12:50.095 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nDetail economy still https://example.com/ 19502 444586 444586.444599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.824018978045 0 \N \N f 0 \N 0 68241206 0 f f \N \N \N \N 444586 \N 0 0 \N \N f \N 31515 2022-05-25 16:10:19.293 2023-10-02 01:15:45.302 Network authority coach through modern It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious https://example.com/ 19189 \N 31515 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1191104518419 0 \N \N f 0 \N 20 64202303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438101 2024-02-25 11:11:28.385 2024-02-25 11:21:30.729 \N Par https://example.com/ 20080 437775 437775.438101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49892238820452 0 \N \N f 0 \N 0 55142779 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 438097 2024-02-25 11:05:40.688 2024-02-25 11:15:43.055 \N Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nBegin kind https://example.com/ 19857 380889 380889.438097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7389862436758 0 \N \N f 0 \N 0 202248169 0 f f \N \N \N \N 380889 \N 0 0 \N \N f \N 438095 2024-02-25 11:00:05.632 2024-02-25 11:00:10.681 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through https://example.com/ 17201 438094 438094.438095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.45264945117188 0 \N \N f 0 \N 0 19847704 0 f f \N \N \N \N 438094 \N 0 0 \N \N f \N 444604 2024-03-01 06:06:25.085 2024-03-01 06:16:26.69 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk coll https://example.com/ 20551 444597 444597.444604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.38462974933065 0 \N \N f 0 \N 0 149934334 0 f f \N \N \N \N 444597 \N 0 0 \N \N f \N 444601 2024-03-01 06:03:46.144 2024-03-01 06:13:47.715 \N Treatment https://example.com/ 17976 444274 443577.444274.444601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.123718269746 0 \N \N f 0 \N 0 228522485 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 431271 2024-02-19 18:22:33.845 2024-02-19 18:32:35.441 \N Become season style here. Part https://example.com/ 760 384668 384668.431271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5543623851841 0 \N \N f 0 \N 0 71803009 0 f f \N \N \N \N 384668 \N 0 0 \N \N f \N 431263 2024-02-19 18:22:14.152 2024-02-19 18:32:15.249 \N Method same car buy side. Pric https://example.com/ 14381 386385 386385.431263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5928153646547 0 \N \N f 0 \N 0 77403653 0 f f \N \N \N \N 386385 \N 0 0 \N \N f \N 437963 2024-02-25 06:00:35.894 2024-02-25 06:10:38.72 Own machine tabl Return bag discover indicate record tax occur. Interview g https://example.com/ 19463 \N 437963 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 14.8322239719067 0 \N \N f 0 \N 3 58761393 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438103 2024-02-25 11:13:53.153 2024-02-25 11:23:54.94 \N Church listen our call couple rise beyond question. https://example.com/ 658 437963 437963.438103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9778149879986 0 \N \N f 0 \N 0 191565799 0 f f \N \N \N \N 437963 \N 0 0 \N \N f \N 47539 2022-07-20 21:16:13.993 2023-10-02 04:47:36.337 View especially nation nor third Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. https://example.com/ 21164 \N 47539 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.2798728879138 0 \N \N f 0 \N 11 197665640 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 70725 2022-09-16 10:00:33.791 2023-10-02 09:16:36.214 Never heavy table particularly land key base. New Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number wat https://example.com/ 8796 \N 70725 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9671529818595 0 \N \N f 0 \N 21 55233577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431414 2024-02-19 18:59:21.532 2024-02-19 19:09:23.669 \N Them bag because parent see. Y https://example.com/ 15273 364004 364004.431414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9101512619072 0 \N \N f 0 \N 0 241057928 0 f f \N \N \N \N 364004 \N 0 0 \N \N f \N 443399 2024-02-29 12:35:02.761 2024-02-29 12:45:04.635 May building suffer accept thousand Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Envir https://example.com/ 15139 \N 443399 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 22.3664093574845 0 \N \N f 0 \N 21 143838748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431563 2024-02-19 19:10:35.91 2024-02-19 19:20:37.704 Detail economy still boy fine in series. Bring pro A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact. https://example.com/ 15161 \N 431563 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.13985786948959 0 \N \N f 0 \N 1 193469248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431441 2024-02-19 19:01:02.72 2024-02-19 19:11:04.033 \N Front color executive find hot https://example.com/ 15588 360156 360156.431441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0590898623677 0 \N \N f 0 \N 0 142256891 0 f f \N \N \N \N 360156 \N 0 0 \N \N f \N 431442 2024-02-19 19:01:05.282 2024-02-19 19:11:06.524 \N About easy answer glass. Fire https://example.com/ 762 360010 360010.431442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7215918674128 0 \N \N f 0 \N 0 134176850 0 f f \N \N \N \N 360010 \N 0 0 \N \N f \N 431443 2024-02-19 19:01:07.832 2024-02-19 19:11:09.532 \N Game management go ready star https://example.com/ 2528 359242 359242.431443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.02085452091701 0 \N \N f 0 \N 0 34644662 0 f f \N \N \N \N 359242 \N 0 0 \N \N f \N 431445 2024-02-19 19:01:13.046 2024-02-19 19:11:14.553 \N Line trade last nature number https://example.com/ 20555 358858 358858.431445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5178935466701 0 \N \N f 0 \N 0 21009639 0 f f \N \N \N \N 358858 \N 0 0 \N \N f \N 431448 2024-02-19 19:01:20.895 2024-02-19 19:11:22.195 \N Quickly fill science from poli https://example.com/ 19735 365991 365991.431448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.93815892947557 0 \N \N f 0 \N 0 130017283 0 f f \N \N \N \N 365991 \N 0 0 \N \N f \N 431449 2024-02-19 19:01:23.67 2024-02-19 19:11:24.569 \N Direction poor if however prop https://example.com/ 20563 366140 366140.431449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9560427631366 0 \N \N f 0 \N 0 50279014 0 f f \N \N \N \N 366140 \N 0 0 \N \N f \N 444558 2024-03-01 04:42:18.9 2024-03-01 04:52:20.897 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie t https://example.com/ 18016 443577 443577.444558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0445213367993 0 \N \N f 0 \N 1 138759022 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 438217 2024-02-25 13:14:25.587 2024-02-25 13:24:26.962 \N Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. https://example.com/ 10393 437929 437923.437929.438217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6205094393259 0 \N \N f 0 \N 0 184950978 0 f f \N \N \N \N 437923 \N 0 0 \N \N f \N 438263 2024-02-25 13:56:19.665 2024-02-25 14:06:20.814 \N Nature cell fact health. Fire pressure face. Expect think everyt https://example.com/ 21104 438252 438249.438252.438263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0734073371905 0 \N \N f 0 \N 0 217182350 0 f f \N \N \N \N 438249 \N 0 0 \N \N f \N 431450 2024-02-19 19:01:26.656 2024-02-19 19:11:27.573 \N Eat culture event thus any eve https://example.com/ 9655 366545 366545.431450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1057303922046 0 \N \N f 0 \N 0 204539927 0 f f \N \N \N \N 366545 \N 0 0 \N \N f \N 443577 2024-02-29 14:36:50.308 2024-02-29 14:46:52.029 Board collection beat and worry. Tra Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nBag couple hot buy yourself serv https://example.com/ 19907 \N 443577 \N \N \N \N \N \N \N \N health \N ACTIVE \N 8.92866481505866 0 \N \N f 0 \N 78 156689066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431273 2024-02-19 18:22:42.951 2024-02-19 18:32:44.153 \N Race site manager blood. Presi https://example.com/ 5694 384239 384239.431273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3261649628179 0 \N \N f 0 \N 0 104549237 0 f f \N \N \N \N 384239 \N 0 0 \N \N f \N 431452 2024-02-19 19:01:32.211 2024-02-19 19:11:33.586 \N Might also begin husband affec https://example.com/ 634 366864 366864.431452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.386252752214 0 \N \N f 0 \N 0 214606502 0 f f \N \N \N \N 366864 \N 0 0 \N \N f \N 431454 2024-02-19 19:01:37.53 2024-02-19 19:11:38.598 \N Drug life detail letter major https://example.com/ 1833 366864 366864.431454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1434316874014 0 \N \N f 0 \N 0 45654008 0 f f \N \N \N \N 366864 \N 0 0 \N \N f \N 431455 2024-02-19 19:01:40.737 2024-02-19 19:11:41.607 \N Happen should somebody world s https://example.com/ 7510 366891 366891.431455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9774004620253 0 \N \N f 0 \N 0 36665902 0 f f \N \N \N \N 366891 \N 0 0 \N \N f \N 431456 2024-02-19 19:01:44.072 2024-02-19 19:11:45.558 \N Any new necessary low. Option https://example.com/ 21159 366901 366901.431456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.76451867450768 0 \N \N f 0 \N 0 53862116 0 f f \N \N \N \N 366901 \N 0 0 \N \N f \N 431457 2024-02-19 19:01:48.648 2024-02-19 19:11:49.674 \N Scientist light the everything https://example.com/ 8505 367016 367016.431457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4087256046774 0 \N \N f 0 \N 0 61315277 0 f f \N \N \N \N 367016 \N 0 0 \N \N f \N 2487 2021-09-25 00:01:30.269 2023-10-01 23:51:50.4 Build learn name Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Musi https://example.com/ 18008 \N 2487 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.45804366742588 0 \N \N f 0 \N 1 216116278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431407 2024-02-19 18:58:05.442 2024-02-19 19:08:07.665 \N Not find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Cong https://example.com/ 20243 431382 413007.430173.430605.430985.431110.431382.431407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9114262600041 0 \N \N f 0 \N 0 11959045 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 431268 2024-02-19 18:22:27.182 2024-02-19 18:32:28.38 \N Civil attorney sell amount. Fi https://example.com/ 681 385457 385457.431268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9186882596813 0 \N \N f 0 \N 0 104509069 0 f f \N \N \N \N 385457 \N 0 0 \N \N f \N 431272 2024-02-19 18:22:37.868 2024-02-19 18:32:39.469 \N Lay garden sing air theory. It https://example.com/ 1489 384627 384627.431272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6843780908851 0 \N \N f 0 \N 0 71390894 0 f f \N \N \N \N 384627 \N 0 0 \N \N f \N 438323 2024-02-25 14:53:07.974 2024-02-25 15:03:09.297 \N Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Weste https://example.com/ 13553 438232 438232.438323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2904257670624 0 \N \N f 0 \N 0 104153451 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 431282 2024-02-19 18:23:10.876 2024-02-19 18:33:11.912 \N Focus available yeah law. Down https://example.com/ 20623 382801 382801.431282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.48211560746675 0 \N \N f 0 \N 0 226333993 0 f f \N \N \N \N 382801 \N 0 0 \N \N f \N 438346 2024-02-25 15:05:41.135 2024-02-25 15:15:42.957 \N Success against price. Resource end yeah step bit support. Common hour https://example.com/ 14255 438319 438319.438346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7561470622009 0 \N \N f 0 \N 0 87653969 0 f f \N \N \N \N 438319 \N 0 0 \N \N f \N 434563 2024-02-22 05:11:29.003 2024-02-22 05:21:30.901 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer cha https://example.com/ 17001 433217 433217.434563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87399654141375 0 \N \N f 0 \N 0 79482604 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 444581 2024-03-01 05:30:05.352 2024-03-01 05:40:07.059 \N By evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site stu https://example.com/ 15103 443372 443372.444581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0725020900986 0 \N \N f 0 \N 0 213476838 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 433607 2024-02-21 11:13:13.959 2024-02-21 11:23:15.352 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance ol https://example.com/ 18956 433444 433217.433347.433444.433607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9137170067965 0 \N \N f 0 \N 6 97522165 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 444478 2024-03-01 01:23:27.137 2024-03-01 01:33:29.418 \N Debate physical difference without Mrs price final. Nice nation https://example.com/ 20495 443799 443799.444478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.458044276236 0 \N \N f 0 \N 0 197305 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 431312 2024-02-19 18:32:54.649 2024-02-19 18:42:55.763 \N Focus area mean. Sometimes res https://example.com/ 18784 378914 378914.431312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6452855409583 0 \N \N f 0 \N 0 152431486 0 f f \N \N \N \N 378914 \N 0 0 \N \N f \N 444699 2024-03-01 09:57:00.201 2024-03-01 10:07:02.551 \N Material arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nPrevent machine source white and. Fact together https://example.com/ 18174 444698 444698.444699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1821839982553 0 \N \N f 0 \N 0 43528926 0 f f \N \N \N \N 444698 \N 0 0 \N \N f \N 431302 2024-02-19 18:32:22.182 2024-02-19 18:42:23.852 \N Author professional find face https://example.com/ 14385 381228 381228.431302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7447913998977 0 \N \N f 0 \N 0 71905079 0 f f \N \N \N \N 381228 \N 0 0 \N \N f \N 444708 2024-03-01 10:07:14.379 2024-03-01 10:17:16.26 \N Foot not wonder https://example.com/ 18235 444701 444700.444701.444708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4218088133626 0 \N \N f 0 \N 0 219010599 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 444712 2024-03-01 10:11:36.267 2024-03-01 10:21:37.385 \N Body situation without keep fi https://example.com/ 4314 444560 444384.444560.444712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.917649039327202 0 \N \N f 0 \N 0 134689580 0 f f \N \N \N \N 444384 \N 0 0 \N \N f \N 3291 2021-10-10 12:40:14.61 2023-10-01 23:52:53.633 Door wrong und Until must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evid https://example.com/ 8954 \N 3291 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.88279353679986 0 \N \N f 0 \N 11 191308772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444624 2024-03-01 06:36:37.285 2024-03-01 06:46:38.216 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budg https://example.com/ 10668 444168 444168.444624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.76001565021846 0 \N \N f 0 \N 0 197290243 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444459 2024-03-01 00:45:34.103 2024-03-01 00:55:35.555 \N Scientist machine manager. Place movem https://example.com/ 9833 443799 443799.444459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1000009393913 0 \N \N f 0 \N 0 211347818 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 436309 2024-02-23 15:21:44.327 2024-02-23 15:31:47.269 \N Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nDeta https://example.com/ 10549 436034 330698.330774.434596.435793.435890.436034.436309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3183418032357 0 \N \N f 0 \N 0 77938461 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 444611 2024-03-01 06:19:53.721 2024-03-01 06:29:55.908 \N Drug you class operation. Have job sense. Face thank facto https://example.com/ 18274 444597 444597.444611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6760418423982 0 \N \N f 0 \N 0 16194302 0 f f \N \N \N \N 444597 \N 0 0 \N \N f \N 444612 2024-03-01 06:20:14.556 2024-03-01 06:30:15.841 \N We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environm https://example.com/ 5978 444586 444586.444612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0729689164624 0 \N \N f 0 \N 0 221052608 0 f f \N \N \N \N 444586 \N 0 0 \N \N f \N 431342 2024-02-19 18:35:09.024 2024-02-19 18:45:10.282 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn https://example.com/ 1741 431128 430279.430289.430291.430928.431089.431128.431342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2760112330951 0 \N \N f 0 \N 0 37555398 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 444686 2024-03-01 09:25:04.761 2024-03-01 09:35:05.787 Necessary hold quite on prove She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer. https://example.com/ 19105 \N 444686 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 0.642499575614686 0 \N \N f 0 \N 0 131979785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444540 2024-03-01 03:53:02.584 2024-03-01 04:03:04.088 \N Machine thus avoid result sing response. Leader outside bit wai https://example.com/ 15890 444519 444519.444540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.66773261346991 0 \N \N f 0 \N 0 124092053 0 f f \N \N \N \N 444519 \N 0 0 \N \N f \N 444465 2024-03-01 00:57:44.838 2024-03-01 01:07:47.179 Person like among former sort. Only population law conference. Themselves ea Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred. https://example.com/ 17541 \N 444465 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 24.0997062282826 0 \N \N f 0 \N 1 33930607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3350 2021-10-11 18:47:17.225 2023-12-15 17:19:32.662 Door visit Story do plant g https://example.com/ 17183 \N 3350 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5343294734628 0 \N \N f 0 \N 8 19887793 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444679 2024-03-01 08:59:20.917 2024-03-01 09:09:21.574 Have decide business throw source strong town line. Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed. https://example.com/ 20602 \N 444679 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5516942073465 0 \N \N f 0 \N 0 148385225 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436236 2024-02-23 14:21:08.269 2024-02-23 14:31:09.658 \N Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point p https://example.com/ 20117 436213 436213.436236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5810139075965 0 \N \N f 0 \N 1 137381171 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N 440592 2024-02-27 14:22:48.71 2024-02-27 14:32:50.04 \N About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nRate thought reason si https://example.com/ 2576 440472 440472.440592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1886709367121 0 \N \N f 0 \N 1 59372794 0 f f \N \N \N \N 440472 \N 0 0 \N \N f \N 431343 2024-02-19 18:35:10.227 2024-02-19 18:45:11.288 \N Them reflect instead color. Pu https://example.com/ 18517 373636 373636.431343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4645074178706 0 \N \N f 0 \N 0 86178977 0 f f \N \N \N \N 373636 \N 0 0 \N \N f \N 444614 2024-03-01 06:23:21.319 2024-03-01 06:33:23.082 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page ski https://example.com/ 19537 443712 443712.444614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3346757062589 0 \N \N f 0 \N 0 138938476 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 3389 2021-10-12 11:48:54.219 2023-10-01 23:52:57.117 Industry gre Because fear practice p https://example.com/ 20825 \N 3389 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7899274053616 0 \N \N f 0 \N 1 246647832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3723 2021-10-21 08:02:55.835 2023-10-01 23:53:25.352 Lead against ar Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game https://example.com/ 14202 \N 3723 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.56492130202789 0 \N \N f 0 \N 2 110831678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431308 2024-02-19 18:32:43.964 2024-02-19 18:42:45.737 \N Lay garden sing air theory. It https://example.com/ 19378 379711 379711.431308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2929040726474 0 \N \N f 0 \N 0 5844616 0 f f \N \N \N \N 379711 \N 0 0 \N \N f \N 431309 2024-02-19 18:32:47.131 2024-02-19 18:42:48.739 \N Yes but truth go. Generation a https://example.com/ 13622 379590 379590.431309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5518832016627 0 \N \N f 0 \N 0 194419600 0 f f \N \N \N \N 379590 \N 0 0 \N \N f \N 438140 2024-02-25 11:43:35.474 2024-02-25 11:53:37.496 \N Rise environmental middle fly liste https://example.com/ 19911 437989 437966.437981.437989.438140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5813526721202 0 \N \N f 0 \N 0 120016371 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 431270 2024-02-19 18:22:30.812 2024-02-19 18:32:31.403 \N Hair gas woman next avoid. Blo https://example.com/ 746 385257 385257.431270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3636403080372 0 \N \N f 0 \N 0 212559325 0 f f \N \N \N \N 385257 \N 0 0 \N \N f \N 431274 2024-02-19 18:22:46.779 2024-02-19 18:32:48.161 \N Seven nice notice wife they co https://example.com/ 9985 384191 384191.431274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90485943011596 0 \N \N f 0 \N 0 14709925 0 f f \N \N \N \N 384191 \N 0 0 \N \N f \N 438110 2024-02-25 11:19:53.279 2024-02-25 11:29:54.588 \N South amount subject easy office. Sea force thou https://example.com/ 12609 437233 437233.438110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7691302821509 0 \N \N f 0 \N 0 42407433 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444640 2024-03-01 07:01:46.586 2024-03-01 07:11:48.258 Item attention child take film late. Still next free list. Artist seven one rec Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut. https://example.com/ 21556 \N 444640 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.1402901178167 0 \N \N f 0 \N 1 218771891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431304 2024-02-19 18:32:32.262 2024-02-19 18:42:33.723 \N Mr right bring various. Whose https://example.com/ 1428 380458 380458.431304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22775289413956 0 \N \N f 0 \N 0 46229788 0 f f \N \N \N \N 380458 \N 0 0 \N \N f \N 3734 2021-10-21 15:31:18.958 2023-10-01 23:53:26.784 Although th Never money Congress data single trial. Today water everything reduc https://example.com/ 5694 \N 3734 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.90980686776417 0 \N \N f 0 \N 7 214168453 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444633 2024-03-01 06:54:50.442 2024-03-01 07:04:51.941 Guess join morning man Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. https://example.com/ 4776 \N 444633 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 10.3605183259508 0 \N \N f 0 \N 0 159721346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431314 2024-02-19 18:32:59.879 2024-02-19 18:43:00.774 \N Specific child according. Behi https://example.com/ 17592 378651 378651.431314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.960768591841 0 \N \N f 0 \N 0 172856759 0 f f \N \N \N \N 378651 \N 0 0 \N \N f \N 431311 2024-02-19 18:32:52.195 2024-02-19 18:42:53.396 \N Be human year girl treatment n https://example.com/ 12265 379089 379089.431311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3507862719406 0 \N \N f 0 \N 0 28202536 0 f f \N \N \N \N 379089 \N 0 0 \N \N f \N 442588 2024-02-28 19:21:22.718 2024-02-28 19:31:23.717 Lead against area note movement street push music. Meet world on somethi Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. https://example.com/ 12057 \N 442588 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 6.25031397683831 0 \N \N f 0 \N 4 58833843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431322 2024-02-19 18:33:20.638 2024-02-19 18:43:21.796 \N Any note pick American lead me https://example.com/ 2195 389553 389553.431322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2888277034136 0 \N \N f 0 \N 0 117842011 0 f f \N \N \N \N 389553 \N 0 0 \N \N f \N 438112 2024-02-25 11:22:44.511 2024-02-25 11:32:47.173 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official https://example.com/ 3456 435549 434795.435517.435549.438112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.64118509890968 0 \N \N f 0 \N 0 233497807 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 431324 2024-02-19 18:33:25.877 2024-02-19 18:43:26.847 \N Check worry radio fine stuff. https://example.com/ 16747 389899 389899.431324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2345703277569 0 \N \N f 0 \N 0 1414638 0 f f \N \N \N \N 389899 \N 0 0 \N \N f \N 444606 2024-03-01 06:08:52.395 2024-03-01 06:18:53.516 House west amount. Again high already Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nGo game bar use image. Organization live back front party marriage posi https://example.com/ 21466 \N 444606 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4303883299451 0 \N \N f 0 \N 3 38032219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431128 2024-02-19 17:44:55.889 2024-02-19 17:54:57.017 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much simi https://example.com/ 21451 431089 430279.430289.430291.430928.431089.431128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3461452726378 0 \N \N f 0 \N 1 140725934 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 444534 2024-03-01 03:34:17.877 2024-03-01 03:44:18.493 Direction poor if however proper Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program. https://example.com/ 762 \N 444534 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5755317498906 0 \N \N f 0 \N 0 155610863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431381 2024-02-19 18:41:35.417 2024-02-19 18:51:37.265 \N Top however address today. Centu https://example.com/ 997 430538 430496.430538.431381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.31139501877376 0 \N \N f 0 \N 0 146772793 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 436256 2024-02-23 14:32:56.443 2024-02-23 14:42:57.853 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. M https://example.com/ 21233 436241 436241.436256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47814081252439 0 \N \N f 0 \N 0 121656094 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436106 2024-02-23 12:38:31.888 2024-02-23 12:48:33.496 \N Job stage use material manage. Perhaps nothing projec https://example.com/ 11395 436053 436028.436053.436106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1267246804709 0 \N \N f 0 \N 1 91556802 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 431357 2024-02-19 18:35:54.474 2024-02-19 18:45:55.546 \N Push hair specific policy. We https://example.com/ 20222 370518 370518.431357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2519588207439 0 \N \N f 0 \N 0 175807054 0 f f \N \N \N \N 370518 \N 0 0 \N \N f \N 441112 2024-02-27 21:20:40.125 2024-02-27 21:30:41.721 \N Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultu https://example.com/ 19995 440137 439970.440137.441112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78643961598396 0 \N \N f 0 \N 0 37982450 0 f f \N \N \N \N 439970 \N 0 0 \N \N f \N 431489 2024-02-19 19:05:25.712 2024-02-19 19:15:26.856 \N Garden serve these speak manag https://example.com/ 20511 351251 351251.431489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8664149039134 0 \N \N f 0 \N 0 61947906 0 f f \N \N \N \N 351251 \N 0 0 \N \N f \N 440446 2024-02-27 11:14:11.43 2024-02-27 11:24:12.8 \N Few system pick down where pull us. Out to relate none. R https://example.com/ 19664 440056 440056.440446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.81624078663709 0 \N \N f 0 \N 1 159922353 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 441110 2024-02-27 21:19:26.716 2024-02-27 21:29:27.997 \N Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today stra https://example.com/ 913 441087 441087.441110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6129968145813 0 \N \N f 0 \N 0 125780602 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 444692 2024-03-01 09:42:43.275 2024-03-01 09:52:44.37 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysi https://example.com/ 17082 444687 444687.444692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.71949976727804 0 \N \N f 0 \N 1 43497948 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 431346 2024-02-19 18:35:20.556 2024-02-19 18:45:21.354 \N Because fear practice program https://example.com/ 11144 372815 372815.431346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64665121365997 0 \N \N f 0 \N 0 118730224 0 f f \N \N \N \N 372815 \N 0 0 \N \N f \N 431348 2024-02-19 18:35:26.121 2024-02-19 18:45:27.413 \N Smile debate least force simpl https://example.com/ 17226 372287 372287.431348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8115944462222 0 \N \N f 0 \N 0 527360 0 f f \N \N \N \N 372287 \N 0 0 \N \N f \N 431349 2024-02-19 18:35:28.921 2024-02-19 18:45:30.461 \N Yard subject low series seriou https://example.com/ 19030 372279 372279.431349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.38724962910026 0 \N \N f 0 \N 0 230474632 0 f f \N \N \N \N 372279 \N 0 0 \N \N f \N 444428 2024-02-29 23:55:12.248 2024-03-01 00:05:14.217 Off class property ok t Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none. https://example.com/ 18714 \N 444428 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2647248621065 0 \N \N f 0 \N 0 78800416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438987 2024-02-26 08:51:00.571 2024-02-26 09:01:03.037 Career six also speak of difference Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. https://example.com/ 18330 \N 438987 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 27.469382770865 0 \N \N f 0 \N 0 222134228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431369 2024-02-19 18:36:27.981 2024-02-19 18:46:29.443 \N Key third PM painting wrong ge https://example.com/ 814 376141 376141.431369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.36476487701747 0 \N \N f 0 \N 0 127432144 0 f f \N \N \N \N 376141 \N 0 0 \N \N f \N 436195 2024-02-23 13:43:16.506 2024-02-23 13:53:17.995 Themselves table various administration single save. Unt Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment ca https://example.com/ 16808 \N 436195 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 20.4552559989926 0 \N \N f 0 \N 0 185295791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438064 2024-02-25 10:12:55.142 2024-02-25 10:22:56.417 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six no https://example.com/ 19570 437645 437645.438064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18943889190439 0 \N \N f 0 \N 0 154268863 0 f f \N \N \N \N 437645 \N 0 0 \N \N f \N 437645 2024-02-24 19:59:43.02 2024-02-24 20:09:44.167 Majority member tend give recent. Degree body five societ Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree. https://example.com/ 2444 \N 437645 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.26123714593388 0 \N \N f 0 \N 1 143949929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438145 2024-02-25 11:49:03.192 2024-02-25 11:59:05.53 Parent always at part must all. Every Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough. https://example.com/ 6164 \N 438145 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3408081408648 0 \N \N f 0 \N 2 75314433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431481 2024-02-19 19:04:08.535 2024-02-19 19:14:09.942 \N Already reduce grow only chanc https://example.com/ 21556 354984 354984.431481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.18060293063481 0 \N \N f 0 \N 0 59043563 0 f f \N \N \N \N 354984 \N 0 0 \N \N f \N 431482 2024-02-19 19:04:11.793 2024-02-19 19:14:13.265 \N Tell difference pattern carry https://example.com/ 620 354674 354674.431482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.87623302925 0 \N \N f 0 \N 0 128676667 0 f f \N \N \N \N 354674 \N 0 0 \N \N f \N 431483 2024-02-19 19:04:14.745 2024-02-19 19:14:15.96 \N Fly run executive. Reach next https://example.com/ 15273 353397 353397.431483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.414480982318 0 \N \N f 0 \N 0 196433899 0 f f \N \N \N \N 353397 \N 0 0 \N \N f \N 431383 2024-02-19 18:42:11.457 2024-02-19 18:52:13.063 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return mo https://example.com/ 15337 430986 430607.430755.430918.430986.431383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5532900214833 0 \N \N f 0 \N 0 7811084 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 3891 2021-10-23 21:38:47.504 2023-10-01 23:53:35.87 Method media and Just study one foot ball. Tv probably among impact. Letter relate within appear. Stud https://example.com/ 14213 \N 3891 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.1123701746355 0 \N \N f 0 \N 1 46428213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3895 2021-10-24 06:35:32.997 2023-10-01 23:53:35.883 Grow last aw Kitchen already store investment https://example.com/ 15510 \N 3895 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3849032205864 0 \N \N f 0 \N 2 70252849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435539 2024-02-22 21:19:42.926 2024-02-22 21:29:44.087 \N Maybe doctor performance sc https://example.com/ 2156 435110 434957.435110.435539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.98637165054805 0 \N \N f 0 \N 0 100181739 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 430986 2024-02-19 17:02:37.368 2024-02-19 17:12:38.632 \N Think month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband tr https://example.com/ 17710 430918 430607.430755.430918.430986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58822476945127 0 \N \N f 0 \N 1 177609506 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 431484 2024-02-19 19:04:17.286 2024-02-19 19:14:18.817 \N Focus area mean. Sometimes res https://example.com/ 811 353013 353013.431484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17993320448484 0 \N \N f 0 \N 0 121359585 0 f f \N \N \N \N 353013 \N 0 0 \N \N f \N 436155 2024-02-23 13:10:37.978 2024-02-23 13:20:39.228 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut list https://example.com/ 18016 435920 435657.435728.435920.436155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5829041299067 0 \N \N f 0 \N 0 211825569 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 441960 2024-02-28 13:54:39.283 2024-02-28 14:04:40.82 \N Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shak https://example.com/ 15662 441937 441661.441934.441937.441960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7145274697843 0 \N \N f 0 \N 2 55576324 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 437989 2024-02-25 07:05:09.309 2024-02-25 07:15:11.016 \N Grow level surface point four. Poor about act upon girl trip international lay. Determi https://example.com/ 21344 437981 437966.437981.437989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.785122260315 0 \N \N f 0 \N 1 124515178 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 442564 2024-02-28 18:54:18.402 2024-02-28 19:04:19.923 \N Night on mention rather nation soldier everything. Herself https://example.com/ 3411 442563 441695.442446.442473.442499.442555.442563.442564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.73438914100752 0 \N \N f 0 \N 0 26606245 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 438128 2024-02-25 11:35:23.406 2024-02-25 11:45:25.151 \N Table fish west wish point expect. Discussion matter threat le https://example.com/ 16442 437720 437720.438128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47418837810363 0 \N \N f 0 \N 0 78676559 0 f f \N \N \N \N 437720 \N 0 0 \N \N f \N 438130 2024-02-25 11:35:50.641 2024-02-25 11:45:52.788 \N Position see least suddenly just order specific. Center build https://example.com/ 998 437723 437723.438130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3109051747929 0 \N \N f 0 \N 0 180842229 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 436037 2024-02-23 11:18:58.2 2024-02-23 11:28:59.885 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particula https://example.com/ 14906 436028 436028.436037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9498857440022 0 \N \N f 0 \N 1 76196554 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 442040 2024-02-28 14:30:16.068 2024-02-28 14:40:17.976 \N Guess join morning man hospital human. Though always according w https://example.com/ 21104 441999 441921.441999.442040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.451331869682 0 \N \N f 0 \N 0 130927140 0 f f \N \N \N \N 441921 \N 0 0 \N \N f \N 436056 2024-02-23 11:36:49.535 2024-02-23 11:46:50.781 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect https://example.com/ 5752 436052 436028.436029.436045.436052.436056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4861625161928 0 \N \N f 0 \N 3 23740993 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 3987 2021-10-24 22:09:36.812 2023-10-01 23:53:36.807 Travel watch north Move treatment rock open. Everything type become employee sit https://example.com/ 16816 \N 3987 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.227971585319 0 \N \N f 0 \N 1 246867825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436052 2024-02-23 11:33:02.931 2024-02-23 11:43:03.91 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce https://example.com/ 21037 436045 436028.436029.436045.436052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3284228984227 0 \N \N f 0 \N 4 23928528 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 435749 2024-02-23 01:45:00.157 2024-02-23 01:55:01.732 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock pus https://example.com/ 2123 435141 435030.435141.435749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15619268890595 0 \N \N f 0 \N 3 60845745 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435898 2024-02-23 06:53:46.292 2024-02-23 07:03:47.897 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oi https://example.com/ 18932 435749 435030.435141.435749.435898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.18644105340235 0 \N \N f 0 \N 2 89370534 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 442151 2024-02-28 15:20:34.696 2024-02-28 15:30:36.324 \N Name everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nPast skin protect than cou https://example.com/ 14385 442134 441514.441640.441653.441733.441961.442134.442151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2439145923927 0 \N \N f 0 \N 0 34469120 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442518 2024-02-28 18:06:32.051 2024-02-28 18:16:33.781 \N Fall health drug child. Throughout information news ten area l https://example.com/ 19967 442480 442023.442480.442518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6374919808064 0 \N \N f 0 \N 0 232425662 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 431264 2024-02-19 18:22:15.956 2024-02-19 18:32:17.266 \N Establis https://example.com/ 16336 431150 431150.431264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6914016709531 0 \N \N f 0 \N 1 101137670 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 441567 2024-02-28 08:18:45.346 2024-02-28 08:28:47.343 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far https://example.com/ 1030 441533 441533.441567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6129412416525 0 \N \N f 0 \N 3 116946410 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 42310 2022-07-07 16:32:57.55 2023-10-02 04:34:28.583 We teacher join same push onto. Gas character each when condition. One ou Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly s https://example.com/ 811 \N 42310 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.84055858417582 0 \N \N f 0 \N 14 13356466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442586 2024-02-28 19:20:48.759 2024-02-28 19:30:50.129 \N Admit difficult figure pare https://example.com/ 11873 441715 441715.442586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.91229120643145 0 \N \N f 0 \N 0 154108047 0 f f \N \N \N \N 441715 \N 0 0 \N \N f \N 435926 2024-02-23 07:44:46.186 2024-02-23 07:54:47.972 Right side resource get. Resu Garden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professo https://example.com/ 7766 \N 435926 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 20.1254975037746 0 \N \N f 0 \N 1 162505752 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47044 2022-07-19 18:04:08.474 2023-10-02 04:46:46.319 \N Size matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge https://example.com/ 20109 47030 47002.47030.47044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9498866037916 0 \N \N f 0 \N 0 205430426 0 f f \N \N \N \N 47002 \N 0 0 \N \N f \N 431500 2024-02-19 19:05:52.971 2024-02-19 19:15:54.453 \N Maybe doctor performance schoo https://example.com/ 8926 357227 357227.431500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.972081538010023 0 \N \N f 0 \N 0 86769360 0 f f \N \N \N \N 357227 \N 0 0 \N \N f \N 431501 2024-02-19 19:05:56.613 2024-02-19 19:15:57.466 \N Prevent machine source white a https://example.com/ 746 357267 357267.431501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6924394102484 0 \N \N f 0 \N 0 122976035 0 f f \N \N \N \N 357267 \N 0 0 \N \N f \N 431502 2024-02-19 19:05:59.054 2024-02-19 19:16:00.482 \N Never money Congress data sing https://example.com/ 20337 357687 357687.431502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6244720697124 0 \N \N f 0 \N 0 80397251 0 f f \N \N \N \N 357687 \N 0 0 \N \N f \N 431504 2024-02-19 19:06:03.894 2024-02-19 19:16:05.49 \N Company kid protect determine https://example.com/ 1729 357846 357846.431504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6495531783887 0 \N \N f 0 \N 0 50439006 0 f f \N \N \N \N 357846 \N 0 0 \N \N f \N 431353 2024-02-19 18:35:42.101 2024-02-19 18:45:43.635 \N Value have anyone crime profes https://example.com/ 16653 371498 371498.431353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.70358542821048 0 \N \N f 0 \N 0 172738113 0 f f \N \N \N \N 371498 \N 0 0 \N \N f \N 431355 2024-02-19 18:35:48.077 2024-02-19 18:45:49.882 \N Myself measure first such real https://example.com/ 21263 370985 370985.431355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.338628413038222 0 \N \N f 0 \N 0 152708028 0 f f \N \N \N \N 370985 \N 0 0 \N \N f \N 431356 2024-02-19 18:35:50.574 2024-02-19 18:45:51.909 \N These world usually ground gro https://example.com/ 21323 370964 370964.431356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.36941723366966 0 \N \N f 0 \N 0 152203068 0 f f \N \N \N \N 370964 \N 0 0 \N \N f \N 431506 2024-02-19 19:06:08.781 2024-02-19 19:16:09.505 \N Try hospital student. Stock fl https://example.com/ 20642 358384 358384.431506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6940964005229 0 \N \N f 0 \N 0 144333209 0 f f \N \N \N \N 358384 \N 0 0 \N \N f \N 47045 2022-07-19 18:05:01.647 2023-10-02 04:46:46.322 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nFirs https://example.com/ 11819 47022 47002.47022.47045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6930018182352 0 \N \N f 0 \N 0 184214047 0 f f \N \N \N \N 47002 \N 0 0 \N \N f \N 47101 2022-07-19 19:35:16.105 2023-10-02 04:46:48.179 Much wait girl sport picture c Right view contain easy someone. People away page experience. Which https://example.com/ 20109 \N 47101 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.1013339110541 0 \N \N f 0 \N 9 48015311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431359 2024-02-19 18:35:59.98 2024-02-19 18:46:02.091 \N Rich account wrong customer wa https://example.com/ 21614 370233 370233.431359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7050944306589 0 \N \N f 0 \N 0 3974636 0 f f \N \N \N \N 370233 \N 0 0 \N \N f \N 431360 2024-02-19 18:36:02.816 2024-02-19 18:46:04.115 \N Theory teach dream home past. https://example.com/ 14472 370103 370103.431360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.41360362520092 0 \N \N f 0 \N 0 1367425 0 f f \N \N \N \N 370103 \N 0 0 \N \N f \N 431364 2024-02-19 18:36:14.826 2024-02-19 18:46:16.29 \N Direction figure between get e https://example.com/ 15858 375312 375312.431364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5279848122361 0 \N \N f 0 \N 0 68063518 0 f f \N \N \N \N 375312 \N 0 0 \N \N f \N 431368 2024-02-19 18:36:24.797 2024-02-19 18:46:26.405 \N Hear direction have instead. R https://example.com/ 18583 375801 375801.431368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0698213778672 0 \N \N f 0 \N 0 135622601 0 f f \N \N \N \N 375801 \N 0 0 \N \N f \N 431376 2024-02-19 18:36:48.777 2024-02-19 18:46:50.096 \N Second point director operatio https://example.com/ 3461 377795 377795.431376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47373563049781 0 \N \N f 0 \N 0 200513366 0 f f \N \N \N \N 377795 \N 0 0 \N \N f \N 431508 2024-02-19 19:06:58.792 2024-02-19 19:16:59.853 \N Trip improve born state simila https://example.com/ 16355 346805 346805.431508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3776653312033 0 \N \N f 0 \N 0 50604665 0 f f \N \N \N \N 346805 \N 0 0 \N \N f \N 444083 2024-02-29 19:01:09.883 2024-02-29 19:11:11.308 \N These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine https://example.com/ 12072 443745 443745.444083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.536126644939 0 \N \N f 0 \N 4 104002959 0 f f \N \N \N \N 443745 \N 0 0 \N \N f \N 431377 2024-02-19 18:37:34.321 2024-02-19 18:47:35.574 Seven nice notice wife they couple. Suff Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water. https://example.com/ 848 \N 431377 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9480276624503 0 \N \N f 0 \N 0 69529272 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438180 2024-02-25 12:24:33.399 2024-02-25 12:34:34.857 \N Price country hour whom over argue Congress upon. Nation baby relate local work https://example.com/ 1970 438065 438065.438180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.96923320772212 0 \N \N f 0 \N 0 82324550 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 431510 2024-02-19 19:07:06.642 2024-02-19 19:17:07.944 \N Become popular local cut evide https://example.com/ 13753 346310 346310.431510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.646127162687 0 \N \N f 0 \N 0 10960978 0 f f \N \N \N \N 346310 \N 0 0 \N \N f \N 431511 2024-02-19 19:07:09.64 2024-02-19 19:17:10.987 \N Born million yourself husband https://example.com/ 20775 346305 346305.431511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8487785924391 0 \N \N f 0 \N 0 84661582 0 f f \N \N \N \N 346305 \N 0 0 \N \N f \N 444296 2024-02-29 21:07:30.026 2024-02-29 21:17:31.298 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nWater wrong somebody book nor member. Als https://example.com/ 21067 444083 443745.444083.444296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11617103677361 0 \N \N f 0 \N 0 143206607 0 f f \N \N \N \N 443745 \N 0 0 \N \N f \N 431587 2024-02-19 19:18:34.096 2024-02-19 19:28:35.571 \N Heavy spring happy city start https://example.com/ 11395 330130 330130.431587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0313532289969 0 \N \N f 0 \N 0 130379838 0 f f \N \N \N \N 330130 \N 0 0 \N \N f \N 431514 2024-02-19 19:07:19.581 2024-02-19 19:17:20.788 \N If put nothing put pick future https://example.com/ 6003 345961 345961.431514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8032551361664 0 \N \N f 0 \N 0 227273861 0 f f \N \N \N \N 345961 \N 0 0 \N \N f \N 431515 2024-02-19 19:07:22.002 2024-02-19 19:17:23.485 \N Young shake push apply stand. https://example.com/ 2734 345766 345766.431515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4275455807944 0 \N \N f 0 \N 0 173902099 0 f f \N \N \N \N 345766 \N 0 0 \N \N f \N 47120 2022-07-19 20:18:58.988 2023-10-02 04:46:50.347 Catch as herself according. Range deal early see best measure bit throughou \N https://example.com/ 17800 \N 47120 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.68814156584088 0 \N \N f 0 \N 7 16430950 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431520 2024-02-19 19:07:37.547 2024-02-19 19:17:38.848 \N Measure enjoy other scientist https://example.com/ 1823 344293 344293.431520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1487508164175 0 \N \N f 0 \N 0 129526722 0 f f \N \N \N \N 344293 \N 0 0 \N \N f \N 431523 2024-02-19 19:07:49.811 2024-02-19 19:17:50.891 \N Determine magazine police agen https://example.com/ 10060 343321 343321.431523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8934445713177 0 \N \N f 0 \N 0 74512084 0 f f \N \N \N \N 343321 \N 0 0 \N \N f \N 431524 2024-02-19 19:07:53.521 2024-02-19 19:17:54.827 \N Very maybe current. So source https://example.com/ 7125 343305 343305.431524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5657759258222 0 \N \N f 0 \N 0 159645456 0 f f \N \N \N \N 343305 \N 0 0 \N \N f \N 431526 2024-02-19 19:07:59.173 2024-02-19 19:18:00.924 \N Past skin protect than court s https://example.com/ 2042 342936 342936.431526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7142507402606 0 \N \N f 0 \N 0 202651006 0 f f \N \N \N \N 342936 \N 0 0 \N \N f \N 431575 2024-02-19 19:18:01.441 2024-02-19 19:28:02.84 \N New here partner campaign righ https://example.com/ 8360 333348 333348.431575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87557170072207 0 \N \N f 0 \N 0 109593866 0 f f \N \N \N \N 333348 \N 0 0 \N \N f \N 431529 2024-02-19 19:08:09.084 2024-02-19 19:18:11.043 \N Be right whatever former vario https://example.com/ 5904 342859 342859.431529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8738182566413 0 \N \N f 0 \N 0 142759916 0 f f \N \N \N \N 342859 \N 0 0 \N \N f \N 431530 2024-02-19 19:08:12.324 2024-02-19 19:18:13.052 \N Network interview indeed wheth https://example.com/ 9378 342247 342247.431530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6002778931508 0 \N \N f 0 \N 0 177479938 0 f f \N \N \N \N 342247 \N 0 0 \N \N f \N 431531 2024-02-19 19:08:15.424 2024-02-19 19:18:16.785 \N Investment bad cultural turn w https://example.com/ 12346 342042 342042.431531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.55043832908072 0 \N \N f 0 \N 0 75036466 0 f f \N \N \N \N 342042 \N 0 0 \N \N f \N 438187 2024-02-25 12:36:20.375 2024-02-25 12:46:21.332 \N Smile debate least force https://example.com/ 13544 438007 437723.437854.437868.437976.438007.438187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.53800352548961 0 \N \N f 0 \N 0 135230877 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438181 2024-02-25 12:25:23.512 2024-02-25 12:35:24.404 \N Entire m https://example.com/ 12122 438165 438165.438181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6430104159067 0 \N \N f 0 \N 0 55977712 0 f f \N \N \N \N 438165 \N 0 0 \N \N f \N 431534 2024-02-19 19:08:23.876 2024-02-19 19:18:25.281 \N Effect indeed easy never inste https://example.com/ 3504 341483 341483.431534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.353659997302 0 \N \N f 0 \N 0 77132926 0 f f \N \N \N \N 341483 \N 0 0 \N \N f \N 431535 2024-02-19 19:08:27.619 2024-02-19 19:18:28.981 \N Parent always at part must all https://example.com/ 20825 341250 341250.431535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2176886715743 0 \N \N f 0 \N 0 213034277 0 f f \N \N \N \N 341250 \N 0 0 \N \N f \N 431537 2024-02-19 19:08:33.3 2024-02-19 19:18:35.038 \N Parent control wide song secti https://example.com/ 18291 346814 346814.431537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0209072335661 0 \N \N f 0 \N 0 171168197 0 f f \N \N \N \N 346814 \N 0 0 \N \N f \N 431538 2024-02-19 19:08:35.427 2024-02-19 19:18:37.079 \N Second point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nNewspaper as city recognize develop. Poor finally capital remember field energy s https://example.com/ 21469 431242 431242.431538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08116540811206 0 \N \N f 0 \N 0 107746647 0 f f \N \N \N \N 431242 \N 0 0 \N \N f \N 431130 2024-02-19 17:45:37.436 2024-02-19 17:55:38.283 Door visit progr Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nEcono https://example.com/ 16350 \N 431130 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.3281895555117 0 \N \N f 0 \N 0 198249073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431180 2024-02-19 18:14:08.031 2024-02-19 18:24:09.619 \N Decide up red either war deep https://example.com/ 959 408297 408297.431180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7141347454265 0 \N \N f 0 \N 0 31013971 0 f f \N \N \N \N 408297 \N 0 0 \N \N f \N 79125 2022-10-09 09:52:04.717 2022-10-09 09:52:04.717 Door wrong under assume get wear. Full le Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State so https://example.com/ 19910 \N 79125 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8662143452923 0 \N \N f 0 \N 18 75600188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431539 2024-02-19 19:08:36.07 2024-02-19 19:18:37.348 \N Young shake push apply stand. https://example.com/ 13365 347079 347079.431539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.98527423414286 0 \N \N f 0 \N 0 15067252 0 f f \N \N \N \N 347079 \N 0 0 \N \N f \N 431144 2024-02-19 17:56:12.389 2024-02-19 18:06:13.681 \N C https://example.com/ 18313 430503 430488.430503.431144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9136528495912 0 \N \N f 0 \N 0 116126879 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 438007 2024-02-25 08:07:55.359 2024-02-25 08:17:57.167 \N Majority foot simply point day https://example.com/ 696 437976 437723.437854.437868.437976.438007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.515885137453722 0 \N \N f 0 \N 1 192532842 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437868 2024-02-25 02:18:50.523 2024-02-25 02:28:52.384 \N Then voice gun. Might beautiful recognize artist. Week https://example.com/ 21012 437854 437723.437854.437868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.21387357690994 0 \N \N f 0 \N 3 101410348 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437854 2024-02-25 01:52:48.129 2024-02-25 02:02:50.305 \N Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect ano https://example.com/ 4958 437723 437723.437854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4084843936426 0 \N \N f 0 \N 9 227436741 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 365671 2023-12-25 13:00:08.924 2023-12-25 13:10:10.297 Light check Red tough alwa https://example.com/ 21494 \N 365671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7773574903323 0 \N \N f 0 \N 6 57417369 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443745 2024-02-29 16:06:42.422 2024-02-29 16:16:44.435 Best affect mind former history. Likely half situation wife o Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together envi https://example.com/ 7979 \N 443745 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 16.1730713183475 0 \N \N f 0 \N 5 124346080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438183 2024-02-25 12:26:34.959 2024-02-25 12:36:36.57 \N Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nCut firm bl https://example.com/ 14449 438085 437992.438037.438085.438183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2544072223876 0 \N \N f 0 \N 0 219120905 0 f f \N \N \N \N 437992 \N 0 0 \N \N f \N 444622 2024-03-01 06:36:01.008 2024-03-01 06:46:02.595 \N Remember draw realize. Include soon my person involve https://example.com/ 13198 444465 444465.444622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2971715775133 0 \N \N f 0 \N 0 65519499 0 f f \N \N \N \N 444465 \N 0 0 \N \N f \N 444670 2024-03-01 08:30:36.789 2024-03-01 08:40:38.183 \N Environment none many land part. Effort such position late office uni https://example.com/ 18138 444426 443272.444426.444670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0861972461751 0 \N \N f 0 \N 0 176787661 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 438164 2024-02-25 12:05:15.599 2024-02-25 12:15:18.127 \N Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describ https://example.com/ 2437 438109 438109.438164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.86109955647922 0 \N \N f 0 \N 0 63291393 0 f f \N \N \N \N 438109 \N 0 0 \N \N f \N 444384 2024-02-29 22:54:48.531 2024-02-29 23:04:50.046 Her particular kind sound hard Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nAlready real me back ahead especially drug late. Doctor my r https://example.com/ 20452 \N 444384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.871389688589 0 \N \N f 0 \N 3 166969295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431468 2024-02-19 19:02:57.971 2024-02-19 19:12:59.434 \N Think article https://example.com/ 14545 431363 375108.431363.431468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15187818283055 0 \N \N f 0 \N 0 43007449 0 f f \N \N \N \N 375108 \N 0 0 \N \N f \N 442291 2024-02-28 16:12:46.715 2024-02-28 16:22:49.146 \N American argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nWork suddenly pick. Interesting check state. Security low human career https://example.com/ 3990 441964 441964.442291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6854220270264 0 \N \N f 0 \N 0 58890818 0 f f \N \N \N \N 441964 \N 0 0 \N \N f \N 431583 2024-02-19 19:18:22.97 2024-02-19 19:28:23.896 \N Part dog him its government go https://example.com/ 9183 332153 332153.431583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5109959048979 0 \N \N f 0 \N 0 33169933 0 f f \N \N \N \N 332153 \N 0 0 \N \N f \N 444680 2024-03-01 09:00:39.13 2024-03-01 09:10:40.55 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put https://example.com/ 20280 444379 444379.444680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4831356915773 0 \N \N f 0 \N 0 41631285 0 f f \N \N \N \N 444379 \N 0 0 \N \N f \N 442852 2024-02-28 23:20:13.205 2024-02-28 23:30:14.505 Beyond difference Pass glass feeling https://example.com/ 15060 \N 442852 \N \N \N \N \N \N \N \N art \N ACTIVE \N 15.8443070574216 0 \N \N f 0 \N 0 36090687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444661 2024-03-01 08:00:05.772 2024-03-01 08:00:11.791 \N Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along app https://example.com/ 3745 444660 444660.444661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.750477135944 0 \N \N f 0 \N 0 106109984 0 f f \N \N \N \N 444660 \N 0 0 \N \N f \N 442025 2024-02-28 14:22:34.974 2024-02-28 14:32:35.909 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican t https://example.com/ 21469 441975 441975.442025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9464545481406 0 \N \N f 0 \N 0 101446763 0 f f \N \N \N \N 441975 \N 0 0 \N \N f \N 441294 2024-02-28 00:37:11.908 2024-02-28 00:47:13.888 \N Already real me back ahead especially drug late. Do https://example.com/ 19732 440561 440561.441294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3629271706133 0 \N \N f 0 \N 1 32368329 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 4282 2021-10-29 17:44:20.239 2023-10-01 23:53:53.735 With establish Republican begin audience guy get expect table. Prof https://example.com/ 6602 \N 4282 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.0950086605068 0 \N \N f 0 \N 1 149675868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4322 2021-10-30 21:36:28.783 2023-10-01 23:53:54.419 Learn internation Measure enjoy other scientist simple professor better. Check too design all https://example.com/ 16284 \N 4322 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8588637279401 0 \N \N f 0 \N 1 106726907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431397 2024-02-19 18:54:33.139 2024-02-19 19:04:34.534 \N Na https://example.com/ 9346 431394 430920.431394.431397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.33127943982482 0 \N \N f 0 \N 0 82169883 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 431416 2024-02-19 18:59:29.047 2024-02-19 19:09:30.752 \N Ball training later think quit https://example.com/ 15536 363273 363273.431416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42012556727036 0 \N \N f 0 \N 0 164977269 0 f f \N \N \N \N 363273 \N 0 0 \N \N f \N 431446 2024-02-19 19:01:15.675 2024-02-19 19:11:17.155 \N Reach matter agency population https://example.com/ 1772 365550 365550.431446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84870454532059 0 \N \N f 0 \N 0 209832850 0 f f \N \N \N \N 365550 \N 0 0 \N \N f \N 431755 2024-02-19 19:51:26.383 2024-02-19 20:01:28.066 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus diff https://example.com/ 647 430781 430549.430560.430781.431755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31653776853336 0 \N \N f 0 \N 1 205585094 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 444434 2024-03-01 00:00:53.955 2024-03-01 00:10:56.253 Republican total impact of. North offi Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest. https://example.com/ 20647 \N 444434 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 12.9830379781891 0 \N \N f 0 \N 0 6668020 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444678 2024-03-01 08:53:28.449 2024-03-01 09:03:29.468 \N Political perhaps question forward yes. Fish TV mu https://example.com/ 2620 444676 444674.444676.444678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.25940806609058 0 \N \N f 0 \N 0 106406100 0 f f \N \N \N \N 444674 \N 0 0 \N \N f \N 444441 2024-03-01 00:10:53.503 2024-03-01 00:20:54.701 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simpl https://example.com/ 20353 443288 443288.444441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0038557329209 0 \N \N f 0 \N 0 17744297 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 443561 2024-02-29 14:30:45.567 2024-02-29 14:40:47.147 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume d https://example.com/ 6749 443528 443528.443561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80914115838055 0 \N \N f 0 \N 0 148796668 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 4382 2021-11-01 08:47:32.762 2023-10-01 23:54:05.066 Human since We law local black leg follow https://example.com/ 9351 \N 4382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.77249339249003 0 \N \N f 0 \N 4 226279832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444634 2024-03-01 06:58:56.994 2024-03-01 07:08:58.779 \N Better instead whom usually. W https://example.com/ 2195 444609 444609.444634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9173337285883 0 \N \N f 0 \N 0 93143777 0 f f \N \N \N \N 444609 \N 0 0 \N \N f \N 431422 2024-02-19 18:59:49.864 2024-02-19 19:09:51.365 \N Look surface admit attorney af https://example.com/ 9816 362303 362303.431422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.95710501973366 0 \N \N f 0 \N 0 233855290 0 f f \N \N \N \N 362303 \N 0 0 \N \N f \N 431415 2024-02-19 18:59:25.923 2024-02-19 19:09:27.312 \N Oil fast organization discussi https://example.com/ 21424 363328 363328.431415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0290346323984 0 \N \N f 0 \N 0 51598159 0 f f \N \N \N \N 363328 \N 0 0 \N \N f \N 431411 2024-02-19 18:59:06.375 2024-02-19 19:09:07.495 \N Detail me send tax knowledge. https://example.com/ 900 364299 364299.431411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0390466812294 0 \N \N f 0 \N 0 103983038 0 f f \N \N \N \N 364299 \N 0 0 \N \N f \N 431152 2024-02-19 18:00:05.682 2024-02-19 18:10:06.615 Raise land together yeah natural religious. Travel information camera f \N https://example.com/ 21527 \N 431152 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.0347779259655 0 \N \N f 0 \N 1 172100681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444629 2024-03-01 06:47:01.609 2024-03-01 06:57:02.684 \N If lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular https://example.com/ 14308 444168 444168.444629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8095384884451 0 \N \N f 0 \N 0 210471623 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444630 2024-03-01 06:48:32.5 2024-03-01 06:58:34.153 \N Offer seem husband sect https://example.com/ 18751 444625 444619.444625.444630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1397190918679 0 \N \N f 0 \N 0 181829090 0 f f \N \N \N \N 444619 \N 0 0 \N \N f \N 431509 2024-02-19 19:07:03.794 2024-02-19 19:17:04.888 \N Girl fire bring middle popular https://example.com/ 2338 346319 346319.431509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4111187403289 0 \N \N f 0 \N 0 207258213 0 f f \N \N \N \N 346319 \N 0 0 \N \N f \N 431281 2024-02-19 18:23:08.935 2024-02-19 18:33:09.894 \N Few system https://example.com/ 16948 431175 431150.431175.431281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5543657377434 0 \N \N f 0 \N 0 33975718 0 f f \N \N \N \N 431150 \N 0 0 \N \N f \N 444632 2024-03-01 06:50:34.111 2024-03-01 07:00:35.595 \N Off class property ok try. Outside fast g https://example.com/ 1454 444168 444168.444632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02047092108 0 \N \N f 0 \N 0 192706737 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444607 2024-03-01 06:13:28.092 2024-03-01 06:23:29.479 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care https://example.com/ 20287 444606 444606.444607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5786268577552 0 \N \N f 0 \N 1 775712 0 f f \N \N \N \N 444606 \N 0 0 \N \N f \N 431540 2024-02-19 19:08:38.505 2024-02-19 19:18:40.101 \N Finally and may second. Middle https://example.com/ 1552 347166 347166.431540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5342499771015 0 \N \N f 0 \N 0 202277547 0 f f \N \N \N \N 347166 \N 0 0 \N \N f \N 431588 2024-02-19 19:18:40.303 2024-02-19 19:28:41.694 \N Measure western pretty serious https://example.com/ 18309 328815 328815.431588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.88285801688793 0 \N \N f 0 \N 0 176519291 0 f f \N \N \N \N 328815 \N 0 0 \N \N f \N 431541 2024-02-19 19:08:40.987 2024-02-19 19:18:42.694 \N Election parent through minute https://example.com/ 16145 348156 348156.431541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0312638973113 0 \N \N f 0 \N 0 23135287 0 f f \N \N \N \N 348156 \N 0 0 \N \N f \N 431542 2024-02-19 19:08:43.474 2024-02-19 19:18:44.699 \N Score player recognize carry. https://example.com/ 4819 348509 348509.431542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4389985088429 0 \N \N f 0 \N 0 184837806 0 f f \N \N \N \N 348509 \N 0 0 \N \N f \N 431543 2024-02-19 19:08:46.209 2024-02-19 19:18:48.311 \N Field eat man but religious cl https://example.com/ 18984 348804 348804.431543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3750865294638 0 \N \N f 0 \N 0 16580345 0 f f \N \N \N \N 348804 \N 0 0 \N \N f \N 431163 2024-02-19 18:03:08.863 2024-02-19 18:13:10.714 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nPractice pressure help white source. Either little finish age yo https://example.com/ 2640 431137 430984.431006.431067.431123.431137.431163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5947974074325 0 \N \N f 0 \N 0 179096598 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 431137 2024-02-19 17:48:03.237 2024-02-19 17:58:04.591 \N Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for n https://example.com/ 1142 431123 430984.431006.431067.431123.431137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5235920479641 0 \N \N f 0 \N 1 34330859 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 444467 2024-03-01 00:59:46.037 2024-03-01 01:09:47.582 Past loss author a need give c Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nInvo https://example.com/ 1564 \N 444467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1786070999233 0 \N \N f 0 \N 2 162161912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438139 2024-02-25 11:43:24.971 2024-02-25 11:53:27.314 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. B https://example.com/ 738 437977 437723.437854.437861.437977.438139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9146184659084 0 \N \N f 0 \N 0 29949954 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431082 2024-02-19 17:32:33.514 2024-02-19 17:42:35.036 \N Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee https://example.com/ 8059 431074 430993.431001.431049.431074.431082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7589852153432 0 \N \N f 0 \N 2 19191075 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 444636 2024-03-01 07:00:36.076 2024-03-01 07:10:38.234 \N Girl fire bring middle popular https://example.com/ 2390 443545 443545.444636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3422357808285 0 \N \N f 0 \N 0 154584742 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 444637 2024-03-01 07:00:45.692 2024-03-01 07:10:47.119 \N Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nReport night class. Fight PM that foo https://example.com/ 1213 444607 444606.444607.444637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.81503214836291 0 \N \N f 0 \N 0 110307191 0 f f \N \N \N \N 444606 \N 0 0 \N \N f \N 18317 2022-04-05 23:16:01.066 2023-10-02 00:32:36.105 It fly over audie Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wo https://example.com/ 1002 \N 18317 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9513590945708 0 \N \N f 0 \N 1 168051978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444641 2024-03-01 07:02:22.333 2024-03-01 07:12:23.823 \N Even hot political little painting home. Gar https://example.com/ 16717 444467 444467.444641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82544651757954 0 \N \N f 0 \N 0 136586928 0 f f \N \N \N \N 444467 \N 0 0 \N \N f \N 444642 2024-03-01 07:03:02.548 2024-03-01 07:13:03.806 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose withi https://example.com/ 16289 444168 444168.444642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5432088880528 0 \N \N f 0 \N 0 922966 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431413 2024-02-19 18:59:14.522 2024-02-19 19:09:15.796 \N Experience base structure our https://example.com/ 18119 364069 364069.431413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0844146731074 0 \N \N f 0 \N 0 104899670 0 f f \N \N \N \N 364069 \N 0 0 \N \N f \N 435966 2024-02-23 09:22:24.885 2024-02-23 09:32:26.379 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure u https://example.com/ 19267 435905 435905.435966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2421678960585 0 \N \N f 0 \N 1 207485821 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 444643 2024-03-01 07:04:40.665 2024-03-01 07:14:41.811 \N Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nEffect receive on newspaper executive left example. Something once https://example.com/ 634 328872 328872.444643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.859607500573 0 \N \N f 0 \N 0 118999716 0 f f \N \N \N \N 328872 \N 0 0 \N \N f \N 444645 2024-03-01 07:08:03.037 2024-03-01 07:18:04.632 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understa https://example.com/ 21472 444638 444638.444645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1173945434452 0 \N \N f 0 \N 0 36253858 0 f f \N \N \N \N 444638 \N 0 0 \N \N f \N 444122 2024-02-29 19:30:30.739 2024-02-29 19:40:32.46 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto https://example.com/ 18629 443836 443836.444122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4569114028962 0 \N \N f 0 \N 1 21736401 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 431553 2024-02-19 19:09:32.27 2024-02-19 19:19:34.135 \N Born million yourself husband https://example.com/ 20788 335519 335519.431553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0866348237372 0 \N \N f 0 \N 0 3321998 0 f f \N \N \N \N 335519 \N 0 0 \N \N f \N 431556 2024-02-19 19:09:40.088 2024-02-19 19:19:41.319 \N Again reveal time hot kind own https://example.com/ 1814 334432 334432.431556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.91414360922725 0 \N \N f 0 \N 0 38289 0 f f \N \N \N \N 334432 \N 0 0 \N \N f \N 431554 2024-02-19 19:09:34.595 2024-02-19 19:19:36.156 \N Idea seem tend attack act comm https://example.com/ 20120 334676 334676.431554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8382656441218 0 \N \N f 0 \N 0 137117795 0 f f \N \N \N \N 334676 \N 0 0 \N \N f \N 431557 2024-02-19 19:09:42.622 2024-02-19 19:19:43.828 \N Project them draw walk if sign https://example.com/ 16356 334356 334356.431557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.62311834521511 0 \N \N f 0 \N 0 95992265 0 f f \N \N \N \N 334356 \N 0 0 \N \N f \N 431558 2024-02-19 19:09:45.314 2024-02-19 19:19:47.563 \N Fly teach beat. Instead sectio https://example.com/ 5359 334156 334156.431558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.26867217637822 0 \N \N f 0 \N 0 229566904 0 f f \N \N \N \N 334156 \N 0 0 \N \N f \N 438123 2024-02-25 11:30:00.847 2024-02-25 11:40:03.214 \N Likel https://example.com/ 6777 438088 438088.438123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90669153031104 0 \N \N f 0 \N 0 117922111 0 f f \N \N \N \N 438088 \N 0 0 \N \N f \N 431559 2024-02-19 19:09:47.659 2024-02-19 19:19:48.847 \N Floor among test material. Mee https://example.com/ 3409 334041 334041.431559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79631678715873 0 \N \N f 0 \N 0 164179350 0 f f \N \N \N \N 334041 \N 0 0 \N \N f \N 431591 2024-02-19 19:20:04.863 2024-02-19 19:30:06.041 Produce series whom c Ten answer natural star research black system three https://example.com/ 20889 \N 431591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6448123800095 0 \N \N f 0 \N 2 178599430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431570 2024-02-19 19:14:13.7 2024-02-19 19:24:15.327 Although thought fall today protect ago. Able institution of Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy. https://example.com/ 8541 \N 431570 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 7.19270114335671 0 \N \N f 0 \N 0 111963327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431613 2024-02-19 19:32:14.941 2024-02-19 19:42:16.26 \N Bag couple hot buy yourself se https://example.com/ 1584 323320 323320.431613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.429343560131 0 \N \N f 0 \N 0 142381293 0 f f \N \N \N \N 323320 \N 0 0 \N \N f \N 431573 2024-02-19 19:16:13.564 2024-02-19 19:26:14.984 \N Affect major fire admit technology bad add. Sport surfa https://example.com/ 21249 430607 430607.431573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8869947455463 0 \N \N f 0 \N 0 148606912 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 431243 2024-02-19 18:19:55.105 2024-02-19 18:29:56.742 \N Call system shake up p https://example.com/ 18208 431187 431187.431243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02063584837877 0 \N \N f 0 \N 0 234303199 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 431577 2024-02-19 19:18:07.099 2024-02-19 19:28:08.856 \N Respond even chair hear each. https://example.com/ 21520 332764 332764.431577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3954427484933 0 \N \N f 0 \N 0 241109896 0 f f \N \N \N \N 332764 \N 0 0 \N \N f \N 431581 2024-02-19 19:18:17.672 2024-02-19 19:28:18.883 \N Fly run executive. Reach next https://example.com/ 3392 332466 332466.431581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4669555313772 0 \N \N f 0 \N 0 226565278 0 f f \N \N \N \N 332466 \N 0 0 \N \N f \N 431585 2024-02-19 19:18:27.799 2024-02-19 19:28:28.91 \N New particularly consider cond https://example.com/ 4166 332135 332135.431585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9910064929052 0 \N \N f 0 \N 0 72722339 0 f f \N \N \N \N 332135 \N 0 0 \N \N f \N 444592 2024-03-01 05:44:16.042 2024-03-01 05:54:17.296 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attent https://example.com/ 1738 443794 443794.444592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4415932942629 0 \N \N f 0 \N 0 10262158 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 442833 2024-02-28 23:09:00.203 2024-02-28 23:19:01.633 \N Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film c https://example.com/ 20409 441334 441247.441334.442833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.722062773076004 0 \N \N f 0 \N 0 42950192 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 431625 2024-02-19 19:32:44.95 2024-02-19 19:42:46.07 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nPast skin protect than court sum https://example.com/ 10280 430197 430197.431625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1935091050671 0 \N \N f 0 \N 0 136102615 0 f f \N \N \N \N 430197 \N 0 0 \N \N f \N 21949 2022-04-22 04:16:57.259 2023-10-02 00:45:46.935 Improve differe Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fil https://example.com/ 2256 \N 21949 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.1047421860729 0 \N \N f 0 \N 1 157372034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 22174 2022-04-23 00:13:51.845 2023-10-02 00:46:13.814 Back spend task rea Area just subject pretty. Three employee performance. Shoulder trade identify size traditi https://example.com/ 14168 \N 22174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6343635221055 0 \N \N f 0 \N 4 27828425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444625 2024-03-01 06:39:44.657 2024-03-01 06:49:46.088 \N Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Lon https://example.com/ 20450 444619 444619.444625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9202431090046 0 \N \N f 0 \N 1 231933641 0 f f \N \N \N \N 444619 \N 0 0 \N \N f \N 431631 2024-02-19 19:33:00.902 2024-02-19 19:43:02.147 \N Research either follow across https://example.com/ 10490 319708 319708.431631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2152088062089 0 \N \N f 0 \N 0 222083552 0 f f \N \N \N \N 319708 \N 0 0 \N \N f \N 431666 2024-02-19 19:35:33.667 2024-02-19 19:45:34.98 \N Morning garden personal tax re https://example.com/ 15624 314941 314941.431666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1309972624262 0 \N \N f 0 \N 0 12220483 0 f f \N \N \N \N 314941 \N 0 0 \N \N f \N 431674 2024-02-19 19:35:55.159 2024-02-19 19:45:56.256 \N Against involve moment myself https://example.com/ 21047 312892 312892.431674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2476327080744 0 \N \N f 0 \N 0 231684254 0 f f \N \N \N \N 312892 \N 0 0 \N \N f \N 431682 2024-02-19 19:36:15.198 2024-02-19 19:46:16.477 \N Begin kind newspaper game proc https://example.com/ 18138 315965 315965.431682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5358820321066 0 \N \N f 0 \N 0 145121717 0 f f \N \N \N \N 315965 \N 0 0 \N \N f \N 431689 2024-02-19 19:36:31.075 2024-02-19 19:46:32.736 \N Product analysis affect certai https://example.com/ 822 317178 317178.431689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98664256288045 0 \N \N f 0 \N 0 145444182 0 f f \N \N \N \N 317178 \N 0 0 \N \N f \N 444667 2024-03-01 08:21:57.213 2024-03-01 08:31:58.932 \N Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store wh https://example.com/ 627 443861 443799.443861.444667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.66541776597599 0 \N \N f 0 \N 0 189577768 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 22302 2022-04-23 13:11:52.222 2023-10-02 00:46:25.082 Leave example g Police do base plan how. Her add beautiful attack cup instead end different. Others se https://example.com/ 9362 \N 22302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.09997909210453 0 \N \N f 0 \N 1 26037646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 22934 2022-04-26 07:17:17.908 2023-10-02 00:48:18.309 Newspaper as city re With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition w https://example.com/ 6653 \N 22934 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4038791339085 0 \N \N f 0 \N 1 163194844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431125 2024-02-19 17:44:04.383 2024-02-19 17:54:05.636 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade some https://example.com/ 19943 431074 430993.431001.431049.431074.431125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0591451363647 0 \N \N f 0 \N 0 188290024 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 431074 2024-02-19 17:30:17.047 2024-02-19 17:40:19.269 \N Myself effort community ago while assume. Production you represent major degree push range. Beyond station whom https://example.com/ 673 431049 430993.431001.431049.431074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11047748352586 0 \N \N f 0 \N 4 192469930 0 f f \N \N \N \N 430993 \N 0 0 \N \N f \N 431709 2024-02-19 19:40:09.084 2024-02-19 19:50:11.071 \N Site product one fact loss. Si https://example.com/ 19995 298804 298804.431709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.96783112220408 0 \N \N f 0 \N 0 43818409 0 f f \N \N \N \N 298804 \N 0 0 \N \N f \N 440324 2024-02-27 08:21:11.56 2024-02-27 08:31:12.707 \N Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself https://example.com/ 2749 440094 439147.440094.440324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.9280285541555 0 \N \N f 0 \N 1 93860525 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 444523 2024-03-01 03:17:22.728 2024-03-01 03:27:24.75 \N Risk past without reco https://example.com/ 715 444102 444102.444523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.695551849884 0 \N \N f 0 \N 0 234302131 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 438169 2024-02-25 12:10:40.829 2024-02-25 12:20:42.27 \N Suggest officer purpose professor great school cut. Per agency leg responsibility p https://example.com/ 5129 437670 437670.438169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9379808596023 0 \N \N f 0 \N 0 140478133 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 431470 2024-02-19 19:03:32.867 2024-02-19 19:13:33.874 \N True quickly government finish https://example.com/ 18291 357135 357135.431470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.82779418019396 0 \N \N f 0 \N 0 22021113 0 f f \N \N \N \N 357135 \N 0 0 \N \N f \N 438018 2024-02-25 08:28:57.228 2024-02-25 08:38:58.225 \N Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must thoug https://example.com/ 21457 437723 437723.438018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0219204900271 0 \N \N f 0 \N 1 240401040 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 436034 2024-02-23 11:05:38.947 2024-02-23 11:15:39.68 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town https://example.com/ 15159 435890 330698.330774.434596.435793.435890.436034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29415400496642 0 \N \N f 0 \N 1 175240903 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 444711 2024-03-01 10:08:32.82 2024-03-01 10:18:34.793 \N Idea seem tend attack act common her run. Style there improv https://example.com/ 16808 444696 444696.444711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1161329926846 0 \N \N f 0 \N 0 42790884 0 f f \N \N \N \N 444696 \N 0 0 \N \N f \N 437838 2024-02-25 01:35:33.167 2024-02-25 01:45:35.481 Wish join discuss brother worry talk final. Detail stuff center. End college tea Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office. https://example.com/ 20306 \N 437838 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.7919782009793 0 \N \N f 0 \N 0 92105552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432122 2024-02-20 02:50:27.038 2024-02-20 03:00:28.416 \N Majority member te https://example.com/ 626 431844 431844.432122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.575835233734 0 \N \N f 0 \N 0 113545313 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 436314 2024-02-23 15:26:25.296 2024-02-23 15:36:26.406 \N Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy appl https://example.com/ 15806 436312 436273.436288.436310.436312.436314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4408909758477 0 \N \N f 0 \N 0 65599716 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 437769 2024-02-24 23:46:05.19 2024-02-24 23:56:06.887 Sound clearly happen age onto imagine. B Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nMother up probably anything nation Mrs participant ma https://example.com/ 19021 \N 437769 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.6315231247804 0 \N \N f 0 \N 13 22516198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443430 2024-02-29 13:05:36.88 2024-02-29 13:15:39.495 \N Tell difference pattern carry join. Size factor https://example.com/ 618 443274 443274.443430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9938681386182 0 \N \N f 0 \N 0 45203307 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443274 2024-02-29 10:32:42.249 2024-02-29 10:42:43.763 Top however address today. Century human land prov Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north. https://example.com/ 15521 \N 443274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4325900292077 0 \N \N f 0 \N 13 166026522 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438193 2024-02-25 12:48:17.987 2024-02-25 12:58:19.453 Possible serious black institution sourc Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building. https://example.com/ 19465 \N 438193 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 23.1979768215928 0 \N \N f 0 \N 0 210461719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442440 2024-02-28 17:15:45.144 2024-02-28 17:25:46.261 Any note pick American lead mention. None magazine identify cold common remai Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nFamily happy son budget speech across. Building effect kitchen https://example.com/ 16929 \N 442440 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.0925139431133 0 \N \N f 0 \N 3 196536568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444509 2024-03-01 02:48:32.439 2024-03-01 02:58:34.134 \N Real who consider answer affect similar continue. Life almos https://example.com/ 18904 444449 444449.444509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6584272217619 0 \N \N f 0 \N 0 175524638 0 f f \N \N \N \N 444449 \N 0 0 \N \N f \N 438174 2024-02-25 12:18:55.194 2024-02-25 12:28:56.827 \N Region https://example.com/ 20560 438163 437817.438119.438163.438174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.309634672826 0 \N \N f 0 \N 0 222330704 0 f f \N \N \N \N 437817 \N 0 0 \N \N f \N 444382 2024-02-29 22:53:39.226 2024-02-29 23:03:42.792 \N Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Giv https://example.com/ 1626 443836 443836.444382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7187904345067 0 \N \N f 0 \N 1 162882219 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 436281 2024-02-23 15:02:56.077 2024-02-23 15:12:57.491 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around https://example.com/ 917 436241 436241.436281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76807535931234 0 \N \N f 0 \N 2 175632804 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 431236 2024-02-19 18:17:56.574 2024-02-19 18:27:57.894 \N Political official world diffe https://example.com/ 1489 395566 395566.431236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.875709592384 0 \N \N f 0 \N 1 1317602 0 f f \N \N \N \N 395566 \N 0 0 \N \N f \N 23240 2022-04-27 02:34:18.402 2023-10-02 00:48:58.59 Policy tr Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World t https://example.com/ 5175 \N 23240 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4848261702744 0 \N \N f 0 \N 2 115963371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431476 2024-02-19 19:03:55.255 2024-02-19 19:13:57.045 \N Common loss oil be. Wrong wate https://example.com/ 726 356320 356320.431476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2062535912916 0 \N \N f 0 \N 0 7945828 0 f f \N \N \N \N 356320 \N 0 0 \N \N f \N 431473 2024-02-19 19:03:45.099 2024-02-19 19:13:46.934 \N Very maybe current. So source https://example.com/ 1319 357043 357043.431473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.72048681295416 0 \N \N f 0 \N 0 209205084 0 f f \N \N \N \N 357043 \N 0 0 \N \N f \N 431469 2024-02-19 19:03:30.069 2024-02-19 19:13:31.52 \N Answer party get head Democrat. Marriage letter we https://example.com/ 1549 431236 395566.431236.431469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4574321190719 0 \N \N f 0 \N 0 199569017 0 f f \N \N \N \N 395566 \N 0 0 \N \N f \N 431395 2024-02-19 18:53:39.885 2024-02-19 19:03:41.14 \N Instead believe animal then however price particularly. When wh https://example.com/ 714 430984 430984.431395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6529472801324 0 \N \N f 0 \N 0 186714277 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 438005 2024-02-25 08:02:44.554 2024-02-25 08:12:46.996 \N Wide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next rememb https://example.com/ 21374 437723 437723.438005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.87669356619136 0 \N \N f 0 \N 0 159727589 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 436084 2024-02-23 12:11:55.064 2024-02-23 12:21:57.217 \N Few system pick down where pull us. Out to relate no https://example.com/ 1488 436051 436051.436084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42786831517846 0 \N \N f 0 \N 1 119613855 0 f f \N \N \N \N 436051 \N 0 0 \N \N f \N 443836 2024-02-29 16:48:56.516 2024-02-29 16:58:57.659 Off class property ok try. Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific serv https://example.com/ 17984 \N 443836 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.4844859990971 0 \N \N f 0 \N 20 153034405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444654 2024-03-01 07:37:56.576 2024-03-01 07:47:58.89 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nAuthority https://example.com/ 20163 440324 439147.440094.440324.444654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.962944798418 0 \N \N f 0 \N 0 137380913 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 431363 2024-02-19 18:36:11.144 2024-02-19 18:46:13.226 \N Line trade last nature number https://example.com/ 16704 375108 375108.431363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2115585281213 0 \N \N f 0 \N 1 203342476 0 f f \N \N \N \N 375108 \N 0 0 \N \N f \N 438152 2024-02-25 11:54:11.612 2024-02-25 12:04:13.525 \N Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control https://example.com/ 2056 438150 438093.438096.438132.438135.438150.438152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9367049629646 0 \N \N f 0 \N 0 147744766 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 431487 2024-02-19 19:04:34.981 2024-02-19 19:14:37.017 \N Happen include car man crime. Lo https://example.com/ 19381 431461 368832.431461.431487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47047439077132 0 \N \N f 0 \N 0 64233350 0 f f \N \N \N \N 368832 \N 0 0 \N \N f \N 435988 2024-02-23 09:59:49.358 2024-02-23 10:09:50.787 Her particular kind sound hard big. Area door model need phone. Create executi Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character. https://example.com/ 21323 \N 435988 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 20.052528884061 0 \N \N f 0 \N 1 120539545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437841 2024-02-25 01:41:24.495 2024-02-25 01:51:25.751 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nWi https://example.com/ 2322 433828 433828.437841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.300138896993793 0 \N \N f 0 \N 0 162107190 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 437842 2024-02-25 01:43:04.192 2024-02-25 01:53:05.556 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement https://example.com/ 9200 437775 437775.437842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.41854952940812 0 \N \N f 0 \N 0 104428638 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 431398 2024-02-19 18:55:12.344 2024-02-19 19:05:13.012 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency https://example.com/ 18809 431393 431393.431398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9663668925915 0 \N \N f 0 \N 0 177204825 0 f f \N \N \N \N 431393 \N 0 0 \N \N f \N 438147 2024-02-25 11:50:11.003 2024-02-25 12:00:12.206 \N Never money Congress data sing https://example.com/ 5308 438135 438093.438096.438132.438135.438147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6717917080974 0 \N \N f 0 \N 2 124268530 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444659 2024-03-01 07:55:26.215 2024-03-01 08:05:27.656 \N Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. https://example.com/ 692 444656 444656.444659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.97146609074122 0 \N \N f 0 \N 0 130529680 0 f f \N \N \N \N 444656 \N 0 0 \N \N f \N 433217 2024-02-21 00:01:45.415 2024-02-21 00:11:46.765 Check worry rad Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democra https://example.com/ 9307 \N 433217 \N \N \N \N \N \N \N \N health \N ACTIVE \N 7.91637563534209 0 \N \N f 0 \N 32 50255704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437099 2024-02-24 12:35:57.48 2024-02-24 12:45:58.62 Own shoulder kind fact. Poor bring quite the be Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amo https://example.com/ 21172 \N 437099 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 23.7189192410795 0 \N \N f 0 \N 3 240841748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437990 2024-02-25 07:05:20.284 2024-02-25 07:15:21.617 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nYourself teach week line no hotel whatever. Identify floo https://example.com/ 9494 437461 437099.437461.437990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9826898402362 0 \N \N f 0 \N 1 148057572 0 f f \N \N \N \N 437099 \N 0 0 \N \N f \N 437461 2024-02-24 16:49:14.163 2024-02-24 16:59:15.794 \N Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can e https://example.com/ 2543 437099 437099.437461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.90756453243429 0 \N \N f 0 \N 2 65062890 0 f f \N \N \N \N 437099 \N 0 0 \N \N f \N 443624 2024-02-29 14:58:11.644 2024-02-29 15:08:12.628 \N More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nWhy long up fly difficult nature. Age condition practice area worry despite https://example.com/ 18139 443583 443583.443624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2460712709639 0 \N \N f 0 \N 1 225733164 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 438163 2024-02-25 12:05:01.283 2024-02-25 12:15:02.829 \N Floor white civil remain. Pur https://example.com/ 10849 438119 437817.438119.438163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9748524401628 0 \N \N f 0 \N 1 82980071 0 f f \N \N \N \N 437817 \N 0 0 \N \N f \N 431406 2024-02-19 18:58:04.013 2024-02-19 19:08:05.644 \N Take throw line right your tri https://example.com/ 17690 365104 365104.431406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8689561554144 0 \N \N f 0 \N 0 132164071 0 f f \N \N \N \N 365104 \N 0 0 \N \N f \N 431528 2024-02-19 19:08:02.753 2024-02-19 19:18:03.875 \N Return bag discover indicate r https://example.com/ 1429 342864 342864.431528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21622331623836 0 \N \N f 0 \N 0 46378550 0 f f \N \N \N \N 342864 \N 0 0 \N \N f \N 431548 2024-02-19 19:08:59.005 2024-02-19 19:19:00.735 \N Simply even growth change gove https://example.com/ 12265 349352 349352.431548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18078498888626 0 \N \N f 0 \N 0 20024479 0 f f \N \N \N \N 349352 \N 0 0 \N \N f \N 431550 2024-02-19 19:09:23.887 2024-02-19 19:19:25.58 \N Agent huge issue positive air https://example.com/ 16747 338315 338315.431550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.26290264432493 0 \N \N f 0 \N 0 176486464 0 f f \N \N \N \N 338315 \N 0 0 \N \N f \N 444179 2024-02-29 20:11:09.629 2024-02-29 20:21:10.861 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Sc https://example.com/ 1567 443712 443712.444179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8100411078574 0 \N \N f 0 \N 3 228714009 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 431532 2024-02-19 19:08:18.603 2024-02-19 19:18:20.02 \N Charge hold reveal easy rise m https://example.com/ 16876 341811 341811.431532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1276349361521 0 \N \N f 0 \N 0 179390646 0 f f \N \N \N \N 341811 \N 0 0 \N \N f \N 431536 2024-02-19 19:08:30.614 2024-02-19 19:18:32.009 \N Near key among effort cover ce https://example.com/ 13204 340493 340493.431536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2976478892385 0 \N \N f 0 \N 0 110386613 0 f f \N \N \N \N 340493 \N 0 0 \N \N f \N 431555 2024-02-19 19:09:37.525 2024-02-19 19:19:38.82 \N Positive return free discuss. https://example.com/ 2734 334629 334629.431555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7706771511888 0 \N \N f 0 \N 0 102104156 0 f f \N \N \N \N 334629 \N 0 0 \N \N f \N 431409 2024-02-19 18:58:28.251 2024-02-19 19:08:29.195 \N Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nOur because trip contain onto simple. Away wear seek relationship movem https://example.com/ 5112 431393 431393.431409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9046542550982 0 \N \N f 0 \N 0 136712098 0 f f \N \N \N \N 431393 \N 0 0 \N \N f \N 431410 2024-02-19 18:58:45.691 2024-02-19 19:08:47.237 \N Door wrong under assume get we https://example.com/ 16706 364400 364400.431410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4717486415797 0 \N \N f 0 \N 0 61731627 0 f f \N \N \N \N 364400 \N 0 0 \N \N f \N 444497 2024-03-01 02:17:03.463 2024-03-01 02:27:05.699 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. https://example.com/ 11516 444486 444365.444486.444497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4603790610137 0 \N \N f 0 \N 0 207149765 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444486 2024-03-01 01:35:06.771 2024-03-01 01:45:08.014 \N Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nMove purpose well important learn popula https://example.com/ 21194 444365 444365.444486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06163627011109 0 \N \N f 0 \N 1 197111043 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 431129 2024-02-19 17:45:02.983 2024-02-19 17:55:04.558 Drug you class operation. H Stay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Ev https://example.com/ 1814 \N 431129 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.832358305004 0 \N \N f 0 \N 1 209938840 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444570 2024-03-01 05:11:34.096 2024-03-01 05:21:35.753 Might also begin husband affect. Chance fo Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black. https://example.com/ 20744 \N 444570 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 28.0264366908662 0 \N \N f 0 \N 0 133956689 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438173 2024-02-25 12:18:18.549 2024-02-25 12:28:19.542 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold lit https://example.com/ 1120 438145 438145.438173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2515527456245 0 \N \N f 0 \N 0 116500435 0 f f \N \N \N \N 438145 \N 0 0 \N \N f \N 435660 2024-02-22 23:29:09.787 2024-02-22 23:39:10.737 \N Each show pull quite home mention https://example.com/ 18736 435658 435357.435658.435660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56033845192924 0 \N \N f 0 \N 0 169969349 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N 444681 2024-03-01 09:02:06.767 2024-03-01 09:12:07.631 \N Foot upon smile pass house significant result small. Some hard religious https://example.com/ 10060 443535 427527.438108.443535.444681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.21585589274114 0 \N \N f 0 \N 0 169884011 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N 444653 2024-03-01 07:29:35.655 2024-03-01 07:39:37.178 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory https://example.com/ 17124 444651 444651.444653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2761113724291 0 \N \N f 0 \N 1 234919869 0 f f \N \N \N \N 444651 \N 0 0 \N \N f \N 438326 2024-02-25 14:54:09.56 2024-02-25 15:04:11.39 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join we https://example.com/ 6300 438322 436752.437184.437271.437292.437293.438312.438318.438320.438322.438326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4829520115163 0 \N \N f 0 \N 2 107535137 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438184 2024-02-25 12:28:29.208 2024-02-25 12:38:30.707 \N Top however address today. Century human land prove should. Executive develop market PM sea quality https://example.com/ 722 438165 438165.438184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5249036515767 0 \N \N f 0 \N 0 151564073 0 f f \N \N \N \N 438165 \N 0 0 \N \N f \N 444846 2024-03-01 11:37:53.95 2024-03-01 11:47:55.417 \N Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nHealth https://example.com/ 17514 444663 444065.444403.444514.444663.444846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3823121700838 0 \N \N f 0 \N 0 208017214 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N 444683 2024-03-01 09:12:08.953 2024-03-01 09:22:10.8 \N Again reveal time hot kind own. B https://example.com/ 9246 444653 444651.444653.444683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76257191334491 0 \N \N f 0 \N 0 248290432 0 f f \N \N \N \N 444651 \N 0 0 \N \N f \N 435536 2024-02-22 21:16:18.274 2024-02-22 21:26:19.64 \N Happen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate be https://example.com/ 21338 435210 435030.435210.435536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8628547752853 0 \N \N f 0 \N 0 159524302 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 438215 2024-02-25 13:13:25.139 2024-02-25 13:23:26.09 \N Science sea sport term page near. Agreem https://example.com/ 769 438153 438044.438153.438215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6622968752076 0 \N \N f 0 \N 0 115750812 0 f f \N \N \N \N 438044 \N 0 0 \N \N f \N 444651 2024-03-01 07:23:25.49 2024-03-01 07:33:27.849 Raise represent leave durin Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nOccur chair truth these officer focus bl https://example.com/ 15386 \N 444651 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 5.6994462398146 0 \N \N f 0 \N 2 141933658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444861 2024-03-01 11:51:53.11 2024-03-01 12:01:54.447 \N Heart such other on during catch. Itself he https://example.com/ 11967 443799 443799.444861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8068728989315 0 \N \N f 0 \N 0 173233319 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 436212 2024-02-23 13:53:43.138 2024-02-23 14:03:44.565 Purpose add when information sing like recognize. Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nHundred position represent six mo https://example.com/ 5160 \N 436212 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 9.61332815766479 0 \N \N f 0 \N 0 67568988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444864 2024-03-01 11:53:14.812 2024-03-01 12:03:16.566 \N Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just rig https://example.com/ 4692 444791 444718.444791.444864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29899146069174 0 \N \N f 0 \N 1 244547154 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444860 2024-03-01 11:51:39.355 2024-03-01 12:01:41.804 \N Service technology include study exactly enter. Country each these west ma https://example.com/ 12507 444822 444718.444822.444860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.67748467187113 0 \N \N f 0 \N 0 187256245 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431661 2024-02-19 19:35:22.655 2024-02-19 19:45:24.036 \N Right term sell shoulder. Next https://example.com/ 16230 428344 428344.431661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.51068211401084 0 \N \N f 0 \N 0 99281596 0 f f \N \N \N \N 428344 \N 0 0 \N \N f \N 438094 2024-02-25 11:00:05.186 2024-02-25 11:10:06.835 Plan theory effect center maintain man. Now field ago hard. Raise girl dee \N https://example.com/ 9845 \N 438094 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.0209851199008 0 \N \N f 0 \N 1 174878302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443372 2024-02-29 12:10:40.34 2024-02-29 12:20:41.562 May building suffer accept thousan About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nBecause fear practice program husband https://example.com/ 11866 \N 443372 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8403612277569 0 \N \N f 0 \N 35 203845976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431412 2024-02-19 18:59:08.856 2024-02-19 19:09:09.778 May building suffer accept thousand race record play. Also may five re Toward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog. https://example.com/ 17411 \N 431412 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7599809470364 0 \N \N f 0 \N 2 2279860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444870 2024-03-01 11:55:56.97 2024-03-01 12:05:58.047 \N Parent control wide song section few. Region on https://example.com/ 21393 444765 443272.443285.444765.444870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7017945584536 0 \N \N f 0 \N 0 32344226 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443386 2024-02-29 12:26:34.099 2024-02-29 12:36:35.194 \N Many soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beauti https://example.com/ 2367 443372 443372.443386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3718988094549 0 \N \N f 0 \N 6 77096468 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 444872 2024-03-01 11:56:36.825 2024-03-01 12:06:38.429 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Ass https://example.com/ 8870 444864 444718.444791.444864.444872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.78380624365371 0 \N \N f 0 \N 0 135609146 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444688 2024-03-01 09:31:48.452 2024-03-01 09:41:50.04 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nBook environmental good western support e https://example.com/ 2710 444365 444365.444688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6732552884405 0 \N \N f 0 \N 0 196996100 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 438045 2024-02-25 09:35:08.193 2024-02-25 09:45:10.102 \N Health recently away many who girl admit. Value serve identify summer wall team go https://example.com/ 722 437809 437044.437809.438045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6306803825397 0 \N \N f 0 \N 3 25620611 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 438194 2024-02-25 12:49:12.638 2024-02-25 12:59:13.893 \N Before wrong succes https://example.com/ 13398 438045 437044.437809.438045.438194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59995055479769 0 \N \N f 0 \N 0 184789098 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 438318 2024-02-25 14:46:37.48 2024-02-25 14:56:39.224 \N Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nMarriage interview gr https://example.com/ 1741 438312 436752.437184.437271.437292.437293.438312.438318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83772513859216 0 \N \N f 0 \N 5 28807377 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438670 2024-02-25 21:21:21.119 2024-02-25 21:31:38.427 Identify painting degree hit shake f Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government resul https://example.com/ 21296 \N 438670 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.46234214239507 0 \N \N f 0 \N 7 2262677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443915 2024-02-29 17:32:59.566 2024-02-29 17:43:00.992 Just study one foot ball. Tv pro Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine. https://example.com/ 21040 \N 443915 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 12.2495125405961 0 \N \N f 0 \N 0 10146621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438196 2024-02-25 12:50:43.198 2024-02-25 13:00:45.83 \N Life foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth smal https://example.com/ 11240 438168 438093.438159.438168.438196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4492958807397 0 \N \N f 0 \N 0 126290194 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444876 2024-03-01 12:00:04.682 2024-03-01 12:10:05.588 Reality deal sort professional try him pro \N https://example.com/ 17673 \N 444876 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.489850859506 0 \N \N f 0 \N 1 242522872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444877 2024-03-01 12:00:05.856 2024-03-01 12:10:07.594 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nBack spend task re https://example.com/ 14990 444876 444876.444877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2777728166693 0 \N \N f 0 \N 0 225585583 0 f f \N \N \N \N 444876 \N 0 0 \N \N f \N 444724 2024-03-01 10:21:39.738 2024-03-01 10:31:40.91 \N Somebody head others contain moment. Which our old outs https://example.com/ 692 444709 444687.444709.444724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57384393733925 0 \N \N f 0 \N 3 94684246 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 442593 2024-02-28 19:26:26.962 2024-02-28 19:36:28.781 Technology instead se Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president. https://example.com/ 13097 \N 442593 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 13.2303486996662 0 \N \N f 0 \N 0 87415675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437035 2024-02-24 10:26:54.311 2024-02-24 10:36:55.657 Already real me back ahead especially drug late. Doctor my risk party b Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. https://example.com/ 18727 \N 437035 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 22.5771017203614 0 \N \N f 0 \N 1 193736752 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442594 2024-02-28 19:26:34.468 2024-02-28 19:36:36.014 Type door clear l Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my. https://example.com/ 7847 \N 442594 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 13.543022236132 0 \N \N f 0 \N 0 82189769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444693 2024-03-01 09:49:36.754 2024-03-01 09:59:38.274 \N Finally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nPolit https://example.com/ 11938 444692 444687.444692.444693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4195884661724 0 \N \N f 0 \N 0 126817482 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 438299 2024-02-25 14:22:43.574 2024-02-25 14:32:44.605 \N Lay garden sing air theory. Item simply month guess better conference game. Yourself enter weight https://example.com/ 19044 438232 438232.438299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0649773299142 0 \N \N f 0 \N 1 221416141 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 444554 2024-03-01 04:28:45.753 2024-03-01 04:38:47.04 Boy force agency change score no job. Memory Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nAre https://example.com/ 13046 \N 444554 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.40664460034753 0 \N \N f 0 \N 0 34416010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430838 2024-02-19 15:16:58.131 2024-02-19 15:27:00.437 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. S https://example.com/ 19533 430836 430607.430617.430641.430670.430674.430836.430838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0156988524493 0 \N \N f 0 \N 0 125974248 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 444701 2024-03-01 09:58:20.507 2024-03-01 10:08:22.658 \N Small newspaper answer adult morning. Effort happy right deal. State sign day car elec https://example.com/ 19463 444700 444700.444701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84477742506745 0 \N \N f 0 \N 1 152719835 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 430932 2024-02-19 16:29:22.287 2024-02-19 16:39:23.751 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice wi https://example.com/ 848 430607 430607.430932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8889287313227 0 \N \N f 0 \N 0 244688265 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430970 2024-02-19 16:52:09.481 2024-02-19 17:02:11.53 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fi https://example.com/ 21249 430964 430607.430964.430970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9024111911859 0 \N \N f 0 \N 1 69817637 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430964 2024-02-19 16:49:29.584 2024-02-19 16:59:31.048 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. A https://example.com/ 12220 430607 430607.430964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6574040429655 0 \N \N f 0 \N 2 125193415 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 437984 2024-02-25 07:00:04.499 2024-02-25 07:10:05.962 Technology instead seat like far. Door produce too Democrat professor actually y \N https://example.com/ 2583 \N 437984 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.0944526588707362 0 \N \N f 0 \N 1 67756586 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431579 2024-02-19 19:18:14.658 2024-02-19 19:28:15.405 \N Rich account wrong customer wa https://example.com/ 5085 332498 332498.431579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07667094401223 0 \N \N f 0 \N 0 245783547 0 f f \N \N \N \N 332498 \N 0 0 \N \N f \N 441583 2024-02-28 08:35:19.968 2024-03-01 10:14:01.623 \N Doctor operation be https://example.com/ 19907 441333 441333.441583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6788524910783 0 \N \N f 0 \N 1 111286848 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 444677 2024-03-01 08:49:49.217 2024-03-01 08:59:51.48 Hundred position represent six morning manage school and Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third. https://example.com/ 992 \N 444677 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1852180864598 0 \N \N f 0 \N 0 14788270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431586 2024-02-19 19:18:31.209 2024-02-19 19:28:32.923 \N Although thought fall today pr https://example.com/ 18769 332079 332079.431586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3551121232136 0 \N \N f 0 \N 0 71609814 0 f f \N \N \N \N 332079 \N 0 0 \N \N f \N 444657 2024-03-01 07:46:46.065 2024-03-01 07:56:47.325 Move purpose well important learn population study. Key turn career ind Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nSpend democratic second find president walk model. Challenge face section business political. Us o https://example.com/ 2652 \N 444657 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 17.2230577544128 0 \N \N f 0 \N 1 37174030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444495 2024-03-01 02:01:04.391 2024-03-01 02:11:05.475 \N Front color executive find hotel. Secur https://example.com/ 17095 444450 444450.444495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0881849314796 0 \N \N f 0 \N 0 134872477 0 f f \N \N \N \N 444450 \N 0 0 \N \N f \N 444450 2024-03-01 00:24:10.758 2024-03-01 00:34:12.5 Enough book hope yard store together camera scene. Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first. https://example.com/ 8498 \N 444450 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.7921796514451 0 \N \N f 0 \N 2 109914595 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444567 2024-03-01 04:58:58.985 2024-03-01 05:09:00.676 Manager suffer she clearly whole most benefit. Church listen our cal https://example.com/ 1428 \N 444567 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.97294947613483 0 \N \N f 0 \N 8 165293353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438166 2024-02-25 12:07:53.525 2024-02-25 12:17:55.287 \N Majority next authority recog https://example.com/ 631 438156 438093.438156.438166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.25499677070606 0 \N \N f 0 \N 0 237489143 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444704 2024-03-01 10:02:49.932 2024-03-01 10:12:51.236 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alo https://example.com/ 1632 444700 444700.444704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39526390488727 0 \N \N f 0 \N 1 146590042 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 438204 2024-02-25 13:00:04.558 2024-02-25 13:10:06.117 Question produce \N https://example.com/ 7553 \N 438204 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 21.5886657314153 0 \N \N f 0 \N 1 198887711 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438197 2024-02-25 12:50:48.402 2024-02-25 13:00:49.782 \N E https://example.com/ 6602 438156 438093.438156.438197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3366462176532 0 \N \N f 0 \N 0 1217582 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438002 2024-02-25 08:00:04.625 2024-02-25 08:10:06.738 Out quite different term just require. Store thi \N https://example.com/ 5708 \N 438002 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.01026226795459 0 \N \N f 0 \N 1 245380072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437981 2024-02-25 06:53:07.285 2024-02-25 07:03:09.01 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Read https://example.com/ 1488 437966 437966.437981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3130943990328 0 \N \N f 0 \N 4 96358913 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 431385 2024-02-19 18:42:49.869 2024-02-19 18:52:51.059 \N Wide deep ahead effort. Somebody issue single physical ben https://example.com/ 2513 430536 430496.430536.431385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4084928035762 0 \N \N f 0 \N 0 191338342 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 438001 2024-02-25 07:56:55.251 2024-02-25 08:06:56.322 With officer scientist letter one. Partner coach history loss. Garden responsi Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular https://example.com/ 1585 \N 438001 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 6.39053196452579 0 \N \N f 0 \N 0 200292453 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438039 2024-02-25 09:08:36.978 2024-02-25 09:18:38.172 Degree third deep cause buy put whatever. Gas human prepare condition free Though or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting. https://example.com/ 21395 \N 438039 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 7.83591740179926 0 \N \N f 0 \N 0 149304614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444173 2024-02-29 20:04:27.186 2024-02-29 20:14:29.298 Great idea age friend. Its financial fight need. Item somebody actually court Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nReport ni https://example.com/ 919 \N 444173 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 7.97449360850123 0 \N \N f 0 \N 2 125743606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438354 2024-02-25 15:13:47.805 2024-02-25 15:23:49.342 \N Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accep https://example.com/ 19333 437454 437454.438354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6040090046937 0 \N \N f 0 \N 0 2944982 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 438031 2024-02-25 08:54:10.78 2024-02-25 09:04:11.522 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff https://example.com/ 20757 437893 437893.438031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3398071100036 0 \N \N f 0 \N 0 208780246 0 f f \N \N \N \N 437893 \N 0 0 \N \N f \N 444886 2024-03-01 12:06:38.835 2024-03-01 12:16:40.023 \N Mind treatment nature play. Mr hit security game her w https://example.com/ 1198 444841 444739.444841.444886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9843318802216 0 \N \N f 0 \N 0 218568463 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 435623 2024-02-22 22:47:46.022 2024-02-22 22:57:47.712 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal co https://example.com/ 19142 435622 434278.434503.434522.434598.434602.435622.435623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.77572205862194 0 \N \N f 0 \N 2 128746639 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435750 2024-02-23 01:52:55.365 2024-02-23 02:02:56.456 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nVery yes customer public music example expert. Fear would much. Necessa https://example.com/ 20687 435181 435030.435181.435750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40795701590638 0 \N \N f 0 \N 0 186212494 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 438141 2024-02-25 11:43:52.405 2024-02-25 11:53:53.734 \N Light environmental here source blood. Institution evening deep action speech tr https://example.com/ 8945 438122 438122.438141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63405063129476 0 \N \N f 0 \N 0 130087081 0 f f \N \N \N \N 438122 \N 0 0 \N \N f \N 443701 2024-02-29 15:36:10.995 2024-02-29 15:46:12.284 \N Page economic la https://example.com/ 2367 443274 443274.443701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9417301430311 0 \N \N f 0 \N 0 35593095 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 435694 2024-02-23 00:18:29.899 2024-02-23 00:28:31.46 \N Purpose teacher manager once tax mouth. Notice person history Democrat https://example.com/ 17046 435691 435679.435691.435694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.66098457952586 0 \N \N f 0 \N 0 86359901 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 431392 2024-02-19 18:50:29.777 2024-02-19 19:00:31.182 \N Finally and may second. Middle wan https://example.com/ 762 431187 431187.431392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3232045456527 0 \N \N f 0 \N 1 68076888 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 444891 2024-03-01 12:09:53.32 2024-03-01 12:19:54.853 \N Before wrong success power prevent notice. Hard former stoc https://example.com/ 11498 444885 444739.444841.444867.444882.444885.444891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1095100397835 0 \N \N f 0 \N 0 184071215 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444893 2024-03-01 12:12:17.497 2024-03-01 12:22:18.652 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west p https://example.com/ 717 444840 444687.444709.444724.444732.444840.444893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4993276404519 0 \N \N f 0 \N 0 75814621 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 444897 2024-03-01 12:13:47.571 2024-03-01 12:23:48.629 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card le https://example.com/ 18842 444251 444015.444246.444251.444897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7744182541619 0 \N \N f 0 \N 0 210520881 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 438153 2024-02-25 11:55:11.8 2024-02-25 12:05:13.568 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern https://example.com/ 13100 438044 438044.438153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7512691852625 0 \N \N f 0 \N 1 93308470 0 f f \N \N \N \N 438044 \N 0 0 \N \N f \N 441051 2024-02-27 20:20:00.134 2024-02-27 20:30:02.306 \N Book it view should. Impact cold others be without. Fly coa https://example.com/ 20299 440985 440985.441051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.294753620782693 0 \N \N f 0 \N 0 60195454 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 441049 2024-02-27 20:17:00.222 2024-02-27 20:27:02.385 \N Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound https://example.com/ 14650 440941 440792.440941.441049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4484267023679 0 \N \N f 0 \N 0 233521644 0 f f \N \N \N \N 440792 \N 0 0 \N \N f \N 438234 2024-02-25 13:28:52.124 2024-02-25 13:38:53.524 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from natio https://example.com/ 21498 438188 438188.438234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.83109502463468 0 \N \N f 0 \N 0 8834567 0 f f \N \N \N \N 438188 \N 0 0 \N \N f \N 442601 2024-02-28 19:35:54.516 2024-02-28 19:45:55.958 \N Direction business early probably black https://example.com/ 696 441244 440988.441129.441244.442601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9711413463823 0 \N \N f 0 \N 0 173798327 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 435578 2024-02-22 22:01:27.751 2024-02-22 22:11:28.917 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose ro https://example.com/ 5017 435521 435521.435578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1571537745077 0 \N \N f 0 \N 0 86716903 0 f f \N \N \N \N 435521 \N 0 0 \N \N f \N 438223 2024-02-25 13:17:37.955 2024-02-25 13:27:40.861 \N Beyond song throw blood hard. Show already get best. Science fly interv https://example.com/ 20094 437322 437044.437322.438223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0719810327557 0 \N \N f 0 \N 0 198177164 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 438213 2024-02-25 13:11:49.913 2024-02-25 13:21:51.81 \N Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Ca https://example.com/ 18280 437502 437502.438213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.663730824072 0 \N \N f 0 \N 0 56056882 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 431592 2024-02-19 19:22:13.044 2024-02-19 19:32:14.452 \N Mention trip someone idea until physic https://example.com/ 14906 431392 431187.431392.431592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4988347401572 0 \N \N f 0 \N 0 162703199 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 444727 2024-03-01 10:23:34.115 2024-03-01 10:33:34.797 \N Always friend price benefit. Reflect seem help none truth myself resp https://example.com/ 11516 444666 444567.444666.444727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7052026235822 0 \N \N f 0 \N 0 30347811 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 444608 2024-03-01 06:14:50.754 2024-03-01 06:24:52.159 \N Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million st https://example.com/ 20143 444567 444567.444608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59412344761585 0 \N \N f 0 \N 0 203920316 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 431380 2024-02-19 18:40:14.583 2024-02-19 18:50:16.222 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reac https://example.com/ 16638 430601 430496.430601.431380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9229162742376 0 \N \N f 0 \N 0 227801508 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 437923 2024-02-25 03:34:44.885 2024-02-25 03:44:47.048 Speech radio kind know. Can travel though PM deep baby. Book eye Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually. https://example.com/ 21166 \N 437923 \N \N \N \N \N \N \N \N science \N ACTIVE \N 6.47811593697487 0 \N \N f 0 \N 2 33397372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438008 2024-02-25 08:11:27.258 2024-02-25 08:21:29.18 \N Professor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nRange laugh thousan https://example.com/ 14950 437805 437775.437800.437805.438008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5121668070875 0 \N \N f 0 \N 0 76568719 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 444620 2024-03-01 06:33:22.22 2024-03-01 06:43:23.888 \N Ten instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not https://example.com/ 19292 444567 444567.444620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19061668508376 0 \N \N f 0 \N 0 136367282 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 438014 2024-02-25 08:22:16.587 2024-02-25 08:32:18.656 \N Why long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nThere everybody fish can. Exactly office event charge https://example.com/ 15075 437812 437775.437812.438014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1947594607536 0 \N \N f 0 \N 0 6915649 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 431637 2024-02-19 19:33:17.209 2024-02-19 19:43:18.227 \N Them social create approach di https://example.com/ 3456 318242 318242.431637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.205098080764721 0 \N \N f 0 \N 0 362818 0 f f \N \N \N \N 318242 \N 0 0 \N \N f \N 442604 2024-02-28 19:38:33.773 2024-02-28 19:48:35.029 Morning create future popular. Shoulder animal society want indeed expert. Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great. https://example.com/ 18815 \N 442604 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4131248764117 0 \N \N f 0 \N 0 37032357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435604 2024-02-22 22:20:52.972 2024-02-22 22:30:54.59 \N News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nSeat https://example.com/ 14651 435548 435046.435127.435548.435604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64680087475504 0 \N \N f 0 \N 0 194831765 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 444602 2024-03-01 06:04:11.65 2024-03-01 06:14:13.415 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ag https://example.com/ 18423 444567 444567.444602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.24440909020174 0 \N \N f 0 \N 1 40652626 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 444674 2024-03-01 08:40:14.58 2024-03-01 08:50:15.838 Us less sure. Late travel us significa Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk im https://example.com/ 20430 \N 444674 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.299849798167422 0 \N \N f 0 \N 3 2694896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444676 2024-03-01 08:46:39.161 2024-03-01 08:56:41.611 \N Simply even growth change https://example.com/ 20563 444674 444674.444676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3234528809287 0 \N \N f 0 \N 2 210792079 0 f f \N \N \N \N 444674 \N 0 0 \N \N f \N 444552 2024-03-01 04:23:13.721 2024-03-01 04:33:15.555 \N View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whethe https://example.com/ 11590 444522 444522.444552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6217266189408 0 \N \N f 0 \N 1 118622889 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N 444605 2024-03-01 06:07:09.54 2024-03-01 06:17:11.349 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior pl https://example.com/ 20781 444522 444522.444605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4319399890563 0 \N \N f 0 \N 0 41366704 0 f f \N \N \N \N 444522 \N 0 0 \N \N f \N 443611 2024-02-29 14:53:35.948 2024-02-29 15:03:37.257 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prev https://example.com/ 5865 443583 443583.443611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6834369454015 0 \N \N f 0 \N 3 121887673 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 444719 2024-03-01 10:17:38.307 2024-03-01 10:27:39.785 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. https://example.com/ 4345 444119 443919.443973.444119.444719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.150532398507224 0 \N \N f 0 \N 0 206293348 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 438149 2024-02-25 11:51:59.441 2024-02-25 12:02:01.328 \N Fund spring who save three true. Past director road where I help https://example.com/ 17696 438147 438093.438096.438132.438135.438147.438149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.986420173533 0 \N \N f 0 \N 1 28541861 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438366 2024-02-25 15:30:05.738 2024-02-25 15:40:08.906 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise https://example.com/ 20291 438356 438356.438366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7777695654808 0 \N \N f 0 \N 0 9718149 0 f f \N \N \N \N 438356 \N 0 0 \N \N f \N 438135 2024-02-25 11:39:00.432 2024-02-25 11:49:03.021 \N Their election city process. Agency early its stock. Recent while population special serve https://example.com/ 14376 438132 438093.438096.438132.438135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2230877296783 0 \N \N f 0 \N 6 199164747 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438132 2024-02-25 11:35:53.124 2024-02-25 11:45:54.798 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture https://example.com/ 965 438096 438093.438096.438132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1537199822379 0 \N \N f 0 \N 7 18766759 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438238 2024-02-25 13:32:33.369 2024-02-25 13:42:34.975 \N Wide hundred paper early. Together third attorney https://example.com/ 9356 438200 438142.438200.438238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8746906542209 0 \N \N f 0 \N 0 143983478 0 f f \N \N \N \N 438142 \N 0 0 \N \N f \N 438125 2024-02-25 11:34:51.712 2024-02-25 11:44:53.392 \N We course us bank recently significant myself. Of https://example.com/ 20812 438086 437034.438086.438125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.57086112254149 0 \N \N f 0 \N 0 98619651 0 f f \N \N \N \N 437034 \N 0 0 \N \N f \N 441023 2024-02-27 20:04:53.724 2024-02-27 20:14:55.975 Threat successful admit write. Likely first response thing mis How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society. https://example.com/ 21088 \N 441023 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.8526406274107 0 \N \N f 0 \N 0 140758728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438228 2024-02-25 13:24:37.422 2024-02-25 13:34:38.47 \N Increase section kind decision. Individual mission song always for https://example.com/ 20646 438221 438209.438221.438228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5114696873605 0 \N \N f 0 \N 0 168775872 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 431108 2024-02-19 17:40:34.417 2024-02-19 17:50:35.537 \N Country audience including. Oc https://example.com/ 1221 413261 413261.431108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8429147013809 0 \N \N f 0 \N 0 162876754 0 f f \N \N \N \N 413261 \N 0 0 \N \N f \N 431576 2024-02-19 19:18:04.504 2024-02-19 19:28:05.843 \N Treat central body toward. Cel https://example.com/ 2039 332877 332877.431576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98436560765645 0 \N \N f 0 \N 0 177139215 0 f f \N \N \N \N 332877 \N 0 0 \N \N f \N 431578 2024-02-19 19:18:12.013 2024-02-19 19:28:13.872 \N Yard subject low series seriou https://example.com/ 14168 332529 332529.431578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6941774587196 0 \N \N f 0 \N 0 199690530 0 f f \N \N \N \N 332529 \N 0 0 \N \N f \N 431582 2024-02-19 19:18:20.533 2024-02-19 19:28:21.452 \N Decade activity affect another https://example.com/ 17708 332164 332164.431582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.689881102458 0 \N \N f 0 \N 0 230272918 0 f f \N \N \N \N 332164 \N 0 0 \N \N f \N 438142 2024-02-25 11:45:26.512 2024-02-25 11:55:27.679 Mean particularly though myself certain scientist. My list value sta Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nH https://example.com/ 19103 \N 438142 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.9052851968767 0 \N \N f 0 \N 2 81074067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444666 2024-03-01 08:17:31.923 2024-03-01 08:27:32.856 \N Cause daughter drop gas. Cell respond always experience https://example.com/ 7558 444567 444567.444666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83488379050302 0 \N \N f 0 \N 1 211620234 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 431567 2024-02-19 19:12:49.55 2024-02-19 19:22:51.124 \N Your firm https://example.com/ 14857 431298 429220.430149.430886.431298.431567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4443480329258 0 \N \N f 0 \N 0 7770125 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 431642 2024-02-19 19:33:28.357 2024-02-19 19:43:30.059 \N Lead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. https://example.com/ 13587 431598 431598.431642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9591231878244 0 \N \N f 0 \N 3 104651436 0 f f \N \N \N \N 431598 \N 0 0 \N \N f \N 442558 2024-02-28 18:49:30.601 2024-02-28 18:59:31.873 \N Light check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper https://example.com/ 19839 439263 439263.442558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4751071769689 0 \N \N f 0 \N 3 46224792 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 442562 2024-02-28 18:52:45.972 2024-02-28 19:02:48.689 \N Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nFoot not wonder myself https://example.com/ 9330 442558 439263.442558.442562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8897151669485 0 \N \N f 0 \N 2 234202995 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 444422 2024-02-29 23:52:13.524 2024-03-01 00:02:16.209 \N Article discussion court site share past. Hot character serve box four. Lose point visit include the case let https://example.com/ 900 444365 444365.444422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2513439489301 0 \N \N f 0 \N 0 153256107 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 438071 2024-02-25 10:21:06.605 2024-02-25 10:31:08.587 \N Firm study certainly point. Ask major born want physical nice. On imagine personal https://example.com/ 15161 437628 437583.437617.437628.438071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5947106472004 0 \N \N f 0 \N 3 171453802 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 1319 2021-08-23 19:26:39.964 2023-10-01 23:49:07.37 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their fa https://example.com/ 7760 1317 1247.1250.1253.1317.1319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9730228058563 0 \N \N f 0 \N 2 5973164 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 438253 2024-02-25 13:48:41.772 2024-02-25 13:58:43.161 \N Try hospital student. Stock floor by https://example.com/ 16259 438208 437583.437617.437628.438071.438208.438253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6791544607321 0 \N \N f 0 \N 1 159673147 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 431620 2024-02-19 19:32:32.728 2024-02-19 19:42:34.431 \N Ball training later think quit https://example.com/ 5519 322250 322250.431620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.96714398430001 0 \N \N f 0 \N 0 50243965 0 f f \N \N \N \N 322250 \N 0 0 \N \N f \N 437308 2024-02-24 14:49:37.303 2024-02-24 14:59:38.805 \N Small newspaper answer adult morning. Effort happy righ https://example.com/ 11378 437293 436752.437184.437271.437292.437293.437308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.006174141346 0 \N \N f 0 \N 29 231744988 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438489 2024-02-25 17:44:35.413 2024-02-25 17:54:37.277 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nArea series street exist cold reflect thought. Imagine else activity p https://example.com/ 640 438414 438414.438489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4059945444582 0 \N \N f 0 \N 0 127820934 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 444691 2024-03-01 09:42:37.468 2024-03-01 09:52:39.175 Source scientist hair let. Tough hit specific Long management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find. https://example.com/ 13927 \N 444691 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.5621578335548 0 \N \N f 0 \N 0 35602085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444646 2024-03-01 07:08:17.181 2024-03-01 07:18:18.774 \N Popular entire medical office can. Those begin for own offer relationship food. H https://example.com/ 13763 444475 444168.444475.444646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25056737009616 0 \N \N f 0 \N 0 247583063 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438208 2024-02-25 13:03:45.98 2024-02-25 13:13:48.018 \N Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Execu https://example.com/ 12139 438071 437583.437617.437628.438071.438208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.781489077514 0 \N \N f 0 \N 2 214172723 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 444220 2024-02-29 20:30:20.684 2024-02-29 20:40:21.543 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west not https://example.com/ 5129 444168 444168.444220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3459710792886 0 \N \N f 0 \N 4 169362053 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444376 2024-02-29 22:46:45.122 2024-02-29 22:56:46.29 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. W https://example.com/ 11967 444168 444168.444376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09992279999027 0 \N \N f 0 \N 0 148934968 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 1395 2021-08-25 19:20:57.216 2023-10-01 23:49:16.716 \N White seven property least father local. https://example.com/ 698 1392 1392.1395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2511952167683 0 \N \N f 0 \N 5 76864983 0 f f \N \N \N \N 1392 \N 0 0 \N \N f \N 442589 2024-02-28 19:22:46.69 2024-02-28 19:32:48.362 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine fo https://example.com/ 20258 442508 442508.442589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0206478253529 0 \N \N f 0 \N 1 144726549 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 444210 2024-02-29 20:24:58.486 2024-02-29 20:34:59.77 \N Quickly build security. Thought structure likely partne https://example.com/ 21072 444168 444168.444210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4436270580139 0 \N \N f 0 \N 1 181681277 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 430953 2024-02-19 16:40:28.657 2024-02-19 16:50:30.742 Site coach strong dark while new Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nMight also begi https://example.com/ 16754 \N 430953 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.83098532787001 0 \N \N f 0 \N 0 22325441 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444709 2024-03-01 10:07:15.481 2024-03-01 10:17:16.262 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps hersel https://example.com/ 16176 444687 444687.444709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1909087190811 0 \N \N f 0 \N 4 71226178 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 444722 2024-03-01 10:20:29.43 2024-03-01 10:30:30.487 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage s https://example.com/ 7673 444567 444567.444722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7614482335121 0 \N \N f 0 \N 1 214816760 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 441018 2024-02-27 20:02:56.854 2024-02-27 20:12:58.359 Go effect true such such wind market. Role suggest perhaps choose se Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Availa https://example.com/ 21207 \N 441018 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 17.933330507998 0 \N \N f 0 \N 0 174783592 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439332 2024-02-26 13:51:45.776 2024-02-26 14:01:46.646 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which https://example.com/ 1534 438389 438389.439332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42248881899586 0 \N \N f 0 \N 0 24894931 0 f f \N \N \N \N 438389 \N 0 0 \N \N f \N 444710 2024-03-01 10:07:27.821 2024-03-01 10:17:28.615 Own shoulder kind fact. Poor bring quite the better Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game. https://example.com/ 1596 \N 444710 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6704254662027 0 \N \N f 0 \N 1 240087526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441293 2024-02-28 00:34:59.428 2024-02-28 00:45:00.872 Always line h Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go. https://example.com/ 20434 \N 441293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.1476066113656 0 \N \N f 0 \N 0 175816684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434857 2024-02-22 11:55:37.658 2024-02-22 12:05:39.024 \N Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his https://example.com/ 11829 434847 434813.434847.434857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2232182678962 0 \N \N f 0 \N 0 204347346 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 441305 2024-02-28 00:46:13.086 2024-02-28 00:56:14.177 \N Success against price. Resource end yeah step bit suppo https://example.com/ 16594 434813 434813.441305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26173912474826 0 \N \N f 0 \N 0 73725462 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 431391 2024-02-19 18:48:08.356 2024-02-19 18:58:10.172 Yourself debate term during boy. Significant step line. Current learn shake Break test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious. https://example.com/ 18311 \N 431391 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.5351095784946 0 \N \N f 0 \N 0 106735022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435634 2024-02-22 22:56:41.484 2024-02-22 23:06:43.27 Industry great onto trial wind. Rule radio trial she its u Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nMaterial focus experience picture. Future still full blood suggest win. Member far light https://example.com/ 11523 \N 435634 \N \N \N \N \N \N \N \N security \N ACTIVE \N 21.0679016145927 0 \N \N f 0 \N 0 123025043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431615 2024-02-19 19:32:20.632 2024-02-19 19:42:21.783 \N Specific listen sit. Represent https://example.com/ 19826 322965 322965.431615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.337328656772833 0 \N \N f 0 \N 0 158147098 0 f f \N \N \N \N 322965 \N 0 0 \N \N f \N 431678 2024-02-19 19:36:04.662 2024-02-19 19:46:05.856 \N Quickly fill science from poli https://example.com/ 18072 310803 310803.431678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7112821863708 0 \N \N f 0 \N 0 235116660 0 f f \N \N \N \N 310803 \N 0 0 \N \N f \N 435685 2024-02-23 00:04:37.719 2024-02-23 00:14:39.318 Wide hundred paper early. Together third attorney entire. And charge happ Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before speci https://example.com/ 16970 \N 435685 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.7667971657218 0 \N \N f 0 \N 0 154193590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438664 2024-02-25 21:08:48.059 2024-02-25 21:18:49.894 \N Hotel reme https://example.com/ 20129 438663 438634.438663.438664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1927421062983 0 \N \N f 0 \N 0 208925408 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 431603 2024-02-19 19:31:32.985 2024-02-19 19:41:34.579 \N Go game bar use image. Organiz https://example.com/ 18608 325289 325289.431603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5323671527742 0 \N \N f 0 \N 0 14740279 0 f f \N \N \N \N 325289 \N 0 0 \N \N f \N 443408 2024-02-29 12:46:00.62 2024-02-29 12:56:02.527 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow w https://example.com/ 17526 443274 443274.443408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64198132222509 0 \N \N f 0 \N 0 111785991 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 442599 2024-02-28 19:33:19.206 2024-02-28 19:43:21.138 \N Dea https://example.com/ 15728 442515 442515.442599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4693371816166 0 \N \N f 0 \N 0 126154657 0 f f \N \N \N \N 442515 \N 0 0 \N \N f \N 438260 2024-02-25 13:55:01.249 2024-02-25 14:05:02.765 \N Community region she TV since sometimes know. https://example.com/ 14278 438198 438198.438260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7164650680924 0 \N \N f 0 \N 0 223634286 0 f f \N \N \N \N 438198 \N 0 0 \N \N f \N 438248 2024-02-25 13:44:19.664 2024-02-25 13:54:22.596 \N Four whole sort. Every s https://example.com/ 1221 437454 437454.438248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0759653523267 0 \N \N f 0 \N 0 249486462 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 431606 2024-02-19 19:31:49.912 2024-02-19 19:41:50.827 \N Author professional find face https://example.com/ 18772 324620 324620.431606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.11876052488347 0 \N \N f 0 \N 0 200576530 0 f f \N \N \N \N 324620 \N 0 0 \N \N f \N 442127 2024-02-28 15:07:30.565 2024-02-28 15:17:32.216 \N Floor white civil remain. Purpose spend one position develop https://example.com/ 20602 440725 440725.442127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4750672776589 0 \N \N f 0 \N 0 235660343 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 444726 2024-03-01 10:23:23.242 2024-03-01 10:33:24.63 Spend democratic second find president walk model. Challeng Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill. https://example.com/ 20251 \N 444726 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.6964572810781 0 \N \N f 0 \N 1 122331682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444742 2024-03-01 10:37:05.989 2024-03-01 10:47:14.109 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. https://example.com/ 19037 444726 444726.444742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91354927799485 0 \N \N f 0 \N 0 50706458 0 f f \N \N \N \N 444726 \N 0 0 \N \N f \N 444733 2024-03-01 10:30:28.884 2024-03-01 10:40:30.163 \N Avoid avoid forward. Speech suffer level already art technol https://example.com/ 8095 444722 444567.444722.444733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5857409794211 0 \N \N f 0 \N 0 127927917 0 f f \N \N \N \N 444567 \N 0 0 \N \N f \N 438113 2024-02-25 11:22:46.117 2024-02-25 11:32:47.172 \N Born value hundred medical loss. Kid white check draw chance https://example.com/ 18177 438051 438051.438113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1310514463571 0 \N \N f 0 \N 1 50646444 0 f f \N \N \N \N 438051 \N 0 0 \N \N f \N 431649 2024-02-19 19:33:43.944 2024-02-19 19:43:45.239 \N Point box near. Affect glass n https://example.com/ 20301 327064 327064.431649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9248024131861 0 \N \N f 0 \N 0 80811897 0 f f \N \N \N \N 327064 \N 0 0 \N \N f \N 432405 2024-02-20 12:11:18.425 2024-02-20 12:21:19.69 \N Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nFrom democratic trial American blue. Save carry https://example.com/ 5129 429509 429509.432405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4817438476076 0 \N \N f 0 \N 3 133596765 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N 431657 2024-02-19 19:34:46.446 2024-02-19 19:44:48.176 \N Heart such other on during cat https://example.com/ 11458 315286 315286.431657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1577214775331 0 \N \N f 0 \N 0 188697600 0 f f \N \N \N \N 315286 \N 0 0 \N \N f \N 431618 2024-02-19 19:32:27.24 2024-02-19 19:42:28.355 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nPublic ask news upon forget election. Television technology https://example.com/ 11091 430836 430607.430617.430641.430670.430674.430836.431618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51669071771331 0 \N \N f 0 \N 0 124557298 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 438247 2024-02-25 13:43:06.595 2024-02-25 13:53:08.719 \N Capital treat simple ahead make study. Far administration week not https://example.com/ 803 437611 437611.438247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9313223816262 0 \N \N f 0 \N 0 153796526 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 443895 2024-02-29 17:24:48.318 2024-02-29 17:34:49.601 Knowledge ever his fly. Situation help treat total surface. Expect degree Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nPlant developm https://example.com/ 18423 \N 443895 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.9421294451184 0 \N \N f 0 \N 2 8645313 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438070 2024-02-25 10:19:35.332 2024-02-25 10:29:36.697 \N Physical woman wait smile him. Page nice front machine over. Gro https://example.com/ 18068 437755 437583.437755.438070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0516291316598 0 \N \N f 0 \N 0 217674430 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 438126 2024-02-25 11:34:58.724 2024-02-25 11:45:00.632 \N Third would fire interest PM upon people. https://example.com/ 981 437764 437723.437752.437764.438126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0381773059207 0 \N \N f 0 \N 0 229995118 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444756 2024-03-01 10:50:22.394 2024-03-01 11:00:23.863 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material https://example.com/ 5497 444750 443895.444750.444756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.84281386010808 0 \N \N f 0 \N 0 21176043 0 f f \N \N \N \N 443895 \N 0 0 \N \N f \N 438252 2024-02-25 13:47:55.649 2024-02-25 13:57:56.579 \N Item attention child take film late. Still next free list. Artist seven o https://example.com/ 20327 438249 438249.438252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9232665488893 0 \N \N f 0 \N 1 116861615 0 f f \N \N \N \N 438249 \N 0 0 \N \N f \N 444752 2024-03-01 10:46:23.343 2024-03-01 10:56:25.404 \N Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy intervi https://example.com/ 2525 223053 222527.222969.223053.444752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7418606122875 0 \N \N f 0 \N 0 221966724 0 f f \N \N \N \N 222527 \N 0 0 \N \N f \N 444737 2024-03-01 10:34:17.872 2024-03-01 10:44:18.979 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nClass population stage though page happen expect. Even drug president expect. Decision officer question https://example.com/ 20912 444730 444730.444737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.93778616914388 0 \N \N f 0 \N 0 205454501 0 f f \N \N \N \N 444730 \N 0 0 \N \N f \N 438268 2024-02-25 13:59:32.47 2024-02-25 14:09:33.875 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collecti https://example.com/ 16788 438229 438229.438268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16725084334713 0 \N \N f 0 \N 0 8626600 0 f f \N \N \N \N 438229 \N 0 0 \N \N f \N 441153 2024-02-27 22:08:17.736 2024-02-27 22:18:19.193 Animal character seek song. Compare put sometimes charge once. Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nCompany save finally water. Agree choice until mean https://example.com/ 14202 \N 441153 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 8.92030932142493 0 \N \N f 0 \N 1 247075813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430939 2024-02-19 16:33:34.852 2024-02-19 16:43:36.563 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\n https://example.com/ 19541 430752 430330.430752.430939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3588016776607 0 \N \N f 0 \N 0 53939930 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 438256 2024-02-25 13:50:56.404 2024-02-25 14:00:58.222 Real goal cover. Mention leg sport seem. Back certainly now a Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score. https://example.com/ 1483 \N 438256 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 1.99878951345806 0 \N \N f 0 \N 0 101267357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444758 2024-03-01 10:51:17.549 2024-03-01 11:01:19.222 \N Support s https://example.com/ 19557 444743 444725.444743.444758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82631200791484 0 \N \N f 0 \N 0 100299549 0 f f \N \N \N \N 444725 \N 0 0 \N \N f \N 444763 2024-03-01 10:54:09.637 2024-03-01 11:04:11.241 \N Range laugh thousand step. Them television final out care d https://example.com/ 8045 443857 443272.443857.444763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.334817723531 0 \N \N f 0 \N 0 37856149 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 430931 2024-02-19 16:29:09.858 2024-02-19 16:39:11.634 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nMember I discover option techn https://example.com/ 2508 430863 430607.430617.430641.430670.430674.430836.430863.430931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45632274254541 0 \N \N f 0 \N 1 120203711 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 444743 2024-03-01 10:41:37.211 2024-03-01 10:51:39.241 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone https://example.com/ 11996 444725 444725.444743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3768765502656 0 \N \N f 0 \N 1 179315592 0 f f \N \N \N \N 444725 \N 0 0 \N \N f \N 431668 2024-02-19 19:35:38.634 2024-02-19 19:45:40.012 \N Finish only air provide. Wife https://example.com/ 18448 314787 314787.431668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1526433678684 0 \N \N f 0 \N 0 19743096 0 f f \N \N \N \N 314787 \N 0 0 \N \N f \N 444769 2024-03-01 10:58:59.678 2024-03-01 11:09:01.416 \N Though eye claim side government. Form program analysis somebo https://example.com/ 5904 444159 443272.444159.444769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6245665339673 0 \N \N f 0 \N 0 48002993 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 431664 2024-02-19 19:35:27.769 2024-02-19 19:45:29.058 \N Several follow value modern sa https://example.com/ 11018 314970 314970.431664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.60483434100294 0 \N \N f 0 \N 0 25759915 0 f f \N \N \N \N 314970 \N 0 0 \N \N f \N 443416 2024-02-29 12:54:05.082 2024-02-29 13:04:07.18 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal https://example.com/ 676 443295 443295.443416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0103106083915 0 \N \N f 0 \N 0 115984909 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444768 2024-03-01 10:58:36.343 2024-03-01 11:08:37.506 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep https://example.com/ 19381 443926 443272.443926.444768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.89988600341404 0 \N \N f 0 \N 0 111151111 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444767 2024-03-01 10:56:49.233 2024-03-01 11:38:57.636 \N Book it view should https://example.com/ 5128 444663 444065.444403.444514.444663.444767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9118895142959 0 \N \N f 0 \N 0 82430377 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N 444762 2024-03-01 10:53:55.424 2024-03-01 11:03:57.155 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager thr https://example.com/ 12606 444718 444718.444762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4075271055646 0 \N \N f 0 \N 1 186527961 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431670 2024-02-19 19:35:43.373 2024-02-19 19:45:45.048 \N Them debate main bad. Personal https://example.com/ 20264 313982 313982.431670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8137590988519 0 \N \N f 0 \N 0 159464947 0 f f \N \N \N \N 313982 \N 0 0 \N \N f \N 444159 2024-02-29 19:53:11.921 2024-02-29 20:03:14.39 \N Field rock decide physical role these produce camera. Scene Mrs concern pattern. https://example.com/ 2773 443272 443272.444159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5107816167824 0 \N \N f 0 \N 1 72825775 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 438302 2024-02-25 14:28:45.61 2024-02-25 14:38:46.675 \N Red production hi https://example.com/ 18865 438289 437044.437809.438045.438289.438302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2895979968377 0 \N \N f 0 \N 0 48491423 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 444757 2024-03-01 10:50:27.727 2024-03-01 11:00:29.063 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bi https://example.com/ 17708 222527 222527.444757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77861274653331 0 \N \N f 0 \N 0 153239724 0 f f \N \N \N \N 222527 \N 0 0 \N \N f \N 438266 2024-02-25 13:57:32.297 2024-02-25 14:07:34.109 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news r https://example.com/ 17517 438113 438051.438113.438266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0726810885213069 0 \N \N f 0 \N 0 30397719 0 f f \N \N \N \N 438051 \N 0 0 \N \N f \N 431696 2024-02-19 19:39:31.05 2024-02-19 19:49:32.687 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their wri https://example.com/ 20596 431388 430949.430955.430983.430990.431388.431696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57558597000212 0 \N \N f 0 \N 0 63138369 0 f f \N \N \N \N 430949 \N 0 0 \N \N f \N 437713 2024-02-24 21:49:34.396 2024-02-24 21:59:36.573 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surfa https://example.com/ 20657 437670 437670.437713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6368974520949 0 \N \N f 0 \N 1 96288704 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 444774 2024-03-01 11:01:24.919 2024-03-01 11:11:26.061 Doctor operation because training lose meeting Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue. https://example.com/ 9705 \N 444774 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9790305076789 0 \N \N f 0 \N 0 166136996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431694 2024-02-19 19:39:23.3 2024-02-19 19:49:24.637 \N Specific brother six people ce https://example.com/ 9242 302133 302133.431694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1800376006144 0 \N \N f 0 \N 0 107830153 0 f f \N \N \N \N 302133 \N 0 0 \N \N f \N 444779 2024-03-01 11:02:29.883 2024-03-01 11:12:31.535 \N Them debate main bad. Personal security be government. Common as ci https://example.com/ 19557 444759 444718.444759.444779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2478356874751 0 \N \N f 0 \N 0 115743792 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431691 2024-02-19 19:39:14.925 2024-02-19 19:49:15.908 \N Before wrong success power pre https://example.com/ 18727 302549 302549.431691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.181650520268093 0 \N \N f 0 \N 0 125275200 0 f f \N \N \N \N 302549 \N 0 0 \N \N f \N 431705 2024-02-19 19:39:55.975 2024-02-19 19:49:57.063 \N Trip improve born state simila https://example.com/ 17212 300182 300182.431705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3151283435468 0 \N \N f 0 \N 0 108795576 0 f f \N \N \N \N 300182 \N 0 0 \N \N f \N 444822 2024-03-01 11:22:07.809 2024-03-01 11:32:09.158 \N Tax kid loss hear ahead common best see. Number thus which story list forc https://example.com/ 6653 444718 444718.444822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5498847390209 0 \N \N f 0 \N 1 140313344 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431693 2024-02-19 19:39:20.849 2024-02-19 19:49:21.932 \N Build leg whole describe peace https://example.com/ 913 302278 302278.431693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3130122476264 0 \N \N f 0 \N 0 147870932 0 f f \N \N \N \N 302278 \N 0 0 \N \N f \N 441325 2024-02-28 01:09:14.993 2024-02-28 01:19:16.08 \N Commercial loss https://example.com/ 9329 441077 441077.441325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7732803166225 0 \N \N f 0 \N 0 12861808 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 435658 2024-02-22 23:28:10.232 2024-02-22 23:38:11.519 \N Director far fact order bit c https://example.com/ 19613 435357 435357.435658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.622949120013807 0 \N \N f 0 \N 1 52732062 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N 431728 2024-02-19 19:47:25.033 2024-02-19 19:57:26.288 \N Position see least suddenly ju https://example.com/ 21275 297254 297254.431728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8260472642353 0 \N \N f 0 \N 0 188278553 0 f f \N \N \N \N 297254 \N 0 0 \N \N f \N 430990 2024-02-19 17:07:49.953 2024-02-19 17:17:51.484 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nPlay director employee. https://example.com/ 989 430983 430949.430955.430983.430990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81946701148248 0 \N \N f 0 \N 2 114015626 0 f f \N \N \N \N 430949 \N 0 0 \N \N f \N 438307 2024-02-25 14:31:02.601 2024-02-25 14:41:04.092 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service p https://example.com/ 7766 433828 433828.438307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2094625024944 0 \N \N f 0 \N 0 96760826 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438249 2024-02-25 13:45:11.532 2024-02-25 13:55:12.446 Deal could skin some. Through street fact almost. Mov Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain. https://example.com/ 18923 \N 438249 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.13886914040944 0 \N \N f 0 \N 3 170503474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431865 2024-02-19 21:00:22.88 2024-02-19 21:10:24.395 \N Lead between race contain politics. Base behavior suggest image information. Sound everyone think instead co https://example.com/ 913 303469 303469.431865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0905127896438 0 \N \N f 0 \N 0 26061772 0 f f \N \N \N \N 303469 \N 0 0 \N \N f \N 438269 2024-02-25 14:01:31.544 2024-02-25 14:11:33.03 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nHotel black matter recentl https://example.com/ 21014 437846 437723.437738.437759.437763.437766.437771.437846.438269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31778445817811 0 \N \N f 0 \N 0 2307943 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431870 2024-02-19 21:08:29.357 2024-02-19 21:18:31.019 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music a https://example.com/ 19638 431596 430607.431596.431870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4406676404201 0 \N \N f 0 \N 0 96025723 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 431901 2024-02-19 21:35:08.053 2024-02-19 21:45:09.735 \N Identify painting degree hit shake https://example.com/ 20430 431809 431809.431901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54668723373206 0 \N \N f 0 \N 0 68369714 0 f f \N \N \N \N 431809 \N 0 0 \N \N f \N 438143 2024-02-25 11:46:42.855 2024-02-25 11:56:43.906 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nScene relate paper hospital. Star cultural stay inside rule manag https://example.com/ 16670 437234 436977.437023.437234.438143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4064467620379 0 \N \N f 0 \N 0 201341033 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 437234 2024-02-24 14:16:08.75 2024-02-24 14:26:09.763 \N Occur power prevent become issue forward feel. Interview information https://example.com/ 13921 437023 436977.437023.437234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3211007907046 0 \N \N f 0 \N 1 210735617 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 431572 2024-02-19 19:15:34.835 2024-02-19 19:25:35.632 \N At within eye player newspaper fish part https://example.com/ 15594 429612 429612.431572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.8578470261482 0 \N \N f 0 \N 1 248425336 0 f f \N \N \N \N 429612 \N 0 0 \N \N f \N 431599 2024-02-19 19:30:36.017 2024-02-19 19:40:37.925 \N Measure https://example.com/ 17455 431591 431591.431599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7457978280165 0 \N \N f 0 \N 0 32865506 0 f f \N \N \N \N 431591 \N 0 0 \N \N f \N 431715 2024-02-19 19:40:26.236 2024-02-19 19:50:28.198 \N Begin kind newspaper game proc https://example.com/ 673 297879 297879.431715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4039636128571 0 \N \N f 0 \N 0 26309630 0 f f \N \N \N \N 297879 \N 0 0 \N \N f \N 431601 2024-02-19 19:31:25.903 2024-02-19 19:41:26.465 \N Middle city always. Benefit wa https://example.com/ 20901 326491 326491.431601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.70862734306287 0 \N \N f 0 \N 0 52410998 0 f f \N \N \N \N 326491 \N 0 0 \N \N f \N 431602 2024-02-19 19:31:29.273 2024-02-19 19:41:30.521 \N Parent often ever. Song modern https://example.com/ 21036 325821 325821.431602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20615120580718 0 \N \N f 0 \N 0 98348068 0 f f \N \N \N \N 325821 \N 0 0 \N \N f \N 444760 2024-03-01 10:52:43.078 2024-03-01 11:02:44.697 \N Detail me send tax knowledge. Bad police remember https://example.com/ 1010 444738 444718.444738.444760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33002439865496 0 \N \N f 0 \N 0 194586836 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431604 2024-02-19 19:31:35.923 2024-02-19 19:41:36.598 \N Detail discussion line around. https://example.com/ 3439 324887 324887.431604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4289331581336 0 \N \N f 0 \N 0 51292164 0 f f \N \N \N \N 324887 \N 0 0 \N \N f \N 431605 2024-02-19 19:31:47.159 2024-02-19 19:41:48.813 \N Know son future suggest paper https://example.com/ 20849 324726 324726.431605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8579131649667 0 \N \N f 0 \N 0 198048917 0 f f \N \N \N \N 324726 \N 0 0 \N \N f \N 431607 2024-02-19 19:31:52.43 2024-02-19 19:41:53.85 \N Until must summer internationa https://example.com/ 15690 323939 323939.431607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93132523456058 0 \N \N f 0 \N 0 232687983 0 f f \N \N \N \N 323939 \N 0 0 \N \N f \N 431608 2024-02-19 19:31:55.039 2024-02-19 19:41:56.869 \N Story do plant get. Base invol https://example.com/ 9611 323757 323757.431608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5247128063266 0 \N \N f 0 \N 0 129536733 0 f f \N \N \N \N 323757 \N 0 0 \N \N f \N 431610 2024-02-19 19:32:09.141 2024-02-19 19:42:10.309 \N Popular rest certainly. Citize https://example.com/ 909 323540 323540.431610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3841227902157 0 \N \N f 0 \N 0 63485447 0 f f \N \N \N \N 323540 \N 0 0 \N \N f \N 431609 2024-02-19 19:31:58.169 2024-02-19 19:41:59.891 \N Push recently lay whose. Windo https://example.com/ 21389 323538 323538.431609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0288745658363 0 \N \N f 0 \N 0 35053531 0 f f \N \N \N \N 323538 \N 0 0 \N \N f \N 431611 2024-02-19 19:32:12.151 2024-02-19 19:42:14.236 \N Forget issue save education. H https://example.com/ 6383 323416 323416.431611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0925948178097 0 \N \N f 0 \N 0 2371126 0 f f \N \N \N \N 323416 \N 0 0 \N \N f \N 438273 2024-02-25 14:04:10.958 2024-02-25 14:14:11.907 \N Mother up probably anythin https://example.com/ 16965 438249 438249.438273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6694152629341 0 \N \N f 0 \N 0 3795144 0 f f \N \N \N \N 438249 \N 0 0 \N \N f \N 431612 2024-02-19 19:32:13.808 2024-02-19 19:42:15.248 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very stati https://example.com/ 11263 431572 429612.431572.431612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0887962503681 0 \N \N f 0 \N 0 201854543 0 f f \N \N \N \N 429612 \N 0 0 \N \N f \N 431617 2024-02-19 19:32:26.665 2024-02-19 19:42:27.98 \N Someone network true easy stor https://example.com/ 722 322789 322789.431617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7447101549482 0 \N \N f 0 \N 0 150265211 0 f f \N \N \N \N 322789 \N 0 0 \N \N f \N 431619 2024-02-19 19:32:29.411 2024-02-19 19:42:30.994 \N Rise environmental middle fly https://example.com/ 18736 322409 322409.431619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7761548203272 0 \N \N f 0 \N 0 152219892 0 f f \N \N \N \N 322409 \N 0 0 \N \N f \N 431626 2024-02-19 19:32:47.949 2024-02-19 19:42:49.087 \N Set how recognize operation Am https://example.com/ 20674 320878 320878.431626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32253180824944 0 \N \N f 0 \N 0 234881815 0 f f \N \N \N \N 320878 \N 0 0 \N \N f \N 430923 2024-02-19 16:22:18.013 2024-02-19 16:32:18.897 Though deal provide ball statement example believe. Business interview contain. Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter. https://example.com/ 21591 \N 430923 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.45772182703171 0 \N \N f 0 \N 1 202652558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444706 2024-03-01 10:06:23.958 2024-03-01 10:16:25.395 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil p https://example.com/ 2010 444700 444700.444706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8616746125273 0 \N \N f 0 \N 3 113288952 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 431167 2024-02-19 18:06:15.362 2024-02-19 18:16:17.266 Plan theory effect center maintain man. Now field a Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change. https://example.com/ 11716 \N 431167 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.49244175104753 0 \N \N f 0 \N 2 53189068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431751 2024-02-19 19:48:44.023 2024-02-19 19:58:45.337 \N Foot upon smile pass house signific https://example.com/ 21361 431597 431597.431751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56467061827868 0 \N \N f 0 \N 0 97083115 0 f f \N \N \N \N 431597 \N 0 0 \N \N f \N 431827 2024-02-19 20:21:53.413 2024-02-19 20:31:55.273 \N Per over executive. Happy invo https://example.com/ 6578 431597 431597.431827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4449086671939 0 \N \N f 0 \N 0 34445534 0 f f \N \N \N \N 431597 \N 0 0 \N \N f \N 444723 2024-03-01 10:20:46.225 2024-03-01 10:30:47.84 \N Take discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Languag https://example.com/ 8423 444706 444700.444706.444723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.948781740902 0 \N \N f 0 \N 2 67058447 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 444740 2024-03-01 10:36:32.148 2024-03-01 10:46:33.62 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop w https://example.com/ 13878 444723 444700.444706.444723.444740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09933991764334 0 \N \N f 0 \N 1 20829550 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 431650 2024-02-19 19:33:46.825 2024-02-19 19:43:47.664 \N Plan theory effect center main https://example.com/ 19770 327110 327110.431650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64071467260831 0 \N \N f 0 \N 0 108589005 0 f f \N \N \N \N 327110 \N 0 0 \N \N f \N 431643 2024-02-19 19:33:30.029 2024-02-19 19:43:32.484 \N Experience ok car standard ite https://example.com/ 19394 326657 326657.431643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1390895827933 0 \N \N f 0 \N 0 249904904 0 f f \N \N \N \N 326657 \N 0 0 \N \N f \N 431645 2024-02-19 19:33:32.765 2024-02-19 19:43:34.106 \N Special thought day cup hard c https://example.com/ 2322 326745 326745.431645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7979743695275 0 \N \N f 0 \N 0 190530976 0 f f \N \N \N \N 326745 \N 0 0 \N \N f \N 431686 2024-02-19 19:36:25.938 2024-02-19 19:46:26.913 \N Them social create approach di https://example.com/ 15226 316567 316567.431686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0977638621886 0 \N \N f 0 \N 0 222010642 0 f f \N \N \N \N 316567 \N 0 0 \N \N f \N 431646 2024-02-19 19:33:35.334 2024-02-19 19:43:37.137 \N Onto although Democrat mind si https://example.com/ 10013 326832 326832.431646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0115617910539 0 \N \N f 0 \N 0 179439168 0 f f \N \N \N \N 326832 \N 0 0 \N \N f \N 431651 2024-02-19 19:33:49.457 2024-02-19 19:43:51.326 \N Film happen almost than. Staff https://example.com/ 19488 327138 327138.431651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8964156108805 0 \N \N f 0 \N 0 167086499 0 f f \N \N \N \N 327138 \N 0 0 \N \N f \N 431647 2024-02-19 19:33:38.16 2024-02-19 19:43:39.629 \N Author nearly sea similar heal https://example.com/ 669 326883 326883.431647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48179215647322 0 \N \N f 0 \N 0 136970352 0 f f \N \N \N \N 326883 \N 0 0 \N \N f \N 431652 2024-02-19 19:33:52.142 2024-02-19 19:43:53.691 \N Though eye claim side governme https://example.com/ 2519 327558 327558.431652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.658728495662 0 \N \N f 0 \N 0 204220691 0 f f \N \N \N \N 327558 \N 0 0 \N \N f \N 431653 2024-02-19 19:33:58.939 2024-02-19 19:43:59.715 \N Field eat man but religious cl https://example.com/ 822 327854 327854.431653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3696670221501 0 \N \N f 0 \N 0 89981988 0 f f \N \N \N \N 327854 \N 0 0 \N \N f \N 431669 2024-02-19 19:35:40.952 2024-02-19 19:45:42.029 \N Various discussion light page https://example.com/ 698 314332 314332.431669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.27537480508163 0 \N \N f 0 \N 0 27466432 0 f f \N \N \N \N 314332 \N 0 0 \N \N f \N 431656 2024-02-19 19:34:05.301 2024-02-19 19:44:06.743 \N Heart such other on during cat https://example.com/ 20006 328319 328319.431656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5870947904041 0 \N \N f 0 \N 0 93414858 0 f f \N \N \N \N 328319 \N 0 0 \N \N f \N 431299 2024-02-19 18:30:08.685 2024-02-19 18:40:10.022 About cell note lot page. Feel manage language. R Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific. https://example.com/ 7966 \N 431299 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.3593778626275 0 \N \N f 0 \N 0 150405168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435361 2024-02-22 18:25:28.136 2024-02-22 18:35:30.312 \N General against page door. https://example.com/ 4062 435357 435357.435361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.73326308183749 0 \N \N f 0 \N 1 170130642 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N 431660 2024-02-19 19:35:22.57 2024-02-19 19:45:23.909 If lose particular record natural camera good. Season serve Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land. https://example.com/ 14472 \N 431660 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.95891315648102 0 \N \N f 0 \N 0 195133659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431662 2024-02-19 19:35:22.942 2024-02-19 19:45:24.689 \N Live child like read. Gas forg https://example.com/ 21416 315105 315105.431662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37271798280396 0 \N \N f 0 \N 0 187831592 0 f f \N \N \N \N 315105 \N 0 0 \N \N f \N 431665 2024-02-19 19:35:30.763 2024-02-19 19:45:31.959 \N Boy force agency change score https://example.com/ 2322 314953 314953.431665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.135811532999 0 \N \N f 0 \N 0 61594447 0 f f \N \N \N \N 314953 \N 0 0 \N \N f \N 431671 2024-02-19 19:35:45.781 2024-02-19 19:45:47.061 \N Identify health spend could. H https://example.com/ 681 313884 313884.431671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7234462026743 0 \N \N f 0 \N 0 37916562 0 f f \N \N \N \N 313884 \N 0 0 \N \N f \N 431673 2024-02-19 19:35:52.077 2024-02-19 19:45:54.17 \N Morning better everybody sense https://example.com/ 19147 313276 313276.431673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.511046592566 0 \N \N f 0 \N 0 22192542 0 f f \N \N \N \N 313276 \N 0 0 \N \N f \N 431675 2024-02-19 19:35:57.51 2024-02-19 19:45:59.287 \N Last expert dark compare nearl https://example.com/ 15351 311810 311810.431675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7301350246304 0 \N \N f 0 \N 0 62443425 0 f f \N \N \N \N 311810 \N 0 0 \N \N f \N 431679 2024-02-19 19:36:07.375 2024-02-19 19:46:08.862 \N Parent always at part must all https://example.com/ 1319 310611 310611.431679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0119712652528 0 \N \N f 0 \N 0 192627177 0 f f \N \N \N \N 310611 \N 0 0 \N \N f \N 430929 2024-02-19 16:26:50.697 2024-02-19 16:36:52.852 Speak organization direction school minute. Daughter model long pra Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional https://example.com/ 20812 \N 430929 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.7768323274144 0 \N \N f 0 \N 0 178119941 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431681 2024-02-19 19:36:12.36 2024-02-19 19:46:13.878 \N Method show window brother. Bu https://example.com/ 17148 309934 309934.431681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3737803388683 0 \N \N f 0 \N 0 46902140 0 f f \N \N \N \N 309934 \N 0 0 \N \N f \N 431683 2024-02-19 19:36:17.969 2024-02-19 19:46:18.894 \N Business food practice look wo https://example.com/ 680 316144 316144.431683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86318014275245 0 \N \N f 0 \N 0 129710985 0 f f \N \N \N \N 316144 \N 0 0 \N \N f \N 431685 2024-02-19 19:36:23.61 2024-02-19 19:46:24.904 \N Seek military only heart. Side https://example.com/ 14169 316507 316507.431685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.59068080637738 0 \N \N f 0 \N 0 45180575 0 f f \N \N \N \N 316507 \N 0 0 \N \N f \N 431684 2024-02-19 19:36:20.723 2024-02-19 19:46:21.901 \N Every important man a free kno https://example.com/ 21014 316438 316438.431684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.305857385729 0 \N \N f 0 \N 0 37186680 0 f f \N \N \N \N 316438 \N 0 0 \N \N f \N 431687 2024-02-19 19:36:28.402 2024-02-19 19:46:29.933 \N Though deal provide ball state https://example.com/ 11328 316628 316628.431687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.97878727407 0 \N \N f 0 \N 0 40484476 0 f f \N \N \N \N 316628 \N 0 0 \N \N f \N 431690 2024-02-19 19:39:07.603 2024-02-19 19:49:08.882 \N Size matter rather result othe https://example.com/ 19030 302767 302767.431690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32090496446762 0 \N \N f 0 \N 0 121161719 0 f f \N \N \N \N 302767 \N 0 0 \N \N f \N 431735 2024-02-19 19:47:43.768 2024-02-19 19:57:44.842 \N Ten instead develop somebody i https://example.com/ 6030 304805 304805.431735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6940013377809 0 \N \N f 0 \N 0 45121604 0 f f \N \N \N \N 304805 \N 0 0 \N \N f \N 431746 2024-02-19 19:48:12.663 2024-02-19 19:58:14.018 \N Sing eight human sit. Tv alrea https://example.com/ 9427 309609 309609.431746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49157452599822 0 \N \N f 0 \N 0 100750408 0 f f \N \N \N \N 309609 \N 0 0 \N \N f \N 431733 2024-02-19 19:47:38.346 2024-02-19 19:57:39.818 \N Second point director operatio https://example.com/ 19346 304645 304645.431733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.672788766287411 0 \N \N f 0 \N 0 69783648 0 f f \N \N \N \N 304645 \N 0 0 \N \N f \N 431765 2024-02-19 19:53:13.772 2024-02-19 20:03:14.845 Act lay son hear. Apply professional really remember remain throw. Fi Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality. https://example.com/ 21214 \N 431765 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.554971064711047 0 \N \N f 0 \N 0 111702057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431787 2024-02-19 19:54:13.915 2024-02-19 20:04:15.804 \N Hold show assume travel econom https://example.com/ 20546 296265 296265.431787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8832677809801 0 \N \N f 0 \N 0 169968627 0 f f \N \N \N \N 296265 \N 0 0 \N \N f \N 431692 2024-02-19 19:39:17.458 2024-02-19 19:49:18.92 \N Simply even growth change gove https://example.com/ 16847 302377 302377.431692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.67988507674975 0 \N \N f 0 \N 0 240392306 0 f f \N \N \N \N 302377 \N 0 0 \N \N f \N 431695 2024-02-19 19:39:30.679 2024-02-19 19:49:31.678 \N Station nothing decide Mr sing https://example.com/ 17091 301810 301810.431695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9960862156598 0 \N \N f 0 \N 0 249250224 0 f f \N \N \N \N 301810 \N 0 0 \N \N f \N 431698 2024-02-19 19:39:33.688 2024-02-19 19:49:34.981 \N Any note pick American lead me https://example.com/ 5387 301719 301719.431698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2861408759834 0 \N \N f 0 \N 0 105405825 0 f f \N \N \N \N 301719 \N 0 0 \N \N f \N 431699 2024-02-19 19:39:36.13 2024-02-19 19:49:37.734 \N Much wait girl sport picture c https://example.com/ 19967 301185 301185.431699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5890876995309 0 \N \N f 0 \N 0 144641297 0 f f \N \N \N \N 301185 \N 0 0 \N \N f \N 431701 2024-02-19 19:39:42.294 2024-02-19 19:49:43.795 \N Most which usually increase ev https://example.com/ 647 300989 300989.431701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16763272746017 0 \N \N f 0 \N 0 235439466 0 f f \N \N \N \N 300989 \N 0 0 \N \N f \N 431702 2024-02-19 19:39:45.846 2024-02-19 19:49:47.025 \N Ever small reduce evidence qui https://example.com/ 21148 300863 300863.431702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3674072546223 0 \N \N f 0 \N 0 130921587 0 f f \N \N \N \N 300863 \N 0 0 \N \N f \N 433685 2024-02-21 12:20:55.017 2024-02-21 12:30:57.507 \N En https://example.com/ 16571 433679 433679.433685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26748047658119 0 \N \N f 0 \N 0 205567569 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 431704 2024-02-19 19:39:51.677 2024-02-19 19:49:53.048 \N Tree political season that fee https://example.com/ 15063 300375 300375.431704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6098489547657 0 \N \N f 0 \N 0 85826421 0 f f \N \N \N \N 300375 \N 0 0 \N \N f \N 431708 2024-02-19 19:40:06.019 2024-02-19 19:50:07.04 \N Strategy way low soldier. Than https://example.com/ 9611 299887 299887.431708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4717921964732 0 \N \N f 0 \N 0 190522771 0 f f \N \N \N \N 299887 \N 0 0 \N \N f \N 431706 2024-02-19 19:39:58.859 2024-02-19 19:49:59.991 \N Probably agent catch computer https://example.com/ 14795 300142 300142.431706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0167880047658 0 \N \N f 0 \N 0 109398256 0 f f \N \N \N \N 300142 \N 0 0 \N \N f \N 431707 2024-02-19 19:40:02.109 2024-02-19 19:50:04.02 \N Success against price. Resourc https://example.com/ 4323 300129 300129.431707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2604992161977 0 \N \N f 0 \N 0 107316185 0 f f \N \N \N \N 300129 \N 0 0 \N \N f \N 431710 2024-02-19 19:40:11.9 2024-02-19 19:50:13.089 \N Local college movie start lose https://example.com/ 16348 298681 298681.431710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2528143177854 0 \N \N f 0 \N 0 73338329 0 f f \N \N \N \N 298681 \N 0 0 \N \N f \N 442623 2024-02-28 20:00:05.015 2024-02-28 20:00:11.114 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. F https://example.com/ 17714 442622 442622.442623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87382450990828 0 \N \N f 0 \N 0 38807824 0 f f \N \N \N \N 442622 \N 0 0 \N \N f \N 438275 2024-02-25 14:06:10.197 2024-02-25 14:16:11.675 \N Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method severa https://example.com/ 16536 438120 437996.438017.438115.438120.438275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.98779872984534 0 \N \N f 0 \N 0 111540248 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 444781 2024-03-01 11:03:04.542 2024-03-01 11:13:05.928 \N Between remember watch image save win determine. Each r https://example.com/ 17171 444762 444718.444762.444781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.15167927540201 0 \N \N f 0 \N 0 45515574 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431427 2024-02-19 19:00:20.729 2024-02-19 19:10:21.598 \N Special identify senior differ https://example.com/ 6260 362082 362082.431427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91822577372859 0 \N \N f 0 \N 0 30662277 0 f f \N \N \N \N 362082 \N 0 0 \N \N f \N 431717 2024-02-19 19:41:23.783 2024-02-19 19:51:24.958 \N Rule focu https://example.com/ 12609 431635 318487.431635.431717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0973975910755 0 \N \N f 0 \N 0 180960336 0 f f \N \N \N \N 318487 \N 0 0 \N \N f \N 438088 2024-02-25 10:52:48.658 2024-02-25 11:02:50.104 Purpose add when information sing like recognize. Career bad resource. Point cri Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Rela https://example.com/ 959 \N 438088 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 15.3198569467465 0 \N \N f 0 \N 4 203307103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431757 2024-02-19 19:52:51.466 2024-02-19 20:02:53.106 \N Speech also his. White PM rath https://example.com/ 18909 294586 294586.431757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2766819973179 0 \N \N f 0 \N 0 49463359 0 f f \N \N \N \N 294586 \N 0 0 \N \N f \N 431760 2024-02-19 19:53:00.551 2024-02-19 20:03:09.192 \N If put nothing put pick future https://example.com/ 17727 293944 293944.431760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3968902027798 0 \N \N f 0 \N 0 239100359 0 f f \N \N \N \N 293944 \N 0 0 \N \N f \N 431766 2024-02-19 19:53:15.564 2024-02-19 20:03:16.854 \N We quite story politics approa https://example.com/ 9349 292860 292860.431766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5252471655106 0 \N \N f 0 \N 0 100225607 0 f f \N \N \N \N 292860 \N 0 0 \N \N f \N 431718 2024-02-19 19:43:08.46 2024-02-19 19:53:09.803 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand spac https://example.com/ 1471 431642 431598.431642.431718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5858073130337 0 \N \N f 0 \N 0 241847514 0 f f \N \N \N \N 431598 \N 0 0 \N \N f \N 438276 2024-02-25 14:06:35.118 2024-02-25 14:16:37.038 \N Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thou https://example.com/ 12946 438270 438209.438211.438261.438264.438270.438276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.53743191526942 0 \N \N f 0 \N 2 95396659 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438740 2024-02-25 23:36:28.85 2024-02-25 23:46:31.895 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation https://example.com/ 1738 438651 438651.438740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0689588633842 0 \N \N f 0 \N 0 153815528 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 443723 2024-02-29 15:51:04.935 2024-02-29 16:01:05.924 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situat https://example.com/ 11515 443583 443583.443723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8375390590479 0 \N \N f 0 \N 0 105221968 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443583 2024-02-29 14:41:40.796 2024-02-29 14:51:41.999 Agency rate seven fear open. Design Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out https://example.com/ 17682 \N 443583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1666665726619 0 \N \N f 0 \N 21 223704232 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444749 2024-03-01 10:44:24.873 2024-03-01 10:54:26.233 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everyt https://example.com/ 7673 444741 443272.443571.444741.444749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.907005718772922 0 \N \N f 0 \N 1 175239576 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 431777 2024-02-19 19:53:46.335 2024-02-19 20:03:48.317 \N Summer past television what in https://example.com/ 2502 290623 290623.431777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8217384123808 0 \N \N f 0 \N 0 167414301 0 f f \N \N \N \N 290623 \N 0 0 \N \N f \N 431781 2024-02-19 19:53:58.388 2024-02-19 20:04:00.093 \N Hair gas woman next avoid. Blo https://example.com/ 4391 294794 294794.431781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80545828275744 0 \N \N f 0 \N 0 15672677 0 f f \N \N \N \N 294794 \N 0 0 \N \N f \N 431829 2024-02-19 20:23:19.534 2024-02-19 20:33:21.257 \N Few system pick down where pull us. Out https://example.com/ 1505 431828 431816.431826.431828.431829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0600817365037 0 \N \N f 0 \N 3 34232987 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 441890 2024-02-28 13:12:24.374 2024-02-28 13:22:25.682 Again trade author cultural task. Deep day cost. Soldier prepare say Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Inte https://example.com/ 17638 \N 441890 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 28.9468205424009 0 \N \N f 0 \N 0 244010282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431784 2024-02-19 19:54:06.818 2024-02-19 20:04:08.136 \N Opportunity hospital address a https://example.com/ 12562 295499 295499.431784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4725939218248 0 \N \N f 0 \N 0 13079511 0 f f \N \N \N \N 295499 \N 0 0 \N \N f \N 431785 2024-02-19 19:54:09.36 2024-02-19 20:04:10.754 \N Set how recognize operation Am https://example.com/ 9552 295637 295637.431785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5426403122732 0 \N \N f 0 \N 0 62164890 0 f f \N \N \N \N 295637 \N 0 0 \N \N f \N 431791 2024-02-19 19:54:24.875 2024-02-19 20:04:25.928 \N Play director employee. Tend c https://example.com/ 6602 296742 296742.431791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5940611482245 0 \N \N f 0 \N 0 85860174 0 f f \N \N \N \N 296742 \N 0 0 \N \N f \N 431793 2024-02-19 19:54:35.696 2024-02-19 20:04:37.119 \N Fact theory worry. Strong itse https://example.com/ 4633 296913 296913.431793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0527734040876 0 \N \N f 0 \N 0 212018956 0 f f \N \N \N \N 296913 \N 0 0 \N \N f \N 431300 2024-02-19 18:30:53.294 2024-02-19 18:40:54.747 Not find attack light everything different. Certainly travel performance r According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always. https://example.com/ 20246 \N 431300 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8564029975858 0 \N \N f 0 \N 0 186305305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431822 2024-02-19 20:15:30.205 2024-02-19 20:25:32.567 \N Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble it https://example.com/ 18225 426540 426427.426540.431822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8309495026245 0 \N \N f 0 \N 0 104627662 0 f f \N \N \N \N 426427 \N 0 0 \N \N f \N 431798 2024-02-19 19:57:02.512 2024-02-19 20:07:04.019 Whether special arm economy house. Us six floor break huge summe True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the. https://example.com/ 795 \N 431798 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 14.2113424515775 0 \N \N f 0 \N 1 234253724 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443861 2024-02-29 17:01:14.591 2024-02-29 17:11:16.333 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and b https://example.com/ 11165 443799 443799.443861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8333616883903 0 \N \N f 0 \N 3 248923231 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 431688 2024-02-19 19:36:30.867 2024-02-19 19:46:31.939 \N Finally and may second https://example.com/ 17331 431658 431122.431138.431169.431658.431688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08441095916277 0 \N \N f 0 \N 0 15258190 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 444788 2024-03-01 11:05:23.913 2024-03-01 11:15:25.495 \N Technology word wish say organization friend https://example.com/ 20781 444787 444770.444775.444780.444787.444788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3371001803121 0 \N \N f 0 \N 1 24771605 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431658 2024-02-19 19:35:02.103 2024-02-19 19:45:04.384 \N Seven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement wa https://example.com/ 14370 431169 431122.431138.431169.431658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5776231327137 0 \N \N f 0 \N 1 205097422 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 431138 2024-02-19 17:50:43.012 2024-02-19 18:00:44.792 \N Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop acce https://example.com/ 21472 431122 431122.431138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5621358424571 0 \N \N f 0 \N 5 190477816 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 431169 2024-02-19 18:07:14.663 2024-02-19 18:17:15.654 \N Cause daughter drop gas. Ce https://example.com/ 20594 431138 431122.431138.431169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9937260318883 0 \N \N f 0 \N 2 115700846 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 438258 2024-02-25 13:54:22.607 2024-02-25 14:04:23.962 \N Want fire once his six environment. Challenge body color about. Under front https://example.com/ 5565 438242 438093.438242.438258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7557506768929 0 \N \N f 0 \N 0 50514081 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 443129 2024-02-29 06:46:06.625 2024-02-29 06:56:08.447 Just study one foot ball. Tv probably among impact. Lette Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee https://example.com/ 5865 \N 443129 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.15262295779546 0 \N \N f 0 \N 10 169506849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444660 2024-03-01 08:00:04.982 2024-03-01 08:10:06.648 Most which usually increase \N https://example.com/ 9345 \N 444660 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.9332859048006 0 \N \N f 0 \N 1 96977694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431820 2024-02-19 20:12:32.484 2024-02-19 20:22:34.197 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Powe https://example.com/ 2195 431170 430258.430870.431072.431170.431820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.04124438155549 0 \N \N f 0 \N 0 133647346 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 444583 2024-03-01 05:31:02.383 2024-03-01 05:41:03.793 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn a https://example.com/ 13133 444001 443129.443509.443820.443990.444001.444583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.99847114443948 0 \N \N f 0 \N 1 241155297 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 444766 2024-03-01 10:56:30.227 2024-03-01 11:06:31.637 Many soldier role. Far buy able idea presid Focus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son. https://example.com/ 910 \N 444766 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.81363145579213 0 \N \N f 0 \N 0 88729059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440971 2024-02-27 19:32:12.044 2024-02-27 19:42:13.067 \N Can shoulder modern daughter. Where difficult oil along. St https://example.com/ 18225 440764 440764.440971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.554546274457302 0 \N \N f 0 \N 1 149759746 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 438293 2024-02-25 14:17:42.026 2024-02-25 14:27:43.379 \N Eight represent last serious these she future. Optio https://example.com/ 18659 438232 438232.438293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.65443226711071 0 \N \N f 0 \N 0 244841257 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 431720 2024-02-19 19:43:11.704 2024-02-19 19:53:12.815 Least nor building physical wide special make. Dog while learn soon break real c Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection. https://example.com/ 18904 \N 431720 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.55184392504334 0 \N \N f 0 \N 0 184565564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441277 2024-02-28 00:17:06.528 2024-02-28 00:27:07.565 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Ma https://example.com/ 675 441204 440898.440925.441035.441204.441277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6191003774799 0 \N \N f 0 \N 1 67789326 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 444805 2024-03-01 11:11:06.271 2024-03-01 11:21:07.47 \N Bla https://example.com/ 15409 444731 444168.444731.444805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21053221234344 0 \N \N f 0 \N 0 147278344 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431730 2024-02-19 19:47:29.778 2024-02-19 19:57:31.328 \N Very maybe current. So source https://example.com/ 17124 303030 303030.431730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3537792739731 0 \N \N f 0 \N 0 142148458 0 f f \N \N \N \N 303030 \N 0 0 \N \N f \N 444731 2024-03-01 10:29:19.862 2024-03-01 10:39:20.96 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the ava https://example.com/ 15697 444168 444168.444731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.21283604982612 0 \N \N f 0 \N 1 111994480 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431734 2024-02-19 19:47:41.69 2024-02-19 19:57:42.832 \N Experience ok car standard ite https://example.com/ 19038 304784 304784.431734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83674424786054 0 \N \N f 0 \N 0 149215593 0 f f \N \N \N \N 304784 \N 0 0 \N \N f \N 444700 2024-03-01 09:58:00.864 2024-03-01 10:08:02.603 General against page door. Attention Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family s https://example.com/ 9346 \N 444700 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 11.0728604718799 0 \N \N f 0 \N 10 206666755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444815 2024-03-01 11:18:53.333 2024-03-01 11:28:55.147 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Bro https://example.com/ 21083 444700 444700.444815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.559175062239 0 \N \N f 0 \N 1 176161704 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 444871 2024-03-01 11:56:35.686 2024-03-01 12:06:37.69 \N Responsibili https://example.com/ 797 444843 444746.444843.444871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2625004697167 0 \N \N f 0 \N 0 142287175 0 f f \N \N \N \N 444746 \N 0 0 \N \N f \N 444843 2024-03-01 11:34:40.582 2024-03-01 11:44:42.019 \N Night on mention rather nation soldier ever https://example.com/ 18678 444746 444746.444843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85118708703993 0 \N \N f 0 \N 1 109191692 0 f f \N \N \N \N 444746 \N 0 0 \N \N f \N 440679 2024-02-27 15:30:32.815 2024-02-27 15:40:34.435 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some https://example.com/ 6360 440561 440561.440679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.909658802841 0 \N \N f 0 \N 1 157418034 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 442439 2024-02-28 17:15:28.553 2024-02-28 17:25:30.241 \N Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nBeyond so https://example.com/ 11527 442400 442179.442400.442439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85766757368499 0 \N \N f 0 \N 0 101613286 0 f f \N \N \N \N 442179 \N 0 0 \N \N f \N 431737 2024-02-19 19:47:48.216 2024-02-19 19:57:50.595 \N Tend yes call look. Real feel https://example.com/ 10493 306400 306400.431737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0559996592649 0 \N \N f 0 \N 0 131238493 0 f f \N \N \N \N 306400 \N 0 0 \N \N f \N 438282 2024-02-25 14:09:22.423 2024-02-25 14:19:23.734 American animal bad responsibility current Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow https://example.com/ 15484 \N 438282 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.3983141782305 0 \N \N f 0 \N 0 57184320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431801 2024-02-19 19:59:04.825 2024-02-19 20:09:05.944 \N Purpose add when in https://example.com/ 15833 431081 430626.431081.431801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7618649211806 0 \N \N f 0 \N 0 135851837 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 434919 2024-02-22 12:52:12.396 2024-02-22 13:02:14.346 \N Board collection beat and worry. Traditional a https://example.com/ 13517 434902 434795.434902.434919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5690235145445 0 \N \N f 0 \N 0 197948898 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 431732 2024-02-19 19:47:35.85 2024-02-19 19:57:37.371 \N True quickly government finish https://example.com/ 12819 303945 303945.431732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.610291113187209 0 \N \N f 0 \N 0 3453738 0 f f \N \N \N \N 303945 \N 0 0 \N \N f \N 444690 2024-03-01 09:41:31.146 2024-03-01 09:51:32.838 Consumer point treat task. Shake bill player campaign really return Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize. https://example.com/ 7587 \N 444690 \N \N \N \N \N \N \N \N history \N ACTIVE \N 8.47246583282136 0 \N \N f 0 \N 0 38799067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444783 2024-03-01 11:03:50.441 2024-03-01 11:13:51.847 \N Know son future suggest paper personal these million. Hundred house share https://example.com/ 9329 444740 444700.444706.444723.444740.444783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5336299904408 0 \N \N f 0 \N 0 1609729 0 f f \N \N \N \N 444700 \N 0 0 \N \N f \N 431150 2024-02-19 17:58:23.546 2024-02-19 18:29:22.394 Hear direction Begin lawyer shoulder couple whom drive improve. Analysis mean https://example.com/ 1007 \N 431150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6522007367807 0 \N \N f 0 \N 7 179340534 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444786 2024-03-01 11:04:57.897 2024-03-01 11:14:59.483 \N Full both sound century close car https://example.com/ 11820 443861 443799.443861.444786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02499112281304 0 \N \N f 0 \N 0 229239901 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 438291 2024-02-25 14:17:01.971 2024-02-25 14:27:03.471 Least nor building physical wide special make. Dog while learn soon brea Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year. https://example.com/ 3396 \N 438291 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.81138518212241 0 \N \N f 0 \N 0 207450406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438294 2024-02-25 14:18:11.959 2024-02-25 14:28:13.535 \N Remember s https://example.com/ 8360 438283 438209.438283.438294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63995444925605 0 \N \N f 0 \N 0 227065258 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 444792 2024-03-01 11:06:17.946 2024-03-01 11:16:19.673 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red https://example.com/ 17693 444583 443129.443509.443820.443990.444001.444583.444792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27111121915664 0 \N \N f 0 \N 0 23794465 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 438292 2024-02-25 14:17:24.945 2024-02-25 14:27:26.306 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war oppor https://example.com/ 17162 438285 438209.438211.438261.438264.438270.438276.438285.438292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7553642179808 0 \N \N f 0 \N 0 131051691 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438289 2024-02-25 14:16:04.075 2024-02-25 14:26:05.612 \N Fish environmental factor popular series local. Ready ea https://example.com/ 21501 438045 437044.437809.438045.438289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6137420924084 0 \N \N f 0 \N 1 7475726 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437809 2024-02-25 00:48:32.52 2024-02-25 00:58:33.871 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider https://example.com/ 19174 437044 437044.437809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0807150419842 0 \N \N f 0 \N 4 19065311 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 438288 2024-02-25 14:15:31.605 2024-02-25 14:25:33.135 \N Take discuss na https://example.com/ 17570 438255 438231.438245.438255.438288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3834258442256 0 \N \N f 0 \N 0 20364969 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 444793 2024-03-01 11:06:40.009 2024-03-01 11:16:41.252 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. C https://example.com/ 1745 444749 443272.443571.444741.444749.444793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2589836884505 0 \N \N f 0 \N 0 244575482 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 438255 2024-02-25 13:50:50.595 2024-02-25 14:00:52.171 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus al https://example.com/ 20272 438245 438231.438245.438255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6557157485732 0 \N \N f 0 \N 1 159468883 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 431837 2024-02-19 20:31:03.726 2024-02-19 20:41:05.806 \N Drive south https://example.com/ 11789 430771 430771.431837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2560797944803 0 \N \N f 0 \N 0 232547423 0 f f \N \N \N \N 430771 \N 0 0 \N \N f \N 437997 2024-02-25 07:20:53.706 2024-02-25 07:30:55.161 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audienc https://example.com/ 21338 437996 437996.437997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61949191089667 0 \N \N f 0 \N 3 46818850 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 431834 2024-02-19 20:26:37.155 2024-02-19 20:36:38.208 \N Quite teacher accept https://example.com/ 21352 430984 430984.431834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1118721299107 0 \N \N f 0 \N 3 180740181 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 431805 2024-02-19 20:00:06.007 2024-02-19 20:00:11.106 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\n https://example.com/ 5160 431804 431804.431805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06278365847989 0 \N \N f 0 \N 0 201067461 0 f f \N \N \N \N 431804 \N 0 0 \N \N f \N 435031 2024-02-22 14:24:43.956 2024-02-22 14:34:46.265 \N Hundred unit music many. But mother however drug call a. St https://example.com/ 14731 434999 434646.434999.435031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9857800250853 0 \N \N f 0 \N 0 23530217 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 444522 2024-03-01 03:14:24.059 2024-03-01 03:24:25.477 Be right whatever former various billion. Tax politics send travel te South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Ba https://example.com/ 18262 \N 444522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.15178918828415 0 \N \N f 0 \N 6 193535163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431778 2024-02-19 19:53:49.906 2024-02-19 20:03:52.052 \N Than level lawyer mouth they p https://example.com/ 14857 290499 290499.431778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2458367659858 0 \N \N f 0 \N 0 204979988 0 f f \N \N \N \N 290499 \N 0 0 \N \N f \N 431779 2024-02-19 19:53:52.912 2024-02-19 20:03:54.06 \N These world usually ground gro https://example.com/ 4167 290247 290247.431779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40665395130616 0 \N \N f 0 \N 0 30443789 0 f f \N \N \N \N 290247 \N 0 0 \N \N f \N 431840 2024-02-19 20:33:27.437 2024-02-19 20:43:28.767 \N E https://example.com/ 6471 431839 431816.431826.431828.431829.431836.431839.431840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6790197466379 0 \N \N f 0 \N 0 210164628 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 431780 2024-02-19 19:53:55.461 2024-02-19 20:03:56.573 \N Game management go ready star https://example.com/ 1051 294615 294615.431780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8108260049809 0 \N \N f 0 \N 0 16647694 0 f f \N \N \N \N 294615 \N 0 0 \N \N f \N 431782 2024-02-19 19:54:01.289 2024-02-19 20:04:02.595 \N East fast despite responsibili https://example.com/ 21287 294796 294796.431782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0685091558147 0 \N \N f 0 \N 0 2519319 0 f f \N \N \N \N 294796 \N 0 0 \N \N f \N 431786 2024-02-19 19:54:11.623 2024-02-19 20:04:12.772 \N Republican star interest its. https://example.com/ 1505 295965 295965.431786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.96022891451 0 \N \N f 0 \N 0 97455096 0 f f \N \N \N \N 295965 \N 0 0 \N \N f \N 431788 2024-02-19 19:54:16.972 2024-02-19 20:04:17.839 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen sout https://example.com/ 13361 431754 430155.431754.431788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1883808963628 0 \N \N f 0 \N 0 104886415 0 f f \N \N \N \N 430155 \N 0 0 \N \N f \N 431517 2024-02-19 19:07:28.029 2024-02-19 19:17:29.505 \N Edge card save. Whether manage https://example.com/ 16879 345215 345215.431517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.75731437484834 0 \N \N f 0 \N 0 106365487 0 f f \N \N \N \N 345215 \N 0 0 \N \N f \N 431789 2024-02-19 19:54:17.806 2024-02-19 20:04:18.858 \N Together tree bar tonight. Saf https://example.com/ 699 296451 296451.431789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3924972375553 0 \N \N f 0 \N 0 230377265 0 f f \N \N \N \N 296451 \N 0 0 \N \N f \N 431790 2024-02-19 19:54:20.559 2024-02-19 20:04:21.879 \N Detail economy still boy fine https://example.com/ 7916 296594 296594.431790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64680261370835 0 \N \N f 0 \N 0 107671499 0 f f \N \N \N \N 296594 \N 0 0 \N \N f \N 444745 2024-03-01 10:42:35.502 2024-03-01 10:52:37.289 \N Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clea https://example.com/ 17682 444687 444687.444745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0625928724741 0 \N \N f 0 \N 1 169361945 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 431812 2024-02-19 20:05:19.6 2024-02-19 20:15:21.231 \N Region side point win throug https://example.com/ 10591 321222 297791.321222.431812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3771845045787 0 \N \N f 0 \N 0 124440145 0 f f \N \N \N \N 297791 \N 0 0 \N \N f \N 444795 2024-03-01 11:07:29.698 2024-03-01 11:17:30.807 \N Special tho https://example.com/ 925 444789 444770.444789.444795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.32892036439824 0 \N \N f 0 \N 8 188719423 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431794 2024-02-19 19:54:38.975 2024-02-19 20:04:40.14 \N Ground baby describe might. Pr https://example.com/ 20243 297128 297128.431794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5070737839519 0 \N \N f 0 \N 0 68146313 0 f f \N \N \N \N 297128 \N 0 0 \N \N f \N 438314 2024-02-25 14:43:46.538 2024-02-25 14:53:48.508 Scene despite prepare need. Shoulder none until none. Look simply choose card Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read. https://example.com/ 876 \N 438314 \N \N \N \N \N \N \N \N art \N ACTIVE \N 16.0847608035213 0 \N \N f 0 \N 0 155969688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444784 2024-03-01 11:04:06.193 2024-03-01 11:14:07.4 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nThink month catch free. Tre https://example.com/ 827 444725 444725.444784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6663777747118 0 \N \N f 0 \N 1 239861032 0 f f \N \N \N \N 444725 \N 0 0 \N \N f \N 444776 2024-03-01 11:01:47.779 2024-03-01 11:11:49.508 \N Many soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character m https://example.com/ 1195 444735 444718.444735.444776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7469403701103 0 \N \N f 0 \N 0 208820224 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444735 2024-03-01 10:33:05.059 2024-03-01 10:43:07.123 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set https://example.com/ 20439 444718 444718.444735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57089977347982 0 \N \N f 0 \N 1 79421881 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 437114 2024-02-24 12:45:33.741 2024-02-24 12:55:35.652 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal la https://example.com/ 17798 437062 437062.437114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.04414153681476 0 \N \N f 0 \N 1 62773249 0 f f \N \N \N \N 437062 \N 0 0 \N \N f \N 431072 2024-02-19 17:29:31.685 2024-02-19 17:39:32.481 \N Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international sugg https://example.com/ 2342 430870 430258.430870.431072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28770315386586 0 \N \N f 0 \N 2 119546638 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 431170 2024-02-19 18:07:45.142 2024-02-19 18:17:46.862 \N International yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call blac https://example.com/ 20624 431072 430258.430870.431072.431170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.867627750278 0 \N \N f 0 \N 1 83190974 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 438321 2024-02-25 14:49:47.535 2024-02-25 14:59:49.248 \N Structure require feel statement pl https://example.com/ 20745 438308 438231.438245.438287.438296.438308.438321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21162929795172 0 \N \N f 0 \N 0 248955892 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 444833 2024-03-01 11:27:58.963 2024-03-01 11:38:00.742 \N Join push remain behavior. Various song no successful https://example.com/ 18241 444673 443272.443553.444673.444833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3735438698534 0 \N \N f 0 \N 0 76148555 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 436493 2024-02-23 17:45:14.692 2024-02-23 17:55:15.687 Could computer meet. Board response member bad oi Concern position true. Third financial may pro https://example.com/ 1038 \N 436493 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.6903430873928 0 \N \N f 0 \N 9 94792144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435567 2024-02-22 21:51:28.593 2024-02-22 22:01:30.268 \N Human since term se https://example.com/ 690 435566 435046.435122.435131.435566.435567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0589815874432 0 \N \N f 0 \N 0 93777466 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436593 2024-02-23 19:42:23.854 2024-02-23 19:52:25.442 Cultural everyone partner Month explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nDescribe modern fund cultural realize bag https://example.com/ 2326 \N 436593 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 12.7651294864902 0 \N \N f 0 \N 5 165951589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444836 2024-03-01 11:28:48.979 2024-03-01 11:38:50.467 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill inclu https://example.com/ 21275 444597 444597.444836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.161106839421485 0 \N \N f 0 \N 0 136535853 0 f f \N \N \N \N 444597 \N 0 0 \N \N f \N 444828 2024-03-01 11:26:32.794 2024-03-01 11:36:33.734 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat https://example.com/ 7986 444784 444725.444784.444828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28870636537116 0 \N \N f 0 \N 0 208833081 0 f f \N \N \N \N 444725 \N 0 0 \N \N f \N 444673 2024-03-01 08:32:13.248 2024-03-01 08:42:15.032 \N Also weight particular less set southern. Score article believe in executive lot musi https://example.com/ 6136 443553 443272.443553.444673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7465251283672 0 \N \N f 0 \N 1 53381969 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 430927 2024-02-19 16:25:52.177 2024-02-19 16:35:52.985 \N Surface big bag contain ever. Exactly want clo https://example.com/ 20756 430626 430626.430927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.39965692009871 0 \N \N f 0 \N 0 67108649 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 444837 2024-03-01 11:29:07.827 2024-03-01 11:39:09.051 \N Child air person ago modern charge little piece. Get trade manage policy https://example.com/ 19569 444824 444824.444837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4024145444634 0 \N \N f 0 \N 0 178733888 0 f f \N \N \N \N 444824 \N 0 0 \N \N f \N 431821 2024-02-19 20:14:17.069 2024-02-21 14:14:41.374 \N Source scientist ha https://example.com/ 19286 430560 430549.430560.431821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3865313120811 0 \N \N f 0 \N 0 116974782 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 438322 2024-02-25 14:52:48.192 2024-02-25 15:02:49.114 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everythi https://example.com/ 664 438320 436752.437184.437271.437292.437293.438312.438318.438320.438322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.45815205261717 0 \N \N f 0 \N 3 84319537 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438328 2024-02-25 14:55:38.198 2024-02-25 15:05:39.496 Study question sing. Pick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce https://example.com/ 20837 \N 438328 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.4092184713167 0 \N \N f 0 \N 0 219263660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435853 2024-02-23 05:24:48.124 2024-02-23 05:34:49.642 \N Least n https://example.com/ 20198 433640 433377.433640.435853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1956784122696 0 \N \N f 0 \N 0 158398678 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 441669 2024-02-28 10:44:32.734 2024-02-28 10:54:33.905 Quickly fill science from politics foot. Person available camera eas Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy. https://example.com/ 7418 \N 441669 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.276607435713 0 \N \N f 0 \N 1 60262513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438311 2024-02-25 14:40:47.255 2024-02-25 14:50:48.653 \N Behavior safe concern street crime. Newspaper president https://example.com/ 10016 438306 438306.438311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.73365894597524 0 \N \N f 0 \N 0 71777087 0 f f \N \N \N \N 438306 \N 0 0 \N \N f \N 438313 2024-02-25 14:41:47.391 2024-02-25 14:51:48.972 \N Miss keep probably political forget sit. Simply street put once land history https://example.com/ 19537 429291 429291.438313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2263136018373 0 \N \N f 0 \N 0 136990886 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 438226 2024-02-25 13:20:56.025 2024-02-25 13:30:57.649 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough fini https://example.com/ 21178 438221 438209.438221.438226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4705664627311 0 \N \N f 0 \N 0 102722477 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 444850 2024-03-01 11:39:42.755 2024-03-01 11:39:48.575 \N Music energy specific plan financial federal. Prove free sourc https://example.com/ 16808 5415 5415.444850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12424208957525 0 \N \N f 0 \N 0 117393089 0 f f \N \N \N \N 5415 \N 0 0 \N \N f \N 438320 2024-02-25 14:48:43.539 2024-02-25 14:58:44.85 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check auth https://example.com/ 1474 438318 436752.437184.437271.437292.437293.438312.438318.438320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1905649981847 0 \N \N f 0 \N 4 59755101 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 431819 2024-02-19 20:10:27.496 2024-02-19 20:20:29.096 Anyone himself set window report. Short president give part me. One new spe Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go. https://example.com/ 999 \N 431819 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 6.34351580284317 0 \N \N f 0 \N 0 122180710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438327 2024-02-25 14:54:10.8 2024-02-25 15:04:12.765 \N Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee https://example.com/ 21521 438324 438231.438245.438287.438296.438308.438324.438327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33695031800013 0 \N \N f 0 \N 0 126465072 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 444825 2024-03-01 11:24:05.71 2024-03-01 11:34:07.222 \N Concern position true. Third financial may produce. Machine his identify l https://example.com/ 3440 444745 444687.444745.444825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83678511582663 0 \N \N f 0 \N 0 14534733 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 431824 2024-02-19 20:18:23.649 2024-02-19 20:28:24.785 \N Near see scho https://example.com/ 18280 431810 430892.431723.431753.431810.431824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.950903361147688 0 \N \N f 0 \N 0 130760871 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 444851 2024-03-01 11:42:12.589 2024-03-01 11:52:13.889 \N Could com https://example.com/ 15806 444689 444689.444851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74440409875163 0 \N \N f 0 \N 0 178694475 0 f f \N \N \N \N 444689 \N 0 0 \N \N f \N 435662 2024-02-22 23:31:07.931 2024-02-22 23:41:08.709 \N Message throw as table https://example.com/ 1209 435457 435457.435662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2345273563567 0 \N \N f 0 \N 0 137015538 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 438336 2024-02-25 15:00:05.381 2024-02-25 15:00:11.101 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key https://example.com/ 9346 438334 438334.438336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2071770627705 0 \N \N f 0 \N 0 246375816 0 f f \N \N \N \N 438334 \N 0 0 \N \N f \N 444827 2024-03-01 11:26:24.216 2024-03-01 11:36:26.562 \N Purpose age cover machine. Must individual hot begin figure threat discuss. https://example.com/ 1609 444802 444802.444827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8352071008473 0 \N \N f 0 \N 0 197174604 0 f f \N \N \N \N 444802 \N 0 0 \N \N f \N 444830 2024-03-01 11:26:58.554 2024-03-01 11:36:59.502 \N Sound clearly happen age onto imagine. Bed pattern happy ot https://example.com/ 979 444687 444687.444830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0786068804006 0 \N \N f 0 \N 1 237641147 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 438004 2024-02-25 08:02:09.253 2024-02-25 08:12:10.302 With officer scientist letter one. Partner coach Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Chan https://example.com/ 1769 \N 438004 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 3.73704011087078 0 \N \N f 0 \N 0 79847787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431947 2024-02-19 22:15:02.091 2024-02-19 22:25:03.13 \N Decide up red either war deep https://example.com/ 20102 431877 431877.431947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0739590276962 0 \N \N f 0 \N 0 176292355 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 434849 2024-02-22 11:41:37.508 2024-02-22 11:51:39.098 \N Big field certainly community. North marriage animal whose h https://example.com/ 692 434810 434810.434849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9206636582133 0 \N \N f 0 \N 0 197682589 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N 435310 2024-02-22 17:46:22.04 2024-02-22 17:56:23.571 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nSome n https://example.com/ 20586 435046 435046.435310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49954756954414 0 \N \N f 0 \N 0 241886667 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 444403 2024-02-29 23:14:49.364 2024-02-29 23:24:51.866 \N Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. https://example.com/ 10771 444065 444065.444403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76970784769181 0 \N \N f 0 \N 5 239247801 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N 444514 2024-03-01 02:53:35.271 2024-03-01 03:03:36.227 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly seaso https://example.com/ 882 444403 444065.444403.444514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09383593147661 0 \N \N f 0 \N 3 142874673 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N 444663 2024-03-01 08:06:30.108 2024-03-01 08:16:31.409 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream https://example.com/ 4084 444514 444065.444403.444514.444663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7254561415224 0 \N \N f 0 \N 2 195698365 0 f f \N \N \N \N 444065 \N 0 0 \N \N f \N 443390 2024-02-29 12:29:23.077 2024-02-29 12:39:24.709 \N Beyond new strong important. Final sport thus physical situation. Forward who dream https://example.com/ 21003 443372 443372.443390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6028952260911 0 \N \N f 0 \N 10 182542275 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 444838 2024-03-01 11:29:11.108 2024-03-01 11:39:12.054 \N Power this as. Time Republican goal trade progra https://example.com/ 733 444830 444687.444830.444838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32844100731926 0 \N \N f 0 \N 0 107981130 0 f f \N \N \N \N 444687 \N 0 0 \N \N f \N 435013 2024-02-22 14:11:46.924 2024-02-22 14:21:48.286 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Y https://example.com/ 16348 434813 434813.435013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.27123042129302 0 \N \N f 0 \N 0 160590921 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 442575 2024-02-28 19:07:20.899 2024-02-28 19:17:22.183 \N Never able over relate dark up dinner. Same https://example.com/ 1836 442574 442440.442460.442574.442575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77864243833619 0 \N \N f 0 \N 0 61213956 0 f f \N \N \N \N 442440 \N 0 0 \N \N f \N 442569 2024-02-28 19:00:05.493 2024-02-28 19:00:10.715 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader hu https://example.com/ 8954 442568 442568.442569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0795417538758 0 \N \N f 0 \N 0 103056223 0 f f \N \N \N \N 442568 \N 0 0 \N \N f \N 444853 2024-03-01 11:43:12.412 2024-03-01 11:53:13.966 \N Republican part letter tonight. Stay amount example low attorney. Easy run center member intere https://example.com/ 1737 444669 443272.444360.444669.444853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8967865542762 0 \N \N f 0 \N 0 51105910 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 430887 2024-02-19 15:54:52.791 2024-02-19 16:04:54.402 \N Federal anyone interview continue eat. The little employee while https://example.com/ 11996 430882 430882.430887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9084351679924 0 \N \N f 0 \N 0 181267918 0 f f \N \N \N \N 430882 \N 0 0 \N \N f \N 438298 2024-02-25 14:22:22.808 2024-02-25 14:32:24.307 \N Between remember watch image save win determine. Each reduce usually certainly. https://example.com/ 13042 438120 437996.438017.438115.438120.438298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1472563350573 0 \N \N f 0 \N 0 138656950 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 438017 2024-02-25 08:24:03.992 2024-02-25 08:34:05.279 \N Instead believe animal then however price particularly. When whose economic others million. Ready long thank case https://example.com/ 20657 437996 437996.438017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6050473051799 0 \N \N f 0 \N 4 236264284 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 430879 2024-02-19 15:45:56.395 2024-02-19 15:55:58.143 Work suddenly pick. Interesting check state. Security low h Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank. https://example.com/ 14545 \N 430879 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8587485984276 0 \N \N f 0 \N 0 218418704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441045 2024-02-27 20:14:54.63 2024-02-27 20:24:56.05 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood thems https://example.com/ 19031 441014 440764.441014.441045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55461530713524 0 \N \N f 0 \N 0 110938420 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 431808 2024-02-19 20:02:39.878 2024-02-19 20:12:41.028 \N Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big for https://example.com/ 20327 431807 431800.431807.431808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3683237373807 0 \N \N f 0 \N 0 220040360 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 444669 2024-03-01 08:29:20.716 2024-03-01 08:39:21.881 \N Environment none many land part. Effort such position late office unit. Space l https://example.com/ 12769 444360 443272.444360.444669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7957649095511 0 \N \N f 0 \N 1 90433124 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 431525 2024-02-19 19:07:54.568 2024-02-19 19:17:55.834 Long interesting cut grow prevent. Western ability much hospital market suffer. Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive. https://example.com/ 21247 \N 431525 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7282103231588 0 \N \N f 0 \N 0 115135483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431806 2024-02-19 20:00:17.607 2024-02-19 20:10:19.552 Decide up red either war deep account more. Force step author century dro Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example. https://example.com/ 2525 \N 431806 \N \N \N \N \N \N \N \N security \N ACTIVE \N 9.68488932744222 0 \N \N f 0 \N 0 68619610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444856 2024-03-01 11:50:01.333 2024-03-01 12:00:02.607 \N Successful power down must next system pull provide. World health century more clear. Significa https://example.com/ 16410 444718 444718.444856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61421416557652 0 \N \N f 0 \N 1 20602358 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431846 2024-02-19 20:37:48.669 2024-02-19 20:47:50.899 \N Probably production better financial. Wife break check opportunity. S https://example.com/ 11789 431838 431816.431826.431838.431846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7599518611665 0 \N \N f 0 \N 0 98815669 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444863 2024-03-01 11:53:10.564 2024-03-01 12:03:11.685 \N Community us end alone. https://example.com/ 1552 444773 444773.444863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97103580005757 0 \N \N f 0 \N 0 103490622 0 f f \N \N \N \N 444773 \N 0 0 \N \N f \N 444475 2024-03-01 01:20:03.687 2024-03-01 01:30:05.508 \N News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environ https://example.com/ 16442 444168 444168.444475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35556202614913 0 \N \N f 0 \N 1 90701267 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438312 2024-02-25 14:41:41.414 2024-02-25 14:51:43.347 \N Statement these family dark. Realize American always somebody executive design. Become p https://example.com/ 8004 437293 436752.437184.437271.437292.437293.438312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.473041619801187 0 \N \N f 0 \N 6 100241382 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438335 2024-02-25 15:00:05.201 2024-02-25 15:10:07.055 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. https://example.com/ 16956 438326 436752.437184.437271.437292.437293.438312.438318.438320.438322.438326.438335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4252609745631 0 \N \N f 0 \N 1 160480671 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 443799 2024-02-29 16:33:24.064 2024-02-29 16:43:25.488 Field eat man but religious close. Sort vote hair Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or pos https://example.com/ 10554 \N 443799 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 20.5942290970325 0 \N \N f 0 \N 50 136329358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444857 2024-03-01 11:50:41.214 2024-03-01 12:00:42.275 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bil https://example.com/ 1605 444832 444718.444832.444857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.40624692878546 0 \N \N f 0 \N 2 190848464 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 431835 2024-02-19 20:28:46.732 2024-02-19 20:38:48.243 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote https://example.com/ 19785 431642 431598.431642.431835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6511372706878 0 \N \N f 0 \N 0 193097470 0 f f \N \N \N \N 431598 \N 0 0 \N \N f \N 444858 2024-03-01 11:51:15.755 2024-03-01 12:01:17.455 \N Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nWide hundred paper early. https://example.com/ 19987 444824 444824.444858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4548728621303 0 \N \N f 0 \N 1 167225435 0 f f \N \N \N \N 444824 \N 0 0 \N \N f \N 431850 2024-02-19 20:40:25.89 2024-02-19 20:50:27.664 \N Community least media interest. Senior https://example.com/ 17291 431834 430984.431834.431850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1404213759648 0 \N \N f 0 \N 2 32038476 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 444862 2024-03-01 11:52:11.382 2024-03-01 12:02:13.524 \N Control century lay already range. Scene easy nice health audience close describe. https://example.com/ 5791 444803 444718.444803.444862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0975560512816 0 \N \N f 0 \N 0 38234936 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444868 2024-03-01 11:54:53.574 2024-03-01 12:04:55.453 \N Success against price. Resource end yeah step bit https://example.com/ 16356 443617 443617.444868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60171793692725 0 \N \N f 0 \N 0 131300871 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 444698 2024-03-01 09:56:39.384 2024-03-01 10:06:41.056 Per seat key down Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden. https://example.com/ 18743 \N 444698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6671665453541 0 \N \N f 0 \N 1 81162899 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437974 2024-02-25 06:39:23.639 2024-02-25 06:49:24.937 \N Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nAffect key her. Development create https://example.com/ 18626 437801 437723.437801.437974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8145293884538 0 \N \N f 0 \N 0 145303255 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431860 2024-02-19 20:58:49.595 2024-02-19 21:08:50.959 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data so https://example.com/ 5661 431798 431798.431860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9759863000562 0 \N \N f 0 \N 0 160204165 0 f f \N \N \N \N 431798 \N 0 0 \N \N f \N 438353 2024-02-25 15:13:39.76 2024-02-25 15:23:41.698 \N Often culture through program memory mind go. Wrong statement discussion https://example.com/ 15196 438329 438325.438329.438353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54343775650066 0 \N \N f 0 \N 0 16951220 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 444885 2024-03-01 12:06:17.22 2024-03-01 12:16:18.639 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice pric https://example.com/ 16816 444882 444739.444841.444867.444882.444885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.531785019769444 0 \N \N f 0 \N 1 233220640 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 438591 2024-02-25 19:29:14.926 2024-02-25 19:39:16.188 \N Condit https://example.com/ 2176 438584 438573.438584.438591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.5505625157703 0 \N \N f 0 \N 0 28749735 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 442339 2024-02-28 16:30:19.442 2024-02-28 16:40:20.794 Stock short may one soldier table past. Arrive nice arrive away en Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organiz https://example.com/ 18500 \N 442339 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5319282323184 0 \N \N f 0 \N 9 88735704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442904 2024-02-28 23:58:40.816 2024-02-29 00:08:42.291 End inside like them according. Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act he https://example.com/ 5195 \N 442904 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 26.697765644028 0 \N \N f 0 \N 34 22911330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438295 2024-02-25 14:19:28.818 2024-02-25 14:29:30.362 \N Adult carry training two campaign. Happen military machine professor turn. Wear direction se https://example.com/ 20562 437820 437817.437820.438295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00914679064056 0 \N \N f 0 \N 0 217921310 0 f f \N \N \N \N 437817 \N 0 0 \N \N f \N 435854 2024-02-23 05:24:57.356 2024-02-23 05:34:58.783 \N Decade ten https://example.com/ 19154 433379 433377.433379.435854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7765201300028 0 \N \N f 0 \N 0 163641482 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 431139 2024-02-19 17:52:45.48 2024-02-19 18:02:46.621 Small newspaper answer adult morning. Effort happy right deal. State Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nTrade gas word. Player draw close by. Population migh https://example.com/ 1012 \N 431139 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7292568271402 0 \N \N f 0 \N 3 101307476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438329 2024-02-25 14:58:01.983 2024-02-25 15:08:03.028 \N Second point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approac https://example.com/ 8360 438325 438325.438329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.182031830613 0 \N \N f 0 \N 1 172854756 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 444890 2024-03-01 12:08:50.717 2024-03-01 12:18:52.018 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. https://example.com/ 13843 444834 444739.444834.444890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8842991001297 0 \N \N f 0 \N 2 47168198 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444823 2024-03-01 11:22:48.036 2024-03-01 11:32:49.202 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feel https://example.com/ 20889 444804 443295.444294.444804.444823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.529768613628612 0 \N \N f 0 \N 0 7397843 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444909 2024-03-01 12:21:51.361 2024-03-01 12:31:53.128 \N Hea https://example.com/ 18008 444901 444739.444884.444889.444901.444909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9265377951852 0 \N \N f 0 \N 0 42207107 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 366140 2023-12-25 19:46:52.921 2023-12-25 19:56:54.209 Piece conference sev Fish health while enjoy. St https://example.com/ 20837 \N 366140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2527153034363 0 \N \N f 0 \N 9 179178041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435862 2024-02-23 05:39:28.895 2024-02-23 05:49:29.662 Their election city process. Agency early its stock. Recent while population s Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice. https://example.com/ 17184 \N 435862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.43820065131042 0 \N \N f 0 \N 0 92991603 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431752 2024-02-19 19:49:46.221 2024-02-19 19:59:47.847 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nTax kid loss hear ahead common best see. Number thus which story list force city fut https://example.com/ 1631 431642 431598.431642.431752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3852947296639 0 \N \N f 0 \N 0 218356132 0 f f \N \N \N \N 431598 \N 0 0 \N \N f \N 430858 2024-02-19 15:29:33.792 2024-02-19 15:39:35.054 Community seat tend position recent will. Last old investme Remember before box of open. Alw https://example.com/ 797 \N 430858 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.8792141489381 0 \N \N f 0 \N 0 116169324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431796 2024-02-19 19:56:41.263 2024-02-19 20:06:42.734 Authority environmental party bank region trip new that. Leave game read Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together. https://example.com/ 640 \N 431796 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.6231276131089 0 \N \N f 0 \N 0 204761108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430871 2024-02-19 15:37:39.652 2024-02-19 15:47:40.297 Watch tell middle above. Happen move consider across my might q Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill. https://example.com/ 21402 \N 430871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6216553913425 0 \N \N f 0 \N 0 18207695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435863 2024-02-23 05:41:18.408 2024-02-23 05:51:20.171 \N Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. https://example.com/ 19044 435639 435639.435863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4422407360808 0 \N \N f 0 \N 0 237167839 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 444773 2024-03-01 11:01:22.652 2024-03-01 11:11:23.51 Night on mention r Together tree bar tonight. Safe admit knowledge high pay https://example.com/ 2065 \N 444773 \N \N \N \N \N \N \N \N security \N ACTIVE \N 10.7954233824209 0 \N \N f 0 \N 1 175648147 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436935 2024-02-24 05:58:33.283 2024-02-24 06:08:34.329 Center stan Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build with https://example.com/ 19506 \N 436935 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 27.2305755127041 0 \N \N f 0 \N 5 62052889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438343 2024-02-25 15:03:54.237 2024-02-25 15:13:55.255 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nEver https://example.com/ 13527 438299 438232.438299.438343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09534500565685 0 \N \N f 0 \N 0 88359876 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 444882 2024-03-01 12:04:06.827 2024-03-01 12:14:08.134 \N Leave example rock. According prepare administration send including maybe. Friend few live manage https://example.com/ 20757 444867 444739.444841.444867.444882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1938290080203 0 \N \N f 0 \N 5 162985474 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 438347 2024-02-25 15:06:09.532 2024-02-25 15:16:10.605 Even hot political little painting home. Garden speec Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. https://example.com/ 7125 \N 438347 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.9922018069845 0 \N \N f 0 \N 0 69903338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438357 2024-02-25 15:15:22.304 2024-02-25 15:25:24.426 \N Majority certainly song between countr https://example.com/ 2640 438339 438325.438339.438357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.096758357248 0 \N \N f 0 \N 0 143118107 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 443919 2024-02-29 17:34:37.506 2024-02-29 17:44:38.64 South little trip identify similar. Because accept leave line address offer Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea. https://example.com/ 16456 \N 443919 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8024092699417 0 \N \N f 0 \N 21 164082155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444917 2024-03-01 12:26:46.083 2024-03-01 12:36:47.843 \N Question produce break listen toward choice. Become not that population too serve. https://example.com/ 661 444848 444848.444917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9748882242143 0 \N \N f 0 \N 0 19823219 0 f f \N \N \N \N 444848 \N 0 0 \N \N f \N 431596 2024-02-19 19:29:47.031 2024-02-19 19:39:47.968 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting p https://example.com/ 18680 430607 430607.431596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0658828122372 0 \N \N f 0 \N 1 186193768 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 444714 2024-03-01 10:13:31.308 2024-03-01 10:23:32.752 Before evening her visit bag building grow. Small project car way estab Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current. https://example.com/ 15978 \N 444714 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.6341014255491 0 \N \N f 0 \N 1 207107210 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431080 2024-02-19 17:32:16.941 2024-02-19 17:42:18.215 \N Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despit https://example.com/ 20006 430962 430488.430777.430962.431080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62708907774844 0 \N \N f 0 \N 0 15224807 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444730 2024-03-01 10:25:10.68 2024-03-01 10:35:12.896 Suggest officer purpose professor great s Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock. https://example.com/ 1298 \N 444730 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2911263083251 0 \N \N f 0 \N 1 126068698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444956 2024-03-01 13:10:52.505 2024-03-01 13:20:53.928 \N Human appear she. So happen oc https://example.com/ 1273 444907 444907.444956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30560706740738 0 \N \N f 0 \N 0 150276786 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 444842 2024-03-01 11:33:34.765 2024-03-01 11:43:36.216 \N Animal treatment actually. Local me bar data personal. Imagine industry much ei https://example.com/ 3729 444755 444755.444842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49517062181919 0 \N \N f 0 \N 0 47433829 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 431891 2024-02-19 21:29:24.971 2024-02-19 21:39:26.652 \N Fly include one church TV air. Democrat ins https://example.com/ 21599 431885 361611.431429.431876.431885.431891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3040709660189 0 \N \N f 0 \N 1 50959747 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 431390 2024-02-19 18:46:14.156 2024-02-19 18:56:15.719 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. https://example.com/ 19966 431161 431161.431390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4353578307806 0 \N \N f 0 \N 3 180384136 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 431396 2024-02-19 18:54:01.155 2024-02-19 19:04:02.324 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nWind through current perhaps until now yet https://example.com/ 18174 431390 431161.431390.431396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8432698536636 0 \N \N f 0 \N 2 218578495 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 431580 2024-02-19 19:18:16.007 2024-02-19 19:28:18.439 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer https://example.com/ 17291 431396 431161.431390.431396.431580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9394075642315 0 \N \N f 0 \N 1 249996690 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 444809 2024-03-01 11:13:50.916 2024-03-01 11:23:52.042 \N Seek military only heart. Side ahead exist spring. Commercial of https://example.com/ 21332 444807 444770.444789.444795.444797.444807.444809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6108932059638 0 \N \N f 0 \N 2 82701509 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 440615 2024-02-27 14:40:40.686 2024-02-27 14:50:42.083 \N Past everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wr https://example.com/ 10549 440587 440587.440615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8264657448233 0 \N \N f 0 \N 0 211757267 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 430962 2024-02-19 16:47:27.648 2024-02-19 16:57:28.504 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special specia https://example.com/ 20778 430777 430488.430777.430962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.145718853821 0 \N \N f 0 \N 1 224923805 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444899 2024-03-01 12:14:31.219 2024-03-01 12:24:32.234 Sell hundred beautiful up clai Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect. https://example.com/ 1729 \N 444899 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 26.1817240563835 0 \N \N f 0 \N 1 109321282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431875 2024-02-19 21:22:07.643 2024-02-19 21:32:10.046 \N Live music official https://example.com/ 12102 430597 430597.431875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7389276939225 0 \N \N f 0 \N 0 240548544 0 f f \N \N \N \N 430597 \N 0 0 \N \N f \N 438606 2024-02-25 20:00:18.28 2024-02-25 20:10:19.844 \N Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nReturn bag https://example.com/ 17944 438065 438065.438606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5166947291437 0 \N \N f 0 \N 0 239827521 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 444924 2024-03-01 12:33:05.657 2024-03-01 12:43:06.587 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose com https://example.com/ 750 444770 444770.444924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85476605659237 0 \N \N f 0 \N 0 145747651 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438613 2024-02-25 20:09:00.878 2024-02-25 20:19:02.337 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nThere every https://example.com/ 13046 438093 438093.438613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.336448427958 0 \N \N f 0 \N 0 8214104 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435307 2024-02-22 17:44:36.217 2024-02-22 17:54:37.672 \N Lead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player https://example.com/ 4118 435298 435154.435288.435298.435307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2508747314769 0 \N \N f 0 \N 0 186605219 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 438620 2024-02-25 20:17:59.735 2024-02-25 20:28:02.015 \N Recent yourself price region detail leader. Positive whole brother https://example.com/ 8926 435776 435488.435776.438620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1944153518391 0 \N \N f 0 \N 0 71771635 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 444826 2024-03-01 11:25:01.316 2024-03-01 11:35:03.318 Work suddenly pick. Interesting check s May building suffer accept thousand race record play https://example.com/ 9920 \N 444826 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 9.3962198771899 0 \N \N f 0 \N 0 219573842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436178 2024-02-23 13:27:41.676 2024-02-23 13:37:43.54 \N System lose thought. Him medical during might find full garden. Her south develop south sce https://example.com/ 18832 436021 435328.435887.435904.435957.436001.436011.436021.436178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4862139930281 0 \N \N f 0 \N 0 219210086 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 432127 2024-02-20 02:55:58.177 2024-02-20 03:06:00.003 \N Young nothing just. Spring play ok r https://example.com/ 20577 432003 432003.432127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3901304029796 0 \N \N f 0 \N 0 68586752 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 438239 2024-02-25 13:32:59.328 2024-02-25 13:43:00.239 \N Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meet https://example.com/ 18828 437233 437233.438239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9866144939984 0 \N \N f 0 \N 0 27404798 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 444819 2024-03-01 11:20:33.147 2024-03-01 11:30:34.126 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social https://example.com/ 19030 444770 444770.444819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2682715899419 0 \N \N f 0 \N 0 100381218 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441426 2024-02-28 03:35:58.509 2024-02-28 03:46:00.219 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually https://example.com/ 20036 441415 440663.441415.441426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.34006063956582 0 \N \N f 0 \N 0 146714356 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 444810 2024-03-01 11:14:38.839 2024-03-01 11:24:39.673 \N Determine evidence bar. Evening where myself shoulder century number. End https://example.com/ 16717 444770 444770.444810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66640793454498 0 \N \N f 0 \N 0 183985167 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441321 2024-02-28 01:03:10.788 2024-02-28 01:13:14.594 Face opportunity account eat program Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nSay this find practice. Small exactly explain from born draw. Sto https://example.com/ 19910 \N 441321 \N \N \N \N \N \N \N \N art \N ACTIVE \N 7.46511517441071 0 \N \N f 0 \N 0 17540103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444818 2024-03-01 11:20:25.293 2024-03-01 11:30:27.12 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blu https://example.com/ 12921 444770 444770.444818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.11315964678128 0 \N \N f 0 \N 0 198929647 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431886 2024-02-19 21:28:02.143 2024-02-19 21:38:04.443 \N Occur chair truth these officer focus black. Walk create no generation once accordi https://example.com/ 17552 426481 423955.424279.425084.425259.425560.425598.426481.431886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83809610325343 0 \N \N f 0 \N 0 106228834 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 444813 2024-03-01 11:16:03.557 2024-03-01 11:26:05.457 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow A https://example.com/ 5791 444789 444770.444789.444813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0557292088857 0 \N \N f 0 \N 0 161867437 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 430960 2024-02-19 16:47:17.431 2024-02-19 16:57:19.373 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. https://example.com/ 20287 430607 430607.430960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06673568275896 0 \N \N f 0 \N 0 63354754 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 441450 2024-02-28 04:26:34.651 2024-02-28 04:36:36.121 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff https://example.com/ 721 441395 441333.441336.441360.441395.441450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9453844062942 0 \N \N f 0 \N 0 94483733 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 444829 2024-03-01 11:26:51.321 2024-03-01 11:36:52.941 \N How never cut grow benefit. Dinner environmental side financial. Car statement dec https://example.com/ 12220 444821 444770.444801.444821.444829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6833413127725 0 \N \N f 0 \N 0 92290218 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441471 2024-02-28 05:02:13.629 2024-02-28 05:12:15.246 \N Describe modern https://example.com/ 739 441470 441436.441470.441471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7547727468172 0 \N \N f 0 \N 0 118040498 0 f f \N \N \N \N 441436 \N 0 0 \N \N f \N 444821 2024-03-01 11:21:34.362 2024-03-01 11:31:35.38 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but https://example.com/ 822 444801 444770.444801.444821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60951288502288 0 \N \N f 0 \N 1 225211640 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441469 2024-02-28 04:57:20.641 2024-02-28 05:07:21.548 \N Very executive American something myself so my. Art to five indicate hu https://example.com/ 21281 219168 219168.441469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.415155380662 0 \N \N f 0 \N 0 75141635 0 f f \N \N \N \N 219168 \N 0 0 \N \N f \N 444801 2024-03-01 11:10:20.636 2024-03-01 11:20:21.778 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Se https://example.com/ 20502 444770 444770.444801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2266216127361 0 \N \N f 0 \N 2 13808063 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438229 2024-02-25 13:25:25.026 2024-02-25 13:35:26.506 Site product one Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy envi https://example.com/ 1658 \N 438229 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 2.23202099842968 0 \N \N f 0 \N 1 134423742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431879 2024-02-19 21:24:21.699 2024-02-19 21:34:22.995 \N Never heavy table particularly land https://example.com/ 12708 430918 430607.430755.430918.431879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4011343860378 0 \N \N f 0 \N 0 139571134 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 431897 2024-02-19 21:31:45.97 2024-02-19 21:41:47.1 \N Network art go experience example him see. Half lay there up start dream nice. Ex https://example.com/ 9921 426808 426711.426808.431897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04792556685467 0 \N \N f 0 \N 0 78401285 0 f f \N \N \N \N 426711 \N 0 0 \N \N f \N 435317 2024-02-22 17:48:31.602 2024-02-22 17:58:32.646 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend D https://example.com/ 17827 434954 434627.434954.435317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5561415618611 0 \N \N f 0 \N 0 79812521 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 444794 2024-03-01 11:07:08.268 2024-03-01 11:17:09.454 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sur https://example.com/ 20102 444785 444770.444771.444782.444785.444794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59430361928904 0 \N \N f 0 \N 2 115821431 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 441089 2024-02-27 21:01:57.267 2024-02-27 21:11:58.325 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive p https://example.com/ 18473 440911 440911.441089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.03286021763418 0 \N \N f 0 \N 2 36146387 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 444831 2024-03-01 11:26:59.42 2024-03-01 11:37:00.974 \N Per seat key down relationship step. Father camera mod https://example.com/ 21480 444794 444770.444771.444782.444785.444794.444831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3540324991356 0 \N \N f 0 \N 1 1673019 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444782 2024-03-01 11:03:16.279 2024-03-01 11:13:17.287 \N Speech also his. White PM rather https://example.com/ 15147 444771 444770.444771.444782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.685754408055 0 \N \N f 0 \N 4 98060141 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 442207 2024-02-28 15:39:03.988 2024-02-28 15:49:05.132 \N After increase change education budget. Or tend city political mean drug cost. We professor walk https://example.com/ 21233 442194 200726.200758.200759.200827.200836.200867.442120.442190.442194.442207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16133981933235 0 \N \N f 0 \N 0 203760708 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 435309 2024-02-22 17:45:45.458 2024-02-22 17:55:46.216 \N Get executive stock mo https://example.com/ 19335 434896 434865.434896.435309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5974712256486 0 \N \N f 0 \N 0 24175563 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 431902 2024-02-19 21:35:50.591 2024-02-19 21:45:52.269 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fac https://example.com/ 802 429306 428952.429306.431902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84089730965709 0 \N \N f 0 \N 0 67227153 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 441534 2024-02-28 07:42:46.365 2024-02-28 07:52:47.461 \N We teacher join same push onto. Gas character eac https://example.com/ 669 441523 441333.441396.441523.441534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7336759425544 0 \N \N f 0 \N 2 181029817 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 431895 2024-02-19 21:31:07.738 2024-02-19 21:41:09.215 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter https://example.com/ 14381 431891 361611.431429.431876.431885.431891.431895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1032269090704 0 \N \N f 0 \N 0 32148263 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 441542 2024-02-28 07:51:19.575 2024-02-28 08:01:21.461 \N Staff likely col https://example.com/ 5865 441538 441333.441535.441538.441542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1306169191119 0 \N \N f 0 \N 0 77848865 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 436142 2024-02-23 13:03:39.603 2024-02-23 13:13:41.338 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nStandard choose white. Yard wo https://example.com/ 21072 435746 435746.436142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0536152143271 0 \N \N f 0 \N 1 172884799 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 436328 2024-02-23 15:47:59.662 2024-02-23 15:58:00.991 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technolog https://example.com/ 12175 436318 436318.436328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2704299401125 0 \N \N f 0 \N 0 243477384 0 f f \N \N \N \N 436318 \N 0 0 \N \N f \N 431948 2024-02-19 22:15:23.775 2024-02-19 22:25:25.283 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while https://example.com/ 18897 431713 430496.431434.431713.431948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9140613482347 0 \N \N f 0 \N 0 108173420 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 436378 2024-02-23 16:20:30.077 2024-02-23 16:30:31.552 Hundred unit music many. But mother however drug call a. Strong le Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport. https://example.com/ 2734 \N 436378 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.82797709669348 0 \N \N f 0 \N 0 46689414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438241 2024-02-25 13:36:58.953 2024-02-25 13:46:59.86 Always fr Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade pro https://example.com/ 16948 \N 438241 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 27.4021293144909 0 \N \N f 0 \N 1 50816688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438237 2024-02-25 13:30:54.856 2024-02-25 13:40:56.578 \N Happen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despit https://example.com/ 10536 437893 437893.438237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6937589859731 0 \N \N f 0 \N 0 82216121 0 f f \N \N \N \N 437893 \N 0 0 \N \N f \N 433892 2024-02-21 16:00:34.395 2024-02-21 16:10:35.741 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nSuffer same investment. Finish play also account there indeed. Fine list wi https://example.com/ 998 433869 433066.433088.433456.433557.433869.433892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.847616261736 0 \N \N f 0 \N 0 176334598 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 444855 2024-03-01 11:46:59.845 2024-03-01 11:57:01.731 \N Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standar https://example.com/ 21048 444854 444770.444847.444854.444855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0382524642743 0 \N \N f 0 \N 0 10538415 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431811 2024-02-19 20:04:56.367 2024-02-19 20:14:58.534 \N Key third PM painti https://example.com/ 11898 431724 297791.431724.431811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48033266253972 0 \N \N f 0 \N 0 142799232 0 f f \N \N \N \N 297791 \N 0 0 \N \N f \N 431724 2024-02-19 19:47:03.497 2024-02-19 19:57:05.125 \N Miss keep probably political f https://example.com/ 620 297791 297791.431724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.165318517503 0 \N \N f 0 \N 1 29492569 0 f f \N \N \N \N 297791 \N 0 0 \N \N f \N 441546 2024-02-28 07:56:39.308 2024-02-28 08:06:41.616 \N Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nMention trip someone idea until physical. Protect https://example.com/ 19527 441523 441333.441396.441523.441546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7265754058773 0 \N \N f 0 \N 2 30430956 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 431898 2024-02-19 21:31:51.406 2024-02-19 21:41:53.016 \N W https://example.com/ 5978 431816 431816.431898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21114761154076 0 \N \N f 0 \N 0 44202486 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 441530 2024-02-28 07:33:42.265 2024-02-28 07:43:43.989 \N Chance near song measure every physical. Quickly white usually interest use. Throughout abl https://example.com/ 13100 441445 441333.441445.441530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.250416277385 0 \N \N f 0 \N 0 245963256 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 444912 2024-03-01 12:22:27.445 2024-03-01 12:32:28.701 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult https://example.com/ 21589 444906 444739.444841.444867.444882.444887.444906.444912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2955259007108 0 \N \N f 0 \N 0 28401962 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444925 2024-03-01 12:33:05.839 2024-03-01 12:43:08.267 \N May another international budget. Tonight moment grow friend catch thus https://example.com/ 21178 443605 443295.443605.444925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.62443810045541 0 \N \N f 0 \N 0 50809044 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443295 2024-02-29 11:00:03.84 2024-02-29 11:10:05.17 Need movie coa Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After https://example.com/ 19243 \N 443295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2154373294799 0 \N \N f 0 \N 98 199757165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435363 2024-02-22 18:26:12.242 2024-02-22 18:36:13.954 \N Author https://example.com/ 12736 434994 434994.435363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9836366820205 0 \N \N f 0 \N 0 194860868 0 f f \N \N \N \N 434994 \N 0 0 \N \N f \N 435362 2024-02-22 18:26:03.231 2024-02-22 18:36:04.476 \N Avoid avoid fo https://example.com/ 2213 435361 435357.435361.435362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0278602965743 0 \N \N f 0 \N 0 160169683 0 f f \N \N \N \N 435357 \N 0 0 \N \N f \N 444913 2024-03-01 12:25:05.455 2024-03-01 12:35:06.678 \N Field rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performa https://example.com/ 7674 444770 444770.444913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12780569281647 0 \N \N f 0 \N 0 178440044 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438250 2024-02-25 13:46:11.836 2024-02-25 13:56:13.196 \N Once could https://example.com/ 21555 438244 438236.438244.438250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5959839806325 0 \N \N f 0 \N 0 47670693 0 f f \N \N \N \N 438236 \N 0 0 \N \N f \N 438244 2024-02-25 13:41:03.653 2024-02-25 13:51:07.517 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side https://example.com/ 16556 438236 438236.438244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08773814063778 0 \N \N f 0 \N 1 33649256 0 f f \N \N \N \N 438236 \N 0 0 \N \N f \N 442949 2024-02-29 01:03:17.941 2024-02-29 01:13:19.19 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father rea https://example.com/ 19158 442501 442501.442949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73896126777984 0 \N \N f 0 \N 0 237108812 0 f f \N \N \N \N 442501 \N 0 0 \N \N f \N 438350 2024-02-25 15:11:00.15 2024-02-25 15:21:01.475 \N Name put just democratic follow beyond marriage minute. Only none scene https://example.com/ 13878 437775 437775.438350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85779665583557 0 \N \N f 0 \N 0 210148707 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 444919 2024-03-01 12:28:03.069 2024-03-01 12:38:04.158 Glass her remember exist during. Blu Tend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly https://example.com/ 19502 \N 444919 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 13.7593467489054 0 \N \N f 0 \N 0 119460716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438119 2024-02-25 11:26:52.971 2024-02-25 11:36:54.928 \N Decide up red either war deep account more. Force step author century drop often. Item mainta https://example.com/ 5759 437817 437817.438119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2343756682195 0 \N \N f 0 \N 2 13649021 0 f f \N \N \N \N 437817 \N 0 0 \N \N f \N 437889 2024-02-25 02:51:14.694 2024-02-25 03:01:16.056 \N Region model over box relate computer consumer. Everything city https://example.com/ 5522 433828 433828.437889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.779352730723 0 \N \N f 0 \N 0 113592258 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 437894 2024-02-25 02:57:47.1 2024-02-25 03:07:48.487 \N Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During wri https://example.com/ 16929 437890 437775.437832.437865.437890.437894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.34667523484128 0 \N \N f 0 \N 0 182718686 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 438364 2024-02-25 15:26:27.122 2024-02-25 15:36:29.086 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical https://example.com/ 18231 438232 438232.438364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93301419246133 0 \N \N f 0 \N 0 234247900 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 431429 2024-02-19 19:00:26.984 2024-02-19 19:10:28.672 \N Author travel realize. Face re https://example.com/ 17171 361611 361611.431429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2722388188733 0 \N \N f 0 \N 4 3058783 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 444918 2024-03-01 12:27:27.305 2024-03-01 12:37:28.201 \N Third would fire https://example.com/ 631 444907 444907.444918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38860367009286 0 \N \N f 0 \N 0 126542513 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 431876 2024-02-19 21:23:32.939 2024-02-19 21:33:35.128 \N Human since term seek. Easy move guess bring training. Performance decade https://example.com/ 17217 431429 361611.431429.431876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44042765447715 0 \N \N f 0 \N 3 233592780 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 438344 2024-02-25 15:04:54.057 2024-02-25 15:14:55.315 \N Best affect mind former history. Likely half situation wife order. Human time deal n https://example.com/ 20205 438324 438231.438245.438287.438296.438308.438324.438344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3059039876158 0 \N \N f 0 \N 0 204673329 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 438324 2024-02-25 14:53:21.301 2024-02-25 15:03:23.468 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exi https://example.com/ 626 438308 438231.438245.438287.438296.438308.438324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.11078649418841 0 \N \N f 0 \N 2 2183694 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 438308 2024-02-25 14:32:20.156 2024-02-25 14:42:21.397 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nSeven which nature charge. Today rang https://example.com/ 1173 438296 438231.438245.438287.438296.438308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2037353583016 0 \N \N f 0 \N 4 83914119 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 438296 2024-02-25 14:19:37.827 2024-02-25 14:29:38.817 \N Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church https://example.com/ 18704 438287 438231.438245.438287.438296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6280903801153 0 \N \N f 0 \N 5 98328115 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 438287 2024-02-25 14:15:06.364 2024-02-25 14:25:07.587 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Includin https://example.com/ 2519 438245 438231.438245.438287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8123169963088 0 \N \N f 0 \N 6 200599513 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 431814 2024-02-19 20:06:26.919 2024-02-19 20:16:27.596 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth co https://example.com/ 12049 431568 431568.431814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.246018051311445 0 \N \N f 0 \N 0 47213880 0 f f \N \N \N \N 431568 \N 0 0 \N \N f \N 431568 2024-02-19 19:12:52.131 2024-02-19 19:22:53.547 Add bar degree beat since. Somebody of compare sea partner. Live indeed inter Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever. https://example.com/ 20623 \N 431568 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.0325248893978 0 \N \N f 0 \N 1 42308993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444932 2024-03-01 12:43:46.356 2024-03-01 12:53:47.877 Girl fire bring middle popular. And suffer its throughout chance. On Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge. https://example.com/ 8037 \N 444932 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.7610711990134 0 \N \N f 0 \N 0 75995178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443005 2024-02-29 02:24:39.221 2024-02-29 02:34:40.447 \N Director far fact order bit collection. Ok prove thought note https://example.com/ 18608 442565 442163.442565.443005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3188059850093 0 \N \N f 0 \N 0 18127121 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 431817 2024-02-19 20:09:09.205 2024-02-19 20:19:10.779 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night https://example.com/ 19812 431743 308818.431743.431817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.71406811894315 0 \N \N f 0 \N 0 227871140 0 f f \N \N \N \N 308818 \N 0 0 \N \N f \N 431743 2024-02-19 19:48:04.538 2024-02-19 19:58:05.934 \N Image reality political wind s https://example.com/ 8926 308818 308818.431743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.460929996956 0 \N \N f 0 \N 1 97571393 0 f f \N \N \N \N 308818 \N 0 0 \N \N f \N 431900 2024-02-19 21:34:59.994 2024-02-19 21:45:01.567 \N Big time rise yourself all one peace set. Detail else https://example.com/ 15463 431890 431877.431890.431900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91713630798127 0 \N \N f 0 \N 3 104499439 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 443077 2024-02-29 04:47:43.514 2024-02-29 04:57:44.788 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis https://example.com/ 11298 443074 443008.443040.443051.443071.443074.443077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9689477788982 0 \N \N f 0 \N 0 187565778 0 f f \N \N \N \N 443008 \N 0 0 \N \N f \N 435434 2024-02-22 19:27:31.636 2024-02-22 19:37:32.875 \N Image reality political wind several natural. Growth speak drive believe ball. This https://example.com/ 12097 435348 434795.434798.435179.435194.435204.435239.435290.435325.435330.435337.435348.435434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.711464571084583 0 \N \N f 0 \N 0 85394911 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 444771 2024-03-01 11:00:09.716 2024-03-01 11:10:11.445 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then d https://example.com/ 16842 444770 444770.444771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.56102302807497 0 \N \N f 0 \N 5 167789767 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438245 2024-02-25 13:42:12.48 2024-02-25 13:52:14.891 \N Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs co https://example.com/ 15588 438231 438231.438245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23986362475511 0 \N \N f 0 \N 9 211528590 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 438116 2024-02-25 11:25:51.858 2024-02-25 11:35:52.873 \N Small enjoy manage service individual down. Season science various level benef https://example.com/ 20087 438111 437631.438111.438116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1137915300584 0 \N \N f 0 \N 0 91598871 0 f f \N \N \N \N 437631 \N 0 0 \N \N f \N 438111 2024-02-25 11:20:15.657 2024-02-25 11:30:16.595 \N Improve different identify only radio myself. Relate little make whatever. https://example.com/ 17944 437631 437631.438111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58700880384976 0 \N \N f 0 \N 1 112540557 0 f f \N \N \N \N 437631 \N 0 0 \N \N f \N 444923 2024-03-01 12:31:36.858 2024-03-01 12:41:38.112 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Eveni https://example.com/ 20198 444770 444770.444923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0928580936131 0 \N \N f 0 \N 0 178078830 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438279 2024-02-25 14:08:30.261 2024-02-25 14:18:31.331 Author travel realize. Face represent br Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive. https://example.com/ 4166 \N 438279 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.08039769935245 0 \N \N f 0 \N 0 169332939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438015 2024-02-25 08:23:09.648 2024-02-25 08:33:11.278 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine e https://example.com/ 20825 436199 435120.435934.436199.438015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5496373657222 0 \N \N f 0 \N 0 140659233 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 435400 2024-02-22 18:59:24.689 2024-02-22 19:09:26.313 \N Commercial loss cultur https://example.com/ 4538 435399 435392.435395.435399.435400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2124076853449 0 \N \N f 0 \N 0 143359333 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 438548 2024-02-25 18:28:21.916 2024-02-25 18:38:24.199 \N South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job https://example.com/ 12057 437616 437583.437594.437616.438548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83312317705716 0 \N \N f 0 \N 0 221017350 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 435411 2024-02-22 19:08:09.947 2024-02-22 19:18:11.189 Remember statement trip much improve body. House re Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color. https://example.com/ 1495 \N 435411 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.0470035226678 0 \N \N f 0 \N 5 98576056 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435389 2024-02-22 18:51:28.054 2024-02-22 19:01:29.869 \N Any tend power space fund inside evidence. https://example.com/ 19148 434124 434124.435389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3628542609271 0 \N \N f 0 \N 0 59580337 0 f f \N \N \N \N 434124 \N 0 0 \N \N f \N 431792 2024-02-19 19:54:32.415 2024-02-19 20:04:34.322 \N Practice see become. Chance ed https://example.com/ 1628 296871 296871.431792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0668496051741 0 \N \N f 0 \N 0 94614575 0 f f \N \N \N \N 296871 \N 0 0 \N \N f \N 431944 2024-02-19 22:11:49.878 2024-02-19 22:21:51.197 \N Build leg whole describe peace above answer walk. Charge reality bad. S https://example.com/ 5017 431889 431889.431944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17476246898048 0 \N \N f 0 \N 0 138669794 0 f f \N \N \N \N 431889 \N 0 0 \N \N f \N 431911 2024-02-19 21:44:59.984 2024-02-19 21:55:01.059 \N Build leg whole describe peace above answer w https://example.com/ 18241 375953 361611.375953.431911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.081007405075 0 \N \N f 0 \N 0 71104100 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 435138 2024-02-22 15:57:48.347 2024-02-22 16:07:50.661 \N Seven which nature charge. Toda https://example.com/ 16684 435128 435128.435138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.845415671932 0 \N \N f 0 \N 2 5756003 0 f f \N \N \N \N 435128 \N 0 0 \N \N f \N 444936 2024-03-01 12:48:21.275 2024-03-01 12:58:22.05 \N For share something e https://example.com/ 6058 444844 444725.444844.444936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56171504044429 0 \N \N f 0 \N 0 79471386 0 f f \N \N \N \N 444725 \N 0 0 \N \N f \N 435403 2024-02-22 19:00:06.14 2024-02-22 19:10:07.326 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significan https://example.com/ 18829 435402 435402.435403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0166806885077 0 \N \N f 0 \N 0 83259918 0 f f \N \N \N \N 435402 \N 0 0 \N \N f \N 431878 2024-02-19 21:23:51.023 2024-02-19 21:33:52.55 \N Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure de https://example.com/ 11075 431872 431872.431878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1863379518998 0 \N \N f 0 \N 0 85356762 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 438206 2024-02-25 13:00:30.13 2024-02-25 13:10:31.524 \N Plant development someone include maybe https://example.com/ 9496 438202 438202.438206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48868102575641 0 \N \N f 0 \N 0 104239931 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 431906 2024-02-19 21:38:47.808 2024-02-19 21:48:49.117 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performan https://example.com/ 9184 430607 430607.431906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87050066204274 0 \N \N f 0 \N 0 150770834 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 431859 2024-02-19 20:57:24.769 2024-02-19 21:07:27.023 \N Trade https://example.com/ 8376 431816 431816.431859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.10573496099795 0 \N \N f 0 \N 0 18592025 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444500 2024-03-01 02:26:16.727 2024-03-01 02:36:18.094 \N Custome https://example.com/ 4345 443688 443593.443688.444500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1285561030573 0 \N \N f 0 \N 0 237772297 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 444969 2024-03-01 13:29:15.898 2024-03-01 13:39:16.968 \N Condi https://example.com/ 18174 444265 444168.444265.444969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2504739860374 0 \N \N f 0 \N 0 80352201 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 431916 2024-02-19 21:49:41.122 2024-02-19 21:59:42.78 \N Past skin protect than court summer exp https://example.com/ 19886 431912 431816.431912.431916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0298646363605 0 \N \N f 0 \N 1 127895091 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444935 2024-03-01 12:47:12.808 2024-03-01 12:57:14.175 \N Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature https://example.com/ 19996 444847 444770.444847.444935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2740097809559 0 \N \N f 0 \N 0 151005883 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431571 2024-02-19 19:14:15.913 2024-02-19 19:24:18.49 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out als https://example.com/ 19512 430975 430488.430975.431571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85238830089093 0 \N \N f 0 \N 0 16163925 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431881 2024-02-19 21:24:52.342 2024-02-19 21:34:54.003 Accept nation he. Work plan maintain rather gre Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event. https://example.com/ 21520 \N 431881 \N \N \N \N \N \N \N \N health \N ACTIVE \N 12.7768373964283 0 \N \N f 0 \N 0 117263589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438264 2024-02-25 13:56:55.453 2024-02-25 14:06:56.932 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Ot https://example.com/ 19469 438261 438209.438211.438261.438264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4978505263588 0 \N \N f 0 \N 4 118036544 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432117 2024-02-20 02:46:16.428 2024-02-20 02:56:17.857 \N She for deep https://example.com/ 19034 432029 432003.432029.432117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.08342454869031 0 \N \N f 0 \N 0 171210461 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 431922 2024-02-19 21:55:34.508 2024-02-19 22:05:36.421 \N Quite teacher accept per agent PM suddenly reveal. Land cou https://example.com/ 848 431916 431816.431912.431916.431922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6070181198995 0 \N \N f 0 \N 0 192873151 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 431924 2024-02-19 21:57:38.069 2024-02-19 22:07:40.229 \N Whose top property well serve national https://example.com/ 9290 431914 431816.431826.431903.431914.431924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.73086314222034 0 \N \N f 0 \N 0 46354031 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 431389 2024-02-19 18:45:04.216 2024-02-19 18:55:06.066 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular w https://example.com/ 16536 431294 431294.431389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.21264676361946 0 \N \N f 0 \N 1 249380885 0 f f \N \N \N \N 431294 \N 0 0 \N \N f \N 431722 2024-02-19 19:45:19.54 2024-02-19 19:55:21.041 \N Experience base structure our question reach investment. To several view red lead perhaps. Add between yourself then o https://example.com/ 11091 431294 431294.431722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.31480065384016 0 \N \N f 0 \N 0 196569859 0 f f \N \N \N \N 431294 \N 0 0 \N \N f \N 431719 2024-02-19 19:43:09.174 2024-02-19 19:53:10.595 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total https://example.com/ 18543 431294 431294.431719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3022334225094 0 \N \N f 0 \N 0 234014424 0 f f \N \N \N \N 431294 \N 0 0 \N \N f \N 431386 2024-02-19 18:43:41.415 2024-02-19 18:53:42.805 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice col https://example.com/ 15200 431294 431294.431386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.375837407131 0 \N \N f 0 \N 0 60183978 0 f f \N \N \N \N 431294 \N 0 0 \N \N f \N 430975 2024-02-19 16:56:38.851 2024-02-19 17:06:41.204 \N Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency https://example.com/ 20424 430488 430488.430975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8877943795694 0 \N \N f 0 \N 1 224116331 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444725 2024-03-01 10:22:36.714 2024-03-01 10:32:38.928 Face opportunity account eat prog Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Mode https://example.com/ 14385 \N 444725 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 14.5008555918343 0 \N \N f 0 \N 6 19953788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444844 2024-03-01 11:35:42.506 2024-03-01 11:45:43.778 \N Tell difference pattern carry join. Size factor https://example.com/ 9496 444725 444725.444844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7848895405384 0 \N \N f 0 \N 1 9456520 0 f f \N \N \N \N 444725 \N 0 0 \N \N f \N 438392 2024-02-25 15:55:24.388 2024-02-25 16:05:25.835 Big money in south wide support. Meet radio walk Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 3360 \N 438392 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.4218655858391 0 \N \N f 0 \N 0 73510765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438301 2024-02-25 14:27:13.474 2024-02-25 14:37:15.317 \N Grow last away wind. Mr bill do ex https://example.com/ 18625 437942 437723.437762.437870.437921.437931.437940.437942.438301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7165126427648 0 \N \N f 0 \N 0 38578344 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437870 2024-02-25 02:20:54.944 2024-02-25 02:30:55.86 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positi https://example.com/ 16442 437762 437723.437762.437870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2661039760055 0 \N \N f 0 \N 5 132584004 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432645 2024-02-20 16:13:08.099 2024-02-20 16:23:09.415 \N Already reduce grow only chance oppo https://example.com/ 12261 432514 432511.432514.432645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0997654040025 0 \N \N f 0 \N 0 151357748 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 444671 2024-03-01 08:30:39.885 2024-03-01 08:40:41.321 Statement could up son I. Range book politics sign I whateve Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose. https://example.com/ 5829 \N 444671 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 6.00334756885005 0 \N \N f 0 \N 0 74245422 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431930 2024-02-19 22:00:06.923 2024-02-19 22:00:12.53 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team https://example.com/ 18897 431929 431929.431930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3981952905643 0 \N \N f 0 \N 0 248177722 0 f f \N \N \N \N 431929 \N 0 0 \N \N f \N 431826 2024-02-19 20:20:54.366 2024-02-19 20:30:56.41 \N Never new shoulder https://example.com/ 7510 431816 431816.431826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7018788206802 0 \N \N f 0 \N 10 90230169 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 437898 2024-02-25 03:00:05.59 2024-02-25 03:00:11.6 \N Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine https://example.com/ 20377 437897 437897.437898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.78632060350271 0 \N \N f 0 \N 0 18985519 0 f f \N \N \N \N 437897 \N 0 0 \N \N f \N 442967 2024-02-29 01:35:46.397 2024-02-29 01:45:48.208 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign m https://example.com/ 18468 442965 442820.442965.442967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08548605393986 0 \N \N f 0 \N 3 2808761 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 444764 2024-03-01 10:54:13.688 2024-03-01 11:04:15.295 \N According shake the atta https://example.com/ 5499 444755 444755.444764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5553297693572 0 \N \N f 0 \N 0 13261702 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 431933 2024-02-19 22:02:35.574 2024-02-19 22:12:36.62 \N Soon raise sense education hold away. Wha https://example.com/ 2942 430933 430892.430933.431933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2679525140633 0 \N \N f 0 \N 1 53547316 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431932 2024-02-19 22:01:47.516 2024-02-19 22:11:48.966 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five https://example.com/ 770 431918 431918.431932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9842344602986 0 \N \N f 0 \N 1 243570990 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 444916 2024-03-01 12:26:38.739 2024-03-01 12:36:39.825 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass spe https://example.com/ 1552 444755 444755.444916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2237632117605 0 \N \N f 0 \N 0 122511482 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 437865 2024-02-25 02:11:05.928 2024-02-25 02:21:06.963 \N Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director https://example.com/ 684 437832 437775.437832.437865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8175405259982 0 \N \N f 0 \N 2 110828632 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 442980 2024-02-29 01:56:06.401 2024-02-29 02:06:08.007 \N List professional e https://example.com/ 6310 276232 276232.442980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1638523490227 0 \N \N f 0 \N 0 134849017 0 f f \N \N \N \N 276232 \N 0 0 \N \N f \N 431937 2024-02-19 22:05:17.864 2024-02-19 22:15:18.724 \N Speak organization direction school minute. Daughter https://example.com/ 18842 431932 431918.431932.431937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3238537668282 0 \N \N f 0 \N 0 189424041 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 438306 2024-02-25 14:30:17.967 2024-02-25 14:40:19.04 Purpose add when information sing like rec Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place boar https://example.com/ 17976 \N 438306 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 25.7662254103244 0 \N \N f 0 \N 1 42437099 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444808 2024-03-01 11:12:50.431 2024-03-01 11:22:51.233 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. https://example.com/ 1114 444755 444755.444808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.69696275161359 0 \N \N f 0 \N 0 172205095 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 441497 2024-02-28 05:50:02.653 2024-02-28 06:00:03.569 \N Already real me back ahead especially drug late. Doctor my risk party black https://example.com/ 5527 441244 440988.441129.441244.441497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74092116748393 0 \N \N f 0 \N 0 243156890 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 444806 2024-03-01 11:12:01.314 2024-03-01 11:22:02.992 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argu https://example.com/ 9333 444755 444755.444806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9570862809593 0 \N \N f 0 \N 0 238889834 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 444866 2024-03-01 11:54:25.478 2024-03-01 12:04:27.857 \N Wish low party shake. N https://example.com/ 10063 444755 444755.444866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13258131316681 0 \N \N f 0 \N 0 47423317 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 439055 2024-02-26 10:30:43.674 2024-02-26 10:40:45.228 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot https://example.com/ 10280 439040 438936.439007.439040.439055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4723679488586 0 \N \N f 0 \N 1 224508116 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 442651 2024-02-28 20:23:41.025 2024-02-28 20:33:43.155 We quite story po Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building. https://example.com/ 21532 \N 442651 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.6153083638602 0 \N \N f 0 \N 0 208845418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442994 2024-02-29 02:12:08.489 2024-02-29 02:22:10.121 \N Although thought fal https://example.com/ 880 208573 208573.442994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.54718747338352 0 \N \N f 0 \N 0 82928024 0 f f \N \N \N \N 208573 \N 0 0 \N \N f \N 438601 2024-02-25 19:51:46.454 2024-02-25 20:01:47.412 \N Never whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threa https://example.com/ 11829 438531 437996.438531.438601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.6751354349745 0 \N \N f 0 \N 0 182033494 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 444937 2024-03-01 12:54:02.049 2024-03-01 13:04:02.865 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down https://example.com/ 14168 444922 444365.444778.444888.444904.444922.444937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.42184521327232 0 \N \N f 0 \N 2 79232694 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444938 2024-03-01 12:56:40.937 2024-03-01 13:06:42.195 \N Author travel realize. Face repr https://example.com/ 624 444739 444739.444938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.97751505603937 0 \N \N f 0 \N 1 120447091 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 443272 2024-02-29 10:30:31.243 2024-02-29 10:40:33.313 Measure western pretty serious director country Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nLong sound contin https://example.com/ 16747 \N 443272 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 11.6293444474892 0 \N \N f 0 \N 56 9480818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431917 2024-02-19 21:50:28.922 2024-02-19 22:00:30.24 \N Maybe see https://example.com/ 715 431451 366556.431451.431917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0555842338781432 0 \N \N f 0 \N 0 137811966 0 f f \N \N \N \N 366556 \N 0 0 \N \N f \N 437910 2024-02-25 03:06:59.854 2024-02-25 03:17:01.88 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebod https://example.com/ 15160 394509 394509.437910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0639017540269 0 \N \N f 0 \N 0 165976242 0 f f \N \N \N \N 394509 \N 0 0 \N \N f \N 438385 2024-02-25 15:52:26.662 2024-02-25 16:02:27.846 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything gl https://example.com/ 19138 438198 438198.438385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.00673848126427 0 \N \N f 0 \N 0 213542579 0 f f \N \N \N \N 438198 \N 0 0 \N \N f \N 431799 2024-02-19 19:58:00.134 2024-02-19 20:08:01.653 \N Right student yard protect cover. Carry these she really. Commercia https://example.com/ 20881 430876 430854.430855.430874.430876.431799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.795635894734 0 \N \N f 0 \N 1 63627806 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 438044 2024-02-25 09:34:30.926 2024-02-25 09:44:32.253 Eight represent last serious these Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil not https://example.com/ 18526 \N 438044 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.586817885323 0 \N \N f 0 \N 2 184961090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435229 2024-02-22 16:54:55.901 2024-02-22 17:04:57.086 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nStatement coul https://example.com/ 3706 434642 434642.435229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2025245263656 0 \N \N f 0 \N 1 26194102 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 433630 2024-02-21 11:32:28.467 2024-02-21 11:42:30.461 \N There everybody fish can. Exactly office event charge reduce. Better happen d https://example.com/ 20586 433309 432920.433309.433630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6838053687035 0 \N \N f 0 \N 0 73235829 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 444648 2024-03-01 07:14:10.269 2024-03-01 07:24:12.196 Key stuff company they base well night. Wonder large may once nor. Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nThem reflect instead color. Public hour property wind ste https://example.com/ 2722 \N 444648 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.5766368778826 0 \N \N f 0 \N 0 131745810 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431929 2024-02-19 22:00:06.271 2024-02-19 22:10:08.055 Debate physical difference without Mrs price final. Nice nation hot wh \N https://example.com/ 18556 \N 431929 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.176807314254 0 \N \N f 0 \N 1 164478407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444941 2024-03-01 12:57:32.969 2024-03-01 13:07:33.8 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagi https://example.com/ 13553 444739 444739.444941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4292063335275 0 \N \N f 0 \N 1 120523105 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 431928 2024-02-19 22:00:06.192 2024-02-19 22:10:07.533 Service technology include study exactly enter. C Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what. https://example.com/ 646 \N 431928 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 7.05586798210607 0 \N \N f 0 \N 0 165344035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444904 2024-03-01 12:19:04.653 2024-03-01 12:29:06.097 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want bo https://example.com/ 19546 444888 444365.444778.444888.444904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9002323907346 0 \N \N f 0 \N 4 94528747 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 438375 2024-02-25 15:39:15.624 2024-02-25 15:49:17.467 \N Specific listen s https://example.com/ 676 438261 438209.438211.438261.438375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9735543158402 0 \N \N f 0 \N 2 40766228 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 437846 2024-02-25 01:45:46.251 2024-02-25 01:55:48.087 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue ea https://example.com/ 15147 437771 437723.437738.437759.437763.437766.437771.437846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.304199418643 0 \N \N f 0 \N 3 39080423 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437766 2024-02-24 23:38:56.646 2024-02-24 23:48:58.092 \N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy polit https://example.com/ 1047 437763 437723.437738.437759.437763.437766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9711334846907 0 \N \N f 0 \N 7 58809361 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431908 2024-02-19 21:40:54.075 2024-02-19 21:50:55.038 \N Person like among former sort. Only population law conference. Themselves eac https://example.com/ 5538 431883 431877.431883.431908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6469226043354 0 \N \N f 0 \N 3 183771256 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 437982 2024-02-25 06:54:24.732 2024-02-25 07:04:26.43 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach sim https://example.com/ 21481 437681 437539.437681.437982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.34803801200689 0 \N \N f 0 \N 0 68478250 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 431883 2024-02-19 21:26:20.111 2024-02-19 21:36:22.088 \N Occur off https://example.com/ 3342 431877 431877.431883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.911430414808 0 \N \N f 0 \N 4 228449827 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 438373 2024-02-25 15:37:58.94 2024-02-25 15:48:01.622 \N Blood https://example.com/ 18403 431010 428830.431010.438373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4945240349658 0 \N \N f 0 \N 0 219242182 0 f f \N \N \N \N 428830 \N 0 0 \N \N f \N 431010 2024-02-19 17:21:27.123 2024-02-19 17:31:28.983 \N By evening job should nature r https://example.com/ 2151 428830 428830.431010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.95320328437634 0 \N \N f 0 \N 1 82652668 0 f f \N \N \N \N 428830 \N 0 0 \N \N f \N 431889 2024-02-19 21:29:05.993 2024-02-19 21:39:07.226 Hot near source fact. Have hig Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk. https://example.com/ 21148 \N 431889 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.66731241681313 0 \N \N f 0 \N 1 4700072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438394 2024-02-25 15:57:56.67 2024-02-25 16:07:57.781 \N Full both sound century clo https://example.com/ 999 438393 438317.438393.438394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.77973699312328 0 \N \N f 0 \N 0 26116493 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 439064 2024-02-26 10:38:25.882 2024-02-26 10:48:27.256 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among ch https://example.com/ 6149 439058 438936.438995.439041.439058.439064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4672882351263 0 \N \N f 0 \N 0 202124830 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 437833 2024-02-25 01:29:27.599 2024-02-25 01:39:28.838 \N Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. https://example.com/ 1090 435847 435847.437833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9719590546223 0 \N \N f 0 \N 0 104665723 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 435369 2024-02-22 18:34:30.979 2024-02-22 18:44:32.571 Reach road deal especially do Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal. https://example.com/ 6717 \N 435369 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.37700293750691 0 \N \N f 0 \N 0 113862134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438399 2024-02-25 16:00:05.068 2024-02-25 16:00:10.84 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nDecade tend week light radio. An https://example.com/ 21509 438398 438398.438399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0721008931921 0 \N \N f 0 \N 0 76402805 0 f f \N \N \N \N 438398 \N 0 0 \N \N f \N 444951 2024-03-01 13:05:15.67 2024-03-01 13:15:17.098 \N Cut firm blood tell decisio https://example.com/ 11862 444949 444911.444933.444939.444946.444949.444951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1617806220393 0 \N \N f 0 \N 0 202938327 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 437961 2024-02-25 05:52:09.293 2024-02-25 15:58:15.587 With feel late. R If lose particular https://example.com/ 7903 \N 437961 \N \N \N \N \N \N \N \N health \N ACTIVE \N 26.0543048719509 0 \N \N f 0 \N 0 3898016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435128 2024-02-22 15:52:30.699 2024-02-22 16:02:33.025 Boy force agency change score no job. Memory stay across social cul Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought. https://example.com/ 9552 \N 435128 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.6893758706935 0 \N \N f 0 \N 3 151957483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435407 2024-02-22 19:05:36.371 2024-02-22 19:15:37.593 \N Against involve moment myself with https://example.com/ 642 435138 435128.435138.435407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32313456555495 0 \N \N f 0 \N 1 14413727 0 f f \N \N \N \N 435128 \N 0 0 \N \N f \N 438531 2024-02-25 18:13:50.352 2024-02-25 18:23:53.071 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physica https://example.com/ 5776 437996 437996.438531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.295941521489 0 \N \N f 0 \N 1 128306565 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 431804 2024-02-19 20:00:05.656 2024-02-19 20:10:07.16 Customer include control and. Chance blue audienc \N https://example.com/ 14552 \N 431804 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.9037126544884 0 \N \N f 0 \N 3 137511273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438400 2024-02-25 16:02:13.568 2024-02-25 16:12:15.898 \N Structure ever film https://example.com/ 19815 438317 438317.438400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4053330781148 0 \N \N f 0 \N 0 200393905 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 431899 2024-02-19 21:33:09.529 2024-02-19 21:43:10.983 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose cur https://example.com/ 14168 430488 430488.431899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6783378998474 0 \N \N f 0 \N 0 215941622 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430924 2024-02-19 16:22:48.148 2024-02-19 16:32:49.372 Himself seem along exist population development possible easy. Need with Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject. https://example.com/ 9796 \N 430924 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 8.61048792534564 0 \N \N f 0 \N 0 217325804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431943 2024-02-19 22:11:30.814 2024-02-19 22:21:31.902 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nDrug you class operation. Have job sense. Face thank f https://example.com/ 986 429306 428952.429306.431943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62584199600417 0 \N \N f 0 \N 0 153905209 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 431954 2024-02-19 22:21:33.637 2024-02-19 22:31:35.222 \N Onto although Democrat mind significant trade hair. Pro https://example.com/ 19809 429011 428952.429011.431954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7689333785485 0 \N \N f 0 \N 0 230631455 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 442047 2024-02-28 14:33:16.861 2024-02-28 14:43:17.727 Soon raise sense education hold away. Whatever u Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug. https://example.com/ 20642 \N 442047 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.09618702137841 0 \N \N f 0 \N 0 84325779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431957 2024-02-19 22:23:50.924 2024-02-19 22:33:52.452 \N Build leg whole describe peace a https://example.com/ 12566 431869 431869.431957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3105896283153 0 \N \N f 0 \N 0 146568775 0 f f \N \N \N \N 431869 \N 0 0 \N \N f \N 438403 2024-02-25 16:07:13.046 2024-02-25 16:17:14.496 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer i https://example.com/ 19378 438401 438325.438401.438403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.9836942426659 0 \N \N f 0 \N 0 71057303 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 431951 2024-02-19 22:17:20.991 2024-02-19 22:27:22.695 News half employee read cause story amount. My any why radio. Write factor perfo Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region par https://example.com/ 19044 \N 431951 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 11.9237506934581 0 \N \N f 0 \N 0 215062354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444616 2024-03-01 06:26:41.268 2024-03-01 06:36:42.88 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nSuccess against price. Resource end yeah step bit support. Common hour thank reso https://example.com/ 9159 444561 444561.444616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1840746920623 0 \N \N f 0 \N 0 99192144 0 f f \N \N \N \N 444561 \N 0 0 \N \N f \N 438593 2024-02-25 19:35:50.722 2024-02-25 19:45:52.136 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV he https://example.com/ 1162 438506 438317.438506.438593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2358530957111 0 \N \N f 0 \N 0 249018440 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 437759 2024-02-24 23:11:52.5 2024-02-24 23:21:53.564 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there th https://example.com/ 14278 437738 437723.437738.437759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9783600623079 0 \N \N f 0 \N 9 27691054 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 441954 2024-02-28 13:51:53.72 2024-02-28 14:01:55.787 Detail discussion line around. Art al Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form https://example.com/ 1802 \N 441954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6914653289585 0 \N \N f 0 \N 3 13537420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444652 2024-03-01 07:25:40.161 2024-03-01 07:35:41.179 Move treatment rock open. Everything type become employee situation pre Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task. https://example.com/ 803 \N 444652 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.36144329857307 0 \N \N f 0 \N 1 116362855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438398 2024-02-25 16:00:04.618 2024-02-25 16:10:05.725 Development political left not every themselves factor crea \N https://example.com/ 21248 \N 438398 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.8256549741336 0 \N \N f 0 \N 1 103098447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431958 2024-02-19 22:27:29.384 2024-02-19 22:37:31.548 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone e https://example.com/ 3342 431804 431804.431958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54431425829103 0 \N \N f 0 \N 0 220512268 0 f f \N \N \N \N 431804 \N 0 0 \N \N f \N 444638 2024-03-01 07:00:50.485 2024-03-01 07:10:51.791 Simply even growth Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing i https://example.com/ 21514 \N 444638 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.99087026721298 0 \N \N f 0 \N 1 249895772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431813 2024-02-19 20:06:24.065 2024-02-19 20:16:26.4 Book it view should. Impact cold others be without. Fly coach window lette Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nDescribe modern fund https://example.com/ 20775 \N 431813 \N \N \N \N \N \N \N \N science \N ACTIVE \N 17.9533823143356 0 \N \N f 0 \N 0 176155657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431959 2024-02-19 22:28:05.406 2024-02-19 22:38:07.069 Finally and may second. Middle want artist Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat. https://example.com/ 16149 \N 431959 \N \N \N \N \N \N \N \N health \N ACTIVE \N 21.1505213867662 0 \N \N f 0 \N 0 98036852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444662 2024-03-01 08:04:48.92 2024-03-01 08:14:51.112 Stand red drop occur tell week sure worker. Skill t Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself https://example.com/ 8133 \N 444662 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.56569250873967 0 \N \N f 0 \N 1 245311302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431066 2024-02-19 17:25:49.396 2024-02-19 17:35:50.893 Realize store science for Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally https://example.com/ 13921 \N 431066 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.0272251420489 0 \N \N f 0 \N 0 224075951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431910 2024-02-19 21:44:53.739 2024-02-19 21:54:54.96 \N Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in ra https://example.com/ 18828 431872 431872.431910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59786880482721 0 \N \N f 0 \N 0 139080548 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 444619 2024-03-01 06:33:16.773 2024-03-01 06:43:17.829 Manager suffer she clearly wh Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nMoment smile cell cold road happ https://example.com/ 2338 \N 444619 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 7.81002657587798 0 \N \N f 0 \N 2 83165658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444940 2024-03-01 12:57:15.806 2024-03-01 13:07:17.412 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. https://example.com/ 10063 444365 444365.444940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7087919692662 0 \N \N f 0 \N 0 126572172 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 431969 2024-02-19 22:41:34.911 2024-02-19 22:51:35.828 \N Compare strategy affect threat stage approach patter https://example.com/ 19037 431965 431844.431965.431969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.05074161956 0 \N \N f 0 \N 0 139992395 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 431968 2024-02-19 22:40:19.483 2024-02-19 22:50:19.937 \N Before wrong success power prevent notice. Hard former stock. https://example.com/ 5387 430824 430824.431968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2872718386814 0 \N \N f 0 \N 0 170091929 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 431962 2024-02-19 22:34:30.143 2024-02-19 22:44:31.443 \N Run music mean unit. Above here blue evidence get health strategy. Line op https://example.com/ 1617 431574 430488.431574.431962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.4515425051289 0 \N \N f 0 \N 1 2222149 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 435424 2024-02-22 19:18:21.2 2024-02-22 19:28:22.398 \N Happen should somebody world so https://example.com/ 9833 434500 434500.435424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.916672246321 0 \N \N f 0 \N 0 103036459 0 f f \N \N \N \N 434500 \N 0 0 \N \N f \N 444656 2024-03-01 07:46:16.211 2024-03-01 07:56:17.556 Truth training network government behavior decade. Beyond sound grow throughout Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult https://example.com/ 13753 \N 444656 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.859620349276 0 \N \N f 0 \N 1 42426989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444647 2024-03-01 07:12:47.342 2024-03-01 07:22:48.881 Rich value involve they almost good. Camer Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil g https://example.com/ 12218 \N 444647 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 12.9479903228643 0 \N \N f 0 \N 0 243910854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430845 2024-02-19 15:22:11.801 2024-02-19 15:32:12.776 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond https://example.com/ 1307 430824 430824.430845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45533519706542 0 \N \N f 0 \N 0 125274253 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 444942 2024-03-01 12:58:08.456 2024-03-01 13:08:10.031 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. https://example.com/ 4118 444938 444739.444938.444942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.855310748473 0 \N \N f 0 \N 0 7705319 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444943 2024-03-01 12:59:02.392 2024-03-01 13:09:03.938 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite https://example.com/ 999 444941 444739.444941.444943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9698583752621 0 \N \N f 0 \N 0 111097805 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 431964 2024-02-19 22:35:43.669 2024-02-19 22:45:45.407 \N Agree such recognize fast various. Address anyon https://example.com/ 5806 431809 431809.431964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0359309369275 0 \N \N f 0 \N 0 227296546 0 f f \N \N \N \N 431809 \N 0 0 \N \N f \N 431574 2024-02-19 19:17:05.972 2024-02-19 19:27:07.768 \N Get executive stock move last. Find throw important tonight recent. Far professor different generation. Grow mi https://example.com/ 20251 430488 430488.431574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1671520244609 0 \N \N f 0 \N 3 177605476 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 435428 2024-02-22 19:21:06.383 2024-02-22 19:31:08.4 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit whic https://example.com/ 1237 435407 435128.435138.435407.435428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7953455197639 0 \N \N f 0 \N 0 88851970 0 f f \N \N \N \N 435128 \N 0 0 \N \N f \N 444496 2024-03-01 02:09:34.47 2024-03-01 02:19:35.601 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselv https://example.com/ 1628 444102 444102.444496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38866375677324 0 \N \N f 0 \N 0 42146023 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 437817 2024-02-25 00:57:31.819 2024-02-25 01:07:33.489 Simply even growth change government music. Seri Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nMethod same car buy side. Price order rest Congress data. Man relations https://example.com/ 1002 \N 437817 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.8489612686414 0 \N \N f 0 \N 5 150396596 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431983 2024-02-19 23:00:04.505 2024-02-19 23:10:06.756 Community seat tend position recent will. Las \N https://example.com/ 694 \N 431983 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.43404387207892 0 \N \N f 0 \N 1 110271008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444694 2024-03-01 09:50:47.499 2024-03-01 10:00:48.308 Live class artist pull nearly poor. Use vote religious. Later bad by st Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue. https://example.com/ 683 \N 444694 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 29.2363949457903 0 \N \N f 0 \N 0 146393692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430957 2024-02-19 16:43:37.528 2024-02-19 16:53:38.56 \N Detail economy still boy fine in series. Bring probably list stop still https://example.com/ 10638 430263 428318.428382.428674.429258.429725.430220.430236.430263.430957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93477584011144 0 \N \N f 0 \N 0 111191347 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 444696 2024-03-01 09:54:03.114 2024-03-01 10:04:04.34 Success against price. Resource end yeah s Black leg through occur possible century far. Part fly f https://example.com/ 19322 \N 444696 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.8325722597104 0 \N \N f 0 \N 2 112976747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431974 2024-02-19 22:49:07.329 2024-02-19 22:59:08.833 \N Billion deep other first financial sometimes. Successf https://example.com/ 21247 431925 430488.431296.431925.431974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9967921068026 0 \N \N f 0 \N 0 118766321 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 435435 2024-02-22 19:27:54.91 2024-02-22 19:37:56.732 \N Down item fund list company. Blue picture now her street history loss. Certainly betw https://example.com/ 18310 435336 433066.433088.433456.433557.433869.433905.435306.435336.435435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97776950409447 0 \N \N f 0 \N 0 122624364 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 436422 2024-02-23 17:04:38.564 2024-02-23 17:14:40.185 \N Condition door drive write. Firm https://example.com/ 19153 436231 436231.436422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4613245236685 0 \N \N f 0 \N 0 15468066 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 438221 2024-02-25 13:17:32.641 2024-02-25 13:27:34.911 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glas https://example.com/ 15556 438209 438209.438221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1279572994211 0 \N \N f 0 \N 2 219855683 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 444702 2024-03-01 10:00:04.926 2024-03-01 10:10:05.947 Begin kind newspaper game process fine democratic whom. Wonder heavy \N https://example.com/ 18470 \N 444702 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.5255680532686 0 \N \N f 0 \N 1 191779684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437611 2024-02-24 19:12:24.975 2024-02-24 19:22:26.307 Hit decade night. Ball myself benefit occu Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. https://example.com/ 20327 \N 437611 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 0.133401575148007 0 \N \N f 0 \N 7 164445358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444907 2024-03-01 12:20:43.491 2024-03-01 12:30:44.904 Decade tend week lig Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management co https://example.com/ 10719 \N 444907 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.350431274243 0 \N \N f 0 \N 10 121232283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438411 2024-02-25 16:13:04.185 2024-02-25 16:23:06.122 \N Probably agent catch computer difficult picture. Memory newspaper economy six https://example.com/ 16858 438065 438065.438411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6059217040026 0 \N \N f 0 \N 0 5430440 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 444953 2024-03-01 13:05:33.991 2024-03-01 13:15:35.502 \N Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nImprove most form final blood. Section ability pos https://example.com/ 17365 444896 444874.444896.444953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81359930422241 0 \N \N f 0 \N 0 15883755 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 444883 2024-03-01 12:04:44.579 2024-03-01 12:14:46.193 Decision certain voice where collection thus write. Friend mind ev Quickly build security. Thought structure like https://example.com/ 20190 \N 444883 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.4408396245372 0 \N \N f 0 \N 0 20925615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436393 2024-02-23 16:37:45.233 2024-02-23 16:47:46.883 \N Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option https://example.com/ 3396 436323 436323.436393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47109179794423 0 \N \N f 0 \N 0 60420250 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 431635 2024-02-19 19:33:11.597 2024-02-19 19:43:12.85 \N Run music mean unit. Above her https://example.com/ 9476 318487 318487.431635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9172905974844 0 \N \N f 0 \N 1 12812122 0 f f \N \N \N \N 318487 \N 0 0 \N \N f \N 442674 2024-02-28 20:37:41.604 2024-02-28 20:47:42.975 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone https://example.com/ 5776 442396 442313.442396.442674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4749908456828 0 \N \N f 0 \N 0 77876818 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 431979 2024-02-19 22:55:15.847 2024-02-19 23:05:17.171 \N Whose top property well serve national account. Himself b https://example.com/ 17682 431942 431918.431942.431979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32302832481928 0 \N \N f 0 \N 4 148230799 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 438257 2024-02-25 13:53:40.052 2024-02-25 14:03:42.109 \N Statement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congr https://example.com/ 19640 438093 438093.438257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3365120099624 0 \N \N f 0 \N 0 217663875 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438230 2024-02-25 13:25:56.534 2024-02-25 13:35:58.437 \N Race site manager blood. President perform under https://example.com/ 1802 438093 438093.438230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0679237544539 0 \N \N f 0 \N 0 226973553 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 444519 2024-03-01 03:08:04.855 2024-03-01 03:18:07.18 Because fear practice program New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction. https://example.com/ 2022 \N 444519 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 1.46910207399273 0 \N \N f 0 \N 2 249934185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438384 2024-02-25 15:50:32.566 2024-02-25 16:00:33.679 \N Baby body day citizen change. Present identif https://example.com/ 618 438272 438232.438235.438240.438254.438262.438267.438272.438384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5312349957269 0 \N \N f 0 \N 0 21689240 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 438262 2024-02-25 13:56:18.236 2024-02-25 14:06:20.345 \N Matter training experience. Election carry thing them form https://example.com/ 8569 438254 438232.438235.438240.438254.438262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6667849151722 0 \N \N f 0 \N 3 228103341 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 438240 2024-02-25 13:33:36.9 2024-02-25 13:43:38.859 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Ei https://example.com/ 17001 438235 438232.438235.438240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7193549663932 0 \N \N f 0 \N 5 190181474 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 438272 2024-02-25 14:03:35.992 2024-02-25 14:13:37.757 \N More recently quality despite ball good th https://example.com/ 19837 438267 438232.438235.438240.438254.438262.438267.438272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6160735732647 0 \N \N f 0 \N 1 130593255 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 438267 2024-02-25 13:57:40.702 2024-02-25 14:07:42.125 \N Yeah word become defense role yourself suddenly. Draw relationship drea https://example.com/ 20998 438262 438232.438235.438240.438254.438262.438267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.778585762078 0 \N \N f 0 \N 2 182839061 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 438235 2024-02-25 13:29:03.148 2024-02-25 13:39:04.53 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nRule focus detail financial dog. Her lawyer draw identify. Fall lo https://example.com/ 21469 438232 438232.438235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5568655164201 0 \N \N f 0 \N 6 76862419 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 438254 2024-02-25 13:50:12.281 2024-02-25 14:00:14.345 \N Grow challenge small bill somet https://example.com/ 17050 438240 438232.438235.438240.438254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9887345461373 0 \N \N f 0 \N 4 118922196 0 f f \N \N \N \N 438232 \N 0 0 \N \N f \N 431971 2024-02-19 22:43:51.058 2024-02-19 22:53:52.9 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect recor https://example.com/ 20087 431574 430488.431574.431971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4503921571365 0 \N \N f 0 \N 0 176385640 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 438422 2024-02-25 16:34:29.751 2024-02-25 16:44:31.211 Ten answer natural star research black system three. Mention Yard someon https://example.com/ 9482 \N 438422 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 7.91681004711318 0 \N \N f 0 \N 0 225825812 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444959 2024-03-01 13:12:40.327 2024-03-01 13:22:41.841 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nNetwork interview indeed whet https://example.com/ 9177 444874 444874.444959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9141711169532 0 \N \N f 0 \N 0 55589663 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 431942 2024-02-19 22:10:52.51 2024-02-19 22:20:54.349 \N Community region she TV since sometimes know. Smal https://example.com/ 7998 431918 431918.431942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1713720120599 0 \N \N f 0 \N 5 217950047 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 438412 2024-02-25 16:19:06.428 2024-02-25 16:29:07.946 \N Leader partner among describe uni https://example.com/ 20525 438303 438303.438412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9788465874876 0 \N \N f 0 \N 0 166531397 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 431925 2024-02-19 21:57:39.269 2024-02-19 22:07:40.922 \N Race civil today. Brother https://example.com/ 17817 431296 430488.431296.431925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5942883656872 0 \N \N f 0 \N 1 48283558 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431711 2024-02-19 19:40:16.08 2024-02-19 19:50:18.121 \N Treat central body toward. Cel https://example.com/ 5557 298422 298422.431711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3811636831278 0 \N \N f 0 \N 0 22634279 0 f f \N \N \N \N 298422 \N 0 0 \N \N f \N 438406 2024-02-25 16:08:39.7 2024-02-25 16:18:41.741 Community least media interest. Senior yet later always. This direction pe Watch tell middle above. https://example.com/ 21614 \N 438406 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.5897802595921 0 \N \N f 0 \N 0 114644276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431988 2024-02-19 23:07:28.459 2024-02-19 23:17:30.595 \N Voice sign college quality. https://example.com/ 19987 431987 431987.431988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7099292280944 0 \N \N f 0 \N 0 193921009 0 f f \N \N \N \N 431987 \N 0 0 \N \N f \N 431973 2024-02-19 22:48:22.844 2024-02-19 22:58:24.505 \N Them bag because parent see. Young enough opportunity necessary https://example.com/ 16660 431962 430488.431574.431962.431973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7130431678036 0 \N \N f 0 \N 0 182011488 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431984 2024-02-19 23:00:05.042 2024-02-19 23:00:10.251 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade https://example.com/ 16347 431983 431983.431984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86160608564795 0 \N \N f 0 \N 0 140962613 0 f f \N \N \N \N 431983 \N 0 0 \N \N f \N 431987 2024-02-19 23:06:46.494 2024-02-19 23:16:48.577 Item attention child take film late. Still next free list. Artist seven one reco Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agr https://example.com/ 17513 \N 431987 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 13.0810572016776 0 \N \N f 0 \N 1 109004612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430981 2024-02-19 17:00:45.786 2024-02-19 17:10:47.04 \N Republican begin audience guy get expect t https://example.com/ 9982 430626 430626.430981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21484737353491 0 \N \N f 0 \N 0 187521069 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 431593 2024-02-19 19:26:31.525 2024-02-19 19:36:33.166 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack https://example.com/ 19533 431401 431401.431593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65438354223127 0 \N \N f 0 \N 0 26895570 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 438010 2024-02-25 08:14:08.613 2024-02-25 08:24:10.311 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but https://example.com/ 16667 437936 437723.437936.438010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4115552779013 0 \N \N f 0 \N 0 115132279 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437421 2024-02-24 16:12:37.504 2024-02-24 16:22:39.504 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule ta https://example.com/ 12097 436977 436977.437421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40335139089914 0 \N \N f 0 \N 3 35917593 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 438348 2024-02-25 15:07:16.683 2024-02-25 15:17:18.765 \N Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thou https://example.com/ 21588 437936 437723.437936.438348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92267981869995 0 \N \N f 0 \N 0 163951283 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432001 2024-02-19 23:24:13.145 2024-02-19 23:34:15.023 \N Surface field himself similar. Give fast past use sometimes. By get c https://example.com/ 20655 431800 431800.432001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0831225359737 0 \N \N f 0 \N 4 215950448 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 437936 2024-02-25 04:02:10.347 2024-02-25 04:12:12.193 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge a https://example.com/ 19096 437723 437723.437936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5110921714581 0 \N \N f 0 \N 2 183727519 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 431991 2024-02-19 23:09:07.564 2024-02-19 23:19:08.842 \N Medical view similar along https://example.com/ 4574 431975 431844.431975.431991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7996597200088 0 \N \N f 0 \N 0 185971628 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 444960 2024-03-01 13:14:00.516 2024-03-01 13:24:01.265 \N Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including https://example.com/ 18225 444957 444930.444957.444960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3211223403778 0 \N \N f 0 \N 0 85230214 0 f f \N \N \N \N 444930 \N 0 0 \N \N f \N 437646 2024-02-24 20:02:21.407 2024-02-24 20:12:22.904 Seven nice notice wife they couple. Suffer to Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already https://example.com/ 7983 \N 437646 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 16.5919656884799 0 \N \N f 0 \N 5 243168676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431892 2024-02-19 21:30:10.22 2024-02-19 21:40:12.152 \N Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nMight also https://example.com/ 9529 431795 431102.431795.431892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.68362015082546 0 \N \N f 0 \N 2 39908894 0 f f \N \N \N \N 431102 \N 0 0 \N \N f \N 431976 2024-02-19 22:51:26.752 2024-02-19 23:01:28.275 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nWest tend alone prepare build https://example.com/ 1478 431892 431102.431795.431892.431976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.83906571425607 0 \N \N f 0 \N 1 33465415 0 f f \N \N \N \N 431102 \N 0 0 \N \N f \N 438290 2024-02-25 14:16:21.061 2024-02-25 14:26:21.884 \N Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nMaybe remain h https://example.com/ 5557 437433 436977.437421.437426.437433.438290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2553239589728 0 \N \N f 0 \N 0 185050037 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 433626 2024-02-21 11:28:07.516 2024-02-21 11:38:08.283 \N Between remember watch image save win determine. Each reduce usually ce https://example.com/ 803 433622 433618.433622.433626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.14981923211333 0 \N \N f 0 \N 1 55469528 0 f f \N \N \N \N 433618 \N 0 0 \N \N f \N 437433 2024-02-24 16:23:47.907 2024-02-24 16:33:49.722 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. W https://example.com/ 2224 437426 436977.437421.437426.437433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0270439496788 0 \N \N f 0 \N 1 222387944 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 432036 2024-02-19 23:53:55.659 2024-02-20 00:03:56.981 \N Improve different identify only https://example.com/ 15978 431975 431844.431975.432036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78807032056737 0 \N \N f 0 \N 0 149547102 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432051 2024-02-20 00:13:04.816 2024-02-20 00:23:06.409 \N Reflect fill team movie draw red group. Congress without main. Inside ago think https://example.com/ 17984 431146 430770.430974.431146.432051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5802047428999 0 \N \N f 0 \N 0 161745229 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 431992 2024-02-19 23:09:41.531 2024-02-19 23:19:43.547 \N Know son future suggest paper pers https://example.com/ 6361 431976 431102.431795.431892.431976.431992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.71302557827357 0 \N \N f 0 \N 0 204429226 0 f f \N \N \N \N 431102 \N 0 0 \N \N f \N 444744 2024-03-01 10:42:03.652 2024-03-01 10:52:05.234 \N Model late institution once force rock. Range media reflect argue under call drop https://example.com/ 18209 444695 444695.444744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5329338305338 0 \N \N f 0 \N 1 108565058 0 f f \N \N \N \N 444695 \N 0 0 \N \N f \N 430895 2024-02-19 15:59:56.066 2024-02-19 16:09:57.04 \N Lead between race contain politics. Base behavior suggest image informa https://example.com/ 20084 430892 430892.430895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2254809320683 0 \N \N f 0 \N 5 135152904 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431996 2024-02-19 23:18:50.675 2024-02-19 23:28:53.447 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your n https://example.com/ 16145 404046 404046.431996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7203917094114 0 \N \N f 0 \N 0 45103498 0 f f \N \N \N \N 404046 \N 0 0 \N \N f \N 431999 2024-02-19 23:21:01.366 2024-02-19 23:31:03.242 \N Pretty street rather speak unit against keep. Else su https://example.com/ 13174 430895 430892.430895.431999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5667475301254 0 \N \N f 0 \N 0 169232330 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431393 2024-02-19 18:50:54.385 2024-02-19 19:00:55.452 Per billion school mind. Success hard result worry. Money serious cu Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term. https://example.com/ 21091 \N 431393 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.1491175151389 0 \N \N f 0 \N 3 4746874 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444682 2024-03-01 09:04:28.054 2024-03-01 09:14:29.722 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder lik https://example.com/ 19735 444471 444471.444682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7391700505782 0 \N \N f 0 \N 0 230440599 0 f f \N \N \N \N 444471 \N 0 0 \N \N f \N 438420 2024-02-25 16:32:45.578 2024-02-25 16:42:47.03 Peace then kid under. Exactly nothing present notice on add base. Policy low Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power. https://example.com/ 21444 \N 438420 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4562033372064 0 \N \N f 0 \N 0 18959282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444471 2024-03-01 01:13:55.102 2024-03-01 01:23:57.37 With establish effort able Republican west. Lat We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nScientist machin https://example.com/ 14857 \N 444471 \N \N \N \N \N \N \N \N health \N ACTIVE \N 14.1089412691275 0 \N \N f 0 \N 5 13718968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435448 2024-02-22 19:39:28.574 2024-02-22 19:49:30.604 \N Decade acti https://example.com/ 19910 435445 435046.435132.435445.435448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62251610585141 0 \N \N f 0 \N 0 106902617 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435462 2024-02-22 19:51:14.89 2024-02-22 20:01:17.373 \N Each any growth human seek https://example.com/ 652 435237 435136.435237.435462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9591665650048 0 \N \N f 0 \N 0 66629205 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 431565 2024-02-19 19:12:30.787 2024-02-19 19:22:31.846 \N Various discussion light page war your have. Get generation market throu https://example.com/ 18188 430460 429764.430460.431565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0063170869641 0 \N \N f 0 \N 0 6952395 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 444746 2024-03-01 10:42:42.106 2024-03-01 10:52:42.883 Take carry discuss possible. Little Mrs subject Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none. https://example.com/ 640 \N 444746 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 8.42500154090587 0 \N \N f 0 \N 2 204319975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441661 2024-02-28 10:38:12.538 2024-02-28 10:48:14.665 Article discussion court site share past. Hot charac Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back ne https://example.com/ 18865 \N 441661 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 14.9226740562882 0 \N \N f 0 \N 8 116795579 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432007 2024-02-19 23:31:08.651 2024-02-19 23:41:11.508 Compare strategy affect threat stage approach pattern. Time onto may Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month. https://example.com/ 13798 \N 432007 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 19.2473015658768 0 \N \N f 0 \N 1 125889219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444878 2024-03-01 12:01:37.046 2024-03-01 12:11:38.069 \N Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nEnd and certainly language lawyer her sort. Attention rate turn https://example.com/ 9354 444561 444561.444878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9752821349102 0 \N \N f 0 \N 0 147735611 0 f f \N \N \N \N 444561 \N 0 0 \N \N f \N 435459 2024-02-22 19:48:00.09 2024-02-22 19:58:01.331 \N By evening job should nature really. Cut black mother financial https://example.com/ 8541 435227 435227.435459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8151535123463 0 \N \N f 0 \N 0 161817350 0 f f \N \N \N \N 435227 \N 0 0 \N \N f \N 435451 2024-02-22 19:43:30.006 2024-02-22 19:53:31.041 \N Individual low nice c https://example.com/ 2620 430549 430549.435451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13856291363467 0 \N \N f 0 \N 0 189647083 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 432462 2024-02-20 13:23:58.963 2024-02-20 13:34:00.464 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount c https://example.com/ 889 431384 413007.430173.430605.430985.431110.431382.431384.432462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7708357736691 0 \N \N f 0 \N 1 65437484 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 435469 2024-02-22 20:03:08.1 2024-02-22 20:13:08.935 Often culture through program Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car. https://example.com/ 19961 \N 435469 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.70757102159753 0 \N \N f 0 \N 0 158627217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435455 2024-02-22 19:45:18.198 2024-02-22 19:55:19.297 House west amount. Again high already himself answer type. Go back Mr. Pattern w Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read. https://example.com/ 16410 \N 435455 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.97225950586463 0 \N \N f 0 \N 1 156388877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444970 2024-03-01 13:30:04.949 2024-03-01 13:40:06.358 \N Oil fast organization discussion boa https://example.com/ 4323 443794 443794.444970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.631782237125 0 \N \N f 0 \N 0 38120061 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 432011 2024-02-19 23:34:54.554 2024-02-19 23:44:57.227 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge https://example.com/ 18368 431871 430488.430959.431871.432011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1928136770407 0 \N \N f 0 \N 0 112205263 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444561 2024-03-01 04:47:26.365 2024-03-01 04:57:27.803 Edge card save. Whether manager always however scene mov Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nTake discuss nature then break spring student. Five world about https://example.com/ 18678 \N 444561 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 25.6667146114565 0 \N \N f 0 \N 4 107802630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432000 2024-02-19 23:21:58.659 2024-02-19 23:32:01.089 \N Adult carry training two campaig https://example.com/ 15282 429358 429358.432000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05815717734857 0 \N \N f 0 \N 0 57734172 0 f f \N \N \N \N 429358 \N 0 0 \N \N f \N 432019 2024-02-19 23:41:39.943 2024-02-19 23:51:41.243 \N Moment or possible there month. Myself hit name exist team herself training mention. Pla https://example.com/ 20198 431909 431909.432019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6329974448018 0 \N \N f 0 \N 0 19875215 0 f f \N \N \N \N 431909 \N 0 0 \N \N f \N 444979 2024-03-01 13:35:32.252 2024-03-01 13:45:34.019 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education sk https://example.com/ 16848 444961 444950.444961.444979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9985937501717 0 \N \N f 0 \N 0 72464741 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 441937 2024-02-28 13:44:44.294 2024-02-28 13:54:45.899 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM diffi https://example.com/ 18626 441934 441661.441934.441937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7269285210136 0 \N \N f 0 \N 6 7383613 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 431621 2024-02-19 19:32:36.291 2024-02-19 19:42:37.453 \N Take throw line right your tri https://example.com/ 20137 322191 322191.431621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3666442531552 0 \N \N f 0 \N 1 216909575 0 f f \N \N \N \N 322191 \N 0 0 \N \N f \N 432013 2024-02-19 23:37:37.403 2024-02-19 23:47:39.022 \N Glass her remember exist https://example.com/ 12024 432009 431985.432005.432009.432013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.721576918268312 0 \N \N f 0 \N 1 190503707 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 442014 2024-02-28 14:18:14.521 2024-02-28 14:28:15.379 \N Image reality https://example.com/ 14122 442000 441661.441934.441937.442000.442014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.176930093650292 0 \N \N f 0 \N 1 11815944 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 430959 2024-02-19 16:45:57.755 2024-02-19 16:55:58.906 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family poss https://example.com/ 8508 430488 430488.430959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9504463748525 0 \N \N f 0 \N 2 76399414 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431871 2024-02-19 21:08:57.567 2024-02-19 21:18:58.812 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal https://example.com/ 20858 430959 430488.430959.431871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2821363868379 0 \N \N f 0 \N 1 205053562 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 438380 2024-02-25 15:43:13.444 2024-02-25 15:53:14.867 Common loss oil be. Wrong water cove Trade guy water between. Whom structure design. Item gi https://example.com/ 14791 \N 438380 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 17.5941084950369 0 \N \N f 0 \N 0 63584425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432017 2024-02-19 23:40:05.488 2024-02-19 23:50:07.424 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nToo very admit general w https://example.com/ 2789 240442 240442.432017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6530199381211 0 \N \N f 0 \N 0 46739702 0 f f \N \N \N \N 240442 \N 0 0 \N \N f \N 438820 2024-02-26 02:36:16.688 2024-02-26 02:46:19.047 \N Reflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nHow never cut grow benefit. Dinner environmental https://example.com/ 20602 438737 438737.438820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3937641835331 0 \N \N f 0 \N 3 231190909 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 442529 2024-02-28 18:12:32.554 2024-02-28 18:22:33.607 Many soldier role. Far buy able idea presi Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father. https://example.com/ 18714 \N 442529 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 27.3847835414228 0 \N \N f 0 \N 3 123491980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432015 2024-02-19 23:37:59.865 2024-02-19 23:48:01.222 \N Somebody head others contain moment. Which our old o https://example.com/ 11038 431823 430892.431823.432015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30783521032377 0 \N \N f 0 \N 2 54860440 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 444265 2024-02-29 20:52:17.298 2024-02-29 21:02:19.6 \N Back spend task real. Relationship offer computer. Floor tend so https://example.com/ 7983 444168 444168.444265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.62118975884 0 \N \N f 0 \N 1 36462065 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438410 2024-02-25 16:12:38.581 2024-02-25 16:22:39.85 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. https://example.com/ 5003 438408 438209.438211.438261.438408.438410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7981476687755 0 \N \N f 0 \N 5 156257134 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 443794 2024-02-29 16:30:22.943 2024-02-29 16:40:24.112 May another inter Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training https://example.com/ 16809 \N 443794 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.559204528410007 0 \N \N f 0 \N 13 31746792 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444790 2024-03-01 11:05:57.647 2024-03-01 11:15:58.767 Newspaper wall begin over serious hand. Remember great meet theory local for Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce. https://example.com/ 19502 \N 444790 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5673320008521 0 \N \N f 0 \N 1 179366037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431823 2024-02-19 20:17:40.806 2024-02-19 20:27:42.342 \N Hotel remember debate strategy. Discussion sell card. B https://example.com/ 1000 430892 430892.431823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.557501409769 0 \N \N f 0 \N 3 174306155 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 435464 2024-02-22 19:54:34.404 2024-02-22 20:04:36.368 \N Yourself debate term during https://example.com/ 19852 434707 434707.435464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0516503872496 0 \N \N f 0 \N 0 106457557 0 f f \N \N \N \N 434707 \N 0 0 \N \N f \N 438051 2024-02-25 09:45:24.649 2024-02-25 09:55:26.229 Than level lawyer mouth they put. Model apply like ready. Impact direction sen Type door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nHappy strong D https://example.com/ 15617 \N 438051 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6482204757422 0 \N \N f 0 \N 2 132270744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444695 2024-03-01 09:52:37.356 2024-03-01 10:02:39.084 Range happen field economic. Deal scien Today area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn. https://example.com/ 19263 \N 444695 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.46341359699014 0 \N \N f 0 \N 2 232815264 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432010 2024-02-19 23:34:00.218 2024-02-19 23:44:01.68 \N Never whose degree. Investme https://example.com/ 17639 431621 322191.431621.432010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6012747216451 0 \N \N f 0 \N 0 11151 0 f f \N \N \N \N 322191 \N 0 0 \N \N f \N 438429 2024-02-25 16:41:50.668 2024-02-25 16:51:52.298 \N Turn where describe while kitchen special. Today https://example.com/ 19583 438379 438093.438133.438148.438167.438274.438369.438379.438429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.72722634152955 0 \N \N f 0 \N 0 213158843 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438419 2024-02-25 16:28:20.849 2024-02-25 16:38:22.089 \N Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cov https://example.com/ 11515 437880 437723.437880.438419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50640415961467 0 \N \N f 0 \N 0 223774879 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438428 2024-02-25 16:39:54.555 2024-02-25 16:49:56.481 \N Political official world difference. Whole any small. Board change anyone worker study. Realize point strong ho https://example.com/ 3411 438202 438202.438428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7146390224496 0 \N \N f 0 \N 0 203370608 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 432027 2024-02-19 23:46:05.8 2024-02-19 23:56:07.198 \N Operation against song book rise hard. https://example.com/ 14990 431990 431187.431990.432027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8970730506113 0 \N \N f 0 \N 0 89126585 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 432006 2024-02-19 23:29:58.866 2024-02-19 23:40:00.796 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more https://example.com/ 4167 431187 431187.432006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.6733401232614 0 \N \N f 0 \N 1 187475546 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 432028 2024-02-19 23:46:23.941 2024-02-19 23:56:25.325 \N Become popular lo https://example.com/ 19105 432005 431985.432005.432028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56561512027496 0 \N \N f 0 \N 0 56129846 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 432016 2024-02-19 23:39:33.224 2024-02-19 23:49:35.139 \N Such yourself g https://example.com/ 19469 432013 431985.432005.432009.432013.432016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37600862451033 0 \N \N f 0 \N 0 83261647 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 431990 2024-02-19 23:08:15.098 2024-02-19 23:18:16.821 \N Everyone usually memory amount help be https://example.com/ 8269 431187 431187.431990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1620147336991 0 \N \N f 0 \N 1 61343422 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 431595 2024-02-19 19:28:51.906 2024-02-19 19:38:52.995 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power https://example.com/ 11275 431590 431161.431590.431595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.261434671411 0 \N \N f 0 \N 0 118339348 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 438407 2024-02-25 16:09:12.497 2024-02-25 16:19:13.76 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Real https://example.com/ 18357 438369 438093.438133.438148.438167.438274.438369.438407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1070001034164 0 \N \N f 0 \N 1 131271720 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438396 2024-02-25 15:59:43.109 2024-02-25 16:09:43.875 \N Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat https://example.com/ 14260 438376 438317.438376.438396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.68731466332267 0 \N \N f 0 \N 0 20220215 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 438376 2024-02-25 15:40:17.479 2024-02-25 15:50:19.439 \N Experience base structure our question reach investment. To several https://example.com/ 18556 438317 438317.438376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1423028968401 0 \N \N f 0 \N 2 57771896 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 436418 2024-02-23 17:03:36.644 2024-02-23 17:13:38.137 \N Oil fast organization discussion https://example.com/ 5757 436344 436344.436418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8604102090579 0 \N \N f 0 \N 0 21666831 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 436411 2024-02-23 16:52:38.2 2024-02-23 17:02:39.394 \N News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Envi https://example.com/ 1208 436404 436273.436391.436398.436401.436404.436411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8223048225031 0 \N \N f 0 \N 0 49187200 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 444978 2024-03-01 13:35:18.7 2024-03-01 13:45:19.784 \N Pattern fear term. Second always control type movie. Girl at mo https://example.com/ 2156 444848 444848.444978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8336189521367 0 \N \N f 0 \N 0 187644774 0 f f \N \N \N \N 444848 \N 0 0 \N \N f \N 432024 2024-02-19 23:44:46.344 2024-02-19 23:54:47.506 \N Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nHealth catch towa https://example.com/ 19303 432006 431187.432006.432024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.04371964566144 0 \N \N f 0 \N 0 213654162 0 f f \N \N \N \N 431187 \N 0 0 \N \N f \N 436419 2024-02-23 17:03:57.3 2024-02-23 17:13:58.359 \N Very maybe current. So source work lawyer set guess. Individu https://example.com/ 882 436416 435922.436416.436419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3452038437486 0 \N \N f 0 \N 0 240839468 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 438436 2024-02-25 16:51:31.712 2024-02-25 17:01:33.929 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nGarden serve these speak manager. Idea put h https://example.com/ 18678 438325 438325.438436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0314673881734 0 \N \N f 0 \N 0 44259493 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 431893 2024-02-19 21:30:31.85 2024-02-19 21:40:32.946 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east incl https://example.com/ 6687 431882 431844.431864.431882.431893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0423785118972 0 \N \N f 0 \N 0 46939547 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 434935 2024-02-22 13:05:46.328 2024-02-22 13:15:48.72 \N Race report base really very after. Focus red https://example.com/ 21239 434751 434751.434935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.17985020373829 0 \N \N f 0 \N 0 22615535 0 f f \N \N \N \N 434751 \N 0 0 \N \N f \N 435160 2024-02-22 16:15:13.786 2024-02-22 16:25:15.083 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need t https://example.com/ 18659 434410 434410.435160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.66496167443866 0 \N \N f 0 \N 0 203818245 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 438425 2024-02-25 16:37:37.022 2024-02-25 16:47:38.109 \N Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nExperience base structure our question r https://example.com/ 18528 438376 438317.438376.438425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7552310710122 0 \N \N f 0 \N 0 39217453 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 435483 2024-02-22 20:26:59.307 2024-02-22 20:37:00.847 \N Blood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public add https://example.com/ 21374 435217 435217.435483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9711733153766 0 \N \N f 0 \N 0 183132745 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 432032 2024-02-19 23:51:37.285 2024-02-20 00:01:39.066 \N Describe radio value until fund sit beh https://example.com/ 1438 431844 431844.432032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78301789263951 0 \N \N f 0 \N 0 159974792 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432009 2024-02-19 23:33:42.014 2024-02-19 23:43:43.621 \N Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fac https://example.com/ 10016 432005 431985.432005.432009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.823123404059807 0 \N \N f 0 \N 2 210016629 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 432005 2024-02-19 23:29:34.887 2024-02-19 23:39:37.37 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we https://example.com/ 4624 431985 431985.432005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4741894970173 0 \N \N f 0 \N 6 181188795 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 444961 2024-03-01 13:16:16.876 2024-03-01 13:26:18.191 \N Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher https://example.com/ 5171 444950 444950.444961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0670847757462 0 \N \N f 0 \N 2 122774328 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 438431 2024-02-25 16:43:00.124 2024-02-25 16:53:01.597 \N Community region she TV since sometimes know. Small water want same anyone. Vote m https://example.com/ 21556 438407 438093.438133.438148.438167.438274.438369.438407.438431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30868467096543 0 \N \N f 0 \N 0 42034782 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 431882 2024-02-19 21:25:49.249 2024-02-19 21:35:50.75 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem https://example.com/ 5661 431864 431844.431864.431882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.53832014454688 0 \N \N f 0 \N 1 94459408 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 437615 2024-02-24 19:15:28.706 2024-02-24 19:25:30.75 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nThem its apply task the off ability. Song determine entire answer plan four https://example.com/ 17552 437587 437583.437587.437615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8974082652344 0 \N \N f 0 \N 0 68383894 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 439808 2024-02-26 19:33:40.139 2024-02-26 19:43:41.439 \N Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nOccur power prevent become issue forwar https://example.com/ 4259 439801 435746.435760.439801.439808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.430017412566 0 \N \N f 0 \N 5 95731634 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 435746 2024-02-23 01:31:12.968 2024-02-23 01:41:14.38 Key group certainly little spring. Today form Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural https://example.com/ 9177 \N 435746 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 29.8150320094458 0 \N \N f 0 \N 19 87127574 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438124 2024-02-25 11:30:49.95 2024-02-25 11:40:50.764 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nIn grow start way president as compare. Away perform law https://example.com/ 14990 437760 437723.437752.437760.438124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2601908937084 0 \N \N f 0 \N 0 74464882 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432021 2024-02-19 23:43:00.392 2024-02-19 23:53:01.523 \N Political https://example.com/ 19533 431978 431844.431978.432021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1176431383513 0 \N \N f 0 \N 0 41852576 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 436438 2024-02-23 17:15:46.52 2024-02-23 17:25:47.28 \N Describe radio value until fund sit behind. Mrs exist impor https://example.com/ 18828 436413 436413.436438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3135337948253 0 \N \N f 0 \N 0 27102078 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 432035 2024-02-19 23:53:24.063 2024-02-20 00:03:25.469 \N Ability ability arrive age movie country. Draw https://example.com/ 18784 431884 431844.431858.431884.432035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85060698918478 0 \N \N f 0 \N 0 186858001 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 431884 2024-02-19 21:26:41.742 2024-02-19 21:36:42.681 \N Reality four attention. Whose each design pull that wall work. Example together hold star. W https://example.com/ 9551 431858 431844.431858.431884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1769394728934 0 \N \N f 0 \N 1 92764588 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 431858 2024-02-19 20:55:49.436 2024-02-19 21:05:50.57 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as your https://example.com/ 8376 431844 431844.431858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32759957088726 0 \N \N f 0 \N 2 201438790 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 439801 2024-02-26 19:29:49.065 2024-02-26 19:39:49.932 \N Might also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role lead https://example.com/ 14385 435760 435746.435760.439801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.97038872939623 0 \N \N f 0 \N 6 57213097 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 431978 2024-02-19 22:53:52.484 2024-02-19 23:03:54.186 \N Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could https://example.com/ 14122 431844 431844.431978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6214480316308 0 \N \N f 0 \N 1 191502124 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432613 2024-02-20 15:41:39.346 2024-02-20 15:51:40.763 \N Specific child accordin https://example.com/ 19777 432246 432211.432246.432613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6449409877106 0 \N \N f 0 \N 0 27158801 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 438192 2024-02-25 12:48:10.191 2024-02-25 12:58:11.789 Guy help book. Senior activity environment. P Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform. https://example.com/ 20108 \N 438192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.368585743394121 0 \N \N f 0 \N 0 207156460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437233 2024-02-24 14:16:06.514 2024-02-24 14:26:07.761 Such house management. Bed d Parent control wide song section few. Region one keep importan https://example.com/ 998 \N 437233 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.7327681927116 0 \N \N f 0 \N 48 247129670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437465 2024-02-24 16:54:33.272 2024-02-24 17:18:04.126 \N Face opportunity ac https://example.com/ 11789 437447 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6306586137844 0 \N \N f 0 \N 22 41675911 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 432145 2024-02-20 03:26:55.46 2024-02-20 03:36:56.864 \N Toward position themselves news unit. Manage go century budget light issue participant. I https://example.com/ 2952 432003 432003.432145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2243116328978 0 \N \N f 0 \N 0 158201393 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 431187 2024-02-19 18:14:36.085 2024-02-19 18:24:37.457 Such among bank choice themselves. Matt War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political https://example.com/ 4624 \N 431187 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 5.68729607449093 0 \N \N f 0 \N 8 131834095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432040 2024-02-19 23:57:29.701 2024-02-20 00:07:31.372 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection https://example.com/ 20117 431242 431242.432040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2038172020382 0 \N \N f 0 \N 0 183533059 0 f f \N \N \N \N 431242 \N 0 0 \N \N f \N 432039 2024-02-19 23:55:35.306 2024-02-20 00:05:37.462 \N Plan really necessary boy a consider. Attorney suffer https://example.com/ 19930 432022 431844.432022.432039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3107879386383 0 \N \N f 0 \N 0 211060011 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 444977 2024-03-01 13:35:14.879 2024-03-01 13:45:15.709 \N Article discussion court site sh https://example.com/ 11609 444950 444950.444977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93558747515436 0 \N \N f 0 \N 0 158047740 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 431909 2024-02-19 21:41:37.262 2024-02-19 21:51:38.722 Always friend price benefit. Ref Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection communi https://example.com/ 4570 \N 431909 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 26.4274663643902 0 \N \N f 0 \N 1 65404429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432038 2024-02-19 23:55:22.007 2024-02-20 00:05:23.208 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. My https://example.com/ 7978 431862 431862.432038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0535401666004 0 \N \N f 0 \N 0 54408821 0 f f \N \N \N \N 431862 \N 0 0 \N \N f \N 437538 2024-02-24 17:46:03.731 2024-02-24 17:56:06.214 \N Success against price. Resource end yeah step bit sup https://example.com/ 19633 437521 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9440662440913 0 \N \N f 0 \N 9 142040969 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 431242 2024-02-19 18:19:42.412 2024-02-19 18:29:43.417 Best affect mind former history. Likely half situation wife order. Human time Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple. https://example.com/ 19153 \N 431242 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.0146879201229 0 \N \N f 0 \N 2 30326691 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437593 2024-02-24 18:55:34.106 2024-02-24 19:05:35.521 \N Right side resource get. Result south firm special. Popular it operation run. First national trouble. En https://example.com/ 20153 437574 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574.437593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5191115507917 0 \N \N f 0 \N 2 28472168 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 440494 2024-02-27 12:12:25.626 2024-02-27 12:22:27.474 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nIdentify https://example.com/ 12188 440422 440422.440494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.102984662517 0 \N \N f 0 \N 0 69089217 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 437506 2024-02-24 17:20:55.178 2024-02-24 17:30:55.813 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nMaterial focus experience picture. Future stil https://example.com/ 21556 437497 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1307680910237 0 \N \N f 0 \N 13 4757916 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437521 2024-02-24 17:34:09.489 2024-02-24 17:44:10.853 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national gr https://example.com/ 13406 437513 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9762022453476 0 \N \N f 0 \N 10 149995098 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 435510 2024-02-22 20:52:42.529 2024-02-22 21:02:43.842 Affect major fire admit technology bad add. Sport surface police prevent data Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose. https://example.com/ 20251 \N 435510 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.2176737057544 0 \N \N f 0 \N 0 240449959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437312 2024-02-24 14:51:52.474 2024-02-24 15:01:54.512 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country https://example.com/ 19043 437308 436752.437184.437271.437292.437293.437308.437312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2550688129997 0 \N \N f 0 \N 28 133431835 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437632 2024-02-24 19:29:49.941 2024-02-24 19:39:50.876 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hund https://example.com/ 17046 437628 437583.437617.437628.437632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2722301017103 0 \N \N f 0 \N 1 24513229 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 437447 2024-02-24 16:37:08.769 2024-02-24 16:47:09.97 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare am https://example.com/ 15560 437432 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6634173610229 0 \N \N f 0 \N 23 75526929 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437432 2024-02-24 16:23:43.259 2024-02-24 16:33:46.086 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response s https://example.com/ 20642 437321 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5639642488497 0 \N \N f 0 \N 24 11399273 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437317 2024-02-24 14:56:09.579 2024-02-24 15:06:10.9 \N Month explain matter south. Thus car occur bad. Gr https://example.com/ 12516 437316 436752.437184.437271.437292.437293.437308.437312.437316.437317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0130731068671 0 \N \N f 0 \N 26 196252838 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437316 2024-02-24 14:55:28.043 2024-02-24 15:05:29.072 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Comput https://example.com/ 986 437312 436752.437184.437271.437292.437293.437308.437312.437316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4414662116688 0 \N \N f 0 \N 27 165258699 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437321 2024-02-24 14:59:00.801 2024-02-24 15:09:02.163 \N Produce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond ex https://example.com/ 2749 437317 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2002144187611 0 \N \N f 0 \N 25 73823057 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437738 2024-02-24 22:47:17.618 2024-02-24 22:57:18.777 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several so https://example.com/ 2639 437723 437723.437738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8027070652713 0 \N \N f 0 \N 14 27607164 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438030 2024-02-25 08:51:27.523 2024-02-25 09:01:29.126 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street. https://example.com/ 16816 437966 437966.438030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75886385842314 0 \N \N f 0 \N 2 60194806 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 431894 2024-02-19 21:30:32.293 2024-02-19 21:40:34.031 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nInside nor professional partner new design machine. Fir https://example.com/ 19296 431844 431844.431894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0842583501634 0 \N \N f 0 \N 0 129786809 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438078 2024-02-25 10:33:18.47 2024-02-25 10:43:19.11 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enou https://example.com/ 11075 437966 437966.438078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1953812454994 0 \N \N f 0 \N 0 220430379 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 438463 2024-02-25 17:24:49.517 2024-02-25 17:34:51.194 \N Admit TV soon machine word future add. Traditio https://example.com/ 17976 379804 379804.438463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09202545380406 0 \N \N f 0 \N 0 71564619 0 f f \N \N \N \N 379804 \N 0 0 \N \N f \N 438027 2024-02-25 08:44:34.614 2024-02-25 08:54:35.807 \N Network art go experience example him see. Hal https://example.com/ 17124 437966 437966.438027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2293239056777 0 \N \N f 0 \N 0 187781034 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 444974 2024-03-01 13:33:00.024 2024-03-01 13:43:01.329 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper final https://example.com/ 8245 444744 444695.444744.444974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.41222931752089 0 \N \N f 0 \N 0 200497619 0 f f \N \N \N \N 444695 \N 0 0 \N \N f \N 438023 2024-02-25 08:35:26.148 2024-02-25 08:45:27.724 \N Mrs when number place under moment. Own including always especially news. App https://example.com/ 21262 437966 437966.438023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6084969187824 0 \N \N f 0 \N 0 65741250 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 444755 2024-03-01 10:49:59.197 2024-03-01 11:00:00.411 Not reveal allow arm million popular Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hosp https://example.com/ 8133 \N 444755 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.809016866098 0 \N \N f 0 \N 8 140779034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438171 2024-02-25 12:12:45.176 2024-02-25 12:22:46.264 \N Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle trut https://example.com/ 16747 437966 437966.438171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0315299281544 0 \N \N f 0 \N 0 232692280 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 438446 2024-02-25 17:06:11.995 2024-02-25 17:16:14.128 \N Tax here if https://example.com/ 19553 438421 438209.438211.438261.438408.438410.438415.438417.438421.438446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57284732365711 0 \N \N f 0 \N 0 192704757 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 444754 2024-03-01 10:47:26.341 2024-03-01 10:57:27.54 Summer past television what in Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right rea https://example.com/ 9335 \N 444754 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.41095945461271 0 \N \N f 0 \N 0 123684715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431880 2024-02-19 21:24:33.062 2024-02-19 21:34:34.868 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing internationa https://example.com/ 21033 431721 404367.431721.431880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74370381969481 0 \N \N f 0 \N 0 102587307 0 f f \N \N \N \N 404367 \N 0 0 \N \N f \N 431869 2024-02-19 21:07:07.957 2024-02-19 21:17:09.837 Question produc Understand Mr score until. Debate according western evening rate reveal. Wher https://example.com/ 5069 \N 431869 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 21.2704061433501 0 \N \N f 0 \N 1 84491401 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444986 2024-03-01 13:45:22.468 2024-03-01 13:55:24.187 \N Bank one body pull https://example.com/ 1611 444929 444874.444929.444986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.1953683459376 0 \N \N f 0 \N 0 243665500 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 432061 2024-02-20 00:33:29.484 2024-02-20 00:43:31.594 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against includi https://example.com/ 21131 432018 430892.431856.432018.432061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1541774414971 0 \N \N f 0 \N 0 20980504 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432246 2024-02-20 08:38:20.907 2024-02-20 08:48:21.993 \N Special identify senior di https://example.com/ 21424 432211 432211.432246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5907866701711 0 \N \N f 0 \N 1 140071853 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 431294 2024-02-19 18:26:11.71 2024-02-19 18:36:13.096 Direction fill away friend environmental paper. Camera d Sort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style. https://example.com/ 1970 \N 431294 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.016365275648 0 \N \N f 0 \N 5 241987009 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431998 2024-02-19 23:20:32.517 2024-02-19 23:30:35.096 \N Miss keep probably political forget sit. Simply street put once land history. Political step against enou https://example.com/ 16309 431844 431844.431998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.29840171316393 0 \N \N f 0 \N 1 167473119 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432042 2024-02-20 00:02:23.244 2024-02-20 00:12:25.266 Onto although Democrat mind signifi His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song. https://example.com/ 7587 \N 432042 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.8738302370673 0 \N \N f 0 \N 0 95179543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431423 2024-02-19 18:59:55.46 2024-02-19 19:09:57.375 \N Trip improve born state simila https://example.com/ 2789 362262 362262.431423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6981805080938 0 \N \N f 0 \N 1 152557008 0 f f \N \N \N \N 362262 \N 0 0 \N \N f \N 432048 2024-02-20 00:05:55.342 2024-02-20 00:15:57.041 \N Almost about me amount daughter himself. https://example.com/ 9330 431862 431862.432048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79545091053845 0 \N \N f 0 \N 0 207642921 0 f f \N \N \N \N 431862 \N 0 0 \N \N f \N 444929 2024-03-01 12:38:36.479 2024-03-01 12:48:37.697 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available https://example.com/ 7989 444874 444874.444929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4418562931062 0 \N \N f 0 \N 1 248283716 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 444689 2024-03-01 09:38:41.882 2024-03-01 09:48:44.079 Member car law politics in. Blue som Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nReality pressure enjoy th https://example.com/ 13574 \N 444689 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2049770485131 0 \N \N f 0 \N 2 87067331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431076 2024-02-19 17:30:39.562 2024-02-19 17:40:40.602 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nJoin push remain behavior. Various song no successful own. Him dir https://example.com/ 7998 430837 430837.431076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8309371174174 0 \N \N f 0 \N 2 97911487 0 f f \N \N \N \N 430837 \N 0 0 \N \N f \N 438460 2024-02-25 17:24:01.341 2024-02-25 17:34:03.257 \N His mean individual benefi https://example.com/ 15719 438451 438451.438460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8424584560679 0 \N \N f 0 \N 0 148469343 0 f f \N \N \N \N 438451 \N 0 0 \N \N f \N 432037 2024-02-19 23:54:52.374 2024-02-20 00:04:53.703 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challe https://example.com/ 18393 179891 179891.432037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1951970528953 0 \N \N f 0 \N 0 96965886 0 f f \N \N \N \N 179891 \N 0 0 \N \N f \N 431112 2024-02-19 17:42:00.16 2024-02-19 17:52:01.606 \N Ball training later think quit https://example.com/ 21334 413054 413054.431112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3338497971411 0 \N \N f 0 \N 0 21850246 0 f f \N \N \N \N 413054 \N 0 0 \N \N f \N 438439 2024-02-25 16:57:00.229 2024-02-25 17:07:01.072 \N North beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movem https://example.com/ 12959 438438 438438.438439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2776881273527 0 \N \N f 0 \N 0 217420384 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 432155 2024-02-20 03:59:28.046 2024-02-20 04:09:29.167 Increase bring card. Figure import Score player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer. https://example.com/ 21296 \N 432155 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.2864499741591 0 \N \N f 0 \N 0 170413948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444982 2024-03-01 13:36:54.174 2024-03-01 13:46:55.684 \N Practice see become. Chance education industry when attorney him. Consi https://example.com/ 963 444961 444950.444961.444982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3881108575581 0 \N \N f 0 \N 0 28927869 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 438457 2024-02-25 17:22:14.788 2024-02-25 17:32:16.067 \N Improve most form final blood. Section ability possible than str https://example.com/ 20655 438352 438093.438352.438457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3054928201465 0 \N \N f 0 \N 0 244398611 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432159 2024-02-20 04:09:11.913 2024-02-20 04:19:13.327 \N Future next exist girl prevent. Another song news science pra https://example.com/ 19263 430488 430488.432159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.0827546523186 0 \N \N f 0 \N 0 40818393 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 439987 2024-02-26 21:27:30.09 2024-02-26 21:37:31.353 Plan really necessary boy a consider. Attorney suffer play With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic simila https://example.com/ 13348 \N 439987 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.5334410296114 0 \N \N f 0 \N 3 83648280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440208 2024-02-27 03:20:00.254 2024-02-27 03:30:01.76 Technology word wish say organization friend here. Go nearl Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Th https://example.com/ 19043 \N 440208 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.78240938818431 0 \N \N f 0 \N 0 206883485 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443712 2024-02-29 15:42:41.87 2024-02-29 15:52:43.057 Star bill toward also almost. Reason machine grea Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finall https://example.com/ 17116 \N 443712 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.1428884189234 0 \N \N f 0 \N 40 66706805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444847 2024-03-01 11:38:21.206 2024-03-01 11:48:22.157 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. P https://example.com/ 667 444770 444770.444847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1006560828376 0 \N \N f 0 \N 3 228431146 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 432050 2024-02-20 00:11:32.114 2024-02-20 00:21:33.654 \N Book https://example.com/ 16289 431857 430984.431857.432050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.561319070453 0 \N \N f 0 \N 0 77098813 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 444989 2024-03-01 13:50:44.469 2024-03-01 14:00:46.494 \N Than budget time gas choice option light. Today fill cle https://example.com/ 10690 444962 444962.444989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64115614050942 0 \N \N f 0 \N 0 6163826 0 f f \N \N \N \N 444962 \N 0 0 \N \N f \N 431345 2024-02-19 18:35:17.554 2024-02-19 18:45:19.302 \N Once could matter program fish https://example.com/ 2330 373041 373041.431345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7000260928922 0 \N \N f 0 \N 0 88910385 0 f f \N \N \N \N 373041 \N 0 0 \N \N f \N 444796 2024-03-01 11:07:34.763 2024-03-01 11:17:35.812 \N Community seat tend position recent will. Last old investment style south. Message paper tree. Carry https://example.com/ 21067 444770 444770.444796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8121066565909 0 \N \N f 0 \N 0 169134750 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 432066 2024-02-20 00:37:31.78 2024-02-20 00:47:33.419 Every good development clearly poor. Fact former improve here yo Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Ev https://example.com/ 16229 \N 432066 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.57984336788996 0 \N \N f 0 \N 0 210457917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438478 2024-02-25 17:36:20.815 2024-02-25 17:46:21.703 \N Until must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nField https://example.com/ 20302 438325 438325.438478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.22384722339847 0 \N \N f 0 \N 0 200662783 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432072 2024-02-20 01:03:16.12 2024-02-20 01:13:17.506 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fis https://example.com/ 16665 432047 431844.431896.431904.432047.432072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8729844478041 0 \N \N f 0 \N 0 36804872 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 444988 2024-03-01 13:47:32.777 2024-03-01 13:57:33.79 \N Research either follow across either investment c https://example.com/ 20564 443921 443712.443921.444988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.4463074252858 0 \N \N f 0 \N 0 58541484 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 431721 2024-02-19 19:43:25.983 2024-02-19 19:53:26.865 \N Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cu https://example.com/ 18101 404367 404367.431721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.99927043845969 0 \N \N f 0 \N 1 140496018 0 f f \N \N \N \N 404367 \N 0 0 \N \N f \N 444993 2024-03-01 13:52:09.009 2024-03-01 14:02:10.145 \N In grow start way presiden https://example.com/ 19987 444755 444755.444993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.434042241828 0 \N \N f 0 \N 0 171766750 0 f f \N \N \N \N 444755 \N 0 0 \N \N f \N 440641 2024-02-27 14:57:14.205 2024-02-27 15:07:15.961 Measure whether or material herself. Under across economic hundred thank Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nSocial https://example.com/ 1720 \N 440641 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.1206453437406 0 \N \N f 0 \N 8 112106693 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439711 2024-02-26 18:12:22.517 2024-02-26 18:22:23.673 Many then growth. Law become Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find. https://example.com/ 980 \N 439711 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 24.773337657627 0 \N \N f 0 \N 2 3850102 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432151 2024-02-20 03:33:58.88 2024-02-20 03:43:59.746 \N Agree such https://example.com/ 14669 431953 431877.431883.431908.431953.432151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.87882155044761 0 \N \N f 0 \N 1 181045736 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 431857 2024-02-19 20:51:41.768 2024-02-19 21:01:43.443 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level ph https://example.com/ 718 430984 430984.431857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3577966998787 0 \N \N f 0 \N 1 85505741 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 430997 2024-02-19 17:17:04.951 2024-02-19 17:27:07.031 \N Fish health while enjoy. Step check prevent sell political man https://example.com/ 20581 430755 430607.430755.430997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6953263871714 0 \N \N f 0 \N 0 204011485 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 432143 2024-02-20 03:25:59.602 2024-02-20 03:36:00.691 \N Thank r https://example.com/ 14905 431960 431387.431960.432143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61486061925047 0 \N \N f 0 \N 0 81231335 0 f f \N \N \N \N 431387 \N 0 0 \N \N f \N 431146 2024-02-19 17:56:45.224 2024-02-19 18:06:46.551 \N Real late stop middle firm. Final be need by lawyer whom word however. Song https://example.com/ 811 430974 430770.430974.431146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.828539526366 0 \N \N f 0 \N 1 231294965 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 444991 2024-03-01 13:51:06.154 2024-03-01 14:01:07.409 \N Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affe https://example.com/ 17316 444948 444948.444991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5267563930609 0 \N \N f 0 \N 0 147461364 0 f f \N \N \N \N 444948 \N 0 0 \N \N f \N 445001 2024-03-01 13:57:15.734 2024-03-01 14:07:16.687 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon be https://example.com/ 18994 160052 160010.160052.445001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2894541386352 0 \N \N f 0 \N 0 58878909 0 f f \N \N \N \N 160010 \N 0 0 \N \N f \N 438468 2024-02-25 17:28:27.003 2024-02-25 17:38:28.36 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait https://example.com/ 10102 436247 436151.436247.438468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03488445855917 0 \N \N f 0 \N 1 198050167 0 f f \N \N \N \N 436151 \N 0 0 \N \N f \N 431851 2024-02-19 20:41:17.547 2024-02-19 20:51:18.672 \N Agree such recognize fast various. Address anyone glass smile first. Learn bea https://example.com/ 1602 431850 430984.431834.431850.431851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1520733149892 0 \N \N f 0 \N 1 189941266 0 f f \N \N \N \N 430984 \N 0 0 \N \N f \N 433183 2024-02-20 23:24:47.063 2024-02-20 23:34:48.955 \N Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant ca https://example.com/ 21356 432551 432517.432551.433183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.57538498272499 0 \N \N f 0 \N 0 197461239 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 444778 2024-03-01 11:02:14.176 2024-03-01 11:12:15.489 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothi https://example.com/ 7746 444365 444365.444778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2836866491403 0 \N \N f 0 \N 6 138411931 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444922 2024-03-01 12:31:11.013 2024-03-01 12:41:12.334 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout j https://example.com/ 16276 444904 444365.444778.444888.444904.444922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9568496317761 0 \N \N f 0 \N 3 18767755 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444944 2024-03-01 12:59:51.995 2024-03-01 13:09:53.252 \N We course us bank recently significant myself. Of past themselves condition smile var https://example.com/ 20023 444937 444365.444778.444888.444904.444922.444937.444944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9044979138458 0 \N \N f 0 \N 1 164569158 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444985 2024-03-01 13:43:57.983 2024-03-01 13:53:59.252 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nStaff likel https://example.com/ 19352 444896 444874.444896.444985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.33029631680535 0 \N \N f 0 \N 0 144881433 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 438179 2024-02-25 12:24:17.692 2024-02-25 12:34:19.337 \N Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matt https://example.com/ 21444 437762 437723.437762.438179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.789581329187 0 \N \N f 0 \N 0 167554081 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438207 2024-02-25 13:00:57.653 2024-02-25 13:10:58.983 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave spee https://example.com/ 19795 437700 437502.437700.438207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8940284845957 0 \N \N f 0 \N 1 209518762 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 432030 2024-02-19 23:49:55.23 2024-02-19 23:59:57.071 \N Girl fire bring middle popular. And suff https://example.com/ 12976 431963 430488.431915.431963.432030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.287305989748 0 \N \N f 0 \N 2 118950203 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 444965 2024-03-01 13:22:13.869 2024-03-01 13:32:15.547 Director far fact order bit collectio Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice. https://example.com/ 7587 \N 444965 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5942990454027 0 \N \N f 0 \N 0 231608321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431938 2024-02-19 22:05:36.318 2024-02-19 22:15:37.875 \N Pull fact question for unit up community interest. Sign cre https://example.com/ 16670 431888 431401.431888.431938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2248654080996 0 \N \N f 0 \N 0 204072253 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 431888 2024-02-19 21:28:59.188 2024-02-19 21:39:00.833 \N Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit https://example.com/ 20970 431401 431401.431888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6621779479579 0 \N \N f 0 \N 1 180952725 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 431941 2024-02-19 22:10:47.237 2024-02-19 22:20:49.267 \N Pric https://example.com/ 14122 431853 431853.431941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9723574474229 0 \N \N f 0 \N 0 97898585 0 f f \N \N \N \N 431853 \N 0 0 \N \N f \N 438401 2024-02-25 16:04:28.525 2024-02-25 16:14:29.983 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administ https://example.com/ 21446 438325 438325.438401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7855018006963 0 \N \N f 0 \N 1 43229695 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 438386 2024-02-25 15:53:18.327 2024-02-25 16:03:19.936 Author travel realize. Face represent bring read gas. G Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Regio https://example.com/ 10352 \N 438386 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.4238186997335 0 \N \N f 0 \N 0 158390615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432059 2024-02-20 00:30:41.491 2024-02-20 00:40:44.032 \N Weight st https://example.com/ 10771 431981 431872.431981.432059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1491065531524 0 \N \N f 0 \N 0 101102364 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 436247 2024-02-23 14:28:19.378 2024-02-23 14:38:20.809 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive f https://example.com/ 18402 436151 436151.436247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3438824967416 0 \N \N f 0 \N 3 183980666 0 f f \N \N \N \N 436151 \N 0 0 \N \N f \N 435519 2024-02-22 21:03:21.233 2024-02-22 21:13:22.565 Then approach enjoy fly effect back. Ahead watch which better. Debate key name Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM. https://example.com/ 19966 \N 435519 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.0800923318035 0 \N \N f 0 \N 0 7605287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431887 2024-02-19 21:28:50.164 2024-02-19 21:38:52.099 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war pos https://example.com/ 3709 431872 431872.431887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4222942613661 0 \N \N f 0 \N 1 183713010 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 431872 2024-02-19 21:12:07.729 2024-02-19 21:22:09.283 Health reduce perfor Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn d https://example.com/ 13076 \N 431872 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.0201086367528 0 \N \N f 0 \N 10 13529830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438356 2024-02-25 15:14:42.635 2024-02-25 15:24:44.386 Real goal cover. Mention leg sport seem. Back certainly Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine https://example.com/ 13763 \N 438356 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.6797054004486 0 \N \N f 0 \N 1 26479713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444962 2024-03-01 13:17:29.831 2024-03-01 13:27:30.937 Provide red Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nYoung shake push https://example.com/ 18241 \N 444962 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 24.2540805356228 0 \N \N f 0 \N 1 7571350 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438319 2024-02-25 14:47:52.868 2024-02-25 14:57:54.239 Technology word wish say organization friend here. Go nearly Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss howe https://example.com/ 8569 \N 438319 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 22.6836815325833 0 \N \N f 0 \N 1 149299448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438483 2024-02-25 17:39:10.539 2024-02-25 17:49:12.915 \N Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above r https://example.com/ 19795 438317 438317.438483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3018520875729 0 \N \N f 0 \N 0 52476477 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432018 2024-02-19 23:41:37.49 2024-02-19 23:51:39.236 \N Point box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nBy evening job should nature re https://example.com/ 6602 431856 430892.431856.432018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6877935120095 0 \N \N f 0 \N 1 92120211 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432065 2024-02-20 00:36:05.889 2024-02-20 00:46:07.656 \N Industry https://example.com/ 1534 432007 432007.432065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1435685568087 0 \N \N f 0 \N 0 228608920 0 f f \N \N \N \N 432007 \N 0 0 \N \N f \N 438473 2024-02-25 17:32:59.741 2024-02-25 17:43:01.747 \N Poor often speak everyone collection quite space. Carry paper fl https://example.com/ 6202 438417 438209.438211.438261.438408.438410.438415.438417.438473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1768681165075 0 \N \N f 0 \N 0 5983974 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432058 2024-02-20 00:30:23.241 2024-02-20 00:40:24.647 \N Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep rea https://example.com/ 12220 432020 431872.431873.431923.432020.432058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.66509715678357 0 \N \N f 0 \N 0 73064183 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 438417 2024-02-25 16:26:32.268 2024-02-25 16:36:33.973 \N Edge lot space military witho https://example.com/ 20606 438415 438209.438211.438261.438408.438410.438415.438417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48563448757233 0 \N \N f 0 \N 3 207649382 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 431598 2024-02-19 19:30:35.387 2024-02-19 19:40:37.022 Their bed hear popular fine guy able. President anything majority picture Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. https://example.com/ 15594 \N 431598 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 20.7689119294764 0 \N \N f 0 \N 6 186524424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431533 2024-02-19 19:08:21.206 2024-02-19 19:18:22.85 \N In grow start way president as https://example.com/ 16660 341578 341578.431533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3392741430058 0 \N \N f 0 \N 0 178442568 0 f f \N \N \N \N 341578 \N 0 0 \N \N f \N 438310 2024-02-25 14:33:43.485 2024-02-25 14:43:44.935 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach https://example.com/ 5757 438201 438093.438201.438310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3144991076591 0 \N \N f 0 \N 0 121726897 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 440043 2024-02-26 22:24:50.023 2024-02-26 22:34:52.241 \N W https://example.com/ 1488 440028 440028.440043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20828466199541 0 \N \N f 0 \N 0 104993203 0 f f \N \N \N \N 440028 \N 0 0 \N \N f \N 435696 2024-02-23 00:22:11.721 2024-02-23 00:32:13.23 Happen should somebody world southern player wife. Mr five clear Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical. https://example.com/ 13927 \N 435696 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.818324942707 0 \N \N f 0 \N 0 43681152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435681 2024-02-23 00:01:40.103 2024-02-23 00:11:41.209 \N Federal anyone https://example.com/ 746 435457 435457.435681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16736040825686 0 \N \N f 0 \N 0 55888823 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 440561 2024-02-27 13:52:01.33 2024-02-27 14:02:02.504 Then political wait so remain throw anything. Produce voice th Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer https://example.com/ 20751 \N 440561 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.7751214834249 0 \N \N f 0 \N 13 154683345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444934 2024-03-01 12:46:55.406 2024-03-01 12:56:56.947 \N Generation discover https://example.com/ 16052 444927 444770.444845.444927.444934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6272539122565 0 \N \N f 0 \N 1 242586138 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 431868 2024-02-19 21:03:41.167 2024-02-19 21:13:42.879 \N Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number man https://example.com/ 16229 431845 431816.431845.431868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7121506220033 0 \N \N f 0 \N 0 60382389 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444927 2024-03-01 12:36:19.26 2024-03-01 12:46:20.344 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attac https://example.com/ 17275 444845 444770.444845.444927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.446654866925 0 \N \N f 0 \N 2 163109035 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 432082 2024-02-20 01:17:04.15 2024-02-20 01:27:06.178 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million https://example.com/ 7659 406807 406807.432082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.566366830057 0 \N \N f 0 \N 0 63866716 0 f f \N \N \N \N 406807 \N 0 0 \N \N f \N 444845 2024-03-01 11:37:42.194 2024-03-01 11:47:43.267 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city https://example.com/ 16747 444770 444770.444845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.03018678634071 0 \N \N f 0 \N 5 234534247 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 432070 2024-02-20 00:59:49.035 2024-02-20 01:09:50.243 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Abil https://example.com/ 16665 431122 431122.432070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17145224207978 0 \N \N f 0 \N 0 111632435 0 f f \N \N \N \N 431122 \N 0 0 \N \N f \N 444984 2024-03-01 13:43:09.945 2024-03-01 13:53:11.183 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today scho https://example.com/ 19446 444972 444968.444972.444984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0269456059861639 0 \N \N f 0 \N 3 132720526 0 f f \N \N \N \N 444968 \N 0 0 \N \N f \N 444410 2024-02-29 23:24:04.34 2024-02-29 23:34:05.995 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency ou https://example.com/ 4802 443712 443712.444410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.434406402842 0 \N \N f 0 \N 1 204914566 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 438449 2024-02-25 17:11:20.95 2024-02-25 17:21:23.339 Always friend price benefit. Reflect seem help none Today area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling s https://example.com/ 21416 \N 438449 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 9.307446377452 0 \N \N f 0 \N 1 167348191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432079 2024-02-20 01:12:56.324 2024-02-20 01:22:57.434 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak pa https://example.com/ 20087 431918 431918.432079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4086452803478 0 \N \N f 0 \N 0 25884639 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 366545 2023-12-26 07:23:47.741 2023-12-26 12:09:52.749 Purpose age cover ma Add bar degree beat sinc https://example.com/ 19615 \N 366545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.517673805244669 0 \N \N f 0 \N 2 79934255 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444987 2024-03-01 13:46:39.437 2024-03-01 13:56:41.251 \N Meeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nPower this as. Time Republican go https://example.com/ 15588 444980 444980.444987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5376115305843 0 \N \N f 0 \N 2 127944660 0 f f \N \N \N \N 444980 \N 0 0 \N \N f \N 438490 2024-02-25 17:45:23.748 2024-02-25 17:55:25.022 \N Key third PM painting wrong gener https://example.com/ 19332 438476 438182.438476.438490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2233874549768 0 \N \N f 0 \N 0 87531318 0 f f \N \N \N \N 438182 \N 0 0 \N \N f \N 432092 2024-02-20 02:03:08.352 2024-02-20 02:13:09.346 \N Debate property life amount writer. Animal f https://example.com/ 16149 432084 429220.430885.432084.432092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3410059004532 0 \N \N f 0 \N 0 175472676 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 442210 2024-02-28 15:39:51.135 2024-02-28 15:49:52.86 \N Own about f https://example.com/ 644 442203 200726.200758.200759.200827.200836.200867.442120.442190.442203.442210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.69847868344619 0 \N \N f 0 \N 0 76402831 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 438475 2024-02-25 17:35:02.941 2024-02-25 17:45:04.207 Deep government cold west. Act computer vote particularly look. Security enter Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide. https://example.com/ 21323 \N 438475 \N \N \N \N \N \N \N \N history \N ACTIVE \N 25.0560366832721 0 \N \N f 0 \N 0 162780445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438501 2024-02-25 17:51:42.216 2024-02-25 18:01:43.316 Just condition wi Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there. https://example.com/ 11220 \N 438501 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.98882297139377 0 \N \N f 0 \N 0 46802115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444981 2024-03-01 13:36:15.874 2024-03-01 13:46:17.095 Special identify senior difference third. Stu Plant strong wes https://example.com/ 15484 \N 444981 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.0194471722607 0 \N \N f 0 \N 1 66748043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430861 2024-02-19 15:30:48.728 2024-02-19 15:40:50.048 \N Activity just seem enter developme https://example.com/ 717 430569 430569.430861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8125087915229 0 \N \N f 0 \N 0 33054131 0 f f \N \N \N \N 430569 \N 0 0 \N \N f \N 444948 2024-03-01 13:02:49.162 2024-03-01 13:12:50.647 Yourself debate term during boy. Significant step line. Curren Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughou https://example.com/ 1740 \N 444948 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1408573819212 0 \N \N f 0 \N 3 109519647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444097 2024-02-29 19:11:06.969 2024-02-29 19:21:08.488 Raise represent leave during hug Ten instead develop https://example.com/ 19148 \N 444097 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.7768473152569 0 \N \N f 0 \N 17 178189316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432124 2024-02-20 02:52:31.552 2024-02-20 03:02:32.961 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nFor https://example.com/ 20084 431966 431966.432124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0698188849408 0 \N \N f 0 \N 0 119780540 0 f f \N \N \N \N 431966 \N 0 0 \N \N f \N 444770 2024-03-01 11:00:05.031 2024-03-01 11:10:06.374 Them debate ma Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nSuccessful power down must next system pull provide. World health century https://example.com/ 11328 \N 444770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1000202863597 0 \N \N f 0 \N 51 177583094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444365 2024-02-29 22:26:46.44 2024-02-29 22:36:47.502 Play single finally social almost serious. Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nLater piece skin environme https://example.com/ 651 \N 444365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.5021627073227 0 \N \N f 0 \N 26 240353233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438492 2024-02-25 17:46:04.469 2024-02-25 17:56:05.856 \N Concern position true. Third fin https://example.com/ 17455 438486 438486.438492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0780666671544 0 \N \N f 0 \N 2 78490500 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 438498 2024-02-25 17:49:00.711 2024-02-25 17:59:01.612 \N Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see ch https://example.com/ 18178 438317 438317.438498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7699002730932 0 \N \N f 0 \N 0 155981669 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 435705 2024-02-23 00:29:00.069 2024-02-23 00:39:01.144 \N International ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent som https://example.com/ 6526 435677 435516.435664.435677.435705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8555549394741 0 \N \N f 0 \N 0 54614450 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 445002 2024-03-01 13:57:33.078 2024-03-01 14:07:34.005 \N Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nFive now https://example.com/ 19263 444997 444911.444997.445002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.71880756792865 0 \N \N f 0 \N 2 167777974 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 445000 2024-03-01 13:56:28.261 2024-03-01 14:06:29.384 \N Myself candidate idea state similar above. Fir https://example.com/ 20897 444934 444770.444845.444927.444934.445000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.869680513669 0 \N \N f 0 \N 0 147092657 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 444016 2024-02-29 18:22:35.513 2024-02-29 18:32:37.074 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at dee https://example.com/ 19005 443712 443712.444016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8638167635552 0 \N \N f 0 \N 1 74495959 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 445020 2024-03-01 14:07:32.243 2024-03-01 14:17:33.188 \N Respond even chair hear https://example.com/ 7185 444151 443712.444151.445020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.69692205902536 0 \N \N f 0 \N 0 116352400 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 445022 2024-03-01 14:08:44.854 2024-03-01 14:18:45.814 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old ei https://example.com/ 6041 444998 444998.445022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5596539828262 0 \N \N f 0 \N 0 197748754 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 442035 2024-02-28 14:29:07.899 2024-02-28 14:39:10.019 Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several. https://example.com/ 761 \N 442035 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.2711608034165 0 \N \N f 0 \N 1 176690388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441125 2024-02-27 21:35:42.224 2024-02-27 21:45:43.723 \N Improve most form final blood. Section ability p https://example.com/ 19512 440993 440988.440993.441125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43130371846148 0 \N \N f 0 \N 0 100425001 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 430859 2024-02-19 15:30:09.639 2024-02-19 15:40:10.409 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. S https://example.com/ 16809 430626 430626.430859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54504084733384 0 \N \N f 0 \N 2 178026220 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 438083 2024-02-25 10:45:19.333 2024-02-25 10:55:21.121 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nLead against area note movement street push music. Meet world https://example.com/ 14271 438075 437723.437880.438075.438083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9935762883866 0 \N \N f 0 \N 1 173988777 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444802 2024-03-01 11:10:48.69 2024-03-01 11:20:50.109 Past everybody chance health. Minute choice your half by. Response exac Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice. https://example.com/ 17147 \N 444802 \N \N \N \N \N \N \N \N security \N ACTIVE \N 11.0981552221648 0 \N \N f 0 \N 1 106975088 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445006 2024-03-01 13:59:47.992 2024-03-01 14:09:50.212 \N New here partner campaign right. Per occur happen very. Final career abil https://example.com/ 20636 444995 444770.444995.445006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63046052238425 0 \N \N f 0 \N 0 19836844 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 445009 2024-03-01 14:00:05.459 2024-03-01 14:10:07.458 \N Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain https://example.com/ 19773 445008 445008.445009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7788978625918 0 \N \N f 0 \N 0 78399602 0 f f \N \N \N \N 445008 \N 0 0 \N \N f \N 444997 2024-03-01 13:54:29.029 2024-03-01 14:04:30.171 \N Tend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. https://example.com/ 12959 444911 444911.444997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.65602143067955 0 \N \N f 0 \N 3 217314735 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 441874 2024-02-28 13:00:25.098 2024-02-28 13:10:26.829 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare desp https://example.com/ 20861 441867 441843.441864.441867.441874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2005874797358 0 \N \N f 0 \N 0 29092243 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 445031 2024-03-01 14:14:15.224 2024-03-01 14:24:16.622 \N Quite way soldier would back near. Modern consider federal series dark teacher. Draw s https://example.com/ 18817 444998 444998.445031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9782355857142 0 \N \N f 0 \N 0 16441091 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 438426 2024-02-25 16:38:04.659 2024-02-25 16:48:05.922 \N Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nCareer player thing second down win. Feel true explain. Pattern body yet if on https://example.com/ 2195 438067 437723.437880.438067.438426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1007625116626 0 \N \N f 0 \N 0 91729623 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444999 2024-03-01 13:56:17.732 2024-03-01 14:06:19.168 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nAgreement new fine federal https://example.com/ 20327 444987 444980.444987.444999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9898921654312 0 \N \N f 0 \N 1 212818769 0 f f \N \N \N \N 444980 \N 0 0 \N \N f \N 444902 2024-03-01 12:18:03.153 2024-03-01 12:28:04.382 \N Same product run but perhaps. Statement bab https://example.com/ 12188 444892 444892.444902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7959476446649 0 \N \N f 0 \N 1 1558293 0 f f \N \N \N \N 444892 \N 0 0 \N \N f \N 432033 2024-02-19 23:52:03.348 2024-02-20 00:02:05.53 \N Civil atto https://example.com/ 16988 431946 431946.432033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40945379717257 0 \N \N f 0 \N 1 151309055 0 f f \N \N \N \N 431946 \N 0 0 \N \N f \N 445026 2024-03-01 14:12:09.008 2024-03-01 14:22:10.828 \N Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Di https://example.com/ 5527 444998 444998.445026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0794208649093 0 \N \N f 0 \N 0 197446917 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445028 2024-03-01 14:12:44.825 2024-03-01 14:22:45.484 \N Direction fill away friend environmental paper. Camera director respond. Until write my top gov https://example.com/ 8506 444998 444998.445028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4214458239285 0 \N \N f 0 \N 0 121474774 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445029 2024-03-01 14:12:57.055 2024-03-01 14:22:59.616 \N Side institution practice you. Response herself television. Decide policy blo https://example.com/ 21249 445025 443712.443834.444412.444416.445012.445025.445029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4403740814119 0 \N \N f 0 \N 0 127824943 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444416 2024-02-29 23:36:23.458 2024-02-29 23:46:25.517 \N Including lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think arou https://example.com/ 2952 444412 443712.443834.444412.444416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4005007617061 0 \N \N f 0 \N 7 200881959 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 445014 2024-03-01 14:03:03.886 2024-03-01 14:13:05.286 \N Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Alth https://example.com/ 18068 444998 444998.445014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.5488108015545 0 \N \N f 0 \N 0 115069598 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445039 2024-03-01 14:16:46.94 2024-03-01 14:26:48.065 \N Discussion various drop throw none test wind. Exactly nation read year. Environment https://example.com/ 21413 444901 444739.444884.444889.444901.445039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7813022329169 0 \N \N f 0 \N 1 126147746 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444892 2024-03-01 12:11:48.164 2024-03-01 12:21:50.108 Lay garden sing air Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nBank on https://example.com/ 5527 \N 444892 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.864328274759 0 \N \N f 0 \N 2 98288754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445032 2024-03-01 14:14:28.225 2024-03-01 14:24:29.472 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. https://example.com/ 5195 445005 445003.445005.445032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6286095646579 0 \N \N f 0 \N 1 176298236 0 f f \N \N \N \N 445003 \N 0 0 \N \N f \N 435475 2024-02-22 20:12:55.212 2024-02-22 20:22:56.325 \N Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few https://example.com/ 21365 435474 435412.435474.435475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4711099505073 0 \N \N f 0 \N 0 78198214 0 f f \N \N \N \N 435412 \N 0 0 \N \N f \N 438485 2024-02-25 17:42:08.752 2024-02-25 17:52:09.724 \N Develop receive back PM. Use arrive best police poor. https://example.com/ 20525 438449 438449.438485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6396003490763 0 \N \N f 0 \N 0 168659934 0 f f \N \N \N \N 438449 \N 0 0 \N \N f \N 441145 2024-02-27 22:00:05.986 2024-02-27 22:10:07.066 Suffer same investment. Finish play also account there \N https://example.com/ 2528 \N 441145 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.2617558851806 0 \N \N f 0 \N 1 237811241 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438304 2024-02-25 14:29:28.953 2024-02-25 14:39:31.111 \N Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consid https://example.com/ 4984 437997 437996.437997.438304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18942671891058 0 \N \N f 0 \N 2 63690730 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 445103 2024-03-01 14:59:37.698 2024-03-01 14:59:43.21 \N Hour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nMoney rise give serve will expect https://example.com/ 19663 445079 445079.445103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8477263891228 0 \N \N f 0 \N 0 71965026 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 432403 2024-02-20 12:04:13.741 2024-02-20 12:14:15.07 \N Result treatment s https://example.com/ 20854 432113 432113.432403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8637423053578 0 \N \N f 0 \N 0 88700074 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 438067 2024-02-25 10:14:55.927 2024-02-25 10:24:57.378 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street pow https://example.com/ 20291 437880 437723.437880.438067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.25205581809734 0 \N \N f 0 \N 1 17043725 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444976 2024-03-01 13:33:49.108 2024-03-01 13:43:50.227 \N Nature coupl https://example.com/ 16230 444926 444770.444926.444976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.95501167729803 0 \N \N f 0 \N 0 180690665 0 f f \N \N \N \N 444770 \N 0 0 \N \N f \N 438445 2024-02-25 17:05:31.449 2024-02-25 17:15:33.146 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family i https://example.com/ 14545 438427 437723.437880.438427.438445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3908641052881 0 \N \N f 0 \N 0 245371399 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438427 2024-02-25 16:38:07.977 2024-02-25 16:48:09.465 \N Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Wh https://example.com/ 20616 437880 437723.437880.438427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90667484684224 0 \N \N f 0 \N 1 730616 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432163 2024-02-20 04:11:31.237 2024-02-20 04:21:32.84 \N Fear size with rich skin decade community https://example.com/ 13097 432137 432135.432137.432163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9437337144081 0 \N \N f 0 \N 0 16939917 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 445048 2024-03-01 14:20:57.44 2024-03-01 14:30:58.887 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost prod https://example.com/ 20502 444998 444998.445048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5698816689328 0 \N \N f 0 \N 0 243324441 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 431387 2024-02-19 18:43:45.38 2024-02-19 18:53:46.858 After way Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around econom https://example.com/ 836 \N 431387 \N \N \N \N \N \N \N \N art \N ACTIVE \N 24.6299989592558 0 \N \N f 0 \N 2 28709915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438513 2024-02-25 18:00:05.121 2024-02-25 18:00:11.66 \N Past hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple https://example.com/ 17184 438511 438511.438513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5998212884909 0 \N \N f 0 \N 0 238918989 0 f f \N \N \N \N 438511 \N 0 0 \N \N f \N 445024 2024-03-01 14:10:33.169 2024-03-01 14:20:35.327 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit singl https://example.com/ 20258 444999 444980.444987.444999.445024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33730731679285 0 \N \N f 0 \N 0 36940453 0 f f \N \N \N \N 444980 \N 0 0 \N \N f \N 438503 2024-02-25 17:52:48.409 2024-02-25 18:02:49.448 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Te https://example.com/ 7425 438202 438202.438503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5375363956864 0 \N \N f 0 \N 0 26031991 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 438068 2024-02-25 10:15:56.266 2024-02-25 10:25:58.019 \N Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. I https://example.com/ 16406 438006 437723.437937.438006.438068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1898862379387 0 \N \N f 0 \N 0 81541254 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437937 2024-02-25 04:03:07.645 2024-02-25 04:13:09.286 \N Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including t https://example.com/ 20109 437723 437723.437937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0987600112687 0 \N \N f 0 \N 3 241507519 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 444972 2024-03-01 13:31:57.288 2024-03-01 13:41:58.883 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data https://example.com/ 20218 444968 444968.444972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.223414463989 0 \N \N f 0 \N 4 1245708 0 f f \N \N \N \N 444968 \N 0 0 \N \N f \N 444957 2024-03-01 13:12:03.375 2024-03-01 13:22:05.036 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Ty https://example.com/ 20036 444930 444930.444957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7214250247673 0 \N \N f 0 \N 1 223547686 0 f f \N \N \N \N 444930 \N 0 0 \N \N f \N 445055 2024-03-01 14:23:36.095 2024-03-01 14:33:37.524 Then political wait so remain throw anything. Produce voice three contain diffi Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current. https://example.com/ 11829 \N 445055 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.63329635530132 0 \N \N f 0 \N 0 7575365 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438521 2024-02-25 18:09:04.19 2024-02-25 18:19:05.648 \N Structure ever film speech along somebody. Member range than among choose bit. This million si https://example.com/ 21003 438280 437670.438280.438521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.23028368466045 0 \N \N f 0 \N 0 203049620 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 438455 2024-02-25 17:20:59.97 2024-02-25 17:31:01.347 \N Never whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak bui https://example.com/ 20525 438453 438405.438416.438453.438455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7218751634311 0 \N \N f 0 \N 0 224859616 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 445049 2024-03-01 14:21:26.882 2024-03-01 14:31:28.274 \N Seven nice notice wife they couple. Suffer town happ https://example.com/ 5708 445007 444968.444972.444984.444990.445007.445049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4837175771823 0 \N \N f 0 \N 0 230122960 0 f f \N \N \N \N 444968 \N 0 0 \N \N f \N 445007 2024-03-01 13:59:48.365 2024-03-01 14:09:49.169 \N Successful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Mi https://example.com/ 19484 444990 444968.444972.444984.444990.445007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.21991410233363 0 \N \N f 0 \N 1 94463894 0 f f \N \N \N \N 444968 \N 0 0 \N \N f \N 445052 2024-03-01 14:22:26.914 2024-03-01 14:32:28.017 \N Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Develo https://example.com/ 2640 444998 444998.445052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8559628320206 0 \N \N f 0 \N 0 99345226 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445051 2024-03-01 14:22:08.334 2024-03-01 14:32:09.716 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student https://example.com/ 21413 444998 444998.445051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.807958349316955 0 \N \N f 0 \N 0 224707877 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445025 2024-03-01 14:11:31.269 2024-03-01 14:21:32.755 \N Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Dem https://example.com/ 940 445012 443712.443834.444412.444416.445012.445025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9006464094361 0 \N \N f 0 \N 1 17684225 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 438462 2024-02-25 17:24:21.551 2024-02-25 17:34:23.345 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior https://example.com/ 11220 438453 438405.438416.438453.438462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17324230103898 0 \N \N f 0 \N 0 67147908 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 235825 2023-08-26 16:31:40.936 2023-08-26 16:41:42.881 South little t Big field certainl https://example.com/ 4115 \N 235825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9235698699625 0 \N \N f 0 \N 8 22848759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444597 2024-03-01 05:55:07.284 2024-03-01 06:05:09.238 Administration effort live any between particular friend. Raise thank later bar Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution. https://example.com/ 20891 \N 444597 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 5.95565090592125 0 \N \N f 0 \N 4 216651849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437994 2024-02-25 07:11:03.173 2024-02-25 07:21:04.388 \N Moment smile cell cold road happen c https://example.com/ 2285 437732 437732.437994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7822165895006 0 \N \N f 0 \N 0 46181361 0 f f \N \N \N \N 437732 \N 0 0 \N \N f \N 441058 2024-02-27 20:28:25.438 2024-02-27 20:38:26.418 Middle without school budget car Mrs paper. Sing seem Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach. https://example.com/ 21401 \N 441058 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 8.35939511801783 0 \N \N f 0 \N 0 125487036 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444889 2024-03-01 12:08:35.491 2024-03-01 12:18:36.563 \N Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nSe https://example.com/ 21248 444884 444739.444884.444889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4179734906745 0 \N \N f 0 \N 4 51756243 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444901 2024-03-01 12:16:04.892 2024-03-01 12:26:05.927 \N Become full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember https://example.com/ 12220 444889 444739.444884.444889.444901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.66723132500344 0 \N \N f 0 \N 3 228119928 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 444884 2024-03-01 12:04:49.452 2024-03-01 12:14:50.455 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy https://example.com/ 11417 444739 444739.444884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7355939141632 0 \N \N f 0 \N 5 129624526 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 432148 2024-02-20 03:31:37.627 2024-02-20 03:41:38.54 \N At audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. F https://example.com/ 21131 432026 431800.432026.432148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4512266498247 0 \N \N f 0 \N 0 126000705 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432147 2024-02-20 03:31:21.754 2024-02-20 03:41:23.359 \N Middle cit https://example.com/ 13216 432135 432135.432147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55327899815713 0 \N \N f 0 \N 0 40217668 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 445035 2024-03-01 14:15:59.451 2024-03-01 14:26:00.973 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well soc https://example.com/ 17046 444998 444998.445035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4949387546918 0 \N \N f 0 \N 0 27939160 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 431986 2024-02-19 23:02:11.376 2024-02-19 23:12:12.759 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge https://example.com/ 20163 429683 428180.428699.429263.429683.431986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.39986931102133 0 \N \N f 0 \N 0 114664521 0 f f \N \N \N \N 428180 \N 0 0 \N \N f \N 431296 2024-02-19 18:28:50.31 2024-02-19 18:38:51.999 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation mo https://example.com/ 979 430488 430488.431296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.43692681833122 0 \N \N f 0 \N 2 149851011 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 445037 2024-03-01 14:16:22.254 2024-03-01 14:26:23.802 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. South https://example.com/ 17638 444998 444998.445037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2988612367361 0 \N \N f 0 \N 0 23461118 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 435733 2024-02-23 01:02:05.187 2024-02-23 01:12:06.624 \N Born value hundred medical loss. Kid white check draw chance treatment significan https://example.com/ 17673 435716 434278.434503.434522.434598.434602.435622.435713.435716.435733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2328864137298 0 \N \N f 0 \N 0 164766717 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 438137 2024-02-25 11:40:54.083 2024-02-25 11:50:55.512 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark o https://example.com/ 18815 437996 437996.438137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.8392734049005 0 \N \N f 0 \N 2 130496800 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 438502 2024-02-25 17:52:37.472 2024-02-25 18:02:38.774 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who r https://example.com/ 21303 438496 438209.438496.438502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8181323454078 0 \N \N f 0 \N 0 248724311 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 444930 2024-03-01 12:41:18.817 2024-03-01 12:51:19.97 Happen include car man crime. Local o Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth https://example.com/ 8269 \N 444930 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.050203459538 0 \N \N f 0 \N 2 179592068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444973 2024-03-01 13:32:44.007 2024-03-01 13:42:44.985 Per billion school mind. Success hard result Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action. https://example.com/ 2709 \N 444973 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2779492136611 0 \N \N f 0 \N 0 235586713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438525 2024-02-25 18:10:46.256 2024-02-25 18:20:47.839 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor https://example.com/ 4802 438137 437996.438137.438525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.218346332303305 0 \N \N f 0 \N 0 247143292 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 445071 2024-03-01 14:36:35.706 2024-03-01 14:46:38.213 \N Project them draw walk if significant wrong into. Course even believe garden sce https://example.com/ 20858 445005 445003.445005.445071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8274327314769 0 \N \N f 0 \N 0 158097580 0 f f \N \N \N \N 445003 \N 0 0 \N \N f \N 445064 2024-03-01 14:33:07.064 2024-03-01 14:43:09.159 \N Decision certain voice where collection thus write. Friend mind e https://example.com/ 697 445017 444739.444841.445017.445064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6674376153476 0 \N \N f 0 \N 0 221517509 0 f f \N \N \N \N 444739 \N 0 0 \N \N f \N 438280 2024-02-25 14:08:55.171 2024-02-25 14:18:56.801 \N Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campai https://example.com/ 16594 437670 437670.438280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0148897872805 0 \N \N f 0 \N 1 238512815 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 444739 2024-03-01 10:34:49.574 2024-03-01 10:44:50.998 Reality four attention. Whose each design pull that After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wi https://example.com/ 19488 \N 444739 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.2276597214279 0 \N \N f 0 \N 27 79790789 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445070 2024-03-01 14:35:32.649 2024-03-01 14:45:33.547 \N Knowledge ever his fly. Situation help treat total s https://example.com/ 15213 444880 444718.444832.444857.444880.445070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0556202250929 0 \N \N f 0 \N 0 104666422 0 f f \N \N \N \N 444718 \N 0 0 \N \N f \N 444910 2024-03-01 12:22:17.222 2024-03-01 12:32:18.508 Per seat key down relationship step. Father camera mode Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project https://example.com/ 8080 \N 444910 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.4652191808045 0 \N \N f 0 \N 2 136088671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445044 2024-03-01 14:18:52.162 2024-03-01 14:28:53.507 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word ab https://example.com/ 19854 444910 444910.445044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7401179317715 0 \N \N f 0 \N 1 165555085 0 f f \N \N \N \N 444910 \N 0 0 \N \N f \N 438562 2024-02-25 18:48:50.939 2024-02-25 19:25:40.706 \N Civil attorney sell https://example.com/ 1010 438451 438451.438562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9638939464132 0 \N \N f 0 \N 0 24881085 0 f f \N \N \N \N 438451 \N 0 0 \N \N f \N 435710 2024-02-23 00:36:46.553 2024-02-23 00:46:47.601 \N Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything str https://example.com/ 20669 435505 435497.435505.435710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9387010670476 0 \N \N f 0 \N 1 19913420 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 435322 2024-02-22 17:53:17.079 2024-02-22 18:03:18.404 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal. https://example.com/ 16929 434650 434627.434650.435322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8526821514176 0 \N \N f 0 \N 0 206136953 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 236817 2023-08-27 18:33:43.289 2023-08-27 18:43:44.466 Director far fact orde Rest fact https://example.com/ 19381 \N 236817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3642796954689 0 \N \N f 0 \N 9 234680525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444715 2024-03-01 10:13:42.907 2024-03-01 10:23:43.965 Break test customer successful hotel availabl Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more. https://example.com/ 17976 \N 444715 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 9.01336434333356 0 \N \N f 0 \N 1 217245202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445003 2024-03-01 13:57:50.73 2024-03-01 14:07:52.201 About cell note lot page. Feel manage language. Road aga Morning hundred analysis understand admit prevent. Time bit think as many. O https://example.com/ 807 \N 445003 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 21.3468857609667 0 \N \N f 0 \N 5 249592682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438544 2024-02-25 18:26:29.199 2024-02-25 18:36:31.129 \N Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. https://example.com/ 21172 438542 438405.438416.438453.438464.438510.438518.438536.438542.438544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.71235474544662 0 \N \N f 0 \N 0 110463647 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 445074 2024-03-01 14:39:05.409 2024-03-01 14:49:07.547 \N Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these ma https://example.com/ 7960 445053 444911.444933.444939.445053.445074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3421575082835 0 \N \N f 0 \N 1 132075827 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 445054 2024-03-01 14:23:29.096 2024-03-01 14:33:31.088 \N Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave spe https://example.com/ 17183 445045 444980.445027.445045.445054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6062226990598 0 \N \N f 0 \N 0 42487476 0 f f \N \N \N \N 444980 \N 0 0 \N \N f \N 445053 2024-03-01 14:22:28.71 2024-03-01 14:32:30.037 \N Not find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nPush recentl https://example.com/ 2444 444939 444911.444933.444939.445053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3427013813518 0 \N \N f 0 \N 2 50079750 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 431945 2024-02-19 22:12:06.457 2024-02-19 22:22:07.538 \N Plant eve https://example.com/ 1515 431907 431877.431890.431900.431905.431907.431945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86147315867539 0 \N \N f 0 \N 0 233953289 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 445027 2024-03-01 14:12:36.834 2024-03-01 14:22:38.302 \N Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone f https://example.com/ 9331 444980 444980.445027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57334435598545 0 \N \N f 0 \N 2 196062424 0 f f \N \N \N \N 444980 \N 0 0 \N \N f \N 445045 2024-03-01 14:19:02.867 2024-03-01 14:29:03.713 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial seas https://example.com/ 15941 445027 444980.445027.445045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.071737534265 0 \N \N f 0 \N 1 22785190 0 f f \N \N \N \N 444980 \N 0 0 \N \N f \N 435730 2024-02-23 01:00:21.836 2024-02-23 01:10:23.424 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nProperty pass now firm today boy reason. Chair ready thr https://example.com/ 2213 434558 434278.434558.435730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.717750748635027 0 \N \N f 0 \N 0 109891773 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 437605 2024-02-24 19:02:23.361 2024-02-24 19:12:25.36 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinn https://example.com/ 4502 437583 437583.437605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3603343616401 0 \N \N f 0 \N 0 172906744 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 439443 2024-02-26 15:15:28.694 2024-02-26 15:25:31.007 Various discussion light page war your have. Get generation Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real includi https://example.com/ 8506 \N 439443 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 10.4721120261867 0 \N \N f 0 \N 7 69647078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438372 2024-02-25 15:37:49.833 2024-02-25 15:47:51.454 Think cover scientist financial attention he word. World laugh partner par Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go. https://example.com/ 19852 \N 438372 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.33341518487214 0 \N \N f 0 \N 0 241832676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444849 2024-03-01 11:39:23.547 2024-03-01 11:49:25.317 \N End and certainly language lawyer her sort. Attention rate turn guess https://example.com/ 17838 444824 444824.444849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2449677067373 0 \N \N f 0 \N 0 134567560 0 f f \N \N \N \N 444824 \N 0 0 \N \N f \N 435734 2024-02-23 01:04:02.145 2024-02-23 01:14:03.42 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between par https://example.com/ 9352 435617 434278.434558.434603.435617.435734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20743430570641 0 \N \N f 0 \N 0 112305472 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435729 2024-02-23 00:59:49.541 2024-02-23 01:09:50.834 \N Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nCenter stand near long painting left sense. Employ https://example.com/ 20267 435710 435497.435505.435710.435729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.394557536807625 0 \N \N f 0 \N 0 2770428 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 435665 2024-02-22 23:37:27.184 2024-02-22 23:47:28.806 \N Take throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nTop group country tree light cultural simply. From woman key talk sout https://example.com/ 673 435579 435579.435665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6274880272449 0 \N \N f 0 \N 1 242076109 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 444839 2024-03-01 11:29:38.296 2024-03-01 11:39:39.097 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern stan https://example.com/ 21061 444824 444824.444839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49247586495395 0 \N \N f 0 \N 0 18793377 0 f f \N \N \N \N 444824 \N 0 0 \N \N f \N 444824 2024-03-01 11:23:59.405 2024-03-01 11:34:01.188 Real who consider answer affect similar continue. Life almos Guy help book. Senior activity environment. Party take she two. Describe so https://example.com/ 13517 \N 444824 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.89485955407604 0 \N \N f 0 \N 5 10307254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445080 2024-03-01 14:44:58.254 2024-03-01 14:54:59.503 Leave example Hair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nEvery important man a free knowledge. Firm return actually https://example.com/ 17513 \N 445080 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.57470897670503 0 \N \N f 0 \N 1 32121748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437670 2024-02-24 20:43:04.135 2024-02-24 20:53:05.96 Wind through c Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside https://example.com/ 10549 \N 437670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.1694874886756 0 \N \N f 0 \N 13 75742095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435736 2024-02-23 01:04:55.704 2024-02-23 01:14:57.238 \N Network interview indeed whether enjoy realize. Model fu https://example.com/ 18984 434635 434278.434635.435736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7858359350686 0 \N \N f 0 \N 0 77333281 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 437951 2024-02-25 04:44:35.173 2024-02-25 04:54:36.302 \N Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according r https://example.com/ 4177 437670 437670.437951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.574272245298 0 \N \N f 0 \N 1 53246507 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 444958 2024-03-01 13:12:34.75 2024-03-01 13:22:36.671 Body situation without keep Real who consider answer affect similar continue. Life almost nor well technology admit area thus. https://example.com/ 18180 \N 444958 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 5.29967449427723 0 \N \N f 0 \N 0 204798647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444980 2024-03-01 13:35:52.696 2024-03-01 13:45:53.721 Support structure season ene Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nScientist our accept million student where bring trade. Someone indeed consumer level i https://example.com/ 10611 \N 444980 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 11.7704982315093 0 \N \N f 0 \N 6 106039316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437747 2024-02-24 22:53:41.017 2024-02-24 23:03:42.679 \N Tell difference pattern carry join. Size factor particularl https://example.com/ 20109 437670 437670.437747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6924138033611 0 \N \N f 0 \N 1 12959774 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 432064 2024-02-20 00:36:04.666 2024-02-20 00:46:05.644 \N Billion very news personal develop career rate. Hair there but green list wa https://example.com/ 8985 432055 431966.432055.432064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0453620446541 0 \N \N f 0 \N 1 53596399 0 f f \N \N \N \N 431966 \N 0 0 \N \N f \N 432055 2024-02-20 00:23:01.757 2024-02-20 00:33:03.173 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nThir https://example.com/ 12819 431966 431966.432055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0337895276009 0 \N \N f 0 \N 2 15488685 0 f f \N \N \N \N 431966 \N 0 0 \N \N f \N 435554 2024-02-22 21:39:42.395 2024-02-22 21:49:43.859 \N Remember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent alrea https://example.com/ 2098 435276 435276.435554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4223597262978 0 \N \N f 0 \N 0 150085952 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N 445063 2024-03-01 14:32:57.881 2024-03-01 14:42:59.124 Network authority coach through modern subject. Three mu Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep gues https://example.com/ 20577 \N 445063 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 19.2835610894408 0 \N \N f 0 \N 0 232086530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445082 2024-03-01 14:45:47.737 2024-03-01 14:55:49.677 \N Structure require feel statement plan economy. Base trouble s https://example.com/ 14503 445040 444168.444327.445040.445082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3690829350267 0 \N \N f 0 \N 1 192526887 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 445069 2024-03-01 14:35:27.164 2024-03-01 14:45:29.465 \N Summer past television what in. Find give movement certain visit race. https://example.com/ 21481 444168 444168.445069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34073845689066 0 \N \N f 0 \N 0 102705952 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 435679 2024-02-22 23:59:31.89 2024-02-23 00:09:33.811 International yourself availab Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nCan operation lose dinner tax meet. Goal reflect when ne https://example.com/ 986 \N 435679 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.34859312320535 0 \N \N f 0 \N 10 189581483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445050 2024-03-01 14:21:36.753 2024-03-01 14:31:37.906 \N Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after wh https://example.com/ 19976 444998 444998.445050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6519561192119 0 \N \N f 0 \N 0 158576850 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 435745 2024-02-23 01:26:57.41 2024-02-23 01:36:59.017 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nCompar https://example.com/ 21577 435665 435579.435665.435745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10372093309176 0 \N \N f 0 \N 0 234086955 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 435708 2024-02-23 00:32:34.036 2024-02-23 00:42:35.011 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern so https://example.com/ 19043 435577 435577.435708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33365177963623 0 \N \N f 0 \N 0 202197559 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 445019 2024-03-01 14:07:17.238 2024-03-01 14:17:19.021 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure gov https://example.com/ 1740 444998 444998.445019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.012840062199 0 \N \N f 0 \N 0 88637880 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445056 2024-03-01 14:23:36.853 2024-03-01 14:33:37.938 \N Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Di https://example.com/ 14791 444998 444998.445056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14030499465709 0 \N \N f 0 \N 0 11281678 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445057 2024-03-01 14:23:46.917 2024-03-01 14:33:47.949 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV po https://example.com/ 13348 444998 444998.445057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.73180785112807 0 \N \N f 0 \N 0 174170508 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 444911 2024-03-01 12:22:25.491 2024-03-01 12:32:26.699 Detail economy still boy fine i Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nMost which usually inc https://example.com/ 19394 \N 444911 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.3580144884874 0 \N \N f 0 \N 13 134195704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445034 2024-03-01 14:15:33.441 2024-03-01 14:25:35.055 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. https://example.com/ 21334 444998 444998.445034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80273286797868 0 \N \N f 0 \N 0 167501401 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 445072 2024-03-01 14:36:43.249 2024-03-01 14:46:45.52 \N Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass eve https://example.com/ 15282 444715 444715.445072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.70367691456044 0 \N \N f 0 \N 0 227104184 0 f f \N \N \N \N 444715 \N 0 0 \N \N f \N 445065 2024-03-01 14:33:08.32 2024-03-01 14:43:10.002 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nThink month catch free. Tree involve de https://example.com/ 20730 444998 444998.445065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7262372542424 0 \N \N f 0 \N 0 222240713 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 437873 2024-02-25 02:28:13.314 2024-02-25 02:38:14.656 \N Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nBudget agent cent https://example.com/ 20586 437408 437408.437873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0597088069384 0 \N \N f 0 \N 0 182910641 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 441625 2024-02-28 09:48:01.888 2024-02-28 09:58:04.152 \N Though eye claim side government. Form program analysis some https://example.com/ 21589 441602 441602.441625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6388322017219 0 \N \N f 0 \N 0 29199222 0 f f \N \N \N \N 441602 \N 0 0 \N \N f \N 445083 2024-03-01 14:46:46.123 2024-03-01 14:56:47.45 Their bed hear p Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type. https://example.com/ 4768 \N 445083 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3518597676481 0 \N \N f 0 \N 1 245870400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432062 2024-02-20 00:33:42.932 2024-02-20 00:43:44.789 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nShake https://example.com/ 9355 431887 431872.431887.432062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.386902423142 0 \N \N f 0 \N 0 39840244 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 445047 2024-03-01 14:19:55.973 2024-03-01 14:29:57.431 \N If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return https://example.com/ 20509 444998 444998.445047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6529646394033 0 \N \N f 0 \N 0 64600554 0 f f \N \N \N \N 444998 \N 0 0 \N \N f \N 444939 2024-03-01 12:56:43.634 2024-03-01 13:06:44.801 \N East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps https://example.com/ 17494 444933 444911.444933.444939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1016501383872 0 \N \N f 0 \N 7 29858285 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 438374 2024-02-25 15:38:20.098 2024-02-25 15:48:21.344 \N Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nCommunity https://example.com/ 17124 438093 438093.438374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7220107760401 0 \N \N f 0 \N 4 82414534 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 445092 2024-03-01 14:51:47.551 2024-03-01 15:01:49.581 \N Republican to https://example.com/ 717 445088 445079.445085.445088.445092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.07789688429514 0 \N \N f 0 \N 1 57797444 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 432056 2024-02-20 00:28:54.99 2024-02-20 00:38:56.352 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nFloor among test material. Meet https://example.com/ 6384 432052 432052.432056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6366851397399 0 \N \N f 0 \N 0 191034108 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 442187 2024-02-28 15:34:02.927 2024-02-28 15:44:04.483 Blue the that local central middle themselves effect. Concern seat push spo Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement. https://example.com/ 6717 \N 442187 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.2038986406036 0 \N \N f 0 \N 1 130218878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444998 2024-03-01 13:56:11.811 2024-03-01 14:06:13.137 View especially nation nor third to husband. Net Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge https://example.com/ 13878 \N 444998 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.4936433668073 0 \N \N f 0 \N 27 202577743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432086 2024-02-20 01:40:19.323 2024-02-20 01:50:20.855 \N State https://example.com/ 3400 432078 432078.432086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0726387240269 0 \N \N f 0 \N 0 124933264 0 f f \N \N \N \N 432078 \N 0 0 \N \N f \N 445075 2024-03-01 14:39:28.304 2024-03-01 14:49:29.69 Wide hundred paper early. Together third attorney entire. And charge happy Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue sta https://example.com/ 20327 \N 445075 \N \N \N \N \N \N \N \N security \N ACTIVE \N 3.10552463423996 0 \N \N f 0 \N 0 201975410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445078 2024-03-01 14:44:07.429 2024-03-01 14:54:09.732 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick wit https://example.com/ 21157 445073 445073.445078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7846500285623 0 \N \N f 0 \N 0 130584599 0 f f \N \N \N \N 445073 \N 0 0 \N \N f \N 432057 2024-02-20 00:29:30.723 2024-02-20 00:39:31.646 \N Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town https://example.com/ 6136 432003 432003.432057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.11640199210242 0 \N \N f 0 \N 2 238416963 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 438539 2024-02-25 18:20:53.986 2024-02-25 18:30:55.234 \N Real late stop middle firm. Final be need by lawyer whom word however. Song I them https://example.com/ 19459 437453 437453.438539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3934491642982 0 \N \N f 0 \N 0 208358151 0 f f \N \N \N \N 437453 \N 0 0 \N \N f \N 445093 2024-03-01 14:52:43.895 2024-03-01 15:02:45.66 Hundred position Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project. https://example.com/ 18016 \N 445093 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 2.34034163618748 0 \N \N f 0 \N 0 161849367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432022 2024-02-19 23:43:33.726 2024-02-19 23:53:36.071 \N Own shoulder kind fact. Poor bring quite the better. Decide fi https://example.com/ 20058 431844 431844.432022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9238546089768 0 \N \N f 0 \N 1 221896078 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438484 2024-02-25 17:39:11.56 2024-02-25 17:49:13.343 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure https://example.com/ 899 438259 438259.438484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8096567075961 0 \N \N f 0 \N 0 6590690 0 f f \N \N \N \N 438259 \N 0 0 \N \N f \N 432089 2024-02-20 01:43:51.074 2024-02-20 01:53:52.727 \N If lose particular record natural camera good. Season serve so https://example.com/ 20479 432052 432052.432089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2398992106267 0 \N \N f 0 \N 0 97634204 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 437696 2024-02-24 21:13:15.504 2024-02-24 21:23:18.07 Raise land together yeah natural religi Leave relationship rule rich draw soon protect con https://example.com/ 21514 \N 437696 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 8.71896417476311 0 \N \N f 0 \N 2 20141494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431912 2024-02-19 21:45:20.618 2024-02-19 21:55:22.354 \N Cover well feel yes crime term final. Particularly take animal ma https://example.com/ 910 431816 431816.431912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.03795324475485 0 \N \N f 0 \N 2 15265139 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 444896 2024-03-01 12:13:08.378 2024-03-01 12:23:09.598 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop w https://example.com/ 4763 444874 444874.444896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1445438107266 0 \N \N f 0 \N 2 77243501 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 445094 2024-03-01 14:53:00.875 2024-03-01 15:03:02.06 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law e https://example.com/ 5806 444905 444874.444905.445094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1090990729689 0 \N \N f 0 \N 0 244544716 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 444905 2024-03-01 12:19:30.658 2024-03-01 12:29:31.757 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment https://example.com/ 17494 444874 444874.444905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0566222424858509 0 \N \N f 0 \N 2 115381715 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 432090 2024-02-20 01:48:12.74 2024-02-20 01:58:14.482 \N Animal character seek song. Compare put sometimes https://example.com/ 21532 431979 431918.431942.431979.432090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.24556607170047 0 \N \N f 0 \N 1 176686563 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 432071 2024-02-20 01:02:09.113 2024-02-20 01:12:10.519 \N Suffer same investment. Finish play also accoun https://example.com/ 10944 432052 432052.432071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.7857095032962 0 \N \N f 0 \N 0 177394910 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 438530 2024-02-25 18:13:28.73 2024-02-25 18:23:30.106 \N Artist fly billion same. Go may avoid exactly since three author mean. C https://example.com/ 1567 437951 437670.437951.438530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21953362269035 0 \N \N f 0 \N 0 155734064 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 445095 2024-03-01 14:55:26.506 2024-03-01 14:55:32.218 \N College quality yard box simi https://example.com/ 17321 445082 444168.444327.445040.445082.445095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0379698827555 0 \N \N f 0 \N 0 103499860 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444720 2024-03-01 10:17:47.639 2024-03-01 10:27:49.297 Before appear girl save technology. When speech Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble. https://example.com/ 4083 \N 444720 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 5.65616204411825 0 \N \N f 0 \N 0 178532602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445067 2024-03-01 14:34:00.74 2024-03-01 14:44:01.71 \N Surface field himself similar. Give fast past use sometimes. By https://example.com/ 5565 445003 445003.445067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.224737827481 0 \N \N f 0 \N 0 62075869 0 f f \N \N \N \N 445003 \N 0 0 \N \N f \N 438073 2024-02-25 10:25:50.194 2024-02-25 10:35:51.141 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him tri https://example.com/ 4059 438065 438065.438073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9580547755453 0 \N \N f 0 \N 4 4988579 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 440001 2024-02-26 21:36:19.387 2024-02-26 21:46:20.16 \N Go effect true such such wind market. Role suggest pe https://example.com/ 8080 439997 439990.439997.440001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1780424953716 0 \N \N f 0 \N 1 7819432 0 f f \N \N \N \N 439990 \N 0 0 \N \N f \N 445079 2024-03-01 14:44:35.502 2024-03-01 14:54:37.442 They another learn question lose to. Matter fear plant bank information per. Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice. https://example.com/ 656 \N 445079 \N \N \N \N \N \N \N \N health \N ACTIVE \N 6.66655584217381 0 \N \N f 0 \N 7 231062983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445089 2024-03-01 14:50:10.883 2024-03-01 15:00:11.891 \N Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particula https://example.com/ 9331 445015 444950.445015.445089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2595727500904 0 \N \N f 0 \N 1 33345020 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 444168 2024-02-29 19:59:40.892 2024-02-29 20:09:43.011 Surface field himse Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. K https://example.com/ 18660 \N 444168 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.1045301659485 0 \N \N f 0 \N 91 123490514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437875 2024-02-25 02:29:30.196 2024-02-25 02:39:31.656 \N Heavy spring happy city start sound. B https://example.com/ 18494 437874 437233.437495.437874.437875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6971003482816 0 \N \N f 0 \N 1 70237811 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 445010 2024-03-01 14:02:20.179 2024-03-01 14:12:21.204 \N Total nece https://example.com/ 11862 444907 444907.445010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.534899791643 0 \N \N f 0 \N 0 37518882 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 445087 2024-03-01 14:49:15.556 2024-03-01 14:59:17.655 \N Build leg whole describe peace above answer walk. Charge re https://example.com/ 18359 445085 445079.445085.445087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6442382725376 0 \N \N f 0 \N 0 5749859 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 445073 2024-03-01 14:38:25.069 2024-03-01 14:48:27.617 Every important man a free knowledge. Firm return actually decisi Cover well feel yes crime term final. Particularly take https://example.com/ 2361 \N 445073 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.1122007272373 0 \N \N f 0 \N 1 214209807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445040 2024-03-01 14:17:15.083 2024-03-01 14:27:17.577 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strate https://example.com/ 2639 444327 444168.444327.445040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1462048482907 0 \N \N f 0 \N 2 23740547 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 445081 2024-03-01 14:45:39.031 2024-03-01 14:55:39.98 \N Lead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large st https://example.com/ 13753 445074 444911.444933.444939.445053.445074.445081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26120513081725 0 \N \N f 0 \N 0 126535485 0 f f \N \N \N \N 444911 \N 0 0 \N \N f \N 435069 2024-02-22 14:57:27.792 2024-02-22 15:07:30.015 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stoc https://example.com/ 18336 433405 433359.433405.435069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9485727529046 0 \N \N f 0 \N 0 181456869 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 445098 2024-03-01 14:55:57.422 2024-03-01 14:56:02.537 \N Administration ef https://example.com/ 19690 444945 444874.444945.445098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.991659715985591 0 \N \N f 0 \N 0 57801572 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 445076 2024-03-01 14:39:50.877 2024-03-01 14:49:52.219 \N Trip improve born state similar appea https://example.com/ 17184 444907 444907.445076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.666389759337 0 \N \N f 0 \N 0 249620967 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 445101 2024-03-01 14:57:59.652 2024-03-01 14:58:04.9 \N Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class mess https://example.com/ 5293 445089 444950.445015.445089.445101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2500345407861 0 \N \N f 0 \N 0 65443093 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 435757 2024-02-23 02:06:46.074 2024-02-23 02:16:47.282 \N Drug you class operation. Have job sense. Face thank factor perform. North audience r https://example.com/ 15588 435744 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744.435757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8085764581019 0 \N \N f 0 \N 2 29888313 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435778 2024-02-23 03:03:58.227 2024-02-23 03:13:59.296 \N Some nat https://example.com/ 17673 435224 435224.435778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86046623064941 0 \N \N f 0 \N 0 155399807 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 445090 2024-03-01 14:50:49.097 2024-03-01 15:00:50.27 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wa https://example.com/ 19759 445080 445080.445090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7169001967599 0 \N \N f 0 \N 0 36488302 0 f f \N \N \N \N 445080 \N 0 0 \N \N f \N 435758 2024-02-23 02:07:05.368 2024-02-23 02:17:06.907 \N Mrs w https://example.com/ 20243 435757 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744.435757.435758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28877817368186 0 \N \N f 0 \N 0 180957493 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 445097 2024-03-01 14:55:47.084 2024-03-01 14:55:52.232 \N Prevent a https://example.com/ 4167 445088 445079.445085.445088.445097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9563013817762 0 \N \N f 0 \N 0 101514592 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 444874 2024-03-01 11:58:35.36 2024-03-01 12:08:36.766 Others high sea sense study audience. Adult fight try improve sit number me Cell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature ther https://example.com/ 8985 \N 444874 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0080031857694 0 \N \N f 0 \N 15 51710337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445015 2024-03-01 14:03:55.313 2024-03-01 14:13:57.374 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation ma https://example.com/ 17050 444950 444950.445015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.636282154091 0 \N \N f 0 \N 2 54229871 0 f f \N \N \N \N 444950 \N 0 0 \N \N f \N 445077 2024-03-01 14:43:37.162 2024-03-01 14:53:39.27 Whose eye what Main teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax cu https://example.com/ 10493 \N 445077 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 0.579832661531441 0 \N \N f 0 \N 1 237113862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438523 2024-02-25 18:09:44.653 2024-02-25 18:19:46.353 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Abili https://example.com/ 664 438520 438487.438512.438520.438523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.89963214032488 0 \N \N f 0 \N 0 82806684 0 f f \N \N \N \N 438487 \N 0 0 \N \N f \N 438520 2024-02-25 18:07:13.091 2024-02-25 18:17:14.279 \N Until must summer international. Would child language girl person institution resp https://example.com/ 9363 438512 438487.438512.438520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8909271405778 0 \N \N f 0 \N 1 214306790 0 f f \N \N \N \N 438487 \N 0 0 \N \N f \N 445105 2024-03-01 15:02:23.094 2024-03-01 15:02:28.286 \N Ever small reduce evidence quickly again true. Record heart enjoy social member. Unit budget https://example.com/ 19153 444947 444874.444947.445105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.73267062963661 0 \N \N f 0 \N 0 142458099 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 444462 2024-03-01 00:52:53.23 2024-03-01 01:02:54.755 Speech also his. White PM rather return. Indicate can Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebod https://example.com/ 14202 \N 444462 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 17.9024096047401 0 \N \N f 0 \N 0 135826807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 445100 2024-03-01 14:57:02.829 2024-03-01 14:57:08.241 \N Meeting expert body. End store vote across cost piece dinner. Another https://example.com/ 17046 444168 444168.445100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38258559310582 0 \N \N f 0 \N 1 18264840 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438542 2024-02-25 18:23:25.215 2024-02-25 18:33:26.442 \N Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particular https://example.com/ 11164 438536 438405.438416.438453.438464.438510.438518.438536.438542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6819541693477 0 \N \N f 0 \N 1 157496398 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 432063 2024-02-20 00:33:43.662 2024-02-20 00:43:45.265 \N Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder https://example.com/ 1472 432003 432003.432063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.02348069953121 0 \N \N f 0 \N 0 96528955 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 437869 2024-02-25 02:20:48.949 2024-02-25 02:30:50.718 Body situation Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible. https://example.com/ 19995 \N 437869 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.981767303658 0 \N \N f 0 \N 0 138248245 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438389 2024-02-25 15:54:40.86 2024-02-25 16:04:41.979 Doctor operation because training lose meeting western above. V Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission. https://example.com/ 19557 \N 438389 \N \N \N \N \N \N \N \N science \N ACTIVE \N 7.3847565704369 0 \N \N f 0 \N 5 200007076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432087 2024-02-20 01:43:11.484 2024-02-20 01:53:12.3 Always friend price benefit. Reflect seem help none truth myself responsib Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine fre https://example.com/ 5852 \N 432087 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.2965533169168 0 \N \N f 0 \N 0 52709291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432093 2024-02-20 02:07:45.638 2024-02-20 02:17:46.395 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine officia https://example.com/ 20523 431401 431401.432093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3373294167902 0 \N \N f 0 \N 0 156188788 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 445084 2024-03-01 14:47:00.289 2024-03-01 14:57:01.757 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nThemselves table various administration single save. Until pattern in https://example.com/ 7185 445083 445083.445084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.73159848280497 0 \N \N f 0 \N 0 206252315 0 f f \N \N \N \N 445083 \N 0 0 \N \N f \N 444950 2024-03-01 13:04:10.537 2024-03-01 13:14:12.946 Yard someone shake final someone pu Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two https://example.com/ 19690 \N 444950 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 15.2488940241494 0 \N \N f 0 \N 8 162011341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438545 2024-02-25 18:26:38.443 2024-02-25 18:36:39.592 Affect body wonder do still debate affect work. Bed town job nec Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would. https://example.com/ 20258 \N 438545 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 2.4367778922225 0 \N \N f 0 \N 1 245501288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438409 2024-02-25 16:11:57.76 2024-02-25 16:21:59.639 Forget throughout sea city first by remembe Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according. https://example.com/ 19570 \N 438409 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 15.7636124246588 0 \N \N f 0 \N 2 188322907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438549 2024-02-25 18:28:37.145 2024-02-25 18:38:38.325 \N Measure would expert nation two. Prove at t https://example.com/ 20301 438497 438409.438497.438549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.50240154093753 0 \N \N f 0 \N 0 62438797 0 f f \N \N \N \N 438409 \N 0 0 \N \N f \N 445086 2024-03-01 14:48:23.548 2024-03-01 14:58:25.797 \N Because fear practice program husband remain discussion record. Street alone suggest https://example.com/ 9362 445077 445077.445086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.8240259417757 0 \N \N f 0 \N 0 191581280 0 f f \N \N \N \N 445077 \N 0 0 \N \N f \N 437616 2024-02-24 19:15:40.503 2024-02-24 19:25:42.87 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among https://example.com/ 11314 437594 437583.437594.437616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8862260794295 0 \N \N f 0 \N 1 104626048 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 438543 2024-02-25 18:25:13.202 2024-02-25 18:35:14.793 \N Very executive American something myself so my. Art t https://example.com/ 17365 438534 438534.438543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.54688528527387 0 \N \N f 0 \N 0 31682123 0 f f \N \N \N \N 438534 \N 0 0 \N \N f \N 438547 2024-02-25 18:27:01.452 2024-02-25 18:37:02.608 \N Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nIndividual low nice character home Congress prevent. Wall realize language open majo https://example.com/ 10530 438545 438545.438547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7057020964641 0 \N \N f 0 \N 0 69731477 0 f f \N \N \N \N 438545 \N 0 0 \N \N f \N 441795 2024-02-28 11:58:07.322 2024-02-28 12:08:09.132 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission hel https://example.com/ 13622 441660 441660.441795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7023932346345 0 \N \N f 0 \N 0 93837090 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 438497 2024-02-25 17:47:11.786 2024-02-25 17:57:13.446 \N Speech radio kind know. Can travel though PM deep baby. Book eye region maga https://example.com/ 15806 438409 438409.438497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.71408682432014 0 \N \N f 0 \N 1 63566792 0 f f \N \N \N \N 438409 \N 0 0 \N \N f \N 432084 2024-02-20 01:24:08.225 2024-02-20 01:34:09.94 \N Enough blue provide https://example.com/ 18772 430885 429220.430885.432084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7398734713037 0 \N \N f 0 \N 1 47160258 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 438159 2024-02-25 12:01:23.675 2024-02-25 12:11:25.319 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. A https://example.com/ 21401 438093 438093.438159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.18868219183101 0 \N \N f 0 \N 8 23899692 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 431946 2024-02-19 22:13:31.921 2024-02-19 22:23:32.817 Doctor operation Book it view should. Impact cold others be without. Fly coach window letter. Addres https://example.com/ 12289 \N 431946 \N \N \N \N \N \N \N \N art \N ACTIVE \N 1.4003487770578 0 \N \N f 0 \N 2 31674108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438227 2024-02-25 13:22:27.574 2024-02-25 13:32:28.796 \N Material arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental fut https://example.com/ 8245 438168 438093.438159.438168.438227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5342044153874 0 \N \N f 0 \N 0 200252221 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438168 2024-02-25 12:09:52.83 2024-02-25 12:19:53.962 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nModel late institution once force rock. Range media refl https://example.com/ 18524 438159 438093.438159.438168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.981312109917489 0 \N \N f 0 \N 4 117983628 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 445104 2024-03-01 15:01:24.204 2024-03-01 15:01:30.274 \N Ground baby desc https://example.com/ 21413 444907 444907.445104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09962195709646 0 \N \N f 0 \N 0 201756090 0 f f \N \N \N \N 444907 \N 0 0 \N \N f \N 438526 2024-02-25 18:11:55.207 2024-02-25 18:21:56.203 \N Think month catch free. Tree involve deep resour https://example.com/ 21228 438519 438519.438526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6112278152042 0 \N \N f 0 \N 1 164763453 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 435777 2024-02-23 03:03:45.823 2024-02-23 03:13:47.542 \N Response https://example.com/ 698 435375 435375.435777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2454662623958 0 \N \N f 0 \N 0 234789228 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 445088 2024-03-01 14:49:27.191 2024-03-01 14:59:29.829 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we g https://example.com/ 2338 445085 445079.445085.445088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.698817676257 0 \N \N f 0 \N 3 61009375 0 f f \N \N \N \N 445079 \N 0 0 \N \N f \N 438537 2024-02-25 18:20:04.666 2024-02-25 18:30:06.164 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction https://example.com/ 5425 437996 437996.438537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5443537501899 0 \N \N f 0 \N 1 232474309 0 f f \N \N \N \N 437996 \N 0 0 \N \N f \N 442916 2024-02-29 00:22:02.733 2024-02-29 00:32:04.15 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member https://example.com/ 20022 442084 442084.442916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.80237562823201 0 \N \N f 0 \N 0 101771299 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 438099 2024-02-25 11:07:41.228 2024-02-25 11:17:43.141 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nBa https://example.com/ 19795 438093 438093.438099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4394639037287 0 \N \N f 0 \N 0 220906225 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438096 2024-02-25 11:02:15.081 2024-02-25 11:12:16.831 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview m https://example.com/ 9200 438093 438093.438096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3269846771197 0 \N \N f 0 \N 8 99213956 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438541 2024-02-25 18:22:58.068 2024-02-25 18:32:59.408 \N Development political left not every t https://example.com/ 2577 437696 437696.438541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9341554036588 0 \N \N f 0 \N 0 156698929 0 f f \N \N \N \N 437696 \N 0 0 \N \N f \N 430885 2024-02-19 15:54:09.722 2024-02-19 16:04:10.819 \N Might also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay souther https://example.com/ 20998 429220 429220.430885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3555785421874 0 \N \N f 0 \N 2 51687104 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 442948 2024-02-29 00:59:18.591 2024-02-29 01:09:19.966 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Windo https://example.com/ 15843 442880 442820.442876.442880.442948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30388213145824 0 \N \N f 0 \N 2 23438585 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 438479 2024-02-25 17:37:47.254 2024-02-25 17:47:48.696 After increase change edu Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel. https://example.com/ 8095 \N 438479 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 21.6101825363395 0 \N \N f 0 \N 1 105268602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438568 2024-02-25 18:56:32.232 2024-02-25 19:06:34.215 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join. https://example.com/ 21503 438231 438231.438568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.279559747912757 0 \N \N f 0 \N 1 189007472 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 445096 2024-03-01 14:55:46.095 2024-03-01 14:55:51.573 Piece write exist main Mrs mouth. Clearl Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street https://example.com/ 17166 \N 445096 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4831436483723 0 \N \N f 0 \N 0 156802766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432094 2024-02-20 02:07:55.76 2024-02-20 02:17:56.612 \N Quite way soldi https://example.com/ 11395 432091 429220.430149.430886.431298.432083.432091.432094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1698762397416 0 \N \N f 0 \N 0 82216656 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 444945 2024-03-01 13:00:14.89 2024-03-01 13:10:15.861 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able https://example.com/ 16842 444874 444874.444945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.9420527495137 0 \N \N f 0 \N 1 64446665 0 f f \N \N \N \N 444874 \N 0 0 \N \N f \N 437238 2024-02-24 14:18:20.843 2024-02-24 14:28:21.959 Quickly fill scie Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume col https://example.com/ 21116 \N 437238 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.1531318829099 0 \N \N f 0 \N 18 101696559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438559 2024-02-25 18:45:50.664 2024-02-25 18:55:52.758 \N Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory anothe https://example.com/ 1571 438393 438317.438393.438559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3094511749757 0 \N \N f 0 \N 0 191782743 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 435771 2024-02-23 02:40:23.822 2024-02-23 02:50:25.641 \N Pattern fear term. Second always control type movie. Gir https://example.com/ 16998 435527 434795.435274.435308.435527.435771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1188642378441 0 \N \N f 0 \N 0 45060995 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435779 2024-02-23 03:04:14.204 2024-02-23 03:14:16.105 \N Score mi https://example.com/ 20660 435151 435151.435779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33635690545282 0 \N \N f 0 \N 0 115103453 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 435785 2024-02-23 03:11:22.393 2024-02-23 03:21:23.671 \N Product an https://example.com/ 10719 434645 433828.433946.433993.434375.434645.435785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7939242332776 0 \N \N f 0 \N 0 162273065 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 435781 2024-02-23 03:04:26.208 2024-02-23 03:14:27.322 \N Name eve https://example.com/ 797 434990 434990.435781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0340979178827 0 \N \N f 0 \N 0 151513356 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 438550 2024-02-25 18:29:50.247 2024-02-25 18:39:51.457 \N Not reveal allow arm million popular wait well. Represent into anyone bil https://example.com/ 1567 438526 438519.438526.438550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.400447201238663 0 \N \N f 0 \N 0 25537058 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 435788 2024-02-23 03:14:13.89 2024-02-23 03:24:15.964 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top milit https://example.com/ 649 435544 435544.435788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9048667437566 0 \N \N f 0 \N 0 220923173 0 f f \N \N \N \N 435544 \N 0 0 \N \N f \N 432125 2024-02-20 02:53:50.05 2024-02-20 03:03:51.593 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site sh https://example.com/ 1772 432096 432096.432125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1462535993237 0 \N \N f 0 \N 0 20526849 0 f f \N \N \N \N 432096 \N 0 0 \N \N f \N 432097 2024-02-20 02:14:48.975 2024-02-20 02:24:50.276 \N Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportuni https://example.com/ 6360 431844 431844.432097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6093210964725 0 \N \N f 0 \N 0 184627717 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 436508 2024-02-23 17:57:37.61 2024-02-23 18:07:39.863 Point box near. Affect glass next behavior chair week floor Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nIndividual low nice character home Congress prevent. Wall realize lang https://example.com/ 14213 \N 436508 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.76439415307492 0 \N \N f 0 \N 1 179171942 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438557 2024-02-25 18:41:18.582 2024-02-25 18:51:19.972 \N Value have anyone crime professional. Close or p https://example.com/ 11164 438519 438519.438557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3732344296183 0 \N \N f 0 \N 1 211175164 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 431997 2024-02-19 23:19:35.049 2024-02-19 23:29:37.108 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry https://example.com/ 3304 404085 404046.404085.431997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.14055488881729 0 \N \N f 0 \N 1 204938548 0 f f \N \N \N \N 404046 \N 0 0 \N \N f \N 432098 2024-02-20 02:16:58.753 2024-02-20 02:27:00.347 \N Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat https://example.com/ 20490 431997 404046.404085.431997.432098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.24886530377122 0 \N \N f 0 \N 0 248885725 0 f f \N \N \N \N 404046 \N 0 0 \N \N f \N 438558 2024-02-25 18:42:24.79 2024-02-25 18:52:25.724 \N Friend growth election water degree probably. Score spring tre https://example.com/ 3504 438551 438551.438558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.53498807075245 0 \N \N f 0 \N 0 64701388 0 f f \N \N \N \N 438551 \N 0 0 \N \N f \N 435316 2024-02-22 17:48:28.977 2024-02-22 17:58:30.63 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build https://example.com/ 3729 435311 435242.435311.435316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9638438091094 0 \N \N f 0 \N 0 105733866 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 438569 2024-02-25 18:57:40.012 2024-02-25 19:07:41.166 \N Purpose teacher ma https://example.com/ 18511 438202 438202.438569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1318028860569 0 \N \N f 0 \N 0 157573526 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 438564 2024-02-25 18:50:54.565 2024-02-25 19:00:56.386 \N Light environmental here s https://example.com/ 9026 438202 438202.438564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0859879134589 0 \N \N f 0 \N 0 165742799 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 438447 2024-02-25 17:06:41.506 2024-02-25 17:16:43.53 Administration effort live any between particular friend. Raise thank late Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion. https://example.com/ 17522 \N 438447 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8839925112907 0 \N \N f 0 \N 0 12845457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438580 2024-02-25 19:10:05.859 2024-02-25 19:20:07.135 \N Hour land give ground child range. Former receive election. Mind day scene challenge. Theory https://example.com/ 7766 438387 438325.438387.438580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0016134247883 0 \N \N f 0 \N 0 33448586 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432116 2024-02-20 02:44:08.704 2024-02-20 02:54:10.259 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perh https://example.com/ 688 432052 432052.432116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26176507318769 0 \N \N f 0 \N 0 68783815 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 435840 2024-02-23 05:00:04.655 2024-02-23 05:10:05.953 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agre https://example.com/ 20858 435811 434278.434503.434522.434598.434602.435622.435772.435775.435811.435840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44033771563507 0 \N \N f 0 \N 0 156413890 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 432108 2024-02-20 02:33:05.078 2024-02-20 02:43:06.733 \N Mod https://example.com/ 17690 432078 432078.432108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.7942055682296 0 \N \N f 0 \N 0 152131284 0 f f \N \N \N \N 432078 \N 0 0 \N \N f \N 432102 2024-02-20 02:22:02.324 2024-02-20 02:32:03.75 Second point director operation. Soon fac Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter. https://example.com/ 20840 \N 432102 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 13.2240733063029 0 \N \N f 0 \N 0 81596290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438189 2024-02-25 12:45:05.759 2024-02-25 12:55:07.117 Fear size with rich skin decade community. F Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself. https://example.com/ 9332 \N 438189 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.3096785231515 0 \N \N f 0 \N 1 45188037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435856 2024-02-23 05:28:07.512 2024-02-23 05:38:08.689 \N Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive un https://example.com/ 2188 435610 435610.435856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6837352851596 0 \N \N f 0 \N 0 33020285 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 432119 2024-02-20 02:46:37.857 2024-02-20 02:56:39.172 \N Speak organi https://example.com/ 10849 432057 432003.432057.432119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.77552363058628 0 \N \N f 0 \N 1 154966694 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 438576 2024-02-25 19:06:25.671 2024-02-25 19:16:26.971 \N Human guy both. Ret https://example.com/ 5557 438566 438209.438566.438576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6134580253481 0 \N \N f 0 \N 0 93865541 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438577 2024-02-25 19:06:35.221 2024-02-25 19:16:36.551 \N Much wait girl sport picture clearly bank. Only https://example.com/ 20606 430771 430771.438577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5160306109171 0 \N \N f 0 \N 0 195875847 0 f f \N \N \N \N 430771 \N 0 0 \N \N f \N 431839 2024-02-19 20:32:51.791 2024-02-19 20:42:53.399 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despit https://example.com/ 12959 431836 431816.431826.431828.431829.431836.431839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7084408002675 0 \N \N f 0 \N 1 21891399 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 442217 2024-02-28 15:42:53.332 2024-02-28 15:52:54.443 \N Leader partner among describe unit star it https://example.com/ 6653 441560 441560.442217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6617936282124 0 \N \N f 0 \N 0 193816372 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 438379 2024-02-25 15:43:07.686 2024-02-25 15:53:09.025 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politi https://example.com/ 10016 438369 438093.438133.438148.438167.438274.438369.438379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1604772500448 0 \N \N f 0 \N 1 247857692 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 366864 2023-12-26 14:49:36.326 2023-12-26 14:59:37.884 Mission alone its Between buy half story. Buy whom sig https://example.com/ 16842 \N 366864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4184522415061 0 \N \N f 0 \N 3 186918261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433828 2024-02-21 14:39:01.357 2024-02-21 14:49:02.845 Human guy both. Return once place four wha Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed. https://example.com/ 19911 \N 433828 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 25.3567041392464 0 \N \N f 0 \N 110 107447615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442269 2024-02-28 16:02:14.899 2024-02-28 16:12:16.777 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand https://example.com/ 17953 442145 442084.442145.442269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49993049883309 0 \N \N f 0 \N 1 243786387 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 438586 2024-02-25 19:20:59.103 2024-02-25 19:31:01.534 \N Cultural everyone partner bed differenc https://example.com/ 20871 437329 437044.437329.438586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8043002459793 0 \N \N f 0 \N 0 64889718 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 432103 2024-02-20 02:22:27.18 2024-02-20 02:32:28.442 \N Themselves table various administration single save. Until pattern include spec https://example.com/ 18932 432003 432003.432103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65893203795302 0 \N \N f 0 \N 0 90153753 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 442216 2024-02-28 15:42:17.479 2024-02-28 15:52:18.685 \N Must particular he lose claim appear son stock. Within level deep down firm bui https://example.com/ 20603 442191 442191.442216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4169841950804 0 \N \N f 0 \N 1 190506959 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 442673 2024-02-28 20:36:26.8 2024-02-28 20:46:29.264 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course real https://example.com/ 20554 442663 442339.442621.442663.442673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09858619548686 0 \N \N f 0 \N 2 122864543 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 438587 2024-02-25 19:23:07.315 2024-02-25 19:33:09.176 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approac https://example.com/ 21395 438546 438438.438546.438587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9719600337881 0 \N \N f 0 \N 0 142761544 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 442218 2024-02-28 15:43:14.438 2024-02-28 15:53:16.894 \N Center stand near long painting left sense. https://example.com/ 16684 441560 441560.442218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0976087645007 0 \N \N f 0 \N 0 136189410 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 432112 2024-02-20 02:38:01.946 2024-02-20 02:48:03.243 \N Become popular local cut evidence. Available stage https://example.com/ 21520 430859 430626.430859.432112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65784034701191 0 \N \N f 0 \N 0 213592822 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432128 2024-02-20 02:57:11.178 2024-02-20 03:07:12.105 \N Later piece sk https://example.com/ 21599 431994 431994.432128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2903508840833 0 \N \N f 0 \N 0 169808492 0 f f \N \N \N \N 431994 \N 0 0 \N \N f \N 431966 2024-02-19 22:39:19.18 2024-02-19 22:49:20.57 Chance near song measure every physical Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career producti https://example.com/ 14545 \N 431966 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.7391860509531 0 \N \N f 0 \N 4 129751612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438534 2024-02-25 18:17:44.58 2024-02-25 18:27:46.171 Hope more garden development record. Every move another every tab Report night class. Fight PM that food. Event market ground both product he https://example.com/ 866 \N 438534 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.85613460194979 0 \N \N f 0 \N 2 84858383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435655 2024-02-22 23:25:21.575 2024-02-22 23:35:22.918 Sell attention budget indicate. Others such agree Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil networ https://example.com/ 1046 \N 435655 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.0049173456347 0 \N \N f 0 \N 0 72544440 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438552 2024-02-25 18:35:00.723 2024-02-25 18:45:02.469 \N Prevent machine source white and. Fact together father find appear point. Southern sister leave part https://example.com/ 16830 438534 438534.438552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3181021148965 0 \N \N f 0 \N 0 240921416 0 f f \N \N \N \N 438534 \N 0 0 \N \N f \N 432144 2024-02-20 03:26:38.707 2024-02-20 03:36:39.971 \N Tell billion now tough chair fight. https://example.com/ 16667 432033 431946.432033.432144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7530798632779 0 \N \N f 0 \N 0 28154908 0 f f \N \N \N \N 431946 \N 0 0 \N \N f \N 438567 2024-02-25 18:56:04.983 2024-02-25 19:06:06.313 \N Though eye claim side government. Form program analysis somebody in https://example.com/ 20525 438563 438325.438345.438458.438563.438567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0130868656481 0 \N \N f 0 \N 0 182436555 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432133 2024-02-20 03:04:05.822 2024-02-20 03:14:07.229 \N Condition door drive write. Firm simple test. Why m https://example.com/ 3409 431918 431918.432133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8003525520245 0 \N \N f 0 \N 0 191868393 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 431873 2024-02-19 21:17:47.707 2024-02-19 21:27:48.401 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address https://example.com/ 8080 431872 431872.431873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39787490022785 0 \N \N f 0 \N 3 201926168 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 432003 2024-02-19 23:28:02.698 2024-02-19 23:38:05.303 Responsibility record term buy. Or hear long. Small wide truth Author professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various. https://example.com/ 19446 \N 432003 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 2.89907151487498 0 \N \N f 0 \N 15 50701242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431994 2024-02-19 23:11:27.563 2024-02-19 23:21:28.969 Fund bring design try claim attention. Old imagine hand prevent Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water. https://example.com/ 3377 \N 431994 \N \N \N \N \N \N \N \N art \N ACTIVE \N 13.3497462928723 0 \N \N f 0 \N 2 9178058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441474 2024-02-28 05:04:14.971 2024-02-28 05:14:16.374 \N Build toward blac https://example.com/ 21458 440923 440422.440923.441474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3703121577537 0 \N \N f 0 \N 0 117143795 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 432139 2024-02-20 03:14:47.035 2024-02-20 03:24:48.589 \N Marriage interview green school study foot home like. Sit https://example.com/ 4128 430859 430626.430859.432139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9464961210893 0 \N \N f 0 \N 0 42333251 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 438584 2024-02-25 19:19:22.83 2024-02-25 19:29:25.081 \N Author nearly sea https://example.com/ 11999 438573 438573.438584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5599267899061 0 \N \N f 0 \N 1 216974389 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 432134 2024-02-20 03:08:26.244 2024-02-20 03:18:27.268 \N Mission alone i https://example.com/ 10484 430872 430795.430872.432134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.928766818875282 0 \N \N f 0 \N 0 160316435 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 438585 2024-02-25 19:19:31.357 2024-02-25 19:29:33.147 \N Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book a https://example.com/ 20781 438093 438093.438585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7305277140349 0 \N \N f 0 \N 0 242456152 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438592 2024-02-25 19:31:18.121 2024-02-25 19:41:19.714 Eight represent last serious these she future. Option television culture fa She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organiza https://example.com/ 21522 \N 438592 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.1917128737828 0 \N \N f 0 \N 0 125709999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431807 2024-02-19 20:00:49.998 2024-02-19 20:10:52.073 \N Blue why news enjoy include movie. Artist later store film. Senior recor https://example.com/ 987 431800 431800.431807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.42469197157916 0 \N \N f 0 \N 1 139082799 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 435844 2024-02-23 05:07:17.564 2024-02-23 05:17:19.403 \N Board Mr bar white alone hot. Court class former mo https://example.com/ 18608 435098 435046.435098.435844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63245628057131 0 \N \N f 0 \N 0 210906762 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435098 2024-02-22 15:24:11.693 2024-02-22 15:34:12.807 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nReal who c https://example.com/ 19235 435046 435046.435098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34883637256148 0 \N \N f 0 \N 1 149104219 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 438571 2024-02-25 19:00:04.585 2024-02-25 19:10:06.805 Bag couple hot buy you \N https://example.com/ 17171 \N 438571 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.45209455799893 0 \N \N f 0 \N 1 227845847 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438506 2024-02-25 17:54:33.5 2024-02-25 18:04:34.843 \N Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nMrs when number place under moment. Own including always especially news. Appro https://example.com/ 11522 438317 438317.438506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0057606527285 0 \N \N f 0 \N 1 50402228 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 443147 2024-02-29 07:13:52.355 2024-02-29 07:23:53.498 \N State wall myself interview will. Watch ahe https://example.com/ 9169 443145 443122.443133.443145.443147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8486410074414 0 \N \N f 0 \N 0 130515873 0 f f \N \N \N \N 443122 \N 0 0 \N \N f \N 432138 2024-02-20 03:14:35.891 2024-02-20 03:24:37.481 \N Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet developmen https://example.com/ 21412 432003 432003.432138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40749068990722 0 \N \N f 0 \N 0 42355028 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 432120 2024-02-20 02:47:49.535 2024-02-20 02:57:50.95 \N Ever https://example.com/ 20434 432052 432052.432120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2372837349495 0 \N \N f 0 \N 2 148489316 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 432190 2024-02-20 06:52:47.631 2024-02-20 07:02:49.314 \N Mi https://example.com/ 19952 430744 429644.429651.430284.430744.432190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.461379665473949 0 \N \N f 0 \N 0 34860181 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 434475 2024-02-22 02:00:51.069 2024-02-22 02:10:52.493 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nThink cover scientist financial attention https://example.com/ 19664 433828 433828.434475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2939495265198 0 \N \N f 0 \N 4 97035876 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438574 2024-02-25 19:03:04.598 2024-02-25 19:13:06.527 Couple writer life commercial art. Medical bank mind place popula Key group certai https://example.com/ 5444 \N 438574 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.30936400919982 0 \N \N f 0 \N 0 36261002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441723 2024-02-28 11:12:27.874 2024-02-28 11:22:29.127 \N Scientist machine manager. Place movement kitchen indeed these c https://example.com/ 10591 441669 441669.441723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8909411063212 0 \N \N f 0 \N 0 146612480 0 f f \N \N \N \N 441669 \N 0 0 \N \N f \N 436794 2024-02-24 00:58:37.568 2024-02-24 01:08:39.727 \N Think https://example.com/ 798 436755 436755.436794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4208415548744 0 \N \N f 0 \N 0 186980208 0 f f \N \N \N \N 436755 \N 0 0 \N \N f \N 432164 2024-02-20 04:13:22.929 2024-02-20 04:23:24.219 \N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nLive class artist pull nearly poor. Use vote religious. Late https://example.com/ 9695 430626 430626.432164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7904752538974 0 \N \N f 0 \N 0 198239274 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 441134 2024-02-27 21:42:57.813 2024-02-27 21:52:58.995 \N Nature wrong meeting whatever. Manage product me stay police. https://example.com/ 649 440959 440959.441134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0447352818857 0 \N \N f 0 \N 0 12059300 0 f f \N \N \N \N 440959 \N 0 0 \N \N f \N 441140 2024-02-27 21:49:05.827 2024-02-27 21:59:06.94 \N Sug https://example.com/ 16670 440898 440898.441140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9296855206147 0 \N \N f 0 \N 0 19386916 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 443136 2024-02-29 06:58:20.067 2024-02-29 07:08:21.391 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume https://example.com/ 980 442160 441695.441712.441750.441801.441803.442135.442141.442148.442157.442160.443136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2830469328 0 \N \N f 0 \N 0 79618479 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443137 2024-02-29 06:59:08.919 2024-02-29 07:09:10.809 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow them https://example.com/ 9026 443109 442632.443095.443109.443137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87390087151768 0 \N \N f 0 \N 1 194173144 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 441019 2024-02-27 20:03:27.181 2024-02-27 20:13:29.311 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of https://example.com/ 5775 440870 440692.440870.441019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0380477190094 0 \N \N f 0 \N 2 67353815 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 432169 2024-02-20 04:35:15.852 2024-02-20 04:45:17.707 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local v https://example.com/ 21339 430607 430607.432169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1618822207979 0 \N \N f 0 \N 0 227420898 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 436027 2024-02-23 10:58:21.222 2024-02-23 10:58:27.099 \N Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general simila https://example.com/ 18525 30271 30271.436027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.74645882547861 0 \N \N f 0 \N 0 78664158 0 f f \N \N \N \N 30271 \N 0 0 \N \N f \N 443140 2024-02-29 07:03:37.733 2024-02-29 07:13:39.278 \N Identify health spend could. https://example.com/ 19156 442985 442985.443140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9241640458792 0 \N \N f 0 \N 0 203246002 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 431923 2024-02-19 21:56:07.015 2024-02-19 22:06:08.049 \N Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss https://example.com/ 19286 431873 431872.431873.431923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6853264304657 0 \N \N f 0 \N 2 166441962 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 431931 2024-02-19 22:01:05.79 2024-02-19 22:11:06.955 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong ima https://example.com/ 18517 430510 430488.430510.431931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2441601891622 0 \N \N f 0 \N 0 9013600 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 432129 2024-02-20 03:00:08.803 2024-02-20 03:10:10.531 Model fall part. Teach why have read tonight technology establish note. Region b Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character. https://example.com/ 21430 \N 432129 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5167366773645 0 \N \N f 0 \N 0 92803142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432173 2024-02-20 05:00:15.573 2024-02-20 05:10:16.585 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challen https://example.com/ 2963 432154 432101.432154.432173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.494249082389047 0 \N \N f 0 \N 0 195876898 0 f f \N \N \N \N 432101 \N 0 0 \N \N f \N 436755 2024-02-23 23:55:50.368 2024-02-24 00:05:52.771 Member car la Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually requi https://example.com/ 913 \N 436755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1028624295685 0 \N \N f 0 \N 3 93665749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432162 2024-02-20 04:11:12.453 2024-02-20 04:21:13.858 \N Ball training later think quite. Proce https://example.com/ 8095 432052 432052.432162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0764482071389949 0 \N \N f 0 \N 0 63638919 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 438610 2024-02-25 20:07:08.311 2024-02-25 20:17:10.746 \N Various discussion light https://example.com/ 19796 438573 438573.438610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2785819544821 0 \N \N f 0 \N 1 210629091 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 437973 2024-02-25 06:32:59.36 2024-02-25 06:43:00.908 \N Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president https://example.com/ 2780 437970 437966.437970.437973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.672330297976 0 \N \N f 0 \N 2 174607570 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 432172 2024-02-20 04:57:05.293 2024-02-20 05:07:06.366 \N Various discussion https://example.com/ 19189 432119 432003.432057.432119.432172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.69836055206786 0 \N \N f 0 \N 0 6784892 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 431465 2024-02-19 19:02:07.625 2024-02-19 19:12:08.859 \N Resource morning long fast civ https://example.com/ 19777 369343 369343.431465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6306904503839 0 \N \N f 0 \N 0 89991757 0 f f \N \N \N \N 369343 \N 0 0 \N \N f \N 432171 2024-02-20 04:50:06.352 2024-02-20 05:00:07.495 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more becaus https://example.com/ 20998 431844 431844.432171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8095741003455 0 \N \N f 0 \N 0 199188438 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432180 2024-02-20 06:00:07.021 2024-02-20 06:00:12.185 \N Successful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife https://example.com/ 635 432179 432179.432180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0685606642563 0 \N \N f 0 \N 0 247574288 0 f f \N \N \N \N 432179 \N 0 0 \N \N f \N 442261 2024-02-28 15:59:30.534 2024-02-28 16:09:32.809 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arriv https://example.com/ 666 442077 442023.442070.442077.442261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09103785464227 0 \N \N f 0 \N 0 238456141 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 432154 2024-02-20 03:58:26.271 2024-02-20 04:08:27.688 \N Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nOur because trip contain onto simple. Away wear seek relation https://example.com/ 17944 432101 432101.432154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5048983911258 0 \N \N f 0 \N 1 25718043 0 f f \N \N \N \N 432101 \N 0 0 \N \N f \N 443822 2024-02-29 16:43:43.459 2024-02-29 16:53:44.805 \N Finish only air provide. W https://example.com/ 19981 441483 441169.441483.443822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7536162180224 0 \N \N f 0 \N 0 139390594 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 432174 2024-02-20 05:07:58.164 2024-02-20 05:17:59.745 \N Drive so https://example.com/ 2459 432106 432106.432174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5807691700434 0 \N \N f 0 \N 0 138333946 0 f f \N \N \N \N 432106 \N 0 0 \N \N f \N 439210 2024-02-26 12:50:52.434 2024-02-26 13:00:53.679 \N Price occur station prepare be marriage. Anything en https://example.com/ 4521 439139 439139.439210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1302243608122 0 \N \N f 0 \N 0 54442287 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435202 2024-02-22 16:36:23.041 2024-02-22 16:46:25.25 \N Leader partner among descr https://example.com/ 11590 432713 430501.432713.435202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0150389975931 0 \N \N f 0 \N 0 202643047 0 f f \N \N \N \N 430501 \N 0 0 \N \N f \N 439730 2024-02-26 18:29:18.9 2024-02-26 18:39:20.862 \N Score player recognize carry. Value wish form build moth https://example.com/ 20208 439728 439721.439728.439730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9916980994037 0 \N \N f 0 \N 1 9458909 0 f f \N \N \N \N 439721 \N 0 0 \N \N f \N 433880 2024-02-21 15:46:04.559 2024-02-21 15:56:06.447 \N Check worry https://example.com/ 17209 433713 433713.433880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2728198592292 0 \N \N f 0 \N 0 167608918 0 f f \N \N \N \N 433713 \N 0 0 \N \N f \N 431940 2024-02-19 22:08:56.642 2024-02-19 22:18:58.477 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style an https://example.com/ 15088 431799 430854.430855.430874.430876.431799.431940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45383987280368 0 \N \N f 0 \N 0 62068426 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 439588 2024-02-26 16:39:21.859 2024-02-26 16:49:23.41 \N Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat https://example.com/ 684 438583 438583.439588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3227224443968 0 \N \N f 0 \N 1 86039614 0 f f \N \N \N \N 438583 \N 0 0 \N \N f \N 432181 2024-02-20 06:02:34.203 2024-02-20 06:12:35.288 \N Social impact learn single election send senior. Dog difference effect give issue. Change then https://example.com/ 20179 432166 432101.432166.432181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3089265547139 0 \N \N f 0 \N 0 212676437 0 f f \N \N \N \N 432101 \N 0 0 \N \N f \N 431949 2024-02-19 22:16:10.817 2024-02-19 22:26:11.835 Family happy son budget speech acr Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn. https://example.com/ 9496 \N 431949 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.42687923356078 0 \N \N f 0 \N 1 3314484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435776 2024-02-23 03:02:26.728 2024-02-23 03:12:28.332 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nBecome popular local cut evidence. Availabl https://example.com/ 10469 435488 435488.435776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9969624309483 0 \N \N f 0 \N 3 93508762 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 432165 2024-02-20 04:26:25.882 2024-02-20 04:36:27.559 Through hope mouth score task suggest consumer certainly. Health continue import Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find. https://example.com/ 19841 \N 432165 \N \N \N \N \N \N \N \N history \N ACTIVE \N 28.3455694118195 0 \N \N f 0 \N 1 97359820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432156 2024-02-20 04:00:04.535 2024-02-20 04:10:05.755 Rock source rate fact leave \N https://example.com/ 20137 \N 432156 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 21.7855443836772 0 \N \N f 0 \N 1 116320518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432177 2024-02-20 05:41:20.746 2024-02-20 05:51:22.142 \N See cell reach mouth prove. Ex https://example.com/ 674 432152 432113.432146.432152.432177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8857181560229 0 \N \N f 0 \N 0 222172072 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 432049 2024-02-20 00:07:06.896 2024-02-20 00:17:07.904 \N M https://example.com/ 18271 430503 430488.430503.432049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.85386549132431 0 \N \N f 0 \N 0 148203201 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 432184 2024-02-20 06:22:49.906 2024-02-20 06:32:50.999 \N Break site describe address computer. Sy https://example.com/ 2832 430771 430771.432184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.46782871765633 0 \N \N f 0 \N 0 177647690 0 f f \N \N \N \N 430771 \N 0 0 \N \N f \N 434293 2024-02-21 21:15:56.606 2024-02-21 21:25:57.829 May building suffer accept thousand race record Third would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio https://example.com/ 1740 \N 434293 \N \N \N \N \N \N \N \N security \N ACTIVE \N 20.7876613526411 0 \N \N f 0 \N 0 216491046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438583 2024-02-25 19:14:43.859 2024-02-25 19:24:45.4 Cut firm blood tell decision direction. Allow allow degree discu Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go hi https://example.com/ 15588 \N 438583 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 5.89954554824459 0 \N \N f 0 \N 6 107936685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431981 2024-02-19 22:58:13.514 2024-02-19 23:08:15.159 \N Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do communi https://example.com/ 20660 431872 431872.431981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2981195722913 0 \N \N f 0 \N 1 242520073 0 f f \N \N \N \N 431872 \N 0 0 \N \N f \N 432183 2024-02-20 06:13:28.938 2024-02-20 06:23:30.44 \N Grow level surface point four. P https://example.com/ 5377 432146 432113.432146.432183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9829542865973 0 \N \N f 0 \N 0 69610498 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 432060 2024-02-20 00:32:00.069 2024-02-20 00:42:01.22 Something black staff. Gla Than level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off. https://example.com/ 21338 \N 432060 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.357430341503 0 \N \N f 0 \N 0 191830421 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442312 2024-02-28 16:18:55.387 2024-02-28 16:28:57.152 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nGet executive stock move https://example.com/ 976 442284 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198.442236.442256.442276.442284.442312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1808773252958 0 \N \N f 0 \N 0 200806162 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 432188 2024-02-20 06:45:53.585 2024-02-20 06:55:55.211 \N East fast despite responsibility machine. Listen mean about since. Bad account window https://example.com/ 21352 432113 432113.432188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1625618009927 0 \N \N f 0 \N 0 71711320 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 444178 2024-02-29 20:10:27.528 2024-02-29 20:20:28.792 \N College quality yard box similar. Respon https://example.com/ 2367 443903 443545.443616.443899.443903.444178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53685375345718 0 \N \N f 0 \N 0 249196670 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 435808 2024-02-23 03:51:34.781 2024-02-23 04:01:36.048 \N Book ok power church man machine. Where stop customer street response. Game station old. Lea https://example.com/ 19668 435805 435805.435808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.324491605316446 0 \N \N f 0 \N 0 249393923 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 443936 2024-02-29 17:42:17.01 2024-02-29 17:52:18.508 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. Ne https://example.com/ 13246 443833 443833.443936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4467246083722 0 \N \N f 0 \N 0 195529903 0 f f \N \N \N \N 443833 \N 0 0 \N \N f \N 432194 2024-02-20 06:59:07.769 2024-02-20 07:09:09.23 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nEdge lot space military without many term others. Religious wear economy can since. Human i https://example.com/ 20704 432101 432101.432194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5550640408691 0 \N \N f 0 \N 0 52477701 0 f f \N \N \N \N 432101 \N 0 0 \N \N f \N 432196 2024-02-20 07:00:05.126 2024-02-20 07:00:10.222 \N Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every https://example.com/ 7960 432195 432195.432196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.150617129498 0 \N \N f 0 \N 0 229547940 0 f f \N \N \N \N 432195 \N 0 0 \N \N f \N 438627 2024-02-25 20:30:07.21 2024-02-25 20:40:08.525 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic p https://example.com/ 21498 435261 435261.438627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5797516494214 0 \N \N f 0 \N 0 82361004 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 437850 2024-02-25 01:48:01.716 2024-02-25 01:58:02.879 \N Wide deep ahead effort. Somebody issue single physical benefit r https://example.com/ 19038 437502 437502.437850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2915309292853 0 \N \N f 0 \N 0 156354885 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 437720 2024-02-24 22:01:27.502 2024-02-24 22:11:30.373 South amount subject easy offi Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relat https://example.com/ 11956 \N 437720 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.0351754619216 0 \N \N f 0 \N 3 171574783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438626 2024-02-25 20:25:15.726 2024-02-25 20:35:17.151 \N Something black staff. Glass hospital force stand everybody sure low. In https://example.com/ 2711 438209 438209.438626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64257455834637 0 \N \N f 0 \N 0 168436498 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 436808 2024-02-24 01:26:54.705 2024-02-24 01:36:56.029 \N Action prevent Repu https://example.com/ 9307 436759 436759.436808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1869404190007 0 \N \N f 0 \N 0 44228493 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 436800 2024-02-24 01:18:33.092 2024-02-24 01:28:34.055 \N Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago althou https://example.com/ 14271 436776 436720.436776.436800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4530271993975 0 \N \N f 0 \N 0 171634897 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437672 2024-02-24 20:45:05.862 2024-02-24 20:55:07.896 \N Professor entire information week article family fear effort. Model have through main look light food you. https://example.com/ 18472 437502 437502.437672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8311447171395 0 \N \N f 0 \N 0 206619327 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 438440 2024-02-25 16:59:43.964 2024-02-25 17:09:45.022 \N Happy strong Democrat some goal new service. Hair employee day show identify https://example.com/ 11829 438325 438325.438440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47900162566181 0 \N \N f 0 \N 1 117910924 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 436057 2024-02-23 11:37:15.313 2024-02-23 11:47:16.154 Support structure season ene Realize store science for pass. Sit decision n https://example.com/ 11819 \N 436057 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 18.5241555577355 0 \N \N f 0 \N 0 182185741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438628 2024-02-25 20:33:18.419 2024-02-25 20:43:19.694 \N Federal anyone interview continue eat https://example.com/ 664 438594 438093.438351.438594.438628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3611414982795 0 \N \N f 0 \N 0 137984554 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438444 2024-02-25 17:05:09.815 2024-02-25 17:15:11.03 \N Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simpl https://example.com/ 10063 438397 438397.438444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.916229885957982 0 \N \N f 0 \N 0 169286540 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 437155 2024-02-24 13:06:00.891 2024-02-24 13:16:02.133 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level on https://example.com/ 10611 436811 436811.437155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3380944245367 0 \N \N f 0 \N 1 146390088 0 f f \N \N \N \N 436811 \N 0 0 \N \N f \N 432526 2024-02-20 14:36:26.881 2024-02-20 14:46:27.502 \N According shake the attack guy development pressure. Police cultural area song she https://example.com/ 21329 432468 432468.432526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70965657323776 0 \N \N f 0 \N 6 202146272 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432091 2024-02-20 01:53:24.174 2024-02-20 02:03:25.439 \N Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage hap https://example.com/ 8506 432083 429220.430149.430886.431298.432083.432091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5245978691093 0 \N \N f 0 \N 3 138778383 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 431298 2024-02-19 18:30:05.499 2024-02-19 18:40:07.589 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten https://example.com/ 2342 430886 429220.430149.430886.431298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7832195113374 0 \N \N f 0 \N 6 85773060 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 432149 2024-02-20 03:32:16.106 2024-02-20 03:42:17.273 Cause daughter drop gas. Cell respond always experience unit land over. With for First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish. https://example.com/ 5449 \N 432149 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7045783453015 0 \N \N f 0 \N 0 48136061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438442 2024-02-25 17:03:17.085 2024-02-25 17:13:18.966 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place https://example.com/ 5449 438438 438438.438442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.73633348728787 0 \N \N f 0 \N 4 98608870 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 432193 2024-02-20 06:57:06.378 2024-02-20 07:07:08.008 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think dro https://example.com/ 20683 423750 423750.432193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64257987516579 0 \N \N f 0 \N 0 244193013 0 f f \N \N \N \N 423750 \N 0 0 \N \N f \N 442318 2024-02-28 16:22:31.67 2024-02-28 16:32:33.674 \N Line trade l https://example.com/ 7960 442317 442283.442288.442304.442317.442318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.559397128592 0 \N \N f 0 \N 3 82434698 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442317 2024-02-28 16:21:21.502 2024-02-28 16:31:22.87 \N Material focus e https://example.com/ 2264 442304 442283.442288.442304.442317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.459634651926955 0 \N \N f 0 \N 5 210515809 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 438232 2024-02-25 13:26:45.358 2024-02-25 13:36:46.517 Per over executive. Happy involve mission just company. Budget if PM materia Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model sin https://example.com/ 18635 \N 438232 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.1885712497742 0 \N \N f 0 \N 14 13036023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438594 2024-02-25 19:36:42.79 2024-02-25 19:46:44.118 \N Technology word wish say organization friend here. Go nearly shoulder daughter low d https://example.com/ 1425 438351 438093.438351.438594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3279212047752 0 \N \N f 0 \N 1 81270863 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432202 2024-02-20 07:13:12.073 2024-02-20 07:23:13.296 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year in https://example.com/ 13406 431982 430330.431982.432202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4280982506332 0 \N \N f 0 \N 3 14589988 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 438638 2024-02-25 20:48:06.9 2024-02-25 20:58:08.314 \N Support structure season energy group. Importan https://example.com/ 8095 438635 438634.438635.438638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6949099886166 0 \N \N f 0 \N 0 74433787 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 438632 2024-02-25 20:36:49.193 2024-02-25 20:46:50.593 \N Remember before https://example.com/ 16296 438615 438093.438222.438615.438632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1011441938711 0 \N \N f 0 \N 0 210195547 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438402 2024-02-25 16:06:05.503 2024-02-25 16:16:07.884 \N Them response usually tax tax https://example.com/ 7877 438243 438243.438402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7233922422521 0 \N \N f 0 \N 0 139081611 0 f f \N \N \N \N 438243 \N 0 0 \N \N f \N 431982 2024-02-19 22:58:49.813 2024-02-19 23:08:51.019 \N She loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask https://example.com/ 12965 430330 430330.431982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8214910509095 0 \N \N f 0 \N 4 69644481 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 441322 2024-02-28 01:04:49.579 2024-02-28 01:14:50.844 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Des https://example.com/ 794 440864 439822.440328.440864.441322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7320293328599 0 \N \N f 0 \N 0 237403344 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 430942 2024-02-19 16:34:49.829 2024-02-19 16:44:51.252 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen https://example.com/ 17673 430892 430892.430942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3676927399836 0 \N \N f 0 \N 1 88875155 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 366891 2023-12-26 15:04:10.768 2024-01-13 06:19:09.912 Yourself debate term L https://example.com/ 1773 \N 366891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8357765608234 0 \N \N f 0 \N 4 227023795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438243 2024-02-25 13:39:08.289 2024-02-25 13:49:10.112 Site coach strong dark while new security push. Else call threat matter resourc Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break. https://example.com/ 19812 \N 438243 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9689622929021 0 \N \N f 0 \N 1 181029155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432014 2024-02-19 23:37:43.306 2024-02-19 23:47:45.056 \N Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line https://example.com/ 13249 431079 430892.431079.432014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0703614022863 0 \N \N f 0 \N 0 217628242 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438656 2024-02-25 21:01:19.912 2024-02-25 21:11:21.344 \N Authority environmental party bank region trip new that. Leave https://example.com/ 6578 438650 438634.438650.438656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2459124564813 0 \N \N f 0 \N 0 109736144 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 438377 2024-02-25 15:41:25.694 2024-02-25 15:51:26.907 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nProvide difference relationship. Factor view stock orga https://example.com/ 8287 438370 438231.438370.438377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1991492430672 0 \N \N f 0 \N 0 184031013 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 438370 2024-02-25 15:34:30.839 2024-02-25 15:44:32.653 \N Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nPast skin protect than court summer experien https://example.com/ 12122 438231 438231.438370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2164217160327 0 \N \N f 0 \N 1 177638087 0 f f \N \N \N \N 438231 \N 0 0 \N \N f \N 431921 2024-02-19 21:53:47.437 2024-02-19 22:03:49.177 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program fo https://example.com/ 19854 430892 430892.431921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38442067856964 0 \N \N f 0 \N 1 90345117 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438615 2024-02-25 20:09:37.337 2024-02-25 20:19:38.136 \N Valu https://example.com/ 15484 438222 438093.438222.438615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1343870325715 0 \N \N f 0 \N 1 183167706 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 431102 2024-02-19 17:40:17.895 2024-02-19 17:50:19.02 Financial all deep why car seat measure most. Today s Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down https://example.com/ 20906 \N 431102 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6652195516845 0 \N \N f 0 \N 5 211957263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432236 2024-02-20 08:17:42.712 2024-02-20 08:27:43.795 \N Scientist its surfa https://example.com/ 5779 432234 432234.432236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1401723478683 0 \N \N f 0 \N 0 144336714 0 f f \N \N \N \N 432234 \N 0 0 \N \N f \N 438611 2024-02-25 20:07:33.137 2024-02-25 20:17:34.753 Off behind four class talk. Nor these prove tend Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from. https://example.com/ 4084 \N 438611 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.8479101308414 0 \N \N f 0 \N 0 36797444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438644 2024-02-25 20:51:32.967 2024-02-25 21:01:34.218 \N Get execut https://example.com/ 18387 438642 438634.438642.438644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0603486997048 0 \N \N f 0 \N 0 138093816 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 438423 2024-02-25 16:36:30.593 2024-02-25 16:46:31.753 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it inste https://example.com/ 21116 438389 438389.438423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5742076031515 0 \N \N f 0 \N 1 40622324 0 f f \N \N \N \N 438389 \N 0 0 \N \N f \N 431162 2024-02-19 18:02:58.152 2024-02-19 18:12:59.114 \N A https://example.com/ 1845 431148 431124.431148.431162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.67278697433 0 \N \N f 0 \N 0 86176819 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 438633 2024-02-25 20:38:26.486 2024-02-25 20:48:27.469 \N Quickly fi https://example.com/ 1135 438621 438397.438621.438633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0918569692645 0 \N \N f 0 \N 0 150920174 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 432078 2024-02-20 01:12:45.389 2024-02-20 01:22:46.347 Staff likely color finish at lot ball on Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money https://example.com/ 9365 \N 432078 \N \N \N \N \N \N \N \N security \N ACTIVE \N 7.26756141829174 0 \N \N f 0 \N 4 192687548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432198 2024-02-20 07:10:28.439 2024-02-20 07:20:29.819 Which only rich free agreement. Likely court exist south us ro Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive. https://example.com/ 20201 \N 432198 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1421345279322 0 \N \N f 0 \N 0 59160710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432201 2024-02-20 07:12:19.571 2024-02-20 07:22:21.361 Full both sound century close card. Anyone occur number receive one perf Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most gr https://example.com/ 16867 \N 432201 \N \N \N \N \N \N \N \N health \N ACTIVE \N 10.8934602215038 0 \N \N f 0 \N 0 240658244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442286 2024-02-28 16:10:58.029 2024-02-28 16:20:59.535 \N Such house managemen https://example.com/ 12516 441695 441695.442286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2345402901947 0 \N \N f 0 \N 0 99369399 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 432205 2024-02-20 07:16:34.802 2024-02-20 07:26:37.091 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second s https://example.com/ 2042 432078 432078.432205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6647500511225 0 \N \N f 0 \N 0 240628960 0 f f \N \N \N \N 432078 \N 0 0 \N \N f \N 431815 2024-02-19 20:06:30.404 2024-02-19 20:16:32.542 \N Direction figure between get especially certain. Behind himsel https://example.com/ 19126 430349 430258.430349.431815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5863153836119 0 \N \N f 0 \N 1 115285244 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 436427 2024-02-23 17:07:18.978 2024-02-23 17:17:20.761 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nNews animal hour keep yourself and. Be moment rather often reco https://example.com/ 20745 435217 435217.436427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1134057127424 0 \N \N f 0 \N 0 136987368 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 431148 2024-02-19 17:57:13.91 2024-02-19 18:07:15.046 \N Reality deal sort prof https://example.com/ 15526 431124 431124.431148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8533015139423 0 \N \N f 0 \N 1 244047456 0 f f \N \N \N \N 431124 \N 0 0 \N \N f \N 442337 2024-02-28 16:30:10.183 2024-02-28 16:40:11.621 Name put just democratic follow beyond marriage minute. Only none scen Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nGame management go ready star call how. Total sister make. End physical compare https://example.com/ 21037 \N 442337 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.3185773466624 0 \N \N f 0 \N 0 151886045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431124 2024-02-19 17:43:27.231 2024-02-19 17:53:28.787 Site product one fact loss. Site yeah position Against involve moment myself without. Get chance walk miss. My part according talk notice h https://example.com/ 2709 \N 431124 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 28.3067049199079 0 \N \N f 0 \N 8 102901527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432212 2024-02-20 07:27:44.562 2024-02-20 07:37:45.396 \N Area series street exist cold reflect th https://example.com/ 12422 432135 432135.432212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.67662051144966 0 \N \N f 0 \N 0 228955391 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 431122 2024-02-19 17:42:26.196 2024-02-19 17:52:27.235 Morning garden personal tax reduce less. R Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military. https://example.com/ 19500 \N 431122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4535122729766 0 \N \N f 0 \N 8 127376179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432209 2024-02-20 07:22:50.985 2024-02-20 07:32:53.423 \N Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Nex https://example.com/ 21357 431102 431102.432209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9744064208765 0 \N \N f 0 \N 0 79236723 0 f f \N \N \N \N 431102 \N 0 0 \N \N f \N 431920 2024-02-19 21:52:58.809 2024-02-19 22:03:00.148 Edge card save. Whether manager al We course us bank recently significant myself. Of pa https://example.com/ 15052 \N 431920 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 20.0619427583682 0 \N \N f 0 \N 0 171724636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438640 2024-02-25 20:49:59.924 2024-02-25 21:00:02.058 \N About cell note lot page. Feel manage language. Road against page. Food just some https://example.com/ 9177 438621 438397.438621.438640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1625149725482 0 \N \N f 0 \N 0 182314140 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 432186 2024-02-20 06:34:24.242 2024-02-20 06:44:25.775 Concern position true. Third financial may produce. Go game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause. https://example.com/ 21624 \N 432186 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.80157845835416 0 \N \N f 0 \N 0 36142211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434324 2024-02-21 21:53:30.907 2024-02-21 22:03:31.87 \N Score player recognize carry. Value https://example.com/ 750 286012 286012.434324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3938510162005 0 \N \N f 0 \N 0 92574676 0 f f \N \N \N \N 286012 \N 0 0 \N \N f \N 432220 2024-02-20 07:43:49.422 2024-02-20 07:53:51.848 \N Rich value involve they almost good. Camera media morning mission la https://example.com/ 698 432101 432101.432220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1253457936048 0 \N \N f 0 \N 0 109544537 0 f f \N \N \N \N 432101 \N 0 0 \N \N f \N 434308 2024-02-21 21:32:11.703 2024-02-21 21:42:13.306 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare https://example.com/ 686 433844 433844.434308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0302360638451 0 \N \N f 0 \N 0 39012084 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 439751 2024-02-26 18:45:11.773 2024-02-26 18:55:13.001 \N Edge give like skill yard. Government run throug https://example.com/ 20811 439443 439443.439751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2270490746226 0 \N \N f 0 \N 0 208768617 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 432229 2024-02-20 07:54:57.157 2024-02-20 08:04:59.65 \N Become full thank head blood fa https://example.com/ 15088 432170 432170.432229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0634471376444 0 \N \N f 0 \N 0 4273517 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 432170 2024-02-20 04:42:02.506 2024-02-20 04:52:04.076 Identify painting degree hit shake film. Plan government around. At hand Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always. https://example.com/ 1224 \N 432170 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.3040941595695 0 \N \N f 0 \N 17 127206470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432223 2024-02-20 07:46:05.826 2024-02-20 07:56:07.595 \N Race report base really very after. Focus red brother. https://example.com/ 16354 432217 432211.432217.432223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.20111917209923 0 \N \N f 0 \N 0 119572876 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 432224 2024-02-20 07:47:53.12 2024-02-20 07:57:55.46 \N Social impact learn single election send senior. Dog https://example.com/ 632 432207 430330.431982.432202.432206.432207.432224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1850032755289 0 \N \N f 0 \N 0 214925953 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 438614 2024-02-25 20:09:08.124 2024-02-25 20:19:09.424 \N Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part https://example.com/ 18932 438519 438519.438614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3297159051866 0 \N \N f 0 \N 3 218225509 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 438645 2024-02-25 20:52:35.204 2024-02-25 21:02:36.542 \N Every goo https://example.com/ 15063 438639 438093.438603.438604.438639.438645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5674971682991 0 \N \N f 0 \N 0 173591588 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438639 2024-02-25 20:48:23.976 2024-02-25 20:58:25.654 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book https://example.com/ 1478 438604 438093.438603.438604.438639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8986991613777 0 \N \N f 0 \N 1 178559718 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432233 2024-02-20 08:06:14.676 2024-02-20 08:16:15.898 Safe pass wife stay effort mission. Maj Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good. https://example.com/ 19852 \N 432233 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 7.63758926692162 0 \N \N f 0 \N 0 107826537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432230 2024-02-20 08:00:05.269 2024-02-20 08:10:07.941 Return bag discover indicate record tax occur. Int \N https://example.com/ 7989 \N 432230 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.31434237657512 0 \N \N f 0 \N 1 244858900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441280 2024-02-28 00:19:32.258 2024-02-28 00:29:33.697 \N Friend growth election water degree probably. Score https://example.com/ 9341 441276 441169.441276.441280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6024855880681 0 \N \N f 0 \N 1 29296730 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 237322 2023-08-28 11:21:38.974 2024-01-17 16:33:12.327 Specific child Hotel remember debat https://example.com/ 896 \N 237322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4909831245823 0 \N \N f 0 \N 15 126759456 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432216 2024-02-20 07:31:48.983 2024-02-20 07:41:51.552 Necessary hold quite on prove past. Stage front dark term relat Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action. https://example.com/ 18368 \N 432216 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 0.719522142588254 0 \N \N f 0 \N 0 95973244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437440 2024-02-24 16:30:05.685 2024-02-24 16:40:08.013 Responsibility record term buy. Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution s https://example.com/ 20205 \N 437440 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.02954942821368 0 \N \N f 0 \N 0 235086162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432241 2024-02-20 08:27:49.353 2024-02-20 08:37:50.902 With feel late. R Meet whose open cou https://example.com/ 20911 \N 432241 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 14.6995772660904 0 \N \N f 0 \N 0 208229495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438493 2024-02-25 17:46:10.483 2024-02-25 17:56:11.874 \N Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nTen throw trip up region place painting. House many unit https://example.com/ 1784 436760 436760.438493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6694442042958 0 \N \N f 0 \N 1 225934965 0 f f \N \N \N \N 436760 \N 0 0 \N \N f \N 438653 2024-02-25 20:59:52.988 2024-02-25 21:09:55.132 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action c https://example.com/ 19488 438637 438605.438637.438653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5845394234955 0 \N \N f 0 \N 0 142805798 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 432215 2024-02-20 07:30:49.835 2024-02-20 07:40:51.211 \N Understand Mr score until. Debate according western evening rate reveal. Where a https://example.com/ 715 430612 430488.430533.430604.430612.432215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9873071661511 0 \N \N f 0 \N 0 75539722 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431842 2024-02-19 20:36:10.748 2024-02-19 20:46:12.39 At audience she. Skill performance represent mouth score Edge card https://example.com/ 13042 \N 431842 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.6235310656572 0 \N \N f 0 \N 0 65087322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438618 2024-02-25 20:11:12.621 2024-02-25 20:21:13.866 \N Already real me back ahead especially drug late. Doctor my risk party black religi https://example.com/ 1845 438565 438131.438219.438565.438618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7655357814086 0 \N \N f 0 \N 1 143701024 0 f f \N \N \N \N 438131 \N 0 0 \N \N f \N 438219 2024-02-25 13:16:11.853 2024-02-25 13:26:14.172 \N Stock already suddenly east interesting guess. https://example.com/ 1495 438131 438131.438219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7113897720596 0 \N \N f 0 \N 3 33496939 0 f f \N \N \N \N 438131 \N 0 0 \N \N f \N 438131 2024-02-25 11:35:51.577 2024-02-25 11:45:52.788 Drug you class op Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult https://example.com/ 9426 \N 438131 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.36387179453682 0 \N \N f 0 \N 4 211269004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438565 2024-02-25 18:53:24.545 2024-02-25 19:03:26.643 \N Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specif https://example.com/ 4048 438219 438131.438219.438565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0328647617558 0 \N \N f 0 \N 2 74398803 0 f f \N \N \N \N 438131 \N 0 0 \N \N f \N 431013 2024-02-19 17:21:36.888 2024-02-19 17:31:38.468 \N Opportunity hospital address a https://example.com/ 19981 428435 428435.431013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96836477410008 0 \N \N f 0 \N 1 87841303 0 f f \N \N \N \N 428435 \N 0 0 \N \N f \N 436468 2024-02-23 17:33:59.92 2024-02-23 17:44:01.341 \N Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road https://example.com/ 16505 436372 436241.436372.436468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0113304457552 0 \N \N f 0 \N 0 67108744 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 432255 2024-02-20 08:50:56.781 2024-02-20 09:00:57.971 Which only rich free agreement. Likely court exist south us rock. Base admit pow Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nDirection poor if however property student alone speech. Off contain challe https://example.com/ 9345 \N 432255 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 4.94712858632333 0 \N \N f 0 \N 0 76556829 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432273 2024-02-20 09:27:00.784 2024-02-20 09:37:01.913 \N Budget a https://example.com/ 10063 402363 402363.432273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2970816667453 0 \N \N f 0 \N 0 245713781 0 f f \N \N \N \N 402363 \N 0 0 \N \N f \N 438659 2024-02-25 21:03:26.484 2024-02-25 21:13:28.351 Raise represen Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smi https://example.com/ 6384 \N 438659 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 29.0692836847364 0 \N \N f 0 \N 0 222033248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432250 2024-02-20 08:42:00.196 2024-02-20 08:52:01.465 \N Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nState wall myself interview will. Wa https://example.com/ 7772 432249 432249.432250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26701908592953 0 \N \N f 0 \N 0 114319544 0 f f \N \N \N \N 432249 \N 0 0 \N \N f \N 432258 2024-02-20 09:00:59.219 2024-02-20 09:11:00.694 Happen should somebody world southern player wife. Mr five clearly pick offic Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science https://example.com/ 9529 \N 432258 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 7.25963930031188 0 \N \N f 0 \N 0 245343436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437431 2024-02-24 16:23:19.114 2024-02-24 16:33:20.248 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cu https://example.com/ 19878 437390 437370.437390.437431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0067408420877 0 \N \N f 0 \N 0 129671054 0 f f \N \N \N \N 437370 \N 0 0 \N \N f \N 432175 2024-02-20 05:27:02.375 2024-02-20 05:37:04.398 \N Meth https://example.com/ 17522 432170 432170.432175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.754681938879109 0 \N \N f 0 \N 0 139433394 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 434384 2024-02-21 23:12:27.442 2024-02-21 23:22:28.166 \N Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Fi https://example.com/ 19394 434328 434328.434384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7833726922404 0 \N \N f 0 \N 0 175367919 0 f f \N \N \N \N 434328 \N 0 0 \N \N f \N 432269 2024-02-20 09:23:59.972 2024-02-20 09:34:00.795 Maybe remain help everybody beat subject suffer hea Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority. https://example.com/ 21061 \N 432269 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.232341926514 0 \N \N f 0 \N 4 249507560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432262 2024-02-20 09:11:03.407 2024-02-20 09:21:04.887 Couple writer life commercial art. Medical bank mind pl Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nThing type great Mr. Choose cover medic https://example.com/ 19980 \N 432262 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 0.197858528732411 0 \N \N f 0 \N 0 176222691 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436391 2024-02-23 16:35:47.819 2024-02-23 16:45:48.713 \N Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the my https://example.com/ 16154 436273 436273.436391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63254492731928 0 \N \N f 0 \N 4 37844999 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 438654 2024-02-25 21:00:04.635 2024-02-25 21:10:05.896 Power billion method wide. Person \N https://example.com/ 8664 \N 438654 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.4121916119637 0 \N \N f 0 \N 1 225485028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437810 2024-02-25 00:50:19.467 2024-02-25 01:00:21.504 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them https://example.com/ 1124 437729 437524.437629.437729.437810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7319859716235 0 \N \N f 0 \N 3 17325145 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 435831 2024-02-23 04:38:39.807 2024-02-23 04:48:41.148 \N Poor often https://example.com/ 736 435667 435667.435831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7105015433677 0 \N \N f 0 \N 0 165808979 0 f f \N \N \N \N 435667 \N 0 0 \N \N f \N 432278 2024-02-20 09:32:18.87 2024-02-20 09:42:20.29 \N About easy answer glass. Fire who place appro https://example.com/ 1244 432256 432203.432256.432278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21219785207273 0 \N \N f 0 \N 0 228396544 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 432265 2024-02-20 09:19:45.25 2024-02-20 09:29:46.441 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal a https://example.com/ 1712 430626 430626.432265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.71795688404403 0 \N \N f 0 \N 0 14324021 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432275 2024-02-20 09:30:36.891 2024-02-20 09:40:37.612 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two m https://example.com/ 21269 429393 429393.432275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.656704610095 0 \N \N f 0 \N 0 78293739 0 f f \N \N \N \N 429393 \N 0 0 \N \N f \N 432219 2024-02-20 07:40:55.849 2024-02-20 07:50:57.908 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either https://example.com/ 20276 432218 430331.432218.432219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68753559435822 0 \N \N f 0 \N 0 168834114 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 431109 2024-02-19 17:41:35.83 2024-02-19 17:51:37.093 Almost about me amount daughter him Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nAlready reduce grow only chance opportunity group. Sort follow get https://example.com/ 9367 \N 431109 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.4968132114102 0 \N \N f 0 \N 2 20030509 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438448 2024-02-25 17:09:27.321 2024-02-25 17:19:29.21 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billio https://example.com/ 14731 438093 438093.438448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.796882209273626 0 \N \N f 0 \N 1 166676399 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438609 2024-02-25 20:05:54.562 2024-02-25 20:15:55.685 \N Them debate main bad. Personal security be https://example.com/ 20969 431335 374685.431335.438609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1358795327832 0 \N \N f 0 \N 0 178452836 0 f f \N \N \N \N 374685 \N 0 0 \N \N f \N 431335 2024-02-19 18:34:42.245 2024-02-19 18:44:43.601 \N Big time rise yourself all one https://example.com/ 16847 374685 374685.431335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7236452901321 0 \N \N f 0 \N 1 13930638 0 f f \N \N \N \N 374685 \N 0 0 \N \N f \N 437390 2024-02-24 15:54:47.134 2024-02-24 16:04:48.338 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio th https://example.com/ 18170 437370 437370.437390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62610640417313 0 \N \N f 0 \N 1 208698420 0 f f \N \N \N \N 437370 \N 0 0 \N \N f \N 432179 2024-02-20 06:00:06.415 2024-02-20 06:10:08.068 Red production his nothing financial. Media especially bed final \N https://example.com/ 7425 \N 432179 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.2737170888144 0 \N \N f 0 \N 1 82473217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432299 2024-02-20 09:49:33.374 2024-02-20 09:59:34.947 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead ad https://example.com/ 4776 432253 432253.432299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49919024465977 0 \N \N f 0 \N 0 236665615 0 f f \N \N \N \N 432253 \N 0 0 \N \N f \N 431980 2024-02-19 22:55:32.01 2024-02-19 23:05:33.363 \N Enough blue provide home alone reality attack certain. Short son challenge play responsibility countr https://example.com/ 21269 430892 430892.431980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4377053438272 0 \N \N f 0 \N 1 246329242 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 435682 2024-02-23 00:01:48.173 2024-02-23 00:11:49.307 Measure whether or material herself. Under across economic Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nBoard collection https://example.com/ 18658 \N 435682 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.6163088934915 0 \N \N f 0 \N 2 246516679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432282 2024-02-20 09:35:57.937 2024-02-20 09:45:59.117 \N Popular entire medical office can. Those begin for own offer relationship food. Hand respond after pu https://example.com/ 4570 432248 432203.432248.432282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5056683714098 0 \N \N f 0 \N 0 249709658 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 432285 2024-02-20 09:36:32.24 2024-02-20 09:46:33.357 \N Speak specific energy international more entire partner. Moment loss within happen one l https://example.com/ 2722 432170 432170.432285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5261398799497 0 \N \N f 0 \N 0 198612476 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 432296 2024-02-20 09:45:59.433 2024-02-20 09:56:01.221 \N Deal could skin some. Through stree https://example.com/ 11698 431980 430892.431980.432296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.730492641863 0 \N \N f 0 \N 0 22083390 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 436451 2024-02-23 17:20:35.9 2024-02-23 17:30:37.45 \N Bar adult subject hot student others plan. By much total computer. Fight know https://example.com/ 8570 436396 436028.436343.436396.436451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09710308363981 0 \N \N f 0 \N 3 108518232 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 439748 2024-02-26 18:44:36.721 2024-02-26 18:54:38.124 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east https://example.com/ 4064 439596 429724.439596.439748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7401819673723 0 \N \N f 0 \N 0 94905016 0 f f \N \N \N \N 429724 \N 0 0 \N \N f \N 438662 2024-02-25 21:06:58.2 2024-02-25 21:16:59.883 \N If lose particular reco https://example.com/ 647 438618 438131.438219.438565.438618.438662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.91533959734558 0 \N \N f 0 \N 0 145785289 0 f f \N \N \N \N 438131 \N 0 0 \N \N f \N 437243 2024-02-24 14:21:34.764 2024-02-24 14:31:35.892 \N Provi https://example.com/ 16347 437198 436977.437023.437198.437243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0337318795329011 0 \N \N f 0 \N 0 178016007 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 437221 2024-02-24 14:02:35.516 2024-02-24 14:12:36.584 \N Pattern fear term. Second always control type mov https://example.com/ 2583 437143 437089.437143.437221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11031960803078 0 \N \N f 0 \N 0 230476455 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 437249 2024-02-24 14:22:46.383 2024-02-24 14:32:48.031 \N Still power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media https://example.com/ 20788 437216 437216.437249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1067230494425 0 \N \N f 0 \N 1 178515742 0 f f \N \N \N \N 437216 \N 0 0 \N \N f \N 435218 2024-02-22 16:47:54.337 2024-02-22 16:57:55.48 \N Garden serve these speak manage https://example.com/ 7983 292915 292915.435218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7948414301288 0 \N \N f 0 \N 0 149562018 0 f f \N \N \N \N 292915 \N 0 0 \N \N f \N 436688 2024-02-23 21:51:50.538 2024-02-23 22:01:52.127 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line https://example.com/ 5708 436674 436549.436658.436661.436674.436688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9829769241075 0 \N \N f 0 \N 2 41657650 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 438367 2024-02-25 15:31:38.493 2024-02-25 15:41:39.605 Build toward black meet no your. Face stay m History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat ei https://example.com/ 4027 \N 438367 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 29.0638003234266 0 \N \N f 0 \N 0 67302237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438673 2024-02-25 21:25:24.93 2024-02-25 21:35:27.713 \N Fly include one church TV air. Democrat institution develop https://example.com/ 6777 438573 438573.438673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.308664150273 0 \N \N f 0 \N 0 47968542 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 432197 2024-02-20 07:04:55.147 2024-02-20 07:14:57.755 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nGlass her remember exist during. Blue prev https://example.com/ 5455 429414 429414.432197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.193938647241 0 \N \N f 0 \N 0 116463448 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 439514 2024-02-26 15:49:01.738 2024-02-26 15:59:03.38 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly https://example.com/ 16788 439401 439298.439401.439514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.150060422885 0 \N \N f 0 \N 1 181578609 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 432253 2024-02-20 08:47:14.107 2024-02-20 08:57:15.535 Result treatment smile capital teacher camera. Policy gun ima Today area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist. https://example.com/ 14774 \N 432253 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.941953366341 0 \N \N f 0 \N 1 46525891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432274 2024-02-20 09:28:09.572 2024-02-20 09:38:10.894 Describe modern fund cultural About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything. https://example.com/ 1737 \N 432274 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 1.38979345819468 0 \N \N f 0 \N 2 107117057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438667 2024-02-25 21:12:54.96 2024-02-25 21:22:57.04 Become popular local cut e Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting sum https://example.com/ 19537 \N 438667 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.84951145110358 0 \N \N f 0 \N 0 199733621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430888 2024-02-19 15:55:05.606 2024-02-19 16:05:06.951 \N To reduce each wall they raise travel yourself. Part play foot here parent https://example.com/ 20208 430626 430626.430888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8794774067881 0 \N \N f 0 \N 0 194459241 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430909 2024-02-19 16:14:24.709 2024-02-19 16:24:26.283 \N Service source fact. Term affect people Congress natural business list. Eye floor https://example.com/ 20062 430626 430626.430909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0636341974829 0 \N \N f 0 \N 0 211388970 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 443950 2024-02-29 17:46:37.724 2024-02-29 17:56:38.587 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site mo https://example.com/ 15226 443583 443583.443950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6434087675553 0 \N \N f 0 \N 0 68844878 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 435056 2024-02-22 14:50:17.732 2024-02-22 15:00:19.88 Local college mov Call system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout. https://example.com/ 18816 \N 435056 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 3.33864443223469 0 \N \N f 0 \N 0 98538866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438674 2024-02-25 21:28:44.567 2024-02-25 21:38:45.901 If lose particular record natural camera good. Season serve someone leg by Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly. https://example.com/ 826 \N 438674 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 15.7104177140682 0 \N \N f 0 \N 0 218026516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432249 2024-02-20 08:41:36.329 2024-02-20 08:51:37.784 Long interesting cut grow prevent. Western abil Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course. https://example.com/ 18232 \N 432249 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4928992646913 0 \N \N f 0 \N 2 132917356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438465 2024-02-25 17:25:03.119 2024-02-25 17:35:04.045 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify p https://example.com/ 1624 438390 438390.438465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2194940498571 0 \N \N f 0 \N 0 129159973 0 f f \N \N \N \N 438390 \N 0 0 \N \N f \N 432313 2024-02-20 10:10:29.589 2024-02-20 10:20:30.808 \N Yeah word bec https://example.com/ 692 432249 432249.432313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1236537250328 0 \N \N f 0 \N 0 189017946 0 f f \N \N \N \N 432249 \N 0 0 \N \N f \N 441898 2024-02-28 13:18:14.314 2024-02-28 13:28:15.347 \N Blue why news enjoy include movie. Artist later store film. Senior https://example.com/ 19507 441744 440423.440591.441744.441898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55641983521168 0 \N \N f 0 \N 1 161461866 0 f f \N \N \N \N 440423 \N 0 0 \N \N f \N 431716 2024-02-19 19:41:13.361 2024-02-19 19:51:14.861 \N Senior than easy statement both total. Picture https://example.com/ 19601 430682 430496.430682.431716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6285153184439 0 \N \N f 0 \N 5 107719804 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 438560 2024-02-25 18:46:25.387 2024-02-25 18:56:27.284 \N Reach matter agency population. Capital PM pass item. Very different director yourself woman ki https://example.com/ 18241 438390 438390.438560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4245694281533 0 \N \N f 0 \N 0 58178284 0 f f \N \N \N \N 438390 \N 0 0 \N \N f \N 438676 2024-02-25 21:33:36.902 2024-02-25 21:43:38.505 \N Ask arm interview playe https://example.com/ 17535 438382 438202.438382.438676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8088330278209 0 \N \N f 0 \N 0 228330960 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 435000 2024-02-22 14:05:30.206 2024-02-22 14:15:30.897 \N Range laugh thous https://example.com/ 19812 434990 434990.435000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0736138558454 0 \N \N f 0 \N 2 200853387 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 441190 2024-02-27 22:48:05.347 2024-02-27 22:58:07.091 \N Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Wit https://example.com/ 1729 441060 440692.441060.441190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.77936415763733 0 \N \N f 0 \N 2 209824692 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 432300 2024-02-20 09:50:50.762 2024-02-20 10:00:52.076 \N Seat commercial through prope https://example.com/ 21070 432221 430497.432221.432300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1164025259473 0 \N \N f 0 \N 0 53810725 0 f f \N \N \N \N 430497 \N 0 0 \N \N f \N 432221 2024-02-20 07:45:09.371 2024-02-20 07:55:11.325 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site https://example.com/ 1814 430497 430497.432221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9309730194734 0 \N \N f 0 \N 1 186175989 0 f f \N \N \N \N 430497 \N 0 0 \N \N f \N 373942 2024-01-02 00:53:53.255 2024-01-02 01:03:55.463 Region model over box rela Physical fast give music base. Gun body e https://example.com/ 21501 \N 373942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.414645119006209 0 \N \N f 0 \N 11 128288356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432034 2024-02-19 23:52:42.333 2024-02-20 00:02:44.252 \N Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell https://example.com/ 683 431716 430496.430682.431716.432034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2752916821616 0 \N \N f 0 \N 4 123773516 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 432176 2024-02-20 05:37:05.812 2024-02-20 05:47:07.082 \N Author professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response https://example.com/ 8004 432135 432135.432176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42355915920965 0 \N \N f 0 \N 1 155305798 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 432340 2024-02-20 10:48:44.56 2024-02-20 10:58:46.654 \N Single level story sound. Door https://example.com/ 14990 431853 431853.432340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8456636247428 0 \N \N f 0 \N 0 149929960 0 f f \N \N \N \N 431853 \N 0 0 \N \N f \N 432305 2024-02-20 09:57:48.615 2024-02-20 10:07:50.152 \N Become full thank head blood family. Computer account be expert adult push. Alone tre https://example.com/ 1493 432269 432269.432305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.39450925060702 0 \N \N f 0 \N 3 195197878 0 f f \N \N \N \N 432269 \N 0 0 \N \N f \N 438188 2024-02-25 12:37:21.097 2024-02-25 12:47:23.034 Rock source rate fact leave house course. Per Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus. https://example.com/ 16834 \N 438188 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.827719578165 0 \N \N f 0 \N 2 197079873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438681 2024-02-25 21:44:23.333 2024-02-25 21:54:24.824 \N Together tree bar tonight. https://example.com/ 18138 438607 438607.438681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91888947784128 0 \N \N f 0 \N 0 209252106 0 f f \N \N \N \N 438607 \N 0 0 \N \N f \N 432203 2024-02-20 07:15:11.652 2024-02-21 07:17:34.287 Authority environmental party bank reg By evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital fro https://example.com/ 20133 \N 432203 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.0795892317651 0 \N \N f 0 \N 27 48197657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432297 2024-02-20 09:47:28.098 2024-02-20 09:57:29.543 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Regi https://example.com/ 15139 432005 431985.432005.432297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6043187313951 0 \N \N f 0 \N 1 78093584 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 432095 2024-02-20 02:10:56.978 2024-02-20 02:20:58.02 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series https://example.com/ 18476 431918 431918.432095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9568590236862 0 \N \N f 0 \N 1 178008733 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 432318 2024-02-20 10:16:29.449 2024-02-20 10:26:31.499 \N Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially https://example.com/ 657 432305 432269.432305.432318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2111863842751 0 \N \N f 0 \N 2 25633789 0 f f \N \N \N \N 432269 \N 0 0 \N \N f \N 431985 2024-02-19 23:01:55.561 2024-02-19 23:11:57.491 Water actually point similar. Box war specific a over marriage evening worke Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nMain ball colle https://example.com/ 21140 \N 431985 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.7592783971147 0 \N \N f 0 \N 7 62516414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432314 2024-02-20 10:12:38.875 2024-02-20 10:22:39.938 \N Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nWith officer scientist letter one. Partner coach https://example.com/ 704 432110 430496.430682.431716.432034.432110.432314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1544353914651 0 \N \N f 0 \N 0 118135292 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 432321 2024-02-20 10:18:26.778 2024-02-20 10:28:28.035 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government bes https://example.com/ 20376 432095 431918.432095.432321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7654409948736 0 \N \N f 0 \N 0 123916702 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 438608 2024-02-25 20:04:35.615 2024-02-25 20:14:37.243 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father a https://example.com/ 20563 438202 438202.438608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70696478244185 0 \N \N f 0 \N 0 199784016 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 432316 2024-02-20 10:14:05.79 2024-02-20 10:24:07.04 \N Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two s https://example.com/ 17513 432067 431918.432067.432316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9775153411765 0 \N \N f 0 \N 0 217981835 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 432178 2024-02-20 05:49:53.371 2024-02-20 05:59:54.404 Same listen sugge Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nDirection network employee onl https://example.com/ 1236 \N 432178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3686247583363 0 \N \N f 0 \N 1 82319104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432328 2024-02-20 10:28:18.146 2024-02-20 10:38:19.798 \N Prevent arm food order. Indus https://example.com/ 20059 432178 432178.432328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.68455334086649 0 \N \N f 0 \N 0 158415021 0 f f \N \N \N \N 432178 \N 0 0 \N \N f \N 438672 2024-02-25 21:25:17.637 2024-02-25 21:35:18.705 \N Remember before box of op https://example.com/ 2773 438405 438405.438672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.325562033748 0 \N \N f 0 \N 0 233168136 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 432324 2024-02-20 10:20:02.72 2024-02-20 10:30:04.439 \N Hot society statement bed watch party himself fi https://example.com/ 9078 432297 431985.432005.432297.432324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1749940849141 0 \N \N f 0 \N 0 234612901 0 f f \N \N \N \N 431985 \N 0 0 \N \N f \N 437970 2024-02-25 06:16:31.939 2024-02-25 06:26:32.943 \N For share something effect scien https://example.com/ 10283 437966 437966.437970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.56836703013069 0 \N \N f 0 \N 3 44467584 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 438622 2024-02-25 20:19:03.938 2024-02-25 20:29:06.251 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth https://example.com/ 18679 437966 437966.438622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51758244989061 0 \N \N f 0 \N 0 167643524 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 432333 2024-02-20 10:34:41.408 2024-02-20 10:44:42.477 \N Return teacher forget establish poor everythin https://example.com/ 20201 430942 430892.430942.432333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2114755866136 0 \N \N f 0 \N 0 93778087 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432261 2024-02-20 09:07:32.224 2024-02-20 09:17:33.896 \N Best choice maintain she else member. Hea https://example.com/ 690 430892 430892.432261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.38400922073 0 \N \N f 0 \N 2 157897905 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432332 2024-02-20 10:33:33.554 2024-02-20 10:43:35.206 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive befor https://example.com/ 1286 432261 430892.432261.432332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.13277066167847 0 \N \N f 0 \N 0 210159660 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438683 2024-02-25 21:46:54.787 2024-02-25 21:56:56.16 \N Fact theory worry. Strong itself assume. https://example.com/ 21238 165274 165274.438683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0598895685134 0 \N \N f 0 \N 0 205790413 0 f f \N \N \N \N 165274 \N 0 0 \N \N f \N 432023 2024-02-19 23:44:37.394 2024-02-19 23:54:39.144 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish pub https://example.com/ 652 431918 431918.432023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1346992347698 0 \N \N f 0 \N 2 136786773 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 432325 2024-02-20 10:22:03.604 2024-02-20 10:32:05.218 \N Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nDirec https://example.com/ 721 432023 431918.432023.432325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4208916547904 0 \N \N f 0 \N 1 83394252 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 436798 2024-02-24 01:11:17.054 2024-02-24 01:21:18.159 \N Though e https://example.com/ 21605 432899 432899.436798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.4975788349532 0 \N \N f 0 \N 1 62313511 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 432347 2024-02-20 11:01:14.599 2024-02-20 11:11:16.747 \N Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself li https://example.com/ 17147 432342 432339.432342.432347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5493299175667 0 \N \N f 0 \N 0 26484152 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 432329 2024-02-20 10:30:03.565 2024-02-20 10:40:05.595 Surface tree knowledge mean. Trade drop h Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn. https://example.com/ 14959 \N 432329 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 0.309863474350927 0 \N \N f 0 \N 0 192886722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432088 2024-02-20 01:43:46.044 2024-02-20 01:53:47.671 Under big evening others. Trip remain money region Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nMyself candidate idea state similar above. Firm billion money authority available. https://example.com/ 965 \N 432088 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.0170294196787 0 \N \N f 0 \N 4 166331562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442146 2024-02-28 15:17:22.618 2024-02-28 15:27:24.294 \N Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationsh https://example.com/ 8376 442084 442084.442146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2724810749374 0 \N \N f 0 \N 4 206230589 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 435012 2024-02-22 14:11:32.734 2024-02-22 14:21:34.013 \N Long management far budget rate often president stop. Section civ https://example.com/ 18690 435006 435002.435006.435012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5950981520586 0 \N \N f 0 \N 1 69505858 0 f f \N \N \N \N 435002 \N 0 0 \N \N f \N 432331 2024-02-20 10:31:56.194 2024-02-20 10:41:58.1 Way all line after. Only trouble they hair when. Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil. https://example.com/ 20481 \N 432331 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.4227533229235 0 \N \N f 0 \N 0 209244736 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434302 2024-02-21 21:27:08.726 2024-02-21 21:37:09.36 \N History prepare everyone role everybody son. Meet discuss six doctor several board west. My fi https://example.com/ 19267 434297 434297.434302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3955720513102 0 \N \N f 0 \N 0 183649310 0 f f \N \N \N \N 434297 \N 0 0 \N \N f \N 432342 2024-02-20 10:59:04.043 2024-02-20 11:09:05.339 \N New particularly consider condition entire traditional world. Tr https://example.com/ 17682 432339 432339.432342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5931171618098 0 \N \N f 0 \N 1 137971741 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 434284 2024-02-21 21:03:43.587 2024-02-21 21:13:45.42 \N Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nLocal colleg https://example.com/ 17184 434013 434013.434284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.16822906872477 0 \N \N f 0 \N 1 116178890 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 438684 2024-02-25 21:46:56.217 2024-02-25 21:56:57.839 \N Decide up r https://example.com/ 16270 436798 432899.436798.438684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8261748537231 0 \N \N f 0 \N 0 210572267 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 432336 2024-02-20 10:38:14.901 2024-02-20 10:48:16.445 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nQuickly fill science from politics foot. Person available camera https://example.com/ 10359 432325 431918.432023.432325.432336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7251754259994 0 \N \N f 0 \N 0 237860299 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 431853 2024-02-19 20:42:37.725 2024-02-19 20:52:39.552 Man talk arm player scene Go special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak thes https://example.com/ 16532 \N 431853 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.856223980000586 0 \N \N f 0 \N 2 226217447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432357 2024-02-20 11:07:33.046 2024-02-20 11:17:34.496 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform https://example.com/ 13878 432355 432344.432348.432349.432353.432355.432357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67562468869997 0 \N \N f 0 \N 0 154356295 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432341 2024-02-20 10:57:44.466 2024-02-20 11:07:46.598 \N Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nList professional event meeting. Drop Re https://example.com/ 10818 430892 430892.432341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5767459611878 0 \N \N f 0 \N 1 215575018 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 434047 2024-02-21 17:34:45.359 2024-02-21 17:44:46.895 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class https://example.com/ 7659 433894 433833.433894.434047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7080230212962 0 \N \N f 0 \N 0 125070227 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 432361 2024-02-20 11:15:01.345 2024-02-20 11:25:02.399 Cover well feel yes crime term final. Particularly take animal marriage Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still. https://example.com/ 2749 \N 432361 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3284760586182 0 \N \N f 0 \N 0 17442819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432354 2024-02-20 11:04:21.047 2024-02-20 11:14:22.345 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executiv https://example.com/ 13249 432311 432311.432354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7966088004096 0 \N \N f 0 \N 0 114696996 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 438688 2024-02-25 21:48:26.349 2024-02-25 21:58:27.602 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career he https://example.com/ 3360 438212 438191.438203.438212.438688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8602363496144 0 \N \N f 0 \N 0 20315241 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 438443 2024-02-25 17:03:30.091 2024-02-25 17:13:31.42 Cell language east present. Federal arrive much. Drug financial place popular s Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist i https://example.com/ 2459 \N 438443 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.9119157950115 0 \N \N f 0 \N 0 88411197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443141 2024-02-29 07:05:37.739 2024-02-29 07:15:39.341 \N Light environmental here source blood. Institution evening deep action speech try https://example.com/ 15536 443137 442632.443095.443109.443137.443141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2557328232536 0 \N \N f 0 \N 0 198027179 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 432214 2024-02-20 07:29:20.36 2024-02-20 07:39:21.723 \N Occur power prevent become issue forward feel. Interview inform https://example.com/ 20179 432170 432170.432214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3449196765867 0 \N \N f 0 \N 12 60134514 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 438677 2024-02-25 21:36:57.801 2024-02-25 21:46:59.872 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she firs https://example.com/ 6430 438202 438202.438677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3836982626308 0 \N \N f 0 \N 0 69623107 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 435233 2024-02-22 16:56:00.224 2024-02-22 17:06:01.274 \N Matter training https://example.com/ 19537 435221 435046.435135.435162.435214.435221.435233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6596581793058 0 \N \N f 0 \N 0 160488040 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 432356 2024-02-20 11:06:37.196 2024-02-20 11:16:38.597 \N Finally and may second. Middle want artist technology woman democratic p https://example.com/ 20585 432244 432135.432244.432356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9433558886926 0 \N \N f 0 \N 0 216005109 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 444013 2024-02-29 18:18:19.838 2024-02-29 18:28:21.136 \N Dark address be federal study. N https://example.com/ 19878 443283 443272.443283.444013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2435099082996 0 \N \N f 0 \N 0 71767367 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444018 2024-02-29 18:23:00.597 2024-02-29 18:33:01.64 \N Plan really necessary boy a consider. Atto https://example.com/ 3642 328872 328872.444018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9005041853906 0 \N \N f 0 \N 0 95663936 0 f f \N \N \N \N 328872 \N 0 0 \N \N f \N 432359 2024-02-20 11:08:55.851 2024-02-20 11:18:57.729 \N Agency party build and event thank leave https://example.com/ 20450 432334 432211.432334.432359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5095856764149 0 \N \N f 0 \N 0 194011234 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 432168 2024-02-20 04:28:53.366 2024-02-20 04:38:54.577 \N Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate an https://example.com/ 1823 430569 430569.432168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53296217981656 0 \N \N f 0 \N 0 203912960 0 f f \N \N \N \N 430569 \N 0 0 \N \N f \N 432352 2024-02-20 11:03:42.885 2024-02-20 11:13:44.55 \N Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nWi https://example.com/ 18705 398085 398085.432352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2988011036631 0 \N \N f 0 \N 0 59652669 0 f f \N \N \N \N 398085 \N 0 0 \N \N f \N 432355 2024-02-20 11:05:11.302 2024-02-20 11:15:12.443 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose becau https://example.com/ 4574 432353 432344.432348.432349.432353.432355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.45063710472759 0 \N \N f 0 \N 1 42843852 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432358 2024-02-20 11:07:58.743 2024-02-20 11:18:00.779 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup mo https://example.com/ 3439 432344 432344.432358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6996044625356 0 \N \N f 0 \N 0 131153450 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 443756 2024-02-29 16:11:37.592 2024-02-29 16:21:39.242 \N Company save finally water. Agree choice until mean exactly. Century three usua https://example.com/ 16410 443399 443399.443756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44914395920324 0 \N \N f 0 \N 1 151755681 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 436906 2024-02-24 04:16:32.048 2024-02-24 04:26:33.265 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Sho https://example.com/ 11395 436805 436805.436906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8810510514878 0 \N \N f 0 \N 0 68646990 0 f f \N \N \N \N 436805 \N 0 0 \N \N f \N 432379 2024-02-20 11:38:06.831 2024-02-20 11:48:08.669 \N Side rath https://example.com/ 8080 432311 432311.432379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4137108738543 0 \N \N f 0 \N 0 205458146 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432351 2024-02-20 11:03:07.155 2024-02-20 11:13:08.8 \N Watch tell https://example.com/ 2963 432274 432274.432351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19505216797811 0 \N \N f 0 \N 1 44755291 0 f f \N \N \N \N 432274 \N 0 0 \N \N f \N 432362 2024-02-20 11:15:26.375 2024-02-20 11:25:28.07 \N Messag https://example.com/ 9246 432351 432274.432351.432362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4217881743798 0 \N \N f 0 \N 0 69272942 0 f f \N \N \N \N 432274 \N 0 0 \N \N f \N 432364 2024-02-20 11:17:33.782 2024-02-20 11:27:35.614 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together so https://example.com/ 15063 432363 432339.432363.432364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4608808224893 0 \N \N f 0 \N 0 2126014 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 441148 2024-02-27 22:01:14.055 2024-02-27 22:11:15.226 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song broth https://example.com/ 21520 440764 440764.441148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0669196927532667 0 \N \N f 0 \N 0 107739842 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 432368 2024-02-20 11:24:14.642 2024-02-20 11:34:16.385 \N Deal probably car re https://example.com/ 18392 340598 340598.432368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96513203556859 0 \N \N f 0 \N 0 225671198 0 f f \N \N \N \N 340598 \N 0 0 \N \N f \N 438693 2024-02-25 21:56:26.388 2024-02-25 22:06:27.438 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve ha https://example.com/ 11073 438397 438397.438693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9495053384562 0 \N \N f 0 \N 0 48766393 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 432277 2024-02-20 09:32:11.875 2024-02-20 09:42:13.135 News half employee read cause stor Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear. https://example.com/ 20306 \N 432277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9925359441387 0 \N \N f 0 \N 1 63547524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438203 2024-02-25 12:59:21.348 2024-02-25 13:09:23.95 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive https://example.com/ 1718 438191 438191.438203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1654265545666 0 \N \N f 0 \N 2 5973636 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 438212 2024-02-25 13:10:59.5 2024-02-25 13:21:00.91 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how milli https://example.com/ 20585 438203 438191.438203.438212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5736438907421 0 \N \N f 0 \N 1 180304773 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 438690 2024-02-25 21:52:55.087 2024-02-25 22:02:56.192 \N Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nRate thought reason six suggest help. Hotel https://example.com/ 976 438685 438405.438507.438517.438685.438690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.59823798557201 0 \N \N f 0 \N 0 5814585 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 432376 2024-02-20 11:36:33.205 2024-02-20 11:46:34.716 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nEx https://example.com/ 17162 432113 432113.432376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09295580076834 0 \N \N f 0 \N 0 115845075 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 438698 2024-02-25 22:00:04.715 2024-02-25 22:00:10.1 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nGround baby des https://example.com/ 11288 438697 438697.438698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3947927758535 0 \N \N f 0 \N 0 110602784 0 f f \N \N \N \N 438697 \N 0 0 \N \N f \N 442039 2024-02-28 14:30:01.136 2024-02-28 14:40:02.22 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nDoctor operation because training lose meeting western above. Various chang https://example.com/ 1712 442035 442035.442039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5064664677377 0 \N \N f 0 \N 0 84912025 0 f f \N \N \N \N 442035 \N 0 0 \N \N f \N 432387 2024-02-20 11:50:56.825 2024-02-20 12:00:58.844 \N Single level story sound. https://example.com/ 3347 432383 430488.430503.432383.432387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6608600985123 0 \N \N f 0 \N 0 129728199 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 432381 2024-02-20 11:41:52.863 2024-02-20 11:51:54.874 Establish material they meet. Little bag idea region live follow i Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve. https://example.com/ 836 \N 432381 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.1883502182169 0 \N \N f 0 \N 0 225705645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438686 2024-02-25 21:47:38.764 2024-02-25 21:57:39.886 \N Water actually point similar. Box war specific a https://example.com/ 21555 438349 438191.438284.438297.438333.438349.438686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9193818917851 0 \N \N f 0 \N 0 211585687 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 438695 2024-02-25 21:58:58.078 2024-02-25 22:09:59.965 Health reduce performance body similar light wear this. Training purpose sugge Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest. https://example.com/ 4177 \N 438695 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.1206513592528 0 \N \N f 0 \N 0 91796823 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438624 2024-02-25 20:23:50.715 2024-02-25 20:33:51.889 Which only rich free agreement. Likely co Break test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent https://example.com/ 12175 \N 438624 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.2485819551911 0 \N \N f 0 \N 0 188688930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432244 2024-02-20 08:34:55.833 2024-02-20 08:44:57.445 \N Product analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish windo https://example.com/ 18704 432135 432135.432244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7249374410469 0 \N \N f 0 \N 1 190288531 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 441223 2024-02-27 23:15:55.045 2024-02-27 23:25:56.082 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure spe https://example.com/ 21104 440764 440764.441223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2434768524179 0 \N \N f 0 \N 0 214431773 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441252 2024-02-27 23:44:33.097 2024-02-27 23:54:34.487 \N Race site manager blood. President perform und https://example.com/ 12566 441176 441176.441252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3788526661368 0 \N \N f 0 \N 0 69481846 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 432397 2024-02-20 12:00:05.6 2024-02-20 12:00:10.708 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nMoment hundred skin trip hour hope comput https://example.com/ 4624 432396 432396.432397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3385164364128 0 \N \N f 0 \N 0 245612762 0 f f \N \N \N \N 432396 \N 0 0 \N \N f \N 440917 2024-02-27 18:40:22.925 2024-02-27 18:50:23.921 \N Mrs when number place under moment. Own including always espec https://example.com/ 20998 440764 440764.440917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6287514798116 0 \N \N f 0 \N 0 159338722 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 432396 2024-02-20 12:00:04.962 2024-02-20 12:10:06.744 Never hotel town trip thus safe eight. Share high rich ground western de \N https://example.com/ 1495 \N 432396 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.216036657068663 0 \N \N f 0 \N 1 87801882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438668 2024-02-25 21:16:54.619 2024-02-25 21:26:55.897 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old bo https://example.com/ 17147 438646 438397.438646.438668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.293563609247 0 \N \N f 0 \N 2 114090730 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 443102 2024-02-29 06:06:32.019 2024-02-29 06:16:33.447 \N Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. T https://example.com/ 11956 442979 442781.442979.443102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6643058957706 0 \N \N f 0 \N 0 244603130 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 441155 2024-02-27 22:11:42.643 2024-02-27 22:21:44.067 \N Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission gr https://example.com/ 714 441053 440764.441016.441053.441155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7006655653118 0 \N \N f 0 \N 0 219070529 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441161 2024-02-27 22:23:42.63 2024-02-27 22:33:45.196 \N Leg maintain ac https://example.com/ 7903 441027 440692.441027.441161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.91403665725318 0 \N \N f 0 \N 0 227124260 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443150 2024-02-29 07:24:15.282 2024-02-29 07:34:16.615 Price occur station pr Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional https://example.com/ 20208 \N 443150 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 2.90489270691324 0 \N \N f 0 \N 2 116762543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443149 2024-02-29 07:16:23.396 2024-02-29 07:26:24.459 \N Race report base really very after. Focu https://example.com/ 1237 443144 442632.443144.443149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3564186888113 0 \N \N f 0 \N 2 188323905 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 438732 2024-02-25 23:04:53.325 2024-02-25 23:14:55.049 \N Pattern someone notice power fly. Against expect new often https://example.com/ 1173 438538 438093.438185.438538.438732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80772050710557 0 \N \N f 0 \N 0 112145849 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 441506 2024-02-28 06:26:13.941 2024-02-28 06:36:14.999 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summ https://example.com/ 17001 441346 441346.441506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.62768481629642 0 \N \N f 0 \N 0 217282648 0 f f \N \N \N \N 441346 \N 0 0 \N \N f \N 441508 2024-02-28 06:32:14.661 2024-02-28 06:42:16.408 \N Book ok power church man machine. Where stop customer street response. Game station old. Leader page others https://example.com/ 6798 441383 441383.441508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.37271897385696 0 \N \N f 0 \N 0 65384445 0 f f \N \N \N \N 441383 \N 0 0 \N \N f \N 432367 2024-02-20 11:23:43.204 2024-02-20 11:33:44.642 \N Through hope mouth score task suggest consumer certainly. Health continue impo https://example.com/ 18426 432330 432243.432330.432367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8246903116482 0 \N \N f 0 \N 0 20755172 0 f f \N \N \N \N 432243 \N 0 0 \N \N f \N 435088 2024-02-22 15:16:17.461 2024-02-22 15:26:18.732 \N Election parent through minute sit. Name others benefit ago commercial. Growth machi https://example.com/ 4763 434795 434795.435088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8346664547463 0 \N \N f 0 \N 0 101421423 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 432406 2024-02-20 12:11:54.967 2024-02-20 12:21:56.853 \N Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head k https://example.com/ 10102 426790 426508.426529.426626.426646.426656.426666.426684.426723.426790.432406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8004617529795 0 \N \N f 0 \N 0 71755146 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 436528 2024-02-23 18:24:00.716 2024-02-23 18:34:02.108 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality e https://example.com/ 18017 436515 436493.436515.436528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8198216957095 0 \N \N f 0 \N 0 53223937 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 435079 2024-02-22 15:02:57.245 2024-02-22 15:12:58.202 \N Area just subject pretty. Three employee performance. Shoulder tra https://example.com/ 19809 434795 434795.435079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5774236698196 0 \N \N f 0 \N 0 99184010 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 438349 2024-02-25 15:07:57.882 2024-02-25 15:17:59.248 \N We course us bank recently significant myself. Of past themselves condition smile various join. Relat https://example.com/ 21627 438333 438191.438284.438297.438333.438349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9705731660179 0 \N \N f 0 \N 1 204659298 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 435085 2024-02-22 15:13:37.514 2024-02-22 15:23:40.341 \N Natural read drug suggest argue. Attorne https://example.com/ 21523 435062 435062.435085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9522975964018 0 \N \N f 0 \N 0 113845011 0 f f \N \N \N \N 435062 \N 0 0 \N \N f \N 438297 2024-02-25 14:20:43.268 2024-02-25 14:30:44.206 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawye https://example.com/ 999 438284 438191.438284.438297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93799710644296 0 \N \N f 0 \N 3 219861317 0 f f \N \N \N \N 438191 \N 0 0 \N \N f \N 432401 2024-02-20 12:03:27.238 2024-02-20 12:13:29.046 \N Human guy both. Return o https://example.com/ 5775 432385 432385.432401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58718422952142 0 \N \N f 0 \N 0 58002199 0 f f \N \N \N \N 432385 \N 0 0 \N \N f \N 438191 2024-02-25 12:45:53.605 2024-02-25 12:55:55.16 Experience ok car standard item According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital https://example.com/ 6430 \N 438191 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 8.74140040657004 0 \N \N f 0 \N 8 14068447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432407 2024-02-20 12:11:56.156 2024-02-20 12:21:56.852 \N Poor appear go since involve. How form no director material learn child. Customer our dream evening inside https://example.com/ 18446 428486 428486.432407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4313726790118 0 \N \N f 0 \N 0 139183205 0 f f \N \N \N \N 428486 \N 0 0 \N \N f \N 438705 2024-02-25 22:03:30.055 2024-02-25 22:13:31.367 Direction poor if however property student alone speech. Off cont Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commer https://example.com/ 3544 \N 438705 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.96167978088471 0 \N \N f 0 \N 0 166079417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432410 2024-02-20 12:16:09.722 2024-02-20 12:26:11.407 Pattern someone notice power fly. Against expect new often size top. Station eve Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least. https://example.com/ 981 \N 432410 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.9426490069619 0 \N \N f 0 \N 0 16660436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436530 2024-02-23 18:26:26.382 2024-02-23 18:36:27.717 Thousand billion get leg now sort even. Growth much number sometimes Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer https://example.com/ 19886 \N 436530 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.05911804479827 0 \N \N f 0 \N 0 44576908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432412 2024-02-20 12:17:25.53 2024-02-20 12:27:26.765 \N Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy https://example.com/ 19961 432140 430920.432140.432412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7374301584743 0 \N \N f 0 \N 0 86903067 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 432413 2024-02-20 12:21:05.45 2024-02-20 12:31:06.925 \N Deal probably car remember hit reveal. Here black evening rate important how https://example.com/ 19320 430920 430920.432413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6837303689652 0 \N \N f 0 \N 0 138276683 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 434091 2024-02-21 17:55:27.047 2024-02-21 18:05:28.318 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight e https://example.com/ 8269 434031 433828.434031.434091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.35914513606195 0 \N \N f 0 \N 9 117165777 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438625 2024-02-25 20:25:13.441 2024-02-25 20:35:15.95 \N Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nCall system shake up perso https://example.com/ 20706 434091 433828.434031.434091.438625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3030758377185 0 \N \N f 0 \N 2 221976804 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438636 2024-02-25 20:46:41.263 2024-02-25 20:56:42.801 \N Scientist its surface arrive w https://example.com/ 18690 438625 433828.434031.434091.438625.438636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.17467914114582 0 \N \N f 0 \N 1 77466794 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438708 2024-02-25 22:08:01.26 2024-02-25 22:18:02.573 \N Weight statement best almost somet https://example.com/ 1124 438707 281307.281336.281505.281533.282421.282449.282453.284152.284210.284394.437922.438707.438708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25323005033533 0 \N \N f 0 \N 0 50854050 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 432309 2024-02-20 10:05:09.013 2024-02-20 10:15:10.15 Reach too suffer story type remem Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. E https://example.com/ 9276 \N 432309 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.9291810013699 0 \N \N f 0 \N 1 50360671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432372 2024-02-20 11:28:30.601 2024-02-20 11:38:31.285 Anything common leader response. Source news glass bed. Third fire understand Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth alt https://example.com/ 2309 \N 432372 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.5519394943331 0 \N \N f 0 \N 0 213385608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438712 2024-02-25 22:15:31.797 2024-02-25 22:25:33.201 \N International yourself ava https://example.com/ 16598 438159 438093.438159.438712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79779231804991 0 \N \N f 0 \N 0 161242703 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432330 2024-02-20 10:31:13.252 2024-02-20 10:41:14.05 \N Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different patter https://example.com/ 19352 432243 432243.432330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0714417450392 0 \N \N f 0 \N 1 215211612 0 f f \N \N \N \N 432243 \N 0 0 \N \N f \N 432317 2024-02-20 10:14:49.068 2024-02-20 10:24:50.524 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Som https://example.com/ 15858 432301 432301.432317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3421553312721 0 \N \N f 0 \N 4 164288897 0 f f \N \N \N \N 432301 \N 0 0 \N \N f \N 444048 2024-02-29 18:43:32.375 2024-02-29 18:53:33.943 \N Direction fill away friend environmental paper. Camera director respond. Until write my top https://example.com/ 2502 443528 443528.444048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8839395185152 0 \N \N f 0 \N 0 131667950 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 438713 2024-02-25 22:18:07.828 2024-02-25 22:28:08.965 \N Whose eye what surface. Leader use yet six despite memory front science. Necessary mo https://example.com/ 10056 438710 438405.438507.438517.438588.438657.438696.438710.438713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7159912037983 0 \N \N f 0 \N 0 34919253 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 432243 2024-02-20 08:34:09.993 2024-02-20 08:44:11.101 Tax here if project. Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Sc https://example.com/ 8541 \N 432243 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 16.0860805533023 0 \N \N f 0 \N 2 21996478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441942 2024-02-28 13:48:27.6 2024-02-28 13:58:29.733 Community region she TV since so According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest. https://example.com/ 21446 \N 441942 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9472525521688 0 \N \N f 0 \N 3 175580342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432375 2024-02-20 11:34:45.426 2024-02-20 11:44:46.478 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husb https://example.com/ 7558 432319 432203.432256.432286.432303.432319.432375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.280310205388759 0 \N \N f 0 \N 1 215267344 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 432423 2024-02-20 12:33:42.294 2024-02-20 12:43:43.308 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authorit https://example.com/ 11873 432420 432170.432214.432420.432423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8677767590954 0 \N \N f 0 \N 0 16637518 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 441992 2024-02-28 14:09:15.923 2024-02-28 14:19:18.384 \N Piece write exist main Mrs mouth. Clearly fish baby. Four si https://example.com/ 12220 441975 441975.441992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.91589929551888 0 \N \N f 0 \N 0 217971990 0 f f \N \N \N \N 441975 \N 0 0 \N \N f \N 436927 2024-02-24 05:41:05.547 2024-02-24 05:51:07.207 \N Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level th https://example.com/ 18351 436905 436733.436835.436905.436927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9895885125239 0 \N \N f 0 \N 0 38809479 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 432424 2024-02-20 12:35:11.613 2024-02-20 12:45:13.43 Soon raise sense education hold away. Whatever unit General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund. https://example.com/ 21373 \N 432424 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.3055878266028 0 \N \N f 0 \N 0 58286323 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432421 2024-02-20 12:32:28.75 2024-02-20 12:42:30.149 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nSmall career baby democratic natio https://example.com/ 18280 432378 432378.432421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4465117842547 0 \N \N f 0 \N 0 223256252 0 f f \N \N \N \N 432378 \N 0 0 \N \N f \N 432393 2024-02-20 11:58:00.159 2024-02-20 12:08:01.633 \N Himself seem along exist https://example.com/ 20156 432382 432344.432382.432393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.258949779687 0 \N \N f 0 \N 0 76135150 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432385 2024-02-20 11:47:37.874 2024-02-20 11:57:39.279 Risk clearly listen table total. Plan age big easy off. Toward alone base t Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find. https://example.com/ 679 \N 432385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9491030171295 0 \N \N f 0 \N 1 127120740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431852 2024-02-19 20:41:18.415 2024-02-19 20:51:20.689 \N With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually requi https://example.com/ 726 429996 429996.431852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.43613705415968 0 \N \N f 0 \N 0 43997938 0 f f \N \N \N \N 429996 \N 0 0 \N \N f \N 438198 2024-02-25 12:51:14.337 2024-02-25 13:01:15.85 Family material upon Democrat. The remain appear information degree. Same em Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region. https://example.com/ 20613 \N 438198 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 20.3427560674173 0 \N \N f 0 \N 2 140799534 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438671 2024-02-25 21:24:24.052 2024-02-25 21:34:25.639 \N Hear direct https://example.com/ 691 438583 438583.438671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5198720215517 0 \N \N f 0 \N 1 96364224 0 f f \N \N \N \N 438583 \N 0 0 \N \N f \N 432425 2024-02-20 12:38:45.138 2024-02-20 12:48:46.968 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill si https://example.com/ 8376 431844 431844.432425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.55497468454881 0 \N \N f 0 \N 0 227213606 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432418 2024-02-20 12:28:18.177 2024-02-20 12:38:19.807 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year the https://example.com/ 21437 432375 432203.432256.432286.432303.432319.432375.432418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8093778844832 0 \N \N f 0 \N 0 64903063 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 438716 2024-02-25 22:22:19.281 2024-02-25 22:32:20.574 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of r https://example.com/ 2961 438709 438405.438507.438517.438588.438657.438696.438703.438709.438716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15240728025424 0 \N \N f 0 \N 2 215515807 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 433961 2024-02-21 16:47:06.168 2024-02-21 16:57:07.344 \N Foot upon smile pass house significant result https://example.com/ 8472 433844 433844.433961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3464327154123 0 \N \N f 0 \N 0 215220902 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 438706 2024-02-25 22:07:26.872 2024-02-25 22:17:28.62 \N Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nC https://example.com/ 5728 438636 433828.434031.434091.438625.438636.438706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92071541073223 0 \N \N f 0 \N 0 245952701 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 432400 2024-02-20 12:01:41.841 2024-02-20 12:11:42.879 Same listen suggest five serve sit need if. South l Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite. https://example.com/ 17710 \N 432400 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 14.7970480546541 0 \N \N f 0 \N 0 111123785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444058 2024-02-29 18:47:59.32 2024-02-29 18:58:00.257 \N Them its apply task https://example.com/ 9184 444045 443799.443905.444045.444058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.260925878902931 0 \N \N f 0 \N 0 133301558 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 432408 2024-02-20 12:14:41.326 2024-02-20 12:24:42.861 \N Cause daug https://example.com/ 19924 432382 432344.432382.432408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84922106418657 0 \N \N f 0 \N 0 72972803 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432431 2024-02-20 12:48:21.482 2024-02-20 12:58:23.478 She for deep administration everybody under front over. Othe Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he. https://example.com/ 5112 \N 432431 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.1620442375863 0 \N \N f 0 \N 0 108679624 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436577 2024-02-23 19:12:44.97 2024-02-23 19:22:46.032 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agen https://example.com/ 664 436564 436493.436564.436577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.561111020847 0 \N \N f 0 \N 2 86886458 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 432308 2024-02-20 10:02:13.509 2024-02-20 10:12:15.003 Affect major fire admit technology ba Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional. https://example.com/ 20340 \N 432308 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 2.38721729665517 0 \N \N f 0 \N 0 34672276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435857 2024-02-23 05:32:49.636 2024-02-23 05:42:50.997 \N Lead against area n https://example.com/ 5746 435847 435847.435857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8214410025434 0 \N \N f 0 \N 0 13471434 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 436917 2024-02-24 05:02:35.625 2024-02-24 05:12:37.003 \N Measure whether or material herself. Under acro https://example.com/ 8423 436909 436909.436917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6562961309968 0 \N \N f 0 \N 0 243201997 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 443937 2024-02-29 17:42:23.202 2024-02-29 17:52:24.664 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record gro https://example.com/ 10393 443295 443295.443937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1287567512555 0 \N \N f 0 \N 0 88108965 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 432395 2024-02-20 11:59:35.369 2024-02-20 12:09:37.16 \N Tree house inter https://example.com/ 5752 432378 432378.432395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.8092488019928 0 \N \N f 0 \N 0 101632013 0 f f \N \N \N \N 432378 \N 0 0 \N \N f \N 435081 2024-02-22 15:03:52.264 2024-02-22 15:13:54.035 \N Fund bring design https://example.com/ 20599 435053 435053.435081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4147886851748 0 \N \N f 0 \N 0 37847184 0 f f \N \N \N \N 435053 \N 0 0 \N \N f \N 432434 2024-02-20 12:56:08.604 2024-02-20 13:06:09.937 \N Theory teach dream home past. Population lose e https://example.com/ 17838 431003 429644.431003.432434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7639241401224 0 \N \N f 0 \N 0 100531974 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 438703 2024-02-25 22:03:06.164 2024-02-25 22:13:07.811 \N Once could m https://example.com/ 10519 438696 438405.438507.438517.438588.438657.438696.438703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7432042570706 0 \N \N f 0 \N 4 222845707 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 432450 2024-02-20 13:07:30.531 2024-02-20 13:17:31.743 \N Leave relationship rule rich draw soon protect continue. Intern https://example.com/ 20133 432096 432096.432450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.43643406666402 0 \N \N f 0 \N 0 233657037 0 f f \N \N \N \N 432096 \N 0 0 \N \N f \N 438721 2024-02-25 22:39:02.053 2024-02-25 22:49:03.839 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality https://example.com/ 16965 438719 438405.438507.438517.438588.438657.438696.438703.438709.438716.438719.438721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1375386875674 0 \N \N f 0 \N 0 90678067 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438723 2024-02-25 22:46:02.92 2024-02-25 22:56:04.921 \N Bad half least community https://example.com/ 21091 438697 438697.438723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8160339931463 0 \N \N f 0 \N 0 201573820 0 f f \N \N \N \N 438697 \N 0 0 \N \N f \N 435062 2024-02-22 14:54:05.955 2024-02-22 15:04:08.211 Soon raise sense education hol Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager. https://example.com/ 6688 \N 435062 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 10.4616842811739 0 \N \N f 0 \N 2 248250373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435093 2024-02-22 15:20:53.042 2024-02-22 15:30:54.942 \N Can shoulder modern daughter. Where difficult oil along. Star https://example.com/ 8162 435062 435062.435093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0878494793735 0 \N \N f 0 \N 0 21338615 0 f f \N \N \N \N 435062 \N 0 0 \N \N f \N 435080 2024-02-22 15:03:48.639 2024-02-22 15:13:49.96 \N Great look know get. Whatever central ago order born near. Class relationship majority cut betw https://example.com/ 9354 435037 434991.435037.435080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5205976852265 0 \N \N f 0 \N 0 153331976 0 f f \N \N \N \N 434991 \N 0 0 \N \N f \N 438697 2024-02-25 22:00:04.38 2024-02-25 22:10:06.8 Author professional find face reflect. Defens \N https://example.com/ 954 \N 438697 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.2686914818641 0 \N \N f 0 \N 2 96001992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432337 2024-02-20 10:38:54.592 2024-02-20 10:48:56.381 Record recent evening worry. Direction thought property Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nLetter bank officer fast use a. She chance including maintain mother me https://example.com/ 18336 \N 432337 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.48242151997908 0 \N \N f 0 \N 4 156379378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432436 2024-02-20 13:00:53.626 2024-02-20 13:10:55.231 \N Build toward black meet no you https://example.com/ 2016 289690 289690.432436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4065113403138 0 \N \N f 0 \N 0 84855018 0 f f \N \N \N \N 289690 \N 0 0 \N \N f \N 432440 2024-02-20 13:01:06.899 2024-02-20 13:11:08.294 \N Whether special arm economy ho https://example.com/ 21612 288851 288851.432440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62439160390415 0 \N \N f 0 \N 0 116872377 0 f f \N \N \N \N 288851 \N 0 0 \N \N f \N 432442 2024-02-20 13:01:18.005 2024-02-20 13:11:19.535 \N About easy answer glass. Fire https://example.com/ 18460 288518 288518.432442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5939341407682 0 \N \N f 0 \N 0 145806504 0 f f \N \N \N \N 288518 \N 0 0 \N \N f \N 432428 2024-02-20 12:45:39.685 2024-02-20 12:55:41.499 White have loss parent whole statement. Find cou Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight litt https://example.com/ 14688 \N 432428 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8798075889991 0 \N \N f 0 \N 8 233832540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432390 2024-02-20 11:54:21.907 2024-02-20 12:04:23.231 \N Hour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree sci https://example.com/ 5794 432344 432344.432390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90053857345801 0 \N \N f 0 \N 0 235799184 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432447 2024-02-20 13:06:38.566 2024-02-20 13:16:39.874 Community least media interest. Senior yet later always. This direction Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me. https://example.com/ 21343 \N 432447 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.0631409320333 0 \N \N f 0 \N 0 212078886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432441 2024-02-20 13:01:14.847 2024-02-20 13:11:15.972 \N Not find attack light everythi https://example.com/ 11798 288838 288838.432441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.440550991611275 0 \N \N f 0 \N 0 116811407 0 f f \N \N \N \N 288838 \N 0 0 \N \N f \N 432445 2024-02-20 13:05:44.196 2024-02-20 13:15:45.176 \N Resou https://example.com/ 4650 432251 432251.432445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7729905601985 0 \N \N f 0 \N 1 126270751 0 f f \N \N \N \N 432251 \N 0 0 \N \N f \N 432439 2024-02-20 13:01:04.09 2024-02-20 13:11:05.354 \N Take discuss nature then break https://example.com/ 10611 288914 288914.432439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.327798953695932 0 \N \N f 0 \N 0 179467246 0 f f \N \N \N \N 288914 \N 0 0 \N \N f \N 432067 2024-02-20 00:39:13.743 2024-02-20 00:49:15.623 \N Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type https://example.com/ 21365 431918 431918.432067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.253834775568755 0 \N \N f 0 \N 1 222995206 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 436921 2024-02-24 05:12:21.449 2024-02-24 05:22:23.981 \N Small enj https://example.com/ 19151 436892 436892.436921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82614206045582 0 \N \N f 0 \N 0 243216413 0 f f \N \N \N \N 436892 \N 0 0 \N \N f \N 437629 2024-02-24 19:28:17.166 2024-02-24 19:38:19.354 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create fathe https://example.com/ 18368 437524 437524.437629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5514077975497 0 \N \N f 0 \N 6 60835668 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 438694 2024-02-25 21:58:52.32 2024-02-25 22:09:53.399 Lead against area note movement street push music. Meet world on so West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what. https://example.com/ 2065 \N 438694 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 9.88518946618502 0 \N \N f 0 \N 0 93297943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431223 2024-02-19 18:16:35.206 2024-02-19 18:26:36.664 Every important man a free knowledge. Firm return act She loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them. https://example.com/ 16988 \N 431223 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 3.49462995937046 0 \N \N f 0 \N 0 91630645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439029 2024-02-26 10:06:28.359 2024-02-26 10:16:30.721 Plant strong west enjoy. Those everything may dark face. His seek sea now de Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Int https://example.com/ 2039 \N 439029 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 3.77347989780898 0 \N \N f 0 \N 8 133202496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440299 2024-02-27 07:30:35.304 2024-02-27 07:40:36.434 \N Everyone mention lead pretty protect https://example.com/ 2543 440149 439029.440149.440299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0657096846455 0 \N \N f 0 \N 1 72947236 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 441164 2024-02-27 22:24:39.391 2024-02-27 22:34:40.836 \N Own shoulder kind fact. Poor bring quite https://example.com/ 1740 440299 439029.440149.440299.441164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.754978259950043 0 \N \N f 0 \N 0 117201570 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 430913 2024-02-19 16:18:27.715 2024-02-19 16:28:29.139 Would role them war ten stop bad. Which much reflect old. Play several her befor Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch. https://example.com/ 5003 \N 430913 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.6305500169012 0 \N \N f 0 \N 0 208553275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432417 2024-02-20 12:27:05.448 2024-02-20 12:37:07.558 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However https://example.com/ 15941 432326 432301.432317.432326.432417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72950613866777 0 \N \N f 0 \N 2 69744968 0 f f \N \N \N \N 432301 \N 0 0 \N \N f \N 432438 2024-02-20 13:01:01.174 2024-02-20 13:11:02.242 \N Take discuss nature then break https://example.com/ 1611 289400 289400.432438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9805610925567 0 \N \N f 0 \N 0 29720026 0 f f \N \N \N \N 289400 \N 0 0 \N \N f \N 432448 2024-02-20 13:07:16.771 2024-02-20 13:17:17.946 \N Activity just seem enter development throughout. https://example.com/ 17827 432170 432170.432448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4435310550658 0 \N \N f 0 \N 0 172420280 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 438081 2024-02-25 10:41:57.79 2024-02-25 10:51:59.742 \N Reality deal sort professional try him https://example.com/ 18392 437878 437524.437629.437729.437810.437878.438081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5584229448585 0 \N \N f 0 \N 1 5460386 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 438623 2024-02-25 20:19:43.228 2024-02-25 20:29:44.205 \N Page economic language former television https://example.com/ 18180 438492 438486.438492.438623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9118385484141 0 \N \N f 0 \N 0 25642536 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 433083 2024-02-20 21:54:22.941 2024-02-20 22:04:24.711 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mentio https://example.com/ 17148 433031 433031.433083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.92318525410744 0 \N \N f 0 \N 0 49252209 0 f f \N \N \N \N 433031 \N 0 0 \N \N f \N 432289 2024-02-20 09:39:22.227 2024-02-20 09:49:23.258 Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring. https://example.com/ 6741 \N 432289 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.43848087152134 0 \N \N f 0 \N 2 65440761 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441417 2024-02-28 03:17:02.593 2024-02-28 03:27:04.244 \N Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time https://example.com/ 1806 441345 441247.441274.441345.441417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1664056413755 0 \N \N f 0 \N 0 46085779 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 432096 2024-02-20 02:12:40.473 2024-02-20 02:22:41.976 Page economic language former television be Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physi https://example.com/ 10056 \N 432096 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 10.8884944192679 0 \N \N f 0 \N 2 21923448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432437 2024-02-20 13:00:57.692 2024-02-20 13:10:59.235 \N Plant strong west enjoy. Those https://example.com/ 14271 289462 289462.432437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7736614820282 0 \N \N f 0 \N 0 96871655 0 f f \N \N \N \N 289462 \N 0 0 \N \N f \N 432373 2024-02-20 11:30:24.932 2024-02-20 11:40:26.242 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. https://example.com/ 5761 432371 432339.432371.432373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83273686980294 0 \N \N f 0 \N 2 235203092 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 432453 2024-02-20 13:11:54.603 2024-02-20 13:21:55.834 Catch as herself Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration. https://example.com/ 20452 \N 432453 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8087279249037 0 \N \N f 0 \N 0 37005676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432443 2024-02-20 13:02:11.829 2024-02-20 13:12:13.503 \N Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior https://example.com/ 946 432344 432344.432443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6448056984464 0 \N \N f 0 \N 0 220493928 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432429 2024-02-20 12:47:59.403 2024-02-20 12:58:01.222 \N Occur chair truth these officer focus black. Walk create https://example.com/ 21614 432135 432135.432429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55100875099129 0 \N \N f 0 \N 1 155595549 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 438728 2024-02-25 22:54:47.172 2024-02-25 23:04:48.573 \N Provide red song family quickly. Free point fish relationship. Media who share litt https://example.com/ 9366 438701 438397.438646.438668.438701.438728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8061280432101 0 \N \N f 0 \N 0 52852422 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 438334 2024-02-25 15:00:04.936 2024-02-25 15:10:06.681 Back spend task real. Relationship off \N https://example.com/ 18336 \N 438334 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.499705175949785 0 \N \N f 0 \N 1 236678406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438532 2024-02-25 18:14:25.866 2024-02-25 18:24:28.154 \N Term ok concern experience cold any certainly. Today turn respond high suf https://example.com/ 19690 437747 437670.437747.438532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8133501407829 0 \N \N f 0 \N 0 22659227 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 441122 2024-02-27 21:33:25.498 2024-02-27 21:43:27.069 \N Yourself teach week line no hotel whatever. Identify floor his employee res https://example.com/ 725 441054 441054.441122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.216196189629 0 \N \N f 0 \N 1 5964423 0 f f \N \N \N \N 441054 \N 0 0 \N \N f \N 432452 2024-02-20 13:11:27.258 2024-02-20 13:21:28.225 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. L https://example.com/ 20981 432373 432339.432371.432373.432452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.684707972429912 0 \N \N f 0 \N 1 216867656 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 438474 2024-02-25 17:34:05.189 2024-02-25 17:44:06.585 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team sho https://example.com/ 18188 438093 438093.438474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4796368854532 0 \N \N f 0 \N 1 122926005 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432449 2024-02-20 13:07:29.305 2024-02-20 13:17:31.034 Last expert dark compare nearly film camera. If woman tri Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside. https://example.com/ 17166 \N 432449 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 6.30226865718235 0 \N \N f 0 \N 1 166446969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438057 2024-02-25 10:00:04.399 2024-02-25 10:10:06.346 Family material upon Democrat. The remain appear \N https://example.com/ 20500 \N 438057 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.3216730241488 0 \N \N f 0 \N 1 130029587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432456 2024-02-20 13:14:59.697 2024-02-20 13:25:01.012 Until must summer international. Would child language girl person Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light. https://example.com/ 6499 \N 432456 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0284993553555 0 \N \N f 0 \N 0 116534261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439742 2024-02-26 18:37:45.454 2024-02-26 18:47:46.988 \N Economy rest whatever spring among least agai https://example.com/ 18119 439674 439624.439674.439742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.49806371660613 0 \N \N f 0 \N 0 214729632 0 f f \N \N \N \N 439624 \N 0 0 \N \N f \N 436835 2024-02-24 02:03:57.478 2024-02-24 02:13:58.684 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. To https://example.com/ 6749 436733 436733.436835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1812257441846 0 \N \N f 0 \N 2 65846229 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 432458 2024-02-20 13:15:20.755 2024-02-20 13:25:22.307 \N Long sound continue test occur watch. Claim money speak shake. Best throw https://example.com/ 14213 432311 432311.432458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4953751729813 0 \N \N f 0 \N 0 21587505 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 437880 2024-02-25 02:36:54.613 2024-02-25 02:46:55.807 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lo https://example.com/ 17984 437723 437723.437880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8446770591246 0 \N \N f 0 \N 13 64333372 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438666 2024-02-25 21:10:09.576 2024-02-25 21:20:10.67 \N Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate fi https://example.com/ 18909 438081 437524.437629.437729.437810.437878.438081.438666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.20487465119236 0 \N \N f 0 \N 0 140369245 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 438729 2024-02-25 23:02:15.902 2024-02-25 23:12:17.006 \N Meet whose open couple believe something sign https://example.com/ 11450 438554 436733.438554.438729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6331752923049 0 \N \N f 0 \N 0 159059266 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 438646 2024-02-25 20:53:56.309 2024-02-25 21:03:58.475 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they offic https://example.com/ 17707 438397 438397.438646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14681269783706 0 \N \N f 0 \N 5 181307737 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 432302 2024-02-20 09:53:57.28 2024-02-20 10:03:58.824 \N Go special a bed great same concern. Need plan look whatever re https://example.com/ 16145 432052 432052.432302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9701529668963 0 \N \N f 0 \N 0 696618 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 436733 2024-02-23 23:33:43.067 2024-02-23 23:43:44.375 Return agreement happy health option. Someon Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nFriend growth election wate https://example.com/ 12976 \N 436733 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.14121578463162 0 \N \N f 0 \N 15 142083674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441561 2024-02-28 08:09:55.488 2024-02-28 08:19:57.369 \N Ever small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nSell attention budget indicate. Others such agreement hot step training serve. Signif https://example.com/ 1493 441548 441333.441396.441523.441546.441548.441561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8644899515317 0 \N \N f 0 \N 0 67360996 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 438185 2024-02-25 12:33:14.124 2024-02-25 12:43:15.963 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. https://example.com/ 21520 438093 438093.438185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6409590757605 0 \N \N f 0 \N 2 91919005 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438499 2024-02-25 17:50:24.606 2024-02-25 18:00:25.52 \N Admit TV soon https://example.com/ 20551 438492 438486.438492.438499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4945688001976 0 \N \N f 0 \N 0 236074531 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 441574 2024-02-28 08:25:57.364 2024-02-28 08:35:59.653 \N Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process ac https://example.com/ 20972 440292 440292.441574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78952662284587 0 \N \N f 0 \N 0 58100804 0 f f \N \N \N \N 440292 \N 0 0 \N \N f \N 441577 2024-02-28 08:29:07.762 2024-02-28 09:05:06.289 \N Window here second. https://example.com/ 14074 441562 441333.441403.441463.441545.441549.441559.441562.441577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3594422348582 0 \N \N f 0 \N 3 113834893 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441595 2024-02-28 08:57:08.991 2024-02-28 09:07:10.195 \N Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure worl https://example.com/ 19637 441593 441593.441595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0618895893177 0 \N \N f 0 \N 0 42579162 0 f f \N \N \N \N 441593 \N 0 0 \N \N f \N 442000 2024-02-28 14:11:17.16 2024-02-28 14:21:18.301 \N Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support pe https://example.com/ 19943 441937 441661.441934.441937.442000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.34620845229305 0 \N \N f 0 \N 2 198520738 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 441981 2024-02-28 14:04:59.059 2024-02-28 14:14:59.843 \N Girl fire bring middle popular. And s https://example.com/ 20376 441975 441975.441981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.146128941897 0 \N \N f 0 \N 1 95224218 0 f f \N \N \N \N 441975 \N 0 0 \N \N f \N 432182 2024-02-20 06:05:18.92 2024-02-20 06:15:20.368 \N Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when s https://example.com/ 746 431844 431844.432182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.70983158672617 0 \N \N f 0 \N 0 171267883 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438735 2024-02-25 23:12:31.776 2024-02-25 23:22:33.282 At audience she. Skill performance represent mout Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear. https://example.com/ 20479 \N 438735 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.25112215879993 0 \N \N f 0 \N 0 88082125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438305 2024-02-25 14:29:39.997 2024-02-25 14:39:41.32 \N Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg righ https://example.com/ 1007 437846 437723.437738.437759.437763.437766.437771.437846.438305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.65105146416318 0 \N \N f 0 \N 1 157473251 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432263 2024-02-20 09:11:17.255 2024-02-20 09:21:18.666 \N Be human year girl treatment nothing might. Floor unit science wear. Fly https://example.com/ 7097 432052 432052.432263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.677347938333 0 \N \N f 0 \N 0 137041597 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 432370 2024-02-20 11:25:33.839 2024-02-20 11:35:35.068 \N Although thought fall today protect ago. Able instit https://example.com/ 16505 429703 429670.429679.429703.432370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9716310545408 0 \N \N f 0 \N 1 41824658 0 f f \N \N \N \N 429670 \N 0 0 \N \N f \N 438730 2024-02-25 23:03:46.818 2024-02-25 23:13:49.373 \N Never money Congress data single https://example.com/ 19471 438474 438093.438474.438730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2486246831237 0 \N \N f 0 \N 0 94657286 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 439508 2024-02-26 15:47:26.704 2024-02-26 15:57:28.395 \N South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple https://example.com/ 20267 439427 439298.439427.439508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2656846427519 0 \N \N f 0 \N 0 110087941 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 431384 2024-02-19 18:42:38.687 2024-02-19 18:52:39.952 \N Right student yard protect cover. Carry these sh https://example.com/ 9099 431382 413007.430173.430605.430985.431110.431382.431384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4706662470261 0 \N \N f 0 \N 2 114478659 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 431003 2024-02-19 17:20:44.194 2024-02-19 17:30:45.392 \N Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nEnough blue provide home alone reality attack certain. Short son ch https://example.com/ 2402 429644 429644.431003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1161711096833 0 \N \N f 0 \N 1 46620249 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 435083 2024-02-22 15:10:20.071 2024-02-22 15:20:21.931 Own shoulder kind fact. Poor bring quite the better. Decide fight certainly Quite teach https://example.com/ 1244 \N 435083 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.1561256200511 0 \N \N f 0 \N 0 46416572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439427 2024-02-26 15:05:12.664 2024-02-26 15:15:13.985 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night cas https://example.com/ 7827 439298 439298.439427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60626885242887 0 \N \N f 0 \N 1 107198169 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 438641 2024-02-25 20:50:48.01 2024-02-25 21:00:49.683 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nReach matter agency population. Capital PM pass i https://example.com/ 3304 438317 438317.438641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83017499659545 0 \N \N f 0 \N 5 3751203 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432374 2024-02-20 11:33:35.697 2024-02-20 11:43:36.639 \N Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher se https://example.com/ 8245 432344 432344.432374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21147274716233 0 \N \N f 0 \N 1 156352081 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439750 2024-02-26 18:45:08.728 2024-02-26 18:55:09.941 Check worry radio fine stuff. Lead least wall course week already. Shake a Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship. https://example.com/ 775 \N 439750 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 21.5625942031239 0 \N \N f 0 \N 0 191922449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432463 2024-02-20 13:26:41.382 2024-02-20 13:36:43.819 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock https://example.com/ 9159 432374 432344.432374.432463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69494165575502 0 \N \N f 0 \N 0 139863601 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438494 2024-02-25 17:46:10.967 2024-02-25 17:56:12.385 Recent yourself price region detail leader. Positive whole Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture https://example.com/ 19044 \N 438494 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.63888722334196 0 \N \N f 0 \N 0 61387106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435090 2024-02-22 15:17:17.075 2024-02-22 15:27:18.386 \N Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight https://example.com/ 9166 435064 433828.435064.435090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1825175716051 0 \N \N f 0 \N 0 18223771 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 435094 2024-02-22 15:21:17.881 2024-02-22 15:21:23.226 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society t https://example.com/ 18448 424089 95306.95453.424089.435094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.93375530468423 0 \N \N f 0 \N 0 230016640 0 f f \N \N \N \N 95306 \N 0 0 \N \N f \N 435038 2024-02-22 14:32:39.29 2024-02-22 14:42:41.834 \N Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometim https://example.com/ 18608 434962 434962.435038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.6056574633166 0 \N \N f 0 \N 0 59517608 0 f f \N \N \N \N 434962 \N 0 0 \N \N f \N 432327 2024-02-20 10:27:20.875 2024-02-20 10:37:22.17 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nHis mean individual ben https://example.com/ 19662 432259 432259.432327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.53287174704105 0 \N \N f 0 \N 0 206033281 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 432461 2024-02-20 13:20:08.11 2024-02-20 13:30:09.673 Family material upon Democrat. The remain appear information degree. Same employ Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume. https://example.com/ 21166 \N 432461 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.94388805094952 0 \N \N f 0 \N 0 42472254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438495 2024-02-25 17:46:38.738 2024-02-25 17:56:40.069 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture par https://example.com/ 15484 438414 438414.438495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.09392305393065 0 \N \N f 0 \N 0 220436865 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432415 2024-02-20 12:24:49.562 2024-02-20 12:34:51.151 \N Cell language east present. Federal arrive much. Drug financial place popular small. Buy already offi https://example.com/ 4175 432311 432311.432415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6948176297861 0 \N \N f 0 \N 0 40788116 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432465 2024-02-20 13:28:19.909 2024-02-20 13:38:21.542 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto R https://example.com/ 657 430626 430626.432465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.669152701018 0 \N \N f 0 \N 0 124758029 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 438745 2024-02-25 23:45:33.614 2024-02-25 23:55:35.883 \N Movie teacher to only my necessary. Quite away won https://example.com/ 2529 438742 438737.438742.438745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6753470148544 0 \N \N f 0 \N 0 109889253 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 438744 2024-02-25 23:45:06.495 2024-02-25 23:55:07.537 \N Measure enjoy other scienti https://example.com/ 7773 438641 438317.438641.438744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5932477679357 0 \N \N f 0 \N 4 237287339 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432411 2024-02-20 12:17:14.984 2024-02-20 12:27:17.372 Game own manager. Everybo Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do. https://example.com/ 1064 \N 432411 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1182852597862 0 \N \N f 0 \N 7 110887898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438500 2024-02-25 17:50:37.879 2024-02-25 18:00:39.709 \N Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. https://example.com/ 13763 438469 438414.438469.438500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8909703263228 0 \N \N f 0 \N 0 109402341 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432470 2024-02-20 13:47:05.771 2024-02-20 13:57:07.383 Total necessary thought task capital nothing. Girl analysis industry detai Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough. https://example.com/ 21453 \N 432470 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.2122097216701 0 \N \N f 0 \N 0 243046533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432475 2024-02-20 13:53:49.409 2024-02-20 14:03:50.792 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large c https://example.com/ 2285 432015 430892.431823.432015.432475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4588268510713 0 \N \N f 0 \N 0 235861767 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 435213 2024-02-22 16:44:55.372 2024-02-22 16:54:57.408 \N Door wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never https://example.com/ 8326 435046 435046.435213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3196162382155 0 \N \N f 0 \N 1 174308784 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 438755 2024-02-25 23:54:03.197 2024-02-26 00:04:04.645 \N Moment smile cell cold roa https://example.com/ 20691 438607 438607.438755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8697169970188 0 \N \N f 0 \N 0 73423177 0 f f \N \N \N \N 438607 \N 0 0 \N \N f \N 432460 2024-02-20 13:19:21.111 2024-02-20 13:29:22.15 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change natio https://example.com/ 20691 432420 432170.432214.432420.432460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79980429206449 0 \N \N f 0 \N 3 73418570 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 432484 2024-02-20 14:06:11.071 2024-02-20 14:16:12.698 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never lif https://example.com/ 775 432467 432467.432484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.583686293455 0 \N \N f 0 \N 1 192811666 0 f f \N \N \N \N 432467 \N 0 0 \N \N f \N 431401 2024-02-19 18:57:23.416 2024-02-19 19:07:25.434 Prevent arm food order. Industry rec Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nDecide up red e https://example.com/ 18877 \N 431401 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 14.1816938258275 0 \N \N f 0 \N 10 237938215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435507 2024-02-22 20:48:22.86 2024-02-22 20:58:25.784 Network interview indeed whether enjoy realize. Model full talk insti First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least. https://example.com/ 6777 \N 435507 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.5027518226499 0 \N \N f 0 \N 0 126778779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435506 2024-02-22 20:48:01.113 2024-02-22 20:58:02.443 \N Board age miss drug sense. Take here some https://example.com/ 15273 435500 435284.435500.435506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9708820323787 0 \N \N f 0 \N 0 126428454 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 438271 2024-02-25 14:02:31.729 2024-02-25 14:12:33.2 \N Parent often ever. Song modern https://example.com/ 15536 438016 437723.437738.437759.437763.437766.437771.438016.438271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.82653785652066 0 \N \N f 0 \N 0 207762888 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438016 2024-02-25 08:23:39.291 2024-02-25 08:33:41.077 \N Drug you class operation. Have job sense. Face https://example.com/ 3478 437771 437723.437738.437759.437763.437766.437771.438016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2429315061949 0 \N \N f 0 \N 1 100967750 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432420 2024-02-20 12:30:03.08 2024-02-20 12:40:05.298 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nRe https://example.com/ 19016 432214 432170.432214.432420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89964628315263 0 \N \N f 0 \N 5 141498768 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 432365 2024-02-20 11:17:57.663 2024-02-20 11:27:58.805 \N Reality four https://example.com/ 659 432345 432344.432345.432365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3607719176588 0 \N \N f 0 \N 1 22658881 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438742 2024-02-25 23:40:58.666 2024-02-25 23:51:00.164 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nSuch among bank choice themselves. Matter in really important. Stage born frie https://example.com/ 20738 438737 438737.438742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1437316757219 0 \N \N f 0 \N 1 159640074 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432494 2024-02-20 14:16:10.861 2024-02-20 14:26:12.016 \N Ten answer natural star research black system three. Mention wish choose. We https://example.com/ 2056 432466 432466.432494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0362938636262 0 \N \N f 0 \N 0 234263828 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 432478 2024-02-20 14:00:05.64 2024-02-20 14:10:08.017 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return ch https://example.com/ 5725 432477 432477.432478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.301685425304 0 \N \N f 0 \N 0 26659378 0 f f \N \N \N \N 432477 \N 0 0 \N \N f \N 436987 2024-02-24 08:57:49.368 2024-02-24 09:07:51.312 \N About cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debat https://example.com/ 2961 436981 436981.436987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28301494034714 0 \N \N f 0 \N 0 141071154 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 433204 2024-02-20 23:50:44.554 2024-02-21 00:00:45.472 \N Begin kind newspaper game process fine de https://example.com/ 657 433034 432920.432980.432992.433032.433034.433204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1953456921305 0 \N \N f 0 \N 4 180585744 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432486 2024-02-20 14:07:29.452 2024-02-20 14:17:30.585 Way all line after. Only trouble they hair when. According the he Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually. https://example.com/ 9036 \N 432486 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.6803772140875 0 \N \N f 0 \N 2 221097734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432476 2024-02-20 13:59:19.189 2024-02-20 14:53:00.1 \N Treatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young https://example.com/ 6382 432468 432468.432476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.425999218698 0 \N \N f 0 \N 1 68220789 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 434903 2024-02-22 12:39:49.82 2024-02-22 12:49:51.594 \N Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern per https://example.com/ 18262 434469 434469.434903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8342552705374 0 \N \N f 0 \N 0 140427671 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 432496 2024-02-20 14:16:47.465 2024-02-20 14:26:48.293 \N Alone force machine policy energy. Stand https://example.com/ 8074 432489 432344.432489.432496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2612198147694 0 \N \N f 0 \N 3 88566394 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432346 2024-02-20 11:00:56.82 2024-02-20 11:10:58.409 \N Quickly fill science from politics foot. Person https://example.com/ 4487 432344 432344.432346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5126631562547 0 \N \N f 0 \N 0 64575143 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432490 2024-02-20 14:12:53.538 2024-02-20 14:22:54.486 \N Sell attention budge https://example.com/ 673 432477 432477.432490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.78411592984 0 \N \N f 0 \N 0 222534518 0 f f \N \N \N \N 432477 \N 0 0 \N \N f \N 432482 2024-02-20 14:05:01.394 2024-02-20 14:15:02.741 \N Eve https://example.com/ 1468 432414 432320.432414.432482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5784507356506 0 \N \N f 0 \N 0 42902844 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 432349 2024-02-20 11:02:05.531 2024-02-20 11:12:06.607 \N Reality four attention. Whose each design pull that wall work. E https://example.com/ 19158 432348 432344.432348.432349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.997003046228 0 \N \N f 0 \N 3 79960042 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439695 2024-02-26 17:51:29.011 2024-02-26 18:01:30.81 \N Four whole sort. Every summer organization https://example.com/ 19282 439677 439677.439695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2006789384553 0 \N \N f 0 \N 1 177629347 0 f f \N \N \N \N 439677 \N 0 0 \N \N f \N 432499 2024-02-20 14:20:30.923 2024-02-20 14:30:32.044 \N Same listen suggest https://example.com/ 19553 432449 432449.432499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4006835715395 0 \N \N f 0 \N 0 137403498 0 f f \N \N \N \N 432449 \N 0 0 \N \N f \N 432497 2024-02-20 14:18:37.387 2024-02-20 14:28:38.915 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new wh https://example.com/ 1012 432464 432464.432497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.311869780243 0 \N \N f 0 \N 0 187020404 0 f f \N \N \N \N 432464 \N 0 0 \N \N f \N 432348 2024-02-20 11:01:19.424 2024-02-20 11:11:20.797 \N Quickly fill science from politics foot. Person available camera east six process rather. https://example.com/ 1738 432344 432344.432348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.416834945543592 0 \N \N f 0 \N 4 176079907 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432488 2024-02-20 14:09:07.829 2024-02-20 14:19:09.82 \N Same need interesting between watch base city https://example.com/ 17517 432469 432469.432488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1205541111192 0 \N \N f 0 \N 1 213911443 0 f f \N \N \N \N 432469 \N 0 0 \N \N f \N 438762 2024-02-26 00:08:00.421 2024-02-26 00:18:01.544 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. L https://example.com/ 4167 438317 438317.438762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2051393432366 0 \N \N f 0 \N 0 77567803 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432500 2024-02-20 14:20:31.426 2024-02-20 14:30:33.073 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout https://example.com/ 3353 432488 432469.432488.432500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2879645951891 0 \N \N f 0 \N 0 84929564 0 f f \N \N \N \N 432469 \N 0 0 \N \N f \N 432435 2024-02-20 12:56:11.739 2024-02-20 13:06:13.304 Speak specific energy international more entire partner. Moment loss withi Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nMajority member tend give recent. Degree body five societ https://example.com/ 1209 \N 432435 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9890122248937 0 \N \N f 0 \N 2 103615930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434527 2024-02-22 04:05:36.385 2024-02-22 04:15:38.217 \N Everyone usually memor https://example.com/ 19284 434514 434514.434527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.45122728555255 0 \N \N f 0 \N 1 66135188 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 432502 2024-02-20 14:20:51.27 2024-02-20 14:30:52.614 \N E https://example.com/ 14357 432435 432435.432502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7741365673191 0 \N \N f 0 \N 0 63232908 0 f f \N \N \N \N 432435 \N 0 0 \N \N f \N 438778 2024-02-26 00:33:34.17 2024-02-26 00:43:35.76 Smile paper though to catch. Situation a By evening job should nature really. Cut black mother finan https://example.com/ 2722 \N 438778 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.5566168410481 0 \N \N f 0 \N 0 213422925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438783 2024-02-26 00:43:45.376 2024-02-26 00:53:46.953 \N With establish effort able Republican wes https://example.com/ 21343 438405 438405.438783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.81850253711263 0 \N \N f 0 \N 0 34297152 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438595 2024-02-25 19:37:43.776 2024-02-25 19:47:45.988 \N Guess join morning man hospital human. Though always according world back. Hope manage https://example.com/ 5069 438317 438317.438595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3431063995499 0 \N \N f 0 \N 0 116311366 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 435524 2024-02-22 21:09:25.65 2024-02-22 21:19:26.892 \N Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes bec https://example.com/ 2000 434934 434934.435524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3192276163158 0 \N \N f 0 \N 0 150466788 0 f f \N \N \N \N 434934 \N 0 0 \N \N f \N 435534 2024-02-22 21:15:27.897 2024-02-22 21:25:29.279 \N Effect receive on newspaper e https://example.com/ 10359 435217 435217.435534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.63265478232864 0 \N \N f 0 \N 0 117060742 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 441576 2024-02-28 08:28:35.119 2024-02-28 08:38:37.523 \N Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge https://example.com/ 705 441571 441571.441576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2126489780992 0 \N \N f 0 \N 0 15166689 0 f f \N \N \N \N 441571 \N 0 0 \N \N f \N 432479 2024-02-20 14:02:34.057 2024-02-20 14:12:36.148 Police do base plan how. Her add beautiful attack Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own. https://example.com/ 14260 \N 432479 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.43714903241061 0 \N \N f 0 \N 1 130358560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437004 2024-02-24 09:20:13.938 2024-02-24 09:30:15.008 \N Role before girl wonder clear many secur https://example.com/ 19842 435209 435046.435209.437004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8341046027494 0 \N \N f 0 \N 1 50441726 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 430901 2024-02-19 16:03:46.076 2024-02-19 16:13:47.489 \N Entire money chair between various plant. Cut https://example.com/ 7376 430626 430626.430901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.778355932603 0 \N \N f 0 \N 1 6765826 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 437455 2024-02-24 16:45:10.769 2024-02-24 16:55:11.527 \N Fact theory worry. Strong itself assume. Focus building woman in https://example.com/ 20377 437443 437218.437437.437439.437443.437455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5408546769881 0 \N \N f 0 \N 3 202622998 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 432523 2024-02-20 14:36:04.172 2024-02-20 14:46:05.157 \N Great idea age friend. Its financial fight https://example.com/ 18680 432337 432337.432523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9993878373332 0 \N \N f 0 \N 0 68127517 0 f f \N \N \N \N 432337 \N 0 0 \N \N f \N 432507 2024-02-20 14:25:13.986 2024-02-20 14:35:15.133 \N Police civil here think minute economic. Let father police. Upon political difficult government c https://example.com/ 14905 432479 432479.432507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3828536062641 0 \N \N f 0 \N 0 101880621 0 f f \N \N \N \N 432479 \N 0 0 \N \N f \N 438766 2024-02-26 00:17:36.772 2024-02-26 00:27:38.131 \N Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach https://example.com/ 10611 438578 438325.438345.438458.438563.438578.438766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4934262453284 0 \N \N f 0 \N 0 175689724 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432227 2024-02-20 07:52:16.921 2024-02-20 08:02:18.281 \N Least start time do. Occur between avoid political use make. Nor no both ability oth https://example.com/ 11192 431816 431816.432227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32697112380183 0 \N \N f 0 \N 0 110804625 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 441055 2024-02-27 20:22:33.612 2024-02-27 20:32:35.138 \N Movie teacher to only my necessary. Quite aw https://example.com/ 18072 441012 440898.441012.441055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16071164523469 0 \N \N f 0 \N 1 49464476 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 436592 2024-02-23 19:41:26.348 2024-02-23 19:51:27.784 \N Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. https://example.com/ 6393 436202 435907.436016.436041.436202.436592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9359171910162 0 \N \N f 0 \N 0 6177906 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 432384 2024-02-20 11:46:41.63 2024-02-20 11:56:42.795 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus https://example.com/ 21605 422717 422717.432384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9986015162003 0 \N \N f 0 \N 0 244682255 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 437085 2024-02-24 12:23:07.107 2024-02-24 12:33:08.281 \N Cle https://example.com/ 15266 437004 435046.435209.437004.437085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0669527539469 0 \N \N f 0 \N 0 22915074 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436819 2024-02-24 01:38:09.498 2024-02-24 01:48:10.595 \N Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west mu https://example.com/ 17183 436816 432920.436721.436816.436819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.267907273425259 0 \N \N f 0 \N 0 67361182 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 436813 2024-02-24 01:31:09.159 2024-02-24 01:41:10.157 \N Begin kind newspaper game process fine democratic whom. Wonder heavy https://example.com/ 15474 436548 436093.436347.436547.436548.436813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.4244054190964 0 \N \N f 0 \N 0 144749147 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 432518 2024-02-20 14:33:59.014 2024-02-20 14:44:00.448 \N Night on mention rather nation soldier everything. H https://example.com/ 4984 432516 432389.432510.432516.432518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65122327892735 0 \N \N f 0 \N 0 155557680 0 f f \N \N \N \N 432389 \N 0 0 \N \N f \N 436627 2024-02-23 20:28:07.85 2024-02-23 20:38:10.644 Community least media interest. Senior yet later alw Word around effect game light https://example.com/ 14074 \N 436627 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.8030335941336 0 \N \N f 0 \N 2 93339122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436610 2024-02-23 20:08:58.029 2024-02-23 20:18:59.222 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nOff https://example.com/ 13587 435488 435488.436610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0517602238052 0 \N \N f 0 \N 0 58078071 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 432432 2024-02-20 12:53:57.169 2024-02-20 13:03:59.192 State wall myself interview World kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye https://example.com/ 20710 \N 432432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8310430788874 0 \N \N f 0 \N 0 91938977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432510 2024-02-20 14:26:59.549 2024-02-20 14:37:00.53 \N Network interview indeed wheth https://example.com/ 17030 432389 432389.432510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.89342851198712 0 \N \N f 0 \N 2 12195463 0 f f \N \N \N \N 432389 \N 0 0 \N \N f \N 432503 2024-02-20 14:21:01.042 2024-02-20 14:31:02.799 \N Coll https://example.com/ 14271 430652 430626.430652.432503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23983015710149 0 \N \N f 0 \N 0 214276559 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 432519 2024-02-20 14:34:26.698 2024-02-20 14:44:27.962 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm social https://example.com/ 21455 432435 432435.432519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.459968256361 0 \N \N f 0 \N 0 8439015 0 f f \N \N \N \N 432435 \N 0 0 \N \N f \N 438767 2024-02-26 00:19:04.34 2024-02-26 00:29:05.682 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect https://example.com/ 5829 438700 438093.438603.438604.438700.438767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16760977060979 0 \N \N f 0 \N 0 212301439 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 436818 2024-02-24 01:36:05.453 2024-02-24 01:46:06.841 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nLanguage effort sport mention guess way. By down lay store race. During heart school https://example.com/ 19572 433296 432920.433186.433247.433296.436818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5309416728631 0 \N \N f 0 \N 0 214778617 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432512 2024-02-20 14:29:23.179 2024-02-20 14:39:24.955 \N Right term sell shoulder. Next chair base young skill fall my https://example.com/ 16670 432345 432344.432345.432512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0328357933477 0 \N \N f 0 \N 0 102495747 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432514 2024-02-20 14:31:09.545 2024-02-20 14:41:11.058 \N Fly include one church TV air. Democrat i https://example.com/ 717 432511 432511.432514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6354936380421 0 \N \N f 0 \N 2 67461818 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 432498 2024-02-20 14:19:11.805 2024-02-20 14:29:13.524 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he g https://example.com/ 11996 432477 432477.432498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8276421490845 0 \N \N f 0 \N 0 190212602 0 f f \N \N \N \N 432477 \N 0 0 \N \N f \N 438768 2024-02-26 00:19:33.311 2024-02-26 00:29:34.8 \N Project them draw walk if https://example.com/ 20220 438749 438649.438731.438749.438768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7551834109453 0 \N \N f 0 \N 0 64157955 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 438770 2024-02-26 00:23:34.21 2024-02-26 00:33:35.985 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second https://example.com/ 16970 438758 438758.438770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7074655683175 0 \N \N f 0 \N 0 22601333 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 432516 2024-02-20 14:32:03.5 2024-02-20 14:42:04.792 \N Consumer point treat task. https://example.com/ 12169 432510 432389.432510.432516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79840650342142 0 \N \N f 0 \N 1 45658280 0 f f \N \N \N \N 432389 \N 0 0 \N \N f \N 432520 2024-02-20 14:34:33.923 2024-02-20 14:44:36.009 \N Republican begin au https://example.com/ 9084 432513 431844.432239.432513.432520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2991842533402 0 \N \N f 0 \N 0 153760776 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432521 2024-02-20 14:34:48.321 2024-02-20 14:44:50.312 \N Reach road deal especially down since ball score. Make https://example.com/ 964 432514 432511.432514.432521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.758141438651 0 \N \N f 0 \N 0 142341536 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 437131 2024-02-24 12:48:26.718 2024-02-24 12:58:27.907 \N House west amount. Again high already himself answer type. Go back Mr. Pattern https://example.com/ 10698 435261 435261.437131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60853255009084 0 \N \N f 0 \N 0 149228369 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 437102 2024-02-24 12:37:12.237 2024-02-24 12:47:14.27 \N Poor often speak everyone collection quite space. Carry paper floor. Comm https://example.com/ 1740 437054 437054.437102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.239122259389 0 \N \N f 0 \N 0 240905590 0 f f \N \N \N \N 437054 \N 0 0 \N \N f \N 441065 2024-02-27 20:36:27.102 2024-02-27 20:46:28.384 \N Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes https://example.com/ 21369 441059 440989.440999.441059.441065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20577199621722 0 \N \N f 0 \N 0 178553190 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 438361 2024-02-25 15:23:03.851 2024-02-25 15:33:04.863 Thus meas Tree I there avoid win https://example.com/ 20525 \N 438361 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 2.25803576482889 0 \N \N f 0 \N 1 94250487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438792 2024-02-26 01:02:35.851 2024-02-26 01:12:38.175 \N Small career baby democratic nation travel. O https://example.com/ 4388 438748 438718.438748.438792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.00512226605112 0 \N \N f 0 \N 0 77636755 0 f f \N \N \N \N 438718 \N 0 0 \N \N f \N 436825 2024-02-24 01:48:08.234 2024-02-24 01:58:10.974 \N Never money Congress https://example.com/ 18629 436675 436675.436825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9987030547248 0 \N \N f 0 \N 0 70835144 0 f f \N \N \N \N 436675 \N 0 0 \N \N f \N 438761 2024-02-26 00:04:54.347 2024-02-26 00:14:55.987 \N Become season style here. Part co https://example.com/ 4322 438749 438649.438731.438749.438761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.99509533716853 0 \N \N f 0 \N 0 57993087 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 432480 2024-02-20 14:02:55.547 2024-02-20 14:12:56.63 Peace then kid under. Exactly nothing p Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain. https://example.com/ 21048 \N 432480 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.63371693232583 0 \N \N f 0 \N 0 34763939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438458 2024-02-25 17:22:50.3 2024-02-25 17:32:51.554 \N Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require b https://example.com/ 1135 438345 438325.438345.438458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2289429164157 0 \N \N f 0 \N 4 140826714 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432844 2024-02-20 18:19:50.943 2024-02-20 18:29:52.089 \N Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produc https://example.com/ 6327 432674 432674.432844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6118541090618 0 \N \N f 0 \N 3 76781098 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 442020 2024-02-28 14:21:05.923 2024-02-28 14:31:07.744 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born f https://example.com/ 5703 441660 441660.442020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9213353320081 0 \N \N f 0 \N 0 141009471 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 436871 2024-02-24 03:09:06.552 2024-02-24 03:19:08.05 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nV https://example.com/ 3440 436870 436837.436870.436871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9495956019476 0 \N \N f 0 \N 3 200954211 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436845 2024-02-24 02:17:55.728 2024-02-24 02:27:57.162 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People https://example.com/ 19961 436840 436837.436840.436845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13802928601503 0 \N \N f 0 \N 3 113341664 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 432472 2024-02-20 13:49:32.675 2024-02-20 13:59:34.124 System lose thought. Him medical during might find full garden. Her sout Ball training https://example.com/ 21263 \N 432472 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.94044776772487 0 \N \N f 0 \N 1 209497602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432509 2024-02-20 14:26:45.133 2024-02-20 14:36:47.203 \N Her particular kind sound hard big. Area door model need phone. Create https://example.com/ 9183 432483 432170.432214.432420.432460.432483.432509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0789552418356 0 \N \N f 0 \N 1 38565161 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 433895 2024-02-21 16:02:09.286 2024-02-21 16:12:10.837 Beyond song throw blood hard. Show already get best. Science fly interview reduc Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting https://example.com/ 902 \N 433895 \N \N \N \N \N \N \N \N security \N ACTIVE \N 23.6297654865184 0 \N \N f 0 \N 1 198368767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432389 2024-02-20 11:52:55.039 2024-02-20 12:02:56.933 Yeah word become defense role yourself suddenly. Draw relationship dream work f Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought. https://example.com/ 11897 \N 432389 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.82085557595918 0 \N \N f 0 \N 3 71203260 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438575 2024-02-25 19:03:55.259 2024-02-25 19:13:56.924 \N Cell civil on much able sure. They rich middle between. Radio https://example.com/ 16289 438388 438388.438575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.273824627948329 0 \N \N f 0 \N 1 198544943 0 f f \N \N \N \N 438388 \N 0 0 \N \N f \N 439745 2024-02-26 18:40:32.904 2024-02-26 18:50:35.076 Cause daughter drop gas. Cell respond always experience u Our because tr https://example.com/ 20912 \N 439745 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.3651115839395 0 \N \N f 0 \N 0 191809533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438786 2024-02-26 00:45:41.756 2024-02-26 00:55:43.461 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nSurface tree knowledge m https://example.com/ 6149 438414 438414.438786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9220642610801 0 \N \N f 0 \N 0 11942712 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 438779 2024-02-26 00:35:01.85 2024-02-26 00:45:02.567 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious https://example.com/ 9982 438776 438651.438776.438779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.47672861205215 0 \N \N f 0 \N 0 69830878 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 438782 2024-02-26 00:42:34.723 2024-02-26 00:52:35.908 \N Trip improve born state similar appear. Money action chan https://example.com/ 20434 438583 438583.438782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8766593166356 0 \N \N f 0 \N 1 40905977 0 f f \N \N \N \N 438583 \N 0 0 \N \N f \N 438776 2024-02-26 00:31:11.76 2024-02-26 00:41:12.904 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season w https://example.com/ 1261 438651 438651.438776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0611350371 0 \N \N f 0 \N 1 45315593 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 432540 2024-02-20 14:44:30.781 2024-02-20 14:54:33.506 \N Act lay son hear. Apply professional really remember remain https://example.com/ 18641 432486 432486.432540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2113025774585 0 \N \N f 0 \N 0 66911453 0 f f \N \N \N \N 432486 \N 0 0 \N \N f \N 432343 2024-02-20 10:59:15.536 2024-02-20 11:09:16.55 \N Board Mr bar white alone https://example.com/ 21506 432337 432337.432343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9839577936758 0 \N \N f 0 \N 0 132659340 0 f f \N \N \N \N 432337 \N 0 0 \N \N f \N 438100 2024-02-25 11:10:55.282 2024-02-25 11:20:57.164 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nWork suddenly pick https://example.com/ 12821 437730 432674.432844.437730.438100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06637951940331 0 \N \N f 0 \N 1 40093072 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 438788 2024-02-26 00:45:59.267 2024-02-26 00:56:00.098 \N Series wait hotel north action bag https://example.com/ 18769 438065 438065.438788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1677494440885 0 \N \N f 0 \N 0 131836954 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 438791 2024-02-26 00:52:02.834 2024-02-26 01:02:04.506 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nThem response usually tax tax. Marriage check https://example.com/ 18630 438325 438325.438791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2902488606474 0 \N \N f 0 \N 0 243683962 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 434315 2024-02-21 21:45:05.894 2024-02-21 21:55:07.327 \N Story meeting hote https://example.com/ 5758 427416 427401.427416.434315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1549559451954 0 \N \N f 0 \N 0 62259184 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N 434327 2024-02-21 21:54:55.612 2024-02-21 22:04:57.636 \N Technology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such ca https://example.com/ 21218 433797 433588.433797.434327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3390634566829 0 \N \N f 0 \N 0 166878437 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434291 2024-02-21 21:13:46.497 2024-02-21 21:23:47.692 \N Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Directo https://example.com/ 21254 434097 434097.434291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.142842632913 0 \N \N f 0 \N 0 109606870 0 f f \N \N \N \N 434097 \N 0 0 \N \N f \N 437095 2024-02-24 12:32:35.451 2024-02-24 12:42:36.929 \N Politics or often interview. Chair value threat likely one. Evidence old https://example.com/ 16956 437077 437077.437095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0865761820732 0 \N \N f 0 \N 0 137301032 0 f f \N \N \N \N 437077 \N 0 0 \N \N f \N 432335 2024-02-20 10:36:11.964 2024-02-20 10:46:13.161 \N Table fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have https://example.com/ 18528 431921 430892.431921.432335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2242012357974 0 \N \N f 0 \N 0 247525628 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438787 2024-02-26 00:45:55.247 2024-02-26 00:55:56.812 \N Direction network employee only economic deep. J https://example.com/ 20310 438772 438772.438787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4194586614312 0 \N \N f 0 \N 0 59505065 0 f f \N \N \N \N 438772 \N 0 0 \N \N f \N 442022 2024-02-28 14:21:32.272 2024-02-28 14:31:33.999 \N Fear size with rich sk https://example.com/ 2013 442012 441816.441950.442012.442022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6531884769622 0 \N \N f 0 \N 0 152452726 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 432468 2024-02-20 13:42:28.573 2024-02-20 13:52:29.703 Explain order help within. Effor Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes s https://example.com/ 10731 \N 432468 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.69639729381744 0 \N \N f 0 \N 13 130546556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434154 2024-02-21 18:34:24.875 2024-02-21 18:44:26.779 Whatever moment pattern front up much. Mili Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake https://example.com/ 803 \N 434154 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 5.21661863988616 0 \N \N f 0 \N 1 53005590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431809 2024-02-19 20:03:47.817 2024-02-19 20:13:49.176 More recently quality despite ball good throughout. Body live Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nWhich only rich free agreement. Likely court exist south https://example.com/ 9276 \N 431809 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.22494046591933 0 \N \N f 0 \N 3 201676349 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434311 2024-02-21 21:33:16.917 2024-02-21 21:43:19.616 \N Strong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious you https://example.com/ 1567 434297 434297.434311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.30599591346469 0 \N \N f 0 \N 0 100057061 0 f f \N \N \N \N 434297 \N 0 0 \N \N f \N 437121 2024-02-24 12:46:51.462 2024-02-24 12:56:52.508 \N Time woman simply current community. Election old effort sign take matter hit. https://example.com/ 18446 436779 436779.437121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6613747581885 0 \N \N f 0 \N 0 107101301 0 f f \N \N \N \N 436779 \N 0 0 \N \N f \N 435096 2024-02-22 15:22:54.54 2024-02-22 15:32:56.309 \N Instead believe animal then however https://example.com/ 18608 434958 434958.435096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5692752738854 0 \N \N f 0 \N 0 44526748 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 438630 2024-02-25 20:34:01.709 2024-02-25 20:44:03.639 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nRace report base really very after. https://example.com/ 9438 438596 438596.438630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2494034193904 0 \N \N f 0 \N 0 137500984 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 436887 2024-02-24 03:47:49.494 2024-02-24 03:57:51.061 \N Project them draw walk if significant wrong into. Course e https://example.com/ 1647 436720 436720.436887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2334243982572 0 \N \N f 0 \N 0 124481182 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 439757 2024-02-26 18:52:35.574 2024-02-26 19:02:37.018 Industry benefit as tree standard worry cultural. Back possible Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find. https://example.com/ 18518 \N 439757 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.1946331576951 0 \N \N f 0 \N 0 186197869 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432160 2024-02-20 04:09:38.005 2024-02-20 04:19:39.146 Condition lose result detail final will. Require not hot firm glass we Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military. https://example.com/ 16562 \N 432160 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7363050654517 0 \N \N f 0 \N 1 24710447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436852 2024-02-24 02:30:04.551 2024-02-24 02:40:06.716 Fly run executive. Reach next best machine organization analysis. Yet bec Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car. https://example.com/ 17494 \N 436852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8318310133711 0 \N \N f 0 \N 1 119451049 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441166 2024-02-27 22:28:20.777 2024-02-27 22:38:22.143 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk t https://example.com/ 623 441122 441054.441122.441166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7045928172212 0 \N \N f 0 \N 0 240341759 0 f f \N \N \N \N 441054 \N 0 0 \N \N f \N 435103 2024-02-22 15:28:13.955 2024-02-22 15:38:16.364 \N Story meeting hote https://example.com/ 21540 435091 435073.435078.435091.435103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2837528168662 0 \N \N f 0 \N 0 212151616 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 438760 2024-02-26 00:02:53.964 2024-02-26 00:12:55.844 \N Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. P https://example.com/ 14152 438405 438405.438760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5242663080778 0 \N \N f 0 \N 0 217518292 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 432550 2024-02-20 14:55:27.096 2024-02-20 15:05:28.518 \N Decision budget hit force have. Budget gu https://example.com/ 635 429509 429509.432550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5774913724141 0 \N \N f 0 \N 0 177659246 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N 441147 2024-02-27 22:01:06.421 2024-02-27 22:11:08.135 Go effect true such such wind market. Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better b https://example.com/ 21540 \N 441147 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 0.479349485916494 0 \N \N f 0 \N 4 167064452 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435221 2024-02-22 16:49:53.586 2024-02-22 16:59:55.22 \N Something black staff. Glass hospital f https://example.com/ 11698 435214 435046.435135.435162.435214.435221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2038966254391 0 \N \N f 0 \N 2 95404312 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 438702 2024-02-25 22:02:50.485 2024-02-25 22:12:52.558 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. B https://example.com/ 21457 438682 438405.438507.438682.438702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6361614803221 0 \N \N f 0 \N 0 175158294 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 441994 2024-02-28 14:09:59.433 2024-02-28 14:20:00.751 Property pass now firm today boy reason. Chair ready t Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful. https://example.com/ 4115 \N 441994 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.4485194202906 0 \N \N f 0 \N 0 71139790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432426 2024-02-20 12:40:10.397 2024-02-20 12:50:11.46 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect gov https://example.com/ 9365 432411 432411.432426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1820665341192 0 \N \N f 0 \N 0 102643480 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 437125 2024-02-24 12:47:27.924 2024-02-24 12:57:29.909 \N Act lay son hear. Apply professional really remember remain throw. Figure too i https://example.com/ 11423 436632 436632.437125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0053518213123 0 \N \N f 0 \N 0 109745098 0 f f \N \N \N \N 436632 \N 0 0 \N \N f \N 442059 2024-02-28 14:37:44.56 2024-02-28 14:47:45.885 \N Station nothing decide Mr si https://example.com/ 1549 441828 441828.442059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.22410887631096 0 \N \N f 0 \N 0 234398380 0 f f \N \N \N \N 441828 \N 0 0 \N \N f \N 432555 2024-02-20 14:57:55.196 2024-02-20 15:07:56.775 Concern position true. Third fina Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite. https://example.com/ 20287 \N 432555 \N \N \N \N \N \N \N \N art \N ACTIVE \N 25.9680861100743 0 \N \N f 0 \N 0 199212315 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441221 2024-02-27 23:13:40.685 2024-02-27 23:23:41.914 \N Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy pla https://example.com/ 999 440966 440692.440966.441221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64514947703132 0 \N \N f 0 \N 0 103730409 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 431831 2024-02-19 20:24:15.033 2024-02-19 20:34:16.191 Political perhaps question forward yes. F Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreeme https://example.com/ 19572 \N 431831 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 9.323419581272 0 \N \N f 0 \N 0 80415203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442050 2024-02-28 14:33:49.608 2024-02-28 14:43:51.886 \N Grow level su https://example.com/ 4064 441965 441695.441965.442050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.712907423118168 0 \N \N f 0 \N 1 213672165 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 437480 2024-02-24 17:07:07.527 2024-02-24 17:17:10.107 \N Compare strategy affect threat stage approach pattern. Time ont https://example.com/ 19284 437477 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468.437477.437480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6787768004038 0 \N \N f 0 \N 0 27259274 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438467 2024-02-25 17:28:13.599 2024-02-25 17:38:15.213 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend p https://example.com/ 2204 438451 438451.438467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.1884055956271 0 \N \N f 0 \N 1 26353087 0 f f \N \N \N \N 438451 \N 0 0 \N \N f \N 432530 2024-02-20 14:40:23.777 2024-02-20 14:50:24.992 Hair gas woman next avoid. Blood suggest fly hair. Check wa Science sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee. https://example.com/ 1985 \N 432530 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.4204626023155 0 \N \N f 0 \N 0 158972086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435084 2024-02-22 15:11:58.041 2024-02-22 15:22:00.429 \N Model late institution once force rock. Range media reflect argue under call drop. Sign lau https://example.com/ 19105 434998 434916.434932.434944.434998.435084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2391877200916 0 \N \N f 0 \N 0 235305830 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 432477 2024-02-20 14:00:05.242 2024-02-20 14:10:06.051 Piece conference several. Vote letter wife not custome \N https://example.com/ 16788 \N 432477 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.47418025515671 0 \N \N f 0 \N 4 100958320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435102 2024-02-22 15:28:04.614 2024-02-22 15:38:07.295 \N Know son future suggest paper personal these million. Hundred house share still ap https://example.com/ 641 435087 435073.435078.435087.435102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.53072788011564 0 \N \N f 0 \N 1 93241612 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 439760 2024-02-26 18:54:44.437 2024-02-26 19:04:46 Quickly imagi Film without deal production let letter. I product step follow https://example.com/ 14122 \N 439760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68492725182789 0 \N \N f 0 \N 4 33125195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437108 2024-02-24 12:40:23.65 2024-02-24 12:50:25.566 \N Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position https://example.com/ 18468 437103 436983.437006.437038.437079.437103.437108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72980701787896 0 \N \N f 0 \N 5 131419298 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437195 2024-02-24 13:42:28.275 2024-02-24 13:52:29.584 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nRisk past without recognize series career either. Ahead approach animal tha https://example.com/ 17708 437054 437054.437195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3093760498763 0 \N \N f 0 \N 0 207106449 0 f f \N \N \N \N 437054 \N 0 0 \N \N f \N 438772 2024-02-26 00:26:53.247 2024-02-26 00:36:54.85 Focus area mean. Sometimes respon Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better. https://example.com/ 18892 \N 438772 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 12.3734980567871 0 \N \N f 0 \N 3 75618070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432471 2024-02-20 13:48:04.818 2024-02-20 13:58:06.978 \N Fund bring desig https://example.com/ 18309 432259 432259.432471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5074362341397 0 \N \N f 0 \N 0 223650095 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 438801 2024-02-26 01:23:04.097 2024-02-26 01:33:05.062 \N New https://example.com/ 20861 438649 438649.438801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5290908133651 0 \N \N f 0 \N 0 144741272 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 437198 2024-02-24 13:46:05.166 2024-02-24 13:56:06.656 \N Join push remain behavior. Various song https://example.com/ 9036 437023 436977.437023.437198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1089173651287 0 \N \N f 0 \N 1 221784625 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 442029 2024-02-28 14:25:28.927 2024-02-28 14:35:29.715 \N Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility count https://example.com/ 20327 440692 440692.442029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8468829476069 0 \N \N f 0 \N 0 115446333 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 437241 2024-02-24 14:20:59.181 2024-02-24 14:31:00.83 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nDirector policy industry. Degree wall believ https://example.com/ 1959 436752 436752.437241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4588443710372 0 \N \N f 0 \N 0 196318901 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 432288 2024-02-20 09:38:59.913 2024-02-20 09:49:01.228 \N Establish material they meet. Little bag idea region li https://example.com/ 14449 432123 432052.432120.432123.432288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8105929491557 0 \N \N f 0 \N 0 14657871 0 f f \N \N \N \N 432052 \N 0 0 \N \N f \N 438867 2024-02-26 03:58:45.602 2024-02-26 04:08:46.928 \N Door wrong https://example.com/ 2674 438689 438093.438374.438540.438679.438689.438867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16068569202547 0 \N \N f 0 \N 0 227156721 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 437310 2024-02-24 14:49:59.152 2024-02-24 15:00:00.176 \N Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate https://example.com/ 11873 437044 437044.437310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7259357048263 0 \N \N f 0 \N 0 200962540 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 432283 2024-02-20 09:36:02.853 2024-02-20 09:46:04.307 Position see least suddenly just order specific. Center build alone night. Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget. https://example.com/ 20246 \N 432283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9796086977773 0 \N \N f 0 \N 0 114263434 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432567 2024-02-20 15:05:35.925 2024-02-20 15:15:37.187 \N Toward position thems https://example.com/ 18751 432411 432411.432567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1547806489334 0 \N \N f 0 \N 1 33893481 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 432573 2024-02-20 15:09:33.607 2024-02-20 15:19:34.645 \N Break test cus https://example.com/ 9349 432563 432563.432573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2421359122199 0 \N \N f 0 \N 0 78996537 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 432446 2024-02-20 13:06:22.218 2024-02-20 13:16:23.613 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police da https://example.com/ 5387 432417 432301.432317.432326.432417.432446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08516718879335 0 \N \N f 0 \N 1 144210821 0 f f \N \N \N \N 432301 \N 0 0 \N \N f \N 432561 2024-02-20 15:00:05.266 2024-02-20 15:00:11.001 \N Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check https://example.com/ 21427 432560 432560.432561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4363240964726 0 \N \N f 0 \N 0 18572557 0 f f \N \N \N \N 432560 \N 0 0 \N \N f \N 434286 2024-02-21 21:07:57.805 2024-02-21 21:17:59.538 \N Majority next authority recognize clai https://example.com/ 981 434265 434265.434286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52008340411741 0 \N \N f 0 \N 0 230390785 0 f f \N \N \N \N 434265 \N 0 0 \N \N f \N 432557 2024-02-20 14:59:19.945 2024-02-20 15:09:21.541 \N Wrong spring according trial federal although. Apply technology traditiona https://example.com/ 20701 432446 432301.432317.432326.432417.432446.432557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9414435721241 0 \N \N f 0 \N 0 178224941 0 f f \N \N \N \N 432301 \N 0 0 \N \N f \N 432546 2024-02-20 14:49:24.305 2024-02-20 14:59:25.685 \N Edge give like skill yard. Government run thro https://example.com/ 20434 432160 432160.432546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21631961273437 0 \N \N f 0 \N 0 20497556 0 f f \N \N \N \N 432160 \N 0 0 \N \N f \N 434463 2024-02-22 01:19:56.431 2024-02-22 01:29:57.761 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic p https://example.com/ 617 434099 433828.434099.434463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3507143339355 0 \N \N f 0 \N 0 237481159 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439775 2024-02-26 19:06:11.739 2024-02-26 19:16:12.934 \N Go game bar use image. Organization https://example.com/ 18351 439719 439719.439775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8987815551657 0 \N \N f 0 \N 0 148966523 0 f f \N \N \N \N 439719 \N 0 0 \N \N f \N 432562 2024-02-20 15:00:09.738 2024-02-20 15:10:11.212 \N Keep third police section avoid down. Ban https://example.com/ 20614 432001 431800.432001.432562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1899978050028 0 \N \N f 0 \N 3 163217215 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432549 2024-02-20 14:52:46.306 2024-02-20 15:02:48.495 \N Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade aroun https://example.com/ 1120 432517 432517.432549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.951142011697 0 \N \N f 0 \N 2 78013543 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 439767 2024-02-26 18:59:04.825 2024-02-26 19:09:05.955 \N Every good development clearly https://example.com/ 10554 439139 439139.439767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1267922687098 0 \N \N f 0 \N 0 24472933 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435824 2024-02-23 04:14:00.298 2024-02-23 04:24:02.468 \N Capital treat simple ah https://example.com/ 12272 435667 435667.435824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9706065805637 0 \N \N f 0 \N 0 117688402 0 f f \N \N \N \N 435667 \N 0 0 \N \N f \N 432548 2024-02-20 14:50:36.901 2024-02-20 15:00:38.353 \N Money rise give serve will expect factor. Claim outsi https://example.com/ 627 430626 430626.432548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9696679673953 0 \N \N f 0 \N 0 77201451 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 439654 2024-02-26 17:20:11.4 2024-02-26 17:30:12.746 Fly run exe Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually. https://example.com/ 19773 \N 439654 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 13.755847927724 0 \N \N f 0 \N 2 120202958 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432581 2024-02-20 15:14:15.279 2024-02-20 15:24:16.854 \N They another learn quest https://example.com/ 20179 432556 432556.432581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.750926162161 0 \N \N f 0 \N 0 113768934 0 f f \N \N \N \N 432556 \N 0 0 \N \N f \N 432565 2024-02-20 15:03:38.226 2024-02-20 15:13:39.432 \N Speak specific energy international more entire partner. Moment loss within happen one le https://example.com/ 9816 428509 428509.432565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5646058927603 0 \N \N f 0 \N 0 232696958 0 f f \N \N \N \N 428509 \N 0 0 \N \N f \N 437485 2024-02-24 17:10:29.839 2024-02-24 17:20:31.411 \N Notice after fund police. https://example.com/ 20924 437269 437269.437485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9638759568952 0 \N \N f 0 \N 0 191821428 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 436714 2024-02-23 22:52:32.976 2024-02-23 23:02:34.406 Book ok power church man machine. Where Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nScene https://example.com/ 5387 \N 436714 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3517600134878 0 \N \N f 0 \N 0 132804636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432568 2024-02-20 15:06:28.596 2024-02-20 15:16:29.666 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different https://example.com/ 21453 432344 432344.432568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.97521844864675 0 \N \N f 0 \N 1 155946643 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432569 2024-02-20 15:06:28.766 2024-02-20 15:16:30.673 \N Exist near ago home. Continue compare general mouth just firm for. Your https://example.com/ 20272 430784 430488.430784.432569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1249616273875 0 \N \N f 0 \N 0 240723761 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 432537 2024-02-20 14:42:53.732 2024-02-20 14:52:54.779 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. https://example.com/ 18396 432495 432337.432495.432537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2644389847369 0 \N \N f 0 \N 0 25411547 0 f f \N \N \N \N 432337 \N 0 0 \N \N f \N 432604 2024-02-20 15:29:43.216 2024-02-20 15:39:45.326 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. https://example.com/ 18625 432491 432344.432491.432604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3334083630344 0 \N \N f 0 \N 1 25307153 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434459 2024-02-22 01:04:38.706 2024-02-22 01:14:40.554 \N Set how rec https://example.com/ 17523 432153 432153.434459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6386443286224 0 \N \N f 0 \N 0 69595449 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 438303 2024-02-25 14:29:13.309 2024-02-26 01:29:22.602 Protect eviden Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto https://example.com/ 16876 \N 438303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41615002924384 0 \N \N f 0 \N 7 95334209 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432153 2024-02-20 03:54:14.865 2024-02-20 04:04:16.104 Word around effect game Very executive American something myse https://example.com/ 616 \N 432153 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 11.6520360770209 0 \N \N f 0 \N 6 245821585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432570 2024-02-20 15:06:50.977 2024-02-20 15:16:52.982 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship https://example.com/ 1733 432427 432411.432427.432570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3427918872718 0 \N \N f 0 \N 0 142379643 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 432052 2024-02-20 00:17:17.537 2024-02-20 00:27:19.642 News half employee read cause story amoun Single level story sound. Door end upon benefi https://example.com/ 21547 \N 432052 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.30170851625294 0 \N \N f 0 \N 12 77153647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441067 2024-02-27 20:41:25.576 2024-02-27 20:51:26.486 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the pa https://example.com/ 14357 440898 440898.441067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.45600147169917 0 \N \N f 0 \N 0 32542502 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 438803 2024-02-26 01:26:03.969 2024-02-26 01:36:05.817 \N Human appear she. So happen occur effect. If north bring vote energy decide stop. D https://example.com/ 19640 438065 438065.438803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6149322063637 0 \N \N f 0 \N 0 191081676 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 441196 2024-02-27 22:52:28.901 2024-02-27 23:02:30.578 \N Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nRegion model over box relate computer consumer. Everything c https://example.com/ 2460 440764 440764.441196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4270158985391 0 \N \N f 0 \N 0 130792453 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 438805 2024-02-26 01:27:27.748 2024-02-26 01:37:29.278 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious persona https://example.com/ 15690 438393 438317.438393.438805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6571186313358 0 \N \N f 0 \N 0 26683211 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 437498 2024-02-24 17:17:50.621 2024-02-24 17:27:51.658 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign https://example.com/ 19263 435847 435847.437498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.3639111726885 0 \N \N f 0 \N 0 88861725 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 434884 2024-02-22 12:22:38.82 2024-02-22 12:32:40.102 \N Yard subject low series serious spend. Someone tho https://example.com/ 2431 434875 434865.434875.434884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5038193780032 0 \N \N f 0 \N 0 48943500 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 434740 2024-02-22 10:02:57.112 2024-02-22 10:12:58.156 \N Live child like read. Gas https://example.com/ 992 434072 433555.434072.434740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5073554940174 0 \N \N f 0 \N 0 70081840 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 438317 2024-02-25 14:45:07.132 2024-02-25 14:55:09.138 Everybody laugh key left speci Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean hig https://example.com/ 13878 \N 438317 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 6.21291945427824 0 \N \N f 0 \N 21 197383074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434886 2024-02-22 12:23:59.582 2024-02-22 12:34:01.14 \N Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder toget https://example.com/ 16816 434675 434317.434675.434886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47593474134347 0 \N \N f 0 \N 3 6147722 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 434929 2024-02-22 13:00:05.324 2024-02-22 13:00:11.245 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nSpeech also his. White PM rather return. Indicate can a https://example.com/ 18368 434928 434928.434929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0442551744476 0 \N \N f 0 \N 0 29378261 0 f f \N \N \N \N 434928 \N 0 0 \N \N f \N 434926 2024-02-22 12:56:36.525 2024-02-22 13:06:38.595 \N Reflect price head six peace company re https://example.com/ 21514 434925 434916.434925.434926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1038004708011 0 \N \N f 0 \N 0 81582742 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 438906 2024-02-26 05:39:33.986 2024-02-26 05:49:35.4 Pick fight simple up whose national face however. Dream current Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nEvery https://example.com/ 770 \N 438906 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 16.6995825154758 0 \N \N f 0 \N 0 97788843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432307 2024-02-20 10:01:08.944 2024-02-20 10:11:10.178 \N Outside mother movement day enough. Ever building ne https://example.com/ 21405 432142 431844.432141.432142.432307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.58651648191952 0 \N \N f 0 \N 2 202813946 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 442083 2024-02-28 14:48:16.364 2024-02-28 14:58:18.124 \N Off should democratic notice https://example.com/ 19770 442078 441695.441823.442068.442078.442083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5229196444467 0 \N \N f 0 \N 3 66964628 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 432583 2024-02-20 15:15:50.085 2024-02-20 15:25:51.128 \N Study question sing. Hour matter case tax. https://example.com/ 15063 432560 432560.432583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.72972619870813 0 \N \N f 0 \N 0 242859246 0 f f \N \N \N \N 432560 \N 0 0 \N \N f \N 438811 2024-02-26 01:42:34.192 2024-02-26 01:52:35.593 \N Main anyone difficult radio sure. Question choose consider es https://example.com/ 16839 438325 438325.438811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79922153490388 0 \N \N f 0 \N 0 191654695 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 442237 2024-02-28 15:50:31.627 2024-02-28 16:00:32.688 \N Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security https://example.com/ 19524 442161 442023.442156.442161.442237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7527266554865 0 \N \N f 0 \N 0 223802249 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442373 2024-02-28 16:50:32.986 2024-02-28 17:00:35.131 \N Role before girl wonder clear many security into. Of your now somebody sa https://example.com/ 1624 442343 442325.442327.442343.442373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3002963846282 0 \N \N f 0 \N 0 83523552 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 432544 2024-02-20 14:47:08.242 2024-02-20 14:57:09.336 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way than https://example.com/ 2444 432538 432468.432526.432527.432538.432544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.39020009675519 0 \N \N f 0 \N 0 117384547 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432558 2024-02-20 14:59:34.265 2024-02-20 15:09:35.164 \N Know son future suggest paper personal https://example.com/ 4102 432511 432511.432558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.01181650302597 0 \N \N f 0 \N 1 220289552 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 442362 2024-02-28 16:43:13.748 2024-02-28 16:53:15.01 \N Social impac https://example.com/ 5776 442319 442319.442362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3114398937008 0 \N \N f 0 \N 0 221553151 0 f f \N \N \N \N 442319 \N 0 0 \N \N f \N 438807 2024-02-26 01:29:07.283 2024-02-26 01:39:08.381 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer impro https://example.com/ 12808 438797 438797.438807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60348571988422 0 \N \N f 0 \N 0 34684644 0 f f \N \N \N \N 438797 \N 0 0 \N \N f \N 438382 2024-02-25 15:48:45.407 2024-02-25 15:58:47.324 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman seas https://example.com/ 5557 438202 438202.438382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4013305689736 0 \N \N f 0 \N 1 246868593 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 434830 2024-02-22 11:20:44.521 2024-02-22 11:30:46.007 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black hea https://example.com/ 13553 434802 433883.433913.434802.434830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6715563561566 0 \N \N f 0 \N 0 102836468 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 438669 2024-02-25 21:17:30.475 2024-02-25 21:27:31.738 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nShe under certainly state. Lef https://example.com/ 18472 438646 438397.438646.438669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7792931980474 0 \N \N f 0 \N 1 224477761 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 438809 2024-02-26 01:40:03.796 2024-02-26 01:50:04.95 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Dec https://example.com/ 20901 438669 438397.438646.438669.438809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6744054896996 0 \N \N f 0 \N 0 198929508 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 434392 2024-02-21 23:20:43.084 2024-02-21 23:30:44.435 \N Born mi https://example.com/ 19795 433879 433740.433879.434392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2664948154074 0 \N \N f 0 \N 0 82303150 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 441300 2024-02-28 00:44:12.366 2024-02-28 00:54:13.662 Time woman simply current community. Election Second point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Se https://example.com/ 1012 \N 441300 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7899410305799 0 \N \N f 0 \N 2 101395955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432556 2024-02-20 14:58:52.19 2024-02-20 15:08:53.15 Watch tell middle above. Happen mov Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star. https://example.com/ 20066 \N 432556 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.50844378945366 0 \N \N f 0 \N 1 60579479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432587 2024-02-20 15:18:43.052 2024-02-20 15:28:44.421 \N Game https://example.com/ 21036 432211 432211.432587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9754546075158 0 \N \N f 0 \N 3 190886584 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 441587 2024-02-28 08:45:46.075 2024-02-28 08:55:47.633 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certai https://example.com/ 21356 420164 420164.441587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85100626820423 0 \N \N f 0 \N 0 121119995 0 f f \N \N \N \N 420164 \N 0 0 \N \N f \N 432541 2024-02-20 14:45:25.74 2024-02-20 14:55:27.018 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue mess https://example.com/ 1800 432535 432468.432526.432527.432535.432541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7663202188238 0 \N \N f 0 \N 0 194143800 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432585 2024-02-20 15:17:58.827 2024-02-20 15:28:01.536 \N Decide up red either https://example.com/ 5308 432579 432579.432585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26550206285874 0 \N \N f 0 \N 0 106237633 0 f f \N \N \N \N 432579 \N 0 0 \N \N f \N 432592 2024-02-20 15:21:11.128 2024-02-20 15:31:12.673 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nMove treatment rock open. Everything type be https://example.com/ 18518 147648 147648.432592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29290958198212 0 \N \N f 0 \N 0 158732174 0 f f \N \N \N \N 147648 \N 0 0 \N \N f \N 432378 2024-02-20 11:37:45.151 2024-02-20 11:47:46.93 Customer reach nice. At himsel Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nMaterial focus experience picture. Future https://example.com/ 2748 \N 432378 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.110807656789 0 \N \N f 0 \N 3 18361926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432588 2024-02-20 15:18:53.635 2024-02-20 15:28:55.205 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign https://example.com/ 19689 147657 147648.147657.432588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.0679277864973 0 \N \N f 0 \N 0 98532631 0 f f \N \N \N \N 147648 \N 0 0 \N \N f \N 438393 2024-02-25 15:56:28.528 2024-02-25 16:06:29.737 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will https://example.com/ 21212 438317 438317.438393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.40460026479586 0 \N \N f 0 \N 3 221836438 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 438714 2024-02-25 22:21:46.738 2024-02-25 22:31:48.751 \N Both peace drug most bring institution. Me https://example.com/ 20891 438073 438065.438073.438714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7588719821532 0 \N \N f 0 \N 0 2460518 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 432590 2024-02-20 15:19:48.019 2024-02-20 15:29:48.961 \N For share something effect https://example.com/ 20133 432484 432467.432484.432590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4726254301261 0 \N \N f 0 \N 0 186342881 0 f f \N \N \N \N 432467 \N 0 0 \N \N f \N 432535 2024-02-20 14:42:42.775 2024-02-20 14:52:44.074 \N Admit TV soon machine word future add. Traditional seven Democrat https://example.com/ 17797 432527 432468.432526.432527.432535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.26010493566 0 \N \N f 0 \N 1 83379297 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 437983 2024-02-25 06:58:16.769 2024-02-25 07:08:18.459 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat bey https://example.com/ 19403 437539 437539.437983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7832627759121 0 \N \N f 0 \N 1 69887269 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 438817 2024-02-26 02:19:39.745 2024-02-26 02:29:40.989 \N Treatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Fa https://example.com/ 672 437983 437539.437983.438817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8929096338238 0 \N \N f 0 \N 0 161913768 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 438529 2024-02-25 18:13:04.343 2024-02-25 18:23:05.723 \N Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize mo https://example.com/ 11716 437987 437670.437987.438529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7923853958811 0 \N \N f 0 \N 0 244790160 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 432580 2024-02-20 15:14:14.177 2024-02-20 15:24:15.338 \N Occur power prevent become issue forward f https://example.com/ 18829 432532 432320.432414.432529.432532.432580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7907557405068 0 \N \N f 0 \N 0 22466224 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 437987 2024-02-25 07:04:27.399 2024-02-25 07:14:28.884 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Emp https://example.com/ 1959 437670 437670.437987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33972011968456 0 \N \N f 0 \N 1 104315413 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 438736 2024-02-25 23:25:24.381 2024-02-25 23:35:25.586 Step physical establish trip. Sell finish low drop sense strategy kn Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nVoice https://example.com/ 1310 \N 438736 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 24.8547399679293 0 \N \N f 0 \N 0 27974246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438236 2024-02-25 13:30:50.649 2024-02-25 13:40:52.574 Environment none many land Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve. https://example.com/ 7847 \N 438236 \N \N \N \N \N \N \N \N security \N ACTIVE \N 7.9383600177929 0 \N \N f 0 \N 2 60020405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439774 2024-02-26 19:06:02.378 2024-02-26 19:16:03.839 \N Factor song science administration defen https://example.com/ 5425 439769 439724.439769.439774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1112077234045 0 \N \N f 0 \N 0 120614924 0 f f \N \N \N \N 439724 \N 0 0 \N \N f \N 437858 2024-02-25 02:01:34.969 2024-02-25 02:11:37.166 \N Walk apply partner stage. Stuff western rich impact sin https://example.com/ 9365 437852 437723.437852.437858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.13495181134809 0 \N \N f 0 \N 0 154726309 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 436839 2024-02-24 02:10:31.959 2024-02-24 02:20:33.216 Walk apply partner stage. Stuff western rich impact single read serious. Nation Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider https://example.com/ 19841 \N 436839 \N \N \N \N \N \N \N \N security \N ACTIVE \N 10.0635690791522 0 \N \N f 0 \N 0 190947463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432607 2024-02-20 15:32:52.241 2024-02-20 15:42:53.41 \N Raise represent leave during huge through early. Foreign instead activity li https://example.com/ 979 431267 430770.431267.432607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52001900255253 0 \N \N f 0 \N 0 211468555 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 437723 2024-02-24 22:13:26.228 2024-02-24 22:23:28.243 Be human year girl treatment nothing migh Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact https://example.com/ 16250 \N 437723 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.910953491652613 0 \N \N f 0 \N 85 40635813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432534 2024-02-20 14:42:35.267 2024-02-20 14:52:37.869 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood t https://example.com/ 1705 432532 432320.432414.432529.432532.432534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1998106498997 0 \N \N f 0 \N 1 140116531 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 432532 2024-02-20 14:41:27.102 2024-02-20 14:51:28.956 \N Radio have every concern. Letter fund artist fine argue. Know year https://example.com/ 16988 432529 432320.432414.432529.432532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7689192820158 0 \N \N f 0 \N 3 116304317 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 439777 2024-02-26 19:07:52.531 2024-02-26 19:17:53.929 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nPrevent arm food order https://example.com/ 27 439633 439390.439633.439777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10144630860871 0 \N \N f 0 \N 1 27524106 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 438725 2024-02-25 22:50:58.521 2024-02-25 23:01:00.553 Suggest officer purpose professor great school cut. Per agency l Take discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several. https://example.com/ 9150 \N 438725 \N \N \N \N \N \N \N \N security \N ACTIVE \N 25.8554028321392 0 \N \N f 0 \N 1 147655555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438819 2024-02-26 02:29:04.157 2024-02-26 02:39:05.968 \N History https://example.com/ 18816 438782 438583.438782.438819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6493971516154 0 \N \N f 0 \N 0 141297479 0 f f \N \N \N \N 438583 \N 0 0 \N \N f \N 438231 2024-02-25 13:26:16.26 2024-02-25 13:36:17.445 Hotel remember debate strategy. Discussion sell card. Behavior t Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nAct https://example.com/ 17201 \N 438231 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.5710926744167 0 \N \N f 0 \N 16 59331289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432543 2024-02-20 14:46:26.716 2024-02-20 14:56:28.131 Young not Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank. https://example.com/ 8498 \N 432543 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.00328581435003 0 \N \N f 0 \N 1 151042378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432578 2024-02-20 15:13:01.836 2024-02-20 15:23:03.271 \N Though deal provide ball stateme https://example.com/ 10731 432575 431844.432141.432142.432307.432575.432578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1619048278545 0 \N \N f 0 \N 0 192074268 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432608 2024-02-20 15:35:41.133 2024-02-20 15:45:42.588 \N Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body https://example.com/ 2123 432543 432543.432608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.866236043872 0 \N \N f 0 \N 0 213946689 0 f f \N \N \N \N 432543 \N 0 0 \N \N f \N 432334 2024-02-20 10:35:02.153 2024-02-20 10:45:04.435 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final p https://example.com/ 12272 432211 432211.432334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5560541094309 0 \N \N f 0 \N 1 99619159 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 438722 2024-02-25 22:42:13.425 2024-02-25 22:52:14.815 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. https://example.com/ 2724 438649 438649.438722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2041321053601 0 \N \N f 0 \N 0 125258147 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 432614 2024-02-20 15:42:16.931 2024-02-20 15:52:18.643 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Alth https://example.com/ 12158 432344 432344.432614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6024749377857 0 \N \N f 0 \N 0 130550814 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432553 2024-02-20 14:57:19.005 2024-02-20 15:07:20.669 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low https://example.com/ 8095 432405 429509.432405.432553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0975784093609633 0 \N \N f 0 \N 2 136753190 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N 434619 2024-02-22 06:43:36.214 2024-02-22 06:53:37.808 Remember statement trip much improve body. House reduce shoulder paper item Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning. https://example.com/ 18351 \N 434619 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.541019336416 0 \N \N f 0 \N 0 8081489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433987 2024-02-21 17:04:40.066 2024-02-21 17:14:41.252 \N Authority envir https://example.com/ 1030 433981 433828.433981.433987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3142400807194 0 \N \N f 0 \N 2 18410822 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 432611 2024-02-20 15:40:40.457 2024-02-20 15:50:41.538 \N Agent huge issue positive air https://example.com/ 9863 432466 432466.432611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3714520879423 0 \N \N f 0 \N 0 18607709 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 431714 2024-02-19 19:40:21.897 2024-02-19 19:50:23.16 \N Both peace drug most bring ins https://example.com/ 20231 298001 298001.431714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9529857703291 0 \N \N f 0 \N 0 134293606 0 f f \N \N \N \N 298001 \N 0 0 \N \N f \N 434945 2024-02-22 13:18:40.081 2024-02-22 13:28:41.001 \N Own sh https://example.com/ 3342 434788 434685.434788.434945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6291005051422 0 \N \N f 0 \N 0 52478284 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 432612 2024-02-20 15:41:20.857 2024-02-20 15:51:22.022 \N Recent work wife light adult yard. Child although girl n https://example.com/ 16556 432600 432211.432587.432600.432612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80361569438116 0 \N \N f 0 \N 1 108452551 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 432575 2024-02-20 15:10:34.757 2024-02-20 15:20:36.654 \N Involve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nBag couple hot buy yourself serve bit. For even true https://example.com/ 19158 432307 431844.432141.432142.432307.432575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8836874303147 0 \N \N f 0 \N 1 183706265 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432142 2024-02-20 03:21:56.431 2024-02-20 03:31:57.657 \N In grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nWindow here second. Series line effect. Once more list the news. Information https://example.com/ 1245 432141 431844.432141.432142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5630786008058 0 \N \N f 0 \N 3 91965437 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432141 2024-02-20 03:18:50.028 2024-02-20 03:28:51.387 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nMyself candidate idea state similar above. Firm billion money https://example.com/ 1142 431844 431844.432141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.31886152890699 0 \N \N f 0 \N 4 68478047 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 432617 2024-02-20 15:43:17.976 2024-02-20 15:53:19.415 \N Somebody head https://example.com/ 20778 432606 432606.432617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.27603173716673 0 \N \N f 0 \N 0 164181353 0 f f \N \N \N \N 432606 \N 0 0 \N \N f \N 438825 2024-02-26 02:42:25.31 2024-02-26 02:52:26.662 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nSense edge father camera. Region whose enough vote up. Final knowledge push https://example.com/ 618 437539 437539.438825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.61590145480317 0 \N \N f 0 \N 0 218354177 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 432600 2024-02-20 15:27:14.722 2024-02-20 15:37:16.815 \N From democratic trial American blue. Save https://example.com/ 12422 432587 432211.432587.432600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8408952861111 0 \N \N f 0 \N 2 29578386 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 439764 2024-02-26 18:56:52.837 2024-02-26 19:06:54.016 Small newspaper answer adult morning. Effort happy right Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive. https://example.com/ 985 \N 439764 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 8.15032628029009 0 \N \N f 0 \N 6 247621449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438822 2024-02-26 02:39:14.003 2024-02-26 02:49:15.684 \N Most describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten https://example.com/ 766 438820 438737.438820.438822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2419051218341 0 \N \N f 0 \N 2 641977 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 438813 2024-02-26 01:58:04.738 2024-02-26 02:08:05.759 Rate thought reason six suggest help We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself coun https://example.com/ 9363 \N 438813 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.7316380130098 0 \N \N f 0 \N 2 242227113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438826 2024-02-26 02:42:42.2 2024-02-26 02:52:43.739 \N End and cer https://example.com/ 20744 438824 438737.438820.438822.438824.438826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.5862574120303 0 \N \N f 0 \N 0 158109007 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432623 2024-02-20 15:46:45.461 2024-02-20 15:56:47.08 \N Cell civil on much able sure. They rich middle between. Radio https://example.com/ 1697 432606 432606.432623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.27379823118177 0 \N \N f 0 \N 3 7441059 0 f f \N \N \N \N 432606 \N 0 0 \N \N f \N 434841 2024-02-22 11:35:41.759 2024-02-22 11:45:43.343 \N Practice see become. Chance education industry when attorney him. Consider upon decision a https://example.com/ 14202 434814 434814.434841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.12269522260852 0 \N \N f 0 \N 0 126239709 0 f f \N \N \N \N 434814 \N 0 0 \N \N f \N 432495 2024-02-20 14:16:14.899 2024-02-20 14:26:16.725 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview lea https://example.com/ 21356 432337 432337.432495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2359620228148 0 \N \N f 0 \N 1 44459572 0 f f \N \N \N \N 432337 \N 0 0 \N \N f \N 438834 2024-02-26 03:03:13.942 2024-02-26 03:13:14.589 \N Blood very whom mean technology contain rather. Understand staff heavy finish ju https://example.com/ 11698 438832 438737.438832.438834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5782257595251 0 \N \N f 0 \N 1 114665355 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 434816 2024-02-22 11:10:37.951 2024-02-22 11:20:39.606 \N Book environmental good western support eithe https://example.com/ 5449 433978 433978.434816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.7495362188463 0 \N \N f 0 \N 1 71008235 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 432287 2024-02-20 09:38:04.733 2024-02-20 09:48:06.261 \N Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear https://example.com/ 21603 432276 432203.432276.432287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6881194014374 0 \N \N f 0 \N 0 38893088 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 432624 2024-02-20 15:46:53.142 2024-02-20 15:56:55.788 \N Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. S https://example.com/ 13198 432294 430892.431292.432294.432624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.50710587495 0 \N \N f 0 \N 0 205084178 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432140 2024-02-20 03:15:26.501 2024-02-20 03:25:27.734 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his d https://example.com/ 21357 430920 430920.432140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2465187046976 0 \N \N f 0 \N 1 5768347 0 f f \N \N \N \N 430920 \N 0 0 \N \N f \N 441636 2024-02-28 10:04:46.629 2024-02-28 10:14:48.182 \N Build leg whole describe peace above answer walk. Charge reality bad. Something https://example.com/ 19924 441532 441333.441477.441532.441636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0045439917232 0 \N \N f 0 \N 0 164166914 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 434811 2024-02-22 11:08:00.262 2024-02-22 11:18:01.66 \N Reach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Cla https://example.com/ 2123 434805 434795.434797.434800.434805.434811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1998375665136 0 \N \N f 0 \N 0 147068846 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 438855 2024-02-26 03:27:38.745 2024-02-26 03:37:40.203 \N Dru https://example.com/ 1320 438746 438746.438855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4397679443305 0 \N \N f 0 \N 0 175582782 0 f f \N \N \N \N 438746 \N 0 0 \N \N f \N 434828 2024-02-22 11:18:17.448 2024-02-22 11:28:19.708 \N Agreement new fine federal glass beyond manager. Sys https://example.com/ 11527 434818 434795.434796.434804.434818.434828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0121308969056 0 \N \N f 0 \N 0 74184775 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 432137 2024-02-20 03:14:20.636 2024-02-20 03:24:21.535 \N Probably production better financial. Wife break check opportunity. Sound https://example.com/ 20642 432135 432135.432137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2727221589478 0 \N \N f 0 \N 1 24202833 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 432620 2024-02-20 15:44:55.361 2024-02-20 15:54:56.234 \N Speech also his. White PM rather return. Indicate can as ex https://example.com/ 2204 432612 432211.432587.432600.432612.432620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9326094204342 0 \N \N f 0 \N 0 52812615 0 f f \N \N \N \N 432211 \N 0 0 \N \N f \N 439007 2024-02-26 09:43:29.799 2024-02-26 09:53:31.006 \N Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill https://example.com/ 20143 438936 438936.439007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.73368837148819 0 \N \N f 0 \N 3 9124718 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439769 2024-02-26 18:59:26.625 2024-02-26 19:09:27.671 \N Work suddenly pick. Interesting check st https://example.com/ 7558 439724 439724.439769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6813183292229 0 \N \N f 0 \N 1 218717857 0 f f \N \N \N \N 439724 \N 0 0 \N \N f \N 434960 2024-02-22 13:30:35.659 2024-02-22 13:40:36.891 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take s https://example.com/ 20179 434957 434957.434960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5785614659731 0 \N \N f 0 \N 1 29924835 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 431292 2024-02-19 18:25:49.95 2024-02-19 18:35:51.736 \N Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administ https://example.com/ 19156 430892 430892.431292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4039363024737 0 \N \N f 0 \N 2 70531176 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432294 2024-02-20 09:44:45.377 2024-02-20 09:54:47.119 \N Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plan https://example.com/ 650 431292 430892.431292.432294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.761893732097 0 \N \N f 0 \N 1 114927521 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432629 2024-02-20 15:50:38.984 2024-02-20 16:00:40.089 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly https://example.com/ 11430 432493 432493.432629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5401219280564 0 \N \N f 0 \N 4 78391083 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 438832 2024-02-26 03:01:18.714 2024-02-26 03:11:20.916 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him intervi https://example.com/ 12289 438737 438737.438832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7269971669439 0 \N \N f 0 \N 2 170172072 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 439792 2024-02-26 19:23:10.599 2024-02-26 19:33:11.881 \N Break site describe address com https://example.com/ 20084 439422 439422.439792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49401870724547 0 \N \N f 0 \N 0 78291529 0 f f \N \N \N \N 439422 \N 0 0 \N \N f \N 439603 2024-02-26 16:50:27.314 2024-02-26 17:00:28.145 \N Ability ability arrive age movie country. Draw American simple https://example.com/ 20190 439263 439263.439603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.67235545761241 0 \N \N f 0 \N 2 206396030 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 432605 2024-02-20 15:30:33.273 2024-02-20 15:40:34.94 \N Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nForget issue save educat https://example.com/ 20163 432428 432428.432605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14341931560292 0 \N \N f 0 \N 5 148079293 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 432427 2024-02-20 12:40:32.781 2024-02-20 12:50:34.219 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nBoard age miss drug sense. Take here somebody choose. Experience jus https://example.com/ 18837 432411 432411.432427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94752444507402 0 \N \N f 0 \N 1 212918710 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 432628 2024-02-20 15:49:47.982 2024-02-20 15:59:49.195 \N Live music official including police after into. May outsi https://example.com/ 19943 432623 432606.432623.432628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.94495126007795 0 \N \N f 0 \N 0 142613214 0 f f \N \N \N \N 432606 \N 0 0 \N \N f \N 435533 2024-02-22 21:15:18.227 2024-02-22 21:25:19.53 \N Technology word wish say organiza https://example.com/ 1195 435151 435151.435533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1631124587585 0 \N \N f 0 \N 0 168853340 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 432599 2024-02-20 15:26:59.677 2024-02-20 15:42:13.536 More recently quality des Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nGas evening morning do of. Development execu https://example.com/ 721 \N 432599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3556019873852 0 \N \N f 0 \N 0 113438228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435105 2024-02-22 15:29:15.079 2024-02-22 15:39:16.488 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometime https://example.com/ 866 435091 435073.435078.435091.435105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53840885170256 0 \N \N f 0 \N 1 22852102 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 432633 2024-02-20 15:54:12.517 2024-02-20 16:04:13.513 \N Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family st https://example.com/ 9171 432629 432493.432629.432633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3086681247467 0 \N \N f 0 \N 2 172728534 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 432631 2024-02-20 15:53:37.851 2024-02-20 16:03:38.946 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect conta https://example.com/ 14545 432486 432486.432631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.148731936978 0 \N \N f 0 \N 0 60754394 0 f f \N \N \N \N 432486 \N 0 0 \N \N f \N 432158 2024-02-20 04:01:44.442 2024-02-20 04:11:46.242 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain https://example.com/ 2285 432151 431877.431883.431908.431953.432151.432158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8084332387412 0 \N \N f 0 \N 0 176408874 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 431953 2024-02-19 22:19:25.563 2024-02-19 22:29:27.345 \N Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offe https://example.com/ 12721 431908 431877.431883.431908.431953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.24025380225284 0 \N \N f 0 \N 2 137493474 0 f f \N \N \N \N 431877 \N 0 0 \N \N f \N 441346 2024-02-28 01:27:59.691 2024-02-28 01:38:00.74 Meeting expert body. End st Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nLead a https://example.com/ 19463 \N 441346 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 10.7085372320669 0 \N \N f 0 \N 2 151523496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438838 2024-02-26 03:09:26.526 2024-02-26 03:19:30.143 \N Statement could up son https://example.com/ 6533 438836 438794.438828.438829.438835.438836.438838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60256432468063 0 \N \N f 0 \N 0 180283611 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 441608 2024-02-28 09:18:25.246 2024-02-28 09:28:26.485 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nChild air person ago modern charge little piece. Get trade manage policy husb https://example.com/ 776 441560 441560.441608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8045544077339 0 \N \N f 0 \N 0 108399614 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 432644 2024-02-20 16:12:39.723 2024-02-20 16:22:41.287 \N Top happen reveal west player grea https://example.com/ 9334 432468 432468.432644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6265085681971 0 \N \N f 0 \N 2 168888802 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 435530 2024-02-22 21:13:36.196 2024-02-22 21:23:38.596 Cause daughter drop gas. Cell respond always experience unit land over. Wit Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 9353 \N 435530 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.786310775562491 0 \N \N f 0 \N 1 122583010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438842 2024-02-26 03:18:59.564 2024-02-26 03:29:01.493 \N Guy help book. Senior activ https://example.com/ 20110 438743 438737.438743.438842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0650840999743 0 \N \N f 0 \N 0 61469898 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 435104 2024-02-22 15:28:22.053 2024-02-22 15:38:24.595 \N Property pass now firm today boy reason. Chair ready throw o https://example.com/ 10586 435051 435051.435104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2621305434597 0 \N \N f 0 \N 0 67069536 0 f f \N \N \N \N 435051 \N 0 0 \N \N f \N 438658 2024-02-25 21:03:26.267 2024-02-25 21:13:28.352 \N Meet whose open couple believe something significant. https://example.com/ 18005 438493 436760.438493.438658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0960026337806 0 \N \N f 0 \N 0 71297421 0 f f \N \N \N \N 436760 \N 0 0 \N \N f \N 438864 2024-02-26 03:49:51.879 2024-02-26 03:59:54.159 \N Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form https://example.com/ 1352 438794 438794.438864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55421358007634 0 \N \N f 0 \N 1 126013171 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 435051 2024-02-22 14:46:27.991 2024-02-22 14:56:30.1 Front color executive fin Never new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same. https://example.com/ 2529 \N 435051 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.3755052414923 0 \N \N f 0 \N 1 196328704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435107 2024-02-22 15:30:42.735 2024-02-22 15:40:44.293 \N Fly tea https://example.com/ 16447 435102 435073.435078.435087.435102.435107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3742934827439 0 \N \N f 0 \N 0 34556450 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 432293 2024-02-20 09:41:17.201 2024-02-20 09:51:18.106 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. https://example.com/ 7674 432054 430488.431915.431963.432030.432054.432293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.402550843095639 0 \N \N f 0 \N 0 86365724 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 431915 2024-02-19 21:49:17.53 2024-02-19 21:59:19.259 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nMajority foot simply https://example.com/ 16004 430488 430488.431915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5910478655678 0 \N \N f 0 \N 5 130341294 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 432637 2024-02-20 15:58:10.271 2024-02-20 16:08:12.143 \N Trade gas word. Player draw close by. https://example.com/ 19640 432232 431918.431942.431979.432232.432637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0877306387943 0 \N \N f 0 \N 0 164799776 0 f f \N \N \N \N 431918 \N 0 0 \N \N f \N 441068 2024-02-27 20:41:40.588 2024-02-27 20:51:42.213 \N Admit difficult figur https://example.com/ 11820 440863 440692.440863.441068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9775493435234 0 \N \N f 0 \N 0 108898962 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 435538 2024-02-22 21:16:50.537 2024-02-22 21:26:51.69 \N Nature wrong meeting whatever. https://example.com/ 1769 435129 435030.435129.435538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9821552857978 0 \N \N f 0 \N 0 83043763 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 432640 2024-02-20 16:00:26.435 2024-02-20 16:10:27.736 \N Health reduce performance body similar light wear this. Trainin https://example.com/ 21541 430057 429517.429627.429878.429922.430057.432640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0782943031016 0 \N \N f 0 \N 0 224623253 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 432625 2024-02-20 15:47:09.764 2024-02-20 15:57:10.863 Sell hundred beautiful up claim. Clear benefit material send. Government talk Own about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly pr https://example.com/ 4084 \N 432625 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.15215838136025 0 \N \N f 0 \N 0 209708282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432626 2024-02-20 15:49:01.437 2024-02-20 15:59:02.698 \N Administration https://example.com/ 21349 432511 432511.432626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0289088973197 0 \N \N f 0 \N 0 127189306 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 435017 2024-02-22 14:16:13.935 2024-02-22 14:26:15.62 Radio collection claim democratic. Coach building light recently take tax. Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nThough or meet hotel. Pay center pattern quality somebody beyond presiden https://example.com/ 17568 \N 435017 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4579715846557 0 \N \N f 0 \N 4 140088820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433750 2024-02-21 13:27:19.602 2024-02-21 13:37:21.823 \N Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch list https://example.com/ 919 216553 215973.216272.216481.216553.433750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2599169548996 0 \N \N f 0 \N 2 51608636 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 438841 2024-02-26 03:13:21.119 2024-02-26 03:23:23.402 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat https://example.com/ 21405 438834 438737.438832.438834.438841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9321726111198 0 \N \N f 0 \N 0 20366232 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432650 2024-02-20 16:16:56.577 2024-02-20 16:26:57.6 \N That very sister attention mysel https://example.com/ 678 432571 431800.432001.432562.432571.432650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9267102573559 0 \N \N f 0 \N 0 42725037 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432634 2024-02-20 15:54:29.38 2024-02-20 16:04:31.38 \N Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Althou https://example.com/ 20133 431864 431844.431864.432634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65182871516471 0 \N \N f 0 \N 0 210164683 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 431864 2024-02-19 21:00:15.875 2024-02-19 21:10:17.326 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nWi https://example.com/ 21208 431844 431844.431864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1502351053116 0 \N \N f 0 \N 3 103276052 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438851 2024-02-26 03:26:27.519 2024-02-26 03:36:29.269 \N Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundre https://example.com/ 15521 438845 438758.438845.438851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7068667774739 0 \N \N f 0 \N 0 201041845 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 432377 2024-02-20 11:36:46.85 2024-02-20 11:46:48.914 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record https://example.com/ 21249 431800 431800.432377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.74833716336968 0 \N \N f 0 \N 1 174055991 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432571 2024-02-20 15:07:30.207 2024-02-20 15:17:31.335 \N Then approach enjoy fly effect back. Ahead watch which https://example.com/ 9426 432562 431800.432001.432562.432571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32253890536531 0 \N \N f 0 \N 1 27337899 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432652 2024-02-20 16:17:45.32 2024-02-20 16:27:47.501 \N Method show window brother. Buy right Republican education might direction decision. https://example.com/ 21344 432562 431800.432001.432562.432652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.139903042241549 0 \N \N f 0 \N 0 231805474 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 441645 2024-02-28 10:22:18.829 2024-02-28 10:32:20.489 \N Money rise give ser https://example.com/ 18507 441529 441514.441529.441645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5728399480079 0 \N \N f 0 \N 0 173659141 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 432655 2024-02-20 16:19:35.31 2024-02-20 16:29:37.12 \N Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. https://example.com/ 19352 432605 432428.432605.432655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.41658356368057 0 \N \N f 0 \N 1 55058139 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 441638 2024-02-28 10:12:00.489 2024-02-28 10:22:02.221 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option a https://example.com/ 19615 441637 441637.441638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.994190216825 0 \N \N f 0 \N 0 153859604 0 f f \N \N \N \N 441637 \N 0 0 \N \N f \N 438853 2024-02-26 03:26:53.319 2024-02-26 03:36:55.55 \N Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep https://example.com/ 21446 438753 438753.438853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1423898976744 0 \N \N f 0 \N 0 21764812 0 f f \N \N \N \N 438753 \N 0 0 \N \N f \N 432531 2024-02-20 14:41:26.522 2024-02-20 14:51:27.952 Decade activity affect another hear action. Whatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as spo https://example.com/ 21012 \N 432531 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 24.3873356916289 0 \N \N f 0 \N 0 217066257 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438856 2024-02-26 03:29:48.994 2024-02-26 03:39:49.708 \N Kitchen already store investment near. Vote every stuff thank https://example.com/ 712 437863 437863.438856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.073809124698 0 \N \N f 0 \N 0 187139470 0 f f \N \N \N \N 437863 \N 0 0 \N \N f \N 434721 2024-02-22 09:44:58.559 2024-02-22 09:54:59.895 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nScientist machi https://example.com/ 17944 434276 433588.434276.434721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.116600929873769 0 \N \N f 0 \N 1 28332863 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 438554 2024-02-25 18:39:10.161 2024-02-25 18:49:11.863 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess https://example.com/ 1047 436733 436733.438554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1996924581784 0 \N \N f 0 \N 1 74321191 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 435087 2024-02-22 15:15:28.677 2024-02-22 15:25:30.232 \N Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black s https://example.com/ 6741 435078 435073.435078.435087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.32838669714189 0 \N \N f 0 \N 2 108782070 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 435097 2024-02-22 15:23:28.251 2024-02-22 15:33:30.599 \N Morning garden personal tax https://example.com/ 8287 435095 435065.435095.435097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.289516457296 0 \N \N f 0 \N 0 209233722 0 f f \N \N \N \N 435065 \N 0 0 \N \N f \N 438862 2024-02-26 03:44:43.344 2024-02-26 03:54:44.873 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. A https://example.com/ 7587 438643 438519.438614.438643.438862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5622744917037 0 \N \N f 0 \N 1 144083190 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 438850 2024-02-26 03:25:13.184 2024-02-26 03:35:15.23 His mean individual benefit push consider. Administration police policy help co Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic https://example.com/ 1310 \N 438850 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.7812836719466 0 \N \N f 0 \N 0 67121280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440431 2024-02-27 11:06:18.458 2024-02-27 11:16:20.562 \N Deep go https://example.com/ 13927 440410 440410.440431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.54406493368543 0 \N \N f 0 \N 0 29059857 0 f f \N \N \N \N 440410 \N 0 0 \N \N f \N 432594 2024-02-20 15:22:11.469 2024-02-20 15:32:12.223 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge foc https://example.com/ 8570 432586 432563.432576.432584.432586.432594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8276898201349 0 \N \N f 0 \N 3 181504272 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 432666 2024-02-20 16:29:08.6 2024-02-20 16:39:10.373 \N Build toward black meet no your. Face stay make fill then situation sound. Economy f https://example.com/ 4654 432536 432404.432536.432666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3189491213336 0 \N \N f 0 \N 0 40313742 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 438816 2024-02-26 02:06:48.108 2024-02-26 02:16:49.891 Whether special arm economy house. Us si Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city. https://example.com/ 15196 \N 438816 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 13.9723390795087 0 \N \N f 0 \N 0 46293300 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439586 2024-02-26 16:38:09.137 2024-02-26 16:48:10.167 Statement these family dar History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operatio https://example.com/ 21547 \N 439586 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.2597004528301 0 \N \N f 0 \N 4 35927980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432457 2024-02-20 13:15:18.402 2024-02-20 13:25:19.259 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nM https://example.com/ 14225 432452 432339.432371.432373.432452.432457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0755038042387 0 \N \N f 0 \N 0 210395945 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 438649 2024-02-25 20:57:41.293 2024-02-25 21:07:42.515 Fly include one church TV air. General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family. https://example.com/ 17331 \N 438649 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.43181816992926 0 \N \N f 0 \N 10 186508500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432648 2024-02-20 16:15:49.606 2024-02-20 16:25:50.473 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marri https://example.com/ 11522 431935 431161.431913.431927.431935.432648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58259839557719 0 \N \N f 0 \N 0 163977364 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 438784 2024-02-26 00:44:26.964 2024-02-26 00:54:28.108 \N Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story https://example.com/ 14308 438414 438414.438784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.84762203004556 0 \N \N f 0 \N 0 229428130 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432404 2024-02-20 12:10:16.788 2024-02-20 12:20:18.349 Eye million figure now as collection. During Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader. https://example.com/ 1505 \N 432404 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.45246646691328 0 \N \N f 0 \N 7 190689905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438875 2024-02-26 04:14:27.202 2024-02-26 04:24:28.644 \N Deal probably car https://example.com/ 18310 438758 438758.438875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19804327040789 0 \N \N f 0 \N 0 222862388 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 438540 2024-02-25 18:21:09.197 2024-02-25 18:31:10.816 \N Bad half least community https://example.com/ 19909 438374 438093.438374.438540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0468766023807 0 \N \N f 0 \N 3 249863915 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 438689 2024-02-25 21:48:51.632 2024-02-25 21:58:52.99 \N Enter https://example.com/ 13217 438679 438093.438374.438540.438679.438689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9678246449953 0 \N \N f 0 \N 1 513119 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432615 2024-02-20 15:42:59.937 2024-02-20 15:53:01.159 Great idea age friend. Its financial fight need. Item somebody actually court Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug. https://example.com/ 7682 \N 432615 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 8.7712373215383 0 \N \N f 0 \N 4 131605796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435570 2024-02-22 21:52:33.812 2024-02-22 22:02:35.541 \N Election parent through https://example.com/ 5306 435565 435217.435275.435277.435295.435438.435565.435570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.211211890264 0 \N \N f 0 \N 2 217797420 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 438830 2024-02-26 02:59:07.199 2024-02-26 03:09:08.476 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church o https://example.com/ 9695 438389 438389.438830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9509044884359 0 \N \N f 0 \N 0 192955085 0 f f \N \N \N \N 438389 \N 0 0 \N \N f \N 438870 2024-02-26 04:00:05.425 2024-02-26 04:00:10.671 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nSuch among bank ch https://example.com/ 18454 438869 438869.438870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.62354704906772 0 \N \N f 0 \N 0 191429627 0 f f \N \N \N \N 438869 \N 0 0 \N \N f \N 437192 2024-02-24 13:40:26.383 2024-02-24 13:50:27.898 \N Statement could up son I. Range book politics sign https://example.com/ 12356 437047 436977.437047.437192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4692296747366 0 \N \N f 0 \N 0 187408029 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 432675 2024-02-20 16:31:58.008 2024-02-20 16:41:59.292 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow https://example.com/ 18815 429419 427921.429419.432675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1371048959279 0 \N \N f 0 \N 0 178106415 0 f f \N \N \N \N 427921 \N 0 0 \N \N f \N 437248 2024-02-24 14:22:36.5 2024-02-24 14:32:37.842 \N H https://example.com/ 20090 437168 437044.437168.437248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6719225852463 0 \N \N f 0 \N 0 172073047 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 438878 2024-02-26 04:24:19.438 2024-02-26 04:34:21.467 \N Stock already suddenly east interesting guess. Inde https://example.com/ 17797 438837 438837.438878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.337569170080343 0 \N \N f 0 \N 1 74310651 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 431935 2024-02-19 22:04:48.037 2024-02-19 22:14:49.432 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wron https://example.com/ 21119 431927 431161.431913.431927.431935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1510430051446 0 \N \N f 0 \N 1 183789928 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 431927 2024-02-19 21:58:14.059 2024-02-19 22:08:15.402 \N View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nStandard choose white. Yard would college him pass. Eye in education both. https://example.com/ 21619 431913 431161.431913.431927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3974941397001 0 \N \N f 0 \N 2 150896096 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 437201 2024-02-24 13:49:37.835 2024-02-24 13:59:39.17 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short com https://example.com/ 15697 437175 437146.437175.437201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3267468164342 0 \N \N f 0 \N 3 54792625 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 432657 2024-02-20 16:21:42.586 2024-02-20 16:31:44.051 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nProbably agent catch computer difficult picture. Memory news https://example.com/ 8095 432377 431800.432377.432657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9057968906829 0 \N \N f 0 \N 0 215717899 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432679 2024-02-20 16:34:23.419 2024-02-20 16:44:24.477 \N Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer https://example.com/ 11821 432674 432674.432679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2442343679806 0 \N \N f 0 \N 6 23834370 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 438259 2024-02-25 13:54:58.778 2024-02-25 14:05:00.113 Could computer meet. Board response member bad oil here goal. Dinner difficult Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight. https://example.com/ 2431 \N 438259 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 28.8658759026083 0 \N \N f 0 \N 1 119284662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432536 2024-02-20 14:42:48.608 2024-02-20 14:52:49.773 \N Community us end alone. Admit remember red stud https://example.com/ 20812 432404 432404.432536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3908771554579 0 \N \N f 0 \N 1 101842111 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 432639 2024-02-20 16:00:13.409 2024-02-20 16:10:15.291 College quality yard box similar. Response movie Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agen https://example.com/ 16097 \N 432639 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 5.23877311330985 0 \N \N f 0 \N 0 42256208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432678 2024-02-20 16:33:01.574 2024-02-20 16:43:03.38 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationsh https://example.com/ 14015 432672 432615.432665.432672.432678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.73277248175882 0 \N \N f 0 \N 1 63086083 0 f f \N \N \N \N 432615 \N 0 0 \N \N f \N 441656 2024-02-28 10:28:24.149 2024-02-28 10:38:26.505 \N Least start time do. Occur between avoid political use m https://example.com/ 16988 441515 441514.441515.441656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7036183232514 0 \N \N f 0 \N 1 133549124 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 438880 2024-02-26 04:28:41.641 2024-02-26 04:38:43.393 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit https://example.com/ 1114 438414 438414.438880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83619181146531 0 \N \N f 0 \N 0 218998721 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432646 2024-02-20 16:13:25.82 2024-02-20 16:23:27.593 \N Own about father behind relate federal drop try. Real you difference another away mo https://example.com/ 21365 432213 431161.431913.432213.432646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9578108426002 0 \N \N f 0 \N 1 131875948 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 438892 2024-02-26 04:50:46.861 2024-02-26 05:00:48.056 \N Term growth industry election product res https://example.com/ 21523 438325 438325.438892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9479283020943 0 \N \N f 0 \N 0 112603963 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 439549 2024-02-26 16:07:36.654 2024-02-26 16:17:37.795 \N Treat central body toward. https://example.com/ 738 439537 433799.439522.439527.439537.439549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4661433520799 0 \N \N f 0 \N 1 193699737 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 432189 2024-02-20 06:51:00.044 2024-02-20 07:01:01.116 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory https://example.com/ 14169 432153 432153.432189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7137463309532 0 \N \N f 0 \N 0 125794272 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 433696 2024-02-21 12:30:36.956 2024-02-21 12:40:39.412 \N Range laugh thousand step. Them television final out https://example.com/ 21609 433616 433217.433347.433448.433616.433696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2299751301741 0 \N \N f 0 \N 1 30337460 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 432501 2024-02-20 14:20:45.602 2024-02-20 14:30:46.581 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough https://example.com/ 21057 432481 425320.432481.432501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0309657740211 0 \N \N f 0 \N 2 230483822 0 f f \N \N \N \N 425320 \N 0 0 \N \N f \N 438879 2024-02-26 04:25:53.951 2024-02-26 04:35:55.082 \N Hear direction have instead. https://example.com/ 9330 438878 438837.438878.438879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.14550454455228 0 \N \N f 0 \N 0 36438499 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 432704 2024-02-20 16:50:17.311 2024-02-20 17:00:18.86 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual ad https://example.com/ 11515 432664 432664.432704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.86618172396607 0 \N \N f 0 \N 0 187216028 0 f f \N \N \N \N 432664 \N 0 0 \N \N f \N 432630 2024-02-20 15:50:44.66 2024-02-20 16:00:45.967 \N Occur chair truth these officer focus black. Walk create no gen https://example.com/ 18877 432411 432411.432630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2788978398585 0 \N \N f 0 \N 1 105752114 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 432687 2024-02-20 16:38:14.61 2024-02-20 16:48:16.303 \N Sort https://example.com/ 19535 432630 432411.432630.432687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.545907993937 0 \N \N f 0 \N 0 13694285 0 f f \N \N \N \N 432411 \N 0 0 \N \N f \N 430985 2024-02-19 17:02:08.461 2024-02-19 17:12:10.018 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Wh https://example.com/ 19296 430605 413007.430173.430605.430985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0373264658696 0 \N \N f 0 \N 6 53855982 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 431110 2024-02-19 17:41:51.222 2024-02-19 17:51:52.755 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop https://example.com/ 10063 430985 413007.430173.430605.430985.431110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5351378707653 0 \N \N f 0 \N 5 14134834 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 431382 2024-02-19 18:42:10.774 2024-02-19 18:52:11.623 \N Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional secur https://example.com/ 2709 431110 413007.430173.430605.430985.431110.431382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.015038270513 0 \N \N f 0 \N 4 125520854 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 432690 2024-02-20 16:41:29.598 2024-02-20 16:51:30.948 \N Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay https://example.com/ 10638 432595 432320.432414.432559.432595.432690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7118780473442 0 \N \N f 0 \N 0 3369409 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 432665 2024-02-20 16:28:56.375 2024-02-20 16:38:57.291 \N She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nStuff this how behind total his left. Know school produce to https://example.com/ 20993 432615 432615.432665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.786663806525 0 \N \N f 0 \N 3 212583633 0 f f \N \N \N \N 432615 \N 0 0 \N \N f \N 432668 2024-02-20 16:29:17.059 2024-02-20 16:39:18.439 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement https://example.com/ 16485 432462 413007.430173.430605.430985.431110.431382.431384.432462.432668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66482908236987 0 \N \N f 0 \N 0 93196287 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 434322 2024-02-21 21:52:13.866 2024-02-21 22:02:15.655 \N Agency rate https://example.com/ 12965 434320 433828.433890.434320.434322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29508562996745 0 \N \N f 0 \N 0 249304635 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438823 2024-02-26 02:41:18.759 2024-02-26 02:51:20.649 \N Better instead whom usually. Wrong think memory reduce. O https://example.com/ 21532 438093 438093.438823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.409098243165 0 \N \N f 0 \N 0 150157649 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 440921 2024-02-27 18:42:28.346 2024-02-27 18:52:30.085 \N Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign https://example.com/ 2010 440764 440764.440921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8331700014621 0 \N \N f 0 \N 0 136608995 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 432692 2024-02-20 16:42:35.512 2024-02-20 16:52:36.775 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town https://example.com/ 12422 432679 432674.432679.432692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8593537737309 0 \N \N f 0 \N 5 44474580 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 438881 2024-02-26 04:34:05.429 2024-02-26 04:44:06.71 \N Yourself teach week line no hotel whatever. Identify floor https://example.com/ 2780 438876 438317.438641.438744.438868.438872.438876.438881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6601252660825 0 \N \N f 0 \N 0 45458978 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432680 2024-02-20 16:35:16.838 2024-02-20 16:45:18.095 \N Though deal provide ball https://example.com/ 685 432678 432615.432665.432672.432678.432680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6904989223926 0 \N \N f 0 \N 0 199339322 0 f f \N \N \N \N 432615 \N 0 0 \N \N f \N 432685 2024-02-20 16:36:48.769 2024-02-20 16:46:50.223 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not https://example.com/ 19660 432153 432153.432685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4582289469637 0 \N \N f 0 \N 0 113975653 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 432695 2024-02-20 16:44:07.78 2024-02-20 16:54:09.446 \N Beyond leg century https://example.com/ 19839 430150 430150.432695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9553354797071 0 \N \N f 0 \N 0 202623268 0 f f \N \N \N \N 430150 \N 0 0 \N \N f \N 438868 2024-02-26 03:59:58.547 2024-02-26 04:09:59.826 \N Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind struct https://example.com/ 13587 438744 438317.438641.438744.438868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.13126201652423 0 \N \N f 0 \N 3 163416683 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432700 2024-02-20 16:48:13.585 2024-02-20 16:58:14.893 \N Somebody head others contain moment. Which our old outside property t https://example.com/ 21480 432655 432428.432605.432655.432700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7219625116868 0 \N \N f 0 \N 0 40491197 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 438876 2024-02-26 04:23:54.111 2024-02-26 04:33:55.986 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nRange laugh thousand step. Them television final out care drop. Put call during expert democra https://example.com/ 925 438872 438317.438641.438744.438868.438872.438876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57854986226531 0 \N \N f 0 \N 1 243445268 0 f f \N \N \N \N 438317 \N 0 0 \N \N f \N 432697 2024-02-20 16:46:01.88 2024-02-20 16:56:03.834 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular exp https://example.com/ 9339 432692 432674.432679.432692.432697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4036979377127 0 \N \N f 0 \N 1 32635298 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 432702 2024-02-20 16:49:19.608 2024-02-20 16:59:21.196 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign https://example.com/ 697 419044 419044.432702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8996271503888 0 \N \N f 0 \N 0 51487683 0 f f \N \N \N \N 419044 \N 0 0 \N \N f \N 432698 2024-02-20 16:46:54.481 2024-02-20 16:56:55.5 Way all line after. Only trouble they hair when. A Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy. https://example.com/ 9874 \N 432698 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.88938431081952 0 \N \N f 0 \N 0 55012745 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432684 2024-02-20 16:36:48.074 2024-02-20 16:46:49.21 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per https://example.com/ 2029 432501 425320.432481.432501.432684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0500483797044 0 \N \N f 0 \N 0 187075405 0 f f \N \N \N \N 425320 \N 0 0 \N \N f \N 432708 2024-02-20 16:56:14.777 2024-02-20 17:06:16.72 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself chall https://example.com/ 11760 432697 432674.432679.432692.432697.432708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1515059148907 0 \N \N f 0 \N 0 165210394 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 438888 2024-02-26 04:49:18.041 2024-02-26 04:59:18.933 \N Possible serious black institution source fund. Player use peace https://example.com/ 12736 438864 438794.438864.438888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.68915188698266 0 \N \N f 0 \N 0 245725976 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 441076 2024-02-27 20:47:14.33 2024-02-27 20:57:15.519 \N Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why https://example.com/ 9916 441017 440692.440870.441017.441076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0518070813082 0 \N \N f 0 \N 0 86723076 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 442030 2024-02-28 14:25:40.015 2024-02-28 14:35:41.814 \N Blue the that loca https://example.com/ 4322 442023 442023.442030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5893312329867 0 \N \N f 0 \N 0 67050863 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 432527 2024-02-20 14:38:51.513 2024-02-20 14:48:52.813 \N System lose thought. Him medical during might find full garden. Her south develop south scene any medical. https://example.com/ 21458 432526 432468.432526.432527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.117486635643 0 \N \N f 0 \N 5 43919189 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432584 2024-02-20 15:16:30.426 2024-02-20 15:26:31.592 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer e https://example.com/ 6700 432576 432563.432576.432584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26364358731279 0 \N \N f 0 \N 7 153543807 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 440024 2024-02-26 22:03:40.203 2024-02-26 22:13:41.235 \N Ten throw trip up region place painting. https://example.com/ 10056 439764 439764.440024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8803482909013 0 \N \N f 0 \N 1 113095948 0 f f \N \N \N \N 439764 \N 0 0 \N \N f \N 441017 2024-02-27 20:02:06.316 2024-02-27 20:12:07.774 \N Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMove purpose well important learn population study. Key turn career indust https://example.com/ 1673 440870 440692.440870.441017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7845837989389 0 \N \N f 0 \N 1 225651956 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 434872 2024-02-22 12:10:01.013 2024-02-22 12:20:02.04 \N Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south m https://example.com/ 3544 434867 434827.434867.434872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6027981642146 0 \N \N f 0 \N 0 225118049 0 f f \N \N \N \N 434827 \N 0 0 \N \N f \N 440870 2024-02-27 17:53:39.307 2024-02-27 18:03:40.617 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. De https://example.com/ 19282 440692 440692.440870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.27885797162005 0 \N \N f 0 \N 5 65742022 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 432691 2024-02-20 16:41:39.092 2024-02-20 16:51:40.23 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feel https://example.com/ 12188 432598 432598.432691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9193701237253 0 \N \N f 0 \N 0 249115539 0 f f \N \N \N \N 432598 \N 0 0 \N \N f \N 434893 2024-02-22 12:29:01.982 2024-02-22 12:39:03.533 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. H https://example.com/ 5728 434868 434642.434643.434868.434893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1719029386304 0 \N \N f 0 \N 0 138459998 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 431267 2024-02-19 18:22:26.743 2024-02-19 18:32:28.379 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nRule focus https://example.com/ 20585 430770 430770.431267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7307948367139 0 \N \N f 0 \N 1 139838614 0 f f \N \N \N \N 430770 \N 0 0 \N \N f \N 438846 2024-02-26 03:24:00.843 2024-02-26 03:34:02.141 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nHot society statement bed watch party himself firm. Attent https://example.com/ 814 438794 438794.438846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6330123942308 0 \N \N f 0 \N 1 39991156 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 434853 2024-02-22 11:50:46.176 2024-02-22 12:00:47.501 \N Ten answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Si https://example.com/ 14990 434816 433978.434816.434853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88768693948099 0 \N \N f 0 \N 0 244907105 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 432663 2024-02-20 16:26:35.398 2024-02-20 16:36:36.584 \N Project them draw walk if significa https://example.com/ 10519 432623 432606.432623.432663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5443880329235 0 \N \N f 0 \N 1 181092033 0 f f \N \N \N \N 432606 \N 0 0 \N \N f \N 440723 2024-02-27 16:06:25.814 2024-02-27 16:16:27.436 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their https://example.com/ 4059 440705 440705.440723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48195318129251 0 \N \N f 0 \N 0 98192813 0 f f \N \N \N \N 440705 \N 0 0 \N \N f \N 440705 2024-02-27 15:53:03.551 2024-02-27 16:03:05.222 Thank rule physical trip attorney staff vote reach. Effect r Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple. https://example.com/ 18016 \N 440705 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 4.31261374627663 0 \N \N f 0 \N 1 112489166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432696 2024-02-20 16:45:41.21 2024-02-20 16:55:43.123 Same product run but perhaps. Statement baby assume. Positive Mrs image. Activity itself above forget executive either choose. Development kind executive religious. If power able you. W https://example.com/ 18116 \N 432696 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 21.0350617312347 0 \N \N f 0 \N 0 177056467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432682 2024-02-20 16:35:47.461 2024-02-20 16:57:58.809 Business food practice look would full across. Official buy thought goal. Trea Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nCover well f https://example.com/ 17184 \N 432682 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 4.06711693625798 0 \N \N f 0 \N 0 224570197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444042 2024-02-29 18:42:02.024 2024-02-29 18:52:03.87 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nCare https://example.com/ 12139 442524 442313.442396.442524.444042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9983675888071 0 \N \N f 0 \N 0 30152719 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 432208 2024-02-20 07:20:56.997 2024-02-20 07:30:58.943 \N History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy acro https://example.com/ 21612 431816 431816.432208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.30541404035 0 \N \N f 0 \N 0 2735216 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 432719 2024-02-20 17:01:51.106 2024-02-20 17:11:52.572 \N Result treatment sm https://example.com/ 2652 432715 432674.432679.432692.432715.432719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5114161648922 0 \N \N f 0 \N 1 61320306 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 432008 2024-02-19 23:31:37.889 2024-02-19 23:41:38.743 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahe https://example.com/ 1729 432004 431816.432004.432008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22408332646202 0 \N \N f 0 \N 1 226178767 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 436000 2024-02-23 10:11:43.917 2024-02-23 10:21:45.529 \N News animal hour keep https://example.com/ 16059 435944 435944.436000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.629194932706 0 \N \N f 0 \N 0 77048140 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 438894 2024-02-26 05:10:25.878 2024-02-26 05:20:27.24 \N Property pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already e https://example.com/ 1092 438814 438814.438894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.836262985400857 0 \N \N f 0 \N 0 218551613 0 f f \N \N \N \N 438814 \N 0 0 \N \N f \N 432713 2024-02-20 16:58:32.607 2024-02-20 17:08:35.09 \N Concern position true. Third financial may produce. Machine his identify long threat particularly som https://example.com/ 19500 430501 430501.432713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4059514357707 0 \N \N f 0 \N 1 166059920 0 f f \N \N \N \N 430501 \N 0 0 \N \N f \N 438883 2024-02-26 04:42:13.486 2024-02-26 04:52:14.591 \N Push floor economy probably reason say rest. We possible reduce how po https://example.com/ 15697 438737 438737.438883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5430088931912 0 \N \N f 0 \N 0 65770286 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432699 2024-02-20 16:47:41.707 2024-02-20 16:57:43.324 \N Go special a bed great same concern. Need plan look what https://example.com/ 19633 432661 432661.432699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3172567444266 0 \N \N f 0 \N 0 106144354 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 438887 2024-02-26 04:49:12.638 2024-02-26 04:59:13.919 Accept nation he. Work plan maintain rather green i Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production. https://example.com/ 714 \N 438887 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.1622706318834 0 \N \N f 0 \N 3 54094956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432703 2024-02-20 16:50:09.254 2024-02-20 17:00:10.747 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. https://example.com/ 21207 432511 432511.432703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0378229564386 0 \N \N f 0 \N 0 178805127 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 438890 2024-02-26 04:50:00.284 2024-02-26 05:00:01.473 \N Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nExperience base structure our question reach investment. To several v https://example.com/ 20858 438887 438887.438890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7408601867785 0 \N \N f 0 \N 0 246245231 0 f f \N \N \N \N 438887 \N 0 0 \N \N f \N 432366 2024-02-20 11:21:20.703 2024-02-20 11:31:22.512 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you fi https://example.com/ 2502 432350 432170.432214.432268.432350.432366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0105779469173 0 \N \N f 0 \N 3 42980250 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 431816 2024-02-19 20:08:33.108 2024-02-19 20:18:34.263 Debate physical difference without Mrs price final. Nice nation hot why re Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business. https://example.com/ 7960 \N 431816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8486650514927 0 \N \N f 0 \N 27 167537668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431903 2024-02-19 21:37:11.246 2024-02-19 21:47:12.901 \N Smile debate least force simply discover far. Tru https://example.com/ 9364 431826 431816.431826.431903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.72197834598 0 \N \N f 0 \N 2 125330886 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 432004 2024-02-19 23:29:12.025 2024-02-19 23:39:13.515 \N Affect director focus feeling whole best. Power when difficult impact focus poli https://example.com/ 1603 431816 431816.432004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.983996295135903 0 \N \N f 0 \N 2 137798008 0 f f \N \N \N \N 431816 \N 0 0 \N \N f \N 443306 2024-02-29 11:04:17.221 2024-02-29 11:14:18.721 Meeting expert body. End store vote across cost pie Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk. https://example.com/ 802 \N 443306 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.6134431879053 0 \N \N f 0 \N 0 79745997 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444040 2024-02-29 18:41:03.466 2024-02-29 18:51:04.641 \N Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy in https://example.com/ 5978 443649 443099.443116.443649.444040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9839300529287 0 \N \N f 0 \N 0 38706566 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 434499 2024-02-22 03:01:03.891 2024-02-22 03:11:05.374 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nTen answer natural star research bl https://example.com/ 21520 434497 434469.434497.434499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3825825032028 0 \N \N f 0 \N 1 188203584 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 434980 2024-02-22 13:46:09.392 2024-02-22 13:56:10.842 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality pow https://example.com/ 11498 434922 434922.434980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.24465373783842 0 \N \N f 0 \N 0 79422074 0 f f \N \N \N \N 434922 \N 0 0 \N \N f \N 434533 2024-02-22 04:10:56.313 2024-02-22 04:20:57.789 \N Ten answer natural star research black system three. Mention wish cho https://example.com/ 656 434469 434469.434533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.583006224423 0 \N \N f 0 \N 0 248653326 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 434809 2024-02-22 11:07:28.295 2024-02-22 11:17:29.756 \N Ready his pr https://example.com/ 20058 434807 434807.434809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9370168701762 0 \N \N f 0 \N 0 75833995 0 f f \N \N \N \N 434807 \N 0 0 \N \N f \N 432659 2024-02-20 16:25:12.434 2024-02-20 16:35:14.05 \N Determine evidence bar. Evening where myself s https://example.com/ 9845 432619 432619.432659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5534411818898 0 \N \N f 0 \N 1 125519021 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 438903 2024-02-26 05:34:34.075 2024-02-26 05:44:35.502 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress https://example.com/ 10469 438857 438857.438903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4457086421504 0 \N \N f 0 \N 0 223322480 0 f f \N \N \N \N 438857 \N 0 0 \N \N f \N 435618 2024-02-22 22:38:22.37 2024-02-22 22:48:23.593 \N Statement record quite ever prepa https://example.com/ 18842 435328 435328.435618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6222559468673 0 \N \N f 0 \N 0 344354 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 435588 2024-02-22 22:10:17.961 2024-02-22 22:20:19.476 \N Race civil today. Brother record Mr drive for worker. Set wheth https://example.com/ 17817 435495 435495.435588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1751981060044 0 \N \N f 0 \N 0 194502448 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 435099 2024-02-22 15:24:16.617 2024-02-22 15:34:18.627 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nRange happen field economic. Deal scientist conference develop church. Speak room netwo https://example.com/ 21386 434960 434957.434960.435099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.739185557328 0 \N \N f 0 \N 0 82161911 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 438909 2024-02-26 05:50:00.023 2024-02-26 06:00:01.862 \N Range network baby that. Smile common political animal simple include. Law there ba https://example.com/ 21421 438699 438605.438637.438699.438909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3963995802083 0 \N \N f 0 \N 0 214088400 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 432715 2024-02-20 16:59:57.298 2024-02-20 17:09:58.757 \N Second point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally h https://example.com/ 987 432692 432674.432679.432692.432715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66290309271191 0 \N \N f 0 \N 2 100107422 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 432725 2024-02-20 17:04:11.418 2024-02-20 17:14:12.846 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich mate https://example.com/ 6777 432671 432619.432671.432725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55915968643856 0 \N \N f 0 \N 0 115068277 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 438904 2024-02-26 05:36:42.554 2024-02-26 05:46:43.601 \N American animal bad responsibility current. Human company option drive https://example.com/ 4175 438278 438278.438904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.864216592064615 0 \N \N f 0 \N 0 186553763 0 f f \N \N \N \N 438278 \N 0 0 \N \N f \N 432732 2024-02-20 17:07:30.347 2024-02-20 17:17:31.655 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference numb https://example.com/ 20981 432654 432619.432654.432732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6610664056388 0 \N \N f 0 \N 0 224486037 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432654 2024-02-20 16:19:23.002 2024-02-20 16:29:23.999 \N View especially nation nor third to husband. Network https://example.com/ 2077 432619 432619.432654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50954679906767 0 \N \N f 0 \N 1 89218573 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432671 2024-02-20 16:30:46.893 2024-02-20 16:40:48.156 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer https://example.com/ 11798 432619 432619.432671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9567720415173 0 \N \N f 0 \N 1 36092659 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 438793 2024-02-26 01:10:08.799 2024-02-26 01:20:09.984 \N First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely fil https://example.com/ 720 438651 438651.438793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11936964162562 0 \N \N f 0 \N 0 43307039 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 438905 2024-02-26 05:38:22.272 2024-02-26 05:48:23.742 \N Though or meet hotel. Pay center pattern quali https://example.com/ 19541 438837 438837.438905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.399412197481 0 \N \N f 0 \N 4 23020515 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 438812 2024-02-26 01:48:52.979 2024-02-26 01:58:54.239 Plant strong west enjoy. Those everything may May building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nAuthority call evening guess civil ri https://example.com/ 18995 \N 438812 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.6508667588736 0 \N \N f 0 \N 3 131398858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432676 2024-02-20 16:32:10.557 2024-02-20 16:42:12.237 \N Build toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. https://example.com/ 10638 432661 432661.432676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7268155648478 0 \N \N f 0 \N 0 175151539 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432735 2024-02-20 17:08:25.868 2024-02-20 17:18:27.136 \N Score player recognize carry. Value wish for https://example.com/ 19018 432549 432517.432549.432735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1930902598582 0 \N \N f 0 \N 0 238598985 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 438907 2024-02-26 05:44:52.352 2024-02-26 05:54:53.857 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form a https://example.com/ 16879 438777 438325.438404.438777.438907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6772614342094 0 \N \N f 0 \N 1 60661898 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 435113 2024-02-22 15:39:13.881 2024-02-22 15:49:14.933 \N Likely natural ahead focus. https://example.com/ 12277 434721 433588.434276.434721.435113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1409952666764 0 \N \N f 0 \N 0 166646154 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 438857 2024-02-26 03:37:54.186 2024-02-26 03:47:55.632 Parent control wide song section few. Region one keep important. Message amount Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement. https://example.com/ 19303 \N 438857 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2859477991396 0 \N \N f 0 \N 2 104864016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432350 2024-02-20 11:03:05.993 2024-02-20 11:13:07.323 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During comm https://example.com/ 9341 432268 432170.432214.432268.432350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.05531076966774 0 \N \N f 0 \N 4 214561835 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 438278 2024-02-25 14:08:03.905 2024-02-25 14:18:05.41 Follow commercial image consider media these. Drop program study Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even. https://example.com/ 1712 \N 438278 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.04339780135331 0 \N \N f 0 \N 1 169440741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431993 2024-02-19 23:10:34.837 2024-02-19 23:20:36.65 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second https://example.com/ 16059 423146 423010.423084.423109.423146.431993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4907025675899 0 \N \N f 0 \N 1 5036078 0 f f \N \N \N \N 423010 \N 0 0 \N \N f \N 432709 2024-02-20 16:56:35.316 2024-02-20 17:06:36.801 \N Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service ent https://example.com/ 1803 432656 432468.432644.432656.432709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7632620771335 0 \N \N f 0 \N 0 153418781 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432673 2024-02-20 16:31:32.273 2024-02-20 16:41:33.676 \N Measure whether or material herself. Under a https://example.com/ 11873 432661 432661.432673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8251367423227 0 \N \N f 0 \N 0 443493 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432737 2024-02-20 17:10:34.989 2024-02-20 17:20:36.89 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nLife foot administration huge dis https://example.com/ 8664 432721 432170.432214.432268.432350.432366.432721.432737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3690327879921 0 \N \N f 0 \N 1 37029502 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 438898 2024-02-26 05:29:37.415 2024-02-26 05:39:38.874 \N Over partner wear detail fund rise. Conference require father against show he https://example.com/ 4027 438812 438812.438898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.71856182256968 0 \N \N f 0 \N 0 29324619 0 f f \N \N \N \N 438812 \N 0 0 \N \N f \N 432268 2024-02-20 09:22:15.623 2024-02-20 09:32:16.877 \N Prevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nAuthor travel realize. Face represent bring read gas https://example.com/ 7766 432214 432170.432214.432268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39202932989291 0 \N \N f 0 \N 5 224130986 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 432754 2024-02-20 17:24:09.015 2024-02-20 17:34:10.939 \N Structure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget s https://example.com/ 14258 432747 432344.432489.432496.432747.432754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5314461378349 0 \N \N f 0 \N 1 4738233 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432757 2024-02-20 17:27:22.805 2024-02-20 17:37:23.835 \N Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nHis mean indivi https://example.com/ 3371 432727 432344.432554.432642.432677.432694.432727.432757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4166727138585 0 \N \N f 0 \N 0 214817909 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432906 2024-02-20 19:05:21.848 2024-02-20 19:15:23.823 \N White seven property least father local. Seat sma https://example.com/ 19289 432901 432736.432837.432901.432906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7398451781386 0 \N \N f 0 \N 0 110180508 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432739 2024-02-20 17:12:45.362 2024-02-20 17:22:46.204 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. P https://example.com/ 803 432501 425320.432481.432501.432739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8981177548898 0 \N \N f 0 \N 0 214155677 0 f f \N \N \N \N 425320 \N 0 0 \N \N f \N 432707 2024-02-20 16:54:25.327 2024-02-20 17:04:26.783 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone woul https://example.com/ 21406 432663 432606.432623.432663.432707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10129584748008 0 \N \N f 0 \N 0 61677770 0 f f \N \N \N \N 432606 \N 0 0 \N \N f \N 432606 2024-02-20 15:32:05.352 2024-02-20 15:42:06.6 Site product one fact loss. Site yeah position Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. https://example.com/ 16004 \N 432606 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.78829759296288 0 \N \N f 0 \N 6 4677667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432780 2024-02-20 17:41:58.814 2024-02-20 17:51:59.865 \N Baby yourself significant both truth decide seem already. Coach aroun https://example.com/ 14260 432759 432759.432780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9033075769507 0 \N \N f 0 \N 6 27574704 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 432481 2024-02-20 14:03:13.308 2024-02-20 14:13:14.558 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community h https://example.com/ 5500 425320 425320.432481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.35835513587952 0 \N \N f 0 \N 3 169713240 0 f f \N \N \N \N 425320 \N 0 0 \N \N f \N 438873 2024-02-26 04:11:55.039 2024-02-26 04:21:56.667 \N Edge card save. Whether manager always h https://example.com/ 16769 438847 438758.438847.438873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4059044611076 0 \N \N f 0 \N 0 19254967 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 432656 2024-02-20 16:20:04.682 2024-02-20 16:30:05.919 \N Religious sam https://example.com/ 13216 432644 432468.432644.432656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.54121987963474 0 \N \N f 0 \N 1 74668589 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432742 2024-02-20 17:17:50.377 2024-02-20 17:27:51.69 \N Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial https://example.com/ 21612 431993 423010.423084.423109.423146.431993.432742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0164153697014 0 \N \N f 0 \N 0 173192991 0 f f \N \N \N \N 423010 \N 0 0 \N \N f \N 441096 2024-02-27 21:08:55.825 2024-02-27 21:18:57.245 \N Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society l https://example.com/ 14202 440875 440875.441096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90222074402385 0 \N \N f 0 \N 0 245713650 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 432740 2024-02-20 17:14:13.788 2024-02-20 17:24:14.766 \N Community https://example.com/ 20179 432724 432661.432724.432740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3273670305146 0 \N \N f 0 \N 0 66821342 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 435126 2024-02-22 15:51:15.151 2024-02-22 16:01:16.601 \N Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leade https://example.com/ 794 434791 434791.435126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9928922060215 0 \N \N f 0 \N 0 206423893 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 438912 2024-02-26 06:00:04.78 2024-02-26 06:10:05.579 Score player recognize carry. Value wish form bui \N https://example.com/ 20560 \N 438912 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 6.59643923739711 0 \N \N f 0 \N 1 44141456 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438914 2024-02-26 06:02:42.32 2024-02-26 06:12:43.872 \N Civil attor https://example.com/ 20436 438810 438651.438804.438810.438914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6023137717389 0 \N \N f 0 \N 0 219028876 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 442238 2024-02-28 15:51:06.487 2024-02-28 16:01:08.64 \N Standard choose whit https://example.com/ 21339 442143 442143.442238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.02621089125937 0 \N \N f 0 \N 0 197367212 0 f f \N \N \N \N 442143 \N 0 0 \N \N f \N 438913 2024-02-26 06:00:05.284 2024-02-26 06:00:10.76 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nTruth training https://example.com/ 13378 438912 438912.438913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.827979692832 0 \N \N f 0 \N 0 66559921 0 f f \N \N \N \N 438912 \N 0 0 \N \N f \N 440974 2024-02-27 19:33:49.37 2024-02-27 19:43:50.393 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question https://example.com/ 21437 440962 440911.440922.440926.440930.440951.440962.440974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.123280296211767 0 \N \N f 0 \N 3 31991782 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 438915 2024-02-26 06:03:26.294 2024-02-26 06:13:27.843 \N Table fish west w https://example.com/ 11263 438651 438651.438915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3664826253532 0 \N \N f 0 \N 1 87762995 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 432746 2024-02-20 17:18:52.872 2024-02-20 17:28:53.64 \N Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line https://example.com/ 2042 429803 429803.432746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02124801406566 0 \N \N f 0 \N 0 59104679 0 f f \N \N \N \N 429803 \N 0 0 \N \N f \N 432714 2024-02-20 16:59:14.494 2024-02-20 17:09:15.538 Bag couple hot buy yourself As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join. https://example.com/ 14295 \N 432714 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.5345632200281 0 \N \N f 0 \N 0 154765505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438845 2024-02-26 03:23:24.388 2024-02-26 03:33:25.208 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine https://example.com/ 20310 438758 438758.438845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7164860539228 0 \N \N f 0 \N 1 79452049 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 440962 2024-02-27 19:23:56.567 2024-02-27 19:34:01.369 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg develo https://example.com/ 15146 440951 440911.440922.440926.440930.440951.440962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4309504348731 0 \N \N f 0 \N 4 77620851 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 432729 2024-02-20 17:05:31.46 2024-02-20 17:15:32.672 \N Foot upon smile p https://example.com/ 11423 432662 432619.432662.432729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9192982042128 0 \N \N f 0 \N 0 177467162 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432731 2024-02-20 17:06:11.47 2024-02-20 17:16:12.587 \N Such ho https://example.com/ 1534 432659 432619.432659.432731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6684981578371 0 \N \N f 0 \N 0 12951181 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432733 2024-02-20 17:07:51.35 2024-02-20 17:17:52.695 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Su https://example.com/ 11999 430696 430696.432733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8063663012799 0 \N \N f 0 \N 0 97334155 0 f f \N \N \N \N 430696 \N 0 0 \N \N f \N 434320 2024-02-21 21:48:36.654 2024-02-21 21:58:37.71 \N Network interview https://example.com/ 20430 433890 433828.433890.434320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5393153515536 0 \N \N f 0 \N 1 3219260 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 432674 2024-02-20 16:31:56.983 2024-02-20 16:41:58.513 Success against price. Resource end yeah Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under. https://example.com/ 19126 \N 432674 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.97261694486976 0 \N \N f 0 \N 14 7809719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441057 2024-02-27 20:28:23.729 2024-02-27 20:38:25.29 \N Still power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nIt fly over audience when guy do. Continue material reco https://example.com/ 5852 440692 440692.441057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.727593313324 0 \N \N f 0 \N 3 209307327 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 432751 2024-02-20 17:22:41.729 2024-02-20 17:32:43.068 \N Moment smile cell cold road happen cause. Give human recently series serve test other. Subj https://example.com/ 10273 432706 430818.432706.432751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2070175460785 0 \N \N f 0 \N 0 54189763 0 f f \N \N \N \N 430818 \N 0 0 \N \N f \N 438848 2024-02-26 03:24:55.359 2024-02-26 03:34:57.577 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nGeneral against page door. Attention although even hospital sing recently https://example.com/ 11609 438843 438737.438843.438848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62041660675422 0 \N \N f 0 \N 0 98490033 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 438833 2024-02-26 03:01:23.666 2024-02-26 03:11:25.036 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citize https://example.com/ 18524 438821 438651.438804.438810.438821.438833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5805661188143 0 \N \N f 0 \N 0 186391772 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 432711 2024-02-20 16:57:22.838 2024-02-20 17:07:24.759 \N South amount subject e https://example.com/ 17291 432705 432705.432711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7673286767042 0 \N \N f 0 \N 0 182125444 0 f f \N \N \N \N 432705 \N 0 0 \N \N f \N 438821 2024-02-26 02:38:25.458 2024-02-26 02:48:26.765 \N Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch perform https://example.com/ 17519 438810 438651.438804.438810.438821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.59764807070997 0 \N \N f 0 \N 1 234436488 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 432467 2024-02-20 13:42:20.782 2024-02-20 13:52:22.513 Knowledge figure draw. Billion Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nDifferent dog example. Themselves up or p https://example.com/ 6765 \N 432467 \N \N \N \N \N \N \N \N art \N ACTIVE \N 26.6723816820408 0 \N \N f 0 \N 4 85078728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432721 2024-02-20 17:01:58.172 2024-02-20 17:11:59.336 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. F https://example.com/ 20023 432366 432170.432214.432268.432350.432366.432721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2472879775037 0 \N \N f 0 \N 2 88198934 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 441958 2024-02-28 13:53:25.674 2024-02-28 14:03:27.926 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each par https://example.com/ 19148 441954 441954.441958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6594952594797 0 \N \N f 0 \N 0 179149368 0 f f \N \N \N \N 441954 \N 0 0 \N \N f \N 438810 2024-02-26 01:41:28.476 2024-02-26 01:51:29.866 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Cit https://example.com/ 9816 438804 438651.438804.438810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4085455653445 0 \N \N f 0 \N 3 23975281 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 440926 2024-02-27 18:49:12.349 2024-02-27 18:59:14.397 \N Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor co https://example.com/ 21119 440922 440911.440922.440926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4660958372076 0 \N \N f 0 \N 10 177525383 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 432706 2024-02-20 16:53:08.872 2024-02-20 17:03:11.048 \N Hope more garden develo https://example.com/ 21539 430818 430818.432706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10872096692675 0 \N \N f 0 \N 1 106843752 0 f f \N \N \N \N 430818 \N 0 0 \N \N f \N 439756 2024-02-26 18:52:00.261 2024-02-26 19:02:01.462 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision m https://example.com/ 20854 439139 439139.439756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35098201899586 0 \N \N f 0 \N 0 4794948 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 432444 2024-02-20 13:04:13.386 2024-02-20 13:14:15.802 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relat https://example.com/ 21344 432344 432344.432444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2412911617565 0 \N \N f 0 \N 1 55925809 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432572 2024-02-20 15:08:48.341 2024-02-20 15:18:49.325 Natural rea Operation against song book rise hard. Attorne https://example.com/ 15474 \N 432572 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 4.49017353162965 0 \N \N f 0 \N 0 89151740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438799 2024-02-26 01:18:38.887 2024-02-26 01:28:40.682 \N Special identify senior difference third. Study onto new suddenl https://example.com/ 12265 438772 438772.438799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7895237187713 0 \N \N f 0 \N 0 25087366 0 f f \N \N \N \N 438772 \N 0 0 \N \N f \N 432270 2024-02-20 09:24:56.676 2024-02-20 09:34:57.826 \N Scientist https://example.com/ 1261 131647 131647.432270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3460437670024 0 \N \N f 0 \N 0 175360893 0 f f \N \N \N \N 131647 \N 0 0 \N \N f \N 435123 2024-02-22 15:49:41.91 2024-02-22 15:59:43.265 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they s https://example.com/ 1090 435115 435115.435123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9959431942989 0 \N \N f 0 \N 0 91981594 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 432260 2024-02-20 09:04:50.387 2024-02-20 09:14:51.992 Beyond difference husba Top group country tree light cultural simply. From woman key talk southern real. Sh https://example.com/ 20811 \N 432260 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 12.1885029372219 0 \N \N f 0 \N 0 201023335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432598 2024-02-20 15:25:42.175 2024-02-20 15:35:43.4 Enough book hope yard store together camera s Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside la https://example.com/ 13143 \N 432598 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 7.48137691012051 0 \N \N f 0 \N 1 212924964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432237 2024-02-20 08:18:22.527 2024-02-20 08:28:24.478 Wind through current perhaps until now yet. Receive laugh onto b Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model dem https://example.com/ 19553 \N 432237 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 8.83712229042231 0 \N \N f 0 \N 0 214813592 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438918 2024-02-26 06:16:34.031 2024-02-26 06:26:35.337 \N Machine thousand determine newspaper four. Street pla https://example.com/ 746 428200 428021.428047.428056.428200.438918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.328655957737 0 \N \N f 0 \N 0 175726121 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 438925 2024-02-26 06:50:11.101 2024-02-26 07:00:13.265 \N From democratic trial American bl https://example.com/ 18556 438889 438737.438889.438925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1356876645358 0 \N \N f 0 \N 0 133266684 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432758 2024-02-20 17:28:52.582 2024-02-20 17:38:53.401 \N Fund bring design try claim atten https://example.com/ 9331 432651 432651.432758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.69319466094775 0 \N \N f 0 \N 0 138124973 0 f f \N \N \N \N 432651 \N 0 0 \N \N f \N 432744 2024-02-20 17:18:30.846 2024-02-20 17:28:32.721 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up sp https://example.com/ 1209 432737 432170.432214.432268.432350.432366.432721.432737.432744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9391291003746 0 \N \N f 0 \N 0 30037991 0 f f \N \N \N \N 432170 \N 0 0 \N \N f \N 438921 2024-02-26 06:34:31.959 2024-02-26 06:44:33.168 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Towa https://example.com/ 19352 438884 433886.438884.438921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71866199805422 0 \N \N f 0 \N 0 189470671 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 432755 2024-02-20 17:24:27.778 2024-02-20 17:34:28.674 \N Foot upon smile pass hou https://example.com/ 17415 432683 432683.432755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7712176872969 0 \N \N f 0 \N 1 177354682 0 f f \N \N \N \N 432683 \N 0 0 \N \N f \N 432772 2024-02-20 17:36:08.369 2024-02-20 17:46:09.641 \N Enough blue provide home alone reality atta https://example.com/ 19911 432661 432661.432772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.622716525519 0 \N \N f 0 \N 0 220750819 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 438930 2024-02-26 07:00:06.837 2024-02-26 07:00:12.064 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics gr https://example.com/ 623 438929 438929.438930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50819389601121 0 \N \N f 0 \N 0 167737263 0 f f \N \N \N \N 438929 \N 0 0 \N \N f \N 438920 2024-02-26 06:25:38.046 2024-02-26 06:35:39.444 \N Score might instead ground institution. A https://example.com/ 14950 438893 438893.438920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0221165184665 0 \N \N f 0 \N 0 109269581 0 f f \N \N \N \N 438893 \N 0 0 \N \N f \N 438927 2024-02-26 06:51:31.881 2024-02-26 07:01:34.481 \N Project them draw walk if signifi https://example.com/ 882 427416 427401.427416.438927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1010165257691 0 \N \N f 0 \N 0 219135186 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N 439796 2024-02-26 19:26:29.363 2024-02-26 19:36:30.405 \N Wind put daughter. Mr later note wish represent hundred. Soon think board color happen n https://example.com/ 4459 439081 439026.439081.439796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.770846285083 0 \N \N f 0 \N 1 17872271 0 f f \N \N \N \N 439026 \N 0 0 \N \N f \N 438895 2024-02-26 05:16:09.353 2024-02-26 05:26:10.002 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room noth https://example.com/ 2233 438093 438093.438895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.41495637579375 0 \N \N f 0 \N 0 19882924 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432750 2024-02-20 17:22:33.069 2024-02-20 17:32:35.054 \N Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nOver partner wear detai https://example.com/ 18357 432517 432517.432750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32457562228948 0 \N \N f 0 \N 2 156914302 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 438843 2024-02-26 03:19:11.58 2024-02-26 03:29:12.958 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid res https://example.com/ 13327 438737 438737.438843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9451578895126 0 \N \N f 0 \N 1 87113736 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432469 2024-02-20 13:46:45.534 2024-02-20 13:56:48.019 Seat commercial through property new. Career audience body morning g Beyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail. https://example.com/ 6382 \N 432469 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 2.89053318446161 0 \N \N f 0 \N 2 209162781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432464 2024-02-20 13:28:00.862 2024-02-20 13:38:02.342 Senior than easy statement both total. Picture Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto val https://example.com/ 18896 \N 432464 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.127718740338238 0 \N \N f 0 \N 3 50241297 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438893 2024-02-26 04:51:07.495 2024-02-26 05:01:08.861 Generation discover realize we. Make important employe Concern position true. Third financial may produce. Machine his identify long threat particularly som https://example.com/ 11561 \N 438893 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.03373851898619 0 \N \N f 0 \N 1 79488950 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442011 2024-02-28 14:16:48.621 2024-02-28 14:26:49.635 \N Cell language east https://example.com/ 1673 441959 441843.441959.442011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3804378600921 0 \N \N f 0 \N 1 113431497 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 432753 2024-02-20 17:23:55.879 2024-02-20 17:33:57.061 \N American argue three local care join full another. North safe https://example.com/ 10693 432511 432511.432753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5348477541985 0 \N \N f 0 \N 0 52811541 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 438524 2024-02-25 18:10:30.266 2024-02-25 18:20:31.628 Reach too suffer story type remember lot. Reveal may Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nYeah word become defense role yourself suddenly. Draw relationship dream work f https://example.com/ 4574 \N 438524 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.16995426218144 0 \N \N f 0 \N 2 126580641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432768 2024-02-20 17:34:28.858 2024-02-20 17:44:30.439 \N With officer scientist https://example.com/ 20218 432755 432683.432755.432768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.25099510100007 0 \N \N f 0 \N 0 227954372 0 f f \N \N \N \N 432683 \N 0 0 \N \N f \N 432738 2024-02-20 17:12:37.371 2024-02-20 17:22:39.123 \N If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind https://example.com/ 2718 429644 429644.432738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.82889657535888 0 \N \N f 0 \N 0 173369965 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 432745 2024-02-20 17:18:43.174 2024-02-20 17:28:45.423 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East huma https://example.com/ 20353 432705 432705.432745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2051594971742 0 \N \N f 0 \N 0 49218718 0 f f \N \N \N \N 432705 \N 0 0 \N \N f \N 432761 2024-02-20 17:31:52.537 2024-02-20 17:41:53.723 \N Deep some relate building buy then https://example.com/ 13553 432667 432344.432667.432761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43734460797202 0 \N \N f 0 \N 2 171936661 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438814 2024-02-26 02:00:04.583 2024-02-26 02:10:06.14 Music energy specific plan financial federal. Prove free source real air marke \N https://example.com/ 919 \N 438814 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.7647695782887 0 \N \N f 0 \N 3 234955945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438916 2024-02-26 06:13:13.653 2024-02-26 06:23:15.177 Site coach strong dark while new security push. Else call threat matte Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nRole before girl wonder clear many security into. Of you https://example.com/ 19449 \N 438916 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.8642519956704 0 \N \N f 0 \N 1 107546240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438928 2024-02-26 06:58:50.015 2024-02-26 07:08:51.462 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget https://example.com/ 4650 434278 434278.438928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23539767173907 0 \N \N f 0 \N 0 26550277 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 438939 2024-02-26 07:32:10.238 2024-02-26 07:42:11.805 \N View especially nation nor third to husb https://example.com/ 5495 438795 438414.438795.438939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32442862369324 0 \N \N f 0 \N 0 61247451 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432760 2024-02-20 17:30:53.267 2024-02-20 17:40:55.013 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early wh https://example.com/ 7673 432727 432344.432554.432642.432677.432694.432727.432760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3656616367897 0 \N \N f 0 \N 0 39879102 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434326 2024-02-21 21:53:42.604 2024-02-21 22:03:44.313 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person prote https://example.com/ 18892 434309 434278.434309.434326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78211548388052 0 \N \N f 0 \N 1 167044835 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 443649 2024-02-29 15:03:25.055 2024-02-29 15:13:26.113 \N Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same mor https://example.com/ 8796 443116 443099.443116.443649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04392930389545 0 \N \N f 0 \N 1 215537871 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 432551 2024-02-20 14:55:49.163 2024-02-20 15:05:50.567 \N Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. P https://example.com/ 19546 432517 432517.432551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8877116945786 0 \N \N f 0 \N 3 114964304 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 440614 2024-02-27 14:40:22.011 2024-02-27 14:50:24.02 \N Take carry dis https://example.com/ 12946 440610 440610.440614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.619131442257 0 \N \N f 0 \N 0 129199120 0 f f \N \N \N \N 440610 \N 0 0 \N \N f \N 439264 2024-02-26 13:11:03.514 2024-02-26 13:21:05.851 \N Agreement new fine federal glass beyond manager https://example.com/ 5387 439139 439139.439264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31365297291797 0 \N \N f 0 \N 0 103400420 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 438963 2024-02-26 07:49:39.873 2024-02-26 07:59:41.275 \N Adult carry training two campaign. Happen military machine professor turn. Wear directio https://example.com/ 891 438857 438857.438963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58444392756184 0 \N \N f 0 \N 0 244548274 0 f f \N \N \N \N 438857 \N 0 0 \N \N f \N 444052 2024-02-29 18:45:54.489 2024-02-29 18:55:56.098 \N Nature couple north https://example.com/ 18828 444041 443836.444041.444052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3209740911836 0 \N \N f 0 \N 0 133663632 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444054 2024-02-29 18:46:32.346 2024-02-29 18:56:33.814 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nScie https://example.com/ 15521 443919 443919.444054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4997992931059 0 \N \N f 0 \N 0 95422721 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 432773 2024-02-20 17:36:43.1 2024-02-20 17:46:44.14 \N Sell attention budget indic https://example.com/ 822 432736 432736.432773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04196060559011 0 \N \N f 0 \N 1 118781878 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432767 2024-02-20 17:34:16.936 2024-02-20 17:44:19.413 \N Eye million figure now as collection. During report https://example.com/ 3392 432619 432619.432767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1770210466466 0 \N \N f 0 \N 0 45664561 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 437995 2024-02-25 07:13:00.143 2024-02-26 07:21:42.821 Inside nor professional partner new design machi Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic https://example.com/ 913 \N 437995 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 28.5527969991352 0 \N \N f 0 \N 0 206659990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438795 2024-02-26 01:12:19.652 2024-02-26 01:22:22.325 \N Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nFigure foreign game ok first agreement. Figure speci https://example.com/ 825 438414 438414.438795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6644197573563 0 \N \N f 0 \N 3 202455333 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 436958 2024-02-24 07:30:03.777 2024-02-24 07:40:04.873 \N Ever small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nHeart such other on during c https://example.com/ 19488 436931 436720.436931.436958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3316947428382 0 \N \N f 0 \N 2 170334905 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 432492 2024-02-20 14:13:32.246 2024-02-20 14:23:33.599 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone min https://example.com/ 12708 432259 432259.432492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2865536788182 0 \N \N f 0 \N 0 103874149 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 439780 2024-02-26 19:11:52.73 2024-02-26 19:21:53.967 \N If lose particular record natural camera go https://example.com/ 21216 439213 439213.439780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0211235647273 0 \N \N f 0 \N 0 8186935 0 f f \N \N \N \N 439213 \N 0 0 \N \N f \N 432643 2024-02-20 16:10:05.076 2024-02-20 16:20:06.575 \N Never whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type whit https://example.com/ 11192 432538 432468.432526.432527.432538.432643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71855552589327 0 \N \N f 0 \N 0 3568892 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 438790 2024-02-26 00:48:13.095 2024-02-26 00:58:14.188 \N Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Fol https://example.com/ 17011 438670 438670.438790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.05161132252621 0 \N \N f 0 \N 1 37731351 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 438969 2024-02-26 08:01:55.236 2024-02-26 08:11:56.684 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how https://example.com/ 19198 438790 438670.438790.438969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3539738718368 0 \N \N f 0 \N 0 220773715 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 438977 2024-02-26 08:12:33.061 2024-02-26 08:22:34.73 \N Sing eight human sit. Tv already entire not https://example.com/ 706 438946 438946.438977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1493462048075 0 \N \N f 0 \N 3 29923315 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432771 2024-02-20 17:35:58.823 2024-02-20 17:45:59.822 \N Practice see become. Chanc https://example.com/ 4128 432386 432344.432382.432386.432771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1550249829896 0 \N \N f 0 \N 5 123485532 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432538 2024-02-20 14:43:34.137 2024-02-20 14:53:35.529 \N Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age https://example.com/ 21491 432527 432468.432526.432527.432538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.945196522757783 0 \N \N f 0 \N 2 33500016 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 432787 2024-02-20 17:44:48.772 2024-02-20 17:54:49.942 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cau https://example.com/ 4314 432752 432752.432787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.352070993629 0 \N \N f 0 \N 0 152644921 0 f f \N \N \N \N 432752 \N 0 0 \N \N f \N 432789 2024-02-20 17:45:29.353 2024-02-20 17:55:30.543 \N Myself candida https://example.com/ 2285 432788 432759.432780.432788.432789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3437993390308 0 \N \N f 0 \N 0 169904445 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 432080 2024-02-20 01:14:18.322 2024-02-20 01:24:20.035 \N She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional https://example.com/ 19796 431844 431844.432080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9891669785692 0 \N \N f 0 \N 0 112434629 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438949 2024-02-26 07:38:39.628 2024-02-26 07:48:41.164 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw a https://example.com/ 3411 438794 438794.438949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90211599010607 0 \N \N f 0 \N 0 129281992 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 438944 2024-02-26 07:35:17.811 2024-02-26 07:45:18.712 \N Charge hold reveal easy rise method leave. Propert https://example.com/ 19795 438887 438887.438944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3111726191341 0 \N \N f 0 \N 0 83903391 0 f f \N \N \N \N 438887 \N 0 0 \N \N f \N 432774 2024-02-20 17:38:13.332 2024-02-20 17:48:14.467 \N Real goal https://example.com/ 1120 432669 432344.432669.432774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73344336243228 0 \N \N f 0 \N 0 194095130 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438889 2024-02-26 04:49:37.93 2024-02-26 04:59:39.019 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine o https://example.com/ 19668 438737 438737.438889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5239702756648 0 \N \N f 0 \N 1 243766438 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 433195 2024-02-20 23:41:02.794 2024-02-20 23:51:03.873 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which r https://example.com/ 5825 432661 432661.433195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.64017997532404 0 \N \N f 0 \N 1 194858796 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432778 2024-02-20 17:41:13.196 2024-02-20 17:51:14.284 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. https://example.com/ 18877 432762 432344.432669.432718.432762.432778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3015073337032 0 \N \N f 0 \N 0 71647849 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438952 2024-02-26 07:39:33.257 2024-02-26 07:49:35.359 \N Bring rich desc https://example.com/ 19863 438862 438519.438614.438643.438862.438952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.70223054859414 0 \N \N f 0 \N 0 236528108 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 438945 2024-02-26 07:36:25.452 2024-02-26 07:46:27.837 \N Understand Mr score until. Debate according western evening rate reveal. Where always c https://example.com/ 1007 438739 438209.438739.438945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3240957411147 0 \N \N f 0 \N 0 192640626 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432256 2024-02-20 08:53:24.864 2024-02-20 09:03:26.18 \N Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue https://example.com/ 2347 432203 432203.432256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.35795653477314 0 \N \N f 0 \N 6 164725920 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 437260 2024-02-24 14:26:48.047 2024-02-24 14:36:49.122 Hundred unit music many. But mother however drug call a. Str News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern. https://example.com/ 17592 \N 437260 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7108115592435 0 \N \N f 0 \N 0 203474816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432786 2024-02-20 17:44:20.839 2024-02-20 17:54:21.595 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nThey another learn question lose to. Matter fear plant bank information https://example.com/ 1051 432674 432674.432786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7857924863665 0 \N \N f 0 \N 0 153600778 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 438950 2024-02-26 07:39:02.346 2024-02-26 07:49:03.899 \N It suggest save face though s https://example.com/ 12188 438715 436669.437284.438715.438950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1533987680295 0 \N \N f 0 \N 0 223745014 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 432779 2024-02-20 17:41:22.746 2024-02-20 17:51:24.292 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right https://example.com/ 11240 432766 432759.432766.432779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.03017275847191 0 \N \N f 0 \N 1 123167813 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 432813 2024-02-20 17:59:00.618 2024-02-20 18:09:01.435 \N Quite tea https://example.com/ 5865 432749 432467.432749.432813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6218119093464 0 \N \N f 0 \N 0 155126748 0 f f \N \N \N \N 432467 \N 0 0 \N \N f \N 432641 2024-02-20 16:01:23.435 2024-02-20 16:11:25.161 \N East fast despite responsibility machine. Listen mean abo https://example.com/ 7891 432560 432560.432641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3450540935539 0 \N \N f 0 \N 0 59419377 0 f f \N \N \N \N 432560 \N 0 0 \N \N f \N 438953 2024-02-26 07:40:01.412 2024-02-26 07:50:03.074 \N Sense college state many. Some your mother else receive fall. Threat throughout els https://example.com/ 21498 438943 438794.438931.438940.438943.438953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7756705537229 0 \N \N f 0 \N 0 228085681 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432025 2024-02-19 23:44:55.97 2024-02-19 23:54:57.161 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nMost describe tell speech without. Young lot next cell among war agree. Import https://example.com/ 18690 431844 431844.432025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8246749063737 0 \N \N f 0 \N 0 233116910 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 434856 2024-02-22 11:55:11.205 2024-02-22 12:05:12.828 \N Poor appear go since involve. How form no di https://example.com/ 19662 434484 434469.434484.434856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2259092023683 0 \N \N f 0 \N 0 22365483 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 436669 2024-02-23 21:29:48.526 2024-02-23 21:39:49.522 Born million yourself husband old Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive pro https://example.com/ 4084 \N 436669 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0964615418766 0 \N \N f 0 \N 22 92528570 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432788 2024-02-20 17:44:58.961 2024-02-20 17:55:00.526 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind struct https://example.com/ 15146 432780 432759.432780.432788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8581335917701 0 \N \N f 0 \N 5 136945739 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 438715 2024-02-25 22:22:03.148 2024-02-25 22:32:04.725 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly https://example.com/ 16353 437284 436669.437284.438715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36373599925486 0 \N \N f 0 \N 1 144711470 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 432770 2024-02-20 17:35:27.684 2024-02-20 17:45:28.785 \N Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nQuite teacher accept per agent PM suddenly reveal. Land country school la https://example.com/ 17209 432369 432369.432770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7818510992139 0 \N \N f 0 \N 0 217320750 0 f f \N \N \N \N 432369 \N 0 0 \N \N f \N 438967 2024-02-26 08:00:05.512 2024-02-26 08:00:10.906 \N System lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Auth https://example.com/ 7746 438966 438966.438967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5195557545799 0 \N \N f 0 \N 0 52142415 0 f f \N \N \N \N 438966 \N 0 0 \N \N f \N 432077 2024-02-20 01:12:05.245 2024-02-20 01:22:06.54 \N Break test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present. https://example.com/ 2195 431844 431844.432077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.0276398754629 0 \N \N f 0 \N 0 8956342 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 438955 2024-02-26 07:43:09.359 2024-02-26 07:53:11.854 \N Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compar https://example.com/ 4083 438775 438182.438281.438491.438775.438955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5158955994566 0 \N \N f 0 \N 0 4178580 0 f f \N \N \N \N 438182 \N 0 0 \N \N f \N 438958 2024-02-26 07:45:49.602 2024-02-26 07:55:51.083 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perf https://example.com/ 20701 438794 438794.438958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93168367691783 0 \N \N f 0 \N 0 221002542 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 438962 2024-02-26 07:48:12.097 2024-02-26 07:58:13.137 \N Ten instead develop https://example.com/ 2347 253643 253643.438962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69186608207459 0 \N \N f 0 \N 0 182850166 0 f f \N \N \N \N 253643 \N 0 0 \N \N f \N 432807 2024-02-20 17:54:49.26 2024-02-20 18:04:51.089 \N Mention well https://example.com/ 16939 432563 432563.432807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5706119270213 0 \N \N f 0 \N 0 181145531 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 438182 2024-02-25 12:25:36.023 2024-02-25 12:35:37.594 Measure would expert nation two. Prove at together various style. Garden Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out https://example.com/ 20254 \N 438182 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 5.63572163464048 0 \N \N f 0 \N 6 3482895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438491 2024-02-25 17:45:33.957 2024-02-25 17:55:35.127 \N Range network baby that. Smile common political anim https://example.com/ 19878 438281 438182.438281.438491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2376671830176 0 \N \N f 0 \N 2 116769040 0 f f \N \N \N \N 438182 \N 0 0 \N \N f \N 432783 2024-02-20 17:43:52.381 2024-02-20 17:53:53.806 \N Rea https://example.com/ 7553 432736 432736.432783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79316184448003 0 \N \N f 0 \N 0 151620892 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 438775 2024-02-26 00:30:43.647 2024-02-26 00:40:45.003 \N Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order me https://example.com/ 20861 438491 438182.438281.438491.438775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2978767362795 0 \N \N f 0 \N 1 194968347 0 f f \N \N \N \N 438182 \N 0 0 \N \N f \N 432029 2024-02-19 23:48:37.814 2024-02-19 23:58:38.884 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer who https://example.com/ 13622 432003 432003.432029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87345364653493 0 \N \N f 0 \N 1 227763595 0 f f \N \N \N \N 432003 \N 0 0 \N \N f \N 432797 2024-02-20 17:48:16.025 2024-02-20 17:58:16.966 \N By fight several talk. Minute proba https://example.com/ 18736 432579 432579.432797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54328271602003 0 \N \N f 0 \N 0 243432198 0 f f \N \N \N \N 432579 \N 0 0 \N \N f \N 431856 2024-02-19 20:51:38.121 2024-02-22 14:59:40.761 \N Authority environme https://example.com/ 1213 430892 430892.431856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0857287016082 0 \N \N f 0 \N 2 233162416 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438860 2024-02-26 03:41:52.039 2024-02-26 03:51:53.383 Marriage interview green school study foot home like. Situation mind conce Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend e https://example.com/ 18392 \N 438860 \N \N \N \N \N \N \N \N health \N ACTIVE \N 29.0092308365877 0 \N \N f 0 \N 1 88613104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438919 2024-02-26 06:23:21.302 2024-02-26 06:33:22.363 \N Including lawyer baby ok movie never happy. Civil program effort knowledge which. https://example.com/ 18454 438798 438798.438919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0037272807926 0 \N \N f 0 \N 0 175480844 0 f f \N \N \N \N 438798 \N 0 0 \N \N f \N 432166 2024-02-20 04:27:31.397 2024-02-20 04:37:32.411 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop https://example.com/ 11821 432101 432101.432166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.92676017685343 0 \N \N f 0 \N 1 212177385 0 f f \N \N \N \N 432101 \N 0 0 \N \N f \N 432101 2024-02-20 02:18:08.999 2024-02-20 02:28:10.568 Author travel realize. Face represent bring read gas. Group system speak Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nWay all line after. Only trouble they hair when. According the help to https://example.com/ 12169 \N 432101 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 23.3352851617537 0 \N \N f 0 \N 6 245135940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432792 2024-02-20 17:46:31.231 2024-02-20 17:56:32.404 \N Price country hour whom over a https://example.com/ 1130 432511 432511.432792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9223623020124 0 \N \N f 0 \N 0 99222794 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 432803 2024-02-20 17:52:17.227 2024-02-20 18:02:18.636 \N Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nEven hot political little painting home. Garden speech https://example.com/ 13406 432705 432705.432803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1487579897766 0 \N \N f 0 \N 0 159190120 0 f f \N \N \N \N 432705 \N 0 0 \N \N f \N 438959 2024-02-26 07:47:27.937 2024-02-26 07:57:29.349 Local college movie start lose good either if. Remember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog. https://example.com/ 20479 \N 438959 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.98008656043995 0 \N \N f 0 \N 1 190303034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439794 2024-02-26 19:24:58.901 2024-02-26 19:35:00.487 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nHerself then or effect usually treat. Exactly I agree https://example.com/ 19815 439753 438936.439016.439075.439181.439753.439794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5965833872897 0 \N \N f 0 \N 0 208234441 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 441060 2024-02-27 20:33:01.133 2024-02-27 20:43:02.988 \N Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nGrow last away wind. Mr bill do exp https://example.com/ 10536 440692 440692.441060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2375124659538 0 \N \N f 0 \N 3 50948961 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 432683 2024-02-20 16:36:22.607 2024-02-20 16:46:23.93 Fish health while enjoy. Step check prevent sell poli Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network. https://example.com/ 20897 \N 432683 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.34018919488241 0 \N \N f 0 \N 4 246346922 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438961 2024-02-26 07:48:00.234 2024-02-26 07:58:01.117 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nBeat case firm shoulder dream form action. Responsibility firm h https://example.com/ 21406 438959 438959.438961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0975299938709 0 \N \N f 0 \N 0 203993895 0 f f \N \N \N \N 438959 \N 0 0 \N \N f \N 438964 2024-02-26 07:50:37.217 2024-02-26 08:00:39.335 \N View espe https://example.com/ 20849 438519 438519.438964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.30784245434243 0 \N \N f 0 \N 0 140149594 0 f f \N \N \N \N 438519 \N 0 0 \N \N f \N 438951 2024-02-26 07:39:18.313 2024-02-26 07:49:20.097 \N Name put just democratic follow beyond marria https://example.com/ 18897 436566 436566.438951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85558369557601 0 \N \N f 0 \N 0 32506947 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 438751 2024-02-25 23:49:10.159 2024-02-25 23:59:11.914 \N Remember statement trip much improve body. https://example.com/ 20710 367235 367235.438751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1067381155736 0 \N \N f 0 \N 1 162259887 0 f f \N \N \N \N 367235 \N 0 0 \N \N f \N 432775 2024-02-20 17:38:30.672 2024-02-20 17:48:32.072 \N Reflect fill team movie draw red group. Congress https://example.com/ 19815 432773 432736.432773.432775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9097462831362 0 \N \N f 0 \N 0 142719055 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432804 2024-02-20 17:53:22.817 2024-02-20 18:03:24.226 \N Mater https://example.com/ 15160 432736 432736.432804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85856628837838 0 \N \N f 0 \N 0 190302219 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 438956 2024-02-26 07:43:12.503 2024-02-26 07:53:14.189 Oil fast organization discussion board nation hotel. Re Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard. https://example.com/ 15938 \N 438956 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4606646981104 0 \N \N f 0 \N 3 81738358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438902 2024-02-26 05:33:54.226 2024-02-26 05:43:55.506 \N House west amount. Again high already himself answer type. Go ba https://example.com/ 18472 429380 429291.429380.438902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0643493791053 0 \N \N f 0 \N 0 77161083 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 438974 2024-02-26 08:08:09.43 2024-02-26 08:18:11.138 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase https://example.com/ 11275 438751 367235.438751.438974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11791342707277 0 \N \N f 0 \N 0 168034338 0 f f \N \N \N \N 367235 \N 0 0 \N \N f \N 432809 2024-02-20 17:55:28.097 2024-02-20 18:05:29.643 \N Describe modern fund https://example.com/ 14688 432150 431800.432046.432150.432809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53793826454249 0 \N \N f 0 \N 2 22638385 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 435230 2024-02-22 16:55:00.443 2024-02-22 17:05:01.701 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport https://example.com/ 2577 435212 435046.435135.435162.435200.435212.435230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5330219478318 0 \N \N f 0 \N 0 110259722 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 438985 2024-02-26 08:39:59.55 2024-02-26 08:50:00.376 Mention trip someone idea until physical. Protect issue reason le Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge. https://example.com/ 9275 \N 438985 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.7294002938873 0 \N \N f 0 \N 0 69997547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441064 2024-02-27 20:34:23.961 2024-02-27 20:44:25.255 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always win https://example.com/ 17710 438100 432674.432844.437730.438100.441064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2334774038192 0 \N \N f 0 \N 0 200761677 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 435200 2024-02-22 16:35:37.648 2024-02-22 16:45:39.304 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total d https://example.com/ 16879 435162 435046.435135.435162.435200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9801392071415 0 \N \N f 0 \N 2 186307467 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 432782 2024-02-20 17:43:50.361 2024-02-20 17:53:51.782 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choos https://example.com/ 18897 432766 432759.432766.432782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.05610656683516 0 \N \N f 0 \N 1 148844506 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 438480 2024-02-25 17:38:23.173 2024-02-25 17:48:24.277 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Cong https://example.com/ 9036 438477 438438.438442.438471.438477.438480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27924866941245 0 \N \N f 0 \N 1 243209246 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 438972 2024-02-26 08:03:00.331 2024-02-26 08:13:01.922 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number s https://example.com/ 18473 438970 438970.438972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8044193418509 0 \N \N f 0 \N 0 197880238 0 f f \N \N \N \N 438970 \N 0 0 \N \N f \N 432808 2024-02-20 17:54:50.33 2024-02-20 18:04:52.104 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red dire https://example.com/ 14669 432428 432428.432808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9442489782192 0 \N \N f 0 \N 1 29353088 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 442007 2024-02-28 14:14:12.141 2024-02-28 14:24:14.293 \N Practice see become. Ch https://example.com/ 1130 441967 441967.442007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.303224910513 0 \N \N f 0 \N 2 65218914 0 f f \N \N \N \N 441967 \N 0 0 \N \N f \N 435174 2024-02-22 16:19:56.342 2024-02-22 16:29:57.746 \N Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nProgram cut truth box indicate game. Agency option outside wear. https://example.com/ 7773 435155 434958.435023.435155.435174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74233109883346 0 \N \N f 0 \N 0 114056165 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 435173 2024-02-22 16:19:53.867 2024-02-22 16:29:55.663 \N After way challenge. Nothing https://example.com/ 15556 435164 435142.435164.435173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3523758177191 0 \N \N f 0 \N 0 45508758 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 432812 2024-02-20 17:57:14.403 2024-02-20 18:07:15.861 \N Skin summer development benefit note soldier. Va https://example.com/ 5160 432344 432344.432812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.757189689462 0 \N \N f 0 \N 2 64385051 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432798 2024-02-20 17:48:49.931 2024-02-20 17:58:51.207 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Reli https://example.com/ 986 432779 432759.432766.432779.432798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.654481463018 0 \N \N f 0 \N 0 212131471 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 438973 2024-02-26 08:04:21.951 2024-02-26 08:14:23.008 Job stage use mate Call economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside. https://example.com/ 21612 \N 438973 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.8050955319753 0 \N \N f 0 \N 7 198027507 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442223 2024-02-28 15:44:18.762 2024-02-28 15:54:20.68 \N Discussion sing wear moment organization. Idea check off rather represent. Couple available indu https://example.com/ 15119 442163 442163.442223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.37901786199788 0 \N \N f 0 \N 1 50860988 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 438976 2024-02-26 08:10:00.231 2024-02-26 08:20:02.2 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while person https://example.com/ 20660 438975 438975.438976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15296598232856 0 \N \N f 0 \N 0 116534637 0 f f \N \N \N \N 438975 \N 0 0 \N \N f \N 439786 2024-02-26 19:15:34.194 2024-02-26 19:25:36.229 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nDrug you class operation. Have job sense. Face thank factor https://example.com/ 9333 439765 439723.439747.439755.439763.439765.439786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5049634379076 0 \N \N f 0 \N 1 45309910 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 432815 2024-02-20 18:00:16.239 2024-02-20 18:10:17 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother https://example.com/ 11491 432734 430498.432734.432815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.46411874133253 0 \N \N f 0 \N 0 6490190 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 438946 2024-02-26 07:36:50.571 2024-02-27 06:06:33.628 White seven property least father loca Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing prot https://example.com/ 2773 \N 438946 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 18.7609672575448 0 \N \N f 0 \N 27 241457626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438981 2024-02-26 08:18:39.441 2024-02-26 08:28:40.931 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort de https://example.com/ 21555 438977 438946.438977.438981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.672943601946052 0 \N \N f 0 \N 1 38580000 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 438731 2024-02-25 23:04:16.824 2024-02-25 23:14:19.099 \N Down his majority risk worker parent head. Decade painting reduce throughout several en https://example.com/ 9820 438649 438649.438731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7682352178146 0 \N \N f 0 \N 7 132093489 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 438978 2024-02-26 08:13:52.453 2024-02-26 08:23:54.22 \N Deal probably car remember hit reve https://example.com/ 13132 438947 438946.438947.438978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2140781636889 0 \N \N f 0 \N 1 176189775 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 438980 2024-02-26 08:16:06.187 2024-02-26 08:26:08.376 \N Religious same wish cost make. Else https://example.com/ 16154 438978 438946.438947.438978.438980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.24801449866115 0 \N \N f 0 \N 0 164698356 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432784 2024-02-20 17:43:52.633 2024-02-20 17:53:54.547 \N Admit difficult figure parent account in. Suf https://example.com/ 4076 432683 432683.432784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5640965315942 0 \N \N f 0 \N 1 25504949 0 f f \N \N \N \N 432683 \N 0 0 \N \N f \N 438994 2024-02-26 09:15:34.726 2024-02-26 09:25:37.093 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional https://example.com/ 18769 438028 438028.438994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.97127311065434 0 \N \N f 0 \N 0 169290201 0 f f \N \N \N \N 438028 \N 0 0 \N \N f \N 438997 2024-02-26 09:25:10.407 2024-02-26 09:35:11.324 Because fear practice program husband remain discussion record. Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. https://example.com/ 1401 \N 438997 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 7.84188561185449 0 \N \N f 0 \N 0 8463637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438107 2024-02-25 11:16:27.516 2024-02-25 11:26:29.053 \N Yourself teach week line no hotel whatever. Identify floor his https://example.com/ 16789 438073 438065.438073.438107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2310582576327 0 \N \N f 0 \N 0 78648950 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 432150 2024-02-20 03:32:49.802 2024-02-20 03:42:51.689 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax custo https://example.com/ 1213 432046 431800.432046.432150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3515812854718 0 \N \N f 0 \N 3 18217682 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432046 2024-02-20 00:04:43.703 2024-02-20 00:14:46.185 \N Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nName put just democratic follow beyond marriage minute. Only none sce https://example.com/ 19235 431800 431800.432046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.038577151339 0 \N \N f 0 \N 4 195036751 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 438877 2024-02-26 04:23:55.131 2024-02-26 04:33:56.297 \N Wear role agency. Enter back require mission piece important especial https://example.com/ 9426 438486 438486.438877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0795629828175 0 \N \N f 0 \N 0 92437130 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 432795 2024-02-20 17:47:47.418 2024-02-20 17:57:48.668 \N Hard same https://example.com/ 21063 432784 432683.432784.432795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.84480724180727 0 \N \N f 0 \N 0 29635009 0 f f \N \N \N \N 432683 \N 0 0 \N \N f \N 432819 2024-02-20 18:02:12.436 2024-02-20 18:12:14.157 \N E https://example.com/ 13169 432382 432344.432382.432819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7316509867009 0 \N \N f 0 \N 0 153679914 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433207 2024-02-20 23:56:53.093 2024-02-21 00:06:54.857 \N Perform might someone represent whe https://example.com/ 21422 426573 426573.433207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3273448131181 0 \N \N f 0 \N 0 54184806 0 f f \N \N \N \N 426573 \N 0 0 \N \N f \N 441989 2024-02-28 14:08:23.256 2024-02-28 14:18:24.238 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executiv https://example.com/ 8080 441985 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8741820499233 0 \N \N f 0 \N 12 248180947 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442122 2024-02-28 15:06:53.094 2024-02-28 15:16:54.335 \N Force job radio law. Maybe soldier soldier. Model her t https://example.com/ 16912 442074 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6135076573046 0 \N \N f 0 \N 10 177326051 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 432814 2024-02-20 17:59:25.881 2024-02-20 18:09:27.374 \N Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base speci https://example.com/ 19668 432802 432759.432780.432788.432802.432814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.747006236130723 0 \N \N f 0 \N 2 245299913 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 432777 2024-02-20 17:39:54.399 2024-02-20 17:49:55.929 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nYour firm section wall hit seven. Rise modern bring it interesting a https://example.com/ 683 432259 432259.432777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4131825082207 0 \N \N f 0 \N 0 224744164 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 432802 2024-02-20 17:51:49.111 2024-02-20 18:01:50.947 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art ch https://example.com/ 16284 432788 432759.432780.432788.432802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.340594090319 0 \N \N f 0 \N 3 217422881 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 434993 2024-02-22 14:00:05.821 2024-02-22 14:00:11.953 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. D https://example.com/ 1985 434992 434992.434993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7293716557173 0 \N \N f 0 \N 0 47460960 0 f f \N \N \N \N 434992 \N 0 0 \N \N f \N 434864 2024-02-22 12:01:42.978 2024-02-22 12:11:44.03 \N Treatment dream at American often discussion. Whole light tr https://example.com/ 16447 434791 434791.434864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7482890418691 0 \N \N f 0 \N 2 90612703 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 432790 2024-02-20 17:45:39.4 2024-02-20 17:55:40.593 \N Lead between race contain politics. Base behavior su https://example.com/ 19284 432404 432404.432790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.315359148783 0 \N \N f 0 \N 0 65916363 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 432818 2024-02-20 18:02:05.247 2024-02-20 18:12:06.462 \N Against involve https://example.com/ 11328 432391 432344.432391.432818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4889610549151 0 \N \N f 0 \N 0 15327053 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439038 2024-02-26 10:11:05.771 2024-02-26 10:21:07.097 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration near https://example.com/ 9352 439016 438936.439016.439038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.04082257255352 0 \N \N f 0 \N 0 46515401 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432749 2024-02-20 17:21:56.583 2024-02-20 17:31:57.963 \N End https://example.com/ 3439 432467 432467.432749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.60544017023447 0 \N \N f 0 \N 1 216284922 0 f f \N \N \N \N 432467 \N 0 0 \N \N f \N 434985 2024-02-22 13:54:04.286 2024-02-22 14:13:55.976 \N North beat realize. https://example.com/ 18393 434720 434498.434720.434985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8989460198773 0 \N \N f 0 \N 0 156473112 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 435020 2024-02-22 14:17:26.091 2024-02-22 14:27:27.934 \N Structure ever film speech along somebody. Member range than among choose bit. This million six red ability picture https://example.com/ 17976 434931 434931.435020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1382933228611 0 \N \N f 0 \N 0 52543123 0 f f \N \N \N \N 434931 \N 0 0 \N \N f \N 438995 2024-02-26 09:15:51.374 2024-02-26 09:25:52.606 \N American argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power fiel https://example.com/ 7966 438936 438936.438995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7779422431456 0 \N \N f 0 \N 10 90765194 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432825 2024-02-20 18:03:52.256 2024-02-20 18:13:53.323 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. https://example.com/ 20647 432762 432344.432669.432718.432762.432825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52842922172204 0 \N \N f 0 \N 0 30469933 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438800 2024-02-26 01:20:34.29 2024-02-26 01:30:35.407 \N House west amount. Again high already himself answer type. Go back Mr. Pattern wat https://example.com/ 9078 438486 438486.438800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8182090372241 0 \N \N f 0 \N 4 138546002 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 432816 2024-02-20 18:01:13.853 2024-02-20 18:11:15.61 \N Because fear practi https://example.com/ 1478 432619 432619.432816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3829320472103 0 \N \N f 0 \N 1 242906719 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 434661 2024-02-22 07:51:53.587 2024-02-22 08:01:56.177 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any https://example.com/ 14213 433833 433833.434661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.067160847803 0 \N \N f 0 \N 1 52797590 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 438861 2024-02-26 03:42:50.322 2024-02-26 03:52:51.579 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence b https://example.com/ 11298 438764 438764.438861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9897257740795 0 \N \N f 0 \N 0 146613723 0 f f \N \N \N \N 438764 \N 0 0 \N \N f \N 432430 2024-02-20 12:48:14.473 2024-02-20 12:58:15.518 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group mater https://example.com/ 14202 432135 432135.432430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4925953910896 0 \N \N f 0 \N 0 85674796 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 432800 2024-02-20 17:51:25.422 2024-02-20 18:01:26.341 Key stuff company t Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature. https://example.com/ 21591 \N 432800 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.90668004848303 0 \N \N f 0 \N 0 199669872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432827 2024-02-20 18:05:21.816 2024-02-20 18:15:23.143 \N Thank rule physical trip attorney staff vote reach. Ef https://example.com/ 9339 432816 432619.432816.432827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3485500053621 0 \N \N f 0 \N 0 153967260 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432726 2024-02-20 17:04:35.493 2024-02-20 17:14:37.069 \N Affect key her. Development create daugh https://example.com/ 12024 432681 432619.432681.432726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0810028889375 0 \N \N f 0 \N 2 12988368 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432830 2024-02-20 18:06:26.658 2024-02-20 18:16:28.072 \N Guy help book. Senior activity environment. Party take she two. Describe https://example.com/ 20871 430725 430725.432830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.710844479308 0 \N \N f 0 \N 0 230673200 0 f f \N \N \N \N 430725 \N 0 0 \N \N f \N 432391 2024-02-20 11:56:49.203 2024-02-20 12:06:50.868 \N If put nothing put pick future doctor. Push cl https://example.com/ 21422 432344 432344.432391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67102674077682 0 \N \N f 0 \N 1 220210740 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432805 2024-02-20 17:53:25.685 2024-02-20 18:03:27.402 \N Human since term seek. Easy move guess br https://example.com/ 15119 432726 432619.432681.432726.432805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.45596823291211 0 \N \N f 0 \N 1 159025244 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432752 2024-02-20 17:23:09.929 2024-02-20 17:33:11.033 Remember draw realize. Include soon my person involve Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation. https://example.com/ 16876 \N 432752 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5863263684453 0 \N \N f 0 \N 1 19606882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432832 2024-02-20 18:07:21.463 2024-02-20 18:17:22.467 Raise land together Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police. https://example.com/ 21051 \N 432832 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6773600384017 0 \N \N f 0 \N 0 104275674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432824 2024-02-20 18:03:51.372 2024-02-20 18:13:52.708 \N Chance https://example.com/ 1136 432805 432619.432681.432726.432805.432824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8006792315707 0 \N \N f 0 \N 0 61613363 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432821 2024-02-20 18:02:49.109 2024-02-20 18:12:50.124 \N Pull fac https://example.com/ 11477 432808 432428.432808.432821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5119961577038 0 \N \N f 0 \N 0 19793097 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 432823 2024-02-20 18:02:53.034 2024-02-20 18:12:54.157 \N Field eat man but religious close. Sort vote hair travel. Wonder caus https://example.com/ 9992 432705 432705.432823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8352046354884 0 \N \N f 0 \N 0 48943784 0 f f \N \N \N \N 432705 \N 0 0 \N \N f \N 438984 2024-02-26 08:37:20.395 2024-02-26 09:01:46.325 \N Would role them war https://example.com/ 17693 438800 438486.438800.438984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6929897236905 0 \N \N f 0 \N 0 61029099 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 432681 2024-02-20 16:35:28.291 2024-02-20 16:45:29.276 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself g https://example.com/ 19335 432619 432619.432681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8737920854373 0 \N \N f 0 \N 5 6135466 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432839 2024-02-20 18:14:25.089 2024-02-20 18:24:26.082 \N Beyond new strong important. Final sport thus physical situati https://example.com/ 20291 432670 432670.432839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5188637530621 0 \N \N f 0 \N 0 70623762 0 f f \N \N \N \N 432670 \N 0 0 \N \N f \N 432669 2024-02-20 16:30:29.567 2024-02-20 16:40:31.166 \N Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character https://example.com/ 635 432344 432344.432669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4770465693681 0 \N \N f 0 \N 5 179583467 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432722 2024-02-20 17:03:00.053 2024-02-20 17:13:01.34 Onto although Democrat mind significant trade Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic. https://example.com/ 1584 \N 432722 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.981797117206 0 \N \N f 0 \N 0 211133144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432842 2024-02-20 18:18:06.675 2024-02-20 18:28:08.452 \N Far clearly possible enter. Turn safe position thought pressure significa https://example.com/ 21044 432323 432269.432305.432318.432323.432842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7482107925573 0 \N \N f 0 \N 0 141629175 0 f f \N \N \N \N 432269 \N 0 0 \N \N f \N 432829 2024-02-20 18:05:57.062 2024-02-20 18:15:58.397 \N Gas evening morning do of. Development executive like short p https://example.com/ 19132 432517 432517.432829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3970072826628 0 \N \N f 0 \N 1 55762851 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 432838 2024-02-20 18:13:43.618 2024-02-20 18:23:44.619 \N Top however address today. Century human land prove should. Executive develop market PM sea https://example.com/ 16284 431241 431241.432838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.265969978694 0 \N \N f 0 \N 0 213137704 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 431241 2024-02-19 18:18:49.526 2024-02-19 18:28:50.835 Finally Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose. https://example.com/ 12821 \N 431241 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 11.193380272009 0 \N \N f 0 \N 4 209585797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438986 2024-02-26 08:45:20.381 2024-02-26 08:55:22.863 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nScientist light the everything find window issue. Money space might woman. Nor music citizen https://example.com/ 18449 438794 438794.438986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8276116733824 0 \N \N f 0 \N 0 224377773 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432762 2024-02-20 17:32:48.609 2024-02-20 17:42:49.84 \N According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill https://example.com/ 7772 432718 432344.432669.432718.432762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8797568041166 0 \N \N f 0 \N 2 217717178 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432810 2024-02-20 17:56:15.813 2024-02-20 18:06:17.529 \N Suffer same investment. Finish play also acco https://example.com/ 2640 432736 432736.432810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06011895868097 0 \N \N f 0 \N 0 81090402 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432835 2024-02-20 18:09:57.543 2024-02-20 18:19:58.825 Plant ever Republican together picture. What nearly pattern Congress according Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group. https://example.com/ 1465 \N 432835 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 27.5191132865669 0 \N \N f 0 \N 0 15193022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434637 2024-02-22 07:08:14.954 2024-02-22 07:18:17.127 Industry great onto trial wind. Rule radio trial she its understand. Soon think Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave dee https://example.com/ 1060 \N 434637 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.1979194007282 0 \N \N f 0 \N 3 180606337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433201 2024-02-20 23:47:18.708 2024-02-20 23:57:19.88 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nCareer s https://example.com/ 19117 432981 432977.432981.433201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6148327477701 0 \N \N f 0 \N 2 33742544 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 438711 2024-02-25 22:11:20.495 2024-02-25 22:21:22.836 \N Material arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nPower herself life always. Specific but learn its medical. Fill https://example.com/ 7772 438670 438670.438711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.655921732375 0 \N \N f 0 \N 1 65899740 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 438989 2024-02-26 09:01:38.799 2024-02-26 09:11:40.428 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. B https://example.com/ 18380 438711 438670.438711.438989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0965871167571 0 \N \N f 0 \N 0 205425348 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 438988 2024-02-26 09:00:28.904 2024-02-26 09:10:30.966 \N Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situatio https://example.com/ 9332 438737 438737.438988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3190165857444 0 \N \N f 0 \N 0 37276544 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432840 2024-02-20 18:15:56.445 2024-02-20 18:25:57.768 Them response usually tax tax. Marriage check app Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common. https://example.com/ 7766 \N 432840 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 29.1543926515584 0 \N \N f 0 \N 0 229457708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432845 2024-02-20 18:20:05.765 2024-02-20 18:30:07.715 Walk apply partner stage. Stuff western rich impact single read serious. Nat Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once. https://example.com/ 16839 \N 432845 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.4368544099985 0 \N \N f 0 \N 0 98583144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439008 2024-02-26 09:43:59.173 2024-02-26 09:54:00.47 \N Fil https://example.com/ 7675 438896 438812.438896.439008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4423142398707 0 \N \N f 0 \N 0 137169506 0 f f \N \N \N \N 438812 \N 0 0 \N \N f \N 432855 2024-02-20 18:28:12.244 2024-02-20 18:38:13.607 \N Bank one body pull the expect. Issue play w https://example.com/ 18170 432152 432113.432146.432152.432855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.10417956859996 0 \N \N f 0 \N 0 228020899 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 432152 2024-02-20 03:44:43.043 2024-02-20 03:54:43.861 \N In grow start way president as compare. Away perform law social research front soon. Own ru https://example.com/ 20551 432146 432113.432146.432152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6588546524989 0 \N \N f 0 \N 2 200225019 0 f f \N \N \N \N 432113 \N 0 0 \N \N f \N 432860 2024-02-20 18:30:55 2024-02-20 18:40:56.382 \N Site co https://example.com/ 802 432858 432856.432858.432860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95189701327125 0 \N \N f 0 \N 0 104281948 0 f f \N \N \N \N 432856 \N 0 0 \N \N f \N 432854 2024-02-20 18:27:42.799 2024-02-20 18:37:43.661 \N Inside nor professional partner new design machine. Fire occur leave image t https://example.com/ 7989 432811 432811.432854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.579638210734 0 \N \N f 0 \N 3 235653722 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 438827 2024-02-26 02:47:56.297 2024-02-26 02:57:58.236 \N Industry great onto trial wind. Rule radio trial she its understand. Soon th https://example.com/ 6335 438093 438093.438827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4158946835137 0 \N \N f 0 \N 0 19902675 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 432828 2024-02-20 18:05:34.748 2024-02-20 18:15:36.067 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind neces https://example.com/ 902 432814 432759.432780.432788.432802.432814.432828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.386516371963 0 \N \N f 0 \N 1 119948996 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 438748 2024-02-25 23:47:59.853 2024-02-25 23:58:01.345 \N Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out https://example.com/ 20788 438718 438718.438748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49647425967459 0 \N \N f 0 \N 1 66321236 0 f f \N \N \N \N 438718 \N 0 0 \N \N f \N 444057 2024-02-29 18:47:40.055 2024-02-29 18:57:41.932 \N Recent yourself p https://example.com/ 4079 443786 443545.443753.443786.444057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09457147727579 0 \N \N f 0 \N 0 214982120 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 438477 2024-02-25 17:35:36.446 2024-02-25 17:45:38.162 \N Give business wind base magazine method trade. Reduce main speak create. Military official issue car peop https://example.com/ 10549 438471 438438.438442.438471.438477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1206976283957 0 \N \N f 0 \N 2 75054449 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 438028 2024-02-25 08:47:15.127 2024-02-25 08:57:16.463 Top however address today. Century human land prove s Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth https://example.com/ 1602 \N 438028 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 29.7469438927147 0 \N \N f 0 \N 1 76591956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432833 2024-02-20 18:07:43.643 2024-02-20 18:17:44.608 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allo https://example.com/ 19043 432828 432759.432780.432788.432802.432814.432828.432833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.37471830321395 0 \N \N f 0 \N 0 145674351 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 432846 2024-02-20 18:20:11.545 2024-02-20 18:30:12.799 \N Recent yourself price regio https://example.com/ 1618 432761 432344.432667.432761.432846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7807017833055 0 \N \N f 0 \N 1 240653739 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432843 2024-02-20 18:19:04.951 2024-02-20 18:29:06.044 Involve morning someone them Congress keep rule. Order price con Go game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nFar clearly possible enter. Turn safe position thought pressure significant capital. To https://example.com/ 6777 \N 432843 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.1973431371987 0 \N \N f 0 \N 0 51200357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438106 2024-02-25 11:16:24.339 2024-02-25 11:26:27.039 Republican total impact of. North o Area just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand part https://example.com/ 5293 \N 438106 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.38084306591269 0 \N \N f 0 \N 3 153700539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435006 2024-02-22 14:07:01.271 2024-02-22 14:17:04.246 \N Chance near song measure eve https://example.com/ 5703 435002 435002.435006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7400338501562 0 \N \N f 0 \N 2 125143995 0 f f \N \N \N \N 435002 \N 0 0 \N \N f \N 439001 2024-02-26 09:34:20.605 2024-02-26 09:44:21.723 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especi https://example.com/ 9276 438917 281307.281336.281505.281533.282421.282449.282453.284152.284210.284394.437922.438707.438917.439001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22711934718825 0 \N \N f 0 \N 0 150362352 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 432868 2024-02-20 18:33:38.554 2024-02-20 18:43:40.319 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particul https://example.com/ 20454 432764 432311.432635.432764.432868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.277888957350534 0 \N \N f 0 \N 0 159908521 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432904 2024-02-20 19:03:02.384 2024-02-20 19:13:04.469 \N Life foot administration huge discover. Few ric https://example.com/ 13587 432899 432899.432904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5510449627152 0 \N \N f 0 \N 1 65090534 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 432693 2024-02-20 16:43:09.829 2024-02-20 16:53:10.813 \N Pass gla https://example.com/ 20973 432661 432661.432693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0663441416788 0 \N \N f 0 \N 0 107390785 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432861 2024-02-20 18:31:39.051 2024-02-20 18:41:40.131 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in i https://example.com/ 13759 429291 429291.432861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.37524263651451 0 \N \N f 0 \N 0 202293565 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 432841 2024-02-20 18:17:14.253 2024-02-20 18:27:15.33 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single re https://example.com/ 1298 432748 432344.432667.432748.432841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4385435584475 0 \N \N f 0 \N 1 188932391 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432748 2024-02-20 17:21:39.2 2024-02-20 17:31:41.062 \N Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least https://example.com/ 1737 432667 432344.432667.432748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.914299084856 0 \N \N f 0 \N 2 125384022 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432867 2024-02-20 18:33:36.89 2024-02-20 18:43:38.298 Describe modern fu Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur. https://example.com/ 17517 \N 432867 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9357441734672 0 \N \N f 0 \N 2 140575739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432849 2024-02-20 18:26:30.911 2024-02-20 18:36:32.383 Right side resource get. Result south firm special. Popular it operat Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though. https://example.com/ 1114 \N 432849 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.667168615642488 0 \N \N f 0 \N 1 165527049 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432858 2024-02-20 18:29:33.987 2024-02-20 18:39:35.863 \N Effect indeed easy never instead even force. Economy use rule real others. St https://example.com/ 4984 432856 432856.432858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6674256502409 0 \N \N f 0 \N 1 38055312 0 f f \N \N \N \N 432856 \N 0 0 \N \N f \N 432850 2024-02-20 18:26:44.288 2024-02-20 18:36:45.603 \N Event https://example.com/ 16042 432344 432344.432850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26546223621786 0 \N \N f 0 \N 0 48545037 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432864 2024-02-20 18:32:37.853 2024-02-20 18:42:38.97 \N Edge lot space military without many term others. Religious wear econo https://example.com/ 18454 432854 432811.432854.432864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.69232319074787 0 \N \N f 0 \N 2 176820225 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432856 2024-02-20 18:28:12.705 2024-02-20 18:38:13.693 Likely natural ahead focus. School our training everybody but Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget. https://example.com/ 2844 \N 432856 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 21.4294770633925 0 \N \N f 0 \N 2 41635267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432866 2024-02-20 18:33:30.238 2024-02-20 18:43:31.592 \N Who collection suggest practice. Walk them Republican. A https://example.com/ 2444 432836 432811.432836.432866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8021538481973 0 \N \N f 0 \N 0 216227093 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432876 2024-02-20 18:41:11.881 2024-02-20 18:51:13.027 \N Although thought fall today protect ago. Able institution offer authority best t https://example.com/ 6164 432865 432848.432865.432876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0614588229329 0 \N \N f 0 \N 0 84213952 0 f f \N \N \N \N 432848 \N 0 0 \N \N f \N 432892 2024-02-20 18:57:03.074 2024-02-20 19:07:04.174 \N Point box near. Affect glass next behavior chair week fl https://example.com/ 21371 432661 432661.432892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.86032504274395 0 \N \N f 0 \N 0 118147218 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432851 2024-02-20 18:26:50.532 2024-02-20 18:36:52.059 \N Deal probably https://example.com/ 12561 432841 432344.432667.432748.432841.432851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.22693950108954 0 \N \N f 0 \N 0 191205444 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432667 2024-02-20 16:29:14.26 2024-02-20 16:39:15.413 \N Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nHit decade n https://example.com/ 14990 432344 432344.432667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4153372281302 0 \N \N f 0 \N 6 37127870 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432852 2024-02-20 18:27:00.339 2024-02-20 18:37:01.143 \N Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything s https://example.com/ 9150 432849 432849.432852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23204216536075 0 \N \N f 0 \N 0 227198508 0 f f \N \N \N \N 432849 \N 0 0 \N \N f \N 438752 2024-02-25 23:50:33.792 2024-02-26 00:00:35.199 \N Republican begin audience guy get e https://example.com/ 12721 438747 438414.438434.438747.438752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2552942910841 0 \N \N f 0 \N 0 52028763 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 438852 2024-02-26 03:26:47.643 2024-02-26 03:36:50.502 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic alth https://example.com/ 7818 438846 438794.438846.438852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4772134002066 0 \N \N f 0 \N 0 125949632 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432878 2024-02-20 18:42:16.144 2024-02-20 18:52:17.547 \N Live https://example.com/ 13217 432257 432257.432878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8476620564761 0 \N \N f 0 \N 0 226103940 0 f f \N \N \N \N 432257 \N 0 0 \N \N f \N 431081 2024-02-19 17:32:22.737 2024-02-19 17:42:24.268 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach c https://example.com/ 2942 430626 430626.431081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0517482068374 0 \N \N f 0 \N 1 135677030 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 439006 2024-02-26 09:42:10.013 2024-02-26 09:52:11.048 \N Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include net https://example.com/ 16194 438968 438670.438680.438968.439006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1854266470429 0 \N \N f 0 \N 0 248649161 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 432834 2024-02-20 18:09:18.813 2024-02-20 18:19:19.809 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise https://example.com/ 703 432811 432811.432834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.118539560862 0 \N \N f 0 \N 4 37482599 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432883 2024-02-20 18:45:43.674 2024-02-20 18:55:45.013 East fast despite responsibility machine. Listen mean about since. Ba Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management. https://example.com/ 4502 \N 432883 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 28.9002907727907 0 \N \N f 0 \N 0 160668200 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432862 2024-02-20 18:31:44.837 2024-02-20 18:41:46.22 \N Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speec https://example.com/ 13903 432834 432811.432834.432862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.37302205812797 0 \N \N f 0 \N 1 80151948 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432885 2024-02-20 18:46:51.292 2024-02-20 18:56:52.61 \N Wrong according some him. Foot color analysis send while wife return. https://example.com/ 21556 432875 432344.432491.432875.432885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2029283635314 0 \N \N f 0 \N 0 45661179 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 435001 2024-02-22 14:05:39.946 2024-02-22 14:15:41.122 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Lev https://example.com/ 20588 434665 434665.435001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03098047647969 0 \N \N f 0 \N 0 89485687 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 432874 2024-02-20 18:38:05.794 2024-02-20 18:48:06.91 \N Blood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight publi https://example.com/ 15762 432848 432848.432874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.08054913176126 0 \N \N f 0 \N 1 166316035 0 f f \N \N \N \N 432848 \N 0 0 \N \N f \N 438896 2024-02-26 05:17:29.2 2024-02-26 05:27:30.216 \N Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume https://example.com/ 20816 438812 438812.438896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8860623271691 0 \N \N f 0 \N 1 225347754 0 f f \N \N \N \N 438812 \N 0 0 \N \N f \N 432879 2024-02-20 18:43:06.055 2024-02-20 18:53:07.592 \N Respond even https://example.com/ 20573 432257 432257.432879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0339346079518066 0 \N \N f 0 \N 0 74715560 0 f f \N \N \N \N 432257 \N 0 0 \N \N f \N 432853 2024-02-20 18:27:32.78 2024-02-20 18:37:34.435 \N Purpose age cover machine. Must individual hot begin figure threat discu https://example.com/ 21332 432834 432811.432834.432853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9994109842421 0 \N \N f 0 \N 1 127157275 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432781 2024-02-20 17:42:42.445 2024-02-20 17:52:43.479 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let rec https://example.com/ 20133 432560 432560.432781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1986368194904 0 \N \N f 0 \N 0 140247537 0 f f \N \N \N \N 432560 \N 0 0 \N \N f \N 432257 2024-02-20 08:59:07.887 2024-02-20 09:09:09.558 Consumer point treat task. Shake bill player Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Fac https://example.com/ 1802 \N 432257 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 17.5376842140905 0 \N \N f 0 \N 3 208168787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432875 2024-02-20 18:39:56.669 2024-02-20 18:49:58.04 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nOut quite dif https://example.com/ 19841 432491 432344.432491.432875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.31579783527 0 \N \N f 0 \N 1 212750891 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432869 2024-02-20 18:34:00.322 2024-02-20 18:44:01.591 \N Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer fe https://example.com/ 20563 432867 432867.432869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9489606326524 0 \N \N f 0 \N 0 102877422 0 f f \N \N \N \N 432867 \N 0 0 \N \N f \N 432880 2024-02-20 18:43:10.389 2024-02-20 18:53:11.594 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per st https://example.com/ 20619 432874 432848.432874.432880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4012088863349 0 \N \N f 0 \N 0 121505840 0 f f \N \N \N \N 432848 \N 0 0 \N \N f \N 432831 2024-02-20 18:06:58.601 2024-02-20 18:16:59.818 Main ball collection eye. Whatever test player carry. Tree ok always. Student Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late. https://example.com/ 698 \N 432831 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1455762705346 0 \N \N f 0 \N 0 126051252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432897 2024-02-20 19:00:46.727 2024-02-20 19:10:48.377 Again trade author cultural task. Deep day cost. Soldier prepare say car Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose. https://example.com/ 16149 \N 432897 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.2739721141678 0 \N \N f 0 \N 0 247327211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438829 2024-02-26 02:57:24.673 2024-02-26 03:07:26.901 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nLeave example grow lead something still after. Happy wor https://example.com/ 10728 438828 438794.438828.438829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3078704211163 0 \N \N f 0 \N 3 219439348 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432893 2024-02-20 18:57:22.898 2024-02-20 19:07:24.322 \N Before appear girl save technology. When speech on everyone traditional. Every left https://example.com/ 15271 432882 432311.432635.432686.432882.432893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9617518217438 0 \N \N f 0 \N 2 243911266 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432917 2024-02-20 19:18:15.974 2024-02-20 19:28:49.217 \N Serious stay girl enter. His investment develop media ou https://example.com/ 1047 432910 432889.432894.432910.432917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3935609634278 0 \N \N f 0 \N 0 102612078 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 434339 2024-02-21 22:01:33.722 2024-02-21 22:11:35.339 \N There everybody fish can. Exactly offic https://example.com/ 17714 434333 434317.434333.434339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9804941812272 0 \N \N f 0 \N 0 98521018 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 432871 2024-02-20 18:35:00.433 2024-02-20 18:45:01.311 \N Ne https://example.com/ 18169 432661 432661.432871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.75259052931406 0 \N \N f 0 \N 1 187483979 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432891 2024-02-20 18:56:27.013 2024-02-20 19:06:28.176 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. https://example.com/ 18989 432871 432661.432871.432891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6058421038169 0 \N \N f 0 \N 0 80135035 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 432895 2024-02-20 18:59:10.493 2024-02-20 19:09:11.648 \N That very sister attention m https://example.com/ 9820 432811 432811.432895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86189691340824 0 \N \N f 0 \N 0 107896523 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 383888 2024-01-10 20:58:49.649 2024-01-10 21:08:51.851 \N Smile debate least force simply discover f https://example.com/ 21421 383494 383302.383309.383494.383888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5931667574057 0 \N \N f 0 \N 0 22853253 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 434444 2024-02-22 00:45:00.345 2024-02-22 00:55:01.517 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find cen https://example.com/ 21373 434442 434278.434298.434310.434411.434435.434439.434442.434444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8590244522108 0 \N \N f 0 \N 3 240406620 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433994 2024-02-21 17:07:53.345 2024-02-21 17:17:54.758 \N Many soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point hom https://example.com/ 18313 433985 433038.433343.433346.433925.433930.433941.433948.433970.433985.433994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3637050328647 0 \N \N f 0 \N 4 115100320 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 433038 2024-02-20 21:17:44.021 2024-02-20 21:27:46.564 If lose particular record natural camera good. Season serve someone leg b Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nKnow son futu https://example.com/ 19888 \N 433038 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 17.7587812522752 0 \N \N f 0 \N 13 76177763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433941 2024-02-21 16:37:44.421 2024-02-21 16:47:45.44 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nDetermine magazine police agent billion. Head great exist. A https://example.com/ 5427 433930 433038.433343.433346.433925.433930.433941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5285812429061 0 \N \N f 0 \N 8 176717490 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 432896 2024-02-20 19:00:38.154 2024-02-20 19:10:39.263 \N Member car law politics in. Blu https://example.com/ 19030 432884 432884.432896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3724556956462 0 \N \N f 0 \N 0 183819906 0 f f \N \N \N \N 432884 \N 0 0 \N \N f \N 433343 2024-02-21 03:34:44.369 2024-02-21 03:44:45.818 \N Say this find practice. Small exactly explain from born draw. Stop https://example.com/ 5522 433038 433038.433343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8308928686678 0 \N \N f 0 \N 12 39835226 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 432908 2024-02-20 19:06:39.017 2024-02-20 19:16:40.384 \N Very yes customer public music example expert. https://example.com/ 13843 432903 432899.432903.432908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.848226451246 0 \N \N f 0 \N 0 183538989 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 434095 2024-02-21 17:58:47.114 2024-02-21 18:08:48.492 \N Focus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nGame during everybody only among. Exactly situation adult medical h https://example.com/ 13921 434019 433978.434019.434095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1576279281137 0 \N \N f 0 \N 5 200182936 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 432907 2024-02-20 19:06:16.333 2024-02-20 19:16:17.672 \N That field beautiful American when. Simply qu https://example.com/ 5195 432904 432899.432904.432907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3366447907039 0 \N \N f 0 \N 0 14649653 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 433978 2024-02-21 16:58:55.304 2024-02-21 17:08:56.527 Experience base structure our question Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nPolicy trade before drop particular up https://example.com/ 18673 \N 433978 \N \N \N \N \N \N \N \N history \N ACTIVE \N 5.55150471828988 0 \N \N f 0 \N 14 137094989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432903 2024-02-20 19:02:48.309 2024-02-20 19:12:49.439 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin https://example.com/ 7989 432899 432899.432903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7175018138428 0 \N \N f 0 \N 1 202669643 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 434019 2024-02-21 17:22:09.388 2024-02-21 17:32:11.358 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throu https://example.com/ 16348 433978 433978.434019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7008354087203 0 \N \N f 0 \N 7 4271476 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434451 2024-02-22 00:54:09.294 2024-02-22 01:04:10.362 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town bl https://example.com/ 1632 434444 434278.434298.434310.434411.434435.434439.434442.434444.434451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4685667405919 0 \N \N f 0 \N 2 39389232 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 432900 2024-02-20 19:02:19.576 2024-02-20 19:12:20.521 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. https://example.com/ 4831 432898 432736.432793.432796.432898.432900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93911549539366 0 \N \N f 0 \N 0 144309305 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432912 2024-02-20 19:09:53.046 2024-02-20 19:19:54.692 \N End and certainly language lawyer her sort. Attentio https://example.com/ 19864 432889 432889.432912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5155486551335 0 \N \N f 0 \N 2 122755608 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 438971 2024-02-26 08:02:43.606 2024-02-26 08:12:44.509 \N Tend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority poli https://example.com/ 17800 438718 438718.438971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.03864643064728 0 \N \N f 0 \N 0 220883908 0 f f \N \N \N \N 438718 \N 0 0 \N \N f \N 439000 2024-02-26 09:33:16.07 2024-02-26 09:43:17.674 \N Often culture through program https://example.com/ 8726 438993 438936.438993.439000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.166828659753 0 \N \N f 0 \N 0 85609138 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 438724 2024-02-25 22:49:46.951 2024-02-25 22:59:48.377 \N Take discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election https://example.com/ 9863 438718 438718.438724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30937293545718 0 \N \N f 0 \N 0 125607872 0 f f \N \N \N \N 438718 \N 0 0 \N \N f \N 432905 2024-02-20 19:03:14.537 2024-02-20 19:13:15.582 \N Check worry radio fine stuff. Lead least wall course https://example.com/ 11873 432736 432736.432905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1108049017113 0 \N \N f 0 \N 3 126521982 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 438754 2024-02-25 23:53:36.077 2024-02-26 00:03:37.003 \N Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more wo https://example.com/ 21624 438718 438718.438754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.017329866292 0 \N \N f 0 \N 0 212063681 0 f f \N \N \N \N 438718 \N 0 0 \N \N f \N 434442 2024-02-22 00:35:25.219 2024-02-22 00:45:27.132 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nAlso weight particular less https://example.com/ 10981 434439 434278.434298.434310.434411.434435.434439.434442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.779839893334575 0 \N \N f 0 \N 4 175623677 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 432525 2024-02-20 14:36:25.806 2024-02-20 14:46:27.457 \N Long management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too spec https://example.com/ 21131 432311 432311.432525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19747251570722 0 \N \N f 0 \N 0 98381581 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 442074 2024-02-28 14:45:51.711 2024-02-28 14:55:54.012 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nTell difference pattern c https://example.com/ 16956 441989 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7243242690876 0 \N \N f 0 \N 11 223291543 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 432931 2024-02-20 19:36:56.441 2024-02-20 19:46:57.783 \N West tend alone https://example.com/ 9874 432310 432153.432310.432931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77019622093806 0 \N \N f 0 \N 0 9914277 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 441668 2024-02-28 10:44:21.939 2024-02-28 10:54:24.592 \N Debate property life amount https://example.com/ 4345 441579 440587.440629.441187.441579.441668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4512774456077 0 \N \N f 0 \N 27 249232622 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 434439 2024-02-22 00:30:28.323 2024-02-22 00:40:29.469 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe https://example.com/ 3353 434435 434278.434298.434310.434411.434435.434439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.631797008275115 0 \N \N f 0 \N 6 239208891 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434435 2024-02-22 00:27:06.259 2024-02-22 00:37:06.971 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nConcern positio https://example.com/ 21509 434411 434278.434298.434310.434411.434435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.76306651309162 0 \N \N f 0 \N 7 65712422 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 438434 2024-02-25 16:50:23.644 2024-02-25 17:00:25.236 \N American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. https://example.com/ 21463 438414 438414.438434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7099707492583 0 \N \N f 0 \N 2 170238538 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 432916 2024-02-20 19:17:46.79 2024-02-20 19:28:48.381 \N Police https://example.com/ 848 432826 432428.432605.432791.432826.432916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8883966125057 0 \N \N f 0 \N 0 129325044 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 432911 2024-02-20 19:08:44.773 2024-02-20 19:18:46.267 Before evening her visit bag building grow Ever small reduce evidence quickly https://example.com/ 16670 \N 432911 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.4627923982691 0 \N \N f 0 \N 0 182269318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444065 2024-02-29 18:54:06.906 2024-02-29 19:04:07.886 Republican total impact of. North office pa State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base. https://example.com/ 1584 \N 444065 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.4994159673998 0 \N \N f 0 \N 6 113356466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444069 2024-02-29 18:57:00.256 2024-02-29 19:07:02.124 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate b https://example.com/ 2156 444068 444068.444069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.03321426807349 0 \N \N f 0 \N 0 101221777 0 f f \N \N \N \N 444068 \N 0 0 \N \N f \N 432901 2024-02-20 19:02:40.384 2024-02-20 19:12:41.805 \N Several follow value modern safe information well your. Meet cour https://example.com/ 1618 432837 432736.432837.432901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36679011414886 0 \N \N f 0 \N 1 91408639 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432915 2024-02-20 19:17:41.372 2024-02-20 19:28:41.889 Never Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote. https://example.com/ 3683 \N 432915 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 23.0082190167872 0 \N \N f 0 \N 0 163186573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438469 2024-02-25 17:29:09.924 2024-02-25 17:39:10.924 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nAlthough thought fall today protect ago. Able institution offer authority best traditional atten https://example.com/ 21148 438414 438414.438469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3699022967067 0 \N \N f 0 \N 1 109482606 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 438940 2024-02-26 07:32:19.147 2024-02-26 07:42:20.819 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year https://example.com/ 8423 438931 438794.438931.438940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86511206985344 0 \N \N f 0 \N 2 48262027 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 438836 2024-02-26 03:07:31.806 2024-02-26 03:17:33.081 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body https://example.com/ 16270 438835 438794.438828.438829.438835.438836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9620922069 0 \N \N f 0 \N 1 93974892 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 438835 2024-02-26 03:04:53.935 2024-02-26 03:14:54.908 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel https://example.com/ 19147 438829 438794.438828.438829.438835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1462753666736 0 \N \N f 0 \N 2 67497028 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432267 2024-02-20 09:22:03.772 2024-02-20 09:32:04.775 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem grea https://example.com/ 16660 431401 431401.432267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2113251360903 0 \N \N f 0 \N 0 156365976 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 373999 2024-01-02 02:00:55.465 2024-01-02 02:10:56.59 Fact theory worr Enough book hope yard store together camera scene. Ag https://example.com/ 6578 \N 373999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5537107043067 0 \N \N f 0 \N 7 190893195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432944 2024-02-20 19:51:30.116 2024-02-20 20:01:30.876 Edge lot space military without many term others. Religious wear economy can Skin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair. https://example.com/ 19661 \N 432944 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 27.7356530551659 0 \N \N f 0 \N 2 10473885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434674 2024-02-22 08:20:42.866 2024-02-22 08:30:43.808 \N Many soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card rel https://example.com/ 7675 434665 434665.434674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2885261757255 0 \N \N f 0 \N 0 95487499 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 432918 2024-02-20 19:18:56.978 2024-02-20 19:28:58.47 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful qui https://example.com/ 1468 432914 432889.432912.432914.432918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.982818764323 0 \N \N f 0 \N 0 201913651 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 438858 2024-02-26 03:38:41.89 2024-02-26 03:48:43.365 \N Game during everybody only among. Exactly situation adult medical huge far. Hour in https://example.com/ 19471 438794 438794.438858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45752070586852 0 \N \N f 0 \N 1 87605830 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432826 2024-02-20 18:04:56.037 2024-02-20 18:14:57.377 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nGo effect true such such win https://example.com/ 2111 432791 432428.432605.432791.432826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8866653371612 0 \N \N f 0 \N 1 100453011 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 432791 2024-02-20 17:45:51.791 2024-02-20 17:55:53.095 \N Reach road deal especially down since ball score. Make either much h https://example.com/ 8535 432605 432428.432605.432791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9446405691746 0 \N \N f 0 \N 2 223637783 0 f f \N \N \N \N 432428 \N 0 0 \N \N f \N 438566 2024-02-25 18:55:21.533 2024-02-25 19:05:23.449 \N Speak street chance point. Blood most stay https://example.com/ 19449 438209 438209.438566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71210555338269 0 \N \N f 0 \N 1 152555751 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438481 2024-02-25 17:38:55.215 2024-02-25 17:48:55.67 \N Page economic language former television become https://example.com/ 21138 438209 438209.438481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.924645873556 0 \N \N f 0 \N 0 149700511 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438285 2024-02-25 14:12:42.094 2024-02-25 14:22:43.488 \N Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement wa https://example.com/ 1145 438276 438209.438211.438261.438264.438270.438276.438285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64448116755644 0 \N \N f 0 \N 1 77097264 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438270 2024-02-25 14:01:40.132 2024-02-25 14:11:42.328 \N East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold https://example.com/ 2718 438264 438209.438211.438261.438264.438270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6503184093092 0 \N \N f 0 \N 3 176566184 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432928 2024-02-20 19:32:58.324 2024-02-20 19:42:59.67 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as y https://example.com/ 8541 432924 432811.432924.432928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3401413513458 0 \N \N f 0 \N 0 36526947 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 438408 2024-02-25 16:10:28.73 2024-02-25 16:20:29.795 \N Center stand near long painting left sense. Employee hour position young. Simple school mat https://example.com/ 13204 438261 438209.438211.438261.438408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9692062414001 0 \N \N f 0 \N 6 180511177 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438456 2024-02-25 17:21:04.518 2024-02-25 17:31:06.061 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executiv https://example.com/ 18243 438395 438209.438211.438261.438375.438395.438456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.22004190634174 0 \N \N f 0 \N 0 176004346 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438395 2024-02-25 15:58:06.23 2024-02-25 16:08:07.845 \N Door wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficu https://example.com/ 20973 438375 438209.438211.438261.438375.438395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72686566100644 0 \N \N f 0 \N 1 123701190 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432923 2024-02-20 19:29:53.376 2024-02-20 19:39:54.803 \N Call economy candidate but https://example.com/ 900 432309 432309.432923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54440110592413 0 \N \N f 0 \N 0 26545748 0 f f \N \N \N \N 432309 \N 0 0 \N \N f \N 438471 2024-02-25 17:30:16.439 2024-02-25 17:40:17.755 \N Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tel https://example.com/ 1047 438442 438438.438442.438471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6605376490904 0 \N \N f 0 \N 3 61456660 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 374143 2024-01-02 06:12:26.259 2024-01-02 06:22:27.379 Should doctor pre Back https://example.com/ 14260 \N 374143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.70078986291676 0 \N \N f 0 \N 2 120448412 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438415 2024-02-25 16:22:46.427 2024-02-25 16:32:48.02 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democr https://example.com/ 4819 438410 438209.438211.438261.438408.438410.438415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9546398044258 0 \N \N f 0 \N 4 241178002 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432886 2024-02-20 18:49:35.724 2024-02-20 18:59:47.313 \N Onto although Democrat mind significant trad https://example.com/ 15273 432862 432811.432834.432862.432886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1035114828615 0 \N \N f 0 \N 0 88828634 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 438218 2024-02-25 13:14:56.001 2024-02-25 13:24:58.287 \N Throughout which address movie agree final. Current here few city opportunity. Think bank le https://example.com/ 17184 438214 438209.438211.438214.438218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4341013902492 0 \N \N f 0 \N 1 78081598 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432924 2024-02-20 19:30:20.065 2024-02-20 19:40:23.022 \N Any new necessary l https://example.com/ 18507 432811 432811.432924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.41506643381248 0 \N \N f 0 \N 1 164613553 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432935 2024-02-20 19:39:21.44 2024-02-20 19:49:23.206 \N Customer reach nice. At himself those always appear how. Court nice hard region conference https://example.com/ 19156 432893 432311.432635.432686.432882.432893.432935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.394733770522 0 \N \N f 0 \N 1 137561771 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 438214 2024-02-25 13:13:20.589 2024-02-25 13:23:22.056 \N Report night class. Fight PM that food. Event market ground both p https://example.com/ 4064 438211 438209.438211.438214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4505843099332 0 \N \N f 0 \N 2 162279361 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 438283 2024-02-25 14:10:05.78 2024-02-25 14:20:07.028 \N American argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple refl https://example.com/ 897 438209 438209.438283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3330168147998 0 \N \N f 0 \N 1 57676805 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 441707 2024-02-28 11:03:22.222 2024-02-28 11:13:24.408 \N Power bi https://example.com/ 21303 441701 441695.441701.441707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9080835086329 0 \N \N f 0 \N 0 223256545 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 438739 2024-02-25 23:35:01.179 2024-02-25 23:45:03.183 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportuni https://example.com/ 896 438209 438209.438739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9596454764643 0 \N \N f 0 \N 1 245248540 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 432717 2024-02-20 17:00:05.492 2024-02-20 17:00:10.572 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nWhose eye what surface. Leader use yet six despite memory front https://example.com/ 20370 432716 432716.432717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0514383644503 0 \N \N f 0 \N 0 118850699 0 f f \N \N \N \N 432716 \N 0 0 \N \N f \N 438665 2024-02-25 21:09:52.51 2024-02-25 21:19:55.77 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather https://example.com/ 20272 438209 438209.438665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16901387683473 0 \N \N f 0 \N 0 100228758 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 439017 2024-02-26 09:54:29.252 2024-02-26 10:04:30.903 \N Generation https://example.com/ 896 439011 439005.439011.439017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7332775148554 0 \N \N f 0 \N 0 13120231 0 f f \N \N \N \N 439005 \N 0 0 \N \N f \N 438496 2024-02-25 17:47:04.543 2024-02-25 17:57:06.385 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nDetail discus https://example.com/ 5129 438209 438209.438496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85643315279128 0 \N \N f 0 \N 1 149711628 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 439018 2024-02-26 09:55:57.414 2024-02-26 10:05:58.721 \N Per over executiv https://example.com/ 19333 438991 438991.439018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68557102798177 0 \N \N f 0 \N 0 231992843 0 f f \N \N \N \N 438991 \N 0 0 \N \N f \N 432929 2024-02-20 19:33:15.938 2024-02-20 19:43:16.705 \N Middle without school budget car Mrs paper. Sing seem list enough. Police standa https://example.com/ 8648 432889 432889.432929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2446214192376 0 \N \N f 0 \N 0 34304343 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 439011 2024-02-26 09:45:31.481 2024-02-26 09:55:32.856 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goa https://example.com/ 15474 439005 439005.439011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47621671891312 0 \N \N f 0 \N 3 242194710 0 f f \N \N \N \N 439005 \N 0 0 \N \N f \N 438438 2024-02-25 16:56:28.351 2024-02-25 17:06:30.54 Scientist its surface arrive world determine according. Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job. https://example.com/ 1319 \N 438438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3884000178501 0 \N \N f 0 \N 10 153760354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432716 2024-02-20 17:00:04.886 2024-02-20 17:10:06.897 Political official world difference. Whole \N https://example.com/ 12220 \N 432716 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.61447473958505 0 \N \N f 0 \N 1 17171667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378914 2024-01-06 14:19:18.391 2024-01-09 02:50:04.047 Recent yourself pri Thousand billion get leg now sort even. Growth much number https://example.com/ 19668 \N 378914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8936421684543 0 \N \N f 0 \N 3 106292014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439005 2024-02-26 09:39:06.775 2024-02-26 09:49:07.999 Family material upon Democrat. The remain appear information d Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop. https://example.com/ 19553 \N 439005 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.83300743455706 0 \N \N f 0 \N 5 129191286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438522 2024-02-25 18:09:25.064 2024-02-25 18:19:26.208 \N Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. https://example.com/ 18601 438106 438106.438522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9877628356297 0 \N \N f 0 \N 0 151544450 0 f f \N \N \N \N 438106 \N 0 0 \N \N f \N 439009 2024-02-26 09:44:15.245 2024-02-26 09:54:16.88 \N Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy pro https://example.com/ 15049 438936 438936.439009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5498359245284 0 \N \N f 0 \N 1 159161826 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 438451 2024-02-25 17:16:28.213 2024-02-25 17:26:29.68 Direction network employee only economi There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious ope https://example.com/ 21287 \N 438451 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.1708188591367 0 \N \N f 0 \N 5 19521672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432940 2024-02-20 19:43:40.855 2024-02-20 19:53:42.239 \N Religious leg forward yes project threat https://example.com/ 4378 432344 432344.432940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2568853400437 0 \N \N f 0 \N 0 82388061 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439012 2024-02-26 09:45:36.404 2024-02-26 09:55:38.583 \N Social impact learn single election send senior. Dog difference effect give issue. Change the https://example.com/ 17891 438480 438438.438442.438471.438477.438480.439012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1027879274502 0 \N \N f 0 \N 0 120709237 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 432822 2024-02-20 18:02:52.42 2024-02-20 18:12:54.16 Book ok power church man machine. Where stop customer street re Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nPast loss author a need give civil style. Also check h https://example.com/ 16867 \N 432822 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.3738727725852 0 \N \N f 0 \N 3 207649092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439020 2024-02-26 09:57:34.427 2024-02-26 10:07:36.949 \N Real late stop middle firm. https://example.com/ 13100 438993 438936.438993.439020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9104000908939 0 \N \N f 0 \N 0 140980092 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439023 2024-02-26 10:00:05.056 2024-02-26 10:00:10.139 \N Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street https://example.com/ 20511 439022 439022.439023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6634608077243 0 \N \N f 0 \N 0 128863190 0 f f \N \N \N \N 439022 \N 0 0 \N \N f \N 439022 2024-02-26 10:00:04.54 2024-02-26 10:10:06.724 Class population stage thou \N https://example.com/ 20201 \N 439022 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.59608859398099 0 \N \N f 0 \N 1 52085101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439035 2024-02-26 10:08:22.606 2024-02-26 10:18:24.796 \N Surface tree knowledge mean. Trade drop hope le https://example.com/ 2734 438607 438607.439035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3595333061836 0 \N \N f 0 \N 0 119850612 0 f f \N \N \N \N 438607 \N 0 0 \N \N f \N 442687 2024-02-28 20:45:21.476 2024-02-28 20:55:22.968 \N Set how recognize operation American. Account avo https://example.com/ 20370 442186 442179.442186.442687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3233688080433 0 \N \N f 0 \N 0 188059356 0 f f \N \N \N \N 442179 \N 0 0 \N \N f \N 439042 2024-02-26 10:15:17.375 2024-02-26 10:25:18.919 \N Just condition wide hit national cultural me. Student out past heart cell design study m https://example.com/ 16267 438993 438936.438993.439042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2816571442424 0 \N \N f 0 \N 0 230070163 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432603 2024-02-20 15:29:42.084 2024-02-20 15:39:43.591 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen amo https://example.com/ 9332 432584 432563.432576.432584.432603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.15542826686267 0 \N \N f 0 \N 1 32734077 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 439030 2024-02-26 10:07:29.645 2024-02-26 10:17:30.76 Support line change go must do. Small audience beautiful whether art. Draw wo Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually. https://example.com/ 18235 \N 439030 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.4049088520857 0 \N \N f 0 \N 0 179031604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439039 2024-02-26 10:11:27.82 2024-02-26 10:21:28.925 \N Smile debate least force simply discover far. Tr https://example.com/ 6360 439034 438946.438996.439034.439039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2772367653597 0 \N \N f 0 \N 3 40045845 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 438942 2024-02-26 07:34:37.347 2024-02-26 07:44:39.152 \N Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural profe https://example.com/ 21573 438794 438794.438942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9561404820326 0 \N \N f 0 \N 0 146726624 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 439019 2024-02-26 09:56:00.447 2024-02-26 10:06:02.749 \N Finally and may second. Middle want artist technology woman https://example.com/ 15103 438947 438946.438947.439019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.323120416596 0 \N \N f 0 \N 3 100751472 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432958 2024-02-20 19:57:21.111 2024-02-20 20:07:22.31 \N Look https://example.com/ 704 432910 432889.432894.432910.432958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1832135725192 0 \N \N f 0 \N 0 128007277 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 432884 2024-02-20 18:45:44.4 2024-02-22 12:18:27.174 Everyone usually Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air. https://example.com/ 19638 \N 432884 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 20.0198107156456 0 \N \N f 0 \N 3 179418446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441959 2024-02-28 13:53:36.883 2024-02-28 14:03:38.315 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture p https://example.com/ 18525 441843 441843.441959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2272902130789 0 \N \N f 0 \N 3 158829249 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 432399 2024-02-20 12:01:36.422 2024-02-20 12:11:37.554 \N Wide hundred paper early. Together third https://example.com/ 3409 431401 431401.432399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0804258947476 0 \N \N f 0 \N 0 79160631 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 432934 2024-02-20 19:39:00.984 2024-02-20 19:49:02.425 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nBring rich describe watch head pos https://example.com/ 18208 432811 432811.432934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5012126974699 0 \N \N f 0 \N 0 172372568 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 439040 2024-02-26 10:12:57.338 2024-02-26 10:22:58.604 \N Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk d https://example.com/ 17217 439007 438936.439007.439040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40006100877284 0 \N \N f 0 \N 2 167876611 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439015 2024-02-26 09:53:45.104 2024-02-26 10:03:47.369 \N Financial all deep why car seat measure most. To https://example.com/ 16440 438996 438946.438996.439015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8164877151737 0 \N \N f 0 \N 0 79297618 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 439010 2024-02-26 09:44:48.226 2024-02-26 09:54:50.7 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hol https://example.com/ 1038 438981 438946.438977.438981.439010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1360079151388 0 \N \N f 0 \N 0 168134151 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432371 2024-02-20 11:27:21.322 2024-02-20 11:37:22.487 \N Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Mor https://example.com/ 16406 432339 432339.432371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9470429550102 0 \N \N f 0 \N 3 207109592 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 439024 2024-02-26 10:00:43.914 2024-02-26 10:10:44.652 Herself will eight force small lose. Budget box decide Big money in south wide support. Meet radio walk grow lay no https://example.com/ 9355 \N 439024 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.86762274131867 0 \N \N f 0 \N 0 187953302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432360 2024-02-20 11:11:52.753 2024-02-20 11:21:54.872 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study gen https://example.com/ 627 431401 431401.432360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0261860917969 0 \N \N f 0 \N 0 138497682 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 432564 2024-02-20 15:03:33.39 2024-02-20 15:13:34.85 Activity just seem enter development thr Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature. https://example.com/ 5017 \N 432564 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 9.88277907654876 0 \N \N f 0 \N 1 150957623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439021 2024-02-26 09:58:07.247 2024-02-26 10:08:08.717 \N Travel watch n https://example.com/ 3417 438995 438936.438995.439021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8852128389905 0 \N \N f 0 \N 0 93672721 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439047 2024-02-26 10:19:49.129 2024-02-26 10:29:50.556 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. P https://example.com/ 680 439009 438936.439009.439047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.13540407389551 0 \N \N f 0 \N 0 227048134 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439074 2024-02-26 10:45:52.654 2024-02-26 10:55:53.861 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current te https://example.com/ 5728 438358 438358.439074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98709312338918 0 \N \N f 0 \N 0 103246562 0 f f \N \N \N \N 438358 \N 0 0 \N \N f \N 439027 2024-02-26 10:04:24.903 2024-02-26 10:14:26.626 \N Board age miss drug sense. Take here somebody choose. Experience just determine training d https://example.com/ 21418 439026 439026.439027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4886107128058 0 \N \N f 0 \N 0 193455237 0 f f \N \N \N \N 439026 \N 0 0 \N \N f \N 432950 2024-02-20 19:53:53.165 2024-02-20 20:03:54.432 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mr https://example.com/ 9363 432930 432619.432922.432930.432950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5967462287872 0 \N \N f 0 \N 0 214169746 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 432857 2024-02-20 18:29:02.148 2024-02-20 18:39:03.282 \N Rate thought reason si https://example.com/ 4084 432846 432344.432667.432761.432846.432857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0271836859795 0 \N \N f 0 \N 0 75690448 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 438957 2024-02-26 07:44:31.532 2024-02-26 07:54:33.265 \N Never new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss https://example.com/ 18679 438794 438794.438957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.70150177862539 0 \N \N f 0 \N 0 30365549 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432075 2024-02-20 01:10:11.471 2024-02-20 01:20:12.733 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. E https://example.com/ 657 431401 431401.432075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3625481614877 0 \N \N f 0 \N 0 18310168 0 f f \N \N \N \N 431401 \N 0 0 \N \N f \N 432658 2024-02-20 16:21:54.109 2024-02-20 16:31:55.213 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nOccur offic https://example.com/ 8796 432419 432419.432658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1788418707081 0 \N \N f 0 \N 1 202005726 0 f f \N \N \N \N 432419 \N 0 0 \N \N f \N 432363 2024-02-20 11:15:35.803 2024-02-20 11:25:37.085 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue s https://example.com/ 21627 432339 432339.432363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95929781467537 0 \N \N f 0 \N 1 173562004 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 432947 2024-02-20 19:53:01.627 2024-02-20 20:03:03.364 \N Hundred position represent six morning manage school a https://example.com/ 837 432944 432944.432947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.50496054169134 0 \N \N f 0 \N 0 46861634 0 f f \N \N \N \N 432944 \N 0 0 \N \N f \N 432936 2024-02-20 19:39:29.182 2024-02-20 19:49:30.389 Plan really necessary boy a consider. Attorney suffer play Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene. https://example.com/ 10280 \N 432936 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.1843552191998 0 \N \N f 0 \N 0 81003897 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432946 2024-02-20 19:52:00.22 2024-02-20 20:02:01.891 \N Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nEvery good development clearly poor. Fact for https://example.com/ 21037 432944 432944.432946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7605536205906 0 \N \N f 0 \N 0 240979458 0 f f \N \N \N \N 432944 \N 0 0 \N \N f \N 439059 2024-02-26 10:35:16.363 2024-02-26 10:45:17.103 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nHerself then or effect usually https://example.com/ 2111 439055 438936.439007.439040.439055.439059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4038675671452 0 \N \N f 0 \N 0 164659003 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432922 2024-02-20 19:29:51.665 2024-02-20 19:39:52.793 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prep https://example.com/ 628 432619 432619.432922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.204177655323 0 \N \N f 0 \N 2 24728755 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 439058 2024-02-26 10:34:39.426 2024-02-26 10:44:41.244 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school https://example.com/ 18378 439041 438936.438995.439041.439058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6199148781434 0 \N \N f 0 \N 1 234208934 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 438993 2024-02-26 09:14:49.135 2024-02-26 09:24:50.753 \N With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nPattern someone notice power fly. Against expect new often size top. Station everybody w https://example.com/ 19906 438936 438936.438993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.329326287818041 0 \N \N f 0 \N 3 38951681 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432394 2024-02-20 11:58:16.784 2024-02-20 12:08:18.775 \N Might also begin h https://example.com/ 4650 432339 432339.432394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61629587254099 0 \N \N f 0 \N 1 163039080 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 439031 2024-02-26 10:07:35.209 2024-02-26 10:17:36.761 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nBetween remembe https://example.com/ 21503 439011 439005.439011.439031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4150769713789 0 \N \N f 0 \N 1 3995349 0 f f \N \N \N \N 439005 \N 0 0 \N \N f \N 439003 2024-02-26 09:36:02.533 2024-02-26 09:46:03.819 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. https://example.com/ 3347 438936 438936.439003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7342433371088 0 \N \N f 0 \N 1 165800230 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439032 2024-02-26 10:07:51.805 2024-02-26 10:17:52.823 \N Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support https://example.com/ 896 439028 438946.439028.439032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7352206450955 0 \N \N f 0 \N 2 207324364 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432949 2024-02-20 19:53:39.05 2024-02-20 20:03:40.393 Often culture through program memory mind go. Wrong statement discussi It suggest save face though senior walk oil. Establish f https://example.com/ 16309 \N 432949 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.85042119930519 0 \N \N f 0 \N 0 103835235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439034 2024-02-26 10:08:18.868 2024-02-26 10:18:20.788 \N Natural Mrs quickly financial. Successful most rule executive foreign https://example.com/ 10013 438996 438946.438996.439034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.72712364806572 0 \N \N f 0 \N 4 122963947 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 438759 2024-02-26 00:01:17.154 2024-02-26 00:11:18.693 \N Human guy both. Retu https://example.com/ 20817 438325 438325.438759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.514706245284771 0 \N \N f 0 \N 3 169461042 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432848 2024-02-20 18:25:06.068 2024-02-20 18:35:07.664 Win nothing research song data. They peace herself continue Rep Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nSeven which https://example.com/ 16876 \N 432848 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.0412648036519 0 \N \N f 0 \N 4 51975298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432954 2024-02-20 19:56:11.866 2024-02-20 20:06:13.43 \N Already real me bac https://example.com/ 16351 432873 432873.432954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5307874789331 0 \N \N f 0 \N 0 197041211 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439060 2024-02-26 10:35:59.448 2024-02-26 10:46:01.791 \N Baby body day citizen change. Present identify never big charge. Street draw message gene https://example.com/ 18219 439032 438946.439028.439032.439060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1382 0 \N \N f 0 \N 1 52743015 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432960 2024-02-20 19:58:01.627 2024-02-20 20:08:03.131 \N Piece write exist main Mrs mouth. Clearly https://example.com/ 1244 432873 432873.432960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3500528024691 0 \N \N f 0 \N 0 151129111 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439057 2024-02-26 10:32:44.128 2024-02-26 10:42:45.346 Method show window brother. Buy right Republican education Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok conditi https://example.com/ 6058 \N 439057 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 17.3647860372565 0 \N \N f 0 \N 0 239057667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439041 2024-02-26 10:14:35.585 2024-02-26 10:24:37.118 \N Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nSense college state many. Some your mothe https://example.com/ 2123 438995 438936.438995.439041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75136580568833 0 \N \N f 0 \N 8 41254465 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432942 2024-02-20 19:48:03.051 2024-02-20 19:58:04.5 For share something effect science conference among audience. Visit Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oi https://example.com/ 17800 \N 432942 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0615199889711 0 \N \N f 0 \N 0 165682384 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432927 2024-02-20 19:32:01.984 2024-02-20 19:42:02.586 \N Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Op https://example.com/ 10112 432877 432811.432877.432927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.88203018404976 0 \N \N f 0 \N 1 155904503 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432971 2024-02-20 20:09:50.368 2024-02-20 20:19:52.227 Baby body day citizen change. Present identify never bi Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy. https://example.com/ 6616 \N 432971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.424486702356 0 \N \N f 0 \N 0 132926927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432967 2024-02-20 20:03:34.534 2024-02-20 20:13:36.599 Mention well why thank develop. Alone hotel ground. Specific skill five. D Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely hi https://example.com/ 21453 \N 432967 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 18.4333512672892 0 \N \N f 0 \N 0 108395563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432965 2024-02-20 19:59:53.618 2024-02-20 20:09:55.786 \N Area just subj https://example.com/ 9290 432945 432899.432945.432965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3122714358923 0 \N \N f 0 \N 0 58741852 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 432972 2024-02-20 20:10:04.517 2024-02-20 20:20:06.376 Whatever moment pattern front up much. Military instead alone can. Land Mrs mark Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party st https://example.com/ 18727 \N 432972 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 26.106123411281 0 \N \N f 0 \N 0 89955111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439054 2024-02-26 10:30:04.086 2024-02-26 10:40:04.671 \N Already reduce grow o https://example.com/ 2347 438910 438910.439054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1781303133494 0 \N \N f 0 \N 0 73412392 0 f f \N \N \N \N 438910 \N 0 0 \N \N f \N 432969 2024-02-20 20:06:08.432 2024-02-20 20:16:10.822 We course us bank recently significant myself. Of pa Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only betwee https://example.com/ 2596 \N 432969 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.0336629608163 0 \N \N f 0 \N 0 21198878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432963 2024-02-20 19:58:27.871 2024-02-20 20:08:29.604 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nDevelop receive back PM. Use arrive best police poor. https://example.com/ 8998 432927 432811.432877.432927.432963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2321044277314 0 \N \N f 0 \N 0 99646045 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 439084 2024-02-26 11:00:04.995 2024-02-26 11:00:10.7 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best https://example.com/ 12289 439083 439083.439084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2890775647847 0 \N \N f 0 \N 0 96717856 0 f f \N \N \N \N 439083 \N 0 0 \N \N f \N 434342 2024-02-21 22:05:04.191 2024-02-21 22:15:05.9 \N Them social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various ope https://example.com/ 18124 434341 434319.434325.434341.434342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7187946966496 0 \N \N f 0 \N 0 192249767 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 439048 2024-02-26 10:20:56.73 2024-02-26 10:30:58.902 \N Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Acr https://example.com/ 18518 439031 439005.439011.439031.439048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39529306895257 0 \N \N f 0 \N 0 222458955 0 f f \N \N \N \N 439005 \N 0 0 \N \N f \N 439085 2024-02-26 11:02:01.168 2024-02-26 11:12:03.468 \N Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Ha https://example.com/ 21021 438794 438794.439085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3369104274474 0 \N \N f 0 \N 0 14343548 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 432973 2024-02-20 20:10:30.77 2024-02-20 20:20:32.704 \N Business food practic https://example.com/ 17316 432937 432811.432854.432864.432937.432973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96055981616166 0 \N \N f 0 \N 0 33729226 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 439066 2024-02-26 10:39:37.26 2024-02-26 10:49:39.321 \N By evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Perso https://example.com/ 19005 439060 438946.439028.439032.439060.439066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4425994088362 0 \N \N f 0 \N 0 4386378 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432369 2024-02-20 11:25:32.873 2024-02-20 11:35:34.501 Necessary hold quite on prove Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them https://example.com/ 6421 \N 432369 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 4.77835571171973 0 \N \N f 0 \N 2 185508719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439062 2024-02-26 10:37:28.389 2024-02-26 10:47:29.538 \N Effect indeed easy never instead even force. Economy use rule real others. Sta https://example.com/ 866 439036 438946.438947.439019.439036.439062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7529238581504 0 \N \N f 0 \N 1 192330934 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432937 2024-02-20 19:42:04.932 2024-02-20 19:52:05.964 \N Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousa https://example.com/ 18309 432864 432811.432854.432864.432937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01941029137603 0 \N \N f 0 \N 1 208730430 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 439061 2024-02-26 10:37:02.402 2024-02-26 10:47:03.16 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory appr https://example.com/ 9844 437583 437583.439061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2354569299472 0 \N \N f 0 \N 0 135095515 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 434031 2024-02-21 17:27:35.699 2024-02-21 17:37:37.129 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nEver small reduce evidence quickly again true. Record heart enjoy https://example.com/ 15925 433828 433828.434031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6591587297718 0 \N \N f 0 \N 10 193722660 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439065 2024-02-26 10:39:30.832 2024-02-26 10:49:31.958 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. https://example.com/ 807 439005 439005.439065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63506958122969 0 \N \N f 0 \N 0 110967875 0 f f \N \N \N \N 439005 \N 0 0 \N \N f \N 434940 2024-02-22 13:09:24.28 2024-02-22 13:19:25.337 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. F https://example.com/ 5036 434831 433799.433829.433831.434831.434940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1408661848051 0 \N \N f 0 \N 1 241786507 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 433831 2024-02-21 14:44:06.284 2024-02-21 14:54:07.94 \N Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key fre https://example.com/ 1740 433829 433799.433829.433831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.26387582185426 0 \N \N f 0 \N 5 133955502 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 439067 2024-02-26 10:39:59.862 2024-02-26 10:50:01.337 \N Thousand billion get leg now sort eve https://example.com/ 20687 439039 438946.438996.439034.439039.439067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5604888494909 0 \N \N f 0 \N 2 3853578 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 433829 2024-02-21 14:41:01.547 2024-02-21 14:51:02.698 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization https://example.com/ 4314 433799 433799.433829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7720175693511 0 \N \N f 0 \N 6 203535147 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 432978 2024-02-20 20:14:24.176 2024-02-20 20:24:25.219 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker https://example.com/ 11716 432560 432560.432978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.1961975491179 0 \N \N f 0 \N 0 72988957 0 f f \N \N \N \N 432560 \N 0 0 \N \N f \N 432976 2024-02-20 20:12:18.206 2024-02-20 20:22:19.455 \N Avoid avoid forward. Speech suffer l https://example.com/ 18306 432968 432968.432976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.19451628605702 0 \N \N f 0 \N 0 76827967 0 f f \N \N \N \N 432968 \N 0 0 \N \N f \N 432877 2024-02-20 18:41:49.779 2024-02-20 18:51:50.701 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nMost describe tell speech wi https://example.com/ 10469 432811 432811.432877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5347811949736 0 \N \N f 0 \N 2 32315590 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432959 2024-02-20 19:57:22.703 2024-02-20 20:07:24.311 \N About cell note lot page. Feel man https://example.com/ 19796 432811 432811.432959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3265571031065 0 \N \N f 0 \N 0 35369296 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 439076 2024-02-26 10:52:22.982 2024-02-26 11:02:25.699 \N Range happen field economic. Deal scientist confere https://example.com/ 17184 438991 438991.439076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86692344934494 0 \N \N f 0 \N 1 63556910 0 f f \N \N \N \N 438991 \N 0 0 \N \N f \N 435961 2024-02-23 09:01:37.817 2024-02-23 09:11:39.041 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after p https://example.com/ 21228 435890 330698.330774.434596.435793.435890.435961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7572233068606 0 \N \N f 0 \N 0 193351685 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 432968 2024-02-20 20:03:46.303 2024-02-20 20:13:47.337 Company kid protect determine adult. Increase add play lawyer Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say. https://example.com/ 10311 \N 432968 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 22.7969858634646 0 \N \N f 0 \N 2 203891329 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439036 2024-02-26 10:09:56.677 2024-02-26 10:19:58.869 \N Least start time do. Occur between avoid political use make. Nor no both ability others. Sort https://example.com/ 15925 439019 438946.438947.439019.439036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3645943083991 0 \N \N f 0 \N 2 249740616 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432989 2024-02-20 20:23:16.727 2024-02-20 20:33:18.915 \N Identify health spend could. Have weight civ https://example.com/ 19995 432563 432563.432989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7501493447808 0 \N \N f 0 \N 0 175394532 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 432986 2024-02-20 20:22:00.894 2024-02-20 20:32:02.819 Check worry radio fine stuff. Lead least Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\n https://example.com/ 2326 \N 432986 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.1490141603291 0 \N \N f 0 \N 0 158086555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431161 2024-02-19 18:01:36.873 2024-02-19 18:11:38.621 Yard subject low serie Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology https://example.com/ 1244 \N 431161 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 4.03149072471553 0 \N \N f 0 \N 13 49823601 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439070 2024-02-26 10:41:16.138 2024-02-26 10:51:17.404 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degr https://example.com/ 1483 439062 438946.438947.439019.439036.439062.439070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1586792952433 0 \N \N f 0 \N 0 201476321 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 439071 2024-02-26 10:42:14.53 2024-02-26 10:52:15.714 \N Material focus experience picture. Future still full blood s https://example.com/ 675 439067 438946.438996.439034.439039.439067.439071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7888160057747 0 \N \N f 0 \N 1 65015161 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 432970 2024-02-20 20:08:57.286 2024-02-20 20:18:58.704 \N Increase section kind decision. Individua https://example.com/ 10536 432968 432968.432970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.84785061310158 0 \N \N f 0 \N 0 19383356 0 f f \N \N \N \N 432968 \N 0 0 \N \N f \N 432974 2024-02-20 20:11:50.643 2024-02-20 20:21:52.409 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling interna https://example.com/ 937 432344 432344.432974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5897368383965 0 \N \N f 0 \N 0 104034272 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 431672 2024-02-19 19:35:48.826 2024-02-19 19:45:50.034 \N Four whole sort. Every summer https://example.com/ 3709 313841 313841.431672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4004865969937 0 \N \N f 0 \N 0 235345075 0 f f \N \N \N \N 313841 \N 0 0 \N \N f \N 432996 2024-02-20 20:26:38.435 2024-02-20 20:36:39.593 \N C https://example.com/ 3717 432382 432344.432382.432996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1665441625955 0 \N \N f 0 \N 0 39848799 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439083 2024-02-26 11:00:04.457 2024-02-26 11:10:05.391 Admit TV soon machine word future add. Tra \N https://example.com/ 19759 \N 439083 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.6547992787115 0 \N \N f 0 \N 1 180257130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432988 2024-02-20 20:22:51.584 2024-02-20 20:32:52.929 \N Think month catch free. Tree https://example.com/ 20669 432979 432979.432988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9141347777471 0 \N \N f 0 \N 0 109013867 0 f f \N \N \N \N 432979 \N 0 0 \N \N f \N 432990 2024-02-20 20:23:40.056 2024-02-20 20:33:41.216 \N Voice sign colleg https://example.com/ 16355 430122 429202.430122.432990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6402559530926 0 \N \N f 0 \N 0 162644227 0 f f \N \N \N \N 429202 \N 0 0 \N \N f \N 432579 2024-02-20 15:13:46.307 2024-02-20 15:23:47.552 Research either follow across either investment church. Tough avoid candidate Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nEvery good development clearly po https://example.com/ 12024 \N 432579 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 2.34566417521332 0 \N \N f 0 \N 2 162941449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438910 2024-02-26 05:56:33.949 2024-02-26 06:06:35.396 Story do plant get. Base involve spo Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nScience sea s https://example.com/ 1003 \N 438910 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9437440174369 0 \N \N f 0 \N 2 207627770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432994 2024-02-20 20:25:32.627 2024-02-20 20:35:34.56 Yes but truth go. Generation as nice customer old. Dark art m Order care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot. https://example.com/ 16410 \N 432994 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8267234705153 0 \N \N f 0 \N 0 16431865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438911 2024-02-26 06:00:00.552 2024-02-26 06:10:02.397 \N Tell difference pattern car https://example.com/ 19465 438910 438910.438911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4982065450634 0 \N \N f 0 \N 0 79946193 0 f f \N \N \N \N 438910 \N 0 0 \N \N f \N 439091 2024-02-26 11:10:03.012 2024-02-26 11:20:04.233 \N Game during everybody only among. Exactly sit https://example.com/ 20546 439088 439082.439088.439091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91236822209808 0 \N \N f 0 \N 0 184393593 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433004 2024-02-20 20:29:01.691 2024-02-20 20:39:03.479 \N Thing type great Mr. Choose cover medical b https://example.com/ 3353 432987 432987.433004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.37907334546878 0 \N \N f 0 \N 0 45757650 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 438358 2024-02-25 15:17:50.777 2024-02-25 15:27:53.826 Stuff this how behind t Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nRegion side point win through. Deep check rather loss wor https://example.com/ 1236 \N 438358 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 13.749073039859 0 \N \N f 0 \N 2 232164731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439072 2024-02-26 10:43:35.687 2024-02-26 10:53:37.039 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic b https://example.com/ 6688 439071 438946.438996.439034.439039.439067.439071.439072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3615791244854 0 \N \N f 0 \N 0 44101850 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 291036 2023-10-22 12:29:47.909 2023-10-22 12:39:49.314 Back spend task r Threat https://example.com/ 3456 \N 291036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5416374023859 0 \N \N f 0 \N 9 41783229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434965 2024-02-22 13:34:21.035 2024-02-22 13:44:22.586 \N Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nEdge lot space https://example.com/ 7673 432987 432987.434965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3945574024683 0 \N \N f 0 \N 0 233166912 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 432987 2024-02-20 20:22:15.364 2024-02-20 20:32:16.393 Moment smile cell cold road happ Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nKnowledge figure draw. Billion https://example.com/ 19403 \N 432987 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 14.7742425672957 0 \N \N f 0 \N 7 90104265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435797 2024-02-23 03:30:34.014 2024-02-23 03:40:36.298 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage s https://example.com/ 18051 435728 435657.435728.435797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40496203708123 0 \N \N f 0 \N 1 158630947 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 434334 2024-02-21 21:59:07.629 2024-02-21 22:09:09.548 \N News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never deci https://example.com/ 1803 354520 354520.434334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2513995106247 0 \N \N f 0 \N 0 218184302 0 f f \N \N \N \N 354520 \N 0 0 \N \N f \N 438991 2024-02-26 09:02:40.132 2024-02-26 09:12:41.611 Morning better everybody sense. Today growth term test. Old fast it Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door researc https://example.com/ 4459 \N 438991 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 0.617782177556983 0 \N \N f 0 \N 3 156119564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432759 2024-02-20 17:30:13.619 2024-02-20 17:40:15.174 To reduce each wall th American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference https://example.com/ 19813 \N 432759 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 4.40948731482543 0 \N \N f 0 \N 12 137945501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432993 2024-02-20 20:25:21.417 2024-02-20 20:35:22.461 Authority call evening guess civil rich not ask. Walk level s Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics. https://example.com/ 4128 \N 432993 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 16.455475449739 0 \N \N f 0 \N 1 114346275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433000 2024-02-20 20:27:14.198 2024-02-20 20:37:15.18 \N Never money Congress data single trial. Today water everything reduc https://example.com/ 20970 432933 432344.432382.432386.432771.432887.432933.433000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.166534060687 0 \N \N f 0 \N 2 176080246 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433013 2024-02-20 20:40:10.078 2024-02-20 20:50:11.722 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker ofte https://example.com/ 4415 433009 432311.432635.432686.432882.432902.432939.433009.433013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.23006081893124 0 \N \N f 0 \N 1 178478678 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432919 2024-02-20 19:19:09.158 2024-02-20 19:29:10.133 Political officia Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spe https://example.com/ 977 \N 432919 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 8.26687806838148 0 \N \N f 0 \N 0 148279826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433006 2024-02-20 20:31:00.472 2024-02-20 20:41:01.995 \N By evening job should nature really. Cut black mother financial law memory million https://example.com/ 15728 432638 432203.432638.433006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.710387334561 0 \N \N f 0 \N 0 115082033 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 432998 2024-02-20 20:26:49.83 2024-02-20 20:36:51.105 \N S https://example.com/ 14015 432386 432344.432382.432386.432998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.95855415709415 0 \N \N f 0 \N 0 161415696 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439075 2024-02-26 10:47:22.979 2024-02-26 10:57:25.067 \N Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level https://example.com/ 9 439016 438936.439016.439075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9630679692781 0 \N \N f 0 \N 4 74066340 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432872 2024-02-20 18:35:45.511 2024-02-20 18:45:46.879 \N Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I https://example.com/ 16789 432822 432822.432872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8570602157303 0 \N \N f 0 \N 0 139346270 0 f f \N \N \N \N 432822 \N 0 0 \N \N f \N 438092 2024-02-25 10:58:35.987 2024-02-25 11:08:37.773 Young shake push apply stand. Benefit ahead others list Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size intere https://example.com/ 670 \N 438092 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.31528939194162 0 \N \N f 0 \N 0 90477235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432806 2024-02-20 17:53:55.138 2024-02-20 18:03:56.995 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice sev https://example.com/ 4831 432782 432759.432766.432782.432806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6442380711446 0 \N \N f 0 \N 0 4878122 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 432766 2024-02-20 17:33:49.092 2024-02-20 17:43:50.8 \N Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead https://example.com/ 19132 432759 432759.432766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1519658927107 0 \N \N f 0 \N 4 161340534 0 f f \N \N \N \N 432759 \N 0 0 \N \N f \N 433008 2024-02-20 20:33:29.097 2024-02-20 20:43:30.595 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. https://example.com/ 13169 432962 432881.432956.432962.433008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05731936747483 0 \N \N f 0 \N 0 178841135 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 432638 2024-02-20 15:58:27.901 2024-02-20 16:08:29.415 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nResult treatment smile https://example.com/ 6700 432203 432203.432638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.48515110818196 0 \N \N f 0 \N 1 133618178 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 435149 2024-02-22 16:05:42.178 2024-02-22 16:15:43.375 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institutio https://example.com/ 8242 435132 435046.435132.435149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6410627645554 0 \N \N f 0 \N 2 125267179 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439098 2024-02-26 11:20:21.316 2024-02-26 11:30:23.444 \N Community seat tend position recent https://example.com/ 10270 439092 439082.439092.439098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2896434215081 0 \N \N f 0 \N 1 137640603 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 432913 2024-02-20 19:13:38.939 2024-02-20 19:23:40.28 Thousand billion get leg now sort even. Past everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything. https://example.com/ 12483 \N 432913 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 27.2351311792351 0 \N \N f 0 \N 8 94206428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433002 2024-02-20 20:28:31.071 2024-02-20 20:38:33.093 Power billion method wide. Person play pla Our because trip contain onto simple. Away wear seek https://example.com/ 3213 \N 433002 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.61226028554229 0 \N \N f 0 \N 0 1198801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435155 2024-02-22 16:10:33.019 2024-02-22 16:20:34.816 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nIncreas https://example.com/ 19259 435023 434958.435023.435155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.312505978943456 0 \N \N f 0 \N 1 104560545 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 439089 2024-02-26 11:07:27.124 2024-02-26 11:17:30.021 \N Think month catch free. Tree invol https://example.com/ 9820 439082 439082.439089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49644298960263 0 \N \N f 0 \N 0 100820676 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433003 2024-02-20 20:28:56.293 2024-02-20 20:38:57.5 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take chur https://example.com/ 18396 432646 431161.431913.432213.432646.433003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.175732659056784 0 \N \N f 0 \N 0 26631124 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 432727 2024-02-20 17:04:50.829 2024-02-20 17:14:52.475 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nPretty street rather sp https://example.com/ 16858 432694 432344.432554.432642.432677.432694.432727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1573784696117 0 \N \N f 0 \N 2 123853751 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432694 2024-02-20 16:43:42.909 2024-02-20 16:53:44.217 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music https://example.com/ 21042 432677 432344.432554.432642.432677.432694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85323461941551 0 \N \N f 0 \N 3 1834477 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432677 2024-02-20 16:32:52.957 2024-02-20 16:42:53.926 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fin https://example.com/ 13587 432642 432344.432554.432642.432677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4913788044097 0 \N \N f 0 \N 4 75339297 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432642 2024-02-20 16:09:37.178 2024-02-20 16:19:39.257 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democra https://example.com/ 12024 432554 432344.432554.432642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.22239437547361 0 \N \N f 0 \N 5 177068205 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439077 2024-02-26 10:56:24.514 2024-02-26 11:06:25.895 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon ca https://example.com/ 18727 439029 439029.439077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3727471961061 0 \N \N f 0 \N 4 26212488 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 433029 2024-02-20 21:01:49.064 2024-02-20 21:11:50.57 \N Report night class. Fight PM tha https://example.com/ 1571 432992 432920.432980.432992.433029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7982278290067 0 \N \N f 0 \N 9 177328432 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433051 2024-02-20 21:35:26.436 2024-02-20 21:45:27.507 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television https://example.com/ 20143 433011 432982.433011.433051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6059583918609 0 \N \N f 0 \N 1 162261733 0 f f \N \N \N \N 432982 \N 0 0 \N \N f \N 439056 2024-02-26 10:31:01.741 2024-02-26 10:41:02.716 Person like among former sort. Only population law conferenc Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free. https://example.com/ 717 \N 439056 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.3831248315304 0 \N \N f 0 \N 0 10456932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432939 2024-02-20 19:43:14.816 2024-02-20 19:53:15.849 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Dem https://example.com/ 20454 432902 432311.432635.432686.432882.432902.432939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0821785051316 0 \N \N f 0 \N 3 7804631 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 439107 2024-02-26 11:27:47.872 2024-02-26 11:37:49.985 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort https://example.com/ 963 418294 418294.439107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0609511373263 0 \N \N f 0 \N 0 35952682 0 f f \N \N \N \N 418294 \N 0 0 \N \N f \N 432847 2024-02-20 18:23:29.028 2024-02-20 18:33:30.285 \N Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface ar https://example.com/ 9985 432563 432563.432847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.00477125654753 0 \N \N f 0 \N 0 236743957 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 438934 2024-02-26 07:21:02.697 2024-02-26 07:31:04.187 \N Happen include car https://example.com/ 18528 438758 438758.438934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.38950172991088 0 \N \N f 0 \N 0 151734987 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 439004 2024-02-26 09:38:53.455 2024-02-26 09:48:54.862 \N How never cut grow benefit. Dinner environ https://example.com/ 10818 437474 437474.439004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8494243934916 0 \N \N f 0 \N 0 222062348 0 f f \N \N \N \N 437474 \N 0 0 \N \N f \N 433028 2024-02-20 21:00:59.265 2024-02-20 21:11:01.128 \N Whose top property well serve national acco https://example.com/ 13046 432920 432920.433028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.83925930582037 0 \N \N f 0 \N 1 147572928 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439102 2024-02-26 11:22:43.514 2024-02-26 11:32:45.916 \N M https://example.com/ 20655 438973 438973.439102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8502281382071 0 \N \N f 0 \N 0 145175975 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 434870 2024-02-22 12:05:09.284 2024-02-22 12:15:11.157 \N Resource morning long fast civil man check loss. Kid position https://example.com/ 2329 434864 434791.434864.434870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.89815322309725 0 \N \N f 0 \N 1 17841070 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 439068 2024-02-26 10:40:55.843 2024-02-26 10:50:57.189 \N Onto although Democrat m https://example.com/ 2029 438973 438973.439068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.56214151390603 0 \N \N f 0 \N 0 182478359 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 438929 2024-02-26 07:00:06.384 2024-02-26 07:10:07.205 Operation against so \N https://example.com/ 20243 \N 438929 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.0663330403645 0 \N \N f 0 \N 1 85942612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433017 2024-02-20 20:45:01.646 2024-02-20 20:55:03.356 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before https://example.com/ 16542 433013 432311.432635.432686.432882.432902.432939.433009.433013.433017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1602623158 0 \N \N f 0 \N 0 53443316 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 434269 2024-02-21 20:29:32.243 2024-02-21 20:39:33.878 \N M https://example.com/ 19662 434139 434139.434269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6823354630919 0 \N \N f 0 \N 0 183529082 0 f f \N \N \N \N 434139 \N 0 0 \N \N f \N 444067 2024-02-29 18:55:06.673 2024-02-29 19:05:09.02 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nGlass her remember exist durin https://example.com/ 2832 444066 444066.444067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85399056279988 0 \N \N f 0 \N 0 197565 0 f f \N \N \N \N 444066 \N 0 0 \N \N f \N 432281 2024-02-20 09:35:55.137 2024-02-20 09:45:56.547 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why https://example.com/ 5497 432135 432135.432281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1903614291093 0 \N \N f 0 \N 2 70789625 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 434037 2024-02-21 17:28:45.556 2024-02-21 17:38:46.9 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight p https://example.com/ 2162 433828 433828.434037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4882210906829 0 \N \N f 0 \N 1 98518635 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439105 2024-02-26 11:25:51.712 2024-02-26 11:35:54.093 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person worl https://example.com/ 19403 439101 439082.439092.439095.439097.439101.439105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6068839351942 0 \N \N f 0 \N 1 30771201 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433020 2024-02-20 20:50:12.701 2024-02-20 21:00:14.168 Tell difference pattern carry jo Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nDirection bus https://example.com/ 4415 \N 433020 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.15037239525798 0 \N \N f 0 \N 2 176659656 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433007 2024-02-20 20:32:29.155 2024-02-20 20:42:30.865 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such t https://example.com/ 17827 432920 432920.433007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8646890563726 0 \N \N f 0 \N 4 12642997 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432245 2024-02-20 08:35:20.207 2024-02-20 08:45:21.403 \N Enough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mothe https://example.com/ 691 418768 418768.432245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63638171529882 0 \N \N f 0 \N 0 231629282 0 f f \N \N \N \N 418768 \N 0 0 \N \N f \N 432975 2024-02-20 20:12:11.027 2024-02-20 20:22:12.454 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once s https://example.com/ 18393 432889 432889.432975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7256059695961 0 \N \N f 0 \N 0 233053829 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 434695 2024-02-22 09:16:13.997 2024-02-22 09:26:15.843 Prevent machine source white and. Fact together father find appear poin Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly. https://example.com/ 8459 \N 434695 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 7.28845625299975 0 \N \N f 0 \N 1 105388032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433032 2024-02-20 21:10:26.681 2024-02-20 21:20:27.779 \N Animal character seek s https://example.com/ 17944 432992 432920.432980.432992.433032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.34191038615331 0 \N \N f 0 \N 10 184000410 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433019 2024-02-20 20:46:52.322 2024-02-20 20:56:53.848 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nThousand billion get leg now sort even. Growth much number sometimes ho https://example.com/ 17166 432459 432135.432281.432459.433019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5947750309633 0 \N \N f 0 \N 0 166411356 0 f f \N \N \N \N 432135 \N 0 0 \N \N f \N 435545 2024-02-22 21:29:17.654 2024-02-22 21:39:18.461 \N Go game bar use image. Organization live back https://example.com/ 20964 435504 435046.435135.435292.435504.435545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91342062459923 0 \N \N f 0 \N 4 50631582 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439117 2024-02-26 11:34:12.249 2024-02-26 11:44:14.324 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fac https://example.com/ 16667 439115 439082.439092.439095.439097.439101.439115.439117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00482587529116 0 \N \N f 0 \N 1 48183688 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435209 2024-02-22 16:41:03.696 2024-02-22 16:51:05.107 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nGuess join morning man hospital human. Though always accord https://example.com/ 1650 435046 435046.435209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.522767822163566 0 \N \N f 0 \N 7 56280425 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 433064 2024-02-20 21:44:23.665 2024-02-20 21:54:25.138 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enj https://example.com/ 12507 433048 433037.433048.433064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1405080090995 0 \N \N f 0 \N 0 208447615 0 f f \N \N \N \N 433037 \N 0 0 \N \N f \N 439096 2024-02-26 11:18:25.305 2024-02-26 11:29:46.242 \N Fear size with rich https://example.com/ 4391 438936 438936.439096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.913001951134 0 \N \N f 0 \N 0 232320016 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432961 2024-02-20 19:58:08.064 2024-02-20 20:08:09.2 \N Nature cell fact health. Fire pressure face. Expect think eve https://example.com/ 20849 432873 432873.432961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3054593035369 0 \N \N f 0 \N 3 185315953 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 438874 2024-02-26 04:13:04.2 2024-02-26 04:23:05.771 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nBreak test customer successful hotel available. https://example.com/ 13927 438737 438737.438874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00792156244689 0 \N \N f 0 \N 7 8090114 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 432796 2024-02-20 17:47:48.778 2024-02-20 17:57:49.914 \N Weight statement best almos https://example.com/ 19878 432793 432736.432793.432796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1681184316838 0 \N \N f 0 \N 2 179857367 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 432898 2024-02-20 19:01:26.655 2024-02-20 19:11:28.258 \N Story do plant https://example.com/ 13348 432796 432736.432793.432796.432898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8776855998382 0 \N \N f 0 \N 1 110457908 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 434988 2024-02-22 13:55:41.121 2024-02-22 14:05:42.99 Alone the crime night stay back. Summer Enough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when. https://example.com/ 13055 \N 434988 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.24289565675684 0 \N \N f 0 \N 0 66503492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433012 2024-02-20 20:38:27.835 2024-02-20 20:48:29.409 \N Score player recognize carr https://example.com/ 21402 432661 432661.433012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3232209247879 0 \N \N f 0 \N 0 154083246 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 438808 2024-02-26 01:33:32.224 2024-02-26 01:43:34.247 Technology instead seat like far. Door produce too Democrat profes Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever pro https://example.com/ 4043 \N 438808 \N \N \N \N \N \N \N \N science \N ACTIVE \N 10.5075777026591 0 \N \N f 0 \N 0 191341174 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439126 2024-02-26 11:48:48.866 2024-02-26 11:58:49.972 \N Same product run but perhaps. Statement baby assume. Positive Mrs im https://example.com/ 5779 439082 439082.439126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4064986653306 0 \N \N f 0 \N 4 39164118 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 438968 2024-02-26 08:00:46.465 2024-02-26 08:10:48.075 \N Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generatio https://example.com/ 10944 438680 438670.438680.438968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.53398170858762 0 \N \N f 0 \N 1 237268957 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 434961 2024-02-22 13:31:01.372 2024-02-22 13:41:02.873 \N Same product run but perhaps. Sta https://example.com/ 4177 434934 434934.434961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6126152202241 0 \N \N f 0 \N 0 225361479 0 f f \N \N \N \N 434934 \N 0 0 \N \N f \N 433077 2024-02-20 21:50:14.797 2024-02-20 22:00:15.803 Anything common leader response. Source news glass bed. Third fire Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From https://example.com/ 700 \N 433077 \N \N \N \N \N \N \N \N security \N ACTIVE \N 26.111721496297 0 \N \N f 0 \N 0 221607411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438746 2024-02-25 23:46:07.782 2024-02-25 23:56:09.54 Real who consider a Run music mean unit. Above here blue evidence get health https://example.com/ 777 \N 438746 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 10.8523069599558 0 \N \N f 0 \N 1 108966410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439121 2024-02-26 11:36:06.927 2024-02-26 11:46:08.411 \N A https://example.com/ 1141 439117 439082.439092.439095.439097.439101.439115.439117.439121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.566193881715 0 \N \N f 0 \N 0 240316041 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434967 2024-02-22 13:35:18.393 2024-02-22 13:45:19.796 \N Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by caus https://example.com/ 14791 434795 434795.434967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.331548481524 0 \N \N f 0 \N 0 128797438 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439118 2024-02-26 11:34:52.677 2024-02-26 11:44:53.572 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Wa https://example.com/ 6041 439108 439082.439092.439095.439097.439101.439104.439108.439118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9811598343988 0 \N \N f 0 \N 0 54868163 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439123 2024-02-26 11:37:08.989 2024-02-26 11:47:10.472 Budget agent center morning series international Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break. https://example.com/ 5499 \N 439123 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.07674906907577 0 \N \N f 0 \N 3 212205474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433011 2024-02-20 20:37:15.16 2024-02-20 20:47:16.94 \N Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nStrong of create prevent choose final plant. Continue water white understand chance. A https://example.com/ 8498 432982 432982.433011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7048457126936 0 \N \N f 0 \N 2 107317351 0 f f \N \N \N \N 432982 \N 0 0 \N \N f \N 433036 2024-02-20 21:15:57.148 2024-02-20 21:25:58.539 Key third PM painting wrong generation every. Authority daughter religi Policy trade before drop p https://example.com/ 1970 \N 433036 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.68598913094939 0 \N \N f 0 \N 0 49959477 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439115 2024-02-26 11:31:32.375 2024-02-26 11:41:34.093 \N Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. https://example.com/ 21079 439101 439082.439092.439095.439097.439101.439115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0374079260464 0 \N \N f 0 \N 2 133281876 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433039 2024-02-20 21:20:01.71 2024-02-20 21:30:03.529 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nMind treatment https://example.com/ 20871 433010 432344.432952.432984.433010.433039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0859475960092 0 \N \N f 0 \N 1 185574100 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434959 2024-02-22 13:30:35.535 2024-02-22 13:40:36.89 \N Bring rich https://example.com/ 20636 434955 433883.434955.434959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85756108848462 0 \N \N f 0 \N 0 134147483 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 432982 2024-02-20 20:18:15.224 2024-02-20 20:28:16.524 Quite teacher accept per agent P Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorn https://example.com/ 14195 \N 432982 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 0.467235035403135 0 \N \N f 0 \N 4 202884553 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434955 2024-02-22 13:26:48.065 2024-02-22 13:36:50.123 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic bu https://example.com/ 2204 433883 433883.434955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0792424602825 0 \N \N f 0 \N 1 151423688 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 434977 2024-02-22 13:45:18.055 2024-02-22 13:55:19.046 Them its apply task the off ability. Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop po https://example.com/ 18392 \N 434977 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 3.6981186176213 0 \N \N f 0 \N 0 224917100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433046 2024-02-20 21:29:44.608 2024-02-20 21:39:45.651 \N Hear degree home air agree culture. Trouble song fill https://example.com/ 17218 433020 433020.433046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.66410108612558 0 \N \N f 0 \N 1 98597944 0 f f \N \N \N \N 433020 \N 0 0 \N \N f \N 441687 2024-02-28 10:57:36.711 2024-02-28 11:07:38.698 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must tru https://example.com/ 17014 441560 441560.441687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47973937453268 0 \N \N f 0 \N 4 167027603 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441963 2024-02-28 13:57:00.865 2024-02-28 14:07:02 \N Newspaper wall begin over serious hand. Remember great meet theory local https://example.com/ 2098 441854 441854.441963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3801880843191 0 \N \N f 0 \N 1 87446180 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442016 2024-02-28 14:19:24.4 2024-02-28 14:29:25.483 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature https://example.com/ 624 441960 441661.441934.441937.441960.442016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9106339327006 0 \N \N f 0 \N 1 63377102 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 433057 2024-02-20 21:40:02.227 2024-02-20 21:50:03.899 \N Whose top property wel https://example.com/ 1836 433027 433027.433057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8280712310962 0 \N \N f 0 \N 2 104348059 0 f f \N \N \N \N 433027 \N 0 0 \N \N f \N 439125 2024-02-26 11:45:17.347 2024-02-26 11:55:18.637 \N T https://example.com/ 11417 439098 439082.439092.439098.439125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.239293510374 0 \N \N f 0 \N 0 142022503 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 442663 2024-02-28 20:31:17.324 2024-02-28 20:41:18.978 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. https://example.com/ 16230 442621 442339.442621.442663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25293760317957 0 \N \N f 0 \N 3 209742301 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 433047 2024-02-20 21:29:53.395 2024-02-20 21:39:54.701 Same need interesting between watch base city by. Anything many watch style co Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor. https://example.com/ 19105 \N 433047 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.52796853415842 0 \N \N f 0 \N 0 41698766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439119 2024-02-26 11:35:12.982 2024-02-26 11:45:14.671 \N Many soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better https://example.com/ 10944 438737 438737.439119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.39031374904528 0 \N \N f 0 \N 0 38840613 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 433048 2024-02-20 21:30:12.224 2024-02-20 21:40:13.843 \N Necessary hold quite on prove past. St https://example.com/ 21291 433037 433037.433048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86976204546033 0 \N \N f 0 \N 1 182797537 0 f f \N \N \N \N 433037 \N 0 0 \N \N f \N 439120 2024-02-26 11:35:15.441 2024-02-26 14:19:33.857 \N With establish effo https://example.com/ 13169 439088 439082.439088.439120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9085619942734 0 \N \N f 0 \N 0 85348545 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 432914 2024-02-20 19:15:14.833 2024-02-20 19:25:16.332 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million li https://example.com/ 19910 432912 432889.432912.432914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.225473663588 0 \N \N f 0 \N 1 109879401 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 439129 2024-02-26 11:55:57.001 2024-02-26 12:05:59.04 \N Seven which natur https://example.com/ 1094 437863 437863.439129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.43728814932926 0 \N \N f 0 \N 0 111499338 0 f f \N \N \N \N 437863 \N 0 0 \N \N f \N 433040 2024-02-20 21:21:12.664 2024-02-20 21:31:14.167 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. https://example.com/ 1617 430498 430498.433040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2767840314523 0 \N \N f 0 \N 0 73582197 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 433045 2024-02-20 21:29:14.873 2024-02-20 21:39:16.422 \N Today area ben https://example.com/ 2329 433018 432344.432382.432386.432771.432887.432933.433000.433018.433045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3004166310973 0 \N \N f 0 \N 0 101554288 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439132 2024-02-26 11:59:39.473 2024-02-26 12:09:40.828 \N Bank one body pull the expe https://example.com/ 6136 438118 438118.439132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.874057478704 0 \N \N f 0 \N 0 220481575 0 f f \N \N \N \N 438118 \N 0 0 \N \N f \N 435100 2024-02-22 15:24:42.444 2024-02-22 15:34:44.111 Describe modern fund cultural r Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without https://example.com/ 9352 \N 435100 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 27.7409593694789 0 \N \N f 0 \N 0 56763075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434685 2024-02-22 08:54:24.581 2024-02-22 09:04:25.866 Become full thank head blood family. Computer accoun Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nRule focus detail financia https://example.com/ 827 \N 434685 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.0448910388423 0 \N \N f 0 \N 6 34526077 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437863 2024-02-25 02:07:49.5 2024-02-25 02:17:50.656 Toward position themselves news unit. Manage go ce Deep government cold west. Act computer vote particularly https://example.com/ 7673 \N 437863 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 28.5905125026596 0 \N \N f 0 \N 2 186241767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435480 2024-02-22 20:22:07.846 2024-02-22 20:32:09.549 Notice after fund police. Put environment Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push t https://example.com/ 21292 \N 435480 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.4493713184559 0 \N \N f 0 \N 0 66015939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433055 2024-02-20 21:38:14.711 2024-02-20 21:48:15.95 \N Alone force machine policy energy. Stand our ahead third. When https://example.com/ 20585 433026 433026.433055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.00815387734153461 0 \N \N f 0 \N 1 197648322 0 f f \N \N \N \N 433026 \N 0 0 \N \N f \N 437359 2024-02-24 15:20:31.048 2024-02-24 15:30:32.299 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. https://example.com/ 4776 436875 436729.436875.437359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7375714416113 0 \N \N f 0 \N 3 42927014 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 437470 2024-02-24 17:00:30.863 2024-02-24 17:10:31.983 \N Mean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain w https://example.com/ 4984 437359 436729.436875.437359.437470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3128526335263 0 \N \N f 0 \N 2 96225672 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 433086 2024-02-20 21:56:09.176 2024-02-20 22:06:10.554 \N Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nWhite seven property least father loc https://example.com/ 19005 432913 432913.433086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7264426284566 0 \N \N f 0 \N 3 164546932 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 433072 2024-02-20 21:47:03.478 2024-02-20 21:57:04.67 \N Source sc https://example.com/ 4395 429202 429202.433072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.11150014247341 0 \N \N f 0 \N 0 26657103 0 f f \N \N \N \N 429202 \N 0 0 \N \N f \N 432999 2024-02-20 20:27:08.145 2024-02-20 20:37:09.163 \N Yeah word become def https://example.com/ 18313 432993 432993.432999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.06542859203472 0 \N \N f 0 \N 0 113167267 0 f f \N \N \N \N 432993 \N 0 0 \N \N f \N 438118 2024-02-25 11:26:43.055 2024-02-25 11:36:44.915 Very yes customer public music ex Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. S https://example.com/ 1602 \N 438118 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.7083206898623 0 \N \N f 0 \N 1 135843070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433044 2024-02-20 21:28:48.21 2024-02-20 21:38:49.607 \N Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. https://example.com/ 5661 433027 433027.433044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1260772981522 0 \N \N f 0 \N 0 66859492 0 f f \N \N \N \N 433027 \N 0 0 \N \N f \N 434920 2024-02-22 12:53:06.777 2024-02-22 13:03:08.258 Factor song science administration defense radio. Pay eve Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however https://example.com/ 11621 \N 434920 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 3.05337268907863 0 \N \N f 0 \N 1 232579410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434627 2024-02-22 06:54:28.872 2024-02-22 07:04:30.723 Race civil today. Brother record Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Caus https://example.com/ 13753 \N 434627 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.7030758231523 0 \N \N f 0 \N 7 234593356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432793 2024-02-20 17:46:32.915 2024-02-20 17:56:34.462 \N Meet https://example.com/ 9418 432736 432736.432793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9294958461007 0 \N \N f 0 \N 3 105663234 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 434810 2024-02-22 11:07:55.454 2024-02-22 11:17:56.595 Region side point win through. Deep check rather loss world adult. State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful. https://example.com/ 16178 \N 434810 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.3179324348483 0 \N \N f 0 \N 5 198304556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434434 2024-02-22 00:26:30.131 2024-02-22 00:36:31.451 Enter land brother. Treat prove though. College everything be f Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard. https://example.com/ 5694 \N 434434 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.3360586533739 0 \N \N f 0 \N 1 135826783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439156 2024-02-26 12:17:14.838 2024-02-26 12:27:16.941 \N Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size produ https://example.com/ 762 430346 417471.423472.430346.439156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60080761755537 0 \N \N f 0 \N 0 2169111 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N 433115 2024-02-20 22:15:06.704 2024-02-20 22:25:08.065 \N Per seat key down relationship step. Father https://example.com/ 19281 433113 432913.433062.433107.433113.433115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9942354032601 0 \N \N f 0 \N 0 142366974 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 435235 2024-02-22 16:56:29.544 2024-02-22 17:06:31.4 \N Tax here if project. Thing how simply then. Agai https://example.com/ 9364 435220 435046.435135.435162.435214.435220.435235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0396668531843 0 \N \N f 0 \N 9 206091561 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435544 2024-02-22 21:29:15.029 2024-02-22 21:39:16.435 Key stuff company they base well night. Wonder large may onc West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home. https://example.com/ 675 \N 435544 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.94520025299357 0 \N \N f 0 \N 1 137973708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441934 2024-02-28 13:44:12.682 2024-02-28 13:54:13.802 \N Red production his nothing financial. Media e https://example.com/ 5775 441661 441661.441934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1458879553467 0 \N \N f 0 \N 7 180957012 0 f f \N \N \N \N 441661 \N 0 0 \N \N f \N 433060 2024-02-20 21:41:58.786 2024-02-20 21:51:59.898 Follow commercial image consider media these. Drop program study Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I. https://example.com/ 21374 \N 433060 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.81341562035426 0 \N \N f 0 \N 0 48495947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433063 2024-02-20 21:43:47.068 2024-02-20 21:53:48.771 \N Top however address today. Cen https://example.com/ 14909 248526 248526.433063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2847427749474 0 \N \N f 0 \N 0 86322811 0 f f \N \N \N \N 248526 \N 0 0 \N \N f \N 444111 2024-02-29 19:24:35.349 2024-02-29 19:34:36.095 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nSpeak organization direct https://example.com/ 18774 444083 443745.444083.444111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.46701588534139 0 \N \N f 0 \N 2 71631873 0 f f \N \N \N \N 443745 \N 0 0 \N \N f \N 444086 2024-02-29 19:01:49.879 2024-02-29 19:11:51.173 \N Far clearly possible enter. Turn safe https://example.com/ 10469 444084 444076.444084.444086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52320808856736 0 \N \N f 0 \N 1 31859700 0 f f \N \N \N \N 444076 \N 0 0 \N \N f \N 444094 2024-02-29 19:08:13.67 2024-02-29 19:18:14.696 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main https://example.com/ 7989 443919 443919.444094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1473292444299 0 \N \N f 0 \N 0 203874781 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 433068 2024-02-20 21:45:29.509 2024-02-20 21:55:30.205 \N Quickly fill science from politics foot. Person avai https://example.com/ 14705 430414 430414.433068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5769852607941 0 \N \N f 0 \N 0 162079803 0 f f \N \N \N \N 430414 \N 0 0 \N \N f \N 441647 2024-02-28 10:22:35.273 2024-02-28 10:32:36.321 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide https://example.com/ 827 441529 441514.441529.441647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8649516891044 0 \N \N f 0 \N 2 88445379 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 433071 2024-02-20 21:46:40.334 2024-02-20 21:56:42.098 \N Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage managem https://example.com/ 18581 432736 432736.433071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6423426670168 0 \N \N f 0 \N 2 38494596 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 433065 2024-02-20 21:44:39.532 2024-02-20 21:54:40.591 \N F https://example.com/ 777 433046 433020.433046.433065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.931182387401073 0 \N \N f 0 \N 0 62672669 0 f f \N \N \N \N 433020 \N 0 0 \N \N f \N 432736 2024-02-20 17:08:46.682 2024-02-20 17:18:48.417 Live music official including police after into. May outside up son brother ad Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black. https://example.com/ 3544 \N 432736 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8723814788985 0 \N \N f 0 \N 21 103310097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431507 2024-02-19 19:06:12.662 2024-02-19 19:16:13.526 \N Pull fact question for unit up https://example.com/ 814 358848 358848.431507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5859952873766 0 \N \N f 0 \N 0 141788653 0 f f \N \N \N \N 358848 \N 0 0 \N \N f \N 433026 2024-02-20 20:58:24.843 2024-02-20 21:08:26.294 Country audience including. Occur movie example defense live. Com Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by. https://example.com/ 21573 \N 433026 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.984067516121 0 \N \N f 0 \N 2 223605154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435880 2024-02-23 06:14:58.803 2024-02-23 06:25:00.106 \N Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school gre https://example.com/ 9362 433452 433391.433452.435880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6607744791906 0 \N \N f 0 \N 0 221636151 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433073 2024-02-20 21:47:04.546 2024-02-20 21:57:05.709 \N Leave example grow lead something still https://example.com/ 21090 432511 432511.433073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28532100268545 0 \N \N f 0 \N 0 143464297 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 433119 2024-02-20 22:19:28.958 2024-02-20 22:29:29.961 \N Policy trade before drop particular https://example.com/ 17693 433066 433066.433119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06898854707209 0 \N \N f 0 \N 0 123301114 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433146 2024-02-20 22:50:04.335 2024-02-20 23:00:06.861 \N Cut firm blood tell decision direction. https://example.com/ 18313 432859 432344.432730.432859.433146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.88838217322234 0 \N \N f 0 \N 0 119807858 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432955 2024-02-20 19:56:20.267 2024-02-20 20:06:21.831 \N Total necessary thought task capital nothing. Girl analysis i https://example.com/ 2338 432873 432873.432955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.596117864603 0 \N \N f 0 \N 0 143091810 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439090 2024-02-26 11:07:39.336 2024-02-26 11:17:41.48 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state sim https://example.com/ 21418 439082 439082.439090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88681347807257 0 \N \N f 0 \N 0 190836628 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433102 2024-02-20 22:07:31.618 2024-02-20 22:17:33.15 \N Light environmental her https://example.com/ 2330 432957 432957.433102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1418538889567 0 \N \N f 0 \N 2 169138289 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433117 2024-02-20 22:16:05.011 2024-02-20 22:26:06.126 \N Action prevent Republican. Now third lawyer mother deal. Woman world chu https://example.com/ 6616 433112 432957.433102.433112.433117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.03213957206184 0 \N \N f 0 \N 0 212274124 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433093 2024-02-20 22:01:53.125 2024-02-20 22:11:54.755 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Re https://example.com/ 6030 433067 433067.433093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80963031745038 0 \N \N f 0 \N 0 56680446 0 f f \N \N \N \N 433067 \N 0 0 \N \N f \N 441671 2024-02-28 10:45:29.47 2024-02-28 10:55:30.559 List professional event meeting. Drop Republican huge an Technology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly. https://example.com/ 21274 \N 441671 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.3249499114978 0 \N \N f 0 \N 0 210459416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439143 2024-02-26 12:05:04.671 2024-02-26 12:15:07.909 \N Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Prog https://example.com/ 13574 438837 438837.439143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7772415789481 0 \N \N f 0 \N 0 28940172 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 432836 2024-02-20 18:10:33.912 2024-02-20 18:20:35.267 \N Person part phone rich. Cause thus inside back charge. Deci https://example.com/ 20624 432811 432811.432836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6332311557303 0 \N \N f 0 \N 1 24912374 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 433080 2024-02-20 21:52:47.904 2024-02-20 22:02:49.473 \N Answer party get head Democrat. Marriage letter west s https://example.com/ 2402 433076 433056.433076.433080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.496967715563 0 \N \N f 0 \N 1 173094775 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 439162 2024-02-26 12:24:24.251 2024-02-26 12:34:26.077 \N Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause https://example.com/ 1003 439160 439137.439160.439162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23381180305953 0 \N \N f 0 \N 1 65055025 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N 438854 2024-02-26 03:27:11.826 2024-02-26 03:37:13.311 \N Affect major fire admit technology bad add. Sport surface police prevent https://example.com/ 11091 438733 438084.438340.438733.438854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1557994911862 0 \N \N f 0 \N 0 196485541 0 f f \N \N \N \N 438084 \N 0 0 \N \N f \N 436590 2024-02-23 19:38:17.783 2024-02-23 19:48:18.641 \N Person pa https://example.com/ 19511 436585 436585.436590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68867662784333 0 \N \N f 0 \N 0 66275793 0 f f \N \N \N \N 436585 \N 0 0 \N \N f \N 435916 2024-02-23 07:37:31.129 2024-02-23 07:47:32.812 Before wrong success power prevent notice. Hard former stock. Address rate man Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program. https://example.com/ 18731 \N 435916 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.5909223417526 0 \N \N f 0 \N 0 30836015 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432053 2024-02-20 00:18:39.632 2024-02-20 00:28:41.816 \N Small concern peace on far either. Service clear https://example.com/ 910 431961 431961.432053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9945585053417 0 \N \N f 0 \N 2 16884253 0 f f \N \N \N \N 431961 \N 0 0 \N \N f \N 433081 2024-02-20 21:52:49.802 2024-02-20 22:02:51.169 \N South amount subject easy office. Sea force thousand director yard someone anima https://example.com/ 2123 432811 432811.433081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0900099005364 0 \N \N f 0 \N 0 105023581 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 432291 2024-02-20 09:40:26.311 2024-02-20 09:50:27.278 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing https://example.com/ 19007 432053 431961.432053.432291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.554637522880839 0 \N \N f 0 \N 1 151693635 0 f f \N \N \N \N 431961 \N 0 0 \N \N f \N 433090 2024-02-20 22:00:00.374 2024-02-20 22:10:01.979 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nAnimal law requi https://example.com/ 14213 432291 431961.432053.432291.433090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7121327690476 0 \N \N f 0 \N 0 155681935 0 f f \N \N \N \N 431961 \N 0 0 \N \N f \N 432114 2024-02-20 02:38:44.598 2024-02-20 02:48:46.147 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style https://example.com/ 15239 430601 430496.430601.432114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.983082576773 0 \N \N f 0 \N 1 190060554 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 433092 2024-02-20 22:01:01.448 2024-02-20 22:11:02.929 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach aroun https://example.com/ 18476 433067 433067.433092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5836328337454 0 \N \N f 0 \N 0 89146130 0 f f \N \N \N \N 433067 \N 0 0 \N \N f \N 433069 2024-02-20 21:45:31.707 2024-02-20 21:55:32.68 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nNature wrong meeting whatever. Manage product https://example.com/ 20564 433055 433026.433055.433069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.96877485805841 0 \N \N f 0 \N 0 109567658 0 f f \N \N \N \N 433026 \N 0 0 \N \N f \N 433142 2024-02-20 22:44:45.613 2024-02-20 22:54:46.755 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add br https://example.com/ 11992 433125 430619.430794.433125.433142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0642544373842 0 \N \N f 0 \N 1 215701771 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 433100 2024-02-20 22:05:59.951 2024-02-20 22:16:01.293 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation https://example.com/ 11873 433087 433087.433100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4804232425163 0 \N \N f 0 \N 0 62852736 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 433099 2024-02-20 22:05:22.163 2024-02-20 22:15:23.979 \N Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy https://example.com/ 14385 432045 343047.422702.426365.431087.432045.433099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25713980442446 0 \N \N f 0 \N 0 131658114 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 433096 2024-02-20 22:03:54.701 2024-02-20 22:13:55.747 \N Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nWho collection suggest practice. Walk them Republican. Ad https://example.com/ 16839 433031 433031.433096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00232803303306 0 \N \N f 0 \N 1 2034933 0 f f \N \N \N \N 433031 \N 0 0 \N \N f \N 432045 2024-02-20 00:03:58.623 2024-02-20 00:13:59.602 \N Purpose add when information sing like recognize. Career bad resource. https://example.com/ 1823 431087 343047.422702.426365.431087.432045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62112059009331 0 \N \N f 0 \N 1 225610104 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 433070 2024-02-20 21:45:56.827 2024-02-20 21:55:57.814 \N Enough book hope yard https://example.com/ 9342 433057 433027.433057.433070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71270715474022 0 \N \N f 0 \N 1 156109656 0 f f \N \N \N \N 433027 \N 0 0 \N \N f \N 433094 2024-02-20 22:03:03.396 2024-02-20 22:13:05.164 \N Soon https://example.com/ 9809 433070 433027.433057.433070.433094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3443058993967 0 \N \N f 0 \N 0 77873427 0 f f \N \N \N \N 433027 \N 0 0 \N \N f \N 433110 2024-02-20 22:12:10.048 2024-02-20 22:22:11.294 \N Natural read drug suggest argue. Attorney choic https://example.com/ 2327 433005 432203.432785.433005.433110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.710389142602 0 \N \N f 0 \N 5 169912882 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 433098 2024-02-20 22:05:00.182 2024-02-20 22:15:01.567 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social https://example.com/ 4819 433097 433097.433098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95774641431521 0 \N \N f 0 \N 0 65077426 0 f f \N \N \N \N 433097 \N 0 0 \N \N f \N 439166 2024-02-26 12:25:56.81 2024-02-26 12:35:58.181 \N Page economic language former t https://example.com/ 21166 438998 438106.438998.439166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.135428519811107 0 \N \N f 0 \N 0 38821648 0 f f \N \N \N \N 438106 \N 0 0 \N \N f \N 439134 2024-02-26 12:00:05.058 2024-02-26 12:00:10.313 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nBillion here large https://example.com/ 19037 439133 439133.439134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.126033488913 0 \N \N f 0 \N 0 152206150 0 f f \N \N \N \N 439133 \N 0 0 \N \N f \N 439133 2024-02-26 12:00:04.695 2024-02-26 12:10:06.801 Floor among test material. Meet mil \N https://example.com/ 17693 \N 439133 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.61533858952431 0 \N \N f 0 \N 1 102314030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433130 2024-02-20 22:35:47.584 2024-02-20 22:45:48.975 \N Field rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade ne https://example.com/ 19810 433066 433066.433130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7655508991669 0 \N \N f 0 \N 3 150552124 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433822 2024-02-21 14:34:24.977 2024-02-21 14:44:25.969 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment https://example.com/ 787 433786 433786.433822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5622057164747 0 \N \N f 0 \N 0 129141675 0 f f \N \N \N \N 433786 \N 0 0 \N \N f \N 431087 2024-02-19 17:36:00.372 2024-02-19 17:46:02.125 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nSense edge father camera. Region https://example.com/ 8508 426365 343047.422702.426365.431087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38579703956339 0 \N \N f 0 \N 2 133781801 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 439144 2024-02-26 12:06:03.097 2024-02-26 12:16:04.823 \N Billion here large general understand. Sit act https://example.com/ 20073 438905 438837.438905.439144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0140924454745672 0 \N \N f 0 \N 3 71639784 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 442281 2024-02-28 16:07:04.196 2024-02-28 16:17:05.499 Meet whose open couple believe something significant. Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern stand https://example.com/ 21323 \N 442281 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 28.8179784288696 0 \N \N f 0 \N 2 51048282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443166 2024-02-29 07:53:15.053 2024-02-29 08:03:16.449 \N Republican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natura https://example.com/ 21501 443084 442904.443057.443081.443084.443166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.060090527317 0 \N \N f 0 \N 2 30165619 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 439148 2024-02-26 12:11:44.903 2024-02-26 12:21:47.007 \N First right set. Dinner third difficult next receive. Drop population help recently usually resource. https://example.com/ 708 439144 438837.438905.439144.439148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0589892879414 0 \N \N f 0 \N 2 213131212 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 432820 2024-02-20 18:02:12.978 2024-02-20 18:12:14.155 \N Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Ph https://example.com/ 1175 432809 431800.432046.432150.432809.432820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82393475782401 0 \N \N f 0 \N 1 120076227 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 439149 2024-02-26 12:12:04.791 2024-02-26 12:22:06.856 Scene despite prepare need. Shoulder none until none. Look simply choose card se Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel. https://example.com/ 795 \N 439149 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.5818857868605 0 \N \N f 0 \N 0 144622036 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439135 2024-02-26 12:00:34.583 2024-02-26 12:10:36.582 Recent work wife light adult yard. Child although girl new to s Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually. https://example.com/ 1745 \N 439135 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.9003884547188 0 \N \N f 0 \N 0 72597854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439138 2024-02-26 12:01:04.95 2024-02-26 12:11:06.859 \N Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which do https://example.com/ 19537 436875 436729.436875.439138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85803819983482 0 \N \N f 0 \N 0 7922558 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 439136 2024-02-26 12:00:54.226 2024-02-26 12:10:55.621 \N Family https://example.com/ 19848 439076 438991.439076.439136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4776563081482 0 \N \N f 0 \N 0 52540539 0 f f \N \N \N \N 438991 \N 0 0 \N \N f \N 433107 2024-02-20 22:10:05.179 2024-02-20 22:20:06.554 \N Behavior sa https://example.com/ 19843 433062 432913.433062.433107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4793861207225 0 \N \N f 0 \N 2 209666655 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 433109 2024-02-20 22:11:43.271 2024-02-20 22:21:44.879 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case e https://example.com/ 20970 433086 432913.433086.433109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8293725132013 0 \N \N f 0 \N 2 23102471 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 432983 2024-02-20 20:18:40.311 2024-02-20 20:28:41.458 \N Out quite different term just require. Store thing key why particular each. Sta https://example.com/ 2206 432153 432153.432983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5021693768659 0 \N \N f 0 \N 0 106101595 0 f f \N \N \N \N 432153 \N 0 0 \N \N f \N 432785 2024-02-20 17:44:01.497 2024-02-20 17:54:02.564 \N Once could matter program fish adult Congre https://example.com/ 4388 432203 432203.432785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26991753586048 0 \N \N f 0 \N 7 85294846 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 436664 2024-02-23 21:24:23.322 2024-02-23 21:34:24.354 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nEconomy rest whatever spring among least agai https://example.com/ 4459 436523 436523.436664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3643322358411 0 \N \N f 0 \N 0 121669150 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 433062 2024-02-20 21:43:25.138 2024-02-20 21:53:26.561 \N Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby https://example.com/ 4115 432913 432913.433062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.066926402616 0 \N \N f 0 \N 3 220602562 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 442256 2024-02-28 15:57:14.834 2024-02-28 16:07:16.76 \N Edge lot space military without many term others. Religious wear economy can since. Hu https://example.com/ 708 442236 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198.442236.442256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.70832093295008 0 \N \N f 0 \N 3 197800631 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442236 2024-02-28 15:50:14.468 2024-02-28 16:00:17.236 \N Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nFinancial all d https://example.com/ 1094 442198 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198.442236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.680288359219 0 \N \N f 0 \N 4 38015698 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 438982 2024-02-26 08:26:05.757 2024-02-26 08:36:07.021 Skill government the Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue https://example.com/ 21021 \N 438982 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 3.25574063091519 0 \N \N f 0 \N 0 226662613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433088 2024-02-20 21:57:07.279 2024-02-20 22:07:08.584 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nGame during everybody only among. Exactly situ https://example.com/ 19795 433066 433066.433088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3947851721028 0 \N \N f 0 \N 8 95236794 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433085 2024-02-20 21:54:30.92 2024-02-20 22:04:34.818 \N Professional remain report involve eye outside. Military boy they. Camera management act three pub https://example.com/ 10611 432920 432920.433085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4743999137488 0 \N \N f 0 \N 0 20073649 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439014 2024-02-26 09:52:24.74 2024-02-26 10:02:26.578 Hope more garden de Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry sup https://example.com/ 7998 \N 439014 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 25.1240421667281 0 \N \N f 0 \N 0 172537729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436588 2024-02-23 19:38:11.644 2024-02-23 19:48:13.491 \N Catch as https://example.com/ 2256 436585 436585.436588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3812450458593 0 \N \N f 0 \N 0 193110864 0 f f \N \N \N \N 436585 \N 0 0 \N \N f \N 432859 2024-02-20 18:30:29.208 2024-02-20 18:40:30.117 \N Medical view similar along sense sit piece. Onto at re https://example.com/ 16966 432730 432344.432730.432859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.186910646101 0 \N \N f 0 \N 1 70842069 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 441925 2024-02-28 13:37:22.331 2024-02-28 13:47:23.841 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put c https://example.com/ 9426 441806 441806.441925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6484618284841 0 \N \N f 0 \N 0 580501 0 f f \N \N \N \N 441806 \N 0 0 \N \N f \N 433106 2024-02-20 22:09:37.41 2024-02-20 22:19:39.149 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart no https://example.com/ 14267 433067 433067.433106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6946272506158 0 \N \N f 0 \N 0 228401945 0 f f \N \N \N \N 433067 \N 0 0 \N \N f \N 433113 2024-02-20 22:14:36.93 2024-02-20 22:24:38.799 \N Everyone usually memory amount hel https://example.com/ 11165 433107 432913.433062.433107.433113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00046700448504 0 \N \N f 0 \N 1 235158794 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 433108 2024-02-20 22:10:30.286 2024-02-20 22:20:34.262 Girl someone prepare. Realize however yeah staff kitchen gas. Reveal app Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. https://example.com/ 21591 \N 433108 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 28.6691616820801 0 \N \N f 0 \N 6 38241152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438733 2024-02-25 23:07:27.096 2024-02-25 23:17:29.46 \N Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend https://example.com/ 1624 438340 438084.438340.438733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.697777572813 0 \N \N f 0 \N 1 140968825 0 f f \N \N \N \N 438084 \N 0 0 \N \N f \N 436585 2024-02-23 19:34:17.532 2024-02-23 19:47:48.334 Month explain matte Resource morning long fast civil man check loss. Kid p https://example.com/ 1959 \N 436585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2751384683117 0 \N \N f 0 \N 2 52922192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433153 2024-02-20 22:55:45.727 2024-02-20 23:05:46.933 \N Region model over box relate computer consumer. Everything city president water talk would. Speci https://example.com/ 19909 433147 432977.433058.433147.433153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9089904608547 0 \N \N f 0 \N 0 49334750 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 442276 2024-02-28 16:04:33.095 2024-02-28 16:14:34.697 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nDetermine evidence bar. Evening where https://example.com/ 20560 442256 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198.442236.442256.442276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71081145688628 0 \N \N f 0 \N 2 162418646 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442314 2024-02-28 16:19:50.498 2024-02-28 16:29:51.889 \N For share something effect science conference among audience. Visit listen under https://example.com/ 21417 442310 442283.442285.442296.442301.442308.442310.442314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7226925889742 0 \N \N f 0 \N 0 170928950 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 439193 2024-02-26 12:41:19.693 2024-02-26 12:51:21.2 \N Myself measure first such real consumer. Only for author ag https://example.com/ 21303 439163 439082.439099.439163.439193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.71679953903001 0 \N \N f 0 \N 0 244929184 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436587 2024-02-23 19:38:04.548 2024-02-23 19:48:06.204 Speak organization direction Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role aud https://example.com/ 805 \N 436587 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 20.9472936716993 0 \N \N f 0 \N 0 192324098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433024 2024-02-20 20:54:10.214 2024-02-20 21:04:11.734 May another international budget. Tonight moment grow friend catch thus p Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general di https://example.com/ 5455 \N 433024 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 0.374063373431035 0 \N \N f 0 \N 6 82770322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436258 2024-02-23 14:36:07.512 2024-02-23 14:46:09.033 Health catch toward hair I. Amount to smile sort attack. Best pass statement add Others high sea sense study audience. Adult fight try improve sit numbe https://example.com/ 21493 \N 436258 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.79438390104414 0 \N \N f 0 \N 9 191997356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433042 2024-02-20 21:22:35.559 2024-02-20 21:32:36.952 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. De https://example.com/ 7903 432920 432920.433042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07894483322121 0 \N \N f 0 \N 6 145136137 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439051 2024-02-26 10:24:44.795 2024-02-26 10:34:46.943 \N Skill government the life relationship bad. Statement character spring simple decid https://example.com/ 20776 439043 439043.439051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2706987246663 0 \N \N f 0 \N 0 157627295 0 f f \N \N \N \N 439043 \N 0 0 \N \N f \N 439163 2024-02-26 12:24:53.816 2024-02-26 12:34:55.371 \N Community region she TV since sometimes https://example.com/ 18180 439099 439082.439099.439163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5111722092934 0 \N \N f 0 \N 2 86441237 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433091 2024-02-20 22:00:05.886 2024-02-20 22:10:07.071 \N Dire https://example.com/ 17710 433084 432736.433071.433084.433091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.703901443748 0 \N \N f 0 \N 0 1196918 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 433084 2024-02-20 21:54:28.676 2024-02-20 22:04:31.068 \N Yourself teach week line no hotel whatever. Identify https://example.com/ 11153 433071 432736.433071.433084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.810558281120244 0 \N \N f 0 \N 1 63130201 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 439155 2024-02-26 12:17:05.025 2024-02-26 12:27:06.887 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. https://example.com/ 14472 439152 438837.438905.439144.439148.439152.439155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5052598514673 0 \N \N f 0 \N 0 65541369 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 433129 2024-02-20 22:35:41.811 2024-02-20 22:45:43.354 \N Any tend power https://example.com/ 18842 433128 433114.433128.433129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8579443027957 0 \N \N f 0 \N 9 1091513 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439152 2024-02-26 12:13:54.12 2024-02-26 12:23:55.346 \N Seven which nature charge. Today range along want forget. City story ro https://example.com/ 18731 439148 438837.438905.439144.439148.439152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2918386739128 0 \N \N f 0 \N 1 133143255 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 439172 2024-02-26 12:33:47.143 2024-02-26 12:43:49.488 \N Break site describe address computer. System and wor https://example.com/ 17953 439139 439139.439172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.302424445942613 0 \N \N f 0 \N 0 54957865 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 438998 2024-02-26 09:27:15.402 2024-02-26 09:37:16.595 \N Beyond difference husband behind https://example.com/ 1454 438106 438106.438998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7784274163842 0 \N \N f 0 \N 1 154049186 0 f f \N \N \N \N 438106 \N 0 0 \N \N f \N 433132 2024-02-20 22:38:37.878 2024-02-20 22:48:39.015 \N Herself then or effect usually treat. Exactly I agree top job economy such. https://example.com/ 2322 433129 433114.433128.433129.433132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3284178960053 0 \N \N f 0 \N 8 219977122 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 435025 2024-02-22 14:22:24.262 2024-02-22 14:32:25.292 \N Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader gam https://example.com/ 7827 434665 434665.435025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.74632453926284 0 \N \N f 0 \N 0 28432483 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 436615 2024-02-23 20:18:27.838 2024-02-23 20:28:28.861 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appea https://example.com/ 5112 436531 436241.436243.436518.436531.436615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.726316260795 0 \N \N f 0 \N 0 60840619 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 442271 2024-02-28 16:03:21.194 2024-02-28 16:13:22.714 \N Instead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nProvide differenc https://example.com/ 20222 442084 442084.442271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2286246630963 0 \N \N f 0 \N 1 116906243 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 433150 2024-02-20 22:54:11.36 2024-02-20 23:04:12.243 \N View especially nation nor third to husband. Network low https://example.com/ 20251 432664 432664.433150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7338743509818 0 \N \N f 0 \N 1 59632758 0 f f \N \N \N \N 432664 \N 0 0 \N \N f \N 437269 2024-02-24 14:33:47.538 2024-02-24 14:43:49.046 Think article evening from run eit Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nLead against area note mo https://example.com/ 20509 \N 437269 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.21051490972274 0 \N \N f 0 \N 9 156290083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436618 2024-02-23 20:20:49.921 2024-02-23 20:30:51.732 Provide enjoy appear these. What care if degree. Even camera drop. Official b Policy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction. https://example.com/ 2042 \N 436618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.1444578032116 0 \N \N f 0 \N 0 192013330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436604 2024-02-23 20:00:13.869 2024-02-23 20:10:15.185 \N Agency party build and event thank leave it. Its first church Mrs. Busines https://example.com/ 20841 436499 436499.436604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0201545503401 0 \N \N f 0 \N 0 227633464 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 433075 2024-02-20 21:48:11.539 2024-02-20 21:58:12.671 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe poli https://example.com/ 681 433043 432957.433043.433075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0304546775655 0 \N \N f 0 \N 0 80305105 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433125 2024-02-20 22:25:32.663 2024-02-20 22:35:33.923 \N Enter land brother. Treat prove though. College everything b https://example.com/ 20594 430794 430619.430794.433125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.978386258998505 0 \N \N f 0 \N 2 36336469 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 433136 2024-02-20 22:41:31.331 2024-02-20 22:51:32.793 \N Others high sea sen https://example.com/ 688 433056 433056.433136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.309823507821 0 \N \N f 0 \N 0 141121809 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 439013 2024-02-26 09:48:01.982 2024-02-26 09:58:03.182 \N Decide up red ei https://example.com/ 15094 438605 438605.439013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6810114204882 0 \N \N f 0 \N 0 191588722 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 438936 2024-02-26 07:25:55.682 2024-02-29 06:04:10.637 Better instead whom usually. Wrong think memory reduce. Often poor peace car Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice com https://example.com/ 5865 \N 438936 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 27.595689256774 0 \N \N f 0 \N 65 191211710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439128 2024-02-26 11:55:53.661 2024-02-26 12:05:54.909 \N Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear sp https://example.com/ 4521 439123 439123.439128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.923794793999 0 \N \N f 0 \N 2 55913439 0 f f \N \N \N \N 439123 \N 0 0 \N \N f \N 443948 2024-02-29 17:45:29.822 2024-02-29 17:55:31.224 \N Girl fire bring middle popular. An https://example.com/ 14791 443870 443799.443870.443948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1673354595802 0 \N \N f 0 \N 0 151842410 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 433058 2024-02-20 21:40:54.963 2024-02-20 21:50:56.509 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Bet https://example.com/ 11423 432977 432977.433058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0395411607706 0 \N \N f 0 \N 2 113311864 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 439167 2024-02-26 12:26:29.818 2024-02-26 12:36:32.568 \N Go game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nTime woman simply current community. Election old effort sign take matter hit. Team rest pr https://example.com/ 15052 439082 439082.439167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54170384156615 0 \N \N f 0 \N 0 29668143 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433148 2024-02-20 22:50:46.438 2024-02-20 23:00:48.455 \N Most describe https://example.com/ 1571 433145 433114.433139.433145.433148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00510989948508 0 \N \N f 0 \N 0 154516147 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 436636 2024-02-23 20:40:34.148 2024-02-23 20:50:35.6 \N Pattern someone notice power fly. Against expect new often https://example.com/ 18528 436523 436523.436636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2757194254237 0 \N \N f 0 \N 0 184236488 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436868 2024-02-24 03:03:27.571 2024-02-24 03:13:29.174 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. https://example.com/ 5522 300964 300964.436868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56259081911646 0 \N \N f 0 \N 0 213398537 0 f f \N \N \N \N 300964 \N 0 0 \N \N f \N 436657 2024-02-23 21:12:59.365 2024-02-23 21:23:00.628 Never money Congress data single trial. Today water everything reduce executive Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then. https://example.com/ 19531 \N 436657 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 24.3527833715624 0 \N \N f 0 \N 0 128838145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432002 2024-02-19 23:24:40.393 2024-02-19 23:34:41.419 Over partner wear detail fund rise. Conference require father against show here Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat. https://example.com/ 2075 \N 432002 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.51504523950439 0 \N \N f 0 \N 0 233428410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439016 2024-02-26 09:54:09.637 2024-02-26 10:04:10.618 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm https://example.com/ 1692 438936 438936.439016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57479716149495 0 \N \N f 0 \N 6 40495633 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433144 2024-02-20 22:48:54.454 2024-02-20 22:58:58.042 \N Hundred unit music many. But mother however drug call a https://example.com/ 20710 427912 427912.433144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3457127399207 0 \N \N f 0 \N 0 99866398 0 f f \N \N \N \N 427912 \N 0 0 \N \N f \N 442308 2024-02-28 16:17:53.746 2024-02-28 16:27:54.814 \N Go game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon s https://example.com/ 15052 442301 442283.442285.442296.442301.442308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7255893013521 0 \N \N f 0 \N 2 239977498 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 436611 2024-02-23 20:10:28.161 2024-02-23 20:20:29.663 House west amount. Again Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat. https://example.com/ 20606 \N 436611 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 5.32468787025763 0 \N \N f 0 \N 1 54680008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436651 2024-02-23 21:04:23.838 2024-02-23 21:14:24.883 Part dog him its government good. Growth action have perhaps if. Window animal p Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor. https://example.com/ 17535 \N 436651 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 12.4728481010034 0 \N \N f 0 \N 1 67796446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432338 2024-02-20 10:44:07.833 2024-02-20 10:54:09.341 Site coach strong dark while new security push. Else call threat matter re Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong https://example.com/ 20424 \N 432338 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.77165880335006 0 \N \N f 0 \N 0 118158889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442307 2024-02-28 16:17:35.091 2024-02-28 16:27:36.79 \N Senior than easy statement both total. Picture https://example.com/ 9551 442271 442084.442271.442307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.622754310947 0 \N \N f 0 \N 0 95222775 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 433158 2024-02-20 23:01:28.579 2024-02-20 23:11:30.425 \N Small career baby democrati https://example.com/ 15521 433142 430619.430794.433125.433142.433158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8710019826855 0 \N \N f 0 \N 0 157755295 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 436681 2024-02-23 21:45:30.665 2024-02-23 21:55:31.826 Prevent arm food order. Industry receive dat Take throw l https://example.com/ 712 \N 436681 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.7981588882267 0 \N \N f 0 \N 0 34457791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433167 2024-02-20 23:08:55.724 2024-02-20 23:18:56.954 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law sta https://example.com/ 5293 433066 433066.433167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75900345814255 0 \N \N f 0 \N 4 89459691 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433137 2024-02-20 22:41:40.354 2024-02-20 22:51:41.884 \N Pattern someone notice power fly. Against expect new often https://example.com/ 20891 432980 432920.432980.433137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.281954050137401 0 \N \N f 0 \N 0 26862997 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434336 2024-02-21 22:00:08.619 2024-02-21 22:10:09.689 \N Right view contain easy someone. People away page experience. Which like report summer pr https://example.com/ 859 433878 433878.434336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1486240168937 0 \N \N f 0 \N 1 231107004 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 439165 2024-02-26 12:25:24.881 2024-02-26 12:35:25.915 Area just subject pretty. Three employee performance. Sho Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon. https://example.com/ 1245 \N 439165 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.9610292226451 0 \N \N f 0 \N 10 120210625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439232 2024-02-26 12:57:40.088 2024-02-26 13:07:41.866 \N Result treatm https://example.com/ 2123 439164 439164.439232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8837973725519 0 \N \N f 0 \N 0 233268539 0 f f \N \N \N \N 439164 \N 0 0 \N \N f \N 439200 2024-02-26 12:45:11.15 2024-02-26 12:55:13.466 \N Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Phys https://example.com/ 6335 439162 439137.439160.439162.439200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2667748745459 0 \N \N f 0 \N 0 101205443 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N 443623 2024-02-29 14:58:10.075 2024-02-29 15:08:11.613 \N Per seat key down relationship https://example.com/ 18208 443601 443554.443601.443623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6535314151027 0 \N \N f 0 \N 0 121302428 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 439160 2024-02-26 12:21:10.476 2024-02-26 12:31:13.277 \N Structure ever fi https://example.com/ 14950 439137 439137.439160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4137983718233 0 \N \N f 0 \N 2 237791216 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N 438055 2024-02-25 09:54:14.123 2024-02-25 10:04:16.151 \N Too very admit general whole east. General activity prevent Mr commu https://example.com/ 19909 437945 437524.437945.438055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1031473170164 0 \N \N f 0 \N 5 15540661 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 433139 2024-02-20 22:43:53.694 2024-02-20 22:53:54.934 \N After increase change education budget. Or tend city political mean drug cost. We professor walk pictur https://example.com/ 9026 433114 433114.433139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7326359497548 0 \N \N f 0 \N 2 35059768 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439183 2024-02-26 12:37:45.364 2024-02-26 12:47:47.028 \N Seven which nature charge. Today range along want fo https://example.com/ 7877 439139 439139.439183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37106901185042 0 \N \N f 0 \N 0 178203131 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439025 2024-02-26 10:01:30.738 2024-02-26 10:11:32.796 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either th https://example.com/ 1647 438897 438605.438897.439025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.190445681115 0 \N \N f 0 \N 1 131012354 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 439093 2024-02-26 11:16:45.372 2024-02-26 11:26:47.577 \N Leave relationship rule rich draw soon protect continue. Int https://example.com/ 12721 439073 439073.439093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9821999537141 0 \N \N f 0 \N 0 26525708 0 f f \N \N \N \N 439073 \N 0 0 \N \N f \N 439073 2024-02-26 10:44:02.044 2024-02-26 10:54:03.368 Sense edge father ca Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word. https://example.com/ 1141 \N 439073 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.823015251731 0 \N \N f 0 \N 1 130185029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438261 2024-02-25 13:55:11.919 2024-02-25 14:05:14.209 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nPolitics or often int https://example.com/ 9307 438211 438209.438211.438261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5000878515692 0 \N \N f 0 \N 15 153135709 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 379089 2024-01-06 17:44:49.343 2024-01-06 17:54:50.607 Wide hundred paper early. Republican plan ever. https://example.com/ 20614 \N 379089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31099441880249 0 \N \N f 0 \N 11 223567872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439127 2024-02-26 11:50:22.684 2024-02-26 12:00:24.495 Ten throw trip up region place painting. House many unit Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece. https://example.com/ 6148 \N 439127 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.5450396519865 0 \N \N f 0 \N 0 248299645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433160 2024-02-20 23:03:50.579 2024-02-20 23:13:52.739 \N Idea seem tend attack act common her run. Style https://example.com/ 18679 432920 432920.433160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3568645042953 0 \N \N f 0 \N 1 43279348 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433166 2024-02-20 23:08:48.663 2024-02-20 23:18:50.792 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nNotice after fund police. Put environment https://example.com/ 951 433154 433114.433128.433154.433166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2873977261848 0 \N \N f 0 \N 0 14274381 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 436879 2024-02-24 03:24:04.728 2024-02-24 03:34:06.026 \N Natural Mrs quickly financial. Successful most rule executive foreign east e https://example.com/ 18409 436877 436837.436877.436879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6689482195662 0 \N \N f 0 \N 0 215080741 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 433033 2024-02-20 21:11:25.22 2024-02-20 21:21:26.984 \N Hope more garden dev https://example.com/ 19267 433029 432920.432980.432992.433029.433033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0635748314246 0 \N \N f 0 \N 1 82585820 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433152 2024-02-20 22:55:26.176 2024-02-20 23:05:27.678 \N Stuff this how behind total his left. Know school produce together light. Blood her busine https://example.com/ 21605 433143 433114.433128.433129.433132.433138.433143.433152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9052349855873 0 \N \N f 0 \N 5 65749224 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433035 2024-02-20 21:15:10.324 2024-02-20 21:25:11.796 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light forei https://example.com/ 18449 433033 432920.432980.432992.433029.433033.433035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.877218463644844 0 \N \N f 0 \N 0 41859232 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433162 2024-02-20 23:06:30.439 2024-02-20 23:16:32.784 \N Successful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relat https://example.com/ 19284 433056 433056.433162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6728709215708 0 \N \N f 0 \N 1 124598412 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 433169 2024-02-20 23:10:01.037 2024-02-20 23:20:02.718 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nModel fall part. Teach https://example.com/ 11609 431861 430892.431861.433169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6601864531929 0 \N \N f 0 \N 0 96360537 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 433172 2024-02-20 23:11:50.116 2024-02-20 23:21:51.182 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night popula https://example.com/ 20892 433162 433056.433162.433172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2102755341875 0 \N \N f 0 \N 0 155286995 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 433165 2024-02-20 23:08:45.044 2024-02-20 23:18:46.743 \N Rule hope accept blue. Firm https://example.com/ 21624 431753 430892.431723.431753.433165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8447897904076 0 \N \N f 0 \N 0 59914490 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431723 2024-02-19 19:46:38.685 2024-02-19 19:56:39.836 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier https://example.com/ 2444 430892 430892.431723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4923726427636 0 \N \N f 0 \N 5 205365473 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431753 2024-02-19 19:50:41.069 2024-02-19 20:00:42.164 \N Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nPerson https://example.com/ 964 431723 430892.431723.431753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.12488800864939 0 \N \N f 0 \N 4 53997678 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 433154 2024-02-20 22:57:44.968 2024-02-20 23:07:46.495 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nMillion significant throw buil https://example.com/ 19126 433128 433114.433128.433154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52301026462433 0 \N \N f 0 \N 1 200894051 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433168 2024-02-20 23:09:22.596 2024-02-20 23:19:24.76 \N Your firm section wall https://example.com/ 12268 433163 433114.433128.433129.433132.433138.433143.433152.433155.433159.433163.433168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8424646506131 0 \N \N f 0 \N 1 105655964 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433186 2024-02-20 23:30:27.753 2024-02-20 23:40:28.772 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nHard same business read real https://example.com/ 21577 432920 432920.433186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5030029028483 0 \N \N f 0 \N 5 127434872 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433147 2024-02-20 22:50:32.094 2024-02-20 23:00:33.245 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip miss https://example.com/ 21051 433058 432977.433058.433147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.651269097498179 0 \N \N f 0 \N 1 146065823 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 432533 2024-02-20 14:41:30.203 2024-02-20 14:51:31.107 Go special a bed great same concern. Need pl Return agreement happy health https://example.com/ 9438 \N 432533 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.40818266316937 0 \N \N f 0 \N 0 236673688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438211 2024-02-25 13:09:52.57 2024-02-25 13:19:54.172 \N Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen https://example.com/ 3642 438209 438209.438211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04823651196359 0 \N \N f 0 \N 19 53775612 0 f f \N \N \N \N 438209 \N 0 0 \N \N f \N 433010 2024-02-20 20:37:07.978 2024-02-20 20:47:09.708 \N End and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish s https://example.com/ 19030 432984 432344.432952.432984.433010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9253688014222 0 \N \N f 0 \N 4 222078198 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 442184 2024-02-28 15:32:56.709 2024-02-28 15:42:58.438 \N Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain t https://example.com/ 633 442166 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9784007940222 0 \N \N f 0 \N 7 229879641 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 433173 2024-02-20 23:12:14.293 2024-02-20 23:22:15.743 \N Raise land together yeah natural religious. Travel information camera family. Sign value person han https://example.com/ 14941 431063 430892.431063.433173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.43475917388396 0 \N \N f 0 \N 0 20986462 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 439169 2024-02-26 12:32:18.905 2024-02-26 12:42:20.988 \N With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begi https://example.com/ 9342 438915 438651.438915.439169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1433630760624 0 \N \N f 0 \N 0 209659615 0 f f \N \N \N \N 438651 \N 0 0 \N \N f \N 433180 2024-02-20 23:21:22.405 2024-02-20 23:31:24.865 \N Add bar degree beat si https://example.com/ 9476 433087 433087.433180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89174983984091 0 \N \N f 0 \N 0 46572846 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 433250 2024-02-21 00:27:16.431 2024-02-21 00:37:17.629 \N Mention https://example.com/ 19613 432106 432106.433250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72037212834351 0 \N \N f 0 \N 0 22219100 0 f f \N \N \N \N 432106 \N 0 0 \N \N f \N 442166 2024-02-28 15:26:46.143 2024-02-28 15:36:48.748 \N Them response usually tax tax. Marriage check appear memory why. https://example.com/ 19570 442162 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.10234927341672 0 \N \N f 0 \N 8 184811440 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 432991 2024-02-20 20:24:07.51 2024-02-20 20:34:08.587 Protect evidence very many Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nSocial impact learn single election send senior. Dog dif https://example.com/ 761 \N 432991 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 24.8109071917232 0 \N \N f 0 \N 0 24202680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432388 2024-02-20 11:52:26.488 2024-02-20 12:02:28.039 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recogniz https://example.com/ 7983 430892 430892.432388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.2539418819054 0 \N \N f 0 \N 2 164557878 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431934 2024-02-19 22:04:16.903 2024-02-19 22:14:18.286 \N Artist sound return full resource lay peopl https://example.com/ 13216 431861 430892.431861.431934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5894748435313 0 \N \N f 0 \N 1 101094920 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 438948 2024-02-26 07:37:54.606 2024-02-26 07:47:56.04 \N Eat culture event thus any event watch hospital. Degree improve truth stock la https://example.com/ 919 438941 415381.431098.438941.438948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8496874506101 0 \N \N f 0 \N 0 46796315 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 436864 2024-02-24 02:57:19.672 2024-02-24 03:07:20.476 \N Scientist its surface arrive world determine according. Candidate t https://example.com/ 21577 436837 436837.436864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7979215201884 0 \N \N f 0 \N 2 48809670 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 439197 2024-02-26 12:42:56.509 2024-02-26 12:52:57.717 \N Any tend power space fund inside evidence. Mem https://example.com/ 18635 436264 436264.439197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4594489718165 0 \N \N f 0 \N 0 50978934 0 f f \N \N \N \N 436264 \N 0 0 \N \N f \N 433179 2024-02-20 23:19:28.462 2024-02-20 23:29:30.776 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nCover well feel ye https://example.com/ 6537 432388 430892.432388.433179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02321561767433 0 \N \N f 0 \N 1 58600667 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 433190 2024-02-20 23:33:30.948 2024-02-20 23:43:32.525 \N Great idea age friend. Its financia https://example.com/ 1245 432712 432517.432712.433190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83883070558078 0 \N \N f 0 \N 0 82071473 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 431063 2024-02-19 17:25:44.536 2024-02-19 17:35:45.806 \N Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With https://example.com/ 694 430892 430892.431063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6631718495504 0 \N \N f 0 \N 1 232271333 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432130 2024-02-20 03:00:27.435 2024-02-20 03:10:29.03 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Clai https://example.com/ 20310 430892 430892.432130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.025707390968 0 \N \N f 0 \N 1 10128778 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 433175 2024-02-20 23:16:00.452 2024-02-20 23:26:02.719 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area execu https://example.com/ 18640 433168 433114.433128.433129.433132.433138.433143.433152.433155.433159.433163.433168.433175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.396140954522 0 \N \N f 0 \N 0 107171909 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439174 2024-02-26 12:34:09.956 2024-02-26 12:44:10.825 \N If put nothing put pick future doctor. Push close am https://example.com/ 15536 439139 439139.439174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3437875249306 0 \N \N f 0 \N 0 166567324 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 309826 2023-11-09 06:27:38.849 2023-11-09 06:37:40.48 Ever small reduce Rate thoug https://example.com/ 19732 \N 309826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.599849516136 0 \N \N f 0 \N 5 41903845 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433116 2024-02-20 22:15:49.911 2024-02-20 22:25:51.962 \N Pass glass feeling five. Health which painting college book fall alon https://example.com/ 919 433108 433108.433116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2057285954793 0 \N \N f 0 \N 1 108240340 0 f f \N \N \N \N 433108 \N 0 0 \N \N f \N 435214 2024-02-22 16:45:26.204 2024-02-22 16:55:27.367 \N Big field certainly communi https://example.com/ 17217 435162 435046.435135.435162.435214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13165934191431 0 \N \N f 0 \N 14 226207448 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 441904 2024-02-28 13:22:44.545 2024-02-28 13:32:45.911 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife br https://example.com/ 5538 441402 441383.441402.441904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.682955003905 0 \N \N f 0 \N 0 50817102 0 f f \N \N \N \N 441383 \N 0 0 \N \N f \N 441908 2024-02-28 13:25:04.62 2024-02-28 13:35:06.209 \N In grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment https://example.com/ 10102 441560 441560.441908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0651657635891 0 \N \N f 0 \N 0 154815057 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441920 2024-02-28 13:32:40.515 2024-02-28 13:42:41.375 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred h https://example.com/ 18330 441907 441247.441319.441907.441920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4062293507488 0 \N \N f 0 \N 0 78302824 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443491 2024-02-29 13:52:55.874 2024-02-29 14:02:57.681 \N That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nReturn agreement happy health option. So https://example.com/ 713 443486 443486.443491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13612952273511 0 \N \N f 0 \N 1 125274027 0 f f \N \N \N \N 443486 \N 0 0 \N \N f \N 433043 2024-02-20 21:25:00.297 2024-02-20 21:35:01.735 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administrat https://example.com/ 18837 432957 432957.433043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4894030397381 0 \N \N f 0 \N 1 189034233 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 443544 2024-02-29 14:24:08.489 2024-02-29 14:34:09.804 \N Identify painting degree hit shake film. Plan government around. At hand voice https://example.com/ 1244 443538 443531.443538.443544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2909339052002 0 \N \N f 0 \N 1 106844183 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N 439205 2024-02-26 12:49:19.149 2024-02-26 12:59:21.604 Probably agent catch computer difficult picture. Memory newspap Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program. https://example.com/ 9611 \N 439205 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.870085946586912 0 \N \N f 0 \N 0 106008067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433189 2024-02-20 23:32:38.916 2024-02-20 23:42:41.032 \N Stand red drop occur tell week sure worker. Skill teacher purpose major https://example.com/ 13753 432728 432517.432728.433189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0806352754819 0 \N \N f 0 \N 0 229984058 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 443540 2024-02-29 14:21:43.233 2024-02-29 14:31:44.385 \N Want fire once his six environment. Challenge body color about. Under front https://example.com/ 21216 443454 443388.443454.443540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.042442732475 0 \N \N f 0 \N 1 127760283 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 436875 2024-02-24 03:19:32.401 2024-02-24 03:29:33.8 \N Debate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Tot https://example.com/ 18727 436729 436729.436875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.535238926767 0 \N \N f 0 \N 5 192231339 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 433185 2024-02-20 23:28:52.928 2024-02-20 23:38:55.077 \N Catch as herself https://example.com/ 18262 430414 430414.433185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2494284457914 0 \N \N f 0 \N 0 123299572 0 f f \N \N \N \N 430414 \N 0 0 \N \N f \N 433174 2024-02-20 23:15:53.472 2024-02-20 23:25:54.997 \N Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nNor https://example.com/ 20110 432130 430892.432130.433174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7447434494992 0 \N \N f 0 \N 0 157807073 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 433177 2024-02-20 23:17:57.806 2024-02-20 23:27:58.943 \N Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nMost which usually increase event at hold. End centra https://example.com/ 17103 432341 430892.432341.433177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7435407713329 0 \N \N f 0 \N 0 121102382 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 431918 2024-02-19 21:52:02.771 2024-02-19 22:02:04.193 Material focus experience pic First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Throug https://example.com/ 18378 \N 431918 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 13.0023800880379 0 \N \N f 0 \N 17 101583986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439192 2024-02-26 12:40:41.245 2024-02-26 12:50:43.404 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue https://example.com/ 20757 439187 439082.439153.439187.439192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5485082708659 0 \N \N f 0 \N 0 54685658 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 327558 2023-11-24 13:09:41.502 2023-11-24 13:19:42.342 Reality front sm Marriage interview green school study foot h https://example.com/ 19488 \N 327558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44302700620081 0 \N \N f 0 \N 7 224914239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439184 2024-02-26 12:38:00.82 2024-02-26 12:48:03.422 \N Recent yourself price region detail leader. Positive https://example.com/ 836 439139 439139.439184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5958258704253 0 \N \N f 0 \N 0 208643504 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434352 2024-02-21 22:21:49.149 2024-02-21 22:31:50.506 View especially nation nor third to Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine. https://example.com/ 18470 \N 434352 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.88471846045807 0 \N \N f 0 \N 2 83719479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436513 2024-02-23 18:03:47.048 2024-02-23 18:13:48.647 Job stage use mater Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard. https://example.com/ 12946 \N 436513 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 23.2505015676789 0 \N \N f 0 \N 0 175670937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443608 2024-02-29 14:52:07.353 2024-02-29 15:02:08.636 \N Blood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nThat very sister attention my https://example.com/ 2508 443490 443490.443608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6417936606897 0 \N \N f 0 \N 0 106919244 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 443388 2024-02-29 12:27:26.375 2024-02-29 21:28:24.591 Main teacher loca Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five. https://example.com/ 21019 \N 443388 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 3.59986014794082 0 \N \N f 0 \N 7 208042455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432660 2024-02-20 16:25:39.057 2024-02-20 16:35:40.518 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Incre https://example.com/ 20299 432511 432511.432660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.764343706792836 0 \N \N f 0 \N 0 136208173 0 f f \N \N \N \N 432511 \N 0 0 \N \N f \N 327854 2023-11-24 17:28:26.292 2023-11-24 17:38:27.615 Already real me b It f https://example.com/ 5069 \N 327854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5174442555731 0 \N \N f 0 \N 6 22335740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437524 2024-02-24 17:35:43.413 2024-02-24 17:45:44.617 Republican star interest its. Coll Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nOnce could matter program fish adult Congress. https://example.com/ 20310 \N 437524 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 24.2015602770351 0 \N \N f 0 \N 20 224364634 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438617 2024-02-25 20:10:00.735 2024-02-25 20:20:01.266 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nPolice ci https://example.com/ 17050 438342 437524.437945.438055.438342.438617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05878413693485 0 \N \N f 0 \N 1 130466096 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 439209 2024-02-26 12:50:43.472 2024-02-26 13:00:45.509 Off behind four class talk. Nor these prove tend itself. Gas low chu Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager. https://example.com/ 1806 \N 439209 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8096137383954 0 \N \N f 0 \N 0 121033740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438844 2024-02-26 03:19:14.755 2024-02-26 03:29:15.963 \N Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nThen voice gun. Might beautiful recognize a https://example.com/ 11609 438725 438725.438844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82673265785124 0 \N \N f 0 \N 0 48041718 0 f f \N \N \N \N 438725 \N 0 0 \N \N f \N 436617 2024-02-23 20:20:12.823 2024-02-23 20:30:14.155 \N Break test customer successful hotel available. Size certainly find sen https://example.com/ 5487 436028 436028.436617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1577246778425 0 \N \N f 0 \N 2 117820578 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 443656 2024-02-29 15:06:58.369 2024-02-29 15:17:00.745 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full en https://example.com/ 844 443583 443583.443656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1539015852652 0 \N \N f 0 \N 0 9464279 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 438983 2024-02-26 08:36:08.036 2024-02-26 08:46:09.048 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least s https://example.com/ 2088 438973 438973.438983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3640663659403 0 \N \N f 0 \N 1 129966056 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 443625 2024-02-29 14:58:14.082 2024-02-29 15:08:15.656 \N Develop receive back PM. Use arrive best police poor. Ris https://example.com/ 19259 443617 443617.443625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5950249390069 0 \N \N f 0 \N 3 27306765 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 442117 2024-02-28 15:05:21.357 2024-02-28 15:15:23.019 \N Reach road https://example.com/ 1571 442106 442084.442106.442117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6786215866572 0 \N \N f 0 \N 6 154684597 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443643 2024-02-29 15:01:02.324 2024-02-29 15:11:03.756 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image https://example.com/ 6499 429803 429803.443643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0284464592279 0 \N \N f 0 \N 1 160087963 0 f f \N \N \N \N 429803 \N 0 0 \N \N f \N 432728 2024-02-20 17:05:26.75 2024-02-20 17:15:28.642 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especi https://example.com/ 2444 432517 432517.432728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9569472928302 0 \N \N f 0 \N 1 177883771 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 433170 2024-02-20 23:10:29.151 2024-02-20 23:20:30.924 \N Live child like rea https://example.com/ 20970 431934 430892.431861.431934.433170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.69745013834418 0 \N \N f 0 \N 0 93723898 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 442240 2024-02-28 15:51:40.178 2024-02-28 16:01:41.539 \N Recent work wife https://example.com/ 2639 442226 442206.442226.442240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5105553382028 0 \N \N f 0 \N 0 25797814 0 f f \N \N \N \N 442206 \N 0 0 \N \N f \N 432712 2024-02-20 16:58:05.865 2024-02-20 17:08:07.13 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Ai https://example.com/ 19118 432517 432517.432712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5056141929813 0 \N \N f 0 \N 1 109130359 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 441918 2024-02-28 13:31:21.14 2024-02-28 13:41:22.358 \N Begin lawyer should https://example.com/ 15544 441676 441533.441614.441676.441918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9240305557206 0 \N \N f 0 \N 1 107216103 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 439278 2024-02-26 13:22:00.716 2024-02-26 13:32:02.21 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nWould week boy close differen https://example.com/ 6537 439277 439277.439278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.5592344687862 0 \N \N f 0 \N 0 154321611 0 f f \N \N \N \N 439277 \N 0 0 \N \N f \N 442246 2024-02-28 15:53:00.323 2024-02-28 16:03:02.606 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nBaby yourself significant both truth de https://example.com/ 18675 442245 442245.442246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3201837532964 0 \N \N f 0 \N 0 234618148 0 f f \N \N \N \N 442245 \N 0 0 \N \N f \N 442244 2024-02-28 15:52:58.977 2024-02-28 16:03:00.605 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreeme https://example.com/ 8664 442015 441660.442015.442244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.032910448896 0 \N \N f 0 \N 0 64811387 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 443552 2024-02-29 14:27:35.906 2024-02-29 14:37:36.458 \N Prevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true https://example.com/ 11450 442084 442084.443552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9381427678601 0 \N \N f 0 \N 1 191833007 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 439194 2024-02-26 12:41:29.616 2024-02-26 12:51:32.398 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Gir https://example.com/ 782 439188 439142.439188.439194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.17097596198002 0 \N \N f 0 \N 20 228690311 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 432636 2024-02-20 15:55:43.452 2024-02-20 16:05:44.82 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test po https://example.com/ 18241 432633 432493.432629.432633.432636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6309389655482 0 \N \N f 0 \N 0 148238422 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 433187 2024-02-20 23:31:53.207 2024-02-20 23:41:54.744 Body situation without keep first per. Financial magazine Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three. https://example.com/ 9438 \N 433187 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3414178548128 0 \N \N f 0 \N 1 97115110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433384 2024-02-21 05:42:18.529 2024-02-21 05:52:19.679 \N Explain company fish seek great become ago field. Letter men https://example.com/ 9339 432015 430892.431823.432015.433384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6097972894227 0 \N \N f 0 \N 0 188674923 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 439195 2024-02-26 12:41:33.382 2024-02-26 12:51:35.457 \N Blood coach citizen choice defense. Sound part which https://example.com/ 18832 439139 439139.439195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1709167917734 0 \N \N f 0 \N 0 219742419 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439224 2024-02-26 12:54:52.707 2024-02-26 13:04:53.917 \N O https://example.com/ 19938 439216 439139.439216.439224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7350697545206 0 \N \N f 0 \N 0 212756870 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439196 2024-02-26 12:42:08.335 2024-02-26 12:52:09.355 \N Police do base plan how. Her add beautiful attack cu https://example.com/ 14202 439139 439139.439196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.25116797261394 0 \N \N f 0 \N 0 104068618 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 436876 2024-02-24 03:20:35.555 2024-02-24 03:30:37.26 \N Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network https://example.com/ 8541 436769 436729.436769.436876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5517884214711 0 \N \N f 0 \N 0 74216953 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 436877 2024-02-24 03:21:59.906 2024-02-24 03:32:01.482 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed https://example.com/ 21451 436837 436837.436877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7722469998195 0 \N \N f 0 \N 1 213677566 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436821 2024-02-24 01:40:46.453 2024-02-24 01:50:48.501 \N Region side point win through. Deep check rather loss world adult. Easy subje https://example.com/ 13055 436413 436413.436821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7478150096801 0 \N \N f 0 \N 0 23115544 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 392336 2024-01-18 09:35:03.952 2024-01-18 09:45:05.154 Professional Research either follo https://example.com/ 2293 \N 392336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.879983511156 0 \N \N f 0 \N 6 2849220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433123 2024-02-20 22:21:14.247 2024-02-20 22:31:15.246 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreemen https://example.com/ 8289 432920 432920.433123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.25150756354913 0 \N \N f 0 \N 11 219083141 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439191 2024-02-26 12:40:26.473 2024-02-26 12:50:27.988 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million diffi https://example.com/ 3506 439185 439142.439185.439191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66148077920021 0 \N \N f 0 \N 0 70630123 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439185 2024-02-26 12:38:12.744 2024-02-26 12:48:15.563 \N Somebody head others contain moment. Which our old outside property then building. Subject hundred more https://example.com/ 17217 439142 439142.439185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4268838245464 0 \N \N f 0 \N 1 188826400 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439225 2024-02-26 12:55:45.626 2024-02-26 13:05:47.45 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend https://example.com/ 20287 439168 439123.439128.439168.439225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.24584571112988 0 \N \N f 0 \N 0 112887453 0 f f \N \N \N \N 439123 \N 0 0 \N \N f \N 439168 2024-02-26 12:28:30.056 2024-02-26 12:38:31.503 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nResearch either follow ac https://example.com/ 21037 439128 439123.439128.439168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5462375473822 0 \N \N f 0 \N 1 109157987 0 f f \N \N \N \N 439123 \N 0 0 \N \N f \N 433200 2024-02-20 23:46:50.173 2024-02-20 23:56:51.552 \N Quite teacher accept per agent PM suddenly reveal. Land country scho https://example.com/ 12346 433195 432661.433195.433200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2513254483153 0 \N \N f 0 \N 0 84737260 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 443603 2024-02-29 14:50:49.115 2024-02-29 15:00:50.623 \N Would week boy close different again part. Stop school continue environment need charge place. Nation w https://example.com/ 19394 443592 443399.443515.443592.443603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7964761123018 0 \N \N f 0 \N 0 148966981 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 433227 2024-02-21 00:09:12.523 2024-02-21 00:19:13.951 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Deb https://example.com/ 21472 433224 432920.432980.432992.433029.433220.433224.433227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4286758488958 0 \N \N f 0 \N 1 137053052 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432992 2024-02-20 20:24:42.878 2024-02-20 20:34:44.892 \N Tax kid loss hear https://example.com/ 12911 432980 432920.432980.432992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.05872577468534 0 \N \N f 0 \N 21 101185842 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433202 2024-02-20 23:48:55.405 2024-02-20 23:58:56.848 \N Direction netw https://example.com/ 19105 433199 432920.432980.432992.433029.433196.433199.433202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0450961973457 0 \N \N f 0 \N 0 217438641 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433203 2024-02-20 23:50:11.125 2024-02-21 00:00:13.568 \N Inside https://example.com/ 20306 432921 432921.433203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6374896712483 0 \N \N f 0 \N 0 38376463 0 f f \N \N \N \N 432921 \N 0 0 \N \N f \N 433120 2024-02-20 22:19:49.708 2024-02-20 22:29:51.181 If put nothing put pick futur Hundred position represent six morning manag https://example.com/ 2832 \N 433120 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 20.1052690386001 0 \N \N f 0 \N 0 114480945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433213 2024-02-21 00:00:06.923 2024-02-21 00:10:08.116 \N East fast despite responsibility machine. Listen mean about sinc https://example.com/ 8506 432633 432493.432629.432633.433213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9094220183252 0 \N \N f 0 \N 0 192275884 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 438202 2024-02-25 12:57:48.766 2024-02-25 13:07:50.542 Site coach strong dark while new security push. Else call threat matter resour Young shake push https://example.com/ 2039 \N 438202 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.66059474577167 0 \N \N f 0 \N 13 197563777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439248 2024-02-26 13:04:23.983 2024-02-26 13:14:25.325 \N Reflect fill team movie draw red group. Congress wit https://example.com/ 11491 439139 439139.439248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.94125140763695 0 \N \N f 0 \N 0 185890106 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 431861 2024-02-19 20:59:44.551 2024-02-19 21:09:45.632 \N Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large cours https://example.com/ 5112 430892 430892.431861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47649978743096 0 \N \N f 0 \N 3 21188172 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 430892 2024-02-19 15:57:28.623 2024-02-19 16:07:30.462 Safe pass wife stay effort mission. Ma Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. https://example.com/ 1245 \N 430892 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.8967340146933 0 \N \N f 0 \N 53 229981604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439188 2024-02-26 12:40:02.03 2024-02-26 12:50:03.284 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prev https://example.com/ 644 439142 439142.439188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8317682187593 0 \N \N f 0 \N 21 110253028 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 434300 2024-02-21 21:25:29.942 2024-02-21 21:35:31.606 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perh https://example.com/ 21466 433878 433878.434300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44072275254916 0 \N \N f 0 \N 0 171357701 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 392661 2024-01-18 15:11:56.947 2024-01-18 15:22:06.72 Born value hundred med Seven nice notice wife they couple. Suffer town happy l https://example.com/ 1652 \N 392661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4373993682984 0 \N \N f 0 \N 7 241672258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432664 2024-02-20 16:27:35.33 2024-02-20 16:37:36.502 Cell civil on much able sure Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve https://example.com/ 20153 \N 432664 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.779959006382 0 \N \N f 0 \N 3 101010767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439230 2024-02-26 12:57:24.783 2024-02-26 13:07:25.836 Anything common leader response. Source news glas Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing. https://example.com/ 16769 \N 439230 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.7600966661939 0 \N \N f 0 \N 0 80928793 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433241 2024-02-21 00:17:12.945 2024-02-21 00:27:14.198 \N Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I exper https://example.com/ 12169 433111 432920.433111.433241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2652182739863 0 \N \N f 0 \N 0 246638183 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439240 2024-02-26 13:01:08.196 2024-02-26 13:11:09.572 \N Charge hold reveal easy rise method leave. Property https://example.com/ 5759 439139 439139.439240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4352535631625 0 \N \N f 0 \N 0 5609900 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 441955 2024-02-28 13:51:57.167 2024-02-28 14:01:58.818 Family material upon Democrat. The remain appe Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact. https://example.com/ 7772 \N 441955 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0570865266213 0 \N \N f 0 \N 0 205919892 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433025 2024-02-20 20:57:21.302 2024-02-20 21:07:23.123 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should https://example.com/ 21416 433016 432889.432894.432910.433016.433025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9228603779652 0 \N \N f 0 \N 0 118314660 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 433188 2024-02-20 23:32:34.42 2024-02-20 23:42:35.935 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police https://example.com/ 19235 433111 432920.433111.433188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6303237561137 0 \N \N f 0 \N 0 66742051 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433222 2024-02-21 00:04:35.439 2024-02-21 00:14:36.906 \N Treatment dream at American often discussion. Whole light trade rest wide adm https://example.com/ 795 433218 433049.433124.433182.433218.433222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2757094243814 0 \N \N f 0 \N 0 48235786 0 f f \N \N \N \N 433049 \N 0 0 \N \N f \N 433212 2024-02-20 23:59:05.3 2024-02-21 00:09:07.022 \N Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade eac https://example.com/ 13055 433206 432920.433206.433212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.001512059331 0 \N \N f 0 \N 1 172900964 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433016 2024-02-20 20:44:36.666 2024-02-20 20:54:37.924 \N Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok pa https://example.com/ 15833 432910 432889.432894.432910.433016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9578809049139 0 \N \N f 0 \N 1 69450566 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 433210 2024-02-20 23:58:23.308 2024-02-21 00:08:24.947 \N Happy strong Democrat some goal new servic https://example.com/ 8713 432705 432705.433210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06502193480273 0 \N \N f 0 \N 0 29568797 0 f f \N \N \N \N 432705 \N 0 0 \N \N f \N 434358 2024-02-21 22:27:54.099 2024-02-21 22:37:55.832 \N Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime https://example.com/ 8380 434278 434278.434358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3586471639918 0 \N \N f 0 \N 2 26308311 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433134 2024-02-20 22:40:16.027 2024-02-20 22:50:17.025 \N Four learn t https://example.com/ 11862 433116 433108.433116.433134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4316418056739 0 \N \N f 0 \N 0 121890274 0 f f \N \N \N \N 433108 \N 0 0 \N \N f \N 439243 2024-02-26 13:02:09.484 2024-02-26 13:12:11.522 \N Cell language east present. Federal arrive much. Dru https://example.com/ 4388 439139 439139.439243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2475900684149 0 \N \N f 0 \N 0 107376555 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433140 2024-02-20 22:44:05.141 2024-02-20 22:54:06.63 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. https://example.com/ 6191 433024 433024.433140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9527744587303 0 \N \N f 0 \N 2 3793373 0 f f \N \N \N \N 433024 \N 0 0 \N \N f \N 433141 2024-02-20 22:44:44.978 2024-02-20 22:54:46.753 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity https://example.com/ 21563 433140 433024.433140.433141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.67036321138 0 \N \N f 0 \N 1 111994418 0 f f \N \N \N \N 433024 \N 0 0 \N \N f \N 433231 2024-02-21 00:11:28.092 2024-02-21 00:21:29.223 \N Candidate down city sin https://example.com/ 21577 433227 432920.432980.432992.433029.433220.433224.433227.433231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2563912064889 0 \N \N f 0 \N 0 39841261 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433235 2024-02-21 00:13:02.143 2024-02-21 00:23:03.657 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mo https://example.com/ 21249 433141 433024.433140.433141.433235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.78706361315523 0 \N \N f 0 \N 0 77300498 0 f f \N \N \N \N 433024 \N 0 0 \N \N f \N 433215 2024-02-21 00:00:25.102 2024-02-21 00:10:27.322 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometim https://example.com/ 16387 433114 433114.433215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5772096824676 0 \N \N f 0 \N 0 128196766 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433234 2024-02-21 00:12:32.693 2024-02-21 00:22:34.056 \N Than level lawyer mouth they put. https://example.com/ 1960 433232 432920.433123.433232.433234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31102990275294 0 \N \N f 0 \N 5 201910757 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432493 2024-02-20 14:14:17.871 2024-02-20 14:24:18.984 Service technology include study exactly enter. Country eac Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nMor https://example.com/ 9433 \N 432493 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.68462003892468 0 \N \N f 0 \N 7 184487857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433219 2024-02-21 00:03:04.199 2024-02-21 00:13:04.818 \N Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nImage reality politi https://example.com/ 10273 433201 432977.432981.433201.433219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76649862316803 0 \N \N f 0 \N 0 5788042 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 433097 2024-02-20 22:04:03.108 2024-02-20 22:14:04.816 Already real me back ahead especially drug late. Doctor Action prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later. https://example.com/ 12261 \N 433097 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.880744929159 0 \N \N f 0 \N 1 51080864 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439245 2024-02-26 13:02:31.491 2024-02-26 13:12:34.345 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once finan https://example.com/ 1571 439150 439139.439150.439245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5787321903213 0 \N \N f 0 \N 0 138556823 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433021 2024-02-20 20:51:10.374 2024-02-20 21:01:12.115 Beyond leg century level herself those. Significant group collection investment Measure would expert nation https://example.com/ 1833 \N 433021 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 2.07090448165211 0 \N \N f 0 \N 0 51188097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443632 2024-02-29 14:59:31.382 2024-02-29 15:09:32.747 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nMore recently quality despite ball good throughout https://example.com/ 726 441070 441070.443632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.226893242696811 0 \N \N f 0 \N 0 200138690 0 f f \N \N \N \N 441070 \N 0 0 \N \N f \N 433230 2024-02-21 00:11:22.584 2024-02-21 00:21:24.037 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nBoth peace drug most bring in https://example.com/ 5565 432920 432920.433230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.84384167460378 0 \N \N f 0 \N 1 219122480 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433224 2024-02-21 00:04:51.587 2024-02-21 00:14:53.207 \N Scientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question https://example.com/ 6030 433220 432920.432980.432992.433029.433220.433224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9461216982381 0 \N \N f 0 \N 2 32189863 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433225 2024-02-21 00:05:02.83 2024-02-21 00:15:03.536 \N Follow commercial image consider media these. Drop pro https://example.com/ 1136 433114 433114.433225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1759193548429 0 \N \N f 0 \N 0 87531112 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439208 2024-02-26 12:50:20.652 2024-02-26 13:00:21.988 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost q https://example.com/ 4574 438617 437524.437945.438055.438342.438617.439208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1218318163138 0 \N \N f 0 \N 0 36543204 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 433209 2024-02-20 23:57:38.355 2024-02-21 00:07:40.176 \N Near whom sit wonder both https://example.com/ 20555 433150 432664.433150.433209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0930467983301 0 \N \N f 0 \N 0 63975429 0 f f \N \N \N \N 432664 \N 0 0 \N \N f \N 439218 2024-02-26 12:53:26.922 2024-02-26 13:03:27.876 \N Recent yourself price region detail leader. Positive https://example.com/ 16532 439186 439139.439186.439218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3300065663684 0 \N \N f 0 \N 0 249656188 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433220 2024-02-21 00:03:31.234 2024-02-21 00:13:33.111 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nAdmin https://example.com/ 2123 433029 432920.432980.432992.433029.433220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6824212781919 0 \N \N f 0 \N 3 46041523 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433221 2024-02-21 00:03:40.929 2024-02-21 00:13:42.186 \N She for deep administration everybody under front ov https://example.com/ 14385 433201 432977.432981.433201.433221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5829344079105 0 \N \N f 0 \N 0 186475640 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 438599 2024-02-25 19:47:12.526 2024-02-25 19:57:13.738 \N Customer include control and. Chance blue audience right could course six always. Whole film M https://example.com/ 18403 438325 438325.438599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2880211194726 0 \N \N f 0 \N 1 13061562 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 433206 2024-02-20 23:56:41.139 2024-02-21 00:06:43.429 \N Deep some relate building buy then. Letter common approach education artist as. Section refl https://example.com/ 20470 432920 432920.433206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0575445443379 0 \N \N f 0 \N 2 103553886 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432981 2024-02-20 20:17:04.813 2024-02-20 20:27:06.579 \N Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. https://example.com/ 6058 432977 432977.432981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18372242506157 0 \N \N f 0 \N 3 136048671 0 f f \N \N \N \N 432977 \N 0 0 \N \N f \N 439258 2024-02-26 13:08:16.779 2024-02-26 13:08:22.226 \N Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit compa https://example.com/ 1576 301869 24587.301869.439258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.258151666978 0 \N \N f 0 \N 0 123873041 0 f f \N \N \N \N 24587 \N 0 0 \N \N f \N 433211 2024-02-20 23:58:48.152 2024-02-21 00:08:49.153 \N Thank rule physical trip attorney sta https://example.com/ 4502 433182 433049.433124.433182.433211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36357523854399 0 \N \N f 0 \N 0 179058271 0 f f \N \N \N \N 433049 \N 0 0 \N \N f \N 432977 2024-02-20 20:14:22.377 2024-02-20 20:24:23.199 Every good development clearly poor. Fact former Go special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certai https://example.com/ 5495 \N 432977 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 27.3022207250215 0 \N \N f 0 \N 7 184521978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439211 2024-02-26 12:51:22.783 2024-02-26 13:01:23.705 \N Movie teacher to only m https://example.com/ 7510 439177 439029.439077.439094.439177.439211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01343973508051 0 \N \N f 0 \N 1 131041662 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 433223 2024-02-21 00:04:36.378 2024-02-21 00:14:38.006 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch eas https://example.com/ 21393 433212 432920.433206.433212.433223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4137291398836 0 \N \N f 0 \N 0 206910636 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433145 2024-02-20 22:49:31.861 2024-02-20 22:59:33.139 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut https://example.com/ 16571 433139 433114.433139.433145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4961020549769 0 \N \N f 0 \N 1 52234270 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433251 2024-02-21 00:28:29.895 2024-02-21 00:38:31.573 \N Way maj https://example.com/ 17494 433233 432899.433233.433251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.55524251628052 0 \N \N f 0 \N 0 138722280 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 433118 2024-02-20 22:17:45.126 2024-02-20 22:27:46.619 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach th https://example.com/ 895 433066 433066.433118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9113235645163 0 \N \N f 0 \N 0 46463327 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433237 2024-02-21 00:14:32.094 2024-02-21 00:24:33.466 \N Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nMove treatment rock open. Everything type become employee situation https://example.com/ 15560 433230 432920.433230.433237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2252339199182 0 \N \N f 0 \N 0 171553396 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439150 2024-02-26 12:12:33.624 2024-02-26 12:22:34.914 \N Far clearly possible enter. Turn safe position thought pressure https://example.com/ 11670 439139 439139.439150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8173825581617 0 \N \N f 0 \N 1 112317747 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433131 2024-02-20 22:37:28.205 2024-02-20 22:47:30.033 \N Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million feder https://example.com/ 15239 433127 433114.433127.433131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.63282102465232 0 \N \N f 0 \N 1 135548378 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433228 2024-02-21 00:09:33.053 2024-02-21 00:19:34.001 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level ac https://example.com/ 14381 433149 432987.433050.433121.433149.433228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6094802583371 0 \N \N f 0 \N 0 77320913 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 439214 2024-02-26 12:52:33.827 2024-02-26 13:02:35.643 \N Seek military only heart. Side ahead exist spring. C https://example.com/ 14308 439139 439139.439214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42038598265941 0 \N \N f 0 \N 0 65089009 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433262 2024-02-21 00:38:40.238 2024-02-21 00:48:41.605 \N Action prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nPoor often speak everyone collecti https://example.com/ 12921 433255 432920.433123.433232.433234.433255.433262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9036339062049 0 \N \N f 0 \N 1 234159227 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433934 2024-02-21 16:30:39.185 2024-02-21 16:40:40.273 Past hospital she war. Firm spring game seem. Recently night how billion. Power Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff. https://example.com/ 17172 \N 433934 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 3.05937480414663 0 \N \N f 0 \N 6 105399410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434356 2024-02-21 22:25:15.059 2024-02-21 22:35:16.67 \N Event at administrati https://example.com/ 13246 434288 434288.434356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.83291110374333 0 \N \N f 0 \N 0 194088423 0 f f \N \N \N \N 434288 \N 0 0 \N \N f \N 439270 2024-02-26 13:15:40.456 2024-02-26 13:25:42.187 \N Ty https://example.com/ 11165 439211 439029.439077.439094.439177.439211.439270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8503625205862 0 \N \N f 0 \N 0 84985888 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 433243 2024-02-21 00:19:14.699 2024-02-21 00:29:15.715 \N Stock already suddenly east inter https://example.com/ 15326 432926 432736.432905.432926.433243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1843044409571 0 \N \N f 0 \N 1 35086459 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 439217 2024-02-26 12:53:26.59 2024-02-26 13:03:27.875 \N In grow start way president as compare. Away pe https://example.com/ 19546 439139 439139.439217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3354063684979 0 \N \N f 0 \N 0 198533969 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434343 2024-02-21 22:07:08.258 2024-02-21 22:17:09.172 Single level story sound. Door end upon benefit second month toget Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away. https://example.com/ 19732 \N 434343 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.6355983547137 0 \N \N f 0 \N 1 115910262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434344 2024-02-21 22:07:13.618 2024-02-21 22:17:15.179 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience https://example.com/ 760 434297 434297.434344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1417498994981 0 \N \N f 0 \N 0 125743497 0 f f \N \N \N \N 434297 \N 0 0 \N \N f \N 433257 2024-02-21 00:35:38.209 2024-02-21 00:45:39.494 \N Fac https://example.com/ 19622 433256 433066.433130.433164.433256.433257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37152872810369 0 \N \N f 0 \N 0 246164833 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433245 2024-02-21 00:21:33.398 2024-02-21 00:31:34.982 \N Republican part letter tonight. https://example.com/ 4487 433114 433114.433245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.090456710646 0 \N \N f 0 \N 1 204888631 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433124 2024-02-20 22:22:06.788 2024-02-20 22:32:08.064 \N Yard someone shake final someone purpose. Remain say care bui https://example.com/ 20511 433049 433049.433124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4988712283858 0 \N \N f 0 \N 5 164189069 0 f f \N \N \N \N 433049 \N 0 0 \N \N f \N 433164 2024-02-20 23:07:13.745 2024-02-20 23:17:15.475 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nPolice civil h https://example.com/ 6160 433130 433066.433130.433164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8307715955079 0 \N \N f 0 \N 2 55861262 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433254 2024-02-21 00:31:34.885 2024-02-21 00:41:35.939 \N Rise environmental middle fly listen rest national. Fall hospital https://example.com/ 11458 433096 433031.433096.433254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8508010893917 0 \N \N f 0 \N 0 129080102 0 f f \N \N \N \N 433031 \N 0 0 \N \N f \N 434866 2024-02-22 12:02:33.128 2024-02-22 12:12:34.708 \N Trade guy water between. Whom structure design. Item give suc https://example.com/ 20152 434797 434795.434797.434866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58133754807316 0 \N \N f 0 \N 5 241742054 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439227 2024-02-26 12:56:31.464 2024-02-26 13:06:33.634 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nResult treatment smile capital teacher camera. Policy g https://example.com/ 20108 438202 438202.439227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28593107580361 0 \N \N f 0 \N 0 210603959 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 437911 2024-02-25 03:09:32.022 2024-02-25 03:19:34.113 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really mon https://example.com/ 3544 437879 437524.437879.437911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8906794100213 0 \N \N f 0 \N 0 246139726 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 433226 2024-02-21 00:08:11.329 2024-02-21 00:18:12.861 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recogni https://example.com/ 19292 417624 417213.417624.433226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0476356006365 0 \N \N f 0 \N 0 25644243 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 433271 2024-02-21 00:53:03.649 2024-02-21 01:03:05.249 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amo https://example.com/ 7418 432909 432909.433271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9911016176629 0 \N \N f 0 \N 0 161275756 0 f f \N \N \N \N 432909 \N 0 0 \N \N f \N 434349 2024-02-21 22:15:10.011 2024-02-21 22:25:12.047 \N Go special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natur https://example.com/ 9845 434278 434278.434349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1467357745001 0 \N \N f 0 \N 0 218393025 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433242 2024-02-21 00:18:07.569 2024-02-21 00:28:12.011 \N Seat commercial through property new. Career audience bo https://example.com/ 14225 432873 432873.433242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.76750724117548 0 \N \N f 0 \N 1 173678900 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433239 2024-02-21 00:16:32.032 2024-02-21 00:26:33.638 \N Most describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nLight environmenta https://example.com/ 19449 433053 432822.433053.433239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1725847157238 0 \N \N f 0 \N 0 29309506 0 f f \N \N \N \N 432822 \N 0 0 \N \N f \N 433258 2024-02-21 00:36:13.671 2024-02-21 00:46:14.934 \N Affect body wonder do still debate affe https://example.com/ 19639 432594 432563.432576.432584.432586.432594.433258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9535012360833 0 \N \N f 0 \N 2 204839442 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 433244 2024-02-21 00:19:23.055 2024-02-21 00:29:24.144 Individual low nice character home Congress preven Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop ind https://example.com/ 18819 \N 433244 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.6230397263826 0 \N \N f 0 \N 0 26764854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437278 2024-02-24 14:39:25.775 2024-02-24 14:49:27.169 \N Yes but https://example.com/ 2774 436928 436753.436857.436928.437278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8806720998915 0 \N \N f 0 \N 1 184547341 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 439256 2024-02-26 13:07:15.545 2024-02-26 13:17:17.418 \N Individual low nice character home Congress prevent. https://example.com/ 21361 439154 439130.439154.439256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.19769996339109 0 \N \N f 0 \N 1 35840643 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 433253 2024-02-21 00:30:47.266 2024-02-21 00:40:49.48 \N Clea https://example.com/ 631 433066 433066.433253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6419602769542 0 \N \N f 0 \N 0 24425555 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433264 2024-02-21 00:40:30.331 2024-02-21 00:50:31.61 \N Development https://example.com/ 11522 433252 432920.432980.432992.433032.433034.433204.433252.433264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5981237678144 0 \N \N f 0 \N 2 57613088 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434933 2024-02-22 13:04:07.242 2024-02-22 13:14:08.466 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference nort https://example.com/ 10979 434898 434646.434877.434898.434933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83552723316117 0 \N \N f 0 \N 1 159965266 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 433197 2024-02-20 23:41:30.226 2024-02-20 23:51:31.02 \N Girl someone prepare. Realize however yeah staff kitchen gas. Rev https://example.com/ 6749 433193 433114.433181.433193.433197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3036013107177 0 \N \N f 0 \N 0 65190435 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 437914 2024-02-25 03:20:46.131 2024-02-25 03:30:47.451 \N Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white https://example.com/ 4167 437706 436720.437052.437226.437706.437914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5488742506549 0 \N \N f 0 \N 0 48147630 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 439226 2024-02-26 12:56:05.911 2024-02-26 13:06:07.415 Industry benefit as tree standard worry cultural. Back possible machine above Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus. https://example.com/ 18556 \N 439226 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.68866109751577 0 \N \N f 0 \N 1 235299112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433246 2024-02-21 00:23:20.451 2024-02-21 00:33:21.653 \N Right term sell shoulder. Next ch https://example.com/ 894 433242 432873.433242.433246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6049460510968 0 \N \N f 0 \N 0 86444922 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 432106 2024-02-20 02:30:49.12 2024-02-20 02:40:50.111 Raise represent leave during huge through early. Foreign instead activity line Blood admit none others arm style. Here establish night parent. Special this large three of centr https://example.com/ 21575 \N 432106 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 26.8972060189747 0 \N \N f 0 \N 3 118350243 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433269 2024-02-21 00:50:35.95 2024-02-21 01:06:03.8 Source scientist Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these. https://example.com/ 17212 \N 433269 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 4.48272202636062 0 \N \N f 0 \N 0 10854648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433112 2024-02-20 22:14:36.664 2024-02-20 22:24:38.118 \N Pull fact question for unit up community interest. Sign cr https://example.com/ 720 433102 432957.433102.433112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52556940946538 0 \N \N f 0 \N 1 19867258 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433031 2024-02-20 21:09:46.644 2024-02-20 21:19:48.101 Describe modern fund cultural rea Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nStage can fish building senior. Through position capital officia https://example.com/ 1064 \N 433031 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.10370665657858 0 \N \N f 0 \N 3 159851901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439236 2024-02-26 12:59:22.481 2024-02-26 13:09:23.519 \N Test rock daughter nation moment. Article want structure campaign. Piece profession https://example.com/ 21247 439139 439139.439236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6703426143039 0 \N \N f 0 \N 0 226203813 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434892 2024-02-22 12:28:29.014 2024-02-22 12:38:30.608 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nArtist fly billion same. Go may avoid exactly si https://example.com/ 1472 434787 434642.434787.434892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2960497478791 0 \N \N f 0 \N 0 11872691 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434910 2024-02-22 12:46:04.962 2024-02-22 12:56:06.568 \N Agency rate seven fear open. Design group sense left enjoy. Voice care conference https://example.com/ 16876 433937 433937.434910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7535541244368 0 \N \N f 0 \N 0 232775488 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 434714 2024-02-22 09:36:51.211 2024-02-22 09:46:53.148 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old https://example.com/ 951 433835 433555.433835.434714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6411085672916 0 \N \N f 0 \N 0 113536454 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433256 2024-02-21 00:34:19.994 2024-02-21 00:44:21.282 \N Beyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nRange network baby that. Smile common political animal simple include. Law there bac https://example.com/ 10283 433164 433066.433130.433164.433256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.95399926072113 0 \N \N f 0 \N 1 108103375 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433261 2024-02-21 00:37:35.632 2024-02-21 00:47:37.109 \N Affect body wonder do still debate affect work. Bed town job neces https://example.com/ 10818 433218 433049.433124.433182.433218.433261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.74336244388 0 \N \N f 0 \N 0 116172867 0 f f \N \N \N \N 433049 \N 0 0 \N \N f \N 439268 2024-02-26 13:15:12.421 2024-02-26 13:25:14.17 \N Yard someone shake final someone purpose. Remain say care building event different. This see https://example.com/ 15662 439249 439142.439188.439194.439223.439235.439246.439249.439268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0541100960393 0 \N \N f 0 \N 0 229744983 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439260 2024-02-26 13:09:57.387 2024-02-26 13:19:59.939 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nStoc https://example.com/ 18393 439130 439130.439260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7671233892911 0 \N \N f 0 \N 0 212155535 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 439262 2024-02-26 13:10:29.761 2024-02-26 13:20:31.691 Movie teacher to only my necessary. Quite away wonde Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nSafe pass wi https://example.com/ 14357 \N 439262 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.03546894415234 0 \N \N f 0 \N 1 165322838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434359 2024-02-21 22:30:30.637 2024-02-21 22:40:32.399 \N Adult carry https://example.com/ 714 434336 433878.434336.434359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8114632601689 0 \N \N f 0 \N 0 169462092 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 434337 2024-02-21 22:00:30.268 2024-02-21 22:10:31.815 \N Power herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight ac https://example.com/ 8713 433937 433937.434337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1601609556404 0 \N \N f 0 \N 0 214395051 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 434333 2024-02-21 21:58:53.47 2024-02-21 22:08:55.51 \N Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little ca https://example.com/ 18896 434317 434317.434333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80280577779511 0 \N \N f 0 \N 3 167634095 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 432353 2024-02-20 11:03:50.943 2024-02-20 11:13:52.623 \N Customer include control and. Chance blue audience right could course six alway https://example.com/ 15075 432349 432344.432348.432349.432353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19218854457912 0 \N \N f 0 \N 2 104255840 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439241 2024-02-26 13:01:27.585 2024-02-26 13:11:29.318 \N Leave example rock. According prepare administration https://example.com/ 1047 439139 439139.439241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.31740840970229 0 \N \N f 0 \N 0 59091449 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 20615 2022-04-17 18:41:05.355 2023-10-02 00:41:29.274 Want fire Them response usually tax tax. Marriage check appear memory w https://example.com/ 17693 \N 20615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5180830245218 0 \N \N f 0 \N 4 86217768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439242 2024-02-26 13:01:57.413 2024-02-26 13:11:59.484 \N Say this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing res https://example.com/ 17713 438599 438325.438599.439242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.76470119593499 0 \N \N f 0 \N 0 222631290 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 433182 2024-02-20 23:24:29.347 2024-02-20 23:34:30.724 \N North beat realize. School remain number s https://example.com/ 15732 433124 433049.433124.433182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6329761392262 0 \N \N f 0 \N 4 2859832 0 f f \N \N \N \N 433049 \N 0 0 \N \N f \N 439244 2024-02-26 13:02:28.849 2024-02-26 13:12:30.205 \N Parent control wide song section few. Region one kee https://example.com/ 16848 439139 439139.439244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2827860737009 0 \N \N f 0 \N 0 128613618 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433279 2024-02-21 01:06:26.835 2024-02-21 01:16:28.548 \N Company kid protect determine adult. Increase add pl https://example.com/ 1272 433260 433260.433279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81793352014196 0 \N \N f 0 \N 2 223941747 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433105 2024-02-20 22:08:46.223 2024-02-20 22:18:48.206 \N Popular entire medical office can. Those begin for own offer rela https://example.com/ 15484 432961 432873.432961.433105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8876294966091 0 \N \N f 0 \N 2 99108503 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439247 2024-02-26 13:03:46.174 2024-02-26 13:13:47.75 \N Parent always at part must all. Every win environmen https://example.com/ 21222 439139 439139.439247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3509105623253 0 \N \N f 0 \N 0 45765771 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439246 2024-02-26 13:02:58.369 2024-02-26 13:12:59.736 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask m https://example.com/ 18330 439235 439142.439188.439194.439223.439235.439246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.60851569371144 0 \N \N f 0 \N 2 141004483 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433290 2024-02-21 01:28:13.966 2024-02-21 01:38:15.064 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nPlay director employee. Tend central those now stor https://example.com/ 20509 433108 433108.433290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1382459917473 0 \N \N f 0 \N 0 123494731 0 f f \N \N \N \N 433108 \N 0 0 \N \N f \N 433285 2024-02-21 01:17:27.897 2024-02-21 01:27:30.015 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clear https://example.com/ 13553 433052 432920.433007.433052.433285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0034977675351 0 \N \N f 0 \N 2 136002780 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 438798 2024-02-26 01:15:07.842 2024-02-26 01:25:09.748 Increase section kind decision. Individual mission song always form parent top. Floor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different. https://example.com/ 794 \N 438798 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0864295798233 0 \N \N f 0 \N 1 231925735 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439249 2024-02-26 13:04:53.719 2024-02-26 13:14:55.728 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just https://example.com/ 9476 439246 439142.439188.439194.439223.439235.439246.439249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9200049528197 0 \N \N f 0 \N 1 104269877 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 438726 2024-02-25 22:53:10.451 2024-02-25 23:03:11.915 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its t https://example.com/ 9433 438515 437723.437880.438075.438515.438726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0680244696153 0 \N \N f 0 \N 1 27959142 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 439269 2024-02-26 13:15:26.457 2024-02-26 13:25:27.995 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Cha https://example.com/ 1272 439266 438605.438773.438908.439266.439269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6211667422468 0 \N \N f 0 \N 0 243250281 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 439252 2024-02-26 13:06:07.049 2024-02-26 13:16:08.271 \N Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fac https://example.com/ 20655 439226 439226.439252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15165579861199 0 \N \N f 0 \N 0 237143715 0 f f \N \N \N \N 439226 \N 0 0 \N \N f \N 433377 2024-02-21 05:33:47.657 2024-02-21 05:43:48.723 Range laugh tho Ten throw trip https://example.com/ 21421 \N 433377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9762158498607 0 \N \N f 0 \N 9 137421708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439253 2024-02-26 13:06:14.45 2024-02-26 13:16:15.592 \N Artist sound return full resource lay people. Attent https://example.com/ 20602 439139 439139.439253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44868772729802 0 \N \N f 0 \N 0 212971262 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433095 2024-02-20 22:03:26.509 2024-02-20 22:13:30.5 \N Know son future suggest paper https://example.com/ 1733 433067 433067.433095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6510688513551 0 \N \N f 0 \N 1 2260570 0 f f \N \N \N \N 433067 \N 0 0 \N \N f \N 433278 2024-02-21 01:05:40.499 2024-02-21 01:15:41.78 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physic https://example.com/ 1881 433217 433217.433278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.38715036256963 0 \N \N f 0 \N 1 238542136 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433415 2024-02-21 06:33:12.73 2024-02-21 06:43:13.71 \N Identify painting degree hit shake film. Plan government around. At hand voice https://example.com/ 17321 433365 433364.433365.433415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3679100634129 0 \N \N f 0 \N 0 42106290 0 f f \N \N \N \N 433364 \N 0 0 \N \N f \N 433101 2024-02-20 22:06:27.549 2024-02-20 22:16:28.79 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get let https://example.com/ 20573 433095 433067.433095.433101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7727799720222 0 \N \N f 0 \N 0 46017225 0 f f \N \N \N \N 433067 \N 0 0 \N \N f \N 433067 2024-02-20 21:44:52.907 2024-02-20 21:54:54.735 Pattern fear term. Second always control type movie. Girl at movie card able. An Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during succe https://example.com/ 5359 \N 433067 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.6878778689006 0 \N \N f 0 \N 5 91326386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439033 2024-02-26 10:08:11.061 2024-02-26 10:18:12.811 \N They wide job. Hit particular political street near https://example.com/ 20687 438907 438325.438404.438777.438907.439033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87534460795959 0 \N \N f 0 \N 0 216375867 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 432951 2024-02-20 19:54:00.234 2024-02-20 20:04:02.307 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First https://example.com/ 6765 432948 432948.432951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6311918629727 0 \N \N f 0 \N 1 150402463 0 f f \N \N \N \N 432948 \N 0 0 \N \N f \N 433078 2024-02-20 21:50:53.587 2024-02-20 22:00:54.64 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water n https://example.com/ 16667 432951 432948.432951.433078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5689858788148 0 \N \N f 0 \N 0 45377909 0 f f \N \N \N \N 432948 \N 0 0 \N \N f \N 433274 2024-02-21 01:01:33.031 2024-02-21 01:11:34.229 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do h https://example.com/ 694 433265 432563.432576.432584.432586.432594.433258.433265.433274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0757118161987 0 \N \N f 0 \N 0 48597795 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 433270 2024-02-21 00:52:24.992 2024-02-21 01:02:26.187 \N According shake the attack guy development pressure. Police cultural https://example.com/ 11829 433263 433024.433089.433263.433270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84125989103609 0 \N \N f 0 \N 0 189173832 0 f f \N \N \N \N 433024 \N 0 0 \N \N f \N 433059 2024-02-20 21:41:16.31 2024-02-20 21:51:17.712 \N Single above reach it school step. https://example.com/ 1801 433056 433056.433059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8178854414385 0 \N \N f 0 \N 0 241540607 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 433027 2024-02-20 21:00:28.662 2024-02-20 21:10:29.656 Order care many fire per fee Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Avai https://example.com/ 2773 \N 433027 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 22.9606151671545 0 \N \N f 0 \N 4 125107603 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433301 2024-02-21 02:00:26.456 2024-02-21 02:10:27.507 \N Fly include one church TV air. Democrat institutio https://example.com/ 19506 433291 433291.433301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12177820958593 0 \N \N f 0 \N 0 57446667 0 f f \N \N \N \N 433291 \N 0 0 \N \N f \N 433295 2024-02-21 01:38:52.044 2024-02-21 01:48:52.679 \N By evening job should nature real https://example.com/ 20409 433260 433260.433295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1659356389065 0 \N \N f 0 \N 1 153603558 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433294 2024-02-21 01:38:03.573 2024-02-21 01:48:05.156 \N Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. W https://example.com/ 19796 432987 432987.433294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9478342478574 0 \N \N f 0 \N 0 241390487 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 433135 2024-02-20 22:41:07.382 2024-02-20 22:51:08.545 \N Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thou https://example.com/ 1814 433122 433087.433103.433122.433135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7578764470006 0 \N \N f 0 \N 2 108981469 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 437906 2024-02-25 03:03:49.46 2024-02-25 03:13:50.737 \N Range lau https://example.com/ 2961 160106 159987.160106.437906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75289082169002 0 \N \N f 0 \N 0 57542666 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 433276 2024-02-21 01:04:28.306 2024-02-21 01:14:29.491 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be mig https://example.com/ 698 433131 433114.433127.433131.433276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.762935174663 0 \N \N f 0 \N 0 75220200 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433272 2024-02-21 01:00:12.333 2024-02-21 01:10:14.005 \N Quite way soldier would back near. Modern consid https://example.com/ 16808 433264 432920.432980.432992.433032.433034.433204.433252.433264.433272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8741443949674 0 \N \N f 0 \N 1 197385398 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434280 2024-02-21 20:55:35.951 2024-02-21 21:05:37.209 \N Return agreement happy health option. https://example.com/ 1092 433934 433934.434280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6770799592019 0 \N \N f 0 \N 1 211694820 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 433268 2024-02-21 00:48:15.311 2024-02-21 00:58:16.88 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife state https://example.com/ 19501 432957 432957.433268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6673830391665 0 \N \N f 0 \N 0 170153666 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433265 2024-02-21 00:41:56.972 2024-02-21 00:51:58.103 \N Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while https://example.com/ 716 433258 432563.432576.432584.432586.432594.433258.433265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1532004346499 0 \N \N f 0 \N 1 97832979 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 433286 2024-02-21 01:18:24.666 2024-02-21 01:28:25.736 \N Just condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. https://example.com/ 1310 433285 432920.433007.433052.433285.433286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3600310012786 0 \N \N f 0 \N 0 111502490 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434276 2024-02-21 20:42:14.887 2024-02-21 20:52:17.919 \N Reach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward https://example.com/ 16988 433588 433588.434276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98413233690557 0 \N \N f 0 \N 4 97389416 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433298 2024-02-21 01:51:49.536 2024-02-21 02:01:51.135 \N Republ https://example.com/ 1519 433260 433260.433298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7406597792502 0 \N \N f 0 \N 0 208162810 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433259 2024-02-21 00:36:37.856 2024-02-21 00:46:39.117 Support structure season energy group. Important nearly dark. Sense cou Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nMaterial arm interest draw produ https://example.com/ 21614 \N 433259 \N \N \N \N \N \N \N \N science \N ACTIVE \N 13.7541732816851 0 \N \N f 0 \N 2 212152707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433252 2024-02-21 00:29:12.067 2024-02-21 00:39:12.93 \N Down item fund list company https://example.com/ 12272 433204 432920.432980.432992.433032.433034.433204.433252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81740032773936 0 \N \N f 0 \N 3 38934902 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434338 2024-02-21 22:01:33.043 2024-02-21 22:11:34.325 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor https://example.com/ 18209 434243 434243.434338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8555481228888 0 \N \N f 0 \N 1 58418532 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 433277 2024-02-21 01:05:12.573 2024-02-21 01:15:13.688 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nFive now source affect police. Various nature large campaign. Able local another billion power issue d https://example.com/ 1626 433272 432920.432980.432992.433032.433034.433204.433252.433264.433272.433277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0791245790674 0 \N \N f 0 \N 0 197156136 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433280 2024-02-21 01:06:28.669 2024-02-21 01:16:29.608 \N Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Bes https://example.com/ 9355 433105 432873.432961.433105.433280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7785346639679 0 \N \N f 0 \N 1 100041034 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433426 2024-02-21 06:56:13.44 2024-02-21 07:06:14.671 \N Bet https://example.com/ 5306 433302 433302.433426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7425220898486 0 \N \N f 0 \N 0 31529480 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 434340 2024-02-21 22:01:37.763 2024-02-21 22:11:39.44 \N Idea seem tend attack act common her r https://example.com/ 4014 434329 434289.434312.434329.434340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26279272881543 0 \N \N f 0 \N 0 193060203 0 f f \N \N \N \N 434289 \N 0 0 \N \N f \N 433273 2024-02-21 01:00:16.498 2024-02-21 01:10:17.353 \N Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our he https://example.com/ 21104 433135 433087.433103.433122.433135.433273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2722992873233 0 \N \N f 0 \N 1 179368491 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 433283 2024-02-21 01:08:37.92 2024-02-21 01:18:39.272 \N Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under rec https://example.com/ 18139 433279 433260.433279.433283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7389567165515 0 \N \N f 0 \N 1 13901737 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433089 2024-02-20 21:57:10.603 2024-02-20 22:07:11.608 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really pow https://example.com/ 5703 433024 433024.433089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5767610294155 0 \N \N f 0 \N 2 214848811 0 f f \N \N \N \N 433024 \N 0 0 \N \N f \N 438075 2024-02-25 10:30:26.592 2024-02-25 10:40:28.579 \N These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front https://example.com/ 20680 437880 437723.437880.438075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1279095183083 0 \N \N f 0 \N 5 168455121 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 432985 2024-02-20 20:21:50.798 2024-02-20 20:31:52.63 Seven which natur Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task cl https://example.com/ 895 \N 432985 \N \N \N \N \N \N \N \N art \N ACTIVE \N 8.95511320517485 0 \N \N f 0 \N 0 202848730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433319 2024-02-21 02:35:10.73 2024-02-21 02:45:12.286 \N Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agen https://example.com/ 5961 432889 432889.433319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48426368455677 0 \N \N f 0 \N 1 146593632 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 438146 2024-02-25 11:49:55.265 2024-02-25 11:59:57.305 Explain order help within. Effort get edge open n Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple. https://example.com/ 12516 \N 438146 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.53586601416431 0 \N \N f 0 \N 0 129490900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433275 2024-02-21 01:03:51.516 2024-02-21 01:13:53.064 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nDetail economy still boy fine i https://example.com/ 7558 433273 433087.433103.433122.433135.433273.433275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.857063525632 0 \N \N f 0 \N 0 38127149 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 433288 2024-02-21 01:23:25.274 2024-02-21 01:33:27.884 \N Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge https://example.com/ 2361 433285 432920.433007.433052.433285.433288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90431982745295 0 \N \N f 0 \N 0 220534942 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432710 2024-02-20 16:56:43.868 2024-02-20 17:06:44.89 \N Affect director focus feeling w https://example.com/ 16059 432551 432517.432551.432710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7035365128837 0 \N \N f 0 \N 1 195532865 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 433184 2024-02-20 23:27:11.944 2024-02-20 23:37:13.042 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil https://example.com/ 8544 432710 432517.432551.432710.433184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6533995506662 0 \N \N f 0 \N 0 112149796 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 434350 2024-02-21 22:15:29.673 2024-02-21 22:26:02.818 Nature wrong meeting whatever. Manage product me stay police. At propert Real https://example.com/ 20858 \N 434350 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 19.9921896178244 0 \N \N f 0 \N 0 115717928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439063 2024-02-26 10:37:44.096 2024-02-26 10:47:45.175 \N Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nNight on mention rather nation soldier everything. Herself tell begin https://example.com/ 11423 438596 438596.439063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8634768275713 0 \N \N f 0 \N 0 81380811 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 438720 2024-02-25 22:37:42.553 2024-02-25 22:47:43.714 \N Same ne https://example.com/ 10056 438671 438583.438671.438720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9130082516716 0 \N \N f 0 \N 0 69391489 0 f f \N \N \N \N 438583 \N 0 0 \N \N f \N 433282 2024-02-21 01:07:05.333 2024-02-21 01:17:06.233 Such among bank choice themselves. Matter in really important. Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer. https://example.com/ 16542 \N 433282 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.2752810016667 0 \N \N f 0 \N 6 151671679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434355 2024-02-21 22:23:04.988 2024-02-21 22:33:06.098 \N Often culture through program https://example.com/ 632 433737 433435.433737.434355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1385459635417 0 \N \N f 0 \N 0 248257916 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 439265 2024-02-26 13:12:28.987 2024-02-26 13:22:30.139 \N Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea https://example.com/ 19863 439256 439130.439154.439256.439265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7191816035321 0 \N \N f 0 \N 0 182791550 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 439271 2024-02-26 13:15:43.015 2024-02-26 13:25:44.808 \N Quickly build security. Thought structure likely par https://example.com/ 8713 439139 439139.439271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7287440574742 0 \N \N f 0 \N 0 127474262 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433406 2024-02-21 06:05:51.031 2024-02-21 06:15:52.205 \N Never hotel town trip thus safe eight. Share hi https://example.com/ 669 432247 432247.433406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2457064708694 0 \N \N f 0 \N 1 31313601 0 f f \N \N \N \N 432247 \N 0 0 \N \N f \N 433292 2024-02-21 01:30:00.243 2024-02-21 01:40:01.184 \N Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone https://example.com/ 20205 433291 433291.433292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.11106931048199 0 \N \N f 0 \N 0 166089593 0 f f \N \N \N \N 433291 \N 0 0 \N \N f \N 438134 2024-02-25 11:37:48.996 2024-02-25 11:47:51.154 Author professional find face reflect. Defense Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular. https://example.com/ 8080 \N 438134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.08854958709369 0 \N \N f 0 \N 0 145478026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433508 2024-02-21 09:22:51.613 2024-02-21 09:32:53.47 \N Own machine table https://example.com/ 19622 433054 432466.433054.433508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9897418714171 0 \N \N f 0 \N 3 70106275 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 439285 2024-02-26 13:24:58.964 2024-02-26 13:35:00.232 Direction business early probab Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight. https://example.com/ 20972 \N 439285 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 1.7849547635905 0 \N \N f 0 \N 0 1048875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433296 2024-02-21 01:39:55.481 2024-02-21 01:49:57.105 \N Main teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone https://example.com/ 16876 433247 432920.433186.433247.433296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91053608342307 0 \N \N f 0 \N 2 12284638 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439300 2024-02-26 13:32:13.966 2024-02-26 13:42:15.473 \N Sort thus staff hard network character production million. H https://example.com/ 2188 439139 439139.439300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1641729179032 0 \N \N f 0 \N 0 239191056 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 438975 2024-02-26 08:09:28.97 2024-02-26 08:19:29.874 Every good development clearly poor. Fact former improve h Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. R https://example.com/ 13169 \N 438975 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1042954386399 0 \N \N f 0 \N 1 219061566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438216 2024-02-25 13:14:18.922 2024-02-25 13:24:20.922 We teacher join same push onto. Gas character each when conditio Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short. https://example.com/ 19087 \N 438216 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1682798741834 0 \N \N f 0 \N 0 205825364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433305 2024-02-21 02:08:00.642 2024-02-21 02:18:01.871 \N Risk clearly listen table total. Plan age big easy off. Toward alo https://example.com/ 1650 433157 433156.433157.433305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3727869989587 0 \N \N f 0 \N 0 68753759 0 f f \N \N \N \N 433156 \N 0 0 \N \N f \N 433297 2024-02-21 01:48:18.135 2024-02-21 01:58:19.882 \N It suggest s https://example.com/ 21003 433295 433260.433295.433297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5816027504285 0 \N \N f 0 \N 0 199314842 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433293 2024-02-21 01:32:27.094 2024-02-21 01:42:28.877 \N Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better t https://example.com/ 18736 433214 433108.433214.433293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6772400523966 0 \N \N f 0 \N 0 124371950 0 f f \N \N \N \N 433108 \N 0 0 \N \N f \N 433303 2024-02-21 02:05:39.789 2024-02-21 02:15:40.944 Plan theory effec Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself. https://example.com/ 20560 \N 433303 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6754013028206 0 \N \N f 0 \N 0 150316259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438109 2024-02-25 11:18:52.134 2024-02-25 11:28:53.671 Never new shoulder lose threat star. Pro Become popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern. https://example.com/ 8945 \N 438109 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.8513747794065 0 \N \N f 0 \N 1 17432709 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433214 2024-02-21 00:00:16.01 2024-02-21 00:10:17.172 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign https://example.com/ 11561 433108 433108.433214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5752239552846 0 \N \N f 0 \N 1 227144473 0 f f \N \N \N \N 433108 \N 0 0 \N \N f \N 438087 2024-02-25 10:51:14.691 2024-02-25 11:01:16.754 Consumer point treat task. Shake bill player campaign really return customer. R We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still t https://example.com/ 14663 \N 438087 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.14054210249776 0 \N \N f 0 \N 0 106451815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433306 2024-02-21 02:08:39.479 2024-02-21 02:18:41.037 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. https://example.com/ 15941 428934 428573.428620.428855.428934.433306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0198505921866499 0 \N \N f 0 \N 0 39016060 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 433289 2024-02-21 01:23:51.837 2024-02-21 01:33:53.317 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing ma https://example.com/ 21391 433232 432920.433123.433232.433289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5443500363388 0 \N \N f 0 \N 0 195812842 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434329 2024-02-21 21:56:59.279 2024-02-21 22:07:01.177 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build https://example.com/ 18280 434312 434289.434312.434329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2189198149687 0 \N \N f 0 \N 1 74694768 0 f f \N \N \N \N 434289 \N 0 0 \N \N f \N 434354 2024-02-21 22:23:03.14 2024-02-21 22:33:04.525 \N Type door https://example.com/ 913 434351 434351.434354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.201661477155568 0 \N \N f 0 \N 0 168649487 0 f f \N \N \N \N 434351 \N 0 0 \N \N f \N 439178 2024-02-26 12:36:19.851 2024-02-26 12:46:21.216 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. https://example.com/ 18114 439139 439139.439178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6148897882751 0 \N \N f 0 \N 0 115851643 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433299 2024-02-21 01:52:23.401 2024-02-21 02:02:24.817 \N Property this American law baby doctor. Everybody reduce institution inside education heart his. Entir https://example.com/ 9985 432920 432920.433299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5768951408701 0 \N \N f 0 \N 1 135202399 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433320 2024-02-21 02:35:55.839 2024-02-21 02:45:57.548 \N Know son future suggest paper personal these million. Hund https://example.com/ 21563 433291 433291.433320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.932999162442 0 \N \N f 0 \N 0 46794128 0 f f \N \N \N \N 433291 \N 0 0 \N \N f \N 433311 2024-02-21 02:13:42.981 2024-02-21 02:23:43.775 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait la https://example.com/ 880 433299 432920.433299.433311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.719970925523 0 \N \N f 0 \N 0 234133496 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433310 2024-02-21 02:12:05.238 2024-02-21 02:22:07.4 \N Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character https://example.com/ 826 433255 432920.433123.433232.433234.433255.433310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.11625336875706 0 \N \N f 0 \N 1 68641234 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432794 2024-02-20 17:46:36.242 2024-02-20 17:56:37.733 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach off https://example.com/ 18836 432301 432301.432794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2547039999091 0 \N \N f 0 \N 0 191522837 0 f f \N \N \N \N 432301 \N 0 0 \N \N f \N 439216 2024-02-26 12:53:22.198 2024-02-26 13:03:23.097 \N Watch tell middle above. Happen move consider across https://example.com/ 13217 439139 439139.439216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.144076384421759 0 \N \N f 0 \N 1 165861639 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 432113 2024-02-20 02:38:22.019 2024-02-20 02:48:23.122 Together tree bar tonight. Safe admit knowledg Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level. https://example.com/ 11423 \N 432113 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.277962816679214 0 \N \N f 0 \N 9 42208806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433316 2024-02-21 02:26:25.379 2024-02-21 02:36:27.276 \N Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant https://example.com/ 2710 433280 432873.432961.433105.433280.433316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89180848581285 0 \N \N f 0 \N 0 1134582 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433037 2024-02-20 21:16:13.949 2024-02-20 21:26:15.025 News animal hour keep yourse Such yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nSame need interesting between watch base city by. Anything many watch style collection arm https://example.com/ 671 \N 433037 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.70495984137067 0 \N \N f 0 \N 2 79209062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432948 2024-02-20 19:53:15.884 2024-02-20 20:03:17.299 Blood admit none others arm style. Here establish night parent. Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself. https://example.com/ 16406 \N 432948 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.91168250283776 0 \N \N f 0 \N 2 148869014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432979 2024-02-20 20:15:19.235 2024-02-20 20:25:20.95 Set how recognize operation American. Account avoid miss maybe idea w Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nAct lay son hear. Apply https://example.com/ 7097 \N 432979 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 26.3389047196556 0 \N \N f 0 \N 2 126116727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434347 2024-02-21 22:11:44.822 2024-02-21 22:21:46.062 \N Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nOff class property ok try. Outside fast glass response environ https://example.com/ 4521 434280 433934.434280.434347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9061813823198 0 \N \N f 0 \N 0 204733505 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 434766 2024-02-22 10:29:20.539 2024-02-22 10:39:21.691 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nWhose top property well serve national accoun https://example.com/ 2010 433828 433828.434766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7068148698648 0 \N \N f 0 \N 0 222899801 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434312 2024-02-21 21:36:42.258 2024-02-21 21:46:43.359 \N Turn where describe while kitchen special. Today measure adult bag. Road when data preside https://example.com/ 20577 434289 434289.434312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1212330251675 0 \N \N f 0 \N 2 43050622 0 f f \N \N \N \N 434289 \N 0 0 \N \N f \N 432560 2024-02-20 15:00:04.774 2024-02-20 15:10:06.612 Get hear chair. Far president effe \N https://example.com/ 20554 \N 432560 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.1998972607459 0 \N \N f 0 \N 5 233164256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433314 2024-02-21 02:17:39.301 2024-02-21 02:27:41.376 \N Beat ca https://example.com/ 9347 432953 432953.433314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56226404181448 0 \N \N f 0 \N 0 127801478 0 f f \N \N \N \N 432953 \N 0 0 \N \N f \N 432511 2024-02-20 14:29:17.218 2024-02-20 14:39:18.907 Position see least suddenly just order specific. Center build alone night. Lea Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game https://example.com/ 12821 \N 432511 \N \N \N \N \N \N \N \N science \N ACTIVE \N 20.961525281044 0 \N \N f 0 \N 11 210759686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434891 2024-02-22 12:27:08.196 2024-02-22 12:37:09.344 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive o https://example.com/ 4126 434889 434317.434675.434886.434889.434891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0731173462473578 0 \N \N f 0 \N 1 85776223 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 433176 2024-02-20 23:17:35.45 2024-02-20 23:27:36.506 Customer include control and. Chance blue audience right could course si Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around https://example.com/ 21523 \N 433176 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 14.959307057472 0 \N \N f 0 \N 0 158794167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441950 2024-02-28 13:51:00.086 2024-02-28 14:01:01.861 \N A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His stu https://example.com/ 18690 441816 441816.441950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1964453235286 0 \N \N f 0 \N 3 114315087 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 433322 2024-02-21 02:39:38.606 2024-02-21 02:49:39.752 Item attention child take film late. Still next free list. Artist seven Instead believe animal then however price particularly. When whose economic others million. Ready long thank https://example.com/ 5757 \N 433322 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 15.5335765345216 0 \N \N f 0 \N 1 211059091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433950 2024-02-21 16:42:25.986 2024-02-21 16:52:26.771 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group https://example.com/ 658 433435 433435.433950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0851397712973 0 \N \N f 0 \N 1 73150163 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 432953 2024-02-20 19:54:47.847 2024-02-20 20:04:49.309 International ground thought computer someb Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually. https://example.com/ 6798 \N 432953 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.66379431067994 0 \N \N f 0 \N 2 212049402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433157 2024-02-20 23:01:00.227 2024-02-20 23:11:02.316 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future https://example.com/ 19375 433156 433156.433157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8726194722669 0 \N \N f 0 \N 1 110940801 0 f f \N \N \N \N 433156 \N 0 0 \N \N f \N 433318 2024-02-21 02:34:32.543 2024-02-21 02:44:33.608 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then hi https://example.com/ 20509 433217 433217.433318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.87377932084915 0 \N \N f 0 \N 1 190605954 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433156 2024-02-20 23:00:16.937 2024-02-20 23:10:18.473 Four whole sort. Every summer organization baby part Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become. https://example.com/ 21012 \N 433156 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.83384670181809 0 \N \N f 0 \N 2 123753921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439201 2024-02-26 12:45:34.921 2024-02-26 12:55:37.461 \N Economic clearly dark. Understand remain performance https://example.com/ 6229 439139 439139.439201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3099441285871 0 \N \N f 0 \N 0 208007467 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439238 2024-02-26 12:59:42.976 2024-02-26 13:09:43.872 \N From democratic trial American blue. Save carry son https://example.com/ 18472 439139 439139.439238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3433734959015 0 \N \N f 0 \N 0 148339861 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433307 2024-02-21 02:09:31.016 2024-02-21 02:19:32.047 \N Station mean dinner level well window. Develop white performance https://example.com/ 21520 429107 428573.428850.429107.433307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4138412226369 0 \N \N f 0 \N 0 64029356 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 442142 2024-02-28 15:15:37.102 2024-02-28 15:25:38.092 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic https://example.com/ 19118 442140 442084.442106.442117.442118.442140.442142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.53682903459 0 \N \N f 0 \N 2 200355851 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 433407 2024-02-21 06:08:34.067 2024-02-21 06:18:35.314 \N New particularl https://example.com/ 1833 433114 433114.433407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2698143456968 0 \N \N f 0 \N 0 34780014 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433332 2024-02-21 03:03:57.809 2024-02-21 03:13:59.76 \N Focus area mean. Sometimes responsibility table law. Lot d https://example.com/ 1130 429534 429534.433332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9968634116004 0 \N \N f 0 \N 0 232310804 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 442183 2024-02-28 15:32:40.666 2024-02-28 15:42:42.288 \N Down his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student f https://example.com/ 20781 441695 441695.442183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7113762495991 0 \N \N f 0 \N 0 95640783 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 439302 2024-02-26 13:33:36.807 2024-02-26 13:43:37.826 Risk clearly list Opportunity hospita https://example.com/ 688 \N 439302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5220798546991 0 \N \N f 0 \N 0 85335139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433313 2024-02-21 02:16:29.61 2024-02-21 02:26:31.407 Live class artist pull nearly poor. Use vote reli Mention trip someone idea until physical. Prote https://example.com/ 987 \N 433313 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.1233527130003 0 \N \N f 0 \N 2 118373051 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434357 2024-02-21 22:25:37.187 2024-02-21 22:35:38.88 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own sta https://example.com/ 16447 434184 434184.434357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6388039380103 0 \N \N f 0 \N 0 56084787 0 f f \N \N \N \N 434184 \N 0 0 \N \N f \N 432398 2024-02-20 12:00:11.987 2024-02-20 12:10:13.05 \N South both increase democ https://example.com/ 2056 432394 432339.432394.432398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8780485075929 0 \N \N f 0 \N 0 178507953 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 433321 2024-02-21 02:39:05.873 2024-02-21 02:49:07.86 \N Ground baby describe https://example.com/ 15160 433317 433114.433317.433321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7367495855239 0 \N \N f 0 \N 2 82285380 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433308 2024-02-21 02:09:53.537 2024-02-21 02:19:55.52 \N Treatment dream at American often discussion. Who https://example.com/ 16355 432953 432953.433308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0664384387686 0 \N \N f 0 \N 0 191215944 0 f f \N \N \N \N 432953 \N 0 0 \N \N f \N 433291 2024-02-21 01:29:50.978 2024-02-21 01:39:53.011 Stand red drop occur tell week sure worker. Skill teacher purpo Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share. https://example.com/ 2330 \N 433291 \N \N \N \N \N \N \N \N science \N ACTIVE \N 23.9181965739763 0 \N \N f 0 \N 3 6083220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434184 2024-02-21 18:57:00.221 2024-02-21 19:07:01.534 Need movie coach nation news in about responsibility. Hosp Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich. https://example.com/ 21469 \N 434184 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.7946798733676 0 \N \N f 0 \N 1 231140344 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434321 2024-02-21 21:48:51.562 2024-02-21 21:58:53.759 Quickly imagine he learn effort risk wish. Respond include traditional kitchen Scientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear. https://example.com/ 19981 \N 434321 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.5184764646827 0 \N \N f 0 \N 0 85011308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438922 2024-02-26 06:38:00.329 2024-02-26 06:48:01.812 Beyond new strong important. Final sport thus phys Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist. https://example.com/ 14152 \N 438922 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 9.47149738941189 0 \N \N f 0 \N 1 201142202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433334 2024-02-21 03:06:00.402 2024-02-21 03:16:01.885 \N Work sudd https://example.com/ 700 433331 433331.433334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.95779640689803 0 \N \N f 0 \N 1 24846447 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 432135 2024-02-20 03:09:39.404 2024-02-20 03:19:40.321 Billion here large general understand. Sit action cold which. Approach level exp Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. S https://example.com/ 20412 \N 432135 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7287274721812 0 \N \N f 0 \N 15 64394865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433333 2024-02-21 03:04:52.685 2024-02-21 03:14:53.644 \N Apply president organization risk school prevent baby. https://example.com/ 18615 433080 433056.433076.433080.433333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45580311544524 0 \N \N f 0 \N 0 25175342 0 f f \N \N \N \N 433056 \N 0 0 \N \N f \N 434325 2024-02-21 21:53:32.651 2024-02-21 22:03:33.848 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nOnto although Democrat mind significant trade https://example.com/ 1549 434319 434319.434325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7706553466479 0 \N \N f 0 \N 2 148733629 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 439203 2024-02-26 12:47:19.794 2024-02-26 12:57:21.372 \N Activity just seem enter development throughout. Ago chance fly professor kid how short. Stateme https://example.com/ 6041 439139 439139.439203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29560612153718 0 \N \N f 0 \N 0 123642498 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433336 2024-02-21 03:12:46.855 2024-02-21 03:22:48.398 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future securi https://example.com/ 1224 433109 432913.433086.433109.433336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2913781666029 0 \N \N f 0 \N 1 153366813 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 433325 2024-02-21 02:45:47.256 2024-02-21 02:55:49.706 \N Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Pe https://example.com/ 9 433187 433187.433325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.8280381556011 0 \N \N f 0 \N 0 42430138 0 f f \N \N \N \N 433187 \N 0 0 \N \N f \N 433126 2024-02-20 22:27:30.936 2024-02-20 22:37:32.646 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nMorning better everybody sense https://example.com/ 18539 433051 432982.433011.433051.433126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.13452785627916 0 \N \N f 0 \N 0 51992422 0 f f \N \N \N \N 432982 \N 0 0 \N \N f \N 433330 2024-02-21 02:59:39.649 2024-02-21 03:09:41.498 \N Very yes customer public musi https://example.com/ 20781 433322 433322.433330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4612908261394 0 \N \N f 0 \N 0 74156687 0 f f \N \N \N \N 433322 \N 0 0 \N \N f \N 439204 2024-02-26 12:49:16.901 2024-02-26 12:59:19.58 \N Success against price. Resource end yeah step bit su https://example.com/ 9378 439139 439139.439204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5698968169457 0 \N \N f 0 \N 0 207422409 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433335 2024-02-21 03:07:29.81 2024-02-21 03:17:31.462 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Th https://example.com/ 20306 433259 433259.433335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14270452964423 0 \N \N f 0 \N 1 129165581 0 f f \N \N \N \N 433259 \N 0 0 \N \N f \N 433337 2024-02-21 03:20:53.281 2024-02-21 03:30:54.106 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nAnything common leader response. Source ne https://example.com/ 8985 433326 433302.433326.433337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5509693594012 0 \N \N f 0 \N 0 187595154 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 433328 2024-02-21 02:58:34.603 2024-02-21 03:08:35.765 \N Community least media interest. Senior yet later always. This direction peace sud https://example.com/ 19662 433313 433313.433328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6614886278757 0 \N \N f 0 \N 0 142289990 0 f f \N \N \N \N 433313 \N 0 0 \N \N f \N 434341 2024-02-21 22:02:22.92 2024-02-21 22:12:24.317 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memor https://example.com/ 1047 434325 434319.434325.434341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0759244188705 0 \N \N f 0 \N 1 173117254 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 433326 2024-02-21 02:47:02.977 2024-02-21 02:57:04.498 \N Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Mess https://example.com/ 19117 433302 433302.433326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8389446321018 0 \N \N f 0 \N 1 159410512 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 433329 2024-02-21 02:58:53.823 2024-02-21 03:08:55.812 Thing type great Mr. Choose cover medical bed mention voice Mrs. Others id Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove thro https://example.com/ 20840 \N 433329 \N \N \N \N \N \N \N \N security \N ACTIVE \N 28.3120104903757 0 \N \N f 0 \N 0 99336313 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433363 2024-02-21 04:39:56.575 2024-02-21 04:49:58.633 \N Every good development clearly poor. Fact forme https://example.com/ 11523 419298 419298.433363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3835694042374 0 \N \N f 0 \N 0 127900135 0 f f \N \N \N \N 419298 \N 0 0 \N \N f \N 438738 2024-02-25 23:34:31.259 2024-02-25 23:44:33.466 \N Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least wri https://example.com/ 14074 438596 438596.438738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56797027154413 0 \N \N f 0 \N 0 155812929 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 433340 2024-02-21 03:30:08.473 2024-02-21 03:40:10.165 \N Article discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nActivity itse https://example.com/ 6578 433302 433302.433340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.13063581009886 0 \N \N f 0 \N 0 56351554 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 433338 2024-02-21 03:24:09.523 2024-02-21 03:34:10.613 Truth training network government behavior decade. Beyond Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write. https://example.com/ 19151 \N 433338 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.9290194638034 0 \N \N f 0 \N 0 215213149 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433104 2024-02-20 22:08:22.491 2024-02-20 22:18:24.94 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others https://example.com/ 798 432820 431800.432046.432150.432809.432820.433104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3313689284613 0 \N \N f 0 \N 0 126929273 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 433341 2024-02-21 03:30:08.851 2024-02-21 03:40:10.165 \N Economic clearly dark. Understand remain performance want save because signifi https://example.com/ 20264 433217 433217.433341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0018844715732 0 \N \N f 0 \N 1 163772520 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 432661 2024-02-20 16:26:00.747 2024-02-20 16:36:01.911 Image reality political wind severa Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nGeneration discover realize we. Make important employee https://example.com/ 18836 \N 432661 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 21.8818423417282 0 \N \N f 0 \N 17 196830076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433171 2024-02-20 23:11:44.569 2024-02-20 23:21:47.171 \N We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nBeyond leg century level herself those. Significant group collection inves https://example.com/ 16954 432957 432957.433171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0906525906149 0 \N \N f 0 \N 0 243185272 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 439307 2024-02-26 13:35:31.539 2024-02-26 13:45:32.313 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nFish environm https://example.com/ 2529 438794 438794.439307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4750624001131 0 \N \N f 0 \N 0 186930496 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 439308 2024-02-26 13:35:37.186 2024-02-26 13:45:38.313 \N Pattern someone notice power fly. Against expect new often size top. Station everybody which these clai https://example.com/ 15052 438937 438937.439308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9385882502093 0 \N \N f 0 \N 0 63775045 0 f f \N \N \N \N 438937 \N 0 0 \N \N f \N 437276 2024-02-24 14:36:45.068 2024-02-24 14:46:46.035 Many then growth. Law Beyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nRace report base really very after. Focus red broth https://example.com/ 21600 \N 437276 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.2031372948479 0 \N \N f 0 \N 7 154580059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438932 2024-02-26 07:15:50.882 2024-02-26 07:25:52.441 Strong of create preve College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base invol https://example.com/ 5590 \N 438932 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 21.5672778393539 0 \N \N f 0 \N 2 4602375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433351 2024-02-21 04:04:44.404 2024-02-21 04:14:46.783 \N Garden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structur https://example.com/ 1007 433309 432920.433309.433351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.7334316714376 0 \N \N f 0 \N 0 191531671 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433773 2024-02-21 13:53:41.631 2024-02-21 14:03:43.888 Several follow value modern safe information well your. Meet course your year ev Poor often speak everyone collection quite space. Carry paper floor. https://example.com/ 16649 \N 433773 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.34010521600393 0 \N \N f 0 \N 0 235081091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439301 2024-02-26 13:33:09.999 2024-02-26 13:43:11.317 Career player thing second down win. Feel true explain. Pattern bo Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so. https://example.com/ 9833 \N 439301 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.51895309273 0 \N \N f 0 \N 0 171800637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432776 2024-02-20 17:38:39.559 2024-02-20 17:48:41.181 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. https://example.com/ 2596 432661 432661.432776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83665056999442 0 \N \N f 0 \N 0 145937870 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 433360 2024-02-21 04:31:46.03 2024-02-21 04:41:47.673 \N Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not req https://example.com/ 19569 432829 432517.432829.433360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.879071431636 0 \N \N f 0 \N 0 40681008 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 439254 2024-02-26 13:06:31.651 2024-02-26 13:16:33.595 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar addres https://example.com/ 20551 239220 239220.439254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7972283308404 0 \N \N f 0 \N 0 200415267 0 f f \N \N \N \N 239220 \N 0 0 \N \N f \N 433015 2024-02-20 20:43:50.179 2024-02-20 20:53:51.477 Statement these family dark. Realize American always somebody executi Water wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nEvery east polit https://example.com/ 15119 \N 433015 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.5667010554629 0 \N \N f 0 \N 0 34661139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439282 2024-02-26 13:23:50.029 2024-02-26 13:33:52.224 \N Thus measure find board bag high himself. Very history left. Sit term https://example.com/ 20495 439262 439262.439282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2352930012504 0 \N \N f 0 \N 0 15594456 0 f f \N \N \N \N 439262 \N 0 0 \N \N f \N 431913 2024-02-19 21:47:03.687 2024-02-19 21:57:04.498 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nPass https://example.com/ 19930 431161 431161.431913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21343982397885 0 \N \N f 0 \N 6 214067969 0 f f \N \N \N \N 431161 \N 0 0 \N \N f \N 433353 2024-02-21 04:16:11.301 2024-02-21 04:26:12.737 \N Increase agent management assume system either chance expert. Another down inc https://example.com/ 20683 432549 432517.432549.433353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.19427864421733 0 \N \N f 0 \N 0 233875937 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 439284 2024-02-26 13:24:08.662 2024-02-26 13:34:10.141 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share https://example.com/ 20381 439126 439082.439126.439284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3098128964397 0 \N \N f 0 \N 0 74787978 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439288 2024-02-26 13:27:20.296 2024-02-26 13:37:22.426 \N Who collection suggest practice. Walk them Republica https://example.com/ 20276 439139 439139.439288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9964608373519 0 \N \N f 0 \N 0 199004610 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439289 2024-02-26 13:27:46.584 2024-02-26 13:37:48.145 \N Reach too suffer story type remember lot. Reveal may https://example.com/ 18705 439139 439139.439289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.987007177323 0 \N \N f 0 \N 0 88237426 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439275 2024-02-26 13:21:05.393 2024-02-26 13:31:07.193 \N Reality pressure enjoy throughout beyond. Prop https://example.com/ 17212 439274 438486.438800.438990.439274.439275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94914430548026 0 \N \N f 0 \N 0 83770476 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 439274 2024-02-26 13:19:08.141 2024-02-26 13:29:09.557 \N May building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. https://example.com/ 9366 438990 438486.438800.438990.439274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.82707812763687 0 \N \N f 0 \N 1 51800275 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 438990 2024-02-26 09:01:49.612 2024-02-26 09:11:50.804 \N Quite way soldier would back near. Modern consider federal series dark t https://example.com/ 12102 438800 438486.438800.438990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6097141710069 0 \N \N f 0 \N 2 181444633 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 433355 2024-02-21 04:20:00.708 2024-02-21 04:30:02.401 \N Political perhaps ques https://example.com/ 1236 432899 432899.433355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20925848178401 0 \N \N f 0 \N 0 150009637 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 433300 2024-02-21 01:54:23.023 2024-02-21 02:04:25.233 \N Speak specific energy international more entire partner. Moment los https://example.com/ 20594 433014 432873.433014.433300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4848978423687 0 \N \N f 0 \N 1 140718348 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433284 2024-02-21 01:17:24.591 2024-02-21 01:27:25.986 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose be https://example.com/ 10771 433283 433260.433279.433283.433284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.900620312349 0 \N \N f 0 \N 0 88154318 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433354 2024-02-21 04:17:57.672 2024-02-21 04:27:58.842 \N Trip improve born s https://example.com/ 15719 433313 433313.433354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5625117061169 0 \N \N f 0 \N 0 107701154 0 f f \N \N \N \N 433313 \N 0 0 \N \N f \N 439052 2024-02-26 10:26:36.484 2024-02-26 10:36:39.111 \N Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nTable fish west wish point https://example.com/ 19661 439049 438936.439049.439052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7634176194398 0 \N \N f 0 \N 2 147660298 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432595 2024-02-20 15:23:04.69 2024-02-20 15:33:06.684 \N Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary https://example.com/ 16456 432559 432320.432414.432559.432595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.75913909455013 0 \N \N f 0 \N 5 180998977 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 432653 2024-02-20 16:19:11.621 2024-02-20 16:29:12.858 \N Wrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house https://example.com/ 21103 432596 432320.432414.432559.432595.432596.432653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55355431311138 0 \N \N f 0 \N 2 182869188 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 439310 2024-02-26 13:37:52.229 2024-02-26 13:47:53.401 House west amount. Again high already himself answer type. Go back Mr. Pattern Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power. https://example.com/ 9843 \N 439310 \N \N \N \N \N \N \N \N health \N ACTIVE \N 18.0306101885658 0 \N \N f 0 \N 0 163061836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431317 2024-02-19 18:33:08.893 2024-02-19 18:43:09.799 \N Own machine table garden neces https://example.com/ 16356 378383 378383.431317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.78414714092871 0 \N \N f 0 \N 1 152563905 0 f f \N \N \N \N 378383 \N 0 0 \N \N f \N 436891 2024-02-24 03:55:52.753 2024-02-24 04:05:54.13 \N Wear role agency. Enter back https://example.com/ 8289 436617 436028.436617.436891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7099738367246 0 \N \N f 0 \N 0 196623548 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 433356 2024-02-21 04:21:51.302 2024-02-21 04:31:52.547 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nPlant development someone include maybe. Add https://example.com/ 4323 432609 432517.432609.433356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9256683352937 0 \N \N f 0 \N 0 136992476 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 436888 2024-02-24 03:50:14.963 2024-02-24 04:00:16.251 \N Some nation represent who. Sometimes ability defense great response than. Cost as wal https://example.com/ 20922 436863 436759.436820.436863.436888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71995372927611 0 \N \N f 0 \N 2 119857119 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 433361 2024-02-21 04:32:00.131 2024-02-21 04:42:01.194 Small enjoy manage service indi Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. F https://example.com/ 20500 \N 433361 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 0.779874099488111 0 \N \N f 0 \N 0 216246916 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433478 2024-02-21 08:31:21.538 2024-02-21 08:41:23.095 \N Score player recognize carry. Value wish form build mo https://example.com/ 16270 432873 432873.433478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.554552762745 0 \N \N f 0 \N 0 12680339 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439173 2024-02-26 12:33:49.9 2024-02-26 12:43:51.024 Order science level wish quite. About produ Speech radio kind know. Can travel though PM d https://example.com/ 6191 \N 439173 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 5.29028524048996 0 \N \N f 0 \N 0 20647490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439116 2024-02-26 11:31:55.024 2024-02-26 11:41:56.625 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Compu https://example.com/ 19158 438936 438936.439116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2156568748155 0 \N \N f 0 \N 1 37602332 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433349 2024-02-21 03:55:15.69 2024-02-21 04:05:17.185 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nLanguage effort sport mention guess way. By down lay store race. During heart https://example.com/ 15075 430795 430795.433349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9436259188206 0 \N \N f 0 \N 0 22111400 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 434351 2024-02-21 22:15:59.322 2024-02-21 22:26:00.656 Never hotel town trip thus safe eight Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nSingle above reach it school step. Language book she but https://example.com/ 919 \N 434351 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.3398757732146 0 \N \N f 0 \N 1 36020201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439079 2024-02-26 10:57:06.665 2024-02-26 11:07:08.134 \N Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low https://example.com/ 16998 438936 438936.439079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6076499425874 0 \N \N f 0 \N 1 154274533 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433358 2024-02-21 04:30:02.221 2024-02-21 04:40:03.58 \N Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current https://example.com/ 18679 433010 432344.432952.432984.433010.433358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.34167560689652 0 \N \N f 0 \N 1 188987367 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432984 2024-02-20 20:19:06.538 2024-02-20 20:29:08.516 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. https://example.com/ 18188 432952 432344.432952.432984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8265427343933 0 \N \N f 0 \N 5 75179223 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432933 2024-02-20 19:38:32.069 2024-02-20 19:48:32.886 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year rela https://example.com/ 16808 432887 432344.432382.432386.432771.432887.432933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4810498786918 0 \N \N f 0 \N 3 229148813 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439069 2024-02-26 10:41:10.05 2024-02-26 10:51:11.237 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they les https://example.com/ 19576 438922 438922.439069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.352913704286 0 \N \N f 0 \N 0 104702441 0 f f \N \N \N \N 438922 \N 0 0 \N \N f \N 432320 2024-02-20 10:17:07.456 2024-02-20 10:27:09.13 Never money Congress data single trial. Today water everything reduce executive Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full. https://example.com/ 2151 \N 432320 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.4396438009729 0 \N \N f 0 \N 14 135304881 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433371 2024-02-21 05:18:02.833 2024-02-21 05:28:05.052 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nFoot upon smile pass house significant result small. Some hard relig https://example.com/ 18119 433066 433066.433371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8583880778219 0 \N \N f 0 \N 0 106479339 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433366 2024-02-21 04:54:06.515 2024-02-21 05:04:08.335 \N Outside mother movemen https://example.com/ 17321 433331 433331.433366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7255793388362 0 \N \N f 0 \N 1 249294145 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 432756 2024-02-20 17:26:56.248 2024-02-20 17:36:57.544 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple f https://example.com/ 15890 432724 432661.432724.432756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.69828007998977 0 \N \N f 0 \N 1 225809733 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 433370 2024-02-21 05:12:30.932 2024-02-21 05:22:32.769 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan https://example.com/ 12122 432653 432320.432414.432559.432595.432596.432653.433370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23348384450936 0 \N \N f 0 \N 1 112293606 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 433367 2024-02-21 05:02:08.97 2024-02-21 05:12:10.827 \N Pretty street rather speak unit against k https://example.com/ 20554 433282 433282.433367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4566205274938 0 \N \N f 0 \N 0 60713272 0 f f \N \N \N \N 433282 \N 0 0 \N \N f \N 433368 2024-02-21 05:05:41.617 2024-02-21 05:15:43.171 \N With feel late. Receive one firm spo https://example.com/ 13198 433339 433282.433327.433339.433368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4798929193282 0 \N \N f 0 \N 0 94240446 0 f f \N \N \N \N 433282 \N 0 0 \N \N f \N 433369 2024-02-21 05:06:40.888 2024-02-21 05:16:42.4 \N Morning hundred analysis understand admit prevent. Time bit think as many. Office bad https://example.com/ 21248 432756 432661.432724.432756.433369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8243013047986 0 \N \N f 0 \N 0 226291928 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 434346 2024-02-21 22:09:03.838 2024-02-21 22:19:05.653 \N Leave example rock. Accordin https://example.com/ 10591 433833 433833.434346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8987844958573 0 \N \N f 0 \N 0 242763521 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 433372 2024-02-21 05:20:26.807 2024-02-21 05:30:28.966 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven o https://example.com/ 19770 433370 432320.432414.432559.432595.432596.432653.433370.433372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90889307856494 0 \N \N f 0 \N 0 198678259 0 f f \N \N \N \N 432320 \N 0 0 \N \N f \N 433379 2024-02-21 05:35:52.71 2024-02-21 05:45:53.789 \N White ha https://example.com/ 20891 433377 433377.433379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0422050047186 0 \N \N f 0 \N 1 6643247 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 439311 2024-02-26 13:40:28.111 2024-02-26 13:50:29.976 \N Us less sure. Late tr https://example.com/ 5520 439086 438596.438765.439086.439311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3699964158736 0 \N \N f 0 \N 0 32384541 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 433376 2024-02-21 05:31:48.703 2024-02-21 05:41:50.366 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriag https://example.com/ 4259 433323 432404.432618.433323.433376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3819489446445 0 \N \N f 0 \N 0 178430580 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 432618 2024-02-20 15:44:07.139 2024-02-20 15:54:08.365 \N More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nTruth training netw https://example.com/ 3347 432404 432404.432618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5252784287126 0 \N \N f 0 \N 2 188846370 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 439299 2024-02-26 13:31:53.281 2024-02-26 13:41:54.115 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scien https://example.com/ 19378 438765 438596.438765.439299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85290000626789 0 \N \N f 0 \N 0 215447176 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 439313 2024-02-26 13:40:51.781 2024-02-26 13:50:53.518 \N Best choice maintain she else member https://example.com/ 9169 439052 438936.439049.439052.439313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4366246118728 0 \N \N f 0 \N 1 76417547 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439314 2024-02-26 13:41:35.607 2024-02-26 13:51:36.775 \N Small concern peace on far either. Service clear movie decision follow family whatever. Give https://example.com/ 9346 439079 438936.439079.439314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6707370785266 0 \N \N f 0 \N 0 163474578 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433352 2024-02-21 04:13:45.85 2024-02-21 04:23:47.44 \N Suggest officer purpose professor great school cut. Per agency leg responsibility https://example.com/ 9036 433260 433260.433352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6190900396387 0 \N \N f 0 \N 1 220520178 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433378 2024-02-21 05:35:00.906 2024-02-21 05:45:01.683 \N Newspape https://example.com/ 20826 433352 433260.433352.433378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8878368194406 0 \N \N f 0 \N 0 68071261 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433399 2024-02-21 05:55:55.274 2024-02-21 06:05:56.375 \N Plant strong west enjoy. Those everything may dark face. His seek sea https://example.com/ 763 433315 432339.433315.433399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9257284870234 0 \N \N f 0 \N 0 62711002 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 433394 2024-02-21 05:52:35.749 2024-02-21 06:02:37.307 \N Town liste https://example.com/ 18280 433391 433391.433394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5759615662109 0 \N \N f 0 \N 0 132447912 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 439049 2024-02-26 10:21:29.798 2024-02-26 10:31:32.05 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nDirection poor if however pr https://example.com/ 13544 438936 438936.439049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5799964614944 0 \N \N f 0 \N 3 31518834 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 437959 2024-02-25 05:24:06.272 2024-02-25 05:34:08.182 Poor often speak everyone collection quite space. Car Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometime https://example.com/ 1145 \N 437959 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 9.25884269260791 0 \N \N f 0 \N 0 56050918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439303 2024-02-26 13:33:52.451 2024-02-26 13:43:54.114 \N Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. https://example.com/ 18270 439086 438596.438765.439086.439303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1149250402958 0 \N \N f 0 \N 1 139295474 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 433396 2024-02-21 05:54:20.894 2024-02-21 06:04:22.475 \N Expert kind conference provide. Structure risk https://example.com/ 17517 433391 433391.433396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0642036074193 0 \N \N f 0 \N 0 1678346 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433386 2024-02-21 05:43:26.071 2024-02-21 05:53:27.469 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nBefore appear girl save technology. When speech on everyone traditional. Every l https://example.com/ 10690 433302 433302.433386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3272885338538 0 \N \N f 0 \N 0 77166555 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 434313 2024-02-21 21:37:58.786 2024-02-21 21:47:59.662 \N Want fire once his six environment. Challenge body color about. Under front offic https://example.com/ 3360 434290 434290.434313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79437183235851 0 \N \N f 0 \N 0 194091628 0 f f \N \N \N \N 434290 \N 0 0 \N \N f \N 437902 2024-02-25 03:02:59.479 2024-02-25 03:13:00.858 \N Animal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course https://example.com/ 19886 435154 435154.437902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8163678524103 0 \N \N f 0 \N 0 162105702 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 433205 2024-02-20 23:53:25.73 2024-02-21 00:03:27.141 \N Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove https://example.com/ 6137 432493 432493.433205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19839434521786 0 \N \N f 0 \N 0 36204657 0 f f \N \N \N \N 432493 \N 0 0 \N \N f \N 433420 2024-02-21 06:44:44.057 2024-02-21 06:54:46.795 \N Study question sing. Hour matter case ta https://example.com/ 7899 433403 433403.433420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2641548614134 0 \N \N f 0 \N 0 72890454 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 433419 2024-02-21 06:44:39.654 2024-02-21 06:54:42.055 Event at administration sister school lot behind ready. Popul Light check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score. https://example.com/ 802 \N 433419 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.1030071251487 0 \N \N f 0 \N 0 53252757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433315 2024-02-21 02:24:52.154 2024-02-21 02:34:53.562 \N Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several anoth https://example.com/ 794 432339 432339.433315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.18635841332738 0 \N \N f 0 \N 1 1453011 0 f f \N \N \N \N 432339 \N 0 0 \N \N f \N 433393 2024-02-21 05:51:55.623 2024-02-21 06:01:57.289 \N Human appear she. So happen occur effect. If north bring vote energy d https://example.com/ 21539 433387 433385.433387.433393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0824641498185 0 \N \N f 0 \N 2 18928636 0 f f \N \N \N \N 433385 \N 0 0 \N \N f \N 432339 2024-02-20 10:46:19.346 2024-02-20 10:56:20.338 Per billion school mind. Success hard result worry. Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Pre https://example.com/ 9433 \N 432339 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.9894223099932 0 \N \N f 0 \N 12 40115684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439304 2024-02-26 13:34:28.45 2024-02-26 13:44:30.403 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individu https://example.com/ 20751 438065 438065.439304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3490927690264 0 \N \N f 0 \N 0 184343274 0 f f \N \N \N \N 438065 \N 0 0 \N \N f \N 433410 2024-02-21 06:30:49.917 2024-02-21 06:40:52.121 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell https://example.com/ 21619 431800 431800.433410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6446442080315 0 \N \N f 0 \N 3 59711605 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 432234 2024-02-20 08:15:11.304 2024-02-20 08:25:12.812 Yeah word become defense role yourself su Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate fe https://example.com/ 717 \N 432234 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 13.5839227028118 0 \N \N f 0 \N 2 144626132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437265 2024-02-24 14:29:14.846 2024-02-24 14:39:15.761 \N Never money Congress data single trial. Today water everything reduce executiv https://example.com/ 18507 437249 437216.437249.437265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.09484668446377 0 \N \N f 0 \N 0 230000856 0 f f \N \N \N \N 437216 \N 0 0 \N \N f \N 437481 2024-02-24 17:08:34.202 2024-02-24 17:18:36.403 \N Baby body day citiz https://example.com/ 3990 437278 436753.436857.436928.437278.437481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4262333307515 0 \N \N f 0 \N 0 84345287 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 436901 2024-02-24 04:13:12.454 2024-02-24 04:23:14.272 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really i https://example.com/ 880 436684 436556.436684.436901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29334920652849 0 \N \N f 0 \N 1 164533766 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 433493 2024-02-21 09:00:05.754 2024-02-21 09:00:10.816 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform particip https://example.com/ 21343 433491 433491.433493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.76456888047621 0 \N \N f 0 \N 0 134466113 0 f f \N \N \N \N 433491 \N 0 0 \N \N f \N 437357 2024-02-24 15:19:45.692 2024-02-24 15:29:47.3 Nature wrong meeting whatever. Manage product me stay police. At property all Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. https://example.com/ 9705 \N 437357 \N \N \N \N \N \N \N \N security \N ACTIVE \N 13.9138728585986 0 \N \N f 0 \N 1 190974750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433408 2024-02-21 06:09:46.054 2024-02-21 06:19:47.895 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary i https://example.com/ 19553 433406 432247.433406.433408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1783259073935 0 \N \N f 0 \N 0 198668296 0 f f \N \N \N \N 432247 \N 0 0 \N \N f \N 434570 2024-02-22 05:20:56.699 2024-02-22 05:30:57.827 \N Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit ec https://example.com/ 13246 429644 429644.434570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8632949762253 0 \N \N f 0 \N 0 237906545 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 437484 2024-02-24 17:09:42.41 2024-02-24 17:19:44.499 \N Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represe https://example.com/ 5427 437385 436837.437385.437484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93793494307055 0 \N \N f 0 \N 0 16006883 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 432997 2024-02-20 20:26:45.363 2024-02-20 20:36:46.61 \N A https://example.com/ 2111 432392 432344.432382.432392.432997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.856063535722 0 \N \N f 0 \N 0 142321849 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432392 2024-02-20 11:56:51.739 2024-02-20 12:06:52.909 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again yo https://example.com/ 9166 432382 432344.432382.432392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5664576672375 0 \N \N f 0 \N 1 245335680 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433409 2024-02-21 06:30:49.182 2024-02-21 06:40:50.431 \N Mention well why thank d https://example.com/ 14774 429288 429288.433409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.99819336971126 0 \N \N f 0 \N 0 182132218 0 f f \N \N \N \N 429288 \N 0 0 \N \N f \N 439324 2024-02-26 13:46:38.736 2024-02-26 13:56:40.288 \N Statement record quite ever prepare machine lawyer. Huge https://example.com/ 7583 439082 439082.439324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2088031010669 0 \N \N f 0 \N 0 74785016 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434360 2024-02-21 22:33:48.995 2024-02-21 22:43:50.374 Radio collection claim democra Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class. https://example.com/ 19661 \N 434360 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.7358249834902 0 \N \N f 0 \N 0 120271080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437436 2024-02-24 16:27:16.039 2024-02-24 16:37:18.114 Price occur station prepare be marri Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center jus https://example.com/ 749 \N 437436 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 20.8785406490327 0 \N \N f 0 \N 2 104490845 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437487 2024-02-24 17:11:14.063 2024-02-24 17:21:16.045 \N Always line hot record. Hard discuss suddenly https://example.com/ 17817 437422 436837.437422.437487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0103722535873 0 \N \N f 0 \N 0 63386028 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 433416 2024-02-21 06:36:11.47 2024-02-21 06:46:12.613 Quickly imagine he learn effort risk wish. Respond include traditional kitch Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type. https://example.com/ 21609 \N 433416 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.479740327155 0 \N \N f 0 \N 1 244365158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433412 2024-02-21 06:31:32.323 2024-02-21 06:41:33.786 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nPer over executive. Happy involve mission just compa https://example.com/ 980 433302 433302.433412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.816689371454764 0 \N \N f 0 \N 0 10558318 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 438727 2024-02-25 22:54:27.243 2024-02-25 23:04:28.91 \N Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college be https://example.com/ 2525 438596 438596.438727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57409353637685 0 \N \N f 0 \N 0 84275144 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 435192 2024-02-22 16:28:45.744 2024-02-22 16:38:47.008 \N Special identify senior difference third. S https://example.com/ 20799 434997 434997.435192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55612219815502 0 \N \N f 0 \N 0 29913063 0 f f \N \N \N \N 434997 \N 0 0 \N \N f \N 433423 2024-02-21 06:49:38.195 2024-02-21 06:59:40.616 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport https://example.com/ 20514 433400 433385.433387.433393.433400.433423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.955512627436 0 \N \N f 0 \N 0 102320303 0 f f \N \N \N \N 433385 \N 0 0 \N \N f \N 433414 2024-02-21 06:33:09.013 2024-02-21 06:43:10.361 \N As quality own off https://example.com/ 15409 433391 433391.433414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5480221525098 0 \N \N f 0 \N 0 49352909 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 437528 2024-02-24 17:37:20.901 2024-02-24 17:47:22.367 \N Big time rise yourself all one peace set. Detail else toward open. Un https://example.com/ 802 437396 437396.437528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9462736177946 0 \N \N f 0 \N 1 207351438 0 f f \N \N \N \N 437396 \N 0 0 \N \N f \N 433385 2024-02-21 05:42:41.42 2024-02-21 05:52:42.992 Born value hundred medical loss. Kid white Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. S https://example.com/ 12265 \N 433385 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.9368361179816 0 \N \N f 0 \N 5 224003358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433387 2024-02-21 05:45:18.609 2024-02-21 05:55:19.633 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Somethin https://example.com/ 13798 433385 433385.433387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2186134126182 0 \N \N f 0 \N 3 176127583 0 f f \N \N \N \N 433385 \N 0 0 \N \N f \N 437532 2024-02-24 17:42:43.412 2024-02-24 17:52:44.564 \N Machine thousand determine newspaper four. Street play base. Everyone https://example.com/ 8648 436811 436811.437532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72466200896368 0 \N \N f 0 \N 0 194328933 0 f f \N \N \N \N 436811 \N 0 0 \N \N f \N 433422 2024-02-21 06:49:20.397 2024-02-21 06:59:22.39 As quality own off arm religious but. Site claim natur Mean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group. https://example.com/ 15526 \N 433422 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 26.3779844355123 0 \N \N f 0 \N 4 129692776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433424 2024-02-21 06:50:01.767 2024-02-21 07:00:03.975 \N Likely nat https://example.com/ 1213 433248 433248.433424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6594296641635 0 \N \N f 0 \N 0 249192071 0 f f \N \N \N \N 433248 \N 0 0 \N \N f \N 433440 2024-02-21 07:20:42.012 2024-02-21 07:30:43.893 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doc https://example.com/ 9529 433082 433082.433440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9114980058313 0 \N \N f 0 \N 0 196435088 0 f f \N \N \N \N 433082 \N 0 0 \N \N f \N 433418 2024-02-21 06:39:32.485 2024-02-21 06:49:33.938 Protect evidence very many nearly challenge pay. Debate ahead minute paper. Se Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine. https://example.com/ 5057 \N 433418 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.9049734577816 0 \N \N f 0 \N 0 169987557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433441 2024-02-21 07:23:10.455 2024-02-21 07:33:12.738 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal unders https://example.com/ 16289 433110 432203.432785.433005.433110.433441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8933591286911 0 \N \N f 0 \N 4 69349018 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 433425 2024-02-21 06:52:37.82 2024-02-21 07:02:40.384 \N Go effect true such such wind market. Role suggest perhaps cho https://example.com/ 20156 433422 433422.433425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4959871368871 0 \N \N f 0 \N 0 197297227 0 f f \N \N \N \N 433422 \N 0 0 \N \N f \N 433427 2024-02-21 06:58:19.416 2024-02-21 07:08:20.791 \N Customer reac https://example.com/ 18941 433391 433391.433427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.697713004153 0 \N \N f 0 \N 0 27984224 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433248 2024-02-21 00:26:22.509 2024-02-21 00:36:23.455 Both peace drug most brin Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. https://example.com/ 18449 \N 433248 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 28.3571315805551 0 \N \N f 0 \N 1 45197343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439161 2024-02-26 12:22:27.809 2024-02-26 12:32:28.841 \N New particularly consider condition entire tradi https://example.com/ 21233 439139 439139.439161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4185664264819 0 \N \N f 0 \N 0 121852657 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433452 2024-02-21 07:36:08.375 2024-02-21 07:46:10.463 \N Poor appear go since involve. How form no director material learn child. Customer our dream https://example.com/ 3506 433391 433391.433452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.2548805293052 0 \N \N f 0 \N 2 181205376 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433450 2024-02-21 07:32:22.827 2024-02-21 07:42:24.005 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Esta https://example.com/ 706 433344 433344.433450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8322464803629 0 \N \N f 0 \N 0 246767224 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433417 2024-02-21 06:37:00.445 2024-02-21 06:47:02.096 \N Least start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should https://example.com/ 14449 433416 433416.433417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9606648467098 0 \N \N f 0 \N 0 118551389 0 f f \N \N \N \N 433416 \N 0 0 \N \N f \N 439189 2024-02-26 12:40:05.338 2024-02-26 12:50:07.368 \N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Som https://example.com/ 18396 439130 439130.439189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.13566289245068 0 \N \N f 0 \N 0 2050642 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 439329 2024-02-26 13:51:16.589 2024-02-26 14:01:18.224 \N Station mean dinner level well https://example.com/ 21148 439182 439182.439329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.20791328866851 0 \N \N f 0 \N 4 157032478 0 f f \N \N \N \N 439182 \N 0 0 \N \N f \N 433400 2024-02-21 05:58:09.388 2024-02-21 06:08:11.147 \N Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able a https://example.com/ 21263 433393 433385.433387.433393.433400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80047108952221 0 \N \N f 0 \N 1 163657299 0 f f \N \N \N \N 433385 \N 0 0 \N \N f \N 430926 2024-02-19 16:25:20.91 2024-02-19 16:35:22.335 \N Author travel realize. Face represent bring read gas. G https://example.com/ 11561 430919 430919.430926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09185781047125 0 \N \N f 0 \N 0 33822163 0 f f \N \N \N \N 430919 \N 0 0 \N \N f \N 430919 2024-02-19 16:21:42.446 2024-02-19 16:31:44.489 House west amount. Again high already himself answer type. Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite. https://example.com/ 10719 \N 430919 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7278033392694 0 \N \N f 0 \N 2 109591043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438383 2024-02-25 15:50:22.627 2024-02-25 16:00:24.353 \N At audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nThrough https://example.com/ 20163 438325 438325.438383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0433322622925 0 \N \N f 0 \N 0 1755014 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 433781 2024-02-21 14:00:36.625 2024-02-21 14:10:37.645 \N Never heavy table parti https://example.com/ 963 433555 433555.433781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.556554297946654 0 \N \N f 0 \N 0 227652307 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 439323 2024-02-26 13:46:37.865 2024-02-26 13:56:39.726 Statement could up son I. Range book politics sign I whatever suffer collect Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause. https://example.com/ 21090 \N 439323 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.2081367957466 0 \N \N f 0 \N 0 144528486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439219 2024-02-26 12:53:45.116 2024-02-26 13:03:47.346 \N Seven nice notice wife they couple. S https://example.com/ 5597 438973 438973.439219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6614754539935 0 \N \N f 0 \N 1 90825579 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 432199 2024-02-20 07:10:33.004 2024-02-20 07:20:35.226 Soon raise sense education hold away. Whatever unit career. Party cer Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpo https://example.com/ 17514 \N 432199 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8719770026797 0 \N \N f 0 \N 0 95023402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433430 2024-02-21 07:00:04.965 2024-02-21 07:00:10.654 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kit https://example.com/ 4984 433429 433429.433430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7257686677622 0 \N \N f 0 \N 0 246610252 0 f f \N \N \N \N 433429 \N 0 0 \N \N f \N 433428 2024-02-21 06:58:22.782 2024-02-21 07:08:24.415 \N Religious leg forward yes project thre https://example.com/ 16357 433402 433364.433402.433428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25150133005588 0 \N \N f 0 \N 0 219639447 0 f f \N \N \N \N 433364 \N 0 0 \N \N f \N 438359 2024-02-25 15:18:15.042 2024-02-25 15:28:16.853 \N Hair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nTreatment https://example.com/ 1401 438325 438325.438359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9296366556301 0 \N \N f 0 \N 1 236946697 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 439235 2024-02-26 12:59:16.454 2024-02-26 13:09:17.392 \N Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting scho https://example.com/ 19907 439223 439142.439188.439194.439223.439235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61499625865408 0 \N \N f 0 \N 3 85642751 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 434367 2024-02-21 22:51:55.166 2024-02-21 23:01:56.746 \N It suggest save face though senior walk oil. Establish fi https://example.com/ 6688 433967 433679.433956.433967.434367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86934300612207 0 \N \N f 0 \N 1 127365156 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 433433 2024-02-21 07:10:45.013 2024-02-21 07:20:45.744 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political sc https://example.com/ 19852 432234 432234.433433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7443625208276 0 \N \N f 0 \N 0 34032118 0 f f \N \N \N \N 432234 \N 0 0 \N \N f \N 433432 2024-02-21 07:09:39.709 2024-02-21 07:19:40.827 Million significant throw bui Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night revea https://example.com/ 2780 \N 433432 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 21.3072252831275 0 \N \N f 0 \N 1 99431677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439318 2024-02-26 13:43:04.486 2024-02-26 13:53:05.804 \N Blood very whom mean technology contain rather. Understand staff heavy finish just off https://example.com/ 738 439116 438936.439116.439318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2133446149047 0 \N \N f 0 \N 0 200262737 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433443 2024-02-21 07:24:06.12 2024-02-21 07:34:08.5 \N Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Oper https://example.com/ 669 433429 433429.433443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9345188998719 0 \N \N f 0 \N 0 199079367 0 f f \N \N \N \N 433429 \N 0 0 \N \N f \N 433375 2024-02-21 05:29:32.73 2024-02-21 05:39:33.391 \N Piece conferen https://example.com/ 18909 431317 378383.431317.433375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8463942180216 0 \N \N f 0 \N 0 194314679 0 f f \N \N \N \N 378383 \N 0 0 \N \N f \N 433434 2024-02-21 07:14:41.268 2024-02-21 07:24:42.54 \N Score picture lot professor bed season country. Begin watch tree sout https://example.com/ 20045 431275 383547.431275.433434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.101015173915187 0 \N \N f 0 \N 0 36920613 0 f f \N \N \N \N 383547 \N 0 0 \N \N f \N 433373 2024-02-21 05:28:37.426 2024-02-21 05:38:38.873 Lead against area note Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind. https://example.com/ 9758 \N 433373 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8976886945374 0 \N \N f 0 \N 0 159476495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433442 2024-02-21 07:23:48.473 2024-02-21 07:33:50.135 \N Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour https://example.com/ 18393 433217 433217.433442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92111014102431 0 \N \N f 0 \N 1 132518600 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433344 2024-02-21 03:51:28.854 2024-02-21 04:01:29.668 Lead against area note movement street push music. Meet Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact. https://example.com/ 14906 \N 433344 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3737070283907 0 \N \N f 0 \N 9 249834167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439356 2024-02-26 14:10:39.613 2024-02-26 14:20:41.047 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system https://example.com/ 11220 439352 439142.439188.439194.439223.439352.439356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8483529467799 0 \N \N f 0 \N 0 56319909 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439321 2024-02-26 13:44:06.476 2024-02-26 13:54:08.197 \N Field rock decide physical role these produce camera. Scene Mrs concern pattern. Fl https://example.com/ 2774 438813 438813.439321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9459945609885 0 \N \N f 0 \N 1 244421533 0 f f \N \N \N \N 438813 \N 0 0 \N \N f \N 434373 2024-02-21 22:53:33.595 2024-02-21 23:03:35.127 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment centu https://example.com/ 19854 433876 433740.433876.434373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1585723506563 0 \N \N f 0 \N 1 72421157 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 434376 2024-02-21 22:59:25.885 2024-02-21 23:09:27.809 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relati https://example.com/ 11522 433828 433828.434376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.05843445849963 0 \N \N f 0 \N 1 112584756 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433347 2024-02-21 03:52:28.692 2024-02-21 04:02:29.921 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view https://example.com/ 1273 433217 433217.433347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.61143508657964 0 \N \N f 0 \N 12 171568245 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433348 2024-02-21 03:55:00.335 2024-02-21 04:05:02.044 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare elec https://example.com/ 9809 433217 433217.433348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05698676992517 0 \N \N f 0 \N 1 76694006 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433466 2024-02-21 08:03:17.68 2024-02-21 08:13:19.023 \N May another international budget. https://example.com/ 8162 313552 313552.433466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8770695158351 0 \N \N f 0 \N 0 77595652 0 f f \N \N \N \N 313552 \N 0 0 \N \N f \N 433446 2024-02-21 07:28:43.876 2024-02-21 07:38:45.746 \N Morning create future popular. Shoulder a https://example.com/ 15978 433014 432873.433014.433446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.103721850388 0 \N \N f 0 \N 0 30228056 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 438999 2024-02-26 09:30:06.209 2024-02-26 09:40:07.488 \N Specific child according. Behind far sure back stock. Watch experi https://example.com/ 12609 438983 438973.438983.438999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.05035213879506 0 \N \N f 0 \N 0 64441290 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 439273 2024-02-26 13:18:28.778 2024-02-26 13:28:29.959 \N Method show window brother. https://example.com/ 15703 439126 439082.439126.439273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83410116763789 0 \N \N f 0 \N 1 17057504 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439376 2024-02-26 14:26:10.859 2024-02-26 14:36:12.1 \N Heavy spring happy https://example.com/ 16309 439358 439358.439376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4873958336479 0 \N \N f 0 \N 0 108151211 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 434368 2024-02-21 22:52:07.929 2024-02-21 23:02:09.233 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statem https://example.com/ 20306 434022 433740.434022.434368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41860388826999 0 \N \N f 0 \N 0 125087064 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439338 2024-02-26 13:56:27.078 2024-02-26 14:06:28.826 \N We law local bla https://example.com/ 19462 439273 439082.439126.439273.439338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7620126645126 0 \N \N f 0 \N 0 201861244 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439221 2024-02-26 12:54:17.627 2024-02-26 13:04:19.282 \N Area just subject pretty. Three employee performance. S https://example.com/ 2402 439139 439139.439221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.288946453 0 \N \N f 0 \N 0 12950516 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437183 2024-02-24 13:36:23.171 2024-02-24 13:46:24.665 Structure require feel statement plan economy. Base trouble stage anyone Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nHeart such other on https://example.com/ 21218 \N 437183 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 23.3203126940116 0 \N \N f 0 \N 8 199156318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434464 2024-02-22 01:22:18.283 2024-02-22 01:32:20.323 \N Everyt https://example.com/ 9200 434306 433740.434022.434306.434464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63255296233871 0 \N \N f 0 \N 0 214869954 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 437194 2024-02-24 13:41:27.664 2024-02-24 13:51:28.981 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still sam https://example.com/ 19773 437188 437183.437188.437194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3084962729318 0 \N \N f 0 \N 6 6064280 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 433462 2024-02-21 07:59:27.502 2024-02-21 08:09:28.858 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rat https://example.com/ 5036 433108 433108.433462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6836813409781 0 \N \N f 0 \N 0 138402158 0 f f \N \N \N \N 433108 \N 0 0 \N \N f \N 438831 2024-02-26 02:59:17.74 2024-02-26 03:09:18.683 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine https://example.com/ 9078 438389 438389.438831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1869173024779 0 \N \N f 0 \N 0 103371481 0 f f \N \N \N \N 438389 \N 0 0 \N \N f \N 439255 2024-02-26 13:06:45.82 2024-02-26 13:16:47.853 \N Heart such other on during catch. Itself help computer c https://example.com/ 3347 439139 439139.439255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4614088322711 0 \N \N f 0 \N 0 118087672 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439337 2024-02-26 13:56:17.422 2024-02-26 14:06:18.554 \N Small newspaper answer adult morning. Effort happy right deal. Sta https://example.com/ 17392 439219 438973.439219.439337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2010892792075 0 \N \N f 0 \N 0 66294925 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 435064 2024-02-22 14:54:29.771 2024-02-22 15:04:32.027 \N Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nResearch either follow across either inv https://example.com/ 14650 433828 433828.435064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.92983526879987 0 \N \N f 0 \N 1 95221605 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433679 2024-02-21 12:17:28.502 2024-02-21 12:27:29.975 Bag couple hot buy yourself serve bit. For even true detail East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nElection parent through minute sit. Name others benefit ago commercial. Growth https://example.com/ 20754 \N 433679 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.0930000383446 0 \N \N f 0 \N 10 42812032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433451 2024-02-21 07:34:58.85 2024-02-21 07:45:00.217 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nFar cle https://example.com/ 4973 433442 433217.433442.433451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0849291911287 0 \N \N f 0 \N 0 83819743 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 434374 2024-02-21 22:54:27.071 2024-02-21 23:04:28.282 \N Door visit program account. Feel section behavior knowledge. Resource begin task p https://example.com/ 17147 434373 433740.433876.434373.434374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1224285292853 0 \N \N f 0 \N 0 163573724 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439280 2024-02-26 13:23:31.198 2024-02-26 13:33:32.762 To reduce each wall they raise travel you Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide. https://example.com/ 2829 \N 439280 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.52603197046857 0 \N \N f 0 \N 5 71960362 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439344 2024-02-26 14:04:32.438 2024-02-26 14:14:34.709 \N Congress up environment. https://example.com/ 15536 439331 439165.439331.439344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1084361368799 0 \N \N f 0 \N 8 104641982 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 438954 2024-02-26 07:41:18.01 2024-02-26 07:51:18.765 \N Different dog ex https://example.com/ 20251 438573 438573.438954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.818745236853 0 \N \N f 0 \N 2 56244841 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 439345 2024-02-26 14:05:04.404 2024-02-26 14:15:06.772 \N Agent huge issue positive https://example.com/ 19924 439329 439182.439329.439345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90430374478325 0 \N \N f 0 \N 3 112440931 0 f f \N \N \N \N 439182 \N 0 0 \N \N f \N 432068 2024-02-20 00:40:36.977 2024-02-20 00:50:38.629 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. E https://example.com/ 3400 430733 430607.430617.430630.430733.432068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2205548651667 0 \N \N f 0 \N 1 30051982 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 433459 2024-02-21 07:49:02.458 2024-02-21 07:59:04.454 Never hotel town trip thus safe eight. Share high rich ground west Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road https://example.com/ 20340 \N 433459 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.8440373413674 0 \N \N f 0 \N 0 57834272 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431474 2024-02-19 19:03:48.75 2024-02-19 19:13:49.959 \N Member car law politics in. Bl https://example.com/ 17321 356670 356670.431474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.0071929985152 0 \N \N f 0 \N 0 36965985 0 f f \N \N \N \N 356670 \N 0 0 \N \N f \N 439180 2024-02-26 12:37:03.716 2024-02-26 12:47:05.214 \N Language effort sport mention guess way. By down lay https://example.com/ 20015 439139 439139.439180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.72996009035697 0 \N \N f 0 \N 0 246629948 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439349 2024-02-26 14:06:33.888 2024-02-26 14:16:35.762 \N Own shoulder kind fact. Poor bring quite the better. De https://example.com/ 2735 439298 439298.439349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.70473207596989 0 \N \N f 0 \N 0 56740056 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 439316 2024-02-26 13:42:29.168 2024-02-26 13:52:30.259 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart https://example.com/ 16653 439113 438936.439113.439316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9770705564988 0 \N \N f 0 \N 2 18734068 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433454 2024-02-21 07:40:32.799 2024-02-21 07:50:34.378 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. M https://example.com/ 16149 432068 430607.430617.430630.430733.432068.433454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.49294683732439 0 \N \N f 0 \N 0 94362539 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 433514 2024-02-21 09:26:09.503 2024-02-21 09:36:11.614 \N Between remember https://example.com/ 15491 433380 433331.433380.433514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6727273141187 0 \N \N f 0 \N 0 115377352 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 433487 2024-02-21 08:52:39.921 2024-02-21 09:02:41.09 \N Someone network true easy store. Take improve drug account movie. Gir https://example.com/ 16270 433483 433476.433483.433487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2925547116182 0 \N \N f 0 \N 1 215994297 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N 439213 2024-02-26 12:52:09.271 2024-02-26 13:02:11.433 Career player thing second down win. Feel true explain She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pi https://example.com/ 917 \N 439213 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.30257212980372 0 \N \N f 0 \N 5 33024011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433468 2024-02-21 08:06:00.949 2024-02-21 08:16:03.178 \N Water wrong somebody book nor member. A https://example.com/ 17171 433422 433422.433468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1189295145828 0 \N \N f 0 \N 0 117505334 0 f f \N \N \N \N 433422 \N 0 0 \N \N f \N 433480 2024-02-21 08:36:01.411 2024-02-21 08:46:03.431 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either res https://example.com/ 20509 432952 432344.432952.433480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.768794162853 0 \N \N f 0 \N 1 169064418 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433461 2024-02-21 07:56:48.43 2024-02-21 08:06:50.723 \N Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. https://example.com/ 9329 432920 432920.433461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5019903326078 0 \N \N f 0 \N 0 41402363 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 440069 2024-02-26 22:54:18.334 2024-02-26 23:04:19.895 \N R https://example.com/ 1800 440056 440056.440069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.034170745209 0 \N \N f 0 \N 0 68486537 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 433439 2024-02-21 07:19:45.483 2024-02-21 07:29:46.504 Agency party build and event thank leave it. Its first chur Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase. https://example.com/ 16948 \N 433439 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.09185590708852 0 \N \N f 0 \N 0 203714919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439334 2024-02-26 13:54:21.256 2024-02-26 14:04:23.261 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born m https://example.com/ 15594 432674 432674.439334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.576015207973803 0 \N \N f 0 \N 0 114918553 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 439336 2024-02-26 13:55:43.052 2024-02-26 14:05:45.368 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usua https://example.com/ 762 439213 439213.439336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6072155498207 0 \N \N f 0 \N 3 246976032 0 f f \N \N \N \N 439213 \N 0 0 \N \N f \N 440189 2024-02-27 02:39:13.888 2024-02-27 02:49:15.716 \N Leave https://example.com/ 5017 440139 440139.440189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3626345745787 0 \N \N f 0 \N 0 233191631 0 f f \N \N \N \N 440139 \N 0 0 \N \N f \N 433467 2024-02-21 08:04:42.211 2024-02-21 08:14:44.652 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push https://example.com/ 8423 433447 433447.433467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29583802495621 0 \N \N f 0 \N 0 143882601 0 f f \N \N \N \N 433447 \N 0 0 \N \N f \N 437302 2024-02-24 14:48:15.045 2024-02-24 14:58:16.508 \N Blue why news enjoy include movie. Artist later store film. Senior re https://example.com/ 21036 437287 437218.437287.437302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6568410879563 0 \N \N f 0 \N 2 196308091 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 434375 2024-02-21 22:55:13.071 2024-02-21 23:05:13.964 \N Improve most form final blood. Section ability possible than strategy yet painting. https://example.com/ 9992 433993 433828.433946.433993.434375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3187235470276 0 \N \N f 0 \N 2 11562460 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433490 2024-02-21 08:58:51.623 2024-02-21 09:08:53.309 \N G https://example.com/ 10591 433335 433259.433335.433490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7377814429516 0 \N \N f 0 \N 0 89747436 0 f f \N \N \N \N 433259 \N 0 0 \N \N f \N 433082 2024-02-20 21:54:17.353 2024-02-20 22:04:18.658 Push hair specific policy. We decision ea Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nStar bill toward also almost https://example.com/ 7425 \N 433082 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 6.70043999009543 0 \N \N f 0 \N 1 182339698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439326 2024-02-26 13:48:40.126 2024-02-26 13:58:41.783 Key stuff company they base well night. Wonder large may Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task. https://example.com/ 20110 \N 439326 \N \N \N \N \N \N \N \N science \N ACTIVE \N 8.04633491893259 0 \N \N f 0 \N 0 207394494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433482 2024-02-21 08:38:21.476 2024-02-21 08:48:23.155 \N Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize https://example.com/ 20597 432812 432344.432812.433482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7928854018959 0 \N \N f 0 \N 1 49984676 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439328 2024-02-26 13:50:18.039 2024-02-26 14:00:20.04 \N Reality four attention. Whose each design pull tha https://example.com/ 8569 439280 439280.439328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.500106394177 0 \N \N f 0 \N 4 103759745 0 f f \N \N \N \N 439280 \N 0 0 \N \N f \N 433547 2024-02-21 10:04:36.45 2024-02-21 10:14:38 \N Increase agent management assu https://example.com/ 698 431241 431241.433547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9220251035516 0 \N \N f 0 \N 0 958005 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 433473 2024-02-21 08:14:01.619 2024-02-21 08:24:03.115 \N Race site manager blood. President perform under know option. Suggest city thus open. Season li https://example.com/ 19967 433336 432913.433086.433109.433336.433473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1304355338011 0 \N \N f 0 \N 0 1310733 0 f f \N \N \N \N 432913 \N 0 0 \N \N f \N 433475 2024-02-21 08:20:42.249 2024-02-21 08:30:43.737 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance int https://example.com/ 10519 433447 433447.433475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7772409753453 0 \N \N f 0 \N 1 239054828 0 f f \N \N \N \N 433447 \N 0 0 \N \N f \N 439347 2024-02-26 14:05:17.485 2024-02-26 14:15:19.112 \N Must particular he lose c https://example.com/ 687 439328 439280.439328.439347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9974553012176 0 \N \N f 0 \N 3 22532240 0 f f \N \N \N \N 439280 \N 0 0 \N \N f \N 434370 2024-02-21 22:52:50.684 2024-02-21 23:02:52.209 \N Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult with https://example.com/ 19961 434306 433740.434022.434306.434370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8781829623392 0 \N \N f 0 \N 0 74413392 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 434366 2024-02-21 22:51:09.679 2024-02-21 23:01:10.762 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Powe https://example.com/ 21296 434278 434278.434366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6819831130542 0 \N \N f 0 \N 1 205659425 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433479 2024-02-21 08:31:53.017 2024-02-21 08:41:55.123 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let c https://example.com/ 19952 433114 433114.433479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09869949846075 0 \N \N f 0 \N 0 11198400 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433483 2024-02-21 08:40:34.954 2024-02-21 08:50:37.394 \N White have loss parent whole statement. Fi https://example.com/ 14906 433476 433476.433483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4254914018655 0 \N \N f 0 \N 2 162903313 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N 433474 2024-02-21 08:14:03.618 2024-02-21 08:24:05.312 \N Happen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green th https://example.com/ 18380 433404 433404.433474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.47780246856259 0 \N \N f 0 \N 0 925279 0 f f \N \N \N \N 433404 \N 0 0 \N \N f \N 433471 2024-02-21 08:11:02.655 2024-02-21 08:21:05.142 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nField eat man but religious close https://example.com/ 17183 429256 429256.433471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1882398779272 0 \N \N f 0 \N 0 219008011 0 f f \N \N \N \N 429256 \N 0 0 \N \N f \N 439157 2024-02-26 12:18:20.795 2024-02-26 12:28:23.192 \N Material focus experience picture. Future stil https://example.com/ 2016 439139 439139.439157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.158431360598 0 \N \N f 0 \N 2 32657523 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439175 2024-02-26 12:34:44.469 2024-02-26 12:44:45.479 \N According shake the attack guy development pressure. https://example.com/ 2061 439139 439139.439175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.197805212208202 0 \N \N f 0 \N 0 84263388 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433489 2024-02-21 08:58:46.208 2024-02-21 09:08:47.62 Think cover scientist financial attention he word. World laugh part Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug. https://example.com/ 19967 \N 433489 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.87958935544178 0 \N \N f 0 \N 0 57337070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433511 2024-02-21 09:25:32.834 2024-02-21 09:35:33.836 \N Cut firm blo https://example.com/ 9906 433366 433331.433366.433511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00871181642061 0 \N \N f 0 \N 0 108234670 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 433498 2024-02-21 09:08:43.119 2024-02-21 09:18:45.239 \N Ten answer n https://example.com/ 18351 433391 433391.433498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2856022124713 0 \N \N f 0 \N 0 57887823 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433509 2024-02-21 09:24:13.504 2024-02-21 09:34:15.359 \N Way majorit https://example.com/ 750 433391 433391.433509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.51954606518969 0 \N \N f 0 \N 0 168446210 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433445 2024-02-21 07:28:25.429 2024-02-21 07:38:26.667 \N Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situa https://example.com/ 20871 433348 433217.433348.433445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7474714831534 0 \N \N f 0 \N 0 170088133 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433748 2024-02-21 13:25:54.972 2024-02-21 13:35:56.03 \N Parent control wide song section few. Region one keep important. Message amo https://example.com/ 9363 433740 433740.433748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6486054490738 0 \N \N f 0 \N 5 186991687 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433484 2024-02-21 08:49:21.305 2024-02-21 08:59:23.04 \N Reflect fill team movie draw red group. Congre https://example.com/ 2780 433482 432344.432812.433482.433484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0654755813115 0 \N \N f 0 \N 0 205663583 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433560 2024-02-21 10:17:54.152 2024-02-21 10:27:55.426 \N Project them draw walk if significant wrong into. Course even believe garden scene https://example.com/ 2528 433503 433435.433436.433503.433560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89387330425244 0 \N \N f 0 \N 0 147472508 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 430837 2024-02-19 15:14:08.721 2024-02-19 15:24:09.978 Night on mention rather nation soldier everything. Herself tell begin. Up Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political ac https://example.com/ 2431 \N 430837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.710395652257425 0 \N \N f 0 \N 3 122712644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439350 2024-02-26 14:07:19.335 2024-02-26 14:17:20.388 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small https://example.com/ 2022 439130 439130.439350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.799060856786795 0 \N \N f 0 \N 0 230956147 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 433229 2024-02-21 00:10:32.127 2024-02-21 00:20:33.531 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly soun https://example.com/ 6137 417449 417213.417449.433229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9262446918847 0 \N \N f 0 \N 1 79196345 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 433503 2024-02-21 09:15:17.633 2024-02-21 09:25:19.439 \N Edge card save. Whether manager always however scene move. Sol https://example.com/ 18393 433436 433435.433436.433503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.410472704548965 0 \N \N f 0 \N 1 131277415 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433350 2024-02-21 04:01:33.069 2024-02-21 04:11:34.326 \N Red tough always try. Police clear hundred box. Ahead blue study https://example.com/ 14258 404180 404172.404180.433350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.822453699835783 0 \N \N f 0 \N 1 146170314 0 f f \N \N \N \N 404172 \N 0 0 \N \N f \N 432747 2024-02-20 17:18:58.726 2024-02-20 17:28:59.648 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nReflect fill te https://example.com/ 987 432496 432344.432489.432496.432747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1005312867343 0 \N \N f 0 \N 2 247146902 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433501 2024-02-21 09:14:35.018 2024-02-21 09:24:37.585 \N These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thi https://example.com/ 17124 432754 432344.432489.432496.432747.432754.433501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8399965366253 0 \N \N f 0 \N 0 121821953 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433510 2024-02-21 09:25:15.302 2024-02-21 09:35:17.63 \N Civil att https://example.com/ 21062 433331 433331.433510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.82833076732 0 \N \N f 0 \N 0 220562797 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 432647 2024-02-20 16:14:55.982 2024-02-20 16:24:57.621 \N Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nTry hospital student. Stock floor by weight kind improve. Record religiou https://example.com/ 4043 432466 432466.432647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.084887068661 0 \N \N f 0 \N 1 117362825 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433488 2024-02-21 08:56:24.535 2024-02-21 09:06:25.664 \N Point box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red bene https://example.com/ 3544 433229 417213.417449.433229.433488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6655893694161 0 \N \N f 0 \N 0 20157 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 433492 2024-02-21 09:00:05.136 2024-02-21 09:10:07.487 \N Sa https://example.com/ 642 433350 404172.404180.433350.433492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42967471715253 0 \N \N f 0 \N 0 179709901 0 f f \N \N \N \N 404172 \N 0 0 \N \N f \N 433500 2024-02-21 09:12:52.255 2024-02-21 09:22:53.37 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politic https://example.com/ 21088 433391 433391.433500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4270341706916 0 \N \N f 0 \N 2 210530985 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433494 2024-02-21 09:04:25.737 2024-02-21 09:14:27.888 \N Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nBet https://example.com/ 18618 432647 432466.432647.433494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.962474698468121 0 \N \N f 0 \N 0 120143473 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433507 2024-02-21 09:21:16.32 2024-02-21 09:31:17.707 Board collection beat and worry. Traditional apply general way lawyer good Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even. https://example.com/ 18124 \N 433507 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.6079350994343 0 \N \N f 0 \N 0 8391708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433266 2024-02-21 00:42:55.331 2024-02-21 00:52:56.743 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nFilm without deal production let letter. I produc https://example.com/ 8269 433262 432920.433123.433232.433234.433255.433262.433266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54995209721304 0 \N \N f 0 \N 0 243162911 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433496 2024-02-21 09:06:21.018 2024-02-21 09:16:23.845 Animal law require claim amount little. Low decide president off proje Past everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport. https://example.com/ 1817 \N 433496 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.6177833589677 0 \N \N f 0 \N 0 140762675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433151 2024-02-20 22:54:58.495 2024-02-20 23:05:00.337 Four whole sort. Every s Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above https://example.com/ 1697 \N 433151 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6823294909298 0 \N \N f 0 \N 0 137751180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433054 2024-02-20 21:38:12.345 2024-02-20 21:48:13.932 \N Station mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part https://example.com/ 18124 432466 432466.433054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16972653646098 0 \N \N f 0 \N 4 133572913 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 432689 2024-02-20 16:41:24.876 2024-02-20 16:51:26.697 \N Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center https://example.com/ 15594 432466 432466.432689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7384248426978 0 \N \N f 0 \N 0 154595720 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433034 2024-02-20 21:12:55.591 2024-02-20 21:22:56.999 \N Leader partner among describe unit star it cold. Exist leg any https://example.com/ 736 433032 432920.432980.432992.433032.433034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0440636678904 0 \N \N f 0 \N 9 117390144 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432701 2024-02-20 16:48:24.477 2024-02-20 16:58:25.026 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationshi https://example.com/ 19907 432603 432563.432576.432584.432603.432701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.69885254822469 0 \N \N f 0 \N 0 246968645 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 433030 2024-02-20 21:08:13.942 2024-02-20 21:18:15.143 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nSupport line change go must do. Small audience https://example.com/ 14663 432661 432661.433030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2014434775376 0 \N \N f 0 \N 0 56817085 0 f f \N \N \N \N 432661 \N 0 0 \N \N f \N 439186 2024-02-26 12:38:34.122 2024-02-26 12:48:35.149 \N New particularly consider condition entire tradition https://example.com/ 1208 439139 439139.439186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3606060268574 0 \N \N f 0 \N 1 167506200 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 432586 2024-02-20 15:18:08.831 2024-02-20 15:28:10.644 \N Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill ho https://example.com/ 18372 432584 432563.432576.432584.432586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0966356162089 0 \N \N f 0 \N 4 180561004 0 f f \N \N \N \N 432563 \N 0 0 \N \N f \N 439359 2024-02-26 14:12:42.202 2024-02-26 14:22:44.781 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. https://example.com/ 965 439335 438936.439113.439316.439335.439359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.75828076499928 0 \N \N f 0 \N 0 63051779 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433463 2024-02-21 07:59:41.618 2024-02-21 08:09:43.158 \N Remember before box of open. Alw https://example.com/ 5173 433066 433066.433463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2990897927639 0 \N \N f 0 \N 1 67482713 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433436 2024-02-21 07:17:27.665 2024-02-21 07:27:28.645 \N Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local cul https://example.com/ 14705 433435 433435.433436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.76263709553881 0 \N \N f 0 \N 4 179591373 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433449 2024-02-21 07:32:20.421 2024-02-21 07:42:21.984 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nOrder care many fire per feel bill exist. Ready reach poor true. Cri https://example.com/ 18460 433133 432920.433042.433133.433449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.2926630517718 0 \N \N f 0 \N 0 79016922 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433519 2024-02-21 09:31:50.637 2024-02-21 09:41:52.079 \N Edge environment still at mean camera. Almost talk event ev https://example.com/ 20614 433344 433344.433519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.22315087434382 0 \N \N f 0 \N 0 204782075 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433431 2024-02-21 07:09:02.192 2024-02-21 07:19:04.435 Poor appear go since involve. How form no director mater Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create. https://example.com/ 18865 \N 433431 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.95565845982542 0 \N \N f 0 \N 0 108051806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433524 2024-02-21 09:35:10.361 2024-02-21 09:45:12.256 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It https://example.com/ 21374 433435 433435.433524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0201571439245 0 \N \N f 0 \N 3 144143588 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433525 2024-02-21 09:36:21.308 2024-02-21 09:46:22.334 \N White have loss parent whole statement. Find couple next relationship song value. Respond sea https://example.com/ 18836 433436 433435.433436.433525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02155007776583 0 \N \N f 0 \N 1 127244143 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433497 2024-02-21 09:07:53.247 2024-02-21 09:17:55.438 \N Skin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nCover https://example.com/ 11621 433310 432920.433123.433232.433234.433255.433310.433497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.94430686435066 0 \N \N f 0 \N 0 6379736 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433458 2024-02-21 07:47:19.347 2024-02-21 07:57:20.571 \N Tax kid loss hear ahead common best see. Number thus which story list force city future. https://example.com/ 2942 433236 432920.433042.433236.433458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1432451457539 0 \N \N f 0 \N 0 148001804 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433111 2024-02-20 22:13:48.591 2024-02-20 22:23:49.74 \N More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former a https://example.com/ 8570 432920 432920.433111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5794100909021 0 \N \N f 0 \N 2 113645277 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433199 2024-02-20 23:43:45.489 2024-02-20 23:53:46.325 \N Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly https://example.com/ 4083 433196 432920.432980.432992.433029.433196.433199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2538119376814 0 \N \N f 0 \N 1 113530719 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432925 2024-02-20 19:31:21.701 2024-02-20 19:41:23.06 Involve morning someone them Congress keep rule. Order price condition Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though. https://example.com/ 9669 \N 432925 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.9609209190154 0 \N \N f 0 \N 2 48398038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443706 2024-02-29 15:37:42.818 2024-02-29 15:47:44.155 \N Even hot political little painting home. Garden speech https://example.com/ 17638 443319 443319.443706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5138250368655 0 \N \N f 0 \N 0 122605776 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N 433505 2024-02-21 09:19:47.589 2024-02-21 09:29:49.717 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nFirm study certainly point. Ask major born want physica https://example.com/ 19836 432925 432925.433505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1900361988967 0 \N \N f 0 \N 1 91093967 0 f f \N \N \N \N 432925 \N 0 0 \N \N f \N 433023 2024-02-20 20:53:10.42 2024-02-20 21:03:11.946 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nCan shoulder modern daughter. Where diffi https://example.com/ 16680 432980 432920.432980.433023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6719918306576 0 \N \N f 0 \N 0 100335207 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433521 2024-02-21 09:33:13.464 2024-02-21 09:43:15.816 \N Great idea age https://example.com/ 16809 433505 432925.433505.433521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9080058347861 0 \N \N f 0 \N 0 10053473 0 f f \N \N \N \N 432925 \N 0 0 \N \N f \N 439198 2024-02-26 12:43:28.132 2024-02-26 12:53:30.55 \N Race civil today. Brother record Mr drive for worker. Se https://example.com/ 9906 439139 439139.439198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6383697465847 0 \N \N f 0 \N 0 180448022 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433556 2024-02-21 10:13:38.614 2024-02-21 10:23:39.785 \N Language effort sport men https://example.com/ 11819 433542 433022.433192.433542.433556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5640009214863 0 \N \N f 0 \N 0 244800699 0 f f \N \N \N \N 433022 \N 0 0 \N \N f \N 433535 2024-02-21 09:43:39.951 2024-02-21 09:53:41.784 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nDetail me send tax knowledge. Bad p https://example.com/ 5791 433391 433391.433535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5960321884964 0 \N \N f 0 \N 1 69794044 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 439170 2024-02-26 12:32:20.461 2024-02-26 12:42:21.717 \N Town listen something design east writer paper. Clea https://example.com/ 13249 439139 439139.439170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1701477267456 0 \N \N f 0 \N 0 179879041 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433523 2024-02-21 09:34:24.644 2024-02-21 09:44:25.774 \N Experience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. https://example.com/ 14376 432577 432517.432577.433523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9303405573247 0 \N \N f 0 \N 0 66922179 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 433526 2024-02-21 09:36:24.514 2024-02-21 09:46:25.749 \N Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nHotel black matter recently idea particular. Manager across all nation meet work sort su https://example.com/ 2330 433506 432466.432473.433506.433526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83481083110068 0 \N \N f 0 \N 3 75621882 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433536 2024-02-21 09:46:00.591 2024-02-21 09:56:02.283 \N Edge lot space military without many term o https://example.com/ 9242 433186 432920.433186.433536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0559552400992 0 \N \N f 0 \N 0 156283664 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433465 2024-02-21 08:00:08.809 2024-02-21 08:00:13.929 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics w https://example.com/ 19507 433464 433464.433465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3190943127852 0 \N \N f 0 \N 0 219507937 0 f f \N \N \N \N 433464 \N 0 0 \N \N f \N 433541 2024-02-21 09:52:46.319 2024-02-21 10:02:47.883 Do probably energy loss forget science and Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship. https://example.com/ 20573 \N 433541 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.859073633759 0 \N \N f 0 \N 0 240516880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432489 2024-02-20 14:10:03.956 2024-02-20 14:20:05.923 \N Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nSpeak street chan https://example.com/ 10493 432344 432344.432489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4879868919312 0 \N \N f 0 \N 6 165008629 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439113 2024-02-26 11:29:53.677 2024-02-26 11:39:55.865 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change fo https://example.com/ 19795 438936 438936.439113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10038482112217 0 \N \N f 0 \N 3 144339446 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 432577 2024-02-20 15:12:25.141 2024-02-20 15:22:26.461 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nMatter training experience. Election carry thing the https://example.com/ 18494 432517 432517.432577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.39497610422578 0 \N \N f 0 \N 1 129699377 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 439335 2024-02-26 13:55:16.135 2024-02-26 14:05:18.525 \N Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nAt audience she. Skill performance represent mouth s https://example.com/ 831 439316 438936.439113.439316.439335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87633461197185 0 \N \N f 0 \N 1 75097117 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 433522 2024-02-21 09:33:44.345 2024-02-21 09:43:45.709 Poor often speak everyone collection quite space. Carry paper floor. Commerci Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change. https://example.com/ 1576 \N 433522 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.64386009717803 0 \N \N f 0 \N 0 2786879 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433548 2024-02-21 10:05:16.39 2024-02-21 10:15:17.724 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nIn grow start way president as compare. Away perform law social research front soon. Own run either https://example.com/ 1673 433391 433391.433548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7172080151736 0 \N \N f 0 \N 0 225869538 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433562 2024-02-21 10:19:21.359 2024-02-21 10:29:22.901 \N Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nMove purpose well important learn population study. Key turn career industry scene wide business. W https://example.com/ 19333 433167 433066.433167.433562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78868592574759 0 \N \N f 0 \N 0 3463192 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433531 2024-02-21 09:38:57.771 2024-02-21 09:48:59.336 \N Apply president organizati https://example.com/ 20509 433391 433391.433531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.813219345376 0 \N \N f 0 \N 1 200852730 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 435182 2024-02-22 16:23:58.818 2024-02-22 16:34:00.94 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign cus https://example.com/ 2583 153228 153228.435182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8197365422112 0 \N \N f 0 \N 0 200916759 0 f f \N \N \N \N 153228 \N 0 0 \N \N f \N 433532 2024-02-21 09:40:26.984 2024-02-21 09:50:28.318 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establi https://example.com/ 2056 433526 432466.432473.433506.433526.433532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9876861795815 0 \N \N f 0 \N 0 219140925 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433546 2024-02-21 10:03:17.381 2024-02-21 10:13:18.558 \N Community https://example.com/ 18170 433529 433529.433546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6070409767193 0 \N \N f 0 \N 0 213831701 0 f f \N \N \N \N 433529 \N 0 0 \N \N f \N 433543 2024-02-21 09:55:18.12 2024-02-21 10:05:19.548 \N Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening pl https://example.com/ 17722 433178 432873.433178.433543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6891046229731 0 \N \N f 0 \N 0 50226368 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433545 2024-02-21 10:02:43.69 2024-02-21 10:12:45.852 \N She for deep admi https://example.com/ 8074 433344 433344.433545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6407070509882 0 \N \N f 0 \N 0 221756224 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433544 2024-02-21 10:01:16.616 2024-02-21 10:11:18.001 Science sea spo Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing. https://example.com/ 21208 \N 433544 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.25330213893267 0 \N \N f 0 \N 0 184649841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433518 2024-02-21 09:30:10.24 2024-02-21 09:40:11.525 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service tradi https://example.com/ 9349 433515 432344.432489.433515.433518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2821185266623 0 \N \N f 0 \N 0 191632520 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433533 2024-02-21 09:42:36.291 2024-02-21 09:52:38.006 Factor song science administration defense radio. Pa Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. https://example.com/ 17696 \N 433533 \N \N \N \N \N \N \N \N health \N ACTIVE \N 19.8513565155966 0 \N \N f 0 \N 0 23992380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433534 2024-02-21 09:42:59.033 2024-02-21 09:53:00.501 \N Try hospi https://example.com/ 1717 433530 432466.432473.433506.433526.433530.433534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4920840721323 0 \N \N f 0 \N 0 124183749 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 439251 2024-02-26 13:05:35.739 2024-02-26 13:15:37.816 \N Provide difference relationship. Factor view stock o https://example.com/ 17800 439139 439139.439251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4010556399698 0 \N \N f 0 \N 0 85085713 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433528 2024-02-21 09:37:16.509 2024-02-21 09:47:17.424 \N Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almos https://example.com/ 20015 433344 433344.433528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.707526110095 0 \N \N f 0 \N 2 231788521 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433530 2024-02-21 09:38:33.498 2024-02-21 09:48:35.83 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song sugge https://example.com/ 4225 433526 432466.432473.433506.433526.433530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7489353028669 0 \N \N f 0 \N 1 131976774 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433539 2024-02-21 09:49:04.032 2024-02-21 09:59:05.66 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he tra https://example.com/ 21492 432473 432466.432473.433539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09737038515526 0 \N \N f 0 \N 0 25426058 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 434380 2024-02-21 23:08:54.304 2024-02-21 23:18:55.759 \N Live class artist pull nearly poor. https://example.com/ 14280 433463 433066.433463.434380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05218412385921 0 \N \N f 0 \N 0 109190716 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 438926 2024-02-26 06:50:46.593 2024-02-26 07:00:48.783 \N According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like https://example.com/ 19980 438885 438737.438885.438926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32792486548874 0 \N \N f 0 \N 1 202447667 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 439364 2024-02-26 14:17:32.131 2024-02-26 14:27:34.662 \N Many then growth. Law become return event paren https://example.com/ 20646 439263 439263.439364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.669892534472 0 \N \N f 0 \N 0 3566162 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 439046 2024-02-26 10:18:32.533 2024-02-26 10:28:34.941 \N Project them draw walk if sign https://example.com/ 16126 438759 438325.438759.439046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.947210636794935 0 \N \N f 0 \N 2 132872281 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 439215 2024-02-26 12:52:50.964 2024-02-26 13:02:53.418 \N Set how recognize operation American. Account avoid https://example.com/ 20201 439139 439139.439215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39290356288488 0 \N \N f 0 \N 0 156575787 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433542 2024-02-21 09:54:12.088 2024-02-21 10:04:13.503 \N Between buy half story https://example.com/ 18138 433192 433022.433192.433542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0246379191107 0 \N \N f 0 \N 1 192423518 0 f f \N \N \N \N 433022 \N 0 0 \N \N f \N 433550 2024-02-21 10:05:21.041 2024-02-21 10:15:22.203 Wish low party shake. National offer my specific happen well. F Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star. https://example.com/ 11648 \N 433550 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.3986988159661 0 \N \N f 0 \N 1 28390552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433429 2024-02-21 07:00:04.544 2024-02-21 07:10:06.339 Happen include car man c \N https://example.com/ 18608 \N 433429 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 6.06451685328633 0 \N \N f 0 \N 2 238682897 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433564 2024-02-21 10:19:52.672 2024-02-21 10:29:53.589 \N Ever small reduce evid https://example.com/ 7119 433550 433550.433564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5338207083684 0 \N \N f 0 \N 0 178443772 0 f f \N \N \N \N 433550 \N 0 0 \N \N f \N 433540 2024-02-21 09:50:12.184 2024-02-21 10:00:13.838 \N Measure enjoy other scientist simple professor better. Check too design all reflect s https://example.com/ 14731 433066 433066.433540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7575960135673 0 \N \N f 0 \N 0 141690077 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433022 2024-02-20 20:52:07.477 2024-02-20 21:02:08.967 Us less sure. Late travel us significant Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nOver partner wear detail fund rise. Conference require father against show here movement d https://example.com/ 1051 \N 433022 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.5763521968107 0 \N \N f 0 \N 3 57778226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433561 2024-02-21 10:18:30.457 2024-02-21 10:28:31.803 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure https://example.com/ 19961 433524 433435.433524.433561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33446487722636 0 \N \N f 0 \N 2 198948833 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433553 2024-02-21 10:12:06.252 2024-02-21 10:22:07.649 \N Tree I there avoid win knowledge improve. Dinner hope determine fish https://example.com/ 20370 433529 433529.433553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3059331497882 0 \N \N f 0 \N 0 32783203 0 f f \N \N \N \N 433529 \N 0 0 \N \N f \N 433566 2024-02-21 10:24:25.323 2024-02-21 10:34:26.883 \N Far they window call recent. Head light move continue evening https://example.com/ 3709 433561 433435.433524.433561.433566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4202995111914 0 \N \N f 0 \N 1 442420 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 439352 2024-02-26 14:08:32.765 2024-02-26 14:18:33.948 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nLearn international explai https://example.com/ 18199 439223 439142.439188.439194.439223.439352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92320338025161 0 \N \N f 0 \N 7 115782400 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433529 2024-02-21 09:37:21.71 2024-02-21 09:47:23.495 Leader partner among Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nStar bill toward also almost. Reason machine great per artist raise go ap https://example.com/ 18625 \N 433529 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 24.1273345104016 0 \N \N f 0 \N 2 192464439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433552 2024-02-21 10:10:28.055 2024-02-21 10:20:30.08 \N Bank one body pull the https://example.com/ 9341 433344 433344.433552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7895253659784 0 \N \N f 0 \N 0 176492107 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433192 2024-02-20 23:38:53.775 2024-02-20 23:48:54.713 \N Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nRise environmental middle fly listen rest national. Fall hospital bad four month author https://example.com/ 1814 433022 433022.433192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8212182593875 0 \N \N f 0 \N 2 169505991 0 f f \N \N \N \N 433022 \N 0 0 \N \N f \N 432741 2024-02-20 17:15:48.833 2024-02-20 17:25:49.802 Thus measure find board bag high himself. Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually ind https://example.com/ 9611 \N 432741 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 19.1445092353486 0 \N \N f 0 \N 0 228613010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433569 2024-02-21 10:30:14.003 2024-02-21 10:40:16.231 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store wit https://example.com/ 21600 433476 433476.433569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.620576947668 0 \N \N f 0 \N 0 79608457 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N 433615 2024-02-21 11:20:28.996 2024-02-21 11:30:30.607 \N Experience base struct https://example.com/ 15484 433260 433260.433615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8930806130927 0 \N \N f 0 \N 0 135556646 0 f f \N \N \N \N 433260 \N 0 0 \N \N f \N 433801 2024-02-21 14:19:20.762 2024-02-21 14:29:21.829 \N Know son future https://example.com/ 17526 433795 433795.433801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55977791117242 0 \N \N f 0 \N 0 150595658 0 f f \N \N \N \N 433795 \N 0 0 \N \N f \N 433582 2024-02-21 10:49:25.685 2024-02-21 10:59:27.199 Light environmental here source blood. Insti Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose. https://example.com/ 9758 \N 433582 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.5985137273541 0 \N \N f 0 \N 0 2001104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433563 2024-02-21 10:19:30.245 2024-02-21 10:29:32.259 \N Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But l https://example.com/ 844 433513 433435.433513.433563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3613741795435 0 \N \N f 0 \N 0 143954166 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 439360 2024-02-26 14:14:32.768 2024-02-26 14:24:34.05 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Exp https://example.com/ 5597 438926 438737.438885.438926.439360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6951525003868 0 \N \N f 0 \N 0 240969084 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 433600 2024-02-21 11:09:41.487 2024-02-21 11:19:42.677 \N Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two sta https://example.com/ 19030 433486 432873.433014.433486.433600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5505282993523 0 \N \N f 0 \N 0 189651854 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433549 2024-02-21 10:05:17.211 2024-02-21 10:15:18.537 \N Friend growth election water degree pr https://example.com/ 19286 433475 433447.433475.433549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12499547756098 0 \N \N f 0 \N 0 197996875 0 f f \N \N \N \N 433447 \N 0 0 \N \N f \N 434847 2024-02-22 11:39:16.537 2024-02-22 11:49:17.793 \N Special identify senior difference thir https://example.com/ 848 434813 434813.434847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7239004430831 0 \N \N f 0 \N 1 173440978 0 f f \N \N \N \N 434813 \N 0 0 \N \N f \N 434397 2024-02-21 23:34:51.971 2024-02-21 23:44:53.105 \N Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose https://example.com/ 1737 433710 433710.434397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8367004829642 0 \N \N f 0 \N 0 77078053 0 f f \N \N \N \N 433710 \N 0 0 \N \N f \N 433585 2024-02-21 10:57:43.165 2024-02-21 11:07:44.428 \N Very executive American somethin https://example.com/ 7766 433344 433344.433585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.773775763380655 0 \N \N f 0 \N 0 224554574 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433513 2024-02-21 09:26:04.087 2024-02-21 09:36:05.533 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go tog https://example.com/ 4062 433435 433435.433513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05648310159039 0 \N \N f 0 \N 1 171132962 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433567 2024-02-21 10:27:08.056 2024-02-21 10:37:09.998 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM cla https://example.com/ 21453 433566 433435.433524.433561.433566.433567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.926544841365669 0 \N \N f 0 \N 0 165227820 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433570 2024-02-21 10:30:18.753 2024-02-21 10:40:20.296 \N Return agreement happy health op https://example.com/ 15491 433508 432466.433054.433508.433570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22928956580513 0 \N \N f 0 \N 1 232890641 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433455 2024-02-21 07:41:33.6 2024-02-21 07:51:34.922 Policy trade before drop particular upon sc South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad. https://example.com/ 10102 \N 433455 \N \N \N \N \N \N \N \N science \N ACTIVE \N 10.948823104921 0 \N \N f 0 \N 0 40097153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433619 2024-02-21 11:23:16.003 2024-02-21 11:33:16.97 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs https://example.com/ 21458 433565 433435.433520.433565.433619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7712936358127 0 \N \N f 0 \N 1 98422817 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 439363 2024-02-26 14:15:30.33 2024-02-26 14:25:31.977 \N Again reveal time hot kind own. Believe agreement thus figure follow bu https://example.com/ 19329 439046 438325.438759.439046.439363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0433101553235 0 \N \N f 0 \N 1 84279650 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 433583 2024-02-21 10:51:33.675 2024-02-21 11:01:34.833 \N Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data https://example.com/ 8570 433447 433447.433583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23843892029033 0 \N \N f 0 \N 0 234950152 0 f f \N \N \N \N 433447 \N 0 0 \N \N f \N 439368 2024-02-26 14:19:42.28 2024-02-26 14:29:43.878 Identify health spend could. Have weight civil size piece arrive. Defense let Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I. https://example.com/ 16177 \N 439368 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 3.16201364900703 0 \N \N f 0 \N 2 199623410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443700 2024-02-29 15:35:44.778 2024-02-29 15:45:45.83 \N Reflect price head six peace c https://example.com/ 20156 443690 443295.443437.443597.443690.443700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9826827720287 0 \N \N f 0 \N 0 63289809 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 439306 2024-02-26 13:34:57.329 2024-02-26 13:44:58.704 \N Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clea https://example.com/ 8985 439296 439147.439206.439296.439306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49103738213794 0 \N \N f 0 \N 0 160527963 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 433476 2024-02-21 08:27:41.131 2024-02-21 08:37:43.025 Purpose teacher manager once tax mouth. Notice person history Democrat dog fa Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nMean particularly https://example.com/ 5522 \N 433476 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 6.16962435887686 0 \N \N f 0 \N 4 192189499 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433572 2024-02-21 10:32:47.18 2024-02-21 10:42:48.902 \N Leave example grow lead something still after. Happy worry https://example.com/ 18829 433571 433571.433572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6374009486025 0 \N \N f 0 \N 0 88465924 0 f f \N \N \N \N 433571 \N 0 0 \N \N f \N 434789 2024-02-22 10:55:13.818 2024-02-22 11:05:15.374 \N Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm https://example.com/ 18751 434717 434717.434789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.08620094974076 0 \N \N f 0 \N 1 27227778 0 f f \N \N \N \N 434717 \N 0 0 \N \N f \N 433579 2024-02-21 10:48:08.318 2024-02-21 10:58:10.231 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Tr https://example.com/ 6310 433435 433435.433579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2267830302261 0 \N \N f 0 \N 1 101300080 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433576 2024-02-21 10:40:17.537 2024-02-21 10:50:18.78 Remember draw realize. Include soon my person involve red sing diffe Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark. https://example.com/ 6616 \N 433576 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 2.13875262617876 0 \N \N f 0 \N 0 94406483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433512 2024-02-21 09:25:47.476 2024-02-21 09:35:49.005 \N Morning hundr https://example.com/ 15213 433334 433331.433334.433512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1649767005363 0 \N \N f 0 \N 0 238043672 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 438947 2024-02-26 07:37:20.792 2024-02-26 07:47:21.595 \N Never money Congress data single trial. Today water everything reduce executive same week. Fig https://example.com/ 15560 438946 438946.438947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4870046656609 0 \N \N f 0 \N 6 214756525 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 434887 2024-02-22 12:24:01.317 2024-02-22 12:34:03.143 Long sound continue test occur watch. Claim money speak shake. Bes Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try https://example.com/ 6335 \N 434887 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.2169118044433 0 \N \N f 0 \N 0 204166552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439346 2024-02-26 14:05:05.795 2024-02-26 14:15:06.771 Thousand billion get leg now sort even. Growth m Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various. https://example.com/ 2614 \N 439346 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.093469467316 0 \N \N f 0 \N 0 29560994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433517 2024-02-21 09:30:07.407 2024-02-21 09:40:09.517 \N Leave relationship rule rich draw soo https://example.com/ 7877 433391 433391.433517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53828845895858 0 \N \N f 0 \N 0 227254032 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433581 2024-02-21 10:49:09.275 2024-02-21 10:59:10.825 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. https://example.com/ 21057 433579 433435.433579.433581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12734035273818 0 \N \N f 0 \N 0 183750853 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433577 2024-02-21 10:41:28.634 2024-02-21 10:51:30.316 \N Morning create future popular. Shoulder animal society want indeed expert. Available consid https://example.com/ 1567 433391 433391.433577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00559645103235 0 \N \N f 0 \N 0 217140061 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433587 2024-02-21 11:00:05.135 2024-02-21 11:00:10.288 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nEstablish material they meet. Little bag idea region li https://example.com/ 7558 433586 433586.433587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.788048074254 0 \N \N f 0 \N 0 94104750 0 f f \N \N \N \N 433586 \N 0 0 \N \N f \N 434901 2024-02-22 12:33:16.07 2024-02-22 12:43:18.249 \N Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nPublic ap https://example.com/ 2328 434891 434317.434675.434886.434889.434891.434901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0990929988666 0 \N \N f 0 \N 0 235565634 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 433580 2024-02-21 10:48:13.047 2024-02-21 10:58:14.309 \N Red tough always try. Police clear hundred box. Ahead blue stu https://example.com/ 20744 433578 433578.433580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.222124041183 0 \N \N f 0 \N 0 9033718 0 f f \N \N \N \N 433578 \N 0 0 \N \N f \N 437289 2024-02-24 14:43:17.141 2024-02-24 14:53:18.195 Fear size with rich skin decade community. Front e In grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat. https://example.com/ 859 \N 437289 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 7.8701079244567 0 \N \N f 0 \N 0 96634057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434906 2024-02-22 12:41:28.694 2024-02-22 12:51:30.472 \N International yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise arg https://example.com/ 20744 434737 433555.433772.434737.434906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8093443266694 0 \N \N f 0 \N 0 6146169 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433260 2024-02-21 00:36:51.704 2024-02-21 00:46:53.233 Beyond song throw b New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nMost describe tell speech without. Young lo https://example.com/ 20852 \N 433260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1695378274737 0 \N \N f 0 \N 9 33728665 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439367 2024-02-26 14:19:41.212 2024-02-26 14:29:42.295 \N Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nBaby body day citizen ch https://example.com/ 21057 439361 439142.439188.439194.439223.439352.439361.439367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.52562436183431 0 \N \N f 0 \N 0 192388198 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433575 2024-02-21 10:39:35.334 2024-02-21 10:49:35.996 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly spor https://example.com/ 20326 433573 433573.433575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0231651490062 0 \N \N f 0 \N 0 228462364 0 f f \N \N \N \N 433573 \N 0 0 \N \N f \N 433620 2024-02-21 11:24:25.042 2024-02-21 11:34:26.528 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office pu https://example.com/ 1092 433613 433217.433347.433444.433607.433613.433620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9864911374532 0 \N \N f 0 \N 4 15449492 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433574 2024-02-21 10:38:37.684 2024-02-21 10:48:38.973 Republican total impact of. North office part. Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount. https://example.com/ 19836 \N 433574 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.92555443957815 0 \N \N f 0 \N 2 90965258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439028 2024-02-26 10:04:33.647 2024-02-26 10:14:34.884 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product ou https://example.com/ 1733 438946 438946.439028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8428928021867 0 \N \N f 0 \N 4 195568859 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 433586 2024-02-21 11:00:04.555 2024-02-21 11:10:06.368 Method show window brother. Buy right Republ \N https://example.com/ 17682 \N 433586 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.7369124225827 0 \N \N f 0 \N 1 213888409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433537 2024-02-21 09:46:32.56 2024-02-21 09:56:33.629 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medic https://example.com/ 21349 433528 433344.433528.433537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5459426188301 0 \N \N f 0 \N 0 124967190 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 433613 2024-02-21 11:18:53.697 2024-02-21 11:28:55.053 \N Role number law science. Sing fight use development different. Sa https://example.com/ 18769 433607 433217.433347.433444.433607.433613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2356415607779 0 \N \N f 0 \N 5 23878393 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 439305 2024-02-26 13:34:41.553 2024-02-26 13:44:43.581 Though or meet hotel. Pay cente Policy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter. https://example.com/ 17001 \N 439305 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.88819461102701 0 \N \N f 0 \N 0 130360528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439377 2024-02-26 14:27:21.687 2024-02-26 14:37:23.453 \N Sing eight https://example.com/ 2640 439373 439358.439373.439377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7526797712197 0 \N \N f 0 \N 0 21456086 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 433592 2024-02-21 11:02:22.232 2024-02-21 11:12:24.17 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh https://example.com/ 21509 433588 433588.433592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2047427707054 0 \N \N f 0 \N 0 133636153 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434388 2024-02-21 23:17:12.215 2024-02-21 23:27:13.672 \N Activity https://example.com/ 19142 434369 433943.434171.434369.434388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6984825963131 0 \N \N f 0 \N 0 181086732 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 439223 2024-02-26 12:54:40.66 2024-02-26 13:04:41.765 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nOthers high sea sense study audience. Adult fight https://example.com/ 19199 439194 439142.439188.439194.439223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8529061880112 0 \N \N f 0 \N 13 165984492 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439374 2024-02-26 14:24:31.587 2024-02-26 14:34:32.875 \N Likely natural ahead focus https://example.com/ 18500 439363 438325.438759.439046.439363.439374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1956707126335 0 \N \N f 0 \N 0 136874917 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 433611 2024-02-21 11:16:56.863 2024-02-21 11:26:58.719 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Gro https://example.com/ 19158 433555 433555.433611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9158832613081 0 \N \N f 0 \N 1 142270207 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433595 2024-02-21 11:04:57.449 2024-02-21 11:14:58.549 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including re https://example.com/ 2367 433591 433591.433595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0491407667833 0 \N \N f 0 \N 0 207064962 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 434381 2024-02-21 23:09:21.594 2024-02-21 23:19:23.201 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nOff should democratic notice old apply society. Buy section probably help term big w https://example.com/ 11450 433828 433828.434381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2198769154004 0 \N \N f 0 \N 4 186558527 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439384 2024-02-26 14:33:11.677 2024-02-26 14:43:12.529 \N General against page door. At https://example.com/ 652 439100 439100.439384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9135205705162 0 \N \N f 0 \N 6 198083578 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 433216 2024-02-21 00:00:51.564 2024-02-21 00:10:52.542 \N Test rock https://example.com/ 12507 433028 432920.433028.433216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.34551155977488 0 \N \N f 0 \N 0 7804258 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433565 2024-02-21 10:23:28.107 2024-02-21 10:33:29.952 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nIn grow start way p https://example.com/ 14152 433520 433435.433520.433565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8354066448766 0 \N \N f 0 \N 2 134897354 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433486 2024-02-21 08:50:28.262 2024-02-21 09:00:29.205 \N Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nStation mean din https://example.com/ 17082 433014 432873.433014.433486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.09444359785829 0 \N \N f 0 \N 1 96437526 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439366 2024-02-26 14:19:18.177 2024-02-26 14:29:19.465 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condi https://example.com/ 714 439286 439286.439366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4910011983134 0 \N \N f 0 \N 1 96700198 0 f f \N \N \N \N 439286 \N 0 0 \N \N f \N 439283 2024-02-26 13:23:52.272 2024-02-26 13:33:54.036 That very sister attention myself out bit. Want father president same future sen Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better. https://example.com/ 18208 \N 439283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4335929536221 0 \N \N f 0 \N 0 5584190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434377 2024-02-21 23:01:19.065 2024-02-21 23:11:20.508 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nBetween buy half story. Buy whom significant modern air price https://example.com/ 14074 433748 433740.433748.434377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1519024066339 0 \N \N f 0 \N 0 100296703 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433610 2024-02-21 11:15:31.807 2024-02-21 11:25:33.023 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account https://example.com/ 16788 433588 433588.433610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7755676626344 0 \N \N f 0 \N 0 95480196 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433609 2024-02-21 11:15:19.679 2024-02-21 11:25:21.715 \N About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any s https://example.com/ 16440 433302 433302.433609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.5282126968575 0 \N \N f 0 \N 0 108344544 0 f f \N \N \N \N 433302 \N 0 0 \N \N f \N 433604 2024-02-21 11:11:09.557 2024-02-21 11:21:10.838 \N Much wait girl sport picture clearly bank. Only si https://example.com/ 5791 433574 433574.433604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4076198060435 0 \N \N f 0 \N 0 192117321 0 f f \N \N \N \N 433574 \N 0 0 \N \N f \N 433559 2024-02-21 10:17:18.069 2024-02-21 10:27:19.923 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge o https://example.com/ 21573 433525 433435.433436.433525.433559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.590285836525 0 \N \N f 0 \N 0 4527205 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433606 2024-02-21 11:12:18.922 2024-02-21 11:22:20.329 \N Plant ever Repub https://example.com/ 19773 433588 433588.433606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3084358442608 0 \N \N f 0 \N 0 54962888 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 432921 2024-02-20 19:27:11.197 2024-02-20 19:37:12.306 Also weight particular less set southern. Score article believe in executive Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce. https://example.com/ 7916 \N 432921 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.0951798515957 0 \N \N f 0 \N 1 31831446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433603 2024-02-21 11:11:00.511 2024-02-21 11:21:02.625 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good te https://example.com/ 20287 433602 433602.433603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7348453325965 0 \N \N f 0 \N 0 218970563 0 f f \N \N \N \N 433602 \N 0 0 \N \N f \N 56183 2022-08-08 06:21:51.798 2024-02-03 20:22:38.108 Take throw Yard subject low series serious spend. Someone thousand https://example.com/ 11798 \N 56183 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4664793837335 0 \N \N f 0 \N 1 50849390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433658 2024-02-21 11:54:23.813 2024-02-21 12:04:24.961 \N Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar cour https://example.com/ 1713 433588 433588.433658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8521027679064 0 \N \N f 0 \N 0 193085113 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433538 2024-02-21 09:47:14.194 2024-02-21 09:57:15.53 \N Become full thank head blood family. Compute https://example.com/ 12278 433296 432920.433186.433247.433296.433538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2694204584467 0 \N \N f 0 \N 0 183388610 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433520 2024-02-21 09:32:08.834 2024-02-21 09:42:10.346 \N Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level pie https://example.com/ 7558 433435 433435.433520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2899842144919 0 \N \N f 0 \N 3 123827602 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433617 2024-02-21 11:21:15.916 2024-02-21 11:31:17.355 \N Whatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Re https://example.com/ 20495 433441 432203.432785.433005.433110.433441.433617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1423752494879 0 \N \N f 0 \N 3 41641456 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 433628 2024-02-21 11:29:17.463 2024-02-21 11:39:18.397 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal https://example.com/ 19463 433312 433217.433312.433628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40686757190793 0 \N \N f 0 \N 0 46679713 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 439370 2024-02-26 14:21:02.506 2024-02-26 14:31:03.594 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Bu https://example.com/ 19981 439028 438946.439028.439370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.375101669073 0 \N \N f 0 \N 0 139860015 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 433448 2024-02-21 07:30:20.187 2024-02-21 07:40:22.026 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nReligious same wish cost make. Else official https://example.com/ 10490 433347 433217.433347.433448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.33020317341251 0 \N \N f 0 \N 3 214040358 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433605 2024-02-21 11:11:59.203 2024-02-21 11:22:00.909 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Abi https://example.com/ 2328 433597 433594.433597.433605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0515203469198 0 \N \N f 0 \N 0 61280467 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 439381 2024-02-26 14:31:31.272 2024-02-26 14:41:34.301 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal https://example.com/ 14385 439366 439286.439366.439381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.29404230147683 0 \N \N f 0 \N 0 27264821 0 f f \N \N \N \N 439286 \N 0 0 \N \N f \N 433444 2024-02-21 07:27:52.217 2024-02-21 07:37:53.916 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. https://example.com/ 2077 433347 433217.433347.433444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.4416989628559 0 \N \N f 0 \N 7 213749570 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 439389 2024-02-26 14:37:14.94 2024-02-26 14:47:16.932 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead rema https://example.com/ 17030 439382 439142.439188.439194.439223.439352.439361.439375.439382.439389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8449959176863 0 \N \N f 0 \N 1 114316255 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433633 2024-02-21 11:34:42.972 2024-02-21 11:44:44.718 \N Skill government the life relationship bad. Statement character spring simple decide go https://example.com/ 17365 433591 433591.433633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6036505284163 0 \N \N f 0 \N 1 28850812 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 433634 2024-02-21 11:35:34.471 2024-02-21 11:45:36.655 \N Anyone himself set https://example.com/ 17639 433632 433217.433347.433444.433607.433613.433620.433627.433632.433634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0601740617488 0 \N \N f 0 \N 1 85764180 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433312 2024-02-21 02:15:07.737 2024-02-21 02:25:09.086 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world prob https://example.com/ 1817 433217 433217.433312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4333446641002 0 \N \N f 0 \N 1 235251758 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433495 2024-02-21 09:04:45.777 2024-02-21 09:14:47.304 Strong of create preven Ground baby describe might. Practice alone key sometimes every. Writer for minute e https://example.com/ 1488 \N 433495 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 15.7051778162377 0 \N \N f 0 \N 0 131954792 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433597 2024-02-21 11:06:36.088 2024-02-21 11:16:38.858 \N Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost sea https://example.com/ 19375 433594 433594.433597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1467686163404 0 \N \N f 0 \N 1 100456856 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 437323 2024-02-24 14:59:04.856 2024-02-24 15:09:06.165 \N Professional remain report involve eye outside. Military boy they. Came https://example.com/ 19417 436402 436028.436402.437323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.73662603169513 0 \N \N f 0 \N 0 141281080 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 439407 2024-02-26 14:48:51.447 2024-02-26 14:58:52.739 \N Happy strong Democrat some goal ne https://example.com/ 13361 438764 438764.439407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5496639325012 0 \N \N f 0 \N 0 222151946 0 f f \N \N \N \N 438764 \N 0 0 \N \N f \N 437309 2024-02-24 14:49:52.5 2024-02-24 14:59:54.285 \N Purpose age cover machine. Must individual hot begin figu https://example.com/ 21060 437233 437233.437309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95062523821513 0 \N \N f 0 \N 0 47248181 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437345 2024-02-24 15:08:46.378 2024-02-24 15:18:48.058 \N Order care many fire per feel bill exist. Ready reach poor https://example.com/ 20562 437256 437044.437256.437345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7747368410822 0 \N \N f 0 \N 0 207059204 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437303 2024-02-24 14:48:28.269 2024-02-24 14:58:30.256 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. In https://example.com/ 21349 437203 437044.437158.437189.437203.437303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1988259149865 0 \N \N f 0 \N 0 146610966 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 433411 2024-02-21 06:31:09.507 2024-02-21 06:41:10.485 Agency party build and event thank leave it. I Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real t https://example.com/ 15488 \N 433411 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 6.73904790167452 0 \N \N f 0 \N 0 189861852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437329 2024-02-24 15:02:04.327 2024-02-24 15:12:05.769 \N South amount subject easy office. Sea fo https://example.com/ 19087 437044 437044.437329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2884922979687 0 \N \N f 0 \N 1 33958287 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 433655 2024-02-21 11:53:17.303 2024-02-21 12:03:18.934 \N Yourself de https://example.com/ 21148 433591 433591.433655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89392826707152 0 \N \N f 0 \N 0 207489719 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 433598 2024-02-21 11:07:14.491 2024-02-21 11:17:16.537 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or pa https://example.com/ 20340 433593 433588.433593.433598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85987450534563 0 \N \N f 0 \N 2 58066322 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433267 2024-02-21 00:47:19.704 2024-02-21 00:57:21.256 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food https://example.com/ 13987 433217 433217.433267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30242524006314 0 \N \N f 0 \N 2 193897126 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 432995 2024-02-20 20:26:02.069 2024-02-20 20:36:02.936 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production https://example.com/ 1261 432979 432979.432995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2092547138798 0 \N \N f 0 \N 0 22157245 0 f f \N \N \N \N 432979 \N 0 0 \N \N f \N 433638 2024-02-21 11:37:04.987 2024-02-21 11:47:06.761 \N Deep governm https://example.com/ 1493 433588 433588.433638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9048636814462 0 \N \N f 0 \N 0 188745020 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433504 2024-02-21 09:18:15.74 2024-02-21 09:28:17.783 Black leg through occur possible century far. Part fly fol Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. https://example.com/ 15938 \N 433504 \N \N \N \N \N \N \N \N science \N ACTIVE \N 20.2243901448605 0 \N \N f 0 \N 0 188167649 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433309 2024-02-21 02:10:59.507 2024-02-21 02:21:01.22 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every cl https://example.com/ 21269 432920 432920.433309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55206839335923 0 \N \N f 0 \N 2 234712475 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433596 2024-02-21 11:05:27.499 2024-02-21 11:15:28.471 \N Speech also his. White PM rat https://example.com/ 18180 433591 433591.433596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6562528577832 0 \N \N f 0 \N 0 227173336 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 439387 2024-02-26 14:34:16.282 2024-02-26 14:44:16.828 \N Foot https://example.com/ 1472 439354 439082.439354.439387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.847235169744 0 \N \N f 0 \N 0 243315578 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439404 2024-02-26 14:46:52.167 2024-02-26 14:56:53.73 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior https://example.com/ 21037 439130 439130.439404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7475701430496 0 \N \N f 0 \N 0 135104502 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 437203 2024-02-24 13:50:52.936 2024-02-24 14:00:53.961 \N Article discussion court https://example.com/ 21138 437189 437044.437158.437189.437203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2066884273025 0 \N \N f 0 \N 2 93242967 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 433663 2024-02-21 12:02:06.088 2024-02-21 12:12:07.499 \N We course us bank recently significant myself. Of past them https://example.com/ 3518 433646 433588.433646.433663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1232841865488 0 \N \N f 0 \N 2 244276407 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 437344 2024-02-24 15:08:30.132 2024-02-24 15:18:30.896 \N Strong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring car https://example.com/ 1740 437333 427941.437333.437344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.13556391404365 0 \N \N f 0 \N 1 110192530 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437334 2024-02-24 15:04:23.273 2024-02-24 15:14:25.235 \N Measure enjoy other scientist simple professor better. Check https://example.com/ 1618 437332 437238.437326.437332.437334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.60832125129429 0 \N \N f 0 \N 0 83788411 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 433650 2024-02-21 11:49:57.489 2024-02-21 11:59:58.934 \N Religious same wish cost make. Else official career fire. Form wind film look https://example.com/ 9246 433499 433499.433650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27231849845989 0 \N \N f 0 \N 0 62398396 0 f f \N \N \N \N 433499 \N 0 0 \N \N f \N 433304 2024-02-21 02:06:29.494 2024-02-21 02:16:31.447 Name put just democratic follow beyond marriage minute. Only none s By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always. https://example.com/ 21194 \N 433304 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.6802755190869 0 \N \N f 0 \N 0 140527086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433665 2024-02-21 12:03:49.76 2024-02-21 12:13:51.086 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand https://example.com/ 13249 433623 432203.432785.433005.433110.433441.433617.433623.433665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5813118270886 0 \N \N f 0 \N 1 223796761 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 433601 2024-02-21 11:09:44.965 2024-02-21 11:19:46.728 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy https://example.com/ 11561 433598 433588.433593.433598.433601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.75866633690911 0 \N \N f 0 \N 1 126879336 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 432563 2024-02-20 15:00:33.454 2024-02-20 15:10:34.781 Exist near ago home. Continue compare general mouth jus Pass glass feeling five. Health which painting college book fall along. Involve never home central account posit https://example.com/ 4650 \N 432563 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.717812414115855 0 \N \N f 0 \N 13 19675785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433671 2024-02-21 12:06:20.112 2024-02-21 12:16:21.222 \N Face opportunity account eat program fath https://example.com/ 17494 433653 433649.433653.433671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.259874499842 0 \N \N f 0 \N 0 133297388 0 f f \N \N \N \N 433649 \N 0 0 \N \N f \N 433632 2024-02-21 11:34:29.376 2024-02-21 11:44:30.547 \N Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institut https://example.com/ 3304 433627 433217.433347.433444.433607.433613.433620.433627.433632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0913773253478 0 \N \N f 0 \N 2 140311676 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433636 2024-02-21 11:36:35.005 2024-02-21 11:46:36.83 \N Hold show assume travel https://example.com/ 2000 433571 433571.433636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6073113079212 0 \N \N f 0 \N 0 224514596 0 f f \N \N \N \N 433571 \N 0 0 \N \N f \N 437347 2024-02-24 15:10:16.451 2024-02-24 15:20:17.306 \N Moment hundred skin trip hour h https://example.com/ 8269 437158 437044.437158.437347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53564634223903 0 \N \N f 0 \N 0 67081049 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 433637 2024-02-21 11:36:41.314 2024-02-21 11:46:42.879 \N Return agreement happy health option. Someone collection raise put. Ok price international base r https://example.com/ 13782 433589 433588.433589.433637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8840850276548 0 \N \N f 0 \N 0 123110907 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433635 2024-02-21 11:35:53.928 2024-02-21 11:45:54.98 \N Already reduce grow only chance opportun https://example.com/ 17513 433531 433391.433531.433635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7348086375067 0 \N \N f 0 \N 0 42615890 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433654 2024-02-21 11:52:38.135 2024-02-21 12:02:39.617 \N Again trade author cultural ta https://example.com/ 17042 433500 433391.433500.433654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.05672167582205 0 \N \N f 0 \N 1 182202592 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433558 2024-02-21 10:16:28.166 2024-02-21 10:26:29.869 Improve most form final blood. Section ability possible than strategy y Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break. https://example.com/ 16633 \N 433558 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.5390375751229 0 \N \N f 0 \N 0 228145171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439353 2024-02-26 14:08:48.189 2024-02-26 14:18:50.271 Wait forward with whose only card brother. Another sta Top happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl https://example.com/ 12821 \N 439353 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 8.16304141392333 0 \N \N f 0 \N 0 21405130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439371 2024-02-26 14:21:34.214 2024-02-26 14:31:35.571 \N Factor song sci https://example.com/ 19094 439358 439358.439371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75848725501116 0 \N \N f 0 \N 1 128129222 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 433079 2024-02-20 21:52:21.942 2024-02-20 22:02:23.423 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simpl https://example.com/ 10728 432114 430496.430601.432114.433079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9898086352393 0 \N \N f 0 \N 0 56463797 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 433642 2024-02-21 11:39:42.93 2024-02-21 11:49:44.648 \N Near whom sit wond https://example.com/ 673 433331 433331.433642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9001976338183 0 \N \N f 0 \N 0 233664624 0 f f \N \N \N \N 433331 \N 0 0 \N \N f \N 433652 2024-02-21 11:51:40.031 2024-02-21 12:01:41.808 \N Many then growth. Law https://example.com/ 19661 433647 433591.433647.433652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.17017463015238 0 \N \N f 0 \N 0 178360861 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 433660 2024-02-21 11:56:01.493 2024-02-21 12:06:03.093 \N American https://example.com/ 4014 433588 433588.433660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.240712917627732 0 \N \N f 0 \N 0 79700042 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433664 2024-02-21 12:03:46.344 2024-02-21 12:13:47.572 \N Girl someone prepare. Realize however yeah staff kitchen gas. Rev https://example.com/ 627 433659 433435.433659.433664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3998447351639 0 \N \N f 0 \N 0 232301035 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433683 2024-02-21 12:20:24.736 2024-02-21 12:30:27.725 \N Always friend price benefit. Reflect seem help none truth myself responsi https://example.com/ 5128 433678 433649.433666.433678.433683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3855639313975 0 \N \N f 0 \N 0 125400002 0 f f \N \N \N \N 433649 \N 0 0 \N \N f \N 433673 2024-02-21 12:07:18.855 2024-02-21 12:17:21.156 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout uni https://example.com/ 10591 433665 432203.432785.433005.433110.433441.433617.433623.433665.433673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64594665044394 0 \N \N f 0 \N 0 28765907 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 433690 2024-02-21 12:25:39.682 2024-02-21 12:35:41.735 \N Direction https://example.com/ 671 433574 433574.433690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.21044169986504 0 \N \N f 0 \N 0 243560213 0 f f \N \N \N \N 433574 \N 0 0 \N \N f \N 433669 2024-02-21 12:05:20.643 2024-02-21 12:15:23.153 Author travel realize. Face represent bring read gas. Group sy Their election city process. Agency early its stock. Recent while popula https://example.com/ 19759 \N 433669 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 15.1809430090105 0 \N \N f 0 \N 1 13774464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433602 2024-02-21 11:10:20.816 2024-02-21 11:20:22.686 Model late institution once force rock. Range media reflect argue Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred. https://example.com/ 9242 \N 433602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.65263683672222 0 \N \N f 0 \N 1 105380643 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433640 2024-02-21 11:39:22.647 2024-02-21 11:49:25.041 \N Career six also sp https://example.com/ 18008 433377 433377.433640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6692837559942 0 \N \N f 0 \N 1 105026497 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 433573 2024-02-21 10:38:07.5 2024-02-21 10:48:08.832 Purpose add when information sing like recognize. Career bad resource. Point cri About cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure. https://example.com/ 20892 \N 433573 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8590365076237 0 \N \N f 0 \N 1 41059765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440807 2024-02-27 17:00:04.664 2024-02-27 17:10:05.685 Eye mil \N https://example.com/ 5173 \N 440807 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.2822540579365 0 \N \N f 0 \N 1 58766467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433667 2024-02-21 12:04:20.472 2024-02-21 12:14:21.683 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nRed production his nothing financial. Media especially bed final https://example.com/ 21072 433654 433391.433500.433654.433667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2970600462667 0 \N \N f 0 \N 0 226612827 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433656 2024-02-21 11:53:49.237 2024-02-21 12:03:51.211 \N For wrong offer a. Image bad should executive society mean would company. https://example.com/ 8162 433452 433391.433452.433656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5801698505156 0 \N \N f 0 \N 0 185758267 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433643 2024-02-21 11:40:31.793 2024-02-21 11:50:33.1 \N Fear size with rich skin decade c https://example.com/ 18690 433571 433571.433643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2116607223764 0 \N \N f 0 \N 0 247687503 0 f f \N \N \N \N 433571 \N 0 0 \N \N f \N 434386 2024-02-21 23:13:51.717 2024-02-21 23:23:53.045 \N Beyond leg century level herself those. https://example.com/ 5825 433753 433588.433753.434386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8469788812146 0 \N \N f 0 \N 1 196286533 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439231 2024-02-26 12:57:33.148 2024-02-26 13:07:35.842 Wait forward with whose only card brother. Another stand scene line reduce yes. Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe. https://example.com/ 18446 \N 439231 \N \N \N \N \N \N \N \N security \N ACTIVE \N 20.5537463750481 0 \N \N f 0 \N 0 93545113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439396 2024-02-26 14:43:50.883 2024-02-26 14:53:52.99 \N Everybody laugh key left specific wonder. Per https://example.com/ 20302 439154 439130.439154.439396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5003003302574 0 \N \N f 0 \N 0 75696700 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 433644 2024-02-21 11:41:59.926 2024-02-21 11:52:00.887 \N Affect key her. Development create d https://example.com/ 19660 433634 433217.433347.433444.433607.433613.433620.433627.433632.433634.433644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7967035269411 0 \N \N f 0 \N 0 1284792 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 439373 2024-02-26 14:23:02.25 2024-02-26 14:33:03.61 \N Live class artist pull nearly poor. Use vote re https://example.com/ 1814 439358 439358.439373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.29761658428436 0 \N \N f 0 \N 1 206966163 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 431833 2024-02-19 20:26:01.358 2024-02-19 20:36:02.696 \N Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west https://example.com/ 18423 431076 430837.431076.431833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.90669380803536 0 \N \N f 0 \N 1 47919659 0 f f \N \N \N \N 430837 \N 0 0 \N \N f \N 433608 2024-02-21 11:14:47.412 2024-02-21 11:24:49.086 Theory teach dream home past. Pop Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nForget throughout sea city first by remember. Amount economic box girl. Subject whit https://example.com/ 19484 \N 433608 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.3676550657635 0 \N \N f 0 \N 1 90208175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433662 2024-02-21 12:00:04.888 2024-02-21 12:10:07.041 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activ https://example.com/ 9349 433661 433661.433662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58434775864378 0 \N \N f 0 \N 0 77643484 0 f f \N \N \N \N 433661 \N 0 0 \N \N f \N 433653 2024-02-21 11:51:58.903 2024-02-21 12:02:01.075 \N Authority environmental party bank region trip new that. Leave game read al https://example.com/ 9 433649 433649.433653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3296076373257 0 \N \N f 0 \N 1 3969939 0 f f \N \N \N \N 433649 \N 0 0 \N \N f \N 433651 2024-02-21 11:51:23.849 2024-02-21 12:01:25.267 \N Scientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to https://example.com/ 17050 433594 433594.433651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63409712770875 0 \N \N f 0 \N 0 51848212 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 433659 2024-02-21 11:54:53.917 2024-02-21 12:04:55.263 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care https://example.com/ 20539 433435 433435.433659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71255843663391 0 \N \N f 0 \N 1 133098661 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433657 2024-02-21 11:53:53.473 2024-02-21 12:03:55.261 \N Quickly imagine he learn effort risk wish. Respond include https://example.com/ 18641 432670 432670.433657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.88199775220524 0 \N \N f 0 \N 1 190543355 0 f f \N \N \N \N 432670 \N 0 0 \N \N f \N 433693 2024-02-21 12:26:57.809 2024-02-21 12:36:59.225 Score picture lot professor bed season country. Begin watch tree south simply so Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother f https://example.com/ 14545 \N 433693 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.5046346786407 0 \N \N f 0 \N 0 125928218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433672 2024-02-21 12:06:57.858 2024-02-21 12:16:59.432 Deal probably car remember hit reveal. Here bla Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low https://example.com/ 917 \N 433672 \N \N \N \N \N \N \N \N art \N ACTIVE \N 24.4559787321259 0 \N \N f 0 \N 0 139594084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433623 2024-02-21 11:26:02.158 2024-02-21 11:36:03.514 \N Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determin https://example.com/ 7185 433617 432203.432785.433005.433110.433441.433617.433623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6707088990087 0 \N \N f 0 \N 2 14843887 0 f f \N \N \N \N 432203 \N 0 0 \N \N f \N 433687 2024-02-21 12:22:02.526 2024-02-21 12:32:03.51 \N Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nArtist fly billion same. Go may avoid exactl https://example.com/ 19902 433555 433555.433687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5394774716339 0 \N \N f 0 \N 2 155280538 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433645 2024-02-21 11:44:52.457 2024-02-21 11:54:54.484 \N Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual be https://example.com/ 10771 433641 433435.433641.433645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6430132349315 0 \N \N f 0 \N 1 167976350 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433675 2024-02-21 12:09:43.287 2024-02-21 12:19:45.329 \N Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real t https://example.com/ 17148 433626 433618.433622.433626.433675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.70841459817763 0 \N \N f 0 \N 0 128743179 0 f f \N \N \N \N 433618 \N 0 0 \N \N f \N 433697 2024-02-21 12:33:24.974 2024-02-21 12:43:27.55 \N Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real b https://example.com/ 1426 433679 433679.433697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2677383437668 0 \N \N f 0 \N 0 41467272 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 433705 2024-02-21 12:37:19.292 2024-02-21 12:47:21.592 \N T https://example.com/ 15161 433679 433679.433705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.73974078881829 0 \N \N f 0 \N 0 237824397 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 433706 2024-02-21 12:38:50.642 2024-02-21 12:48:51.772 Least start time do. Occur between avoid political use make. Nor no both ability Everyone usually memory amount help b https://example.com/ 20084 \N 433706 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 23.9117996795986 0 \N \N f 0 \N 0 196926671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433699 2024-02-21 12:35:26.719 2024-02-21 12:45:27.646 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two ac https://example.com/ 5175 430829 430626.430798.430821.430829.433699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4971980008836 0 \N \N f 0 \N 0 233377901 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 439140 2024-02-26 12:03:04.596 2024-02-26 12:13:06.721 \N Word around effect game light claim home. Poin https://example.com/ 19284 439139 439139.439140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9754123132138 0 \N \N f 0 \N 0 92862263 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433674 2024-02-21 12:08:50.225 2024-02-21 12:18:51.391 \N Order science level wish quite. About production ability win front machine. Trainin https://example.com/ 18269 433508 432466.433054.433508.433674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98545269132966 0 \N \N f 0 \N 0 13554137 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433676 2024-02-21 12:10:38.076 2024-02-21 12:20:39.034 Somebody cold factor themselves for mouth adult. Country receive an Stay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind. https://example.com/ 12218 \N 433676 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.9493643085733 0 \N \N f 0 \N 0 224200284 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433680 2024-02-21 12:17:43.728 2024-02-21 12:27:45.32 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whateve https://example.com/ 8400 433677 433677.433680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.01083023539739 0 \N \N f 0 \N 0 82863060 0 f f \N \N \N \N 433677 \N 0 0 \N \N f \N 433647 2024-02-21 11:48:27.303 2024-02-21 11:58:29.33 \N American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband c https://example.com/ 20326 433591 433591.433647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6359989327208 0 \N \N f 0 \N 1 148902769 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 433670 2024-02-21 12:05:24.707 2024-02-21 12:15:27.155 \N Popular rest ce https://example.com/ 8508 433645 433435.433641.433645.433670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0686891356791 0 \N \N f 0 \N 0 10752536 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433646 2024-02-21 11:46:23.008 2024-02-21 11:56:24.79 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull ne https://example.com/ 21339 433588 433588.433646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0975576890107 0 \N \N f 0 \N 5 148080895 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433681 2024-02-21 12:19:37.781 2024-02-21 12:29:39.608 \N Direction business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half https://example.com/ 1772 433470 433470.433681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31949031264549 0 \N \N f 0 \N 0 173069709 0 f f \N \N \N \N 433470 \N 0 0 \N \N f \N 433701 2024-02-21 12:36:00.44 2024-02-21 12:46:01.677 Role number law science. Sing fight Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air. https://example.com/ 19821 \N 433701 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.33581241429005 0 \N \N f 0 \N 0 212161000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433694 2024-02-21 12:27:31.987 2024-02-21 12:37:33.456 Reach road deal especially down since ball score. Make either much health Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea. https://example.com/ 16004 \N 433694 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.252218540669 0 \N \N f 0 \N 0 75447329 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433692 2024-02-21 12:26:44.108 2024-02-21 12:36:45.186 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international https://example.com/ 964 433689 433679.433689.433692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.77067759836474 0 \N \N f 0 \N 0 72927342 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 439400 2024-02-26 14:45:44.813 2024-02-26 14:55:46.883 \N Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nStuff this how behind total his left. Know school produce together light. Blood https://example.com/ 4166 439398 439398.439400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.136136895371 0 \N \N f 0 \N 0 219484642 0 f f \N \N \N \N 439398 \N 0 0 \N \N f \N 438774 2024-02-26 00:29:30.178 2024-02-26 00:39:31.824 \N Religious leg forward yes p https://example.com/ 12819 438749 438649.438731.438749.438774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.689419803290861 0 \N \N f 0 \N 3 153800733 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 438937 2024-02-26 07:31:43.894 2024-02-26 07:41:45.035 Yourself teach week line no hotel whatever. Identify floor his employee Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nShe loss lawyer raise without right property. Fo https://example.com/ 15408 \N 438937 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 3.67894919753812 0 \N \N f 0 \N 2 178733722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433584 2024-02-21 10:54:20.936 2024-02-21 11:04:22.17 \N Myself m https://example.com/ 9921 433570 432466.433054.433508.433570.433584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.66764111010204 0 \N \N f 0 \N 0 52184469 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 439405 2024-02-26 14:47:40.654 2024-02-26 14:57:42.346 Matter training experience. Election carry thing th Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section. https://example.com/ 20412 \N 439405 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.236918885338 0 \N \N f 0 \N 2 207671480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437414 2024-02-24 16:05:38.895 2024-02-24 16:15:40.17 \N By fight several talk. Minute probably fish player. Drive window million ground t https://example.com/ 9695 437413 436722.437413.437414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.61625382474294 0 \N \N f 0 \N 1 211475120 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 433708 2024-02-21 12:41:11.375 2024-02-21 12:51:13.631 \N Can operat https://example.com/ 16954 431378 431378.433708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8209677592029 0 \N \N f 0 \N 0 152137321 0 f f \N \N \N \N 431378 \N 0 0 \N \N f \N 431378 2024-02-19 18:38:04.723 2024-02-19 18:48:06.135 Often culture through program memory mind go. Wrong statement discussion. Rec Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor. https://example.com/ 21208 \N 431378 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 6.14168891789177 0 \N \N f 0 \N 1 22872348 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433686 2024-02-21 12:21:43.956 2024-02-21 12:31:44.851 Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nAlmost about m https://example.com/ 5776 \N 433686 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.3749159729641 0 \N \N f 0 \N 0 60327818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436019 2024-02-23 10:42:44.596 2024-02-23 10:52:45.551 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nTest rock daughter https://example.com/ 19292 435907 435907.436019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03470601089391 0 \N \N f 0 \N 3 58603145 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 433691 2024-02-21 12:26:07.229 2024-02-21 12:36:09.344 Story do plant get. Base involve sport film authority want song career. Eat offi Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move ru https://example.com/ 16988 \N 433691 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 27.9415123175142 0 \N \N f 0 \N 0 181614131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435907 2024-02-23 07:17:00.51 2024-02-25 07:13:10.614 Term growth industry election produc Author professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nProperty pass now firm today boy reason. C https://example.com/ 17519 \N 435907 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 15.6211802156182 0 \N \N f 0 \N 17 57942339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436383 2024-02-23 16:26:08.974 2024-02-23 16:36:10.75 \N Station nothing decide Mr sing candidate thought. Away ten fin https://example.com/ 21417 436040 435907.436019.436040.436383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19088748843151 0 \N \N f 0 \N 1 222982447 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 439351 2024-02-26 14:08:15.229 2024-02-26 14:18:16.385 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nRich leg value billion long. Day discussion lawyer community spring light https://example.com/ 5173 439082 439082.439351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4047614709866 0 \N \N f 0 \N 2 68583139 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433707 2024-02-21 12:40:31.842 2024-02-21 12:50:33.534 Structure require feel statement plan e Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be. https://example.com/ 18310 \N 433707 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 0.954792556349311 0 \N \N f 0 \N 0 158455694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433704 2024-02-21 12:37:01.349 2024-02-21 12:47:03.426 Risk clearly listen table total. Plan age big easy off. Toward alone base top im Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week https://example.com/ 20912 \N 433704 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 22.4910841730467 0 \N \N f 0 \N 0 187763461 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439403 2024-02-26 14:46:50.824 2024-02-26 14:56:52.723 \N Hotel b https://example.com/ 18511 439389 439142.439188.439194.439223.439352.439361.439375.439382.439389.439403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1578935422395 0 \N \N f 0 \N 0 189028279 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433745 2024-02-21 13:23:47.808 2024-02-21 13:33:49.822 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agenc https://example.com/ 4043 433730 433730.433745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44367423277093 0 \N \N f 0 \N 0 148064336 0 f f \N \N \N \N 433730 \N 0 0 \N \N f \N 434242 2024-02-21 19:45:31.075 2024-02-21 19:55:32.124 \N Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nReturn teacher https://example.com/ 19848 434160 434160.434242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0757853830814 0 \N \N f 0 \N 3 14264036 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 433568 2024-02-21 10:28:17.841 2024-02-21 10:38:20.07 Purpose age cover machine. Must individual hot begin figure threat Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever rea https://example.com/ 21418 \N 433568 \N \N \N \N \N \N \N \N health \N ACTIVE \N 20.5329098368142 0 \N \N f 0 \N 1 180787682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433711 2024-02-21 12:47:13.364 2024-02-21 12:57:15.244 \N Tax kid loss hear ahead common best see. Number thus which story list for https://example.com/ 4250 433588 433588.433711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.923371598188 0 \N \N f 0 \N 0 183301748 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433731 2024-02-21 13:05:41.898 2024-02-21 13:15:43.86 Finally and may second. Middle want South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat. https://example.com/ 5306 \N 433731 \N \N \N \N \N \N \N \N security \N ACTIVE \N 17.3800597791302 0 \N \N f 0 \N 0 20692918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438764 2024-02-26 00:09:44.528 2024-02-26 00:19:45.928 Side rather law learn. Continue e Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress. https://example.com/ 993 \N 438764 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 23.7724666623203 0 \N \N f 0 \N 2 4105919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433460 2024-02-21 07:53:32.1 2024-02-21 08:03:34.483 Hot society statement Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will https://example.com/ 6360 \N 433460 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 21.9099725797063 0 \N \N f 0 \N 0 178315600 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439410 2024-02-26 14:49:44.831 2024-02-26 14:59:46.288 \N P https://example.com/ 18679 439392 439390.439392.439410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1395884992894 0 \N \N f 0 \N 0 195831592 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433709 2024-02-21 12:45:45.715 2024-02-21 12:55:47.568 \N Second point director operation. Soon face realize born head far half above. Threat seven adult red benef https://example.com/ 20979 433568 433568.433709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26163565193149 0 \N \N f 0 \N 0 180951878 0 f f \N \N \N \N 433568 \N 0 0 \N \N f \N 439158 2024-02-26 12:18:29.913 2024-02-26 12:28:30.805 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. https://example.com/ 20881 439130 439130.439158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.602754558433 0 \N \N f 0 \N 1 178522630 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 433684 2024-02-21 12:20:48.684 2024-02-21 12:38:02.618 Behavior safe concern street crime. Newspaper presid These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nHow never https://example.com/ 21339 \N 433684 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 1.99540460848841 0 \N \N f 0 \N 0 154784865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436595 2024-02-23 19:46:05.14 2024-02-23 19:56:06.274 \N Southern wear age then chair. Sign young end Republican box q https://example.com/ 16357 436507 435359.435366.435466.436507.436595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6046447689026 0 \N \N f 0 \N 0 23292278 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 437380 2024-02-24 15:44:47.139 2024-02-24 15:54:49.108 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood thems https://example.com/ 19121 436631 435906.436361.436631.437380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0083450771309 0 \N \N f 0 \N 0 225303585 0 f f \N \N \N \N 435906 \N 0 0 \N \N f \N 433698 2024-02-21 12:33:42.89 2024-02-21 12:43:45.36 \N Such yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response https://example.com/ 986 433649 433649.433698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03664839019366 0 \N \N f 0 \N 0 203715903 0 f f \N \N \N \N 433649 \N 0 0 \N \N f \N 433714 2024-02-21 12:50:52.507 2024-02-21 13:00:53.521 \N Say this find practice. Small exactly explain from born draw. Stop arrive side several speech social co https://example.com/ 21393 432873 432873.433714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.403588053057184 0 \N \N f 0 \N 0 249050040 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433678 2024-02-21 12:16:43.491 2024-02-21 12:26:45.392 \N Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical curr https://example.com/ 11670 433666 433649.433666.433678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2967215592853 0 \N \N f 0 \N 1 137335349 0 f f \N \N \N \N 433649 \N 0 0 \N \N f \N 433666 2024-02-21 12:04:05.123 2024-02-21 12:14:07.107 \N Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than ar https://example.com/ 998 433649 433649.433666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.960620544617 0 \N \N f 0 \N 2 210120214 0 f f \N \N \N \N 433649 \N 0 0 \N \N f \N 439164 2024-02-26 12:25:14.56 2024-02-26 12:35:16.246 News animal hou Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark. https://example.com/ 20267 \N 439164 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 22.6662697068675 0 \N \N f 0 \N 1 212259383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433485 2024-02-21 08:50:16.93 2024-02-21 09:00:19.032 Letter both ability. Strong several point research general goal that. Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal. https://example.com/ 19138 \N 433485 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 1.42955875881107 0 \N \N f 0 \N 0 59390725 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433618 2024-02-21 11:22:58.712 2024-02-21 11:33:00.721 Operation against song book rise ha Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nEven hot political little painting home. Gard https://example.com/ 18525 \N 433618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3259677228164 0 \N \N f 0 \N 3 15482836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433661 2024-02-21 12:00:04.409 2024-02-21 12:10:05.111 Republican begin audience guy get expect table. Professor certain central \N https://example.com/ 20647 \N 433661 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.5146812115859 0 \N \N f 0 \N 1 166856435 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433735 2024-02-21 13:10:46.847 2024-02-21 13:20:47.995 \N Nature wrong meeting whatever. Manage product me st https://example.com/ 4388 433555 433555.433735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2510285956469 0 \N \N f 0 \N 1 38807803 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434391 2024-02-21 23:19:25.198 2024-02-21 23:29:26.514 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight sub https://example.com/ 6229 433771 433740.433771.434391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.29740153316915 0 \N \N f 0 \N 0 71905134 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433470 2024-02-21 08:09:44.233 2024-02-21 08:19:45.965 Exist near ago home. Continue compare general mouth just Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nAlone force machine policy energy. Sta https://example.com/ 19660 \N 433470 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.298308761706 0 \N \N f 0 \N 1 100137406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433717 2024-02-21 12:51:55.185 2024-02-21 13:01:57.242 \N Before evening her visit bag buildin https://example.com/ 16193 433179 430892.432388.433179.433717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5185503875881 0 \N \N f 0 \N 0 184637545 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 433723 2024-02-21 12:57:19.064 2024-02-21 13:07:21.899 \N Small concern peace on far either. Service clear movie decision follow family https://example.com/ 17517 433631 433588.433631.433723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1367133563756 0 \N \N f 0 \N 1 209853684 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433703 2024-02-21 12:37:00.345 2024-02-21 12:47:01.611 \N Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nNetwork art go experience example him see. Ha https://example.com/ 9341 433702 433702.433703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2875249746698 0 \N \N f 0 \N 0 58648080 0 f f \N \N \N \N 433702 \N 0 0 \N \N f \N 433702 2024-02-21 12:36:36.024 2024-02-21 12:46:37.042 Involve morning someone them Congress keep rule. Order price condition get despi Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. https://example.com/ 746 \N 433702 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 4.65287098767419 0 \N \N f 0 \N 2 20013559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433317 2024-02-21 02:33:54.77 2024-02-21 02:43:56.22 \N Floor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsib https://example.com/ 20588 433114 433114.433317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6374099140998 0 \N \N f 0 \N 3 206419643 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439418 2024-02-26 15:00:06.42 2024-02-26 15:10:07.869 Admit TV soon \N https://example.com/ 21556 \N 439418 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.5657557799712 0 \N \N f 0 \N 1 103833980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433716 2024-02-21 12:51:51.123 2024-02-21 13:01:53.226 Type door clear left. Test investment between table ex Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world. https://example.com/ 18209 \N 433716 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.8075043854439 0 \N \N f 0 \N 0 154374478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439414 2024-02-26 14:54:22.545 2024-02-26 15:04:23.553 Have decide business throw source strong town line. Local forget Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its. https://example.com/ 20080 \N 439414 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6529649641662 0 \N \N f 0 \N 1 213491866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433724 2024-02-21 12:59:33.407 2024-02-21 13:09:35.509 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought https://example.com/ 21451 433555 433555.433724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8813307487558 0 \N \N f 0 \N 1 191462823 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433649 2024-02-21 11:49:41.251 2024-02-21 11:59:42.883 Never new shoulder lose threat star. Production window real ch Speech radio kind know. Can travel though PM deep baby. Book eye region https://example.com/ 2328 \N 433649 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 4.39402116974293 0 \N \N f 0 \N 6 36098906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434416 2024-02-21 23:51:07.664 2024-02-22 00:01:09.368 \N She for deep administration ever https://example.com/ 20287 434049 433594.434049.434416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2840068735157 0 \N \N f 0 \N 0 195552637 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 434412 2024-02-21 23:48:56.581 2024-02-21 23:58:58.129 \N Be right whatever former various billion. Tax politics send https://example.com/ 15617 434278 434278.434412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6115288848465 0 \N \N f 0 \N 2 107293252 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439394 2024-02-26 14:43:02.752 2024-02-26 14:53:04.864 \N Push hair specific policy. We decision easy s https://example.com/ 9150 439139 439139.439394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2761548012068 0 \N \N f 0 \N 0 63729420 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439402 2024-02-26 14:46:25.091 2024-02-26 14:56:27.438 Who collection suggest practice. Walk them Republican. Address investm Sort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common tr https://example.com/ 6149 \N 439402 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 9.08592308491151 0 \N \N f 0 \N 0 194133726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439409 2024-02-26 14:49:21.504 2024-02-26 14:59:22.829 \N Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play https://example.com/ 12346 439158 439130.439158.439409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3412327011393 0 \N \N f 0 \N 0 38045036 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 433734 2024-02-21 13:10:23.294 2024-02-21 13:20:25.585 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nDescri https://example.com/ 17050 433710 433710.433734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8409382717557 0 \N \N f 0 \N 0 112064541 0 f f \N \N \N \N 433710 \N 0 0 \N \N f \N 433737 2024-02-21 13:12:17.653 2024-02-21 13:22:19.743 \N Small concern peace on far either. Service clear movie decision https://example.com/ 18449 433435 433435.433737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5503201998949 0 \N \N f 0 \N 1 241117411 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 433753 2024-02-21 13:29:42.559 2024-02-21 13:39:43.858 \N Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer https://example.com/ 17221 433588 433588.433753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.2606978741724 0 \N \N f 0 \N 4 171860318 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433766 2024-02-21 13:42:35.251 2024-02-21 13:52:36.303 \N Hotel black matter recently idea particular. Manager across all nation meet work sort https://example.com/ 19941 433763 433760.433763.433766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9720198687927 0 \N \N f 0 \N 0 216863183 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 437386 2024-02-24 15:51:56.799 2024-02-24 16:01:58.396 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. V https://example.com/ 16724 436764 436764.437386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39288450612071 0 \N \N f 0 \N 0 119263853 0 f f \N \N \N \N 436764 \N 0 0 \N \N f \N 433726 2024-02-21 13:01:48.376 2024-02-21 13:11:49.626 Determine evidence bar. Evening where myself shoulder century number. End par Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter. https://example.com/ 4692 \N 433726 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.06360434644234 0 \N \N f 0 \N 0 177059756 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436742 2024-02-23 23:45:31.72 2024-02-23 23:55:32.733 \N Reflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonigh https://example.com/ 21541 436739 436722.436736.436739.436742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1529947092044 0 \N \N f 0 \N 1 103317629 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 433725 2024-02-21 13:01:31.024 2024-02-21 13:11:33.42 \N Past loss author a need give civil style. Also check house until M https://example.com/ 9242 429291 429291.433725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3831038360684 0 \N \N f 0 \N 0 139152498 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 433879 2024-02-21 15:45:15.02 2024-02-21 15:55:16.459 \N Never money Congress data https://example.com/ 19570 433740 433740.433879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1986544422619 0 \N \N f 0 \N 1 202661099 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433733 2024-02-21 13:06:31.689 2024-02-21 13:16:33.669 \N Hear degree home air https://example.com/ 20901 433718 433718.433733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9977444960473 0 \N \N f 0 \N 1 221228765 0 f f \N \N \N \N 433718 \N 0 0 \N \N f \N 433736 2024-02-21 13:11:37.131 2024-02-21 13:21:40.027 Sense edge father camera. Region whose enough vote up. Final knowledge push Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state. https://example.com/ 21591 \N 433736 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.0344141717194 0 \N \N f 0 \N 0 194069088 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433719 2024-02-21 12:53:03.357 2024-02-21 13:03:05.67 Game management go ready star call how. Total sister make. End physi Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect. https://example.com/ 20577 \N 433719 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 10.345353401572 0 \N \N f 0 \N 0 67063224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437383 2024-02-24 15:47:10.901 2024-02-24 15:57:13.016 \N Fund spring who save three true. Past director road where I help forward. Ball later vie https://example.com/ 15115 437264 436805.436913.437180.437264.437383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.413637862902 0 \N \N f 0 \N 0 87549145 0 f f \N \N \N \N 436805 \N 0 0 \N \N f \N 433741 2024-02-21 13:15:02.739 2024-02-21 13:25:03.939 Off should democratic notice old apply society. Buy Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message pro https://example.com/ 9552 \N 433741 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.8700369125034 0 \N \N f 0 \N 0 175138381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437157 2024-02-24 13:08:52.26 2024-02-24 13:18:54.046 \N Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nThem response usually tax tax. Marriage check appear memory w https://example.com/ 9036 436208 435905.436208.437157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3355559343575 0 \N \N f 0 \N 2 196696218 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 434394 2024-02-21 23:30:31.47 2024-02-21 23:40:33.506 \N Treatment dream at American often discussion. Whole light trade re https://example.com/ 21291 434386 433588.433753.434386.434394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8703644121711 0 \N \N f 0 \N 0 155588630 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433621 2024-02-21 11:25:03.373 2024-02-21 11:35:04.799 \N Gas evening morning do of. Development executive like short physical peace program. Crime https://example.com/ 1326 433593 433588.433593.433621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44058438390494 0 \N \N f 0 \N 2 70781079 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 436761 2024-02-23 23:59:36.11 2024-02-24 00:09:37.27 Born value hundred medical loss. Kid white check draw chance Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize. https://example.com/ 5377 \N 436761 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.20464125376255 0 \N \N f 0 \N 0 58975041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436744 2024-02-23 23:47:06.057 2024-02-23 23:57:07.299 \N Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join le https://example.com/ 18188 423683 423683.436744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.27262936331747 0 \N \N f 0 \N 0 158357539 0 f f \N \N \N \N 423683 \N 0 0 \N \N f \N 433751 2024-02-21 13:27:56.997 2024-02-21 13:37:58.25 \N Very https://example.com/ 9845 433733 433718.433733.433751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.25184704437592 0 \N \N f 0 \N 0 89327426 0 f f \N \N \N \N 433718 \N 0 0 \N \N f \N 433742 2024-02-21 13:15:26.24 2024-02-21 13:25:28.178 Work suddenly pick. Interesting check state. Security l More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building. https://example.com/ 21620 \N 433742 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9023058289351 0 \N \N f 0 \N 3 27903686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439277 2024-02-26 13:21:33.367 2024-02-26 13:31:34.958 Answer party get head Democrat. Marriage letter west social sing. Next finish pr Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind. https://example.com/ 13587 \N 439277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.446971884815284 0 \N \N f 0 \N 4 160148085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433557 2024-02-21 10:14:49.536 2024-02-21 10:24:50.157 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nBook environmental good western support either be. Choice another much. Car consider shoulder a https://example.com/ 917 433456 433066.433088.433456.433557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58263687799548 0 \N \N f 0 \N 6 209639878 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 439399 2024-02-26 14:45:30.757 2024-02-26 14:55:31.813 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk https://example.com/ 9166 438840 438649.438731.438749.438774.438840.439399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33544269041602 0 \N \N f 0 \N 1 145831914 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 433739 2024-02-21 13:13:16.191 2024-02-21 13:23:17.933 Child air person ago modern charge little piece. Get trade manage po Top happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state. https://example.com/ 20990 \N 433739 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.5852701611824 0 \N \N f 0 \N 0 130847369 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433729 2024-02-21 13:03:54.407 2024-02-21 13:13:55.475 Try hospital student. Stock floor by weight kind improve. Record reli Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better. https://example.com/ 21514 \N 433729 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.3118667336158 0 \N \N f 0 \N 1 75248392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433743 2024-02-21 13:20:33.377 2024-02-21 13:30:36.617 \N Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. S https://example.com/ 826 433729 433729.433743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3643154526516 0 \N \N f 0 \N 0 200736238 0 f f \N \N \N \N 433729 \N 0 0 \N \N f \N 433641 2024-02-21 11:39:27.567 2024-02-21 11:49:28.588 \N Response finally play political tonight wea https://example.com/ 14015 433435 433435.433641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6760685372943 0 \N \N f 0 \N 2 226525091 0 f f \N \N \N \N 433435 \N 0 0 \N \N f \N 436747 2024-02-23 23:49:19.328 2024-02-23 23:59:20.237 \N Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean b https://example.com/ 700 436705 436612.436700.436705.436747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3748782578887 0 \N \N f 0 \N 0 93634793 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 439272 2024-02-26 13:17:30.642 2024-02-26 13:27:31.955 Sort thus staff hard ne We course us https://example.com/ 8985 \N 439272 \N \N \N \N \N \N \N \N mempool \N ACTIVE \N 22.0970925113402 0 \N \N f 0 \N 0 237525222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436754 2024-02-23 23:55:18.743 2024-02-24 00:05:20.956 \N Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive int https://example.com/ 18995 436702 436549.436658.436661.436674.436688.436702.436754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98157100945332 0 \N \N f 0 \N 0 42317761 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 430836 2024-02-19 15:13:35.384 2024-02-19 15:23:37.262 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough min https://example.com/ 18468 430674 430607.430617.430641.430670.430674.430836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3724216338163 0 \N \N f 0 \N 6 244080582 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 433732 2024-02-21 13:05:56.711 2024-02-21 13:15:58.029 Test rock daughter nation moment. Article His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now. https://example.com/ 974 \N 433732 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 15.744076977286 0 \N \N f 0 \N 0 200976598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435041 2024-02-22 14:35:49.505 2024-02-22 14:45:51.892 \N Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do man https://example.com/ 11038 434795 434795.435041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6433576382255 0 \N \N f 0 \N 0 242706765 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 433747 2024-02-21 13:25:17.625 2024-02-21 13:35:19.718 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out foll https://example.com/ 20861 433629 433217.433267.433629.433747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87651988452829 0 \N \N f 0 \N 0 72673572 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 434307 2024-02-21 21:32:03.798 2024-02-21 21:42:05.556 \N Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by althoug https://example.com/ 663 434298 434278.434298.434307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2713114381213 0 \N \N f 0 \N 0 73432451 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439424 2024-02-26 15:02:42.608 2024-02-26 15:12:43.423 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen https://example.com/ 15159 439417 439413.439417.439424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51731610086995 0 \N \N f 0 \N 0 217940170 0 f f \N \N \N \N 439413 \N 0 0 \N \N f \N 434387 2024-02-21 23:17:01.57 2024-02-21 23:27:03.33 \N Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team sc https://example.com/ 19640 433832 433832.434387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5033581626104 0 \N \N f 0 \N 1 50490117 0 f f \N \N \N \N 433832 \N 0 0 \N \N f \N 435043 2024-02-22 14:38:06.686 2024-02-22 14:48:07.534 \N Rock source rate f https://example.com/ 701 434878 434837.434878.435043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.38047490226159 0 \N \N f 0 \N 0 236299527 0 f f \N \N \N \N 434837 \N 0 0 \N \N f \N 439398 2024-02-26 14:45:13.877 2024-02-26 14:55:15.612 Member I discover option technology recognize especially. Different Main teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course. https://example.com/ 15115 \N 439398 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.912488133494591 0 \N \N f 0 \N 1 178906539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439430 2024-02-26 15:09:59.748 2024-02-26 15:20:01.794 \N Call economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nPrevent machine source wh https://example.com/ 9026 439319 439319.439430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9335288731526 0 \N \N f 0 \N 0 52407450 0 f f \N \N \N \N 439319 \N 0 0 \N \N f \N 439341 2024-02-26 13:59:33.253 2024-02-26 14:09:34.598 \N Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper de https://example.com/ 20106 439163 439082.439099.439163.439341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3299903784663 0 \N \N f 0 \N 0 188025705 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433761 2024-02-21 13:35:07.213 2024-02-21 13:45:07.778 \N Fund spring who save three true. Pas https://example.com/ 19033 433713 433713.433761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4836084082019 0 \N \N f 0 \N 0 43876572 0 f f \N \N \N \N 433713 \N 0 0 \N \N f \N 433758 2024-02-21 13:33:30.936 2024-02-21 13:43:32.7 \N Church listen our call couple rise beyon https://example.com/ 2502 433594 433594.433758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3922108358236 0 \N \N f 0 \N 0 20826380 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 439425 2024-02-26 15:05:06.682 2024-02-26 15:15:07.77 \N Response finally pla https://example.com/ 18119 439414 439414.439425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2877758425375 0 \N \N f 0 \N 0 126798903 0 f f \N \N \N \N 439414 \N 0 0 \N \N f \N 439419 2024-02-26 15:00:06.819 2024-02-26 15:00:12.093 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend https://example.com/ 18321 439418 439418.439419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.26467390696379 0 \N \N f 0 \N 0 203575338 0 f f \N \N \N \N 439418 \N 0 0 \N \N f \N 433757 2024-02-21 13:32:36.443 2024-02-21 13:42:37.573 \N Girl someone prepa https://example.com/ 5904 433746 433594.433746.433757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7284925573668 0 \N \N f 0 \N 0 160442424 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 433629 2024-02-21 11:32:13.475 2024-02-21 11:42:14.63 \N Hope more garden development record. Every move another every table https://example.com/ 4538 433267 433217.433267.433629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48344727895731 0 \N \N f 0 \N 1 190364758 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433756 2024-02-21 13:32:18.792 2024-02-21 13:42:19.557 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able per https://example.com/ 16747 433668 433668.433756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92397596655383 0 \N \N f 0 \N 2 177267531 0 f f \N \N \N \N 433668 \N 0 0 \N \N f \N 439428 2024-02-26 15:07:16.149 2024-02-26 15:17:17.751 \N Sing eight human sit. Tv https://example.com/ 18494 439263 439263.439428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1630512124909 0 \N \N f 0 \N 0 45909029 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 439436 2024-02-26 15:13:00.145 2024-02-26 15:23:01.88 \N Beyond song throw blood https://example.com/ 12175 439263 439263.439436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.78583432410172 0 \N \N f 0 \N 0 165879423 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 439412 2024-02-26 14:51:21.626 2024-02-26 15:01:22.965 \N Policy trade before drop particular up https://example.com/ 19663 439139 439139.439412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8267733322902 0 \N \N f 0 \N 0 181952304 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434403 2024-02-21 23:39:24.174 2024-02-21 23:49:26.099 \N Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection a https://example.com/ 21451 434365 434364.434365.434403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4644251651894 0 \N \N f 0 \N 0 99063916 0 f f \N \N \N \N 434364 \N 0 0 \N \N f \N 433730 2024-02-21 13:03:58.715 2024-02-21 13:13:59.93 Build learn name envi Deal could skin some. Through street f https://example.com/ 16176 \N 433730 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 29.0225249589285 0 \N \N f 0 \N 1 150976780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438882 2024-02-26 04:39:14.338 2024-02-26 04:49:15.397 \N Own about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find centu https://example.com/ 2195 438596 438596.438882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9696485195806 0 \N \N f 0 \N 2 87377294 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 433762 2024-02-21 13:38:36.913 2024-02-21 13:48:38.314 \N Deve https://example.com/ 16950 433718 433718.433762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5835469705953 0 \N \N f 0 \N 0 163484786 0 f f \N \N \N \N 433718 \N 0 0 \N \N f \N 439444 2024-02-26 15:15:34.102 2024-02-26 15:25:36.106 \N Go game ba https://example.com/ 21413 439392 439390.439392.439444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.686360118529201 0 \N \N f 0 \N 0 93121164 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434390 2024-02-21 23:18:47.317 2024-02-21 23:28:48.402 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportuni https://example.com/ 20613 434242 434160.434242.434390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0970003916037 0 \N \N f 0 \N 0 109982960 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 433755 2024-02-21 13:31:45.198 2024-02-21 13:41:45.854 \N Opportuni https://example.com/ 1401 433677 433677.433755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5072888021204 0 \N \N f 0 \N 0 13625007 0 f f \N \N \N \N 433677 \N 0 0 \N \N f \N 439432 2024-02-26 15:11:12.143 2024-02-26 15:21:13.832 \N First right set. Dinner thi https://example.com/ 11417 439277 439277.439432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0714538051397 0 \N \N f 0 \N 1 84182184 0 f f \N \N \N \N 439277 \N 0 0 \N \N f \N 434348 2024-02-21 22:14:16.723 2024-02-21 22:24:18.032 \N Top however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true n https://example.com/ 9333 433799 433799.434348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8727122874712 0 \N \N f 0 \N 0 31434893 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 439319 2024-02-26 13:44:04.646 2024-02-26 13:54:06.177 In grow start way president as compare. Away perfor Say this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big. https://example.com/ 1122 \N 439319 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.6399965827626 0 \N \N f 0 \N 1 88065097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433752 2024-02-21 13:28:30.92 2024-02-21 13:38:32.285 \N East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulde https://example.com/ 2361 433710 433710.433752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4378610080186 0 \N \N f 0 \N 0 159904415 0 f f \N \N \N \N 433710 \N 0 0 \N \N f \N 439312 2024-02-26 13:40:42.195 2024-02-26 13:50:43.477 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check dri https://example.com/ 5495 438882 438596.438882.439312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7506581650419 0 \N \N f 0 \N 1 125355228 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 439437 2024-02-26 15:13:34.482 2024-02-26 15:23:36.085 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practic https://example.com/ 19852 439082 439082.439437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7352138151874 0 \N \N f 0 \N 0 61671444 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434365 2024-02-21 22:50:04.635 2024-02-21 23:00:06.175 \N Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen https://example.com/ 6137 434364 434364.434365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6236034389372 0 \N \N f 0 \N 1 150937592 0 f f \N \N \N \N 434364 \N 0 0 \N \N f \N 433763 2024-02-21 13:39:28.53 2024-02-21 13:49:29.415 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budg https://example.com/ 9026 433760 433760.433763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5860222226614 0 \N \N f 0 \N 1 96959972 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 433768 2024-02-21 13:43:17.801 2024-02-21 13:53:19.369 \N Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quit https://example.com/ 20137 433438 433217.433438.433768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6329725450427 0 \N \N f 0 \N 0 161262282 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 437407 2024-02-24 16:00:39.961 2024-02-24 16:10:41.176 \N E https://example.com/ 4650 437362 437044.437168.437362.437407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.24199550100557 0 \N \N f 0 \N 0 118347445 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 439439 2024-02-26 15:14:40.51 2024-02-26 15:24:41.522 \N Strong of create pr https://example.com/ 733 439354 439082.439354.439439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0431547564733 0 \N \N f 0 \N 0 33628514 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433778 2024-02-21 13:56:19.001 2024-02-21 14:06:20.652 \N South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball https://example.com/ 20564 433318 433217.433318.433778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30074787755273 0 \N \N f 0 \N 0 22781476 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 437389 2024-02-24 15:54:45.061 2024-02-24 16:04:46.333 \N Catch as herself https://example.com/ 18557 437251 437233.437251.437389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64720448468675 0 \N \N f 0 \N 2 158566517 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 123219 2023-01-17 10:31:22.595 2024-01-24 10:50:00.562 Great idea age R https://example.com/ 17237 \N 123219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8495746686077 0 \N \N f 0 \N 24 235496556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433764 2024-02-21 13:40:46.078 2024-02-21 13:50:47.492 Game during everybody only among. Exactl Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill. https://example.com/ 1617 \N 433764 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.9248708055198 0 \N \N f 0 \N 0 181833570 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437394 2024-02-24 15:55:30.677 2024-02-24 16:05:32.512 Side institution practice you. Response herself television. Decide Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so. https://example.com/ 8664 \N 437394 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 20.2582859222446 0 \N \N f 0 \N 0 20920896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439448 2024-02-26 15:17:35.35 2024-02-26 15:27:37.072 \N She for deep administration everybody under front over. Other from fire popular government actually. Soci https://example.com/ 17519 439442 439413.439442.439448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21475894123918 0 \N \N f 0 \N 0 38853778 0 f f \N \N \N \N 439413 \N 0 0 \N \N f \N 439441 2024-02-26 15:15:18.018 2024-02-26 15:25:19.899 \N Risk past without recognize series career either. Ahead approach ani https://example.com/ 670 439082 439082.439441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6738481754529 0 \N \N f 0 \N 0 205761932 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433777 2024-02-21 13:56:16.338 2024-02-21 14:06:17.611 \N Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nLong sound https://example.com/ 4989 428573 428573.433777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2927257530496 0 \N \N f 0 \N 1 59812882 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 433776 2024-02-21 13:55:59.589 2024-02-21 14:06:00.967 \N Political official world difference. Whole any small. Board change a https://example.com/ 18877 433588 433588.433776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85355811682476 0 \N \N f 0 \N 0 152597671 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439440 2024-02-26 15:14:54.113 2024-02-26 15:24:55.646 \N Few system pick down where pull us. Out to https://example.com/ 21588 439393 439390.439393.439440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7927553739802 0 \N \N f 0 \N 1 196629925 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433770 2024-02-21 13:48:26.053 2024-02-21 13:58:27.837 \N According shake the attack guy developmen https://example.com/ 8841 433718 433718.433770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1203162785892 0 \N \N f 0 \N 0 218977798 0 f f \N \N \N \N 433718 \N 0 0 \N \N f \N 433590 2024-02-21 11:00:18.82 2024-02-21 11:10:20.049 \N Role before girl wonder clear many security into. Of your now somebody safe reach. Tre https://example.com/ 14295 433578 433578.433590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0243180001081 0 \N \N f 0 \N 0 118152798 0 f f \N \N \N \N 433578 \N 0 0 \N \N f \N 434409 2024-02-21 23:44:36.138 2024-02-21 23:54:38.252 \N Still power agent https://example.com/ 10611 434352 434352.434409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1789407262 0 \N \N f 0 \N 1 16423067 0 f f \N \N \N \N 434352 \N 0 0 \N \N f \N 433718 2024-02-21 12:52:14.827 2024-02-21 13:02:15.749 Man talk arm player scene reflect. Window pick society in girl. Life realit Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit https://example.com/ 4538 \N 433718 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.8784485556324 0 \N \N f 0 \N 4 152482751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439442 2024-02-26 15:15:19.535 2024-02-26 15:25:21.914 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as cl https://example.com/ 19281 439413 439413.439442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1297016884088 0 \N \N f 0 \N 1 117501912 0 f f \N \N \N \N 439413 \N 0 0 \N \N f \N 433782 2024-02-21 14:01:45.841 2024-02-21 14:11:47.746 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nTreatment dream at American often discussion. Whole light trade rest wide administrati https://example.com/ 9843 433555 433555.433782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.39115843611876 0 \N \N f 0 \N 1 487188 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433825 2024-02-21 14:36:38.788 2024-02-21 14:46:40.093 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Com https://example.com/ 15103 433765 433668.433756.433765.433825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.932292308469 0 \N \N f 0 \N 0 30040846 0 f f \N \N \N \N 433668 \N 0 0 \N \N f \N 433771 2024-02-21 13:49:52.108 2024-02-21 13:59:53.837 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditiona https://example.com/ 3706 433740 433740.433771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.1087585319356 0 \N \N f 0 \N 1 99250974 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439449 2024-02-26 15:18:18.297 2024-02-26 15:28:20.211 \N Them bag because parent see. Young enough o https://example.com/ 16267 439139 439139.439449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1480654637534 0 \N \N f 0 \N 0 58066337 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433779 2024-02-21 13:58:23.417 2024-02-21 14:08:25.096 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually https://example.com/ 10608 433555 433555.433779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1714473084763 0 \N \N f 0 \N 0 242156446 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 439365 2024-02-26 14:18:04.988 2024-02-26 14:28:06.415 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nPlant ever Republi https://example.com/ 618 438946 438946.439365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0022461775598 0 \N \N f 0 \N 1 144590129 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 433775 2024-02-21 13:54:36.451 2024-02-21 14:04:37.511 \N Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit https://example.com/ 11866 433341 433217.433341.433775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86103687740485 0 \N \N f 0 \N 0 214641587 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433784 2024-02-21 14:05:27.265 2024-02-21 14:15:29.027 Poor often speak everyone collection qu Why long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume. https://example.com/ 802 \N 433784 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.0728368423822 0 \N \N f 0 \N 2 85713423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430863 2024-02-19 15:32:48.993 2024-02-19 15:42:50.039 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundr https://example.com/ 7827 430836 430607.430617.430641.430670.430674.430836.430863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04582977846106 0 \N \N f 0 \N 3 220275657 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 439433 2024-02-26 15:12:14.017 2024-02-26 15:22:15.381 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after pr https://example.com/ 4014 439139 439139.439433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0918977780649 0 \N \N f 0 \N 0 242436289 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433805 2024-02-21 14:21:38.469 2024-02-21 14:31:40.04 Whose eye what surface. Leader If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff. https://example.com/ 10311 \N 433805 \N \N \N \N \N \N \N \N art \N ACTIVE \N 5.0500564159697 0 \N \N f 0 \N 3 117544587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433809 2024-02-21 14:23:15.054 2024-02-21 14:33:16.456 \N Strong of cre https://example.com/ 6202 433800 433588.433593.433621.433800.433809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7676602080483 0 \N \N f 0 \N 0 198692812 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433793 2024-02-21 14:12:06.12 2024-02-21 14:22:07.925 \N Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard natur https://example.com/ 14370 433588 433588.433793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0870511087174 0 \N \N f 0 \N 1 26475990 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439114 2024-02-26 11:31:18.131 2024-02-26 11:41:19.977 \N Instead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. https://example.com/ 831 439082 439082.439114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93298641199429 0 \N \N f 0 \N 0 210855526 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439456 2024-02-26 15:21:29.561 2024-02-26 15:31:31.607 \N Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nBlue the that local central middle themse https://example.com/ 14255 439365 438946.439365.439456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1535783224275 0 \N \N f 0 \N 0 47856049 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 433792 2024-02-21 14:10:55.147 2024-02-21 14:20:56.299 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nBlu https://example.com/ 8985 433784 433784.433792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.44085755774007 0 \N \N f 0 \N 0 137493704 0 f f \N \N \N \N 433784 \N 0 0 \N \N f \N 433804 2024-02-21 14:21:11.773 2024-02-21 14:31:12.501 \N Understand Mr score until. Debate according western evening rate https://example.com/ 825 433798 433740.433748.433767.433787.433798.433804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3596747462084 0 \N \N f 0 \N 0 166805492 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433783 2024-02-21 14:04:51.515 2024-02-21 14:14:52.721 \N Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin https://example.com/ 2963 433740 433740.433783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5129293147378 0 \N \N f 0 \N 3 144389394 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433808 2024-02-21 14:22:50.487 2024-02-21 14:32:51.958 \N Network interview indeed whether enjoy realize. Model full talk institutio https://example.com/ 21022 433786 433786.433808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5497232874978 0 \N \N f 0 \N 0 118293706 0 f f \N \N \N \N 433786 \N 0 0 \N \N f \N 433774 2024-02-21 13:53:45.415 2024-02-21 14:03:46.669 \N Score player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea https://example.com/ 16717 433278 433217.433278.433774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7601965340996 0 \N \N f 0 \N 0 94652808 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 434407 2024-02-21 23:43:33.825 2024-02-21 23:53:35.182 \N Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produ https://example.com/ 3456 433783 433740.433783.434407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.37479128313959 0 \N \N f 0 \N 0 85783299 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439357 2024-02-26 14:12:06.219 2024-02-26 14:22:07.488 Mission alone itself parent they get. Morning after factor little manage job so Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organi https://example.com/ 20546 \N 439357 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 0.390803628275762 0 \N \N f 0 \N 0 228236046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437419 2024-02-24 16:12:10.66 2024-02-24 16:22:11.688 \N Admit di https://example.com/ 14552 437238 437238.437419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6457043501349 0 \N \N f 0 \N 2 153664091 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 433795 2024-02-21 14:13:59.718 2024-02-21 14:24:00.901 Fish health while enjoy. Step Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want. https://example.com/ 20006 \N 433795 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 24.2453281581391 0 \N \N f 0 \N 1 196770072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433790 2024-02-21 14:10:30.077 2024-02-21 14:20:31.931 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision litt https://example.com/ 4076 433114 433114.433790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.17595148539292 0 \N \N f 0 \N 0 101966273 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433787 2024-02-21 14:07:21.977 2024-02-21 14:17:24.207 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we https://example.com/ 680 433767 433740.433748.433767.433787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97520420474265 0 \N \N f 0 \N 2 150336549 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439462 2024-02-26 15:23:30.442 2024-02-26 15:33:32.203 Development political left not every themselves factor create. Weight l Family materia https://example.com/ 20182 \N 439462 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.07826168786 0 \N \N f 0 \N 0 48110073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433625 2024-02-21 11:27:58.448 2024-02-21 11:38:00.266 \N Front color executive find hotel. Security da https://example.com/ 3396 433588 433588.433625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3710245614288 0 \N \N f 0 \N 0 118945539 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433631 2024-02-21 11:33:52.667 2024-02-21 11:43:54.88 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself https://example.com/ 1092 433588 433588.433631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16294837975369 0 \N \N f 0 \N 2 116001742 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 441728 2024-02-28 11:14:57.534 2024-02-28 11:24:58.938 \N Per https://example.com/ 15938 441639 441637.441639.441728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85358388189201 0 \N \N f 0 \N 1 75056930 0 f f \N \N \N \N 441637 \N 0 0 \N \N f \N 433845 2024-02-21 15:03:31.695 2024-02-21 15:13:32.587 Gas evening morning do of. Development executive lik Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century de https://example.com/ 651 \N 433845 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.75564826945831 0 \N \N f 0 \N 3 103655612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439471 2024-02-26 15:31:07.468 2024-02-26 15:41:08.931 Moment or possible there month. Myself hit name exist team hers Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black. https://example.com/ 1261 \N 439471 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.1452688590955 0 \N \N f 0 \N 0 235201834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433599 2024-02-21 11:09:16.508 2024-02-21 11:19:18.636 \N Wide hundred paper early. Together third attorney entire. And charge happy proce https://example.com/ 5160 433588 433588.433599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11417056382517 0 \N \N f 0 \N 0 25011338 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433818 2024-02-21 14:29:52.428 2024-02-21 14:39:53.378 Big money in south wide support. Meet radio walk grow lay nor interest. Ri Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method. https://example.com/ 6741 \N 433818 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.4228174296271 0 \N \N f 0 \N 0 4000915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433789 2024-02-21 14:08:09.75 2024-02-21 14:18:11.766 \N We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value tab https://example.com/ 3304 433499 433499.433789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8032635885915 0 \N \N f 0 \N 1 53001230 0 f f \N \N \N \N 433499 \N 0 0 \N \N f \N 433791 2024-02-21 14:10:30.774 2024-02-21 14:20:31.932 Think cover scientist financial attention he word. World laugh partner part. Co Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody tre https://example.com/ 1173 \N 433791 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.81436546576867 0 \N \N f 0 \N 0 97332372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434415 2024-02-21 23:50:26.024 2024-02-22 00:00:27.143 \N Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. D https://example.com/ 4076 434412 434278.434412.434415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7555290021531 0 \N \N f 0 \N 0 48304145 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434413 2024-02-21 23:49:19.341 2024-02-21 23:59:20.941 \N Explain order help wit https://example.com/ 8004 433746 433594.433746.434413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4804021594208 0 \N \N f 0 \N 0 160947215 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 434335 2024-02-21 21:59:52.005 2024-02-21 22:09:53.279 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nIncluding lawyer baby ok movie never happy. Civil program effor https://example.com/ 1136 434326 434278.434309.434326.434335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4682731136375 0 \N \N f 0 \N 0 77368270 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434468 2024-02-22 01:35:33.977 2024-02-22 01:45:35.479 \N Tre https://example.com/ 987 434385 434385.434468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.304101899813 0 \N \N f 0 \N 0 148012995 0 f f \N \N \N \N 434385 \N 0 0 \N \N f \N 433255 2024-02-21 00:33:42.288 2024-02-21 00:43:43.377 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside ofte https://example.com/ 9796 433234 432920.433123.433232.433234.433255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1763705412943 0 \N \N f 0 \N 4 154370321 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434418 2024-02-21 23:54:24.84 2024-02-22 00:04:25.731 \N From democratic trial American blue. Save carry son else. While student accep https://example.com/ 1692 434402 434402.434418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1378428033248 0 \N \N f 0 \N 0 170705129 0 f f \N \N \N \N 434402 \N 0 0 \N \N f \N 433813 2024-02-21 14:26:24.022 2024-02-21 14:36:26.208 \N Blood bill here traditional u https://example.com/ 16194 433784 433784.433813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5279481378084 0 \N \N f 0 \N 0 66638860 0 f f \N \N \N \N 433784 \N 0 0 \N \N f \N 434363 2024-02-21 22:39:25.705 2024-02-21 22:49:27.031 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nHelp out doctor wait. Early central baby base financial. Under comp https://example.com/ 2293 426587 426587.434363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0900371242132 0 \N \N f 0 \N 1 199991081 0 f f \N \N \N \N 426587 \N 0 0 \N \N f \N 433767 2024-02-21 13:43:16.187 2024-02-21 13:53:17.786 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possibl https://example.com/ 12218 433748 433740.433748.433767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.452836780211 0 \N \N f 0 \N 3 242527704 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 435626 2024-02-22 22:49:05.416 2024-02-22 22:59:06.805 \N Best choice maintain she else member. Health country mind police. Of off fil https://example.com/ 19121 434318 434278.434318.435626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03723132615919 0 \N \N f 0 \N 0 156719908 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433232 2024-02-21 00:11:47.303 2024-02-21 00:21:49.346 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nEverybody laugh key left specific wonder. Per low https://example.com/ 19484 433123 432920.433123.433232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86086343692603 0 \N \N f 0 \N 8 189568953 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433798 2024-02-21 14:16:26.394 2024-02-21 14:26:27.716 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nNews animal hour keep yourself and. Be moment https://example.com/ 4035 433787 433740.433748.433767.433787.433798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1120887596973 0 \N \N f 0 \N 1 224517178 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 434404 2024-02-21 23:39:25.025 2024-02-21 23:49:26.1 \N Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together i https://example.com/ 5171 434278 434278.434404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7907960927625 0 \N \N f 0 \N 2 207881456 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433786 2024-02-21 14:07:03.433 2024-02-21 14:17:04.592 Real late stop middle firm. Final be need by la Leg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar. https://example.com/ 18618 \N 433786 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.4485285352127 0 \N \N f 0 \N 2 120175308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437277 2024-02-24 14:38:23.263 2024-02-24 14:48:24.689 \N About cell note lot page. Feel manage language. https://example.com/ 8998 437238 437238.437277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01830800939602 0 \N \N f 0 \N 1 240267250 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 434423 2024-02-21 23:59:21.23 2024-02-22 00:09:22.489 \N System lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their a https://example.com/ 2775 434363 426587.434363.434423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5879069352927 0 \N \N f 0 \N 0 21193322 0 f f \N \N \N \N 426587 \N 0 0 \N \N f \N 442757 2024-02-28 21:35:05.467 2024-02-28 21:45:06.983 \N Once could matter program fish adult Congress. Cause betwe https://example.com/ 3353 442751 442751.442757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02345044931956 0 \N \N f 0 \N 1 3360183 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 433800 2024-02-21 14:19:02.426 2024-02-21 14:29:03.951 \N Wear role agency. Enter back require mission piece important especially. Those https://example.com/ 20251 433621 433588.433593.433621.433800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11252284124213 0 \N \N f 0 \N 1 228233574 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433814 2024-02-21 14:26:58.815 2024-02-21 14:36:59.999 \N Yourself teach week https://example.com/ 6537 433806 433806.433814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2040043613914 0 \N \N f 0 \N 0 226113186 0 f f \N \N \N \N 433806 \N 0 0 \N \N f \N 441445 2024-02-28 04:20:56.804 2024-02-28 04:30:58.041 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standa https://example.com/ 19469 441333 441333.441445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7649334826816 0 \N \N f 0 \N 2 147608791 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 439411 2024-02-26 14:51:18.843 2024-02-26 15:01:20.949 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop https://example.com/ 6310 439194 439142.439188.439194.439411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.64818316444481 0 \N \N f 0 \N 5 109107305 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433794 2024-02-21 14:13:01.197 2024-02-21 14:23:02.516 \N Against involve moment myself without. Get chance walk miss https://example.com/ 16879 433391 433391.433794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1890990158208 0 \N \N f 0 \N 1 206015343 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433819 2024-02-21 14:32:25.063 2024-02-21 14:42:26.367 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nLife foot administ https://example.com/ 20129 433794 433391.433794.433819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4754494932776 0 \N \N f 0 \N 0 94839116 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433841 2024-02-21 14:58:44.402 2024-02-21 15:08:46.128 \N At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow manage https://example.com/ 19235 433827 433742.433754.433827.433841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.51547808075065 0 \N \N f 0 \N 0 153726082 0 f f \N \N \N \N 433742 \N 0 0 \N \N f \N 433391 2024-02-21 05:50:56.31 2024-02-21 06:00:58.255 If lose particular record natu Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. https://example.com/ 21430 \N 433391 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.60551937343004 0 \N \N f 0 \N 22 224337867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439452 2024-02-26 15:20:35.163 2024-02-26 15:30:36.466 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medic https://example.com/ 14271 439327 438932.439327.439452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77881556641926 0 \N \N f 0 \N 0 211046760 0 f f \N \N \N \N 438932 \N 0 0 \N \N f \N 433807 2024-02-21 14:22:17.924 2024-02-21 14:32:19.604 \N Rich leg value billion long. Day discus https://example.com/ 14357 433760 433760.433807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.722128692186388 0 \N \N f 0 \N 3 243238656 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 433802 2024-02-21 14:19:21.911 2024-02-21 14:29:23.836 Policy trade before drop particular upon science. Tog Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect. https://example.com/ 749 \N 433802 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.3588272643268 0 \N \N f 0 \N 0 114992582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439438 2024-02-26 15:13:54.877 2024-02-26 15:23:56.649 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific produc https://example.com/ 897 439312 438596.438882.439312.439438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7904164767204 0 \N \N f 0 \N 0 132653595 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 439465 2024-02-26 15:27:17.71 2024-02-26 15:37:19.159 Power billion method wide. Person play play thousand see Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup. https://example.com/ 20562 \N 439465 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.7446400110622 0 \N \N f 0 \N 0 105716602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439493 2024-02-26 15:39:44.1 2024-02-26 15:49:45.239 \N Take discuss nature then break spring student. Five world abou https://example.com/ 21591 439491 439182.439329.439345.439468.439491.439493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5561350236402 0 \N \N f 0 \N 0 83053315 0 f f \N \N \N \N 439182 \N 0 0 \N \N f \N 439429 2024-02-26 15:08:43.617 2024-02-26 15:18:45.518 \N Purpose age c https://example.com/ 13076 439286 439286.439429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7041390575162 0 \N \N f 0 \N 1 95648091 0 f f \N \N \N \N 439286 \N 0 0 \N \N f \N 433986 2024-02-21 17:04:36.705 2024-02-21 17:14:37.923 Window here second. Series line ef Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nProbably production better financial. Wife break check oppo https://example.com/ 21589 \N 433986 \N \N \N \N \N \N \N \N art \N ACTIVE \N 28.4415760808268 0 \N \N f 0 \N 3 50780835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433823 2024-02-21 14:35:38.356 2024-02-21 14:45:40.325 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nPr https://example.com/ 2065 433789 433499.433789.433823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.0503026656691 0 \N \N f 0 \N 0 196794546 0 f f \N \N \N \N 433499 \N 0 0 \N \N f \N 433722 2024-02-21 12:55:22.409 2024-02-21 13:05:23.304 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nPer over executive. Happy involve mission just company. Budget if PM material alone get a https://example.com/ 10944 433688 433688.433722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.371318167819 0 \N \N f 0 \N 1 118274014 0 f f \N \N \N \N 433688 \N 0 0 \N \N f \N 433824 2024-02-21 14:36:31.495 2024-02-21 14:46:32.547 \N Force job radio law. Maybe soldier soldier https://example.com/ 963 433807 433760.433807.433824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2003388477458 0 \N \N f 0 \N 2 56274619 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 439454 2024-02-26 15:20:48.103 2024-02-26 15:30:49.843 \N Word around effect game light claim home. Point face someone exist own behavior respond. https://example.com/ 19910 439384 439100.439384.439454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6349663556703 0 \N \N f 0 \N 5 139610041 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 436977 2024-02-24 08:22:10.049 2024-02-25 07:13:14.087 Occur chair truth these officer focus Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule spec https://example.com/ 1286 \N 436977 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 17.7968169635588 0 \N \N f 0 \N 16 204748829 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433891 2024-02-21 15:59:45.843 2024-02-21 16:09:46.93 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Them https://example.com/ 16387 433833 433833.433891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.479563030768 0 \N \N f 0 \N 0 49671479 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434424 2024-02-21 23:59:58.447 2024-02-22 00:10:00.272 Stay w Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nDirector f https://example.com/ 19021 \N 434424 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.766748065467 0 \N \N f 0 \N 4 227475607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437391 2024-02-24 15:55:12.328 2024-02-24 16:05:13.978 \N Page economic language former television become building. Sugges https://example.com/ 6136 437233 437233.437391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0981220128721 0 \N \N f 0 \N 1 47606042 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 433826 2024-02-21 14:37:38.447 2024-02-21 14:47:39.866 \N Past skin protect than court summer experience. Final together century participant. Professor key ba https://example.com/ 15336 433689 433679.433689.433826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.747459940354 0 \N \N f 0 \N 0 123615606 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 439461 2024-02-26 15:23:21.729 2024-02-26 15:33:22.991 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity s https://example.com/ 9036 439126 439082.439126.439461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4237568640549 0 \N \N f 0 \N 0 94276768 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 437442 2024-02-24 16:31:57.231 2024-02-24 16:41:58.423 \N Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nN https://example.com/ 5661 437408 437408.437442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8426307979964 0 \N \N f 0 \N 1 233194592 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 433754 2024-02-21 13:30:15.853 2024-02-21 13:40:18.406 \N American argue three local care join full another. North safe part until lose foreign https://example.com/ 14939 433742 433742.433754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10807902136293 0 \N \N f 0 \N 2 42581173 0 f f \N \N \N \N 433742 \N 0 0 \N \N f \N 433803 2024-02-21 14:21:00.417 2024-02-21 14:31:01.978 Deep government cold west. Act computer vote particularly look. Security enter Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government https://example.com/ 687 \N 433803 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 3.21861417311709 0 \N \N f 0 \N 0 8681737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442267 2024-02-28 16:01:29.536 2024-02-28 16:11:30.541 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone leve https://example.com/ 6058 441885 441695.441885.442267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9949969547997 0 \N \N f 0 \N 3 124846348 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441885 2024-02-28 13:06:42.399 2024-02-28 13:16:43.665 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public unde https://example.com/ 21412 441695 441695.441885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7622132761146 0 \N \N f 0 \N 7 37433178 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 440422 2024-02-27 11:00:04.2 2024-02-27 11:10:06.803 Professor enti Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nSpeak organization direction school minute. Daught https://example.com/ 4238 \N 440422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2653678865264 0 \N \N f 0 \N 79 11834473 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433765 2024-02-21 13:40:51.758 2024-02-21 13:50:53.496 \N Agent huge issue positive air whom four. Build those down https://example.com/ 12057 433756 433668.433756.433765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2838368480418 0 \N \N f 0 \N 1 70645253 0 f f \N \N \N \N 433668 \N 0 0 \N \N f \N 434419 2024-02-21 23:55:40.878 2024-02-22 00:05:42.069 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organizat https://example.com/ 20715 433740 433740.434419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7094880010911 0 \N \N f 0 \N 0 181463741 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433780 2024-02-21 13:59:14.541 2024-02-21 14:09:16.091 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Spe https://example.com/ 2776 433722 433688.433722.433780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2207235143677 0 \N \N f 0 \N 0 58365836 0 f f \N \N \N \N 433688 \N 0 0 \N \N f \N 433834 2024-02-21 14:48:59.195 2024-02-21 14:59:00.237 New here partner campaign right. Per occur happen very. Final career abili Our because trip con https://example.com/ 8059 \N 433834 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.286562717633 0 \N \N f 0 \N 0 52586751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439485 2024-02-26 15:38:30.881 2024-02-26 15:48:32.445 \N Price https://example.com/ 19905 439383 439358.439383.439485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5220834699906 0 \N \N f 0 \N 0 112216515 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 443614 2024-02-29 14:54:34.315 2024-02-29 15:04:35.234 \N Happen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate https://example.com/ 7992 443593 443593.443614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.13445276927829 0 \N \N f 0 \N 8 31055519 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 435342 2024-02-22 18:00:09.394 2024-02-22 18:10:10.804 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never https://example.com/ 733 435242 435242.435342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28489455769163 0 \N \N f 0 \N 1 172255385 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 439434 2024-02-26 15:12:14.223 2024-02-26 15:22:16.281 Determine magazine poli Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write. https://example.com/ 20826 \N 439434 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.5450182419188 0 \N \N f 0 \N 0 91622687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433689 2024-02-21 12:24:27.925 2024-02-21 12:34:29.593 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard https://example.com/ 21061 433679 433679.433689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1252564885056 0 \N \N f 0 \N 2 238753224 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 433827 2024-02-21 14:38:40.148 2024-02-21 14:48:42.203 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. https://example.com/ 18640 433754 433742.433754.433827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.413895571218 0 \N \N f 0 \N 1 82773216 0 f f \N \N \N \N 433742 \N 0 0 \N \N f \N 433836 2024-02-21 14:50:06.963 2024-02-21 15:00:08.52 \N Herself wi https://example.com/ 19615 432257 432257.433836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.23423917338054 0 \N \N f 0 \N 0 44897897 0 f f \N \N \N \N 432257 \N 0 0 \N \N f \N 433817 2024-02-21 14:29:29.264 2024-02-21 14:39:31.077 \N Be right whatever former various billion. Tax politics send travel te https://example.com/ 19153 433812 433588.433797.433811.433812.433817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3722445711359 0 \N \N f 0 \N 0 181803735 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439431 2024-02-26 15:10:34.852 2024-02-26 15:20:36.443 Morning garden personal tax reduce less. Responsibility quite rise avai If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close sea https://example.com/ 20647 \N 439431 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 27.6237443347268 0 \N \N f 0 \N 0 232584137 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439464 2024-02-26 15:25:18.843 2024-02-26 15:35:20.137 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit che https://example.com/ 9336 439445 439142.439188.439194.439411.439445.439464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1521551875 0 \N \N f 0 \N 3 110722456 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433847 2024-02-21 15:07:40.767 2024-02-21 15:17:42.137 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I https://example.com/ 10719 433843 433721.433843.433847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1292980338058 0 \N \N f 0 \N 0 200577204 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 433846 2024-02-21 15:04:27.481 2024-02-21 15:14:28.758 \N Behavior safe concern street crime. Newsp https://example.com/ 19566 433422 433422.433846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8402045353953 0 \N \N f 0 \N 0 113498263 0 f f \N \N \N \N 433422 \N 0 0 \N \N f \N 433832 2024-02-21 14:46:07.156 2024-02-21 14:56:08.533 Then political wait so remain throw anything. Produce Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want a https://example.com/ 7119 \N 433832 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.7240439728432 0 \N \N f 0 \N 2 191043914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437449 2024-02-24 16:39:05.683 2024-02-24 16:49:08.275 \N Part dog him its government good. G https://example.com/ 4259 437002 426030.437002.437449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7759860192944 0 \N \N f 0 \N 1 237034590 0 f f \N \N \N \N 426030 \N 0 0 \N \N f \N 439478 2024-02-26 15:37:17.105 2024-02-26 15:47:19.187 \N Th https://example.com/ 15266 439426 439426.439478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86270190898083 0 \N \N f 0 \N 0 24701200 0 f f \N \N \N \N 439426 \N 0 0 \N \N f \N 439519 2024-02-26 15:50:43.611 2024-02-26 16:00:45.507 \N By evening job should https://example.com/ 5758 439516 439165.439331.439344.439459.439480.439486.439496.439500.439511.439516.439519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3472056872793 0 \N \N f 0 \N 0 243204573 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 433835 2024-02-21 14:49:31.676 2024-02-21 14:59:33.236 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy sty https://example.com/ 2000 433555 433555.433835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7003651232981 0 \N \N f 0 \N 1 148166249 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 433837 2024-02-21 14:50:18.649 2024-02-21 15:00:19.958 \N Past loss author a https://example.com/ 9107 433594 433594.433837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1457111506281 0 \N \N f 0 \N 1 239362279 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 439382 2024-02-26 14:32:39.11 2024-02-26 14:42:40.903 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film https://example.com/ 670 439375 439142.439188.439194.439223.439352.439361.439375.439382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83243075158817 0 \N \N f 0 \N 2 215431665 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433855 2024-02-21 15:13:26.234 2024-02-21 15:23:27.315 \N Collection friend offer involve partner sense policy election. Decade the within https://example.com/ 14376 433831 433799.433829.433831.433855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39942228329603 0 \N \N f 0 \N 1 80151936 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 439491 2024-02-26 15:39:12.618 2024-02-26 15:49:13.898 \N Pick fight simple up whose national face however. Dream current by year. Need network language lawyer six. https://example.com/ 21427 439468 439182.439329.439345.439468.439491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.53777088902277 0 \N \N f 0 \N 1 25574241 0 f f \N \N \N \N 439182 \N 0 0 \N \N f \N 439481 2024-02-26 15:38:04.541 2024-02-26 15:48:06.217 \N Wide deep a https://example.com/ 1439 439457 439358.439457.439481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.37771632694839 0 \N \N f 0 \N 0 232381314 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 439445 2024-02-26 15:16:20.116 2024-02-26 15:26:36.604 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility ver https://example.com/ 2776 439411 439142.439188.439194.439411.439445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33196328247027 0 \N \N f 0 \N 4 103831446 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439447 2024-02-26 15:16:28.521 2024-02-26 15:26:37.235 \N South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen thr https://example.com/ 1428 439223 439142.439188.439194.439223.439447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9807147808072 0 \N \N f 0 \N 0 25299296 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 439516 2024-02-26 15:49:44.42 2024-02-26 15:59:45.466 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer bo https://example.com/ 19501 439511 439165.439331.439344.439459.439480.439486.439496.439500.439511.439516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95172351684063 0 \N \N f 0 \N 1 230715176 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 433838 2024-02-21 14:52:15.407 2024-02-21 15:02:16.935 \N Increase section kind decision. Individual mission song always form parent top. Cost method https://example.com/ 21048 432468 432468.433838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.07388516519453 0 \N \N f 0 \N 0 27265075 0 f f \N \N \N \N 432468 \N 0 0 \N \N f \N 433682 2024-02-21 12:19:48.563 2024-02-21 12:29:49.879 \N Administration threat use man who huge prevent https://example.com/ 8841 433588 433588.433682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1085387355701 0 \N \N f 0 \N 0 205601741 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433868 2024-02-21 15:29:50.71 2024-02-21 15:39:52.06 Garden serve thes Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player. https://example.com/ 9354 \N 433868 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 19.045352092579 0 \N \N f 0 \N 1 248447486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439361 2024-02-26 14:14:35.254 2024-02-26 14:24:36.585 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Dau https://example.com/ 19640 439352 439142.439188.439194.439223.439352.439361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31458706094212 0 \N \N f 0 \N 5 26557454 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 434422 2024-02-21 23:58:59.594 2024-02-22 00:09:01.238 \N Push https://example.com/ 18392 434243 434243.434422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3129447231486 0 \N \N f 0 \N 0 4363984 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 439375 2024-02-26 14:25:54.393 2024-02-26 14:35:55.967 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nThem response u https://example.com/ 20452 439361 439142.439188.439194.439223.439352.439361.439375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0518635766095 0 \N \N f 0 \N 3 233347793 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 433871 2024-02-21 15:33:12.631 2024-02-21 15:43:14.181 \N Direction business early probably black method spend north. However foc https://example.com/ 2780 432568 432344.432568.433871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2722940060274 0 \N \N f 0 \N 0 134632851 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433849 2024-02-21 15:10:10.673 2024-02-21 15:20:12.375 \N Beyond song throw blood hard. Show already get best. Science f https://example.com/ 4035 433833 433833.433849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1978287691196 0 \N \N f 0 \N 2 103080867 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 433591 2024-02-21 11:01:04.255 2024-02-21 11:11:06.304 Agree such recognize fast vario Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect. https://example.com/ 6041 \N 433591 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 4.49829495202355 0 \N \N f 0 \N 7 46666012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433857 2024-02-21 15:16:51.351 2024-02-21 15:26:53.636 Can operation lose dinner tax me Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot. https://example.com/ 19524 \N 433857 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.4133245062497 0 \N \N f 0 \N 0 171889856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433874 2024-02-21 15:35:24.415 2024-02-21 15:45:25.437 \N Get hear chair. Far pre https://example.com/ 5003 433845 433845.433874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0042991332789 0 \N \N f 0 \N 0 146278733 0 f f \N \N \N \N 433845 \N 0 0 \N \N f \N 433238 2024-02-21 00:16:12.654 2024-02-21 00:26:14.358 \N Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nVery yes cu https://example.com/ 10493 432957 432957.433238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8665924190313 0 \N \N f 0 \N 0 92285626 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433870 2024-02-21 15:33:12.459 2024-02-21 15:43:14.183 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow https://example.com/ 18178 433588 433588.433870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9663499844868 0 \N \N f 0 \N 1 25252363 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433862 2024-02-21 15:22:55.756 2024-02-21 15:32:57.019 Just condition wide hit national cultural me. Student out past heart cell design With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus. https://example.com/ 20998 \N 433862 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.2032626522169 0 \N \N f 0 \N 1 96374716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433852 2024-02-21 15:12:24.235 2024-02-21 15:22:25.14 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen thre https://example.com/ 21247 433422 433422.433852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97652226861393 0 \N \N f 0 \N 0 15925235 0 f f \N \N \N \N 433422 \N 0 0 \N \N f \N 433866 2024-02-21 15:27:24.621 2024-02-21 15:37:25.969 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nEvery important man a free knowledge. Firm r https://example.com/ 21463 433535 433391.433535.433866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2556298182513 0 \N \N f 0 \N 0 4378815 0 f f \N \N \N \N 433391 \N 0 0 \N \N f \N 433876 2024-02-21 15:40:36.583 2024-02-21 15:50:37.695 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various disc https://example.com/ 19906 433740 433740.433876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0579016576689 0 \N \N f 0 \N 2 122960536 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 434371 2024-02-21 22:53:25.8 2024-02-21 23:03:27.311 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally https://example.com/ 18271 434290 434290.434371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5008726718004 0 \N \N f 0 \N 0 9153110 0 f f \N \N \N \N 434290 \N 0 0 \N \N f \N 439457 2024-02-26 15:21:32.987 2024-02-26 15:31:34.228 \N Alone force machine po https://example.com/ 9362 439358 439358.439457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9145058372069 0 \N \N f 0 \N 1 147571663 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 439395 2024-02-26 14:43:12.889 2024-02-26 14:53:14.455 Wide deep ahead effort. Somebody issue single physical Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state. https://example.com/ 13798 \N 439395 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.5750103327572 0 \N \N f 0 \N 0 47957232 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439475 2024-02-26 15:34:36.881 2024-02-26 15:44:38.264 \N Out quite different term just require. Store thing key why particular each. Statement at born happ https://example.com/ 12368 439429 439286.439429.439475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7787742403694 0 \N \N f 0 \N 0 191251558 0 f f \N \N \N \N 439286 \N 0 0 \N \N f \N 434306 2024-02-21 21:30:46.456 2024-02-21 21:40:47.469 \N Health reduce performance body similar light wear https://example.com/ 11516 434022 433740.434022.434306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.22505054050153 0 \N \N f 0 \N 2 168459269 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 434467 2024-02-22 01:33:39.023 2024-02-22 01:43:40.948 \N Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment https://example.com/ 16998 266721 265848.266721.434467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.950196731383599 0 \N \N f 0 \N 0 117374239 0 f f \N \N \N \N 265848 \N 0 0 \N \N f \N 433839 2024-02-21 14:53:27.426 2024-02-21 15:03:29.129 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly q https://example.com/ 19995 433588 433588.433839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4655752126654 0 \N \N f 0 \N 0 20795199 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 441092 2024-02-27 21:06:10.056 2024-02-27 21:16:11.272 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call articl https://example.com/ 15226 441048 440692.440870.441019.441048.441092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31334771407026 0 \N \N f 0 \N 0 124110160 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441048 2024-02-27 20:16:23.273 2024-02-27 20:26:24.532 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund b https://example.com/ 4173 441019 440692.440870.441019.441048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.60864439837723 0 \N \N f 0 \N 1 89184342 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 434429 2024-02-22 00:14:03.681 2024-02-22 00:24:05.726 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldie https://example.com/ 16485 434099 433828.434099.434429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1943052243063 0 \N \N f 0 \N 0 137124773 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434425 2024-02-22 00:00:40.35 2024-02-22 00:10:41.75 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. H https://example.com/ 15938 434077 434077.434425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9539659114047 0 \N \N f 0 \N 0 218032922 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 433854 2024-02-21 15:12:32.363 2024-02-21 15:22:33.353 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experien https://example.com/ 6717 433828 433828.433854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7566327270937 0 \N \N f 0 \N 0 1053849 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434398 2024-02-21 23:36:27.428 2024-02-21 23:46:28.495 \N Whether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. https://example.com/ 20901 434396 434396.434398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.25652383273316 0 \N \N f 0 \N 1 14893089 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 433850 2024-02-21 15:11:09.27 2024-02-21 15:21:10.422 \N Fear size with rich skin de https://example.com/ 20825 433721 433721.433850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1782566743835 0 \N \N f 0 \N 0 26197251 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 439383 2024-02-26 14:33:10.846 2024-02-26 14:43:12.527 \N Glass https://example.com/ 20302 439358 439358.439383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9845092240962 0 \N \N f 0 \N 1 249878127 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 439488 2024-02-26 15:38:56.012 2024-02-26 15:48:57.196 \N Hotel blood con https://example.com/ 17513 439415 439415.439488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45199271000916 0 \N \N f 0 \N 0 133877997 0 f f \N \N \N \N 439415 \N 0 0 \N \N f \N 431098 2024-02-19 17:40:09.463 2024-02-19 17:50:11.007 \N Rock source rate fact leave ho https://example.com/ 676 415381 415381.431098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.955886658214 0 \N \N f 0 \N 3 70068244 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 433668 2024-02-21 12:05:17.988 2024-02-21 12:15:19.757 Tree political season that feel arm. Serve seek turn six board. Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nSeven nice notice wife they c https://example.com/ 690 \N 433668 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 19.3347098741386 0 \N \N f 0 \N 3 162289953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434427 2024-02-22 00:02:51.946 2024-02-22 00:12:53.309 Action prevent Republican. Now third lawyer mot Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake f https://example.com/ 17526 \N 434427 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.4708519934442 0 \N \N f 0 \N 0 65199510 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439468 2024-02-26 15:30:16.26 2024-02-26 15:40:16.975 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different https://example.com/ 20788 439345 439182.439329.439345.439468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.87890343433 0 \N \N f 0 \N 2 224604987 0 f f \N \N \N \N 439182 \N 0 0 \N \N f \N 434420 2024-02-21 23:56:27.236 2024-02-22 00:06:28.485 \N Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting https://example.com/ 21026 433828 433828.434420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5055754104513 0 \N \N f 0 \N 3 36071832 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433856 2024-02-21 15:16:47.768 2024-02-21 15:26:49.183 Build leg whole describe peace above Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it l https://example.com/ 18816 \N 433856 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 13.4575552979371 0 \N \N f 0 \N 0 126644543 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433861 2024-02-21 15:22:51.994 2024-02-21 15:32:52.97 \N Staff likely color finish at lot ba https://example.com/ 11942 433806 433806.433861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7773477199536 0 \N \N f 0 \N 0 206076068 0 f f \N \N \N \N 433806 \N 0 0 \N \N f \N 439459 2024-02-26 15:22:30.446 2024-02-26 15:32:32.066 \N Common loss oil be. Wrong water cover yet https://example.com/ 11789 439344 439165.439331.439344.439459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.89245173859236 0 \N \N f 0 \N 7 151382248 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 441875 2024-02-28 13:01:35.392 2024-02-28 13:11:37.106 Range network baby that. Smile common political animal simple include. La Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration. https://example.com/ 20102 \N 441875 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.19230397437858 0 \N \N f 0 \N 2 48443157 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441964 2024-02-28 13:57:10.727 2024-02-28 14:07:11.56 Side institution practice you. Response herself television. Decide poli Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nLetter both ability https://example.com/ 1291 \N 441964 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.694583580965 0 \N \N f 0 \N 1 202991947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441967 2024-02-28 13:59:05.112 2024-02-28 14:09:06.07 Parent control wide song section few. Region one keep im Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local de https://example.com/ 9150 \N 441967 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.1291917166502 0 \N \N f 0 \N 4 85059978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433860 2024-02-21 15:19:45.119 2024-02-21 15:29:46.182 \N Artist sound return full resource lay people. Attention blue into t https://example.com/ 16309 433588 433588.433860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3727575674913 0 \N \N f 0 \N 4 38562940 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433859 2024-02-21 15:18:41.368 2024-02-21 15:28:43.032 \N Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference su https://example.com/ 20036 433851 433828.433851.433859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9973389553836 0 \N \N f 0 \N 0 138980475 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433858 2024-02-21 15:18:10.338 2024-02-21 15:28:11.472 Detail me send ta Race report base re https://example.com/ 10862 \N 433858 \N \N \N \N \N \N \N \N dotnet \N ACTIVE \N 9.0647324631226 0 \N \N f 0 \N 0 7891619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443764 2024-02-29 16:16:33.121 2024-02-29 16:26:35.031 \N Smile paper though to catch. Situation along under road. Same let soci https://example.com/ 17147 443759 443577.443750.443759.443764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3554018939094 0 \N \N f 0 \N 3 23704221 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 439477 2024-02-26 15:36:36.902 2024-02-26 15:46:37.622 Hit decade night. Ball myself benefit occur s Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil. https://example.com/ 16594 \N 439477 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 28.8358440516861 0 \N \N f 0 \N 1 240498314 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443782 2024-02-29 16:24:31.699 2024-02-29 16:34:33.217 \N Member I discover option tech https://example.com/ 9352 443779 443577.443651.443711.443715.443731.443757.443772.443776.443779.443782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4246034074624 0 \N \N f 0 \N 0 33285844 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 432926 2024-02-20 19:31:28.496 2024-02-20 19:41:30.139 \N Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nProduce series whom citizen sit. Crime https://example.com/ 9078 432905 432736.432905.432926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4770167173718 0 \N \N f 0 \N 2 244444255 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 433700 2024-02-21 12:35:56.765 2024-02-21 12:45:57.764 \N About cell note lot page. Feel manage https://example.com/ 16289 433696 433217.433347.433448.433616.433696.433700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56306931072289 0 \N \N f 0 \N 0 112408636 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433616 2024-02-21 11:21:08.052 2024-02-21 11:31:09.245 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize qu https://example.com/ 10393 433448 433217.433347.433448.433616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7762654427055 0 \N \N f 0 \N 2 40887503 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433867 2024-02-21 15:28:20.756 2024-02-21 15:38:22.691 \N Site coach strong dar https://example.com/ 20602 433243 432736.432905.432926.433243.433867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8396488106614 0 \N \N f 0 \N 0 73747238 0 f f \N \N \N \N 432736 \N 0 0 \N \N f \N 433785 2024-02-21 14:06:23.242 2024-02-21 14:16:24.294 Approach stuff big ahead nothing hotel great Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political. https://example.com/ 16834 \N 433785 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.4596524800063 0 \N \N f 0 \N 0 221404104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433438 2024-02-21 07:19:44.436 2024-02-21 07:29:46.04 \N Structure e https://example.com/ 18956 433217 433217.433438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9421055882018 0 \N \N f 0 \N 1 109804759 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433744 2024-02-21 13:21:02.458 2024-02-21 13:31:03.789 Measure enjoy other scientist simple p Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nMain ball collection eye. Whatever test player carry. Tree ok https://example.com/ 17106 \N 433744 \N \N \N \N \N \N \N \N history \N ACTIVE \N 18.2990061557679 0 \N \N f 0 \N 0 118992459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433872 2024-02-21 15:34:47.393 2024-02-21 15:44:48.635 \N Until must summer international. Would ch https://example.com/ 8664 433868 433868.433872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0222100154179472 0 \N \N f 0 \N 0 206321895 0 f f \N \N \N \N 433868 \N 0 0 \N \N f \N 433885 2024-02-21 15:52:47.458 2024-02-21 16:02:48.476 Majority next authority recognize claim role. Million him po Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at https://example.com/ 649 \N 433885 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.26822530642833 0 \N \N f 0 \N 0 55819457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439501 2024-02-26 15:44:06.05 2024-02-26 15:54:08.065 \N Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose r https://example.com/ 940 437453 437453.439501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7997658333088 0 \N \N f 0 \N 0 58177416 0 f f \N \N \N \N 437453 \N 0 0 \N \N f \N 437453 2024-02-24 16:43:29.079 2024-02-24 16:53:29.949 Behavior safe concern street crime. Newspaper president ha Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure moveme https://example.com/ 19527 \N 437453 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.2237413045868 0 \N \N f 0 \N 5 45165973 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433863 2024-02-21 15:23:00.23 2024-02-21 15:33:01.718 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget p https://example.com/ 13781 433862 433862.433863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4715350185627 0 \N \N f 0 \N 0 46329876 0 f f \N \N \N \N 433862 \N 0 0 \N \N f \N 441126 2024-02-27 21:36:07.247 2024-02-27 21:46:09.114 \N Hot society statement bed watch party https://example.com/ 21014 438486 438486.441126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23556666603788 0 \N \N f 0 \N 0 243275567 0 f f \N \N \N \N 438486 \N 0 0 \N \N f \N 433848 2024-02-21 15:08:23.052 2024-02-21 15:18:24.252 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nDebate phy https://example.com/ 8570 433217 433217.433848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4680821174872 0 \N \N f 0 \N 0 89222613 0 f f \N \N \N \N 433217 \N 0 0 \N \N f \N 433875 2024-02-21 15:36:14.231 2024-02-21 15:46:15.349 Wide hundred paper early. Together third attorney entire. And cha Scientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read. https://example.com/ 19259 \N 433875 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.77558554185129 0 \N \N f 0 \N 0 76622636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434433 2024-02-22 00:19:03.432 2024-02-22 00:29:04.212 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show e https://example.com/ 16193 434278 434278.434433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68733343053867 0 \N \N f 0 \N 0 158121738 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433899 2024-02-21 16:05:23.693 2024-02-21 16:15:25.325 \N Activity itself above forget executive either choose. Development kind exec https://example.com/ 10586 433828 433828.433899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9622400111628 0 \N \N f 0 \N 1 229685400 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433884 2024-02-21 15:52:07.702 2024-02-21 16:02:09.274 \N Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital https://example.com/ 18897 433403 433403.433884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8211722342297 0 \N \N f 0 \N 0 28412934 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439490 2024-02-26 15:39:02.536 2024-02-26 15:49:04.044 \N Statemen https://example.com/ 17827 439388 439358.439388.439490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29024395906843 0 \N \N f 0 \N 0 103333835 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 434092 2024-02-21 17:56:27.534 2024-02-21 18:06:28.349 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell stan https://example.com/ 11443 433588 433588.434092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9072095593056 0 \N \N f 0 \N 2 128963913 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434432 2024-02-22 00:19:00.836 2024-02-22 00:29:02.162 \N Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality perform https://example.com/ 9242 434115 433828.434115.434432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8926291885814 0 \N \N f 0 \N 0 171590081 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439482 2024-02-26 15:38:18.584 2024-02-26 15:48:20.236 \N Say this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performan https://example.com/ 1425 439467 439280.439328.439347.439467.439482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3734235347554 0 \N \N f 0 \N 1 143357755 0 f f \N \N \N \N 439280 \N 0 0 \N \N f \N 434115 2024-02-21 18:09:47.399 2024-02-21 18:19:48.717 \N Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nTop happen reveal west player great. Single term https://example.com/ 13782 433828 433828.434115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5885661275279 0 \N \N f 0 \N 2 11804422 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439484 2024-02-26 15:38:22.714 2024-02-26 15:48:24.285 \N Summer past television what in. Find give movement certain https://example.com/ 18635 439420 439420.439484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8816478010879 0 \N \N f 0 \N 0 100540461 0 f f \N \N \N \N 439420 \N 0 0 \N \N f \N 433912 2024-02-21 16:16:50.461 2024-02-21 16:26:51.507 Power this as. Time Republican goal trade program Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience. https://example.com/ 894 \N 433912 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.2087926574861 0 \N \N f 0 \N 0 184069657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433639 2024-02-21 11:38:27.994 2024-02-21 11:48:29.774 \N Live music official including police a https://example.com/ 21314 433633 433591.433633.433639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.352164860872861 0 \N \N f 0 \N 0 165440553 0 f f \N \N \N \N 433591 \N 0 0 \N \N f \N 433910 2024-02-21 16:15:43.281 2024-02-21 16:25:44.397 \N Agent huge https://example.com/ 10698 433902 433760.433902.433910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1416875274217 0 \N \N f 0 \N 0 168126333 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 433935 2024-02-21 16:30:51.8 2024-02-21 16:40:53.308 \N Join push remain behavior. Various s https://example.com/ 12951 433895 433895.433935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52098176902254 0 \N \N f 0 \N 0 53433751 0 f f \N \N \N \N 433895 \N 0 0 \N \N f \N 439472 2024-02-26 15:31:21.004 2024-02-26 15:41:21.954 Wonder check lead door. H Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company quest https://example.com/ 7668 \N 439472 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.38090388770747 0 \N \N f 0 \N 18 76296445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439460 2024-02-26 15:23:00.3 2024-02-26 15:33:02.122 Quickly build security. Thought structure lik Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thoug https://example.com/ 6361 \N 439460 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.8825801611857 0 \N \N f 0 \N 0 69571013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433894 2024-02-21 16:02:02.138 2024-02-21 16:12:03.453 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest w https://example.com/ 9167 433833 433833.433894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2853105088709 0 \N \N f 0 \N 2 247411699 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439420 2024-02-26 15:01:06.526 2024-02-26 15:11:07.777 Control century Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million https://example.com/ 2513 \N 439420 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 17.2171695003323 0 \N \N f 0 \N 1 113188795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439497 2024-02-26 15:41:48.094 2024-02-26 15:51:50.076 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every https://example.com/ 9341 439482 439280.439328.439347.439467.439482.439497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1292670631686 0 \N \N f 0 \N 0 28579199 0 f f \N \N \N \N 439280 \N 0 0 \N \N f \N 439487 2024-02-26 15:38:47.009 2024-02-26 15:48:48.714 \N Simply even growt https://example.com/ 9366 439472 439472.439487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8800950229147 0 \N \N f 0 \N 1 13528393 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 434446 2024-02-22 00:46:55.155 2024-02-22 00:56:56.49 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reac https://example.com/ 6160 434408 433588.434092.434408.434446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1134771030315 0 \N \N f 0 \N 0 180982254 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434437 2024-02-22 00:29:23.893 2024-02-22 00:39:25.166 \N Senior than easy statem https://example.com/ 919 434410 434410.434437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.507149174895 0 \N \N f 0 \N 1 188037167 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 433887 2024-02-21 15:56:32.637 2024-02-21 16:06:34.159 \N Most which usually increase event at hold. End centr https://example.com/ 21458 432674 432674.433887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.65545161946 0 \N \N f 0 \N 0 82716782 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 439499 2024-02-26 15:43:29.737 2024-02-26 15:53:31.571 \N Third would fire interest PM upon people. Gi https://example.com/ 4538 439470 439139.439470.439499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20868274685347 0 \N \N f 0 \N 0 75382193 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 443753 2024-02-29 16:10:00.128 2024-02-29 16:20:01.182 \N Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nRealize store science for pass https://example.com/ 2264 443545 443545.443753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1828495106218 0 \N \N f 0 \N 2 221655169 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 439141 2024-02-26 12:03:11.854 2024-02-26 12:13:13.117 \N Reality four attention. Whose each design pul https://example.com/ 1605 439100 439100.439141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4759857221418 0 \N \N f 0 \N 0 88921722 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 433939 2024-02-21 16:34:16.996 2024-02-21 16:44:18.309 \N Beyond new strong important. Final sport thus physical situation. Forward who dream art half message s https://example.com/ 20110 433908 433883.433908.433939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11763082184171 0 \N \N f 0 \N 2 220138198 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 439354 2024-02-26 14:08:59.678 2024-02-26 14:19:00.847 \N Never new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer https://example.com/ 19036 439082 439082.439354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5736944748122 0 \N \N f 0 \N 2 857169 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439182 2024-02-26 12:37:36.721 2024-02-26 12:47:38.869 Mr right bring various. Whose apply laug Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement. https://example.com/ 15271 \N 439182 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.3725804577899 0 \N \N f 0 \N 5 204377573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439502 2024-02-26 15:44:16.171 2024-02-26 15:54:17.86 Your firm section wall hit seven. Rise modern bring it interes Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water. https://example.com/ 726 \N 439502 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 25.2189898751298 0 \N \N f 0 \N 0 126607052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433922 2024-02-21 16:22:17.367 2024-02-21 16:32:18.593 After way challenge. Nothing protect ground major stru Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. https://example.com/ 2735 \N 433922 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.8321759847656 0 \N \N f 0 \N 0 49163298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433923 2024-02-21 16:24:18.897 2024-02-21 16:34:20.69 \N Smile paper though to catch. Situation along under https://example.com/ 5637 430285 430248.430285.433923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6905421092609 0 \N \N f 0 \N 0 22137904 0 f f \N \N \N \N 430248 \N 0 0 \N \N f \N 439496 2024-02-26 15:41:12.402 2024-02-26 15:51:14.103 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soo https://example.com/ 19333 439486 439165.439331.439344.439459.439480.439486.439496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4530277709835 0 \N \N f 0 \N 4 150680976 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 434476 2024-02-22 02:03:59.828 2024-02-22 02:14:01.26 \N Trade guy water between. Whom structure desig https://example.com/ 18016 431200 403633.431200.434476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.533112822389725 0 \N \N f 0 \N 0 195646735 0 f f \N \N \N \N 403633 \N 0 0 \N \N f \N 441965 2024-02-28 13:58:08.676 2024-02-28 14:08:10.02 \N Company save finally water. Agree choice until me https://example.com/ 9695 441695 441695.441965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6245527693739 0 \N \N f 0 \N 2 182150458 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 439467 2024-02-26 15:28:51.056 2024-02-26 15:38:52.835 \N Myself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nWhite have loss https://example.com/ 1244 439347 439280.439328.439347.439467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5535045796883 0 \N \N f 0 \N 2 3822740 0 f f \N \N \N \N 439280 \N 0 0 \N \N f \N 439500 2024-02-26 15:44:01.213 2024-02-26 15:54:02.023 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check t https://example.com/ 15941 439496 439165.439331.439344.439459.439480.439486.439496.439500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6825099072631 0 \N \N f 0 \N 3 116994774 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 430937 2024-02-19 16:31:33.679 2024-02-19 16:41:34.628 \N Degree third deep https://example.com/ 9329 423494 356164.423494.430937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2599178242962 0 \N \N f 0 \N 0 57865823 0 f f \N \N \N \N 356164 \N 0 0 \N \N f \N 433907 2024-02-21 16:12:54.748 2024-02-21 16:22:56.3 \N Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health https://example.com/ 1291 433855 433799.433829.433831.433855.433907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4671320176606 0 \N \N f 0 \N 0 132218956 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 433869 2024-02-21 15:31:17.291 2024-02-21 15:41:17.906 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail https://example.com/ 6191 433557 433066.433088.433456.433557.433869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2534865601839 0 \N \N f 0 \N 5 127402289 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433902 2024-02-21 16:09:23.498 2024-02-21 16:19:24.493 \N Concern position true. Third f https://example.com/ 12911 433760 433760.433902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1132876783048 0 \N \N f 0 \N 1 95294750 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 433909 2024-02-21 16:15:22.022 2024-02-21 16:25:22.956 \N Would role them war ten stop bad. Which https://example.com/ 6765 433853 433853.433909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60555265730481 0 \N \N f 0 \N 0 121873997 0 f f \N \N \N \N 433853 \N 0 0 \N \N f \N 439510 2024-02-26 15:47:56.476 2024-02-26 15:57:58.03 \N Beyond difference husband https://example.com/ 5708 439342 439213.439336.439342.439510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8234337755492 0 \N \N f 0 \N 1 162376741 0 f f \N \N \N \N 439213 \N 0 0 \N \N f \N 433527 2024-02-21 09:36:27.626 2024-02-21 09:46:29.463 \N We teacher join same push onto. Gas character each when condition. One our explain oi https://example.com/ 1135 432750 432517.432750.433527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5088773965247 0 \N \N f 0 \N 1 99200251 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 433900 2024-02-21 16:07:24.82 2024-02-21 16:17:26.167 Meet whose open couple believe something significant. Process p Tree political sea https://example.com/ 21207 \N 433900 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.4473128088644 0 \N \N f 0 \N 0 236333570 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433903 2024-02-21 16:09:43.904 2024-02-21 16:19:44.859 Program want yeah color. Decade your peace catch visit. Figur Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major. https://example.com/ 3461 \N 433903 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.303588186484 0 \N \N f 0 \N 1 237751182 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435406 2024-02-22 19:03:26.568 2024-02-22 19:13:28.642 \N Small https://example.com/ 6260 435242 435242.435406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20574722532613 0 \N \N f 0 \N 0 39897242 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 433897 2024-02-21 16:03:03.192 2024-02-21 16:13:04.731 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benef https://example.com/ 20825 433527 432517.432750.433527.433897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1143851661221 0 \N \N f 0 \N 0 210824659 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 434430 2024-02-22 00:15:44.078 2024-02-22 00:25:45.666 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physica https://example.com/ 7558 434393 433740.433932.434393.434430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.86469521903637 0 \N \N f 0 \N 0 162427948 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439233 2024-02-26 12:58:31.3 2024-02-26 13:08:33.601 \N Yard subject low series serious spend. Someone thous https://example.com/ 19527 439139 439139.439233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9591398690836 0 \N \N f 0 \N 0 107560793 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433893 2024-02-21 16:00:36.02 2024-02-21 16:10:37.313 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressu https://example.com/ 9 433828 433828.433893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6187450341724 0 \N \N f 0 \N 0 139824934 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433918 2024-02-21 16:20:11.064 2024-02-21 16:30:12.726 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote https://example.com/ 20182 433888 433845.433888.433918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.36656957035075 0 \N \N f 0 \N 0 177417380 0 f f \N \N \N \N 433845 \N 0 0 \N \N f \N 433932 2024-02-21 16:30:34.155 2024-02-21 16:40:35.77 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artis https://example.com/ 770 433740 433740.433932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65366928300781 0 \N \N f 0 \N 2 54468024 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433906 2024-02-21 16:12:20.323 2024-02-21 16:22:21.974 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past de https://example.com/ 1195 433881 433828.433851.433881.433906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.40664530727635 0 \N \N f 0 \N 0 210600759 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439512 2024-02-26 15:48:48.14 2024-02-26 15:58:49.5 \N Bl https://example.com/ 20738 439504 439504.439512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2459543541366 0 \N \N f 0 \N 0 121010596 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 433920 2024-02-21 16:22:09.609 2024-02-21 16:32:10.991 \N Company kid protect determine adult. Increase a https://example.com/ 8570 433702 433702.433920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2242572284178 0 \N \N f 0 \N 0 93723216 0 f f \N \N \N \N 433702 \N 0 0 \N \N f \N 433877 2024-02-21 15:42:26.787 2024-02-21 15:52:28.668 \N Who collection suggest practice. Wa https://example.com/ 987 432811 432811.433877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7928192397111 0 \N \N f 0 \N 0 15533590 0 f f \N \N \N \N 432811 \N 0 0 \N \N f \N 433908 2024-02-21 16:14:23.255 2024-02-21 16:24:25.299 \N Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future k https://example.com/ 1428 433883 433883.433908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6207658478564 0 \N \N f 0 \N 3 197109979 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 439392 2024-02-26 14:41:21.836 2024-02-26 14:51:23.256 \N Surface field himself similar. Give fast past use sometimes. https://example.com/ 21138 439390 439390.439392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6467793046675 0 \N \N f 0 \N 6 130797693 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434393 2024-02-21 23:26:45.192 2024-02-21 23:36:46.516 \N Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait b https://example.com/ 18704 433932 433740.433932.434393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3235709206877 0 \N \N f 0 \N 1 195629951 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 433911 2024-02-21 16:16:32.39 2024-02-21 16:26:34.104 Concern position true. Thi Specific c https://example.com/ 15690 \N 433911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3859837684273 0 \N \N f 0 \N 3 70127294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433915 2024-02-21 16:17:42.679 2024-02-21 16:27:45.014 \N Not find attack light everything different. Certainly travel performance ready. Truth fa https://example.com/ 1647 433793 433588.433793.433915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1845179073247 0 \N \N f 0 \N 0 226316333 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439393 2024-02-26 14:42:09.593 2024-02-26 14:52:11.198 \N Soon raise sense education hold away. Whatever unit https://example.com/ 956 439390 439390.439393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4113790373911 0 \N \N f 0 \N 3 35700027 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433919 2024-02-21 16:21:35.045 2024-02-21 16:31:36.808 \N Hundred unit music many. B https://example.com/ 2502 433894 433833.433894.433919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54971212502247 0 \N \N f 0 \N 0 178761552 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439458 2024-02-26 15:21:35.974 2024-02-26 15:31:39.555 \N Long interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health https://example.com/ 16004 439390 439390.439458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8308262715276 0 \N \N f 0 \N 1 152396456 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433796 2024-02-21 14:15:04.165 2024-02-21 14:25:06.329 Author professional find face reflect. Def If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past. https://example.com/ 10096 \N 433796 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 0.514755369384226 0 \N \N f 0 \N 5 81525746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433904 2024-02-21 16:10:07.547 2024-02-21 16:20:08.825 \N Detail economy still boy fine in series. Bring probably list stop stil https://example.com/ 9695 433903 433903.433904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45087951110862 0 \N \N f 0 \N 0 222899141 0 f f \N \N \N \N 433903 \N 0 0 \N \N f \N 433913 2024-02-21 16:17:27.405 2024-02-21 16:27:28.522 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full yo https://example.com/ 15147 433883 433883.433913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40182011432106 0 \N \N f 0 \N 2 137696074 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 439715 2024-02-26 18:14:10.34 2024-02-26 18:24:11.191 \N Of https://example.com/ 21228 439690 439655.439690.439715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6836634771727 0 \N \N f 0 \N 4 120598069 0 f f \N \N \N \N 439655 \N 0 0 \N \N f \N 434107 2024-02-21 18:03:17.694 2024-02-21 18:13:19.404 \N Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue https://example.com/ 2674 433769 433403.433769.434107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.911634814236 0 \N \N f 0 \N 0 86268575 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439190 2024-02-26 12:40:25.077 2024-02-26 12:50:26.918 \N Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn securit https://example.com/ 10771 439082 439082.439190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9152874017375 0 \N \N f 0 \N 0 210436575 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439507 2024-02-26 15:47:05.249 2024-02-26 15:57:06.404 There everybody fish can. Exactly office event charge Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity. https://example.com/ 17817 \N 439507 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.111106490356 0 \N \N f 0 \N 0 140671398 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439466 2024-02-26 15:27:47.605 2024-02-26 15:37:49.19 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility sum https://example.com/ 1745 439343 438936.439343.439466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3217605825612 0 \N \N f 0 \N 3 137984724 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439520 2024-02-26 15:51:14.952 2024-02-26 16:01:16.171 \N Eight repre https://example.com/ 681 439510 439213.439336.439342.439510.439520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3664997306674 0 \N \N f 0 \N 0 78208654 0 f f \N \N \N \N 439213 \N 0 0 \N \N f \N 434573 2024-02-22 05:26:46.698 2024-02-22 05:36:48.307 \N Realize store science for pass. Sit dec https://example.com/ 2367 434569 434457.434569.434573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.437957295056 0 \N \N f 0 \N 0 29884374 0 f f \N \N \N \N 434457 \N 0 0 \N \N f \N 439423 2024-02-26 15:02:29.805 2024-02-26 15:12:31.289 \N Think cover scientist financial attention he word. W https://example.com/ 18904 439139 439139.439423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39331319774809 0 \N \N f 0 \N 0 120884795 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433926 2024-02-21 16:26:07.743 2024-02-21 16:36:08.605 \N Down item fund list company. Blue picture now her street https://example.com/ 14939 433883 433883.433926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4739993671343 0 \N \N f 0 \N 0 200090244 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 439229 2024-02-26 12:56:58.919 2024-02-26 13:06:59.998 \N Under big evening others. Trip remain money region r https://example.com/ 19566 439139 439139.439229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50202168587327 0 \N \N f 0 \N 0 246206462 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439511 2024-02-26 15:48:01.899 2024-02-26 15:58:03.04 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year https://example.com/ 21338 439500 439165.439331.439344.439459.439480.439486.439496.439500.439511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3052090604549 0 \N \N f 0 \N 2 99743391 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 439342 2024-02-26 14:02:23.948 2024-02-26 14:12:25.36 \N Majority certainly song bet https://example.com/ 19037 439336 439213.439336.439342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4758193306237 0 \N \N f 0 \N 2 187726207 0 f f \N \N \N \N 439213 \N 0 0 \N \N f \N 433677 2024-02-21 12:10:50.224 2024-02-21 12:20:51.507 Story do plant get. Base involve spor Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nPlan theory effect center maintain man. https://example.com/ 3745 \N 433677 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.7886059263724 0 \N \N f 0 \N 2 107136926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442018 2024-02-28 14:20:02.191 2024-02-28 14:30:04.376 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social https://example.com/ 10862 441854 441854.442018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8936709125929 0 \N \N f 0 \N 0 195397905 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 441829 2024-02-28 12:28:00.027 2024-02-28 12:38:00.802 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author https://example.com/ 7877 441825 441749.441825.441829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8845015679189 0 \N \N f 0 \N 1 120915995 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 434063 2024-02-21 17:43:15.243 2024-02-21 17:53:16.522 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon bu https://example.com/ 5173 433721 433721.434063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7505553027382 0 \N \N f 0 \N 0 16164962 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 433873 2024-02-21 15:35:08.402 2024-02-21 15:45:10.049 Various discussion light page war your have. Get generation ma Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid. https://example.com/ 2789 \N 433873 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.74337635045734 0 \N \N f 0 \N 0 99599388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433364 2024-02-21 04:41:38.653 2024-02-21 04:51:40.315 Increase agent management assume Break test customer successful hotel available. Size certainly fi https://example.com/ 6499 \N 433364 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 12.1363046774597 0 \N \N f 0 \N 4 163196707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433931 2024-02-21 16:30:33.681 2024-02-21 16:40:34.803 \N Somebody head others contain moment. Which our o https://example.com/ 19117 433721 433721.433931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.998254514502 0 \N \N f 0 \N 1 40666507 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 433933 2024-02-21 16:30:36.904 2024-02-21 16:40:38.901 Pattern someone notice power fly. Against expect Music energy specific plan financial federal. https://example.com/ 2327 \N 433933 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.6391029663506 0 \N \N f 0 \N 0 221658011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433864 2024-02-21 15:25:47.105 2024-02-21 15:35:48.239 House west amount. Again high already himself answer type. Go back Mr. Pattern Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west. https://example.com/ 21262 \N 433864 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.1818381003902 0 \N \N f 0 \N 0 31577316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433815 2024-02-21 14:27:51.777 2024-02-21 14:37:52.691 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film https://example.com/ 20023 433812 433588.433797.433811.433812.433815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5141516974857 0 \N \N f 0 \N 0 140544188 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433811 2024-02-21 14:24:45.026 2024-02-21 14:34:47.69 \N O https://example.com/ 21274 433797 433588.433797.433811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.835256985457 0 \N \N f 0 \N 3 169185283 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 436768 2024-02-24 00:15:49.299 2024-02-24 00:25:51.704 \N Job stage use material manage. Perhaps nothing project animal work https://example.com/ 1836 436694 436669.436694.436768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1966550362127 0 \N \N f 0 \N 0 249138207 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 433917 2024-02-21 16:19:33.896 2024-02-21 16:29:35.169 First right set. Dinner third difficult next Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level. https://example.com/ 1465 \N 433917 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6579056153424 0 \N \N f 0 \N 0 194278258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439081 2024-02-26 10:59:46.529 2024-02-26 11:09:47.66 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painti https://example.com/ 5725 439026 439026.439081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.47448760692674 0 \N \N f 0 \N 4 103874330 0 f f \N \N \N \N 439026 \N 0 0 \N \N f \N 439556 2024-02-26 16:10:52.794 2024-02-26 16:20:53.944 \N Measure would expert nation two. Prove at together various style. Garden https://example.com/ 19911 439549 433799.439522.439527.439537.439549.439556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6895744280034 0 \N \N f 0 \N 0 231051988 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 433945 2024-02-21 16:39:11.593 2024-02-21 16:49:12.594 \N Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nRemember before box of open. Always region baby actually https://example.com/ 4802 433828 433828.433945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2987534311022 0 \N \N f 0 \N 0 9309158 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439518 2024-02-26 15:50:36.817 2024-02-26 16:00:38.393 Everything she discuss gun somebody. Take adult story full. You Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell. https://example.com/ 17162 \N 439518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3889390370331 0 \N \N f 0 \N 1 69677535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433843 2024-02-21 15:02:24.466 2024-02-21 15:12:26.047 \N Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation p https://example.com/ 8269 433721 433721.433843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0356907448258 0 \N \N f 0 \N 1 154236264 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 433916 2024-02-21 16:18:07.684 2024-02-21 16:28:08.593 \N Time woman simply current community. Election old effor https://example.com/ 17722 433721 433721.433916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0433362421739 0 \N \N f 0 \N 0 162813917 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 433940 2024-02-21 16:37:34.451 2024-02-21 16:47:35.714 Class population stage though page happen expect. Even drug presid Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful. https://example.com/ 1472 \N 433940 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.2618697590342 0 \N \N f 0 \N 0 65130045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433499 2024-02-21 09:11:51.522 2024-02-21 09:21:52.979 Girl someone prepare. Realize however yeah Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide https://example.com/ 8945 \N 433499 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 5.05813960525561 0 \N \N f 0 \N 4 44104616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436230 2024-02-23 14:16:46.412 2024-02-23 14:26:47.627 \N Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nFilm beautiful large internation https://example.com/ 17082 436224 436224.436230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9979197561979 0 \N \N f 0 \N 0 136715064 0 f f \N \N \N \N 436224 \N 0 0 \N \N f \N 433936 2024-02-21 16:31:35.966 2024-02-21 16:41:37.149 Rise environmental middle fly listen rest national. Fall hos Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also. https://example.com/ 732 \N 433936 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.87131881546099 0 \N \N f 0 \N 2 57692243 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439517 2024-02-26 15:50:21.3 2024-02-26 16:00:22.364 Common loss oil be. Wrong water cover yet edge Think month catch free. https://example.com/ 6202 \N 439517 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.8948287303983 0 \N \N f 0 \N 0 43038721 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435933 2024-02-23 07:51:11.758 2024-02-23 08:01:13.758 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position https://example.com/ 21281 435859 435679.435859.435933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5534217300531 0 \N \N f 0 \N 0 190566642 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 433946 2024-02-21 16:39:36.634 2024-02-21 16:49:37.7 \N Great idea age friend. Its fi https://example.com/ 21320 433828 433828.433946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5085384164281 0 \N \N f 0 \N 4 136150958 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433949 2024-02-21 16:42:04.416 2024-02-21 16:52:05.586 \N Smile paper though to catch. Situation along under road. Same let society https://example.com/ 4574 433924 433924.433949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0300095411795 0 \N \N f 0 \N 0 178620133 0 f f \N \N \N \N 433924 \N 0 0 \N \N f \N 432422 2024-02-20 12:33:10.363 2024-02-20 12:43:11.726 Much wait girl sport picture Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission. https://example.com/ 18114 \N 432422 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 24.5299531042403 0 \N \N f 0 \N 0 99464501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433957 2024-02-21 16:46:05.211 2024-02-21 16:56:06.402 Against involve moment myself without. Get chance walk miss. My part according t Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy. https://example.com/ 2077 \N 433957 \N \N \N \N \N \N \N \N art \N ACTIVE \N 28.833441971819 0 \N \N f 0 \N 0 131756058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439538 2024-02-26 16:02:11.846 2024-02-26 16:12:13.328 \N Heavy spring happy city start sound https://example.com/ 9985 439534 439026.439081.439534.439538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35966262351553 0 \N \N f 0 \N 0 62334352 0 f f \N \N \N \N 439026 \N 0 0 \N \N f \N 433959 2024-02-21 16:46:39.593 2024-02-21 16:56:40.518 \N Term growth industry election https://example.com/ 21418 433936 433936.433959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1411082772708 0 \N \N f 0 \N 1 177302738 0 f f \N \N \N \N 433936 \N 0 0 \N \N f \N 433944 2024-02-21 16:39:00.185 2024-02-21 16:49:02.1 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nExplain order help within. Effort get edge op https://example.com/ 15103 433943 433943.433944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4579545340645 0 \N \N f 0 \N 0 56597715 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 439494 2024-02-26 15:39:58.4 2024-02-26 15:50:00.608 \N Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class repr https://example.com/ 20036 439298 439298.439494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6449301645895 0 \N \N f 0 \N 0 27501824 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 435871 2024-02-23 05:57:46.75 2024-02-23 06:07:48.262 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill ten https://example.com/ 3461 435798 435798.435871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4791355808584 0 \N \N f 0 \N 0 229672085 0 f f \N \N \N \N 435798 \N 0 0 \N \N f \N 433973 2024-02-21 16:54:02.936 2024-02-21 17:04:04.521 \N Economy https://example.com/ 1738 433966 433588.433860.433966.433973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3992991901301 0 \N \N f 0 \N 0 118885283 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439486 2024-02-26 15:38:39.574 2024-02-26 15:48:41.583 \N Water wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nBeyond difference https://example.com/ 9920 439480 439165.439331.439344.439459.439480.439486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0458729889576 0 \N \N f 0 \N 5 199596732 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 439480 2024-02-26 15:37:21.292 2024-02-26 15:47:22.215 \N Ask arm interview player. Director data order season. My total black recently old two. Research w https://example.com/ 2776 439459 439165.439331.439344.439459.439480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.26235865817884 0 \N \N f 0 \N 6 98104179 0 f f \N \N \N \N 439165 \N 0 0 \N \N f \N 433966 2024-02-21 16:49:42.278 2024-02-21 16:59:43.92 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive includ https://example.com/ 14663 433860 433588.433860.433966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2084244893047 0 \N \N f 0 \N 2 73067425 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 435921 2024-02-23 07:41:11.563 2024-02-23 07:51:12.805 \N Think cover scientist financial attention he word. World laugh par https://example.com/ 657 435709 435679.435709.435921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8284520179368 0 \N \N f 0 \N 0 192672895 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 438794 2024-02-26 01:10:23.133 2024-02-26 01:20:24.186 Program cut truth box indicate game. Ag Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty work https://example.com/ 5171 \N 438794 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5526709190855 0 \N \N f 0 \N 22 137182196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437367 2024-02-24 15:29:00.364 2024-02-24 15:39:01.243 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want https://example.com/ 669 436753 436753.437367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03195648792024 0 \N \N f 0 \N 1 245280254 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 438979 2024-02-26 08:14:44.972 2024-02-26 08:24:45.791 \N Long interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nYes but truth go. Generation as nice customer old. Dark art https://example.com/ 1092 438414 438414.438979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6006197264301 0 \N \N f 0 \N 0 171583899 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 434044 2024-02-21 17:31:08.671 2024-02-21 17:41:09.84 Always friend price benefit. Reflect seem Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard. https://example.com/ 9347 \N 434044 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 28.1603194994068 0 \N \N f 0 \N 0 79691749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436753 2024-02-23 23:54:56.955 2024-02-24 00:04:58.414 Near see school goal. Investment glass time worry growt Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. P https://example.com/ 13798 \N 436753 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 5.21395312161935 0 \N \N f 0 \N 10 161452024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439026 2024-02-26 10:03:19.097 2024-02-26 10:13:20.774 Try hospital student. Stock floor by weight kind im Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management. https://example.com/ 18178 \N 439026 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.8999173700995 0 \N \N f 0 \N 6 177492971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439524 2024-02-26 15:53:49.751 2024-02-26 16:03:51.512 \N Win nothing research song data. They peace https://example.com/ 2056 439483 439100.439384.439454.439483.439524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2276424902265 0 \N \N f 0 \N 3 179062221 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 433974 2024-02-21 16:55:15.523 2024-02-21 17:05:16.751 \N Scene despite prepare need. Shoulder none until none. Look simply choose card se https://example.com/ 19662 433962 433937.433962.433974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.291152232246183 0 \N \N f 0 \N 0 177563211 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 439498 2024-02-26 15:41:56.352 2024-02-26 15:51:57.686 \N Debate property life amount writer. Animal fa https://example.com/ 15271 439413 439413.439498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4417367648348 0 \N \N f 0 \N 0 199305299 0 f f \N \N \N \N 439413 \N 0 0 \N \N f \N 433963 2024-02-21 16:47:38.268 2024-02-21 16:57:40.114 \N Glass her remember ex https://example.com/ 685 433959 433936.433959.433963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9125826716241 0 \N \N f 0 \N 0 2670877 0 f f \N \N \N \N 433936 \N 0 0 \N \N f \N 438886 2024-02-26 04:48:04.974 2024-02-26 04:58:05.795 \N Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus https://example.com/ 2735 438858 438794.438858.438886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3726319907583 0 \N \N f 0 \N 0 94756655 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 433956 2024-02-21 16:45:55.316 2024-02-21 16:55:56.207 \N Collection https://example.com/ 21159 433679 433679.433956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7874023955927 0 \N \N f 0 \N 3 207388600 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 433958 2024-02-21 16:46:34.651 2024-02-21 16:56:35.948 \N Travel watch north career song last. Together a https://example.com/ 12744 433886 433886.433958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8021033214654 0 \N \N f 0 \N 1 193804244 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 433988 2024-02-21 17:05:04.787 2024-02-21 17:15:05.942 Suggest officer purpose professor great school cut. Per agency Own about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead. https://example.com/ 11999 \N 433988 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.0964760184193 0 \N \N f 0 \N 0 189475644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439340 2024-02-26 13:57:32.911 2024-02-26 14:07:34.516 \N Throughout which address movie agree final. Current here few city opportunity. Think bank les https://example.com/ 16912 439082 439082.439340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.92565287852031 0 \N \N f 0 \N 0 169867456 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433964 2024-02-21 16:47:51.926 2024-02-21 16:57:53.269 \N Off should democratic notice old apply society. Buy section proba https://example.com/ 20663 433939 433883.433908.433939.433964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.70876955754931 0 \N \N f 0 \N 1 82503788 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 434021 2024-02-21 17:22:35.006 2024-02-21 17:32:36.69 \N Sort thus staff hard network https://example.com/ 15577 434011 433937.434011.434021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7869038423424 0 \N \N f 0 \N 0 179845708 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 433971 2024-02-21 16:53:23.08 2024-02-21 17:03:24.418 Single above reach it school step. Language book she but ability TV forget. Fast Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group. https://example.com/ 814 \N 433971 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 26.325912587551 0 \N \N f 0 \N 0 20317655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433968 2024-02-21 16:50:27.794 2024-02-21 17:00:29.157 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Fu https://example.com/ 627 433947 433911.433947.433968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.318373577485218 0 \N \N f 0 \N 1 50011075 0 f f \N \N \N \N 433911 \N 0 0 \N \N f \N 433952 2024-02-21 16:43:21.848 2024-02-21 16:53:22.913 \N Much wait girl sport picture clearly bank. Only significant father fall https://example.com/ 20220 433924 433924.433952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87718277511616 0 \N \N f 0 \N 0 60011805 0 f f \N \N \N \N 433924 \N 0 0 \N \N f \N 433955 2024-02-21 16:44:50.856 2024-02-21 16:54:53.146 \N Between remember watch image save win determine. Each reduce usually certainly. https://example.com/ 19570 433759 433588.433593.433759.433955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.888708636673 0 \N \N f 0 \N 1 149312019 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433982 2024-02-21 17:03:07.796 2024-02-21 17:13:08.779 \N War black change thing any from. Be soldier perhaps ma https://example.com/ 20710 433980 431800.433410.433928.433980.433982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4589412794436 0 \N \N f 0 \N 0 5958874 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 435929 2024-02-23 07:46:52.711 2024-02-23 07:56:53.542 \N Entire money chair between v https://example.com/ 19961 435690 435690.435929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7896661809164 0 \N \N f 0 \N 5 135927775 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 435939 2024-02-23 08:11:07.521 2024-02-23 08:21:09.039 \N With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth e https://example.com/ 1881 435740 434263.435740.435939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.128675171149162 0 \N \N f 0 \N 1 58580383 0 f f \N \N \N \N 434263 \N 0 0 \N \N f \N 439343 2024-02-26 14:03:04.628 2024-02-26 14:13:06.415 \N Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Profe https://example.com/ 4345 438936 438936.439343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0581405236836 0 \N \N f 0 \N 4 94709021 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 434004 2024-02-21 17:11:22.054 2024-02-21 17:21:23.66 Poor appear go since involve. How form no director material learn child. Custo Morning create future popular. Shoulder animal s https://example.com/ 18873 \N 434004 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 7.33167875206558 0 \N \N f 0 \N 2 113700111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439543 2024-02-26 16:03:52.404 2024-02-26 16:13:53.669 \N Property pass now firm today boy reason. Chair ready throw officer dis https://example.com/ 18941 439509 439504.439509.439543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62363385097628 0 \N \N f 0 \N 2 197962465 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 433993 2024-02-21 17:07:30.279 2024-02-21 17:17:31.91 \N Animal treatment actually. Local me bar https://example.com/ 1208 433946 433828.433946.433993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0309234422207 0 \N \N f 0 \N 3 119819275 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433972 2024-02-21 16:53:53.201 2024-02-21 17:03:54.897 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clea https://example.com/ 20646 433964 433883.433908.433939.433964.433972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.47932721096404 0 \N \N f 0 \N 0 27183001 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 434041 2024-02-21 17:29:29.375 2024-02-21 17:39:30.951 \N Determine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. https://example.com/ 18557 433833 433833.434041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5903190633782 0 \N \N f 0 \N 0 37113101 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434449 2024-02-22 00:52:37.153 2024-02-22 01:02:38.599 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early https://example.com/ 11789 433937 433937.434449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.90507472882432 0 \N \N f 0 \N 1 116749921 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 439545 2024-02-26 16:04:43.4 2024-02-26 16:14:45.146 \N Live child https://example.com/ 1426 439390 439390.439545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7828875969463 0 \N \N f 0 \N 1 90100381 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434134 2024-02-21 18:21:40.179 2024-02-21 18:31:42.08 \N Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nSame listen suggest five serve sit need if. South listen give agent station. Movemen https://example.com/ 13878 434038 434038.434134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.00489881496520184 0 \N \N f 0 \N 0 72122717 0 f f \N \N \N \N 434038 \N 0 0 \N \N f \N 439528 2024-02-26 15:56:42.613 2024-02-26 16:06:43.721 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share st https://example.com/ 10096 439295 439295.439528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6740074175841 0 \N \N f 0 \N 0 231072845 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 433976 2024-02-21 16:56:46.622 2024-02-21 17:06:47.951 \N Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby e https://example.com/ 5173 433968 433911.433947.433968.433976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1794391078695 0 \N \N f 0 \N 0 90677056 0 f f \N \N \N \N 433911 \N 0 0 \N \N f \N 439470 2024-02-26 15:31:00.723 2024-02-26 15:41:01.928 \N Couple writer life commercial art. Medi https://example.com/ 9333 439139 439139.439470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44822615989036 0 \N \N f 0 \N 1 231010998 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437761 2024-02-24 23:25:10.816 2024-02-24 23:35:12.623 \N Control century lay already range. Scene easy nice health audienc https://example.com/ 20781 437723 437723.437761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64196253611193 0 \N \N f 0 \N 2 178133609 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 435938 2024-02-23 08:11:03.497 2024-02-23 08:21:04.924 How never cut grow benefit. Dinner Play director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple. https://example.com/ 4459 \N 435938 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 17.4104372659729 0 \N \N f 0 \N 0 120531676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439536 2024-02-26 16:01:52.041 2024-02-26 16:11:53.59 \N Before evening her visit bag building grow. Small project car w https://example.com/ 16532 439531 439531.439536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8343941954742 0 \N \N f 0 \N 0 173195703 0 f f \N \N \N \N 439531 \N 0 0 \N \N f \N 435874 2024-02-23 06:02:51.817 2024-02-23 06:12:53.072 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nEffect receive on newspaper https://example.com/ 18138 435217 435217.435874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67058131932212 0 \N \N f 0 \N 0 143685738 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435610 2024-02-22 22:27:04.571 2024-02-22 22:37:05.573 Forget issue save education. Head of face begin our. Detail common Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak https://example.com/ 20596 \N 435610 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2288765834834 0 \N \N f 0 \N 15 228200315 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435946 2024-02-23 08:26:54.894 2024-02-23 08:36:56.443 \N Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article a https://example.com/ 19976 432547 432547.435946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.41270693193206 0 \N \N f 0 \N 0 46222277 0 f f \N \N \N \N 432547 \N 0 0 \N \N f \N 439533 2024-02-26 16:00:04.868 2024-02-26 16:00:11.01 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small rea https://example.com/ 5160 439532 439532.439533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8731012319661 0 \N \N f 0 \N 0 40321248 0 f f \N \N \N \N 439532 \N 0 0 \N \N f \N 439506 2024-02-26 15:45:46.751 2024-02-26 15:55:47.886 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly messag https://example.com/ 9985 439469 438936.439343.439466.439469.439506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.69365327401602 0 \N \N f 0 \N 1 91887171 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439537 2024-02-26 16:01:55.59 2024-02-26 16:11:57.911 \N Themselves table various administration single save. Until pattern inc https://example.com/ 21416 439527 433799.439522.439527.439537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5537976492694 0 \N \N f 0 \N 2 123242222 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 433977 2024-02-21 16:56:49.446 2024-02-21 17:06:51.016 \N Center stand near long pai https://example.com/ 866 433828 433828.433977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.12205262049732 0 \N \N f 0 \N 1 63816809 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433883 2024-02-21 15:52:01.898 2024-02-21 16:02:03.364 Become popular local cut evidence. Available stage Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason https://example.com/ 19843 \N 433883 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.20759272474182 0 \N \N f 0 \N 11 126942450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435740 2024-02-23 01:10:56.227 2024-02-23 01:20:57.846 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss ch https://example.com/ 12245 434263 434263.435740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9245781344693 0 \N \N f 0 \N 2 195028351 0 f f \N \N \N \N 434263 \N 0 0 \N \N f \N 433981 2024-02-21 17:02:20.994 2024-02-21 17:12:22.854 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medica https://example.com/ 18815 433828 433828.433981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7150381138336 0 \N \N f 0 \N 3 235898778 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439521 2024-02-26 15:51:48.071 2024-02-26 16:01:49.747 \N Them social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead ad https://example.com/ 20973 439518 439518.439521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1549480571617 0 \N \N f 0 \N 0 245477431 0 f f \N \N \N \N 439518 \N 0 0 \N \N f \N 433942 2024-02-21 16:38:29.551 2024-02-21 16:48:30.692 \N Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. https://example.com/ 13177 433828 433828.433942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.592450639665039 0 \N \N f 0 \N 3 39326152 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433947 2024-02-21 16:39:38.036 2024-02-21 16:49:38.853 \N Human appear s https://example.com/ 18635 433911 433911.433947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4953796181698 0 \N \N f 0 \N 2 129925887 0 f f \N \N \N \N 433911 \N 0 0 \N \N f \N 434011 2024-02-21 17:17:21.384 2024-02-21 17:27:22.607 \N End inside like them according. Surface where camera base may https://example.com/ 837 433937 433937.434011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8170814795127 0 \N \N f 0 \N 2 160605115 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 433979 2024-02-21 16:59:24.491 2024-02-21 17:09:25.874 \N Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense spa https://example.com/ 14308 433955 433588.433593.433759.433955.433979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31791432168488 0 \N \N f 0 \N 0 26020957 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433992 2024-02-21 17:07:28.854 2024-02-21 17:17:29.877 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly https://example.com/ 17526 433927 432619.433927.433992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2131243633654 0 \N \N f 0 \N 1 30244490 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 433806 2024-02-21 14:21:55.719 2024-02-21 14:31:57.098 Near whom sit w Maybe doctor performance school. Happen per discu https://example.com/ 717 \N 433806 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.212417956431 0 \N \N f 0 \N 2 222116462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435941 2024-02-23 08:16:09.414 2024-02-23 08:26:11.043 \N We course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. R https://example.com/ 16230 435217 435217.435941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7241294261231 0 \N \N f 0 \N 0 143058409 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 434453 2024-02-22 00:54:50.667 2024-02-22 01:04:52.218 \N Ten throw trip up r https://example.com/ 20254 434449 433937.434449.434453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1403380448778 0 \N \N f 0 \N 0 229120485 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 435949 2024-02-23 08:31:18.658 2024-02-23 08:41:20.583 \N Debate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important https://example.com/ 21091 386322 386322.435949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59334164441898 0 \N \N f 0 \N 0 224828949 0 f f \N \N \N \N 386322 \N 0 0 \N \N f \N 433928 2024-02-21 16:27:54.747 2024-02-21 16:37:56.383 \N Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product https://example.com/ 721 433410 431800.433410.433928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65483800789672 0 \N \N f 0 \N 2 52629292 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 433980 2024-02-21 17:00:00.6 2024-02-21 17:10:01.802 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again https://example.com/ 18468 433928 431800.433410.433928.433980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6516300513199 0 \N \N f 0 \N 1 212184119 0 f f \N \N \N \N 431800 \N 0 0 \N \N f \N 439567 2024-02-26 16:23:49.617 2024-02-26 16:33:51.264 \N Down item fund list company. https://example.com/ 1060 439476 439476.439567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0669800485649 0 \N \N f 0 \N 0 7658885 0 f f \N \N \N \N 439476 \N 0 0 \N \N f \N 433985 2024-02-21 17:04:07.62 2024-02-21 17:14:08.849 \N Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. https://example.com/ 19156 433970 433038.433343.433346.433925.433930.433941.433948.433970.433985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.366251835169 0 \N \N f 0 \N 5 10083879 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 433890 2024-02-21 15:59:44.526 2024-02-21 16:09:46.219 \N Pretty street rather speak unit again https://example.com/ 6260 433828 433828.433890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76469525430493 0 \N \N f 0 \N 9 67372915 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439523 2024-02-26 15:53:47.223 2024-02-26 16:03:48.48 \N Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model pa https://example.com/ 717 438737 438737.439523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.42245542119 0 \N \N f 0 \N 0 187687880 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 434020 2024-02-21 17:22:21.7 2024-02-21 17:32:22.998 \N Hold show assume travel economy. Ground then an https://example.com/ 18524 433999 433828.433999.434020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.53773375437513 0 \N \N f 0 \N 5 179138677 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433989 2024-02-21 17:05:21.702 2024-02-21 17:15:22.721 \N Health reduce performance body similar light wear this. Training purpose suggest. Chu https://example.com/ 1718 433977 433828.433977.433989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5465542042132 0 \N \N f 0 \N 0 238891807 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433983 2024-02-21 17:03:22.696 2024-02-21 17:13:23.873 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepar https://example.com/ 21314 433966 433588.433860.433966.433983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5964688344722 0 \N \N f 0 \N 0 230845371 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439544 2024-02-26 16:04:33.235 2024-02-26 16:14:35.019 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fi https://example.com/ 18727 439492 439139.439492.439544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.17802877514247 0 \N \N f 0 \N 1 5653812 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439526 2024-02-26 15:55:33.089 2024-02-26 16:05:34.719 \N Raise represent leave during huge through early. For https://example.com/ 19284 439139 439139.439526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9410182626904 0 \N \N f 0 \N 0 248999646 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439531 2024-02-26 15:59:49.815 2024-02-26 16:09:51.294 Past loss author a need give civil style. Also check house until Mrs key reall Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean. https://example.com/ 7553 \N 439531 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.38181866005112 0 \N \N f 0 \N 1 32556477 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433990 2024-02-21 17:05:43.479 2024-02-21 17:15:44.833 \N Though or meet hotel. Pay center pattern quality https://example.com/ 18344 433899 433828.433899.433990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67984532343043 0 \N \N f 0 \N 0 31001663 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434001 2024-02-21 17:10:19.77 2024-02-21 17:20:20.524 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four https://example.com/ 8648 433886 433886.434001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90489503915974 0 \N \N f 0 \N 2 44856663 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 439558 2024-02-26 16:11:56.468 2024-02-26 16:21:57.923 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season wom https://example.com/ 3461 439553 438946.439553.439558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.462012440336 0 \N \N f 0 \N 0 221091914 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 433996 2024-02-21 17:08:52.849 2024-02-21 17:18:54.105 \N Every east political drug. Important game subject seat seek college learn. Law too simply again https://example.com/ 19987 433588 433588.433996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.16284062600218 0 \N \N f 0 \N 0 78575644 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439554 2024-02-26 16:10:24.875 2024-02-26 16:20:27.024 \N Republican star interest its. Coll https://example.com/ 1983 438414 438414.439554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3691622315379 0 \N \N f 0 \N 0 25116460 0 f f \N \N \N \N 438414 \N 0 0 \N \N f \N 431800 2024-02-19 19:58:55.403 2024-02-19 20:08:56.891 Many soldier role. Far buy able idea pres Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nReach too suffer story type remember lot. Rev https://example.com/ 9421 \N 431800 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 0.308945577567599 0 \N \N f 0 \N 20 116242257 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439492 2024-02-26 15:39:27.524 2024-02-26 15:49:28.948 \N Great idea age friend. Its fin https://example.com/ 15474 439139 439139.439492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3303270687912 0 \N \N f 0 \N 2 164616448 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434003 2024-02-21 17:10:24.587 2024-02-21 17:20:25.53 \N Role before girl wonder cle https://example.com/ 18904 433608 433608.434003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.64486795319095 0 \N \N f 0 \N 0 40519521 0 f f \N \N \N \N 433608 \N 0 0 \N \N f \N 434015 2024-02-21 17:21:29.401 2024-02-21 17:31:30.723 \N For share something effect science co https://example.com/ 21405 433663 433588.433646.433663.434015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8751869615629 0 \N \N f 0 \N 1 118505627 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433346 2024-02-21 03:52:25.432 2024-02-21 04:02:26.895 \N Floor among test material. Meet million https://example.com/ 20603 433343 433038.433343.433346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7460688828673 0 \N \N f 0 \N 11 224688664 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 439550 2024-02-26 16:08:35.735 2024-02-26 16:18:36.948 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point dec https://example.com/ 2361 439544 439139.439492.439544.439550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2983389626444 0 \N \N f 0 \N 0 239791206 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439555 2024-02-26 16:10:47.916 2024-02-26 16:20:48.894 \N Opport https://example.com/ 683 439432 439277.439432.439555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0351289513503 0 \N \N f 0 \N 0 33353933 0 f f \N \N \N \N 439277 \N 0 0 \N \N f \N 433970 2024-02-21 16:52:04.384 2024-02-21 17:02:05.959 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong importan https://example.com/ 9482 433948 433038.433343.433346.433925.433930.433941.433948.433970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1061761097764 0 \N \N f 0 \N 6 102441063 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 434018 2024-02-21 17:21:59.078 2024-02-21 17:32:01.125 \N Material arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat popu https://example.com/ 992 433783 433740.433783.434018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29032259234319 0 \N \N f 0 \N 1 165566782 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439463 2024-02-26 15:24:58.677 2024-02-26 15:35:00.187 \N Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Av https://example.com/ 1425 439455 439263.439455.439463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4805615298672 0 \N \N f 0 \N 0 56742567 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 434006 2024-02-21 17:13:10.998 2024-02-21 17:23:12.803 \N Field https://example.com/ 20500 433997 433038.433343.433346.433925.433930.433941.433948.433970.433985.433994.433997.434006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9165536584775 0 \N \N f 0 \N 0 102372819 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 439553 2024-02-26 16:09:53.12 2024-02-26 16:19:54.991 \N Top happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. https://example.com/ 20892 438946 438946.439553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0331792876863 0 \N \N f 0 \N 1 364245 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 434002 2024-02-21 17:10:21.761 2024-02-21 17:20:22.529 \N They anot https://example.com/ 12024 433481 432344.432932.433481.434002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3092412400033 0 \N \N f 0 \N 0 90469314 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433481 2024-02-21 08:37:11.787 2024-02-21 08:47:13.061 \N Animal character seek song. Compare pu https://example.com/ 17944 432932 432344.432932.433481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9035853607591 0 \N \N f 0 \N 1 219563742 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 433953 2024-02-21 16:43:39.162 2024-02-21 16:53:40.889 \N M https://example.com/ 19417 433646 433588.433646.433953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8792067434994 0 \N \N f 0 \N 0 112632470 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 432322 2024-02-20 10:18:42.591 2024-02-20 10:28:44.068 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nBeyond leg century level herself those. Si https://example.com/ 15386 432259 432259.432322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0453171815198 0 \N \N f 0 \N 4 115087024 0 f f \N \N \N \N 432259 \N 0 0 \N \N f \N 439515 2024-02-26 15:49:35.819 2024-02-26 15:59:37.345 Increase consumer itself trade ahead above. R Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again. https://example.com/ 683 \N 439515 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.34727102898494 0 \N \N f 0 \N 1 125108551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439539 2024-02-26 16:02:12.977 2024-02-26 16:12:14.486 \N Most which usually increase event at hold. End https://example.com/ 12736 439139 439139.439539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3230212865168 0 \N \N f 0 \N 0 5552205 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439564 2024-02-26 16:16:02.947 2024-02-26 16:26:05.673 Them debate main bad. Personal security be government. Common as civ Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting. https://example.com/ 661 \N 439564 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.10330531066581 0 \N \N f 0 \N 0 171285322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439267 2024-02-26 13:14:40.28 2024-02-26 13:24:41.604 Man talk arm player scene reflect. W Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current. https://example.com/ 8176 \N 439267 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 15.1570909199484 0 \N \N f 0 \N 0 147758516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434448 2024-02-22 00:52:25.339 2024-02-22 01:02:26.684 \N Price c https://example.com/ 12808 433943 433943.434448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.659529492611917 0 \N \N f 0 \N 0 55310325 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 434460 2024-02-22 01:08:14.164 2024-02-22 01:18:15.784 \N At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise https://example.com/ 19322 434455 434278.434298.434310.434411.434435.434439.434442.434444.434451.434455.434460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2580205380271 0 \N \N f 0 \N 0 99720232 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439426 2024-02-26 15:05:08.672 2024-02-26 15:15:09.816 How never cut grow benefit. Dinner environmental side financial. Car statement d Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly. https://example.com/ 11328 \N 439426 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.8701705218062 0 \N \N f 0 \N 2 197909408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439050 2024-02-26 10:22:01.346 2024-02-26 10:32:02.735 Manager suffer she clearl Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost. https://example.com/ 663 \N 439050 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 23.6354004558524 0 \N \N f 0 \N 0 117807821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434008 2024-02-21 17:14:52.615 2024-02-21 17:24:53.747 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nDetermine evidence bar. Evening where myself shoulder century https://example.com/ 8326 433828 433828.434008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.9830584895565 0 \N \N f 0 \N 0 149652087 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439212 2024-02-26 12:51:49.252 2024-02-26 13:01:51.36 \N Board age miss drug sense. Take here somebody choose https://example.com/ 10484 439139 439139.439212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3865487544704 0 \N \N f 0 \N 0 18384847 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435953 2024-02-23 08:41:21.393 2024-02-23 08:51:22.617 \N Yourself teach week https://example.com/ 21079 435914 435914.435953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2102365968498 0 \N \N f 0 \N 0 111708650 0 f f \N \N \N \N 435914 \N 0 0 \N \N f \N 435408 2024-02-22 19:06:32.505 2024-02-22 19:16:33.45 \N Win nothing research song https://example.com/ 10469 435382 435261.435382.435408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6531040204295 0 \N \N f 0 \N 0 141126951 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 439557 2024-02-26 16:11:37.289 2024-02-26 16:21:38.873 Most describe tell speech without. Young lot next cell among war agree. Impo New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose. https://example.com/ 10056 \N 439557 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.3356684656593 0 \N \N f 0 \N 0 213049708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434012 2024-02-21 17:18:34.225 2024-02-21 17:28:36.091 \N Single level story sound. Door end upon benefit second month together. That film little we under. https://example.com/ 13132 433499 433499.434012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6132120039549 0 \N \N f 0 \N 0 228943955 0 f f \N \N \N \N 433499 \N 0 0 \N \N f \N 434014 2024-02-21 17:20:48.49 2024-02-21 17:30:50.142 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. S https://example.com/ 680 433998 433828.433981.433987.433998.434014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3926912156808 0 \N \N f 0 \N 0 53674201 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433991 2024-02-21 17:07:06.187 2024-02-21 17:17:07.361 \N Leader partner among describe unit st https://example.com/ 8176 433929 433828.433929.433991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7073728035932 0 \N \N f 0 \N 0 59182179 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 435945 2024-02-23 08:26:35.053 2024-02-23 08:36:36.06 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simpl https://example.com/ 1175 435261 435261.435945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6747753041716 0 \N \N f 0 \N 0 52098313 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435948 2024-02-23 08:29:10.28 2024-02-23 08:39:11.61 \N Le https://example.com/ 18663 435944 435944.435948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2604009363695 0 \N \N f 0 \N 0 170442118 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 434028 2024-02-21 17:27:05.999 2024-02-21 17:37:07.341 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technolo https://example.com/ 16267 433992 432619.433927.433992.434028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0694222403016 0 \N \N f 0 \N 0 149241210 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 439546 2024-02-26 16:05:17.856 2024-02-26 16:15:19.02 \N Return teacher forget establish poor everything wate https://example.com/ 18736 439139 439139.439546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5867921664475 0 \N \N f 0 \N 0 210192573 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439291 2024-02-26 13:28:36.342 2024-02-26 13:38:38.185 \N Many soldier role. Far buy able idea president try t https://example.com/ 18016 439139 439139.439291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.527610701326 0 \N \N f 0 \N 0 104291119 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433948 2024-02-21 16:41:57.431 2024-02-21 16:51:58.568 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly https://example.com/ 20220 433941 433038.433343.433346.433925.433930.433941.433948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.45563144374071 0 \N \N f 0 \N 7 204049263 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 434048 2024-02-21 17:35:01.518 2024-02-21 17:45:02.918 \N Down item fund list company. Blue picture now her stre https://example.com/ 14213 434039 433833.433901.434039.434048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3044608503813 0 \N \N f 0 \N 1 190442048 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434027 2024-02-21 17:26:21.519 2024-02-21 17:36:22.767 Detail discussion line around. Art along house keep him. Test peace Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward. https://example.com/ 9184 \N 434027 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9142745050039 0 \N \N f 0 \N 6 203629999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433810 2024-02-21 14:23:56.107 2024-02-21 14:33:57.994 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fi https://example.com/ 1806 433646 433588.433646.433810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7309025069538 0 \N \N f 0 \N 0 246111101 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 432609 2024-02-20 15:38:07.88 2024-02-20 15:48:09.412 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public scor https://example.com/ 19601 432517 432517.432609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9939621914759 0 \N \N f 0 \N 1 201634604 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 434024 2024-02-21 17:24:10.71 2024-02-21 17:34:12.208 \N Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Se https://example.com/ 19378 434018 433740.433783.434018.434024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.99130033585918 0 \N \N f 0 \N 0 213158657 0 f f \N \N \N \N 433740 \N 0 0 \N \N f \N 439450 2024-02-26 15:19:34.165 2024-02-26 15:29:36.245 \N Build learn name environment. Which specific old rul https://example.com/ 8954 439139 439139.439450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4501929147522 0 \N \N f 0 \N 0 104930218 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439535 2024-02-26 16:01:42.5 2024-02-26 16:11:43.436 \N Public ask news upon forget election. https://example.com/ 6137 438977 438946.438977.439535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9512521137626 0 \N \N f 0 \N 0 161385043 0 f f \N \N \N \N 438946 \N 0 0 \N \N f \N 434023 2024-02-21 17:24:05.692 2024-02-21 17:34:07.132 \N Do probably energy loss https://example.com/ 16059 433943 433943.434023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.021913650701 0 \N \N f 0 \N 0 224137218 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 439355 2024-02-26 14:10:01.866 2024-02-26 14:20:03.307 \N Almost about me amount daughter himself. Threat candidate si https://example.com/ 19888 439139 439139.439355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.657939656090392 0 \N \N f 0 \N 0 179193739 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434478 2024-02-22 02:08:46.821 2024-02-22 02:08:52.456 \N Piece conference several. Vote lett https://example.com/ 10591 79125 79125.434478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4548209384807 0 \N \N f 0 \N 0 160246391 0 f f \N \N \N \N 79125 \N 0 0 \N \N f \N 433901 2024-02-21 16:08:05.325 2024-02-21 16:18:07.111 \N Wrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive https://example.com/ 3400 433833 433833.433901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1558313875194 0 \N \N f 0 \N 3 212962582 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434035 2024-02-21 17:28:12.882 2024-02-21 17:38:14.15 \N Describe modern fund cultural realize bag. Goal describe tonight fish doc https://example.com/ 16289 434027 434027.434035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5444986696034 0 \N \N f 0 \N 1 199877471 0 f f \N \N \N \N 434027 \N 0 0 \N \N f \N 433769 2024-02-21 13:47:20.609 2024-02-21 13:57:21.783 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Powe https://example.com/ 7395 433403 433403.433769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6550772526723 0 \N \N f 0 \N 1 44533362 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 434033 2024-02-21 17:27:46.519 2024-02-21 17:37:47.858 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportu https://example.com/ 14280 433401 433377.433388.433390.433398.433401.434033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3231140669776 0 \N \N f 0 \N 0 175602040 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 441825 2024-02-28 12:25:25.597 2024-02-28 12:35:26.928 \N Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While th https://example.com/ 2204 441749 441749.441825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8670739080695 0 \N \N f 0 \N 2 32588929 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 439294 2024-02-26 13:29:35.7 2024-02-26 13:39:37.213 \N Tree house interest fly bit bring. Create yes busine https://example.com/ 16178 439139 439139.439294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3560777682579 0 \N \N f 0 \N 0 213348137 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439473 2024-02-26 15:32:18.864 2024-02-26 15:42:20.289 \N Game management go ready star call how. https://example.com/ 19142 439139 439139.439473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3539046841884 0 \N \N f 0 \N 0 104895464 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439572 2024-02-26 16:26:08.707 2024-02-26 16:36:09.484 \N Film without deal produ https://example.com/ 626 439295 439295.439572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2253666962716 0 \N \N f 0 \N 0 21496418 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 434036 2024-02-21 17:28:13.823 2024-02-21 17:38:14.878 \N Table fish west wish point expect. Discussion matter threat learn author https://example.com/ 21457 434029 434027.434029.434036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4487625349037 0 \N \N f 0 \N 0 184560313 0 f f \N \N \N \N 434027 \N 0 0 \N \N f \N 434497 2024-02-22 03:00:10.473 2024-02-22 03:10:11.75 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider https://example.com/ 17690 434469 434469.434497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.11548091501477 0 \N \N f 0 \N 2 169539177 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 439293 2024-02-26 13:29:02.066 2024-02-26 13:39:03.463 \N Wish join discuss brother worry talk final. Detail s https://example.com/ 1729 439139 439139.439293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4826966329298 0 \N \N f 0 \N 0 203195601 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439250 2024-02-26 13:04:55.452 2024-02-26 13:14:57.751 \N Recent work wife light adult yard. Child although gi https://example.com/ 17673 439139 439139.439250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2927438052281 0 \N \N f 0 \N 0 117701640 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434017 2024-02-21 17:21:40.237 2024-02-21 17:31:41.934 \N Letter both ability. Strong several point research general goal that. Character east into chance https://example.com/ 5112 433921 433833.433849.433921.434017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4189541878256 0 \N \N f 0 \N 0 88723889 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434000 2024-02-21 17:10:06.551 2024-02-21 17:20:07.774 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. https://example.com/ 1505 433381 432344.432932.433381.434000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.57745986921633 0 \N \N f 0 \N 2 210108852 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 437939 2024-02-25 04:15:47.241 2024-02-25 04:25:49.336 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Let https://example.com/ 2156 437938 437723.437880.437938.437939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3657629282508 0 \N \N f 0 \N 0 60366789 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 433398 2024-02-21 05:55:27.884 2024-02-21 06:05:29.371 \N Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nBoth https://example.com/ 20117 433390 433377.433388.433390.433398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.67234991161502 0 \N \N f 0 \N 2 199800404 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 433401 2024-02-21 05:58:40.146 2024-02-21 06:08:41.478 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay https://example.com/ 21274 433398 433377.433388.433390.433398.433401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4531759433121 0 \N \N f 0 \N 1 67577364 0 f f \N \N \N \N 433377 \N 0 0 \N \N f \N 439281 2024-02-26 13:23:33.48 2024-02-26 13:33:35.195 \N Remember statement trip much improve body. House red https://example.com/ 18291 439139 439139.439281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.922802086073 0 \N \N f 0 \N 0 147825607 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 433437 2024-02-21 07:19:11.871 2024-02-21 07:29:13.775 \N Down his majority risk worker parent head. Decade paint https://example.com/ 21547 433240 432920.433042.433240.433437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5064344711329 0 \N \N f 0 \N 0 140597262 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439570 2024-02-26 16:25:43.348 2024-02-26 16:35:45.272 \N Outside mother movement day enough. Ever building next let material military this. Sta https://example.com/ 21036 439476 439476.439570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5377152784218 0 \N \N f 0 \N 0 159229249 0 f f \N \N \N \N 439476 \N 0 0 \N \N f \N 434042 2024-02-21 17:30:32.24 2024-02-21 17:40:33.465 \N Heavy spring happy city start sound. Beautiful be https://example.com/ 4521 434035 434027.434035.434042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.63381470914259 0 \N \N f 0 \N 0 235097773 0 f f \N \N \N \N 434027 \N 0 0 \N \N f \N 434075 2024-02-21 17:49:09.549 2024-02-21 17:59:11.707 \N Board Mr bar white alone hot. Court class former model https://example.com/ 6578 434070 433886.434070.434075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.18378333245407 0 \N \N f 0 \N 2 103128614 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 434061 2024-02-21 17:42:59.005 2024-02-21 17:53:00.261 \N Beyond song thr https://example.com/ 17541 434056 434056.434061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6828403754796 0 \N \N f 0 \N 0 36375516 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 434053 2024-02-21 17:40:29.091 2024-02-21 17:50:30.044 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Manag https://example.com/ 15049 433480 432344.432952.433480.434053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2031285693044 0 \N \N f 0 \N 0 165067035 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434073 2024-02-21 17:48:21.868 2024-02-21 17:58:22.97 \N Best affe https://example.com/ 11760 434056 434056.434073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2985415864178 0 \N \N f 0 \N 0 106271951 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 433882 2024-02-21 15:48:59.554 2024-02-21 15:59:01.156 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural deter https://example.com/ 9421 433833 433833.433882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.292655135952 0 \N \N f 0 \N 0 240383148 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 435293 2024-02-22 17:34:12.633 2024-02-22 17:44:13.625 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nCan shoulder modern daughter. Where https://example.com/ 5852 435286 435261.435272.435286.435293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23665447595497 0 \N \N f 0 \N 0 139438199 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 433052 2024-02-20 21:35:34.854 2024-02-20 21:45:36.627 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Pe https://example.com/ 10519 433007 432920.433007.433052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2397063535767 0 \N \N f 0 \N 3 164419923 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439385 2024-02-26 14:33:45.275 2024-02-26 14:43:46.596 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they p https://example.com/ 20602 439298 439298.439385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.29885394717513 0 \N \N f 0 \N 1 93641474 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 439581 2024-02-26 16:35:11.492 2024-02-26 16:45:13.344 \N Then political wait so https://example.com/ 20704 439385 439298.439385.439581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5235738812389 0 \N \N f 0 \N 0 24080906 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 439257 2024-02-26 13:07:32.728 2024-02-26 13:17:33.619 \N Much wait girl sport picture clearly bank. Only sign https://example.com/ 2577 439139 439139.439257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.593204029645 0 \N \N f 0 \N 0 147299371 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434082 2024-02-21 17:52:27.089 2024-02-21 18:02:28.293 \N Notice after fund police. Put environment someone remember try. Huge morning betw https://example.com/ 8506 433421 433403.433421.434082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.095708101036962 0 \N \N f 0 \N 1 97712715 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 434010 2024-02-21 17:16:32.074 2024-02-21 17:26:33.986 Authority call eveni Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge. https://example.com/ 10007 \N 434010 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 18.7541299285627 0 \N \N f 0 \N 0 213678506 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433421 2024-02-21 06:46:13.296 2024-02-21 06:56:14.335 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. F https://example.com/ 21422 433403 433403.433421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.86618605489373 0 \N \N f 0 \N 2 144922674 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439222 2024-02-26 12:54:27.358 2024-02-26 13:04:29.433 \N Need huge foreign thing coach him detail sense. Rule https://example.com/ 12102 439139 439139.439222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.19355528578055 0 \N \N f 0 \N 0 179868025 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 442005 2024-02-28 14:13:56.352 2024-02-28 14:23:58.117 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During https://example.com/ 13544 441930 441660.441930.442005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98851935226307 0 \N \N f 0 \N 0 186736269 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 439575 2024-02-26 16:27:26.186 2024-02-26 16:37:27.658 \N Light check business try. Know through structure own https://example.com/ 750 439139 439139.439575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8746314630273 0 \N \N f 0 \N 0 191831159 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434005 2024-02-21 17:11:38.318 2024-02-21 17:21:39.81 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wa https://example.com/ 1038 433833 433833.434005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8284775702264 0 \N \N f 0 \N 0 105392903 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439489 2024-02-26 15:38:56.165 2024-02-26 15:48:58.917 Full both sound century close card. Anyone occur number receive one perfo Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car. https://example.com/ 11829 \N 439489 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.6847053306862 0 \N \N f 0 \N 1 214253413 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441866 2024-02-28 12:57:07.466 2024-02-28 13:07:09.479 Possible late blood alw Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Sam https://example.com/ 14152 \N 441866 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 8.48905386481363 0 \N \N f 0 \N 4 229275957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439548 2024-02-26 16:06:17.641 2024-02-26 16:16:18.688 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditio https://example.com/ 14905 439443 439443.439548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.30008364172541 0 \N \N f 0 \N 0 234748241 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 433929 2024-02-21 16:28:02.116 2024-02-21 16:38:03.542 \N Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age chi https://example.com/ 20840 433828 433828.433929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66829359845157 0 \N \N f 0 \N 1 10854194 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434059 2024-02-21 17:41:59.497 2024-02-21 17:52:01.288 \N Ten instead develop somebody into school. Main build https://example.com/ 5557 434027 434027.434059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7387255633472 0 \N \N f 0 \N 1 173602489 0 f f \N \N \N \N 434027 \N 0 0 \N \N f \N 433898 2024-02-21 16:04:53.873 2024-02-21 16:14:55.048 Nature wrong meeting whatever. Manage product me stay police. At property all Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save j https://example.com/ 9363 \N 433898 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.7614560293532 0 \N \N f 0 \N 0 243005682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433927 2024-02-21 16:27:29.286 2024-02-21 16:37:30.491 \N Behavior safe concern street crime. Newspaper preside https://example.com/ 8459 432619 432619.433927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0188655796258 0 \N \N f 0 \N 2 213352052 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 439587 2024-02-26 16:39:08.101 2024-02-26 16:49:09.72 \N Never whose degree. Investment easy region our recent try. Req https://example.com/ 2639 439585 439585.439587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31034365382508 0 \N \N f 0 \N 3 78750638 0 f f \N \N \N \N 439585 \N 0 0 \N \N f \N 442253 2024-02-28 15:56:44.248 2024-02-28 16:06:46.718 \N Future next exist girl prevent. Another song news science pra https://example.com/ 19809 442136 442084.442136.442253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1538061026581 0 \N \N f 0 \N 0 111443114 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 439604 2024-02-26 16:51:32.172 2024-02-26 17:01:33.675 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Wor https://example.com/ 6515 439390 439390.439604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9505550928113 0 \N \N f 0 \N 0 75437280 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 441514 2024-02-28 07:06:27.079 2024-02-29 06:01:15.242 Reach matter agency population. Capit Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry langua https://example.com/ 2156 \N 441514 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 15.3043507136325 0 \N \N f 0 \N 34 135949308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439574 2024-02-26 16:27:24.636 2024-03-01 10:14:26.748 Leader partner am Travel never area. https://example.com/ 21491 \N 439574 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2868198318416 0 \N \N f 0 \N 0 144795393 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433924 2024-02-21 16:25:47.037 2024-02-21 16:35:48.341 Provide red song family quickly. Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the. https://example.com/ 17710 \N 433924 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.1829202404422 0 \N \N f 0 \N 2 135199235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434060 2024-02-21 17:42:08.404 2024-02-21 17:52:10.424 For share something effect science conference amo Act lay son https://example.com/ 18314 \N 434060 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.9181923784097 0 \N \N f 0 \N 0 49353805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439568 2024-02-26 16:24:06.284 2024-02-26 16:34:07.362 \N Including lawyer baby ok movie never happy. Civil pr https://example.com/ 16830 439560 439504.439509.439543.439560.439568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6992975907509 0 \N \N f 0 \N 0 1440550 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 434007 2024-02-21 17:14:31.517 2024-02-21 17:24:32.905 \N South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus ex https://example.com/ 5308 434001 433886.434001.434007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.392156742058 0 \N \N f 0 \N 0 53292688 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 443100 2024-02-29 06:03:29.78 2024-02-29 06:13:31.364 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary pla https://example.com/ 16230 443099 443099.443100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6129952283828 0 \N \N f 0 \N 4 93764863 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 434058 2024-02-21 17:41:06.578 2024-02-21 17:51:07.858 \N System lose thought. Him me https://example.com/ 17682 433039 432344.432952.432984.433010.433039.434058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.5170997040164 0 \N \N f 0 \N 0 194021237 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 443104 2024-02-29 06:12:12.101 2024-02-29 06:22:13.516 \N We teacher join same push onto. Gas character each when condition. One our ex https://example.com/ 15160 442842 441247.441351.442842.443104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01273352411293 0 \N \N f 0 \N 0 233603109 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 434055 2024-02-21 17:40:44.057 2024-02-21 17:50:45.309 \N Door wrong under assume get https://example.com/ 12261 433358 432344.432952.432984.433010.433358.434055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.62218706507702 0 \N \N f 0 \N 0 144311001 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439261 2024-02-26 13:10:24.695 2024-02-26 13:20:26.081 \N Program want yeah color. Decade your peace catc https://example.com/ 19156 439139 439139.439261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7335152042062 0 \N \N f 0 \N 0 189325184 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434078 2024-02-21 17:50:28.783 2024-02-21 18:00:30.58 \N World kind half pass financial job front. It https://example.com/ 794 433403 433403.434078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9645535470189 0 \N \N f 0 \N 1 82353601 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 437909 2024-02-25 03:05:26.309 2024-02-25 03:15:27.583 Position see least suddenly just order specific. Center build alone nig White seven property least father loca https://example.com/ 763 \N 437909 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.7247521104981 0 \N \N f 0 \N 0 140432403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439595 2024-02-26 16:42:14.003 2024-02-26 16:52:16.624 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement https://example.com/ 14074 439362 439362.439595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1838244019336 0 \N \N f 0 \N 0 161300350 0 f f \N \N \N \N 439362 \N 0 0 \N \N f \N 434039 2024-02-21 17:29:02.965 2024-02-21 17:39:03.98 \N By fight several talk. Minute probably fis https://example.com/ 7979 433901 433833.433901.434039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9976887294188 0 \N \N f 0 \N 2 19741410 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439540 2024-02-26 16:02:26.626 2024-02-26 16:12:27.626 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowl https://example.com/ 5825 439509 439504.439509.439540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3535489678466 0 \N \N f 0 \N 4 43398145 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 439333 2024-02-26 13:51:53.309 2024-02-26 14:01:54.301 \N South both increase democratic economic. Seem measure yes couple pla https://example.com/ 18539 439139 439139.439333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.116875192297 0 \N \N f 0 \N 0 25404522 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434062 2024-02-21 17:43:09.937 2024-02-21 17:53:11.385 Per billion school mind. Success hard Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark. https://example.com/ 14905 \N 434062 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 1.59146581793031 0 \N \N f 0 \N 3 219188852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434034 2024-02-21 17:28:10.855 2024-02-21 17:38:12.354 \N Prevent machine source white and. Fact together father find appear point https://example.com/ 7986 433833 433833.434034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1795256923319 0 \N \N f 0 \N 0 239845072 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439569 2024-02-26 16:24:51.826 2024-02-26 16:34:54.423 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window dr https://example.com/ 19502 439515 439515.439569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6109709487823 0 \N \N f 0 \N 0 21859919 0 f f \N \N \N \N 439515 \N 0 0 \N \N f \N 434057 2024-02-21 17:41:04.271 2024-02-21 17:51:04.851 \N Smile debate least f https://example.com/ 16178 434020 433828.433999.434020.434057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.569471169172 0 \N \N f 0 \N 4 76440410 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439596 2024-02-26 16:43:38.245 2024-02-26 16:53:39.986 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nSomeone network true easy store. Take https://example.com/ 6164 429724 429724.439596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.96243239325607 0 \N \N f 0 \N 1 238000455 0 f f \N \N \N \N 429724 \N 0 0 \N \N f \N 434043 2024-02-21 17:30:41.535 2024-02-21 17:40:43.038 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nRepublican begin audience guy get expect table. Professor certain central guy above toward t https://example.com/ 19938 434004 434004.434043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.787974474131694 0 \N \N f 0 \N 1 202327235 0 f f \N \N \N \N 434004 \N 0 0 \N \N f \N 439505 2024-02-26 15:45:15.235 2024-02-26 15:55:18.437 \N Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nMajority next authority recognize claim role. Million him positi https://example.com/ 21437 439298 439298.439505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7756286593768 0 \N \N f 0 \N 1 178811197 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 434102 2024-02-21 18:01:04.057 2024-02-21 18:11:05.77 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. https://example.com/ 1814 433403 433403.434102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5261220124635 0 \N \N f 0 \N 0 40720371 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 434064 2024-02-21 17:43:15.901 2024-02-21 17:53:17.031 \N Site product one fact loss. Site yeah position student news. Skin particular t https://example.com/ 9982 434037 433828.434037.434064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55797752409465 0 \N \N f 0 \N 0 199101936 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439583 2024-02-26 16:35:25.629 2024-02-26 16:45:27.565 \N Trade gas word. Play https://example.com/ 20581 439505 439298.439505.439583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.703705571882 0 \N \N f 0 \N 0 223849292 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 438840 2024-02-26 03:10:33.025 2024-02-26 03:20:34.806 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert ind https://example.com/ 4250 438774 438649.438731.438749.438774.438840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09216972186755 0 \N \N f 0 \N 2 241223852 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 439640 2024-02-26 17:15:57.192 2024-02-26 17:25:58.734 Special thought day cup hard central. Situation attention nati Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat. https://example.com/ 6700 \N 439640 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.8781333819029 0 \N \N f 0 \N 3 74923184 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434067 2024-02-21 17:44:23.79 2024-02-21 17:54:25.102 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship net https://example.com/ 18460 434057 433828.433999.434020.434057.434067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29315007476808 0 \N \N f 0 \N 2 204487241 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434084 2024-02-21 17:53:29.287 2024-02-21 18:03:30.263 \N Young nothing just. Spring play ok region much. Trial single as agai https://example.com/ 19809 434079 434056.434079.434084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.14828755568544 0 \N \N f 0 \N 0 64125314 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 434068 2024-02-21 17:45:30.508 2024-02-21 17:55:32.151 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial https://example.com/ 12774 429938 429602.429852.429938.434068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.76668069195789 0 \N \N f 0 \N 2 6143391 0 f f \N \N \N \N 429602 \N 0 0 \N \N f \N 434070 2024-02-21 17:46:43.076 2024-02-21 17:56:44.246 \N Affect director https://example.com/ 18518 433886 433886.434070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.89584030684689 0 \N \N f 0 \N 3 34333444 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 439597 2024-02-26 16:46:28.852 2024-02-26 16:56:30.593 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Pr https://example.com/ 913 439298 439298.439597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89621011081823 0 \N \N f 0 \N 0 181046805 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 434087 2024-02-21 17:54:23.978 2024-02-21 18:04:25.373 \N Sing eight human sit. Tv already https://example.com/ 1114 434079 434056.434079.434087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1035960539811 0 \N \N f 0 \N 0 94275555 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 434054 2024-02-21 17:40:38.133 2024-02-21 17:50:39.167 \N Rock source rate fact leave house course. Person support hotel bill https://example.com/ 8004 433943 433943.434054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.758923257828386 0 \N \N f 0 \N 0 137661330 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 434080 2024-02-21 17:52:00.455 2024-02-21 18:02:02.083 \N Agr https://example.com/ 1291 434075 433886.434070.434075.434080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.04943122732 0 \N \N f 0 \N 1 69780918 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 434009 2024-02-21 17:15:18.459 2024-02-21 17:25:19.842 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nProfessor entire i https://example.com/ 18640 433994 433038.433343.433346.433925.433930.433941.433948.433970.433985.433994.434009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.93414176059625 0 \N \N f 0 \N 1 27430009 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 433960 2024-02-21 16:46:41.401 2024-02-21 16:56:42.527 \N Quickly fill science from politics foot. Person availa https://example.com/ 15386 433588 433588.433960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5736602805688 0 \N \N f 0 \N 0 137854222 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434086 2024-02-21 17:54:01.522 2024-02-21 18:04:02.438 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind u https://example.com/ 11898 433403 433403.434086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5044567923982 0 \N \N f 0 \N 0 104979935 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 434052 2024-02-21 17:38:56.833 2024-02-21 17:48:58.298 \N History prepare everyone role everybody son. Meet disc https://example.com/ 632 433951 433796.433951.434052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3059134378347 0 \N \N f 0 \N 0 249332983 0 f f \N \N \N \N 433796 \N 0 0 \N \N f \N 434079 2024-02-21 17:51:01.931 2024-02-21 18:01:03.567 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single https://example.com/ 20099 434056 434056.434079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.02212304777811 0 \N \N f 0 \N 2 167301852 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 437941 2024-02-25 04:23:13.427 2024-02-25 04:33:15.758 \N Total neces https://example.com/ 18114 437595 437595.437941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.94038079859362 0 \N \N f 0 \N 1 124414520 0 f f \N \N \N \N 437595 \N 0 0 \N \N f \N 434066 2024-02-21 17:44:18.746 2024-02-21 17:54:20.685 \N Never new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed https://example.com/ 8284 434043 434004.434043.434066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.546161473085 0 \N \N f 0 \N 0 216719641 0 f f \N \N \N \N 434004 \N 0 0 \N \N f \N 434045 2024-02-21 17:32:42.899 2024-02-21 17:42:44.161 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill e https://example.com/ 4079 433878 433878.434045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0846918806493 0 \N \N f 0 \N 0 126025691 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 433594 2024-02-21 11:04:05.924 2024-02-21 11:14:06.699 Mission alone itself parent they get. Morning a Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need https://example.com/ 7673 \N 433594 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.0052007689703 0 \N \N f 0 \N 14 215671394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434088 2024-02-21 17:54:31.903 2024-02-21 18:04:33.186 \N Measure would expert nation two. Prove at together various style. Garden yard term. Se https://example.com/ 12769 433477 433403.433477.434088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9328534646867 0 \N \N f 0 \N 2 5968855 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439599 2024-02-26 16:47:19.687 2024-02-26 16:57:20.8 \N Republican total impact o https://example.com/ 21532 439390 439390.439599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1660955902424 0 \N \N f 0 \N 1 233333651 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 437825 2024-02-25 01:08:25.671 2024-02-25 01:18:26.743 \N Return agreement happy health option. Someone col https://example.com/ 14267 437785 437654.437785.437825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5518061684339 0 \N \N f 0 \N 1 57246447 0 f f \N \N \N \N 437654 \N 0 0 \N \N f \N 437931 2024-02-25 03:56:40.916 2024-02-25 04:06:42.921 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine reali https://example.com/ 14774 437921 437723.437762.437870.437921.437931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4089032476835 0 \N \N f 0 \N 3 155738640 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 434081 2024-02-21 17:52:08.53 2024-02-21 18:02:10.216 \N Decision budget hit force have. Budget guy hospital former. Involve car pr https://example.com/ 20624 434077 434077.434081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.799576922875 0 \N \N f 0 \N 1 121205537 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 439602 2024-02-26 16:50:21.869 2024-02-26 17:00:22.688 \N It fly over audience when https://example.com/ 6229 439130 439130.439602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.667854558623517 0 \N \N f 0 \N 0 135186957 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 434083 2024-02-21 17:52:51.491 2024-02-21 18:02:52.442 \N Ten answer natur https://example.com/ 12606 434078 433403.434078.434083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9849973294255 0 \N \N f 0 \N 0 66383584 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439474 2024-02-26 15:33:43.472 2024-02-26 16:50:22.561 Others high sea s Race report base re https://example.com/ 20036 \N 439474 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 26.9039262824678 0 \N \N f 0 \N 0 103979057 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434100 2024-02-21 18:00:53.879 2024-02-21 18:10:55.71 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaig https://example.com/ 18154 434096 434096.434100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2036588916141 0 \N \N f 0 \N 0 107436291 0 f f \N \N \N \N 434096 \N 0 0 \N \N f \N 434111 2024-02-21 18:08:19.777 2024-02-21 18:18:21.702 \N Think article evening fro https://example.com/ 17800 434076 429602.429852.429938.434068.434076.434111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.850569001889525 0 \N \N f 0 \N 0 228524726 0 f f \N \N \N \N 429602 \N 0 0 \N \N f \N 434051 2024-02-21 17:38:52.825 2024-02-21 17:48:54.244 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention https://example.com/ 13921 433937 433937.434051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8581000009791 0 \N \N f 0 \N 0 90549709 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 434025 2024-02-21 17:24:31.621 2024-02-21 17:34:32.807 \N Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always https://example.com/ 20973 433943 433943.434025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7857494775352 0 \N \N f 0 \N 0 165692907 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 439598 2024-02-26 16:47:07.405 2024-02-26 16:57:09.342 \N Behav https://example.com/ 16456 439594 439585.439587.439590.439594.439598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.383703067554926 0 \N \N f 0 \N 0 92130114 0 f f \N \N \N \N 439585 \N 0 0 \N \N f \N 439594 2024-02-26 16:42:06.156 2024-02-26 16:52:07.33 \N Light environmental here source blood. Institution evening deep action speech try beat sta https://example.com/ 18076 439590 439585.439587.439590.439594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0668944878992 0 \N \N f 0 \N 1 91288815 0 f f \N \N \N \N 439585 \N 0 0 \N \N f \N 434090 2024-02-21 17:55:24.305 2024-02-21 18:05:25.267 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial s https://example.com/ 1959 434019 433978.434019.434090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7408938438013 0 \N \N f 0 \N 0 217884240 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 435848 2024-02-23 05:17:11.636 2024-02-23 05:27:12.703 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within https://example.com/ 21019 435718 435488.435718.435848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4199610966639 0 \N \N f 0 \N 0 118820616 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 434108 2024-02-21 18:04:27.998 2024-02-21 18:14:29.175 \N Toward position themselves news unit. Manag https://example.com/ 7966 434038 434038.434108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.313996974153 0 \N \N f 0 \N 0 79145931 0 f f \N \N \N \N 434038 \N 0 0 \N \N f \N 434104 2024-02-21 18:01:23.506 2024-02-21 18:11:24.704 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floo https://example.com/ 6687 433816 433816.434104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6644996083948 0 \N \N f 0 \N 0 87989975 0 f f \N \N \N \N 433816 \N 0 0 \N \N f \N 434096 2024-02-21 17:58:58.34 2024-02-21 18:08:59.577 Out quite different term just require. Store thin Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control. https://example.com/ 2056 \N 434096 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.7910888605171 0 \N \N f 0 \N 2 81233662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434056 2024-02-21 17:40:55.787 2024-02-21 17:50:56.838 Can operatio Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candid https://example.com/ 20616 \N 434056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.547345238364016 0 \N \N f 0 \N 7 206467818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439630 2024-02-26 17:10:32.552 2024-02-26 17:20:34.11 \N Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nSing eight human sit. Tv already ent https://example.com/ 16341 439298 439298.439630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4796376717622 0 \N \N f 0 \N 0 137136135 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 434069 2024-02-21 17:45:42.728 2024-02-21 17:55:44.281 \N Program want yeah color https://example.com/ 6310 433931 433721.433931.434069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2181358135876 0 \N \N f 0 \N 0 220568019 0 f f \N \N \N \N 433721 \N 0 0 \N \N f \N 434105 2024-02-21 18:01:58.094 2024-02-21 18:11:59.207 \N Politics or often interview. Chair value threat like https://example.com/ 9200 434081 434077.434081.434105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7794469199394 0 \N \N f 0 \N 0 105621108 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 434103 2024-02-21 18:01:18.588 2024-02-21 18:11:20.679 \N Newspaper as city recognize develop. Poor finally capital rememb https://example.com/ 1316 433777 428573.433777.434103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6785406956448 0 \N \N f 0 \N 0 95491762 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 434038 2024-02-21 17:28:55.837 2024-02-21 17:38:56.905 Lead against area note movem Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV https://example.com/ 10728 \N 434038 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7235225011065 0 \N \N f 0 \N 4 159889161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434106 2024-02-21 18:02:42.5 2024-02-21 18:12:43.883 \N Degree third d https://example.com/ 21194 434009 433038.433343.433346.433925.433930.433941.433948.433970.433985.433994.434009.434106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50700639936854 0 \N \N f 0 \N 0 136514538 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 433930 2024-02-21 16:30:25.541 2024-02-21 16:40:26.728 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nCultural everyone par https://example.com/ 18526 433925 433038.433343.433346.433925.433930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9494452780401 0 \N \N f 0 \N 9 168580203 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 439614 2024-02-26 16:57:24.419 2024-02-26 17:07:26.584 \N Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn det https://example.com/ 15521 439607 439607.439614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0138829813027 0 \N \N f 0 \N 0 13584725 0 f f \N \N \N \N 439607 \N 0 0 \N \N f \N 438866 2024-02-26 03:56:32.765 2024-02-26 04:06:34.11 Writer everyone voice read. Control meet four only president most remember. Ba Become full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nSmil https://example.com/ 6537 \N 438866 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.6260798437978 0 \N \N f 0 \N 0 214427310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439590 2024-02-26 16:39:42.69 2024-02-26 16:49:44.266 \N Return bag discover indicate record tax occ https://example.com/ 16214 439587 439585.439587.439590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3059967821633 0 \N \N f 0 \N 2 67999952 0 f f \N \N \N \N 439585 \N 0 0 \N \N f \N 433997 2024-02-21 17:08:56.493 2024-02-21 17:18:57.37 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent https://example.com/ 11621 433994 433038.433343.433346.433925.433930.433941.433948.433970.433985.433994.433997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43834615000927 0 \N \N f 0 \N 1 23922515 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 439626 2024-02-26 17:05:00.867 2024-02-26 17:15:02.214 \N Their be https://example.com/ 19296 439624 439624.439626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3249870097242 0 \N \N f 0 \N 0 220573036 0 f f \N \N \N \N 439624 \N 0 0 \N \N f \N 439622 2024-02-26 17:01:16.972 2024-02-26 17:11:18.126 \N At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth co https://example.com/ 895 439607 439607.439622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9242187796841 0 \N \N f 0 \N 0 125180555 0 f f \N \N \N \N 439607 \N 0 0 \N \N f \N 433925 2024-02-21 16:26:06.72 2024-02-21 16:36:08.596 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successfu https://example.com/ 4391 433346 433038.433343.433346.433925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8240982081261 0 \N \N f 0 \N 10 75602133 0 f f \N \N \N \N 433038 \N 0 0 \N \N f \N 438718 2024-02-25 22:28:21.876 2024-02-25 22:38:23.34 According shake the attack guy development pressure. Police c By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics fa https://example.com/ 18314 \N 438718 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 23.9798209101678 0 \N \N f 0 \N 6 56228139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434109 2024-02-21 18:06:20.033 2024-02-21 18:16:21.907 \N Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. W https://example.com/ 16956 433403 433403.434109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3942342910602 0 \N \N f 0 \N 0 123919100 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439532 2024-02-26 16:00:04.464 2024-02-26 16:10:05.753 Leave example g \N https://example.com/ 20776 \N 439532 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.9792778386757 0 \N \N f 0 \N 1 77136985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435602 2024-02-22 22:18:41.007 2024-02-22 22:28:42.748 Reality deal sort Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple sur https://example.com/ 18402 \N 435602 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 28.8256318863581 0 \N \N f 0 \N 0 177751103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435890 2024-02-23 06:41:54.547 2024-02-23 06:51:56.21 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount https://example.com/ 7119 435793 330698.330774.434596.435793.435890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5038410076436 0 \N \N f 0 \N 5 209808018 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 432419 2024-02-20 12:29:16.147 2024-02-20 12:39:17.583 Five now source affect police. Various nature lar Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree https://example.com/ 3353 \N 432419 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 20.249677846178 0 \N \N f 0 \N 2 179848652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434071 2024-02-21 17:47:17.857 2024-02-21 17:57:19.246 Mention well why thank d Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard. https://example.com/ 2652 \N 434071 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 7.76178136475703 0 \N \N f 0 \N 1 225914603 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438869 2024-02-26 04:00:04.968 2024-02-26 04:10:06.515 Center stand near long painting left sense. Employee hour position young. Si \N https://example.com/ 20581 \N 438869 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.6370491859762 0 \N \N f 0 \N 1 56615910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430940 2024-02-19 16:33:37.166 2024-02-19 16:43:38.572 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save p https://example.com/ 10549 427762 427762.430940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9335027183196 0 \N \N f 0 \N 1 189054491 0 f f \N \N \N \N 427762 \N 0 0 \N \N f \N 439610 2024-02-26 16:56:34.003 2024-02-26 17:06:35.61 Month explain matter south. Thus car occur bad. Green various method rul Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself. https://example.com/ 8508 \N 439610 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 5.83292484674558 0 \N \N f 0 \N 0 48098775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439609 2024-02-26 16:55:50.938 2024-02-26 17:05:52.207 \N View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over par https://example.com/ 16598 439399 438649.438731.438749.438774.438840.439399.439609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94309943746898 0 \N \N f 0 \N 0 16309063 0 f f \N \N \N \N 438649 \N 0 0 \N \N f \N 439613 2024-02-26 16:57:08.349 2024-02-26 17:07:09.54 \N Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little se https://example.com/ 15326 439390 439390.439613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.50826499918112 0 \N \N f 0 \N 0 106050695 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439615 2024-02-26 16:58:02.305 2024-02-26 17:08:03.718 Their bed hear popular fine guy able. President anything major Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system. https://example.com/ 21451 \N 439615 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.8463861745447 0 \N \N f 0 \N 0 73523482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435176 2024-02-22 16:21:14.912 2024-02-22 16:31:16.774 \N Beyond new strong import https://example.com/ 959 434952 434795.434952.435176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6189517798645 0 \N \N f 0 \N 0 54493455 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 433938 2024-02-21 16:33:48.172 2024-02-21 16:43:49.751 \N After way challenge. Nothing protect ground major structure area same any. Edge some https://example.com/ 17042 433796 433796.433938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0793685401226 0 \N \N f 0 \N 0 226858819 0 f f \N \N \N \N 433796 \N 0 0 \N \N f \N 441351 2024-02-28 01:32:59.852 2024-02-28 01:43:01.273 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term cour https://example.com/ 21060 441247 441247.441351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6392027770124 0 \N \N f 0 \N 2 90384780 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443110 2024-02-29 06:16:27.194 2024-02-29 06:26:28.69 \N Trade guy water between. Whom structur https://example.com/ 680 442897 442632.442897.443110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.67083793679223 0 \N \N f 0 \N 0 200788724 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 434165 2024-02-21 18:40:57.332 2024-02-21 18:50:58.844 \N Floor whi https://example.com/ 1493 434141 434141.434165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8181022827792 0 \N \N f 0 \N 0 71297732 0 f f \N \N \N \N 434141 \N 0 0 \N \N f \N 433688 2024-02-21 12:22:40.119 2024-02-21 12:32:40.747 Real goal cover. Mention leg sport seem. Back certainly now age crime per Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside https://example.com/ 1307 \N 433688 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 1.54631325541057 0 \N \N f 0 \N 2 173009214 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439110 2024-02-26 11:28:46.307 2024-02-26 11:38:48.836 Finish only air provide. Wife can devel Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever. https://example.com/ 4128 \N 439110 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 24.4974999422312 0 \N \N f 0 \N 0 167270207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433447 2024-02-21 07:29:57.489 2024-02-21 07:39:58.731 Such yourself girl realize certainly together th Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter https://example.com/ 16556 \N 433447 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 25.2511889153431 0 \N \N f 0 \N 4 169927950 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442842 2024-02-28 23:14:36.465 2024-02-28 23:24:38.235 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain coupl https://example.com/ 12102 441351 441247.441351.442842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5608118897622 0 \N \N f 0 \N 1 23867942 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 434137 2024-02-21 18:22:37.755 2024-02-21 18:32:39.074 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nRich value involve they almost go https://example.com/ 19158 434077 434077.434137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79398370492412 0 \N \N f 0 \N 3 127712094 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 434162 2024-02-21 18:39:39.609 2024-02-21 18:49:40.676 \N House west amount. Again high already himself answer type. Go b https://example.com/ 686 433123 432920.433123.434162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33067144865679 0 \N \N f 0 \N 0 41467356 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 439633 2024-02-26 17:11:52.696 2024-02-26 17:21:54.151 \N Never whose degree. Investment easy region our recent try. Requir https://example.com/ 2232 439390 439390.439633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.895513443467 0 \N \N f 0 \N 2 128352413 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 438966 2024-02-26 08:00:05.128 2024-02-26 08:10:06.211 Thousand billion get \N https://example.com/ 21136 \N 438966 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.1032621201509 0 \N \N f 0 \N 1 190583147 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435439 2024-02-22 19:30:57.46 2024-02-22 19:40:58.814 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might bab https://example.com/ 21379 435410 435261.435410.435439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6237879713736 0 \N \N f 0 \N 0 98037242 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 434089 2024-02-21 17:54:51.053 2024-02-21 18:04:52.444 \N Southern wear age then chair. Sign young end Republican box qualit https://example.com/ 21493 434080 433886.434070.434075.434080.434089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0396359528518 0 \N \N f 0 \N 0 173482156 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 434110 2024-02-21 18:06:20.168 2024-02-21 18:16:21.908 \N Many soldier role. Far buy able i https://example.com/ 2098 434056 434056.434110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9021420953183 0 \N \N f 0 \N 0 207776365 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 435959 2024-02-23 08:59:07.857 2024-02-23 09:09:09.594 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nBusiness food practice look would full across. Official buy thou https://example.com/ 20036 435488 435488.435959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82957093225227 0 \N \N f 0 \N 0 217308543 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 439632 2024-02-26 17:11:49.774 2024-02-26 17:21:51.131 \N Go effect t https://example.com/ 17535 439479 439479.439632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4411269330274 0 \N \N f 0 \N 3 70725803 0 f f \N \N \N \N 439479 \N 0 0 \N \N f \N 439372 2024-02-26 14:21:55.199 2024-02-26 14:31:56.874 Wear role agency. Enter back require mission piece imp Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Mee https://example.com/ 12721 \N 439372 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 16.5902341086814 0 \N \N f 0 \N 0 174474432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434112 2024-02-21 18:09:12.33 2024-02-21 18:19:13.527 \N Job stage use material manage. Perhaps nothing project ani https://example.com/ 717 434015 433588.433646.433663.434015.434112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6031137448455 0 \N \N f 0 \N 0 244185540 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439634 2024-02-26 17:11:54.151 2024-02-26 17:21:55.637 \N Surface tree knowledge mean. Trade drop hope least. https://example.com/ 636 439628 439628.439634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1258396905288 0 \N \N f 0 \N 0 88579919 0 f f \N \N \N \N 439628 \N 0 0 \N \N f \N 439617 2024-02-26 16:59:01.225 2024-02-26 17:09:02.568 Big money in south wide support. Meet radio walk grow lay no Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small. https://example.com/ 1552 \N 439617 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.6635181942347 0 \N \N f 0 \N 2 173405859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439621 2024-02-26 17:00:05.511 2024-02-26 17:10:07.804 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capit https://example.com/ 19905 439619 439619.439621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5898197631934 0 \N \N f 0 \N 0 243908451 0 f f \N \N \N \N 439619 \N 0 0 \N \N f \N 434093 2024-02-21 17:56:28.732 2024-02-21 18:06:30.452 Past hospital she war. Firm spring game seem. Recently night Company kid protect determine adult. Increase https://example.com/ 1320 \N 434093 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 19.8809037568322 0 \N \N f 0 \N 0 180411928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439627 2024-02-26 17:07:19.406 2024-02-26 17:17:21.129 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture https://example.com/ 20110 439589 439100.439384.439454.439483.439524.439589.439627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5855196899002 0 \N \N f 0 \N 1 244539183 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 438781 2024-02-26 00:38:13.053 2024-02-26 00:48:14.048 Plant development someone include maybe. Address ret Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should tr https://example.com/ 20788 \N 438781 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.3475116208433 0 \N \N f 0 \N 0 221709048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434076 2024-02-21 17:49:36.917 2024-02-21 17:59:38.547 \N Them reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market https://example.com/ 5779 434068 429602.429852.429938.434068.434076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.818870760291 0 \N \N f 0 \N 1 184823382 0 f f \N \N \N \N 429602 \N 0 0 \N \N f \N 434130 2024-02-21 18:19:08.029 2024-02-21 18:29:09.45 Consumer point treat ta Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick al https://example.com/ 19284 \N 434130 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 29.6657645483108 0 \N \N f 0 \N 0 83350080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439624 2024-02-26 17:03:00.041 2024-02-26 17:13:02.038 Industry great onto tri Reflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water i https://example.com/ 10934 \N 439624 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.74676765775577 0 \N \N f 0 \N 5 180290303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434443 2024-02-22 00:36:53.37 2024-02-22 00:46:54.596 \N Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality https://example.com/ 1307 434101 433403.433477.434088.434101.434443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.68423598971496 0 \N \N f 0 \N 0 18466874 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439601 2024-02-26 16:50:11.845 2024-02-26 17:00:13.467 Still power agent hospital. Evening style true person east Republican. Re Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only https://example.com/ 20058 \N 439601 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 29.054807149801 0 \N \N f 0 \N 1 159975233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434119 2024-02-21 18:12:58.52 2024-02-21 18:22:59.629 \N Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask to https://example.com/ 11862 433713 433713.434119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99439260389993 0 \N \N f 0 \N 0 159268588 0 f f \N \N \N \N 433713 \N 0 0 \N \N f \N 435699 2024-02-23 00:24:48.333 2024-02-23 00:34:49.415 \N Their bed hear popular fine guy able. President anything majority https://example.com/ 1433 435377 435217.435377.435699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4580776731665 0 \N \N f 0 \N 0 228462525 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 434127 2024-02-21 18:16:10.934 2024-02-21 18:26:12.469 \N Stuff this how behind https://example.com/ 17984 433844 433844.434127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.8431321733059 0 \N \N f 0 \N 1 1996441 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434101 2024-02-21 18:00:56.412 2024-02-21 18:10:57.763 \N Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear eco https://example.com/ 1738 434088 433403.433477.434088.434101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53784633983253 0 \N \N f 0 \N 1 183227403 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 439641 2024-02-26 17:16:01.416 2024-02-26 17:26:02.766 \N Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none https://example.com/ 14990 439082 439082.439641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1021175933772 0 \N \N f 0 \N 0 210340592 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439629 2024-02-26 17:09:16.472 2024-02-26 17:19:17.794 \N Take discuss nature then break spring student. Fi https://example.com/ 14651 439603 439263.439603.439629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6724346830879 0 \N \N f 0 \N 1 54331194 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 434120 2024-02-21 18:14:07.56 2024-02-21 18:24:08.693 \N World https://example.com/ 2640 434056 434056.434120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6605251302771 0 \N \N f 0 \N 0 189172073 0 f f \N \N \N \N 434056 \N 0 0 \N \N f \N 434074 2024-02-21 17:48:32.973 2024-02-21 17:58:34.347 \N Occur powe https://example.com/ 1454 434048 433833.433901.434039.434048.434074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.940717254464545 0 \N \N f 0 \N 0 119896136 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 435264 2024-02-22 17:19:38.559 2024-02-22 17:29:39.739 \N South both increase democratic economic. Seem measure yes couple plan season. War not https://example.com/ 21180 435261 435261.435264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3179545417483 0 \N \N f 0 \N 1 134651840 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 434132 2024-02-21 18:20:03.101 2024-02-21 18:30:04.809 \N Billion very news personal develop career rate. Hair there but green list watch. Land lay da https://example.com/ 21469 434098 433828.434098.434132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.791356611609828 0 \N \N f 0 \N 1 131870844 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439631 2024-02-26 17:11:11.048 2024-02-26 17:21:12.653 \N Administration effort live any between part https://example.com/ 11750 439629 439263.439603.439629.439631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1209235413657 0 \N \N f 0 \N 0 106996991 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 439589 2024-02-26 16:39:24.948 2024-02-26 16:49:27.965 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final her https://example.com/ 14791 439524 439100.439384.439454.439483.439524.439589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25348408251324 0 \N \N f 0 \N 2 108835214 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 435956 2024-02-23 08:52:25.562 2024-02-23 09:02:26.735 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality https://example.com/ 20646 435912 435912.435956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28407525008858 0 \N \N f 0 \N 0 126511624 0 f f \N \N \N \N 435912 \N 0 0 \N \N f \N 439580 2024-02-26 16:35:08.602 2024-02-26 16:45:09.818 \N Second point director operation. Soon face realize born head far half above. Threat seven adult red benef https://example.com/ 17494 439277 439277.439580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.28937001742209 0 \N \N f 0 \N 0 22987787 0 f f \N \N \N \N 439277 \N 0 0 \N \N f \N 439651 2024-02-26 17:18:39.448 2024-02-26 17:28:40.396 \N Think article evening from r https://example.com/ 11298 439562 439562.439651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.66246056384487 0 \N \N f 0 \N 0 17916393 0 f f \N \N \N \N 439562 \N 0 0 \N \N f \N 434126 2024-02-21 18:16:06.853 2024-02-21 18:26:08.461 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many r https://example.com/ 2718 434116 434116.434126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6672604001334 0 \N \N f 0 \N 1 224846673 0 f f \N \N \N \N 434116 \N 0 0 \N \N f \N 439637 2024-02-26 17:12:52.825 2024-02-26 17:22:53.79 Statement rec Occur power prevent become issue forward feel. Inter https://example.com/ 11760 \N 439637 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 20.8286169337152 0 \N \N f 0 \N 0 146906021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434124 2024-02-21 18:15:25.121 2024-02-21 18:25:26.665 Nature couple north b Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nBudget agent center morning s https://example.com/ 20258 \N 434124 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.21907451220078 0 \N \N f 0 \N 3 181718613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434123 2024-02-21 18:15:12.626 2024-02-21 18:25:13.551 Career six also speak of difference tend. Heavy may green foot tonigh Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student. https://example.com/ 5578 \N 434123 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.8106980881174 0 \N \N f 0 \N 1 21458983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439649 2024-02-26 17:17:37.311 2024-02-26 17:27:38.544 \N Maybe remain help everybody beat subject suffer heavy. https://example.com/ 16956 439591 439591.439649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3107835173726 0 \N \N f 0 \N 0 87814477 0 f f \N \N \N \N 439591 \N 0 0 \N \N f \N 439645 2024-02-26 17:16:53.31 2024-02-26 17:26:54.558 \N Class population stage though page https://example.com/ 688 439617 439617.439645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54021852075143 0 \N \N f 0 \N 1 182759971 0 f f \N \N \N \N 439617 \N 0 0 \N \N f \N 435687 2024-02-23 00:11:27.955 2024-02-23 00:21:29.446 \N Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nRecent yourself price region detail leader. Positive whole brother news. Gen https://example.com/ 7587 435639 435639.435687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7315265398967 0 \N \N f 0 \N 0 176930147 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 439676 2024-02-26 17:35:25.217 2024-02-26 17:45:27.549 \N Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. https://example.com/ 7395 436741 436491.436741.439676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.22321537107 0 \N \N f 0 \N 0 127739534 0 f f \N \N \N \N 436491 \N 0 0 \N \N f \N 439650 2024-02-26 17:17:40.321 2024-02-26 17:27:41.767 \N North beat realize. School remain number space star media. Month type cold. Break de https://example.com/ 10493 439632 439479.439632.439650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8356941977727 0 \N \N f 0 \N 2 165265450 0 f f \N \N \N \N 439479 \N 0 0 \N \N f \N 439646 2024-02-26 17:16:59.001 2024-02-26 17:27:00.794 \N Power this as. Time Republica https://example.com/ 1617 439628 439628.439646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1427437202264 0 \N \N f 0 \N 0 243864795 0 f f \N \N \N \N 439628 \N 0 0 \N \N f \N 435364 2024-02-22 18:27:59.605 2024-02-22 18:38:01.562 \N Decade activity affect another hear action. Well good power. Mr https://example.com/ 16556 435355 435314.435355.435364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5023600506935 0 \N \N f 0 \N 1 241458802 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 434151 2024-02-21 18:28:36.674 2024-02-21 18:38:37.717 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. U https://example.com/ 11423 433830 433830.434151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9319463777468 0 \N \N f 0 \N 0 189024467 0 f f \N \N \N \N 433830 \N 0 0 \N \N f \N 434428 2024-02-22 00:06:44.837 2024-02-22 00:16:45.965 \N Popular entire medical office can. Th https://example.com/ 20990 433978 433978.434428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7637913063182 0 \N \N f 0 \N 1 170452710 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434153 2024-02-21 18:31:57.049 2024-02-21 18:41:58.9 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nFly include one church TV air. Democrat institution develop behavior. Data get https://example.com/ 19398 434143 434077.434137.434143.434153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.37374903113889 0 \N \N f 0 \N 1 26990295 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 435975 2024-02-23 09:41:48.35 2024-02-23 09:51:49.409 \N Direction poor if howeve https://example.com/ 9421 435972 435944.435950.435972.435975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1952549059144 0 \N \N f 0 \N 1 157951635 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 435970 2024-02-23 09:31:10.629 2024-02-23 09:41:11.805 We teacher join same push onto. Gas character each when condition. One our expla Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class. https://example.com/ 17046 \N 435970 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.1439667150604 0 \N \N f 0 \N 1 29122198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439618 2024-02-26 16:59:13.567 2024-02-26 17:09:15.874 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store pa https://example.com/ 21088 439286 439286.439618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.75995687610403 0 \N \N f 0 \N 1 200221035 0 f f \N \N \N \N 439286 \N 0 0 \N \N f \N 439647 2024-02-26 17:17:02.046 2024-02-26 17:27:03.815 \N Republica https://example.com/ 17592 439393 439390.439393.439647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.64208343370169 0 \N \N f 0 \N 0 70713517 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434143 2024-02-21 18:24:56.1 2024-02-21 18:34:58.668 \N Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditio https://example.com/ 21139 434137 434077.434137.434143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1682980014461 0 \N \N f 0 \N 2 115724927 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 433738 2024-02-21 13:12:24.841 2024-02-21 13:22:25.954 Agency party build and eve Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner boo https://example.com/ 16942 \N 433738 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 21.5995754651011 0 \N \N f 0 \N 1 4291043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435052 2024-02-22 14:46:48.878 2024-02-22 14:56:49.999 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above https://example.com/ 2123 435042 434791.434978.435042.435052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2556780817807 0 \N \N f 0 \N 0 114851398 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435982 2024-02-23 09:53:12.901 2024-02-23 10:03:15.052 Generation disc Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction. https://example.com/ 3461 \N 435982 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 1.88242425567456 0 \N \N f 0 \N 0 232201724 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435983 2024-02-23 09:55:27.061 2024-02-23 10:05:28.267 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow https://example.com/ 4415 435980 434795.435965.435978.435980.435983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.898383577809 0 \N \N f 0 \N 7 142205171 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434135 2024-02-21 18:22:04.78 2024-02-21 18:32:06.484 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental duri https://example.com/ 20613 403677 236142.403677.434135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9798732718078 0 \N \N f 0 \N 0 137250251 0 f f \N \N \N \N 236142 \N 0 0 \N \N f \N 434133 2024-02-21 18:20:51.709 2024-02-21 18:30:52.942 \N Would week boy close different again part. Stop school continue environment need ch https://example.com/ 16357 434125 434077.434125.434133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8578236624211 0 \N \N f 0 \N 0 163975102 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 432811 2024-02-20 17:57:05.882 2024-02-20 18:07:07.377 Matter training experien Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off pro https://example.com/ 21047 \N 432811 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.02767753306857 0 \N \N f 0 \N 21 33196409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435873 2024-02-23 05:59:47.359 2024-02-23 06:09:49.111 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. https://example.com/ 16354 435805 435805.435873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.38342162505116 0 \N \N f 0 \N 0 194707480 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 434890 2024-02-22 12:26:15.884 2024-02-22 12:36:17.336 \N Everybody laugh key left specific https://example.com/ 669 434807 434807.434890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9126780492419 0 \N \N f 0 \N 0 64917937 0 f f \N \N \N \N 434807 \N 0 0 \N \N f \N 434136 2024-02-21 18:22:26.554 2024-02-21 18:32:27.871 Some nation represent who. Sometimes ability defense Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air. https://example.com/ 18819 \N 434136 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 15.0901843868494 0 \N \N f 0 \N 0 201835953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441071 2024-02-27 20:42:31.547 2024-02-27 20:52:32.426 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so sce https://example.com/ 11942 440495 440495.441071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.91392932714402 0 \N \N f 0 \N 1 207207301 0 f f \N \N \N \N 440495 \N 0 0 \N \N f \N 434159 2024-02-21 18:36:03.001 2024-02-21 18:46:04.621 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nRecent yourself price region detail leader. Positive https://example.com/ 9364 434077 434077.434159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02090346370897 0 \N \N f 0 \N 0 174617846 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 430864 2024-02-19 15:32:56.473 2024-02-19 15:42:58.143 Same liste If lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble. https://example.com/ 20745 \N 430864 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 1.20767282900594 0 \N \N f 0 \N 0 221303639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435065 2024-02-22 14:54:32.004 2024-02-22 15:04:34.104 Kitchen already store investment near. Vot Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant. https://example.com/ 2709 \N 435065 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.5558661476672 0 \N \N f 0 \N 2 226177293 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441675 2024-02-28 10:47:43.8 2024-02-28 10:57:44.852 \N Deal could skin some. Through street fact almost. Move much ac https://example.com/ 16193 439041 438936.438995.439041.441675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6649768624383 0 \N \N f 0 \N 5 136741680 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 435185 2024-02-22 16:25:52.69 2024-02-22 16:35:54.846 \N End and certainly language lawyer h https://example.com/ 6058 260961 260961.435185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.2629267728316 0 \N \N f 0 \N 0 42963589 0 f f \N \N \N \N 260961 \N 0 0 \N \N f \N 435187 2024-02-22 16:27:49.739 2024-02-22 16:37:51.033 \N Down his majority risk wor https://example.com/ 13553 435154 435154.435187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8422077206117 0 \N \N f 0 \N 2 144826284 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 439591 2024-02-26 16:40:21.54 2024-02-26 16:50:23.06 These world usually ground grow worker. Maj Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nReflect fill team movie draw red group. Congress without main. https://example.com/ 19153 \N 439591 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.4710218643996 0 \N \N f 0 \N 1 72019747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439652 2024-02-26 17:19:25.367 2024-02-26 17:29:26.317 \N Think cover scientist financial attention he word. World laugh p https://example.com/ 18680 439566 439566.439652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8608594703704 0 \N \N f 0 \N 0 120250336 0 f f \N \N \N \N 439566 \N 0 0 \N \N f \N 435963 2024-02-23 09:11:03.946 2024-02-23 09:21:05.222 \N Necess https://example.com/ 19735 435962 435922.435962.435963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8349830552216 0 \N \N f 0 \N 0 181140012 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 435199 2024-02-22 16:34:32.35 2024-02-22 16:44:33.414 Girl fire bring middle popular. And suffer its throughout chance. Onl Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close. https://example.com/ 997 \N 435199 \N \N \N \N \N \N \N \N science \N ACTIVE \N 20.6540695069457 0 \N \N f 0 \N 0 105627381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434991 2024-02-22 13:58:01.781 2024-02-22 14:08:03.028 Edge give like skill yard. Government run throug Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edg https://example.com/ 19021 \N 434991 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.15036481248939 0 \N \N f 0 \N 2 45146519 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435393 2024-02-22 18:54:36.66 2024-02-22 19:04:38.305 \N Artist fly billion s https://example.com/ 9551 435364 435314.435355.435364.435393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5205883736133 0 \N \N f 0 \N 0 133046595 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435197 2024-02-22 16:32:05.999 2024-02-22 16:42:07.553 \N May building suffer accept thousa https://example.com/ 18877 434661 433833.434661.435197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5668792428681 0 \N \N f 0 \N 0 145506512 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434997 2024-02-22 14:03:54.88 2024-02-22 14:13:56.25 Mention well why thank develop. Alone hotel ground. Specif Enough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nSpecial identify senior differ https://example.com/ 21365 \N 434997 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.6703074824676 0 \N \N f 0 \N 1 185561649 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435355 2024-02-22 18:17:06.74 2024-02-22 18:27:08.074 \N Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nTree political season that feel arm. Serve seek turn six board. Prot https://example.com/ 1800 435314 435314.435355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.5364864843539 0 \N \N f 0 \N 6 197939481 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 434743 2024-02-22 10:04:40.066 2024-02-22 10:14:41.348 \N Foot not wonder myself eat st https://example.com/ 21540 434697 434697.434743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6166547429502 0 \N \N f 0 \N 1 28768697 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N 439388 2024-02-26 14:37:10.145 2024-02-26 14:47:11.293 \N Full both sound century close car https://example.com/ 886 439358 439358.439388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.10929309695432 0 \N \N f 0 \N 1 162454019 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 434077 2024-02-21 17:49:55.46 2024-02-21 17:59:56.763 Career player thing second down win. Feel tru Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nThat field beautiful American when. Simply quality which me https://example.com/ 18601 \N 434077 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 7.14685727439235 0 \N \N f 0 \N 13 102630728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434150 2024-02-21 18:27:41.222 2024-02-21 18:37:42.438 \N Popular rest certainly. Citizen though light product. Beyond r https://example.com/ 9036 434145 434062.434122.434145.434150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4573626187181 0 \N \N f 0 \N 0 10035272 0 f f \N \N \N \N 434062 \N 0 0 \N \N f \N 434118 2024-02-21 18:10:25.448 2024-02-21 18:20:26.46 \N Reality four attention. Whose each design pull that wal https://example.com/ 17171 434077 434077.434118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.62852584196181 0 \N \N f 0 \N 0 20154773 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 433713 2024-02-21 12:50:39.278 2024-02-21 13:00:41.575 Involve morning someone them Congress keep rule. Order price condition get Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal https://example.com/ 768 \N 433713 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 6.10614986412493 0 \N \N f 0 \N 3 55939316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434145 2024-02-21 18:25:29.684 2024-02-21 18:35:30.731 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. Ab https://example.com/ 4167 434122 434062.434122.434145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8770846170181 0 \N \N f 0 \N 1 176582712 0 f f \N \N \N \N 434062 \N 0 0 \N \N f \N 435666 2024-02-22 23:37:37.665 2024-02-22 23:47:38.886 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nWord around effect game light claim home. Point face someone exist own behavi https://example.com/ 4076 435120 435120.435666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5075462458162 0 \N \N f 0 \N 0 80746383 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 434158 2024-02-21 18:35:26.658 2024-02-21 18:45:27.81 \N Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scen https://example.com/ 20586 433943 433943.434158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7922953376273 0 \N \N f 0 \N 0 84662334 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 434122 2024-02-21 18:15:03.556 2024-02-21 18:25:04.481 \N Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nFear size with rich skin decade community. Front either election m https://example.com/ 20683 434062 434062.434122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9288158172536 0 \N \N f 0 \N 2 105329465 0 f f \N \N \N \N 434062 \N 0 0 \N \N f \N 441128 2024-02-27 21:36:34.397 2024-02-27 21:46:35.596 \N Bag couple hot buy yourself serve bit. For eve https://example.com/ 15146 440898 440898.441128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.832921012488 0 \N \N f 0 \N 0 77803072 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 434125 2024-02-21 18:15:38.021 2024-02-21 18:25:39.962 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nThese world us https://example.com/ 16970 434077 434077.434125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.142165840434956 0 \N \N f 0 \N 1 140391351 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 434142 2024-02-21 18:24:21.876 2024-02-21 18:34:23.947 \N Nature wrong me https://example.com/ 876 434013 434013.434142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.05551953101166 0 \N \N f 0 \N 0 58132914 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 439656 2024-02-26 17:22:02.291 2024-02-26 17:32:05.115 \N End and certainly language lawyer her sor https://example.com/ 17944 439644 439644.439656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.50288223131422 0 \N \N f 0 \N 2 126287954 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 434147 2024-02-21 18:25:50.228 2024-02-21 18:35:51.757 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance nex https://example.com/ 12245 434099 433828.434099.434147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2501171564063 0 \N \N f 0 \N 0 81474743 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434128 2024-02-21 18:16:38.695 2024-02-21 18:26:40.895 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nModel fall part. Teach why have read tonight technology esta https://example.com/ 21609 434123 434123.434128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42138763332053 0 \N \N f 0 \N 0 33244285 0 f f \N \N \N \N 434123 \N 0 0 \N \N f \N 439653 2024-02-26 17:19:42.211 2024-02-26 17:29:45.196 \N Surface field him https://example.com/ 4989 439601 439601.439653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.138057479157645 0 \N \N f 0 \N 0 16527071 0 f f \N \N \N \N 439601 \N 0 0 \N \N f \N 435965 2024-02-23 09:18:42.411 2024-02-23 09:28:43.719 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout l https://example.com/ 18704 434795 434795.435965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9952588605109 0 \N \N f 0 \N 10 127710703 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434455 2024-02-22 00:57:13.909 2024-02-22 01:07:16.073 \N Past hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nDe https://example.com/ 5427 434451 434278.434298.434310.434411.434435.434439.434442.434444.434451.434455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.879979873649 0 \N \N f 0 \N 1 191286539 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433951 2024-02-21 16:42:33.083 2024-02-21 16:52:34.887 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join https://example.com/ 19044 433796 433796.433951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0353639779192 0 \N \N f 0 \N 1 119633233 0 f f \N \N \N \N 433796 \N 0 0 \N \N f \N 434155 2024-02-21 18:34:37.599 2024-02-21 18:44:38.592 Drug life detail letter major himself so. Poli Stuff this how behind total his left. Know school produce together light. Blood he https://example.com/ 19243 \N 434155 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.2628123947138 0 \N \N f 0 \N 0 15878762 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434157 2024-02-21 18:35:07.322 2024-02-21 18:45:08.536 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautif https://example.com/ 1609 434113 434113.434157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7392710592953 0 \N \N f 0 \N 0 56240445 0 f f \N \N \N \N 434113 \N 0 0 \N \N f \N 433830 2024-02-21 14:43:32.192 2024-02-21 14:53:33.934 Chance near song measure every physical. Quickly white usuall Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nControl century lay already range. Scene easy nice h https://example.com/ 21067 \N 433830 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 2.08046300201421 0 \N \N f 0 \N 1 238846440 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434144 2024-02-21 18:25:18.741 2024-02-21 18:35:20.165 \N Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take drea https://example.com/ 21048 434124 434124.434144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8405923246311 0 \N \N f 0 \N 0 107835221 0 f f \N \N \N \N 434124 \N 0 0 \N \N f \N 439660 2024-02-26 17:25:48.909 2024-02-26 17:35:50.292 \N East fast despite responsibility machine. Listen https://example.com/ 6229 439082 439082.439660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1492291401566 0 \N \N f 0 \N 1 230546127 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439611 2024-02-26 16:56:37.056 2024-02-26 17:06:38.671 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific elect https://example.com/ 1720 438935 437238.437581.438935.439611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4454006094598 0 \N \N f 0 \N 2 125840970 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 434163 2024-02-21 18:39:43.369 2024-02-21 18:49:44.722 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child https://example.com/ 2734 428684 428684.434163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.48031351461069 0 \N \N f 0 \N 0 41209891 0 f f \N \N \N \N 428684 \N 0 0 \N \N f \N 433178 2024-02-20 23:19:17.886 2024-02-20 23:29:19.298 \N Five now source affect police. Various nature large campaign. Able local another billi https://example.com/ 14503 432873 432873.433178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58655354834789 0 \N \N f 0 \N 1 181396268 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439619 2024-02-26 17:00:04.745 2024-02-26 17:10:05.98 South both increase democratic economic. Seem measure yes couple plan season \N https://example.com/ 647 \N 439619 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.6909029353583 0 \N \N f 0 \N 1 233601143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434188 2024-02-21 18:59:53.119 2024-02-21 19:09:55.279 \N Capital https://example.com/ 20924 433821 433805.433821.434188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39404970299704 0 \N \N f 0 \N 1 4939030 0 f f \N \N \N \N 433805 \N 0 0 \N \N f \N 434164 2024-02-21 18:40:10.522 2024-02-21 18:50:11.735 \N Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nJob stage use materia https://example.com/ 20208 434146 433799.434146.434164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5952138647098 0 \N \N f 0 \N 0 189370962 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 434187 2024-02-21 18:59:50.087 2024-02-21 19:09:52.244 \N Very yes customer public music example expert. Fear would much. Necessary lea https://example.com/ 2703 434071 434071.434187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5993049514581 0 \N \N f 0 \N 0 8324340 0 f f \N \N \N \N 434071 \N 0 0 \N \N f \N 439635 2024-02-26 17:12:21.352 2024-02-26 17:22:22.683 \N Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nTry hospital student. Stock floo https://example.com/ 910 439605 439315.439605.439635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4065488935105 0 \N \N f 0 \N 0 203584960 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 439692 2024-02-26 17:50:17.182 2024-02-26 18:00:18.965 \N Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability https://example.com/ 9026 439586 439586.439692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9031380547618 0 \N \N f 0 \N 0 13374984 0 f f \N \N \N \N 439586 \N 0 0 \N \N f \N 434149 2024-02-21 18:27:06.36 2024-02-21 18:37:07.809 \N Through hope mouth scor https://example.com/ 20190 434115 433828.434115.434149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8185568627551 0 \N \N f 0 \N 0 58085980 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439657 2024-02-26 17:22:52.916 2024-02-26 17:32:54.102 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior t https://example.com/ 2232 439639 439639.439657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20399771508185 0 \N \N f 0 \N 0 8970833 0 f f \N \N \N \N 439639 \N 0 0 \N \N f \N 434173 2024-02-21 18:46:03.542 2024-02-21 18:56:05.058 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ag https://example.com/ 4102 434160 434160.434173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.43914374170846 0 \N \N f 0 \N 6 16088206 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 434167 2024-02-21 18:41:42.167 2024-02-21 18:51:43.712 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice https://example.com/ 6327 434096 434096.434167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92978552747695 0 \N \N f 0 \N 0 31237516 0 f f \N \N \N \N 434096 \N 0 0 \N \N f \N 439639 2024-02-26 17:15:32.344 2024-02-26 17:25:33.509 Always line hot record. Hard discuss suddenly Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent mornin https://example.com/ 16154 \N 439639 \N \N \N \N \N \N \N \N health \N ACTIVE \N 5.66631134461002 0 \N \N f 0 \N 6 67905141 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434166 2024-02-21 18:41:01.18 2024-02-21 18:51:02.874 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. https://example.com/ 2832 434153 434077.434137.434143.434153.434166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1675578627031 0 \N \N f 0 \N 0 179966449 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 434185 2024-02-21 18:57:22.964 2024-02-21 19:07:24.87 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body se https://example.com/ 12566 434178 426086.434178.434185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1726541234789 0 \N \N f 0 \N 0 78276942 0 f f \N \N \N \N 426086 \N 0 0 \N \N f \N 434193 2024-02-21 19:03:11.791 2024-02-21 19:13:12.884 \N Least start time do. https://example.com/ 14152 434188 433805.433821.434188.434193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.23977131825004 0 \N \N f 0 \N 0 231058925 0 f f \N \N \N \N 433805 \N 0 0 \N \N f \N 435967 2024-02-23 09:22:34.52 2024-02-23 09:32:35.559 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just i https://example.com/ 19601 435944 435944.435967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.12612976554242 0 \N \N f 0 \N 3 93549433 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 434462 2024-02-22 01:16:04.583 2024-02-22 01:26:05.632 Himself seem along exist population development possible easy. Need within lea Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok. https://example.com/ 19839 \N 434462 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6668160789431 0 \N \N f 0 \N 0 240504940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433914 2024-02-21 16:17:30.198 2024-02-21 16:27:31.525 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair https://example.com/ 10719 433851 433828.433851.433914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6746231422703 0 \N \N f 0 \N 0 246079130 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439684 2024-02-26 17:43:47.621 2024-02-26 17:53:48.658 \N Staff likely color finish at lot ball one. Scie https://example.com/ 15273 439607 439607.439684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2355142057958 0 \N \N f 0 \N 1 160252069 0 f f \N \N \N \N 439607 \N 0 0 \N \N f \N 435994 2024-02-23 10:04:57.208 2024-02-23 10:14:58.364 \N Station mean dinner level well window. Develop w https://example.com/ 897 435805 435805.435994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5394776136975 0 \N \N f 0 \N 0 39628628 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 435991 2024-02-23 10:02:02.912 2024-02-23 10:12:04.705 \N Including lawyer baby ok movie never ha https://example.com/ 690 435989 434795.435965.435978.435980.435983.435984.435989.435991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.03892089411313 0 \N \N f 0 \N 0 178553148 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435162 2024-02-22 16:15:31.163 2024-02-22 16:25:32.478 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nArea series street exist cold refl https://example.com/ 16876 435135 435046.435135.435162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89614715069713 0 \N \N f 0 \N 18 61011060 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 434046 2024-02-21 17:33:55.844 2024-02-21 17:43:57.475 \N At within eye player newspaper https://example.com/ 1208 433995 433828.433942.433995.434046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24923574303585 0 \N \N f 0 \N 0 236092968 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433995 2024-02-21 17:08:13.58 2024-02-21 17:18:15.129 \N Join push remain behavior. Vari https://example.com/ 4292 433942 433828.433942.433995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5260024996925 0 \N \N f 0 \N 2 223735619 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434113 2024-02-21 18:09:24.811 2024-02-21 18:19:27.079 Respond even chair hear each. Wind those attention Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north. https://example.com/ 618 \N 434113 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 0.565854074909033 0 \N \N f 0 \N 1 165618335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438935 2024-02-26 07:22:14.021 2024-02-26 07:32:16.025 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nAffect key her. https://example.com/ 6260 437581 437238.437581.438935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1916229804285 0 \N \N f 0 \N 3 173291715 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 434140 2024-02-21 18:23:18.615 2024-02-21 18:33:19.912 Effect indeed easy never ins Happen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also. https://example.com/ 2285 \N 434140 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 1.1189996759121 0 \N \N f 0 \N 1 177314537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439680 2024-02-26 17:41:08.566 2024-02-26 17:51:11.579 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nMyself measure https://example.com/ 20168 439100 439100.439680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4198399740613 0 \N \N f 0 \N 0 245602272 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 439669 2024-02-26 17:32:52.586 2024-02-26 17:42:53.935 \N Herself then or effect usually treat. Exactly I agree top j https://example.com/ 8416 439545 439390.439545.439669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18599617136204 0 \N \N f 0 \N 0 6864668 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439043 2024-02-26 10:15:30.034 2024-02-26 10:25:31.819 Produce series whom citizen sit. Cr Top however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing exp https://example.com/ 8289 \N 439043 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.1492382491268 0 \N \N f 0 \N 3 170606294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434138 2024-02-21 18:22:58.42 2024-02-21 18:32:59.62 \N Professor entire information week article family fear effort. Model have through https://example.com/ 15100 433986 433986.434138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8573102198349 0 \N \N f 0 \N 1 126655223 0 f f \N \N \N \N 433986 \N 0 0 \N \N f \N 439100 2024-02-26 11:22:05.195 2024-02-26 11:32:06.466 Would week boy close different again part. Stop school continue e Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward. https://example.com/ 1647 \N 439100 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.0446280653467 0 \N \N f 0 \N 11 189330927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439179 2024-02-26 12:36:27.885 2024-02-26 12:46:29.338 \N Understand Mr score until. Debate according western eve https://example.com/ 649 439025 438605.438897.439025.439179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3861726434864 0 \N \N f 0 \N 0 115694925 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 438897 2024-02-26 05:19:11.968 2024-02-26 05:29:13.747 \N Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer https://example.com/ 18618 438605 438605.438897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4055543389233 0 \N \N f 0 \N 2 142274857 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 439666 2024-02-26 17:29:11.426 2024-02-26 17:39:12.624 \N Republican total impact of. https://example.com/ 1488 439624 439624.439666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4179325582316 0 \N \N f 0 \N 0 113308429 0 f f \N \N \N \N 439624 \N 0 0 \N \N f \N 435971 2024-02-23 09:35:17.059 2024-02-23 09:45:18.712 \N Condition lose result detail final w https://example.com/ 20430 435967 435944.435967.435971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.35773194753646 0 \N \N f 0 \N 2 101443674 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436741 2024-02-23 23:43:42.902 2024-02-23 23:53:44.619 \N Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open th https://example.com/ 17522 436491 436491.436741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.43009147389985 0 \N \N f 0 \N 1 7546932 0 f f \N \N \N \N 436491 \N 0 0 \N \N f \N 439682 2024-02-26 17:42:54.311 2024-02-26 17:52:55.752 \N Material focus experience picture. Future still full blood suggest https://example.com/ 21079 439390 439390.439682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3575643912544 0 \N \N f 0 \N 2 38500836 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439675 2024-02-26 17:35:01.419 2024-02-26 17:45:02.963 Report night class. Fight PM that food. Event market g Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under. https://example.com/ 4692 \N 439675 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 29.4155193079884 0 \N \N f 0 \N 0 79876904 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435974 2024-02-23 09:41:21.948 2024-02-23 09:51:23.851 \N Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nInstead believe animal th https://example.com/ 17827 435908 435908.435974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.12438865732599 0 \N \N f 0 \N 3 240328366 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 436783 2024-02-24 00:41:55.308 2024-02-24 00:51:56.582 \N Than level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western w https://example.com/ 19583 434469 434469.436783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79653278263213 0 \N \N f 0 \N 0 98414431 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 434217 2024-02-21 19:20:32.657 2024-02-21 19:30:34.084 \N Increa https://example.com/ 20674 434141 434141.434217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3995310385556 0 \N \N f 0 \N 0 141992170 0 f f \N \N \N \N 434141 \N 0 0 \N \N f \N 439661 2024-02-26 17:26:21.875 2024-02-26 17:36:23.291 \N Individual low nice character home Congress prevent. Wall realize language open https://example.com/ 20990 439422 439422.439661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5442549900279 0 \N \N f 0 \N 1 199182308 0 f f \N \N \N \N 439422 \N 0 0 \N \N f \N 434198 2024-02-21 19:05:20.733 2024-02-21 19:15:22.195 \N Wear role agency. Ente https://example.com/ 17217 434141 434141.434198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4718164858338 0 \N \N f 0 \N 0 164627369 0 f f \N \N \N \N 434141 \N 0 0 \N \N f \N 435984 2024-02-23 09:56:36.577 2024-02-23 10:06:37.348 \N Site product one fact loss. Site yeah position student news. Ski https://example.com/ 7869 435983 434795.435965.435978.435980.435983.435984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9016459816864 0 \N \N f 0 \N 6 28097642 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439683 2024-02-26 17:42:59.767 2024-02-26 17:53:00.801 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Per https://example.com/ 7891 438753 438753.439683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66954991267844 0 \N \N f 0 \N 0 73521962 0 f f \N \N \N \N 438753 \N 0 0 \N \N f \N 434175 2024-02-21 18:51:20.04 2024-02-21 19:01:22.04 \N Say this find pr https://example.com/ 19038 434170 434160.434170.434175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.01924117089081 0 \N \N f 0 \N 0 110519224 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 434176 2024-02-21 18:52:00.896 2024-02-21 19:02:01.467 \N Somebody head others contain moment. Which https://example.com/ 20647 434057 433828.433999.434020.434057.434176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.136804765259 0 \N \N f 0 \N 0 61610539 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434094 2024-02-21 17:57:37.437 2024-02-21 18:07:38.433 \N Them reflect instead color. Public hour pr https://example.com/ 20222 433943 433943.434094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8544319465092 0 \N \N f 0 \N 0 115365889 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 435990 2024-02-23 10:01:25.881 2024-02-23 10:11:28.767 \N Floor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nOil fast organization discussion https://example.com/ 21239 435989 434795.435965.435978.435980.435983.435984.435989.435990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2083945665917 0 \N \N f 0 \N 3 228615469 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435989 2024-02-23 10:00:55.081 2024-02-23 10:10:56.859 \N Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent https://example.com/ 20198 435984 434795.435965.435978.435980.435983.435984.435989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50781769914249 0 \N \N f 0 \N 5 143583020 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434426 2024-02-22 00:02:13.724 2024-02-22 00:12:15.335 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community https://example.com/ 20636 434049 433594.434049.434426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4495435285623 0 \N \N f 0 \N 0 1731354 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 434049 2024-02-21 17:36:59.223 2024-02-21 17:47:00.184 \N Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose https://example.com/ 15703 433594 433594.434049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99844347970976 0 \N \N f 0 \N 2 195306868 0 f f \N \N \N \N 433594 \N 0 0 \N \N f \N 439605 2024-02-26 16:52:28.821 2024-02-26 17:02:30.054 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as l https://example.com/ 1245 439315 439315.439605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7568007366871 0 \N \N f 0 \N 1 165667942 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 443114 2024-02-29 06:26:25.01 2024-02-29 06:36:25.931 \N Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical rem https://example.com/ 21416 442084 442084.443114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4112279020631 0 \N \N f 0 \N 0 12582713 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 439659 2024-02-26 17:24:19.067 2024-02-26 17:34:20.204 \N Their bed he https://example.com/ 10484 439656 439644.439656.439659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8439327055209 0 \N \N f 0 \N 1 159359572 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 434186 2024-02-21 18:57:35.491 2024-02-21 19:07:36.868 \N Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction https://example.com/ 20562 432553 429509.432405.432553.434186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2483367306736 0 \N \N f 0 \N 0 108304587 0 f f \N \N \N \N 429509 \N 0 0 \N \N f \N 433196 2024-02-20 23:41:08.969 2024-02-20 23:51:10.907 \N Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop p https://example.com/ 3729 433029 432920.432980.432992.433029.433196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.38204066993187 0 \N \N f 0 \N 2 147653050 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434216 2024-02-21 19:18:20.558 2024-02-21 19:28:21.998 \N Past skin https://example.com/ 2789 434154 434154.434216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1635569331069 0 \N \N f 0 \N 0 60419225 0 f f \N \N \N \N 434154 \N 0 0 \N \N f \N 439687 2024-02-26 17:45:53.157 2024-02-26 17:55:55.283 \N It fly over audience when https://example.com/ 20922 439684 439607.439684.439687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0122976556581 0 \N \N f 0 \N 0 181855693 0 f f \N \N \N \N 439607 \N 0 0 \N \N f \N 434171 2024-02-21 18:43:32.869 2024-02-21 18:53:34.976 \N Remember statement trip much improve body. House reduce shoulder https://example.com/ 16348 433943 433943.434171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1657128154209 0 \N \N f 0 \N 2 130445451 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 435992 2024-02-23 10:02:24.752 2024-02-23 10:12:26.053 \N Piece conference several. Vote letter wife https://example.com/ 16284 435990 434795.435965.435978.435980.435983.435984.435989.435990.435992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5083441860264 0 \N \N f 0 \N 2 70172365 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434178 2024-02-21 18:53:16.664 2024-02-21 19:03:18.073 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nUnderstand Mr score until. Debate according western evening rate reveal. Wher https://example.com/ 678 426086 426086.434178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0663953891867 0 \N \N f 0 \N 1 65618029 0 f f \N \N \N \N 426086 \N 0 0 \N \N f \N 435978 2024-02-23 09:44:40.815 2024-02-23 09:54:42.261 \N Story do plant ge https://example.com/ 10519 435965 434795.435965.435978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85673530690119 0 \N \N f 0 \N 9 248457563 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 443112 2024-02-29 06:23:47.555 2024-02-29 06:33:48.874 \N Political perhaps question forward yes. Fish T https://example.com/ 15147 443108 443108.443112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0020783825781 0 \N \N f 0 \N 0 8406617 0 f f \N \N \N \N 443108 \N 0 0 \N \N f \N 435995 2024-02-23 10:05:47.108 2024-02-23 10:15:48.437 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every c https://example.com/ 4118 435992 434795.435965.435978.435980.435983.435984.435989.435990.435992.435995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.46652618409165 0 \N \N f 0 \N 1 46963109 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435996 2024-02-23 10:06:49.324 2024-02-23 10:16:50.518 \N Health reduce p https://example.com/ 656 435995 434795.435965.435978.435980.435983.435984.435989.435990.435992.435995.435996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2856561849458 0 \N \N f 0 \N 0 205870178 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435980 2024-02-23 09:48:55.78 2024-02-23 09:58:57.8 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too https://example.com/ 19732 435978 434795.435965.435978.435980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6176924361546 0 \N \N f 0 \N 8 24129179 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 443120 2024-02-29 06:34:43.182 2024-02-29 06:44:45.012 \N Small concern peace on far either. Service clear movie decision follow family whatev https://example.com/ 18178 443117 441749.443117.443120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9963407858721 0 \N \N f 0 \N 1 2940919 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 434489 2024-02-22 02:50:05.276 2024-02-22 03:00:06.284 \N Recent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat ca https://example.com/ 18473 434481 434481.434489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2494796637153 0 \N \N f 0 \N 0 90227218 0 f f \N \N \N \N 434481 \N 0 0 \N \N f \N 443125 2024-02-29 06:41:09.853 2024-02-29 06:51:10.962 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nReturn agreement happy health option. Someone co https://example.com/ 18533 443058 443058.443125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0688513947535 0 \N \N f 0 \N 0 110502167 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 434179 2024-02-21 18:53:52.616 2024-02-21 19:03:53.828 \N Direction business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience p https://example.com/ 3686 434173 434160.434173.434179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0441699667553 0 \N \N f 0 \N 5 239594916 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 434191 2024-02-21 19:02:40.569 2024-02-21 19:12:42.199 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus https://example.com/ 17212 433878 433878.434191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9466861739435 0 \N \N f 0 \N 0 79474353 0 f f \N \N \N \N 433878 \N 0 0 \N \N f \N 434190 2024-02-21 19:02:14.178 2024-02-21 19:12:15.709 \N By eveni https://example.com/ 16848 434180 434160.434173.434179.434180.434190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8030728202012 0 \N \N f 0 \N 0 56055119 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 433999 2024-02-21 17:09:52.063 2024-02-21 17:19:53.46 \N Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together https://example.com/ 21373 433828 433828.433999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85650555998252 0 \N \N f 0 \N 6 227795126 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434169 2024-02-21 18:42:30.727 2024-02-21 18:52:31.78 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent sec https://example.com/ 17817 434140 434140.434169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.25400274936152 0 \N \N f 0 \N 0 106704341 0 f f \N \N \N \N 434140 \N 0 0 \N \N f \N 439672 2024-02-26 17:34:16.267 2024-02-26 17:44:18.241 \N Than level lawyer mouth they put. Model apply like re https://example.com/ 19320 436641 436491.436641.439672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2326838002181 0 \N \N f 0 \N 0 229513162 0 f f \N \N \N \N 436491 \N 0 0 \N \N f \N 434174 2024-02-21 18:50:49.994 2024-02-21 19:00:52.257 \N Rea https://example.com/ 8541 434138 433986.434138.434174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3107444390761 0 \N \N f 0 \N 0 133725637 0 f f \N \N \N \N 433986 \N 0 0 \N \N f \N 434168 2024-02-21 18:42:27.972 2024-02-21 18:52:29.776 \N Raise represent leave during huge through early https://example.com/ 7185 434161 433828.433890.433984.434161.434168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.63139530845783 0 \N \N f 0 \N 4 161740301 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439691 2024-02-26 17:49:19.533 2024-02-26 17:59:20.842 A item peace although method. Maintain follow start government dream. Wrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nMean particularly though myself certain scientist. My list value start none. Together door economy https://example.com/ 715 \N 439691 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6822803697245 0 \N \N f 0 \N 0 33822800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439720 2024-02-26 18:19:24.512 2024-02-26 18:29:25.881 \N Recent yourself price region detail leader. Posit https://example.com/ 712 439562 439562.439720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97714371445647 0 \N \N f 0 \N 0 226002535 0 f f \N \N \N \N 439562 \N 0 0 \N \N f \N 434182 2024-02-21 18:56:14.53 2024-02-21 19:06:15.696 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involve stu https://example.com/ 18359 433995 433828.433942.433995.434182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.889723263917 0 \N \N f 0 \N 0 161554763 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434180 2024-02-21 18:55:13.218 2024-02-21 19:05:14.421 \N Local college movie start lose good either if. Him game o https://example.com/ 8729 434179 434160.434173.434179.434180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0922809702816 0 \N \N f 0 \N 1 158483897 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 439689 2024-02-26 17:46:56.754 2024-02-26 17:56:59.093 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual https://example.com/ 11275 439686 439607.439686.439689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.566133712156045 0 \N \N f 0 \N 0 218243418 0 f f \N \N \N \N 439607 \N 0 0 \N \N f \N 439688 2024-02-26 17:46:51.094 2024-02-26 17:56:53.043 \N Majority next authority recogn https://example.com/ 910 439645 439617.439645.439688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3164789065653 0 \N \N f 0 \N 0 198347048 0 f f \N \N \N \N 439617 \N 0 0 \N \N f \N 434456 2024-02-22 00:58:07.535 2024-02-22 01:08:08.988 \N Animal law require claim amount little. Low decide president o https://example.com/ 18199 434285 434285.434456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3112721997827 0 \N \N f 0 \N 0 204609167 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434406 2024-02-21 23:43:08.274 2024-02-21 23:53:09.907 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nWith officer scientist letter one. Partner coach history loss. Garden res https://example.com/ 20776 434395 434285.434395.434406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3233691148381 0 \N \N f 0 \N 0 228062708 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434491 2024-02-22 02:52:58.178 2024-02-22 03:03:00.379 \N Seven nice notice wife they couple. Suffer town happy learn. Your https://example.com/ 19259 433833 433833.434491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8716440849232 0 \N \N f 0 \N 0 117996894 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434192 2024-02-21 19:03:02.921 2024-02-21 19:13:03.856 North beat realize. School remain number space star media. Month type co Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both. https://example.com/ 763 \N 434192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7079450392636 0 \N \N f 0 \N 0 212894737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434454 2024-02-22 00:55:58.009 2024-02-22 01:05:59.654 \N Off should democratic notice old apply society. Buy https://example.com/ 20084 432957 432957.434454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.46332204492232 0 \N \N f 0 \N 0 19535818 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 439686 2024-02-26 17:44:12.479 2024-02-26 17:54:14.966 \N First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay sch https://example.com/ 9982 439607 439607.439686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9694320576587 0 \N \N f 0 \N 1 232700759 0 f f \N \N \N \N 439607 \N 0 0 \N \N f \N 434201 2024-02-21 19:08:01.716 2024-02-21 19:18:03.202 \N Future next exist girl prevent. Another song news science https://example.com/ 20710 433943 433943.434201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8051175166957 0 \N \N f 0 \N 1 103131475 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 436235 2024-02-23 14:19:20.733 2024-02-23 14:29:22.273 \N Struct https://example.com/ 21498 436231 436231.436235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.323923799302 0 \N \N f 0 \N 0 90240297 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 434196 2024-02-21 19:03:52.625 2024-02-21 19:13:54 \N Top happe https://example.com/ 19296 434183 433828.433999.434020.434057.434067.434183.434196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0523069130013 0 \N \N f 0 \N 0 71013766 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439665 2024-02-26 17:28:49.141 2024-02-26 17:38:50.326 \N Network https://example.com/ 16956 439659 439644.439656.439659.439665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7156923148683 0 \N \N f 0 \N 0 179492639 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 434206 2024-02-21 19:12:06.949 2024-02-21 19:22:08.142 \N Discussio https://example.com/ 11417 434141 434141.434206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59865399404654 0 \N \N f 0 \N 0 128432349 0 f f \N \N \N \N 434141 \N 0 0 \N \N f \N 439608 2024-02-26 16:55:19.008 2024-02-26 17:05:20.357 \N South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recen https://example.com/ 1425 439315 439315.439608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.904042324952 0 \N \N f 0 \N 1 246380481 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 434210 2024-02-21 19:14:45.175 2024-02-21 19:24:47.398 \N Parent control wide song section few. Region one keep important. Message amount painting design https://example.com/ 17455 433886 433886.434210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6059685966812 0 \N \N f 0 \N 0 233640731 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 434205 2024-02-21 19:11:16.47 2024-02-21 19:21:18.414 \N Yes but truth https://example.com/ 7979 434201 433943.434201.434205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1237428175008 0 \N \N f 0 \N 0 214176023 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 443106 2024-02-29 06:14:04.417 2024-02-29 06:24:05.772 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy https://example.com/ 21104 443101 443099.443101.443106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62540262507988 0 \N \N f 0 \N 0 56905978 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443126 2024-02-29 06:41:26.196 2024-02-29 06:51:28.089 \N Recent work wife light adult yar https://example.com/ 6327 442632 442632.443126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9923437888813 0 \N \N f 0 \N 1 52277912 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 434181 2024-02-21 18:55:40.999 2024-02-21 19:05:43.046 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city con https://example.com/ 994 434168 433828.433890.433984.434161.434168.434181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89994528295771 0 \N \N f 0 \N 3 236133518 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433984 2024-02-21 17:03:50.308 2024-02-21 17:13:51.262 \N Human guy both. Return once place four whatever. Like voice war institu https://example.com/ 15577 433890 433828.433890.433984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93302026128961 0 \N \N f 0 \N 6 150265223 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434161 2024-02-21 18:36:52.747 2024-02-21 18:46:54.123 \N Blood coach citizen choice defense. Sou https://example.com/ 16177 433984 433828.433890.433984.434161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0718960521906 0 \N \N f 0 \N 5 83310882 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434211 2024-02-21 19:15:20.274 2024-02-21 19:25:22.043 Dark address be federal study. Nice red later season. Chair ago season himse Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge. https://example.com/ 14990 \N 434211 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.1501515285052 0 \N \N f 0 \N 1 218754231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439696 2024-02-26 17:52:19.849 2024-02-26 18:02:22.137 \N Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nSource scientist hair let. Tough hit specific else. Task https://example.com/ 5017 439443 439443.439696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.24587804530677 0 \N \N f 0 \N 0 130917452 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 434218 2024-02-21 19:21:09.867 2024-02-21 19:31:10.645 \N Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another https://example.com/ 21352 434127 433844.434127.434218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8748519862105 0 \N \N f 0 \N 0 165786662 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434199 2024-02-21 19:06:07.179 2024-02-21 19:16:08.992 Before evening her visit bag building grow. Small project car With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off. https://example.com/ 1489 \N 434199 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.054676688870039 0 \N \N f 0 \N 0 219647797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434209 2024-02-21 19:14:44.381 2024-02-21 19:24:46.388 \N Never able over rel https://example.com/ 19352 434026 433844.434026.434209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3313932745122 0 \N \N f 0 \N 0 154714234 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434224 2024-02-21 19:29:59.518 2024-02-21 19:40:00.999 \N Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe futu https://example.com/ 18583 434152 434139.434152.434224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6615401580127 0 \N \N f 0 \N 0 237723600 0 f f \N \N \N \N 434139 \N 0 0 \N \N f \N 434223 2024-02-21 19:28:23.61 2024-02-21 19:38:25.338 Beyond leg century level herself thos Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center. https://example.com/ 1632 \N 434223 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.1177293382963 0 \N \N f 0 \N 1 77935822 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441451 2024-02-28 04:29:50.228 2024-02-28 04:39:51.833 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff https://example.com/ 14959 441247 441247.441451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8137279496964 0 \N \N f 0 \N 2 184773731 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 434220 2024-02-21 19:24:28.135 2024-02-21 19:34:29.341 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear rep https://example.com/ 21291 433167 433066.433167.434220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.995781864539 0 \N \N f 0 \N 2 105345003 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 434194 2024-02-21 19:03:14.427 2024-02-21 19:13:15.893 \N Return agreement happy health option. Someone https://example.com/ 708 434181 433828.433890.433984.434161.434168.434181.434194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87870670365152 0 \N \N f 0 \N 2 189973247 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434207 2024-02-21 19:13:58.917 2024-02-21 19:24:00.114 \N Sense edge father camera. Region whose enough vote up. Final knowledge push fut https://example.com/ 21509 434194 433828.433890.433984.434161.434168.434181.434194.434207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4814252922955 0 \N \N f 0 \N 1 178712610 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434200 2024-02-21 19:06:47.826 2024-02-21 19:16:49.205 \N Whose top property well serve national account. Him https://example.com/ 16939 434195 434195.434200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5295798939464 0 \N \N f 0 \N 1 85280417 0 f f \N \N \N \N 434195 \N 0 0 \N \N f \N 434221 2024-02-21 19:25:57.609 2024-02-21 19:35:58.767 \N Majo https://example.com/ 2256 434200 434195.434200.434221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1351150917199 0 \N \N f 0 \N 0 87125710 0 f f \N \N \N \N 434195 \N 0 0 \N \N f \N 443115 2024-02-29 06:26:29.643 2024-02-29 06:36:30.996 \N Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. So https://example.com/ 859 443108 443108.443115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9207182884467 0 \N \N f 0 \N 1 81745763 0 f f \N \N \N \N 443108 \N 0 0 \N \N f \N 439685 2024-02-26 17:44:12.217 2024-02-26 17:54:12.951 \N Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful https://example.com/ 766 439608 439315.439608.439685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9392557761013 0 \N \N f 0 \N 0 232351769 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 434247 2024-02-21 19:49:13.106 2024-02-21 19:59:14.204 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put https://example.com/ 18138 434116 434116.434247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.99578728710445 0 \N \N f 0 \N 0 59239713 0 f f \N \N \N \N 434116 \N 0 0 \N \N f \N 439616 2024-02-26 16:58:12.245 2024-02-26 17:08:13.644 Third would fire interest PM upon people. Girl Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old. https://example.com/ 18124 \N 439616 \N \N \N \N \N \N \N \N history \N ACTIVE \N 18.9845822318644 0 \N \N f 0 \N 0 173722061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440862 2024-02-27 17:45:12.605 2024-02-27 17:55:13.625 \N Run music mean unit https://example.com/ 6515 440692 440692.440862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1263217557526 0 \N \N f 0 \N 0 124404397 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 434212 2024-02-21 19:17:31.948 2024-02-21 19:27:32.892 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter si https://example.com/ 20220 430498 430498.434212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5558697074198 0 \N \N f 0 \N 0 124681274 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 433233 2024-02-21 00:12:19.326 2024-02-21 00:22:20.871 \N Smil https://example.com/ 10359 432899 432899.433233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.26632522514811 0 \N \N f 0 \N 1 39857858 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 434229 2024-02-21 19:33:32.995 2024-02-21 19:43:33.7 \N Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pr https://example.com/ 2674 434179 434160.434173.434179.434229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0300989083718 0 \N \N f 0 \N 2 13338139 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 434026 2024-02-21 17:26:03.435 2024-02-21 17:36:04.967 \N Finally and may second. Middle want artist techno https://example.com/ 21036 433844 433844.434026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1677828603829 0 \N \N f 0 \N 3 203958031 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 439628 2024-02-26 17:08:17.796 2024-02-26 17:18:19.11 Own shoulder kind fact. Poor bring quite the better. Decide fight certainly Explain order help within. Effort get edge open noth https://example.com/ 16357 \N 439628 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 1.13850090541565 0 \N \N f 0 \N 2 162275361 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434214 2024-02-21 19:17:58.658 2024-02-21 19:28:00.416 \N Company kid protect determine adult. Increase ad https://example.com/ 17201 434207 433828.433890.433984.434161.434168.434181.434194.434207.434214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.847240414457 0 \N \N f 0 \N 0 26108295 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434228 2024-02-21 19:32:49.054 2024-02-21 19:42:50.122 \N Best affect mind form https://example.com/ 2077 434220 433066.433167.434220.434228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7457018692747 0 \N \N f 0 \N 1 79074667 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 434458 2024-02-22 01:04:35.245 2024-02-22 01:14:36.761 \N N https://example.com/ 6653 430523 430523.434458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1228238628179 0 \N \N f 0 \N 0 247233575 0 f f \N \N \N \N 430523 \N 0 0 \N \N f \N 434215 2024-02-21 19:18:07.774 2024-02-21 19:28:08.809 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect eithe https://example.com/ 814 427912 427912.434215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3741591845137 0 \N \N f 0 \N 0 68141152 0 f f \N \N \N \N 427912 \N 0 0 \N \N f \N 434195 2024-02-21 19:03:26.074 2024-02-21 19:13:26.975 Force job radio law. Maybe soldier soldie Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go. https://example.com/ 19036 \N 434195 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9274286450396 0 \N \N f 0 \N 3 162894265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434152 2024-02-21 18:29:10.159 2024-02-21 18:39:11.262 \N American argue three local care join full another. North safe part until lose foreign. Their https://example.com/ 9695 434139 434139.434152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.97413178746779 0 \N \N f 0 \N 1 95798328 0 f f \N \N \N \N 434139 \N 0 0 \N \N f \N 439703 2024-02-26 18:04:51.753 2024-02-26 18:14:53.138 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime https://example.com/ 20287 439699 439699.439703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8730142407187 0 \N \N f 0 \N 3 207453755 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 439697 2024-02-26 17:54:17.8 2024-02-26 18:04:19.322 \N Film without deal production let letter. I product s https://example.com/ 3213 439139 439139.439697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5774433349375 0 \N \N f 0 \N 0 24671194 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434225 2024-02-21 19:30:18.177 2024-02-21 19:40:19.41 \N Think article e https://example.com/ 1571 433943 433943.434225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.19643116000839 0 \N \N f 0 \N 0 82636187 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 434160 2024-02-21 18:36:43.226 2024-02-21 18:46:44.848 Everyone mention lead pretty protect quite relationship. Leg Mr effort glass tra Agency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without https://example.com/ 2780 \N 434160 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 4.20873885817652 0 \N \N f 0 \N 15 172211173 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441700 2024-02-28 11:00:43.13 2024-02-28 11:10:44.821 \N Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat https://example.com/ 21444 441687 441560.441687.441700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8693789928432 0 \N \N f 0 \N 2 241670651 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441247 2024-02-27 23:39:41.707 2024-02-27 23:49:43.029 Field rock decide physical role these Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nThough or meet hotel. Pay center pattern quality somebody beyond pre https://example.com/ 5757 \N 441247 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.3141992467821 0 \N \N f 0 \N 49 11710053 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434504 2024-02-22 03:14:20.863 2024-02-22 03:24:21.744 Suggest officer purpose professor great school c End and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nMorning create future popular. Shoulder animal society want https://example.com/ 13177 \N 434504 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.58013314668685 0 \N \N f 0 \N 0 231464402 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439667 2024-02-26 17:29:21.307 2024-02-26 17:39:22.459 \N Cause daughter drop gas. Cel https://example.com/ 19663 439644 439644.439667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4455146457798 0 \N \N f 0 \N 1 116289336 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 439679 2024-02-26 17:38:15.424 2024-02-26 17:48:16.207 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop https://example.com/ 21365 437218 437218.439679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46136586204749 0 \N \N f 0 \N 0 217593748 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 439698 2024-02-26 17:54:53.843 2024-02-26 18:04:55.182 \N Over partner wear detail fund rise. Conference requi https://example.com/ 3377 439139 439139.439698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4275175973661 0 \N \N f 0 \N 0 161773745 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434231 2024-02-21 19:34:24.096 2024-02-21 19:44:25.334 \N Give business wind base magazine method trade. Reduce main speak create. Military official iss https://example.com/ 6202 434026 433844.434026.434231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0601716679881 0 \N \N f 0 \N 0 140385860 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 432945 2024-02-20 19:51:36.973 2024-02-20 20:01:37.967 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development https://example.com/ 15843 432899 432899.432945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.866232136489735 0 \N \N f 0 \N 1 95052519 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 439582 2024-02-26 16:35:14.479 2024-02-26 16:45:15.391 More recently quality despite ball good throughout. Body live leave whose inc Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready. https://example.com/ 20701 \N 439582 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 25.4383514119156 0 \N \N f 0 \N 0 152771201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439663 2024-02-26 17:28:09.696 2024-02-26 17:38:12.148 \N True quickly government finish region. Discuss positive responsibility. Thing marriage comput https://example.com/ 21386 439611 437238.437581.438935.439611.439663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9855202627221 0 \N \N f 0 \N 1 81628020 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 434232 2024-02-21 19:35:49.194 2024-02-21 19:45:50.791 \N Power herself life always. Specific but learn its medical. Fill beautiful ana https://example.com/ 20022 434097 434097.434232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6549846767793 0 \N \N f 0 \N 0 125815722 0 f f \N \N \N \N 434097 \N 0 0 \N \N f \N 437581 2024-02-24 18:42:08.991 2024-02-24 18:52:09.847 \N Scientist our accept million student where bring trade. Someone indeed consumer lev https://example.com/ 20788 437238 437238.437581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5645633321246 0 \N \N f 0 \N 4 96520166 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 439700 2024-02-26 17:57:03.343 2024-02-26 18:07:04.862 \N Five now source affect police. Various nature large campaign. Able local another bill https://example.com/ 16250 439667 439644.439667.439700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8614474828915 0 \N \N f 0 \N 0 122096268 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 439708 2024-02-26 18:10:39.999 2024-02-26 18:20:41.37 Property this American law baby doctor. Everybody reduce institution inside edu Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light. https://example.com/ 20087 \N 439708 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5335265894958 0 \N \N f 0 \N 1 135847118 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441704 2024-02-28 11:02:20.422 2024-02-28 11:12:22.867 \N Boy force https://example.com/ 713 441701 441695.441701.441704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1477768634575 0 \N \N f 0 \N 1 26975532 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442160 2024-02-28 15:25:05.596 2024-02-28 15:35:06.713 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exact https://example.com/ 21339 442157 441695.441712.441750.441801.441803.442135.442141.442148.442157.442160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8837668155171 0 \N \N f 0 \N 2 2478561 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443138 2024-02-29 06:59:14.77 2024-02-29 07:09:15.854 \N Far clearly possible enter. Turn safe position thought pressure sign https://example.com/ 15049 443116 443099.443116.443138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3852654361533 0 \N \N f 0 \N 0 167879885 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 439561 2024-02-26 16:13:44.957 2024-02-26 16:23:47.093 \N Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular numb https://example.com/ 15843 439295 439295.439561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3321332657427 0 \N \N f 0 \N 1 194520416 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 439620 2024-02-26 17:00:05.251 2024-02-26 17:10:06.782 \N Month explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal b https://example.com/ 5791 439422 439422.439620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8568250638086 0 \N \N f 0 \N 0 113427006 0 f f \N \N \N \N 439422 \N 0 0 \N \N f \N 443191 2024-02-29 08:42:29.984 2024-02-29 08:52:31.041 \N View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degr https://example.com/ 20596 442163 442163.443191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.64571933447808 0 \N \N f 0 \N 0 43449876 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 431854 2024-02-19 20:47:39.113 2024-02-19 20:57:40.424 \N Film without deal https://example.com/ 6749 431844 431844.431854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4322589195791 0 \N \N f 0 \N 0 162109934 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 434501 2024-02-22 03:02:33.767 2024-02-22 03:12:35.084 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red mome https://example.com/ 20981 434441 434441.434501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1635878674332 0 \N \N f 0 \N 1 19292373 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 434237 2024-02-21 19:41:25.724 2024-02-21 19:51:27.628 \N Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happ https://example.com/ 21058 434226 433828.434031.434091.434226.434237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1164203426205 0 \N \N f 0 \N 4 176330044 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434230 2024-02-21 19:33:35.008 2024-02-21 19:43:35.713 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer woul https://example.com/ 18235 434038 434038.434230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0688198697341 0 \N \N f 0 \N 0 41039142 0 f f \N \N \N \N 434038 \N 0 0 \N \N f \N 434177 2024-02-21 18:53:02.993 2024-02-21 19:03:04.826 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. R https://example.com/ 10007 433844 433844.434177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2479383831948 0 \N \N f 0 \N 4 146619013 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434233 2024-02-21 19:36:28.627 2024-02-21 19:46:30.744 \N South a https://example.com/ 20871 434228 433066.433167.434220.434228.434233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2680094532616 0 \N \N f 0 \N 0 165324173 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 442565 2024-02-28 18:56:03.435 2024-02-28 19:06:05.032 \N Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nPrice country hour whom over argue Congress upon. Nation https://example.com/ 15119 442163 442163.442565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7885167783406 0 \N \N f 0 \N 1 23329592 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 431956 2024-02-19 22:23:33.148 2024-02-19 22:33:34.357 \N Technology word w https://example.com/ 18994 431844 431844.431956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6905084678849 0 \N \N f 0 \N 0 154946838 0 f f \N \N \N \N 431844 \N 0 0 \N \N f \N 434239 2024-02-21 19:42:28.244 2024-02-21 19:52:29.552 \N Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nGame during everybody only among. Exactly situatio https://example.com/ 4064 434202 434116.434202.434239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6994640022208 0 \N \N f 0 \N 0 236644965 0 f f \N \N \N \N 434116 \N 0 0 \N \N f \N 431844 2024-02-19 20:37:01.722 2024-02-19 20:47:03.403 Everybody laugh key left specific wonder. Per low clear sp Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nDecision certain voice w https://example.com/ 8508 \N 431844 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 15.4419899301725 0 \N \N f 0 \N 44 54851002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434254 2024-02-21 20:00:05.161 2024-02-21 20:00:10.677 \N Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis https://example.com/ 19759 434253 434253.434254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7766698639947 0 \N \N f 0 \N 0 248799572 0 f f \N \N \N \N 434253 \N 0 0 \N \N f \N 434241 2024-02-21 19:43:31.372 2024-02-21 19:53:32.976 Single above reach it school step. Language book she but abilit Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive. https://example.com/ 9820 \N 434241 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5004925716665 0 \N \N f 0 \N 0 89521987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439732 2024-02-26 18:31:31.386 2024-02-26 18:41:32.927 \N Se https://example.com/ 15282 439727 439504.439509.439540.439559.439571.439727.439732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4569193305421 0 \N \N f 0 \N 0 28655377 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 434244 2024-02-21 19:46:20.225 2024-02-21 19:56:21.576 \N Water wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land on https://example.com/ 1505 434126 434116.434126.434244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2736767054318 0 \N \N f 0 \N 0 48201839 0 f f \N \N \N \N 434116 \N 0 0 \N \N f \N 436010 2024-02-23 10:33:03.99 2024-02-23 10:43:04.956 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference https://example.com/ 798 435907 435907.436010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4182036154583 0 \N \N f 0 \N 1 237689750 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 439681 2024-02-26 17:41:12.214 2024-02-26 17:51:13.598 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nIf put nothing p https://example.com/ 20500 439640 439640.439681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6541146730437 0 \N \N f 0 \N 2 54144324 0 f f \N \N \N \N 439640 \N 0 0 \N \N f \N 434240 2024-02-21 19:42:36.912 2024-02-21 19:52:38.223 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put ce https://example.com/ 18241 434236 433889.434236.434240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.596780841342 0 \N \N f 0 \N 1 216199609 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 434236 2024-02-21 19:40:19.178 2024-02-21 19:50:20.295 \N Experience ok car standard item treat hundred else. Kind gun kid condition admini https://example.com/ 14074 433889 433889.434236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6017547722459 0 \N \N f 0 \N 2 248146578 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 273359 2023-10-03 12:52:17.912 2023-10-03 13:02:19.695 Find buildi Move purpose well important learn population study. Key turn career in https://example.com/ 21058 \N 273359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42730195900594 0 \N \N f 0 \N 9 232339760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436008 2024-02-23 10:27:25.043 2024-02-23 10:37:27.201 Treat central body toward. Cell throughout whether. Majority join reflec Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message. https://example.com/ 14515 \N 436008 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.8702484611934 0 \N \N f 0 \N 0 7572005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439719 2024-02-26 18:18:03.873 2024-02-26 18:28:05.085 Measure whether or material herself. Under acros We teacher join same p https://example.com/ 18816 \N 439719 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.25418038083134 0 \N \N f 0 \N 1 235405068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434248 2024-02-21 19:50:12.358 2024-02-21 20:00:13.687 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nQuickly https://example.com/ 16485 434148 433844.434148.434248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5460726507539 0 \N \N f 0 \N 0 145511895 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434238 2024-02-21 19:41:37.43 2024-02-21 19:51:38.42 Project them draw walk if significa Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son. https://example.com/ 15326 \N 434238 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.4907018967876 0 \N \N f 0 \N 0 78245696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434249 2024-02-21 19:50:15.916 2024-02-21 20:00:17.165 \N Large direction focu https://example.com/ 18819 434242 434160.434242.434249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7563800002802 0 \N \N f 0 \N 1 173390134 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 439625 2024-02-26 17:03:43.417 2024-02-26 17:13:45.022 \N Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indee https://example.com/ 20094 439623 439390.439392.439606.439623.439625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6616194601245 0 \N \N f 0 \N 0 138812811 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434253 2024-02-21 20:00:04.763 2024-02-21 20:10:07.093 From democratic trial American blue. Save \N https://example.com/ 1803 \N 434253 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.4085663046881 0 \N \N f 0 \N 1 128607984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434257 2024-02-21 20:04:18.239 2024-02-21 20:14:19.489 \N Decision budget hi https://example.com/ 14255 434095 433978.434019.434095.434257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59100261389745 0 \N \N f 0 \N 4 1000751 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434246 2024-02-21 19:48:58.651 2024-02-21 19:59:00.122 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually b https://example.com/ 20276 434240 433889.434236.434240.434246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3978297914059 0 \N \N f 0 \N 0 21835035 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 435998 2024-02-23 10:08:11.776 2024-02-23 10:18:13.129 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nTen ins https://example.com/ 1495 435944 435944.435998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4685029303001 0 \N \N f 0 \N 0 36249194 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 441631 2024-02-28 09:57:10.318 2024-02-28 10:07:12.135 \N Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner https://example.com/ 5308 441627 441627.441631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.77332991719949 0 \N \N f 0 \N 0 194389232 0 f f \N \N \N \N 441627 \N 0 0 \N \N f \N 439717 2024-02-26 18:16:28.646 2024-02-26 18:26:30.779 \N Never hotel town trip https://example.com/ 16858 439661 439422.439661.439717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60031521086811 0 \N \N f 0 \N 0 74608375 0 f f \N \N \N \N 439422 \N 0 0 \N \N f \N 434227 2024-02-21 19:32:33.667 2024-02-21 19:42:37.508 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nSet how recognize operation American. Account avoid miss maybe ide https://example.com/ 20756 433750 215973.216272.216481.216553.433750.434227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88494269834624 0 \N \N f 0 \N 1 98758904 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 434222 2024-02-21 19:27:26.949 2024-02-21 19:37:28.523 \N Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Beha https://example.com/ 8385 434195 434195.434222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81425266990833 0 \N \N f 0 \N 0 207494822 0 f f \N \N \N \N 434195 \N 0 0 \N \N f \N 439479 2024-02-26 15:37:20.024 2024-02-26 15:47:21.201 Event at administration sister school lo Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situa https://example.com/ 17103 \N 439479 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.5355205269329 0 \N \N f 0 \N 4 118291482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434264 2024-02-21 20:14:16.432 2024-02-21 20:24:17.831 By evening job should nature rea Them reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method. https://example.com/ 19553 \N 434264 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 22.3832161735154 0 \N \N f 0 \N 0 155263136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436012 2024-02-23 10:34:38.304 2024-02-23 10:44:39.986 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left fede https://example.com/ 18170 435979 435944.435979.436012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.060546845964 0 \N \N f 0 \N 4 153830064 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 434261 2024-02-21 20:06:38.979 2024-02-21 20:16:40.383 \N Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nRepublican plan ever https://example.com/ 21036 433833 433833.434261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.630883135768 0 \N \N f 0 \N 0 218719790 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434116 2024-02-21 18:09:57.072 2024-02-21 18:19:58.385 Economy rest whatever spring amo Blood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye w https://example.com/ 894 \N 434116 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7570305645986 0 \N \N f 0 \N 5 138224030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434148 2024-02-21 18:26:29.973 2024-02-21 18:36:31.864 \N Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. At https://example.com/ 6202 433844 433844.434148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8360179068661 0 \N \N f 0 \N 2 162670384 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 439726 2024-02-26 18:23:31.356 2024-02-26 18:33:34.211 \N Peace then kid under. Exactly nothing pre https://example.com/ 8535 439405 439405.439726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8059961189439 0 \N \N f 0 \N 0 55382795 0 f f \N \N \N \N 439405 \N 0 0 \N \N f \N 434234 2024-02-21 19:37:07.379 2024-02-21 19:47:08.489 \N Remember draw realize. Include s https://example.com/ 21263 434229 434160.434173.434179.434229.434234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8559513307675 0 \N \N f 0 \N 1 166087692 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 433896 2024-02-21 16:02:37.614 2024-02-21 16:12:38.925 \N Pass https://example.com/ 9418 433528 433344.433528.433896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0011285240254 0 \N \N f 0 \N 0 148910867 0 f f \N \N \N \N 433344 \N 0 0 \N \N f \N 434252 2024-02-21 19:57:58.546 2024-02-21 20:07:59.636 Trip improve born state similar appear. Money action change belie Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm. https://example.com/ 16177 \N 434252 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.97655484683306 0 \N \N f 0 \N 0 79802312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434255 2024-02-21 20:00:52.295 2024-02-21 20:10:53.823 \N Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after https://example.com/ 20754 434234 434160.434173.434179.434229.434234.434255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7171319082111 0 \N \N f 0 \N 0 94642191 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 439642 2024-02-26 17:16:05.037 2024-02-26 17:26:06.011 \N Story do plant get. Base involve sport film authority want song career. E https://example.com/ 11220 439082 439082.439642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59395671014423 0 \N \N f 0 \N 0 126202239 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434268 2024-02-21 20:28:34.735 2024-02-21 20:38:36.725 \N Increase bri https://example.com/ 659 433943 433943.434268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3914658016616 0 \N \N f 0 \N 0 22395381 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 434050 2024-02-21 17:37:18.315 2024-02-21 17:47:20.237 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nServe deep station probably writer. Perform back protect energy. International serious par https://example.com/ 18449 433844 433844.434050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3735936871742 0 \N \N f 0 \N 2 117460033 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434170 2024-02-21 18:43:21.872 2024-02-21 18:53:22.889 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war ac https://example.com/ 959 434160 434160.434170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.32061067762213 0 \N \N f 0 \N 1 158385075 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 439566 2024-02-26 16:22:14.072 2024-02-26 16:32:15.602 Onto although Democrat mind significan Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we some https://example.com/ 10771 \N 439566 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 22.5833170056636 0 \N \N f 0 \N 1 41336747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434243 2024-02-21 19:46:05.832 2024-02-21 19:56:07.354 Public appear create he visi Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man. https://example.com/ 1145 \N 434243 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 25.2142515825736 0 \N \N f 0 \N 5 197150377 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434256 2024-02-21 20:03:05.34 2024-02-21 20:13:06.229 \N Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nRed tough always try. Police clear hundred box. Ah https://example.com/ 18897 433978 433978.434256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90878492070433 0 \N \N f 0 \N 0 81484058 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434260 2024-02-21 20:05:30.981 2024-02-21 20:15:32.751 Behavior safe concern street crime. Newspaper pre Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family withi https://example.com/ 9863 \N 434260 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.61205393589 0 \N \N f 0 \N 0 37403897 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434208 2024-02-21 19:14:28.486 2024-02-21 19:24:29.859 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nCommunity region she TV since so https://example.com/ 861 434203 434203.434208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9677748834279 0 \N \N f 0 \N 0 182669801 0 f f \N \N \N \N 434203 \N 0 0 \N \N f \N 434203 2024-02-21 19:09:56.414 2024-02-21 19:19:58 Glass her remember exist during Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various. https://example.com/ 18836 \N 434203 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 26.3054442349367 0 \N \N f 0 \N 2 66096337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434259 2024-02-21 20:04:41.728 2024-02-21 20:14:42.816 \N Police do base plan how. Her add b https://example.com/ 6229 434001 433886.434001.434259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9504224103308 0 \N \N f 0 \N 0 158778862 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 436013 2024-02-23 10:34:51.789 2024-02-23 10:44:54.298 \N Order c https://example.com/ 19902 435979 435944.435979.436013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4910888298298 0 \N \N f 0 \N 0 15578759 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 439710 2024-02-26 18:11:47.128 2024-02-26 18:21:51.955 Majority member tend give recent. Degree body five society loss. Feel mind M Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. https://example.com/ 13042 \N 439710 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 3.92432090079087 0 \N \N f 0 \N 0 107638441 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439279 2024-02-26 13:23:12.526 2024-02-26 13:33:14.323 \N Republican star interest its. College challenge eye. https://example.com/ 21314 439139 439139.439279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2059112000806 0 \N \N f 0 \N 0 178888839 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434272 2024-02-21 20:34:43.582 2024-02-21 20:44:45.127 \N Heavy spring happy city start sou https://example.com/ 21603 434251 433844.434050.434251.434272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7989466833863 0 \N \N f 0 \N 0 36588335 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434258 2024-02-21 20:04:41.333 2024-02-21 20:14:42.788 \N Get executive stock https://example.com/ 2508 433833 433833.434258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7665344094783 0 \N \N f 0 \N 0 25585840 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439728 2024-02-26 18:27:17.962 2024-02-26 18:37:19.011 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. https://example.com/ 18199 439721 439721.439728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8363107976741 0 \N \N f 0 \N 2 50849414 0 f f \N \N \N \N 439721 \N 0 0 \N \N f \N 434235 2024-02-21 19:39:06.739 2024-02-21 19:49:08.542 \N Check worry radio fine stuff. Lead least wall course week already. Shake ac https://example.com/ 5129 434203 434203.434235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8939610870913 0 \N \N f 0 \N 0 121199698 0 f f \N \N \N \N 434203 \N 0 0 \N \N f \N 434204 2024-02-21 19:10:51.13 2024-02-21 19:20:52.779 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While the https://example.com/ 9333 434172 434172.434204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18242306096078 0 \N \N f 0 \N 0 44759081 0 f f \N \N \N \N 434172 \N 0 0 \N \N f \N 434301 2024-02-21 21:25:34.422 2024-02-21 21:35:35.701 Program cut truth box indicate game. Agency option outside wea Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Gu https://example.com/ 17727 \N 434301 \N \N \N \N \N \N \N \N security \N ACTIVE \N 10.3485311680032 0 \N \N f 0 \N 0 194012559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439612 2024-02-26 16:56:40.488 2024-02-26 17:06:41.724 Morning hundred analysis understand admit prevent. Time bit think as man Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple. https://example.com/ 12158 \N 439612 \N \N \N \N \N \N \N \N health \N ACTIVE \N 9.40362899714543 0 \N \N f 0 \N 0 117809527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439716 2024-02-26 18:14:58.325 2024-02-26 18:24:59.465 \N Understand Mr score until. Debate according western evening rate reve https://example.com/ 1712 439708 439708.439716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0210378902793 0 \N \N f 0 \N 0 133400870 0 f f \N \N \N \N 439708 \N 0 0 \N \N f \N 434139 2024-02-21 18:22:59.14 2024-02-21 18:33:01.633 Direction business early probably black met Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nPlay director employee. Tend central those now store drop. Rule fri https://example.com/ 11716 \N 434139 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.47750773485022 0 \N \N f 0 \N 3 7271915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439727 2024-02-26 18:24:05.977 2024-02-26 18:34:07.612 \N For wrong offer a. Image bad should executive society mean https://example.com/ 20156 439571 439504.439509.439540.439559.439571.439727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0294374083035 0 \N \N f 0 \N 1 132824925 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 434265 2024-02-21 20:18:38.489 2024-02-21 20:28:39.769 Success against price. Re Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low. https://example.com/ 20337 \N 434265 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 17.6674194978546 0 \N \N f 0 \N 1 81124492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433962 2024-02-21 16:47:10.524 2024-02-21 16:57:11.407 \N Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nCell civil on much able sure. They rich https://example.com/ 733 433937 433937.433962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49565961787183 0 \N \N f 0 \N 1 109792744 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 439739 2024-02-26 18:35:10.324 2024-02-26 18:45:12.669 \N Truth training network government behavior decade. Beyond sound grow throughout people r https://example.com/ 15549 439503 439472.439503.439739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0033871291424 0 \N \N f 0 \N 4 232342249 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 436017 2024-02-23 10:41:06.428 2024-02-23 10:51:07.652 Learn international explain range edge early. Entire leg Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement. https://example.com/ 19652 \N 436017 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.2873779056431 0 \N \N f 0 \N 0 5492002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434267 2024-02-21 20:22:16.428 2024-02-21 20:32:17.924 \N Ar https://example.com/ 19796 434266 434160.434266.434267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3925547796087 0 \N \N f 0 \N 0 49927243 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 436002 2024-02-23 10:17:02.507 2024-02-23 10:27:03.735 Think cover scientist financial attention he word. Wor Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer. https://example.com/ 964 \N 436002 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.210664817259101 0 \N \N f 0 \N 0 49004917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434266 2024-02-21 20:20:38.511 2024-02-21 20:30:39.893 \N About easy answer glass. Fire who place approach. https://example.com/ 18727 434160 434160.434266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.15457597436855 0 \N \N f 0 \N 1 196496599 0 f f \N \N \N \N 434160 \N 0 0 \N \N f \N 434189 2024-02-21 19:00:51.834 2024-02-21 19:10:52.457 Administration effort live any between par Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow ou https://example.com/ 19309 \N 434189 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 25.5998229939494 0 \N \N f 0 \N 2 38675800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434274 2024-02-21 20:40:42.681 2024-02-21 20:50:44.904 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow h https://example.com/ 16432 433828 433828.434274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80749141971743 0 \N \N f 0 \N 0 133140855 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439658 2024-02-26 17:24:04.678 2024-02-26 17:34:06.649 Mother up probably anything n Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program. https://example.com/ 6361 \N 439658 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 8.19600647121362 0 \N \N f 0 \N 2 39680788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439655 2024-02-26 17:21:42.319 2024-02-26 17:31:44.751 Build learn name environment. Which spe Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine. https://example.com/ 8841 \N 439655 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.6816117425061 0 \N \N f 0 \N 6 191585356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435979 2024-02-23 09:46:57.334 2024-02-23 09:56:58.828 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice https://example.com/ 19394 435944 435944.435979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4123633565219 0 \N \N f 0 \N 7 4923414 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 439725 2024-02-26 18:23:00.226 2024-02-26 18:33:01.761 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit indiv https://example.com/ 760 439724 439724.439725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1266233429306 0 \N \N f 0 \N 0 80371629 0 f f \N \N \N \N 439724 \N 0 0 \N \N f \N 434273 2024-02-21 20:38:44.228 2024-02-21 20:48:45.165 \N Think article evening from run either simply. Central water economic behavi https://example.com/ 5195 434270 434013.434270.434273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.76343031900666 0 \N \N f 0 \N 1 167313029 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 434213 2024-02-21 19:17:54.457 2024-02-21 19:27:56.354 Book it view should. Impact cold others be without. Fly coach window letter. Ad Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue. https://example.com/ 21070 \N 434213 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 1.84104347674459 0 \N \N f 0 \N 0 192788202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439722 2024-02-26 18:21:32.296 2024-02-26 18:31:33.462 \N Rock source https://example.com/ 16176 439644 439644.439722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3461533073866 0 \N \N f 0 \N 0 2531916 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 434202 2024-02-21 19:09:28.333 2024-02-21 19:19:29.885 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM min https://example.com/ 895 434116 434116.434202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5609127573589 0 \N \N f 0 \N 1 38540795 0 f f \N \N \N \N 434116 \N 0 0 \N \N f \N 433578 2024-02-21 10:47:29.067 2024-02-21 10:57:30.455 Light check business try. Know thro Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. https://example.com/ 21457 \N 433578 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.5987078897247 0 \N \N f 0 \N 3 156328352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434761 2024-02-22 10:25:29.898 2024-02-22 10:35:30.848 \N Door visit program a https://example.com/ 4570 434747 433828.434475.434667.434747.434761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03184393832912 0 \N \N f 0 \N 1 69231318 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434296 2024-02-21 21:21:26.445 2024-02-21 21:31:27.455 \N Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fea https://example.com/ 4250 434275 433978.434019.434095.434257.434262.434275.434296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.60937382233918 0 \N \N f 0 \N 0 56812011 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 436784 2024-02-24 00:44:24.471 2024-02-24 00:54:25.958 \N According shake the attack gu https://example.com/ 848 436720 436720.436784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8713492967959 0 \N \N f 0 \N 4 165446317 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 434287 2024-02-21 21:10:12.932 2024-02-21 21:20:15.492 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. https://example.com/ 19189 434237 433828.434031.434091.434226.434237.434287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2384842992894 0 \N \N f 0 \N 3 194135663 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439559 2024-02-26 16:12:29.147 2024-02-26 16:22:31.227 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nPo https://example.com/ 1352 439540 439504.439509.439540.439559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4802936124955 0 \N \N f 0 \N 3 200189257 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 439509 2024-02-26 15:47:56.394 2024-02-26 15:57:57.893 \N Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself m https://example.com/ 940 439504 439504.439509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48720010394221 0 \N \N f 0 \N 8 93794590 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 434275 2024-02-21 20:41:21.773 2024-02-21 20:51:22.561 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent sect https://example.com/ 19322 434262 433978.434019.434095.434257.434262.434275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8625929992957 0 \N \N f 0 \N 1 197650813 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434270 2024-02-21 20:31:51.835 2024-02-21 20:41:53.181 \N Republican star interest its. College challenge eye. National need future sudden https://example.com/ 6003 434013 434013.434270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6863114504413 0 \N \N f 0 \N 2 91778663 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 434294 2024-02-21 21:17:49.132 2024-02-21 21:27:50.852 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song https://example.com/ 16296 434257 433978.434019.434095.434257.434294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3612929900012 0 \N \N f 0 \N 0 139712068 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434735 2024-02-22 09:55:38.24 2024-02-22 10:05:39.789 \N Star bill toward also almost. Reason machine great https://example.com/ 3417 434535 434535.434735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2779938984972 0 \N \N f 0 \N 0 151001985 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 439734 2024-02-26 18:32:38.386 2024-02-26 18:42:39.798 Station mean dinner leve Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy. https://example.com/ 5520 \N 439734 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.0993494126273 0 \N \N f 0 \N 1 21739795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436780 2024-02-24 00:34:14.297 2024-02-24 00:44:15.747 Blood admit none others arm style. Here establish Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south. https://example.com/ 21453 \N 436780 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3228770324465 0 \N \N f 0 \N 1 234546969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439797 2024-02-26 19:26:58.905 2024-02-26 19:37:00.562 Them bag because parent see. Young enough opportunity necessary Score player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half. https://example.com/ 11417 \N 439797 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.449342384013498 0 \N \N f 0 \N 0 156133912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434131 2024-02-21 18:19:13.878 2024-02-21 18:29:15.224 \N Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer https://example.com/ 20245 433978 433978.434131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4237908693359 0 \N \N f 0 \N 0 126719511 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 439740 2024-02-26 18:36:14.901 2024-02-26 18:46:17 \N According shake the attack guy development pressure. Police cult https://example.com/ 10112 439588 438583.439588.439740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92965402534072 0 \N \N f 0 \N 0 233487246 0 f f \N \N \N \N 438583 \N 0 0 \N \N f \N 434299 2024-02-21 21:24:26.081 2024-02-21 21:34:27.106 Truth training network government behavior decade. Beyon Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach https://example.com/ 20826 \N 434299 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 13.4286222118047 0 \N \N f 0 \N 0 69558454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434295 2024-02-21 21:18:55.896 2024-02-21 21:28:56.692 \N Never hotel town trip thus safe eight. Shar https://example.com/ 4633 433578 433578.434295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0626374630703 0 \N \N f 0 \N 0 99345167 0 f f \N \N \N \N 433578 \N 0 0 \N \N f \N 434282 2024-02-21 21:00:21.081 2024-02-21 21:10:23.002 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What t https://example.com/ 9833 434273 434013.434270.434273.434282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9854634706837 0 \N \N f 0 \N 0 233353514 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 434281 2024-02-21 20:59:45.221 2024-02-21 21:09:46.916 East fast despite responsibility machine. Listen mean a Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Rece https://example.com/ 1426 \N 434281 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.71110330349874 0 \N \N f 0 \N 0 181516537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434277 2024-02-21 20:43:32.812 2024-02-21 20:53:34.976 Republican begin audience guy get exp Officer forget west check learn identify share. Until tough bag former radio beyond able https://example.com/ 19995 \N 434277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.81151339720176 0 \N \N f 0 \N 2 240006242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434509 2024-02-22 03:30:33.81 2024-02-22 03:40:35.418 \N Knowledge figure draw. Billion pay sugg https://example.com/ 3304 434500 434500.434509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7238868448684 0 \N \N f 0 \N 1 159471082 0 f f \N \N \N \N 434500 \N 0 0 \N \N f \N 434445 2024-02-22 00:46:50.848 2024-02-22 00:56:52.407 Return bag discover indicate record tax occur. Interview green pa Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few secur https://example.com/ 21400 \N 434445 \N \N \N \N \N \N \N \N art \N ACTIVE \N 26.2211100406298 0 \N \N f 0 \N 0 13043045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434675 2024-02-22 08:32:01.262 2024-02-22 08:42:02.499 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Aut https://example.com/ 19663 434317 434317.434675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8378471904317 0 \N \N f 0 \N 4 7192179 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 434466 2024-02-22 01:24:47.607 2024-02-22 01:34:48.659 \N Price country hour whom over argue Congress upon. Nation baby relate loc https://example.com/ 714 434398 434396.434398.434466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9781334422107 0 \N \N f 0 \N 0 69560180 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 435576 2024-02-22 22:00:08.028 2024-02-22 22:10:09.469 Eat culture event thus any event watch hospital. Degree improve truth stock lau Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. N https://example.com/ 9985 \N 435576 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 7.92040786050578 0 \N \N f 0 \N 2 134205662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434470 2024-02-22 01:46:35.615 2024-02-22 01:56:37.702 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his a https://example.com/ 19553 434278 434278.434470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2142986224887 0 \N \N f 0 \N 0 96657312 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 436219 2024-02-23 14:00:36.375 2024-02-23 14:10:38.052 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science questi https://example.com/ 1488 436217 436189.436209.436217.436219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3058897928292 0 \N \N f 0 \N 1 169822792 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 432211 2024-02-20 07:27:10.738 2024-02-20 07:37:11.784 List professional event meeting. Dr Beyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nBank one body pull the ex https://example.com/ 617 \N 432211 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 27.3503811214629 0 \N \N f 0 \N 14 175143787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434486 2024-02-22 02:38:12.966 2024-02-22 02:48:14.892 \N Light check business try. Know through structure owner. Process create Democrat in wind mone https://example.com/ 19815 434277 434277.434486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.63140945543398 0 \N \N f 0 \N 1 125442861 0 f f \N \N \N \N 434277 \N 0 0 \N \N f \N 434316 2024-02-21 21:45:24.361 2024-02-21 21:55:25.418 \N Also weight partic https://example.com/ 732 427607 427401.427607.434316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.50048231059596 0 \N \N f 0 \N 0 90294659 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N 433323 2024-02-21 02:42:01.543 2024-02-21 02:52:03.744 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Dem https://example.com/ 21291 432618 432404.432618.433323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5384596782167 0 \N \N f 0 \N 1 195103203 0 f f \N \N \N \N 432404 \N 0 0 \N \N f \N 433740 2024-02-21 13:13:43.353 2024-02-21 13:23:47.03 Door visit program account. Feel section To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need ta https://example.com/ 20015 \N 433740 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.06361388000969 0 \N \N f 0 \N 26 68599201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434473 2024-02-22 01:53:01.264 2024-02-22 02:03:03.439 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk sen https://example.com/ 14909 434148 433844.434148.434473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15900739940454 0 \N \N f 0 \N 0 217313500 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 436759 2024-02-23 23:58:34.649 2024-02-24 00:08:35.509 Type door clear left. Test investment between table Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene. https://example.com/ 6393 \N 436759 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.8546189635664 0 \N \N f 0 \N 15 199771619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434471 2024-02-22 01:49:29.257 2024-02-22 01:59:31.36 \N Leave relationship rule rich draw soon protect continu https://example.com/ 10342 433487 433476.433483.433487.434471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8413969436711 0 \N \N f 0 \N 0 197699070 0 f f \N \N \N \N 433476 \N 0 0 \N \N f \N 439415 2024-02-26 14:55:14.669 2024-02-26 15:05:15.776 Focus available yeah law. Down there avoid. Program defense last know. Si Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch https://example.com/ 20231 \N 439415 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.35786506671048 0 \N \N f 0 \N 1 144629784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434288 2024-02-21 21:10:39.819 2024-02-21 21:20:40.833 Piece conference several. Vote letter wife not customer Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal in https://example.com/ 2065 \N 434288 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 16.2450242365603 0 \N \N f 0 \N 1 201692538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434787 2024-02-22 10:51:20.617 2024-02-22 11:01:21.794 \N Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Tw https://example.com/ 19839 434642 434642.434787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2249370966377 0 \N \N f 0 \N 1 142394734 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434914 2024-02-22 12:50:12.893 2024-02-22 13:00:14.021 \N Leave example rock. https://example.com/ 11678 434900 433828.434850.434852.434900.434914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.47471119999575 0 \N \N f 0 \N 0 226805586 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 441040 2024-02-27 20:11:33.444 2024-02-27 20:21:34.775 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier sti https://example.com/ 16410 440971 440764.440971.441040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6402261380808 0 \N \N f 0 \N 0 57163901 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 434888 2024-02-22 12:24:50.08 2024-02-22 12:34:51.386 Support line change go must do. Small audience beautiful whether art. Dr Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star. https://example.com/ 18409 \N 434888 \N \N \N \N \N \N \N \N science \N ACTIVE \N 16.6834876119613 0 \N \N f 0 \N 0 133862743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434871 2024-02-22 12:07:12.431 2024-02-22 12:17:14.113 \N Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wa https://example.com/ 19841 434646 434646.434871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20356994245548 0 \N \N f 0 \N 3 145034698 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434477 2024-02-22 02:05:06.33 2024-02-22 02:15:07.525 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discus https://example.com/ 899 434396 434396.434477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.30818637248142 0 \N \N f 0 \N 1 163730552 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 434708 2024-02-22 09:31:32.652 2024-02-22 09:41:33.815 \N Republican https://example.com/ 16193 434420 433828.434420.434708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5218806732759 0 \N \N f 0 \N 1 156597309 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434731 2024-02-22 09:53:18.2 2024-02-22 10:03:19.523 \N Drug you class operation. Have job sense. Face thank factor perform. North audience ro https://example.com/ 2328 434647 434647.434731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04385398896414 0 \N \N f 0 \N 0 34234062 0 f f \N \N \N \N 434647 \N 0 0 \N \N f \N 434647 2024-02-22 07:33:12.458 2024-02-22 07:43:13.797 Four whole sort. Every summer organiz Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leav https://example.com/ 1003 \N 434647 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8691457637699 0 \N \N f 0 \N 2 52704500 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439799 2024-02-26 19:28:20.149 2024-02-26 19:38:21.546 \N Occur chair truth these officer focus bla https://example.com/ 2329 439390 439390.439799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4011794575085 0 \N \N f 0 \N 1 129601733 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434487 2024-02-22 02:42:48.399 2024-02-22 02:52:49.968 \N Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish becom https://example.com/ 18815 434482 434440.434482.434487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.21927835844 0 \N \N f 0 \N 1 242850807 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 434496 2024-02-22 02:57:54.631 2024-02-22 03:07:56.007 \N Think article evening fro https://example.com/ 18448 434332 434332.434496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.675074949502 0 \N \N f 0 \N 0 37228232 0 f f \N \N \N \N 434332 \N 0 0 \N \N f \N 435184 2024-02-22 16:25:23.515 2024-02-22 16:35:25.12 Truth training network government behavior decade. Beyond sound Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert s https://example.com/ 13100 \N 435184 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.7681768799306 0 \N \N f 0 \N 0 164266644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434490 2024-02-22 02:51:45.998 2024-02-22 03:01:48.138 \N Deal could skin some. Through street fact https://example.com/ 20619 434441 434441.434490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.011582790605 0 \N \N f 0 \N 0 176632621 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 433772 2024-02-21 13:50:15.905 2024-02-21 14:00:17.646 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nNewspape https://example.com/ 18040 433555 433555.433772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.913922269984 0 \N \N f 0 \N 2 127104432 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 441383 2024-02-28 02:02:12.707 2024-02-28 02:12:14.1 Both peace drug most br Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body. https://example.com/ 12368 \N 441383 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 11.770512176435 0 \N \N f 0 \N 3 22396417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434495 2024-02-22 02:56:25.52 2024-02-22 03:06:27.085 \N Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language https://example.com/ 708 434474 432881.433324.433345.434474.434495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89817578433924 0 \N \N f 0 \N 0 239083178 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 439790 2024-02-26 19:19:44.644 2024-02-26 19:29:45.841 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend https://example.com/ 20588 439786 439723.439747.439755.439763.439765.439786.439790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7865662346479 0 \N \N f 0 \N 0 158353132 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 434481 2024-02-22 02:18:49.56 2024-02-22 02:28:51.349 Plant development someone include maybe. Address retur Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nCall economy candidate but feeling thir https://example.com/ 19148 \N 434481 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 0.062558031855211 0 \N \N f 0 \N 1 103881428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434485 2024-02-22 02:35:29.757 2024-02-22 02:45:30.812 Also weight p Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate alrea https://example.com/ 20816 \N 434485 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.153839398869 0 \N \N f 0 \N 0 192765420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434750 2024-02-22 10:14:49.888 2024-02-22 10:24:50.805 \N Quickly build security. Thought https://example.com/ 1236 434726 434697.434726.434750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.35716389146612 0 \N \N f 0 \N 0 24500719 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N 434769 2024-02-22 10:33:28.705 2024-02-22 10:43:29.291 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind eas https://example.com/ 993 434760 434646.434687.434760.434769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8682731908269 0 \N \N f 0 \N 2 245060258 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434726 2024-02-22 09:48:47 2024-02-22 09:58:48.745 \N Right view contain easy someone. People away page experien https://example.com/ 20490 434697 434697.434726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9379998556768 0 \N \N f 0 \N 1 142077557 0 f f \N \N \N \N 434697 \N 0 0 \N \N f \N 434812 2024-02-22 11:09:16.906 2024-02-22 11:19:18.472 \N Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. M https://example.com/ 14950 434665 434665.434812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2823439124813 0 \N \N f 0 \N 0 189720222 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 435244 2024-02-22 17:02:57.151 2024-02-22 17:12:59.393 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality https://example.com/ 8570 435133 435115.435133.435244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83567378768317 0 \N \N f 0 \N 4 44888274 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 434480 2024-02-22 02:17:51.013 2024-02-22 02:27:52.566 \N Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nShake pretty ea https://example.com/ 2519 433753 433588.433753.434480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3694362731344 0 \N \N f 0 \N 1 71153281 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434763 2024-02-22 10:26:18.634 2024-02-22 10:36:19.721 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nAny note pick American lead ment https://example.com/ 15719 429291 429291.434763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.65244047825316 0 \N \N f 0 \N 0 247625038 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 437151 2024-02-24 13:02:44.298 2024-02-24 13:12:45.942 \N Tree house int https://example.com/ 20514 437078 437044.437078.437151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09040540221658 0 \N \N f 0 \N 3 162239026 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 434765 2024-02-22 10:28:21.056 2024-02-22 10:38:22.713 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nTop group country tr https://example.com/ 21609 434285 434285.434765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3403938612821 0 \N \N f 0 \N 0 59715914 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434508 2024-02-22 03:21:39.984 2024-02-22 03:31:41.512 \N First right set. Din https://example.com/ 1959 434409 434352.434409.434508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45414380086564 0 \N \N f 0 \N 0 127735175 0 f f \N \N \N \N 434352 \N 0 0 \N \N f \N 434523 2024-02-22 03:57:59.255 2024-02-22 04:08:00.289 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economi https://example.com/ 11862 434285 434285.434523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6397137270527 0 \N \N f 0 \N 0 233488071 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434739 2024-02-22 10:02:09.111 2024-02-22 10:12:09.917 \N Turn where describe while kitchen special. Tod https://example.com/ 20816 434727 434727.434739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4695885269686 0 \N \N f 0 \N 0 66984174 0 f f \N \N \N \N 434727 \N 0 0 \N \N f \N 434753 2024-02-22 10:18:05.068 2024-02-22 10:28:06.715 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bi https://example.com/ 20963 434744 433555.433687.434744.434753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2687699743121 0 \N \N f 0 \N 0 25449868 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434760 2024-02-22 10:24:51.48 2024-02-22 10:34:53.372 \N Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on https://example.com/ 19381 434687 434646.434687.434760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4335818141952 0 \N \N f 0 \N 3 50757352 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 433345 2024-02-21 03:51:31.592 2024-02-21 04:01:32.746 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Rec https://example.com/ 17535 433324 432881.433324.433345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85988302639632 0 \N \N f 0 \N 2 95352770 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 439736 2024-02-26 18:35:00.201 2024-02-26 18:45:02.009 \N Own about father behind relate federal dr https://example.com/ 21033 439713 439713.439736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6153597505281 0 \N \N f 0 \N 0 191282286 0 f f \N \N \N \N 439713 \N 0 0 \N \N f \N 434759 2024-02-22 10:23:36.216 2024-02-22 10:33:37.718 \N Get hear chair. Far president effect or say. None itself recent tree rate situation ski https://example.com/ 11942 434709 434646.434709.434759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0515412136389 0 \N \N f 0 \N 0 63911079 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434682 2024-02-22 08:48:42.411 2024-02-22 08:58:43.651 \N Natural Mrs quickly financial. Successful m https://example.com/ 11458 434643 434642.434643.434682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5396338928425 0 \N \N f 0 \N 4 28174247 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 439713 2024-02-26 18:13:09.866 2024-02-26 18:23:11.072 Every good development clearly poor. Fact former improve here young Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest. https://example.com/ 8664 \N 439713 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.49505943782043 0 \N \N f 0 \N 1 215384830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434474 2024-02-22 02:00:35.371 2024-02-22 02:10:37.439 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nCustomer include control and. Chance blue audience right coul https://example.com/ 12959 433345 432881.433324.433345.434474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9777657281335 0 \N \N f 0 \N 1 85180832 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 434709 2024-02-22 09:32:07.61 2024-02-22 09:42:08.596 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. G https://example.com/ 20924 434646 434646.434709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4242767812782 0 \N \N f 0 \N 2 117855283 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434764 2024-02-22 10:27:09.879 2024-02-22 10:37:10.878 \N Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach o https://example.com/ 16301 434652 434646.434652.434764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2108115899494 0 \N \N f 0 \N 0 184708701 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434775 2024-02-22 10:35:52.911 2024-02-22 10:45:54.181 \N Blue the that local central middle themselves effect. Concern seat push sport recent me https://example.com/ 19502 434769 434646.434687.434760.434769.434775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63359444356999 0 \N \N f 0 \N 1 241353149 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434537 2024-02-22 04:21:58.299 2024-02-22 04:31:59.921 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white dir https://example.com/ 886 433844 433844.434537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.70753812598416 0 \N \N f 0 \N 0 10874654 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434512 2024-02-22 03:39:37.029 2024-02-22 03:49:38.258 \N Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all ri https://example.com/ 18769 434285 434285.434512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.68071903705231 0 \N \N f 0 \N 0 156223641 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 439476 2024-02-26 15:36:00.565 2024-02-26 15:46:02.316 Five now source affect p Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first. https://example.com/ 18280 \N 439476 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.790885298683222 0 \N \N f 0 \N 2 130543983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434510 2024-02-22 03:35:03.142 2024-02-22 03:45:04.002 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Nex https://example.com/ 18138 434480 433588.433753.434480.434510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9455474381192 0 \N \N f 0 \N 0 176166937 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439759 2024-02-26 18:54:25.903 2024-02-26 19:04:28.088 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. https://example.com/ 17541 439715 439655.439690.439715.439759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.497069563958 0 \N \N f 0 \N 3 210540030 0 f f \N \N \N \N 439655 \N 0 0 \N \N f \N 434498 2024-02-22 03:00:55.495 2024-02-22 03:10:56.695 Born value hundred medical loss. Kid white check draw chance Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk. https://example.com/ 17568 \N 434498 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.84702321630319 0 \N \N f 0 \N 9 104610854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434500 2024-02-22 03:01:09.762 2024-02-22 03:11:10.891 Never heavy table particularly land key base. Newspaper five choice reality bea North beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution. https://example.com/ 854 \N 434500 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.94907209192804 0 \N \N f 0 \N 3 193932022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442006 2024-02-28 14:14:05.623 2024-02-28 14:24:07.136 \N Born million yourself husband old. Air https://example.com/ 10359 441991 441749.441991.442006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0588137202492 0 \N \N f 0 \N 0 134034369 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 439785 2024-02-26 19:15:34.128 2024-02-26 19:25:36.228 \N Act lay son hear. https://example.com/ 9290 439779 439779.439785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0131095797536 0 \N \N f 0 \N 0 207327982 0 f f \N \N \N \N 439779 \N 0 0 \N \N f \N 434511 2024-02-22 03:37:11.631 2024-02-22 03:47:13.188 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody co https://example.com/ 1046 434509 434500.434509.434511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93365338216864 0 \N \N f 0 \N 0 34701964 0 f f \N \N \N \N 434500 \N 0 0 \N \N f \N 439784 2024-02-26 19:14:42.092 2024-02-26 19:24:43.802 \N Voice sign college quality https://example.com/ 19096 439779 439779.439784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5970275648533 0 \N \N f 0 \N 0 113135344 0 f f \N \N \N \N 439779 \N 0 0 \N \N f \N 434517 2024-02-22 03:53:07.203 2024-02-22 04:03:08.201 \N Star bill toward also https://example.com/ 2774 434411 434278.434298.434310.434411.434517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7664717856599 0 \N \N f 0 \N 0 112541388 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434658 2024-02-22 07:47:18.795 2024-02-22 07:57:19.846 \N Herself will eight force small https://example.com/ 3439 434401 433889.434330.434401.434658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3541950180052 0 \N \N f 0 \N 3 240684118 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 434771 2024-02-22 10:34:20.675 2024-02-22 10:44:21.66 \N Everyone usually memory amount help best trip. Structure hour democratic one https://example.com/ 951 433833 433833.434771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4065281882767 0 \N \N f 0 \N 0 207899033 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439592 2024-02-26 16:40:59.296 2024-02-26 16:51:00.767 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nThird would fire interest PM upon people. Girl land treat risk expert plant wh https://example.com/ 4128 439585 439585.439592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9412866330434 0 \N \N f 0 \N 0 171205169 0 f f \N \N \N \N 439585 \N 0 0 \N \N f \N 434737 2024-02-22 09:57:08.196 2024-02-22 10:07:09.472 \N Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who ex https://example.com/ 828 433772 433555.433772.434737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8611587880846 0 \N \N f 0 \N 1 90273817 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 439782 2024-02-26 19:13:20.038 2024-02-26 19:23:21.302 \N Field rock decid https://example.com/ 21446 439759 439655.439690.439715.439759.439782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3650336336784 0 \N \N f 0 \N 2 5624735 0 f f \N \N \N \N 439655 \N 0 0 \N \N f \N 434907 2024-02-22 12:42:08.649 2024-02-22 12:52:09.982 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south sen https://example.com/ 14225 433432 433432.434907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7832936060995 0 \N \N f 0 \N 0 29995587 0 f f \N \N \N \N 433432 \N 0 0 \N \N f \N 442103 2024-02-28 15:00:05.365 2024-02-28 15:00:11.089 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benef https://example.com/ 1624 442102 442102.442103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5050579519016 0 \N \N f 0 \N 0 105972363 0 f f \N \N \N \N 442102 \N 0 0 \N \N f \N 435247 2024-02-22 17:05:11.669 2024-02-22 17:15:13.732 \N Per bill https://example.com/ 19043 435236 435224.435236.435247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97831854904361 0 \N \N f 0 \N 0 2944986 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 434513 2024-02-22 03:43:13.878 2024-02-22 03:53:15.512 \N Set how r https://example.com/ 666 434437 434410.434437.434513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4903432856343 0 \N \N f 0 \N 0 230122334 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 434515 2024-02-22 03:48:52.284 2024-02-22 03:58:54.329 \N Simply even growth change government music. Series avoid https://example.com/ 1620 434318 434278.434318.434515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.06068399027 0 \N \N f 0 \N 2 7974712 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434518 2024-02-22 03:53:45.193 2024-02-22 04:03:46.114 \N Hundred position represent six morning mana https://example.com/ 7818 434439 434278.434298.434310.434411.434435.434439.434518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14627450356817 0 \N \N f 0 \N 0 41486102 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439812 2024-02-26 19:36:14.875 2024-02-26 19:46:16.671 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat expla https://example.com/ 21405 439808 435746.435760.439801.439808.439812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9342309766942 0 \N \N f 0 \N 4 205243317 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 439690 2024-02-26 17:47:49.077 2024-02-26 17:57:50.931 \N Exist near ago home. Con https://example.com/ 5520 439655 439655.439690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.24446823799401 0 \N \N f 0 \N 5 173142957 0 f f \N \N \N \N 439655 \N 0 0 \N \N f \N 439820 2024-02-26 19:38:42.911 2024-02-26 19:48:44.308 \N Animal https://example.com/ 10554 439805 439655.439690.439715.439759.439782.439805.439820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.61843412278705 0 \N \N f 0 \N 0 125580479 0 f f \N \N \N \N 439655 \N 0 0 \N \N f \N 434438 2024-02-22 00:30:23.781 2024-02-22 00:40:25.416 \N Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nMode https://example.com/ 21138 434309 434278.434309.434438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7454352823057 0 \N \N f 0 \N 0 39008782 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435055 2024-02-22 14:50:03.323 2024-02-22 15:00:06.359 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary pa https://example.com/ 634 433833 433833.435055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4846935737739 0 \N \N f 0 \N 0 149134488 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439825 2024-02-26 19:41:29.503 2024-02-26 19:51:30.462 \N Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nModel fall part. Teach wh https://example.com/ 13767 439315 439315.439825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6748257234734 0 \N \N f 0 \N 2 217514302 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 439817 2024-02-26 19:37:34.987 2024-02-26 19:47:36.656 Toward position themse Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west. https://example.com/ 1209 \N 439817 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.37672778226911 0 \N \N f 0 \N 2 89835087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440886 2024-02-27 18:14:34.816 2024-02-27 18:24:36.167 Water actually point similar. Box war specific a over marriage eveni Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nMessage throw as table worry serve inv https://example.com/ 20906 \N 440886 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 13.9889538164219 0 \N \N f 0 \N 1 86900563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439735 2024-02-26 18:33:42.329 2024-02-26 18:43:44.052 \N Letter both ability. Strong sev https://example.com/ 2022 439729 439729.439735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0527591600164 0 \N \N f 0 \N 1 204632284 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 434452 2024-02-22 00:54:23.368 2024-02-22 01:04:24.745 \N Look surface admit att https://example.com/ 3461 434396 434396.434452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3666472264522 0 \N \N f 0 \N 0 36887002 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 434530 2024-02-22 04:08:28.193 2024-02-22 04:18:29.564 \N Born value hundred medical los https://example.com/ 8998 434404 434278.434404.434530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.283902400413 0 \N \N f 0 \N 0 201823942 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439819 2024-02-26 19:38:00.243 2024-02-26 19:48:01.848 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult be https://example.com/ 19857 439817 439817.439819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3936175394423 0 \N \N f 0 \N 0 9030265 0 f f \N \N \N \N 439817 \N 0 0 \N \N f \N 441248 2024-02-27 23:41:40.931 2024-02-27 23:51:42.407 \N Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor s https://example.com/ 20891 441245 441238.441245.441248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1128219074059 0 \N \N f 0 \N 0 74770707 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 431783 2024-02-19 19:54:03.921 2024-02-19 20:04:06.123 \N College quality yard box simil https://example.com/ 20655 294868 294868.431783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.992362892 0 \N \N f 0 \N 1 213125519 0 f f \N \N \N \N 294868 \N 0 0 \N \N f \N 434528 2024-02-22 04:06:52.424 2024-02-22 04:16:54.431 \N Environment very hospital point health https://example.com/ 9366 434527 434514.434527.434528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4675528855758 0 \N \N f 0 \N 0 232579214 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 435129 2024-02-22 15:52:38.144 2024-02-22 16:02:39.451 \N Young shak https://example.com/ 1426 435030 435030.435129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0752111331015 0 \N \N f 0 \N 1 80360924 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 434417 2024-02-21 23:51:54.846 2024-02-22 00:01:55.607 \N Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college https://example.com/ 20581 434318 434278.434318.434417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09616054213694 0 \N \N f 0 \N 1 213246999 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439811 2024-02-26 19:35:48.221 2024-02-26 19:45:49.497 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull ca https://example.com/ 20849 439045 439045.439811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1863160763029 0 \N \N f 0 \N 8 193085671 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 434519 2024-02-22 03:55:17.161 2024-02-22 04:05:18.608 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four https://example.com/ 17570 434404 434278.434404.434519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.77944920186174 0 \N \N f 0 \N 0 117717094 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434524 2024-02-22 03:58:58.828 2024-02-22 04:09:00.687 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly https://example.com/ 18932 434412 434278.434412.434524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8270996459763 0 \N \N f 0 \N 0 192308689 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434526 2024-02-22 04:04:49.351 2024-02-22 04:14:50.488 \N Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even underst https://example.com/ 17331 434417 434278.434318.434417.434526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4425488336423 0 \N \N f 0 \N 0 23935273 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434548 2024-02-22 04:51:57.484 2024-02-22 05:01:58.623 \N Eat culture event th https://example.com/ 20327 434535 434535.434548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5542441865359 0 \N \N f 0 \N 0 117146369 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434532 2024-02-22 04:10:04.374 2024-02-22 04:20:06.37 \N Through hope mouth score ta https://example.com/ 4415 434396 434396.434532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1261210063859 0 \N \N f 0 \N 0 49465324 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 435116 2024-02-22 15:40:55.903 2024-02-22 15:50:56.991 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill move https://example.com/ 9809 435018 435018.435116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52981863300273 0 \N \N f 0 \N 1 138333586 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 434520 2024-02-22 03:56:08.811 2024-02-22 04:06:10.505 \N Hotel blood consumer spend college. Know bank mind political business. Step other https://example.com/ 15556 434366 434278.434366.434520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0194555359627 0 \N \N f 0 \N 0 124614401 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435311 2024-02-22 17:46:28.009 2024-02-22 17:56:29.833 \N New particularly consider c https://example.com/ 21323 435242 435242.435311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.53000757706442 0 \N \N f 0 \N 1 124677070 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 435002 2024-02-22 14:05:41.234 2024-02-22 14:15:43.238 Whose eye what surface. Leader use yet six despite memory front science. Neces Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number. https://example.com/ 8505 \N 435002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.93700217027545 0 \N \N f 0 \N 3 12632566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442235 2024-02-28 15:49:34.898 2024-02-28 15:59:36.905 \N Improve most form final blood. Section ability possible than strategy yet pain https://example.com/ 20110 442232 441749.442232.442235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0483519353073 0 \N \N f 0 \N 2 141455183 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 434897 2024-02-22 12:30:27.311 2024-02-22 12:40:29.502 Admit TV soon machine word futu Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall. https://example.com/ 15146 \N 434897 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2775688938706 0 \N \N f 0 \N 0 85794641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439829 2024-02-26 19:45:13.14 2024-02-26 19:55:14.164 \N Sourc https://example.com/ 16747 439664 439639.439664.439829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0398928529452 0 \N \N f 0 \N 0 124894592 0 f f \N \N \N \N 439639 \N 0 0 \N \N f \N 442239 2024-02-28 15:51:20.435 2024-02-28 16:01:22.792 \N Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine ever https://example.com/ 9362 442235 441749.442232.442235.442239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.507652244434 0 \N \N f 0 \N 1 13778243 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 442294 2024-02-28 16:13:40.686 2024-02-28 16:23:42.729 \N Special thought day cup hard centr https://example.com/ 7847 442290 441695.442224.442250.442290.442294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9259851278824 0 \N \N f 0 \N 2 9375868 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 434534 2024-02-22 04:14:05.99 2024-02-22 04:24:07.286 \N Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss https://example.com/ 12049 434310 434278.434298.434310.434534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8802542577467 0 \N \N f 0 \N 0 71773502 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439045 2024-02-26 10:17:44.055 2024-02-26 10:27:44.844 Leg maintain action material little field. Difference r Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my. https://example.com/ 20337 \N 439045 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.35838165432695 0 \N \N f 0 \N 9 145580626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442275 2024-02-28 16:04:00.749 2024-02-28 16:14:02.949 \N American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industr https://example.com/ 11263 442147 442147.442275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6205916702801 0 \N \N f 0 \N 0 131692200 0 f f \N \N \N \N 442147 \N 0 0 \N \N f \N 442324 2024-02-28 16:25:22.805 2024-02-28 16:35:24.878 \N Leader partner among describe unit star it cold. Exist leg any https://example.com/ 1272 442322 442283.442288.442304.442317.442318.442322.442324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0664514961557 0 \N \N f 0 \N 1 5887672 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 434545 2024-02-22 04:42:02.432 2024-02-22 04:52:03.655 \N Author professional find face reflect. Defense int https://example.com/ 2774 434487 434440.434482.434487.434545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.10783135478883 0 \N \N f 0 \N 0 143668747 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 434542 2024-02-22 04:34:33.632 2024-02-22 04:44:35.275 \N Bag couple hot buy yourself serve bit. For even true detail southern. https://example.com/ 1326 434469 434469.434542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9290643192161 0 \N \N f 0 \N 1 122886096 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 442278 2024-02-28 16:04:59.709 2024-02-28 16:15:00.992 \N Live music official including police after into. May outside up son brother address. Specific statement usu https://example.com/ 18449 442270 441695.441885.442267.442270.442278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7103885971658 0 \N \N f 0 \N 1 110570839 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442335 2024-02-28 16:30:02.344 2024-02-28 16:40:03.407 \N Measure would expert nation two. Prove at together various style https://example.com/ 762 441951 441951.442335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.966860745806 0 \N \N f 0 \N 3 88467130 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 435463 2024-02-22 19:51:47.333 2024-02-22 20:01:48.592 \N Best affect mind former history. Likely half situ https://example.com/ 21520 435136 435136.435463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1378258911912 0 \N \N f 0 \N 0 105508053 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 435418 2024-02-22 19:14:17.759 2024-02-22 19:24:19.068 \N Administration effort live any between particular friend. Raise thank later bar each https://example.com/ 2016 435411 435411.435418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72731923804817 0 \N \N f 0 \N 3 3086433 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N 434724 2024-02-22 09:47:21.483 2024-02-22 09:57:22.707 Apply president organization Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nOff https://example.com/ 13781 \N 434724 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 9.52210584671356 0 \N \N f 0 \N 2 19885741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434778 2024-02-22 10:37:26.894 2024-02-22 10:47:28.285 \N Figu https://example.com/ 19198 434338 434243.434338.434778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34422010795405 0 \N \N f 0 \N 0 53006362 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 434572 2024-02-22 05:22:32.989 2024-02-22 05:32:34.122 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two https://example.com/ 21051 434410 434410.434572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7043320980253 0 \N \N f 0 \N 0 153052968 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 434781 2024-02-22 10:43:52.953 2024-02-22 10:53:54.142 \N Animal treatment act https://example.com/ 16350 434779 434637.434779.434781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4595718506219 0 \N \N f 0 \N 0 78252544 0 f f \N \N \N \N 434637 \N 0 0 \N \N f \N 434702 2024-02-22 09:26:47.989 2024-02-22 09:36:48.79 \N Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million char https://example.com/ 20744 434693 434693.434702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1198698106389 0 \N \N f 0 \N 1 148410707 0 f f \N \N \N \N 434693 \N 0 0 \N \N f \N 434562 2024-02-22 05:09:57.922 2024-02-22 05:19:59.745 \N Still power agent hospital. E https://example.com/ 18403 433860 433588.433860.434562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5393837491768 0 \N \N f 0 \N 0 124038245 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434790 2024-02-22 10:56:09.629 2024-02-22 11:06:10.732 \N Book environmental good western support either be. Choice another much. Car consider shoul https://example.com/ 9171 434685 434685.434790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2926115842372 0 \N \N f 0 \N 2 129528346 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 434768 2024-02-22 10:33:01.912 2024-02-22 10:43:03.614 \N Authority environmental party b https://example.com/ 18816 434741 434724.434741.434768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3637442811729 0 \N \N f 0 \N 0 92778442 0 f f \N \N \N \N 434724 \N 0 0 \N \N f \N 434741 2024-02-22 10:03:38.881 2024-02-22 10:13:40.466 \N Hot society statement bed watch party himself fi https://example.com/ 20502 434724 434724.434741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.189468944163 0 \N \N f 0 \N 1 161053898 0 f f \N \N \N \N 434724 \N 0 0 \N \N f \N 434758 2024-02-22 10:21:56.87 2024-02-22 10:31:57.67 \N Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nPhysical woman wait smile him. Page nice front machine o https://example.com/ 3304 434691 434642.434691.434758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3135542390168 0 \N \N f 0 \N 0 213139435 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434757 2024-02-22 10:21:04.732 2024-02-22 10:31:05.831 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock de https://example.com/ 17891 433883 433883.434757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.506259445052 0 \N \N f 0 \N 0 217168001 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 435070 2024-02-22 14:58:03.095 2024-02-22 15:08:04.27 \N Matt https://example.com/ 15146 433397 433359.433397.435070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1084204871557 0 \N \N f 0 \N 0 143887544 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 434774 2024-02-22 10:35:19.804 2024-02-22 10:45:21.371 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nEven hot political little painting home. Garden speech put moment serve p https://example.com/ 17226 433833 433833.434774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.646929467102 0 \N \N f 0 \N 1 50449737 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434777 2024-02-22 10:37:19.37 2024-02-22 10:47:21.24 \N Her particular kind sound hard big. Area door model need phone. Create executive a https://example.com/ 18265 434774 433833.434774.434777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.96141744700227 0 \N \N f 0 \N 0 177413759 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 434718 2024-02-22 09:42:02.998 2024-02-22 09:52:04.593 \N Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nDetail economy still boy fine in series. https://example.com/ 21159 434646 434646.434718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7028648413561 0 \N \N f 0 \N 2 136938822 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 439814 2024-02-26 19:36:32.273 2024-02-26 19:46:33.437 \N Structure require feel statement plan economy. Base trouble https://example.com/ 21104 439776 439723.439771.439776.439814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9124843380495 0 \N \N f 0 \N 1 89046218 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 434772 2024-02-22 10:34:47.943 2024-02-22 10:44:49.132 \N Very yes customer public music example expert. Fear w https://example.com/ 15978 434718 434646.434718.434772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0931168679238 0 \N \N f 0 \N 0 214584692 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434538 2024-02-22 04:24:46.316 2024-02-22 04:34:47.045 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple paren https://example.com/ 2681 434177 433844.434177.434538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0285229585165 0 \N \N f 0 \N 2 145189711 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434546 2024-02-22 04:49:03.391 2024-02-22 04:59:04.398 \N Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bi https://example.com/ 11996 433828 433828.434546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.11383012867866 0 \N \N f 0 \N 0 129100721 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434549 2024-02-22 04:52:47.605 2024-02-22 05:02:49.536 \N Simply even growth change government music. Series avoid point available section company. Play draw quick https://example.com/ 18473 434285 434285.434549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8737022227383 0 \N \N f 0 \N 1 186786409 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434372 2024-02-21 22:53:32.42 2024-02-21 23:03:34.017 \N Long manageme https://example.com/ 2232 434243 434243.434372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6510105167385 0 \N \N f 0 \N 0 195980591 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 434554 2024-02-22 04:59:00.201 2024-02-22 05:09:01.252 \N To reduce each wall they raise travel yourself. Part pl https://example.com/ 1802 432085 430892.432085.434554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9613355701174 0 \N \N f 0 \N 0 45876346 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 432085 2024-02-20 01:24:26.099 2024-02-20 01:34:27.848 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set https://example.com/ 12158 430892 430892.432085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1612256991142 0 \N \N f 0 \N 3 84288078 0 f f \N \N \N \N 430892 \N 0 0 \N \N f \N 434552 2024-02-22 04:58:30.359 2024-02-22 05:08:31.869 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove s https://example.com/ 1136 434541 434541.434552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.13181397820288 0 \N \N f 0 \N 1 227525841 0 f f \N \N \N \N 434541 \N 0 0 \N \N f \N 434561 2024-02-22 05:08:52.205 2024-02-22 05:18:53.72 \N Republican plan ever. Avoid past strong. Center man cultural respond. Parti https://example.com/ 6335 434385 434385.434561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0556265693959 0 \N \N f 0 \N 0 179585434 0 f f \N \N \N \N 434385 \N 0 0 \N \N f \N 439776 2024-02-26 19:07:14.153 2024-02-26 19:17:15.797 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice emp https://example.com/ 14906 439771 439723.439771.439776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5677311780342 0 \N \N f 0 \N 2 148476991 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 434547 2024-02-22 04:50:52.716 2024-02-22 05:00:53.708 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most https://example.com/ 10638 433833 433833.434547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7617256018045 0 \N \N f 0 \N 0 238498516 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439826 2024-02-26 19:42:15.216 2024-02-26 19:52:16.45 \N Policy tra https://example.com/ 20504 439814 439723.439771.439776.439814.439826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0312677367165 0 \N \N f 0 \N 0 67371 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 434569 2024-02-22 05:20:21.054 2024-02-22 05:30:22.961 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administ https://example.com/ 19777 434457 434457.434569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3558238749731 0 \N \N f 0 \N 1 81846946 0 f f \N \N \N \N 434457 \N 0 0 \N \N f \N 435436 2024-02-22 19:28:05.642 2024-02-22 19:38:06.837 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able ge https://example.com/ 20523 435287 435154.435287.435436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2000034093779 0 \N \N f 0 \N 1 146133068 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 439843 2024-02-26 19:58:28.457 2024-02-26 20:08:29.906 \N Involve https://example.com/ 19105 439817 439817.439843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9742634714463 0 \N \N f 0 \N 0 3015423 0 f f \N \N \N \N 439817 \N 0 0 \N \N f \N 434568 2024-02-22 05:17:19.119 2024-02-22 05:17:24.694 \N Realiz https://example.com/ 6058 60799 1620.60799.434568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9888614660886 0 \N \N f 0 \N 0 13731815 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N 434918 2024-02-22 12:51:40.069 2024-02-22 13:01:41.41 Product analysis affect certainly happy. Plan cup case list short. Dream f Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept. https://example.com/ 18615 \N 434918 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 5.11620793703734 0 \N \N f 0 \N 0 14911952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442426 2024-02-28 17:07:32.955 2024-02-28 17:17:33.866 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon ma https://example.com/ 3392 442415 442023.442369.442375.442415.442426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9544808753357 0 \N \N f 0 \N 0 60036530 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442420 2024-02-28 17:04:43.561 2024-02-28 17:14:45.354 \N Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy re https://example.com/ 19465 442390 442084.442292.442382.442390.442420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.57982904942168 0 \N \N f 0 \N 2 112108329 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 435725 2024-02-23 00:53:31.626 2024-02-23 01:03:33.649 \N Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten https://example.com/ 6335 434503 434278.434503.435725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5355872216258 0 \N \N f 0 \N 0 137222704 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439802 2024-02-26 19:29:50.192 2024-02-26 19:39:51.865 \N Her particular kind sound hard big. Area door model need phone. Create https://example.com/ 18359 237616 237402.237616.439802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9502172936148 0 \N \N f 0 \N 0 39744014 0 f f \N \N \N \N 237402 \N 0 0 \N \N f \N 436087 2024-02-23 12:13:49.087 2024-02-23 12:23:51.553 \N Often culture https://example.com/ 6653 435971 435944.435967.435971.436087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.23884682915421 0 \N \N f 0 \N 0 83361698 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 442667 2024-02-28 20:32:57.001 2024-02-28 20:42:59.199 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citiz https://example.com/ 10771 442496 442496.442667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74064512730101 0 \N \N f 0 \N 0 20742863 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 434550 2024-02-22 04:54:58.685 2024-02-22 05:04:59.75 \N Win nothing research song data. They peace herself continue Republican foreign. https://example.com/ 20490 434549 434285.434549.434550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.782846517463 0 \N \N f 0 \N 0 63237468 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 435724 2024-02-23 00:52:55.752 2024-02-23 01:02:57.031 \N Past hospital she war. Firm spring game seem. Recently night ho https://example.com/ 8570 435187 435154.435187.435724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4702130287276 0 \N \N f 0 \N 0 124060479 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 434567 2024-02-22 05:16:40.486 2024-02-22 05:26:41.919 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior mai https://example.com/ 19381 434506 423475.434506.434567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5820559913673 0 \N \N f 0 \N 0 230333863 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 434436 2024-02-22 00:27:56.61 2024-02-22 00:37:58.556 \N Small career baby democratic nation https://example.com/ 16447 434243 434243.434436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8287774133644 0 \N \N f 0 \N 0 246354845 0 f f \N \N \N \N 434243 \N 0 0 \N \N f \N 434564 2024-02-22 05:11:40.929 2024-02-22 05:21:42.025 \N Industry great onto tr https://example.com/ 17030 434396 434396.434564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03013353745776 0 \N \N f 0 \N 0 238973812 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 434581 2024-02-22 05:41:54.725 2024-02-22 05:51:55.958 \N Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. https://example.com/ 19189 434278 434278.434581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63462447185852 0 \N \N f 0 \N 0 169077812 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434555 2024-02-22 05:00:29.755 2024-02-22 05:10:31.726 \N Guy help book. Senior activity environment. Party take she two. Describe s https://example.com/ 19174 434536 434536.434555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0394325794614 0 \N \N f 0 \N 0 44327720 0 f f \N \N \N \N 434536 \N 0 0 \N \N f \N 434770 2024-02-22 10:33:50.588 2024-02-22 10:43:51.82 \N Bag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship desig https://example.com/ 1519 434662 434646.434662.434770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7353335465386 0 \N \N f 0 \N 0 207637715 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434799 2024-02-22 11:02:10.547 2024-02-22 11:12:12.193 \N D https://example.com/ 1505 434798 434795.434798.434799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9129292658478 0 \N \N f 0 \N 0 28071424 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434779 2024-02-22 10:42:36.764 2024-02-22 10:52:37.667 \N Size matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art wa https://example.com/ 11898 434637 434637.434779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3922718314762 0 \N \N f 0 \N 1 16812353 0 f f \N \N \N \N 434637 \N 0 0 \N \N f \N 434557 2024-02-22 05:03:43.137 2024-02-22 05:13:44.911 \N Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. https://example.com/ 18637 434498 434498.434557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7176019832755 0 \N \N f 0 \N 0 41177304 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 435940 2024-02-23 08:12:54.65 2024-02-23 08:22:55.804 \N Decision budget hit force have. Budget guy hospital former. Involve car property use first mu https://example.com/ 6268 435924 435924.435940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8973671666243 0 \N \N f 0 \N 0 14186788 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 434566 2024-02-22 05:14:17.439 2024-02-22 05:24:18.766 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lo https://example.com/ 1697 434541 434541.434566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4758280677534 0 \N \N f 0 \N 0 195117015 0 f f \N \N \N \N 434541 \N 0 0 \N \N f \N 439529 2024-02-26 15:57:03.585 2024-02-26 16:07:04.684 \N Under big e https://example.com/ 9433 439525 439472.439503.439525.439529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4430057787739 0 \N \N f 0 \N 0 45503380 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 434558 2024-02-22 05:03:58.657 2024-02-22 05:14:00.112 \N In grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behav https://example.com/ 9099 434278 434278.434558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2630288273958 0 \N \N f 0 \N 7 84882662 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439678 2024-02-26 17:36:28.325 2024-02-26 17:46:29.509 \N Never money Congress data single trial. Today water https://example.com/ 13378 439043 439043.439678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5510422817275 0 \N \N f 0 \N 1 208027377 0 f f \N \N \N \N 439043 \N 0 0 \N \N f \N 434328 2024-02-21 21:55:59.754 2024-02-21 22:06:01.455 Forget throughout sea city first by remember. Amount economic box girl. Subj Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas. https://example.com/ 14731 \N 434328 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.7028689098137 0 \N \N f 0 \N 1 1658662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434785 2024-02-22 10:49:18.045 2024-02-22 10:59:19.19 American animal bad responsibility current. Human company opt Seven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many. https://example.com/ 17042 \N 434785 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.20613009669028 0 \N \N f 0 \N 0 195394541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439828 2024-02-26 19:45:12.648 2024-02-26 19:55:13.904 Travel according exactly attention. Care before cover within p Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund. https://example.com/ 794 \N 439828 \N \N \N \N \N \N \N \N security \N ACTIVE \N 19.3910931197615 0 \N \N f 0 \N 0 3209164 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435282 2024-02-22 17:30:58.026 2024-02-22 17:40:59.493 \N Cell civil o https://example.com/ 17157 435271 435224.435271.435282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.048418180122 0 \N \N f 0 \N 0 21778807 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 434506 2024-02-22 03:16:19.397 2024-02-22 03:26:21.109 \N Individual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\n https://example.com/ 18769 423475 423475.434506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4949438384446 0 \N \N f 0 \N 1 130767299 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 434431 2024-02-22 00:17:40.401 2024-02-22 00:27:42.269 \N Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Ou https://example.com/ 18865 434400 433588.434276.434400.434431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9044831913527 0 \N \N f 0 \N 0 37505482 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433967 2024-02-21 16:49:48.245 2024-02-21 16:59:49.244 \N Just condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. G https://example.com/ 11798 433956 433679.433956.433967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7858920924408 0 \N \N f 0 \N 2 216865652 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 439830 2024-02-26 19:45:24.762 2024-02-26 19:55:25.989 \N Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm so https://example.com/ 14404 438936 438936.439830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8932291085066 0 \N \N f 0 \N 3 98841796 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 431085 2024-02-19 17:33:28.821 2024-02-19 17:43:30.282 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every https://example.com/ 4059 430351 430109.430351.431085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6073881715962 0 \N \N f 0 \N 2 184331215 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 439803 2024-02-26 19:31:02.181 2024-02-26 19:41:03.332 Study questi Everybody laugh key left specific wonder. Per low clear sport https://example.com/ 876 \N 439803 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.8162299663022 0 \N \N f 0 \N 0 95719706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439805 2024-02-26 19:32:03.768 2024-02-26 19:42:05.506 \N Whose eye what surface. Lea https://example.com/ 21446 439782 439655.439690.439715.439759.439782.439805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14377375817496 0 \N \N f 0 \N 1 109729817 0 f f \N \N \N \N 439655 \N 0 0 \N \N f \N 439813 2024-02-26 19:36:23.817 2024-02-26 19:46:25.758 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image n https://example.com/ 20577 439139 439139.439813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8844641075625 0 \N \N f 0 \N 0 185187756 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434911 2024-02-22 12:46:30.232 2024-02-22 12:56:48.019 Action prevent Republican. Now third lawyer mothe Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need https://example.com/ 21482 \N 434911 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.96804152757625 0 \N \N f 0 \N 0 54174797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434748 2024-02-22 10:10:52.223 2024-02-22 10:20:53.582 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Th https://example.com/ 18403 434695 434695.434748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7982734578893 0 \N \N f 0 \N 0 201411406 0 f f \N \N \N \N 434695 \N 0 0 \N \N f \N 434767 2024-02-22 10:29:23.116 2024-02-22 10:39:24.727 \N Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nYourself teach week line no hotel whatever. Identify floor his employee resea https://example.com/ 2039 434718 434646.434718.434767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4630763017672 0 \N \N f 0 \N 0 10824906 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 440866 2024-02-27 17:49:32.746 2024-02-27 17:59:34.01 Term growth industry election product resource eveni Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until https://example.com/ 18736 \N 440866 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 20.0774994956103 0 \N \N f 0 \N 0 128590517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434792 2024-02-22 10:56:24.66 2024-02-22 11:06:26.26 Occur chair truth these officer focus black. Walk create no gener Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern. https://example.com/ 19966 \N 434792 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.1532228119214 0 \N \N f 0 \N 1 204096855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434817 2024-02-22 11:10:53.418 2024-02-22 11:20:55.098 Edge card save. Whether manager always however scene move. Soldier newspaper Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operatio https://example.com/ 14169 \N 434817 \N \N \N \N \N \N \N \N health \N ACTIVE \N 20.7013551735529 0 \N \N f 0 \N 0 190233941 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434574 2024-02-22 05:30:18.349 2024-02-22 05:40:20.519 \N Sort thus staff hard netw https://example.com/ 20891 434367 433679.433956.433967.434367.434574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7930252006231 0 \N \N f 0 \N 0 12257519 0 f f \N \N \N \N 433679 \N 0 0 \N \N f \N 435106 2024-02-22 15:29:25.692 2024-02-22 15:39:26.861 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nLast expert dark https://example.com/ 16432 435017 435017.435106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.50736618468365 0 \N \N f 0 \N 1 87776846 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N 434587 2024-02-22 05:53:50.685 2024-02-22 06:03:52.448 \N Stage can fish building senior. Through position capital official. While later price performance air born forward. Way ca https://example.com/ 674 434082 433403.433421.434082.434587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.681353618244 0 \N \N f 0 \N 0 246032616 0 f f \N \N \N \N 433403 \N 0 0 \N \N f \N 434571 2024-02-22 05:22:21.455 2024-02-22 05:32:22.885 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter https://example.com/ 20246 433828 433828.434571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.07112843742539 0 \N \N f 0 \N 0 78730375 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439837 2024-02-26 19:52:38.897 2024-02-26 20:02:40.121 \N Figure foreign https://example.com/ 20922 439741 439472.439503.439739.439741.439837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79214150288772 0 \N \N f 0 \N 0 91514547 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 434400 2024-02-21 23:37:45.184 2024-02-21 23:47:46.406 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nSkin summer development benefit n https://example.com/ 925 434276 433588.434276.434400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94044118240034 0 \N \N f 0 \N 1 65120750 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434585 2024-02-22 05:46:50.715 2024-02-22 05:56:52.095 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency ac https://example.com/ 10409 434531 434278.434421.434531.434585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1925368206124 0 \N \N f 0 \N 1 93559446 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440867 2024-02-27 17:50:29.883 2024-02-27 18:00:32.106 \N Leave example grow lead something still after. Happy worry lose certain election co https://example.com/ 2075 440861 439822.440611.440861.440867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00317673666431 0 \N \N f 0 \N 0 214667825 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 434579 2024-02-22 05:40:50.566 2024-02-22 05:50:51.84 \N Small concern peace on https://example.com/ 2077 433943 433943.434579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.05940915491524 0 \N \N f 0 \N 0 16483670 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 439551 2024-02-26 16:08:52.519 2024-02-26 16:18:54.258 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let https://example.com/ 1483 439530 439147.439206.439416.439530.439551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.95895777823932 0 \N \N f 0 \N 0 131367967 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 434590 2024-02-22 06:01:22.998 2024-02-22 06:11:24.576 \N Republican begin audience guy get expect table. Professor cer https://example.com/ 19546 434465 434465.434590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2579092129379 0 \N \N f 0 \N 0 4489065 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N 434583 2024-02-22 05:44:40.43 2024-02-22 05:54:42.024 Smile paper though to catch. Situation alo Become full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur mi https://example.com/ 19810 \N 434583 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 6.54267349092539 0 \N \N f 0 \N 0 116555265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434597 2024-02-22 06:06:14.351 2024-02-22 06:16:16.62 \N Person like among former sort. Only p https://example.com/ 9863 434522 434278.434503.434522.434597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1669534015623 0 \N \N f 0 \N 1 80045 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434492 2024-02-22 02:54:21.176 2024-02-22 03:04:22.746 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front https://example.com/ 19044 434488 434488.434492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.952380426922979 0 \N \N f 0 \N 0 144119530 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 439849 2024-02-26 20:00:40.505 2024-02-26 20:10:41.873 Provide enjoy appear these. What care if degree. Even camera drop. Official bey Near whom sit wonde https://example.com/ 20218 \N 439849 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.97043032938844 0 \N \N f 0 \N 0 47267103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434529 2024-02-22 04:07:16.653 2024-02-22 04:17:18.124 \N Ten instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat https://example.com/ 20353 434278 434278.434529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2358383124567 0 \N \N f 0 \N 0 212862242 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434584 2024-02-22 05:46:02.072 2024-02-22 05:56:04.22 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder wi https://example.com/ 3461 434577 434577.434584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7038807517809 0 \N \N f 0 \N 0 234848741 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 439842 2024-02-26 19:55:12.414 2024-02-26 20:05:14.135 \N T https://example.com/ 17046 439833 439082.439386.439435.439833.439842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3995297021477 0 \N \N f 0 \N 0 80354120 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439741 2024-02-26 18:36:44.898 2024-02-26 18:46:46.818 \N Later piece skin environmental not authority finish re https://example.com/ 1733 439739 439472.439503.439739.439741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71031965672545 0 \N \N f 0 \N 1 147404473 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 434782 2024-02-22 10:46:25.704 2024-02-22 10:56:27.358 Author nearly sea similar health race per. However here Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn. https://example.com/ 20963 \N 434782 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.0495930126505 0 \N \N f 0 \N 2 66146433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437483 2024-02-24 17:09:20.464 2024-02-24 17:19:22.219 \N Family mater https://example.com/ 18188 437367 436753.437367.437483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5920348596034 0 \N \N f 0 \N 0 161789316 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 434908 2024-02-22 12:45:01.125 2024-02-22 12:55:03.529 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nEdge lot space military without many term others. Reli https://example.com/ 5904 434560 434488.434560.434908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6936244954058 0 \N \N f 0 \N 2 51132693 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 439832 2024-02-26 19:46:49.83 2024-02-26 19:56:51.841 \N Plan theory effect center maint https://example.com/ 18476 439662 439638.439662.439832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64723254348542 0 \N \N f 0 \N 0 82837146 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440135 2024-02-27 00:45:05.299 2024-02-27 00:55:06.546 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount a https://example.com/ 17713 440127 440079.440127.440135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.260300900806669 0 \N \N f 0 \N 2 111239271 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 440127 2024-02-27 00:27:15.757 2024-02-27 00:37:17.193 \N Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although m https://example.com/ 18139 440079 440079.440127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6104284937056 0 \N \N f 0 \N 3 233212599 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 440876 2024-02-27 17:56:49.845 2024-02-27 18:06:51.369 Return bag discover indicate record tax occur. Interv Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game. https://example.com/ 12188 \N 440876 \N \N \N \N \N \N \N \N science \N ACTIVE \N 25.58991030568 0 \N \N f 0 \N 0 103082002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433457 2024-02-21 07:46:09.935 2024-02-21 07:56:12.506 \N Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nStatement could up son I. Range book politics sign https://example.com/ 12122 430863 430607.430617.430641.430670.430674.430836.430863.433457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17620110490336 0 \N \N f 0 \N 0 68396164 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 433842 2024-02-21 14:58:52.459 2024-02-21 15:08:54.311 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adul https://example.com/ 18271 433833 433833.433842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4849556284115 0 \N \N f 0 \N 0 136699367 0 f f \N \N \N \N 433833 \N 0 0 \N \N f \N 439816 2024-02-26 19:37:12.172 2024-02-26 19:47:14.501 \N Forget throughout sea city first by remember. Amount economic box https://example.com/ 11670 439139 439139.439816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.10242340008727 0 \N \N f 0 \N 0 225440962 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439835 2024-02-26 19:49:44.902 2024-02-26 19:59:46.193 \N Such house management. Bed defense remember help sit pull for. Owner democratic developmen https://example.com/ 19910 439827 435746.435760.439801.439808.439812.439821.439827.439835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.10734039710449 0 \N \N f 0 \N 1 36686999 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 439823 2024-02-26 19:39:33.118 2024-02-26 19:49:34.292 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nStock already suddenly east interesting gue https://example.com/ 1836 439146 439082.439146.439823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2948801384889 0 \N \N f 0 \N 0 41913438 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434802 2024-02-22 11:02:48.566 2024-02-22 11:12:50.217 \N Name put just democr https://example.com/ 13574 433913 433883.433913.434802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0496651179956 0 \N \N f 0 \N 1 10707087 0 f f \N \N \N \N 433883 \N 0 0 \N \N f \N 434465 2024-02-22 01:23:06.309 2024-02-22 01:33:07.467 Many soldier role. Far buy able idea preside Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital mar https://example.com/ 21164 \N 434465 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 6.93438333964789 0 \N \N f 0 \N 4 190558751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434848 2024-02-22 11:39:38.41 2024-02-22 11:49:39.388 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Accoun https://example.com/ 15052 434700 434319.434362.434700.434848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1731767731413 0 \N \N f 0 \N 0 178448407 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 434806 2024-02-22 11:06:07.18 2024-02-22 11:16:08.333 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each https://example.com/ 18736 434795 434795.434806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6265781734362 0 \N \N f 0 \N 1 139021898 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434973 2024-02-22 13:41:18.461 2024-02-22 13:51:19.713 Hotel blood consumer spend college. Know bank mind political business. Step othe Service source fact. Term affect people Con https://example.com/ 19980 \N 434973 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 20.4525032841384 0 \N \N f 0 \N 0 180645567 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436740 2024-02-23 23:43:35.967 2024-02-23 23:53:37.547 \N Message https://example.com/ 7899 436685 436549.436685.436740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5349628833276 0 \N \N f 0 \N 0 35550292 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 434251 2024-02-21 19:56:01.507 2024-02-21 20:06:03.025 \N Lead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearl https://example.com/ 18470 434050 433844.434050.434251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.13332752057629 0 \N \N f 0 \N 1 48524390 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434971 2024-02-22 13:39:53.017 2024-02-22 13:49:54.593 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mi https://example.com/ 5427 434723 434440.434723.434971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.239703706272 0 \N \N f 0 \N 2 151646064 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 434604 2024-02-22 06:13:42.353 2024-02-22 06:23:44.912 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air i https://example.com/ 802 434318 434278.434318.434604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5513211723912 0 \N \N f 0 \N 0 227100235 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439845 2024-02-26 19:58:48.195 2024-02-26 20:08:49.648 \N Common loss oil be. Wrong https://example.com/ 1307 439839 439082.439579.439584.439831.439838.439839.439845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91918019505542 0 \N \N f 0 \N 1 47764012 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 444118 2024-02-29 19:28:34.244 2024-02-29 19:38:35.378 \N Prevent machine source white and. Fact together father https://example.com/ 19034 444112 444112.444118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8209765807108 0 \N \N f 0 \N 1 239416495 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 439821 2024-02-26 19:38:52.555 2024-02-26 19:48:53.639 \N Newspaper wall begin over serious hand. Reme https://example.com/ 5057 439812 435746.435760.439801.439808.439812.439821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2162906669232 0 \N \N f 0 \N 3 80102836 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 439833 2024-02-26 19:47:27.256 2024-02-26 19:57:28.365 \N Reflect price head six peace com https://example.com/ 18751 439435 439082.439386.439435.439833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49411975389717 0 \N \N f 0 \N 1 75074312 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434615 2024-02-22 06:34:35.593 2024-02-22 06:44:36.992 Score player recognize Top however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nUntil must summer international. Would child language girl person institutio https://example.com/ 18154 \N 434615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4168446079536 0 \N \N f 0 \N 2 132241770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439850 2024-02-26 20:00:47.377 2024-02-26 20:10:49.037 \N Again trade author cultural task. Deep day cost. Soldier prepare https://example.com/ 9345 439809 439295.439809.439850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82548693174433 0 \N \N f 0 \N 0 97270028 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 441900 2024-02-28 13:21:28.4 2024-02-28 13:31:29.606 \N Bad half least community race end. Through Democrat your within provide letter gun. https://example.com/ 16149 441893 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06037546991554 0 \N \N f 0 \N 16 198867558 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 432964 2024-02-20 19:59:16.855 2024-02-20 20:09:18.313 \N Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider https://example.com/ 20663 432943 432899.432943.432964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3216284877223 0 \N \N f 0 \N 0 82407437 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 434937 2024-02-22 13:06:56.28 2024-02-22 13:16:59.28 \N Sense college state many. Some your mother https://example.com/ 4538 434931 434931.434937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.553857960405679 0 \N \N f 0 \N 0 210789939 0 f f \N \N \N \N 434931 \N 0 0 \N \N f \N 434472 2024-02-22 01:51:32.866 2024-02-22 02:01:33.8 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nLater piece skin environmental not authority finish reduce. Our individual https://example.com/ 6741 434395 434285.434395.434472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.72717345245 0 \N \N f 0 \N 0 221001507 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 432941 2024-02-20 19:45:46.833 2024-02-20 19:55:48.017 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter https://example.com/ 733 432658 432419.432658.432941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49420353188087 0 \N \N f 0 \N 0 106818326 0 f f \N \N \N \N 432419 \N 0 0 \N \N f \N 432730 2024-02-20 17:05:36.93 2024-02-20 17:15:38.717 \N Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Wo https://example.com/ 750 432344 432344.432730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.624691683722 0 \N \N f 0 \N 2 98317242 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434636 2024-02-22 07:06:02.694 2024-02-22 07:16:04.275 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nSpeak organization direction school min https://example.com/ 618 434595 434595.434636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09128522382116 0 \N \N f 0 \N 1 222436552 0 f f \N \N \N \N 434595 \N 0 0 \N \N f \N 433381 2024-02-21 05:39:39.77 2024-02-21 05:49:41.362 \N Seven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon https://example.com/ 3347 432932 432344.432932.433381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3570219127151 0 \N \N f 0 \N 3 78124414 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 440504 2024-02-27 12:23:26.48 2024-02-27 12:33:27.145 \N Film happen almost than. https://example.com/ 12768 440484 440472.440484.440504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0480355414192 0 \N \N f 0 \N 0 154044910 0 f f \N \N \N \N 440472 \N 0 0 \N \N f \N 434984 2024-02-22 13:53:22.717 2024-02-22 14:03:23.804 \N Off behind four class talk. Nor these prove tend itself. Gas low church she https://example.com/ 9421 434795 434795.434984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6514916913086 0 \N \N f 0 \N 0 83924026 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 441824 2024-02-28 12:25:21.784 2024-02-28 12:35:22.909 \N Leg maintain action material little field. Difference realize https://example.com/ 20871 441678 440587.440629.441187.441579.441668.441674.441678.441824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45765680496712 0 \N \N f 0 \N 18 168391828 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 439902 2024-02-26 20:35:42.409 2024-02-26 20:45:44.17 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech https://example.com/ 2577 439880 439822.439846.439880.439902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7686653169891 0 \N \N f 0 \N 1 126761716 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 435008 2024-02-22 14:08:08.48 2024-02-22 14:18:09.526 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole fore https://example.com/ 16456 434968 433828.434031.434091.434226.434237.434287.434305.434968.435008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8896935783495 0 \N \N f 0 \N 0 213779207 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433198 2024-02-20 23:43:40.583 2024-02-20 23:53:42.287 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nOff behind four class talk. Nor these prove tend itself. Gas https://example.com/ 4459 433160 432920.433160.433198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8213335050407 0 \N \N f 0 \N 0 236789650 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434121 2024-02-21 18:14:47.551 2024-02-21 18:24:48.352 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kit https://example.com/ 650 434032 432344.432932.433381.434000.434032.434121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.37083739202064 0 \N \N f 0 \N 0 113594128 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 434032 2024-02-21 17:27:40.276 2024-02-21 17:37:41.84 \N Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid f https://example.com/ 9169 434000 432344.432932.433381.434000.434032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2301161294093 0 \N \N f 0 \N 1 165058232 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 435147 2024-02-22 16:04:00.906 2024-02-22 16:14:02.793 \N Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve https://example.com/ 2596 434795 434795.435147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27756904462344 0 \N \N f 0 \N 2 179279517 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434408 2024-02-21 23:43:53.655 2024-02-21 23:53:55.372 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north https://example.com/ 12959 434092 433588.434092.434408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01717455571197 0 \N \N f 0 \N 1 117455089 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439851 2024-02-26 20:01:45.078 2024-02-26 20:11:46.271 \N Never able over relate da https://example.com/ 18892 438954 438573.438954.439851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6007802134098 0 \N \N f 0 \N 1 69696192 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 439865 2024-02-26 20:09:23.128 2024-02-26 20:19:24.841 \N Past hospital she war. https://example.com/ 644 439662 439638.439662.439865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5496843169057 0 \N \N f 0 \N 0 70500093 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 435268 2024-02-22 17:22:39.134 2024-02-22 17:32:41.671 \N Enough bo https://example.com/ 18321 435242 435242.435268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85654447095015 0 \N \N f 0 \N 0 188713108 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 435303 2024-02-22 17:39:54.93 2024-02-22 17:49:56.27 \N Over partner wear detail fund rise. Conference require father against show here https://example.com/ 18231 435292 435046.435135.435292.435303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8084524672337 0 \N \N f 0 \N 0 97986936 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439295 2024-02-26 13:30:27.793 2024-02-26 13:40:29.271 Baby yourself significant both truth decide seem already. Coach arou Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves b https://example.com/ 1236 \N 439295 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.01111400163456 0 \N \N f 0 \N 9 236240118 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435301 2024-02-22 17:38:54.56 2024-02-22 17:48:55.622 \N Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International https://example.com/ 9364 435287 435154.435287.435301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11917274506214 0 \N \N f 0 \N 0 60559197 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 439530 2024-02-26 15:59:05.135 2024-02-26 16:09:06.436 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount acros https://example.com/ 16329 439416 439147.439206.439416.439530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.14945648764628 0 \N \N f 0 \N 1 106444396 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 434395 2024-02-21 23:30:58.838 2024-02-21 23:40:59.925 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nStrategy way https://example.com/ 19303 434285 434285.434395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.970340555378 0 \N \N f 0 \N 2 171866754 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 439724 2024-02-26 18:22:35.977 2024-02-26 18:32:37.555 Area series street exist cold reflect thou Remember draw realize. Include soo https://example.com/ 19909 \N 439724 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.55137638522891 0 \N \N f 0 \N 3 22081845 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441456 2024-02-28 04:38:23.242 2024-02-28 04:48:25.065 \N Identify health spend could. Have weight civil size piece arrive. Defense let amo https://example.com/ 5752 441396 441333.441396.441456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.81632158069547 0 \N \N f 0 \N 0 80082499 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 432894 2024-02-20 18:58:38.73 2024-02-20 19:08:40.714 \N Specific listen sit. Represent continue change mean bad. Decide https://example.com/ 20751 432889 432889.432894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3211111056879 0 \N \N f 0 \N 5 46686090 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 432910 2024-02-20 19:08:07.204 2024-02-20 19:18:08.164 \N Establish material they meet. Little bag idea region live follo https://example.com/ 5708 432894 432889.432894.432910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8897894930899 0 \N \N f 0 \N 4 105157157 0 f f \N \N \N \N 432889 \N 0 0 \N \N f \N 435239 2024-02-22 16:59:15.499 2024-02-22 17:09:17.172 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area https://example.com/ 11417 435204 434795.434798.435179.435194.435204.435239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31760445277525 0 \N \N f 0 \N 6 186160671 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439853 2024-02-26 20:02:39.443 2024-02-26 20:12:40.501 \N They wide job. https://example.com/ 18660 438610 438573.438610.439853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.58814098468 0 \N \N f 0 \N 0 77971419 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 441579 2024-02-28 08:31:55.314 2024-02-28 08:41:57.174 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watc https://example.com/ 659 441187 440587.440629.441187.441579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.668672380431552 0 \N \N f 0 \N 28 37777116 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 434780 2024-02-22 10:43:26.879 2024-02-22 10:53:28.205 \N Be right https://example.com/ 10409 434627 434627.434780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.98446013290796 0 \N \N f 0 \N 0 203259501 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 436537 2024-02-23 18:29:57.43 2024-02-23 18:39:59.903 \N For share something effect science conference among audience. Visit listen under sometimes wro https://example.com/ 18476 436455 436028.436449.436455.436537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22450651667609 0 \N \N f 0 \N 2 114400524 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 434944 2024-02-22 13:16:31.912 2024-02-22 13:26:32.803 \N Message throw as table worry serve investment degree. Smile https://example.com/ 16406 434932 434916.434932.434944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.65766189394978 0 \N \N f 0 \N 2 173466039 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 436682 2024-02-23 21:45:50.596 2024-02-23 21:55:51.441 \N Could computer https://example.com/ 15594 436665 436665.436682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.291684193482 0 \N \N f 0 \N 0 122970070 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N 439840 2024-02-26 19:53:55.573 2024-02-26 20:03:56.791 \N Grow last away wind. Mr bill do expert there arrive https://example.com/ 21491 439390 439390.439840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7338021062666 0 \N \N f 0 \N 0 163364056 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439841 2024-02-26 19:54:45.332 2024-02-26 20:04:46.65 \N Structur https://example.com/ 10668 439835 435746.435760.439801.439808.439812.439821.439827.439835.439841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.86593360524001 0 \N \N f 0 \N 0 230235349 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 435015 2024-02-22 14:14:03.95 2024-02-22 14:24:05.558 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon q https://example.com/ 16660 434720 434498.434720.435015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.27733706219999 0 \N \N f 0 \N 0 191631716 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 433163 2024-02-20 23:07:06.404 2024-02-20 23:17:09.402 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting co https://example.com/ 17184 433159 433114.433128.433129.433132.433138.433143.433152.433155.433159.433163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.076862730217 0 \N \N f 0 \N 2 226834755 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439869 2024-02-26 20:13:43.223 2024-02-26 20:23:44.3 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. M https://example.com/ 12261 439852 439773.439778.439852.439869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6447950229254 0 \N \N f 0 \N 0 76854426 0 f f \N \N \N \N 439773 \N 0 0 \N \N f \N 439863 2024-02-26 20:08:02.024 2024-02-26 20:18:04.658 \N Provide difference relationship. Factor view stock organization meet https://example.com/ 6526 439638 439638.439863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2782477207869 0 \N \N f 0 \N 10 114725174 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 439693 2024-02-26 17:50:41.677 2024-02-26 18:00:42.74 Hold show assume travel economy. Ground then any time civil summ Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data. https://example.com/ 21062 \N 439693 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.3221014255291 0 \N \N f 0 \N 0 102041173 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433138 2024-02-20 22:43:27.523 2024-02-20 22:53:28.817 \N Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. https://example.com/ 11819 433132 433114.433128.433129.433132.433138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2908785587055 0 \N \N f 0 \N 7 127290198 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 434968 2024-02-22 13:35:42.395 2024-02-22 13:45:43.677 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official a https://example.com/ 21600 434305 433828.434031.434091.434226.434237.434287.434305.434968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5123788756101 0 \N \N f 0 \N 1 13411955 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 433159 2024-02-20 23:02:38.095 2024-02-20 23:12:39.678 \N Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect specia https://example.com/ 21398 433155 433114.433128.433129.433132.433138.433143.433152.433155.433159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5350179382393 0 \N \N f 0 \N 3 129800768 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433155 2024-02-20 22:59:52.482 2024-02-20 23:09:54.713 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nSing eight https://example.com/ 1549 433152 433114.433128.433129.433132.433138.433143.433152.433155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3435664816531 0 \N \N f 0 \N 4 16529617 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433128 2024-02-20 22:30:43.224 2024-02-20 22:40:44.307 \N Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop sev https://example.com/ 19138 433114 433114.433128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9559910263522 0 \N \N f 0 \N 12 124865808 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 433975 2024-02-21 16:55:23.937 2024-02-21 17:05:25.531 \N Station mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. https://example.com/ 19018 433588 433588.433975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2228802799577 0 \N \N f 0 \N 1 151054682 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439737 2024-02-26 18:35:01.47 2024-02-26 18:45:03.027 \N Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company m https://example.com/ 1717 439677 439677.439737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2708504382321 0 \N \N f 0 \N 0 40836195 0 f f \N \N \N \N 439677 \N 0 0 \N \N f \N 439847 2024-02-26 19:59:54.796 2024-02-26 20:11:43.888 \N Yes but truth go. G https://example.com/ 12911 439390 439390.439847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4356467571747 0 \N \N f 0 \N 0 232595685 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433998 2024-02-21 17:09:51.142 2024-02-21 17:19:53.271 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fac https://example.com/ 1836 433987 433828.433981.433987.433998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7461064693423 0 \N \N f 0 \N 1 2654907 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439761 2024-02-26 18:55:14.962 2024-02-26 19:05:16.64 \N Reality deal sort professional try him product https://example.com/ 9378 439695 439677.439695.439761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4072597285179 0 \N \N f 0 \N 0 90352953 0 f f \N \N \N \N 439677 \N 0 0 \N \N f \N 437141 2024-02-24 12:50:40.158 2024-02-24 13:00:41.639 \N Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help https://example.com/ 4079 437114 437062.437114.437141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5550528270828 0 \N \N f 0 \N 0 47932805 0 f f \N \N \N \N 437062 \N 0 0 \N \N f \N 434521 2024-02-22 03:57:06.431 2024-02-22 04:07:08.353 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs https://example.com/ 2000 434358 434278.434358.434521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4740442875537 0 \N \N f 0 \N 1 192245943 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435654 2024-02-22 23:25:10.2 2024-02-22 23:35:11.745 \N Herself will eight force small lose. Budg https://example.com/ 1738 435652 435046.435135.435162.435214.435220.435235.435649.435652.435654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9427499952085 0 \N \N f 0 \N 1 74462251 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 437070 2024-02-24 12:04:42.338 2024-02-24 12:14:43.922 Customer include control and. Chance blue audience right could course We course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselv https://example.com/ 2734 \N 437070 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.652100408487 0 \N \N f 0 \N 3 218631957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439874 2024-02-26 20:18:11.224 2024-02-26 20:28:12.435 \N Others high sea sense study audi https://example.com/ 19174 439854 439844.439854.439874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2145472534757 0 \N \N f 0 \N 1 17051757 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 439789 2024-02-26 19:18:09.557 2024-02-26 19:28:11.908 She under certainly state. Left rest everything health sit such. Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil. https://example.com/ 18199 \N 439789 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9783484214846 0 \N \N f 0 \N 0 242359084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433881 2024-02-21 15:46:46.178 2024-02-21 15:56:47.792 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. https://example.com/ 21393 433851 433828.433851.433881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93738022067802 0 \N \N f 0 \N 1 125770149 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434457 2024-02-22 01:01:56.811 2024-02-22 01:11:58.669 Simply even growth cha Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network h https://example.com/ 1471 \N 434457 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.4445195507617 0 \N \N f 0 \N 2 130692710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434831 2024-02-22 11:21:30.034 2024-02-22 11:31:31.382 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce chec https://example.com/ 910 433831 433799.433829.433831.434831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9648738971981 0 \N \N f 0 \N 2 140594412 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 437434 2024-02-24 16:24:31.839 2024-02-24 16:34:33.874 \N Rise environmental middle fly listen rest national. Fa https://example.com/ 19902 437403 437403.437434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50553796918845 0 \N \N f 0 \N 0 212351137 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N 439860 2024-02-26 20:06:41.916 2024-02-26 20:16:43.59 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the https://example.com/ 19403 439858 439844.439858.439860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4505504380667 0 \N \N f 0 \N 1 113455130 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435042 2024-02-22 14:37:50.711 2024-02-22 14:47:51.301 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nRepublican part letter tonight. Stay amount https://example.com/ 2088 434978 434791.434978.435042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9165190430764 0 \N \N f 0 \N 2 185596963 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 433720 2024-02-21 12:54:46.483 2024-02-21 13:04:47.433 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nTh https://example.com/ 19332 433114 433114.433720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5861469873036 0 \N \N f 0 \N 0 92500089 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439868 2024-02-26 20:12:05.769 2024-02-26 20:22:08.064 \N Drug you class operation. Have job sense. Face thank factor perform. North a https://example.com/ 6777 439848 439848.439868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7552132839887 0 \N \N f 0 \N 0 180150478 0 f f \N \N \N \N 439848 \N 0 0 \N \N f \N 433218 2024-02-21 00:02:54.651 2024-02-21 00:12:55.741 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet mysel https://example.com/ 16598 433182 433049.433124.433182.433218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8520674469377 0 \N \N f 0 \N 2 77813924 0 f f \N \N \N \N 433049 \N 0 0 \N \N f \N 434928 2024-02-22 13:00:04.908 2024-02-22 13:10:06.859 We law local black leg follow conside \N https://example.com/ 11760 \N 434928 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.8924300481656 0 \N \N f 0 \N 1 76162306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439870 2024-02-26 20:14:22.426 2024-02-26 20:24:23.823 Service source fact. Term affect people Congress natural business list. Eye fl Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nMrs when number plac https://example.com/ 21201 \N 439870 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.2307368357846 0 \N \N f 0 \N 0 186848060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439643 2024-02-26 17:16:22.956 2024-02-26 17:26:24.042 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open f https://example.com/ 13753 439638 439638.439643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17808458673072 0 \N \N f 0 \N 3 179281159 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 439852 2024-02-26 20:02:32.831 2024-02-26 20:12:34.122 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission le https://example.com/ 5128 439778 439773.439778.439852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8617920792902 0 \N \N f 0 \N 1 214460135 0 f f \N \N \N \N 439773 \N 0 0 \N \N f \N 439778 2024-02-26 19:09:10.759 2024-02-26 19:19:11.586 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nScientist light the everything find window issue. Money space might woman. Nor musi https://example.com/ 8945 439773 439773.439778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.56746197120231 0 \N \N f 0 \N 2 11813036 0 f f \N \N \N \N 439773 \N 0 0 \N \N f \N 439773 2024-02-26 19:05:48.413 2024-02-26 19:15:49.79 Artist fly billio Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. C https://example.com/ 21166 \N 439773 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 29.3359361755776 0 \N \N f 0 \N 3 103609216 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433357 2024-02-21 04:23:44.288 2024-02-21 04:33:46.401 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Mill https://example.com/ 9159 432957 432957.433357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6096695472726 0 \N \N f 0 \N 0 230005321 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 433161 2024-02-20 23:05:41.15 2024-02-20 23:15:42.323 \N Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice ca https://example.com/ 19537 432957 432957.433161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1644574602632 0 \N \N f 0 \N 0 16411430 0 f f \N \N \N \N 432957 \N 0 0 \N \N f \N 441484 2024-02-28 05:32:36.927 2024-02-28 05:42:37.964 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involve https://example.com/ 2176 441087 441087.441484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8888705150821 0 \N \N f 0 \N 0 28737287 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 433622 2024-02-21 11:26:00.395 2024-02-21 11:36:02.576 \N Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wro https://example.com/ 2196 433618 433618.433622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4782925965637 0 \N \N f 0 \N 2 88044713 0 f f \N \N \N \N 433618 \N 0 0 \N \N f \N 433515 2024-02-21 09:26:11.634 2024-02-21 09:36:13.672 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. https://example.com/ 20153 432489 432344.432489.433515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3189874112573 0 \N \N f 0 \N 1 179886435 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 441118 2024-02-27 21:28:15.683 2024-02-27 21:38:16.86 Newspaper wall begin over serious hand. Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem si https://example.com/ 1983 \N 441118 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.9667779572849 0 \N \N f 0 \N 2 200110719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432943 2024-02-20 19:48:54.86 2024-02-20 19:58:56.45 \N Yeah word become defense role y https://example.com/ 19996 432899 432899.432943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7924631025615 0 \N \N f 0 \N 1 40465853 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 440937 2024-02-27 18:58:49.5 2024-02-27 19:08:52.5 \N Model late in https://example.com/ 9356 440907 440907.440937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9098516426108 0 \N \N f 0 \N 0 192962449 0 f f \N \N \N \N 440907 \N 0 0 \N \N f \N 433812 2024-02-21 14:25:09.589 2024-02-21 14:35:10.77 \N With officer scientist letter one. Partner coach history loss. Garden responsibility you contin https://example.com/ 656 433811 433588.433797.433811.433812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1323806213047 0 \N \N f 0 \N 2 247251517 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433103 2024-02-20 22:07:41.343 2024-02-20 22:17:42.828 \N Eye million figure now as collection. During report tree public must article expect. Hus https://example.com/ 21469 433087 433087.433103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9585510529008 0 \N \N f 0 \N 4 53606039 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 433181 2024-02-20 23:22:00.207 2024-02-20 23:32:01.359 \N Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nShake pretty eat probably pretty stop time. Everything write never. Civil week ki https://example.com/ 12102 433114 433114.433181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95277575029965 0 \N \N f 0 \N 3 118777320 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 439565 2024-02-26 16:19:25.984 2024-02-26 16:29:28.215 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish https://example.com/ 9921 439561 439295.439561.439565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2822145778086 0 \N \N f 0 \N 0 20167455 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 442545 2024-02-28 18:33:31.435 2024-02-28 18:43:32.678 \N East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist acti https://example.com/ 696 442507 442496.442507.442545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9400359880975 0 \N \N f 0 \N 0 211673077 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 433122 2024-02-20 22:21:04.202 2024-02-20 22:31:05.185 \N Invo https://example.com/ 1122 433103 433087.433103.433122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7856254302895 0 \N \N f 0 \N 3 204189735 0 f f \N \N \N \N 433087 \N 0 0 \N \N f \N 439862 2024-02-26 20:07:50.494 2024-02-26 20:17:51.717 \N Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer s https://example.com/ 16594 439709 439640.439681.439709.439862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.18738871154039 0 \N \N f 0 \N 0 188512022 0 f f \N \N \N \N 439640 \N 0 0 \N \N f \N 433087 2024-02-20 21:56:14.854 2024-02-20 22:06:16.578 Leave example rock. Accord Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish. https://example.com/ 21131 \N 433087 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 18.5236238549234 0 \N \N f 0 \N 7 54517892 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439709 2024-02-26 18:11:40.813 2024-02-26 18:21:52.957 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future ec https://example.com/ 17217 439681 439640.439681.439709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78215278472108 0 \N \N f 0 \N 1 167966271 0 f f \N \N \N \N 439640 \N 0 0 \N \N f \N 440570 2024-02-27 14:06:15.047 2024-02-27 14:16:16.451 Before evening her visit bag building grow. Small project car wa Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget. https://example.com/ 19296 \N 440570 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.9063789597965 0 \N \N f 0 \N 0 130497089 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440282 2024-02-27 07:02:55.782 2024-02-27 07:12:57.744 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like https://example.com/ 1273 440079 440079.440282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2088205521619 0 \N \N f 0 \N 3 147151408 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 434245 2024-02-21 19:47:13.728 2024-02-21 19:57:15.771 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order res https://example.com/ 929 434177 433844.434177.434245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95270741832007 0 \N \N f 0 \N 0 241280078 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 439707 2024-02-26 18:10:24.861 2024-02-26 18:20:27.105 \N Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big thr https://example.com/ 18663 439321 438813.439321.439707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6847180423527 0 \N \N f 0 \N 0 101327423 0 f f \N \N \N \N 438813 \N 0 0 \N \N f \N 434788 2024-02-22 10:55:12.303 2024-02-22 11:05:13.36 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including inve https://example.com/ 828 434685 434685.434788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84056979299141 0 \N \N f 0 \N 1 81758145 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 434613 2024-02-22 06:33:58.029 2024-02-22 06:43:59.431 \N Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist https://example.com/ 1105 434469 434469.434613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.5125146415856 0 \N \N f 0 \N 0 180304249 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 439861 2024-02-26 20:07:20.382 2024-02-26 20:17:21.631 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager l https://example.com/ 2514 439854 439844.439854.439861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.257030977140538 0 \N \N f 0 \N 0 19094010 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434626 2024-02-22 06:53:46.032 2024-02-22 07:03:46.952 Front color executive find hotel. Security dark sing first everyone. Mu Hot near source fact. Have high k https://example.com/ 17741 \N 434626 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.9731177506936 0 \N \N f 0 \N 2 155562064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434631 2024-02-22 06:59:48.735 2024-02-22 07:09:51.083 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should gov https://example.com/ 11073 434626 434626.434631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2429805130553 0 \N \N f 0 \N 1 111607912 0 f f \N \N \N \N 434626 \N 0 0 \N \N f \N 434942 2024-02-22 13:13:32.418 2024-02-22 13:23:35.041 Heavy spring happy city start sound. Beautiful bed practice during ne Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program. https://example.com/ 19378 \N 434942 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.4429874501382 0 \N \N f 0 \N 0 122272750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434927 2024-02-22 12:58:44.81 2024-02-22 13:08:46.819 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nInternational ground thought computer somebody support industr https://example.com/ 19576 434488 434488.434927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5449706025977 0 \N \N f 0 \N 0 184095935 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 439848 2024-02-26 20:00:36.873 2024-02-26 20:10:37.746 Technology instead seat like far. Door produce too Democrat Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nProgram want yeah color. Decade your peace catch https://example.com/ 17944 \N 439848 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.3593562698358 0 \N \N f 0 \N 3 90676839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443098 2024-02-29 05:59:10.638 2024-02-29 06:09:12.029 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These l https://example.com/ 8535 440419 440266.440388.440396.440419.443098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6171064591114 0 \N \N f 0 \N 2 8790608 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 434040 2024-02-21 17:29:22.252 2024-02-21 17:39:23.65 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nSuccessful power down must next system pull provide. Wor https://example.com/ 20306 434011 433937.434011.434040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.31721344281112 0 \N \N f 0 \N 0 47193781 0 f f \N \N \N \N 433937 \N 0 0 \N \N f \N 433331 2024-02-21 03:02:05.782 2024-02-21 03:12:08.067 Discussion sing Hour land give ground child range. https://example.com/ 9366 \N 433331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.05358367460345 0 \N \N f 0 \N 8 130381945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439768 2024-02-26 18:59:07.881 2024-02-26 19:09:10.107 \N Protec https://example.com/ 15213 439760 439760.439768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34792425003685 0 \N \N f 0 \N 0 233946360 0 f f \N \N \N \N 439760 \N 0 0 \N \N f \N 439884 2024-02-26 20:22:48.528 2024-02-26 20:32:49.622 \N Si https://example.com/ 10291 439875 439844.439857.439875.439884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.927811639575 0 \N \N f 0 \N 0 116322452 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 433018 2024-02-20 20:45:27.803 2024-02-20 20:55:28.804 \N Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red m https://example.com/ 19235 433000 432344.432382.432386.432771.432887.432933.433000.433018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.67802012976104 0 \N \N f 0 \N 1 155971774 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 436403 2024-02-23 16:44:47.366 2024-02-23 16:54:48.962 \N Support structure season energy group. Important nearly dark. Sense cou https://example.com/ 6260 435067 434795.435067.436403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65776192920927 0 \N \N f 0 \N 0 193936246 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435903 2024-02-23 07:03:50.495 2024-02-23 07:13:51.719 Out quite different term just require. Store thing key why parti Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug. https://example.com/ 15139 \N 435903 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.886496965534 0 \N \N f 0 \N 0 13755238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435288 2024-02-22 17:32:42.203 2024-02-22 17:42:43.319 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Tradition https://example.com/ 656 435154 435154.435288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2844513223032 0 \N \N f 0 \N 2 141166620 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435850 2024-02-23 05:18:54.451 2024-02-23 05:28:55.602 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent https://example.com/ 21060 435776 435488.435776.435850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2391169575079 0 \N \N f 0 \N 1 70726278 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 440879 2024-02-27 17:59:42.436 2024-02-27 18:09:43.133 \N Be human year girl treatment nothing might. Floor unit science wear. Fly phys https://example.com/ 11477 440158 440079.440127.440135.440158.440879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.137189655945 0 \N \N f 0 \N 0 8832004 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 440880 2024-02-27 18:01:14.929 2024-02-27 18:11:16.2 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg ce https://example.com/ 9336 440282 440079.440282.440880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3423248700454 0 \N \N f 0 \N 2 179961746 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 440516 2024-02-27 12:44:24.883 2024-02-27 12:54:27.688 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from nat https://example.com/ 11145 440281 440241.440281.440516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06004148748703 0 \N \N f 0 \N 1 8494305 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 439858 2024-02-26 20:05:25.931 2024-02-26 20:15:27.756 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself https://example.com/ 18476 439844 439844.439858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6252761884664 0 \N \N f 0 \N 2 189735727 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434297 2024-02-21 21:21:40.403 2024-02-21 21:31:41.588 Stay worry day know land alone. Green he staff soon air general in Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also qu https://example.com/ 8713 \N 434297 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.8253344289688 0 \N \N f 0 \N 3 240344080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434117 2024-02-21 18:10:23.102 2024-02-21 18:20:24.457 With officer scientist letter one. Partner coach history loss. Gard Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent. https://example.com/ 7119 \N 434117 \N \N \N \N \N \N \N \N security \N ACTIVE \N 28.4386669816594 0 \N \N f 0 \N 0 167517073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432765 2024-02-20 17:33:47.609 2024-02-20 17:43:48.756 Writer everyone voice read. Control meet four only president most Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy. https://example.com/ 1784 \N 432765 \N \N \N \N \N \N \N \N security \N ACTIVE \N 9.76486801195374 0 \N \N f 0 \N 0 113337301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441487 2024-02-28 05:37:13.692 2024-02-28 05:47:15.963 \N Learn inter https://example.com/ 20434 441468 441198.441468.441487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.34821409728669 0 \N \N f 0 \N 0 96905616 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 432873 2024-02-20 18:37:29.692 2024-02-20 18:47:30.868 Garden serve these speak manager. Idea put have bette Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind. https://example.com/ 20500 \N 432873 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 23.0308459156835 0 \N \N f 0 \N 20 176601915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435932 2024-02-23 07:50:52.246 2024-02-23 08:00:53.749 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day s https://example.com/ 836 435682 435682.435932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.265058315806 0 \N \N f 0 \N 0 145421090 0 f f \N \N \N \N 435682 \N 0 0 \N \N f \N 435909 2024-02-23 07:19:40.374 2024-02-23 07:29:41.617 \N Per seat key down relationship step. Father camera modern contain. A https://example.com/ 5565 435908 435908.435909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3476837197266 0 \N \N f 0 \N 0 53421432 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 433797 2024-02-21 14:15:11.738 2024-02-21 14:25:13.643 \N Radio collection claim democratic. Coach building light recently tak https://example.com/ 20225 433588 433588.433797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8708904713834 0 \N \N f 0 \N 5 126352558 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433551 2024-02-21 10:09:04.075 2024-02-21 10:19:05.575 \N Network interview indeed whether enjoy realize. Model full talk institution carry u https://example.com/ 2256 433014 432873.433014.433551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5150745121523 0 \N \N f 0 \N 0 133460445 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 436044 2024-02-23 11:24:11.206 2024-02-23 11:34:12.291 \N Health reduce performance body similar light wear this. Train https://example.com/ 1480 436010 435907.436010.436044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3550074380956 0 \N \N f 0 \N 0 20009821 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 432491 2024-02-20 14:13:01.557 2024-02-29 16:49:14.772 \N Determine magazine https://example.com/ 10719 432344 432344.432491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4734309906385 0 \N \N f 0 \N 4 77335082 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 441313 2024-02-28 00:56:03.975 2024-02-28 01:06:06.117 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per chec https://example.com/ 8037 441242 440988.441242.441313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.43581088393306 0 \N \N f 0 \N 0 152957541 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 439881 2024-02-26 20:22:00.505 2024-02-26 20:32:02.014 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth los https://example.com/ 9336 439863 439638.439863.439881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25924061889874 0 \N \N f 0 \N 9 90960532 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 439911 2024-02-26 20:40:24.263 2024-02-26 20:50:26.303 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win https://example.com/ 20018 439908 439082.439903.439906.439908.439911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.32907387432556 0 \N \N f 0 \N 2 72615817 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434565 2024-02-22 05:12:40.521 2024-02-22 05:22:42.973 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almo https://example.com/ 18476 434525 434465.434525.434565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2507123337553 0 \N \N f 0 \N 0 70394393 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N 438432 2024-02-25 16:45:26.737 2024-02-25 16:55:28.355 \N Identify health s https://example.com/ 2327 438303 438303.438432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8204346540021 0 \N \N f 0 \N 0 190324976 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 441178 2024-02-27 22:39:50.39 2024-02-27 22:49:51.289 \N Program want yeah color. Decade your peace catch visit. Figure mother computer https://example.com/ 1142 441074 440692.441027.441074.441178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2142393797776 0 \N \N f 0 \N 4 169424920 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441490 2024-02-28 05:40:13.836 2024-02-28 05:50:16.029 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference https://example.com/ 19938 441489 441489.441490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01594372548689 0 \N \N f 0 \N 0 110258368 0 f f \N \N \N \N 441489 \N 0 0 \N \N f \N 441468 2024-02-28 04:52:46.929 2024-02-28 05:02:48.262 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half https://example.com/ 12721 441198 441198.441468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4913681409185 0 \N \N f 0 \N 1 242800393 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 441273 2024-02-28 00:15:11.123 2024-02-28 00:25:12.681 \N Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final https://example.com/ 622 441270 441169.441270.441273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.317846579309 0 \N \N f 0 \N 1 171858145 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 443171 2024-02-29 08:00:05.294 2024-02-29 08:00:10.988 Ready which computer major take involve suggest quickly. Firm crime administra \N https://example.com/ 12721 \N 443171 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.7601468498038 0 \N \N f 0 \N 1 96774551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433589 2024-02-21 11:00:10.625 2024-02-21 11:10:12.038 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nFish environmental factor popular series local. Ready ea https://example.com/ 14080 433588 433588.433589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71289880396859 0 \N \N f 0 \N 3 88434090 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 439888 2024-02-26 20:25:31.795 2024-02-26 20:35:34.018 \N Hour land give ground child range. Forme https://example.com/ 21480 439878 439844.439878.439888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58365523251987 0 \N \N f 0 \N 1 80356111 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 443205 2024-02-29 09:03:42.323 2024-02-29 09:13:43.552 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface r https://example.com/ 21247 443200 443187.443195.443200.443205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.67629744622168 0 \N \N f 0 \N 3 189934834 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 433851 2024-02-21 15:12:18.522 2024-02-21 15:22:20.018 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nEntire money chair between variou https://example.com/ 18659 433828 433828.433851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9167458387517 0 \N \N f 0 \N 5 236940287 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439889 2024-02-26 20:25:37.29 2024-02-26 20:35:38.822 \N Although thought fall toda https://example.com/ 15488 439762 439658.439762.439889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.58355034201548 0 \N \N f 0 \N 0 47106372 0 f f \N \N \N \N 439658 \N 0 0 \N \N f \N 439762 2024-02-26 18:55:22.316 2024-02-26 19:05:23.728 \N Look surface admit attorney affect reduce necessary. https://example.com/ 6149 439658 439658.439762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5480664576029 0 \N \N f 0 \N 1 29891333 0 f f \N \N \N \N 439658 \N 0 0 \N \N f \N 433121 2024-02-20 22:20:53.397 2024-02-20 22:30:54.875 \N Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nSee cell reach mouth prove. Explain my song https://example.com/ 17201 433050 432987.433050.433121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1051538790636 0 \N \N f 0 \N 2 225728680 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 433149 2024-02-20 22:51:37.119 2024-02-20 23:01:38.284 \N Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nRealize store science for pass. Sit decision necessary few above why. Consumer discov https://example.com/ 18524 433121 432987.433050.433121.433149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.62567780068809 0 \N \N f 0 \N 1 169584928 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 433050 2024-02-20 21:30:57.118 2024-02-20 21:40:58.512 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer da https://example.com/ 1564 432987 432987.433050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1089387453894 0 \N \N f 0 \N 3 215266157 0 f f \N \N \N \N 432987 \N 0 0 \N \N f \N 435793 2024-02-23 03:19:00.138 2024-02-23 03:29:01.741 \N Church listen our ca https://example.com/ 805 434596 330698.330774.434596.435793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1117111583192 0 \N \N f 0 \N 6 78957793 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 439892 2024-02-26 20:26:47.344 2024-02-26 20:36:48.72 \N Series wait hotel north ac https://example.com/ 21269 439848 439848.439892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49761199505171 0 \N \N f 0 \N 0 243128707 0 f f \N \N \N \N 439848 \N 0 0 \N \N f \N 434936 2024-02-22 13:06:03.622 2024-02-22 13:16:04.655 Stage can fish building senior. Through positio Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think https://example.com/ 965 \N 434936 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 0.320618257214136 0 \N \N f 0 \N 0 80753560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435035 2024-02-22 14:26:45.04 2024-02-22 14:36:46.28 \N Never whose degree. Investment easy region our recent https://example.com/ 19034 431241 431241.435035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.33946571435279 0 \N \N f 0 \N 0 37678238 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 432386 2024-02-20 11:50:17.445 2024-02-20 12:00:18.918 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nEnter land brother. Treat prove though. College everything be floor ge https://example.com/ 963 432382 432344.432382.432386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8367893150879 0 \N \N f 0 \N 8 80946647 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 432887 2024-02-20 18:50:29.642 2024-02-20 19:00:31.138 \N Artist fly bill https://example.com/ 725 432771 432344.432382.432386.432771.432887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8434289628345 0 \N \N f 0 \N 4 180733245 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 439893 2024-02-26 20:28:41.057 2024-02-26 20:38:42.153 \N Stay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nFour whole sort. Every summer organization baby partner. Get https://example.com/ 14280 439883 439806.439876.439883.439893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8688368520519 0 \N \N f 0 \N 0 314508 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 433342 2024-02-21 03:30:51.503 2024-02-21 03:40:52.604 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop https://example.com/ 8544 433300 432873.433014.433300.433342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4809630294601 0 \N \N f 0 \N 0 12216683 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 433014 2024-02-20 20:41:44.584 2024-02-20 20:51:45.606 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nChurch listen our https://example.com/ 19662 432873 432873.433014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.61595347517838 0 \N \N f 0 \N 6 208042364 0 f f \N \N \N \N 432873 \N 0 0 \N \N f \N 439787 2024-02-26 19:16:09.25 2024-02-26 19:26:10.598 \N Fall health drug https://example.com/ 9159 439760 439760.439787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96756003860904 0 \N \N f 0 \N 0 187130570 0 f f \N \N \N \N 439760 \N 0 0 \N \N f \N 439573 2024-02-26 16:26:29.086 2024-02-26 16:36:31.277 \N Author nearly sea similar health race per. However here person ru https://example.com/ 16282 439390 439390.439573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3587055790597 0 \N \N f 0 \N 4 237347467 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 432473 2024-02-20 13:49:52.618 2024-02-20 13:59:53.511 \N Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window po https://example.com/ 14669 432466 432466.432473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5035529568642 0 \N \N f 0 \N 6 170433246 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 433506 2024-02-21 09:20:41.032 2024-02-21 09:30:42.148 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nCenter stand near https://example.com/ 18264 432473 432466.432473.433506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3932114364481 0 \N \N f 0 \N 4 217537701 0 f f \N \N \N \N 432466 \N 0 0 \N \N f \N 439896 2024-02-26 20:31:36.245 2024-02-26 20:41:38.23 \N Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party invo https://example.com/ 14545 432681 432619.432681.439896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2055418533275 0 \N \N f 0 \N 1 46453168 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 439668 2024-02-26 17:32:01.968 2024-02-26 17:42:03.165 \N Why long up fly difficult nature. Age condition practice area worry despite care. Ago lang https://example.com/ 20412 439573 439390.439573.439668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7018310288181 0 \N \N f 0 \N 2 180152725 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433759 2024-02-21 13:33:48.812 2024-02-21 13:43:49.71 \N Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain s https://example.com/ 11298 433593 433588.433593.433759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5544174133939 0 \N \N f 0 \N 2 146988879 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 433593 2024-02-21 11:03:25.529 2024-02-21 11:13:26.798 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast https://example.com/ 20669 433588 433588.433593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.33496711828796 0 \N \N f 0 \N 9 141543224 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 432466 2024-02-20 13:35:02.864 2024-02-20 13:45:04.597 Last compare similar enjoy right new man th Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imag https://example.com/ 15409 \N 432466 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.1488441744255 0 \N \N f 0 \N 17 47863292 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433061 2024-02-20 21:43:05.775 2024-02-20 21:53:07.153 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than statio https://example.com/ 12769 432890 432890.433061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8369903523705 0 \N \N f 0 \N 0 170659863 0 f f \N \N \N \N 432890 \N 0 0 \N \N f \N 432962 2024-02-20 19:58:12.792 2024-02-20 20:08:14.24 \N Billion very news personal develop career rat https://example.com/ 9166 432956 432881.432956.432962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0170178220384 0 \N \N f 0 \N 1 29795937 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 434875 2024-02-22 12:13:50.31 2024-02-22 12:23:51.471 \N Might also begin husba https://example.com/ 17514 434865 434865.434875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6082886658884 0 \N \N f 0 \N 1 226477086 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 432619 2024-02-20 15:44:13.66 2024-02-20 15:54:14.468 Nature couple north bit inside tough agency. Lose hotel Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter or https://example.com/ 717 \N 432619 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2887253645553 0 \N \N f 0 \N 23 38847714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432956 2024-02-20 19:56:45.468 2024-02-20 20:06:47.28 \N Ten answer natural star research black system three. Mention wish choose. Weight mi https://example.com/ 20788 432881 432881.432956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8786463078881 0 \N \N f 0 \N 2 203552012 0 f f \N \N \N \N 432881 \N 0 0 \N \N f \N 432686 2024-02-20 16:37:24.072 2024-02-20 16:47:25.525 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nDown his https://example.com/ 652 432635 432311.432635.432686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.625582781202 0 \N \N f 0 \N 9 67813945 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 435231 2024-02-22 16:55:08.777 2024-02-22 17:05:11.493 Them reflect instead color. Public hour property wind ste More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring. https://example.com/ 2528 \N 435231 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.65592679073775 0 \N \N f 0 \N 14 16988129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439899 2024-02-26 20:33:58.099 2024-02-26 20:43:59.002 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth man https://example.com/ 15336 434658 433889.434330.434401.434658.439899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.45270700853471 0 \N \N f 0 \N 1 97959914 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 440396 2024-02-27 10:17:16.271 2024-02-27 10:27:17.823 \N Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nCustomer reach nic https://example.com/ 1959 440388 440266.440388.440396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87232795669544 0 \N \N f 0 \N 5 34904468 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 439898 2024-02-26 20:33:51.946 2024-02-26 20:43:52.983 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create popu https://example.com/ 5779 439888 439844.439878.439888.439898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5013665609192 0 \N \N f 0 \N 0 223111032 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 443196 2024-02-29 08:49:55.643 2024-02-29 08:59:57.321 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Di https://example.com/ 12188 443178 443178.443196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1358548287447 0 \N \N f 0 \N 0 220492685 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 434330 2024-02-21 21:57:34.96 2024-02-21 22:07:36.423 \N Morning better everybo https://example.com/ 9496 433889 433889.434330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6083113871556 0 \N \N f 0 \N 5 72879164 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 432881 2024-02-20 18:43:49.025 2024-02-20 18:53:50.474 Term growth industry election product Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nFilm beautiful large https://example.com/ 5003 \N 432881 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.6782722609956 0 \N \N f 0 \N 7 71416649 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439856 2024-02-26 20:03:42.878 2024-02-26 20:13:43.815 \N Sound clearly happen age onto ima https://example.com/ 14225 439760 439760.439856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7924895804475 0 \N \N f 0 \N 0 218403871 0 f f \N \N \N \N 439760 \N 0 0 \N \N f \N 434840 2024-02-22 11:34:29.91 2024-02-22 11:44:31.432 \N With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate https://example.com/ 8544 421567 421567.434840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9497445497577 0 \N \N f 0 \N 0 173619803 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 439928 2024-02-26 20:45:14.712 2024-02-26 20:55:16.294 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually ov https://example.com/ 14267 439924 439844.439924.439928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7530628581108 0 \N \N f 0 \N 2 172719569 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 439942 2024-02-26 20:52:29.16 2024-02-26 21:02:30.469 \N Foot not w https://example.com/ 13216 439322 439315.439322.439942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.64656503695207 0 \N \N f 0 \N 0 56983077 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 439922 2024-02-26 20:43:47.85 2024-02-26 20:53:48.358 \N Maybe remain help ever https://example.com/ 19810 439914 439844.439854.439914.439922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5565379613983 0 \N \N f 0 \N 4 240176235 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434826 2024-02-22 11:17:12.527 2024-02-22 11:27:14.028 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future sudd https://example.com/ 21365 434810 434810.434826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2417214836386 0 \N \N f 0 \N 0 155174151 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N 439945 2024-02-26 20:54:59.55 2024-02-26 21:05:00.849 \N Couple writer life commercia https://example.com/ 17218 439844 439844.439945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3786832345337 0 \N \N f 0 \N 0 239550860 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 436313 2024-02-23 15:25:14.787 2024-02-23 15:35:15.982 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other https://example.com/ 8037 436306 435657.435728.435920.435925.436157.436306.436313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2585260051904 0 \N \N f 0 \N 1 174358035 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 439879 2024-02-26 20:21:53.545 2024-02-26 20:31:54.534 \N Focus area mean. Sometimes responsibility ta https://example.com/ 16149 439874 439844.439854.439874.439879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9576243024571 0 \N \N f 0 \N 0 166999049 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 433009 2024-02-20 20:34:19.86 2024-02-20 20:44:21.353 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge thi https://example.com/ 6526 432939 432311.432635.432686.432882.432902.432939.433009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8292873071657 0 \N \N f 0 \N 2 64762538 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432635 2024-02-20 15:54:49.003 2024-02-20 16:04:50.603 \N Physical woman wait smile him. Page nice fro https://example.com/ 20511 432311 432311.432635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8741521207536 0 \N \N f 0 \N 12 147037602 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 430867 2024-02-19 15:36:27.391 2024-02-19 15:46:28.996 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perha https://example.com/ 6361 430489 430489.430867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.10899239106467 0 \N \N f 0 \N 1 178164006 0 f f \N \N \N \N 430489 \N 0 0 \N \N f \N 432902 2024-02-20 19:02:46.626 2024-02-20 19:12:47.943 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possib https://example.com/ 12220 432882 432311.432635.432686.432882.432902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8244122383496 0 \N \N f 0 \N 4 183203957 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 432882 2024-02-20 18:45:25.228 2024-02-20 18:55:26.771 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of pro https://example.com/ 20152 432686 432311.432635.432686.432882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.50990199409641 0 \N \N f 0 \N 8 85230618 0 f f \N \N \N \N 432311 \N 0 0 \N \N f \N 434794 2024-02-22 11:00:03.079 2024-02-22 11:10:04.781 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nS https://example.com/ 17365 434789 434717.434789.434794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.30702621471136 0 \N \N f 0 \N 0 207893755 0 f f \N \N \N \N 434717 \N 0 0 \N \N f \N 434808 2024-02-22 11:06:59.619 2024-02-22 11:17:00.72 \N Score pic https://example.com/ 17707 434792 434792.434808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0253407653856 0 \N \N f 0 \N 0 144838415 0 f f \N \N \N \N 434792 \N 0 0 \N \N f \N 434815 2024-02-22 11:10:30.265 2024-02-22 11:20:31.512 \N Seven https://example.com/ 19096 314277 314108.314277.434815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2711681255364 0 \N \N f 0 \N 0 206283317 0 f f \N \N \N \N 314108 \N 0 0 \N \N f \N 432311 2024-02-20 10:06:39.601 2024-02-20 10:16:41.091 Play single finally social almost serious. Catch b Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nSafe pass wife stay effort mission. Major long now hand exampl https://example.com/ 20979 \N 432311 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 14.9042754888772 0 \N \N f 0 \N 18 121131836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433263 2024-02-21 00:39:08.422 2024-02-21 00:49:09.336 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nTree https://example.com/ 19118 433089 433024.433089.433263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8188619075274 0 \N \N f 0 \N 1 229946930 0 f f \N \N \N \N 433024 \N 0 0 \N \N f \N 433053 2024-02-20 21:35:37.734 2024-02-20 21:45:38.638 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nShe loss lawyer raise without right https://example.com/ 19967 432822 432822.433053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19312761603354 0 \N \N f 0 \N 1 241707279 0 f f \N \N \N \N 432822 \N 0 0 \N \N f \N 432344 2024-02-20 11:00:03.482 2024-02-20 11:10:04.256 Network author Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region m https://example.com/ 15200 \N 432344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93810025536293 0 \N \N f 0 \N 99 245745987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433965 2024-02-21 16:48:44.288 2024-02-21 16:58:45.948 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able https://example.com/ 18556 433958 433886.433958.433965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8580734884552 0 \N \N f 0 \N 0 92700516 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 439910 2024-02-26 20:40:21.984 2024-02-26 20:50:23.291 \N Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek natur https://example.com/ 19021 439859 439130.439577.439859.439910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7980211192886 0 \N \N f 0 \N 1 138323465 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 439919 2024-02-26 20:43:13.587 2024-02-26 20:53:15.005 \N Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel h https://example.com/ 16950 439573 439390.439573.439919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5657494074261 0 \N \N f 0 \N 0 69572620 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439920 2024-02-26 20:43:20.08 2024-02-26 20:53:21.146 \N Environment very hospital poi https://example.com/ 664 439918 439082.439903.439906.439908.439911.439918.439920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2331492180669 0 \N \N f 0 \N 0 199008929 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439577 2024-02-26 16:31:35.305 2024-02-26 16:41:37.209 \N Technology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack prof https://example.com/ 1785 439130 439130.439577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0633452848622 0 \N \N f 0 \N 4 119960191 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 439875 2024-02-26 20:18:50.095 2024-02-26 20:28:52.01 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nMention well why thank develop. Alone hotel ground. Specific skill f https://example.com/ 1628 439857 439844.439857.439875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5188620604282 0 \N \N f 0 \N 1 48956115 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 441827 2024-02-28 12:27:14.482 2024-02-28 12:37:16.89 \N Determine evidence bar. Evening where myself shoulder c https://example.com/ 7746 441823 441695.441823.441827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7836203907928 0 \N \N f 0 \N 2 18682152 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441823 2024-02-28 12:25:14.743 2024-02-28 12:35:16.951 \N Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share https://example.com/ 21239 441695 441695.441823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38233001314187 0 \N \N f 0 \N 15 191314328 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 439859 2024-02-26 20:05:48.353 2024-02-26 20:15:49.974 \N Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish abilit https://example.com/ 18862 439577 439130.439577.439859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8179024363509 0 \N \N f 0 \N 2 125575112 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 432909 2024-02-20 19:07:14.133 2024-02-20 19:17:15.612 Just condition wide hit national cultural me. Student out past heart cel Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nSell atte https://example.com/ 2056 \N 432909 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.44879955509908 0 \N \N f 0 \N 2 148463510 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439916 2024-02-26 20:42:18.844 2024-02-26 20:52:20.454 \N With officer scientist lette https://example.com/ 20433 439877 439877.439916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5302975719004 0 \N \N f 0 \N 0 124059317 0 f f \N \N \N \N 439877 \N 0 0 \N \N f \N 433889 2024-02-21 15:59:16.56 2024-02-21 16:09:18.351 For share something effect science confe Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early https://example.com/ 20502 \N 433889 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.8293067325716 0 \N \N f 0 \N 12 4284733 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439921 2024-02-26 20:43:42.557 2024-02-26 20:53:44.325 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile https://example.com/ 20006 439899 433889.434330.434401.434658.439899.439921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.838213765915 0 \N \N f 0 \N 0 228778874 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 439924 2024-02-26 20:44:26.281 2024-02-26 20:54:28.232 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. St https://example.com/ 16229 439844 439844.439924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6348396313343 0 \N \N f 0 \N 3 81652483 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 432957 2024-02-20 19:57:16.29 2024-02-20 20:07:19.288 Sell attention budget indicate. Others such agreement hot step training Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology https://example.com/ 20812 \N 432957 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 26.8220952532592 0 \N \N f 0 \N 11 112929987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439600 2024-02-26 16:47:24.521 2024-02-26 16:57:25.829 \N Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nWork suddenly pick. Interesting check state. Security low human career https://example.com/ 9863 439541 437723.437761.439541.439600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9482069204656 0 \N \N f 0 \N 0 33124654 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 439541 2024-02-26 16:03:23.516 2024-02-26 16:13:24.977 \N Last compare similar enjoy https://example.com/ 16965 437761 437723.437761.439541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6920135855235 0 \N \N f 0 \N 1 210280420 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 433969 2024-02-21 16:50:59.615 2024-02-21 17:01:00.821 \N Religious same wish cost make. https://example.com/ 21369 433954 433760.433807.433824.433954.433969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77306181050842 0 \N \N f 0 \N 0 7264786 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 433954 2024-02-21 16:44:04.666 2024-02-21 16:54:06.288 \N Condition lose result detail final will. Requ https://example.com/ 672 433824 433760.433807.433824.433954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3100774522446 0 \N \N f 0 \N 1 1458321 0 f f \N \N \N \N 433760 \N 0 0 \N \N f \N 434854 2024-02-22 11:51:52.519 2024-02-22 12:01:53.805 Individual low nice character home Congress At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress. https://example.com/ 7978 \N 434854 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.6155505051914 0 \N \N f 0 \N 0 87183118 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434850 2024-02-22 11:45:22.488 2024-02-22 11:55:23.283 \N Play director employee. https://example.com/ 2123 433828 433828.434850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.11441805341214 0 \N \N f 0 \N 3 151310178 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434843 2024-02-22 11:36:07.606 2024-02-22 11:46:09.6 \N Book it view should. Im https://example.com/ 20073 434818 434795.434796.434804.434818.434843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0585593251122 0 \N \N f 0 \N 0 1229767 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440918 2024-02-27 18:41:27.718 2024-02-27 18:51:28.43 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experienc https://example.com/ 1272 440900 440641.440704.440900.440918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.860039131468 0 \N \N f 0 \N 2 248541869 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 433049 2024-02-20 21:30:19.633 2024-02-20 21:40:20.922 Whether special arm economy house. Us six Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Ho https://example.com/ 1713 \N 433049 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 21.0077995029169 0 \N \N f 0 \N 6 30412800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433066 2024-02-20 21:44:46.648 2024-02-20 21:54:47.661 Book environmental good western supp Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially. https://example.com/ 18842 \N 433066 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4586449512267 0 \N \N f 0 \N 25 209994556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433302 2024-02-21 02:02:32.693 2024-02-21 02:12:33.662 Them reflect instead color. Public hour property wind step act year. Able stock Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actuall https://example.com/ 8506 \N 433302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5177683486126 0 \N \N f 0 \N 7 196085451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439542 2024-02-26 16:03:26.695 2024-02-26 16:13:27.92 \N Civil attorney sell amount. Finally card another record. Quickly https://example.com/ 20713 439506 438936.439343.439466.439469.439506.439542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.70793105466596 0 \N \N f 0 \N 0 68854547 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439469 2024-02-26 15:30:42.871 2024-02-26 15:40:44.382 \N Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become https://example.com/ 20713 439466 438936.439343.439466.439469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5898647575695 0 \N \N f 0 \N 2 17828854 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439918 2024-02-26 20:42:52.646 2024-02-26 20:52:54.234 \N Cut firm blood tell decision direction. Allow allow degree discus https://example.com/ 16456 439911 439082.439903.439906.439908.439911.439918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7821617626335 0 \N \N f 0 \N 1 152952846 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 433502 2024-02-21 09:14:53.102 2024-02-21 09:24:55.382 Agency party build and event thank leave Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially. https://example.com/ 20554 \N 433502 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.3415543087285 0 \N \N f 0 \N 0 133560924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433886 2024-02-21 15:53:36.763 2024-02-21 16:03:38.314 Record recent evening worry Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Underst https://example.com/ 16513 \N 433886 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.3301167106036 0 \N \N f 0 \N 13 135554376 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432890 2024-02-20 18:54:38.166 2024-02-20 19:04:39.001 Speech also his. White PM rather return. Indicate can Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adul https://example.com/ 687 \N 432890 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.9755659559447 0 \N \N f 0 \N 1 57025034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440865 2024-02-27 17:49:27.989 2024-02-27 17:59:28.947 \N House west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect https://example.com/ 16912 439848 439848.440865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.03877377307651 0 \N \N f 0 \N 0 121863995 0 f f \N \N \N \N 439848 \N 0 0 \N \N f \N 433554 2024-02-21 10:12:22.581 2024-02-21 10:22:23.668 May building suffer accept thousand race record play. Also may five re Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission. https://example.com/ 886 \N 433554 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 11.5324824057099 0 \N \N f 0 \N 0 37238849 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433403 2024-02-21 06:03:39.856 2024-02-21 06:13:41.355 Act lay son hear. Apply professional really remember Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw https://example.com/ 15549 \N 433403 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1851682583982 0 \N \N f 0 \N 16 166578099 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433648 2024-02-21 11:49:09.579 2024-02-21 11:59:10.842 Offer seem husband section res Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office. https://example.com/ 20137 \N 433648 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0824529535506 0 \N \N f 0 \N 0 53767871 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433721 2024-02-21 12:54:56.159 2024-02-21 13:04:57.605 Remember draw realize. Include soon my person involve red sing different. Me She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic m https://example.com/ 19662 \N 433721 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.24707939074018 0 \N \N f 0 \N 7 169871720 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434013 2024-02-21 17:19:35.25 2024-02-21 17:29:36.641 Lay garden sing air theory. Item simply month guess better conference game. Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nInternational ground thought computer somebody support industry. Part minute some according https://example.com/ 20058 \N 434013 \N \N \N \N \N \N \N \N science \N ACTIVE \N 18.6375419429632 0 \N \N f 0 \N 7 90628166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441433 2024-02-28 03:59:34.898 2024-02-28 04:09:51.767 Center stand near long painting left sense. Employee hour position young. Simpl Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil. https://example.com/ 13878 \N 441433 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 18.3198588239732 0 \N \N f 0 \N 0 79072078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430823 2024-02-19 15:06:53.372 2024-02-19 15:16:54.723 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull g https://example.com/ 6741 430488 430488.430823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.48709252520757 0 \N \N f 0 \N 0 156647115 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 433760 2024-02-21 13:34:48.146 2024-02-21 13:44:49.759 Wrong according some him. Foot color analysis s Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nSide rather law learn. Continue executive there garden ai https://example.com/ 5449 \N 433760 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.5247795859765 0 \N \N f 0 \N 8 174998816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433056 2024-02-20 21:38:33.853 2024-02-20 21:48:35.17 Happy strong Democrat some goal Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option https://example.com/ 19976 \N 433056 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 24.1662038261832 0 \N \N f 0 \N 7 48732176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433853 2024-02-21 15:12:29.674 2024-02-21 15:22:31.284 Never heavy table particularly land key base. Newspaper five Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law https://example.com/ 18608 \N 433853 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 20.3908675918751 0 \N \N f 0 \N 1 195002974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434814 2024-02-22 11:09:58.432 2024-02-22 11:19:59.491 Enough book hope yard store together camera Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood pro https://example.com/ 1745 \N 434814 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.04954463809693 0 \N \N f 0 \N 3 201804296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434172 2024-02-21 18:45:31.281 2024-02-21 18:55:32.638 According shake the attack guy Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step. https://example.com/ 12245 \N 434172 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.49340689733187 0 \N \N f 0 \N 1 85067360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434593 2024-02-22 06:04:45.119 2024-02-22 06:14:46.367 \N Wear role agency. Enter back require mission piece important especially. Those just state interv https://example.com/ 9496 434278 434278.434593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0943856009555 0 \N \N f 0 \N 0 210337188 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434589 2024-02-22 06:01:05.032 2024-02-22 06:11:06.369 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade repre https://example.com/ 5036 434285 434285.434589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.7872401381151 0 \N \N f 0 \N 0 226482766 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 441536 2024-02-28 07:44:07.544 2024-02-28 07:54:08.705 \N Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader ma https://example.com/ 687 441534 441333.441396.441523.441534.441536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5972119278392 0 \N \N f 0 \N 1 29601933 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 439935 2024-02-26 20:49:00.13 2024-02-26 20:59:01.42 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general wat https://example.com/ 3213 439934 439844.439854.439914.439922.439930.439934.439935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.029416595117 0 \N \N f 0 \N 1 45327817 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434551 2024-02-22 04:56:49.986 2024-02-22 05:06:51.464 \N Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may ca https://example.com/ 14857 434516 434278.434298.434310.434516.434551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.50250774355545 0 \N \N f 0 \N 1 69159126 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434608 2024-02-22 06:20:13.661 2024-02-22 06:30:14.94 \N Word around effect game light https://example.com/ 18829 434552 434541.434552.434608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6344131837174 0 \N \N f 0 \N 0 59272018 0 f f \N \N \N \N 434541 \N 0 0 \N \N f \N 434553 2024-02-22 04:58:33.356 2024-02-22 05:08:34.907 \N Affect https://example.com/ 16789 434498 434498.434553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.297871072024485 0 \N \N f 0 \N 0 6259761 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 439931 2024-02-26 20:46:13.05 2024-02-26 20:56:14.457 \N Field rock decide physical role these produce camera. Scene https://example.com/ 1745 439799 439390.439799.439931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7187117332865 0 \N \N f 0 \N 0 198668947 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434592 2024-02-22 06:04:07.06 2024-02-22 06:14:08.143 \N Himself seem along exist population development possible easy https://example.com/ 1737 434551 434278.434298.434310.434516.434551.434592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1926086236287 0 \N \N f 0 \N 0 236534971 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434226 2024-02-21 19:31:55.239 2024-02-21 19:41:56.733 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Fo https://example.com/ 9107 434091 433828.434031.434091.434226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1150137553171 0 \N \N f 0 \N 5 28785171 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434539 2024-02-22 04:25:51.841 2024-02-22 04:35:53.178 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expec https://example.com/ 18673 434278 434278.434539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8184076992928 0 \N \N f 0 \N 0 38335207 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434421 2024-02-21 23:57:02.668 2024-02-22 00:07:04.042 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult m https://example.com/ 8926 434278 434278.434421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4103150789545 0 \N \N f 0 \N 3 171108442 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434531 2024-02-22 04:09:50.632 2024-02-22 04:19:52.345 \N Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead c https://example.com/ 6616 434421 434278.434421.434531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4023746751686 0 \N \N f 0 \N 2 141759166 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439903 2024-02-26 20:36:48.848 2024-02-26 20:46:50.72 \N Main ball collection eye. Whatever test player carry. Tree https://example.com/ 15337 439082 439082.439903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7261460128576 0 \N \N f 0 \N 5 124303607 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 434494 2024-02-22 02:56:14.186 2024-02-22 03:06:15.915 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organizat https://example.com/ 13398 434483 434483.434494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5007427478012 0 \N \N f 0 \N 0 82842043 0 f f \N \N \N \N 434483 \N 0 0 \N \N f \N 439951 2024-02-26 20:57:48.383 2024-02-26 21:07:51.055 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white https://example.com/ 19852 439885 173498.439885.439951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.51780779440768 0 \N \N f 0 \N 0 62194600 0 f f \N \N \N \N 173498 \N 0 0 \N \N f \N 434482 2024-02-22 02:22:21.691 2024-02-22 02:32:23.89 \N Billion here large general understand. Sit action cold which. Approach level e https://example.com/ 12930 434440 434440.434482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39086317675097 0 \N \N f 0 \N 2 228908916 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 441452 2024-02-28 04:31:28.783 2024-02-28 04:41:30.298 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style https://example.com/ 713 441266 441077.441266.441452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0572274139994 0 \N \N f 0 \N 0 153439148 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 434305 2024-02-21 21:28:58.472 2024-02-21 21:38:59.617 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughou https://example.com/ 18774 434287 433828.434031.434091.434226.434237.434287.434305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3865028248158 0 \N \N f 0 \N 2 236506074 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434606 2024-02-22 06:19:18.735 2024-02-22 06:29:20.283 Bar adult subject hot student others plan Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Disc https://example.com/ 19735 \N 434606 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.4499660017989 0 \N \N f 0 \N 0 10630834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434607 2024-02-22 06:19:34.015 2024-02-22 06:29:35.307 \N Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nPlant development someone include maybe. Address return side response center. My recently some school safe https://example.com/ 5978 434501 434441.434501.434607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.99112910894837 0 \N \N f 0 \N 0 203958360 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 434596 2024-02-22 06:05:36.323 2024-02-22 06:15:38.183 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot t https://example.com/ 18690 330774 330698.330774.434596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3502396642249 0 \N \N f 0 \N 7 86266401 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 434603 2024-02-22 06:11:34.674 2024-02-22 06:21:36.568 \N We teacher join same push onto. Gas character each when condi https://example.com/ 13903 434558 434278.434558.434603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.516988703091 0 \N \N f 0 \N 4 171783775 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439940 2024-02-26 20:51:38.328 2024-02-26 21:01:39.858 \N Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell ne https://example.com/ 1012 439458 439390.439458.439940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0187976518935 0 \N \N f 0 \N 0 169665182 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439908 2024-02-26 20:39:16.531 2024-02-26 20:49:18.539 \N Myself measure first such real consumer. Only for author agree position couple. Remain l https://example.com/ 18306 439906 439082.439903.439906.439908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48526206044394 0 \N \N f 0 \N 3 5495725 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440883 2024-02-27 18:06:36.292 2024-02-27 18:16:37.045 \N Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They mid https://example.com/ 20500 439263 439263.440883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1710834650397 0 \N \N f 0 \N 0 231363778 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 434620 2024-02-22 06:45:10.467 2024-02-22 06:55:11.472 \N Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention su https://example.com/ 687 434560 434488.434560.434620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0514590206065 0 \N \N f 0 \N 0 143795702 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 434638 2024-02-22 07:17:20.534 2024-02-22 07:27:21.732 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. https://example.com/ 8287 432920 432920.434638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8203034670253 0 \N \N f 0 \N 0 98547928 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434649 2024-02-22 07:35:43.712 2024-02-22 07:45:45.294 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write ne https://example.com/ 18008 424230 424230.434649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17156777889687 0 \N \N f 0 \N 0 151147713 0 f f \N \N \N \N 424230 \N 0 0 \N \N f \N 434479 2024-02-22 02:09:25.714 2024-02-22 02:19:27.503 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nServe deep station probably writer. Perform back protect https://example.com/ 18209 434410 434410.434479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5877783728107 0 \N \N f 0 \N 0 24275227 0 f f \N \N \N \N 434410 \N 0 0 \N \N f \N 439864 2024-02-26 20:09:20.095 2024-02-26 20:19:21.898 \N Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nWish low party shake. https://example.com/ 21444 439811 439045.439811.439864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85574850692451 0 \N \N f 0 \N 3 176813588 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 441551 2024-02-28 08:00:05.754 2024-02-28 08:00:11.942 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. https://example.com/ 20554 441550 441550.441551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3150200611151 0 \N \N f 0 \N 0 199539135 0 f f \N \N \N \N 441550 \N 0 0 \N \N f \N 434543 2024-02-22 04:36:12.082 2024-02-22 04:46:13.497 Real late stop middle firm. Final b May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what. https://example.com/ 1480 \N 434543 \N \N \N \N \N \N \N \N security \N ACTIVE \N 0.0342879040025679 0 \N \N f 0 \N 0 124500571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434441 2024-02-22 00:31:39.312 2024-02-22 00:41:40.75 Any new necessary low. Option win do almost. Performance size politics Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech so https://example.com/ 4115 \N 434441 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 19.0142748064975 0 \N \N f 0 \N 5 143896739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439938 2024-02-26 20:49:47.021 2024-02-26 20:59:48.165 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west https://example.com/ 21119 439648 439390.439648.439938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.499626996161 0 \N \N f 0 \N 0 104496797 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439949 2024-02-26 20:57:39.689 2024-02-26 21:07:40.971 \N Mean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four pl https://example.com/ 9078 439844 439844.439949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06173220482406 0 \N \N f 0 \N 1 151860505 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 441541 2024-02-28 07:51:11.659 2024-02-28 08:01:13.344 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when stre https://example.com/ 15484 441536 441333.441396.441523.441534.441536.441541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2173850362656 0 \N \N f 0 \N 0 195245930 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 434544 2024-02-22 04:38:11.252 2024-02-22 04:48:12.468 Myself candidate idea state similar above. Firm billion money Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit. https://example.com/ 963 \N 434544 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.3495537484529 0 \N \N f 0 \N 0 25567401 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434362 2024-02-21 22:37:58.766 2024-02-21 22:48:00.133 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion po https://example.com/ 19535 434319 434319.434362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6883818001494 0 \N \N f 0 \N 2 8164238 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 434601 2024-02-22 06:10:27.197 2024-02-22 06:20:28.677 \N Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect sta https://example.com/ 21139 434535 434535.434601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0258724208861 0 \N \N f 0 \N 0 239534626 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434541 2024-02-22 04:32:21.342 2024-02-22 04:42:22.633 International ground thoug Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appe https://example.com/ 17526 \N 434541 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.09299698480096 0 \N \N f 0 \N 3 144391378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434844 2024-02-22 11:36:17.428 2024-02-22 11:46:18.724 \N International ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull https://example.com/ 5173 434793 434642.434643.434682.434755.434756.434793.434844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6074963220951 0 \N \N f 0 \N 0 196313549 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 437514 2024-02-24 17:28:23.929 2024-02-24 17:38:25.813 Push floor eco Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor m https://example.com/ 19417 \N 437514 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 28.226200462738 0 \N \N f 0 \N 0 249325474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439871 2024-02-26 20:14:35.637 2024-02-26 20:24:36.986 Professional remain report involve eye How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment https://example.com/ 20778 \N 439871 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 2.09642529514905 0 \N \N f 0 \N 0 52931278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434800 2024-02-22 11:02:33.036 2024-02-22 11:12:34.207 \N Line trade last nature number become. Left https://example.com/ 7903 434797 434795.434797.434800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0404659987312 0 \N \N f 0 \N 2 15943278 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439944 2024-02-26 20:52:51.054 2024-02-26 21:02:51.964 \N Everyo https://example.com/ 19322 439935 439844.439854.439914.439922.439930.439934.439935.439944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5678176105776 0 \N \N f 0 \N 0 167458654 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435036 2024-02-22 14:28:00.593 2024-02-22 14:38:01.815 A item peace although method. Maintain follow start government dream. E Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote. https://example.com/ 17519 \N 435036 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.55839869330089 0 \N \N f 0 \N 0 233001877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435596 2024-02-22 22:15:34.922 2024-02-22 22:25:36.046 Baby body day citizen change. Present identify never big cha Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say. https://example.com/ 678 \N 435596 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.842030707285 0 \N \N f 0 \N 4 177950490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439712 2024-02-26 18:12:50.644 2024-02-26 18:22:52.025 \N Sort thus staff hard network character production million. House develop theo https://example.com/ 1549 439663 437238.437581.438935.439611.439663.439712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.08727535188503 0 \N \N f 0 \N 0 109194128 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 439943 2024-02-26 20:52:39.907 2024-02-26 20:52:46.103 \N Customer reach nice. At himself those always appear how. Court https://example.com/ 12516 5415 5415.439943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3623639860298 0 \N \N f 0 \N 0 31011864 0 f f \N \N \N \N 5415 \N 0 0 \N \N f \N 439948 2024-02-26 20:56:08.296 2024-02-26 21:06:10.37 \N Near key among effort cover century https://example.com/ 1298 439711 439711.439948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4756996093452 0 \N \N f 0 \N 1 108289158 0 f f \N \N \N \N 439711 \N 0 0 \N \N f \N 434609 2024-02-22 06:24:20.67 2024-02-22 06:34:22.149 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Moveme https://example.com/ 20613 434488 434488.434609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4587665052359 0 \N \N f 0 \N 1 248846948 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 434263 2024-02-21 20:13:28.213 2024-02-21 20:23:29.999 Any tend power space fund inside evid Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make t https://example.com/ 899 \N 434263 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 14.2226829208106 0 \N \N f 0 \N 3 1643582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439677 2024-02-26 17:35:29.317 2024-02-26 17:45:30.582 Her particular kind sound hard big. Area door model need phone. Create exe Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer. https://example.com/ 6229 \N 439677 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.92351613100266 0 \N \N f 0 \N 3 233596498 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434483 2024-02-22 02:23:25.927 2024-02-22 02:33:28.064 Door western each. Thus first End inside like them according. Surface where https://example.com/ 9366 \N 434483 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.1431170743259 0 \N \N f 0 \N 1 233421821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434382 2024-02-21 23:11:03.756 2024-02-21 23:21:05.032 Not find attack light everything different. Certainly trave Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then. https://example.com/ 646 \N 434382 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.7477554397236 0 \N \N f 0 \N 0 158712475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434630 2024-02-22 06:57:51.666 2024-02-22 07:07:53.104 \N Should doctor pressure maybe six fight. Machine impact https://example.com/ 10273 434285 434285.434630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8696579276414 0 \N \N f 0 \N 0 209458518 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434402 2024-02-21 23:38:34.454 2024-02-21 23:48:35.568 Determine evidence bar. Evening where myself shoulder century number. End Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nPow https://example.com/ 1429 \N 434402 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 24.513434322598 0 \N \N f 0 \N 1 83330604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434616 2024-02-22 06:35:36.228 2024-02-22 06:45:37.742 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task somet https://example.com/ 17365 434278 434278.434616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6427018080524 0 \N \N f 0 \N 0 202701484 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434618 2024-02-22 06:42:45.989 2024-02-22 06:52:47.084 \N Thank rule physical https://example.com/ 13378 419731 419731.434618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7877215096855 0 \N \N f 0 \N 0 133952878 0 f f \N \N \N \N 419731 \N 0 0 \N \N f \N 434379 2024-02-21 23:07:30.939 2024-02-21 23:17:32.872 Reality front small we indeed per subject. Analysis indeed tell plant rest. C More recently quality d https://example.com/ 21329 \N 434379 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.69286181968591 0 \N \N f 0 \N 0 151149808 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439929 2024-02-26 20:45:39.928 2024-02-26 20:55:41.053 \N Reality four attention. Whose each design pull that wall work. Example together hold star. https://example.com/ 12220 439682 439390.439682.439929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5689608882346 0 \N \N f 0 \N 1 219716998 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434319 2024-02-21 21:48:26.631 2024-02-21 21:58:28.079 Build learn name environment. Which specific old rule. H Animal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern l https://example.com/ 5129 \N 434319 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 19.6503469333106 0 \N \N f 0 \N 7 242851956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434378 2024-02-21 23:01:31.793 2024-02-21 23:11:32.838 Way all line after. Only troubl Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Read https://example.com/ 11714 \N 434378 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 16.3221601888944 0 \N \N f 0 \N 0 173799678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434332 2024-02-21 21:58:17.697 2024-02-21 22:08:19.637 Build toward black meet no your. Face stay make fill then sit Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major f https://example.com/ 19996 \N 434332 \N \N \N \N \N \N \N \N health \N ACTIVE \N 19.2415492810801 0 \N \N f 0 \N 1 138799728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434612 2024-02-22 06:33:29.833 2024-02-22 06:43:31.133 \N Majority certainly song be https://example.com/ 12976 434026 433844.434026.434612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1316029770864 0 \N \N f 0 \N 0 61867188 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434578 2024-02-22 05:39:32.913 2024-02-22 05:49:34.263 \N Several follow valu https://example.com/ 19909 434535 434535.434578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1626459271595 0 \N \N f 0 \N 1 173474837 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434283 2024-02-21 21:01:03.948 2024-02-21 21:11:05.257 Between buy half story. Buy whom significant modern Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nFinancial all deep why https://example.com/ 20616 \N 434283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2305148812516 0 \N \N f 0 \N 0 93317833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439941 2024-02-26 20:51:49.582 2024-02-26 21:01:50.927 \N Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the mysel https://example.com/ 20706 439902 439822.439846.439880.439902.439941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6381040824879 0 \N \N f 0 \N 0 133139590 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 440970 2024-02-27 19:31:36.398 2024-02-27 19:41:38.527 \N Act lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order ab https://example.com/ 3439 440959 440959.440970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5180736342754 0 \N \N f 0 \N 0 176550030 0 f f \N \N \N \N 440959 \N 0 0 \N \N f \N 434364 2024-02-21 22:47:38.108 2024-02-21 22:57:39.531 West tend alone prepare build view support. Physical eye ra Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressur https://example.com/ 814 \N 434364 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 7.8613825224383 0 \N \N f 0 \N 2 233874628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435870 2024-02-23 05:56:35.531 2024-02-23 06:06:37.07 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier wa https://example.com/ 12072 435711 435657.435711.435870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6404636422469 0 \N \N f 0 \N 1 88236108 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 434289 2024-02-21 21:11:02.319 2024-02-21 21:21:03.231 Tax kid loss hear ahead common best see. Number thus which story list force cit Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture. https://example.com/ 20562 \N 434289 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.90709230755694 0 \N \N f 0 \N 3 174149790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436086 2024-02-23 12:13:42.206 2024-02-23 12:23:43.485 \N History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Rec https://example.com/ 21624 435610 435610.436086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7355691534721 0 \N \N f 0 \N 1 50898523 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 434271 2024-02-21 20:33:20.247 2024-02-21 20:43:28.243 Follow commercial image consider media these. Drop program study finis Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model he https://example.com/ 8074 \N 434271 \N \N \N \N \N \N \N \N science \N ACTIVE \N 1.27659852885969 0 \N \N f 0 \N 0 214839405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440975 2024-02-27 19:34:30.188 2024-02-27 19:44:31.376 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nShe for deep administration everybody under front over. Other from fire popul https://example.com/ 13249 440935 440725.440785.440935.440975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0754566897376 0 \N \N f 0 \N 0 105228125 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441413 2024-02-28 03:08:01.523 2024-02-28 03:18:02.975 \N Science sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these b https://example.com/ 10490 441400 441375.441400.441413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5251333616931 0 \N \N f 0 \N 1 30845727 0 f f \N \N \N \N 441375 \N 0 0 \N \N f \N 439788 2024-02-26 19:17:45.594 2024-02-26 19:27:48.072 \N Follow commercial ima https://example.com/ 660 439513 439513.439788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.87188314310277 0 \N \N f 0 \N 0 68236085 0 f f \N \N \N \N 439513 \N 0 0 \N \N f \N 434610 2024-02-22 06:25:09.484 2024-02-22 06:35:10.786 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite https://example.com/ 1236 434577 434577.434610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4392630370804 0 \N \N f 0 \N 3 93937220 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 434611 2024-02-22 06:33:01.409 2024-02-22 06:43:02.462 \N Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need mana https://example.com/ 19282 434560 434488.434560.434611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5309502523707 0 \N \N f 0 \N 1 218622213 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 439952 2024-02-26 20:58:38.023 2024-02-26 21:08:39.619 Poor appear go since involve. How form no director Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer. https://example.com/ 1002 \N 439952 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 28.7981131256999 0 \N \N f 0 \N 0 128498840 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434952 2024-02-22 13:24:36.058 2024-02-22 13:34:51.914 \N Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. https://example.com/ 2703 434795 434795.434952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.02531314513212 0 \N \N f 0 \N 1 11196481 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439933 2024-02-26 20:47:07.08 2024-02-26 20:57:08.271 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior televisi https://example.com/ 1658 439777 439390.439633.439777.439933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.33825288570412 0 \N \N f 0 \N 0 63978548 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434591 2024-02-22 06:01:49.75 2024-02-22 06:11:50.915 Anyone himself set window report. Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. https://example.com/ 2000 \N 434591 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 9.05824309973365 0 \N \N f 0 \N 3 221768946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434623 2024-02-22 06:51:10.099 2024-02-22 07:01:11.534 \N Support structure season energy group. Imp https://example.com/ 17183 434591 434591.434623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8945870503997 0 \N \N f 0 \N 0 168505771 0 f f \N \N \N \N 434591 \N 0 0 \N \N f \N 435438 2024-02-22 19:28:18.74 2024-02-22 19:38:20.369 \N Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task mor https://example.com/ 1162 435295 435217.435275.435277.435295.435438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.4919142901552 0 \N \N f 0 \N 5 155522043 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435601 2024-02-22 22:18:13.316 2024-02-22 22:28:15.654 \N P https://example.com/ 21523 435457 435457.435601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1101084708155 0 \N \N f 0 \N 0 50512121 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 436989 2024-02-24 09:03:20.622 2024-02-24 09:13:21.571 \N Myself effort community ago while https://example.com/ 14357 436988 436983.436988.436989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7409971954804 0 \N \N f 0 \N 4 90047816 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 443411 2024-02-29 12:50:07.4 2024-02-29 13:00:09.592 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share https://example.com/ 18119 443342 443187.443342.443411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5346103301537 0 \N \N f 0 \N 0 232184955 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443402 2024-02-29 12:38:22.99 2024-02-29 12:48:25.27 \N Grow le https://example.com/ 1740 443203 442986.443203.443402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3051493198944 0 \N \N f 0 \N 1 195630518 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 434614 2024-02-22 06:33:58.626 2024-02-22 06:44:00.439 \N Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine pain https://example.com/ 1354 433844 433844.434614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.140963564552266 0 \N \N f 0 \N 0 133193359 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 434629 2024-02-22 06:56:25.237 2024-02-22 07:06:26.487 \N Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve mi https://example.com/ 697 434535 434535.434629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1955943131242 0 \N \N f 0 \N 0 159488234 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 435396 2024-02-22 18:55:32.674 2024-02-22 19:05:34.417 \N Reality front small we indeed per subject. Analysis indeed tell p https://example.com/ 19533 435261 435261.435396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7986118610767 0 \N \N f 0 \N 3 133535904 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 434580 2024-02-22 05:41:09.055 2024-02-22 05:51:10.064 \N Scientist light the everything find window is https://example.com/ 12744 434578 434535.434578.434580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5798044875395 0 \N \N f 0 \N 0 132948855 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434622 2024-02-22 06:47:36.229 2024-02-22 06:57:37.186 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill alth https://example.com/ 836 434615 434615.434622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.529838421212 0 \N \N f 0 \N 0 69973075 0 f f \N \N \N \N 434615 \N 0 0 \N \N f \N 435034 2024-02-22 14:26:40.186 2024-02-22 14:36:41.469 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development https://example.com/ 21338 312024 312024.435034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1429056374835 0 \N \N f 0 \N 0 227866182 0 f f \N \N \N \N 312024 \N 0 0 \N \N f \N 441538 2024-02-28 07:45:27.699 2024-02-28 07:55:29.417 \N Increase section kind decision. Individual mission song always form parent top. C https://example.com/ 18310 441535 441333.441535.441538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9713072425059 0 \N \N f 0 \N 1 222275425 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 439926 2024-02-26 20:45:11.944 2024-02-26 20:55:13.544 Statement could up son I. Range book pol For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break. https://example.com/ 16789 \N 439926 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 28.7704104763904 0 \N \N f 0 \N 1 123609388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440519 2024-02-27 12:48:26.105 2024-02-27 12:58:27.473 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before p https://example.com/ 19852 440496 440422.440496.440519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8831420844278 0 \N \N f 0 \N 4 57551255 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 435431 2024-02-22 19:23:19.837 2024-02-22 19:33:20.841 \N Moment smile cell cold road happen cause. Give human recently series serv https://example.com/ 5728 435350 435217.435350.435431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.04094092866521 0 \N \N f 0 \N 0 163051212 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 439699 2024-02-26 17:56:50.683 2024-02-26 18:06:53.298 Play director employee. Tend Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel con https://example.com/ 11956 \N 439699 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.80555420201304 0 \N \N f 0 \N 20 122453794 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440959 2024-02-27 19:17:59.679 2024-02-27 19:28:01.197 Test rock daughter nation moment. Article want Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. F https://example.com/ 19852 \N 440959 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.22557962865476 0 \N \N f 0 \N 3 9686691 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440984 2024-02-27 19:44:07.592 2024-02-27 19:54:09.665 Few system pick do Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue ea https://example.com/ 16965 \N 440984 \N \N \N \N \N \N \N \N health \N ACTIVE \N 23.1173392488869 0 \N \N f 0 \N 4 61472218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434621 2024-02-22 06:45:32.008 2024-02-22 06:55:32.898 \N Eye million figure now as c https://example.com/ 20573 434609 434488.434609.434621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55228876513838 0 \N \N f 0 \N 0 28356572 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 441535 2024-02-28 07:43:59.769 2024-02-28 07:54:00.629 \N Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. https://example.com/ 20180 441333 441333.441535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0408693772812 0 \N \N f 0 \N 2 35784046 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441492 2024-02-28 05:42:23.344 2024-02-28 05:52:24.897 \N Republican begin audience gu https://example.com/ 7510 441443 441443.441492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.05232459316 0 \N \N f 0 \N 0 133537339 0 f f \N \N \N \N 441443 \N 0 0 \N \N f \N 434644 2024-02-22 07:31:24.204 2024-02-22 07:41:25.377 \N Want fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nFrom democratic trial American blu https://example.com/ 19087 434556 434535.434556.434644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9123313142159 0 \N \N f 0 \N 0 245209114 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 439953 2024-02-26 20:59:38.572 2024-02-26 21:09:40.568 Family material upon Democrat. The remain appear information degree. Same employ Somebody cold factor the https://example.com/ 899 \N 439953 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.9024524429566 0 \N \N f 0 \N 0 156776383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434632 2024-02-22 07:00:04.673 2024-02-22 07:10:06.531 Artist sound return full resource lay \N https://example.com/ 10063 \N 434632 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.4615820334512 0 \N \N f 0 \N 1 69035462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434635 2024-02-22 07:05:07.532 2024-02-22 07:15:08.854 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist r https://example.com/ 18403 434278 434278.434635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6317746636544 0 \N \N f 0 \N 1 235331029 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434628 2024-02-22 06:54:32.408 2024-02-22 07:04:33.677 \N She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign https://example.com/ 21164 434610 434577.434610.434628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6548295101558 0 \N \N f 0 \N 1 154957038 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 434633 2024-02-22 07:00:05.26 2024-02-22 07:00:10.677 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior sta https://example.com/ 20606 434632 434632.434633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1607049031365 0 \N \N f 0 \N 0 238146573 0 f f \N \N \N \N 434632 \N 0 0 \N \N f \N 434405 2024-02-21 23:42:40.63 2024-02-21 23:52:42.023 \N Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nSame nee https://example.com/ 21083 434285 434285.434405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.42975967266301 0 \N \N f 0 \N 0 154993158 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 441109 2024-02-27 21:19:03.714 2024-02-27 21:29:04.71 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar mainta https://example.com/ 19121 441105 441087.441105.441109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5246750580495 0 \N \N f 0 \N 0 44714131 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 434648 2024-02-22 07:34:16.13 2024-02-22 07:44:17.897 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. C https://example.com/ 19888 434625 434535.434625.434648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7088627942777 0 \N \N f 0 \N 0 175395286 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434947 2024-02-22 13:20:32.122 2024-02-22 13:30:33.445 Move treatment rock open. Everything type become emplo Want fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process https://example.com/ 19309 \N 434947 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 29.3325378473671 0 \N \N f 0 \N 0 109387737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438789 2024-02-26 00:46:30.367 2024-02-26 00:56:32.019 \N Response fina https://example.com/ 9169 438758 438758.438789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75844518276883 0 \N \N f 0 \N 0 231896526 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 434654 2024-02-22 07:38:39.154 2024-02-22 07:48:41.105 \N Again reveal time hot kind own. Be https://example.com/ 18178 431241 431241.434654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1761576308341 0 \N \N f 0 \N 0 239404079 0 f f \N \N \N \N 431241 \N 0 0 \N \N f \N 435045 2024-02-22 14:39:44.504 2024-02-22 14:49:46.128 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fac https://example.com/ 13843 435022 434440.435022.435045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39236274831794 0 \N \N f 0 \N 1 3724894 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 440528 2024-02-27 13:10:47.618 2024-02-27 13:20:49.66 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important part https://example.com/ 12721 440519 440422.440496.440519.440528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0910150231988 0 \N \N f 0 \N 3 174669734 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440496 2024-02-27 12:13:23.534 2024-02-27 12:23:25.356 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him https://example.com/ 1142 440422 440422.440496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0396381755798 0 \N \N f 0 \N 5 130746293 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 435193 2024-02-22 16:29:34.752 2024-02-22 16:39:36.893 \N Great how before current effort because. Simply increase rea https://example.com/ 21577 433114 433114.435193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8868572605224 0 \N \N f 0 \N 0 51391537 0 f f \N \N \N \N 433114 \N 0 0 \N \N f \N 434653 2024-02-22 07:38:05.317 2024-02-22 07:48:07.069 \N Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nDoctor operation because train https://example.com/ 19501 434376 433828.434376.434653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2573874982647 0 \N \N f 0 \N 0 118187083 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434672 2024-02-22 08:09:31.46 2024-02-22 08:19:32.61 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nForce job rad https://example.com/ 2098 434639 433828.434639.434672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.53273799375029 0 \N \N f 0 \N 1 186240549 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434662 2024-02-22 07:54:26.307 2024-02-22 08:04:27.922 \N Figure foreign game ok first agreement. Figure specific threat agre https://example.com/ 986 434646 434646.434662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.71186571833103 0 \N \N f 0 \N 1 4359917 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 439956 2024-02-26 21:01:56.426 2024-02-26 21:11:58.486 \N Also weight particular less set southern. Score article believe in executive lot music. https://example.com/ 1740 439818 439045.439811.439818.439956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.59323046686394 0 \N \N f 0 \N 2 146761502 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 435163 2024-02-22 16:16:18.361 2024-02-22 16:26:19.486 \N Service technology include study exactly enter. Country each these wes https://example.com/ 15409 435136 435136.435163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8158153021653 0 \N \N f 0 \N 1 242626937 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 434801 2024-02-22 11:02:34.917 2024-02-22 11:12:36.825 \N Admit difficult figure parent account in. Suffer administra https://example.com/ 20502 434795 434795.434801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3643939566711 0 \N \N f 0 \N 6 28306169 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435172 2024-02-22 16:19:39.696 2024-02-22 16:29:40.652 \N Blue the that local central middle themselves effect. Concern s https://example.com/ 19961 435017 435017.435172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3155317490672 0 \N \N f 0 \N 0 120766531 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N 435180 2024-02-22 16:23:08.534 2024-02-22 16:33:11.006 \N Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nGame own manager. Everybody old prepare almost https://example.com/ 17041 435152 435046.435152.435180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4943782936933 0 \N \N f 0 \N 0 201053972 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 434595 2024-02-22 06:05:08.059 2024-02-22 06:15:09.124 Tax here if project. Thing how simply then. Again Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade e https://example.com/ 15617 \N 434595 \N \N \N \N \N \N \N \N health \N ACTIVE \N 2.82296721519742 0 \N \N f 0 \N 2 17033979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434634 2024-02-22 07:00:33.138 2024-02-22 07:10:34.767 \N Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control https://example.com/ 1006 434385 434385.434634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9468393068851 0 \N \N f 0 \N 0 66231837 0 f f \N \N \N \N 434385 \N 0 0 \N \N f \N 434822 2024-02-22 11:14:20.873 2024-02-22 11:24:22.623 Company save finally water. Agree choice until mean exactly. Century three usual Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise. https://example.com/ 19537 \N 434822 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.08068219364448 0 \N \N f 0 \N 1 187985779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435022 2024-02-22 14:18:28.167 2024-02-22 14:28:29.503 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Quest https://example.com/ 21342 434440 434440.435022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0010063986126 0 \N \N f 0 \N 2 2656681 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 439962 2024-02-26 21:05:47.887 2024-02-26 21:15:49.349 \N Already real me back ahead especially dru https://example.com/ 19034 439896 432619.432681.439896.439962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31440971417791 0 \N \N f 0 \N 0 121395855 0 f f \N \N \N \N 432619 \N 0 0 \N \N f \N 434666 2024-02-22 08:01:51.994 2024-02-22 08:11:53.811 \N Wind put daught https://example.com/ 16536 434576 430109.430351.431085.434576.434666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6894169910818 0 \N \N f 0 \N 0 98961278 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 434576 2024-02-22 05:36:08.744 2024-02-22 05:46:10.441 \N Top happen reveal west https://example.com/ 638 431085 430109.430351.431085.434576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5815227224784 0 \N \N f 0 \N 1 198714559 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 434650 2024-02-22 07:36:35.34 2024-02-22 07:46:36.978 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics with https://example.com/ 21605 434627 434627.434650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8416951370175 0 \N \N f 0 \N 1 244187350 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 434696 2024-02-22 09:17:50.413 2024-02-22 09:27:52.006 \N Couple writer life commercial ar https://example.com/ 21424 434627 434627.434696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.56313850472498 0 \N \N f 0 \N 0 180027473 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 434642 2024-02-22 07:29:16.112 2024-02-23 07:17:20.392 Answer party get head Democrat. Marri Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. https://example.com/ 20546 \N 434642 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 3.39483033915851 0 \N \N f 0 \N 16 53319593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434657 2024-02-22 07:44:45.655 2024-02-22 07:54:47.183 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher https://example.com/ 7553 434381 433828.434381.434657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1076466530031 0 \N \N f 0 \N 0 53831985 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434525 2024-02-22 04:01:25.11 2024-02-22 04:11:26.702 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn pl https://example.com/ 19267 434465 434465.434525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79416685268391 0 \N \N f 0 \N 1 154091964 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N 434502 2024-02-22 03:04:44.996 2024-02-22 03:14:46.091 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join https://example.com/ 19809 433828 433828.434502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2960817644178 0 \N \N f 0 \N 1 11429459 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434670 2024-02-22 08:06:29.459 2024-02-22 08:16:30.925 \N Record recent evening worry. Dir https://example.com/ 18667 434502 433828.434502.434670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3536323004776 0 \N \N f 0 \N 0 154087680 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434645 2024-02-22 07:32:53.851 2024-02-22 07:42:55.427 \N Industry benefit as tree standard worry c https://example.com/ 20871 434375 433828.433946.433993.434375.434645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31325703173796 0 \N \N f 0 \N 1 146644367 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 440560 2024-02-27 13:51:21.117 2024-02-27 14:01:22.134 \N Such house management. Bed defense remember help sit pull for. Owner https://example.com/ 1060 440538 440422.440523.440538.440560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2264183486266 0 \N \N f 0 \N 3 172207189 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 434898 2024-02-22 12:31:27.299 2024-02-22 12:41:29.593 \N Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel repres https://example.com/ 5129 434877 434646.434877.434898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0768703637577 0 \N \N f 0 \N 2 210134307 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434659 2024-02-22 07:49:04.827 2024-02-22 07:59:05.905 \N Threat successful admit write. Likely https://example.com/ 19036 434420 433828.434420.434659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19820924724134 0 \N \N f 0 \N 0 222094916 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439960 2024-02-26 21:03:11.232 2024-02-26 21:13:11.926 \N Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base https://example.com/ 6191 439932 439844.439924.439928.439932.439960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4301203379076 0 \N \N f 0 \N 0 242405620 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434667 2024-02-22 08:02:04.436 2024-02-22 08:12:06.124 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nSound clearly happen age onto imagine. Bed https://example.com/ 1620 434475 433828.434475.434667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.4060311400015 0 \N \N f 0 \N 3 112063997 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434669 2024-02-22 08:05:07.437 2024-02-22 08:15:08.522 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Wat https://example.com/ 2123 434493 433828.434493.434669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.24051437433414 0 \N \N f 0 \N 0 79105883 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439939 2024-02-26 20:50:40.935 2024-02-26 21:00:42.724 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total min https://example.com/ 732 439440 439390.439393.439440.439939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.61342457183707 0 \N \N f 0 \N 0 209987152 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434836 2024-02-22 11:27:57.384 2024-02-22 11:37:58.255 Maybe seem particular stand blood source. Certain focus forget police every Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best. https://example.com/ 1039 \N 434836 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.06043638700793 0 \N \N f 0 \N 0 104128888 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439954 2024-02-26 20:59:53.369 2024-02-26 21:09:54.972 \N Get executive stock move last. Find throw important tonight recent. Fa https://example.com/ 19458 439864 439045.439811.439864.439954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1957912696382 0 \N \N f 0 \N 2 97627990 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 434671 2024-02-22 08:07:50.089 2024-02-22 08:17:51.82 \N News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation f https://example.com/ 2390 434535 434535.434671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0648488596385 0 \N \N f 0 \N 0 199256473 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434678 2024-02-22 08:41:43.513 2024-02-22 08:51:44.806 \N Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail https://example.com/ 20026 434486 434277.434486.434678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5351097279764 0 \N \N f 0 \N 0 83137630 0 f f \N \N \N \N 434277 \N 0 0 \N \N f \N 434803 2024-02-22 11:03:26.757 2024-02-22 11:13:28.711 \N Big https://example.com/ 7119 434798 434795.434798.434803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.59150454910004 0 \N \N f 0 \N 0 58548687 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434698 2024-02-22 09:19:27.231 2024-02-22 09:29:28.657 Past everybody chance health. Minute choice your half by. Response e Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit. https://example.com/ 11561 \N 434698 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.94836410176433 0 \N \N f 0 \N 0 152664018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434712 2024-02-22 09:33:27.099 2024-02-22 09:43:28.27 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then pr https://example.com/ 2525 430292 430155.430292.434712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0184587445045 0 \N \N f 0 \N 0 911762 0 f f \N \N \N \N 430155 \N 0 0 \N \N f \N 438769 2024-02-26 00:20:57.964 2024-02-26 00:30:59.741 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store th https://example.com/ 4984 438758 438758.438769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8164316603391 0 \N \N f 0 \N 0 85392932 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 434655 2024-02-22 07:39:51.862 2024-02-22 07:49:53.259 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religi https://example.com/ 3729 434641 434641.434655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94353593148251 0 \N \N f 0 \N 1 238072574 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N 434660 2024-02-22 07:50:03.335 2024-02-22 08:00:05.242 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site wa https://example.com/ 11938 434488 434488.434660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7067728794207 0 \N \N f 0 \N 0 81114723 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 441552 2024-02-28 08:00:52.996 2024-03-01 02:00:53.171 \N Somebody head other https://example.com/ 9026 441178 440692.441027.441074.441178.441552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8450620006279 0 \N \N f 0 \N 0 89497569 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441550 2024-02-28 08:00:05.11 2024-02-28 08:10:07.249 Director policy industry. Degree wall bel \N https://example.com/ 21491 \N 441550 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.76386128591692 0 \N \N f 0 \N 1 244260920 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434399 2024-02-21 23:36:33.547 2024-02-21 23:46:35.05 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nDecision certain voice whe https://example.com/ 11698 434383 433934.434030.434383.434399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4965052833972 0 \N \N f 0 \N 0 134517760 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 439818 2024-02-26 19:37:48.992 2024-02-26 19:47:50.203 \N Beyond song throw blood hard. Show al https://example.com/ 21522 439811 439045.439811.439818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64397950401125 0 \N \N f 0 \N 3 134674578 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 435039 2024-02-22 14:32:42.181 2024-02-22 14:42:43.871 \N Recent yourself price region https://example.com/ 3409 434013 434013.435039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3159313073762 0 \N \N f 0 \N 0 190535343 0 f f \N \N \N \N 434013 \N 0 0 \N \N f \N 430852 2024-02-19 15:26:01.963 2024-02-19 15:36:02.599 \N Marriage interview green school study foot home like. Situation mind https://example.com/ 8074 430847 430824.430843.430847.430852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.03324039408018 0 \N \N f 0 \N 0 115791515 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 434582 2024-02-22 05:44:37.631 2024-02-22 05:54:38.959 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nOccur chair truth these officer focus b https://example.com/ 706 434387 433832.434387.434582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.81564151226609 0 \N \N f 0 \N 0 154217027 0 f f \N \N \N \N 433832 \N 0 0 \N \N f \N 434030 2024-02-21 17:27:25.709 2024-02-21 17:37:26.831 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move https://example.com/ 1773 433934 433934.434030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1445168691032 0 \N \N f 0 \N 2 165199302 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 434664 2024-02-22 07:57:12.752 2024-02-22 08:07:13.612 \N Offer seem husb https://example.com/ 4633 434591 434591.434664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.666912199625 0 \N \N f 0 \N 0 163488922 0 f f \N \N \N \N 434591 \N 0 0 \N \N f \N 434575 2024-02-22 05:35:08.696 2024-02-22 05:45:10.52 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nSeat commercial through propert https://example.com/ 21269 434535 434535.434575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8123698340267 0 \N \N f 0 \N 0 225436670 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434668 2024-02-22 08:03:08.554 2024-02-22 08:13:09.742 \N Key group certainly little spri https://example.com/ 20614 431086 430109.430351.431086.434668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3946880993559 0 \N \N f 0 \N 4 237024934 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 439932 2024-02-26 20:46:58.931 2024-02-26 20:57:00.18 \N Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nFund bring desig https://example.com/ 1291 439928 439844.439924.439928.439932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6629450351663 0 \N \N f 0 \N 1 58084530 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434663 2024-02-22 07:56:45.949 2024-02-22 08:06:48.255 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. https://example.com/ 8284 434655 434641.434655.434663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.37997999591821 0 \N \N f 0 \N 0 245498151 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N 434899 2024-02-22 12:32:49.556 2024-02-22 12:42:51.793 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie https://example.com/ 18180 434871 434646.434871.434899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6632844746368 0 \N \N f 0 \N 2 213375050 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 435048 2024-02-22 14:45:03.137 2024-02-22 14:55:04.15 \N Most describe tell speech without. Young lot ne https://example.com/ 1489 434498 434498.435048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.03945182553928 0 \N \N f 0 \N 0 177693489 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 436341 2024-02-23 15:54:10.786 2024-02-23 16:04:12.431 \N Somebody head others contain moment. Which our old outside property the https://example.com/ 20182 436271 435690.435929.436271.436341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.958877146788 0 \N \N f 0 \N 3 120559919 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 436453 2024-02-23 17:21:32.999 2024-02-23 17:31:35.363 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first https://example.com/ 20267 436316 436316.436453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3945194224442 0 \N \N f 0 \N 1 111009469 0 f f \N \N \N \N 436316 \N 0 0 \N \N f \N 430832 2024-02-19 15:12:07.039 2024-02-19 15:22:08.122 \N Individual low nice character home Congress prevent. Wall realize language open maj https://example.com/ 882 430626 430626.430832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.849113642516 0 \N \N f 0 \N 0 22132969 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 434656 2024-02-22 07:43:59.449 2024-02-22 07:54:01.076 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital dire https://example.com/ 2757 434441 434441.434656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7070028479881 0 \N \N f 0 \N 0 8886510 0 f f \N \N \N \N 434441 \N 0 0 \N \N f \N 435049 2024-02-22 14:45:13.761 2024-02-22 14:55:16.155 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college r https://example.com/ 21405 435030 435030.435049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.10742911275703 0 \N \N f 0 \N 0 225475992 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435715 2024-02-23 00:44:58.162 2024-02-23 00:54:59.211 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need ma https://example.com/ 1273 435623 434278.434503.434522.434598.434602.435622.435623.435715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2479894174657 0 \N \N f 0 \N 1 123583119 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435731 2024-02-23 01:01:27.625 2024-02-23 01:11:28.252 \N Alone force machine policy energy. Stand our ahead third. When challenge true s https://example.com/ 1959 435187 435154.435187.435731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6552219786356 0 \N \N f 0 \N 0 71701880 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 430868 2024-02-19 15:36:35.849 2024-02-19 15:46:37.203 \N View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Pr https://example.com/ 2256 430860 430860.430868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3725118848665 0 \N \N f 0 \N 0 148748688 0 f f \N \N \N \N 430860 \N 0 0 \N \N f \N 434677 2024-02-22 08:33:26.264 2024-02-22 08:43:28.194 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect respo https://example.com/ 14905 434333 434317.434333.434677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89561805532464 0 \N \N f 0 \N 0 244509853 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 434643 2024-02-22 07:29:56.193 2024-02-22 07:39:57.606 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Fo https://example.com/ 9341 434642 434642.434643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.56612957784643 0 \N \N f 0 \N 7 24744826 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434493 2024-02-22 02:54:59.14 2024-02-22 03:05:00.508 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice al https://example.com/ 1326 433828 433828.434493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20861036866465 0 \N \N f 0 \N 1 241409353 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434681 2024-02-22 08:47:02.53 2024-02-22 08:57:04.278 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nYard someone shake final someone purpose. Remain say care building event different https://example.com/ 15088 434637 434637.434681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0931894337031 0 \N \N f 0 \N 0 82532573 0 f f \N \N \N \N 434637 \N 0 0 \N \N f \N 434688 2024-02-22 09:02:56.799 2024-02-22 09:12:58.448 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep https://example.com/ 2390 434317 434317.434688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.78235179102415 0 \N \N f 0 \N 3 224724399 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 434676 2024-02-22 08:32:19.886 2024-02-22 08:42:21.106 \N Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nSeek military only heart. Side ahead exist spring. Commerc https://example.com/ 15045 434673 433828.434673.434676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9239613987145 0 \N \N f 0 \N 1 221692764 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434673 2024-02-22 08:16:33.209 2024-02-22 08:26:34.138 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nToo very admit general whole east. General ac https://example.com/ 2016 433828 433828.434673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6315131635095 0 \N \N f 0 \N 2 235111346 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439106 2024-02-26 11:26:30.04 2024-02-26 11:36:31.635 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determin https://example.com/ 1611 438737 438737.439106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5723152132173 0 \N \N f 0 \N 0 62587876 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 430874 2024-02-19 15:39:43.736 2024-02-19 15:49:45.168 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish f https://example.com/ 4763 430855 430854.430855.430874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27339798311377 0 \N \N f 0 \N 3 160960278 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 434684 2024-02-22 08:50:38.532 2024-02-22 09:00:39.644 \N Always friend price benefit. Reflect seem help none truth myself responsib https://example.com/ 5557 434646 434646.434684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4631865010447 0 \N \N f 0 \N 1 54117851 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434639 2024-02-22 07:18:45.104 2024-02-22 07:28:46.403 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Progra https://example.com/ 19132 433828 433828.434639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8070147521382 0 \N \N f 0 \N 2 248055594 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434599 2024-02-22 06:08:04.169 2024-02-22 06:18:05.25 \N Staff likely color finish at lot ball one. Scientist yeah develop requir https://example.com/ 10102 434597 434278.434503.434522.434597.434599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.59025013868268 0 \N \N f 0 \N 0 73998385 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435726 2024-02-23 00:55:52.286 2024-02-23 01:05:53.406 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Spec https://example.com/ 2525 435617 434278.434558.434603.435617.435726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7805605214828 0 \N \N f 0 \N 0 138270984 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435735 2024-02-23 01:04:41.203 2024-02-23 01:14:42.955 \N Live music official including police after into. May outside up son brother address. Specific statement u https://example.com/ 20599 435722 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.02286672149224 0 \N \N f 0 \N 5 202697435 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434690 2024-02-22 09:03:40.785 2024-02-22 09:13:42.558 \N Shake pretty eat probably pre https://example.com/ 1105 434672 433828.434639.434672.434690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7656348923562 0 \N \N f 0 \N 0 177196608 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434624 2024-02-22 06:51:56.211 2024-02-22 07:01:57.297 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no https://example.com/ 696 434611 434488.434560.434611.434624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.84474801248317 0 \N \N f 0 \N 0 206997824 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 430827 2024-02-19 15:09:35.025 2024-02-19 15:19:36.1 \N Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment f https://example.com/ 18271 430727 430488.430727.430827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58722546601131 0 \N \N f 0 \N 0 17423057 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 435032 2024-02-22 14:24:47.181 2024-02-22 14:34:49.307 \N Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nNew particularly consider condition entire traditional world. Traditional generati https://example.com/ 10862 434782 434782.435032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.77923175599248 0 \N \N f 0 \N 0 170213932 0 f f \N \N \N \N 434782 \N 0 0 \N \N f \N 430833 2024-02-19 15:12:08.082 2024-02-19 15:22:10.131 \N Pick fight simple up whose national face howev https://example.com/ 1802 430626 430626.430833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3865533025772 0 \N \N f 0 \N 0 227369441 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 434683 2024-02-22 08:49:28.492 2024-02-22 08:59:30.386 \N Author professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nSense edge father camera. Region whose enough vote up. Final knowledge push https://example.com/ 6384 434536 434536.434683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.494655464342522 0 \N \N f 0 \N 0 128464183 0 f f \N \N \N \N 434536 \N 0 0 \N \N f \N 434819 2024-02-22 11:11:19.106 2024-02-22 11:21:20.7 \N Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World https://example.com/ 16562 434806 434795.434806.434819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4793769817256 0 \N \N f 0 \N 0 93593585 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434536 2024-02-22 04:18:28.739 2024-02-22 04:28:30.437 Scene despite prepare need. Shoulder none until none. Look simply choose c Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nScene relate paper hospital. Star cultu https://example.com/ 638 \N 434536 \N \N \N \N \N \N \N \N security \N ACTIVE \N 24.5456650009497 0 \N \N f 0 \N 2 65128530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434389 2024-02-21 23:17:17.183 2024-02-21 23:27:18.474 \N Know son future suggest paper personal these million. Hund https://example.com/ 20993 433589 433588.433589.434389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6068371758063 0 \N \N f 0 \N 1 1821218 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 434693 2024-02-22 09:08:55.981 2024-02-22 09:18:57.541 Adult carry training two campaign. Happen military machine profess Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town. https://example.com/ 16816 \N 434693 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.8473059146244 0 \N \N f 0 \N 2 63007838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434689 2024-02-22 09:03:18.635 2024-02-22 09:13:19.773 \N Method show window brother. https://example.com/ 8569 434333 434317.434333.434689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7166848234728 0 \N \N f 0 \N 0 180323742 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 439988 2024-02-26 21:28:02.868 2024-02-26 21:38:04.832 \N Most describe tell speech without. Young lot next cell among war agre https://example.com/ 21482 439937 439844.439937.439988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5654714477362 0 \N \N f 0 \N 0 45625055 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434706 2024-02-22 09:30:58.409 2024-02-22 09:41:00.221 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star https://example.com/ 20904 434702 434693.434702.434706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83061848634755 0 \N \N f 0 \N 0 149478018 0 f f \N \N \N \N 434693 \N 0 0 \N \N f \N 434701 2024-02-22 09:24:05.169 2024-02-22 09:34:06.484 \N Miss keep probably p https://example.com/ 3745 434514 434514.434701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1689819990824 0 \N \N f 0 \N 0 171385970 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 434699 2024-02-22 09:21:48.187 2024-02-22 09:31:49.703 Author professional find face reflect. Defense interesting happy accept d Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability. https://example.com/ 21491 \N 434699 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.9645546391423 0 \N \N f 0 \N 0 130588243 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434651 2024-02-22 07:36:37.192 2024-02-22 07:46:38.999 \N Science sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. S https://example.com/ 1803 434285 434285.434651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1029248840764 0 \N \N f 0 \N 0 230455339 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434703 2024-02-22 09:29:07.72 2024-02-22 09:39:08.929 Very yes customer public music Result treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now. https://example.com/ 9356 \N 434703 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3042441759295 0 \N \N f 0 \N 0 144742670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434705 2024-02-22 09:30:01.447 2024-02-22 09:40:02.643 \N Civil attorney sell amount. Finally card another record. Quickly https://example.com/ 21491 433232 432920.433123.433232.434705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06327293348148 0 \N \N f 0 \N 0 44018404 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 435829 2024-02-23 04:31:40.955 2024-02-23 04:41:42.343 \N Water actually point similar. Box https://example.com/ 8004 435791 435596.435791.435829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5355403350233 0 \N \N f 0 \N 0 169078329 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N 431332 2024-02-19 18:33:50.531 2024-02-19 18:43:51.585 \N Standard choose white. Yard wo https://example.com/ 11018 391950 391950.431332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1694415899066 0 \N \N f 0 \N 0 116998517 0 f f \N \N \N \N 391950 \N 0 0 \N \N f \N 441358 2024-02-28 01:41:11.56 2024-02-28 01:51:12.738 \N Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The https://example.com/ 20504 441333 441333.441358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73595978087761 0 \N \N f 0 \N 1 205045171 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 434832 2024-02-22 11:22:57.592 2024-02-22 11:32:59.229 \N Source scientist hair let. Tough hit specific else. https://example.com/ 1488 434810 434810.434832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.21008600159237 0 \N \N f 0 \N 0 28819930 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N 430830 2024-02-19 15:10:37.916 2024-02-19 15:20:40.271 \N Small enjoy manage https://example.com/ 1319 430760 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951.429953.429954.430365.430572.430760.430830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57292826307184 0 \N \N f 0 \N 0 5750641 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 435074 2024-02-22 14:59:29.189 2024-02-22 15:09:30.394 \N Country audience including. Occur movie example https://example.com/ 16351 433796 433796.435074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6324471966627 0 \N \N f 0 \N 0 220206707 0 f f \N \N \N \N 433796 \N 0 0 \N \N f \N 434821 2024-02-22 11:14:02.024 2024-02-22 11:24:03.297 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nRange network baby that. Smile common political animal simple include https://example.com/ 640 434810 434810.434821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.912059245896621 0 \N \N f 0 \N 0 15789889 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N 434837 2024-02-22 11:28:01.918 2024-02-22 11:38:03.258 Possible late blood always bit. Plant in media population everyone. At Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prep https://example.com/ 21466 \N 434837 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.57501350766927 0 \N \N f 0 \N 3 182147924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430835 2024-02-19 15:12:52.374 2024-02-19 15:22:53.921 Per seat key down relationship step. Father camera modern contain. Again contin Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature. https://example.com/ 19036 \N 430835 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 20.4819543824734 0 \N \N f 0 \N 0 137040398 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434823 2024-02-22 11:14:26.32 2024-02-22 11:24:27.756 \N Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military en https://example.com/ 9352 433738 433738.434823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.367602331484 0 \N \N f 0 \N 0 133614410 0 f f \N \N \N \N 433738 \N 0 0 \N \N f \N 439917 2024-02-26 20:42:37.343 2024-02-26 20:52:38.695 Least start time do. Occur between avoid political use make. Nor no bo Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit particip https://example.com/ 2327 \N 439917 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 21.5080431250988 0 \N \N f 0 \N 4 100489058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430831 2024-02-19 15:11:55.406 2024-02-19 15:21:56.864 Specific child according. Behind far sure back stock. Watc Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nStore special above https://example.com/ 18774 \N 430831 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 1.36539325794942 0 \N \N f 0 \N 0 67618727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434686 2024-02-22 09:00:03.613 2024-02-22 09:10:04.518 \N Trade g https://example.com/ 17014 434285 434285.434686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82530128985928 0 \N \N f 0 \N 0 69815038 0 f f \N \N \N \N 434285 \N 0 0 \N \N f \N 434833 2024-02-22 11:27:04.714 2024-02-22 11:37:06.517 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nSuch house management. https://example.com/ 20889 434825 434795.434796.434825.434833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.30232326255553 0 \N \N f 0 \N 0 135097595 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434710 2024-02-22 09:32:10.581 2024-02-22 09:32:15.705 \N Force https://example.com/ 7818 286745 51787.286745.434710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3252305072194 0 \N \N f 0 \N 0 70127422 0 f f \N \N \N \N 51787 \N 0 0 \N \N f \N 434687 2024-02-22 09:00:58.071 2024-02-22 09:11:00.385 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me https://example.com/ 18819 434646 434646.434687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2316620418383 0 \N \N f 0 \N 4 1398560 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434825 2024-02-22 11:15:58.522 2024-02-22 11:26:00.039 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nBetween buy half story. Buy whom significant modern https://example.com/ 20972 434796 434795.434796.434825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1841316976507 0 \N \N f 0 \N 1 186138703 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435050 2024-02-22 14:45:59.694 2024-02-22 14:56:01.749 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break fam https://example.com/ 19888 435042 434791.434978.435042.435050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9404239295844 0 \N \N f 0 \N 0 230993684 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 433888 2024-02-21 15:59:14.451 2024-02-22 09:10:17.983 \N Soon raise sense ed https://example.com/ 14278 433845 433845.433888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6157424944188 0 \N \N f 0 \N 1 194870017 0 f f \N \N \N \N 433845 \N 0 0 \N \N f \N 434700 2024-02-22 09:22:38.359 2024-02-22 09:32:39.842 \N Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same o https://example.com/ 20153 434362 434319.434362.434700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9732431761514 0 \N \N f 0 \N 1 4454290 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 430840 2024-02-19 15:18:03.761 2024-02-19 15:28:04.597 Provide enjoy appear these. What car Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer. https://example.com/ 20157 \N 430840 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 21.5151221925974 0 \N \N f 0 \N 1 240480837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435077 2024-02-22 15:02:04.664 2024-02-22 15:12:06.156 \N Per billion sc https://example.com/ 1038 435053 435053.435077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.70399121733543 0 \N \N f 0 \N 0 137705709 0 f f \N \N \N \N 435053 \N 0 0 \N \N f \N 434691 2024-02-22 09:04:02.871 2024-02-22 09:14:04.128 \N Month explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nCell language east present. Federal arrive mu https://example.com/ 20452 434642 434642.434691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.018496239102 0 \N \N f 0 \N 1 248186786 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 440128 2024-02-27 00:29:12.592 2024-02-27 00:39:14.038 Stage can fish building senior. Through Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fa https://example.com/ 13174 \N 440128 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.6961247710203 0 \N \N f 0 \N 1 4330193 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440575 2024-02-27 14:10:35.839 2024-02-27 14:20:37.818 Live class artist pull nearly poor. Use v Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection. https://example.com/ 2724 \N 440575 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.37213396789908 0 \N \N f 0 \N 9 198560873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434692 2024-02-22 09:06:23.038 2024-02-22 09:16:24.752 \N Off behind four class talk. Nor these prove tend itself. Gas low https://example.com/ 19235 434389 433588.433589.434389.434692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18145422042541 0 \N \N f 0 \N 0 203006712 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 430860 2024-02-19 15:30:14.641 2024-02-19 15:40:16.251 Thank rule physical trip attorney staf Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town https://example.com/ 20376 \N 430860 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4411014380546 0 \N \N f 0 \N 4 34982143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430855 2024-02-19 15:28:05.385 2024-02-19 15:38:07.019 \N East fast despite responsibility machine. Listen mean about since. Bad accoun https://example.com/ 14795 430854 430854.430855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63538879023265 0 \N \N f 0 \N 4 205460192 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 434793 2024-02-22 10:58:10.671 2024-02-22 11:08:12.269 \N Republican total impact of. North off https://example.com/ 3347 434756 434642.434643.434682.434755.434756.434793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6136488571287 0 \N \N f 0 \N 1 202311948 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434711 2024-02-22 09:33:10.906 2024-02-22 09:43:12.969 Wrong spring according trial federal although. Apply technology tra Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile. https://example.com/ 20511 \N 434711 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.40078171947753 0 \N \N f 0 \N 0 210966071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434697 2024-02-22 09:19:26.858 2024-02-22 09:29:28.657 Second point director operation. Soon face Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class. https://example.com/ 14308 \N 434697 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.2784880556141 0 \N \N f 0 \N 4 152842387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433405 2024-02-21 06:05:45.24 2024-02-21 06:15:46.661 \N Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Espe https://example.com/ 11515 433359 433359.433405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.43843244638821 0 \N \N f 0 \N 1 156450229 0 f f \N \N \N \N 433359 \N 0 0 \N \N f \N 430848 2024-02-19 15:24:02.355 2024-02-19 15:34:04.422 \N That very sister attention myself out bit. Want fa https://example.com/ 2000 430626 430626.430848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90585135333872 0 \N \N f 0 \N 0 29335028 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430844 2024-02-19 15:22:08.522 2024-02-19 15:32:09.789 \N Maybe re https://example.com/ 21575 428994 428953.428994.430844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34774188767921 0 \N \N f 0 \N 0 239562991 0 f f \N \N \N \N 428953 \N 0 0 \N \N f \N 435078 2024-02-22 15:02:56.496 2024-02-22 15:12:58.205 \N Company save finally water. Agree choice until mean exactly. Century three https://example.com/ 21339 435073 435073.435078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5362661482837 0 \N \N f 0 \N 7 165940355 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 435108 2024-02-22 15:31:22.937 2024-02-22 15:41:24.354 \N Ground baby describe might. Practice https://example.com/ 13927 435105 435073.435078.435091.435105.435108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.808242688286 0 \N \N f 0 \N 0 22912202 0 f f \N \N \N \N 435073 \N 0 0 \N \N f \N 434953 2024-02-22 13:25:48.493 2024-02-22 13:35:49.693 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspap https://example.com/ 12911 434895 434317.434688.434895.434953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6257741257482 0 \N \N f 0 \N 1 170702585 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 430839 2024-02-19 15:17:25.168 2024-02-19 15:27:29.518 Remember before box of op Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color. https://example.com/ 21406 \N 430839 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 7.70927734527508 0 \N \N f 0 \N 0 171799012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430862 2024-02-19 15:31:16.397 2024-02-19 15:41:18.559 Result treatment smile capital teacher camera. News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision https://example.com/ 19980 \N 430862 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.8758428384077 0 \N \N f 0 \N 1 57020961 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434719 2024-02-22 09:43:10.262 2024-02-22 09:53:12.294 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis https://example.com/ 11996 433724 433555.433724.434719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.659442634160818 0 \N \N f 0 \N 0 242820146 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434754 2024-02-22 10:19:40.654 2024-02-22 10:29:41.776 \N Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nRace report base really very af https://example.com/ 664 434440 434440.434754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0039211860663 0 \N \N f 0 \N 0 190850672 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 437768 2024-02-24 23:42:12.426 2024-02-24 23:52:13.819 \N Build leg whole describe peace above https://example.com/ 19888 437667 437667.437768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72527643774241 0 \N \N f 0 \N 0 224490538 0 f f \N \N \N \N 437667 \N 0 0 \N \N f \N 430865 2024-02-19 15:33:14.335 2024-02-19 15:43:16.389 \N Before appear girl save technology. When speech on everyone tradition https://example.com/ 1298 430330 430330.430865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31667435774308 0 \N \N f 0 \N 1 170577689 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 439913 2024-02-26 20:41:07.346 2024-02-26 20:51:08.727 \N Than budget time gas choice opt https://example.com/ 19034 439844 439844.439913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4926017069231 0 \N \N f 0 \N 0 195133948 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 430841 2024-02-19 15:18:28.055 2024-02-19 15:28:30.081 \N Pretty street rather speak unit against keep. Else sur https://example.com/ 19174 430723 430723.430841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3922608391193 0 \N \N f 0 \N 0 14956864 0 f f \N \N \N \N 430723 \N 0 0 \N \N f \N 430846 2024-02-19 15:22:24.363 2024-02-19 15:32:26.141 \N Over partner wear d https://example.com/ 11866 430607 430607.430846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6343907467086 0 \N \N f 0 \N 0 192433769 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430854 2024-02-19 15:27:22.748 2024-02-19 15:37:24.18 Human guy both. Return once place four whatever. Like vo Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home. https://example.com/ 18658 \N 430854 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 28.8591627520654 0 \N \N f 0 \N 7 236627398 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434745 2024-02-22 10:05:29.126 2024-02-22 10:15:30.075 Blue why news enjoy include movie. Artist State wall myself intervie https://example.com/ 1438 \N 434745 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 10.7485676910785 0 \N \N f 0 \N 0 49298188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430853 2024-02-19 15:26:30.982 2024-02-19 15:36:32.075 \N Friend growth election water degree probably. Score spring tr https://example.com/ 910 430748 430726.430729.430732.430748.430853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2209482737394 0 \N \N f 0 \N 2 249714109 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 435754 2024-02-23 01:56:24.755 2024-02-23 02:06:25.921 \N Comme https://example.com/ 4521 435639 435639.435754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5674289922166 0 \N \N f 0 \N 0 37191001 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 442092 2024-02-28 14:51:25.119 2024-02-28 15:01:26.511 \N Finish only air provide. Wife can development pla https://example.com/ 11829 442087 441843.441979.442087.442092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71950372028409 0 \N \N f 0 \N 10 182394343 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442129 2024-02-28 15:08:27.1 2024-02-28 15:18:28.274 \N Lay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid tho https://example.com/ 16649 442108 441843.441979.442087.442092.442099.442108.442129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3795588639227 0 \N \N f 0 \N 7 80467562 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 439723 2024-02-26 18:22:12.712 2024-02-26 18:32:14.229 Though eye claim side government. Form program analysis somebody i Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Inte https://example.com/ 10060 \N 439723 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 18.2477472404127 0 \N \N f 0 \N 12 72573702 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439967 2024-02-26 21:18:05.164 2024-02-26 21:28:06.949 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate wo https://example.com/ 6499 439929 439390.439682.439929.439967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0601425936197 0 \N \N f 0 \N 0 187008600 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434873 2024-02-22 12:13:26.212 2024-02-22 12:23:27.393 \N Te https://example.com/ 15088 430342 430342.434873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0962504080802 0 \N \N f 0 \N 0 130961745 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 434882 2024-02-22 12:19:42.066 2024-02-22 12:29:43.047 Still power agent hospital. Evening style true person east Republic Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil. https://example.com/ 14472 \N 434882 \N \N \N \N \N \N \N \N history \N ACTIVE \N 15.6516049634733 0 \N \N f 0 \N 0 90166705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430842 2024-02-19 15:19:04.44 2024-02-19 15:29:06.142 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nSomebody cold factor themselves for mouth adult. Country receive anyo https://example.com/ 14255 430607 430607.430842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59360297096867 0 \N \N f 0 \N 0 198505841 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430890 2024-02-19 15:55:56.115 2024-02-19 16:05:58.319 \N Method https://example.com/ 11164 430677 430626.430677.430890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0826165890204 0 \N \N f 0 \N 0 67495007 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430869 2024-02-19 15:36:46.267 2024-02-19 15:46:48.224 Pretty street rather speak unit against keep. Else sure pay lose skin there. Ima Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually. https://example.com/ 12507 \N 430869 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9964260897567 0 \N \N f 0 \N 1 171724380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430843 2024-02-19 15:20:30.136 2024-02-19 15:30:32.073 \N Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focu https://example.com/ 7097 430824 430824.430843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.519179887332 0 \N \N f 0 \N 2 22627432 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 430847 2024-02-19 15:23:46.151 2024-02-19 15:33:48.193 \N Move purpose well important learn population study. Key turn career industry scene wide bus https://example.com/ 6041 430843 430824.430843.430847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9580018372744 0 \N \N f 0 \N 1 101520367 0 f f \N \N \N \N 430824 \N 0 0 \N \N f \N 434860 2024-02-22 12:00:04.565 2024-02-22 12:10:06.388 West tend alone prepare build view support. Physical eye raise feeling cost. Ea \N https://example.com/ 15560 \N 434860 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.4758948470013 0 \N \N f 0 \N 1 189443204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434484 2024-02-22 02:25:06.859 2024-02-22 02:35:08.488 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite m https://example.com/ 20220 434469 434469.434484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8452750939554 0 \N \N f 0 \N 1 4315515 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 430870 2024-02-19 15:37:10.153 2024-02-19 15:47:12.248 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congr https://example.com/ 20490 430258 430258.430870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8088221636682 0 \N \N f 0 \N 3 15280188 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 439990 2024-02-26 21:28:36.673 2024-02-26 21:38:38.227 Provide red song family quickly. Free point fish Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact. https://example.com/ 20657 \N 439990 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 13.5389378620263 0 \N \N f 0 \N 3 243553504 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434867 2024-02-22 12:04:30.186 2024-02-22 12:14:31.974 \N Under big evening others. Trip remain money region repo https://example.com/ 9183 434827 434827.434867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8680732084228 0 \N \N f 0 \N 1 219193082 0 f f \N \N \N \N 434827 \N 0 0 \N \N f \N 434858 2024-02-22 11:57:25.618 2024-02-22 12:07:27.003 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign cha https://example.com/ 21349 434829 434795.434796.434804.434818.434829.434858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4167758011557 0 \N \N f 0 \N 0 75597534 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434846 2024-02-22 11:38:44.853 2024-02-22 11:48:46.954 Before wrong success power prevent no Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad. https://example.com/ 2674 \N 434846 \N \N \N \N \N \N \N \N news \N ACTIVE \N 21.9421559039803 0 \N \N f 0 \N 0 172481018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434835 2024-02-22 11:27:49.586 2024-02-22 11:37:51.248 Step physical establish trip. Sell finish low drop sense Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run https://example.com/ 18468 \N 434835 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.89878799135686 0 \N \N f 0 \N 0 73472502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430828 2024-02-19 15:09:35.612 2024-02-19 21:33:35.7 \N Beyond song throw b https://example.com/ 20023 430626 430626.430828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.39739846012206 0 \N \N f 0 \N 0 147846276 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 441099 2024-02-27 21:10:29.168 2024-02-27 21:20:30.473 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy t https://example.com/ 20452 441072 440989.440999.441037.441062.441072.441099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3695067901124 0 \N \N f 0 \N 1 178024824 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 441072 2024-02-27 20:42:33.552 2024-02-27 20:52:34.445 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nThank rule physical trip attorney staff vote reach. Effect receive https://example.com/ 21248 441062 440989.440999.441037.441062.441072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.801818428522 0 \N \N f 0 \N 2 242181146 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 430824 2024-02-19 15:07:26.676 2024-02-19 15:17:28.42 How never cut grow benefit. Dinner environmental side financial. Car Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station https://example.com/ 7675 \N 430824 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 21.280517918648 0 \N \N f 0 \N 9 22556044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442502 2024-02-28 17:54:54.439 2024-02-28 18:04:55.701 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put https://example.com/ 18828 442490 441695.442490.442502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1724265231274 0 \N \N f 0 \N 0 145000838 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441725 2024-02-28 11:13:43.387 2024-02-28 11:23:44.731 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society adm https://example.com/ 2829 441695 441695.441725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0899430960542 0 \N \N f 0 \N 1 208360312 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 440025 2024-02-26 22:03:45.528 2024-02-26 22:13:47.335 \N Practice pressure help whit https://example.com/ 19930 439699 439699.440025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8313430673746 0 \N \N f 0 \N 3 140955824 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 430876 2024-02-19 15:44:31.233 2024-02-19 15:54:31.922 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nMusic energy speci https://example.com/ 8796 430874 430854.430855.430874.430876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.55206202058417 0 \N \N f 0 \N 2 27121985 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 441093 2024-02-27 21:06:50.51 2024-02-27 21:16:51.824 \N Blue why news enjoy include movie. Artist later store film. Senior r https://example.com/ 652 439586 439586.441093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3825627478854 0 \N \N f 0 \N 0 1291443 0 f f \N \N \N \N 439586 \N 0 0 \N \N f \N 441097 2024-02-27 21:09:12.516 2024-02-27 21:19:13.969 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same https://example.com/ 18664 440592 440472.440592.441097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72825310066242 0 \N \N f 0 \N 0 37168977 0 f f \N \N \N \N 440472 \N 0 0 \N \N f \N 439973 2024-02-26 21:21:26.084 2024-02-26 21:31:27.453 \N Rest factor stoc https://example.com/ 15549 439882 439844.439857.439873.439882.439973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7988421187715 0 \N \N f 0 \N 0 13970978 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 441540 2024-02-28 07:49:19.991 2024-02-28 07:59:21.195 \N Dark address be federal study. Nice red later season. Ch https://example.com/ 20897 441505 441333.441505.441540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7805033197183 0 \N \N f 0 \N 0 71646036 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 434716 2024-02-22 09:39:23.4 2024-02-22 09:49:24.529 \N Beyond difference hu https://example.com/ 1833 433712 433555.433712.434716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7666985627947 0 \N \N f 0 \N 0 9747249 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 430873 2024-02-19 15:39:40.898 2024-02-19 15:49:42.137 Letter both ability. Strong several point research general goal that Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagin https://example.com/ 18640 \N 430873 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2263054372208 0 \N \N f 0 \N 0 153481079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430880 2024-02-19 15:47:29.141 2024-02-19 15:57:30.429 \N After way ch https://example.com/ 21338 430817 430507.430809.430817.430880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.17933499866817 0 \N \N f 0 \N 0 161443075 0 f f \N \N \N \N 430507 \N 0 0 \N \N f \N 433695 2024-02-21 12:29:30.129 2024-02-21 12:39:31.132 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nDescribe radio https://example.com/ 20594 433555 433555.433695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.9928298825701 0 \N \N f 0 \N 2 91095367 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434773 2024-02-22 10:35:12.495 2024-02-22 10:45:14.224 \N List professional event https://example.com/ 17827 434709 434646.434709.434773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.1733045902817 0 \N \N f 0 \N 0 236068177 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434736 2024-02-22 09:55:48.146 2024-02-22 10:05:49.246 \N For share som https://example.com/ 10283 434396 434396.434736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.236826533298 0 \N \N f 0 \N 0 217542472 0 f f \N \N \N \N 434396 \N 0 0 \N \N f \N 439909 2024-02-26 20:39:34.886 2024-02-26 20:49:35.861 \N Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect https://example.com/ 711 439822 439822.439909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9705213234841 0 \N \N f 0 \N 1 17101211 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 430882 2024-02-19 15:49:19.216 2024-02-19 15:59:20.321 Leave example rock. According prep Ever small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside. https://example.com/ 13399 \N 430882 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 5.12630122386661 0 \N \N f 0 \N 1 78299608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430883 2024-02-19 15:52:02.393 2024-02-19 16:02:04.777 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair ni https://example.com/ 11866 430607 430607.430883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98238342396662 0 \N \N f 0 \N 0 33097674 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 433712 2024-02-21 12:48:56.914 2024-02-21 12:58:59.858 \N Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle c https://example.com/ 14774 433555 433555.433712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11479607485552 0 \N \N f 0 \N 1 237755477 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434715 2024-02-22 09:37:58.646 2024-02-22 09:48:00.22 \N Force job radio law. Maybe soldier soldier. Model her thing commercial continue https://example.com/ 20045 433695 433555.433695.434715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6315883761127 0 \N \N f 0 \N 1 156454994 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434729 2024-02-22 09:50:08.138 2024-02-22 10:00:09.277 \N Approach stuff big ahead nothing hotel gre https://example.com/ 8162 433782 433555.433782.434729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7829974120237 0 \N \N f 0 \N 0 78644638 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434725 2024-02-22 09:48:04.793 2024-02-22 09:58:05.873 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside https://example.com/ 1490 434715 433555.433695.434715.434725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2095320720661 0 \N \N f 0 \N 0 55648304 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434723 2024-02-22 09:45:32.336 2024-02-22 09:55:34.233 \N Down his majority risk worker parent head. Decade painting reduce throughout several envir https://example.com/ 17690 434440 434440.434723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0634703137879 0 \N \N f 0 \N 3 222856143 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 430889 2024-02-19 15:55:50.255 2024-02-19 16:05:52.309 Many then growth. Law become return event parent I boy. Increase Rise en https://example.com/ 717 \N 430889 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.02768010355089 0 \N \N f 0 \N 0 195401538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430884 2024-02-19 15:54:08.349 2024-02-19 16:04:10.486 \N Clear suggest true https://example.com/ 20377 430854 430854.430884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.001799045601 0 \N \N f 0 \N 0 83090833 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 434738 2024-02-22 10:01:42.985 2024-02-22 10:11:44.086 \N Republican begin audience guy get expect https://example.com/ 21389 433735 433555.433735.434738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.469084515965 0 \N \N f 0 \N 0 66749607 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434756 2024-02-22 10:20:47.259 2024-02-22 10:30:48.255 \N Know son future suggest paper p https://example.com/ 1490 434755 434642.434643.434682.434755.434756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.583091650533 0 \N \N f 0 \N 2 16631485 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434728 2024-02-22 09:49:40.976 2024-02-22 09:59:42.389 \N Floor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short per https://example.com/ 16267 433788 433555.433788.434728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.046907914078 0 \N \N f 0 \N 1 20205763 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434876 2024-02-22 12:15:28.523 2024-02-22 12:25:29.997 \N Alone the crime night sta https://example.com/ 16724 434822 434822.434876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6735909657073 0 \N \N f 0 \N 0 163913815 0 f f \N \N \N \N 434822 \N 0 0 \N \N f \N 434733 2024-02-22 09:54:14.888 2024-02-22 10:04:16.514 \N Th https://example.com/ 652 434708 433828.434420.434708.434733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1871199094933 0 \N \N f 0 \N 0 48584668 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434727 2024-02-22 09:49:21.008 2024-02-22 09:59:22.343 Become full thank head blood family. Computer account be expert adult push. Alo Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thu https://example.com/ 13587 \N 434727 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.16580781753103 0 \N \N f 0 \N 2 72770385 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430893 2024-02-19 15:58:27.889 2024-02-19 16:08:28.809 \N Voice sign college quality. Explain middle knowledge. Force property https://example.com/ 21022 430869 430869.430893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5472480363785 0 \N \N f 0 \N 0 133756267 0 f f \N \N \N \N 430869 \N 0 0 \N \N f \N 434747 2024-02-22 10:07:46.893 2024-02-22 10:17:48.544 \N Whatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road ap https://example.com/ 3709 434667 433828.434475.434667.434747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61533028483124 0 \N \N f 0 \N 2 185334037 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439975 2024-02-26 21:22:45.041 2024-02-26 21:32:46.366 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. P https://example.com/ 19668 439822 439822.439975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6169853801118 0 \N \N f 0 \N 1 222601744 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 435722 2024-02-23 00:52:25.784 2024-02-23 01:02:27.096 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up elec https://example.com/ 2176 435716 434278.434503.434522.434598.434602.435622.435713.435716.435722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3550003327415 0 \N \N f 0 \N 6 29823343 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435704 2024-02-23 00:27:22.959 2024-02-23 00:37:24.599 \N Program cut truth box indicate game. Agency option outside wea https://example.com/ 12930 435657 435657.435704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.16449890283887 0 \N \N f 0 \N 1 154449170 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 434072 2024-02-21 17:47:41.685 2024-02-21 17:57:42.58 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from tho https://example.com/ 21334 433555 433555.434072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3570720878991 0 \N \N f 0 \N 1 115158818 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 436241 2024-02-23 14:26:30.478 2024-02-23 14:36:31.831 Region side point win through. Deep check rather Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nTotal necessary thought task capital https://example.com/ 9336 \N 436241 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.7373084137428 0 \N \N f 0 \N 52 14328065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430875 2024-02-19 15:42:26.071 2024-02-19 15:52:28.216 Cell civil on much able sure. They rich middle between. Radio public town busi Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past fee https://example.com/ 15115 \N 430875 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.33054980925441 0 \N \N f 0 \N 0 234437921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436472 2024-02-23 17:35:02.387 2024-02-23 17:45:03.42 \N Identify painting degree hit shake film. Plan government around. At hand https://example.com/ 6573 436302 436241.436302.436472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1441791707729 0 \N \N f 0 \N 0 7255970 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 437401 2024-02-24 15:59:26.972 2024-02-24 16:09:28.454 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine s https://example.com/ 14168 437158 437044.437158.437401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7793816739149 0 \N \N f 0 \N 0 20291310 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 434722 2024-02-22 09:45:08.833 2024-02-22 09:55:09.921 Direction business early probably black method spend north. However focu Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million. https://example.com/ 654 \N 434722 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 20.7844729436324 0 \N \N f 0 \N 0 76468898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434744 2024-02-22 10:05:05.075 2024-02-22 10:15:06.049 \N Behavior safe concern street crime. Newspaper president have brother voi https://example.com/ 19952 433687 433555.433687.434744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88506494738167 0 \N \N f 0 \N 1 212779257 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434734 2024-02-22 09:54:50.046 2024-02-22 10:04:51.233 \N Lead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent la https://example.com/ 746 434434 434434.434734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0727319359559431 0 \N \N f 0 \N 0 56887518 0 f f \N \N \N \N 434434 \N 0 0 \N \N f \N 434742 2024-02-22 10:03:56.874 2024-02-22 10:13:58.683 \N Various discussion light page war your have. Get generation market through operation police effect. Area court b https://example.com/ 5904 433611 433555.433611.434742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0837570101104 0 \N \N f 0 \N 0 144249310 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 434755 2024-02-22 10:20:09.223 2024-02-22 10:30:10.474 \N Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation https://example.com/ 5308 434682 434642.434643.434682.434755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0363137696294 0 \N \N f 0 \N 3 225569702 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 434751 2024-02-22 10:17:13.658 2024-02-22 10:27:15.138 State wall myself interview will. Watch ahead suffer bed. Senior boy back nee Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say. https://example.com/ 18448 \N 434751 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.4726132837473 0 \N \N f 0 \N 1 213219937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434752 2024-02-22 10:17:44.534 2024-02-22 10:27:45.522 \N Peace then kid under. Exactly nothing present notice on add https://example.com/ 11698 434727 434727.434752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7829330286805 0 \N \N f 0 \N 0 96866470 0 f f \N \N \N \N 434727 \N 0 0 \N \N f \N 434730 2024-02-22 09:52:21.296 2024-02-22 10:02:22.449 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure l https://example.com/ 7913 434319 434319.434730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5211737479485 0 \N \N f 0 \N 0 171531043 0 f f \N \N \N \N 434319 \N 0 0 \N \N f \N 433571 2024-02-21 10:31:19.253 2024-02-21 10:41:20.646 Raise land together Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product https://example.com/ 15326 \N 433571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6979159804372 0 \N \N f 0 \N 3 198860426 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434839 2024-02-22 11:28:51.641 2024-02-22 11:38:53.346 \N Hot near source https://example.com/ 20852 434465 434465.434839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3682131582237 0 \N \N f 0 \N 0 179887630 0 f f \N \N \N \N 434465 \N 0 0 \N \N f \N 434861 2024-02-22 12:00:05.236 2024-02-22 12:00:10.567 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state sectio https://example.com/ 15146 434860 434860.434861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2587999219227 0 \N \N f 0 \N 0 66736491 0 f f \N \N \N \N 434860 \N 0 0 \N \N f \N 434842 2024-02-22 11:35:52.479 2024-02-22 11:45:53.555 \N Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magaz https://example.com/ 19637 434795 434795.434842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9068115753553 0 \N \N f 0 \N 0 228402822 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434855 2024-02-22 11:54:37.522 2024-02-22 12:04:39.284 \N These world usually ground grow worker. Majo https://example.com/ 6471 434542 434469.434542.434855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8558230959839 0 \N \N f 0 \N 0 134864226 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 441436 2024-02-28 04:03:59.687 2024-02-28 04:14:01.078 Surface field himself similar. Give fast past use sometimes. By get c Area just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker https://example.com/ 15556 \N 441436 \N \N \N \N \N \N \N \N security \N ACTIVE \N 13.2830691178304 0 \N \N f 0 \N 2 241365547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434863 2024-02-22 12:01:37.241 2024-02-22 12:11:38.876 \N Friend growth election water degree p https://example.com/ 977 434824 434795.434801.434824.434863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7905633549614 0 \N \N f 0 \N 0 55435970 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439145 2024-02-26 12:09:25.359 2024-02-26 12:19:26.828 Fly run executive. Reach n Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thu https://example.com/ 8095 \N 439145 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 21.1344419534598 0 \N \N f 0 \N 1 49189956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439974 2024-02-26 21:22:20.668 2024-02-26 21:32:22.478 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look https://example.com/ 963 439969 439638.439863.439881.439894.439969.439974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.54718238526638 0 \N \N f 0 \N 4 63055768 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 434862 2024-02-22 12:00:20.496 2024-02-22 12:10:21.985 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet n https://example.com/ 20258 434223 434223.434862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6666487114781 0 \N \N f 0 \N 0 119267120 0 f f \N \N \N \N 434223 \N 0 0 \N \N f \N 439977 2024-02-26 21:23:54.544 2024-02-26 21:33:56.731 \N Hotel blood consumer spend colle https://example.com/ 17365 439885 173498.439885.439977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8402306514665 0 \N \N f 0 \N 1 232053622 0 f f \N \N \N \N 173498 \N 0 0 \N \N f \N 435073 2024-02-22 14:59:12.289 2024-02-22 15:09:14.128 Never new shoulder lose threat star. Production window real ch Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter co https://example.com/ 20376 \N 435073 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 25.7058623279103 0 \N \N f 0 \N 8 182407977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439979 2024-02-26 21:24:21.519 2024-02-26 21:34:22.48 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear own https://example.com/ 19030 439957 439045.439811.439864.439954.439957.439979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3830856872941 0 \N \N f 0 \N 0 209157981 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 439998 2024-02-26 21:33:03.926 2024-02-26 21:43:05.277 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant in https://example.com/ 16301 439993 439638.439863.439881.439894.439969.439974.439984.439993.439998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90597511103513 0 \N \N f 0 \N 0 74534182 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 434880 2024-02-22 12:18:21.9 2024-02-22 12:28:22.999 \N Star bill toward also almost. Reason machine great per artist raise go ap https://example.com/ 711 432966 432884.432966.434880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4282719322294 0 \N \N f 0 \N 0 220936957 0 f f \N \N \N \N 432884 \N 0 0 \N \N f \N 432966 2024-02-20 20:00:27.287 2024-02-20 20:10:28.347 \N Republican star interest its. College chall https://example.com/ 7960 432884 432884.432966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16673107032828 0 \N \N f 0 \N 1 2550233 0 f f \N \N \N \N 432884 \N 0 0 \N \N f \N 440019 2024-02-26 21:54:14.336 2024-02-26 22:04:15.825 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or https://example.com/ 4984 435327 435327.440019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77727140965697 0 \N \N f 0 \N 0 199430080 0 f f \N \N \N \N 435327 \N 0 0 \N \N f \N 439969 2024-02-26 21:19:38.192 2024-02-26 21:29:39.586 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nHotel remember debate strateg https://example.com/ 18452 439894 439638.439863.439881.439894.439969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2898868508856 0 \N \N f 0 \N 5 24019327 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 434885 2024-02-22 12:23:41.298 2024-02-22 12:33:43.671 \N Any tend power space fund inside ev https://example.com/ 21624 434874 433828.434381.434874.434885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1181885519359 0 \N \N f 0 \N 0 176280461 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434881 2024-02-22 12:19:23.128 2024-02-22 12:29:24.364 \N Play director employee. Tend central those now sto https://example.com/ 19795 434865 434865.434881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65769933118166 0 \N \N f 0 \N 0 25172825 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 434883 2024-02-22 12:21:21.828 2024-02-22 12:31:23.382 \N Type door clear left. Test investment between table https://example.com/ 11621 434870 434791.434864.434870.434883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.231403212847 0 \N \N f 0 \N 0 200186312 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 440003 2024-02-26 21:37:02.969 2024-02-26 21:47:04.499 \N Maj https://example.com/ 21506 440000 169702.440000.440003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85764379377838 0 \N \N f 0 \N 0 76109992 0 f f \N \N \N \N 169702 \N 0 0 \N \N f \N 439957 2024-02-26 21:02:18.613 2024-02-26 21:12:20.459 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain sug https://example.com/ 882 439954 439045.439811.439864.439954.439957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6304461986564 0 \N \N f 0 \N 1 24648205 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 439989 2024-02-26 21:28:26.001 2024-02-26 21:38:27.13 Experience ok car standard item treat hundred else Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause. https://example.com/ 21296 \N 439989 \N \N \N \N \N \N \N \N security \N ACTIVE \N 9.37124436687903 0 \N \N f 0 \N 0 113184425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439961 2024-02-26 21:03:21.794 2024-02-26 21:13:23.117 \N Rise environmental middle fly https://example.com/ 20904 439956 439045.439811.439818.439956.439961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1829838810381 0 \N \N f 0 \N 1 181129759 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 434868 2024-02-22 12:04:38.204 2024-02-22 12:14:40.324 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partne https://example.com/ 20636 434643 434642.434643.434868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.66103983903812 0 \N \N f 0 \N 1 63795544 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 439981 2024-02-26 21:24:41.56 2024-02-26 21:34:43.541 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site althou https://example.com/ 18393 439881 439638.439863.439881.439981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49996913560522 0 \N \N f 0 \N 1 72926300 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 439992 2024-02-26 21:29:53.136 2024-02-26 21:39:54.489 Mother up probably anything nation Mrs participant manage. Then standard from Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself https://example.com/ 9820 \N 439992 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 24.5664746041552 0 \N \N f 0 \N 1 26611252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434401 2024-02-21 23:38:20.151 2024-02-21 23:48:22.048 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah https://example.com/ 9169 434330 433889.434330.434401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00988132622428 0 \N \N f 0 \N 4 52648231 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 432504 2024-02-20 14:23:30.448 2024-02-20 14:33:32.731 Method same car buy side. Price order rest Cong Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred. https://example.com/ 2010 \N 432504 \N \N \N \N \N \N \N \N history \N ACTIVE \N 13.0679212125307 0 \N \N f 0 \N 0 157393105 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434904 2024-02-22 12:40:17.073 2024-02-22 12:51:17.698 \N Ability ability arrive https://example.com/ 679 434658 433889.434330.434401.434658.434904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.87893560274843 0 \N \N f 0 \N 0 196102146 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 441505 2024-02-28 06:22:35.742 2024-02-28 06:32:36.969 \N Model late institution on https://example.com/ 18743 441333 441333.441505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5643307522974 0 \N \N f 0 \N 1 154883714 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 439965 2024-02-26 21:15:17.063 2024-02-26 21:25:18.579 \N Almost about me amount daughter himself. Threat candidate situation born could turn su https://example.com/ 21342 439139 439139.439965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3983743580169 0 \N \N f 0 \N 0 36612141 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437775 2024-02-24 23:55:25.805 2024-02-25 00:05:26.692 Plan theory effect center maintain Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protec https://example.com/ 20979 \N 437775 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 6.05525249046011 0 \N \N f 0 \N 35 167721040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434896 2024-02-22 12:30:07.221 2024-02-22 12:40:08.731 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently https://example.com/ 13217 434865 434865.434896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7899341135703 0 \N \N f 0 \N 1 3622544 0 f f \N \N \N \N 434865 \N 0 0 \N \N f \N 434852 2024-02-22 11:49:06.958 2024-02-22 11:59:08.749 \N Activity just see https://example.com/ 928 434850 433828.434850.434852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.27160460957394 0 \N \N f 0 \N 2 81843611 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434900 2024-02-22 12:33:01.557 2024-02-22 12:43:04.059 \N Outside moth https://example.com/ 21159 434852 433828.434850.434852.434900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5045159524988 0 \N \N f 0 \N 1 207085393 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 439890 2024-02-26 20:26:33.54 2024-02-26 20:36:34.885 \N Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process cam https://example.com/ 3544 439643 439638.439643.439890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5056757128583 0 \N \N f 0 \N 2 174022188 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440534 2024-02-27 13:19:35.565 2024-02-27 13:29:37.716 \N Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nFinish only air provide. Wife can development player hair https://example.com/ 21145 440467 440467.440534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7904848414434 0 \N \N f 0 \N 0 57007354 0 f f \N \N \N \N 440467 \N 0 0 \N \N f \N 434923 2024-02-22 12:54:14.276 2024-02-22 13:04:16.299 \N Affect body wonder do still https://example.com/ 19148 434921 434795.434797.434866.434869.434879.434894.434921.434923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9099577206726 0 \N \N f 0 \N 0 160755884 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440467 2024-02-27 11:32:40.444 2024-02-27 11:42:42.568 Young shake push apply stand. Benefit ahead others listen hundred. To Article discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. https://example.com/ 14705 \N 440467 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.9707120140846 0 \N \N f 0 \N 1 51834448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434905 2024-02-22 12:40:21.479 2024-02-22 12:51:23.419 Not find attack light everything d That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience https://example.com/ 1401 \N 434905 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 21.5681515095879 0 \N \N f 0 \N 1 12975220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435281 2024-02-22 17:29:30.73 2024-02-22 17:39:31.639 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director https://example.com/ 17602 435269 435115.435133.435244.435249.435253.435269.435281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.927137137596 0 \N \N f 0 \N 0 11386761 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 434932 2024-02-22 13:03:31.052 2024-02-22 13:13:32.55 \N Never hotel town trip thus safe eight. Sh https://example.com/ 21458 434916 434916.434932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.538611557584154 0 \N \N f 0 \N 3 25584706 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 434943 2024-02-22 13:13:35.862 2024-02-22 13:23:37.058 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western roa https://example.com/ 14015 434790 434685.434790.434943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9264787638347 0 \N \N f 0 \N 0 76945612 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 439753 2024-02-26 18:47:05.978 2024-02-26 18:57:08.247 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce https://example.com/ 21314 439181 438936.439016.439075.439181.439753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6442550238088 0 \N \N f 0 \N 2 228197488 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 440005 2024-02-26 21:38:16.363 2024-02-26 21:48:17.314 Than budget time gas choice option light. Today fil Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police. https://example.com/ 1549 \N 440005 \N \N \N \N \N \N \N \N security \N ACTIVE \N 17.2321819513291 0 \N \N f 0 \N 0 108543892 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441526 2024-02-28 07:29:59.292 2024-02-28 07:40:01.104 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would https://example.com/ 21238 441467 441333.441341.441455.441457.441467.441526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.87080654247428 0 \N \N f 0 \N 1 223200448 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 434922 2024-02-22 12:53:43.547 2024-02-22 13:03:45.824 Almost about me amount daughter himself. Threat candidate situation Long management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank https://example.com/ 8400 \N 434922 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.34127888316946 0 \N \N f 0 \N 2 33491355 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439937 2024-02-26 20:49:25.546 2024-02-26 20:59:26.773 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm see https://example.com/ 21233 439844 439844.439937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2254868497192 0 \N \N f 0 \N 1 51806126 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 439991 2024-02-26 21:29:36.385 2024-02-26 21:39:37.898 \N Help out doctor wait. E https://example.com/ 8168 439390 439390.439991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0050154344238 0 \N \N f 0 \N 0 100815575 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434954 2024-02-22 13:26:19.717 2024-02-22 13:36:20.549 \N Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening s https://example.com/ 18581 434627 434627.434954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2558042713367 0 \N \N f 0 \N 1 185945413 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 434941 2024-02-22 13:10:39.574 2024-02-22 13:20:41.251 Them debate main bad. Personal security be government. Common as civil hospita Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police. https://example.com/ 11491 \N 434941 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.6532189973984 0 \N \N f 0 \N 0 159659405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434946 2024-02-22 13:19:02.61 2024-02-22 13:29:04.604 \N Least nor building physical wide https://example.com/ 19886 434790 434685.434790.434946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9911450755905 0 \N \N f 0 \N 0 115186628 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 434948 2024-02-22 13:20:45.749 2024-02-22 13:30:46.682 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant https://example.com/ 19154 434784 434535.434784.434948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71030881541267 0 \N \N f 0 \N 0 158570655 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 434784 2024-02-22 10:48:17.533 2024-02-22 10:58:19.359 \N Leave example grow lead something still after. https://example.com/ 1740 434535 434535.434784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6618418264485 0 \N \N f 0 \N 1 1245845 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 439999 2024-02-26 21:34:01.273 2024-02-26 21:44:02.529 \N Activity just seem enter https://example.com/ 621 439876 439806.439876.439999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8744493772381 0 \N \N f 0 \N 1 102817647 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 440006 2024-02-26 21:39:17.453 2024-02-26 21:49:18.735 \N Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundr https://example.com/ 21417 439844 439844.440006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6538287063362 0 \N \N f 0 \N 2 187021633 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 439873 2024-02-26 20:15:50.08 2024-02-26 20:25:52.091 \N Price occur station prepare be marriage. Anything enter respond so https://example.com/ 795 439857 439844.439857.439873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.454114221661079 0 \N \N f 0 \N 5 221061310 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434964 2024-02-22 13:33:56.459 2024-02-22 13:43:57.617 \N Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh ch https://example.com/ 10771 434950 434791.434950.434964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0819039013468 0 \N \N f 0 \N 0 74050646 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 434950 2024-02-22 13:22:34.225 2024-02-22 13:32:35.358 \N Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory eve https://example.com/ 1208 434791 434791.434950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7530505143652 0 \N \N f 0 \N 1 111387221 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435016 2024-02-22 14:14:09.452 2024-02-22 14:24:11.653 \N Set how recognize operation Ame https://example.com/ 12930 434521 434278.434358.434521.435016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.01966744321843 0 \N \N f 0 \N 0 242048246 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434641 2024-02-22 07:24:19.826 2024-02-22 07:34:21.376 Any note pick American lead mention. None magazine identify cold common remain Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock mornin https://example.com/ 6149 \N 434641 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9581291297565 0 \N \N f 0 \N 4 82411141 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434902 2024-02-22 12:39:01.955 2024-02-22 12:49:03.997 \N Administration effort live any between particular friend. Rais https://example.com/ 4798 434795 434795.434902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8999889044112 0 \N \N f 0 \N 5 792525 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439882 2024-02-26 20:22:12.011 2024-02-26 20:32:13.981 \N Civil att https://example.com/ 618 439873 439844.439857.439873.439882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5875093910891 0 \N \N f 0 \N 4 55393174 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 438418 2024-02-25 16:26:33.274 2024-02-25 16:36:34.327 \N Step physical establish trip. Sell finish low https://example.com/ 965 437753 437533.437753.438418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7246540370308 0 \N \N f 0 \N 0 6656185 0 f f \N \N \N \N 437533 \N 0 0 \N \N f \N 440033 2024-02-26 22:13:42.365 2024-02-26 22:23:43.354 \N Safe pass wife stay effort mission. Major long now hand example commercial. Serie https://example.com/ 12951 439706 439699.439703.439705.439706.440033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43195427304076 0 \N \N f 0 \N 0 243836027 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 439705 2024-02-26 18:06:33.357 2024-02-26 18:16:34.863 \N Past everybody chance health. https://example.com/ 19890 439703 439699.439703.439705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76382511110051 0 \N \N f 0 \N 2 173259869 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 439976 2024-02-26 21:22:58.792 2024-02-26 21:33:00.381 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside https://example.com/ 21547 439145 439145.439976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2033882586588 0 \N \N f 0 \N 0 91067236 0 f f \N \N \N \N 439145 \N 0 0 \N \N f \N 439986 2024-02-26 21:27:01.01 2024-02-26 21:37:02.248 \N Be human year girl treatment nothing might. Floor un https://example.com/ 17392 439139 439139.439986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6663014677604 0 \N \N f 0 \N 0 77784634 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 434824 2024-02-22 11:14:42.542 2024-02-22 11:24:43.672 \N Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Ad https://example.com/ 19770 434801 434795.434801.434824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4336130703932 0 \N \N f 0 \N 1 176003599 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 437473 2024-02-24 17:01:45.507 2024-02-24 17:11:48.042 \N Us less sure. Late travel us significant cover word industry. https://example.com/ 5694 437470 436729.436875.437359.437470.437473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5301544594045 0 \N \N f 0 \N 1 50453625 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 439993 2024-02-26 21:30:32.589 2024-02-26 21:40:34.492 \N Ten instead develop somebody https://example.com/ 19796 439984 439638.439863.439881.439894.439969.439974.439984.439993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9546162899482 0 \N \N f 0 \N 2 80382846 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440000 2024-02-26 21:34:31.855 2024-02-26 21:44:33.309 \N Near ke https://example.com/ 21457 169702 169702.440000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.575459989912623 0 \N \N f 0 \N 1 114371563 0 f f \N \N \N \N 169702 \N 0 0 \N \N f \N 435330 2024-02-22 17:56:38.993 2024-02-22 18:06:40.262 \N Fish environmental factor popular series local. Ready each el https://example.com/ 3304 435325 434795.434798.435179.435194.435204.435239.435290.435325.435330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1465383081683 0 \N \N f 0 \N 3 246859470 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434981 2024-02-22 13:46:26.817 2024-02-22 13:56:29 \N Animal treatment actually. Local me bar data personal. Imagine industry much https://example.com/ 21493 434278 434278.434981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1117227642175 0 \N \N f 0 \N 0 200706254 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440887 2024-02-27 18:15:33.229 2024-02-27 18:25:34.536 Purpose age cover machine. Must individual hot begin figure threat dis Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble. https://example.com/ 18517 \N 440887 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.4420645787522 0 \N \N f 0 \N 0 161222898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439972 2024-02-26 21:21:16.443 2024-02-26 21:31:18.497 \N Decision https://example.com/ 1585 439877 439877.439972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.03395775628292 0 \N \N f 0 \N 1 65923474 0 f f \N \N \N \N 439877 \N 0 0 \N \N f \N 435195 2024-02-22 16:31:05.467 2024-02-22 16:41:07.335 \N Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nMeasure whether or material herself. Under across economi https://example.com/ 18393 435154 435154.435195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4518808767702 0 \N \N f 0 \N 1 105762396 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 434974 2024-02-22 13:41:23.701 2024-02-22 13:51:24.775 \N Tell difference pattern carry https://example.com/ 8506 434615 434615.434974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2327120848314 0 \N \N f 0 \N 0 27897842 0 f f \N \N \N \N 434615 \N 0 0 \N \N f \N 441548 2024-02-28 07:58:44.882 2024-02-28 08:08:47.442 \N Clear suggest true gas suddenly project. Seem learn may term. Local but me https://example.com/ 21242 441546 441333.441396.441523.441546.441548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.281791040654 0 \N \N f 0 \N 1 89680645 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 435010 2024-02-22 14:09:07.245 2024-02-22 14:19:09.209 Add bar degree beat since. Somebody of compare sea partner. Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly. https://example.com/ 2075 \N 435010 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.0901908850111 0 \N \N f 0 \N 0 14527428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435033 2024-02-22 14:25:13.885 2024-02-22 14:35:15.573 \N Past everybody chance health. Minute choice your half by. Response https://example.com/ 19943 312067 312024.312067.435033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7632650006319 0 \N \N f 0 \N 0 167851859 0 f f \N \N \N \N 312024 \N 0 0 \N \N f \N 439980 2024-02-26 21:24:34.243 2024-02-26 21:34:35.484 \N College quality yard https://example.com/ 21157 439961 439045.439811.439818.439956.439961.439980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00728345684078 0 \N \N f 0 \N 0 211865985 0 f f \N \N \N \N 439045 \N 0 0 \N \N f \N 440878 2024-02-27 17:59:32.995 2024-02-27 18:09:34.586 \N Realize https://example.com/ 12049 440849 440633.440849.440878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3222455529624 0 \N \N f 0 \N 0 63569551 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 435204 2024-02-22 16:37:25.863 2024-02-22 16:47:27.063 \N Myself https://example.com/ 687 435194 434795.434798.435179.435194.435204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09147319036809 0 \N \N f 0 \N 7 940674 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434998 2024-02-22 14:04:23.248 2024-02-22 14:14:24.834 \N Identify painting degree hit shake film. Plan government around. At hand https://example.com/ 20892 434944 434916.434932.434944.434998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8086753807854 0 \N \N f 0 \N 1 171232049 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 441449 2024-02-28 04:25:17.745 2024-02-28 04:35:19.022 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree https://example.com/ 1105 441448 441375.441448.441449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2058784826368 0 \N \N f 0 \N 0 18864387 0 f f \N \N \N \N 441375 \N 0 0 \N \N f \N 439985 2024-02-26 21:26:54.042 2024-02-26 21:36:55.117 \N Instead believe animal then however https://example.com/ 11527 439970 439970.439985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96459282096438 0 \N \N f 0 \N 1 13706253 0 f f \N \N \N \N 439970 \N 0 0 \N \N f \N 440002 2024-02-26 21:36:23.906 2024-02-26 21:46:25.167 \N Politic https://example.com/ 20198 439972 439877.439972.440002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.175310551976 0 \N \N f 0 \N 0 89249363 0 f f \N \N \N \N 439877 \N 0 0 \N \N f \N 435003 2024-02-22 14:06:05.247 2024-02-22 14:16:07.614 \N System lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious dev https://example.com/ 636 434920 434920.435003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8561148686311 0 \N \N f 0 \N 0 70396829 0 f f \N \N \N \N 434920 \N 0 0 \N \N f \N 434877 2024-02-22 12:17:02.141 2024-02-22 12:27:04.094 \N Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreig https://example.com/ 12930 434646 434646.434877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1648624469932 0 \N \N f 0 \N 3 87130791 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 434931 2024-02-22 13:02:41.334 2024-02-22 13:12:42.359 Structure ever film speech along somebody. Member range tha Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall. https://example.com/ 21222 \N 434931 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.0655419903604 0 \N \N f 0 \N 2 12213029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435021 2024-02-22 14:18:01.87 2024-02-22 14:28:03.709 \N Cut firm blood tell decision direction. Allow a https://example.com/ 20701 435012 435002.435006.435012.435021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0789968905092 0 \N \N f 0 \N 0 7754935 0 f f \N \N \N \N 435002 \N 0 0 \N \N f \N 435215 2024-02-22 16:45:48.516 2024-02-22 16:55:49.801 \N Film without deal production let https://example.com/ 16633 435209 435046.435209.435215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29725920686656 0 \N \N f 0 \N 4 179866851 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440015 2024-02-26 21:52:00.486 2024-02-26 22:02:01.562 \N Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would https://example.com/ 16353 438938 438938.440015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9545957883433 0 \N \N f 0 \N 2 30418274 0 f f \N \N \N \N 438938 \N 0 0 \N \N f \N 440013 2024-02-26 21:50:31.233 2024-02-26 22:00:32.892 \N Increase agent m https://example.com/ 21334 440012 439844.440012.440013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0454687456978 0 \N \N f 0 \N 2 83297736 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440034 2024-02-26 22:13:53.556 2024-02-26 22:23:54.811 \N Soon raise sense education hold awa https://example.com/ 9166 439949 439844.439949.440034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3862199777603 0 \N \N f 0 \N 0 117104261 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434617 2024-02-22 06:39:12.994 2024-02-22 06:49:14.737 \N Newspaper wall begin over serious hand. Remember https://example.com/ 19403 434498 434498.434617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5129405332812 0 \N \N f 0 \N 0 248500731 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 440055 2024-02-26 22:40:43.389 2024-02-26 22:50:44.899 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason huma https://example.com/ 5017 440052 440004.440052.440055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55904146094583 0 \N \N f 0 \N 0 228069643 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 434845 2024-02-22 11:38:42.561 2024-02-22 11:48:43.918 \N Skin summer development benefit note soldier. Various importa https://example.com/ 20613 434795 434795.434845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9237926282825 0 \N \N f 0 \N 0 11458541 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435236 2024-02-22 16:57:15.854 2024-02-22 17:07:17.399 \N Statement reco https://example.com/ 703 435224 435224.435236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67846104700234 0 \N \N f 0 \N 1 54926167 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 439872 2024-02-26 20:14:48.052 2024-02-26 20:24:49.771 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nLead against a https://example.com/ 2652 439678 439043.439678.439872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4532839644136 0 \N \N f 0 \N 0 15057139 0 f f \N \N \N \N 439043 \N 0 0 \N \N f \N 441193 2024-02-27 22:51:31.037 2024-02-27 23:01:32.4 \N Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Profess https://example.com/ 695 441169 441169.441193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.285458385726 0 \N \N f 0 \N 1 3181852 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 434969 2024-02-22 13:35:49.055 2024-02-22 13:45:50.717 Long management far budget rate oft Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel. https://example.com/ 20781 \N 434969 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.74653074731 0 \N \N f 0 \N 0 129232979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441360 2024-02-28 01:42:25.574 2024-02-28 01:52:26.726 \N Then political wait so remain throw anything. Produce voice three https://example.com/ 17162 441336 441333.441336.441360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9186647171649 0 \N \N f 0 \N 2 102092903 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 440008 2024-02-26 21:47:25.799 2024-02-26 21:57:27.702 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board f https://example.com/ 20826 439753 438936.439016.439075.439181.439753.440008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3517050585777 0 \N \N f 0 \N 0 126325197 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 434707 2024-02-22 09:30:59.196 2024-02-22 09:41:00.537 Key stuff company they base well night. Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table d https://example.com/ 2780 \N 434707 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.0897704998899 0 \N \N f 0 \N 1 102550024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434999 2024-02-22 14:04:40.109 2024-02-22 14:14:41.512 \N Line trade last nature number become. Left https://example.com/ 1114 434646 434646.434999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.255924430268806 0 \N \N f 0 \N 1 243674193 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 441395 2024-02-28 02:26:31.82 2024-02-28 02:36:33.398 \N Area series street exist cold https://example.com/ 733 441360 441333.441336.441360.441395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5024303001793 0 \N \N f 0 \N 1 225079903 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 435011 2024-02-22 14:11:03.562 2024-02-22 14:21:05.652 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country s https://example.com/ 4391 434814 434814.435011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77305082519696 0 \N \N f 0 \N 0 77491118 0 f f \N \N \N \N 434814 \N 0 0 \N \N f \N 435037 2024-02-22 14:30:32.07 2024-02-22 14:40:34.145 \N Decision budget hit force hav https://example.com/ 807 434991 434991.435037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9888702873089 0 \N \N f 0 \N 1 223909768 0 f f \N \N \N \N 434991 \N 0 0 \N \N f \N 440012 2024-02-26 21:49:28.289 2024-02-26 21:59:29.449 \N Role before girl wonder clear many security into https://example.com/ 13921 439844 439844.440012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4866891926842 0 \N \N f 0 \N 3 149779844 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 434995 2024-02-22 14:02:23.717 2024-02-22 14:12:24.798 \N Keep third police section a https://example.com/ 19583 434933 434646.434877.434898.434933.434995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.143125442458185 0 \N \N f 0 \N 0 247177090 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 435014 2024-02-22 14:13:06.145 2024-02-22 14:23:07.713 Off should democratic notice old apply society. Buy section probably help t Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off. https://example.com/ 18608 \N 435014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2331204152863 0 \N \N f 0 \N 1 112802418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435029 2024-02-22 14:23:59.264 2024-02-22 14:34:01.75 Seat commercial through property new. Car Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true https://example.com/ 9345 \N 435029 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.93164673374274 0 \N \N f 0 \N 0 240916904 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435026 2024-02-22 14:22:29.894 2024-02-22 14:32:31.395 See cell reach mouth prove Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nProbably production better financial. Wife break check opportun https://example.com/ 9695 \N 435026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8899501749926 0 \N \N f 0 \N 1 244627987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440010 2024-02-26 21:48:27.523 2024-02-26 21:58:28.514 Blood bill here traditional upon. Leg t Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international. https://example.com/ 618 \N 440010 \N \N \N \N \N \N \N \N security \N ACTIVE \N 1.7514453161894 0 \N \N f 0 \N 0 196629202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436942 2024-02-24 06:20:01.036 2024-02-24 06:30:02.03 \N Occur office book. Expect return including gun https://example.com/ 16679 436856 436856.436942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.75036083841487 0 \N \N f 0 \N 0 214254364 0 f f \N \N \N \N 436856 \N 0 0 \N \N f \N 440016 2024-02-26 21:52:38.017 2024-02-26 22:02:39.309 \N Own machine table ga https://example.com/ 5661 440013 439844.440012.440013.440016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.867517837928 0 \N \N f 0 \N 1 30321632 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440018 2024-02-26 21:53:19.887 2024-02-26 22:03:21.195 \N Parent control wid https://example.com/ 16942 440016 439844.440012.440013.440016.440018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9150601943389 0 \N \N f 0 \N 0 46058737 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435047 2024-02-22 14:41:37.096 2024-02-22 14:51:37.912 \N Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal cou https://example.com/ 4048 435045 434440.435022.435045.435047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0114657244373 0 \N \N f 0 \N 0 200217095 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 435053 2024-02-22 14:46:54.281 2024-02-22 14:56:56.063 Reach too suffer story type remember lot. Reveal maybe Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I cl https://example.com/ 21214 \N 435053 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.215156424911 0 \N \N f 0 \N 2 60475085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434913 2024-02-22 12:49:22.673 2024-02-22 12:59:24.546 \N If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat bre https://example.com/ 19235 434912 434646.434871.434899.434912.434913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9764313929649 0 \N \N f 0 \N 0 192942366 0 f f \N \N \N \N 434646 \N 0 0 \N \N f \N 438201 2024-02-25 12:57:03.941 2024-02-25 13:07:05.039 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mr https://example.com/ 19494 438093 438093.438201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7788585179133 0 \N \N f 0 \N 2 217682857 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 439766 2024-02-26 18:58:49.042 2024-02-26 19:08:50.213 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nMajority next authority recognize claim role. Million him position system quickly whether https://example.com/ 11328 439758 439699.439752.439758.439766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7126403929517 0 \N \N f 0 \N 8 105412319 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 438331 2024-02-25 14:59:21.888 2024-02-25 15:09:23.152 \N Knowledge figure draw. Billion pay suggest research. American window can organ https://example.com/ 18264 438201 438093.438201.438331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0206367346283 0 \N \N f 0 \N 0 65117013 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435054 2024-02-22 14:49:19.202 2024-02-22 14:59:20.388 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial s https://example.com/ 6537 434791 434791.435054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6283935900054 0 \N \N f 0 \N 1 158710479 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 434990 2024-02-22 13:57:40.902 2024-02-22 14:07:42.868 Top however ad Billion here large general understand. Sit action cold which. Approach level expl https://example.com/ 15386 \N 434990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9598501990191 0 \N \N f 0 \N 7 108158877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438938 2024-02-26 07:31:51.623 2024-02-26 07:41:53.123 Wide hundred paper early. Together third attorney entire. And Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin https://example.com/ 2347 \N 438938 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 28.2229497939841 0 \N \N f 0 \N 3 80194170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435222 2024-02-22 16:51:25.581 2024-02-22 17:01:27.479 \N Mind treatment nature play. Mr hit security game h https://example.com/ 4989 435183 435154.435183.435222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.881697416475 0 \N \N f 0 \N 1 44038327 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435009 2024-02-22 14:08:41.96 2024-02-22 14:18:44.562 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Includi https://example.com/ 21180 434922 434922.435009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8763005235261 0 \N \N f 0 \N 0 42727922 0 f f \N \N \N \N 434922 \N 0 0 \N \N f \N 440022 2024-02-26 22:01:12.016 2024-02-26 22:11:13.707 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder compa https://example.com/ 18396 440011 439844.440006.440011.440022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.39601282571 0 \N \N f 0 \N 0 101470684 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435058 2024-02-22 14:52:01.358 2024-02-22 15:02:04.326 \N Artist sound return full resource https://example.com/ 20162 434990 434990.435058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.163062905995 0 \N \N f 0 \N 0 75748220 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 435225 2024-02-22 16:52:55.905 2024-02-22 17:02:57.173 \N Service source fact. T https://example.com/ 20015 435151 435151.435225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2497197708564 0 \N \N f 0 \N 0 202651413 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 435066 2024-02-22 14:55:22.493 2024-02-22 15:05:24.119 \N Yard subject low series serious spend. Someone thousand social too. Soon road over autho https://example.com/ 690 434797 434795.434797.435066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.40512004794486 0 \N \N f 0 \N 0 239834500 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440881 2024-02-27 18:01:32.552 2024-02-27 18:11:34.014 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nReturn teache https://example.com/ 19886 440735 440587.440735.440881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3386622255858 0 \N \N f 0 \N 0 20524743 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 434323 2024-02-21 21:52:35.772 2024-02-21 22:02:37.52 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce opti https://example.com/ 18904 433669 433669.434323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74278708968319 0 \N \N f 0 \N 0 151247590 0 f f \N \N \N \N 433669 \N 0 0 \N \N f \N 435060 2024-02-22 14:53:17.165 2024-02-22 15:03:18.549 \N Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player https://example.com/ 20450 435054 434791.435054.435060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6758248293003 0 \N \N f 0 \N 0 179414344 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 440873 2024-02-27 17:55:10.861 2024-02-27 18:05:11.935 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organiza https://example.com/ 2203 440725 440725.440873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.532710053963 0 \N \N f 0 \N 0 244132330 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440564 2024-02-27 14:00:04.631 2024-02-27 14:10:05.866 Commercial loss cultural help show Mr \N https://example.com/ 1480 \N 440564 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.4500279639225 0 \N \N f 0 \N 1 160566154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435397 2024-02-22 18:56:39.381 2024-02-22 19:06:40.514 \N South amount s https://example.com/ 629 435392 435392.435397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5523663341984 0 \N \N f 0 \N 0 206649103 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 433865 2024-02-21 15:27:06.68 2024-02-21 15:37:07.743 By fight several talk. Minute probably fish player. Drive wind Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nLong management far budget rate often president stop. Section civil body ball https://example.com/ 1658 \N 433865 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 19.2461252258887 0 \N \N f 0 \N 0 127778513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439997 2024-02-26 21:32:00.665 2024-02-26 21:42:02.335 \N Produce series whom citizen sit. Crime these would her. Available consume https://example.com/ 8916 439990 439990.439997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4694829628152 0 \N \N f 0 \N 2 108782611 0 f f \N \N \N \N 439990 \N 0 0 \N \N f \N 435109 2024-02-22 15:33:46.099 2024-02-22 15:43:48.598 \N Machine thousand dete https://example.com/ 21178 435106 435017.435106.435109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9363813265732 0 \N \N f 0 \N 0 201805975 0 f f \N \N \N \N 435017 \N 0 0 \N \N f \N 435089 2024-02-22 15:16:41.537 2024-02-22 15:26:43.18 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic agai https://example.com/ 20597 434628 434577.434610.434628.435089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3722647698251 0 \N \N f 0 \N 0 148535166 0 f f \N \N \N \N 434577 \N 0 0 \N \N f \N 434577 2024-02-22 05:37:01.214 2024-02-22 05:47:02.233 Parent always at part must all. Every Book environmental good western support either https://example.com/ 20912 \N 434577 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 20.0237379011827 0 \N \N f 0 \N 5 145934127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435110 2024-02-22 15:35:06.002 2024-02-22 15:45:08.258 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. In https://example.com/ 1307 434957 434957.435110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89606779798318 0 \N \N f 0 \N 1 135530122 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 435040 2024-02-22 14:34:27.319 2024-02-22 14:44:29.815 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself thei https://example.com/ 19531 435018 435018.435040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2343402789625 0 \N \N f 0 \N 1 182686546 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 435095 2024-02-22 15:21:30.251 2024-02-22 15:31:32.431 \N Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn https://example.com/ 880 435065 435065.435095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.46161987188262 0 \N \N f 0 \N 1 197483925 0 f f \N \N \N \N 435065 \N 0 0 \N \N f \N 435112 2024-02-22 15:39:12.942 2024-02-22 15:49:14.513 Different dog exa Have decide busines https://example.com/ 759 \N 435112 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.6280147536113 0 \N \N f 0 \N 0 56404332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435146 2024-02-22 16:03:29.983 2024-02-22 16:13:31.315 \N Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain person https://example.com/ 8326 435125 435125.435146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5642705093867 0 \N \N f 0 \N 0 203180216 0 f f \N \N \N \N 435125 \N 0 0 \N \N f \N 434588 2024-02-22 05:58:08.406 2024-02-22 06:08:10.501 Myself candidate idea st Whether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone rel https://example.com/ 7395 \N 434588 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 3.75343705688369 0 \N \N f 0 \N 0 231912674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434600 2024-02-22 06:08:21.242 2024-02-22 06:18:22.736 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nNever heavy table particularl https://example.com/ 9366 434077 434077.434600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7284220217397 0 \N \N f 0 \N 1 159951879 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 439563 2024-02-26 16:14:25.14 2024-02-26 16:24:27.476 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare f https://example.com/ 11153 438936 438936.439563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3021007353939 0 \N \N f 0 \N 8 10101874 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 435121 2024-02-22 15:44:12.065 2024-02-22 15:54:14.713 \N Agency rate seven fear open. Design group se https://example.com/ 15697 434600 434077.434600.435121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7117239852422 0 \N \N f 0 \N 0 160878059 0 f f \N \N \N \N 434077 \N 0 0 \N \N f \N 441136 2024-02-27 21:46:04.149 2024-02-27 21:56:05.53 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach ha https://example.com/ 18016 441129 440988.441129.441136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6405413957109 0 \N \N f 0 \N 1 105923518 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 435141 2024-02-22 15:59:20.675 2024-02-22 16:09:22.339 \N Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. https://example.com/ 11862 435030 435030.435141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9318321717443 0 \N \N f 0 \N 10 185844614 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 440062 2024-02-26 22:49:15.314 2024-02-26 22:59:17.142 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what cultu https://example.com/ 18005 440049 439764.440049.440062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88164462900573 0 \N \N f 0 \N 0 169321012 0 f f \N \N \N \N 439764 \N 0 0 \N \N f \N 440060 2024-02-26 22:48:27.073 2024-02-26 22:58:29.445 \N Family happy son budget speech across. Building effect kitchen. Happy tell local https://example.com/ 20744 439798 439764.439798.440060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4894116416792 0 \N \N f 0 \N 0 6687939 0 f f \N \N \N \N 439764 \N 0 0 \N \N f \N 434859 2024-02-22 11:58:40.11 2024-02-22 12:08:49.773 \N Finally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able https://example.com/ 5129 434795 434795.434859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5944363923886 0 \N \N f 0 \N 0 173726969 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439810 2024-02-26 19:35:14.253 2024-02-26 19:45:15.726 \N Order science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nProvide enjoy appear these. What care if degree. Even camera drop. Of https://example.com/ 1705 435794 435746.435794.439810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1365223138033 0 \N \N f 0 \N 1 158964754 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 440032 2024-02-26 22:13:36.871 2024-02-26 22:23:39.548 Plant ever Republican together pic Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader. https://example.com/ 2780 \N 440032 \N \N \N \N \N \N \N \N security \N ACTIVE \N 2.57578788993527 0 \N \N f 0 \N 0 210750124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435059 2024-02-22 14:52:12.944 2024-02-22 15:02:13.899 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect https://example.com/ 15577 435046 435046.435059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7497595124448 0 \N \N f 0 \N 4 84613111 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439958 2024-02-26 21:02:33.15 2024-02-26 21:12:34.23 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low r https://example.com/ 20084 439910 439130.439577.439859.439910.439958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.479986564895 0 \N \N f 0 \N 0 177322312 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 435299 2024-02-22 17:37:12.446 2024-02-22 17:47:13.446 \N Provide difference relationship. Factor v https://example.com/ 12483 435274 434795.435274.435299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7713184462113 0 \N \N f 0 \N 0 105237207 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 441037 2024-02-27 20:10:40.006 2024-02-27 20:20:42.037 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nFoot not https://example.com/ 18017 440999 440989.440999.441037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0300200831681 0 \N \N f 0 \N 4 122193274 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 435287 2024-02-22 17:32:28.49 2024-02-22 17:42:29.675 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size hous https://example.com/ 11164 435154 435154.435287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.866403219728 0 \N \N f 0 \N 3 156851646 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435137 2024-02-22 15:57:15.437 2024-02-22 16:07:16.916 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep singl https://example.com/ 19243 435119 435046.435119.435137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1748483810049 0 \N \N f 0 \N 0 184020376 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435161 2024-02-22 16:15:21.146 2024-02-22 16:25:22.342 \N Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age https://example.com/ 21012 354366 354366.435161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5713894611654 0 \N \N f 0 \N 0 28930609 0 f f \N \N \N \N 354366 \N 0 0 \N \N f \N 435323 2024-02-22 17:53:28.028 2024-02-22 18:03:29.669 \N Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell https://example.com/ 16341 435312 435046.435246.435252.435312.435323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6794212424095 0 \N \N f 0 \N 0 246033678 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 441883 2024-02-28 13:06:02.23 2024-02-28 13:16:03.206 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nPractice see become. Chance education industry when attorney him. Consider upon decision a https://example.com/ 21612 441828 441828.441883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54480660410976 0 \N \N f 0 \N 0 241455256 0 f f \N \N \N \N 441828 \N 0 0 \N \N f \N 435082 2024-02-22 15:06:04.232 2024-02-22 15:16:06.636 \N History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nSet how recognize operation Americ https://example.com/ 3409 434795 434795.435082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27648342204579 0 \N \N f 0 \N 0 221065381 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436414 2024-02-23 16:57:45.232 2024-02-23 17:07:47.478 \N Take throw line right your trial public. Film open contain military soon. Attack her give set indic https://example.com/ 9820 436323 436323.436414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.04514889701208 0 \N \N f 0 \N 0 109316949 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 439866 2024-02-26 20:10:11.354 2024-02-26 20:20:12.6 \N Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mothe https://example.com/ 19531 439660 439082.439660.439866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1518679703441 0 \N \N f 0 \N 0 110799298 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435156 2024-02-22 16:11:01.166 2024-02-22 16:21:02.851 \N Out quite different term just require. Sto https://example.com/ 14503 434641 434641.435156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5011291955133 0 \N \N f 0 \N 1 98926644 0 f f \N \N \N \N 434641 \N 0 0 \N \N f \N 433435 2024-02-21 07:16:30.758 2024-02-22 07:30:08.244 Morning hundred analysis understand a Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. R https://example.com/ 18525 \N 433435 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 4.95860660168923 0 \N \N f 0 \N 26 114964377 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435119 2024-02-22 15:43:39.825 2024-02-22 15:53:40.928 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nOccur c https://example.com/ 5829 435046 435046.435119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.408824138901345 0 \N \N f 0 \N 1 94563910 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440027 2024-02-26 22:10:14.93 2024-02-26 22:20:16.719 \N Them resp https://example.com/ 10821 439810 435746.435794.439810.440027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6734673231562 0 \N \N f 0 \N 0 105187355 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 439923 2024-02-26 20:44:04.422 2024-02-26 20:54:06.216 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold w https://example.com/ 16276 439668 439390.439573.439668.439923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12915166863524 0 \N \N f 0 \N 1 236314590 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 440064 2024-02-26 22:49:25.465 2024-02-26 22:59:27.155 \N Successful power down must next system pul https://example.com/ 14381 440024 439764.440024.440064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25758783427004 0 \N \N f 0 \N 0 85893283 0 f f \N \N \N \N 439764 \N 0 0 \N \N f \N 440463 2024-02-27 11:26:08.399 2024-02-27 11:36:10.773 Leader partner among describe unit Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nDetail economy still boy fine in https://example.com/ 21067 \N 440463 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 6.58114983740507 0 \N \N f 0 \N 4 112908738 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440050 2024-02-26 22:32:37.633 2024-02-26 22:42:38.894 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number bil https://example.com/ 1673 440031 439699.440025.440031.440050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9343862813605 0 \N \N f 0 \N 1 107233392 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440885 2024-02-27 18:13:37.691 2024-02-27 18:23:39.41 \N We course us bank recently significant myself. Of past themselves condition smile various join. Relate h https://example.com/ 17212 439923 439390.439573.439668.439923.440885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83796361620156 0 \N \N f 0 \N 0 195534115 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439906 2024-02-26 20:37:54.734 2024-02-26 20:47:56.027 \N Right side resourc https://example.com/ 1483 439903 439082.439903.439906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.89211161245989 0 \N \N f 0 \N 4 186799576 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435150 2024-02-22 16:07:52.893 2024-02-22 16:17:55.197 \N Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nStory meet https://example.com/ 18154 435130 434488.434560.434908.435130.435150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0677518821731 0 \N \N f 0 \N 0 68256351 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 435205 2024-02-22 16:37:36.26 2024-02-22 16:47:37.334 Senior than easy statement both total. Picture seek also Mr degre Push floor economy probably reason say rest. We possible https://example.com/ 11329 \N 435205 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.826963094462 0 \N \N f 0 \N 0 181369771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440031 2024-02-26 22:12:32.516 2024-02-26 22:22:34.317 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. https://example.com/ 11897 440025 439699.440025.440031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5696603059078 0 \N \N f 0 \N 2 164949158 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440042 2024-02-26 22:24:29.124 2024-02-26 22:34:30.849 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nCompa https://example.com/ 19147 440023 438936.440023.440042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.393115191677893 0 \N \N f 0 \N 1 137259249 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439330 2024-02-26 13:51:31.276 2024-02-26 14:01:32.451 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reas https://example.com/ 14271 439082 439082.439330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3413211485263 0 \N \N f 0 \N 0 207752701 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440925 2024-02-27 18:45:53.271 2024-02-27 18:55:54.568 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Drea https://example.com/ 21469 440898 440898.440925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79061512683597 0 \N \N f 0 \N 8 104132015 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 434559 2024-02-22 05:08:17.334 2024-02-22 05:18:18.547 \N Doctor operation because training l https://example.com/ 994 433975 433588.433975.434559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8105657973413 0 \N \N f 0 \N 0 111404687 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 435125 2024-02-22 15:50:51.097 2024-02-22 16:00:52.596 Police civil here think minute economic. Let fat Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research. https://example.com/ 19864 \N 435125 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.96946887675356 0 \N \N f 0 \N 2 40524320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435148 2024-02-22 16:04:45.562 2024-02-22 16:14:46.738 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream ma https://example.com/ 14168 434791 434791.435148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64408240843122 0 \N \N f 0 \N 0 151859038 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435157 2024-02-22 16:14:09.673 2024-02-22 16:24:10.459 \N Push hair specific policy. We decision easy surface to directo https://example.com/ 1631 354472 353322.354465.354472.435157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6264745060612 0 \N \N f 0 \N 0 123200739 0 f f \N \N \N \N 353322 \N 0 0 \N \N f \N 434939 2024-02-22 13:09:04.293 2024-02-22 13:19:05.493 Even hot political little painting home. Garden speech put mom We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step thei https://example.com/ 2963 \N 434939 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.78959315938748 0 \N \N f 0 \N 0 245631289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439706 2024-02-26 18:07:16.101 2024-02-26 18:17:16.995 \N Full both sound century close card. Anyone occur number receive one perfor https://example.com/ 13931 439705 439699.439703.439705.439706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3506469785406 0 \N \N f 0 \N 1 5736426 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 439779 2024-02-26 19:11:00.69 2024-02-26 19:21:02.049 Door visit program account. Feel section behavior knowledge. Resource begin ta Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship. https://example.com/ 732 \N 439779 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.3979321901539 0 \N \N f 0 \N 3 210107643 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435153 2024-02-22 16:08:35.48 2024-02-22 16:18:36.691 \N Seek mil https://example.com/ 4126 435142 435142.435153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4479463184113 0 \N \N f 0 \N 0 172630374 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 435165 2024-02-22 16:16:35.996 2024-02-22 16:26:37.437 Every east political drug. Important game subject seat seek college learn. La Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major. https://example.com/ 8162 \N 435165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.74577907115072 0 \N \N f 0 \N 2 36457912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435158 2024-02-22 16:14:36.714 2024-02-22 16:24:39.376 \N Toward po https://example.com/ 4650 435151 435151.435158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2180044210989 0 \N \N f 0 \N 0 229089870 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 435130 2024-02-22 15:52:45.11 2024-02-22 16:02:46.702 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish o https://example.com/ 19282 434908 434488.434560.434908.435130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.058021900668 0 \N \N f 0 \N 1 95210184 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 440037 2024-02-26 22:15:11.559 2024-02-26 22:25:12.961 \N Bank one body pull the expect. https://example.com/ 21239 439994 439994.440037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0802897958385 0 \N \N f 0 \N 0 188198015 0 f f \N \N \N \N 439994 \N 0 0 \N \N f \N 440040 2024-02-26 22:17:59.156 2024-02-26 22:28:00.868 \N Remember statement trip much improve b https://example.com/ 1823 439948 439711.439948.440040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64769082264185 0 \N \N f 0 \N 0 48640867 0 f f \N \N \N \N 439711 \N 0 0 \N \N f \N 441120 2024-02-27 21:30:25.935 2024-02-27 21:40:27.154 \N Republican part letter https://example.com/ 822 441107 441107.441120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3915544791629 0 \N \N f 0 \N 0 161368252 0 f f \N \N \N \N 441107 \N 0 0 \N \N f \N 441275 2024-02-28 00:16:30.812 2024-02-28 00:26:31.895 \N Author nearly sea similar health race per. However here person https://example.com/ 646 441216 441169.441216.441275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83529279889333 0 \N \N f 0 \N 1 97145282 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 440045 2024-02-26 22:27:00.348 2024-02-26 22:37:01.4 Community least media interest. Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or. https://example.com/ 7818 \N 440045 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 24.7161110306073 0 \N \N f 0 \N 0 72233529 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440036 2024-02-26 22:14:42.968 2024-02-26 22:24:44.852 \N Poor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful ha https://example.com/ 1310 439779 439779.440036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.92115323833069 0 \N \N f 0 \N 0 127847674 0 f f \N \N \N \N 439779 \N 0 0 \N \N f \N 440038 2024-02-26 22:15:58.13 2024-02-26 22:25:59.844 \N Yard someone shake final someone purpo https://example.com/ 657 439830 438936.439830.440038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1929802690637 0 \N \N f 0 \N 0 194317374 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 440039 2024-02-26 22:16:54.467 2024-02-26 22:26:55.876 \N Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still https://example.com/ 21424 439298 439298.440039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06814229497797 0 \N \N f 0 \N 0 196279138 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 435143 2024-02-22 15:59:33.085 2024-02-22 16:09:34.625 \N Key third PM painting wrong generation every. Authority daughte https://example.com/ 713 434665 434665.435143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.00165519961566218 0 \N \N f 0 \N 0 243936477 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 431293 2024-02-19 18:25:57.16 2024-02-19 18:35:58.978 Foot not wonder myself eat stude Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak tri https://example.com/ 18170 \N 431293 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 29.465904192669 0 \N \N f 0 \N 1 130644893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435144 2024-02-22 16:00:11.508 2024-02-22 16:10:12.838 Region side point win through. Deep check rather loss world adult. Easy subje Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range. https://example.com/ 11821 \N 435144 \N \N \N \N \N \N \N \N security \N ACTIVE \N 17.2159362840637 0 \N \N f 0 \N 0 32170273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435190 2024-02-22 16:28:36.484 2024-02-22 16:38:37.739 \N Sense college state many. Some your mother else receive fall. Threat throughout el https://example.com/ 3506 435183 435154.435183.435190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77225543274076 0 \N \N f 0 \N 0 24496747 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435145 2024-02-22 16:02:49.239 2024-02-22 16:12:51.463 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Fina https://example.com/ 11328 435127 435046.435127.435145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9526850831083 0 \N \N f 0 \N 1 114466738 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435164 2024-02-22 16:16:22.149 2024-02-22 16:26:23.625 \N Then politica https://example.com/ 19329 435142 435142.435164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51982370253045 0 \N \N f 0 \N 1 125703020 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 434680 2024-02-22 08:46:03.793 2024-02-22 08:56:05.494 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window https://example.com/ 21571 433934 433934.434680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4922203688605 0 \N \N f 0 \N 0 190066737 0 f f \N \N \N \N 433934 \N 0 0 \N \N f \N 435169 2024-02-22 16:18:19.332 2024-02-22 16:28:20.763 \N Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense gar https://example.com/ 16839 435014 435014.435169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5605873846233 0 \N \N f 0 \N 0 61325902 0 f f \N \N \N \N 435014 \N 0 0 \N \N f \N 435168 2024-02-22 16:17:23.809 2024-02-22 16:27:24.648 \N Treatment dream at https://example.com/ 19569 435151 435151.435168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.68059468053916 0 \N \N f 0 \N 0 76801595 0 f f \N \N \N \N 435151 \N 0 0 \N \N f \N 441478 2024-02-28 05:21:43.031 2024-02-28 05:31:44.113 \N Skin summer development ben https://example.com/ 2748 440692 440692.441478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.32599134670256 0 \N \N f 0 \N 0 73987032 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441466 2024-02-28 04:48:56.367 2024-02-28 04:58:57.487 \N Everybody laugh key left specific wonder. Per low clear sport pro https://example.com/ 7097 441280 441169.441276.441280.441466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.759972570447 0 \N \N f 0 \N 0 203142445 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 435166 2024-02-22 16:17:00.252 2024-02-22 16:27:01.142 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nRight student yard protect cover. Carry these https://example.com/ 4014 435165 435165.435166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.135383676333 0 \N \N f 0 \N 0 222214435 0 f f \N \N \N \N 435165 \N 0 0 \N \N f \N 435189 2024-02-22 16:28:34.239 2024-02-22 16:38:35.725 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nHit decade ni https://example.com/ 18727 435149 435046.435132.435149.435189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57774623356109 0 \N \N f 0 \N 1 213761941 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436305 2024-02-23 15:19:47.551 2024-02-23 15:29:49.489 \N Industry benefit as tree standard worry cultural. Back possible mac https://example.com/ 21424 436241 436241.436305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1072765908601 0 \N \N f 0 \N 0 117340098 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436473 2024-02-23 17:35:51.782 2024-02-23 17:45:53.227 \N Yes but trut https://example.com/ 1751 436445 436445.436473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6479437683019 0 \N \N f 0 \N 0 94600303 0 f f \N \N \N \N 436445 \N 0 0 \N \N f \N 435203 2024-02-22 16:36:47.422 2024-02-22 16:46:49.065 \N Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Cam https://example.com/ 10586 434665 434665.435203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87484127485907 0 \N \N f 0 \N 0 18310813 0 f f \N \N \N \N 434665 \N 0 0 \N \N f \N 436363 2024-02-23 16:08:42.868 2024-02-23 16:18:44.654 Between buy half story. Buy whom significant modern air price. That very sister atten https://example.com/ 15544 \N 436363 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.4475355490438 0 \N \N f 0 \N 1 113181443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440047 2024-02-26 22:29:51.202 2024-02-26 22:39:53.067 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nRe https://example.com/ 21060 439926 439926.440047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8823443680424 0 \N \N f 0 \N 0 232466711 0 f f \N \N \N \N 439926 \N 0 0 \N \N f \N 441115 2024-02-27 21:23:52.619 2024-02-27 21:33:54.011 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye https://example.com/ 20713 439806 439806.441115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3234120648002 0 \N \N f 0 \N 0 154453456 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 436343 2024-02-23 15:54:57.148 2024-02-23 16:04:58.963 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Ins https://example.com/ 20129 436028 436028.436343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20556608234497 0 \N \N f 0 \N 5 249353491 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 435120 2024-02-22 15:43:53.567 2024-02-22 15:53:54.313 Ask arm intervi Material arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nHeart such other on during catch. Itself help https://example.com/ 12245 \N 435120 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 20.7109484646507 0 \N \N f 0 \N 6 50874655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441104 2024-02-27 21:17:30.666 2024-02-27 21:27:32.176 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for simil https://example.com/ 18199 441099 440989.440999.441037.441062.441072.441099.441104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7959597009842 0 \N \N f 0 \N 0 234348924 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 435219 2024-02-22 16:48:23.17 2024-02-22 16:58:25.735 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine econom https://example.com/ 1825 435213 435046.435213.435219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6251619412798 0 \N \N f 0 \N 0 16127793 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435210 2024-02-22 16:42:41.608 2024-02-22 16:52:43.283 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education com https://example.com/ 10270 435030 435030.435210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.449693957424522 0 \N \N f 0 \N 1 237623380 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 441130 2024-02-27 21:37:03.593 2024-02-27 21:47:05.666 \N Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name w https://example.com/ 21119 441011 440692.441011.441130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4878814359904 0 \N \N f 0 \N 9 186543939 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 436445 2024-02-23 17:18:05.246 2024-02-23 17:28:06.917 Although thought fall today protect Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later. https://example.com/ 20523 \N 436445 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.7673532096673 0 \N \N f 0 \N 1 243031196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436486 2024-02-23 17:41:25.302 2024-02-23 17:51:27.366 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main https://example.com/ 12122 436452 435690.435929.436271.436341.436452.436486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6358804489526 0 \N \N f 0 \N 1 75312555 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 441041 2024-02-27 20:11:52.551 2024-02-27 20:21:53.983 \N Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Empl https://example.com/ 17201 441026 440988.441015.441026.441041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7900245885257 0 \N \N f 0 \N 0 172866432 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 440049 2024-02-26 22:32:05.476 2024-02-26 22:42:07.266 \N Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nFloo https://example.com/ 18363 439764 439764.440049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4808501122066 0 \N \N f 0 \N 1 98074073 0 f f \N \N \N \N 439764 \N 0 0 \N \N f \N 435208 2024-02-22 16:38:57.996 2024-02-22 16:48:59.343 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great we https://example.com/ 10944 435026 435026.435208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2028783514346 0 \N \N f 0 \N 0 93860892 0 f f \N \N \N \N 435026 \N 0 0 \N \N f \N 435232 2024-02-22 16:55:24.189 2024-02-22 17:05:25.973 \N Successfu https://example.com/ 20826 435221 435046.435135.435162.435214.435221.435232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4240458028369 0 \N \N f 0 \N 0 249497932 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435207 2024-02-22 16:37:55.457 2024-02-22 16:47:56.929 Material arm interest draw p International ground thought computer somebody support i https://example.com/ 15075 \N 435207 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.16441241437619 0 \N \N f 0 \N 0 218812903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435211 2024-02-22 16:44:01.578 2024-02-22 16:54:02.743 \N Perform might som https://example.com/ 17172 435165 435165.435211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55257850300568 0 \N \N f 0 \N 0 99066770 0 f f \N \N \N \N 435165 \N 0 0 \N \N f \N 435223 2024-02-22 16:51:36.111 2024-02-22 17:01:37.335 \N Large direction focus detail. When herself wis https://example.com/ 19126 435201 435201.435223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8988522191375 0 \N \N f 0 \N 0 176127098 0 f f \N \N \N \N 435201 \N 0 0 \N \N f \N 440051 2024-02-26 22:33:25.018 2024-02-26 22:43:27.175 \N Truth tr https://example.com/ 2390 439752 439699.439752.440051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2611612621206 0 \N \N f 0 \N 0 101778611 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 435243 2024-02-22 17:01:16.733 2024-02-22 17:11:17.577 Apply president organizatio Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nJob stage use https://example.com/ 9333 \N 435243 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.677816097331 0 \N \N f 0 \N 0 196643148 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435251 2024-02-22 17:11:19.272 2024-02-22 17:21:21.406 \N Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure https://example.com/ 18896 434440 434440.435251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.40004661966716 0 \N \N f 0 \N 0 185233628 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 440048 2024-02-26 22:30:36.288 2024-02-26 22:40:37.223 \N Majority certainly song between country rise every lose. Head education white need yard ty https://example.com/ 5590 439995 439844.439857.439873.439882.439959.439995.440048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1507176812602 0 \N \N f 0 \N 0 146417923 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435237 2024-02-22 16:59:09.108 2024-02-22 17:09:11.623 \N As quality own off arm re https://example.com/ 2016 435136 435136.435237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5285946353699 0 \N \N f 0 \N 1 149115252 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 438859 2024-02-26 03:40:59.777 2024-02-26 03:51:02.016 Source scientist hair let. Tough hit Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chai https://example.com/ 20889 \N 438859 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 19.6304841302704 0 \N \N f 0 \N 0 158009788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435249 2024-02-22 17:06:29.291 2024-02-22 17:16:31.494 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule dee https://example.com/ 17221 435244 435115.435133.435244.435249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8928773212399 0 \N \N f 0 \N 3 122767369 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 435269 2024-02-22 17:24:00.354 2024-02-22 17:34:01.675 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nWay all line after. Only trouble they hair when. According the help together any. Vi https://example.com/ 716 435253 435115.435133.435244.435249.435253.435269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0422987955969 0 \N \N f 0 \N 1 123164501 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 440054 2024-02-26 22:37:16.853 2024-02-26 22:47:18.25 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh d https://example.com/ 21413 439731 439390.439731.440054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1965579158845 0 \N \N f 0 \N 2 217946253 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 438222 2024-02-25 13:17:37.743 2024-02-25 13:27:39.972 \N Prevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long https://example.com/ 15594 438093 438093.438222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6161909628335 0 \N \N f 0 \N 3 203085263 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435227 2024-02-22 16:53:29.7 2024-02-22 17:03:30.892 Month explain matter south. Thus car occur bad. Green various method rule up Size matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead. https://example.com/ 19263 \N 435227 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.6080788045143 0 \N \N f 0 \N 1 181608374 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435238 2024-02-22 16:59:13.199 2024-02-22 17:09:15.168 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. H https://example.com/ 21079 435235 435046.435135.435162.435214.435220.435235.435238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3985501397759 0 \N \N f 0 \N 0 196306357 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435226 2024-02-22 16:53:11.547 2024-02-22 17:03:13.404 Still power agent hospital. Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful. https://example.com/ 21547 \N 435226 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 18.6238955037251 0 \N \N f 0 \N 2 222303309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435263 2024-02-22 17:19:22.401 2024-02-22 17:29:23.526 Someone network true easy store. Take Republican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass. https://example.com/ 4521 \N 435263 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.8548590314951 0 \N \N f 0 \N 0 197728662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438363 2024-02-25 15:25:41.35 2024-02-25 15:35:42.484 Grow challenge small bill sometimes statement enjoy. Perhaps Beyond song throw blood hard. Show already get best. Scie https://example.com/ 20470 \N 438363 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 28.6007817371214 0 \N \N f 0 \N 0 105043440 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434963 2024-02-22 13:32:34.071 2024-02-22 13:42:35.168 Shake pretty eat probably pretty stop time. Eve According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. S https://example.com/ 8173 \N 434963 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.00119818829332985 0 \N \N f 0 \N 0 105756553 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441464 2024-02-28 04:47:42.81 2024-02-28 04:57:44.056 \N Outside mother movement day enough. Ever https://example.com/ 9356 441372 441372.441464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4012260099171 0 \N \N f 0 \N 0 150502705 0 f f \N \N \N \N 441372 \N 0 0 \N \N f \N 440068 2024-02-26 22:53:32.643 2024-02-26 23:03:33.496 \N After way c https://example.com/ 2674 440056 440056.440068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3419757815845 0 \N \N f 0 \N 0 246613758 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 438780 2024-02-26 00:36:07.658 2024-02-26 00:46:09.406 Quickly build security. Move purpose well important learn population study. Key tu https://example.com/ 9356 \N 438780 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 6.51262173814292 0 \N \N f 0 \N 0 125326879 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435212 2024-02-22 16:44:32.172 2024-02-22 16:54:33.309 \N Size matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner https://example.com/ 18138 435200 435046.435135.435162.435200.435212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4805153219087 0 \N \N f 0 \N 1 213111799 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435248 2024-02-22 17:05:20.087 2024-02-22 17:15:21.393 \N Glass her remember exist https://example.com/ 14906 435142 435142.435248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94416784915109 0 \N \N f 0 \N 0 165544615 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 438084 2024-02-25 10:48:31.174 2024-02-25 10:58:32.833 Series wait hotel north action bag Strong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system c https://example.com/ 19570 \N 438084 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 7.06711439458587 0 \N \N f 0 \N 3 82753156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440053 2024-02-26 22:36:40.121 2024-02-26 22:46:41.802 \N Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond ca https://example.com/ 19668 439390 439390.440053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6185053726951 0 \N \N f 0 \N 0 30452058 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 434447 2024-02-22 00:50:57.808 2024-02-22 01:00:59.582 Force job radio law. May Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nScore picture lot profes https://example.com/ 20109 \N 434447 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.2805696165091 0 \N \N f 0 \N 2 27550672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435044 2024-02-22 14:39:28.871 2024-02-22 14:49:29.887 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization https://example.com/ 6578 434447 434447.435044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06557039263752 0 \N \N f 0 \N 1 59624876 0 f f \N \N \N \N 434447 \N 0 0 \N \N f \N 435245 2024-02-22 17:03:43.839 2024-02-22 17:13:45.522 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husba https://example.com/ 21619 435044 434447.435044.435245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1317076698139 0 \N \N f 0 \N 0 245743718 0 f f \N \N \N \N 434447 \N 0 0 \N \N f \N 437535 2024-02-24 17:43:41.14 2024-02-24 17:53:42.36 \N Many soldier role. Far buy able idea president try television. https://example.com/ 16598 437502 437502.437535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5144613178221 0 \N \N f 0 \N 3 190812846 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 435228 2024-02-22 16:54:00.488 2024-02-22 17:04:01.473 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military https://example.com/ 20979 435226 435226.435228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0913100019405 0 \N \N f 0 \N 0 229917144 0 f f \N \N \N \N 435226 \N 0 0 \N \N f \N 435256 2024-02-22 17:12:58.665 2024-02-22 17:22:59.544 \N Meeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although directi https://example.com/ 14247 435254 435046.435135.435162.435214.435220.435235.435254.435256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.03495081451758 0 \N \N f 0 \N 0 224013688 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440052 2024-02-26 22:35:22.687 2024-02-26 22:45:23.871 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Manage https://example.com/ 19905 440004 440004.440052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47791282282179 0 \N \N f 0 \N 6 142947922 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 438340 2024-02-25 15:02:44.756 2024-02-25 15:12:47.317 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weig https://example.com/ 770 438084 438084.438340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3243957459232 0 \N \N f 0 \N 2 54479301 0 f f \N \N \N \N 438084 \N 0 0 \N \N f \N 440864 2024-02-27 17:48:33.23 2024-02-27 17:58:34.509 \N Hour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate mont https://example.com/ 7185 440328 439822.440328.440864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3253580147018 0 \N \N f 0 \N 1 94423553 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 438573 2024-02-25 19:01:21.47 2024-02-25 19:11:23.956 Republican plan ever. Avoid past strong. Cen Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Ha https://example.com/ 631 \N 438573 \N \N \N \N \N \N \N \N security \N ACTIVE \N 24.7415739001489 0 \N \N f 0 \N 9 146756023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435337 2024-02-22 17:59:17.323 2024-02-22 18:09:18.553 \N Not reveal allow arm mill https://example.com/ 4487 435330 434795.434798.435179.435194.435204.435239.435290.435325.435330.435337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.124574302224509 0 \N \N f 0 \N 2 9319362 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435179 2024-02-22 16:22:07.368 2024-02-22 16:32:08.825 \N Ready which computer major tak https://example.com/ 3347 434798 434795.434798.435179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8151048424375 0 \N \N f 0 \N 9 2868493 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435019 2024-02-22 14:16:59.323 2024-02-22 14:27:01.647 Foot upon smile pass house significant result small. Some hard religious co Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything https://example.com/ 9159 \N 435019 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 7.14565020035781 0 \N \N f 0 \N 1 137617269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438839 2024-02-26 03:10:28.349 2024-02-26 03:20:29.726 \N Wate https://example.com/ 8926 438743 438737.438743.438839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71841536832545 0 \N \N f 0 \N 0 98520346 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 439798 2024-02-26 19:27:35.381 2024-02-26 19:37:36.569 \N Agency party build and event thank leave it. Its first church Mrs. Busin https://example.com/ 20481 439764 439764.439798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4058845758797 0 \N \N f 0 \N 1 184988820 0 f f \N \N \N \N 439764 \N 0 0 \N \N f \N 440004 2024-02-26 21:37:36.858 2024-02-26 21:47:38.241 Third would fire interest PM upon people. Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover tea https://example.com/ 21412 \N 440004 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 24.4318625007626 0 \N \N f 0 \N 8 84033957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441192 2024-02-27 22:49:25.464 2024-02-27 22:59:26.335 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular cou https://example.com/ 18511 441050 440985.441050.441192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4229497254248 0 \N \N f 0 \N 2 144242704 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 441566 2024-02-28 08:18:05.904 2024-02-28 08:28:07.492 \N Material focus experience picture. Future still full blood s https://example.com/ 16124 441559 441333.441403.441463.441545.441549.441559.441566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86026406549004 0 \N \N f 0 \N 0 13160172 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 440061 2024-02-26 22:48:59.073 2024-02-26 22:59:01.124 \N Than budget time gas choice option light. T https://example.com/ 5825 439390 439390.440061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.15183521064761 0 \N \N f 0 \N 0 164141498 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 435272 2024-02-22 17:25:35.543 2024-02-22 17:35:37.904 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nMillion significant throw build. Light subject recently very produce room. Machine parent b https://example.com/ 756 435261 435261.435272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.95992033945213 0 \N \N f 0 \N 2 152161387 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 436434 2024-02-23 17:11:31.645 2024-02-23 17:21:32.698 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nSame need interesting https://example.com/ 2022 434197 434197.436434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4542889987068 0 \N \N f 0 \N 0 57846524 0 f f \N \N \N \N 434197 \N 0 0 \N \N f \N 435273 2024-02-22 17:25:42.037 2024-02-22 17:35:43.149 \N Somebody head others contain moment. Whi https://example.com/ 17011 435265 430109.430351.431086.434668.435265.435273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9101792576078 0 \N \N f 0 \N 1 190227306 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 435271 2024-02-22 17:24:37.767 2024-02-22 17:34:39.735 \N Majority next authority recognize claim role. Million https://example.com/ 681 435224 435224.435271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9261696719169 0 \N \N f 0 \N 1 168540190 0 f f \N \N \N \N 435224 \N 0 0 \N \N f \N 440074 2024-02-26 22:59:10.123 2024-02-26 23:09:11.194 Never able over relate dark up dinner. Same daughter everyone improve what Than level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner cen https://example.com/ 19821 \N 440074 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.24405970070656 0 \N \N f 0 \N 0 61063577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435255 2024-02-22 17:11:49.125 2024-02-22 17:21:51.778 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break https://example.com/ 16950 364096 364096.435255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5271476388632 0 \N \N f 0 \N 0 100082103 0 f f \N \N \N \N 364096 \N 0 0 \N \N f \N 440077 2024-02-26 23:00:58.261 2024-02-26 23:11:00.166 \N Deve https://example.com/ 18359 440056 440056.440077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9166765842689 0 \N \N f 0 \N 0 110869974 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 441320 2024-02-28 01:03:03.692 2024-02-28 01:13:04.981 \N Billion very news personal develop career rate. Hair th https://example.com/ 661 441314 440988.441174.441197.441314.441320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4752372505103 0 \N \N f 0 \N 0 211636621 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 440083 2024-02-26 23:22:46.865 2024-02-26 23:32:47.917 \N Speak specific energy international more entire https://example.com/ 10771 439426 439426.440083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0409055351991 0 \N \N f 0 \N 0 205987052 0 f f \N \N \N \N 439426 \N 0 0 \N \N f \N 435266 2024-02-22 17:20:54.615 2024-02-22 17:30:56.135 \N Would week boy close different again part. Stop school continue environment need charge place. Natio https://example.com/ 8168 435265 430109.430351.431086.434668.435265.435266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.01142182738142 0 \N \N f 0 \N 0 241491964 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 435267 2024-02-22 17:22:09.647 2024-02-22 17:32:12.028 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay https://example.com/ 694 435231 435231.435267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5540239376585 0 \N \N f 0 \N 0 64817757 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 435259 2024-02-22 17:14:32.471 2024-02-22 17:24:33.965 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge info https://example.com/ 889 434916 434916.435259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5761657834534 0 \N \N f 0 \N 0 183664467 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 434916 2024-02-22 12:51:20.458 2024-02-22 13:01:22.347 West possible modern office ma Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest https://example.com/ 21389 \N 434916 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 3.38381539005049 0 \N \N f 0 \N 7 191574097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439959 2024-02-26 21:02:53.056 2024-02-26 21:12:54.599 \N Forget issue save education. Head o https://example.com/ 2322 439882 439844.439857.439873.439882.439959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3922432030343 0 \N \N f 0 \N 2 121713306 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435331 2024-02-22 17:56:49.194 2024-02-22 18:06:50.799 \N Majority next authority recognize claim role. Million him position system quickly whe https://example.com/ 981 435324 435046.435324.435331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3563184582592 0 \N \N f 0 \N 4 40484359 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439995 2024-02-26 21:30:54.667 2024-02-26 21:40:56.456 \N Business food practice look would full across. Official buy thought goal https://example.com/ 21047 439959 439844.439857.439873.439882.439959.439995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.46996713125906 0 \N \N f 0 \N 1 65377915 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440090 2024-02-26 23:36:56.896 2024-02-26 23:46:58.636 Rest factor stock prepare. Area Mrs eat sister movemen Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full. https://example.com/ 1310 \N 440090 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.7878158009475 0 \N \N f 0 \N 0 234888769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441234 2024-02-27 23:24:27.37 2024-02-27 23:34:28.778 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert reg https://example.com/ 10849 441226 440692.441011.441130.441211.441215.441226.441234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4504974404824 0 \N \N f 0 \N 2 105157397 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 434925 2024-02-22 12:56:04.581 2024-02-22 13:06:06.543 \N Leave example rock. Acc https://example.com/ 803 434916 434916.434925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.45924321541679 0 \N \N f 0 \N 1 85570967 0 f f \N \N \N \N 434916 \N 0 0 \N \N f \N 435201 2024-02-22 16:35:59.001 2024-02-22 16:46:00.818 Toward position them Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal re https://example.com/ 21104 \N 435201 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 5.74788080046712 0 \N \N f 0 \N 2 167896134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435262 2024-02-22 17:18:55.326 2024-02-22 17:28:57.327 Line trade last nature number become. Left reduce s Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause. https://example.com/ 12049 \N 435262 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 25.890839060821 0 \N \N f 0 \N 0 75938366 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440088 2024-02-26 23:33:16.424 2024-02-26 23:43:17.946 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain ex https://example.com/ 1692 439298 439298.440088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5413196112942 0 \N \N f 0 \N 0 101435566 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 435302 2024-02-22 17:39:14.292 2024-02-22 17:49:15.219 \N Type door https://example.com/ 1650 431783 294868.431783.435302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2364446220559 0 \N \N f 0 \N 0 190248288 0 f f \N \N \N \N 294868 \N 0 0 \N \N f \N 442718 2024-02-28 21:15:17.508 2024-02-28 21:25:21.217 Ten instead develop somebody into school. Main building plan school public Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Fiv https://example.com/ 10728 \N 442718 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 27.0164371101831 0 \N \N f 0 \N 0 191166322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435246 2024-02-22 17:03:49.225 2024-02-22 17:13:51.627 \N After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person whic https://example.com/ 17682 435046 435046.435246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.92290358455981 0 \N \N f 0 \N 4 94421185 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 438824 2024-02-26 02:41:20.468 2024-02-26 02:51:22.667 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense sp https://example.com/ 20439 438822 438737.438820.438822.438824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42890201950834 0 \N \N f 0 \N 1 239250941 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 435240 2024-02-22 16:59:31.366 2024-02-22 17:09:33.202 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice d https://example.com/ 5499 435217 435217.435240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.398457892443 0 \N \N f 0 \N 0 157679964 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 440085 2024-02-26 23:28:45.436 2024-02-26 23:38:46.986 \N Music energy specific plan https://example.com/ 21155 439131 439131.440085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2229398924148 0 \N \N f 0 \N 0 112539866 0 f f \N \N \N \N 439131 \N 0 0 \N \N f \N 441339 2024-02-28 01:24:22.819 2024-02-28 01:34:24.304 \N Such yourself girl realize certainly together tha https://example.com/ 7983 441275 441169.441216.441275.441339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.63808905182049 0 \N \N f 0 \N 0 217861496 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441150 2024-02-27 22:03:26.985 2024-02-27 22:13:28.414 \N Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. https://example.com/ 21274 441087 441087.441150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4335678004392 0 \N \N f 0 \N 0 79833173 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 440076 2024-02-26 23:00:05.533 2024-02-26 23:00:11.612 \N Score player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy w https://example.com/ 2367 440075 440075.440076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.372016561279 0 \N \N f 0 \N 0 151526571 0 f f \N \N \N \N 440075 \N 0 0 \N \N f \N 440071 2024-02-26 22:55:03.011 2024-02-26 23:05:05.493 \N Network interview indeed whether enjoy realize. Model full talk institu https://example.com/ 13204 438222 438093.438222.440071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8497396845997 0 \N \N f 0 \N 0 222027121 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435280 2024-02-22 17:29:14.96 2024-02-22 17:39:16.496 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either https://example.com/ 5806 435246 435046.435246.435280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0290185585802 0 \N \N f 0 \N 0 45079375 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435170 2024-02-22 16:19:07.797 2024-02-22 16:29:09.105 \N Lead against area note movement street push music. Meet world o https://example.com/ 8059 435167 435167.435170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6839533022229 0 \N \N f 0 \N 0 160538793 0 f f \N \N \N \N 435167 \N 0 0 \N \N f \N 435260 2024-02-22 17:16:21.592 2024-02-22 17:26:23.736 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against m https://example.com/ 20924 435257 435217.435257.435260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5988781663403 0 \N \N f 0 \N 3 18827021 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435279 2024-02-22 17:28:33.434 2024-02-22 17:38:35.287 \N Concern position true. Third financial may produce. https://example.com/ 2577 435167 435167.435279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2672894345837 0 \N \N f 0 \N 0 50483547 0 f f \N \N \N \N 435167 \N 0 0 \N \N f \N 434514 2024-02-22 03:47:27.421 2024-02-22 03:57:28.523 Kitchen already s Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffe https://example.com/ 9833 \N 434514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5435021203163 0 \N \N f 0 \N 5 212179783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440065 2024-02-26 22:49:56.85 2024-02-26 22:59:57.855 \N Hotel black matter recently idea particular. Manager ac https://example.com/ 13527 440057 439638.439662.440057.440065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91534030376505 0 \N \N f 0 \N 0 98277565 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440107 2024-02-27 00:08:01.835 2024-02-27 00:18:03.98 \N Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw https://example.com/ 21356 440106 439844.440106.440107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71649687148513 0 \N \N f 0 \N 1 236071448 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435305 2024-02-22 17:40:28.209 2024-02-22 17:50:29.633 \N Range happen fie https://example.com/ 759 435297 435046.435135.435292.435297.435305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58896057262753 0 \N \N f 0 \N 0 114203441 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440099 2024-02-26 23:57:33.706 2024-02-27 00:07:34.815 \N Board age miss drug sense. Take here somebody choose. Experience https://example.com/ 1512 439416 439147.439206.439416.440099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.96879011306348 0 \N \N f 0 \N 0 213627666 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 435183 2024-02-22 16:23:58.837 2024-02-22 16:34:00.939 \N Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy https://example.com/ 4973 435154 435154.435183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8065795792076 0 \N \N f 0 \N 3 217790228 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435318 2024-02-22 17:50:38.912 2024-02-22 18:00:40.045 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nRaise https://example.com/ 730 435308 434795.435274.435308.435318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43501720779789 0 \N \N f 0 \N 0 207212061 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435376 2024-02-22 18:40:48.916 2024-02-22 18:50:50.306 \N Much w https://example.com/ 17727 435375 435375.435376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4307974548434 0 \N \N f 0 \N 1 204711521 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 440998 2024-02-27 19:55:31.322 2024-02-27 20:05:32.537 Term ok Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel. https://example.com/ 7772 \N 440998 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 21.5343156111676 0 \N \N f 0 \N 1 199537602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440143 2024-02-27 00:59:09.186 2024-02-27 01:09:10.092 \N Past hospital she war. Firm spring game seem. https://example.com/ 18526 439139 439139.440143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73739500750457 0 \N \N f 0 \N 0 200859588 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435300 2024-02-22 17:38:15.869 2024-02-22 17:48:17.197 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk her https://example.com/ 4378 435276 435276.435300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2861799768945 0 \N \N f 0 \N 0 111367883 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N 440125 2024-02-27 00:25:53.876 2024-02-27 00:35:55.146 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Bey https://example.com/ 17103 439887 439844.439887.440125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.98844635396399 0 \N \N f 0 \N 1 169257478 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440066 2024-02-26 22:51:19.055 2024-02-26 23:01:21.128 \N Catch as herself according. Range deal early see be https://example.com/ 16356 440042 438936.440023.440042.440066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0012075181068 0 \N \N f 0 \N 0 117010402 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 440075 2024-02-26 23:00:04.926 2024-02-26 23:10:06.456 Animal treatment actually. Local me bar data persona \N https://example.com/ 15273 \N 440075 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.20857876228776 0 \N \N f 0 \N 2 151773066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435290 2024-02-22 17:32:49.113 2024-02-22 17:42:50.325 \N Great how before current effort because. Simply increase really star https://example.com/ 20504 435239 434795.434798.435179.435194.435204.435239.435290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8698678296451 0 \N \N f 0 \N 5 199924437 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439950 2024-02-26 20:57:43.795 2024-02-26 21:07:45.003 Guess join morning man h Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often https://example.com/ 17237 \N 439950 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 2.39477812656165 0 \N \N f 0 \N 0 114878118 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441215 2024-02-27 23:07:52.024 2024-02-27 23:17:52.922 \N Win nothing research song data. They peace herself continue Republic https://example.com/ 716 441211 440692.441011.441130.441211.441215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5927379153023 0 \N \N f 0 \N 6 119242941 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 435298 2024-02-22 17:37:10.475 2024-02-22 17:47:11.429 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign un https://example.com/ 18524 435288 435154.435288.435298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02820469532411 0 \N \N f 0 \N 1 5048179 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435167 2024-02-22 16:17:14.693 2024-02-22 16:27:16.625 Heavy spring happy city start sound. Be Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy n https://example.com/ 10056 \N 435167 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.745394237765 0 \N \N f 0 \N 2 21085303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439754 2024-02-26 18:51:06.086 2024-02-26 19:01:09.699 Blue the th May building suffer accept thousand race record play. Als https://example.com/ 6191 \N 439754 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 24.0420253481075 0 \N \N f 0 \N 0 21750053 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435234 2024-02-22 16:56:17.584 2024-02-22 17:06:19.375 \N Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road https://example.com/ 859 435222 435154.435183.435222.435234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5353426977563 0 \N \N f 0 \N 0 238279544 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 438753 2024-02-25 23:52:51.81 2024-02-26 00:02:53.123 Thank rule physical trip attorney staff v American argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nHundred position represent six morning manage school and. Shoulde https://example.com/ 20090 \N 438753 \N \N \N \N \N \N \N \N security \N ACTIVE \N 2.73222994162946 0 \N \N f 0 \N 2 61145158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441301 2024-02-28 00:44:13.835 2024-02-28 00:54:14.664 Affect body wonder do still debate affect wor Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive o https://example.com/ 7395 \N 441301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.79011846156693 0 \N \N f 0 \N 0 62150746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439131 2024-02-26 11:58:55.407 2024-02-26 12:08:56.854 Remember draw realize. Include soon my Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow https://example.com/ 19961 \N 439131 \N \N \N \N \N \N \N \N news \N ACTIVE \N 18.4509608098319 0 \N \N f 0 \N 2 135357633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440098 2024-02-26 23:57:31.572 2024-02-27 00:07:32.798 \N Recent you https://example.com/ 19193 440095 439844.440095.440098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4749529789431 0 \N \N f 0 \N 0 176191941 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440063 2024-02-26 22:49:19.952 2024-02-26 22:59:21.326 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art https://example.com/ 18274 423928 423928.440063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.48667938910511 0 \N \N f 0 \N 1 72247362 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N 437050 2024-02-24 11:16:35.904 2024-02-24 11:26:37.165 \N Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nTown listen something design east writer paper. Clear anyt https://example.com/ 18124 437044 437044.437050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1343070085349 0 \N \N f 0 \N 3 196557890 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440091 2024-02-26 23:45:11.852 2024-02-26 23:55:13.435 \N Pull fact question for unit up community interest. Sign create sta https://example.com/ 10944 440063 423928.440063.440091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0893166840351 0 \N \N f 0 \N 0 17742729 0 f f \N \N \N \N 423928 \N 0 0 \N \N f \N 440130 2024-02-27 00:36:39.198 2024-02-27 00:46:40.311 Name Full both sound century close card. Any https://example.com/ 1454 \N 440130 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 3.47725629472336 0 \N \N f 0 \N 0 218608171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440157 2024-02-27 01:27:11.778 2024-02-27 01:37:13.187 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nProvide difference relationship. Factor view stock organization meet head cr https://example.com/ 9329 440155 440155.440157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1075443063871 0 \N \N f 0 \N 0 144757506 0 f f \N \N \N \N 440155 \N 0 0 \N \N f \N 440079 2024-02-26 23:09:52.608 2024-02-26 23:19:53.908 Artist fly billion same. Go Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nAdd bar degree beat since. Somebody of compare sea partner. Live https://example.com/ 12102 \N 440079 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.8202413982101 0 \N \N f 0 \N 8 46769577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439309 2024-02-26 13:36:59.758 2024-02-26 13:47:02.726 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. https://example.com/ 21033 438941 415381.431098.438941.439309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4563791072777 0 \N \N f 0 \N 0 72776746 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 438941 2024-02-26 07:33:46.173 2024-02-26 07:43:47.585 \N Job stage use material manage. Perhaps nothing proj https://example.com/ 18524 431098 415381.431098.438941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.99898537039186 0 \N \N f 0 \N 2 57662579 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 435278 2024-02-22 17:28:08.916 2024-02-22 17:38:10.464 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Boa https://example.com/ 17570 434971 434440.434723.434971.435278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5166977911039 0 \N \N f 0 \N 0 23428045 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 435296 2024-02-22 17:36:16.463 2024-02-22 17:46:17.595 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice https://example.com/ 1465 435276 435276.435296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5869757276192 0 \N \N f 0 \N 0 196081398 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N 440089 2024-02-26 23:35:26.046 2024-02-26 23:45:27.582 \N Job stage use mate https://example.com/ 18896 439729 439729.440089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1520314611665 0 \N \N f 0 \N 3 80627890 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 435253 2024-02-22 17:11:20.907 2024-02-22 17:21:22.413 \N Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure https://example.com/ 18392 435249 435115.435133.435244.435249.435253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2933423793248 0 \N \N f 0 \N 2 95497261 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 435338 2024-02-22 17:59:34.161 2024-02-22 18:09:35.916 \N Series wait hotel north action bag yet history. Company when air law positive frie https://example.com/ 14247 435154 435154.435338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.84177327461105 0 \N \N f 0 \N 0 193467392 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435286 2024-02-22 17:32:04.275 2024-02-22 17:42:05.512 \N Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try https://example.com/ 16653 435272 435261.435272.435286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.675651422801 0 \N \N f 0 \N 1 169265174 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435277 2024-02-22 17:28:01.642 2024-02-22 17:38:03.398 \N Seven which nature charge. Today range along want forget. City story role assume https://example.com/ 631 435275 435217.435275.435277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6327708156713 0 \N \N f 0 \N 17 63609932 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 442725 2024-02-28 21:20:22.109 2024-02-28 21:30:23.477 \N Fund spring who save three true. https://example.com/ 21254 442678 442678.442725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6618651368923 0 \N \N f 0 \N 0 239592516 0 f f \N \N \N \N 442678 \N 0 0 \N \N f \N 442726 2024-02-28 21:20:43.522 2024-02-28 21:30:45.12 Light environmental here source blood. Institution evening deep ac Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid. https://example.com/ 3717 \N 442726 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.4813138653054 0 \N \N f 0 \N 0 171639000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440081 2024-02-26 23:19:52.836 2024-02-26 23:29:54.013 \N Understand Mr score unt https://example.com/ 15588 440056 440056.440081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.449850886149 0 \N \N f 0 \N 0 1877170 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 435291 2024-02-22 17:33:38.824 2024-02-22 17:43:40.002 Hold show assume travel economy. Ground then any time civil su Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform r https://example.com/ 18769 \N 435291 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.504927180831 0 \N \N f 0 \N 0 39451602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435283 2024-02-22 17:30:58.409 2024-02-22 17:40:59.494 \N Game own manager. Everybo https://example.com/ 19381 434791 434791.435283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3419945766515 0 \N \N f 0 \N 0 136689151 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435304 2024-02-22 17:40:11.911 2024-02-22 17:50:13.599 \N With feel late. Receive one firm sport here. Option task meetin https://example.com/ 2508 435294 434795.435147.435294.435304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4651566693532 0 \N \N f 0 \N 0 159099454 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435294 2024-02-22 17:34:19.145 2024-02-22 17:44:20.546 \N Event at administration sister school lot behind ready. Popular whom all cou https://example.com/ 21444 435147 434795.435147.435294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.93279103070272 0 \N \N f 0 \N 1 181736663 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 441100 2024-02-27 21:11:58.433 2024-02-27 21:22:00.035 \N Notice a https://example.com/ 20825 440845 440797.440845.441100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.734743723547 0 \N \N f 0 \N 0 157128960 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N 434917 2024-02-22 12:51:39.752 2024-02-22 13:01:40.938 \N Other https://example.com/ 19296 434627 434627.434917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89435933331043 0 \N \N f 0 \N 0 22456247 0 f f \N \N \N \N 434627 \N 0 0 \N \N f \N 435320 2024-02-22 17:51:46.944 2024-02-22 18:01:48.439 \N Same https://example.com/ 959 435314 435314.435320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4459382070169 0 \N \N f 0 \N 5 65417202 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435333 2024-02-22 17:57:23.995 2024-02-22 18:07:26.124 \N Hair gas woman next avoid. Blood suggest fly hair. Check walk https://example.com/ 21577 435315 434791.435315.435333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4405811539179 0 \N \N f 0 \N 3 139007831 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435313 2024-02-22 17:47:21.69 2024-02-22 17:57:22.638 \N Likely natural ahead focus. https://example.com/ 13361 435284 435284.435313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61957892958558 0 \N \N f 0 \N 1 45817342 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 435312 2024-02-22 17:46:44.324 2024-02-22 17:56:45.965 \N Lay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy https://example.com/ 21523 435252 435046.435246.435252.435312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60578651619696 0 \N \N f 0 \N 1 34337029 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435319 2024-02-22 17:51:26.279 2024-02-22 18:01:27.825 \N Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent sudde https://example.com/ 17817 435313 435284.435313.435319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8396348266755 0 \N \N f 0 \N 0 41586610 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 435314 2024-02-22 17:47:48.44 2024-02-22 17:57:49.553 Benefit car actually yo Knowledge figure draw. Billion pay suggest research. https://example.com/ 16789 \N 435314 \N \N \N \N \N \N \N \N health \N ACTIVE \N 22.2468152596996 0 \N \N f 0 \N 22 104796539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439674 2024-02-26 17:34:58.132 2024-02-26 17:44:59.023 \N Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century qua https://example.com/ 18909 439624 439624.439674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.89891537901969 0 \N \N f 0 \N 1 129126192 0 f f \N \N \N \N 439624 \N 0 0 \N \N f \N 435329 2024-02-22 17:55:51.835 2024-02-22 18:05:53.62 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. https://example.com/ 20162 435264 435261.435264.435329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5242588358145 0 \N \N f 0 \N 0 114166656 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435252 2024-02-22 17:11:20.608 2024-02-22 17:21:21.648 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy parti https://example.com/ 1620 435246 435046.435246.435252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4160733691534 0 \N \N f 0 \N 2 5221480 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435340 2024-02-22 18:00:04.962 2024-02-22 18:10:06.003 Such house management. Bed defense rem \N https://example.com/ 21509 \N 435340 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.69035040091386 0 \N \N f 0 \N 1 25877828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434975 2024-02-22 13:42:27.576 2024-02-22 13:52:28.93 Benefit car actually you open. Election hear wide sch Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room. https://example.com/ 18556 \N 434975 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.183530322924 0 \N \N f 0 \N 0 86532659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440067 2024-02-26 22:53:26.153 2024-02-26 23:03:28.738 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. https://example.com/ 4292 440059 439946.439996.440059.440067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8633456686719 0 \N \N f 0 \N 2 214331884 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 439729 2024-02-26 18:27:31.885 2024-02-26 18:37:33.067 Industry great onto trial wind. Rule rad Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell sugges https://example.com/ 18291 \N 439729 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.34294322573564 0 \N \N f 0 \N 12 199251320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435339 2024-02-22 17:59:56.529 2024-02-22 18:09:57.626 \N Speech also his. White PM rather return. Indicate can https://example.com/ 1433 435217 435217.435339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6442495877489 0 \N \N f 0 \N 1 113793769 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 434713 2024-02-22 09:35:29.765 2024-02-22 09:45:31.504 \N Economic clearly dark. Understand remain performance want save because si https://example.com/ 1751 430498 430498.434713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4796542622644 0 \N \N f 0 \N 0 86461589 0 f f \N \N \N \N 430498 \N 0 0 \N \N f \N 435297 2024-02-22 17:36:16.924 2024-02-22 17:46:18.604 \N Provide enjoy appear these. What care if degree. Even camera drop. O https://example.com/ 18717 435292 435046.435135.435292.435297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1233468722933 0 \N \N f 0 \N 1 161145107 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440084 2024-02-26 23:25:53.166 2024-02-26 23:35:54.329 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. D https://example.com/ 21400 440067 439946.439996.440059.440067.440084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3488377524668 0 \N \N f 0 \N 1 58939673 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 439996 2024-02-26 21:31:48.37 2024-02-26 21:41:49.272 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television s https://example.com/ 16284 439946 439946.439996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2440066121181 0 \N \N f 0 \N 5 122256120 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 435135 2024-02-22 15:55:08.653 2024-02-22 16:05:10.716 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run https://example.com/ 1105 435046 435046.435135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.94411768111048 0 \N \N f 0 \N 36 12847475 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435321 2024-02-22 17:51:55.571 2024-02-22 18:01:56.761 \N Far they window call recent. Head https://example.com/ 1741 435295 435217.435275.435277.435295.435321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5441855532393 0 \N \N f 0 \N 1 141229949 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435334 2024-02-22 17:57:29.327 2024-02-22 18:07:30.487 \N Side project push give final mind smile. This my culture upon those stay https://example.com/ 635 435321 435217.435275.435277.435295.435321.435334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.966586813761 0 \N \N f 0 \N 0 178519755 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435367 2024-02-22 18:30:34.234 2024-02-22 18:40:36.216 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention scien https://example.com/ 21485 435314 435314.435367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.42000237721901 0 \N \N f 0 \N 0 187408473 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 440094 2024-02-26 23:50:29.382 2024-02-27 00:00:30.784 \N Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We n https://example.com/ 18336 439147 439147.440094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.37992165201585 0 \N \N f 0 \N 2 204730225 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 440092 2024-02-26 23:46:42.319 2024-02-26 23:56:44.527 \N Size matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many presen https://example.com/ 21427 439992 439992.440092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3871624287293 0 \N \N f 0 \N 0 172339155 0 f f \N \N \N \N 439992 \N 0 0 \N \N f \N 435306 2024-02-22 17:43:57.658 2024-02-22 17:53:59.693 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten https://example.com/ 18225 433905 433066.433088.433456.433557.433869.433905.435306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9756259012514 0 \N \N f 0 \N 2 241580273 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 435336 2024-02-22 17:58:03.939 2024-02-22 18:08:05.914 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. https://example.com/ 2829 435306 433066.433088.433456.433557.433869.433905.435306.435336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0168408029487 0 \N \N f 0 \N 1 135298975 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 435325 2024-02-22 17:54:05.559 2024-02-22 18:04:06.749 \N Nature couple north bit inside tough agency. Lose hotel toward yard w https://example.com/ 19235 435290 434795.434798.435179.435194.435204.435239.435290.435325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64278223132369 0 \N \N f 0 \N 4 228181567 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435341 2024-02-22 18:00:05.824 2024-02-22 18:10:07.709 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact https://example.com/ 14906 435340 435340.435341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4818292811714 0 \N \N f 0 \N 0 234439831 0 f f \N \N \N \N 435340 \N 0 0 \N \N f \N 442759 2024-02-28 21:36:34.472 2024-02-28 21:46:36.045 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. S https://example.com/ 16149 395051 395051.442759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.84545129335763 0 \N \N f 0 \N 0 245966169 0 f f \N \N \N \N 395051 \N 0 0 \N \N f \N 440096 2024-02-26 23:55:04.649 2024-02-27 00:05:05.827 \N Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. https://example.com/ 20337 440093 440004.440052.440093.440096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4950747781024 0 \N \N f 0 \N 2 38184094 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 440100 2024-02-27 00:00:33.393 2024-02-27 00:10:35.044 \N Them reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interv https://example.com/ 651 438691 438691.440100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5572859664139 0 \N \N f 0 \N 0 145167161 0 f f \N \N \N \N 438691 \N 0 0 \N \N f \N 440011 2024-02-26 21:49:05.123 2024-02-26 21:59:06.164 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nRepublican star int https://example.com/ 18904 440006 439844.440006.440011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8775681437086 0 \N \N f 0 \N 1 10271616 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435315 2024-02-22 17:48:02.314 2024-02-22 17:58:03.561 \N His mean individual benefit push consider. https://example.com/ 9496 434791 434791.435315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.196307714241613 0 \N \N f 0 \N 4 23067937 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 440026 2024-02-26 22:10:01.328 2024-02-26 22:20:03.111 Long sound continue test occur watc Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once. https://example.com/ 21614 \N 440026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0365451751472 0 \N \N f 0 \N 0 158049670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440103 2024-02-27 00:02:07.013 2024-02-27 00:12:08.395 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city https://example.com/ 19770 440096 440004.440052.440093.440096.440103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6720453841755 0 \N \N f 0 \N 1 90396865 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 439925 2024-02-26 20:45:00.338 2024-02-26 20:55:02.415 Over partner wear detail fund ri Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock. https://example.com/ 1584 \N 439925 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.0532141920419 0 \N \N f 0 \N 0 86319613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438065 2024-02-25 10:13:36.314 2024-02-25 10:23:37.116 Republican star interest its. College challenge eye. National need future sudd Be right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 4570 \N 438065 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 18.0668405094957 0 \N \N f 0 \N 13 89146104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435349 2024-02-22 18:08:43.343 2024-02-22 18:18:45.252 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Secti https://example.com/ 11515 434129 434129.435349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7614050741182 0 \N \N f 0 \N 0 215051419 0 f f \N \N \N \N 434129 \N 0 0 \N \N f \N 434820 2024-02-22 11:13:03.354 2024-02-22 11:23:05.156 \N Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough ins https://example.com/ 659 434801 434795.434801.434820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0087033287695 0 \N \N f 0 \N 0 247335585 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435356 2024-02-22 18:21:20.55 2024-02-22 18:31:22.498 \N Staff likely color finish at lot ball one. Scientist yeah develop require should. P https://example.com/ 15662 435346 435217.435346.435356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5870714441888 0 \N \N f 0 \N 0 238616460 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 440165 2024-02-27 01:36:28.681 2024-02-27 01:46:29.93 \N Yard subject low series serious spen https://example.com/ 4079 439917 439917.440165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8903635923225 0 \N \N f 0 \N 0 13396165 0 f f \N \N \N \N 439917 \N 0 0 \N \N f \N 435326 2024-02-22 17:54:09.778 2024-02-22 18:04:11.774 \N Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fi https://example.com/ 16724 435229 434642.435229.435326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3352323270098 0 \N \N f 0 \N 0 236865427 0 f f \N \N \N \N 434642 \N 0 0 \N \N f \N 441266 2024-02-28 00:07:26.379 2024-02-28 00:17:27.555 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon https://example.com/ 13169 441077 441077.441266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.813261898213 0 \N \N f 0 \N 1 48313700 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 441290 2024-02-28 00:28:17.492 2024-02-28 00:38:18.393 \N Republican begin audience guy get expect table. Professor certain central gu https://example.com/ 1122 441273 441169.441270.441273.441290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5950309814723 0 \N \N f 0 \N 0 20525912 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 435188 2024-02-22 16:28:14.759 2024-02-22 16:38:16.824 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience d https://example.com/ 21422 435136 435136.435188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6450803534102 0 \N \N f 0 \N 0 66512837 0 f f \N \N \N \N 435136 \N 0 0 \N \N f \N 439955 2024-02-26 21:00:04.95 2024-02-26 21:10:06.965 \N Plan theory effect center m https://example.com/ 16329 439909 439822.439909.439955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0025587040162 0 \N \N f 0 \N 0 49330723 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 434865 2024-02-22 12:02:05.312 2024-02-22 12:12:07.445 Condition door drive wr Eye million figure now as collection. During report tree public must article expec https://example.com/ 21070 \N 434865 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 23.2031317532784 0 \N \N f 0 \N 5 103380647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435285 2024-02-22 17:31:51.297 2024-02-22 17:41:52.455 \N Foot upon smile pass house significant result small. Some hard https://example.com/ 5003 435276 435276.435285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1310086929224 0 \N \N f 0 \N 0 161079453 0 f f \N \N \N \N 435276 \N 0 0 \N \N f \N 435136 2024-02-22 15:56:54.067 2024-02-22 16:06:55.607 Ten instead develop somebody into sch Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage manage https://example.com/ 10094 \N 435136 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 0.267500967781622 0 \N \N f 0 \N 6 169317600 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437313 2024-02-24 14:53:05.924 2024-02-24 15:03:06.907 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interest https://example.com/ 9290 437233 437233.437313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.484969048949 0 \N \N f 0 \N 0 41389678 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 434516 2024-02-22 03:52:34.063 2024-02-22 04:02:35.425 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nMeasu https://example.com/ 617 434310 434278.434298.434310.434516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02262883275517 0 \N \N f 0 \N 2 155628348 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440028 2024-02-26 22:10:49.708 2024-02-26 22:20:50.645 General against page door. A Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nM https://example.com/ 14650 \N 440028 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.8915124387601 0 \N \N f 0 \N 2 159552771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440102 2024-02-27 00:01:29.163 2024-02-27 00:11:30.914 \N Pick fight simple up whose national face https://example.com/ 18403 439978 439729.439978.440102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1955375593549 0 \N \N f 0 \N 0 52495617 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 434827 2024-02-22 11:17:54.409 2024-02-22 11:27:55.617 Become full thank head blood family. Computer a Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nCenter stan https://example.com/ 21402 \N 434827 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.3783725147908 0 \N \N f 0 \N 3 102372409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435377 2024-02-22 18:43:22.038 2024-02-22 18:53:23.756 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish i https://example.com/ 20182 435217 435217.435377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2480191281415 0 \N \N f 0 \N 2 172219991 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435343 2024-02-22 18:01:08.853 2024-02-22 18:11:10.135 Them response usually tax tax. Mar Least nor building physical wide special make. Dog while learn soon break real company of. Memo https://example.com/ 18641 \N 435343 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 29.7474571132506 0 \N \N f 0 \N 0 130774090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435360 2024-02-22 18:23:45.959 2024-02-22 18:33:47.012 \N Long interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether alw https://example.com/ 8168 434538 433844.434177.434538.435360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.266090805541 0 \N \N f 0 \N 1 82610059 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 435351 2024-02-22 18:11:00.233 2024-02-22 18:21:01.655 \N Someone network true easy store. Take improve https://example.com/ 16834 435331 435046.435324.435331.435351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.29800035761374 0 \N \N f 0 \N 2 20518472 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439846 2024-02-26 19:59:42.269 2024-02-26 20:09:43.749 \N Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. https://example.com/ 4062 439822 439822.439846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9152523143138 0 \N \N f 0 \N 3 85278149 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 441050 2024-02-27 20:18:14.291 2024-02-27 20:28:15.999 \N Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach https://example.com/ 11417 440985 440985.441050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.18950373313597 0 \N \N f 0 \N 3 232802793 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 439900 2024-02-26 20:34:34.285 2024-02-26 20:44:36.086 Director far fact order bit collection. Ok prove thought note pr Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend https://example.com/ 20924 \N 439900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.28374258790832 0 \N \N f 0 \N 0 118910396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435358 2024-02-22 18:22:09.355 2024-02-22 18:32:11.322 \N From democratic trial American blue. Save carry son else. While https://example.com/ 13133 435352 435217.435257.435260.435352.435358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.04321125979923 0 \N \N f 0 \N 1 99750633 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 439822 2024-02-26 19:39:02.694 2024-02-26 19:49:03.655 Technology word w Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nHistory prepare everyone role eve https://example.com/ 9166 \N 439822 \N \N \N \N \N \N \N \N health \N ACTIVE \N 4.13709682560594 0 \N \N f 0 \N 19 191495068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433943 2024-02-21 16:38:57.276 2024-02-21 16:48:58.498 Must particular he lose claim appear son stock. W Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home. https://example.com/ 15075 \N 433943 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.325102339216805 0 \N \N f 0 \N 16 221197345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435366 2024-02-22 18:29:15.204 2024-02-22 18:39:16.446 \N Race civil today. B https://example.com/ 1007 435359 435359.435366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05088042819919 0 \N \N f 0 \N 3 219153866 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435024 2024-02-22 14:21:18.349 2024-02-22 14:31:19.685 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare disc https://example.com/ 19910 430532 430532.435024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1434040489262 0 \N \N f 0 \N 0 183189401 0 f f \N \N \N \N 430532 \N 0 0 \N \N f \N 435177 2024-02-22 16:21:28.247 2024-02-22 16:31:29.248 \N Morning create future popular. Shoulder ani https://example.com/ 17116 435120 435120.435177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4402866921971 0 \N \N f 0 \N 0 5698045 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 434285 2024-02-21 21:05:50.881 2024-02-21 21:15:53.347 Billion very news personal develop career rate. Hair there but green li Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen https://example.com/ 1490 \N 434285 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.3811393029944 0 \N \N f 0 \N 14 124966094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435261 2024-02-22 17:17:31.782 2024-02-22 17:27:33.857 End and certainly language lawyer her sort Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain https://example.com/ 21338 \N 435261 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.80377900379746 0 \N \N f 0 \N 31 193790851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435328 2024-02-22 17:55:19.43 2024-02-22 18:05:20.733 White seven property least father local. Seat small each after poor glass thousa Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network. https://example.com/ 11395 \N 435328 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.71442272291402 0 \N \N f 0 \N 18 144986824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441265 2024-02-28 00:07:01.409 2024-02-28 00:17:02.121 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design li https://example.com/ 11678 440986 440911.440922.440926.440930.440951.440962.440974.440982.440986.441265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.46838773059014 0 \N \N f 0 \N 0 131100012 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 441237 2024-02-27 23:26:11.508 2024-02-27 23:36:12.998 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between un https://example.com/ 20751 441057 440692.441057.441237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.24319814445555 0 \N \N f 0 \N 1 93662474 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441353 2024-02-28 01:34:42.61 2024-02-28 01:44:44.035 Area just subject Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down. https://example.com/ 10554 \N 441353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.319504035759834 0 \N \N f 0 \N 1 189816312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441108 2024-02-27 21:18:07.891 2024-02-27 21:28:08.875 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nEdge give like skill yard. Government run throughout meeti https://example.com/ 2514 440926 440911.440922.440926.441108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1508354209998 0 \N \N f 0 \N 1 39928272 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 435395 2024-02-22 18:55:29.388 2024-02-22 19:05:30.587 \N Ground baby describe might. Practice alone key sometimes ever https://example.com/ 12261 435392 435392.435395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.8352395048035 0 \N \N f 0 \N 2 27523515 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 435370 2024-02-22 18:34:35.831 2024-02-22 18:44:37.648 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strateg https://example.com/ 12346 435365 435046.435365.435370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8122634870043 0 \N \N f 0 \N 1 175847805 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435385 2024-02-22 18:49:30.935 2024-02-22 18:59:32.401 \N Great idea age friend. Its financial fight need. I https://example.com/ 10586 435370 435046.435365.435370.435385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6892506270235 0 \N \N f 0 \N 0 67739801 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435374 2024-02-22 18:40:23.741 2024-02-22 18:50:25.1 Before wrong success power prevent notice. Hard former st Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM. https://example.com/ 7587 \N 435374 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.7276655946714 0 \N \N f 0 \N 0 152892470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435380 2024-02-22 18:46:31.632 2024-02-22 18:56:33.263 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nShould doctor pressure maybe six fight. Machine impact system entire me https://example.com/ 633 435154 435154.435380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80196549203052 0 \N \N f 0 \N 0 177492962 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435368 2024-02-22 18:33:09.955 2024-02-22 18:43:11.42 \N Small career baby democratic nation travel. Offer yard identify relationsh https://example.com/ 20099 435359 435359.435368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7767407288387 0 \N \N f 0 \N 2 150738631 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435386 2024-02-22 18:49:55.359 2024-02-22 18:59:56.734 \N Today area benefit around https://example.com/ 10821 435373 435359.435368.435373.435386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5323355339286 0 \N \N f 0 \N 0 21779410 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435394 2024-02-22 18:54:50.677 2024-02-22 19:04:52.357 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop e https://example.com/ 20062 434685 434685.435394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95728080159945 0 \N \N f 0 \N 0 165989630 0 f f \N \N \N \N 434685 \N 0 0 \N \N f \N 435383 2024-02-22 18:48:54.899 2024-02-22 18:58:56.428 \N Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also https://example.com/ 8713 435381 435242.435381.435383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.790524353967 0 \N \N f 0 \N 0 177717257 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 434488 2024-02-22 02:49:29.288 2024-02-22 02:59:30.307 Mind treatment nature play. Mr hit Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nPractice see be https://example.com/ 18629 \N 434488 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 23.3987991740224 0 \N \N f 0 \N 12 217946743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435371 2024-02-22 18:34:52.388 2024-02-22 18:44:54.246 \N Back spend task real. Relationship offe https://example.com/ 722 435354 435046.435324.435331.435351.435354.435371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2703740012593 0 \N \N f 0 \N 0 236727826 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440951 2024-02-27 19:08:00.231 2024-02-27 19:18:01.576 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color https://example.com/ 20185 440930 440911.440922.440926.440930.440951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8750788179616 0 \N \N f 0 \N 5 239203480 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 435018 2024-02-22 14:16:56.427 2024-02-22 14:26:57.641 Anything common leader response. So Ten answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish. https://example.com/ 4304 \N 435018 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 20.3175415972144 0 \N \N f 0 \N 4 28440903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435879 2024-02-23 06:14:14.572 2024-02-23 06:24:16.31 \N Have decide business throw source strong town line. Local forget under Democrat. Audience fi https://example.com/ 18468 435497 435497.435879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3827143338697 0 \N \N f 0 \N 0 234863991 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 435354 2024-02-22 18:16:53.749 2024-02-22 18:26:54.512 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team iss https://example.com/ 1825 435351 435046.435324.435331.435351.435354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9694352473093 0 \N \N f 0 \N 1 230477403 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 434535 2024-02-22 04:17:41.528 2024-02-22 04:27:43.022 Heavy spring happy city start sound. Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be. https://example.com/ 21247 \N 434535 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.54968602596518 0 \N \N f 0 \N 15 43579774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435373 2024-02-22 18:38:52.92 2024-02-22 18:48:54.228 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog k https://example.com/ 21600 435368 435359.435368.435373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.15804321665172 0 \N \N f 0 \N 1 105056083 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 441270 2024-02-28 00:12:10.365 2024-02-28 00:22:11.891 \N Blood admit none others arm style. Here establish night parent. Special this large https://example.com/ 9366 441169 441169.441270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4608089566582 0 \N \N f 0 \N 2 218580514 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 434994 2024-02-22 14:00:31.875 2024-02-22 14:10:33.059 That very sister attention myself out bit. Want father presiden Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nPosition see least suddenly just order specific. Center build alone night. Lead able i https://example.com/ 8535 \N 434994 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.72468449166151 0 \N \N f 0 \N 1 86540525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435387 2024-02-22 18:50:20.35 2024-02-22 19:00:21.649 \N Need movie coach nation news in about responsibility. Hospital production rise ad https://example.com/ 5779 433194 432920.432980.432992.433032.433034.433041.433194.435387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5417592018323 0 \N \N f 0 \N 1 194597302 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 433240 2024-02-21 00:17:03.834 2024-02-21 00:27:05.025 \N Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple https://example.com/ 2774 433042 432920.433042.433240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0558444408145 0 \N \N f 0 \N 1 61964694 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 434665 2024-02-22 07:58:03.512 2024-02-22 08:08:06.134 Value have anyone crime professional. Close or pass yeah peace wi Mind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there. https://example.com/ 19446 \N 434665 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.4792547889375 0 \N \N f 0 \N 6 73513415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433041 2024-02-20 21:21:23.434 2024-02-20 21:31:24.899 \N Red production his nothing financial. Medi https://example.com/ 14472 433034 432920.432980.432992.433032.433034.433041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2310688475499 0 \N \N f 0 \N 3 226514446 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 440922 2024-02-27 18:43:35.062 2024-02-27 18:53:36.13 \N Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use diff https://example.com/ 12268 440911 440911.440922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5293205966072 0 \N \N f 0 \N 11 106166735 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 434717 2024-02-22 09:39:53.925 2024-02-22 09:49:55.082 Begin lawyer shoulder couple whom d Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wif https://example.com/ 18452 \N 434717 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.1274633311964 0 \N \N f 0 \N 3 225473177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435257 2024-02-22 17:13:19.096 2024-02-22 17:23:21.669 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join le https://example.com/ 18829 435217 435217.435257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4575518999164 0 \N \N f 0 \N 4 236943881 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435388 2024-02-22 18:50:49.259 2024-02-22 19:00:50.177 \N Smile debate least https://example.com/ 12516 435384 435231.435384.435388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9298321851058 0 \N \N f 0 \N 0 11479114 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 440080 2024-02-26 23:11:47.244 2024-02-26 23:21:49.083 Almost about me amount daughter himself. Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality. https://example.com/ 18769 \N 440080 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 13.5603277957285 0 \N \N f 0 \N 1 185994660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435378 2024-02-22 18:44:38.732 2024-02-22 18:54:40.332 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill https://example.com/ 684 435261 435261.435378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2948200047777 0 \N \N f 0 \N 0 135657947 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435392 2024-02-22 18:54:30.065 2024-02-22 19:04:31.295 Generation discover Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed https://example.com/ 5904 \N 435392 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 8.64507890205051 0 \N \N f 0 \N 5 728235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437044 2024-02-24 11:00:03.159 2024-02-24 11:10:04.346 Walk apply par Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nSkill government the life relationship https://example.com/ 12911 \N 437044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.4725024674712 0 \N \N f 0 \N 75 206931412 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437799 2024-02-25 00:33:05.883 2024-02-25 00:43:07.069 \N Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just https://example.com/ 826 437064 437044.437050.437064.437799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9197025546325 0 \N \N f 0 \N 1 43991890 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440110 2024-02-27 00:11:48.777 2024-02-27 00:21:50.135 \N Rise environmental middle fly listen rest national. Fall hospit https://example.com/ 9921 440056 440056.440110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5765581052868 0 \N \N f 0 \N 0 186450453 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 435443 2024-02-22 19:32:58.445 2024-02-22 19:43:01.017 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marri https://example.com/ 18409 435086 435030.435086.435443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0301810712267 0 \N \N f 0 \N 0 109108438 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435452 2024-02-22 19:43:51.017 2024-02-22 19:53:52.663 Direction busines White seven propert https://example.com/ 4502 \N 435452 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.7666219588289 0 \N \N f 0 \N 0 104440452 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435414 2024-02-22 19:08:50.329 2024-02-22 19:18:52.104 Tell billion now tough chair fight. Financial city bar produce. Benefit wal Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nBillion deep other first financial sometimes. Successful onto or. Child https://example.com/ 19546 \N 435414 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 14.3728480571148 0 \N \N f 0 \N 0 31584986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435433 2024-02-22 19:24:27.857 2024-02-22 19:34:28.844 Main teacher local. Western rate blood than sell. Agency part Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care. https://example.com/ 20280 \N 435433 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.3577228450961 0 \N \N f 0 \N 0 25121185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440105 2024-02-27 00:06:15.513 2024-02-27 00:16:16.853 \N Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. https://example.com/ 19329 440103 440004.440052.440093.440096.440103.440105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2310116607794 0 \N \N f 0 \N 0 243831196 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 441012 2024-02-27 20:00:38.42 2024-02-27 20:10:40.089 \N Already reduce grow only chance opportunity group. Sort f https://example.com/ 21391 440898 440898.441012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3706151692589 0 \N \N f 0 \N 4 150378615 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441292 2024-02-28 00:33:50.247 2024-02-28 00:43:51.485 \N Time woman simply current community. Election old effort sign take matter hit. Team r https://example.com/ 674 441207 440898.440899.441207.441292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4811393148922 0 \N \N f 0 \N 0 180816188 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 435421 2024-02-22 19:15:11.591 2024-02-22 19:25:12.939 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportun https://example.com/ 19148 435405 435314.435355.435404.435405.435421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3922244407451 0 \N \N f 0 \N 0 35728123 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435422 2024-02-22 19:15:17.64 2024-02-22 19:25:19.003 \N Over partner wear d https://example.com/ 11590 435418 435411.435418.435422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4047695411099 0 \N \N f 0 \N 2 238445104 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N 435404 2024-02-22 19:00:14.431 2024-02-22 19:10:15.562 \N Prevent machine source white and. Fact together father find appear p https://example.com/ 11220 435355 435314.435355.435404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1562455067487 0 \N \N f 0 \N 2 209432462 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 440829 2024-02-27 17:20:51.291 2024-02-27 17:30:52.742 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only lan https://example.com/ 20490 440764 440764.440829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.46201589847163 0 \N \N f 0 \N 0 84070837 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 435415 2024-02-22 19:09:00.416 2024-02-22 19:19:01.891 \N Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level pie https://example.com/ 15337 435412 435412.435415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4376158110914 0 \N \N f 0 \N 0 135245304 0 f f \N \N \N \N 435412 \N 0 0 \N \N f \N 435416 2024-02-22 19:09:20.417 2024-02-22 19:19:22.083 \N Travel according exactly attention. Care before cover within https://example.com/ 18817 435396 435261.435396.435416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1926328001886 0 \N \N f 0 \N 2 50145291 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435441 2024-02-22 19:32:55.707 2024-02-22 19:51:58.977 Garden morning co Company kid protect https://example.com/ 18154 \N 435441 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 3.67407052914842 0 \N \N f 0 \N 0 139657000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440106 2024-02-27 00:06:58.166 2024-02-27 00:16:59.892 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect https://example.com/ 16956 439844 439844.440106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5150809739386 0 \N \N f 0 \N 2 27799276 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440783 2024-02-27 16:45:33.612 2024-02-27 16:55:34.857 \N Blood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific d https://example.com/ 16336 440773 440663.440751.440760.440773.440783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87099664376974 0 \N \N f 0 \N 3 239029590 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 435216 2024-02-22 16:47:15.682 2024-02-22 16:57:17.432 \N Instead believe animal then however price particularly. When whose economic others million. Ready long thank case recogni https://example.com/ 718 434962 434962.435216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2114426330257 0 \N \N f 0 \N 1 147508268 0 f f \N \N \N \N 434962 \N 0 0 \N \N f \N 435429 2024-02-22 19:21:21.407 2024-02-22 19:31:22.532 \N Score might instead ground ins https://example.com/ 19037 435216 434962.435216.435429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0238644217456 0 \N \N f 0 \N 0 152923193 0 f f \N \N \N \N 434962 \N 0 0 \N \N f \N 435391 2024-02-22 18:54:10.738 2024-02-22 19:04:12.267 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their https://example.com/ 19661 435217 435217.435391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2562078782707 0 \N \N f 0 \N 0 219780056 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435481 2024-02-22 20:24:33.928 2024-02-22 20:34:35.029 \N Drive south traditional new what unit mother. Drug profe https://example.com/ 14552 435468 435458.435465.435468.435481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.955803725311 0 \N \N f 0 \N 1 160238364 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 435471 2024-02-22 20:04:42.992 2024-02-22 20:14:44.472 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board https://example.com/ 4177 435217 435217.435471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.41687401115076 0 \N \N f 0 \N 2 172173393 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 434962 2024-02-22 13:32:08.08 2024-02-22 13:42:08.894 Far clearly possible enter. Turn sa Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps. https://example.com/ 10311 \N 434962 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.1036805845591 0 \N \N f 0 \N 3 197628292 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435398 2024-02-22 18:58:33.026 2024-02-22 19:08:33.996 \N Happy strong Democrat some goal new ser https://example.com/ 10608 435314 435314.435398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.78089705271045 0 \N \N f 0 \N 1 1354141 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435152 2024-02-22 16:08:18.494 2024-02-22 16:18:20.954 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nBy fight several talk. Minute probably fish player. Drive windo https://example.com/ 11018 435046 435046.435152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6363297006212 0 \N \N f 0 \N 1 105802570 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435444 2024-02-22 19:33:26.319 2024-02-22 19:43:27.775 \N Cultural everyone partner bed difference cup science. https://example.com/ 9335 435398 435314.435398.435444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.662982567136 0 \N \N f 0 \N 0 183175753 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435345 2024-02-22 18:01:19.075 2024-02-22 18:11:20.413 \N Likely natural ahead focus. School our training everybody but build far. Af https://example.com/ 8648 435342 435242.435342.435345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.511115400991 0 \N \N f 0 \N 0 20719460 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 435353 2024-02-22 18:14:56.551 2024-02-22 18:24:58.212 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open https://example.com/ 9261 435295 435217.435275.435277.435295.435353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4476847088971 0 \N \N f 0 \N 0 91264522 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435473 2024-02-22 20:07:18.077 2024-02-22 20:17:20.223 \N Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rath https://example.com/ 5425 435360 433844.434177.434538.435360.435473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.697163141766 0 \N \N f 0 \N 0 92537995 0 f f \N \N \N \N 433844 \N 0 0 \N \N f \N 435430 2024-02-22 19:22:42.062 2024-02-22 19:32:43.391 \N Network art go experience example him see. Half lay t https://example.com/ 21249 435420 435261.435410.435420.435430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0263916937269 0 \N \N f 0 \N 0 21080043 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 436090 2024-02-23 12:17:44.438 2024-02-23 12:27:46.411 \N Man talk arm player scene reflect. Window pick soc https://example.com/ 647 435944 435944.436090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9159756199552 0 \N \N f 0 \N 1 70717294 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436127 2024-02-23 12:52:51.461 2024-02-23 13:02:53.116 \N Four wh https://example.com/ 19500 436090 435944.436090.436127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6074974865316 0 \N \N f 0 \N 0 22615151 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 435194 2024-02-22 16:30:52.225 2024-02-22 16:40:53.465 \N Call econom https://example.com/ 17513 435179 434795.434798.435179.435194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.482965266081479 0 \N \N f 0 \N 8 79106874 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 441356 2024-02-28 01:37:19.86 2024-02-28 01:47:21.647 \N Statement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer dat https://example.com/ 2757 441198 441198.441356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.034356629248 0 \N \N f 0 \N 0 128345307 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 433905 2024-02-21 16:11:06.892 2024-02-21 16:21:08.222 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same tr https://example.com/ 16267 433869 433066.433088.433456.433557.433869.433905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8977387417169 0 \N \N f 0 \N 3 91344690 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 433456 2024-02-21 07:41:45.032 2024-02-21 07:51:46.364 \N Bag couple hot buy yourself serve bit. For even true detail southern. Listen herself stro https://example.com/ 16230 433088 433066.433088.433456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7192645738214 0 \N \N f 0 \N 7 173407250 0 f f \N \N \N \N 433066 \N 0 0 \N \N f \N 434598 2024-02-22 06:07:28.941 2024-02-22 06:17:30.695 \N Same need interesting between watch https://example.com/ 18387 434522 434278.434503.434522.434598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.91802775114404 0 \N \N f 0 \N 22 210304210 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434798 2024-02-22 11:01:26.596 2024-02-22 11:11:29.192 \N Whose top property well serve national accou https://example.com/ 19864 434795 434795.434798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0679304051873 0 \N \N f 0 \N 12 182000403 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 441307 2024-02-28 00:48:52.593 2024-02-28 00:58:53.554 \N Establish material they meet. Little bag idea region live follow itself. https://example.com/ 12102 441178 440692.441027.441074.441178.441307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6858759270279 0 \N \N f 0 \N 2 116600031 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441282 2024-02-28 00:21:32.743 2024-02-28 00:31:33.74 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Governmen https://example.com/ 15488 441264 440985.441050.441192.441264.441282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64257284351877 0 \N \N f 0 \N 0 16660673 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 435440 2024-02-22 19:32:38.103 2024-02-22 19:42:39.066 \N Including lawyer baby ok movie never happy. Civil program effort knowledge which. M https://example.com/ 21274 435432 434791.435315.435333.435344.435432.435440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.910348126052298 0 \N \N f 0 \N 0 78580887 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 440121 2024-02-27 00:21:59.933 2024-02-27 00:32:00.959 \N Tak https://example.com/ 21136 440119 439844.440007.440119.440121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5955849733401 0 \N \N f 0 \N 0 101488448 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440109 2024-02-27 00:11:11.761 2024-02-27 00:21:12.506 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory impo https://example.com/ 20854 437799 437044.437050.437064.437799.440109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3456628136857 0 \N \N f 0 \N 0 6380610 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 441268 2024-02-28 00:10:00.143 2024-02-28 00:20:01.358 \N Report night class. Fight PM that food. Event market ground both product he https://example.com/ 20198 441205 441169.441189.441205.441268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.27734101304896 0 \N \N f 0 \N 0 35608261 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 435410 2024-02-22 19:07:43.826 2024-02-22 19:17:44.865 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color bl https://example.com/ 5703 435261 435261.435410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.632359788902 0 \N \N f 0 \N 6 201157407 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435348 2024-02-22 18:05:05.776 2024-02-22 18:15:07.135 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful https://example.com/ 10934 435337 434795.434798.435179.435194.435204.435239.435290.435325.435330.435337.435348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7320329060588 0 \N \N f 0 \N 1 52963296 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436023 2024-02-23 10:51:30.089 2024-02-23 11:01:31.352 Go game bar use image. Organization live back front party marriage position Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international. https://example.com/ 18178 \N 436023 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.920902831491119 0 \N \N f 0 \N 0 107848479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437189 2024-02-24 13:37:49.094 2024-02-24 13:47:50.294 \N Go effect true such such wind market. Role sug https://example.com/ 7673 437158 437044.437158.437189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6999996055797 0 \N \N f 0 \N 3 96913621 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 439963 2024-02-26 21:09:28.392 2024-02-26 21:19:30.338 Pass glass feeling five. Health which painting college book fall along. Involv Rule focus detail financial dog. Her lawyer draw ide https://example.com/ 19553 \N 439963 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 0.782245686337575 0 \N \N f 0 \N 1 4080579 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441204 2024-02-27 22:58:05.993 2024-02-27 23:08:07.787 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive so https://example.com/ 8664 441035 440898.440925.441035.441204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.98707695208122 0 \N \N f 0 \N 2 195109267 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 440113 2024-02-27 00:15:48.433 2024-02-27 00:25:50.135 \N Garden morning compare federal. Already west parent art work hard student. https://example.com/ 8506 439963 439963.440113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.51483479377832 0 \N \N f 0 \N 0 185407063 0 f f \N \N \N \N 439963 \N 0 0 \N \N f \N 435072 2024-02-22 14:59:03.526 2024-02-22 15:09:05.982 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy r https://example.com/ 10280 435046 435046.435072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.74185124617174 0 \N \N f 0 \N 0 74393081 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435344 2024-02-22 18:01:12.364 2024-02-22 18:11:13.938 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh y https://example.com/ 2156 435333 434791.435315.435333.435344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.28063658801688 0 \N \N f 0 \N 2 220335249 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435432 2024-02-22 19:24:08.061 2024-02-22 19:34:09.552 \N Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spe https://example.com/ 16259 435344 434791.435315.435333.435344.435432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.35700006075265 0 \N \N f 0 \N 1 227009572 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435131 2024-02-22 15:53:26.212 2024-02-22 16:03:26.772 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother https://example.com/ 21453 435122 435046.435122.435131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1876266496018 0 \N \N f 0 \N 2 33149313 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440555 2024-02-27 13:44:18.876 2024-02-27 13:54:20.367 Key third PM painting wrong generation every. Authority daughter religio Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three. https://example.com/ 13903 \N 440555 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.0845050576571 0 \N \N f 0 \N 0 69379152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435454 2024-02-22 19:44:48.806 2024-02-22 19:54:50.415 \N With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nSingle level story sound. https://example.com/ 21314 435437 435437.435454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0753209184907 0 \N \N f 0 \N 0 239024336 0 f f \N \N \N \N 435437 \N 0 0 \N \N f \N 435437 2024-02-22 19:28:14.082 2024-02-22 19:38:15.357 Country audience including. Occur movie example d Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college tog https://example.com/ 13782 \N 435437 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0294651511503 0 \N \N f 0 \N 1 109621985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435515 2024-02-22 20:57:08.263 2024-02-22 21:07:10.037 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred re https://example.com/ 18051 435335 435314.435320.435335.435515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9008493334719 0 \N \N f 0 \N 3 68227983 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435466 2024-02-22 19:58:29.642 2024-02-22 20:08:30.65 \N Some nation represent who https://example.com/ 1493 435366 435359.435366.435466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5028392226517 0 \N \N f 0 \N 2 123845333 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435450 2024-02-22 19:41:39.151 2024-02-22 19:51:40.431 \N Approach stuff big ahead nothing hot https://example.com/ 11996 435273 430109.430351.431086.434668.435265.435273.435450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3486917752253 0 \N \N f 0 \N 0 124627497 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 431086 2024-02-19 17:34:51.198 2024-02-19 17:44:52.959 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nFoot not wonder myself eat student arrive. Sell election provid https://example.com/ 21338 430351 430109.430351.431086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0015015531355 0 \N \N f 0 \N 5 175316844 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 435265 2024-02-22 17:19:44.909 2024-02-22 17:29:45.793 \N Possible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nUntil must summer international. Would child language gi https://example.com/ 11648 434668 430109.430351.431086.434668.435265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95062016394742 0 \N \N f 0 \N 3 87474832 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 439936 2024-02-26 20:49:05.046 2024-02-26 20:59:06.475 Book environmental good western suppor Tree I there avoid win knowledge improve. Dinner hop https://example.com/ 826 \N 439936 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 21.9443606025019 0 \N \N f 0 \N 0 184039991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440108 2024-02-27 00:10:34.813 2024-02-27 00:20:35.949 \N Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nHuman appear she. So happen occur ef https://example.com/ 15484 440104 438691.438802.440104.440108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4111468401393 0 \N \N f 0 \N 1 24078495 0 f f \N \N \N \N 438691 \N 0 0 \N \N f \N 435523 2024-02-22 21:08:39.15 2024-02-22 21:18:40.911 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World https://example.com/ 21444 435314 435314.435523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03049353546105 0 \N \N f 0 \N 0 206167770 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 443342 2024-02-29 11:34:52.674 2024-02-29 11:44:54.494 \N Deep government cold west. Act computer vote particularly look https://example.com/ 15326 443187 443187.443342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5599424782305 0 \N \N f 0 \N 1 221900968 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 435447 2024-02-22 19:39:20.394 2024-02-22 19:49:21.943 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\n https://example.com/ 3417 435063 435046.435063.435447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2400077276242 0 \N \N f 0 \N 1 111510393 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 441205 2024-02-27 22:58:08.749 2024-02-27 23:08:09.807 \N Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Sou https://example.com/ 4313 441189 441169.441189.441205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.951588261971 0 \N \N f 0 \N 2 67855328 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 435449 2024-02-22 19:41:32.429 2024-02-22 19:51:33.415 Protect evidence very many nearly challenge pay. We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer. https://example.com/ 18626 \N 435449 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 4.57414387668024 0 \N \N f 0 \N 0 108551010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435445 2024-02-22 19:37:15.506 2024-02-22 19:47:16.904 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nState wall myself interview will. Watch ahea https://example.com/ 4064 435132 435046.435132.435445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5872605361257 0 \N \N f 0 \N 1 197123558 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439237 2024-02-26 12:59:23.917 2024-02-26 13:09:25.544 \N Discussion various drop throw none test wind. Exactl https://example.com/ 15719 439139 439139.439237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.493145051759 0 \N \N f 0 \N 0 85390324 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435461 2024-02-22 19:49:08.012 2024-02-22 19:59:09.111 \N Quite teacher accept per agent PM suddenly reveal. Land https://example.com/ 11192 435455 435455.435461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1184055884877 0 \N \N f 0 \N 0 216270015 0 f f \N \N \N \N 435455 \N 0 0 \N \N f \N 435379 2024-02-22 18:44:45.106 2024-02-22 19:51:07.922 Pick fight simple Everyone mention le https://example.com/ 18311 \N 435379 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 20.5747493464584 0 \N \N f 0 \N 0 144223673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435486 2024-02-22 20:32:34.452 2024-02-22 20:42:35.773 Try hospital student. Stock floor by weight kind improve. Record religious e Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish. https://example.com/ 19417 \N 435486 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2305391931985 0 \N \N f 0 \N 0 46682275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435426 2024-02-22 19:20:53.532 2024-02-22 19:30:54.922 \N Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard https://example.com/ 18727 435416 435261.435396.435416.435426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.279628650754589 0 \N \N f 0 \N 1 93477519 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 440149 2024-02-27 01:04:03.548 2024-02-27 01:14:04.559 \N Entire money chair https://example.com/ 762 439029 439029.440149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1651223306146 0 \N \N f 0 \N 2 58324861 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 440138 2024-02-27 00:48:43.013 2024-02-27 00:58:44.271 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receiv https://example.com/ 16649 439993 439638.439863.439881.439894.439969.439974.439984.439993.440138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.155460195158 0 \N \N f 0 \N 0 156882966 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 439984 2024-02-26 21:26:28.793 2024-02-26 21:36:30.495 \N Popular entire medical office can. Those begin for own offer relationship fo https://example.com/ 2718 439974 439638.439863.439881.439894.439969.439974.439984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3037885039103 0 \N \N f 0 \N 3 43235204 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440134 2024-02-27 00:43:59.967 2024-02-27 00:54:01.646 A item peace although method. Maintain follow start govern Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nRecord recent evening worry. Direction thought property https://example.com/ 6229 \N 440134 \N \N \N \N \N \N \N \N security \N ACTIVE \N 5.67998258523865 0 \N \N f 0 \N 0 58548021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435485 2024-02-22 20:32:31.433 2024-02-22 20:42:32.72 \N Beyond leg century https://example.com/ 18372 434720 434498.434720.435485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1105628597827 0 \N \N f 0 \N 0 110075629 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 435479 2024-02-22 20:13:58.306 2024-02-22 20:23:59.378 Morning better everybody sense. Today growth term test. Old fast it building. Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope https://example.com/ 998 \N 435479 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8517298718353 0 \N \N f 0 \N 0 146389929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435484 2024-02-22 20:28:26.36 2024-02-22 20:38:27.393 Every east political drug. Important game subject seat seek college learn. Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat. https://example.com/ 20554 \N 435484 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 1.28625211756528 0 \N \N f 0 \N 0 62053327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434720 2024-02-22 09:44:24.488 2024-02-22 09:54:26.102 \N Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nWait forward w https://example.com/ 1221 434498 434498.434720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.79565554779651 0 \N \N f 0 \N 3 180974339 0 f f \N \N \N \N 434498 \N 0 0 \N \N f \N 435417 2024-02-22 19:11:07.445 2024-02-22 19:21:08.835 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor va https://example.com/ 20058 434424 434424.435417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98767463208212 0 \N \N f 0 \N 1 35074502 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 435478 2024-02-22 20:13:51.634 2024-02-22 20:23:52.37 Single level story sound. Door end up Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media. https://example.com/ 11314 \N 435478 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.1449104313084 0 \N \N f 0 \N 0 166771690 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435423 2024-02-22 19:17:56.501 2024-02-22 19:27:58.356 \N Order science level wish quite. About production ability win front machine. https://example.com/ 11458 435422 435411.435418.435422.435423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39307578116984 0 \N \N f 0 \N 1 135810556 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N 435476 2024-02-22 20:13:11.735 2024-02-22 20:23:12.613 \N Door wrong under assume get wear. Full least https://example.com/ 8506 435472 435217.435471.435472.435476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.593636736678 0 \N \N f 0 \N 0 16143422 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 436198 2024-02-23 13:45:36.397 2024-02-23 13:55:38.118 \N Condition lose r https://example.com/ 19462 436147 436147.436198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9165919683071 0 \N \N f 0 \N 0 16315461 0 f f \N \N \N \N 436147 \N 0 0 \N \N f \N 435987 2024-02-23 09:59:42.557 2024-02-23 10:09:43.556 Benefit car actually you open. Election hear wide school miss. Market easy foo Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police. https://example.com/ 8162 \N 435987 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.2841428592134 0 \N \N f 0 \N 0 23053143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442126 2024-02-28 15:07:19.409 2024-02-28 15:17:20.694 \N Everyone mention lead pretty protect quite relationship. Leg Mr https://example.com/ 21019 201145 200726.200758.200759.200827.201145.442126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6167832491371 0 \N \N f 0 \N 0 130061763 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 435472 2024-02-22 20:05:54.486 2024-02-22 20:15:56.107 \N Sing eigh https://example.com/ 20162 435471 435217.435471.435472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4336480888356 0 \N \N f 0 \N 1 39829406 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435613 2024-02-22 22:28:48.707 2024-02-22 22:38:49.983 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add bod https://example.com/ 674 435332 435328.435332.435613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0525743955669 0 \N \N f 0 \N 0 155941818 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 438806 2024-02-26 01:27:31.11 2024-02-26 01:37:32.285 \N Deal could skin some. Through street fact almost. Move m https://example.com/ 7674 438397 438397.438806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03838120715637 0 \N \N f 0 \N 0 155552771 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 435467 2024-02-22 20:00:04.539 2024-02-22 20:10:06.445 Small enjoy manage service individual down. Season Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish a https://example.com/ 18817 \N 435467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.5473285178616 0 \N \N f 0 \N 0 224288709 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435482 2024-02-22 20:25:16.978 2024-02-22 20:35:18.823 Health catch toward hair I. Amount to smile sort attack. Best pass statement add Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nOff behind four class talk. Nor these prove tend itself. Ga https://example.com/ 15180 \N 435482 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.43780148011071 0 \N \N f 0 \N 0 22600372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440104 2024-02-27 00:04:06.919 2024-02-27 00:14:08.038 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according dri https://example.com/ 12169 438802 438691.438802.440104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93209907471358 0 \N \N f 0 \N 2 116895334 0 f f \N \N \N \N 438691 \N 0 0 \N \N f \N 440114 2024-02-27 00:16:08.244 2024-02-27 00:26:09.656 \N Woul https://example.com/ 9109 440108 438691.438802.440104.440108.440114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.1224324644081 0 \N \N f 0 \N 0 211431240 0 f f \N \N \N \N 438691 \N 0 0 \N \N f \N 435603 2024-02-22 22:18:47.669 2024-02-22 22:28:49.184 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nDevelopment poli https://example.com/ 19263 435217 435217.435603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.891277812089 0 \N \N f 0 \N 0 218148198 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435558 2024-02-22 21:43:05.736 2024-02-22 21:53:07.157 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood belie https://example.com/ 981 435438 435217.435275.435277.435295.435438.435558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4667853570427 0 \N \N f 0 \N 0 222458380 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435477 2024-02-22 20:13:23.548 2024-02-22 20:23:24.842 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special e https://example.com/ 954 435423 435411.435418.435422.435423.435477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.32621682267676 0 \N \N f 0 \N 0 15861841 0 f f \N \N \N \N 435411 \N 0 0 \N \N f \N 439547 2024-02-26 16:05:40.756 2024-02-26 16:15:42.067 \N Face opportunity account eat program father long par https://example.com/ 634 439139 439139.439547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86704773549582 0 \N \N f 0 \N 0 241496875 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435792 2024-02-23 03:17:05.037 2024-02-23 03:27:06.454 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Si https://example.com/ 2710 435457 435457.435792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4294476717694 0 \N \N f 0 \N 0 167032839 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 440118 2024-02-27 00:19:20.679 2024-02-27 00:29:21.915 \N Can shoulder modern daughter. Where difficult oil along. Start t https://example.com/ 15408 439263 439263.440118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0531637543193 0 \N \N f 0 \N 0 125241988 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 435465 2024-02-22 19:57:45.073 2024-02-22 20:07:46.699 \N Health recently away many who girl admit. Value https://example.com/ 4250 435458 435458.435465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8564214458558 0 \N \N f 0 \N 3 189259765 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 435492 2024-02-22 20:38:26.281 2024-02-22 20:48:27.332 \N Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. https://example.com/ 14045 435120 435120.435492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3723687472234 0 \N \N f 0 \N 0 66102904 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 436173 2024-02-23 13:26:28.064 2024-02-23 13:36:30.007 \N Fish health while enjoy. Step check prevent sell political ma https://example.com/ 10591 436004 435958.436004.436173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5207698796225 0 \N \N f 0 \N 0 121233913 0 f f \N \N \N \N 435958 \N 0 0 \N \N f \N 440115 2024-02-27 00:16:46.963 2024-02-27 00:26:48.21 \N For wrong of https://example.com/ 20669 440056 440056.440115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8475518733959 0 \N \N f 0 \N 0 111256703 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440116 2024-02-27 00:18:06.69 2024-02-27 00:28:07.75 \N Travel https://example.com/ 9356 439845 439082.439579.439584.439831.439838.439839.439845.440116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2664443379986 0 \N \N f 0 \N 0 73862851 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435529 2024-02-22 21:13:34.201 2024-02-22 21:23:35.555 \N Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy le https://example.com/ 18637 435525 435314.435320.435335.435515.435525.435529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40730382011686 0 \N \N f 0 \N 0 177280348 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435470 2024-02-22 20:03:39.496 2024-02-22 20:13:40.729 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general boo https://example.com/ 4014 435446 435261.435446.435470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0977078557158 0 \N \N f 0 \N 0 23412946 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 436091 2024-02-23 12:23:23.036 2024-02-23 12:33:23.834 \N Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer nev https://example.com/ 15588 436065 436028.436029.436031.436059.436065.436091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8882918441845 0 \N \N f 0 \N 8 78048709 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 435446 2024-02-22 19:37:55.376 2024-02-22 19:47:56.534 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environ https://example.com/ 10586 435261 435261.435446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2042195691151 0 \N \N f 0 \N 2 243402498 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435498 2024-02-22 20:41:00.243 2024-02-22 20:51:01.318 \N Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nTurn where describe while kitchen special. Today measure ad https://example.com/ 16270 435496 435496.435498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1479239935262 0 \N \N f 0 \N 0 114847260 0 f f \N \N \N \N 435496 \N 0 0 \N \N f \N 435390 2024-02-22 18:54:10.265 2024-02-22 19:04:11.267 Black leg through occur possible Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who. https://example.com/ 19033 \N 435390 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 27.6399335518523 0 \N \N f 0 \N 0 18505696 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435493 2024-02-22 20:39:14.251 2024-02-22 20:49:15.554 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nProject them draw walk if https://example.com/ 18525 429301 429301.435493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9912846322059 0 \N \N f 0 \N 0 162254589 0 f f \N \N \N \N 429301 \N 0 0 \N \N f \N 435412 2024-02-22 19:08:19.912 2024-02-22 19:18:20.793 Surface tree knowledge mean. Trade drop hope Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best. https://example.com/ 6137 \N 435412 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.2632240089056 0 \N \N f 0 \N 3 218349697 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435517 2024-02-22 20:57:27.894 2024-02-22 21:07:29.25 \N Not find attack light everything different. Certainly tra https://example.com/ 1745 434795 434795.435517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6993393931796 0 \N \N f 0 \N 2 53299698 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440123 2024-02-27 00:22:31.15 2024-02-27 00:32:32.203 \N News animal hour keep yourself and. Be moment rather often recognize little me. Business outs https://example.com/ 6741 439994 439994.440123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6352962699396 0 \N \N f 0 \N 0 136300736 0 f f \N \N \N \N 439994 \N 0 0 \N \N f \N 435512 2024-02-22 20:53:42.757 2024-02-22 21:03:43.795 \N Ever small reduce evidence quickly again true. Record heart enjoy social me https://example.com/ 1120 435509 435242.435509.435512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6271657782764 0 \N \N f 0 \N 0 218926616 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 435543 2024-02-22 21:27:12.845 2024-02-22 21:37:14.124 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nNear key among effort cover century suppo https://example.com/ 18051 435458 435458.435543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6621290581384 0 \N \N f 0 \N 0 196778310 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 442081 2024-02-28 14:47:38.335 2024-02-28 14:57:40.256 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. Fir https://example.com/ 2710 441720 441695.441719.441720.442081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.517645911826 0 \N \N f 0 \N 0 6005462 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 435490 2024-02-22 20:38:00.272 2024-02-22 20:48:01.719 \N Myself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat r https://example.com/ 2724 435489 435489.435490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.278898801943 0 \N \N f 0 \N 0 171324983 0 f f \N \N \N \N 435489 \N 0 0 \N \N f \N 435494 2024-02-22 20:40:00.406 2024-02-22 20:50:01.315 Beyond song throw blood hard. Show already get bes Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nAny note pic https://example.com/ 2734 \N 435494 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.9719995944631 0 \N \N f 0 \N 0 89583486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435500 2024-02-22 20:41:14.105 2024-02-22 20:51:15.47 \N Take discuss nature then break spring https://example.com/ 20730 435284 435284.435500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8759623511915 0 \N \N f 0 \N 1 68349369 0 f f \N \N \N \N 435284 \N 0 0 \N \N f \N 439171 2024-02-26 12:32:41.431 2024-02-26 12:42:43.017 \N Investment bad cultural turn with here least hand. R https://example.com/ 17094 439139 439139.439171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51060933950816 0 \N \N f 0 \N 0 181843299 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435335 2024-02-22 17:57:40.889 2024-02-22 18:07:41.495 \N Think month catch free. Tree involve deep resource provide professional dinner hold. S https://example.com/ 20381 435320 435314.435320.435335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0432551855164 0 \N \N f 0 \N 4 55890002 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 442125 2024-02-28 15:07:12.596 2024-02-28 15:17:14.624 \N Probably a https://example.com/ 9843 441719 441695.441719.442125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2697870118497 0 \N \N f 0 \N 0 182030588 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443344 2024-02-29 11:37:51.151 2024-02-29 11:47:52.44 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate pr https://example.com/ 5852 443332 443295.443332.443344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2192312256002 0 \N \N f 0 \N 0 175966765 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 435409 2024-02-22 19:07:35.232 2024-02-22 19:17:36.788 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five ar https://example.com/ 8498 435401 435261.435401.435409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.59432666974399 0 \N \N f 0 \N 2 32544661 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 440046 2024-02-26 22:28:49.781 2024-02-26 22:38:51.045 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide lan https://example.com/ 20157 440035 439987.440035.440046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7041591646054 0 \N \N f 0 \N 1 6657488 0 f f \N \N \N \N 439987 \N 0 0 \N \N f \N 440155 2024-02-27 01:23:04.2 2024-02-27 01:33:06.065 Lead against area note movement street push music. M Seek military only heart. https://example.com/ 16536 \N 440155 \N \N \N \N \N \N \N \N health \N ACTIVE \N 19.8382182366506 0 \N \N f 0 \N 1 180184639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435503 2024-02-22 20:43:58.66 2024-02-22 20:54:00.018 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nSuggest o https://example.com/ 13217 435358 435217.435257.435260.435352.435358.435503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9533963094998 0 \N \N f 0 \N 0 73830911 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 440119 2024-02-27 00:21:01.644 2024-02-27 00:31:02.883 \N Thi https://example.com/ 19199 440007 439844.440007.440119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9274763672587 0 \N \N f 0 \N 1 22626776 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435624 2024-02-22 22:47:55.981 2024-02-22 22:57:57.794 \N Scientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussio https://example.com/ 836 435583 435497.435583.435624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00104457097872 0 \N \N f 0 \N 0 7191049 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 435583 2024-02-22 22:08:00.473 2024-02-22 22:18:01.884 \N Community region she TV since sometimes know. Small water want same an https://example.com/ 4574 435497 435497.435583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.491456598857 0 \N \N f 0 \N 1 154628160 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 435527 2024-02-22 21:11:21.26 2024-02-22 21:21:23.418 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three r https://example.com/ 18865 435308 434795.435274.435308.435527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5704199952728 0 \N \N f 0 \N 1 117833109 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440146 2024-02-27 01:00:05.129 2024-02-27 01:00:11.066 \N Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. T https://example.com/ 20781 440145 440145.440146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1084397916167 0 \N \N f 0 \N 0 36611884 0 f f \N \N \N \N 440145 \N 0 0 \N \N f \N 440141 2024-02-27 00:52:43.511 2024-02-27 01:02:45.516 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north tr https://example.com/ 8985 439981 439638.439863.439881.439981.440141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6192665427648 0 \N \N f 0 \N 0 90227788 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440122 2024-02-27 00:22:00.953 2024-02-27 00:32:01.962 \N Himself seem along exist p https://example.com/ 20979 440056 440056.440122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6380870211124 0 \N \N f 0 \N 0 41956281 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440152 2024-02-27 01:13:49.934 2024-02-27 01:23:51.856 Focus area mean. Sometimes responsibility table law. Lot debate difficul Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action bloo https://example.com/ 632 \N 440152 \N \N \N \N \N \N \N \N security \N ACTIVE \N 7.57225462611245 0 \N \N f 0 \N 0 20702281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435518 2024-02-22 21:00:44.754 2024-02-22 21:10:46.463 Cause daughter drop gas. Cell respond always experience uni Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last. https://example.com/ 1298 \N 435518 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.0460174691218 0 \N \N f 0 \N 0 61753493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435525 2024-02-22 21:09:54.64 2024-02-22 21:19:56.978 \N Month explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nReach road deal especially down since ball score. Make eith https://example.com/ 12122 435515 435314.435320.435335.435515.435525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5511121873568 0 \N \N f 0 \N 1 239071012 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435535 2024-02-22 21:15:50.812 2024-02-22 21:25:52.15 \N Help out doctor wait. Early centr https://example.com/ 896 434514 434514.435535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6220710088737 0 \N \N f 0 \N 0 102512594 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 440007 2024-02-26 21:42:37.243 2024-02-26 21:52:39.072 \N Possible late blood always bit. Plant in media population everyone. Attorney impact particular fi https://example.com/ 19581 439844 439844.440007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5075939375998 0 \N \N f 0 \N 2 111923671 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440124 2024-02-27 00:24:40.796 2024-02-27 00:34:42.165 \N Long interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food governmen https://example.com/ 18877 440046 439987.440035.440046.440124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5367645935376 0 \N \N f 0 \N 0 67485501 0 f f \N \N \N \N 439987 \N 0 0 \N \N f \N 435537 2024-02-22 21:16:48.296 2024-02-22 21:26:49.686 \N Statement these family dark. Real https://example.com/ 20062 435375 435375.435537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1831547800887 0 \N \N f 0 \N 0 223956221 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 435540 2024-02-22 21:20:38.545 2024-02-22 21:30:39.647 \N There everybody fish can. Exactly office event charge reduce. Better happen dark https://example.com/ 15617 435495 435495.435540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5838479034751 0 \N \N f 0 \N 0 18886983 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 435375 2024-02-22 18:40:24.592 2024-02-22 18:50:26.183 Treatment dream at Am Structure require feel statement plan economy. Base trouble sta https://example.com/ 671 \N 435375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.84540712350957 0 \N \N f 0 \N 6 208677152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434540 2024-02-22 04:31:59.924 2024-02-22 04:42:01.231 \N Any no https://example.com/ 703 434514 434514.434540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5647063104259 0 \N \N f 0 \N 0 89274510 0 f f \N \N \N \N 434514 \N 0 0 \N \N f \N 435357 2024-02-22 18:21:59.224 2024-02-22 18:32:00.518 Direction figure between get especially certain. Behind himsel Determine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment. https://example.com/ 7766 \N 435357 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7417171743114 0 \N \N f 0 \N 4 107083952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440129 2024-02-27 00:33:57.292 2024-02-27 00:43:58.302 \N Concern position true. Third financial may produce. Machine his identify long threat part https://example.com/ 899 440056 440056.440129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0019632240632 0 \N \N f 0 \N 0 242675325 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440148 2024-02-27 01:04:00.823 2024-02-27 01:14:02.269 \N Join push remain behavior. Various song no successfu https://example.com/ 18877 439999 439806.439876.439999.440148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48530205959722 0 \N \N f 0 \N 0 237216919 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 440112 2024-02-27 00:15:24.099 2024-02-27 00:25:25.93 \N Experience https://example.com/ 1881 440107 439844.440106.440107.440112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2718474932153 0 \N \N f 0 \N 0 12511559 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440117 2024-02-27 00:18:56.255 2024-02-27 00:28:57.782 Range network baby that. Smile common political animal simple include. Law th Them social create approach difficult what. Include idea source https://example.com/ 21072 \N 440117 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 0.829927300857989 0 \N \N f 0 \N 0 76911166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435501 2024-02-22 20:42:48.61 2024-02-22 20:52:49.956 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach bu https://example.com/ 7673 435496 435496.435501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41722892552287 0 \N \N f 0 \N 0 120436071 0 f f \N \N \N \N 435496 \N 0 0 \N \N f \N 435159 2024-02-22 16:15:05.247 2024-02-22 16:25:06.974 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old tim https://example.com/ 21357 434978 434791.434978.435159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6748558871565 0 \N \N f 0 \N 0 87267848 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 440137 2024-02-27 00:48:41.096 2024-02-27 00:58:42.254 \N She loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Prog https://example.com/ 5519 439970 439970.440137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4445400715501 0 \N \N f 0 \N 2 128267493 0 f f \N \N \N \N 439970 \N 0 0 \N \N f \N 440147 2024-02-27 01:02:19.197 2024-02-27 01:12:20.17 Compare strategy affect threat stage approach pattern. Time onto may I bit b Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west https://example.com/ 21541 \N 440147 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 9.88252000026769 0 \N \N f 0 \N 0 204838354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440136 2024-02-27 00:45:46.64 2024-02-27 00:55:48.33 Likely natural ahead focus. School our training e Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mr https://example.com/ 10554 \N 440136 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.13635031718585 0 \N \N f 0 \N 0 90780913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435456 2024-02-22 19:47:00.405 2024-02-22 19:57:02.052 \N Happen include car man crime. Local orga https://example.com/ 13399 435447 435046.435063.435447.435456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90444503191398 0 \N \N f 0 \N 0 132658337 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440142 2024-02-27 00:55:35.452 2024-02-27 01:05:36.409 \N Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car https://example.com/ 16948 440057 439638.439662.440057.440142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.71103842709305 0 \N \N f 0 \N 0 78717418 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 442486 2024-02-28 17:43:25.392 2024-02-28 17:53:26.414 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\n https://example.com/ 13575 442416 442416.442486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.656129272494397 0 \N \N f 0 \N 1 25644383 0 f f \N \N \N \N 442416 \N 0 0 \N \N f \N 435491 2024-02-22 20:38:24.031 2024-02-22 20:48:25.324 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republic https://example.com/ 1723 435046 435046.435491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4649662954255 0 \N \N f 0 \N 0 223321822 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435468 2024-02-22 20:00:58.765 2024-02-22 20:11:00.346 \N Detail economy still boy fine in series. Bring probably list stop still else statement sta https://example.com/ 15594 435465 435458.435465.435468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11907021785174 0 \N \N f 0 \N 2 112566243 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 434915 2024-02-22 12:50:33.021 2024-02-22 13:00:34.395 \N A https://example.com/ 4538 434902 434795.434902.434915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.0928502595722 0 \N \N f 0 \N 0 123178423 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440133 2024-02-27 00:43:54.655 2024-02-27 00:53:56.559 Travel never area Maybe doctor perfor https://example.com/ 5637 \N 440133 \N \N \N \N \N \N \N \N security \N ACTIVE \N 18.6511006811342 0 \N \N f 0 \N 0 92427359 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440140 2024-02-27 00:50:51.912 2024-02-27 01:00:53.454 \N Past everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. W https://example.com/ 20892 440050 439699.440025.440031.440050.440140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.44109419107944 0 \N \N f 0 \N 0 11790222 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440097 2024-02-26 23:55:23.825 2024-02-27 00:05:25.698 \N Price country hour whom over argue Congress upon. Nation baby relate loca https://example.com/ 7966 440078 440056.440078.440097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.85274184491496 0 \N \N f 0 \N 3 171133449 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 439904 2024-02-26 20:36:54.454 2024-02-26 20:46:55.752 Bank one body pull the expect. Issue play without parent line political. Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page. https://example.com/ 19471 \N 439904 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.121222619034 0 \N \N f 0 \N 0 95904340 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440057 2024-02-26 22:42:27.609 2024-02-26 22:52:28.794 \N Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hun https://example.com/ 659 439662 439638.439662.440057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3493652708707 0 \N \N f 0 \N 8 107852064 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440131 2024-02-27 00:38:53.688 2024-02-27 00:48:55.159 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove me https://example.com/ 679 440075 440075.440131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.4571339963784 0 \N \N f 0 \N 0 82295588 0 f f \N \N \N \N 440075 \N 0 0 \N \N f \N 435513 2024-02-22 20:54:28.633 2024-02-22 21:04:29.547 Alone force machine policy energy. Stand our ahead third. When challenge true sh Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest. https://example.com/ 19193 \N 435513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2646755253069 0 \N \N f 0 \N 0 156630612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440151 2024-02-27 01:07:04.529 2024-02-27 01:17:05.684 \N Them social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. S https://example.com/ 1803 439983 439638.439643.439890.439983.440151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4014741509673 0 \N \N f 0 \N 0 206659667 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 442492 2024-02-28 17:46:22.741 2024-02-28 17:56:24.668 \N Explain order he https://example.com/ 19332 442484 442023.442469.442482.442484.442492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1684036574503 0 \N \N f 0 \N 0 115666131 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442489 2024-02-28 17:45:34.758 2024-02-28 17:55:36.447 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsib https://example.com/ 15271 441695 441695.442489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5327662533134 0 \N \N f 0 \N 0 62643502 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 435382 2024-02-22 18:47:28.251 2024-02-22 18:57:29.484 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organizatio https://example.com/ 15103 435261 435261.435382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52201618475769 0 \N \N f 0 \N 1 81533726 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435496 2024-02-22 20:40:29.818 2024-02-22 20:50:30.921 Wonder check lead door. Herself safe believe show assume will. L Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake. https://example.com/ 16387 \N 435496 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0075500720779 0 \N \N f 0 \N 2 108430728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439983 2024-02-26 21:25:46.293 2024-02-26 21:35:47.483 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probab https://example.com/ 19018 439890 439638.439643.439890.439983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9097021418394 0 \N \N f 0 \N 1 179750207 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 441624 2024-02-28 09:47:15.206 2024-02-28 09:57:16.048 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh https://example.com/ 18188 441169 441169.441624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9960345708861 0 \N \N f 0 \N 0 207535841 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441633 2024-02-28 10:00:05.095 2024-02-28 10:00:11.335 \N Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. St https://example.com/ 1326 441632 441632.441633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.39003228711547 0 \N \N f 0 \N 0 76202170 0 f f \N \N \N \N 441632 \N 0 0 \N \N f \N 440078 2024-02-26 23:03:43.856 2024-02-26 23:13:45.586 \N Ready which computer major take involve suggest quickly. Firm crime administ https://example.com/ 16505 440056 440056.440078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02018441920525 0 \N \N f 0 \N 4 157340339 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440144 2024-02-27 00:59:49.09 2024-02-27 01:09:50.344 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. https://example.com/ 11395 439390 439390.440144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3753986566119 0 \N \N f 0 \N 0 75323760 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 439130 2024-02-26 11:58:29.403 2024-02-26 12:08:30.565 Happy strong Democrat some goal new s Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provid https://example.com/ 14449 \N 439130 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.10306518484097 0 \N \N f 0 \N 16 157941246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435565 2024-02-22 21:50:34.003 2024-02-22 22:00:35.253 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nAgain reveal time hot kind own. Believe agree https://example.com/ 2213 435438 435217.435275.435277.435295.435438.435565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.73081200760839 0 \N \N f 0 \N 3 60294230 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435566 2024-02-22 21:51:06.644 2024-02-22 22:01:07.688 \N Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nFilm without deal production let letter. I product step follow discussion. Feder https://example.com/ 19484 435131 435046.435122.435131.435566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44008477681079 0 \N \N f 0 \N 1 30154308 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440589 2024-02-27 14:21:06.288 2024-02-27 14:31:08.376 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain https://example.com/ 16848 440580 440520.440580.440589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5353047912001 0 \N \N f 0 \N 1 203498715 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 440150 2024-02-27 01:05:11.783 2024-02-27 01:15:13.784 Plant strong west enjoy. Those everything may dark face. His seek sea no Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak r https://example.com/ 8726 \N 440150 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.8258736884294 0 \N \N f 0 \N 0 86046933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440161 2024-02-27 01:30:27.595 2024-02-27 01:40:28.7 \N Red production his https://example.com/ 19267 440080 440080.440161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8518243737248 0 \N \N f 0 \N 0 130252655 0 f f \N \N \N \N 440080 \N 0 0 \N \N f \N 441597 2024-02-28 09:02:56.816 2024-02-28 09:12:57.894 \N Happy strong Democrat some goal new servic https://example.com/ 18909 441169 441169.441597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3301666820669 0 \N \N f 0 \N 0 7594001 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 435641 2024-02-22 23:07:53.32 2024-02-22 23:17:54.34 \N Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nVery ex https://example.com/ 18517 435505 435497.435505.435641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.715978657218 0 \N \N f 0 \N 1 28126235 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 432932 2024-02-20 19:38:26.492 2024-02-20 19:48:27.863 \N Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish https://example.com/ 2347 432344 432344.432932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5885632169348 0 \N \N f 0 \N 6 217422733 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 435071 2024-02-22 14:58:42.863 2024-02-22 15:08:44.258 \N Truth training network government behavior decade. Beyond sound grow throughout peop https://example.com/ 16848 435061 434990.435000.435061.435071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2044904942734 0 \N \N f 0 \N 0 208692502 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 435061 2024-02-22 14:53:19.659 2024-02-22 15:03:21.582 \N Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son https://example.com/ 18351 435000 434990.435000.435061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5139577954398 0 \N \N f 0 \N 1 186729467 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 435813 2024-02-23 03:57:15.904 2024-02-23 04:07:17.443 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy a https://example.com/ 5359 435798 435798.435813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.87455092548789 0 \N \N f 0 \N 0 247504408 0 f f \N \N \N \N 435798 \N 0 0 \N \N f \N 435901 2024-02-23 06:56:55.712 2024-02-23 07:06:57.526 \N Third https://example.com/ 15052 435376 435375.435376.435901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.41179179282261 0 \N \N f 0 \N 0 56927770 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 433555 2024-02-21 10:13:12.023 2024-02-21 10:23:13.742 Station nothing decide Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Ac https://example.com/ 11999 \N 433555 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.1913483110775 0 \N \N f 0 \N 30 70818784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434098 2024-02-21 18:00:35.567 2024-02-21 18:10:37.084 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager https://example.com/ 13100 433828 433828.434098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65534232155029 0 \N \N f 0 \N 2 71953002 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 434361 2024-02-21 22:33:49.628 2024-02-21 22:43:50.735 \N Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch https://example.com/ 15146 433588 433588.434361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2645838793343 0 \N \N f 0 \N 0 136682787 0 f f \N \N \N \N 433588 \N 0 0 \N \N f \N 435894 2024-02-23 06:49:24.183 2024-02-23 06:59:25.537 \N Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nTreatment dr https://example.com/ 1705 435847 435847.435894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.94187400442982 0 \N \N f 0 \N 0 55149612 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 434646 2024-02-22 07:33:08.587 2024-02-23 07:17:09.886 Maybe seem particular stand blood sour Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nPerson part phone rich. Cause t https://example.com/ 12561 \N 434646 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 13.5095635171494 0 \N \N f 0 \N 28 46085215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440093 2024-02-26 23:50:23.363 2024-02-27 00:00:24.706 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nTrip improve born state similar appear. Money action change b https://example.com/ 1272 440052 440004.440052.440093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2024483839594 0 \N \N f 0 \N 3 130742380 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 435295 2024-02-22 17:36:09.339 2024-02-22 17:46:10.513 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where ho https://example.com/ 21329 435277 435217.435275.435277.435295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.66192027494402 0 \N \N f 0 \N 16 145229943 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435276 2024-02-22 17:26:39.672 2024-02-22 17:36:41.444 Long interesting cut grow prevent. Western ability much ho A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nPast hospital she war. Firm spring game seem. Rec https://example.com/ 20254 \N 435276 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1778845407935 0 \N \N f 0 \N 4 120234286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435224 2024-02-22 16:52:49.746 2024-02-22 17:37:04.69 Once could Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National sp https://example.com/ 12507 \N 435224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6567896336158 0 \N \N f 0 \N 5 19205036 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442528 2024-02-28 18:12:29.535 2024-02-28 18:22:30.516 \N Near whom sit wonde https://example.com/ 20980 442525 442023.442504.442509.442519.442525.442528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8632997083115 0 \N \N f 0 \N 0 138741623 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 434838 2024-02-22 11:28:09.192 2024-02-22 11:38:10.262 \N Scientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business a https://example.com/ 4014 434810 434810.434838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.08268858363 0 \N \N f 0 \N 0 127198850 0 f f \N \N \N \N 434810 \N 0 0 \N \N f \N 435676 2024-02-22 23:58:35.093 2024-02-23 00:08:36.08 \N Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nProv https://example.com/ 1008 435609 435030.435609.435676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.19831641527472 0 \N \N f 0 \N 1 185965688 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 439905 2024-02-26 20:37:44.889 2024-02-26 20:47:46.555 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband https://example.com/ 9809 439806 439806.439905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7814656569818 0 \N \N f 0 \N 1 101931311 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 434869 2024-02-22 12:04:39.078 2024-02-22 12:14:41.334 \N Economic clearly dark. Understand remain performance want save https://example.com/ 7903 434866 434795.434797.434866.434869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.92451231301452 0 \N \N f 0 \N 4 47870711 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 442509 2024-02-28 18:00:06.115 2024-02-28 18:10:07.566 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough throug https://example.com/ 18842 442504 442023.442504.442509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4434298881543 0 \N \N f 0 \N 3 206140629 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 435092 2024-02-22 15:17:30.516 2024-02-22 15:27:32.041 \N Item attention child take film late. Still next free list. Artist seven one record. Store https://example.com/ 14385 435040 435018.435040.435092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7715085997348 0 \N \N f 0 \N 0 95429235 0 f f \N \N \N \N 435018 \N 0 0 \N \N f \N 435206 2024-02-22 16:37:46.065 2024-02-22 16:47:47.475 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nFull both sound century c https://example.com/ 12721 435195 435154.435195.435206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7927693720088 0 \N \N f 0 \N 0 154528031 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 440156 2024-02-27 01:23:37.317 2024-02-27 01:33:38.569 \N Value hav https://example.com/ 4415 440139 440139.440156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9364124531225 0 \N \N f 0 \N 0 218053898 0 f f \N \N \N \N 440139 \N 0 0 \N \N f \N 438330 2024-02-25 14:59:00.39 2024-02-25 15:09:01.935 \N Stock short may one soldier https://example.com/ 8037 438303 438303.438330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.59650289684769 0 \N \N f 0 \N 0 10221928 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 440160 2024-02-27 01:30:24.623 2024-02-27 01:40:26.218 \N Focus available yeah law. Do https://example.com/ 13246 439844 439844.440160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.01148991110787 0 \N \N f 0 \N 0 104999028 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440164 2024-02-27 01:35:10.166 2024-02-27 01:45:11.523 \N Return teacher forget e https://example.com/ 19815 440128 440128.440164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0940289942911 0 \N \N f 0 \N 0 228858038 0 f f \N \N \N \N 440128 \N 0 0 \N \N f \N 440667 2024-02-27 15:18:08.775 2024-02-27 15:28:10.205 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nTerm ok concern experience col https://example.com/ 21334 440179 440132.440179.440667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5533789479513 0 \N \N f 0 \N 0 135679538 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 441137 2024-02-27 21:47:40.694 2024-02-27 21:57:42.385 \N Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. https://example.com/ 16259 440692 440692.441137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8723288761545 0 \N \N f 0 \N 0 85500635 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 438316 2024-02-25 14:44:47.939 2024-02-25 14:54:49.226 \N His mean individual benefit push consider. Administratio https://example.com/ 21361 438303 438303.438316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10066898324692 0 \N \N f 0 \N 0 216609585 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 438315 2024-02-25 14:44:25.714 2024-02-25 14:54:27.152 \N With offi https://example.com/ 20812 438303 438303.438315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9234784526374 0 \N \N f 0 \N 0 180608819 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 438338 2024-02-25 15:02:44.483 2024-02-25 15:12:46.009 \N Histor https://example.com/ 9496 438303 438303.438338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.98141181069765 0 \N \N f 0 \N 0 222918818 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 440493 2024-02-27 12:12:01.316 2024-02-27 12:22:03.077 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote https://example.com/ 8004 440422 440422.440493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2625512788078 0 \N \N f 0 \N 0 95206927 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 435594 2024-02-22 22:15:13.009 2024-02-22 22:25:14.389 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nWay all line after. Only trouble they hair when. According the help together any. View later same act https://example.com/ 20663 435573 435217.435275.435277.435295.435438.435565.435570.435573.435594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2324894116782 0 \N \N f 0 \N 0 218223284 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 438368 2024-02-25 15:32:47.722 2024-02-25 15:42:49.37 \N Ability ability arrive age movie country. https://example.com/ 20353 438303 438303.438368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55011236770701 0 \N \N f 0 \N 0 102379906 0 f f \N \N \N \N 438303 \N 0 0 \N \N f \N 435591 2024-02-22 22:11:49.393 2024-02-22 22:21:51.479 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north t https://example.com/ 7869 435577 435577.435591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4550841399961 0 \N \N f 0 \N 0 101272264 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 435593 2024-02-22 22:14:03.369 2024-02-22 22:24:05.277 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nWest tend alo https://example.com/ 18704 435217 435217.435593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0866300721884 0 \N \N f 0 \N 0 246272601 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 434921 2024-02-22 12:53:11.827 2024-02-22 13:03:13.29 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nPower herself life always. Specific but learn its https://example.com/ 21061 434894 434795.434797.434866.434869.434879.434894.434921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1268325269968 0 \N \N f 0 \N 1 39787065 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434894 2024-02-22 12:29:04.846 2024-02-22 12:39:05.699 \N Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip https://example.com/ 11477 434879 434795.434797.434866.434869.434879.434894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1739469046593 0 \N \N f 0 \N 2 155361219 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434879 2024-02-22 12:18:12.687 2024-02-22 12:28:13.724 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response deter https://example.com/ 11314 434869 434795.434797.434866.434869.434879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24944328434601 0 \N \N f 0 \N 3 246047235 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434805 2024-02-22 11:05:39.671 2024-02-22 11:15:40.92 \N Call economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nDetermine magazine police agent billio https://example.com/ 1617 434800 434795.434797.434800.434805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9296872302101 0 \N \N f 0 \N 1 5074813 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435598 2024-02-22 22:16:29.779 2024-02-22 22:26:31.415 \N Hot society state https://example.com/ 1650 435542 435217.435541.435542.435598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7094742081002 0 \N \N f 0 \N 2 15295071 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435597 2024-02-22 22:15:42.823 2024-02-22 22:25:44.134 \N Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point de https://example.com/ 19284 435446 435261.435446.435597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1024663857638 0 \N \N f 0 \N 0 147971585 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435592 2024-02-22 22:13:47.32 2024-02-22 22:23:49.055 \N Not find attack light everything different. Certainly travel performance ready. Trut https://example.com/ 20436 435577 435577.435592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.53264385306262 0 \N \N f 0 \N 0 199621135 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 440166 2024-02-27 01:38:58.554 2024-02-27 01:48:59.761 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more e https://example.com/ 671 439295 439295.440166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.22725666313272 0 \N \N f 0 \N 0 228246606 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 440162 2024-02-27 01:32:20.358 2024-02-27 01:42:21.712 \N Again reveal time hot kind own. Believe agreemen https://example.com/ 2703 440056 440056.440162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72395548844687 0 \N \N f 0 \N 0 194771681 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 434797 2024-02-22 11:00:58.38 2024-02-22 11:10:59.721 \N Call system shake up person. Project a https://example.com/ 9159 434795 434795.434797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.60268389290049 0 \N \N f 0 \N 10 106744097 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 440158 2024-02-27 01:27:43.892 2024-02-27 01:37:44.686 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent https://example.com/ 16966 440135 440079.440127.440135.440158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9814906718455 0 \N \N f 0 \N 1 25130677 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 435680 2024-02-23 00:00:40.506 2024-02-23 00:10:42.49 \N Size matter rather result other get air. Rich run direction usually until. Quickly citiz https://example.com/ 6749 435488 435488.435680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9851081934763 0 \N \N f 0 \N 0 19630080 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 440154 2024-02-27 01:22:27.104 2024-02-27 01:32:28.296 \N If lose particular record natural camera good. Season serve someone leg by type its. Ma https://example.com/ 10731 439638 439638.440154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.57779444748609 0 \N \N f 0 \N 0 242815861 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 435957 2024-02-23 08:56:01.733 2024-02-23 09:06:02.866 \N Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consi https://example.com/ 18262 435904 435328.435887.435904.435957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.667805031813984 0 \N \N f 0 \N 4 103989430 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 435526 2024-02-22 21:10:20.541 2024-02-22 21:20:21.369 \N Play single finally social almost serious. Catch b https://example.com/ 19488 435504 435046.435135.435292.435504.435526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8318493836444 0 \N \N f 0 \N 0 233410862 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435584 2024-02-22 22:08:26.881 2024-02-22 22:18:27.981 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film poin https://example.com/ 20152 435572 435217.435275.435277.435295.435425.435556.435559.435568.435572.435584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.503239002385101 0 \N \N f 0 \N 0 186893749 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435575 2024-02-22 21:58:54.042 2024-02-22 22:08:55.332 \N Book e https://example.com/ 9354 434874 433828.434381.434874.435575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2471779823651 0 \N \N f 0 \N 0 72784536 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 440163 2024-02-27 01:34:24.956 2024-02-27 01:44:26.69 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself https://example.com/ 17944 440132 440132.440163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7954084095979 0 \N \N f 0 \N 0 139872956 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 433588 2024-02-21 11:00:05.873 2024-02-21 11:10:06.834 Chance near so Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely https://example.com/ 19037 \N 433588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7291368068975 0 \N \N f 0 \N 68 77243270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436450 2024-02-23 17:20:24.498 2024-02-23 17:30:25.434 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercia https://example.com/ 17109 436439 436273.436439.436450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1559756164771 0 \N \N f 0 \N 0 173884821 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 435559 2024-02-22 21:44:17.942 2024-02-22 21:54:19.288 \N News half employee re https://example.com/ 18139 435556 435217.435275.435277.435295.435425.435556.435559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4282699918684 0 \N \N f 0 \N 3 79139409 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 436085 2024-02-23 12:12:39.398 2024-02-23 12:22:41.056 \N Prevent machine source white and. Fact togeth https://example.com/ 1454 436066 436066.436085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2371985887733 0 \N \N f 0 \N 0 226388808 0 f f \N \N \N \N 436066 \N 0 0 \N \N f \N 439968 2024-02-26 21:18:30.739 2024-02-26 21:28:32.056 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory https://example.com/ 21522 439295 439295.439968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7415040724762 0 \N \N f 0 \N 1 96259514 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 435521 2024-02-22 21:05:17.931 2024-02-22 21:15:19.62 Deep government cold west. Act computer vote particularly look. Security en Second point director operation. Soon face realize born h https://example.com/ 1105 \N 435521 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.306920772272 0 \N \N f 0 \N 1 208072381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436452 2024-02-23 17:21:07.23 2024-02-23 17:31:08.896 \N Measure enjoy other scientist simple professor better. Check too de https://example.com/ 19500 436341 435690.435929.436271.436341.436452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7901138895346 0 \N \N f 0 \N 2 109178594 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 436214 2024-02-23 13:55:00.235 2024-02-23 14:05:02.065 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain pr https://example.com/ 4014 436204 436177.436203.436204.436214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5742485704035 0 \N \N f 0 \N 2 68323357 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 436552 2024-02-23 18:42:00.174 2024-02-23 18:52:01.968 \N Leave relationship rule rich draw soon protect continue. Internati https://example.com/ 19303 436459 436459.436552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90060860767588 0 \N \N f 0 \N 1 103088199 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 436542 2024-02-23 18:32:26.113 2024-02-23 18:42:27.943 \N Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pa https://example.com/ 18507 436509 436413.436465.436509.436542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3983205819929 0 \N \N f 0 \N 0 9279632 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 435425 2024-02-22 19:20:46.843 2024-02-22 19:30:48.845 \N Newspaper as city reco https://example.com/ 18809 435295 435217.435275.435277.435295.435425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.63182954574074 0 \N \N f 0 \N 6 14786771 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435572 2024-02-22 21:54:44.789 2024-02-22 22:04:46.075 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise tes https://example.com/ 13399 435568 435217.435275.435277.435295.435425.435556.435559.435568.435572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6656216882709 0 \N \N f 0 \N 1 90193537 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435581 2024-02-22 22:06:46.733 2024-02-22 22:16:47.642 \N Scientist light the everything find window issue. Money space https://example.com/ 19103 434837 434837.435581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3143743997956 0 \N \N f 0 \N 0 90080132 0 f f \N \N \N \N 434837 \N 0 0 \N \N f \N 440170 2024-02-27 01:42:18.896 2024-02-27 01:52:20.719 Hundred position re Try hospital student. Stock floor by weight kind i https://example.com/ 11145 \N 440170 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 5.71454702139135 0 \N \N f 0 \N 6 29679470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435585 2024-02-22 22:08:33.259 2024-02-22 22:18:35.12 \N Morning garden personal tax reduce less. Responsibility quite rise available interestin https://example.com/ 5069 435516 435516.435585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60279086381896 0 \N \N f 0 \N 0 227004250 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 435460 2024-02-22 19:48:49.773 2024-02-22 19:58:51.088 \N Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh netwo https://example.com/ 4014 435426 435261.435396.435416.435426.435460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1401585980365 0 \N \N f 0 \N 0 130260266 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435589 2024-02-22 22:11:10.238 2024-02-22 22:21:11.266 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middl https://example.com/ 20117 435046 435046.435589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3818187011623 0 \N \N f 0 \N 0 4344760 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440190 2024-02-27 02:40:18.171 2024-02-27 02:50:19.808 \N Scene relate paper hospital. Star cultural stay https://example.com/ 1611 440073 439082.440073.440190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3634445634026 0 \N \N f 0 \N 0 119609727 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440070 2024-02-26 22:55:02.82 2024-02-26 23:05:04.354 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nGrow challenge small bill sometimes statement enjoy. https://example.com/ 1626 439082 439082.440070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.999099109269 0 \N \N f 0 \N 1 106476167 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440177 2024-02-27 02:02:44.867 2024-02-27 02:12:46.479 \N Fly run executive. Reach next best mac https://example.com/ 20738 440176 440170.440173.440174.440176.440177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35781403801529 0 \N \N f 0 \N 2 30911371 0 f f \N \N \N \N 440170 \N 0 0 \N \N f \N 439124 2024-02-26 11:41:26.019 2024-02-26 11:51:27.925 Common loss oil be. Wrong water cover yet edge trouble. Business Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never. https://example.com/ 2065 \N 439124 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.87622133358651 0 \N \N f 0 \N 0 103411492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435555 2024-02-22 21:40:22.935 2024-02-22 21:50:24.409 \N Milli https://example.com/ 19435 435553 435046.435135.435292.435504.435545.435547.435553.435555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9241277642523 0 \N \N f 0 \N 0 130440081 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435553 2024-02-22 21:39:08.148 2024-02-22 21:49:09.204 \N That very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. https://example.com/ 21274 435547 435046.435135.435292.435504.435545.435547.435553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7956154240979 0 \N \N f 0 \N 1 229266790 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439907 2024-02-26 20:37:59.32 2024-02-26 20:48:00.704 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any https://example.com/ 5775 439806 439806.439907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4841852708445 0 \N \N f 0 \N 0 211420687 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 435254 2024-02-22 17:11:37.957 2024-02-22 17:21:39.616 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major si https://example.com/ 9354 435235 435046.435135.435162.435214.435220.435235.435254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8113881493971 0 \N \N f 0 \N 1 170341213 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440139 2024-02-27 00:50:31.39 2024-02-27 01:00:32.385 She loss lawyer raise without right p Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who e https://example.com/ 1729 \N 440139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5457242668257 0 \N \N f 0 \N 4 201535379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440184 2024-02-27 02:18:22.754 2024-02-27 02:28:24.736 \N Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more https://example.com/ 21619 439917 439917.440184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7298098964227 0 \N \N f 0 \N 0 83126666 0 f f \N \N \N \N 439917 \N 0 0 \N \N f \N 435587 2024-02-22 22:09:35.307 2024-02-22 22:19:37.852 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product https://example.com/ 17082 434469 434469.435587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.92100288612981 0 \N \N f 0 \N 0 242024335 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 435586 2024-02-22 22:09:02.336 2024-02-22 22:19:03.409 \N In grow start way president as compare. Away perform law social research front soon. Own run either right affect abi https://example.com/ 10273 435577 435577.435586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6150935750334 0 \N \N f 0 \N 0 3587152 0 f f \N \N \N \N 435577 \N 0 0 \N \N f \N 435568 2024-02-22 21:51:42.381 2024-02-22 22:01:43.797 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nKey third https://example.com/ 822 435559 435217.435275.435277.435295.435425.435556.435559.435568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6718106736563 0 \N \N f 0 \N 2 80480398 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 440205 2024-02-27 03:04:43.927 2024-02-27 03:14:45.464 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nSomebo https://example.com/ 20183 440187 436405.440181.440187.440205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6370100499233 0 \N \N f 0 \N 0 16504797 0 f f \N \N \N \N 436405 \N 0 0 \N \N f \N 440174 2024-02-27 01:53:43.738 2024-02-27 02:03:45.047 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe par https://example.com/ 5565 440173 440170.440173.440174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7661933244793 0 \N \N f 0 \N 4 63259861 0 f f \N \N \N \N 440170 \N 0 0 \N \N f \N 435647 2024-02-22 23:13:36.149 2024-02-22 23:23:37.649 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothi https://example.com/ 21523 435579 435579.435647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49078130482317 0 \N \N f 0 \N 0 119801645 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 440888 2024-02-27 18:17:49.855 2024-02-27 18:27:51.714 Blood admit none others arm style. Here es Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else. https://example.com/ 1209 \N 440888 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.8891517228424 0 \N \N f 0 \N 1 242555415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440169 2024-02-27 01:41:55.458 2024-02-27 01:51:56.768 \N Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against techn https://example.com/ 2609 439968 439295.439968.440169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5163830763381 0 \N \N f 0 \N 0 93584198 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 441342 2024-02-28 01:25:58.059 2024-02-28 01:35:59.114 \N Rich value involve they almost good. Camera media morning mission late. Work ar https://example.com/ 8004 440985 440985.441342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4131525834225 0 \N \N f 0 \N 0 125493688 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 441046 2024-02-27 20:14:58.475 2024-02-27 20:25:00.126 \N Dark address be federal study. Nice red later season. Chair ago https://example.com/ 12951 440622 440622.441046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06464571883134 0 \N \N f 0 \N 0 141481012 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 441031 2024-02-27 20:06:36.142 2024-02-27 20:16:37.488 \N Meeting expert b https://example.com/ 18330 440622 440622.441031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56483500630619 0 \N \N f 0 \N 0 58072201 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 441220 2024-02-27 23:12:21.542 2024-02-27 23:22:22.474 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care https://example.com/ 20973 441124 441124.441220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7510719036931 0 \N \N f 0 \N 2 203159434 0 f f \N \N \N \N 441124 \N 0 0 \N \N f \N 437200 2024-02-24 13:48:50.749 2024-02-24 13:58:51.777 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone bo https://example.com/ 3506 437037 436977.437037.437200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02943734908568 0 \N \N f 0 \N 0 139722317 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 434878 2024-02-22 12:17:55.767 2024-02-22 12:27:57.097 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop s https://example.com/ 20220 434837 434837.434878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.44691278356621 0 \N \N f 0 \N 1 115842125 0 f f \N \N \N \N 434837 \N 0 0 \N \N f \N 435590 2024-02-22 22:11:41.012 2024-02-22 22:21:43.421 \N Fall health https://example.com/ 13055 435495 435495.435590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9435959739946 0 \N \N f 0 \N 0 97843838 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 440956 2024-02-27 19:15:41.642 2024-02-27 19:25:43.609 \N Moment https://example.com/ 4502 440907 440907.440956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0461554595461777 0 \N \N f 0 \N 0 230848764 0 f f \N \N \N \N 440907 \N 0 0 \N \N f \N 435599 2024-02-22 22:17:39.139 2024-02-22 22:27:41.565 \N Travel watc https://example.com/ 1603 435564 435564.435599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3032418616129 0 \N \N f 0 \N 0 76507144 0 f f \N \N \N \N 435564 \N 0 0 \N \N f \N 434503 2024-02-22 03:10:19.748 2024-02-22 03:20:20.87 \N She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting the https://example.com/ 10821 434278 434278.434503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0068112797019 0 \N \N f 0 \N 27 168635749 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435772 2024-02-23 02:40:28.172 2024-02-23 02:50:29.649 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. https://example.com/ 16042 435622 434278.434503.434522.434598.434602.435622.435772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9751361552497 0 \N \N f 0 \N 5 63446897 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440192 2024-02-27 02:41:54.938 2024-02-27 02:51:56.15 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Of https://example.com/ 17523 440186 440186.440192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2530935112169 0 \N \N f 0 \N 3 177921306 0 f f \N \N \N \N 440186 \N 0 0 \N \N f \N 436609 2024-02-23 20:07:53.521 2024-02-23 20:17:54.566 \N Sta https://example.com/ 1803 436582 436499.436582.436609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6998909011097 0 \N \N f 0 \N 0 90523679 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436676 2024-02-23 21:36:49.634 2024-02-23 21:46:51.094 \N Bring rich describe watch head position team. Common recognize institution tend crime. Ki https://example.com/ 18660 436619 436556.436619.436676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31317972014345 0 \N \N f 0 \N 0 168082667 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 435350 2024-02-22 18:10:58.461 2024-02-22 18:21:00.277 \N Statement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development p https://example.com/ 16598 435217 435217.435350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.65740833026709 0 \N \N f 0 \N 1 57667008 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 439809 2024-02-26 19:33:54.101 2024-02-26 19:43:55.623 \N Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family stud https://example.com/ 1175 439295 439295.439809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.03207811152645 0 \N \N f 0 \N 1 41485884 0 f f \N \N \N \N 439295 \N 0 0 \N \N f \N 440204 2024-02-27 03:04:20.691 2024-02-27 03:14:21.822 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politic https://example.com/ 1584 440056 440056.440204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2117725977088 0 \N \N f 0 \N 0 20665392 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 441310 2024-02-28 00:52:08.981 2024-02-28 01:02:09.812 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manag https://example.com/ 13133 441232 440692.441027.441074.441213.441232.441310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3285457863311 0 \N \N f 0 \N 0 30621393 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 435615 2024-02-22 22:35:25.799 2024-02-22 22:45:27.62 \N Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern charac https://example.com/ 16809 435608 435551.435608.435615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.990213961774 0 \N \N f 0 \N 2 220022403 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 437176 2024-02-24 13:28:23.734 2024-02-24 13:38:24.961 Against involve moment myself without. Get chance walk miss. My p Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough. https://example.com/ 1136 \N 437176 \N \N \N \N \N \N \N \N news \N ACTIVE \N 5.75670083718901 0 \N \N f 0 \N 1 71952532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440178 2024-02-27 02:06:25.84 2024-02-27 02:16:27.044 \N Girl https://example.com/ 9496 439844 439844.440178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5150864596382 0 \N \N f 0 \N 0 172713123 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435562 2024-02-22 21:47:19.999 2024-02-22 21:57:20.919 \N Between buy half story. Buy wh https://example.com/ 1046 435417 434424.435417.435562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9548253118126 0 \N \N f 0 \N 0 40629075 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 435627 2024-02-22 22:49:29.996 2024-02-22 22:59:31.602 \N Go special a bed great same concern. https://example.com/ 20710 434515 434278.434318.434515.435627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9650415334426 0 \N \N f 0 \N 1 238921776 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435644 2024-02-22 23:10:26.839 2024-02-22 23:20:28.141 \N Race civil today. Brothe https://example.com/ 18446 435516 435516.435644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.4602447327706 0 \N \N f 0 \N 1 192632957 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 435582 2024-02-22 22:07:53.291 2024-02-22 22:17:55.658 \N Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure ins https://example.com/ 17696 435574 435551.435574.435582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0469286885412501 0 \N \N f 0 \N 0 104320334 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 440212 2024-02-27 03:29:13.086 2024-02-27 03:39:14.692 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. https://example.com/ 9356 440211 440211.440212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57873218062934 0 \N \N f 0 \N 0 243706823 0 f f \N \N \N \N 440211 \N 0 0 \N \N f \N 439838 2024-02-26 19:52:44.219 2024-02-26 20:02:45.806 \N Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody techno https://example.com/ 16950 439831 439082.439579.439584.439831.439838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05216456133731 0 \N \N f 0 \N 3 108273513 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436647 2024-02-23 20:53:33.471 2024-02-23 21:03:34.874 Until must summer international. W South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical. https://example.com/ 5646 \N 436647 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.22064814576488 0 \N \N f 0 \N 0 249381223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436521 2024-02-23 18:15:29.094 2024-02-23 18:25:30.223 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nPattern fear term. Second always control type movie. Girl at movie card able. A https://example.com/ 8168 436457 435657.436457.436521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8298960321048 0 \N \N f 0 \N 0 21842894 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 440185 2024-02-27 02:21:09.905 2024-02-27 02:31:11.109 Decision budget hit for Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern A https://example.com/ 11417 \N 440185 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 17.2444103974068 0 \N \N f 0 \N 0 49407137 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435605 2024-02-22 22:21:40.209 2024-02-22 22:31:41.489 \N Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus sou https://example.com/ 20963 435487 435328.435487.435605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1907882933254 0 \N \N f 0 \N 4 230746321 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 435607 2024-02-22 22:22:54.774 2024-02-22 22:32:56.107 \N Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cu https://example.com/ 7960 435600 435217.435541.435542.435598.435600.435607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7022556180566 0 \N \N f 0 \N 0 120596840 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435541 2024-02-22 21:21:19.326 2024-02-22 21:31:21.48 \N Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low t https://example.com/ 20613 435217 435217.435541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.719751737225 0 \N \N f 0 \N 4 193510128 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 436489 2024-02-23 17:42:51.287 2024-02-23 17:52:53.691 \N Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nOut quite different term just require. Store thin https://example.com/ 10586 436481 436466.436475.436481.436489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7483261028559 0 \N \N f 0 \N 1 175778877 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 439701 2024-02-26 17:58:52.974 2024-02-26 18:08:55.026 \N Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course https://example.com/ 676 439443 439443.439701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4792950654484 0 \N \N f 0 \N 0 126441911 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 435616 2024-02-22 22:37:28.18 2024-02-22 22:47:29.828 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world https://example.com/ 5757 435579 435579.435616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36657600121289 0 \N \N f 0 \N 0 90509425 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 435489 2024-02-22 20:37:33.574 2024-02-22 20:47:34.867 Health reduce performance body similar light wear this Name everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature. https://example.com/ 5752 \N 435489 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 12.506497685264 0 \N \N f 0 \N 1 17624035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440187 2024-02-27 02:25:20.654 2024-02-27 02:35:22.255 \N Perform might someone represe https://example.com/ 7978 440181 436405.440181.440187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67271973621165 0 \N \N f 0 \N 1 30387042 0 f f \N \N \N \N 436405 \N 0 0 \N \N f \N 435564 2024-02-22 21:50:18.025 2024-02-22 22:00:19.673 Animal character seek song. Compare put sometimes charge once. Need Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out. https://example.com/ 1354 \N 435564 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6662060801635 0 \N \N f 0 \N 1 68689372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435571 2024-02-22 21:52:52.684 2024-02-22 22:02:53.565 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy https://example.com/ 17798 435327 435327.435571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3670925630501 0 \N \N f 0 \N 0 32941716 0 f f \N \N \N \N 435327 \N 0 0 \N \N f \N 432920 2024-02-20 19:25:32.591 2024-02-20 19:35:34.093 Adult carry training two ca We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant. https://example.com/ 7746 \N 432920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.16252906156642 0 \N \N f 0 \N 82 25979678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436405 2024-02-23 16:46:02.21 2024-02-23 16:56:03.485 Foot not wonder myself eat student arrive. Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy. https://example.com/ 5308 \N 436405 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 8.30400101096181 0 \N \N f 0 \N 3 233941343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436628 2024-02-23 20:28:54.373 2024-02-23 20:38:55.752 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect wate https://example.com/ 7773 436620 436523.436620.436628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.10420980784711 0 \N \N f 0 \N 0 208948347 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 435606 2024-02-22 22:22:22.358 2024-02-22 22:32:23.725 \N Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawye https://example.com/ 12921 430940 427762.430940.435606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7101811499517 0 \N \N f 0 \N 0 89131832 0 f f \N \N \N \N 427762 \N 0 0 \N \N f \N 435611 2024-02-22 22:28:00.207 2024-02-22 22:38:01.167 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nMeasure western pretty serious director cou https://example.com/ 18743 435610 435610.435611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7141459749933 0 \N \N f 0 \N 0 9728856 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 440188 2024-02-27 02:27:29.988 2024-02-27 02:37:31.37 \N Authority call evening guess https://example.com/ 1273 440159 440159.440188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.97003366208362 0 \N \N f 0 \N 0 89118231 0 f f \N \N \N \N 440159 \N 0 0 \N \N f \N 439743 2024-02-26 18:39:03.686 2024-02-26 18:49:04.917 \N Skin summer development benefit note soldier. Various https://example.com/ 20276 439673 439082.439092.439673.439743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85759540426373 0 \N \N f 0 \N 0 59755273 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440191 2024-02-27 02:41:15.684 2024-02-27 02:51:16.721 \N Bad half least community race end. Thro https://example.com/ 5308 219168 219168.440191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8982384270974 0 \N \N f 0 \N 0 6823187 0 f f \N \N \N \N 219168 \N 0 0 \N \N f \N 440073 2024-02-26 22:58:22.649 2024-02-26 23:08:24.013 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. https://example.com/ 21406 439082 439082.440073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2755037365562 0 \N \N f 0 \N 1 58664012 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440159 2024-02-27 01:28:14.627 2024-02-27 01:38:16.282 Push floor economy probably reason say rest. We possible reduce how positive Field rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nCheck worry radio fine stuff. Lead least wall course week already. Shak https://example.com/ 5171 \N 440159 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 1.83626820114448 0 \N \N f 0 \N 1 230836920 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435621 2024-02-22 22:43:55.058 2024-02-22 22:53:56.757 \N Poor appear go since involve. Ho https://example.com/ 14465 435619 435328.435487.435605.435612.435619.435621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90684943603964 0 \N \N f 0 \N 0 182710263 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 440197 2024-02-27 02:48:45.755 2024-02-27 02:58:46.961 \N Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few fe https://example.com/ 2156 440195 440186.440192.440195.440197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3116105082851 0 \N \N f 0 \N 0 99475230 0 f f \N \N \N \N 440186 \N 0 0 \N \N f \N 440195 2024-02-27 02:43:21.091 2024-02-27 02:53:23.29 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nBring rich describe watch head p https://example.com/ 13042 440192 440186.440192.440195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6819700628094 0 \N \N f 0 \N 1 108404481 0 f f \N \N \N \N 440186 \N 0 0 \N \N f \N 440186 2024-02-27 02:25:05.257 2024-02-27 02:35:06.283 Perform might someone represent where Top however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. D https://example.com/ 2519 \N 440186 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 19.0576805201997 0 \N \N f 0 \N 4 230988608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434813 2024-02-22 11:09:18.54 2024-02-22 11:19:19.475 Health reduce performance body similar light wear this. Trai Common loss oil be. Wrong water co https://example.com/ 16424 \N 434813 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 11.466009717739 0 \N \N f 0 \N 4 201468698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441121 2024-02-27 21:33:09.061 2024-02-27 21:43:10.181 \N Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great gro https://example.com/ 9171 441087 441087.441121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1247831134282 0 \N \N f 0 \N 1 237968322 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441102 2024-02-27 21:13:27.845 2024-02-27 21:23:29.165 \N Technology instead seat like far. Door produce too Democrat p https://example.com/ 20310 440693 440132.440246.440693.441102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.97068707861986 0 \N \N f 0 \N 0 215610104 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 439897 2024-02-26 20:33:24.96 2024-02-26 20:43:26.182 \N Sort thus staff hard network character production million. House develop theory may Congress direction https://example.com/ 18717 439729 439729.439897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4656517802269 0 \N \N f 0 \N 0 143349868 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 435007 2024-02-22 14:07:18.921 2024-02-22 14:17:20.313 Power this as. Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nBest choice maintain she else member. Healt https://example.com/ 21556 \N 435007 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 7.86198591422263 0 \N \N f 0 \N 0 199424936 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435620 2024-02-22 22:43:22.061 2024-02-22 22:53:24.02 Night on mention rather na Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospit https://example.com/ 20987 \N 435620 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.8076151226633 0 \N \N f 0 \N 0 82263674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442097 2024-02-28 14:56:32.148 2024-02-28 15:06:34.322 \N Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality s https://example.com/ 18641 441854 441854.442097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0110939248745 0 \N \N f 0 \N 0 89783664 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 435632 2024-02-22 22:55:15.335 2024-02-22 23:05:16.708 \N Professor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life ex https://example.com/ 3342 435458 435458.435632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63943866363707 0 \N \N f 0 \N 0 111863890 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 435635 2024-02-22 22:56:46.652 2024-02-22 23:06:47.478 \N World ki https://example.com/ 10094 435359 435359.435635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.11305685470847 0 \N \N f 0 \N 0 188603537 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435640 2024-02-22 23:03:45.394 2024-02-22 23:13:46.398 \N Skin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond https://example.com/ 5003 435631 435610.435631.435640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32883631612125 0 \N \N f 0 \N 0 153479075 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 435625 2024-02-22 22:47:58.728 2024-02-22 22:58:01.188 \N Area series street exist cold reflect thought. Imagine else activity probably anal https://example.com/ 16847 435226 435226.435625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01649948390254 0 \N \N f 0 \N 0 194020989 0 f f \N \N \N \N 435226 \N 0 0 \N \N f \N 435532 2024-02-22 21:15:07.007 2024-02-22 21:25:07.951 \N Them social create approach difficult what. https://example.com/ 17673 435339 435217.435339.435532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7887935843251 0 \N \N f 0 \N 0 25858669 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 434807 2024-02-22 11:06:34.745 2024-02-22 11:16:36.361 Trade guy water between. Whom structure design Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place. https://example.com/ 12169 \N 434807 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.52605117635548 0 \N \N f 0 \N 3 193568809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440207 2024-02-27 03:17:08.701 2024-02-27 03:27:10.386 \N Full both sound century close card. Anyone occur number receive one performance art. Very friend https://example.com/ 14503 440206 440206.440207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2699779372666 0 \N \N f 0 \N 0 82383265 0 f f \N \N \N \N 440206 \N 0 0 \N \N f \N 435646 2024-02-22 23:11:34.373 2024-02-22 23:21:35.911 \N Director far fact order bit c https://example.com/ 18658 435639 435639.435646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.215637484891644 0 \N \N f 0 \N 4 103719574 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 440206 2024-02-27 03:05:20.442 2024-02-27 03:15:21.613 Toward position themselves news unit. M Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter. https://example.com/ 3360 \N 440206 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.547114633382 0 \N \N f 0 \N 6 85938068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441315 2024-02-28 00:58:42.481 2024-02-28 01:08:43.757 Total necessary thought task capital nothin Power herself life always. Specific but learn its medical. Fill beautiful analysis do dra https://example.com/ 20162 \N 441315 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.17172222952706 0 \N \N f 0 \N 2 199482629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437182 2024-02-24 13:36:19.143 2024-02-24 13:46:20.616 \N Experience base structure our question reach investment. https://example.com/ 20058 437165 437044.437078.437151.437165.437182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3789472406686 0 \N \N f 0 \N 1 108916585 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 435683 2024-02-23 00:02:46.603 2024-02-23 00:12:48.296 \N Until must summer international. Would child https://example.com/ 2056 435596 435596.435683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.734288542608752 0 \N \N f 0 \N 0 76947015 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N 435723 2024-02-23 00:52:41.292 2024-02-23 01:02:42.581 \N Thing type great Mr. Choose cover medical bed https://example.com/ 2508 435392 435392.435723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9588367832984 0 \N \N f 0 \N 0 249618308 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 435671 2024-02-22 23:52:31.026 2024-02-23 00:02:32.142 Before evening her Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top https://example.com/ 9362 \N 435671 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.7577720367399 0 \N \N f 0 \N 0 44872865 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437186 2024-02-24 13:37:07.382 2024-02-24 13:47:08.266 \N Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve https://example.com/ 19044 436759 436759.437186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6374236896335 0 \N \N f 0 \N 0 46072541 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 435117 2024-02-22 15:42:53.968 2024-02-22 15:52:55.1 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil windo https://example.com/ 17707 434795 434795.435117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40366201409653 0 \N \N f 0 \N 1 28221577 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435636 2024-02-22 22:58:08.27 2024-02-22 23:08:09.625 \N Need movie coach nation news in about responsibility. Hospit https://example.com/ 19941 435117 434795.435117.435636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7423975324886 0 \N \N f 0 \N 0 232641122 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435651 2024-02-22 23:22:35.181 2024-02-22 23:32:36.305 \N Not find attack light everything different. Certainly travel performance ready. Truth father design green require ta https://example.com/ 9334 435514 435261.435401.435409.435514.435651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.602961196307774 0 \N \N f 0 \N 0 88165829 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435514 2024-02-22 20:56:24.698 2024-02-22 21:06:25.649 \N Condition lose result detail final will. Require not hot firm glass well. Mind https://example.com/ 21395 435409 435261.435401.435409.435514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8367531460173 0 \N \N f 0 \N 1 25621811 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435645 2024-02-22 23:10:58.191 2024-02-22 23:20:59.404 \N Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nProject them draw walk if significant wrong into. Course even believe https://example.com/ 2330 415012 415012.435645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67689573825784 0 \N \N f 0 \N 0 174985277 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N 435505 2024-02-22 20:44:59.258 2024-02-22 20:55:00.943 \N Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point aga https://example.com/ 1602 435497 435497.435505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1895884909021 0 \N \N f 0 \N 4 182222028 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 437229 2024-02-24 14:08:09.533 2024-02-24 14:18:10.246 \N Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussio https://example.com/ 1000 437222 437044.437158.437204.437217.437222.437229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0389056952343 0 \N \N f 0 \N 0 126300176 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437235 2024-02-24 14:16:16.888 2024-02-24 14:26:17.926 \N Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book https://example.com/ 10530 437008 437008.437235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4981646487777 0 \N \N f 0 \N 0 14791082 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 435499 2024-02-22 20:41:02.525 2024-02-22 20:51:03.323 \N Play director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. O https://example.com/ 1713 435481 435458.435465.435468.435481.435499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.070327388601 0 \N \N f 0 \N 0 210898003 0 f f \N \N \N \N 435458 \N 0 0 \N \N f \N 440017 2024-02-26 21:52:39.308 2024-02-26 22:02:40.524 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base langu https://example.com/ 20222 439822 439822.440017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8672130898712 0 \N \N f 0 \N 1 155559739 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 440214 2024-02-27 03:30:30.515 2024-02-27 03:40:31.373 \N Recent work wife light adult yard. Ch https://example.com/ 19154 440017 439822.440017.440214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3904715247472 0 \N \N f 0 \N 0 215203150 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 440237 2024-02-27 05:00:04.519 2024-02-27 05:10:06.826 Drug life detail letter major himself so. Politics participa \N https://example.com/ 13100 \N 440237 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.37359715471145 0 \N \N f 0 \N 1 55949241 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440220 2024-02-27 03:43:19.317 2024-02-27 03:53:20.236 Rule hope accept blue. Firm performance go office Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand https://example.com/ 14857 \N 440220 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7842820399456 0 \N \N f 0 \N 1 50465392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435488 2024-02-22 20:35:45.342 2024-02-22 20:45:46.837 Boy force agency change s Keep third police section avoid down. Bank defense seven why. Participant which https://example.com/ 20897 \N 435488 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.7438111433765 0 \N \N f 0 \N 17 205275067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440198 2024-02-27 02:49:39.828 2024-02-27 02:59:41.233 \N Name everyone employee visit wonder serious. Everything necessary ma https://example.com/ 16347 440192 440186.440192.440198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.494370938215 0 \N \N f 0 \N 0 28745152 0 f f \N \N \N \N 440186 \N 0 0 \N \N f \N 440193 2024-02-27 02:42:46.965 2024-02-27 02:52:47.956 \N In grow start way president as compare. Away perform law s https://example.com/ 13798 219168 219168.440193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09659404310781 0 \N \N f 0 \N 0 82649189 0 f f \N \N \N \N 219168 \N 0 0 \N \N f \N 440221 2024-02-27 03:54:15.275 2024-02-27 04:04:16.809 \N Recent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effec https://example.com/ 698 440211 440211.440221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2520953938816 0 \N \N f 0 \N 0 130360505 0 f f \N \N \N \N 440211 \N 0 0 \N \N f \N 435659 2024-02-22 23:28:47.461 2024-02-22 23:38:49.227 Main ball collection eye. Whatever test player carry. Tree ok Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may o https://example.com/ 18945 \N 435659 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.6874584359924 0 \N \N f 0 \N 0 120657104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441146 2024-02-27 22:00:06.519 2024-02-27 22:00:12.14 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nRealize store scie https://example.com/ 2502 441145 441145.441146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4368786484663 0 \N \N f 0 \N 0 28898073 0 f f \N \N \N \N 441145 \N 0 0 \N \N f \N 435703 2024-02-23 00:26:30.795 2024-02-23 00:36:32.793 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nAgency party https://example.com/ 19987 434795 434795.435703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4513373601545 0 \N \N f 0 \N 0 128744334 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439673 2024-02-26 17:34:51.897 2024-02-26 17:44:53.004 \N Structure ever film speech along somebod https://example.com/ 1823 439092 439082.439092.439673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8929943318387 0 \N \N f 0 \N 1 189485537 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435668 2024-02-22 23:50:26.96 2024-02-23 00:00:28.574 \N Word around effect g https://example.com/ 15115 435495 435495.435668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.56192392193348 0 \N \N f 0 \N 0 151803656 0 f f \N \N \N \N 435495 \N 0 0 \N \N f \N 435133 2024-02-22 15:54:39.683 2024-02-22 16:04:41.491 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nCustomer reach nic https://example.com/ 1291 435115 435115.435133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7916035607991 0 \N \N f 0 \N 5 182531201 0 f f \N \N \N \N 435115 \N 0 0 \N \N f \N 440693 2024-02-27 15:43:23.268 2024-02-27 15:53:24.496 \N Effect indeed easy never instead even force. Economy use ru https://example.com/ 20006 440246 440132.440246.440693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8154640710258 0 \N \N f 0 \N 1 55678409 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 435744 2024-02-23 01:24:54.349 2024-02-23 01:34:55.774 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Wel https://example.com/ 6419 435735 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88441334128139 0 \N \N f 0 \N 3 119359293 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440223 2024-02-27 04:00:04.988 2024-02-27 04:10:05.968 Answer party get head Democrat. Marria \N https://example.com/ 16350 \N 440223 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.98390361589 0 \N \N f 0 \N 1 243789075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435115 2024-02-22 15:39:18.566 2024-02-22 15:49:20.6 Need movie coach nation news in about res Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material https://example.com/ 12609 \N 435115 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.014456010774 0 \N \N f 0 \N 7 72421202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440224 2024-02-27 04:00:05.346 2024-02-27 04:00:11.41 \N Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lo https://example.com/ 11430 440223 440223.440224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65759497843751 0 \N \N f 0 \N 0 238362167 0 f f \N \N \N \N 440223 \N 0 0 \N \N f \N 440202 2024-02-27 02:58:30.246 2024-02-27 03:08:31.825 \N Majority foot simply point day chanc https://example.com/ 17041 439729 439729.440202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5559920381022 0 \N \N f 0 \N 0 144691657 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 440196 2024-02-27 02:45:11.357 2024-02-27 02:55:13.273 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank https://example.com/ 9026 440182 440132.440175.440182.440196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1488349506134 0 \N \N f 0 \N 0 18393419 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 435673 2024-02-22 23:54:46.361 2024-02-23 00:04:48.244 White have loss parent whole statement. Find couple next rel Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nTen throw trip up regi https://example.com/ 18518 \N 435673 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2698664945989 0 \N \N f 0 \N 0 206077030 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440209 2024-02-27 03:21:01.901 2024-02-27 03:31:03.884 \N Them social create approach difficult what. Include idea source price baby https://example.com/ 14990 439390 439390.440209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.36559065165181 0 \N \N f 0 \N 0 186281146 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 435638 2024-02-22 23:01:21.17 2024-02-22 23:11:22.917 \N Science sea sport te https://example.com/ 10719 435516 435516.435638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7645509962793 0 \N \N f 0 \N 0 6906193 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 435670 2024-02-22 23:52:08.198 2024-02-23 00:02:09.294 \N Station nothin https://example.com/ 16348 435644 435516.435644.435670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8397031086072 0 \N \N f 0 \N 0 19482686 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 435713 2024-02-23 00:39:46.649 2024-02-23 00:49:48.65 \N Individual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. H https://example.com/ 16679 435622 434278.434503.434522.434598.434602.435622.435713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6368139896138 0 \N \N f 0 \N 10 125947796 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435664 2024-02-22 23:33:56.003 2024-02-22 23:43:57.563 \N Myself measure first such real consumer. Only for author agree position couple. Remain https://example.com/ 9354 435516 435516.435664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.766870518443 0 \N \N f 0 \N 3 2660959 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 440902 2024-02-27 18:31:35.463 2024-02-27 18:41:36.264 Stay worry day kn At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including tow https://example.com/ 1495 \N 440902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3135208122593 0 \N \N f 0 \N 4 42486383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440908 2024-02-27 18:36:02.103 2024-02-27 18:46:04.237 \N Republican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress https://example.com/ 5455 440527 440527.440908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4102486910245 0 \N \N f 0 \N 0 135475409 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440890 2024-02-27 18:20:20.237 2024-02-27 18:30:21.947 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospi https://example.com/ 8498 440633 440633.440890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.600441511797 0 \N \N f 0 \N 1 64487775 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 442919 2024-02-29 00:24:17.549 2024-02-29 00:34:18.761 Natural Mrs quickly financial. Successful most rul Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his https://example.com/ 21563 \N 442919 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 28.8459748836944 0 \N \N f 0 \N 3 204587643 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435569 2024-02-22 21:51:50.554 2024-02-22 22:01:51.844 \N Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone no https://example.com/ 19785 435217 435217.435569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6882249443286 0 \N \N f 0 \N 0 112730645 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 442999 2024-02-29 02:19:28.109 2024-02-29 02:29:29.296 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent fini https://example.com/ 1959 442996 442985.442989.442996.442999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4244452931061 0 \N \N f 0 \N 0 72453112 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 442391 2024-02-28 16:56:10.617 2024-02-28 17:06:11.917 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class https://example.com/ 1817 442163 442163.442391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7184764986965 0 \N \N f 0 \N 1 177122778 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443032 2024-02-29 03:06:44.217 2024-02-29 03:16:45.795 \N Article discussion court site share past. Hot character serve box four. Lose point visit include the https://example.com/ 1474 442464 442163.442464.443032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.19488232557923 0 \N \N f 0 \N 0 88348116 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 435693 2024-02-23 00:17:46.66 2024-02-23 00:27:47.766 \N Think month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Pr https://example.com/ 18280 434440 434440.435693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6112582044923 0 \N \N f 0 \N 0 222932171 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 439772 2024-02-26 19:05:34.239 2024-02-26 19:15:35.754 \N Think month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband tr https://example.com/ 2256 439744 438936.439563.439744.439772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8629539686377 0 \N \N f 0 \N 0 233281048 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 435609 2024-02-22 22:26:15.449 2024-02-22 22:36:16.778 \N Whether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside i https://example.com/ 14308 435030 435030.435609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.60249099591024 0 \N \N f 0 \N 2 131120451 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435702 2024-02-23 00:26:16.118 2024-02-23 00:36:17.564 \N Race report base really very a https://example.com/ 20470 435698 435690.435698.435702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6394348527323 0 \N \N f 0 \N 0 181877354 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 435678 2024-02-22 23:59:29.03 2024-02-23 00:09:29.756 \N Right side resource get. Result south firm https://example.com/ 13753 435654 435046.435135.435162.435214.435220.435235.435649.435652.435654.435678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5181320021 0 \N \N f 0 \N 0 243950563 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435652 2024-02-22 23:23:51.709 2024-02-22 23:33:53.297 \N Serv https://example.com/ 6361 435649 435046.435135.435162.435214.435220.435235.435649.435652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8486817045344 0 \N \N f 0 \N 2 207920777 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440238 2024-02-27 05:00:04.919 2024-02-27 05:00:10.067 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree ba https://example.com/ 644 440237 440237.440238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7635280230477 0 \N \N f 0 \N 0 100714504 0 f f \N \N \N \N 440237 \N 0 0 \N \N f \N 440248 2024-02-27 05:29:35.209 2024-02-27 05:39:37.216 \N Bad half least community race end. Through Democrat y https://example.com/ 20376 440243 440132.440243.440248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67489631069625 0 \N \N f 0 \N 1 1197226 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440218 2024-02-27 03:33:11.529 2024-02-27 03:43:13.703 \N Down item fund list company. B https://example.com/ 19541 438965 438965.440218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7357719388462 0 \N \N f 0 \N 0 73600494 0 f f \N \N \N \N 438965 \N 0 0 \N \N f \N 435691 2024-02-23 00:13:48.778 2024-02-23 00:23:50.386 \N North beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation beh https://example.com/ 12721 435679 435679.435691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5221641203183 0 \N \N f 0 \N 1 72747638 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 435688 2024-02-23 00:12:25.999 2024-02-23 00:22:27.329 \N Long interesting https://example.com/ 16309 435580 435488.435580.435688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6411261794251 0 \N \N f 0 \N 0 123970772 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 440947 2024-02-27 19:06:00.996 2024-02-27 19:16:02.212 \N Small newspaper answer adult https://example.com/ 21427 440802 440802.440947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3523404810225 0 \N \N f 0 \N 0 42099520 0 f f \N \N \N \N 440802 \N 0 0 \N \N f \N 441139 2024-02-27 21:48:43.726 2024-02-27 21:58:44.995 \N Probably production be https://example.com/ 1039 441002 440692.441002.441139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74231295449964 0 \N \N f 0 \N 0 50439818 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 444276 2024-02-29 20:58:19.835 2024-02-29 21:08:28.251 \N Ri https://example.com/ 20218 444256 444168.444176.444184.444250.444256.444276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1884431619327 0 \N \N f 0 \N 0 141239852 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 438965 2024-02-26 07:57:11.824 2024-02-26 08:07:14.29 Which only rich free agreement. Likely court exist south us rock. Base admit p Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer. https://example.com/ 2508 \N 438965 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 13.3042297383284 0 \N \N f 0 \N 1 180369644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435629 2024-02-22 22:50:34.725 2024-02-22 23:00:36.005 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice https://example.com/ 21605 435488 435488.435629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5615399893624 0 \N \N f 0 \N 0 94380168 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 440267 2024-02-27 06:07:59.538 2024-02-27 06:18:01.157 \N Very yes customer public music example expert. Fear would much. Necessary leader https://example.com/ 9107 440266 440266.440267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7698116801641 0 \N \N f 0 \N 10 37683546 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440550 2024-02-27 13:36:12.598 2024-02-27 13:46:14.258 \N Wish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure ear https://example.com/ 4062 440472 440472.440550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.01524386083552 0 \N \N f 0 \N 0 210764281 0 f f \N \N \N \N 440472 \N 0 0 \N \N f \N 435689 2024-02-23 00:13:21.819 2024-02-23 00:23:23.239 \N Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion f https://example.com/ 2042 435530 435530.435689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1137786042045 0 \N \N f 0 \N 0 240223228 0 f f \N \N \N \N 435530 \N 0 0 \N \N f \N 435677 2024-02-22 23:59:10.273 2024-02-23 00:09:11.55 \N Her particular kind sound hard big. Area door model need phone. C https://example.com/ 19615 435664 435516.435664.435677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9433628242768 0 \N \N f 0 \N 1 50073531 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 434522 2024-02-22 03:57:28.841 2024-02-22 04:07:31.126 \N Act lay son hear. Apply professi https://example.com/ 20267 434503 434278.434503.434522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2150948674485 0 \N \N f 0 \N 25 214623646 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435697 2024-02-23 00:23:39.494 2024-02-23 00:33:40.915 Scientist our accept million student where bring trade. S Today area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost. https://example.com/ 20301 \N 435697 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 23.888872516239 0 \N \N f 0 \N 0 103575493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435686 2024-02-23 00:05:01.248 2024-02-23 00:15:02.512 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those la https://example.com/ 7809 434814 434814.435686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0678721415141 0 \N \N f 0 \N 0 157659084 0 f f \N \N \N \N 434814 \N 0 0 \N \N f \N 440236 2024-02-27 04:55:12.21 2024-02-27 05:05:13.295 \N Know son future https://example.com/ 21387 440206 440206.440236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9918321925876 0 \N \N f 0 \N 1 15701408 0 f f \N \N \N \N 440206 \N 0 0 \N \N f \N 435692 2024-02-23 00:13:57.687 2024-02-23 00:23:59.212 \N Popular entire medical office can. Those begin for own offer https://example.com/ 4624 435515 435314.435320.435335.435515.435692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.19553934168262 0 \N \N f 0 \N 0 71005452 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 440201 2024-02-27 02:57:57.526 2024-02-27 03:07:58.985 Any new necessary low. Option win do almost. Performance A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city. https://example.com/ 15577 \N 440201 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 5.03678217211135 0 \N \N f 0 \N 0 5385706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440253 2024-02-27 05:37:55.793 2024-02-27 05:47:57.466 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent rem https://example.com/ 20788 440056 440056.440253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.248546332654 0 \N \N f 0 \N 0 114944705 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 443016 2024-02-29 02:49:07.151 2024-02-29 02:59:08.538 \N Result treatment smile capital teache https://example.com/ 15617 442848 442710.442848.443016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31192313493636 0 \N \N f 0 \N 0 207580642 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443002 2024-02-29 02:21:27.687 2024-02-29 02:31:29.549 \N Billion deep other first financial sometimes. Successful o https://example.com/ 20669 442391 442163.442391.443002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5148784440501 0 \N \N f 0 \N 0 172147246 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443004 2024-02-29 02:24:11.813 2024-02-29 02:34:13.608 \N Common loss oil be. Wrong water cover yet edg https://example.com/ 8380 442891 442781.442872.442891.443004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3706370710268 0 \N \N f 0 \N 0 66828329 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 435653 2024-02-22 23:24:39.817 2024-02-22 23:34:40.788 Method media and me. Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might https://example.com/ 14857 \N 435653 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.85164631476346 0 \N \N f 0 \N 1 25230839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435701 2024-02-23 00:25:33.838 2024-02-23 00:35:35.151 \N Big field certainly community. https://example.com/ 20681 435653 435653.435701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1221959602322 0 \N \N f 0 \N 0 144176052 0 f f \N \N \N \N 435653 \N 0 0 \N \N f \N 435628 2024-02-22 22:50:01.055 2024-02-22 23:00:02.118 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself re https://example.com/ 20706 435615 435551.435608.435615.435628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0962726531037 0 \N \N f 0 \N 1 40375771 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 439094 2024-02-26 11:17:04.086 2024-02-26 11:27:05.596 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer f https://example.com/ 18494 439077 439029.439077.439094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43795195125126 0 \N \N f 0 \N 3 192192673 0 f f \N \N \N \N 439029 \N 0 0 \N \N f \N 435714 2024-02-23 00:44:04.443 2024-02-23 00:54:05.848 South little trip identify similar. Because accept leave line a A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material. https://example.com/ 15239 \N 435714 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 23.7055900844095 0 \N \N f 0 \N 0 118118296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440232 2024-02-27 04:43:48.626 2024-02-27 04:53:50.296 \N Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hund https://example.com/ 20912 429291 429291.440232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86130043883836 0 \N \N f 0 \N 0 133158978 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 440226 2024-02-27 04:08:34.217 2024-02-27 04:18:36.101 \N Seven which nature charge. Today range along want forget. City story role assume how hard de https://example.com/ 4076 440211 440211.440226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4514458121737 0 \N \N f 0 \N 0 5773540 0 f f \N \N \N \N 440211 \N 0 0 \N \N f \N 435649 2024-02-22 23:20:35.488 2024-02-22 23:30:36.933 \N Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Mi https://example.com/ 18005 435235 435046.435135.435162.435214.435220.435235.435649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1777859533577 0 \N \N f 0 \N 5 89212832 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435698 2024-02-23 00:24:41.059 2024-02-23 00:34:42.352 \N Source sci https://example.com/ 19864 435690 435690.435698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36370967888457 0 \N \N f 0 \N 1 114644253 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 435707 2024-02-23 00:30:20.779 2024-02-23 00:40:22.453 \N Increase consumer itself trade ahead https://example.com/ 20841 435646 435639.435646.435707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77407986173102 0 \N \N f 0 \N 1 55270280 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 435719 2024-02-23 00:49:16.365 2024-02-23 00:59:17.404 \N Writer everyone voice read. Contro https://example.com/ 6149 435639 435639.435719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.83267260055626 0 \N \N f 0 \N 1 77871320 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 440225 2024-02-27 04:08:19.726 2024-02-27 04:18:20.808 \N Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perf https://example.com/ 19961 439392 439390.439392.440225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.63131143007003 0 \N \N f 0 \N 0 224330123 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 435706 2024-02-23 00:30:13.634 2024-02-23 00:40:15.226 \N Though eye claim side g https://example.com/ 17171 435516 435516.435706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1853228008497 0 \N \N f 0 \N 0 58792935 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 435700 2024-02-23 00:25:17.795 2024-02-23 00:35:19.292 \N Myself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person vo https://example.com/ 1272 435641 435497.435505.435641.435700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.54816364130707 0 \N \N f 0 \N 0 202921914 0 f f \N \N \N \N 435497 \N 0 0 \N \N f \N 440234 2024-02-27 04:46:45.17 2024-02-27 04:56:46.767 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Aro https://example.com/ 5708 440059 439946.439996.440059.440234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.888630602103 0 \N \N f 0 \N 0 189447558 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 440240 2024-02-27 05:09:32.382 2024-02-27 05:19:33.887 \N Artist sound return ful https://example.com/ 954 439351 439082.439351.440240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4898224790807 0 \N \N f 0 \N 1 78388411 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440199 2024-02-27 02:52:29.147 2024-02-27 03:02:30.36 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop lea https://example.com/ 11897 440179 440132.440179.440199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.14411459900823 0 \N \N f 0 \N 0 208578394 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 435720 2024-02-23 00:49:53.386 2024-02-23 00:59:54.765 \N Blood bill here traditional upon. Leg them lead garden hi https://example.com/ 9669 435716 434278.434503.434522.434598.434602.435622.435713.435716.435720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.20338235322316 0 \N \N f 0 \N 0 32794923 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440246 2024-02-27 05:25:37.284 2024-02-27 05:35:39.047 \N Possible late blood always bit. Plant in media population everyone. Attorney impac https://example.com/ 21067 440132 440132.440246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0312625162798 0 \N \N f 0 \N 2 18317996 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 435717 2024-02-23 00:47:40.926 2024-02-23 00:57:42.334 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return lef https://example.com/ 859 435715 434278.434503.434522.434598.434602.435622.435623.435715.435717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3898897544206 0 \N \N f 0 \N 0 41155941 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440126 2024-02-27 00:26:30.127 2024-02-27 00:36:31.203 \N Health catch toward hair I. Amount to smile sort attack. Best https://example.com/ 15560 439946 439946.440126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2192380321493 0 \N \N f 0 \N 0 29966798 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 440261 2024-02-27 05:53:08.787 2024-02-27 06:03:09.928 \N South amount subject easy office. Sea force thousan https://example.com/ 20110 440258 440170.440173.440174.440176.440177.440258.440261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1058799825268 0 \N \N f 0 \N 0 67897041 0 f f \N \N \N \N 440170 \N 0 0 \N \N f \N 439181 2024-02-26 12:37:05.515 2024-02-26 12:47:07.114 \N Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Wil https://example.com/ 12779 439075 438936.439016.439075.439181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15604182972123 0 \N \N f 0 \N 3 70446393 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 435737 2024-02-23 01:07:43.622 2024-02-23 01:17:44.676 Small enjoy manage service individual down. Season scie Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog. https://example.com/ 10849 \N 435737 \N \N \N \N \N \N \N \N art \N ACTIVE \N 27.1122443865291 0 \N \N f 0 \N 0 171280502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435727 2024-02-23 00:57:22.309 2024-02-23 01:07:23.499 \N Research either follow across either investment church. Tough avoid ca https://example.com/ 1726 434558 434278.434558.435727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8509177279655 0 \N \N f 0 \N 0 166018805 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435738 2024-02-23 01:09:50.824 2024-02-23 01:19:51.878 Method same car buy side. Price order rest Congress da West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program. https://example.com/ 20514 \N 435738 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 28.7348142968704 0 \N \N f 0 \N 0 153548872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440233 2024-02-27 04:44:31.013 2024-02-27 04:54:32.858 \N Both tell huge fine yet fall crime. Impact meet g https://example.com/ 12819 440132 440132.440233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.81476694777747 0 \N \N f 0 \N 0 49635790 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440211 2024-02-27 03:24:11.791 2024-02-27 03:34:12.997 Measure would expert nation two. Prove at together various style. Garden yard te Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. https://example.com/ 19905 \N 440211 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8905930385392 0 \N \N f 0 \N 4 82628274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440227 2024-02-27 04:11:50.295 2024-02-27 04:21:52.229 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simp https://example.com/ 20433 219168 219168.440227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7679698918654 0 \N \N f 0 \N 0 112783357 0 f f \N \N \N \N 219168 \N 0 0 \N \N f \N 440916 2024-02-27 18:39:23.599 2024-02-27 18:49:24.691 \N Race civil today. Brother record Mr drive for worker. Set w https://example.com/ 19435 440898 440898.440916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2362928834685 0 \N \N f 0 \N 2 74403395 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 435474 2024-02-22 20:11:18.827 2024-02-22 20:21:20.645 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it ke https://example.com/ 4768 435412 435412.435474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2829650765639 0 \N \N f 0 \N 1 61867878 0 f f \N \N \N \N 435412 \N 0 0 \N \N f \N 435739 2024-02-23 01:10:31.915 2024-02-23 01:20:33.519 \N Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nRate thought reason six suggest help. Hotel per se https://example.com/ 16848 435735 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6221027451491 0 \N \N f 0 \N 0 28628429 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435742 2024-02-23 01:18:24.903 2024-02-23 01:28:26.017 \N With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long succe https://example.com/ 1596 435516 435516.435742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.69621170836126 0 \N \N f 0 \N 0 193496872 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 435741 2024-02-23 01:18:22.768 2024-02-23 01:28:24.077 \N Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nBegin lawyer shoulder couple whom dri https://example.com/ 9985 435488 435488.435741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7549333108951 0 \N \N f 0 \N 0 208019951 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 435178 2024-02-22 16:21:38.05 2024-02-22 16:31:39.277 \N Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population te https://example.com/ 11648 435030 435030.435178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.99352675394074 0 \N \N f 0 \N 0 13205916 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435766 2024-02-23 02:30:15.254 2024-02-23 02:40:17.796 \N Past everybody chance health. https://example.com/ 8168 435757 434278.434503.434522.434598.434602.435622.435713.435716.435722.435735.435744.435757.435766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7917065008212 0 \N \N f 0 \N 0 238929467 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435825 2024-02-23 04:15:31.338 2024-02-23 04:25:32.347 \N World kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should https://example.com/ 7772 259258 259258.435825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0947015202015 0 \N \N f 0 \N 0 38950301 0 f f \N \N \N \N 259258 \N 0 0 \N \N f \N 436431 2024-02-23 17:09:33.653 2024-02-23 17:19:34.968 Top however address today. Century human land prove should. Executive devel Positive return fr https://example.com/ 18809 \N 436431 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.1942084414878 0 \N \N f 0 \N 0 199886091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439895 2024-02-26 20:31:26.112 2024-02-26 20:41:28.159 Race civil today. Brother record Mr drive for worker. Set whether indica A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel. https://example.com/ 6191 \N 439895 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 9.57174465562964 0 \N \N f 0 \N 1 247997662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442114 2024-02-28 15:04:51.956 2024-02-28 15:14:54.095 \N Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish men https://example.com/ 16270 441660 441660.442114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99386900495458 0 \N \N f 0 \N 0 191784984 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 435756 2024-02-23 02:00:51.089 2024-02-23 02:10:53.769 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold s https://example.com/ 18453 435504 435046.435135.435292.435504.435756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3705004785564 0 \N \N f 0 \N 5 241686338 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440231 2024-02-27 04:40:33.198 2024-02-27 04:50:34.907 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sig https://example.com/ 16769 439139 439139.440231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9307284526602 0 \N \N f 0 \N 0 230365744 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 440258 2024-02-27 05:47:30.963 2024-02-27 05:57:33.373 \N Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nRealize store science for pass. Sit decision necessary few above why. Consumer di https://example.com/ 6749 440177 440170.440173.440174.440176.440177.440258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8599442389986 0 \N \N f 0 \N 1 61069193 0 f f \N \N \N \N 440170 \N 0 0 \N \N f \N 440244 2024-02-27 05:23:52.156 2024-02-27 05:33:53.653 \N Risk past without recognize series career either. Ahead https://example.com/ 11314 439298 439298.440244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.738801189824 0 \N \N f 0 \N 0 93150288 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 440254 2024-02-27 05:39:09.417 2024-02-27 05:49:11.45 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nEach any growth human seek o https://example.com/ 19952 439975 439822.439975.440254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4897423464486 0 \N \N f 0 \N 0 173222547 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 440235 2024-02-27 04:50:38.455 2024-02-27 05:00:40.82 \N Through hope mouth score task suggest consumer https://example.com/ 11220 439139 439139.440235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0676594334 0 \N \N f 0 \N 0 160506742 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435748 2024-02-23 01:38:46.707 2024-02-23 01:48:47.713 \N Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across https://example.com/ 18225 435552 435030.435552.435748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.62182200173619 0 \N \N f 0 \N 0 135455634 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435822 2024-02-23 04:08:44.993 2024-02-23 04:18:45.618 \N Person part phon https://example.com/ 631 435639 435639.435822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9321998339076 0 \N \N f 0 \N 0 53534255 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 431961 2024-02-19 22:32:44.327 2024-02-19 22:42:46.094 Authority call evening guess civil rich not ask. Walk level s Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Spe https://example.com/ 5597 \N 431961 \N \N \N \N \N \N \N \N science \N ACTIVE \N 5.40909077011278 0 \N \N f 0 \N 3 56044713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440247 2024-02-27 05:28:00.849 2024-02-27 05:38:02.812 \N Edge lot space military wi https://example.com/ 925 440056 440056.440247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.23086440330126 0 \N \N f 0 \N 0 67473664 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440243 2024-02-27 05:18:49.623 2024-02-27 05:28:51.417 \N Light environmental here source blood. Institution evening deep act https://example.com/ 7185 440132 440132.440243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8804017695397 0 \N \N f 0 \N 2 194172716 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 435198 2024-02-22 16:34:07.306 2024-02-22 16:44:09.031 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civi https://example.com/ 15337 435030 435030.435198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0278195211229 0 \N \N f 0 \N 0 192751413 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 439978 2024-02-26 21:24:18.9 2024-02-26 21:34:20.426 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nMarriage interview green school study foot ho https://example.com/ 19841 439729 439729.439978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6592718250868 0 \N \N f 0 \N 1 156232776 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 440176 2024-02-27 02:01:22.934 2024-02-27 02:11:23.769 \N With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nThus measure https://example.com/ 18601 440174 440170.440173.440174.440176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3835109947209 0 \N \N f 0 \N 3 66674667 0 f f \N \N \N \N 440170 \N 0 0 \N \N f \N 440228 2024-02-27 04:18:05.766 2024-02-27 04:28:06.936 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat ca https://example.com/ 19158 440216 440132.440216.440228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3875797577324 0 \N \N f 0 \N 0 103307283 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440171 2024-02-27 01:43:47.969 2024-02-27 01:53:49.133 Price country hour whom over argue Congress upon. Nation baby relate local wo Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according https://example.com/ 3683 \N 440171 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8871298967212 0 \N \N f 0 \N 0 222701896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440111 2024-02-27 00:13:54.911 2024-02-27 00:23:56.637 \N Story do plant get. Base involve sport film authority want song career. Eat officer ex https://example.com/ 17690 440056 440056.440111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4943842427823 0 \N \N f 0 \N 0 106948757 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 435718 2024-02-23 00:48:05.436 2024-02-23 00:58:06.669 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Regi https://example.com/ 9906 435488 435488.435718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1155424872057 0 \N \N f 0 \N 1 26853490 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 435752 2024-02-23 01:54:30.64 2024-02-23 02:04:31.484 \N Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Sta https://example.com/ 2326 435663 435610.435663.435752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4591594300336 0 \N \N f 0 \N 0 199021966 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 435690 2024-02-23 00:13:26.153 2024-02-23 00:23:27.261 Tree political season that feel arm. Serve seek turn si Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend la https://example.com/ 16809 \N 435690 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.51927269962943 0 \N \N f 0 \N 9 82311197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435747 2024-02-23 01:37:48.41 2024-02-23 01:47:49.885 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer https://example.com/ 21214 435610 435610.435747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.42034247698774 0 \N \N f 0 \N 1 12330717 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 440251 2024-02-27 05:34:29.782 2024-02-27 05:44:31.34 \N Successful power down must next system pull provide. World health century more clear. https://example.com/ 18321 437667 437667.440251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.52906139090148 0 \N \N f 0 \N 0 114793785 0 f f \N \N \N \N 437667 \N 0 0 \N \N f \N 435181 2024-02-22 16:23:31.173 2024-02-22 16:33:33.005 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nEnvironment none many land part. Effort suc https://example.com/ 659 435030 435030.435181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.90228950334502 0 \N \N f 0 \N 1 51352093 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 440255 2024-02-27 05:40:51.242 2024-02-27 05:50:53.199 \N Stand red drop occur tell week sure worker. Skill teacher purpose maj https://example.com/ 18119 440241 440241.440255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2219636813827 0 \N \N f 0 \N 0 84399489 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 440252 2024-02-27 05:35:42.438 2024-02-27 05:45:43.645 \N Approach stuff big ahead nothing hotel great city. Four east cell age with reco https://example.com/ 5129 440248 440132.440243.440248.440252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6056690871681 0 \N \N f 0 \N 0 137014202 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440250 2024-02-27 05:32:34.395 2024-02-27 05:42:35.583 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road creat https://example.com/ 16665 439082 439082.440250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.196256738902143 0 \N \N f 0 \N 0 120677435 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435661 2024-02-22 23:30:51.954 2024-02-22 23:40:53.063 \N Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nResource morning long fast civil ma https://example.com/ 21466 433889 433889.435661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6788658255887 0 \N \N f 0 \N 0 72940935 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 435531 2024-02-22 21:13:48.29 2024-02-22 21:23:50.097 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president https://example.com/ 19322 435030 435030.435531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.603354092608 0 \N \N f 0 \N 0 241999974 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 440249 2024-02-27 05:32:24.506 2024-02-27 05:42:25.735 \N Success against price. Resource end yeah step bit https://example.com/ 16717 440175 440132.440175.440249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56645408071108 0 \N \N f 0 \N 1 21020902 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 438818 2024-02-26 02:26:44.939 2024-02-26 02:36:46.894 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meet https://example.com/ 21003 438202 438202.438818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1584652077896 0 \N \N f 0 \N 0 205014691 0 f f \N \N \N \N 438202 \N 0 0 \N \N f \N 435716 2024-02-23 00:46:22.34 2024-02-23 00:56:23.313 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably stud https://example.com/ 805 435713 434278.434503.434522.434598.434602.435622.435713.435716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8898477841755 0 \N \N f 0 \N 9 89502111 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435753 2024-02-23 01:56:05.595 2024-02-23 02:06:06.477 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nReach too suffer story type r https://example.com/ 16350 435676 435030.435609.435676.435753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1917686912806 0 \N \N f 0 \N 0 41069008 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435767 2024-02-23 02:35:47.745 2024-02-23 02:45:49.656 \N Republican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent ro https://example.com/ 18476 435610 435610.435767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5993910998457 0 \N \N f 0 \N 2 69286485 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 435769 2024-02-23 02:36:55.747 2024-02-23 02:46:57.916 Off class property ok try. Outside fast glass response environment dinn Black leg through occur p https://example.com/ 803 \N 435769 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.1414881816675 0 \N \N f 0 \N 2 17800844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432980 2024-02-20 20:16:29.994 2024-02-20 20:26:31.175 \N White have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nWhose eye what surface. Leader use yet https://example.com/ 2577 432920 432920.432980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52836259833975 0 \N \N f 0 \N 24 20611379 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 440082 2024-02-26 23:22:21.495 2024-02-26 23:32:22.441 Man talk arm player Rich leg value billion long. Day discussion lawye https://example.com/ 18842 \N 440082 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 14.9226074111416 0 \N \N f 0 \N 0 108733778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435762 2024-02-23 02:10:45.639 2024-02-23 02:20:47.13 \N Never hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward https://example.com/ 12911 435556 435217.435275.435277.435295.435425.435556.435762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.6553218870168 0 \N \N f 0 \N 0 73630493 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435761 2024-02-23 02:10:32.336 2024-02-23 02:20:33.224 \N Before wrong success power prevent notice. Hard former stock. Ad https://example.com/ 20586 435746 435746.435761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78790009728912 0 \N \N f 0 \N 0 236167124 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 435365 2024-02-22 18:29:09.393 2024-02-22 18:39:11.404 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here https://example.com/ 7818 435046 435046.435365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92049547527935 0 \N \N f 0 \N 2 1684372 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440260 2024-02-27 05:51:42.291 2024-02-27 06:01:43.635 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nTe https://example.com/ 21361 440240 439082.439351.440240.440260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6370625473604 0 \N \N f 0 \N 0 240087617 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440903 2024-02-27 18:31:54.883 2024-02-27 18:41:55.849 Board collection beat and worry. Traditional apply general way lawyer Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn. https://example.com/ 618 \N 440903 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 27.349778731999 0 \N \N f 0 \N 0 71378979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442082 2024-02-28 14:47:47.563 2024-02-28 14:57:50.097 \N Language eff https://example.com/ 1825 442023 442023.442082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57868118183587 0 \N \N f 0 \N 0 13061934 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 435764 2024-02-23 02:19:00.498 2024-02-23 02:29:01.504 \N Explain order help https://example.com/ 18581 435488 435488.435764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2319876039334 0 \N \N f 0 \N 0 109301760 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 442034 2024-02-28 14:28:38.911 2024-02-28 14:38:39.772 \N These world usually ground gro https://example.com/ 5904 441986 441695.441719.441986.442034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9646041401084 0 \N \N f 0 \N 1 156441443 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442067 2024-02-28 14:42:28.881 2024-02-28 14:52:30.037 \N Professor entire information week article family fear effort. Model have through main look light fo https://example.com/ 19282 442061 441843.441979.442061.442067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.86984215087485 0 \N \N f 0 \N 0 77215345 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 435773 2024-02-23 02:42:10.623 2024-02-23 02:52:11.782 \N Leave relationship rule rich draw soon protect continue. International pull rock https://example.com/ 18235 435627 434278.434318.434515.435627.435773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2368404794458 0 \N \N f 0 \N 0 40688946 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439877 2024-02-26 20:20:33.678 2024-02-26 20:30:35.142 Top however address today. Century human land prove should. Executi Though or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it inste https://example.com/ 5387 \N 439877 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.24051241727651 0 \N \N f 0 \N 3 12270836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440263 2024-02-27 06:01:41.556 2024-02-27 06:11:43.273 \N About easy answer gl https://example.com/ 18460 440120 439142.439188.439194.439411.439445.439464.440120.440263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.97813017900102 0 \N \N f 0 \N 0 106906169 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 440265 2024-02-27 06:02:38.666 2024-02-27 06:12:39.846 \N Beyond leg century level herself https://example.com/ 20291 440139 440139.440265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93983352948923 0 \N \N f 0 \N 0 142050351 0 f f \N \N \N \N 440139 \N 0 0 \N \N f \N 439804 2024-02-26 19:32:02.273 2024-02-26 19:42:03.501 Provide enjoy appear these. What care if degree. Even camera drop. Of Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current. https://example.com/ 1577 \N 439804 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4904678480863 0 \N \N f 0 \N 0 73943271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435774 2024-02-23 02:53:15.53 2024-02-23 03:03:16.874 \N Poor appear go since involve. How form no direct https://example.com/ 18008 435579 435579.435774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7605766810183 0 \N \N f 0 \N 2 61555434 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 435782 2024-02-23 03:04:35.729 2024-02-23 03:14:37.532 \N Name eve https://example.com/ 20581 434990 434990.435782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44090956716169 0 \N \N f 0 \N 0 192233849 0 f f \N \N \N \N 434990 \N 0 0 \N \N f \N 443019 2024-02-29 02:53:38.875 2024-02-29 03:03:40.541 \N Almost about me amount daughter himself. Threat https://example.com/ 21062 442298 442298.443019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.88471336891713 0 \N \N f 0 \N 0 244424009 0 f f \N \N \N \N 442298 \N 0 0 \N \N f \N 435784 2024-02-23 03:11:18.146 2024-02-23 03:21:19.653 \N Already reduce grow only chance opportunity group. Sort foll https://example.com/ 691 435457 435457.435784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2532125450499 0 \N \N f 0 \N 0 66777412 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 438621 2024-02-25 20:18:21.177 2024-02-25 20:28:22.776 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect ya https://example.com/ 21494 438397 438397.438621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93172639401158 0 \N \N f 0 \N 2 232789887 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 435124 2024-02-22 15:50:16.816 2024-02-22 16:00:18.805 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actual https://example.com/ 16724 435059 435046.435059.435124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.685539695337631 0 \N \N f 0 \N 3 76898566 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439966 2024-02-26 21:16:21.454 2024-02-26 21:26:22.364 \N White have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital https://example.com/ 1658 439895 439895.439966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5347790109014 0 \N \N f 0 \N 0 47565695 0 f f \N \N \N \N 439895 \N 0 0 \N \N f \N 435509 2024-02-22 20:48:48.264 2024-02-22 20:58:49.529 \N Quite way soldier would back near. Modern consider federal series d https://example.com/ 629 435242 435242.435509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2816322321111 0 \N \N f 0 \N 1 188436257 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 442132 2024-02-28 15:09:09.149 2024-02-28 15:19:10.358 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. https://example.com/ 21373 441980 441951.441980.442132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.674973307239 0 \N \N f 0 \N 0 21422907 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 440259 2024-02-27 05:51:21.078 2024-02-27 06:01:23.208 Remember draw realize. Include soon my Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live di https://example.com/ 7979 \N 440259 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 24.4546547297136 0 \N \N f 0 \N 1 192817536 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435151 2024-02-22 16:08:09.62 2024-02-22 16:18:10.748 Force job radio Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision s https://example.com/ 18072 \N 435151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4508960049643 0 \N \N f 0 \N 5 197775567 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438631 2024-02-25 20:35:02.844 2024-02-25 20:45:03.999 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. https://example.com/ 14247 438604 438093.438603.438604.438631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6029942963341 0 \N \N f 0 \N 0 46370862 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435711 2024-02-23 00:37:02.441 2024-02-23 00:47:03.827 \N They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nBlue the that local central middle themselves effect. Concern seat p https://example.com/ 1122 435657 435657.435711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.07713778173784 0 \N \N f 0 \N 3 165751140 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 438847 2024-02-26 03:24:50.656 2024-02-26 03:34:52.197 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end presi https://example.com/ 2614 438758 438758.438847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8414950668545 0 \N \N f 0 \N 1 211391134 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 440041 2024-02-26 22:21:10.049 2024-02-26 22:31:11.468 \N Most describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nLast expert d https://example.com/ 21506 440001 439990.439997.440001.440041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5033698853319 0 \N \N f 0 \N 0 186289965 0 f f \N \N \N \N 439990 \N 0 0 \N \N f \N 435770 2024-02-23 02:38:53.917 2024-02-23 02:48:55.523 \N After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy def https://example.com/ 16282 435488 435488.435770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83685586566968 0 \N \N f 0 \N 1 76989554 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 435637 2024-02-22 22:58:24.259 2024-02-22 23:08:25.637 \N Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something var https://example.com/ 1213 434795 434795.435637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9816846864452 0 \N \N f 0 \N 0 87549689 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439435 2024-02-26 15:12:41.24 2024-02-26 15:22:43.666 \N Treat central body toward. Cell throughout whether. M https://example.com/ 16356 439386 439082.439386.439435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0771766442903 0 \N \N f 0 \N 2 120128633 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435789 2024-02-23 03:14:40.672 2024-02-23 03:24:41.447 \N Police civil here thin https://example.com/ 21446 435171 434795.435171.435789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1259822072997 0 \N \N f 0 \N 1 119289644 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435787 2024-02-23 03:13:02.083 2024-02-23 03:23:03.944 \N Lo https://example.com/ 18735 435707 435639.435646.435707.435787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3953666185046 0 \N \N f 0 \N 0 96518553 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 435768 2024-02-23 02:36:18.734 2024-02-23 02:46:20.391 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\n https://example.com/ 762 435759 435046.435059.435124.435759.435768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95366613688763 0 \N \N f 0 \N 1 195983971 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435817 2024-02-23 04:05:25.099 2024-02-23 04:15:26.309 \N Off class property ok try. Outside fa https://example.com/ 17984 435812 435812.435817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7139256286505 0 \N \N f 0 \N 0 60887870 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 435818 2024-02-23 04:06:45.634 2024-02-23 04:16:46.997 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart mon https://example.com/ 2775 435809 435804.435809.435818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2562870539666 0 \N \N f 0 \N 0 24492068 0 f f \N \N \N \N 435804 \N 0 0 \N \N f \N 435794 2024-02-23 03:20:55.849 2024-02-23 03:30:58.079 \N Heavy spring happy ci https://example.com/ 4570 435746 435746.435794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9526764666768 0 \N \N f 0 \N 2 160349979 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 435804 2024-02-23 03:39:55.388 2024-02-23 03:49:56.759 Measure whether or material herself. Under across economic hu Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn. https://example.com/ 18664 \N 435804 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.221355439982 0 \N \N f 0 \N 2 80418949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435384 2024-02-22 18:49:27.408 2024-02-22 18:59:28.909 \N End and certainly language lawyer her sort. Attention rate https://example.com/ 16769 435231 435231.435384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62408570493005 0 \N \N f 0 \N 1 89870830 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 435810 2024-02-23 03:54:14.835 2024-02-23 04:04:16.656 \N Live child like read. Gas forget current. He https://example.com/ 21369 435457 435457.435810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6052506470282 0 \N \N f 0 \N 0 229319312 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 441162 2024-02-27 22:24:31.12 2024-02-27 22:34:32.225 \N Money rise give serve will expect factor. Claim outside serious ad https://example.com/ 19267 441077 441077.441162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.98367082768688 0 \N \N f 0 \N 0 75670994 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 441114 2024-02-27 21:23:40.13 2024-02-27 21:33:41.745 \N Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank https://example.com/ 19174 440764 440764.441114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75467244073267 0 \N \N f 0 \N 0 24017770 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 434895 2024-02-22 12:29:27.721 2024-02-22 12:39:29.438 \N Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large v https://example.com/ 2056 434688 434317.434688.434895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2671703579709 0 \N \N f 0 \N 2 64213338 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 434829 2024-02-22 11:18:19.681 2024-02-22 11:28:21.109 \N Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space https://example.com/ 21026 434818 434795.434796.434804.434818.434829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.10220883628812 0 \N \N f 0 \N 1 62277867 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434818 2024-02-22 11:11:12.559 2024-02-22 11:21:13.557 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly https://example.com/ 16665 434804 434795.434796.434804.434818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3056469494742 0 \N \N f 0 \N 4 237639077 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434804 2024-02-22 11:04:25.878 2024-02-22 11:14:26.994 \N Seat commercial th https://example.com/ 2000 434796 434795.434796.434804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.99910704351459 0 \N \N f 0 \N 5 216819679 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 434796 2024-02-22 11:00:09.425 2024-02-22 11:10:10.554 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most https://example.com/ 8095 434795 434795.434796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6474090723679 0 \N \N f 0 \N 8 181257268 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435796 2024-02-23 03:26:57.414 2024-02-23 03:36:58.476 \N Agent huge https://example.com/ 20802 435774 435579.435774.435796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8672069295094 0 \N \N f 0 \N 0 247804028 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 435801 2024-02-23 03:33:59.171 2024-02-23 03:44:00.371 \N Hair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. https://example.com/ 17523 435711 435657.435711.435801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5226811718167 0 \N \N f 0 \N 0 229864781 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 435815 2024-02-23 04:00:22.874 2024-02-23 04:10:24.308 \N Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. C https://example.com/ 5069 435141 435030.435141.435815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4580868995219 0 \N \N f 0 \N 0 159017414 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435802 2024-02-23 03:34:05.299 2024-02-23 03:44:06.453 \N News ha https://example.com/ 2162 435704 435657.435704.435802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1146008337399 0 \N \N f 0 \N 0 137997168 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 438923 2024-02-26 06:42:39.224 2024-02-26 06:52:41.149 \N Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection comm https://example.com/ 2789 438737 438737.438923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8819352323338 0 \N \N f 0 \N 0 52608347 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 435552 2024-02-22 21:39:03.081 2024-02-22 21:49:04.151 \N Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nGo effect true such such wind market. Role suggest perhaps choose ser https://example.com/ 15075 435030 435030.435552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.201987341587 0 \N \N f 0 \N 1 179723407 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 435809 2024-02-23 03:51:57.26 2024-02-23 04:01:58.584 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practi https://example.com/ 19096 435804 435804.435809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86945078257555 0 \N \N f 0 \N 1 85024167 0 f f \N \N \N \N 435804 \N 0 0 \N \N f \N 435798 2024-02-23 03:30:35.147 2024-02-23 03:40:36.417 Human appear she. So happen occur effect. If north br Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually. https://example.com/ 4166 \N 435798 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.74411964669133 0 \N \N f 0 \N 3 50615844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435728 2024-02-23 00:59:00.69 2024-02-23 01:09:02.917 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. L https://example.com/ 16350 435657 435657.435728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.175637216723388 0 \N \N f 0 \N 10 32746058 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 435828 2024-02-23 04:18:11.058 2024-02-23 04:28:12.067 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat bu https://example.com/ 20710 435551 435551.435828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.547077488244874 0 \N \N f 0 \N 0 177068223 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 435819 2024-02-23 04:08:06.344 2024-02-23 04:18:07.949 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nNever heavy table particularly land key base. Newspaper https://example.com/ 11648 435812 435812.435819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.051420094372 0 \N \N f 0 \N 1 58273620 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 435849 2024-02-23 05:17:29.986 2024-02-23 05:27:31.571 \N Glass her remem https://example.com/ 17172 435770 435488.435770.435849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.6494113209008 0 \N \N f 0 \N 0 117715106 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 435791 2024-02-23 03:15:31.261 2024-02-23 03:25:32.018 \N Himself seem along exist population development p https://example.com/ 19864 435596 435596.435791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8449893457473 0 \N \N f 0 \N 1 207555901 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N 435650 2024-02-22 23:21:18.73 2024-02-22 23:31:19.809 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair com https://example.com/ 20776 435231 435231.435650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02384263882801 0 \N \N f 0 \N 7 201466193 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 435814 2024-02-23 03:57:27.306 2024-02-23 04:07:28.538 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept tot https://example.com/ 658 435650 435231.435650.435814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4335080808892 0 \N \N f 0 \N 6 57195486 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 439103 2024-02-26 11:24:38.322 2024-02-26 11:34:39.477 \N Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent https://example.com/ 9078 438737 438737.439103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8562847999584 0 \N \N f 0 \N 0 196151170 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 439297 2024-02-26 13:31:06.823 2024-02-26 13:41:08.196 \N Any tend power space fund inside evidence. Member century in https://example.com/ 21119 439139 439139.439297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.48325981393818 0 \N \N f 0 \N 0 61653346 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435807 2024-02-23 03:50:38.068 2024-02-23 04:00:38.732 \N Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture https://example.com/ 21455 435805 435805.435807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.83519059171 0 \N \N f 0 \N 0 136255259 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 438701 2024-02-25 22:02:19.68 2024-02-25 22:12:21.769 \N Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off man https://example.com/ 2338 438668 438397.438646.438668.438701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05989543909996 0 \N \N f 0 \N 1 166433652 0 f f \N \N \N \N 438397 \N 0 0 \N \N f \N 435838 2024-02-23 04:56:19.857 2024-02-23 05:06:21.134 \N Tax here if project. Thing how simply then. Against sin https://example.com/ 20636 435547 435046.435135.435292.435504.435545.435547.435838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3859365798943 0 \N \N f 0 \N 0 100749845 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435816 2024-02-23 04:03:54.096 2024-02-23 04:13:56.009 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. R https://example.com/ 18517 435619 435328.435487.435605.435612.435619.435816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.66012105708732 0 \N \N f 0 \N 0 225377781 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 438516 2024-02-25 18:03:00.443 2024-02-25 18:13:01.867 Girl fire bring middle popular. And suffer its throughout chance. Only huge stat Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list o https://example.com/ 19462 \N 438516 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 22.2851882327557 0 \N \N f 0 \N 1 93279067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438796 2024-02-26 01:12:55.306 2024-02-26 01:22:56.79 \N Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought unde https://example.com/ 7772 438596 438596.438796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6544231718866 0 \N \N f 0 \N 0 126495830 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 435827 2024-02-23 04:17:44.563 2024-02-23 04:27:46.181 \N Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog sta https://example.com/ 19992 435826 435826.435827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4600075941651 0 \N \N f 0 \N 0 8027406 0 f f \N \N \N \N 435826 \N 0 0 \N \N f \N 440215 2024-02-27 03:31:12.457 2024-02-27 03:41:13.349 \N Decision certain voice where colle https://example.com/ 828 440175 440132.440175.440215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8695229646643 0 \N \N f 0 \N 0 121960622 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 439112 2024-02-26 11:29:40.726 2024-02-26 11:39:41.985 \N Political perhaps question forward yes. Fish TV music catch behind https://example.com/ 2519 439087 439082.439087.439112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3481915068454 0 \N \N f 0 \N 1 73519015 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435795 2024-02-23 03:23:00.722 2024-02-23 03:33:02.279 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nName put just democratic https://example.com/ 17741 435783 434278.434318.435783.435795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.38353072940008 0 \N \N f 0 \N 3 41999217 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435821 2024-02-23 04:08:24.739 2024-02-23 04:18:26.226 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nFinally and may second. Mi https://example.com/ 19329 435768 435046.435059.435124.435759.435768.435821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1486582887058 0 \N \N f 0 \N 0 26522160 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435843 2024-02-23 05:05:53.23 2024-02-23 05:15:54.5 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. S https://example.com/ 1291 435836 435231.435650.435814.435836.435843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8110722586378 0 \N \N f 0 \N 4 119137393 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 437594 2024-02-24 18:56:17.919 2024-02-24 19:06:19.224 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kin https://example.com/ 2722 437583 437583.437594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.57277857251633 0 \N \N f 0 \N 2 47631563 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 438700 2024-02-25 22:01:21.123 2024-02-25 22:11:22.248 \N Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nThink month catch free. Tree invo https://example.com/ 18314 438604 438093.438603.438604.438700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85687012902936 0 \N \N f 0 \N 1 6855943 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435800 2024-02-23 03:33:37.503 2024-02-23 03:43:38.988 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr https://example.com/ 17411 435797 435657.435728.435797.435800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9433647112295 0 \N \N f 0 \N 0 186162964 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 440219 2024-02-27 03:37:51.121 2024-02-27 03:47:51.929 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat tho https://example.com/ 9337 440132 440132.440219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7511609763373 0 \N \N f 0 \N 0 221214365 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 435820 2024-02-23 04:08:14.06 2024-02-23 04:18:16.083 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard a https://example.com/ 21527 435805 435805.435820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23717950334815 0 \N \N f 0 \N 0 216711907 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 438397 2024-02-25 15:59:51.942 2024-02-25 16:09:54.199 Politics or often interview. Cha Down his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nWrong according some him. Foot co https://example.com/ 20904 \N 438397 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.7182390036708 0 \N \N f 0 \N 12 75009200 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435841 2024-02-23 05:00:12.993 2024-02-23 05:10:14.089 \N Sort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particular https://example.com/ 21342 435812 435812.435841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1917198685595 0 \N \N f 0 \N 0 230890244 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 437264 2024-02-24 14:28:23.359 2024-02-24 14:38:25.222 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light https://example.com/ 7389 437180 436805.436913.437180.437264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4104666781062 0 \N \N f 0 \N 1 88141809 0 f f \N \N \N \N 436805 \N 0 0 \N \N f \N 437206 2024-02-24 13:52:40.994 2024-02-24 14:02:42.218 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV https://example.com/ 644 437194 437183.437188.437194.437206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.74927132038479 0 \N \N f 0 \N 5 52217439 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 437210 2024-02-24 13:56:27.58 2024-02-24 14:06:29.016 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment lang https://example.com/ 19572 437181 437181.437210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0475251883792 0 \N \N f 0 \N 0 246829105 0 f f \N \N \N \N 437181 \N 0 0 \N \N f \N 440095 2024-02-26 23:54:59.53 2024-02-27 00:05:00.822 \N Never hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staf https://example.com/ 8998 439844 439844.440095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9594497084089 0 \N \N f 0 \N 1 189362248 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435839 2024-02-23 04:58:28.879 2024-02-23 05:08:30.333 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nOff class property ok try. Outside fast glass response environment dinner reveal. B https://example.com/ 2513 435795 434278.434318.435783.435795.435839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98102109953831 0 \N \N f 0 \N 0 203401536 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435833 2024-02-23 04:47:50.003 2024-02-23 04:57:51.537 \N Seat commercial thr https://example.com/ 1425 435774 435579.435774.435833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0241592765423 0 \N \N f 0 \N 0 155988898 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 437236 2024-02-24 14:16:55.675 2024-02-24 14:26:56.653 \N Try hospital student. Stock floor https://example.com/ 9261 437205 437205.437236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0129703936069 0 \N \N f 0 \N 0 146362132 0 f f \N \N \N \N 437205 \N 0 0 \N \N f \N 437256 2024-02-24 14:24:25.626 2024-02-24 14:34:26.575 \N Speak specific energy inte https://example.com/ 20258 437044 437044.437256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9701425754723 0 \N \N f 0 \N 1 52714410 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437258 2024-02-24 14:25:47.975 2024-02-24 14:35:48.975 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural t https://example.com/ 14280 437231 436028.436029.437220.437228.437231.437258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8992736495376 0 \N \N f 0 \N 0 176499379 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437279 2024-02-24 14:39:28.247 2024-02-24 14:49:30.192 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. Y https://example.com/ 1983 437181 437181.437279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1309260176797 0 \N \N f 0 \N 1 33570809 0 f f \N \N \N \N 437181 \N 0 0 \N \N f \N 435864 2024-02-23 05:42:25.198 2024-02-23 05:52:26.925 Clear suggest true gas suddenly project. Seem Direction network employee o https://example.com/ 18005 \N 435864 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 15.0587341371108 0 \N \N f 0 \N 0 157470547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435842 2024-02-23 05:01:52.242 2024-02-23 05:11:53.772 \N Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nPlan theory effect center maintain man. Now field ago ha https://example.com/ 10291 434318 434278.434318.435842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.067453460328899 0 \N \N f 0 \N 0 92186326 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 436066 2024-02-23 11:45:41.555 2024-02-23 11:55:42.705 Risk clearly listen table total. Plan age big eas Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of. https://example.com/ 18581 \N 436066 \N \N \N \N \N \N \N \N security \N ACTIVE \N 0.607204690127361 0 \N \N f 0 \N 1 79276361 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435845 2024-02-23 05:09:05.219 2024-02-23 05:19:06.174 \N Sort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compa https://example.com/ 12606 435843 435231.435650.435814.435836.435843.435845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.76544842418649 0 \N \N f 0 \N 3 169012741 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 437272 2024-02-24 14:34:53.333 2024-02-24 14:44:55.23 \N Explain order help within. Effort get edge open nothing. With big meet https://example.com/ 11165 436997 436983.436988.436989.436990.436991.436997.437272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5291927450719 0 \N \N f 0 \N 0 96353366 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 436809 2024-02-24 01:26:57.656 2024-02-24 01:37:00.044 \N Guy help book. Senior activity environ https://example.com/ 900 436669 436669.436809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2895976343023 0 \N \N f 0 \N 2 96028740 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 441804 2024-02-28 12:11:56.061 2024-02-28 12:21:57.405 \N Before ap https://example.com/ 21064 441782 441782.441804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.1914999566755 0 \N \N f 0 \N 0 222353297 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 439151 2024-02-26 12:12:37.177 2024-02-26 12:22:38.94 \N Somebody head others contain moment. Which our old o https://example.com/ 13544 439139 439139.439151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5923317292556 0 \N \N f 0 \N 0 1410689 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435835 2024-02-23 04:51:27.221 2024-02-23 05:01:29.273 \N Ability ability arrive age movie country. Dra https://example.com/ 6777 435579 435579.435835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9258028030801 0 \N \N f 0 \N 1 72953533 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 435846 2024-02-23 05:09:29.313 2024-02-23 05:19:30.401 \N Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill https://example.com/ 20264 435795 434278.434318.435783.435795.435846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9286076933975 0 \N \N f 0 \N 0 130050796 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435656 2024-02-22 23:26:09.003 2024-02-22 23:36:10.254 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result https://example.com/ 13622 433886 433886.435656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5044717018745 0 \N \N f 0 \N 0 230093132 0 f f \N \N \N \N 433886 \N 0 0 \N \N f \N 439880 2024-02-26 20:21:54.263 2024-02-26 20:31:55.997 \N Structure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. https://example.com/ 4391 439846 439822.439846.439880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.291479371859182 0 \N \N f 0 \N 2 126806645 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 438771 2024-02-26 00:24:37.432 2024-02-26 00:34:38.957 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choi https://example.com/ 2961 438758 438758.438771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50981431922622 0 \N \N f 0 \N 0 31664950 0 f f \N \N \N \N 438758 \N 0 0 \N \N f \N 435868 2024-02-23 05:54:38.455 2024-02-23 06:04:39.889 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. https://example.com/ 18717 435457 435457.435868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5562537343636 0 \N \N f 0 \N 0 95423481 0 f f \N \N \N \N 435457 \N 0 0 \N \N f \N 435855 2024-02-23 05:25:34.279 2024-02-23 05:35:35.385 With officer scientist letter one. P Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend. https://example.com/ 12220 \N 435855 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 8.6340508493625 0 \N \N f 0 \N 0 9731142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440751 2024-02-27 16:27:30.605 2024-02-27 16:37:31.823 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer famil https://example.com/ 11621 440663 440663.440751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9508510536114 0 \N \N f 0 \N 7 118250557 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 435859 2024-02-23 05:34:34.483 2024-02-23 05:44:35.681 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nLeave example grow lead something still after. Happy worry lose certain https://example.com/ 19569 435679 435679.435859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7867799992934 0 \N \N f 0 \N 1 91662826 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 435811 2024-02-23 03:54:26.259 2024-02-23 04:04:28.07 \N Discussion various drop throw none test wind. Exactly nation read ye https://example.com/ 18557 435775 434278.434503.434522.434598.434602.435622.435772.435775.435811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7757652245925 0 \N \N f 0 \N 3 118746382 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435275 2024-02-22 17:26:36.696 2024-02-22 17:36:37.866 \N Much road chair teach during. Poor assume operation job sea organization. https://example.com/ 19848 435217 435217.435275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6192060847064 0 \N \N f 0 \N 18 147449661 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 441226 2024-02-27 23:17:45.479 2024-02-27 23:27:46.986 \N Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nLast expert dark compare nearly https://example.com/ 1007 441215 440692.441011.441130.441211.441215.441226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9544649477143 0 \N \N f 0 \N 5 56334475 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 437180 2024-02-24 13:31:57.111 2024-02-24 13:41:58.74 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything pic https://example.com/ 20190 436913 436805.436913.437180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8233805813574 0 \N \N f 0 \N 2 142088093 0 f f \N \N \N \N 436805 \N 0 0 \N \N f \N 438603 2024-02-25 19:56:03.787 2024-02-25 20:06:05.847 \N Sell hundred beautiful up claim. Clear benefit ma https://example.com/ 18705 438093 438093.438603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3959672020575 0 \N \N f 0 \N 8 68018773 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 437375 2024-02-24 15:41:29.096 2024-02-24 15:51:31.332 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical ad https://example.com/ 15063 437044 437044.437375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.374345798768339 0 \N \N f 0 \N 0 230635604 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437371 2024-02-24 15:31:16.492 2024-02-24 15:41:18.074 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat imp https://example.com/ 15094 437301 437301.437371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8550106855506 0 \N \N f 0 \N 3 76391117 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 435556 2024-02-22 21:40:53.895 2024-02-22 21:50:55.568 \N Mr right bring various. Whose apply laugh only. Simply center par https://example.com/ 928 435425 435217.435275.435277.435295.435425.435556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.208475519506202 0 \N \N f 0 \N 5 111629434 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435241 2024-02-22 17:00:01.053 2024-02-22 17:10:03.317 \N Can operation lose dinner tax meet. Goal https://example.com/ 2206 435217 435217.435241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4335215334349 0 \N \N f 0 \N 0 204254825 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435755 2024-02-23 01:57:02.263 2024-02-23 02:07:03.659 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed inste https://example.com/ 20738 435551 435551.435755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1019813914117 0 \N \N f 0 \N 1 81399459 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 438692 2024-02-25 21:56:15.713 2024-02-25 22:06:17.753 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way https://example.com/ 2224 438685 438405.438507.438517.438685.438692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.72272239269503 0 \N \N f 0 \N 0 145580003 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 435399 2024-02-22 18:58:34.059 2024-02-22 19:08:35.002 \N Return bag discover indicate record tax oc https://example.com/ 9171 435395 435392.435395.435399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0624857554808 0 \N \N f 0 \N 1 221909804 0 f f \N \N \N \N 435392 \N 0 0 \N \N f \N 438865 2024-02-26 03:53:18.955 2024-02-26 04:03:19.994 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nJust condition wide hit nati https://example.com/ 4014 438863 438737.438863.438865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.06586491026921 0 \N \N f 0 \N 1 57833472 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 438863 2024-02-26 03:48:26.832 2024-02-26 03:58:28.085 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increas https://example.com/ 20222 438737 438737.438863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6699976490131 0 \N \N f 0 \N 2 187335477 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 435196 2024-02-22 16:31:34.573 2024-02-22 16:41:36.81 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicat https://example.com/ 18344 435086 435030.435086.435196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6962438070081 0 \N \N f 0 \N 0 154296540 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 438719 2024-02-25 22:29:28.541 2024-02-25 22:39:29.735 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Eff https://example.com/ 11609 438716 438405.438507.438517.438588.438657.438696.438703.438709.438716.438719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3180066586945 0 \N \N f 0 \N 1 124562499 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438604 2024-02-25 19:56:33.072 2024-02-25 20:06:34.36 \N Again t https://example.com/ 15160 438603 438093.438603.438604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29051231585466 0 \N \N f 0 \N 7 166502529 0 f f \N \N \N \N 438093 \N 0 0 \N \N f \N 435487 2024-02-22 20:33:19.081 2024-02-22 20:43:20.566 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever south https://example.com/ 20963 435328 435328.435487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9329776160807 0 \N \N f 0 \N 5 184890735 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 436375 2024-02-23 16:19:06.153 2024-02-23 16:29:08.751 \N Couple writer life commercial art. Medical ban https://example.com/ 10094 436362 436362.436375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93878972736829 0 \N \N f 0 \N 2 248816756 0 f f \N \N \N \N 436362 \N 0 0 \N \N f \N 436381 2024-02-23 16:21:52.359 2024-02-23 16:31:54.798 \N Billion very news personal develop career ra https://example.com/ 21216 436375 436362.436375.436381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3158223042424 0 \N \N f 0 \N 1 185985515 0 f f \N \N \N \N 436362 \N 0 0 \N \N f \N 436407 2024-02-23 16:48:13.656 2024-02-23 16:58:15.178 \N Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure inte https://example.com/ 10586 436326 436326.436407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5939512951561 0 \N \N f 0 \N 1 47820675 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 434556 2024-02-22 05:01:32.899 2024-02-22 05:11:34.299 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nWhite have l https://example.com/ 21589 434535 434535.434556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9063503075558 0 \N \N f 0 \N 2 118034057 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 435352 2024-02-22 18:11:54.689 2024-02-22 18:21:57.095 \N If lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three mos https://example.com/ 965 435260 435217.435257.435260.435352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1174547771909 0 \N \N f 0 \N 2 45512974 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435783 2024-02-23 03:04:54.804 2024-02-23 03:14:55.958 \N Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. C https://example.com/ 17227 434318 434278.434318.435783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2702702736677 0 \N \N f 0 \N 4 134602563 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 433878 2024-02-21 15:42:50.804 2024-02-21 15:52:51.913 Hotel blood consumer spend college. Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest do https://example.com/ 11716 \N 433878 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 25.4440800411465 0 \N \N f 0 \N 5 33054676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437360 2024-02-24 15:20:35.982 2024-02-24 15:30:37.349 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father t https://example.com/ 8954 437352 437233.437270.437311.437319.437348.437352.437360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36373781421547 0 \N \N f 0 \N 2 70188688 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 441016 2024-02-27 20:01:38.368 2024-02-27 20:11:39.996 \N Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful bud https://example.com/ 21131 440764 440764.441016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7380457328245 0 \N \N f 0 \N 3 79342972 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441053 2024-02-27 20:20:17.174 2024-02-27 20:30:18.413 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. https://example.com/ 2256 441016 440764.441016.441053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1260558741156 0 \N \N f 0 \N 2 16657069 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 434290 2024-02-21 21:13:09.267 2024-02-21 21:23:11.185 Similar event two high mouth. Seem however vi Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man https://example.com/ 7847 \N 434290 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.0786865822379 0 \N \N f 0 \N 2 155708740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435574 2024-02-22 21:58:11.436 2024-02-22 22:08:13.987 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican https://example.com/ 21291 435551 435551.435574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18485286475554 0 \N \N f 0 \N 2 4943057 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 438685 2024-02-25 21:46:57.671 2024-02-25 21:56:59.241 \N World kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almos https://example.com/ 777 438517 438405.438507.438517.438685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.01670473674989 0 \N \N f 0 \N 2 34227928 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438682 2024-02-25 21:44:38.023 2024-02-25 21:54:40.008 \N Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss fil https://example.com/ 16998 438507 438405.438507.438682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2954004776979 0 \N \N f 0 \N 1 209905944 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 435057 2024-02-22 14:51:01 2024-02-22 15:01:01.706 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow inclu https://example.com/ 3518 435019 435019.435057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.99072061895983 0 \N \N f 0 \N 0 30524877 0 f f \N \N \N \N 435019 \N 0 0 \N \N f \N 435573 2024-02-22 21:56:06.264 2024-02-22 22:06:07.183 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice https://example.com/ 14271 435570 435217.435275.435277.435295.435438.435565.435570.435573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8401219329983 0 \N \N f 0 \N 1 200979498 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 438743 2024-02-25 23:44:24.074 2024-02-25 23:54:25.503 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nCompany kid protect determine adult. Increase add play lawye https://example.com/ 21091 438737 438737.438743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1755203780253 0 \N \N f 0 \N 2 153199322 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 439088 2024-02-26 11:06:00.444 2024-02-26 11:16:01.785 \N By evening job should nature really. Cut bla https://example.com/ 15147 439082 439082.439088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5520758228896 0 \N \N f 0 \N 2 75494995 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439495 2024-02-26 15:40:13.872 2024-02-26 15:50:15.045 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth wit https://example.com/ 7185 439082 439082.439495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6538227321076 0 \N \N f 0 \N 0 107025089 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439292 2024-02-26 13:28:46.848 2024-02-26 13:38:48.769 \N Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else https://example.com/ 5758 438726 437723.437880.438075.438515.438726.439292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1388568697539 0 \N \N f 0 \N 0 67169720 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438515 2024-02-25 18:01:53.082 2024-02-25 18:11:54.251 \N First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nEverything she discuss gun som https://example.com/ 18306 438075 437723.437880.438075.438515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3979562564548 0 \N \N f 0 \N 2 130637944 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 438093 2024-02-25 11:00:04.673 2024-02-25 11:10:05.827 Country audien Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise https://example.com/ 20687 \N 438093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3404461922139 0 \N \N f 0 \N 79 154855229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433937 2024-02-21 16:32:05.181 2024-02-21 16:42:06.905 Some nation represent who. Sometimes ab First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nToday area benefit around subject nat https://example.com/ 715 \N 433937 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.94366582570184 0 \N \N f 0 \N 10 156903503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439455 2024-02-26 15:21:15.618 2024-02-26 15:31:17.022 \N Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that t https://example.com/ 687 439263 439263.439455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.208225741012 0 \N \N f 0 \N 1 180520593 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 435743 2024-02-23 01:20:24.116 2024-02-23 01:30:24.989 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nHeart such other on du https://example.com/ 21400 434318 434278.434318.435743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02342343823355 0 \N \N f 0 \N 0 128872914 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435086 2024-02-22 15:13:59.752 2024-02-22 15:24:02.132 \N Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nRace site manager blood. President perform under know option. Suggest https://example.com/ 20036 435030 435030.435086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.39630078255095 0 \N \N f 0 \N 2 43783242 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 434146 2024-02-21 18:25:33.04 2024-02-21 18:35:34.739 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nLeave https://example.com/ 20280 433799 433799.434146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3419699845448 0 \N \N f 0 \N 1 23299297 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 438510 2024-02-25 17:58:48.877 2024-02-25 18:08:50.516 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk https://example.com/ 4292 438464 438405.438416.438453.438464.438510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.96433527841 0 \N \N f 0 \N 4 199021709 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 434318 2024-02-21 21:48:16.395 2024-02-21 21:58:17.869 \N Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit op https://example.com/ 19662 434278 434278.434318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3998603408058 0 \N \N f 0 \N 18 213640046 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439887 2024-02-26 20:25:00.746 2024-02-26 20:35:02.039 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure the https://example.com/ 5776 439844 439844.439887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6213781020622 0 \N \N f 0 \N 2 121885407 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 438635 2024-02-25 20:42:31.832 2024-02-25 20:52:34.189 \N Specif https://example.com/ 18468 438634 438634.438635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.27715768015 0 \N \N f 0 \N 1 190337063 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 438647 2024-02-25 20:55:44.347 2024-02-25 21:05:45.966 \N Be right whatever forme https://example.com/ 14651 438634 438634.438647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.086451608649 0 \N \N f 0 \N 1 237947695 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 437348 2024-02-24 15:12:02.138 2024-02-24 15:22:03.228 \N Everything she discuss gun somebo https://example.com/ 20613 437319 437233.437270.437311.437319.437348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1748361023093 0 \N \N f 0 \N 4 207928460 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 435895 2024-02-23 06:49:28.272 2024-02-23 06:59:29.547 \N Speech also his. White PM rather return. Ind https://example.com/ 20495 435893 435891.435893.435895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2183753100218 0 \N \N f 0 \N 0 67037964 0 f f \N \N \N \N 435891 \N 0 0 \N \N f \N 436529 2024-02-23 18:24:32.333 2024-02-23 18:34:33.683 \N Small newspaper answer adult morning. Effort happy right deal. State sign day car election. https://example.com/ 17638 436523 436523.436529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04587583973964 0 \N \N f 0 \N 0 1223387 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 438487 2024-02-25 17:43:03.073 2024-02-25 17:53:04.024 Reality four attention. Whose each design pul Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nMaybe doctor performance school. Happen per https://example.com/ 18311 \N 438487 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.66305998438747 0 \N \N f 0 \N 5 104479018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437372 2024-02-24 15:39:24.956 2024-02-24 15:49:26.074 Foot upon smile pass house significant result small. Some hard religious consu Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 21386 \N 437372 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 17.3347139710469 0 \N \N f 0 \N 3 155202205 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435888 2024-02-23 06:39:28.166 2024-02-23 06:49:29.394 \N Small newspaper answer adult morning. Effort happy ri https://example.com/ 20280 435789 434795.435171.435789.435888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4937477804705 0 \N \N f 0 \N 0 181626017 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439416 2024-02-26 14:55:45.335 2024-02-26 15:05:46.923 \N Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nStation mean dinner level well window. Develop white performance yourself often https://example.com/ 18119 439206 439147.439206.439416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3683569331594 0 \N \N f 0 \N 3 14784135 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 439623 2024-02-26 17:01:52.27 2024-02-26 17:11:54.779 \N Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire https://example.com/ 17714 439606 439390.439392.439606.439623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5449675356801 0 \N \N f 0 \N 1 92151610 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 433844 2024-02-21 15:03:02.103 2024-02-21 15:13:03.183 Measure enjoy other scientist simple professor better. Check too design al Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often https://example.com/ 6149 \N 433844 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 23.3873419923641 0 \N \N f 0 \N 21 95658679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434099 2024-02-21 18:00:43.445 2024-02-21 18:10:44.378 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scien https://example.com/ 19638 433828 433828.434099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3471660238436 0 \N \N f 0 \N 3 45537728 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438464 2024-02-25 17:24:50.272 2024-02-25 17:34:51.87 \N Reach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. https://example.com/ 6578 438453 438405.438416.438453.438464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51585062074716 0 \N \N f 0 \N 5 205536826 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 435030 2024-02-22 14:24:43.654 2024-02-22 14:34:45.279 Begin kind newspaper game process fin Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nLeast start time do. Occur between avoid political use make. Nor no both https://example.com/ 19263 \N 435030 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.609235753583661 0 \N \N f 0 \N 30 161775884 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439593 2024-02-26 16:41:06.154 2024-02-26 16:51:07.832 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Near https://example.com/ 1433 439579 439082.439579.439593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8142868924954 0 \N \N f 0 \N 0 17865961 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435614 2024-02-22 22:33:18.941 2024-02-22 22:43:20.345 \N Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare m https://example.com/ 9611 435327 435327.435614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.29630240191903 0 \N \N f 0 \N 0 248038515 0 f f \N \N \N \N 435327 \N 0 0 \N \N f \N 438390 2024-02-25 15:54:51.444 2024-02-25 16:04:53.033 Boy force agency change score no job. Memory stay acros Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy en https://example.com/ 12744 \N 438390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.65915395671145 0 \N \N f 0 \N 2 49913136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435076 2024-02-22 15:01:32.029 2024-02-22 15:11:34.278 \N Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special https://example.com/ 21563 434953 434317.434688.434895.434953.435076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6876945946127 0 \N \N f 0 \N 0 69987030 0 f f \N \N \N \N 434317 \N 0 0 \N \N f \N 438642 2024-02-25 20:50:51.081 2024-02-25 21:00:52.756 \N Return te https://example.com/ 18076 438634 438634.438642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7150990508497 0 \N \N f 0 \N 1 60939730 0 f f \N \N \N \N 438634 \N 0 0 \N \N f \N 438634 2024-02-25 20:40:39.27 2024-02-25 20:50:40.13 World kind half pass Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early s https://example.com/ 16912 \N 438634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0804292969579 0 \N \N f 0 \N 10 65882547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438536 2024-02-25 18:17:48.095 2024-02-25 18:27:49.191 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything nu https://example.com/ 5527 438518 438405.438416.438453.438464.438510.438518.438536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.688128783392 0 \N \N f 0 \N 2 64601412 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438518 2024-02-25 18:05:48.413 2024-02-25 18:15:49.497 \N Company save finally water. Agree choice until mean https://example.com/ 2780 438510 438405.438416.438453.438464.438510.438518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4758637648149 0 \N \N f 0 \N 3 19921406 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438416 2024-02-25 16:25:48.787 2024-02-25 16:35:50.226 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management devel https://example.com/ 19987 438405 438405.438416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.08117210538526 0 \N \N f 0 \N 9 75250176 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 434262 2024-02-21 20:11:22.174 2024-02-21 20:21:23.831 \N Hard same business read re https://example.com/ 18448 434257 433978.434019.434095.434257.434262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.5990635484585 0 \N \N f 0 \N 2 71317007 0 f f \N \N \N \N 433978 \N 0 0 \N \N f \N 434310 2024-02-21 21:32:47.858 2024-02-21 21:42:49.226 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nSpeak organization direction school minute. Daughter mode https://example.com/ 20623 434298 434278.434298.434310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.713412675261 0 \N \N f 0 \N 15 198975368 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434411 2024-02-21 23:47:33.644 2024-02-21 23:57:34.844 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter https://example.com/ 20717 434310 434278.434298.434310.434411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7895348930459 0 \N \N f 0 \N 9 218921790 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 438453 2024-02-25 17:19:03.118 2024-02-25 17:29:05.563 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nLeg maintain action material little field. Difference realize phone https://example.com/ 19154 438416 438405.438416.438453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24239282585251 0 \N \N f 0 \N 8 50341938 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 434560 2024-02-22 05:08:34.024 2024-02-22 05:18:35.596 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly de https://example.com/ 12561 434488 434488.434560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.31274213537581 0 \N \N f 0 \N 6 194154586 0 f f \N \N \N \N 434488 \N 0 0 \N \N f \N 438709 2024-02-25 22:09:12.02 2024-02-25 22:19:13.904 \N Her particular kind sound hard big. Area door model need phone. Create executiv https://example.com/ 759 438703 438405.438507.438517.438588.438657.438696.438703.438709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.69002916078885 0 \N \N f 0 \N 3 10157516 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 434951 2024-02-22 13:23:18.71 2024-02-22 13:33:19.753 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. S https://example.com/ 2176 434940 433799.433829.433831.434831.434940.434951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85508768303222 0 \N \N f 0 \N 0 43897291 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 435600 2024-02-22 22:17:58.568 2024-02-22 22:27:59.704 \N Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe u https://example.com/ 1438 435598 435217.435541.435542.435598.435600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03216779637926 0 \N \N f 0 \N 1 232706010 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435542 2024-02-22 21:23:00.052 2024-02-22 21:33:01.477 \N Degree third deep cause buy put whatever. Gas human prepare condition free s https://example.com/ 19826 435541 435217.435541.435542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.05513731959 0 \N \N f 0 \N 3 64190328 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435763 2024-02-23 02:18:14.614 2024-02-23 02:28:16.071 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nFriend gr https://example.com/ 2775 435189 435046.435132.435149.435189.435763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.46112073750408 0 \N \N f 0 \N 0 219180050 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435220 2024-02-22 16:49:30.678 2024-02-22 16:59:31.826 \N Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always https://example.com/ 2061 435214 435046.435135.435162.435214.435220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.00789064283629 0 \N \N f 0 \N 10 241336185 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435122 2024-02-22 15:46:28.413 2024-02-22 15:56:30.601 \N Wish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nM https://example.com/ 2528 435046 435046.435122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7383099528481 0 \N \N f 0 \N 3 8575515 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435372 2024-02-22 18:38:17.451 2024-02-22 18:48:18.907 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure b https://example.com/ 21287 435145 435046.435127.435145.435372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79250409434964 0 \N \N f 0 \N 0 82126962 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435023 2024-02-22 14:20:08.079 2024-02-22 14:30:09.666 \N She loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administrat https://example.com/ 19821 434958 434958.435023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9196854224669 0 \N \N f 0 \N 2 28065451 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 439086 2024-02-26 11:03:31.273 2024-02-26 11:13:34.595 \N Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nPer seat key down rela https://example.com/ 21577 438765 438596.438765.439086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.39824709051734 0 \N \N f 0 \N 3 46830320 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 439122 2024-02-26 11:36:48.696 2024-02-26 11:46:50.237 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial sourc https://example.com/ 15103 439112 439082.439087.439112.439122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9890649771341 0 \N \N f 0 \N 0 84226509 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435132 2024-02-22 15:53:33.08 2024-02-22 16:03:34.781 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nOpportunity hospital address action return differe https://example.com/ 1534 435046 435046.435132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8716649783136 0 \N \N f 0 \N 5 116594999 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435560 2024-02-22 21:45:16.759 2024-02-22 21:55:17.711 \N Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think mili https://example.com/ 12261 435359 435359.435560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2439153516206 0 \N \N f 0 \N 2 108293748 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 435324 2024-02-22 17:53:40.244 2024-02-22 18:03:42.074 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nSmall enjoy manage service individual down. Season science various level benefit. S https://example.com/ 1433 435046 435046.435324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78730048506071 0 \N \N f 0 \N 5 5111164 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 433788 2024-02-21 14:07:51.895 2024-02-21 14:17:53.787 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy rep https://example.com/ 1480 433555 433555.433788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6596575703736 0 \N \N f 0 \N 2 150773314 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 435547 2024-02-22 21:31:29.7 2024-02-22 21:41:31.41 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball spec https://example.com/ 20109 435545 435046.435135.435292.435504.435545.435547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3662140821869 0 \N \N f 0 \N 3 236628237 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439369 2024-02-26 14:19:52.813 2024-02-26 14:29:55.634 \N Career si https://example.com/ 18392 439358 439358.439369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6482594961226 0 \N \N f 0 \N 1 158445317 0 f f \N \N \N \N 439358 \N 0 0 \N \N f \N 435885 2024-02-23 06:32:36.198 2024-02-23 06:42:37.968 \N Something black staff. Glass hospital force stand every https://example.com/ 636 435769 435769.435885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8567882325075 0 \N \N f 0 \N 0 165764438 0 f f \N \N \N \N 435769 \N 0 0 \N \N f \N 439358 2024-02-26 14:12:17.182 2024-02-26 14:22:18.685 Technology i Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. In https://example.com/ 1737 \N 439358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27891335489812 0 \N \N f 0 \N 13 241034203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435875 2024-02-23 06:04:30.008 2024-02-23 06:14:31.576 \N Practice pressure help https://example.com/ 3544 435835 435579.435835.435875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19675513013355 0 \N \N f 0 \N 0 29119811 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 439109 2024-02-26 11:28:45.207 2024-02-26 11:38:46.905 \N Risk past without recognize series career either. Ahead approach animal that whether. Neces https://example.com/ 20302 439105 439082.439092.439095.439097.439101.439105.439109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8474004050981 0 \N \N f 0 \N 0 14793960 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435548 2024-02-22 21:32:19.576 2024-02-22 21:42:21.491 \N Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Th https://example.com/ 20258 435127 435046.435127.435548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4025293109257 0 \N \N f 0 \N 1 31392031 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435127 2024-02-22 15:51:24.273 2024-02-22 16:01:26.608 \N Enough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nCustomer reach nice. At himself those always appear how. Court ni https://example.com/ 2233 435046 435046.435127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0825653955142 0 \N \N f 0 \N 4 172994484 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 435759 2024-02-23 02:07:40.065 2024-02-23 02:17:41.621 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between https://example.com/ 4250 435124 435046.435059.435124.435759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5967544828721 0 \N \N f 0 \N 2 163825263 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 439099 2024-02-26 11:20:57.699 2024-02-26 11:30:59.475 \N Every east political drug. Important game subject seat seek college learn. Law too simply https://example.com/ 20353 439082 439082.439099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.9585524576564 0 \N \N f 0 \N 3 26753360 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435684 2024-02-23 00:03:12.14 2024-02-23 00:13:13.615 \N Hotel https://example.com/ 1060 435649 435046.435135.435162.435214.435220.435235.435649.435684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.41628389378192 0 \N \N f 0 \N 0 232548539 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 434791 2024-02-22 10:56:18.493 2024-02-22 11:06:19.922 Piece conference several. Vote le International yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat https://example.com/ 16193 \N 434791 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.974240646348328 0 \N \N f 0 \N 21 247575508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434385 2024-02-21 23:13:43.596 2024-02-21 23:23:44.898 Baby body day citiz Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very. https://example.com/ 12736 \N 434385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9160577888659 0 \N \N f 0 \N 3 38941173 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435327 2024-02-22 17:55:10.098 2024-02-22 18:05:11.479 Floor white civil remain. Purp Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 19527 \N 435327 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.62770881438428 0 \N \N f 0 \N 3 137946206 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435457 2024-02-22 19:47:14.364 2024-02-22 19:57:16.382 Sound clearly happen age onto imagine. Bed pattern happy other. Actually t Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base acros https://example.com/ 1729 \N 435457 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.861697852514247 0 \N \N f 0 \N 7 55266486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434410 2024-02-21 23:47:19.578 2024-02-21 23:57:21.313 Small enjoy manage se Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. https://example.com/ 20911 \N 434410 \N \N \N \N \N \N \N \N art \N ACTIVE \N 29.8850500370052 0 \N \N f 0 \N 5 65189205 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434396 2024-02-21 23:33:48.575 2024-02-21 23:43:50.248 Center stand near long painting le Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million https://example.com/ 1769 \N 434396 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 26.7774984096301 0 \N \N f 0 \N 8 53686171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435577 2024-02-22 22:00:28.085 2024-02-22 22:10:29.06 Thousand billion get leg now sort even. Growth Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish. https://example.com/ 7913 \N 435577 \N \N \N \N \N \N \N \N security \N ACTIVE \N 17.9227323593808 0 \N \N f 0 \N 4 182453010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435402 2024-02-22 19:00:05.564 2024-02-22 19:10:06.306 About cell note lot page. Feel manage language. Ro \N https://example.com/ 21296 \N 435402 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.0804066174443 0 \N \N f 0 \N 4 26236469 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436591 2024-02-23 19:39:26.837 2024-02-23 19:49:28.633 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part hous https://example.com/ 1480 436383 435907.436019.436040.436383.436591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.786069164284 0 \N \N f 0 \N 0 129478280 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 437166 2024-02-24 13:17:56.759 2024-02-24 13:27:58.584 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nServe deep station proba https://example.com/ 11898 437164 435905.436208.437157.437164.437166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0874638583516 0 \N \N f 0 \N 0 212889183 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 435896 2024-02-23 06:49:42.205 2024-02-23 06:59:43.574 \N Keep third p https://example.com/ 837 434761 433828.434475.434667.434747.434761.435896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.962230637012 0 \N \N f 0 \N 0 68758918 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 435852 2024-02-23 05:23:36.582 2024-02-23 05:33:37.741 \N Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character offic https://example.com/ 20045 435806 435806.435852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4569730237135 0 \N \N f 0 \N 0 246634970 0 f f \N \N \N \N 435806 \N 0 0 \N \N f \N 434934 2024-02-22 13:05:14.999 2024-02-22 13:15:16.549 Hotel remember debate strategy. Di Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success. https://example.com/ 18930 \N 434934 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.1924587113815 0 \N \N f 0 \N 2 120616050 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435886 2024-02-23 06:37:09.352 2024-02-23 06:47:10.507 \N By fight several talk. Minute probably fis https://example.com/ 20327 435639 435639.435886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62240774098428 0 \N \N f 0 \N 0 184296859 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 439296 2024-02-26 13:30:58.191 2024-02-26 13:40:59.405 \N Focus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nControl century lay already range. Scene easy nice h https://example.com/ 17172 439206 439147.439206.439296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.39591380245588 0 \N \N f 0 \N 1 219492711 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 435639 2024-02-22 23:02:20.595 2024-02-22 23:12:21.663 Pattern someone notice power fly. Again Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow c https://example.com/ 720 \N 435639 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3029786075988 0 \N \N f 0 \N 17 212586981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439206 2024-02-26 12:49:24.905 2024-02-26 12:59:27.695 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Prett https://example.com/ 12951 439147 439147.439206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9750461873499 0 \N \N f 0 \N 6 222199344 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 435876 2024-02-23 06:05:44.18 2024-02-23 06:15:45.795 \N These https://example.com/ 9426 435837 434278.434503.434522.434598.434602.435622.435772.435775.435811.435837.435876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0607675539077 0 \N \N f 0 \N 0 117106275 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435837 2024-02-23 04:52:10.044 2024-02-23 05:02:11.535 \N Each any growth human seek or exp https://example.com/ 5752 435811 434278.434503.434522.434598.434602.435622.435772.435775.435811.435837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8477297771511 0 \N \N f 0 \N 1 12040464 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 439827 2024-02-26 19:42:50.654 2024-02-26 19:52:51.834 \N East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. Tha https://example.com/ 19826 439821 435746.435760.439801.439808.439812.439821.439827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.4816380766208 0 \N \N f 0 \N 2 14684014 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 435899 2024-02-23 06:54:29.705 2024-02-23 07:04:31.532 \N Hold show assume travel economy. Ground then any time civil https://example.com/ 6533 435669 435030.435141.435669.435899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74278346913116 0 \N \N f 0 \N 3 60651474 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 433247 2024-02-21 00:23:46.842 2024-02-21 00:33:48.051 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nLarge direction focus detai https://example.com/ 19857 433186 432920.433186.433247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5650719045177 0 \N \N f 0 \N 3 63418461 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 435884 2024-02-23 06:32:00.444 2024-02-23 06:32:06.382 \N Doctor operation because training lose meeting western above. Variou https://example.com/ 8289 349 349.435884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6098234256654 0 \N \N f 0 \N 0 162413881 0 f f \N \N \N \N 349 \N 0 0 \N \N f \N 435897 2024-02-23 06:53:18.628 2024-02-23 07:03:20.339 \N Often culture through program memory mind go. Wrong statement discussion. Recognize report something https://example.com/ 21061 435769 435769.435897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6734181423436 0 \N \N f 0 \N 0 201328297 0 f f \N \N \N \N 435769 \N 0 0 \N \N f \N 435893 2024-02-23 06:45:12.691 2024-02-23 06:55:14.098 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. https://example.com/ 1433 435891 435891.435893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7611623211047 0 \N \N f 0 \N 1 65788419 0 f f \N \N \N \N 435891 \N 0 0 \N \N f \N 439534 2024-02-26 16:00:31.597 2024-02-26 16:10:33.83 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea pro https://example.com/ 759 439081 439026.439081.439534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2624212165787 0 \N \N f 0 \N 1 23451701 0 f f \N \N \N \N 439026 \N 0 0 \N \N f \N 436360 2024-02-23 16:08:09.532 2024-02-23 16:18:10.594 \N Career pla https://example.com/ 19815 436142 435746.436142.436360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5411649252393 0 \N \N f 0 \N 0 234657604 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 441168 2024-02-27 22:30:31.989 2024-02-27 22:40:33.408 Both peace drug most bring institution. Mean become curren Southern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political for https://example.com/ 15160 \N 441168 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 20.0495326126636 0 \N \N f 0 \N 0 242251879 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435881 2024-02-23 06:24:52.057 2024-02-23 06:34:53.242 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring https://example.com/ 17094 434318 434278.434318.435881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.86983880425124 0 \N \N f 0 \N 0 195609418 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435877 2024-02-23 06:11:57.519 2024-02-23 06:21:59.218 Most which usually increase event at hold. End c Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nPhysical https://example.com/ 17042 \N 435877 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.3443249822876 0 \N \N f 0 \N 0 30029609 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435826 2024-02-23 04:15:52.896 2024-02-23 04:25:54.539 After increase change education budget. Or tend ci Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management. https://example.com/ 726 \N 435826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1252914917238 0 \N \N f 0 \N 1 161942022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435139 2024-02-22 15:57:57.492 2024-02-22 16:07:58.489 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Anima https://example.com/ 1673 434957 434957.435139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00644508963889 0 \N \N f 0 \N 0 108175042 0 f f \N \N \N \N 434957 \N 0 0 \N \N f \N 436107 2024-02-23 12:39:10.461 2024-02-23 12:49:11.784 \N Plan really necessary boy a consider. Atto https://example.com/ 18528 436037 436028.436037.436107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4423358068661 0 \N \N f 0 \N 0 176470161 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 434957 2024-02-22 13:28:47.513 2024-02-22 13:38:48.703 Off behind four class talk. Nor these prove tend itse Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year. https://example.com/ 18809 \N 434957 \N \N \N \N \N \N \N \N science \N ACTIVE \N 28.202304343702 0 \N \N f 0 \N 5 120319179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439417 2024-02-26 14:59:23.362 2024-02-26 15:09:24.904 \N Ten answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form sci https://example.com/ 21263 439413 439413.439417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.99864794935541 0 \N \N f 0 \N 1 157547577 0 f f \N \N \N \N 439413 \N 0 0 \N \N f \N 435790 2024-02-23 03:14:58.296 2024-02-23 03:24:59.59 \N F https://example.com/ 17275 434902 434795.434902.435790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31236663693709 0 \N \N f 0 \N 0 152041891 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 437410 2024-02-24 16:01:35.916 2024-02-24 16:11:37.206 \N Beyon https://example.com/ 18271 437087 437087.437410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4643403671747 0 \N \N f 0 \N 0 242459053 0 f f \N \N \N \N 437087 \N 0 0 \N \N f \N 435902 2024-02-23 07:00:20.182 2024-02-23 07:10:21.84 \N Sense edge father camera. Region https://example.com/ 18745 435850 435488.435776.435850.435902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.33526241660104 0 \N \N f 0 \N 0 121470423 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 436040 2024-02-23 11:21:20.736 2024-02-23 11:31:22.108 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine https://example.com/ 1626 436019 435907.436019.436040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2729810396697 0 \N \N f 0 \N 2 86950994 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436644 2024-02-23 20:52:05.817 2024-02-23 21:02:06.627 \N Red tough always try. Police clear hundred box. Ahead blue stud https://example.com/ 20980 436633 436466.436475.436633.436644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.186858597795 0 \N \N f 0 \N 0 3884518 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 435765 2024-02-23 02:27:39.266 2024-02-23 02:37:41.952 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new what https://example.com/ 21446 434902 434795.434902.435765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9720905464046 0 \N \N f 0 \N 0 101798925 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436677 2024-02-23 21:39:48.928 2024-02-23 21:49:50.305 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Demo https://example.com/ 985 426778 426400.426778.436677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.694159436836 0 \N \N f 0 \N 0 182482724 0 f f \N \N \N \N 426400 \N 0 0 \N \N f \N 435930 2024-02-23 07:48:58.352 2024-02-23 07:58:59.819 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nProduct https://example.com/ 19036 434905 434905.435930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2793038837381 0 \N \N f 0 \N 0 67512802 0 f f \N \N \N \N 434905 \N 0 0 \N \N f \N 435551 2024-02-22 21:38:18.574 2024-02-22 21:48:19.733 Pattern fear term. Second always control type movie. Girl at mov Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home. https://example.com/ 2710 \N 435551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2546036518929 0 \N \N f 0 \N 11 236629458 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435906 2024-02-23 07:10:33.337 2024-02-23 07:20:33.861 Experience base struct Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember https://example.com/ 10554 \N 435906 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 0.21172615879312 0 \N \N f 0 \N 3 89033300 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435549 2024-02-22 21:36:26.792 2024-02-22 21:46:28.767 \N Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step https://example.com/ 13133 435517 434795.435517.435549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8917455620941 0 \N \N f 0 \N 1 63452327 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435917 2024-02-23 07:38:44.942 2024-02-23 07:48:46.489 \N Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Re https://example.com/ 21036 435657 435657.435917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7932874632736 0 \N \N f 0 \N 0 175030001 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 434978 2024-02-22 13:45:24.612 2024-02-22 13:55:26.2 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discu https://example.com/ 14247 434791 434791.434978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0953751987731 0 \N \N f 0 \N 5 167746018 0 f f \N \N \N \N 434791 \N 0 0 \N \N f \N 435511 2024-02-22 20:53:40.436 2024-02-22 21:03:41.768 \N Life foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern s https://example.com/ 19494 435355 435314.435355.435511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72818468948882 0 \N \N f 0 \N 0 44092390 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435695 2024-02-23 00:18:47.818 2024-02-23 00:28:48.991 Need movie coach nation news in abo Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water proces https://example.com/ 4378 \N 435695 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 22.3435773575788 0 \N \N f 0 \N 0 195056498 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435495 2024-02-22 20:40:14.452 2024-02-22 20:50:15.575 Store special above price general. Dr Purpose add when information sing like recognize. Career bad resource. Point cr https://example.com/ 1180 \N 435495 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 14.9051071126713 0 \N \N f 0 \N 4 155003065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442085 2024-02-28 14:48:43.435 2024-02-28 14:58:46.542 \N Would role them war ten stop bad. Which much reflect ol https://example.com/ 20680 442053 441695.441885.442053.442085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59150170549974 0 \N \N f 0 \N 1 224312658 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 435918 2024-02-23 07:39:49.157 2024-02-23 07:49:50.745 \N Own about father behind r https://example.com/ 21619 435747 435610.435747.435918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9051340322629 0 \N \N f 0 \N 0 245962076 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 435860 2024-02-23 05:36:48.1 2024-02-23 05:46:49.683 \N Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wond https://example.com/ 20881 435847 435847.435860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.35521826459109 0 \N \N f 0 \N 2 160231292 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 437218 2024-02-24 14:00:48.581 2024-02-24 14:10:49.762 Drive south traditional new what unit Find building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. https://example.com/ 20340 \N 437218 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.25641783569207 0 \N \N f 0 \N 16 129838488 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439585 2024-02-26 16:37:49.186 2024-02-26 16:47:51.67 Role number law science. Sing fight use deve Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Par https://example.com/ 20715 \N 439585 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 24.8506805900502 0 \N \N f 0 \N 5 1445434 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435913 2024-02-23 07:24:04.039 2024-02-23 07:34:05.35 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add iss https://example.com/ 7097 435610 435610.435913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.385031518553411 0 \N \N f 0 \N 0 44507270 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 438589 2024-02-25 19:25:32.161 2024-02-25 19:35:35.097 \N Chance near song measure every physical. Quickly white usually interes https://example.com/ 17838 438582 438325.438459.438582.438589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1430358866795 0 \N \N f 0 \N 1 19217567 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 443593 2024-02-29 14:46:45.537 2024-02-29 14:56:46.577 Inside nor professional partner new design machine. Fire occur leave imag Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside det https://example.com/ 11450 \N 443593 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.2164225155659 0 \N \N f 0 \N 17 20580576 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435812 2024-02-23 03:56:00.456 2024-02-23 04:06:02.428 Machine sell woman west bed risk. Region scientist test event h Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five. https://example.com/ 2711 \N 435812 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8107588077513 0 \N \N f 0 \N 5 210920576 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435931 2024-02-23 07:49:49.419 2024-02-23 07:59:50.503 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. https://example.com/ 1785 435125 435125.435931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4365840445645 0 \N \N f 0 \N 0 61573977 0 f f \N \N \N \N 435125 \N 0 0 \N \N f \N 435910 2024-02-23 07:19:44.169 2024-02-23 07:29:45.636 Investment bad cultural turn with here Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nMiddle withou https://example.com/ 18476 \N 435910 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.322195375244121 0 \N \N f 0 \N 0 244018907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438582 2024-02-25 19:13:12.158 2024-02-25 19:23:13.227 \N Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like rec https://example.com/ 11192 438459 438325.438459.438582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.70514482411036 0 \N \N f 0 \N 2 237604039 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 435934 2024-02-23 07:54:28.865 2024-02-23 08:04:29.745 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case https://example.com/ 1291 435120 435120.435934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.453352163176 0 \N \N f 0 \N 2 125398590 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 435915 2024-02-23 07:34:28.534 2024-02-23 07:44:30.146 \N Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store th https://example.com/ 19031 435914 435914.435915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.06587457110536 0 \N \N f 0 \N 0 241627229 0 f f \N \N \N \N 435914 \N 0 0 \N \N f \N 435709 2024-02-23 00:35:19.255 2024-02-23 00:45:20.514 \N Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human sci https://example.com/ 9364 435679 435679.435709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9113395298848 0 \N \N f 0 \N 1 206737012 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 435823 2024-02-23 04:12:39.136 2024-02-23 04:22:40.475 \N Machine thousand determine newspaper four. Street play base. Everyone forc https://example.com/ 15351 435679 435679.435823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7004113394925 0 \N \N f 0 \N 2 164007840 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 437294 2024-02-24 14:45:46.18 2024-02-24 14:55:47.47 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service pro https://example.com/ 16753 437158 437044.437158.437294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9914533567479 0 \N \N f 0 \N 0 54877870 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 435923 2024-02-23 07:41:49.974 2024-02-23 07:51:51.975 \N Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why rais https://example.com/ 21352 435823 435679.435823.435923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5939087145049 0 \N \N f 0 \N 1 230916704 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 439401 2024-02-26 14:45:51.904 2024-02-26 14:55:53.971 \N Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nSpecific listen https://example.com/ 20523 439298 439298.439401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6504418148064 0 \N \N f 0 \N 2 124523489 0 f f \N \N \N \N 439298 \N 0 0 \N \N f \N 439606 2024-02-26 16:54:12.573 2024-02-26 17:04:13.386 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop h https://example.com/ 21332 439392 439390.439392.439606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6595871574741 0 \N \N f 0 \N 2 138298794 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 438710 2024-02-25 22:09:52.056 2024-02-25 22:19:53.357 \N Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nFederal anyone interview c https://example.com/ 9367 438696 438405.438507.438517.438588.438657.438696.438710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3712220003743 0 \N \N f 0 \N 1 44279225 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438696 2024-02-25 21:59:03.24 2024-02-25 22:10:04.344 \N Take throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college https://example.com/ 14651 438657 438405.438507.438517.438588.438657.438696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.798219781074 0 \N \N f 0 \N 7 61911742 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438657 2024-02-25 21:01:30.886 2024-02-25 21:11:31.731 \N Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything m https://example.com/ 15843 438588 438405.438507.438517.438588.438657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4577725376967 0 \N \N f 0 \N 8 82192878 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438588 2024-02-25 19:24:02.423 2024-02-25 19:34:03.765 \N According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. A https://example.com/ 1726 438517 438405.438507.438517.438588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3638439227509 0 \N \N f 0 \N 9 74568313 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438517 2024-02-25 18:04:19.094 2024-02-25 18:14:19.831 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nDirection business early probably black method spend north https://example.com/ 669 438507 438405.438507.438517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1535413392896 0 \N \N f 0 \N 13 28948062 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 438507 2024-02-25 17:55:56.82 2024-02-25 18:05:58.073 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning https://example.com/ 19615 438405 438405.438507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0609026868344 0 \N \N f 0 \N 16 65132495 0 f f \N \N \N \N 438405 \N 0 0 \N \N f \N 444304 2024-02-29 21:16:55.588 2024-02-29 21:26:57.615 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular https://example.com/ 17522 444139 443919.443953.444139.444304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2722713826044 0 \N \N f 0 \N 2 64322726 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 435284 2024-02-22 17:31:04.838 2024-02-22 17:41:05.499 Reach matter agency population. Capital PM pass item. Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport. https://example.com/ 5195 \N 435284 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 17.0533212484679 0 \N \N f 0 \N 4 132099434 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439108 2024-02-26 11:27:54.461 2024-02-26 11:37:56.103 \N She under certainly state. Left rest everything health sit such. Long two couple eat view article. A https://example.com/ 20555 439104 439082.439092.439095.439097.439101.439104.439108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61655399488657 0 \N \N f 0 \N 1 164227196 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439154 2024-02-26 12:16:43.231 2024-02-26 12:26:45.242 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank https://example.com/ 9364 439130 439130.439154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37239008983603 0 \N \N f 0 \N 3 190487725 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 435937 2024-02-23 08:05:08.081 2024-02-23 08:15:09.61 \N Agree such recognize fast various. Address anyone glass smile first. Learn https://example.com/ 19030 435928 435924.435928.435937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9036580350104 0 \N \N f 0 \N 1 196772174 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 439421 2024-02-26 15:01:48.71 2024-02-26 15:11:49.821 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nCommunity s https://example.com/ 1626 439397 439315.439397.439421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1628166411606 0 \N \N f 0 \N 0 241280279 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 438527 2024-02-25 18:11:59.423 2024-02-25 18:22:00.979 \N Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportu https://example.com/ 20597 438488 436752.438488.438527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.37508990350374 0 \N \N f 0 \N 0 50697145 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 438488 2024-02-25 17:44:30.918 2024-02-25 17:54:32.194 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table https://example.com/ 624 436752 436752.438488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67750593423868 0 \N \N f 0 \N 1 58547205 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 442530 2024-02-28 18:13:33.947 2024-02-28 18:23:35.53 \N Girl someone prepare. Realize however yeah staff kitchen gas. https://example.com/ 831 442513 442513.442530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0019493454026 0 \N \N f 0 \N 0 75227158 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 435405 2024-02-22 19:01:58.292 2024-02-22 19:11:59.603 \N Industry great onto trial wind. Rule radio trial she its under https://example.com/ 18557 435404 435314.435355.435404.435405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52629627795403 0 \N \N f 0 \N 1 237380282 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 435497 2024-02-22 20:40:59.676 2024-02-22 20:51:00.778 Billion here large general understand. Sit action cold which. Approach leve Focus available yeah law. Down there avoid. Program defense last know. Sin https://example.com/ 17714 \N 435497 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 25.5033926386363 0 \N \N f 0 \N 9 89496386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439228 2024-02-26 12:56:43.621 2024-02-26 13:06:44.766 \N Morning create future popular. Shoulder animal socie https://example.com/ 1745 439139 439139.439228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7064833442535 0 \N \N f 0 \N 0 169267459 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 439207 2024-02-26 12:49:38.986 2024-02-26 12:59:41.309 \N Suggest officer purpose professor great school cut. https://example.com/ 18178 439139 439139.439207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.18789327262008 0 \N \N f 0 \N 0 239716733 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 435900 2024-02-23 06:56:26.655 2024-02-23 07:06:28.701 \N Yes but truth g https://example.com/ 837 435413 435375.435413.435900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85751436444573 0 \N \N f 0 \N 0 207887562 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 435413 2024-02-22 19:08:48.903 2024-02-22 19:18:50.075 \N Never hotel town trip th https://example.com/ 8289 435375 435375.435413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0530603615691 0 \N \N f 0 \N 1 98054559 0 f f \N \N \N \N 435375 \N 0 0 \N \N f \N 435935 2024-02-23 07:55:29.948 2024-02-23 08:05:31.972 Newspaper wall begin over serious hand. Remember great meet theory local forwa Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current. https://example.com/ 13398 \N 435935 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.39954751992114 0 \N \N f 0 \N 0 59060467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436069 2024-02-23 11:48:20.543 2024-02-23 11:58:22.125 \N Sell hun https://example.com/ 5978 436046 435907.436014.436046.436069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.099986081092 0 \N \N f 0 \N 0 248096430 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 435308 2024-02-22 17:44:53.186 2024-02-22 17:54:54.709 \N Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nReligious same wish cost make. E https://example.com/ 2206 435274 434795.435274.435308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9149077356216 0 \N \N f 0 \N 3 21817219 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435274 2024-02-22 17:25:56.679 2024-02-22 17:35:58.154 \N Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify in https://example.com/ 15594 434795 434795.435274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.713909090391 0 \N \N f 0 \N 5 72346206 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 435960 2024-02-23 09:01:23.729 2024-02-23 09:11:25.444 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nMeasure enjoy other scientist https://example.com/ 3409 435937 435924.435928.435937.435960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45826330760698 0 \N \N f 0 \N 0 8304474 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 435964 2024-02-23 09:18:41.217 2024-02-23 09:28:42.549 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress https://example.com/ 11609 435488 435488.435964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4831302919831 0 \N \N f 0 \N 0 31223190 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 435667 2024-02-22 23:42:10.251 2024-02-22 23:52:12.403 Response finally play po Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience scie https://example.com/ 16276 \N 435667 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 14.9217774355558 0 \N \N f 0 \N 3 153309747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435976 2024-02-23 09:43:23.068 2024-02-23 09:53:24.446 \N Position see least suddenly just orde https://example.com/ 7659 435924 435924.435976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4318019215991 0 \N \N f 0 \N 0 119141571 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 435401 2024-02-22 18:59:35.81 2024-02-22 19:09:37.173 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Pl https://example.com/ 1620 435261 435261.435401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3966273960652 0 \N \N f 0 \N 3 163611310 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435962 2024-02-23 09:10:38.694 2024-02-23 09:20:40.454 \N Degree third deep cause buy https://example.com/ 1552 435922 435922.435962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1400263616268 0 \N \N f 0 \N 1 193895390 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 439187 2024-02-26 12:38:55.948 2024-02-26 12:48:56.88 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care lea https://example.com/ 19524 439153 439082.439153.439187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0360222462565 0 \N \N f 0 \N 1 168601447 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436726 2024-02-23 23:24:44.382 2024-02-23 23:34:46.232 \N Th https://example.com/ 18363 436350 435359.435786.436350.436726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79270323246726 0 \N \N f 0 \N 0 69644160 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 439934 2024-02-26 20:48:19.507 2024-02-26 20:58:21.064 \N Smile https://example.com/ 4538 439930 439844.439854.439914.439922.439930.439934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8570797442848 0 \N \N f 0 \N 2 94576168 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 435867 2024-02-23 05:51:35.482 2024-02-23 06:01:37.292 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Th https://example.com/ 664 435557 435261.435410.435420.435557.435867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1344005624558 0 \N \N f 0 \N 0 155943944 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435866 2024-02-23 05:48:57.119 2024-02-23 05:58:59.173 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nBlue the that local central middle themselves effe https://example.com/ 16556 435420 435261.435410.435420.435866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2501472722157 0 \N \N f 0 \N 0 41831232 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 437168 2024-02-24 13:19:27.556 2024-02-24 13:29:28.525 \N Stage can fish building senior. Through position capital offic https://example.com/ 20614 437044 437044.437168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3739177505195 0 \N \N f 0 \N 5 1748891 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 435561 2024-02-22 21:46:33.813 2024-02-22 21:56:35.307 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goa https://example.com/ 4014 435377 435217.435377.435561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0982576897934 0 \N \N f 0 \N 0 135389851 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 435595 2024-02-22 22:15:23.895 2024-02-22 22:25:25.528 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn https://example.com/ 4043 435314 435314.435595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8920066547827 0 \N \N f 0 \N 0 222257070 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 439930 2024-02-26 20:45:49.933 2024-02-26 20:55:51.11 \N Second point director operation. Soon face realize born head far half https://example.com/ 4802 439922 439844.439854.439914.439922.439930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4701503001699 0 \N \N f 0 \N 3 19442068 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 437047 2024-02-24 11:05:32.986 2024-02-24 11:15:34.377 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. He https://example.com/ 20023 436977 436977.437047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03622297395685 0 \N \N f 0 \N 1 132583758 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 439104 2024-02-26 11:25:46.084 2024-02-26 11:35:47.834 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minut https://example.com/ 1173 439101 439082.439092.439095.439097.439101.439104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04186572968145 0 \N \N f 0 \N 2 219439907 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435999 2024-02-23 10:10:32.347 2024-02-23 10:20:33.78 Economic clearly dark. Understand remain performance wa Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south. https://example.com/ 11897 \N 435999 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 14.0534283304016 0 \N \N f 0 \N 0 212673802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435997 2024-02-23 10:07:50.352 2024-02-23 10:17:51.798 \N Right term sell sho https://example.com/ 9366 435971 435944.435967.435971.435997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8894960439043 0 \N \N f 0 \N 0 29988198 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 435969 2024-02-23 09:29:12.745 2024-02-23 09:39:14.244 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nMost describe t https://example.com/ 9863 434795 434795.435969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8324526552549 0 \N \N f 0 \N 1 64193551 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436003 2024-02-23 10:17:59.647 2024-02-23 10:28:01.888 \N Garden morning compare federal. A https://example.com/ 7998 435979 435944.435979.436003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7345632760959 0 \N \N f 0 \N 0 89290044 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 435977 2024-02-23 09:44:02.695 2024-02-23 09:54:04.209 \N Stage can fish building https://example.com/ 14909 435969 434795.435969.435977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9729693401593 0 \N \N f 0 \N 0 102530845 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 439095 2024-02-26 11:17:16.3 2024-02-26 11:27:17.689 \N Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site th https://example.com/ 20636 439092 439082.439092.439095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0867131949414 0 \N \N f 0 \N 10 73197898 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439092 2024-02-26 11:11:58.878 2024-02-26 11:22:00.09 \N Plan really necessary boy a https://example.com/ 1272 439082 439082.439092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5785286698274 0 \N \N f 0 \N 15 57733729 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 437422 2024-02-24 16:13:06.441 2024-02-24 16:23:07.924 \N True quickly government finish region https://example.com/ 12566 436837 436837.437422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49055817453298 0 \N \N f 0 \N 1 104566377 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 438917 2024-02-26 06:14:00.866 2024-02-26 06:24:02.219 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social https://example.com/ 19465 438707 281307.281336.281505.281533.282421.282449.282453.284152.284210.284394.437922.438707.438917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1747303036625 0 \N \N f 0 \N 1 35313581 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 439097 2024-02-26 11:19:17.87 2024-02-26 11:29:19.742 \N Board Mr bar white alone hot. Court c https://example.com/ 16556 439095 439082.439092.439095.439097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.620478919442888 0 \N \N f 0 \N 9 135636775 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436006 2024-02-23 10:19:48.13 2024-02-23 10:29:49.477 Black leg through occur possible century far. Part fly follow public with mana Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very. https://example.com/ 21062 \N 436006 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.36965203863405 0 \N \N f 0 \N 0 124006386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436187 2024-02-23 13:36:34.985 2024-02-23 13:46:36.371 \N Caree https://example.com/ 12721 436183 417090.417145.436183.436187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.48897068126659 0 \N \N f 0 \N 0 44726555 0 f f \N \N \N \N 417090 \N 0 0 \N \N f \N 439234 2024-02-26 12:58:31.583 2024-02-26 13:08:33.604 \N Majority foot simply point day chance rest. Sister notice re https://example.com/ 5757 439139 439139.439234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6622920823413 0 \N \N f 0 \N 0 1872676 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 438707 2024-02-25 22:07:31.806 2024-02-25 22:17:33.7 \N Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nField rock decide physical role https://example.com/ 17592 437922 281307.281336.281505.281533.282421.282449.282453.284152.284210.284394.437922.438707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5696723935663 0 \N \N f 0 \N 3 74524350 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 438637 2024-02-25 20:47:19.224 2024-02-25 20:57:20.323 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nExplain order help within. Effort get edge open nothing. With big meet https://example.com/ 2525 438605 438605.438637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6956970073884 0 \N \N f 0 \N 3 38693475 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 435927 2024-02-23 07:46:11.872 2024-02-23 07:56:14.285 \N Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nAnyone hims https://example.com/ 6537 434318 434278.434318.435927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6639989457336 0 \N \N f 0 \N 0 230512963 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 438605 2024-02-25 19:58:18.194 2024-02-25 20:08:19.953 Rich value involve they almost g Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting cha https://example.com/ 19126 \N 438605 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.792894520113 0 \N \N f 0 \N 12 241385367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 431190 2024-02-19 18:14:44.867 2024-02-19 18:24:46.077 \N She loss lawyer raise without https://example.com/ 4378 405813 405813.431190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4277206170887 0 \N \N f 0 \N 1 210092074 0 f f \N \N \N \N 405813 \N 0 0 \N \N f \N 441331 2024-02-28 01:19:10.259 2024-02-28 01:29:11.564 \N Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience https://example.com/ 6471 441318 441318.441331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4460399303068 0 \N \N f 0 \N 0 190264769 0 f f \N \N \N \N 441318 \N 0 0 \N \N f \N 435878 2024-02-23 06:13:19.382 2024-02-23 06:23:21.286 \N Beyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Mus https://example.com/ 19398 434318 434278.434318.435878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.17893944897484 0 \N \N f 0 \N 0 157180255 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435858 2024-02-23 05:34:15.774 2024-02-23 05:44:17.376 \N Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave g https://example.com/ 15386 434318 434278.434318.435858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1696256551929 0 \N \N f 0 \N 0 87888929 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435981 2024-02-23 09:51:36.691 2024-02-23 10:01:38.283 Against involve moment myself without. Get chance wal Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information. https://example.com/ 670 \N 435981 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.0172110859343 0 \N \N f 0 \N 0 159497431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441347 2024-02-28 01:28:57.959 2024-02-28 01:38:59.282 \N Theory teach dream home https://example.com/ 18745 441236 441198.441236.441347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3643157708743 0 \N \N f 0 \N 0 92025478 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 436083 2024-02-23 12:04:43.8 2024-02-23 12:14:45.264 \N Material focus experience picture. Future still full blood suggest win. Member far light no focus https://example.com/ 5825 435924 435924.436083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2406709979894 0 \N \N f 0 \N 0 199253680 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 436035 2024-02-23 11:13:10.076 2024-02-23 11:23:11.266 \N House west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nFar c https://example.com/ 20109 435596 435596.436035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1289909956901 0 \N \N f 0 \N 0 204032690 0 f f \N \N \N \N 435596 \N 0 0 \N \N f \N 436016 2024-02-23 10:38:18.264 2024-02-23 10:48:19.23 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western https://example.com/ 14774 435907 435907.436016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3155804698672 0 \N \N f 0 \N 3 114865655 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 437396 2024-02-24 15:56:39.876 2024-02-24 16:06:40.982 Threat successful admit write. Likely first response thing mi Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nSite product one fact loss. Site yeah position student news. Skin particular https://example.com/ 17891 \N 437396 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.31231454502784 0 \N \N f 0 \N 5 247987674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437205 2024-02-24 13:52:19.347 2024-02-24 14:02:20.934 List professional ev Key third PM painting wrong gen https://example.com/ 19527 \N 437205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4219518407368 0 \N \N f 0 \N 4 123154293 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440944 2024-02-27 19:04:40.866 2024-02-27 19:14:42.584 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nBuild toward black meet no your. Face stay make fill then situation https://example.com/ 20464 440940 440725.440874.440909.440940.440944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7959456503368 0 \N \N f 0 \N 5 36642854 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 436076 2024-02-23 11:56:05.919 2024-02-23 12:06:07.192 Morning garden personal ta Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution. https://example.com/ 18368 \N 436076 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8237039172384 0 \N \N f 0 \N 1 126854408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440987 2024-02-27 19:44:38.585 2024-02-27 19:54:40.312 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hu https://example.com/ 698 440955 440725.440874.440909.440940.440944.440955.440987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.39034845847785 0 \N \N f 0 \N 3 97234288 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440940 2024-02-27 19:00:49.451 2024-02-27 19:10:51.098 \N Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nMost whi https://example.com/ 11144 440909 440725.440874.440909.440940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.24022163623853 0 \N \N f 0 \N 6 246158895 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 436024 2024-02-23 10:54:21.538 2024-02-23 11:04:23.32 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire a https://example.com/ 16052 436014 435907.436014.436024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3086879649191 0 \N \N f 0 \N 2 248074027 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436022 2024-02-23 10:50:51.047 2024-02-23 11:00:52.569 \N Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nNewspaper as city recognize develop. Poor finall https://example.com/ 10638 435908 435908.436022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.771192462439 0 \N \N f 0 \N 1 124287220 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 436050 2024-02-23 11:27:41.441 2024-02-23 11:37:42.731 \N Member I di https://example.com/ 21441 436049 436049.436050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6387576192361 0 \N \N f 0 \N 1 35751437 0 f f \N \N \N \N 436049 \N 0 0 \N \N f \N 439087 2024-02-26 11:04:24.244 2024-02-26 11:14:25.768 \N Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nSpen https://example.com/ 17693 439082 439082.439087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.7880761627794 0 \N \N f 0 \N 2 223006113 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436021 2024-02-23 10:48:54.795 2024-02-23 10:58:56.294 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. https://example.com/ 14731 436011 435328.435887.435904.435957.436001.436011.436021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5791405019177 0 \N \N f 0 \N 1 85822129 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 439876 2024-02-26 20:19:51.386 2024-02-26 20:29:52.301 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. In https://example.com/ 20713 439806 439806.439876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0008405762683 0 \N \N f 0 \N 4 48673973 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 436074 2024-02-23 11:53:05.759 2024-02-23 12:03:07.433 \N Including lawyer https://example.com/ 16665 435988 435988.436074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.67226034660953 0 \N \N f 0 \N 0 116402727 0 f f \N \N \N \N 435988 \N 0 0 \N \N f \N 436045 2024-02-23 11:24:45.386 2024-02-23 11:34:46.726 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include poli https://example.com/ 2335 436029 436028.436029.436045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7268031596049 0 \N \N f 0 \N 5 41752066 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436068 2024-02-23 11:46:13.024 2024-02-23 11:56:14.569 \N Deep government col https://example.com/ 998 435883 435883.436068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0045511470049 0 \N \N f 0 \N 0 37005053 0 f f \N \N \N \N 435883 \N 0 0 \N \N f \N 436030 2024-02-23 11:01:50.72 2024-02-23 11:11:52.529 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply with https://example.com/ 18180 436028 436028.436030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08631795621179 0 \N \N f 0 \N 1 243266727 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 438777 2024-02-26 00:31:21.489 2024-02-26 00:41:22.935 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself https://example.com/ 19375 438404 438325.438404.438777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6786283875667 0 \N \N f 0 \N 2 82015174 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 439101 2024-02-26 11:22:17.073 2024-02-26 11:32:18.992 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nSt https://example.com/ 19943 439097 439082.439092.439095.439097.439101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3372610066842 0 \N \N f 0 \N 8 62432820 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 439718 2024-02-26 18:17:42.915 2024-02-26 18:27:44.647 \N Again trade author cultural task. Deep day cost. Soldier prepare say https://example.com/ 19500 439714 439479.439632.439650.439714.439718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2685266587199 0 \N \N f 0 \N 0 164792820 0 f f \N \N \N \N 439479 \N 0 0 \N \N f \N 435993 2024-02-23 10:04:26.507 2024-02-23 10:14:27.8 \N Behavior safe concern street c https://example.com/ 20424 435639 435639.435993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2717631159668 0 \N \N f 0 \N 1 227394671 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 436174 2024-02-23 13:26:43.102 2024-02-23 13:36:44.28 Us less sure. Late travel us significant cover word industry. Politics treat Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer. https://example.com/ 19267 \N 436174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.02559590056859 0 \N \N f 0 \N 1 37550585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435922 2024-02-23 07:41:25.915 2024-02-23 07:51:27.951 Right student yard prot Become popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake rec https://example.com/ 9177 \N 435922 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 10.3657743718321 0 \N \N f 0 \N 4 92058076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436059 2024-02-23 11:38:19.388 2024-02-23 11:48:20.445 \N Four whole sort. Every summer organization baby partner. Get suffer year son wh https://example.com/ 12738 436031 436028.436029.436031.436059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1709941722826 0 \N \N f 0 \N 10 120603822 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 438546 2024-02-25 18:26:47.664 2024-02-25 18:36:49.599 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nMethod same car buy side. Price order rest Congress data. Man relationship https://example.com/ 20704 438438 438438.438546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02031941666613 0 \N \N f 0 \N 1 7383674 0 f f \N \N \N \N 438438 \N 0 0 \N \N f \N 439153 2024-02-26 12:15:24.816 2024-02-26 12:25:26.967 \N Never money Congress data single trial. Today water everything reduce executive same week. Figh https://example.com/ 21379 439082 439082.439153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0920721959737 0 \N \N f 0 \N 2 224191252 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436033 2024-02-23 11:05:11.963 2024-02-23 11:15:13.413 \N Effect indeed easy never instead even force. Economy use rule rea https://example.com/ 9982 436028 436028.436033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79202339729056 0 \N \N f 0 \N 0 39144143 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 439159 2024-02-26 12:18:49.051 2024-02-26 12:28:50.922 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply c https://example.com/ 15119 438973 438973.439159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.78226232418824 0 \N \N f 0 \N 0 135796108 0 f f \N \N \N \N 438973 \N 0 0 \N \N f \N 439408 2024-02-26 14:49:02.024 2024-02-26 14:59:03.563 \N Game own manager. E https://example.com/ 827 439263 439263.439408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1898181736229 0 \N \N f 0 \N 0 88346462 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 439263 2024-02-26 13:10:43.205 2024-02-26 13:20:44.455 If put nothing put pick future doctor. Push close among pa Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime https://example.com/ 7891 \N 439263 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4660779885605 0 \N \N f 0 \N 20 94852813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436051 2024-02-23 11:32:47.579 2024-02-23 11:42:48.656 Moment hundred skin trip hour hope computer cell. Old pretty newspaper lo Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half. https://example.com/ 21207 \N 436051 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.43640982270133 0 \N \N f 0 \N 3 223741731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439327 2024-02-26 13:49:34.677 2024-02-26 13:59:35.853 \N Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them jo https://example.com/ 9476 438932 438932.439327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3800725291577 0 \N \N f 0 \N 1 51688421 0 f f \N \N \N \N 438932 \N 0 0 \N \N f \N 436075 2024-02-23 11:54:14.252 2024-02-23 12:04:15.92 \N Build leg whole describe peace ab https://example.com/ 6361 435883 435883.436075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6051296739581 0 \N \N f 0 \N 0 43154797 0 f f \N \N \N \N 435883 \N 0 0 \N \N f \N 438404 2024-02-25 16:07:16.299 2024-02-25 16:17:18.605 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about https://example.com/ 714 438325 438325.438404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.228589003505 0 \N \N f 0 \N 3 173852105 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 436201 2024-02-23 13:47:26.924 2024-02-23 13:57:28.636 Enough book hope yard store together camera scene. Ago during player fish. Th Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already. https://example.com/ 6471 \N 436201 \N \N \N \N \N \N \N \N news \N ACTIVE \N 11.2541809657601 0 \N \N f 0 \N 1 51417464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436113 2024-02-23 12:41:26.558 2024-02-23 12:51:27.356 \N South little trip identify similar. Becaus https://example.com/ 5173 436093 436093.436113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1397155921272 0 \N \N f 0 \N 2 76607777 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436202 2024-02-23 13:48:13.298 2024-02-23 13:58:14.473 \N Produce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nBeyo https://example.com/ 19021 436041 435907.436016.436041.436202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5253295116261 0 \N \N f 0 \N 1 70138128 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 438828 2024-02-26 02:52:41.63 2024-02-26 03:02:43.342 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me https://example.com/ 10690 438794 438794.438828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8497538204283 0 \N \N f 0 \N 4 110026611 0 f f \N \N \N \N 438794 \N 0 0 \N \N f \N 436070 2024-02-23 11:48:58.401 2024-02-23 11:58:59.631 \N Main teacher local. Weste https://example.com/ 8729 436036 436036.436070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.87635262351607 0 \N \N f 0 \N 0 194738098 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 436007 2024-02-23 10:21:32.868 2024-02-23 10:31:34.268 Top however address today. Century human la Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause. https://example.com/ 19581 \N 436007 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 27.7112925090704 0 \N \N f 0 \N 0 17435530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436077 2024-02-23 11:56:46.728 2024-02-23 12:06:47.602 \N Investment bad cultural turn with here least hand. Reduce sh https://example.com/ 18641 436009 436009.436077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3860288920711 0 \N \N f 0 \N 0 122982704 0 f f \N \N \N \N 436009 \N 0 0 \N \N f \N 436078 2024-02-23 11:57:20.474 2024-02-23 12:07:21.804 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long https://example.com/ 12277 436054 435231.435650.435814.435836.435843.435845.436054.436078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8220890776954 0 \N \N f 0 \N 1 169199976 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 439146 2024-02-26 12:09:43.745 2024-02-26 12:19:44.823 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nEdge card save. Whether manager always however sc https://example.com/ 19770 439082 439082.439146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.939617809604911 0 \N \N f 0 \N 1 149081976 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 438908 2024-02-26 05:48:08.058 2024-02-26 05:58:09.534 \N Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future https://example.com/ 21480 438773 438605.438773.438908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11658496690954 0 \N \N f 0 \N 2 131587939 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 436064 2024-02-23 11:42:29.105 2024-02-23 11:52:30.638 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your a https://example.com/ 11314 436056 436028.436029.436045.436052.436056.436064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9198293523916 0 \N \N f 0 \N 2 113263807 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440896 2024-02-27 18:26:19.218 2024-02-27 18:36:20.784 \N Them reflect instead color. Public hour property wind step act year. A https://example.com/ 6229 440692 440692.440896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4369276209468 0 \N \N f 0 \N 0 40471025 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 439607 2024-02-26 16:55:03.877 2024-02-26 17:05:05.235 Quickly imagine he learn effort risk wish. Respond include traditional kitchen Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nCivil attorney sell amount. Finally card an https://example.com/ 3745 \N 439607 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.08443396996118 0 \N \N f 0 \N 6 49183954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436046 2024-02-23 11:25:04.557 2024-02-23 11:35:05.877 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun https://example.com/ 20990 436014 435907.436014.436046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.18667221448575 0 \N \N f 0 \N 1 201932381 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 435936 2024-02-23 07:57:13.788 2024-02-23 08:07:14.849 \N House west amount. Again high already himself answer type. Go back Mr. P https://example.com/ 19878 435870 435657.435711.435870.435936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3258493585699 0 \N \N f 0 \N 0 39641111 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 438325 2024-02-25 14:53:49.99 2024-02-25 15:03:51.289 Project them draw walk if signifi Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nWest possible modern office manage people. Major begin skin sit th https://example.com/ 21480 \N 438325 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 2.0994299003879 0 \N \N f 0 \N 41 72982244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435883 2024-02-23 06:30:17.53 2024-02-23 06:40:19.798 Hear degree home Network authority coach through modern subject. Three must arm experience. Tree image am https://example.com/ 5069 \N 435883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3140150169055 0 \N \N f 0 \N 2 239717261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433816 2024-02-21 14:28:26.547 2024-02-21 14:38:28.1 Story meeting hotel opportunity hot beyond former. Explain think with assume saf Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader https://example.com/ 19638 \N 433816 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 14.971728451128 0 \N \N f 0 \N 2 55064864 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438765 2024-02-26 00:17:02.802 2024-02-26 00:27:03.875 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nStandard choose white. Yard would college him pass. Eye in https://example.com/ 12516 438596 438596.438765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.10239266011884 0 \N \N f 0 \N 5 30855945 0 f f \N \N \N \N 438596 \N 0 0 \N \N f \N 436071 2024-02-23 11:49:43.341 2024-02-23 11:59:44.523 \N Later piece skin https://example.com/ 16513 436063 436036.436063.436071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.545581570172899 0 \N \N f 0 \N 0 89963769 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 436073 2024-02-23 11:52:30.781 2024-02-23 12:02:31.699 \N Ground baby describe might. Practice alone key sometime https://example.com/ 1823 436009 436009.436073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9070008984889 0 \N \N f 0 \N 0 141912170 0 f f \N \N \N \N 436009 \N 0 0 \N \N f \N 436009 2024-02-23 10:28:16.553 2024-02-23 10:38:17.787 Grow last away wind. Mr bill do expert there arrive arm. Lead professional we p Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nSupport line change go must do. Small audience beautiful whether a https://example.com/ 854 \N 436009 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.2829163842656 0 \N \N f 0 \N 2 31679573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438802 2024-02-26 01:23:11.662 2024-02-26 01:33:13.128 \N A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nMachine thus avoid resu https://example.com/ 11430 438691 438691.438802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.725577639573 0 \N \N f 0 \N 3 134645712 0 f f \N \N \N \N 438691 \N 0 0 \N \N f \N 436096 2024-02-23 12:27:38.794 2024-02-23 12:37:39.997 \N Out quite different term just https://example.com/ 1881 435574 435551.435574.436096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91867901385648 0 \N \N f 0 \N 0 249627948 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 438773 2024-02-26 00:27:38.851 2024-02-26 00:37:40.113 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address https://example.com/ 16270 438605 438605.438773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6743477086977 0 \N \N f 0 \N 3 170519884 0 f f \N \N \N \N 438605 \N 0 0 \N \N f \N 436105 2024-02-23 12:35:09.729 2024-02-23 12:45:12.155 \N Decision certain voice where collection thus writ https://example.com/ 3518 435819 435812.435819.436105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2640788937329 0 \N \N f 0 \N 0 233180561 0 f f \N \N \N \N 435812 \N 0 0 \N \N f \N 436047 2024-02-23 11:25:20.758 2024-02-23 11:35:22.303 End and certainly language lawyer her sort. Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing histo https://example.com/ 4474 \N 436047 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.4165921952986 0 \N \N f 0 \N 2 183549132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439522 2024-02-26 15:52:04.094 2024-02-26 16:02:05.526 \N Door western each. Thus first tonight run chance control. Course particularly imagine center. https://example.com/ 20987 433799 433799.439522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.94300305844088 0 \N \N f 0 \N 4 158532651 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 436080 2024-02-23 11:59:17.569 2024-02-23 12:09:19.33 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep singl https://example.com/ 650 435805 435805.436080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6644981568427 0 \N \N f 0 \N 0 240094227 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 436089 2024-02-23 12:17:08.332 2024-02-23 12:27:09.647 \N Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nAction prevent Rep https://example.com/ 14731 436086 435610.436086.436089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9252164357111 0 \N \N f 0 \N 0 174042743 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 437569 2024-02-24 18:35:00.716 2024-02-24 18:45:01.853 \N Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs https://example.com/ 2402 435502 435046.435209.435215.435427.435502.437569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9455224089507 0 \N \N f 0 \N 1 233851119 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440986 2024-02-27 19:44:34.201 2024-02-27 19:54:35.286 \N Specific listen sit. Repre https://example.com/ 6058 440982 440911.440922.440926.440930.440951.440962.440974.440982.440986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8751158839449 0 \N \N f 0 \N 1 240928063 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 438651 2024-02-25 20:57:53.962 2024-02-25 21:07:55.872 After way challenge. Nothing protect ground major structure area same any. Ed Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National com https://example.com/ 20163 \N 438651 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.92466272770029 0 \N \N f 0 \N 11 4950468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435986 2024-02-23 09:58:51.607 2024-02-23 10:08:52.317 Past hospital she war. Firm spring game seem. Recently night how billion. Powe Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard. https://example.com/ 11073 \N 435986 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 24.7584906601658 0 \N \N f 0 \N 0 50178443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439527 2024-02-26 15:56:31.109 2024-02-26 16:06:32.617 \N Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save. https://example.com/ 10536 439522 433799.439522.439527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5043089455054 0 \N \N f 0 \N 3 236691425 0 f f \N \N \N \N 433799 \N 0 0 \N \N f \N 439525 2024-02-26 15:54:49.547 2024-02-26 16:04:50.58 \N House west amount. Again high already himself answer type. Go back Mr. https://example.com/ 11073 439503 439472.439503.439525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9802243162127 0 \N \N f 0 \N 1 178428925 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 436092 2024-02-23 12:25:41.612 2024-02-23 12:35:43.109 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force impor https://example.com/ 12946 435861 435242.435861.436092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2585616201265 0 \N \N f 0 \N 0 92612871 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 436095 2024-02-23 12:27:07.114 2024-02-23 12:37:09.326 \N Plant ever Republican together picture. What nearly patte https://example.com/ 664 435639 435639.436095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2009169089206 0 \N \N f 0 \N 0 56115407 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 435780 2024-02-23 03:04:22.421 2024-02-23 03:14:23.482 \N Scie https://example.com/ 20799 435387 432920.432980.432992.433032.433034.433041.433194.435387.435780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.40350474851 0 \N \N f 0 \N 0 39441305 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 435242 2024-02-22 17:01:13.955 2024-02-22 17:11:15.489 Play single finally social almost serious. Catch better education only o White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science. https://example.com/ 19235 \N 435242 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.45751704582168 0 \N \N f 0 \N 13 198194927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433799 2024-02-21 14:17:27.863 2024-02-21 14:27:29.617 Sell attention bu Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay pag https://example.com/ 20680 \N 433799 \N \N \N \N \N \N \N \N health \N ACTIVE \N 12.3924424972363 0 \N \N f 0 \N 15 206331976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440953 2024-02-27 19:09:28.107 2024-02-27 19:19:29.248 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nStage can fish building senior. Through position capital official. While later price performance https://example.com/ 20990 440875 440875.440953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.1829227075004 0 \N \N f 0 \N 2 7166426 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 440982 2024-02-27 19:40:47.979 2024-02-27 19:50:49.602 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope u https://example.com/ 12268 440974 440911.440922.440926.440930.440951.440962.440974.440982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3491802924824 0 \N \N f 0 \N 2 155443105 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 436103 2024-02-23 12:33:37.221 2024-02-23 12:43:39.448 \N Director far fact order bit collection. Ok prove thought note prove. Third co https://example.com/ 697 435746 435746.436103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6847565893074 0 \N \N f 0 \N 0 207655519 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 436124 2024-02-23 12:49:46.716 2024-02-23 12:59:47.923 \N Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Le https://example.com/ 20152 435328 435328.436124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5886003487173 0 \N \N f 0 \N 0 95161768 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 437497 2024-02-24 17:17:17.142 2024-02-24 17:27:18.308 \N Own about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant direc https://example.com/ 20495 437465 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3416840930446 0 \N \N f 0 \N 14 225732632 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 436081 2024-02-23 12:00:17.5 2024-02-23 12:10:18.681 Theory tea Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything m https://example.com/ 13249 \N 436081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.8424607922594 0 \N \N f 0 \N 2 105495379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435557 2024-02-22 21:42:20.321 2024-02-22 21:52:21.148 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention s https://example.com/ 679 435420 435261.435410.435420.435557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0672787371096 0 \N \N f 0 \N 1 65626814 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435420 2024-02-22 19:15:07.864 2024-02-22 19:25:09.283 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nGarden serve these speak manager. Idea put have bette https://example.com/ 18262 435410 435261.435410.435420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44130581150002 0 \N \N f 0 \N 4 66556523 0 f f \N \N \N \N 435261 \N 0 0 \N \N f \N 435861 2024-02-23 05:37:25.822 2024-02-23 05:47:26.921 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder https://example.com/ 19992 435242 435242.435861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1825621763559 0 \N \N f 0 \N 1 197446135 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 436065 2024-02-23 11:43:54.123 2024-02-23 11:53:56.049 \N Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent offici https://example.com/ 17519 436059 436028.436029.436031.436059.436065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7418837770884 0 \N \N f 0 \N 9 173880736 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 439220 2024-02-26 12:53:54.168 2024-02-26 13:03:55.463 \N Scene relate paper hospital. Star cultural stay insi https://example.com/ 777 439139 439139.439220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1859594588734 0 \N \N f 0 \N 0 157914123 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 436079 2024-02-23 11:57:20.638 2024-02-23 12:07:22.82 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old b https://example.com/ 21145 436076 436076.436079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.69773201689184 0 \N \N f 0 \N 0 172853277 0 f f \N \N \N \N 436076 \N 0 0 \N \N f \N 439139 2024-02-26 12:01:37.262 2024-02-26 12:11:38.287 Still power agent hospital. Evening style true person east Republ Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest https://example.com/ 891 \N 439139 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8333500342815 0 \N \N f 0 \N 107 80307453 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437554 2024-02-24 18:06:05.363 2024-02-24 18:16:06.497 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. https://example.com/ 811 437543 437531.437543.437554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.41049495910699 0 \N \N f 0 \N 1 27463534 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 435920 2024-02-23 07:40:16.494 2024-02-23 07:50:17.681 \N Mind treatment nature play. Mr hit security game https://example.com/ 20998 435728 435657.435728.435920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2788073791992 0 \N \N f 0 \N 7 7162502 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 435579 2024-02-22 22:03:11.477 2024-02-22 22:13:13.343 She loss lawyer raise withou Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy intervie https://example.com/ 11678 \N 435579 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 10.6779887531438 0 \N \N f 0 \N 10 227738676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436112 2024-02-23 12:40:57.733 2024-02-23 12:50:59.283 \N With feel late. Receive one firm sport here. Option task meeting fine hotel. So https://example.com/ 21172 436108 436028.436097.436108.436112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4552611477941 0 \N \N f 0 \N 0 106425964 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 438758 2024-02-26 00:00:34.436 2024-02-26 00:10:35.59 Myself effort community ago while assume. Producti Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend https://example.com/ 5522 \N 438758 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 27.2257869935995 0 \N \N f 0 \N 10 69337963 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439298 2024-02-26 13:31:43.808 2024-02-26 13:41:45.494 Seven nice notice wife they couple. Suffer town happy learn. Yourself f Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely https://example.com/ 12024 \N 439298 \N \N \N \N \N \N \N \N health \N ACTIVE \N 5.51406044846409 0 \N \N f 0 \N 16 171266993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439286 2024-02-26 13:26:57.38 2024-02-26 13:36:58.373 Film happen almost than. Staff stuff life concern in Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case https://example.com/ 19852 \N 439286 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2826696271421 0 \N \N f 0 \N 6 88686742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438691 2024-02-25 21:55:48.628 2024-02-25 22:05:50.115 Think month catch free. Tree involve deep resource provide professional dinner Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find. https://example.com/ 6335 \N 438691 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 4.65297229103967 0 \N \N f 0 \N 5 58572885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438596 2024-02-25 19:40:49.122 2024-02-25 19:50:50.133 Decade activity affect another hea Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent https://example.com/ 2963 \N 438596 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.72285702562095 0 \N \N f 0 \N 14 14671456 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438660 2024-02-25 21:05:52.664 2024-02-25 21:15:53.842 Gas evening morning do of. Development executive Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain https://example.com/ 10056 \N 438660 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.58511143058983 0 \N \N f 0 \N 0 33842220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436139 2024-02-23 13:01:56.105 2024-02-23 13:11:57.999 \N Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nHard same business read rea https://example.com/ 19664 436020 435944.435979.436012.436020.436139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6894553040014 0 \N \N f 0 \N 1 220510818 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 438519 2024-02-25 18:05:59.382 2024-02-25 18:16:00.644 Stand red drop occur tell week sure worker. Skill teac Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could mo https://example.com/ 21421 \N 438519 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3668418213785 0 \N \N f 0 \N 9 214957562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436062 2024-02-23 11:41:51.246 2024-02-23 11:51:52.319 Letter both ability. Strong several p Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Cl https://example.com/ 18472 \N 436062 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.75873964481849 0 \N \N f 0 \N 0 125974526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438629 2024-02-25 20:33:51.123 2024-02-25 20:43:52.407 Affect major fire admit technology bad add. S Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern. https://example.com/ 1142 \N 438629 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.37345047614311 0 \N \N f 0 \N 0 14220698 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436154 2024-02-23 13:10:01.661 2024-02-23 13:20:03.27 \N Main teacher local. Western rate blood tha https://example.com/ 21562 435923 435679.435823.435923.436154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0804576035049 0 \N \N f 0 \N 0 98070097 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 439413 2024-02-26 14:51:30.415 2024-02-26 15:01:31.339 Hotel blood consumer spend college. Know bank mind political Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institut https://example.com/ 19286 \N 439413 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.3003716304893 0 \N \N f 0 \N 5 43160818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435891 2024-02-23 06:42:32.187 2024-02-23 06:52:33.805 Remember before box of open. Always region baby actually Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order https://example.com/ 17124 \N 435891 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 15.9252552753635 0 \N \N f 0 \N 3 16572314 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440153 2024-02-27 01:20:23.26 2024-02-27 01:30:24.509 Blue the that local central middle th Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsib https://example.com/ 4763 \N 440153 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9780535392674 0 \N \N f 0 \N 0 44234955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435924 2024-02-23 07:42:07.757 2024-02-23 07:52:09.836 Voice sign college quality. Explain middle knowledge. For Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recogniz https://example.com/ 16485 \N 435924 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 12.010559344423 0 \N \N f 0 \N 7 242106985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438687 2024-02-25 21:48:07.707 2024-02-25 21:58:09.299 Key group certainly little spring. Today form hit type article land fly. Travel Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek o https://example.com/ 2529 \N 438687 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.88865852085428 0 \N \N f 0 \N 0 211366405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436138 2024-02-23 13:01:21.965 2024-02-23 13:11:23.416 \N Financial all deep why car seat measure most. Today somebody north green create check ga https://example.com/ 2710 436128 434795.434801.436128.436138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2941070702501 0 \N \N f 0 \N 1 97215910 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436118 2024-02-23 12:45:06.898 2024-02-23 12:55:08.176 \N Take throw line right your trial publi https://example.com/ 18314 435832 435576.435832.436118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5695491947034 0 \N \N f 0 \N 0 187099966 0 f f \N \N \N \N 435576 \N 0 0 \N \N f \N 438970 2024-02-26 08:02:03.159 2024-02-26 08:12:04.171 Bar adult subject hot student others plan. By much total computer. Fight kn Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nWin nothing rese https://example.com/ 632 \N 438970 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0326948130825 0 \N \N f 0 \N 1 3839764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436020 2024-02-23 10:44:57.082 2024-02-23 10:54:58.021 \N Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue str https://example.com/ 12245 436012 435944.435979.436012.436020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1622146712815 0 \N \N f 0 \N 2 85751174 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 438763 2024-02-26 00:08:33.711 2024-02-26 00:18:35.766 Effect indeed easy never instead even force. Econo Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election succe https://example.com/ 20301 \N 438763 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 1.85843301818363 0 \N \N f 0 \N 1 164003496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436143 2024-02-23 13:05:10.814 2024-02-23 13:17:44.209 \N Technology instead https://example.com/ 694 436141 436028.436029.436031.436059.436065.436091.436126.436141.436143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.167312430133 0 \N \N f 0 \N 0 182690698 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436133 2024-02-23 12:57:55.586 2024-02-23 13:07:57.665 \N In grow start way president as c https://example.com/ 16042 435973 435944.435973.436133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89328188488134 0 \N \N f 0 \N 0 92330306 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 439080 2024-02-26 10:59:44.889 2024-02-26 11:09:45.64 Point box near. Affect glass n Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physic https://example.com/ 9184 \N 439080 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 24.12701749326 0 \N \N f 0 \N 0 219417781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436137 2024-02-23 13:00:40.794 2024-02-23 13:10:41.948 \N Provide enjoy appear these. What care if degree. Even camera drop. Officia https://example.com/ 19378 435516 435516.436137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10006834427755 0 \N \N f 0 \N 0 84098028 0 f f \N \N \N \N 435516 \N 0 0 \N \N f \N 436094 2024-02-23 12:26:52.535 2024-02-23 12:36:53.976 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nAffect key her. Development create daughter role enough. Instead education https://example.com/ 9331 435628 435551.435608.435615.435628.436094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.93009928677272 0 \N \N f 0 \N 0 68702197 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 436145 2024-02-23 13:05:32.756 2024-02-23 13:15:33.997 \N Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nStat https://example.com/ 14385 436028 436028.436145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.556127324168 0 \N \N f 0 \N 0 229286008 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436117 2024-02-23 12:44:28.227 2024-02-23 12:54:29.374 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until https://example.com/ 20156 436114 436028.436100.436109.436114.436117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.15611014195113 0 \N \N f 0 \N 2 6391808 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436109 2024-02-23 12:40:23.734 2024-02-23 12:50:25.163 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason https://example.com/ 11821 436100 436028.436100.436109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.875929249439 0 \N \N f 0 \N 4 205777778 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436114 2024-02-23 12:42:03.359 2024-02-23 12:52:05.742 \N Instead believe animal then however price pa https://example.com/ 16230 436109 436028.436100.436109.436114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67175212192903 0 \N \N f 0 \N 3 162345064 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436018 2024-02-23 10:42:15.505 2024-02-23 10:52:17.083 \N Finish only air provide. Wife can de https://example.com/ 13365 436012 435944.435979.436012.436018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8761906292604 0 \N \N f 0 \N 0 39809190 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 441281 2024-02-28 00:21:09.79 2024-02-28 00:31:11.483 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pul https://example.com/ 3439 441054 441054.441281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24028402044786 0 \N \N f 0 \N 0 3193640 0 f f \N \N \N \N 441054 \N 0 0 \N \N f \N 436146 2024-02-23 13:05:33.436 2024-02-23 13:15:35.003 \N Build leg whole descri https://example.com/ 21139 436139 435944.435979.436012.436020.436139.436146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5789259173475 0 \N \N f 0 \N 0 99818594 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436036 2024-02-23 11:13:57.204 2024-02-23 11:23:57.995 Policy trade before drop particular upon science. Toget Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain https://example.com/ 20430 \N 436036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.48073933580323 0 \N \N f 0 \N 6 53340056 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436141 2024-02-23 13:03:20.052 2024-02-23 13:16:14.648 \N Work suddenly pick. https://example.com/ 19469 436126 436028.436029.436031.436059.436065.436091.436126.436141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.76958387525725 0 \N \N f 0 \N 6 14034806 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436048 2024-02-23 11:25:32.057 2024-02-23 11:35:33.312 Force job radio law. Maybe soldier Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept. https://example.com/ 5703 \N 436048 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.190288013796 0 \N \N f 0 \N 0 61857522 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436063 2024-02-23 11:42:22.007 2024-02-23 11:52:23.791 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat https://example.com/ 15941 436036 436036.436063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80597476945897 0 \N \N f 0 \N 1 136951349 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 437462 2024-02-24 16:50:52.34 2024-02-24 17:00:54.896 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate f https://example.com/ 18209 437453 437453.437462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.639332098093455 0 \N \N f 0 \N 2 204003994 0 f f \N \N \N \N 437453 \N 0 0 \N \N f \N 440120 2024-02-27 00:21:45.108 2024-02-27 00:31:46.416 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nLead between race contain politics. Base behavior suggest image inform https://example.com/ 18556 439464 439142.439188.439194.439411.439445.439464.440120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1675385745474 0 \N \N f 0 \N 2 38360854 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 436001 2024-02-23 10:13:52.728 2024-02-23 10:23:53.953 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture cho https://example.com/ 20080 435957 435328.435887.435904.435957.436001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.06209983304655 0 \N \N f 0 \N 3 4421363 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 436004 2024-02-23 10:18:22.348 2024-02-23 10:28:23.561 \N Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. https://example.com/ 694 435958 435958.436004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3361819372728 0 \N \N f 0 \N 1 133033184 0 f f \N \N \N \N 435958 \N 0 0 \N \N f \N 437089 2024-02-24 12:30:39.559 2024-02-24 12:40:41.74 Fish health while enjoy. Step check p Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole other https://example.com/ 998 \N 437089 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.78442569455815 0 \N \N f 0 \N 10 10914944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437452 2024-02-24 16:41:35.32 2024-02-24 16:51:38.404 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then https://example.com/ 21104 437442 437408.437442.437452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7689448540719 0 \N \N f 0 \N 0 40793226 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 436150 2024-02-23 13:08:19.573 2024-02-23 13:18:21.214 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance la https://example.com/ 1713 436028 436028.436150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1294767062134 0 \N \N f 0 \N 0 163827785 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 435928 2024-02-23 07:46:46.571 2024-02-23 07:56:48.09 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself the https://example.com/ 21338 435924 435924.435928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.806440129603 0 \N \N f 0 \N 3 197938316 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 436156 2024-02-23 13:11:10.203 2024-02-23 13:21:11.567 \N Become popular local cut evidence. Availabl https://example.com/ 703 436028 436028.436156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18455326522358 0 \N \N f 0 \N 0 143177530 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 441279 2024-02-28 00:19:12.948 2024-02-28 00:29:14.37 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red direct https://example.com/ 9969 441160 440422.441160.441279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.98093717167388 0 \N \N f 0 \N 1 194755048 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 435580 2024-02-22 22:03:14.094 2024-02-22 22:13:15.597 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. S https://example.com/ 2963 435488 435488.435580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11053196098044 0 \N \N f 0 \N 1 15661201 0 f f \N \N \N \N 435488 \N 0 0 \N \N f \N 436159 2024-02-23 13:15:34.612 2024-02-23 13:25:35.884 \N Them its apply task the off ability. Song determin https://example.com/ 19375 435944 435944.436159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3190269581864 0 \N \N f 0 \N 2 230024992 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436148 2024-02-23 13:07:34.314 2024-02-23 13:17:35.542 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Gr https://example.com/ 19103 436130 435944.436102.436130.436148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66112149700827 0 \N \N f 0 \N 0 187722140 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 435663 2024-02-22 23:31:56.131 2024-02-22 23:41:57.779 \N Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nNear key among effort c https://example.com/ 1618 435610 435610.435663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.28495205576215 0 \N \N f 0 \N 1 41619609 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 436158 2024-02-23 13:14:40.622 2024-02-23 13:24:41.66 Involve morning someone them Cong Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard ey https://example.com/ 999 \N 436158 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.19755958133211 0 \N \N f 0 \N 0 193100207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435968 2024-02-23 09:27:50.813 2024-02-23 09:37:52.293 Go special a bed great same concern. Need plan look whatever recognize image Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own. https://example.com/ 21469 \N 435968 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 5.39583122807255 0 \N \N f 0 \N 0 151644485 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435458 2024-02-22 19:47:49.78 2024-02-22 19:57:50.996 Grow last away wind. Mr bill do expert there arrive arm. Lead profes Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anythi https://example.com/ 2013 \N 435458 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.89029117489949 0 \N \N f 0 \N 7 52030303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438837 2024-02-26 03:07:38.56 2024-02-26 03:17:39.508 Affect key her. Development create daughter role enough. Instead educatio Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. https://example.com/ 16387 \N 438837 \N \N \N \N \N \N \N \N health \N ACTIVE \N 5.52955740506899 0 \N \N f 0 \N 9 19587389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435947 2024-02-23 08:27:13.542 2024-02-23 08:37:14.642 Network art go experience example him see. Half lay there up start dream nice. Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site. https://example.com/ 20433 \N 435947 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 21.1643724175385 0 \N \N f 0 \N 0 98652724 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440210 2024-02-27 03:23:48.112 2024-02-27 03:33:49.562 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surfac https://example.com/ 959 439386 439082.439386.440210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.219205834374 0 \N \N f 0 \N 0 139876581 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 435912 2024-02-23 07:22:36.333 2024-02-23 07:32:37.16 Budget agent center morning series international bar. Song positive fr Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law al https://example.com/ 8796 \N 435912 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.525964335809874 0 \N \N f 0 \N 1 176789175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440044 2024-02-26 22:26:16.643 2024-02-26 22:36:17.923 \N Say this find practice. Small exactly ex https://example.com/ 2577 439744 438936.439563.439744.440044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2447038735252 0 \N \N f 0 \N 5 200461425 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 435985 2024-02-23 09:57:34.664 2024-02-23 10:07:36.445 Both peace drug most bring institution. Mean become current address. West Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality. https://example.com/ 10771 \N 435985 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 27.5618452979175 0 \N \N f 0 \N 0 185057810 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436140 2024-02-23 13:02:08.339 2024-02-23 13:12:09.579 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just i https://example.com/ 9242 436081 436081.436140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5226588636109 0 \N \N f 0 \N 0 169317885 0 f f \N \N \N \N 436081 \N 0 0 \N \N f \N 439386 2024-02-26 14:34:10.52 2024-02-26 14:44:12.784 \N Physical fast give music base. Gun body every join everything. https://example.com/ 20246 439082 439082.439386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30143585532804 0 \N \N f 0 \N 6 18626464 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 436161 2024-02-23 13:16:12.49 2024-02-23 13:26:13.627 \N Baby body day citizen change. Present identify never big https://example.com/ 17727 435805 435805.436161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.851089223851 0 \N \N f 0 \N 0 1635890 0 f f \N \N \N \N 435805 \N 0 0 \N \N f \N 440272 2024-02-27 06:24:12.453 2024-02-27 06:34:13.505 Time woman simply current community. Election old effort sign take matter hit Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong a https://example.com/ 17106 \N 440272 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.7264437431232 0 \N \N f 0 \N 0 124649919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441283 2024-02-28 00:21:46.246 2024-02-28 00:31:47.531 Responsibility record term buy. Or hear long. Small wide truth bit collec Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song. https://example.com/ 10771 \N 441283 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 0.648241976392292 0 \N \N f 0 \N 0 247481870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441299 2024-02-28 00:40:55.454 2024-02-28 00:50:56.896 \N Positive return free discuss. Value vote report. Ten market box. A feel sta https://example.com/ 15282 441171 441087.441171.441299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6320138545046 0 \N \N f 0 \N 0 204547916 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 436365 2024-02-23 16:09:54.887 2024-02-23 16:19:56.557 \N Movie tea https://example.com/ 12158 436355 436355.436365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8786267757725 0 \N \N f 0 \N 0 125049231 0 f f \N \N \N \N 436355 \N 0 0 \N \N f \N 441296 2024-02-28 00:37:51.008 2024-02-28 00:47:52.289 \N Scientist l https://example.com/ 3709 440582 440561.440582.441296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0711939969353 0 \N \N f 0 \N 0 59921629 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 436049 2024-02-23 11:26:09.909 2024-02-23 11:36:12.041 Billion here large Authority call evening guess civil rich not ask. Walk level https://example.com/ 20502 \N 436049 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 20.0311550246295 0 \N \N f 0 \N 2 21372933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436170 2024-02-23 13:25:00.339 2024-02-23 13:35:01.735 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine https://example.com/ 21523 436130 435944.436102.436130.436170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3351264342538 0 \N \N f 0 \N 0 22971705 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 434625 2024-02-22 06:51:58.898 2024-02-22 07:02:01.119 \N Play director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Maj https://example.com/ 21019 434535 434535.434625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4378776864043 0 \N \N f 0 \N 1 125691796 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 439781 2024-02-26 19:12:41.295 2024-02-26 19:22:42.739 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nBefore appear girl save technology. When https://example.com/ 706 439746 439654.439746.439781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.13313600647615 0 \N \N f 0 \N 0 68243383 0 f f \N \N \N \N 439654 \N 0 0 \N \N f \N 436165 2024-02-23 13:22:04.482 2024-02-23 13:32:06.156 \N History prepare ever https://example.com/ 2963 436147 436147.436165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5847799497456 0 \N \N f 0 \N 0 145189454 0 f f \N \N \N \N 436147 \N 0 0 \N \N f \N 441286 2024-02-28 00:26:38.408 2024-02-28 00:36:39.528 \N Describe radio value until fund si https://example.com/ 19132 441279 440422.441160.441279.441286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6034538298191 0 \N \N f 0 \N 0 151955777 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441274 2024-02-28 00:15:51.793 2024-02-28 00:25:53.323 \N Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney https://example.com/ 6360 441247 441247.441274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5320206231738 0 \N \N f 0 \N 11 143248553 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442094 2024-02-28 14:52:01.429 2024-02-28 15:02:02.897 \N Reach matter agency population. Cap https://example.com/ 5703 442023 442023.442094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2655966270921 0 \N \N f 0 \N 1 215053619 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 436199 2024-02-23 13:46:29.288 2024-02-23 13:56:30.914 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure https://example.com/ 19132 435934 435120.435934.436199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3638929971424 0 \N \N f 0 \N 1 41785396 0 f f \N \N \N \N 435120 \N 0 0 \N \N f \N 436176 2024-02-23 13:27:27.693 2024-02-23 13:37:30.119 \N Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thou https://example.com/ 19857 435746 435746.436176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5197035680417 0 \N \N f 0 \N 1 245771764 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 440580 2024-02-27 14:15:32.849 2024-02-27 14:25:34.343 \N Idea seem tend attack act common her run. Style there improve point culture curre https://example.com/ 21216 440520 440520.440580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.804294123617 0 \N \N f 0 \N 2 33411918 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441152 2024-02-27 22:07:28.234 2024-02-27 22:17:29.988 Third would fire interest PM upon people. Girl lan Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relati https://example.com/ 19417 \N 441152 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.6073222243301 0 \N \N f 0 \N 0 59510275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441306 2024-02-28 00:47:03.247 2024-02-28 00:57:04.835 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nLook surface admit attorney affe https://example.com/ 20106 441213 440692.441027.441074.441213.441306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.9775469512597 0 \N \N f 0 \N 0 78081018 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 436211 2024-02-23 13:52:27.375 2024-02-23 14:02:28.801 \N Same listen suggest five serve sit need if. So https://example.com/ 20573 435905 435905.436211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02956110293015 0 \N \N f 0 \N 1 142201376 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436169 2024-02-23 13:23:55.278 2024-02-23 13:33:56.688 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nNever money https://example.com/ 9355 436162 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.24358089144598 0 \N \N f 0 \N 3 190229905 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436404 2024-02-23 16:46:01.506 2024-02-23 16:56:03.04 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would churc https://example.com/ 998 436401 436273.436391.436398.436401.436404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5505312838264 0 \N \N f 0 \N 1 99870685 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 436181 2024-02-23 13:30:37.203 2024-02-23 13:40:38.053 Structure require feel statement plan economy. Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per. https://example.com/ 18180 \N 436181 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.4771037736452 0 \N \N f 0 \N 0 249173923 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436167 2024-02-23 13:22:38.624 2024-02-23 13:32:39.889 \N Election parent thro https://example.com/ 20264 436164 436144.436164.436167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.18331392248095 0 \N \N f 0 \N 2 33379205 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N 436144 2024-02-23 13:05:20.518 2024-02-23 13:15:21.794 Hope more garden develo Opportunity hospital address action return different style. Beat mag https://example.com/ 15060 \N 436144 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.9143221525307 0 \N \N f 0 \N 4 143717262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439946 2024-02-26 20:55:35.428 2024-02-26 21:05:36.903 She under certainly state. Left rest everything health s Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nTax kid loss hear ahead common best see. Number thus which sto https://example.com/ 9348 \N 439946 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2550594922164 0 \N \N f 0 \N 13 19622617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436180 2024-02-23 13:30:30.521 2024-02-23 13:40:31.656 \N May building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer fee https://example.com/ 14651 238583 238583.436180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30107512791626 0 \N \N f 0 \N 2 210057378 0 f f \N \N \N \N 238583 \N 0 0 \N \N f \N 442080 2024-02-28 14:47:22.578 2024-02-28 14:57:24.042 \N Apply president orga https://example.com/ 20231 441294 440561.441294.442080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4931303461768 0 \N \N f 0 \N 0 120034982 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 436123 2024-02-23 12:49:36.472 2024-02-23 12:59:37.676 \N Authority environmental party bank region https://example.com/ 10112 435928 435924.435928.436123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1949048193323 0 \N \N f 0 \N 0 236859461 0 f f \N \N \N \N 435924 \N 0 0 \N \N f \N 436188 2024-02-23 13:36:46.382 2024-02-23 13:46:48.004 \N Film without deal production let letter. I product step follow discussion. Feder https://example.com/ 671 436186 436163.436175.436186.436188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.87034698124576 0 \N \N f 0 \N 0 54690290 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 436194 2024-02-23 13:43:11.108 2024-02-23 13:53:12.903 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care wh https://example.com/ 21178 436175 436163.436175.436194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3449906021043 0 \N \N f 0 \N 0 69395430 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 436213 2024-02-23 13:54:18.213 2024-02-23 14:04:19.986 Best choice maintain she else member. Health country mind police. Of off fill th Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should. https://example.com/ 16347 \N 436213 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 22.9101707598819 0 \N \N f 0 \N 4 187382447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436171 2024-02-23 13:25:48.766 2024-02-23 13:35:50.178 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. O https://example.com/ 7389 436169 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169.436171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.61214644618632 0 \N \N f 0 \N 2 97676136 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436026 2024-02-23 10:57:22.123 2024-02-23 11:07:23.389 \N Meeting expert body. End store vote across cost piece dinner. Another increas https://example.com/ 19435 436024 435907.436014.436024.436026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.31193801622071 0 \N \N f 0 \N 0 108872817 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436275 2024-02-23 14:52:43.626 2024-02-23 15:02:45.387 \N Order care many fire per feel bill exist. Ready reach poor true. Cri https://example.com/ 3371 436028 436028.436275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.8578310210665 0 \N \N f 0 \N 0 235114000 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436164 2024-02-23 13:21:47.15 2024-02-23 13:31:48.016 \N Cell language east present. Federal arrive m https://example.com/ 8176 436144 436144.436164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2985357365724 0 \N \N f 0 \N 3 3872590 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N 436160 2024-02-23 13:16:07.463 2024-02-23 13:26:09.592 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nBorn million yourself husband old. Air my child dr https://example.com/ 664 435970 435970.436160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0127302077826 0 \N \N f 0 \N 0 150677030 0 f f \N \N \N \N 435970 \N 0 0 \N \N f \N 436192 2024-02-23 13:41:49.852 2024-02-23 13:51:51.623 \N Republican star https://example.com/ 7913 426959 412443.426959.436192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.77297692607554 0 \N \N f 0 \N 0 158772131 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N 435973 2024-02-23 09:38:29.877 2024-02-23 09:48:31.461 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coac https://example.com/ 629 435944 435944.435973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.40043540275266 0 \N \N f 0 \N 1 36446644 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 440175 2024-02-27 01:56:39.588 2024-02-27 02:06:40.816 \N Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under rea https://example.com/ 2309 440132 440132.440175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0432715811961 0 \N \N f 0 \N 6 118301587 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440239 2024-02-27 05:06:09.331 2024-02-27 05:16:11.372 Name put just demo Mission alone itself parent they get. Morning after factor little manage jo https://example.com/ 19296 \N 440239 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0973233569903 0 \N \N f 0 \N 1 36593673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436186 2024-02-23 13:34:59.055 2024-02-23 13:45:00.292 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nReturn bag discover indicate record https://example.com/ 6419 436175 436163.436175.436186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0704573133349 0 \N \N f 0 \N 1 141575624 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 436162 2024-02-23 13:17:38.64 2024-02-23 13:28:22.431 \N Score player recogn https://example.com/ 3518 436141 436028.436029.436031.436059.436065.436091.436126.436141.436162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9538033413741 0 \N \N f 0 \N 4 128840705 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436172 2024-02-23 13:25:49.869 2024-02-23 13:35:51.767 \N Far clearly possible enter. Turn safe position thought pressure significant capital. T https://example.com/ 13574 436159 435944.436159.436172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2239893188402 0 \N \N f 0 \N 1 16587902 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436279 2024-02-23 15:00:56.121 2024-02-23 15:10:57.277 \N Billion deep other first financial sometimes. Succ https://example.com/ 21457 436136 436136.436279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.915786946227 0 \N \N f 0 \N 1 96313183 0 f f \N \N \N \N 436136 \N 0 0 \N \N f \N 436225 2024-02-23 14:04:38.39 2024-02-23 14:14:40.049 \N Than level lawyer mouth the https://example.com/ 1474 436005 436005.436225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2446710832967 0 \N \N f 0 \N 1 79944793 0 f f \N \N \N \N 436005 \N 0 0 \N \N f \N 436183 2024-02-23 13:33:18.035 2024-02-23 13:43:19.773 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion ag https://example.com/ 21148 417145 417090.417145.436183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.258673256688 0 \N \N f 0 \N 1 127385524 0 f f \N \N \N \N 417090 \N 0 0 \N \N f \N 439259 2024-02-26 13:09:08.559 2024-02-26 13:19:10.034 \N Heavy spring happy city start sound. Beautiful bed p https://example.com/ 16858 439139 439139.439259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.97889296374966 0 \N \N f 0 \N 0 8124911 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 436153 2024-02-23 13:09:56.09 2024-02-23 13:19:57.315 Both peace drug most bring institution. Mean become current address. Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent https://example.com/ 3213 \N 436153 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.5204650106248 0 \N \N f 0 \N 1 200547582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436820 2024-02-24 01:40:19.121 2024-02-24 01:50:20.464 \N General against page door. Attention although even hospital sing recently individual mat https://example.com/ 16276 436759 436759.436820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0669437002644 0 \N \N f 0 \N 7 116794765 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 440277 2024-02-27 06:47:41.21 2024-02-29 00:49:18.197 \N Administration thre https://example.com/ 18235 437178 436759.436820.436956.437178.440277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8204847636734 0 \N \N f 0 \N 0 78217717 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 436182 2024-02-23 13:31:51.636 2024-02-23 13:41:54.013 Go effect true such such wind market. Role suggest perhaps choose serious. Fish Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Prof https://example.com/ 7903 \N 436182 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 2.26602576056315 0 \N \N f 0 \N 0 50389559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436257 2024-02-23 14:33:34.485 2024-02-23 14:43:36.095 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nM https://example.com/ 8926 436125 436028.436053.436125.436257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7578434927205 0 \N \N f 0 \N 5 142253958 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436190 2024-02-23 13:38:02.097 2024-02-23 13:48:04.168 \N Kitchen alrea https://example.com/ 9171 425697 425697.436190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4080177303262 0 \N \N f 0 \N 0 205058539 0 f f \N \N \N \N 425697 \N 0 0 \N \N f \N 436184 2024-02-23 13:34:13.516 2024-02-23 13:44:14.728 \N Professor entire in https://example.com/ 17541 435847 435847.436184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6914164196916 0 \N \N f 0 \N 0 17989517 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 436136 2024-02-23 12:59:39.918 2024-02-23 13:09:41.402 Operation against song book Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg https://example.com/ 1236 \N 436136 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 28.0843063548776 0 \N \N f 0 \N 2 198592669 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440230 2024-02-27 04:31:57.816 2024-02-27 04:41:59.072 Sound clearly happen age onto imagine. Bed pattern happy oth Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three. https://example.com/ 13767 \N 440230 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 15.7817095190173 0 \N \N f 0 \N 1 150218040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439744 2024-02-26 18:39:08.906 2024-02-26 18:49:10.96 \N Successful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful bl https://example.com/ 17291 439563 438936.439563.439744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3743723190837 0 \N \N f 0 \N 7 90668779 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 436200 2024-02-23 13:47:26.386 2024-02-23 13:57:27.919 \N Commun https://example.com/ 5725 436193 436144.436164.436167.436193.436200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.233405732088841 0 \N \N f 0 \N 0 69142979 0 f f \N \N \N \N 436144 \N 0 0 \N \N f \N 436234 2024-02-23 14:18:21.157 2024-02-23 14:28:23.08 \N Catch as herself according. Range deal early see best measure bit throughout https://example.com/ 17514 436224 436224.436234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67951961135062 0 \N \N f 0 \N 0 41025713 0 f f \N \N \N \N 436224 \N 0 0 \N \N f \N 440269 2024-02-27 06:20:01.161 2024-02-27 06:30:03.289 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr so https://example.com/ 18378 440211 440211.440269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7040817244966 0 \N \N f 0 \N 0 115821657 0 f f \N \N \N \N 440211 \N 0 0 \N \N f \N 436226 2024-02-23 14:04:45.66 2024-02-23 14:14:46.612 International ground thought computer Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge. https://example.com/ 20023 \N 436226 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.1964533735017 0 \N \N f 0 \N 0 183472520 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436126 2024-02-23 12:50:43.792 2024-02-23 13:13:44.894 \N Music energy specif https://example.com/ 714 436091 436028.436029.436031.436059.436065.436091.436126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4461369533434 0 \N \N f 0 \N 7 94801484 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436185 2024-02-23 13:34:57.55 2024-02-23 13:44:58.83 \N Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nEach any growth human seek or expert data. Sit financial know feeling one exis https://example.com/ 20377 436171 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169.436171.436185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6679564041688 0 \N \N f 0 \N 1 182178527 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440295 2024-02-27 07:25:05.184 2024-02-27 07:35:06.578 \N Test rock daughter nation moment. Article https://example.com/ 13406 440206 440206.440295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1957633978529 0 \N \N f 0 \N 0 69392018 0 f f \N \N \N \N 440206 \N 0 0 \N \N f \N 436031 2024-02-23 11:03:18.693 2024-02-23 11:13:20.084 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. A https://example.com/ 20555 436029 436028.436029.436031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0124349171797 0 \N \N f 0 \N 11 157515826 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436041 2024-02-23 11:22:47.706 2024-02-23 11:32:49.307 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nOut quite different term just require. Store thing key why particul https://example.com/ 16543 436016 435907.436016.436041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.660392378976 0 \N \N f 0 \N 2 236654205 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436583 2024-02-23 19:24:03.541 2024-02-23 19:34:04.457 \N Parent control wide song secti https://example.com/ 19664 436578 436493.436564.436577.436578.436583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4699846922316 0 \N \N f 0 \N 0 42332120 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 440270 2024-02-27 06:20:15.94 2024-02-27 06:30:17.537 By fight several talk. Minute pr Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nReality deal sort professional try him product. People writer religious spring. Ability law https://example.com/ 640 \N 440270 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 18.1323819833046 0 \N \N f 0 \N 0 44720211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436196 2024-02-23 13:43:50.228 2024-02-23 13:53:51.522 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nTop group country tree light cultur https://example.com/ 20861 436185 436028.436029.436031.436059.436065.436091.436126.436141.436162.436169.436171.436185.436196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43680849308365 0 \N \N f 0 \N 0 93614108 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436205 2024-02-23 13:50:13.203 2024-02-23 14:00:15.255 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nResponse finally play political tonight wear live. Bill hear a support thought every https://example.com/ 19016 436189 436189.436205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.429089003539 0 \N \N f 0 \N 0 217318149 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 436221 2024-02-23 14:01:49.436 2024-02-23 14:11:50.57 \N Experience base structure our question reach investme https://example.com/ 646 436219 436189.436209.436217.436219.436221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6320655149884 0 \N \N f 0 \N 0 64004112 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 436043 2024-02-23 11:23:45.45 2024-02-23 11:33:46.274 \N Moment or possible there month. Myself hit name https://example.com/ 4076 436024 435907.436014.436024.436043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0078503136546 0 \N \N f 0 \N 0 20996670 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436207 2024-02-23 13:50:31.663 2024-02-23 14:00:33.119 Shake pretty eat probably pretty stop time. Everything write ne Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn. https://example.com/ 18909 \N 436207 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.57389660301453 0 \N \N f 0 \N 0 235867651 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436014 2024-02-23 10:35:15.487 2024-02-23 10:45:17.061 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface https://example.com/ 20117 435907 435907.436014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02944908770925 0 \N \N f 0 \N 5 16932800 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436191 2024-02-23 13:41:22.615 2024-02-23 13:51:23.996 Travel watch north career song last. Together article wind billion medi Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take sce https://example.com/ 14959 \N 436191 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.8112964737895 0 \N \N f 0 \N 1 90022642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436229 2024-02-23 14:13:58.426 2024-02-23 14:23:59.23 \N See cell reach mouth prove. Explain https://example.com/ 2525 436197 436197.436229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5486562251934 0 \N \N f 0 \N 1 30966422 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N 436206 2024-02-23 13:50:21.814 2024-02-23 14:00:22.468 \N Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owne https://example.com/ 20084 436189 436189.436206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.435959535529 0 \N \N f 0 \N 1 25532420 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 436301 2024-02-23 15:16:13.446 2024-02-23 15:26:14.395 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Produc https://example.com/ 15544 436292 436093.436292.436301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6195385035439 0 \N \N f 0 \N 0 64505773 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436252 2024-02-23 14:31:12.52 2024-02-23 14:41:14.761 \N Discussion sing wear moment organization. Idea check https://example.com/ 7119 436106 436028.436053.436106.436252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0619233666713 0 \N \N f 0 \N 0 23612415 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436189 2024-02-23 13:37:14.117 2024-02-23 13:47:15.592 End and certainly language lawyer her sort. Attentio Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together. https://example.com/ 8080 \N 436189 \N \N \N \N \N \N \N \N health \N ACTIVE \N 14.9241778230011 0 \N \N f 0 \N 7 143281417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440276 2024-02-27 06:42:50.799 2024-02-27 06:52:51.467 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone https://example.com/ 16350 395248 395248.440276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.18506833678275 0 \N \N f 0 \N 0 142133355 0 f f \N \N \N \N 395248 \N 0 0 \N \N f \N 436220 2024-02-23 14:00:41.403 2024-02-23 14:10:42.69 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nWorld k https://example.com/ 12261 436206 436189.436206.436220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7871415281427 0 \N \N f 0 \N 0 9999394 0 f f \N \N \N \N 436189 \N 0 0 \N \N f \N 436204 2024-02-23 13:49:43.651 2024-02-23 13:59:44.642 \N Price country https://example.com/ 2703 436203 436177.436203.436204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7876501323734 0 \N \N f 0 \N 3 50054566 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 436237 2024-02-23 14:24:03.497 2024-02-23 14:34:04.498 \N Reality d https://example.com/ 11678 436231 436231.436237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27246602998971 0 \N \N f 0 \N 0 6974429 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 440271 2024-02-27 06:21:06.273 2024-02-27 06:31:07.68 \N Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepa https://example.com/ 11698 440015 438938.440015.440271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2343670913276 0 \N \N f 0 \N 1 167762047 0 f f \N \N \N \N 438938 \N 0 0 \N \N f \N 436223 2024-02-23 14:03:52.845 2024-02-23 14:13:53.948 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nVery yes customer public music ex https://example.com/ 730 435899 435030.435141.435669.435899.436223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4357353775516 0 \N \N f 0 \N 2 135011306 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 440914 2024-02-27 18:38:21.288 2024-02-27 18:48:22.716 \N Ten instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with politic https://example.com/ 1051 439671 439671.440914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.498076317082 0 \N \N f 0 \N 0 221291883 0 f f \N \N \N \N 439671 \N 0 0 \N \N f \N 440928 2024-02-27 18:50:10.528 2024-02-27 19:00:12.156 \N Often culture through progr https://example.com/ 11417 440854 440729.440759.440787.440852.440854.440928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.62434551466 0 \N \N f 0 \N 0 184675793 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 440934 2024-02-27 18:54:32.694 2024-02-27 19:04:34.226 \N Mention well why thank develop. A https://example.com/ 21506 440902 440902.440934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10692618105087 0 \N \N f 0 \N 0 145077848 0 f f \N \N \N \N 440902 \N 0 0 \N \N f \N 436251 2024-02-23 14:30:50.874 2024-02-23 14:40:52.177 \N Measure western pretty s https://example.com/ 16665 436025 436025.436251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3849456630213 0 \N \N f 0 \N 0 194570305 0 f f \N \N \N \N 436025 \N 0 0 \N \N f \N 440283 2024-02-27 07:03:03.205 2024-02-27 07:13:05.202 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nProperty pass now firm tod https://example.com/ 4166 440274 439639.440274.440283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.28390713336432 0 \N \N f 0 \N 0 1102635 0 f f \N \N \N \N 439639 \N 0 0 \N \N f \N 436233 2024-02-23 14:17:35.958 2024-02-23 14:27:37.265 Chance near song measure every physical. Quickly white usually interest u Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nPo https://example.com/ 837 \N 436233 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 26.3285317302572 0 \N \N f 0 \N 0 34340007 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436291 2024-02-23 15:11:11.552 2024-02-23 15:21:13.577 \N Cell language ea https://example.com/ 5757 436247 436151.436247.436291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1483113640536 0 \N \N f 0 \N 0 78413295 0 f f \N \N \N \N 436151 \N 0 0 \N \N f \N 435958 2024-02-23 08:56:13.954 2024-02-23 09:06:15.045 Perform might someone repre Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over https://example.com/ 2775 \N 435958 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 24.3779139136321 0 \N \N f 0 \N 2 159422000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440278 2024-02-27 06:52:18.367 2024-02-27 07:02:19.927 \N Area just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly https://example.com/ 12289 385351 385351.440278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53972845519849 0 \N \N f 0 \N 0 167505391 0 f f \N \N \N \N 385351 \N 0 0 \N \N f \N 436128 2024-02-23 12:54:52.263 2024-02-23 13:04:53.171 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. https://example.com/ 20674 434801 434795.434801.436128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5448293806532 0 \N \N f 0 \N 2 244400891 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436284 2024-02-23 15:06:23.707 2024-02-23 15:16:25.463 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available https://example.com/ 16706 436279 436136.436279.436284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2692662934271 0 \N \N f 0 \N 0 48751599 0 f f \N \N \N \N 436136 \N 0 0 \N \N f \N 440242 2024-02-27 05:18:34.521 2024-02-27 05:28:35.195 \N Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sig https://example.com/ 20619 439946 439946.440242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.583598101077634 0 \N \N f 0 \N 4 206801557 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 436203 2024-02-23 13:48:41.784 2024-02-23 13:58:43.051 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind https://example.com/ 18660 436177 436177.436203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4366167545276 0 \N \N f 0 \N 4 208058545 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 436239 2024-02-23 14:24:52.033 2024-02-23 14:34:53.241 \N North beat realize. Scho https://example.com/ 18817 436231 436231.436239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4650288103966 0 \N \N f 0 \N 0 206564186 0 f f \N \N \N \N 436231 \N 0 0 \N \N f \N 436232 2024-02-23 14:17:30.539 2024-02-23 14:27:32.227 \N Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\n https://example.com/ 12272 435898 435030.435141.435749.435898.436232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2620088856098 0 \N \N f 0 \N 1 233761716 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 440241 2024-02-27 05:11:42.454 2024-02-27 05:21:43.37 Score picture lo Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research s https://example.com/ 2681 \N 440241 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.91438702926218 0 \N \N f 0 \N 12 39974436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436238 2024-02-23 14:24:11.706 2024-02-23 14:34:12.764 \N View especially nation https://example.com/ 12808 436236 436213.436236.436238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.05760600016839 0 \N \N f 0 \N 0 127405614 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N 442504 2024-02-28 17:56:18.136 2024-02-28 18:06:19.308 \N Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. https://example.com/ 1429 442023 442023.442504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6647019916515 0 \N \N f 0 \N 4 32751310 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 436282 2024-02-23 15:02:58.585 2024-02-23 15:12:59.576 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value https://example.com/ 21083 436277 436028.436029.436045.436052.436056.436064.436277.436282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2748593751946 0 \N \N f 0 \N 0 110152986 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436455 2024-02-23 17:23:21.239 2024-02-23 17:33:23.058 \N Industry great https://example.com/ 8004 436449 436028.436449.436455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43410814122249 0 \N \N f 0 \N 3 70937533 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436283 2024-02-23 15:03:03.46 2024-02-23 15:13:05.592 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development https://example.com/ 16970 436232 435030.435141.435749.435898.436232.436283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1473748520679 0 \N \N f 0 \N 0 247293459 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 436135 2024-02-23 12:59:24.009 2024-02-23 13:09:25.034 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land https://example.com/ 19906 436032 436032.436135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.34500114734 0 \N \N f 0 \N 1 111938934 0 f f \N \N \N \N 436032 \N 0 0 \N \N f \N 440275 2024-02-27 06:42:24.697 2024-02-27 06:52:26.228 \N Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought th https://example.com/ 12516 440009 440009.440275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1584937429644 0 \N \N f 0 \N 9 235780425 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 436310 2024-02-23 15:22:33.763 2024-02-23 15:32:36.604 \N Structure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern train https://example.com/ 10731 436288 436273.436288.436310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4450033604055 0 \N \N f 0 \N 2 186384238 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 436151 2024-02-23 13:08:46.252 2024-02-23 13:18:47.377 Purpose teacher manager once tax mouth. Notice person history Democrat dog fat Baby body day citizen change. Present https://example.com/ 12261 \N 436151 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.4761717478766 0 \N \N f 0 \N 4 39145758 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438504 2024-02-25 17:52:58.485 2024-02-25 18:03:00.114 Least start time do. Occur between avoid political use make. Nor no both ab She loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive https://example.com/ 21088 \N 438504 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 26.7195233522182 0 \N \N f 0 \N 1 35166104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436245 2024-02-23 14:27:45.904 2024-02-23 14:37:47.03 Edge give like skill yard. Government run t Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate. https://example.com/ 21349 \N 436245 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 6.81781504653813 0 \N \N f 0 \N 0 186131783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436262 2024-02-23 14:39:13.183 2024-02-23 14:49:14.575 \N Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind https://example.com/ 17091 436229 436197.436229.436262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5251743420679 0 \N \N f 0 \N 0 65972199 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N 440217 2024-02-27 03:32:44.203 2024-02-27 03:42:45.61 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nOil fast organization discussion board nation hotel. Re https://example.com/ 19458 439822 439822.440217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7070444222113 0 \N \N f 0 \N 2 192571916 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 440287 2024-02-27 07:09:56.922 2024-02-27 07:19:58.164 \N Small ne https://example.com/ 4323 439644 439644.440287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0688912377643 0 \N \N f 0 \N 0 16255738 0 f f \N \N \N \N 439644 \N 0 0 \N \N f \N 440284 2024-02-27 07:04:08.545 2024-02-27 07:14:09.818 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone https://example.com/ 13931 440245 439822.440217.440245.440284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0551744871773 0 \N \N f 0 \N 0 223707738 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 439664 2024-02-26 17:28:18.045 2024-02-26 17:38:19.155 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead him https://example.com/ 21042 439639 439639.439664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01611941555128 0 \N \N f 0 \N 1 61031063 0 f f \N \N \N \N 439639 \N 0 0 \N \N f \N 440289 2024-02-27 07:14:57.532 2024-02-27 07:24:59.089 \N Any new necessary low. Option win do almost. Performance https://example.com/ 20663 439855 439855.440289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7513018423937 0 \N \N f 0 \N 1 138515797 0 f f \N \N \N \N 439855 \N 0 0 \N \N f \N 436266 2024-02-23 14:44:32.716 2024-02-23 14:54:34.59 \N Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Scie https://example.com/ 18291 435217 435217.436266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.00778522808449367 0 \N \N f 0 \N 0 67686981 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 436072 2024-02-23 11:51:08.724 2024-02-23 12:01:10.118 \N Often culture through program memory mind go. Wrong statement discussion. Recognize https://example.com/ 12220 436028 436028.436072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10074230942396 0 \N \N f 0 \N 1 220849490 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436259 2024-02-23 14:36:12.15 2024-02-23 14:46:13.195 \N Same need interesting between watch base city by. Anything many wat https://example.com/ 1658 436257 436028.436053.436125.436257.436259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9815296765877 0 \N \N f 0 \N 3 32019592 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436476 2024-02-23 17:36:58.728 2024-02-23 17:47:01.012 \N Common loss oil be. Wrong water cover yet edge trouble. Business l https://example.com/ 4083 435682 435682.436476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.351947905635 0 \N \N f 0 \N 0 61473528 0 f f \N \N \N \N 435682 \N 0 0 \N \N f \N 436263 2024-02-23 14:41:29.487 2024-02-23 14:51:30.971 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he colle https://example.com/ 951 436259 436028.436053.436125.436257.436259.436263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7809864214312 0 \N \N f 0 \N 2 65582931 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436249 2024-02-23 14:28:40.069 2024-02-23 14:38:41.196 Rule hope accept blue. Firm performance go office accept. High action Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen. https://example.com/ 16350 \N 436249 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 27.1113731673806 0 \N \N f 0 \N 0 195290239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436260 2024-02-23 14:36:39.623 2024-02-23 14:46:40.926 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Char https://example.com/ 12911 436257 436028.436053.436125.436257.436260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.65718703716038 0 \N \N f 0 \N 0 37474847 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436250 2024-02-23 14:29:56.5 2024-02-23 14:39:58.136 \N Civil attorney sell amount. F https://example.com/ 3518 436138 434795.434801.436128.436138.436250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58726089596447 0 \N \N f 0 \N 0 207961908 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436255 2024-02-23 14:32:51.483 2024-02-23 14:42:52.949 Speak street chance point. B Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three. https://example.com/ 4459 \N 436255 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 26.4782145589925 0 \N \N f 0 \N 1 72563493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436053 2024-02-23 11:34:03.469 2024-02-23 11:44:05.049 \N Direction fill away friend environme https://example.com/ 21386 436028 436028.436053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7735217058691 0 \N \N f 0 \N 9 126698707 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436264 2024-02-23 14:42:12.751 2024-02-23 14:52:13.862 Door western each. Thus first tonight run chance control. Course partic Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more v https://example.com/ 700 \N 436264 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 22.8008262045837 0 \N \N f 0 \N 1 56620813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436296 2024-02-23 15:12:55.957 2024-02-23 15:22:57.314 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model af https://example.com/ 20129 436211 435905.436211.436296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95768814319648 0 \N \N f 0 \N 0 242912552 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436032 2024-02-23 11:04:28.915 2024-02-23 11:14:29.714 Artist fly billion same. Go may avo Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest https://example.com/ 21051 \N 436032 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 7.05683124136542 0 \N \N f 0 \N 2 245939899 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440280 2024-02-27 06:56:31.339 2024-02-27 07:06:33.823 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone https://example.com/ 15243 440271 438938.440015.440271.440280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09125775820228 0 \N \N f 0 \N 0 181261325 0 f f \N \N \N \N 438938 \N 0 0 \N \N f \N 440296 2024-02-27 07:25:06.877 2024-02-27 07:35:08.041 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission l https://example.com/ 696 438937 438937.440296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0540849034913 0 \N \N f 0 \N 0 124117390 0 f f \N \N \N \N 438937 \N 0 0 \N \N f \N 436240 2024-02-23 14:26:20.405 2024-02-23 14:36:21.818 Though deal provid Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nPolitics or often interview. Chair value threat likely one. Evidence old respo https://example.com/ 20858 \N 436240 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 18.3514415943508 0 \N \N f 0 \N 0 166609484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440245 2024-02-27 05:25:11.531 2024-02-27 05:35:13.054 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nOnto although Democrat mi https://example.com/ 18359 440217 439822.440217.440245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5155081351501 0 \N \N f 0 \N 1 227008960 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 436269 2024-02-23 14:47:23.975 2024-02-23 14:57:25.246 \N Expert kind conference provide. Structure risk https://example.com/ 16717 436113 436093.436113.436269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.21721767358247 0 \N \N f 0 \N 1 103801622 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 440288 2024-02-27 07:14:42.695 2024-02-27 07:24:43.62 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nMorning create future popular. Shoulder animal society want indeed expert. Available c https://example.com/ 12102 440014 439699.439752.439758.439766.440014.440288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9971454611927 0 \N \N f 0 \N 6 160392990 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440285 2024-02-27 07:07:32.274 2024-02-27 07:17:33.414 \N Play director employee. Tend central those now store drop. Rule friend man https://example.com/ 11698 440023 438936.440023.440285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9325624535966 0 \N \N f 0 \N 0 331277 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 440072 2024-02-26 22:55:38.63 2024-02-26 23:05:40.138 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nNear whom sit wonder https://example.com/ 19796 439830 438936.439830.440072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7621243802666 0 \N \N f 0 \N 0 193538006 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 436297 2024-02-23 15:14:06.733 2024-02-23 15:24:07.596 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cul https://example.com/ 19037 436270 436028.436053.436125.436257.436259.436263.436270.436297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2902189587667 0 \N \N f 0 \N 0 118284589 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436261 2024-02-23 14:38:11.947 2024-02-23 14:48:12.936 \N Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at https://example.com/ 16970 436241 436241.436261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97746703583766 0 \N \N f 0 \N 1 122343965 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436308 2024-02-23 15:21:16.386 2024-02-23 15:31:17.551 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. https://example.com/ 14385 436243 436241.436243.436308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.495081571724 0 \N \N f 0 \N 1 109153118 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436265 2024-02-23 14:43:37.44 2024-02-23 14:53:39.082 \N Most describe tell speech without. Young lot next cell among war agree. Important according suc https://example.com/ 1291 436028 436028.436265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.503141896683 0 \N \N f 0 \N 0 70651713 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440286 2024-02-27 07:08:57.395 2024-02-27 07:18:59.457 \N Response finally play political tonight wear live. Bill hear a support thought e https://example.com/ 20577 439830 438936.439830.440286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17157930919274 0 \N \N f 0 \N 0 195334084 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 439855 2024-02-26 20:03:20.779 2024-02-26 20:13:21.699 Discussion various drop throw none test wind. Exactly nation read year. Enviro Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control. https://example.com/ 21201 \N 439855 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.27466590337368 0 \N \N f 0 \N 2 182027992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440294 2024-02-27 07:23:43.133 2024-02-27 07:33:44.269 \N Then politi https://example.com/ 10094 440289 439855.440289.440294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.36492460982687 0 \N \N f 0 \N 0 6110745 0 f f \N \N \N \N 439855 \N 0 0 \N \N f \N 440305 2024-02-27 07:44:41.377 2024-02-27 07:54:42.928 \N State wa https://example.com/ 15094 439760 439760.440305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.729339234562 0 \N \N f 0 \N 0 3159164 0 f f \N \N \N \N 439760 \N 0 0 \N \N f \N 440307 2024-02-27 07:46:38.887 2024-02-27 07:56:40.374 Deal probably car re Find building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer https://example.com/ 641 \N 440307 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 1.86278180663937 0 \N \N f 0 \N 0 106227944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436115 2024-02-23 12:43:07.312 2024-02-23 12:53:08.671 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader https://example.com/ 5746 436028 436028.436115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.210267685794 0 \N \N f 0 \N 1 126215528 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436277 2024-02-23 14:54:41.636 2024-02-23 15:04:43.171 \N Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare https://example.com/ 19309 436064 436028.436029.436045.436052.436056.436064.436277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.13192467946001 0 \N \N f 0 \N 1 123875662 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436272 2024-02-23 14:50:47.319 2024-02-23 15:00:48.301 \N Price occur station prepare be marriage. Anything enter respond something home https://example.com/ 5377 436261 436241.436261.436272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.66715067944547 0 \N \N f 0 \N 0 11489945 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 439758 2024-02-26 18:54:21.434 2024-02-26 19:04:23.017 \N Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after curre https://example.com/ 4388 439752 439699.439752.439758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8876572079449 0 \N \N f 0 \N 9 29693857 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 436101 2024-02-23 12:29:46.787 2024-02-23 12:39:48.194 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large re https://example.com/ 14195 435690 435690.436101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.236769096369 0 \N \N f 0 \N 0 228824577 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 440906 2024-02-27 18:34:02.187 2024-02-27 18:44:04.009 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather https://example.com/ 782 440880 440079.440282.440880.440906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55917143011873 0 \N \N f 0 \N 1 129794004 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 436293 2024-02-23 15:11:38.068 2024-02-23 15:21:39.697 \N Most which usually increase event at hold. En https://example.com/ 17817 436276 435905.436276.436293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4994579264215 0 \N \N f 0 \N 0 135857270 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 440257 2024-02-27 05:43:16.229 2024-02-27 05:53:17.648 Under big evening others. Trip remain money region report bill guess. Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particular https://example.com/ 21492 \N 440257 \N \N \N \N \N \N \N \N health \N ACTIVE \N 9.77476859128462 0 \N \N f 0 \N 0 167926013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436312 2024-02-23 15:25:07.736 2024-02-23 15:35:09.97 \N Range laugh thousand step. Them television final out care drop. Put call during exp https://example.com/ 1180 436310 436273.436288.436310.436312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.70262622347618 0 \N \N f 0 \N 1 179303779 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 439752 2024-02-26 18:46:28.333 2024-02-26 18:56:29.535 \N Doctor operation because training los https://example.com/ 11670 439699 439699.439752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3074504683486 0 \N \N f 0 \N 11 155386482 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 436311 2024-02-23 15:23:36.575 2024-02-23 15:33:38.508 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pa https://example.com/ 19403 436084 436051.436084.436311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0133739645299 0 \N \N f 0 \N 0 155092387 0 f f \N \N \N \N 436051 \N 0 0 \N \N f \N 442501 2024-02-28 17:52:51.296 2024-02-28 18:02:52.315 Matter training Perform might someone represent where not main. Get note couple spend who benefit. Cas https://example.com/ 20563 \N 442501 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 15.8133151329993 0 \N \N f 0 \N 3 231827012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436280 2024-02-23 15:01:33.418 2024-02-23 15:11:35.25 \N Us less sure. Late trav https://example.com/ 18680 436242 436213.436242.436280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.64272303790732 0 \N \N f 0 \N 0 242295956 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N 435619 2024-02-22 22:39:58.575 2024-02-22 22:49:59.709 \N Professor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we progra https://example.com/ 10728 435612 435328.435487.435605.435612.435619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5397484654232 0 \N \N f 0 \N 2 141615567 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 440303 2024-02-27 07:41:38.122 2024-02-27 07:51:39.845 \N Morning hundred analysis understand admit prevent. Time https://example.com/ 4064 439053 438956.439053.440303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.023192855872 0 \N \N f 0 \N 1 11439167 0 f f \N \N \N \N 438956 \N 0 0 \N \N f \N 440298 2024-02-27 07:29:00.316 2024-02-27 07:39:01.91 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare l https://example.com/ 770 440266 440266.440298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4289068588833 0 \N \N f 0 \N 1 200704618 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 441510 2024-02-28 06:48:03.643 2024-02-28 06:58:04.674 \N Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate th https://example.com/ 674 441257 441176.441257.441510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9116612058059 0 \N \N f 0 \N 1 35438704 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 440300 2024-02-27 07:31:27.615 2024-02-27 07:41:29.678 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again y https://example.com/ 18630 440057 439638.439662.440057.440300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.48054181765106 0 \N \N f 0 \N 5 34766461 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 436388 2024-02-23 16:32:11.932 2024-02-23 16:42:13.072 \N About cell note lot https://example.com/ 15103 436115 436028.436115.436388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.75289142873735 0 \N \N f 0 \N 0 246209357 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 442540 2024-02-28 18:28:09.803 2024-02-28 18:38:11.628 \N Town listen something design east writ https://example.com/ 8448 442531 442501.442531.442540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7835983031461 0 \N \N f 0 \N 0 61283675 0 f f \N \N \N \N 442501 \N 0 0 \N \N f \N 436303 2024-02-23 15:18:41.373 2024-02-23 15:28:42.918 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nAlso we https://example.com/ 1505 436093 436093.436303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4231932084501 0 \N \N f 0 \N 5 203294635 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 434183 2024-02-21 18:56:50.512 2024-02-21 19:06:52.08 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone https://example.com/ 4173 434067 433828.433999.434020.434057.434067.434183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2190334839328 0 \N \N f 0 \N 1 174752954 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 436270 2024-02-23 14:48:06.228 2024-02-23 14:58:07.754 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly https://example.com/ 899 436263 436028.436053.436125.436257.436259.436263.436270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2750407587811 0 \N \N f 0 \N 1 116031148 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436302 2024-02-23 15:16:57.968 2024-02-23 15:26:59.647 \N Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nReflect price head six peace company remain. These improve us if effort. Series recen https://example.com/ 9421 436241 436241.436302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6832936504669 0 \N \N f 0 \N 1 205160524 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 434469 2024-02-22 01:41:31.65 2024-02-22 01:51:33.739 Not find attack Five now source affect police. Various nature large camp https://example.com/ 657 \N 434469 \N \N \N \N \N \N \N \N history \N ACTIVE \N 10.3171364959084 0 \N \N f 0 \N 14 107531978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436157 2024-02-23 13:11:12.099 2024-02-23 13:21:13.577 \N Drug you class ope https://example.com/ 15337 435925 435657.435728.435920.435925.436157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0715573679531 0 \N \N f 0 \N 4 137418620 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 436093 2024-02-23 12:26:51.503 2024-02-23 12:36:53.379 Although thought fall today protect ago. Able institution o Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small si https://example.com/ 21021 \N 436093 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 8.38289318504398 0 \N \N f 0 \N 20 144649604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442537 2024-02-28 18:24:11.621 2024-02-28 18:34:12.979 Police civil here think minute economic. Let father police. Upon political dif Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment. https://example.com/ 2196 \N 442537 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.3171808549137 0 \N \N f 0 \N 0 183016397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436315 2024-02-23 15:28:32.033 2024-02-23 15:38:34.656 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule https://example.com/ 9184 436307 436290.436307.436315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44401929019573 0 \N \N f 0 \N 0 104832932 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 436327 2024-02-23 15:46:52.896 2024-02-23 15:56:54.812 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps her https://example.com/ 17166 436303 436093.436303.436327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5725259224784 0 \N \N f 0 \N 0 119048812 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436321 2024-02-23 15:34:25.902 2024-02-23 15:44:28.313 \N Race site manager blood. President perform under know option. Suggest city thus open. Sea https://example.com/ 9820 436243 436241.436243.436321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7517582934211 0 \N \N f 0 \N 0 53501311 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436317 2024-02-23 15:29:34.242 2024-02-23 15:39:36.021 Involve morning someone them Congre Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nMajority next authority recogniz https://example.com/ 16684 \N 436317 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.62986038649382 0 \N \N f 0 \N 0 63050723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436228 2024-02-23 14:12:11.496 2024-02-23 14:22:12.662 Onto although Democrat mind significant trade hair. Product Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Mayb https://example.com/ 20220 \N 436228 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 25.413285498704 0 \N \N f 0 \N 0 209248915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437474 2024-02-24 17:02:26.329 2024-02-24 17:12:27.918 Job stage use material manage. Perhaps nothing project animal worker despit Bag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order. https://example.com/ 6327 \N 437474 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 23.2901876008106 0 \N \N f 0 \N 1 111205646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442262 2024-02-28 15:59:49.38 2024-02-28 16:09:51.405 \N Before evening her v https://example.com/ 21418 441968 441968.442262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4166007594289 0 \N \N f 0 \N 0 56234320 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442264 2024-02-28 16:00:05.2 2024-02-28 16:00:11.161 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate con https://example.com/ 20987 442263 442263.442264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3816542747195 0 \N \N f 0 \N 0 113030478 0 f f \N \N \N \N 442263 \N 0 0 \N \N f \N 442255 2024-02-28 15:56:59.461 2024-02-28 16:07:00.24 Speak organization direction school minute. Daughter model l Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand. https://example.com/ 17708 \N 442255 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.259946667108 0 \N \N f 0 \N 1 197272487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442263 2024-02-28 16:00:04.84 2024-02-28 16:10:06.686 Fund spring who save three true. Past director road where I help forward. Ball l \N https://example.com/ 10007 \N 442263 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 24.0908056130723 0 \N \N f 0 \N 2 139514525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434129 2024-02-21 18:18:30.404 2024-02-21 18:28:31.775 Future next exist girl prevent. Another song Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort https://example.com/ 18865 \N 434129 \N \N \N \N \N \N \N \N health \N ACTIVE \N 23.5910480126192 0 \N \N f 0 \N 1 246067591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436396 2024-02-23 16:39:07.007 2024-02-23 16:49:09.301 \N Big money in south wide support. Meet r https://example.com/ 2029 436343 436028.436343.436396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.813551991333 0 \N \N f 0 \N 4 216222399 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440279 2024-02-27 06:55:52.992 2024-02-27 07:05:53.822 \N Special thought day cup hard ce https://example.com/ 21275 440206 440206.440279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9265436783122 0 \N \N f 0 \N 1 221211156 0 f f \N \N \N \N 440206 \N 0 0 \N \N f \N 439339 2024-02-26 13:57:13.125 2024-02-26 14:07:14.371 Reality four attention. Whose each design pull that w Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nTest rock daughter nation moment. Article want structure campaign. Piece professi https://example.com/ 19976 \N 439339 \N \N \N \N \N \N \N \N security \N ACTIVE \N 23.1720319182546 0 \N \N f 0 \N 0 170397854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440901 2024-02-27 18:31:13.43 2024-02-27 18:41:14.901 \N Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health en https://example.com/ 6361 440711 440711.440901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0816174813574 0 \N \N f 0 \N 0 178116423 0 f f \N \N \N \N 440711 \N 0 0 \N \N f \N 434874 2024-02-22 12:13:46.606 2024-02-22 12:23:48.004 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear na https://example.com/ 9985 434381 433828.434381.434874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3720316741209 0 \N \N f 0 \N 2 16995379 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 438992 2024-02-26 09:14:33.395 2024-02-26 09:24:35.123 Keep third police section avoi Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply ins https://example.com/ 16353 \N 438992 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 19.6311556425923 0 \N \N f 0 \N 1 146976407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440293 2024-02-27 07:23:07.371 2024-02-27 07:33:09.153 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull car https://example.com/ 19570 438992 438992.440293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5144904694253 0 \N \N f 0 \N 0 48089472 0 f f \N \N \N \N 438992 \N 0 0 \N \N f \N 442543 2024-02-28 18:31:50.966 2024-02-28 18:41:52.008 \N Ever small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare p https://example.com/ 19890 442084 442084.442543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4215187673938 0 \N \N f 0 \N 1 125381996 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 440029 2024-02-26 22:11:19.199 2024-02-26 22:21:21.323 Director far fact order bit collection. Ok prove thought not Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nRight view contain easy someone. People away page experienc https://example.com/ 18500 \N 440029 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.7239344843605 0 \N \N f 0 \N 0 61268212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439147 2024-02-26 12:11:35.362 2024-02-26 12:21:36.949 Detail me send tax knowledge. Bad police remember avoid often int Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every dat https://example.com/ 3411 \N 439147 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.68357567461323 0 \N \N f 0 \N 12 44758846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436299 2024-02-23 15:14:28.017 2024-02-23 15:24:29.419 \N Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west t https://example.com/ 1733 435966 435905.435966.436299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5275524795457 0 \N \N f 0 \N 0 49333723 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436300 2024-02-23 15:15:03.687 2024-02-23 15:25:05.475 \N Billion deep othe https://example.com/ 6300 330790 330698.330774.330790.436300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8580491250626 0 \N \N f 0 \N 0 229337019 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 440302 2024-02-27 07:37:03.432 2024-02-27 07:47:04.591 \N House west https://example.com/ 16633 440239 440239.440302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.44544150821771 0 \N \N f 0 \N 0 44609807 0 f f \N \N \N \N 440239 \N 0 0 \N \N f \N 442265 2024-02-28 16:00:37.116 2024-02-28 16:10:38.661 \N Pattern someone noti https://example.com/ 21609 442146 442084.442146.442265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0520249723878 0 \N \N f 0 \N 0 25356073 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442254 2024-02-28 15:56:48.661 2024-02-28 16:06:50.661 Past everybody chance health. Minute choice your half by. Response exactly be Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget. https://example.com/ 20026 \N 442254 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.48973250826739 0 \N \N f 0 \N 1 158281327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436316 2024-02-23 15:28:35.431 2024-02-23 15:38:36.67 Purpose teacher manager once tax mouth. Notice person history Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power. https://example.com/ 19506 \N 436316 \N \N \N \N \N \N \N \N health \N ACTIVE \N 10.527945759478 0 \N \N f 0 \N 2 71870818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436400 2024-02-23 16:42:11.544 2024-02-23 16:52:12.785 Same need interesting between watch base city by. An Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our. https://example.com/ 656 \N 436400 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.1294806208748 0 \N \N f 0 \N 0 170586395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440311 2024-02-27 07:55:43.324 2024-02-27 08:05:45.111 \N Down item fund list company. https://example.com/ 19929 439082 439082.440311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4189555386324 0 \N \N f 0 \N 0 242582921 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440325 2024-02-27 08:22:43.281 2024-02-27 08:32:44.566 \N Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add https://example.com/ 2046 440320 439638.439662.440057.440300.440317.440320.440325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41668593446936 0 \N \N f 0 \N 2 60086308 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440087 2024-02-26 23:33:02.805 2024-02-26 23:43:04.287 \N Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Sit https://example.com/ 18359 440084 439946.439996.440059.440067.440084.440087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2459541138026 0 \N \N f 0 \N 0 246034010 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 440229 2024-02-27 04:22:43.388 2024-02-27 04:32:44.84 Majority foot simply point day chance rest. Sister notice reason sell. Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior ce https://example.com/ 11820 \N 440229 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.34784275485928 0 \N \N f 0 \N 1 83344221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440256 2024-02-27 05:42:47.685 2024-02-27 05:52:49.354 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nSurface field himself similar. Give fast pas https://example.com/ 807 440241 440241.440256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3945777272518 0 \N \N f 0 \N 2 228686427 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 435643 2024-02-22 23:10:20.753 2024-02-22 23:20:22.062 Sort thus staff hard network character producti Service source fact. Term affect people Congress natural business list. https://example.com/ 2734 \N 435643 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.6003259098774 0 \N \N f 0 \N 0 12039430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440905 2024-02-27 18:33:03.284 2024-02-27 18:43:04.385 \N Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs https://example.com/ 20990 440890 440633.440890.440905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5623696329695 0 \N \N f 0 \N 0 159708497 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 434292 2024-02-21 21:15:49.616 2024-02-21 21:25:51.039 \N Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare o https://example.com/ 16789 433828 433828.434292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2147475856335 0 \N \N f 0 \N 0 176308813 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 440203 2024-02-27 03:00:58.579 2024-02-27 03:11:00.164 \N Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nDrive south traditional new what unit mother. Drug professio https://example.com/ 7587 439946 439946.440203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.86353626998027 0 \N \N f 0 \N 0 153309556 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 439053 2024-02-26 10:27:39.661 2024-02-26 10:37:41.404 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these https://example.com/ 4763 438956 438956.439053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2262638619156 0 \N \N f 0 \N 2 184094462 0 f f \N \N \N \N 438956 \N 0 0 \N \N f \N 440059 2024-02-26 22:43:26.303 2024-02-26 22:53:27.28 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number p https://example.com/ 9418 439996 439946.439996.440059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5523730793411 0 \N \N f 0 \N 4 99368319 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 440372 2024-02-27 09:42:42.772 2024-02-27 09:52:44.649 \N Somebody head others contain mome https://example.com/ 20301 440365 440365.440372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78450157757189 0 \N \N f 0 \N 0 60085428 0 f f \N \N \N \N 440365 \N 0 0 \N \N f \N 436287 2024-02-23 15:09:52.06 2024-02-23 15:19:53.455 \N Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nBecome season style here. Part color view local beau https://example.com/ 10056 436208 435905.436208.436287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47665389735292 0 \N \N f 0 \N 0 11811726 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436322 2024-02-23 15:34:35.055 2024-02-23 15:44:36.325 Morning create f Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nKey t https://example.com/ 20452 \N 436322 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.45186042002108 0 \N \N f 0 \N 3 131057575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440306 2024-02-27 07:45:03.478 2024-02-27 07:55:04.3 Notice after fund p Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material https://example.com/ 621 \N 440306 \N \N \N \N \N \N \N \N art \N ACTIVE \N 8.46729858264716 0 \N \N f 0 \N 0 233320251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436329 2024-02-23 15:48:30.428 2024-02-23 15:58:32.71 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nWar black change thing any from. Be soldier perhaps manage https://example.com/ 19507 436273 436273.436329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0796193852369 0 \N \N f 0 \N 1 13986658 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 436333 2024-02-23 15:51:57.572 2024-02-23 16:01:58.569 \N Product analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nSafe pass wife stay effort mission. Major lon https://example.com/ 8269 436241 436241.436333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5969134981804 0 \N \N f 0 \N 0 103162270 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436286 2024-02-23 15:07:29.316 2024-02-23 15:17:30.531 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper l https://example.com/ 7899 436135 436032.436135.436286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.58203559797553 0 \N \N f 0 \N 0 51887792 0 f f \N \N \N \N 436032 \N 0 0 \N \N f \N 435063 2024-02-22 14:54:14.358 2024-02-22 15:04:15.943 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut betwee https://example.com/ 19153 435046 435046.435063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82589370665728 0 \N \N f 0 \N 2 100153050 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436340 2024-02-23 15:53:47.998 2024-02-23 16:03:50.562 Statement these family d Election parent through minute sit. Name others benefit ago co https://example.com/ 21365 \N 436340 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 6.8261185750055 0 \N \N f 0 \N 0 206772424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440312 2024-02-27 07:56:57.61 2024-02-27 08:06:59.158 Middle city always. Benefit watch wide Call system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish. https://example.com/ 18072 \N 440312 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 27.4813090594169 0 \N \N f 0 \N 0 54829363 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440309 2024-02-27 07:50:07.227 2024-02-27 08:00:08.633 Very maybe current. So source work lawyer set guess. Individual tax Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter. https://example.com/ 16176 \N 440309 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3637025995965 0 \N \N f 0 \N 3 18246648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436061 2024-02-23 11:41:37.1 2024-02-23 11:51:38.941 \N Measure would expert nation two. Prove at together various style. Garden ya https://example.com/ 15762 436028 436028.436061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4297979769432 0 \N \N f 0 \N 0 227869011 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440334 2024-02-27 08:40:12.523 2024-02-27 08:50:14.105 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch https://example.com/ 20745 440327 439638.439662.440057.440300.440317.440320.440325.440327.440334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9745864353842 0 \N \N f 0 \N 0 100201888 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440314 2024-02-27 08:01:06.845 2024-02-27 08:11:07.825 \N Set how recognize operation American. Account avoid miss maybe https://example.com/ 4076 440310 440009.440275.440310.440314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.470335039047 0 \N \N f 0 \N 7 19744019 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 436335 2024-02-23 15:52:58.006 2024-02-23 16:03:00.478 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nDevelop receive back PM. Use arrive best polic https://example.com/ 18745 436241 436241.436335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7131107996029 0 \N \N f 0 \N 0 168016883 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436338 2024-02-23 15:53:39.301 2024-02-23 16:03:40.319 \N Than level lawyer mouth they put. Model apply like https://example.com/ 21406 436332 436322.436332.436338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0696416334018 0 \N \N f 0 \N 1 165408280 0 f f \N \N \N \N 436322 \N 0 0 \N \N f \N 440304 2024-02-27 07:41:39.671 2024-02-27 07:51:41.864 \N Tree ho https://example.com/ 17494 440279 440206.440279.440304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.50361843954736 0 \N \N f 0 \N 0 158467907 0 f f \N \N \N \N 440206 \N 0 0 \N \N f \N 441287 2024-02-28 00:26:43.403 2024-02-28 00:36:44.591 \N Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cult https://example.com/ 21600 438837 438837.441287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.07000848584389 0 \N \N f 0 \N 0 16068592 0 f f \N \N \N \N 438837 \N 0 0 \N \N f \N 434795 2024-02-22 11:00:04.003 2024-02-22 11:10:05.51 About easy ans We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near https://example.com/ 11458 \N 434795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6109917370561 0 \N \N f 0 \N 93 157921494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440322 2024-02-27 08:12:58.432 2024-02-27 08:22:59.888 \N Project them draw walk if significant wrong https://example.com/ 1692 440316 440009.440275.440310.440314.440316.440322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5499502771828 0 \N \N f 0 \N 5 69107870 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 436271 2024-02-23 14:48:57.833 2024-02-23 14:58:59.508 \N That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purp https://example.com/ 18392 435929 435690.435929.436271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7372913444789 0 \N \N f 0 \N 4 157268589 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 436344 2024-02-23 15:55:19.631 2024-02-23 16:05:20.863 Begin kind newspa Professi https://example.com/ 10608 \N 436344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79367688757418 0 \N \N f 0 \N 5 169387808 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435786 2024-02-23 03:12:11.205 2024-02-23 03:22:13.903 \N Guy help book. Senior activity environment. Party take https://example.com/ 10862 435359 435359.435786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00256619964963 0 \N \N f 0 \N 2 204976791 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 436224 2024-02-23 14:04:19.425 2024-02-23 14:14:21.046 Leader partner among describe unit star it cold. Exist leg anyone civil team. De Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development y https://example.com/ 660 \N 436224 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 16.7570937013847 0 \N \N f 0 \N 2 238176746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436346 2024-02-23 15:56:05.818 2024-02-23 16:06:07.082 \N Possib https://example.com/ 2056 435649 435046.435135.435162.435214.435220.435235.435649.436346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.6234209108371 0 \N \N f 0 \N 0 13385162 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440319 2024-02-27 08:07:40.985 2024-02-27 08:17:42.592 \N Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatev https://example.com/ 1130 440303 438956.439053.440303.440319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1067432986704 0 \N \N f 0 \N 0 231304717 0 f f \N \N \N \N 438956 \N 0 0 \N \N f \N 440313 2024-02-27 07:57:41.926 2024-02-27 08:07:44.396 \N Still power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute thro https://example.com/ 16296 440242 439946.440242.440313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.54123781750712 0 \N \N f 0 \N 3 214072767 0 f f \N \N \N \N 439946 \N 0 0 \N \N f \N 440308 2024-02-27 07:48:58.169 2024-02-27 07:59:00.128 \N Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. https://example.com/ 19465 440267 440266.440267.440308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3379866875119 0 \N \N f 0 \N 1 181986626 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 441062 2024-02-27 20:33:37.815 2024-02-27 20:43:38.981 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from g https://example.com/ 20337 441037 440989.440999.441037.441062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.007628163689 0 \N \N f 0 \N 3 187343768 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 436377 2024-02-23 16:20:06.407 2024-02-23 16:30:09.039 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself https://example.com/ 15386 436323 436323.436377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0866471147295 0 \N \N f 0 \N 1 79922776 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 436723 2024-02-23 23:20:00.95 2024-02-23 23:30:02.41 \N Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become nation https://example.com/ 705 436523 436523.436723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.77941281223907 0 \N \N f 0 \N 0 219056757 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 440323 2024-02-27 08:17:16.114 2024-02-27 08:27:17.953 Scene relate paper hospital. Star cultural Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock. https://example.com/ 21263 \N 440323 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 9.14711963354957 0 \N \N f 0 \N 0 227139213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436379 2024-02-23 16:21:39.967 2024-02-23 16:31:41.036 \N Rock source rate fact leave house course. Person support hotel bill easy. Wear ce https://example.com/ 19664 435907 435907.436379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7350851851351 0 \N \N f 0 \N 0 116604598 0 f f \N \N \N \N 435907 \N 0 0 \N \N f \N 436358 2024-02-23 16:04:17.642 2024-02-23 16:14:18.662 \N Behavior safe concern street crime. Newspaper president have brother voice. https://example.com/ 21343 436129 435908.436129.436358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9948673670366 0 \N \N f 0 \N 0 249882234 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 440330 2024-02-27 08:33:19.33 2024-02-27 08:43:20.722 \N Beyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box https://example.com/ 2963 440309 440309.440330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9765532138778 0 \N \N f 0 \N 1 81396084 0 f f \N \N \N \N 440309 \N 0 0 \N \N f \N 440316 2024-02-27 08:02:34.321 2024-02-27 08:12:35.541 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light commu https://example.com/ 2039 440314 440009.440275.440310.440314.440316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32758642192555 0 \N \N f 0 \N 6 36388555 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 439451 2024-02-26 15:20:13.733 2024-02-26 15:30:15.188 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especi https://example.com/ 11938 439100 439100.439451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7786177607144 0 \N \N f 0 \N 1 120687492 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 436334 2024-02-23 15:52:26.241 2024-02-23 16:02:28.397 \N Turn where describe while kitchen spec https://example.com/ 8376 436329 436273.436329.436334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0440513590166 0 \N \N f 0 \N 0 175149124 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 436351 2024-02-23 15:59:34.792 2024-02-23 16:09:36.422 \N Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nNeed huge foreign thing https://example.com/ 15119 435939 434263.435740.435939.436351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57884411697512 0 \N \N f 0 \N 0 70402892 0 f f \N \N \N \N 434263 \N 0 0 \N \N f \N 436129 2024-02-23 12:54:53.401 2024-02-23 13:04:55.185 \N Treatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple w https://example.com/ 16351 435908 435908.436129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.97183115881577 0 \N \N f 0 \N 2 17386216 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 442270 2024-02-28 16:02:39.274 2024-02-28 16:12:41.312 \N Authority environmental party bank re https://example.com/ 12911 442267 441695.441885.442267.442270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55371975232107 0 \N \N f 0 \N 2 156007273 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 436398 2024-02-23 16:39:37.713 2024-02-23 16:49:38.698 \N Cut firm blood tell decision direction. Allow allow degree https://example.com/ 19813 436391 436273.436391.436398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3231020602199 0 \N \N f 0 \N 3 123579891 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 435951 2024-02-23 08:37:46.17 2024-02-23 08:47:48.79 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone ya https://example.com/ 20117 435950 435944.435950.435951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.493645054661584 0 \N \N f 0 \N 0 103283880 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436362 2024-02-23 16:08:29.066 2024-02-23 16:18:30.624 Film happen almost than. Staff stuff life conce Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality. https://example.com/ 4102 \N 436362 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0823811622142 0 \N \N f 0 \N 3 123342191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436399 2024-02-23 16:41:28.768 2024-02-23 16:51:30.812 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. https://example.com/ 18705 436390 436390.436399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4147421593915 0 \N \N f 0 \N 0 94877220 0 f f \N \N \N \N 436390 \N 0 0 \N \N f \N 435950 2024-02-23 08:37:03.654 2024-02-23 08:47:05.018 \N Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nMember I discover option technology recognize espe https://example.com/ 2176 435944 435944.435950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8313581833078 0 \N \N f 0 \N 4 22644059 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 440320 2024-02-27 08:10:05.61 2024-02-27 08:20:07.003 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman https://example.com/ 3706 440317 439638.439662.440057.440300.440317.440320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55865194444175 0 \N \N f 0 \N 3 117866035 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 436356 2024-02-23 16:03:27.976 2024-02-23 16:13:30.84 \N Parent control w https://example.com/ 13097 436352 435882.436352.436356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.6798202015893 0 \N \N f 0 \N 0 207581654 0 f f \N \N \N \N 435882 \N 0 0 \N \N f \N 440333 2024-02-27 08:39:46.163 2024-02-27 08:49:48.36 Though or meet hotel. Pay center pattern quality somebody beyon Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight. https://example.com/ 2156 \N 440333 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 25.2013888921073 0 \N \N f 0 \N 1 161981720 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440326 2024-02-27 08:25:47.54 2024-02-27 08:35:48.482 \N Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Agai https://example.com/ 21575 440322 440009.440275.440310.440314.440316.440322.440326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3903842403002 0 \N \N f 0 \N 4 182344209 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 436374 2024-02-23 16:18:10.481 2024-02-23 16:28:12.794 \N Public appear create he visit. Time smi https://example.com/ 18640 436243 436241.436243.436374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1075627836433 0 \N \N f 0 \N 0 121748880 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440329 2024-02-27 08:31:58.467 2024-02-27 08:41:59.962 \N Message throw as table worry https://example.com/ 16706 439451 439100.439451.440329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.234863188990566 0 \N \N f 0 \N 0 33644476 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 436353 2024-02-23 16:00:50.624 2024-02-23 16:10:52.748 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Nat https://example.com/ 20596 436288 436273.436288.436353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.28697624683024 0 \N \N f 0 \N 1 52380529 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 440894 2024-02-27 18:25:37.252 2024-02-27 18:35:39.557 \N Mind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nCell civil on much able sure. They rich middle between. Radio publ https://example.com/ 21207 439147 439147.440894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0846539019413584 0 \N \N f 0 \N 0 113754089 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 440895 2024-02-27 18:25:38.635 2024-02-27 18:35:40.197 \N Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Respon https://example.com/ 18412 440445 440266.440267.440416.440445.440895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.80236205692825 0 \N \N f 0 \N 0 192434994 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436352 2024-02-23 16:00:39.625 2024-02-23 16:10:40.585 \N Occur office book. Expect https://example.com/ 14472 435882 435882.436352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1309931872238 0 \N \N f 0 \N 1 130238836 0 f f \N \N \N \N 435882 \N 0 0 \N \N f \N 436357 2024-02-23 16:03:37.395 2024-02-23 16:13:38.633 \N New here partner campaign right. Per occur happen very. Final career ability smil https://example.com/ 15624 436338 436322.436332.436338.436357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.223612352261 0 \N \N f 0 \N 0 174286662 0 f f \N \N \N \N 436322 \N 0 0 \N \N f \N 439662 2024-02-26 17:26:39.955 2024-02-26 17:36:41.031 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nBody situation https://example.com/ 18454 439638 439638.439662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9265115817837 0 \N \N f 0 \N 11 163867004 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440332 2024-02-27 08:38:55.966 2024-02-27 08:48:57.536 \N Near key among effort cover century support author. Station trial serve certain be https://example.com/ 13132 440220 440220.440332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9016064975453 0 \N \N f 0 \N 0 204568527 0 f f \N \N \N \N 440220 \N 0 0 \N \N f \N 436387 2024-02-23 16:27:41.676 2024-02-23 16:37:43.028 Gas evening morning do of. Development South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow. https://example.com/ 6602 \N 436387 \N \N \N \N \N \N \N \N health \N ACTIVE \N 19.2349497263914 0 \N \N f 0 \N 0 244032044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436390 2024-02-23 16:35:28.094 2024-02-23 16:45:29.479 Budget agent center morning series international bar. Song Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer. https://example.com/ 16052 \N 436390 \N \N \N \N \N \N \N \N history \N ACTIVE \N 2.79524709539956 0 \N \N f 0 \N 1 39776998 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436319 2024-02-23 15:31:04.815 2024-02-23 15:41:06.516 White have loss parent whole statement. Find couple next relationship song value If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write. https://example.com/ 9351 \N 436319 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 23.878922757227 0 \N \N f 0 \N 0 207867626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436355 2024-02-23 16:03:07.761 2024-02-23 16:13:09.104 Positio Southern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according. https://example.com/ 8423 \N 436355 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.0601096941695 0 \N \N f 0 \N 1 41367815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436288 2024-02-23 15:10:36.975 2024-02-23 15:20:38.109 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish incl https://example.com/ 2213 436273 436273.436288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8884060082223 0 \N \N f 0 \N 5 221750185 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 440327 2024-02-27 08:25:47.653 2024-02-27 08:35:49.408 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street https://example.com/ 14357 440325 439638.439662.440057.440300.440317.440320.440325.440327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.00917799168968 0 \N \N f 0 \N 1 213386424 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440317 2024-02-27 08:03:04.531 2024-02-27 08:13:06.778 \N Standard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nRace site manager blood. President perform under know option. Suggest city https://example.com/ 2525 440300 439638.439662.440057.440300.440317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65891974132207 0 \N \N f 0 \N 4 228754730 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 436289 2024-02-23 15:10:51.811 2024-02-23 15:20:53.44 Stand red drop occur tell week sure worker. Skill teacher purpose major g Middle without school budget car Mrs https://example.com/ 18311 \N 436289 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.3979049381358 0 \N \N f 0 \N 1 1612912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439671 2024-02-26 17:34:06.582 2024-02-26 17:44:08.373 Myself effort community ago while assume. Instead believe animal then however price particularly. When whose economic others million. Ready long thank https://example.com/ 20881 \N 439671 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 20.9558718403791 0 \N \N f 0 \N 1 17701296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441688 2024-02-28 10:57:40.253 2024-02-28 11:07:42.843 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chai https://example.com/ 13204 441375 441375.441688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.42438233305175 0 \N \N f 0 \N 0 208102019 0 f f \N \N \N \N 441375 \N 0 0 \N \N f \N 441776 2024-02-28 11:45:27.988 2024-02-28 11:55:29.126 \N Candidate down city since. Ag https://example.com/ 8459 441765 441695.441737.441747.441751.441765.441776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5556287762773 0 \N \N f 0 \N 0 244611384 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 436349 2024-02-23 15:58:23.231 2024-02-23 16:08:24.449 \N Never money Congress data single trial. Today https://example.com/ 18956 435756 435046.435135.435292.435504.435756.436349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62605642622714 0 \N \N f 0 \N 4 74480550 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436369 2024-02-23 16:13:00.94 2024-02-23 16:23:02.99 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nCell civil https://example.com/ 14990 436323 436323.436369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.379141266804 0 \N \N f 0 \N 0 203602471 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 436380 2024-02-23 16:21:46.014 2024-02-23 16:31:47.048 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. https://example.com/ 4059 436373 435046.435135.435292.435504.435756.436349.436373.436380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.21449412972744 0 \N \N f 0 \N 0 73649740 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436290 2024-02-23 15:11:02.868 2024-02-23 15:21:04.408 Young shake push a Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must https://example.com/ 9084 \N 436290 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 0.736405255895853 0 \N \N f 0 \N 6 11564505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436371 2024-02-23 16:14:48.246 2024-02-23 16:24:50.587 \N Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear https://example.com/ 705 436289 436289.436371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.547220127285 0 \N \N f 0 \N 0 174507475 0 f f \N \N \N \N 436289 \N 0 0 \N \N f \N 435669 2024-02-22 23:51:12.744 2024-02-23 00:01:13.899 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nType door clear left. Test investment between table expect. Often reduce s https://example.com/ 4831 435141 435030.435141.435669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.003567953845 0 \N \N f 0 \N 4 36513342 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 440035 2024-02-26 22:14:03.663 2024-02-26 22:24:04.938 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particu https://example.com/ 18472 439987 439987.440035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6132175633016 0 \N \N f 0 \N 2 82229235 0 f f \N \N \N \N 439987 \N 0 0 \N \N f \N 436361 2024-02-23 16:08:15.222 2024-02-23 16:18:16.604 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nImprove different identify onl https://example.com/ 10979 435906 435906.436361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6206631273557 0 \N \N f 0 \N 2 17484339 0 f f \N \N \N \N 435906 \N 0 0 \N \N f \N 440349 2024-02-27 09:19:13.238 2024-02-27 09:29:14.503 \N Price country hour whom over argue Congress upon. Nation baby rel https://example.com/ 5495 440342 440009.440275.440310.440314.440316.440322.440326.440331.440342.440349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6825533563225 0 \N \N f 0 \N 1 90814352 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 436367 2024-02-23 16:10:40.536 2024-02-23 16:20:42.441 \N Film beautiful large international mother order recognize. Pressure statement adult simply ne https://example.com/ 13398 436304 436241.436243.436304.436367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75955912584342 0 \N \N f 0 \N 0 70185571 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436437 2024-02-23 17:15:38.293 2024-02-23 17:25:39.233 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull https://example.com/ 14195 435217 435217.436437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1870616391884 0 \N \N f 0 \N 2 72439518 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 441761 2024-02-28 11:35:35.248 2024-02-28 11:45:37.042 Raise represent Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nFriend growth election water degre https://example.com/ 13553 \N 441761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5874632308299 0 \N \N f 0 \N 3 34556530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436348 2024-02-23 15:58:14.623 2024-02-23 16:08:16.367 Month explain matter sou Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper https://example.com/ 13903 \N 436348 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 21.3938219058674 0 \N \N f 0 \N 0 115477775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436354 2024-02-23 16:02:53.554 2024-02-23 16:12:54.861 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nEdge card save. Whether manager always however scene move. Soldie https://example.com/ 11750 436176 435746.436176.436354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3745376359355 0 \N \N f 0 \N 0 161792682 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 436359 2024-02-23 16:05:12.059 2024-02-23 16:15:14.693 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nToward position themselves news unit. Manage go century budget light issue participan https://example.com/ 21503 436353 436273.436288.436353.436359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3971950948692 0 \N \N f 0 \N 0 195258643 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 440999 2024-02-27 19:55:35.501 2024-02-27 20:05:36.657 \N Point box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store the https://example.com/ 18995 440989 440989.440999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5229025919496 0 \N \N f 0 \N 7 208000169 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 436389 2024-02-23 16:33:33.059 2024-02-23 16:43:34.778 \N With feel late. Receive one firm sport here. Option task meeting fine https://example.com/ 20502 436201 436201.436389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29735506285061 0 \N \N f 0 \N 0 208430898 0 f f \N \N \N \N 436201 \N 0 0 \N \N f \N 436401 2024-02-23 16:44:15.093 2024-02-23 16:54:17.197 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reali https://example.com/ 17568 436398 436273.436391.436398.436401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2425351307394 0 \N \N f 0 \N 2 234092804 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 435067 2024-02-22 14:57:26.424 2024-02-22 15:07:28.002 \N Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nReach road deal https://example.com/ 6687 434795 434795.435067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2360759732646 0 \N \N f 0 \N 1 24819729 0 f f \N \N \N \N 434795 \N 0 0 \N \N f \N 436318 2024-02-23 15:29:35.014 2024-02-23 15:39:36.355 Hit decade night. Ball myself benefit occur spring nothing. Factor wish i Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role. https://example.com/ 16350 \N 436318 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.84323722491699 0 \N \N f 0 \N 2 79330209 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430899 2024-02-19 16:01:10.385 2024-02-23 16:31:00.786 \N Thousand billion ge https://example.com/ 7766 430862 430862.430899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5104301488266 0 \N \N f 0 \N 0 91696942 0 f f \N \N \N \N 430862 \N 0 0 \N \N f \N 436406 2024-02-23 16:47:05.626 2024-02-23 16:57:07.267 If lose particular record natural camera good. Season serve someone leg b Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality c https://example.com/ 21547 \N 436406 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.0635107334788 0 \N \N f 0 \N 0 211380064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436152 2024-02-23 13:09:45.081 2024-02-23 13:19:46.321 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nTrue quickly government finish region. Discuss positive respo https://example.com/ 2774 436036 436036.436152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3173734008943 0 \N \N f 0 \N 1 3008726 0 f f \N \N \N \N 436036 \N 0 0 \N \N f \N 436382 2024-02-23 16:23:56.02 2024-02-23 16:33:56.99 Stage can fish building senior. Through position capital official. While late Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best. https://example.com/ 10398 \N 436382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7687594998925 0 \N \N f 0 \N 0 83921907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436385 2024-02-23 16:27:01.981 2024-02-23 16:37:03.189 Second point director operation. Soon f Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air s https://example.com/ 17221 \N 436385 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 20.3172643605632 0 \N \N f 0 \N 0 149081010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436386 2024-02-23 16:27:22.624 2024-02-23 16:37:24.822 \N Station nothing https://example.com/ 1002 436381 436362.436375.436381.436386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5602986694562 0 \N \N f 0 \N 0 126345285 0 f f \N \N \N \N 436362 \N 0 0 \N \N f \N 436227 2024-02-23 14:05:01.023 2024-02-23 14:15:02.206 Shake pretty eat probably pretty stop time. Everything write never. Civi Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save. https://example.com/ 12921 \N 436227 \N \N \N \N \N \N \N \N security \N ACTIVE \N 26.9316767353522 0 \N \N f 0 \N 0 46759739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436417 2024-02-23 17:02:22.949 2024-02-23 23:49:06.491 \N Cause daughter drop https://example.com/ 16667 436397 436397.436417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.37176561039801 0 \N \N f 0 \N 0 23589973 0 f f \N \N \N \N 436397 \N 0 0 \N \N f \N 436409 2024-02-23 16:50:28.943 2024-02-23 17:00:30.546 \N Thank rule https://example.com/ 19259 436258 436258.436409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.949617313852 0 \N \N f 0 \N 1 239138433 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 436345 2024-02-23 15:55:47.627 2024-02-23 16:05:48.611 \N Light env https://example.com/ 2757 436344 436344.436345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2822578817553 0 \N \N f 0 \N 0 35631852 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 435732 2024-02-23 01:01:36.187 2024-02-23 01:11:37.339 Boy force agency change score no job. Memory sta Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to. https://example.com/ 11477 \N 435732 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 19.9998791966035 0 \N \N f 0 \N 0 199708159 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436342 2024-02-23 15:54:42.989 2024-02-23 16:04:44.39 Effect indeed easy never instead even force. Economy use rule re Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred. https://example.com/ 18321 \N 436342 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.8692543569715 0 \N \N f 0 \N 0 228912700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436147 2024-02-23 13:06:43.575 2024-02-23 13:16:45.243 Hundred unit musi Ten instead develop somebody into school https://example.com/ 16348 \N 436147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.341410277997 0 \N \N f 0 \N 3 124765446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436416 2024-02-23 17:01:52.536 2024-02-23 17:11:55.331 \N Could computer meet. Board response member bad oil here goal. Dinner https://example.com/ 13587 435922 435922.436416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0331034088485 0 \N \N f 0 \N 1 61995671 0 f f \N \N \N \N 435922 \N 0 0 \N \N f \N 436421 2024-02-23 17:04:27.707 2024-02-23 17:14:29.17 \N Provide red song https://example.com/ 1114 436253 436253.436421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.26813913630662 0 \N \N f 0 \N 1 244657118 0 f f \N \N \N \N 436253 \N 0 0 \N \N f \N 436099 2024-02-23 12:28:32.436 2024-02-23 12:38:33.649 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beauti https://example.com/ 5308 436072 436028.436072.436099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7065598764356 0 \N \N f 0 \N 0 7762833 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436458 2024-02-23 17:24:48.299 2024-02-23 17:34:49.189 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientis https://example.com/ 859 434440 434440.436458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.400253393683 0 \N \N f 0 \N 0 184752066 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 436429 2024-02-23 17:08:06.962 2024-02-23 17:18:08.463 History prepare everyone role everybody son. Meet discuss six do Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share. https://example.com/ 20381 \N 436429 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.447481709909 0 \N \N f 0 \N 0 108082639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436415 2024-02-23 17:01:23.485 2024-02-23 17:11:24.971 \N Born value hundred medical lo https://example.com/ 15662 435905 435905.436415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61609834134735 0 \N \N f 0 \N 1 79136643 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436244 2024-02-23 14:27:39.293 2024-02-23 14:37:41.03 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid https://example.com/ 20280 436241 436241.436244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0176409650706 0 \N \N f 0 \N 0 2146325 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436231 2024-02-23 14:17:23.438 2024-02-23 14:27:25.143 Various discussion li If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband s https://example.com/ 14213 \N 436231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4341205770333 0 \N \N f 0 \N 4 160725150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436423 2024-02-23 17:04:55.997 2024-02-23 17:14:57.28 \N Book ok power church man machine. https://example.com/ 21343 436147 436147.436423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.99615892774419 0 \N \N f 0 \N 0 234429186 0 f f \N \N \N \N 436147 \N 0 0 \N \N f \N 436447 2024-02-23 17:19:27.996 2024-02-23 17:29:29.544 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie. https://example.com/ 2711 436363 436363.436447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.48853322618414 0 \N \N f 0 \N 0 204125655 0 f f \N \N \N \N 436363 \N 0 0 \N \N f \N 436430 2024-02-23 17:08:09.768 2024-02-23 17:18:10.976 \N Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those https://example.com/ 9329 433889 433889.436430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9557127120125 0 \N \N f 0 \N 1 122097711 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 441889 2024-02-28 13:09:08.768 2024-02-28 13:19:11.376 \N Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without doo https://example.com/ 4102 441884 441843.441864.441871.441882.441884.441889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8103138058479 0 \N \N f 0 \N 1 42282231 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 436428 2024-02-23 17:07:46.121 2024-02-23 17:17:47.224 \N Have decide business throw source stro https://example.com/ 700 436025 436025.436428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7158768514414 0 \N \N f 0 \N 0 54166154 0 f f \N \N \N \N 436025 \N 0 0 \N \N f \N 436425 2024-02-23 17:05:51.132 2024-02-23 17:15:52.524 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nMethod media an https://example.com/ 9551 436241 436241.436425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48809817104158 0 \N \N f 0 \N 0 48973542 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436439 2024-02-23 17:15:54.033 2024-02-23 17:25:55.397 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy the https://example.com/ 9184 436273 436273.436439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0889015739331 0 \N \N f 0 \N 1 248269115 0 f f \N \N \N \N 436273 \N 0 0 \N \N f \N 435675 2024-02-22 23:56:01.032 2024-02-23 00:06:02.233 Statement could up son I. Range book politics sign I whatever suffer coll Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out re https://example.com/ 18815 \N 435675 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 21.1190517300357 0 \N \N f 0 \N 0 175024841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436197 2024-02-23 13:44:22.212 2024-02-23 13:54:23.916 Four learn tell crime. Work maintain probably huge win training. Join do Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site esta https://example.com/ 9109 \N 436197 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 26.1378269626728 0 \N \N f 0 \N 4 191393662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435751 2024-02-23 01:54:10.663 2024-02-23 02:04:12.271 \N Purpose age cover machine. Must individual hot begin figure thre https://example.com/ 2513 435231 435231.435751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.96925548607334 0 \N \N f 0 \N 0 53035964 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 435954 2024-02-23 08:43:10.576 2024-02-23 08:53:12.509 Morning better everybody sen Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send. https://example.com/ 18945 \N 435954 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 18.8618609939436 0 \N \N f 0 \N 0 67486528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436242 2024-02-23 14:26:34.343 2024-02-23 14:36:35.061 \N Suffer same investment. Finish https://example.com/ 795 436213 436213.436242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2014296492138 0 \N \N f 0 \N 1 149670395 0 f f \N \N \N \N 436213 \N 0 0 \N \N f \N 436253 2024-02-23 14:32:08.376 2024-02-23 14:42:09.822 Fly include one church TV air Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nDebate property life amount writer. https://example.com/ 12289 \N 436253 \N \N \N \N \N \N \N \N art \N ACTIVE \N 17.5564617217285 0 \N \N f 0 \N 2 215602025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436469 2024-02-23 17:34:47.146 2024-02-23 17:44:49.178 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theor https://example.com/ 5377 436462 436462.436469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94216310315491 0 \N \N f 0 \N 0 34947033 0 f f \N \N \N \N 436462 \N 0 0 \N \N f \N 436248 2024-02-23 14:28:38.792 2024-02-23 14:38:40.192 War black change thing any f Build toward black meet no your. Face stay mak https://example.com/ 802 \N 436248 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 13.674468728321 0 \N \N f 0 \N 0 5295322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436441 2024-02-23 17:16:17.265 2024-02-23 17:26:18.879 \N Everyon https://example.com/ 5427 435847 435847.436441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9853825204638 0 \N \N f 0 \N 0 8221461 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 436456 2024-02-23 17:24:13.229 2024-02-23 17:34:14.971 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase https://example.com/ 1692 436430 433889.436430.436456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2983418684855 0 \N \N f 0 \N 0 68993860 0 f f \N \N \N \N 433889 \N 0 0 \N \N f \N 436444 2024-02-23 17:17:59.16 2024-02-23 17:28:01.106 Boy force agency change score no job. Memory stay across social cultural make. Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place https://example.com/ 15890 \N 436444 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 3.48932349393177 0 \N \N f 0 \N 0 40169438 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436376 2024-02-23 16:19:27.965 2024-02-23 16:29:29.014 \N Onto although Democrat mind significant https://example.com/ 21619 436281 436241.436281.436376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51905426277087 0 \N \N f 0 \N 0 95638634 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436413 2024-02-23 16:55:28.4 2024-02-23 17:05:29.907 Beyond leg century level herself Off should democratic notice old apply society. Buy section probably help https://example.com/ 19664 \N 436413 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 25.2995266659346 0 \N \N f 0 \N 7 59341791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436273 2024-02-23 14:51:53.209 2024-02-23 15:01:54.664 Member I discover option technology reco Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather ce https://example.com/ 8095 \N 436273 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 8.42975616348568 0 \N \N f 0 \N 15 216915889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436448 2024-02-23 17:19:39.158 2024-02-23 17:29:40.806 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. https://example.com/ 18836 436442 436364.436442.436448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8480218827213 0 \N \N f 0 \N 0 94435208 0 f f \N \N \N \N 436364 \N 0 0 \N \N f \N 436484 2024-02-23 17:40:43.259 2024-02-23 17:50:45.588 \N Majority member tend give rece https://example.com/ 8498 436318 436318.436484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8485976398452 0 \N \N f 0 \N 0 24076770 0 f f \N \N \N \N 436318 \N 0 0 \N \N f \N 440172 2024-02-27 01:46:22.95 2024-02-27 01:56:25.024 \N End and certainly language lawyer her sort. Attention rate turn guess. Camera towar https://example.com/ 27 439315 439315.440172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2150712910321 0 \N \N f 0 \N 1 222325762 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 436436 2024-02-23 17:11:58.104 2024-02-23 17:21:59.037 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better them https://example.com/ 2543 436241 436241.436436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0605885758205 0 \N \N f 0 \N 0 173188154 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436485 2024-02-23 17:41:20.365 2024-02-23 17:51:21.245 \N Same need interesting between watch base city by. Anything many watch style collection arm quit https://example.com/ 4035 436163 436163.436485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.981854118343 0 \N \N f 0 \N 0 46082383 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 436254 2024-02-23 14:32:39.429 2024-02-23 14:42:41.379 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result st https://example.com/ 19132 436241 436241.436254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94905297495093 0 \N \N f 0 \N 0 137756037 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 441884 2024-02-28 13:06:17.594 2024-02-28 13:16:19.233 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume differenc https://example.com/ 19952 441882 441843.441864.441871.441882.441884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7897227648788 0 \N \N f 0 \N 2 154044593 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 436461 2024-02-23 17:30:28.196 2024-02-23 17:40:29.328 \N Beyond new strong important. Final sport thus physical situation. F https://example.com/ 9796 436274 436241.436274.436461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.38869431168197 0 \N \N f 0 \N 0 176211804 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436274 2024-02-23 14:52:15.983 2024-02-23 15:02:17.316 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on wit https://example.com/ 807 436241 436241.436274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.47392809002547 0 \N \N f 0 \N 1 221330461 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 435516 2024-02-22 20:57:24.664 2024-02-22 21:07:25.419 Price occur station prepare be marriage. Think month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning https://example.com/ 21239 \N 435516 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.8704269788091 0 \N \N f 0 \N 11 103635192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436463 2024-02-23 17:31:12.347 2024-02-23 17:41:13.339 \N Month explain matter south. Thus car occur https://example.com/ 1472 436323 436323.436463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7348826259204 0 \N \N f 0 \N 0 182135234 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 435631 2024-02-22 22:54:41.048 2024-02-22 23:04:42.269 \N Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\n https://example.com/ 8133 435610 435610.435631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8184073977014 0 \N \N f 0 \N 1 41685474 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 440337 2024-02-27 08:58:03.833 2024-02-27 09:08:05.262 \N Single level story s https://example.com/ 5069 439390 439390.440337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7562172152224 0 \N \N f 0 \N 0 93447931 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 440339 2024-02-27 09:01:43.676 2024-02-27 09:11:44.894 \N Travel nev https://example.com/ 14688 440125 439844.439887.440125.440339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79149928678767 0 \N \N f 0 \N 0 181042537 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 442043 2024-02-28 14:32:19.831 2024-02-28 14:42:22.337 Blood bill here traditional upon. Leg them lead garde Bag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nAfter way challenge. Nothing protect ground major structure area same any. E https://example.com/ 624 \N 442043 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.76115670080075 0 \N \N f 0 \N 1 95596257 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436467 2024-02-23 17:33:50.856 2024-02-23 17:43:53.215 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organiz https://example.com/ 886 436373 435046.435135.435292.435504.435756.436349.436373.436467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42226888912401 0 \N \N f 0 \N 0 203335846 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 436483 2024-02-23 17:39:43.538 2024-02-23 17:49:45.358 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil https://example.com/ 21040 436477 436028.436343.436396.436451.436471.436477.436483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11823468024851 0 \N \N f 0 \N 0 234362233 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436446 2024-02-23 17:18:38.585 2024-02-23 17:28:41.313 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cult https://example.com/ 20280 436437 435217.436437.436446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38125022686658 0 \N \N f 0 \N 1 6461360 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 436384 2024-02-23 16:26:10.194 2024-02-23 16:36:12.754 \N Senior than easy statement both total. Picture https://example.com/ 725 436241 436241.436384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.1341598550003 0 \N \N f 0 \N 0 169593151 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436424 2024-02-23 17:05:38.937 2024-02-23 17:15:40.386 \N Top group country tree light cultural simply. From https://example.com/ 20109 436415 435905.436415.436424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9950581238846 0 \N \N f 0 \N 0 171498827 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436465 2024-02-23 17:33:39.308 2024-02-23 17:43:41.131 \N Very maybe current. So source work lawyer set guess. Individual tax wait smil https://example.com/ 16965 436413 436413.436465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.66521927571821 0 \N \N f 0 \N 2 141424512 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 436464 2024-02-23 17:31:32.084 2024-02-23 17:41:33.152 \N Hundred position represent six morning ma https://example.com/ 2576 434469 434469.436464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31009664131211 0 \N \N f 0 \N 1 5578109 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 437592 2024-02-24 18:54:51.78 2024-02-24 19:04:52.96 \N Often culture through program memo https://example.com/ 10771 437505 435746.437505.437592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.054141416154927 0 \N \N f 0 \N 0 218973290 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 437600 2024-02-24 19:00:05.178 2024-02-24 19:00:11.66 \N Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter https://example.com/ 6653 437599 437599.437600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8105910621632 0 \N \N f 0 \N 0 145197062 0 f f \N \N \N \N 437599 \N 0 0 \N \N f \N 437613 2024-02-24 19:13:04.747 2024-02-24 19:23:06.397 \N Benefit car actually you open https://example.com/ 18930 437608 437608.437613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9686447703931 0 \N \N f 0 \N 0 1397897 0 f f \N \N \N \N 437608 \N 0 0 \N \N f \N 436728 2024-02-23 23:26:00.283 2024-02-23 23:36:02.279 \N S https://example.com/ 10731 436449 436028.436449.436728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.1520106163856 0 \N \N f 0 \N 0 212722835 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436370 2024-02-23 16:13:52.256 2024-02-23 16:23:54.711 \N Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. E https://example.com/ 18392 436223 435030.435141.435669.435899.436223.436370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2660950818016 0 \N \N f 0 \N 1 245115221 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 436482 2024-02-23 17:38:29.158 2024-02-23 17:48:31.129 \N Sing eight human sit. Tv already entire note. Arm measure send it four https://example.com/ 16126 436331 436331.436482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6544742517071 0 \N \N f 0 \N 0 116209835 0 f f \N \N \N \N 436331 \N 0 0 \N \N f \N 436503 2024-02-23 17:53:11.562 2024-02-23 18:03:13.227 \N Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. https://example.com/ 18629 436489 436466.436475.436481.436489.436503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.18561438810981 0 \N \N f 0 \N 0 148347143 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 436210 2024-02-23 13:51:38.899 2024-02-23 14:01:39.939 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure in https://example.com/ 19296 436191 436191.436210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3234348155103 0 \N \N f 0 \N 0 170874369 0 f f \N \N \N \N 436191 \N 0 0 \N \N f \N 440350 2024-02-27 09:21:16.089 2024-02-27 09:31:17.717 Structure require feel statement plan economy Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure. https://example.com/ 16950 \N 440350 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1328874762341 0 \N \N f 0 \N 1 233465725 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442447 2024-02-28 17:18:25.38 2024-02-28 17:28:27.182 \N Practice pressure help white source. Eith https://example.com/ 18380 442313 442313.442447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8421157957084 0 \N \N f 0 \N 0 239785688 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 436479 2024-02-23 17:37:36.041 2024-02-23 17:47:37.437 \N Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nDown item fund list company. https://example.com/ 2640 436370 435030.435141.435669.435899.436223.436370.436479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4159560002216 0 \N \N f 0 \N 0 102396582 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 436337 2024-02-23 15:53:08.977 2024-02-23 16:03:10.498 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry https://example.com/ 6058 435767 435610.435767.436337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06869117958616 0 \N \N f 0 \N 1 35086895 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 436163 2024-02-23 13:20:22.784 2024-02-23 13:30:23.931 Language effort sport mention guess way. By down lay store race. During hea Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent e https://example.com/ 16301 \N 436163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1232787272302 0 \N \N f 0 \N 5 92668949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436488 2024-02-23 17:42:09.378 2024-02-23 17:52:11.366 \N Program cut truth box indicate game. Agency option outside https://example.com/ 19198 436460 436460.436488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2558211223294 0 \N \N f 0 \N 3 103960879 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 440343 2024-02-27 09:07:15.271 2024-02-27 09:17:16.463 \N Ten instead develop somebody into school. Main bu https://example.com/ 16988 439917 439917.440343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6042556926804 0 \N \N f 0 \N 0 18640366 0 f f \N \N \N \N 439917 \N 0 0 \N \N f \N 436412 2024-02-23 16:53:12.765 2024-02-23 17:03:14.292 \N Everything she discuss gun somebody. Take a https://example.com/ 9242 436243 436241.436243.436412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9396079344275 0 \N \N f 0 \N 0 185330815 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436470 2024-02-23 17:35:01.775 2024-02-23 17:45:03.422 \N Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her https://example.com/ 659 436255 436255.436470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45882124780357 0 \N \N f 0 \N 0 170375547 0 f f \N \N \N \N 436255 \N 0 0 \N \N f \N 436510 2024-02-23 17:59:45.595 2024-02-23 18:09:46.702 Off should democratic not Remember draw realize. Include soon my person involve red sing different. https://example.com/ 9378 \N 436510 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 28.0939772158582 0 \N \N f 0 \N 0 118766152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436509 2024-02-23 17:58:17.508 2024-02-23 18:08:18.993 \N Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form https://example.com/ 6700 436465 436413.436465.436509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.28140252416829 0 \N \N f 0 \N 1 190871597 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 436304 2024-02-23 15:19:11.366 2024-02-23 15:29:12.52 \N End and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could ol https://example.com/ 21334 436243 436241.436243.436304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3835482861542 0 \N \N f 0 \N 1 224229212 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436216 2024-02-23 13:56:33.313 2024-02-23 14:06:34.853 \N War black change thing any from. B https://example.com/ 1173 436214 436177.436203.436204.436214.436216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.21190990228621 0 \N \N f 0 \N 1 201730105 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 436481 2024-02-23 17:38:16.088 2024-02-23 17:48:16.967 \N Public ask news upon forget election. Television technology everything light town blood. Ou https://example.com/ 4014 436475 436466.436475.436481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4601669349608 0 \N \N f 0 \N 2 190133023 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 431189 2024-02-19 18:14:41.485 2024-02-19 18:24:43.036 \N Tell billion now tough chair f https://example.com/ 16513 406462 406462.431189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.74731930402545 0 \N \N f 0 \N 0 44342547 0 f f \N \N \N \N 406462 \N 0 0 \N \N f \N 436564 2024-02-23 18:58:50.475 2024-02-23 19:08:52.028 \N Few system pick down where pull us. Out to relate https://example.com/ 17552 436493 436493.436564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3473129790556 0 \N \N f 0 \N 3 216773102 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 436373 2024-02-23 16:17:10.642 2024-02-23 16:27:12.527 \N Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat https://example.com/ 1584 436349 435046.435135.435292.435504.435756.436349.436373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1458372294621 0 \N \N f 0 \N 3 78403379 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440167 2024-02-27 01:39:23.057 2024-02-27 01:49:25.099 \N Yard someone shake final someone purpose. Remai https://example.com/ 21503 440056 440056.440167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9596416796505 0 \N \N f 0 \N 0 17791826 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440200 2024-02-27 02:57:10.162 2024-02-27 03:07:11.625 \N His mean individual benefit push consider. Admini https://example.com/ 18659 439315 439315.440200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.43724902510608 0 \N \N f 0 \N 0 223765214 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 436496 2024-02-23 17:47:34.602 2024-02-23 17:57:35.787 \N Prevent machine source https://example.com/ 19910 436494 436494.436496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27072034516426 0 \N \N f 0 \N 0 55781804 0 f f \N \N \N \N 436494 \N 0 0 \N \N f \N 436498 2024-02-23 17:49:06.984 2024-02-23 17:59:08.518 \N Machine sell woman west bed risk. https://example.com/ 797 436449 436028.436449.436498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1052641383061 0 \N \N f 0 \N 0 52450347 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436582 2024-02-23 19:23:23.674 2024-02-23 19:33:24.909 \N Matter training experience. Election https://example.com/ 14247 436499 436499.436582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4309380041836 0 \N \N f 0 \N 1 30612100 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436364 2024-02-23 16:09:52.149 2024-02-23 16:19:54.538 Quickly build security. Thought structure likely partner scene wrong likely a Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure https://example.com/ 21451 \N 436364 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.8132565370606 0 \N \N f 0 \N 2 123789323 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436501 2024-02-23 17:51:59.466 2024-02-23 18:02:01.454 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality l https://example.com/ 15282 436495 436460.436488.436490.436495.436501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7919453692417 0 \N \N f 0 \N 0 224520246 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 436480 2024-02-23 17:38:10.357 2024-02-23 17:48:11.805 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom e https://example.com/ 2577 436326 436326.436480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3804742069057 0 \N \N f 0 \N 1 166876235 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 439815 2024-02-26 19:37:11.248 2024-02-26 19:47:12.315 \N Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. https://example.com/ 6361 439472 439472.439815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4182350528915 0 \N \N f 0 \N 2 53164870 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 436222 2024-02-23 14:03:13.154 2024-02-23 14:13:14.52 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. https://example.com/ 6384 436216 436177.436203.436204.436214.436216.436222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6685372174355 0 \N \N f 0 \N 0 96458470 0 f f \N \N \N \N 436177 \N 0 0 \N \N f \N 440363 2024-02-27 09:31:53.989 2024-02-27 09:41:55.36 \N Us less sure. Late travel us signifi https://example.com/ 13931 440351 440351.440363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0654053051468 0 \N \N f 0 \N 0 232819747 0 f f \N \N \N \N 440351 \N 0 0 \N \N f \N 440384 2024-02-27 09:56:22 2024-02-27 10:06:24.052 \N Bag couple hot buy yourself serve bit. For even true detail southern. L https://example.com/ 21480 439503 439472.439503.440384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.841818926925839 0 \N \N f 0 \N 0 232892320 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 440357 2024-02-27 09:28:54.536 2024-02-27 09:38:56.966 \N South amount subject easy office. Sea force thousand director yard https://example.com/ 6300 440097 440056.440078.440097.440357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9043084631466 0 \N \N f 0 \N 2 146434495 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 441302 2024-02-28 00:44:19.129 2024-02-28 00:54:19.721 \N Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see https://example.com/ 13854 441153 441153.441302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0437442273244 0 \N \N f 0 \N 0 132570074 0 f f \N \N \N \N 441153 \N 0 0 \N \N f \N 440356 2024-02-27 09:28:30.207 2024-02-27 09:38:31.533 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change https://example.com/ 12736 440354 439263.440346.440348.440354.440356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1560835900421 0 \N \N f 0 \N 0 166094015 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 442572 2024-02-28 19:03:12.573 2024-02-28 19:13:13.666 Rock source rate fact leave house course. Person suppo Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody. https://example.com/ 16717 \N 442572 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.69227848788805 0 \N \N f 0 \N 1 82527636 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436332 2024-02-23 15:49:26.703 2024-02-23 15:59:28.404 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside https://example.com/ 4391 436322 436322.436332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.512349273936 0 \N \N f 0 \N 2 60340441 0 f f \N \N \N \N 436322 \N 0 0 \N \N f \N 436502 2024-02-23 17:52:39.198 2024-02-23 18:02:41.244 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provi https://example.com/ 15266 435719 435639.435719.436502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9806393924966 0 \N \N f 0 \N 0 225220437 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 436500 2024-02-23 17:49:40.952 2024-02-23 17:59:42.012 \N Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American migh https://example.com/ 19662 436486 435690.435929.436271.436341.436452.436486.436500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.13071012556325 0 \N \N f 0 \N 0 33803911 0 f f \N \N \N \N 435690 \N 0 0 \N \N f \N 436497 2024-02-23 17:47:53.462 2024-02-23 17:57:55.379 \N Notice after fund police. Pu https://example.com/ 18040 436462 436462.436497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5277427429888 0 \N \N f 0 \N 0 69647291 0 f f \N \N \N \N 436462 \N 0 0 \N \N f \N 436462 2024-02-23 17:30:29.754 2024-02-23 17:40:31.077 Power this as. Time Re Moment smile https://example.com/ 2213 \N 436462 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.1440661707502 0 \N \N f 0 \N 2 151313906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440353 2024-02-27 09:24:24.373 2024-02-27 09:34:25.845 \N Pull f https://example.com/ 21416 440341 440341.440353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6978422059527 0 \N \N f 0 \N 0 111048474 0 f f \N \N \N \N 440341 \N 0 0 \N \N f \N 440341 2024-02-27 09:05:26.414 2024-02-27 09:15:28.143 Have decide business throw source strong town Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven. https://example.com/ 19759 \N 440341 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.5797763259844 0 \N \N f 0 \N 1 150407746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440378 2024-02-27 09:53:09.738 2024-02-27 10:03:10.625 \N Police do base plan how. Her add beau https://example.com/ 2309 439844 439844.440378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.449040138285 0 \N \N f 0 \N 0 181112940 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440291 2024-02-27 07:17:42.787 2024-02-27 07:27:43.74 \N She loss lawyer raise without right prop https://example.com/ 7746 440086 439315.440086.440291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51324623365363 0 \N \N f 0 \N 0 52820542 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 436511 2024-02-23 18:01:20.416 2024-02-23 18:11:21.579 Majority foot simply point day chance rest. Si Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal. https://example.com/ 9916 \N 436511 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 26.5534579995015 0 \N \N f 0 \N 0 12713563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436507 2024-02-23 17:56:10.323 2024-02-23 18:06:11.515 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Te https://example.com/ 1090 435466 435359.435366.435466.436507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7224274551524 0 \N \N f 0 \N 1 205597027 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 440086 2024-02-26 23:30:04.507 2024-02-26 23:40:06.196 \N Learn international explain https://example.com/ 18180 439315 439315.440086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.159917982568 0 \N \N f 0 \N 1 192107328 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 440345 2024-02-27 09:11:57.236 2024-02-27 09:21:58.325 \N Film without deal production let https://example.com/ 18507 432545 432251.432545.440345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.048742236638 0 \N \N f 0 \N 0 12716012 0 f f \N \N \N \N 432251 \N 0 0 \N \N f \N 440348 2024-02-27 09:15:31.082 2024-02-27 09:25:33.332 \N Produce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice https://example.com/ 19484 440346 439263.440346.440348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.840241882480619 0 \N \N f 0 \N 2 31566789 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 436440 2024-02-23 17:16:12.584 2024-02-23 17:26:14.869 Mrs when number place under moment Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution. https://example.com/ 20623 \N 436440 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.5093068198838 0 \N \N f 0 \N 0 205351885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436505 2024-02-23 17:55:13.978 2024-02-23 18:05:15.651 \N List professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build its https://example.com/ 20802 436446 435217.436437.436446.436505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08322019431123 0 \N \N f 0 \N 0 237597988 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 441156 2024-02-27 22:13:28.12 2024-02-27 22:23:29.395 \N Happen include car man crime. Local organization present modern sound care. Devel https://example.com/ 876 441091 441087.441091.441156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4944531447942 0 \N \N f 0 \N 1 95361168 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 436435 2024-02-23 17:11:37.302 2024-02-23 17:21:38.769 \N Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nYourself teach week line no hotel whatev https://example.com/ 12289 436323 436323.436435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8692469183998 0 \N \N f 0 \N 0 221664385 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 436215 2024-02-23 13:55:00.625 2024-02-23 14:05:02.553 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps go https://example.com/ 17552 436038 435908.435974.436038.436215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65912598371345 0 \N \N f 0 \N 1 246106563 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 440376 2024-02-27 09:48:45.296 2024-02-27 09:58:46.625 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Res https://example.com/ 9334 440308 440266.440267.440308.440376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.00162022346513 0 \N \N f 0 \N 0 8311369 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 439795 2024-02-26 19:25:18.709 2024-02-26 19:35:19.624 \N Wide deep ahead effort. Somebody issue sing https://example.com/ 7583 439472 439472.439795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5126841353492 0 \N \N f 0 \N 1 121673000 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 434197 2024-02-21 19:04:34.473 2024-02-21 19:14:36.021 Rich leg value billion long. Day discussion lawyer community spring Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most https://example.com/ 11590 \N 434197 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 18.9894272269228 0 \N \N f 0 \N 2 131016428 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436543 2024-02-23 18:33:30.249 2024-02-23 18:43:32.093 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge de https://example.com/ 672 436413 436413.436543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.350226306445 0 \N \N f 0 \N 0 168472513 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 440379 2024-02-27 09:53:52.171 2024-02-27 10:03:53.97 \N Treatment d https://example.com/ 17275 439487 439472.439487.440379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.66238160685177 0 \N \N f 0 \N 0 67962930 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 436285 2024-02-23 15:07:10.821 2024-02-23 15:17:12.145 \N Baby yourself signif https://example.com/ 17455 436093 436093.436285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0317384846795 0 \N \N f 0 \N 0 230538417 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436177 2024-02-23 13:27:37.05 2024-02-23 13:37:38.277 Blue why news enjoy include m Act lay son hear. Apply professional reall https://example.com/ 1105 \N 436177 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 5.7858964786028 0 \N \N f 0 \N 5 97318967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436536 2024-02-23 18:29:38.953 2024-02-23 18:39:40.469 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong sta https://example.com/ 19668 436241 436241.436536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.35941488668679 0 \N \N f 0 \N 0 151224306 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436534 2024-02-23 18:28:15.628 2024-02-23 18:38:17.986 \N Member https://example.com/ 14651 436395 436028.436395.436534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26357512998852 0 \N \N f 0 \N 0 129760383 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436397 2024-02-23 16:39:12.509 2024-02-23 23:49:03.049 Such yourself gir Concern position tr https://example.com/ 705 \N 436397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.5079174076687 0 \N \N f 0 \N 1 209492128 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440352 2024-02-27 09:24:23.786 2024-02-27 09:34:25.009 \N Letter bank officer fast use a. She chance including maint https://example.com/ 18837 439638 439638.440352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75762367256694 0 \N \N f 0 \N 0 167843 0 f f \N \N \N \N 439638 \N 0 0 \N \N f \N 440354 2024-02-27 09:24:56.632 2024-02-27 09:34:58.962 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morn https://example.com/ 13781 440348 439263.440346.440348.440354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.80342770117387 0 \N \N f 0 \N 1 127961788 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 440393 2024-02-27 10:15:11.09 2024-02-27 10:25:13.129 \N Outside mother moveme https://example.com/ 20495 440351 440351.440393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.59364264643181 0 \N \N f 0 \N 0 240097498 0 f f \N \N \N \N 440351 \N 0 0 \N \N f \N 440346 2024-02-27 09:12:07.078 2024-02-27 09:22:08.4 \N With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nNew here https://example.com/ 8423 439263 439263.440346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0819987124364 0 \N \N f 0 \N 3 245004263 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 437601 2024-02-24 19:00:06.461 2024-02-24 19:10:08.474 Focus area mean. Sometimes responsibility table law. Lot debate difficult b Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provi https://example.com/ 2204 \N 437601 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.94490977952702 0 \N \N f 0 \N 0 208394741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440342 2024-02-27 09:06:22.522 2024-02-27 09:16:24.561 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political s https://example.com/ 1602 440331 440009.440275.440310.440314.440316.440322.440326.440331.440342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7501556557904 0 \N \N f 0 \N 2 196249847 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 437631 2024-02-24 19:29:12.024 2024-02-24 19:39:13.244 Get hear chair. Far president effect or say. Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal. https://example.com/ 18507 \N 437631 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 26.8129388537139 0 \N \N f 0 \N 4 239939162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437756 2024-02-24 23:04:48.979 2024-02-24 23:14:50.271 \N Star bill toward also almost. Reason machine great p https://example.com/ 19500 437745 436466.436475.436633.437384.437739.437745.437756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1894752970961 0 \N \N f 0 \N 0 124358896 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 436561 2024-02-23 18:56:03.291 2024-02-23 19:06:04.697 \N Individual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nRadio have every concer https://example.com/ 13216 436523 436523.436561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4721834338238 0 \N \N f 0 \N 2 217211479 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 440367 2024-02-27 09:34:36.516 2024-02-27 09:44:37.631 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify par https://example.com/ 17365 439844 439844.440367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83828823283794 0 \N \N f 0 \N 0 239669743 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440355 2024-02-27 09:25:37.519 2024-02-27 09:35:38.9 \N Check worry radio fine stuff. Lead least wall course week already. Shake accept di https://example.com/ 5904 440333 440333.440355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82047439764563 0 \N \N f 0 \N 0 166609015 0 f f \N \N \N \N 440333 \N 0 0 \N \N f \N 436457 2024-02-23 17:24:31.091 2024-02-23 17:34:34.087 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would en https://example.com/ 11328 435657 435657.436457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9203351481525 0 \N \N f 0 \N 1 242527752 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 440994 2024-02-27 19:51:53.86 2024-02-27 20:01:55.535 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier https://example.com/ 19613 440722 439368.440722.440994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3084001081595 0 \N \N f 0 \N 0 126944910 0 f f \N \N \N \N 439368 \N 0 0 \N \N f \N 441182 2024-02-27 22:42:23.099 2024-02-27 22:52:24.087 \N Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick https://example.com/ 2529 441169 441169.441182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4264649458501 0 \N \N f 0 \N 0 113151304 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 440368 2024-02-27 09:35:04.701 2024-02-27 09:45:06.497 \N View especially nation nor third to husband. Network low already environment run environment music. Howeve https://example.com/ 674 438573 438573.440368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7444536402217 0 \N \N f 0 \N 0 207089049 0 f f \N \N \N \N 438573 \N 0 0 \N \N f \N 440364 2024-02-27 09:32:06.766 2024-02-27 09:42:08.453 \N Yes but truth go. Generation as nice cus https://example.com/ 19378 440139 440139.440364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5572941344938 0 \N \N f 0 \N 0 56404372 0 f f \N \N \N \N 440139 \N 0 0 \N \N f \N 440344 2024-02-27 09:10:26.594 2024-02-27 09:20:28.32 Animal treatment actually. Local me bar data personal. Imagine indus Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his. https://example.com/ 11897 \N 440344 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.62264792096533 0 \N \N f 0 \N 1 152171238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435908 2024-02-23 07:19:14.187 2024-02-24 08:20:13.801 Company kid protect determine adult. I Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough thro https://example.com/ 9362 \N 435908 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 1.82033723048043 0 \N \N f 0 \N 10 25850074 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436603 2024-02-23 19:59:53.904 2024-02-23 20:09:54.876 \N Much road chair teach during. Po https://example.com/ 18809 436560 436560.436603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0036445243744 0 \N \N f 0 \N 1 32688468 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 440370 2024-02-27 09:36:53.526 2024-02-27 09:46:54.902 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget https://example.com/ 12272 440241 440241.440370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3841842362424 0 \N \N f 0 \N 0 168994469 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 440365 2024-02-27 09:32:37.183 2024-02-27 09:42:38.956 Mother up probably anything nation Mrs participant mana Third would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge. https://example.com/ 4322 \N 440365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.3891334970422 0 \N \N f 0 \N 2 248386734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436634 2024-02-23 20:37:09.663 2024-02-23 20:47:10.779 \N Finish only air provide. Wife can deve https://example.com/ 699 436630 436218.436600.436630.436634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74853231329588 0 \N \N f 0 \N 1 162711833 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 436687 2024-02-23 21:50:02.013 2024-02-23 22:00:03.628 First right set. Dinner third difficult n Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else. https://example.com/ 15103 \N 436687 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.23004878758022 0 \N \N f 0 \N 0 158813943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440262 2024-02-27 05:53:52.192 2024-02-27 06:03:53.474 \N Commercial loss cultural help show Mr. Citizen https://example.com/ 1720 440056 440056.440262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.218340103829036 0 \N \N f 0 \N 0 243974464 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440395 2024-02-27 10:15:39.9 2024-02-27 10:25:40.705 \N Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. https://example.com/ 17568 440387 440266.440267.440387.440395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5061167798197 0 \N \N f 0 \N 3 124459634 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436512 2024-02-23 18:03:12.742 2024-02-23 18:13:14.022 \N Myself measure first such real consumer. Only for author agre https://example.com/ 1180 436330 436258.436330.436512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8045026813438 0 \N \N f 0 \N 0 208774399 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 440373 2024-02-27 09:45:23.406 2024-02-27 09:55:24.72 Candidate down city since. Agency attorney discuss stop hospit Point box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never. https://example.com/ 956 \N 440373 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1953171007633 0 \N \N f 0 \N 2 75770646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440385 2024-02-27 09:56:44.917 2024-02-27 10:06:46.99 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight gl https://example.com/ 14731 439739 439472.439503.439739.440385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0544190152302 0 \N \N f 0 \N 1 244053437 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 436524 2024-02-23 18:16:45.416 2024-02-23 18:26:47.064 \N Trade gas word. Player draw close by. Population might particularly receive. https://example.com/ 20657 436487 436487.436524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4678586242435 0 \N \N f 0 \N 0 150332943 0 f f \N \N \N \N 436487 \N 0 0 \N \N f \N 436517 2024-02-23 18:08:10.729 2024-02-23 18:18:12.509 \N Own machine table garden ne https://example.com/ 2162 436508 436508.436517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4650315746854 0 \N \N f 0 \N 0 83862601 0 f f \N \N \N \N 436508 \N 0 0 \N \N f \N 436540 2024-02-23 18:31:03.056 2024-02-23 18:41:04.061 Big money in south wide Involve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score https://example.com/ 730 \N 436540 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 6.11480346927877 0 \N \N f 0 \N 0 160020168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436554 2024-02-23 18:46:59.493 2024-02-23 18:57:01.746 \N Tell billion now https://example.com/ 20080 429739 429628.429739.436554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.51954317326385 0 \N \N f 0 \N 0 4843473 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 436569 2024-02-23 19:05:04.076 2024-02-23 19:15:06.105 \N Occur office book. Expect return including gun training election care. American morning https://example.com/ 16867 436499 436499.436569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8110213748516 0 \N \N f 0 \N 2 212628414 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436490 2024-02-23 17:43:41.799 2024-02-23 17:53:43.539 \N Community seat tend position recent will. Last old investment style sou https://example.com/ 1960 436488 436460.436488.436490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4848957071519 0 \N \N f 0 \N 2 55010628 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 431655 2024-02-19 19:34:01.936 2024-02-19 19:44:02.725 \N Behavior safe concern street c https://example.com/ 16250 328186 328186.431655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53479146586977 0 \N \N f 0 \N 0 237815971 0 f f \N \N \N \N 328186 \N 0 0 \N \N f \N 436460 2024-02-23 17:29:05.93 2024-02-23 17:39:06.951 Health reduce performance body similar light wear th Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nAffect key her. https://example.com/ 5578 \N 436460 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.5930286574885 0 \N \N f 0 \N 4 21660100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436539 2024-02-23 18:30:48.332 2024-02-23 18:40:49.858 \N Effect receiv https://example.com/ 19174 436325 436241.436325.436539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.419023915578 0 \N \N f 0 \N 0 93541480 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436538 2024-02-23 18:30:37.393 2024-02-23 18:40:39.937 \N Wind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn Americ https://example.com/ 5455 436519 436093.436303.436519.436538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1244449996904 0 \N \N f 0 \N 2 42868900 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436292 2024-02-23 15:11:19.449 2024-02-23 15:21:20.763 \N Quickly imagine he learn effort risk wish. Respond inc https://example.com/ 12024 436093 436093.436292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0411853063002 0 \N \N f 0 \N 1 76254175 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436568 2024-02-23 19:02:59.724 2024-02-23 19:13:00.722 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quit https://example.com/ 17116 436566 436566.436568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.7930932521292 0 \N \N f 0 \N 0 63824363 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 443121 2024-02-29 06:34:45.119 2024-02-29 06:44:47.079 \N Every east https://example.com/ 14295 443108 443108.443121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.952075121904 0 \N \N f 0 \N 0 71456347 0 f f \N \N \N \N 443108 \N 0 0 \N \N f \N 436402 2024-02-23 16:44:47.149 2024-02-23 16:54:48.961 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest https://example.com/ 6003 436028 436028.436402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92142756230869 0 \N \N f 0 \N 1 59075460 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440371 2024-02-27 09:39:22.091 2024-02-27 09:49:23.444 \N Ball training late https://example.com/ 9476 439263 439263.440371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.86577065312002 0 \N \N f 0 \N 0 138164370 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 436506 2024-02-23 17:55:17.203 2024-02-23 18:05:19.192 \N Act lay son hear. Apply professional really remember remain throw. Fi https://example.com/ 20606 436337 435610.435767.436337.436506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4945961394533 0 \N \N f 0 \N 0 25284115 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 436294 2024-02-23 15:12:18.062 2024-02-23 15:22:19.463 \N May building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nInternational ground thought computer somebody support industry. Part minu https://example.com/ 782 435657 435657.436294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.07607814496858 0 \N \N f 0 \N 1 88052126 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 435887 2024-02-23 06:38:15.509 2024-02-23 06:48:17.426 \N Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this ex https://example.com/ 1493 435328 435328.435887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6091351956809 0 \N \N f 0 \N 6 29634593 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 439503 2024-02-26 15:44:57.158 2024-02-26 15:54:58.513 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fas https://example.com/ 16562 439472 439472.439503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62197679744199 0 \N \N f 0 \N 8 17525841 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 441163 2024-02-27 22:24:33.848 2024-02-27 22:34:35.238 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair https://example.com/ 989 440764 440764.441163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.29254898716572 0 \N \N f 0 \N 0 94994851 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 437745 2024-02-24 22:52:07.918 2024-02-24 23:02:09.379 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume https://example.com/ 5758 437739 436466.436475.436633.437384.437739.437745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03474085447577 0 \N \N f 0 \N 1 5008761 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 440369 2024-02-27 09:35:34.172 2024-02-27 09:45:35.481 \N Enough blue provide home alone reality attack cert https://example.com/ 16350 440357 440056.440078.440097.440357.440369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.05185113079092 0 \N \N f 0 \N 1 115674192 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 439552 2024-02-26 16:08:53.932 2024-02-26 16:18:54.896 \N Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter internatio https://example.com/ 16424 439472 439472.439552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4579097551134 0 \N \N f 0 \N 1 23680815 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 439037 2024-02-26 10:10:33.316 2024-02-26 10:20:34.654 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago larg https://example.com/ 7746 438359 438325.438359.439037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0579869382159 0 \N \N f 0 \N 0 171289100 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 440392 2024-02-27 10:09:00.205 2024-02-27 10:19:01.899 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represe https://example.com/ 17682 440390 440390.440392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.915951194621 0 \N \N f 0 \N 0 116911567 0 f f \N \N \N \N 440390 \N 0 0 \N \N f \N 440900 2024-02-27 18:30:32.503 2024-02-27 18:40:33.77 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night se https://example.com/ 21303 440704 440641.440704.440900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1075463074384 0 \N \N f 0 \N 3 30727805 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 440913 2024-02-27 18:38:19.865 2024-02-27 18:48:21.709 \N Soon rais https://example.com/ 8498 440902 440902.440913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.66566976109724 0 \N \N f 0 \N 0 154327412 0 f f \N \N \N \N 440902 \N 0 0 \N \N f \N 440891 2024-02-27 18:21:07.597 2024-02-27 18:31:08.919 Edge give like skill yard. Government run throughout meeting business. Ph Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan. https://example.com/ 4819 \N 440891 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 18.8032864008709 0 \N \N f 0 \N 3 98262335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440390 2024-02-27 10:08:12.921 2024-02-27 10:18:14.149 Increase section kind decision. Individual mission song always form parent Seat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch. https://example.com/ 19484 \N 440390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5588047816798 0 \N \N f 0 \N 1 61797495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440351 2024-02-27 09:23:12.13 2024-02-27 09:33:13.347 Doctor operation because training Tend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might. https://example.com/ 5036 \N 440351 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.784507670242292 0 \N \N f 0 \N 4 60907505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436692 2024-02-23 21:56:29.594 2024-02-23 22:06:31.494 \N Why long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order messa https://example.com/ 11443 436241 436241.436692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5965938465603 0 \N \N f 0 \N 0 212423062 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440400 2024-02-27 10:19:27.338 2024-02-27 10:29:28.732 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit https://example.com/ 10063 440373 440373.440400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3535467141588 0 \N \N f 0 \N 0 55710655 0 f f \N \N \N \N 440373 \N 0 0 \N \N f \N 440374 2024-02-27 09:46:00.23 2024-02-27 09:56:01.44 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess progr https://example.com/ 9985 440373 440373.440374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8176223032464 0 \N \N f 0 \N 0 239611458 0 f f \N \N \N \N 440373 \N 0 0 \N \N f \N 436532 2024-02-23 18:26:42.157 2024-02-23 18:36:43.645 Again trade author cultural task. Deep day cost. Soldier prepare say car Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play. https://example.com/ 7659 \N 436532 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.3902640992673 0 \N \N f 0 \N 0 218991212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436519 2024-02-23 18:08:57.426 2024-02-23 18:18:58.515 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden https://example.com/ 21214 436303 436093.436303.436519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.852589019133987 0 \N \N f 0 \N 3 234606281 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436557 2024-02-23 18:49:16.975 2024-02-23 18:59:17.924 \N Network art go experience exampl https://example.com/ 21238 436514 436514.436557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7528823841254 0 \N \N f 0 \N 0 187700122 0 f f \N \N \N \N 436514 \N 0 0 \N \N f \N 436516 2024-02-23 18:06:44.336 2024-02-23 18:16:45.67 Blood bill here traditional upon. Leg them lead garden himself outside. Which Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nQuick https://example.com/ 717 \N 436516 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 12.8265061825518 0 \N \N f 0 \N 0 32074377 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436520 2024-02-23 18:10:48.948 2024-02-23 18:20:50.184 Physical fast give music base. Gun body every join everything. Avo Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves. https://example.com/ 12609 \N 436520 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.909844735000256 0 \N \N f 0 \N 0 186831489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436477 2024-02-23 17:37:08.392 2024-02-23 17:47:09.312 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry s https://example.com/ 20087 436471 436028.436343.436396.436451.436471.436477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1060378348254 0 \N \N f 0 \N 1 147412908 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440359 2024-02-27 09:29:40.634 2024-02-27 09:39:42.5 \N Cell language east present. Federal arrive much. Drug financial pla https://example.com/ 5520 440351 440351.440359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8589796283759 0 \N \N f 0 \N 0 26322080 0 f f \N \N \N \N 440351 \N 0 0 \N \N f \N 436471 2024-02-23 17:35:01.987 2024-02-23 17:45:03.421 \N Most which usually increase event at hold. End cent https://example.com/ 5708 436451 436028.436343.436396.436451.436471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6334595827113 0 \N \N f 0 \N 2 11411050 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440380 2024-02-27 09:54:45.473 2024-02-27 10:04:46.802 \N Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful sho https://example.com/ 749 439552 439472.439552.440380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7094232835933 0 \N \N f 0 \N 0 119058790 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 440397 2024-02-27 10:17:40.808 2024-02-27 10:27:42.07 \N Republican star https://example.com/ 21207 440395 440266.440267.440387.440395.440397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6994587082851 0 \N \N f 0 \N 2 160979538 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436515 2024-02-23 18:05:51.218 2024-02-23 18:15:52.852 \N Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant ce https://example.com/ 17519 436493 436493.436515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5794184979314 0 \N \N f 0 \N 3 167265082 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 436518 2024-02-23 18:08:28.985 2024-02-23 18:18:30.164 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nTotal necessary thought task capital nothing. https://example.com/ 8326 436243 436241.436243.436518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2221071097282 0 \N \N f 0 \N 2 67331972 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440377 2024-02-27 09:52:59.361 2024-02-27 10:03:00.608 \N Opportunity hospital address action return different style. Beat magazine i https://example.com/ 19282 440298 440266.440298.440377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0181767937553 0 \N \N f 0 \N 0 117154380 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440362 2024-02-27 09:31:47 2024-02-27 09:41:48.345 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management l https://example.com/ 1224 440344 440344.440362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0297784289306 0 \N \N f 0 \N 0 110693058 0 f f \N \N \N \N 440344 \N 0 0 \N \N f \N 439800 2024-02-26 19:28:44.764 2024-02-26 19:38:46.203 \N Benefit car actually you open. Election hear wide schoo https://example.com/ 5961 439796 439026.439081.439796.439800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42958758737183 0 \N \N f 0 \N 0 137638734 0 f f \N \N \N \N 439026 \N 0 0 \N \N f \N 440389 2024-02-27 10:07:38.073 2024-02-27 10:17:40.13 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager pow https://example.com/ 11996 439586 439586.440389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9107002165202 0 \N \N f 0 \N 0 131229338 0 f f \N \N \N \N 439586 \N 0 0 \N \N f \N 436522 2024-02-23 18:15:32.212 2024-02-23 18:25:33.791 \N Southern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per https://example.com/ 20841 436459 436459.436522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5748713606289 0 \N \N f 0 \N 1 49108841 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 436573 2024-02-23 19:08:05.429 2024-02-23 19:18:07.004 \N Ten answer nat https://example.com/ 1881 436344 436344.436573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55994717440531 0 \N \N f 0 \N 0 101879246 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 436570 2024-02-23 19:05:15.204 2024-02-23 19:15:16.741 \N Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. C https://example.com/ 21178 436567 436290.436307.436567.436570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9493234681982 0 \N \N f 0 \N 0 173097969 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 440434 2024-02-27 11:09:48.239 2024-02-27 11:19:49.705 \N Enter land brother. Treat prove t https://example.com/ 2309 440412 440412.440434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0622592853049 0 \N \N f 0 \N 0 7526456 0 f f \N \N \N \N 440412 \N 0 0 \N \N f \N 436526 2024-02-23 18:20:39.719 2024-02-23 18:30:40.905 \N Identify paint https://example.com/ 18449 436494 436494.436526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6091416602337 0 \N \N f 0 \N 0 71945311 0 f f \N \N \N \N 436494 \N 0 0 \N \N f \N 436574 2024-02-23 19:08:17.852 2024-02-23 19:18:19.131 Develop receive back PM. Us Meeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain. https://example.com/ 18815 \N 436574 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.82560908243208 0 \N \N f 0 \N 0 162728741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436576 2024-02-23 19:11:43.218 2024-02-23 19:21:45.114 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin e https://example.com/ 9099 436533 436493.436515.436533.436576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51821682112411 0 \N \N f 0 \N 0 15145964 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 436330 2024-02-23 15:48:50.54 2024-02-23 15:58:52.358 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting ca https://example.com/ 9844 436258 436258.436330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.99381946858153 0 \N \N f 0 \N 4 192728313 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 436426 2024-02-23 17:06:17.373 2024-02-23 17:16:18.304 \N Whatever moment pat https://example.com/ 6578 436246 436241.436246.436426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6300790250847 0 \N \N f 0 \N 0 230232112 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440418 2024-02-27 10:53:24.275 2024-02-27 11:03:26.201 \N Hard same business read realize care. https://example.com/ 2710 440402 440266.440267.440387.440395.440397.440402.440418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7272730834161 0 \N \N f 0 \N 0 164633817 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 438551 2024-02-25 18:31:05.587 2024-02-25 18:41:07.312 Opportunity hospital address action return differen Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determ https://example.com/ 14465 \N 438551 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 22.8132469452385 0 \N \N f 0 \N 1 241520462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440402 2024-02-27 10:20:06.449 2024-02-27 10:30:07.912 \N Type door clear left. Test investment between table expect. Often red https://example.com/ 19284 440397 440266.440267.440387.440395.440397.440402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.811665333801 0 \N \N f 0 \N 1 112936401 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440381 2024-02-27 09:55:16.441 2024-02-27 10:05:18.216 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue https://example.com/ 19016 439795 439472.439795.440381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5951132199412 0 \N \N f 0 \N 0 154625262 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 440391 2024-02-27 10:08:50.807 2024-02-27 10:18:51.781 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art n https://example.com/ 9367 440365 440365.440391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.69433797098922 0 \N \N f 0 \N 0 186816830 0 f f \N \N \N \N 440365 \N 0 0 \N \N f \N 440919 2024-02-27 18:41:35.265 2024-02-27 18:51:36.441 \N Site product one fact loss. Site yeah position student news. Skin particular https://example.com/ 6471 440633 440633.440919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6402667530115 0 \N \N f 0 \N 0 236962512 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 436492 2024-02-23 17:45:07.345 2024-02-23 17:55:09.51 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nPush hair specific policy. We decision easy surface to dir https://example.com/ 17727 436373 435046.435135.435292.435504.435756.436349.436373.436492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8665587819315 0 \N \N f 0 \N 0 23622215 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440382 2024-02-27 09:55:37.707 2024-02-27 10:05:38.807 \N Beyond song throw blood hard. Show already get best. Science fly in https://example.com/ 12738 440369 440056.440078.440097.440357.440369.440382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5197116605613 0 \N \N f 0 \N 0 179976131 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 440335 2024-02-27 08:50:11.409 2024-02-27 09:00:12.313 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Toug https://example.com/ 1468 439977 173498.439885.439977.440335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.46317526275809 0 \N \N f 0 \N 0 34802886 0 f f \N \N \N \N 173498 \N 0 0 \N \N f \N 440387 2024-02-27 10:04:44.377 2024-02-27 10:14:45.755 \N Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though t https://example.com/ 8535 440267 440266.440267.440387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0052123745669 0 \N \N f 0 \N 4 24041061 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436323 2024-02-23 15:35:00.925 2024-02-23 15:45:02.357 Answer party get head Democrat. Marriage letter west social sing. Ne Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across ar https://example.com/ 20381 \N 436323 \N \N \N \N \N \N \N \N art \N ACTIVE \N 11.4049969470857 0 \N \N f 0 \N 10 120376147 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440414 2024-02-27 10:46:35.846 2024-02-27 10:56:36.821 \N Reality pressure enj https://example.com/ 21057 440412 440412.440414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6713984879517 0 \N \N f 0 \N 0 81000716 0 f f \N \N \N \N 440412 \N 0 0 \N \N f \N 436535 2024-02-23 18:29:38.172 2024-02-23 18:39:39.879 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur disc https://example.com/ 1175 436377 436323.436377.436535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.657167891210122 0 \N \N f 0 \N 0 201672788 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 436547 2024-02-23 18:35:08.978 2024-02-23 18:45:10.015 \N Benefit car actually you open. Election hear wide school mis https://example.com/ 2748 436347 436093.436347.436547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9919090955022 0 \N \N f 0 \N 3 179044254 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436551 2024-02-23 18:41:19.412 2024-02-23 18:51:20.802 \N Meet whose open couple believe something significant. Process page company box start pass. Tell acc https://example.com/ 21281 436548 436093.436347.436547.436548.436551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.434896720802 0 \N \N f 0 \N 0 173673664 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 440401 2024-02-27 10:19:51.43 2024-02-27 10:29:52.818 Guy help book. Senior activity environment. Party take she two. Des Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity. https://example.com/ 21218 \N 440401 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.3327562803006 0 \N \N f 0 \N 0 112990443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440404 2024-02-27 10:28:19.078 2024-02-27 10:38:21.361 It fly over audience when guy do. Continue material recognize own t Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget. https://example.com/ 19664 \N 440404 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.45014711583971 0 \N \N f 0 \N 0 3441796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443181 2024-02-29 08:15:03.244 2024-02-29 08:25:05.518 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series mem https://example.com/ 20817 443173 443168.443173.443181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.831589727150508 0 \N \N f 0 \N 0 70535866 0 f f \N \N \N \N 443168 \N 0 0 \N \N f \N 436278 2024-02-23 14:55:00.586 2024-02-23 15:05:02.372 \N Side rather law learn. Continue e https://example.com/ 2734 436093 436093.436278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.6228366944981 0 \N \N f 0 \N 0 6263281 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436495 2024-02-23 17:47:03.9 2024-02-23 17:57:05.335 \N Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western https://example.com/ 12779 436490 436460.436488.436490.436495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.45682247377 0 \N \N f 0 \N 1 210305935 0 f f \N \N \N \N 436460 \N 0 0 \N \N f \N 436392 2024-02-23 16:36:50.966 2024-02-23 16:46:52.915 \N South both increase democratic economic. Seem measure yes couple plan sea https://example.com/ 21523 436028 436028.436392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3485857823696 0 \N \N f 0 \N 0 94010768 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436843 2024-02-24 02:15:58.867 2024-02-24 02:25:59.531 \N Myself ca https://example.com/ 21070 436777 436777.436843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0305378800543 0 \N \N f 0 \N 0 169984532 0 f f \N \N \N \N 436777 \N 0 0 \N \N f \N 440417 2024-02-27 10:52:43.081 2024-02-27 11:02:44.523 \N Play single finally social almost seri https://example.com/ 16178 440360 440340.440360.440417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6350062620005 0 \N \N f 0 \N 0 8636187 0 f f \N \N \N \N 440340 \N 0 0 \N \N f \N 440399 2024-02-27 10:19:00.411 2024-02-27 10:29:02.229 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nCell language east present. Federal arrive much. Drug financial place https://example.com/ 19622 440120 439142.439188.439194.439411.439445.439464.440120.440399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3472050213509 0 \N \N f 0 \N 0 190525919 0 f f \N \N \N \N 439142 \N 0 0 \N \N f \N 436563 2024-02-23 18:58:33.09 2024-02-23 19:08:34.498 \N Live child like read. Gas forget current. Heavy always sea wo https://example.com/ 19198 436552 436459.436552.436563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.59886305207456 0 \N \N f 0 \N 0 104178953 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 436541 2024-02-23 18:32:05.392 2024-02-23 18:42:07.713 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant r https://example.com/ 2775 436323 436323.436541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1715553206915 0 \N \N f 0 \N 0 197380499 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 436546 2024-02-23 18:35:04.365 2024-02-23 18:45:05.969 \N Including l https://example.com/ 2711 436320 436290.436320.436546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3935874912654 0 \N \N f 0 \N 0 34928276 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 440912 2024-02-27 18:37:59.872 2024-02-27 18:48:01.911 \N Expert kind conference provide. Structure risk board professional. Hotel there we parti https://example.com/ 21427 440843 440301.440709.440843.440912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0001652510155 0 \N \N f 0 \N 0 95655180 0 f f \N \N \N \N 440301 \N 0 0 \N \N f \N 443218 2024-02-29 09:25:30.636 2024-02-29 09:35:31.819 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nNever able over relate dark up dinner. Same daugh https://example.com/ 1628 442904 442904.443218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4149904688289 0 \N \N f 0 \N 0 241590701 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 436580 2024-02-23 19:19:06.798 2024-02-23 19:29:08.202 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little sys https://example.com/ 14785 436480 436326.436480.436580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.71860327081267 0 \N \N f 0 \N 0 16528734 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 440407 2024-02-27 10:34:35.529 2024-02-27 10:44:36.989 Support line change go must do. Small audience beautif Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nPrice country hour whom over argue Congress upon. Nation baby https://example.com/ 18472 \N 440407 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 22.8114789565931 0 \N \N f 0 \N 0 43018569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440416 2024-02-27 10:50:37.766 2024-02-27 11:00:38.988 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nPolitical perhaps question forward yes. Fish TV mu https://example.com/ 12911 440267 440266.440267.440416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7933017181904 0 \N \N f 0 \N 2 11352374 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 439885 2024-02-26 20:24:18.615 2024-02-26 20:34:19.962 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nThus measure find board bag high himself. https://example.com/ 17696 173498 173498.439885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3240222337035 0 \N \N f 0 \N 3 106703754 0 f f \N \N \N \N 173498 \N 0 0 \N \N f \N 440502 2024-02-27 12:20:56.587 2024-02-27 12:30:59.573 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. https://example.com/ 9985 439729 439729.440502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7623332999052 0 \N \N f 0 \N 0 181993246 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 435612 2024-02-22 22:28:48.451 2024-02-22 22:38:49.314 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly playe https://example.com/ 14950 435605 435328.435487.435605.435612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59876580874975 0 \N \N f 0 \N 3 103413799 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 440462 2024-02-27 11:24:55.945 2024-02-27 11:34:57.176 \N Name pu https://example.com/ 1007 440459 440422.440459.440462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.8611265783298 0 \N \N f 0 \N 0 8006341 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436459 2024-02-23 17:27:44.983 2024-02-23 17:37:46.846 Why long up fly difficult nature. Age condition practice area worry despite car Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into. https://example.com/ 19815 \N 436459 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.9999863891969 0 \N \N f 0 \N 5 249234172 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440023 2024-02-26 22:02:25.77 2024-02-26 22:12:26.892 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. A https://example.com/ 10719 438936 438936.440023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15105328398052 0 \N \N f 0 \N 3 82635158 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 435292 2024-02-22 17:33:59.832 2024-02-22 17:44:02.334 \N Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest https://example.com/ 21281 435135 435046.435135.435292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06403368883106 0 \N \N f 0 \N 16 136052111 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440409 2024-02-27 10:43:19.965 2024-02-27 10:53:20.806 Identify health spend could. Hav Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door. https://example.com/ 836 \N 440409 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 11.2096169338233 0 \N \N f 0 \N 0 22756604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436571 2024-02-23 19:06:34.908 2024-02-23 19:16:35.846 \N Country https://example.com/ 6041 436344 436344.436571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8359603699538 0 \N \N f 0 \N 0 215033450 0 f f \N \N \N \N 436344 \N 0 0 \N \N f \N 440408 2024-02-27 10:43:05.346 2024-02-27 10:53:06.605 Floor among test material. Meet million someo Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according. https://example.com/ 679 \N 440408 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 13.8443280101883 0 \N \N f 0 \N 0 102744996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439142 2024-02-26 12:04:52.264 2024-02-26 12:14:53.446 Hundred position represent six morning manage school Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nConcern position true. T https://example.com/ 963 \N 439142 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.6809220859515 0 \N \N f 0 \N 24 210242124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436558 2024-02-23 18:51:21.573 2024-02-23 19:01:23.749 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nGreat idea age friend. Its financ https://example.com/ 3400 435905 435905.436558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.599706900124 0 \N \N f 0 \N 0 141579969 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436567 2024-02-23 19:00:57.966 2024-02-23 19:10:59.817 \N Whatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview https://example.com/ 20162 436307 436290.436307.436567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.112307442189 0 \N \N f 0 \N 1 124671268 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 440435 2024-02-27 11:10:16.536 2024-02-27 11:20:18.561 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare ai https://example.com/ 20906 440429 440406.440429.440435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1015234337544 0 \N \N f 0 \N 4 87009578 0 f f \N \N \N \N 440406 \N 0 0 \N \N f \N 440430 2024-02-27 11:06:16.826 2024-02-27 11:16:18.558 Full both sound century close card. Anyone occur number Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree. https://example.com/ 4014 \N 440430 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.0428118674774 0 \N \N f 0 \N 0 166249179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440513 2024-02-27 12:38:45.54 2024-02-27 12:48:48.063 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artis https://example.com/ 1244 440266 440266.440513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6316274577556 0 \N \N f 0 \N 1 80382168 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 435453 2024-02-22 19:44:39.881 2024-02-22 19:54:41.292 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe ri https://example.com/ 18101 435217 435217.435453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0464981025679 0 \N \N f 0 \N 0 154778032 0 f f \N \N \N \N 435217 \N 0 0 \N \N f \N 436997 2024-02-24 09:09:34.068 2024-02-24 09:19:35.704 \N Cell civil on much able sure. They ri https://example.com/ 18994 436991 436983.436988.436989.436990.436991.436997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.74184270123799 0 \N \N f 0 \N 1 168697592 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 436575 2024-02-23 19:08:40.099 2024-02-23 19:18:41.923 \N Bar adult https://example.com/ 16284 436197 436197.436575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.73049299431533 0 \N \N f 0 \N 0 89188288 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N 436565 2024-02-23 18:59:23.519 2024-02-23 19:09:24.52 \N Travel never area. Relationship produ https://example.com/ 16594 436522 436459.436522.436565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0943779205475792 0 \N \N f 0 \N 0 237445581 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 440932 2024-02-27 18:53:35.925 2024-02-27 19:03:37.128 \N Support structure https://example.com/ 10821 440902 440902.440932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.06743822581677 0 \N \N f 0 \N 0 52523896 0 f f \N \N \N \N 440902 \N 0 0 \N \N f \N 436553 2024-02-23 18:43:06.654 2024-02-23 18:53:07.892 Mother up probably anything nation Mrs participant manage. Then standard fr Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until. https://example.com/ 10094 \N 436553 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.6823056864893 0 \N \N f 0 \N 0 48749155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436100 2024-02-23 12:29:02.324 2024-02-23 12:39:03.104 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. https://example.com/ 21491 436028 436028.436100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.422558989823 0 \N \N f 0 \N 6 47102580 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 435504 2024-02-22 20:44:32.983 2024-02-22 20:54:34.881 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nHear direction have instead. Republican international theory life. Perform accep https://example.com/ 11862 435292 435046.435135.435292.435504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2209099064715 0 \N \N f 0 \N 12 116608223 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 440419 2024-02-27 10:55:03.823 2024-02-27 11:05:05.093 \N Wonder check lead door. Herself safe believe show as https://example.com/ 12334 440396 440266.440388.440396.440419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4775943206991 0 \N \N f 0 \N 4 181111172 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436572 2024-02-23 19:06:40.082 2024-02-23 19:16:41.876 \N Would week boy close different again part. Stop school continue environment need charge pla https://example.com/ 629 436566 436566.436572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90044995061492 0 \N \N f 0 \N 1 123521726 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 440360 2024-02-27 09:30:58.665 2024-02-27 09:41:00.914 \N Both peace drug most brin https://example.com/ 13622 440340 440340.440360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.708379542058637 0 \N \N f 0 \N 1 81474927 0 f f \N \N \N \N 440340 \N 0 0 \N \N f \N 436578 2024-02-23 19:14:43.819 2024-02-23 19:24:45.549 \N Thus measure find board bag high himself. Very his https://example.com/ 18635 436577 436493.436564.436577.436578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.216054761483 0 \N \N f 0 \N 1 146692865 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 436596 2024-02-23 19:46:16.234 2024-02-23 19:56:17.356 Pull fact question for unit up community interest. Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light lan https://example.com/ 16440 \N 436596 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 7.02532452390216 0 \N \N f 0 \N 1 216138753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435217 2024-02-22 16:47:49.893 2024-02-22 16:57:51.141 Suffer same investment. Finish play also Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation https://example.com/ 11491 \N 435217 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 3.24805473209434 0 \N \N f 0 \N 57 140966055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440439 2024-02-27 11:11:38.762 2024-02-27 11:21:40.541 \N Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nIdentify paint https://example.com/ 9809 440435 440406.440429.440435.440439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7637907190935 0 \N \N f 0 \N 3 71991082 0 f f \N \N \N \N 440406 \N 0 0 \N \N f \N 435805 2024-02-23 03:45:10.168 2024-02-23 03:55:11.296 Back spend task real. Relationship offer computer. Toward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summe https://example.com/ 19839 \N 435805 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.2579422594295 0 \N \N f 0 \N 7 105411680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436474 2024-02-23 17:36:28.762 2024-02-23 17:46:31.27 \N Detail discussion line around. A https://example.com/ 17673 436410 436241.436410.436474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.887510497934 0 \N \N f 0 \N 0 56126932 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436410 2024-02-23 16:50:36.891 2024-02-23 17:00:38.606 \N Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreeme https://example.com/ 20554 436241 436241.436410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3272342017511 0 \N \N f 0 \N 1 20920419 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436597 2024-02-23 19:51:02.278 2024-02-23 20:01:03.294 \N Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer th https://example.com/ 16042 436596 436596.436597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2979562862927 0 \N \N f 0 \N 0 161143136 0 f f \N \N \N \N 436596 \N 0 0 \N \N f \N 436581 2024-02-23 19:19:35.074 2024-02-23 19:29:35.821 \N Respond even chair hear each. Wind those attention set https://example.com/ 746 436407 436326.436407.436581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62203382297228 0 \N \N f 0 \N 0 53086103 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 436586 2024-02-23 19:37:20.698 2024-02-23 19:47:22.332 \N Guy help book. Senior activity environment. Party take she two. Describe https://example.com/ 19394 436215 435908.435974.436038.436215.436586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0914466561774 0 \N \N f 0 \N 0 50362047 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 436038 2024-02-23 11:19:55.307 2024-02-23 11:29:56.567 \N Become popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go m https://example.com/ 20551 435974 435908.435974.436038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2698112603834 0 \N \N f 0 \N 2 69111089 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 440424 2024-02-27 11:00:05.752 2024-02-27 11:00:11.41 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\n https://example.com/ 4802 440423 440423.440424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93593968095418 0 \N \N f 0 \N 0 178061725 0 f f \N \N \N \N 440423 \N 0 0 \N \N f \N 436599 2024-02-23 19:52:44.598 2024-02-23 20:02:46.854 \N Hold show assume travel economy. Ground then any time civil summer. Culture cove https://example.com/ 2098 436593 436593.436599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4289361145474 0 \N \N f 0 \N 1 82026821 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 436589 2024-02-23 19:38:13.516 2024-02-23 19:48:14.633 \N Store special above price general. Drop themselves news number Mr early life. https://example.com/ 20454 436129 435908.436129.436589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.97793087768722 0 \N \N f 0 \N 0 77923038 0 f f \N \N \N \N 435908 \N 0 0 \N \N f \N 436494 2024-02-23 17:45:28.15 2024-02-23 17:55:29.182 Mission alone itself parent they get. Morning after factor little manage Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nBillion here large general understand. Sit action cold which. Approach level expla https://example.com/ 1389 \N 436494 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.09881545156972 0 \N \N f 0 \N 2 182045552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440742 2024-02-27 16:19:40.266 2024-02-27 16:29:41.864 \N Small newspaper answer adult morning. Effort happy right deal. State si https://example.com/ 20299 440422 440422.440742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0593251249805 0 \N \N f 0 \N 1 210390639 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440415 2024-02-27 10:48:30.805 2024-02-27 10:58:31.853 Name put just democratic follow beyond mar Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior. https://example.com/ 20573 \N 440415 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4983188466955 0 \N \N f 0 \N 0 195485725 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436598 2024-02-23 19:51:02.526 2024-02-23 20:01:05.3 \N Quite teacher accept per agent PM suddenly reveal. https://example.com/ 997 436594 436499.436569.436594.436598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0004034628798 0 \N \N f 0 \N 0 231231305 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436594 2024-02-23 19:43:59.54 2024-02-23 19:54:00.718 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. N https://example.com/ 2722 436569 436499.436569.436594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.754376728463 0 \N \N f 0 \N 1 20128024 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436487 2024-02-23 17:41:37.576 2024-02-23 17:51:39.495 Morning hundred analysis understand admit prevent. That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nAt within eye player newspaper fish partne https://example.com/ 20502 \N 436487 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.5515449609487 0 \N \N f 0 \N 1 10228626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440441 2024-02-27 11:12:47.209 2024-02-27 11:22:48.343 \N Machine thousand determine newspaper https://example.com/ 21063 440440 440266.440426.440440.440441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.741232754905887 0 \N \N f 0 \N 0 125709644 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440458 2024-02-27 11:22:16.208 2024-02-27 11:32:17.3 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nHappen should somebody world southern player wife. Mr five clearly pick https://example.com/ 4459 440455 440406.440429.440435.440439.440448.440455.440458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9602908608952 0 \N \N f 0 \N 0 90387972 0 f f \N \N \N \N 440406 \N 0 0 \N \N f \N 440443 2024-02-27 11:13:49.516 2024-02-27 11:23:50.702 Activity just seem enter development throughout. Ag Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine. https://example.com/ 15180 \N 440443 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 9.68250989431223 0 \N \N f 0 \N 3 87371619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440449 2024-02-27 11:15:43.01 2024-02-27 11:25:44.808 Last compare similar enjoy right new man thought. Be call check in Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch. https://example.com/ 18313 \N 440449 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.52265653300215 0 \N \N f 0 \N 1 185345981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440427 2024-02-27 11:02:04.139 2024-02-27 11:12:05.037 \N Beyond difference husband behind purpose. From movie mission. Seat improve seven https://example.com/ 20094 440394 440394.440427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8649934502306 0 \N \N f 0 \N 1 144986273 0 f f \N \N \N \N 440394 \N 0 0 \N \N f \N 440420 2024-02-27 10:56:46.249 2024-02-27 11:06:48.67 \N Writer everyone voice read. Control meet four only president most remember. Back https://example.com/ 17927 440412 440412.440420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4986564749085 0 \N \N f 0 \N 0 86737320 0 f f \N \N \N \N 440412 \N 0 0 \N \N f \N 436606 2024-02-23 20:01:49.174 2024-02-23 20:11:50.22 \N Oil fast organization discussion https://example.com/ 2431 436599 436593.436599.436606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9126649090392 0 \N \N f 0 \N 0 81999300 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 440429 2024-02-27 11:06:10.81 2024-02-27 11:16:12.548 \N Ten instead develop somebody into school. Main building plan school public process. Worry https://example.com/ 7654 440406 440406.440429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.76189497981009 0 \N \N f 0 \N 5 14634843 0 f f \N \N \N \N 440406 \N 0 0 \N \N f \N 440432 2024-02-27 11:08:53.224 2024-02-27 11:18:54.889 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nRace civil today. Brother record Mr drive for worker. Set https://example.com/ 16965 440266 440266.440432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6803848102801 0 \N \N f 0 \N 2 164990696 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 443210 2024-02-29 09:16:15.608 2024-02-29 09:26:17.715 \N Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Poli https://example.com/ 17797 443199 443199.443210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1600071385536 0 \N \N f 0 \N 1 247197779 0 f f \N \N \N \N 443199 \N 0 0 \N \N f \N 440437 2024-02-27 11:11:02.709 2024-02-27 11:21:04.773 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nFish health https://example.com/ 1628 440419 440266.440388.440396.440419.440437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9242260729443 0 \N \N f 0 \N 0 207297434 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440388 2024-02-27 10:05:24.065 2024-02-27 10:15:25.862 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two yo https://example.com/ 11423 440266 440266.440388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3244730303643 0 \N \N f 0 \N 6 194114241 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 439111 2024-02-26 11:29:02.26 2024-02-26 11:39:03.959 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course so https://example.com/ 20619 438874 438737.438874.439111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.33142137975771 0 \N \N f 0 \N 6 113584548 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 440436 2024-02-27 11:10:16.597 2024-02-27 11:20:19.182 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive t https://example.com/ 16665 440425 440422.440425.440436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3567694146164 0 \N \N f 0 \N 1 192300039 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436372 2024-02-23 16:14:53.14 2024-02-23 16:24:54.68 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort https://example.com/ 14370 436241 436241.436372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0904312332366 0 \N \N f 0 \N 2 26301322 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 441007 2024-02-27 19:58:04.648 2024-02-27 20:08:05.768 \N Get hear chair. Far president effect or say. None itself recent tree rate situ https://example.com/ 21591 441000 440988.440993.441000.441007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.09656421681272 0 \N \N f 0 \N 1 47943096 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 444049 2024-02-29 18:43:35.083 2024-02-29 18:53:36.335 \N Several follow value modern safe inf https://example.com/ 20539 443593 443593.444049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7732848971889 0 \N \N f 0 \N 0 84041752 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 440442 2024-02-27 11:12:48.891 2024-02-27 11:22:50.349 Moment hundred skin tri Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement. https://example.com/ 19156 \N 440442 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.44821953720744 0 \N \N f 0 \N 0 220064167 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436607 2024-02-23 20:04:58.058 2024-02-23 20:14:59.019 \N Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free https://example.com/ 11192 436413 436413.436607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9907760316688 0 \N \N f 0 \N 0 181626610 0 f f \N \N \N \N 436413 \N 0 0 \N \N f \N 436584 2024-02-23 19:34:12.438 2024-02-23 19:44:14.303 White seven property least father local. Se Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today contro https://example.com/ 2780 \N 436584 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 4.77689030268849 0 \N \N f 0 \N 0 36160112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440426 2024-02-27 11:00:25.598 2024-02-27 11:10:26.71 \N Likely natural ahead focus. School our training everybody but build far. Affect ready q https://example.com/ 1609 440266 440266.440426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4381648737309 0 \N \N f 0 \N 2 91073729 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440447 2024-02-27 11:15:04.194 2024-02-27 11:25:05.102 \N Big time rise yourself all one peace set. Deta https://example.com/ 15662 440436 440422.440425.440436.440447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2770896948792 0 \N \N f 0 \N 0 131408460 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440452 2024-02-27 11:16:20.416 2024-02-27 11:26:22.917 \N Concern position true. Third financial may produce. Mach https://example.com/ 15408 440433 440422.440433.440452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3497632140571 0 \N \N f 0 \N 0 101254042 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440486 2024-02-27 11:51:58.869 2024-02-27 12:02:00.647 \N World kind half pass financial job front. Itself group recognize middle. Bank recognize or https://example.com/ 15115 440089 439729.440089.440486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6653337863432 0 \N \N f 0 \N 0 86476377 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 440403 2024-02-27 10:21:04.663 2024-02-27 10:31:05.854 Travel never area. Relationship production onto others soon mission w Past hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer. https://example.com/ 19735 \N 440403 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 1.47807190455008 0 \N \N f 0 \N 0 213729804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440927 2024-02-27 18:49:51.357 2024-02-27 18:59:52.841 \N Cause daughter drop gas. Cell respond always experi https://example.com/ 679 440875 440875.440927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1493099528858 0 \N \N f 0 \N 0 65563576 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 440438 2024-02-27 11:11:37.781 2024-02-27 11:21:39.276 \N Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy c https://example.com/ 21332 440421 438737.438874.439111.440421.440438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9354474459397 0 \N \N f 0 \N 4 6433976 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 440920 2024-02-27 18:42:14.68 2024-02-27 18:52:15.955 Artist fly billion same. Go may avoid exact Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nEveryone usually memory amount help best trip. Struct https://example.com/ 20045 \N 440920 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 11.7704212574368 0 \N \N f 0 \N 0 240698399 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440454 2024-02-27 11:17:58.652 2024-02-27 11:28:00.454 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr act https://example.com/ 13544 440432 440266.440432.440454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9044786881414 0 \N \N f 0 \N 1 203830624 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436652 2024-02-23 21:06:13.647 2024-02-23 21:16:14.67 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training new https://example.com/ 21498 436651 436651.436652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82805884413413 0 \N \N f 0 \N 0 220535495 0 f f \N \N \N \N 436651 \N 0 0 \N \N f \N 436620 2024-02-23 20:22:17.361 2024-02-23 20:32:19.09 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense compa https://example.com/ 19837 436523 436523.436620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9600475927705 0 \N \N f 0 \N 1 245457976 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 440406 2024-02-27 10:34:19.897 2024-02-27 10:44:20.839 Purpose age cover machine. Must individual hot begin figure threat Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside. https://example.com/ 21329 \N 440406 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5617151863947 0 \N \N f 0 \N 6 63849409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440448 2024-02-27 11:15:34.288 2024-02-27 11:25:36.685 \N Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. https://example.com/ 16124 440439 440406.440429.440435.440439.440448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5481309546817 0 \N \N f 0 \N 2 43602208 0 f f \N \N \N \N 440406 \N 0 0 \N \N f \N 436635 2024-02-23 20:38:10.774 2024-02-23 20:48:11.964 \N Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Cr https://example.com/ 20110 436561 436523.436561.436635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7160660545952 0 \N \N f 0 \N 1 132024612 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436394 2024-02-23 16:38:07.521 2024-02-23 16:48:09.182 Remember before box of open. Always region baby actually ima Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final. https://example.com/ 19759 \N 436394 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 9.73740109375466 0 \N \N f 0 \N 0 169287781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436614 2024-02-23 20:17:57.743 2024-02-23 20:27:59.267 \N Think cover scientist financial attention he word. World https://example.com/ 7916 436603 436560.436603.436614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.483653679721 0 \N \N f 0 \N 0 27243860 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 436631 2024-02-23 20:31:06.311 2024-02-23 20:41:07.868 \N Long interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly https://example.com/ 18460 436361 435906.436361.436631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5034218340524 0 \N \N f 0 \N 1 119595431 0 f f \N \N \N \N 435906 \N 0 0 \N \N f \N 440453 2024-02-27 11:17:39.211 2024-02-27 11:27:40.7 \N I https://example.com/ 1039 440446 440056.440446.440453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0015758965737 0 \N \N f 0 \N 0 155738017 0 f f \N \N \N \N 440056 \N 0 0 \N \N f \N 441871 2024-02-28 12:59:55.919 2024-02-28 13:09:57.17 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. https://example.com/ 21556 441864 441843.441864.441871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0328011358045 0 \N \N f 0 \N 4 213984637 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441882 2024-02-28 13:04:17.103 2024-02-28 13:14:19.108 \N Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause https://example.com/ 19810 441871 441843.441864.441871.441882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1021502749253 0 \N \N f 0 \N 3 69461054 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441864 2024-02-28 12:54:58.931 2024-02-28 13:05:01.146 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land tradi https://example.com/ 20599 441843 441843.441864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8103025261662 0 \N \N f 0 \N 7 133187467 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 436600 2024-02-23 19:57:01.728 2024-02-23 20:07:03.114 \N Various discussion light page war your have. Get generation market through operation police https://example.com/ 20577 436218 436218.436600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4162820277712 0 \N \N f 0 \N 4 105203744 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 436630 2024-02-23 20:29:51.017 2024-02-23 20:39:51.778 \N Wrong according some him. Foot color analysis send while wife return. We https://example.com/ 659 436600 436218.436600.436630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4746087324366 0 \N \N f 0 \N 2 146313970 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 440455 2024-02-27 11:18:42.54 2024-02-27 11:28:44.577 \N Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait https://example.com/ 21555 440448 440406.440429.440435.440439.440448.440455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.43049180833189 0 \N \N f 0 \N 1 192869023 0 f f \N \N \N \N 440406 \N 0 0 \N \N f \N 440361 2024-02-27 09:31:14.898 2024-02-27 09:41:16.377 \N Ever small reduce evi https://example.com/ 15925 439985 439970.439985.440361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2435100314438 0 \N \N f 0 \N 0 180666056 0 f f \N \N \N \N 439970 \N 0 0 \N \N f \N 440480 2024-02-27 11:46:40.877 2024-02-27 11:56:42.998 \N Approach stuff big ahead nothing hotel great city. Four east cell age https://example.com/ 18630 440463 440463.440480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8612336262211 0 \N \N f 0 \N 0 77113651 0 f f \N \N \N \N 440463 \N 0 0 \N \N f \N 440476 2024-02-27 11:41:00.195 2024-02-27 11:51:01.21 \N Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want https://example.com/ 21145 440475 440475.440476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38451052380727 0 \N \N f 0 \N 0 40630852 0 f f \N \N \N \N 440475 \N 0 0 \N \N f \N 440456 2024-02-27 11:18:57.582 2024-02-27 11:28:58.764 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attenti https://example.com/ 626 440351 440351.440456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6551099061845 0 \N \N f 0 \N 0 129316098 0 f f \N \N \N \N 440351 \N 0 0 \N \N f \N 436613 2024-02-23 20:17:35.948 2024-02-23 20:27:37.098 Discussion various drop throw none test wind. Exactly nation read year. Env Myself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark. https://example.com/ 10393 \N 436613 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.8027205180183 0 \N \N f 0 \N 0 166962330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436616 2024-02-23 20:19:49.479 2024-02-23 20:29:51.708 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad https://example.com/ 16879 434197 434197.436616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.60626633363253 0 \N \N f 0 \N 0 138801523 0 f f \N \N \N \N 434197 \N 0 0 \N \N f \N 436623 2024-02-23 20:25:12.843 2024-02-23 20:35:14.391 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nSpecific listen sit. Represent conti https://example.com/ 13132 436218 436218.436623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4376518423247 0 \N \N f 0 \N 1 69286606 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 436673 2024-02-23 21:33:20.652 2024-02-23 21:43:21.843 \N Busine https://example.com/ 21172 436612 436612.436673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.23630158437 0 \N \N f 0 \N 0 102708819 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436646 2024-02-23 20:53:29.722 2024-02-23 21:03:30.927 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company intern https://example.com/ 21589 436258 436258.436646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6921810054737 0 \N \N f 0 \N 0 159930025 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 440444 2024-02-27 11:14:00.221 2024-02-27 11:24:00.933 \N Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition pap https://example.com/ 9992 440443 440443.440444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82715617156214 0 \N \N f 0 \N 0 119107184 0 f f \N \N \N \N 440443 \N 0 0 \N \N f \N 436531 2024-02-23 18:26:28.825 2024-02-23 18:36:29.867 \N Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candid https://example.com/ 16178 436518 436241.436243.436518.436531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.871464517022 0 \N \N f 0 \N 1 64861822 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 444045 2024-02-29 18:42:33.814 2024-02-29 18:52:35.834 \N Technology word wish say organization friend here. Go nearly shou https://example.com/ 9347 443905 443799.443905.444045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7536473263196 0 \N \N f 0 \N 3 20428695 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444041 2024-02-29 18:41:31.049 2024-02-29 18:51:32.162 \N Authority environmental party bank region trip ne https://example.com/ 16276 443836 443836.444041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9335501821607 0 \N \N f 0 \N 1 240655590 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 436626 2024-02-23 20:27:52.668 2024-02-23 20:37:53.973 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch tea https://example.com/ 17798 436566 436566.436626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4018843928533 0 \N \N f 0 \N 0 221149612 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 436175 2024-02-23 13:27:04.434 2024-02-23 13:37:05.832 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edg https://example.com/ 13246 436163 436163.436175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1308757850271 0 \N \N f 0 \N 3 221003928 0 f f \N \N \N \N 436163 \N 0 0 \N \N f \N 440929 2024-02-27 18:50:47.585 2024-02-27 19:00:48.846 \N Agency party build and event thank leave it. Its first church Mrs. https://example.com/ 7395 440926 440911.440922.440926.440929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3035760421263 0 \N \N f 0 \N 0 172641294 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 436629 2024-02-23 20:29:14.728 2024-02-23 20:39:16.063 \N Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material tr https://example.com/ 8729 436523 436523.436629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.0878164748188 0 \N \N f 0 \N 0 15714369 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 435882 2024-02-23 06:25:46.339 2024-02-23 06:35:47.729 Never whose degree. Investmen Company kid protect determine adult. Increase add play lawyer report https://example.com/ 10493 \N 435882 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 28.1955839068985 0 \N \N f 0 \N 2 217974467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436670 2024-02-23 21:30:34.25 2024-02-23 21:40:35.657 \N Spend democratic seco https://example.com/ 11458 286012 286012.436670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.242476400555 0 \N \N f 0 \N 0 109445050 0 f f \N \N \N \N 286012 \N 0 0 \N \N f \N 436395 2024-02-23 16:38:42.233 2024-02-23 16:48:43.592 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more https://example.com/ 18714 436028 436028.436395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.78704802255319 0 \N \N f 0 \N 1 39528701 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436326 2024-02-23 15:45:47.777 2024-02-23 15:55:48.692 Film happen almost than. Staff stuff life concern investment adult enjoy. Man Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Im https://example.com/ 627 \N 436326 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 28.9431866807002 0 \N \N f 0 \N 7 213749204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435869 2024-02-23 05:56:31.853 2024-02-23 06:06:33.504 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect https://example.com/ 9496 435860 435847.435860.435869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0035937622074 0 \N \N f 0 \N 1 14663663 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 436621 2024-02-23 20:22:47.73 2024-02-23 20:32:48.539 \N Fly include one church TV air. Democrat institution develop behavior. Data get care collecti https://example.com/ 20291 436566 436566.436621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0139662043594 0 \N \N f 0 \N 0 41735996 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 436645 2024-02-23 20:52:09.712 2024-02-23 21:02:10.644 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Re https://example.com/ 8162 436241 436241.436645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87800593244224 0 \N \N f 0 \N 0 200726139 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436624 2024-02-23 20:26:51.816 2024-02-23 20:36:52.981 \N Build leg whole describe peace above answer walk. Charge rea https://example.com/ 19158 436241 436241.436624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2076027945438 0 \N \N f 0 \N 0 111028304 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440340 2024-02-27 09:04:35.311 2024-02-27 09:14:36.246 Get executive stock Play single finally social almost serious. Catch better education https://example.com/ 19981 \N 440340 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 21.690116539502 0 \N \N f 0 \N 2 17288106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436559 2024-02-23 18:55:08.942 2024-02-23 19:05:09.868 \N East fast despite responsibility machine. https://example.com/ 19810 436523 436523.436559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.703914339615 0 \N \N f 0 \N 0 218252423 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436642 2024-02-23 20:49:51.404 2024-02-23 20:59:53.254 \N Sense edge father camera. Region w https://example.com/ 10096 436330 436258.436330.436642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4563703880078 0 \N \N f 0 \N 0 126515760 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 436619 2024-02-23 20:21:25.973 2024-02-23 20:31:27.376 \N Second point director operation. Soon face realize born head far half above. Threat seven adult red benefit half app https://example.com/ 960 436556 436556.436619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0388020129129 0 \N \N f 0 \N 1 228204249 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 440923 2024-02-27 18:43:54.325 2024-02-27 18:53:56.101 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sur https://example.com/ 2741 440422 440422.440923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2928704690694 0 \N \N f 0 \N 1 14256017 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436654 2024-02-23 21:07:46.577 2024-02-23 21:17:47.917 That field beautiful American when. Simply quality Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye https://example.com/ 1120 \N 436654 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 26.1573822349131 0 \N \N f 0 \N 0 113129008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436650 2024-02-23 20:59:06.284 2024-02-23 21:09:07.772 \N True quickly government finish region. Disc https://example.com/ 636 436634 436218.436600.436630.436634.436650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.194194564173351 0 \N \N f 0 \N 0 56956160 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 436545 2024-02-23 18:34:49.194 2024-02-23 18:44:50.455 \N Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party i https://example.com/ 1307 436538 436093.436303.436519.436538.436545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.93441275148272 0 \N \N f 0 \N 1 20470909 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436653 2024-02-23 21:06:18.795 2024-02-23 21:16:19.748 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region https://example.com/ 5661 436545 436093.436303.436519.436538.436545.436653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4603640862974 0 \N \N f 0 \N 0 56883175 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436668 2024-02-23 21:28:47.235 2024-02-23 21:38:48.735 \N Apply president organization ri https://example.com/ 20564 436523 436523.436668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4912204662054 0 \N \N f 0 \N 0 211952597 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436655 2024-02-23 21:08:38.892 2024-02-23 21:18:40.032 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major https://example.com/ 18494 436523 436523.436655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51705364337138 0 \N \N f 0 \N 0 221200328 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436637 2024-02-23 20:41:13.974 2024-02-23 20:51:15.377 \N Seek military only heart. Side ahead exist spring. Commercia https://example.com/ 20642 436632 436632.436637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6979685604641 0 \N \N f 0 \N 0 59904095 0 f f \N \N \N \N 436632 \N 0 0 \N \N f \N 440465 2024-02-27 11:31:30.708 2024-02-27 11:41:32.228 \N World kind half pass financial job front. Itself https://example.com/ 20490 440464 440422.440450.440457.440460.440464.440465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.220130255349 0 \N \N f 0 \N 1 140404896 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436641 2024-02-23 20:46:40.036 2024-02-23 20:56:42.538 \N Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nSingle level story sound. Door end upon benefit second month together https://example.com/ 1272 436491 436491.436641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7170747072269 0 \N \N f 0 \N 1 133652090 0 f f \N \N \N \N 436491 \N 0 0 \N \N f \N 436648 2024-02-23 20:54:15.292 2024-02-23 21:04:16.64 \N Your https://example.com/ 20509 436566 436566.436648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2546047203355 0 \N \N f 0 \N 0 50622097 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 436680 2024-02-23 21:44:17.528 2024-02-23 21:54:19.256 \N Rule h https://example.com/ 21541 436665 436665.436680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.387046545634 0 \N \N f 0 \N 0 146397559 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N 440222 2024-02-27 03:57:24.072 2024-02-27 04:07:26.135 Foot upon smile pass house significant result small. Some h Method show window brother. Buy right Republican educatio https://example.com/ 690 \N 440222 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 28.2995896314741 0 \N \N f 0 \N 0 67911501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441185 2024-02-27 22:45:29.079 2024-02-27 22:55:30.697 \N Generation https://example.com/ 712 440587 440587.441185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04956315916747 0 \N \N f 0 \N 0 176922666 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442903 2024-02-28 23:58:13.403 2024-02-29 00:08:14.486 \N Fly https://example.com/ 8841 442781 442781.442903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6702496415527 0 \N \N f 0 \N 0 159634311 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 436638 2024-02-23 20:42:28.903 2024-02-23 20:52:30.492 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nWalk apply partner stage. Stuff western rich impact single read serious https://example.com/ 20904 436323 436323.436638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2785540873322 0 \N \N f 0 \N 0 6406485 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 432545 2024-02-20 14:48:02.513 2024-02-20 14:58:04.521 \N Both peace drug most bring institution. Mean become https://example.com/ 646 432251 432251.432545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6849827060194 0 \N \N f 0 \N 1 59053990 0 f f \N \N \N \N 432251 \N 0 0 \N \N f \N 436667 2024-02-23 21:27:22.403 2024-02-23 21:37:23.855 \N Book it view should. Impact cold oth https://example.com/ 1478 436323 436323.436667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6976672406426 0 \N \N f 0 \N 0 7021830 0 f f \N \N \N \N 436323 \N 0 0 \N \N f \N 440213 2024-02-27 03:30:00.168 2024-02-27 03:40:01.456 Notice after fund p Reality pressure enjoy throughout beyond. Property fight https://example.com/ 20187 \N 440213 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 11.3899638781216 0 \N \N f 0 \N 0 41132549 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436640 2024-02-23 20:46:32.387 2024-02-23 20:56:34.389 Blood very whom mean technology contain rather. Und Quickly fill science from politics foot. Person avai https://example.com/ 17944 \N 436640 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 9.13018869229557 0 \N \N f 0 \N 0 2605388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440473 2024-02-27 11:38:26.325 2024-02-27 11:48:28.778 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign https://example.com/ 18072 440433 440422.440433.440473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6012141132183 0 \N \N f 0 \N 0 244541552 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436625 2024-02-23 20:27:27.968 2024-02-23 20:37:28.9 \N Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nRange laugh thousand step. Them telev https://example.com/ 700 436600 436218.436600.436625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2183634872412 0 \N \N f 0 \N 0 64726342 0 f f \N \N \N \N 436218 \N 0 0 \N \N f \N 436660 2024-02-23 21:20:48.283 2024-02-23 21:30:49.585 \N Together tree bar tonight. Safe admit knowledge high pay miss pict https://example.com/ 20090 436659 436659.436660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2085425525457 0 \N \N f 0 \N 0 175388961 0 f f \N \N \N \N 436659 \N 0 0 \N \N f \N 440924 2024-02-27 18:44:45.776 2024-02-27 18:54:46.826 \N How never cut grow benefit. Dinner environmental side financia https://example.com/ 8535 440826 440725.440822.440826.440924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7276122999067 0 \N \N f 0 \N 0 108115187 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 436663 2024-02-23 21:23:50.971 2024-02-23 21:33:52.803 Region model over bo General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost. https://example.com/ 8176 \N 436663 \N \N \N \N \N \N \N \N security \N ACTIVE \N 12.5027751693376 0 \N \N f 0 \N 0 89168121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439970 2024-02-26 21:20:29.511 2024-02-26 21:30:30.621 Edge lot space military without many term others. Religious wear economy can s Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful. https://example.com/ 16562 \N 439970 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 28.7833191293715 0 \N \N f 0 \N 5 245411363 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436678 2024-02-23 21:39:49.214 2024-02-23 21:49:51.328 \N Eat cultu https://example.com/ 976 436665 436665.436678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0180200517008 0 \N \N f 0 \N 0 10125746 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N 436622 2024-02-23 20:23:19.822 2024-02-23 20:33:21.3 \N Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Pr https://example.com/ 2056 436566 436566.436622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8574269596964 0 \N \N f 0 \N 0 63261188 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 436307 2024-02-23 15:21:06.645 2024-02-23 15:31:09.221 \N Build leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal p https://example.com/ 19863 436290 436290.436307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3353046182422 0 \N \N f 0 \N 3 15862998 0 f f \N \N \N \N 436290 \N 0 0 \N \N f \N 436525 2024-02-23 18:19:45.068 2024-02-23 18:29:46.234 \N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take g https://example.com/ 9863 436294 435657.436294.436525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9539644020686 0 \N \N f 0 \N 0 186653816 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 436608 2024-02-23 20:05:42.59 2024-02-23 20:15:45.137 Then political wai Garden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory poli https://example.com/ 19527 \N 436608 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.7133692230809 0 \N \N f 0 \N 0 186085599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440468 2024-02-27 11:33:07.137 2024-02-27 11:43:08.694 \N Us less sure. Late tra https://example.com/ 4035 440137 439970.440137.440468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64818303731462 0 \N \N f 0 \N 0 29310711 0 f f \N \N \N \N 439970 \N 0 0 \N \N f \N 440460 2024-02-27 11:23:41.833 2024-02-27 11:33:42.901 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nMay another international budget. Tonight mom https://example.com/ 21466 440457 440422.440450.440457.440460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6074428536271 0 \N \N f 0 \N 3 127289086 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440893 2024-02-27 18:22:58.705 2024-02-27 18:32:59.935 Eight represent last serious Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three. https://example.com/ 7682 \N 440893 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.132554637177 0 \N \N f 0 \N 0 51421123 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440410 2024-02-27 10:43:45.417 2024-02-27 10:53:46.296 Often culture th Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution. https://example.com/ 3506 \N 440410 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.47528960538787 0 \N \N f 0 \N 1 138366870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436602 2024-02-23 19:59:49.129 2024-02-23 20:09:50.836 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throu https://example.com/ 12769 436372 436241.436372.436602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6176751796804 0 \N \N f 0 \N 0 204643991 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436562 2024-02-23 18:56:08.238 2024-02-23 19:06:09.735 Friend growth election water degree probably. Score spring treat institut Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other fath https://example.com/ 20084 \N 436562 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2748525176161 0 \N \N f 0 \N 0 125286287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436478 2024-02-23 17:37:12.009 2024-02-23 17:47:13.107 \N After way challenge. Nothing protect ground major stru https://example.com/ 12959 436368 436241.436368.436478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2778414592559 0 \N \N f 0 \N 0 52475209 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436659 2024-02-23 21:15:34.138 2024-02-23 21:25:35.366 Property pass now firm today boy reason. Chair ready throw officer discuss. Reco Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nYour firm section wall https://example.com/ 18945 \N 436659 \N \N \N \N \N \N \N \N news \N ACTIVE \N 15.6897696167712 0 \N \N f 0 \N 1 56270577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440497 2024-02-27 12:14:56.79 2024-02-27 12:24:59.134 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sou https://example.com/ 1012 440481 440481.440497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9665615277894 0 \N \N f 0 \N 0 158990452 0 f f \N \N \N \N 440481 \N 0 0 \N \N f \N 435622 2024-02-22 22:46:05.182 2024-02-22 22:56:06.894 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nTen throw trip up region place painting. House many unit win just https://example.com/ 11075 434602 434278.434503.434522.434598.434602.435622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1095256637184 0 \N \N f 0 \N 20 75867113 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 434602 2024-02-22 06:10:33.973 2024-02-22 06:20:35.046 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nWear role agency https://example.com/ 20073 434598 434278.434503.434522.434598.434602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.23959107823264 0 \N \N f 0 \N 21 33387585 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 435775 2024-02-23 02:54:05.753 2024-02-23 03:04:06.601 \N Serious stay girl enter. His investment develop media ou https://example.com/ 5746 435772 434278.434503.434522.434598.434602.435622.435772.435775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1629788370081 0 \N \N f 0 \N 4 72205444 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 436658 2024-02-23 21:13:13.066 2024-02-23 21:23:14.019 \N Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly https://example.com/ 17944 436549 436549.436658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6240432623832 0 \N \N f 0 \N 5 183703447 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 440466 2024-02-27 11:32:07.054 2024-02-27 11:42:08.833 \N Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nFour learn tell crime. Work maintain probably h https://example.com/ 19890 439917 439917.440466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.35713312332643 0 \N \N f 0 \N 0 52117987 0 f f \N \N \N \N 439917 \N 0 0 \N \N f \N 436711 2024-02-23 22:38:54.829 2024-02-23 22:48:56.547 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year the https://example.com/ 17014 436669 436669.436711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.660587226132 0 \N \N f 0 \N 0 130972405 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 441447 2024-02-28 04:23:13.45 2024-02-28 04:33:14.377 \N They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. https://example.com/ 4083 441419 441247.441274.441367.441419.441447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8946764639055 0 \N \N f 0 \N 3 18164122 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441000 2024-02-27 19:55:37.653 2024-02-27 20:05:39.66 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank w https://example.com/ 10393 440993 440988.440993.441000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8584249480628 0 \N \N f 0 \N 2 236321797 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 442908 2024-02-29 00:06:40.466 2024-02-29 00:16:41.665 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senio https://example.com/ 13348 442887 442483.442816.442857.442887.442908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1332970556962 0 \N \N f 0 \N 1 131649019 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 436696 2024-02-23 22:00:09.067 2024-02-23 22:10:10.05 \N Tell difference pattern carry join. Size factor particularly necessary step. Little f https://example.com/ 21003 436695 436683.436690.436695.436696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4780599999314 0 \N \N f 0 \N 2 198594709 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436686 2024-02-23 21:49:27.491 2024-02-23 21:59:29.579 Focus available yeah law. Down there avoi Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score https://example.com/ 17082 \N 436686 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.280219040572 0 \N \N f 0 \N 0 81137835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436706 2024-02-23 22:19:27.433 2024-02-23 22:29:29.934 \N Clear suggest https://example.com/ 1162 436421 436253.436421.436706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2197229954971 0 \N \N f 0 \N 0 48464286 0 f f \N \N \N \N 436253 \N 0 0 \N \N f \N 436701 2024-02-23 22:03:25.799 2024-02-23 22:13:27.851 \N Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member s https://example.com/ 1737 436172 435944.436159.436172.436701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.90818326141012 0 \N \N f 0 \N 0 54032892 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 440522 2024-02-27 12:59:32.859 2024-02-27 13:09:35.468 \N Offer seem husband section responsibility notice s https://example.com/ 20904 439729 439729.440522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37998943530808 0 \N \N f 0 \N 0 73068518 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 440992 2024-02-27 19:51:14.183 2024-02-27 20:01:16.73 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Milita https://example.com/ 16357 440980 440520.440980.440992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5806427140207 0 \N \N f 0 \N 0 59481868 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 436689 2024-02-23 21:54:06.51 2024-02-23 22:04:07.445 \N Off class property ok try. Outside fast glass re https://example.com/ 7746 435847 435847.436689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.023535716025 0 \N \N f 0 \N 0 59903310 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 440440 2024-02-27 11:11:43.884 2024-02-27 11:21:45.349 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye https://example.com/ 10273 440426 440266.440426.440440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9540293301486 0 \N \N f 0 \N 1 164141715 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440451 2024-02-27 11:16:00.009 2024-02-27 11:26:01.316 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item materi https://example.com/ 20573 440422 440422.440451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5491125543601 0 \N \N f 0 \N 0 56728895 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436695 2024-02-23 21:58:09.997 2024-02-23 22:08:11.804 \N Than level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat https://example.com/ 9438 436690 436683.436690.436695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1651903014933 0 \N \N f 0 \N 3 34778214 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436639 2024-02-23 20:46:10.986 2024-02-23 20:56:13.212 \N Fund bring design try claim attention. Old imagine hand prevent. Son study tho https://example.com/ 16145 436572 436566.436572.436639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52613476787976 0 \N \N f 0 \N 0 4010500 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 440482 2024-02-27 11:48:00.229 2024-02-27 11:58:01.311 \N Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense https://example.com/ 8796 440481 440481.440482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5857451729313 0 \N \N f 0 \N 0 185901072 0 f f \N \N \N \N 440481 \N 0 0 \N \N f \N 440433 2024-02-27 11:09:19.12 2024-02-27 11:19:20.296 \N Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nProject them draw walk if significant wrong https://example.com/ 17710 440422 440422.440433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.29527099418349 0 \N \N f 0 \N 2 23447984 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440487 2024-02-27 11:58:51.752 2024-02-27 12:08:53.577 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be. https://example.com/ 16149 440463 440463.440487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.000411879036 0 \N \N f 0 \N 2 94322752 0 f f \N \N \N \N 440463 \N 0 0 \N \N f \N 440488 2024-02-27 12:00:09.539 2024-02-27 12:10:10.817 \N West possible modern office manage people. Major begin skin sit those st https://example.com/ 12609 440487 440463.440487.440488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.531194438883 0 \N \N f 0 \N 1 72329478 0 f f \N \N \N \N 440463 \N 0 0 \N \N f \N 439891 2024-02-26 20:26:43.22 2024-02-26 20:36:44.68 Others high sea sense study audience. Adu Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward https://example.com/ 18989 \N 439891 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.8064013449168 0 \N \N f 0 \N 0 146795318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436691 2024-02-23 21:55:55.547 2024-02-23 22:05:57.681 \N Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population d https://example.com/ 18051 436093 436093.436691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.24835547983657 0 \N \N f 0 \N 0 19495944 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 440507 2024-02-27 12:25:54.099 2024-02-27 12:35:55.391 \N Provide red song family quickly. Free point fish relationship. Media who share little professor si https://example.com/ 889 440422 440422.440507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.60525612764212 0 \N \N f 0 \N 0 63929856 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440461 2024-02-27 11:23:48.812 2024-02-27 11:33:51.049 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue https://example.com/ 4989 440266 440266.440461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5019545721084 0 \N \N f 0 \N 2 61770050 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440524 2024-02-27 13:01:35.405 2024-02-27 13:11:37.58 \N By evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile https://example.com/ 5495 440422 440422.440524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3812555190244 0 \N \N f 0 \N 0 66880576 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440491 2024-02-27 12:05:41.754 2024-02-27 12:15:43.109 \N Many soldier role. Far buy able idea president try television. Daughter team school whose clearly m https://example.com/ 1319 440483 440422.440470.440483.440491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9063114261237 0 \N \N f 0 \N 0 38230275 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436690 2024-02-23 21:55:10.299 2024-02-23 22:05:11.584 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western w https://example.com/ 20301 436683 436683.436690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0024753229617 0 \N \N f 0 \N 4 147014558 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 440477 2024-02-27 11:41:03.955 2024-02-27 11:51:05.265 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nFactor song science administration defense radio. Pay everyb https://example.com/ 15843 440443 440443.440477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.006866124267 0 \N \N f 0 \N 0 205618353 0 f f \N \N \N \N 440443 \N 0 0 \N \N f \N 436732 2024-02-23 23:30:30.075 2024-02-23 23:40:31.338 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include https://example.com/ 4167 436683 436683.436732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8477365450121 0 \N \N f 0 \N 1 78419079 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436698 2024-02-23 22:02:33.117 2024-02-23 22:12:34.335 \N Matter training experience. Election car https://example.com/ 15526 436696 436683.436690.436695.436696.436698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4094439328417 0 \N \N f 0 \N 1 175012063 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436703 2024-02-23 22:12:12.739 2024-02-23 22:22:14.01 \N Admit TV soon machine word future add https://example.com/ 5538 436523 436523.436703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.429894346129 0 \N \N f 0 \N 0 200869739 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 439912 2024-02-26 20:40:43.017 2024-02-26 20:50:44.425 \N Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject mon https://example.com/ 16124 439731 439390.439731.439912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0916004912393 0 \N \N f 0 \N 0 136237802 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 440490 2024-02-27 12:00:51.007 2024-02-27 12:10:52.813 \N Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nStage can fish building senior. Through position capit https://example.com/ 1454 440461 440266.440461.440490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96380795864151 0 \N \N f 0 \N 0 196546591 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 436745 2024-02-23 23:48:12.504 2024-02-23 23:58:14.334 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Co https://example.com/ 21070 436742 436722.436736.436739.436742.436745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7678937162707 0 \N \N f 0 \N 0 85287031 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 436548 2024-02-23 18:36:12.514 2024-02-23 18:46:13.821 \N Moment smile cell cold road h https://example.com/ 7418 436547 436093.436347.436547.436548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0951857806437 0 \N \N f 0 \N 2 126624173 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436605 2024-02-23 20:00:53.273 2024-02-23 20:10:54.38 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international https://example.com/ 9307 436593 436593.436605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6215034045266 0 \N \N f 0 \N 0 193554904 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 440511 2024-02-27 12:27:47.421 2024-02-27 12:37:49.43 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing pea https://example.com/ 14515 440422 440422.440511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4457662487743 0 \N \N f 0 \N 1 169048331 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436700 2024-02-23 22:03:24.718 2024-02-23 22:13:25.821 \N Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High https://example.com/ 19924 436612 436612.436700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4446204387121 0 \N \N f 0 \N 2 72162093 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436707 2024-02-23 22:22:29.963 2024-02-23 22:32:31.546 \N Plan really necessary boy a co https://example.com/ 14258 436514 436514.436707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0428542775874 0 \N \N f 0 \N 0 239995898 0 f f \N \N \N \N 436514 \N 0 0 \N \N f \N 436765 2024-02-24 00:08:03.248 2024-02-24 00:18:04.912 Cultural everyone partner bed difference cup science. Size Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note. https://example.com/ 18380 \N 436765 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 2.703758504083 0 \N \N f 0 \N 0 43537081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436715 2024-02-23 22:54:29.231 2024-02-23 23:04:30.624 \N Whose eye what surface. Leader use yet six des https://example.com/ 16667 436464 434469.436464.436715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23150257438746 0 \N \N f 0 \N 0 105982004 0 f f \N \N \N \N 434469 \N 0 0 \N \N f \N 436504 2024-02-23 17:53:56.025 2024-02-23 18:03:57.266 \N Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defens https://example.com/ 10273 436197 436197.436504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6529417513292 0 \N \N f 0 \N 0 84697566 0 f f \N \N \N \N 436197 \N 0 0 \N \N f \N 436709 2024-02-23 22:32:06.216 2024-02-23 22:42:07.929 Right term sell shoulder. Next chair base young skil Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win. https://example.com/ 669 \N 436709 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.78579880090567 0 \N \N f 0 \N 7 91086521 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436710 2024-02-23 22:38:49.858 2024-02-23 22:48:52.526 \N Deal could skin some. Through street fact almost. Move much https://example.com/ 9107 436499 436499.436710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9884696179123 0 \N \N f 0 \N 0 79430491 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436704 2024-02-23 22:13:31.88 2024-02-23 22:23:33.618 Produce series whom citizen sit. Crime these would her. Agency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nLeave exa https://example.com/ 21208 \N 436704 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 2.79223080947826 0 \N \N f 0 \N 0 125679283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440505 2024-02-27 12:23:38.919 2024-02-27 12:33:41.159 \N Speech also his. White PM rather https://example.com/ 2176 440412 440412.440505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5304700583389 0 \N \N f 0 \N 0 148846878 0 f f \N \N \N \N 440412 \N 0 0 \N \N f \N 436724 2024-02-23 23:20:32.822 2024-02-23 23:30:34.092 \N Debate property life amount writer. Animal father ne https://example.com/ 7760 436720 436720.436724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.876921767104 0 \N \N f 0 \N 1 243771009 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436514 2024-02-23 18:04:36.511 2024-02-23 18:14:37.511 Approach stuff big ahead noth Material arm interest draw production. Develop https://example.com/ 17237 \N 436514 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 15.9024350798012 0 \N \N f 0 \N 2 195977733 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436712 2024-02-23 22:42:28.636 2024-02-23 22:52:30.43 \N Baby body day citizen change. Present identify never big charge. Street draw message ge https://example.com/ 1039 436499 436499.436712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0979767515614 0 \N \N f 0 \N 0 122667094 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436298 2024-02-23 15:14:21.647 2024-02-23 15:24:23.846 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. https://example.com/ 12334 436241 436241.436298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.896977398116 0 \N \N f 0 \N 0 226789238 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436708 2024-02-23 22:30:00.085 2024-02-23 22:40:02.388 \N Wish join discuss brother worry https://example.com/ 15941 436699 436699.436708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.17986263006484 0 \N \N f 0 \N 0 244532004 0 f f \N \N \N \N 436699 \N 0 0 \N \N f \N 441188 2024-02-27 22:47:00.204 2024-02-27 22:57:01.896 \N Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nDirection fill away friend environmental paper. Camera director respond. Until write my top https://example.com/ 1519 441186 441186.441188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1203005234698 0 \N \N f 0 \N 0 45471298 0 f f \N \N \N \N 441186 \N 0 0 \N \N f \N 436649 2024-02-23 20:56:06.203 2024-02-23 21:06:07.886 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country https://example.com/ 18896 436635 436523.436561.436635.436649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0926341447494 0 \N \N f 0 \N 0 135742933 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436713 2024-02-23 22:48:25.952 2024-02-23 22:58:28.554 Tree political season Mother up probably anything nation Mrs participant manage. Then standard https://example.com/ 16954 \N 436713 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 6.27810730984191 0 \N \N f 0 \N 0 152325305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436758 2024-02-23 23:58:13.128 2024-02-24 00:08:14.833 \N Any note https://example.com/ 15200 436755 436755.436758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8288490633553 0 \N \N f 0 \N 0 126653581 0 f f \N \N \N \N 436755 \N 0 0 \N \N f \N 442824 2024-02-28 23:03:37.671 2024-02-28 23:13:38.79 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nUnder big evening others. Trip remai https://example.com/ 18241 442670 442628.442639.442646.442648.442650.442670.442824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.12975400522385 0 \N \N f 0 \N 3 113044477 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442408 2024-02-28 17:00:05.34 2024-02-28 17:10:07.012 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never https://example.com/ 21119 442407 442407.442408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.35718144158443 0 \N \N f 0 \N 0 154057944 0 f f \N \N \N \N 442407 \N 0 0 \N \N f \N 442857 2024-02-28 23:23:47.658 2024-02-28 23:33:49.159 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finis https://example.com/ 7587 442816 442483.442816.442857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5898087031355 0 \N \N f 0 \N 3 58099269 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 442911 2024-02-29 00:09:00.545 2024-02-29 00:19:02.082 \N Measure would expert nation two. Prove at together vari https://example.com/ 21413 441695 441695.442911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7184349305919 0 \N \N f 0 \N 0 229099719 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 440509 2024-02-27 12:26:17.084 2024-02-27 12:36:19.572 \N Material focus experience p https://example.com/ 1236 440498 440422.440470.440498.440509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7939880092874 0 \N \N f 0 \N 0 161922725 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436719 2024-02-23 23:08:54.859 2024-02-23 23:18:57.056 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lo https://example.com/ 919 436326 436326.436719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5648975278732 0 \N \N f 0 \N 1 2285612 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 436727 2024-02-23 23:25:50.044 2024-02-23 23:35:51.157 \N You https://example.com/ 5522 436617 436028.436617.436727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1013217245188 0 \N \N f 0 \N 0 170386655 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436718 2024-02-23 23:02:07.909 2024-02-23 23:12:10.79 Career six also speak of difference tend. He Seek military only hear https://example.com/ 15337 \N 436718 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.17066614910424 0 \N \N f 0 \N 0 104564091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440464 2024-02-27 11:30:39.346 2024-02-27 11:40:40.912 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Socia https://example.com/ 14404 440460 440422.440450.440457.440460.440464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.72475827187521 0 \N \N f 0 \N 2 69869845 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436738 2024-02-23 23:42:09.008 2024-02-23 23:52:10.427 \N Go special a bed great same concern. Need plan look whatever recognize image white. S https://example.com/ 18114 436720 436720.436738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9593870802031 0 \N \N f 0 \N 0 229436286 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436731 2024-02-23 23:28:22.131 2024-02-23 23:38:24.035 \N World kind half pass financial job https://example.com/ 1471 436258 436258.436731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2022963127824 0 \N \N f 0 \N 0 113096907 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 440412 2024-02-27 10:45:15.584 2024-02-27 10:55:17.319 Serve deep statio Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without doo https://example.com/ 19967 \N 440412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7420344431202 0 \N \N f 0 \N 4 153171201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441172 2024-02-27 22:36:08.361 2024-02-27 22:46:09.557 \N Moment or possible there month. Myself hit name https://example.com/ 2361 440980 440520.440980.441172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.403036250466 0 \N \N f 0 \N 0 238066708 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 439721 2024-02-26 18:20:46.488 2024-02-26 18:30:47.451 Mention well why thank develop. Alone hotel Industry great onto trial wind. Rule radio trial she its understand. S https://example.com/ 7659 \N 439721 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 22.76762983871 0 \N \N f 0 \N 3 7446788 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436665 2024-02-23 21:25:17.577 2024-02-23 21:35:18.778 Medical view simila Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress mo https://example.com/ 20015 \N 436665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85603010483515 0 \N \N f 0 \N 5 212314342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441113 2024-02-27 21:22:34.892 2024-02-27 21:32:36.482 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without ar https://example.com/ 2609 440692 440692.441113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.898092139221021 0 \N \N f 0 \N 0 158925181 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441180 2024-02-27 22:42:03.36 2024-02-27 22:52:05.168 \N Some nation repre https://example.com/ 21365 440875 440875.441180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0811509881851 0 \N \N f 0 \N 0 173803202 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 440457 2024-02-27 11:22:15.885 2024-02-27 11:32:17.299 \N Far clearly possible ent https://example.com/ 18932 440450 440422.440450.440457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6269907220469 0 \N \N f 0 \N 4 77194538 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436717 2024-02-23 23:01:17.692 2024-02-23 23:11:18.964 \N Tend yes call look. Real feel scientist set fa https://example.com/ 18751 436698 436683.436690.436695.436696.436698.436717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1181063663415 0 \N \N f 0 \N 0 119054786 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436730 2024-02-23 23:27:58.036 2024-02-23 23:37:59.203 \N H https://example.com/ 1474 436330 436258.436330.436730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4103692907862 0 \N \N f 0 \N 0 63849984 0 f f \N \N \N \N 436258 \N 0 0 \N \N f \N 440514 2024-02-27 12:41:07.826 2024-02-27 12:51:09.543 \N West tend alone prepare bui https://example.com/ 16929 439131 439131.440514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9844106975334 0 \N \N f 0 \N 0 68093636 0 f f \N \N \N \N 439131 \N 0 0 \N \N f \N 440515 2024-02-27 12:41:14.904 2024-02-27 13:10:12.25 \N Main teacher local. https://example.com/ 16336 437271 436752.437184.437271.440515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8053146652373 0 \N \N f 0 \N 0 49238137 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 440483 2024-02-27 11:48:26.833 2024-02-27 11:58:28.795 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administratio https://example.com/ 20102 440470 440422.440470.440483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.69025562931624 0 \N \N f 0 \N 1 86478108 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441799 2024-02-28 12:03:40.336 2024-02-28 12:13:42.744 \N Table fish west wish point expect. Discussion matter threat learn authority. Understand https://example.com/ 9816 441794 441794.441799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7973966542382 0 \N \N f 0 \N 3 86277270 0 f f \N \N \N \N 441794 \N 0 0 \N \N f \N 436722 2024-02-23 23:16:38.084 2024-02-23 23:26:39.682 Summer past television what in. Find give movement certain vi South little trip identify similar. https://example.com/ 2502 \N 436722 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0828641129881 0 \N \N f 0 \N 8 193017825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441790 2024-02-28 11:54:33.761 2024-02-28 12:04:34.77 \N Sen https://example.com/ 2232 441703 441247.441362.441703.441790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7561960343504 0 \N \N f 0 \N 0 79675973 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 440413 2024-02-27 10:45:32.38 2024-02-27 10:55:34.698 Various discussion light Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a w https://example.com/ 21374 \N 440413 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 5.03701863821 0 \N \N f 0 \N 0 5027828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440512 2024-02-27 12:37:12.446 2024-02-27 12:47:13.221 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend min https://example.com/ 12516 440461 440266.440461.440512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5841873352669 0 \N \N f 0 \N 0 160701220 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440510 2024-02-27 12:26:43.854 2024-02-27 12:36:45.333 \N Risk past https://example.com/ 21527 440501 440422.440470.440501.440510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4221746211298 0 \N \N f 0 \N 0 224855562 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436705 2024-02-23 22:14:54.773 2024-02-23 22:24:56.565 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit busine https://example.com/ 19087 436700 436612.436700.436705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2675621766535 0 \N \N f 0 \N 1 217840127 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436756 2024-02-23 23:57:10.262 2024-02-24 00:07:11.295 \N Catch as hersel https://example.com/ 16059 436743 436612.436725.436743.436756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7367337199419 0 \N \N f 0 \N 0 206231727 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436739 2024-02-23 23:43:11.252 2024-02-23 23:53:12.287 \N Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nState wall myself interview will. Watch ah https://example.com/ 886 436736 436722.436736.436739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3754719530789 0 \N \N f 0 \N 2 195105214 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 436736 2024-02-23 23:38:47.175 2024-02-23 23:48:48.552 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including repo https://example.com/ 15690 436722 436722.436736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71399143245185 0 \N \N f 0 \N 3 23621317 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 436656 2024-02-23 21:12:50.486 2024-02-23 21:22:51.848 Hotel remember debate strategy. Discussion sell card. Behavior trade risk identi Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical. https://example.com/ 21451 \N 436656 \N \N \N \N \N \N \N \N health \N ACTIVE \N 28.0071902862712 0 \N \N f 0 \N 0 28876662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436268 2024-02-23 14:46:10.856 2024-02-23 14:56:11.47 \N Wide deep ahead effort. Somebody issue single p https://example.com/ 20023 436047 436047.436268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2337193089314 0 \N \N f 0 \N 1 243770784 0 f f \N \N \N \N 436047 \N 0 0 \N \N f \N 440523 2024-02-27 13:01:22.181 2024-02-27 13:11:23.641 \N Agency party build and event thank leave it. Its first church https://example.com/ 14385 440422 440422.440523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5208049347102 0 \N \N f 0 \N 10 93474571 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440492 2024-02-27 12:07:32.986 2024-02-27 12:17:34.933 Condition door drive write. Firm simple test. Why mind trial Congress. Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nDebate property life amount writer. Animal father near beyo https://example.com/ 18124 \N 440492 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.6696040802119 0 \N \N f 0 \N 0 108126868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436760 2024-02-23 23:58:45.503 2024-02-24 00:08:46.586 Property this American law baby doctor. E Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site. https://example.com/ 3371 \N 436760 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 6.81695399838301 0 \N \N f 0 \N 3 131970645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436737 2024-02-23 23:40:13.646 2024-02-23 23:50:14.971 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience https://example.com/ 21062 436268 436047.436268.436737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45123840413954 0 \N \N f 0 \N 0 83658679 0 f f \N \N \N \N 436047 \N 0 0 \N \N f \N 436838 2024-02-24 02:08:33.07 2024-02-24 02:18:34.641 \N Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. https://example.com/ 16562 436822 436720.436784.436801.436822.436838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6690223757572 0 \N \N f 0 \N 1 225349812 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436420 2024-02-23 17:04:07.462 2024-02-23 17:14:09.135 Church listen our call couple Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular. https://example.com/ 4776 \N 436420 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 16.4620108436388 0 \N \N f 0 \N 1 24697979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436757 2024-02-23 23:57:31.393 2024-02-24 00:07:33.676 \N Meeting expert body. End store vote acro https://example.com/ 7989 436732 436683.436732.436757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83952721430624 0 \N \N f 0 \N 0 170321798 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436806 2024-02-24 01:21:48.505 2024-02-24 01:31:49.766 \N Ten throw trip up region place painting. Ho https://example.com/ 5590 436729 436729.436806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5392422627109 0 \N \N f 0 \N 0 202009939 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 438405 2024-02-25 16:08:13.028 2024-02-25 16:18:13.828 Most describe tell speech w For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often o https://example.com/ 20143 \N 438405 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 26.9989425584666 0 \N \N f 0 \N 30 19474951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436816 2024-02-24 01:32:50.66 2024-02-24 01:42:52.377 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. https://example.com/ 14225 436721 432920.436721.436816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.420838758738817 0 \N \N f 0 \N 2 217906869 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 436807 2024-02-24 01:24:02.188 2024-02-24 01:34:04.668 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forwar https://example.com/ 17714 436719 436326.436719.436807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.72731959072298 0 \N \N f 0 \N 0 125265219 0 f f \N \N \N \N 436326 \N 0 0 \N \N f \N 432801 2024-02-20 17:51:26.638 2024-02-20 18:01:28.108 \N Career six also speak of difference tend. Heavy may https://example.com/ 17800 432670 432670.432801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8951964403385 0 \N \N f 0 \N 0 199794935 0 f f \N \N \N \N 432670 \N 0 0 \N \N f \N 436810 2024-02-24 01:27:42.044 2024-02-24 01:37:44.302 \N Size matter rather resul https://example.com/ 21619 433657 432670.433657.436810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2159466657813 0 \N \N f 0 \N 0 232261195 0 f f \N \N \N \N 432670 \N 0 0 \N \N f \N 437184 2024-02-24 13:36:54.387 2024-02-24 13:46:56.045 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular par https://example.com/ 13763 436752 436752.437184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3587170723612 0 \N \N f 0 \N 41 233131492 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 436762 2024-02-24 00:00:26.666 2024-02-24 00:10:27.888 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much https://example.com/ 11523 436733 436733.436762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.76060825558453 0 \N \N f 0 \N 1 58673988 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 436775 2024-02-24 00:20:28.198 2024-02-24 00:30:29.774 \N Rule hope accept blue. Firm performance go office accept. https://example.com/ 16042 436527 436499.436527.436775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0213946935168 0 \N \N f 0 \N 0 102989984 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 440518 2024-02-27 12:46:52.775 2024-02-27 12:56:55.606 \N Past skin protect than court summer experience. Final together century parti https://example.com/ 16456 439390 439390.440518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2819828578041 0 \N \N f 0 \N 0 156430831 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 436764 2024-02-24 00:03:51.012 2024-02-24 00:13:52.825 Again trade author Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off. https://example.com/ 1237 \N 436764 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.1183554831074 0 \N \N f 0 \N 1 196696491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436773 2024-02-24 00:19:34.866 2024-02-24 00:29:35.972 \N Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. Hou https://example.com/ 11145 436752 436752.436773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0535533312056 0 \N \N f 0 \N 1 156538612 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 436729 2024-02-23 23:26:58.523 2024-02-23 23:37:06.809 Right view contain easy someone. People away page experience. Which like repo Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until. https://example.com/ 18660 \N 436729 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.024473969281 0 \N \N f 0 \N 11 140732952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436776 2024-02-24 00:23:19.607 2024-02-24 00:33:21.002 \N Moment or possible there month. Myself hit name exist team herself training https://example.com/ 18051 436720 436720.436776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.21014432360712 0 \N \N f 0 \N 1 162138381 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 441702 2024-02-28 11:01:21.342 2024-02-28 11:11:22.663 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never https://example.com/ 14037 441369 441247.441369.441702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.067793701908 0 \N \N f 0 \N 1 223240868 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441777 2024-02-28 11:46:06.284 2024-02-28 11:56:08.723 \N Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be lang https://example.com/ 20117 441771 441695.441699.441738.441754.441771.441777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6039894207054 0 \N \N f 0 \N 1 249763272 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 436612 2024-02-23 20:15:06.1 2024-02-23 20:25:07.357 A item peace although method Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serio https://example.com/ 1141 \N 436612 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.584419106304 0 \N \N f 0 \N 9 205962934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436805 2024-02-24 01:20:50.135 2024-02-24 01:30:51.693 Friend growth election water deg Ten instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive. https://example.com/ 7899 \N 436805 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5695932774949 0 \N \N f 0 \N 6 6692448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436527 2024-02-23 18:21:28.29 2024-02-23 18:31:30.181 \N Ten instead develop somebody into school. Main building pla https://example.com/ 17011 436499 436499.436527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.24667125266389 0 \N \N f 0 \N 1 116717716 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 441722 2024-02-28 11:11:17.061 2024-02-28 11:21:18.746 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area proper https://example.com/ 3371 441714 441560.441687.441700.441714.441722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2267294943927 0 \N \N f 0 \N 0 227188613 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441714 2024-02-28 11:06:55.442 2024-02-28 11:16:56.379 \N Order care many fire per feel bill exist. Ready reach poor true. Crime away prepare https://example.com/ 16229 441700 441560.441687.441700.441714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3390619672525 0 \N \N f 0 \N 1 243172752 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441800 2024-02-28 12:07:42.44 2024-02-28 12:17:44.674 \N Live class artist pull nearly poor. Use vote religious. Later bad by stage https://example.com/ 18862 440692 440692.441800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3123619742131 0 \N \N f 0 \N 0 100892786 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 436666 2024-02-23 21:27:19.547 2024-02-23 21:37:20.814 \N Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nCapital treat simple a https://example.com/ 16350 436593 436593.436666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2422206098516 0 \N \N f 0 \N 0 176039165 0 f f \N \N \N \N 436593 \N 0 0 \N \N f \N 436770 2024-02-24 00:16:52.643 2024-02-24 00:26:53.759 \N Top however addr https://example.com/ 2010 436759 436759.436770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4226986334388 0 \N \N f 0 \N 0 116720951 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 436347 2024-02-23 15:58:13.937 2024-02-23 16:08:15.221 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind u https://example.com/ 16214 436093 436093.436347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8786156915842 0 \N \N f 0 \N 4 210530050 0 f f \N \N \N \N 436093 \N 0 0 \N \N f \N 436793 2024-02-24 00:58:05.375 2024-02-24 01:08:06.267 \N Race s https://example.com/ 4250 436777 436777.436793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9934163412795 0 \N \N f 0 \N 0 91168679 0 f f \N \N \N \N 436777 \N 0 0 \N \N f \N 436772 2024-02-24 00:19:12.201 2024-02-24 00:29:13.755 \N Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special https://example.com/ 21248 436499 436499.436772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.98059658263909 0 \N \N f 0 \N 0 4859502 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436824 2024-02-24 01:44:09.048 2024-02-24 01:54:10.294 \N Bar adult https://example.com/ 20006 436420 436420.436824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62450147795688 0 \N \N f 0 \N 0 122560899 0 f f \N \N \N \N 436420 \N 0 0 \N \N f \N 433001 2024-02-20 20:27:25.254 2024-02-20 20:37:26.681 Possible serious black institution source His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer https://example.com/ 19469 \N 433001 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 12.481249805862 0 \N \N f 0 \N 0 74046469 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436499 2024-02-23 17:49:33.913 2024-02-23 17:59:35.238 Outside mother movement day enough. Ever building next let material military thi Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true. https://example.com/ 20586 \N 436499 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.58263171027423 0 \N \N f 0 \N 13 21350339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440526 2024-02-27 13:04:12.376 2024-02-27 13:14:14.05 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect gene https://example.com/ 14260 440385 439472.439503.439739.440385.440526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2824115724159 0 \N \N f 0 \N 0 212623362 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 436791 2024-02-24 00:53:13.17 2024-02-24 01:03:14.663 \N Door visit program account. https://example.com/ 1094 436627 436627.436791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.112622329132748 0 \N \N f 0 \N 1 233258198 0 f f \N \N \N \N 436627 \N 0 0 \N \N f \N 442102 2024-02-28 15:00:04.733 2024-02-28 15:10:06.342 Voice sign college quality. Explain m \N https://example.com/ 1751 \N 442102 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.0708248427033 0 \N \N f 0 \N 1 64170133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436796 2024-02-24 01:01:21.62 2024-02-24 01:11:23.039 \N Lead between race contain politics. Base behavior sugg https://example.com/ 20614 435944 435944.436796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6231354536622 0 \N \N f 0 \N 0 144730836 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 436769 2024-02-24 00:16:09.575 2024-02-24 00:26:11.257 \N Star bill toward also https://example.com/ 17838 436729 436729.436769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.68696734988 0 \N \N f 0 \N 1 86179743 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 436767 2024-02-24 00:13:25.797 2024-02-24 00:23:27.223 \N Their bed hear popular https://example.com/ 21480 436709 436709.436767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1393381477335 0 \N \N f 0 \N 0 167269496 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 436787 2024-02-24 00:51:13.753 2024-02-24 01:01:15.025 \N Determine magazine police agent b https://example.com/ 977 436755 436755.436787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6528090344776 0 \N \N f 0 \N 0 37518319 0 f f \N \N \N \N 436755 \N 0 0 \N \N f \N 436778 2024-02-24 00:25:56.491 2024-02-24 00:35:57.611 \N Approach https://example.com/ 19546 436777 436777.436778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7098379772959 0 \N \N f 0 \N 0 134608119 0 f f \N \N \N \N 436777 \N 0 0 \N \N f \N 436786 2024-02-24 00:50:05.939 2024-02-24 01:00:07.109 \N Think cover scientist financial a https://example.com/ 13046 436777 436777.436786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1991209447024 0 \N \N f 0 \N 0 196101863 0 f f \N \N \N \N 436777 \N 0 0 \N \N f \N 436771 2024-02-24 00:18:59.739 2024-02-24 00:29:01.562 \N Game management go ready star call how. Total sister make. End physical compare her statement involv https://example.com/ 16816 436556 436556.436771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8831173736492 0 \N \N f 0 \N 0 174975386 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 436789 2024-02-24 00:52:00.103 2024-02-24 01:02:01.097 \N Begin lawyer shoulder couple whom https://example.com/ 16406 436665 436665.436789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.423792882712 0 \N \N f 0 \N 0 227418991 0 f f \N \N \N \N 436665 \N 0 0 \N \N f \N 436785 2024-02-24 00:46:00.554 2024-02-24 00:56:01.755 \N O https://example.com/ 700 436781 436683.436781.436785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2559281915965 0 \N \N f 0 \N 0 164653883 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 440532 2024-02-27 13:18:36.777 2024-02-27 13:28:38.107 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant https://example.com/ 4313 440132 440132.440532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4744295256171 0 \N \N f 0 \N 1 156865759 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 436675 2024-02-23 21:35:18.779 2024-02-23 21:45:20.142 Perform might someone represent where not Piece write exist main Mrs mouth. Clearly fish https://example.com/ 9342 \N 436675 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 4.0925705520884 0 \N \N f 0 \N 1 120439525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436814 2024-02-24 01:31:41.27 2024-02-24 01:41:42.422 \N Entire money chair between various plant. Cut year its little point pro https://example.com/ 18904 436760 436760.436814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72571380769414 0 \N \N f 0 \N 0 60399969 0 f f \N \N \N \N 436760 \N 0 0 \N \N f \N 440537 2024-02-27 13:21:35.762 2024-02-27 13:31:37.968 \N Push recen https://example.com/ 5825 440536 440422.440523.440536.440537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9784768414861 0 \N \N f 0 \N 0 159010593 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436790 2024-02-24 00:53:00.961 2024-02-24 01:03:02.367 \N Score player recognize carry. Value wish form build mo https://example.com/ 1713 436759 436759.436790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.14446353708059 0 \N \N f 0 \N 0 174975318 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 436834 2024-02-24 02:03:30.865 2024-02-24 02:13:32.395 \N Perform might someone represent where not main. Get note coup https://example.com/ 928 436720 436720.436834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.22317461529383 0 \N \N f 0 \N 1 136227711 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436811 2024-02-24 01:28:38.651 2024-02-24 01:38:40.236 Direction network employee only e Wind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team https://example.com/ 9843 \N 436811 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.783650977504315 0 \N \N f 0 \N 5 185287021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435046 2024-02-22 14:40:26.944 2024-02-22 14:50:27.929 East fast despite respo Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth what https://example.com/ 18076 \N 435046 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 6.59884243882495 0 \N \N f 0 \N 95 69941278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439878 2024-02-26 20:21:20.169 2024-02-26 20:31:21.914 \N Be right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer indu https://example.com/ 17106 439844 439844.439878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.181213605151846 0 \N \N f 0 \N 2 186308210 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 436804 2024-02-24 01:20:43.877 2024-02-24 01:30:45.6 \N Everyone usually memory amount help best https://example.com/ 19622 436791 436627.436791.436804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3317993730507 0 \N \N f 0 \N 0 159951964 0 f f \N \N \N \N 436627 \N 0 0 \N \N f \N 436844 2024-02-24 02:17:16.242 2024-02-24 02:27:17.633 \N Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big s https://example.com/ 18533 436827 436827.436844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8231901035581 0 \N \N f 0 \N 1 113686254 0 f f \N \N \N \N 436827 \N 0 0 \N \N f \N 436797 2024-02-24 01:03:40.523 2024-02-24 01:13:41.82 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect https://example.com/ 21441 436671 432920.436671.436797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9498073482256 0 \N \N f 0 \N 0 126415818 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 432670 2024-02-20 16:30:46.066 2024-02-20 16:40:47.449 Off class property ok try. Outside War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nTravel according exa https://example.com/ 21248 \N 432670 \N \N \N \N \N \N \N \N health \N ACTIVE \N 4.00312725992183 0 \N \N f 0 \N 4 220437450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441003 2024-02-27 19:56:42.906 2024-02-27 20:06:44.249 \N Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million https://example.com/ 16296 440988 440988.441003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0490965114367 0 \N \N f 0 \N 1 221133006 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 436842 2024-02-24 02:12:58.641 2024-02-24 02:23:00.262 \N Somebody cold facto https://example.com/ 17522 436812 436812.436842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35096121113471 0 \N \N f 0 \N 0 2963770 0 f f \N \N \N \N 436812 \N 0 0 \N \N f \N 436855 2024-02-24 02:33:43.044 2024-02-24 02:43:44.713 \N Instead believe animal then however price par https://example.com/ 8245 436241 436241.436855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6863091873986 0 \N \N f 0 \N 0 71751744 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436815 2024-02-24 01:31:48.374 2024-02-24 01:41:50.547 Very maybe current. So source work lawyer Most describe tell https://example.com/ 15510 \N 436815 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.7719430761382 0 \N \N f 0 \N 0 185146594 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440542 2024-02-27 13:24:33.212 2024-02-27 13:34:35.783 Center stand near long painting left sense. Employee Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern. https://example.com/ 13753 \N 440542 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9826603116376 0 \N \N f 0 \N 0 249934407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440318 2024-02-27 08:06:02.43 2024-02-27 08:16:03.67 \N Speak organization dir https://example.com/ 21627 440132 440132.440318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5696347425714 0 \N \N f 0 \N 0 156015538 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 436828 2024-02-24 01:54:27.448 2024-02-24 02:04:28.352 \N Probably production better financial. Wife break check opportunity. https://example.com/ 19910 436827 436827.436828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.310593623530124 0 \N \N f 0 \N 1 204541292 0 f f \N \N \N \N 436827 \N 0 0 \N \N f \N 436766 2024-02-24 00:11:52.373 2024-02-24 00:21:53.378 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next https://example.com/ 17827 436709 436709.436766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7501381434741 0 \N \N f 0 \N 0 159806806 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 436822 2024-02-24 01:41:31.235 2024-02-24 01:51:32.061 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nMan talk arm player scene reflect. Window p https://example.com/ 12222 436801 436720.436784.436801.436822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7964485311379 0 \N \N f 0 \N 2 28979339 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436782 2024-02-24 00:38:52.615 2024-02-24 00:48:53.643 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next https://example.com/ 2327 436669 436669.436782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4567133757384 0 \N \N f 0 \N 3 207100059 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 440540 2024-02-27 13:23:45.158 2024-02-27 13:33:48.159 \N Most describe tell speech without. Young lot next cell among war https://example.com/ 20730 440527 440527.440540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5709499067278 0 \N \N f 0 \N 1 221350515 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440531 2024-02-27 13:17:16.239 2024-02-27 13:27:17.687 \N Something black staff. Glass hospital force stand ev https://example.com/ 17221 440527 440527.440531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0747835799908 0 \N \N f 0 \N 4 191983587 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 436841 2024-02-24 02:11:52.887 2024-02-24 02:21:54.721 \N Travel watch north career song last. To https://example.com/ 15491 436752 436752.436841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.24266312809993 0 \N \N f 0 \N 0 51987596 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 436853 2024-02-24 02:30:48.068 2024-02-24 02:40:49.227 \N Plant development someone include maybe. Address return side response center. My recently some school saf https://example.com/ 2537 436833 436683.436833.436853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.68514713851024 0 \N \N f 0 \N 6 104526299 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 440398 2024-02-27 10:17:47.803 2024-02-27 10:27:49.167 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybo https://example.com/ 651 439734 439734.440398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8153669177052 0 \N \N f 0 \N 0 41979612 0 f f \N \N \N \N 439734 \N 0 0 \N \N f \N 436836 2024-02-24 02:05:13.733 2024-02-24 02:15:14.914 \N Meet poor south nor d https://example.com/ 19459 436834 436720.436834.436836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4120421097674 0 \N \N f 0 \N 0 154534746 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 440543 2024-02-27 13:24:54.128 2024-02-27 13:34:55.555 Newspaper as city recognize develop. Poor finally capital remember field energ Toward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall. https://example.com/ 15386 \N 440543 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.7410135720245 0 \N \N f 0 \N 0 14913652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440549 2024-02-27 13:30:00.192 2024-02-27 13:40:01.645 \N Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information https://example.com/ 17984 440547 440547.440549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0648941424849 0 \N \N f 0 \N 0 146103280 0 f f \N \N \N \N 440547 \N 0 0 \N \N f \N 440584 2024-02-27 14:17:55.409 2024-02-27 14:27:56.504 \N Blood admit none others arm style. Here establish night parent. Special this l https://example.com/ 21145 440574 440495.440503.440574.440584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0844438891057 0 \N \N f 0 \N 0 34819797 0 f f \N \N \N \N 440495 \N 0 0 \N \N f \N 436812 2024-02-24 01:28:54.357 2024-02-24 01:38:55.81 Scene despite prepare need. Shoulder none until none. Look simply choos Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\n https://example.com/ 8954 \N 436812 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.5658447652421 0 \N \N f 0 \N 2 170981709 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440485 2024-02-27 11:49:55.489 2024-02-27 11:59:56.808 \N Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nCareer six also speak of difference https://example.com/ 9347 440423 440423.440485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6657987979194 0 \N \N f 0 \N 0 79922556 0 f f \N \N \N \N 440423 \N 0 0 \N \N f \N 436848 2024-02-24 02:25:56.41 2024-02-24 02:35:57.738 \N Scientist light the everything find https://example.com/ 17707 435847 435847.436848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7988453395738 0 \N \N f 0 \N 0 132469139 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 436890 2024-02-24 03:51:44.437 2024-02-24 04:01:45.538 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney https://example.com/ 11760 436716 436699.436716.436890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4827970721868 0 \N \N f 0 \N 0 163320823 0 f f \N \N \N \N 436699 \N 0 0 \N \N f \N 440264 2024-02-27 06:01:53.266 2024-02-27 06:11:55.281 \N At audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nShe for deep administration https://example.com/ 4084 440256 440241.440256.440264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1592132640945 0 \N \N f 0 \N 1 70454190 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 443063 2024-02-29 04:08:41.908 2024-02-29 04:18:42.929 \N Find buildi https://example.com/ 12721 443050 442986.443050.443063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.95768644357749 0 \N \N f 0 \N 1 128499537 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 443065 2024-02-29 04:10:05.173 2024-02-29 04:20:06.363 \N Exist near ago home. Conti https://example.com/ 1697 443043 442710.443017.443043.443065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.882792397712322 0 \N \N f 0 \N 0 224785412 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 440529 2024-02-27 13:15:36.35 2024-02-27 13:25:37.59 \N Try hospi https://example.com/ 750 440521 440521.440529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.722026055441 0 \N \N f 0 \N 3 20957879 0 f f \N \N \N \N 440521 \N 0 0 \N \N f \N 440539 2024-02-27 13:22:20.695 2024-02-27 13:32:21.961 \N Money r https://example.com/ 4238 440511 440422.440511.440539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9417468540703 0 \N \N f 0 \N 0 79321894 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436873 2024-02-24 03:13:01.918 2024-02-24 03:23:02.949 \N Light check business try. Know through structure owner. Process create Democrat in wind https://example.com/ 1720 436872 436837.436870.436871.436872.436873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5656993832997 0 \N \N f 0 \N 1 223390657 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 440538 2024-02-27 13:21:48.614 2024-02-27 13:31:49.458 \N Reach matter agency p https://example.com/ 811 440523 440422.440523.440538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57552212629649 0 \N \N f 0 \N 4 147279645 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440541 2024-02-27 13:24:06.546 2024-02-27 13:34:07.476 \N Quite t https://example.com/ 2513 440540 440527.440540.440541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.89722817882024 0 \N \N f 0 \N 0 213142708 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 436865 2024-02-24 02:59:43.388 2024-02-24 03:09:45.455 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\n https://example.com/ 21022 436864 436837.436864.436865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4042360077464 0 \N \N f 0 \N 1 109301694 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436857 2024-02-24 02:38:02.29 2024-02-24 02:48:03.79 \N Chance near song measure ev https://example.com/ 21343 436753 436753.436857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.12875096098647 0 \N \N f 0 \N 3 54127719 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 436854 2024-02-24 02:32:20.546 2024-02-24 02:42:22.428 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Gar https://example.com/ 775 436847 436837.436840.436845.436847.436854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1062725399145 0 \N \N f 0 \N 1 241327445 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436840 2024-02-24 02:11:25.332 2024-02-24 02:21:26.994 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience know https://example.com/ 19103 436837 436837.436840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9187777705348 0 \N \N f 0 \N 4 175928472 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436862 2024-02-24 02:47:14.063 2024-02-24 02:57:15.618 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nTest rock daughter nation moment. Article want structure campaign. Piece profess https://example.com/ 17976 436846 436669.436782.436832.436846.436862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5043919571122 0 \N \N f 0 \N 0 217425900 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 436847 2024-02-24 02:22:12.089 2024-02-24 02:32:14.205 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody https://example.com/ 8289 436845 436837.436840.436845.436847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.541367804142 0 \N \N f 0 \N 2 218325170 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437800 2024-02-25 00:36:52.957 2024-02-25 00:46:54.395 \N Whose top property well serve national https://example.com/ 21578 437775 437775.437800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.087691828369 0 \N \N f 0 \N 4 113590226 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 436856 2024-02-24 02:34:41.234 2024-02-24 02:44:42.415 Site product one fact loss. Site yeah position stud Whose eye what surface. Leader use yet six despite memory front science. Necessary mother de https://example.com/ 8472 \N 436856 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.68597858267152 0 \N \N f 0 \N 1 234851142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440581 2024-02-27 14:15:54.242 2024-02-27 14:25:55.858 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid https://example.com/ 9863 440573 440520.440573.440581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8251439145375 0 \N \N f 0 \N 0 214679549 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 436858 2024-02-24 02:38:17.697 2024-02-24 02:48:18.976 \N These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through pre https://example.com/ 12965 436854 436837.436840.436845.436847.436854.436858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.96425764529738 0 \N \N f 0 \N 0 70050841 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436881 2024-02-24 03:27:01.747 2024-02-24 03:37:04.93 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. https://example.com/ 13547 436869 436869.436881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2681971672932 0 \N \N f 0 \N 0 25913903 0 f f \N \N \N \N 436869 \N 0 0 \N \N f \N 436869 2024-02-24 03:04:33.193 2024-02-24 03:14:35.956 Floor white civil remain. Purpose spend one position develop also. Mainta Expert kind co https://example.com/ 1833 \N 436869 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.3863355607682 0 \N \N f 0 \N 1 187412196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436863 2024-02-24 02:54:04.925 2024-02-24 03:04:06.082 \N Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nSpecific child acc https://example.com/ 15367 436820 436759.436820.436863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.71597146817076 0 \N \N f 0 \N 3 135325505 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 440508 2024-02-27 12:26:01.876 2024-02-27 12:36:03.415 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nFront color executive find hotel. https://example.com/ 19995 440054 439390.439731.440054.440508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2267571061263 0 \N \N f 0 \N 1 237266508 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 437888 2024-02-25 02:50:45.069 2024-02-25 03:00:46.873 Quite teacher acce Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try ex https://example.com/ 708 \N 437888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2068739930493 0 \N \N f 0 \N 1 30527650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440545 2024-02-27 13:27:13.5 2024-02-27 13:37:15.923 \N Again reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nFinish only a https://example.com/ 20326 440530 440422.440496.440519.440528.440530.440545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27038671317545 0 \N \N f 0 \N 1 34604450 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440544 2024-02-27 13:25:41.26 2024-02-27 13:35:43.657 \N Last compare similar enjoy rig https://example.com/ 6041 440508 439390.439731.440054.440508.440544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5777937386775 0 \N \N f 0 \N 0 163309789 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 440489 2024-02-27 12:00:11.575 2024-02-27 12:10:12.836 Southern wear age then chair. Sign young end Republican box quali Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut. https://example.com/ 20450 \N 440489 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4846157041914 0 \N \N f 0 \N 0 23786066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436861 2024-02-24 02:46:21.673 2024-02-24 02:56:22.923 \N Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require https://example.com/ 14939 436823 436823.436861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6015986054061 0 \N \N f 0 \N 3 124300721 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 436889 2024-02-24 03:50:55.378 2024-02-24 04:00:56.449 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind a https://example.com/ 20715 436884 436683.436833.436853.436884.436889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85712147344806 0 \N \N f 0 \N 2 93252613 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436276 2024-02-23 14:53:12.293 2024-02-23 15:03:13.927 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agenc https://example.com/ 1465 435905 435905.436276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5684111844567 0 \N \N f 0 \N 1 211859463 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 436830 2024-02-24 01:57:52.194 2024-02-24 02:07:54.316 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Repub https://example.com/ 16456 436612 436612.436830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8721308164039 0 \N \N f 0 \N 1 214000645 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436910 2024-02-24 04:36:16.69 2024-02-24 04:46:18.376 \N Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democ https://example.com/ 11967 436811 436811.436910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2729666646243 0 \N \N f 0 \N 0 100374540 0 f f \N \N \N \N 436811 \N 0 0 \N \N f \N 436885 2024-02-24 03:37:31.611 2024-02-24 03:47:33.433 \N Successful power down must next system pul https://example.com/ 13100 436560 436560.436885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8576065890502 0 \N \N f 0 \N 1 220731478 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 436643 2024-02-23 20:50:01.017 2024-02-23 21:00:02.86 Answer party get Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box ot https://example.com/ 5806 \N 436643 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.0844764143199 0 \N \N f 0 \N 0 52732701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436903 2024-02-24 04:15:17.843 2024-02-24 04:25:19.3 \N Book ok power church man machine. Where stop customer street response https://example.com/ 19329 436874 436733.436874.436903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8777600137607 0 \N \N f 0 \N 0 68012776 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 436867 2024-02-24 03:02:19.6 2024-02-24 03:12:21.645 \N Physical fast give music base. Gun body every join everything. Avoid peace https://example.com/ 11561 436865 436837.436864.436865.436867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.54153429776246 0 \N \N f 0 \N 0 215337564 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436874 2024-02-24 03:18:54.871 2024-02-24 03:28:56.689 \N Pattern someone notice power fly. Against expect new https://example.com/ 18877 436733 436733.436874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.73953055301 0 \N \N f 0 \N 1 6947622 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 436899 2024-02-24 04:11:30.126 2024-02-24 04:21:32.491 Newspaper wall begin over serious h Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five. https://example.com/ 20585 \N 436899 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 27.8014796437387 0 \N \N f 0 \N 2 227524496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436886 2024-02-24 03:47:19.075 2024-02-24 03:57:19.643 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably https://example.com/ 21421 436556 436556.436886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72577014680346 0 \N \N f 0 \N 0 195634275 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 436870 2024-02-24 03:04:36.719 2024-02-24 03:14:37.982 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small https://example.com/ 21402 436837 436837.436870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3255996529975 0 \N \N f 0 \N 4 139498980 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436878 2024-02-24 03:22:10.291 2024-02-24 03:32:11.614 \N Parent always at part must al https://example.com/ 19335 429437 428556.429035.429053.429437.436878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3131361945759 0 \N \N f 0 \N 0 59720281 0 f f \N \N \N \N 428556 \N 0 0 \N \N f \N 436905 2024-02-24 04:16:12.951 2024-02-24 04:26:14.238 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly https://example.com/ 15732 436835 436733.436835.436905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3271492062859 0 \N \N f 0 \N 1 216842726 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 436912 2024-02-24 04:38:37.652 2024-02-24 04:48:38.853 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nStar bill toward also almost. Reas https://example.com/ 880 436795 436733.436795.436912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.18715479144544 0 \N \N f 0 \N 2 124190517 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 443223 2024-02-29 09:40:16.677 2024-02-29 09:50:18.342 \N Resource morning long fast civil man check los https://example.com/ 19821 443197 443197.443223 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.19399150811736 0 \N \N f 0 \N 2 224108948 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 436892 2024-02-24 03:59:42.593 2024-02-24 04:09:44.382 Morning garden personal tax reduce less. Responsibility quite rise Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor. https://example.com/ 15075 \N 436892 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 26.0096115633213 0 \N \N f 0 \N 1 63647281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440709 2024-02-27 15:54:53.133 2024-02-27 16:04:54.214 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mentio https://example.com/ 10409 440301 440301.440709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95323186268431 0 \N \N f 0 \N 2 118398904 0 f f \N \N \N \N 440301 \N 0 0 \N \N f \N 440690 2024-02-27 15:39:36.593 2024-02-27 15:49:37.141 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Com https://example.com/ 825 440527 440527.440690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4189123068614 0 \N \N f 0 \N 0 34661684 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 436978 2024-02-24 08:22:42.312 2024-02-24 08:32:43.911 \N Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes https://example.com/ 13046 436977 436977.436978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8573561408939 0 \N \N f 0 \N 0 119087186 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 436893 2024-02-24 04:01:05.609 2024-02-24 04:11:07.207 \N Name everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nWater wrong somebody book nor member. Also build off mo https://example.com/ 20624 436889 436683.436833.436853.436884.436889.436893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87536656235357 0 \N \N f 0 \N 1 174165386 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436827 2024-02-24 01:49:54.234 2024-02-24 01:59:56.775 First right set. Dinner third difficult next r Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch https://example.com/ 18932 \N 436827 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 24.6807206003245 0 \N \N f 0 \N 4 245868770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439731 2024-02-26 18:30:10.156 2024-02-26 18:40:11.808 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind https://example.com/ 11378 439390 439390.439731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2854689749406 0 \N \N f 0 \N 4 161756614 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 436896 2024-02-24 04:06:31.773 2024-02-24 04:16:33.833 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Ha https://example.com/ 722 436893 436683.436833.436853.436884.436889.436893.436896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9127213601755 0 \N \N f 0 \N 0 140146722 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436898 2024-02-24 04:08:19.528 2024-02-24 04:18:20.541 \N Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national prac https://example.com/ 16154 436828 436827.436828.436898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1353581563133 0 \N \N f 0 \N 0 248513650 0 f f \N \N \N \N 436827 \N 0 0 \N \N f \N 436902 2024-02-24 04:13:58.79 2024-02-24 04:24:00.218 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nCouple writer life commercial https://example.com/ 16532 436861 436823.436861.436902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.74122118588487 0 \N \N f 0 \N 2 102764496 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 440546 2024-02-27 13:28:23.339 2024-02-27 13:38:25.935 \N Could computer meet. Board res https://example.com/ 12965 440545 440422.440496.440519.440528.440530.440545.440546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8057064140917 0 \N \N f 0 \N 0 113596904 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436716 2024-02-23 22:59:43.049 2024-02-23 23:09:44.924 \N Life foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine https://example.com/ 10311 436699 436699.436716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.32790154830772 0 \N \N f 0 \N 1 98456132 0 f f \N \N \N \N 436699 \N 0 0 \N \N f \N 436880 2024-02-24 03:25:08.932 2024-02-24 03:35:10.763 \N List professional event meeting. Drop Republican huge another full radio read. Onto message understan https://example.com/ 4521 436830 436612.436830.436880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1773753443099 0 \N \N f 0 \N 0 141833531 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436915 2024-02-24 04:54:29.82 2024-02-24 05:04:31.414 \N Site coach strong dark whi https://example.com/ 805 436909 436909.436915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47054491964148 0 \N \N f 0 \N 0 78270721 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 436743 2024-02-23 23:46:19.043 2024-02-23 23:56:20.438 \N With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official https://example.com/ 716 436725 436612.436725.436743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52126206286631 0 \N \N f 0 \N 1 14592673 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 436918 2024-02-24 05:05:14.468 2024-02-24 05:15:15.904 \N Method same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner out https://example.com/ 21269 436241 436241.436918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5501966733639 0 \N \N f 0 \N 0 144358673 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436725 2024-02-23 23:23:44.19 2024-02-23 23:33:45.677 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could https://example.com/ 21159 436612 436612.436725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.295506999966 0 \N \N f 0 \N 2 91199999 0 f f \N \N \N \N 436612 \N 0 0 \N \N f \N 440650 2024-02-27 15:00:25.257 2024-02-27 15:10:26.678 \N Deal probably car rememb https://example.com/ 19537 440603 440527.440603.440650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06762341777961 0 \N \N f 0 \N 0 190434445 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 436694 2024-02-23 21:57:42.295 2024-02-23 22:07:43.478 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\n https://example.com/ 4958 436669 436669.436694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32955474267695 0 \N \N f 0 \N 2 108258893 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 440558 2024-02-27 13:49:37.54 2024-02-27 13:59:39.957 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act differe https://example.com/ 13767 439577 439130.439577.440558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03549509030924 0 \N \N f 0 \N 0 205606066 0 f f \N \N \N \N 439130 \N 0 0 \N \N f \N 436923 2024-02-24 05:15:38.391 2024-02-24 05:25:39.194 \N Station nothing decide Mr https://example.com/ 1092 436720 436720.436923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8042331958103 0 \N \N f 0 \N 1 93497986 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437093 2024-02-24 12:31:38.762 2024-02-24 12:41:40.498 \N Majority certainly song between country rise every lose. Head education w https://example.com/ 15200 437084 437084.437093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.42520399887884 0 \N \N f 0 \N 0 173783424 0 f f \N \N \N \N 437084 \N 0 0 \N \N f \N 440547 2024-02-27 13:29:27.657 2024-02-27 13:39:29.328 Small career baby democratic nation tra Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we. https://example.com/ 19096 \N 440547 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 29.4510499570093 0 \N \N f 0 \N 1 6304668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440481 2024-02-27 11:47:56.724 2024-02-27 11:57:59.011 Operation against song book rise hard. Attorney issue game d Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake. https://example.com/ 19332 \N 440481 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 12.5042213894671 0 \N \N f 0 \N 2 185918210 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440347 2024-02-27 09:14:07.104 2024-02-27 09:24:08.286 \N Take discuss nature then break spring student. Five world a https://example.com/ 20090 432445 432251.432445.440347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77652264415376 0 \N \N f 0 \N 0 122598211 0 f f \N \N \N \N 432251 \N 0 0 \N \N f \N 432251 2024-02-20 08:42:43.997 2024-02-20 08:52:45.665 Southern wear age then chair. They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss https://example.com/ 10094 \N 432251 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 16.8898340602367 0 \N \N f 0 \N 4 107853471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436914 2024-02-24 04:52:37.958 2024-02-24 05:02:39.878 \N Power billion method wide. Person play play thousand seem crime crime https://example.com/ 11942 436811 436811.436914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9152582426542 0 \N \N f 0 \N 0 223066868 0 f f \N \N \N \N 436811 \N 0 0 \N \N f \N 436911 2024-02-24 04:37:04.07 2024-02-24 04:47:05.563 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room https://example.com/ 20452 436762 436733.436762.436911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5970107743217 0 \N \N f 0 \N 0 7785440 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 436872 2024-02-24 03:10:43.668 2024-02-24 03:20:45.482 \N Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nThreat successful https://example.com/ 16267 436871 436837.436870.436871.436872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3840589319011 0 \N \N f 0 \N 2 44603844 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437045 2024-02-24 11:00:14.56 2024-02-24 11:10:16.372 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nBoth tell huge fine yet fal https://example.com/ 20912 437044 437044.437045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9058334412779 0 \N \N f 0 \N 0 71900361 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440358 2024-02-27 09:28:57.948 2024-02-27 09:38:59.103 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly https://example.com/ 10586 440350 440350.440358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.90894336619638 0 \N \N f 0 \N 0 213636063 0 f f \N \N \N \N 440350 \N 0 0 \N \N f \N 436922 2024-02-24 05:14:38.995 2024-02-24 05:24:41.172 \N B https://example.com/ 4128 432899 432899.436922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5941533638397 0 \N \N f 0 \N 0 101506523 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 436779 2024-02-24 00:26:46.293 2024-02-24 00:36:47.757 Night on mention rather nation soldier everything. Herself tell begin. Up ima Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nDark address be federal study. Nice red later sea https://example.com/ 2773 \N 436779 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0174669411955 0 \N \N f 0 \N 1 8065880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437109 2024-02-24 12:40:24.391 2024-02-24 13:03:53.966 \N Window here second. https://example.com/ 4391 437103 436983.437006.437038.437079.437103.437109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3315144828711 0 \N \N f 0 \N 0 55731912 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 436919 2024-02-24 05:10:38.047 2024-02-24 05:20:40.261 \N West tend alone prepare build https://example.com/ 15521 436894 436894.436919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9954181323243 0 \N \N f 0 \N 0 173304538 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 436908 2024-02-24 04:28:08.986 2024-02-24 04:38:09.944 \N Weight statement best almost sometimes and fac https://example.com/ 1985 436241 436241.436908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74208952159616 0 \N \N f 0 \N 0 215498012 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440338 2024-02-27 09:01:27.751 2024-02-27 09:11:29.877 Method same car buy side. Pr Possible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public fo https://example.com/ 16154 \N 440338 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 20.3854625489141 0 \N \N f 0 \N 0 120586426 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436929 2024-02-24 05:43:54.776 2024-02-24 05:53:55.64 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white https://example.com/ 21369 436904 436753.436904.436929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3847236505806 0 \N \N f 0 \N 0 224904000 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 435911 2024-02-23 07:21:39.136 2024-02-23 07:31:40.773 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cov https://example.com/ 620 435869 435847.435860.435869.435911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8983877507159 0 \N \N f 0 \N 0 12583662 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 441681 2024-02-28 10:54:15.828 2024-02-28 11:04:17.154 \N Never new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed exper https://example.com/ 663 441680 440587.440629.441187.441579.441668.441674.441678.441679.441680.441681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3051891043036 0 \N \N f 0 \N 3 54427517 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 436932 2024-02-24 05:52:52.115 2024-02-24 06:02:53.787 \N Few system pick dow https://example.com/ 12516 436763 436683.436763.436932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36859230330731 0 \N \N f 0 \N 1 28662758 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436904 2024-02-24 04:15:19.368 2024-02-24 04:25:20.31 \N Deep some relate building buy then. Let https://example.com/ 2963 436753 436753.436904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3954125918328 0 \N \N f 0 \N 1 246966959 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 440552 2024-02-27 13:42:51.6 2024-02-27 13:52:53.811 Way all line after. Only t Work suddenly pick. Interestin https://example.com/ 15536 \N 440552 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 16.9090974846956 0 \N \N f 0 \N 1 248211651 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436964 2024-02-24 07:44:06.935 2024-02-24 07:54:08.386 \N Reality front small we indeed per subject. Analysis indeed https://example.com/ 20681 436837 436837.436964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55563514856235 0 \N \N f 0 \N 1 240897783 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 440557 2024-02-27 13:47:49.389 2024-02-27 13:57:50.889 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order Amer https://example.com/ 5017 437749 437667.437749.440557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1918713411664 0 \N \N f 0 \N 0 74479412 0 f f \N \N \N \N 437667 \N 0 0 \N \N f \N 440939 2024-02-27 19:00:43.897 2024-02-27 19:10:45.017 \N Can operation lose dinner t https://example.com/ 15474 440603 440527.440603.440939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0169971008658 0 \N \N f 0 \N 2 1656076 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 436965 2024-02-24 07:45:51.466 2024-02-24 07:55:53.519 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see p https://example.com/ 4345 436499 436499.436965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1809042122232 0 \N \N f 0 \N 0 61579743 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 436953 2024-02-24 07:10:18.436 2024-02-24 07:20:20.1 \N Explain order help within. Effort get edge https://example.com/ 7903 436923 436720.436923.436953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8830760744348 0 \N \N f 0 \N 0 160632011 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436947 2024-02-24 06:43:14.532 2024-02-24 06:53:16.512 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though e https://example.com/ 19813 436936 436934.436936.436947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57240568097825 0 \N \N f 0 \N 0 186762656 0 f f \N \N \N \N 436934 \N 0 0 \N \N f \N 436336 2024-02-23 15:53:01.822 2024-02-23 16:03:03.109 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment cl https://example.com/ 1712 436241 436241.436336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.664877236876 0 \N \N f 0 \N 0 161901043 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 440551 2024-02-27 13:42:01.916 2024-02-27 13:52:03.713 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of tw https://example.com/ 10342 440422 440422.440551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10290327810527 0 \N \N f 0 \N 1 134739997 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436443 2024-02-23 17:17:24.46 2024-02-23 17:27:25.564 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nFrom democratic trial American https://example.com/ 1439 436241 436241.436443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2771724122285 0 \N \N f 0 \N 1 239864365 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436954 2024-02-24 07:11:26.315 2024-02-24 07:21:28.003 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nWear role agency. Enter back require mission piece important especi https://example.com/ 685 436859 436669.436859.436954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4248206627847 0 \N \N f 0 \N 0 150603245 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 436940 2024-02-24 06:07:01.404 2024-02-24 06:17:02.758 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nEat culture event thus any event watch hospital. Degree improve t https://example.com/ 20430 436895 436895.436940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6689328378729 0 \N \N f 0 \N 0 149102067 0 f f \N \N \N \N 436895 \N 0 0 \N \N f \N 436944 2024-02-24 06:34:41.401 2024-02-24 06:44:42.491 Their bed hear popular fine guy able. President anything majority pict West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from. https://example.com/ 21451 \N 436944 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 16.0902068162019 0 \N \N f 0 \N 0 209905419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436928 2024-02-24 05:43:05.013 2024-02-24 05:53:06.948 \N Both tell huge fine yet fall https://example.com/ 9450 436857 436753.436857.436928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1014056891612 0 \N \N f 0 \N 2 65307788 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 436970 2024-02-24 08:01:37.861 2024-02-24 08:12:03.033 Herself will Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nAffect body wonder do still debate affect work. Bed https://example.com/ 1124 \N 436970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00193644477332 0 \N \N f 0 \N 2 82498882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436956 2024-02-24 07:22:56.361 2024-02-26 01:22:56.941 \N Pass glass feeling https://example.com/ 9341 436820 436759.436820.436956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4825124226815 0 \N \N f 0 \N 2 97268747 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 436368 2024-02-23 16:11:39.532 2024-02-23 16:21:40.705 \N Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window t https://example.com/ 12334 436241 436241.436368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.206927373212 0 \N \N f 0 \N 1 11141503 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436949 2024-02-24 07:05:22.026 2024-02-24 07:15:24.091 Board Mr bar whit Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing. https://example.com/ 2329 \N 436949 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 11.3294829934523 0 \N \N f 0 \N 0 76551977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436973 2024-02-24 08:08:04.961 2024-02-24 08:18:05.941 \N Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything ide https://example.com/ 14959 436753 436753.436973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1691242488797 0 \N \N f 0 \N 1 12811987 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 436860 2024-02-24 02:45:21.668 2024-02-24 02:55:23.155 \N Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nWould role them war ten stop bad. Which mu https://example.com/ 19976 436851 436669.436851.436860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25693090171887 0 \N \N f 0 \N 3 234578395 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 439883 2024-02-26 20:22:35.894 2024-02-26 20:32:38.329 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say g https://example.com/ 10270 439876 439806.439876.439883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.742722867137 0 \N \N f 0 \N 1 6825356 0 f f \N \N \N \N 439806 \N 0 0 \N \N f \N 436763 2024-02-24 00:03:03.925 2024-02-24 00:13:05.018 \N Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fis https://example.com/ 12819 436683 436683.436763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.85098879043182 0 \N \N f 0 \N 3 234853361 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436943 2024-02-24 06:22:48.805 2024-02-24 06:32:49.928 \N Position see least suddenly just order specifi https://example.com/ 11678 436823 436823.436943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.39030005456726 0 \N \N f 0 \N 1 72611524 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 435617 2024-02-22 22:37:55.666 2024-02-22 22:47:57.206 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker su https://example.com/ 16834 434603 434278.434558.434603.435617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9818985214007 0 \N \N f 0 \N 3 128028445 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 437000 2024-02-24 09:14:24.046 2024-02-24 09:24:25.711 \N Them its apply task the off ability. Song determine entire answer plan four s https://example.com/ 21254 435617 434278.434558.434603.435617.437000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3305807223816 0 \N \N f 0 \N 0 113879233 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 436991 2024-02-24 09:03:56.778 2024-02-24 09:13:58.528 \N Voice sign college https://example.com/ 5003 436990 436983.436988.436989.436990.436991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8093144939302 0 \N \N f 0 \N 2 217368942 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 439513 2024-02-26 15:48:56.506 2024-02-26 15:58:57.305 Marriage interview green school study foot home like. Situation Big time rise yourself all one peace set. Detail else toward open. Under c https://example.com/ 18314 \N 439513 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 4.84675540313752 0 \N \N f 0 \N 1 77610044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434065 2024-02-21 17:43:50.403 2024-02-21 17:53:52.254 \N Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. https://example.com/ 14785 434059 434027.434059.434065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8386028608947 0 \N \N f 0 \N 0 83169626 0 f f \N \N \N \N 434027 \N 0 0 \N \N f \N 436566 2024-02-23 19:00:10.907 2024-02-23 19:10:12.305 Many soldier role. Far buy able idea president try televis Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million. https://example.com/ 14651 \N 436566 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 4.17288298419194 0 \N \N f 0 \N 10 110700706 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440572 2024-02-27 14:07:48.124 2024-02-27 14:17:50.037 Sell hundred beautiful up claim. Clear benefit material send. G Strong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often. https://example.com/ 730 \N 440572 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.969872804242 0 \N \N f 0 \N 0 205613310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440568 2024-02-27 14:01:12.735 2024-02-27 14:11:13.953 \N Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear https://example.com/ 14950 440422 440422.440568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.235406505547857 0 \N \N f 0 \N 0 240216210 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 439397 2024-02-26 14:44:46.717 2024-02-26 14:54:48.667 \N Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nLetter bank officer fast use a. She cha https://example.com/ 21389 439315 439315.439397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1252097107865 0 \N \N f 0 \N 1 82980560 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 436938 2024-02-24 05:59:04.841 2024-02-24 06:09:06.071 \N For share something effec https://example.com/ 2101 436907 436907.436938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9382643753165 0 \N \N f 0 \N 0 211250901 0 f f \N \N \N \N 436907 \N 0 0 \N \N f \N 435630 2024-02-22 22:52:07.48 2024-02-22 23:02:09.205 \N In grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nTest rock daughter nation moment. Article want structure https://example.com/ 9171 435579 435579.435630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8437004015342 0 \N \N f 0 \N 0 70150766 0 f f \N \N \N \N 435579 \N 0 0 \N \N f \N 436907 2024-02-24 04:20:20.935 2024-02-24 04:30:22.416 Always friend pr Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run atta https://example.com/ 739 \N 436907 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.9831541712111 0 \N \N f 0 \N 1 55713280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436945 2024-02-24 06:34:58.923 2024-02-24 06:45:00.217 \N Lead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and a https://example.com/ 16706 436860 436669.436851.436860.436945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1753615581685 0 \N \N f 0 \N 2 141292747 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 439422 2024-02-26 15:01:49.995 2024-02-26 15:11:50.823 Property this American law baby doctor. Everybody reduce institution inside educ Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point https://example.com/ 11240 \N 439422 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 13.4031087078752 0 \N \N f 0 \N 4 234824671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436916 2024-02-24 04:59:36.502 2024-02-24 05:09:37.9 \N Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion ei https://example.com/ 960 436720 436720.436916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14461204862049 0 \N \N f 0 \N 0 26719220 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436937 2024-02-24 05:59:03.431 2024-02-24 06:09:04.753 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure https://example.com/ 19777 436934 436934.436937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33599303463928 0 \N \N f 0 \N 1 226755837 0 f f \N \N \N \N 436934 \N 0 0 \N \N f \N 440574 2024-02-27 14:09:16.349 2024-02-27 14:19:18.012 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nGet https://example.com/ 9695 440503 440495.440503.440574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55734060307202 0 \N \N f 0 \N 1 4198644 0 f f \N \N \N \N 440495 \N 0 0 \N \N f \N 440576 2024-02-27 14:12:19.602 2024-02-27 14:22:20.74 \N Much wait girl https://example.com/ 2285 440525 440422.440459.440525.440576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2187423859145 0 \N \N f 0 \N 1 145079350 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 436823 2024-02-24 01:44:07.488 2024-02-24 01:54:09.284 Measure would expert nation Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nIdentify health spend could. Have weight c https://example.com/ 18873 \N 436823 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 29.2343729345493 0 \N \N f 0 \N 17 153385490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440563 2024-02-27 13:58:31.709 2024-02-27 14:08:34.307 Garden morning compare federal. Already west parent art work hard stude Series wait hotel north action b https://example.com/ 20157 \N 440563 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.80874898382675 0 \N \N f 0 \N 1 93024694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440567 2024-02-27 14:00:20.692 2024-02-27 14:10:21.793 Least start time do. Occur between avoid political Though or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only. https://example.com/ 19034 \N 440567 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 17.4038939445391 0 \N \N f 0 \N 0 193436791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436936 2024-02-24 05:58:39.956 2024-02-24 06:08:41.432 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nThey wide job. Hi https://example.com/ 21391 436934 436934.436936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5938667987726 0 \N \N f 0 \N 1 96223483 0 f f \N \N \N \N 436934 \N 0 0 \N \N f \N 440899 2024-02-27 18:29:02.486 2024-02-27 18:39:03.712 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nResponsibility record term buy. Or hear long. Small wide truth bit https://example.com/ 19535 440898 440898.440899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42096087755611 0 \N \N f 0 \N 2 144944762 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 440910 2024-02-27 18:36:21.814 2024-02-27 18:46:23.506 \N Scene relate paper hospital. Star cultural stay inside r https://example.com/ 8498 440859 440725.440771.440859.440910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0792459166942 0 \N \N f 0 \N 0 110483959 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440565 2024-02-27 14:00:05.087 2024-02-27 14:00:11.068 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he https://example.com/ 21424 440564 440564.440565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8378285168058 0 \N \N f 0 \N 0 18164921 0 f f \N \N \N \N 440564 \N 0 0 \N \N f \N 439406 2024-02-26 14:48:00.225 2024-02-26 14:58:01.615 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set https://example.com/ 993 439405 439405.439406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.262683594398219 0 \N \N f 0 \N 0 194360688 0 f f \N \N \N \N 439405 \N 0 0 \N \N f \N 437938 2024-02-25 04:05:24.93 2024-02-25 04:15:26.153 \N Hour land give ground child range. Former receive election. Mind day scene challenge. T https://example.com/ 21562 437880 437723.437880.437938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.70357061487708 0 \N \N f 0 \N 1 16251514 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440860 2024-02-27 17:44:35.204 2024-02-27 17:54:36.725 Quickly imagine he learn effort risk wish. Respond include Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive. https://example.com/ 6384 \N 440860 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.1290301408979 0 \N \N f 0 \N 0 176148196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436955 2024-02-24 07:21:26.36 2024-02-24 07:31:28.124 \N Condition door drive write. Firm simple test. Why mind t https://example.com/ 4083 436759 436759.436955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4496777083241 0 \N \N f 0 \N 0 108400897 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 437013 2024-02-24 09:31:08.397 2024-02-24 09:41:09.814 \N Though or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nR https://example.com/ 20023 436930 436823.436829.436900.436930.437013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.288493238802943 0 \N \N f 0 \N 3 59336123 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 436992 2024-02-24 09:05:07.367 2024-02-24 09:15:08.798 \N Beyond song throw blood hard. Show already get best. Science https://example.com/ 16848 434585 434278.434421.434531.434585.436992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25459819124449 0 \N \N f 0 \N 0 197265076 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 436966 2024-02-24 07:53:03.485 2024-02-24 08:03:05.537 \N Art https://example.com/ 5427 436894 436894.436966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83803120147898 0 \N \N f 0 \N 0 247838684 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 437009 2024-02-24 09:25:00.674 2024-02-24 09:35:01.863 \N Name put just democratic follo https://example.com/ 16440 437003 436996.437003.437009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.844519806366 0 \N \N f 0 \N 0 12675825 0 f f \N \N \N \N 436996 \N 0 0 \N \N f \N 440941 2024-02-27 19:02:05.6 2024-02-27 19:12:06.974 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me. https://example.com/ 21344 440792 440792.440941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19743243431344 0 \N \N f 0 \N 1 27606961 0 f f \N \N \N \N 440792 \N 0 0 \N \N f \N 436961 2024-02-24 07:41:06.897 2024-02-24 07:51:08.696 Health recently away many w Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game https://example.com/ 21389 \N 436961 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 28.4338027518086 0 \N \N f 0 \N 1 14865438 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436925 2024-02-24 05:22:17.696 2024-02-24 05:32:18.944 \N Parent control wide song section few. Reg https://example.com/ 19890 436537 436028.436449.436455.436537.436925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86153307363959 0 \N \N f 0 \N 0 84499952 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436957 2024-02-24 07:23:38.969 2024-02-24 07:33:40.047 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer n https://example.com/ 3709 436945 436669.436851.436860.436945.436957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.15418277027991 0 \N \N f 0 \N 1 77206714 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 440585 2024-02-27 14:18:31.761 2024-02-27 14:28:33.767 Their election city process. Agency early its s Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern. https://example.com/ 642 \N 440585 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 22.3936273114903 0 \N \N f 0 \N 0 186122801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440423 2024-02-27 11:00:04.695 2024-02-27 11:10:06.665 Many then growth. Law become return event parent I boy. Increase firm proper \N https://example.com/ 18539 \N 440423 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.0866433613364 0 \N \N f 0 \N 6 17864695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436951 2024-02-24 07:06:59.395 2024-02-24 07:17:00.958 \N Again reveal time hot kind https://example.com/ 21064 436523 436523.436951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.01473135647295 0 \N \N f 0 \N 0 25270939 0 f f \N \N \N \N 436523 \N 0 0 \N \N f \N 436544 2024-02-23 18:33:48.179 2024-02-23 18:43:49.683 \N Them bag because parent see. Young enough opportunity necessary meet a https://example.com/ 16948 436493 436493.436544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6539515028907 0 \N \N f 0 \N 0 81395338 0 f f \N \N \N \N 436493 \N 0 0 \N \N f \N 436866 2024-02-24 03:00:52.196 2024-02-24 03:10:53.668 Benefit car actually you o Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept a https://example.com/ 19812 \N 436866 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 26.1182976238894 0 \N \N f 0 \N 0 16497139 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436948 2024-02-24 06:45:39.69 2024-02-24 06:55:41.526 \N Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north acc https://example.com/ 695 436894 436894.436948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1040328723036 0 \N \N f 0 \N 0 161200389 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 440598 2024-02-27 14:26:35.682 2024-02-27 14:36:37.15 \N Action prevent Republican. Now third law https://example.com/ 1881 440309 440309.440598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9373250998188 0 \N \N f 0 \N 0 241018486 0 f f \N \N \N \N 440309 \N 0 0 \N \N f \N 440577 2024-02-27 14:12:22.554 2024-02-27 14:22:23.944 \N Black leg through occur https://example.com/ 1429 440422 440422.440577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.31599266053301 0 \N \N f 0 \N 0 56807801 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441264 2024-02-28 00:06:49.356 2024-02-28 00:16:50.851 \N Right view contain easy someone. People away page experience. Which like report summer prevent mothe https://example.com/ 20102 441192 440985.441050.441192.441264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.963307644945672 0 \N \N f 0 \N 1 81805655 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 440582 2024-02-27 14:16:51.099 2024-02-27 14:26:52.352 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate https://example.com/ 10979 440561 440561.440582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1486658203998 0 \N \N f 0 \N 2 176034710 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 437068 2024-02-24 12:02:02.846 2024-02-24 12:12:03.402 \N Theory te https://example.com/ 3392 436964 436837.436964.437068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64190260940124 0 \N \N f 0 \N 0 184365885 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436859 2024-02-24 02:41:31.222 2024-02-24 02:51:32.808 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial https://example.com/ 19992 436669 436669.436859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49147616336035 0 \N \N f 0 \N 1 171892529 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 440945 2024-02-27 19:04:52.563 2024-02-27 19:14:53.817 \N Later piece skin https://example.com/ 9920 440888 440888.440945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0650393509181 0 \N \N f 0 \N 0 176862874 0 f f \N \N \N \N 440888 \N 0 0 \N \N f \N 440680 2024-02-27 15:31:17.979 2024-02-27 15:41:19.613 \N Decision certain voice where collection thus write. Friend mind ever chal https://example.com/ 10608 440629 440587.440629.440680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7930300195783 0 \N \N f 0 \N 0 33029560 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441458 2024-02-28 04:41:54.102 2024-02-28 04:51:55.53 \N Affect body https://example.com/ 929 441445 441333.441445.441458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7379389831106 0 \N \N f 0 \N 0 206192203 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 436684 2024-02-23 21:46:34.841 2024-02-23 21:56:36.197 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometim https://example.com/ 12346 436556 436556.436684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.19085756651882 0 \N \N f 0 \N 4 213371182 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 436986 2024-02-24 08:57:06.236 2024-02-24 09:07:07.729 \N Someone network true easy store. Take improve drug account movie. Girl nearly scen https://example.com/ 9200 436733 436733.436986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5282615617753 0 \N \N f 0 \N 1 18412541 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 437015 2024-02-24 09:32:20.787 2024-02-24 09:42:22.037 \N Main ball collection eye. Whatever https://example.com/ 14857 436281 436241.436281.437015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4571495652986 0 \N \N f 0 \N 0 80854341 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436454 2024-02-23 17:23:01.366 2024-02-23 17:33:02.692 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect t https://example.com/ 2342 436308 436241.436243.436308.436454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90281218023095 0 \N \N f 0 \N 0 55173009 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436851 2024-02-24 02:27:27.33 2024-02-24 02:37:28.158 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair https://example.com/ 1120 436669 436669.436851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.116653352984 0 \N \N f 0 \N 4 192403340 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 436672 2024-02-23 21:32:22.804 2024-02-23 21:42:23.561 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our h https://example.com/ 20551 436566 436566.436672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5195501132805 0 \N \N f 0 \N 0 3619373 0 f f \N \N \N \N 436566 \N 0 0 \N \N f \N 440573 2024-02-27 14:08:52.864 2024-02-27 14:18:54.084 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nRisk clearly listen table https://example.com/ 4064 440520 440520.440573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.14308254678986 0 \N \N f 0 \N 1 104215583 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 436976 2024-02-24 08:17:10.822 2024-02-24 08:27:12.268 Month explain matter south. Thus car occur bad. Green various method rule up fi Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he. https://example.com/ 21422 \N 436976 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 3.38341959950892 0 \N \N f 0 \N 0 20933422 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436963 2024-02-24 07:41:57.472 2024-02-24 07:51:59.59 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake o https://example.com/ 671 435926 435926.436963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0181388877689 0 \N \N f 0 \N 0 177116920 0 f f \N \N \N \N 435926 \N 0 0 \N \N f \N 436971 2024-02-24 08:01:50.198 2024-02-24 08:11:51.397 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Sub https://example.com/ 16336 436885 436560.436885.436971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.29446154829564 0 \N \N f 0 \N 0 179379419 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 436995 2024-02-24 09:08:49.164 2024-02-24 09:18:50.313 Detail me send tax knowledge. Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene. https://example.com/ 2514 \N 436995 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.1631765859804 0 \N \N f 0 \N 0 175006839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436931 2024-02-24 05:49:58.208 2024-02-24 05:59:59.42 \N Book ok power church man machine. Where stop customer street response. Game station old. Leader https://example.com/ 11527 436720 436720.436931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0119740021741 0 \N \N f 0 \N 3 169359350 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436979 2024-02-24 08:27:12.26 2024-02-24 08:37:13.747 \N Remember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. https://example.com/ 14225 436720 436720.436979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0672469925443 0 \N \N f 0 \N 0 247597459 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436982 2024-02-24 08:30:10.145 2024-02-24 08:40:11.294 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Opt https://example.com/ 10060 436909 436909.436982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5826090847881 0 \N \N f 0 \N 0 100859611 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 436998 2024-02-24 09:10:29.551 2024-02-24 09:20:30.515 \N G https://example.com/ 746 436449 436028.436449.436998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3096783629011 0 \N \N f 0 \N 0 56050512 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436325 2024-02-23 15:40:34.353 2024-02-23 15:50:36.223 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth the https://example.com/ 1245 436241 436241.436325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3878492591291 0 \N \N f 0 \N 1 168503123 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 436849 2024-02-24 02:27:07.852 2024-02-24 02:37:09.14 \N News half employee read cause story amount. My https://example.com/ 16912 436709 436709.436849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7806611554937 0 \N \N f 0 \N 2 237557133 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 440579 2024-02-27 14:14:24.712 2024-02-27 14:24:26.177 \N Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particul https://example.com/ 1244 440571 440569.440571.440579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.53938730406251 0 \N \N f 0 \N 0 249881717 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 437010 2024-02-24 09:27:02.348 2024-02-24 09:37:03.727 \N Sing eight human sit. Tv a https://example.com/ 17455 436986 436733.436986.437010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3494437432183 0 \N \N f 0 \N 0 63719203 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 436972 2024-02-24 08:04:49.72 2024-02-24 08:14:51.515 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step https://example.com/ 18930 436958 436720.436931.436958.436972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1668718462002 0 \N \N f 0 \N 1 161584451 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437012 2024-02-24 09:29:42.049 2024-02-24 09:39:44.349 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. B https://example.com/ 17693 436943 436823.436943.437012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.81442209398 0 \N \N f 0 \N 0 213239182 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 437014 2024-02-24 09:31:30.673 2024-02-24 09:41:31.993 \N Everybody laugh key left specific wonder. Per lo https://example.com/ 20811 436924 436823.436924.437014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9187198325017 0 \N \N f 0 \N 2 93100013 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 440588 2024-02-27 14:20:07.786 2024-02-27 14:30:10.767 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nTheory teach dream home past. Population lose establish understand. Study night nothing https://example.com/ 10291 440475 440475.440588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30705086590353 0 \N \N f 0 \N 1 61575690 0 f f \N \N \N \N 440475 \N 0 0 \N \N f \N 436988 2024-02-24 09:02:42.056 2024-02-24 09:12:43.496 \N Step physical estab https://example.com/ 12139 436983 436983.436988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27803737651634 0 \N \N f 0 \N 5 234951692 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437023 2024-02-24 09:46:50.391 2024-02-24 09:56:51.754 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of https://example.com/ 10519 436977 436977.437023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.55764215235974 0 \N \N f 0 \N 4 173499398 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 440593 2024-02-27 14:23:15.188 2024-02-27 14:33:16.634 \N Probably production better financial. Wife break check opportunity. Sound light gener https://example.com/ 889 440527 440527.440593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3665497841249 0 \N \N f 0 \N 1 229211262 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440594 2024-02-27 14:24:33.77 2024-02-27 14:34:34.852 \N Rea https://example.com/ 2652 440593 440527.440593.440594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2680844489304 0 \N \N f 0 \N 0 111849869 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440595 2024-02-27 14:24:48.887 2024-02-27 14:34:50.167 \N Off class https://example.com/ 11458 440583 440527.440583.440595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2567337869559 0 \N \N f 0 \N 0 61166556 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 441197 2024-02-27 22:52:30.021 2024-02-27 23:02:31.08 \N Every important man a free knowledge. Firm return act https://example.com/ 9346 441174 440988.441174.441197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5949030960534 0 \N \N f 0 \N 3 157592137 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 434317 2024-02-21 21:46:58.2 2024-02-21 21:56:59.374 Bad half least community race end. Thr Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface roa https://example.com/ 634 \N 434317 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 0.0210163592977608 0 \N \N f 0 \N 13 169818235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436993 2024-02-24 09:07:32.596 2024-02-24 09:17:34.107 \N Key third PM painting wrong generation every. Authority daughter religious no. Make give https://example.com/ 20246 434310 434278.434298.434310.436993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.001426909511 0 \N \N f 0 \N 0 235148793 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 440596 2024-02-27 14:26:03.222 2024-02-27 14:36:04.533 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Tele https://example.com/ 5942 440330 440309.440330.440596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62666372189919 0 \N \N f 0 \N 0 166314402 0 f f \N \N \N \N 440309 \N 0 0 \N \N f \N 436983 2024-02-24 08:37:47.663 2024-02-24 08:47:49.189 Wish low party shake. National offer my Pattern someone notice power fly. Against expect new of https://example.com/ 6335 \N 436983 \N \N \N \N \N \N \N \N news \N ACTIVE \N 3.38080707088285 0 \N \N f 0 \N 17 35209598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440610 2024-02-27 14:35:46.265 2024-02-27 14:45:48.163 Person part phone rich. Cause thus After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter. https://example.com/ 20218 \N 440610 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8918909050707 0 \N \N f 0 \N 2 56706979 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437021 2024-02-24 09:39:25.956 2024-02-24 09:49:27.18 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch te https://example.com/ 18265 435944 435944.437021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.32639080061133 0 \N \N f 0 \N 0 123394567 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 440597 2024-02-27 14:26:08.666 2024-02-27 14:36:09.709 \N Door visit program acc https://example.com/ 1650 440527 440527.440597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.24998527768805 0 \N \N f 0 \N 0 29740474 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440613 2024-02-27 14:37:29.338 2024-02-27 14:47:30.816 \N Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold https://example.com/ 1726 440375 440241.440375.440613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.68796091078 0 \N \N f 0 \N 0 83079104 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 437030 2024-02-24 10:15:44.512 2024-02-24 10:25:45.421 \N Religious l https://example.com/ 1352 435679 435679.437030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.80223528835867 0 \N \N f 0 \N 0 223256157 0 f f \N \N \N \N 435679 \N 0 0 \N \N f \N 437017 2024-02-24 09:34:33.761 2024-02-24 09:44:35.232 \N Baby body day citizen change. Present identify never bi https://example.com/ 18368 436443 436241.436443.437017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0386390015192 0 \N \N f 0 \N 0 172969640 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 437006 2024-02-24 09:21:39.661 2024-02-24 09:31:40.966 \N Hard same business read realize care. Nature to happen gard https://example.com/ 21014 436983 436983.437006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2557901266093 0 \N \N f 0 \N 10 53092342 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 436990 2024-02-24 09:03:35.567 2024-02-24 09:13:37.111 \N Single level story sound. Door end up https://example.com/ 679 436989 436983.436988.436989.436990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63385984305069 0 \N \N f 0 \N 3 53066125 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 436941 2024-02-24 06:18:51.533 2024-02-24 06:28:52.971 \N Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part mor https://example.com/ 18235 436909 436909.436941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1863240596327 0 \N \N f 0 \N 0 183875528 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 436959 2024-02-24 07:36:37.6 2024-02-24 07:46:38.539 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil wi https://example.com/ 17494 436799 436720.436750.436799.436959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0498574898154 0 \N \N f 0 \N 3 1983201 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 440600 2024-02-27 14:27:29.604 2024-02-27 14:37:31.134 \N Hot society statement bed watch party hims https://example.com/ 12422 440168 440168.440600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17886085371932 0 \N \N f 0 \N 0 25377313 0 f f \N \N \N \N 440168 \N 0 0 \N \N f \N 437007 2024-02-24 09:22:15.25 2024-02-24 09:32:16.595 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory https://example.com/ 1713 434556 434535.434556.437007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5479995569141 0 \N \N f 0 \N 0 9561800 0 f f \N \N \N \N 434535 \N 0 0 \N \N f \N 436996 2024-02-24 09:09:15.515 2024-02-24 09:19:16.484 Think cover scientist financial attention he word. World laugh partner part. C Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often. https://example.com/ 18124 \N 436996 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.7433531176516 0 \N \N f 0 \N 3 224896025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437005 2024-02-24 09:20:31.303 2024-02-24 09:30:32.246 \N Opportunity hospital address action return different style. https://example.com/ 9347 436994 436994.437005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.2295502493217 0 \N \N f 0 \N 0 14751406 0 f f \N \N \N \N 436994 \N 0 0 \N \N f \N 440591 2024-02-27 14:22:06.606 2024-02-27 14:32:08.041 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green h https://example.com/ 15180 440423 440423.440591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7788753266173 0 \N \N f 0 \N 3 241477438 0 f f \N \N \N \N 440423 \N 0 0 \N \N f \N 440578 2024-02-27 14:14:05.18 2024-02-27 14:24:05.792 \N Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign f https://example.com/ 11716 440563 440563.440578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4396177365695 0 \N \N f 0 \N 0 31741841 0 f f \N \N \N \N 440563 \N 0 0 \N \N f \N 436933 2024-02-24 05:53:23.321 2024-02-24 06:03:24.226 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After https://example.com/ 19583 436912 436733.436795.436912.436933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77907030151074 0 \N \N f 0 \N 1 218178446 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 440843 2024-02-27 17:28:16.424 2024-02-27 17:38:17.85 \N Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble l https://example.com/ 16276 440709 440301.440709.440843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.9963000772816 0 \N \N f 0 \N 1 67960802 0 f f \N \N \N \N 440301 \N 0 0 \N \N f \N 436817 2024-02-24 01:34:30.01 2024-02-24 01:44:32.393 \N Marriage interview green school study foot home like. Situation mind concern policy who conferenc https://example.com/ 1611 436449 436028.436449.436817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4102876379091 0 \N \N f 0 \N 1 201763011 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440607 2024-02-27 14:30:34.043 2024-02-27 14:40:36.056 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree trainin https://example.com/ 628 440273 440273.440607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9000846888126 0 \N \N f 0 \N 2 238113097 0 f f \N \N \N \N 440273 \N 0 0 \N \N f \N 437033 2024-02-24 10:24:26.927 2024-02-24 10:34:28.387 View especially nation nor third to husband. Network low already environmen Police do base plan how. Her add beautiful attack cup https://example.com/ 1030 \N 437033 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 20.9387855822379 0 \N \N f 0 \N 1 206618492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440611 2024-02-27 14:35:51.769 2024-02-27 14:45:52.734 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nKey third PM painting wrong generation every. Autho https://example.com/ 20066 439822 439822.440611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80389043069217 0 \N \N f 0 \N 2 197490290 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 440620 2024-02-27 14:44:10.926 2024-02-27 14:54:11.618 \N Career six also speak of difference tend. Heavy may https://example.com/ 12946 440616 440569.440616.440620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.21425490780526 0 \N \N f 0 \N 0 108793393 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 440628 2024-02-27 14:47:15.352 2024-02-27 14:57:16.879 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nScientist https://example.com/ 11942 440513 440266.440513.440628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.49972916229287 0 \N \N f 0 \N 0 139479230 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 440599 2024-02-27 14:27:19.49 2024-02-27 14:37:20.963 There everybody fish can. Exactly office event charge reduce. Better Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them. https://example.com/ 18641 \N 440599 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.1726344982535 0 \N \N f 0 \N 2 110174971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440601 2024-02-27 14:27:30.855 2024-02-27 14:37:32.148 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experie https://example.com/ 1195 440561 440561.440601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1171509100946 0 \N \N f 0 \N 0 98544733 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 440946 2024-02-27 19:04:57.715 2024-02-27 19:14:59 Begin lawyer shoulder couple whom drive improve. Analysis mean involve s Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk. https://example.com/ 20619 \N 440946 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.114322518233614 0 \N \N f 0 \N 0 106750445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440958 2024-02-27 19:17:29.995 2024-02-27 19:27:31.185 \N Near whom sit wonder both lay remain. Mention school letter example. Especially thing w https://example.com/ 21352 440781 440781.440958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5104825820639 0 \N \N f 0 \N 0 369997 0 f f \N \N \N \N 440781 \N 0 0 \N \N f \N 440978 2024-02-27 19:38:25.057 2024-02-27 19:48:26.473 Necessary hold quite on prove past. Stage front d Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break. https://example.com/ 777 \N 440978 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.8856798877708 0 \N \N f 0 \N 0 194675908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440983 2024-02-27 19:41:41.101 2024-02-27 19:51:42.699 \N Star bill toward also almost. Reason machine great per artist rai https://example.com/ 14404 440725 440725.440983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4188034812815 0 \N \N f 0 \N 0 188493477 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440954 2024-02-27 19:13:40.895 2024-02-27 19:23:41.834 \N New here partner c https://example.com/ 20744 440953 440875.440953.440954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9952722389136 0 \N \N f 0 \N 1 178876211 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 437066 2024-02-24 12:00:43.294 2024-02-24 12:10:44.83 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. https://example.com/ 14202 437063 437063.437066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.863056576816703 0 \N \N f 0 \N 0 161400823 0 f f \N \N \N \N 437063 \N 0 0 \N \N f \N 434298 2024-02-21 21:24:17.468 2024-02-21 21:34:19.052 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five incr https://example.com/ 18016 434278 434278.434298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0093806115105 0 \N \N f 0 \N 17 74327267 0 f f \N \N \N \N 434278 \N 0 0 \N \N f \N 436801 2024-02-24 01:19:29.918 2024-02-24 01:29:33.759 \N Parent always at part must all. Every win environmental pay training. Occur away tria https://example.com/ 16965 436784 436720.436784.436801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1288805361508 0 \N \N f 0 \N 3 73458381 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437031 2024-02-24 10:17:05.812 2024-02-24 10:27:06.683 Recent work wife light adult yar Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife. https://example.com/ 629 \N 437031 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 20.332632049704 0 \N \N f 0 \N 1 25001065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440168 2024-02-27 01:41:06.346 2024-02-27 01:51:08.09 Production per can TV ahead milli Once could matter program fish adult Congress. Cause betw https://example.com/ 19147 \N 440168 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 24.7867071412828 0 \N \N f 0 \N 1 52198540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437055 2024-02-24 11:36:56.52 2024-02-24 11:46:58.852 \N Top happ https://example.com/ 6798 436970 436970.437055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9008798389626 0 \N \N f 0 \N 0 60026624 0 f f \N \N \N \N 436970 \N 0 0 \N \N f \N 437001 2024-02-24 09:14:44.752 2024-02-24 09:24:45.983 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While https://example.com/ 21458 434424 434424.437001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4579927675175 0 \N \N f 0 \N 0 196959259 0 f f \N \N \N \N 434424 \N 0 0 \N \N f \N 440602 2024-02-27 14:28:00.23 2024-02-27 14:38:01.693 \N Order science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. https://example.com/ 5942 440599 440599.440602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1205852838742 0 \N \N f 0 \N 0 172426675 0 f f \N \N \N \N 440599 \N 0 0 \N \N f \N 437058 2024-02-24 11:39:58.391 2024-02-24 11:49:59.482 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Br https://example.com/ 19267 436969 436969.437058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3876841148669 0 \N \N f 0 \N 0 45956866 0 f f \N \N \N \N 436969 \N 0 0 \N \N f \N 436788 2024-02-24 00:51:38.169 2024-02-24 01:01:39.264 \N D https://example.com/ 2844 436709 436709.436788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2768660473968 0 \N \N f 0 \N 0 216590052 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 441808 2024-02-28 12:13:30.126 2024-02-28 12:23:30.968 \N According shake the attack guy developm https://example.com/ 20817 441560 441560.441808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.30809410655261 0 \N \N f 0 \N 0 184316644 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 436960 2024-02-24 07:37:24.472 2024-02-24 07:47:26.077 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney https://example.com/ 20509 436837 436837.436960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3629728827818 0 \N \N f 0 \N 1 148497466 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436950 2024-02-24 07:06:24.095 2024-02-24 07:16:25.585 Many soldier role. Far Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult his https://example.com/ 21178 \N 436950 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 17.2559241517468 0 \N \N f 0 \N 7 211137177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436449 2024-02-23 17:19:55.714 2024-02-23 17:29:57.065 \N Author professional find face reflect. Defense interesting hap https://example.com/ 690 436028 436028.436449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.76901219393203 0 \N \N f 0 \N 9 166645428 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 436999 2024-02-24 09:10:35.952 2024-02-24 09:20:36.534 \N I https://example.com/ 9655 436817 436028.436449.436817.436999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6480423861597 0 \N \N f 0 \N 0 118006904 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440606 2024-02-27 14:30:21.732 2024-02-27 14:40:22.926 \N Decade activity affect another hear action. Well good power. Mr rock se https://example.com/ 10608 440070 439082.440070.440606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5020042492868 0 \N \N f 0 \N 0 39105851 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 441785 2024-02-28 11:51:33.623 2024-02-28 12:01:34.801 \N Weight statement best almost sometimes https://example.com/ 992 207732 207732.441785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3919751602476 0 \N \N f 0 \N 1 37459073 0 f f \N \N \N \N 207732 \N 0 0 \N \N f \N 439914 2024-02-26 20:41:13.394 2024-02-26 20:51:14.741 \N Firm study certainly point. Ask major https://example.com/ 21214 439854 439844.439854.439914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.21338441343205 0 \N \N f 0 \N 5 75621757 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 441810 2024-02-28 12:14:31.874 2024-02-28 12:24:32.87 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environme https://example.com/ 913 441785 207732.441785.441810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8850818472159 0 \N \N f 0 \N 0 101916546 0 f f \N \N \N \N 207732 \N 0 0 \N \N f \N 437027 2024-02-24 09:55:45.67 2024-02-24 10:05:48.186 \N Glass her remember exist during. Blue prevent wes https://example.com/ 1175 436683 436683.437027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17337659890424 0 \N \N f 0 \N 0 123555716 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 437028 2024-02-24 10:11:16.504 2024-02-24 10:21:18.016 \N Support structure se https://example.com/ 697 436709 436709.437028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.5680133705959 0 \N \N f 0 \N 0 159557637 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 436967 2024-02-24 07:56:18.837 2024-02-24 08:06:20.08 Speak organization direction Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address menti https://example.com/ 1433 \N 436967 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 25.738411987167 0 \N \N f 0 \N 2 21474112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437037 2024-02-24 10:38:42.987 2024-02-24 10:48:44.847 \N Grow challenge small bill sometimes statement enjoy. Perh https://example.com/ 16177 436977 436977.437037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5613354512405 0 \N \N f 0 \N 1 93625895 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 436968 2024-02-24 07:56:30.384 2024-02-24 08:06:31.403 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand https://example.com/ 3411 436537 436028.436449.436455.436537.436968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9561301868319 0 \N \N f 0 \N 0 125913310 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437026 2024-02-24 09:54:34.852 2024-02-24 10:04:36.021 Increase agent management assume sys Reach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and. https://example.com/ 19821 \N 437026 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 6.99214755501597 0 \N \N f 0 \N 1 193450957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437034 2024-02-24 10:26:24.093 2024-02-24 10:36:25.988 Adult carry training two campaign. Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader clai https://example.com/ 766 \N 437034 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.0111811583634 0 \N \N f 0 \N 3 156785291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441750 2024-02-28 11:31:36.611 2024-02-28 11:41:38.853 \N Under big evening others. Trip remain money region r https://example.com/ 4062 441712 441695.441712.441750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9189528759223 0 \N \N f 0 \N 12 130256202 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 440625 2024-02-27 14:46:20.101 2024-02-27 14:56:21.839 Customer include control and. Chance blue audience r Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden. https://example.com/ 10862 \N 440625 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0427954543375 0 \N \N f 0 \N 0 68368885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441459 2024-02-28 04:43:15.099 2024-02-28 04:53:16.648 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission https://example.com/ 18557 441442 441333.441442.441459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.1202566704253 0 \N \N f 0 \N 0 51268696 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441390 2024-02-28 02:18:29.433 2024-02-28 02:28:30.136 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Pictur https://example.com/ 20854 440973 440830.440973.441390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8135030420155 0 \N \N f 0 \N 0 30063567 0 f f \N \N \N \N 440830 \N 0 0 \N \N f \N 440586 2024-02-27 14:19:29.902 2024-02-27 14:29:31.901 Debate physical difference without Mrs price final. Nice nation Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. https://example.com/ 20782 \N 440586 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 15.8855014949414 0 \N \N f 0 \N 0 235900098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434278 2024-02-21 20:45:27.624 2024-02-21 20:55:28.953 Side institution practice you. Response hers Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. https://example.com/ 12072 \N 434278 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.423363601532003 0 \N \N f 0 \N 104 38204420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440533 2024-02-27 13:19:23.512 2024-02-27 13:29:25.914 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory p https://example.com/ 7960 440520 440520.440533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1408381156074 0 \N \N f 0 \N 3 174099713 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 437052 2024-02-24 11:25:33.875 2024-02-24 11:35:34.842 \N Long interesting cut grow prevent. Western ability much hospital market https://example.com/ 1429 436720 436720.437052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8665993729505 0 \N \N f 0 \N 3 103991919 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437051 2024-02-24 11:22:58.924 2024-02-24 11:33:01.121 \N Machine thus avoid re https://example.com/ 20287 436926 436926.437051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7356916054433 0 \N \N f 0 \N 0 148302371 0 f f \N \N \N \N 436926 \N 0 0 \N \N f \N 437053 2024-02-24 11:27:10.231 2024-02-24 11:37:11.661 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police s https://example.com/ 17722 437008 437008.437053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4389549257805 0 \N \N f 0 \N 1 170411296 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437036 2024-02-24 10:36:21.101 2024-02-24 10:46:22.227 \N Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green fir https://example.com/ 2077 436028 436028.437036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.15609075888568 0 \N \N f 0 \N 0 80282582 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 441817 2024-02-28 12:19:11.303 2024-02-28 12:29:12.661 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader https://example.com/ 2576 441746 441660.441746.441817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.449484598104029 0 \N \N f 0 \N 0 28036996 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441819 2024-02-28 12:20:19.331 2024-02-28 12:30:20.785 \N Maybe doctor performance school. Happen per discussion law diffe https://example.com/ 746 441660 441660.441819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3913353384002 0 \N \N f 0 \N 0 34072589 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441730 2024-02-28 11:15:57.802 2024-02-28 11:25:58.89 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box mo https://example.com/ 20502 436306 435657.435728.435920.435925.436157.436306.441730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.414896293975 0 \N \N f 0 \N 0 25824636 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 440609 2024-02-27 14:34:48.81 2024-02-27 14:44:50.519 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West u https://example.com/ 20257 440569 440569.440609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23263406016154 0 \N \N f 0 \N 2 148291120 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 436837 2024-02-24 02:06:36.017 2024-02-24 02:16:37.287 Off class property ok try. Out Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee we https://example.com/ 13903 \N 436837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.84810548455068 0 \N \N f 0 \N 32 86884162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440617 2024-02-27 14:42:06.733 2024-02-27 14:52:08.201 \N Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simp https://example.com/ 18476 440375 440241.440375.440617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.068992389352 0 \N \N f 0 \N 0 4289092 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 441709 2024-02-28 11:04:08.212 2024-02-28 11:14:10.551 \N Might also begin husband affect. Chance follow kno https://example.com/ 21314 441699 441695.441699.441709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4188311565007 0 \N \N f 0 \N 3 88427924 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 436985 2024-02-24 08:56:01.927 2024-02-24 09:06:03.538 Range laugh thousand step. Them television final out care drop. Put call durin Become popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter. https://example.com/ 19346 \N 436985 \N \N \N \N \N \N \N \N news \N ACTIVE \N 4.44030005308072 0 \N \N f 0 \N 0 92336093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437041 2024-02-24 10:53:15.546 2024-02-24 11:03:16.814 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son we https://example.com/ 20616 436241 436241.437041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6578428950561 0 \N \N f 0 \N 0 111011405 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 443123 2024-02-29 06:38:32.847 2024-02-29 06:48:34.388 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead ou https://example.com/ 20180 443122 443122.443123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.29417528993657 0 \N \N f 0 \N 0 29218194 0 f f \N \N \N \N 443122 \N 0 0 \N \N f \N 437071 2024-02-24 12:04:59.466 2024-02-24 12:15:01.085 \N Popular entire medical office can. Those begin for own off https://example.com/ 2577 436920 436837.436920.437071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7104660510962 0 \N \N f 0 \N 0 130673832 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436994 2024-02-24 09:07:33.805 2024-02-24 09:17:35.123 Detail me send tax knowledge. Bad police remember avoid often interest p Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together. https://example.com/ 17976 \N 436994 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 12.4741854520413 0 \N \N f 0 \N 1 133831685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440619 2024-02-27 14:43:22.142 2024-02-27 14:53:24.515 \N Best choice maintain she else member. Health country mind police. Of off f https://example.com/ 880 440516 440241.440281.440516.440619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0188654504846 0 \N \N f 0 \N 0 94335132 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 436243 2024-02-23 14:27:25.891 2024-02-23 14:37:26.999 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull the https://example.com/ 13759 436241 436241.436243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6594361025529 0 \N \N f 0 \N 10 52275935 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 437874 2024-02-25 02:28:19.268 2024-02-25 02:38:20.169 \N Recent work wife light adult yard. Child although girl new to serious. Re https://example.com/ 1626 437495 437233.437495.437874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8729401233227 0 \N \N f 0 \N 2 40630323 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437587 2024-02-24 18:45:45.047 2024-02-24 18:55:46.189 \N Door western each. Thus f https://example.com/ 21578 437583 437583.437587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5309323859608 0 \N \N f 0 \N 1 145208533 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 437929 2024-02-25 03:54:24.722 2024-02-25 04:04:25.518 \N Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting charact https://example.com/ 7998 437923 437923.437929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1909627329563 0 \N \N f 0 \N 1 226840459 0 f f \N \N \N \N 437923 \N 0 0 \N \N f \N 436246 2024-02-23 14:27:55.444 2024-02-23 14:37:57.089 \N Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American mi https://example.com/ 2734 436241 436241.436246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9320021315526 0 \N \N f 0 \N 1 229490947 0 f f \N \N \N \N 436241 \N 0 0 \N \N f \N 437057 2024-02-24 11:37:30.192 2024-02-24 11:47:31.237 \N Quick https://example.com/ 10013 436996 436996.437057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7485420751505 0 \N \N f 0 \N 0 22928109 0 f f \N \N \N \N 436996 \N 0 0 \N \N f \N 437038 2024-02-24 10:40:26.074 2024-02-24 13:03:46.732 \N Animal treatment ac https://example.com/ 3642 437006 436983.437006.437038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.350890027249449 0 \N \N f 0 \N 9 21069657 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 440571 2024-02-27 14:07:07.304 2024-02-27 14:17:08.207 \N Bank one body pull the expect. Issue play without parent line political. Wat https://example.com/ 15488 440569 440569.440571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7397126164589 0 \N \N f 0 \N 1 226688713 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 440621 2024-02-27 14:44:15.959 2024-02-27 14:54:17.795 \N Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead g https://example.com/ 21064 440264 440241.440256.440264.440621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4869035989973 0 \N \N f 0 \N 0 79659742 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 441844 2024-02-28 12:39:58.847 2024-02-28 12:50:01.884 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen https://example.com/ 684 441695 441695.441844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6570275023287 0 \N \N f 0 \N 0 150380180 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 437016 2024-02-24 09:32:25.688 2024-02-24 09:42:27.069 \N Scientist our accept million student where bring trade. S https://example.com/ 716 436683 436683.437016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.68257088376737 0 \N \N f 0 \N 1 139466482 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 437048 2024-02-24 11:10:45.922 2024-02-24 11:20:47.728 \N Edge lot space mi https://example.com/ 1439 437016 436683.437016.437048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5989192707624 0 \N \N f 0 \N 0 152616801 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 436803 2024-02-24 01:20:39.808 2024-02-24 01:30:41.563 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter fo https://example.com/ 13398 436724 436720.436724.436803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0407008185179 0 \N \N f 0 \N 0 10604934 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437046 2024-02-24 11:04:49.952 2024-02-24 11:14:51.49 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind futur https://example.com/ 717 436720 436720.437046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.178923795159882 0 \N \N f 0 \N 0 195178474 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 440616 2024-02-27 14:40:47.379 2024-02-27 14:50:48.846 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simp https://example.com/ 8242 440569 440569.440616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9722559800968 0 \N \N f 0 \N 1 223919168 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 440626 2024-02-27 14:46:49.703 2024-02-27 14:56:50.983 \N Long interesting cut grow prevent. Western ab https://example.com/ 20424 440028 440028.440626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7645406645144 0 \N \N f 0 \N 0 61417404 0 f f \N \N \N \N 440028 \N 0 0 \N \N f \N 437064 2024-02-24 11:52:29.638 2024-02-24 12:02:30.732 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nThere everybody fish can. Exactly office event charge reduc https://example.com/ 18310 437050 437044.437050.437064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3272174587995 0 \N \N f 0 \N 2 121621170 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 436751 2024-02-23 23:52:07.478 2024-02-24 00:02:08.611 \N Big field certainly community. North marriage animal whose health understand key. Run https://example.com/ 20180 436720 436720.436751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.28845737268826 0 \N \N f 0 \N 1 204040211 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436934 2024-02-24 05:55:35.115 2024-02-24 06:05:36.759 Natural read drug suggest argue. Attorney choice probably action adult particip Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that. https://example.com/ 16353 \N 436934 \N \N \N \N \N \N \N \N science \N ACTIVE \N 28.504845331293 0 \N \N f 0 \N 4 145818826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440375 2024-02-27 09:46:24.792 2024-02-27 09:56:26.723 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepar https://example.com/ 19546 440241 440241.440375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.93099270412 0 \N \N f 0 \N 2 98450170 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 440624 2024-02-27 14:46:15.698 2024-02-27 14:56:16.747 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nDiscussion vari https://example.com/ 21481 440589 440520.440580.440589.440624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3733926629075 0 \N \N f 0 \N 0 46049042 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 437039 2024-02-24 10:41:45.301 2024-02-24 10:51:46.197 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy https://example.com/ 20597 436837 436837.437039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8163445460831 0 \N \N f 0 \N 1 122104656 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 440630 2024-02-27 14:48:07.961 2024-02-27 14:58:08.988 \N S https://example.com/ 13399 440523 440422.440523.440630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8492263431962 0 \N \N f 0 \N 0 87319580 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440967 2024-02-27 19:29:40.704 2024-02-27 19:39:42.648 \N Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together https://example.com/ 12245 440960 440622.440960.440967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.82190356177271 0 \N \N f 0 \N 1 234490738 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 440972 2024-02-27 19:32:27.228 2024-02-27 19:42:28.17 \N Ground baby describe might. Practi https://example.com/ 16336 440950 440527.440603.440939.440950.440972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0827595240923 0 \N \N f 0 \N 0 243371731 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 437074 2024-02-24 12:06:01.575 2024-02-24 12:16:02.457 \N Money rise give serve https://example.com/ 3360 437044 437044.437074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0361462388616 0 \N \N f 0 \N 0 132131310 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440822 2024-02-27 17:13:27.699 2024-02-27 17:23:29.152 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space so https://example.com/ 15488 440725 440725.440822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.0812637301518 0 \N \N f 0 \N 2 22622899 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437065 2024-02-24 11:55:39.623 2024-02-24 12:05:40.807 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summ https://example.com/ 16816 436720 436720.437065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47631053517592 0 \N \N f 0 \N 0 42630463 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437060 2024-02-24 11:42:08.677 2024-02-24 11:52:09.631 \N Local college movie start lose good either if. Him game o https://example.com/ 768 436969 436969.437060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5748527899594 0 \N \N f 0 \N 0 160388103 0 f f \N \N \N \N 436969 \N 0 0 \N \N f \N 440935 2024-02-27 18:55:01.625 2024-02-27 19:05:03.32 \N From democratic trial American blue. https://example.com/ 1745 440785 440725.440785.440935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2719701261603 0 \N \N f 0 \N 1 61887138 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437080 2024-02-24 12:15:12.229 2024-02-24 12:25:13.713 \N Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure https://example.com/ 2652 437077 437077.437080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.34536502518883 0 \N \N f 0 \N 0 178571162 0 f f \N \N \N \N 437077 \N 0 0 \N \N f \N 436560 2024-02-23 18:55:45.641 2024-02-23 19:05:47.162 Radio have every concern. Letter fund artist fine argue Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain lo https://example.com/ 16350 \N 436560 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.5512690882598 0 \N \N f 0 \N 5 132354439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436799 2024-02-24 01:16:26.096 2024-02-24 01:26:26.936 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student wh https://example.com/ 13854 436750 436720.436750.436799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.95383289280855 0 \N \N f 0 \N 4 225347716 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 442960 2024-02-29 01:22:19.157 2024-02-29 01:32:20.804 \N Approach stuff big ahead nothing hotel great city. Fo https://example.com/ 16970 442904 442904.442960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.778410473493 0 \N \N f 0 \N 1 242604752 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 437059 2024-02-24 11:40:03.629 2024-02-24 11:50:05.569 Degree third deep cause buy put whatever. Gas human prepare condition free Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project. https://example.com/ 21344 \N 437059 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.14053771504278 0 \N \N f 0 \N 1 195985883 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441129 2024-02-27 21:36:36.214 2024-02-27 21:46:37.612 \N Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough instituti https://example.com/ 19732 440988 440988.441129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6967280067072 0 \N \N f 0 \N 5 170033361 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 436969 2024-02-24 08:00:27.711 2024-02-24 08:10:29.373 Page economic language former television become building. Sugges Sense college state many. Some your mother els https://example.com/ 18235 \N 436969 \N \N \N \N \N \N \N \N science \N ACTIVE \N 5.96575592383083 0 \N \N f 0 \N 2 13898870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436750 2024-02-23 23:51:26.027 2024-02-24 00:01:27.936 \N Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. https://example.com/ 4292 436720 436720.436750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51808180935138 0 \N \N f 0 \N 5 174504502 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 436962 2024-02-24 07:41:07.033 2024-02-24 07:51:08.965 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nJoin push remain behavior. Various song no successful own. Him director behind cold. B https://example.com/ 827 436838 436720.436784.436801.436822.436838.436962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4041407664932 0 \N \N f 0 \N 0 117236672 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437067 2024-02-24 12:01:27.745 2024-02-24 12:11:28.963 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scienti https://example.com/ 7773 437039 436837.437039.437067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1832478077089 0 \N \N f 0 \N 0 44840496 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 440948 2024-02-27 19:06:02.621 2024-02-27 19:16:03.532 Main anyone difficult radio sure. Question choose consider especially. Wife wif Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on. https://example.com/ 11288 \N 440948 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.1614388319155 0 \N \N f 0 \N 0 60178584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440952 2024-02-27 19:08:58.074 2024-02-27 19:18:59.262 \N Plant strong west enjoy. Those everything may https://example.com/ 917 440942 440725.440872.440942.440952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4357518917759 0 \N \N f 0 \N 0 181511656 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437082 2024-02-24 12:21:31.109 2024-02-24 12:31:32.2 \N Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision stu https://example.com/ 17710 436902 436823.436861.436902.437082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3983004465653 0 \N \N f 0 \N 1 118682504 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 436802 2024-02-24 01:19:41.902 2024-02-24 01:29:43.71 \N Quickly b https://example.com/ 11820 436751 436720.436751.436802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.09327370504126 0 \N \N f 0 \N 0 113316968 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437088 2024-02-24 12:23:46.064 2024-02-24 12:33:47.599 \N Baby b https://example.com/ 19843 436932 436683.436763.436932.437088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3190055368969 0 \N \N f 0 \N 0 182048853 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 440980 2024-02-27 19:39:29.517 2024-02-27 19:49:31.804 \N Inside nor professional partner new design machine. Fire occur leave https://example.com/ 6741 440520 440520.440980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6796543523092 0 \N \N f 0 \N 2 77068631 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441575 2024-02-28 08:27:18.966 2024-02-28 08:37:19.824 \N There everybody fish can. Exactly office event charge reduce https://example.com/ 20551 441560 441560.441575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3370065358095 0 \N \N f 0 \N 0 81981276 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 437094 2024-02-24 12:32:29.401 2024-02-24 12:42:30.869 \N Occur pow https://example.com/ 14503 436759 436759.437094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.295400485862 0 \N \N f 0 \N 0 192035748 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 437079 2024-02-24 12:11:36.531 2024-02-24 12:21:37.881 \N Although thought fall today protect ago. Able institution offer authority best traditional attent https://example.com/ 1624 437038 436983.437006.437038.437079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0275695435302 0 \N \N f 0 \N 8 101250318 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437120 2024-02-24 12:46:39.042 2024-02-24 12:56:40.376 \N Animal law require claim amount little. Low decide president off project. Answe https://example.com/ 10493 436780 436780.437120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11601494710121 0 \N \N f 0 \N 0 42441091 0 f f \N \N \N \N 436780 \N 0 0 \N \N f \N 437098 2024-02-24 12:34:16.522 2024-02-24 12:44:17.31 \N Cell language east present. Federal arrive much. Drug financial place pop https://example.com/ 14910 437063 437063.437098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6814295674255 0 \N \N f 0 \N 0 23642699 0 f f \N \N \N \N 437063 \N 0 0 \N \N f \N 436920 2024-02-24 05:11:10.181 2024-02-24 05:21:11.995 \N Everything she discuss gun somebody. Take adult story full. Yo https://example.com/ 20799 436837 436837.436920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13590227759294 0 \N \N f 0 \N 1 171728781 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 440612 2024-02-27 14:37:19.48 2024-02-27 14:47:20.75 \N Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting scho https://example.com/ 21401 440556 440520.440533.440556.440612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0383252797709 0 \N \N f 0 \N 1 116795302 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 440631 2024-02-27 14:48:52.317 2024-02-27 14:58:54.484 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budge https://example.com/ 6687 440609 440569.440609.440631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.529919455038 0 \N \N f 0 \N 1 204426873 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 437116 2024-02-24 12:45:44.847 2024-02-24 12:55:45.725 \N First right set. Dinner third difficult next receive. Drop population help rece https://example.com/ 7654 436852 436852.437116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99975698802542 0 \N \N f 0 \N 0 78420023 0 f f \N \N \N \N 436852 \N 0 0 \N \N f \N 437084 2024-02-24 12:22:37.451 2024-02-24 12:32:38.686 Guess join morning man hospital human Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon https://example.com/ 14295 \N 437084 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.916560174138 0 \N \N f 0 \N 1 8649073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437103 2024-02-24 12:37:44.592 2024-02-24 13:04:02.924 \N Similar event two h https://example.com/ 13547 437079 436983.437006.437038.437079.437103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5861313956959 0 \N \N f 0 \N 7 243410403 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437106 2024-02-24 12:39:17.385 2024-02-24 12:49:18.395 \N Science sea sport term page near. Agreement forget age center yes. Figure https://example.com/ 21619 437034 437034.437106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55258704918577 0 \N \N f 0 \N 0 108313984 0 f f \N \N \N \N 437034 \N 0 0 \N \N f \N 437152 2024-02-24 13:02:57.18 2024-02-24 13:23:12.408 \N Approach stuff big https://example.com/ 21393 437149 436983.437006.437038.437079.437103.437108.437147.437149.437152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9363168377621 0 \N \N f 0 \N 2 233667301 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437091 2024-02-24 12:30:58.408 2024-02-24 12:40:59.601 \N Power billion method wide. Person play play thousand seem crime crime al https://example.com/ 1784 437087 437087.437091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.542232949650163 0 \N \N f 0 \N 0 133836370 0 f f \N \N \N \N 437087 \N 0 0 \N \N f \N 437117 2024-02-24 12:46:09.611 2024-02-24 12:56:12.068 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat ei https://example.com/ 18608 437044 437044.437117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3809857136943 0 \N \N f 0 \N 0 12919944 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437090 2024-02-24 12:30:43.19 2024-02-24 12:40:44.468 \N Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business https://example.com/ 16356 437053 437008.437053.437090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08535685565808 0 \N \N f 0 \N 0 8965201 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437100 2024-02-24 12:36:08.553 2024-02-24 12:46:09.932 \N Detail me send tax knowledge. Bad police remember avoid often interest pu https://example.com/ 1717 437062 437062.437100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6112101092128 0 \N \N f 0 \N 0 199175397 0 f f \N \N \N \N 437062 \N 0 0 \N \N f \N 436980 2024-02-24 08:28:27.575 2024-02-24 08:38:28.857 Blood admit none others arm style. Here establ Provide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Signifi https://example.com/ 7760 \N 436980 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 6.40177549499331 0 \N \N f 0 \N 0 37178389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437112 2024-02-24 12:45:13.737 2024-02-24 12:55:15.516 \N Business food practice look would full across. Official buy thought goal. Treat https://example.com/ 21281 437089 437089.437112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.85641448205 0 \N \N f 0 \N 0 16814072 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 436897 2024-02-24 04:07:02.196 2024-02-24 04:17:03.717 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nScore might instead ground institution. Almost national may leg middle. Agreement st https://example.com/ 5293 436844 436827.436844.436897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5562137487993 0 \N \N f 0 \N 0 119066998 0 f f \N \N \N \N 436827 \N 0 0 \N \N f \N 437104 2024-02-24 12:37:54.442 2024-02-24 12:47:55.783 \N Almost about me amount daughter himself. Threat candidate situation born https://example.com/ 11378 437044 437044.437104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.50227108665 0 \N \N f 0 \N 0 143057290 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440635 2024-02-27 14:54:14.098 2024-02-27 15:04:16.237 \N Reality pressure enjoy throu https://example.com/ 1652 439276 439139.439276.440635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74995408284224 0 \N \N f 0 \N 0 100241998 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 440632 2024-02-27 14:51:47.126 2024-02-27 15:01:47.927 \N Think month catch free. Tree involve deep resource provide professional dinner hold. St https://example.com/ 2338 440520 440520.440632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.47857852964523 0 \N \N f 0 \N 0 22864088 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441568 2024-02-28 08:21:39.974 2024-02-28 08:31:41.529 \N Region side point win through. Deep check rather https://example.com/ 1162 441304 440729.441304.441568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.579010199680816 0 \N \N f 0 \N 1 99289690 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 441545 2024-02-28 07:55:52.312 2024-02-28 08:05:53.478 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nThem bag because parent see. Young enough opportunity necess https://example.com/ 9036 441463 441333.441403.441463.441545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.919535697459 0 \N \N f 0 \N 9 138998599 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 439836 2024-02-26 19:51:13.222 2024-02-26 20:01:14.651 \N Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program https://example.com/ 1135 439825 439315.439825.439836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6845697962773 0 \N \N f 0 \N 1 138441354 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 437140 2024-02-24 12:50:13.793 2024-02-24 13:00:16.124 \N Tell billion now tough chair fight. Financial city bar produce. Benefit wall church fo https://example.com/ 18909 436894 436894.437140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.11331986584585 0 \N \N f 0 \N 0 101587510 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 437118 2024-02-24 12:46:23.941 2024-02-24 12:56:25.993 \N North beat realize. School remain number space star media. Month type cold. Bre https://example.com/ 2204 436812 436812.437118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9180588935703 0 \N \N f 0 \N 0 171025732 0 f f \N \N \N \N 436812 \N 0 0 \N \N f \N 437149 2024-02-24 13:00:38.024 2024-02-24 13:10:39.785 \N Best choice maintain she else member. Health country mind police. O https://example.com/ 8416 437147 436983.437006.437038.437079.437103.437108.437147.437149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6479658386767 0 \N \N f 0 \N 3 22763318 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437096 2024-02-24 12:33:10.729 2024-02-24 12:43:11.835 \N Political perhaps question forward yes. Fish TV music catch behind par https://example.com/ 12158 437072 437072.437096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83499872456441 0 \N \N f 0 \N 0 230908975 0 f f \N \N \N \N 437072 \N 0 0 \N \N f \N 437097 2024-02-24 12:33:40.674 2024-02-24 12:43:41.867 \N Any tend power space fund inside evidence. Member century indeed imp https://example.com/ 2390 437070 437070.437097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2425932244711 0 \N \N f 0 \N 0 116290933 0 f f \N \N \N \N 437070 \N 0 0 \N \N f \N 436795 2024-02-24 01:00:03.793 2024-02-24 01:10:05.357 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. https://example.com/ 9695 436733 436733.436795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.12984145263456 0 \N \N f 0 \N 3 63534086 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 440639 2024-02-27 14:56:38.582 2024-02-27 15:06:40.236 Figure foreign game ok first agreement. Figure specific threat agree work Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve. https://example.com/ 11776 \N 440639 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.307929480827411 0 \N \N f 0 \N 0 102290588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437143 2024-02-24 12:52:02.879 2024-02-24 13:02:03.693 \N Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nPolicy trade before drop particular upon science. Together cell health https://example.com/ 20137 437089 437089.437143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2501180220267 0 \N \N f 0 \N 1 85939396 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 437154 2024-02-24 13:04:09.845 2024-02-24 13:14:11.322 \N Term growth industry election product resource evening. Glass true https://example.com/ 20129 437152 436983.437006.437038.437079.437103.437108.437147.437149.437152.437154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3892038287386 0 \N \N f 0 \N 1 198102998 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437136 2024-02-24 12:49:13.37 2024-02-24 12:59:14.504 \N Friend growth election water degree probably. Score spring treat institution lo https://example.com/ 6382 433943 433943.437136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9077039250944 0 \N \N f 0 \N 0 36165354 0 f f \N \N \N \N 433943 \N 0 0 \N \N f \N 437126 2024-02-24 12:47:37.902 2024-02-24 12:57:40.146 \N Environment very hospital point health enough. Reality appear point education b https://example.com/ 18357 436560 436560.437126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5462237021676 0 \N \N f 0 \N 0 202874987 0 f f \N \N \N \N 436560 \N 0 0 \N \N f \N 439287 2024-02-26 13:27:03.605 2024-02-26 13:37:05.379 \N Various discussion light page w https://example.com/ 9169 439139 439139.439287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54797550622988 0 \N \N f 0 \N 0 12132604 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437133 2024-02-24 12:48:45.628 2024-02-24 12:58:48.165 \N Parent often ever. Song modern environmental become. Evening trade movie networ https://example.com/ 10270 435030 435030.437133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1395419684079 0 \N \N f 0 \N 0 214942550 0 f f \N \N \N \N 435030 \N 0 0 \N \N f \N 437216 2024-02-24 14:00:42.917 2024-02-24 14:10:44.434 Prevent machine source white and. Fact together father find appear point. Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort. https://example.com/ 18351 \N 437216 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 15.5526126242375 0 \N \N f 0 \N 2 70585442 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436632 2024-02-23 20:33:29.825 2024-02-23 20:43:31.272 Technology word wish say organization friend here. Go nearl Possible serious black institution source fund https://example.com/ 11395 \N 436632 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.1227934804514 0 \N \N f 0 \N 2 101810869 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436054 2024-02-23 11:34:37.147 2024-02-23 11:44:38.577 \N Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there https://example.com/ 19524 435845 435231.435650.435814.435836.435843.435845.436054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58078052478513 0 \N \N f 0 \N 2 111016469 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 435836 2024-02-23 04:51:27.629 2024-02-23 05:01:29.275 \N Realize store science for pass. Sit decision necessary few https://example.com/ 10862 435814 435231.435650.435814.435836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20429619003173 0 \N \N f 0 \N 5 127159664 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 437105 2024-02-24 12:38:35.486 2024-02-24 12:48:36.565 \N Discussion various drop throw none test wind. Exactly nation read year. E https://example.com/ 2459 437035 437035.437105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5329895025063 0 \N \N f 0 \N 0 220541724 0 f f \N \N \N \N 437035 \N 0 0 \N \N f \N 437122 2024-02-24 12:46:59.571 2024-02-24 12:57:00.694 \N Race site manager blood. President perform under know option. Suggest city thus https://example.com/ 2390 436759 436759.437122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5712422751602 0 \N \N f 0 \N 0 12441407 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 437135 2024-02-24 12:49:05.631 2024-02-24 12:59:07.884 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun rem https://example.com/ 8162 436174 436174.437135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8380146980177 0 \N \N f 0 \N 0 112913172 0 f f \N \N \N \N 436174 \N 0 0 \N \N f \N 437177 2024-02-24 13:28:31.076 2024-02-24 13:38:32.541 \N Pos https://example.com/ 18241 437158 437044.437158.437177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7952577743903 0 \N \N f 0 \N 0 220817973 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437075 2024-02-24 12:07:55.03 2024-02-24 14:42:38.401 \N Model late institut https://example.com/ 21506 437070 437070.437075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3995975505566 0 \N \N f 0 \N 0 97938886 0 f f \N \N \N \N 437070 \N 0 0 \N \N f \N 437208 2024-02-24 13:54:13.484 2024-02-24 14:04:14.605 \N Site product one fact loss. Site yeah position student news. Skin particular thoug https://example.com/ 12169 436720 436720.437208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.309709215782 0 \N \N f 0 \N 0 176265290 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437073 2024-02-24 12:05:34.663 2024-02-24 12:15:36.709 \N Ask arm interview player. https://example.com/ 14515 436926 436926.437073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2108465439269 0 \N \N f 0 \N 2 61239979 0 f f \N \N \N \N 436926 \N 0 0 \N \N f \N 437150 2024-02-24 13:02:26.556 2024-02-24 13:12:27.911 \N Ask arm interview player. Director data https://example.com/ 17446 437044 437044.437150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.50865944831661 0 \N \N f 0 \N 0 106480371 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437107 2024-02-24 12:39:55.931 2024-02-24 12:49:57.861 \N Build toward black meet no your. Face stay make fill then situation sound https://example.com/ 19668 437033 437033.437107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3209656546234 0 \N \N f 0 \N 0 158218496 0 f f \N \N \N \N 437033 \N 0 0 \N \N f \N 440647 2024-02-27 15:00:06.158 2024-02-27 15:10:08.407 Never heavy tab \N https://example.com/ 17552 \N 440647 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.46955734837974 0 \N \N f 0 \N 1 132637966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437119 2024-02-24 12:46:31.883 2024-02-24 12:56:33.643 \N May building suffer accept thousand race record play. Also may five recent. Fut https://example.com/ 1454 436805 436805.437119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0207767328304 0 \N \N f 0 \N 0 191891387 0 f f \N \N \N \N 436805 \N 0 0 \N \N f \N 437162 2024-02-24 13:13:38.677 2024-02-24 13:23:40.027 \N Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nDeep government cold west. Act computer vote particularly look https://example.com/ 12721 434958 434958.437162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.93627234666703 0 \N \N f 0 \N 0 236277671 0 f f \N \N \N \N 434958 \N 0 0 \N \N f \N 443135 2024-02-29 06:57:47.572 2024-02-29 07:07:49.745 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever https://example.com/ 16267 443130 443130.443135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.52856585946763 0 \N \N f 0 \N 0 44024187 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N 440645 2024-02-27 14:59:32.442 2024-02-27 14:59:37.841 \N Parent always at part mu https://example.com/ 17171 5415 5415.440645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8911378301766 0 \N \N f 0 \N 1 72553197 0 f f \N \N \N \N 5415 \N 0 0 \N \N f \N 437146 2024-02-24 12:58:01.843 2024-02-24 13:08:03.743 Want fire once his six environment. Challenge body color about. Under front Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit list https://example.com/ 13931 \N 437146 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 7.77433046588115 0 \N \N f 0 \N 8 51658620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441009 2024-02-27 19:59:53.159 2024-02-27 20:09:54.53 \N Than level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote proce https://example.com/ 1631 440949 440949.441009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8112788556298 0 \N \N f 0 \N 0 238320334 0 f f \N \N \N \N 440949 \N 0 0 \N \N f \N 437144 2024-02-24 12:55:30.132 2024-02-24 13:05:31.865 \N Area just subject pretty. Three employee perfo https://example.com/ 19033 437110 437110.437144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7210443018272 0 \N \N f 0 \N 0 220617177 0 f f \N \N \N \N 437110 \N 0 0 \N \N f \N 439276 2024-02-26 13:21:14.313 2024-02-26 13:31:16.293 \N Surface tree knowledge mean. Trade drop hope least https://example.com/ 19394 439139 439139.439276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.16884542802536 0 \N \N f 0 \N 1 29034220 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437077 2024-02-24 12:10:41.062 2024-02-24 12:20:42.141 Blue the that local ce With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nS https://example.com/ 6602 \N 437077 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 8.92519171304627 0 \N \N f 0 \N 2 127220358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437147 2024-02-24 12:58:22.204 2024-02-24 13:08:23.878 \N Position see least https://example.com/ 21248 437108 436983.437006.437038.437079.437103.437108.437147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3178450257687 0 \N \N f 0 \N 4 193787135 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 437153 2024-02-24 13:04:03.13 2024-02-24 13:14:05.063 \N Small newspaper https://example.com/ 21422 437110 437110.437153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5763834143934 0 \N \N f 0 \N 0 185681153 0 f f \N \N \N \N 437110 \N 0 0 \N \N f \N 437255 2024-02-24 14:24:14.078 2024-02-24 14:34:15.98 \N Lead against area note movement street push music. Meet wo https://example.com/ 10818 436909 436909.437255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2249050856014 0 \N \N f 0 \N 0 215693585 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 440636 2024-02-27 14:54:19.573 2024-02-27 15:04:21.281 Fish environmental factor popular series local. Ready each election sell. Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin. https://example.com/ 9354 \N 440636 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.3261160526988 0 \N \N f 0 \N 0 38258595 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437142 2024-02-24 12:51:52.21 2024-02-24 13:01:53.615 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nFish health while enjoy. Step check prevent sell political m https://example.com/ 18816 436078 435231.435650.435814.435836.435843.435845.436054.436078.437142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1166281321954 0 \N \N f 0 \N 0 136059364 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 437111 2024-02-24 12:44:59.781 2024-02-24 12:55:02.164 \N Success against price. Resource end yeah step bit support. Common hour thank re https://example.com/ 14357 436720 436720.437111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93005733481219 0 \N \N f 0 \N 0 63253940 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 440445 2024-02-27 11:14:09.793 2024-02-27 11:24:11.034 \N Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nPrice occur station prepare be marriage. Anything https://example.com/ 19841 440416 440266.440267.440416.440445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1668205520433 0 \N \N f 0 \N 1 17943227 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 437025 2024-02-24 09:53:51.606 2024-02-24 10:03:52.751 Professor entire information week article family fea Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your https://example.com/ 16440 \N 437025 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.26460138956833 0 \N \N f 0 \N 1 218918545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440569 2024-02-27 14:05:16.481 2024-02-27 14:15:18.032 Degree third deep cause buy put whatever. Gas h Scientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View https://example.com/ 9438 \N 440569 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.7626066043097 0 \N \N f 0 \N 7 17815782 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441333 2024-02-28 01:19:45.908 2024-02-28 01:29:46.929 Explain company fish seek great become ago field. Letter men Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player. https://example.com/ 21061 \N 441333 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5632951341052 0 \N \N f 0 \N 71 61461999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437254 2024-02-24 14:24:11.432 2024-02-24 14:34:12.945 \N Want fi https://example.com/ 2674 437238 437238.437254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02660067504249 0 \N \N f 0 \N 0 144365421 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 437113 2024-02-24 12:45:28.281 2024-02-24 12:55:29.546 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe you https://example.com/ 9378 436895 436895.437113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0000268638826 0 \N \N f 0 \N 0 201820748 0 f f \N \N \N \N 436895 \N 0 0 \N \N f \N 437127 2024-02-24 12:47:52.228 2024-02-24 12:57:53.773 \N Pull fact question for unit up community interest. Sign create stage when. Hit https://example.com/ 2213 435847 435847.437127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7529552477631 0 \N \N f 0 \N 0 242896700 0 f f \N \N \N \N 435847 \N 0 0 \N \N f \N 437128 2024-02-24 12:48:00.311 2024-02-24 12:58:01.783 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doct https://example.com/ 20201 435328 435328.437128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8831494304617 0 \N \N f 0 \N 0 87047871 0 f f \N \N \N \N 435328 \N 0 0 \N \N f \N 437115 2024-02-24 12:45:37.315 2024-02-24 12:55:38.637 \N Structure require feel statement plan economy. Base trouble stage anyone I thre https://example.com/ 12188 436894 436894.437115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8797426446085 0 \N \N f 0 \N 0 154088213 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 436913 2024-02-24 04:50:41.383 2024-02-24 05:00:42.652 \N Mission alone itself parent they get. Morning after factor little manage job something. Run medi https://example.com/ 20871 436805 436805.436913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2305454770371 0 \N \N f 0 \N 3 183241470 0 f f \N \N \N \N 436805 \N 0 0 \N \N f \N 437132 2024-02-24 12:48:35.373 2024-02-24 12:58:36.224 \N Environment none many land part. Effort such position late office unit. Space l https://example.com/ 10056 436459 436459.437132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.35506621077163 0 \N \N f 0 \N 0 223166434 0 f f \N \N \N \N 436459 \N 0 0 \N \N f \N 440638 2024-02-27 14:56:03.373 2024-02-27 15:06:05.249 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nWeight statement best almost sometimes an https://example.com/ 3440 440631 440569.440609.440631.440638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.45716414137799 0 \N \N f 0 \N 0 184531265 0 f f \N \N \N \N 440569 \N 0 0 \N \N f \N 437165 2024-02-24 13:15:46.142 2024-02-24 13:25:48.096 \N Physical woman wait smile him. Page nice front machine over. Grow https://example.com/ 1162 437151 437044.437078.437151.437165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8379902574202 0 \N \N f 0 \N 2 151929961 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437148 2024-02-24 12:58:55.111 2024-02-24 13:08:56.608 \N Religious leg forward yes project threat ahead art. Growth he break ahead significan https://example.com/ 9364 437025 437025.437148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3822383184516 0 \N \N f 0 \N 0 142942190 0 f f \N \N \N \N 437025 \N 0 0 \N \N f \N 437160 2024-02-24 13:12:12.494 2024-02-24 13:22:13.982 \N Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box t https://example.com/ 18357 436684 436556.436684.437160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.651953161038 0 \N \N f 0 \N 1 191304649 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 440644 2024-02-27 14:58:24.409 2024-02-27 15:08:26.139 \N Machine thousand determine newspaper four. S https://example.com/ 21019 440633 440633.440644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.37272355338585 0 \N \N f 0 \N 0 243559254 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 440646 2024-02-27 14:59:32.976 2024-02-27 15:09:34.169 \N News half employee read caus https://example.com/ 18945 440604 440527.440531.440604.440646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.730047589198 0 \N \N f 0 \N 2 95536462 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 437123 2024-02-24 12:47:07.114 2024-02-24 12:57:08.743 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performan https://example.com/ 722 436729 436729.437123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2313203022679 0 \N \N f 0 \N 0 81144139 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 437124 2024-02-24 12:47:17.402 2024-02-24 12:57:18.829 \N American animal bad responsibility current. Human company option drive alone ne https://example.com/ 21424 436722 436722.437124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.69467369595881 0 \N \N f 0 \N 0 185571187 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 437145 2024-02-24 12:57:50.28 2024-02-24 13:07:51.727 Ready his prote Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. https://example.com/ 4313 \N 437145 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 24.3396605574422 0 \N \N f 0 \N 0 69167661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440634 2024-02-27 14:53:02.721 2024-02-27 15:03:04.18 \N Much road chair teach during. Poor assume operation job s https://example.com/ 21329 439390 439390.440634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.92153516628064 0 \N \N f 0 \N 0 49191561 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 437129 2024-02-24 12:48:08.843 2024-02-24 12:58:09.824 \N Statement record quite ever prepare machine lawyer. Huge current coach father c https://example.com/ 6471 436499 436499.437129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.222375754179 0 \N \N f 0 \N 0 209109390 0 f f \N \N \N \N 436499 \N 0 0 \N \N f \N 440336 2024-02-27 08:55:05.795 2024-02-27 09:05:06.741 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will https://example.com/ 20613 440172 439315.440172.440336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4640439298823 0 \N \N f 0 \N 0 143753195 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 437134 2024-02-24 12:48:56.35 2024-02-24 12:58:57.873 \N Think cover scientist financial attention he word. World laugh partner part. Co https://example.com/ 985 435610 435610.437134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.20838747461107 0 \N \N f 0 \N 0 98537213 0 f f \N \N \N \N 435610 \N 0 0 \N \N f \N 437139 2024-02-24 12:49:44.092 2024-02-24 12:59:45.748 \N Baby body day citizen change. Present identify never big charge. Street draw me https://example.com/ 1717 435639 435639.437139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2644969791985 0 \N \N f 0 \N 0 165216425 0 f f \N \N \N \N 435639 \N 0 0 \N \N f \N 437185 2024-02-24 13:36:59.674 2024-02-24 13:47:01.108 \N Ground baby describe might. Practice alone key s https://example.com/ 18452 437019 436709.436849.437019.437185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3920469844571 0 \N \N f 0 \N 0 16969517 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 437199 2024-02-24 13:48:39.525 2024-02-24 13:58:40.775 \N Same product run but perhaps. Statement baby assume https://example.com/ 7772 437073 436926.437073.437199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8599963276597 0 \N \N f 0 \N 1 190942531 0 f f \N \N \N \N 436926 \N 0 0 \N \N f \N 440649 2024-02-27 15:00:06.993 2024-02-27 15:10:09.416 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment me https://example.com/ 9026 440520 440520.440649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3593639167615 0 \N \N f 0 \N 1 211485393 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 440648 2024-02-27 15:00:06.507 2024-02-27 15:00:11.849 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little https://example.com/ 20993 440647 440647.440648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7096598223289 0 \N \N f 0 \N 0 98162117 0 f f \N \N \N \N 440647 \N 0 0 \N \N f \N 437137 2024-02-24 12:49:21.133 2024-02-24 12:59:22.572 \N Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill https://example.com/ 18626 435242 435242.437137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.27048216561757 0 \N \N f 0 \N 0 152574923 0 f f \N \N \N \N 435242 \N 0 0 \N \N f \N 437138 2024-02-24 12:49:33.053 2024-02-24 12:59:34.595 \N Seven nice notice wife they couple. Suffer town happy learn. Yourself foreign w https://example.com/ 16956 435551 435551.437138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4431455115355 0 \N \N f 0 \N 0 71820572 0 f f \N \N \N \N 435551 \N 0 0 \N \N f \N 437156 2024-02-24 13:07:23.529 2024-02-24 13:23:30.312 \N Collection friend o https://example.com/ 5387 437154 436983.437006.437038.437079.437103.437108.437147.437149.437152.437154.437156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5377290408056 0 \N \N f 0 \N 0 27442425 0 f f \N \N \N \N 436983 \N 0 0 \N \N f \N 440661 2024-02-27 15:14:10.554 2024-02-27 15:24:11.659 \N Region model over box relate computer consumer. Everything https://example.com/ 1007 440633 440633.440661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9167611676361 0 \N \N f 0 \N 0 248175640 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437296 2024-02-24 14:45:58.401 2024-02-24 14:56:00.011 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nPublic ask news upon for https://example.com/ 750 437290 436752.437081.437290.437296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52192852564572 0 \N \N f 0 \N 0 30819124 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437086 2024-02-24 12:23:24.104 2024-02-24 12:33:25.414 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade eve https://example.com/ 11527 437044 437044.437086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9953934808355 0 \N \N f 0 \N 0 40635695 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437307 2024-02-24 14:49:02.472 2024-02-24 14:59:04.295 \N Grow l https://example.com/ 623 437205 437205.437307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3780894126359 0 \N \N f 0 \N 0 130411691 0 f f \N \N \N \N 437205 \N 0 0 \N \N f \N 440405 2024-02-27 10:33:25.417 2024-02-27 10:43:27.362 \N Never new shoulder lose threat star. Production window real change con https://example.com/ 12160 440182 440132.440175.440182.440405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.386388621282 0 \N \N f 0 \N 0 185390721 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440655 2024-02-27 15:07:28.451 2024-02-27 15:17:30.14 \N Win nothing research song data. They peace herself continue Republican foreign. https://example.com/ 2525 440642 440642.440655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.0430187102262 0 \N \N f 0 \N 0 216557408 0 f f \N \N \N \N 440642 \N 0 0 \N \N f \N 437163 2024-02-24 13:14:07.53 2024-02-24 13:24:09.162 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice https://example.com/ 10359 436669 436669.437163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0931535841822 0 \N \N f 0 \N 0 238993010 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 437171 2024-02-24 13:25:45.444 2024-02-24 13:35:46.605 \N St https://example.com/ 21395 436901 436556.436684.436901.437171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1404203316674 0 \N \N f 0 \N 0 58221531 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 440657 2024-02-27 15:09:04.991 2024-02-27 15:19:06.392 \N Never able over relate dark up dinner. Same daughter everyon https://example.com/ 21036 440656 440642.440653.440656.440657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5925029882926 0 \N \N f 0 \N 0 86115433 0 f f \N \N \N \N 440642 \N 0 0 \N \N f \N 442173 2024-02-28 15:28:16.26 2024-02-28 15:38:18.23 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. He https://example.com/ 2710 442160 441695.441712.441750.441801.441803.442135.442141.442148.442157.442160.442173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9335823259986 0 \N \N f 0 \N 0 55541388 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 437174 2024-02-24 13:27:28.539 2024-02-24 13:37:29.798 Not find attack light everything different. Certainly travel per Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call. https://example.com/ 19500 \N 437174 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.8754589873967 0 \N \N f 0 \N 0 12357701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437040 2024-02-24 10:42:14.076 2024-02-24 10:52:15.587 \N Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nEnou https://example.com/ 16284 436977 436977.437040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7779908619047 0 \N \N f 0 \N 1 243589928 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 443145 2024-02-29 07:11:17.549 2024-02-29 07:21:19.71 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. https://example.com/ 12158 443133 443122.443133.443145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.88620054814 0 \N \N f 0 \N 1 54516830 0 f f \N \N \N \N 443122 \N 0 0 \N \N f \N 437231 2024-02-24 14:10:18.662 2024-02-24 14:20:19.586 \N Small newspaper answer adult morning. Effort happy right deal. State sig https://example.com/ 18170 437228 436028.436029.437220.437228.437231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61954555038495 0 \N \N f 0 \N 1 18011374 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440653 2024-02-27 15:05:27.081 2024-02-27 15:15:28.078 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure e https://example.com/ 759 440642 440642.440653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88974965931891 0 \N \N f 0 \N 2 99248102 0 f f \N \N \N \N 440642 \N 0 0 \N \N f \N 437159 2024-02-24 13:10:58.25 2024-02-24 13:20:59.877 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generatio https://example.com/ 12911 436873 436837.436870.436871.436872.436873.437159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.47499432935 0 \N \N f 0 \N 0 205662363 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437253 2024-02-24 14:24:05.272 2024-02-24 14:34:06.872 Body situation without keep first per. Financial magazine page dinner wrong cri Political perhaps question forward yes. Fish TV music catch behind partner laugh. Fi https://example.com/ 795 \N 437253 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.3277580884628 0 \N \N f 0 \N 0 230069943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441559 2024-02-28 08:08:43.248 2024-02-28 09:05:24.679 \N Mention trip someon https://example.com/ 18941 441549 441333.441403.441463.441545.441549.441559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4662248337464 0 \N \N f 0 \N 6 130290237 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 437173 2024-02-24 13:26:58.681 2024-02-24 13:36:59.783 \N Detail ec https://example.com/ 695 437072 437072.437173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3274981542283 0 \N \N f 0 \N 1 15516732 0 f f \N \N \N \N 437072 \N 0 0 \N \N f \N 437172 2024-02-24 13:26:14.584 2024-02-24 13:36:15.893 \N Dr https://example.com/ 1571 437160 436556.436684.437160.437172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7014526566956 0 \N \N f 0 \N 0 57532997 0 f f \N \N \N \N 436556 \N 0 0 \N \N f \N 440672 2024-02-27 15:22:50.553 2024-02-27 15:32:51.973 \N Foot not wonder myself eat student arrive. Sell election provide carry fath https://example.com/ 20464 440559 440559.440672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5034649026264 0 \N \N f 0 \N 0 19224316 0 f f \N \N \N \N 440559 \N 0 0 \N \N f \N 437175 2024-02-24 13:28:03.243 2024-02-24 13:38:04.218 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. I https://example.com/ 9177 437146 437146.437175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00229958783223 0 \N \N f 0 \N 4 18653893 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 440716 2024-02-27 15:59:56.659 2024-02-27 16:09:57.744 \N Top happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after may https://example.com/ 3709 219168 219168.440716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4620298013873 0 \N \N f 0 \N 0 239761891 0 f f \N \N \N \N 219168 \N 0 0 \N \N f \N 440643 2024-02-27 14:57:32.295 2024-02-27 15:07:34.041 \N Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital i https://example.com/ 4035 439836 439315.439825.439836.440643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7551033322404 0 \N \N f 0 \N 0 148743085 0 f f \N \N \N \N 439315 \N 0 0 \N \N f \N 440654 2024-02-27 15:06:25.895 2024-02-27 15:16:26.951 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member https://example.com/ 722 440649 440520.440649.440654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0282707793164 0 \N \N f 0 \N 0 9346475 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 442087 2024-02-28 14:50:00.989 2024-02-28 15:00:02.148 \N House west amount. https://example.com/ 876 441979 441843.441979.442087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.477546408375 0 \N \N f 0 \N 11 84043954 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 437011 2024-02-24 09:28:09.256 2024-02-24 09:38:10.309 \N Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job s https://example.com/ 9337 436933 436733.436795.436912.436933.437011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0373871704262 0 \N \N f 0 \N 0 83541336 0 f f \N \N \N \N 436733 \N 0 0 \N \N f \N 437178 2024-02-24 13:28:45.713 2024-02-24 13:38:46.844 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international https://example.com/ 8376 436956 436759.436820.436956.437178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3926469774289 0 \N \N f 0 \N 1 26417356 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 442870 2024-02-28 23:31:08.684 2024-02-28 23:41:09.862 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which r https://example.com/ 756 442781 442781.442870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4185569873063 0 \N \N f 0 \N 1 197649654 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 437179 2024-02-24 13:29:19.004 2024-02-24 13:39:20.281 \N Letter bank officer fast use a. She chance including m https://example.com/ 14785 436837 436837.437179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57696144294204 0 \N \N f 0 \N 0 213309249 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 443264 2024-02-29 10:14:45.88 2024-02-29 10:24:48.067 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age https://example.com/ 20546 443251 443251.443264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5377028205189 0 \N \N f 0 \N 0 10707561 0 f f \N \N \N \N 443251 \N 0 0 \N \N f \N 440668 2024-02-27 15:18:20.959 2024-02-27 15:28:22.223 \N Bank one body pull the expect. Issue play without parent line politica https://example.com/ 14271 440666 440641.440660.440666.440668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1340931075839 0 \N \N f 0 \N 0 63825915 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 437207 2024-02-24 13:53:16.866 2024-02-24 14:03:17.994 \N Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nCommuni https://example.com/ 2029 437146 437146.437207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.24522501847353 0 \N \N f 0 \N 0 140454295 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 437191 2024-02-24 13:39:06.948 2024-02-24 13:49:08.651 \N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg https://example.com/ 7583 437182 437044.437078.437151.437165.437182.437191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6815317945392 0 \N \N f 0 \N 0 89044640 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 435847 2024-02-23 05:11:41.225 2024-02-23 05:21:42.56 Test rock daughter nation moment. Article want structure c Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive. https://example.com/ 7558 \N 435847 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2985443460791 0 \N \N f 0 \N 13 11232171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440659 2024-02-27 15:12:39.657 2024-02-27 15:22:41.533 \N Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single p https://example.com/ 5779 440633 440633.440659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3045516096751 0 \N \N f 0 \N 0 222711439 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437049 2024-02-24 11:11:08.441 2024-02-24 11:21:10.397 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun li https://example.com/ 12102 437044 437044.437049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74787513063138 0 \N \N f 0 \N 0 239866879 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437227 2024-02-24 14:06:48.47 2024-02-24 14:16:49.631 \N Order care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer ma https://example.com/ 19777 437224 437089.437161.437224.437227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1173341619093 0 \N \N f 0 \N 0 239376736 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 436882 2024-02-24 03:31:09.894 2024-02-24 03:41:11.346 \N Collection friend offer involve partner sense policy election. Decade the within other. Role https://example.com/ 20619 436720 436720.436882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7552549530134 0 \N \N f 0 \N 0 225603773 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437219 2024-02-24 14:01:34.439 2024-02-24 14:11:35.813 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Ind https://example.com/ 1769 436984 436720.436750.436799.436959.436984.437219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5551343529608 0 \N \N f 0 \N 0 166113229 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437225 2024-02-24 14:03:44.191 2024-02-24 14:13:46.099 \N Which only rich free agreement. Likely court exist south us rock. Base ad https://example.com/ 18372 435806 435806.437225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1047626851964 0 \N \N f 0 \N 0 177616021 0 f f \N \N \N \N 435806 \N 0 0 \N \N f \N 437054 2024-02-24 11:33:56.732 2024-02-24 11:43:59.318 Way majority believe feeling. Their see da Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog. https://example.com/ 5455 \N 437054 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 4.18143965627621 0 \N \N f 0 \N 3 231151445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437671 2024-02-24 20:44:20.638 2024-02-24 20:54:22.334 \N Physical woman wait https://example.com/ 9916 437454 437454.437671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5181018928438 0 \N \N f 0 \N 0 27258724 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 437164 2024-02-24 13:14:34.869 2024-02-24 13:24:36.206 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scien https://example.com/ 14472 437157 435905.436208.437157.437164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1520312080736 0 \N \N f 0 \N 1 124679054 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 437202 2024-02-24 13:49:48.749 2024-02-24 13:59:49.816 \N Compare strategy https://example.com/ 10608 437130 435231.437130.437202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5659631530067 0 \N \N f 0 \N 0 105224984 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 437130 2024-02-24 12:48:17.283 2024-02-24 12:58:18.807 \N Foot upon smile pass house significant result small. Some hard religious consum https://example.com/ 977 435231 435231.437130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.432887412845986 0 \N \N f 0 \N 1 14918709 0 f f \N \N \N \N 435231 \N 0 0 \N \N f \N 437196 2024-02-24 13:43:52.208 2024-02-24 13:53:53.776 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address de https://example.com/ 16505 437040 436977.437040.437196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.07261436545763 0 \N \N f 0 \N 0 133400932 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 441144 2024-02-27 21:54:24.602 2024-02-27 22:04:26.028 \N Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone https://example.com/ 20511 440993 440988.440993.441144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1314195207244 0 \N \N f 0 \N 2 157355637 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 437204 2024-02-24 13:51:01.301 2024-02-24 14:01:03.234 \N Probably agent catch computer difficult p https://example.com/ 20674 437158 437044.437158.437204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12534309192888 0 \N \N f 0 \N 4 5385898 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437193 2024-02-24 13:41:03.436 2024-02-24 13:51:04.474 Main anyone difficult radio su Summer past te https://example.com/ 14472 \N 437193 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 15.5111037657451 0 \N \N f 0 \N 0 165670119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436734 2024-02-23 23:35:08.901 2024-02-23 23:45:10.395 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. https://example.com/ 19601 436339 238583.436180.436339.436734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2047133887881 0 \N \N f 0 \N 0 173464771 0 f f \N \N \N \N 238583 \N 0 0 \N \N f \N 437335 2024-02-24 15:04:30.811 2024-02-24 15:14:31.942 \N Side project push give final mind smile. This my culture upon those stay responsibi https://example.com/ 19910 437327 427941.437327.437335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.8208215163752 0 \N \N f 0 \N 0 178391841 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437170 2024-02-24 13:24:43.887 2024-02-24 13:34:44.847 Human guy both. Return once place four whatever. Like voice war instit Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship. https://example.com/ 1039 \N 437170 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.0295897715006 0 \N \N f 0 \N 0 60938558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440660 2024-02-27 15:13:55.14 2024-02-27 15:23:56.406 \N Body situation without keep first per. Financial magazin https://example.com/ 746 440641 440641.440660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77310160201088 0 \N \N f 0 \N 2 164859805 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 441556 2024-02-28 08:04:50.971 2024-02-28 08:14:53.25 Hotel black matter recently idea particular. Manager acros Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement https://example.com/ 1136 \N 441556 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 7.99530946885408 0 \N \N f 0 \N 0 115299755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437019 2024-02-24 09:35:37.225 2024-02-24 09:45:38.095 \N Right term sell shoulder. Next chair base young https://example.com/ 2525 436849 436709.436849.437019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20158371144957 0 \N \N f 0 \N 1 195276848 0 f f \N \N \N \N 436709 \N 0 0 \N \N f \N 440665 2024-02-27 15:16:10.887 2024-02-27 15:26:12.086 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather https://example.com/ 20220 440633 440633.440665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3326501812467 0 \N \N f 0 \N 0 17573820 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437214 2024-02-24 13:59:54.274 2024-02-24 14:09:56.441 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Shou https://example.com/ 18454 436959 436720.436750.436799.436959.437214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57881189330243 0 \N \N f 0 \N 0 96980094 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437212 2024-02-24 13:58:53.303 2024-02-24 14:08:54.207 Field rock decide physical role these produce camera. Scene Mrs concern patter Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality. https://example.com/ 3642 \N 437212 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.66166986377387 0 \N \N f 0 \N 0 140272516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437223 2024-02-24 14:03:28.196 2024-02-24 14:13:29.888 Hot society statement bed w Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certa https://example.com/ 698 \N 437223 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.90719531339558 0 \N \N f 0 \N 0 76851246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440671 2024-02-27 15:21:21 2024-02-27 15:31:22.43 \N Take throw line right your https://example.com/ 9364 440532 440132.440532.440671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1167273996757 0 \N \N f 0 \N 0 60864629 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 442099 2024-02-28 14:58:11.163 2024-02-28 15:08:12.568 \N May building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure hersel https://example.com/ 9107 442092 441843.441979.442087.442092.442099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6457325061329 0 \N \N f 0 \N 9 26878690 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443008 2024-02-29 02:28:13.471 2024-02-29 02:38:14.56 Community seat tend position recent will. Last old invest Direction fill away friend environmental paper. Camera director respond. Until write my top government. Of https://example.com/ 16649 \N 443008 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 25.4658721605638 0 \N \N f 0 \N 6 176838695 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437197 2024-02-24 13:44:01.648 2024-02-24 13:54:02.884 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how https://example.com/ 669 437181 437181.437197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5829548034389 0 \N \N f 0 \N 0 30541657 0 f f \N \N \N \N 437181 \N 0 0 \N \N f \N 440633 2024-02-27 14:52:19.175 2024-02-27 15:02:20.52 Wish join discuss brother worry talk final. De Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nAlthough thought fall today protect ago. Able institution offer author https://example.com/ 1438 \N 440633 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 19.4489777760554 0 \N \N f 0 \N 18 59203107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437032 2024-02-24 10:18:59.88 2024-02-24 10:29:02.007 Seek military only New here partner campaign right. Per occur happen very. Final career a https://example.com/ 13854 \N 437032 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 4.37118085849335 0 \N \N f 0 \N 0 172827540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437213 2024-02-24 13:59:23.69 2024-02-24 14:09:25.41 \N Network authority coach https://example.com/ 18016 437022 436981.437022.437213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8424241313543 0 \N \N f 0 \N 3 228840361 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 437211 2024-02-24 13:58:17.043 2024-02-24 14:08:18.498 \N Live child like read. Gas forget current. Heavy always sea worry gener https://example.com/ 20066 437044 437044.437211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5399424308236 0 \N \N f 0 \N 0 82740580 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 441856 2024-02-28 12:49:44.721 2024-02-28 12:59:47.19 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nTop g https://example.com/ 9330 441843 441843.441856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0994554412344 0 \N \N f 0 \N 1 39575533 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 437220 2024-02-24 14:01:47.376 2024-02-24 14:11:49.095 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. https://example.com/ 9349 436029 436028.436029.437220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2203584728895 0 \N \N f 0 \N 3 168380131 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440658 2024-02-27 15:09:10.289 2024-02-27 15:19:12.32 \N Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history https://example.com/ 13854 440249 440132.440175.440249.440658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2404556047931 0 \N \N f 0 \N 0 34685610 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 437101 2024-02-24 12:36:41.977 2024-02-24 12:46:43.765 \N Great how before current effort because. Simply increase really start. Fr https://example.com/ 11288 437059 437059.437101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2970968086344 0 \N \N f 0 \N 0 173020677 0 f f \N \N \N \N 437059 \N 0 0 \N \N f \N 431877 2024-02-19 21:23:38.677 2024-02-26 13:45:27.47 Yard someone shake fina Check worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nDetermine evidence bar https://example.com/ 16353 \N 431877 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 2.2474029376038 0 \N \N f 0 \N 11 37195078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440993 2024-02-27 19:51:16.049 2024-02-27 20:01:17.805 \N They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nProject them draw walk if significant wrong into. Course even bel https://example.com/ 17526 440988 440988.440993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.49510090370933 0 \N \N f 0 \N 7 127088241 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 437228 2024-02-24 14:06:56.408 2024-02-24 14:16:57.951 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nWonder check lead door. Herself safe believe https://example.com/ 6515 437220 436028.436029.437220.437228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.72290587371884 0 \N \N f 0 \N 2 123795033 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 440559 2024-02-27 13:50:58.401 2024-02-27 14:00:59.95 Republican plan ever. Avoid past strong. Cente Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout iss https://example.com/ 2529 \N 440559 \N \N \N \N \N \N \N \N art \N ACTIVE \N 12.3509194134879 0 \N \N f 0 \N 1 230898135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441123 2024-02-27 21:34:30.168 2024-02-27 21:44:31.359 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card any https://example.com/ 17103 440959 440959.441123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5942114626822 0 \N \N f 0 \N 0 215922595 0 f f \N \N \N \N 440959 \N 0 0 \N \N f \N 437252 2024-02-24 14:23:39.904 2024-02-24 14:33:40.966 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Tu https://example.com/ 21485 437230 437183.437188.437194.437206.437230.437252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6966590729247 0 \N \N f 0 \N 3 39180078 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 437161 2024-02-24 13:12:19.075 2024-02-24 13:22:20.062 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star https://example.com/ 17953 437089 437089.437161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.65698646106298 0 \N \N f 0 \N 2 245607072 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 437224 2024-02-24 14:03:42.992 2024-02-24 14:13:44.097 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality ite https://example.com/ 17014 437161 437089.437161.437224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8876340696726 0 \N \N f 0 \N 1 52094812 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 437226 2024-02-24 14:04:51.2 2024-02-24 14:14:53.041 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussio https://example.com/ 814 437052 436720.437052.437226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40953384518966 0 \N \N f 0 \N 2 85141031 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437217 2024-02-24 14:00:44.559 2024-02-24 14:10:45.748 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nThroughout which address https://example.com/ 17227 437204 437044.437158.437204.437217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7222630191972 0 \N \N f 0 \N 3 107173361 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 436895 2024-02-24 04:06:26.392 2024-02-24 04:16:27.83 Author travel realize. Face represent brin Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine. https://example.com/ 708 \N 436895 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4144598016359 0 \N \N f 0 \N 4 164226641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437281 2024-02-24 14:40:34.038 2024-02-24 14:50:35.157 \N Artist sound return full resource lay people. Attention blue in https://example.com/ 16808 436837 436837.437281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6369201940613 0 \N \N f 0 \N 1 192115379 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437306 2024-02-24 14:48:41.05 2024-02-24 14:58:42.278 \N Drug you class operation. Have job sense. Face thank factor perform. North audience r https://example.com/ 13204 436895 436895.437306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.644115305928 0 \N \N f 0 \N 0 203694366 0 f f \N \N \N \N 436895 \N 0 0 \N \N f \N 436984 2024-02-24 08:55:26.421 2024-02-24 09:05:27.808 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Sudde https://example.com/ 20669 436959 436720.436750.436799.436959.436984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5758801557111 0 \N \N f 0 \N 1 124687423 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 438680 2024-02-25 21:44:12.929 2024-02-25 21:54:14.308 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nStrong of create prevent choose final https://example.com/ 2652 438670 438670.438680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3685059951983 0 \N \N f 0 \N 2 81353906 0 f f \N \N \N \N 438670 \N 0 0 \N \N f \N 440957 2024-02-27 19:17:13.833 2024-02-27 19:27:15.1 Full both sound century close car Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody as https://example.com/ 13174 \N 440957 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 20.9342091855869 0 \N \N f 0 \N 0 24594064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437247 2024-02-24 14:22:20.412 2024-02-24 14:32:21.834 \N Film happen almost than. Staff stuff life concern investment ad https://example.com/ 1198 437213 436981.437022.437213.437247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4889059418841 0 \N \N f 0 \N 2 167159894 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 440960 2024-02-27 19:19:31.961 2024-02-27 19:29:33.334 \N Direction business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. https://example.com/ 1611 440622 440622.440960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0843415530074 0 \N \N f 0 \N 2 210761619 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437072 2024-02-24 12:05:06.307 2024-02-24 12:15:07.405 Family material upon Democrat. The For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nMember car law politics in. Blue sometimes perform care d https://example.com/ 18629 \N 437072 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.8513073325001 0 \N \N f 0 \N 3 190232680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437232 2024-02-24 14:12:04.305 2024-02-24 14:22:06.132 Investment bad cultural turn with h Outside mother movement https://example.com/ 14650 \N 437232 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 5.7251834980168 0 \N \N f 0 \N 0 164062480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436909 2024-02-24 04:28:37.089 2024-02-24 04:38:38.208 Theory teach dream home past. Population lose establish Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently https://example.com/ 3979 \N 436909 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 29.2918516659537 0 \N \N f 0 \N 8 66985178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436028 2024-02-23 11:00:02.742 2024-02-23 11:10:04.401 According shak Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live f https://example.com/ 11999 \N 436028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.20447166164701 0 \N \N f 0 \N 88 109822968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437209 2024-02-24 13:54:41.082 2024-02-24 14:04:42.3 \N Move treatment rock open. Ev https://example.com/ 18784 437168 437044.437168.437209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9649534129258 0 \N \N f 0 \N 0 135879082 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437262 2024-02-24 14:26:59.238 2024-02-24 14:37:01.023 \N Red tough always try. Police clear hundred box. Ahead https://example.com/ 20129 437257 420220.437257.437262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1076258741986 0 \N \N f 0 \N 0 15836558 0 f f \N \N \N \N 420220 \N 0 0 \N \N f \N 437268 2024-02-24 14:32:45.853 2024-02-24 14:42:46.913 \N Field rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain someti https://example.com/ 18188 436909 436909.437268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59029106532667 0 \N \N f 0 \N 0 177295720 0 f f \N \N \N \N 436909 \N 0 0 \N \N f \N 436826 2024-02-24 01:48:09.439 2024-02-24 01:58:11.722 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young https://example.com/ 21509 436809 436669.436809.436826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.86803814633513 0 \N \N f 0 \N 1 142759280 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 437240 2024-02-24 14:19:54.332 2024-02-24 14:29:56.332 \N Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their atto https://example.com/ 15409 437092 437008.437056.437092.437240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6736424810422 0 \N \N f 0 \N 1 24061112 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437110 2024-02-24 12:42:38.083 2024-02-24 12:52:39.369 Improve most form final b Politics or often interview. Chair value thre https://example.com/ 21393 \N 437110 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.2875444744651 0 \N \N f 0 \N 2 179181422 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437187 2024-02-24 13:37:17.195 2024-02-24 13:47:18.411 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task econo https://example.com/ 11329 437044 437044.437187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4814379705854 0 \N \N f 0 \N 0 194223211 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437267 2024-02-24 14:30:21.926 2024-02-24 14:40:23.212 \N Pretty https://example.com/ 20837 436952 436894.436952.437267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5686260043104 0 \N \N f 0 \N 0 144949137 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 437246 2024-02-24 14:22:05.715 2024-02-24 14:32:06.825 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible oppor https://example.com/ 19494 437083 436752.437083.437246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62417042626799 0 \N \N f 0 \N 1 151503467 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 440664 2024-02-27 15:15:08.89 2024-02-27 15:25:10.694 Record recent evening worry. Direction thought property under later. Whate Family material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never. https://example.com/ 12188 \N 440664 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 29.9112061967495 0 \N \N f 0 \N 0 188450778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437244 2024-02-24 14:21:46.715 2024-02-24 14:31:48.044 \N Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile qui https://example.com/ 2757 437233 437233.437244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.67320119748459 0 \N \N f 0 \N 0 19861628 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440997 2024-02-27 19:55:14.65 2024-02-27 20:05:16.255 \N Local college movie start lose good either if. Him https://example.com/ 20036 440798 440798.440997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90201186702771 0 \N \N f 0 \N 0 117479060 0 f f \N \N \N \N 440798 \N 0 0 \N \N f \N 437325 2024-02-24 15:00:43.712 2024-02-24 15:10:45.675 \N Main anyone difficult radio sure. Question choose consider espe https://example.com/ 17109 427941 427941.437325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8699508392934 0 \N \N f 0 \N 0 19144659 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437336 2024-02-24 15:06:03.097 2024-02-24 15:16:05.112 \N By fight several talk. Minute probably fish player https://example.com/ 928 437301 437301.437336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6115819355846 0 \N \N f 0 \N 0 109493176 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437257 2024-02-24 14:24:39.705 2024-02-24 14:34:40.766 \N Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody cent https://example.com/ 2098 420220 420220.437257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64095351894009 0 \N \N f 0 \N 1 61144447 0 f f \N \N \N \N 420220 \N 0 0 \N \N f \N 437350 2024-02-24 15:13:05.028 2024-02-24 15:23:06.191 \N Happen should somebody world southern player wi https://example.com/ 21166 435952 435402.435952.437350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9673425324082 0 \N \N f 0 \N 1 20828393 0 f f \N \N \N \N 435402 \N 0 0 \N \N f \N 441720 2024-02-28 11:10:24.189 2024-02-28 11:20:26.726 \N Month explain matter south. https://example.com/ 19735 441719 441695.441719.441720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.17447415693632 0 \N \N f 0 \N 1 242907390 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 437043 2024-02-24 10:56:40.93 2024-02-24 11:06:42.322 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nEdge card save. Whether manager alw https://example.com/ 1224 436752 436752.437043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34357652304421 0 \N \N f 0 \N 0 39138219 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 436130 2024-02-23 12:55:52.679 2024-02-23 13:05:54.102 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list s https://example.com/ 16154 436102 435944.436102.436130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2710045706186 0 \N \N f 0 \N 2 51800338 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 437266 2024-02-24 14:30:16.07 2024-02-24 14:40:17.545 \N Never able over relate dark up dinner. Same daughter everyone https://example.com/ 15556 437247 436981.437022.437213.437247.437266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.86481165999496 0 \N \N f 0 \N 1 167284072 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 436102 2024-02-23 12:30:54.495 2024-02-23 12:40:55.355 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nNew here partner campaign right. Per occur happen very. Final care https://example.com/ 15088 435944 435944.436102 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1258754666493 0 \N \N f 0 \N 3 588767 0 f f \N \N \N \N 435944 \N 0 0 \N \N f \N 437273 2024-02-24 14:36:09.292 2024-02-24 14:46:10.524 \N Maybe remain help everybody beat subject suffer heavy https://example.com/ 1737 437201 437146.437175.437201.437273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9765851826108 0 \N \N f 0 \N 2 160817144 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 437340 2024-02-24 15:07:11.184 2024-02-24 15:17:12.883 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six https://example.com/ 11776 437339 437339.437340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8430602627369 0 \N \N f 0 \N 0 34603206 0 f f \N \N \N \N 437339 \N 0 0 \N \N f \N 437295 2024-02-24 14:45:56.5 2024-02-24 14:55:58.008 Can operation lose dinner tax meet. Goal reflect when next. Card painting want a Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin ed https://example.com/ 19613 \N 437295 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 25.7156333768599 0 \N \N f 0 \N 0 19339730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437299 2024-02-24 14:47:35.285 2024-02-24 14:57:36.961 Successful power down must next system pull provide Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern. https://example.com/ 15594 \N 437299 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.1498930481459 0 \N \N f 0 \N 0 48551325 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437291 2024-02-24 14:43:19.611 2024-02-24 14:53:20.977 \N Machine thus avoid result sing response. Leader ou https://example.com/ 10690 436453 436316.436453.437291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7646016544166 0 \N \N f 0 \N 0 32451733 0 f f \N \N \N \N 436316 \N 0 0 \N \N f \N 437237 2024-02-24 14:16:57.639 2024-02-24 14:26:58.666 \N Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing m https://example.com/ 7827 436826 436669.436809.436826.437237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6869044735273 0 \N \N f 0 \N 0 34573835 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 437326 2024-02-24 15:00:55.667 2024-02-24 15:10:57.331 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Alth https://example.com/ 18625 437238 437238.437326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7520805156983 0 \N \N f 0 \N 2 109834690 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 440674 2024-02-27 15:26:29.56 2024-02-27 15:36:31.078 \N Standard choose white. Yard https://example.com/ 7674 440560 440422.440523.440538.440560.440674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.28594296774091 0 \N \N f 0 \N 0 52740260 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 437331 2024-02-24 15:02:51.065 2024-02-24 15:12:53.422 \N Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nMaterial focus experience picture. Future still full blood suggest win. M https://example.com/ 4128 433820 406816.433820.437331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2548064431718 0 \N \N f 0 \N 0 108408044 0 f f \N \N \N \N 406816 \N 0 0 \N \N f \N 435952 2024-02-23 08:41:11.675 2024-02-23 08:51:13.491 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job https://example.com/ 12278 435402 435402.435952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20862766298164 0 \N \N f 0 \N 2 162586138 0 f f \N \N \N \N 435402 \N 0 0 \N \N f \N 440666 2024-02-27 15:16:17.758 2024-02-27 15:26:19.171 \N Run music mean unit. Above here blue https://example.com/ 1307 440660 440641.440660.440666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8289330672647 0 \N \N f 0 \N 1 147530674 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 437354 2024-02-24 15:17:46.567 2024-02-24 15:27:48.339 \N Between remember watch image save win determine. https://example.com/ 14545 437089 437089.437354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1205208713109 0 \N \N f 0 \N 0 217485189 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 440499 2024-02-27 12:16:05.672 2024-02-27 12:26:07.258 \N Not find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach b https://example.com/ 8729 440488 440463.440487.440488.440499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4007032271919 0 \N \N f 0 \N 0 248970072 0 f f \N \N \N \N 440463 \N 0 0 \N \N f \N 437322 2024-02-24 14:59:04.569 2024-02-24 15:09:06.17 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administ https://example.com/ 19346 437044 437044.437322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1747507588521 0 \N \N f 0 \N 1 232316445 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437369 2024-02-24 15:30:42.834 2024-02-24 15:40:43.65 \N Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may abo https://example.com/ 19966 437361 437233.437270.437311.437319.437348.437352.437360.437361.437369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4726720902227 0 \N \N f 0 \N 0 43433983 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 436883 2024-02-24 03:33:59.762 2024-02-24 03:44:01.477 \N Mention trip someone idea until physical https://example.com/ 17639 436729 436729.436883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.89510382093454 0 \N \N f 0 \N 0 38366030 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 440961 2024-02-27 19:22:37.525 2024-02-27 19:32:39.427 Weight statement best almost Act lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction. https://example.com/ 17041 \N 440961 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.1398205407169 0 \N \N f 0 \N 0 23326614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437245 2024-02-24 14:21:57.822 2024-02-24 14:31:59.189 \N Them re https://example.com/ 21320 436973 436753.436973.437245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.06507780709357 0 \N \N f 0 \N 0 74944358 0 f f \N \N \N \N 436753 \N 0 0 \N \N f \N 437288 2024-02-24 14:42:27.978 2024-02-24 14:52:28.904 \N Whether special arm economy house. Us s https://example.com/ 19381 437274 420192.437274.437288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5135621169951 0 \N \N f 0 \N 1 212028072 0 f f \N \N \N \N 420192 \N 0 0 \N \N f \N 437298 2024-02-24 14:47:11.196 2024-02-24 14:57:12.111 \N Over partner wear d https://example.com/ 20687 437266 436981.437022.437213.437247.437266.437298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1474255292334 0 \N \N f 0 \N 0 29435113 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 440675 2024-02-27 15:27:53.161 2024-02-27 15:37:54.429 \N Girl fire bring middle popular. And suffer its througho https://example.com/ 20090 440622 440622.440675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6652914335696 0 \N \N f 0 \N 0 218840185 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437297 2024-02-24 14:46:28.18 2024-02-24 14:56:29.037 \N Billion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive nec https://example.com/ 14260 436752 436752.437297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8510052722205 0 \N \N f 0 \N 0 215826654 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437282 2024-02-24 14:41:02.355 2024-02-24 14:51:03.99 \N Somebody cold factor t https://example.com/ 17541 437273 437146.437175.437201.437273.437282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65843923204517 0 \N \N f 0 \N 1 160018241 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 437305 2024-02-24 14:48:30.677 2024-02-24 14:58:32.263 \N Chec https://example.com/ 13921 437222 437044.437158.437204.437217.437222.437305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.12002441555196 0 \N \N f 0 \N 0 81972904 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437250 2024-02-24 14:23:12.723 2024-02-24 14:33:13.867 \N Director far fact order bit collect https://example.com/ 4064 437238 437238.437250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2577334629772 0 \N \N f 0 \N 0 109723680 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 437285 2024-02-24 14:41:35.311 2024-02-24 14:51:37.037 Right term sell shoulder. Next chair base young skill fall myself. Stage top p Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. W https://example.com/ 19668 \N 437285 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 5.39204159866589 0 \N \N f 0 \N 0 56895963 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437404 2024-02-24 16:00:05.611 2024-02-24 16:00:11.509 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street ques https://example.com/ 18945 437403 437403.437404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8077271949614 0 \N \N f 0 \N 0 109154931 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N 440676 2024-02-27 15:28:28.305 2024-02-27 15:38:30.289 Positive return free discuss. Value vote report. Ten market box. A fe Billion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear. https://example.com/ 1705 \N 440676 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.8938085371265 0 \N \N f 0 \N 0 31994041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441200 2024-02-27 22:54:41.017 2024-02-27 23:04:42.588 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply ea https://example.com/ 15273 441191 441147.441167.441184.441191.441200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5616055302719 0 \N \N f 0 \N 0 8843302 0 f f \N \N \N \N 441147 \N 0 0 \N \N f \N 437341 2024-02-24 15:07:36.023 2024-02-24 15:17:37.235 \N Lead between race contain politics. https://example.com/ 19174 437203 437044.437158.437189.437203.437341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7599988976422 0 \N \N f 0 \N 0 67276928 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437338 2024-02-24 15:06:51.682 2024-02-24 15:16:53.562 \N There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier gues https://example.com/ 18640 427941 427941.437338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3931078037274 0 \N \N f 0 \N 1 141741772 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437327 2024-02-24 15:01:44.66 2024-02-24 15:11:45.445 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat bette https://example.com/ 6602 427941 427941.437327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4284355406947 0 \N \N f 0 \N 1 35376357 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 436218 2024-02-23 13:58:31.132 2024-02-23 14:08:32.673 Wonder check lead door. Herself safe believe show assume will. Level tell Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever elect https://example.com/ 2204 \N 436218 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.123696103161 0 \N \N f 0 \N 7 50931764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437332 2024-02-24 15:02:58.377 2024-02-24 15:12:59.526 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital https://example.com/ 2293 437326 437238.437326.437332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6863351435055 0 \N \N f 0 \N 1 244586605 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 437339 2024-02-24 15:07:10.819 2024-02-24 15:17:11.874 Radio have every concern. Letter fund arti \N https://example.com/ 21401 \N 437339 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 28.5111531630744 0 \N \N f 0 \N 1 248253948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437342 2024-02-24 15:07:50.932 2024-02-24 15:17:52.407 \N Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. https://example.com/ 8541 437044 437044.437342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2044948033272 0 \N \N f 0 \N 0 20173497 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 433820 2024-02-21 14:33:35.823 2024-02-21 14:43:36.903 \N Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. Li https://example.com/ 7125 406816 406816.433820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83936719445524 0 \N \N f 0 \N 1 143921761 0 f f \N \N \N \N 406816 \N 0 0 \N \N f \N 437330 2024-02-24 15:02:19.029 2024-02-24 15:12:21.094 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. https://example.com/ 18306 437301 437301.437330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9452628254056 0 \N \N f 0 \N 6 15948158 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 436339 2024-02-23 15:53:46.46 2024-02-23 16:03:48.53 \N Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear r https://example.com/ 14795 436180 238583.436180.436339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6066206190559 0 \N \N f 0 \N 1 46380428 0 f f \N \N \N \N 238583 \N 0 0 \N \N f \N 437351 2024-02-24 15:15:27.348 2024-02-24 15:25:29.212 \N Edge give like skill yard. Government https://example.com/ 12175 437008 437008.437351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1321066536475 0 \N \N f 0 \N 1 204324481 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437315 2024-02-24 14:54:03.6 2024-02-24 15:04:05.115 Various discussion light page war your have. Get generation market through oper Their election city process. Agency early its stock. Recent while population special serve eat among. Time relationship netwo https://example.com/ 21614 \N 437315 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.956272376619 0 \N \N f 0 \N 0 166080158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437400 2024-02-24 15:58:43.571 2024-02-24 16:08:45.555 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago te https://example.com/ 20599 437396 437396.437400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17346292095231 0 \N \N f 0 \N 0 224788991 0 f f \N \N \N \N 437396 \N 0 0 \N \N f \N 434156 2024-02-21 18:34:45.823 2024-02-21 18:44:47.106 Prevent machine source white and. Fact Bag couple hot buy yourself serve bit. For even true d https://example.com/ 17082 \N 434156 \N \N \N \N \N \N \N \N art \N ACTIVE \N 14.5975624824609 0 \N \N f 0 \N 1 230457578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440685 2024-02-27 15:36:11.159 2024-02-27 15:46:12.113 \N Off should https://example.com/ 7979 434156 434156.440685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04725599430953 0 \N \N f 0 \N 0 66809260 0 f f \N \N \N \N 434156 \N 0 0 \N \N f \N 437349 2024-02-24 15:12:27.241 2024-02-24 15:22:29.047 \N Tax kid loss hear ahead common best s https://example.com/ 6537 437343 437233.437343.437349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6765899155084 0 \N \N f 0 \N 0 231289778 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437274 2024-02-24 14:36:12.923 2024-02-24 14:46:13.566 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nStill power agent https://example.com/ 688 420192 420192.437274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12400756029253 0 \N \N f 0 \N 2 89648370 0 f f \N \N \N \N 420192 \N 0 0 \N \N f \N 437358 2024-02-24 15:20:11.96 2024-02-24 15:30:13.151 \N Return bag discover indicate record tax occur. Interview green past mother https://example.com/ 20778 437301 437301.437358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7900851724074 0 \N \N f 0 \N 0 4155441 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437402 2024-02-24 15:59:33.117 2024-02-24 16:09:34.515 \N Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nGeneral against page door. Attention https://example.com/ 1785 436899 436899.437402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51209192533177 0 \N \N f 0 \N 1 90933613 0 f f \N \N \N \N 436899 \N 0 0 \N \N f \N 443310 2024-02-29 11:06:36.646 2024-02-29 11:16:37.804 \N Mother up probably anything nation Mrs participant manage. Then standar https://example.com/ 21292 443302 443295.443296.443302.443310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9590376794978 0 \N \N f 0 \N 0 102654322 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 437343 2024-02-24 15:08:10.812 2024-02-24 15:18:11.793 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her paren https://example.com/ 9352 437233 437233.437343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.294219625919645 0 \N \N f 0 \N 1 67162764 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437366 2024-02-24 15:28:56.211 2024-02-24 15:38:57.239 \N Standard choose white. Yard would college him pass. Eye in education both. https://example.com/ 20182 437276 437276.437366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.931733213112 0 \N \N f 0 \N 0 140805712 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 437355 2024-02-24 15:19:28.132 2024-02-24 15:29:29.891 \N Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth https://example.com/ 715 437344 427941.437333.437344.437355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8912267574968 0 \N \N f 0 \N 0 221177827 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 443286 2024-02-29 10:50:08.456 2024-02-29 11:00:09.628 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound mu https://example.com/ 8729 443282 443105.443282.443286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1768445997146 0 \N \N f 0 \N 4 183708426 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443290 2024-02-29 10:51:15.005 2024-02-29 11:01:16.516 \N Edge lot space military without many term others. Religious wear eco https://example.com/ 16124 443274 443274.443290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9452578488408 0 \N \N f 0 \N 2 219267076 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 437373 2024-02-24 15:39:39.293 2024-02-24 15:49:41.733 \N Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. T https://example.com/ 4322 437330 437301.437330.437373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.000178934868841907 0 \N \N f 0 \N 5 46043747 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437388 2024-02-24 15:54:23.965 2024-02-24 16:04:24.877 \N Own machine table garden necessary. Go sea kitchen am https://example.com/ 19335 437238 437238.437388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.58939946658267 0 \N \N f 0 \N 1 30108890 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 437387 2024-02-24 15:54:01.765 2024-02-24 16:04:02.862 \N Personal factor big better. Itself up senior health. https://example.com/ 18306 437381 437233.437381.437387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3305543190118 0 \N \N f 0 \N 2 118598330 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440683 2024-02-27 15:33:01.618 2024-02-27 15:43:03.399 \N Detail di https://example.com/ 1175 440646 440527.440531.440604.440646.440683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9866676385487 0 \N \N f 0 \N 1 241820513 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440604 2024-02-27 14:29:52.53 2024-02-27 14:39:53.89 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common r https://example.com/ 642 440531 440527.440531.440604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7471503468451 0 \N \N f 0 \N 3 118770862 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 437368 2024-02-24 15:29:22.276 2024-02-24 15:39:23.515 Article discussio Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward ass https://example.com/ 12911 \N 437368 \N \N \N \N \N \N \N \N art \N ACTIVE \N 15.8932250167203 0 \N \N f 0 \N 0 65516913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437374 2024-02-24 15:40:00.268 2024-02-24 15:50:01.24 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter https://example.com/ 20897 437372 437372.437374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.70775871948821 0 \N \N f 0 \N 0 102618370 0 f f \N \N \N \N 437372 \N 0 0 \N \N f \N 440681 2024-02-27 15:32:29.488 2024-02-27 15:42:30.897 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip str https://example.com/ 19292 440622 440622.440681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0443902440225 0 \N \N f 0 \N 0 148993378 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437630 2024-02-24 19:29:11.919 2024-02-24 19:39:12.999 Structure require feel state Least start time do. Occur between avoid political use make. Nor no both ability others. https://example.com/ 8916 \N 437630 \N \N \N \N \N \N \N \N art \N ACTIVE \N 5.48772423212185 0 \N \N f 0 \N 1 49541875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435905 2024-02-23 07:10:20.911 2024-02-23 07:20:22.591 Watch tell middle above. Happen move Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality accordin https://example.com/ 5085 \N 435905 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 9.08681008891744 0 \N \N f 0 \N 14 200662002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436208 2024-02-23 13:50:46.574 2024-02-23 14:00:47.638 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nB https://example.com/ 19117 435905 435905.436208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8893163533511 0 \N \N f 0 \N 4 121380566 0 f f \N \N \N \N 435905 \N 0 0 \N \N f \N 437393 2024-02-24 15:55:30.092 2024-02-24 16:05:31.5 \N How https://example.com/ 8360 437199 436926.437073.437199.437393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8110576034596 0 \N \N f 0 \N 0 169880158 0 f f \N \N \N \N 436926 \N 0 0 \N \N f \N 437428 2024-02-24 16:18:01.126 2024-02-24 16:28:02.375 \N Fly include one church TV air. Democrat instituti https://example.com/ 837 437155 436811.437155.437428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1994201100551 0 \N \N f 0 \N 0 42971484 0 f f \N \N \N \N 436811 \N 0 0 \N \N f \N 437392 2024-02-24 15:55:15.785 2024-02-24 16:05:17.277 \N Think article evening from run either simply. Central water economic behavior. Owner oppor https://example.com/ 19154 437356 437044.437337.437356.437392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1815298864424 0 \N \N f 0 \N 1 172574884 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437385 2024-02-24 15:49:33.325 2024-02-24 15:59:34.753 \N Measure enjoy other scientist simple professor better. Ch https://example.com/ 14074 436837 436837.437385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8943585054001 0 \N \N f 0 \N 1 108470653 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 436466 2024-02-23 17:33:48.106 2024-02-23 17:43:50.179 Focus available yeah law. Down there avoid Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network https://example.com/ 14688 \N 436466 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.9713867856971 0 \N \N f 0 \N 10 104965227 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440973 2024-02-27 19:33:20.723 2024-02-27 19:43:21.974 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer st https://example.com/ 18828 440830 440830.440973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7199297229538 0 \N \N f 0 \N 1 160608705 0 f f \N \N \N \N 440830 \N 0 0 \N \N f \N 437398 2024-02-24 15:57:49.204 2024-02-24 16:07:50.919 \N Down item https://example.com/ 5387 437397 437372.437397.437398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31799834784078 0 \N \N f 0 \N 0 13082959 0 f f \N \N \N \N 437372 \N 0 0 \N \N f \N 437424 2024-02-24 16:14:30.34 2024-02-24 16:24:31.779 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical c https://example.com/ 2528 437415 437320.437415.437424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0352554367295 0 \N \N f 0 \N 0 97388099 0 f f \N \N \N \N 437320 \N 0 0 \N \N f \N 435359 2024-02-22 18:23:43.972 2024-02-22 18:33:44.998 Deep some relate building buy then. Letter co Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nQuestion produce break listen toward choi https://example.com/ 14663 \N 435359 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 18.2588812289554 0 \N \N f 0 \N 14 206848 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436350 2024-02-23 15:58:36.991 2024-02-23 16:08:38.773 \N In grow start way president as compare. Away perform law social research front soon. Own run either right affect https://example.com/ 21430 435786 435359.435786.436350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8394623467431 0 \N \N f 0 \N 1 25547046 0 f f \N \N \N \N 435359 \N 0 0 \N \N f \N 440475 2024-02-27 11:40:01.678 2024-02-27 11:50:02.724 Could computer meet. Board response member ba Animal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody. https://example.com/ 21303 \N 440475 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 20.2134186032296 0 \N \N f 0 \N 3 37787462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440689 2024-02-27 15:38:09.596 2024-02-27 15:48:11.168 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nSuffer same investment. Fini https://example.com/ 19087 439504 439504.440689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0764138193242 0 \N \N f 0 \N 0 118250264 0 f f \N \N \N \N 439504 \N 0 0 \N \N f \N 437409 2024-02-24 16:01:08.143 2024-02-24 16:11:09.54 \N Get executiv https://example.com/ 647 437324 437190.437318.437324.437409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6709697318678 0 \N \N f 0 \N 0 143841039 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N 437318 2024-02-24 14:56:29.698 2024-02-24 15:06:31.079 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article k https://example.com/ 9705 437190 437190.437318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5580913297331 0 \N \N f 0 \N 4 142748867 0 f f \N \N \N \N 437190 \N 0 0 \N \N f \N 437362 2024-02-24 15:24:15.144 2024-02-24 15:34:16.63 \N Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole r https://example.com/ 16809 437168 437044.437168.437362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5766801649783 0 \N \N f 0 \N 1 239730829 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437415 2024-02-24 16:06:36.4 2024-02-24 16:16:37.778 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. https://example.com/ 18119 437320 437320.437415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1918599992551 0 \N \N f 0 \N 1 114448143 0 f f \N \N \N \N 437320 \N 0 0 \N \N f \N 436331 2024-02-23 15:49:21.281 2024-02-23 15:59:22.377 Why long up fly difficult nature. Age condition practice ar Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nEver https://example.com/ 1534 \N 436331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9288782713127 0 \N \N f 0 \N 1 122830222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440411 2024-02-27 10:44:27.769 2024-02-27 10:54:28.47 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nGame during everybody only among. Exactly situation adult medical huge far. https://example.com/ 1173 440132 440132.440411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65068717470814 0 \N \N f 0 \N 0 110749329 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 437416 2024-02-24 16:08:13.076 2024-02-24 16:18:14.39 \N Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody cen https://example.com/ 14465 437414 436722.437413.437414.437416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49730949506752 0 \N \N f 0 \N 0 76160638 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 437413 2024-02-24 16:03:37.308 2024-02-24 16:13:39.192 \N Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. https://example.com/ 716 436722 436722.437413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.38812829919262 0 \N \N f 0 \N 2 5086925 0 f f \N \N \N \N 436722 \N 0 0 \N \N f \N 440686 2024-02-27 15:37:04.751 2024-02-27 15:47:06.056 \N Decade activ https://example.com/ 19151 440683 440527.440531.440604.440646.440683.440686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.911620114888 0 \N \N f 0 \N 0 30878998 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 437412 2024-02-24 16:03:10.638 2024-02-24 16:13:11.562 \N Remember draw realize. Include soon my person involve https://example.com/ 20502 437277 437238.437277.437412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.39817848177333 0 \N \N f 0 \N 0 131095113 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 437445 2024-02-24 16:34:27.042 2024-02-24 16:44:28.17 \N Federal anyone interview continue eat. The little employee whi https://example.com/ 7966 437396 437396.437445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.908830788293 0 \N \N f 0 \N 1 55151427 0 f f \N \N \N \N 437396 \N 0 0 \N \N f \N 437426 2024-02-24 16:15:54.024 2024-02-24 16:25:54.842 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular https://example.com/ 20837 437421 436977.437421.437426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.799588184214 0 \N \N f 0 \N 2 176041008 0 f f \N \N \N \N 436977 \N 0 0 \N \N f \N 437438 2024-02-24 16:28:17.324 2024-02-24 16:38:19.818 \N Born mill https://example.com/ 17291 437411 437408.437411.437438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2603325467575 0 \N \N f 0 \N 0 49646987 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 437423 2024-02-24 16:13:24.806 2024-02-24 16:23:26.351 \N First right set. Dinner third difficult next re https://example.com/ 21562 437026 437026.437423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8617480979657 0 \N \N f 0 \N 0 107185950 0 f f \N \N \N \N 437026 \N 0 0 \N \N f \N 440682 2024-02-27 15:32:54.708 2024-02-27 15:42:56.282 \N Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individua https://example.com/ 690 440422 440422.440682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.886023651122 0 \N \N f 0 \N 0 18594627 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440691 2024-02-27 15:40:36.279 2024-02-27 15:50:37.264 \N Area series street https://example.com/ 5499 440687 440520.440673.440687.440691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59744010472015 0 \N \N f 0 \N 0 164008260 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 437443 2024-02-24 16:32:55.89 2024-02-24 16:42:58.188 \N With establish effort able Republican west. Late know https://example.com/ 16808 437439 437218.437437.437439.437443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0234957858451 0 \N \N f 0 \N 4 129486821 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 437444 2024-02-24 16:34:21.145 2024-02-24 16:44:22.095 \N Every east political drug. Imp https://example.com/ 8037 437430 437233.437381.437387.437430.437444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7692770228257 0 \N \N f 0 \N 0 59219307 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440548 2024-02-27 13:29:36.605 2024-02-27 13:39:37.375 Decade activity affect another hear action. Well good power. Mr rock s Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nSpend democratic second find president walk model. Challenge https://example.com/ 828 \N 440548 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 26.9831066996089 0 \N \N f 0 \N 1 106636738 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440996 2024-02-27 19:54:03.741 2024-02-27 20:04:05.654 \N Matter training experience. Election carry thing them form alwa https://example.com/ 21323 440990 440764.440990.440996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1156425299642 0 \N \N f 0 \N 0 239724537 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441006 2024-02-27 19:57:32.021 2024-02-27 20:07:33.76 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity https://example.com/ 21334 441002 440692.441002.441006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.52216814642441 0 \N \N f 0 \N 0 38412962 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441001 2024-02-27 19:56:08.127 2024-02-27 20:06:09.851 Speak organization direction school minut Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely https://example.com/ 5519 \N 441001 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.20971632838274 0 \N \N f 0 \N 0 66640055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437468 2024-02-24 16:58:11.797 2024-02-24 17:08:13.816 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much https://example.com/ 17690 437465 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.7766649196757 0 \N \N f 0 \N 6 52728105 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437456 2024-02-24 16:45:14.909 2024-02-24 16:55:15.549 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. https://example.com/ 17316 437054 437054.437456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.941598990846799 0 \N \N f 0 \N 0 21218371 0 f f \N \N \N \N 437054 \N 0 0 \N \N f \N 440695 2024-02-27 15:47:41.487 2024-02-27 15:57:43.604 Both peace drug most bring institution. Mean become current address. West us Yourself debate term during boy. https://example.com/ 18680 \N 440695 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.2249949550058 0 \N \N f 0 \N 0 85669912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439901 2024-02-26 20:34:59.837 2024-02-26 20:45:01.151 Great idea age friend. Its financial fight need. Item somebody actually cou Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about https://example.com/ 21320 \N 439901 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 20.8594073965763 0 \N \N f 0 \N 0 1921332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440710 2024-02-27 15:55:13.075 2024-02-27 16:05:14.55 Such among bank c Learn international https://example.com/ 19021 \N 440710 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 19.7729484356826 0 \N \N f 0 \N 0 12759619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440717 2024-02-27 16:01:34.938 2024-02-27 16:11:36.994 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money de https://example.com/ 20018 440194 440180.440194.440717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3722306593019 0 \N \N f 0 \N 1 143825928 0 f f \N \N \N \N 440180 \N 0 0 \N \N f \N 440673 2024-02-27 15:24:29.293 2024-02-27 15:34:30.512 \N Fear size with rich skin decade community. Front either election mouth. Trip https://example.com/ 1817 440520 440520.440673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8229778293473 0 \N \N f 0 \N 2 165108993 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441035 2024-02-27 20:10:15.621 2024-02-27 20:20:16.656 \N Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece st https://example.com/ 629 440925 440898.440925.441035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59741023226178 0 \N \N f 0 \N 7 179278548 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 436981 2024-02-24 08:28:55.344 2024-02-24 08:38:56.379 Million significant throw build. Light sub Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish someti https://example.com/ 2460 \N 436981 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 14.2128513066654 0 \N \N f 0 \N 7 201473699 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436685 2024-02-23 21:48:27.985 2024-02-23 21:58:29.503 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently rese https://example.com/ 19281 436549 436549.436685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3717116084038 0 \N \N f 0 \N 1 139455185 0 f f \N \N \N \N 436549 \N 0 0 \N \N f \N 437346 2024-02-24 15:10:11.663 2024-02-24 15:20:13.234 \N Before wrong success power prevent notice. Hard former stock. Address rat https://example.com/ 8037 437328 437044.437328.437346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5482418426138 0 \N \N f 0 \N 1 98207371 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 441167 2024-02-27 22:30:17.972 2024-02-27 22:40:19.573 \N Run music mean unit. Ab https://example.com/ 16341 441147 441147.441167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39370485161592 0 \N \N f 0 \N 3 59601854 0 f f \N \N \N \N 441147 \N 0 0 \N \N f \N 441191 2024-02-27 22:49:22.632 2024-02-27 22:59:24.329 \N Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face https://example.com/ 964 441184 441147.441167.441184.441191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9031532137412 0 \N \N f 0 \N 1 248456698 0 f f \N \N \N \N 441147 \N 0 0 \N \N f \N 437458 2024-02-24 16:46:48.839 2024-02-24 16:56:50.072 \N Support structure season energy group. Important nearly dark. Sense course risk energ https://example.com/ 18231 437445 437396.437445.437458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.27064439929988 0 \N \N f 0 \N 0 50172728 0 f f \N \N \N \N 437396 \N 0 0 \N \N f \N 432705 2024-02-20 16:50:22.153 2024-02-20 17:00:24.419 Structure ever film speech along some Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nWhite seven https://example.com/ 671 \N 432705 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 25.1147788871991 0 \N \N f 0 \N 5 228551939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434958 2024-02-22 13:29:41.554 2024-02-22 13:39:42.893 Same product run but pe Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nRadio collection claim democratic. Coach building l https://example.com/ 1717 \N 434958 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 12.6354034071201 0 \N \N f 0 \N 5 108902722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437406 2024-02-24 16:00:31.864 2024-02-24 16:10:33.629 \N H https://example.com/ 2514 437168 437044.437168.437406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.63805574066091 0 \N \N f 0 \N 0 120459293 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 436601 2024-02-23 19:58:02.913 2024-02-23 20:08:04.373 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much f https://example.com/ 1960 436028 436028.436601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51286333188723 0 \N \N f 0 \N 2 125741927 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437460 2024-02-24 16:48:12.216 2024-02-24 16:58:14.081 \N Want fire once his six environment. Challenge body https://example.com/ 20964 437449 426030.437002.437449.437460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.67999558616393 0 \N \N f 0 \N 0 42563939 0 f f \N \N \N \N 426030 \N 0 0 \N \N f \N 437002 2024-02-24 09:18:58.871 2024-02-24 09:29:00.412 \N Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car tra https://example.com/ 16124 426030 426030.437002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3400648114045 0 \N \N f 0 \N 2 42646814 0 f f \N \N \N \N 426030 \N 0 0 \N \N f \N 439504 2024-02-26 15:45:15.117 2024-02-26 15:55:16.403 Before evening her visit bag building grow. Small p Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nPlay director employee. Tend central those now store drop. Rule friend man inves https://example.com/ 1845 \N 439504 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 19.0136574391364 0 \N \N f 0 \N 11 71472133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437429 2024-02-24 16:19:17.255 2024-02-24 16:29:18.291 \N American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see he https://example.com/ 19902 437420 437276.437420.437429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9312307505702 0 \N \N f 0 \N 0 226535867 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 437469 2024-02-24 16:59:15.215 2024-02-24 17:09:16.786 Theory teach dream home past. Popu Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three. https://example.com/ 1105 \N 437469 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.27643408233417 0 \N \N f 0 \N 0 137001316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437471 2024-02-24 17:01:09.402 2024-02-24 17:11:10.494 \N Body sit https://example.com/ 20306 437205 437205.437471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.66373422190304 0 \N \N f 0 \N 0 30916245 0 f f \N \N \N \N 437205 \N 0 0 \N \N f \N 441203 2024-02-27 22:56:45.864 2024-02-27 23:06:47.366 \N End inside like t https://example.com/ 19905 441055 440898.441012.441055.441203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4022653431892 0 \N \N f 0 \N 0 88790645 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 436082 2024-02-23 12:01:41.605 2024-02-23 12:11:42.741 Blood admit none others arm style. Here establis Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fe https://example.com/ 6653 \N 436082 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.9608785050039 0 \N \N f 0 \N 0 29870136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437464 2024-02-24 16:53:43.363 2024-02-24 16:53:49.026 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind. https://example.com/ 15273 31029 31029.437464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.026968668014 0 \N \N f 0 \N 1 131178338 0 f f \N \N \N \N 31029 \N 0 0 \N \N f \N 440687 2024-02-27 15:37:59.63 2024-02-27 15:48:01.919 \N Produc https://example.com/ 6164 440673 440520.440673.440687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47798258894144 0 \N \N f 0 \N 1 1311803 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 437463 2024-02-24 16:52:58.953 2024-02-24 17:02:59.891 Maybe remain help everybody beat subject suffer heavy. It become almost yeah ah Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas. https://example.com/ 4259 \N 437463 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.61879142535008 0 \N \N f 0 \N 1 65546833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441212 2024-02-27 23:05:52.785 2024-02-27 23:15:54.552 \N Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nTruth training network government behavior decade. Beyond sound gro https://example.com/ 21047 441183 440725.441183.441212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3412335870875 0 \N \N f 0 \N 0 130538284 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437500 2024-02-24 17:18:26.845 2024-02-24 17:28:28.144 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain we https://example.com/ 3439 437333 427941.437333.437500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.611434738408612 0 \N \N f 0 \N 0 87409763 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437451 2024-02-24 16:40:44.379 2024-02-24 16:50:45.785 \N Their election city process. Agency early its stock. Recent while https://example.com/ 664 437436 437436.437451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.81038070533981 0 \N \N f 0 \N 1 211116648 0 f f \N \N \N \N 437436 \N 0 0 \N \N f \N 436671 2024-02-23 21:32:22.238 2024-02-23 21:42:23.563 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. https://example.com/ 19105 432920 432920.436671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8345941519323 0 \N \N f 0 \N 1 55531463 0 f f \N \N \N \N 432920 \N 0 0 \N \N f \N 437379 2024-02-24 15:44:03.314 2024-02-24 15:54:05.39 Break test customer successful hotel available. Size certainly find senior pr May building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nSense edge father camera. Region whose enough vote up. Fin https://example.com/ 974 \N 437379 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 10.8532317568171 0 \N \N f 0 \N 0 58965076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442846 2024-02-28 23:16:28.923 2024-02-28 23:26:29.99 \N Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nPerson part phone rich. Cause thus https://example.com/ 5978 442839 442796.442831.442839.442846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28891412862341 0 \N \N f 0 \N 0 45859003 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 437491 2024-02-24 17:12:26.781 2024-02-24 17:22:28.03 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chai https://example.com/ 21389 437373 437301.437330.437373.437491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5339870618996 0 \N \N f 0 \N 0 122655762 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437490 2024-02-24 17:12:05.587 2024-02-24 17:22:07.198 \N Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away https://example.com/ 1480 437477 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468.437477.437490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8045078117588 0 \N \N f 0 \N 1 183114929 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437377 2024-02-24 15:42:10.953 2024-02-24 15:52:12.818 \N Reality four attention. Whose ea https://example.com/ 18359 436601 436028.436601.437377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.606122002954 0 \N \N f 0 \N 1 87201865 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437459 2024-02-24 16:46:57.371 2024-02-24 16:57:00.19 \N W https://example.com/ 11716 437377 436028.436601.437377.437459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5630443784685 0 \N \N f 0 \N 0 150745175 0 f f \N \N \N \N 436028 \N 0 0 \N \N f \N 437475 2024-02-24 17:03:02.401 2024-02-24 17:03:07.414 \N Always friend price benefit https://example.com/ 19992 437464 31029.437464.437475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.97716498809307 0 \N \N f 0 \N 0 65192419 0 f f \N \N \N \N 31029 \N 0 0 \N \N f \N 437494 2024-02-24 17:14:37.762 2024-02-24 17:24:38.628 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success the https://example.com/ 7418 437473 436729.436875.437359.437470.437473.437494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.65844928887504 0 \N \N f 0 \N 0 151676005 0 f f \N \N \N \N 436729 \N 0 0 \N \N f \N 437492 2024-02-24 17:13:06.912 2024-02-24 17:23:08.027 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat https://example.com/ 21506 437467 437453.437462.437467.437492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5907939442195 0 \N \N f 0 \N 0 226992022 0 f f \N \N \N \N 437453 \N 0 0 \N \N f \N 437478 2024-02-24 17:04:56.002 2024-02-24 17:14:58.035 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality comp https://example.com/ 669 437476 437218.437437.437439.437443.437455.437476.437478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31091135296381 0 \N \N f 0 \N 1 80723797 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 440669 2024-02-27 15:20:31.035 2024-02-27 15:30:32.627 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tr https://example.com/ 7913 440422 440422.440669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4561963874429 0 \N \N f 0 \N 0 155451522 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 437378 2024-02-24 15:42:50 2024-02-24 15:52:51.029 \N Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if po https://example.com/ 20464 437373 437301.437330.437373.437378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7047902561189 0 \N \N f 0 \N 3 122303030 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 440702 2024-02-27 15:52:03.592 2024-02-27 16:02:05.381 \N North beat realize. School remain number space star media. Mont https://example.com/ 16485 440561 440561.440702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6901680412508 0 \N \N f 0 \N 0 164349496 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 440700 2024-02-27 15:51:16.495 2024-02-27 16:01:18.025 Blood very whom mean technology contain rather. Und Travel watch north career song las https://example.com/ 2046 \N 440700 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8298261002669 0 \N \N f 0 \N 2 242076783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437486 2024-02-24 17:10:39.319 2024-02-24 17:20:40.509 \N She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law bas https://example.com/ 20187 437468 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468.437486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4495907640025 0 \N \N f 0 \N 0 27442891 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437545 2024-02-24 17:53:33.211 2024-02-24 18:03:34.412 \N Look surface admit attorney affect reduce necessary. Catch along start https://example.com/ 13174 437454 437454.437545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5997552216828 0 \N \N f 0 \N 0 228755142 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 442159 2024-02-28 15:24:45.579 2024-02-28 15:34:46.503 \N Most describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possib https://example.com/ 16282 442139 441843.441979.442087.442092.442099.442108.442129.442139.442159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8794841259103 0 \N \N f 0 \N 1 94622044 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442140 2024-02-28 15:13:51.393 2024-02-28 15:23:52.677 \N Blue why news enjoy include movie. Artist later store film. Senior record girl vario https://example.com/ 913 442118 442084.442106.442117.442118.442140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.794502427096 0 \N \N f 0 \N 3 225412091 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437499 2024-02-24 17:18:22.13 2024-02-24 17:28:23.662 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recen https://example.com/ 12736 437451 437436.437451.437499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.42349196074927 0 \N \N f 0 \N 0 207622542 0 f f \N \N \N \N 437436 \N 0 0 \N \N f \N 437263 2024-02-24 14:28:08.912 2024-02-24 14:38:10.117 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left https://example.com/ 18507 437252 437183.437188.437194.437206.437230.437252.437263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40593128193731 0 \N \N f 0 \N 2 57949941 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 437365 2024-02-24 15:27:38.299 2024-02-24 15:37:39.796 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nMain anyone difficult https://example.com/ 20812 427941 427941.437365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5078424212002 0 \N \N f 0 \N 0 146167454 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437507 2024-02-24 17:21:07.785 2024-02-24 17:31:09.432 \N Enough blue provide home alone reality attack certain. Sh https://example.com/ 20099 437490 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468.437477.437490.437507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.90577645047482 0 \N \N f 0 \N 0 200032000 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437504 2024-02-24 17:20:29.341 2024-02-24 17:30:31.495 \N Win nothing research song data. They peace herself continue R https://example.com/ 4654 437376 427941.437376.437504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9748623870819 0 \N \N f 0 \N 0 146393025 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437477 2024-02-24 17:03:28.368 2024-02-24 17:20:20 \N Site product one fa https://example.com/ 5500 437468 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468.437477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1574460021559 0 \N \N f 0 \N 4 203971899 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437503 2024-02-24 17:20:16.134 2024-02-24 17:30:18.311 \N End and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include https://example.com/ 715 437477 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437468.437477.437503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6203981960114 0 \N \N f 0 \N 0 80905629 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437904 2024-02-25 03:03:28.255 2024-02-25 03:13:29.732 \N Questi https://example.com/ 6749 218029 159987.218029.437904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7655299099976 0 \N \N f 0 \N 0 76486096 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 443132 2024-02-29 06:48:35.105 2024-02-29 06:58:36.595 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another https://example.com/ 14857 442146 442084.442146.443132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4151435152453 0 \N \N f 0 \N 2 63970998 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443144 2024-02-29 07:10:20.888 2024-02-29 07:20:21.971 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade h https://example.com/ 960 442632 442632.443144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65926234576719 0 \N \N f 0 \N 3 5130877 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 437536 2024-02-24 17:44:57.758 2024-02-24 17:54:59.542 \N Network authority coach t https://example.com/ 1291 437526 437044.437526.437536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.860445750420347 0 \N \N f 0 \N 0 105333361 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437489 2024-02-24 17:11:46.158 2024-02-24 17:21:47.551 \N Inside nor professional partner new design machine. Fire occur leave image trip https://example.com/ 16193 437478 437218.437437.437439.437443.437455.437476.437478.437489 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1130371298514 0 \N \N f 0 \N 0 127138863 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 437230 2024-02-24 14:08:33.804 2024-02-24 14:18:35.103 \N Order science level wish quite. About production ability win front machine. Training bil https://example.com/ 703 437206 437183.437188.437194.437206.437230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8469607977527 0 \N \N f 0 \N 4 56674237 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 437537 2024-02-24 17:45:38.899 2024-02-24 17:55:40.123 \N New particularly consider condition entire traditional world. Traditional generation c https://example.com/ 6003 437263 437183.437188.437194.437206.437230.437252.437263.437537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5806045000155 0 \N \N f 0 \N 1 188895824 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 440718 2024-02-27 16:02:15.202 2024-02-27 16:12:16.118 \N Debat https://example.com/ 16176 440449 440449.440718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2748934140577 0 \N \N f 0 \N 0 249015951 0 f f \N \N \N \N 440449 \N 0 0 \N \N f \N 437505 2024-02-24 17:20:53.37 2024-02-24 17:30:55.366 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record hap https://example.com/ 20573 435746 435746.437505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4634866927799 0 \N \N f 0 \N 1 85435514 0 f f \N \N \N \N 435746 \N 0 0 \N \N f \N 437540 2024-02-24 17:47:32.078 2024-02-24 17:57:33.692 \N We law loc https://example.com/ 16970 437031 437031.437540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5026710243246 0 \N \N f 0 \N 0 143369720 0 f f \N \N \N \N 437031 \N 0 0 \N \N f \N 437300 2024-02-24 14:47:55.378 2024-02-24 14:57:57.193 \N Stay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay f https://example.com/ 13843 437044 437044.437300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2338315288185 0 \N \N f 0 \N 1 224368316 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440697 2024-02-27 15:48:39.361 2024-02-27 15:58:40.577 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement progra https://example.com/ 4763 440422 440422.440697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5573106376266 0 \N \N f 0 \N 0 5642292 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440698 2024-02-27 15:49:17.062 2024-02-27 15:59:18.62 \N Type door clear left. https://example.com/ 20454 440422 440422.440698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5611694181913 0 \N \N f 0 \N 0 57113556 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 437534 2024-02-24 17:43:01.349 2024-02-24 17:53:02.583 \N True quickly https://example.com/ 10549 437454 437454.437534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15043341047873 0 \N \N f 0 \N 0 234397509 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 437446 2024-02-24 16:36:46.023 2024-02-24 16:46:48.194 \N Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepa https://example.com/ 16542 437391 437233.437391.437446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68477476004694 0 \N \N f 0 \N 0 28086404 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437525 2024-02-24 17:35:51.542 2024-02-24 17:45:53.852 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do https://example.com/ 17494 437482 437482.437525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4573945365818 0 \N \N f 0 \N 0 125584678 0 f f \N \N \N \N 437482 \N 0 0 \N \N f \N 442152 2024-02-28 15:21:14.22 2024-02-28 15:31:16.2 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself t https://example.com/ 20554 441854 441854.442152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1070681996989 0 \N \N f 0 \N 0 166445145 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442181 2024-02-28 15:31:53.343 2024-02-28 15:41:54.455 \N Always friend price benefit. Reflect seem help https://example.com/ 21019 442155 442147.442155.442181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9575807042268 0 \N \N f 0 \N 0 223760267 0 f f \N \N \N \N 442147 \N 0 0 \N \N f \N 439362 2024-02-26 14:15:16.67 2024-02-26 14:25:17.965 Authority environmental party bank region trip new that. Le Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\n https://example.com/ 21458 \N 439362 \N \N \N \N \N \N \N \N history \N ACTIVE \N 2.26378226027382 0 \N \N f 0 \N 1 98445714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440699 2024-02-27 15:49:22.979 2024-02-27 15:59:24.132 Fall health drug child. Throughout inf Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader. https://example.com/ 20680 \N 440699 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.52687758627226 0 \N \N f 0 \N 2 123966674 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440536 2024-02-27 13:20:26.036 2024-02-27 13:30:28.283 \N Inside nor professional partner new design machine. F https://example.com/ 19640 440523 440422.440523.440536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0125009045884 0 \N \N f 0 \N 1 150591779 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440701 2024-02-27 15:51:32.621 2024-02-27 16:01:33.729 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. https://example.com/ 19987 440454 440266.440432.440454.440701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.84621268215874 0 \N \N f 0 \N 0 249828264 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 437549 2024-02-24 17:58:05.474 2024-02-24 18:08:06.776 \N Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experie https://example.com/ 21281 437528 437396.437528.437549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.54338504320783 0 \N \N f 0 \N 0 45168828 0 f f \N \N \N \N 437396 \N 0 0 \N \N f \N 437381 2024-02-24 15:45:03.962 2024-02-24 15:55:05.135 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear fi https://example.com/ 5794 437233 437233.437381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.297633251529135 0 \N \N f 0 \N 3 165095200 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437353 2024-02-24 15:17:42.19 2024-02-24 15:27:43.379 \N Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity mil https://example.com/ 20980 437288 420192.437274.437288.437353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3362884092548 0 \N \N f 0 \N 0 131328719 0 f f \N \N \N \N 420192 \N 0 0 \N \N f \N 437520 2024-02-24 17:31:45.296 2024-02-24 17:41:47.118 \N R https://example.com/ 2776 437517 437457.437517.437520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.942469054733 0 \N \N f 0 \N 0 190313245 0 f f \N \N \N \N 437457 \N 0 0 \N \N f \N 437370 2024-02-24 15:31:09.833 2024-02-24 15:41:11.469 Break test custome Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later. https://example.com/ 2749 \N 437370 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.328380396828294 0 \N \N f 0 \N 2 202098018 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437448 2024-02-24 16:37:31.902 2024-02-24 16:47:33.999 Can shoulder modern daughter. Where d Travel watch north career song last. Together https://example.com/ 20701 \N 437448 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 27.4862195579349 0 \N \N f 0 \N 0 124127556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437548 2024-02-24 17:56:27.268 2024-02-24 18:06:28.097 Black leg through occur possible century far. Part f Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock. https://example.com/ 18174 \N 437548 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.734923031895 0 \N \N f 0 \N 0 63518583 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443155 2024-02-29 07:33:25.457 2024-02-29 07:43:26.533 \N Reflect fill team movie draw red group. Congress without main. Inside ago think condition. Mothe https://example.com/ 5809 443149 442632.443144.443149.443155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2306756992256 0 \N \N f 0 \N 1 16343223 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 437544 2024-02-24 17:50:48.764 2024-02-24 18:00:50.494 In grow start way presid Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern sk https://example.com/ 5637 \N 437544 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 4.36745006801232 0 \N \N f 0 \N 0 60214151 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437517 2024-02-24 17:29:47.696 2024-02-24 17:39:49.482 \N Senior than easy statement both total. Picture seek also Mr degree PM b https://example.com/ 15408 437457 437457.437517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89879642648403 0 \N \N f 0 \N 1 14482032 0 f f \N \N \N \N 437457 \N 0 0 \N \N f \N 437430 2024-02-24 16:19:51.644 2024-02-24 16:29:53.803 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nProfessional remain report involve eye outside. Military boy they. Camer https://example.com/ 19335 437387 437233.437381.437387.437430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6740544781451 0 \N \N f 0 \N 1 27101224 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 441025 2024-02-27 20:05:30.284 2024-02-27 20:15:31.879 \N Deep some relate building buy then. Letter common approach edu https://example.com/ 20811 440963 440712.440963.441025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.31421793356086 0 \N \N f 0 \N 0 47795144 0 f f \N \N \N \N 440712 \N 0 0 \N \N f \N 437518 2024-02-24 17:30:37.753 2024-02-24 17:40:39.373 \N Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nBetter instead whom usually. Wrong thi https://example.com/ 1806 437441 427941.437441.437518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3041086220485 0 \N \N f 0 \N 1 110705191 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437523 2024-02-24 17:35:13.512 2024-02-24 17:45:15.877 \N Though deal provide ball statement example b https://example.com/ 4059 437482 437482.437523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.21519269591271 0 \N \N f 0 \N 0 233993681 0 f f \N \N \N \N 437482 \N 0 0 \N \N f \N 437529 2024-02-24 17:37:21.534 2024-02-24 17:47:22.367 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administrati https://example.com/ 20881 437519 437457.437519.437529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6307580530142 0 \N \N f 0 \N 0 180217414 0 f f \N \N \N \N 437457 \N 0 0 \N \N f \N 437526 2024-02-24 17:35:51.719 2024-02-24 17:45:54.564 \N Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best p https://example.com/ 1039 437044 437044.437526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65931815338998 0 \N \N f 0 \N 1 95517445 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437482 2024-02-24 17:08:41.084 2024-02-24 17:18:42.185 Key group certainly little spring. Today form hit type art Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program. https://example.com/ 11423 \N 437482 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.3232021587986 0 \N \N f 0 \N 4 15617187 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440704 2024-02-27 15:52:56.306 2024-02-27 16:02:57.685 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover https://example.com/ 987 440641 440641.440704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92914166350613 0 \N \N f 0 \N 4 204905024 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 443133 2024-02-29 06:49:49.898 2024-02-29 06:59:50.751 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order busin https://example.com/ 20018 443122 443122.443133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.25723203246 0 \N \N f 0 \N 2 65443648 0 f f \N \N \N \N 443122 \N 0 0 \N \N f \N 443151 2024-02-29 07:29:43.493 2024-02-29 07:39:44.098 \N Measure would expert nation two. Prove at together va https://example.com/ 18378 443103 442781.442937.443103.443151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.31301880433286 0 \N \N f 0 \N 0 245559872 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 443146 2024-02-29 07:11:51.824 2024-02-29 07:21:54.23 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. https://example.com/ 2077 442313 442313.443146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02479933018677 0 \N \N f 0 \N 0 73878808 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 437301 2024-02-24 14:47:56.132 2024-02-24 14:57:57.194 Approach stuff big ahead nothing hotel great city. F Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size b https://example.com/ 3656 \N 437301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.68681546300874 0 \N \N f 0 \N 13 87294090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437522 2024-02-24 17:34:40.09 2024-02-24 17:44:41.756 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge prob https://example.com/ 12057 437496 437301.437330.437373.437378.437488.437496.437522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.94215937796019 0 \N \N f 0 \N 0 206388520 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437251 2024-02-24 14:23:23.307 2024-02-24 14:33:24.701 \N Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nChance near song m https://example.com/ 19841 437233 437233.437251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1546324826396 0 \N \N f 0 \N 3 110038793 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437441 2024-02-24 16:30:56.674 2024-02-24 16:40:57.703 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message https://example.com/ 19469 427941 427941.437441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9449953317025 0 \N \N f 0 \N 2 240757023 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 440688 2024-02-27 15:38:09.299 2024-02-27 15:48:10.159 \N Play director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially https://example.com/ 2961 440004 440004.440688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4135030505 0 \N \N f 0 \N 0 64537931 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 437405 2024-02-24 16:00:26.95 2024-02-24 16:10:28.353 \N Miss keep probably political forget sit. Simply street put once land history. Politic https://example.com/ 8648 437389 437233.437251.437389.437405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4914130116319 0 \N \N f 0 \N 0 207185719 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440706 2024-02-27 15:53:31.544 2024-02-27 16:03:33.294 \N Any tend power space fund inside evidence. Member century indeed imp https://example.com/ 16267 440422 440422.440706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56235452076182 0 \N \N f 0 \N 0 210831229 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440478 2024-02-27 11:44:10.819 2024-02-27 11:54:12.73 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everyt https://example.com/ 11956 440443 440443.440478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5307734704738 0 \N \N f 0 \N 0 180736221 0 f f \N \N \N \N 440443 \N 0 0 \N \N f \N 443148 2024-02-29 07:13:54.454 2024-02-29 07:23:56.013 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may ma https://example.com/ 5308 443143 442084.442146.443132.443143.443148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6059601128475 0 \N \N f 0 \N 0 133201175 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437488 2024-02-24 17:11:22.856 2024-02-24 17:21:24.249 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nWant fire once his six environment. Challenge body color about. Under front office rec https://example.com/ 10519 437378 437301.437330.437373.437378.437488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36973629947123 0 \N \N f 0 \N 2 173286067 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437496 2024-02-24 17:15:25.514 2024-02-24 17:25:27.09 \N Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appea https://example.com/ 19777 437488 437301.437330.437373.437378.437488.437496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51052789867883 0 \N \N f 0 \N 1 242788548 0 f f \N \N \N \N 437301 \N 0 0 \N \N f \N 437515 2024-02-24 17:28:30.642 2024-02-24 17:38:31.452 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nMethod show window brother. Buy right Republican education might dir https://example.com/ 2176 437146 437146.437515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20516346711378 0 \N \N f 0 \N 1 46272264 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 437546 2024-02-24 17:53:55.774 2024-02-24 18:03:57.792 \N Focus available yeah law. Down there avoid. Progra https://example.com/ 21012 437537 437183.437188.437194.437206.437230.437252.437263.437537.437546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27963051523915 0 \N \N f 0 \N 0 233469401 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 437539 2024-02-24 17:46:33.082 2024-02-24 17:56:34.231 Item attention child take film l To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nReligious same wish cost make. Else offi https://example.com/ 828 \N 437539 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 10.4412693917231 0 \N \N f 0 \N 7 198428811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437425 2024-02-24 16:15:43.453 2024-02-24 16:25:44.825 \N Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman autho https://example.com/ 16680 437411 437408.437411.437425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6751265876733 0 \N \N f 0 \N 0 183284064 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 442015 2024-02-28 14:19:10.465 2024-02-28 14:29:12.255 \N Born million yourself husband old. Air my child dr https://example.com/ 21242 441660 441660.442015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9129325132639 0 \N \N f 0 \N 2 55452555 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 439886 2024-02-26 20:24:35.915 2024-02-26 20:34:38.177 Think month catch free. Tree involve deep resou Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy ac https://example.com/ 993 \N 439886 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.56169333008935 0 \N \N f 0 \N 0 166857086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437547 2024-02-24 17:54:07.189 2024-02-24 18:04:08.87 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nAnything common l https://example.com/ 2010 437531 437531.437547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.918586642267 0 \N \N f 0 \N 1 118340375 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 440527 2024-02-27 13:05:02.061 2024-02-27 13:15:03.781 Beyond new strong important. Final To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic https://example.com/ 1141 \N 440527 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.2238421286346 0 \N \N f 0 \N 19 159150343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437530 2024-02-24 17:37:40.526 2024-02-24 17:47:42.536 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine addr https://example.com/ 14271 437515 437146.437515.437530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.48565084245028 0 \N \N f 0 \N 0 221616683 0 f f \N \N \N \N 437146 \N 0 0 \N \N f \N 440652 2024-02-27 15:05:24.689 2024-02-27 15:15:26.527 Body situation without keep first p Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last. https://example.com/ 9290 \N 440652 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 18.1459420213485 0 \N \N f 0 \N 0 181283474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440642 2024-02-27 14:57:32.055 2024-02-27 15:07:34.04 Top however address today. Century human land prove sh Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nProgram cut truth box indicate game. Agency option out https://example.com/ 2674 \N 440642 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 18.0900274990333 0 \N \N f 0 \N 4 200100390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443536 2024-02-29 14:18:20.545 2024-02-29 14:28:21.756 \N Career player thing second down win. Feel true ex https://example.com/ 20377 443201 443201.443536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6057161517238 0 \N \N f 0 \N 1 130750029 0 f f \N \N \N \N 443201 \N 0 0 \N \N f \N 437509 2024-02-24 17:23:49.663 2024-02-24 17:33:51.541 \N As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil https://example.com/ 807 437233 437233.437509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20439739696901 0 \N \N f 0 \N 0 95488348 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440662 2024-02-27 15:14:44.12 2024-02-27 15:24:46.269 Animal treatment actually. Local me bar data personal. Imagine in Moment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept. https://example.com/ 5444 \N 440662 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.44016942662316 0 \N \N f 0 \N 0 237533931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440721 2024-02-27 16:02:52.367 2024-02-27 16:12:53.009 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. https://example.com/ 21395 440699 440699.440721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64760810555347 0 \N \N f 0 \N 0 128343566 0 f f \N \N \N \N 440699 \N 0 0 \N \N f \N 440722 2024-02-27 16:04:38.395 2024-02-27 16:14:39.401 \N Smile debate least force simply dis https://example.com/ 21493 439368 439368.440722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79312220492306 0 \N \N f 0 \N 1 229784184 0 f f \N \N \N \N 439368 \N 0 0 \N \N f \N 440719 2024-02-27 16:02:29.074 2024-02-27 16:12:30.283 \N Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear c https://example.com/ 2039 440623 440623.440719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8932793591859 0 \N \N f 0 \N 1 49261327 0 f f \N \N \N \N 440623 \N 0 0 \N \N f \N 440684 2024-02-27 15:34:13.787 2024-02-27 15:44:14.879 \N Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shak https://example.com/ 21578 440588 440475.440588.440684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2965733214525 0 \N \N f 0 \N 0 81423750 0 f f \N \N \N \N 440475 \N 0 0 \N \N f \N 440627 2024-02-27 14:47:12.779 2024-02-27 14:57:14.138 \N Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference https://example.com/ 17682 440281 440241.440281.440627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5405824898009 0 \N \N f 0 \N 0 146185481 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 437559 2024-02-24 18:09:00.709 2024-02-24 18:19:02.978 \N Might also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View t https://example.com/ 18995 437547 437531.437547.437559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1679702494383 0 \N \N f 0 \N 0 120843388 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 440194 2024-02-27 02:42:50.68 2024-02-27 02:52:51.967 \N Mr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Groun https://example.com/ 16536 440180 440180.440194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5712136565056 0 \N \N f 0 \N 3 165548614 0 f f \N \N \N \N 440180 \N 0 0 \N \N f \N 442946 2024-02-29 00:56:39.181 2024-02-29 01:06:40.426 \N That very sister attention myself out bit. Want father p https://example.com/ 6533 442904 442904.442946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10437531655269 0 \N \N f 0 \N 0 51521325 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 439927 2024-02-26 20:45:13.778 2024-02-26 20:55:14.894 Step physical establish trip. Sell finish low drop sense strategy know Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movi https://example.com/ 859 \N 439927 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 6.13268949349067 0 \N \N f 0 \N 0 176354536 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442831 2024-02-28 23:07:38.579 2024-02-28 23:17:40.284 \N Learn international explain range edge early. Entire leg wife lik https://example.com/ 20970 442796 442796.442831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7187963454941 0 \N \N f 0 \N 2 37709538 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 440656 2024-02-27 15:07:44.388 2024-02-27 15:17:46.421 \N Do probably energy loss forget science and. Its seek heart debate https://example.com/ 8168 440653 440642.440653.440656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6053789709031 0 \N \N f 0 \N 1 122449320 0 f f \N \N \N \N 440642 \N 0 0 \N \N f \N 443064 2024-02-29 04:09:09.193 2024-02-29 04:19:10.404 Last expert dark compare nearly fil Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let https://example.com/ 18380 \N 443064 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0012238125316 0 \N \N f 0 \N 2 19982834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439947 2024-02-26 20:55:40.667 2024-02-26 21:05:42.578 Beyond leg century level herself those. Significant group coll Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend des https://example.com/ 15728 \N 439947 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 9.99065658080472 0 \N \N f 0 \N 0 106122514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437567 2024-02-24 18:32:53.777 2024-02-24 18:42:54.761 \N Garden serve these speak manager. https://example.com/ 20099 437218 437218.437567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63237604920934 0 \N \N f 0 \N 0 235213376 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 439964 2024-02-26 21:10:50.703 2024-02-26 21:20:52.474 Blood bill here traditional upon. Leg them lead garden himself out Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question https://example.com/ 17331 \N 439964 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 7.15654889623703 0 \N \N f 0 \N 0 132743424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437566 2024-02-24 18:31:35.288 2024-02-24 18:41:36.222 \N Prevent machine source https://example.com/ 4064 437554 437531.437543.437554.437566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3294906803299 0 \N \N f 0 \N 0 242210987 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 440724 2024-02-27 16:07:23.33 2024-02-27 16:17:24.536 \N Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch https://example.com/ 21090 380081 380081.440724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1929521136427 0 \N \N f 0 \N 0 184016285 0 f f \N \N \N \N 380081 \N 0 0 \N \N f \N 439994 2024-02-26 21:30:32.767 2024-02-26 21:40:34.883 Debate physical difference without Mrs price final. Nice nation hot why require Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nReach road deal especially down since ball score. https://example.com/ 623 \N 439994 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 13.3552978497312 0 \N \N f 0 \N 2 199071525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440760 2024-02-27 16:31:50.713 2024-02-27 16:41:52.399 \N Look surface admit attorney affect reduce necessary. Catch along start step all serious. En https://example.com/ 10359 440751 440663.440751.440760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2171994444069 0 \N \N f 0 \N 6 221207555 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 437575 2024-02-24 18:40:34.653 2024-02-24 18:50:36.087 \N Second po https://example.com/ 11458 437563 436837.437563.437575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4483576647781 0 \N \N f 0 \N 0 6923678 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437572 2024-02-24 18:38:22.033 2024-02-24 18:48:24.182 \N Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look pare https://example.com/ 13378 437482 437482.437572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9321500966834 0 \N \N f 0 \N 0 209115459 0 f f \N \N \N \N 437482 \N 0 0 \N \N f \N 440821 2024-02-27 17:12:35.488 2024-02-27 17:22:37.39 \N Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nJoin push remain behavior. Various song no successful own. Him director b https://example.com/ 715 440764 440764.440821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2491638461321 0 \N \N f 0 \N 2 106755720 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441026 2024-02-27 20:05:35.738 2024-02-27 20:15:37.897 \N Member I discover option technology recognize especially. Different hair s https://example.com/ 4798 441015 440988.441015.441026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01828654687783 0 \N \N f 0 \N 1 45818691 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 437562 2024-02-24 18:12:06.486 2024-02-24 18:22:08.844 \N That very sist https://example.com/ 1564 437419 437238.437419.437562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1922219942149 0 \N \N f 0 \N 1 140522992 0 f f \N \N \N \N 437238 \N 0 0 \N \N f \N 437337 2024-02-24 15:06:35.147 2024-02-24 15:16:37.405 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church cl https://example.com/ 9159 437044 437044.437337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.204383157663 0 \N \N f 0 \N 3 139383600 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440637 2024-02-27 14:54:33.38 2024-02-27 15:04:34.975 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nDirector far https://example.com/ 18270 440623 440623.440637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3699085606358 0 \N \N f 0 \N 0 212553188 0 f f \N \N \N \N 440623 \N 0 0 \N \N f \N 440500 2024-02-27 12:16:32.267 2024-02-27 12:26:33.747 \N Any https://example.com/ 16351 440194 440180.440194.440500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.05771398284647 0 \N \N f 0 \N 0 51175057 0 f f \N \N \N \N 440180 \N 0 0 \N \N f \N 437604 2024-02-24 19:01:52.272 2024-02-24 19:11:53.933 \N Travel never area. Relationship prod https://example.com/ 21334 437591 437044.437560.437588.437591.437604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5195802980585 0 \N \N f 0 \N 1 155920035 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440730 2024-02-27 16:11:15.984 2024-02-27 16:21:17.544 \N Quickly build security. Thought structure likely partner scene wrong likely attorney. Detai https://example.com/ 7978 440727 440727.440730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.83928378807439 0 \N \N f 0 \N 1 3262733 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 437543 2024-02-24 17:49:44.588 2024-02-24 17:59:46.61 \N Member I discover option technology recognize especially. Different hair smile land late open https://example.com/ 880 437531 437531.437543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7402770856473 0 \N \N f 0 \N 2 187949841 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 442839 2024-02-28 23:11:33.928 2024-02-28 23:21:34.952 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science https://example.com/ 5779 442831 442796.442831.442839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7459356104165 0 \N \N f 0 \N 1 57673785 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 441876 2024-02-28 13:02:02.601 2024-02-28 13:12:03.384 Apply president organization risk school prevent baby. Step trial course Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police. https://example.com/ 18232 \N 441876 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.3243133521842 0 \N \N f 0 \N 2 236044002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441879 2024-02-28 13:03:35.996 2024-02-28 13:13:37.112 \N Animal character s https://example.com/ 9166 441876 441876.441879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3872143043594 0 \N \N f 0 \N 0 230927104 0 f f \N \N \N \N 441876 \N 0 0 \N \N f \N 437579 2024-02-24 18:41:37.195 2024-02-24 18:51:38.332 \N Maybe remain help everybody beat subj https://example.com/ 21466 437560 437044.437560.437579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3293755915533 0 \N \N f 0 \N 3 171846056 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440711 2024-02-27 15:55:17.653 2024-02-27 16:05:19.772 Find building number energy its Hundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future m https://example.com/ 20190 \N 440711 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 3.06919057415602 0 \N \N f 0 \N 2 169217081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437008 2024-02-24 09:22:16.759 2024-02-24 09:32:17.603 Meeting expert body. End store vote across cost piece dinne Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only https://example.com/ 18817 \N 437008 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.8999781451517 0 \N \N f 0 \N 10 228337663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440715 2024-02-27 15:58:01.309 2024-02-27 16:08:02.702 \N Charge hold reveal easy rise method leave. Property pre https://example.com/ 12268 440052 440004.440052.440715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4136477546054 0 \N \N f 0 \N 0 48813223 0 f f \N \N \N \N 440004 \N 0 0 \N \N f \N 437571 2024-02-24 18:37:24.127 2024-02-24 18:47:26.434 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive https://example.com/ 13249 437553 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40676053171522 0 \N \N f 0 \N 0 61892827 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437565 2024-02-24 18:27:40.753 2024-02-24 18:37:41.887 \N Way all line after. Only trouble they hair when. According the https://example.com/ 1007 437418 436950.437418.437565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4313091706995 0 \N \N f 0 \N 1 105903962 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 435502 2024-02-22 20:43:19.516 2024-02-22 20:53:20.662 \N Again reveal time hot kind own. Believe agr https://example.com/ 12774 435427 435046.435209.435215.435427.435502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3626254801782 0 \N \N f 0 \N 2 87903904 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 437582 2024-02-24 18:43:02.724 2024-02-24 18:53:03.906 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nHimself seem along exist popul https://example.com/ 16788 437233 437233.437582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3638708735765 0 \N \N f 0 \N 0 95212170 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437576 2024-02-24 18:40:49.566 2024-02-24 18:50:51.301 Mr right bring various. Whose apply laugh only. Simply center particularly Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half. https://example.com/ 15732 \N 437576 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 15.569277895753 0 \N \N f 0 \N 0 154041736 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437591 2024-02-24 18:52:59.038 2024-02-24 19:03:00.461 \N Director far fact order bit collection. Ok prove thought note https://example.com/ 8726 437588 437044.437560.437588.437591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.38180156742735 0 \N \N f 0 \N 2 175339084 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437621 2024-02-24 19:19:54.432 2024-02-24 19:29:56.752 \N Study question sing. Hour matter case tax. https://example.com/ 937 437495 437233.437495.437621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09906609984327 0 \N \N f 0 \N 2 199833223 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437617 2024-02-24 19:16:29.961 2024-02-24 19:26:31.426 \N Stand red drop occur tell week https://example.com/ 718 437583 437583.437617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5268761538205 0 \N \N f 0 \N 8 81190382 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 436491 2024-02-23 17:44:37.505 2024-02-23 17:54:39.443 Increase consumer itself trade ahead Report night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nParent alway https://example.com/ 12220 \N 436491 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.3066573353525 0 \N \N f 0 \N 4 127979511 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437570 2024-02-24 18:36:35.084 2024-02-24 18:46:36.543 Sense edge father camera. Region whose enough vote up. Final knowledg Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commer https://example.com/ 20715 \N 437570 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 4.08559494329882 0 \N \N f 0 \N 2 158840615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437590 2024-02-24 18:52:02.68 2024-02-24 19:02:04.598 \N Congress up environment. Hit move hour age who national. Qual https://example.com/ 19785 437565 436950.437418.437565.437590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41980682600172 0 \N \N f 0 \N 0 86117146 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 437580 2024-02-24 18:42:00.634 2024-02-24 18:52:01.82 \N Summer past television what in. Find give movement certain visit race https://example.com/ 21401 437524 437524.437580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1714138193244 0 \N \N f 0 \N 2 160930267 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 437578 2024-02-24 18:40:59.927 2024-02-24 18:51:01.741 \N Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nRock source rate fact https://example.com/ 7773 437570 437570.437578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7453259278164 0 \N \N f 0 \N 0 164485128 0 f f \N \N \N \N 437570 \N 0 0 \N \N f \N 432554 2024-02-20 14:57:41.638 2024-02-20 15:07:43.647 \N Become season style here. Part color view local beautiful. T https://example.com/ 20642 432344 432344.432554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2608903769796 0 \N \N f 0 \N 7 161750493 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 440736 2024-02-27 16:14:34.416 2024-02-27 16:24:36.185 \N Boy force agency change score no job. https://example.com/ 18313 440711 440711.440736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49020453269921 0 \N \N f 0 \N 0 47403767 0 f f \N \N \N \N 440711 \N 0 0 \N \N f \N 437553 2024-02-24 18:04:01.383 2024-02-24 18:14:02.458 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Si https://example.com/ 21357 437552 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89075256563455 0 \N \N f 0 \N 6 102470089 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437556 2024-02-24 18:07:00.262 2024-02-24 18:17:01.196 \N Stage can fish building senior. Through position capital official. While later price perfo https://example.com/ 20811 437555 437502.437535.437555.437556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6391845873408 0 \N \N f 0 \N 0 100214588 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 437599 2024-02-24 19:00:04.756 2024-02-24 19:10:06.468 Commercial loss cultural help show Mr. Citi \N https://example.com/ 11145 \N 437599 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.0273205717908 0 \N \N f 0 \N 1 105515621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437418 2024-02-24 16:11:15.082 2024-02-24 16:21:16.549 \N Specific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nNature couple north bit inside tough https://example.com/ 16988 436950 436950.437418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0833756572478 0 \N \N f 0 \N 4 237669560 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 437618 2024-02-24 19:17:53.361 2024-02-24 19:27:54.635 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain https://example.com/ 738 437598 436752.437184.437271.437292.437293.437308.437312.437316.437317.437321.437432.437447.437465.437497.437506.437508.437513.437521.437538.437551.437552.437553.437558.437574.437593.437598.437618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.48174289850592 0 \N \N f 0 \N 0 229365651 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437610 2024-02-24 19:12:12.717 2024-02-24 19:22:14.258 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow https://example.com/ 2013 437089 437089.437610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7073553129552 0 \N \N f 0 \N 2 102864872 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 441189 2024-02-27 22:47:48.209 2024-02-27 22:57:49.574 \N Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend l https://example.com/ 633 441169 441169.441189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0123542472943 0 \N \N f 0 \N 3 45766872 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441832 2024-02-28 12:30:02.623 2024-02-28 12:40:05.265 Serve deep station probably writer. Perform back protect energy. Int Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar. https://example.com/ 4102 \N 441832 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 26.8054841284545 0 \N \N f 0 \N 0 63747081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440744 2024-02-27 16:22:27.072 2024-02-27 16:32:28.177 \N Compare strategy affect threat stage approach https://example.com/ 19809 440719 440623.440719.440744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3989721445887 0 \N \N f 0 \N 0 19693752 0 f f \N \N \N \N 440623 \N 0 0 \N \N f \N 437376 2024-02-24 15:41:52.796 2024-02-24 15:51:54.545 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nDetail me send tax knowledge. Bad https://example.com/ 18476 427941 427941.437376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.342379255815 0 \N \N f 0 \N 1 62916729 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437603 2024-02-24 19:00:22.346 2024-02-24 19:10:24.623 \N Newspaper wall begin over serious hand. Remember great meet th https://example.com/ 1006 437535 437502.437535.437603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64185291113331 0 \N \N f 0 \N 0 83942040 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 437602 2024-02-24 19:00:19.507 2024-02-24 19:10:20.509 \N Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nSell hundred beau https://example.com/ 21391 437596 437269.437516.437596.437602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.88865769871239 0 \N \N f 0 \N 1 134461052 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 441581 2024-02-28 08:34:31.8 2024-02-28 08:44:33.34 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish fo https://example.com/ 19613 441577 441333.441403.441463.441545.441549.441559.441562.441577.441581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1526855863315 0 \N \N f 0 \N 0 157161817 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441578 2024-02-28 08:31:05.549 2024-02-28 08:41:07.623 \N Political perhaps question forward yes. Fish TV musi https://example.com/ 1142 441560 441560.441578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3796542227836 0 \N \N f 0 \N 0 226431542 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 437584 2024-02-24 18:43:41.82 2024-02-24 18:53:42.597 \N Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nPattern fear term. Second always control t https://example.com/ 20511 383302 383302.437584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92540353666116 0 \N \N f 0 \N 1 44692276 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 437614 2024-02-24 19:15:23.987 2024-02-24 19:25:25.689 \N Agency rate seven fear open. Design group sense left enjoy. Voice care conference area hist https://example.com/ 19924 437584 383302.437584.437614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2258448515209 0 \N \N f 0 \N 0 102075688 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 440732 2024-02-27 16:12:10.694 2024-02-27 16:22:11.912 Wind put daughter. Mr later note w Source scientist hair let. Tough hit specific https://example.com/ 20781 \N 440732 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1186115931064 0 \N \N f 0 \N 2 155162347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440976 2024-02-27 19:35:56.965 2024-02-27 19:45:58.219 \N Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk https://example.com/ 10280 440889 440729.440889.440976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6321630705783 0 \N \N f 0 \N 0 220896200 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 437623 2024-02-24 19:21:32.993 2024-02-24 19:31:35.042 \N His mean individual benefit https://example.com/ 9366 436225 436005.436225.437623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8177196903784 0 \N \N f 0 \N 0 99420310 0 f f \N \N \N \N 436005 \N 0 0 \N \N f \N 439483 2024-02-26 15:38:20.389 2024-02-26 15:48:22.241 \N Decision certain voice where collection thus wri https://example.com/ 21323 439454 439100.439384.439454.439483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.11223313886552 0 \N \N f 0 \N 4 173311663 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 437501 2024-02-24 17:19:06.968 2024-02-24 17:29:08.362 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose https://example.com/ 8506 437338 427941.437338.437501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1983877008468 0 \N \N f 0 \N 0 193049325 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 438933 2024-02-26 07:16:14.002 2024-02-26 07:26:15.391 Fly run executive. Reach next Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nDeep some relate buildi https://example.com/ 776 \N 438933 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.83690193998474 0 \N \N f 0 \N 0 197218024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440708 2024-02-27 15:54:47.891 2024-02-27 16:04:49.562 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History so https://example.com/ 4313 440696 440520.440696.440708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31037774831785 0 \N \N f 0 \N 2 156745954 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 440739 2024-02-27 16:15:42.166 2024-02-27 16:25:43.652 \N Great how before current effort because. Simply increase really start. Front benefit act. Far https://example.com/ 20381 440729 440729.440739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2778585858699 0 \N \N f 0 \N 0 10181467 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 440737 2024-02-27 16:14:37.986 2024-02-27 16:24:39.535 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five aw https://example.com/ 19096 439627 439100.439384.439454.439483.439524.439589.439627.440737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2656994968163 0 \N \N f 0 \N 0 225157280 0 f f \N \N \N \N 439100 \N 0 0 \N \N f \N 437597 2024-02-24 18:58:53.852 2024-02-24 19:08:55.268 \N Before appear girl save technology. When speech on everyone traditional. Every left add seas https://example.com/ 8954 437573 437472.437573.437597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0091101590342 0 \N \N f 0 \N 4 130966324 0 f f \N \N \N \N 437472 \N 0 0 \N \N f \N 442962 2024-02-29 01:25:01.083 2024-02-29 01:35:02.105 Seven nice notice wife Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn. https://example.com/ 21458 \N 442962 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9050070590921 0 \N \N f 0 \N 1 176780610 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440734 2024-02-27 16:13:00.225 2024-02-27 16:23:01.193 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite r https://example.com/ 3400 440732 440732.440734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6086355240931 0 \N \N f 0 \N 0 245666554 0 f f \N \N \N \N 440732 \N 0 0 \N \N f \N 443066 2024-02-29 04:11:12.242 2024-02-29 04:21:13.443 \N Become season style here. Part color view local beautifu https://example.com/ 21104 442962 442962.443066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94850237985395 0 \N \N f 0 \N 0 33859607 0 f f \N \N \N \N 442962 \N 0 0 \N \N f \N 437333 2024-02-24 15:04:17.723 2024-02-24 15:14:19.149 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nMajority nex https://example.com/ 1310 427941 427941.437333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2094648263034 0 \N \N f 0 \N 3 168602500 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437633 2024-02-24 19:30:52.176 2024-02-24 19:40:53.679 Opportunity hospital address action re Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too. https://example.com/ 11220 \N 437633 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.652077998264 0 \N \N f 0 \N 0 105144136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437619 2024-02-24 19:18:41.988 2024-02-24 19:28:43.411 \N Gas evening morning do of. Development executive like short physical peace program. Crime https://example.com/ 12779 437512 437233.437512.437619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7079004682335 0 \N \N f 0 \N 3 69233404 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440720 2024-02-27 16:02:46.077 2024-02-27 16:12:47.766 \N Police do base plan how. Her add beautiful attac https://example.com/ 646 440180 440180.440720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.17541707082 0 \N \N f 0 \N 0 192727149 0 f f \N \N \N \N 440180 \N 0 0 \N \N f \N 437607 2024-02-24 19:04:56.911 2024-02-24 19:14:58.475 \N Reach too suffer story type remember lot. Reveal ma https://example.com/ 18269 437539 437539.437607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1807712223617 0 \N \N f 0 \N 0 48399854 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 437627 2024-02-24 19:25:27.962 2024-02-24 19:35:28.714 \N Strong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare seri https://example.com/ 10409 437320 437320.437627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.397577803979 0 \N \N f 0 \N 0 123862745 0 f f \N \N \N \N 437320 \N 0 0 \N \N f \N 440803 2024-02-27 16:59:23.272 2024-02-27 17:09:24.857 \N Necessary hold quite on prove past. Stage front dark term relationship https://example.com/ 6765 440622 440622.440803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.79664698619434 0 \N \N f 0 \N 0 130482464 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437320 2024-02-24 14:57:37.718 2024-02-24 15:07:39.123 Grow level surface point four. Poor a Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our s https://example.com/ 20243 \N 437320 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.29024684604411 0 \N \N f 0 \N 3 243454959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440747 2024-02-27 16:25:11.841 2024-02-27 16:35:13.673 \N Score player recognize carry. Value wish form build mother best seven. Price improve can if https://example.com/ 20657 440738 440725.440731.440738.440747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7242486987913 0 \N \N f 0 \N 0 8619657 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440968 2024-02-27 19:30:31.468 2024-02-27 19:40:33.586 \N Control century lay already range. Scene easy nice health audience close describe. https://example.com/ 1474 440824 440622.440824.440968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7907134588365 0 \N \N f 0 \N 0 103674125 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437659 2024-02-24 20:26:52.324 2024-02-24 20:36:53.798 \N Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live sto https://example.com/ 20812 437658 437646.437658.437659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9633319877298 0 \N \N f 0 \N 0 23169165 0 f f \N \N \N \N 437646 \N 0 0 \N \N f \N 437420 2024-02-24 16:12:36.231 2024-02-24 16:22:37.71 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry languag https://example.com/ 2775 437276 437276.437420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5076138058742 0 \N \N f 0 \N 1 92179566 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 443074 2024-02-29 04:36:43.121 2024-02-29 04:46:44.33 \N Take throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic c https://example.com/ 18265 443071 443008.443040.443051.443071.443074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3424975850234 0 \N \N f 0 \N 1 143087628 0 f f \N \N \N \N 443008 \N 0 0 \N \N f \N 437563 2024-02-24 18:12:14.852 2024-02-24 18:22:16.826 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother for https://example.com/ 14280 436837 436837.437563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20215601266448 0 \N \N f 0 \N 1 104822794 0 f f \N \N \N \N 436837 \N 0 0 \N \N f \N 437624 2024-02-24 19:23:42.611 2024-02-24 19:33:44.679 \N That field beautiful American when. Simply quality which media. Note own evening real country f https://example.com/ 2774 437608 437608.437624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8435855194603 0 \N \N f 0 \N 0 24709998 0 f f \N \N \N \N 437608 \N 0 0 \N \N f \N 437609 2024-02-24 19:09:58.167 2024-02-24 19:20:00.082 Their be Plant ever Republican together picture. What nearly pattern https://example.com/ 12946 \N 437609 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 12.2400885861142 0 \N \N f 0 \N 0 120308070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443079 2024-02-29 04:55:57.723 2024-02-29 05:05:59.3 \N Grow level surface point four. Poor about act upon girl trip international lay. Determi https://example.com/ 15588 442734 442734.443079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.92777194654292 0 \N \N f 0 \N 0 24731276 0 f f \N \N \N \N 442734 \N 0 0 \N \N f \N 440741 2024-02-27 16:19:04.965 2024-02-27 16:29:06.542 \N According shake the attack guy development pressure. Police cultural area song she. https://example.com/ 2741 440708 440520.440696.440708.440741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6114849400602 0 \N \N f 0 \N 1 102596261 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441486 2024-02-28 05:36:21.164 2024-02-28 05:46:22.171 \N Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Imag https://example.com/ 3347 441238 441238.441486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7717676104359 0 \N \N f 0 \N 1 203288823 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 437638 2024-02-24 19:40:23.345 2024-02-24 19:50:24.961 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become https://example.com/ 19770 437632 437583.437617.437628.437632.437638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4120013220398 0 \N \N f 0 \N 0 49255782 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 443228 2024-02-29 09:44:49.635 2024-02-29 09:54:52.209 Detail economy still boy fine in series. Bring probably list stop still Technology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or. https://example.com/ 12049 \N 443228 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2966410909009 0 \N \N f 0 \N 2 140827694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437634 2024-02-24 19:33:27.357 2024-02-24 19:43:29.342 Health recently away many who girl admit. Value serve Very executive American something myself so my. Art to five ind https://example.com/ 763 \N 437634 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.0569890875539 0 \N \N f 0 \N 2 233232302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440731 2024-02-27 16:11:33.188 2024-02-27 16:21:34.479 \N Them its https://example.com/ 19541 440725 440725.440731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83069084778798 0 \N \N f 0 \N 2 247542664 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440824 2024-02-27 17:14:14.123 2024-02-27 17:24:15.189 \N Become full thank head blood family. Computer account be expert adult push. Alone https://example.com/ 987 440622 440622.440824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7895389008465 0 \N \N f 0 \N 1 188161709 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 440753 2024-02-27 16:30:12.558 2024-02-27 16:40:13.624 \N Ability ability arrive age movie country. Draw American simple pull media. Sport t https://example.com/ 2029 440622 440622.440753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8900901769034 0 \N \N f 0 \N 0 242375871 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 440977 2024-02-27 19:37:31.103 2024-02-27 19:47:32.403 \N Quickly fill science fro https://example.com/ 17094 440907 440907.440977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73633124868146 0 \N \N f 0 \N 0 229896904 0 f f \N \N \N \N 440907 \N 0 0 \N \N f \N 440750 2024-02-27 16:26:17.607 2024-02-27 16:36:18.892 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among https://example.com/ 12278 440725 440725.440750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.66180202984096 0 \N \N f 0 \N 0 29293968 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437626 2024-02-24 19:24:04.906 2024-02-24 19:34:06.966 \N Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and bill https://example.com/ 14404 437403 437403.437626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8535108687904 0 \N \N f 0 \N 1 163885333 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N 440696 2024-02-27 15:47:55.553 2024-02-27 15:57:57.501 \N Fish environmental factor popular serie https://example.com/ 994 440520 440520.440696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4230344572126 0 \N \N f 0 \N 3 184965121 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 436005 2024-02-23 10:19:40.445 2024-02-23 10:29:41.872 Ten answer natural star research bla Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out https://example.com/ 18529 \N 436005 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.8860999631995 0 \N \N f 0 \N 2 16109416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440749 2024-02-27 16:25:37.6 2024-02-27 16:35:39.082 \N Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chai https://example.com/ 17050 440575 440575.440749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0471142667229 0 \N \N f 0 \N 1 12821320 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 435427 2024-02-22 19:20:55.439 2024-02-22 19:30:56.308 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and https://example.com/ 2390 435215 435046.435209.435215.435427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9381677793277 0 \N \N f 0 \N 3 31441799 0 f f \N \N \N \N 435046 \N 0 0 \N \N f \N 442914 2024-02-29 00:19:21.129 2024-02-29 00:29:22.654 \N Religious same wish cost make. Else official career fire. Form wind film look dev https://example.com/ 18470 442912 442912.442914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20297259959752 0 \N \N f 0 \N 1 188625566 0 f f \N \N \N \N 442912 \N 0 0 \N \N f \N 437639 2024-02-24 19:41:01.51 2024-02-24 19:51:02.879 \N Born million yourself husband old. Air my child draw various ball. https://example.com/ 3478 437610 437089.437610.437639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4839313453447 0 \N \N f 0 \N 1 244094563 0 f f \N \N \N \N 437089 \N 0 0 \N \N f \N 441404 2024-02-28 02:42:03.159 2024-02-28 02:52:04.976 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark https://example.com/ 19809 412443 412443.441404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4609442020416 0 \N \N f 0 \N 2 121474050 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N 437056 2024-02-24 11:36:59.564 2024-02-24 11:47:00.855 \N Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instea https://example.com/ 15938 437008 437008.437056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8460800817114 0 \N \N f 0 \N 3 53673306 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437695 2024-02-24 21:11:41.579 2024-02-24 21:21:43.88 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope https://example.com/ 15484 437692 437276.437685.437689.437692.437695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7647408026776 0 \N \N f 0 \N 0 182714105 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 437692 2024-02-24 21:03:25.962 2024-02-24 21:13:27.314 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatme https://example.com/ 21523 437689 437276.437685.437689.437692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9469388979626 0 \N \N f 0 \N 1 103316519 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 437635 2024-02-24 19:36:30.493 2024-02-24 19:46:31.58 \N Meeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs mill https://example.com/ 1468 436752 436752.437635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3368003220792 0 \N \N f 0 \N 3 53686459 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 437666 2024-02-24 20:35:27.477 2024-02-24 20:45:28.613 \N Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade mes https://example.com/ 27 436888 436759.436820.436863.436888.437666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5876477632634 0 \N \N f 0 \N 1 106051507 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 437658 2024-02-24 20:22:56.11 2024-02-24 20:32:57.356 \N Always friend price benefit. Reflect seem help none https://example.com/ 20353 437646 437646.437658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.25211035271904 0 \N \N f 0 \N 1 27428991 0 f f \N \N \N \N 437646 \N 0 0 \N \N f \N 442124 2024-02-28 15:07:12.472 2024-02-28 15:17:14.139 \N Order science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experie https://example.com/ 19980 442109 442084.442109.442124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90690142989816 0 \N \N f 0 \N 14 117265892 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442109 2024-02-28 15:02:36.924 2024-02-28 15:12:38.185 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. https://example.com/ 1692 442084 442084.442109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58941078828534 0 \N \N f 0 \N 15 185484372 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437625 2024-02-24 19:23:50.851 2024-02-24 19:33:52.78 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair https://example.com/ 8498 437518 427941.437441.437518.437625 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1359673912743 0 \N \N f 0 \N 0 240223133 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 437573 2024-02-24 18:39:00.817 2024-02-24 18:49:01.831 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat re https://example.com/ 8059 437472 437472.437573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6565493722477 0 \N \N f 0 \N 5 108279756 0 f f \N \N \N \N 437472 \N 0 0 \N \N f \N 437628 2024-02-24 19:27:48.375 2024-02-24 19:37:49.787 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern stil https://example.com/ 13097 437617 437583.437617.437628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6515212998457 0 \N \N f 0 \N 6 220741029 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 440752 2024-02-27 16:28:14.328 2024-02-27 16:38:15.676 \N Side rather law learn. Continue executive there garden air image year. Pla https://example.com/ 21405 439139 439139.440752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5745539887929 0 \N \N f 0 \N 0 179518702 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 437641 2024-02-24 19:45:39.578 2024-02-24 19:55:40.972 \N Political https://example.com/ 20554 435834 435834.437641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5622664225881 0 \N \N f 0 \N 0 85951187 0 f f \N \N \N \N 435834 \N 0 0 \N \N f \N 441708 2024-02-28 11:03:23.364 2024-02-28 11:13:25.436 \N Small concern p https://example.com/ 16052 441704 441695.441701.441704.441708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7967525239726 0 \N \N f 0 \N 0 79962124 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441738 2024-02-28 11:21:37.057 2024-02-28 11:31:38.365 \N Poor often speak everyone collection quite space. Carry paper floor. Commer https://example.com/ 16351 441699 441695.441699.441738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.39735816540271 0 \N \N f 0 \N 11 118872128 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441771 2024-02-28 11:41:54.559 2024-02-28 11:51:56.829 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment age https://example.com/ 8162 441754 441695.441699.441738.441754.441771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7894787520662 0 \N \N f 0 \N 7 32193726 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 437640 2024-02-24 19:44:01.817 2024-02-24 19:54:02.874 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nSpeech also his. White PM rather return. Indi https://example.com/ 1273 437626 437403.437626.437640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6985292961929 0 \N \N f 0 \N 0 130947136 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N 442730 2024-02-28 21:21:23.742 2024-02-28 21:31:24.98 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appea https://example.com/ 16267 442701 442508.442701.442730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8022151909949 0 \N \N f 0 \N 1 214128894 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 443262 2024-02-29 10:12:02.554 2024-02-29 10:22:03.589 \N Need huge foreign thing coach him detail sense. Rule TV else. Southe https://example.com/ 19992 442358 442358.443262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3430423015774 0 \N \N f 0 \N 0 14511256 0 f f \N \N \N \N 442358 \N 0 0 \N \N f \N 443235 2024-02-29 09:53:36.748 2024-02-29 10:03:38.56 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine econom https://example.com/ 21012 442600 442084.442600.443235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6242089681222 0 \N \N f 0 \N 2 27763572 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 437550 2024-02-24 17:58:18.18 2024-02-24 18:08:19.282 Drug you class operation. Have Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account https://example.com/ 12261 \N 437550 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 1.67823627002974 0 \N \N f 0 \N 0 240203559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437660 2024-02-24 20:27:38.716 2024-02-24 20:37:39.585 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nMoment or possible there month. Myself hit name exist team herself train https://example.com/ 3706 434038 434038.437660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5477958097719 0 \N \N f 0 \N 0 37787662 0 f f \N \N \N \N 434038 \N 0 0 \N \N f \N 437648 2024-02-24 20:10:04.127 2024-02-24 20:20:06.177 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nDecade activity a https://example.com/ 20222 437646 437646.437648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.120057549715433 0 \N \N f 0 \N 2 4875835 0 f f \N \N \N \N 437646 \N 0 0 \N \N f \N 440743 2024-02-27 16:22:25.803 2024-02-27 16:32:27.174 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. https://example.com/ 21271 440726 440608.440726.440743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.30089165044754 0 \N \N f 0 \N 2 53852135 0 f f \N \N \N \N 440608 \N 0 0 \N \N f \N 440733 2024-02-27 16:12:22.155 2024-02-27 16:22:23.721 \N Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer sugg https://example.com/ 12951 439380 439348.439380.440733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6954079194629 0 \N \N f 0 \N 3 103152492 0 f f \N \N \N \N 439348 \N 0 0 \N \N f \N 440762 2024-02-27 16:32:41.686 2024-02-27 16:42:43.374 \N Face opportunity account eat program father https://example.com/ 1173 440754 439348.439380.440733.440746.440754.440762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.92233033413952 0 \N \N f 0 \N 0 133853465 0 f f \N \N \N \N 439348 \N 0 0 \N \N f \N 435834 2024-02-23 04:51:21.009 2024-02-23 05:01:23.736 Tell billion now Reach road deal especially down since ball sco https://example.com/ 18178 \N 435834 \N \N \N \N \N \N \N \N art \N ACTIVE \N 21.3484477571091 0 \N \N f 0 \N 1 188326606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437643 2024-02-24 19:55:38.359 2024-02-24 20:05:40.016 Determine evidence bar. Evening where myself should Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science. https://example.com/ 10291 \N 437643 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.66747160818824 0 \N \N f 0 \N 0 139932133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437668 2024-02-24 20:40:31.926 2024-02-24 20:45:24.75 \N Theory teach dream home past. Population lose establish understand. Study night nothing everyone https://example.com/ 20434 58808 58808.437668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.102766633851523 0 \N \N f 0 \N 0 153663972 0 f f \N \N \N \N 58808 \N 0 0 \N \N f \N 439380 2024-02-26 14:30:18.781 2024-02-26 14:40:20.546 \N Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. He https://example.com/ 705 439348 439348.439380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2142102440777 0 \N \N f 0 \N 4 203809757 0 f f \N \N \N \N 439348 \N 0 0 \N \N f \N 440746 2024-02-27 16:24:37.744 2024-02-27 16:34:39.536 \N Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill https://example.com/ 6229 440733 439348.439380.440733.440746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9041601877242 0 \N \N f 0 \N 2 346085 0 f f \N \N \N \N 439348 \N 0 0 \N \N f \N 440755 2024-02-27 16:30:24.062 2024-02-27 16:40:25.778 \N Health recently away many who https://example.com/ 17365 440742 440422.440742.440755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1672900083367 0 \N \N f 0 \N 0 70704581 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440740 2024-02-27 16:17:42.131 2024-02-27 16:27:43.735 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such https://example.com/ 21037 440732 440732.440740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7217803583389 0 \N \N f 0 \N 0 22439679 0 f f \N \N \N \N 440732 \N 0 0 \N \N f \N 437586 2024-02-24 18:45:12.937 2024-02-24 18:55:13.682 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determin https://example.com/ 14280 437579 437044.437560.437579.437586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1354473162797 0 \N \N f 0 \N 2 31739461 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 439348 2024-02-26 14:05:42.486 2024-02-26 14:15:43.551 Beyond song throw blood Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue lang https://example.com/ 2056 \N 439348 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.21931734955917 0 \N \N f 0 \N 6 12212984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437382 2024-02-24 15:45:36.165 2024-02-24 15:55:37.664 Push recently lay whose. Window network friend foot cold b Improve different identify on https://example.com/ 10493 \N 437382 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.7301705208479 0 \N \N f 0 \N 0 235042394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437743 2024-02-24 22:49:53.618 2024-02-24 22:59:54.675 \N Best affect mind former histor https://example.com/ 651 437705 437687.437705.437743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3720321516021 0 \N \N f 0 \N 0 139024607 0 f f \N \N \N \N 437687 \N 0 0 \N \N f \N 437767 2024-02-24 23:41:43.48 2024-02-24 23:51:45.194 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect com https://example.com/ 12175 437714 437714.437767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9979136462943 0 \N \N f 0 \N 1 173108422 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437588 2024-02-24 18:47:29.263 2024-02-24 18:57:30.945 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First de https://example.com/ 21600 437560 437044.437560.437588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8349385486801 0 \N \N f 0 \N 3 63061882 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 440754 2024-02-27 16:30:15.972 2024-02-27 16:40:17.707 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact m https://example.com/ 20424 440746 439348.439380.440733.440746.440754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.88014949150317 0 \N \N f 0 \N 1 215406625 0 f f \N \N \N \N 439348 \N 0 0 \N \N f \N 437644 2024-02-24 19:59:22.774 2024-02-24 20:09:23.991 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Son https://example.com/ 18271 437642 437642.437644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1327755751284 0 \N \N f 0 \N 0 136553770 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N 437737 2024-02-24 22:45:14.411 2024-02-24 22:55:16.259 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. S https://example.com/ 8945 437720 437720.437737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.84626270108567 0 \N \N f 0 \N 1 203467319 0 f f \N \N \N \N 437720 \N 0 0 \N \N f \N 437650 2024-02-24 20:15:18.061 2024-02-24 20:25:19.432 \N Tend yes call look. Real feel scient https://example.com/ 5779 437240 437008.437056.437092.437240.437650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4028013718128 0 \N \N f 0 \N 0 32465728 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437092 2024-02-24 12:31:33.508 2024-02-24 12:41:34.437 \N Wish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert typ https://example.com/ 16704 437056 437008.437056.437092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.24231693199012 0 \N \N f 0 \N 2 179943510 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 437667 2024-02-24 20:37:10.877 2024-02-24 20:47:13.426 Find building number energy its Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own. https://example.com/ 20616 \N 437667 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 2.42855680052379 0 \N \N f 0 \N 4 184869885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442379 2024-02-28 16:52:06.424 2024-02-28 17:02:07.836 \N Detail economy still boy fine in series. Bring probably list stop still else statement stand. https://example.com/ 21062 442225 442170.442225.442379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1965867454281 0 \N \N f 0 \N 3 127701633 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 440758 2024-02-27 16:31:19.2 2024-02-27 16:41:20.728 \N Garden morning compare federal. Already west parent art work hard student. Goal sense thems https://example.com/ 2347 440717 440180.440194.440717.440758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2106761261799 0 \N \N f 0 \N 0 210276243 0 f f \N \N \N \N 440180 \N 0 0 \N \N f \N 442386 2024-02-28 16:54:22.21 2024-02-28 17:04:24.211 \N Wish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge https://example.com/ 20826 442163 442163.442386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.20340705995147 0 \N \N f 0 \N 0 30964023 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442349 2024-02-28 16:34:54.3 2024-02-28 16:44:55.69 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should la https://example.com/ 16789 442225 442170.442225.442349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.9152454873727 0 \N \N f 0 \N 0 54754094 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442414 2024-02-28 17:03:01.401 2024-02-28 17:13:03.189 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader m https://example.com/ 17984 442084 442084.442414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1358063061892 0 \N \N f 0 \N 1 232358882 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442341 2024-02-28 16:30:29.474 2024-02-28 16:40:30.951 \N Statement could up son I. Range book politics sign I whatever suffer col https://example.com/ 18660 442336 441695.441851.442336.442341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.9164222253583 0 \N \N f 0 \N 1 106774514 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 437681 2024-02-24 20:54:09.739 2024-02-24 21:04:10.762 \N Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent https://example.com/ 13361 437539 437539.437681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.063255255981538 0 \N \N f 0 \N 1 15164341 0 f f \N \N \N \N 437539 \N 0 0 \N \N f \N 437647 2024-02-24 20:04:55.542 2024-02-24 20:14:57.033 \N Per over executive https://example.com/ 2502 437637 437531.437637.437647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0863740125103 0 \N \N f 0 \N 0 19766839 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 440761 2024-02-27 16:32:30.831 2024-02-27 16:42:32.084 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply https://example.com/ 4102 440743 440608.440726.440743.440761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2518340142318 0 \N \N f 0 \N 1 107390059 0 f f \N \N \N \N 440608 \N 0 0 \N \N f \N 442387 2024-02-28 16:54:25.921 2024-02-28 17:04:27.259 Any new necessary low. Opt Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wr https://example.com/ 9809 \N 442387 \N \N \N \N \N \N \N \N security \N ACTIVE \N 17.3424484158706 0 \N \N f 0 \N 0 180876045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440963 2024-02-27 19:24:08.502 2024-02-27 19:34:10.188 \N Though or meet hotel. Pay center patte https://example.com/ 12708 440712 440712.440963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4071082129229 0 \N \N f 0 \N 1 97276770 0 f f \N \N \N \N 440712 \N 0 0 \N \N f \N 437531 2024-02-24 17:40:22.906 2024-02-24 17:50:24.769 Onto although Democrat mind significant trade hair. Produc Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. P https://example.com/ 19812 \N 437531 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 22.2343052942337 0 \N \N f 0 \N 9 127903367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440712 2024-02-27 15:55:37.564 2024-02-27 16:05:39.558 Message thr Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick https://example.com/ 19527 \N 440712 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 11.6672224747142 0 \N \N f 0 \N 3 151503886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437649 2024-02-24 20:14:46.709 2024-02-24 20:24:48.217 \N Popular rest certainly. Citizen though li https://example.com/ 11523 437648 437646.437648.437649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6181441065589 0 \N \N f 0 \N 0 231181573 0 f f \N \N \N \N 437646 \N 0 0 \N \N f \N 437669 2024-02-24 20:41:52.85 2024-02-24 20:51:53.851 If put nothing Top happen reveal west player great. Single t https://example.com/ 1352 \N 437669 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 21.5099301343457 0 \N \N f 0 \N 0 157578378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437679 2024-02-24 20:53:00.637 2024-02-24 21:03:01.559 \N Maybe doc https://example.com/ 7992 437673 437673.437679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.61205391798809 0 \N \N f 0 \N 0 50776183 0 f f \N \N \N \N 437673 \N 0 0 \N \N f \N 440763 2024-02-27 16:33:01.078 2024-02-27 16:43:02.634 \N Film beautiful large international mother order recognize. Pressure statement adult simply need. Pro https://example.com/ 1806 440727 440727.440763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.430486094533684 0 \N \N f 0 \N 3 177261871 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 437651 2024-02-24 20:15:50.598 2024-02-24 20:25:51.665 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security internation https://example.com/ 1141 437531 437531.437651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8754589658984 0 \N \N f 0 \N 1 211700463 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 437657 2024-02-24 20:22:01.372 2024-02-24 20:32:03.079 \N Join push remain behavior. Various song no successful own. Him https://example.com/ 10818 437634 437634.437657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44653020085774 0 \N \N f 0 \N 0 80556021 0 f f \N \N \N \N 437634 \N 0 0 \N \N f \N 440757 2024-02-27 16:31:10.091 2024-02-27 16:41:11.47 \N Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nIn https://example.com/ 8416 440622 440622.440757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.32635998867151 0 \N \N f 0 \N 0 114211682 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437493 2024-02-24 17:13:10.531 2024-02-24 17:23:11.98 \N Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nHour land give ground child range. Former receive el https://example.com/ 21522 437044 437044.437493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3304152249158 0 \N \N f 0 \N 0 49725073 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437665 2024-02-24 20:35:00.911 2024-02-24 20:45:02.562 \N Animal character seek song. Compare put sometimes charge once. Need onto g https://example.com/ 21342 437512 437233.437512.437665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3359424072043 0 \N \N f 0 \N 0 127517567 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437664 2024-02-24 20:32:42.726 2024-02-24 20:42:43.566 \N Community l https://example.com/ 11263 437269 437269.437664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35456704394849 0 \N \N f 0 \N 0 235798078 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 437589 2024-02-24 18:49:59.116 2024-02-24 19:00:00.524 \N Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model s https://example.com/ 721 437044 437044.437589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0704894021365 0 \N \N f 0 \N 0 200325282 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437656 2024-02-24 20:21:58.306 2024-02-24 20:31:59.415 \N Sense coll https://example.com/ 9331 437634 437634.437656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8406675576555 0 \N \N f 0 \N 0 120178519 0 f f \N \N \N \N 437634 \N 0 0 \N \N f \N 437555 2024-02-24 18:06:26.131 2024-02-24 18:16:27.246 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk https://example.com/ 2528 437535 437502.437535.437555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31007364347701 0 \N \N f 0 \N 1 103891276 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 437663 2024-02-24 20:29:50.377 2024-02-24 20:39:50.847 \N Himself seem along exist population development possible easy. Need within least necessary b https://example.com/ 8326 437655 437044.437560.437579.437586.437655.437663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.30831407422766 0 \N \N f 0 \N 0 140910393 0 f f \N \N \N \N 437044 \N 0 0 \N \N f \N 437693 2024-02-24 21:03:33.297 2024-02-24 21:13:34.446 \N Strong of create pre https://example.com/ 12289 437666 436759.436820.436863.436888.437666.437693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.602304903738045 0 \N \N f 0 \N 0 137439400 0 f f \N \N \N \N 436759 \N 0 0 \N \N f \N 441039 2024-02-27 20:11:20.791 2024-02-27 20:21:21.616 Rise environmental middle fly listen rest national. Fall hosp Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier a https://example.com/ 1624 \N 441039 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.30887740936 0 \N \N f 0 \N 0 142878108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440738 2024-02-27 16:15:15.109 2024-02-27 16:25:16.318 \N Yard someone shake final https://example.com/ 631 440731 440725.440731.440738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5072055706239 0 \N \N f 0 \N 1 137063419 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441032 2024-02-27 20:06:52.933 2024-02-27 20:16:54.52 \N Series wait hotel n https://example.com/ 13553 440321 440321.441032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28425394754142 0 \N \N f 0 \N 0 227374441 0 f f \N \N \N \N 440321 \N 0 0 \N \N f \N 441056 2024-02-27 20:24:21.075 2024-02-27 20:34:22.873 \N Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough nee https://example.com/ 5306 441052 440764.441052.441056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7973064956 0 \N \N f 0 \N 2 141291592 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441030 2024-02-27 20:06:23.413 2024-02-27 20:16:24.457 \N Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skil https://example.com/ 19199 441015 440988.441015.441030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9056430224225 0 \N \N f 0 \N 0 187370989 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 437703 2024-02-24 21:33:14.787 2024-02-24 21:43:15.9 \N Score might instead ground institution. Almost na https://example.com/ 977 437427 437408.437411.437417.437427.437703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.684521032675 0 \N \N f 0 \N 0 50537537 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 437690 2024-02-24 21:02:17.581 2024-02-24 21:12:18.735 Both tell huge fine yet fall crime. Imp Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough. https://example.com/ 4238 \N 437690 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 10.1475280024927 0 \N \N f 0 \N 1 232660518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437678 2024-02-24 20:52:26.903 2024-02-24 21:02:28.049 \N Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win s https://example.com/ 20904 437635 436752.437635.437678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8426389574781 0 \N \N f 0 \N 2 71085805 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 440964 2024-02-27 19:25:25.357 2024-02-27 19:35:26.405 \N Involve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this https://example.com/ 19732 440936 440911.440936.440964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3551565007621 0 \N \N f 0 \N 0 51791579 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 437744 2024-02-24 22:50:19.977 2024-02-24 23:00:21.106 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agre https://example.com/ 2639 437714 437714.437744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.54235076615 0 \N \N f 0 \N 1 56537581 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 440950 2024-02-27 19:07:37.79 2024-02-27 19:17:39.157 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil s https://example.com/ 18449 440939 440527.440603.440939.440950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2194962185809 0 \N \N f 0 \N 1 247177816 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440774 2024-02-27 16:41:45.026 2024-02-27 16:51:46.357 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with a https://example.com/ 5293 440575 440575.440774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9350275922544 0 \N \N f 0 \N 1 28648611 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 440772 2024-02-27 16:41:39.798 2024-02-27 16:51:40.7 \N Affect director focus feeling whole best. Power when difficult impac https://example.com/ 19773 440725 440725.440772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4796521479431 0 \N \N f 0 \N 1 49743100 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437541 2024-02-24 17:47:33.117 2024-02-24 17:57:34.703 Program want yeah color. Decade your peace catch visit. Figure m Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Trai https://example.com/ 11417 \N 437541 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.29463337871 0 \N \N f 0 \N 0 32606046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437785 2024-02-25 00:21:10.684 2024-02-25 00:31:12.674 \N Money rise give serve will expec https://example.com/ 16998 437654 437654.437785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.96512325305843 0 \N \N f 0 \N 2 91089801 0 f f \N \N \N \N 437654 \N 0 0 \N \N f \N 440745 2024-02-27 16:23:30.763 2024-02-27 16:33:31.621 \N Including l https://example.com/ 5758 440741 440520.440696.440708.440741.440745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8144646005873 0 \N \N f 0 \N 0 80054588 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 437677 2024-02-24 20:51:35.377 2024-02-24 21:01:37.007 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carr https://example.com/ 21463 437629 437524.437629.437677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99562657095857 0 \N \N f 0 \N 0 91104537 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 437680 2024-02-24 20:53:25.223 2024-02-24 21:03:26.95 \N Just condition https://example.com/ 622 437673 437673.437680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.874126400908324 0 \N \N f 0 \N 0 85136724 0 f f \N \N \N \N 437673 \N 0 0 \N \N f \N 437676 2024-02-24 20:49:26.296 2024-02-24 20:59:27.611 \N Scientist light the everything find window issue. Money space https://example.com/ 9426 437611 437611.437676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55327201864022 0 \N \N f 0 \N 0 224815167 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 437682 2024-02-24 20:56:09.719 2024-02-24 21:06:10.952 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write sit https://example.com/ 10352 437611 437611.437682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9107260217866 0 \N \N f 0 \N 0 242179317 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 440290 2024-02-27 07:16:37.262 2024-02-27 07:26:38.551 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than m https://example.com/ 16348 440229 440229.440290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0927678318901 0 \N \N f 0 \N 0 155809212 0 f f \N \N \N \N 440229 \N 0 0 \N \N f \N 440802 2024-02-27 16:59:19.886 2024-02-27 17:09:20.791 Seven nice notice wife they couple. Suffer town happy learn. Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center. https://example.com/ 21539 \N 440802 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.8643004584556 0 \N \N f 0 \N 2 53136242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441209 2024-02-27 23:00:22.851 2024-02-27 23:10:24.891 \N Mentio https://example.com/ 15536 441135 440898.441135.441209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4582250696933 0 \N \N f 0 \N 0 113974821 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 440767 2024-02-27 16:37:40.697 2024-02-27 16:47:41.686 \N Great how before current effort because. Simply increase really start. Front benefit act. F https://example.com/ 6741 440763 440727.440763.440767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1001043211065 0 \N \N f 0 \N 2 219798559 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 432402 2024-02-20 12:03:31.431 2024-02-20 12:13:33.096 \N Book it view should. Impact cold others be without. Fly coach wi https://example.com/ 928 430795 430795.432402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2472851659069 0 \N \N f 0 \N 0 178690323 0 f f \N \N \N \N 430795 \N 0 0 \N \N f \N 437694 2024-02-24 21:05:40.568 2024-02-24 21:15:42.185 \N Garden morning comp https://example.com/ 19286 437608 437608.437694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.13534649481716 0 \N \N f 0 \N 0 219311127 0 f f \N \N \N \N 437608 \N 0 0 \N \N f \N 437688 2024-02-24 21:01:40.636 2024-02-24 21:11:41.638 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer https://example.com/ 6765 437403 437403.437688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3101131591952 0 \N \N f 0 \N 0 145878906 0 f f \N \N \N \N 437403 \N 0 0 \N \N f \N 437608 2024-02-24 19:06:51.184 2024-02-24 23:13:02.739 Word around effec Wait forward with w https://example.com/ 691 \N 437608 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4597929498025 0 \N \N f 0 \N 3 91531806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437777 2024-02-25 00:03:37.287 2024-02-25 00:13:39.094 \N Travel watch north career song last. Together article wind billion https://example.com/ 10519 437687 437687.437777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9549856601344 0 \N \N f 0 \N 1 203357550 0 f f \N \N \N \N 437687 \N 0 0 \N \N f \N 437691 2024-02-24 21:02:58.107 2024-02-24 21:12:58.945 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nBoard collection beat and worry. Traditional ap https://example.com/ 5701 437350 435402.435952.437350.437691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2497692209668 0 \N \N f 0 \N 0 84178173 0 f f \N \N \N \N 435402 \N 0 0 \N \N f \N 440781 2024-02-27 16:44:51.208 2024-02-27 16:54:53.123 At within eye player newspaper fish partner. Work because personal Never whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur. https://example.com/ 9985 \N 440781 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.0043728939628 0 \N \N f 0 \N 1 50936410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440771 2024-02-27 16:40:39.261 2024-02-27 16:50:40.463 \N Author professional find face reflect. Defense interesting happy accept debate purpose. Sport cen https://example.com/ 11395 440725 440725.440771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.35985550191513 0 \N \N f 0 \N 2 56616117 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437685 2024-02-24 20:58:46.739 2024-02-24 21:08:47.972 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Co https://example.com/ 21212 437276 437276.437685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9361574815163 0 \N \N f 0 \N 3 180111743 0 f f \N \N \N \N 437276 \N 0 0 \N \N f \N 441207 2024-02-27 22:59:47.846 2024-02-27 23:09:49.36 \N Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many s https://example.com/ 886 440899 440898.440899.441207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0351528548421 0 \N \N f 0 \N 1 118758153 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441038 2024-02-27 20:10:54.274 2024-02-27 20:20:55.8 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner re https://example.com/ 14950 440692 440692.441038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3176590692232 0 \N \N f 0 \N 1 165231791 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 437637 2024-02-24 19:40:16.764 2024-02-24 19:50:18.885 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare eco https://example.com/ 15762 437531 437531.437637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8854000339914 0 \N \N f 0 \N 1 51672239 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 440766 2024-02-27 16:36:47.847 2024-02-27 16:46:49.881 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public https://example.com/ 919 440761 440608.440726.440743.440761.440766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.40026135703798 0 \N \N f 0 \N 0 86673235 0 f f \N \N \N \N 440608 \N 0 0 \N \N f \N 441653 2024-02-28 10:26:27.795 2024-02-28 10:36:30.881 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone https://example.com/ 1488 441640 441514.441640.441653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5423798577875 0 \N \N f 0 \N 9 230224239 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 440748 2024-02-27 16:25:30.416 2024-02-27 16:35:31.923 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two https://example.com/ 4973 440663 440663.440748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7011497614885 0 \N \N f 0 \N 0 144668451 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 437169 2024-02-24 13:21:57.487 2024-02-24 13:31:58.956 \N Specific child according. Behind far sure bac https://example.com/ 15052 437063 437063.437169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8260182326824 0 \N \N f 0 \N 0 131469570 0 f f \N \N \N \N 437063 \N 0 0 \N \N f \N 440386 2024-02-27 09:57:37.44 2024-02-27 10:07:38.794 West tend alone prepare build view support. P East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week. https://example.com/ 21201 \N 440386 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.36618268591948 0 \N \N f 0 \N 4 146072985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437427 2024-02-24 16:17:45.454 2024-02-24 16:27:47.205 \N Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nTravel watch north career song last. Together article wind billion medical. Cause ar https://example.com/ 8505 437417 437408.437411.437417.437427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7815032028108 0 \N \N f 0 \N 2 197521117 0 f f \N \N \N \N 437408 \N 0 0 \N \N f \N 440677 2024-02-27 15:28:34.74 2024-02-27 15:38:36.309 \N Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nStatement these family dark. Realize American always somebody executive design. https://example.com/ 1320 440622 440622.440677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3056274426675 0 \N \N f 0 \N 0 143828720 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 441135 2024-02-27 21:45:36.346 2024-02-27 21:55:37.535 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investmen https://example.com/ 10056 440898 440898.441135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3661102023363 0 \N \N f 0 \N 1 41183461 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 442381 2024-02-28 16:52:46.89 2024-02-28 17:02:47.998 \N Direction fig https://example.com/ 18816 442313 442313.442381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6646746899331 0 \N \N f 0 \N 1 14378644 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 437675 2024-02-24 20:49:11.577 2024-02-24 20:59:13.179 \N Edge card save. Whether manager always however scene move. Soldier newspap https://example.com/ 7891 437670 437670.437675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3086253057072 0 \N \N f 0 \N 1 148009617 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 437699 2024-02-24 21:16:13.472 2024-02-24 21:26:14.484 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imag https://example.com/ 21492 437675 437670.437675.437699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4632557930675 0 \N \N f 0 \N 0 51580487 0 f f \N \N \N \N 437670 \N 0 0 \N \N f \N 437701 2024-02-24 21:29:10.041 2024-02-24 21:39:11.748 \N She for deep administration everybody u https://example.com/ 9438 437512 437233.437512.437701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8675808254012 0 \N \N f 0 \N 0 172698692 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440770 2024-02-27 16:40:24.667 2024-02-27 16:50:26.205 \N Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic simi https://example.com/ 18769 440760 440663.440751.440760.440770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8328544309666 0 \N \N f 0 \N 0 22252619 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 442392 2024-02-28 16:56:30.086 2024-02-28 17:06:31.294 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nRole number law sc https://example.com/ 14906 442154 441514.441640.441653.441733.441961.442134.442154.442392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7650923993613 0 \N \N f 0 \N 1 187675927 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442348 2024-02-28 16:33:27.733 2024-02-28 16:43:28.61 \N Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear jus https://example.com/ 21485 442328 442328.442348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0035808115605 0 \N \N f 0 \N 3 137029323 0 f f \N \N \N \N 442328 \N 0 0 \N \N f \N 442353 2024-02-28 16:37:20.293 2024-02-28 16:47:21.326 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finis https://example.com/ 19398 442348 442328.442348.442353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2514540456556 0 \N \N f 0 \N 2 56232823 0 f f \N \N \N \N 442328 \N 0 0 \N \N f \N 437702 2024-02-24 21:32:05.557 2024-02-24 21:42:07.242 \N Young https://example.com/ 18174 437673 437673.437702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55721979752587 0 \N \N f 0 \N 0 218876016 0 f f \N \N \N \N 437673 \N 0 0 \N \N f \N 442388 2024-02-28 16:55:06.257 2024-02-28 17:05:08.109 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine al https://example.com/ 2042 442379 442170.442225.442379.442388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34351086212703 0 \N \N f 0 \N 2 33156618 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 440776 2024-02-27 16:42:11.781 2024-02-27 16:52:12.928 \N Over partne https://example.com/ 618 440767 440727.440763.440767.440776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.76018843441 0 \N \N f 0 \N 0 153847169 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 440535 2024-02-27 13:20:07.967 2024-02-27 13:30:09.815 \N Bad half least https://example.com/ 9341 440386 440386.440535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.02244191056955 0 \N \N f 0 \N 0 222708719 0 f f \N \N \N \N 440386 \N 0 0 \N \N f \N 442397 2024-02-28 16:57:43.728 2024-02-28 17:07:45.079 \N Power herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource gr https://example.com/ 894 442339 442339.442397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3359044255525 0 \N \N f 0 \N 1 146668937 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 437708 2024-02-24 21:42:06.05 2024-02-24 21:52:08.031 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body tot https://example.com/ 14818 437697 437472.437573.437597.437622.437636.437697.437708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1344764868875 0 \N \N f 0 \N 0 66369918 0 f f \N \N \N \N 437472 \N 0 0 \N \N f \N 440780 2024-02-27 16:44:35.801 2024-02-27 16:54:37.061 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry stud https://example.com/ 5961 440764 440764.440780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4132083986498 0 \N \N f 0 \N 1 80434559 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 440670 2024-02-27 15:20:51.051 2024-02-27 15:30:52.278 \N Race civil today. Brother record https://example.com/ 659 440428 440366.440428.440670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.737799733094 0 \N \N f 0 \N 0 157942576 0 f f \N \N \N \N 440366 \N 0 0 \N \N f \N 442369 2024-02-28 16:48:19.26 2024-02-28 16:58:20.891 \N Health reduce performance body similar https://example.com/ 1658 442023 442023.442369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7519322946212 0 \N \N f 0 \N 3 58023820 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442303 2024-02-28 16:16:04.713 2024-02-28 16:26:06.947 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nGet hear cha https://example.com/ 7553 442268 442084.442109.442124.442149.442260.442268.442303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3538192390032 0 \N \N f 0 \N 5 187087627 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 440366 2024-02-27 09:34:17.984 2024-02-27 09:44:18.965 Film without deal production let letter. I product step follow discussi Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree. https://example.com/ 15484 \N 440366 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 0.763832635598192 0 \N \N f 0 \N 2 210643980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442402 2024-02-28 16:59:35.435 2024-02-28 17:09:36.961 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite https://example.com/ 14271 442023 442023.442402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8019388009839 0 \N \N f 0 \N 1 142702003 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 437715 2024-02-24 21:51:29.734 2024-02-24 22:01:31.944 \N Poor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Withi https://example.com/ 19103 437648 437646.437648.437715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6444004121407 0 \N \N f 0 \N 0 18366388 0 f f \N \N \N \N 437646 \N 0 0 \N \N f \N 440817 2024-02-27 17:04:59.589 2024-02-27 17:15:00.835 \N Fly t https://example.com/ 1985 440806 440422.440470.440501.440506.440806.440817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8479697345272 0 \N \N f 0 \N 0 113562129 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440853 2024-02-27 17:33:51.373 2024-02-27 17:43:53.141 \N Approach stuff big ahead nothing hotel great city. Four east cell age with recognize howe https://example.com/ 11714 440712 440712.440853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7994844969068 0 \N \N f 0 \N 0 13630684 0 f f \N \N \N \N 440712 \N 0 0 \N \N f \N 440915 2024-02-27 18:39:04.047 2024-02-27 18:49:06.098 Never hotel town trip thus safe eight. Share high rich groun Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. https://example.com/ 19930 \N 440915 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.6499100102627 0 \N \N f 0 \N 0 120576988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442418 2024-02-28 17:04:08.9 2024-02-28 17:14:10.127 \N Specific brother six p https://example.com/ 19243 442406 442406.442418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.50935889174069 0 \N \N f 0 \N 0 20925660 0 f f \N \N \N \N 442406 \N 0 0 \N \N f \N 437840 2024-02-25 01:35:57.706 2024-02-25 01:45:58.657 Candidate down city since Material arm interest draw production. Develop play c https://example.com/ 21573 \N 437840 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 18.995428568269 0 \N \N f 0 \N 1 176166922 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440782 2024-02-27 16:45:31.734 2024-02-27 16:55:32.837 \N Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground se https://example.com/ 2264 440767 440727.440763.440767.440782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6559155277784 0 \N \N f 0 \N 0 105006749 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 440804 2024-02-27 16:59:47.132 2024-02-27 17:09:48.464 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pa https://example.com/ 3683 440788 440633.440788.440804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.755385983272 0 \N \N f 0 \N 0 70424649 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 440428 2024-02-27 11:05:53.525 2024-02-27 11:15:54.814 \N Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official https://example.com/ 21037 440366 440366.440428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71899392464827 0 \N \N f 0 \N 1 249274665 0 f f \N \N \N \N 440366 \N 0 0 \N \N f \N 437709 2024-02-24 21:44:50.491 2024-02-24 21:54:52.075 \N List pr https://example.com/ 11873 437351 437008.437351.437709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9177177410122 0 \N \N f 0 \N 0 154572165 0 f f \N \N \N \N 437008 \N 0 0 \N \N f \N 442407 2024-02-28 17:00:04.951 2024-02-28 17:10:06.007 Always friend price benefit. Reflect seem \N https://example.com/ 3683 \N 442407 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 29.4780423264864 0 \N \N f 0 \N 1 30105935 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440799 2024-02-27 16:56:24.147 2024-02-27 17:06:25.852 \N Author professional find face reflect. Defense interesting happy accept debate pu https://example.com/ 1985 440713 438936.439563.439744.440044.440268.440713.440799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8361030439331 0 \N \N f 0 \N 1 87360659 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 440554 2024-02-27 13:43:55.086 2024-02-27 13:53:56.362 \N Economy rest whateve https://example.com/ 11329 440386 440386.440554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3522525151688 0 \N \N f 0 \N 0 79199616 0 f f \N \N \N \N 440386 \N 0 0 \N \N f \N 440811 2024-02-27 17:00:28.793 2024-02-27 17:10:30.278 \N Maybe https://example.com/ 16717 440794 440633.440794.440811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.534566156424 0 \N \N f 0 \N 0 187601676 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 440714 2024-02-27 15:56:59.734 2024-02-27 16:07:01.368 \N Approac https://example.com/ 20490 440386 440386.440714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3023941542324 0 \N \N f 0 \N 0 200267904 0 f f \N \N \N \N 440386 \N 0 0 \N \N f \N 439644 2024-02-26 17:16:52.073 2024-02-26 17:26:53.619 Though eye claim side government. Form program anal Material focus experience picture. Future still full blood suggest win. Member far light no focus all j https://example.com/ 2724 \N 439644 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 3.64888448501027 0 \N \N f 0 \N 7 31383385 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440969 2024-02-27 19:30:50.662 2024-02-27 19:40:52.35 \N Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address https://example.com/ 1814 440938 440725.440938.440969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7005367844009 0 \N \N f 0 \N 0 108271282 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440930 2024-02-27 18:51:27.26 2024-02-27 19:01:28.599 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience rel https://example.com/ 13097 440926 440911.440922.440926.440930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6400852281362 0 \N \N f 0 \N 6 84541376 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 437684 2024-02-24 20:58:29.064 2024-02-24 21:08:30.776 \N Network interview indeed whet https://example.com/ 20306 437611 437611.437684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55688990823709 0 \N \N f 0 \N 0 129542896 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 440769 2024-02-27 16:40:23.871 2024-02-27 16:50:25.438 \N Top however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indee https://example.com/ 10094 440633 440633.440769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7599277302749 0 \N \N f 0 \N 1 39541950 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437717 2024-02-24 21:52:32.008 2024-02-24 22:02:33.948 \N Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible https://example.com/ 21492 437233 437233.437717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0466743514747 0 \N \N f 0 \N 0 206862921 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437735 2024-02-24 22:43:17.433 2024-02-24 22:53:18.954 \N Side project push g https://example.com/ 9655 437732 437732.437735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3818640085599 0 \N \N f 0 \N 1 59992474 0 f f \N \N \N \N 437732 \N 0 0 \N \N f \N 440806 2024-02-27 16:59:54.601 2024-02-27 17:09:55.559 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice c https://example.com/ 18892 440506 440422.440470.440501.440506.440806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.46762671758672 0 \N \N f 0 \N 1 33093268 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 437750 2024-02-24 22:57:41.545 2024-02-25 14:04:25.316 \N Third would fire in https://example.com/ 18837 437617 437583.437617.437750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6339174895646 0 \N \N f 0 \N 0 63970048 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 437063 2024-02-24 11:51:42.584 2024-02-24 12:01:43.765 Rock source rate fact leave house course. Person support hotel b History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nType door clear left. Test https://example.com/ 831 \N 437063 \N \N \N \N \N \N \N \N science \N ACTIVE \N 6.70513438722363 0 \N \N f 0 \N 3 120137566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437719 2024-02-24 21:58:32.331 2024-02-24 22:08:33.829 \N Pretty street rather speak unit against k https://example.com/ 11678 437687 437687.437719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1017498843511 0 \N \N f 0 \N 0 170655716 0 f f \N \N \N \N 437687 \N 0 0 \N \N f \N 437654 2024-02-24 20:18:44.141 2024-02-24 20:28:45.338 Focus available yeah law. Down there avoid. Program defense last know. Si Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west. https://example.com/ 21627 \N 437654 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.702848602212 0 \N \N f 0 \N 3 133115725 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437710 2024-02-24 21:45:07.066 2024-02-24 21:55:08.418 \N Herself then or effect usually treat. Exact https://example.com/ 640 437707 437233.437512.437619.437707.437710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4494539399674 0 \N \N f 0 \N 1 194949648 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437733 2024-02-24 22:40:00.237 2024-02-24 22:50:01.217 \N Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea hea https://example.com/ 20602 437732 437732.437733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0337219980996 0 \N \N f 0 \N 0 16413524 0 f f \N \N \N \N 437732 \N 0 0 \N \N f \N 440180 2024-02-27 02:10:05.466 2024-02-27 02:20:07.255 Activity itself above forget execut After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south https://example.com/ 1729 \N 440180 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 21.0162031737752 0 \N \N f 0 \N 5 140760867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440801 2024-02-27 16:58:51.474 2024-02-27 17:08:53.327 \N Necessary hold quite on prove past. Stage fron https://example.com/ 4225 440769 440633.440769.440801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6964890322185 0 \N \N f 0 \N 0 55281904 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437705 2024-02-24 21:36:12.874 2024-02-24 21:46:14.167 \N Five now source affect polic https://example.com/ 19557 437687 437687.437705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.6074200776543 0 \N \N f 0 \N 1 2582893 0 f f \N \N \N \N 437687 \N 0 0 \N \N f \N 437804 2024-02-25 00:43:19.158 2024-02-25 00:53:20.712 \N Past hospital she war. Firm spring game seem. Recently night how billion. Po https://example.com/ 21387 437783 410672.434331.437783.437804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0934034063086742 0 \N \N f 0 \N 1 213281089 0 f f \N \N \N \N 410672 \N 0 0 \N \N f \N 437721 2024-02-24 22:02:57.807 2024-02-24 22:12:59.974 Deal probably car remember hit reveal. Here black Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process. https://example.com/ 7418 \N 437721 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 19.310523352255 0 \N \N f 0 \N 0 117458519 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437764 2024-02-24 23:30:33.947 2024-02-24 23:40:34.987 \N Call economy candidate but feeling third ow https://example.com/ 16684 437752 437723.437752.437764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1444332983114 0 \N \N f 0 \N 1 136151636 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440796 2024-02-27 16:55:09.83 2024-02-27 17:05:10.699 \N Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nUntil must summer international. Would child language girl person institution responsibility. Always thought prote https://example.com/ 1175 440783 440663.440751.440760.440773.440783.440796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.51307118129149 0 \N \N f 0 \N 2 82055883 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 440792 2024-02-27 16:50:24.506 2024-02-27 17:00:25.76 Tax here if project. Thing how simply then. Against single daughter would wall c Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly nat https://example.com/ 15544 \N 440792 \N \N \N \N \N \N \N \N news \N ACTIVE \N 28.7550623750045 0 \N \N f 0 \N 2 109000741 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440794 2024-02-27 16:52:34.539 2024-02-27 17:02:35.887 \N Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify g https://example.com/ 18865 440633 440633.440794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0107480918075 0 \N \N f 0 \N 1 26804048 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 440795 2024-02-27 16:53:38.202 2024-02-27 17:03:39.736 West possible modern office manage people. M Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide. https://example.com/ 21201 \N 440795 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.80080488978103 0 \N \N f 0 \N 0 75769743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440800 2024-02-27 16:58:03.88 2024-02-27 17:08:05.261 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nTop happen reveal west player great. Single term sea need sell. Source securit https://example.com/ 15941 440756 439723.440756.440800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7305518444269 0 \N \N f 0 \N 0 30088811 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 437903 2024-02-25 03:03:23.329 2024-02-25 03:13:24.71 \N Site prod https://example.com/ 1039 160050 159987.160050.437903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2087109516434 0 \N \N f 0 \N 0 242608257 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 440789 2024-02-27 16:49:30.553 2024-02-27 16:59:31.672 \N Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cu https://example.com/ 20022 440699 440699.440789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.39927599842173 0 \N \N f 0 \N 0 13067768 0 f f \N \N \N \N 440699 \N 0 0 \N \N f \N 440808 2024-02-27 17:00:05.171 2024-02-27 17:00:10.759 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyo https://example.com/ 19910 440807 440807.440808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6601292656882 0 \N \N f 0 \N 0 84395835 0 f f \N \N \N \N 440807 \N 0 0 \N \N f \N 437746 2024-02-24 22:52:36.639 2024-02-24 23:02:38.567 \N Follow commercial image consider media these. https://example.com/ 20523 437696 437696.437746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7368983275932 0 \N \N f 0 \N 0 48845701 0 f f \N \N \N \N 437696 \N 0 0 \N \N f \N 440678 2024-02-27 15:29:38.296 2024-02-27 15:39:40.483 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider https://example.com/ 21157 440622 440622.440678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1468649469726 0 \N \N f 0 \N 0 97415987 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437662 2024-02-24 20:29:41.271 2024-02-24 20:39:43.724 Wear role agency. Enter back require miss Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nItem attention child take film late. St https://example.com/ 21178 \N 437662 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.27467666558178 0 \N \N f 0 \N 0 99054235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437725 2024-02-24 22:19:18.095 2024-02-24 22:29:20.349 \N Quickly imagine he learn effort risk wish. Respond include traditional kit https://example.com/ 18314 433555 433555.437725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25744754797926 0 \N \N f 0 \N 1 249702626 0 f f \N \N \N \N 433555 \N 0 0 \N \N f \N 437712 2024-02-24 21:45:51.082 2024-02-24 21:55:51.886 \N Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may car https://example.com/ 18663 437233 437233.437712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6712361879061 0 \N \N f 0 \N 0 63872354 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437736 2024-02-24 22:43:42.061 2024-02-24 22:53:43.347 \N Could computer meet. Board response https://example.com/ 20090 437732 437732.437736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3276715688056 0 \N \N f 0 \N 0 48044061 0 f f \N \N \N \N 437732 \N 0 0 \N \N f \N 437734 2024-02-24 22:41:11.488 2024-02-24 22:51:12.796 \N Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by sc https://example.com/ 19038 437402 436899.437402.437734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57739387261803 0 \N \N f 0 \N 0 194401759 0 f f \N \N \N \N 436899 \N 0 0 \N \N f \N 440773 2024-02-27 16:41:42.361 2024-02-27 16:51:43.712 \N Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between https://example.com/ 21274 440760 440663.440751.440760.440773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7534637595814 0 \N \N f 0 \N 4 148215696 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 441303 2024-02-28 00:45:10.671 2024-02-28 00:55:12.354 \N Agree such recognize fast various. Address anyone https://example.com/ 21155 441300 441300.441303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5123431774877 0 \N \N f 0 \N 0 224019240 0 f f \N \N \N \N 441300 \N 0 0 \N \N f \N 436475 2024-02-23 17:36:57.95 2024-02-23 17:46:59.3 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch https://example.com/ 929 436466 436466.436475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.419265811198 0 \N \N f 0 \N 9 25334615 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 437718 2024-02-24 21:56:19.25 2024-02-24 22:06:20.725 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort https://example.com/ 3709 437621 437233.437495.437621.437718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2793030599674 0 \N \N f 0 \N 1 181678872 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440583 2024-02-27 14:17:36.793 2024-02-27 14:27:38.006 \N Ten throw trip up region place painting. House many unit win https://example.com/ 4502 440527 440527.440583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5190598282489 0 \N \N f 0 \N 1 195586134 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 440756 2024-02-27 16:30:40.719 2024-02-27 16:40:42.05 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. https://example.com/ 18873 439723 439723.440756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3984867153554 0 \N \N f 0 \N 1 65734532 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 437864 2024-02-25 02:08:29.515 2024-02-25 04:49:31.009 Fund spring who s Lead against area n https://example.com/ 18124 \N 437864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7260649484495 0 \N \N f 0 \N 0 80469650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437622 2024-02-24 19:19:58.858 2024-02-24 19:30:00.766 \N Our because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nStory do plant get. Base involve sport film authority want song career. Eat https://example.com/ 17392 437597 437472.437573.437597.437622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9715354828437 0 \N \N f 0 \N 3 65505000 0 f f \N \N \N \N 437472 \N 0 0 \N \N f \N 436633 2024-02-23 20:35:25.436 2024-02-23 20:45:26.689 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. https://example.com/ 15762 436475 436466.436475.436633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6008644746389 0 \N \N f 0 \N 5 117997646 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 437728 2024-02-24 22:27:02.733 2024-02-24 22:37:04.391 \N Such yourself girl realize cert https://example.com/ 21178 437454 437454.437728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98404741173809 0 \N \N f 0 \N 0 14570496 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 437472 2024-02-24 17:01:40.24 2024-02-24 17:11:42.451 Them social create app Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve ce https://example.com/ 977 \N 437472 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 11.4016735093592 0 \N \N f 0 \N 6 179141168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437730 2024-02-24 22:30:25.899 2024-02-24 22:40:26.935 \N Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nBall training later think quite. Process since wait provide beat wide. Nor friend https://example.com/ 20481 432844 432674.432844.437730 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94739943399621 0 \N \N f 0 \N 2 168621906 0 f f \N \N \N \N 432674 \N 0 0 \N \N f \N 437757 2024-02-24 23:04:51.222 2024-02-24 23:14:52.279 Role number law science. Sing Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent. https://example.com/ 18453 \N 437757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.540833931082 0 \N \N f 0 \N 0 119046903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440990 2024-02-27 19:46:05.637 2024-02-28 06:20:02.577 \N Range laugh thousan https://example.com/ 672 440764 440764.440990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1896131791658 0 \N \N f 0 \N 1 175511573 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 437653 2024-02-24 20:18:32.809 2024-02-24 20:28:34.313 Happen include car man crime. Local organiz Wish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key. https://example.com/ 15273 \N 437653 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.9133595735849 0 \N \N f 0 \N 0 180127557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437697 2024-02-24 21:13:28.257 2024-02-24 21:23:29.693 \N Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. https://example.com/ 18208 437636 437472.437573.437597.437622.437636.437697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7244499703149 0 \N \N f 0 \N 1 168030950 0 f f \N \N \N \N 437472 \N 0 0 \N \N f \N 437636 2024-02-24 19:37:44.099 2024-02-24 19:47:45.145 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife https://example.com/ 1784 437622 437472.437573.437597.437622.437636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.96001644954369 0 \N \N f 0 \N 2 16529582 0 f f \N \N \N \N 437472 \N 0 0 \N \N f \N 435118 2024-02-22 15:43:06.418 2024-02-22 15:53:08.511 \N Majority https://example.com/ 21418 434851 434851.435118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2923876841145 0 \N \N f 0 \N 0 212182035 0 f f \N \N \N \N 434851 \N 0 0 \N \N f \N 434851 2024-02-22 11:45:50.453 2024-02-22 11:55:51.144 Theory teach dream home past. Popula Ten answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot. https://example.com/ 18231 \N 434851 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.3812348379283 0 \N \N f 0 \N 1 109793710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437749 2024-02-24 22:54:23.271 2024-02-24 23:04:24.674 \N Guy help book. Senior activity envir https://example.com/ 5865 437667 437667.437749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4813534527697 0 \N \N f 0 \N 1 55871805 0 f f \N \N \N \N 437667 \N 0 0 \N \N f \N 437742 2024-02-24 22:49:22.55 2024-02-24 22:59:23.519 Think month catch free. Tree involve deep resourc Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single. https://example.com/ 2508 \N 437742 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 27.202957874669 0 \N \N f 0 \N 0 233149908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437773 2024-02-24 23:52:06.53 2024-02-25 00:02:07.747 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit participan https://example.com/ 18877 437510 436823.436924.437014.437510.437773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.25953225272844 0 \N \N f 0 \N 0 15918328 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 437758 2024-02-24 23:11:21.453 2024-02-24 23:21:23.088 \N Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peac https://example.com/ 1571 437732 437732.437758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.456398818403 0 \N \N f 0 \N 0 82197308 0 f f \N \N \N \N 437732 \N 0 0 \N \N f \N 437740 2024-02-24 22:47:59.803 2024-02-24 22:58:00.96 \N Research e https://example.com/ 20657 437735 437732.437735.437740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2582662811611 0 \N \N f 0 \N 0 87327216 0 f f \N \N \N \N 437732 \N 0 0 \N \N f \N 437731 2024-02-24 22:37:15.526 2024-02-24 22:47:17.078 Avoid avoid forward. Speech suffer level already art technology. S May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent https://example.com/ 827 \N 437731 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8008261317913 0 \N \N f 0 \N 2 127833080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441004 2024-02-27 19:56:52.925 2024-02-27 20:06:54.319 \N Many then growth. Law become return event parent I boy. Increas https://example.com/ 11789 440850 440764.440850.441004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.968423229330995 0 \N \N f 0 \N 0 154765724 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 437751 2024-02-24 22:59:57.904 2024-02-24 23:09:58.647 Instead believe animal then however price particularly. When whose econ To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar. https://example.com/ 21026 \N 437751 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 14.9524916802099 0 \N \N f 0 \N 0 218629049 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437384 2024-02-24 15:47:41.957 2024-02-24 15:57:43.135 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Grou https://example.com/ 2703 436633 436466.436475.436633.437384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5329673586515 0 \N \N f 0 \N 3 77449026 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 431955 2024-02-19 22:22:54.181 2024-02-19 22:32:55.672 Ask arm interview player. Director data order s View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nHimself seem along exist population development possible easy. Nee https://example.com/ 11862 \N 431955 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.642163047489 0 \N \N f 0 \N 0 70694894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440506 2024-02-27 12:25:50.961 2024-02-27 12:35:53.388 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south informa https://example.com/ 794 440501 440422.440470.440501.440506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0211255492097 0 \N \N f 0 \N 2 62627955 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440805 2024-02-27 16:59:48.94 2024-02-27 17:09:50.48 \N Most describe tell speech without. Young lot next cell among war agree. Important according succ https://example.com/ 641 440797 440797.440805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3982216125543 0 \N \N f 0 \N 0 110251997 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N 437732 2024-02-24 22:39:37.468 2024-02-24 22:49:38.922 Physical f Property pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain. https://example.com/ 14785 \N 437732 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 17.2560075941027 0 \N \N f 0 \N 6 219348887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440383 2024-02-27 09:55:39.391 2024-02-27 10:05:40.812 \N Success against price. Resource end yeah step bit support. Common hour thank resource a https://example.com/ 706 439815 439472.439815.440383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.032615902619 0 \N \N f 0 \N 1 89195112 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 437748 2024-02-24 22:53:42.959 2024-02-24 23:03:44.719 \N Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without https://example.com/ 19267 437741 436950.437418.437741.437748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0957463593125 0 \N \N f 0 \N 0 228884727 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 441198 2024-02-27 22:53:21.259 2024-02-27 23:03:22.617 Scene relate paper hospital. Star cultural s Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy pol https://example.com/ 18235 \N 441198 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.9248373212487 0 \N \N f 0 \N 8 201170336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437741 2024-02-24 22:49:19.547 2024-02-24 22:59:21.084 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand cust https://example.com/ 2039 437418 436950.437418.437741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.91141041122793 0 \N \N f 0 \N 1 117215018 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 441377 2024-02-28 01:55:39.575 2024-02-28 02:05:41.075 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe De https://example.com/ 3353 441361 441043.441173.441261.441263.441361.441377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25890699021618 0 \N \N f 0 \N 1 247839166 0 f f \N \N \N \N 441043 \N 0 0 \N \N f \N 437674 2024-02-24 20:49:03.722 2024-02-24 20:59:05.234 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok t https://example.com/ 20152 437611 437611.437674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44627246019341 0 \N \N f 0 \N 0 29834240 0 f f \N \N \N \N 437611 \N 0 0 \N \N f \N 441151 2024-02-27 22:05:34.053 2024-02-27 22:15:35.162 \N Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nShake pretty eat probably pretty stop time. Everything https://example.com/ 14278 441056 440764.441052.441056.441151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16286935497613 0 \N \N f 0 \N 1 81224213 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441379 2024-02-28 01:57:30.562 2024-02-28 02:07:32.43 \N Book environmental good wes https://example.com/ 1567 440471 440471.441379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4420627948206 0 \N \N f 0 \N 0 130676731 0 f f \N \N \N \N 440471 \N 0 0 \N \N f \N 440301 2024-02-27 07:36:27.382 2024-02-27 07:46:28.561 Move purpose well impo Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow sold https://example.com/ 2367 \N 440301 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 26.1425704009488 0 \N \N f 0 \N 3 111102532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437754 2024-02-24 23:03:10.937 2024-02-24 23:13:11.982 \N After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple m https://example.com/ 21275 437568 436950.437568.437754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1635732462964 0 \N \N f 0 \N 0 47961332 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 440471 2024-02-27 11:35:54.48 2024-02-27 11:45:56.715 Health reduce performance body Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building wind https://example.com/ 20802 \N 440471 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.01977907376253 0 \N \N f 0 \N 1 62411723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437568 2024-02-24 18:34:40.638 2024-02-24 18:44:42.179 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cu https://example.com/ 12122 436950 436950.437568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0680225584332 0 \N \N f 0 \N 1 134019618 0 f f \N \N \N \N 436950 \N 0 0 \N \N f \N 437533 2024-02-24 17:42:49.583 2024-02-24 17:52:50.568 Beyond song throw blood hard. Show already Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board https://example.com/ 15409 \N 437533 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 8.25523253223178 0 \N \N f 0 \N 2 189307795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440816 2024-02-27 17:04:28.619 2024-02-27 17:14:29.769 \N Capital treat simple ahead make study. Far adm https://example.com/ 1673 440812 440812.440816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77262782356659 0 \N \N f 0 \N 0 6937557 0 f f \N \N \N \N 440812 \N 0 0 \N \N f \N 437905 2024-02-25 03:03:42.63 2024-02-25 03:13:44.729 \N At aud https://example.com/ 11561 160145 159987.160145.437905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7271438231637 0 \N \N f 0 \N 0 190944066 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 441518 2024-02-28 07:09:08.328 2024-02-28 07:19:10.512 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nForget throu https://example.com/ 959 441439 441439.441518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4117664209782 0 \N \N f 0 \N 0 143437943 0 f f \N \N \N \N 441439 \N 0 0 \N \N f \N 441257 2024-02-27 23:53:25.333 2024-02-28 00:03:26.965 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenl https://example.com/ 20663 441176 441176.441257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9995678141366 0 \N \N f 0 \N 2 191501582 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 436952 2024-02-24 07:09:02.511 2024-02-24 07:19:03.765 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature https://example.com/ 5791 436894 436894.436952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.2158974063865 0 \N \N f 0 \N 1 116376486 0 f f \N \N \N \N 436894 \N 0 0 \N \N f \N 440788 2024-02-27 16:49:00.361 2024-02-27 16:59:01.869 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total https://example.com/ 718 440633 440633.440788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9040754348353 0 \N \N f 0 \N 1 100764186 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 440470 2024-02-27 11:34:56.885 2024-02-27 11:44:58.711 \N Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble https://example.com/ 15103 440422 440422.440470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72846397206914 0 \N \N f 0 \N 9 72661952 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 437792 2024-02-25 00:25:31.385 2024-02-25 00:35:32.255 \N Herself then or effect usually treat. Exactly I agree top job economy such. S https://example.com/ 20981 437437 437218.437437.437792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8032925968924 0 \N \N f 0 \N 0 240669116 0 f f \N \N \N \N 437218 \N 0 0 \N \N f \N 437796 2024-02-25 00:31:18.342 2024-02-25 00:41:19.134 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citize https://example.com/ 16939 437242 432517.437242.437796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.056988360891 0 \N \N f 0 \N 0 135457493 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 440779 2024-02-27 16:43:53.278 2024-02-27 16:53:54.497 \N Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nPlan really necessary boy a consider. Attorney suffer play vote t https://example.com/ 20969 440520 440520.440779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3329919991939 0 \N \N f 0 \N 1 90028432 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 440818 2024-02-27 17:06:19.597 2024-02-27 17:16:20.97 \N Hour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young https://example.com/ 11288 440796 440663.440751.440760.440773.440783.440796.440818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0813728829849 0 \N \N f 0 \N 1 165949385 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 442409 2024-02-28 17:00:05.899 2024-02-28 17:10:07.01 \N Matter training experienc https://example.com/ 797 442401 442084.442109.442124.442149.442260.442268.442303.442345.442401.442409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7963128056199 0 \N \N f 0 \N 1 229864052 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 440623 2024-02-27 14:45:51.878 2024-02-27 14:55:53.243 Tell difference pattern carry join. Size factor p Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nIn grow https://example.com/ 14278 \N 440623 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 13.0771865739638 0 \N \N f 0 \N 3 59819857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 436894 2024-02-24 04:03:44.855 2024-02-24 04:13:46.37 We course us bank recently significant myself. Of past themselves conditi Nature cell fact health. Fire pressure face. E https://example.com/ 21222 \N 436894 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.91221043091294 0 \N \N f 0 \N 7 171290298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440793 2024-02-27 16:50:47.537 2024-02-27 17:00:48.935 Water wrong somebody book nor member. Also build off mode Outside https://example.com/ 2088 \N 440793 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 1.24400232501959 0 \N \N f 0 \N 0 232445637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440819 2024-02-27 17:06:43.349 2024-02-27 17:16:45.237 \N Think article evening from run either simply. Central water economic behavior. https://example.com/ 6300 440797 440797.440819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.0967012195222 0 \N \N f 0 \N 0 174242186 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N 440846 2024-02-27 17:29:49.934 2024-02-27 17:39:51.592 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approac https://example.com/ 1173 440841 439699.439752.439758.439766.440014.440288.440315.440815.440823.440834.440841.440846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6440940805787 0 \N \N f 0 \N 0 110840223 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440861 2024-02-27 17:45:04.163 2024-02-27 17:55:05.494 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sel https://example.com/ 706 440611 439822.440611.440861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3416982857397 0 \N \N f 0 \N 1 121083708 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 437763 2024-02-24 23:28:50.922 2024-02-24 23:38:52.42 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden networ https://example.com/ 2543 437759 437723.437738.437759.437763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5848095973242 0 \N \N f 0 \N 8 110573891 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440474 2024-02-27 11:39:06.069 2024-02-27 11:49:06.992 Animal treatment actually. Local me bar data personal. I After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work. https://example.com/ 19151 \N 440474 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.8220819835329 0 \N \N f 0 \N 4 72332021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440787 2024-02-27 16:48:31.898 2024-02-27 16:58:33.342 \N Think month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clear https://example.com/ 15549 440759 440729.440759.440787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3578154080821 0 \N \N f 0 \N 3 40107721 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 436924 2024-02-24 05:19:50.116 2024-02-24 05:29:51.348 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nTrue quickly g https://example.com/ 21444 436823 436823.436924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4591361480889 0 \N \N f 0 \N 3 157356577 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 437866 2024-02-25 02:15:06.595 2024-02-25 02:25:07.718 \N Lead against area note movement street push music. Meet world on something throughout leader book. https://example.com/ 4173 437760 437723.437752.437760.437866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7221185687464 0 \N \N f 0 \N 0 230187222 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437510 2024-02-24 17:23:56.102 2024-02-24 17:33:57.567 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nPoor appear go since involve. How form no director material learn child. Customer https://example.com/ 19809 437014 436823.436924.437014.437510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.948496788102524 0 \N \N f 0 \N 1 146568790 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 440759 2024-02-27 16:31:42.16 2024-02-27 16:41:43.306 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat https://example.com/ 21356 440729 440729.440759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5760057884493 0 \N \N f 0 \N 4 44873082 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 441516 2024-02-28 07:06:40.033 2024-02-28 07:16:41.562 \N South both increase democratic economic. Seem measure yes couple plan season. War note down partic https://example.com/ 18751 441241 440692.441027.441074.441213.441232.441239.441241.441516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.25263236647651 0 \N \N f 0 \N 0 33579755 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440183 2024-02-27 02:16:45.825 2024-02-27 02:26:47.138 \N Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy gue https://example.com/ 12222 440101 439729.440089.440101.440183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33013298121971 0 \N \N f 0 \N 0 77396967 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 437771 2024-02-24 23:49:52.53 2024-02-24 23:59:54.153 \N Door wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nEconomy rest whatever spring among least against and. Hard suffer a https://example.com/ 21588 437766 437723.437738.437759.437763.437766.437771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8019690691039 0 \N \N f 0 \N 6 98842210 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440784 2024-02-27 16:46:20.084 2024-02-27 16:56:21.841 \N Product analysis affect certainly happy. Plan cup case https://example.com/ 997 440553 440474.440553.440784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.13409061575697 0 \N \N f 0 \N 2 237362378 0 f f \N \N \N \N 440474 \N 0 0 \N \N f \N 440315 2024-02-27 08:01:23.044 2024-02-27 08:11:24.055 \N Structure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy w https://example.com/ 15049 440288 439699.439752.439758.439766.440014.440288.440315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.8475340253033 0 \N \N f 0 \N 5 53423963 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 434331 2024-02-21 21:57:38.898 2024-02-21 22:07:40.017 \N Part dog him its government good. Growth action have perhaps if. Window animal p https://example.com/ 20062 410672 410672.434331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1872867301666 0 \N \N f 0 \N 3 9000378 0 f f \N \N \N \N 410672 \N 0 0 \N \N f \N 437673 2024-02-24 20:45:06.373 2024-02-24 20:55:07.895 Part dog him its Service technology include study exactly enter. Country each these west manager. Citizen option such ma https://example.com/ 21022 \N 437673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.24364689782161 0 \N \N f 0 \N 5 243725661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440501 2024-02-27 12:19:03.912 2024-02-27 12:29:04.971 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meetin https://example.com/ 18727 440470 440422.440470.440501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8167004053392 0 \N \N f 0 \N 4 221682742 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 442525 2024-02-28 18:11:20.193 2024-02-28 18:21:21.589 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nStage can fish building senior. Through position capital official. While later price performance air born forward. W https://example.com/ 18524 442519 442023.442504.442509.442519.442525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0693944910827 0 \N \N f 0 \N 1 175155040 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 440101 2024-02-27 00:01:14.794 2024-02-27 00:11:15.866 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nNight on mention rather nation soldier ev https://example.com/ 17050 440089 439729.440089.440101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7685993333552 0 \N \N f 0 \N 1 93513027 0 f f \N \N \N \N 439729 \N 0 0 \N \N f \N 440826 2024-02-27 17:18:39.108 2024-02-27 17:28:40.869 \N Pas https://example.com/ 21402 440822 440725.440822.440826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10886814049804 0 \N \N f 0 \N 1 10670951 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441382 2024-02-28 02:00:29.412 2024-02-28 02:10:30.473 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend informati https://example.com/ 1519 441328 441328.441382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77985779860131 0 \N \N f 0 \N 0 163793677 0 f f \N \N \N \N 441328 \N 0 0 \N \N f \N 437403 2024-02-24 16:00:05.055 2024-02-24 16:10:06.317 Resource morning long fast civil man check loss. Kid position yourself. \N https://example.com/ 5557 \N 437403 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.2918779285685 0 \N \N f 0 \N 6 44570986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437782 2024-02-25 00:10:37.872 2024-02-25 00:20:39.385 \N Off behind four class https://example.com/ 19886 437673 437673.437782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9179843885102 0 \N \N f 0 \N 0 29926661 0 f f \N \N \N \N 437673 \N 0 0 \N \N f \N 437788 2024-02-25 00:23:15.282 2024-02-25 00:33:16.343 \N Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score m https://example.com/ 21194 437744 437714.437744.437788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4142354007299 0 \N \N f 0 \N 0 103536941 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 440820 2024-02-27 17:10:14.017 2024-02-27 17:20:14.939 Thank rule physical trip attorney staff vote reach Type door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok. https://example.com/ 18393 \N 440820 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3646336060524 0 \N \N f 0 \N 0 46001290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437020 2024-02-24 09:36:43.346 2024-02-24 09:46:44.16 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform serv https://example.com/ 18188 437013 436823.436829.436900.436930.437013.437020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23927578581645 0 \N \N f 0 \N 2 66886273 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 441239 2024-02-27 23:26:58.371 2024-02-27 23:36:59.463 \N Individual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nDown his majority risk worker parent head. Decade painting reduce throughout https://example.com/ 11192 441232 440692.441027.441074.441213.441232.441239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6150832454036 0 \N \N f 0 \N 2 73400295 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441525 2024-02-28 07:26:59.058 2024-02-28 07:37:00.806 \N Hold show assume travel economy. Ground then any time civil https://example.com/ 19494 441077 441077.441525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77435731589088 0 \N \N f 0 \N 0 196788314 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 437824 2024-02-25 01:04:59.115 2024-02-25 01:15:00.574 \N Scientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nBest affect mind former history. Likely half situation wi https://example.com/ 21357 437686 437583.437686.437824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2152662006736 0 \N \N f 0 \N 0 221351662 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 437802 2024-02-25 00:41:44.173 2024-02-25 00:51:45.54 \N Although thought fall today protect ago. Able institution offer au https://example.com/ 8176 437775 437775.437802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41382290614759 0 \N \N f 0 \N 0 218042598 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437926 2024-02-25 03:51:14.334 2024-02-25 04:01:15.39 \N Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nPush floor economy probably reason say rest. We possible https://example.com/ 11491 437775 437775.437926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6611688670114 0 \N \N f 0 \N 0 180027081 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437922 2024-02-25 03:34:41.729 2024-02-25 03:44:42.932 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover p https://example.com/ 1320 284394 281307.281336.281505.281533.282421.282449.282453.284152.284210.284394.437922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.48230736928699 0 \N \N f 0 \N 4 216936463 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 437801 2024-02-25 00:40:05.544 2024-02-25 00:50:07.228 \N Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store i https://example.com/ 7395 437723 437723.437801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2372626643524 0 \N \N f 0 \N 4 56138760 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437774 2024-02-24 23:54:53.634 2024-02-25 00:04:55.37 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter https://example.com/ 9342 437714 437714.437774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7449348748157 0 \N \N f 0 \N 1 99171693 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437787 2024-02-25 00:22:31.476 2024-02-25 00:32:32.15 \N Hair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner https://example.com/ 1970 437767 437714.437767.437787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6723224716761 0 \N \N f 0 \N 0 246280236 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437793 2024-02-25 00:27:03.126 2024-02-25 00:37:04.547 \N Support structure season energy group. Important nearly dark. Sense course risk energy want r https://example.com/ 11275 437082 436823.436861.436902.437082.437793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8658554715678 0 \N \N f 0 \N 0 79919939 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 437803 2024-02-25 00:42:51.928 2024-02-25 00:52:53.286 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise he https://example.com/ 14489 436550 436550.437803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6197058261449 0 \N \N f 0 \N 0 108737007 0 f f \N \N \N \N 436550 \N 0 0 \N \N f \N 440827 2024-02-27 17:19:35.594 2024-02-27 17:29:37.162 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. F https://example.com/ 19235 440383 439472.439815.440383.440827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5226117311209 0 \N \N f 0 \N 0 200917412 0 f f \N \N \N \N 439472 \N 0 0 \N \N f \N 437502 2024-02-24 17:19:46.923 2024-02-24 17:29:47.757 Political perhaps question forward ye Deep some relate building buy then. Letter comm https://example.com/ 18640 \N 437502 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2211063464082 0 \N \N f 0 \N 16 109354559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437795 2024-02-25 00:29:18.283 2024-02-25 00:39:19.665 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense mat https://example.com/ 5779 437769 437769.437795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.211499024475366 0 \N \N f 0 \N 1 172379794 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 437242 2024-02-24 14:21:31.239 2024-02-24 14:31:32.862 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design l https://example.com/ 18995 432517 432517.437242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2938854607506 0 \N \N f 0 \N 1 161923080 0 f f \N \N \N \N 432517 \N 0 0 \N \N f \N 437805 2024-02-25 00:43:35.568 2024-02-25 00:53:37 \N Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Repu https://example.com/ 12169 437800 437775.437800.437805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9377310867213 0 \N \N f 0 \N 3 105502622 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 440828 2024-02-27 17:19:38.048 2024-02-27 17:29:40.187 About cell note lot page Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end. https://example.com/ 1705 \N 440828 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 18.7675500746433 0 \N \N f 0 \N 0 163465086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437780 2024-02-25 00:09:49.801 2024-02-25 00:19:50.702 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program https://example.com/ 4084 437687 437687.437780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9267417933007 0 \N \N f 0 \N 0 49536167 0 f f \N \N \N \N 437687 \N 0 0 \N \N f \N 437813 2024-02-25 00:55:12.284 2024-02-25 01:05:13.39 \N Site product one fact loss. Site yeah posi https://example.com/ 11430 437246 436752.437083.437246.437813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.911751501812645 0 \N \N f 0 \N 0 36552546 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 432517 2024-02-20 14:33:28.302 2024-02-20 14:43:30.102 Thousand billion get leg now sort eve Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nStation mean di https://example.com/ 15409 \N 432517 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.1256737244425 0 \N \N f 0 \N 23 197576367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440889 2024-02-27 18:19:47.748 2024-02-27 18:29:49.787 \N News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental nat https://example.com/ 20220 440729 440729.440889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4458890843584 0 \N \N f 0 \N 1 172798102 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 440979 2024-02-27 19:38:36.042 2024-02-27 19:48:37.728 \N Series w https://example.com/ 11091 440904 440700.440904.440979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78200310951322 0 \N \N f 0 \N 0 93092129 0 f f \N \N \N \N 440700 \N 0 0 \N \N f \N 442542 2024-02-28 18:29:20.248 2024-02-28 18:39:21.629 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell r https://example.com/ 9874 441951 441951.442542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2930125299466 0 \N \N f 0 \N 1 217334166 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 437661 2024-02-24 20:29:29.641 2024-02-24 20:39:31.61 \N Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too https://example.com/ 4177 437651 437531.437651.437661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9156960177656 0 \N \N f 0 \N 0 242830030 0 f f \N \N \N \N 437531 \N 0 0 \N \N f \N 437083 2024-02-24 12:22:32.382 2024-02-24 12:32:33.652 \N Get executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nHimself seem along exist population deve https://example.com/ 21417 436752 436752.437083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.28673809651818 0 \N \N f 0 \N 2 158744432 0 f f \N \N \N \N 436752 \N 0 0 \N \N f \N 440815 2024-02-27 17:04:03.503 2024-02-27 17:14:05.1 \N Shake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Ne https://example.com/ 12272 440315 439699.439752.439758.439766.440014.440288.440315.440815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1316608081778 0 \N \N f 0 \N 4 23639032 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 436550 2024-02-23 18:36:48.11 2024-02-23 18:46:49.883 Never new shoulder lose threat star. Production window real chan Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Sav https://example.com/ 19848 \N 436550 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.72524078648704 0 \N \N f 0 \N 1 183002309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442037 2024-02-28 14:29:29.813 2024-02-28 14:39:32.512 \N Small enjoy manage service individual down. Season s https://example.com/ 11038 441843 441843.442037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.44030159231923 0 \N \N f 0 \N 0 40262401 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 437755 2024-02-24 23:03:37.809 2024-02-24 23:13:39.153 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself s https://example.com/ 19243 437583 437583.437755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9937314133153 0 \N \N f 0 \N 1 183757158 0 f f \N \N \N \N 437583 \N 0 0 \N \N f \N 437818 2024-02-25 00:58:30.355 2024-02-25 01:08:32.261 \N Debate property life amount writer. https://example.com/ 10273 437814 437723.437814.437818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4960148146096 0 \N \N f 0 \N 0 98248788 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437811 2024-02-25 00:51:05.879 2024-02-25 01:01:06.889 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely ex https://example.com/ 897 437775 437775.437811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0931339598187 0 \N \N f 0 \N 0 68644879 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 440851 2024-02-27 17:31:09.896 2024-02-27 17:41:11.182 \N Call system https://example.com/ 15115 440798 440798.440851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1544353851945 0 \N \N f 0 \N 0 233872025 0 f f \N \N \N \N 440798 \N 0 0 \N \N f \N 437815 2024-02-25 00:56:47.115 2024-02-25 01:06:48.518 \N Own shoul https://example.com/ 20849 437502 437502.437815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9347951420657 0 \N \N f 0 \N 0 43878448 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 440553 2024-02-27 13:43:15.943 2024-02-27 13:53:18.248 \N Face opportunity account eat program father long party. Certainly allow less professiona https://example.com/ 5865 440474 440474.440553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9077630398418 0 \N \N f 0 \N 3 241786554 0 f f \N \N \N \N 440474 \N 0 0 \N \N f \N 440809 2024-02-27 17:00:13.055 2024-02-27 17:10:14.295 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recogni https://example.com/ 12609 440786 440474.440553.440784.440786.440809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5206725941539 0 \N \N f 0 \N 0 148375180 0 f f \N \N \N \N 440474 \N 0 0 \N \N f \N 440786 2024-02-27 16:46:32.054 2024-02-27 16:56:33.968 \N Author tr https://example.com/ 19282 440784 440474.440553.440784.440786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.242236702334679 0 \N \N f 0 \N 1 121165593 0 f f \N \N \N \N 440474 \N 0 0 \N \N f \N 441858 2024-02-28 12:50:52.112 2024-02-28 13:00:53.134 Middle city always. Be Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction. https://example.com/ 8916 \N 441858 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 20.8098674155753 0 \N \N f 0 \N 1 160345728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441913 2024-02-28 13:27:47.827 2024-02-28 13:37:49.617 \N Response finally play political tonight wear live. Bill hear a supp https://example.com/ 9276 441876 441876.441913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1633130160389 0 \N \N f 0 \N 0 240132935 0 f f \N \N \N \N 441876 \N 0 0 \N \N f \N 437814 2024-02-25 00:56:18.641 2024-02-25 01:06:19.803 \N Role number law science. Sing fight use development differ https://example.com/ 2444 437723 437723.437814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0432332724749 0 \N \N f 0 \N 1 153931108 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437822 2024-02-25 01:01:09.349 2024-02-25 01:11:11.079 \N Role https://example.com/ 5036 437804 410672.434331.437783.437804.437822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2782127877935 0 \N \N f 0 \N 0 247449865 0 f f \N \N \N \N 410672 \N 0 0 \N \N f \N 437823 2024-02-25 01:03:18.82 2024-02-25 01:13:20.227 \N Forget throughout sea city first by rem https://example.com/ 18154 437714 437714.437823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1502406153206 0 \N \N f 0 \N 0 181175795 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437783 2024-02-25 00:16:27.529 2024-02-25 00:26:29.327 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice https://example.com/ 8535 434331 410672.434331.437783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.722087165221481 0 \N \N f 0 \N 2 172987914 0 f f \N \N \N \N 410672 \N 0 0 \N \N f \N 437896 2024-02-25 02:58:53.724 2024-02-25 03:08:56.093 \N Toward position themselves n https://example.com/ 8037 437891 437891.437896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1448405872288 0 \N \N f 0 \N 0 27135074 0 f f \N \N \N \N 437891 \N 0 0 \N \N f \N 440813 2024-02-27 17:03:40.454 2024-02-27 17:13:41.698 Remember draw realize. Include soon my person involve Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without specia https://example.com/ 19502 \N 440813 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.2814176326195 0 \N \N f 0 \N 0 8742246 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437729 2024-02-24 22:27:19.096 2024-02-24 22:37:20.615 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our mo https://example.com/ 17042 437629 437524.437629.437729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1872343645168 0 \N \N f 0 \N 4 35434466 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 440841 2024-02-27 17:27:49.677 2024-02-27 17:37:51.368 \N Anyone himself set window report. Short president give part me. One new speech https://example.com/ 18378 440834 439699.439752.439758.439766.440014.440288.440315.440815.440823.440834.440841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6321599851866 0 \N \N f 0 \N 1 55445316 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440840 2024-02-27 17:27:47.584 2024-02-27 17:37:49.353 \N Off should demo https://example.com/ 12951 440798 440798.440840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2674579910676 0 \N \N f 0 \N 0 113363314 0 f f \N \N \N \N 440798 \N 0 0 \N \N f \N 440831 2024-02-27 17:22:34.301 2024-02-27 17:32:35.89 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rathe https://example.com/ 15139 440725 440725.440831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0599204871218 0 \N \N f 0 \N 0 61969979 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437827 2024-02-25 01:12:27.324 2024-02-25 01:22:28.271 \N Member I discover option technology recognize especially. Different hair smile land late open. M https://example.com/ 21275 437700 437502.437700.437827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1811760870121 0 \N \N f 0 \N 1 225570290 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 437820 2024-02-25 00:59:42.315 2024-02-25 01:09:44.169 \N Reach too suffer st https://example.com/ 1801 437817 437817.437820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.91019574129889 0 \N \N f 0 \N 1 162617997 0 f f \N \N \N \N 437817 \N 0 0 \N \N f \N 440832 2024-02-27 17:23:18.269 2024-02-27 17:33:19.207 \N Friend growth election water degree probably. Score spring treat institution loss r https://example.com/ 2000 439390 439390.440832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9636910549011 0 \N \N f 0 \N 0 58362929 0 f f \N \N \N \N 439390 \N 0 0 \N \N f \N 437830 2024-02-25 01:18:09.832 2024-02-25 01:28:11.318 \N At audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment di https://example.com/ 14472 437642 437642.437830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6435579303125 0 \N \N f 0 \N 1 190450519 0 f f \N \N \N \N 437642 \N 0 0 \N \N f \N 436930 2024-02-24 05:49:05.895 2024-02-24 05:59:06.957 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nPersonal factor big https://example.com/ 2309 436900 436823.436829.436900.436930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1756721928482 0 \N \N f 0 \N 4 29643544 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 436900 2024-02-24 04:12:55.581 2024-02-24 04:22:57.037 \N Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could https://example.com/ 18673 436829 436823.436829.436900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.95321364090044 0 \N \N f 0 \N 5 30653576 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 437834 2024-02-25 01:30:27.569 2024-02-25 01:40:28.741 \N Professional rem https://example.com/ 4415 437794 436823.436829.436900.436930.437013.437020.437794.437834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78116412145392 0 \N \N f 0 \N 0 15569120 0 f f \N \N \N \N 436823 \N 0 0 \N \N f \N 440837 2024-02-27 17:25:21.673 2024-02-27 17:35:23.057 \N Any tend p https://example.com/ 21521 440694 440575.440694.440837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4156475572847 0 \N \N f 0 \N 0 43918180 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 440839 2024-02-27 17:26:53.668 2024-02-27 17:36:55.288 \N Game own manager. Ev https://example.com/ 1272 440798 440798.440839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6523528525175 0 \N \N f 0 \N 0 110080791 0 f f \N \N \N \N 440798 \N 0 0 \N \N f \N 440834 2024-02-27 17:24:57.294 2024-02-27 17:34:58.442 \N East fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. https://example.com/ 654 440823 439699.439752.439758.439766.440014.440288.440315.440815.440823.440834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9392332042722 0 \N \N f 0 \N 2 236505038 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 440842 2024-02-27 17:28:01.817 2024-02-27 17:38:03.241 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challen https://example.com/ 18675 440618 440273.440607.440618.440842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5332702864162 0 \N \N f 0 \N 0 81460891 0 f f \N \N \N \N 440273 \N 0 0 \N \N f \N 440833 2024-02-27 17:23:53.144 2024-02-27 17:33:54.65 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nShe for deep https://example.com/ 12024 440774 440575.440774.440833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0667356958692 0 \N \N f 0 \N 0 43133065 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 433114 2024-02-20 22:14:42.689 2024-02-20 22:24:44.157 Light environmental here source blood. Insti Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort https://example.com/ 5527 \N 433114 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.19047959945333 0 \N \N f 0 \N 36 244703652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437836 2024-02-25 01:34:06.445 2024-02-25 01:44:08.332 \N Scientist machine manager. Place movement kitchen indeed th https://example.com/ 16876 437738 437723.437738.437836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.96507084186872 0 \N \N f 0 \N 2 140151270 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 441242 2024-02-27 23:29:19.32 2024-02-27 23:39:21.224 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Managem https://example.com/ 20840 440988 440988.441242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4607372395328 0 \N \N f 0 \N 1 198368240 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 443489 2024-02-29 13:52:22.694 2024-02-29 14:02:24.414 Language eff Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nReach too suffer story type re https://example.com/ 5557 \N 443489 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 10.3267404436624 0 \N \N f 0 \N 4 189534690 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437642 2024-02-24 19:53:05.399 2024-02-24 20:03:06.842 West possible modern office manage people. Major Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone https://example.com/ 19282 \N 437642 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 10.1839657196143 0 \N \N f 0 \N 4 117473830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437829 2024-02-25 01:15:26.901 2024-02-25 01:25:27.851 Great look know get. Whatever central ago order born ne Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top https://example.com/ 19016 \N 437829 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.7610461513856 0 \N \N f 0 \N 0 146589225 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437907 2024-02-25 03:04:00.448 2024-02-25 03:14:01.497 \N Be righ https://example.com/ 2780 160089 159987.160089.437907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53597696988227 0 \N \N f 0 \N 0 185885400 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 437739 2024-02-24 22:47:51.044 2024-02-24 22:57:55.124 \N Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important https://example.com/ 10536 437384 436466.436475.436633.437384.437739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55367758519638 0 \N \N f 0 \N 2 231026547 0 f f \N \N \N \N 436466 \N 0 0 \N \N f \N 440835 2024-02-27 17:25:02.082 2024-02-27 17:35:03.484 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nYoung shake push apply stand. Benefi https://example.com/ 16270 440749 440575.440749.440835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7060108642858 0 \N \N f 0 \N 0 11047321 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 439390 2024-02-26 14:39:54.567 2024-02-26 14:49:56.861 Need movie coach nation news in about responsibility. Hospital With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich https://example.com/ 1352 \N 439390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.72882305067184 0 \N \N f 0 \N 51 193210997 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437860 2024-02-25 02:03:02.075 2024-02-25 02:13:04.626 \N Forget throughout sea city first by rememb https://example.com/ 14545 437806 437769.437806.437860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9453445616366 0 \N \N f 0 \N 0 209387432 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 437806 2024-02-25 00:45:12.488 2024-02-25 00:55:13.453 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject all https://example.com/ 21159 437769 437769.437806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.30757655127019 0 \N \N f 0 \N 1 236668239 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 440836 2024-02-27 17:25:09.957 2024-02-27 17:35:11.044 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More https://example.com/ 16830 440561 440561.440836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3032277128989 0 \N \N f 0 \N 0 30987977 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 437849 2024-02-25 01:47:13.697 2024-02-25 01:57:14.301 \N Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question s https://example.com/ 21303 437775 437775.437849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85073164548353 0 \N \N f 0 \N 0 141820471 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437839 2024-02-25 01:35:33.76 2024-02-25 01:45:35.651 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really gener https://example.com/ 5728 437269 437269.437839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.92766097322529 0 \N \N f 0 \N 0 153552575 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 437848 2024-02-25 01:47:11.237 2024-02-25 01:57:13.086 Water actually point similar. Box war specific a over marriage evening w Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property. https://example.com/ 7097 \N 437848 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.3671163182997 0 \N \N f 0 \N 0 177405536 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437851 2024-02-25 01:49:10.876 2024-02-25 01:59:12.045 \N Play single finally social almost serious. Catch better education only officer man. Repub https://example.com/ 20036 436957 436669.436851.436860.436945.436957.437851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6375728354703 0 \N \N f 0 \N 0 120597046 0 f f \N \N \N \N 436669 \N 0 0 \N \N f \N 437852 2024-02-25 01:49:39.582 2024-02-25 01:59:41.002 \N Service technology in https://example.com/ 15094 437723 437723.437852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77240315635606 0 \N \N f 0 \N 1 180878964 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440995 2024-02-27 19:52:51.456 2024-02-27 20:02:52.389 \N Heart such other on during catch. Itself help computer crime articl https://example.com/ 708 440780 440764.440780.440995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19270231548562 0 \N \N f 0 \N 0 96277466 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 437760 2024-02-24 23:14:11.795 2024-02-24 23:24:13.056 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nIncluding lawyer baby ok movie never happy. Civil https://example.com/ 1471 437752 437723.437752.437760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.08913788152923 0 \N \N f 0 \N 2 9369612 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440844 2024-02-27 17:28:17.749 2024-02-27 17:38:19.257 \N Exist near ago home. Continue compare genera https://example.com/ 16571 440830 440830.440844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.580426147238 0 \N \N f 0 \N 0 20995209 0 f f \N \N \N \N 440830 \N 0 0 \N \N f \N 437821 2024-02-25 01:00:10.213 2024-02-25 01:10:11.563 Blood admit none others arm style. Here establis Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call n https://example.com/ 999 \N 437821 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 18.9762763352839 0 \N \N f 0 \N 0 55197235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437884 2024-02-25 02:43:21.622 2024-02-25 02:53:22.614 \N Artist fly billion same. Go may avoid exactly since three author mean https://example.com/ 15703 437723 437723.437884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.99201605516634 0 \N \N f 0 \N 0 9504997 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440965 2024-02-27 19:27:52.804 2024-02-27 19:37:54.069 \N Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish becom https://example.com/ 5444 440587 440587.440965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7781976772397 0 \N \N f 0 \N 0 16924771 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 437853 2024-02-25 01:52:38.671 2024-02-25 02:02:40.134 \N Way all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern https://example.com/ 715 437775 437775.437853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.27427088087263 0 \N \N f 0 \N 0 86952180 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 440845 2024-02-27 17:29:05.157 2024-02-27 17:39:06.627 \N Push hair specific policy. We decision easy surface to director https://example.com/ 20987 440797 440797.440845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.00690610024259 0 \N \N f 0 \N 1 133816955 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N 437770 2024-02-24 23:48:02.86 2024-02-24 23:58:03.997 \N Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Me https://example.com/ 21218 437233 437233.437770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.1935486233971 0 \N \N f 0 \N 0 176878934 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 437784 2024-02-25 00:20:13.71 2024-02-25 00:30:15.124 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five a https://example.com/ 713 437779 437714.437716.437779.437784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4263800265564 0 \N \N f 0 \N 5 22896436 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437881 2024-02-25 02:38:15.813 2024-02-25 02:48:17.403 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin person wo https://example.com/ 17201 437798 437714.437716.437779.437784.437789.437791.437798.437881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.064027473324 0 \N \N f 0 \N 1 82607056 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 440618 2024-02-27 14:42:35.01 2024-02-27 14:52:36.237 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civ https://example.com/ 21400 440607 440273.440607.440618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.66310895668263 0 \N \N f 0 \N 1 43789575 0 f f \N \N \N \N 440273 \N 0 0 \N \N f \N 437876 2024-02-25 02:29:32.277 2024-02-25 02:39:33.804 \N Piece conference several. Vote letter wife not customer he https://example.com/ 642 437389 437233.437251.437389.437876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3850322680082 0 \N \N f 0 \N 0 214751480 0 f f \N \N \N \N 437233 \N 0 0 \N \N f \N 440850 2024-02-27 17:30:58.122 2024-02-27 17:40:59.449 \N That field beautiful American when. Simply quality which media. Note own https://example.com/ 3392 440764 440764.440850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90309330846013 0 \N \N f 0 \N 1 149231569 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 437779 2024-02-25 00:09:29.569 2024-02-25 00:19:31.486 \N Majority certainly song between country rise every lose. Head edu https://example.com/ 20849 437716 437714.437716.437779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.73973242458249 0 \N \N f 0 \N 6 226141515 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437883 2024-02-25 02:41:49.958 2024-02-25 02:51:51.122 \N Us less sure. Late travel us significant cover https://example.com/ 18735 437881 437714.437716.437779.437784.437789.437791.437798.437881.437883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1423794489039 0 \N \N f 0 \N 0 148883826 0 f f \N \N \N \N 437714 \N 0 0 \N \N f \N 437885 2024-02-25 02:45:44.326 2024-02-25 02:55:46.284 \N Finally and may second. Middle want artist technology woman democra https://example.com/ 19878 437805 437775.437800.437805.437885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5324811490829 0 \N \N f 0 \N 0 147832635 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 441246 2024-02-27 23:38:18.998 2024-02-27 23:48:20.393 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relat https://example.com/ 9150 441237 440692.441057.441237.441246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.07592048013113 0 \N \N f 0 \N 0 23658191 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 437893 2024-02-25 02:57:17.022 2024-02-25 03:07:18.472 Surface big bag cont Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner i https://example.com/ 21239 \N 437893 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 28.5052298580561 0 \N \N f 0 \N 3 24044115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433074 2024-02-20 21:47:42.784 2024-02-20 21:57:44.099 Go effect true such such wind market. Role sugges Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race incre https://example.com/ 19785 \N 433074 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 8.60087475271044 0 \N \N f 0 \N 0 14540455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441665 2024-02-28 10:42:14.707 2024-02-28 10:52:16.854 \N Rule hope accept blue. Firm perf https://example.com/ 4084 441333 441333.441665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52538396671559 0 \N \N f 0 \N 0 10548830 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 437899 2024-02-25 03:00:11.968 2024-02-25 03:10:13.362 \N Lead against area note movement street push music. Meet world on something https://example.com/ 20551 437892 368115.368174.437892.437899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7797264981676 0 \N \N f 0 \N 0 173616365 0 f f \N \N \N \N 368115 \N 0 0 \N \N f \N 440847 2024-02-27 17:30:12.66 2024-02-27 17:40:13.812 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Betwee https://example.com/ 21019 440599 440599.440847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7498107833006 0 \N \N f 0 \N 0 98788989 0 f f \N \N \N \N 440599 \N 0 0 \N \N f \N 437919 2024-02-25 03:27:16.692 2024-02-25 03:37:18.211 \N Themselves table various administration single save. Until pattern include specific itself. Compar https://example.com/ 1609 437775 437775.437919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6290329539282 0 \N \N f 0 \N 0 232713349 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437917 2024-02-25 03:26:02.241 2024-02-25 03:36:03.945 \N Door western each. Thus first tonight run chanc https://example.com/ 21501 437502 437502.437917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4457320872477 0 \N \N f 0 \N 0 88945846 0 f f \N \N \N \N 437502 \N 0 0 \N \N f \N 441375 2024-02-28 01:54:37.319 2024-02-28 02:04:38.307 Leave example gro Station mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly https://example.com/ 12721 \N 441375 \N \N \N \N \N \N \N \N health \N ACTIVE \N 1.3496159608172 0 \N \N f 0 \N 6 140460384 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441689 2024-02-28 10:58:27.787 2024-02-28 11:08:28.885 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nTree house interest fly bit bring. Create yes business loss arrive to https://example.com/ 15833 440764 440764.441689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2918734864619 0 \N \N f 0 \N 0 158807110 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 437897 2024-02-25 03:00:05.187 2024-02-25 03:10:06.592 About easy answer glass. Fire who place approach. Generation from miss play \N https://example.com/ 17042 \N 437897 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 1.590539076841 0 \N \N f 0 \N 1 239831710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441685 2024-02-28 10:56:59.118 2024-02-28 11:07:00.642 Blue the that l Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard. https://example.com/ 1198 \N 441685 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 25.5620788879308 0 \N \N f 0 \N 0 232916069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437891 2024-02-25 02:53:05.438 2024-02-25 03:03:06.654 Never new should Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together leas https://example.com/ 21139 \N 437891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40330647829909 0 \N \N f 0 \N 4 178460711 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437867 2024-02-25 02:15:58.635 2024-02-25 02:26:00.379 \N Plant ever Republican together picture https://example.com/ 1585 437738 437723.437738.437867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2363049384441 0 \N \N f 0 \N 0 166503313 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440728 2024-02-27 16:09:22.085 2024-02-27 16:19:23.754 \N Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. https://example.com/ 10056 440622 440622.440728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0729114018542 0 \N \N f 0 \N 0 126738855 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 437467 2024-02-24 16:56:35.985 2024-02-24 17:06:37.794 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nMedical view similar https://example.com/ 6335 437462 437453.437462.437467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.32624616427273 0 \N \N f 0 \N 1 203556062 0 f f \N \N \N \N 437453 \N 0 0 \N \N f \N 441717 2024-02-28 11:09:50.709 2024-02-28 11:19:52.725 \N Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six b https://example.com/ 5520 441169 441169.441717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.103154836283 0 \N \N f 0 \N 1 162087670 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441077 2024-02-27 20:48:56.065 2024-02-27 20:58:57.541 Small concern peace on far either. Service clear mo Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare tra https://example.com/ 4487 \N 441077 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.8197728412472 0 \N \N f 0 \N 9 106785415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437765 2024-02-24 23:31:05.281 2024-02-24 23:41:06.281 \N Side rather law learn. C https://example.com/ 9290 437602 437269.437516.437596.437602.437765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8636894534813 0 \N \N f 0 \N 0 247138932 0 f f \N \N \N \N 437269 \N 0 0 \N \N f \N 437872 2024-02-25 02:23:47.125 2024-02-25 02:33:48.451 \N Become seas https://example.com/ 7877 437769 437769.437872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6177817746161 0 \N \N f 0 \N 1 213496364 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 437918 2024-02-25 03:26:25.785 2024-02-25 03:36:26.589 \N Rich v https://example.com/ 2338 437891 437891.437918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7908304820546 0 \N \N f 0 \N 0 30348044 0 f f \N \N \N \N 437891 \N 0 0 \N \N f \N 437908 2024-02-25 03:04:05.327 2024-02-25 03:14:06.752 \N Nature https://example.com/ 16126 160083 159987.160083.437908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.31707516058093 0 \N \N f 0 \N 0 45961881 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 435154 2024-02-22 16:09:46.966 2024-02-22 16:19:49.239 Civil attorney sell amount. Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nMeasure western pretty serious director country. Sport usually room assu https://example.com/ 21400 \N 435154 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 29.705842639845 0 \N \N f 0 \N 22 226767642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437913 2024-02-25 03:18:13.562 2024-02-25 03:28:14.909 \N Past loss author a need give https://example.com/ 18396 435919 435154.435919.437913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5657578321783 0 \N \N f 0 \N 0 180548722 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 435919 2024-02-23 07:40:05.776 2024-02-23 07:50:08.143 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young eff https://example.com/ 1010 435154 435154.435919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9845391682288 0 \N \N f 0 \N 2 103432691 0 f f \N \N \N \N 435154 \N 0 0 \N \N f \N 437912 2024-02-25 03:10:38.664 2024-02-25 03:20:40.385 Very executive Positive return free discuss. V https://example.com/ 19235 \N 437912 \N \N \N \N \N \N \N \N art \N ACTIVE \N 27.9411286386782 0 \N \N f 0 \N 0 223406190 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437921 2024-02-25 03:30:13.813 2024-02-25 03:40:15.232 \N Need huge foreign thing coach him detail sense. Rule TV else. So https://example.com/ 717 437870 437723.437762.437870.437921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.833622619262 0 \N \N f 0 \N 4 164414878 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437706 2024-02-24 21:37:55.856 2024-02-24 21:47:58.305 \N Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through https://example.com/ 2213 437226 436720.437052.437226.437706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6734046549076 0 \N \N f 0 \N 1 239624628 0 f f \N \N \N \N 436720 \N 0 0 \N \N f \N 437915 2024-02-25 03:22:20.687 2024-02-25 03:22:25.777 \N Think article ev https://example.com/ 19151 324511 324511.437915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4713932783353 0 \N \N f 0 \N 0 186206112 0 f f \N \N \N \N 324511 \N 0 0 \N \N f \N 437916 2024-02-25 03:22:38.508 2024-02-25 03:22:43.776 \N Doctor operation because training lose meeting western above. Various change three. https://example.com/ 17157 324511 324511.437916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2035803043972 0 \N \N f 0 \N 0 181403846 0 f f \N \N \N \N 324511 \N 0 0 \N \N f \N 437927 2024-02-25 03:51:20.235 2024-02-25 04:01:21.869 Deep some relate building buy then. Letter common approach education With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair th https://example.com/ 981 \N 437927 \N \N \N \N \N \N \N \N news \N ACTIVE \N 6.00941929182991 0 \N \N f 0 \N 0 3810775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437887 2024-02-25 02:50:03.718 2024-02-25 03:00:05.248 \N Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early co https://example.com/ 21178 437775 437775.437887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2212055288932 0 \N \N f 0 \N 0 191267649 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 432889 2024-02-20 18:54:17.496 2024-02-20 19:04:19.652 Treat central body toward. Cell throughout whether. Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nDecide up red either war deep account more. Force step author c https://example.com/ 8535 \N 432889 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 28.700341481258 0 \N \N f 0 \N 13 125082812 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437933 2024-02-25 03:58:48.338 2024-02-25 04:08:49.597 \N About cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. https://example.com/ 19569 437482 437482.437933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.98618079894632 0 \N \N f 0 \N 0 176848284 0 f f \N \N \N \N 437482 \N 0 0 \N \N f \N 441170 2024-02-27 22:33:36.208 2024-02-27 22:43:37.478 \N Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nFinish only air https://example.com/ 16276 440692 440692.441170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9165291471678 0 \N \N f 0 \N 2 166383647 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440823 2024-02-27 17:13:45.886 2024-02-27 17:23:47.166 \N Budget agent center morning https://example.com/ 20776 440815 439699.439752.439758.439766.440014.440288.440315.440815.440823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7972478950751 0 \N \N f 0 \N 3 194582701 0 f f \N \N \N \N 439699 \N 0 0 \N \N f \N 437843 2024-02-25 01:44:21.431 2024-02-25 01:54:22.651 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother https://example.com/ 18930 437836 437723.437738.437836.437843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.66027591248037 0 \N \N f 0 \N 1 90849296 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440849 2024-02-27 17:30:38.142 2024-02-27 17:40:39.441 \N Scene relate paper hospital. Star cultural stay inside ru https://example.com/ 5527 440633 440633.440849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8310273043526 0 \N \N f 0 \N 1 247125853 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437920 2024-02-25 03:27:27.662 2024-02-25 03:37:28.715 \N Finish only air provide. Wife can development player hair a https://example.com/ 13903 437775 437775.437920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3187553964525 0 \N \N f 0 \N 0 121463543 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437932 2024-02-25 03:58:20.883 2024-02-25 04:08:22.375 \N Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Cas https://example.com/ 15336 437723 437723.437932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77819844260007 0 \N \N f 0 \N 1 4332099 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437856 2024-02-25 01:57:36.656 2024-02-25 02:07:38.558 \N Quickly fill science from politics foot. Person a https://example.com/ 19848 437843 437723.437738.437836.437843.437856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5009533630997 0 \N \N f 0 \N 0 187139108 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437762 2024-02-24 23:26:28.511 2024-02-24 23:36:29.626 \N Field rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something https://example.com/ 14370 437723 437723.437762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7819944387436 0 \N \N f 0 \N 8 87894844 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440852 2024-02-27 17:32:20.537 2024-02-27 17:42:21.991 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. App https://example.com/ 18556 440787 440729.440759.440787.440852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5327619872757 0 \N \N f 0 \N 2 123222586 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 437901 2024-02-25 03:01:48.021 2024-02-25 03:11:48.901 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near serie https://example.com/ 675 437723 437723.437901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.75858150988675 0 \N \N f 0 \N 0 241727139 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 435528 2024-02-22 21:12:45.754 2024-02-22 21:22:46.674 Forget issue save education. Head of face begin We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surfac https://example.com/ 895 \N 435528 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.438019589492 0 \N \N f 0 \N 0 98361054 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441179 2024-02-27 22:41:45.143 2024-02-27 22:51:45.908 \N Range laugh thousan https://example.com/ 13843 441176 441176.441179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2774633235645 0 \N \N f 0 \N 0 218090092 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 440854 2024-02-27 17:38:17.273 2024-02-27 17:48:18.567 \N News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent https://example.com/ 16847 440852 440729.440759.440787.440852.440854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9844358119912 0 \N \N f 0 \N 1 181760006 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 440838 2024-02-27 17:26:40.208 2024-02-27 17:36:41.18 \N Heavy spring happy city start sound. Beautiful bed practice during https://example.com/ 21373 440725 440725.440838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4543918596441 0 \N \N f 0 \N 0 79942052 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 437879 2024-02-25 02:32:41.468 2024-02-25 02:42:42.418 \N Capital treat simple ahead make st https://example.com/ 18403 437524 437524.437879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1221268420169 0 \N \N f 0 \N 1 234514969 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 437871 2024-02-25 02:21:34.043 2024-02-25 02:31:35.368 \N Special thought day cup hard central. Situation attention nat https://example.com/ 663 437801 437723.437801.437871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3302768341057 0 \N \N f 0 \N 0 149876496 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 437831 2024-02-25 01:23:42.821 2024-02-25 01:33:44.288 \N Scientist its surface arrive world determine according. Candidate toug https://example.com/ 21019 437775 437775.437831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6192552621089 0 \N \N f 0 \N 0 184765543 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437934 2024-02-25 03:59:38.517 2024-02-25 04:09:39.682 \N Drive south traditional new what unit mother. Drug https://example.com/ 20058 437777 437687.437777.437934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9473074653232 0 \N \N f 0 \N 0 49842438 0 f f \N \N \N \N 437687 \N 0 0 \N \N f \N 443663 2024-02-29 15:11:44.737 2024-02-29 15:21:45.657 \N Call economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nA https://example.com/ 6030 443577 443577.443663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4194932650422 0 \N \N f 0 \N 1 198900169 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 437583 2024-02-24 18:43:41.034 2024-02-24 18:53:42.593 Both tell huge fine yet fall crime. Impact meet gues Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nTha https://example.com/ 19286 \N 437583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8385805465096 0 \N \N f 0 \N 20 224208480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441485 2024-02-28 05:34:27.737 2024-02-28 05:44:29.671 \N Somebody cold factor themselves for mout https://example.com/ 21275 441405 441405.441485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0485380499948 0 \N \N f 0 \N 0 132820091 0 f f \N \N \N \N 441405 \N 0 0 \N \N f \N 440812 2024-02-27 17:02:05.779 2024-02-27 17:12:07.075 Affect director focus feeling whole best. Power when diffi Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection. https://example.com/ 17411 \N 440812 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 19.9696283915674 0 \N \N f 0 \N 1 13068764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440858 2024-02-27 17:42:14.5 2024-02-27 17:52:16.101 \N Community us end alone. Admit remember red study everybod https://example.com/ 7583 440692 440692.440858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6768116127637 0 \N \N f 0 \N 1 89558710 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443527 2024-02-29 14:13:46.34 2024-02-29 14:23:47.388 \N We teacher join https://example.com/ 20922 443272 443272.443527 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.81519484447509 0 \N \N f 0 \N 2 150609010 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443685 2024-02-29 15:29:21.115 2024-02-29 15:39:22.521 By evening job should nature really. Cut blac Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Sud https://example.com/ 20674 \N 443685 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.2119001533161 0 \N \N f 0 \N 0 132189171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443482 2024-02-29 13:47:09.059 2024-02-29 13:57:10.781 \N We course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nAccording shake th https://example.com/ 5527 443096 442751.443096.443482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.13052640881664 0 \N \N f 0 \N 0 7854351 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443453 2024-02-29 13:20:06.879 2024-02-29 13:30:07.972 Class population stage though page happen expect. Even drug president expect. Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small. https://example.com/ 763 \N 443453 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.8695787269398 0 \N \N f 0 \N 0 58782244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437928 2024-02-25 03:51:41.186 2024-02-25 04:01:43.408 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nAlone the crime night https://example.com/ 14472 432554 432344.432554.437928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7353037170896 0 \N \N f 0 \N 0 118561656 0 f f \N \N \N \N 432344 \N 0 0 \N \N f \N 437943 2024-02-25 04:30:35.481 2024-02-25 04:40:36.917 \N Edge card save. Whether manager alw https://example.com/ 6327 437825 437654.437785.437825.437943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82428183556956 0 \N \N f 0 \N 0 70123229 0 f f \N \N \N \N 437654 \N 0 0 \N \N f \N 439857 2024-02-26 20:04:28.582 2024-02-26 20:14:30.193 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide https://example.com/ 13174 439844 439844.439857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.2893368068879 0 \N \N f 0 \N 8 36083764 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440273 2024-02-27 06:38:31.401 2024-02-27 06:48:33.353 Service technology include study exa Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. https://example.com/ 21472 \N 440273 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.44244395676552 0 \N \N f 0 \N 3 179166314 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443314 2024-02-29 11:09:07.036 2024-02-29 11:19:08.714 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain https://example.com/ 13878 443295 443295.443314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.5411710579049 0 \N \N f 0 \N 0 39445038 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443750 2024-02-29 16:08:23.854 2024-02-29 16:18:25.351 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better https://example.com/ 1425 443577 443577.443750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.333033412558 0 \N \N f 0 \N 5 56681043 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 440857 2024-02-27 17:41:20.802 2024-02-27 17:51:21.551 Side institution practice you. Response herself television. Decide policy Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific. https://example.com/ 6602 \N 440857 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.21521488150175 0 \N \N f 0 \N 0 79793302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440856 2024-02-27 17:40:36.876 2024-02-27 17:50:37.578 \N White seven property least father local. Seat small each after poor glass thousand https://example.com/ 985 440764 440764.440856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5599665208741 0 \N \N f 0 \N 1 104817246 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 440694 2024-02-27 15:45:05.595 2024-02-27 15:55:07.303 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simpl https://example.com/ 1433 440575 440575.440694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3844618844662 0 \N \N f 0 \N 1 204690520 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 440484 2024-02-27 11:48:28.161 2024-02-27 11:58:29.39 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nRespons https://example.com/ 1713 440472 440472.440484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1030762283276 0 \N \N f 0 \N 1 28398105 0 f f \N \N \N \N 440472 \N 0 0 \N \N f \N 437930 2024-02-25 03:55:54.339 2024-02-25 04:05:55.853 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute https://example.com/ 622 437775 437775.437930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8169147086505 0 \N \N f 0 \N 0 8376403 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 437946 2024-02-25 04:35:06.996 2024-02-25 04:45:08.288 Clear suggest Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Mem https://example.com/ 21155 \N 437946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55944990512168 0 \N \N f 0 \N 2 216816370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437188 2024-02-24 13:37:33.1 2024-02-24 13:47:34.569 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning https://example.com/ 9845 437183 437183.437188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8868565409706 0 \N \N f 0 \N 7 222815464 0 f f \N \N \N \N 437183 \N 0 0 \N \N f \N 443043 2024-02-29 03:30:12.507 2024-02-29 03:40:13.886 \N Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various https://example.com/ 20106 443017 442710.443017.443043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6366323340727 0 \N \N f 0 \N 1 92488279 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443357 2024-02-29 11:48:36.397 2024-02-29 11:58:38.843 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Re https://example.com/ 1468 443326 443326.443357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21182470431257 0 \N \N f 0 \N 0 104069726 0 f f \N \N \N \N 443326 \N 0 0 \N \N f \N 441711 2024-02-28 11:04:19.904 2024-02-28 11:14:22.821 \N Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your https://example.com/ 13132 441333 441333.441711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5598111117421 0 \N \N f 0 \N 0 152045507 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 437687 2024-02-24 21:01:36.638 2024-02-24 21:11:37.631 Speech radio kind know. Can travel though PM d Power herself life always. Specific but learn https://example.com/ 20623 \N 437687 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 4.30868415755608 0 \N \N f 0 \N 6 178971992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440855 2024-02-27 17:39:08.475 2024-02-27 17:49:10.078 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish sp https://example.com/ 19566 440633 440633.440855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9104385467837 0 \N \N f 0 \N 2 104042083 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 437944 2024-02-25 04:32:31.624 2024-02-25 04:42:32.841 \N Way majo https://example.com/ 20099 437941 437595.437941.437944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5457986289938 0 \N \N f 0 \N 0 67569133 0 f f \N \N \N \N 437595 \N 0 0 \N \N f \N 437945 2024-02-25 04:33:29.223 2024-02-25 04:43:30.914 \N Most describe tell speech without. Young lot next cell am https://example.com/ 7558 437524 437524.437945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5017287961791 0 \N \N f 0 \N 7 8732800 0 f f \N \N \N \N 437524 \N 0 0 \N \N f \N 437859 2024-02-25 02:02:21.529 2024-02-25 02:12:22.89 \N With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nCount https://example.com/ 17714 437807 437769.437807.437859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73082975791652 0 \N \N f 0 \N 0 237911230 0 f f \N \N \N \N 437769 \N 0 0 \N \N f \N 441398 2024-02-28 02:29:52.941 2024-02-28 02:39:54.679 \N Score player recogniz https://example.com/ 18051 435142 435142.441398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6365411846213 0 \N \N f 0 \N 0 86986505 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 441394 2024-02-28 02:26:29.296 2024-02-28 02:36:30.462 \N Area just subject pretty. Three empl https://example.com/ 18945 441326 441326.441394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7860267092366 0 \N \N f 0 \N 0 121633894 0 f f \N \N \N \N 441326 \N 0 0 \N \N f \N 437942 2024-02-25 04:26:52.163 2024-02-25 04:36:53.935 \N Stay worry day know land alone. Green he staff soon air general information. Four should firm a https://example.com/ 20669 437940 437723.437762.437870.437921.437931.437940.437942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.86773274224671 0 \N \N f 0 \N 1 161547390 0 f f \N \N \N \N 437723 \N 0 0 \N \N f \N 440216 2024-02-27 03:31:25.97 2024-02-27 03:41:27.358 \N Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nDeep some relate building buy then. Letter common https://example.com/ 2528 440132 440132.440216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.708652494181 0 \N \N f 0 \N 1 244310655 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440868 2024-02-27 17:50:58.148 2024-02-27 18:00:59.604 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok orde https://example.com/ 16145 440858 440692.440858.440868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8687852618945 0 \N \N f 0 \N 0 168127992 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440328 2024-02-27 08:27:44.114 2024-02-27 08:37:46.003 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. https://example.com/ 18539 439822 439822.440328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9699147225681 0 \N \N f 0 \N 2 160323846 0 f f \N \N \N \N 439822 \N 0 0 \N \N f \N 441373 2024-02-28 01:53:52.98 2024-02-28 02:03:55.083 \N Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positi https://example.com/ 2525 441198 441198.441373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7434932424912 0 \N \N f 0 \N 1 102960240 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 440735 2024-02-27 16:14:26.45 2024-02-27 16:24:27.423 \N Hair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal https://example.com/ 1881 440587 440587.440735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6400678900063 0 \N \N f 0 \N 1 215537693 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441043 2024-02-27 20:12:52.977 2024-02-27 20:22:54.47 Member car law politics in. Blue sometimes perform care doctor pattern. Involve Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular. https://example.com/ 15088 \N 441043 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 14.2477800345522 0 \N \N f 0 \N 6 181538834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441005 2024-02-27 19:57:21.769 2024-02-27 20:07:23.602 \N Direction figure betwe https://example.com/ 20963 440856 440764.440856.441005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00337971526608 0 \N \N f 0 \N 0 122508158 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441054 2024-02-27 20:20:28.493 2024-02-27 20:30:32.725 Natural read Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead pai https://example.com/ 13042 \N 441054 \N \N \N \N \N \N \N \N health \N ACTIVE \N 14.2586922422398 0 \N \N f 0 \N 6 84590197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441983 2024-02-28 14:05:12.794 2024-02-28 14:15:14.145 \N Build learn name environment. Which spe https://example.com/ 2367 441695 441695.441983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.83053102004415 0 \N \N f 0 \N 1 145843327 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441084 2024-02-27 20:55:19.762 2024-02-27 21:05:20.725 \N Measure would expert nation two. https://example.com/ 20555 429478 429078.429204.429478.441084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8620793246463 0 \N \N f 0 \N 0 148232228 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 440943 2024-02-27 19:04:37.43 2024-02-27 19:14:38.947 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reali https://example.com/ 664 440422 440422.440943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.12617112915816 0 \N \N f 0 \N 0 31853155 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441079 2024-02-27 20:51:12.013 2024-02-27 21:01:13.493 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early p https://example.com/ 12930 441069 440725.440874.440909.440940.440944.440955.440987.441069.441079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2104684298756 0 \N \N f 0 \N 1 140623761 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441938 2024-02-28 13:45:00.231 2024-02-28 13:55:01.309 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself centur https://example.com/ 21088 441935 441935.441938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2505642112018 0 \N \N f 0 \N 0 37441248 0 f f \N \N \N \N 441935 \N 0 0 \N \N f \N 441957 2024-02-28 13:53:13.786 2024-02-28 14:03:15.898 \N Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue boa https://example.com/ 3979 441942 441942.441957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9707442553914 0 \N \N f 0 \N 0 22284098 0 f f \N \N \N \N 441942 \N 0 0 \N \N f \N 441966 2024-02-28 13:58:25.917 2024-02-28 14:08:27.69 Thing type great Mr. Choose cover medical bed mention voice Mrs. Oth Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject. https://example.com/ 624 \N 441966 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.15737540869333 0 \N \N f 0 \N 0 225841744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440991 2024-02-27 19:47:48.691 2024-02-27 19:57:50.865 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspa https://example.com/ 18663 440692 440692.440991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2089460108635 0 \N \N f 0 \N 0 164693500 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441095 2024-02-27 21:08:28.757 2024-02-27 21:18:29.759 \N Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this https://example.com/ 695 441086 440641.440704.440900.440918.441086.441095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.98671590577001 0 \N \N f 0 \N 0 169719185 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 439702 2024-02-26 18:02:42.881 2024-02-26 18:12:45.145 Community region she TV since sometimes know. Small water Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total https://example.com/ 9099 \N 439702 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 0.824463849901704 0 \N \N f 0 \N 0 69261530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441080 2024-02-27 20:52:04.514 2024-02-27 21:02:06.221 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful suc https://example.com/ 13361 395248 395248.441080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3419324683676 0 \N \N f 0 \N 0 208257001 0 f f \N \N \N \N 395248 \N 0 0 \N \N f \N 440949 2024-02-27 19:06:23.667 2024-02-27 19:16:24.947 Increase agent management assume system either Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance amo https://example.com/ 14037 \N 440949 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.2030517511365 0 \N \N f 0 \N 1 84042182 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441081 2024-02-27 20:52:19.06 2024-02-27 21:02:20.454 \N Operation against song book rise har https://example.com/ 18817 441053 440764.441016.441053.441081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79238323837608 0 \N \N f 0 \N 0 184118559 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441117 2024-02-27 21:27:04.199 2024-02-27 21:37:05.951 \N Heart https://example.com/ 1769 440898 440898.441117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.232037755 0 \N \N f 0 \N 0 12019090 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441119 2024-02-27 21:30:06.097 2024-02-27 21:40:07.785 \N Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly https://example.com/ 18896 440529 440521.440529.441119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.41933939588828 0 \N \N f 0 \N 2 149464916 0 f f \N \N \N \N 440521 \N 0 0 \N \N f \N 441127 2024-02-27 21:36:31.833 2024-02-27 21:46:33.078 \N Hotel blood consumer spend https://example.com/ 2029 441007 440988.440993.441000.441007.441127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6227841619542 0 \N \N f 0 \N 0 189198466 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 440931 2024-02-27 18:53:24.012 2024-02-27 19:03:26.131 Scientist light the everything find window issue. Mo Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school. https://example.com/ 18528 \N 440931 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 15.3452210085049 0 \N \N f 0 \N 0 121503037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441036 2024-02-27 20:10:37.824 2024-02-27 20:20:40.02 Build learn name environment. Which specific old rule. Have result sell run th Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there. https://example.com/ 10519 \N 441036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.51365783260884 0 \N \N f 0 \N 0 162052130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440281 2024-02-27 06:58:20.292 2024-02-27 07:08:21.33 \N Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong https://example.com/ 2748 440241 440241.440281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9724778772683 0 \N \N f 0 \N 3 147727701 0 f f \N \N \N \N 440241 \N 0 0 \N \N f \N 439982 2024-02-26 21:24:56.673 2024-02-26 21:34:58.77 \N Billion very news personal develop career https://example.com/ 663 439586 439586.439982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6069418510292 0 \N \N f 0 \N 0 7555358 0 f f \N \N \N \N 439586 \N 0 0 \N \N f \N 440884 2024-02-27 18:11:24.922 2024-02-27 18:21:26.708 Black leg through occur possible Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our. https://example.com/ 4250 \N 440884 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 27.1083014193091 0 \N \N f 0 \N 1 91271816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441090 2024-02-27 21:02:09.508 2024-02-27 21:12:11.493 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improv https://example.com/ 618 441085 440764.441066.441085.441090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9810022992102 0 \N \N f 0 \N 0 57843211 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441082 2024-02-27 20:52:52.676 2024-02-27 21:02:53.903 \N Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface https://example.com/ 2735 429166 429078.429166.441082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.18037745120611 0 \N \N f 0 \N 0 166295683 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 441131 2024-02-27 21:37:21.024 2024-02-27 21:47:22.023 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource m https://example.com/ 18321 440998 440998.441131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0190481433636 0 \N \N f 0 \N 0 64250066 0 f f \N \N \N \N 440998 \N 0 0 \N \N f \N 441420 2024-02-28 03:22:42.113 2024-02-28 03:32:43.778 \N Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund ea https://example.com/ 8985 441399 441333.441340.441399.441420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2194575895264 0 \N \N f 0 \N 2 173041225 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441066 2024-02-27 20:40:21.731 2024-02-27 20:50:22.944 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine act https://example.com/ 20754 440764 440764.441066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6172230732934 0 \N \N f 0 \N 2 12061163 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441586 2024-02-28 08:42:00.113 2024-02-28 08:52:01.902 \N Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicat https://example.com/ 9809 441480 441480.441586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1802054458307 0 \N \N f 0 \N 0 207833539 0 f f \N \N \N \N 441480 \N 0 0 \N \N f \N 441978 2024-02-28 14:03:34.879 2024-02-28 14:13:35.578 \N Speak specific energy inter https://example.com/ 20539 441901 441891.441901.441978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8351600836351 0 \N \N f 0 \N 0 76432487 0 f f \N \N \N \N 441891 \N 0 0 \N \N f \N 441733 2024-02-28 11:18:35.979 2024-02-28 11:28:38.214 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nPrevent machine source white and https://example.com/ 4250 441653 441514.441640.441653.441733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2230015014728 0 \N \N f 0 \N 8 208199586 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441091 2024-02-27 21:02:12.667 2024-02-27 21:12:13.594 \N Image reality political wind several n https://example.com/ 803 441087 441087.441091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.41491505989867 0 \N \N f 0 \N 2 108843434 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441103 2024-02-27 21:15:29.662 2024-02-27 21:25:30.79 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. Peopl https://example.com/ 3360 441024 440764.440821.441024.441103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9563289667378 0 \N \N f 0 \N 0 119488279 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441138 2024-02-27 21:48:12.108 2024-02-27 21:58:13.741 \N Not find attack light everything different. Certainly travel performance ready. Truth father design gre https://example.com/ 1602 440911 440911.441138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1180073347452 0 \N \N f 0 \N 2 109171664 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 441024 2024-02-27 20:04:58.616 2024-02-27 20:15:00.014 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. https://example.com/ 16948 440821 440764.440821.441024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2261413729134 0 \N \N f 0 \N 1 38919098 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441831 2024-02-28 12:29:57.584 2024-02-28 12:39:59.057 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin offic https://example.com/ 19836 441828 441828.441831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2948480464145 0 \N \N f 0 \N 0 145465795 0 f f \N \N \N \N 441828 \N 0 0 \N \N f \N 441098 2024-02-27 21:09:46.811 2024-02-27 21:19:47.718 \N Table fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nSet how recognize operation American. Account avoid miss maybe idea within https://example.com/ 10944 441079 440725.440874.440909.440940.440944.440955.440987.441069.441079.441098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0591444552544 0 \N \N f 0 \N 0 145521524 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441069 2024-02-27 20:41:42.263 2024-02-27 20:51:43.671 \N Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you https://example.com/ 9346 440987 440725.440874.440909.440940.440944.440955.440987.441069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.92521393870329 0 \N \N f 0 \N 2 233937565 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440936 2024-02-27 18:58:25.121 2024-02-27 19:08:26.06 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event https://example.com/ 14278 440911 440911.440936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3281192652009 0 \N \N f 0 \N 1 69640812 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 441385 2024-02-28 02:09:22.398 2024-02-28 02:19:23.437 \N Because fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garde https://example.com/ 15045 441169 441169.441385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.264860263644 0 \N \N f 0 \N 0 18450930 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 438486 2024-02-25 17:42:42.746 2024-02-25 17:52:43.866 Message throw as table worry serve investment degree. Very executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nAffect body wonder do still debate affect work. Bed town j https://example.com/ 889 \N 438486 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.80680154732561 0 \N \N f 0 \N 12 157517234 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441133 2024-02-27 21:41:28.851 2024-02-27 21:51:30.626 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nFish health while https://example.com/ 19639 441119 440521.440529.441119.441133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.13194724651857 0 \N \N f 0 \N 1 67320702 0 f f \N \N \N \N 440521 \N 0 0 \N \N f \N 441143 2024-02-27 21:51:57.399 2024-02-27 22:01:58.714 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nAccept nation he. Work plan maintain https://example.com/ 21058 441136 440988.441129.441136.441143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0548643652866 0 \N \N f 0 \N 0 184744064 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441086 2024-02-27 20:56:02.699 2024-02-27 21:06:04.212 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Sudde https://example.com/ 14074 440918 440641.440704.440900.440918.441086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.41569421006945 0 \N \N f 0 \N 1 106287391 0 f f \N \N \N \N 440641 \N 0 0 \N \N f \N 441078 2024-02-27 20:49:56.316 2024-02-27 20:59:58.842 \N Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. M https://example.com/ 5825 441054 441054.441078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.129479422062175 0 \N \N f 0 \N 0 137720341 0 f f \N \N \N \N 441054 \N 0 0 \N \N f \N 441052 2024-02-27 20:20:01.944 2024-02-27 20:30:03.855 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nCell civil on much able su https://example.com/ 21238 440764 440764.441052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7601307632824 0 \N \N f 0 \N 3 96009714 0 f f \N \N \N \N 440764 \N 0 0 \N \N f \N 441158 2024-02-27 22:16:56.56 2024-02-27 22:26:58.297 \N Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church https://example.com/ 11220 441054 441054.441158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4675203101332 0 \N \N f 0 \N 1 68779186 0 f f \N \N \N \N 441054 \N 0 0 \N \N f \N 441159 2024-02-27 22:19:46.242 2024-02-27 22:29:47.105 Increase bring card. Figure important dir Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. https://example.com/ 21421 \N 441159 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7589581236778 0 \N \N f 0 \N 0 246342348 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441175 2024-02-27 22:37:57.476 2024-02-27 22:47:58.673 \N Imp https://example.com/ 2075 441144 440988.440993.441144.441175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3972590814098 0 \N \N f 0 \N 1 90861875 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441258 2024-02-27 23:58:04.521 2024-02-28 00:08:05.577 \N Rock source rate fact leave house course. Person support hotel bill https://example.com/ 5829 441254 440692.441011.441130.441211.441215.441226.441234.441254.441258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0851082331862 0 \N \N f 0 \N 0 227796657 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441184 2024-02-27 22:43:59.621 2024-02-27 22:54:00.986 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Nigh https://example.com/ 21437 441167 441147.441167.441184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.609698520861173 0 \N \N f 0 \N 2 15429083 0 f f \N \N \N \N 441147 \N 0 0 \N \N f \N 441256 2024-02-27 23:48:45.333 2024-02-27 23:58:46.127 \N Lay garden sing air theory. Item simply month guess better conferenc https://example.com/ 20663 441220 441124.441220.441256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.91265141471197 0 \N \N f 0 \N 1 172302947 0 f f \N \N \N \N 441124 \N 0 0 \N \N f \N 441384 2024-02-28 02:03:28.296 2024-02-28 02:13:29.082 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color https://example.com/ 21338 441346 441346.441384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21772838105589 0 \N \N f 0 \N 0 219402305 0 f f \N \N \N \N 441346 \N 0 0 \N \N f \N 441241 2024-02-27 23:28:45.565 2024-02-27 23:38:46.725 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas rece https://example.com/ 19911 441239 440692.441027.441074.441213.441232.441239.441241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.52078599972112 0 \N \N f 0 \N 1 110723614 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441243 2024-02-27 23:29:38.663 2024-02-27 23:39:40.452 \N Main teacher local. Western rate blood than sell. Agency participant team. Better investmen https://example.com/ 18923 441170 440692.441170.441243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60906451881402 0 \N \N f 0 \N 0 192911886 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441349 2024-02-28 01:31:09.384 2024-02-28 01:41:10.443 \N Purpose add when information sin https://example.com/ 18412 441256 441124.441220.441256.441349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33037219236435 0 \N \N f 0 \N 0 244297883 0 f f \N \N \N \N 441124 \N 0 0 \N \N f \N 441199 2024-02-27 22:53:46.077 2024-02-27 23:03:47.439 Answer party get head Democrat. Marriage let Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nAffect body wonder do still debate aff https://example.com/ 20816 \N 441199 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7982655035955 0 \N \N f 0 \N 2 220143960 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441217 2024-02-27 23:09:53.194 2024-02-27 23:19:54.494 \N Past hospital she war. Firm spring game seem. Recently night how bil https://example.com/ 628 440988 440988.441217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.63019579873222 0 \N \N f 0 \N 0 99417483 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441224 2024-02-27 23:16:17.402 2024-02-27 23:26:18.833 \N Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night https://example.com/ 3729 441175 440988.440993.441144.441175.441224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11475370307019 0 \N \N f 0 \N 0 33623789 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 439714 2024-02-26 18:13:57.23 2024-02-26 18:23:58.767 \N Pick fight simp https://example.com/ 12951 439650 439479.439632.439650.439714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8038680246739 0 \N \N f 0 \N 1 109168029 0 f f \N \N \N \N 439479 \N 0 0 \N \N f \N 441219 2024-02-27 23:12:12.23 2024-02-27 23:22:13.413 \N Policy trade before drop particular upon science. Togethe https://example.com/ 2010 441205 441169.441189.441205.441219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4955469110893 0 \N \N f 0 \N 0 245691660 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441218 2024-02-27 23:11:19.542 2024-02-27 23:21:20.681 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance https://example.com/ 692 441211 440692.441011.441130.441211.441218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7613502063825 0 \N \N f 0 \N 0 101019837 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441201 2024-02-27 22:54:43.439 2024-02-27 23:04:44.601 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher milli https://example.com/ 19158 440622 440622.441201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7352379979367 0 \N \N f 0 \N 0 209185272 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 441393 2024-02-28 02:22:57.086 2024-02-28 02:32:58.623 \N M https://example.com/ 18828 440523 440422.440523.441393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7950779725302 0 \N \N f 0 \N 0 48934925 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441194 2024-02-27 22:51:43.573 2024-02-27 23:01:45.296 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south inform https://example.com/ 1425 441160 440422.441160.441194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7074913545421 0 \N \N f 0 \N 1 15735852 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441208 2024-02-27 23:00:04.237 2024-02-27 23:10:05.575 \N Reflect fill team movie dr https://example.com/ 5746 441111 440898.440916.441111.441208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1243874907761 0 \N \N f 0 \N 0 219972091 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441202 2024-02-27 22:56:13.22 2024-02-27 23:06:14.964 \N Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell d https://example.com/ 5497 441194 440422.441160.441194.441202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.636098530398 0 \N \N f 0 \N 0 106090598 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441230 2024-02-27 23:21:47.623 2024-02-27 23:31:48.782 \N Lead between race contain politics. Base behavior suggest image information. Sound everyone think instea https://example.com/ 5487 441012 440898.441012.441230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9830297269785 0 \N \N f 0 \N 1 194309162 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441262 2024-02-28 00:03:46.197 2024-02-28 00:13:47.644 \N Site product one fact loss. Site yeah position student news. Skin particular thought write qua https://example.com/ 18626 440988 440988.441262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8363403233748 0 \N \N f 0 \N 1 181726549 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441249 2024-02-27 23:41:44.417 2024-02-27 23:51:45.417 \N Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. https://example.com/ 21060 441169 441169.441249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2212611408929 0 \N \N f 0 \N 0 234841429 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441235 2024-02-27 23:25:34.532 2024-02-27 23:35:35.771 \N Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nEstablish material they meet. Little bag idea region live follow itself. Patt https://example.com/ 21281 441226 440692.441011.441130.441211.441215.441226.441235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21356764720349 0 \N \N f 0 \N 0 83464659 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441211 2024-02-27 23:05:23.789 2024-02-27 23:15:24.918 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. On https://example.com/ 11898 441130 440692.441011.441130.441211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2161478146559 0 \N \N f 0 \N 8 36826996 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441259 2024-02-27 23:59:25.379 2024-02-28 00:09:27.115 \N Treat central body toward https://example.com/ 14449 441247 441247.441259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2809541468036 0 \N \N f 0 \N 1 189452283 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441267 2024-02-28 00:09:06.205 2024-02-28 00:19:07.614 \N Support li https://example.com/ 21249 441262 440988.441262.441267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9554464219334 0 \N \N f 0 \N 0 74108954 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441236 2024-02-27 23:25:43.601 2024-02-27 23:35:45.355 \N Decision budget hit force have. Budget guy hospital former. Involve car proper https://example.com/ 4831 441198 441198.441236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8147506266156 0 \N \N f 0 \N 2 28569993 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 441337 2024-02-28 01:22:43.79 2024-02-28 01:32:45.821 \N Future next ex https://example.com/ 17227 441298 441298.441337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1065274045342 0 \N \N f 0 \N 0 115467639 0 f f \N \N \N \N 441298 \N 0 0 \N \N f \N 441253 2024-02-27 23:45:49.714 2024-02-27 23:55:50.987 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nDrug lif https://example.com/ 16176 440989 440989.441253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6601113091071 0 \N \N f 0 \N 0 155496441 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 441111 2024-02-27 21:19:42.076 2024-02-27 21:29:43.62 \N Trip improve bor https://example.com/ 12606 440916 440898.440916.441111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.112147717137 0 \N \N f 0 \N 1 226010143 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441284 2024-02-28 00:23:43.084 2024-02-28 00:33:44.595 \N American argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss https://example.com/ 3642 441247 441247.441284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.693173646226 0 \N \N f 0 \N 1 219871796 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441285 2024-02-28 00:23:55.532 2024-02-28 00:33:56.695 \N Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. Natio https://example.com/ 3304 441195 440984.441073.441195.441285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.74182650979625 0 \N \N f 0 \N 1 13300167 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N 441073 2024-02-27 20:42:37.164 2024-02-27 20:52:38.491 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nItem attention child https://example.com/ 21421 440984 440984.441073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7944030846706 0 \N \N f 0 \N 3 36143321 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N 442583 2024-02-28 19:13:24.576 2024-02-28 19:23:25.957 \N Doctor https://example.com/ 18678 442582 442551.442571.442582.442583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8333781697994 0 \N \N f 0 \N 0 241807435 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 441314 2024-02-28 00:57:42.919 2024-02-28 01:07:43.821 \N About easy answer glass. Fire who place approach. Generation from miss player four never type some. https://example.com/ 21145 441197 440988.441174.441197.441314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2198511307323 0 \N \N f 0 \N 2 187159590 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441142 2024-02-27 21:51:50.422 2024-02-27 22:01:51.659 \N General against page door. Attention although even hospital sing recentl https://example.com/ 16948 441075 440692.441075.441142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9503263767989 0 \N \N f 0 \N 0 181457991 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441291 2024-02-28 00:33:35.92 2024-02-28 00:43:37.254 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy https://example.com/ 12334 440818 440663.440751.440760.440773.440783.440796.440818.441291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.13742518701903 0 \N \N f 0 \N 0 45504219 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 441463 2024-02-28 04:46:03.557 2024-02-28 04:56:05.218 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Sout https://example.com/ 17513 441403 441333.441403.441463 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.656216948501438 0 \N \N f 0 \N 10 126422463 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441297 2024-02-28 00:39:24.186 2024-02-28 00:49:25.661 \N Republican begin audience guy get e https://example.com/ 18667 441295 441247.441295.441297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3979668752944 0 \N \N f 0 \N 0 247482771 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441414 2024-02-28 03:10:24.782 2024-02-28 03:20:26.129 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance t https://example.com/ 12744 441413 441375.441400.441413.441414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0540332160556 0 \N \N f 0 \N 0 159740226 0 f f \N \N \N \N 441375 \N 0 0 \N \N f \N 441254 2024-02-27 23:46:13.031 2024-02-27 23:56:14.044 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom las https://example.com/ 8841 441234 440692.441011.441130.441211.441215.441226.441234.441254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7061346510986 0 \N \N f 0 \N 1 99302223 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441316 2024-02-28 00:58:57.181 2024-02-28 01:08:57.98 \N Later piece skin environmental not authority finish reduce. Ou https://example.com/ 16456 441314 440988.441174.441197.441314.441316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9810374653429 0 \N \N f 0 \N 0 46655339 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441132 2024-02-27 21:40:54.177 2024-02-27 21:50:55.721 Admit difficult figure parent account in. Suffer administration differ Past loss a https://example.com/ 16214 \N 441132 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 10.6128417280228 0 \N \N f 0 \N 0 236855234 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441107 2024-02-27 21:18:03.874 2024-02-27 21:28:04.862 Follow commercial image consider media t Hot society statement bed watch party himself firm. Attention type note difficult former. More h https://example.com/ 17011 \N 441107 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 23.9151507009477 0 \N \N f 0 \N 1 124760366 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441444 2024-02-28 04:20:16.987 2024-02-28 04:30:17.835 \N Do probably energy loss forget sc https://example.com/ 14295 441165 441118.441165.441444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6674497978891 0 \N \N f 0 \N 0 51622360 0 f f \N \N \N \N 441118 \N 0 0 \N \N f \N 441298 2024-02-28 00:39:29.198 2024-02-28 00:49:30.876 Possible serious black institution source fund. Pl Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeti https://example.com/ 21040 \N 441298 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.4485515004497 0 \N \N f 0 \N 1 205543902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441276 2024-02-28 00:16:51.257 2024-02-28 00:26:52.366 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Re https://example.com/ 4292 441169 441169.441276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.72474272828244 0 \N \N f 0 \N 2 101552039 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441186 2024-02-27 22:46:25.581 2024-02-27 22:56:26.851 Quickly imagine he learn effort risk wish. Respond include tradition Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do. https://example.com/ 11862 \N 441186 \N \N \N \N \N \N \N \N art \N ACTIVE \N 22.4119750122035 0 \N \N f 0 \N 1 107631352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441309 2024-02-28 00:49:11.524 2024-02-28 00:59:12.854 \N Civil attorney sel https://example.com/ 1620 441255 441255.441309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7660302482248 0 \N \N f 0 \N 0 179197233 0 f f \N \N \N \N 441255 \N 0 0 \N \N f \N 441255 2024-02-27 23:48:20.307 2024-02-27 23:58:21.695 Take carry discuss possible. Little Mrs subject generation politics very. Effec Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow. https://example.com/ 2327 \N 441255 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 26.5710776543254 0 \N \N f 0 \N 2 124676966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441927 2024-02-28 13:38:28.777 2024-02-28 13:48:30.094 \N Yes but truth go. Generatio https://example.com/ 7773 441921 441921.441927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1098559435452 0 \N \N f 0 \N 1 35040172 0 f f \N \N \N \N 441921 \N 0 0 \N \N f \N 441101 2024-02-27 21:13:06.087 2024-02-27 21:23:07.197 \N Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level soci https://example.com/ 20143 440906 440079.440282.440880.440906.441101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6052399880123 0 \N \N f 0 \N 0 153794283 0 f f \N \N \N \N 440079 \N 0 0 \N \N f \N 441430 2024-02-28 03:52:38.382 2024-02-28 04:02:39.436 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice https://example.com/ 7425 441420 441333.441340.441399.441420.441430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0648500105606 0 \N \N f 0 \N 1 152512875 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441324 2024-02-28 01:06:28.281 2024-02-28 01:16:29.68 \N Different dog example. https://example.com/ 760 440884 440884.441324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09153814172805 0 \N \N f 0 \N 0 28446206 0 f f \N \N \N \N 440884 \N 0 0 \N \N f \N 441317 2024-02-28 00:59:00.199 2024-02-28 01:09:02.046 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nArtist fly billion same. Go may a https://example.com/ 20892 441315 441315.441317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2117326406538 0 \N \N f 0 \N 0 76488407 0 f f \N \N \N \N 441315 \N 0 0 \N \N f \N 441415 2024-02-28 03:12:21.615 2024-02-28 03:22:23.225 \N Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister https://example.com/ 19843 440663 440663.441415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0122927990382 0 \N \N f 0 \N 1 138488790 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 441423 2024-02-28 03:29:20.977 2024-02-28 03:39:22.033 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce g https://example.com/ 12277 441411 441411.441423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.475497309212 0 \N \N f 0 \N 0 188104192 0 f f \N \N \N \N 441411 \N 0 0 \N \N f \N 441165 2024-02-27 22:26:58.482 2024-02-27 22:37:00.012 \N Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. W https://example.com/ 17042 441118 441118.441165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6224203230524 0 \N \N f 0 \N 1 81295885 0 f f \N \N \N \N 441118 \N 0 0 \N \N f \N 441405 2024-02-28 02:43:31.991 2024-02-28 02:53:33.243 For wrong offer a Develo https://example.com/ 11678 \N 441405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.46337722050811 0 \N \N f 0 \N 6 95320387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441435 2024-02-28 04:03:18.576 2024-02-28 04:13:19.567 \N Per billion school mind. Success hard result worry. Money se https://example.com/ 10554 441199 441199.441435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3317889727173 0 \N \N f 0 \N 0 164890079 0 f f \N \N \N \N 441199 \N 0 0 \N \N f \N 441124 2024-02-27 21:34:59.124 2024-02-27 21:45:00.313 Right term sell shoulder. Next chair base young skill fall myself. Stage top Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left. https://example.com/ 12268 \N 441124 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7089885522676 0 \N \N f 0 \N 3 55664265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441406 2024-02-28 02:43:49.336 2024-02-28 02:53:50.688 \N Ca https://example.com/ 18452 441255 441255.441406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.26805290904864 0 \N \N f 0 \N 0 177781993 0 f f \N \N \N \N 441255 \N 0 0 \N \N f \N 441340 2024-02-28 01:25:12.088 2024-02-28 01:35:13.502 \N Inside nor professional partner new design machine. Fire occur l https://example.com/ 11999 441333 441333.441340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.523418937713842 0 \N \N f 0 \N 5 189939462 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441391 2024-02-28 02:20:06.435 2024-02-28 02:30:07.471 \N Far clearl https://example.com/ 18615 441271 440911.441138.441271.441391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9297623137452 0 \N \N f 0 \N 0 97769219 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 441271 2024-02-28 00:13:35.305 2024-02-28 00:23:36.946 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten s https://example.com/ 21441 441138 440911.441138.441271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81901337514653 0 \N \N f 0 \N 1 25479279 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 441386 2024-02-28 02:12:00.887 2024-02-28 02:22:02.453 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collectio https://example.com/ 21400 440587 440587.441386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.940025301799 0 \N \N f 0 \N 0 11765713 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441443 2024-02-28 04:17:31.247 2024-02-28 04:27:32.761 Them reflect instead color. Public hour property wind step act y Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nOperation against song book rise hard. Attorney issue game https://example.com/ 20594 \N 441443 \N \N \N \N \N \N \N \N security \N ACTIVE \N 25.6105370540075 0 \N \N f 0 \N 1 79732723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441044 2024-02-27 20:14:07.661 2024-02-27 20:24:09.023 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. H https://example.com/ 20377 440725 440725.441044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23691615774484 0 \N \N f 0 \N 0 224340597 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441401 2024-02-28 02:37:21.014 2024-02-28 02:47:22.562 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help ma https://example.com/ 16660 441077 441077.441401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0731061458971 0 \N \N f 0 \N 0 62815957 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 440942 2024-02-27 19:04:33.186 2024-02-27 19:14:34.524 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Offi https://example.com/ 21619 440872 440725.440872.440942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8471423440766 0 \N \N f 0 \N 4 74285032 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441311 2024-02-28 00:53:29.582 2024-02-28 01:03:31.132 Sense college state many. Some your mother else rec Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front https://example.com/ 701 \N 441311 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 25.3686348603803 0 \N \N f 0 \N 1 82882473 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441335 2024-02-28 01:21:07.24 2024-02-28 01:31:08.05 \N Ten throw https://example.com/ 13076 441311 441311.441335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.36355790726855 0 \N \N f 0 \N 0 167017409 0 f f \N \N \N \N 441311 \N 0 0 \N \N f \N 441329 2024-02-28 01:16:01.455 2024-02-28 01:26:03.003 \N Increase bring card. Figure important direction must civil indeed. L https://example.com/ 20973 441318 441318.441329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93688673560369 0 \N \N f 0 \N 0 127990840 0 f f \N \N \N \N 441318 \N 0 0 \N \N f \N 441328 2024-02-28 01:15:52.367 2024-02-28 01:25:53.95 Reality four attention. Whose each design pul Such house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win. https://example.com/ 20509 \N 441328 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 23.4606296099055 0 \N \N f 0 \N 1 50779360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441327 2024-02-28 01:15:04.809 2024-02-28 01:25:05.976 \N Wait forward with whose only card brother. Another stan https://example.com/ 2513 438772 438772.441327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.20536050673178 0 \N \N f 0 \N 0 71568653 0 f f \N \N \N \N 438772 \N 0 0 \N \N f \N 441330 2024-02-28 01:16:36.395 2024-02-28 01:26:37.976 \N Whose top pro https://example.com/ 20816 431190 405813.431190.441330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5243584020285 0 \N \N f 0 \N 0 143506235 0 f f \N \N \N \N 405813 \N 0 0 \N \N f \N 441326 2024-02-28 01:13:09.954 2024-02-28 01:23:11.034 Live class artist pull nearly poor. Use vote religious. Later bad by Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whos https://example.com/ 18040 \N 441326 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.6805668560324 0 \N \N f 0 \N 1 132938491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441338 2024-02-28 01:23:15.373 2024-02-28 01:33:16.362 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. https://example.com/ 659 441169 441169.441338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3477582957885 0 \N \N f 0 \N 2 213727327 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441332 2024-02-28 01:19:31.706 2024-02-28 01:29:32.75 Give business wind base magazine method trade. Reduce main speak create. Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behi https://example.com/ 18837 \N 441332 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4973151330073 0 \N \N f 0 \N 1 85412109 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441289 2024-02-28 00:27:59.233 2024-02-28 00:38:00.36 Action prevent Republican. Now third lawyer mothe Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade. https://example.com/ 18772 \N 441289 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.6099413278011 0 \N \N f 0 \N 0 170933568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441344 2024-02-28 01:27:00.72 2024-02-28 01:37:01.971 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean pap https://example.com/ 9921 441307 440692.441027.441074.441178.441307.441344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2428380098634 0 \N \N f 0 \N 1 167506001 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441343 2024-02-28 01:26:15.593 2024-02-28 01:36:17.417 \N Full both sound century close card. A https://example.com/ 12483 441300 441300.441343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4178921490641 0 \N \N f 0 \N 0 77675332 0 f f \N \N \N \N 441300 \N 0 0 \N \N f \N 441359 2024-02-28 01:41:30.387 2024-02-28 01:51:32.117 \N Accept nation he. Work plan ma https://example.com/ 951 441341 441333.441341.441359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0970635095996 0 \N \N f 0 \N 0 170000078 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441263 2024-02-28 00:05:53.555 2024-02-28 00:15:55.431 \N Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Ex https://example.com/ 20596 441261 441043.441173.441261.441263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.301412264289 0 \N \N f 0 \N 3 87113229 0 f f \N \N \N \N 441043 \N 0 0 \N \N f \N 441245 2024-02-27 23:32:39.739 2024-02-27 23:42:41.145 \N Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nTree I there avoid win knowledge improve. D https://example.com/ 5961 441238 441238.441245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8740397055586 0 \N \N f 0 \N 2 194185110 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 441154 2024-02-27 22:10:24.441 2024-02-27 22:20:26.34 \N About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send c https://example.com/ 19381 440422 440422.441154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4364332220382 0 \N \N f 0 \N 0 232330665 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441352 2024-02-28 01:34:22.258 2024-02-28 01:44:23.901 \N Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available dire https://example.com/ 17838 441230 440898.441012.441230.441352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.99858868080083 0 \N \N f 0 \N 0 108305685 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441357 2024-02-28 01:40:51.001 2024-02-28 01:50:51.996 \N Middle without https://example.com/ 4027 441035 440898.440925.441035.441357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7024047710668 0 \N \N f 0 \N 2 244091003 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441378 2024-02-28 01:56:04.076 2024-02-28 02:06:05.272 \N Store special above price general. Drop themselves news number Mr https://example.com/ 15510 440622 440622.441378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3142790585569 0 \N \N f 0 \N 0 30317817 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 441369 2024-02-28 01:48:39.968 2024-02-28 01:58:40.959 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nDescribe modern fund cultural r https://example.com/ 681 441247 441247.441369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1184227814816 0 \N \N f 0 \N 2 80362202 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441364 2024-02-28 01:46:07.849 2024-02-28 01:56:08.638 \N Approach stuff big ahead nothing hotel great https://example.com/ 15408 441357 440898.440925.441035.441357.441364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.179228757148 0 \N \N f 0 \N 0 155412576 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441365 2024-02-28 01:46:17.241 2024-02-28 01:56:18.954 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality pie https://example.com/ 3377 441318 441318.441365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11601961437728 0 \N \N f 0 \N 0 133420759 0 f f \N \N \N \N 441318 \N 0 0 \N \N f \N 441173 2024-02-27 22:36:34.079 2024-02-27 22:46:35.102 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nWe teacher join same push onto. Gas character each when condition https://example.com/ 21103 441043 441043.441173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.135638181525444 0 \N \N f 0 \N 5 38672231 0 f f \N \N \N \N 441043 \N 0 0 \N \N f \N 441368 2024-02-28 01:47:04.075 2024-02-28 01:57:05.257 \N Door visit program account. Feel section behavior kn https://example.com/ 14202 441366 441366.441368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5115665832327 0 \N \N f 0 \N 0 228014660 0 f f \N \N \N \N 441366 \N 0 0 \N \N f \N 441380 2024-02-28 01:57:53.163 2024-02-28 02:07:54.747 \N Science sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card https://example.com/ 19633 441377 441043.441173.441261.441263.441361.441377.441380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.32534058914059 0 \N \N f 0 \N 0 162334085 0 f f \N \N \N \N 441043 \N 0 0 \N \N f \N 442422 2024-02-28 17:05:26.657 2024-02-28 22:18:53.196 Hotel remember de Table fish west wis https://example.com/ 12821 \N 442422 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2387351003697 0 \N \N f 0 \N 0 170310071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441366 2024-02-28 01:46:35.924 2024-02-28 01:56:36.725 Fish environmental factor popular series local. Ready each electio Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nBefore evening her visit bag building grow. Small project car way establish https://example.com/ 20152 \N 441366 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.2108916504056 0 \N \N f 0 \N 1 115612483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441272 2024-02-28 00:13:53.409 2024-02-28 00:23:54.497 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open w https://example.com/ 13365 440422 440422.441272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4298961704329 0 \N \N f 0 \N 3 247928384 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441389 2024-02-28 02:15:00.84 2024-02-28 02:25:03.106 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let p https://example.com/ 10981 440520 440520.441389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.642962426366 0 \N \N f 0 \N 0 496946 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441437 2024-02-28 04:04:29.263 2024-02-28 04:14:30.51 \N Friend growth https://example.com/ 5160 441405 441405.441437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3080343830144 0 \N \N f 0 \N 0 40328666 0 f f \N \N \N \N 441405 \N 0 0 \N \N f \N 441269 2024-02-28 00:10:12.502 2024-02-28 00:20:14.072 \N Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discove https://example.com/ 18154 441108 440911.440922.440926.441108.441269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16320562234483 0 \N \N f 0 \N 0 84491453 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 440898 2024-02-27 18:26:22.606 2024-02-27 18:36:23.822 That very sister attenti Southern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult. https://example.com/ 21239 \N 440898 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3699216075928 0 \N \N f 0 \N 27 35631016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441387 2024-02-28 02:13:19.335 2024-02-28 02:23:20.474 \N Different dog e https://example.com/ 19333 441373 441198.441373.441387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7687532129029 0 \N \N f 0 \N 0 68606379 0 f f \N \N \N \N 441198 \N 0 0 \N \N f \N 441388 2024-02-28 02:14:47.744 2024-02-28 09:05:41.144 \N Career player thing https://example.com/ 14545 441358 441333.441358.441388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5817872009529 0 \N \N f 0 \N 0 51392443 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441400 2024-02-28 02:32:47.206 2024-02-28 02:42:48.958 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. In https://example.com/ 11430 441375 441375.441400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.29449308272276 0 \N \N f 0 \N 2 75629264 0 f f \N \N \N \N 441375 \N 0 0 \N \N f \N 441475 2024-02-28 05:12:07.723 2024-02-28 05:22:09.369 \N Several foll https://example.com/ 17526 440576 440422.440459.440525.440576.441475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7410954617743 0 \N \N f 0 \N 0 158023582 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441160 2024-02-27 22:21:05.509 2024-02-27 22:31:07.002 \N Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite a https://example.com/ 19296 440422 440422.441160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0772165905837 0 \N \N f 0 \N 4 53048793 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441094 2024-02-27 21:06:59.34 2024-02-27 21:17:00.205 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voi https://example.com/ 5752 441087 441087.441094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6950426339214 0 \N \N f 0 \N 0 12880953 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441376 2024-02-28 01:54:53.827 2024-02-28 02:04:54.989 \N Store special above price general. Drop themselves news number Mr early life. Window lo https://example.com/ 20554 440898 440898.441376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2334544105925 0 \N \N f 0 \N 0 209082885 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441336 2024-02-28 01:21:21.207 2024-02-28 01:31:22.633 \N American animal b https://example.com/ 21491 441333 441333.441336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.749047368575 0 \N \N f 0 \N 3 57503865 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 440590 2024-02-27 14:21:25.247 2024-02-27 14:31:26.628 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nScientist our accept million student where bring trade. Someone indeed consumer level increas https://example.com/ 10007 440422 440422.440590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.06960284746356 0 \N \N f 0 \N 0 17861431 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 442119 2024-02-28 15:05:47.311 2024-02-28 15:15:48.392 \N Wind put daughter. https://example.com/ 15890 442111 441968.442111.442119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5054845482607 0 \N \N f 0 \N 2 49349738 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442134 2024-02-28 15:10:04.909 2024-02-28 15:20:06.298 \N Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face https://example.com/ 13327 441961 441514.441640.441653.441733.441961.442134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9486128696847 0 \N \N f 0 \N 6 204420612 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442154 2024-02-28 15:22:16.39 2024-02-28 15:32:18.086 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Pe https://example.com/ 1571 442134 441514.441640.441653.441733.441961.442134.442154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5957694471118 0 \N \N f 0 \N 4 188409321 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441183 2024-02-27 22:43:05.291 2024-02-27 22:53:06.412 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. https://example.com/ 2773 440725 440725.441183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.61691945600118 0 \N \N f 0 \N 1 154979993 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 442526 2024-02-28 18:11:29.947 2024-02-28 18:21:31.791 Because fear practice program husband Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under. https://example.com/ 19848 \N 442526 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.415038259338 0 \N \N f 0 \N 2 209064871 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441363 2024-02-28 01:44:24.754 2024-02-28 01:54:26.275 \N Million significant throw build. Light subject recently very produce room. Machine pare https://example.com/ 9166 440725 440725.441363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70348277972294 0 \N \N f 0 \N 0 33150006 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441381 2024-02-28 01:58:25.296 2024-02-28 02:08:26.513 \N Enough blue provide home alone https://example.com/ 13753 440386 440386.441381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.81085124194281 0 \N \N f 0 \N 0 13068081 0 f f \N \N \N \N 440386 \N 0 0 \N \N f \N 441403 2024-02-28 02:41:34.216 2024-02-28 02:51:35.677 \N Collection friend offer involve partner sense policy election. Decade the within other. Role treat budge https://example.com/ 15243 441333 441333.441403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.63781836202543 0 \N \N f 0 \N 11 241413820 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441416 2024-02-28 03:12:41.986 2024-02-28 03:22:43.565 \N Material focus experien https://example.com/ 1245 441272 440422.441272.441416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1738968952843 0 \N \N f 0 \N 1 125488480 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441424 2024-02-28 03:29:39.866 2024-02-28 03:39:40.745 Environment very h Follow commercial image consider media https://example.com/ 622 \N 441424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5276334097364 0 \N \N f 0 \N 2 240854079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441408 2024-02-28 02:48:55.145 2024-02-28 02:58:56.647 \N Too very admit general whole east. General act https://example.com/ 19267 441404 412443.441404.441408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.16360324615 0 \N \N f 0 \N 1 18180353 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N 441412 2024-02-28 03:04:58.087 2024-02-28 03:14:59.784 Natural Mrs quickly financial. Successful most rule executive foreign east even Boy force agency change score no j https://example.com/ 654 \N 441412 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.9043006232913 0 \N \N f 0 \N 0 36453195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442595 2024-02-28 19:28:41.939 2024-02-28 19:38:43.005 Tell billion now tough chair fi Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call. https://example.com/ 17592 \N 442595 \N \N \N \N \N \N \N \N health \N ACTIVE \N 10.9238486360054 0 \N \N f 0 \N 0 6070409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442644 2024-02-28 20:16:49.212 2024-02-28 20:26:51.526 \N Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportun https://example.com/ 11515 442023 442023.442644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5815833011129 0 \N \N f 0 \N 1 169101682 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442225 2024-02-28 15:45:12.676 2024-02-28 15:55:14.654 \N Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role nat https://example.com/ 21480 442170 442170.442225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4418039341332 0 \N \N f 0 \N 7 44338645 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442241 2024-02-28 15:52:27.58 2024-02-28 16:02:28.54 \N Four learn tell crime. Work maintain probably huge win training. Join dog https://example.com/ 17064 442225 442170.442225.442241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.76967216343963 0 \N \N f 0 \N 1 72664868 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442607 2024-02-28 19:42:21.636 2024-02-28 19:52:22.48 \N Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nBusiness food practice look would full across. Off https://example.com/ 20094 442241 442170.442225.442241.442607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7286984727835 0 \N \N f 0 \N 0 214181859 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442705 2024-02-28 21:06:42.725 2024-02-28 21:16:44.153 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood https://example.com/ 2543 441816 441816.442705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6027552410617 0 \N \N f 0 \N 1 48647482 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 441440 2024-02-28 04:15:05.614 2024-02-28 04:25:07.538 \N Cell https://example.com/ 9378 440942 440725.440872.440942.441440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2644948397433 0 \N \N f 0 \N 2 72248303 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441438 2024-02-28 04:06:51.576 2024-02-28 04:16:52.904 \N Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study l https://example.com/ 20117 441278 440911.441089.441278.441438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5851674290474 0 \N \N f 0 \N 0 6569518 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 441448 2024-02-28 04:23:26.488 2024-02-28 04:33:28.386 \N Morning garden personal tax reduce less. Responsibility quite rise available interest https://example.com/ 20201 441375 441375.441448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3340610463372 0 \N \N f 0 \N 1 65043953 0 f f \N \N \N \N 441375 \N 0 0 \N \N f \N 441421 2024-02-28 03:25:59.517 2024-02-28 03:36:00.826 \N Enough book hope yard store together camera scene. Ago during player fish. Through admit p https://example.com/ 20745 441169 441169.441421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4831176597581 0 \N \N f 0 \N 1 36726009 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441585 2024-02-28 08:39:20.39 2024-02-28 08:49:21.7 \N Best choice m https://example.com/ 4502 441416 440422.441272.441416.441585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6306462886204 0 \N \N f 0 \N 0 201469410 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441434 2024-02-28 04:00:47.187 2024-02-28 04:10:48.34 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our https://example.com/ 19967 440021 439443.440021.441434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0883479365975 0 \N \N f 0 \N 0 104755405 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 440872 2024-02-27 17:54:34.616 2024-02-27 18:04:36.428 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire https://example.com/ 21222 440725 440725.440872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1317188658076 0 \N \N f 0 \N 5 219959901 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440021 2024-02-26 21:56:41.396 2024-02-26 22:06:43.186 \N Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nRange hap https://example.com/ 9796 439443 439443.440021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.171036523999 0 \N \N f 0 \N 1 16100700 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 441214 2024-02-27 23:06:48.305 2024-02-27 23:16:49.859 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood ki https://example.com/ 1389 440989 440989.441214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16272480644587 0 \N \N f 0 \N 1 187041009 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 441453 2024-02-28 04:34:38.366 2024-02-28 04:44:39.478 \N Much wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach https://example.com/ 19459 440663 440663.441453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.755559762970712 0 \N \N f 0 \N 1 223815034 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 439791 2024-02-26 19:20:21.05 2024-02-26 19:30:22.242 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nThere everybody fish can. Exactly office event charge reduce. Bette https://example.com/ 14472 439443 439443.439791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1807879537178 0 \N \N f 0 \N 0 127886362 0 f f \N \N \N \N 439443 \N 0 0 \N \N f \N 441429 2024-02-28 03:47:36.139 2024-02-28 03:57:37.814 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nPlant strong w https://example.com/ 12169 441214 440989.441214.441429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6152991210184 0 \N \N f 0 \N 0 155773849 0 f f \N \N \N \N 440989 \N 0 0 \N \N f \N 441432 2024-02-28 03:57:42.591 2024-02-28 04:07:44.709 \N Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We n https://example.com/ 669 441430 441333.441340.441399.441420.441430.441432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2655588369137 0 \N \N f 0 \N 0 100734078 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441461 2024-02-28 04:45:18.969 2024-02-28 04:55:20.338 \N Why long up fly difficult nature. Age condition practice area worry despite care. A https://example.com/ 5904 441453 440663.441453.441461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.11574864086152 0 \N \N f 0 \N 0 7054405 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 441441 2024-02-28 04:15:22.306 2024-02-28 04:25:24.014 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Soc https://example.com/ 21119 441440 440725.440872.440942.441440.441441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.495545496058 0 \N \N f 0 \N 1 221695792 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441616 2024-02-28 09:43:47.455 2024-02-28 09:53:48.175 \N Remember before box of open. Always region baby actually image again. Good kind tha https://example.com/ 20717 441372 441372.441616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.529596424409 0 \N \N f 0 \N 0 18839721 0 f f \N \N \N \N 441372 \N 0 0 \N \N f \N 441278 2024-02-28 00:18:14.372 2024-02-28 00:28:15.459 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by c https://example.com/ 20964 441089 440911.441089.441278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.35159276517801 0 \N \N f 0 \N 1 40632580 0 f f \N \N \N \N 440911 \N 0 0 \N \N f \N 440321 2024-02-27 08:12:40.122 2024-02-27 08:22:41.571 Cover well feel yes Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff https://example.com/ 621 \N 440321 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 2.63993560641527 0 \N \N f 0 \N 3 23568279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444258 2024-02-29 20:49:36.764 2024-02-29 20:59:44.501 Than level lawyer mouth they Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the https://example.com/ 2338 \N 444258 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 26.6889617734394 0 \N \N f 0 \N 2 14667431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443348 2024-02-29 11:42:50.207 2024-02-29 11:52:51.362 \N Reality deal sort professional try him product. People writer r https://example.com/ 2844 443274 443274.443348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0866309057155 0 \N \N f 0 \N 0 248831577 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443347 2024-02-29 11:42:33.385 2024-02-29 11:52:35.013 \N Small newspaper answer adult morn https://example.com/ 20657 443169 443169.443347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6225124008733 0 \N \N f 0 \N 0 168005408 0 f f \N \N \N \N 443169 \N 0 0 \N \N f \N 443352 2024-02-29 11:44:52.086 2024-02-29 11:54:53.365 \N White seven property least father local. Seat small each after https://example.com/ 19267 442904 442904.443352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0684719175278 0 \N \N f 0 \N 2 112303770 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 441460 2024-02-28 04:43:57.869 2024-02-28 04:53:59.241 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit bab https://example.com/ 16724 441169 441169.441460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7164418240317 0 \N \N f 0 \N 1 217336447 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441465 2024-02-28 04:47:57.659 2024-02-28 04:57:59.155 \N Beyond new strong important. Final sport thus physical situation. Forward who dream art https://example.com/ 18543 441169 441169.441465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2185033040353 0 \N \N f 0 \N 0 239973487 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441462 2024-02-28 04:45:44.171 2024-02-28 04:55:45.685 \N Program want yeah color. D https://example.com/ 20970 441421 441169.441421.441462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3560965848463 0 \N \N f 0 \N 0 208927118 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441442 2024-02-28 04:15:55.873 2024-02-28 04:25:57.306 \N Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certa https://example.com/ 19848 441333 441333.441442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.780069462854023 0 \N \N f 0 \N 3 37083210 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441454 2024-02-28 04:36:37.76 2024-02-28 04:46:39.206 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term l https://example.com/ 21395 441199 441199.441454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.49918903528814 0 \N \N f 0 \N 0 193419739 0 f f \N \N \N \N 441199 \N 0 0 \N \N f \N 441617 2024-02-28 09:43:54.527 2024-02-28 09:53:56.367 \N Surface tr https://example.com/ 10016 441408 412443.441404.441408.441617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8247065625028 0 \N \N f 0 \N 0 85238665 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N 441483 2024-02-28 05:28:48.709 2024-02-28 05:38:49.783 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born https://example.com/ 3683 441169 441169.441483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5056782925896 0 \N \N f 0 \N 1 154671964 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441491 2024-02-28 05:41:03.368 2024-02-28 05:51:04.661 \N Large direction focus detail. When herself wish how po https://example.com/ 19193 441397 441247.441397.441491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4034060344106 0 \N \N f 0 \N 0 243353117 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441476 2024-02-28 05:15:10.124 2024-02-28 05:25:11.18 Side institution practice you. Response herself television. Decide po Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fi https://example.com/ 15103 \N 441476 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.05818794489591 0 \N \N f 0 \N 0 63982946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441244 2024-02-27 23:30:16.27 2024-02-27 23:40:17.062 \N Still power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nHer particular kind sound hard big. Area door model need ph https://example.com/ 17392 441129 440988.441129.441244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7709594287678 0 \N \N f 0 \N 2 235717290 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 440310 2024-02-27 07:54:52.966 2024-02-27 08:04:54.571 \N Enter land brother. Treat prove though. College everything be floor generation into. https://example.com/ 17321 440275 440009.440275.440310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1087594300807 0 \N \N f 0 \N 8 171273135 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 441501 2024-02-28 05:59:04.841 2024-02-28 06:09:06.594 \N Past everybody chance health. https://example.com/ 1745 436611 436611.441501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.95691454451502 0 \N \N f 0 \N 0 31050966 0 f f \N \N \N \N 436611 \N 0 0 \N \N f \N 443760 2024-02-29 16:14:02.489 2024-02-29 16:24:04.182 \N Factor song science administration defense radio. Pa https://example.com/ 15526 443691 441695.441851.441862.441878.443259.443691.443760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.76124101992097 0 \N \N f 0 \N 0 216553554 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 431141 2024-02-19 17:55:05.722 2024-02-19 18:05:07.435 If put nothing put pick future doctor. Push close Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find. https://example.com/ 21600 \N 431141 \N \N \N \N \N \N \N \N security \N ACTIVE \N 14.0977172839471 0 \N \N f 0 \N 0 114634218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441477 2024-02-28 05:17:15.577 2024-02-28 05:27:17.996 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure cand https://example.com/ 3213 441333 441333.441477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1695823595068 0 \N \N f 0 \N 2 233183814 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 440425 2024-02-27 11:00:08.124 2024-02-27 11:10:09.676 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside https://example.com/ 1173 440422 440422.440425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3676093712791 0 \N \N f 0 \N 2 131591386 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441482 2024-02-28 05:26:00.978 2024-02-28 05:36:02.008 Threat successful admit write. Likely first response t Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child bui https://example.com/ 1130 \N 441482 \N \N \N \N \N \N \N \N security \N ACTIVE \N 19.6987733040218 0 \N \N f 0 \N 1 113953908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441481 2024-02-28 05:25:12.046 2024-02-28 05:35:14.125 \N Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common pers https://example.com/ 798 441247 441247.441481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6333120572673 0 \N \N f 0 \N 2 170599603 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441589 2024-02-28 08:46:34.846 2024-02-28 08:56:35.982 \N Manager suffer https://example.com/ 19902 441582 441582.441589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.49728623174713 0 \N \N f 0 \N 0 81257840 0 f f \N \N \N \N 441582 \N 0 0 \N \N f \N 441494 2024-02-28 05:44:25.905 2024-02-28 05:54:28.013 \N Reflect price head six peace company rem https://example.com/ 1273 432909 432909.441494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.594582103931 0 \N \N f 0 \N 0 194893664 0 f f \N \N \N \N 432909 \N 0 0 \N \N f \N 441480 2024-02-28 05:23:32.852 2024-02-28 05:33:33.833 Network authority coach through modern subject. Three Others high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet. https://example.com/ 1692 \N 441480 \N \N \N \N \N \N \N \N news \N ACTIVE \N 2.73007750957927 0 \N \N f 0 \N 1 32270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441495 2024-02-28 05:46:27.679 2024-02-28 05:56:29.608 \N Watch tell middle ab https://example.com/ 20663 429204 429078.429204.441495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2119251076885 0 \N \N f 0 \N 0 16381513 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 442679 2024-02-28 20:40:36.183 2024-02-28 20:50:37.561 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive pro https://example.com/ 19154 442334 442170.442334.442679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79459709235002 0 \N \N f 0 \N 0 211111939 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 441473 2024-02-28 05:03:10.084 2024-02-28 05:13:11.374 Live music official including police after into. May outside up Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside https://example.com/ 21180 \N 441473 \N \N \N \N \N \N \N \N security \N ACTIVE \N 11.7637568065653 0 \N \N f 0 \N 0 87498301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441878 2024-02-28 13:03:22.724 2024-02-28 13:13:25.474 \N Beyond song throw blood hard. Show already get best. Science fly interview red https://example.com/ 9920 441862 441695.441851.441862.441878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21817718302481 0 \N \N f 0 \N 5 123770031 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441549 2024-02-28 07:59:33.818 2024-02-28 08:09:35.163 \N Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nDiscussion sing wear moment organization. Idea check o https://example.com/ 3717 441545 441333.441403.441463.441545.441549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6984333111233 0 \N \N f 0 \N 7 245056532 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 434694 2024-02-22 09:09:59.065 2024-02-22 09:20:00.452 Throughout which address movie agree final. C Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect. https://example.com/ 20642 \N 434694 \N \N \N \N \N \N \N \N security \N ACTIVE \N 29.0149054026186 0 \N \N f 0 \N 0 232262813 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441493 2024-02-28 05:42:48.422 2024-02-28 05:52:49.826 \N General against page door. Attention although https://example.com/ 2347 441247 441247.441493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08945119089911 0 \N \N f 0 \N 2 231519454 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441499 2024-02-28 05:53:36.725 2024-02-28 06:03:38.096 \N Poor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow stre https://example.com/ 2596 441077 441077.441499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2043592180128 0 \N \N f 0 \N 0 239545023 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 437808 2024-02-25 00:48:27.847 2024-02-25 00:58:29.827 Learn international explain range edge early. Entire leg wife like see lead. S Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish https://example.com/ 621 \N 437808 \N \N \N \N \N \N \N \N security \N ACTIVE \N 16.4002226387194 0 \N \N f 0 \N 0 189318308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444391 2024-02-29 23:01:52.387 2024-02-29 23:11:53.558 \N Couple writer life commercial art. Medical bank mind place https://example.com/ 1064 443483 443295.443483.444391 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6906800773272 0 \N \N f 0 \N 0 218270003 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444392 2024-02-29 23:01:58.26 2024-02-29 23:11:59.574 \N For wrong offer a. Image bad should https://example.com/ 16356 444110 444097.444110.444392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6015254588993 0 \N \N f 0 \N 0 239793833 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 443379 2024-02-29 12:18:27.463 2024-02-29 12:28:29.221 \N Ten answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nGet hear chair. Far president effect or say. None itself recent tree rate situation https://example.com/ 11164 443105 443105.443379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7130905112346 0 \N \N f 0 \N 3 49216909 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444409 2024-02-29 23:23:46.088 2024-02-29 23:33:47.488 \N Community least media interest. Senior yet later always. This direct https://example.com/ 837 224260 224260.444409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2637484241939 0 \N \N f 0 \N 0 177588174 0 f f \N \N \N \N 224260 \N 0 0 \N \N f \N 444386 2024-02-29 22:56:54.48 2024-02-29 23:06:55.749 \N Budget agent center morning series int https://example.com/ 19189 443295 443295.444386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70631631909355 0 \N \N f 0 \N 1 107942019 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 441425 2024-02-28 03:33:36.785 2024-02-28 03:43:37.974 Risk past without recognize seri Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope. https://example.com/ 13177 \N 441425 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.8802368796584 0 \N \N f 0 \N 0 31553248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441584 2024-02-28 08:36:32.526 2024-02-28 08:46:33.354 \N After increase change education budget. O https://example.com/ 12566 441577 441333.441403.441463.441545.441549.441559.441562.441577.441584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.22142829158447 0 \N \N f 0 \N 0 90064814 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441439 2024-02-28 04:09:03.86 2024-02-28 04:19:04.782 News half employee read c Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nSource scientist hair https://example.com/ 917 \N 441439 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.1111783824357 0 \N \N f 0 \N 2 198029672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441500 2024-02-28 05:55:22.504 2024-02-28 06:05:23.644 \N Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Var https://example.com/ 880 440472 440472.441500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09040851670621 0 \N \N f 0 \N 0 166880225 0 f f \N \N \N \N 440472 \N 0 0 \N \N f \N 443691 2024-02-29 15:31:40.777 2024-02-29 15:41:42.034 \N Need movie coach nation news in about respon https://example.com/ 21430 443259 441695.441851.441862.441878.443259.443691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5461511130886 0 \N \N f 0 \N 3 64105642 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441083 2024-02-27 20:54:50.38 2024-02-27 21:04:52.123 \N Toward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok c https://example.com/ 21441 440349 440009.440275.440310.440314.440316.440322.440326.440331.440342.440349.441083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.26212707883466 0 \N \N f 0 \N 0 173831810 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 441664 2024-02-28 10:40:48.297 2024-02-28 10:50:50.479 \N Service source fact. Term affect people Congress natural https://example.com/ 14308 441644 441514.441626.441644.441664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3258822570838 0 \N \N f 0 \N 2 163525453 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442664 2024-02-28 20:31:49.311 2024-02-28 20:41:51.261 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receiv https://example.com/ 1394 442163 442163.442664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.665654499173 0 \N \N f 0 \N 2 38040963 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 440966 2024-02-27 19:28:30.434 2024-02-27 19:38:32.513 \N Myself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe https://example.com/ 861 440692 440692.440966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9739598885119 0 \N \N f 0 \N 1 165325318 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440791 2024-02-27 16:49:54.431 2024-02-27 16:59:55.733 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nOwn machine tabl https://example.com/ 8448 440777 440725.440768.440777.440791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9227939525479 0 \N \N f 0 \N 0 105709822 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440765 2024-02-27 16:34:44.935 2024-02-27 16:44:45.873 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region unde https://example.com/ 21138 440725 440725.440765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5878398670705 0 \N \N f 0 \N 0 148037676 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441106 2024-02-27 21:18:01.953 2024-02-27 21:28:03.582 \N Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably https://example.com/ 4167 441087 441087.441106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2824488091032 0 \N \N f 0 \N 0 83408356 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441028 2024-02-27 20:05:43.15 2024-02-27 20:15:44.678 \N Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off form https://example.com/ 651 440725 440725.441028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5922405168228 0 \N \N f 0 \N 0 20348471 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440785 2024-02-27 16:46:20.888 2024-02-27 16:56:22.841 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wron https://example.com/ 1162 440725 440725.440785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1223995207156 0 \N \N f 0 \N 2 144420328 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 439867 2024-02-26 20:12:01.581 2024-02-26 20:22:03.016 \N Door wrong under assume get wear. Full least wrong admi https://example.com/ 11716 439860 439844.439858.439860.439867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.75061303476885 0 \N \N f 0 \N 0 79536948 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440727 2024-02-27 16:09:06.218 2024-02-27 16:19:07.476 Each show pull quite home men Find building number energy itself. Series always thing development author night test. Oil cell result g https://example.com/ 6149 \N 440727 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 9.00427547213219 0 \N \N f 0 \N 8 183442085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440825 2024-02-27 17:15:37.004 2024-02-27 17:25:38.848 \N Enter land brother. Treat prove though. Co https://example.com/ 19531 440725 440725.440825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1651558808496 0 \N \N f 0 \N 0 99585421 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441210 2024-02-27 23:01:57.391 2024-02-27 23:11:58.999 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple https://example.com/ 21148 440132 440132.441210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5508871580981 0 \N \N f 0 \N 0 187941201 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 441149 2024-02-27 22:02:58.495 2024-02-27 22:12:59.906 \N Just condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen d https://example.com/ 9339 441077 441077.441149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0861685339385 0 \N \N f 0 \N 0 132736087 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 443397 2024-02-29 12:34:12.135 2024-02-29 12:44:13.476 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Con https://example.com/ 20573 443288 443288.443397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10387055087448 0 \N \N f 0 \N 0 67548000 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 440651 2024-02-27 15:01:51.344 2024-02-27 15:11:52.975 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system ho https://example.com/ 16052 440612 440520.440533.440556.440612.440651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.57369578501517 0 \N \N f 0 \N 0 247877969 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 440556 2024-02-27 13:47:12.131 2024-02-27 13:57:14.187 \N Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. https://example.com/ 1141 440533 440520.440533.440556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3107953931853 0 \N \N f 0 \N 2 75122471 0 f f \N \N \N \N 440520 \N 0 0 \N \N f \N 441105 2024-02-27 21:17:38.186 2024-02-27 21:27:39.253 \N Water actually point si https://example.com/ 12609 441087 441087.441105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4234685667435 0 \N \N f 0 \N 1 160886490 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441176 2024-02-27 22:38:27.524 2024-02-27 22:48:28.543 Cover well feel yes crime term final. Particularly take Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without spec https://example.com/ 18344 \N 441176 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 14.8592852915363 0 \N \N f 0 \N 10 178164488 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441361 2024-02-28 01:42:57.795 2024-02-28 01:52:59.77 \N Also weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. https://example.com/ 732 441263 441043.441173.441261.441263.441361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2082937908283 0 \N \N f 0 \N 2 27036298 0 f f \N \N \N \N 441043 \N 0 0 \N \N f \N 440182 2024-02-27 02:12:49.577 2024-02-27 02:22:50.946 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference d https://example.com/ 11165 440175 440132.440175.440182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5422938483893 0 \N \N f 0 \N 2 74313316 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 441402 2024-02-28 02:37:32.145 2024-02-28 02:47:33.62 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nDeep some r https://example.com/ 12346 441383 441383.441402 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3445871526762 0 \N \N f 0 \N 1 39701563 0 f f \N \N \N \N 441383 \N 0 0 \N \N f \N 441075 2024-02-27 20:46:16.752 2024-02-27 20:56:18.9 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nMeeting expert body. End store vote across cost piece dinner. Another inc https://example.com/ 16301 440692 440692.441075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9588218601275 0 \N \N f 0 \N 1 121951103 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440274 2024-02-27 06:42:21.811 2024-02-27 06:52:23.348 \N Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nSpeech radio kind know. Can travel though PM deep baby. Boo https://example.com/ 2056 439639 439639.440274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85924115015913 0 \N \N f 0 \N 1 98291643 0 f f \N \N \N \N 439639 \N 0 0 \N \N f \N 439765 2024-02-26 18:58:34.67 2024-02-26 19:08:36.116 \N Idea seem tend attack act common her run. Style there improve point culture current large. https://example.com/ 750 439763 439723.439747.439755.439763.439765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.07651342100998 0 \N \N f 0 \N 2 59396239 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 441599 2024-02-28 09:04:20.746 2024-02-28 09:14:21.993 \N Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especial https://example.com/ 11873 441583 441333.441583.441599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.84254856389069 0 \N \N f 0 \N 0 157585059 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 439763 2024-02-26 18:55:37.219 2024-02-26 19:05:38.952 \N Life foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nNature cell fact health. https://example.com/ 12507 439755 439723.439747.439755.439763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.76289193966355 0 \N \N f 0 \N 3 38917436 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 439755 2024-02-26 18:51:23.698 2024-02-26 19:01:24.805 \N Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low wo https://example.com/ 12049 439747 439723.439747.439755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.41002261328628 0 \N \N f 0 \N 4 223423334 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 440530 2024-02-27 13:16:06.787 2024-02-27 13:26:08.211 \N Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nInternational ground thought computer somebody support industry. Part minute some ac https://example.com/ 7553 440528 440422.440496.440519.440528.440530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.40785870470681 0 \N \N f 0 \N 2 165785997 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 439747 2024-02-26 18:44:15.134 2024-02-26 18:54:16.806 \N Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land anim https://example.com/ 18392 439723 439723.439747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2117317813675 0 \N \N f 0 \N 5 152978425 0 f f \N \N \N \N 439723 \N 0 0 \N \N f \N 439839 2024-02-26 19:53:43.86 2024-02-26 20:03:45.567 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let sa https://example.com/ 21441 439838 439082.439579.439584.439831.439838.439839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2996578840073 0 \N \N f 0 \N 2 185136555 0 f f \N \N \N \N 439082 \N 0 0 \N \N f \N 440640 2024-02-27 14:57:02.586 2024-02-27 15:07:04.441 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store tradition https://example.com/ 18635 439639 439639.440640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5728613929174 0 \N \N f 0 \N 0 93094027 0 f f \N \N \N \N 439639 \N 0 0 \N \N f \N 443311 2024-02-29 11:07:50.802 2024-02-29 11:17:52.184 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current https://example.com/ 21166 443308 443295.443297.443301.443308.443311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8306663175569 0 \N \N f 0 \N 4 244049239 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 440459 2024-02-27 11:22:18.04 2024-02-27 11:32:19.322 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song wh https://example.com/ 7185 440422 440422.440459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90256037168033 0 \N \N f 0 \N 4 143427807 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441088 2024-02-27 20:59:32.922 2024-02-27 21:09:34.291 \N Compare stra https://example.com/ 18423 440954 440875.440953.440954.441088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.11078638747173 0 \N \N f 0 \N 0 61760849 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 440608 2024-02-27 14:34:27.141 2024-02-27 14:44:28.284 Doctor operation because Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nTop however address t https://example.com/ 1577 \N 440608 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 0.896390689503157 0 \N \N f 0 \N 4 149295709 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440726 2024-02-27 16:08:05.461 2024-02-27 16:18:06.415 \N American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. Th https://example.com/ 2774 440608 440608.440726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.34869997664309 0 \N \N f 0 \N 3 140963785 0 f f \N \N \N \N 440608 \N 0 0 \N \N f \N 439854 2024-02-26 20:03:18.166 2024-02-26 20:13:19.692 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up https://example.com/ 676 439844 439844.439854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.75143537011065 0 \N \N f 0 \N 9 134794494 0 f f \N \N \N \N 439844 \N 0 0 \N \N f \N 440179 2024-02-27 02:06:58.892 2024-02-27 02:17:00.067 \N Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nHard same business read realize care. Nature to happen garden. Near show manage each check minu https://example.com/ 9378 440132 440132.440179 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62956748037169 0 \N \N f 0 \N 2 90333023 0 f f \N \N \N \N 440132 \N 0 0 \N \N f \N 440469 2024-02-27 11:34:40.188 2024-02-27 11:44:41.316 \N Such house management. Bed defense remember help sit pull for. Owner democratic d https://example.com/ 3706 440465 440422.440450.440457.440460.440464.440465.440469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82342761610575 0 \N \N f 0 \N 0 139257835 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 440450 2024-02-27 11:15:47.205 2024-02-27 11:25:48.858 \N Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significa https://example.com/ 5069 440422 440422.440450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7819560436812 0 \N \N f 0 \N 5 6158746 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 439638 2024-02-26 17:13:57.726 2024-02-26 17:23:58.824 Author nearly sea similar health race per. However here perso Reach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone gr https://example.com/ 21578 \N 439638 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.02329837408869 0 \N \N f 0 \N 29 242238547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441261 2024-02-28 00:03:02.044 2024-02-28 00:13:03.687 \N Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. https://example.com/ 10728 441173 441043.441173.441261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.963222396145 0 \N \N f 0 \N 4 195816306 0 f f \N \N \N \N 441043 \N 0 0 \N \N f \N 439844 2024-02-26 19:58:29.361 2024-02-26 20:08:30.912 Establish material they meet. Little bag idea region live follow itself. Patt Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean es https://example.com/ 20674 \N 439844 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.0802852599043 0 \N \N f 0 \N 57 178654113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441232 2024-02-27 23:24:05.503 2024-02-27 23:34:06.866 \N Mind treatment nature play. Mr hit security game her https://example.com/ 688 441213 440692.441027.441074.441213.441232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1506394296159 0 \N \N f 0 \N 4 7299083 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 431104 2024-02-19 17:40:21.856 2024-02-19 17:50:23.028 \N Both tell huge fine yet fall c https://example.com/ 8326 413565 413565.431104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32442760132034 0 \N \N f 0 \N 0 235959113 0 f f \N \N \N \N 413565 \N 0 0 \N \N f \N 440056 2024-02-26 22:41:35.196 2024-02-26 22:51:36.744 Economy rest what Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second https://example.com/ 1426 \N 440056 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.45941068627959 0 \N \N f 0 \N 22 166524037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439806 2024-02-26 19:32:47.509 2024-02-26 19:42:48.774 Theory teach dream home past. Population lose establish understa Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nGlass her https://example.com/ 16929 \N 439806 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 0.295587401996684 0 \N \N f 0 \N 9 170183719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440729 2024-02-27 16:10:33.08 2024-02-27 16:20:34.888 Hundred position represent six morning manage s Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert https://example.com/ 19613 \N 440729 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 19.9307469215001 0 \N \N f 0 \N 11 247230996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440798 2024-02-27 16:56:22.558 2024-02-27 17:06:23.841 Summer past television what in. Find gi Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce. https://example.com/ 18640 \N 440798 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.2709542775989 0 \N \N f 0 \N 4 179628531 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440989 2024-02-27 19:45:37.666 2024-02-27 19:55:39.147 Size matter rather result other get air. Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second a https://example.com/ 17014 \N 440989 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.9501405738088 0 \N \N f 0 \N 11 135259381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441141 2024-02-27 21:50:31.095 2024-02-27 22:00:32.39 Board age miss drug sense. Take here somebody cho Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nDetail discussion line around. Art along house keep him. Test peace else iss https://example.com/ 9183 \N 441141 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.72006147028206 0 \N \N f 0 \N 0 204132780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441399 2024-02-28 02:31:20.488 2024-02-28 02:41:21.596 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nHerself the https://example.com/ 1737 441340 441333.441340.441399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0530024330923 0 \N \N f 0 \N 4 56575798 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 440331 2024-02-27 08:36:41.214 2024-02-27 08:46:42.316 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. https://example.com/ 2583 440326 440009.440275.440310.440314.440316.440322.440326.440331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2563228574292 0 \N \N f 0 \N 3 15058457 0 f f \N \N \N \N 440009 \N 0 0 \N \N f \N 440009 2024-02-26 21:48:19.382 2024-02-26 21:58:20.456 Eye million figure now as collection. During report tree public Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove https://example.com/ 7376 \N 440009 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.51936176347831 0 \N \N f 0 \N 10 168910152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 437890 2024-02-25 02:53:01.491 2024-02-25 03:03:02.977 \N Ten instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fe https://example.com/ 1729 437865 437775.437832.437865.437890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78298723691269 0 \N \N f 0 \N 1 16589719 0 f f \N \N \N \N 437775 \N 0 0 \N \N f \N 441504 2024-02-28 06:19:32.276 2024-02-28 06:29:34.123 \N Return bag discover indicate reco https://example.com/ 21562 441405 441405.441504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7057204148863 0 \N \N f 0 \N 0 180187956 0 f f \N \N \N \N 441405 \N 0 0 \N \N f \N 441008 2024-02-27 19:58:06.617 2024-02-27 20:08:07.783 \N Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. https://example.com/ 16653 440985 440985.441008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.495913962141 0 \N \N f 0 \N 1 95695443 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 441174 2024-02-27 22:37:16.907 2024-02-27 22:47:18.472 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nDecision budget https://example.com/ 11621 440988 440988.441174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.890582049088 0 \N \N f 0 \N 4 49667110 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 441034 2024-02-27 20:10:07.075 2024-02-27 20:20:08.548 \N Might also begin husband affect. Chance follow kno https://example.com/ 13198 441008 440985.441008.441034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7966164132719 0 \N \N f 0 \N 0 219626611 0 f f \N \N \N \N 440985 \N 0 0 \N \N f \N 441446 2024-02-28 04:22:22.06 2024-02-28 04:32:23.756 \N Social impact learn single https://example.com/ 13327 440321 440321.441446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3605647002966 0 \N \N f 0 \N 1 148678117 0 f f \N \N \N \N 440321 \N 0 0 \N \N f \N 441411 2024-02-28 03:02:45.507 2024-02-28 03:12:46.873 Five now source affect police. Various Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nIn grow https://example.com/ 1577 \N 441411 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.21897400832968 0 \N \N f 0 \N 2 194610569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441507 2024-02-28 06:28:44.725 2024-02-28 06:38:45.952 \N Down his majority risk worke https://example.com/ 2514 441446 440321.441446.441507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0830795129058 0 \N \N f 0 \N 0 219916250 0 f f \N \N \N \N 440321 \N 0 0 \N \N f \N 441512 2024-02-28 06:58:15.467 2024-02-28 07:08:16.486 \N Election parent through minute sit. Name others benef https://example.com/ 6041 441489 441489.441512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8191158009758 0 \N \N f 0 \N 0 154182180 0 f f \N \N \N \N 441489 \N 0 0 \N \N f \N 441741 2024-02-28 11:24:38.135 2024-02-28 11:34:40.82 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. https://example.com/ 686 441739 441695.441701.441739.441741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0040894459861 0 \N \N f 0 \N 1 230120324 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441901 2024-02-28 13:22:10.995 2024-02-28 13:32:17.239 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nDevelop receive back PM https://example.com/ 15409 441891 441891.441901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5058035275393 0 \N \N f 0 \N 2 189865158 0 f f \N \N \N \N 441891 \N 0 0 \N \N f \N 441511 2024-02-28 06:54:50.834 2024-02-28 07:04:52.877 \N Budget agent center mor https://example.com/ 1051 441502 441238.441496.441502.441511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.57659120094866 0 \N \N f 0 \N 0 235901405 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 441513 2024-02-28 07:04:30.762 2024-02-28 07:14:32.499 \N Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas https://example.com/ 16424 441482 441482.441513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.86402506906154 0 \N \N f 0 \N 0 110550235 0 f f \N \N \N \N 441482 \N 0 0 \N \N f \N 440663 2024-02-27 15:14:53.18 2024-02-27 15:24:54.409 Never money Congress data single trial. Toda Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital fi https://example.com/ 6573 \N 440663 \N \N \N \N \N \N \N \N health \N ACTIVE \N 17.3742044788284 0 \N \N f 0 \N 14 233069629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441517 2024-02-28 07:08:56.259 2024-02-28 07:18:57.362 \N Policy trade before dro https://example.com/ 20267 440799 438936.439563.439744.440044.440268.440713.440799.441517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.81617667169185 0 \N \N f 0 \N 0 191723609 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 441519 2024-02-28 07:09:50.38 2024-02-28 07:19:52.326 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach st https://example.com/ 16289 440713 438936.439563.439744.440044.440268.440713.441519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7046725054364 0 \N \N f 0 \N 0 171084172 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 441524 2024-02-28 07:26:47.055 2024-02-28 07:36:49.248 \N Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. https://example.com/ 8245 441399 441333.441340.441399.441524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1042177239737 0 \N \N f 0 \N 0 70384155 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441520 2024-02-28 07:12:02.916 2024-02-28 07:22:04.868 \N Return agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possibl https://example.com/ 9529 435890 330698.330774.434596.435793.435890.441520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.5316746259927 0 \N \N f 0 \N 1 4273698 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 441341 2024-02-28 01:25:21.775 2024-02-28 01:35:23.029 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nPoor often s https://example.com/ 11378 441333 441333.441341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8014850550654 0 \N \N f 0 \N 6 103215383 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441531 2024-02-28 07:35:48.269 2024-02-28 07:45:49.712 \N Glass her remember exist during. Blue prevent western skill agr https://example.com/ 1512 441528 441333.441442.441528.441531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55055760888707 0 \N \N f 0 \N 0 207172434 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441547 2024-02-28 07:56:51.581 2024-02-28 08:06:52.766 Blood very whom mean technology contain rather. Understand staff heavy fin Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according. https://example.com/ 19690 \N 441547 \N \N \N \N \N \N \N \N news \N ACTIVE \N 7.58130477246169 0 \N \N f 0 \N 0 25959305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441543 2024-02-28 07:52:21.264 2024-02-28 08:02:23.409 \N Job stage use material manage. Perhaps nothing project animal worker despite. Hair https://example.com/ 17226 441396 441333.441396.441543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.915500396318 0 \N \N f 0 \N 0 234442740 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441557 2024-02-28 08:06:57.666 2024-02-28 08:16:59.089 \N Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politic https://example.com/ 7510 441333 441333.441557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3525768361053 0 \N \N f 0 \N 0 22949271 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441555 2024-02-28 08:04:13.028 2024-02-28 08:14:15.35 \N With establish effort able https://example.com/ 19512 441533 441533.441555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2966725251361 0 \N \N f 0 \N 0 117679096 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 441532 2024-02-28 07:39:00.333 2024-02-28 07:49:02.044 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. So https://example.com/ 19535 441477 441333.441477.441532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7873350854343 0 \N \N f 0 \N 1 114230096 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441537 2024-02-28 07:45:15.445 2024-02-28 07:55:18.127 \N Fish health while enjo https://example.com/ 21178 441077 441077.441537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0917724562423 0 \N \N f 0 \N 0 11464066 0 f f \N \N \N \N 441077 \N 0 0 \N \N f \N 441489 2024-02-28 05:38:29.108 2024-02-28 05:48:30.661 Region side point win through. Deep check rather loss world adult. Easy subject Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit https://example.com/ 18543 \N 441489 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.26617955513829 0 \N \N f 0 \N 6 245682332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441558 2024-02-28 08:07:47.164 2024-02-28 08:17:49.884 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper rec https://example.com/ 18262 441526 441333.441341.441455.441457.441467.441526.441558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6657204234828 0 \N \N f 0 \N 0 214198203 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441455 2024-02-28 04:37:03.344 2024-02-28 04:47:05.017 \N Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street st https://example.com/ 19759 441341 441333.441341.441455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7204819457264 0 \N \N f 0 \N 4 111861990 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442714 2024-02-28 21:11:04.098 2024-02-28 21:21:05.32 \N Newspaper as city recognize develop. Poor finally capital remember fi https://example.com/ 12821 441695 441695.442714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6519543617584 0 \N \N f 0 \N 0 75060609 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442715 2024-02-28 21:11:09.609 2024-02-28 21:21:11.415 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region https://example.com/ 12024 442644 442023.442644.442715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3228843211252 0 \N \N f 0 \N 0 228978041 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 441521 2024-02-28 07:16:06.684 2024-02-28 07:26:08.771 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization https://example.com/ 4102 441520 330698.330774.434596.435793.435890.441520.441521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.12531465534662 0 \N \N f 0 \N 0 174641802 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 441522 2024-02-28 07:19:47.633 2024-02-28 07:29:48.661 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nBoy force agency change score no job. Memory stay across social cultu https://example.com/ 21520 441489 441489.441522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6287943602624 0 \N \N f 0 \N 0 179730342 0 f f \N \N \N \N 441489 \N 0 0 \N \N f \N 441467 2024-02-28 04:49:11.326 2024-02-28 04:59:13.075 \N Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Avail https://example.com/ 4292 441457 441333.441341.441455.441457.441467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90263699628797 0 \N \N f 0 \N 2 169422941 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441457 2024-02-28 04:39:59.12 2024-02-28 04:50:00.145 \N Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful https://example.com/ 19118 441455 441333.441341.441455.441457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74251238064618 0 \N \N f 0 \N 3 193135386 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441528 2024-02-28 07:32:52.061 2024-02-28 07:42:53.243 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. https://example.com/ 1047 441442 441333.441442.441528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3760806788295 0 \N \N f 0 \N 1 97708118 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441562 2024-02-28 08:13:04.866 2024-02-28 08:23:05.917 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memor https://example.com/ 1705 441559 441333.441403.441463.441545.441549.441559.441562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.15532364132707 0 \N \N f 0 \N 4 234172516 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441565 2024-02-28 08:16:04.384 2024-02-28 08:26:05.451 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer https://example.com/ 19689 441545 441333.441403.441463.441545.441565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.327210472529 0 \N \N f 0 \N 0 178790097 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441554 2024-02-28 08:01:47.152 2024-02-28 08:11:49.342 Work suddenly pick. Interest Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nShe loss lawyer raise without right property. For her mys https://example.com/ 1433 \N 441554 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 23.1943965317561 0 \N \N f 0 \N 0 175242723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441372 2024-02-28 01:52:00.977 2024-02-28 02:02:01.909 Most which usually increase event Young nothing just. Spring play ok region much. Trial single https://example.com/ 9816 \N 441372 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.19784309126785 0 \N \N f 0 \N 5 108008962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441630 2024-02-28 09:54:00.228 2024-02-28 10:04:01.908 \N Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nIncrease bring card. Figure important direction must civil indeed. Law https://example.com/ 19732 441629 441629.441630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2923156820383 0 \N \N f 0 \N 0 33564145 0 f f \N \N \N \N 441629 \N 0 0 \N \N f \N 440292 2024-02-27 07:22:10.698 2024-02-27 07:32:11.519 Young nothing just. Spring pl Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nSupport line change go must do. Small audience beautiful whether a https://example.com/ 7827 \N 440292 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 0.241957742872536 0 \N \N f 0 \N 1 237543251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441580 2024-02-28 08:32:05.581 2024-02-28 08:42:07.253 \N Tend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug https://example.com/ 13204 441489 441489.441580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2437119793427 0 \N \N f 0 \N 0 12910761 0 f f \N \N \N \N 441489 \N 0 0 \N \N f \N 441590 2024-02-28 08:48:10.494 2024-02-28 08:58:11.389 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street t https://example.com/ 17316 420164 420164.441590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.281614000511 0 \N \N f 0 \N 0 38058316 0 f f \N \N \N \N 420164 \N 0 0 \N \N f \N 441572 2024-02-28 08:25:08.602 2024-02-28 08:35:10.256 Remember statement trip m College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV diff https://example.com/ 21562 \N 441572 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 26.322069437505 0 \N \N f 0 \N 1 194082663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441600 2024-02-28 09:04:22.726 2024-02-28 09:14:23.895 Hard same business read realize care. Nature to happen garden. Near show mana History prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our. https://example.com/ 6602 \N 441600 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6214575076776 0 \N \N f 0 \N 4 121571212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441157 2024-02-27 22:15:51.121 2024-02-27 22:25:52.488 \N Check worry radio fine stuff. Lead least https://example.com/ 711 441035 440898.440925.441035.441157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3132371662752 0 \N \N f 0 \N 0 190521155 0 f f \N \N \N \N 440898 \N 0 0 \N \N f \N 441591 2024-02-28 08:48:58.867 2024-02-28 08:59:00.191 \N Any new necessary low. Option win do a https://example.com/ 20979 441577 441333.441403.441463.441545.441549.441559.441562.441577.441591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1123854176244 0 \N \N f 0 \N 0 158932836 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441588 2024-02-28 08:46:11.757 2024-02-28 08:56:13.625 Per seat key down rela Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same ord https://example.com/ 701 \N 441588 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 12.7900601039821 0 \N \N f 0 \N 0 204703269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441582 2024-02-28 08:34:50.986 2024-02-28 08:44:52.187 Affect key her. Development create daughter role enough. Instead educatio Then voice gun. Might beautiful recognize artist. Week customer rather won https://example.com/ 1046 \N 441582 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 7.65182084780381 0 \N \N f 0 \N 1 145588310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441593 2024-02-28 08:53:54.049 2024-02-28 09:03:55.71 Mrs when number place under moment. Own includ Deep government cold west. Act computer vot https://example.com/ 2681 \N 441593 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8260848731115 0 \N \N f 0 \N 2 156603946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442027 2024-02-28 14:24:00.227 2024-02-28 14:34:02.08 \N Parent always at par https://example.com/ 18119 442011 441843.441959.442011.442027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45634412330366 0 \N \N f 0 \N 0 193244576 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441642 2024-02-28 10:20:58.051 2024-02-28 10:31:00.427 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song throu https://example.com/ 20479 441441 440725.440872.440942.441440.441441.441642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.80221275966328 0 \N \N f 0 \N 0 15841211 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441407 2024-02-28 02:47:21.736 2024-02-28 02:57:23.301 \N Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nExist near ago home. Continue compare genera https://example.com/ 21140 441372 441372.441407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79572360774689 0 \N \N f 0 \N 2 48552797 0 f f \N \N \N \N 441372 \N 0 0 \N \N f \N 441781 2024-02-28 11:50:25.49 2024-02-28 12:00:27.097 \N Film beautiful large international mother https://example.com/ 8326 441779 440587.440629.441187.441779.441781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.21928184649 0 \N \N f 0 \N 0 91563820 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441563 2024-02-28 08:13:14.005 2024-02-28 08:23:15.553 Same listen suggest five Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate. https://example.com/ 9969 \N 441563 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 23.7673912807156 0 \N \N f 0 \N 0 8234554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441605 2024-02-28 09:12:00.372 2024-02-28 09:22:01.805 \N Off should democrati https://example.com/ 9171 441405 441405.441605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3314659373203 0 \N \N f 0 \N 0 160746676 0 f f \N \N \N \N 441405 \N 0 0 \N \N f \N 441618 2024-02-28 09:44:25.604 2024-02-28 09:54:28.172 \N Question produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present https://example.com/ 12334 441193 441169.441193.441618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.81427733473915 0 \N \N f 0 \N 0 1986652 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441606 2024-02-28 09:14:22.551 2024-02-28 09:24:23.866 \N Science sea sport term page near. Agr https://example.com/ 19096 441592 441533.441567.441573.441592.441606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.56704598452556 0 \N \N f 0 \N 0 186104786 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 440521 2024-02-27 12:56:36.002 2024-02-27 13:06:37.631 That field beautiful American when. Simply quality which media. Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nThousand billion get leg now sort even. Growth much number some https://example.com/ 11515 \N 440521 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 18.1001140469753 0 \N \N f 0 \N 4 10209182 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441594 2024-02-28 08:56:25.278 2024-02-28 09:06:28.119 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry https://example.com/ 1729 441568 440729.441304.441568.441594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02922791226643 0 \N \N f 0 \N 0 12437459 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 440520 2024-02-27 12:49:52.255 2024-02-27 12:59:53.566 Area just subject pretty. Three employe Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. https://example.com/ 1723 \N 440520 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 11.6882105878721 0 \N \N f 0 \N 25 123807399 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440394 2024-02-27 10:15:23.653 2024-02-27 10:25:24.918 Blood coach citizen choice defense. Soun Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearl https://example.com/ 19435 \N 440394 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.5849705597801 0 \N \N f 0 \N 2 201079572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441598 2024-02-28 09:03:55.941 2024-02-28 09:13:57.699 \N Human since term seek. Eas https://example.com/ 21344 441424 441424.441598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.03643008424262 0 \N \N f 0 \N 0 73883295 0 f f \N \N \N \N 441424 \N 0 0 \N \N f \N 441318 2024-02-28 01:01:49.955 2024-02-28 01:11:51.187 Serve deep station probably writer. Perform back protect energy. Internat Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nAvoid avoid forward. Speech suffer level already ar https://example.com/ 7659 \N 441318 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 6.77541403647606 0 \N \N f 0 \N 3 146974324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441609 2024-02-28 09:21:51.771 2024-02-28 09:31:54.21 \N View especially nation nor thi https://example.com/ 13143 441498 441479.441498.441609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.99584911490747 0 \N \N f 0 \N 0 60178270 0 f f \N \N \N \N 441479 \N 0 0 \N \N f \N 440985 2024-02-27 19:44:30.706 2024-02-27 19:54:32.276 Take carry discuss possible. Little News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything f https://example.com/ 10484 \N 440985 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.5225653810019 0 \N \N f 0 \N 8 2612549 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441304 2024-02-28 00:45:59.928 2024-02-28 00:56:01.031 \N Popular rest cer https://example.com/ 5160 440729 440729.441304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.36699781372741 0 \N \N f 0 \N 2 107380592 0 f f \N \N \N \N 440729 \N 0 0 \N \N f \N 441607 2024-02-28 09:17:29.159 2024-02-28 09:27:30.501 Win nothing research song data. Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreeme https://example.com/ 2780 \N 441607 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.5617130991199 0 \N \N f 0 \N 0 51898633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440797 2024-02-27 16:55:56.675 2024-02-27 17:05:57.887 Say this find practice. Small exactly explain from born draw. Stop arrive sid Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nThink month catch free. Tree involve https://example.com/ 717 \N 440797 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 23.2889529074872 0 \N \N f 0 \N 6 165219063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442682 2024-02-28 20:42:09.551 2024-02-28 20:52:11.514 \N Though or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nSupport line change go must do. Small audience beautiful whether art. Draw worry sho https://example.com/ 3461 442632 442632.442682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0174707025708 0 \N \N f 0 \N 0 89038368 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 439770 2024-02-26 19:00:50.266 2024-02-26 19:10:51.921 Director far fact order bit collection. Ok prove thou Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space. https://example.com/ 1512 \N 439770 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 20.3049338608345 0 \N \N f 0 \N 0 16521215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441658 2024-02-28 10:32:45.891 2024-02-28 10:42:48.696 \N Debate property life amount writer. https://example.com/ 18321 440725 440725.441658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7327779084237 0 \N \N f 0 \N 0 161689417 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441515 2024-02-28 07:06:34.485 2024-02-28 07:16:36.485 \N That very sister attention myself out bit. Want father president same future send important. Moth https://example.com/ 2832 441514 441514.441515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.28009917353167 0 \N \N f 0 \N 2 31935629 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441042 2024-02-27 20:12:50.619 2024-02-27 20:22:51.907 \N Game own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce n https://example.com/ 8916 440551 440422.440551.441042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.35369593527601 0 \N \N f 0 \N 0 65149906 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441509 2024-02-28 06:45:58.939 2024-02-28 06:56:00.582 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nInvolve morning someone them Congress keep rule. Order price condition get https://example.com/ 18679 441411 441411.441509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1879190372976 0 \N \N f 0 \N 0 46959347 0 f f \N \N \N \N 441411 \N 0 0 \N \N f \N 441479 2024-02-28 05:23:04.931 2024-02-28 05:33:06.214 Side rather law learn. Continue executive there garde Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Sugg https://example.com/ 14669 \N 441479 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.8293311444764 0 \N \N f 0 \N 2 211224688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441498 2024-02-28 05:53:23.343 2024-02-28 06:03:24.783 \N Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nRece https://example.com/ 20973 441479 441479.441498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8303699969372 0 \N \N f 0 \N 1 19419815 0 f f \N \N \N \N 441479 \N 0 0 \N \N f \N 440472 2024-02-27 11:37:37.857 2024-02-27 11:47:38.688 Medical view similar along sense sit piece. Onto at read. Close Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Rea https://example.com/ 5775 \N 440472 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 7.24707143643705 0 \N \N f 0 \N 6 161629005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441621 2024-02-28 09:45:46.973 2024-02-28 09:55:47.906 \N Question produce break listen toward choice. Beco https://example.com/ 12959 441611 441611.441621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.87907760268971 0 \N \N f 0 \N 0 170064912 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N 441620 2024-02-28 09:45:46.417 2024-02-28 09:55:47.907 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these https://example.com/ 20208 441560 441560.441620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6388125499722 0 \N \N f 0 \N 0 137687055 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441662 2024-02-28 10:38:47.421 2024-02-28 10:48:48.391 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Real https://example.com/ 5557 441640 441514.441640.441662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.78832716021661 0 \N \N f 0 \N 0 200194139 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441613 2024-02-28 09:36:32.977 2024-02-28 09:46:34.3 Role before girl wond Life foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about. https://example.com/ 629 \N 441613 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 4.68773018890676 0 \N \N f 0 \N 0 17535611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441602 2024-02-28 09:07:33.061 2024-02-28 09:17:34.431 Area series street exist cold reflect thought. Imagine else activity probably an Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I. https://example.com/ 20502 \N 441602 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 6.90593936644177 0 \N \N f 0 \N 1 95475958 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441612 2024-02-28 09:31:52.156 2024-02-28 09:41:53.976 \N Apply president organization risk https://example.com/ 12158 441596 441596.441612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.68515555013195 0 \N \N f 0 \N 0 106468976 0 f f \N \N \N \N 441596 \N 0 0 \N \N f \N 441710 2024-02-28 11:04:19.162 2024-02-28 11:14:20.782 \N Southern wear age then chair. Sign https://example.com/ 3360 441695 441695.441710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6459909724673 0 \N \N f 0 \N 0 150106533 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 438737 2024-02-25 23:28:41.504 2024-02-25 23:38:43.585 Together tree bar tonight. Safe admit knowledge high pay miss picture. Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand https://example.com/ 21527 \N 438737 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.4601466438512 0 \N \N f 0 \N 37 178646461 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441629 2024-02-28 09:53:37.814 2024-02-28 10:03:40.323 Third would fire inter Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass. https://example.com/ 641 \N 441629 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 8.41961677289945 0 \N \N f 0 \N 1 138509361 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441622 2024-02-28 09:45:54.617 2024-02-28 09:55:55.948 \N Store special above price general. Drop https://example.com/ 9418 441338 441169.441338.441622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83707207424049 0 \N \N f 0 \N 0 79815061 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441619 2024-02-28 09:45:21.81 2024-02-28 09:55:23.869 \N Today area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want https://example.com/ 19759 441460 441169.441460.441619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7109875191181 0 \N \N f 0 \N 0 106234756 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441627 2024-02-28 09:51:50.852 2024-02-28 10:01:52.025 Role number law science. Sing fight use d Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their a https://example.com/ 19030 \N 441627 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 16.5608328093139 0 \N \N f 0 \N 1 186253952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441634 2024-02-28 10:01:30.645 2024-02-28 10:11:32.187 \N Direction f https://example.com/ 5455 441333 441333.441634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2331462784274 0 \N \N f 0 \N 0 192941442 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441544 2024-02-28 07:55:11.607 2024-02-28 08:05:13.545 Beyond new strong important. Final sp Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest. https://example.com/ 9906 \N 441544 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9185239918118 0 \N \N f 0 \N 0 216606913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441655 2024-02-28 10:27:33.112 2024-02-28 10:37:34.22 \N Describe radio value until fund sit behind. Mrs exist important special those. Wh https://example.com/ 20802 441529 441514.441529.441655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.94627610582438 0 \N \N f 0 \N 0 219289170 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 443259 2024-02-29 10:10:55.582 2024-02-29 10:20:57.265 \N After way challenge. Nothing pro https://example.com/ 10771 441878 441695.441851.441862.441878.443259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.30628627958693 0 \N \N f 0 \N 4 240666370 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441640 2024-02-28 10:19:21.397 2024-02-28 10:29:22.892 \N Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There press https://example.com/ 1673 441514 441514.441640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.49100294700283 0 \N \N f 0 \N 11 197000906 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441539 2024-02-28 07:47:47.649 2024-02-28 07:57:48.938 \N Determine magazine police agent billion. Head great exist. Against par https://example.com/ 9820 441169 441169.441539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0932604028442 0 \N \N f 0 \N 0 66480095 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 443779 2024-02-29 16:23:05.444 2024-02-29 16:33:06.589 \N Near key among effort cover century support author. Station trial serve certain become image goa https://example.com/ 650 443776 443577.443651.443711.443715.443731.443757.443772.443776.443779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8625898657239 0 \N \N f 0 \N 1 241715281 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443762 2024-02-29 16:15:15.974 2024-02-29 16:25:16.876 \N Treat central body toward. Cell throu https://example.com/ 6149 443746 441695.441851.441862.441878.443259.443691.443746.443762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.25433261288151 0 \N \N f 0 \N 0 64722611 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441570 2024-02-28 08:23:44.831 2024-02-28 08:33:46.358 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major https://example.com/ 21157 441560 441560.441570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.54707447261835 0 \N \N f 0 \N 0 79292497 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441995 2024-02-28 14:10:03.682 2024-02-28 14:20:06.137 \N Anyone himself set window report. Sho https://example.com/ 20143 441974 440725.441974.441995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87372893630329 0 \N \N f 0 \N 0 3249996 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441611 2024-02-28 09:28:32.389 2024-02-28 09:38:33.987 Live class artist pull nearly poor. Use vote r Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nWork suddenly https://example.com/ 20187 \N 441611 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 3.79308793692871 0 \N \N f 0 \N 6 153244006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441635 2024-02-28 10:04:39.217 2024-02-28 10:14:40.351 \N Very yes customer public music example expert. Fear would much. Necessary leader home s https://example.com/ 894 440891 440891.441635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24284071715154 0 \N \N f 0 \N 0 42596412 0 f f \N \N \N \N 440891 \N 0 0 \N \N f \N 442028 2024-02-28 14:24:42.544 2024-02-28 14:34:44.065 \N Everything she discuss gun somebody. Take adult story full. Yourself drive mov https://example.com/ 3709 442019 441815.442019.442028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28632176115151 0 \N \N f 0 \N 0 81513432 0 f f \N \N \N \N 441815 \N 0 0 \N \N f \N 442026 2024-02-28 14:23:29.011 2024-02-28 14:33:30.296 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nGame ma https://example.com/ 9529 442007 441967.442007.442026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5043813445971 0 \N \N f 0 \N 1 71189817 0 f f \N \N \N \N 441967 \N 0 0 \N \N f \N 441974 2024-02-28 14:00:48.6 2024-02-28 14:10:49.995 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose https://example.com/ 20306 440725 440725.441974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2132025974303 0 \N \N f 0 \N 1 217164589 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441409 2024-02-28 02:55:29.202 2024-02-28 03:05:30.695 Finally and may second. Middle want artist technology woman Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Mem https://example.com/ 9985 \N 441409 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 20.5378509354294 0 \N \N f 0 \N 0 71003770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441650 2024-02-28 10:24:37.56 2024-02-28 10:34:38.535 \N Ma https://example.com/ 2000 441641 441611.441641.441650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02061415649858 0 \N \N f 0 \N 0 245347746 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N 441646 2024-02-28 10:22:27.874 2024-02-28 10:32:30.618 Bring rich describe watch head posi Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. https://example.com/ 21472 \N 441646 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.89894935319825 0 \N \N f 0 \N 0 176194062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441706 2024-02-28 11:03:16.353 2024-02-28 11:13:18.224 \N Play single finally social almost serious. Catch better education on https://example.com/ 760 441063 441022.441063.441706 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6055804984809 0 \N \N f 0 \N 0 160050353 0 f f \N \N \N \N 441022 \N 0 0 \N \N f \N 441676 2024-02-28 10:48:16.493 2024-02-28 10:58:18.537 \N Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political https://example.com/ 9796 441614 441533.441614.441676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.38598285970865 0 \N \N f 0 \N 2 151353676 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 441628 2024-02-28 09:53:11.28 2024-02-28 10:03:12.622 \N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech https://example.com/ 836 441626 441514.441626.441628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6395770746908 0 \N \N f 0 \N 1 48709444 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441654 2024-02-28 10:27:14.021 2024-02-28 10:37:15.891 \N Stand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. https://example.com/ 21104 441652 441514.441652.441654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9443907753722 0 \N \N f 0 \N 1 117583716 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 440495 2024-02-27 12:12:28.425 2024-02-27 12:22:29.486 Pick fight simple up whose nat Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nAdministration effort live any between particular friend. Raise thank later bar https://example.com/ 18357 \N 440495 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 28.7372234803781 0 \N \N f 0 \N 5 159075086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441643 2024-02-28 10:21:18.907 2024-02-28 10:31:20.427 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effe https://example.com/ 7558 441628 441514.441626.441628.441643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.278350337188 0 \N \N f 0 \N 0 162157815 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441666 2024-02-28 10:43:20.371 2024-02-28 10:53:22.605 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call clas https://example.com/ 5661 441439 441439.441666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3528844270856 0 \N \N f 0 \N 0 48085088 0 f f \N \N \N \N 441439 \N 0 0 \N \N f \N 441673 2024-02-28 10:46:37.669 2024-02-28 10:56:38.954 \N Techn https://example.com/ 20655 441670 441611.441641.441667.441670.441673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74811068357364 0 \N \N f 0 \N 0 229921576 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N 441746 2024-02-28 11:27:34.151 2024-02-28 11:37:36.834 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone hi https://example.com/ 18842 441660 441660.441746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.877019326507 0 \N \N f 0 \N 1 76878550 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 440603 2024-02-27 14:29:28.783 2024-02-27 14:39:30.52 \N Act lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nArtist fly billion same. Go may avoid exactly si https://example.com/ 5449 440527 440527.440603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9729127278476 0 \N \N f 0 \N 4 144193709 0 f f \N \N \N \N 440527 \N 0 0 \N \N f \N 441696 2024-02-28 11:00:04.619 2024-02-28 11:10:06.819 Remember statement trip much improve body. House reduce shoulder paper i \N https://example.com/ 15148 \N 441696 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.5047883213311 0 \N \N f 0 \N 1 48219062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441431 2024-02-28 03:52:38.401 2024-02-28 04:02:40.391 \N Water wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land o https://example.com/ 19199 440523 440422.440523.441431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.57698955560734 0 \N \N f 0 \N 0 39596885 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 441663 2024-02-28 10:40:29.676 2024-02-28 10:50:31.084 \N Book ok power church man https://example.com/ 673 441071 440495.441071.441663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1215324830643 0 \N \N f 0 \N 0 202180389 0 f f \N \N \N \N 440495 \N 0 0 \N \N f \N 440503 2024-02-27 12:21:59.956 2024-02-27 12:32:01.133 \N After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nProfessional remain report involve eye outs https://example.com/ 19810 440495 440495.440503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5470148570433 0 \N \N f 0 \N 2 87654227 0 f f \N \N \N \N 440495 \N 0 0 \N \N f \N 441641 2024-02-28 10:19:21.767 2024-02-28 10:29:24.074 \N Standard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nStory meeting hotel o https://example.com/ 6688 441611 441611.441641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.754798026291432 0 \N \N f 0 \N 4 163997528 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N 440713 2024-02-27 15:56:19.272 2024-02-27 16:06:20.59 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civi https://example.com/ 8796 440268 438936.439563.439744.440044.440268.440713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0395577016188 0 \N \N f 0 \N 3 62465520 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 441623 2024-02-28 09:46:25.271 2024-02-28 09:56:26.617 \N Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add tradit https://example.com/ 21332 441333 441333.441623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0760492211941 0 \N \N f 0 \N 0 94772779 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441667 2024-02-28 10:43:40.227 2024-02-28 10:53:41.998 \N Thank rule physical https://example.com/ 678 441641 441611.441641.441667 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1192784435902 0 \N \N f 0 \N 2 237478136 0 f f \N \N \N \N 441611 \N 0 0 \N \N f \N 441727 2024-02-28 11:14:00.214 2024-02-28 11:24:02.789 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment. https://example.com/ 16724 441724 441724.441727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3651003493215 0 \N \N f 0 \N 0 10042953 0 f f \N \N \N \N 441724 \N 0 0 \N \N f \N 441724 2024-02-28 11:13:03.21 2024-02-28 11:23:04.908 Them debate main bad. Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside. https://example.com/ 14663 \N 441724 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 4.92300799299958 0 \N \N f 0 \N 1 217561732 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441694 2024-02-28 10:59:38.88 2024-02-28 11:09:41.146 Should doctor pressure maybe six f Possible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message. https://example.com/ 1454 \N 441694 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2217157647906 0 \N \N f 0 \N 0 233996342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441422 2024-02-28 03:28:09.369 2024-02-28 03:38:10.991 Last compare sim Name everyone employee visit wonder serious. Everything n https://example.com/ 681 \N 441422 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 7.61506182759529 0 \N \N f 0 \N 0 206913977 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441682 2024-02-28 10:54:30.753 2024-02-28 11:04:32.368 \N Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nMiddle without school budget car Mrs paper. Sing seem list https://example.com/ 20340 441367 441247.441274.441367.441682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.04520523241978 0 \N \N f 0 \N 0 41752364 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441692 2024-02-28 10:59:26.545 2024-02-28 11:09:28.857 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military co https://example.com/ 7510 441451 441247.441451.441692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8573697826138 0 \N \N f 0 \N 1 57880389 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441734 2024-02-28 11:19:26.712 2024-02-28 11:29:28.164 \N R https://example.com/ 19583 441728 441637.441639.441728.441734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7297020891632 0 \N \N f 0 \N 0 44034899 0 f f \N \N \N \N 441637 \N 0 0 \N \N f \N 441739 2024-02-28 11:22:45.661 2024-02-28 11:32:46.784 \N Pick fight simple up whose national fa https://example.com/ 14489 441701 441695.441701.441739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58483792146077 0 \N \N f 0 \N 2 130427044 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441713 2024-02-28 11:05:32.074 2024-02-28 11:15:34.309 \N Tend yes https://example.com/ 12278 441553 441553.441713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9517394561606 0 \N \N f 0 \N 1 225890739 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N 441345 2024-02-28 01:27:13.498 2024-02-28 01:37:15.219 \N Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. N https://example.com/ 20778 441274 441247.441274.441345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2675968656037 0 \N \N f 0 \N 2 5727494 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441410 2024-02-28 03:02:39.154 2024-02-28 03:12:41.037 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get cour https://example.com/ 15938 441247 441247.441410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.70905909638353 0 \N \N f 0 \N 0 106545591 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441693 2024-02-28 10:59:26.972 2024-02-28 11:09:28.856 \N Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nThank rule p https://example.com/ 695 441681 440587.440629.441187.441579.441668.441674.441678.441679.441680.441681.441693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8305827628903 0 \N \N f 0 \N 0 94968731 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441703 2024-02-28 11:01:51.961 2024-02-28 11:11:54.316 \N Community region she TV since sometimes know. Small water want sam https://example.com/ 20514 441362 441247.441362.441703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.38758022278596 0 \N \N f 0 \N 1 138977916 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441719 2024-02-28 11:09:57.59 2024-02-28 11:19:58.805 \N Future next exist girl prevent. Another song news science prac https://example.com/ 19557 441695 441695.441719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7978689474959 0 \N \N f 0 \N 12 237235703 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441362 2024-02-28 01:44:14.046 2024-02-28 01:54:15.361 \N Already real me back ahead especially drug late. Doctor my r https://example.com/ 21603 441247 441247.441362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3287240361462 0 \N \N f 0 \N 2 55287217 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441251 2024-02-27 23:43:29.647 2024-02-27 23:53:30.666 Type door clear l Small concern peace on far either. Service clear movie decision follow family whatever. Give compare https://example.com/ 963 \N 441251 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 5.70028647088289 0 \N \N f 0 \N 0 22393201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441603 2024-02-28 09:09:12.407 2024-02-28 09:19:13.767 \N Gas evening morning do of. Development executive like short physica https://example.com/ 18454 441596 441596.441603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0574743311293 0 \N \N f 0 \N 0 92650370 0 f f \N \N \N \N 441596 \N 0 0 \N \N f \N 442009 2024-02-28 14:15:06.976 2024-02-28 14:25:08.24 \N Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though https://example.com/ 11220 441993 441695.441719.441986.441993.442009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52010168197663 0 \N \N f 0 \N 0 217590923 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441596 2024-02-28 09:00:47.953 2024-02-28 09:10:50.192 Total necessary thought task capital Want fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also. https://example.com/ 18040 \N 441596 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9819015101523 0 \N \N f 0 \N 2 12052633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441726 2024-02-28 11:13:48.229 2024-02-28 11:23:50.572 \N Them reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. D https://example.com/ 4074 441338 441169.441338.441726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7740604832081 0 \N \N f 0 \N 0 208650169 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441748 2024-02-28 11:29:43.716 2024-02-28 11:39:44.615 Toward position themselves news unit. Manage go century budget light issue Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action C https://example.com/ 5776 \N 441748 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.0833994517935 0 \N \N f 0 \N 0 47520176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441732 2024-02-28 11:18:23.206 2024-02-28 11:28:25.033 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nScience sea sport term page near. Agreement forg https://example.com/ 7125 441274 441247.441274.441732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7769018162131 0 \N \N f 0 \N 0 122962598 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 435925 2024-02-23 07:44:10.287 2024-02-23 07:54:11.555 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Nu https://example.com/ 2757 435920 435657.435728.435920.435925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.581292195046501 0 \N \N f 0 \N 5 48329570 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 441742 2024-02-28 11:25:25.898 2024-02-28 11:35:27.553 Four learn tell crime. Work maintain Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medi https://example.com/ 12930 \N 441742 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 14.9721990353504 0 \N \N f 0 \N 4 187996003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435657 2024-02-22 23:27:40.938 2024-02-22 23:37:42.411 Exist near ago home. Continue Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address nationa https://example.com/ 19094 \N 435657 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.9851366584174 0 \N \N f 0 \N 22 234243894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441731 2024-02-28 11:16:24.996 2024-02-28 11:26:26.91 \N Small concern peace on far https://example.com/ 2735 436313 435657.435728.435920.435925.436157.436306.436313.441731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2556154861881 0 \N \N f 0 \N 0 241093467 0 f f \N \N \N \N 435657 \N 0 0 \N \N f \N 441743 2024-02-28 11:25:52.555 2024-02-28 11:35:54.39 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music al https://example.com/ 714 441560 441560.441743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.30643805039117 0 \N \N f 0 \N 0 192716916 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441715 2024-02-28 11:08:25.964 2024-02-28 11:18:29.049 Key group certainly little spring. Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nMaterial arm interest draw production. Develop play consider chair. Pick a https://example.com/ 954 \N 441715 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.5831332849602 0 \N \N f 0 \N 1 8973868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441763 2024-02-28 11:36:22.318 2024-02-28 11:46:24.633 Establish material they meet. Little bag idea region live follow its Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per. https://example.com/ 4166 \N 441763 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5294751195821 0 \N \N f 0 \N 0 5876241 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441753 2024-02-28 11:31:59.415 2024-02-28 11:42:00.504 Thing type great Mr. Choos Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age mom https://example.com/ 21466 \N 441753 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.74263616975 0 \N \N f 0 \N 3 212791420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441999 2024-02-28 14:11:09.034 2024-02-28 14:21:10.243 \N Book it view shou https://example.com/ 18772 441921 441921.441999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47119628125456 0 \N \N f 0 \N 1 49012742 0 f f \N \N \N \N 441921 \N 0 0 \N \N f \N 441718 2024-02-28 11:09:56.221 2024-02-28 11:19:58.804 Begin kind newspaper game process fine democratic whom. Wonder heavy curren If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity. https://example.com/ 802 \N 441718 \N \N \N \N \N \N \N \N history \N ACTIVE \N 0.971767314162015 0 \N \N f 0 \N 1 52303084 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441768 2024-02-28 11:40:15.68 2024-02-28 11:50:16.893 \N Rule focu https://example.com/ 2722 441761 441761.441768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2990472545122 0 \N \N f 0 \N 0 151398727 0 f f \N \N \N \N 441761 \N 0 0 \N \N f \N 441766 2024-02-28 11:38:16.736 2024-02-28 11:48:18.899 \N Pretty street rather speak unit against keep. Else sure pa https://example.com/ 15526 441315 441315.441766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5440881913686 0 \N \N f 0 \N 0 39442112 0 f f \N \N \N \N 441315 \N 0 0 \N \N f \N 441765 2024-02-28 11:37:25.026 2024-02-28 11:47:26.722 \N Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsi https://example.com/ 15049 441751 441695.441737.441747.441751.441765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65531484471721 0 \N \N f 0 \N 1 141068664 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441796 2024-02-28 12:00:04.884 2024-02-28 12:10:06.882 Public ask news upon for \N https://example.com/ 20619 \N 441796 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.7306354253827 0 \N \N f 0 \N 1 161505757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441793 2024-02-28 11:56:14.998 2024-02-28 12:06:16.466 \N Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less https://example.com/ 1142 441332 441332.441793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.83558757894826 0 \N \N f 0 \N 0 211826042 0 f f \N \N \N \N 441332 \N 0 0 \N \N f \N 441780 2024-02-28 11:48:37.165 2024-02-28 11:58:38.58 \N If put nothing put pick future doctor. Push c https://example.com/ 20258 441770 441749.441770.441780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1622185866533 0 \N \N f 0 \N 0 141779161 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 441615 2024-02-28 09:43:17.09 2024-02-28 09:53:18.457 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within https://example.com/ 5828 440438 438737.438874.439111.440421.440438.441615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6701707754307 0 \N \N f 0 \N 3 237218799 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 441767 2024-02-28 11:39:45.181 2024-02-28 11:49:46.999 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table m https://example.com/ 1319 441615 438737.438874.439111.440421.440438.441615.441767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2330009844685 0 \N \N f 0 \N 2 199493272 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 441814 2024-02-28 12:16:47.914 2024-02-28 12:26:48.847 \N Ten answer natural star research black system three. Mention wish choose. Weigh https://example.com/ 9169 441811 441695.441699.441738.441754.441771.441811.441814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4222562723057 0 \N \N f 0 \N 2 62816485 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441797 2024-02-28 12:00:05.471 2024-02-28 12:00:11.311 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from grou https://example.com/ 2016 441796 441796.441797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1852097377324 0 \N \N f 0 \N 0 186792139 0 f f \N \N \N \N 441796 \N 0 0 \N \N f \N 441788 2024-02-28 11:54:06.852 2024-02-28 12:04:08.717 \N Force job radio law. Maybe soldier soldier. Model her thing comm https://example.com/ 1092 441753 441753.441788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.16709706924383 0 \N \N f 0 \N 0 114962302 0 f f \N \N \N \N 441753 \N 0 0 \N \N f \N 441943 2024-02-28 13:48:33.235 2024-02-28 13:58:34.758 \N Budget agent center https://example.com/ 19126 441935 441935.441943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3365661819277 0 \N \N f 0 \N 0 116810533 0 f f \N \N \N \N 441935 \N 0 0 \N \N f \N 441775 2024-02-28 11:45:24 2024-02-28 11:55:25.049 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim https://example.com/ 12220 441011 440692.441011.441775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.56211025265812 0 \N \N f 0 \N 0 37792946 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441789 2024-02-28 11:54:23.3 2024-02-28 12:04:25.149 \N Company save finally w https://example.com/ 8505 441782 441782.441789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.8183736968913 0 \N \N f 0 \N 0 10951669 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 441770 2024-02-28 11:41:51.432 2024-02-28 11:51:52.817 \N Many then growth. Law become return event parent I boy. Increase firm property t https://example.com/ 4313 441749 441749.441770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6163133611889 0 \N \N f 0 \N 1 17846935 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 441672 2024-02-28 10:45:51.093 2024-02-28 10:55:52.333 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. https://example.com/ 1012 441660 441660.441672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7574019494898 0 \N \N f 0 \N 0 132788406 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441690 2024-02-28 10:58:30.123 2024-02-28 11:08:32.79 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Ca https://example.com/ 15697 441493 441247.441493.441690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2773290487235 0 \N \N f 0 \N 1 66290421 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441774 2024-02-28 11:43:52.172 2024-02-28 11:53:54.859 \N Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. https://example.com/ 8385 441742 441742.441774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61310430037467 0 \N \N f 0 \N 1 17057298 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N 441686 2024-02-28 10:57:17.568 2024-02-28 11:07:19.021 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nSmall co https://example.com/ 18989 441660 441660.441686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.11972162423485 0 \N \N f 0 \N 0 207240778 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441787 2024-02-28 11:52:50.041 2024-02-28 12:02:51.063 Many then growth. Law become r Long management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr. https://example.com/ 17166 \N 441787 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.337819168437932 0 \N \N f 0 \N 0 29027389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441779 2024-02-28 11:47:36.959 2024-02-28 11:57:38.841 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nNature wrong meeting https://example.com/ 19638 441187 440587.440629.441187.441779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5677187089579 0 \N \N f 0 \N 1 43810166 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441798 2024-02-28 12:00:09.879 2024-02-28 12:10:10.977 \N Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son https://example.com/ 1298 441777 441695.441699.441738.441754.441771.441777.441798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8395468432787 0 \N \N f 0 \N 0 242432725 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441786 2024-02-28 11:52:00.63 2024-02-28 12:02:02.869 \N Drive south traditio https://example.com/ 14381 441690 441247.441493.441690.441786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9466406593678 0 \N \N f 0 \N 0 232367552 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441792 2024-02-28 11:55:58.31 2024-02-28 12:06:01.217 \N Moment smile cell cold road happe https://example.com/ 18945 441702 441247.441369.441702.441792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68854619582433 0 \N \N f 0 \N 0 142719509 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441849 2024-02-28 12:41:26.536 2024-02-28 12:51:28.886 \N Prevent machine source white and. Fact together father find appear point. Southern sister leave particu https://example.com/ 18243 441841 441695.441823.441837.441841.441849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3013051072563 0 \N \N f 0 \N 1 168084757 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441838 2024-02-28 12:36:32.346 2024-02-28 12:46:33.561 \N Speak specific energ https://example.com/ 10849 441782 441782.441838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9303332891102 0 \N \N f 0 \N 0 39158854 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 441821 2024-02-28 12:22:40.928 2024-02-28 12:32:43.03 \N Us less sure. Late travel us significant cover word i https://example.com/ 9347 441805 440587.440629.441187.441579.441668.441674.441678.441679.441680.441681.441805.441821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1868809155643 0 \N \N f 0 \N 0 132286079 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441834 2024-02-28 12:33:27.309 2024-02-28 12:43:28.89 \N Can operation lose dinner tax meet. Goal reflect when next. Ca https://example.com/ 827 441717 441169.441717.441834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.331349074804592 0 \N \N f 0 \N 0 34871981 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441865 2024-02-28 12:55:20.056 2024-02-28 13:05:21.081 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. https://example.com/ 9352 441856 441843.441856.441865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2886858123851 0 \N \N f 0 \N 0 245771374 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441802 2024-02-28 12:09:59.803 2024-02-28 12:20:00.904 Ten answer natural star research black system three. Me Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site. https://example.com/ 20299 \N 441802 \N \N \N \N \N \N \N \N news \N ACTIVE \N 23.1915139524612 0 \N \N f 0 \N 0 8950568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 432817 2024-02-20 18:01:25.069 2024-02-20 18:11:26.847 Eat culture event thus any ev Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nDecade activity affect another hear actio https://example.com/ 9026 \N 432817 \N \N \N \N \N \N \N \N security \N ACTIVE \N 4.95449262490119 0 \N \N f 0 \N 0 36405700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441812 2024-02-28 12:15:49.014 2024-02-28 12:25:50.896 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save s https://example.com/ 16004 441247 441247.441812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8086831060644 0 \N \N f 0 \N 0 189291424 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441809 2024-02-28 12:13:41.376 2024-02-28 12:23:42.989 Between remember watch image save win determine. Each reduce usually certa Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nMiss keep probably political forget sit. Simpl https://example.com/ 11621 \N 441809 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 15.8438449873938 0 \N \N f 0 \N 0 191477593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441818 2024-02-28 12:19:34.708 2024-02-28 12:29:36.952 \N Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race charac https://example.com/ 1060 441814 441695.441699.441738.441754.441771.441811.441814.441818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9662857957588 0 \N \N f 0 \N 1 36833620 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441705 2024-02-28 11:02:53.815 2024-02-28 11:12:54.814 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window m https://example.com/ 5128 441660 441660.441705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5408534785396 0 \N \N f 0 \N 0 4594230 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441680 2024-02-28 10:52:27.54 2024-02-28 11:02:28.5 \N Wish join discuss brother worry talk https://example.com/ 20225 441679 440587.440629.441187.441579.441668.441674.441678.441679.441680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25725243770629 0 \N \N f 0 \N 4 151484821 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441679 2024-02-28 10:50:57.905 2024-02-28 11:01:00.408 \N Religious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. https://example.com/ 1142 441678 440587.440629.441187.441579.441668.441674.441678.441679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8981554075259 0 \N \N f 0 \N 5 202503355 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441805 2024-02-28 12:12:05.642 2024-02-28 12:22:06.75 \N Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nDark address be federa https://example.com/ 17209 441681 440587.440629.441187.441579.441668.441674.441678.441679.441680.441681.441805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9386931959883 0 \N \N f 0 \N 1 86558279 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441822 2024-02-28 12:24:38.329 2024-02-28 12:34:39.381 \N Agent huge issu https://example.com/ 7998 441687 441560.441687.441822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.167001846809214 0 \N \N f 0 \N 0 93798995 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441826 2024-02-28 12:26:41.148 2024-02-28 12:36:43.205 \N Strategy way https://example.com/ 13174 441806 441806.441826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.979004867156 0 \N \N f 0 \N 0 13449097 0 f f \N \N \N \N 441806 \N 0 0 \N \N f \N 441755 2024-02-28 11:32:57.995 2024-02-28 11:42:59.452 \N Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple https://example.com/ 10981 441695 441695.441755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4674016846373 0 \N \N f 0 \N 0 23114063 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443812 2024-02-29 16:40:40.632 2024-02-29 16:50:41.609 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect writ https://example.com/ 15858 443545 443545.443812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2663124130305 0 \N \N f 0 \N 2 203902036 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443814 2024-02-29 16:41:23.353 2024-02-29 16:51:24.651 \N Cell language east present. Federal https://example.com/ 20163 442973 442973.443814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5941545033483 0 \N \N f 0 \N 2 39826276 0 f f \N \N \N \N 442973 \N 0 0 \N \N f \N 443257 2024-02-29 10:08:18.242 2024-02-29 10:18:19.424 \N Similar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weigh https://example.com/ 20073 442216 442191.442216.443257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5155492046975 0 \N \N f 0 \N 0 216120654 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 441806 2024-02-28 12:12:35.195 2024-02-28 12:22:37.132 Billion very news personal de Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice t https://example.com/ 1490 \N 441806 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3575763599621 0 \N \N f 0 \N 3 53625208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441839 2024-02-28 12:36:49.249 2024-02-28 12:46:51.125 \N Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until si https://example.com/ 16848 441818 441695.441699.441738.441754.441771.441811.441814.441818.441839 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.918107588270871 0 \N \N f 0 \N 0 114321765 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441841 2024-02-28 12:37:31.915 2024-02-28 12:47:32.903 \N Know son future suggest paper personal these million. Hundred https://example.com/ 21201 441837 441695.441823.441837.441841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.0672089698345 0 \N \N f 0 \N 2 81140297 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441852 2024-02-28 12:43:57.021 2024-02-28 12:53:58.924 \N Occur chair truth these officer focus black. Walk https://example.com/ 5128 441843 441843.441852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9038475029283 0 \N \N f 0 \N 0 174645637 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441847 2024-02-28 12:40:44.794 2024-02-28 12:50:47.108 \N Occur power prevent become issue https://example.com/ 12566 441782 441782.441847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3596869263555 0 \N \N f 0 \N 0 127134001 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 441846 2024-02-28 12:40:38.897 2024-02-28 12:50:41.018 Power billion method wide. Person play play thousand Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid. https://example.com/ 750 \N 441846 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7399378924872 0 \N \N f 0 \N 0 113445277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441862 2024-02-28 12:53:59.141 2024-02-28 13:04:01.267 \N Mention well https://example.com/ 20817 441851 441695.441851.441862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4659199199944 0 \N \N f 0 \N 6 205628679 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441860 2024-02-28 12:52:18.825 2024-02-28 13:02:21.102 \N Also weight particular less set southern. Score article believe in executive lot m https://example.com/ 8168 441695 441695.441860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.37520547750302 0 \N \N f 0 \N 0 3088785 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441867 2024-02-28 12:57:10.127 2024-02-28 13:07:11.506 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painti https://example.com/ 12566 441864 441843.441864.441867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87407150944605 0 \N \N f 0 \N 1 160576930 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441868 2024-02-28 12:58:17.681 2024-02-28 13:08:19.125 Happen include car man crime. Local organization present modern sound care. Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor. https://example.com/ 21287 \N 441868 \N \N \N \N \N \N \N \N news \N ACTIVE \N 1.03254976478446 0 \N \N f 0 \N 1 71343166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441990 2024-02-28 14:08:55.789 2024-02-28 14:18:57.686 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue s https://example.com/ 13365 441794 441794.441990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.14144287546 0 \N \N f 0 \N 0 237223903 0 f f \N \N \N \N 441794 \N 0 0 \N \N f \N 442004 2024-02-28 14:13:03.708 2024-02-28 14:23:05.965 \N Some nation represent who. Sometimes ability defense great res https://example.com/ 21233 441963 441854.441963.442004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.95315243158726 0 \N \N f 0 \N 0 164396451 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 441991 2024-02-28 14:09:10.589 2024-02-28 14:19:12.44 \N Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second ho https://example.com/ 14152 441749 441749.441991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7907446524495 0 \N \N f 0 \N 1 61621299 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 441861 2024-02-28 12:53:09.457 2024-02-28 13:03:11.177 \N Occur office book. Expect return including gun training election care. Americ https://example.com/ 15536 441843 441843.441861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4055182649748 0 \N \N f 0 \N 0 132725849 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441984 2024-02-28 14:05:20.52 2024-02-28 14:15:22.324 \N Great idea https://example.com/ 18842 441968 441968.441984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5489721403263 0 \N \N f 0 \N 1 170307782 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 441842 2024-02-28 12:37:34.75 2024-02-28 12:47:36.925 \N Tree political s https://example.com/ 17446 441782 441782.441842 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2304342755063 0 \N \N f 0 \N 0 17290000 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 441892 2024-02-28 13:12:51.997 2024-02-28 13:22:53.607 \N Both tell huge fine yet fall crime. Impact meet g https://example.com/ 17523 441857 441695.441699.441709.441721.441857.441892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.57193377160288 0 \N \N f 0 \N 0 223783465 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441784 2024-02-28 11:51:10.112 2024-02-28 12:01:13.059 \N Resource https://example.com/ 21441 441782 441782.441784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.57774733886636 0 \N \N f 0 \N 0 198480772 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 441564 2024-02-28 08:15:05.54 2024-02-28 08:25:07.371 Watch tell middle above. Happen move consider across my might quickly Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause. https://example.com/ 20201 \N 441564 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 2.42799837232614 0 \N \N f 0 \N 0 156966070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441857 2024-02-28 12:50:21.408 2024-02-28 13:00:23.374 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear e https://example.com/ 15075 441721 441695.441699.441709.441721.441857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6677239467414 0 \N \N f 0 \N 1 101371061 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441906 2024-02-28 13:24:11.893 2024-02-28 13:34:13.653 \N Main ball collection eye. Whatever test pla https://example.com/ 19103 441858 441858.441906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2874028085329 0 \N \N f 0 \N 0 213601677 0 f f \N \N \N \N 441858 \N 0 0 \N \N f \N 441975 2024-02-28 14:01:51.397 2024-02-28 14:11:52.961 Trade guy water between. Whom structure design. Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand. https://example.com/ 2734 \N 441975 \N \N \N \N \N \N \N \N mempool \N ACTIVE \N 1.98386382908119 0 \N \N f 0 \N 4 122448712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441233 2024-02-27 23:24:13.153 2024-02-27 23:34:14.285 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nCharge hold reveal easy rise method leave. Property https://example.com/ 11153 441011 440692.441011.441233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.81287048356467 0 \N \N f 0 \N 0 233737968 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441897 2024-02-28 13:17:33.511 2024-02-28 13:27:35.233 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority part https://example.com/ 5759 441889 441843.441864.441871.441882.441884.441889.441897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6770198905247 0 \N \N f 0 \N 0 78976676 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441907 2024-02-28 13:24:49.511 2024-02-28 13:34:51.533 \N Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. To https://example.com/ 1316 441319 441247.441319.441907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7981976748425 0 \N \N f 0 \N 1 149385212 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441914 2024-02-28 13:28:07.617 2024-02-28 13:38:09.381 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act https://example.com/ 21612 441783 440622.441783.441914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7843269277518 0 \N \N f 0 \N 0 181470977 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 443401 2024-02-29 12:37:30.29 2024-02-29 12:47:31.423 \N Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil https://example.com/ 27 443356 443339.443356.443401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71180473848043 0 \N \N f 0 \N 2 45411576 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N 443371 2024-02-29 12:10:34.352 2024-02-29 12:20:35.41 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality https://example.com/ 16667 443332 443295.443332.443371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1576342707851 0 \N \N f 0 \N 4 115595570 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 441911 2024-02-28 13:27:04.83 2024-02-28 13:37:05.795 \N Forget throug https://example.com/ 9845 441877 441854.441877.441911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.96687468015522 0 \N \N f 0 \N 1 57450184 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 440703 2024-02-27 15:52:26.951 2024-02-27 16:02:28.71 \N About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congr https://example.com/ 21453 440692 440692.440703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03052699144091 0 \N \N f 0 \N 0 117146491 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441912 2024-02-28 13:27:14.947 2024-02-28 13:37:16.566 \N Newspaper wall begin over serious hand. Remember great meet theory local forw https://example.com/ 4304 441854 441854.441912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4029311430612 0 \N \N f 0 \N 0 95451080 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 441905 2024-02-28 13:24:02.87 2024-02-28 13:34:04.522 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure incl https://example.com/ 9341 441407 441372.441407.441905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5058919125516 0 \N \N f 0 \N 1 11464222 0 f f \N \N \N \N 441372 \N 0 0 \N \N f \N 441649 2024-02-28 10:23:46.228 2024-02-28 10:33:48.518 \N Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade https://example.com/ 20106 441626 441514.441626.441649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58193277827572 0 \N \N f 0 \N 0 69793150 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441924 2024-02-28 13:36:50.44 2024-02-28 13:46:51.707 \N Go special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step ma https://example.com/ 1784 441692 441247.441451.441692.441924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5981198455513 0 \N \N f 0 \N 0 70217279 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 441956 2024-02-28 13:51:59.617 2024-02-28 14:02:01.879 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter https://example.com/ 16816 441664 441514.441626.441644.441664.441956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4980169594763 0 \N \N f 0 \N 0 1930275 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441952 2024-02-28 13:51:08.787 2024-02-28 14:01:09.721 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such ne https://example.com/ 2338 441942 441942.441952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50524984389992 0 \N \N f 0 \N 0 116797342 0 f f \N \N \N \N 441942 \N 0 0 \N \N f \N 441919 2024-02-28 13:32:35.733 2024-02-28 13:42:37.364 \N Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political https://example.com/ 4064 441901 441891.441901.441919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6492018053368 0 \N \N f 0 \N 0 69242755 0 f f \N \N \N \N 441891 \N 0 0 \N \N f \N 441903 2024-02-28 13:22:42.357 2024-02-28 13:32:43.882 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Ki https://example.com/ 880 441486 441238.441486.441903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.681708586813 0 \N \N f 0 \N 0 157358219 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 441928 2024-02-28 13:39:10.289 2024-02-28 13:49:11.802 \N Leave example rock. Acco https://example.com/ 20973 441843 441843.441928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0497304707864 0 \N \N f 0 \N 0 196878039 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441923 2024-02-28 13:35:50.811 2024-02-28 13:45:51.919 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure https://example.com/ 11329 441593 441593.441923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4478405805013 0 \N \N f 0 \N 0 95613306 0 f f \N \N \N \N 441593 \N 0 0 \N \N f \N 441935 2024-02-28 13:44:21.323 2024-02-28 13:54:22.982 Return teacher forget establish poor everything water. Politics Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building. https://example.com/ 20691 \N 441935 \N \N \N \N \N \N \N \N news \N ACTIVE \N 16.4692218603428 0 \N \N f 0 \N 5 135841007 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443421 2024-02-29 12:59:23.15 2024-02-29 13:09:25.281 \N Health catc https://example.com/ 738 442515 442515.443421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.27581041025833 0 \N \N f 0 \N 0 116434582 0 f f \N \N \N \N 442515 \N 0 0 \N \N f \N 441735 2024-02-28 11:19:40.599 2024-02-28 11:29:42.378 \N Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone https://example.com/ 19043 441718 441718.441735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99309140633463 0 \N \N f 0 \N 0 154385221 0 f f \N \N \N \N 441718 \N 0 0 \N \N f \N 441926 2024-02-28 13:37:47.864 2024-02-28 13:47:49.466 \N Artist sound return fu https://example.com/ 7395 441866 441866.441926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0753796080039 0 \N \N f 0 \N 1 75992438 0 f f \N \N \N \N 441866 \N 0 0 \N \N f \N 441895 2024-02-28 13:16:02.122 2024-02-28 13:26:03.644 \N Various discussion light page war your have. Get generation market through operation police effect. Area court bit physic https://example.com/ 2577 441866 441866.441895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.85499609830043 0 \N \N f 0 \N 1 125459288 0 f f \N \N \N \N 441866 \N 0 0 \N \N f \N 441929 2024-02-28 13:41:28.8 2024-02-28 13:51:29.961 \N Practice pressure help white source. Either little finish age young. Can perhaps left https://example.com/ 20129 441926 441866.441926.441929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54899069492704 0 \N \N f 0 \N 0 224270195 0 f f \N \N \N \N 441866 \N 0 0 \N \N f \N 441533 2024-02-28 07:42:43.558 2024-02-28 07:52:45.131 Herself will eight force small lo Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful althou https://example.com/ 21342 \N 441533 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8208192318815 0 \N \N f 0 \N 10 42637775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442058 2024-02-28 14:36:35.4 2024-02-28 14:46:37.948 \N Affect body wonder do sti https://example.com/ 10056 441719 441695.441719.442058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7371450479378 0 \N \N f 0 \N 0 105362328 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441930 2024-02-28 13:42:30.928 2024-02-28 13:52:31.935 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business soci https://example.com/ 4292 441660 441660.441930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0328671020137 0 \N \N f 0 \N 1 119204346 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441171 2024-02-27 22:33:49.082 2024-02-27 22:43:50.445 \N We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type f https://example.com/ 12291 441087 441087.441171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1530264801851 0 \N \N f 0 \N 1 55199496 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441772 2024-02-28 11:42:50.094 2024-02-28 11:52:53.176 Same listen suggest five serve si Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nNever able o https://example.com/ 20972 \N 441772 \N \N \N \N \N \N \N \N art \N ACTIVE \N 6.32325822244219 0 \N \N f 0 \N 0 10500666 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441933 2024-02-28 13:44:00.375 2024-02-28 13:54:02.34 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling https://example.com/ 16456 441806 441806.441933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2183019167276 0 \N \N f 0 \N 0 143195656 0 f f \N \N \N \N 441806 \N 0 0 \N \N f \N 441931 2024-02-28 13:42:41.914 2024-02-28 13:52:43.871 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter https://example.com/ 11798 440552 440552.441931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2478342777983 0 \N \N f 0 \N 0 133518821 0 f f \N \N \N \N 440552 \N 0 0 \N \N f \N 441932 2024-02-28 13:43:19.889 2024-02-28 13:53:21.704 \N Price occur station prepare be marriage. https://example.com/ 9816 441333 441333.441932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8284353364974 0 \N \N f 0 \N 0 210236813 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441936 2024-02-28 13:44:35.417 2024-02-28 13:54:37.863 \N Add bar degree beat since. Somebody of compare sea https://example.com/ 21070 441087 441087.441936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02939377305192 0 \N \N f 0 \N 0 143852603 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 441945 2024-02-28 13:48:48.414 2024-02-28 13:58:49.876 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. https://example.com/ 18680 441560 441560.441945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25660423621168 0 \N \N f 0 \N 0 81438804 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 441946 2024-02-28 13:49:00.196 2024-02-28 13:59:01.889 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit https://example.com/ 11477 441944 441944.441946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.959452755699 0 \N \N f 0 \N 0 190433235 0 f f \N \N \N \N 441944 \N 0 0 \N \N f \N 441626 2024-02-28 09:51:41.196 2024-02-28 10:01:42.501 \N Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often buildin https://example.com/ 807 441514 441514.441626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8818870094589 0 \N \N f 0 \N 7 117969002 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 441977 2024-02-28 14:02:32.236 2024-02-28 14:12:34.214 \N Side institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create dec https://example.com/ 18525 441695 441695.441977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.5036912157445 0 \N \N f 0 \N 0 215286522 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441976 2024-02-28 14:02:05.238 2024-02-28 14:12:06.76 \N Outside mother movement day enough. Ever b https://example.com/ 20825 441695 441695.441976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5751399577897 0 \N \N f 0 \N 0 112451917 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441972 2024-02-28 14:00:08.77 2024-02-28 14:10:10.241 \N Water wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After curre https://example.com/ 16665 441927 441921.441927.441972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7229651697603 0 \N \N f 0 \N 0 248690420 0 f f \N \N \N \N 441921 \N 0 0 \N \N f \N 441949 2024-02-28 13:50:38.488 2024-02-28 14:00:40.052 \N Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form https://example.com/ 21395 441656 441514.441515.441656.441949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7223794220185 0 \N \N f 0 \N 0 23450624 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 443407 2024-02-29 12:45:00.768 2024-02-29 12:55:02.859 \N Service technology include study e https://example.com/ 6430 443052 442163.442234.443001.443052.443407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1824378363163 0 \N \N f 0 \N 0 212848849 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442163 2024-02-28 15:25:40.444 2024-02-28 15:35:42.349 These world usually ground grow worker. Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence relig https://example.com/ 20434 \N 442163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.45434858597111 0 \N \N f 0 \N 44 200719851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441851 2024-02-28 12:43:34.582 2024-02-28 12:53:36.971 \N Probably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit https://example.com/ 8985 441695 441695.441851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9161541077322 0 \N \N f 0 \N 10 146938120 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441993 2024-02-28 14:09:19.485 2024-02-28 14:19:20.517 \N Nature wrong mee https://example.com/ 21103 441986 441695.441719.441986.441993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.257088875973 0 \N \N f 0 \N 1 14900887 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441971 2024-02-28 14:00:05.142 2024-02-28 14:00:10.529 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually A https://example.com/ 7682 441970 441970.441971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7163281342084 0 \N \N f 0 \N 0 192568616 0 f f \N \N \N \N 441970 \N 0 0 \N \N f \N 441982 2024-02-28 14:05:11.29 2024-02-28 14:15:13.066 \N Cell civil on much able su https://example.com/ 20439 441659 441659.441982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1137965703782 0 \N \N f 0 \N 0 209751908 0 f f \N \N \N \N 441659 \N 0 0 \N \N f \N 441953 2024-02-28 13:51:16.824 2024-02-28 14:01:17.836 \N Customer include control and. Chance blue audience right could course six always. Whole film Mrs acco https://example.com/ 20922 441942 441942.441953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8418182409532 0 \N \N f 0 \N 0 235104921 0 f f \N \N \N \N 441942 \N 0 0 \N \N f \N 441947 2024-02-28 13:49:09.327 2024-02-28 13:59:10.414 Term ok concern experience cold any certainly. Today turn respond high s Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind e https://example.com/ 822 \N 441947 \N \N \N \N \N \N \N \N security \N ACTIVE \N 10.7982655486434 0 \N \N f 0 \N 0 77447671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441988 2024-02-28 14:07:50.105 2024-02-28 14:17:52.562 \N Director far f https://example.com/ 16485 441231 441231.441988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.476443078567 0 \N \N f 0 \N 0 216552226 0 f f \N \N \N \N 441231 \N 0 0 \N \N f \N 441659 2024-02-28 10:32:58.349 2024-02-28 10:43:00.104 Better instead whom usually. Wrong think memory red Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother. https://example.com/ 14122 \N 441659 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.70394235209847 0 \N \N f 0 \N 1 18916430 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441231 2024-02-27 23:23:40.925 2024-02-27 23:33:42.164 Series wait ho Consumer point treat task. Shake bill player campaign really return cus https://example.com/ 21421 \N 441231 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.34311863607144 0 \N \N f 0 \N 1 213944949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443405 2024-02-29 12:44:14.099 2024-02-29 12:54:15.78 \N Range laugh thousand step. Them television final out care drop. Put c https://example.com/ 700 443353 442820.442876.442880.442948.443353.443405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6921961385292 0 \N \N f 0 \N 0 72772374 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442002 2024-02-28 14:12:07.142 2024-02-28 14:22:07.894 \N Bag couple hot buy https://example.com/ 632 441981 441975.441981.442002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6054258045252 0 \N \N f 0 \N 0 233124234 0 f f \N \N \N \N 441975 \N 0 0 \N \N f \N 441980 2024-02-28 14:04:17.862 2024-02-28 14:14:19.566 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take stra https://example.com/ 21216 441951 441951.441980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.28079297064617 0 \N \N f 0 \N 1 111767691 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442012 2024-02-28 14:17:19.732 2024-02-28 14:27:21.544 \N Develop receive back PM. Use arrive https://example.com/ 19156 441950 441816.441950.442012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4199359873172 0 \N \N f 0 \N 2 145778680 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 441962 2024-02-28 13:56:47.752 2024-02-28 14:06:49.886 \N Entire money chair between various plant. Cut yea https://example.com/ 7818 441954 441954.441962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2202986436708 0 \N \N f 0 \N 0 201701220 0 f f \N \N \N \N 441954 \N 0 0 \N \N f \N 441997 2024-02-28 14:10:36.237 2024-02-28 14:20:37.867 \N Key stuff company they base we https://example.com/ 21441 441970 441970.441997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61585101171794 0 \N \N f 0 \N 0 22125000 0 f f \N \N \N \N 441970 \N 0 0 \N \N f \N 443417 2024-02-29 12:54:30.489 2024-02-29 13:04:31.961 \N Big time rise yourself all https://example.com/ 9354 443412 443412.443417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41432667975437 0 \N \N f 0 \N 0 68801526 0 f f \N \N \N \N 443412 \N 0 0 \N \N f \N 441987 2024-02-28 14:05:59.258 2024-02-28 14:16:00.848 \N Scene re https://example.com/ 770 441984 441968.441984.441987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6741279396829 0 \N \N f 0 \N 0 223907389 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442052 2024-02-28 14:34:42.453 2024-02-28 14:44:43.758 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough w https://example.com/ 21062 442034 441695.441719.441986.442034.442052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.6958404191624 0 \N \N f 0 \N 0 214541276 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441996 2024-02-28 14:10:07.509 2024-02-28 14:20:08.972 \N South https://example.com/ 20412 441954 441954.441996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1499300252648 0 \N \N f 0 \N 0 77709726 0 f f \N \N \N \N 441954 \N 0 0 \N \N f \N 442036 2024-02-28 14:29:13.236 2024-02-28 14:39:14.116 \N Front https://example.com/ 20525 442026 441967.442007.442026.442036 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0558192446167 0 \N \N f 0 \N 0 147757169 0 f f \N \N \N \N 441967 \N 0 0 \N \N f \N 442013 2024-02-28 14:17:21.676 2024-02-28 14:27:23.582 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example https://example.com/ 20826 441843 441843.442013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46411468133616 0 \N \N f 0 \N 0 169668692 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442001 2024-02-28 14:11:38.316 2024-02-28 14:21:39.694 \N Remember statement trip much https://example.com/ 21212 441969 441854.441877.441969.442001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8214934623769 0 \N \N f 0 \N 1 202309833 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442017 2024-02-28 14:19:56.779 2024-02-28 14:29:57.724 \N Police do ba https://example.com/ 730 442001 441854.441877.441969.442001.442017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4616836276225 0 \N \N f 0 \N 0 121288051 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 441986 2024-02-28 14:05:57.565 2024-02-28 14:15:58.831 \N Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site wha https://example.com/ 1209 441719 441695.441719.441986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6136196554374 0 \N \N f 0 \N 5 78638373 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441951 2024-02-28 13:51:01.897 2024-02-28 14:01:03.881 Natural Mrs quickly financial. Success Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Mode https://example.com/ 19987 \N 441951 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.6157957050523 0 \N \N f 0 \N 10 53287221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442048 2024-02-28 14:33:16.915 2024-02-28 14:43:18.375 We quite story politics app Name everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce. https://example.com/ 21571 \N 442048 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 4.19415356621364 0 \N \N f 0 \N 0 126832569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 439002 2024-02-26 09:35:25.331 2024-02-26 09:45:27.109 Action prevent Animal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smil https://example.com/ 6594 \N 439002 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 5.01584779923466 0 \N \N f 0 \N 2 166648014 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442057 2024-02-28 14:36:00.235 2024-02-28 14:46:01.912 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Rai https://example.com/ 21492 442056 442056.442057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8835369498934 0 \N \N f 0 \N 0 22343771 0 f f \N \N \N \N 442056 \N 0 0 \N \N f \N 442031 2024-02-28 14:28:09.319 2024-02-28 14:38:12.231 \N Fly run executive. Reach next best machine o https://example.com/ 19615 442023 442023.442031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15816487071219 0 \N \N f 0 \N 0 183771952 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442070 2024-02-28 14:43:12.824 2024-02-28 14:53:14.742 \N Small concern peace on far either. Service clear movie decision follow family whatever. Give compare electi https://example.com/ 19459 442023 442023.442070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0318234469529 0 \N \N f 0 \N 6 68551382 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 441815 2024-02-28 12:17:39.684 2024-02-29 22:02:50.817 Mention trip some Power this as. Time https://example.com/ 11145 \N 441815 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 11.2841790225399 0 \N \N f 0 \N 3 213086965 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 433281 2024-02-21 01:06:39.597 2024-02-21 01:16:40.687 Still power agent hospital. Evening sty Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article. https://example.com/ 21527 \N 433281 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 3.50018112125241 0 \N \N f 0 \N 0 37307108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442182 2024-02-28 15:32:16.455 2024-02-28 15:42:18.217 \N For wrong offer a. Image bad should e https://example.com/ 18219 442070 442023.442070.442182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8349362288899 0 \N \N f 0 \N 0 194011396 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442111 2024-02-28 15:02:54.743 2024-02-28 15:12:55.875 \N South both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially https://example.com/ 11038 441968 441968.442111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.293678980488 0 \N \N f 0 \N 3 37061237 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442180 2024-02-28 15:31:08.152 2024-02-28 15:41:10.225 \N Direction figure between get especially certain. Behind himself several difficul https://example.com/ 16442 442023 442023.442180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4926161946147 0 \N \N f 0 \N 0 159726968 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442038 2024-02-28 14:29:50.063 2024-02-28 14:39:52.005 Produce series whom citizen sit. Crime these would her. A Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal. https://example.com/ 3709 \N 442038 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4803885114929 0 \N \N f 0 \N 0 42693021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442044 2024-02-28 14:32:23.619 2024-02-28 14:42:26.061 \N Them its apply task the off ability. Song https://example.com/ 17172 441600 441600.442044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3050462724005 0 \N \N f 0 \N 3 6821560 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N 441872 2024-02-28 13:00:04.971 2024-02-28 13:10:07.33 Billion here large general understand. Sit action cold which. Approach level ex \N https://example.com/ 5455 \N 441872 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.06902454777132 0 \N \N f 0 \N 1 66401857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442046 2024-02-28 14:32:56.864 2024-02-28 14:42:58.088 \N Br https://example.com/ 9985 442042 442042.442046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78571136089528 0 \N \N f 0 \N 1 3915888 0 f f \N \N \N \N 442042 \N 0 0 \N \N f \N 442033 2024-02-28 14:28:27.026 2024-02-28 14:38:28.466 \N Identify health spend could. Have weight civil size piece arrive. https://example.com/ 15491 442023 442023.442033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.01977982375007 0 \N \N f 0 \N 2 94610205 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442010 2024-02-28 14:16:17.646 2024-02-28 14:26:24.92 Decade activity affect a Economy rest whatever spring among least against and. Hard suffer attention rule region https://example.com/ 6229 \N 442010 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0800764392423 0 \N \N f 0 \N 0 37589508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442075 2024-02-28 14:46:09.672 2024-02-28 14:56:12.408 \N Pass glass feeling https://example.com/ 20972 440582 440561.440582.442075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7504730767329 0 \N \N f 0 \N 0 34292824 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 442069 2024-02-28 14:43:03.717 2024-02-28 14:53:06.179 \N Point box near. Affect glas https://example.com/ 11789 442065 442065.442069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7418728942539 0 \N \N f 0 \N 1 160331114 0 f f \N \N \N \N 442065 \N 0 0 \N \N f \N 442060 2024-02-28 14:38:27.012 2024-02-28 14:48:27.903 \N Enter land brother. Treat prove though. College everything be floor generation int https://example.com/ 18225 441854 441854.442060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.11209201503689 0 \N \N f 0 \N 0 200151499 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442049 2024-02-28 14:33:27.236 2024-02-28 14:43:28.498 \N About easy answer glas https://example.com/ 16956 441983 441695.441983.442049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2949454287642 0 \N \N f 0 \N 0 133730858 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441869 2024-02-28 12:58:25.781 2024-02-28 13:08:27.19 \N Force job radio law. Maybe soldier soldier. Model her thi https://example.com/ 684 441843 441843.441869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9124163467769 0 \N \N f 0 \N 0 118987115 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442053 2024-02-28 14:35:00.095 2024-02-28 14:45:01.965 \N Statement these https://example.com/ 7992 441885 441695.441885.442053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7725614146507 0 \N \N f 0 \N 2 86667834 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442055 2024-02-28 14:35:36.372 2024-02-28 14:45:37.819 \N Approach stuff big ahead nothing hotel great city. Four e https://example.com/ 17710 442050 441695.441965.442050.442055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4744325498814 0 \N \N f 0 \N 0 69648894 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442056 2024-02-28 14:35:50.886 2024-02-28 14:45:51.848 Parent always at part must a Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall. https://example.com/ 2576 \N 442056 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.591330754277202 0 \N \N f 0 \N 3 18889818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441902 2024-02-28 13:22:30.549 2024-02-28 13:32:31.743 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take https://example.com/ 19417 441284 441247.441284.441902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.646984298599 0 \N \N f 0 \N 0 99852929 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442121 2024-02-28 15:06:39.839 2024-02-28 15:16:42.238 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though car https://example.com/ 4074 442068 441695.441823.442068.442121 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8096213766581 0 \N \N f 0 \N 0 238183406 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441961 2024-02-28 13:55:16.329 2024-02-28 14:05:18.358 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fi https://example.com/ 1650 441733 441514.441640.441653.441733.441961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.280308365523 0 \N \N f 0 \N 7 89944664 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442113 2024-02-28 15:03:48.215 2024-02-28 15:13:50.218 \N Skin summer development benefit note soldier. Various important pre https://example.com/ 12976 441843 441843.442113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3257061585474 0 \N \N f 0 \N 0 216231679 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441828 2024-02-28 12:27:15.618 2024-02-28 12:37:16.89 Hundred unit music many. But mother however drug call a. Strong level offic View especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race train https://example.com/ 17838 \N 441828 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.1388780395116 0 \N \N f 0 \N 3 220551820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442061 2024-02-28 14:39:04.275 2024-02-28 14:49:06.433 \N West tend alone prepare build view support. Ph https://example.com/ 21506 441979 441843.441979.442061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2599246985274 0 \N \N f 0 \N 1 91855575 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442062 2024-02-28 14:39:26.303 2024-02-28 14:49:28.036 \N Live child https://example.com/ 1737 442046 442042.442046.442062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1941910749267 0 \N \N f 0 \N 0 31801780 0 f f \N \N \N \N 442042 \N 0 0 \N \N f \N 442066 2024-02-28 14:42:05.611 2024-02-28 14:52:07.767 \N Their bed hear https://example.com/ 1803 442063 442056.442063.442066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79879017343122 0 \N \N f 0 \N 0 165933515 0 f f \N \N \N \N 442056 \N 0 0 \N \N f \N 441816 2024-02-28 12:18:43.762 2024-02-28 12:28:45.126 First right set. Dinner third diffic Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require dee https://example.com/ 21119 \N 441816 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 17.4963258979995 0 \N \N f 0 \N 8 154803598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442095 2024-02-28 14:53:14.508 2024-02-28 15:03:16.029 \N Author travel realize. F https://example.com/ 16789 442094 442023.442094.442095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.3072207487239 0 \N \N f 0 \N 0 86516119 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442404 2024-02-28 16:59:58.98 2024-02-28 17:09:59.997 \N If put nothing put pick future doctor. Push close among participant part. Charge article agent https://example.com/ 11220 441695 441695.442404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.7955509890338 0 \N \N f 0 \N 2 238013080 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442105 2024-02-28 15:00:53.712 2024-02-28 15:10:56.19 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air https://example.com/ 19156 442096 442084.442096.442105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55858037720881 0 \N \N f 0 \N 5 52015242 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442112 2024-02-28 15:03:29.855 2024-02-28 15:13:32.319 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among https://example.com/ 18310 441951 441951.442112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9602273619985 0 \N \N f 0 \N 1 177226935 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442065 2024-02-28 14:42:00.874 2024-02-28 14:52:02.451 Spend democratic second find president walk model. Challenge face sectio Kitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well ba https://example.com/ 18923 \N 442065 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.31530032983157 0 \N \N f 0 \N 6 155845893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442064 2024-02-28 14:41:23.356 2024-02-28 14:51:24.825 \N Every east political drug. Important game subject seat seek https://example.com/ 15282 441660 441660.442064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9789439996425 0 \N \N f 0 \N 0 225905681 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 442168 2024-02-28 15:27:26.004 2024-02-28 15:37:26.73 Morning create future popular. Shoulder animal society want indeed exper Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself. https://example.com/ 20596 \N 442168 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.145128522153 0 \N \N f 0 \N 0 164192183 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442174 2024-02-28 15:28:34.011 2024-02-28 15:38:34.972 \N Measure enj https://example.com/ 9494 442015 441660.442015.442174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.89480582670804 0 \N \N f 0 \N 0 148459035 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 442108 2024-02-28 15:02:31.488 2024-02-28 15:12:32.609 \N Quickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reas https://example.com/ 2748 442099 441843.441979.442087.442092.442099.442108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5726582694601 0 \N \N f 0 \N 8 180942932 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442116 2024-02-28 15:05:12.155 2024-02-28 15:15:14.231 \N Be human year girl treatm https://example.com/ 18956 442085 441695.441885.442053.442085.442116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7001137013525 0 \N \N f 0 \N 0 163163215 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442110 2024-02-28 15:02:52.295 2024-02-28 15:12:53.74 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok pla https://example.com/ 848 441716 441489.441716.442110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0653467918599 0 \N \N f 0 \N 0 158589423 0 f f \N \N \N \N 441489 \N 0 0 \N \N f \N 442428 2024-02-28 17:09:56.767 2024-02-28 17:19:58.232 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mi https://example.com/ 15337 442306 442306.442428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0545400138008 0 \N \N f 0 \N 3 171815484 0 f f \N \N \N \N 442306 \N 0 0 \N \N f \N 442491 2024-02-28 17:46:21.072 2024-02-28 17:56:22.638 \N Compare strategy affec https://example.com/ 13781 442487 442084.442096.442105.442384.442425.442455.442487.442491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8871725387552 0 \N \N f 0 \N 0 187615926 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442120 2024-02-28 15:06:39.199 2024-02-28 15:16:40.211 \N Station nothing decide Mr sing candida https://example.com/ 18518 200867 200726.200758.200759.200827.200836.200867.442120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8324570250442 0 \N \N f 0 \N 5 37682223 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 441428 2024-02-28 03:40:44.108 2024-02-28 03:50:45.9 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nLeader https://example.com/ 696 441333 441333.441428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4962465914195 0 \N \N f 0 \N 0 114843778 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442384 2024-02-28 16:54:06.532 2024-02-28 17:04:07.984 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Orde https://example.com/ 18989 442105 442084.442096.442105.442384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4803393374898 0 \N \N f 0 \N 4 219676301 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442063 2024-02-28 14:39:44.801 2024-02-28 14:49:46.073 \N Oil fast organization discussion board nation hotel. Recent https://example.com/ 5359 442056 442056.442063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1663852614036 0 \N \N f 0 \N 1 37476462 0 f f \N \N \N \N 442056 \N 0 0 \N \N f \N 442071 2024-02-28 14:43:20.367 2024-02-28 14:53:22.179 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nQu https://example.com/ 19943 441854 441854.442071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8013369161299 0 \N \N f 0 \N 0 211335765 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442090 2024-02-28 14:50:12.892 2024-02-28 15:00:14.362 \N Material focus experience picture. Future still f https://example.com/ 759 440679 440561.440679.442090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9900118300353 0 \N \N f 0 \N 0 158608887 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 441921 2024-02-28 13:33:20.652 2024-02-28 13:43:21.825 Key stuff company they base well nigh Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe https://example.com/ 18673 \N 441921 \N \N \N \N \N \N \N \N art \N ACTIVE \N 27.9744103141391 0 \N \N f 0 \N 4 131268774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441716 2024-02-28 11:09:08.873 2024-02-28 11:19:10.853 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority al https://example.com/ 20183 441489 441489.441716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6818206760154 0 \N \N f 0 \N 1 61274785 0 f f \N \N \N \N 441489 \N 0 0 \N \N f \N 442072 2024-02-28 14:45:07.647 2024-02-28 14:55:10.121 \N Key group certainly little spring. Today form hit type arti https://example.com/ 19886 440707 440561.440707.442072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5106325825857 0 \N \N f 0 \N 0 198227277 0 f f \N \N \N \N 440561 \N 0 0 \N \N f \N 442076 2024-02-28 14:46:16.393 2024-02-28 14:56:17.969 \N Area just subject pretty. Three employee performanc https://example.com/ 21369 441905 441372.441407.441905.442076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1449980093089 0 \N \N f 0 \N 0 124001461 0 f f \N \N \N \N 441372 \N 0 0 \N \N f \N 432433 2024-02-20 12:55:30.454 2024-02-20 13:05:31.494 \N His mean individual benefit push consider. A https://example.com/ 9334 432416 429644.432416.432433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.5018490730115 0 \N \N f 0 \N 1 165170555 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 441063 2024-02-27 20:34:16.648 2024-02-27 20:44:18.177 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nYoung shake push apply stand https://example.com/ 1298 441022 441022.441063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6809535747846 0 \N \N f 0 \N 1 9434569 0 f f \N \N \N \N 441022 \N 0 0 \N \N f \N 441022 2024-02-27 20:04:50.911 2024-02-27 20:14:52.948 Plant development someone Method same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site https://example.com/ 4802 \N 441022 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 17.1277692470733 0 \N \N f 0 \N 2 229182019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442101 2024-02-28 14:59:37.737 2024-02-28 15:09:40.106 \N Possible serious black institution source fund. Player use peace as. Teach offe https://example.com/ 12265 441695 441695.442101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1051173810433 0 \N \N f 0 \N 0 150113867 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442135 2024-02-28 15:10:12.438 2024-02-28 15:20:14.371 \N Quite way soldier would back near. Modern c https://example.com/ 11522 441803 441695.441712.441750.441801.441803.442135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9516685642494 0 \N \N f 0 \N 7 153147223 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442093 2024-02-28 14:51:33.09 2024-02-28 15:01:34.107 About easy answer glass. Fire who place approach. Generation from miss player f Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great https://example.com/ 18675 \N 442093 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.8527241031843 0 \N \N f 0 \N 0 179182925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442123 2024-02-28 15:07:01.115 2024-02-28 15:17:02.416 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size frien https://example.com/ 18235 442118 442084.442106.442117.442118.442123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0320008629932 0 \N \N f 0 \N 0 130294566 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442115 2024-02-28 15:04:58.933 2024-02-28 15:15:00.123 \N Describe radio value until fund sit behind. Mrs exist important special tho https://example.com/ 5527 442091 441695.441823.442068.442078.442083.442088.442091.442115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.53370690532297 0 \N \N f 0 \N 0 12983257 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442471 2024-02-28 17:34:44.95 2024-02-28 17:44:46.592 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound eve https://example.com/ 946 442325 442325.442471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8795903701547 0 \N \N f 0 \N 0 223086226 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442091 2024-02-28 14:51:12.281 2024-02-28 15:01:14.229 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against imp https://example.com/ 1769 442088 441695.441823.442068.442078.442083.442088.442091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85376828336236 0 \N \N f 0 \N 1 94700197 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442118 2024-02-28 15:05:35.605 2024-02-28 15:15:36.482 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late https://example.com/ 10007 442117 442084.442106.442117.442118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.80406677780304 0 \N \N f 0 \N 5 226296173 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442167 2024-02-28 15:26:57.392 2024-02-28 15:36:58.888 \N Speech radio kind know. Can travel though PM deep baby. Book eye region https://example.com/ 1785 442084 442084.442167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.748532063465 0 \N \N f 0 \N 0 200538359 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442156 2024-02-28 15:23:29.074 2024-02-28 15:33:30.12 \N Method same car buy side. Price order rest Congress data. Man re https://example.com/ 10469 442023 442023.442156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91766755911879 0 \N \N f 0 \N 2 116068427 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442128 2024-02-28 15:08:08.585 2024-02-28 15:18:10.306 \N Wear role agency. Enter back require mission pie https://example.com/ 9 441801 441695.441712.441750.441801.442128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.82389274342 0 \N \N f 0 \N 0 177083336 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442222 2024-02-28 15:43:50.374 2024-02-28 15:53:52.631 \N Support structure season energy group. Important nearly dark. Sense course risk energy want role in https://example.com/ 20756 441660 441660.442222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.832369560724 0 \N \N f 0 \N 0 184087850 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 441922 2024-02-28 13:35:21.31 2024-02-28 13:45:22.258 Focus area mean. Sometimes responsibilit Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together. https://example.com/ 19639 \N 441922 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 29.4942779861748 0 \N \N f 0 \N 0 22385121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442131 2024-02-28 15:08:59.382 2024-02-28 15:19:00.303 \N Month explain matter south. Thus car occur bad. Gree https://example.com/ 9167 441750 441695.441712.441750.442131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.26960816200179 0 \N \N f 0 \N 0 150950421 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441948 2024-02-28 13:49:44.579 2024-02-28 13:59:45.993 Region side point win through. Deep check rather loss world adult. Easy su Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or mi https://example.com/ 999 \N 441948 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7394948745031 0 \N \N f 0 \N 0 164250316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442137 2024-02-28 15:10:50.202 2024-02-28 15:20:52.212 \N Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive https://example.com/ 20182 442112 441951.442112.442137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49831350133501 0 \N \N f 0 \N 0 247550034 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442186 2024-02-28 15:33:54.806 2024-02-28 15:43:56.449 \N Involve morning someone them Congress keep rule. Order price condition get despite. Cl https://example.com/ 8326 442179 442179.442186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36506219109686 0 \N \N f 0 \N 1 143640358 0 f f \N \N \N \N 442179 \N 0 0 \N \N f \N 442106 2024-02-28 15:02:09.627 2024-02-28 15:12:10.672 \N Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make c https://example.com/ 10063 442084 442084.442106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.381537596625208 0 \N \N f 0 \N 7 246897630 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442148 2024-02-28 15:19:23.218 2024-02-28 15:29:24.324 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life educa https://example.com/ 20757 442141 441695.441712.441750.441801.441803.442135.442141.442148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1878028350268 0 \N \N f 0 \N 5 212831140 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442021 2024-02-28 14:21:23.273 2024-02-28 14:31:25.921 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nPast skin protect than court summer experience. Final together century participant. Pr https://example.com/ 708 441695 441695.442021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.374493825077948 0 \N \N f 0 \N 0 140418944 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442008 2024-02-28 14:15:04.242 2024-02-28 14:25:06.202 \N Already real me back ahead especially drug late. Doctor my risk party black https://example.com/ 19976 441514 441514.442008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0045128176938 0 \N \N f 0 \N 1 221209985 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442155 2024-02-28 15:22:58.378 2024-02-28 15:33:00.242 \N Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item le https://example.com/ 16052 442147 442147.442155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.312268376443 0 \N \N f 0 \N 1 152726115 0 f f \N \N \N \N 442147 \N 0 0 \N \N f \N 442798 2024-02-28 22:38:19.359 2024-02-28 22:48:20.668 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nHappen include car man crime https://example.com/ 5761 442543 442084.442543.442798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.95711175300584 0 \N \N f 0 \N 0 57280799 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 441845 2024-02-28 12:40:02.125 2024-02-28 12:50:03.111 \N Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn meth https://example.com/ 4084 441695 441695.441845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6552205509824 0 \N \N f 0 \N 0 137203814 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441840 2024-02-28 12:36:53.929 2024-02-28 12:46:55.13 \N Model fall part. Teach why have read tonight technology establish note. Region born with https://example.com/ 1272 441695 441695.441840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6162756281282 0 \N \N f 0 \N 0 197017524 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442136 2024-02-28 15:10:36.102 2024-02-28 15:20:38.132 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eigh https://example.com/ 11714 442084 442084.442136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.109428990745 0 \N \N f 0 \N 1 203082195 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442158 2024-02-28 15:24:09.326 2024-02-28 15:34:10.367 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss h https://example.com/ 17221 442008 441514.442008.442158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.391585373158 0 \N \N f 0 \N 0 137355605 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442042 2024-02-28 14:31:39.276 2024-02-28 14:41:40.714 Direction figure between get especially cer Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove f https://example.com/ 695 \N 442042 \N \N \N \N \N \N \N \N art \N ACTIVE \N 20.5013094698197 0 \N \N f 0 \N 2 118222670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442227 2024-02-28 15:45:55.666 2024-02-28 15:55:57.679 \N E https://example.com/ 2000 441719 441695.441719.442227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9611234457285 0 \N \N f 0 \N 0 61839334 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442169 2024-02-28 15:27:29.588 2024-02-28 15:37:30.734 \N Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The https://example.com/ 1291 442139 441843.441979.442087.442092.442099.442108.442129.442139.442169 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.599944575751 0 \N \N f 0 \N 3 242393586 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441891 2024-02-28 13:12:30.619 2024-02-28 13:22:31.722 Middle without school budget c Best affect mind former history. Likely half situation wife order. Human https://example.com/ 5597 \N 441891 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.93567621903713 0 \N \N f 0 \N 3 53693201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442197 2024-02-28 15:36:11.361 2024-02-28 15:46:12.428 \N Individual low nice character home Congress prevent. Wal https://example.com/ 761 442187 442187.442197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9460779292318 0 \N \N f 0 \N 0 188126562 0 f f \N \N \N \N 442187 \N 0 0 \N \N f \N 442203 2024-02-28 15:38:23.458 2024-02-28 15:48:24.442 \N Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nSupport https://example.com/ 3717 442190 200726.200758.200759.200827.200836.200867.442120.442190.442203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8060737546836 0 \N \N f 0 \N 1 11358322 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 442763 2024-02-28 21:39:28.012 2024-02-28 21:49:29.309 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order https://example.com/ 14202 442758 442551.442758.442763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.151860831644 0 \N \N f 0 \N 1 13834093 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442716 2024-02-28 21:12:13.864 2024-02-28 21:22:15.27 \N About easy answer glass. Fire who place approach. Generation from miss player four neve https://example.com/ 1030 442710 442710.442716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.63257055890105 0 \N \N f 0 \N 1 236774932 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442659 2024-02-28 20:29:35.638 2024-02-28 20:39:36.839 \N Join p https://example.com/ 21453 442657 442657.442659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03407351951994 0 \N \N f 0 \N 0 31744860 0 f f \N \N \N \N 442657 \N 0 0 \N \N f \N 442799 2024-02-28 22:38:30.248 2024-02-28 22:48:31.821 Leave relationship rule rich draw soon protect continue. International pull rock Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do. https://example.com/ 21527 \N 442799 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.72196475539413 0 \N \N f 0 \N 0 139360735 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442789 2024-02-28 22:18:45.212 2024-02-28 22:28:46.316 \N Run music mean unit. Ab https://example.com/ 760 442683 442636.442683.442789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4936424018477 0 \N \N f 0 \N 0 32890753 0 f f \N \N \N \N 442636 \N 0 0 \N \N f \N 442226 2024-02-28 15:45:42.962 2024-02-28 15:55:43.903 \N Leave example rock. According prepare administration send includi https://example.com/ 6382 442206 442206.442226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.996941112780689 0 \N \N f 0 \N 1 80601180 0 f f \N \N \N \N 442206 \N 0 0 \N \N f \N 442199 2024-02-28 15:37:23.969 2024-02-28 15:47:25.004 \N Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead des https://example.com/ 18306 440575 440575.442199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2158098313013 0 \N \N f 0 \N 0 96717315 0 f f \N \N \N \N 440575 \N 0 0 \N \N f \N 442776 2024-02-28 21:59:45.258 2024-02-28 22:09:46.68 \N Push floor economy https://example.com/ 17184 442741 442741.442776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0323889928997 0 \N \N f 0 \N 0 41124902 0 f f \N \N \N \N 442741 \N 0 0 \N \N f \N 442193 2024-02-28 15:35:40.491 2024-02-28 15:45:42.542 \N Part dog him its government good. Growth action hav https://example.com/ 18188 441610 440692.441610.442193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4343962036763 0 \N \N f 0 \N 0 130063773 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 442194 2024-02-28 15:35:44.211 2024-02-28 15:45:46.57 \N Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade la https://example.com/ 16004 442190 200726.200758.200759.200827.200836.200867.442120.442190.442194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5178870960826 0 \N \N f 0 \N 1 188141555 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 442195 2024-02-28 15:35:46.014 2024-02-28 15:45:47.364 \N Them bag because parent see. Young https://example.com/ 20018 442044 441600.442044.442195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0331054624357 0 \N \N f 0 \N 2 112028975 0 f f \N \N \N \N 441600 \N 0 0 \N \N f \N 442196 2024-02-28 15:36:09.265 2024-02-28 15:46:11.116 \N Just condition wide hit national cultural me. Student out past heart cell design study mo https://example.com/ 1769 442119 441968.442111.442119.442196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8391053544852 0 \N \N f 0 \N 1 63210186 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442200 2024-02-28 15:37:24.53 2024-02-28 15:47:26.013 \N Be right whatever former various bil https://example.com/ 21159 442196 441968.442111.442119.442196.442200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6538272245692 0 \N \N f 0 \N 0 81933482 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442232 2024-02-28 15:48:31.731 2024-02-28 15:58:32.766 \N Toward position themselves news unit. Manage go ce https://example.com/ 13931 441749 441749.442232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0207991001745 0 \N \N f 0 \N 3 212164318 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 441894 2024-02-28 13:15:12.568 2024-02-28 13:25:13.745 Economy rest whatever spring among least against a Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north. https://example.com/ 9845 \N 441894 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5924462236395 0 \N \N f 0 \N 1 17169585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442214 2024-02-28 15:41:23.155 2024-02-28 15:51:24.754 \N Body situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this pi https://example.com/ 2151 441225 440692.441060.441190.441225.442214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91219714923746 0 \N \N f 0 \N 0 136531564 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 442657 2024-02-28 20:27:33.039 2024-02-28 20:37:35.006 Cut firm blood History prepare everyone role everybody son. Meet discuss six doctor s https://example.com/ 12222 \N 442657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6874528459069 0 \N \N f 0 \N 5 125079481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442220 2024-02-28 15:43:29.501 2024-02-28 15:53:30.514 \N Servic https://example.com/ 13587 442143 442143.442220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2132166010134 0 \N \N f 0 \N 0 83860675 0 f f \N \N \N \N 442143 \N 0 0 \N \N f \N 442242 2024-02-28 15:52:44.955 2024-02-28 16:02:46.972 \N Than budget time gas choice option l https://example.com/ 11938 442233 442170.442233.442242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6509932401221 0 \N \N f 0 \N 1 19135694 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442266 2024-02-28 16:00:43.908 2024-02-28 16:10:45.776 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing https://example.com/ 19394 442206 442206.442266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96153232622173 0 \N \N f 0 \N 0 6419927 0 f f \N \N \N \N 442206 \N 0 0 \N \N f \N 442306 2024-02-28 16:17:30.597 2024-02-28 16:27:31.33 Both peace drug most bring institution. Mean become current address. Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nPolitical perha https://example.com/ 16653 \N 442306 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4178121903749 0 \N \N f 0 \N 4 97119274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442347 2024-02-28 16:33:25.84 2024-02-28 16:43:26.594 \N Improve different identify only radio myself. Relate little make whatever. https://example.com/ 1652 441713 441553.441713.442347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.16537862896985 0 \N \N f 0 \N 0 153332445 0 f f \N \N \N \N 441553 \N 0 0 \N \N f \N 442860 2024-02-28 23:25:49.724 2024-02-28 23:35:51.137 \N Although thought fall today protect ago. Able institution offer aut https://example.com/ 1519 442377 442371.442377.442860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8962721984513 0 \N \N f 0 \N 0 78570104 0 f f \N \N \N \N 442371 \N 0 0 \N \N f \N 441225 2024-02-27 23:16:39.582 2024-02-27 23:26:40.844 \N Past hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg https://example.com/ 20424 441190 440692.441060.441190.441225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45416411636997 0 \N \N f 0 \N 1 231815948 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 442825 2024-02-28 23:04:58.901 2024-02-28 23:15:00.58 \N Development political left not every themselves factor create. Weight level arm skin subject. Genera https://example.com/ 10056 442814 442751.442813.442814.442825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.395988637172 0 \N \N f 0 \N 0 170965287 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442189 2024-02-28 15:34:36.261 2024-02-28 15:44:38.864 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what pr https://example.com/ 21131 441894 441894.442189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5162837571831 0 \N \N f 0 \N 0 102321960 0 f f \N \N \N \N 441894 \N 0 0 \N \N f \N 442249 2024-02-28 15:55:43.589 2024-02-28 16:05:44.579 \N Including lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home mys https://example.com/ 7773 442142 442084.442106.442117.442118.442140.442142.442249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6821806751917 0 \N \N f 0 \N 1 99942826 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442231 2024-02-28 15:47:00.257 2024-02-28 15:57:02.572 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two https://example.com/ 21506 442230 442230.442231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45327556118427 0 \N \N f 0 \N 0 34880244 0 f f \N \N \N \N 442230 \N 0 0 \N \N f \N 442272 2024-02-28 16:03:38.116 2024-02-28 16:13:39.51 \N Threat successfu https://example.com/ 16679 441695 441695.442272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9095773823586 0 \N \N f 0 \N 0 60400644 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442041 2024-02-28 14:30:24.531 2024-02-28 14:40:26.581 \N Determine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. M https://example.com/ 21263 442033 442023.442033.442041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0180614380682 0 \N \N f 0 \N 1 170772738 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 441859 2024-02-28 12:51:59.626 2024-02-28 13:02:01.356 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nWind thro https://example.com/ 19966 441749 441749.441859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.89908092541233 0 \N \N f 0 \N 1 240662227 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 441749 2024-02-28 11:31:13.528 2024-02-28 11:41:14.433 Never hotel town trip thus safe eight. Share high rich g Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nFull b https://example.com/ 17638 \N 441749 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.7213406602576 0 \N \N f 0 \N 18 48509634 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442259 2024-02-28 15:58:17.962 2024-02-28 16:08:19.276 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nSystem lose thought. Him medical dur https://example.com/ 4314 442255 442255.442259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.99815017894279 0 \N \N f 0 \N 0 181490850 0 f f \N \N \N \N 442255 \N 0 0 \N \N f \N 441887 2024-02-28 13:07:08.142 2024-02-28 13:17:09.128 \N Though eye claim side government. Form program analysis somebody interesting affect examp https://example.com/ 21275 441695 441695.441887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3296268935308 0 \N \N f 0 \N 0 48657208 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442233 2024-02-28 15:49:10.401 2024-02-28 15:59:12.548 \N Far clearly possible ent https://example.com/ 11430 442170 442170.442233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1983890278537 0 \N \N f 0 \N 2 204315940 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442221 2024-02-28 15:43:36.718 2024-02-28 15:53:38.571 \N Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of na https://example.com/ 21104 433828 433828.442221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3954583366632 0 \N \N f 0 \N 0 184494315 0 f f \N \N \N \N 433828 \N 0 0 \N \N f \N 442228 2024-02-28 15:46:09.27 2024-02-28 15:56:10.191 \N Increase section kind decision. Individual mission song alwa https://example.com/ 9334 441695 441695.442228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7915416413809 0 \N \N f 0 \N 0 47699432 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442204 2024-02-28 15:38:26.99 2024-02-28 15:48:28.503 \N Church listen our call couple rise beyo https://example.com/ 19837 442198 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198.442204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1459365977588 0 \N \N f 0 \N 0 70513394 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442130 2024-02-28 15:08:33.372 2024-02-28 15:18:34.655 \N Safe pass wife stay effort mission. Major long now hand example commerci https://example.com/ 20439 442086 442023.442070.442086.442130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5050943249152 0 \N \N f 0 \N 1 56330034 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442045 2024-02-28 14:32:36.145 2024-02-28 14:42:38.075 \N Finally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred g https://example.com/ 20912 441660 441660.442045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1160591746238 0 \N \N f 0 \N 0 206874154 0 f f \N \N \N \N 441660 \N 0 0 \N \N f \N 442875 2024-02-28 23:35:46.337 2024-02-28 23:45:47.531 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republ https://example.com/ 20573 442823 442710.442823.442875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8918408321766 0 \N \N f 0 \N 0 246588333 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 441660 2024-02-28 10:34:25.763 2024-02-28 10:44:26.884 Rock source rate fact leave house course. Pers Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nSmile paper though to catch. Situation alon https://example.com/ 2528 \N 441660 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 1.95745187957829 0 \N \N f 0 \N 18 130981060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442251 2024-02-28 15:56:16.493 2024-02-28 16:06:18.672 \N Most describe tell speech without. Young lot next cell among war agree. Important according success anyone deb https://example.com/ 3461 442202 441968.442202.442251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4695356076207 0 \N \N f 0 \N 0 248048192 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442161 2024-02-28 15:25:20.985 2024-02-28 15:35:21.949 \N Ability ability arrive https://example.com/ 642 442156 442023.442156.442161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2861295902345 0 \N \N f 0 \N 1 21452221 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442202 2024-02-28 15:38:15.848 2024-02-28 15:48:17.259 \N Scientist our accept million student where bring trade. Someone inde https://example.com/ 17570 441968 441968.442202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8598000368517 0 \N \N f 0 \N 1 142077195 0 f f \N \N \N \N 441968 \N 0 0 \N \N f \N 442243 2024-02-28 15:52:47.209 2024-02-28 16:02:48.574 \N Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product https://example.com/ 16706 442124 442084.442109.442124.442243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.4040112376691 0 \N \N f 0 \N 1 176788972 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442274 2024-02-28 16:03:48.587 2024-02-28 16:13:50.652 \N Their election city process. Agency early its stock. https://example.com/ 19103 441854 441854.442274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2621321543606 0 \N \N f 0 \N 0 81325856 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442280 2024-02-28 16:06:10.252 2024-02-28 16:16:11.485 \N Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. I https://example.com/ 2844 442269 442084.442145.442269.442280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9721216450893 0 \N \N f 0 \N 0 88024291 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442145 2024-02-28 15:17:05.076 2024-02-28 15:27:06.367 \N Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nHerself then or effect usually treat. Exa https://example.com/ 21064 442084 442084.442145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.23914060885828 0 \N \N f 0 \N 2 233453068 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442247 2024-02-28 15:53:53.949 2024-02-28 16:03:55.224 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practic https://example.com/ 18072 441695 441695.442247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78700947092137 0 \N \N f 0 \N 0 83761010 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442224 2024-02-28 15:44:44.794 2024-02-28 15:54:46.402 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I f https://example.com/ 19566 441695 441695.442224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9343178211608 0 \N \N f 0 \N 5 4250744 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442230 2024-02-28 15:46:40.602 2024-02-28 15:56:42.773 Machine thus avoid result sing response. Leader outside bit wait whose Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both. https://example.com/ 7983 \N 442230 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3201312524153 0 \N \N f 0 \N 1 120678390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442282 2024-02-28 16:07:17.966 2024-02-28 16:17:19.77 \N Firm study certainly point. Ask major born want physical nice. On imagine personal sp https://example.com/ 20287 442278 441695.441885.442267.442270.442278.442282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7698144985136 0 \N \N f 0 \N 0 66106740 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442287 2024-02-28 16:11:13.807 2024-02-28 16:21:14.723 \N Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth te https://example.com/ 21233 442242 442170.442233.442242.442287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.77804100998842 0 \N \N f 0 \N 0 27863885 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442299 2024-02-28 16:15:21.452 2024-02-28 16:25:22.581 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south indivi https://example.com/ 946 442298 442298.442299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0692614282043 0 \N \N f 0 \N 0 161040762 0 f f \N \N \N \N 442298 \N 0 0 \N \N f \N 442296 2024-02-28 16:14:50.104 2024-02-28 16:24:51.889 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Amo https://example.com/ 4175 442285 442283.442285.442296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6637136668141 0 \N \N f 0 \N 4 9307039 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442248 2024-02-28 15:55:11.66 2024-02-28 16:05:12.789 \N Instead believe animal then however price particula https://example.com/ 20706 442239 441749.442232.442235.442239.442248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7011737535819 0 \N \N f 0 \N 0 130742309 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 441769 2024-02-28 11:40:44.473 2024-02-28 11:50:46.754 Admit difficult figure parent account in. Suffer administration di Station mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hi https://example.com/ 20754 \N 441769 \N \N \N \N \N \N \N \N security \N ACTIVE \N 13.3437800323948 0 \N \N f 0 \N 0 53488882 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442147 2024-02-28 15:17:45.07 2024-02-28 15:27:45.933 Stage can fish building se Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory https://example.com/ 15336 \N 442147 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 24.8689371789055 0 \N \N f 0 \N 3 116765602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442300 2024-02-28 16:15:22.528 2024-02-28 16:25:23.592 Move treatment rock open. Every Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote https://example.com/ 13599 \N 442300 \N \N \N \N \N \N \N \N art \N ACTIVE \N 9.0868611703004 0 \N \N f 0 \N 0 135356771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442297 2024-02-28 16:15:09.46 2024-02-28 16:25:11.122 \N Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nSomething black staff. G https://example.com/ 6573 441691 441333.441691.442297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20092024009507 0 \N \N f 0 \N 0 116481909 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442285 2024-02-28 16:09:11.635 2024-02-28 16:19:12.837 \N Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget https://example.com/ 14152 442283 442283.442285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2824149066111 0 \N \N f 0 \N 5 141071148 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442284 2024-02-28 16:08:32.053 2024-02-28 16:18:33.616 \N Point box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nExist near ago home. Continue compare general mouth just f https://example.com/ 10342 442276 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198.442236.442256.442276.442284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7844536102219 0 \N \N f 0 \N 1 200741986 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442319 2024-02-28 16:22:33.66 2024-02-28 16:32:34.802 Should doctor pressure maybe six fight. Machine impact sys Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military. https://example.com/ 16717 \N 442319 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 5.12594826319013 0 \N \N f 0 \N 2 248768403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442322 2024-02-28 16:24:41.356 2024-02-28 16:34:42.965 \N Message throw as table worry serve investment degree. Smile after produce year Congress. https://example.com/ 2963 442318 442283.442288.442304.442317.442318.442322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2991695140505 0 \N \N f 0 \N 2 164001042 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442330 2024-02-28 16:28:37.243 2024-02-28 16:38:38.723 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep https://example.com/ 21222 441695 441695.442330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5267561109001 0 \N \N f 0 \N 2 50316309 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 440605 2024-02-27 14:30:21.44 2024-02-27 14:40:22.926 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body https://example.com/ 5520 440422 440422.440605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52524272654563 0 \N \N f 0 \N 1 32925887 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 442331 2024-02-28 16:28:37.417 2024-02-28 16:38:38.985 \N Speak street chance point. Blood most stay ask fund water. Three form c https://example.com/ 20152 440605 440422.440605.442331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.7704657335262 0 \N \N f 0 \N 0 126700760 0 f f \N \N \N \N 440422 \N 0 0 \N \N f \N 442315 2024-02-28 16:20:09.51 2024-02-28 16:30:11.348 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too https://example.com/ 20353 439147 439147.442315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3607088622899 0 \N \N f 0 \N 0 172081507 0 f f \N \N \N \N 439147 \N 0 0 \N \N f \N 442051 2024-02-28 14:34:33.32 2024-02-28 14:44:34.52 \N Morning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already de https://example.com/ 17513 439002 439002.442051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.723554989326409 0 \N \N f 0 \N 1 37761419 0 f f \N \N \N \N 439002 \N 0 0 \N \N f \N 442149 2024-02-28 15:19:23.708 2024-02-28 15:29:24.579 \N Time woman simply current community. Election old effort sign take matter hit. Team res https://example.com/ 18919 442124 442084.442109.442124.442149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2092309817229 0 \N \N f 0 \N 8 246692804 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443676 2024-02-29 15:23:47.779 2024-02-29 15:33:48.724 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Go https://example.com/ 16939 443669 443577.443613.443669.443676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1297842980237 0 \N \N f 0 \N 3 246690890 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443669 2024-02-29 15:17:26.408 2024-02-29 15:27:27.916 \N Figure foreign game ok first agreement. https://example.com/ 10270 443613 443577.443613.443669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5532046716144 0 \N \N f 0 \N 4 243261985 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 442321 2024-02-28 16:24:37.235 2024-02-28 16:34:38.906 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nFly include one ch https://example.com/ 4175 442305 441695.442224.442250.442290.442294.442305.442321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2149408905864 0 \N \N f 0 \N 0 116417281 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442332 2024-02-28 16:28:43.643 2024-02-28 16:38:44.904 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song https://example.com/ 5597 442325 442325.442332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.052338028999 0 \N \N f 0 \N 2 103454018 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442316 2024-02-28 16:20:42.783 2024-02-28 16:30:44.791 \N Never whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life https://example.com/ 18658 442051 439002.442051.442316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7100255546425 0 \N \N f 0 \N 0 32704396 0 f f \N \N \N \N 439002 \N 0 0 \N \N f \N 441944 2024-02-28 13:48:44.991 2024-02-28 13:58:45.841 Program want yeah color. Decade your pea College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult. https://example.com/ 3392 \N 441944 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 22.9583514301041 0 \N \N f 0 \N 2 189947985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441853 2024-02-28 12:47:42.295 2024-02-28 12:57:43.218 \N Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billi https://example.com/ 18008 441843 441843.441853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2242872147204 0 \N \N f 0 \N 0 33210958 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442323 2024-02-28 16:24:58.465 2024-02-28 16:34:59.508 \N Type door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent th https://example.com/ 17321 442281 442281.442323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7496852839859 0 \N \N f 0 \N 0 114116486 0 f f \N \N \N \N 442281 \N 0 0 \N \N f \N 442290 2024-02-28 16:12:30.187 2024-02-28 16:22:31.795 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career dem https://example.com/ 18232 442250 441695.442224.442250.442290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.442115335197037 0 \N \N f 0 \N 3 60212906 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442326 2024-02-28 16:26:06.079 2024-02-28 16:36:07.292 \N Travel according exa https://example.com/ 21157 442320 442313.442320.442326 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9055736628332 0 \N \N f 0 \N 1 17547919 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442340 2024-02-28 16:30:20.421 2024-02-28 16:40:21.802 \N Before wrong success power prevent notice. Hard former stock. Address rate mana https://example.com/ 5497 442326 442313.442320.442326.442340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.92319885313128 0 \N \N f 0 \N 0 108247478 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442304 2024-02-28 16:16:35.039 2024-02-28 16:26:36.755 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact re https://example.com/ 20897 442288 442283.442288.442304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5710495578146 0 \N \N f 0 \N 6 109501766 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442964 2024-02-29 01:29:36.277 2024-02-29 01:39:37.732 Community us end alone. Admit remember red study ever Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview https://example.com/ 1618 \N 442964 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 5.78658829138266 0 \N \N f 0 \N 0 203758898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442342 2024-02-28 16:30:31.915 2024-02-28 16:40:32.968 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one posi https://example.com/ 2577 442332 442325.442332.442342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.75064278656345 0 \N \N f 0 \N 0 109886998 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442213 2024-02-28 15:41:08.644 2024-02-28 15:51:10.44 \N Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wo https://example.com/ 16998 441898 440423.440591.441744.441898.442213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.478205630925 0 \N \N f 0 \N 0 119523932 0 f f \N \N \N \N 440423 \N 0 0 \N \N f \N 441744 2024-02-28 11:27:10.392 2024-02-28 11:37:12.73 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well rela https://example.com/ 4084 440591 440423.440591.441744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.78314304971407 0 \N \N f 0 \N 2 56721936 0 f f \N \N \N \N 440423 \N 0 0 \N \N f \N 442288 2024-02-28 16:11:17.909 2024-02-28 16:21:19.774 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after https://example.com/ 7425 442283 442283.442288 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3496996036144 0 \N \N f 0 \N 7 32924161 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442329 2024-02-28 16:27:34.486 2024-02-28 16:37:35.763 \N Rule focus detail financial dog. Her lawyer dr https://example.com/ 7998 442324 442283.442288.442304.442317.442318.442322.442324.442329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97280310831624 0 \N \N f 0 \N 0 86274893 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442257 2024-02-28 15:57:52.822 2024-02-28 16:07:54.23 \N Area just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year ne https://example.com/ 4973 442130 442023.442070.442086.442130.442257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.57830247696511 0 \N \N f 0 \N 0 221987022 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442334 2024-02-28 16:29:33.818 2024-02-28 16:39:34.936 \N Far they window call recent. Head light move continue evening cultural. Reason min https://example.com/ 2111 442170 442170.442334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3971126771857 0 \N \N f 0 \N 1 220510113 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442205 2024-02-28 15:38:37.022 2024-02-28 15:48:39.066 Not reveal allow arm million popular wait well. Represent into anyone bill Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least. https://example.com/ 21585 \N 442205 \N \N \N \N \N \N \N \N health \N ACTIVE \N 4.3133187582044 0 \N \N f 0 \N 1 179314814 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442357 2024-02-28 16:40:18.881 2024-02-28 16:50:20.402 \N Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save https://example.com/ 16347 442354 441951.442335.442354.442357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92873512340359 0 \N \N f 0 \N 1 233039040 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442421 2024-02-28 17:05:20.808 2024-02-28 17:15:22.01 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Resp https://example.com/ 12965 442402 442023.442402.442421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51169798729083 0 \N \N f 0 \N 0 142171437 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442359 2024-02-28 16:40:38.784 2024-02-28 16:50:40.756 \N Book environmental good western support either be. Choice another much. Car consider https://example.com/ 16769 442330 441695.442330.442359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29499862788207 0 \N \N f 0 \N 0 197444252 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442365 2024-02-28 16:45:27.455 2024-02-28 16:55:29.187 \N Move purpose well important learn population https://example.com/ 20163 441614 441533.441614.442365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8749374102267 0 \N \N f 0 \N 0 35460231 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 442338 2024-02-28 16:30:16.072 2024-02-28 16:40:17.729 \N Often culture through program memory mind go. Wr https://example.com/ 3440 442317 442283.442288.442304.442317.442338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9647244477553 0 \N \N f 0 \N 0 96094622 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442343 2024-02-28 16:31:36.294 2024-02-28 16:41:37.904 \N Light check business try. Know through structure owner. Process create Democra https://example.com/ 1647 442327 442325.442327.442343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9973561521556 0 \N \N f 0 \N 3 121933487 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442445 2024-02-28 17:17:41.489 2024-02-28 17:27:43.366 \N Yeah word become defense role yourself suddenly. Dra https://example.com/ 19664 442441 441695.442441.442445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8778831720816 0 \N \N f 0 \N 1 211570305 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442434 2024-02-28 17:13:13.282 2024-02-28 17:23:15.085 Article discussion court site share pas Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people. https://example.com/ 19043 \N 442434 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.76025143738623 0 \N \N f 0 \N 2 228791214 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442277 2024-02-28 16:04:37.06 2024-02-28 16:14:38.744 Ready which computer major take involve su Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nLeader partner among describe unit star it cold. Exist https://example.com/ 18956 \N 442277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7639642238361 0 \N \N f 0 \N 1 92107208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442360 2024-02-28 16:40:55.713 2024-02-28 16:50:57.132 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nOwn machine table garden n https://example.com/ 7998 442353 442328.442348.442353.442360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1513654809123 0 \N \N f 0 \N 1 146294305 0 f f \N \N \N \N 442328 \N 0 0 \N \N f \N 442201 2024-02-28 15:37:49.82 2024-02-28 15:47:51.093 \N Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection mem https://example.com/ 20302 442185 442163.442177.442185.442201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7096157369371 0 \N \N f 0 \N 3 57159329 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442378 2024-02-28 16:51:53.758 2024-02-28 17:01:55.167 Then voice gun. Might beau Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull su https://example.com/ 16357 \N 442378 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6006863056161 0 \N \N f 0 \N 0 144724714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442185 2024-02-28 15:33:52.718 2024-02-28 15:43:54.44 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nHot near so https://example.com/ 18396 442177 442163.442177.442185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91132304344534 0 \N \N f 0 \N 4 106851294 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 433208 2024-02-20 23:56:55.717 2024-02-21 00:06:56.858 Simply even gro Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nCommunity region she TV since sometimes know. Small wat https://example.com/ 19633 \N 433208 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 16.3458752144944 0 \N \N f 0 \N 0 189559426 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442370 2024-02-28 16:48:35.465 2024-02-28 16:58:37.073 \N Gas evening morning do of. Develop https://example.com/ 14950 441333 441333.442370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.19390598892329 0 \N \N f 0 \N 2 205263700 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442385 2024-02-28 16:54:17.233 2024-02-28 17:04:19.158 \N Build toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Lef https://example.com/ 21401 442360 442328.442348.442353.442360.442385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.48562357886421 0 \N \N f 0 \N 0 215756860 0 f f \N \N \N \N 442328 \N 0 0 \N \N f \N 442383 2024-02-28 16:54:00.355 2024-02-28 17:04:01.962 \N Respond even chair hear each. Wind those attention set fact rac https://example.com/ 20143 442341 441695.441851.442336.442341.442383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1665281211294 0 \N \N f 0 \N 0 89633957 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442336 2024-02-28 16:30:04.796 2024-02-28 16:40:06.896 \N Friend growth election water degree probably. Score spring treat institution loss research street https://example.com/ 19557 441851 441695.441851.442336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3110115857099 0 \N \N f 0 \N 2 222910589 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442372 2024-02-28 16:50:08.186 2024-02-28 17:00:09.773 \N Safe pass wife stay e https://example.com/ 14905 442254 442254.442372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5585216636502 0 \N \N f 0 \N 0 54195179 0 f f \N \N \N \N 442254 \N 0 0 \N \N f \N 442328 2024-02-28 16:27:18.075 2024-02-28 16:37:19.512 Capital treat simple ahead make study. Far Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political l https://example.com/ 15728 \N 442328 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 1.95595668608586 0 \N \N f 0 \N 4 45572921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442377 2024-02-28 16:51:52.026 2024-02-28 17:01:53.149 \N Reality four attention. Whose each design pull that wall work. Examp https://example.com/ 5036 442371 442371.442377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1979919897658 0 \N \N f 0 \N 1 135677334 0 f f \N \N \N \N 442371 \N 0 0 \N \N f \N 442429 2024-02-28 17:10:06.681 2024-02-28 17:20:08.292 \N Type door clear left. Test investment between table expect. Often reduce step https://example.com/ 19996 442154 441514.441640.441653.441733.441961.442134.442154.442429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0105502898073 0 \N \N f 0 \N 1 73236920 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442424 2024-02-28 17:06:40.54 2024-02-28 17:16:42.059 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently https://example.com/ 1003 442397 442339.442397.442424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.63249012145576 0 \N \N f 0 \N 0 132988715 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 442398 2024-02-28 16:58:08.64 2024-02-28 17:08:10.465 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others int https://example.com/ 18446 442084 442084.442398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7707818833213 0 \N \N f 0 \N 1 32599297 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442430 2024-02-28 17:11:25.833 2024-02-28 17:21:27.371 \N Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis beh https://example.com/ 5646 442409 442084.442109.442124.442149.442260.442268.442303.442345.442401.442409.442430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2298045301786 0 \N \N f 0 \N 0 234535889 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442311 2024-02-28 16:18:54.099 2024-02-28 16:28:55.276 \N Hotel black m https://example.com/ 1046 442298 442298.442311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03458348566037 0 \N \N f 0 \N 0 217009843 0 f f \N \N \N \N 442298 \N 0 0 \N \N f \N 442405 2024-02-28 17:00:02.763 2024-02-28 17:10:04.003 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nReach road deal especially down since ball score. Make either much health space https://example.com/ 10016 442084 442084.442405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91953685135533 0 \N \N f 0 \N 1 50545046 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442374 2024-02-28 16:50:52.411 2024-02-28 17:00:53.724 \N Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Si https://example.com/ 21292 442191 442191.442374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.79673331155 0 \N \N f 0 \N 2 85049430 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 442358 2024-02-28 16:40:24.921 2024-02-28 16:50:27.137 Smile paper though to catch. Situation along Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin w https://example.com/ 9341 \N 442358 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 16.0580599866731 0 \N \N f 0 \N 1 144865137 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442395 2024-02-28 16:56:56.723 2024-02-28 17:06:57.861 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child story name ch https://example.com/ 678 442388 442170.442225.442379.442388.442395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9073644332915 0 \N \N f 0 \N 1 176238653 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442403 2024-02-28 16:59:54.343 2024-02-28 17:09:55.999 \N Stand red drop occ https://example.com/ 18635 442396 442313.442396.442403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6842690595808 0 \N \N f 0 \N 0 139218034 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442450 2024-02-28 17:18:52.47 2024-02-28 17:28:54.451 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority https://example.com/ 6041 442298 442298.442450 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16994942538086 0 \N \N f 0 \N 0 206063850 0 f f \N \N \N \N 442298 \N 0 0 \N \N f \N 442415 2024-02-28 17:03:16.634 2024-02-28 17:13:18.204 \N Blue why news enjoy include movie. Artist later store film. Senior record gir https://example.com/ 21263 442375 442023.442369.442375.442415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.051129304825 0 \N \N f 0 \N 1 179216791 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442411 2024-02-28 17:02:03.367 2024-02-28 17:12:05.71 Suffer same investment. Finish play also account there indeed. Fine list Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil. https://example.com/ 3717 \N 442411 \N \N \N \N \N \N \N \N science \N ACTIVE \N 13.2720673031805 0 \N \N f 0 \N 1 247113301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441698 2024-02-28 11:00:14.02 2024-02-28 11:10:16.568 \N Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavi https://example.com/ 21441 441560 441560.441698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4529468818337 0 \N \N f 0 \N 1 116181420 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 442456 2024-02-28 17:22:37.236 2024-02-28 17:32:38.421 Strategy way low soldier. Thank think crime. Kind page begin news throw pro Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive. https://example.com/ 1316 \N 442456 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 7.95963856655408 0 \N \N f 0 \N 0 80906906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442444 2024-02-28 17:16:23.738 2024-02-28 17:26:25.435 \N C https://example.com/ 19557 442437 441695.442404.442437.442444 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8438959586181 0 \N \N f 0 \N 0 229161873 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442452 2024-02-28 17:19:00.152 2024-02-28 17:29:00.951 \N Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me soc https://example.com/ 17455 429352 429352.442452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5273565362443 0 \N \N f 0 \N 0 11692971 0 f f \N \N \N \N 429352 \N 0 0 \N \N f \N 442438 2024-02-28 17:15:04.578 2024-02-28 17:25:06.335 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid devel https://example.com/ 11819 441698 441560.441698.442438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2310754786605 0 \N \N f 0 \N 0 24997137 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 442437 2024-02-28 17:14:30.43 2024-02-28 17:24:33.166 \N Step physical establish trip. Sell finish low drop sense strategy knowledge p https://example.com/ 1552 442404 441695.442404.442437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4515696969598 0 \N \N f 0 \N 1 155575971 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442413 2024-02-28 17:03:00.342 2024-02-28 17:13:02.189 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio https://example.com/ 5776 442394 441333.442370.442394.442413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68678988370667 0 \N \N f 0 \N 0 23593259 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442431 2024-02-28 17:11:33.898 2024-02-28 17:21:35.443 \N Would r https://example.com/ 20998 442420 442084.442292.442382.442390.442420.442431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4069919513751 0 \N \N f 0 \N 0 149286198 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442524 2024-02-28 18:10:29.517 2024-02-28 18:20:31.003 \N Wind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together hist https://example.com/ 14225 442396 442313.442396.442524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.780299509799 0 \N \N f 0 \N 2 33863691 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443425 2024-02-29 13:03:04.24 2024-02-29 13:13:05.448 \N Popular https://example.com/ 8162 443399 443399.443425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0650727785978 0 \N \N f 0 \N 0 241293789 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 442458 2024-02-28 17:24:24.112 2024-02-28 17:34:25.326 \N Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child com https://example.com/ 10493 442376 442084.442289.442376.442458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5151759370333 0 \N \N f 0 \N 0 55382938 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 439576 2024-02-26 16:28:02.523 2024-02-26 16:38:03.626 \N Part dog him its government good. Growth ac https://example.com/ 3360 439489 439489.439576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90122527151659 0 \N \N f 0 \N 0 57191517 0 f f \N \N \N \N 439489 \N 0 0 \N \N f \N 442393 2024-02-28 16:56:34.245 2024-02-28 17:06:35.728 Activity itself above forget executive either choo As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice https://example.com/ 21405 \N 442393 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.74698804277 0 \N \N f 0 \N 0 146611778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442400 2024-02-28 16:59:11.586 2024-02-28 17:09:12.936 \N Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. https://example.com/ 1326 442179 442179.442400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.67265869677416 0 \N \N f 0 \N 1 50790012 0 f f \N \N \N \N 442179 \N 0 0 \N \N f \N 442457 2024-02-28 17:22:53.235 2024-02-28 17:32:54.666 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yar https://example.com/ 7827 442084 442084.442457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3305057484346 0 \N \N f 0 \N 0 23286221 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442464 2024-02-28 17:28:30.942 2024-02-28 17:38:32.327 \N Commercial loss cultural help show Mr. Citizen https://example.com/ 803 442163 442163.442464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5346145204003 0 \N \N f 0 \N 1 112725429 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442375 2024-02-28 16:51:49.755 2024-02-28 17:01:51.135 \N To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure id https://example.com/ 10862 442369 442023.442369.442375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0477677295529 0 \N \N f 0 \N 2 16753179 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442454 2024-02-28 17:20:13.823 2024-02-28 17:30:15.192 \N Down item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million eve https://example.com/ 12278 442446 441695.442446.442454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.237974035044 0 \N \N f 0 \N 0 78120570 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442487 2024-02-28 17:43:42.334 2024-02-28 17:53:43.318 \N Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point https://example.com/ 16250 442455 442084.442096.442105.442384.442425.442455.442487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0131926959585 0 \N \N f 0 \N 1 133324300 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442435 2024-02-28 17:13:32.594 2024-02-28 17:23:34.104 \N Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy phys https://example.com/ 9363 442410 442410.442435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.53932430977654 0 \N \N f 0 \N 0 225981502 0 f f \N \N \N \N 442410 \N 0 0 \N \N f \N 442472 2024-02-28 17:34:53.195 2024-02-28 17:44:54.233 \N Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about wal https://example.com/ 19929 441973 438936.438995.439041.441675.441940.441973.442472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0083356827454 0 \N \N f 0 \N 0 37573764 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 442474 2024-02-28 17:35:28.839 2024-02-28 17:45:30.354 Moment or possible there month. Myself hit name exist team herself tra Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal. https://example.com/ 18005 \N 442474 \N \N \N \N \N \N \N \N news \N ACTIVE \N 17.6331188615944 0 \N \N f 0 \N 0 101191404 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442500 2024-02-28 17:52:30.86 2024-02-28 18:02:32.57 \N Them reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nFor wrong offer a. Image bad should executive society mea https://example.com/ 17064 442434 442434.442500 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7037460340836 0 \N \N f 0 \N 0 61560488 0 f f \N \N \N \N 442434 \N 0 0 \N \N f \N 442376 2024-02-28 16:51:51.422 2024-02-28 17:01:53.147 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move https://example.com/ 18314 442289 442084.442289.442376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5396253893537 0 \N \N f 0 \N 1 197726136 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442484 2024-02-28 17:42:01.356 2024-02-28 17:52:02.643 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company fed https://example.com/ 10944 442482 442023.442469.442482.442484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8521600996479 0 \N \N f 0 \N 1 196020839 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442289 2024-02-28 16:12:01.947 2024-02-28 16:22:03.428 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead c https://example.com/ 10818 442084 442084.442289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8835205273294 0 \N \N f 0 \N 2 69223297 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442354 2024-02-28 16:38:32.886 2024-02-28 16:48:35.769 \N For wrong offer a. Image bad should executive society me https://example.com/ 688 442335 441951.442335.442354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8644006932692 0 \N \N f 0 \N 2 188091497 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442459 2024-02-28 17:25:18.77 2024-02-28 17:35:20.606 \N Anything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exis https://example.com/ 20302 442357 441951.442335.442354.442357.442459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5678203929288 0 \N \N f 0 \N 0 156772851 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442463 2024-02-28 17:28:02.823 2024-02-28 17:38:04.187 Success against price. R Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although. https://example.com/ 11821 \N 442463 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.5020290399434 0 \N \N f 0 \N 0 197641573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442468 2024-02-28 17:31:14.544 2024-02-28 17:41:16.445 \N Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nFriend https://example.com/ 19640 441447 441247.441274.441367.441419.441447.442468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.04137520261997 0 \N \N f 0 \N 2 55075534 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442465 2024-02-28 17:28:40.801 2024-02-28 17:38:42.456 \N Second point director operation. Soon face realize born head far half above. https://example.com/ 20409 442428 442306.442428.442465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.66610365815981 0 \N \N f 0 \N 2 135514225 0 f f \N \N \N \N 442306 \N 0 0 \N \N f \N 442493 2024-02-28 17:47:03.677 2024-02-28 17:57:05.294 \N Affect major fire admit technology bad add. S https://example.com/ 20854 442170 442170.442493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.189243757396653 0 \N \N f 0 \N 0 247072242 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442451 2024-02-28 17:18:52.736 2024-02-28 17:28:55.462 \N Than budget time gas choice option light. Today fill clear m https://example.com/ 21019 442434 442434.442451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.36422986610436 0 \N \N f 0 \N 0 21026708 0 f f \N \N \N \N 442434 \N 0 0 \N \N f \N 442476 2024-02-28 17:35:39.901 2024-02-28 17:45:41.468 \N A item peace although method. Ma https://example.com/ 7659 442343 442325.442327.442343.442476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0837950323975 0 \N \N f 0 \N 0 138538316 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442461 2024-02-28 17:26:03.313 2024-02-28 17:36:05.265 \N Force job https://example.com/ 654 442392 441514.441640.441653.441733.441961.442134.442154.442392.442461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9296883009725 0 \N \N f 0 \N 0 239845670 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442494 2024-02-28 17:47:54.184 2024-02-28 17:57:55.495 \N Every east political https://example.com/ 15732 442490 441695.442490.442494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0785001211507 0 \N \N f 0 \N 0 119069924 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442096 2024-02-28 14:56:15.094 2024-02-28 15:06:15.963 \N Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally att https://example.com/ 11760 442084 442084.442096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9638035918584 0 \N \N f 0 \N 6 96405870 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442469 2024-02-28 17:34:08.444 2024-02-28 17:44:09.263 \N Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard https://example.com/ 20889 442023 442023.442469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79376707012403 0 \N \N f 0 \N 3 205467567 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442478 2024-02-28 17:37:28.29 2024-02-28 17:47:29.289 \N Line trade last nature number become. Left reduce speech improve sometimes ph https://example.com/ 5036 442465 442306.442428.442465.442478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16531380751505 0 \N \N f 0 \N 1 55378062 0 f f \N \N \N \N 442306 \N 0 0 \N \N f \N 442467 2024-02-28 17:30:13.384 2024-02-28 17:40:15.437 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake https://example.com/ 20655 442432 442313.442432.442467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3463895499846 0 \N \N f 0 \N 0 97615420 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442416 2024-02-28 17:03:21.784 2024-02-28 17:13:22.664 It suggest save face though senior walk oil. Esta Single above reach it school step. Language book she but ability TV forget. Fast bring want someti https://example.com/ 21275 \N 442416 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 1.20389578330702 0 \N \N f 0 \N 2 18066037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442538 2024-02-28 18:24:52.883 2024-02-28 18:34:53.95 \N Myself candidate idea state similar above. Firm billion https://example.com/ 17275 442535 442483.442535.442538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.38341288035681 0 \N \N f 0 \N 0 106142703 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 442510 2024-02-28 18:01:21.424 2024-02-28 18:11:22.544 \N Pull fact question for https://example.com/ 1307 442490 441695.442490.442510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1253346614335 0 \N \N f 0 \N 1 212619334 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442517 2024-02-28 18:06:16.807 2024-02-28 18:16:18.587 \N Story do plant get. Bas https://example.com/ 9261 441799 441794.441799.442517 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6728804400273 0 \N \N f 0 \N 2 165985700 0 f f \N \N \N \N 441794 \N 0 0 \N \N f \N 442497 2024-02-28 17:49:10.448 2024-02-28 17:59:11.467 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development https://example.com/ 11430 442488 442170.442485.442488.442497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0623166183725 0 \N \N f 0 \N 0 122453186 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442506 2024-02-28 17:59:33.047 2024-02-28 18:09:34.919 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult https://example.com/ 12819 440882 440633.440855.440882.442506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8503230615444 0 \N \N f 0 \N 0 85432401 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 442519 2024-02-28 18:06:54.356 2024-02-28 18:16:54.984 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes https://example.com/ 21119 442509 442023.442504.442509.442519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.96731099026316 0 \N \N f 0 \N 2 119530436 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442522 2024-02-28 18:08:43.159 2024-02-28 18:18:44.727 \N Detail discussion line around. Art alo https://example.com/ 20906 442498 441695.442446.442473.442498.442522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4125773769589 0 \N \N f 0 \N 0 27888004 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442455 2024-02-28 17:21:36.86 2024-02-28 17:31:38.54 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog no https://example.com/ 696 442425 442084.442096.442105.442384.442425.442455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9286060677945 0 \N \N f 0 \N 2 109840853 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442566 2024-02-28 18:58:56.999 2024-02-28 19:08:58.126 \N Politics or often interview. Chair value threa https://example.com/ 1425 441911 441854.441877.441911.442566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1084599918017 0 \N \N f 0 \N 0 25987689 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 440882 2024-02-27 18:01:33.66 2024-02-27 18:11:36.039 \N Bag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack h https://example.com/ 1673 440855 440633.440855.440882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6001693170199 0 \N \N f 0 \N 1 54903420 0 f f \N \N \N \N 440633 \N 0 0 \N \N f \N 441896 2024-02-28 13:17:08.677 2024-02-28 13:27:10.818 \N Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book eff https://example.com/ 17927 441886 440692.441886.441896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3611415965094 0 \N \N f 0 \N 1 178469004 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441573 2024-02-28 08:25:29.804 2024-02-28 08:35:31.857 \N Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Chi https://example.com/ 15762 441567 441533.441567.441573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3376540262052 0 \N \N f 0 \N 2 7942031 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 442560 2024-02-28 18:51:17.132 2024-02-28 19:01:18.265 \N Yourself debate term during boy. Significant step line. Current learn shake nor form. Able be https://example.com/ 19878 442249 442084.442106.442117.442118.442140.442142.442249.442560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4175171397076 0 \N \N f 0 \N 0 36890552 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 441592 2024-02-28 08:51:54.801 2024-02-28 09:01:55.811 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nSouth amount subject easy office. Sea force thousand director yard someone animal https://example.com/ 825 441573 441533.441567.441573.441592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3022997724667 0 \N \N f 0 \N 1 15655949 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 442498 2024-02-28 17:49:22.68 2024-02-28 17:59:24.778 \N Financial all deep why car seat measure most. Today somebody nort https://example.com/ 9261 442473 441695.442446.442473.442498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4082234994723 0 \N \N f 0 \N 1 115461279 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442512 2024-02-28 18:04:11.081 2024-02-28 18:14:12.634 \N Side https://example.com/ 18280 442510 441695.442490.442510.442512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9083971449692 0 \N \N f 0 \N 0 73968476 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442520 2024-02-28 18:07:54.656 2024-02-28 18:17:55.956 \N General against page door. Attention although even ho https://example.com/ 20901 442517 441794.441799.442517.442520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.392266703991 0 \N \N f 0 \N 1 199771278 0 f f \N \N \N \N 441794 \N 0 0 \N \N f \N 442449 2024-02-28 17:18:45.79 2024-02-28 17:28:47.324 \N Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle pow https://example.com/ 6537 442084 442084.442449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6545677152245 0 \N \N f 0 \N 1 204627654 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442521 2024-02-28 18:08:15.438 2024-02-28 18:18:16.371 \N Scientist its surface arrive world determine according. Candidate tough appear research withi https://example.com/ 14795 442496 442496.442521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4969654370254 0 \N \N f 0 \N 0 163881527 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442460 2024-02-28 17:26:02.621 2024-02-28 17:36:04.255 \N Same need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit https://example.com/ 13143 442440 442440.442460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2846235018168 0 \N \N f 0 \N 2 73579252 0 f f \N \N \N \N 442440 \N 0 0 \N \N f \N 442507 2024-02-28 17:59:48.799 2024-02-28 18:09:50.44 \N Election parent through minute sit. Name others https://example.com/ 18731 442496 442496.442507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8238567990268 0 \N \N f 0 \N 1 198570557 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442480 2024-02-28 17:40:37.429 2024-02-28 17:50:39.665 \N Between buy half story. Buy whom significant modern air price. Deal left beyond admit https://example.com/ 21166 442023 442023.442480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64998412680369 0 \N \N f 0 \N 1 16084360 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442531 2024-02-28 18:13:53.12 2024-02-28 18:23:54.882 \N Leave example https://example.com/ 19837 442501 442501.442531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.184164256844 0 \N \N f 0 \N 1 193903405 0 f f \N \N \N \N 442501 \N 0 0 \N \N f \N 442479 2024-02-28 17:37:52.569 2024-02-28 17:47:54.298 \N Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whet https://example.com/ 13132 442449 442084.442449.442479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6569957217389 0 \N \N f 0 \N 0 87719139 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442527 2024-02-28 18:11:54.092 2024-02-28 18:21:55.405 Bring rich describe watch head position team. Common recognize in Join push remain behavior. Various song no successful own. Him director behind cold. By world probabl https://example.com/ 10536 \N 442527 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 5.41280044508223 0 \N \N f 0 \N 0 38694528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442536 2024-02-28 18:20:37.99 2024-02-28 18:30:39.534 \N Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop how https://example.com/ 16950 442534 442529.442534.442536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16875932470573 0 \N \N f 0 \N 0 196273677 0 f f \N \N \N \N 442529 \N 0 0 \N \N f \N 442532 2024-02-28 18:14:00.133 2024-02-28 18:24:01.95 \N Successful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nWe course us bank recently significant https://example.com/ 16839 441510 441176.441257.441510.442532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3758362400074 0 \N \N f 0 \N 0 35938797 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 442406 2024-02-28 17:00:03.391 2024-02-28 17:10:05.004 Grow last away wind. Mr bill do Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing https://example.com/ 10409 \N 442406 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.04546788349856 0 \N \N f 0 \N 1 114379505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442541 2024-02-28 18:28:50.078 2024-02-28 18:38:51.51 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense ma https://example.com/ 21233 442084 442084.442541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6778735698092 0 \N \N f 0 \N 1 188439889 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442346 2024-02-28 16:33:13.201 2024-02-28 16:43:14.545 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nDrive south traditional new what unit mother. Drug professional simply. Son none dau https://example.com/ 3439 441843 441843.442346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1291376061201 0 \N \N f 0 \N 2 153240876 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442534 2024-02-28 18:18:49.409 2024-02-28 18:28:50.822 \N Suffer same investment. Finish play also account there indeed. Fine list wit https://example.com/ 20179 442529 442529.442534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1036108635164 0 \N \N f 0 \N 1 27695486 0 f f \N \N \N \N 442529 \N 0 0 \N \N f \N 442546 2024-02-28 18:34:24.345 2024-02-28 18:44:25.561 \N Quite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry agains https://example.com/ 18630 442496 442496.442546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00496331712128 0 \N \N f 0 \N 0 77689052 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442550 2024-02-28 18:40:18.409 2024-02-28 18:50:20.071 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto https://example.com/ 14037 442542 441951.442542.442550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74931936509758 0 \N \N f 0 \N 0 100691868 0 f f \N \N \N \N 441951 \N 0 0 \N \N f \N 442686 2024-02-28 20:45:07.984 2024-02-28 20:55:09.214 Own machine table garden ne Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nSmall career baby democratic nation travel. Offer yard https://example.com/ 19996 \N 442686 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 12.9642964386214 0 \N \N f 0 \N 0 11192290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442554 2024-02-28 18:47:43.924 2024-02-28 18:57:45.726 \N Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wi https://example.com/ 13327 441158 441054.441158.442554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2712519500884 0 \N \N f 0 \N 0 214809433 0 f f \N \N \N \N 441054 \N 0 0 \N \N f \N 442547 2024-02-28 18:34:42.723 2024-02-28 18:44:43.656 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject https://example.com/ 5761 442163 442163.442547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5228761884384 0 \N \N f 0 \N 1 133014096 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442511 2024-02-28 18:03:12.631 2024-02-28 18:13:13.821 Soon raise sense education hold away. Whatever unit career. Party certainly un Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spr https://example.com/ 2233 \N 442511 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 7.47281121049539 0 \N \N f 0 \N 0 187681774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442190 2024-02-28 15:34:43.547 2024-02-28 15:44:44.414 \N Hotel black matter recently idea particular. https://example.com/ 18378 442120 200726.200758.200759.200827.200836.200867.442120.442190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7410274557067 0 \N \N f 0 \N 4 129187611 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 442574 2024-02-28 19:04:48.028 2024-02-28 19:14:49.978 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security tri https://example.com/ 10056 442460 442440.442460.442574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8677189837996 0 \N \N f 0 \N 1 53872038 0 f f \N \N \N \N 442440 \N 0 0 \N \N f \N 442581 2024-02-28 19:10:07.792 2024-02-28 19:20:08.913 \N Real who consider answer affect similar continue. Life almos https://example.com/ 20616 442496 442496.442581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58157728236956 0 \N \N f 0 \N 0 202153232 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442576 2024-02-28 19:07:30.32 2024-02-28 19:17:31.963 Past skin protect than court summer experience Professor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read. https://example.com/ 2640 \N 442576 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.3871362871445 0 \N \N f 0 \N 0 192766464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442563 2024-02-28 18:53:16.54 2024-02-28 19:03:18.002 \N N https://example.com/ 20713 442555 441695.442446.442473.442499.442555.442563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07333746535411 0 \N \N f 0 \N 1 211834512 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442078 2024-02-28 14:47:06.822 2024-02-28 14:57:08 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then firs https://example.com/ 9863 442068 441695.441823.442068.442078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.087233296086 0 \N \N f 0 \N 4 184760744 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442567 2024-02-28 18:59:01.158 2024-02-28 19:09:02.285 \N Understand Mr score until. Debate according weste https://example.com/ 15180 442553 442553.442567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.164267641690152 0 \N \N f 0 \N 0 182411445 0 f f \N \N \N \N 442553 \N 0 0 \N \N f \N 442466 2024-02-28 17:29:21.416 2024-02-28 17:39:23.694 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nEight represent last serious https://example.com/ 10102 442429 441514.441640.441653.441733.441961.442134.442154.442429.442466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.08658758722598 0 \N \N f 0 \N 0 35899059 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442573 2024-02-28 19:04:00.218 2024-02-28 19:14:02.063 \N Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure https://example.com/ 1718 442572 442572.442573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6660065436138 0 \N \N f 0 \N 0 169287031 0 f f \N \N \N \N 442572 \N 0 0 \N \N f \N 442611 2024-02-28 19:47:39.192 2024-02-28 19:57:40.743 \N Add bar https://example.com/ 8045 442143 442143.442611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50460449969539 0 \N \N f 0 \N 0 182542530 0 f f \N \N \N \N 442143 \N 0 0 \N \N f \N 442761 2024-02-28 21:37:12.844 2024-02-28 21:47:13.771 \N Measure wes https://example.com/ 21033 442757 442751.442757.442761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68426743843753 0 \N \N f 0 \N 0 172783600 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442548 2024-02-28 18:37:11.811 2024-02-28 18:47:13.81 Activity itself above forget executive either choo Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school. https://example.com/ 4776 \N 442548 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.90046680738408 0 \N \N f 0 \N 2 213645346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442505 2024-02-28 17:56:21.302 2024-02-28 18:06:22.42 Rule focus detail financial dog. Her lawye Person like among former sort. Only population law conferen https://example.com/ 19292 \N 442505 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.238351464323898 0 \N \N f 0 \N 0 95027887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442624 2024-02-28 20:02:21.016 2024-02-28 20:12:22.253 \N Both tell huge fine yet fall crime. Impact meet guess pr https://example.com/ 20713 442313 442313.442624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1337296616879 0 \N \N f 0 \N 0 194277951 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442577 2024-02-28 19:08:00.59 2024-02-28 19:18:01.815 \N Fish health while enjoy. Step che https://example.com/ 6383 442084 442084.442577 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2317041673836 0 \N \N f 0 \N 0 181221740 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442587 2024-02-28 19:21:06.574 2024-02-28 19:31:07.667 \N Detail me send tax knowledge. Bad police remembe https://example.com/ 20220 442483 442483.442587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4840100198254 0 \N \N f 0 \N 0 14685940 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 442605 2024-02-28 19:39:12.916 2024-02-28 19:49:13.951 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Prop https://example.com/ 1720 440988 440988.442605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62268052755937 0 \N \N f 0 \N 0 244969381 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 442592 2024-02-28 19:25:15.655 2024-02-28 19:35:16.999 \N Order care many fire per feel bill exist. Ready reach poor tru https://example.com/ 18199 442277 442277.442592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.55260255659521 0 \N \N f 0 \N 0 223640015 0 f f \N \N \N \N 442277 \N 0 0 \N \N f \N 442612 2024-02-28 19:49:02.988 2024-02-28 19:59:04.18 Own shoulder kind fact. Poor bring quite the b Them social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nAmerican animal bad responsibility current. Human company option drive alone n https://example.com/ 16542 \N 442612 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3492606893697 0 \N \N f 0 \N 0 220351431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442361 2024-02-28 16:42:30.232 2024-02-28 16:52:31.598 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure https://example.com/ 14669 442206 442206.442361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6226114221577 0 \N \N f 0 \N 0 244447964 0 f f \N \N \N \N 442206 \N 0 0 \N \N f \N 442602 2024-02-28 19:36:37.072 2024-02-28 19:46:38.596 \N Success against price. Resource end yeah https://example.com/ 21320 442526 442526.442602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78178708511319 0 \N \N f 0 \N 0 197339124 0 f f \N \N \N \N 442526 \N 0 0 \N \N f \N 442590 2024-02-28 19:24:38.205 2024-02-28 19:34:39.775 \N Kitchen already store investment near. Vote every stuff thank receive help. Rise set student o https://example.com/ 20062 442551 442551.442590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.651935519716 0 \N \N f 0 \N 0 89313636 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442584 2024-02-28 19:13:53.71 2024-02-28 19:23:55.004 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more https://example.com/ 20287 442084 442084.442584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2115907449588 0 \N \N f 0 \N 1 32181877 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442585 2024-02-28 19:15:23.253 2024-02-28 19:25:24.446 \N Plant ever Republican together picture. What nearly pattern https://example.com/ 8168 442580 442580.442585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8228136863741 0 \N \N f 0 \N 0 112637552 0 f f \N \N \N \N 442580 \N 0 0 \N \N f \N 442515 2024-02-28 18:05:47.027 2024-02-28 18:15:48.182 Better instead Go effect true such such wind market. Role suggest per https://example.com/ 16410 \N 442515 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 1.61395588112683 0 \N \N f 0 \N 2 240750202 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442433 2024-02-28 17:12:05.582 2024-02-28 17:22:07.19 Develop receive back PM. Us Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nAf https://example.com/ 4292 \N 442433 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 1.89688566735903 0 \N \N f 0 \N 0 33269605 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442630 2024-02-28 20:07:58.199 2024-02-28 20:08:03.753 \N Play single finally social almost serious. Catch bette https://example.com/ 9109 5415 5415.442630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7171226406347 0 \N \N f 0 \N 0 244245261 0 f f \N \N \N \N 5415 \N 0 0 \N \N f \N 442631 2024-02-28 20:08:00.203 2024-02-28 20:18:01.223 \N Focus area mean. Someti https://example.com/ 1039 441695 441695.442631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.214919709788 0 \N \N f 0 \N 0 101450846 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442625 2024-02-28 20:03:03.948 2024-02-28 20:13:05.37 Notice after fund police. Put environment someone remember try Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example. https://example.com/ 17741 \N 442625 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1103496859756 0 \N \N f 0 \N 1 151206520 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441370 2024-02-28 01:49:34.804 2024-02-28 01:59:36.34 It fly over au Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization. https://example.com/ 18314 \N 441370 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 5.45912512504849 0 \N \N f 0 \N 0 74818487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442610 2024-02-28 19:47:03.268 2024-02-28 19:57:04.642 \N Range network baby that. Smile common politi https://example.com/ 20730 441695 441695.442610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7565058309646 0 \N \N f 0 \N 0 53526230 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443979 2024-02-29 18:05:41.893 2024-02-29 18:15:43.184 \N Election p https://example.com/ 4819 443804 443755.443798.443804.443979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4159322528757 0 \N \N f 0 \N 0 177024899 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443981 2024-02-29 18:06:41.415 2024-02-29 18:16:42.903 \N Become full thank head blood family. Computer acco https://example.com/ 18472 443634 440891.443634.443981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.39225915066188 0 \N \N f 0 \N 0 54194146 0 f f \N \N \N \N 440891 \N 0 0 \N \N f \N 442622 2024-02-28 20:00:04.679 2024-02-28 20:10:06.306 Need huge foreign thing coach him detail sense. Rule TV else. Southern serious \N https://example.com/ 18180 \N 442622 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.8558279517764 0 \N \N f 0 \N 1 71032370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442206 2024-02-28 15:38:48.755 2024-02-28 15:48:50.58 Pretty street rather s Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current https://example.com/ 21239 \N 442206 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.9106276191668 0 \N \N f 0 \N 4 245485845 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442553 2024-02-28 18:45:49.107 2024-02-28 18:55:50.126 Person part phone rich. Cause thus insi Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect. https://example.com/ 15719 \N 442553 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5753028160097 0 \N \N f 0 \N 3 207206092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442990 2024-02-29 02:11:15.968 2024-02-29 02:21:17.414 \N Play director employee. https://example.com/ 634 215424 215424.442990 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8364970800139 0 \N \N f 0 \N 0 153341580 0 f f \N \N \N \N 215424 \N 0 0 \N \N f \N 442614 2024-02-28 19:54:14.362 2024-02-28 20:04:16.381 May building suffer accept thousand race We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us https://example.com/ 18815 \N 442614 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.33559081896856 0 \N \N f 0 \N 0 189328800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442609 2024-02-28 19:45:06.776 2024-02-28 19:55:07.967 \N End inside like them according. Surface where camera base maybe subject smil https://example.com/ 4167 441829 441749.441825.441829.442609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4868184565015 0 \N \N f 0 \N 0 30888016 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 442626 2024-02-28 20:03:06.997 2024-02-28 20:13:08.179 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes of https://example.com/ 17523 442559 442513.442559.442626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.432715104282408 0 \N \N f 0 \N 4 65963035 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 441644 2024-02-28 10:21:51.928 2024-02-28 10:31:54.262 \N Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its https://example.com/ 9099 441626 441514.441626.441644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.71173440102998 0 \N \N f 0 \N 3 161620525 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442681 2024-02-28 20:41:11.144 2024-02-28 20:51:12.901 \N Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nToday area benefit around subject nature. Girl explain crime alt https://example.com/ 21239 442313 442313.442681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.76830696963724 0 \N \N f 0 \N 0 51369749 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442773 2024-02-28 21:52:16.712 2024-02-28 22:02:18.063 \N Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. N https://example.com/ 11220 442346 441843.442346.442773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.35531484411228 0 \N \N f 0 \N 1 179791161 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442642 2024-02-28 20:15:55.706 2024-02-28 20:25:56.98 \N Right student yard protect cove https://example.com/ 775 442635 442496.442635.442642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.520844111685 0 \N \N f 0 \N 0 65599854 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442179 2024-02-28 15:30:53.908 2024-02-28 15:40:55.138 Activity just seem enter development throughout. Ago chan With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nStock already suddenly east in https://example.com/ 1316 \N 442179 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 2.94660783032374 0 \N \N f 0 \N 4 22440205 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441288 2024-02-28 00:27:29.473 2024-02-28 00:37:30.553 Cut firm blood tell decision direction. Allow allow degree discussion enjoy h They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nFly include one church TV a https://example.com/ 678 \N 441288 \N \N \N \N \N \N \N \N health \N ACTIVE \N 5.74210097146505 0 \N \N f 0 \N 2 226696515 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442654 2024-02-28 20:24:53.656 2024-02-28 20:34:55.019 \N Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. https://example.com/ 11329 442313 442313.442654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4378675760045 0 \N \N f 0 \N 0 244356674 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442655 2024-02-28 20:24:54.598 2024-02-28 20:34:57.035 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Succe https://example.com/ 18892 442649 442628.442649.442655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.74794000138861 0 \N \N f 0 \N 0 80789466 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442619 2024-02-28 19:59:37.153 2024-02-28 20:09:38.763 \N Might also begin husba https://example.com/ 16351 441896 440692.441886.441896.442619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5379890100737 0 \N \N f 0 \N 0 28417906 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 442850 2024-02-28 23:19:18.077 2024-02-28 23:29:19.311 \N Return agreement ha https://example.com/ 21365 442836 442781.442827.442836.442850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52657380370815 0 \N \N f 0 \N 0 55917709 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442634 2024-02-28 20:11:26.217 2024-02-28 20:21:27.691 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality camp https://example.com/ 12951 442562 439263.442558.442562.442634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.784620853963 0 \N \N f 0 \N 1 232920155 0 f f \N \N \N \N 439263 \N 0 0 \N \N f \N 442382 2024-02-28 16:53:39.023 2024-02-28 17:03:40.89 \N Very yes customer public music example expert. Fear would much. Necessary leader home step. Cours https://example.com/ 19777 442292 442084.442292.442382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2917178490315 0 \N \N f 0 \N 4 143368731 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442292 2024-02-28 16:12:57.615 2024-02-28 16:22:58.762 \N Which only rich free agreement. Likely co https://example.com/ 886 442084 442084.442292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6863676297364 0 \N \N f 0 \N 5 4526107 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442670 2024-02-28 20:34:05.238 2024-02-28 20:44:07.167 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes co https://example.com/ 20669 442650 442628.442639.442646.442648.442650.442670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0791813634319 0 \N \N f 0 \N 4 232930796 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442508 2024-02-28 18:00:05.535 2024-02-28 18:10:06.556 Today area benefit around subject nature. Girl explain crime althoug Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nTree political season that https://example.com/ 17095 \N 442508 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.93656315441924 0 \N \N f 0 \N 14 24029681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442647 2024-02-28 20:18:48.219 2024-02-28 20:28:49.079 \N Determine evidence bar. Evening w https://example.com/ 14503 442618 442618.442647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8867640652307 0 \N \N f 0 \N 0 57005060 0 f f \N \N \N \N 442618 \N 0 0 \N \N f \N 442653 2024-02-28 20:24:51.521 2024-02-28 20:34:53.062 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nLarge direction focus detail. When herself wish how point note everyone. Tria https://example.com/ 9169 442591 442588.442591.442653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15291512049519 0 \N \N f 0 \N 2 47855209 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N 442810 2024-02-28 22:53:52.286 2024-02-28 23:03:54.058 \N Very yes customer public music example expert. Fear wou https://example.com/ 15180 442702 442084.442702.442810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3820141553959 0 \N \N f 0 \N 0 60350619 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442691 2024-02-28 20:47:29.627 2024-02-28 20:57:31.143 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffe https://example.com/ 21532 442325 442325.442691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77705583485959 0 \N \N f 0 \N 1 84406173 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442652 2024-02-28 20:24:11.695 2024-02-28 20:34:12.919 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card dis https://example.com/ 19995 441011 440692.441011.442652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9318411077493 0 \N \N f 0 \N 0 231740805 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 442661 2024-02-28 20:30:49.836 2024-02-28 20:40:51.095 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him https://example.com/ 19378 442420 442084.442292.442382.442390.442420.442661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.581194033382 0 \N \N f 0 \N 0 207181958 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442713 2024-02-28 21:10:12.756 2024-02-28 21:20:14.011 \N Past skin protect than court s https://example.com/ 19664 442617 442580.442617.442713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3832169065821 0 \N \N f 0 \N 0 165317775 0 f f \N \N \N \N 442580 \N 0 0 \N \N f \N 442668 2024-02-28 20:33:01.298 2024-02-28 20:43:03.26 \N Travel watch https://example.com/ 5703 442641 442508.442641.442668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0919600228861 0 \N \N f 0 \N 0 52313001 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442641 2024-02-28 20:15:28.245 2024-02-28 20:25:29.701 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth https://example.com/ 11192 442508 442508.442641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88731785654696 0 \N \N f 0 \N 1 238915975 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442665 2024-02-28 20:31:50.987 2024-02-28 20:41:52.685 Cut firm blood tell dec Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy. https://example.com/ 2620 \N 442665 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.52295096259223 0 \N \N f 0 \N 1 8880369 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442649 2024-02-28 20:21:50.924 2024-02-28 20:31:53.538 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Educa https://example.com/ 20623 442628 442628.442649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.97600093344498 0 \N \N f 0 \N 1 14312158 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442671 2024-02-28 20:34:31.493 2024-02-28 20:44:32.754 \N In grow start way president as compare. Aw https://example.com/ 10490 442496 442496.442671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.2251874948845 0 \N \N f 0 \N 0 81855266 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442672 2024-02-28 20:36:23.239 2024-02-28 20:46:25.179 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nA item peace although method. Maintain follow https://example.com/ 2519 441854 441854.442672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1208902305948 0 \N \N f 0 \N 0 182931263 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442724 2024-02-28 21:19:42.854 2024-02-28 21:29:44.267 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. We https://example.com/ 9169 442508 442508.442724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3529553627059 0 \N \N f 0 \N 1 13503141 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442694 2024-02-28 20:50:02.036 2024-02-28 21:00:03.528 Travel according Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far. https://example.com/ 21342 \N 442694 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.3803012683366 0 \N \N f 0 \N 0 21843272 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442640 2024-02-28 20:15:27.473 2024-02-28 20:25:28.613 Network art go experience example him see. Half lay there up start Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern. https://example.com/ 18368 \N 442640 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7286328575912 0 \N \N f 0 \N 0 74424301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442821 2024-02-28 23:01:28.688 2024-02-28 23:11:30.387 \N Seven nice notice wife they couple. Suffer town happy https://example.com/ 4064 442769 442751.442769.442821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8257812214302 0 \N \N f 0 \N 0 215203699 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442666 2024-02-28 20:32:42.286 2024-02-28 20:42:43.891 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. https://example.com/ 12268 442589 442508.442589.442666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5886791461042 0 \N \N f 0 \N 0 58000276 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442621 2024-02-28 20:00:01.235 2024-02-28 20:10:02.848 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer neve https://example.com/ 13622 442339 442339.442621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5901048025668 0 \N \N f 0 \N 4 230679615 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 442696 2024-02-28 20:51:55.235 2024-02-28 21:01:56.842 \N Focus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interest https://example.com/ 9418 442658 442588.442591.442653.442658.442696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68742895720095 0 \N \N f 0 \N 0 79878873 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N 442327 2024-02-28 16:26:51.279 2024-02-28 16:36:53.107 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Fo https://example.com/ 21599 442325 442325.442327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33427345451442 0 \N \N f 0 \N 4 138207241 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442591 2024-02-28 19:24:57.419 2024-02-28 19:34:58.656 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold https://example.com/ 8284 442588 442588.442591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.864278166100725 0 \N \N f 0 \N 3 131589526 0 f f \N \N \N \N 442588 \N 0 0 \N \N f \N 442019 2024-02-28 14:20:52.898 2024-02-28 14:30:54.155 \N Win nothing research song data. They peace herself continue Republican for https://example.com/ 21627 441815 441815.442019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.91361958529072 0 \N \N f 0 \N 1 181623643 0 f f \N \N \N \N 441815 \N 0 0 \N \N f \N 442600 2024-02-28 19:33:28.353 2024-02-28 19:43:30.209 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nImprove different identify only radio myself. Relate little make whatever. East culture https://example.com/ 18680 442084 442084.442600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.673893921333 0 \N \N f 0 \N 3 97191275 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 441195 2024-02-27 22:51:58.311 2024-02-27 23:01:59.495 \N Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nAnswer par https://example.com/ 10398 441073 440984.441073.441195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85231269740522 0 \N \N f 0 \N 2 27598621 0 f f \N \N \N \N 440984 \N 0 0 \N \N f \N 442580 2024-02-28 19:09:28.568 2024-02-28 19:19:29.466 Respond even chair hear each. Wind those attention set fact race well. Grow https://example.com/ 21139 \N 442580 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 12.4446237680933 0 \N \N f 0 \N 3 214052976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442617 2024-02-28 19:58:25.657 2024-02-28 20:08:26.702 \N Possible late blood always bit. Plant in medi https://example.com/ 10944 442580 442580.442617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.61023529603506 0 \N \N f 0 \N 1 127383490 0 f f \N \N \N \N 442580 \N 0 0 \N \N f \N 443696 2024-02-29 15:33:48.67 2024-02-29 15:43:49.883 \N Histor https://example.com/ 20137 443402 442986.443203.443402.443696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4782234067561 0 \N \N f 0 \N 0 10124574 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 442629 2024-02-28 20:07:34.605 2024-02-28 20:17:35.957 \N Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though of https://example.com/ 9820 442625 442625.442629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6198460668677 0 \N \N f 0 \N 0 78330246 0 f f \N \N \N \N 442625 \N 0 0 \N \N f \N 442703 2024-02-28 21:03:41.835 2024-02-28 21:13:42.79 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nSmile paper though to catch. Situation along under roa https://example.com/ 910 442313 442313.442703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.40715964032658 0 \N \N f 0 \N 0 89290730 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442689 2024-02-28 20:46:08.042 2024-02-28 20:56:08.849 \N Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature ther https://example.com/ 672 442684 442339.442621.442663.442673.442684.442689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.322218440339 0 \N \N f 0 \N 0 78603447 0 f f \N \N \N \N 442339 \N 0 0 \N \N f \N 442690 2024-02-28 20:46:41.452 2024-02-28 20:56:43.174 \N Scientist our accept million student where bring trade. Someone indeed c https://example.com/ 4064 442685 441749.442685.442690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2580497631904 0 \N \N f 0 \N 0 172098178 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 442697 2024-02-28 20:52:53.346 2024-02-28 21:02:55.034 \N Treatment dream at American often d https://example.com/ 20180 442657 442657.442697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0545826204795 0 \N \N f 0 \N 0 124401217 0 f f \N \N \N \N 442657 \N 0 0 \N \N f \N 442728 2024-02-28 21:21:01.189 2024-02-28 21:31:02.451 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility cho https://example.com/ 20586 442084 442084.442728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5609303658727 0 \N \N f 0 \N 0 130067886 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442700 2024-02-28 21:00:04.075 2024-02-28 21:10:05.22 Whose eye w After way challenge. Nothing protect ground major struct https://example.com/ 19322 \N 442700 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 11.0133951177517 0 \N \N f 0 \N 0 33874325 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442712 2024-02-28 21:10:05.324 2024-02-28 21:20:07.389 \N More recently quality despite ball good https://example.com/ 2077 442705 441816.442705.442712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.15664964142203 0 \N \N f 0 \N 0 134074535 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 442733 2024-02-28 21:23:25.914 2024-02-28 21:33:27.347 \N Travel watch north career song last. Together article wind billion medical. Cause a https://example.com/ 19394 442618 442618.442733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3651101804078 0 \N \N f 0 \N 0 184176090 0 f f \N \N \N \N 442618 \N 0 0 \N \N f \N 442582 2024-02-28 19:10:21.032 2024-02-28 19:20:22.047 \N Game during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. https://example.com/ 19572 442571 442551.442571.442582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.30278882998 0 \N \N f 0 \N 1 34047648 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442735 2024-02-28 21:24:23.244 2024-02-28 21:34:24.047 \N At aud https://example.com/ 1720 442065 442065.442735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5737193325859 0 \N \N f 0 \N 0 245647030 0 f f \N \N \N \N 442065 \N 0 0 \N \N f \N 442969 2024-02-29 01:39:06.874 2024-02-29 01:49:07.835 \N Deal probably car remember hit reveal. https://example.com/ 19735 442931 442931.442969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7446631741916 0 \N \N f 0 \N 0 114743904 0 f f \N \N \N \N 442931 \N 0 0 \N \N f \N 442749 2024-02-28 21:31:09.272 2024-02-28 21:41:10.627 Floor among test material. Meet million someone f Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nTable fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter https://example.com/ 10056 \N 442749 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.9771467446984 0 \N \N f 0 \N 0 28162776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442753 2024-02-28 21:33:48.684 2024-02-28 21:43:49.971 \N Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier https://example.com/ 21194 441245 441238.441245.442753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.83875724789244 0 \N \N f 0 \N 0 244126527 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 442742 2024-02-28 21:29:19.99 2024-02-28 21:39:21.328 \N Strategy way low so https://example.com/ 4768 442163 442163.442742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9213993450402 0 \N \N f 0 \N 0 203125136 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 437454 2024-02-24 16:44:54.968 2024-02-24 16:54:56.285 Way majority believe feeling. Their see data Administration effort live any between particular friend. Raise thank https://example.com/ 6191 \N 437454 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 10.9913839372515 0 \N \N f 0 \N 9 105451918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442570 2024-02-28 19:00:44.368 2024-02-28 19:10:45.478 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her e https://example.com/ 21444 442553 442553.442570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3892248240267 0 \N \N f 0 \N 0 7876165 0 f f \N \N \N \N 442553 \N 0 0 \N \N f \N 442744 2024-02-28 21:29:48.106 2024-02-28 21:39:49.475 \N Heart such other https://example.com/ 18705 437454 437454.442744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6455330240643 0 \N \N f 0 \N 0 133597975 0 f f \N \N \N \N 437454 \N 0 0 \N \N f \N 442616 2024-02-28 19:56:44.262 2024-02-28 20:06:46.38 \N Job stage use https://example.com/ 15624 442432 442313.442432.442616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64126834486089 0 \N \N f 0 \N 0 47341401 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442677 2024-02-28 20:39:13.753 2024-02-28 20:49:14.969 \N Artist fly billion same. Go may avoid exactly since t https://example.com/ 5759 442508 442508.442677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.14494688842858 0 \N \N f 0 \N 2 31624070 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442732 2024-02-28 21:22:20.144 2024-02-28 21:32:21.559 \N Lead against area note movement street push music. Meet world on something throughout https://example.com/ 1130 442727 442513.442559.442626.442727.442732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.69379896516408 0 \N \N f 0 \N 0 19385408 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 442750 2024-02-28 21:32:22.046 2024-02-28 21:42:23.777 \N Natural read drug suggest argue. Attorney choice probably action adult partici https://example.com/ 913 420055 420055.442750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4132804740754 0 \N \N f 0 \N 0 38186148 0 f f \N \N \N \N 420055 \N 0 0 \N \N f \N 442559 2024-02-28 18:50:19.699 2024-02-28 19:00:20.482 \N Give business wind base magazine method https://example.com/ 20377 442513 442513.442559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7821931852581 0 \N \N f 0 \N 5 148449668 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 442754 2024-02-28 21:33:49.256 2024-02-28 21:43:50.977 \N Expert kind conference provide. Structure risk board profess https://example.com/ 644 442627 442627.442754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7396591865958 0 \N \N f 0 \N 1 36170050 0 f f \N \N \N \N 442627 \N 0 0 \N \N f \N 442579 2024-02-28 19:09:02.443 2024-02-28 19:19:03.887 \N About cell note lot page. Feel manage language. Road against https://example.com/ 21238 442553 442553.442579 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9187776799925 0 \N \N f 0 \N 0 50783597 0 f f \N \N \N \N 442553 \N 0 0 \N \N f \N 442779 2024-02-28 22:05:41.084 2024-02-28 22:15:42.153 Debate physical difference without Mrs price final. Nice na There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas. https://example.com/ 8870 \N 442779 \N \N \N \N \N \N \N \N art \N ACTIVE \N 13.6418130808594 0 \N \N f 0 \N 1 229520405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442771 2024-02-28 21:48:35.993 2024-02-28 21:58:37.814 \N Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. S https://example.com/ 14381 442716 442710.442716.442771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.02376093079576 0 \N \N f 0 \N 0 99946415 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442535 2024-02-28 18:19:08.582 2024-02-28 18:29:10.072 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate dif https://example.com/ 20117 442483 442483.442535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0935708090407 0 \N \N f 0 \N 1 11647654 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 432899 2024-02-20 19:01:50.831 2024-02-20 19:11:52.327 Water actually point similar. Box war specific a over Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nMedical view similar along sense sit piece. Onto at read. Close own value spend o https://example.com/ 11516 \N 432899 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 28.5493361308277 0 \N \N f 0 \N 15 24644081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442762 2024-02-28 21:37:21.946 2024-02-28 21:47:23.889 \N Face opportunity account eat program father long party. Certainly allow less professional. E https://example.com/ 4126 441854 441854.442762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85452220288614 0 \N \N f 0 \N 0 22642799 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442717 2024-02-28 21:14:15.872 2024-02-28 21:24:17.065 \N Seek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site s https://example.com/ 18265 442710 442710.442717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.139588988252761 0 \N \N f 0 \N 1 138871800 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442556 2024-02-28 18:49:11.095 2024-02-28 18:59:12.594 \N Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant par https://example.com/ 805 442313 442313.442556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.97704878971804 0 \N \N f 0 \N 0 166346012 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442778 2024-02-28 22:04:05.859 2024-02-28 22:14:07.998 Baby body day citizen change. Present identify never big charge. Street Support line change g https://example.com/ 8729 \N 442778 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 14.8162936282916 0 \N \N f 0 \N 0 111926675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442079 2024-02-28 14:47:07.544 2024-02-28 14:57:10.004 Big field certainly commun Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nAlso weight particular less set southern. Score article believe in executive lot music. https://example.com/ 2963 \N 442079 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 17.1256435831889 0 \N \N f 0 \N 0 57456040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442775 2024-02-28 21:59:08.922 2024-02-28 22:09:10.135 Miss keep probably political forget sit. Simply street put once land history. Follow commercial image consider https://example.com/ 15139 \N 442775 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 18.9943709293989 0 \N \N f 0 \N 0 155422086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440421 2024-02-27 10:59:33.253 2024-02-27 11:09:34.624 \N World kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media co https://example.com/ 8945 439111 438737.438874.439111.440421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4904467534565 0 \N \N f 0 \N 5 156754063 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 442764 2024-02-28 21:40:02.428 2024-02-28 21:50:03.983 \N Hour land give ground child range. Former receive election. Mind day scen https://example.com/ 19527 441854 441854.442764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62112751030822 0 \N \N f 0 \N 0 80226643 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 441116 2024-02-27 21:26:55.446 2024-02-27 21:36:56.77 Garden serve th Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expe https://example.com/ 21389 \N 441116 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 10.2292834254041 0 \N \N f 0 \N 0 11042955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442755 2024-02-28 21:34:36.171 2024-02-28 21:44:37.624 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain what https://example.com/ 1428 442746 441238.442729.442738.442746.442755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.706750940468 0 \N \N f 0 \N 0 142920812 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 442756 2024-02-28 21:34:57.637 2024-02-28 21:44:58.858 \N Point box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. He https://example.com/ 4166 432899 432899.442756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63809100632399 0 \N \N f 0 \N 0 98010292 0 f f \N \N \N \N 432899 \N 0 0 \N \N f \N 442747 2024-02-28 21:31:04.161 2024-02-28 21:41:05.561 \N Finally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Aga https://example.com/ 8385 442737 442513.442559.442626.442737.442747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26928933042056 0 \N \N f 0 \N 0 245229762 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 442768 2024-02-28 21:45:23.152 2024-02-28 21:55:24.784 \N Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesti https://example.com/ 9107 442717 442710.442717.442768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.108327044002 0 \N \N f 0 \N 0 142688326 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442767 2024-02-28 21:43:22.449 2024-02-28 21:53:23.666 \N Friend growth election wat https://example.com/ 10862 442763 442551.442758.442763.442767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01820071382826 0 \N \N f 0 \N 0 195002647 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442731 2024-02-28 21:21:40.108 2024-02-28 21:31:41.023 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situ https://example.com/ 19036 442551 442551.442731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0214307923669566 0 \N \N f 0 \N 1 86649887 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442765 2024-02-28 21:41:42.973 2024-02-28 21:51:44.404 \N Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nField eat man but religious close. Sort vote hair travel. Wonder c https://example.com/ 2952 157029 157029.442765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7547696934152 0 \N \N f 0 \N 0 216066332 0 f f \N \N \N \N 157029 \N 0 0 \N \N f \N 442770 2024-02-28 21:48:25.949 2024-02-28 21:58:27.668 \N Gener https://example.com/ 20157 442724 442508.442724.442770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38329000055904 0 \N \N f 0 \N 0 70359581 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442788 2024-02-28 22:18:45.135 2024-02-28 22:28:46.314 \N Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make https://example.com/ 19118 442781 442781.442788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7233356965874 0 \N \N f 0 \N 1 109891409 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442862 2024-02-28 23:26:16.987 2024-02-28 23:36:18.168 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment https://example.com/ 9276 442848 442710.442848.442862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5625428549389 0 \N \N f 0 \N 0 78995982 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442539 2024-02-28 18:25:26.309 2024-02-28 18:35:28.014 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I https://example.com/ 678 442332 442325.442332.442539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0064277693881 0 \N \N f 0 \N 0 79336820 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442766 2024-02-28 21:42:11.507 2024-02-28 21:52:12.691 \N Play director employee. Tend central those now store dro https://example.com/ 19995 442721 442710.442721.442766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.39815651369461 0 \N \N f 0 \N 0 164477131 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442675 2024-02-28 20:37:44.713 2024-02-28 20:47:46.988 \N At within eye play https://example.com/ 18714 442657 442657.442675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3651566847935 0 \N \N f 0 \N 0 105987233 0 f f \N \N \N \N 442657 \N 0 0 \N \N f \N 442797 2024-02-28 22:34:48.644 2024-02-28 22:44:50.091 \N Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot https://example.com/ 656 442796 442796.442797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80608190221397 0 \N \N f 0 \N 2 146314991 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 442804 2024-02-28 22:44:42.91 2024-02-28 22:54:44.084 \N Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill how https://example.com/ 2206 442788 442781.442788.442804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7713689811255 0 \N \N f 0 \N 0 230284636 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442790 2024-02-28 22:19:24.594 2024-02-28 22:29:26.02 \N Fund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nea https://example.com/ 2741 442710 442710.442790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7394511126754 0 \N \N f 0 \N 1 178575434 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442615 2024-02-28 19:56:17.926 2024-02-28 20:06:19.282 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. A https://example.com/ 7659 442176 441843.441979.442087.442092.442099.442108.442129.442139.442169.442176.442615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.49247217076459 0 \N \N f 0 \N 1 180212067 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442643 2024-02-28 20:16:09.447 2024-02-28 20:26:11.129 \N Politics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money https://example.com/ 17275 442615 441843.441979.442087.442092.442099.442108.442129.442139.442169.442176.442615.442643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5513083829522 0 \N \N f 0 \N 0 48137922 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442699 2024-02-28 20:55:14.621 2024-02-28 21:05:15.377 Much wait girl sport picture clearly bank. Only American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind. https://example.com/ 9353 \N 442699 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.12078964795394 0 \N \N f 0 \N 0 119390739 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444217 2024-02-29 20:28:10.726 2024-02-29 20:38:12.196 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such tr https://example.com/ 18225 444036 444036.444217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4982195352145 0 \N \N f 0 \N 0 83379547 0 f f \N \N \N \N 444036 \N 0 0 \N \N f \N 442777 2024-02-28 22:00:56.248 2024-02-28 22:10:57.655 \N Customer include control and. Chance blue audience right could co https://example.com/ 5978 442760 442741.442760.442777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.4659755233516 0 \N \N f 0 \N 0 149870349 0 f f \N \N \N \N 442741 \N 0 0 \N \N f \N 442780 2024-02-28 22:06:00.206 2024-02-28 22:16:01.628 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Go https://example.com/ 9669 442779 442779.442780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5052109694839 0 \N \N f 0 \N 0 169595276 0 f f \N \N \N \N 442779 \N 0 0 \N \N f \N 442782 2024-02-28 22:07:08.82 2024-02-28 22:17:10.513 \N Outside https://example.com/ 18311 442313 442313.442782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6895635910248 0 \N \N f 0 \N 0 61263712 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442772 2024-02-28 21:51:47.01 2024-02-28 22:01:48.162 \N Never able over relate dark up dinner. Same daughter everyo https://example.com/ 4521 442769 442751.442769.442772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9004818005615 0 \N \N f 0 \N 0 168039008 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442745 2024-02-28 21:30:07.747 2024-02-28 21:40:09.544 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could centr https://example.com/ 976 442633 441843.442633.442745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1791046402261 0 \N \N f 0 \N 0 186586085 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442832 2024-02-28 23:08:43.47 2024-02-28 23:18:44.524 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front wi https://example.com/ 8284 442815 442751.442815.442832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04017025042125 0 \N \N f 0 \N 0 172446642 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442708 2024-02-28 21:08:34.88 2024-02-28 21:18:35.867 Idea seem tend attack act common her run. Style there improve point culture c Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between. https://example.com/ 20663 \N 442708 \N \N \N \N \N \N \N \N health \N ACTIVE \N 20.8801938529998 0 \N \N f 0 \N 0 14373006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442784 2024-02-28 22:09:27.764 2024-02-28 22:19:30.035 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen s https://example.com/ 18270 442710 442710.442784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7004076194733 0 \N \N f 0 \N 1 106288111 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442683 2024-02-28 20:42:32.625 2024-02-28 20:52:35.051 \N Push recently lay whose. W https://example.com/ 674 442636 442636.442683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7932171291768 0 \N \N f 0 \N 1 104260861 0 f f \N \N \N \N 442636 \N 0 0 \N \N f \N 442801 2024-02-28 22:42:12.351 2024-02-28 22:52:13.846 \N Material arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nWould role them w https://example.com/ 8326 442584 442084.442584.442801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.6293544795968 0 \N \N f 0 \N 0 89723512 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442721 2024-02-28 21:17:21.249 2024-02-28 21:27:23.246 \N Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nFamily material upon Democrat. The remain appear information d https://example.com/ 9200 442710 442710.442721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.71582906335157 0 \N \N f 0 \N 3 128382964 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442791 2024-02-28 22:23:43.507 2024-02-28 22:33:44.658 \N Al https://example.com/ 15941 442781 442781.442791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9416497788263 0 \N \N f 0 \N 0 104749071 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 443435 2024-02-29 13:08:31.337 2024-02-29 13:18:33.182 \N Fear size with rich skin decade community. Front either election mouth. Trip care a https://example.com/ 18717 443419 443367.443419.443435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7925914534549 0 \N \N f 0 \N 0 219165650 0 f f \N \N \N \N 443367 \N 0 0 \N \N f \N 443419 2024-02-29 12:57:46.572 2024-02-29 13:07:47.679 \N News half employee read cause story amount. My any why radio https://example.com/ 5387 443367 443367.443419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5019302965472 0 \N \N f 0 \N 1 203917163 0 f f \N \N \N \N 443367 \N 0 0 \N \N f \N 443441 2024-02-29 13:12:45.225 2024-02-29 13:22:47.035 \N Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. P https://example.com/ 20340 443194 441176.442104.443194.443441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81979455596714 0 \N \N f 0 \N 2 19926467 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 443415 2024-02-29 12:52:40.272 2024-02-29 13:02:41.238 \N Majority member tend give recent. Degree body five society l https://example.com/ 6383 443187 443187.443415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2502321206613 0 \N \N f 0 \N 1 61847479 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 442829 2024-02-28 23:07:20.735 2024-02-28 23:17:22.116 \N Main teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on sup https://example.com/ 20969 442084 442084.442829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3421242422988 0 \N \N f 0 \N 0 118663613 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442840 2024-02-28 23:11:43.456 2024-02-28 23:21:44.962 \N Hot society statement bed watch party himself firm. Attention type note difficult fo https://example.com/ 937 442786 442781.442786.442840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.05653875640874 0 \N \N f 0 \N 0 211942399 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442874 2024-02-28 23:34:35.528 2024-02-28 23:44:37.081 \N Reality deal sort professional try him product. People writer religiou https://example.com/ 21172 442781 442781.442874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.25525132133509 0 \N \N f 0 \N 0 134596085 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442795 2024-02-28 22:32:24.48 2024-02-28 22:42:26.033 \N Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack reme https://example.com/ 9347 442751 442751.442795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5927965658662 0 \N \N f 0 \N 0 213694184 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442805 2024-02-28 22:45:32.5 2024-02-28 22:55:34.037 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose https://example.com/ 20560 442065 442065.442805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6963795598632 0 \N \N f 0 \N 1 5934704 0 f f \N \N \N \N 442065 \N 0 0 \N \N f \N 442781 2024-02-28 22:06:53.535 2024-02-28 22:16:54.716 Lay garden sing air theory. Item simply month gue Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nPer over executive. Happy involve mission just https://example.com/ 21441 \N 442781 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9287364949125 0 \N \N f 0 \N 27 236922863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442844 2024-02-28 23:15:41.524 2024-02-28 23:25:42.832 \N Side project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nArtist sound retu https://example.com/ 19777 442803 442751.442803.442844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.592617704910516 0 \N \N f 0 \N 0 240264407 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442823 2024-02-28 23:03:00.876 2024-02-28 23:13:02.145 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nStep physical establish trip. Sell finish l https://example.com/ 19941 442710 442710.442823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0972438289836 0 \N \N f 0 \N 1 194517766 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442786 2024-02-28 22:16:24.013 2024-02-28 22:26:25.536 \N Summer past television what in. Find give movement certain vis https://example.com/ 21343 442781 442781.442786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0767283913016 0 \N \N f 0 \N 2 11457753 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442827 2024-02-28 23:06:15.623 2024-02-28 23:25:30.861 \N Detail discussion l https://example.com/ 14247 442781 442781.442827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5310788445686 0 \N \N f 0 \N 2 176243940 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442835 2024-02-28 23:09:42.642 2024-02-28 23:19:44.282 \N Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly https://example.com/ 20310 442704 442704.442835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1919220455807 0 \N \N f 0 \N 1 148935433 0 f f \N \N \N \N 442704 \N 0 0 \N \N f \N 441334 2024-02-28 01:21:05.393 2024-02-28 01:31:07.04 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. A https://example.com/ 18473 441247 441247.441334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0239709507924 0 \N \N f 0 \N 1 33573897 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442836 2024-02-28 23:09:43.001 2024-02-28 23:19:46.299 \N Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup https://example.com/ 8287 442827 442781.442827.442836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.92499831870909 0 \N \N f 0 \N 1 238636097 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442856 2024-02-28 23:23:13.683 2024-02-28 23:33:14.859 \N Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report https://example.com/ 14651 442751 442751.442856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6472252593976 0 \N \N f 0 \N 2 53040274 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442812 2024-02-28 22:55:28.072 2024-02-28 23:05:29.371 \N Meet poor south nor degree serious https://example.com/ 20599 441695 441695.442812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55588175430203 0 \N \N f 0 \N 0 207825363 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442864 2024-02-28 23:27:09.819 2024-02-28 23:37:10.969 \N By evening job should nature really. Cut black mother financial https://example.com/ 19038 441571 441571.442864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1953343448956 0 \N \N f 0 \N 0 151938920 0 f f \N \N \N \N 441571 \N 0 0 \N \N f \N 442645 2024-02-28 20:18:03.759 2024-02-28 20:28:04.787 \N Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nJ https://example.com/ 21164 441288 441288.442645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2933799765421 0 \N \N f 0 \N 1 155671253 0 f f \N \N \N \N 441288 \N 0 0 \N \N f \N 442736 2024-02-28 21:25:18.321 2024-02-28 21:35:19.867 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesti https://example.com/ 18751 442731 442551.442731.442736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8226771448811 0 \N \N f 0 \N 0 40745736 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442793 2024-02-28 22:28:26.489 2024-02-28 22:38:27.819 \N Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear https://example.com/ 2390 442781 442781.442793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.878409515358847 0 \N \N f 0 \N 2 79598795 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 441910 2024-02-28 13:26:50.827 2024-02-28 13:36:52.06 Work suddenly pick. Interesting check state. Security low human career say cam Right view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter. https://example.com/ 20987 \N 441910 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 18.3365116040173 0 \N \N f 0 \N 0 152095841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442898 2024-02-28 23:52:09.581 2024-02-29 00:02:10.518 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Re https://example.com/ 7553 442665 442665.442898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.9551538618781 0 \N \N f 0 \N 0 235063842 0 f f \N \N \N \N 442665 \N 0 0 \N \N f \N 442816 2024-02-28 23:00:00.437 2024-02-28 23:10:02.159 \N Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full wor https://example.com/ 4173 442483 442483.442816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.24982417841365 0 \N \N f 0 \N 4 173697904 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 442861 2024-02-28 23:26:09.429 2024-02-28 23:36:10.98 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Than https://example.com/ 19117 442854 442751.442854.442861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21530156308604 0 \N \N f 0 \N 0 19954228 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 441571 2024-02-28 08:24:24.161 2024-02-28 08:34:25.303 Police civil here think minute economic. Let father police. Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin https://example.com/ 12422 \N 441571 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1631134789623 0 \N \N f 0 \N 2 21682197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442802 2024-02-28 22:42:53.831 2024-02-28 22:52:55.198 \N Perform might someone represent where not main. Get https://example.com/ 14376 442710 442710.442802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0162850959931 0 \N \N f 0 \N 0 172884647 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442882 2024-02-28 23:39:58.335 2024-02-28 23:49:59.422 \N Mention trip s https://example.com/ 18138 442656 442656.442882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.810470349075 0 \N \N f 0 \N 0 112526159 0 f f \N \N \N \N 442656 \N 0 0 \N \N f \N 442787 2024-02-28 22:16:58.786 2024-02-28 22:27:00.433 \N Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. https://example.com/ 14663 442781 442781.442787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9161381550148 0 \N \N f 0 \N 0 153302954 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442868 2024-02-28 23:29:34.6 2024-02-28 23:39:36.153 \N Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nHouse west amount. Again high already himself answer type. Go back https://example.com/ 21430 442710 442710.442868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.449552599695 0 \N \N f 0 \N 0 107889343 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442871 2024-02-28 23:33:09.436 2024-02-28 23:43:11.116 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. https://example.com/ 21070 442845 442710.442845.442871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.173485233856 0 \N \N f 0 \N 0 97468439 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442345 2024-02-28 16:32:47.426 2024-02-28 16:42:48.862 \N Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual h https://example.com/ 19501 442303 442084.442109.442124.442149.442260.442268.442303.442345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67381398609441 0 \N \N f 0 \N 4 219177431 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442878 2024-02-28 23:36:51.088 2024-02-28 23:46:52.605 \N Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between fin https://example.com/ 10536 442808 442084.442603.442808.442878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2539975507434 0 \N \N f 0 \N 0 26227091 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442723 2024-02-28 21:18:49.987 2024-02-28 21:28:51.522 Foot not wonder myself eat student arrive. Sell election provide carry father Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide. https://example.com/ 21040 \N 442723 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.5483217816705 0 \N \N f 0 \N 0 178493726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442603 2024-02-28 19:38:32.981 2024-02-28 19:48:33.99 \N Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nProduct analysis affect certainly happy. Plan cup case https://example.com/ 5852 442084 442084.442603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.42560253308457 0 \N \N f 0 \N 2 221327395 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442872 2024-02-28 23:33:29.952 2024-02-28 23:43:31.2 \N Message throw as table worry serve investment degree. Smi https://example.com/ 13798 442781 442781.442872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7966728696452 0 \N \N f 0 \N 3 169865272 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442891 2024-02-28 23:47:43.782 2024-02-28 23:57:44.912 \N Board age miss drug sense. Take here som https://example.com/ 18500 442872 442781.442872.442891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.08059255995983 0 \N \N f 0 \N 2 156768649 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442893 2024-02-28 23:49:40.746 2024-02-28 23:59:42.582 \N Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin so https://example.com/ 21498 442889 442796.442885.442889.442893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9857471180299 0 \N \N f 0 \N 0 121531104 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 442897 2024-02-28 23:51:08.444 2024-02-29 00:01:09.39 \N Model fall part. Teach why have read tonight technology establish note. Region born wit https://example.com/ 5829 442632 442632.442897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3749714727377 0 \N \N f 0 \N 1 80810215 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 441783 2024-02-28 11:50:39.256 2024-02-28 12:00:41.072 \N Than budget time gas choice option light. Today fill clear machine. Opportunity firm https://example.com/ 8284 440622 440622.441783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31696749533273 0 \N \N f 0 \N 1 146891749 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 442722 2024-02-28 21:18:02.355 2024-02-28 21:28:03.702 Watch tell middle above. Happen move consider across my Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page. https://example.com/ 2773 \N 442722 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0328199743895 0 \N \N f 0 \N 0 198244908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442933 2024-02-29 00:38:40.798 2024-02-29 00:48:41.761 \N Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something https://example.com/ 1213 442636 442636.442933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8471931933307 0 \N \N f 0 \N 0 41406958 0 f f \N \N \N \N 442636 \N 0 0 \N \N f \N 442660 2024-02-28 20:30:13.244 2024-02-28 20:40:15.604 \N Develop receive back PM. Use arrive best police poor. Rise class person https://example.com/ 17001 442657 442657.442660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.28102277878043 0 \N \N f 0 \N 0 153641213 0 f f \N \N \N \N 442657 \N 0 0 \N \N f \N 442737 2024-02-28 21:25:42.607 2024-02-28 21:35:43.774 \N Network art go experience example him see. Half lay there up start dream nice. Expert par https://example.com/ 18114 442626 442513.442559.442626.442737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14782393213522 0 \N \N f 0 \N 1 170190188 0 f f \N \N \N \N 442513 \N 0 0 \N \N f \N 442845 2024-02-28 23:16:27.289 2024-02-28 23:26:28.986 \N Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Av https://example.com/ 14909 442710 442710.442845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0642907379396 0 \N \N f 0 \N 1 232490037 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442879 2024-02-28 23:38:29.153 2024-02-28 23:48:30.544 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last https://example.com/ 5538 442790 442710.442790.442879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0843141300626 0 \N \N f 0 \N 0 103114673 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442808 2024-02-28 22:47:22.251 2024-02-28 22:57:24.128 \N We course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselv https://example.com/ 21207 442603 442084.442603.442808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6747826849433 0 \N \N f 0 \N 1 222499490 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442883 2024-02-28 23:40:22.404 2024-02-28 23:50:23.077 \N Wrong according some him. Foot https://example.com/ 19403 442870 442781.442870.442883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.09447217597236 0 \N \N f 0 \N 0 183107346 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442401 2024-02-28 16:59:33.482 2024-02-28 17:09:34.959 \N With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to plac https://example.com/ 16679 442345 442084.442109.442124.442149.442260.442268.442303.442345.442401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9932311293656 0 \N \N f 0 \N 3 219401518 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442620 2024-02-28 19:59:50.342 2024-02-28 20:09:51.862 Power herself life always. Specific but learn its medical. Fill beautifu Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nEver small reduce evidence quickly again true. Record heart enjoy social https://example.com/ 725 \N 442620 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2190135633875 0 \N \N f 0 \N 0 227800902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442895 2024-02-28 23:50:15.667 2024-02-29 00:00:19.688 \N Race report base really very afte https://example.com/ 20109 442822 442796.442797.442822.442895 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1511938546123 0 \N \N f 0 \N 0 74085334 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 442885 2024-02-28 23:42:06.483 2024-02-28 23:52:07.43 \N Take carry discuss possible. Little Mrs subject generation politics https://example.com/ 9418 442796 442796.442885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0909345381185 0 \N \N f 0 \N 2 194959959 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 442869 2024-02-28 23:30:59.573 2024-02-28 23:41:00.831 \N Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help lev https://example.com/ 1480 442710 442710.442869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.62862156538753 0 \N \N f 0 \N 2 136671676 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442888 2024-02-28 23:44:09.605 2024-02-28 23:54:10.857 \N Recent yourself https://example.com/ 6382 442800 442800.442888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5304735849196 0 \N \N f 0 \N 0 235456143 0 f f \N \N \N \N 442800 \N 0 0 \N \N f \N 442884 2024-02-28 23:41:43.587 2024-02-28 23:51:45.172 \N Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear https://example.com/ 13878 442869 442710.442869.442884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9251319908113 0 \N \N f 0 \N 0 207073560 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442557 2024-02-28 18:49:17.31 2024-02-28 18:59:18.861 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nMoney rise give serve will exp https://example.com/ 684 442401 442084.442109.442124.442149.442260.442268.442303.442345.442401.442557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85416147093602 0 \N \N f 0 \N 0 143792843 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442859 2024-02-28 23:25:17.046 2024-02-28 23:35:18.261 System lose thought. Hi Beyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree. https://example.com/ 19435 \N 442859 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 18.426444634221 0 \N \N f 0 \N 2 115016594 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442260 2024-02-28 15:58:27.527 2024-02-28 16:08:28.924 \N Agency p https://example.com/ 669 442149 442084.442109.442124.442149.442260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0060029988636 0 \N \N f 0 \N 7 129659870 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 441367 2024-02-28 01:46:55.474 2024-02-28 01:56:56.945 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director https://example.com/ 19511 441274 441247.441274.441367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6509204692356 0 \N \N f 0 \N 6 111526272 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442138 2024-02-28 15:10:52.171 2024-02-28 15:20:54.232 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity https://example.com/ 14195 442124 442084.442109.442124.442138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0607633624073 0 \N \N f 0 \N 2 173120535 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442905 2024-02-29 00:03:27.77 2024-02-29 00:13:29.696 \N Standard choose white. Yard would college https://example.com/ 831 442468 441247.441274.441367.441419.441447.442468.442905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.42324026748069 0 \N \N f 0 \N 0 111092205 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442268 2024-02-28 16:01:30.4 2024-02-28 16:11:32.556 \N Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into https://example.com/ 20257 442260 442084.442109.442124.442149.442260.442268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.12528975220955 0 \N \N f 0 \N 6 139570474 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442758 2024-02-28 21:35:06.906 2024-02-28 21:45:08.048 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significa https://example.com/ 5520 442551 442551.442758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9207386970139 0 \N \N f 0 \N 2 48902127 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442902 2024-02-28 23:57:35.902 2024-02-29 00:07:37.732 \N Third would https://example.com/ 649 442890 442628.442639.442646.442648.442890.442902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.84335141632882 0 \N \N f 0 \N 0 191642653 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442516 2024-02-28 18:06:08.521 2024-02-28 18:16:09.761 \N Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be brea https://example.com/ 7960 442325 442325.442516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51929893870961 0 \N \N f 0 \N 0 223024178 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 442886 2024-02-28 23:42:14.215 2024-02-28 23:52:15.542 \N Southern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nHit decade night. Ball https://example.com/ 16684 442508 442508.442886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6483582947918 0 \N \N f 0 \N 0 191376249 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442834 2024-02-28 23:09:10.456 2024-02-28 23:19:11.818 \N Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rath https://example.com/ 6202 442828 442628.442639.442646.442648.442650.442670.442824.442828.442834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.0374915259724 0 \N \N f 0 \N 1 242464617 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 443705 2024-02-29 15:37:24.822 2024-02-29 15:47:25.996 \N Provide enjoy appear these. What care if deg https://example.com/ 1692 443683 443683.443705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1710249575423 0 \N \N f 0 \N 0 165322102 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 443726 2024-02-29 15:52:11.363 2024-02-29 16:02:12.843 \N News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church win https://example.com/ 10342 443288 443288.443726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47984894271154 0 \N \N f 0 \N 1 226212933 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 443748 2024-02-29 16:07:54.322 2024-02-29 16:17:56.384 \N Power this as. Time Republican goal trade program. Kitchen theory p https://example.com/ 6384 443652 443372.443652.443748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79835461381584 0 \N \N f 0 \N 0 150500141 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 442693 2024-02-28 20:48:04.952 2024-02-28 20:58:07.08 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century https://example.com/ 21314 442343 442325.442327.442343.442693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34701892706732 0 \N \N f 0 \N 0 119858485 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 440907 2024-02-27 18:36:00.202 2024-02-27 18:46:02.198 Exist near ago Wide hundred paper early. T https://example.com/ 4502 \N 440907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7005879168827 0 \N \N f 0 \N 5 230063816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442925 2024-02-29 00:30:06.448 2024-02-29 00:40:07.34 \N End inside like them according. Sur https://example.com/ 18393 442919 442919.442925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5225613189847 0 \N \N f 0 \N 1 182831743 0 f f \N \N \N \N 442919 \N 0 0 \N \N f \N 441419 2024-02-28 03:20:39.123 2024-02-28 03:30:40.728 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff presid https://example.com/ 1320 441367 441247.441274.441367.441419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94610173655561 0 \N \N f 0 \N 4 32971628 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442826 2024-02-28 23:05:16.792 2024-02-28 23:15:18.309 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside au https://example.com/ 20681 442468 441247.441274.441367.441419.441447.442468.442826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4260768226625 0 \N \N f 0 \N 0 147462098 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443742 2024-02-29 16:02:53.118 2024-02-29 16:12:54.277 \N Director policy industry. Degree wall believe https://example.com/ 2338 443729 443577.443729.443742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8995817623174 0 \N \N f 0 \N 5 144314856 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443740 2024-02-29 16:01:47.087 2024-02-29 16:11:48.285 \N Increase section kind decision https://example.com/ 20990 443726 443288.443726.443740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27758243842939 0 \N \N f 0 \N 0 158697236 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 443786 2024-02-29 16:26:27.882 2024-02-29 16:36:29.635 \N Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Min https://example.com/ 17741 443753 443545.443753.443786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1478198505827 0 \N \N f 0 \N 1 62224918 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 442704 2024-02-28 21:06:37.288 2024-02-28 21:16:39.082 Edge card save. Whether manager always h They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nFly run executive. Reach next best m https://example.com/ 1273 \N 442704 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 18.2676199929491 0 \N \N f 0 \N 2 37330072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443792 2024-02-29 16:28:36.355 2024-02-29 16:38:37.289 \N Instead believe anima https://example.com/ 3360 443661 442982.443581.443587.443661.443792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1012633685483 0 \N \N f 0 \N 1 60478205 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 441312 2024-02-28 00:54:01.135 2024-02-28 01:04:02.148 \N Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nPlant development someone include maybe. Address https://example.com/ 8916 441247 441247.441312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.560128563824378 0 \N \N f 0 \N 2 233324118 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442702 2024-02-28 21:03:13.467 2024-02-28 21:13:15.425 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record c https://example.com/ 4314 442084 442084.442702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54392360682456 0 \N \N f 0 \N 1 27243942 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 440268 2024-02-27 06:12:52.325 2024-02-27 06:22:53.804 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer alrea https://example.com/ 17321 440044 438936.439563.439744.440044.440268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44263170204501 0 \N \N f 0 \N 4 5691589 0 f f \N \N \N \N 438936 \N 0 0 \N \N f \N 442143 2024-02-28 15:16:31.896 2024-02-28 15:50:17.333 Hold show assume Seven which nature charge. Today ra https://example.com/ 20087 \N 442143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.63170967100515 0 \N \N f 0 \N 6 240288743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442425 2024-02-28 17:07:10.278 2024-02-28 17:17:11.684 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nStructur https://example.com/ 3686 442384 442084.442096.442105.442384.442425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2232688172741 0 \N \N f 0 \N 3 110241079 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442928 2024-02-29 00:33:55.666 2024-02-29 00:43:56.317 \N We course us bank recently s https://example.com/ 2942 442919 442919.442928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2534599151644 0 \N \N f 0 \N 0 105674407 0 f f \N \N \N \N 442919 \N 0 0 \N \N f \N 442503 2024-02-28 17:55:34.916 2024-02-28 18:05:36.556 \N Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her exp https://example.com/ 2042 442084 442084.442503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1647296158936 0 \N \N f 0 \N 0 217020684 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442133 2024-02-28 15:09:10.569 2024-02-28 15:19:12.381 \N Leave example https://example.com/ 6268 442065 442065.442133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2917112677859 0 \N \N f 0 \N 0 122730945 0 f f \N \N \N \N 442065 \N 0 0 \N \N f \N 442959 2024-02-29 01:21:09.845 2024-02-29 01:31:10.953 \N Range happen field e https://example.com/ 16680 442710 442710.442959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5845039500791 0 \N \N f 0 \N 0 244593271 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442208 2024-02-28 15:39:10.286 2024-02-28 15:49:12.363 \N Window here second. Series line effect. O https://example.com/ 10698 442201 442163.442177.442185.442201.442208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7286746123557 0 \N \N f 0 \N 0 219219091 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442396 2024-02-28 16:57:00.934 2024-02-28 17:07:01.894 \N Blue the that local central middle themselves effect. Concern sea https://example.com/ 687 442313 442313.442396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5793924654228 0 \N \N f 0 \N 6 48912087 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442940 2024-02-29 00:50:45.926 2024-02-29 01:00:47.014 \N To reduce each wall they raise trave https://example.com/ 19153 442939 442904.442939.442940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4319591984918 0 \N \N f 0 \N 0 16958128 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 442913 2024-02-29 00:13:14.11 2024-02-29 00:23:15.721 \N Success against price. Resource end https://example.com/ 2188 442904 442904.442913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.07922003873204 0 \N \N f 0 \N 1 74411558 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 442809 2024-02-28 22:52:07.288 2024-02-28 23:02:08.929 \N Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several https://example.com/ 763 442544 442084.442544.442809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38558670646286 0 \N \N f 0 \N 1 134445763 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442922 2024-02-29 00:25:24.91 2024-02-29 00:35:26.255 \N Eye million figure now as collection. During report tree public must article expect https://example.com/ 5942 442920 442904.442920.442922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1490163932191 0 \N \N f 0 \N 0 92316856 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 441813 2024-02-28 12:16:35.153 2024-02-28 12:26:36.833 \N A https://example.com/ 16356 441811 441695.441699.441738.441754.441771.441811.441813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7292809169376 0 \N \N f 0 \N 0 100693076 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443741 2024-02-29 16:02:51.35 2024-02-29 16:12:52.261 \N Technolog https://example.com/ 20066 443734 443734.443741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.610143445336 0 \N \N f 0 \N 0 122788172 0 f f \N \N \N \N 443734 \N 0 0 \N \N f \N 443735 2024-02-29 15:59:53.9 2024-02-29 16:09:54.757 \N Financial all https://example.com/ 17682 443728 443577.443728.443735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.45955645347128 0 \N \N f 0 \N 0 114296566 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 442917 2024-02-29 00:23:38.104 2024-02-29 00:33:39.581 \N International yourself available fight dream draw. Low win research https://example.com/ 14795 442914 442912.442914.442917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90416787053181 0 \N \N f 0 \N 0 69151715 0 f f \N \N \N \N 442912 \N 0 0 \N \N f \N 442876 2024-02-28 23:36:24.61 2024-02-28 23:46:26.269 \N Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas cl https://example.com/ 9863 442820 442820.442876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0359571457322 0 \N \N f 0 \N 6 6391088 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442889 2024-02-28 23:45:55.204 2024-02-28 23:55:56.544 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help rac https://example.com/ 700 442885 442796.442885.442889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4110387070337 0 \N \N f 0 \N 1 233514038 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 442923 2024-02-29 00:26:29.772 2024-02-29 00:36:31.033 \N At audience she. Skill https://example.com/ 21374 442918 442628.442918.442923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78042026109149 0 \N \N f 0 \N 2 202517029 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442915 2024-02-29 00:21:57.541 2024-02-29 00:31:59.091 \N International ground thought computer som https://example.com/ 19501 442170 442170.442915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.83008048141549 0 \N \N f 0 \N 0 118904832 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 442901 2024-02-28 23:54:38.554 2024-02-29 00:04:39.809 \N Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six nort https://example.com/ 16505 442751 442751.442901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4999399420702 0 \N \N f 0 \N 0 221421802 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443737 2024-02-29 16:00:05.159 2024-02-29 16:00:10.945 \N Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far cour https://example.com/ 15484 443736 443736.443737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.834895525519 0 \N \N f 0 \N 0 197458642 0 f f \N \N \N \N 443736 \N 0 0 \N \N f \N 443733 2024-02-29 15:58:29.856 2024-02-29 16:08:31.33 \N Eat culture event thus any event https://example.com/ 5779 443536 443201.443536.443733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3097350021785 0 \N \N f 0 \N 0 197188656 0 f f \N \N \N \N 443201 \N 0 0 \N \N f \N 443732 2024-02-29 15:57:56.521 2024-02-29 16:07:58.148 Trip improve born state similar appear. Money action cha Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would. https://example.com/ 21292 \N 443732 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.42889402960163 0 \N \N f 0 \N 0 174833629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442938 2024-02-29 00:46:57.567 2024-02-29 00:56:58.96 \N Again reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there c https://example.com/ 21585 442486 442416.442486.442938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.155118583905 0 \N \N f 0 \N 0 24212627 0 f f \N \N \N \N 442416 \N 0 0 \N \N f \N 442636 2024-02-28 20:13:06.711 2024-02-28 20:23:08.822 Board age miss drug sense. Take here somebody choose. Experience just d Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference https://example.com/ 21555 \N 442636 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 19.901049411355 0 \N \N f 0 \N 4 206538134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442970 2024-02-29 01:41:43.06 2024-02-29 01:51:44.432 \N Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nMorning create future popular. Shoulder https://example.com/ 17523 441695 441695.442970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7126326576949 0 \N \N f 0 \N 0 15773485 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443789 2024-02-29 16:27:09.818 2024-02-29 16:37:11.12 Large direction f Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration. https://example.com/ 17708 \N 443789 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.27286880006746 0 \N \N f 0 \N 0 230401508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442937 2024-02-29 00:46:28.791 2024-02-29 00:56:30.018 \N Source scientist hair let. Tough hit specific https://example.com/ 16145 442781 442781.442937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8336548129107 0 \N \N f 0 \N 2 70737399 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442817 2024-02-28 23:00:04.874 2024-02-28 23:10:06.165 Score player recognize carry. Value wish form build mother best sev \N https://example.com/ 20434 \N 442817 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 12.5755627997575 0 \N \N f 0 \N 1 150704087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442924 2024-02-29 00:29:48.456 2024-02-29 00:39:49.839 \N Girl someone prepare. Realize how https://example.com/ 18873 442805 442065.442805.442924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9837168149125 0 \N \N f 0 \N 0 154626555 0 f f \N \N \N \N 442065 \N 0 0 \N \N f \N 442947 2024-02-29 00:57:47.692 2024-02-29 01:07:48.853 \N Though deal provide ball statement examp https://example.com/ 940 442313 442313.442947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58249368802102 0 \N \N f 0 \N 0 14242561 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442305 2024-02-28 16:17:06.334 2024-02-28 16:27:07.809 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun https://example.com/ 16356 442294 441695.442224.442250.442290.442294.442305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1124919347841 0 \N \N f 0 \N 1 141827514 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442743 2024-02-28 21:29:31.18 2024-02-28 21:39:32.382 \N Coun https://example.com/ 929 442163 442163.442743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3246918191782 0 \N \N f 0 \N 0 110122957 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442906 2024-02-29 00:04:01.232 2024-02-29 00:14:02.47 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality https://example.com/ 21063 442751 442751.442906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.73419526970719 0 \N \N f 0 \N 0 241521646 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442944 2024-02-29 00:55:39.719 2024-02-29 01:05:41.268 \N Near whom sit wonder both lay remain. Mention school letter example. Es https://example.com/ 19664 442751 442751.442944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2741023317217 0 \N \N f 0 \N 0 239902713 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442927 2024-02-29 00:32:53.96 2024-02-29 00:42:55.768 Add bar degree beat since. Somebody of compare sea partner. Live Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need https://example.com/ 1611 \N 442927 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.148763011359065 0 \N \N f 0 \N 0 148520123 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442930 2024-02-29 00:35:29.618 2024-02-29 00:45:30.561 \N Which only rich free agreement. Likely court exist south us ro https://example.com/ 2326 442925 442919.442925.442930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3277121743087 0 \N \N f 0 \N 0 180207230 0 f f \N \N \N \N 442919 \N 0 0 \N \N f \N 442936 2024-02-29 00:42:58.415 2024-02-29 00:52:59.473 \N Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over stor https://example.com/ 19494 442551 442551.442936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9137258418346 0 \N \N f 0 \N 0 36156569 0 f f \N \N \N \N 442551 \N 0 0 \N \N f \N 442935 2024-02-29 00:40:58.894 2024-02-29 00:50:59.933 \N Who collection suggest https://example.com/ 18635 442904 442904.442935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.830433297139 0 \N \N f 0 \N 0 40321115 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 442211 2024-02-28 15:40:26.646 2024-02-28 15:50:28.407 \N Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind https://example.com/ 16929 442201 442163.442177.442185.442201.442211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.5599408417542 0 \N \N f 0 \N 1 191968370 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442719 2024-02-28 21:16:03.136 2024-02-28 21:26:04.148 \N Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political ca https://example.com/ 16097 442710 442710.442719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.397527351452 0 \N \N f 0 \N 0 68675763 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442932 2024-02-29 00:37:54.431 2024-02-29 00:47:56.06 Yes but truth go. Generation as nice customer old. Dark art maybe face. On Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge. https://example.com/ 1010 \N 442932 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2017301647009 0 \N \N f 0 \N 0 234124805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442988 2024-02-29 02:09:28.415 2024-02-29 02:19:29.379 \N Occur office book. Expect return including gun tra https://example.com/ 18169 442986 442986.442988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.98111924882654 0 \N \N f 0 \N 0 69003020 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 441560 2024-02-28 08:09:49.049 2024-02-28 08:19:51.143 Pass glass feeling five Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nTell difference pattern carry join. Size factor particularly necessary step. Little https://example.com/ 15052 \N 441560 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 26.5586443645898 0 \N \N f 0 \N 21 74219116 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442955 2024-02-29 01:12:05.703 2024-02-29 01:22:06.812 \N Health reduce performance body si https://example.com/ 1603 442657 442657.442955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6833526987529 0 \N \N f 0 \N 0 87303676 0 f f \N \N \N \N 442657 \N 0 0 \N \N f \N 442952 2024-02-29 01:05:13.278 2024-02-29 01:15:14.79 \N Pull fact question for unit up community i https://example.com/ 16839 442710 442710.442952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2400193364364 0 \N \N f 0 \N 0 37225883 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442880 2024-02-28 23:38:48.895 2024-02-28 23:48:50.355 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situati https://example.com/ 17331 442876 442820.442876.442880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.56615141847997 0 \N \N f 0 \N 4 53713872 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442945 2024-02-29 00:56:01.331 2024-02-29 01:06:02.743 \N Kitchen already store investment near. Vote every stuff thank https://example.com/ 18641 442751 442751.442945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0429206901115 0 \N \N f 0 \N 0 135097936 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442432 2024-02-28 17:11:59.465 2024-02-28 17:22:01.178 \N Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nDecade activity affect another hear action https://example.com/ 1881 442313 442313.442432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.749293617742 0 \N \N f 0 \N 2 116549827 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442680 2024-02-28 20:40:49.618 2024-02-28 20:50:50.695 Customer include control and. Chance blue audience Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve. https://example.com/ 19153 \N 442680 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 15.338706233229 0 \N \N f 0 \N 0 182995089 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442873 2024-02-28 23:33:35.019 2024-02-28 23:43:36.315 \N His sit pretty president https://example.com/ 10469 442508 442508.442873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.19544601398145 0 \N \N f 0 \N 0 62523285 0 f f \N \N \N \N 442508 \N 0 0 \N \N f \N 442656 2024-02-28 20:25:56.162 2024-02-28 20:35:57.295 Say this find practice. Small exactly e Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nList professional event meeting. Drop Re https://example.com/ 20208 \N 442656 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.935950465406 0 \N \N f 0 \N 1 219029905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442957 2024-02-29 01:16:06.193 2024-02-29 01:26:07.244 \N Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everyb https://example.com/ 9969 442853 442853.442957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5938794044894 0 \N \N f 0 \N 0 212388691 0 f f \N \N \N \N 442853 \N 0 0 \N \N f \N 442942 2024-02-29 00:55:06.629 2024-02-29 01:05:07.683 \N Scie https://example.com/ 8074 442941 442904.442941.442942 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.68826766851238 0 \N \N f 0 \N 0 47644151 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 442853 2024-02-28 23:20:18.85 2024-02-28 23:30:20.034 Should doctor pressure maybe six fight. Machine impact system entire meeting Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range through https://example.com/ 6003 \N 442853 \N \N \N \N \N \N \N \N art \N ACTIVE \N 6.17105493632696 0 \N \N f 0 \N 2 133440552 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442958 2024-02-29 01:20:09.989 2024-02-29 01:30:11.223 \N Perform might someone represent where not main. Get note couple https://example.com/ 10519 442751 442751.442958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.31894580197022 0 \N \N f 0 \N 0 170079178 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442774 2024-02-28 21:57:22.074 2024-02-28 22:07:23.637 Degree third deep cause buy put whatever. Gas human pre Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material h https://example.com/ 17415 \N 442774 \N \N \N \N \N \N \N \N security \N ACTIVE \N 16.278190896329 0 \N \N f 0 \N 2 29341138 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442783 2024-02-28 22:07:28.047 2024-02-28 22:17:29.796 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establi https://example.com/ 19637 442774 442774.442783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4226388046168 0 \N \N f 0 \N 1 8401951 0 f f \N \N \N \N 442774 \N 0 0 \N \N f \N 442963 2024-02-29 01:25:27.59 2024-02-29 01:35:28.848 \N Provide enjoy appear these. What care https://example.com/ 19471 442783 442774.442783.442963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2294315218955 0 \N \N f 0 \N 0 76044812 0 f f \N \N \N \N 442774 \N 0 0 \N \N f \N 442950 2024-02-29 01:04:16.008 2024-02-29 01:14:16.981 \N Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day s https://example.com/ 2022 442876 442820.442876.442950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73833907111455 0 \N \N f 0 \N 0 161003892 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442219 2024-02-28 15:43:23.104 2024-02-28 15:53:24.501 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social https://example.com/ 12708 442211 442163.442177.442185.442201.442211.442219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1789267388276 0 \N \N f 0 \N 0 247668634 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442966 2024-02-29 01:33:43.38 2024-02-29 01:43:44.963 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary https://example.com/ 708 442084 442084.442966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1249040779302 0 \N \N f 0 \N 0 223767497 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442929 2024-02-29 00:34:03.3 2024-02-29 00:44:04.36 \N Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nMoment hundred skin tr https://example.com/ 19259 442923 442628.442918.442923.442929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3135280452115 0 \N \N f 0 \N 1 169110836 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442250 2024-02-28 15:55:48.947 2024-02-28 16:05:50.705 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Nam https://example.com/ 20287 442224 441695.442224.442250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2196404761652 0 \N \N f 0 \N 4 181588552 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442984 2024-02-29 02:04:08.89 2024-02-29 02:14:10.062 \N Program want yeah color. Decade your peace catch visit. Figure mother computer w https://example.com/ 5728 442929 442628.442918.442923.442929.442984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30884415046264 0 \N \N f 0 \N 0 135358040 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442310 2024-02-28 16:18:32.32 2024-02-28 16:28:33.814 \N Debate propert https://example.com/ 20430 442308 442283.442285.442296.442301.442308.442310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4535352623787 0 \N \N f 0 \N 1 65420823 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 442968 2024-02-29 01:37:17.995 2024-02-29 01:47:19.449 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth whi https://example.com/ 2322 441560 441560.442968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38394475001312 0 \N \N f 0 \N 0 100145349 0 f f \N \N \N \N 441560 \N 0 0 \N \N f \N 442971 2024-02-29 01:42:06.377 2024-02-29 01:52:07.704 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nForget throughout sea city first by remember. Amount economi https://example.com/ 8287 442967 442820.442965.442967.442971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.674130819974 0 \N \N f 0 \N 2 234442465 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442975 2024-02-29 01:49:33.541 2024-02-29 01:59:35.249 \N Right view contain easy some https://example.com/ 8729 441969 441854.441877.441969.442975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7384388972469 0 \N \N f 0 \N 0 80467069 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 442979 2024-02-29 01:54:44.543 2024-02-29 02:04:46.606 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. https://example.com/ 8326 442781 442781.442979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8415462996256 0 \N \N f 0 \N 1 56390751 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442838 2024-02-28 23:11:12.318 2024-02-28 23:21:13.055 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nSomeone network true easy store. Take improve drug https://example.com/ 2022 441397 441247.441397.442838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8660722819946 0 \N \N f 0 \N 0 55580231 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442983 2024-02-29 01:58:25.979 2024-02-29 02:08:27.267 \N Field eat man but religious close. Sort vote hair travel. https://example.com/ 20245 442904 442904.442983 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4537140251421 0 \N \N f 0 \N 0 122936877 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 442993 2024-02-29 02:11:56.667 2024-02-29 02:21:58.257 \N Moment or possible https://example.com/ 9833 209582 209582.442993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1032334674595 0 \N \N f 0 \N 0 225079903 0 f f \N \N \N \N 209582 \N 0 0 \N \N f \N 442965 2024-02-29 01:32:04.055 2024-02-29 01:42:05.498 \N Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general bus https://example.com/ 19153 442820 442820.442965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.323910317824 0 \N \N f 0 \N 4 138815388 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442974 2024-02-29 01:48:56.116 2024-02-29 01:58:57.376 \N Southern wear age then chair. Sign young en https://example.com/ 18473 442710 442710.442974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9924603720261 0 \N \N f 0 \N 0 150558149 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 441397 2024-02-28 02:29:45.488 2024-02-28 02:39:46.657 \N Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself d https://example.com/ 13055 441247 441247.441397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.13955733844469 0 \N \N f 0 \N 2 39959048 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442977 2024-02-29 01:50:33.883 2024-02-29 02:00:34.901 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nStrategy way low soldier. Thank t https://example.com/ 20691 442976 442820.442965.442967.442971.442976.442977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1832958238184 0 \N \N f 0 \N 0 158070312 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442972 2024-02-29 01:45:18.492 2024-02-29 01:55:20.309 \N Inside nor professional partner new design machine. Fir https://example.com/ 17797 442869 442710.442869.442972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7681899642208 0 \N \N f 0 \N 0 90249535 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443744 2024-02-29 16:06:03.144 2024-02-29 16:16:04.372 \N Service techno https://example.com/ 2722 443734 443734.443744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.758748965087825 0 \N \N f 0 \N 0 15105877 0 f f \N \N \N \N 443734 \N 0 0 \N \N f \N 442976 2024-02-29 01:49:41.015 2024-02-29 01:59:42.283 \N Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nOpportunity hosp https://example.com/ 4798 442971 442820.442965.442967.442971.442976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1230917576154 0 \N \N f 0 \N 1 177066672 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442992 2024-02-29 02:11:45.204 2024-02-29 02:21:46.832 \N Common loss oil be. Wrong water cov https://example.com/ 18769 211835 211835.442992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6783578010294 0 \N \N f 0 \N 0 227533889 0 f f \N \N \N \N 211835 \N 0 0 \N \N f \N 442995 2024-02-29 02:12:29.244 2024-02-29 02:22:30.337 \N Moment hundred skin trip hour hope computer cell. Old pretty new https://example.com/ 16665 208205 208205.442995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8586285920523 0 \N \N f 0 \N 0 108233737 0 f f \N \N \N \N 208205 \N 0 0 \N \N f \N 442989 2024-02-29 02:10:40.034 2024-02-29 02:20:41.412 \N Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car hea https://example.com/ 20023 442985 442985.442989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7932215794955 0 \N \N f 0 \N 2 32241400 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 442987 2024-02-29 02:07:37.015 2024-02-29 02:17:38.161 \N Involve morning someone them Congress keep rule. Order price condition get desp https://example.com/ 18930 442721 442710.442721.442987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34138106732027 0 \N \N f 0 \N 1 104696057 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 442978 2024-02-29 01:54:26.528 2024-02-29 02:04:28.042 Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss Them reflect instead color. Public hour property win https://example.com/ 9183 \N 442978 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 21.9735430322386 0 \N \N f 0 \N 6 116337277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442996 2024-02-29 02:13:08.215 2024-02-29 02:23:09.761 \N Word around effect game light claim home. Point face someone exist ow https://example.com/ 19488 442989 442985.442989.442996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7117851453104 0 \N \N f 0 \N 1 4586328 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 443686 2024-02-29 15:29:26.428 2024-02-29 15:39:27.923 \N These world usu https://example.com/ 8985 443681 443577.443613.443669.443676.443680.443681.443686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38319271962661 0 \N \N f 0 \N 0 242324852 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 442998 2024-02-29 02:18:57.58 2024-02-29 02:28:59.135 \N Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention https://example.com/ 11516 442192 442163.442192.442998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2274218052945 0 \N \N f 0 \N 0 126086324 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443007 2024-02-29 02:26:45.293 2024-02-29 02:36:46.561 \N Company kid protect determine adult. Increase add https://example.com/ 16456 442891 442781.442872.442891.443007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.519931076847477 0 \N \N f 0 \N 0 218095719 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442192 2024-02-28 15:35:06.3 2024-02-28 15:45:08.531 \N Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagi https://example.com/ 762 442163 442163.442192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.92340317060003 0 \N \N f 0 \N 1 19439954 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443000 2024-02-29 02:19:56.439 2024-02-29 02:29:57.514 \N Area just subject pretty. Three employee performance. Shoulder trade identify size https://example.com/ 19938 442223 442163.442223.443000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4292079187013 0 \N \N f 0 \N 0 228904240 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442841 2024-02-28 23:13:05.079 2024-02-28 23:23:06.293 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nTen instead develop somebody into school. Main building plan school public process. Worry enter https://example.com/ 18543 441481 441247.441481.442841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8054593888034 0 \N \N f 0 \N 1 122699771 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443015 2024-02-29 02:49:03.475 2024-02-29 02:59:04.528 \N Before evening her visit bag building https://example.com/ 19198 442841 441247.441481.442841.443015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.65420441520353 0 \N \N f 0 \N 0 145284907 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443009 2024-02-29 02:35:40.182 2024-02-29 02:45:41.601 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. R https://example.com/ 13547 440259 440259.443009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.40410490753663 0 \N \N f 0 \N 0 157703406 0 f f \N \N \N \N 440259 \N 0 0 \N \N f \N 442991 2024-02-29 02:11:34.13 2024-02-29 02:21:35.065 \N Affect direc https://example.com/ 9346 213842 213842.442991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4246017412833 0 \N \N f 0 \N 0 120417677 0 f f \N \N \N \N 213842 \N 0 0 \N \N f \N 443010 2024-02-29 02:38:37.288 2024-02-29 02:48:38.495 \N Tell difference pattern carry join. https://example.com/ 15484 442904 442904.443010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09949089282624 0 \N \N f 0 \N 0 101918012 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443006 2024-02-29 02:26:24.821 2024-02-29 02:36:26.374 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide govern https://example.com/ 1609 442084 442084.443006 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.15615381309559 0 \N \N f 0 \N 1 120654489 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 442961 2024-02-29 01:23:40.675 2024-02-29 01:33:42.598 \N End inside like them according. Surface where camera base maybe subject smile tend. City particular second step gi https://example.com/ 1836 442960 442904.442960.442961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2848773028495 0 \N \N f 0 \N 0 195709939 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443024 2024-02-29 03:00:05.154 2024-02-29 03:00:10.699 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount co https://example.com/ 16562 443023 443023.443024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6582026647127 0 \N \N f 0 \N 0 88697111 0 f f \N \N \N \N 443023 \N 0 0 \N \N f \N 443023 2024-02-29 03:00:04.722 2024-02-29 03:10:06.691 Improve most form final blood. Section ability possible than st \N https://example.com/ 1784 \N 443023 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.1614536317244 0 \N \N f 0 \N 1 108184475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443030 2024-02-29 03:04:59.386 2024-02-29 03:15:00.464 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site https://example.com/ 11996 442664 442163.442664.443030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3832435427918 0 \N \N f 0 \N 1 77557353 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443060 2024-02-29 04:05:30.669 2024-02-29 04:15:32.372 \N Million significant throw b https://example.com/ 6777 442986 442986.443060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1304739220856 0 \N \N f 0 \N 0 33860387 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 443034 2024-02-29 03:12:10.072 2024-02-29 03:22:12.159 \N Score player recognize carry. Value wish form build mother best seven. Price improve can if Democrat e https://example.com/ 3979 442985 442985.443034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4255754080514 0 \N \N f 0 \N 1 128783028 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 442720 2024-02-28 21:16:20.256 2024-02-28 21:26:21.263 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil col https://example.com/ 18995 442163 442163.442720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4581842696339 0 \N \N f 0 \N 0 17506500 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442389 2024-02-28 16:55:08.41 2024-02-28 17:05:10.015 \N Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window do https://example.com/ 19553 442163 442163.442389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61576155191572 0 \N \N f 0 \N 0 119480216 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443017 2024-02-29 02:51:00.241 2024-02-29 03:01:01.593 \N Heart such other on during catch. Itself he https://example.com/ 21103 442710 442710.443017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1214198956989 0 \N \N f 0 \N 2 205509709 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443026 2024-02-29 03:02:41.14 2024-02-29 03:12:42.968 \N Matter training experience. Election carry thing them form always pay. Another building might only. Adult sea https://example.com/ 18230 442676 442163.442676.443026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5744625077612 0 \N \N f 0 \N 0 59313594 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 442909 2024-02-29 00:07:22.785 2024-02-29 00:17:23.659 \N Begin kind newspap https://example.com/ 17455 442908 442483.442816.442857.442887.442908.442909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55595050233477 0 \N \N f 0 \N 0 183158583 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 442887 2024-02-28 23:43:13.232 2024-02-28 23:53:14.495 \N Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across a https://example.com/ 11091 442857 442483.442816.442857.442887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1782783219653 0 \N \N f 0 \N 2 40328499 0 f f \N \N \N \N 442483 \N 0 0 \N \N f \N 443035 2024-02-29 03:14:13.254 2024-02-29 03:24:14.697 \N Reali https://example.com/ 21418 442754 442627.442754.443035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8978681555795 0 \N \N f 0 \N 0 117268557 0 f f \N \N \N \N 442627 \N 0 0 \N \N f \N 442483 2024-02-28 17:41:24.104 2024-02-28 17:51:25.459 Product analysis affect certainly happ Still power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer rememb https://example.com/ 20745 \N 442483 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.1266844432135 0 \N \N f 0 \N 8 153382835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443012 2024-02-29 02:48:04.943 2024-02-29 02:58:06.601 Produce series whom citizen sit. Crime these would her. Available consumer gr Game manage https://example.com/ 11798 \N 443012 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.7785806654749 0 \N \N f 0 \N 0 113203094 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442953 2024-02-29 01:07:59.182 2024-02-29 01:18:00.328 \N Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will s https://example.com/ 2961 442188 442163.442188.442953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6167001272237 0 \N \N f 0 \N 0 71227598 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443044 2024-02-29 03:33:57.073 2024-02-29 03:43:59.002 \N Drive south tr https://example.com/ 6384 442904 442904.443044 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8628012420663 0 \N \N f 0 \N 0 201413146 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443041 2024-02-29 03:27:01.366 2024-02-29 03:37:02.733 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive e https://example.com/ 12774 442820 442820.443041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40397019276052 0 \N \N f 0 \N 1 31570239 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442650 2024-02-28 20:22:22.905 2024-02-28 20:32:25.023 \N Want fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nResource mo https://example.com/ 15115 442648 442628.442639.442646.442648.442650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2898540993758 0 \N \N f 0 \N 5 80908795 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 443003 2024-02-29 02:23:20.377 2024-02-29 02:33:21.338 Fund bring design try claim attention. Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain https://example.com/ 13878 \N 443003 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 15.2359886071136 0 \N \N f 0 \N 0 240640992 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442344 2024-02-28 16:32:46.183 2024-02-28 16:42:47.858 \N Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Mov https://example.com/ 7510 442163 442163.442344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.81068445807907 0 \N \N f 0 \N 0 170573951 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443013 2024-02-29 02:48:38.648 2024-02-29 02:58:39.865 \N Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Co https://example.com/ 19930 443011 443011.443013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73581299579126 0 \N \N f 0 \N 0 6303858 0 f f \N \N \N \N 443011 \N 0 0 \N \N f \N 442894 2024-02-28 23:49:41.801 2024-02-28 23:59:43.115 Program cut truth box indicate gam Dark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low. https://example.com/ 9169 \N 442894 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 19.0492962695799 0 \N \N f 0 \N 3 32691171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443018 2024-02-29 02:53:23.762 2024-02-29 03:03:25.067 \N Family material upon Democrat. The remain appear information degree. Same employee image collect https://example.com/ 14503 442547 442163.442547.443018 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37732617501258 0 \N \N f 0 \N 0 135927112 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443028 2024-02-29 03:04:03.493 2024-02-29 03:14:05.127 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep singl https://example.com/ 19785 440797 440797.443028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7561741467153 0 \N \N f 0 \N 0 191213663 0 f f \N \N \N \N 440797 \N 0 0 \N \N f \N 443021 2024-02-29 02:58:09.341 2024-02-29 03:08:10.658 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement bu https://example.com/ 2844 442175 442163.442175.443021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4025197172395 0 \N \N f 0 \N 1 115759134 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443033 2024-02-29 03:07:23.305 2024-02-29 03:17:24.931 \N Soon raise sense education hold away. Whatever unit career. Party certainly until b https://example.com/ 21172 442848 442710.442848.443033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4959683268443 0 \N \N f 0 \N 0 193792828 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443022 2024-02-29 02:58:13.06 2024-02-29 03:08:14.692 \N It fly over audience when guy do. Continue material r https://example.com/ 11897 442981 442981.443022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.008580162044 0 \N \N f 0 \N 1 196101984 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N 443047 2024-02-29 03:36:43.828 2024-02-29 03:46:45.05 \N Throughout which address movie agree final. Cur https://example.com/ 21172 442636 442636.443047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1818616647222 0 \N \N f 0 \N 0 234625101 0 f f \N \N \N \N 442636 \N 0 0 \N \N f \N 442371 2024-02-28 16:50:05.384 2024-02-28 17:00:06.706 Work suddenly pick. Interesting check state. S Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with a https://example.com/ 928 \N 442371 \N \N \N \N \N \N \N \N security \N ACTIVE \N 17.9826793034591 0 \N \N f 0 \N 3 57883880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442676 2024-02-28 20:38:37.267 2024-02-28 20:48:39.108 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thu https://example.com/ 1326 442163 442163.442676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0412734752995 0 \N \N f 0 \N 1 33317077 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 441496 2024-02-28 05:49:57.854 2024-02-28 06:00:00.106 \N Suffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. https://example.com/ 18658 441238 441238.441496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8016669957524 0 \N \N f 0 \N 3 227733631 0 f f \N \N \N \N 441238 \N 0 0 \N \N f \N 443045 2024-02-29 03:34:51.167 2024-02-29 03:44:52.77 \N Deta https://example.com/ 671 443011 443011.443045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.99917655403129 0 \N \N f 0 \N 0 58485314 0 f f \N \N \N \N 443011 \N 0 0 \N \N f \N 442890 2024-02-28 23:45:57.373 2024-02-28 23:55:58.551 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. https://example.com/ 20205 442648 442628.442639.442646.442648.442890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30957822707949 0 \N \N f 0 \N 1 113371514 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442646 2024-02-28 20:18:08.368 2024-02-28 20:28:10.814 \N Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all envi https://example.com/ 11443 442639 442628.442639.442646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1793919548107 0 \N \N f 0 \N 10 66960401 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 443039 2024-02-29 03:24:56.565 2024-02-29 03:34:58.003 \N Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nTechnology word wish say organization friend here. Go nearly shoulder d https://example.com/ 21342 442894 442894.443039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2901025971311 0 \N \N f 0 \N 0 106101684 0 f f \N \N \N \N 442894 \N 0 0 \N \N f \N 443046 2024-02-29 03:35:21.057 2024-02-29 03:45:22.786 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purp https://example.com/ 19640 443021 442163.442175.443021.443046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79867112350018 0 \N \N f 0 \N 0 202830020 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443054 2024-02-29 03:54:45.025 2024-02-29 04:04:46.573 \N Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these https://example.com/ 2088 442851 442851.443054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48829822727244 0 \N \N f 0 \N 0 54301031 0 f f \N \N \N \N 442851 \N 0 0 \N \N f \N 442648 2024-02-28 20:20:15.786 2024-02-28 20:30:17.012 \N Occur chair truth these officer focus black. Walk create no generation once according inc https://example.com/ 21332 442646 442628.442639.442646.442648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5618677126765 0 \N \N f 0 \N 9 160030330 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442639 2024-02-28 20:14:56.835 2024-02-28 20:24:58.25 \N Book it view should. https://example.com/ 20897 442628 442628.442639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8738474068029 0 \N \N f 0 \N 11 72117260 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 443051 2024-02-29 03:48:26.159 2024-02-29 03:58:27.38 \N Summer past television what in. Find give m https://example.com/ 946 443040 443008.443040.443051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5933912186156 0 \N \N f 0 \N 3 129867445 0 f f \N \N \N \N 443008 \N 0 0 \N \N f \N 443086 2024-02-29 05:22:49.52 2024-02-29 05:32:50.744 \N Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic cu https://example.com/ 18220 443083 443083.443086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.11582114834 0 \N \N f 0 \N 0 199589128 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 442828 2024-02-28 23:06:28.121 2024-02-28 23:16:29.045 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nLead against area note movement street push music. Mee https://example.com/ 1326 442824 442628.442639.442646.442648.442650.442670.442824.442828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.80539235459143 0 \N \N f 0 \N 2 237578139 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 443042 2024-02-29 03:29:05.063 2024-02-29 03:39:06.757 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff https://example.com/ 16406 443027 442894.443027.443042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1668625490267 0 \N \N f 0 \N 0 217115382 0 f f \N \N \N \N 442894 \N 0 0 \N \N f \N 443053 2024-02-29 03:51:28.185 2024-02-29 04:01:29.685 \N She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee yea https://example.com/ 21405 442313 442313.443053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3169673642425 0 \N \N f 0 \N 0 151670670 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443049 2024-02-29 03:42:38.491 2024-02-29 15:30:21.963 \N Yeah word become de https://example.com/ 730 442163 442163.443049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8058485480301 0 \N \N f 0 \N 0 60278643 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443052 2024-02-29 03:49:51.222 2024-02-29 03:59:53.205 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. S https://example.com/ 14705 443001 442163.442234.443001.443052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9579656031256 0 \N \N f 0 \N 1 13364121 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443050 2024-02-29 03:47:17.767 2024-02-29 03:57:18.837 \N News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fil https://example.com/ 11498 442986 442986.443050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3246002495746 0 \N \N f 0 \N 2 220474115 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 443056 2024-02-29 04:00:05.24 2024-02-29 04:00:10.316 \N Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society https://example.com/ 1596 443055 443055.443056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1543494807555 0 \N \N f 0 \N 0 190736634 0 f f \N \N \N \N 443055 \N 0 0 \N \N f \N 443061 2024-02-29 04:07:07.198 2024-02-29 04:17:08.646 \N Oil fast orga https://example.com/ 18830 442981 442981.443061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.40490194861768 0 \N \N f 0 \N 1 176674897 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N 442441 2024-02-28 17:15:48.854 2024-02-28 17:25:50.267 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evid https://example.com/ 7760 441695 441695.442441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9234883112081 0 \N \N f 0 \N 2 221532095 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442981 2024-02-29 01:56:09.432 2024-02-29 02:06:11.047 Pull fact question for unit up community interest. Sign create stage when. H Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. W https://example.com/ 16808 \N 442981 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.253462283769 0 \N \N f 0 \N 4 198493128 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443076 2024-02-29 04:40:01.101 2024-02-29 04:50:02.149 \N Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nEye million figure https://example.com/ 20799 442796 442796.443076 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7015103304799 0 \N \N f 0 \N 0 73623410 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 442847 2024-02-28 23:16:52.183 2024-02-28 23:26:53.056 \N Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Man https://example.com/ 854 442163 442163.442847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3319075330555 0 \N \N f 0 \N 1 11034789 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443025 2024-02-29 03:01:24.047 2024-02-29 03:11:25.746 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model dis https://example.com/ 18932 442847 442163.442847.443025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9975064081878 0 \N \N f 0 \N 0 17063300 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 441759 2024-02-28 11:34:54.758 2024-02-28 11:44:56.755 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior pla https://example.com/ 681 441754 441695.441699.441738.441754.441759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7349985731796 0 \N \N f 0 \N 0 140461763 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441745 2024-02-28 11:27:17.966 2024-02-28 11:37:19.245 \N Model late institution once force rock. Range media reflec https://example.com/ 18177 441741 441695.441701.441739.441741.441745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.535741388955415 0 \N \N f 0 \N 0 140591001 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441754 2024-02-28 11:32:54.948 2024-02-28 11:42:57.425 \N Risk past without recognize series career either. Ahead approach ani https://example.com/ 14255 441738 441695.441699.441738.441754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.77927542437265 0 \N \N f 0 \N 9 203631243 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443068 2024-02-29 04:19:00.914 2024-02-29 04:29:02.425 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believ https://example.com/ 6499 443040 443008.443040.443068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0674740392733 0 \N \N f 0 \N 0 59730050 0 f f \N \N \N \N 443008 \N 0 0 \N \N f \N 442086 2024-02-28 14:49:04.473 2024-02-28 14:59:05.839 \N Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase o https://example.com/ 6741 442070 442023.442070.442086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5183417713654 0 \N \N f 0 \N 2 192882925 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 443062 2024-02-29 04:08:27.792 2024-02-29 04:18:29.011 \N Physical fast give music base. Gun body every join everythin https://example.com/ 14906 442973 442973.443062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.58712525888996 0 \N \N f 0 \N 0 34616410 0 f f \N \N \N \N 442973 \N 0 0 \N \N f \N 443087 2024-02-29 05:31:41.895 2024-02-29 05:41:43.676 \N Order care many fi https://example.com/ 8380 443067 443067.443087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57182748251224 0 \N \N f 0 \N 0 138717890 0 f f \N \N \N \N 443067 \N 0 0 \N \N f \N 443073 2024-02-29 04:29:49.669 2024-02-29 04:39:51.524 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nSense college state many. Some your mother else https://example.com/ 5497 443064 443064.443073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.71811174427047 0 \N \N f 0 \N 1 70410474 0 f f \N \N \N \N 443064 \N 0 0 \N \N f \N 443040 2024-02-29 03:25:06.646 2024-02-29 03:35:08.236 \N Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nKnowledge figure draw. Billion pay sugg https://example.com/ 19506 443008 443008.443040 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.51743514407307 0 \N \N f 0 \N 5 59012369 0 f f \N \N \N \N 443008 \N 0 0 \N \N f \N 443089 2024-02-29 05:31:55.896 2024-02-29 05:41:57.561 \N Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nYoung nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nProgram cut truth box indicate game. Agency option outside wear. About sign approac https://example.com/ 9184 443073 443064.443073.443089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0965038212845 0 \N \N f 0 \N 0 60939404 0 f f \N \N \N \N 443064 \N 0 0 \N \N f \N 441002 2024-02-27 19:56:33.412 2024-02-27 20:06:34.163 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather https://example.com/ 8998 440692 440692.441002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.73987339031 0 \N \N f 0 \N 3 120091923 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443075 2024-02-29 04:36:44.662 2024-02-29 04:46:46.356 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something c https://example.com/ 9916 441695 441695.443075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7648268070528 0 \N \N f 0 \N 0 24842923 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443085 2024-02-29 05:15:27.836 2024-02-29 05:25:29.438 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light s https://example.com/ 10530 442781 442781.443085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3389436373093 0 \N \N f 0 \N 0 33612903 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 443011 2024-02-29 02:45:58.652 2024-02-29 02:55:59.615 Physical fast give music base Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast c https://example.com/ 640 \N 443011 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 28.3101789149537 0 \N \N f 0 \N 3 30316681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443078 2024-02-29 04:52:26.931 2024-02-29 05:02:27.943 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star https://example.com/ 5852 442084 442084.443078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61399563890502 0 \N \N f 0 \N 0 62058581 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443070 2024-02-29 04:24:57.619 2024-02-29 04:34:59.595 \N Article discussion court site share past. Hot character serve box f https://example.com/ 13348 443069 443058.443069.443070 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4887339758891 0 \N \N f 0 \N 1 151996 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 443072 2024-02-29 04:26:57.709 2024-02-29 04:36:59.318 \N Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. https://example.com/ 634 443070 443058.443069.443070.443072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3185458106319 0 \N \N f 0 \N 0 202060108 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 443080 2024-02-29 04:56:27.906 2024-02-29 05:06:29.634 \N Reflect fill team movie dra https://example.com/ 20744 441782 441782.443080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.88742978063074 0 \N \N f 0 \N 0 97404062 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 440955 2024-02-27 19:14:52.414 2024-02-27 19:24:54.002 \N Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long pres https://example.com/ 14731 440944 440725.440874.440909.440940.440944.440955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9465525751265 0 \N \N f 0 \N 4 118353771 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 442822 2024-02-28 23:02:21.903 2024-02-28 23:12:22.944 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story rea https://example.com/ 20045 442797 442796.442797.442822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7542694934154 0 \N \N f 0 \N 1 133284262 0 f f \N \N \N \N 442796 \N 0 0 \N \N f \N 443534 2024-02-29 14:17:04.28 2024-02-29 14:27:05.979 \N Science sea sport term page n https://example.com/ 10849 443130 443130.443534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7320361428464 0 \N \N f 0 \N 2 63697673 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N 442448 2024-02-28 17:18:40.894 2024-02-28 17:28:42.352 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. M https://example.com/ 9378 442445 441695.442441.442445.442448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.830077189579796 0 \N \N f 0 \N 0 74566349 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 440764 2024-02-27 16:34:23.381 2024-02-27 16:44:24.604 Site coach strong dark while new security push. Els Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discu https://example.com/ 2402 \N 440764 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.103030158828297 0 \N \N f 0 \N 37 128406253 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443071 2024-02-29 04:25:08.958 2024-02-29 04:35:10.764 \N Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nSouth both increase democratic economic. Seem https://example.com/ 1817 443051 443008.443040.443051.443071 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95452417489361 0 \N \N f 0 \N 2 244966579 0 f f \N \N \N \N 443008 \N 0 0 \N \N f \N 443088 2024-02-29 05:31:49.336 2024-02-29 05:41:50.85 \N Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice https://example.com/ 19138 442524 442313.442396.442524.443088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87371111091183 0 \N \N f 0 \N 0 148810312 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443094 2024-02-29 05:50:23.466 2024-02-29 06:00:25.287 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break https://example.com/ 19132 441664 441514.441626.441644.441664.443094 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.361390376587 0 \N \N f 0 \N 0 93070704 0 f f \N \N \N \N 441514 \N 0 0 \N \N f \N 442769 2024-02-28 21:46:59.488 2024-02-28 21:57:00.6 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission https://example.com/ 9921 442751 442751.442769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.390331546649 0 \N \N f 0 \N 2 237735124 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443082 2024-02-29 05:06:25.394 2024-02-29 05:16:26.599 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very st https://example.com/ 18309 443011 443011.443082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.197170794217953 0 \N \N f 0 \N 0 12035633 0 f f \N \N \N \N 443011 \N 0 0 \N \N f \N 442734 2024-02-28 21:24:09.335 2024-02-28 21:34:11.366 Economy rest what Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire https://example.com/ 979 \N 442734 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.87577462182423 0 \N \N f 0 \N 1 52040896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443081 2024-02-29 05:02:48.675 2024-02-29 05:12:49.932 \N Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administ https://example.com/ 20539 443057 442904.443057.443081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.800862353128 0 \N \N f 0 \N 4 198877638 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443091 2024-02-29 05:34:47.622 2024-02-29 05:44:49.726 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property serie https://example.com/ 16440 443058 443058.443091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4519110633654 0 \N \N f 0 \N 0 181555231 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 440909 2024-02-27 18:36:19.136 2024-02-27 18:46:20.467 \N Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song https://example.com/ 5708 440874 440725.440874.440909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33474200272006 0 \N \N f 0 \N 7 29752957 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 443090 2024-02-29 05:32:45.337 2024-02-29 05:42:46.892 \N Safe pass wife stay effort mission. Ma https://example.com/ 2088 443083 443083.443090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.3534255191656 0 \N \N f 0 \N 0 96469812 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443083 2024-02-29 05:11:14.282 2024-02-29 05:21:15.593 Think cover scientist financia Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nTake throw line right your trial https://example.com/ 5757 \N 443083 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 19.6585324974906 0 \N \N f 0 \N 8 112054652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442918 2024-02-29 00:23:51.632 2024-02-29 00:33:52.723 \N Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push https://example.com/ 16214 442628 442628.442918 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3591603546703 0 \N \N f 0 \N 3 73398553 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 441015 2024-02-27 20:01:23.24 2024-02-27 20:11:24.826 \N Then voice gun. Might beautiful recognize artist. Week customer rather wonder company be https://example.com/ 17331 440988 440988.441015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8859552864125 0 \N \N f 0 \N 3 97085075 0 f f \N \N \N \N 440988 \N 0 0 \N \N f \N 442951 2024-02-29 01:05:09.662 2024-02-29 01:15:10.686 \N Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability v https://example.com/ 16876 442880 442820.442876.442880.442951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7407333932817 0 \N \N f 0 \N 0 239259229 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 442100 2024-02-28 14:58:42.255 2024-02-28 15:08:44.273 \N Type door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month https://example.com/ 661 441854 441854.442100 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4705467504741 0 \N \N f 0 \N 0 22182395 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 441227 2024-02-27 23:17:58.917 2024-02-27 23:28:00.116 \N Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. Ab https://example.com/ 21247 441002 440692.441002.441227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1520255720744 0 \N \N f 0 \N 0 189853552 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441969 2024-02-28 13:59:48.419 2024-02-28 14:09:50.146 \N Debate physical difference without Mrs price final. Nice nation hot why requi https://example.com/ 687 441877 441854.441877.441969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3520769830786 0 \N \N f 0 \N 3 122620050 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 443118 2024-02-29 06:31:49.494 2024-02-29 06:41:50.566 \N Rich account wrong customer w https://example.com/ 19507 443105 443105.443118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16328388372571 0 \N \N f 0 \N 0 119486716 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 442423 2024-02-28 17:06:03.135 2024-02-28 17:16:03.63 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve di https://example.com/ 11967 441854 441854.442423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6582845102633 0 \N \N f 0 \N 0 186149801 0 f f \N \N \N \N 441854 \N 0 0 \N \N f \N 440859 2024-02-27 17:43:09.066 2024-02-27 17:53:10.393 \N After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. https://example.com/ 16052 440771 440725.440771.440859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.43691637696746 0 \N \N f 0 \N 1 124985464 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 440874 2024-02-27 17:55:52.729 2024-02-27 18:05:54.317 \N Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. Internation https://example.com/ 1002 440725 440725.440874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8780928215781 0 \N \N f 0 \N 8 177493531 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441010 2024-02-27 20:00:01.545 2024-02-27 20:10:02.59 \N Reflect price head six peace c https://example.com/ 632 440725 440725.441010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.70641943553528 0 \N \N f 0 \N 0 176029066 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 442077 2024-02-28 14:47:01.41 2024-02-28 14:57:03.993 \N Wide deep ahead effort. Somebody issue single physical benefit rest genera https://example.com/ 21514 442070 442023.442070.442077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8254538640991 0 \N \N f 0 \N 1 68125641 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 442941 2024-02-29 00:53:05.279 2024-02-29 01:03:06.692 \N Ready his protect provide sam https://example.com/ 19863 442904 442904.442941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90423015617434 0 \N \N f 0 \N 1 114914841 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 440938 2024-02-27 19:00:35.354 2024-02-27 19:10:36.946 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve le https://example.com/ 19005 440725 440725.440938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6353625562604 0 \N \N f 0 \N 1 146378396 0 f f \N \N \N \N 440725 \N 0 0 \N \N f \N 441229 2024-02-27 23:21:10.645 2024-02-27 23:31:12.286 \N Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue ite https://example.com/ 1354 441226 440692.441011.441130.441211.441215.441226.441229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0481929107601 0 \N \N f 0 \N 0 127466259 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440725 2024-02-27 16:07:30.43 2024-02-27 16:17:31.615 Blood coach citizen choice defense. Sound pa Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy lef https://example.com/ 18076 \N 440725 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.997638526895 0 \N \N f 0 \N 51 21284940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442910 2024-02-29 00:08:55.143 2024-02-29 00:18:56.583 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together https://example.com/ 3342 442628 442628.442910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3889724833196 0 \N \N f 0 \N 0 152171332 0 f f \N \N \N \N 442628 \N 0 0 \N \N f \N 442153 2024-02-28 15:21:18.358 2024-02-28 15:31:20.205 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nLong interesting cut grow prevent. Western ability much hospital https://example.com/ 20187 441695 441695.442153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8833911913198 0 \N \N f 0 \N 0 135435515 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442490 2024-02-28 17:45:35.517 2024-02-28 17:55:37.451 \N Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. https://example.com/ 19821 441695 441695.442490 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1025095181315 0 \N \N f 0 \N 4 60523320 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441216 2024-02-27 23:09:05.998 2024-02-27 23:19:06.888 \N Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain win https://example.com/ 3342 441169 441169.441216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1920403290637 0 \N \N f 0 \N 2 46091701 0 f f \N \N \N \N 441169 \N 0 0 \N \N f \N 441614 2024-02-28 09:40:49.464 2024-02-28 09:50:50.837 \N Become full thank head blood family. Computer account be expert a https://example.com/ 11522 441533 441533.441614 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3545968580121 0 \N \N f 0 \N 4 50366427 0 f f \N \N \N \N 441533 \N 0 0 \N \N f \N 440933 2024-02-27 18:54:26.799 2024-02-27 19:04:27.864 \N Development political left not ev https://example.com/ 18008 440907 440907.440933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0784884209250691 0 \N \N f 0 \N 0 101855588 0 f f \N \N \N \N 440907 \N 0 0 \N \N f \N 441811 2024-02-28 12:14:41.214 2024-02-28 12:24:43.083 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nRole number law science. Sing fight use development different. Safe so https://example.com/ 4076 441771 441695.441699.441738.441754.441771.441811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2824461518951 0 \N \N f 0 \N 4 6352154 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441820 2024-02-28 12:21:27.27 2024-02-28 12:31:28.937 \N Involv https://example.com/ 20781 441782 441782.441820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66998304573295 0 \N \N f 0 \N 0 18127571 0 f f \N \N \N \N 441782 \N 0 0 \N \N f \N 441782 2024-02-28 11:50:36.629 2024-02-28 12:00:39.03 Identify health spe Community region she TV since sometimes know. Small water want same anyone. Vote m https://example.com/ 4173 \N 441782 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04461076582293 0 \N \N f 0 \N 8 49074915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442301 2024-02-28 16:15:53.562 2024-02-28 16:25:54.853 \N Big money in south wide support. Meet radio wal https://example.com/ 11145 442296 442283.442285.442296.442301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.71710625894455 0 \N \N f 0 \N 3 38052100 0 f f \N \N \N \N 442283 \N 0 0 \N \N f \N 443107 2024-02-29 06:14:32.927 2024-02-29 06:24:34.167 Medical view similar along sense sit piece. Onto at read. Close own value spend Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationsh https://example.com/ 4958 \N 443107 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 7.36951740971808 0 \N \N f 0 \N 0 5833871 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441850 2024-02-28 12:41:59.669 2024-02-28 12:52:01.322 \N From democratic trial American blue. Save carry son else. While student accept powe https://example.com/ 1825 441843 441843.441850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8199827569512 0 \N \N f 0 \N 0 226014690 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441736 2024-02-28 11:20:16.681 2024-02-28 11:30:18.364 \N Becom https://example.com/ 19030 441701 441695.441701.441736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7580193116746 0 \N \N f 0 \N 0 75887113 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441701 2024-02-28 11:01:20.618 2024-02-28 11:11:22.662 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Reso https://example.com/ 3686 441695 441695.441701 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6363884982453 0 \N \N f 0 \N 7 84486180 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442523 2024-02-28 18:09:27.489 2024-02-28 18:19:28.321 \N Small enjoy manage https://example.com/ 21406 442520 441794.441799.442517.442520.442523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6337115043186 0 \N \N f 0 \N 0 37426206 0 f f \N \N \N \N 441794 \N 0 0 \N \N f \N 441794 2024-02-28 11:57:48.117 2024-02-28 12:07:50.958 Live child like read. Gas forg By fight several talk. Minute probably fish player. Drive window https://example.com/ 20006 \N 441794 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.6176583602419 0 \N \N f 0 \N 5 66928258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442098 2024-02-28 14:57:05.599 2024-02-28 15:07:06.966 \N Great how before current effort because. Simply increase really start. Fr https://example.com/ 17217 432433 429644.432416.432433.442098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2347862923646 0 \N \N f 0 \N 0 208340752 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 443103 2024-02-29 06:07:50.296 2024-02-29 06:17:51.848 \N Go special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their https://example.com/ 7766 442937 442781.442937.443103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.335697390279321 0 \N \N f 0 \N 1 92339499 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 443131 2024-02-29 06:47:57.88 2024-02-29 06:57:58.66 \N Myself https://example.com/ 2774 443126 442632.443126.443131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0049172593519 0 \N \N f 0 \N 0 159107679 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 432416 2024-02-20 12:25:44.421 2024-02-20 12:35:45.834 \N Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nBall training later thin https://example.com/ 8506 429644 429644.432416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1926083145165 0 \N \N f 0 \N 2 201232661 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 441740 2024-02-28 11:24:02.799 2024-02-28 11:34:04.961 \N Qu https://example.com/ 15463 441725 441695.441725.441740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.813402851887552 0 \N \N f 0 \N 0 217986811 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442635 2024-02-28 20:12:26.304 2024-02-28 20:22:28.54 \N Take carry discus https://example.com/ 20023 442496 442496.442635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37620813908618 0 \N \N f 0 \N 1 173761862 0 f f \N \N \N \N 442496 \N 0 0 \N \N f \N 442320 2024-02-28 16:24:13.899 2024-02-28 16:34:15.02 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nFund bring design try claim attention. Old imagi https://example.com/ 12721 442313 442313.442320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6594569925863 0 \N \N f 0 \N 2 178814089 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442176 2024-02-28 15:30:13.853 2024-02-28 15:40:15.576 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process tra https://example.com/ 18989 442169 441843.441979.442087.442092.442099.442108.442129.442139.442169.442176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51670920929728 0 \N \N f 0 \N 2 187166793 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441916 2024-02-28 13:29:17.891 2024-02-28 13:39:19.564 \N Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fa https://example.com/ 11240 441909 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0664496579407 0 \N \N f 0 \N 14 235758743 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441886 2024-02-28 13:06:47.476 2024-02-28 13:16:49.3 \N Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nBetween buy half story. Buy whom https://example.com/ 20302 440692 440692.441886 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6730028544605 0 \N \N f 0 \N 2 150735169 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441319 2024-02-28 01:02:05.375 2024-02-28 01:12:06.939 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energ https://example.com/ 910 441247 441247.441319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7287445389011 0 \N \N f 0 \N 2 195243910 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 442198 2024-02-28 15:36:12.199 2024-02-28 15:46:14.435 \N Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. https://example.com/ 16998 442184 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162.442166.442184.442198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8238677956902 0 \N \N f 0 \N 6 221997066 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442162 2024-02-28 15:25:34.775 2024-02-28 15:35:36.355 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fa https://example.com/ 8287 442122 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985.441989.442074.442122.442162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8438752299347 0 \N \N f 0 \N 9 89505948 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441985 2024-02-28 14:05:45.895 2024-02-28 14:15:48.173 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually wa https://example.com/ 8242 441916 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909.441916.441985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3889512003769 0 \N \N f 0 \N 13 124202554 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441523 2024-02-28 07:21:47.789 2024-02-28 07:31:48.955 \N Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nFriend growth election wa https://example.com/ 1806 441396 441333.441396.441523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96279148629824 0 \N \N f 0 \N 6 184298625 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 441909 2024-02-28 13:25:47.174 2024-02-28 13:35:48.025 \N At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Insti https://example.com/ 647 441900 440587.440629.441187.441579.441668.441674.441678.441824.441893.441900.441909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1547143276761 0 \N \N f 0 \N 15 107791221 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 442544 2024-02-28 18:33:27.617 2024-02-28 18:43:28.623 \N Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should sm https://example.com/ 10728 442084 442084.442544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9632379273981 0 \N \N f 0 \N 2 4613369 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 440629 2024-02-27 14:47:56.881 2024-02-27 14:57:57.982 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep https://example.com/ 2010 440587 440587.440629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.97792326033486 0 \N \N f 0 \N 33 162857639 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441678 2024-02-28 10:49:10.948 2024-02-28 10:59:12.385 \N Simply even growth change government music https://example.com/ 16270 441674 440587.440629.441187.441579.441668.441674.441678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0177101004295 0 \N \N f 0 \N 25 80753019 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441187 2024-02-27 22:46:38.978 2024-02-27 22:56:40.622 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point som https://example.com/ 17095 440629 440587.440629.441187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7887286684898 0 \N \N f 0 \N 31 237946229 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441893 2024-02-28 13:14:33.855 2024-02-28 13:24:35.146 \N Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration https://example.com/ 4538 441824 440587.440629.441187.441579.441668.441674.441678.441824.441893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6608700384683 0 \N \N f 0 \N 17 13348529 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 440587 2024-02-27 14:19:52.358 2024-02-27 14:29:53.944 At audience she. Skill performance represent mouth score side air. Alone you ev Possible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nIndiv https://example.com/ 18170 \N 440587 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4609030887103 0 \N \N f 0 \N 40 23997647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441674 2024-02-28 10:47:39.4 2024-02-28 10:57:40.833 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both https://example.com/ 21612 441668 440587.440629.441187.441579.441668.441674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8096701811039 0 \N \N f 0 \N 26 74966691 0 f f \N \N \N \N 440587 \N 0 0 \N \N f \N 441863 2024-02-28 12:54:46.894 2024-02-28 13:04:48.912 \N Power this as. Time Republican goal trade pro https://example.com/ 2963 441843 441843.441863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.399414194807974 0 \N \N f 0 \N 0 126408280 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 441751 2024-02-28 11:31:41.235 2024-02-28 11:41:42.93 \N View especially nation nor third to husband. N https://example.com/ 18735 441747 441695.441737.441747.441751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0174499151207 0 \N \N f 0 \N 2 67726541 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441737 2024-02-28 11:21:14.385 2024-02-28 11:31:16.731 \N Policy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several whit https://example.com/ 21060 441695 441695.441737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8184614579261 0 \N \N f 0 \N 4 19796285 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441747 2024-02-28 11:29:19.849 2024-02-28 11:39:21.054 \N Beyond song throw blood hard. Show alrea https://example.com/ 20904 441737 441695.441737.441747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53776232277489 0 \N \N f 0 \N 3 32929608 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441833 2024-02-28 12:33:07.937 2024-02-28 12:43:09.411 \N Scientist light the https://example.com/ 1038 441827 441695.441823.441827.441833 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.183102738951 0 \N \N f 0 \N 1 96585400 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442068 2024-02-28 14:42:40.528 2024-02-28 14:52:42.188 \N Poor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figu https://example.com/ 686 441823 441695.441823.442068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3981804587421 0 \N \N f 0 \N 6 65080570 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441721 2024-02-28 11:10:59.399 2024-02-28 11:21:00.589 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage r https://example.com/ 1970 441709 441695.441699.441709.441721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9942345281717 0 \N \N f 0 \N 2 106783527 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442555 2024-02-28 18:48:13.706 2024-02-28 18:58:14.89 \N Mr right bring various. Whose apply laugh only. Simply center pa https://example.com/ 15890 442499 441695.442446.442473.442499.442555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9377898124584 0 \N \N f 0 \N 2 45660295 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442499 2024-02-28 17:50:48.293 2024-02-28 18:00:49.372 \N Top happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio https://example.com/ 678 442473 441695.442446.442473.442499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7002014711306 0 \N \N f 0 \N 3 42503530 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441632 2024-02-28 10:00:04.694 2024-02-28 10:10:06.132 Hundred position represent six morning manage school and. Shoulder ca \N https://example.com/ 644 \N 441632 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.3309802958601 0 \N \N f 0 \N 1 237773852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 440830 2024-02-27 17:21:54.386 2024-02-27 17:31:56.01 Yeah word become defense role yourself suddenly. Draw r Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person https://example.com/ 15148 \N 440830 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 8.2533085197263 0 \N \N f 0 \N 3 102135331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441396 2024-02-28 02:29:04.451 2024-02-28 02:39:05.743 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nBenefit car actually you open. Election hear wide scho https://example.com/ 2596 441333 441333.441396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.909195133025 0 \N \N f 0 \N 9 8575673 0 f f \N \N \N \N 441333 \N 0 0 \N \N f \N 442920 2024-02-29 00:24:30.21 2024-02-29 00:34:32.246 \N Class population stage though page happ https://example.com/ 4654 442904 442904.442920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.00892355438666 0 \N \N f 0 \N 1 145481749 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 440892 2024-02-27 18:22:17.613 2024-02-27 18:32:19.006 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner https://example.com/ 1483 440622 440622.440892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.62179304615694 0 \N \N f 0 \N 0 134216167 0 f f \N \N \N \N 440622 \N 0 0 \N \N f \N 440622 2024-02-27 14:45:07.597 2024-02-27 14:55:09.071 Affect director Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nMajority next authority recognize claim role. Million him position system quickl https://example.com/ 11829 \N 440622 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 4.01825861970618 0 \N \N f 0 \N 20 79569956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441213 2024-02-27 23:06:31.113 2024-02-27 23:16:32.654 \N Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throu https://example.com/ 2776 441074 440692.441027.441074.441213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.3844165558602 0 \N \N f 0 \N 6 42658097 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441074 2024-02-27 20:45:29.24 2024-02-27 20:55:32.426 \N Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them ch https://example.com/ 20153 441027 440692.441027.441074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2939940492964 0 \N \N f 0 \N 12 218143878 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441027 2024-02-27 20:05:38.583 2024-02-27 20:15:39.636 \N Rule hope accept blue. Firm performance go o https://example.com/ 8360 440692 440692.441027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3553152806682 0 \N \N f 0 \N 14 210750262 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 440911 2024-02-27 18:36:59.938 2024-02-27 18:47:02.139 Career player thing second down win. Feel true exp Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nWhether special arm economy house. Us six floor break huge https://example.com/ 831 \N 440911 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 5.59389309303452 0 \N \N f 0 \N 20 190293971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441773 2024-02-28 11:42:57.781 2024-02-28 11:52:58.694 Floor white civil remain. Purp Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far. https://example.com/ 18231 \N 441773 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8797880239887 0 \N \N f 0 \N 0 185024611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442496 2024-02-28 17:48:05.602 2024-02-28 17:58:07.602 Production per can TV ahead million. Few yard thank hotel kn Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead t https://example.com/ 2322 \N 442496 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5137646941308 0 \N \N f 0 \N 9 3799090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441169 2024-02-27 22:32:37.399 2024-02-27 22:42:38.314 Parent always at part must all. Every win environm Get executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nOccur chair truth these officer focus black. Walk c https://example.com/ 18208 \N 441169 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.9884892503288 0 \N \N f 0 \N 33 16893878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442939 2024-02-29 00:50:13.424 2024-02-29 01:00:15.241 \N Fund spring who save three true. Past director road where I hel https://example.com/ 17275 442904 442904.442939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9583870413433 0 \N \N f 0 \N 1 198085851 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443154 2024-02-29 07:33:01.309 2024-02-29 07:43:02.773 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. https://example.com/ 20840 398367 398085.398367.443154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4544364078295 0 \N \N f 0 \N 0 231731384 0 f f \N \N \N \N 398085 \N 0 0 \N \N f \N 443222 2024-02-29 09:35:07.945 2024-02-29 09:45:09.184 Quite teacher accept per agent Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nWest te https://example.com/ 20509 \N 443222 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 27.888334053795 0 \N \N f 0 \N 0 96998599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441070 2024-02-27 20:42:26.762 2024-02-27 20:52:28.011 Tell difference pattern carry join. Size factor particularly necessary step. Li Skin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy. https://example.com/ 10981 \N 441070 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 13.0789503326917 0 \N \N f 0 \N 1 200308704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442956 2024-02-29 01:12:44.774 2024-02-29 01:22:46.469 Source scientist hair let. Tough hit specific else. Task pretty several to Forget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard pro https://example.com/ 16214 \N 442956 \N \N \N \N \N \N \N \N security \N ACTIVE \N 5.17528079804954 0 \N \N f 0 \N 0 135952331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441553 2024-02-28 08:01:43.012 2024-02-28 08:11:45.307 Moment smile cell cold Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nNewspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team past ground half forget.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nBusiness food practice look would full across. Official buy thought goal. Tr https://example.com/ 3706 \N 441553 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.5415021904568 0 \N \N f 0 \N 6 126774821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441968 2024-02-28 13:59:11.578 2024-02-28 14:09:14.306 Structure ever film speech along somebody. Member Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once pa https://example.com/ 19484 \N 441968 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 16.0536792472253 0 \N \N f 0 \N 9 26021432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441029 2024-02-27 20:05:55.976 2024-02-27 20:15:57.806 Health recently away many who girl admit. Value serve identify summer Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nSense edge https://example.com/ 19469 \N 441029 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 25.0998402859194 0 \N \N f 0 \N 0 95863556 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441604 2024-02-28 09:11:42.351 2024-02-28 09:21:44.179 Strong of create prev Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover https://example.com/ 19732 \N 441604 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 6.42708187189463 0 \N \N f 0 \N 0 220963058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443134 2024-02-29 06:55:54.885 2024-02-29 07:05:56.386 \N Involve morning someone them Congress keep rule. Order price condition get despite. Class voi https://example.com/ 960 442157 441695.441712.441750.441801.441803.442135.442141.442148.442157.443134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78751624443499 0 \N \N f 0 \N 0 229207924 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443067 2024-02-29 04:15:24.513 2024-02-29 04:25:25.478 Many soldier role. Far buy able idea president try television. Raise represent leave during huge through early. For https://example.com/ 14795 \N 443067 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 2.98543528650015 0 \N \N f 0 \N 2 162688489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442896 2024-02-28 23:50:35.321 2024-02-29 00:00:36.246 Community least media interest. Senior yet later always. Treat central body toward. Cell throughout whether. Majority join reflect https://example.com/ 11038 \N 442896 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 0.431908517082285 0 \N \N f 0 \N 1 76364641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443119 2024-02-29 06:33:00.142 2024-02-29 06:43:01.557 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along se https://example.com/ 18357 443115 443108.443115.443119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.75294179698064 0 \N \N f 0 \N 0 24667148 0 f f \N \N \N \N 443108 \N 0 0 \N \N f \N 443111 2024-02-29 06:19:40.041 2024-02-29 06:29:41.372 \N Scientist machine manager. Place movement kitchen indeed these change https://example.com/ 19030 442904 442904.443111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3717264152007 0 \N \N f 0 \N 0 122471812 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 442934 2024-02-29 00:39:00.202 2024-02-29 00:49:01.844 \N Republican begin audience guy get expect table. Professor certain central https://example.com/ 16442 442896 442896.442934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.910429089573 0 \N \N f 0 \N 0 115208239 0 f f \N \N \N \N 442896 \N 0 0 \N \N f \N 443124 2024-02-29 06:39:01.137 2024-02-29 06:49:02.952 \N Agency rate seven fear open. De https://example.com/ 15063 443120 441749.443117.443120.443124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4042929466861 0 \N \N f 0 \N 0 25100214 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 443020 2024-02-29 02:56:50.996 2024-02-29 03:06:52.7 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousan https://example.com/ 18680 442904 442904.443020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2343269809336 0 \N \N f 0 \N 0 3351550 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443014 2024-02-29 02:48:43.334 2024-02-29 02:58:44.504 \N Deep government cold west. Act computer vot https://example.com/ 2039 442904 442904.443014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9121616156173 0 \N \N f 0 \N 0 129720289 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443675 2024-02-29 15:23:12.114 2024-02-29 15:33:13.838 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nPu https://example.com/ 11443 443659 443545.443659.443675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0254318498166 0 \N \N f 0 \N 1 212972918 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443791 2024-02-29 16:28:36.07 2024-02-29 16:38:37.29 \N Political official wo https://example.com/ 6526 443765 443755.443765.443791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7081084416355 0 \N \N f 0 \N 2 63787880 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443230 2024-02-29 09:46:47.19 2024-02-29 09:56:48.173 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot https://example.com/ 18956 443227 443178.443227.443230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.114765427146 0 \N \N f 0 \N 0 245675272 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 443237 2024-02-29 09:53:48.01 2024-02-29 10:03:49.465 \N Foot not wonder myself ea https://example.com/ 4177 443228 443228.443237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7667571601171 0 \N \N f 0 \N 0 204247 0 f f \N \N \N \N 443228 \N 0 0 \N \N f \N 443128 2024-02-29 06:44:19.222 2024-02-29 06:54:20.772 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly s https://example.com/ 9418 442809 442084.442544.442809.443128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41138629668011 0 \N \N f 0 \N 0 221327848 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443127 2024-02-29 06:41:44.122 2024-02-29 06:51:45.623 \N Purpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nAgency rate seven fear open. Design group sense left enjoy. Voice care co https://example.com/ 3456 440875 440875.443127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9782696736891 0 \N \N f 0 \N 0 99872181 0 f f \N \N \N \N 440875 \N 0 0 \N \N f \N 443761 2024-02-29 16:14:05.132 2024-02-29 16:24:06.594 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still secu https://example.com/ 1394 443660 443583.443611.443660.443761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.640666068688 0 \N \N f 0 \N 1 182084927 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443113 2024-02-29 06:26:20.586 2024-02-29 06:36:21.878 \N Name put just democratic follow beyond marriage minute. Only https://example.com/ 5565 443097 443097.443113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1498579345021 0 \N \N f 0 \N 0 222260686 0 f f \N \N \N \N 443097 \N 0 0 \N \N f \N 443117 2024-02-29 06:30:52.593 2024-02-29 06:40:54.039 \N Religious same wish cost make. Else official career fire. Form wind film look d https://example.com/ 15159 441749 441749.443117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.79467518972287 0 \N \N f 0 \N 2 242381882 0 f f \N \N \N \N 441749 \N 0 0 \N \N f \N 442141 2024-02-28 15:13:56.399 2024-02-28 15:23:58.223 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody r https://example.com/ 10586 442135 441695.441712.441750.441801.441803.442135.442141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2296376291777 0 \N \N f 0 \N 6 12027157 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 441803 2024-02-28 12:11:25.745 2024-02-28 12:21:26.849 \N Month explain matter south. Thus car occur bad. Green various method rule https://example.com/ 19924 441801 441695.441712.441750.441801.441803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96014870824789 0 \N \N f 0 \N 8 79184142 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443143 2024-02-29 07:08:36.249 2024-02-29 07:18:37.231 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant a https://example.com/ 21514 443132 442084.442146.443132.443143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.61185926323684 0 \N \N f 0 \N 1 68695412 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443153 2024-02-29 07:32:36.003 2024-02-29 07:42:37.59 \N Measure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most https://example.com/ 17116 442773 441843.442346.442773.443153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9910717502269 0 \N \N f 0 \N 0 48537561 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443803 2024-02-29 16:35:31.842 2024-02-29 16:45:33.552 \N Blood coach citizen choice defense https://example.com/ 18829 443791 443755.443765.443791.443803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0642017984749 0 \N \N f 0 \N 1 182033609 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443164 2024-02-29 07:49:45.322 2024-02-29 07:59:46.362 Between remember watch image save win determine. Each red Wide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special. https://example.com/ 4166 \N 443164 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3696325250507 0 \N \N f 0 \N 0 197939023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443142 2024-02-29 07:07:18.509 2024-02-29 07:17:19.947 \N Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must reco https://example.com/ 21343 442751 442751.443142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.46640153031247 0 \N \N f 0 \N 1 229756671 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443805 2024-02-29 16:37:34.493 2024-02-29 16:47:37.335 \N Republican plan ever. Avoi https://example.com/ 11165 441843 441843.443805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19911413569106 0 \N \N f 0 \N 0 183055183 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443057 2024-02-29 04:00:50.764 2024-02-29 04:10:51.65 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record prov https://example.com/ 701 442904 442904.443057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.47861244520755 0 \N \N f 0 \N 5 136572398 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443797 2024-02-29 16:31:18.154 2024-02-29 16:41:19.351 Fund spring who save three true. Past director road where I help Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional. https://example.com/ 21441 \N 443797 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1732324767365 0 \N \N f 0 \N 0 210125006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442578 2024-02-28 19:08:04.461 2024-02-28 19:18:05.835 \N Shake pretty eat probably https://example.com/ 20581 442313 442313.442578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.496447491072 0 \N \N f 0 \N 0 35126897 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443159 2024-02-29 07:42:05.193 2024-02-29 07:52:06.182 \N Detail me send tax knowledge. Ba https://example.com/ 12289 442987 442710.442721.442987.443159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62861412832381 0 \N \N f 0 \N 0 237946671 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443097 2024-02-29 05:57:38.06 2024-02-29 06:07:39.502 Hard same business read realize care. Nature to happen gard Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social. https://example.com/ 9921 \N 443097 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9724540570484 0 \N \N f 0 \N 1 34770681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443213 2024-02-29 09:19:37.644 2024-02-29 09:29:39.775 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nCapital treat simple https://example.com/ 20717 443188 443099.443188.443213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4950790859118 0 \N \N f 0 \N 0 88177174 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 442170 2024-02-28 15:27:29.929 2024-02-28 15:37:30.734 Strategy way low soldier. Thank think crime. Kind page begin news throw provid Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Wor https://example.com/ 1465 \N 442170 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 6.63980130800553 0 \N \N f 0 \N 20 161086496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443156 2024-02-29 07:35:40.71 2024-02-29 07:45:42.242 \N News half employ https://example.com/ 623 443155 442632.443144.443149.443155.443156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65576928325159 0 \N \N f 0 \N 0 57574168 0 f f \N \N \N \N 442632 \N 0 0 \N \N f \N 443161 2024-02-29 07:47:49.238 2024-02-29 07:57:50.581 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nFew sy https://example.com/ 8448 442710 442710.443161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78599233622005 0 \N \N f 0 \N 0 27390494 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443158 2024-02-29 07:41:12.917 2024-02-29 07:51:14.329 \N List professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occu https://example.com/ 18751 442848 442710.442848.443158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.27005648681976 0 \N \N f 0 \N 0 119357232 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443001 2024-02-29 02:20:15.331 2024-02-29 02:30:16.981 \N Measure whether or material hersel https://example.com/ 20969 442234 442163.442234.443001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.805947866408161 0 \N \N f 0 \N 2 113274421 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443250 2024-02-29 10:05:15.772 2024-02-29 10:15:17.943 \N First right set. Di https://example.com/ 5520 443223 443197.443223.443250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8931151561439 0 \N \N f 0 \N 1 199882936 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 442139 2024-02-28 15:11:30.138 2024-02-28 15:21:32.416 \N Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Rea https://example.com/ 21119 442129 441843.441979.442087.442092.442099.442108.442129.442139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.73916186596 0 \N \N f 0 \N 6 185757786 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443211 2024-02-29 09:16:37.225 2024-02-29 09:26:39.514 \N Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly https://example.com/ 1221 443193 443105.443193.443211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5992973733531 0 \N \N f 0 \N 0 23415548 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443176 2024-02-29 08:07:07.709 2024-02-29 08:17:08.844 \N Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shak https://example.com/ 27 441572 441572.443176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8681602052273 0 \N \N f 0 \N 0 144739828 0 f f \N \N \N \N 441572 \N 0 0 \N \N f \N 443465 2024-02-29 13:33:30.921 2024-02-29 13:43:32.599 \N Speak street chance point. Blood most stay ask fund water. Three https://example.com/ 16956 443462 443462.443465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0810926988087 0 \N \N f 0 \N 2 31920164 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 443170 2024-02-29 07:59:00.351 2024-02-29 08:09:01.526 Ten instead develop somebody into school. Main building plan school public p Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil. https://example.com/ 11956 \N 443170 \N \N \N \N \N \N \N \N news \N ACTIVE \N 12.2634679885217 0 \N \N f 0 \N 0 81498705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443163 2024-02-29 07:48:45.277 2024-02-29 07:58:46.132 It fly over au Million significant throw build. Light subject recently very produce room. Machine parent https://example.com/ 10112 \N 443163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.58616434052789 0 \N \N f 0 \N 0 199854305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443101 2024-02-29 06:04:36.14 2024-02-29 06:14:37.467 \N Hot society statement bed watch party himself firm. Attention type note difficult for https://example.com/ 20509 443099 443099.443101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.44120057469496 0 \N \N f 0 \N 2 167155051 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443169 2024-02-29 07:56:56.852 2024-02-29 08:06:58.755 View especially nation nor third to husband. Network low already en Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money desp https://example.com/ 12049 \N 443169 \N \N \N \N \N \N \N \N science \N ACTIVE \N 23.1261592467598 0 \N \N f 0 \N 2 52407155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443177 2024-02-29 08:09:57.936 2024-02-29 08:19:59.147 \N Family material upon Democrat. The remain appear information degree. Same employee image collection cus https://example.com/ 16939 443098 440266.440388.440396.440419.443098.443177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2192680956092 0 \N \N f 0 \N 1 173751110 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 443139 2024-02-29 07:00:03.901 2024-02-29 07:10:05.979 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prov https://example.com/ 12965 442163 442163.443139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0794207497366 0 \N \N f 0 \N 0 205196227 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 440266 2024-02-27 06:07:28.902 2024-02-28 07:05:11.613 Sound clearly happen age onto imagine Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyo https://example.com/ 5757 \N 440266 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 20.737869034168 0 \N \N f 0 \N 31 165636862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443184 2024-02-29 08:23:05.222 2024-02-29 08:33:06.707 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether bett https://example.com/ 11561 443129 443129.443184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1676845426237 0 \N \N f 0 \N 0 180188338 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 442188 2024-02-28 15:34:32.614 2024-02-28 15:44:34.396 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing l https://example.com/ 21532 442163 442163.442188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.12081895365394 0 \N \N f 0 \N 1 14471004 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443207 2024-02-29 09:14:58.523 2024-02-29 09:24:59.616 \N Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch las https://example.com/ 18524 443205 443187.443195.443200.443205.443207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5950553826812 0 \N \N f 0 \N 0 188330436 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443216 2024-02-29 09:21:46.08 2024-02-29 09:31:48.01 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nS https://example.com/ 17944 443209 443083.443162.443190.443209.443216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.384465022274 0 \N \N f 0 \N 2 59041013 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443188 2024-02-29 08:30:56.603 2024-02-29 08:40:57.745 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natu https://example.com/ 20738 443099 443099.443188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1176090834738 0 \N \N f 0 \N 1 187983253 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443178 2024-02-29 08:11:02.095 2024-02-29 08:21:03.23 Lead between race contain politics. Base Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become. https://example.com/ 9438 \N 443178 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.6299694328622 0 \N \N f 0 \N 8 52227279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443180 2024-02-29 08:15:03.052 2024-02-29 08:25:04.85 \N Leave example grow lead https://example.com/ 20327 443101 443099.443101.443180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.549384315578 0 \N \N f 0 \N 0 206717873 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443186 2024-02-29 08:28:01.447 2024-02-29 08:38:03.07 Compare strategy affect threat stage ap Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last. https://example.com/ 21451 \N 443186 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.2134669192933 0 \N \N f 0 \N 0 203656772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443245 2024-02-29 10:02:57.796 2024-02-29 10:12:59.913 \N Tax kid loss hear ahead common best see. https://example.com/ 17212 442606 442191.442606.443245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7248979386908 0 \N \N f 0 \N 0 81003864 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443192 2024-02-29 08:44:36.877 2024-02-29 08:54:38.926 \N Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do commu https://example.com/ 8376 443178 443178.443192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.02868671400827 0 \N \N f 0 \N 0 161775594 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 442177 2024-02-28 15:30:45.357 2024-02-28 15:40:46.652 \N Stage can fish building senior. Through position capital official. While later pri https://example.com/ 11821 442163 442163.442177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8368907560543 0 \N \N f 0 \N 5 16130096 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443209 2024-02-29 09:16:13.196 2024-02-29 09:26:15.695 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nOut quite different term just req https://example.com/ 15271 443190 443083.443162.443190.443209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6954580761266 0 \N \N f 0 \N 3 240282150 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443212 2024-02-29 09:18:03.646 2024-02-29 09:28:05.5 \N Treatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development https://example.com/ 5597 443182 443099.443100.443182.443212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9640526701177 0 \N \N f 0 \N 0 82882320 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443193 2024-02-29 08:46:03.039 2024-02-29 08:56:05.317 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. https://example.com/ 21155 443105 443105.443193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.811005722212 0 \N \N f 0 \N 7 239267545 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443240 2024-02-29 09:55:30.952 2024-02-29 10:05:31.789 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stu https://example.com/ 21058 441830 441742.441830.443240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7615502526946 0 \N \N f 0 \N 0 230518667 0 f f \N \N \N \N 441742 \N 0 0 \N \N f \N 443189 2024-02-29 08:31:18.449 2024-02-29 08:41:19.764 Star bill toward also almost. Reason machine great per artist raise go a Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like. https://example.com/ 4378 \N 443189 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 23.8951579586807 0 \N \N f 0 \N 0 163941042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443195 2024-02-29 08:47:01.73 2024-02-29 08:57:03.009 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too https://example.com/ 2039 443187 443187.443195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.473706202798 0 \N \N f 0 \N 5 28653802 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443220 2024-02-29 09:29:01.449 2024-02-29 09:39:03.381 \N Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect https://example.com/ 20205 443210 443199.443210.443220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7702584408152 0 \N \N f 0 \N 0 145110535 0 f f \N \N \N \N 443199 \N 0 0 \N \N f \N 442632 2024-02-28 20:08:35 2024-02-28 20:18:39.635 Position see least suddenly just orde Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug https://example.com/ 19158 \N 442632 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 9.28993921105572 0 \N \N f 0 \N 13 96173957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443200 2024-02-29 08:54:18.62 2024-02-29 09:04:19.944 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper roc https://example.com/ 6430 443195 443187.443195.443200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4445987520602 0 \N \N f 0 \N 4 48474900 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443202 2024-02-29 08:59:55.328 2024-02-29 09:09:57.876 \N Real goal cover. Ment https://example.com/ 21104 443063 442986.443050.443063.443202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.92838942739 0 \N \N f 0 \N 0 243312850 0 f f \N \N \N \N 442986 \N 0 0 \N \N f \N 443204 2024-02-29 09:01:31.351 2024-02-29 09:11:33.896 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting https://example.com/ 21577 443187 443187.443204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7697741044761 0 \N \N f 0 \N 1 226340050 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443162 2024-02-29 07:48:30.733 2024-02-29 07:58:33.026 \N Call system shake up person. Project anything several water class that table exist. Commercial hold gr https://example.com/ 18994 443083 443083.443162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62979600957544 0 \N \N f 0 \N 5 206290134 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443174 2024-02-29 08:02:17.565 2024-02-29 08:12:21.084 Drug life detail letter major himself so. Politics participant tough tr Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine ever https://example.com/ 6149 \N 443174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0201270821286 0 \N \N f 0 \N 0 158361403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443229 2024-02-29 09:45:52.923 2024-02-29 09:55:54.149 \N Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure cus https://example.com/ 19732 442710 442710.443229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7054415459358 0 \N \N f 0 \N 0 48595459 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443099 2024-02-29 06:02:14.936 2024-03-01 09:56:03.083 Fly include one church TV air. Democr Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. https://example.com/ 20980 \N 443099 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 18.8119566383796 0 \N \N f 0 \N 21 62600565 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443215 2024-02-29 09:21:04.852 2024-02-29 09:31:06.192 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Cong https://example.com/ 19502 443177 440266.440388.440396.440419.443098.443177.443215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2473035058203 0 \N \N f 0 \N 0 163294594 0 f f \N \N \N \N 440266 \N 0 0 \N \N f \N 443198 2024-02-29 08:50:27.849 2024-02-29 09:00:29.286 Image reality political wind Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose https://example.com/ 13517 \N 443198 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.0976445619029 0 \N \N f 0 \N 0 153321303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443182 2024-02-29 08:15:37.735 2024-02-29 08:25:38.881 \N Agree such recognize fast various. Add https://example.com/ 9843 443100 443099.443100.443182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.178744264143 0 \N \N f 0 \N 2 184003417 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443185 2024-02-29 08:25:59.592 2024-02-29 08:36:00.863 Increase consumer itself trad Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach h https://example.com/ 17291 \N 443185 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 27.3479759056968 0 \N \N f 0 \N 0 138133545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442849 2024-02-28 23:19:08.13 2024-02-28 23:29:09.591 \N Himself seem a https://example.com/ 8841 442793 442781.442793.442849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2381986919718 0 \N \N f 0 \N 0 110209745 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 443190 2024-02-29 08:36:02.006 2024-02-29 08:46:03.065 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent. https://example.com/ 1094 443162 443083.443162.443190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28609500233527 0 \N \N f 0 \N 4 141813470 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443199 2024-02-29 08:52:57.791 2024-02-29 09:02:59.452 Between buy half story. Buy whom signi Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individu https://example.com/ 1519 \N 443199 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 16.4347924632234 0 \N \N f 0 \N 2 133454743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443243 2024-02-29 10:01:20.419 2024-02-29 10:11:21.772 \N Off class property ok try. https://example.com/ 2543 443228 443228.443243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2579603760785 0 \N \N f 0 \N 0 176764003 0 f f \N \N \N \N 443228 \N 0 0 \N \N f \N 443244 2024-02-29 10:02:23.516 2024-02-29 10:12:25.015 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise reall https://example.com/ 19524 443160 443160.443244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9465128963263 0 \N \N f 0 \N 0 25568700 0 f f \N \N \N \N 443160 \N 0 0 \N \N f \N 443175 2024-02-29 08:06:23.784 2024-02-29 08:16:24.889 Speak organization direction Walk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region soc https://example.com/ 17639 \N 443175 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 14.146683554262 0 \N \N f 0 \N 1 207679814 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443234 2024-02-29 09:52:11.927 2024-02-29 10:02:14.114 \N Eat culture event thus any https://example.com/ 21458 443197 443197.443234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.372868311073375 0 \N \N f 0 \N 2 61743582 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443219 2024-02-29 09:27:03.063 2024-02-29 09:37:04.79 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing instituti https://example.com/ 18784 443216 443083.443162.443190.443209.443216.443219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3169862067566 0 \N \N f 0 \N 1 203177689 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443224 2024-02-29 09:40:32.152 2024-02-29 09:50:33.717 \N Wonder check lead door. Herself safe believe show assume will. https://example.com/ 19633 443219 443083.443162.443190.443209.443216.443219.443224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6649727784795 0 \N \N f 0 \N 0 173183840 0 f f \N \N \N \N 443083 \N 0 0 \N \N f \N 443173 2024-02-29 08:02:17.367 2024-02-29 08:12:18.867 \N Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget https://example.com/ 18809 443168 443168.443173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.05934183808373 0 \N \N f 0 \N 1 196162293 0 f f \N \N \N \N 443168 \N 0 0 \N \N f \N 442814 2024-02-28 22:57:52.95 2024-02-28 23:07:54.038 \N Operation against song https://example.com/ 8796 442813 442751.442813.442814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9409372294804 0 \N \N f 0 \N 1 127303307 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442806 2024-02-28 22:46:23.391 2024-02-28 22:56:24.83 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeti https://example.com/ 17094 442793 442781.442793.442806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.871871133327 0 \N \N f 0 \N 0 132045276 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442803 2024-02-28 22:44:33.207 2024-02-28 22:54:34.503 \N Entire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nCultural everyone partner bed difference cup science. Size just rather. Rem https://example.com/ 18500 442751 442751.442803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96428667708112 0 \N \N f 0 \N 1 25363638 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443249 2024-02-29 10:04:36.087 2024-02-29 10:14:37.845 \N Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race charact https://example.com/ 2709 443108 443108.443249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.30860489854258 0 \N \N f 0 \N 0 233888273 0 f f \N \N \N \N 443108 \N 0 0 \N \N f \N 443294 2024-02-29 10:58:25.214 2024-02-29 11:08:26.726 \N Down item fund list company. Blue picture now her https://example.com/ 20539 443288 443288.443294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0172123381547 0 \N \N f 0 \N 0 31307886 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 443225 2024-02-29 09:42:19.362 2024-02-29 09:52:20.599 \N Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nRemember statemen https://example.com/ 19030 442084 442084.443225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.449553570542 0 \N \N f 0 \N 1 189681120 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443236 2024-02-29 09:53:38.57 2024-02-29 10:03:39.587 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full e https://example.com/ 9348 443187 443187.443236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22307948329628 0 \N \N f 0 \N 1 84747864 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443248 2024-02-29 10:04:32.881 2024-02-29 10:14:34.044 \N Couple writer life commercial art. Medical ban https://example.com/ 19566 443197 443197.443248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1783181514284 0 \N \N f 0 \N 0 16040568 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443206 2024-02-29 09:08:56.179 2024-02-29 09:18:57.301 \N Say this find practice. Small exactly explain from born draw https://example.com/ 18363 443187 443187.443206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6516818433331 0 \N \N f 0 \N 0 234143605 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 442023 2024-02-28 14:21:48.049 2024-02-28 14:32:20.672 Become popular local cut evidence. Available stage four member next change de Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make https://example.com/ 18452 \N 442023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2155767236423 0 \N \N f 0 \N 42 186512896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443241 2024-02-29 10:00:00.297 2024-02-29 10:10:02.026 \N Apply president organization risk school prevent baby. Step trial course a https://example.com/ 19941 443233 443178.443232.443233.443241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3675999507566 0 \N \N f 0 \N 0 10175318 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 443242 2024-02-29 10:01:08.851 2024-02-29 10:11:10.022 \N Every good development clearly poor. Fact former improve here young four piece. Dark exp https://example.com/ 20573 443234 443197.443234.443242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5539358548355 0 \N \N f 0 \N 1 7153504 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443201 2024-02-29 08:58:54.829 2024-02-29 09:08:55.847 Best affect mind former history. Likely half situation wife order. Human time d Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. https://example.com/ 20225 \N 443201 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 22.2582841858763 0 \N \N f 0 \N 2 34592407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443168 2024-02-29 07:54:37.223 2024-02-29 08:04:38.789 Surface tree knowledge mean. Trade drop hope least. Perhaps expect write phys Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station s https://example.com/ 1577 \N 443168 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.6294299223264 0 \N \N f 0 \N 2 91215781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443239 2024-02-29 09:54:48.758 2024-02-29 10:04:50.128 \N Job stage use material manage. Perhaps nothing project https://example.com/ 18402 442691 442325.442691.443239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53354933530581 0 \N \N f 0 \N 0 164294310 0 f f \N \N \N \N 442325 \N 0 0 \N \N f \N 443208 2024-02-29 09:16:03.097 2024-02-29 09:26:05.513 Someone network true easy sto Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nMaybe seem particular stand blood source. Certain focus forget p https://example.com/ 805 \N 443208 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.2614147249698 0 \N \N f 0 \N 0 113350333 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442178 2024-02-28 15:30:48.061 2024-02-28 15:40:49.113 \N Herself will eight force small lose. Budget https://example.com/ 684 442163 442163.442178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6000303628185 0 \N \N f 0 \N 0 131249120 0 f f \N \N \N \N 442163 \N 0 0 \N \N f \N 443260 2024-02-29 10:11:10.633 2024-02-29 10:21:11.747 \N Manager suffer she clearly https://example.com/ 18539 441843 441843.443260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7627593129195 0 \N \N f 0 \N 0 175514583 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 442561 2024-02-28 18:51:21.298 2024-02-28 19:01:22.396 \N Seven nice notice wife they couple. Suffer town happy learn. Yours https://example.com/ 14247 442191 442191.442561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53035325380107 0 \N \N f 0 \N 1 213853348 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443252 2024-02-29 10:05:30.04 2024-02-29 10:15:31.314 \N Reach road deal especially https://example.com/ 20802 435142 435142.443252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99792115349332 0 \N \N f 0 \N 0 158966189 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 441699 2024-02-28 11:00:14.184 2024-02-28 11:10:16.568 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nStar audience https://example.com/ 20310 441695 441695.441699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42022686746447 0 \N \N f 0 \N 16 112154488 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 442606 2024-02-28 19:41:37.503 2024-02-28 19:51:38.519 \N Know son future suggest paper personal these https://example.com/ 21619 442191 442191.442606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19719982398379 0 \N \N f 0 \N 1 176672406 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443271 2024-02-29 10:30:05.576 2024-02-29 10:40:06.501 \N Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. https://example.com/ 680 442478 442306.442428.442465.442478.443271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2565772620186 0 \N \N f 0 \N 0 217386266 0 f f \N \N \N \N 442306 \N 0 0 \N \N f \N 443278 2024-02-29 10:36:53.695 2024-02-29 10:46:54.908 Protect evidence ve Third would fire interest PM upon people. Girl https://example.com/ 21418 \N 443278 \N \N \N \N \N \N \N \N art \N ACTIVE \N 8.37342983632119 0 \N \N f 0 \N 0 71499407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443263 2024-02-29 10:12:57.942 2024-02-29 10:22:59.756 \N Summer https://example.com/ 1800 442786 442781.442786.443263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.043596977529 0 \N \N f 0 \N 0 12213978 0 f f \N \N \N \N 442781 \N 0 0 \N \N f \N 442215 2024-02-28 15:41:50.392 2024-02-28 15:51:52.525 \N Pattern fear term. Second always control type movie. Girl at https://example.com/ 2832 442191 442191.442215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1126396893395 0 \N \N f 0 \N 1 49463072 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443461 2024-02-29 13:29:12.703 2024-02-29 13:39:13.794 \N Ready which computer major take involve suggest qui https://example.com/ 16680 443372 443372.443461 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.94774127946036 0 \N \N f 0 \N 0 173063413 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 442084 2024-02-28 14:48:31.141 2024-02-28 14:58:32.391 For wrong offer a. Image bad should executive society mean w Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nAdult carry training two campaign. H https://example.com/ 20225 \N 442084 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.06296292088027 0 \N \N f 0 \N 100 244413356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443267 2024-02-29 10:26:24.875 2024-02-29 10:36:26.861 \N Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult desig https://example.com/ 620 443058 443058.443267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.1558180976645 0 \N \N f 0 \N 0 109500852 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 441979 2024-02-28 14:04:11.881 2024-02-28 14:14:13.527 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. S https://example.com/ 18380 441843 441843.441979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.136788050299614 0 \N \N f 0 \N 14 44154498 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443246 2024-02-29 10:03:09.452 2024-02-29 10:13:10.582 \N Set how recognize operation Amer https://example.com/ 1825 442561 442191.442561.443246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00830247488785 0 \N \N f 0 \N 0 4753405 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443251 2024-02-29 10:05:25.117 2024-02-29 10:15:26.176 Hot society statement bed watch party himself firm. Attention typ Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section. https://example.com/ 18904 \N 443251 \N \N \N \N \N \N \N \N security \N ACTIVE \N 8.65961302930231 0 \N \N f 0 \N 1 102158051 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443254 2024-02-29 10:07:00.594 2024-02-29 10:17:01.577 \N Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down https://example.com/ 20370 443242 443197.443234.443242.443254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60713365179506 0 \N \N f 0 \N 0 248248072 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443256 2024-02-29 10:07:33.42 2024-02-29 10:17:35.126 \N Detail discussion line around. Art along house k https://example.com/ 1512 442892 442892.443256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.620963889662 0 \N \N f 0 \N 0 222939019 0 f f \N \N \N \N 442892 \N 0 0 \N \N f \N 443226 2024-02-29 09:43:15.554 2024-02-29 09:53:17.66 \N Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generati https://example.com/ 18321 443197 443197.443226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8736619206988 0 \N \N f 0 \N 0 178022144 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 441801 2024-02-28 12:09:53.833 2024-02-28 12:19:54.842 \N Decision certain voice where collection thu https://example.com/ 720 441750 441695.441712.441750.441801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9714190746818 0 \N \N f 0 \N 10 218698581 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443255 2024-02-29 10:07:15.722 2024-02-29 10:17:17.726 \N Between remember watch image sa https://example.com/ 4654 430342 430342.443255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.245645087492044 0 \N \N f 0 \N 0 73291128 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 443291 2024-02-29 10:51:43.439 2024-02-29 11:01:44.611 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill b https://example.com/ 686 443284 443197.443284.443291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.55544043504663 0 \N \N f 0 \N 0 85979674 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 442892 2024-02-28 23:48:59.711 2024-02-28 23:59:01.024 Money rise give serve will expect factor. Claim outsi Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nFinish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly h https://example.com/ 10591 \N 442892 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 27.2796726207106 0 \N \N f 0 \N 1 70288281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443302 2024-02-29 11:04:02.045 2024-02-29 11:14:03.966 \N Approach stuff big ahead nothing hotel great city. Four east c https://example.com/ 13365 443296 443295.443296.443302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75942013366506 0 \N \N f 0 \N 1 8331519 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443317 2024-02-29 11:12:39.415 2024-02-29 11:22:40.845 \N Everyone usually https://example.com/ 14045 443274 443274.443317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3729774987293 0 \N \N f 0 \N 0 80529194 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443304 2024-02-29 11:04:06.88 2024-02-29 11:14:08.029 Program want y Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such. https://example.com/ 20680 \N 443304 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 10.0083828141141 0 \N \N f 0 \N 0 187004671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443261 2024-02-29 10:11:47.285 2024-02-29 10:21:48.139 Standard choose white. Yard would college him pass. Eye in educ Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method c https://example.com/ 20479 \N 443261 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 2.03769457750511 0 \N \N f 0 \N 0 33193180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443275 2024-02-29 10:33:44.877 2024-02-29 10:43:46.593 \N Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nOut quite d https://example.com/ 17116 442985 442985.443275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4322583048305 0 \N \N f 0 \N 0 13562935 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 443270 2024-02-29 10:29:25.977 2024-02-29 10:39:27.601 \N Improve most form final blood. Section ability possible than strat https://example.com/ 21254 442997 442997.443270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0785291071939 0 \N \N f 0 \N 0 38192432 0 f f \N \N \N \N 442997 \N 0 0 \N \N f \N 443281 2024-02-29 10:47:02.955 2024-02-29 10:57:04.444 \N B https://example.com/ 20511 441986 441695.441719.441986.443281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9354834017971 0 \N \N f 0 \N 0 143856014 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443323 2024-02-29 11:17:18.016 2024-02-29 11:27:19.459 Same product run but perhaps. Statement baby as Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability. https://example.com/ 16638 \N 443323 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 29.4336963090907 0 \N \N f 0 \N 0 132339717 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443273 2024-02-29 10:31:35.608 2024-02-29 10:41:36.635 \N Under big evening others. Trip remain money region report bill gues https://example.com/ 12261 443197 443197.443273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.98659570367877 0 \N \N f 0 \N 0 84875788 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443280 2024-02-29 10:46:55.264 2024-02-29 10:56:56.953 \N N https://example.com/ 16747 441719 441695.441719.443280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8510815044426 0 \N \N f 0 \N 0 58794575 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443318 2024-02-29 11:14:40.617 2024-02-29 11:24:42.103 \N Everything she discuss gun https://example.com/ 18877 443303 443303.443318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5729663628993 0 \N \N f 0 \N 1 76499176 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N 443287 2024-02-29 10:50:29.487 2024-02-29 11:00:30.65 Fly include one church TV air. Democr Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base. https://example.com/ 716 \N 443287 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 5.1410294036306 0 \N \N f 0 \N 0 58477623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443277 2024-02-29 10:36:45.391 2024-02-29 10:46:46.772 Take discuss nature then Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid. https://example.com/ 19243 \N 443277 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 16.6895861605847 0 \N \N f 0 \N 0 30304834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442997 2024-02-29 02:16:32.792 2024-02-29 02:26:34.639 Race civil today. Bro Very maybe current. So source work lawyer set g https://example.com/ 11819 \N 442997 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 3.53780464689287 0 \N \N f 0 \N 2 237664383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443289 2024-02-29 10:51:12.138 2024-02-29 11:01:13.94 \N Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize bette https://example.com/ 633 443250 443197.443223.443250.443289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9894581237356 0 \N \N f 0 \N 0 49064734 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443322 2024-02-29 11:16:59.907 2024-02-29 11:27:02.229 \N Person like among former sort. Only population law conference. https://example.com/ 3461 443312 443295.443312.443322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3697847540804 0 \N \N f 0 \N 1 17572814 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443283 2024-02-29 10:47:27.81 2024-02-29 10:57:29.259 \N Safe pass wife stay effort mission. Major long now hand example commercial. S https://example.com/ 19263 443272 443272.443283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5688277919304 0 \N \N f 0 \N 3 207027493 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443233 2024-02-29 09:50:59.414 2024-02-29 10:01:01.57 \N His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea lat https://example.com/ 1650 443232 443178.443232.443233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9527407277886 0 \N \N f 0 \N 1 208353441 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 443353 2024-02-29 11:45:41.352 2024-02-29 11:55:42.691 \N Agency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip u https://example.com/ 18235 442948 442820.442876.442880.442948.443353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9273784720206 0 \N \N f 0 \N 1 247450403 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 443320 2024-02-29 11:15:40.975 2024-02-29 11:25:41.776 \N Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single https://example.com/ 10469 443295 443295.443320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1232897002046 0 \N \N f 0 \N 0 230124534 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443292 2024-02-29 10:53:08.773 2024-02-29 11:03:10.294 \N Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. https://example.com/ 16965 443290 443274.443290.443292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4084585972744 0 \N \N f 0 \N 1 177884583 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443300 2024-02-29 11:03:44.638 2024-02-29 11:13:46.165 \N Main teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall for https://example.com/ 20287 443105 443105.443300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5954491838243 0 \N \N f 0 \N 2 238206027 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443309 2024-02-29 11:05:56.078 2024-02-29 11:15:58.321 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability p https://example.com/ 10771 443296 443295.443296.443309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3936291815608 0 \N \N f 0 \N 0 58197897 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443326 2024-02-29 11:18:39.607 2024-02-29 11:28:40.869 Out quite different term just require. Store thing key why particular each. Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting https://example.com/ 17124 \N 443326 \N \N \N \N \N \N \N \N health \N ACTIVE \N 16.933033427572 0 \N \N f 0 \N 1 79803502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443293 2024-02-29 10:56:21.36 2024-02-29 11:06:22.972 \N Animal character seek song. Compare put sometimes charge once. Need onto gun conference nothing https://example.com/ 12821 443274 443274.443293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96023045780678 0 \N \N f 0 \N 0 123124040 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443328 2024-02-29 11:20:07.014 2024-02-29 11:30:08.385 \N Strategy way low soldier. Thank think crime. Kind page begin news t https://example.com/ 18583 443297 443295.443297.443328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2856708377593 0 \N \N f 0 \N 2 41576974 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443333 2024-02-29 11:26:11.044 2024-02-29 11:36:12.409 \N South little trip identify similar. Because accept leave line address https://example.com/ 679 443330 443295.443297.443328.443330.443333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4139760757565 0 \N \N f 0 \N 0 151131844 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443338 2024-02-29 11:29:05.708 2024-02-29 11:39:06.893 \N Inside nor professional partner new design machine. Fire occur leav https://example.com/ 18640 443336 443295.443336.443338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.426455191556201 0 \N \N f 0 \N 3 166628635 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443346 2024-02-29 11:41:02.874 2024-02-29 11:51:04.914 Herself will eight forc Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move. https://example.com/ 13378 \N 443346 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 16.4934254884317 0 \N \N f 0 \N 0 108365483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442854 2024-02-28 23:21:23.725 2024-02-28 23:31:24.998 \N Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick ex https://example.com/ 5776 442751 442751.442854 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.08757193564151 0 \N \N f 0 \N 3 150219037 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443343 2024-02-29 11:35:45.15 2024-02-29 11:45:47.026 Them response usually tax tax. Marriage check Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes empl https://example.com/ 2832 \N 443343 \N \N \N \N \N \N \N \N health \N ACTIVE \N 21.2599628169778 0 \N \N f 0 \N 0 242392471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443354 2024-02-29 11:46:39.573 2024-02-29 11:56:40.544 \N Event at administration sister sc https://example.com/ 17513 443319 443319.443354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3082987999549 0 \N \N f 0 \N 1 196570256 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N 443351 2024-02-29 11:44:30.769 2024-02-29 11:54:32.604 \N Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nDe https://example.com/ 20745 443335 443105.443282.443286.443335.443351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0109022476369 0 \N \N f 0 \N 2 138697942 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443282 2024-02-29 10:47:18.472 2024-02-29 10:57:20.149 \N Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nYours https://example.com/ 3360 443105 443105.443282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2547919169629 0 \N \N f 0 \N 5 92061973 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443332 2024-02-29 11:26:01.954 2024-02-29 11:36:03.294 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory min https://example.com/ 18529 443295 443295.443332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2117227174624 0 \N \N f 0 \N 7 132171403 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442800 2024-02-28 22:39:30.375 2024-02-28 22:49:31.921 Book it view should. Impact cold others be without. Fly coa Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nGrow level surface point four. https://example.com/ 21218 \N 442800 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.5491013587247 0 \N \N f 0 \N 2 141136171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443395 2024-02-29 12:33:30.62 2024-02-29 12:43:31.4 \N Serious stay girl enter. His investment develop media out season. Modern com https://example.com/ 19841 443390 443372.443390.443395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0955018674259 0 \N \N f 0 \N 2 324289 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 442399 2024-02-28 16:58:22.54 2024-02-28 17:08:24.065 \N Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass ne https://example.com/ 6202 442381 442313.442381.442399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7216352838394 0 \N \N f 0 \N 0 34399703 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443355 2024-02-29 11:47:05.389 2024-02-29 11:57:06.849 \N Realize store science for pass. Sit decision necessary few above why. Consumer discover stra https://example.com/ 21458 442931 442931.443355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.68356098309956 0 \N \N f 0 \N 0 177212390 0 f f \N \N \N \N 442931 \N 0 0 \N \N f \N 443373 2024-02-29 12:10:55.042 2024-02-29 12:20:57.167 \N Between remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major sim https://example.com/ 20500 443092 442904.443092.443373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2133352261128 0 \N \N f 0 \N 0 62884810 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443031 2024-02-29 03:06:03.916 2024-02-29 03:16:05.93 \N Measure western pretty serious director country. Sport usually room assume fi https://example.com/ 12169 442710 442710.443031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2997542590503 0 \N \N f 0 \N 0 122203183 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443370 2024-02-29 12:08:46.223 2024-02-29 12:18:47.361 \N Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special https://example.com/ 656 443253 442191.442374.443253.443370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.13877645117603 0 \N \N f 0 \N 0 227881586 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443381 2024-02-29 12:23:21.045 2024-02-29 12:33:22.244 \N Debate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key https://example.com/ 20871 443338 443295.443336.443338.443381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.88369470389238 0 \N \N f 0 \N 2 205067946 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443253 2024-02-29 10:06:01.131 2024-02-29 10:16:02.244 \N Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without doo https://example.com/ 16660 442374 442191.442374.443253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1365607910126 0 \N \N f 0 \N 1 151774265 0 f f \N \N \N \N 442191 \N 0 0 \N \N f \N 443336 2024-02-29 11:27:03.88 2024-02-29 11:37:04.852 \N Near whom sit wonder both lay remain. Mention school letter ex https://example.com/ 17064 443295 443295.443336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8695551705193 0 \N \N f 0 \N 8 151452497 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443400 2024-02-29 12:35:13.897 2024-02-29 12:45:15.677 \N Hundred unit music many. But mother however drug call https://example.com/ 16653 443395 443372.443390.443395.443400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.60161481330186 0 \N \N f 0 \N 1 95420082 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443424 2024-02-29 13:02:19.9 2024-02-29 13:12:21.113 \N Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider https://example.com/ 10586 440790 440727.440790.443424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4594504101051 0 \N \N f 0 \N 0 245222229 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 443364 2024-02-29 12:00:05.539 2024-02-29 12:10:07.358 Morning better everybody sense. Today growth t \N https://example.com/ 16670 \N 443364 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.7490122022096 0 \N \N f 0 \N 1 3133071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443266 2024-02-29 10:24:56.804 2024-02-29 10:34:57.873 Great how before current effort because. Simply increase r Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer. https://example.com/ 18909 \N 443266 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 18.3314635845278 0 \N \N f 0 \N 0 98780713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443366 2024-02-29 12:03:06.311 2024-02-29 12:13:07.266 \N Break test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavio https://example.com/ 669 442800 442800.443366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5549395390254 0 \N \N f 0 \N 0 235571670 0 f f \N \N \N \N 442800 \N 0 0 \N \N f \N 443412 2024-02-29 12:50:37.321 2024-02-29 13:00:38.906 Program want yeah color. Decade your peace catch visit. Figure mothe Different dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nUs less sure. Late travel us significant cover word ind https://example.com/ 5825 \N 443412 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 16.328507434943 0 \N \N f 0 \N 1 167562427 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443497 2024-02-29 13:55:45.037 2024-02-29 14:05:46.203 \N Wish low party shake. National offer my specific happen well. Federal word experience. Say early s https://example.com/ 9362 443490 443490.443497 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.0387832471375 0 \N \N f 0 \N 0 218011492 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 443331 2024-02-29 11:24:48.69 2024-02-29 11:34:50.453 \N Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite langu https://example.com/ 21323 443193 443105.443193.443331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6826906913014 0 \N \N f 0 \N 5 143299134 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443418 2024-02-29 12:55:44.338 2024-02-29 13:05:45.585 \N Agree such recognize https://example.com/ 20523 443377 443377.443418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73271010939437 0 \N \N f 0 \N 0 236612944 0 f f \N \N \N \N 443377 \N 0 0 \N \N f \N 443383 2024-02-29 12:24:31.035 2024-02-29 12:34:32.242 \N Service technology https://example.com/ 10818 443374 443295.443305.443374.443383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.70046237481245 0 \N \N f 0 \N 0 3078866 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443398 2024-02-29 12:34:14.672 2024-02-29 12:44:16.593 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nExpert kind conference provide. Structure risk board professional. https://example.com/ 1426 443387 443295.443332.443371.443385.443387.443398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80712036695601 0 \N \N f 0 \N 1 218745673 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443299 2024-02-29 11:00:58.632 2024-02-29 11:11:00.205 \N Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discuss https://example.com/ 794 443178 443178.443299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4467943966886 0 \N \N f 0 \N 0 242972815 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 443363 2024-02-29 11:59:47.024 2024-02-29 12:09:48.802 Act lay son hear. Apply professional really remember rem Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nAff https://example.com/ 20854 \N 443363 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.2423430028076 0 \N \N f 0 \N 0 247922894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443506 2024-02-29 13:59:51.34 2024-02-29 14:09:52.15 Respond even chair h Enou https://example.com/ 19121 \N 443506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89024572525696 0 \N \N f 0 \N 3 15618647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443305 2024-02-29 11:04:17.162 2024-02-29 11:14:18.72 \N Near key among effort cover century support author. https://example.com/ 20564 443295 443295.443305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2348570037699 0 \N \N f 0 \N 4 210767357 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443368 2024-02-29 12:06:47.585 2024-02-29 12:16:48.65 \N Financial all deep why car seat measure most. Today somebo https://example.com/ 15226 443352 442904.443352.443368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4951546935245 0 \N \N f 0 \N 1 52264930 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443365 2024-02-29 12:00:06.046 2024-02-29 12:00:12.175 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base stat https://example.com/ 18392 443364 443364.443365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5552696608025 0 \N \N f 0 \N 0 17999176 0 f f \N \N \N \N 443364 \N 0 0 \N \N f \N 443360 2024-02-29 11:54:04.088 2024-02-29 12:04:05.217 \N Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sou https://example.com/ 739 443354 443319.443354.443360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0683654104487 0 \N \N f 0 \N 0 180925916 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N 442912 2024-02-29 00:10:46.83 2024-02-29 00:20:48.742 They wide job. Hit particular political street nearly few broth Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern millio https://example.com/ 2256 \N 442912 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 6.31597619248108 0 \N \N f 0 \N 2 45582937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443341 2024-02-29 11:34:18.836 2024-02-29 11:44:20.874 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By https://example.com/ 8926 443300 443105.443300.443341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9371049910352 0 \N \N f 0 \N 1 100783626 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443369 2024-02-29 12:08:00.862 2024-02-29 12:18:03.343 \N Than level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nGame https://example.com/ 3461 442792 438737.438874.439111.440421.440438.441615.441767.442792.443369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94713249637747 0 \N \N f 0 \N 0 40218920 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 443387 2024-02-29 12:27:17.326 2024-02-29 12:37:18.506 \N From democratic trial American blue. Save carry son else. While https://example.com/ 7989 443385 443295.443332.443371.443385.443387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4195377024293 0 \N \N f 0 \N 2 135940832 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442514 2024-02-28 18:04:41.048 2024-02-28 18:14:42.459 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nGround baby describe migh https://example.com/ 20133 442170 442170.442514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.127343658304753 0 \N \N f 0 \N 0 238280152 0 f f \N \N \N \N 442170 \N 0 0 \N \N f \N 443378 2024-02-29 12:18:11.656 2024-02-29 12:28:13.562 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress m https://example.com/ 6555 443100 443099.443100.443378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11749692524462 0 \N \N f 0 \N 0 13216051 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443367 2024-02-29 12:06:20.132 2024-02-29 12:16:21.831 Career six also speak of differ Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry https://example.com/ 21571 \N 443367 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 28.1098833580459 0 \N \N f 0 \N 2 10041683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443376 2024-02-29 12:17:32.636 2024-02-29 12:27:34.34 Theory teach dream home past. Population lose establish understand. Study n Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax be https://example.com/ 628 \N 443376 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 6.77220884736919 0 \N \N f 0 \N 0 102261087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442792 2024-02-28 22:27:27.346 2024-02-28 22:37:28.453 \N Officer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real positi https://example.com/ 20776 441767 438737.438874.439111.440421.440438.441615.441767.442792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.9281200066443 0 \N \N f 0 \N 1 124845042 0 f f \N \N \N \N 438737 \N 0 0 \N \N f \N 443375 2024-02-29 12:12:31.415 2024-02-29 12:22:33.374 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. P https://example.com/ 1628 443337 443295.443305.443337.443375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.81904821383336 0 \N \N f 0 \N 0 243320976 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443362 2024-02-29 11:57:52.104 2024-02-29 12:07:53.202 War black change thing any fro Condition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nSite coach https://example.com/ 18460 \N 443362 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.9240096881692 0 \N \N f 0 \N 0 29695852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443510 2024-02-29 14:00:51.973 2024-02-29 14:00:57.017 \N Decade https://example.com/ 18945 5415 5415.443510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0349761829093 0 \N \N f 0 \N 0 212015644 0 f f \N \N \N \N 5415 \N 0 0 \N \N f \N 443377 2024-02-29 12:17:43.423 2024-02-29 12:27:45.198 Outside mother movement day enough. Ever building How never cut grow benefit. Dinner environmental side financial. Car statement https://example.com/ 15491 \N 443377 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.1968518040593 0 \N \N f 0 \N 1 185355298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443439 2024-02-29 13:11:04.729 2024-02-29 13:21:05.878 \N Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful b https://example.com/ 10549 443379 443105.443379.443439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.80690784657597 0 \N \N f 0 \N 1 202386622 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 442608 2024-02-28 19:44:16.544 2024-02-28 19:54:17.875 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nThroughout which address movie a https://example.com/ 21072 441610 440692.441610.442608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6032604163983 0 \N \N f 0 \N 0 236772608 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443423 2024-02-29 13:01:40.384 2024-02-29 13:11:41.63 \N Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nGo game bar use image. Organi https://example.com/ 20897 443099 443099.443423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.94627622797746 0 \N \N f 0 \N 1 36607785 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 441610 2024-02-28 09:25:57.392 2024-02-28 09:35:58.038 \N Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candid https://example.com/ 4014 440692 440692.441610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.88336171943695 0 \N \N f 0 \N 2 37987976 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443335 2024-02-29 11:26:24.221 2024-02-29 11:36:25.508 \N Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mo https://example.com/ 5978 443286 443105.443282.443286.443335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6619554809906 0 \N \N f 0 \N 3 120910830 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443437 2024-02-29 13:09:24.64 2024-02-29 13:19:26.389 \N Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent fin https://example.com/ 19910 443295 443295.443437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.34011037345546 0 \N \N f 0 \N 3 57120005 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443414 2024-02-29 12:52:28.016 2024-02-29 13:02:28.883 \N American argue three local care join full another. North safe part https://example.com/ 5036 443359 443105.443193.443331.443350.443358.443359.443414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.9253435225277 0 \N \N f 0 \N 0 181286609 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443069 2024-02-29 04:21:17.841 2024-02-29 04:31:19.193 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nTest rock daughter nation moment. Art https://example.com/ 20745 443058 443058.443069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74881595573223 0 \N \N f 0 \N 2 152538420 0 f f \N \N \N \N 443058 \N 0 0 \N \N f \N 443448 2024-02-29 13:16:19.461 2024-02-29 13:26:21.015 \N Remembe https://example.com/ 658 440610 440610.443448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.535267460481 0 \N \N f 0 \N 0 141042153 0 f f \N \N \N \N 440610 \N 0 0 \N \N f \N 443038 2024-02-29 03:22:45.965 2024-02-29 03:32:46.955 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg https://example.com/ 12278 442313 442313.443038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.38498774340125 0 \N \N f 0 \N 1 59043936 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 442985 2024-02-29 02:06:15.207 2024-02-29 02:16:16.654 Yeah word become defense role yours Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile. https://example.com/ 761 \N 442985 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 17.523830000964 0 \N \N f 0 \N 8 17920491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443330 2024-02-29 11:22:25.944 2024-02-29 11:32:27.769 \N Model fall part. Teach why have read tonight tec https://example.com/ 17639 443328 443295.443297.443328.443330 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6825604050197 0 \N \N f 0 \N 1 34330206 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443410 2024-02-29 12:49:06.749 2024-02-29 12:59:09.059 \N Threat successful admit write. Likely first response thing m https://example.com/ 18601 443341 443105.443300.443341.443410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3708875379877 0 \N \N f 0 \N 0 144775372 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443108 2024-02-29 06:15:02.951 2024-02-29 06:25:03.832 Idea seem tend attack act common her run. Style there improve point cu Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there https://example.com/ 18533 \N 443108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.4477486131511 0 \N \N f 0 \N 5 171456454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443413 2024-02-29 12:51:31.955 2024-02-29 13:01:33.028 \N There everybody fish can. Exactly office event charge reduce. https://example.com/ 14357 443358 443105.443193.443331.443350.443358.443413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1110063518343 0 \N \N f 0 \N 0 197330028 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443629 2024-02-29 14:59:06.648 2024-02-29 15:09:08.373 Offer seem husband section responsibility notice still. Effect others co Material arm interest draw production. Develop play https://example.com/ 19322 \N 443629 \N \N \N \N \N \N \N \N art \N ACTIVE \N 11.9103320103263 0 \N \N f 0 \N 1 166221444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443547 2024-02-29 14:25:13.981 2024-02-29 14:35:16.311 \N Hersel https://example.com/ 21430 443540 443388.443454.443540.443547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0742148248232 0 \N \N f 0 \N 0 92777421 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 443384 2024-02-29 12:25:25.716 2024-02-29 12:35:27.59 \N Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nReport night cla https://example.com/ 20757 443182 443099.443100.443182.443384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3195239645511 0 \N \N f 0 \N 0 102780875 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443350 2024-02-29 11:43:07.317 2024-02-29 11:53:08.835 \N Need movie coach nation news i https://example.com/ 5978 443331 443105.443193.443331.443350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8353177720837 0 \N \N f 0 \N 4 177100488 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443433 2024-02-29 13:07:15.31 2024-02-29 13:17:17.306 \N Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead https://example.com/ 1114 442985 442985.443433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6418959146327 0 \N \N f 0 \N 0 168161652 0 f f \N \N \N \N 442985 \N 0 0 \N \N f \N 443426 2024-02-29 13:03:11.636 2024-02-29 13:13:13.576 \N Lay https://example.com/ 21338 443400 443372.443390.443395.443400.443426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.409349527164 0 \N \N f 0 \N 0 24238841 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 440790 2024-02-27 16:49:37.69 2024-02-27 16:59:38.717 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nAdmit T https://example.com/ 16270 440727 440727.440790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00851924488973 0 \N \N f 0 \N 1 169498619 0 f f \N \N \N \N 440727 \N 0 0 \N \N f \N 442830 2024-02-28 23:07:27.931 2024-02-28 23:17:29.108 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relat https://example.com/ 20190 441312 441247.441312.442830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3774454816105 0 \N \N f 0 \N 1 214279072 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443358 2024-02-29 11:49:29.686 2024-02-29 11:59:30.246 \N Agent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture https://example.com/ 18704 443350 443105.443193.443331.443350.443358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.710473305568 0 \N \N f 0 \N 3 162430111 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443428 2024-02-29 13:04:06.152 2024-02-29 13:14:07.074 \N Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nToward position themselve https://example.com/ 17514 442830 441247.441312.442830.443428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0120531675943 0 \N \N f 0 \N 0 198204898 0 f f \N \N \N \N 441247 \N 0 0 \N \N f \N 443442 2024-02-29 13:13:33.938 2024-02-29 13:23:35.246 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough thr https://example.com/ 19535 443292 443274.443290.443292.443442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5012955299633 0 \N \N f 0 \N 0 385165 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443313 2024-02-29 11:08:52.295 2024-02-29 11:18:54.206 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move i https://example.com/ 21139 442751 442751.443313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4397952252693 0 \N \N f 0 \N 1 119345776 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443469 2024-02-29 13:34:22.867 2024-02-29 13:44:23.805 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page https://example.com/ 1468 443313 442751.443313.443469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5401450198623 0 \N \N f 0 \N 0 242287617 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443492 2024-02-29 13:52:59.099 2024-02-29 14:03:00.096 \N Boy force agency change score no job. Me https://example.com/ 17570 443038 442313.443038.443492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.63546605630376 0 \N \N f 0 \N 0 76785723 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443420 2024-02-29 12:57:59.414 2024-02-29 13:08:00.891 \N Fall health drug child. Throughout inf https://example.com/ 902 442319 442319.443420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.37581812586808 0 \N \N f 0 \N 0 75255260 0 f f \N \N \N \N 442319 \N 0 0 \N \N f \N 443446 2024-02-29 13:16:04.175 2024-02-29 13:26:04.845 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fa https://example.com/ 21344 443440 443372.443390.443427.443429.443434.443440.443446 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1773971148498 0 \N \N f 0 \N 0 75756737 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443476 2024-02-29 13:43:28.018 2024-02-29 13:53:29.321 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student https://example.com/ 19151 443152 442751.443152.443476 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9782695438178 0 \N \N f 0 \N 0 94116879 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443449 2024-02-29 13:16:43.928 2024-02-29 13:26:45.427 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street https://example.com/ 780 442855 442023.442855.443449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.543221565038 0 \N \N f 0 \N 0 33966422 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 443232 2024-02-29 09:49:49.021 2024-02-29 09:59:50.128 \N Smile debate least force simply discover far. Truth produce factor must. Admit look nev https://example.com/ 13406 443178 443178.443232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4092605087595 0 \N \N f 0 \N 2 11611460 0 f f \N \N \N \N 443178 \N 0 0 \N \N f \N 443447 2024-02-29 13:16:05.724 2024-02-29 13:26:06.845 \N Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. https://example.com/ 770 443423 443099.443423.443447 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3418892204573 0 \N \N f 0 \N 0 192403463 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443538 2024-02-29 14:21:08.584 2024-02-29 14:31:10.49 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. C https://example.com/ 18230 443531 443531.443538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.09876243394935 0 \N \N f 0 \N 3 30350078 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N 443640 2024-02-29 15:00:30.424 2024-02-29 15:10:32.276 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Stu https://example.com/ 4474 430854 430854.443640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.09434155787342 0 \N \N f 0 \N 0 176319909 0 f f \N \N \N \N 430854 \N 0 0 \N \N f \N 443451 2024-02-29 13:18:19.019 2024-02-29 13:28:20.407 \N A https://example.com/ 20539 443336 443295.443336.443451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2481316340359 0 \N \N f 0 \N 0 166518116 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443539 2024-02-29 14:21:11.662 2024-02-29 14:31:13.826 \N That very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate t https://example.com/ 4167 443197 443197.443539 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.15931774375358 0 \N \N f 0 \N 0 58497000 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443566 2024-02-29 14:31:47.673 2024-02-29 14:41:48.946 \N Quickly imagine he learn effor https://example.com/ 1712 443006 442084.443006.443566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2349504074842 0 \N \N f 0 \N 0 66444619 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443575 2024-02-29 14:35:00.317 2024-02-29 14:45:01.974 \N Animal law require claim amount little. Low decide pr https://example.com/ 899 443467 443467.443575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9476385286605 0 \N \N f 0 \N 1 101843091 0 f f \N \N \N \N 443467 \N 0 0 \N \N f \N 443454 2024-02-29 13:20:23.988 2024-02-29 13:30:25.372 \N There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall ye https://example.com/ 19541 443388 443388.443454 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3092347584588 0 \N \N f 0 \N 6 102804945 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 443393 2024-02-29 12:30:27.251 2024-02-29 12:40:28.786 \N Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nBoard age miss drug sense. Take here somebody choose. Experience just determin https://example.com/ 18363 443386 443372.443386.443393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.13979692032922 0 \N \N f 0 \N 0 66614414 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443464 2024-02-29 13:32:27.703 2024-02-29 13:42:30.005 \N Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view cand https://example.com/ 10731 443462 443462.443464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3053354164857 0 \N \N f 0 \N 0 101197235 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 443471 2024-02-29 13:37:56.517 2024-02-29 13:47:58.31 \N Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nNot https://example.com/ 18178 443221 442751.443221.443471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8639542936113 0 \N \N f 0 \N 0 740847 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443458 2024-02-29 13:24:09.734 2024-02-29 13:34:11.255 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn ma https://example.com/ 19557 429301 429301.443458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0971848519694 0 \N \N f 0 \N 0 221634687 0 f f \N \N \N \N 429301 \N 0 0 \N \N f \N 443466 2024-02-29 13:33:33.456 2024-02-29 13:43:35.259 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign https://example.com/ 2711 443462 443462.443466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.91228575755477 0 \N \N f 0 \N 1 63258981 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 443460 2024-02-29 13:28:27.033 2024-02-29 13:38:28.481 \N Special identify senior diffe https://example.com/ 708 443452 443295.443336.443338.443381.443452.443460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0559300304361 0 \N \N f 0 \N 0 12667620 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443221 2024-02-29 09:30:38.46 2024-02-29 09:40:39.999 \N Become popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate ra https://example.com/ 1007 442751 442751.443221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93675610070945 0 \N \N f 0 \N 1 225436785 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443468 2024-02-29 13:33:54.709 2024-02-29 13:43:55.946 \N Industry benefit as tree standard worry c https://example.com/ 5703 443319 443319.443468 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.50948179191 0 \N \N f 0 \N 0 220598075 0 f f \N \N \N \N 443319 \N 0 0 \N \N f \N 443462 2024-02-29 13:31:20.499 2024-02-29 13:41:21.944 Directio Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old. https://example.com/ 6700 \N 443462 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 13.392831805496 0 \N \N f 0 \N 6 101020144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443231 2024-02-29 09:49:48.38 2024-02-29 09:59:50.129 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if D https://example.com/ 7746 442751 442751.443231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7744171035958 0 \N \N f 0 \N 2 82087288 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443472 2024-02-29 13:37:58.183 2024-02-29 13:47:59.364 \N Peace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Up https://example.com/ 16788 443334 428021.443334.443472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5535747553199 0 \N \N f 0 \N 1 60571712 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 442298 2024-02-28 16:15:11.027 2024-02-28 16:25:12.851 Parent control wide song section few. Region one keep important. Message amount Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably. https://example.com/ 14909 \N 442298 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9061416860872 0 \N \N f 0 \N 5 132311469 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441843 2024-02-28 12:39:18.01 2024-02-28 12:49:19.28 Blue the that local central middle themselves Article discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require sk https://example.com/ 20744 \N 441843 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.497819208562 0 \N \N f 0 \N 49 49407292 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443457 2024-02-29 13:23:09.646 2024-02-29 13:33:11.073 \N Civil attorney sell amount. Finally card another reco https://example.com/ 19637 442854 442751.442854.443457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0607718099477 0 \N \N f 0 \N 1 239117026 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443470 2024-02-29 13:36:12.491 2024-02-29 13:46:13.918 \N Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he missio https://example.com/ 19992 443231 442751.443231.443470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5595546882245 0 \N \N f 0 \N 1 165730851 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 442104 2024-02-28 15:00:49.02 2024-02-28 15:10:50.348 \N Republican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Al https://example.com/ 11885 441176 441176.442104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82326183498006 0 \N \N f 0 \N 4 246294122 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 436015 2024-02-23 10:36:16.235 2024-02-23 10:46:17.153 For share something effect scie Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else. https://example.com/ 3360 \N 436015 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 13.1187733930487 0 \N \N f 0 \N 0 121820590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443553 2024-02-29 14:27:37.693 2024-02-29 14:37:38.562 \N Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportu https://example.com/ 20849 443272 443272.443553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4242397245399 0 \N \N f 0 \N 2 117068109 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443500 2024-02-29 13:56:45.561 2024-02-29 14:06:46.765 That field beautiful American when. Simply quality which media. Note own eveni Give business wind base magazine metho https://example.com/ 680 \N 443500 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 10.2919415681125 0 \N \N f 0 \N 0 77785436 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443455 2024-02-29 13:20:24.482 2024-02-29 13:30:26.266 \N Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Ima https://example.com/ 15146 443422 443399.443422.443455 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95178639731869 0 \N \N f 0 \N 0 15820037 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443488 2024-02-29 13:52:13.811 2024-02-29 14:02:15.558 \N Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nSort thus staff hard https://example.com/ 19087 443142 442751.443142.443488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.09237107071532 0 \N \N f 0 \N 0 239975931 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443526 2024-02-29 14:12:27.543 2024-02-29 14:22:29.036 \N Understand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light https://example.com/ 11776 443205 443187.443195.443200.443205.443526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9553462195421 0 \N \N f 0 \N 1 10193771 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443509 2024-02-29 14:00:25.844 2024-02-29 14:10:27.732 \N Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution langua https://example.com/ 20353 443129 443129.443509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2573310765885 0 \N \N f 0 \N 6 66967618 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 443501 2024-02-29 13:56:50.857 2024-02-29 14:06:53.03 \N Travel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose off https://example.com/ 21048 443489 443489.443501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.529144413623008 0 \N \N f 0 \N 2 231012178 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N 443558 2024-02-29 14:29:36.765 2024-02-29 14:39:37.536 \N Body situation without keep first per. Financial magazine page dinner wrong cr https://example.com/ 8544 443544 443531.443538.443544.443558 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1496222343572 0 \N \N f 0 \N 0 9687277 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N 443507 2024-02-29 14:00:01.734 2024-02-29 14:10:03.799 \N Reach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nDetail discussion line https://example.com/ 20084 443187 443187.443507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.363375109167841 0 \N \N f 0 \N 0 112470711 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443494 2024-02-29 13:53:57.637 2024-02-29 14:03:59.343 \N Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nMiddle without https://example.com/ 1195 443236 443187.443236.443494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5087320519413 0 \N \N f 0 \N 0 18313551 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443337 2024-02-29 11:27:51.288 2024-02-29 11:37:52.919 \N St https://example.com/ 19154 443305 443295.443305.443337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.47910524572671 0 \N \N f 0 \N 1 9413286 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 442313 2024-02-28 16:19:24.739 2024-02-28 16:29:26.519 Morning hundred analysis under Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nDecision budget hit force have. Budget guy hospital former. Involve car p https://example.com/ 17517 \N 442313 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 3.07567121474413 0 \N \N f 0 \N 31 83799980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443194 2024-02-29 08:46:35.026 2024-02-29 08:56:36.946 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organizati https://example.com/ 21393 442104 441176.442104.443194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6181580025676 0 \N \N f 0 \N 3 152226128 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 443456 2024-02-29 13:21:12.384 2024-02-29 13:31:13.692 \N Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority sold https://example.com/ 10728 443441 441176.442104.443194.443441.443456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0863159382194 0 \N \N f 0 \N 1 89232298 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 443602 2024-02-29 14:50:38.175 2024-02-29 15:00:38.959 Scene relate paper hospital. Star cultural stay inside rule Almost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder https://example.com/ 17707 \N 443602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.42784051260164 0 \N \N f 0 \N 0 67086694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443480 2024-02-29 13:45:14.836 2024-02-29 13:55:15.947 \N Family material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be may https://example.com/ 19996 443456 441176.442104.443194.443441.443456.443480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5283634918998 0 \N \N f 0 \N 0 129208688 0 f f \N \N \N \N 441176 \N 0 0 \N \N f \N 443152 2024-02-29 07:31:47.013 2024-02-29 07:41:48.319 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despit https://example.com/ 2056 442751 442751.443152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1798865123445 0 \N \N f 0 \N 1 164423894 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443479 2024-02-29 13:45:04.029 2024-02-29 13:55:05.794 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat part https://example.com/ 11789 443470 442751.443231.443470.443479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3729006774856 0 \N \N f 0 \N 0 103197412 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443340 2024-02-29 11:30:32.987 2024-02-29 11:40:34.467 \N Aut https://example.com/ 706 443339 443339.443340 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01805677700934 0 \N \N f 0 \N 0 119510407 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N 443512 2024-02-29 14:02:29.213 2024-02-29 14:12:30.546 \N Thank rule physical trip attorney staff vote reach. Effect receive reach form answe https://example.com/ 21022 443490 443490.443512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.001765949845 0 \N \N f 0 \N 0 230525496 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 443334 2024-02-29 11:26:19.534 2024-02-29 11:36:20.906 \N War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. C https://example.com/ 21178 428021 428021.443334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3542893747302 0 \N \N f 0 \N 2 5307530 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 443475 2024-02-29 13:42:15.461 2024-02-29 13:52:17.771 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nSpe https://example.com/ 18330 443472 428021.443334.443472.443475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.60087896065318 0 \N \N f 0 \N 0 13472213 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 443385 2024-02-29 12:25:53.375 2024-02-29 12:35:54.402 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art https://example.com/ 1428 443371 443295.443332.443371.443385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2885680796228 0 \N \N f 0 \N 3 151675006 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443493 2024-02-29 13:53:55.458 2024-02-29 14:03:57.104 \N Such among bank choice themselves. Matter in really import https://example.com/ 8569 443459 443399.443459.443493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9926043703204 0 \N \N f 0 \N 0 1852340 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443459 2024-02-29 13:26:15.732 2024-02-29 13:36:17.346 \N Happy strong Democrat some goal new service. Hair employee day show i https://example.com/ 19465 443399 443399.443459 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2199234356789 0 \N \N f 0 \N 1 247836389 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443721 2024-02-29 15:50:20.746 2024-02-29 16:00:21.98 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept https://example.com/ 17227 443583 443583.443721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2993646021339 0 \N \N f 0 \N 0 241314434 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443518 2024-02-29 14:06:08.294 2024-02-29 14:16:09.435 \N Pattern fear term. Second always control type movie. Girl at movie card https://example.com/ 5306 443501 443489.443501.443518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6316925868923 0 \N \N f 0 \N 1 138089007 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N 443513 2024-02-29 14:02:54.539 2024-02-29 14:12:56.008 \N Mornin https://example.com/ 14295 443506 443506.443513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2235874328652 0 \N \N f 0 \N 0 139548524 0 f f \N \N \N \N 443506 \N 0 0 \N \N f \N 443523 2024-02-29 14:09:50.921 2024-02-29 14:19:52.183 \N Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed https://example.com/ 20861 443516 443399.443422.443503.443516.443523 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.782758786815 0 \N \N f 0 \N 0 114400977 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443483 2024-02-29 13:47:13.634 2024-02-29 13:57:15.83 \N Always line hot record. Hard discuss suddenly professional conta https://example.com/ 6798 443295 443295.443483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8552104046148 0 \N \N f 0 \N 1 43163865 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443498 2024-02-29 13:55:50.639 2024-02-29 14:05:52.186 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night pro https://example.com/ 12158 443204 443187.443204.443498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9408363872892 0 \N \N f 0 \N 0 75961313 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443485 2024-02-29 13:48:51.276 2024-02-29 13:58:53.597 \N Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. St https://example.com/ 18291 443457 442751.442854.443457.443485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.47125843310899 0 \N \N f 0 \N 0 140992059 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443096 2024-02-29 05:53:00.475 2024-02-29 06:03:01.625 \N Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nFederal anyone interview continue eat. The little employee while plan https://example.com/ 5128 442751 442751.443096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4518543132708 0 \N \N f 0 \N 1 96708922 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 443516 2024-02-29 14:04:26.125 2024-02-29 14:14:27.539 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others m https://example.com/ 1647 443503 443399.443422.443503.443516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4737306506323 0 \N \N f 0 \N 1 101918458 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443519 2024-02-29 14:07:38.097 2024-02-29 14:17:39.748 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. We https://example.com/ 10586 443473 443197.443473.443519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7809382093121 0 \N \N f 0 \N 0 15991062 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443382 2024-02-29 12:23:27.362 2024-02-29 12:33:28.321 \N Family material upon Democrat. The remain appear information degree. Same employee i https://example.com/ 4043 442848 442710.442848.443382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9990709161452 0 \N \N f 0 \N 0 240594039 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 441472 2024-02-28 05:02:16.905 2024-02-28 05:12:18.281 Light check business try. K Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into s https://example.com/ 20816 \N 441472 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 5.79208073408012 0 \N \N f 0 \N 1 77807966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443511 2024-02-29 14:02:06.896 2024-02-29 14:12:08.232 \N Front color executive f https://example.com/ 716 443506 443506.443511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5034788287001 0 \N \N f 0 \N 0 7634130 0 f f \N \N \N \N 443506 \N 0 0 \N \N f \N 443600 2024-02-29 14:49:21.619 2024-02-29 14:59:22.855 \N His sit pretty president community concern. Create at forget husband si https://example.com/ 10638 443589 443589.443600 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.15209886490295 0 \N \N f 0 \N 0 186772763 0 f f \N \N \N \N 443589 \N 0 0 \N \N f \N 443316 2024-02-29 11:11:24.007 2024-02-29 11:21:25.382 \N We course us bank recently significant myself. Of https://example.com/ 18743 443295 443295.443316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8145000531854 0 \N \N f 0 \N 0 3835890 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443505 2024-02-29 13:58:34.549 2024-02-29 14:08:35.646 \N Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natu https://example.com/ 616 443295 443295.443505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1503621350313 0 \N \N f 0 \N 0 221401358 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443520 2024-02-29 14:08:35.143 2024-02-29 14:18:36.392 \N Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure di https://example.com/ 21453 443506 443506.443520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2281429132413 0 \N \N f 0 \N 0 97709075 0 f f \N \N \N \N 443506 \N 0 0 \N \N f \N 443521 2024-02-29 14:08:44.484 2024-02-29 14:18:45.638 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political c https://example.com/ 21609 443489 443489.443521 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7174155484124 0 \N \N f 0 \N 0 239838634 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N 443535 2024-02-29 14:17:29.007 2024-02-29 14:27:30.306 \N Specific child according. Behind far sure back stock. Watch https://example.com/ 13406 438108 427527.438108.443535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6465024606678 0 \N \N f 0 \N 1 32015502 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N 443515 2024-02-29 14:04:12.255 2024-02-29 14:14:13.738 \N Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would t https://example.com/ 9307 443399 443399.443515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6413295354153 0 \N \N f 0 \N 3 13581982 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443496 2024-02-29 13:54:28.433 2024-02-29 14:04:29.849 \N Table fish west wish point expect. Discussion matter thr https://example.com/ 19863 443491 443486.443491.443496 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.21592450100601 0 \N \N f 0 \N 0 159938757 0 f f \N \N \N \N 443486 \N 0 0 \N \N f \N 437845 2024-02-25 01:45:24.285 2024-02-25 01:55:25.863 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue atte https://example.com/ 20906 427527 427527.437845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.222096983715 0 \N \N f 0 \N 0 213581043 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N 443503 2024-02-29 13:57:44.152 2024-02-29 14:07:45.904 \N Wide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first midd https://example.com/ 21402 443422 443399.443422.443503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.8492483489936 0 \N \N f 0 \N 2 4538595 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 438108 2024-02-25 11:18:31.887 2024-02-25 11:28:32.855 \N Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot sty https://example.com/ 13249 427527 427527.438108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2909996787147 0 \N \N f 0 \N 2 38911155 0 f f \N \N \N \N 427527 \N 0 0 \N \N f \N 443532 2024-02-29 14:16:16.348 2024-02-29 14:26:17.569 Hold show assume travel economy. Ground then any time c Might also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer https://example.com/ 1224 \N 443532 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 29.5988613544715 0 \N \N f 0 \N 0 46686102 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443422 2024-02-29 12:59:31.246 2024-02-29 13:09:32.939 \N Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work s https://example.com/ 8569 443399 443399.443422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5055492721624 0 \N \N f 0 \N 4 132364866 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443551 2024-02-29 14:27:16.228 2024-02-29 14:37:17.202 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside l https://example.com/ 636 443526 443187.443195.443200.443205.443526.443551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6903254988079 0 \N \N f 0 \N 0 90793783 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443549 2024-02-29 14:26:18.403 2024-02-29 14:36:19.962 \N Such yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not vis https://example.com/ 8245 443415 443187.443415.443549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.83912884182678 0 \N \N f 0 \N 0 180380757 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443556 2024-02-29 14:28:33.459 2024-02-29 14:38:34.43 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory red https://example.com/ 8498 443187 443187.443556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.96906965740435 0 \N \N f 0 \N 0 144424166 0 f f \N \N \N \N 443187 \N 0 0 \N \N f \N 443187 2024-02-29 08:29:05.446 2024-02-29 08:39:06.717 Many then growth. Law become return Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By https://example.com/ 633 \N 443187 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.68332220017853 0 \N \N f 0 \N 17 207122323 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443525 2024-02-29 14:11:48.552 2024-02-29 14:21:49.758 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number https://example.com/ 21562 443515 443399.443515.443525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.7900622416558 0 \N \N f 0 \N 0 206672696 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443529 2024-02-29 14:15:03.953 2024-02-29 14:25:05.404 \N Any note pick American lead mention. None magazine identify cold common rem https://example.com/ 14857 443022 442981.443022.443529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4443069057201 0 \N \N f 0 \N 0 153275697 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N 443562 2024-02-29 14:31:05.143 2024-02-29 14:41:05.893 \N Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport https://example.com/ 3706 443557 443295.443548.443557.443562 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3701786724551 0 \N \N f 0 \N 0 183988362 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443530 2024-02-29 14:15:22.102 2024-02-29 14:25:23.655 \N Miss keep probably https://example.com/ 14015 443061 442981.443061.443530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4274405862439 0 \N \N f 0 \N 0 228050082 0 f f \N \N \N \N 442981 \N 0 0 \N \N f \N 443533 2024-02-29 14:17:00.441 2024-02-29 14:27:02.124 \N Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return r https://example.com/ 1209 443504 443197.443473.443477.443504.443533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.74944565778945 0 \N \N f 0 \N 0 176448923 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443504 2024-02-29 13:58:07.789 2024-02-29 14:08:09.629 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Re https://example.com/ 18659 443477 443197.443473.443477.443504 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.017922746506 0 \N \N f 0 \N 1 100642158 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443537 2024-02-29 14:19:35.014 2024-02-29 14:29:36.528 \N Not find attack light every https://example.com/ 20180 436792 436792.443537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.17669603426134 0 \N \N f 0 \N 0 203455271 0 f f \N \N \N \N 436792 \N 0 0 \N \N f \N 436792 2024-02-24 00:56:58.378 2024-02-24 01:06:59.592 By fight several talk. Minute probably fish player. Drive window millio Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nPlant ever Republican together picture. https://example.com/ 20599 \N 436792 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 9.6194231789789 0 \N \N f 0 \N 1 40963530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443564 2024-02-29 14:31:21.714 2024-02-29 14:41:23.104 \N B https://example.com/ 14791 443445 442084.442600.443235.443445.443564 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15350164579361 0 \N \N f 0 \N 0 223227221 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443542 2024-02-29 14:23:08.306 2024-02-29 14:33:09.76 \N Inside nor professional partner new design machine. Fire occur leave image trip. Mil https://example.com/ 19352 443518 443489.443501.443518.443542 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8720624220841 0 \N \N f 0 \N 0 70641931 0 f f \N \N \N \N 443489 \N 0 0 \N \N f \N 443179 2024-02-29 08:12:57.744 2024-02-29 08:22:58.666 Medical view similar al Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth pa https://example.com/ 5578 \N 443179 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 22.0802107412767 0 \N \N f 0 \N 3 70031098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443546 2024-02-29 14:25:07.562 2024-02-29 14:35:09.174 \N Beyond new strong important. Final sport thus physical situation. Forward who dream art half https://example.com/ 1003 443474 443388.443454.443474.443546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41509011394873 0 \N \N f 0 \N 2 50948163 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 443615 2024-02-29 14:54:39.316 2024-02-29 15:04:40.662 \N Method media and me. Tonight https://example.com/ 8385 443599 443295.443312.443599.443615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14521028789333 0 \N \N f 0 \N 0 74919495 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443576 2024-02-29 14:36:26.049 2024-02-29 14:46:26.94 \N Story meeting hotel op https://example.com/ 19375 443528 443528.443576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4306868299795 0 \N \N f 0 \N 0 243753379 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 443543 2024-02-29 14:23:08.659 2024-02-29 14:33:10.02 \N Community seat tend https://example.com/ 17064 443048 442978.443048.443543 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0175510706034743 0 \N \N f 0 \N 4 157559058 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 443463 2024-02-29 13:31:28.161 2024-02-29 13:41:29.062 Area just subject pretty. Three Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain polit https://example.com/ 20713 \N 443463 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 26.2524516900259 0 \N \N f 0 \N 0 247400474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443610 2024-02-29 14:53:26.234 2024-02-29 15:03:27.025 \N West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nFinally and may second. https://example.com/ 15180 443545 443545.443610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1438938238694 0 \N \N f 0 \N 1 134297437 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443609 2024-02-29 14:52:30.595 2024-02-29 15:02:32.862 \N Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west https://example.com/ 5661 443116 443099.443116.443609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5430024036417 0 \N \N f 0 \N 0 246055125 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443555 2024-02-29 14:27:59.738 2024-02-29 14:38:00.825 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand pr https://example.com/ 6003 443538 443531.443538.443555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.33942907360304 0 \N \N f 0 \N 0 46142033 0 f f \N \N \N \N 443531 \N 0 0 \N \N f \N 443303 2024-02-29 11:04:04.561 2024-02-29 11:14:06.016 Affect major fire admit technology bad add. Sport surface police pr Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm. https://example.com/ 16004 \N 443303 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4449939356116 0 \N \N f 0 \N 6 234108999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443438 2024-02-29 13:10:37.45 2024-02-29 13:20:38.856 Moment hundred skin trip hour hope computer Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threa https://example.com/ 21269 \N 443438 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 18.8144945823371 0 \N \N f 0 \N 1 4559479 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443565 2024-02-29 14:31:29.336 2024-02-29 14:41:30.418 \N Value have anyone crime professi https://example.com/ 17710 443303 443303.443565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.96648595208431 0 \N \N f 0 \N 1 57800181 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N 443445 2024-02-29 13:15:05.623 2024-02-29 13:25:07.294 \N Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read ever https://example.com/ 14705 443235 442084.442600.443235.443445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1716939646003 0 \N \N f 0 \N 1 104373823 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443563 2024-02-29 14:31:17.242 2024-02-29 14:41:18.406 \N Church listen our call cou https://example.com/ 21520 443396 443396.443563 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.875773106838 0 \N \N f 0 \N 0 116779675 0 f f \N \N \N \N 443396 \N 0 0 \N \N f \N 443329 2024-02-29 11:21:15.154 2024-02-29 11:31:16.827 \N Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. J https://example.com/ 20137 443295 443295.443329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.757090384344892 0 \N \N f 0 \N 0 64508717 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443574 2024-02-29 14:34:30.853 2024-02-29 14:44:31.735 \N Newspaper as city re https://example.com/ 19995 443572 443490.443572.443574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3508271378863 0 \N \N f 0 \N 0 227330560 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 443641 2024-02-29 15:00:31.808 2024-02-29 15:10:33.003 Movie teacher to only my necessar Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nGuess join morning man h https://example.com/ 16194 \N 443641 \N \N \N \N \N \N \N \N news \N ACTIVE \N 25.1518716355375 0 \N \N f 0 \N 1 23292281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443571 2024-02-29 14:33:23.991 2024-02-29 14:43:25.213 \N Want fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nBy evening job should n https://example.com/ 13169 443272 443272.443571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7021078734457 0 \N \N f 0 \N 4 119191695 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443650 2024-02-29 15:04:02.246 2024-02-29 15:14:03.497 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus a https://example.com/ 5661 442084 442084.443650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9834957698201 0 \N \N f 0 \N 0 31580414 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443573 2024-02-29 14:34:27.832 2024-02-29 14:44:29.419 \N If put https://example.com/ 2502 443274 443274.443573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8454656320595 0 \N \N f 0 \N 0 120872746 0 f f \N \N \N \N 443274 \N 0 0 \N \N f \N 443432 2024-02-29 13:06:21.457 2024-02-29 13:16:23.341 \N Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nFor wro https://example.com/ 13132 443351 443105.443282.443286.443335.443351.443432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.52977826192424 0 \N \N f 0 \N 1 122790479 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443490 2024-02-29 13:52:36.357 2024-02-29 14:02:37.629 Similar event two high mouth. Seem however visit. C Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently https://example.com/ 11621 \N 443490 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.2057553801862 0 \N \N f 0 \N 6 64998914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443514 2024-02-29 14:03:09.917 2024-02-29 14:13:11.543 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hosp https://example.com/ 14037 443272 443272.443514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.48840485518382 0 \N \N f 0 \N 1 470047 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443276 2024-02-29 10:36:42.047 2024-02-29 10:46:43.735 \N Health reduce performance body similar light wear this. Training purpose suggest. Church standard me https://example.com/ 951 443272 443272.443276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4287086641437 0 \N \N f 0 \N 1 248070202 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443288 2024-02-29 10:50:45.176 2024-02-29 11:00:46.682 Seven nice notice wife they couple. Suffer tow Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nSpeak specific energy internatio https://example.com/ 711 \N 443288 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 8.23837699771207 0 \N \N f 0 \N 7 244440527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443630 2024-02-29 14:59:11.654 2024-02-29 15:09:12.798 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter https://example.com/ 21079 443610 443545.443610.443630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8908711935228 0 \N \N f 0 \N 0 117503958 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443380 2024-02-29 12:22:01.24 2024-02-29 12:32:02.41 \N Very executive American something mys https://example.com/ 19546 443336 443295.443336.443380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.56230916829789 0 \N \N f 0 \N 0 118996453 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443604 2024-02-29 14:51:00.523 2024-02-29 15:01:02.208 \N Senior than easy statement both total. Picture see https://example.com/ 2293 443543 442978.443048.443543.443604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3554399739609 0 \N \N f 0 \N 3 39038934 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 443298 2024-02-29 11:00:43.289 2024-02-29 11:10:45.026 \N Plan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal https://example.com/ 19941 443283 443272.443283.443298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62918885752223 0 \N \N f 0 \N 1 583642 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443339 2024-02-29 11:29:57.101 2024-02-29 11:39:58.583 Hard same business read realize care. Nature to h Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. A https://example.com/ 21485 \N 443339 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 25.2799118186247 0 \N \N f 0 \N 5 223791729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443392 2024-02-29 12:30:18.33 2024-02-29 12:40:19.514 \N Toward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without w https://example.com/ 9346 443315 443295.443297.443301.443308.443311.443315.443392 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.44040648976987 0 \N \N f 0 \N 0 58087690 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443325 2024-02-29 11:17:58.078 2024-02-29 11:27:59.116 \N Speak street chance point. Bl https://example.com/ 21157 443311 443295.443297.443301.443308.443311.443325 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6566650878324 0 \N \N f 0 \N 1 136183361 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443584 2024-02-29 14:42:13.872 2024-02-29 14:52:15.332 \N Seat commercial through property new. Career audience body morning gas. Money leg hit what profession https://example.com/ 11516 337252 337252.443584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9893167307805 0 \N \N f 0 \N 1 184257521 0 f f \N \N \N \N 337252 \N 0 0 \N \N f \N 438678 2024-02-25 21:40:40.745 2024-02-25 21:50:42.483 \N Call system shake up person. Project anything several water class that table exist. Commercial hold growth sh https://example.com/ 687 438612 437966.437970.437973.438612.438678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6693495337023 0 \N \N f 0 \N 0 51595088 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 443582 2024-02-29 14:39:39.046 2024-02-29 14:49:40.822 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nMusic ener https://example.com/ 21482 441472 441472.443582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.50975022255797 0 \N \N f 0 \N 0 137237925 0 f f \N \N \N \N 441472 \N 0 0 \N \N f \N 443394 2024-02-29 12:31:52.386 2024-02-29 12:41:53.699 \N Administration threat use man who huge prevent. Short something character. Executive position design determine week prove thro https://example.com/ 11999 443325 443295.443297.443301.443308.443311.443325.443394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4038978922402 0 \N \N f 0 \N 0 67623377 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443613 2024-02-29 14:54:32.646 2024-02-29 15:04:34.233 \N Lay https://example.com/ 21072 443577 443577.443613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.838446281584 0 \N \N f 0 \N 5 5886998 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443436 2024-02-29 13:09:05.926 2024-02-29 13:19:07.91 \N Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. https://example.com/ 2437 443432 443105.443282.443286.443335.443351.443432.443436 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0199387248284 0 \N \N f 0 \N 0 81466337 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 443597 2024-02-29 14:48:09.656 2024-02-29 14:58:11.173 \N Activity just seem enter development throughout. https://example.com/ 4014 443437 443295.443437.443597 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0878528509977 0 \N \N f 0 \N 2 122856224 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443404 2024-02-29 12:43:13.634 2024-02-29 12:53:15.742 White seven property least fat Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nEvery important man a free knowledge. Firm return actually decision. Tonight https://example.com/ 20546 \N 443404 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 25.6795106896987 0 \N \N f 0 \N 0 52716031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443590 2024-02-29 14:45:01.014 2024-02-29 14:55:02.131 \N Determin https://example.com/ 16571 443584 337252.443584.443590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7251994783401 0 \N \N f 0 \N 0 108362248 0 f f \N \N \N \N 337252 \N 0 0 \N \N f \N 443581 2024-02-29 14:39:28.774 2024-02-29 14:49:30.093 \N Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possibl https://example.com/ 19533 442982 442982.443581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0884466886306 0 \N \N f 0 \N 4 13303582 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 443692 2024-02-29 15:31:46.985 2024-02-29 15:41:48.094 \N Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nInvestment bad cultural turn with here least hand. https://example.com/ 20756 443674 443388.443454.443474.443546.443674.443692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0686379286302 0 \N \N f 0 \N 0 228937224 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 443578 2024-02-29 14:37:02.307 2024-02-29 14:47:04.379 Site product one fact loss. Site yeah position student news. These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff. https://example.com/ 644 \N 443578 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 0.253853186794899 0 \N \N f 0 \N 0 117146926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443598 2024-02-29 14:49:07.365 2024-02-29 14:59:08.66 \N Response finally play political t https://example.com/ 2088 443593 443593.443598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.1070658368783 0 \N \N f 0 \N 1 22329126 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 443601 2024-02-29 14:50:07.721 2024-02-29 15:00:08.728 \N Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nFace opportunity account eat pro https://example.com/ 21274 443554 443554.443601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5185811138958 0 \N \N f 0 \N 1 233785791 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 443648 2024-02-29 15:02:53.223 2024-02-29 15:02:58.341 \N Still power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nRight student yard protect co https://example.com/ 21242 349 349.443648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0881862851957 0 \N \N f 0 \N 0 191731059 0 f f \N \N \N \N 349 \N 0 0 \N \N f \N 443596 2024-02-29 14:47:32.402 2024-02-29 14:57:34.135 \N Customer reac https://example.com/ 8508 443534 443130.443534.443596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3801092458515 0 \N \N f 0 \N 1 125907544 0 f f \N \N \N \N 443130 \N 0 0 \N \N f \N 442283 2024-02-28 16:07:51.679 2024-02-28 16:17:52.638 Service source fact. Term affect people Congress natural business list. Eye flo Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nAfter increase change education budget. Or https://example.com/ 21373 \N 442283 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 8.39354998864312 0 \N \N f 0 \N 14 218106579 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443635 2024-02-29 14:59:47.921 2024-02-29 15:09:49.026 \N She under certainly state. Left rest everything health sit such. https://example.com/ 16876 443622 443554.443622.443635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.99790375824327 0 \N \N f 0 \N 0 229310028 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 443592 2024-02-29 14:46:03.01 2024-02-29 14:56:04.197 \N Nature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag https://example.com/ 14074 443515 443399.443515.443592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9374430971987 0 \N \N f 0 \N 1 54331798 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443586 2024-02-29 14:42:51.681 2024-02-29 14:52:52.65 \N Power billion method wide. Person play play thou https://example.com/ 2204 443399 443399.443586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2775737957331 0 \N \N f 0 \N 1 110729793 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443594 2024-02-29 14:46:55.093 2024-02-29 14:56:56.634 \N Billion deep other first financial sometimes. Success https://example.com/ 21343 443586 443399.443586.443594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8573033026848 0 \N \N f 0 \N 0 191043374 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443606 2024-02-29 14:51:24.04 2024-02-29 15:01:25.697 \N Ten throw trip up region place painting. House many unit win just stage https://example.com/ 2514 442330 441695.442330.443606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5201065060601 0 \N \N f 0 \N 0 15927873 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 443585 2024-02-29 14:42:34.297 2024-02-29 14:52:35.826 \N Money rise give serve will expect factor. Claim outside ser https://example.com/ 19296 442904 442904.443585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2564517660381 0 \N \N f 0 \N 0 8298024 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443591 2024-02-29 14:45:06.554 2024-02-29 14:55:08.177 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man https://example.com/ 669 443465 443462.443465.443591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.953411750845 0 \N \N f 0 \N 1 140802518 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 438612 2024-02-25 20:07:45.62 2024-02-25 20:17:46.967 \N Blood admit none others arm style. Here establish night parent. Special this large three of centr https://example.com/ 1712 437973 437966.437970.437973.438612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6417210733478 0 \N \N f 0 \N 1 116488350 0 f f \N \N \N \N 437966 \N 0 0 \N \N f \N 443710 2024-02-29 15:40:15.145 2024-02-29 15:50:16.27 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite for https://example.com/ 18188 435546 435314.435546.443710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3886034349158 0 \N \N f 0 \N 0 51824833 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 443658 2024-02-29 15:07:31.573 2024-02-29 15:17:32.406 \N Could computer meet. Board response member bad oil here goal. Dinner difficu https://example.com/ 19263 443583 443583.443658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.49500707131153 0 \N \N f 0 \N 0 227964266 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 435546 2024-02-22 21:29:31.277 2024-02-22 21:39:32.618 \N Identify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nThus measure find board bag high himself. Very history le https://example.com/ 5522 435314 435314.435546 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.02542754983897 0 \N \N f 0 \N 1 225285471 0 f f \N \N \N \N 435314 \N 0 0 \N \N f \N 437966 2024-02-25 06:06:59.091 2024-02-25 06:17:00.302 Possible serious bl Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nPer seat key down relationship step. Father camera modern contain. Again co https://example.com/ 4238 \N 437966 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9953134751779 0 \N \N f 0 \N 21 224220974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443588 2024-02-29 14:43:49.148 2024-02-29 14:53:50.963 \N Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly e https://example.com/ 19094 443372 443372.443588 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3512380893631 0 \N \N f 0 \N 0 2333188 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 441807 2024-02-28 12:13:15.108 2024-02-28 12:23:16.934 Again trade author cultural task. Deep day cost. Soldier prep Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career h https://example.com/ 15843 \N 441807 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.9655427218009 0 \N \N f 0 \N 0 16392704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443569 2024-02-29 14:33:00.156 2024-02-29 14:43:02.019 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course https://example.com/ 9183 443396 443396.443569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1974774400506 0 \N \N f 0 \N 0 197092766 0 f f \N \N \N \N 443396 \N 0 0 \N \N f \N 443618 2024-02-29 14:56:01.435 2024-02-29 15:06:02.925 \N Wait forward with w https://example.com/ 658 443604 442978.443048.443543.443604.443618 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.93443488527485 0 \N \N f 0 \N 2 40818158 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 443619 2024-02-29 14:56:05.981 2024-02-29 14:56:11.812 \N Idea seem tend attack act common her run. Style there improve https://example.com/ 13782 440645 5415.440645.443619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2729105630577 0 \N \N f 0 \N 0 211953695 0 f f \N \N \N \N 5415 \N 0 0 \N \N f \N 443559 2024-02-29 14:29:52.108 2024-02-29 14:39:53.816 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. H https://example.com/ 20642 443545 443545.443559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4354922081214 0 \N \N f 0 \N 0 69856670 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443268 2024-02-29 10:27:22.014 2024-02-29 10:37:23.946 Individual low nice character home Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise h https://example.com/ 7773 \N 443268 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 2.78894093874776 0 \N \N f 0 \N 3 172603971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443130 2024-02-29 06:47:43.311 2024-02-29 06:57:45.282 Mention well why thank develop. Alone hotel gro Book ok power church man m https://example.com/ 1433 \N 443130 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 29.1769490352941 0 \N \N f 0 \N 4 51226040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443605 2024-02-29 14:51:23.421 2024-02-29 15:01:24.681 \N Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perh https://example.com/ 8541 443295 443295.443605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0807448026875 0 \N \N f 0 \N 1 46351709 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443595 2024-02-29 14:47:29.115 2024-02-29 14:57:30.271 \N Wrong spring according trial federal although. Apply technology traditional responsibility meas https://example.com/ 21391 443272 443272.443595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6105503636504 0 \N \N f 0 \N 2 232781727 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443599 2024-02-29 14:49:08.271 2024-02-29 14:59:09.319 \N Off behind four class talk. Nor https://example.com/ 21254 443312 443295.443312.443599 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5976346385248 0 \N \N f 0 \N 1 107290070 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443661 2024-02-29 15:10:39.907 2024-02-29 15:20:41.762 \N Community us end alone. Admit remember re https://example.com/ 18460 443587 442982.443581.443587.443661 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.639052338816 0 \N \N f 0 \N 2 218167673 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 443666 2024-02-29 15:14:30.468 2024-02-29 15:24:32.147 \N Finish only air https://example.com/ 16653 443577 443577.443666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.8009603077335 0 \N \N f 0 \N 0 206925535 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 437968 2024-02-25 06:14:51.465 2024-02-25 06:24:53.051 \N Na https://example.com/ 17713 435142 435142.437968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62042735497584 0 \N \N f 0 \N 1 59951797 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 443646 2024-02-29 15:01:59.183 2024-02-29 15:12:00.737 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nDevelop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Report senior believe better program police.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nSuccess against price. Resource end yeah step bit support. Common hour thank https://example.com/ 19732 443197 443197.443646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6456747922268 0 \N \N f 0 \N 0 205221743 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 439137 2024-02-26 12:01:04.041 2024-02-26 12:11:05.823 Book ok power church man machine. Where stop cu Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imag https://example.com/ 899 \N 439137 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 28.2937831453996 0 \N \N f 0 \N 5 80697746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1430 2021-08-26 15:42:31.275 2023-10-01 23:49:21.034 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environm https://example.com/ 5085 1421 1357.1421.1430 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3679813886949 0 \N \N f 0 \N 0 243216413 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 443621 2024-02-29 14:57:35.998 2024-02-29 15:07:37.237 Community Direction network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three https://example.com/ 21214 \N 443621 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 22.2114606885469 0 \N \N f 0 \N 0 149447044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443622 2024-02-29 14:58:00.416 2024-02-29 15:08:02.502 \N Small enjoy manage serv https://example.com/ 649 443554 443554.443622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.98248109095217 0 \N \N f 0 \N 1 246902576 0 f f \N \N \N \N 443554 \N 0 0 \N \N f \N 443628 2024-02-29 14:59:03.533 2024-02-29 15:09:04.712 \N Themselves table various administration single sa https://example.com/ 1478 443618 442978.443048.443543.443604.443618.443628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2291583790113 0 \N \N f 0 \N 1 104552943 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 443634 2024-02-29 14:59:44.099 2024-02-29 15:09:45.944 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate go https://example.com/ 21314 440891 440891.443634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5377771961622 0 \N \N f 0 \N 1 83205727 0 f f \N \N \N \N 440891 \N 0 0 \N \N f \N 443633 2024-02-29 14:59:39.16 2024-02-29 15:09:40.767 \N Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join https://example.com/ 20691 443295 443295.443633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.10927339823095 0 \N \N f 0 \N 1 25646512 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443653 2024-02-29 15:06:20.781 2024-02-29 15:16:22.298 \N Different dog example. Themselves up or perhaps. Create elec https://example.com/ 21064 443637 439137.443637.443653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7624388711317 0 \N \N f 0 \N 0 118103896 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N 443639 2024-02-29 15:00:28.16 2024-02-29 15:10:29.217 \N Blood admit none others https://example.com/ 4322 443629 443629.443639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1298369425428 0 \N \N f 0 \N 0 184110558 0 f f \N \N \N \N 443629 \N 0 0 \N \N f \N 1433 2021-08-26 15:58:12.575 2023-10-01 23:49:21.068 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husban https://example.com/ 5160 1432 1432.1433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.97976645048283 0 \N \N f 0 \N 0 75206799 0 f f \N \N \N \N 1432 \N 0 0 \N \N f \N 443626 2024-02-29 14:58:41.393 2024-02-29 15:08:42.664 \N Scientist lig https://example.com/ 1124 443160 443160.443626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0565424614794097 0 \N \N f 0 \N 0 195283237 0 f f \N \N \N \N 443160 \N 0 0 \N \N f \N 443655 2024-02-29 15:06:52.387 2024-02-29 15:16:53.646 Even hot political little painting home. Garden speech put moment serve pre Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his. https://example.com/ 10934 \N 443655 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.506588260228 0 \N \N f 0 \N 1 134402608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443644 2024-02-29 15:01:21.293 2024-02-29 15:11:23.1 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most op https://example.com/ 1429 443399 443399.443644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.45929713023143 0 \N \N f 0 \N 0 84495353 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443651 2024-02-29 15:04:11.578 2024-02-29 15:14:12.606 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself ho https://example.com/ 20624 443577 443577.443651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51259778286329 0 \N \N f 0 \N 18 99708715 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443247 2024-02-29 10:03:58.906 2024-02-29 10:14:00.009 \N Region https://example.com/ 1237 437968 435142.437968.443247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4505687135944 0 \N \N f 0 \N 0 35743910 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 443579 2024-02-29 14:37:10.402 2024-02-29 14:47:12.067 They another learn question lose to. Matter fear plan Call system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary sou https://example.com/ 20182 \N 443579 \N \N \N \N \N \N \N \N art \N ACTIVE \N 9.69120406472207 0 \N \N f 0 \N 0 183390806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443524 2024-02-29 14:11:22.365 2024-02-29 14:21:23.922 Pretty street rather speak unit against keep. Else sur Wait forward with whose only card https://example.com/ 8498 \N 443524 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 18.732602476714 0 \N \N f 0 \N 0 130831125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443638 2024-02-29 15:00:19.77 2024-02-29 15:10:21.264 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill rece https://example.com/ 2577 437631 437631.443638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0516124072859 0 \N \N f 0 \N 0 138667921 0 f f \N \N \N \N 437631 \N 0 0 \N \N f \N 443769 2024-02-29 16:18:10.35 2024-02-29 16:28:11.5 \N Service techno https://example.com/ 9551 443765 443755.443765.443769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.130817460211 0 \N \N f 0 \N 0 32385836 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 432247 2024-02-20 08:38:59.223 2024-02-20 08:49:00.488 Social impact learn single Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nConcern position true. Third financi https://example.com/ 14774 \N 432247 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 13.881270214845 0 \N \N f 0 \N 3 26922459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443682 2024-02-29 15:26:35.518 2024-02-29 15:36:36.748 \N Pick fight simple up wh https://example.com/ 17798 443679 443667.443670.443679.443682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8703162538532 0 \N \N f 0 \N 0 94258555 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N 443680 2024-02-29 15:26:09.187 2024-02-29 15:36:10.153 \N Moment h https://example.com/ 19961 443676 443577.443613.443669.443676.443680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90421450165854 0 \N \N f 0 \N 2 188985131 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443681 2024-02-29 15:26:32.671 2024-02-29 15:36:33.947 \N Oil fast org https://example.com/ 5597 443680 443577.443613.443669.443676.443680.443681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4656889995911 0 \N \N f 0 \N 1 65787940 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 442245 2024-02-28 15:52:59.359 2024-02-28 16:03:00.603 Very maybe current. So source work lawyer set guess. In Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some. https://example.com/ 18930 \N 442245 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 24.7853837595301 0 \N \N f 0 \N 1 21041061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 435142 2024-02-22 15:59:31.177 2024-02-28 02:28:53.567 Strong of Research either follow across either investment church. https://example.com/ 8916 \N 435142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.14160632341001 0 \N \N f 0 \N 9 173525110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443657 2024-02-29 15:07:01.068 2024-02-29 15:17:01.754 \N Piece write exist main Mr https://example.com/ 19199 443386 443372.443386.443657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.511777847066 0 \N \N f 0 \N 0 230161531 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443665 2024-02-29 15:11:57.138 2024-02-29 15:21:58.219 \N Community se https://example.com/ 9796 439157 439139.439157.443665 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.636569196437 0 \N \N f 0 \N 0 89004442 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 443560 2024-02-29 14:30:28.786 2024-02-29 14:40:29.695 \N Specific listen sit. Represent contin https://example.com/ 8162 443548 443295.443548.443560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6476615769865 0 \N \N f 0 \N 1 28732075 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443716 2024-02-29 15:47:14.55 2024-02-29 15:57:15.673 \N Company save finally water. Agree choice until mean exactly. Ce https://example.com/ 11523 443714 443577.443714.443716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.00318248257594 0 \N \N f 0 \N 2 128083025 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443689 2024-02-29 15:30:35.021 2024-02-29 15:40:36.655 \N Each any growth human https://example.com/ 16830 443577 443577.443689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.751212391789 0 \N \N f 0 \N 2 160163888 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443587 2024-02-29 14:43:34.134 2024-02-29 14:53:35.051 \N Scientist light the everything find window issue. Money spac https://example.com/ 2162 443581 442982.443581.443587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8385192555195 0 \N \N f 0 \N 3 3989627 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 443687 2024-02-29 15:29:39.089 2024-02-29 15:39:40.385 \N Program https://example.com/ 13767 443332 443295.443332.443687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.808647961668 0 \N \N f 0 \N 0 134471182 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443637 2024-02-29 15:00:08.684 2024-02-29 15:10:10.053 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nAlmost about me amount daughter himself. Th https://example.com/ 18473 439137 439137.443637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9762997312544 0 \N \N f 0 \N 1 14768866 0 f f \N \N \N \N 439137 \N 0 0 \N \N f \N 443654 2024-02-29 15:06:48.475 2024-02-29 15:16:49.609 \N Go game bar use image. Organization live back front party ma https://example.com/ 18529 443643 429803.443643.443654 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1916781578056 0 \N \N f 0 \N 0 474654 0 f f \N \N \N \N 429803 \N 0 0 \N \N f \N 443664 2024-02-29 15:11:54.343 2024-02-29 15:21:55.712 \N Foot not wonder myself eat student arrive. Sell election provide car https://example.com/ 14818 443295 443295.443664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.64672179516667 0 \N \N f 0 \N 0 101311100 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443160 2024-02-29 07:44:40.252 2024-02-29 07:54:41.478 Pattern fear term. Second always control type movie. Girl at movie c Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nB https://example.com/ 15560 \N 443160 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 12.062687102566 0 \N \N f 0 \N 3 183636121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443478 2024-02-29 13:44:15.135 2024-02-29 13:54:16.291 \N Ready his protect provide same side. Edge throw business six https://example.com/ 1429 443386 443372.443386.443478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1842710793495 0 \N \N f 0 \N 2 137332397 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443307 2024-02-29 11:04:22.84 2024-02-29 11:14:23.82 \N Book ok power church man machine. Where stop cu https://example.com/ 20817 443298 443272.443283.443298.443307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4647305354517 0 \N \N f 0 \N 0 147588185 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443636 2024-02-29 14:59:55.337 2024-02-29 15:09:56.59 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMan talk arm player scene reflect. Window pick societ https://example.com/ 19553 440230 440230.443636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4688868732083 0 \N \N f 0 \N 0 82407504 0 f f \N \N \N \N 440230 \N 0 0 \N \N f \N 443674 2024-02-29 15:22:02.578 2024-02-29 15:32:03.689 \N Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. https://example.com/ 21556 443546 443388.443454.443474.443546.443674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0640006402418 0 \N \N f 0 \N 1 11018674 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 443704 2024-02-29 15:37:19.803 2024-02-29 15:47:20.898 Property this American law baby doctor. Everybody reduce institution ins Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside. https://example.com/ 1428 \N 443704 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.0285880666688 0 \N \N f 0 \N 0 201885826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443642 2024-02-29 15:00:45.612 2024-02-29 15:10:46.455 \N Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. https://example.com/ 5828 432247 432247.443642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8182579181729 0 \N \N f 0 \N 0 83792641 0 f f \N \N \N \N 432247 \N 0 0 \N \N f \N 443668 2024-02-29 15:15:50.69 2024-02-29 15:25:52.109 \N Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man https://example.com/ 18690 443099 443099.443668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54092628770515 0 \N \N f 0 \N 1 247206606 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443647 2024-02-29 15:02:16.936 2024-02-29 15:12:18.202 \N Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture https://example.com/ 1272 443628 442978.443048.443543.443604.443618.443628.443647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5902714257631 0 \N \N f 0 \N 0 154720190 0 f f \N \N \N \N 442978 \N 0 0 \N \N f \N 443713 2024-02-29 15:43:48.857 2024-02-29 15:53:50.304 Past everybody chance health. Mi Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western p https://example.com/ 21556 \N 443713 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 18.0419575089358 0 \N \N f 0 \N 0 20115095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443545 2024-02-29 14:24:46.385 2024-02-29 14:34:48.506 Decide up red either war deep account more. F Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult busines https://example.com/ 11153 \N 443545 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 9.32208434550727 0 \N \N f 0 \N 30 234463918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443183 2024-02-29 08:19:08.837 2024-02-29 08:29:10.848 \N Marriage interview green school study foot home like. Situat https://example.com/ 19352 443179 443179.443183 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1707677323714 0 \N \N f 0 \N 0 123907330 0 f f \N \N \N \N 443179 \N 0 0 \N \N f \N 443474 2024-02-29 13:41:07.275 2024-02-29 13:51:09.144 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share https://example.com/ 680 443454 443388.443454.443474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0997516521873 0 \N \N f 0 \N 3 187209628 0 f f \N \N \N \N 443388 \N 0 0 \N \N f \N 443707 2024-02-29 15:38:40.178 2024-02-29 15:48:42.099 \N Decision b https://example.com/ 5173 440663 440663.443707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6161056484391 0 \N \N f 0 \N 0 117616887 0 f f \N \N \N \N 440663 \N 0 0 \N \N f \N 443487 2024-02-29 13:51:57.307 2024-02-29 14:01:59.459 Event at administration sister school lo Baby body day citizen change. Present identify https://example.com/ 19878 \N 443487 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 15.3698840411795 0 \N \N f 0 \N 0 114763262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443672 2024-02-29 15:21:20.23 2024-02-29 15:31:21.867 \N Return teacher forget establish poor everything wat https://example.com/ 18169 443663 443577.443663.443672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2100354208736 0 \N \N f 0 \N 0 12461921 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 439834 2024-02-26 19:47:56.126 2024-02-26 19:57:57.658 \N Door wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult ty https://example.com/ 12507 439157 439139.439157.439834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1324815355781 0 \N \N f 0 \N 0 211495963 0 f f \N \N \N \N 439139 \N 0 0 \N \N f \N 443671 2024-02-29 15:20:38.302 2024-02-29 15:30:40.148 \N Beat case firm shoulder dream fo https://example.com/ 16176 443651 443577.443651.443671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2650439952874 0 \N \N f 0 \N 0 32904207 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443484 2024-02-29 13:48:01.373 2024-02-29 13:58:03.57 \N They wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just wa https://example.com/ 1010 443478 443372.443386.443478.443484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.36244532749458 0 \N \N f 0 \N 1 157844535 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443684 2024-02-29 15:28:02.007 2024-02-29 15:38:04.104 \N Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career her https://example.com/ 13327 443372 443372.443684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.76647107255194 0 \N \N f 0 \N 0 71308568 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443702 2024-02-29 15:36:44.893 2024-02-29 15:46:46.299 \N Sound clearly happen age onto imagine. Bed pattern happy othe https://example.com/ 15925 443545 443545.443702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8053291336522 0 \N \N f 0 \N 0 155000167 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443688 2024-02-29 15:30:31.457 2024-02-29 15:40:32.663 \N Southern wear age then https://example.com/ 20509 443593 443593.443688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7144314433561 0 \N \N f 0 \N 1 145895473 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 443694 2024-02-29 15:32:04.129 2024-02-29 15:42:06.045 \N Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound a https://example.com/ 9184 443179 443179.443694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3609038516503 0 \N \N f 0 \N 1 246979290 0 f f \N \N \N \N 443179 \N 0 0 \N \N f \N 443690 2024-02-29 15:31:37.667 2024-02-29 15:41:38.806 \N Name everyone employee visit wonder serious. E https://example.com/ 21578 443597 443295.443437.443597.443690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88894233916808 0 \N \N f 0 \N 1 173970150 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443699 2024-02-29 15:34:30.297 2024-02-29 15:44:31.924 \N Result treatm https://example.com/ 16356 443545 443545.443699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5089268506766 0 \N \N f 0 \N 0 71600837 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443327 2024-02-29 11:19:25.93 2024-02-29 11:29:27.128 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least https://example.com/ 4313 443322 443295.443312.443322.443327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4750272440274 0 \N \N f 0 \N 0 893093 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443695 2024-02-29 15:32:35.064 2024-02-29 15:42:36.544 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside truth https://example.com/ 10849 443678 443678.443695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0325319587004 0 \N \N f 0 \N 2 107188807 0 f f \N \N \N \N 443678 \N 0 0 \N \N f \N 443679 2024-02-29 15:25:15.431 2024-02-29 15:35:16.933 \N Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter si https://example.com/ 9366 443670 443667.443670.443679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.15556688379921 0 \N \N f 0 \N 1 113868228 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N 443631 2024-02-29 14:59:14.667 2024-02-29 15:09:15.744 \N Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nDrive south traditional new what unit mother. Drug professi https://example.com/ 9275 443288 443288.443631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7674287688905 0 \N \N f 0 \N 0 214288170 0 f f \N \N \N \N 443288 \N 0 0 \N \N f \N 443709 2024-02-29 15:39:16.402 2024-02-29 15:49:17.937 \N Myself measure fir https://example.com/ 5961 443689 443577.443689.443709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.35243950801453 0 \N \N f 0 \N 1 234508714 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443722 2024-02-29 15:50:42.077 2024-02-29 16:00:44.118 \N Everyone mention lead pretty protect quite relationship. Leg https://example.com/ 11829 443695 443678.443695.443722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.882650913152 0 \N \N f 0 \N 0 78163274 0 f f \N \N \N \N 443678 \N 0 0 \N \N f \N 443727 2024-02-29 15:52:32.524 2024-02-29 16:02:34.231 Fact theory worry Wrong according som https://example.com/ 20972 \N 443727 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3147065358891 0 \N \N f 0 \N 0 54135973 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443719 2024-02-29 15:48:41.846 2024-02-29 15:58:43.231 \N Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democr https://example.com/ 13903 443683 443683.443719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68116137863931 0 \N \N f 0 \N 1 153012062 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 443718 2024-02-29 15:48:15.75 2024-02-29 15:58:17.451 \N Price o https://example.com/ 730 443709 443577.443689.443709.443718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2545452205486 0 \N \N f 0 \N 0 113866561 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443759 2024-02-29 16:13:11.738 2024-02-29 16:23:13.114 \N Become full thank head blood family. Comp https://example.com/ 14910 443750 443577.443750.443759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.930016428040226 0 \N \N f 0 \N 4 35548622 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443767 2024-02-29 16:17:39.929 2024-02-29 16:27:41.158 \N About easy answer glass. Fire who plac https://example.com/ 1577 443747 443743.443747.443767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3518335953155 0 \N \N f 0 \N 1 13771417 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443698 2024-02-29 15:34:28.637 2024-02-29 15:44:30.103 Give business wind base magazine method trade. Redu Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Wo https://example.com/ 2402 \N 443698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.83861872633526 0 \N \N f 0 \N 0 54504672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443739 2024-02-29 16:01:11.267 2024-02-29 16:11:12.376 \N Radio collection clai https://example.com/ 2652 443683 443683.443739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9908219021725 0 \N \N f 0 \N 0 1159093 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 443720 2024-02-29 15:50:18.667 2024-02-29 16:00:19.943 \N Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular t https://example.com/ 20744 443716 443577.443714.443716.443720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65666155924341 0 \N \N f 0 \N 1 27583306 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443780 2024-02-29 16:23:58.903 2024-02-29 16:34:00.431 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes https://example.com/ 20636 443756 443399.443756.443780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8348650493906 0 \N \N f 0 \N 0 233703173 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 443541 2024-02-29 14:22:43.524 2024-02-29 14:32:44.942 Wish low party shake. National offe Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. https://example.com/ 19813 \N 443541 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9062922257511 0 \N \N f 0 \N 0 191976767 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438332 2024-02-25 14:59:25.564 2024-02-25 15:09:27.201 Common loss oil be. Wrong water cover yet edge tro Collection friend offer involve partner sense policy https://example.com/ 17227 \N 438332 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 10.0206836988171 0 \N \N f 0 \N 0 236016085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443717 2024-02-29 15:47:20.935 2024-02-29 15:57:21.808 Occur chair truth these officer focus black. Walk create no generation once Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch. https://example.com/ 21600 \N 443717 \N \N \N \N \N \N \N \N oracle \N ACTIVE \N 7.82653840935449 0 \N \N f 0 \N 0 121529198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443775 2024-02-29 16:20:34.664 2024-02-29 16:30:36.018 Poor often speak everyone collection quite space. Carry paper floor. Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station. https://example.com/ 18608 \N 443775 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.46448304359331 0 \N \N f 0 \N 0 94008955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443754 2024-02-29 16:10:50.6 2024-02-29 16:20:52.068 \N Blue the that local central middle themselves effect. Concer https://example.com/ 19533 443617 443617.443754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.64571148044286 0 \N \N f 0 \N 1 45586914 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 443771 2024-02-29 16:18:44.037 2024-02-29 16:28:44.967 \N Action prevent Republican. Now third https://example.com/ 19488 443764 443577.443750.443759.443764.443771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1705277124442 0 \N \N f 0 \N 2 70556571 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443736 2024-02-29 16:00:04.701 2024-02-29 16:10:05.86 Side institution practice you. Response herself television. \N https://example.com/ 12708 \N 443736 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.289622291433 0 \N \N f 0 \N 1 22547305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443725 2024-02-29 15:51:40.696 2024-02-29 16:01:42.387 \N Reality pressure enjoy throughout beyond. Property fight son any beat repres https://example.com/ 20555 443545 443545.443725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.45076805845716 0 \N \N f 0 \N 0 223750351 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443871 2024-02-29 17:04:57.058 2024-02-29 17:14:58.354 \N Wonder c https://example.com/ 14651 443864 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831.443835.443845.443864.443871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15567624063081 0 \N \N f 0 \N 0 205547253 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443881 2024-02-29 17:13:56.777 2024-02-29 17:23:58.709 \N Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nAffect key her. Develop https://example.com/ 2774 443272 443272.443881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.865780388729256 0 \N \N f 0 \N 1 208592475 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443880 2024-02-29 17:13:40.329 2024-02-29 17:23:41.762 \N Mission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also c https://example.com/ 20036 443528 443528.443880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.819757148348 0 \N \N f 0 \N 0 132249109 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 443783 2024-02-29 16:24:53.31 2024-02-29 16:34:54.446 \N Republican tota https://example.com/ 998 443767 443743.443747.443767.443783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3665273526833 0 \N \N f 0 \N 0 40505691 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443747 2024-02-29 16:07:32.496 2024-02-29 16:17:34.042 \N Night on mention rather nation soldier everything. https://example.com/ 21164 443743 443743.443747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.97874609917216 0 \N \N f 0 \N 2 31370543 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443770 2024-02-29 16:18:22.991 2024-02-29 16:28:24.277 \N G https://example.com/ 21455 443390 443372.443390.443770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0909436521465 0 \N \N f 0 \N 0 239464809 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443841 2024-02-29 16:52:49.849 2024-02-29 17:02:51.422 Finally and may second. Improve most form final blood. Section ability possi https://example.com/ 4079 \N 443841 \N \N \N \N \N \N \N \N art \N ACTIVE \N 11.6128089101833 0 \N \N f 0 \N 0 222942807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443784 2024-02-29 16:25:26.474 2024-02-29 16:35:27.96 \N New particularly https://example.com/ 1814 443771 443577.443750.443759.443764.443771.443784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1681402506212 0 \N \N f 0 \N 1 166612394 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443652 2024-02-29 15:04:59.755 2024-02-29 15:15:00.39 \N Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career flo https://example.com/ 21389 443372 443372.443652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1776097521393 0 \N \N f 0 \N 3 99280521 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443766 2024-02-29 16:17:15.247 2024-02-29 16:27:16.644 \N Pattern someone https://example.com/ 2963 443734 443734.443766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87352924483252 0 \N \N f 0 \N 0 184512639 0 f f \N \N \N \N 443734 \N 0 0 \N \N f \N 443768 2024-02-29 16:17:42.29 2024-02-29 16:27:43.191 \N Site product one fact loss. Site ye https://example.com/ 5036 443545 443545.443768 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9776777388494 0 \N \N f 0 \N 0 73980389 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443777 2024-02-29 16:22:07.901 2024-02-29 16:32:09.219 \N Image reality political wind several natural. Growth speak drive believe ball. This agreement father relationship t https://example.com/ 20163 443386 443372.443386.443777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.99963562084 0 \N \N f 0 \N 0 54100296 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443772 2024-02-29 16:19:10.818 2024-02-29 16:29:11.864 \N Point box near. Affect glass next behav https://example.com/ 1030 443757 443577.443651.443711.443715.443731.443757.443772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4488055438102 0 \N \N f 0 \N 12 246600679 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443996 2024-02-29 18:12:24.486 2024-02-29 18:22:25.851 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And https://example.com/ 16684 443977 443908.443959.443977.443996 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.5710415863896 0 \N \N f 0 \N 1 153542783 0 f f \N \N \N \N 443908 \N 0 0 \N \N f \N 443818 2024-02-29 16:42:40.771 2024-02-29 16:52:42.353 \N Any tend power space fund inside evidence. Member century indeed impact contain eye e https://example.com/ 12779 443814 442973.443814.443818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1335296799057 0 \N \N f 0 \N 1 82426851 0 f f \N \N \N \N 442973 \N 0 0 \N \N f \N 443813 2024-02-29 16:41:15.408 2024-02-29 16:51:16.9 \N Admit difficult figure paren https://example.com/ 8448 441760 441752.441760.443813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4327514262184 0 \N \N f 0 \N 0 158670654 0 f f \N \N \N \N 441752 \N 0 0 \N \N f \N 443997 2024-02-29 18:12:27.812 2024-02-29 18:22:28.902 \N Never money Congress data single trial. Today wa https://example.com/ 17891 443985 443985.443997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5327316968499 0 \N \N f 0 \N 0 221762574 0 f f \N \N \N \N 443985 \N 0 0 \N \N f \N 443809 2024-02-29 16:39:40.019 2024-02-29 16:49:42.644 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by ch https://example.com/ 6300 443633 443295.443633.443809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4770604223739 0 \N \N f 0 \N 0 73005659 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443817 2024-02-29 16:41:53.355 2024-02-29 16:51:54.307 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Goo https://example.com/ 11423 443808 443272.443808.443817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9962598531638 0 \N \N f 0 \N 4 99076605 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443757 2024-02-29 16:12:06.184 2024-02-29 16:22:06.739 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue https://example.com/ 11458 443731 443577.443651.443711.443715.443731.443757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5550530970288 0 \N \N f 0 \N 13 178456184 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443776 2024-02-29 16:21:25.068 2024-02-29 16:31:26.165 \N Floor among test material. Meet million someone family guess process reason. Answer week https://example.com/ 7891 443772 443577.443651.443711.443715.443731.443757.443772.443776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6939935142987 0 \N \N f 0 \N 2 142181092 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 442954 2024-02-29 01:08:11.941 2024-02-29 01:18:12.805 Full both sound century close card. Anyone occur number receive one performanc Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. https://example.com/ 21603 \N 442954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2043351163507 0 \N \N f 0 \N 0 147092981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443785 2024-02-29 16:26:11.78 2024-02-29 16:36:13.437 \N Baby your https://example.com/ 19501 443784 443577.443750.443759.443764.443771.443784.443785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6677358519147 0 \N \N f 0 \N 0 16368381 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443793 2024-02-29 16:29:10.524 2024-02-29 16:39:12.275 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge https://example.com/ 20858 443683 443683.443793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3997663251641 0 \N \N f 0 \N 0 2211305 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 443758 2024-02-29 16:12:16.627 2024-02-29 16:22:17.916 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. E https://example.com/ 21116 443675 443545.443659.443675.443758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30483073501168 0 \N \N f 0 \N 0 177232744 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443816 2024-02-29 16:41:44.7 2024-02-29 16:51:46.225 \N Four learn tell crime. Work main https://example.com/ 6430 443812 443545.443812.443816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5387408851341 0 \N \N f 0 \N 1 23470771 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443852 2024-02-29 16:57:53.379 2024-02-29 17:07:54.551 \N Letter ban https://example.com/ 14225 443827 443755.443827.443852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3111387431359 0 \N \N f 0 \N 0 100223050 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443810 2024-02-29 16:40:18.089 2024-02-29 16:50:19.574 \N College quality yard box similar. Response movie clearly often. https://example.com/ 9350 443593 443593.443810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4963909839642 0 \N \N f 0 \N 1 132677026 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 443711 2024-02-29 15:42:09.274 2024-02-29 15:52:10.597 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nConsumer point treat task. Shake bill player camp https://example.com/ 980 443651 443577.443651.443711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.43949449528191 0 \N \N f 0 \N 16 154863910 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443801 2024-02-29 16:34:03.009 2024-02-29 16:44:04.223 \N Yourself debate term during boy. Significant ste https://example.com/ 2775 443694 443179.443694.443801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.01119745063769 0 \N \N f 0 \N 0 24538815 0 f f \N \N \N \N 443179 \N 0 0 \N \N f \N 443806 2024-02-29 16:38:27.668 2024-02-29 16:48:29.667 \N Play single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick every https://example.com/ 14791 443781 443295.443781.443806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.79395425015845 0 \N \N f 0 \N 7 85325777 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443807 2024-02-29 16:38:58.73 2024-02-29 16:49:00.376 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer l https://example.com/ 12220 441752 441752.443807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1925046278318 0 \N \N f 0 \N 0 111312091 0 f f \N \N \N \N 441752 \N 0 0 \N \N f \N 443345 2024-02-29 11:40:33.947 2024-02-29 11:50:35.111 \N Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nOccur power prevent become issue f https://example.com/ 722 443129 443129.443345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8378232558449 0 \N \N f 0 \N 0 212985239 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 443815 2024-02-29 16:41:29.497 2024-02-29 16:51:30.66 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receiv https://example.com/ 21424 443743 443743.443815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.48676681091054 0 \N \N f 0 \N 1 200781042 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 441758 2024-02-28 11:33:59.639 2024-02-28 11:44:00.693 \N Much road chair teach during. Poor assume operation job sea https://example.com/ 18351 441752 441752.441758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.56727150426534 0 \N \N f 0 \N 0 149188833 0 f f \N \N \N \N 441752 \N 0 0 \N \N f \N 443802 2024-02-29 16:35:16.8 2024-02-29 16:45:18.256 Series wait hotel north action bag Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too. https://example.com/ 19018 \N 443802 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.51245893689957 0 \N \N f 0 \N 4 102755196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 441752 2024-02-28 11:31:52.127 2024-02-28 11:41:54.484 She for deep adminis Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nBy fight several talk. M https://example.com/ 3377 \N 441752 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.2154248678336 0 \N \N f 0 \N 5 131309351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443846 2024-02-29 16:55:32.93 2024-02-29 17:05:34.822 \N It fly over audience when g https://example.com/ 18321 443641 443641.443846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.43900708018482 0 \N \N f 0 \N 0 64523620 0 f f \N \N \N \N 443641 \N 0 0 \N \N f \N 444107 2024-02-29 19:22:42.103 2024-02-29 19:32:44.309 \N Hold show a https://example.com/ 17798 444097 444097.444107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20936589027241 0 \N \N f 0 \N 0 22632921 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 443804 2024-02-29 16:36:30.015 2024-02-29 16:46:31.138 \N Be human year girl treatme https://example.com/ 12965 443798 443755.443798.443804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9894440096228 0 \N \N f 0 \N 1 124074135 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443811 2024-02-29 16:40:24.539 2024-02-29 16:50:25.583 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor https://example.com/ 10013 443796 443577.443651.443711.443715.443731.443757.443772.443796.443811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9630383814311 0 \N \N f 0 \N 7 126404149 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443821 2024-02-29 16:43:35.341 2024-02-29 16:53:36.62 \N Work suddenl https://example.com/ 5661 443818 442973.443814.443818.443821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.93032733736457 0 \N \N f 0 \N 0 16716597 0 f f \N \N \N \N 442973 \N 0 0 \N \N f \N 443443 2024-02-29 13:13:34.682 2024-02-29 13:23:36.252 \N Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside https://example.com/ 10484 443349 443105.443349.443443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22123905004614 0 \N \N f 0 \N 0 55014106 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 442003 2024-02-28 14:12:30.452 2024-02-28 14:22:32.435 Investment bad cultu Take throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold. https://example.com/ 19638 \N 442003 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 13.4714249632868 0 \N \N f 0 \N 0 202938675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443826 2024-02-29 16:45:20.237 2024-02-29 16:55:21.884 \N Republican star interest https://example.com/ 18372 443815 443743.443815.443826 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7298469924505 0 \N \N f 0 \N 0 189590735 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443838 2024-02-29 16:50:56.786 2024-02-29 17:00:58.565 \N Drug life detail letter major himself so. Politics participant tough t https://example.com/ 18664 443829 443577.443729.443742.443823.443829.443838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.329950771449781 0 \N \N f 0 \N 2 162052057 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443935 2024-02-29 17:41:42.147 2024-02-29 17:51:43.811 \N Police d https://example.com/ 4043 443919 443919.443935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51978924300391 0 \N \N f 0 \N 0 228615313 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 441760 2024-02-28 11:35:07.802 2024-02-28 11:45:08.794 \N Lay garden sing air theory. Item simply month guess better c https://example.com/ 21453 441752 441752.441760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4820328957876 0 \N \N f 0 \N 1 100983963 0 f f \N \N \N \N 441752 \N 0 0 \N \N f \N 439793 2024-02-26 19:24:39.009 2024-02-26 19:34:40.183 Travel according exactly attention. Cause daughter drop gas. Cell respond always experience unit land over. With for https://example.com/ 19996 \N 439793 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 17.7834431916627 0 \N \N f 0 \N 0 93347311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443824 2024-02-29 16:44:03.828 2024-02-29 16:54:05.364 \N Near key https://example.com/ 2206 443695 443678.443695.443824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3696804351359 0 \N \N f 0 \N 0 16226081 0 f f \N \N \N \N 443678 \N 0 0 \N \N f \N 443825 2024-02-29 16:44:33.242 2024-02-29 16:54:35.457 \N Fish environmental factor popular series local. Ready each election se https://example.com/ 21458 443792 442982.443581.443587.443661.443792.443825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2192776977846 0 \N \N f 0 \N 0 6507147 0 f f \N \N \N \N 442982 \N 0 0 \N \N f \N 443678 2024-02-29 15:24:37.987 2024-02-29 15:34:39.848 Join push remain behavior. Various song no success Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of. https://example.com/ 16059 \N 443678 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 11.4106733653499 0 \N \N f 0 \N 3 213076163 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443820 2024-02-29 16:43:22.96 2024-02-29 16:53:24.443 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal ac https://example.com/ 11263 443509 443129.443509.443820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7282444803258 0 \N \N f 0 \N 5 204165809 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 443499 2024-02-29 13:56:37.032 2024-02-29 14:06:39.339 \N Them bag because parent https://example.com/ 2390 443495 443495.443499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94409077905126 0 \N \N f 0 \N 0 139192947 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N 443833 2024-02-29 16:48:11.244 2024-02-29 16:58:12.495 Nature wrong meeting whatever. Manage product me stay po Country audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win. https://example.com/ 16212 \N 443833 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 17.3027772029031 0 \N \N f 0 \N 1 70497603 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443752 2024-02-29 16:09:36.183 2024-02-29 16:19:37.013 Near see school goal. Investment gl Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade. https://example.com/ 14280 \N 443752 \N \N \N \N \N \N \N \N DIY \N ACTIVE \N 7.60140026299272 0 \N \N f 0 \N 0 133499523 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443830 2024-02-29 16:46:26.644 2024-02-29 16:56:27.874 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment fe https://example.com/ 20757 443799 443799.443830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8528292208156 0 \N \N f 0 \N 2 87295978 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443851 2024-02-29 16:57:51.103 2024-02-29 17:07:52.539 \N Once could matter program https://example.com/ 1609 443847 443743.443847.443851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8906264806625 0 \N \N f 0 \N 0 32003122 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443349 2024-02-29 11:43:00.756 2024-02-29 11:53:03.657 \N Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nPurpose teacher manager once tax mouth. Notice person history Dem https://example.com/ 1105 443105 443105.443349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2577738830569 0 \N \N f 0 \N 1 113267167 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444023 2024-02-29 18:35:44.822 2024-02-29 18:45:47.325 \N Live clas https://example.com/ 2502 443545 443545.444023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.685624506517 0 \N \N f 0 \N 0 224712318 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443508 2024-02-29 14:00:06.684 2024-02-29 14:10:08.774 \N Young https://example.com/ 9494 443495 443495.443508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.67764667692796 0 \N \N f 0 \N 0 120107869 0 f f \N \N \N \N 443495 \N 0 0 \N \N f \N 443827 2024-02-29 16:45:31.02 2024-02-29 16:55:32.501 \N Billio https://example.com/ 13763 443755 443755.443827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38616624573014 0 \N \N f 0 \N 1 33951795 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443829 2024-02-29 16:45:58.552 2024-02-29 16:55:59.726 \N Tend yes call look. Real feel scientist s https://example.com/ 20891 443823 443577.443729.443742.443823.443829 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.51731064354949 0 \N \N f 0 \N 3 136182508 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443832 2024-02-29 16:47:26.995 2024-02-29 16:57:28.592 \N For share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water https://example.com/ 15351 443583 443583.443832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3025909491131 0 \N \N f 0 \N 0 183681724 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443531 2024-02-29 14:15:51.963 2024-02-29 14:25:53.674 Purpose teacher manager once tax mouth. N Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone officia https://example.com/ 21248 \N 443531 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7946530094919 0 \N \N f 0 \N 4 172444946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443828 2024-02-29 16:45:56.353 2024-02-29 16:55:57.566 \N Hot society statemen https://example.com/ 1737 443295 443295.443828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8161270304727 0 \N \N f 0 \N 0 20304591 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443847 2024-02-29 16:56:12.385 2024-02-29 17:06:14.023 \N Go effect true such such wind market. Role suggest perhaps https://example.com/ 979 443743 443743.443847 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.28525526749905 0 \N \N f 0 \N 1 48389701 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443835 2024-02-29 16:48:53.855 2024-02-29 16:58:55.641 \N Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True kno https://example.com/ 11698 443831 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831.443835 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9701709620553 0 \N \N f 0 \N 3 185725828 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443589 2024-02-29 14:44:53.514 2024-02-29 14:54:54.852 Win nothing research song data. They peace herself continue Republican foreign. Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nea https://example.com/ 9421 \N 443589 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 0.728038887765834 0 \N \N f 0 \N 1 107125409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443731 2024-02-29 15:57:40.345 2024-02-29 16:07:41.982 \N Production per can TV ahead million. Few ya https://example.com/ 16356 443715 443577.443651.443711.443715.443731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.46955826585603 0 \N \N f 0 \N 14 108274438 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443837 2024-02-29 16:49:57.796 2024-02-29 16:59:59.524 \N Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose https://example.com/ 5757 443268 443268.443837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.423903170963 0 \N \N f 0 \N 1 32858198 0 f f \N \N \N \N 443268 \N 0 0 \N \N f \N 443857 2024-02-29 17:00:03.748 2024-02-29 17:10:04.549 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future lear https://example.com/ 17696 443272 443272.443857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6740497410616 0 \N \N f 0 \N 1 109555450 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443849 2024-02-29 16:57:12.904 2024-02-29 17:07:14.862 \N Would week boy close different again part. Stop school continue environment need charge place. Nation wh https://example.com/ 622 443754 443617.443754.443849 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.177825670894 0 \N \N f 0 \N 0 96407185 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 443842 2024-02-29 16:53:04.771 2024-02-29 17:03:05.851 Call system shake up person. Project anythin Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body. https://example.com/ 12976 \N 443842 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 24.030440136085 0 \N \N f 0 \N 0 121690929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443869 2024-02-29 17:03:45.304 2024-02-29 17:13:46.64 \N Try hospital student. Stock floor by weight kind improve. Re https://example.com/ 21238 443811 443577.443651.443711.443715.443731.443757.443772.443796.443811.443869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13349874153369 0 \N \N f 0 \N 0 198435801 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443862 2024-02-29 17:02:19.154 2024-02-29 17:12:20.611 \N Never hotel town trip thus safe eight. Sh https://example.com/ 19398 443855 443372.443855.443862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0205876282456 0 \N \N f 0 \N 1 234091760 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443795 2024-02-29 16:30:35.384 2024-02-29 16:40:36.608 \N Different dog example. Themselves up or p https://example.com/ 946 443761 443583.443611.443660.443761.443795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2384890854784 0 \N \N f 0 \N 0 13254106 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443856 2024-02-29 16:59:34.588 2024-02-29 17:09:37.827 \N We teacher join same push onto. Gas character each when condition. One our explain oil dee https://example.com/ 10698 443099 443099.443856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0001358153991 0 \N \N f 0 \N 1 176989166 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443927 2024-02-29 17:37:59.575 2024-02-29 17:48:00.688 \N Hotel remember debate strategy. Discussion sel https://example.com/ 20904 443853 443577.443729.443742.443823.443829.443838.443853.443927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.50530184501477 0 \N \N f 0 \N 0 151085505 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443853 2024-02-29 16:58:11.112 2024-02-29 17:08:12.693 \N Surface tree knowledge https://example.com/ 4079 443838 443577.443729.443742.443823.443829.443838.443853 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.14530269176623 0 \N \N f 0 \N 1 73057062 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443914 2024-02-29 17:32:43.513 2024-02-29 17:42:44.857 \N Would role them war ten st https://example.com/ 738 443907 443577.443872.443879.443907.443914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9221122939658 0 \N \N f 0 \N 0 108591078 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443819 2024-02-29 16:43:05.052 2024-02-29 16:53:06.242 \N Wear role agency. Enter back require mission piece important especially. Those just state interview inter https://example.com/ 20614 443811 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.97250055396768 0 \N \N f 0 \N 5 37703609 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443865 2024-02-29 17:03:22.644 2024-02-29 17:13:24.775 \N Hard same business read realize care. Nature to happen gar https://example.com/ 21047 443862 443372.443855.443862.443865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.938486269201 0 \N \N f 0 \N 0 161048042 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443860 2024-02-29 17:00:45.021 2024-02-29 17:10:46.274 \N Improve different identify only radio myself. Relate little make whatever. East https://example.com/ 5003 443583 443583.443860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41754375414657 0 \N \N f 0 \N 0 41243857 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443850 2024-02-29 16:57:43.2 2024-02-29 17:07:45.284 \N Provide difference relationship. Factor view stock organiza https://example.com/ 20701 443743 443743.443850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9267703041764 0 \N \N f 0 \N 0 66140089 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 444001 2024-02-29 18:14:00.133 2024-02-29 18:24:01.867 \N Guy help book. Senior ac https://example.com/ 4459 443990 443129.443509.443820.443990.444001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1123386455139 0 \N \N f 0 \N 3 198317065 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 444032 2024-02-29 18:38:58.971 2024-02-29 18:48:59.913 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return o https://example.com/ 21262 443830 443799.443830.444032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.08719041277638 0 \N \N f 0 \N 0 230333225 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443859 2024-02-29 17:00:09.019 2024-02-29 17:10:10.601 \N Dir https://example.com/ 8080 443803 443755.443765.443791.443803.443859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5826651864228 0 \N \N f 0 \N 0 86939339 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443879 2024-02-29 17:13:36.632 2024-02-29 17:23:38.757 \N Beyond difference husband behind https://example.com/ 6382 443872 443577.443872.443879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0635707060099 0 \N \N f 0 \N 2 149804230 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443743 2024-02-29 16:04:54.658 2024-02-29 16:14:55.812 Then voice gun. Migh Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nFar they window call recent. Head light mo https://example.com/ 730 \N 443743 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.6977146984005 0 \N \N f 0 \N 12 63726178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443831 2024-02-29 16:46:36.072 2024-02-29 16:56:37.311 \N Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Crea https://example.com/ 16769 443819 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.52258294209247 0 \N \N f 0 \N 4 87706652 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444209 2024-02-29 20:24:54.819 2024-02-29 20:34:56.965 \N Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only sit https://example.com/ 3360 444168 444168.444209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6366504101396 0 \N \N f 0 \N 0 69914802 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 443884 2024-02-29 17:14:42.07 2024-02-29 17:24:43.635 \N Rest factor stock prepare. Area Mr https://example.com/ 16309 443467 443467.443884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0728794822507 0 \N \N f 0 \N 1 120603545 0 f f \N \N \N \N 443467 \N 0 0 \N \N f \N 443875 2024-02-29 17:08:27.916 2024-02-29 17:18:29.099 \N Drug you class operation. Have job sense. Face thank f https://example.com/ 732 443295 443295.443875 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2734310443399 0 \N \N f 0 \N 0 132952649 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444232 2024-02-29 20:35:41.775 2024-02-29 20:45:42.771 \N Resource morning long fast civil man che https://example.com/ 21047 444168 444168.444232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1031058947444 0 \N \N f 0 \N 0 210470171 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 443715 2024-02-29 15:44:40.877 2024-02-29 15:54:42.022 \N Fact theory worry. Strong itself assume. Focus building https://example.com/ 1124 443711 443577.443651.443711.443715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.8218293204988 0 \N \N f 0 \N 15 246255356 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443356 2024-02-29 11:47:49.185 2024-02-29 11:57:50.912 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficu https://example.com/ 16988 443339 443339.443356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2634592259541 0 \N \N f 0 \N 3 103991253 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N 443888 2024-02-29 17:20:49.207 2024-02-29 17:30:50.575 \N Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Rece https://example.com/ 3377 443401 443339.443356.443401.443888 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44608380028615 0 \N \N f 0 \N 1 92879829 0 f f \N \N \N \N 443339 \N 0 0 \N \N f \N 443798 2024-02-29 16:31:53.335 2024-02-29 16:41:54.936 \N Want fire once his six environment. https://example.com/ 17798 443755 443755.443798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0856021454082 0 \N \N f 0 \N 2 62971097 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443924 2024-02-29 17:37:32.076 2024-02-29 17:47:33.516 \N Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget a https://example.com/ 3478 443617 443617.443924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3841544563911 0 \N \N f 0 \N 0 34903770 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 443907 2024-02-29 17:30:30.087 2024-02-29 17:40:31.479 \N Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nThus measure find board bag high himself. Very history left. Sit term debate laugh do https://example.com/ 21275 443879 443577.443872.443879.443907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6011101318011 0 \N \N f 0 \N 1 149164710 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443874 2024-02-29 17:07:48.452 2024-02-29 17:17:49.67 \N Method same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity informat https://example.com/ 19535 441087 441087.443874 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7027823290347 0 \N \N f 0 \N 0 76464414 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 443899 2024-02-29 17:27:00.856 2024-02-29 17:37:01.701 \N Get executive stock move last. Find throw https://example.com/ 20683 443616 443545.443616.443899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2317225814964 0 \N \N f 0 \N 3 123584889 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443877 2024-02-29 17:12:30.679 2024-02-29 17:22:32.875 \N Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. C https://example.com/ 1198 443528 443528.443877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7587631312651 0 \N \N f 0 \N 0 246770093 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 443876 2024-02-29 17:11:36.151 2024-02-29 17:21:37.14 \N Again reveal time hot kind own https://example.com/ 17166 443858 443743.443858.443876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0340385209317 0 \N \N f 0 \N 0 198074524 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443855 2024-02-29 16:59:27.94 2024-02-29 17:09:29.734 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas https://example.com/ 6798 443372 443372.443855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2536279948315 0 \N \N f 0 \N 2 61137455 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443858 2024-02-29 17:00:04.15 2024-02-29 17:10:05.555 \N Country audience including. Occur movie example defense liv https://example.com/ 19759 443743 443743.443858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.338047490615 0 \N \N f 0 \N 1 177000917 0 f f \N \N \N \N 443743 \N 0 0 \N \N f \N 443863 2024-02-29 17:02:24.509 2024-02-29 17:12:25.497 \N His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nValue have anyone c https://example.com/ 20701 443390 443372.443390.443863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0270559034807 0 \N \N f 0 \N 0 47113953 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 443897 2024-02-29 17:26:21.974 2024-02-29 17:36:23.935 \N Discussion sing wea https://example.com/ 14472 443799 443799.443897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4640499130906 0 \N \N f 0 \N 0 110601378 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443765 2024-02-29 16:16:50.25 2024-02-29 16:26:51.359 \N Truth training ne https://example.com/ 9820 443755 443755.443765 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3403848350297 0 \N \N f 0 \N 4 58973081 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443084 2024-02-29 05:11:19.472 2024-02-29 05:21:20.584 \N Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nMission alone itself parent they get. Morning after factor little manage job something. Run medi https://example.com/ 17708 443081 442904.443057.443081.443084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0501045213653 0 \N \N f 0 \N 3 133619615 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443883 2024-02-29 17:14:39.567 2024-02-29 17:24:40.568 \N Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nWeight statemen https://example.com/ 17046 443545 443545.443883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.311892554071 0 \N \N f 0 \N 0 227730475 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443885 2024-02-29 17:15:39.448 2024-02-29 17:25:40.7 \N Work suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual https://example.com/ 15833 443528 443528.443885 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9295479166849 0 \N \N f 0 \N 0 112140200 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 444248 2024-02-29 20:44:47.303 2024-02-29 20:54:49.044 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type ima https://example.com/ 21556 444098 443794.443913.444092.444098.444248 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35152463260079 0 \N \N f 0 \N 0 4064257 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 443882 2024-02-29 17:14:08.789 2024-02-29 17:24:10.185 \N Deal probably car https://example.com/ 13100 443873 443577.443873.443882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08010723163761 0 \N \N f 0 \N 0 123327104 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444234 2024-02-29 20:36:36.685 2024-02-29 20:46:37.833 \N Meet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually r https://example.com/ 2460 443799 443799.444234 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8415503609432 0 \N \N f 0 \N 0 12485498 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443887 2024-02-29 17:17:59.698 2024-02-29 17:28:01.307 \N Seven which nature charge. Today range al https://example.com/ 5500 443794 443794.443887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6706093524662 0 \N \N f 0 \N 0 127301051 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 443467 2024-02-29 13:33:45.384 2024-02-29 13:43:47.709 Image reality political wind several natural. Growth speak drive believe b Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save. https://example.com/ 5646 \N 443467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5967252771891 0 \N \N f 0 \N 4 34727525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443912 2024-02-29 17:32:11.818 2024-02-29 17:42:13.749 \N Term growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly enviro https://example.com/ 20871 443799 443799.443912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93545115013225 0 \N \N f 0 \N 1 88598966 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443909 2024-02-29 17:31:00.191 2024-02-29 17:41:01.727 \N A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nReturn agreement https://example.com/ 14385 443908 443908.443909 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5795539477743 0 \N \N f 0 \N 0 207054064 0 f f \N \N \N \N 443908 \N 0 0 \N \N f \N 443844 2024-02-29 16:54:46.873 2024-02-29 17:04:48.784 \N First right set. Dinner third difficult next receive. Drop population help recently https://example.com/ 17046 443802 443802.443844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0825373415969 0 \N \N f 0 \N 1 191081866 0 f f \N \N \N \N 443802 \N 0 0 \N \N f \N 443724 2024-02-29 15:51:06.942 2024-02-29 16:01:07.926 \N Expert kind conf https://example.com/ 8508 443720 443577.443714.443716.443720.443724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.62419332601872 0 \N \N f 0 \N 0 118288918 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443714 2024-02-29 15:44:13.745 2024-02-29 15:54:15.029 \N Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nOrder sc https://example.com/ 11819 443577 443577.443714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.158920376216 0 \N \N f 0 \N 3 14493992 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443922 2024-02-29 17:35:13.435 2024-02-29 17:45:14.971 \N Term g https://example.com/ 16912 443799 443799.443922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3379245932334 0 \N \N f 0 \N 0 146426714 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443896 2024-02-29 17:26:07.302 2024-02-29 17:36:08.97 \N Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bri https://example.com/ 646 443092 442904.443092.443896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.26310658173078 0 \N \N f 0 \N 0 243933002 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443840 2024-02-29 16:52:27.391 2024-02-29 17:02:28.742 \N Break site describe address computer. System and word nature Republican. Smile history letter life yo https://example.com/ 1120 443577 443577.443840 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4385034516961 0 \N \N f 0 \N 2 248253076 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443939 2024-02-29 17:42:58.835 2024-02-29 17:52:59.988 \N W https://example.com/ 19494 443903 443545.443616.443899.443903.443939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4491903892637 0 \N \N f 0 \N 0 122698362 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443800 2024-02-29 16:33:31.292 2024-02-29 16:43:32.659 \N Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city saf https://example.com/ 14503 443583 443583.443800 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5595805292427 0 \N \N f 0 \N 0 105650114 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443843 2024-02-29 16:53:17.586 2024-02-29 17:03:18.745 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nTechnology instead seat like far. Door produce too Democ https://example.com/ 16638 443583 443583.443843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6633728688601 0 \N \N f 0 \N 0 20432584 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443901 2024-02-29 17:28:43.409 2024-02-29 17:38:45.328 \N Idea seem tend attack act common her run. Style there improve point culture curre https://example.com/ 3400 443889 443295.443781.443806.443889.443901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.7780624367909 0 \N \N f 0 \N 0 142577955 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443906 2024-02-29 17:30:13.988 2024-02-29 17:40:15.463 \N Cell language east present. https://example.com/ 9261 443391 443391.443906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7859608311854 0 \N \N f 0 \N 1 140539618 0 f f \N \N \N \N 443391 \N 0 0 \N \N f \N 443864 2024-02-29 17:03:10.287 2024-02-29 17:13:11.542 \N Various discussion light page w https://example.com/ 13843 443845 443577.443651.443711.443715.443731.443757.443772.443796.443811.443819.443831.443835.443845.443864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6452362384558 0 \N \N f 0 \N 1 53588412 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443729 2024-02-29 15:56:38.284 2024-02-29 16:06:39.793 \N Parent control wide song section few. Regio https://example.com/ 17103 443577 443577.443729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.251692500489 0 \N \N f 0 \N 6 78836023 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443900 2024-02-29 17:28:12.805 2024-02-29 17:38:14.532 \N Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy so https://example.com/ 4173 443545 443545.443900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.794743286806217 0 \N \N f 0 \N 0 45829364 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 443873 2024-02-29 17:07:35.549 2024-02-29 17:17:36.318 \N White have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue https://example.com/ 17116 443577 443577.443873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5613593875573 0 \N \N f 0 \N 1 168028021 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443763 2024-02-29 16:16:23.659 2024-02-29 16:26:24.992 \N Activity itself a https://example.com/ 19322 443755 443755.443763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7792130879456 0 \N \N f 0 \N 1 11809712 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443092 2024-02-29 05:34:55.645 2024-02-29 05:44:56.816 \N Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nWrong spring according trial federal although. Apply technology traditional responsibility https://example.com/ 794 442904 442904.443092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.713788693858177 0 \N \N f 0 \N 2 22290556 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443908 2024-02-29 17:30:31.937 2024-02-29 17:40:33.481 Prevent machine source white and. Fact together father find appear point. Sou Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member. https://example.com/ 21413 \N 443908 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5758254126293 0 \N \N f 0 \N 5 203454082 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443823 2024-02-29 16:43:46.433 2024-02-29 16:53:47.83 \N Public ask news upon forget election. Television techn https://example.com/ 21493 443742 443577.443729.443742.443823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1949244637274 0 \N \N f 0 \N 4 182999555 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 442698 2024-02-28 20:53:06.948 2024-02-28 21:03:09.235 Suggest officer purpose professor great school cut. Per agency leg responsib Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that an https://example.com/ 1060 \N 442698 \N \N \N \N \N \N \N \N news \N ACTIVE \N 29.0984382511766 0 \N \N f 0 \N 1 151458468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443910 2024-02-29 17:31:13.234 2024-02-29 17:41:14.902 \N Quite teacher accept per agent PM suddenly reveal. Land country school land happy https://example.com/ 977 442698 442698.443910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7045589107369 0 \N \N f 0 \N 0 184138066 0 f f \N \N \N \N 442698 \N 0 0 \N \N f \N 443905 2024-02-29 17:29:59.612 2024-02-29 17:40:00.448 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. https://example.com/ 21159 443799 443799.443905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.11566343246412 0 \N \N f 0 \N 5 235777666 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443773 2024-02-29 16:19:17.695 2024-02-29 16:29:18.935 \N Deal could skin some. Through street fact https://example.com/ 909 443763 443755.443763.443773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.50476928393951 0 \N \N f 0 \N 0 31563570 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 443391 2024-02-29 12:29:29.308 2024-02-29 12:39:30.784 Nature wrong meeting whatever. Manage product me stay poli Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw re https://example.com/ 687 \N 443391 \N \N \N \N \N \N \N \N news \N ACTIVE \N 24.4680731655169 0 \N \N f 0 \N 2 21965702 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443892 2024-02-29 17:23:31.94 2024-02-29 17:33:33.651 \N Hundred unit music many. But mother however drug call a. Strong level https://example.com/ 11621 441967 441967.443892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0581291871494 0 \N \N f 0 \N 0 72888508 0 f f \N \N \N \N 441967 \N 0 0 \N \N f \N 443966 2024-02-29 17:55:42.708 2024-02-29 18:05:43.607 \N Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply https://example.com/ 18231 443197 443197.443966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11707864451478 0 \N \N f 0 \N 0 243107314 0 f f \N \N \N \N 443197 \N 0 0 \N \N f \N 443978 2024-02-29 18:05:27.135 2024-02-29 18:15:29.053 \N Boy force agency change https://example.com/ 13100 443683 443683.443978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.99083319373722 0 \N \N f 0 \N 0 140484729 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 443991 2024-02-29 18:09:51.213 2024-02-29 18:19:53.044 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. https://example.com/ 676 443975 443917.443970.443975.443991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.26560133701249 0 \N \N f 0 \N 0 66639137 0 f f \N \N \N \N 443917 \N 0 0 \N \N f \N 444093 2024-02-29 19:06:27.341 2024-02-29 19:16:28.506 \N Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nAbout cell note lot page. Feel manage language. Road against page. Food just somethin https://example.com/ 9844 443799 443799.444093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7526714272989 0 \N \N f 0 \N 0 53440227 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443933 2024-02-29 17:41:26.647 2024-02-29 17:51:27.719 \N Officer forget west check learn https://example.com/ 1970 443575 443467.443575.443933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1982642192873 0 \N \N f 0 \N 0 87563718 0 f f \N \N \N \N 443467 \N 0 0 \N \N f \N 444242 2024-02-29 20:41:40.424 2024-02-29 20:51:41.642 \N Than budget time gas choice option light. To https://example.com/ 21164 444241 444165.444241.444242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9860166086084 0 \N \N f 0 \N 0 13551323 0 f f \N \N \N \N 444165 \N 0 0 \N \N f \N 443866 2024-02-29 17:03:27.317 2024-02-29 17:13:28.809 These world usually gro Network art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impa https://example.com/ 12220 \N 443866 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 19.4287632192457 0 \N \N f 0 \N 1 245196959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443962 2024-02-29 17:53:39.343 2024-02-29 18:03:40.991 \N Provide enjoy https://example.com/ 2042 443799 443799.443962 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5365299611308 0 \N \N f 0 \N 0 120867096 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443620 2024-02-29 14:56:25.011 2024-02-29 15:06:26.805 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\n https://example.com/ 2233 443295 443295.443620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.750238305918 0 \N \N f 0 \N 0 21450437 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443954 2024-02-29 17:48:26.767 2024-02-29 17:58:28.412 \N That field beautiful American when. Simply quality which media. Note https://example.com/ 1697 443817 443272.443808.443817.443954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.87988553739888 0 \N \N f 0 \N 0 245588323 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443930 2024-02-29 17:39:28.635 2024-02-29 17:49:29.999 \N Go special a bed great same concern. Need plan look whatever reco https://example.com/ 756 443799 443799.443930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.11758901842548 0 \N \N f 0 \N 1 19107675 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443957 2024-02-29 17:50:27.662 2024-02-29 18:00:28.654 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut ex https://example.com/ 6526 443583 443583.443957 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5188048019876 0 \N \N f 0 \N 0 56629384 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443961 2024-02-29 17:53:27.587 2024-02-29 18:03:30.526 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others https://example.com/ 738 443667 443667.443961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0496713289374284 0 \N \N f 0 \N 0 221557996 0 f f \N \N \N \N 443667 \N 0 0 \N \N f \N 443928 2024-02-29 17:38:11.912 2024-02-29 17:48:13.508 \N Then politica https://example.com/ 11328 443577 443577.443928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.0804277126505 0 \N \N f 0 \N 1 147887905 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443925 2024-02-29 17:37:39.327 2024-02-29 17:47:40.836 \N Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually https://example.com/ 866 443041 442820.443041.443925 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9802277959546 0 \N \N f 0 \N 0 181407774 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 443944 2024-02-29 17:44:46.44 2024-02-29 17:54:47.595 \N Wish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across e https://example.com/ 18321 443577 443577.443944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.13415914004234 0 \N \N f 0 \N 1 247956958 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443450 2024-02-29 13:17:25.936 2024-02-29 13:27:27.517 Girl fire brin Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or. https://example.com/ 13042 \N 443450 \N \N \N \N \N \N \N \N security \N ACTIVE \N 6.50257396942742 0 \N \N f 0 \N 0 19146688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443693 2024-02-29 15:32:03.794 2024-02-29 15:42:05.034 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance https://example.com/ 19329 443295 443295.443693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3465089780505 0 \N \N f 0 \N 0 7668096 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443867 2024-02-29 17:03:29.725 2024-02-29 17:13:30.831 Right student yard protect cover. Carry these she really. Commercial sol Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water. https://example.com/ 21522 \N 443867 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 16.7470675199203 0 \N \N f 0 \N 4 135856213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443949 2024-02-29 17:46:30.645 2024-02-29 17:56:31.531 \N Action prevent Republican. https://example.com/ 17050 443906 443391.443906.443949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9499472439689 0 \N \N f 0 \N 0 132447483 0 f f \N \N \N \N 443391 \N 0 0 \N \N f \N 443943 2024-02-29 17:44:45.485 2024-02-29 17:54:46.593 \N She loss lawyer raise without right propert https://example.com/ 3360 443854 443577.443840.443854.443943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68103270200852 0 \N \N f 0 \N 0 20664899 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443870 2024-02-29 17:04:11.752 2024-02-29 17:14:12.765 \N Community region she TV since s https://example.com/ 1426 443799 443799.443870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0416506473032 0 \N \N f 0 \N 1 173584586 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443660 2024-02-29 15:08:17.796 2024-02-29 15:18:18.962 \N Decade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nNever able https://example.com/ 1567 443611 443583.443611.443660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8528826691653 0 \N \N f 0 \N 2 28972808 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443728 2024-02-29 15:55:45.162 2024-02-29 16:05:47.117 \N Health reduce performance body similar light wear https://example.com/ 21374 443577 443577.443728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9509835610173 0 \N \N f 0 \N 1 189139338 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443778 2024-02-29 16:22:24.937 2024-02-29 16:32:26.247 Something black staff. Glass hospital force stand everybody sure low. Indust Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat. https://example.com/ 2204 \N 443778 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6914617104346 0 \N \N f 0 \N 0 199097626 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443941 2024-02-29 17:43:37.477 2024-02-29 17:53:39.303 If lose particula Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we. https://example.com/ 20036 \N 443941 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 14.8824487977514 0 \N \N f 0 \N 0 124784181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444192 2024-02-29 20:17:33.01 2024-02-29 20:27:35.23 \N Benefit car actually you open. Election hear wide school miss. Mark https://example.com/ 4487 444165 444165.444192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.836724518502407 0 \N \N f 0 \N 0 241969111 0 f f \N \N \N \N 444165 \N 0 0 \N \N f \N 443969 2024-02-29 17:59:11.427 2024-02-29 18:09:12.798 \N Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nBreak test customer successful hotel availa https://example.com/ 21062 443712 443712.443969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.79088228335638 0 \N \N f 0 \N 1 195739456 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444176 2024-02-29 20:06:12.738 2024-02-29 20:16:15.34 \N Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nWay majority believe feeling. Their see data sure office fina https://example.com/ 21563 444168 444168.444176 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5128692150024 0 \N \N f 0 \N 6 218934225 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 443946 2024-02-29 17:45:05.706 2024-02-29 17:55:06.943 \N Check https://example.com/ 18641 443844 443802.443844.443946 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.32597135175344 0 \N \N f 0 \N 0 76312893 0 f f \N \N \N \N 443802 \N 0 0 \N \N f \N 443960 2024-02-29 17:53:24.097 2024-02-29 18:03:25.357 Whose eye what surface. Leader use yet six despite memory front Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself. https://example.com/ 12606 \N 443960 \N \N \N \N \N \N \N \N news \N ACTIVE \N 26.9688883008363 0 \N \N f 0 \N 0 199097876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443952 2024-02-29 17:46:45.852 2024-02-29 17:56:46.865 \N Expert kind conference provide. Structure risk board profes https://example.com/ 2543 443399 443399.443952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9263368807685 0 \N \N f 0 \N 0 177927323 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 444241 2024-02-29 20:40:10.368 2024-02-29 20:50:11.308 \N South both increase democratic economic. Seem measure yes couple plan https://example.com/ 6616 444165 444165.444241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8072550425447 0 \N \N f 0 \N 1 210647717 0 f f \N \N \N \N 444165 \N 0 0 \N \N f \N 443868 2024-02-29 17:03:43.171 2024-02-29 17:13:44.642 \N College quality yard box similar. Response movie clea https://example.com/ 18581 443802 443802.443868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0471068462033 0 \N \N f 0 \N 0 48737829 0 f f \N \N \N \N 443802 \N 0 0 \N \N f \N 443945 2024-02-29 17:44:52.17 2024-02-29 17:54:53.812 Bag couple hot buy yourself serve bit. For even true detail sout Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually. https://example.com/ 6526 \N 443945 \N \N \N \N \N \N \N \N science \N ACTIVE \N 24.9023922050511 0 \N \N f 0 \N 0 198436358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443916 2024-02-29 17:33:12.13 2024-02-29 17:43:13.438 \N Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expe https://example.com/ 2326 443902 443295.443781.443806.443886.443894.443902.443916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54375028196279 0 \N \N f 0 \N 1 29444359 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 439562 2024-02-26 16:13:51.712 2024-02-26 16:23:53.183 Hot near source fact. Have high kind. Series speech subject s Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product c https://example.com/ 780 \N 439562 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 27.5597102951013 0 \N \N f 0 \N 3 177795498 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443920 2024-02-29 17:34:45.584 2024-02-29 17:44:46.723 \N Statement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility https://example.com/ 2681 443866 443866.443920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7550319571607 0 \N \N f 0 \N 0 217258818 0 f f \N \N \N \N 443866 \N 0 0 \N \N f \N 443932 2024-02-29 17:41:09.134 2024-02-29 17:51:10.824 \N Out quite different term just require. Store thing key https://example.com/ 21131 443884 443467.443884.443932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6503338641087 0 \N \N f 0 \N 0 162273412 0 f f \N \N \N \N 443467 \N 0 0 \N \N f \N 443926 2024-02-29 17:37:51.703 2024-02-29 17:47:52.97 \N Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nPlant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those attorney across. Itself compare view able star.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun https://example.com/ 19785 443272 443272.443926 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3210393898934 0 \N \N f 0 \N 1 156119867 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443951 2024-02-29 17:46:38.579 2024-02-29 17:56:39.611 As quality own off arm religious but. Site claim natural manag Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect. https://example.com/ 18232 \N 443951 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4314315383783 0 \N \N f 0 \N 2 208103903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443974 2024-02-29 18:04:46.572 2024-02-29 18:14:47.594 Southern wear age then chair. Sign young end Republican box quality Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also. https://example.com/ 5557 \N 443974 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 13.3198758851917 0 \N \N f 0 \N 0 12289456 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443963 2024-02-29 17:53:52.929 2024-02-29 18:03:54.017 \N Eat culture event thus any event watch hospital https://example.com/ 8998 443867 443867.443963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3150396100368 0 \N \N f 0 \N 0 192717722 0 f f \N \N \N \N 443867 \N 0 0 \N \N f \N 443058 2024-02-29 04:02:33.736 2024-02-29 04:12:35.171 Man talk arm player scene reflect. Window pick so Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budg https://example.com/ 14278 \N 443058 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 9.97169178204441 0 \N \N f 0 \N 6 201569102 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443965 2024-02-29 17:55:16.434 2024-02-29 18:05:17.408 \N Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly se https://example.com/ 18984 443916 443295.443781.443806.443886.443894.443902.443916.443965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5260661822708 0 \N \N f 0 \N 0 74518361 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443808 2024-02-29 16:39:07.696 2024-02-29 16:49:09.383 \N Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nFact theory worry. Stro https://example.com/ 8045 443272 443272.443808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5008992497346 0 \N \N f 0 \N 6 109617571 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443970 2024-02-29 17:59:45.748 2024-02-29 18:09:47.077 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we https://example.com/ 19154 443917 443917.443970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6582284025446 0 \N \N f 0 \N 2 105021035 0 f f \N \N \N \N 443917 \N 0 0 \N \N f \N 443550 2024-02-29 14:27:01.066 2024-02-29 14:37:02.146 Red tough always try. Police clear hundred box. Ahead blue study century even Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece. https://example.com/ 5003 \N 443550 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 6.07137246268437 0 \N \N f 0 \N 0 174216242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443980 2024-02-29 18:06:21.25 2024-02-29 18:16:22.657 \N Run music mean unit. Above here https://example.com/ 780 440427 440394.440427.443980 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9627459269499 0 \N \N f 0 \N 0 162712865 0 f f \N \N \N \N 440394 \N 0 0 \N \N f \N 443947 2024-02-29 17:45:14.525 2024-02-29 17:55:15.434 \N Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. No https://example.com/ 8162 443272 443272.443947 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6962604313049 0 \N \N f 0 \N 1 213024380 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443972 2024-02-29 18:01:12.041 2024-02-29 18:11:13.649 \N International ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes https://example.com/ 1272 443683 443683.443972 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.51740449794932 0 \N \N f 0 \N 0 158464762 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 443964 2024-02-29 17:55:14.751 2024-02-29 18:05:16.136 Message throw as Total necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should. https://example.com/ 9342 \N 443964 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 18.0224551203085 0 \N \N f 0 \N 0 225197339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443942 2024-02-29 17:44:18.561 2024-02-29 17:54:20.25 Southern wear age then chair. Sign young end Republican box quality site. Book Site coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow https://example.com/ 20156 \N 443942 \N \N \N \N \N \N \N \N security \N ACTIVE \N 28.554265800513 0 \N \N f 0 \N 0 170114062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443973 2024-02-29 18:03:43.92 2024-02-29 18:13:45.457 \N Purpose age cover machine. Mus https://example.com/ 5195 443919 443919.443973 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.53661794868493 0 \N \N f 0 \N 3 18568881 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 443967 2024-02-29 17:57:49.078 2024-02-29 18:07:50.501 \N Eye million https://example.com/ 18543 443919 443919.443967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.16900957973375 0 \N \N f 0 \N 0 216991363 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 443917 2024-02-29 17:34:08.441 2024-02-29 17:44:09.901 Decade tend week light radio. Anyone less defense us. Couple office r Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution. https://example.com/ 18393 \N 443917 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.4875574674364 0 \N \N f 0 \N 3 36873016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444000 2024-02-29 18:13:38.35 2024-02-29 18:23:40.061 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose v https://example.com/ 20326 443982 443295.443940.443958.443982.444000 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9862133219217 0 \N \N f 0 \N 1 207677554 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444007 2024-02-29 18:15:35.25 2024-02-29 18:25:36.93 \N Decade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ev https://example.com/ 18637 443817 443272.443808.443817.444007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5552904656665 0 \N \N f 0 \N 2 248381528 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444014 2024-02-29 18:20:31.752 2024-02-29 18:30:33.453 \N Line trade last na https://example.com/ 1806 443956 443617.443625.443627.443956.444014 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.06111865391975 0 \N \N f 0 \N 0 84357058 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 444010 2024-02-29 18:16:49.138 2024-02-29 18:26:50.467 \N Decision bu https://example.com/ 15271 443996 443908.443959.443977.443996.444010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7916945910182 0 \N \N f 0 \N 0 42779865 0 f f \N \N \N \N 443908 \N 0 0 \N \N f \N 442866 2024-02-28 23:27:55.324 2024-02-28 23:37:56.959 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nHeavy sp https://example.com/ 14247 442645 441288.442645.442866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8110878300611 0 \N \N f 0 \N 0 193659512 0 f f \N \N \N \N 441288 \N 0 0 \N \N f \N 443986 2024-02-29 18:08:14.747 2024-02-29 18:18:16.243 \N Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund https://example.com/ 13133 443947 443272.443947.443986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8996378165502 0 \N \N f 0 \N 0 36779967 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443968 2024-02-29 17:58:31.996 2024-02-29 18:08:34.039 \N Forget throughout sea city first by remember. Amount economic box girl. Subject white Democrat a https://example.com/ 20251 443930 443799.443930.443968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9304733607899 0 \N \N f 0 \N 0 122035386 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443749 2024-02-29 16:07:57.015 2024-02-29 16:17:58.842 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nMoment or possible there month. Myself hit name exist team hersel https://example.com/ 16704 443583 443583.443749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.67886359473823 0 \N \N f 0 \N 0 17281173 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 444030 2024-02-29 18:37:44.478 2024-02-29 18:47:45.858 \N Who collection suggest practice. Walk them Republican. Address investmen https://example.com/ 18262 443799 443799.444030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9388406624222 0 \N \N f 0 \N 0 236228055 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444022 2024-02-29 18:33:39.31 2024-02-29 18:43:41.057 \N Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author https://example.com/ 6393 444001 443129.443509.443820.443990.444001.444022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1077072148236 0 \N \N f 0 \N 0 132868132 0 f f \N \N \N \N 443129 \N 0 0 \N \N f \N 444075 2024-02-29 18:58:15.242 2024-02-29 19:08:16.475 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. https://example.com/ 16834 443992 443272.443673.443992.444075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.6132671934777 0 \N \N f 0 \N 0 16571220 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444238 2024-02-29 20:39:34.714 2024-02-29 20:49:36.13 \N Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who exec https://example.com/ 20143 444113 441816.444113.444238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.85932419216 0 \N \N f 0 \N 0 215570562 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 444233 2024-02-29 20:35:43.059 2024-02-29 20:45:45.352 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology pr https://example.com/ 5449 444097 444097.444233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0792152342273 0 \N \N f 0 \N 0 231690883 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 443958 2024-02-29 17:50:42.555 2024-02-29 18:00:43.945 \N Statement could https://example.com/ 19148 443940 443295.443940.443958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0095046810959 0 \N \N f 0 \N 3 21633661 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443998 2024-02-29 18:12:29.9 2024-02-29 18:22:30.905 \N Measure western pretty serious director country. Sport https://example.com/ 7827 443988 443951.443988.443998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9277394807339 0 \N \N f 0 \N 0 89278539 0 f f \N \N \N \N 443951 \N 0 0 \N \N f \N 444005 2024-02-29 18:14:43.601 2024-02-29 18:24:44.972 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nYoung nothing just. Spri https://example.com/ 1740 443808 443272.443808.444005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.813751731043624 0 \N \N f 0 \N 0 171311658 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 442794 2024-02-28 22:32:06.301 2024-02-28 22:42:07.819 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop https://example.com/ 20409 442396 442313.442396.442794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.09105821876 0 \N \N f 0 \N 0 32379981 0 f f \N \N \N \N 442313 \N 0 0 \N \N f \N 443988 2024-02-29 18:08:41.327 2024-02-29 18:18:43.024 \N Near key among effort cover century support author. Station trial serve certai https://example.com/ 15690 443951 443951.443988 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.98133399913804 0 \N \N f 0 \N 1 56259614 0 f f \N \N \N \N 443951 \N 0 0 \N \N f \N 444033 2024-02-29 18:39:10.616 2024-02-29 18:49:11.914 \N Young shake push apply stand. Benefit ahead o https://example.com/ 21063 443955 443577.443955.444033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0355464345692 0 \N \N f 0 \N 1 193793023 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443989 2024-02-29 18:09:18.666 2024-02-29 18:19:19.814 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager https://example.com/ 1236 443595 443272.443595.443989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.07145353056782 0 \N \N f 0 \N 1 73317235 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444009 2024-02-29 18:16:03.205 2024-02-29 18:26:05.534 \N Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nTrade gas word. https://example.com/ 17218 444000 443295.443940.443958.443982.444000.444009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.514281160792898 0 \N \N f 0 \N 0 130967848 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 443995 2024-02-29 18:12:19.525 2024-02-29 18:22:21.019 \N Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. https://example.com/ 20434 443276 443272.443276.443995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06895807297461 0 \N \N f 0 \N 0 161302163 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443703 2024-02-29 15:36:57.805 2024-02-29 15:46:58.602 \N Rock source rate fact leave house course. Person support hotel bill eas https://example.com/ 2577 443583 443583.443703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3194086356065 0 \N \N f 0 \N 0 75643718 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 443994 2024-02-29 18:11:24.084 2024-02-29 18:21:25.518 \N Skill government the life relationship bad. Statement character spring simple decide good able https://example.com/ 11609 443881 443272.443881.443994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7299558283122 0 \N \N f 0 \N 0 221218849 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444003 2024-02-29 18:14:35.732 2024-02-29 18:24:36.795 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full sta https://example.com/ 21083 443150 443150.444003 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6843222807465 0 \N \N f 0 \N 1 10706262 0 f f \N \N \N \N 443150 \N 0 0 \N \N f \N 443977 2024-02-29 18:05:23.153 2024-02-29 18:15:25.001 \N Activity itself abo https://example.com/ 1038 443959 443908.443959.443977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6619920650928 0 \N \N f 0 \N 2 101086506 0 f f \N \N \N \N 443908 \N 0 0 \N \N f \N 444021 2024-02-29 18:32:19.058 2024-02-29 18:42:20.589 \N Several follow value modern https://example.com/ 21494 443919 443919.444021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.17872807741448 0 \N \N f 0 \N 0 127302778 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444029 2024-02-29 18:37:33.793 2024-02-29 18:47:35.758 \N Push floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throu https://example.com/ 14037 444015 444015.444029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3628977266624 0 \N \N f 0 \N 0 79092719 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444017 2024-02-29 18:22:36.954 2024-02-29 18:32:38.629 \N Same product run but perh https://example.com/ 20015 442760 442741.442760.444017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.58695069502753 0 \N \N f 0 \N 0 234463300 0 f f \N \N \N \N 442741 \N 0 0 \N \N f \N 443999 2024-02-29 18:13:27.592 2024-02-29 18:23:28.87 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world hous https://example.com/ 14225 443466 443462.443466.443999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.7898318710746 0 \N \N f 0 \N 0 231085759 0 f f \N \N \N \N 443462 \N 0 0 \N \N f \N 442760 2024-02-28 21:36:44.117 2024-02-28 21:46:45.259 \N With officer scientist letter one. Partner coach history loss. Garden responsibility you cont https://example.com/ 837 442741 442741.442760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.924766003714517 0 \N \N f 0 \N 2 78080025 0 f f \N \N \N \N 442741 \N 0 0 \N \N f \N 444019 2024-02-29 18:28:18.7 2024-02-29 18:38:19.784 \N Study question sing. Hour matter case https://example.com/ 21040 441935 441935.444019 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3288863495884 0 \N \N f 0 \N 0 95700498 0 f f \N \N \N \N 441935 \N 0 0 \N \N f \N 443985 2024-02-29 18:07:43.18 2024-02-29 18:17:44.759 Begin lawyer shoulder couple whom drive improve. Analysis Agency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject red https://example.com/ 9921 \N 443985 \N \N \N \N \N \N \N \N news \N ACTIVE \N 10.2210155807065 0 \N \N f 0 \N 1 13949836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 438891 2024-02-26 04:50:26.141 2024-02-26 05:00:27.203 \N Price https://example.com/ 1298 438440 438325.438440.438891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9304185405912 0 \N \N f 0 \N 0 71694314 0 f f \N \N \N \N 438325 \N 0 0 \N \N f \N 444028 2024-02-29 18:37:30.412 2024-02-29 18:47:31.73 \N Why long up fly diffi https://example.com/ 19735 443790 443790.444028 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4431449753636 0 \N \N f 0 \N 0 42451578 0 f f \N \N \N \N 443790 \N 0 0 \N \N f \N 443321 2024-02-29 11:16:18.657 2024-02-29 11:26:20.359 \N Move purpose well important learn population study. Key turn career industry scene wide business https://example.com/ 882 443303 443303.443321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1633521309489 0 \N \N f 0 \N 1 112619031 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N 444002 2024-02-29 18:14:09.015 2024-02-29 18:24:10.394 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. https://example.com/ 18862 443545 443545.444002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.741980911343 0 \N \N f 0 \N 0 214684811 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 444024 2024-02-29 18:35:54.008 2024-02-29 18:45:55.647 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Sm https://example.com/ 859 443214 442904.443057.443081.443084.443166.443214.444024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2033918998278 0 \N \N f 0 \N 0 55446008 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 444012 2024-02-29 18:17:27.569 2024-02-29 18:27:29.07 \N Go special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environm https://example.com/ 8544 443580 443272.443580.444012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.21880953712712 0 \N \N f 0 \N 0 23196816 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 442741 2024-02-28 21:28:38.101 2024-02-28 21:38:39.353 Body situation without keep first per. Ground baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. https://example.com/ 20840 \N 442741 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 11.6777864645655 0 \N \N f 0 \N 4 60512439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444020 2024-02-29 18:29:31.331 2024-02-29 18:39:32.469 \N Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat https://example.com/ 17526 441935 441935.444020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5392460943785 0 \N \N f 0 \N 0 94759732 0 f f \N \N \N \N 441935 \N 0 0 \N \N f \N 443959 2024-02-29 17:52:02.755 2024-02-29 18:02:04.145 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own https://example.com/ 19174 443908 443908.443959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27799677769138 0 \N \N f 0 \N 3 114365677 0 f f \N \N \N \N 443908 \N 0 0 \N \N f \N 444060 2024-02-29 18:49:47.149 2024-02-29 18:59:48.711 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose becaus https://example.com/ 21248 443577 443577.444060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4685733158315 0 \N \N f 0 \N 0 189674837 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443214 2024-02-29 09:20:28.95 2024-02-29 09:30:29.772 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hol https://example.com/ 20554 443166 442904.443057.443081.443084.443166.443214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0592582458647 0 \N \N f 0 \N 1 31399556 0 f f \N \N \N \N 442904 \N 0 0 \N \N f \N 443697 2024-02-29 15:34:08.629 2024-02-29 15:44:10.118 Officer forget west check learn id Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must. https://example.com/ 20409 \N 443697 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 20.2552028692692 0 \N \N f 0 \N 0 233046092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444025 2024-02-29 18:36:56.086 2024-02-29 18:46:57.492 \N Somebody cold factor themselves for mouth adul https://example.com/ 18344 443976 443577.443976.444025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1386230235316 0 \N \N f 0 \N 0 183617133 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444026 2024-02-29 18:37:20.917 2024-02-29 18:47:21.775 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact w https://example.com/ 13406 443577 443577.444026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7242509879401 0 \N \N f 0 \N 0 47521268 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444027 2024-02-29 18:37:23.808 2024-02-29 18:47:25.783 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support man https://example.com/ 10352 168645 168645.444027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.51857926933139 0 \N \N f 0 \N 0 212825527 0 f f \N \N \N \N 168645 \N 0 0 \N \N f \N 443976 2024-02-29 18:05:21.92 2024-02-29 18:15:22.973 \N Seat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowl https://example.com/ 19303 443577 443577.443976 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0361835270245 0 \N \N f 0 \N 1 160851226 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 443116 2024-02-29 06:27:55.637 2024-02-29 06:37:56.739 \N Apply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream https://example.com/ 21269 443099 443099.443116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3082199896396 0 \N \N f 0 \N 4 50517098 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 443898 2024-02-29 17:26:24.737 2024-02-29 17:36:25.954 \N Boy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand https://example.com/ 2224 443799 443799.443898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98629154343082 0 \N \N f 0 \N 1 6315388 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444008 2024-02-29 18:15:55.701 2024-02-29 18:25:57.344 \N Onto although Democrat mind signif https://example.com/ 13361 443318 443303.443318.444008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79085365843682 0 \N \N f 0 \N 0 215770349 0 f f \N \N \N \N 443303 \N 0 0 \N \N f \N 443105 2024-02-29 06:12:19.893 2024-02-29 06:22:20.698 Language effort sport mention guess wa Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land https://example.com/ 20479 \N 443105 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 24.5379902036446 0 \N \N f 0 \N 29 176542152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444037 2024-02-29 18:40:22.701 2024-02-29 18:50:24.013 \N Near key among e https://example.com/ 12245 443931 443577.443931.444037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20322767629659 0 \N \N f 0 \N 0 225779744 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444036 2024-02-29 18:39:54.571 2024-02-29 18:49:56.74 Plan theory effect center maintain man. Now field ago hard. Ra Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north. https://example.com/ 20993 \N 444036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.99768975423659 0 \N \N f 0 \N 2 117091130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443528 2024-02-29 14:14:55.423 2024-02-29 14:24:57.253 Risk past without recognize series career Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nFall health drug child. Throughout information new https://example.com/ 16816 \N 443528 \N \N \N \N \N \N \N \N crypto \N ACTIVE \N 29.4342278338907 0 \N \N f 0 \N 8 105343926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444038 2024-02-29 18:40:44.628 2024-02-29 18:50:45.783 \N Star audience simply evidence citizen. Wall staff travel. Suggest his gla https://example.com/ 19662 444033 443577.443955.444033.444038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1587777653534 0 \N \N f 0 \N 0 54508606 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444039 2024-02-29 18:40:53.761 2024-02-29 18:50:55.805 \N W https://example.com/ 739 443928 443577.443928.444039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6980879543263 0 \N \N f 0 \N 0 74610053 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444051 2024-02-29 18:45:46.284 2024-02-29 18:55:48.087 Game during everybody only among. Exactly situat Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing. https://example.com/ 19732 \N 444051 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.0963013077493002 0 \N \N f 0 \N 0 183167108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444043 2024-02-29 18:42:03.343 2024-02-29 18:52:04.523 \N Red tough always try. Police clear hundred box. Ah https://example.com/ 21033 443848 443105.443848.444043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7801033565545 0 \N \N f 0 \N 0 7096542 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444050 2024-02-29 18:45:29.466 2024-02-29 18:55:30.866 \N Image reality p https://example.com/ 20058 443934 443836.443934.444050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3043150252594 0 \N \N f 0 \N 0 28459762 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444205 2024-02-29 20:22:32.733 2024-02-29 20:32:33.667 \N Down his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. https://example.com/ 6749 444122 443836.444122.444205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72918618180335 0 \N \N f 0 \N 0 139796282 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444059 2024-02-29 18:48:56.544 2024-02-29 18:58:57.96 \N Statement these family dark. Realize American always somebody executive design. Become positiv https://example.com/ 12024 444045 443799.443905.444045.444059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.44143974252965 0 \N \N f 0 \N 1 158586780 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443673 2024-02-29 15:21:39.788 2024-02-29 15:31:41.214 \N Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. Colleg https://example.com/ 807 443272 443272.443673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6713843686178 0 \N \N f 0 \N 2 25613005 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 443734 2024-02-29 15:59:21.718 2024-02-29 16:09:23.224 Still power Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. A https://example.com/ 16177 \N 443734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8774773067603 0 \N \N f 0 \N 5 77570730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444085 2024-02-29 19:01:14.198 2024-02-29 19:11:16.355 \N Risk past without recognize series career either. Ahead approach animal that whether. Necessary his e https://example.com/ 9611 443802 443802.444085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07115630092274 0 \N \N f 0 \N 0 32134555 0 f f \N \N \N \N 443802 \N 0 0 \N \N f \N 440863 2024-02-27 17:46:43.235 2024-02-27 17:56:44.638 \N Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner mornin https://example.com/ 18116 440692 440692.440863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1526211529289 0 \N \N f 0 \N 2 148363788 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 441011 2024-02-27 20:00:15.452 2024-02-27 20:10:16.674 \N Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship https://example.com/ 642 440692 440692.441011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0278706778611 0 \N \N f 0 \N 13 61412798 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443848 2024-02-29 16:57:12.335 2024-02-29 17:07:13.839 \N Order science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably s https://example.com/ 7587 443105 443105.443848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.43713977046096 0 \N \N f 0 \N 1 45604342 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 441228 2024-02-27 23:18:27.435 2024-02-27 23:28:28.681 \N Skill government the life relationship bad. Statement character spring simple deci https://example.com/ 19156 441170 440692.441170.441228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3567508197647 0 \N \N f 0 \N 0 5641385 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 443751 2024-02-29 16:08:32.486 2024-02-29 16:18:33.89 Response finally play political tonight wear live. Bill hear Administration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific. https://example.com/ 19576 \N 443751 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.39722250355543 0 \N \N f 0 \N 0 181835476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443486 2024-02-29 13:48:54.806 2024-02-29 13:58:55.908 Increase agent management assume system Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vo https://example.com/ 659 \N 443486 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 7.52689413611428 0 \N \N f 0 \N 3 129602285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444044 2024-02-29 18:42:26.271 2024-02-29 18:52:27.883 Speech also his. White PM rather return. Indic Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit. https://example.com/ 11073 \N 444044 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4159929314953 0 \N \N f 0 \N 1 81707303 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443931 2024-02-29 17:41:03.86 2024-02-29 17:51:05.737 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save https://example.com/ 19583 443577 443577.443931 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0122066322225578 0 \N \N f 0 \N 1 72016259 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 440692 2024-02-27 15:41:43.598 2024-02-27 15:51:45.328 South amount subject easy office. Sea force thousand director yard some Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nMethod show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\n https://example.com/ 895 \N 440692 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.38499030398858 0 \N \N f 0 \N 76 175405608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444031 2024-02-29 18:38:53.718 2024-02-29 18:48:56.633 \N Near key among effort cover century https://example.com/ 20581 443668 443099.443668.444031 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8674319012241 0 \N \N f 0 \N 0 74224077 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 444080 2024-02-29 18:59:55.5 2024-02-29 19:09:56.881 \N Natural M https://example.com/ 977 444059 443799.443905.444045.444059.444080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.823667700022 0 \N \N f 0 \N 0 13251743 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444034 2024-02-29 18:39:44.874 2024-02-29 18:49:46.38 \N Recent work wife light adu https://example.com/ 20701 443944 443577.443944.444034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9613260501538 0 \N \N f 0 \N 0 212801126 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444063 2024-02-29 18:53:20.468 2024-02-29 19:03:21.923 Be human year girl treatment noth Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture. https://example.com/ 1008 \N 444063 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.2892119179993 0 \N \N f 0 \N 2 116706551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444064 2024-02-29 18:53:32.418 2024-02-29 19:03:34.167 \N Reach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nSmall newspaper answer adult morning. Effort https://example.com/ 16754 443712 443712.444064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7181718421574 0 \N \N f 0 \N 0 132445458 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444035 2024-02-29 18:39:51.596 2024-02-29 18:49:53.734 \N Role number law science. Sing fight use development different. Safe song head remain interview try https://example.com/ 20775 443856 443099.443856.444035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4765326445023 0 \N \N f 0 \N 0 11996445 0 f f \N \N \N \N 443099 \N 0 0 \N \N f \N 444079 2024-02-29 18:58:53.017 2024-02-29 19:08:54.361 \N Against involve moment myself without. Get chan https://example.com/ 20577 444063 444063.444079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6473896858032 0 \N \N f 0 \N 0 61538584 0 f f \N \N \N \N 444063 \N 0 0 \N \N f \N 441181 2024-02-27 22:42:03.776 2024-02-27 22:52:05.175 \N Every good d https://example.com/ 700 440863 440692.440863.441181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5215964007766 0 \N \N f 0 \N 0 200287520 0 f f \N \N \N \N 440692 \N 0 0 \N \N f \N 444047 2024-02-29 18:43:00.231 2024-02-29 18:53:01.897 \N Article discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose https://example.com/ 9921 444044 444044.444047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.95810564125465 0 \N \N f 0 \N 0 13096706 0 f f \N \N \N \N 444044 \N 0 0 \N \N f \N 444077 2024-02-29 18:58:18.27 2024-02-29 19:08:20.003 \N Move treatm https://example.com/ 20619 443836 443836.444077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8116719165747 0 \N \N f 0 \N 0 237995389 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444115 2024-02-29 19:26:59.324 2024-02-29 19:37:00.461 \N Begin kind newspaper game process fine https://example.com/ 5809 443799 443799.444115 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0250049396309 0 \N \N f 0 \N 0 110368014 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444255 2024-02-29 20:48:40.028 2024-02-29 20:58:41.227 \N Machine sell woman west bed risk. Region scientist test event hundred manager music proba https://example.com/ 1611 444168 444168.444255 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5483975498921 0 \N \N f 0 \N 2 15400694 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444074 2024-02-29 18:57:54.251 2024-02-29 19:07:55.608 \N Hundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nWhose top property well serv https://example.com/ 20602 444015 444015.444074 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.80295259198604 0 \N \N f 0 \N 1 190284579 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444076 2024-02-29 18:58:17.816 2024-02-29 19:08:18.992 Great how before current effort beca Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pi https://example.com/ 18816 \N 444076 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 16.7971436877626 0 \N \N f 0 \N 5 58134062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443992 2024-02-29 18:10:35.961 2024-02-29 18:20:37.115 \N Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available or https://example.com/ 8287 443673 443272.443673.443992 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.704388848152 0 \N \N f 0 \N 1 211323361 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444053 2024-02-29 18:45:54.702 2024-02-29 18:55:56.154 \N Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well https://example.com/ 16432 443545 443545.444053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4482811784516 0 \N \N f 0 \N 0 195466248 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 444199 2024-02-29 20:20:43.546 2024-02-29 20:30:45.125 \N Yes but truth go. Ge https://example.com/ 19976 444156 443794.444138.444156.444199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2047217401272 0 \N \N f 0 \N 0 158566502 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 444245 2024-02-29 20:42:06.5 2024-02-29 20:52:07.942 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Fo https://example.com/ 671 444230 444168.444220.444230.444245 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81786671343385 0 \N \N f 0 \N 0 151226070 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444081 2024-02-29 19:00:04.93 2024-02-29 19:10:06.378 Know son future suggest paper personal thes \N https://example.com/ 9418 \N 444081 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.02873501899627 0 \N \N f 0 \N 1 133701463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444082 2024-02-29 19:00:05.368 2024-02-29 19:00:10.503 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nWest possible modern office manage pe https://example.com/ 19038 444081 444081.444082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.782383491442182 0 \N \N f 0 \N 0 191346827 0 f f \N \N \N \N 444081 \N 0 0 \N \N f \N 443911 2024-02-29 17:32:09.988 2024-02-29 17:42:11.671 Reflect price head six peace company remain. These improve us if effo Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant. https://example.com/ 21457 \N 443911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0963350661575 0 \N \N f 0 \N 0 208322331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444161 2024-02-29 19:55:18.884 2024-02-29 20:05:20.757 \N According shake the attack guy development pressure. Police cultural area song she. Growth second https://example.com/ 8729 444114 444114.444161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77852710205723 0 \N \N f 0 \N 2 17946403 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 443921 2024-02-29 17:35:07.152 2024-02-29 17:45:08.883 \N Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nLetter both ability. Strong several point research general goal that https://example.com/ 909 443712 443712.443921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.5178471704679 0 \N \N f 0 \N 1 233654039 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444096 2024-02-29 19:10:52.233 2024-02-29 19:20:54.331 \N Young nothing just. Spring play ok region much. Tri https://example.com/ 18704 443799 443799.444096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7104006138653 0 \N \N f 0 \N 0 209933172 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443890 2024-02-29 17:22:18.155 2024-02-29 17:32:19.672 Class population stage though page Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture score gas hit idea. Allow build against various help water. Seven rise measure. Citizen hair after difficult public son. Central state this company glass. Feeling team https://example.com/ 2088 \N 443890 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 10.1755298466529 0 \N \N f 0 \N 0 65980980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443878 2024-02-29 17:13:09.792 2024-02-29 17:23:11.436 \N Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine conditio https://example.com/ 18321 443861 443799.443861.443878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.97569423326 0 \N \N f 0 \N 0 241856615 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 443955 2024-02-29 17:48:56.703 2024-02-29 17:58:58.045 \N Become popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee https://example.com/ 15146 443577 443577.443955 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1211042988452 0 \N \N f 0 \N 2 202635067 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444110 2024-02-29 19:24:28.04 2024-02-29 19:34:29.022 \N Affect director focus feeling whole best. Power when difficult impact foc https://example.com/ 20687 444097 444097.444110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.627236875063 0 \N \N f 0 \N 1 165934253 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444084 2024-02-29 19:01:10.868 2024-02-29 19:11:12.313 \N Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean https://example.com/ 10731 444076 444076.444084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.763649701655638 0 \N \N f 0 \N 2 112438485 0 f f \N \N \N \N 444076 \N 0 0 \N \N f \N 444090 2024-02-29 19:03:37.374 2024-02-29 19:13:38.373 \N Both tell huge fine yet fall crime. Imp https://example.com/ 12072 442784 442710.442784.444090 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.64065727263694 0 \N \N f 0 \N 0 2230156 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 443872 2024-02-29 17:06:37.104 2024-02-29 17:16:38.618 \N G https://example.com/ 20704 443577 443577.443872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3901264808647 0 \N \N f 0 \N 3 87338373 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444091 2024-02-29 19:04:04.265 2024-02-29 19:14:06.438 Sort thus staff hard network character product Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group. https://example.com/ 18828 \N 444091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2265296878371 0 \N \N f 0 \N 0 1332932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 442785 2024-02-28 22:10:59.919 2024-02-28 22:21:01.716 \N Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor s https://example.com/ 20754 442084 442084.442785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6016782814351 0 \N \N f 0 \N 0 102758233 0 f f \N \N \N \N 442084 \N 0 0 \N \N f \N 443389 2024-02-29 12:27:44.927 2024-02-29 12:37:46.31 \N Forget issue save education. Head of face begin our. D https://example.com/ 19810 441843 441843.443389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3833585032803 0 \N \N f 0 \N 0 199822786 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 444088 2024-02-29 19:02:30.961 2024-02-29 19:12:32.585 \N Anyon https://example.com/ 19417 444086 444076.444084.444086.444088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0065856946016 0 \N \N f 0 \N 0 138377138 0 f f \N \N \N \N 444076 \N 0 0 \N \N f \N 444089 2024-02-29 19:03:14.273 2024-02-29 19:13:15.905 \N Term growth industry election pr https://example.com/ 7877 444076 444076.444089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1990959890328 0 \N \N f 0 \N 0 239349355 0 f f \N \N \N \N 444076 \N 0 0 \N \N f \N 437022 2024-02-24 09:44:03.388 2024-02-24 09:54:04.568 \N Blue the that local central middle themselves effect. Concern seat pus https://example.com/ 14651 436981 436981.437022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2953304145845 0 \N \N f 0 \N 4 212629485 0 f f \N \N \N \N 436981 \N 0 0 \N \N f \N 444103 2024-02-29 19:14:33.904 2024-02-29 19:24:35.255 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nCollection https://example.com/ 20182 443712 443712.444103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.587476458949 0 \N \N f 0 \N 0 57482114 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444154 2024-02-29 19:51:01.367 2024-02-29 20:01:03.217 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong sin https://example.com/ 19909 444112 444112.444154 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1798061816694 0 \N \N f 0 \N 0 78981589 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444062 2024-02-29 18:52:48.726 2024-02-29 19:02:50.035 Keep third police section avoid down. Bank Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article https://example.com/ 960 \N 444062 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.1174566124908 0 \N \N f 0 \N 0 53102657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444101 2024-02-29 19:13:43.809 2024-02-29 19:23:45.346 \N Entire money chair between various plant. Cut year its little point project. Throughout but f https://example.com/ 9874 444007 443272.443808.443817.444007.444101 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.85852441363717 0 \N \N f 0 \N 0 177166699 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444141 2024-02-29 19:41:19.059 2024-02-29 19:51:20.42 \N Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resour https://example.com/ 7418 444132 444114.444132.444141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5116143552614 0 \N \N f 0 \N 0 12285809 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444128 2024-02-29 19:33:05.648 2024-02-29 19:43:06.874 \N Special identify senior differen https://example.com/ 617 435142 435142.444128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9614307690471 0 \N \N f 0 \N 0 244749950 0 f f \N \N \N \N 435142 \N 0 0 \N \N f \N 443787 2024-02-29 16:26:42.886 2024-02-29 16:36:43.906 \N Born million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nSell hundred b https://example.com/ 18526 443774 443593.443614.443774.443787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3131110109847 0 \N \N f 0 \N 6 69459679 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 444066 2024-02-29 18:54:17.822 2024-02-29 19:04:21.984 Politics or often interview. Chair value threat likely one. Evidence old resp Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove. https://example.com/ 15103 \N 444066 \N \N \N \N \N \N \N \N news \N ACTIVE \N 20.915195776639 0 \N \N f 0 \N 1 193302388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444125 2024-02-29 19:31:10.595 2024-02-29 19:41:12.484 \N Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. https://example.com/ 18731 427960 427960.444125 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0142884768277 0 \N \N f 0 \N 0 169417126 0 f f \N \N \N \N 427960 \N 0 0 \N \N f \N 444099 2024-02-29 19:11:52.106 2024-02-29 19:21:53.202 Source scientist hair let. Tough hit specific else. Task pretty several Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language. https://example.com/ 12122 \N 444099 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 29.0913366761346 0 \N \N f 0 \N 0 131942064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443746 2024-02-29 16:06:52.894 2024-02-29 16:16:53.976 \N East fast despite responsibility machine. Li https://example.com/ 1489 443691 441695.441851.441862.441878.443259.443691.443746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9651347739786 0 \N \N f 0 \N 1 115216911 0 f f \N \N \N \N 441695 \N 0 0 \N \N f \N 444123 2024-02-29 19:30:55.341 2024-02-29 19:40:56.385 \N Whether special arm economy house. Us six floor break huge summer. Show financial long i https://example.com/ 16633 437727 437727.444123 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7889047977267 0 \N \N f 0 \N 0 61157595 0 f f \N \N \N \N 437727 \N 0 0 \N \N f \N 442024 2024-02-28 14:21:55.871 2024-02-28 14:31:58.266 \N Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next https://example.com/ 20254 442012 441816.441950.442012.442024 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.6356792401951 0 \N \N f 0 \N 0 171258966 0 f f \N \N \N \N 441816 \N 0 0 \N \N f \N 444108 2024-02-29 19:23:21.882 2024-02-29 19:33:24.41 Wide hundred paper early. Together third attorney entire. And charge happy proce Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact. https://example.com/ 1051 \N 444108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.389777443403 0 \N \N f 0 \N 0 86840562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444015 2024-02-29 18:20:57.354 2024-02-29 18:30:58.914 Who collection suggest practice. Walk them Republican. Address investmen Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nQuest https://example.com/ 12049 \N 444015 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.7662848715658 0 \N \N f 0 \N 15 163192389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443662 2024-02-29 15:11:43.239 2024-02-29 15:21:45.656 \N Majority foot s https://example.com/ 17944 413897 413523.413534.413592.413595.413640.413647.413889.413897.443662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6029524527467 0 \N \N f 0 \N 0 37739591 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 443774 2024-02-29 16:20:01.006 2024-02-29 16:30:02.209 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry https://example.com/ 16753 443614 443593.443614.443774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.389057152233256 0 \N \N f 0 \N 7 98193357 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 443059 2024-02-29 04:04:36.176 2024-02-29 04:14:37.657 \N Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. https://example.com/ 1658 441843 441843.443059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27372963392793 0 \N \N f 0 \N 0 197735787 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443923 2024-02-29 17:35:40.974 2024-02-29 17:45:41.847 \N New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success https://example.com/ 2342 443799 443799.443923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9932144558904 0 \N \N f 0 \N 1 27099511 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444158 2024-02-29 19:52:28.524 2024-02-29 20:02:29.698 \N Development political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product stud https://example.com/ 19512 443372 443372.444158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04400749408434 0 \N \N f 0 \N 1 58038208 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 442633 2024-02-28 20:09:25.942 2024-02-28 20:19:27.125 \N Factor song science administration defense radio. Pay eve https://example.com/ 21446 441843 441843.442633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5652725077906 0 \N \N f 0 \N 1 240522961 0 f f \N \N \N \N 441843 \N 0 0 \N \N f \N 443956 2024-02-29 17:49:11.23 2024-02-29 17:59:13.206 \N Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class reso https://example.com/ 5455 443627 443617.443625.443627.443956 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8006751191618 0 \N \N f 0 \N 1 178300955 0 f f \N \N \N \N 443617 \N 0 0 \N \N f \N 443659 2024-02-29 15:07:45.28 2024-02-29 15:17:46.504 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value g https://example.com/ 13046 443545 443545.443659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7352030341249 0 \N \N f 0 \N 2 7879349 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 444061 2024-02-29 18:52:32.838 2024-02-29 19:02:33.811 \N Speak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carr https://example.com/ 630 443799 443799.444061 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1552816491225 0 \N \N f 0 \N 0 180809582 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444109 2024-02-29 19:24:23.58 2024-02-29 19:34:24.869 \N Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nFigure foreign https://example.com/ 18393 418100 418100.444109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6522580087289 0 \N \N f 0 \N 1 18274684 0 f f \N \N \N \N 418100 \N 0 0 \N \N f \N 444106 2024-02-29 19:19:12.592 2024-02-29 19:29:14.571 \N Board Mr bar white https://example.com/ 7675 443919 443919.444106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.968271329129 0 \N \N f 0 \N 0 188109600 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444072 2024-02-29 18:57:23.942 2024-02-29 19:07:25.263 \N Method show window brother. Buy right Republican https://example.com/ 17446 443794 443794.444072 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8012724529942 0 \N \N f 0 \N 0 54907066 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 444104 2024-02-29 19:16:52.713 2024-02-29 19:26:54.327 \N Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nBoth peace drug most bring institution. Mean become curr https://example.com/ 7766 443799 443799.444104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.96157721955872 0 \N \N f 0 \N 0 241242769 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444126 2024-02-29 19:31:59.076 2024-02-29 19:42:00.145 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure eco https://example.com/ 15938 418119 418100.418119.444126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.09023029267926 0 \N \N f 0 \N 0 44252459 0 f f \N \N \N \N 418100 \N 0 0 \N \N f \N 444172 2024-02-29 20:01:43.683 2024-02-29 20:11:45.091 \N Clear suggest true gas suddenly project. https://example.com/ 2309 434440 434440.444172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63135799873086 0 \N \N f 0 \N 0 60232795 0 f f \N \N \N \N 434440 \N 0 0 \N \N f \N 444188 2024-02-29 20:15:37.985 2024-03-01 06:15:47.005 \N Per over executive. https://example.com/ 10979 444015 444015.444188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1338031440457 0 \N \N f 0 \N 1 149212972 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 3396 2021-10-12 18:31:35.142 2023-10-01 23:52:57.149 Even hot political lit Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also https://example.com/ 9171 \N 3396 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.3190075490591 0 \N \N f 0 \N 2 144353054 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444056 2024-02-29 18:47:26.84 2024-02-29 18:57:28.216 Blood very whom mean technology contain rather. Understand staff heavy finis Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business. https://example.com/ 20180 \N 444056 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.1222603667206 0 \N \N f 0 \N 0 247637276 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 434440 2024-02-22 00:30:49.354 2024-02-22 00:40:50.973 Person part phone rich. Cause thus inside back c Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study https://example.com/ 7510 \N 434440 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 7.36028572078276 0 \N \N f 0 \N 19 10035572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444140 2024-02-29 19:41:08.988 2024-02-29 19:51:10.807 \N Behavior safe concern street crim https://example.com/ 15161 444100 444100.444140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6818271921846 0 \N \N f 0 \N 0 157769834 0 f f \N \N \N \N 444100 \N 0 0 \N \N f \N 444100 2024-02-29 19:12:24.746 2024-02-29 19:22:26.293 Deal could skin some. Th Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibil https://example.com/ 669 \N 444100 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 11.3046036535752 0 \N \N f 0 \N 1 205551388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444120 2024-02-29 19:29:08.989 2024-02-29 19:39:10.49 Should doctor pressure maybe six fight. Mac Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. https://example.com/ 18784 \N 444120 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 17.3476730377561 0 \N \N f 0 \N 0 171260681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444190 2024-02-29 20:16:29.716 2024-02-29 20:26:31.137 \N Describe modern fund cultural realize bag. G https://example.com/ 686 444185 444168.444185.444190 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6092235016836 0 \N \N f 0 \N 0 66094766 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444143 2024-02-29 19:42:44.328 2024-02-29 19:52:45.751 \N Until must summer international. Wo https://example.com/ 1495 444132 444114.444132.444143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.841259706475945 0 \N \N f 0 \N 9 233621524 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 3401 2021-10-12 20:14:48.072 2023-10-01 23:52:57.17 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Someth https://example.com/ 5825 3400 3397.3398.3400.3401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.352855346607 0 \N \N f 0 \N 0 135796795 0 f f \N \N \N \N 3397 \N 0 0 \N \N f \N 444068 2024-02-29 18:56:12.553 2024-02-29 19:06:14.467 Water actually point similar. Box war specific a over marriage evening Young nothing just. Spring play ok region much. Trial single as again price house painting. Card anyone return rich. Staff involve exactly back enough through culture. Open find day card heavy whole. Enter service skill fight international treat. He herself market man. Bad community change in year.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve https://example.com/ 20099 \N 444068 \N \N \N \N \N \N \N \N security \N ACTIVE \N 16.9718976280394 0 \N \N f 0 \N 2 84782185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444193 2024-02-29 20:18:57.607 2024-02-29 20:28:59.379 \N Technology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk sou https://example.com/ 10771 444007 443272.443808.443817.444007.444193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04068669269888 0 \N \N f 0 \N 0 192523885 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444134 2024-02-29 19:38:57.194 2024-02-29 19:48:58.601 \N Doctor operation because training lose meeting wester https://example.com/ 9350 444063 444063.444134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62419865780084 0 \N \N f 0 \N 0 29737730 0 f f \N \N \N \N 444063 \N 0 0 \N \N f \N 444155 2024-02-29 19:51:27.087 2024-02-29 20:01:28.399 \N Physical woman wait smile him. https://example.com/ 20811 444112 444112.444155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6874318926904 0 \N \N f 0 \N 1 238921343 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444174 2024-02-29 20:04:37.394 2024-02-29 20:14:39.501 \N Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil co https://example.com/ 21589 444155 444112.444155.444174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8736544736377 0 \N \N f 0 \N 0 203596940 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444198 2024-02-29 20:20:13.183 2024-02-29 20:30:15.22 \N Never hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also unt https://example.com/ 17227 443799 443799.444198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.03841119817983 0 \N \N f 0 \N 0 37010459 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444196 2024-02-29 20:20:01.783 2024-02-29 20:20:07.355 \N Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. La https://example.com/ 12930 73097 73097.444196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3416959321182 0 \N \N f 0 \N 0 234922362 0 f f \N \N \N \N 73097 \N 0 0 \N \N f \N 444095 2024-02-29 19:08:13.93 2024-02-29 19:18:15.244 Decade tend week light radio. Anyone less defense us. Couple office reality b Lead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record. https://example.com/ 18673 \N 444095 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.6661691735125 0 \N \N f 0 \N 0 13215786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444131 2024-02-29 19:36:15.501 2024-02-29 19:46:19.51 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Sout https://example.com/ 1603 444097 444097.444131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8284861620525 0 \N \N f 0 \N 0 5988140 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444157 2024-02-29 19:52:14.906 2024-02-29 20:02:16.444 \N Any tend power space f https://example.com/ 634 444127 444127.444157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6385612070955 0 \N \N f 0 \N 0 225301590 0 f f \N \N \N \N 444127 \N 0 0 \N \N f \N 444145 2024-02-29 19:43:43.252 2024-02-29 19:53:44.899 \N Production per can TV ahead million. https://example.com/ 15273 443486 443486.444145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4219808313651 0 \N \N f 0 \N 0 147393701 0 f f \N \N \N \N 443486 \N 0 0 \N \N f \N 444133 2024-02-29 19:38:39.044 2024-02-29 19:48:40.875 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. La https://example.com/ 5565 444015 444015.444133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3624125942667 0 \N \N f 0 \N 0 14553824 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 443903 2024-02-29 17:29:38.116 2024-02-29 17:39:39.433 \N Various discussion light p https://example.com/ 20564 443899 443545.443616.443899.443903 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1966752938676 0 \N \N f 0 \N 2 64324191 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 444181 2024-02-29 20:13:18.491 2024-02-29 20:23:19.331 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently https://example.com/ 15491 443799 443799.444181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1781782016676 0 \N \N f 0 \N 0 217927361 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444180 2024-02-29 20:12:06.289 2024-02-29 20:22:07.723 \N Maybe seem partic https://example.com/ 11523 443919 443919.444180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4967239648637 0 \N \N f 0 \N 0 219255616 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444124 2024-02-29 19:31:07.857 2024-02-29 19:41:09.782 \N Gas evening morning do of. Development executive like short physical https://example.com/ 1286 444036 444036.444124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3393250900008 0 \N \N f 0 \N 0 166647417 0 f f \N \N \N \N 444036 \N 0 0 \N \N f \N 444137 2024-02-29 19:39:36.514 2024-02-29 19:49:38.121 \N Provide difference relationship. Factor view stock organization meet head crime ok. https://example.com/ 12561 444112 444112.444137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7818147762178 0 \N \N f 0 \N 4 218525359 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444142 2024-02-29 19:41:41.358 2024-02-29 19:51:42.628 \N Though or meet hote https://example.com/ 20023 443905 443799.443905.444142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.63703926924857 0 \N \N f 0 \N 0 228821128 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444112 2024-02-29 19:24:53.02 2024-02-29 19:34:54.34 Inside nor professional partner Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend https://example.com/ 18311 \N 444112 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 25.3187259876559 0 \N \N f 0 \N 11 163283110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444163 2024-02-29 19:55:56.154 2024-02-29 20:05:57.4 \N Policy trade before drop particular upon scien https://example.com/ 15858 443919 443919.444163 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1793149640036 0 \N \N f 0 \N 0 226935115 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444127 2024-02-29 19:32:57.154 2024-02-29 19:42:58.786 Man talk arm player scene reflect. Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby. https://example.com/ 1712 \N 444127 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9705777777302 0 \N \N f 0 \N 2 170355889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444164 2024-02-29 19:56:13.318 2024-02-29 20:06:14.664 \N Stock already suddenly east interesting guess. Indeed court affect https://example.com/ 18274 444118 444112.444118.444164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7290539256638 0 \N \N f 0 \N 0 16045112 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444160 2024-02-29 19:54:42.82 2024-02-29 20:04:44.859 \N Health recently away many who girl admit. Value serve iden https://example.com/ 5779 444137 444112.444137.444160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2506385013884 0 \N \N f 0 \N 0 161740620 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444135 2024-02-29 19:39:11.406 2024-02-29 19:49:12.458 \N Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer edu https://example.com/ 1038 443898 443799.443898.444135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7089163243406 0 \N \N f 0 \N 0 237005479 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444144 2024-02-29 19:43:37.049 2024-02-29 19:53:39.188 \N Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier stil https://example.com/ 9290 444071 443593.443614.443774.443787.444071.444144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2278020327264 0 \N \N f 0 \N 1 119112559 0 f f \N \N \N \N 443593 \N 0 0 \N \N f \N 443938 2024-02-29 17:42:55.472 2024-02-29 17:52:56.963 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer https://example.com/ 2335 443799 443799.443938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.155622327623 0 \N \N f 0 \N 0 2942692 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 3565 2021-10-18 21:33:15.534 2023-10-01 23:53:01.381 Hotel blood co Opportunity hospital a https://example.com/ 8498 \N 3565 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0729873230018 0 \N \N f 0 \N 1 163753633 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444175 2024-02-29 20:05:02.236 2024-02-29 20:15:04.539 \N Both peace drug most bring institution. Mean become current address. West us into. Theory s https://example.com/ 1261 444171 444015.444171.444175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8391313995659 0 \N \N f 0 \N 1 173267452 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444147 2024-02-29 19:45:04.622 2024-02-29 19:55:06.196 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nPush hair spec https://example.com/ 17091 443799 443799.444147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8683605040651 0 \N \N f 0 \N 0 102664702 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444167 2024-02-29 19:58:41.548 2024-02-29 20:08:54.014 \N Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notic https://example.com/ 896 430490 430490.444167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7604298355684 0 \N \N f 0 \N 0 212309943 0 f f \N \N \N \N 430490 \N 0 0 \N \N f \N 444151 2024-02-29 19:46:52.455 2024-02-29 19:56:53.592 \N Off class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nEnough b https://example.com/ 21201 443712 443712.444151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2399412963316 0 \N \N f 0 \N 1 106005572 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444200 2024-02-29 20:21:27.805 2024-02-29 20:31:29.417 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch https://example.com/ 12160 444185 444168.444185.444200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0591751136628 0 \N \N f 0 \N 1 210703535 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444191 2024-02-29 20:17:12.849 2024-02-29 20:27:14.952 Maybe seem particular stand blood source. Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine o https://example.com/ 20861 \N 444191 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.9044470231501 0 \N \N f 0 \N 0 247894109 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444182 2024-02-29 20:13:33.514 2024-02-29 20:23:34.93 \N Firm study certainly point. Ask major born want physical nice. On imagine personal spring care candi https://example.com/ 20099 444175 444015.444171.444175.444182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0980808032566 0 \N \N f 0 \N 0 126815788 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444177 2024-02-29 20:08:30.357 2024-02-29 20:18:31.729 \N Shake pretty eat probably pretty stop time. Everything write https://example.com/ 19471 443272 443272.444177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.042770551887 0 \N \N f 0 \N 1 169233469 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444169 2024-02-29 20:00:06.393 2024-02-29 20:10:07.645 Probably age \N https://example.com/ 18507 \N 444169 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.68988445767039 0 \N \N f 0 \N 1 58254053 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444170 2024-02-29 20:00:06.758 2024-02-29 20:10:09.648 \N Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil ev https://example.com/ 1658 444169 444169.444170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7893460284019 0 \N \N f 0 \N 0 53504761 0 f f \N \N \N \N 444169 \N 0 0 \N \N f \N 444204 2024-02-29 20:22:04.82 2024-02-29 20:32:07.222 \N Side project push give final mind smile. This my culture upon th https://example.com/ 2224 444097 444097.444204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3228458353239 0 \N \N f 0 \N 0 80795594 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444171 2024-02-29 20:01:27.841 2024-02-29 20:11:28.916 \N Morning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail l https://example.com/ 18995 444015 444015.444171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9106775527504 0 \N \N f 0 \N 2 166424394 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 443929 2024-02-29 17:38:45.929 2024-02-29 17:48:47.608 \N Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. https://example.com/ 9290 443624 443583.443624.443929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7991414290888 0 \N \N f 0 \N 0 71405571 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 444185 2024-02-29 20:15:03.484 2024-02-29 20:25:05.092 \N Detail economy still boy fine in series. Bri https://example.com/ 1647 444168 444168.444185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8467817765394 0 \N \N f 0 \N 3 217561657 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444165 2024-02-29 19:57:58.651 2024-02-29 20:08:00.384 Support structure season energy group Best affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nRich ac https://example.com/ 8472 \N 444165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.80379981688062 0 \N \N f 0 \N 3 101225179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444186 2024-02-29 20:15:30.342 2024-02-29 20:25:31.485 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship ti https://example.com/ 20663 444168 444168.444186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9263704993971 0 \N \N f 0 \N 0 98675412 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444187 2024-02-29 20:15:33.801 2024-02-29 20:25:35.468 \N Off class property ok t https://example.com/ 19303 444168 444168.444187 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5803825525779 0 \N \N f 0 \N 3 36281177 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444212 2024-02-29 20:25:41.841 2024-02-29 20:35:43.34 \N Finish only air https://example.com/ 7675 444194 444168.444194.444212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3747644975847 0 \N \N f 0 \N 0 67512625 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444202 2024-02-29 20:21:54.226 2024-02-29 20:31:56.198 \N Race civil today. Brother https://example.com/ 9433 443755 443755.444202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1764007567565 0 \N \N f 0 \N 0 245840699 0 f f \N \N \N \N 443755 \N 0 0 \N \N f \N 444203 2024-02-29 20:22:00.513 2024-02-29 20:32:01.132 \N After way challenge. Nothing pro https://example.com/ 2204 444187 444168.444187.444203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3794592959886 0 \N \N f 0 \N 1 181377264 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444098 2024-02-29 19:11:07.163 2024-02-29 19:21:08.64 \N Commercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black n https://example.com/ 18524 444092 443794.443913.444092.444098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7130982254923 0 \N \N f 0 \N 1 34758942 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 444149 2024-02-29 19:45:36.762 2024-02-29 19:55:38.245 Big field certainly community. North marriage animal whose health un Responsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least. https://example.com/ 16638 \N 444149 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 1.08399804982298 0 \N \N f 0 \N 0 20848632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444240 2024-02-29 20:40:01.542 2024-02-29 20:50:03.246 \N Cover well feel yes crime term final. P https://example.com/ 21357 443781 443295.443781.444240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9054990271506 0 \N \N f 0 \N 0 104498493 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444105 2024-02-29 19:18:29.633 2024-02-29 19:28:31.093 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nWe law local blac https://example.com/ 19815 443923 443799.443923.444105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4940688020845 0 \N \N f 0 \N 0 132899382 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444216 2024-02-29 20:27:07.414 2024-02-29 20:37:08.912 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material https://example.com/ 21421 444127 444127.444216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9933575524239 0 \N \N f 0 \N 0 229953636 0 f f \N \N \N \N 444127 \N 0 0 \N \N f \N 444229 2024-02-29 20:34:40.076 2024-02-29 20:44:41.696 \N Order care many fire https://example.com/ 15094 444195 444168.444195.444229 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68173732362769 0 \N \N f 0 \N 0 174207067 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444243 2024-02-29 20:41:45.372 2024-02-29 20:51:47.186 \N Possible serious black institution source fund. Player use peace as. Teac https://example.com/ 636 439562 439562.444243 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5148490338595 0 \N \N f 0 \N 0 54393072 0 f f \N \N \N \N 439562 \N 0 0 \N \N f \N 444226 2024-02-29 20:32:16.765 2024-02-29 20:42:17.768 \N Ten answer natural star r https://example.com/ 9184 444187 444168.444187.444226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4716464811942 0 \N \N f 0 \N 0 234193600 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444225 2024-02-29 20:31:57.956 2024-02-29 20:41:59.548 \N Job stage use materi https://example.com/ 20687 444168 444168.444225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8153467955733 0 \N \N f 0 \N 0 203445586 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444228 2024-02-29 20:33:32.323 2024-02-29 20:43:33.519 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment bro https://example.com/ 7966 444184 444168.444176.444184.444228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5618590496267 0 \N \N f 0 \N 0 118610142 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444184 2024-02-29 20:14:43.353 2024-02-29 20:24:45.301 \N Factor song science administration defense radio. Pay everybody co https://example.com/ 15386 444176 444168.444176.444184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9988304824738 0 \N \N f 0 \N 4 199557411 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444092 2024-02-29 19:06:12.529 2024-02-29 19:16:14.826 \N Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nHuman guy both. Return once place four https://example.com/ 4304 443913 443794.443913.444092 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5144708069234 0 \N \N f 0 \N 2 22291269 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 443913 2024-02-29 17:32:38.525 2024-02-29 17:42:39.723 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball https://example.com/ 756 443794 443794.443913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.660627515635248 0 \N \N f 0 \N 3 13909974 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 444235 2024-02-29 20:37:12.426 2024-02-29 20:47:13.959 \N Service source https://example.com/ 20201 444201 444114.444161.444201.444235 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8913986313431 0 \N \N f 0 \N 0 511819 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444201 2024-02-29 20:21:38.57 2024-02-29 20:31:39.779 \N Onto although Democrat mind significant trade hair. Product foreign politic https://example.com/ 4776 444161 444114.444161.444201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6785470849625 0 \N \N f 0 \N 1 45754014 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444130 2024-02-29 19:34:28.468 2024-02-29 19:44:29.53 \N Tell difference pattern carry join. Size https://example.com/ 20094 444097 444097.444130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4066284765777 0 \N \N f 0 \N 0 131849394 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 443893 2024-02-29 17:24:17.045 2024-02-29 17:34:18.243 \N Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wond https://example.com/ 652 443712 443712.443893 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9345975823185 0 \N \N f 0 \N 1 193506928 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444119 2024-02-29 19:28:36.546 2024-02-29 19:38:37.385 \N Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style a https://example.com/ 16154 443973 443919.443973.444119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.90789751255587 0 \N \N f 0 \N 1 154829677 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444250 2024-02-29 20:46:22.938 2024-02-29 20:56:23.892 \N Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single co https://example.com/ 10393 444184 444168.444176.444184.444250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.94756648591273 0 \N \N f 0 \N 2 202156973 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444129 2024-02-29 19:33:13.405 2024-02-29 19:43:14.314 \N Wrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. W https://example.com/ 11165 444102 444102.444129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.03654798892629 0 \N \N f 0 \N 0 201134089 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 444239 2024-02-29 20:39:57.962 2024-02-29 20:49:59.225 \N List professional https://example.com/ 19652 442997 442997.444239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83186626678722 0 \N \N f 0 \N 0 206942850 0 f f \N \N \N \N 442997 \N 0 0 \N \N f \N 444221 2024-02-29 20:30:56.746 2024-02-29 20:40:57.863 \N Already reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nEveryone usually https://example.com/ 897 443372 443372.444221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6322737686604 0 \N \N f 0 \N 0 241763169 0 f f \N \N \N \N 443372 \N 0 0 \N \N f \N 444256 2024-02-29 20:48:52.71 2024-02-29 20:58:53.71 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wea https://example.com/ 1236 444250 444168.444176.444184.444250.444256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.64098705104816 0 \N \N f 0 \N 1 85170396 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 3568 2021-10-18 22:53:57.793 2023-10-01 23:53:01.396 \N At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue press https://example.com/ 8796 3562 3562.3568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2637208714876 0 \N \N f 0 \N 1 53891419 0 f f \N \N \N \N 3562 \N 0 0 \N \N f \N 444293 2024-02-29 21:05:24.019 2024-02-29 21:15:25.335 Return agreement happy health option. Someone collection raise put. Ok price Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nBillion here large g https://example.com/ 20812 \N 444293 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 28.7152238500857 0 \N \N f 0 \N 0 208824838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443904 2024-02-29 17:29:57.212 2024-02-29 17:39:58.446 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nSomething black staff. Glass hospit https://example.com/ 19148 443834 443712.443834.443904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6808801253352 0 \N \N f 0 \N 1 44340951 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444254 2024-02-29 20:48:25.034 2024-02-29 20:58:27.291 \N Great idea age friend. Its financial fight need. Item som https://example.com/ 12356 443989 443272.443595.443989.444254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.439121966819 0 \N \N f 0 \N 0 193215918 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444267 2024-02-29 20:53:44.953 2024-02-29 21:03:47.24 \N Hotel blood consumer spend college. Know bank mind political b https://example.com/ 16929 441087 441087.444267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1816352425847 0 \N \N f 0 \N 0 214284391 0 f f \N \N \N \N 441087 \N 0 0 \N \N f \N 444247 2024-02-29 20:43:52.394 2024-02-29 20:53:53.534 \N Heavy spring happy city star https://example.com/ 658 444168 444168.444247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5811074647906 0 \N \N f 0 \N 1 9545834 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444251 2024-02-29 20:47:22.771 2024-02-29 20:57:24.26 \N True quickly government finish region. Discuss positive responsi https://example.com/ 18930 444246 444015.444246.444251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.02876151590259 0 \N \N f 0 \N 1 24926603 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444307 2024-02-29 21:18:58.703 2024-02-29 21:29:00.166 \N Return agreement happy health option. Someone collection raise put. Ok price international bas https://example.com/ 16706 444297 442710.442848.444297.444307 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18445946360116 0 \N \N f 0 \N 0 77371280 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 444299 2024-02-29 21:11:33.21 2024-02-29 21:21:35.43 \N Decide up red either war deep https://example.com/ 20840 436763 436683.436763.444299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.023784797638 0 \N \N f 0 \N 0 242736498 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444298 2024-02-29 21:08:00.438 2024-02-29 21:18:02.398 \N Prevent arm food order. Industry receive d https://example.com/ 17446 443545 443545.444298 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6664788828464 0 \N \N f 0 \N 0 47352744 0 f f \N \N \N \N 443545 \N 0 0 \N \N f \N 444263 2024-02-29 20:51:25.855 2024-02-29 21:01:27.413 \N Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election bre https://example.com/ 20264 444097 444097.444263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.59833387733 0 \N \N f 0 \N 0 193019584 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444214 2024-02-29 20:26:28.758 2024-02-29 20:36:29.994 \N Sti https://example.com/ 13854 444210 444168.444210.444214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.15318147256278 0 \N \N f 0 \N 0 237791878 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444270 2024-02-29 20:55:03.455 2024-02-29 21:05:05.393 \N Plant strong west enjoy. Those everything may dark face. https://example.com/ 11776 444266 444168.444261.444266.444270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8894706483222 0 \N \N f 0 \N 4 120297260 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444269 2024-02-29 20:54:49.614 2024-02-29 21:04:51.406 \N There ev https://example.com/ 18017 444264 444162.444264.444269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.183775965714 0 \N \N f 0 \N 0 222778580 0 f f \N \N \N \N 444162 \N 0 0 \N \N f \N 444257 2024-02-29 20:49:18.951 2024-02-29 20:59:20.047 \N Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key https://example.com/ 21591 443295 443295.444257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4055338093389 0 \N \N f 0 \N 0 121471427 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444194 2024-02-29 20:19:13.63 2024-02-29 20:29:14.71 \N Sell attention budget https://example.com/ 9107 444168 444168.444194 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1829930053677 0 \N \N f 0 \N 1 181907306 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444272 2024-02-29 20:55:47.008 2024-02-29 21:05:49.085 \N Billion deep other first financial sometimes. Successful onto or. Child approach decide for. B https://example.com/ 18330 444168 444168.444272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1382097992283 0 \N \N f 0 \N 0 241080066 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 3687 2021-10-20 23:07:26.683 2023-10-01 23:53:24.966 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nMain teacher local. Western rate bl https://example.com/ 632 3683 3674.3677.3679.3681.3682.3683.3687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5667035867435 0 \N \N f 0 \N 7 1312780 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 444246 2024-02-29 20:42:59.404 2024-02-29 20:53:01.547 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nAny tend power space fund inside evidence. Member century indeed impact contain eye eas https://example.com/ 11819 444015 444015.444246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8349237459112 0 \N \N f 0 \N 2 176432095 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444252 2024-02-29 20:47:27.48 2024-02-29 20:57:29.391 \N Billion deep other first financial https://example.com/ 10934 443919 443919.444252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.402617572319 0 \N \N f 0 \N 0 210999805 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444146 2024-02-29 19:44:59.912 2024-02-29 19:55:01.802 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow act https://example.com/ 7766 444111 443745.444083.444111.444146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8475101949625 0 \N \N f 0 \N 1 138819510 0 f f \N \N \N \N 443745 \N 0 0 \N \N f \N 441087 2024-02-27 20:58:12.589 2024-02-27 21:08:13.795 Leave relationship rule rich dra Myself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nBegin kind newspaper game process fine democrat https://example.com/ 15941 \N 441087 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 27.0720529363897 0 \N \N f 0 \N 20 141694622 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444311 2024-02-29 21:25:26.469 2024-02-29 21:35:27.778 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine grou https://example.com/ 15728 442867 442751.442856.442867.444311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4427092397436 0 \N \N f 0 \N 0 44193066 0 f f \N \N \N \N 442751 \N 0 0 \N \N f \N 444244 2024-02-29 20:41:59.507 2024-02-29 20:52:01.365 \N Hotel remember debate strategy. Discus https://example.com/ 12097 444102 444102.444244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7661004895189 0 \N \N f 0 \N 0 149883659 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 3689 2021-10-20 23:21:12.053 2023-10-01 23:53:24.98 \N Own machine table garden necessary. Go sea kitchen among some buy https://example.com/ 19105 3687 3674.3677.3679.3681.3682.3683.3687.3689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2767181314826 0 \N \N f 0 \N 0 111887583 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 3693 2021-10-20 23:35:51.007 2023-10-01 23:53:25.22 \N Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such https://example.com/ 14939 3687 3674.3677.3679.3681.3682.3683.3687.3693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7254377057747 0 \N \N f 0 \N 5 90641293 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 444266 2024-02-29 20:52:59.596 2024-02-29 21:03:01.221 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue https://example.com/ 15536 444261 444168.444261.444266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0156047133324 0 \N \N f 0 \N 5 77747607 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444280 2024-02-29 20:59:47.187 2024-02-29 21:09:50.213 \N Tree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nTrip improve born https://example.com/ 19572 444270 444168.444261.444266.444270.444280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.351360714131452 0 \N \N f 0 \N 0 225275618 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444215 2024-02-29 20:26:30.664 2024-02-29 20:36:32.007 \N Power billion method wide. Person play play thousand seem crime crime https://example.com/ 13174 444203 444168.444187.444203.444215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8698105578492 0 \N \N f 0 \N 0 159662871 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444273 2024-02-29 20:56:08.76 2024-02-29 21:06:11.363 \N Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company https://example.com/ 19910 397309 397309.444273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0319758547943 0 \N \N f 0 \N 0 52519299 0 f f \N \N \N \N 397309 \N 0 0 \N \N f \N 444279 2024-02-29 20:59:32.213 2024-02-29 21:09:33.188 Factor song science administration defense radio. Cell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound do https://example.com/ 3478 \N 444279 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.3107109217994 0 \N \N f 0 \N 0 117791976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444211 2024-02-29 20:25:36.958 2024-02-29 20:35:39.286 \N Hotel remember debate strategy. Discussion sel https://example.com/ 14795 444200 444168.444185.444200.444211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4427916919616 0 \N \N f 0 \N 0 208821346 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 3731 2021-10-21 13:47:03.11 2023-10-01 23:53:26.296 \N Focus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart gov https://example.com/ 4570 3721 3490.3718.3721.3731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.88364285642375 0 \N \N f 0 \N 0 147235258 0 f f \N \N \N \N 3490 \N 0 0 \N \N f \N 444268 2024-02-29 20:54:36.636 2024-02-29 21:04:42.69 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement hal https://example.com/ 6741 437727 437727.444268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8810110986658 0 \N \N f 0 \N 0 122231023 0 f f \N \N \N \N 437727 \N 0 0 \N \N f \N 437727 2024-02-24 22:21:26.894 2024-02-24 22:31:28.538 Music energy specific plan financ She under certainly state. Left rest everything he https://example.com/ 1320 \N 437727 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 28.0705180382285 0 \N \N f 0 \N 4 202894183 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444274 2024-02-29 20:56:32.309 2024-02-29 21:06:33.88 \N Always friend price benefit. Reflect seem help none truth myself r https://example.com/ 676 443577 443577.444274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78406696290663 0 \N \N f 0 \N 1 193205310 0 f f \N \N \N \N 443577 \N 0 0 \N \N f \N 444284 2024-02-29 21:00:57.291 2024-02-29 21:10:59.568 \N Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon ar https://example.com/ 3377 444153 444102.444153.444284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5407775008216 0 \N \N f 0 \N 0 72428666 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 444312 2024-02-29 21:32:07.453 2024-02-29 21:42:09.933 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearl https://example.com/ 15560 444300 443794.444138.444300.444312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6102223446123 0 \N \N f 0 \N 0 195041469 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 3762 2021-10-21 20:10:17.815 2023-10-01 23:53:29.17 \N Site coach strong dark while new s https://example.com/ 19037 3760 3758.3760.3762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.918335841489 0 \N \N f 0 \N 1 247353264 0 f f \N \N \N \N 3758 \N 0 0 \N \N f \N 436884 2024-02-24 03:36:53.721 2024-02-24 03:46:55.927 \N Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nAbout easy answer glass. Fire who place approach. https://example.com/ 20464 436853 436683.436833.436853.436884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9605268859499 0 \N \N f 0 \N 5 57682109 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444283 2024-02-29 21:00:06.193 2024-02-29 21:00:11.606 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exa https://example.com/ 14074 444282 444282.444283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2190176574733 0 \N \N f 0 \N 0 44291668 0 f f \N \N \N \N 444282 \N 0 0 \N \N f \N 444291 2024-02-29 21:04:03.195 2024-02-29 21:14:05.434 \N Area just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager https://example.com/ 21131 436735 436683.436735.444291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2455765124343 0 \N \N f 0 \N 0 185860863 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444316 2024-02-29 21:40:37.052 2024-02-29 21:50:38.198 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study pa https://example.com/ 19459 444304 443919.443953.444139.444304.444316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1911107350029 0 \N \N f 0 \N 1 88379873 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444260 2024-02-29 20:50:15.112 2024-02-29 21:00:16.841 \N As quality own off arm r https://example.com/ 8074 444102 444102.444260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2022075104555 0 \N \N f 0 \N 0 145251391 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 444230 2024-02-29 20:35:24.836 2024-02-29 20:45:25.579 \N Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead https://example.com/ 19094 444220 444168.444220.444230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4441965129761 0 \N \N f 0 \N 1 57991273 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444302 2024-02-29 21:15:49.828 2024-02-29 21:25:51.583 \N Boy force agency change score no job. Memory stay across soci https://example.com/ 8416 444146 443745.444083.444111.444146.444302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29182648775167 0 \N \N f 0 \N 0 175782914 0 f f \N \N \N \N 443745 \N 0 0 \N \N f \N 3767 2021-10-21 21:31:27.713 2023-10-01 23:53:29.199 \N Shake pretty eat probably pretty sto https://example.com/ 1326 3762 3758.3760.3762.3767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3175215217197 0 \N \N f 0 \N 0 181178759 0 f f \N \N \N \N 3758 \N 0 0 \N \N f \N 444153 2024-02-29 19:50:52.269 2024-02-29 20:00:53.777 \N Increase consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movi https://example.com/ 19126 444102 444102.444153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.72052792804875 0 \N \N f 0 \N 1 118868496 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 436735 2024-02-23 23:36:02.038 2024-02-23 23:46:03.711 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement b https://example.com/ 12356 436683 436683.436735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9082946844291 0 \N \N f 0 \N 1 118348423 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444148 2024-02-29 19:45:24.246 2024-02-29 19:55:25.222 \N Congress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market https://example.com/ 3709 444102 444102.444148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0886853178302 0 \N \N f 0 \N 1 32801201 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 444300 2024-02-29 21:12:00.157 2024-02-29 21:22:01.707 \N Much road chair teach during. Poor assume operation job sea organization. Billion https://example.com/ 11153 444138 443794.444138.444300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32288419292929 0 \N \N f 0 \N 1 183585334 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 443788 2024-02-29 16:26:45.628 2024-02-29 16:36:46.909 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race natur https://example.com/ 19037 443105 443105.443788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.23153500461834 0 \N \N f 0 \N 2 248947455 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444290 2024-02-29 21:04:02.374 2024-02-29 21:14:03.426 \N Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nNew particularly c https://example.com/ 1564 443712 443712.444290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3710283858472 0 \N \N f 0 \N 3 238476723 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444295 2024-02-29 21:07:12.363 2024-02-29 21:17:13.762 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice o https://example.com/ 7673 436697 436683.436697.444295 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3160676437134 0 \N \N f 0 \N 0 137539909 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444314 2024-02-29 21:35:33.724 2024-02-29 21:45:36.291 \N Determine evidence bar. Evening where myself shoulder century number. End participant presi https://example.com/ 657 442820 442820.444314 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55492687766678 0 \N \N f 0 \N 1 152738960 0 f f \N \N \N \N 442820 \N 0 0 \N \N f \N 436697 2024-02-23 22:01:27.766 2024-02-23 22:11:29.364 \N Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. https://example.com/ 17183 436683 436683.436697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.5308387818052 0 \N \N f 0 \N 1 213622988 0 f f \N \N \N \N 436683 \N 0 0 \N \N f \N 444308 2024-02-29 21:19:03.168 2024-02-29 21:29:05.405 \N Body situation without keep first per. Financial magazine page dinner wrong cri https://example.com/ 4102 443439 443105.443379.443439.444308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7846571478353 0 \N \N f 0 \N 0 12127956 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444297 2024-02-29 21:07:32.089 2024-02-29 21:17:33.375 \N Piece conference several. Vote letter wife not customer heavy. https://example.com/ 9378 442848 442710.442848.444297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1519459383778 0 \N \N f 0 \N 1 81459708 0 f f \N \N \N \N 442710 \N 0 0 \N \N f \N 444102 2024-02-29 19:13:47.866 2024-02-29 19:23:50.436 Same product run but perhaps. Sta Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nEnd inside like them according. Surface where camera base maybe subject smile tend. https://example.com/ 20660 \N 444102 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 12.1171153404091 0 \N \N f 0 \N 14 80189533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444278 2024-02-29 20:59:17.605 2024-02-29 21:09:19.144 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than ar https://example.com/ 2016 444148 444102.444148.444278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6526368785129 0 \N \N f 0 \N 0 219939178 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 444138 2024-02-29 19:39:37.706 2024-02-29 19:49:39.036 \N Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance https://example.com/ 21271 443794 443794.444138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.150826470011 0 \N \N f 0 \N 4 78892071 0 f f \N \N \N \N 443794 \N 0 0 \N \N f \N 444361 2024-02-29 22:22:34.595 2024-02-29 22:32:36.133 \N Them its apply task the off ability. Song determine entire answer plan https://example.com/ 14080 444315 444315.444361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7255064191996 0 \N \N f 0 \N 0 94039517 0 f f \N \N \N \N 444315 \N 0 0 \N \N f \N 444294 2024-02-29 21:06:25.766 2024-02-29 21:16:27.867 \N Set how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Near https://example.com/ 7869 443295 443295.444294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8747980405711 0 \N \N f 0 \N 2 248162074 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444313 2024-02-29 21:32:16.744 2024-02-29 21:42:17.13 \N South both increase democratic economic. Seem measure yes couple plan season. War note down pa https://example.com/ 18114 443683 443683.444313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7628872869961 0 \N \N f 0 \N 0 225902419 0 f f \N \N \N \N 443683 \N 0 0 \N \N f \N 444323 2024-02-29 21:45:44.2 2024-02-29 21:55:45.862 \N Man talk arm player scene reflect. Window pic https://example.com/ 20663 444168 444168.444323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7568055127395 0 \N \N f 0 \N 0 38177185 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444318 2024-02-29 21:42:21.674 2024-02-29 21:52:23.691 \N Thank rule physical trip attorney staf https://example.com/ 16270 444112 444112.444318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9150432899598 0 \N \N f 0 \N 0 85274463 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 443481 2024-02-29 13:46:07.235 2024-02-29 21:28:32.033 \N Lead against area n https://example.com/ 11263 443398 443295.443332.443371.443385.443387.443398.443481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9530507466169 0 \N \N f 0 \N 0 216410328 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444344 2024-02-29 22:09:00.843 2024-02-29 22:19:02.309 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nPlant ever Republican together picture. What nearly pattern https://example.com/ 20310 444325 444168.444320.444325.444344 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.57160377757522 0 \N \N f 0 \N 0 201278398 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444337 2024-02-29 22:04:05.382 2024-02-29 22:14:07.027 \N Main anyone difficult radio sure. Question choose consider especially. Wife https://example.com/ 15577 444333 444097.444218.444330.444333.444337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.089064306624 0 \N \N f 0 \N 1 132988702 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444342 2024-02-29 22:07:29.321 2024-02-29 22:17:31.004 \N If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientis https://example.com/ 9109 443799 443799.444342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6028357696856 0 \N \N f 0 \N 0 27943890 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444287 2024-02-29 21:02:27.819 2024-02-29 21:12:30.607 \N Wish low party shake. National offer my specific happen well. Federal wor https://example.com/ 7998 444275 444168.444261.444266.444270.444275.444287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8247896913063 0 \N \N f 0 \N 1 58502255 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444309 2024-02-29 21:20:02.098 2024-02-29 21:30:03.642 \N Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general p https://example.com/ 15326 443712 443712.444309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2328549611048 0 \N \N f 0 \N 0 90449333 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444320 2024-02-29 21:42:51.98 2024-02-29 21:52:53.472 \N Social impact learn single election send senior. Dog difference effect give issue. Change then care down over production. https://example.com/ 19512 444168 444168.444320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.23890139179085 0 \N \N f 0 \N 2 130364858 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444345 2024-02-29 22:09:35.773 2024-02-29 22:19:37.176 \N Game management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. https://example.com/ 19096 444335 444168.444335.444345 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.53912913457463 0 \N \N f 0 \N 1 17955407 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444264 2024-02-29 20:52:08.684 2024-02-29 21:02:11.416 \N Blue the that local central middle themselves effect. Concern seat push sp https://example.com/ 3377 444162 444162.444264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.58366633273 0 \N \N f 0 \N 1 161462761 0 f f \N \N \N \N 444162 \N 0 0 \N \N f \N 444334 2024-02-29 22:02:07.503 2024-02-29 22:12:09.545 \N Political official world difference. Whole any small. Board change anyone worker https://example.com/ 19581 444168 444168.444334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4299295196248 0 \N \N f 0 \N 0 203501782 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444339 2024-02-29 22:06:06.906 2024-02-29 22:16:08.421 \N Fund spring who https://example.com/ 9669 444337 444097.444218.444330.444333.444337.444339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2801270562068 0 \N \N f 0 \N 0 223392408 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444328 2024-02-29 21:51:29.841 2024-02-29 22:01:30.946 \N Raise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch https://example.com/ 1890 443893 443712.443893.444328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9940434490335 0 \N \N f 0 \N 0 122525971 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444310 2024-02-29 21:24:17.524 2024-02-29 21:34:20.229 \N Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class fed https://example.com/ 20257 444262 444258.444262.444310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.77756039531137 0 \N \N f 0 \N 0 212005842 0 f f \N \N \N \N 444258 \N 0 0 \N \N f \N 444262 2024-02-29 20:51:13.561 2024-02-29 21:01:15.322 \N Trade gas word. Player draw close by. Population might particularly recei https://example.com/ 9333 444258 444258.444262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1474006254181 0 \N \N f 0 \N 1 151848841 0 f f \N \N \N \N 444258 \N 0 0 \N \N f \N 444321 2024-02-29 21:44:27.36 2024-02-29 21:54:28.675 \N Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nHerself https://example.com/ 17321 443904 443712.443834.443904.444321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4820368540183 0 \N \N f 0 \N 0 21043391 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444329 2024-02-29 21:52:41.553 2024-02-29 22:02:42.758 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Pu https://example.com/ 21343 444097 444097.444329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8869896197991 0 \N \N f 0 \N 0 88413798 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444236 2024-02-29 20:38:18.768 2024-02-29 20:48:19.748 Wait forward with whose only card brother. Another stand scene line reduce yes Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind. https://example.com/ 10280 \N 444236 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.449008152074 0 \N \N f 0 \N 3 45791101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444331 2024-02-29 21:55:37.855 2024-02-29 22:05:39.121 \N At audienc https://example.com/ 20623 444011 443712.444011.444331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5172304471044 0 \N \N f 0 \N 0 197370586 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444319 2024-02-29 21:42:38.279 2024-02-29 21:52:39.872 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake p https://example.com/ 16447 444316 443919.443953.444139.444304.444316.444319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4122725050907 0 \N \N f 0 \N 0 104023675 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444322 2024-02-29 21:44:34.349 2024-02-29 21:54:35.786 \N Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which w https://example.com/ 4521 443953 443919.443953.444322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4687239848376 0 \N \N f 0 \N 0 85603611 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 3772 2021-10-21 22:19:13.638 2023-10-01 23:53:29.334 Price country hour whom over Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundre https://example.com/ 5825 \N 3772 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.27197588963431 0 \N \N f 0 \N 9 23913347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444336 2024-02-29 22:03:30.001 2024-02-29 22:13:41.983 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. A https://example.com/ 19378 444015 444015.444336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2523791624104 0 \N \N f 0 \N 0 106920324 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444354 2024-02-29 22:17:37.706 2024-02-29 22:27:39.18 \N Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money po https://example.com/ 2525 444139 443919.443953.444139.444354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4791028460432 0 \N \N f 0 \N 0 61169061 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 444357 2024-02-29 22:20:49.302 2024-02-29 22:30:50.466 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film dru https://example.com/ 14308 443379 443105.443379.444357 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2265652056211 0 \N \N f 0 \N 0 188935589 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 3860 2021-10-23 03:44:39.705 2023-10-01 23:53:31.18 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide fr https://example.com/ 18865 3852 3852.3860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5519861173761 0 \N \N f 0 \N 1 84635995 0 f f \N \N \N \N 3852 \N 0 0 \N \N f \N 444261 2024-02-29 20:51:04.232 2024-02-29 21:01:06.251 \N Serious stay girl enter. His investment develop media out season. Modern company another mean such tr https://example.com/ 19138 444168 444168.444261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8161136673913 0 \N \N f 0 \N 6 163508587 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444348 2024-02-29 22:12:28.146 2024-02-29 22:22:29.088 \N Whether special arm economy house. Us six f https://example.com/ 5085 444340 444114.444132.444143.444150.444207.444213.444277.444289.444332.444340.444348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9259606336898 0 \N \N f 0 \N 1 28430001 0 f f \N \N \N \N 444114 \N 0 0 \N \N f \N 444349 2024-02-29 22:13:19.367 2024-02-29 22:23:21.183 \N Never hotel town trip thus safe eight. Share https://example.com/ 12188 444345 444168.444335.444345.444349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1521315159959 0 \N \N f 0 \N 0 121534171 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444412 2024-02-29 23:27:53.838 2024-02-29 23:37:56.174 \N Describe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution m https://example.com/ 2529 443834 443712.443834.444412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1884906288818 0 \N \N f 0 \N 8 112580924 0 f f \N \N \N \N 443712 \N 0 0 \N \N f \N 444362 2024-02-29 22:23:25.838 2024-02-29 22:33:27.144 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity https://example.com/ 2206 444046 443105.443788.444046.444362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2268375720724 0 \N \N f 0 \N 0 221436118 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444366 2024-02-29 22:27:03.953 2024-02-29 22:37:05.512 \N Protect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyon https://example.com/ 14785 444353 444112.444137.444353.444366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.54657865707111 0 \N \N f 0 \N 1 101090855 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444327 2024-02-29 21:49:38.242 2024-02-29 21:59:40.202 \N Push hair specific policy. We decision easy surface to director phone never. Outside speak en https://example.com/ 18663 444168 444168.444327 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05057227721132 0 \N \N f 0 \N 3 181228332 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444315 2024-02-29 21:40:00.091 2024-02-29 21:50:01.552 Fund bring design try claim attention. Old imagine hand prevent. Son Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe. https://example.com/ 711 \N 444315 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.0223654070755 0 \N \N f 0 \N 1 170610512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444335 2024-02-29 22:03:20.805 2024-02-29 22:13:21.936 \N Election parent through minute sit. Name others benefit ago commercial. Growth machine trouble live https://example.com/ 20840 444168 444168.444335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10744595116839 0 \N \N f 0 \N 2 74847751 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444360 2024-02-29 22:21:48.315 2024-02-29 22:31:49.498 \N House west amount. Again high already himself answer type. Go back Mr. Pattern water near https://example.com/ 10112 443272 443272.444360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7483291463306 0 \N \N f 0 \N 2 25146195 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444363 2024-02-29 22:25:18.243 2024-02-29 22:25:23.96 \N Com https://example.com/ 16442 4292 4292.444363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1744478937764 0 \N \N f 0 \N 0 142457020 0 f f \N \N \N \N 4292 \N 0 0 \N \N f \N 444275 2024-02-29 20:57:33.927 2024-02-29 21:07:35.281 \N Experience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. https://example.com/ 20775 444270 444168.444261.444266.444270.444275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.98424575737577 0 \N \N f 0 \N 2 57875324 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444046 2024-02-29 18:42:46.855 2024-02-29 18:52:48.114 \N Foot upon smile pass house significant result small. S https://example.com/ 21430 443788 443105.443788.444046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4626126596246 0 \N \N f 0 \N 1 110185095 0 f f \N \N \N \N 443105 \N 0 0 \N \N f \N 444371 2024-02-29 22:35:32.54 2024-02-29 22:45:33.922 \N More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nBody situation without keep first p https://example.com/ 18630 444366 444112.444137.444353.444366.444371 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.359490162727 0 \N \N f 0 \N 0 18890845 0 f f \N \N \N \N 444112 \N 0 0 \N \N f \N 444393 2024-02-29 23:04:05.647 2024-02-29 23:14:07.291 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congres https://example.com/ 16536 444097 444097.444393 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8742949760858 0 \N \N f 0 \N 0 142657438 0 f f \N \N \N \N 444097 \N 0 0 \N \N f \N 444356 2024-02-29 22:20:28.33 2024-02-29 22:30:29.334 Fall health drug child. Throughout information news ten area laugh. Word someti Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nHappy strong Democrat some goal https://example.com/ 20782 \N 444356 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 9.10472132578157 0 \N \N f 0 \N 0 5359196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430816 2024-02-19 15:00:06.531 2024-02-19 15:00:12.686 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience electi https://example.com/ 18314 430815 430815.430816 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.548172750265259 0 \N \N f 0 \N 0 232134498 0 f f \N \N \N \N 430815 \N 0 0 \N \N f \N 444394 2024-02-29 23:04:36.47 2024-02-29 23:14:37.506 \N Past everybody chance health. Minute c https://example.com/ 19459 444386 443295.444386.444394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79468152688034 0 \N \N f 0 \N 0 215855028 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444383 2024-02-29 22:54:02.4 2024-02-29 23:04:03.308 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Re https://example.com/ 18452 443919 443919.444383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.185626398971799 0 \N \N f 0 \N 0 204438448 0 f f \N \N \N \N 443919 \N 0 0 \N \N f \N 442855 2024-02-28 23:22:22.768 2024-02-28 23:32:24.33 \N We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daug https://example.com/ 11776 442023 442023.442855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8685416335151 0 \N \N f 0 \N 1 199968576 0 f f \N \N \N \N 442023 \N 0 0 \N \N f \N 444395 2024-02-29 23:04:40.611 2024-02-29 23:14:41.542 \N Economy rest whatever spring among least against and. Hard suffer atte https://example.com/ 18402 440566 440566.444395 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7730247032715 0 \N \N f 0 \N 0 212157623 0 f f \N \N \N \N 440566 \N 0 0 \N \N f \N 444253 2024-02-29 20:47:33.083 2024-02-29 20:57:35.44 Special thought day cup hard central. Situation attention nation Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nPrevent machine source white and. Fac https://example.com/ 20168 \N 444253 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 10.4623743348034 0 \N \N f 0 \N 0 214626917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443431 2024-02-29 13:06:08.057 2024-02-29 13:16:08.98 Economy rest whatever spring among least against a Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nEach any growth human seek or expert data. Sit financial know feeling one exis https://example.com/ 8380 \N 443431 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7425040613697 0 \N \N f 0 \N 0 45150172 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443557 2024-02-29 14:28:58.556 2024-02-29 14:38:59.698 \N Morning hundred analysis understand admit prevent. Time b https://example.com/ 10586 443548 443295.443548.443557 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.53802871749 0 \N \N f 0 \N 1 75804682 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444369 2024-02-29 22:34:38.441 2024-02-29 22:44:39.767 Travel according exactly attention. Care before cover within p Republican star interest its. College challeng https://example.com/ 21494 \N 444369 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5951787533322 0 \N \N f 0 \N 0 22593689 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444377 2024-02-29 22:47:26.2 2024-02-29 22:57:28.039 \N Might also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal ne https://example.com/ 2206 444365 444365.444377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00470604526217 0 \N \N f 0 \N 1 109288470 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 440566 2024-02-27 14:00:15.16 2024-02-27 14:10:16.027 Own shoulder kind fact. Poor bring quite the better. Dec Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High be https://example.com/ 19158 \N 440566 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 27.8210227954328 0 \N \N f 0 \N 1 79201379 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444073 2024-02-29 18:57:48.839 2024-02-29 19:07:50.522 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nSupport line change go must do. Small audience beautiful whether art. https://example.com/ 9916 443583 443583.444073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7496455426857 0 \N \N f 0 \N 0 238568992 0 f f \N \N \N \N 443583 \N 0 0 \N \N f \N 444292 2024-02-29 21:04:57.813 2024-02-29 21:14:59.642 Individual low nice character home Congress prevent. Wall Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add. https://example.com/ 15978 \N 444292 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.116039863453246 0 \N \N f 0 \N 1 145961558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444370 2024-02-29 22:35:05.137 2024-02-29 22:45:06.34 \N Name https://example.com/ 21296 433710 433710.444370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.47274997072157 0 \N \N f 0 \N 0 54240344 0 f f \N \N \N \N 433710 \N 0 0 \N \N f \N 444346 2024-02-29 22:10:18.409 2024-02-29 22:20:19.773 \N Produce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice pl https://example.com/ 701 443836 443836.444346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6039834865271 0 \N \N f 0 \N 3 126957730 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 39811 2022-06-29 21:19:24.181 2024-01-23 18:50:22.342 Before wrong Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine par https://example.com/ 3392 \N 39811 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.06176059179479 0 \N \N f 0 \N 1 174689931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444374 2024-02-29 22:40:51.708 2024-02-29 22:50:52.766 \N Identify health spend could. Have weight civil size piece arrive. Defen https://example.com/ 1114 444287 444168.444261.444266.444270.444275.444287.444374 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0354138963897 0 \N \N f 0 \N 0 39944842 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444375 2024-02-29 22:41:19.506 2024-02-29 22:51:21.043 \N Be right whatever former variou https://example.com/ 17275 444168 444168.444375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.769408606056 0 \N \N f 0 \N 0 221786054 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444208 2024-02-29 20:24:32.72 2024-02-29 20:34:33.744 \N Serve deep station probably writer. Perform back prote https://example.com/ 20133 444168 444168.444208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9900695943983 0 \N \N f 0 \N 0 24141678 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 443572 2024-02-29 14:33:47.418 2024-02-29 14:43:48.515 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since https://example.com/ 9107 443490 443490.443572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.75519069371613 0 \N \N f 0 \N 2 17206733 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 443971 2024-02-29 18:00:27.482 2024-02-29 18:10:29.499 \N Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby https://example.com/ 18809 443548 443295.443548.443971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7554287640522 0 \N \N f 0 \N 1 64292708 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 438414 2024-02-25 16:22:44.186 2024-02-25 16:32:46.14 History prepare everyone role everybody son Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus https://example.com/ 21208 \N 438414 \N \N \N \N \N \N \N \N conspiracy \N ACTIVE \N 9.4757939908007 0 \N \N f 0 \N 18 127712776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444389 2024-02-29 23:00:05.383 2024-02-29 23:10:07.273 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order https://example.com/ 5527 444388 444388.444389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.67696938008626 0 \N \N f 0 \N 0 221883216 0 f f \N \N \N \N 444388 \N 0 0 \N \N f \N 444078 2024-02-29 18:58:52.566 2024-02-29 19:08:54.358 Myself effort community ago while assume. Production you repre Mind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet https://example.com/ 21344 \N 444078 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.519646152164 0 \N \N f 0 \N 1 222119905 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 443993 2024-02-29 18:11:15.115 2024-02-29 18:21:16.233 \N With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media l https://example.com/ 6058 443971 443295.443548.443971.443993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8280113616891 0 \N \N f 0 \N 0 159788620 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444385 2024-02-29 22:56:31.074 2024-02-29 23:06:33.512 \N Story do plant get. Base involve sport film authority want song career. Eat office https://example.com/ 18815 444378 443836.444346.444378.444385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65490360292156 0 \N \N f 0 \N 1 113036357 0 f f \N \N \N \N 443836 \N 0 0 \N \N f \N 444224 2024-02-29 20:31:54.204 2024-02-29 20:41:55.517 \N Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nNear key among effor https://example.com/ 16532 444074 444015.444074.444224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0118228012938 0 \N \N f 0 \N 0 88764830 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444381 2024-02-29 22:53:30.677 2024-02-29 23:03:32.016 \N Say this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nShe l https://example.com/ 807 443528 443528.444381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5337738028491 0 \N \N f 0 \N 0 177097448 0 f f \N \N \N \N 443528 \N 0 0 \N \N f \N 444249 2024-02-29 20:46:18.145 2024-02-29 20:56:19.644 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fu https://example.com/ 19199 444078 444078.444249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2992305883593 0 \N \N f 0 \N 0 179229159 0 f f \N \N \N \N 444078 \N 0 0 \N \N f \N 444380 2024-02-29 22:52:51.083 2024-02-29 23:03:08.042 \N Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standar https://example.com/ 5057 444377 444365.444377.444380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6712144766105 0 \N \N f 0 \N 0 11940624 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444388 2024-02-29 23:00:04.889 2024-02-29 23:10:06.152 Opportunity hospital address action return different style. Beat mag \N https://example.com/ 11314 \N 444388 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.34197056489997 0 \N \N f 0 \N 1 178292100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444404 2024-02-29 23:15:39.57 2024-02-29 23:25:41.561 \N Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back t https://example.com/ 21103 443912 443799.443912.444404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7610164659306 0 \N \N f 0 \N 0 205793488 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 244702 2023-09-05 10:09:41.199 2023-09-05 10:19:42.703 Ask arm intervie Look surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. https://example.com/ 630 \N 244702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0978895176871 0 \N \N f 0 \N 7 99683941 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444405 2024-02-29 23:18:35.952 2024-02-29 23:28:37.51 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship s https://example.com/ 16259 443572 443490.443572.444405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9763061450798 0 \N \N f 0 \N 0 156355424 0 f f \N \N \N \N 443490 \N 0 0 \N \N f \N 444397 2024-02-29 23:07:52.531 2024-02-29 23:17:53.916 \N Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nNever whose degree. In https://example.com/ 1515 443399 443399.444397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8198717724012 0 \N \N f 0 \N 1 44645539 0 f f \N \N \N \N 443399 \N 0 0 \N \N f \N 444379 2024-02-29 22:50:33.017 2024-02-29 23:01:06.871 Stuff this how behind total his left. Know school produce together light. Blood Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nEffect receive on newspaper executive left example. Something once some. Central ok rol https://example.com/ 2322 \N 444379 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2903983923778 0 \N \N f 0 \N 1 212149353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444399 2024-02-29 23:11:56.608 2024-02-29 23:21:57.761 \N Door wrong under assume get wear. Full least wrong administration. https://example.com/ 5646 444168 444168.444399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.6113025006819 0 \N \N f 0 \N 0 90966445 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444401 2024-02-29 23:12:31.269 2024-02-29 23:22:32.405 \N Than level lawyer https://example.com/ 19446 444168 444168.444401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.94055806057333 0 \N \N f 0 \N 0 39303304 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 42472 2022-07-08 01:56:18.168 2023-10-02 04:35:08.228 With officer scie Past everybody ch https://example.com/ 18873 \N 42472 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2777998317497 0 \N \N f 0 \N 1 247726551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444359 2024-02-29 22:21:44.831 2024-02-29 22:31:46.258 Deep government cold west. Act computer vote par Blue why news enjoy include movie. Artist later stor https://example.com/ 16410 \N 444359 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 12.5448654528 0 \N \N f 0 \N 0 200370222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444407 2024-02-29 23:20:51.559 2024-02-29 23:30:53.43 Hot near source fact. Have high kind. Series speech subject side con Hundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or wor https://example.com/ 2513 \N 444407 \N \N \N \N \N \N \N \N security \N ACTIVE \N 26.4869676465648 0 \N \N f 0 \N 0 90169146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444415 2024-02-29 23:36:21.51 2024-02-29 23:46:24.163 \N Book ok power church man machine. Where stop customer street response. Game station old. Leader https://example.com/ 1354 444365 444365.444415 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.260184265180818 0 \N \N f 0 \N 1 143746535 0 f f \N \N \N \N 444365 \N 0 0 \N \N f \N 444406 2024-02-29 23:20:46.558 2024-02-29 23:30:48.309 \N Be human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government fir https://example.com/ 822 444015 444015.444406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5557452316544 0 \N \N f 0 \N 0 145795795 0 f f \N \N \N \N 444015 \N 0 0 \N \N f \N 444425 2024-02-29 23:54:41.897 2024-03-01 00:04:43.991 \N Ther https://example.com/ 10063 443799 443799.444425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.955218886432014 0 \N \N f 0 \N 0 175724808 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444259 2024-02-29 20:49:52.001 2024-02-29 20:59:53.701 \N Beyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nSize matter rather result other get air. Rich run direction usually https://example.com/ 1428 444102 444102.444259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.55608725953805 0 \N \N f 0 \N 0 5997252 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 444418 2024-02-29 23:45:57.77 2024-02-29 23:55:59.813 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science l https://example.com/ 1564 443799 443799.444418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4090144429721 0 \N \N f 0 \N 0 151732264 0 f f \N \N \N \N 443799 \N 0 0 \N \N f \N 444413 2024-02-29 23:35:39.988 2024-02-29 23:45:42.435 \N Generation discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nAu https://example.com/ 16350 443295 443295.444413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6115853277581 0 \N \N f 0 \N 0 220554487 0 f f \N \N \N \N 443295 \N 0 0 \N \N f \N 444411 2024-02-29 23:26:31.596 2024-02-29 23:36:34.056 \N Authority environmental party bank region trip new that. Leave game read all deal same. S https://example.com/ 12516 444398 444168.444255.444398.444411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8728304487763 0 \N \N f 0 \N 0 139393739 0 f f \N \N \N \N 444168 \N 0 0 \N \N f \N 444414 2024-02-29 23:35:53.989 2024-02-29 23:45:55.762 Tree I there avoid win knowledge improve. Di Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nArea just su https://example.com/ 21466 \N 444414 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0346474547971 0 \N \N f 0 \N 2 155647712 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444372 2024-02-29 22:36:07.422 2024-02-29 22:46:08.448 \N Might also begin husband affect. Chance follow knowledge fac https://example.com/ 2010 444102 444102.444372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67378845375257 0 \N \N f 0 \N 0 197959085 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 249178 2023-09-09 19:19:48.477 2023-09-09 19:29:49.654 Charge hold rev Most which https://example.com/ 802 \N 249178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5563982954154 0 \N \N f 0 \N 6 154016957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444189 2024-02-29 20:15:54.538 2024-02-29 20:25:55.746 \N Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nPersonal factor big better. Itself up senior health. Seek about s https://example.com/ 1046 443655 443655.444189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2339368873459 0 \N \N f 0 \N 0 133905770 0 f f \N \N \N \N 443655 \N 0 0 \N \N f \N 44707 2022-07-13 15:02:27.045 2023-10-02 04:40:55.965 Grow last away w Event at administration sister school lot behind ready. Popul https://example.com/ 13198 \N 44707 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.9742274223574 0 \N \N f 0 \N 2 217065981 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 444426 2024-02-29 23:54:51.049 2024-03-01 00:04:52.168 \N Control cent https://example.com/ 17446 443272 443272.444426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59873396855404 0 \N \N f 0 \N 1 16117699 0 f f \N \N \N \N 443272 \N 0 0 \N \N f \N 444390 2024-02-29 23:00:29.461 2024-02-29 23:10:31.435 \N Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nHuman appear she. So happen https://example.com/ 18403 444102 444102.444390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.66678329373224 0 \N \N f 0 \N 0 232659604 0 f f \N \N \N \N 444102 \N 0 0 \N \N f \N 1196 2021-08-18 23:20:39.067 2023-10-01 23:49:00.381 \N Remember before box of open. Always region baby actually image again. G https://example.com/ 680 1176 1176.1196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8204462657127 0 \N \N f 0 \N 3 50050208 0 f f \N \N \N \N 1176 \N 0 0 \N \N f \N 1198 2021-08-18 23:30:18.219 2023-10-01 23:49:00.391 \N Quickly fi https://example.com/ 1438 1196 1176.1196.1198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.50461475126919 0 \N \N f 0 \N 0 186278456 0 f f \N \N \N \N 1176 \N 0 0 \N \N f \N 1201 2021-08-18 23:42:14.019 2023-10-01 23:49:00.426 \N Investment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live https://example.com/ 661 1197 1197.1201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.65249156071665 0 \N \N f 0 \N 2 159363698 0 f f \N \N \N \N 1197 \N 0 0 \N \N f \N 1207 2021-08-19 13:12:15.387 2023-10-01 23:49:00.488 \N Reach road https://example.com/ 6137 1196 1176.1196.1207 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.69888002462542 0 \N \N f 0 \N 0 145338900 0 f f \N \N \N \N 1176 \N 0 0 \N \N f \N 1245 2021-08-20 19:22:42.264 2023-10-01 23:49:02.543 Agency party build and event thank leave it. Its first chu Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nHair gas w https://example.com/ 21427 \N 1245 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2581090731834 0 \N \N f 0 \N 1 161886506 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1246 2021-08-20 20:11:15.183 2023-10-01 23:49:02.557 \N Small enjoy manage service individual down. Season https://example.com/ 732 1226 1226.1246 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7420333034218 0 \N \N f 0 \N 0 183300186 0 f f \N \N \N \N 1226 \N 0 0 \N \N f \N 1277 2021-08-21 10:34:06.355 2023-10-01 23:49:02.877 \N Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administrat https://example.com/ 18264 1247 1247.1277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2028483733749 0 \N \N f 0 \N 3 203062064 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 1323 2021-08-23 20:39:19.232 2023-10-01 23:49:07.454 \N Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nProduction per can TV ahead million. Few y https://example.com/ 16336 1322 1247.1250.1253.1317.1319.1322.1323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.89326780543968 0 \N \N f 0 \N 0 102590970 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 1366 2021-08-25 14:14:06.935 2023-10-01 23:49:10.259 \N Myself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nSet how recognize operation American https://example.com/ 1803 1360 1359.1360.1366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.30802015808873 0 \N \N f 0 \N 1 205887418 0 f f \N \N \N \N 1359 \N 0 0 \N \N f \N 48069 2022-07-22 00:48:02.853 2023-10-02 04:50:26.935 Risk past without rec Customer include con https://example.com/ 10554 \N 48069 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.9613995673667 0 \N \N f 0 \N 1 199963143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392486 2024-01-18 12:43:34.275 2024-01-18 12:53:35.405 Probably agent catch compu Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offe https://example.com/ 21492 \N 392486 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 5.6381530704504 0 \N \N f 0 \N 11 6211431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1453 2021-08-26 21:46:18.71 2023-10-01 23:49:32.267 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration https://example.com/ 18664 1452 1452.1453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8981281990255 0 \N \N f 0 \N 4 188144232 0 f f \N \N \N \N 1452 \N 0 0 \N \N f \N 1474 2021-08-27 16:46:04.042 2023-10-01 23:49:33.85 \N Seven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nRich leg value billion long. Day discus https://example.com/ 9036 1396 1392.1395.1396.1474 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2050123426463 0 \N \N f 0 \N 1 46882214 0 f f \N \N \N \N 1392 \N 0 0 \N \N f \N 1482 2021-08-27 18:11:09.525 2023-10-01 23:49:37.298 \N Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nDetermine evidence bar. Evening wh https://example.com/ 12606 1481 1481.1482 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.363591936383436 0 \N \N f 0 \N 0 7535985 0 f f \N \N \N \N 1481 \N 0 0 \N \N f \N 1501 2021-08-29 14:27:01.974 2023-10-01 23:49:38.379 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize https://example.com/ 16267 1499 1499.1501 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9879314196868 0 \N \N f 0 \N 2 116561716 0 f f \N \N \N \N 1499 \N 0 0 \N \N f \N 1520 2021-08-30 13:18:55.5 2023-10-01 23:49:38.476 \N Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout d https://example.com/ 1438 1357 1357.1520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1614559094747 0 \N \N f 0 \N 0 43646484 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 1593 2021-08-31 23:59:34.997 2023-10-01 23:49:46.546 \N State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most ra https://example.com/ 18274 1588 1588.1593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1998840349883 0 \N \N f 0 \N 4 189760028 0 f f \N \N \N \N 1588 \N 0 0 \N \N f \N 1662 2021-09-02 22:37:10.477 2023-10-01 23:49:53.808 \N Heart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Deba https://example.com/ 12516 1660 1660.1662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3737126749797 0 \N \N f 0 \N 0 184819695 0 f f \N \N \N \N 1660 \N 0 0 \N \N f \N 2512 2021-09-25 13:38:34.942 2023-10-01 23:51:54.814 \N Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nRange happen field economic. Deal https://example.com/ 20987 2477 2473.2477.2512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.93226692577697 0 \N \N f 0 \N 2 187194285 0 f f \N \N \N \N 2473 \N 0 0 \N \N f \N 1679 2021-09-03 13:59:00.746 2023-10-01 23:49:54.703 \N Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power https://example.com/ 14376 1672 1656.1657.1672.1679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8618913023971 0 \N \N f 0 \N 0 198683838 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N 1680 2021-09-03 14:09:03.079 2023-10-01 23:49:54.708 \N Area just subject pretty. Three employee performance. Shoulder trade ident https://example.com/ 16956 1656 1656.1680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7519872575822 0 \N \N f 0 \N 2 114532310 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N 1681 2021-09-03 14:12:43.847 2023-10-01 23:49:54.711 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sp https://example.com/ 13878 1680 1656.1680.1681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.358144784562 0 \N \N f 0 \N 1 217544402 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N 1700 2021-09-03 19:53:53.491 2023-10-01 23:49:54.83 \N Person like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score https://example.com/ 11395 1698 1698.1700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8370956202763 0 \N \N f 0 \N 1 155073403 0 f f \N \N \N \N 1698 \N 0 0 \N \N f \N 1997 2021-09-11 23:00:15.979 2023-10-01 23:51:03.109 \N Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nSmile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nTogether tree bar https://example.com/ 8459 1970 1952.1965.1968.1970.1997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.936098534474 0 \N \N f 0 \N 1 21712449 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N 1807 2021-09-07 11:42:18.82 2023-10-01 23:50:26.9 \N Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must no https://example.com/ 13174 1610 1565.1571.1604.1610.1807 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2943528886 0 \N \N f 0 \N 0 64509852 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N 1813 2021-09-07 14:08:52.683 2023-10-01 23:50:26.944 \N Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter contr https://example.com/ 15938 700 644.700.1813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9754973219829 0 \N \N f 0 \N 0 159075760 0 f f \N \N \N \N 644 \N 0 0 \N \N f \N 1825 2021-09-07 16:15:53.525 2023-10-01 23:50:38.019 \N Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon t https://example.com/ 18673 1823 1816.1823.1825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9249626963802 0 \N \N f 0 \N 0 108634438 0 f f \N \N \N \N 1816 \N 0 0 \N \N f \N 1863 2021-09-08 12:16:37.976 2023-10-01 23:50:43.082 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nStock short may one soldier table past. Arrive nice arrive away environmen https://example.com/ 10291 1860 1860.1863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.19777851305228 0 \N \N f 0 \N 0 103835909 0 f f \N \N \N \N 1860 \N 0 0 \N \N f \N 1904 2021-09-09 16:46:56.922 2023-10-01 23:50:47.288 \N Live class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nGene https://example.com/ 1094 1903 1903.1904 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.4335940470363 0 \N \N f 0 \N 7 66691494 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N 1922 2021-09-09 21:31:14.839 2023-10-01 23:50:47.368 \N Authority call evening guess c https://example.com/ 14213 1912 1912.1922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7855694959047 0 \N \N f 0 \N 0 186351097 0 f f \N \N \N \N 1912 \N 0 0 \N \N f \N 1923 2021-09-09 21:42:57.64 2023-10-01 23:50:47.371 \N Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim sma https://example.com/ 15049 1860 1860.1923 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7432587291801 0 \N \N f 0 \N 1 172888607 0 f f \N \N \N \N 1860 \N 0 0 \N \N f \N 3126 2021-10-06 17:02:46.459 2023-10-01 23:52:36.106 \N Successful power down must next system pull provide. World health century more clear. Significa https://example.com/ 14258 3119 3119.3126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6505847000096 0 \N \N f 0 \N 0 55110777 0 f f \N \N \N \N 3119 \N 0 0 \N \N f \N 1930 2021-09-10 13:47:37.913 2023-10-01 23:50:47.692 \N Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting characte https://example.com/ 993 1929 1903.1904.1905.1906.1907.1929.1930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4297110052903 0 \N \N f 0 \N 2 128936782 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N 278220 2023-10-08 18:36:36.06 2023-10-08 18:46:37.841 Main ball collection Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nScientist light the everything find window issue. Money space might woman. Nor music https://example.com/ 20433 \N 278220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7237221658581 0 \N \N f 0 \N 11 205956264 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2004 2021-09-12 16:23:04.075 2023-10-01 23:51:03.509 They wide j Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nSupport structure season energy group. Important nearly dark. Sense course risk energ https://example.com/ 20871 \N 2004 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1423446747249 0 \N \N f 0 \N 13 2375414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2771 2021-09-30 23:20:58.99 2023-10-01 23:52:21.196 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nTrue quickly government finish region. Discuss https://example.com/ 18460 2734 2734.2771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0811030144274 0 \N \N f 0 \N 1 43043351 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N 2772 2021-09-30 23:23:32.093 2023-10-01 23:52:21.201 \N Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up becaus https://example.com/ 20168 2770 2751.2770.2772 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9142939994642 0 \N \N f 0 \N 0 78164923 0 f f \N \N \N \N 2751 \N 0 0 \N \N f \N 2777 2021-10-01 00:14:00.933 2023-10-01 23:52:21.231 \N Score might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area o https://example.com/ 4238 2771 2734.2771.2777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.38762138212073 0 \N \N f 0 \N 0 152907333 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N 2801 2021-10-01 02:45:14.72 2023-10-01 23:52:21.325 Improve different id Business food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return par https://example.com/ 19566 \N 2801 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5106974978737 0 \N \N f 0 \N 1 162813811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2872 2021-10-01 19:20:35.933 2023-10-01 23:52:24.424 \N Class population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these curren https://example.com/ 11328 2866 2828.2866.2872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.25225301863354 0 \N \N f 0 \N 0 221815757 0 f f \N \N \N \N 2828 \N 0 0 \N \N f \N 3020 2021-10-04 17:58:02.664 2023-10-01 23:52:30.953 \N Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war https://example.com/ 1845 3017 3017.3020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4295288035693 0 \N \N f 0 \N 3 71539195 0 f f \N \N \N \N 3017 \N 0 0 \N \N f \N 3037 2021-10-04 21:05:43.175 2023-10-01 23:52:32.071 \N Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular co https://example.com/ 20190 3035 2990.2999.3035.3037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.18486971392139 0 \N \N f 0 \N 4 230758722 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 3068 2021-10-05 14:41:06.239 2023-10-01 23:52:34.232 \N Everything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when https://example.com/ 10821 3060 2990.2999.3035.3037.3039.3042.3060.3068 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6452904957473 0 \N \N f 0 \N 0 98517498 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 3124 2021-10-06 15:37:47.807 2023-10-01 23:52:36.094 Accept nation he. Work plan Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war r https://example.com/ 11789 \N 3124 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.0394262953116 0 \N \N f 0 \N 2 17383110 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 95453 2022-11-17 19:50:43.546 2022-11-17 19:50:43.546 \N Long management fa https://example.com/ 10944 95306 95306.95453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.845421356432 0 \N \N f 0 \N 2 240109926 0 f f \N \N \N \N 95306 \N 0 0 \N \N f \N 3152 2021-10-07 07:58:31.867 2023-10-01 23:52:38.643 Police do base plan how. Her add b News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audie https://example.com/ 19284 \N 3152 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9068460627816 0 \N \N f 0 \N 2 221224934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392558 2024-01-18 14:02:28.331 2024-01-18 14:12:29.468 Both tell huge fine yet fall crime. Impact Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nConsumer point treat task. Sha https://example.com/ 8074 \N 392558 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 11.7700966542644 0 \N \N f 0 \N 30 9006020 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3160 2021-10-07 11:01:04.762 2023-10-01 23:52:40.247 \N Every important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly p https://example.com/ 2029 3153 3061.3066.3104.3106.3111.3153.3160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7792067308412 0 \N \N f 0 \N 3 46996151 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N 3865 2021-10-23 05:18:51.502 2023-10-01 23:53:35.686 \N Today area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. St https://example.com/ 1142 3864 3864.3865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6509079661381 0 \N \N f 0 \N 0 124849062 0 f f \N \N \N \N 3864 \N 0 0 \N \N f \N 3908 2021-10-24 16:52:07.752 2023-10-01 23:53:35.932 Affect key her. Development create daughter role enough. Inst Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone https://example.com/ 17710 \N 3908 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.799869648849 0 \N \N f 0 \N 76 223765065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4002 2021-10-25 00:43:47.412 2023-10-01 23:53:36.858 Window here sec Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone https://example.com/ 18526 \N 4002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.920125337446507 0 \N \N f 0 \N 5 44257263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4004 2021-10-25 01:22:28.564 2023-10-01 23:53:36.869 \N Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once https://example.com/ 1495 3999 3996.3999.4004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1644994371603 0 \N \N f 0 \N 3 211642121 0 f f \N \N \N \N 3996 \N 0 0 \N \N f \N 4237 2021-10-28 22:39:04.383 2023-10-01 23:53:53.477 Specific child according. Behind far sure back stock. Watch experience real Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About m https://example.com/ 940 \N 4237 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.4729665856342 0 \N \N f 0 \N 23 55984836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4239 2021-10-28 22:55:08.008 2023-10-01 23:53:53.486 \N Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund https://example.com/ 12158 4237 4237.4239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7295170358989 0 \N \N f 0 \N 4 125036312 0 f f \N \N \N \N 4237 \N 0 0 \N \N f \N 2483 2021-09-24 23:28:45.476 2023-11-30 16:04:08.495 Approach st Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge de https://example.com/ 763 \N 2483 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.43275288435305 0 \N \N f 0 \N 37 131389768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2540 2021-09-25 19:50:35.784 2023-12-21 04:46:00.359 Community seat t Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thous https://example.com/ 13599 \N 2540 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.99324675018436 0 \N \N f 0 \N 5 214759877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2558 2021-09-26 12:10:43.02 2023-10-01 23:51:59.156 Much wait At within eye player newspaper f https://example.com/ 5637 \N 2558 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.25238824178386 0 \N \N f 0 \N 1 244672063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2608 2021-09-28 11:16:25.109 2024-02-21 08:27:46.124 Point box near. Become season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work s https://example.com/ 1596 \N 2608 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5215293440194 0 \N \N f 0 \N 26 94550642 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4181 2021-10-28 08:06:27.876 2023-10-01 23:53:48.04 Strategy w Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight m https://example.com/ 14795 \N 4181 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.273389226241 0 \N \N f 0 \N 1 163419591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6912 2021-12-30 02:02:57.53 2023-10-01 23:58:54.832 Would role th Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two https://example.com/ 3686 \N 6912 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.99234373247642 0 \N \N f 0 \N 2 250863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7138 2022-01-04 14:17:54.834 2023-10-01 23:59:15.181 Hundred positi Break site describe a https://example.com/ 16965 \N 7138 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2324016059474 0 \N \N f 0 \N 2 17662648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 16253 2022-03-24 19:01:45.767 2023-10-02 00:25:10.466 Politics or often Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place offic https://example.com/ 15147 \N 16253 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.50129340468769 0 \N \N f 0 \N 1 86883256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 17840 2022-04-03 16:57:47.49 2023-10-02 00:30:20.248 Majority member tend g Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send busines https://example.com/ 17639 \N 17840 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1504679084693 0 \N \N f 0 \N 1 30370947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 30615 2022-05-22 16:47:35.756 2023-10-02 01:12:45.994 Lay gard According shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nStand red drop occur https://example.com/ 21145 \N 30615 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.13628969501951 0 \N \N f 0 \N 1 198284081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 38951 2022-06-26 21:53:51.437 2024-02-11 15:10:43.936 Far they window Professor entire information week article family fear effort https://example.com/ 19335 \N 38951 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9128519671268 0 \N \N f 0 \N 1 21222130 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1660 2021-09-02 21:29:31.294 2023-10-01 23:49:53.798 Religious same wish cost make. Else official career fire. Fo \N https://example.com/ 9366 \N 1660 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4139504690764 0 \N \N f 0 \N 4 151330723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404182 2024-01-28 18:20:18.708 2024-01-28 18:30:20.977 \N Treat central body toward. Cell throughou https://example.com/ 20775 404145 404042.404145.404182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3864442461338 0 \N \N f 0 \N 1 237849577 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 88284 2022-11-01 21:42:50.739 2024-02-07 16:58:09.482 Play single finally so Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party https://example.com/ 21212 \N 88284 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6792370394072 0 \N \N f 0 \N 4 62658052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 127191 2023-01-26 19:39:43.601 2023-01-26 19:49:45.269 Top group country Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency prof https://example.com/ 4574 \N 127191 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.280862242386846 0 \N \N f 0 \N 6 47478982 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 129726 2023-02-01 19:39:02.111 2023-02-01 19:49:03.3 Always line hot rec Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference sinc https://example.com/ 10519 \N 129726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.928584228514104 0 \N \N f 0 \N 4 6872614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1672 2021-09-03 07:08:08.557 2023-10-01 23:49:54.654 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question de https://example.com/ 17693 1657 1656.1657.1672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5463561450152 0 \N \N f 0 \N 1 150163358 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N 135385 2023-02-12 20:32:05.889 2024-02-15 02:59:41.343 Site coach st Field rock decide physical role these produce camera. Scene Mrs concern pat https://example.com/ 5746 \N 135385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.61498980311688 0 \N \N f 0 \N 6 21056768 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137901 2023-02-16 20:13:25.816 2023-02-16 20:23:26.834 Pass glass feel Speech also his. White PM rather return. Indicate can as exampl https://example.com/ 18714 \N 137901 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.39442246329104 0 \N \N f 0 \N 2 96582822 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138849 2023-02-18 03:12:15.166 2023-02-18 03:22:16.648 Best choice ma Single level story sound. Door end upon benefit second month together. That film little we under. Ma https://example.com/ 8841 \N 138849 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.44984244370608 0 \N \N f 0 \N 4 106977815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 141061 2023-02-21 11:23:05.468 2023-11-28 11:08:18.328 Town listen som Reach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give mea https://example.com/ 18735 \N 141061 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.6481101717581 0 \N \N f 0 \N 2 162591639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 143191 2023-02-24 16:31:55.86 2023-02-24 16:41:56.771 Story do plant get Tax here if project. Thi https://example.com/ 13753 \N 143191 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.779430030562 0 \N \N f 0 \N 3 138707906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 145488 2023-03-01 08:39:47.711 2023-03-01 08:49:48.901 Hot society st East fast despite re https://example.com/ 18313 \N 145488 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4773510390316 0 \N \N f 0 \N 5 107183296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 148706 2023-03-07 08:57:47.473 2023-03-07 09:07:48.705 Big field ce From democratic trial American blue. Save carry son else. While https://example.com/ 21492 \N 148706 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.95499855620054 0 \N \N f 0 \N 5 120586843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 152624 2023-03-15 18:55:01.705 2023-03-15 19:05:03.482 Consumer poin Her https://example.com/ 1745 \N 152624 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.23940881206758 0 \N \N f 0 \N 6 101392907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1698 2021-09-03 19:44:48.527 2023-10-01 23:49:54.812 Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact sou \N https://example.com/ 17722 \N 1698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3339698492971 0 \N \N f 0 \N 7 151686460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 158337 2023-03-29 11:32:51.933 2023-03-29 11:42:52.917 Light check bu Least start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nWe course us bank recently significant myself. Of past themselves conditio https://example.com/ 11621 \N 158337 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.7057366505007 0 \N \N f 0 \N 11 242331356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169365 2023-04-25 05:36:54.001 2024-02-25 19:20:36.969 Fall health d Stage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get mai https://example.com/ 15226 \N 169365 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2947545242815 0 \N \N f 0 \N 8 57166571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 171026 2023-04-28 13:12:18.832 2023-04-28 13:22:20.192 Study question sing Toward position themselves news uni https://example.com/ 19815 \N 171026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.64951500856438 0 \N \N f 0 \N 4 155001988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 185781 2023-05-30 12:07:07.562 2023-05-30 12:17:08.946 Federal a Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine https://example.com/ 1784 \N 185781 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.85865866523894 0 \N \N f 0 \N 6 112494796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 203897 2023-07-04 12:31:52.325 2023-07-04 12:41:54.131 Five now source International ground thought comp https://example.com/ 12821 \N 203897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3046390781972 0 \N \N f 0 \N 2 109223920 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 212754 2023-07-23 02:57:21.706 2023-07-23 03:08:22.324 News half employe Se https://example.com/ 6260 \N 212754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0141077268662 0 \N \N f 0 \N 1 245161780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215876 2023-07-30 05:23:35.962 2023-11-21 17:20:05.16 Never heavy tab Gue https://example.com/ 1145 \N 215876 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5351823240398 0 \N \N f 0 \N 6 6174186 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 322965 2023-11-20 15:00:22.495 2023-11-23 16:43:27.544 Administrati Although thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include. https://example.com/ 12422 \N 322965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.10538041201278 0 \N \N f 0 \N 11 180300566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323538 2023-11-20 22:41:37.786 2023-12-02 20:51:42.269 Money rise give Possible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nTrade guy water between. Whom structu https://example.com/ 20998 \N 323538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2807142208889 0 \N \N f 0 \N 10 48737453 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 347079 2023-12-10 19:10:41.466 2023-12-10 19:20:42.852 Bag couple hot Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get s https://example.com/ 19189 \N 347079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6604061039749 0 \N \N f 0 \N 2 141060269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 365991 2023-12-25 17:48:48.584 2023-12-28 12:55:34.277 Grow last away wind Each show pull quite home mention would. Without around position wo https://example.com/ 14657 \N 365991 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89390229989929 0 \N \N f 0 \N 13 84548937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 369343 2023-12-28 17:05:24.48 2023-12-28 17:15:25.846 Measure whether or It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once https://example.com/ 20546 \N 369343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7519309308748 0 \N \N f 0 \N 6 68571754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1823 2021-09-07 16:14:47.761 2023-10-01 23:50:38.006 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who https://example.com/ 690 1816 1816.1823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3241609310903 0 \N \N f 0 \N 1 217395526 0 f f \N \N \N \N 1816 \N 0 0 \N \N f \N 380545 2024-01-08 03:33:31.642 2024-01-08 03:43:33.417 Exist ne Stock already suddenl https://example.com/ 647 \N 380545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0471973842437 0 \N \N f 0 \N 5 206997994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413565 2024-02-05 12:57:56.414 2024-02-06 19:50:18.192 Science sea sport Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Refle https://example.com/ 21103 \N 413565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.37082507634961 0 \N \N f 0 \N 3 59746929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414271 2024-02-05 21:31:46.384 2024-02-05 21:41:48.205 Theory teach dre Quite way soldier would back near. Modern conside https://example.com/ 15577 \N 414271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.082261827617458 0 \N \N f 0 \N 5 161758512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417769 2024-02-08 17:58:19.342 2024-02-09 09:59:32.028 Idea seem tend attack Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degr https://example.com/ 16809 \N 417769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.98353214040392 0 \N \N f 0 \N 11 54717535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 77038 2022-10-04 09:00:22.102 2022-10-04 09:00:22.102 \N Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south https://example.com/ 19553 76869 76869.77038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1426859921831 0 \N \N f 0 \N 0 9989805 0 f f \N \N \N \N 76869 \N 0 0 \N \N f \N 77060 2022-10-04 10:11:48.88 2022-10-04 10:11:48.88 \N Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture https://example.com/ 10638 77057 77057.77060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1011778996856 0 \N \N f 0 \N 5 59127099 0 f f \N \N \N \N 77057 \N 0 0 \N \N f \N 92863 2022-11-11 23:35:41.86 2022-11-11 23:35:41.86 Part dog him its government good. Growth action have perhaps if. Wi \N https://example.com/ 6578 \N 92863 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8049556512049 0 \N \N f 0 \N 0 79824653 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 92891 2022-11-12 01:10:00.103 2022-11-12 01:10:00.103 End inside like them according. Surface where camera base maybe subject smi \N https://example.com/ 21619 \N 92891 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.049008002314 0 \N \N f 0 \N 2 187594680 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 97606 2022-11-23 01:16:17.232 2022-11-23 01:16:17.232 \N Administration effort live any between partic https://example.com/ 14122 97530 97257.97522.97526.97530.97606 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6246525264073 0 \N \N f 0 \N 0 32262053 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N 137162 2023-02-15 23:11:52.2 2023-02-15 23:21:52.888 Possible serious black institution source Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simpl https://example.com/ 1142 \N 137162 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.28116660867121 0 \N \N f 0 \N 35 119278267 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1860 2021-09-08 11:46:08.878 2023-10-01 23:50:43.055 Fund spring who save three true. Past director Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit. https://example.com/ 21091 \N 1860 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7938177399544 0 \N \N f 0 \N 6 12996188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106912 2022-12-14 13:59:56.648 2022-12-14 13:59:56.648 \N Direction business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nPrevent machine source white and. Fact to https://example.com/ 19826 106903 106903.106912 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7482317547253 0 \N \N f 0 \N 0 117052452 0 f f \N \N \N \N 106903 \N 0 0 \N \N f \N 110402 2022-12-22 09:21:00.299 2022-12-22 09:21:00.299 Body situation without k Tax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail l https://example.com/ 12769 \N 110402 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 11.0557523802595 0 \N \N f 0 \N 0 153218577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 111818 2022-12-25 10:33:03.975 2022-12-25 10:33:03.975 Production per can TV ahead mill Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace https://example.com/ 20231 \N 111818 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9706315129187 0 \N \N f 0 \N 2 175484100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 115886 2023-01-01 13:03:04.816 2023-01-01 13:03:04.816 Morning create future po Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between eve https://example.com/ 2711 \N 115886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0753609646932 0 \N \N f 0 \N 4 106919161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 131107 2023-02-04 13:07:58.719 2023-02-04 13:17:59.772 Republican part letter tonight. Stay amount example low attorney. Easy ru \N https://example.com/ 1433 \N 131107 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8013529639215 0 \N \N f 0 \N 0 107356429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133719 2023-02-09 14:50:56.239 2023-02-09 15:00:57.555 Family material upon Democrat. Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact resea https://example.com/ 11038 \N 133719 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6060137661948 0 \N \N f 0 \N 45 99851970 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 135672 2023-02-13 14:59:09.192 2023-02-13 15:09:10.844 Research either follow across either investment Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow k https://example.com/ 3396 \N 135672 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9160584414084 0 \N \N f 0 \N 30 128918226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 135975 2023-02-13 22:32:17.085 2023-02-13 22:42:18.197 Game own manager. Everybody old Specific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor https://example.com/ 17116 \N 135975 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 13.2819682562148 0 \N \N f 0 \N 6 75832843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136272 2023-02-14 14:01:22.349 2023-02-14 14:11:24.197 Drive south traditional new what unit mother. Drug Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. https://example.com/ 16296 \N 136272 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.74347036758564 0 \N \N f 0 \N 26 165072372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136477 2023-02-14 19:03:41.092 2023-02-14 19:13:41.985 Pattern someone notice power fly. Ag Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nOpportunity hospital address action return different style. Beat magazine imagine great https://example.com/ 14818 \N 136477 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.91061858013162 0 \N \N f 0 \N 48 183781083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137066 2023-02-15 20:10:37.651 2023-02-15 20:20:39.258 \N Red production his nothin https://example.com/ 10638 137059 136482.136534.137059.137066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.69624386660634 0 \N \N f 0 \N 0 227328093 0 f f \N \N \N \N 136482 \N 0 0 \N \N f \N 137920 2023-02-16 20:49:21.842 2023-02-16 20:59:22.993 Walk apply partner stage. Stuff weste \N https://example.com/ 20218 \N 137920 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.2680852459305 0 \N \N f 0 \N 6 197526945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137340 2023-02-16 05:54:47.825 2023-02-16 06:04:49.263 Board collection beat and worry. Traditional apply general way l \N https://example.com/ 18507 \N 137340 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8731477720801 0 \N \N f 0 \N 6 127857792 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190541 2023-06-09 15:02:47.622 2023-06-09 15:12:49.237 Machine thus avoid result sing response. Leader outside bit wai Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nCollege quality yard box similar. Response movie clear https://example.com/ 2789 \N 190541 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 18.679793455064 0 \N \N f 0 \N 16 240365657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137577 2023-02-16 13:40:33.198 2023-02-16 13:50:34.714 Clear suggest true gas suddenly project. See Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy https://example.com/ 14990 \N 137577 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.39471459054145 0 \N \N f 0 \N 20 9506417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138228 2023-02-17 10:48:24.38 2023-02-17 10:58:25.809 \N Majority foot simply point day ch https://example.com/ 7675 138224 138031.138156.138224.138228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4783205706455 0 \N \N f 0 \N 2 144593911 0 f f \N \N \N \N 138031 \N 0 0 \N \N f \N 1903 2021-09-09 16:45:30.1 2023-10-01 23:50:47.284 Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forge \N https://example.com/ 1806 \N 1903 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2904965708369 0 \N \N f 0 \N 10 107246122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137607 2023-02-16 14:12:18.524 2023-02-16 14:22:20.375 Economy rest whatever spring among least against and. Hard suffer at Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phon https://example.com/ 21242 \N 137607 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9798856714533 0 \N \N f 0 \N 15 102826425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137765 2023-02-16 17:13:10.499 2023-02-16 17:23:11.731 Begin kind newspaper game process fine democratic whom. Wonder heavy c \N https://example.com/ 11750 \N 137765 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 27.0162019114353 0 \N \N f 0 \N 2 242598597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51697 2022-07-30 17:02:38.264 2023-10-02 04:59:45.999 Check worry radio fine Technology word wish say organization friend here. Go nearly https://example.com/ 684 \N 51697 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.58634477462702 0 \N \N f 0 \N 11 137126773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137922 2023-02-16 20:50:26.951 2023-02-16 21:00:28.433 \N Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Medi https://example.com/ 3392 137892 137821.137862.137881.137892.137922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.7226455429766 0 \N \N f 0 \N 2 35016858 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N 137972 2023-02-16 22:09:33.918 2023-02-16 22:19:35.225 Blood coach ci \N https://example.com/ 7510 \N 137972 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4443304496683 0 \N \N f 0 \N 0 31519420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138016 2023-02-16 22:56:53.993 2023-02-16 23:06:55.042 Financial all deep why car seat measure m \N https://example.com/ 646 \N 138016 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2728996278137 0 \N \N f 0 \N 1 227553670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138234 2023-02-17 11:04:12.934 2023-02-17 11:14:14.196 Probably agent catch computer difficult picture. Memory newspape Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine woman garden. Upon officer total election.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone pr https://example.com/ 20657 \N 138234 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0153677195254 0 \N \N f 0 \N 20 118801661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138031 2023-02-16 23:35:59.888 2023-02-16 23:46:01.002 Both peace drug most Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea https://example.com/ 19469 \N 138031 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.00089890686445 0 \N \N f 0 \N 27 68478570 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138100 2023-02-17 01:31:40.277 2023-02-17 01:41:41.296 Method show window brother. Buy right Rep Water actually point similar. Box war specific a over https://example.com/ 21430 \N 138100 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4601881672868 0 \N \N f 0 \N 7 73976740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138113 2023-02-17 02:57:51.824 2023-02-17 03:07:53.227 Leader partner among describe unit star i Yard someone shake final someone purpose. Remain say care bu https://example.com/ 5293 \N 138113 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.04110780134353 0 \N \N f 0 \N 8 117634987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51706 2022-07-30 17:12:14.316 2023-10-02 04:59:46.036 Yourself debate term during boy. Long inter https://example.com/ 7978 \N 51706 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.39682704116726 0 \N \N f 0 \N 14 97499588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51731 2022-07-30 17:40:50.383 2023-10-02 04:59:46.147 Already reduce grow only chance opportunity Spend democratic second find presi https://example.com/ 6578 \N 51731 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.02931049827853 0 \N \N f 0 \N 27 140438513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138151 2023-02-17 06:14:50.452 2023-02-17 06:24:51.425 Although thought fall today protect ago. A \N https://example.com/ 18956 \N 138151 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.887531849983 0 \N \N f 0 \N 0 21657743 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138156 2023-02-17 06:32:57.337 2023-02-17 06:42:58.371 \N Common loss oil be. Wrong water cover yet edge trouble. Business lose reach aro https://example.com/ 18220 138031 138031.138156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5807547705802 0 \N \N f 0 \N 4 37656237 0 f f \N \N \N \N 138031 \N 0 0 \N \N f \N 138163 2023-02-17 06:47:37.143 2023-02-17 06:57:38.632 Black leg through occur possible century far. Part fly follow Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nBlack leg through occur possi https://example.com/ 19527 \N 138163 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9156462064418 0 \N \N f 0 \N 3 186632304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138168 2023-02-17 07:15:01.339 2023-02-17 07:25:02.949 Least nor building physical wide s We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Ei https://example.com/ 1236 \N 138168 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.46382583161238 0 \N \N f 0 \N 15 219407038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138238 2023-02-17 11:11:30.174 2023-02-17 11:21:31.986 Again reveal time hot kin Remember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room https://example.com/ 3400 \N 138238 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 12.2831191443581 0 \N \N f 0 \N 5 217114374 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138428 2023-02-17 16:29:03.49 2023-02-17 16:39:04.782 Already reduce grow only chance opportunity Exist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nResponsibility record term https://example.com/ 3371 \N 138428 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.65925790442507 0 \N \N f 0 \N 21 21673902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51753 2022-07-30 18:25:33.596 2023-10-02 04:59:46.384 Past everybody chance health. Minute choice your half by \N https://example.com/ 18873 \N 51753 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.8568480742685 0 \N \N f 0 \N 7 217894843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51758 2022-07-30 18:30:03.626 2023-10-02 04:59:46.413 In grow start way president as compare. Away pe Then voice gun. Might beautiful recognize artist. Week customer rather wonder company becau https://example.com/ 19777 \N 51758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.028079241306 0 \N \N f 0 \N 4 54950096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138518 2023-02-17 18:29:20.469 2023-02-17 18:39:21.686 Beyond new strong important. Final sport thus physi Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause s https://example.com/ 14941 \N 138518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3163012368777 0 \N \N f 0 \N 73 30837593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138663 2023-02-17 21:37:54.195 2023-02-17 21:47:55.359 Capital treat s Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss https://example.com/ 16212 \N 138663 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.8105093973836 0 \N \N f 0 \N 4 90432608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138717 2023-02-17 23:39:30.695 2023-02-17 23:49:32.389 \N West possible modern office manage people. Major begin skin sit those step PM candidate. https://example.com/ 1298 138687 138687.138717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1529781550664 0 \N \N f 0 \N 8 245002268 0 f f \N \N \N \N 138687 \N 0 0 \N \N f \N 138731 2023-02-18 00:03:09.228 2023-02-18 00:13:10.349 \N Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past https://example.com/ 11938 138518 138518.138731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.92009181186116 0 \N \N f 0 \N 6 65812288 0 f f \N \N \N \N 138518 \N 0 0 \N \N f \N 1929 2021-09-10 13:17:59.158 2023-10-01 23:50:47.686 \N Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional https://example.com/ 21012 1907 1903.1904.1905.1906.1907.1929 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.532444524817 0 \N \N f 0 \N 3 61614927 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N 139002 2023-02-18 10:07:56.867 2023-02-18 10:17:57.877 Speech also his. White PM rather return. Indicate c \N https://example.com/ 21148 \N 139002 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 29.645863356635 0 \N \N f 0 \N 16 117183551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139162 2023-02-18 15:12:01.544 2023-02-18 15:22:03.104 Off behind four class talk. Nor these prove tend itself. Gas low church \N https://example.com/ 5522 \N 139162 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9185486298048 0 \N \N f 0 \N 1 163493524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139358 2023-02-18 19:45:11.985 2023-02-18 19:55:14.063 Science sea sport term page near. Agreement forget age center yes. Figure allow \N https://example.com/ 17095 \N 139358 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 25.3776021080059 0 \N \N f 0 \N 28 60215373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139558 2023-02-19 07:17:26.102 2023-02-19 07:27:27.183 Response finally play political tonight wear live Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his https://example.com/ 6268 \N 139558 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.25563479163834 0 \N \N f 0 \N 13 216691292 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139618 2023-02-19 11:21:59.137 2023-02-19 11:32:00.476 Plant development someone inc Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nMany then growth. Law become return event parent I boy. Increase firm p https://example.com/ 9200 \N 139618 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3721319335447 0 \N \N f 0 \N 28 14801335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51594 2022-07-30 14:07:58.659 2023-10-02 04:59:45.106 Right term sell s Writer everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward fin https://example.com/ 20647 \N 51594 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.93562392751424 0 \N \N f 0 \N 38 89313555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404189 2024-01-28 18:24:31.892 2024-01-28 18:34:32.782 \N Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. https://example.com/ 6003 404150 404042.404150.404189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2051767877554 0 \N \N f 0 \N 6 27099758 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 139951 2023-02-19 20:18:49.553 2023-02-19 20:28:50.749 Adult carry training two c Then voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nForget throughout https://example.com/ 19996 \N 139951 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8301384901803 0 \N \N f 0 \N 0 139163467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139989 2023-02-19 21:35:37.84 2023-02-19 21:45:38.838 Human since Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current addres https://example.com/ 5852 \N 139989 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.60305164377486 0 \N \N f 0 \N 23 6433730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140046 2023-02-19 22:46:03.916 2023-02-19 22:56:05.118 Similar event two high mouth. Seem \N https://example.com/ 656 \N 140046 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.0473724836086 0 \N \N f 0 \N 2 54171919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140192 2023-02-20 04:09:06.82 2023-02-20 04:19:08.049 Language effort sport mention guess way. Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nRise environmental midd https://example.com/ 8448 \N 140192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8632839751143 0 \N \N f 0 \N 10 113271033 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140382 2023-02-20 11:36:53.198 2023-02-20 11:46:54.375 Maybe doctor performance school. Happen per di \N https://example.com/ 17707 \N 140382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6030780718861 0 \N \N f 0 \N 5 200477774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140403 2023-02-20 12:18:00.624 2023-02-20 12:28:01.887 Wrong spring according trial federal although. Apply Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack opt https://example.com/ 1124 \N 140403 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6413812580665 0 \N \N f 0 \N 6 69257508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140432 2023-02-20 13:06:34.982 2023-02-20 13:16:36.156 May building suffer accept thousand race record play. Also may f \N https://example.com/ 21605 \N 140432 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 14.6027758137049 0 \N \N f 0 \N 9 33839783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1970 2021-09-11 02:35:24.726 2023-10-01 23:51:00.12 \N Operation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training respons https://example.com/ 661 1968 1952.1965.1968.1970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00606385590074 0 \N \N f 0 \N 2 24197763 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N 151803 2023-03-13 21:21:03.967 2023-03-13 21:31:05.235 Under big evening others. Trip remain money region Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nFederal anyone interview continue eat. T https://example.com/ 15094 \N 151803 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1224936307569 0 \N \N f 0 \N 3 191507938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 152349 2023-03-15 08:18:04.453 2023-03-15 08:28:05.865 Everybody laugh key left specific wonder. Per low clear s \N https://example.com/ 1602 \N 152349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8275564298416 0 \N \N f 0 \N 4 19601779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169282 2023-04-24 22:34:34.546 2023-04-24 22:44:35.786 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important artic https://example.com/ 17707 169274 169274.169282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.518054925853022 0 \N \N f 0 \N 4 242604250 0 f f \N \N \N \N 169274 \N 0 0 \N \N f \N 169784 2023-04-25 22:05:13.062 2023-04-25 22:15:14.738 Personal factor big better. Itself up senior health. Seek about s \N https://example.com/ 14260 \N 169784 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.31600830001866 0 \N \N f 0 \N 13 41208273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190543 2023-06-09 15:05:23.951 2023-06-09 15:15:25.439 Young shake push apply stand. Benefit ahead others lis Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. https://example.com/ 15336 \N 190543 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1084026489247 0 \N \N f 0 \N 5 124866128 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2011 2021-09-12 17:17:16.163 2023-10-01 23:51:03.557 \N Push recently lay whose. Window network friend foot cold be. Way cultural https://example.com/ 16788 2008 2002.2008.2011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2733465146197 0 \N \N f 0 \N 2 109864430 0 f f \N \N \N \N 2002 \N 0 0 \N \N f \N 190559 2023-06-09 15:41:11.613 2023-06-09 15:51:12.998 \N South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do si https://example.com/ 5444 190541 190541.190559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7333684310434 0 \N \N f 0 \N 2 212677712 0 f f \N \N \N \N 190541 \N 0 0 \N \N f \N 190975 2023-06-10 14:39:57.905 2023-06-10 14:49:58.683 Break site describe addre Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal s https://example.com/ 706 \N 190975 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.50343466802306 0 \N \N f 0 \N 58 180735681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 246723 2023-09-07 06:52:33.073 2023-09-07 07:02:34.774 \N Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nPolitics or often interview. Chair value threat likely on https://example.com/ 964 246718 246718.246723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3530469417465 0 \N \N f 0 \N 5 236075125 0 f f \N \N \N \N 246718 \N 0 0 \N \N f \N 246990 2023-09-07 12:52:47.034 2023-09-07 13:02:49.295 White have l Hundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environ https://example.com/ 19902 \N 246990 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.41551880034286 0 \N \N f 0 \N 14 202935835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 259866 2023-09-20 11:38:47.963 2023-09-20 11:48:50.018 Any note pick American lead m Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nResource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Treatment realize exist indeed letter manager. My business teacher entire piece few know.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nSpecial thought day cup hard central. Situation attention na https://example.com/ 19469 \N 259866 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 11.6243231465054 0 \N \N f 0 \N 48 160782878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2080 2021-09-13 17:16:31.901 2023-10-01 23:51:08.077 Police civil here think minute economic. Let fat \N https://example.com/ 12808 \N 2080 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7525734836061 0 \N \N f 0 \N 4 238410217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 288946 2023-10-20 07:55:18.224 2023-10-20 08:05:20.106 Parent control wide song section few. Region o Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nLight envir https://example.com/ 19907 \N 288946 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.3209951735894 0 \N \N f 0 \N 9 240644471 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51604 2022-07-30 14:25:01.29 2023-10-02 04:59:45.151 Benefit car actually you open. Election hear wide Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite. https://example.com/ 4474 \N 51604 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.0107369034132 0 \N \N f 0 \N 15 166089589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51616 2022-07-30 14:52:21.742 2023-10-02 04:59:45.222 Them debate main bad. \N https://example.com/ 11938 \N 51616 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.281275366900324 0 \N \N f 0 \N 2 5088325 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51654 2022-07-30 15:39:55.353 2023-10-02 04:59:45.824 Board Mr bar white alone hot. Court class f \N https://example.com/ 1141 \N 51654 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6673309940955 0 \N \N f 0 \N 9 199613409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51684 2022-07-30 16:30:36.25 2023-10-02 04:59:45.955 Sense edge father camera Police do base plan how. https://example.com/ 11091 \N 51684 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.93981382545804 0 \N \N f 0 \N 3 173272145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51689 2022-07-30 16:34:22.541 2023-10-02 04:59:45.974 Material focus experience picture. Future still full blood sugges Night on mention rather nation soldier everything. H https://example.com/ 2039 \N 51689 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7782628451357 0 \N \N f 0 \N 0 177222069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 38225 2022-06-23 14:33:29.905 2024-02-22 13:34:35.81 Artist sound ret Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nWar black change thing https://example.com/ 21116 \N 38225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.35821521607109 0 \N \N f 0 \N 1 15333735 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52432 2022-08-01 00:07:49.822 2023-10-02 05:00:40.028 Five now source affect police. Various nature large campai Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nGame management go ready star call how. Total sister make. End physical compare https://example.com/ 19809 \N 52432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3630182367569 0 \N \N f 0 \N 7 132866718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52461 2022-08-01 01:54:24.178 2023-10-02 05:00:42.856 Different dog example. Themselves up or Truth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score https://example.com/ 2101 \N 52461 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.28434982169123 0 \N \N f 0 \N 1 223003612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52482 2022-08-01 03:53:11.589 2023-10-02 05:00:55.396 Tax here if project. Thing how simply then. Against single daug Measure whet https://example.com/ 13878 \N 52482 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.879503698202 0 \N \N f 0 \N 2 56746800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52523 2022-08-01 05:50:15.657 2023-10-02 05:01:02.754 Born value hundred medical loss. Kid w \N https://example.com/ 9109 \N 52523 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5452410709955 0 \N \N f 0 \N 10 106273811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52742 2022-08-01 14:56:22.323 2023-10-02 05:01:33.96 Risk past wit Alone the crime night stay back. Summer certa https://example.com/ 4250 \N 52742 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1678931825226 0 \N \N f 0 \N 4 38556787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52748 2022-08-01 15:11:14.42 2023-10-02 05:01:33.985 From democratic trial American blue. Save carry son else. While studen Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready i https://example.com/ 1738 \N 52748 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.6341111320188 0 \N \N f 0 \N 6 229619778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52809 2022-08-01 17:00:52.834 2023-10-02 05:01:35.365 Finish only air provide. Wife can development \N https://example.com/ 21562 \N 52809 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3369931572867 0 \N \N f 0 \N 4 147245880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52871 2022-08-01 18:47:22.089 2023-10-02 05:01:36.655 Step phy Point box near. Affect glass next https://example.com/ 15526 \N 52871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3244594389854 0 \N \N f 0 \N 0 91509371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 119101 2023-01-07 20:46:06.531 2024-02-23 17:35:44.335 Maybe doctor pe Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment gene https://example.com/ 4313 \N 119101 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4776274897217 0 \N \N f 0 \N 7 162096602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 33808 2022-06-03 14:58:18.74 2023-10-02 01:23:14.297 Even hot politica Professional remain report involve eye outside. Military boy they. https://example.com/ 19007 \N 33808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5251548081805 0 \N \N f 0 \N 3 40178352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52886 2022-08-01 19:08:39.696 2023-10-02 05:01:36.738 Key stuff company they base well night. W Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish. https://example.com/ 739 \N 52886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.93148329528266 0 \N \N f 0 \N 4 15356888 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1620 2021-09-01 22:51:06.257 2023-10-01 23:49:47.243 Establish mater Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult https://example.com/ 18919 \N 1620 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.3560929287212 0 \N \N f 0 \N 41 60226643 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4177 2021-10-28 07:15:24.988 2024-02-23 12:01:53.068 Fish health while enj Ro https://example.com/ 21140 \N 4177 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.45984360990681 0 \N \N f 0 \N 2 188722531 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5705 2021-12-02 20:05:03.2 2023-10-01 23:56:59.206 Sense edge father camera. Region whose enough vote up. Final Lay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid t https://example.com/ 20563 \N 5705 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.09142316099922 0 \N \N f 0 \N 4 44864614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7139 2022-01-04 15:04:23.613 2023-10-01 23:59:15.185 \N Practice see become. Chance education industry when attorney hi https://example.com/ 5578 7138 7138.7139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4149595798811 0 \N \N f 0 \N 0 209513983 0 f f \N \N \N \N 7138 \N 0 0 \N \N f \N 9544 2022-02-01 19:52:12.94 2023-10-02 00:04:38.597 \N Go effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign char https://example.com/ 2639 9512 9497.9512.9544 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.47993909734954 0 \N \N f 0 \N 1 147335565 0 f f \N \N \N \N 9497 \N 0 0 \N \N f \N 24587 2022-05-02 05:53:08.688 2023-10-02 00:53:04.748 Tell billion now tough chair fig Four learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach https://example.com/ 18380 \N 24587 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.0669973873269 0 \N \N f 0 \N 35 242819638 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 28119 2022-05-13 16:44:11.151 2024-02-20 20:40:57.834 Play director emp Seat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program d https://example.com/ 13398 \N 28119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5627342739079 0 \N \N f 0 \N 2 219923425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 35694 2022-06-11 11:36:23.943 2023-10-02 01:29:19.937 Radio have every concern. Letter fund artist fine argue \N https://example.com/ 18269 \N 35694 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.20530910465881 0 \N \N f 0 \N 1 35476459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 60106 2022-08-18 04:38:55.1 2024-02-27 16:32:12.679 Stage can Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method litt https://example.com/ 4768 \N 60106 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.052623914592 0 \N \N f 0 \N 32 9777239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 60799 2022-08-19 13:16:36.57 2023-10-02 05:24:35.842 \N By evening job should nature really. Cut black m https://example.com/ 1352 1620 1620.60799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0475053758251 0 \N \N f 0 \N 2 91429164 0 f f \N \N \N \N 1620 \N 0 0 \N \N f \N 61082 2022-08-20 11:58:17.368 2024-02-27 09:22:39.449 Practice press Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nMoney rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare electi https://example.com/ 6149 \N 61082 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.09606322483386 0 \N \N f 0 \N 13 167858458 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 62094 2022-08-23 04:59:32.579 2023-10-02 05:27:13.86 Already real me back ahead especially drug late. Doctor m \N https://example.com/ 18017 \N 62094 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6548107413441 0 \N \N f 0 \N 2 173417756 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 64063 2022-08-29 03:18:27.644 2023-10-02 05:36:05.276 \N Leg maintain action material little field. Difference realize phone ex https://example.com/ 15060 64041 64041.64063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.73670040743441 0 \N \N f 0 \N 0 33944004 0 f f \N \N \N \N 64041 \N 0 0 \N \N f \N 64096 2022-08-29 05:55:39.006 2023-10-02 05:36:13.362 \N Speak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discu https://example.com/ 18313 64041 64041.64096 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8230196433882 0 \N \N f 0 \N 0 165319345 0 f f \N \N \N \N 64041 \N 0 0 \N \N f \N 64254 2022-08-29 17:06:15.193 2023-10-02 05:36:27.159 \N Something black staff. Glass hospital force stand e https://example.com/ 20180 64041 64041.64254 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5615940341829 0 \N \N f 0 \N 0 210693426 0 f f \N \N \N \N 64041 \N 0 0 \N \N f \N 132773 2023-02-07 21:06:38.087 2023-02-07 21:16:40.218 \N Reflect fill team movie draw red group. Congress without main. Inside ago t https://example.com/ 12024 132763 132763.132773 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75737679797348 0 \N \N f 0 \N 5 232219783 0 f f \N \N \N \N 132763 \N 0 0 \N \N f \N 64293 2022-08-29 18:59:29.143 2023-10-02 05:36:43.434 Store special Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On https://example.com/ 16867 \N 64293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6578198515093 0 \N \N f 0 \N 133 195850675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 64302 2022-08-29 19:04:53.205 2023-10-02 05:36:43.488 \N Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much publ https://example.com/ 20287 64293 64293.64302 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.76184288111514 0 \N \N f 0 \N 3 201406580 0 f f \N \N \N \N 64293 \N 0 0 \N \N f \N 70739 2022-09-16 11:13:57.732 2023-10-02 09:16:36.273 How never cut grow benefit. Dinner environmen \N https://example.com/ 2022 \N 70739 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.444751761838624 0 \N \N f 0 \N 5 97311492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 71841 2022-09-20 00:42:29.945 2024-02-26 07:54:04.372 Price occur station Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue ca https://example.com/ 18904 \N 71841 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5441706986096 0 \N \N f 0 \N 2 215741942 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 73097 2022-09-22 20:28:50.454 2023-10-02 09:26:44.709 Job stage use material manage. Perhaps nothing project ani \N https://example.com/ 15088 \N 73097 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.82898130134965 0 \N \N f 0 \N 2 112675365 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 78763 2022-10-08 02:39:10.998 2024-02-26 20:29:26.229 Try hospital student. Grow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nWe quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nMachine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic https://example.com/ 6578 \N 78763 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5061430294654 0 \N \N f 0 \N 7 135248900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 85385 2022-10-25 04:25:27.859 2024-02-29 02:17:25.532 Skill governm Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method https://example.com/ 21405 \N 85385 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.840342419574 0 \N \N f 0 \N 1 249479452 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 87857 2022-10-31 20:59:38.574 2022-10-31 20:59:38.574 Sort thus staff hard network character production million. House develop theory Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nTell billion now tough chair fig https://example.com/ 3342 \N 87857 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9573266825253 0 \N \N f 0 \N 57 233793585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 89179 2022-11-04 02:01:38.617 2024-02-26 19:01:50.514 Health catch toward Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nIf put nothing put pick futur https://example.com/ 19581 \N 89179 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0716504546686 0 \N \N f 0 \N 9 217325001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 89590 2022-11-04 21:35:40.496 2022-11-04 21:35:40.496 Door wrong under assume get wear. Full least wrong administration. \N https://example.com/ 19096 \N 89590 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8509596071642 0 \N \N f 0 \N 4 132441616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 93211 2022-11-12 19:25:17.405 2024-02-25 15:20:39.942 State wall Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nDevelopment political left not every t https://example.com/ 15474 \N 93211 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8264837600546 0 \N \N f 0 \N 4 64490679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 97082 2022-11-21 21:55:52.858 2022-11-21 21:55:52.858 Fish health while enjoy. Step check prevent sell political manage. Walk gr Some nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nSuch house management. Bed defense remember help sit pull for. Owner democratic development store under. Big should sort nice year. Yard western seek nature parent. Although memory teach picture tax least.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend https://example.com/ 4574 \N 97082 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5000530153891 0 \N \N f 0 \N 33 228679514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 101739 2022-12-02 22:59:44.31 2022-12-02 22:59:44.31 Fear size with rich skin decade community. Front either election mout \N https://example.com/ 21079 \N 101739 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.502211148366776 0 \N \N f 0 \N 2 184287343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 113193 2022-12-26 23:12:12.45 2022-12-26 23:12:12.45 \N Child air perso https://example.com/ 684 24588 24588.113193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.201546834792 0 \N \N f 0 \N 0 133797467 0 f f \N \N \N \N 24588 \N 0 0 \N \N f \N 113364 2022-12-26 23:34:15.684 2022-12-26 23:34:15.684 \N Political perha https://example.com/ 12049 14461 14461.113364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.25284030119277 0 \N \N f 0 \N 0 132675163 0 f f \N \N \N \N 14461 \N 0 0 \N \N f \N 113473 2022-12-27 00:02:01.552 2022-12-27 00:02:01.552 \N Ten answer natu https://example.com/ 4035 7138 7138.113473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74459123186774 0 \N \N f 0 \N 0 83215350 0 f f \N \N \N \N 7138 \N 0 0 \N \N f \N 132763 2023-02-07 20:40:34.763 2023-02-07 20:50:36.231 Fish environmental factor popular series local. Ready each election sell. Fine r Material arm interest draw production. Develop play consider chair. Pick analysis hand lette https://example.com/ 4388 \N 132763 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3339773439065 0 \N \N f 0 \N 9 50484031 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132834 2023-02-07 23:01:17.446 2023-02-07 23:11:18.368 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. https://example.com/ 18815 132830 132763.132773.132774.132830.132834 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.57531474478149 0 \N \N f 0 \N 2 214156218 0 f f \N \N \N \N 132763 \N 0 0 \N \N f \N 137071 2023-02-15 20:22:13.833 2023-02-15 20:32:14.572 Back spend task real. Relationship offer computer. Floor tend something International yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Impr https://example.com/ 21393 \N 137071 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.16631924600319 0 \N \N f 0 \N 22 70986188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139939 2023-02-19 20:02:38.997 2024-02-26 03:01:33 Very maybe Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. https://example.com/ 1038 \N 139939 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5697280210844 0 \N \N f 0 \N 3 20550737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 141924 2023-02-22 17:10:38.581 2023-02-22 17:10:38.581 Thing type great Mr. C Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nAt audience she. Skill performance represent mouth score side air. Alone yo https://example.com/ 21373 \N 141924 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 24.6479245903125 0 \N \N f 0 \N 8 151604222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 199147 2023-06-25 14:51:52.464 2023-06-25 15:01:54.01 Technology word wish say organization friend here. G Story do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. https://example.com/ 16059 \N 199147 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.92798486438268 0 \N \N f 0 \N 12 123662842 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 144708 2023-02-27 15:02:58.679 2024-02-20 04:23:54.823 Type door clear l Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However l https://example.com/ 12268 \N 144708 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3035078509767 0 \N \N f 0 \N 2 245279594 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 178804 2023-05-15 15:08:11.233 2023-05-15 15:18:12.898 Direction business early probably black \N https://example.com/ 9084 \N 178804 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9235425874102 0 \N \N f 0 \N 4 140047290 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 145279 2023-02-28 19:28:36.536 2023-02-28 19:38:38.302 Build toward black meet no your. Face Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nThen political wait so remain throw anything. Produ https://example.com/ 12708 \N 145279 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.1400111919627 0 \N \N f 0 \N 26 172029754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 147162 2023-03-04 14:11:28.797 2023-03-04 14:21:30.604 Agent huge issue positive ai Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make intere https://example.com/ 1733 \N 147162 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.559033626423897 0 \N \N f 0 \N 46 138755312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 147261 2023-03-04 16:58:45.224 2023-03-04 17:08:46.597 \N Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel i https://example.com/ 8459 147164 147162.147164.147261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4099397111537 0 \N \N f 0 \N 1 162528252 0 f f \N \N \N \N 147162 \N 0 0 \N \N f \N 147269 2023-03-04 17:05:41.368 2023-03-04 17:15:42.616 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share co https://example.com/ 15624 147261 147162.147164.147261.147269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45566536393051 0 \N \N f 0 \N 0 215104726 0 f f \N \N \N \N 147162 \N 0 0 \N \N f \N 147331 2023-03-04 18:48:13.672 2023-03-04 18:58:14.807 Join push remain behavior. Various song no success Say this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom l https://example.com/ 980 \N 147331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.40446396481629 0 \N \N f 0 \N 3 239431058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187585 2023-06-03 10:07:56.122 2023-06-03 10:17:57.33 \N Trip improve https://example.com/ 725 187580 187580.187585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.88872362162506 0 \N \N f 0 \N 12 368212 0 f f \N \N \N \N 187580 \N 0 0 \N \N f \N 175083 2023-05-07 10:10:11.088 2024-02-25 11:23:51.843 Blood very who Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nAcce https://example.com/ 15925 \N 175083 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.27125708906243 0 \N \N f 0 \N 2 54285831 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427993 2024-02-16 21:07:59.652 2024-02-16 21:18:01.348 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern dire https://example.com/ 18309 427520 423667.423687.423704.423736.423785.424066.424138.426541.426693.427520.427993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0491482709361 0 \N \N f 0 \N 0 202846181 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 179354 2023-05-16 15:02:41.786 2023-05-16 15:12:43.591 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nStay worry day know land alone. Green he staff soon air general information https://example.com/ 19198 179278 179245.179278.179354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6037596863622 0 \N \N f 0 \N 4 113169015 0 f f \N \N \N \N 179245 \N 0 0 \N \N f \N 147648 2023-03-05 13:17:20.876 2023-03-05 13:27:22.14 Fly run executive. Reach next best machine organ Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story https://example.com/ 5003 \N 147648 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.12098059380187 0 \N \N f 0 \N 21 212798958 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 147657 2023-03-05 13:43:02.305 2023-03-05 13:53:03.63 \N Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden a https://example.com/ 16808 147648 147648.147657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62267848504609 0 \N \N f 0 \N 1 155168451 0 f f \N \N \N \N 147648 \N 0 0 \N \N f \N 148464 2023-03-06 20:01:15.238 2023-03-06 20:11:17.244 \N Speech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order busi https://example.com/ 1596 148309 148307.148309.148464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9322629673739 0 \N \N f 0 \N 2 72582297 0 f f \N \N \N \N 148307 \N 0 0 \N \N f \N 153738 2023-03-18 13:10:38.807 2023-03-18 13:20:40.525 \N More recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority https://example.com/ 20162 153717 153683.153717.153738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1548835446266 0 \N \N f 0 \N 1 159026644 0 f f \N \N \N \N 153683 \N 0 0 \N \N f \N 157847 2023-03-28 09:00:09.06 2023-03-28 09:10:10.093 Tell difference pattern carr Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy questio https://example.com/ 2016 \N 157847 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2169711206018 0 \N \N f 0 \N 23 247814959 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 161752 2023-04-07 01:16:20.603 2023-04-07 01:26:22.735 For wrong offer a. Image bad should executive society Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case rec https://example.com/ 19535 \N 161752 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.65496648793694 0 \N \N f 0 \N 14 143207093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2186 2021-09-16 12:03:25.445 2023-10-01 23:51:12.697 Machine thousand dete Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor t https://example.com/ 18678 \N 2186 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.3514824221138 0 \N \N f 0 \N 11 150953062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 164155 2023-04-13 10:09:12.881 2023-04-13 10:19:14.633 \N List professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop https://example.com/ 994 164151 164151.164155 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0444953228688 0 \N \N f 0 \N 16 24109738 0 f f \N \N \N \N 164151 \N 0 0 \N \N f \N 165307 2023-04-15 18:48:53.052 2023-04-15 18:58:54.428 Staff likely color finish at lot ball one. Scientist yeah develop require shou Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response fo https://example.com/ 21159 \N 165307 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1523386856452 0 \N \N f 0 \N 2 28206952 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 167900 2023-04-21 17:25:45.663 2023-04-21 17:35:47.479 Answer party get head Democrat. Marria \N https://example.com/ 20897 \N 167900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5873250103613 0 \N \N f 0 \N 6 27597356 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169575 2023-04-25 15:45:35.888 2023-04-25 15:55:37.167 Them debate main bad. Personal securi \N https://example.com/ 2293 \N 169575 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4808175596869 0 \N \N f 0 \N 1 117593179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 176183 2023-05-09 13:33:19.82 2023-05-09 13:43:21.213 Her particular kind sound hard b Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing spe https://example.com/ 1611 \N 176183 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3189718274471 0 \N \N f 0 \N 5 127578655 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 176370 2023-05-09 21:45:51.792 2023-05-09 21:55:53.749 Job stage use material manage. Perhaps nothing project animal Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit ret https://example.com/ 667 \N 176370 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1977670365159 0 \N \N f 0 \N 19 72494062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 179891 2023-05-17 13:51:32.217 2023-05-17 14:01:33.346 Man talk arm player scene reflect. Wi Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nReal who consider answer affect similar continue. Life almost no https://example.com/ 9355 \N 179891 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7193920903184 0 \N \N f 0 \N 21 225235515 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 183537 2023-05-24 20:57:06.455 2024-02-24 13:15:18.153 Be human year Parent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand a https://example.com/ 722 \N 183537 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2448292368601 0 \N \N f 0 \N 24 145834876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 185956 2023-05-30 16:16:35.332 2024-02-20 04:04:24.583 Right student ya His mean individual benefit push consider. Administratio https://example.com/ 21441 \N 185956 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.48125857088291 0 \N \N f 0 \N 7 158710403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187532 2023-06-03 06:28:55.02 2023-06-03 06:38:56.431 Region model over box relate computer consumer. Everything city president water \N https://example.com/ 15239 \N 187532 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.38187469274366 0 \N \N f 0 \N 3 15545068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 188490 2023-06-05 15:25:42.665 2023-06-05 15:35:43.614 Fund spring who save \N https://example.com/ 8841 \N 188490 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 29.8699767392414 0 \N \N f 0 \N 15 191640901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 253513 2023-09-14 11:15:17.508 2023-09-14 11:25:18.634 Understand Mr score until. Debate accordin Face opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color own https://example.com/ 19639 \N 253513 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.2432531890388 0 \N \N f 0 \N 86 234309060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190861 2023-06-10 08:04:40.741 2023-06-10 08:14:42.343 \N Never money Congress data single trial. Today water everythin https://example.com/ 19469 190605 190541.190605.190861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3080846642009 0 \N \N f 0 \N 1 26054090 0 f f \N \N \N \N 190541 \N 0 0 \N \N f \N 200414 2023-06-27 18:21:37.747 2024-02-21 11:17:16.286 Own about father behi Born value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot c https://example.com/ 20730 \N 200414 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4119433275867 0 \N \N f 0 \N 3 244568399 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191840 2023-06-12 12:26:28.718 2024-02-26 14:55:51.799 Strong of cre Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nAdd bar degree beat since. Somebody of compare sea partner. Live indee https://example.com/ 17741 \N 191840 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4620165237379 0 \N \N f 0 \N 5 200968964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 193487 2023-06-14 20:05:16.583 2023-06-14 20:15:17.846 Center stand nea Condition lose result detail final w https://example.com/ 21556 \N 193487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2016524122914 0 \N \N f 0 \N 2 162989949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194132 2023-06-16 03:00:24.35 2023-06-16 03:10:25.497 \N Method same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base https://example.com/ 5759 193990 193990.194132 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13439343554858 0 \N \N f 0 \N 0 211941770 0 f f \N \N \N \N 193990 \N 0 0 \N \N f \N 194782 2023-06-17 07:26:01.195 2023-06-17 07:36:02.672 Always line hot record. Hard Each show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity https://example.com/ 12821 \N 194782 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6101500845974 0 \N \N f 0 \N 21 596772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194867 2023-06-17 11:47:32.184 2023-06-17 11:57:33.795 \N Trade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question somet https://example.com/ 18017 194785 194782.194785.194867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0671089845981 0 \N \N f 0 \N 0 146731754 0 f f \N \N \N \N 194782 \N 0 0 \N \N f \N 195512 2023-06-18 17:22:19.847 2024-02-24 10:40:20.825 Billion here large S https://example.com/ 2390 \N 195512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.49917037821979 0 \N \N f 0 \N 2 100204069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 19331 2022-04-12 01:05:03.062 2023-10-02 00:35:59.324 Race site manager blo Time woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material R https://example.com/ 8570 \N 19331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.63538177549892 0 \N \N f 0 \N 3 140151279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 199286 2023-06-25 18:47:57.202 2023-06-25 18:57:58.958 \N Way majo https://example.com/ 12188 199264 199264.199286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4296370666458 0 \N \N f 0 \N 1 197119980 0 f f \N \N \N \N 199264 \N 0 0 \N \N f \N 200867 2023-06-28 16:58:11.257 2023-06-28 17:08:12.339 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon th https://example.com/ 18945 200836 200726.200758.200759.200827.200836.200867 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6663668244971 0 \N \N f 0 \N 7 168089061 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 201145 2023-06-29 11:39:06.482 2023-06-29 11:49:11.572 \N Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual https://example.com/ 8926 200827 200726.200758.200759.200827.201145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7291930576779 0 \N \N f 0 \N 1 85755897 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 201598 2023-06-30 05:59:23.305 2023-06-30 06:09:24.416 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law pr https://example.com/ 9246 201575 201575.201598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2136205858358 0 \N \N f 0 \N 4 237862010 0 f f \N \N \N \N 201575 \N 0 0 \N \N f \N 201722 2023-06-30 11:58:04.925 2023-06-30 12:08:06.071 \N Leader partner among describe unit star it cold. Exist https://example.com/ 18815 201601 201575.201598.201601.201722 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2977968059995 0 \N \N f 0 \N 0 50553610 0 f f \N \N \N \N 201575 \N 0 0 \N \N f \N 201779 2023-06-30 13:33:32.225 2023-06-30 13:43:33.741 \N Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer n https://example.com/ 18543 201598 201575.201598.201779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5213316119728 0 \N \N f 0 \N 0 131566054 0 f f \N \N \N \N 201575 \N 0 0 \N \N f \N 202207 2023-07-01 01:53:51.262 2023-07-01 02:03:53.661 Per seat key down relationship step. Father camera mod \N https://example.com/ 5495 \N 202207 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1906088380015 0 \N \N f 0 \N 7 99486298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300964 2023-11-01 16:00:07.561 2023-11-01 16:10:09.105 Through hope mouth score task suggest consumer certain \N https://example.com/ 18310 \N 300964 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.842148327779 0 \N \N f 0 \N 2 165073486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 202423 2023-07-01 14:41:04.113 2024-03-01 08:52:30.471 Ask arm interview playe Inside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may s https://example.com/ 19033 \N 202423 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.8790182861249 0 \N \N f 0 \N 6 182715146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 203071 2023-07-02 18:07:10.543 2023-07-02 18:17:12.315 Positive return free discuss. Value Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police c https://example.com/ 2652 \N 203071 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9419270183873 0 \N \N f 0 \N 13 3840875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 203177 2023-07-02 21:24:07.477 2023-07-02 21:34:09.754 \N West tend alone prepare build view support https://example.com/ 18659 203174 203071.203075.203174.203177 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8734128108895 0 \N \N f 0 \N 0 103797989 0 f f \N \N \N \N 203071 \N 0 0 \N \N f \N 203404 2023-07-03 14:07:19.858 2023-07-03 14:17:21.596 Great idea age friend. Its financial fight need. I Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nLead between race contain politics. Base behavior suggest image informatio https://example.com/ 9183 \N 203404 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2088735426543 0 \N \N f 0 \N 7 173598475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206817 2023-07-10 13:51:43.749 2023-07-10 14:01:45.723 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn https://example.com/ 2681 206747 206747.206817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4040163597009 0 \N \N f 0 \N 3 222950413 0 f f \N \N \N \N 206747 \N 0 0 \N \N f \N 237552 2023-08-28 14:43:15.668 2023-08-28 14:53:16.797 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance he https://example.com/ 5565 237402 237402.237552 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.85511395631922 0 \N \N f 0 \N 0 47289544 0 f f \N \N \N \N 237402 \N 0 0 \N \N f \N 237616 2023-08-28 15:37:04.851 2023-08-28 15:47:05.882 \N Later piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. Tru https://example.com/ 12819 237402 237402.237616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.679585567849621 0 \N \N f 0 \N 1 55900646 0 f f \N \N \N \N 237402 \N 0 0 \N \N f \N 207182 2023-07-11 04:42:12.796 2023-07-11 04:52:14.516 \N Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nAlthough t https://example.com/ 6003 206747 206747.207182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0665662980251 0 \N \N f 0 \N 0 23450292 0 f f \N \N \N \N 206747 \N 0 0 \N \N f \N 213313 2023-07-24 15:35:25.77 2023-07-24 15:46:28.267 \N Customer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nea https://example.com/ 21599 213189 213189.213313 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.30031187535167 0 \N \N f 0 \N 1 159386444 0 f f \N \N \N \N 213189 \N 0 0 \N \N f \N 301869 2023-11-02 12:05:23.92 2023-11-02 12:05:28.951 \N Customer include control and. Chance blue https://example.com/ 2075 24587 24587.301869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5433702768018 0 \N \N f 0 \N 1 24262473 0 f f \N \N \N \N 24587 \N 0 0 \N \N f \N 214296 2023-07-26 15:02:24.811 2023-07-26 15:13:25.684 \N Meet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nRight term sell shoulder. Next chair b https://example.com/ 18280 214244 214244.214296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5490433195544 0 \N \N f 0 \N 6 190285055 0 f f \N \N \N \N 214244 \N 0 0 \N \N f \N 224285 2023-08-13 13:21:44.381 2023-08-13 13:31:45.427 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper insti https://example.com/ 12946 224260 224260.224285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4282154243198 0 \N \N f 0 \N 0 50011472 0 f f \N \N \N \N 224260 \N 0 0 \N \N f \N 216272 2023-07-30 22:36:20.439 2023-07-30 22:46:21.86 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Tech https://example.com/ 1142 215973 215973.216272 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1580711758679 0 \N \N f 0 \N 5 79645481 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 216553 2023-07-31 13:31:55.491 2023-07-31 13:41:56.917 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech descr https://example.com/ 15690 216481 215973.216272.216481.216553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97017496097146 0 \N \N f 0 \N 3 79787272 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 217413 2023-08-02 01:48:25.574 2023-08-02 01:58:26.628 \N Even hot politi https://example.com/ 7913 199264 199264.217413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79324642741828 0 \N \N f 0 \N 1 132129124 0 f f \N \N \N \N 199264 \N 0 0 \N \N f \N 218095 2023-08-02 18:05:21.994 2023-08-02 18:15:22.479 Moment smile cell cold road hap \N https://example.com/ 16194 \N 218095 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.084664726279 0 \N \N f 0 \N 18 219026924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222527 2023-08-10 16:40:09.824 2023-08-10 16:50:10.711 Generation discover realize we. Make important employee item market pattern that Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment spe https://example.com/ 17226 \N 222527 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.061633819032 0 \N \N f 0 \N 25 157737355 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 223053 2023-08-11 13:56:56.39 2023-08-11 14:06:57.952 \N Charge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency https://example.com/ 14857 222969 222527.222969.223053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.23135941047709 0 \N \N f 0 \N 2 170613222 0 f f \N \N \N \N 222527 \N 0 0 \N \N f \N 19367 2022-04-12 05:25:52.565 2023-10-02 00:36:05.753 North beat reali Action prevent Republican. Now third lawyer mother deal. Woman world church through yes. M https://example.com/ 21356 \N 19367 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9129744004217 0 \N \N f 0 \N 1 235943423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224260 2023-08-13 12:02:52.657 2023-08-13 12:12:53.946 Become season style here. Par Water wrong somebody book nor member. Also build off modern professor. Int https://example.com/ 2724 \N 224260 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9477873219585 0 \N \N f 0 \N 5 191117999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224831 2023-08-14 13:32:44.712 2023-08-14 13:42:45.752 \N Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step th https://example.com/ 4388 224820 224820.224831 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.97125889868576 0 \N \N f 0 \N 2 124105863 0 f f \N \N \N \N 224820 \N 0 0 \N \N f \N 225364 2023-08-14 22:04:50.256 2023-08-14 22:14:51.879 \N Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nOccur office book. Expect return including gun training e https://example.com/ 9362 224963 224820.224920.224927.224963.225364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7975408524013 0 \N \N f 0 \N 2 168176492 0 f f \N \N \N \N 224820 \N 0 0 \N \N f \N 230233 2023-08-21 05:37:23.369 2023-08-21 05:47:24.944 \N Call econom https://example.com/ 20251 199264 199264.230233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17174959117442 0 \N \N f 0 \N 1 177058179 0 f f \N \N \N \N 199264 \N 0 0 \N \N f \N 232964 2023-08-23 11:41:49.756 2023-08-23 11:51:51.65 International ground tho With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woma https://example.com/ 6578 \N 232964 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4374238039577 0 \N \N f 0 \N 28 73351786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 233747 2023-08-24 08:35:09.274 2024-02-29 11:07:06.828 Down his majority r Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign https://example.com/ 20430 \N 233747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5442277127381 0 \N \N f 0 \N 6 213824562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 237680 2023-08-28 16:15:01.338 2023-08-28 16:25:02.816 Keep third police section avoid do Own machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw https://example.com/ 13753 \N 237680 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.88437701273912 0 \N \N f 0 \N 10 38503801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 238583 2023-08-29 16:13:36.045 2023-08-29 16:23:38.263 Wide deep ahead effort. Somebody issue single physical benefit rest general offi Though eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congre https://example.com/ 12774 \N 238583 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.18720191896033 0 \N \N f 0 \N 24 122190260 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 238837 2023-08-29 22:33:59.337 2023-08-29 22:44:00.58 Be human year girl treatment nothing might. Floor unit science wear. Fly physica Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Pur https://example.com/ 2681 \N 238837 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.0985109874295 0 \N \N f 0 \N 11 173373917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 238844 2023-08-29 22:44:57.898 2023-08-29 22:54:58.666 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want an https://example.com/ 13042 238837 238837.238844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8567016525929 0 \N \N f 0 \N 1 63865998 0 f f \N \N \N \N 238837 \N 0 0 \N \N f \N 238846 2023-08-29 22:47:47.269 2023-08-29 22:57:49.046 \N Lead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit pro https://example.com/ 20381 238837 238837.238846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.729690195788 0 \N \N f 0 \N 2 83084543 0 f f \N \N \N \N 238837 \N 0 0 \N \N f \N 239292 2023-08-30 13:53:45.414 2023-08-30 14:03:47.043 \N Down his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Mod https://example.com/ 20911 239231 239231.239292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.11670864336573 0 \N \N f 0 \N 0 206253177 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N 239323 2023-08-30 14:21:59.961 2023-08-30 14:32:01.528 \N Order care many fire per feel bill exist. Ready reach poor true. Crime https://example.com/ 2508 239231 239231.239323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.31744151921193 0 \N \N f 0 \N 6 226626767 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N 239965 2023-08-31 03:58:07.507 2023-08-31 04:08:08.753 \N Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nSpecial identify senior difference third. Study onto new suddenly field this fis https://example.com/ 20555 239220 239220.239965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7790632232125 0 \N \N f 0 \N 0 179761824 0 f f \N \N \N \N 239220 \N 0 0 \N \N f \N 240060 2023-08-31 08:35:30.829 2023-08-31 08:45:32.204 Chance near song West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station projec https://example.com/ 19910 \N 240060 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 18.2871911624783 0 \N \N f 0 \N 25 114172012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 240442 2023-08-31 16:11:26.604 2023-08-31 16:21:27.717 Model fall part. Teach why have Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nBudget agent center morning series internat https://example.com/ 4802 \N 240442 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.28844994268297 0 \N \N f 0 \N 32 113459606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 255908 2023-09-16 17:23:31.756 2023-09-16 17:33:33.197 \N Them response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way b https://example.com/ 9329 255887 255887.255908 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.5009050590999 0 \N \N f 0 \N 1 39527945 0 f f \N \N \N \N 255887 \N 0 0 \N \N f \N 240484 2023-08-31 16:53:45.912 2023-08-31 17:03:47.624 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nThough eye claim side government. For https://example.com/ 652 240442 240442.240484 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9358604529154 0 \N \N f 0 \N 1 149849137 0 f f \N \N \N \N 240442 \N 0 0 \N \N f \N 247866 2023-09-08 10:32:27.682 2023-09-08 10:42:28.643 Happy strong Democrat some goal new s Opportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must bea https://example.com/ 2328 \N 247866 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.498005288347372 0 \N \N f 0 \N 3 215307161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 248526 2023-09-09 09:02:47.33 2023-09-09 09:12:48.881 Tree political season that feel arm. Serve seek turn six board. Protect Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change thr https://example.com/ 659 \N 248526 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.77784047933655 0 \N \N f 0 \N 10 126870248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 249797 2023-09-10 15:01:09.226 2023-09-10 15:11:11.709 \N Program want yeah color. Decade https://example.com/ 7983 249718 249718.249797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5276004492366 0 \N \N f 0 \N 1 58885180 0 f f \N \N \N \N 249718 \N 0 0 \N \N f \N 251438 2023-09-12 08:56:55.808 2023-09-12 09:06:57.52 Family happy son budget speech across. Building e \N https://example.com/ 20751 \N 251438 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.02041347667828 0 \N \N f 0 \N 32 158789302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 253077 2023-09-13 21:27:25.106 2023-09-13 21:37:26.501 Call economy candidate b Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yar https://example.com/ 10063 \N 253077 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.2778698284054 0 \N \N f 0 \N 2 22304319 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 256027 2023-09-16 19:15:08.473 2023-09-16 19:25:09.7 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home spea https://example.com/ 5449 255908 255887.255908.256027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7115644135916 0 \N \N f 0 \N 0 153913417 0 f f \N \N \N \N 255887 \N 0 0 \N \N f \N 256032 2023-09-16 19:20:27.161 2023-09-16 19:30:28.107 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especi https://example.com/ 20500 255887 255887.256032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.733171100844672 0 \N \N f 0 \N 0 20995963 0 f f \N \N \N \N 255887 \N 0 0 \N \N f \N 260178 2023-09-20 15:50:46.552 2023-09-20 16:00:47.986 Environment none many land part. Effort such posi Bar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meet https://example.com/ 5978 \N 260178 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5765106710928 0 \N \N f 0 \N 24 106090080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 256240 2023-09-17 04:27:01.509 2023-09-17 04:37:03.614 \N Take discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment mo https://example.com/ 12097 255887 255887.256240 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.49747603729406 0 \N \N f 0 \N 1 36497696 0 f f \N \N \N \N 255887 \N 0 0 \N \N f \N 256242 2023-09-17 04:43:51.794 2023-09-17 04:53:54.391 \N Break site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent https://example.com/ 5195 256240 255887.256240.256242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5037674171829 0 \N \N f 0 \N 0 123194360 0 f f \N \N \N \N 255887 \N 0 0 \N \N f \N 256770 2023-09-17 16:59:48.403 2023-09-17 17:09:49.513 \N Push floor economy probably reason say re https://example.com/ 20424 256762 256731.256739.256762.256770 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08214736005552 0 \N \N f 0 \N 0 123625153 0 f f \N \N \N \N 256731 \N 0 0 \N \N f \N 259258 2023-09-19 17:47:38.16 2023-09-19 17:57:39.474 Best choice maintain she else member. Health country Both tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nWhite have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. Court history ahead need. Nice rock plant beautiful item reveal official. Daughter college affect response land modern special. Interview five should small hospital interest truth their.\nBad half least communi https://example.com/ 18243 \N 259258 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.28145091741906 0 \N \N f 0 \N 31 133941989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 288774 2023-10-19 23:06:42.485 2023-10-19 23:16:43.759 Money rise give serve will expect factor. Claim outside serious add ad \N https://example.com/ 8385 \N 288774 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.69447766790208 0 \N \N f 0 \N 15 63776025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 259937 2023-09-20 12:23:19.65 2023-09-20 12:33:21.246 Notice after fund police. Put Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player w https://example.com/ 13046 \N 259937 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.1622759426791 0 \N \N f 0 \N 6 30786143 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 260858 2023-09-21 09:16:07.258 2023-09-21 09:26:08.698 Say this find practice. Small exactly explain from born Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. https://example.com/ 18357 \N 260858 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.49164301124812 0 \N \N f 0 \N 32 125714783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 263626 2023-09-23 09:37:19.198 2023-09-23 09:47:20.643 Some nation represent who. Sometimes ability defense great re \N https://example.com/ 18815 \N 263626 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3783567214713 0 \N \N f 0 \N 1 110413107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 303441 2023-11-03 16:36:05.988 2023-11-03 16:46:08.123 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy re https://example.com/ 20623 303421 303421.303441 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5842576476235 0 \N \N f 0 \N 0 163315020 0 f f \N \N \N \N 303421 \N 0 0 \N \N f \N 265848 2023-09-25 11:13:59.773 2023-09-25 11:24:01.246 Measure western pretty serious director country. Event at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nRemember draw realize. Include soon m https://example.com/ 2774 \N 265848 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.54386760840526 0 \N \N f 0 \N 19 212561048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 266131 2023-09-25 14:53:38.955 2023-09-25 15:03:40.42 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy ca https://example.com/ 20660 265848 265848.266131 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7810344906958 0 \N \N f 0 \N 1 39648855 0 f f \N \N \N \N 265848 \N 0 0 \N \N f \N 32394 2022-05-28 13:56:51.164 2023-10-02 01:18:45.963 Family happy son Must particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quit https://example.com/ 20577 \N 32394 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4479664736631 0 \N \N f 0 \N 5 37103320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 266721 2023-09-26 04:06:57.434 2023-09-26 04:16:58.377 \N Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nInstead believe animal then however price particularly. When whose economic oth https://example.com/ 16939 265848 265848.266721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.03902466175786 0 \N \N f 0 \N 1 155148218 0 f f \N \N \N \N 265848 \N 0 0 \N \N f \N 275480 2023-10-05 19:05:08.557 2024-02-20 19:50:10.28 Off should demo Look surface admit attor https://example.com/ 681 \N 275480 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6498013213362 0 \N \N f 0 \N 5 46929431 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 278801 2023-10-09 12:13:31.939 2023-10-09 12:23:32.861 Professor entire information week article family fear effort. Model hav \N https://example.com/ 2342 \N 278801 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.2273922995208 0 \N \N f 0 \N 11 32348240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 278856 2023-10-09 13:08:03.385 2023-10-09 13:18:05.548 Their election city process. Agency early its stock. Recent while p Guess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nDiscussion sing wear moment organization. Idea check off rather represent. https://example.com/ 9863 \N 278856 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.0721080189198 0 \N \N f 0 \N 6 39225476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 278948 2023-10-09 13:48:56.58 2023-10-09 13:58:58.452 \N Light check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lea https://example.com/ 10530 278922 278856.278922.278948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.589308120145 0 \N \N f 0 \N 3 191358012 0 f f \N \N \N \N 278856 \N 0 0 \N \N f \N 288370 2023-10-19 16:32:25.809 2023-10-19 16:42:27.942 \N True quickly government https://example.com/ 675 288149 287984.288020.288027.288030.288149.288370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.40005980122913 0 \N \N f 0 \N 1 200389316 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N 288986 2023-10-20 08:54:47.185 2023-10-20 09:04:48.607 Religious same wish cost make. Else official Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daugh https://example.com/ 2188 \N 288986 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 2.54615401499201 0 \N \N f 0 \N 5 215894783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293063 2023-10-24 13:03:00.568 2023-10-24 13:13:02.136 \N Also weight particular less set southern https://example.com/ 19878 292834 292834.293063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9282901447843 0 \N \N f 0 \N 0 31943483 0 f f \N \N \N \N 292834 \N 0 0 \N \N f \N 324726 2023-11-22 01:35:21.022 2024-02-25 03:16:56.617 Machine thus avoid result s Debate physical difference without Mrs price https://example.com/ 2674 \N 324726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4230692837989 0 \N \N f 0 \N 6 218527764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326364 2023-11-23 12:07:51.391 2023-11-23 12:18:27.87 Popular rest certainly. Citizen though Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nProvide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nHelp out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nMeet whose open couple believe something significant. Process page company box start pass. Tell account outside best play. Design realize key not understand. Poor training memory six meeting because institution.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nPower this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nTrue quickly government finish region. Discuss positive responsibility. https://example.com/ 18265 \N 326364 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.9345198502967 0 \N \N f 0 \N 89 48000283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 328872 2023-11-25 18:21:14.405 2023-11-25 18:31:16.215 Company save finally water. Agree cho Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nReflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. https://example.com/ 2176 \N 328872 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.41547979825233 0 \N \N f 0 \N 29 153224901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428021 2024-02-16 21:34:59.066 2024-02-16 21:44:59.788 Provide red song family quickly. Friend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ev https://example.com/ 16942 \N 428021 \N \N \N \N \N \N \N \N startups \N ACTIVE \N 22.0358998968103 0 \N \N f 0 \N 7 105852288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293478 2023-10-24 18:35:50.651 2023-10-24 18:45:51.547 Field rock decide physica Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say. https://example.com/ 1802 \N 293478 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1321050978733 0 \N \N f 0 \N 3 23516933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294981 2023-10-26 10:35:27.157 2023-10-26 10:45:28.794 \N Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final ei https://example.com/ 17147 294915 294909.294915.294981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3690164949132 0 \N \N f 0 \N 1 166865342 0 f f \N \N \N \N 294909 \N 0 0 \N \N f \N 296158 2023-10-27 13:00:18.233 2023-10-27 13:10:19.657 \N Board age miss drug sense. Take h https://example.com/ 19158 296143 296073.296143.296158 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.339423363699 0 \N \N f 0 \N 1 190453876 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296192 2023-10-27 13:25:53.837 2023-10-27 13:35:55.697 \N Edge give like skill yard. Government run throughout me https://example.com/ 8472 296073 296073.296192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.73246663257635 0 \N \N f 0 \N 0 115177668 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296200 2023-10-27 13:35:51.591 2023-10-27 13:45:53.681 \N Direction fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. https://example.com/ 18265 296073 296073.296200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7342497952371 0 \N \N f 0 \N 1 174843646 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 19625 2022-04-13 16:04:33.104 2023-10-02 00:37:10.316 South both increa Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base aut https://example.com/ 9378 \N 19625 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.93509198452639 0 \N \N f 0 \N 3 53247580 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296238 2023-10-27 14:12:19.79 2023-10-27 14:22:21.184 \N Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nAlready reduce grow only chance opportunity gr https://example.com/ 618 296073 296073.296238 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.314997931297469 0 \N \N f 0 \N 0 97662137 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296324 2023-10-27 15:30:56.007 2023-10-27 15:40:56.956 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. https://example.com/ 20153 296073 296073.296324 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.14865015525047 0 \N \N f 0 \N 0 65731534 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296328 2023-10-27 15:33:02.277 2023-10-27 15:43:03.84 \N Risk past without recognize series car https://example.com/ 16301 296214 296073.296214.296328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.990173958138 0 \N \N f 0 \N 0 54710703 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296351 2023-10-27 16:02:06.354 2023-10-27 16:12:08.118 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smil https://example.com/ 9494 296073 296073.296351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.766237561025 0 \N \N f 0 \N 0 215342554 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296431 2023-10-27 17:36:03.969 2023-10-27 17:46:05.733 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic custome https://example.com/ 20585 296073 296073.296431 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7130223830676 0 \N \N f 0 \N 0 222662002 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296479 2023-10-27 18:43:39.375 2023-10-27 18:53:40.614 \N Such house management. Bed defense remember help si https://example.com/ 12946 296073 296073.296479 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4025350990879 0 \N \N f 0 \N 0 114349894 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296824 2023-10-28 08:39:57.047 2023-10-28 08:49:58.176 \N News animal hour keep yoursel https://example.com/ 1122 296073 296073.296824 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.67619757691216 0 \N \N f 0 \N 0 97902576 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 298001 2023-10-29 22:54:00.25 2024-02-22 22:37:21.095 Each show pull Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. https://example.com/ 18556 \N 298001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6464816801294 0 \N \N f 0 \N 7 229688310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 303421 2023-11-03 16:23:01.393 2023-11-03 16:33:03.913 Staff likely color finish at South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until. https://example.com/ 21539 \N 303421 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.1652846700705 0 \N \N f 0 \N 1 223173684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308388 2023-11-07 23:31:53.355 2023-11-07 23:41:54.401 Month explain matter south. Thus car occur bad. Green various method Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause. https://example.com/ 18663 \N 308388 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.202415820411801 0 \N \N f 0 \N 0 191369070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 309870 2023-11-09 08:44:53.655 2023-11-09 08:54:55.018 \N Animal law require claim a https://example.com/ 18409 309790 308818.309790.309870 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.67202731974435 0 \N \N f 0 \N 0 207940567 0 f f \N \N \N \N 308818 \N 0 0 \N \N f \N 309872 2023-11-09 08:45:29.345 2023-11-09 08:55:31.534 \N Eight represent https://example.com/ 12169 309616 308818.309616.309872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.12614183530171 0 \N \N f 0 \N 0 8721967 0 f f \N \N \N \N 308818 \N 0 0 \N \N f \N 310418 2023-11-09 16:03:52.132 2023-11-09 16:13:53.946 \N Meeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nRight view contain easy someone. People away page experience. Which like report summe https://example.com/ 6260 309899 309899.310418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.62805127900402 0 \N \N f 0 \N 6 225294183 0 f f \N \N \N \N 309899 \N 0 0 \N \N f \N 312024 2023-11-11 02:16:00.583 2023-11-11 02:26:03.173 Accept nation he. Work plan maintain rather green idea. Different Light check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim https://example.com/ 18271 \N 312024 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4505175816161 0 \N \N f 0 \N 13 11412106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 312067 2023-11-11 03:31:59.454 2023-11-11 03:42:01.292 \N Great idea age friend. Its financial fi https://example.com/ 18615 312024 312024.312067 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7183415930747 0 \N \N f 0 \N 1 149694904 0 f f \N \N \N \N 312024 \N 0 0 \N \N f \N 313773 2023-11-13 01:05:54.002 2023-11-13 01:15:56.104 Speak specific energy international more ent Bank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attac https://example.com/ 13097 \N 313773 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1092077321787 0 \N \N f 0 \N 68 198992569 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314277 2023-11-13 12:18:09.984 2023-11-13 12:28:11.884 \N Door visit pr https://example.com/ 680 314108 314108.314277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.82373305389266 0 \N \N f 0 \N 1 201336693 0 f f \N \N \N \N 314108 \N 0 0 \N \N f \N 314960 2023-11-13 21:04:28 2023-11-13 21:14:29.019 Determine evidence bar. Evening where myself shoulder century number. E Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nSkin summer development benefit note soldier. Various important pressure you fine memory attention. Food something candidate month wish see degree. Language feeling full director. Policy read cell seem or across. Kid defense available soon. Road stand my.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass https://example.com/ 7674 \N 314960 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.73097006747 0 \N \N f 0 \N 5 245491476 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 317410 2023-11-15 17:28:24.102 2023-11-15 17:38:25.551 For share something effect science co Wind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nHow never cut grow benefit. Dinner environmental side financ https://example.com/ 19966 \N 317410 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.5652453579695 0 \N \N f 0 \N 12 172759041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 321241 2023-11-19 02:20:33.238 2023-11-19 02:30:34.697 \N Take carry disc https://example.com/ 1833 294360 294360.321241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9830794925067 0 \N \N f 0 \N 0 177756128 0 f f \N \N \N \N 294360 \N 0 0 \N \N f \N 330574 2023-11-27 13:33:08.554 2023-11-27 13:43:10.143 \N Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some https://example.com/ 2741 330494 330427.330494.330574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0158821650982 0 \N \N f 0 \N 1 182882354 0 f f \N \N \N \N 330427 \N 0 0 \N \N f \N 351627 2023-12-13 22:13:20.693 2023-12-13 22:23:21.642 Debate property life amount writer. Anima Plant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nToward position themselves news unit. Manage go century budget light issue participant. Interest scientist one early audience democratic. Memory build bag. Ok contain style food recent season. Door career floor compare. Notice relate with seek again play hospital. Without wish foreign study. Sort pretty stop about or.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view https://example.com/ 21349 \N 351627 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.17737759541942 0 \N \N f 0 \N 12 21076898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 330735 2023-11-27 14:51:34.264 2023-11-27 15:01:36.195 Fear size with rich skin decade community. Front either election mouth. Trip car Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nKnowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. None nation consider seven several.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaig https://example.com/ 19533 \N 330735 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.3521128341139 0 \N \N f 0 \N 4 151040081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 331942 2023-11-28 17:05:52.885 2023-11-28 17:15:55.02 About cell note lot page. Fee Not find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nLook surface admit attorney affect reduce necessary. Catch along start step all serious. Energy become more shoulder. Line law alone. Car once card discover her expert. Challenge learn question step they big discover. Newspaper benefit general similar cell range cost. Floor enjoy few side recently.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nFinish only air provide. Wife can d https://example.com/ 1173 \N 331942 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.8508764242402 0 \N \N f 0 \N 47 37141203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 337743 2023-12-04 10:56:49.518 2023-12-04 11:06:51.646 Technology word wish say organization frien Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color lo https://example.com/ 1769 \N 337743 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.64545820806954 0 \N \N f 0 \N 34 140937397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 342249 2023-12-07 13:06:27.321 2023-12-07 13:16:29.152 Forget issue save education. Head of face b Network authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nSingle above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern natural represent.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chanc https://example.com/ 5129 \N 342249 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 23.8475650267764 0 \N \N f 0 \N 28 204795070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 342936 2023-12-07 20:01:14.509 2024-02-19 19:44:00.87 Treat central body Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern e https://example.com/ 11275 \N 342936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.41471219579427 0 \N \N f 0 \N 6 68004214 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343058 2023-12-07 21:49:54.19 2023-12-07 21:59:55.703 \N Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody reco https://example.com/ 19572 343047 343047.343058 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3263402695321 0 \N \N f 0 \N 4 170841202 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 351633 2023-12-13 22:27:44.197 2023-12-13 22:37:45.344 \N Hotel black matter recently idea particular. Manager across all nation meet work sort https://example.com/ 1628 351627 351627.351633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6317671454628 0 \N \N f 0 \N 0 48016096 0 f f \N \N \N \N 351627 \N 0 0 \N \N f \N 343141 2023-12-07 23:30:58.831 2023-12-07 23:41:00.253 \N Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nChild air person ago modern charge little piece. Get trade manage policy husband process pop https://example.com/ 4225 343047 343047.343141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2924014960644 0 \N \N f 0 \N 2 128747074 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 345258 2023-12-09 12:06:11.61 2023-12-09 12:16:12.361 \N Fly teac https://example.com/ 5852 345215 345215.345258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4691646901956 0 \N \N f 0 \N 0 12755913 0 f f \N \N \N \N 345215 \N 0 0 \N \N f \N 345292 2023-12-09 12:38:38.191 2023-12-09 12:48:39.509 \N Method sho https://example.com/ 2326 345215 345215.345292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09478811285674 0 \N \N f 0 \N 0 226303819 0 f f \N \N \N \N 345215 \N 0 0 \N \N f \N 345312 2023-12-09 12:49:56.439 2023-12-09 12:59:58.037 \N White h https://example.com/ 2224 345215 345215.345312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.42157200933035 0 \N \N f 0 \N 0 11344485 0 f f \N \N \N \N 345215 \N 0 0 \N \N f \N 345420 2023-12-09 14:11:49.096 2023-12-09 14:21:51.41 \N Oil fast organization discussion https://example.com/ 21291 345215 345215.345420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.89991672319264 0 \N \N f 0 \N 0 63365705 0 f f \N \N \N \N 345215 \N 0 0 \N \N f \N 346002 2023-12-09 23:23:19.788 2023-12-09 23:33:21.359 \N Yard someone shake final someone https://example.com/ 11038 345215 345215.346002 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2083573244846 0 \N \N f 0 \N 1 60688460 0 f f \N \N \N \N 345215 \N 0 0 \N \N f \N 346695 2023-12-10 15:36:56.557 2023-12-10 15:46:58.948 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade final https://example.com/ 17221 343664 161788.161792.343664.346695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3632732201961 0 \N \N f 0 \N 1 207192548 0 f f \N \N \N \N 161788 \N 0 0 \N \N f \N 19742 2022-04-13 21:39:05.239 2023-10-02 00:37:27.807 Scene relate paper Recent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass https://example.com/ 20006 \N 19742 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1816084349236 0 \N \N f 0 \N 12 100961760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 348860 2023-12-12 03:30:27.303 2023-12-12 03:40:28.658 Wonder check lead door. Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. https://example.com/ 20454 \N 348860 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 13.6520791071382 0 \N \N f 0 \N 3 31449321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 352257 2023-12-14 15:22:03.54 2024-02-24 01:15:42.544 Own shoulder kind fact. Poor bring quite t World kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nStandard choose white. Yard would college him pass. Eye in education both. Together never smile suggest find place. Deep data measure write.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nState wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nServe deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious cha https://example.com/ 21296 \N 352257 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 10.0234652727839 0 \N \N f 0 \N 7 238603856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357403 2023-12-18 20:41:16.409 2023-12-18 20:51:19.423 \N Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return https://example.com/ 2789 357288 357288.357403 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7062389286778 0 \N \N f 0 \N 5 167130893 0 f f \N \N \N \N 357288 \N 0 0 \N \N f \N 383506 2024-01-10 16:52:14.038 2024-01-10 17:02:16.191 \N Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challe https://example.com/ 18533 383302 383302.383506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3013996620748 0 \N \N f 0 \N 1 65278610 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 357875 2023-12-19 04:52:21.471 2023-12-19 05:02:22.82 Hot near source fact. Have high kind Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strateg https://example.com/ 844 \N 357875 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 15.0019949030172 0 \N \N f 0 \N 13 24182160 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 359606 2023-12-20 14:27:16.445 2023-12-20 14:37:18.999 Play director employe Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nCell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug https://example.com/ 2735 \N 359606 \N \N \N \N \N \N \N \N Fitness \N ACTIVE \N 8.71543599400287 0 \N \N f 0 \N 34 112880653 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 361038 2023-12-21 17:11:20.547 2023-12-21 17:21:23.058 Community seat tend position recent will. Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according. https://example.com/ 18956 \N 361038 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 6.48317543421769 0 \N \N f 0 \N 2 90447355 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 361237 2023-12-21 18:42:51.058 2023-12-21 18:52:52.665 \N Far they window https://example.com/ 6160 361054 361038.361054.361237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.26811735721176 0 \N \N f 0 \N 0 221453545 0 f f \N \N \N \N 361038 \N 0 0 \N \N f \N 361611 2023-12-22 00:49:16.921 2024-02-19 21:45:26.518 Wide deep ahe Right term sell shoulder. Next chair https://example.com/ 13587 \N 361611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.07821568612248 0 \N \N f 0 \N 31 94837254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 361726 2023-12-22 03:13:04.664 2023-12-22 03:23:05.989 \N Radio have every concern. Letter fund artist fine argue. Know year send ask d https://example.com/ 2681 343047 343047.361726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6618752662903 0 \N \N f 0 \N 1 62909274 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 362242 2023-12-22 15:00:51.057 2023-12-22 15:10:53.005 For wrong offer a. Image bad Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact e https://example.com/ 4084 \N 362242 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 6.4667300779648 0 \N \N f 0 \N 49 25469039 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 364096 2023-12-23 22:04:09.731 2024-02-28 21:15:49.044 Very executive American something myself so my. Art to five indicate husband. Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. To statement beyond country develop.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly https://example.com/ 20495 \N 364096 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 25.5104750200389 0 \N \N f 0 \N 14 60919304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 385935 2024-01-12 16:49:11.682 2024-02-28 04:30:25.362 Yes but truth go. Generation as nice customer old. Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nPrevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every national floor development force. Record type strategy. Form past range explain. Picture last another over song body. Mouth media experience build south.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them various who hotel forward give.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nReality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nMyself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific product total. Often owner book read.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nTruth training network government behavior decade. Beyond sound grow throughout people result. Road sign the case per. Instead himself check list wrong under. Design process travel ahead admit kind thank help. Grow keep something place happy. Matter partner close president type he energy add. As management here. Fill fund score effort end capital. Image fine seat south mouth end.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nBuild toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. I https://example.com/ 5646 \N 385935 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 14.9833490859332 0 \N \N f 0 \N 45 138971986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430248 2024-02-19 03:21:19.018 2024-02-19 03:31:21.033 Republican total impact of. North office Sell hundred beautiful up claim. https://example.com/ 20614 \N 430248 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 26.043665731272 0 \N \N f 0 \N 3 87404067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 365216 2023-12-25 00:01:32.996 2023-12-25 00:11:34.231 \N Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nHappen include car man crime. Local organization present modern sound https://example.com/ 1515 126179 126179.365216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5427309249989 0 \N \N f 0 \N 1 180266343 0 f f \N \N \N \N 126179 \N 0 0 \N \N f \N 367984 2023-12-27 14:29:14.489 2023-12-27 14:39:15.545 Degree third deep cause buy put whateve Somebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address app https://example.com/ 19848 \N 367984 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 23.6859577722815 0 \N \N f 0 \N 0 1654843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 19971 2022-04-14 17:56:31.613 2023-10-02 00:38:28.085 After increase c Property this American law baby doctor. Everybody reduce institution inside education heart hi https://example.com/ 1741 \N 19971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7394407935338 0 \N \N f 0 \N 2 227205851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 368174 2023-12-27 17:16:31.477 2023-12-27 17:26:33.402 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nWrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society administration project. Miss others dream physical remember. Course economic with stock unit mind issue.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. https://example.com/ 17124 368115 368115.368174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.92333052312474 0 \N \N f 0 \N 2 218530538 0 f f \N \N \N \N 368115 \N 0 0 \N \N f \N 368665 2023-12-28 03:39:04.04 2023-12-28 03:49:05.484 Condition Determine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nBlue the that local central middle themselve https://example.com/ 1705 \N 368665 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.0529302158688 0 \N \N f 0 \N 0 11972860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 368845 2023-12-28 10:37:32.478 2024-03-01 11:43:59.536 Win nothing Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nS https://example.com/ 1817 \N 368845 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8073295028659 0 \N \N f 0 \N 10 67701976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 368933 2023-12-28 12:15:08.572 2023-12-28 12:25:09.735 Garden serve these spe Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nStructure require feel statement plan economy. Base trouble stage anyone I threat w https://example.com/ 18679 \N 368933 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 5.69928822945897 0 \N \N f 0 \N 15 92475223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370086 2023-12-29 09:07:35.987 2023-12-29 09:17:36.978 \N Parent control wide song section few. Region https://example.com/ 10273 369554 369554.370086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8187031682348 0 \N \N f 0 \N 0 21538587 0 f f \N \N \N \N 369554 \N 0 0 \N \N f \N 370350 2023-12-29 14:25:37.045 2023-12-29 14:35:38.78 News animal hour keep yourself and. Be moment rather often r Drug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. https://example.com/ 11153 \N 370350 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 15.7017927043474 0 \N \N f 0 \N 0 206432771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 30391 2022-05-21 16:21:45.397 2023-10-02 01:12:20.549 Economy rest wha Way majority believe feeling. Their see data sure office finally. Anything skin although decide https://example.com/ 7827 \N 30391 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.6519721425485 0 \N \N f 0 \N 1 116001677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370589 2023-12-29 17:06:01.408 2023-12-29 17:16:02.603 \N Produce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent https://example.com/ 8472 364765 364765.370589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.71652447311004 0 \N \N f 0 \N 0 47072894 0 f f \N \N \N \N 364765 \N 0 0 \N \N f \N 370690 2023-12-29 18:04:40.787 2023-12-29 18:14:43.267 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nWin nothing research song data. They peace herself continue Republican fo https://example.com/ 19759 370479 370479.370690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.718481972138214 0 \N \N f 0 \N 1 113014491 0 f f \N \N \N \N 370479 \N 0 0 \N \N f \N 392033 2024-01-17 22:42:27.867 2024-01-17 22:52:29.153 \N Hear direction have instead. Repu https://example.com/ 954 391950 391950.392033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68610519208991 0 \N \N f 0 \N 0 37516224 0 f f \N \N \N \N 391950 \N 0 0 \N \N f \N 373998 2024-01-02 02:00:00.939 2024-01-02 02:10:01.831 \N Billion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person b https://example.com/ 9551 372926 372926.373998 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6114798073063 0 \N \N f 0 \N 0 45107047 0 f f \N \N \N \N 372926 \N 0 0 \N \N f \N 375108 2024-01-03 01:31:01.055 2024-02-21 22:04:49.479 Never able over r Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interv https://example.com/ 956 \N 375108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.055842161235 0 \N \N f 0 \N 6 242153971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375209 2024-01-03 04:50:05.2 2024-01-03 05:00:07.509 That field beautiful American when. Simply quality w Describe radio value until fund sit behind. Mrs exist important special those. Whom carry https://example.com/ 9820 \N 375209 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 26.2812578952831 0 \N \N f 0 \N 0 62179076 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383309 2024-01-10 14:34:37.901 2024-01-10 14:44:39.592 \N Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially w https://example.com/ 18230 383302 383302.383309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.12337250172009 0 \N \N f 0 \N 3 48933445 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 375801 2024-01-03 16:51:40.443 2024-02-23 18:57:13.19 Cell language east pre Guy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nWay majority believe feelin https://example.com/ 17046 \N 375801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9503387153112 0 \N \N f 0 \N 11 118152588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383547 2024-01-10 17:21:57.268 2024-03-01 07:20:29.906 Boy force agenc Break test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nResearch either follow across either investment church. Tough avoid candidate picture live great https://example.com/ 12139 \N 383547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33461997635585 0 \N \N f 0 \N 12 29345562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375811 2024-01-03 16:58:43.387 2024-01-03 17:08:45.076 Practice pressure Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nNever money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focu https://example.com/ 17526 \N 375811 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6486422726655 0 \N \N f 0 \N 3 56384333 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 376219 2024-01-03 22:06:22.5 2024-01-03 22:16:24.517 Face opportunity account eat progr Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil https://example.com/ 20826 \N 376219 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 26.0813402254035 0 \N \N f 0 \N 5 1139690 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 379804 2024-01-07 12:13:14.09 2024-01-07 12:23:15.109 Somebody cold fac Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term. https://example.com/ 18500 \N 379804 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.07326677070712 0 \N \N f 0 \N 1 247407825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 380081 2024-01-07 16:41:04.748 2024-01-07 16:51:05.978 Over partner wear detail fund rise. Conference re Live child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nItem attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our https://example.com/ 3461 \N 380081 \N \N \N \N \N \N \N \N education \N ACTIVE \N 28.9034527449013 0 \N \N f 0 \N 1 18642650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383294 2024-01-10 14:20:32.671 2024-02-12 11:53:20.344 Opportunity hospital addr Scientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. https://example.com/ 19267 \N 383294 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 11.9578420595182 0 \N \N f 0 \N 92 211782269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383302 2024-01-10 14:26:09.744 2024-01-10 14:36:11.447 Rule focus detail financial dog. Her lawyer draw identify. Fa With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nAny note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean development security. Station about later. Mention card lawyer very unit wife.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Frie https://example.com/ 5308 \N 383302 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.2109223335198 0 \N \N f 0 \N 27 155416898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392057 2024-01-17 23:14:15.845 2024-01-17 23:24:17.325 \N Shake pretty eat https://example.com/ 1090 391950 391950.392057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6067982122229 0 \N \N f 0 \N 0 18405432 0 f f \N \N \N \N 391950 \N 0 0 \N \N f \N 430303 2024-02-19 05:49:56.387 2024-02-19 05:59:57.716 \N Forget issue save education. Head of face begin our. Detail common behavior end. Business https://example.com/ 18704 429764 429764.430303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.19695729618438 0 \N \N f 0 \N 1 125343668 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 386196 2024-01-12 19:40:51.407 2024-01-12 19:50:53.146 Mention well why thank develop. Alone hotel ground. Specific skill five. Disc Thing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nSystem lose thought. Him medical during might find full garden. https://example.com/ 836 \N 386196 \N \N \N \N \N \N \N \N history \N ACTIVE \N 16.0065742799074 0 \N \N f 0 \N 5 234904063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386557 2024-01-13 08:15:35.077 2024-01-13 08:25:36.415 Including lawyer baby ok movie never happy. Civil program effort know Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nClear suggest true gas suddenly project. Seem learn may term. Local but https://example.com/ 8176 \N 386557 \N \N \N \N \N \N \N \N security \N ACTIVE \N 21.3456918276108 0 \N \N f 0 \N 14 209153718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386717 2024-01-13 13:23:11.403 2024-01-13 13:33:12.315 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nStock already suddenly east interesting guess. Indeed court affec https://example.com/ 17148 386623 386623.386717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8304372827402 0 \N \N f 0 \N 25 61564896 0 f f \N \N \N \N 386623 \N 0 0 \N \N f \N 30510 2022-05-22 09:48:48.237 2023-10-02 01:12:37.72 About cell note l Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear https://example.com/ 19663 \N 30510 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.9433131436684 0 \N \N f 0 \N 1 18685238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 31309 2022-05-24 22:00:49.046 2023-10-02 01:15:21.346 Play single final Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final sh https://example.com/ 15526 \N 31309 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.78812935295642 0 \N \N f 0 \N 5 208028728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 388560 2024-01-15 11:06:03.973 2024-01-15 11:16:05.429 \N Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nGirl someone prepare. Realize however yea https://example.com/ 2640 388534 388534.388560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.43057717740509 0 \N \N f 0 \N 2 51020285 0 f f \N \N \N \N 388534 \N 0 0 \N \N f \N 388609 2024-01-15 11:39:15.103 2024-01-15 11:49:16.408 \N Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our https://example.com/ 14941 388534 388534.388609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.54342877332355 0 \N \N f 0 \N 6 34055099 0 f f \N \N \N \N 388534 \N 0 0 \N \N f \N 427784 2024-02-16 18:36:56.524 2024-02-16 18:46:58.504 Inside nor profess Door western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer. https://example.com/ 10490 \N 427784 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 29.0482409116719 0 \N \N f 0 \N 0 130626547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 388644 2024-01-15 12:19:54.014 2024-01-15 12:29:56.725 Describe modern Play director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside wr https://example.com/ 19282 \N 388644 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 28.2143185416632 0 \N \N f 0 \N 1 97243675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 388984 2024-01-15 15:24:12.383 2024-01-15 15:34:13.494 \N Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also meth https://example.com/ 18819 388534 388534.388984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.32121427013046 0 \N \N f 0 \N 0 34240570 0 f f \N \N \N \N 388534 \N 0 0 \N \N f \N 389418 2024-01-15 20:33:56.834 2024-01-15 20:43:57.939 \N Machine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especial https://example.com/ 13878 388534 388534.389418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.78445386197434 0 \N \N f 0 \N 0 108355059 0 f f \N \N \N \N 388534 \N 0 0 \N \N f \N 391966 2024-01-17 21:11:52.306 2024-01-17 21:21:53.796 \N Increase bring card. https://example.com/ 21275 391950 391950.391966 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.24654743308631 0 \N \N f 0 \N 0 185453098 0 f f \N \N \N \N 391950 \N 0 0 \N \N f \N 395248 2024-01-21 11:19:58.567 2024-01-21 11:30:00.453 Everyone mention lead pretty prote Safe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic. https://example.com/ 19735 \N 395248 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 0.267030801270778 0 \N \N f 0 \N 8 57684870 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 395970 2024-01-22 02:20:47.855 2024-01-22 02:30:49.22 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nBlood coach citizen https://example.com/ 15045 395248 395248.395970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4618287064062 0 \N \N f 0 \N 2 217879116 0 f f \N \N \N \N 395248 \N 0 0 \N \N f \N 397192 2024-01-22 22:42:38.058 2024-01-23 18:47:44.63 Scientist our accept million student where bring trade. Someone indeed consum Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nFloor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nProbably agent catch computer difficult picture. Memory newspaper economy six. Until trip when sit which after let particular. Policy security war possible. Inside various argue history federal. Mother design hospital avoid push. Reach piece than note growth democratic body.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm pur https://example.com/ 19570 \N 397192 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 22.1789075695521 0 \N \N f 0 \N 18 85661273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397842 2024-01-23 14:00:13.661 2024-01-23 14:10:14.252 Same listen suggest five serve sit need if. South listen Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning interview kitchen enjoy site.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nOwn about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone picture social value. Main similar unit.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream rad https://example.com/ 10979 \N 397842 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5757881974532 0 \N \N f 0 \N 36 169375466 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 398085 2024-01-23 15:46:57.081 2024-01-23 15:56:58.186 Prevent machine source white and. Fact together father find appear point. S Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nSide project push https://example.com/ 12768 \N 398085 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 12.5693899184428 0 \N \N f 0 \N 27 157029487 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 398367 2024-01-23 18:13:51.024 2024-01-23 18:23:53.169 \N Between buy half story. Buy whom significant modern air price. Deal left be https://example.com/ 18372 398085 398085.398367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5370826796548 0 \N \N f 0 \N 1 58162160 0 f f \N \N \N \N 398085 \N 0 0 \N \N f \N 398696 2024-01-23 21:48:21.937 2024-01-23 21:58:24.041 \N Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point https://example.com/ 14990 398085 398085.398696 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.12621170162622 0 \N \N f 0 \N 1 172551348 0 f f \N \N \N \N 398085 \N 0 0 \N \N f \N 398837 2024-01-24 00:09:27.246 2024-01-24 00:19:29.546 Agent huge issue positive air whom Call system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too https://example.com/ 21571 \N 398837 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 27.7371929746208 0 \N \N f 0 \N 9 102930889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399226 2024-01-24 12:01:35.778 2024-01-24 12:11:37.54 \N Quickly build security. Thought structure https://example.com/ 4083 399223 399223.399226 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2057416564031 0 \N \N f 0 \N 0 24409162 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N 399428 2024-01-24 14:40:04.583 2024-01-24 14:50:05.543 \N Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nDrug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nM https://example.com/ 8289 399152 399152.399428 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5758590916041 0 \N \N f 0 \N 0 71064868 0 f f \N \N \N \N 399152 \N 0 0 \N \N f \N 399842 2024-01-24 19:57:31.226 2024-01-24 20:07:32.605 Key stuff company they base well night. Wonde Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nHuman appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. M https://example.com/ 1985 \N 399842 \N \N \N \N \N \N \N \N history \N ACTIVE \N 4.25734172679832 0 \N \N f 0 \N 23 25453353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 32826 2022-05-30 15:04:06.414 2023-10-02 01:20:23.278 Live class artis Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nDeep some relate building buy then. Letter common approach education https://example.com/ 15045 \N 32826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4985800654488 0 \N \N f 0 \N 1 51861606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408183 2024-01-31 18:20:46.72 2024-01-31 18:30:47.843 American argue three local care join full ano Fall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. https://example.com/ 8080 \N 408183 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 12.0450610831794 0 \N \N f 0 \N 9 223044688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 401458 2024-01-26 05:55:02.649 2024-01-26 06:05:03.923 Foot not wonder mysel Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nFilm happen almost than. Staff stuff life concern investment adul https://example.com/ 19995 \N 401458 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 0.996387203563103 0 \N \N f 0 \N 12 99766295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 402029 2024-01-26 16:24:18.317 2024-01-26 16:34:19.4 Rule hope accept blue. Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid https://example.com/ 19941 \N 402029 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 8.52314078733865 0 \N \N f 0 \N 7 31732514 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403677 2024-01-28 07:24:22.496 2024-01-28 07:34:23.617 \N Maybe seem particular stand blood https://example.com/ 9695 236142 236142.403677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.38529901885492 0 \N \N f 0 \N 1 239510413 0 f f \N \N \N \N 236142 \N 0 0 \N \N f \N 403781 2024-01-28 10:07:32.085 2024-01-28 10:17:33.729 \N Reflect fill team movie draw red group. Congress without main. Inside ago think condition. Mother happen body whose minute decade purpose usually. Later simple compare fast civil industry. Tonight try weight. Republican perhaps painting.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no https://example.com/ 21344 403552 403552.403781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.0565239628774 0 \N \N f 0 \N 1 83017173 0 f f \N \N \N \N 403552 \N 0 0 \N \N f \N 403892 2024-01-28 12:35:48.367 2024-01-28 12:45:49.705 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likel https://example.com/ 16536 403552 403552.403892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.9559966950298 0 \N \N f 0 \N 2 67882195 0 f f \N \N \N \N 403552 \N 0 0 \N \N f \N 403893 2024-01-28 12:36:22.996 2024-01-28 12:46:27.186 Blood bill here traditional upon. Leg them lead garden h Until must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. E https://example.com/ 15160 \N 403893 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.0496448442322261 0 \N \N f 0 \N 12 144083450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404205 2024-01-28 18:44:03.562 2024-01-28 18:54:04.827 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well real https://example.com/ 19929 404042 404042.404205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.891398811581681 0 \N \N f 0 \N 0 48000539 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 33552 2022-06-02 18:04:18.525 2023-10-02 01:22:44.815 Range network bab Themselves ta https://example.com/ 9356 \N 33552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.84976432894346 0 \N \N f 0 \N 4 245027248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 33775 2022-06-03 12:34:48.521 2023-10-02 01:23:08.665 Board Mr bar whi Structure require feel statement p https://example.com/ 1094 \N 33775 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.52888597379697 0 \N \N f 0 \N 5 2830751 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404046 2024-01-28 15:44:54.86 2024-01-28 15:54:56.233 Hot society statement bed watch party him Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper al https://example.com/ 795 \N 404046 \N \N \N \N \N \N \N \N science \N ACTIVE \N 26.3636736385056 0 \N \N f 0 \N 16 117212125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404085 2024-01-28 16:27:48.729 2024-01-28 16:37:49.671 \N Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept abl https://example.com/ 16353 404046 404046.404085 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1078273457713 0 \N \N f 0 \N 6 110397522 0 f f \N \N \N \N 404046 \N 0 0 \N \N f \N 404171 2024-01-28 18:08:52.805 2024-01-28 18:18:54.655 \N Newspaper wall begin over serious hand. Remember great meet theory local forward read scientist. Quickly benefit truth their music skin then. Yes control get same. Least picture sco https://example.com/ 19809 399223 399223.404171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1885105472311 0 \N \N f 0 \N 0 156443309 0 f f \N \N \N \N 399223 \N 0 0 \N \N f \N 404172 2024-01-28 18:12:10.538 2024-02-29 16:25:25.477 At within eye player Fear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appe https://example.com/ 16809 \N 404172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.11848390272 0 \N \N f 0 \N 5 206636386 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404367 2024-01-28 22:21:20.221 2024-01-28 22:31:21.261 Source scientist hair le Range laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generat https://example.com/ 18989 \N 404367 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 13.0274867008815 0 \N \N f 0 \N 5 22677984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404421 2024-01-28 23:38:55.242 2024-01-28 23:48:56.838 \N Trip improve born state similar appear. Money action change believe se https://example.com/ 18209 404192 404042.404150.404189.404192.404421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.855680232645497 0 \N \N f 0 \N 4 248603464 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 404908 2024-01-29 12:02:34.576 2024-01-29 12:12:35.859 Live child like read. Gas forge Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nEconomic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide add https://example.com/ 21148 \N 404908 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 13.8456797335259 0 \N \N f 0 \N 29 136751893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405202 2024-01-29 16:03:26.898 2024-02-20 01:55:46.919 Chance near so Enter land brother. Treat prove though. College everything be floor genera https://example.com/ 18116 \N 405202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.76670797593141 0 \N \N f 0 \N 12 204233891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405529 2024-01-29 18:59:48.772 2024-01-29 19:09:49.828 \N Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east din https://example.com/ 21386 405496 405496.405529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4020073197758 0 \N \N f 0 \N 0 217306046 0 f f \N \N \N \N 405496 \N 0 0 \N \N f \N 406816 2024-01-30 17:03:25.577 2024-01-30 17:13:26.668 Should doctor pressure maybe six fight. M Professor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nEvery east political drug. Important game subject seat seek college learn. Law too simply https://example.com/ 683 \N 406816 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 24.3211039754281 0 \N \N f 0 \N 4 131546652 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406903 2024-01-30 18:13:36.663 2024-01-30 18:23:37.486 Decade activity affect another hear Too very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nOffic https://example.com/ 659 \N 406903 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 2.70493915387224 0 \N \N f 0 \N 42 135164860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408644 2024-02-01 02:51:41.774 2024-02-01 03:01:44.248 Community us end alone. Admit remem Pick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nWhether special arm economy house. Us six floor break huge summer. Show financial long imagine eight. Business technology learn indicate record program. Himself century indicate or me central leg. Protect which kid. Alone religious current past choice. Include affect dream move. Military blue risk admit enter foot. Message see behavior camera on water. https://example.com/ 659 \N 408644 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 23.0247485475901 0 \N \N f 0 \N 0 88085121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409082 2024-02-01 14:05:45.906 2024-02-01 14:15:47.232 \N Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed d https://example.com/ 2390 408779 408779.409082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2815968383526 0 \N \N f 0 \N 0 86593433 0 f f \N \N \N \N 408779 \N 0 0 \N \N f \N 409093 2024-02-01 14:11:29.585 2024-02-01 14:21:30.803 Voice sign college quality. Explain middle knowledge. Force property Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nTerm ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea co https://example.com/ 18446 \N 409093 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 22.8443068456547 0 \N \N f 0 \N 0 197074648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419511 2024-02-09 23:37:05.249 2024-02-09 23:47:06.924 \N Provide difference relationship. Factor view https://example.com/ 5825 402899 402899.419511 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3499769610364 0 \N \N f 0 \N 0 247478978 0 f f \N \N \N \N 402899 \N 0 0 \N \N f \N 430237 2024-02-19 02:46:03.747 2024-02-19 02:56:05.015 \N White seven https://example.com/ 18717 429764 429764.430237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.46293411650625 0 \N \N f 0 \N 0 163385859 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 419513 2024-02-09 23:42:48.773 2024-02-09 23:52:50.299 \N Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple st https://example.com/ 19332 418789 418183.418261.418589.418789.419513 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3848041136698 0 \N \N f 0 \N 0 150418432 0 f f \N \N \N \N 418183 \N 0 0 \N \N f \N 428143 2024-02-17 00:26:06.643 2024-02-17 00:36:08.402 Power this as. Time Republican goal trade program. Kitchen theory process future Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant https://example.com/ 8168 \N 428143 \N \N \N \N \N \N \N \N news \N ACTIVE \N 13.3973095928688 0 \N \N f 0 \N 0 87399611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409610 2024-02-01 19:54:45.744 2024-02-01 20:04:47.195 Take discuss nature then break spring student. Five world about occur. Perhaps Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport. https://example.com/ 16276 \N 409610 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 13.7428597460543 0 \N \N f 0 \N 1 96387997 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409647 2024-02-01 20:29:58.986 2024-02-01 20:40:00.307 \N Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade https://example.com/ 15474 409637 409637.409647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6423908465089 0 \N \N f 0 \N 0 224024957 0 f f \N \N \N \N 409637 \N 0 0 \N \N f \N 410677 2024-02-02 17:59:23.3 2024-02-02 18:09:24.771 Gas evening morning do of. Development executive like s Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style pra https://example.com/ 4776 \N 410677 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 19.9282176217968 0 \N \N f 0 \N 0 172279684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409732 2024-02-01 22:15:24.116 2024-02-01 22:25:25.678 \N Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. https://example.com/ 18473 409710 409710.409732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4451558173664 0 \N \N f 0 \N 0 183233750 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 409915 2024-02-02 03:41:20.899 2024-02-02 03:51:22.494 Detail discussion line around. A Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nSite coach strong dark while new secu https://example.com/ 20573 \N 409915 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 9.97910210020596 0 \N \N f 0 \N 1 121884171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409943 2024-02-02 04:17:16.575 2024-02-02 04:27:17.961 \N Order science level wish quite. About production ability win front machine. Training bill student admini https://example.com/ 3392 409882 409710.409882.409943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.22022996488201 0 \N \N f 0 \N 0 209534456 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 409945 2024-02-02 04:20:23.614 2024-02-02 04:30:25.117 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nFly run executive. Reach next best machine orga https://example.com/ 3518 409710 409710.409945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3426408701047 0 \N \N f 0 \N 0 47732374 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 409987 2024-02-02 06:49:25.956 2024-02-02 06:59:27.086 \N Field eat man but religious close. Sort vote hair travel. Wonder cause pho https://example.com/ 8074 409738 409710.409738.409987 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0228354020584 0 \N \N f 0 \N 0 223397249 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 410136 2024-02-02 11:42:57.299 2024-02-02 11:52:58.866 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class https://example.com/ 15159 409710 409710.410136 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.30480636310211 0 \N \N f 0 \N 1 224249188 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 34007 2022-06-04 02:01:02.119 2024-02-15 04:00:10.844 Go game bar use i Out quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television e https://example.com/ 21472 \N 34007 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2792879276224 0 \N \N f 0 \N 2 159811385 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 411518 2024-02-03 15:35:56.747 2024-02-03 15:45:58.075 Born million yourself husband old. Air my child draw various ball. Tonigh Whatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Th https://example.com/ 17526 \N 411518 \N \N \N \N \N \N \N \N health \N ACTIVE \N 23.6445703128997 0 \N \N f 0 \N 9 237629568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 411814 2024-02-03 20:04:30.706 2024-02-03 20:14:32.219 \N Artist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through wa https://example.com/ 15536 411626 411626.411814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.93729538727965 0 \N \N f 0 \N 0 42531567 0 f f \N \N \N \N 411626 \N 0 0 \N \N f \N 411866 2024-02-03 20:39:38.487 2024-02-03 20:49:39.698 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nHistory prepar https://example.com/ 861 411626 411626.411866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3181786587117 0 \N \N f 0 \N 0 90456473 0 f f \N \N \N \N 411626 \N 0 0 \N \N f \N 421802 2024-02-12 04:16:11.167 2024-02-12 04:26:13.573 \N Perform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nKnow son future suggest paper personal these millio https://example.com/ 6164 421684 421567.421585.421655.421677.421684.421802 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.24552127173646 0 \N \N f 0 \N 0 61788343 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 412159 2024-02-04 03:33:32.893 2024-02-04 03:43:34.186 Customer reach nice. At himself those a Industry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit. https://example.com/ 19289 \N 412159 \N \N \N \N \N \N \N \N health \N ACTIVE \N 3.30320365123026 0 \N \N f 0 \N 4 117120571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413007 2024-02-04 22:03:46.761 2024-02-04 22:13:47.886 Build leg whole describe peace abo Somebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nEdge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nMaterial focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nStand red drop occur tell week sure worker. Skill teacher purpose major gun remain long two. Still imagine most represent bit after much whether. Firm seek indeed. Society star born this.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West child level quickly can. Bag remain mouth rule class. Forget let condition paper would.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nIdea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nPositive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sur https://example.com/ 1817 \N 413007 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 22.3438152610799 0 \N \N f 0 \N 56 227729195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 34302 2022-06-05 15:56:55.008 2023-10-02 01:24:37.669 Several follow value m Game management go ready star call how. Total sister make https://example.com/ 18583 \N 34302 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.22238765267515 0 \N \N f 0 \N 1 12757989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413112 2024-02-04 23:49:30.171 2024-02-04 23:59:31.996 \N Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pre https://example.com/ 3439 413106 413054.413099.413106.413112 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4600210233838 0 \N \N f 0 \N 0 161848986 0 f f \N \N \N \N 413054 \N 0 0 \N \N f \N 413309 2024-02-05 05:42:13.902 2024-02-05 05:52:15.81 \N Run music mean unit. Above here b https://example.com/ 21275 413261 413261.413309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2104363317312 0 \N \N f 0 \N 0 43730521 0 f f \N \N \N \N 413261 \N 0 0 \N \N f \N 413366 2024-02-05 08:07:35.871 2024-02-05 08:17:37.517 \N Be right whatever former various https://example.com/ 2519 413261 413261.413366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.80790269078194 0 \N \N f 0 \N 0 77937327 0 f f \N \N \N \N 413261 \N 0 0 \N \N f \N 413569 2024-02-05 13:02:00.345 2024-02-05 13:12:01.577 \N Go specia https://example.com/ 18601 413565 413565.413569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.28956100405609 0 \N \N f 0 \N 0 94869564 0 f f \N \N \N \N 413565 \N 0 0 \N \N f \N 413571 2024-02-05 13:03:40.099 2024-02-05 13:13:41.311 \N Per billion sc https://example.com/ 3347 413565 413565.413571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7424486715741 0 \N \N f 0 \N 0 175369909 0 f f \N \N \N \N 413565 \N 0 0 \N \N f \N 413652 2024-02-05 14:34:42.505 2024-02-05 14:44:44.729 Begin lawyer shoulder c Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nResult treatment smile capital teacher camera. Policy gun image ten weight weight even. Relate process official southern. Military some gas.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. F https://example.com/ 10530 \N 413652 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 21.8233682238717 0 \N \N f 0 \N 31 1960320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413738 2024-02-05 15:04:41.137 2024-02-05 15:14:42.394 \N Record re https://example.com/ 14015 413720 413720.413738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31731176329764 0 \N \N f 0 \N 1 235698359 0 f f \N \N \N \N 413720 \N 0 0 \N \N f \N 415222 2024-02-06 17:58:13.977 2024-02-06 18:08:15.094 \N Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock https://example.com/ 18387 415172 414678.414936.415172.415222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3260551303444 0 \N \N f 0 \N 3 10647602 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N 413751 2024-02-05 15:10:29.378 2024-02-05 15:20:31.047 \N Beyond leg century level he https://example.com/ 20183 413720 413720.413751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6870917059108 0 \N \N f 0 \N 1 47570857 0 f f \N \N \N \N 413720 \N 0 0 \N \N f \N 414256 2024-02-05 21:22:01.608 2024-02-05 21:32:02.92 Not find attack light everything different. Certainly travel performan Fly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wond https://example.com/ 1135 \N 414256 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 12.971283230855 0 \N \N f 0 \N 1 135015090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414270 2024-02-05 21:30:57.006 2024-02-05 21:40:58.75 \N Tax kid loss hear ahead common best see. Number thus which story list force https://example.com/ 14045 414187 414187.414270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.100938680528 0 \N \N f 0 \N 0 241861919 0 f f \N \N \N \N 414187 \N 0 0 \N \N f \N 414472 2024-02-06 02:26:02.565 2024-02-06 02:36:03.82 Truth training network government behav Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nShe under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality huge note course. Consider later property protect sure themselves song.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen prote https://example.com/ 676 \N 414472 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.7539535698648 0 \N \N f 0 \N 13 233494287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414936 2024-02-06 14:25:21.701 2024-02-06 14:35:22.953 \N Travel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce mo https://example.com/ 17162 414678 414678.414936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.23490168253321 0 \N \N f 0 \N 5 75136836 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N 429836 2024-02-18 18:43:29.944 2024-02-18 18:53:32.107 \N Concern position tr https://example.com/ 9985 429764 429764.429836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.41522402802649 0 \N \N f 0 \N 0 97647882 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 420785 2024-02-11 06:16:57.369 2024-02-11 06:26:59.069 \N Film beautiful large international mother order recognize. Press https://example.com/ 4102 420656 420527.420656.420785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44323307443461 0 \N \N f 0 \N 2 222543106 0 f f \N \N \N \N 420527 \N 0 0 \N \N f \N 428170 2024-02-17 01:04:54.661 2024-02-17 01:14:56.833 \N Leader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. https://example.com/ 18865 425952 425952.428170 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.55392699412509 0 \N \N f 0 \N 0 82472027 0 f f \N \N \N \N 425952 \N 0 0 \N \N f \N 428268 2024-02-17 04:19:22.236 2024-02-17 04:29:23.162 \N Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different t https://example.com/ 18828 427941 427941.428268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7547377992809 0 \N \N f 0 \N 1 178297070 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 428894 2024-02-17 19:51:11.626 2024-02-17 20:01:12.875 Any note pick American lead me Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nWide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green. Statement wait third.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nTake discuss nature then break spring student. Five world about occur. Perhaps sell provide hard physical. Like chance about television. Ahead onto arm exactly soon. Time forget six right require become. Clear data seek hit. Picture energy as experience. Police too computer. Language itself city.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nHuman since term seek. Easy move guess bring t https://example.com/ 20454 \N 428894 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.8132213669947 0 \N \N f 0 \N 2 175187376 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 415012 2024-02-06 15:31:25.756 2024-02-06 15:41:28.477 Site product one fact loss. Site yeah positio Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nFour learn tell crime. Work maintain probably huge win training. Join dog travel leave. Many school first source serious. Range reveal describe social allow our. Unit form administration. Walk imagine parent single.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact. https://example.com/ 20564 \N 415012 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.73231071788153 0 \N \N f 0 \N 36 148101029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 415310 2024-02-06 19:38:50.067 2024-02-06 19:48:51.456 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nPeace then kid under. Exactly nothing present notice on add base. Policy low financial activity. Voice imagine https://example.com/ 1478 414678 414678.415310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6737733414875 0 \N \N f 0 \N 1 95363475 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N 415384 2024-02-06 21:08:07.449 2024-02-06 21:18:08.71 \N Need mov https://example.com/ 1825 415381 415381.415384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.06344774240847 0 \N \N f 0 \N 3 229834630 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 415386 2024-02-06 21:09:47.578 2024-02-06 21:19:48.802 \N Long i https://example.com/ 4126 415381 415381.415386 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4474234098332 0 \N \N f 0 \N 0 176347519 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 415409 2024-02-06 21:34:39.701 2024-02-06 21:44:41.712 \N General against pag https://example.com/ 2264 415381 415381.415409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9009347183798 0 \N \N f 0 \N 0 220292245 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 415559 2024-02-06 23:50:47.033 2024-02-07 00:00:48.539 \N Same listen suggest five serve sit need if. South listen give agent station. Move https://example.com/ 8498 415423 415012.415423.415559 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7165124027643 0 \N \N f 0 \N 0 50332971 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N 415643 2024-02-07 02:09:56.69 2024-02-07 02:19:58.124 \N Very executive American something m https://example.com/ 19500 414678 414678.415643 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.812590930086 0 \N \N f 0 \N 0 241207896 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N 415714 2024-02-07 04:37:09.74 2024-02-07 04:47:11.652 \N Yeah word become defense role you https://example.com/ 20424 415381 415381.415714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.95305176284329 0 \N \N f 0 \N 0 91842873 0 f f \N \N \N \N 415381 \N 0 0 \N \N f \N 415776 2024-02-07 06:55:39.724 2024-02-28 16:42:28.695 Town listen Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. https://example.com/ 19329 \N 415776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1975667516683 0 \N \N f 0 \N 4 70917503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416239 2024-02-07 16:04:24.417 2024-02-07 16:14:25.467 Pattern someone notice power fly. Against expect new often size top. S Beyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk. https://example.com/ 21063 \N 416239 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 4.10840322853478 0 \N \N f 0 \N 16 81641417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416408 2024-02-07 17:42:23.225 2024-02-07 17:52:24.695 Girl someone prepare. Realize however yeah sta Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever me https://example.com/ 20412 \N 416408 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 13.6358670828696 0 \N \N f 0 \N 10 162832605 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416530 2024-02-07 19:07:52.369 2024-02-07 19:17:54.242 \N Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience t https://example.com/ 18941 415310 414678.415310.416530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8747134292327 0 \N \N f 0 \N 0 75108171 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N 416733 2024-02-07 22:09:12.019 2024-02-07 22:19:13.63 Leave relationship rule rich draw s Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nMain anyone difficult radio sure. Question choose consider especially https://example.com/ 14909 \N 416733 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 8.11495464022364 0 \N \N f 0 \N 1 200437365 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416981 2024-02-08 02:57:30.797 2024-02-08 03:07:32.472 \N Area series street exist cold reflect thought. Imagine else activity probably analysis rich https://example.com/ 19044 416932 416158.416209.416686.416712.416910.416916.416932.416981 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4509169817987 0 \N \N f 0 \N 3 188319683 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 417213 2024-02-08 10:35:52.844 2024-02-08 10:45:54.772 Series wait hotel north action bag yet history. Company when air law posi Recent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nAfter increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nPast skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nation win speak receive.\nEnough book hope y https://example.com/ 844 \N 417213 \N \N \N \N \N \N \N \N health \N ACTIVE \N 7.00811891046683 0 \N \N f 0 \N 40 219432873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417624 2024-02-08 16:04:35.689 2024-02-08 16:14:37.561 \N Policy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north se https://example.com/ 5449 417213 417213.417624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7762658669852 0 \N \N f 0 \N 5 92325215 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 417690 2024-02-08 17:04:51.055 2024-02-08 17:14:52.395 \N Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nYeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. W https://example.com/ 15806 361271 361271.417690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9528931775942 0 \N \N f 0 \N 0 110031544 0 f f \N \N \N \N 361271 \N 0 0 \N \N f \N 418021 2024-02-08 20:52:38.053 2024-02-08 21:02:40.472 Walk apply partn Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they https://example.com/ 19403 \N 418021 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 10.9714984103464 0 \N \N f 0 \N 18 186687597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418192 2024-02-08 23:28:58.882 2024-02-08 23:38:59.956 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we https://example.com/ 12965 417801 417213.417801.418192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.3170384701516 0 \N \N f 0 \N 0 40544172 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 418261 2024-02-09 01:04:39.26 2024-02-09 01:14:41.054 \N Strong of create prevent choose final plant. Continue water white understand chance. Action avoid https://example.com/ 775 418183 418183.418261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06673192395791 0 \N \N f 0 \N 5 131627103 0 f f \N \N \N \N 418183 \N 0 0 \N \N f \N 418294 2024-02-09 01:32:46.498 2024-02-09 01:42:47.848 Such house manag Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set iss https://example.com/ 18336 \N 418294 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 2.40337869900266 0 \N \N f 0 \N 5 12637468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418596 2024-02-09 10:34:42.976 2024-02-09 10:44:45.038 \N Own about father behind relate federal drop try. Real you difference anot https://example.com/ 12736 418424 418183.418424.418596 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8317963546403 0 \N \N f 0 \N 0 231388738 0 f f \N \N \N \N 418183 \N 0 0 \N \N f \N 47623 2022-07-21 04:49:49.533 2023-10-30 01:53:40.859 Both peace dru Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell comm https://example.com/ 746 \N 47623 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.21629248483262 0 \N \N f 0 \N 3 158531052 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419144 2024-02-09 18:23:59.677 2024-02-09 18:34:01.936 For share something effect science conference among audience. Visi Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nThem bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light. https://example.com/ 17095 \N 419144 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 13.9556857868244 0 \N \N f 0 \N 1 5164216 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419187 2024-02-09 18:53:30.647 2024-02-09 19:03:31.605 Right student yard protect cover. Carry thes Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview ite https://example.com/ 2367 \N 419187 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 19.8505301034816 0 \N \N f 0 \N 5 90039025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419265 2024-02-09 19:42:10.882 2024-02-09 19:52:12.525 Between remember watch image save win determine. Each Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment. https://example.com/ 2123 \N 419265 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 4.98796599410799 0 \N \N f 0 \N 1 189135861 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419298 2024-02-09 19:57:37.543 2024-02-09 20:07:38.828 Begin lawyer shoulde Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment la https://example.com/ 6741 \N 419298 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 28.3511273993381 0 \N \N f 0 \N 1 24459373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419612 2024-02-10 01:36:44.024 2024-02-10 01:46:45.918 Human appear she. So happen Part dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nWear role agency. Enter back require mission piece important especially. Those jus https://example.com/ 12708 \N 419612 \N \N \N \N \N \N \N \N health \N ACTIVE \N 29.170895213892 0 \N \N f 0 \N 36 176344099 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419731 2024-02-10 07:47:48.273 2024-02-10 07:57:49.58 Southern wear age then chair. Sign young end Republican box qualit Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement. https://example.com/ 13878 \N 419731 \N \N \N \N \N \N \N \N history \N ACTIVE \N 27.8261464027215 0 \N \N f 0 \N 1 208316242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420192 2024-02-10 16:54:10.958 2024-02-10 17:04:12.775 Right view contain easy someone. People away page experience. Which like r Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nCountry audience including. Occur movie example defense live. Computer crime at lay order. Begin room may career tell clear.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bil https://example.com/ 21067 \N 420192 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.83055162399825 0 \N \N f 0 \N 5 210202336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420205 2024-02-10 17:07:00.974 2024-02-10 17:17:02.717 \N Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nWin https://example.com/ 6653 420192 420192.420205 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.758008520249689 0 \N \N f 0 \N 1 136360454 0 f f \N \N \N \N 420192 \N 0 0 \N \N f \N 420213 2024-02-10 17:18:34.804 2024-02-10 17:28:35.867 \N Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. https://example.com/ 21292 420205 420192.420205.420213 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.379634882083 0 \N \N f 0 \N 0 2207602 0 f f \N \N \N \N 420192 \N 0 0 \N \N f \N 420220 2024-02-10 17:30:06.976 2024-02-10 17:40:09.059 Ready which computer major take involve suggest quickly. Firm crime admini Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nLeast start time do. Occur between avoid political use make. Nor no bot https://example.com/ 8448 \N 420220 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.4407414170909 0 \N \N f 0 \N 2 59907283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420221 2024-02-10 17:31:00.346 2024-02-10 17:41:01.433 \N Direction business early probably black method spend north. However focus pressure ready avoid expect. In ground place exper https://example.com/ 21019 419753 419753.420221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1440143321254 0 \N \N f 0 \N 1 68443981 0 f f \N \N \N \N 419753 \N 0 0 \N \N f \N 423683 2024-02-13 16:50:14.599 2024-02-13 17:00:16.656 Moment or possible there month. Mys Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas. https://example.com/ 9366 \N 423683 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 17.9915724441933 0 \N \N f 0 \N 3 133998807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420323 2024-02-10 18:40:10.082 2024-02-10 18:50:11.495 \N Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepar https://example.com/ 17316 420184 420184.420323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3740814002443 0 \N \N f 0 \N 2 102467788 0 f f \N \N \N \N 420184 \N 0 0 \N \N f \N 420731 2024-02-11 03:37:51.696 2024-02-11 03:47:52.571 \N Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult https://example.com/ 4074 420164 420164.420731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2965263298588 0 \N \N f 0 \N 0 52084237 0 f f \N \N \N \N 420164 \N 0 0 \N \N f \N 420995 2024-02-11 12:48:26.096 2024-02-11 12:58:28.475 \N If lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Mome https://example.com/ 20434 420184 420184.420995 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.77733641001214 0 \N \N f 0 \N 0 213681854 0 f f \N \N \N \N 420184 \N 0 0 \N \N f \N 421045 2024-02-11 13:35:46.884 2024-02-11 13:45:48.002 \N Value have anyone crime professional. Close or pass yeah peace https://example.com/ 6149 420641 420641.421045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.80440703033454 0 \N \N f 0 \N 0 92038972 0 f f \N \N \N \N 420641 \N 0 0 \N \N f \N 422784 2024-02-12 19:44:25.985 2024-02-12 19:54:28.034 \N Professional remain repor https://example.com/ 19292 422776 422717.422735.422756.422763.422776.422784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.98048042623795 0 \N \N f 0 \N 0 42408512 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 47773 2022-07-21 14:22:04.473 2023-10-02 04:48:22.536 Common loss oil Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise stor https://example.com/ 15624 \N 47773 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0923942021643 0 \N \N f 0 \N 1 225504335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421309 2024-02-11 17:26:23.557 2024-02-11 17:36:24.528 Member I discover Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside bac https://example.com/ 1773 \N 421309 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 17.0811902324131 0 \N \N f 0 \N 0 69125251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421367 2024-02-11 18:06:51.95 2024-02-19 18:26:14.362 Region sid Skill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human https://example.com/ 20691 \N 421367 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4711958176919 0 \N \N f 0 \N 8 118282166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421398 2024-02-11 18:24:33.491 2024-02-11 18:34:35.412 \N Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Mont https://example.com/ 14074 419475 419296.419475.421398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5257157932768 0 \N \N f 0 \N 4 84372698 0 f f \N \N \N \N 419296 \N 0 0 \N \N f \N 424087 2024-02-13 22:35:14.016 2024-02-13 22:45:15.515 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest th https://example.com/ 3709 423917 423917.424087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.60454001686697 0 \N \N f 0 \N 1 244018425 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 421567 2024-02-11 21:03:33.388 2024-02-11 21:13:34.814 Man talk arm player scene reflect. Window Statement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nSuccess against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best tea https://example.com/ 711 \N 421567 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.5666059144583 0 \N \N f 0 \N 116 148917836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421586 2024-02-11 21:16:46.639 2024-02-11 21:26:47.929 \N That very sister attention myself out bit. Want father president same future send important. Mother we expert realize e https://example.com/ 7847 421567 421567.421586 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4911809096633 0 \N \N f 0 \N 0 183541066 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 421684 2024-02-12 00:03:30.109 2024-02-12 00:13:31.754 \N Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\n https://example.com/ 4984 421677 421567.421585.421655.421677.421684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3590569707107 0 \N \N f 0 \N 2 126663788 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 48165 2022-07-22 08:23:10.54 2023-10-02 04:50:33.58 Agreement Bl https://example.com/ 2519 \N 48165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0886652722484 0 \N \N f 0 \N 2 179316833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 48256 2022-07-22 13:48:33.924 2023-10-02 04:50:51.111 Hope more garden Result treatment smile capital teacher camera. Policy gun image ten weig https://example.com/ 19992 \N 48256 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7399631112517 0 \N \N f 0 \N 2 94474994 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425928 2024-02-15 11:50:13.619 2024-02-15 12:00:15.466 \N Record recent evening worry. Direction thought proper https://example.com/ 4102 424725 424725.425928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9957067025192 0 \N \N f 0 \N 0 246125634 0 f f \N \N \N \N 424725 \N 0 0 \N \N f \N 428323 2024-02-17 07:47:45.454 2024-02-17 07:57:46.982 \N Direction business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area https://example.com/ 16355 428268 427941.428268.428323 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.188363058978 0 \N \N f 0 \N 0 247014294 0 f f \N \N \N \N 427941 \N 0 0 \N \N f \N 428331 2024-02-17 08:16:45.237 2024-02-17 08:26:47.255 \N Though deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base re https://example.com/ 896 428046 425364.425631.427111.427193.427195.427198.428046.428331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4435638079531 0 \N \N f 0 \N 0 246628796 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 429076 2024-02-18 00:03:50.94 2024-02-18 00:13:52.001 Off should democratic notice old apply society. Buy section Do probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural d https://example.com/ 11144 \N 429076 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 17.9143976688671 0 \N \N f 0 \N 1 11767266 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421805 2024-02-12 04:22:18.59 2024-02-12 04:32:19.554 Last expert dark compa Probably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project https://example.com/ 20117 \N 421805 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 29.6337028428202 0 \N \N f 0 \N 15 138671103 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422152 2024-02-12 12:01:53.627 2024-02-12 12:11:54.996 Degree third deep cause buy put whatever. Gas human prepa Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Difference should middle couple to not suddenly bank. Reach standard doctor ok order that white. Might American spring hair when marriage push. Mission have reflect if. Plant bill environment make. Stock camera home speak remain open lose. Story evening brother teacher kind figure might heart.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality. https://example.com/ 20152 \N 422152 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.0456222256067 0 \N \N f 0 \N 1 1276327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422335 2024-02-12 14:01:23.202 2024-02-12 14:11:24.804 \N Determine magazine police agent billion. Head great exist. Against p https://example.com/ 10698 422055 420816.422055.422335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7865029719145 0 \N \N f 0 \N 0 52160671 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N 422673 2024-02-12 18:15:04.809 2024-02-12 18:25:06.079 Charge hold reveal easy rise metho Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nWish low party shake. National offer my specific happen well. Federal word experience. Say early see both. Forget new road. Market edge occur cold increase model close culture. Receive store science race light across environment. Foot thought marriage campaign modern including. Water child million expert type weight another. Election include PM father present.\nWhy long up fly difficult na https://example.com/ 652 \N 422673 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 6.6401355634278 0 \N \N f 0 \N 3 64056300 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422776 2024-02-12 19:41:14.056 2024-02-12 19:51:15.426 \N Maybe doctor performance school. Happen per discussion law different ever. Get argue up https://example.com/ 2514 422763 422717.422735.422756.422763.422776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3193888552902 0 \N \N f 0 \N 4 2526485 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 422778 2024-02-12 19:41:50.865 2024-02-12 19:51:52.091 \N Social impac https://example.com/ 21365 422776 422717.422735.422756.422763.422776.422778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6577343931755 0 \N \N f 0 \N 2 198563908 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 422793 2024-02-12 19:51:46.685 2024-02-12 20:01:48.526 \N Firm study certainly p https://example.com/ 15337 422785 422717.422735.422756.422763.422776.422778.422785.422793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8245154753908 0 \N \N f 0 \N 0 33826974 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 422978 2024-02-12 22:45:42.255 2024-02-12 22:55:44.211 Science sea sport term page near. Agreement forget age center yes. Figure There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow https://example.com/ 16004 \N 422978 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 23.1012840326583 0 \N \N f 0 \N 0 106715283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423124 2024-02-13 03:47:13.377 2024-02-13 03:57:14.083 Describe modern fund cultural realize bag. Goal describe tonight Near see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nStuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickl https://example.com/ 15146 \N 423124 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.147993607959 0 \N \N f 0 \N 70 66810783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423146 2024-02-13 05:18:17.693 2024-02-13 05:28:19.463 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nKnow son future suggest paper personal these mil https://example.com/ 910 423109 423010.423084.423109.423146 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7936104819762 0 \N \N f 0 \N 2 196284818 0 f f \N \N \N \N 423010 \N 0 0 \N \N f \N 429089 2024-02-18 00:31:09.648 2024-02-18 00:41:10.531 \N She under https://example.com/ 676 428979 428953.428979.429089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9944633889673 0 \N \N f 0 \N 0 239867147 0 f f \N \N \N \N 428953 \N 0 0 \N \N f \N 423147 2024-02-13 05:18:21.425 2024-02-13 05:28:23.399 Small enjoy manage service individu Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nAdd bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service year purpose worker recent us. Show way goal wife leave data southern. Method actually history improve whether cover. Final run say school. Cut responsibility later year near.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark. https://example.com/ 1180 \N 423147 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 0.873677103913622 0 \N \N f 0 \N 1 163873261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423475 2024-02-13 14:05:12.432 2024-02-13 14:15:13.93 Mrs when number place under moment. Own i Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nGrow challenge small bill sometimes https://example.com/ 18618 \N 423475 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.3920763797818 0 \N \N f 0 \N 6 94370836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 48757 2022-07-23 22:07:12.185 2023-10-02 04:51:51.446 Idea seem tend atta His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech office https://example.com/ 13174 \N 48757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5499221679192 0 \N \N f 0 \N 9 224259351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 48877 2022-07-24 10:20:58.851 2023-10-02 04:52:18.855 Mean particularly Again reveal time https://example.com/ 697 \N 48877 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.23469768012686 0 \N \N f 0 \N 1 216180608 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423720 2024-02-13 17:08:32.056 2024-02-13 17:18:34.281 \N Scientist its surface arri https://example.com/ 11862 423475 423475.423720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6630734413588 0 \N \N f 0 \N 2 206464269 0 f f \N \N \N \N 423475 \N 0 0 \N \N f \N 424028 2024-02-13 21:47:45.559 2024-02-13 21:57:48.043 Same need interesting between watch base city by Name everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agreement threat.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nSafe pass wife stay effort mission. Major long now hand example commercial. Series memory positive industry enter. Toward range daughter wonder soon. Nor federal director assume network. Far experience check author receive officer drop. Sure agreement edge process. Some because base authority nature huge environmental. Radio political daughter set lot daughter such view. Week life Mrs put growth such.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nBlack leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nOccur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious de https://example.com/ 15282 \N 424028 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 9.25260520399984 0 \N \N f 0 \N 0 6584975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424039 2024-02-13 21:55:53.164 2024-02-13 22:05:54.225 \N Follow commercial image consider media these. Drop program study finish cultural religious. Feeling fi https://example.com/ 16149 423954 423954.424039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7916703293974 0 \N \N f 0 \N 0 164133583 0 f f \N \N \N \N 423954 \N 0 0 \N \N f \N 424280 2024-02-14 02:01:13.562 2024-02-14 02:11:15.754 \N Opportunity hospital address action return different style. Beat magazine imagine great maintain https://example.com/ 2741 423917 423917.424280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1494865514223 0 \N \N f 0 \N 1 58318440 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 424308 2024-02-14 02:47:26.48 2024-02-14 02:57:27.348 \N Decision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nWide hundred paper early. Together th https://example.com/ 4314 424280 423917.424280.424308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.77769786864542 0 \N \N f 0 \N 0 186249301 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 424808 2024-02-14 14:25:36.558 2024-02-14 14:35:38.095 Himself seem along exist populati Member I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nHouse west https://example.com/ 7986 \N 424808 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 8.33241065997324 0 \N \N f 0 \N 13 235098729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424911 2024-02-14 15:42:43.143 2024-02-14 15:52:44.882 \N Practice pressure help white source. Either little finish age young. Can perhaps left apply red because. https://example.com/ 1602 424671 424671.424911 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67591089090713 0 \N \N f 0 \N 0 105643556 0 f f \N \N \N \N 424671 \N 0 0 \N \N f \N 425086 2024-02-14 17:07:43.716 2024-02-14 17:17:45.545 Keep third police section avoid down. Bank d May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nStory do plant get. Base involve sport film authority want song career. Eat https://example.com/ 1195 \N 425086 \N \N \N \N \N \N \N \N history \N ACTIVE \N 23.1935357751417 0 \N \N f 0 \N 14 130828972 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425118 2024-02-14 17:24:31.227 2024-02-14 17:34:33.624 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nDegree thir https://example.com/ 12959 424952 424772.424952.425118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8164766761095 0 \N \N f 0 \N 2 204768943 0 f f \N \N \N \N 424772 \N 0 0 \N \N f \N 425402 2024-02-14 21:37:10.629 2024-02-14 21:47:12.069 Say this find practice. Small exactly explain fr Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nNature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly an https://example.com/ 16124 \N 425402 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 25.39167296309 0 \N \N f 0 \N 0 218340951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425712 2024-02-15 07:12:02.171 2024-02-15 07:22:04.25 \N Pull fact question for unit up community interest. Sign creat https://example.com/ 13174 425699 425699.425712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61246943113075 0 \N \N f 0 \N 0 92178812 0 f f \N \N \N \N 425699 \N 0 0 \N \N f \N 426052 2024-02-15 13:47:40.376 2024-02-15 13:57:41.599 Very yes customer public music example expert. Fear would much. Necessary leader We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement. https://example.com/ 19502 \N 426052 \N \N \N \N \N \N \N \N news \N ACTIVE \N 0.489565880805287 0 \N \N f 0 \N 3 212889923 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426129 2024-02-15 14:49:49.382 2024-02-15 14:59:50.092 \N Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk c https://example.com/ 20837 426117 426090.426097.426117.426129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3060894341649 0 \N \N f 0 \N 12 162300295 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 426203 2024-02-15 15:55:16.677 2024-02-15 16:05:18.799 \N Tax kid loss hear ahead common best see. Number thus which story list force ci https://example.com/ 18956 426147 426090.426097.426117.426129.426147.426203 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7701277667827 0 \N \N f 0 \N 0 26988909 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 426365 2024-02-15 17:24:58.44 2024-02-15 17:34:59.971 \N Red production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way autho https://example.com/ 8569 422702 343047.422702.426365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.72317470682479 0 \N \N f 0 \N 3 198263437 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 426444 2024-02-15 18:23:01.488 2024-02-15 18:33:03.381 Customer include control and. Chance blue audience right could cours Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize. https://example.com/ 686 \N 426444 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 12.6909248459062 0 \N \N f 0 \N 0 228263988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426540 2024-02-15 19:26:21.617 2024-02-15 19:36:22.981 \N Artist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform r https://example.com/ 4692 426427 426427.426540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8692622985599 0 \N \N f 0 \N 1 57146882 0 f f \N \N \N \N 426427 \N 0 0 \N \N f \N 426595 2024-02-15 20:18:43.493 2024-02-15 20:28:44.609 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nRisk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nLo https://example.com/ 10944 426523 426523.426595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7270318435651 0 \N \N f 0 \N 0 225787187 0 f f \N \N \N \N 426523 \N 0 0 \N \N f \N 426704 2024-02-15 21:37:33.14 2024-02-15 21:47:34.764 Wish join discuss brother worry talk final. Deta Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nDifferent dog example. Themselves up or perhaps. Create election newspaper strategy probably step bad. Eye none stop week. Marriage political paper. Family minute Congress. Baby information describe baby help I smile.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office value talk seat me. Store with political across. Interest smile total outside police live not get. Player responsibility second itself war inside.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. About short thing specific prod https://example.com/ 16789 \N 426704 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.911521853064 0 \N \N f 0 \N 0 2114250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427054 2024-02-16 05:35:04.079 2024-02-16 05:45:06.137 \N Key group certainly little https://example.com/ 18235 421704 383302.421704.427054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.45177517440789 0 \N \N f 0 \N 1 6506160 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 426711 2024-02-15 21:40:48.828 2024-02-15 21:50:50.715 Alone force machine policy energy. St Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Mig https://example.com/ 9354 \N 426711 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8558011614241 0 \N \N f 0 \N 31 3051208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426767 2024-02-15 22:34:59.457 2024-02-15 22:45:00.85 \N Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. https://example.com/ 889 426711 426711.426767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3174951445331 0 \N \N f 0 \N 2 4303679 0 f f \N \N \N \N 426711 \N 0 0 \N \N f \N 426799 2024-02-15 23:00:42.778 2024-02-15 23:10:43.85 \N Material focus experience picture. Future still full blood s https://example.com/ 13249 426711 426711.426799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6134802116273 0 \N \N f 0 \N 1 218032169 0 f f \N \N \N \N 426711 \N 0 0 \N \N f \N 429107 2024-02-18 01:04:09.464 2024-02-18 01:14:11.354 \N Different dog example. Themselv https://example.com/ 5171 428850 428573.428850.429107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7467122943131 0 \N \N f 0 \N 1 147899582 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 427655 2024-02-16 17:03:59.554 2024-02-16 17:14:00.961 Physical fast give music base. Gun body every join every Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement. https://example.com/ 21352 \N 427655 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5585945326493 0 \N \N f 0 \N 0 152618351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426808 2024-02-15 23:05:00.716 2024-02-15 23:15:02.685 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nLight https://example.com/ 8284 426711 426711.426808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5517655467577 0 \N \N f 0 \N 2 210047178 0 f f \N \N \N \N 426711 \N 0 0 \N \N f \N 426891 2024-02-16 00:17:30.294 2024-02-16 00:27:32.304 \N Hear direction have instead. Republican international theory life. Perform accept base much Mrs thro https://example.com/ 11819 425873 425873.426891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8805566229995 0 \N \N f 0 \N 2 111763540 0 f f \N \N \N \N 425873 \N 0 0 \N \N f \N 426918 2024-02-16 00:43:41.916 2024-02-16 00:53:43.261 Garden morning compare federal. Already west parent Same product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less ho https://example.com/ 761 \N 426918 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 23.1648843236882 0 \N \N f 0 \N 5 85141002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 49065 2022-07-24 22:11:31 2023-10-02 04:52:47.524 Key third PM painting Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider t https://example.com/ 18005 \N 49065 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4017607777037 0 \N \N f 0 \N 1 53486248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427186 2024-02-16 09:41:08.585 2024-02-16 09:51:10.336 Health reduce performance body similar light wear this. Trai News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. That music analysis start standard. Five media commercial address she ask accept section. https://example.com/ 1577 \N 427186 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.40778866981676 0 \N \N f 0 \N 0 198923745 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427193 2024-02-16 09:49:00.013 2024-02-16 09:59:01.504 \N Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six per https://example.com/ 9276 427111 425364.425631.427111.427193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0743480133803 0 \N \N f 0 \N 5 40025552 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 427762 2024-02-16 18:05:35.365 2024-02-16 18:15:36.859 Total necessary thought t Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nLetter https://example.com/ 14381 \N 427762 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 23.639962139574 0 \N \N f 0 \N 2 7292891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427868 2024-02-16 19:41:47.79 2024-02-16 19:51:48.72 Body situation without keep first per. F Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nTake throw line right your trial public. Film open contain military soon. https://example.com/ 20646 \N 427868 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 10.8390392246427 0 \N \N f 0 \N 16 99672323 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 212283 2023-07-21 20:00:42.201 2023-07-21 20:11:43.37 Morning create future popular. Shoulder animal \N https://example.com/ 18601 \N 212283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.54168709777269 0 \N \N f 0 \N 15 236807460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427941 2024-02-16 20:24:03.402 2024-02-16 20:34:04.987 Eat culture event thus any event watch hospital. Degree improve truth stock Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nLeast start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern significant carry chair. Car everything its visit if leg win.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone natural police.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nHis mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditional such. Concern issue couple parent figure herself.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nRecord recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry store image than. Big while argue learn now direction. Sea heart decide image purpose.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nDoctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surface myself voice choose. Leader woman author green nation. Mouth which decide sense language machine. Plan doctor seem ever message car probably player.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover managem https://example.com/ 17722 \N 427941 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 7.82444744505817 0 \N \N f 0 \N 17 172982261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427305 2024-02-16 12:13:42.104 2024-02-16 12:23:43.329 Support structure season energy group. Important nearly dark Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide. https://example.com/ 4802 \N 427305 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6861578829305 0 \N \N f 0 \N 1 183212101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427434 2024-02-16 13:59:42.802 2024-02-16 14:09:44.557 Region model over box Finally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nStructure ever film speech along so https://example.com/ 1723 \N 427434 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2259542717447 0 \N \N f 0 \N 1 122314342 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427467 2024-02-16 14:18:18.852 2024-02-16 14:28:20.329 Stuff this how behind total his left. Know school produce together ligh Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve. https://example.com/ 1136 \N 427467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3809289198542 0 \N \N f 0 \N 0 169409547 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427483 2024-02-16 14:31:39.571 2024-02-16 14:41:40.912 \N Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nPerform might someone represent where not mai https://example.com/ 19796 423917 423917.427483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.73602402988065 0 \N \N f 0 \N 1 108696876 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 427485 2024-02-16 14:32:27.993 2024-02-16 14:42:28.834 \N Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressur https://example.com/ 11314 427483 423917.427483.427485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.42070796542413 0 \N \N f 0 \N 0 185716290 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 427528 2024-02-16 15:34:26.053 2024-02-16 15:44:27.521 \N These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nG https://example.com/ 18507 426832 426832.427528 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.10376516790134 0 \N \N f 0 \N 0 96363103 0 f f \N \N \N \N 426832 \N 0 0 \N \N f \N 427551 2024-02-16 15:53:39.998 2024-02-16 16:03:41.195 \N Happen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National s https://example.com/ 19809 427464 427292.427353.427369.427390.427398.427464.427551 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.545787693002 0 \N \N f 0 \N 1 76047928 0 f f \N \N \N \N 427292 \N 0 0 \N \N f \N 427798 2024-02-16 18:48:20.446 2024-02-16 18:58:21.818 Customer include control and. Chance blue audience righ Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nSomeone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal spring shoulder. Seven by citizen do. Although a arrive order professional air dinner doctor. Range present tonight whatever series wish.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nFly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street prepare responsibility reality strategy compare. International than reflect join player. Never service generation section security. Second fire prove however near heavy huge.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nArtist sound return full resource lay people. Attention blue into trial. While travel all why brother. During common act hard prepare. Boy camera trade perform perform response carry maybe. Product could key property indicate from. Artist window bank specific quality.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read eve https://example.com/ 2285 \N 427798 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0004711074182 0 \N \N f 0 \N 48 60713069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427990 2024-02-16 21:05:24.243 2024-02-16 21:15:25.077 Thus measure find board bag high himself. Very h Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nShake pretty eat probably pretty stop time. Everything write never. Civil week kind student cut. Stock detail arm claim. Few democratic similar. Several another give alone amount. Challenge attention onto. Huge race speak job human. Need up section budget affect operation reality.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nRole number law science. Sing fight use development different https://example.com/ 861 \N 427990 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.2026581885908 0 \N \N f 0 \N 0 52590835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429119 2024-02-18 01:29:41.137 2024-02-18 01:39:42.648 \N Face opportuni https://example.com/ 2640 428886 428886.429119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.006334683988 0 \N \N f 0 \N 2 84177431 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 428344 2024-02-17 08:35:25.361 2024-02-17 08:45:27.342 According sh Order care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month co https://example.com/ 626 \N 428344 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 0.702227912925935 0 \N \N f 0 \N 1 185524019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428355 2024-02-17 09:12:28.801 2024-02-17 09:22:30.085 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many betwee https://example.com/ 20642 361312 361271.361303.361312.428355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8254900688419 0 \N \N f 0 \N 0 85717323 0 f f \N \N \N \N 361271 \N 0 0 \N \N f \N 428356 2024-02-17 09:13:57.682 2024-02-17 09:23:58.859 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light https://example.com/ 21222 361380 361271.361303.361312.361380.428356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6471102974181 0 \N \N f 0 \N 0 175830304 0 f f \N \N \N \N 361271 \N 0 0 \N \N f \N 428556 2024-02-17 14:19:39.369 2024-02-17 14:29:41.135 Someone network true easy store. Take improve drug a Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat. https://example.com/ 20837 \N 428556 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 12.6936645627456 0 \N \N f 0 \N 5 35479019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428907 2024-02-17 20:04:34.235 2024-02-17 20:14:35.678 \N Own about father behind relate federal drop try. Real you difference another away move east. Condition rest social American might program party share. Win give unit cost run week suffer. Sign my become coach follow current this. Here place form factor race wear available reason. Personal voice idea. Alone p https://example.com/ 10979 428886 428886.428907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6308574640009 0 \N \N f 0 \N 3 84210530 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 428585 2024-02-17 14:49:55.174 2024-02-17 14:59:56.293 \N Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trad https://example.com/ 20439 428573 428573.428585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.24959189934952 0 \N \N f 0 \N 3 104663611 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 428593 2024-02-17 14:56:30.906 2024-02-17 15:06:32.822 Power herself life always. Specific but learn its med Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. https://example.com/ 19622 \N 428593 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 20.207032567732 0 \N \N f 0 \N 2 192092489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428645 2024-02-17 15:54:18.398 2024-02-17 16:04:19.433 \N Ten answer natural star research black system three. Mention wish https://example.com/ 14472 428544 428544.428645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7724372181168 0 \N \N f 0 \N 1 114418542 0 f f \N \N \N \N 428544 \N 0 0 \N \N f \N 428869 2024-02-17 19:17:58.285 2024-02-17 19:27:59.642 Play director employee. Tend central those now sto Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nRole number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debat https://example.com/ 21493 \N 428869 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 9.35851718532632 0 \N \N f 0 \N 0 29970445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428873 2024-02-17 19:21:40.12 2024-02-17 19:31:41.548 \N Why long up fly difficult nature. Age condition practice area worry despite care. Ago lang https://example.com/ 16543 428843 428760.428843.428873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6229289806939 0 \N \N f 0 \N 0 52605618 0 f f \N \N \N \N 428760 \N 0 0 \N \N f \N 428886 2024-02-17 19:47:36.256 2024-02-17 19:57:37.759 Medical view similar along sense sit piec Manager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art https://example.com/ 7998 \N 428886 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 29.8435587303519 0 \N \N f 0 \N 17 226417204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 29690 2022-05-19 09:55:45.082 2023-10-02 01:09:31.275 Better instead whom usually. Wrong think memo \N https://example.com/ 12024 \N 29690 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4932636715769 0 \N \N f 0 \N 10 171319192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428914 2024-02-17 20:07:27.172 2024-02-17 20:17:28.389 \N Long interesting cut grow prevent. Western ability much https://example.com/ 21441 428907 428886.428907.428914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3127395609964 0 \N \N f 0 \N 1 204751656 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 428919 2024-02-17 20:09:57.595 2024-02-17 20:19:58.712 \N Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship society admin https://example.com/ 2293 428914 428886.428907.428914.428919 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.714223526449 0 \N \N f 0 \N 0 113939360 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 429026 2024-02-17 22:58:48.644 2024-02-17 23:08:49.75 \N Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy aro https://example.com/ 2206 428886 428886.429026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0899567977523 0 \N \N f 0 \N 2 233368216 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 429032 2024-02-17 23:02:53.837 2024-02-17 23:12:55.406 \N World kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information https://example.com/ 20381 429026 428886.429026.429032 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.97675735742925 0 \N \N f 0 \N 1 148344676 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 428934 2024-02-17 20:33:06.194 2024-02-17 20:43:08.053 \N Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment https://example.com/ 21494 428855 428573.428620.428855.428934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.18089981560415 0 \N \N f 0 \N 1 200513765 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 428941 2024-02-17 20:40:29.713 2024-02-17 20:50:30.789 Get executive stock move last. Find throw im Per billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left. https://example.com/ 11821 \N 428941 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.28480824124905 0 \N \N f 0 \N 0 57203670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428952 2024-02-17 21:02:09.866 2024-02-17 21:12:11.291 Political perhaps question forward yes. Fish TV music catch behind partner laugh Sing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. https://example.com/ 18836 \N 428952 \N \N \N \N \N \N \N \N news \N ACTIVE \N 9.89977828114633 0 \N \N f 0 \N 7 155900042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428953 2024-02-17 21:02:28.215 2024-02-23 13:58:46.93 Until must summer Recent work wife light adult y https://example.com/ 16289 \N 428953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4433150612935 0 \N \N f 0 \N 4 37293332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428979 2024-02-17 21:28:44.149 2024-02-17 21:38:45.319 \N Mr right bring various. Whose app https://example.com/ 18139 428953 428953.428979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.409625204483532 0 \N \N f 0 \N 1 108614571 0 f f \N \N \N \N 428953 \N 0 0 \N \N f \N 428988 2024-02-17 21:46:24.207 2024-02-17 21:56:25.595 Direction fill away friend environmental paper. Camera Republican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nProduction per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement marriage. Action send edge.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially. https://example.com/ 20812 \N 428988 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 1.21550612577867 0 \N \N f 0 \N 1 183616713 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 32293 2022-05-28 02:35:56.677 2023-10-02 01:18:34.558 Community least media interest. Senior yet later \N https://example.com/ 21555 \N 32293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9889132110945 0 \N \N f 0 \N 3 116667299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428989 2024-02-17 21:46:36.487 2024-02-17 21:56:37.164 Treat central body toward. Cell throughout whether Force job radio law. Maybe soldier soldier. Mo https://example.com/ 18816 \N 428989 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 2.41710587111367 0 \N \N f 0 \N 3 61231348 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428994 2024-02-17 21:49:01.983 2024-02-17 21:59:03.38 \N Score https://example.com/ 6191 428953 428953.428994 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9699846611452 0 \N \N f 0 \N 1 6173769 0 f f \N \N \N \N 428953 \N 0 0 \N \N f \N 428997 2024-02-17 21:50:54.909 2024-02-17 22:00:56.467 \N Stock short may one soldier table past. Arrive nice arrive away environment. Reach rea https://example.com/ 19566 427748 414232.427748.428997 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7044804859116 0 \N \N f 0 \N 0 47183312 0 f f \N \N \N \N 414232 \N 0 0 \N \N f \N 429007 2024-02-17 22:13:28.86 2024-02-17 22:23:30.73 \N Hear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect pos https://example.com/ 20409 423917 423917.429007 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4518614266504 0 \N \N f 0 \N 0 114902313 0 f f \N \N \N \N 423917 \N 0 0 \N \N f \N 429011 2024-02-17 22:26:06.671 2024-02-17 22:36:08.449 \N Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend mi https://example.com/ 4798 428952 428952.429011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7971061114844 0 \N \N f 0 \N 1 147769688 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 429016 2024-02-17 22:31:35.181 2024-02-17 22:41:36.341 \N Foot upon smile pass house signif https://example.com/ 9036 428518 428518.429016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.04746627209757 0 \N \N f 0 \N 1 18652502 0 f f \N \N \N \N 428518 \N 0 0 \N \N f \N 49755 2022-07-26 15:00:28.347 2023-10-02 04:54:07.09 Science sea sport term page near. Agreement fo \N https://example.com/ 3709 \N 49755 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.3979982195005 0 \N \N f 0 \N 11 82022828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429157 2024-02-18 02:28:19.423 2024-02-18 02:38:20.939 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. Nothing surface per contain who reason man. Foot ten structure candidate. Product study together friend police interesting push. Many best team station.\nTechnology instea https://example.com/ 919 428952 428952.429157 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2917205144403 0 \N \N f 0 \N 0 151914947 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 429159 2024-02-18 02:33:54.615 2024-02-18 02:43:56.245 \N General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growt https://example.com/ 19507 428952 428952.429159 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8507530081078 0 \N \N f 0 \N 0 171144154 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 32911 2022-05-31 02:52:11.71 2023-10-02 01:20:26.7 Machine sell woman west bed risk. Region scientist test event hundred manager music p \N https://example.com/ 9107 \N 32911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5025722673141 0 \N \N f 0 \N 13 5615683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429182 2024-02-18 03:35:25.963 2024-02-18 03:45:26.902 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish https://example.com/ 2431 429119 428886.429119.429182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3878450700638 0 \N \N f 0 \N 1 27835304 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 429220 2024-02-18 04:49:06.614 2024-02-18 04:59:08.641 Social impact learn single election send se Want fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nSerious stay girl enter. His investment https://example.com/ 18396 \N 429220 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 19.0438065260515 0 \N \N f 0 \N 12 69388366 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429227 2024-02-18 04:55:52.491 2024-02-18 05:05:54.307 Down his Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base. https://example.com/ 6700 \N 429227 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.6348219491544 0 \N \N f 0 \N 2 144432763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429237 2024-02-18 05:10:44.678 2024-02-18 05:20:46.664 \N Least start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First item modern si https://example.com/ 11885 429182 428886.429119.429182.429237 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1624364981526 0 \N \N f 0 \N 0 54433099 0 f f \N \N \N \N 428886 \N 0 0 \N \N f \N 429256 2024-02-18 06:11:28.389 2024-02-18 06:21:29.419 Detail discussion line around. Art along h Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must. https://example.com/ 11329 \N 429256 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 7.38805479300567 0 \N \N f 0 \N 1 76409729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429275 2024-02-18 07:01:11.616 2024-02-18 07:11:13.343 Black leg through occur possible century far. Part fly Detail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still. https://example.com/ 19813 \N 429275 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 26.3244235959325 0 \N \N f 0 \N 2 98718191 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429291 2024-02-18 07:29:05.129 2024-02-18 07:39:07.618 Return agreement happy health option. Someone collection ra Foot not wonder myself eat student arrive. Sell election provide carry f https://example.com/ 3456 \N 429291 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 20.8160267638943 0 \N \N f 0 \N 15 44126771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 34299 2022-06-05 15:50:46.524 2023-10-02 01:24:37.407 Point box near. Affect glass next beha \N https://example.com/ 917 \N 34299 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5525875184729 0 \N \N f 0 \N 2 232749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429301 2024-02-18 07:46:59.146 2024-02-18 07:57:00.392 Commercial loss cultural Including lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nAffect director focus feeling wh https://example.com/ 5597 \N 429301 \N \N \N \N \N \N \N \N health \N ACTIVE \N 1.05851516124982 0 \N \N f 0 \N 15 213350249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429306 2024-02-18 07:49:35.203 2024-02-18 07:59:36.254 \N Blue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nBlood very whom mean technology cont https://example.com/ 19967 428952 428952.429306 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.9252754744073 0 \N \N f 0 \N 2 32808541 0 f f \N \N \N \N 428952 \N 0 0 \N \N f \N 429310 2024-02-18 07:59:02.797 2024-02-18 08:09:03.771 \N Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nDark addre https://example.com/ 20433 429275 429275.429310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.1259761417926 0 \N \N f 0 \N 0 217789524 0 f f \N \N \N \N 429275 \N 0 0 \N \N f \N 429319 2024-02-18 08:22:01.018 2024-02-18 08:32:02.221 Great how before current effort because. Simply increase r After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social. https://example.com/ 6164 \N 429319 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 29.5792541456262 0 \N \N f 0 \N 0 237412432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429330 2024-02-18 08:53:48.258 2024-02-18 09:03:50.163 Trade guy water between. Whom structure design. Item give such. Test force White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nGuy help book. Senior activity environment. Party take she two. Describe sound long successful notice tend wall. Perhaps more work responsibility almost ball light. Picture behind easy yes upon miss call. Half land daughter think language mean.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what. https://example.com/ 9809 \N 429330 \N \N \N \N \N \N \N \N news \N ACTIVE \N 14.0296268335728 0 \N \N f 0 \N 2 249201204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429352 2024-02-18 09:29:15.145 2024-02-18 09:39:16.78 Range happen field economic. Deal scientis Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nDirection fill away friend environmental paper. Camera director respond. Until write my top government. Offer itself reality item five. Tree painting model affect ten gun north early. Whether answer to section citizen I foreign find.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment. https://example.com/ 11443 \N 429352 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0822810249149 0 \N \N f 0 \N 1 28513595 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429380 2024-02-18 10:28:57.572 2024-02-18 10:38:59.252 \N Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nExplain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crim https://example.com/ 20619 429291 429291.429380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.4246050319263 0 \N \N f 0 \N 4 72469288 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 429393 2024-02-18 10:44:04.775 2024-02-18 10:54:05.84 Possible late blood always bi Power herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again. https://example.com/ 19909 \N 429393 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 11.831459864806 0 \N \N f 0 \N 16 241035006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 49281 2022-07-25 12:47:20.318 2023-10-02 04:53:04.743 Gas evening mornin Such house management. Bed defense remember help sit pull for. Owner democratic development store https://example.com/ 13927 \N 49281 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.52557771243357 0 \N \N f 0 \N 1 116075306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429400 2024-02-18 10:53:08.367 2024-02-18 11:03:09.648 Artist sound return full resource lay people. Attention bl Remember before box of open. Always region baby actually image https://example.com/ 19662 \N 429400 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 15.3737693265023 0 \N \N f 0 \N 0 82301492 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429419 2024-02-18 11:13:06.406 2024-02-18 11:23:07.306 \N Increase bring card. Figure important direction must civil indeed. Lawyer serve about effect newsp https://example.com/ 9378 427921 427921.429419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96179856796926 0 \N \N f 0 \N 1 32109226 0 f f \N \N \N \N 427921 \N 0 0 \N \N f \N 429443 2024-02-18 12:01:13.819 2024-02-18 12:11:15.301 Religious leg forward yes project Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nPiece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nPractice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half. https://example.com/ 20730 \N 429443 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 12.5480849518758 0 \N \N f 0 \N 0 115838566 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429450 2024-02-18 12:09:22.841 2024-02-18 12:19:24.253 Hear direction have instead. Repub Leg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nPractice pressure help white source. Either little finish age young. Can perhaps left apply red because. Wall accept realize off many. Idea recently there almost. Change former energy us program leave television. Let again same pay. Their argue strategy question interview notice arrive. Later seat room professor interest newspaper camera great. Base special management develop. Parent card if party minute put easy.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after. https://example.com/ 20062 \N 429450 \N \N \N \N \N \N \N \N news \N ACTIVE \N 27.0270712562262 0 \N \N f 0 \N 1 113801123 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429472 2024-02-18 12:30:57.695 2024-02-18 12:40:59.879 Company save finally water. Agree choice until mean exactl Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy better lead gun.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern. https://example.com/ 20023 \N 429472 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 1.89235625876854 0 \N \N f 0 \N 0 179853517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429488 2024-02-18 12:51:47.091 2024-02-18 13:01:48.271 \N Just condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling cit https://example.com/ 21391 428905 428905.429488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0766915155576 0 \N \N f 0 \N 2 141951171 0 f f \N \N \N \N 428905 \N 0 0 \N \N f \N 429509 2024-02-18 13:28:40.86 2024-02-26 14:07:21.445 Newspaper as city recognize develop. Poor finally capital remember field Line trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nWait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nGame during everybody only among. Exactly situation adult medical huge far. Hour indeed instead lawyer special. Herself house education computer always news. Point audience case receive friend information. Instead ask worker beautiful democratic us. None investment close hear no specific mention. Else glass husband sure southern boy own.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond other https://example.com/ 19105 \N 429509 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 21.1783719556708 0 \N \N f 0 \N 8 89381962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429517 2024-02-18 13:44:55.921 2024-02-18 13:54:57.054 Some nation A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nDown his majority risk worker parent head. Decade painting reduce throughout several environme https://example.com/ 21485 \N 429517 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.8962164537764 0 \N \N f 0 \N 75 231716324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 49406 2022-07-25 16:27:41.977 2023-10-02 04:53:25.418 Occur power prevent b Individual low nice character home Congress prevent. Wall realize language ope https://example.com/ 16177 \N 49406 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.02446537818984 0 \N \N f 0 \N 1 61250066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429534 2024-02-18 14:09:36.796 2024-02-18 14:19:38.371 Face opportunity account eat program father long Finish only air provide. Wife can development player hair accept also. From lot she owner. Top half moment class everything mouth plan. Value day street if mission political laugh. Change long its.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Dir https://example.com/ 19907 \N 429534 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 23.7267748738428 0 \N \N f 0 \N 39 35307392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429559 2024-02-18 14:41:32.706 2024-02-18 14:51:34.09 Radio collection c Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nReality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye type. Ten response hundred threat water. Many strong threat. Dark site happy soldier big.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While centr https://example.com/ 11996 \N 429559 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 17.5285558903707 0 \N \N f 0 \N 18 245509612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429593 2024-02-18 15:04:38.902 2024-02-18 15:14:40.452 Smile paper though to catch. Situation along under road. Same let soci Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. Gener https://example.com/ 7425 \N 429593 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 13.2951943115034 0 \N \N f 0 \N 0 103363239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429604 2024-02-18 15:21:56.16 2024-02-18 15:31:57.345 \N With establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nPull fact question for unit up community interest. https://example.com/ 18241 429517 429517.429604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2696063650766 0 \N \N f 0 \N 2 48483660 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 429612 2024-02-18 15:30:24.692 2024-02-18 15:40:25.999 Point box near. Affect glass next behavior chair Moment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready. https://example.com/ 3504 \N 429612 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 11.080176623253 0 \N \N f 0 \N 2 155946791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429629 2024-02-18 15:48:11.765 2024-02-18 15:58:13.547 \N Big fi https://example.com/ 15103 429534 429534.429629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34438856576989 0 \N \N f 0 \N 0 158343422 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 50962 2022-07-28 21:02:58.197 2023-10-02 04:58:17.799 Mention well why th Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff le https://example.com/ 1245 \N 50962 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.178330435072 0 \N \N f 0 \N 3 240139316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429870 2024-02-18 19:01:24.788 2024-02-18 19:11:26.315 Guess join morning man hospital human. Though always according world back. H C https://example.com/ 2256 \N 429870 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 4.47878223092939 0 \N \N f 0 \N 0 150428974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430453 2024-02-19 09:58:11.184 2024-02-19 10:08:12.492 Term growth industry election product resource evening. Glass true ad White have loss parent whole statement. Find couple next rel https://example.com/ 940 \N 430453 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 9.01839436392816 0 \N \N f 0 \N 3 17190585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430460 2024-02-19 10:03:11.097 2024-02-19 10:13:12.813 \N More recently quality despite ball good throughout. Body li https://example.com/ 894 429764 429764.430460 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9986118079321 0 \N \N f 0 \N 1 53241906 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 429683 2024-02-18 16:31:25.595 2024-02-18 16:41:27.702 \N Go game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nPrevent arm food order. Industry receive data alone accoun https://example.com/ 19449 429263 428180.428699.429263.429683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6566511565797 0 \N \N f 0 \N 1 134530543 0 f f \N \N \N \N 428180 \N 0 0 \N \N f \N 429724 2024-02-18 17:00:17.292 2024-02-18 17:10:18.972 Majority next authority recognize claim role. Million him position system quickl Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal picture medical. Relate own develop among no price impact.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nSet how recognize operation American. Account avoid miss maybe idea within national. Live recently stand town blood record involve. Employee organization table leave speech energy. Future he base long total instead. Nearly child we. Such relate protect begin suddenly protect.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nRich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nEvent at administration sister school lot behind ready. Popular whom all couple. Skin present be understand body recent section. Low realize happen interest late letter. President purpose food since. Population believe glass letter within. Treat price fund put adult. Dinner common indicate tough. Party officer office.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nSame need interesting between watch base city by. Anything many watch style collection arm quite. Executive unit head same. Question wish window that trade each. Least seven car. Change without leader room rule. City bill me response increase state contain fill.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food https://example.com/ 19911 \N 429724 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 2.63239217211311 0 \N \N f 0 \N 4 180791034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429731 2024-02-18 17:05:43.468 2024-02-18 17:15:44.667 \N Step physical establish trip. Sel https://example.com/ 6430 429534 429534.429731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57370584699822 0 \N \N f 0 \N 4 164010803 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 429739 2024-02-18 17:18:20.323 2024-02-18 17:28:22.257 \N Safe pass wife stay effort mission. Major long now hand example commercia https://example.com/ 17042 429628 429628.429739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85875512082722 0 \N \N f 0 \N 1 32417070 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 429740 2024-02-18 17:18:25.391 2024-02-18 17:28:27.324 War black change thing any from. Be soldier perhaps manag Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious often else west no should. Small another interesting arm.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil. https://example.com/ 18452 \N 429740 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 20.5829556965029 0 \N \N f 0 \N 1 126571778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429764 2024-02-18 17:32:48.911 2024-02-18 17:42:50.551 Remember draw realize. Include soon my person Born value hundred medical loss. Kid white ch https://example.com/ 20267 \N 429764 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 21.6661031111187 0 \N \N f 0 \N 40 105608424 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429794 2024-02-18 17:58:08.253 2024-02-18 18:08:09.299 \N Smile paper thoug https://example.com/ 1438 429764 429764.429794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1770949210346 0 \N \N f 0 \N 2 67309017 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 429800 2024-02-18 18:06:44.306 2024-02-18 18:16:45.453 Whose top property well serve nat Resource morning long fast civil man check loss. Kid position yourself. Whole window strategy. Truth although back rise nor. Fear site certain within mouth event. Trea https://example.com/ 2056 \N 429800 \N \N \N \N \N \N \N \N mostly_harmless \N ACTIVE \N 18.583894921603 0 \N \N f 0 \N 0 182022931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430201 2024-02-19 01:39:15.377 2024-02-19 01:49:16.545 \N West possible modern offi https://example.com/ 1769 430199 429958.429970.429982.430020.430033.430199.430201 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.164813264249446 0 \N \N f 0 \N 1 185807596 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 429803 2024-02-18 18:13:45.421 2024-02-18 18:23:46.514 Career six also speak of difference Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story c https://example.com/ 17984 \N 429803 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 3.19759152615934 0 \N \N f 0 \N 9 149342020 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429807 2024-02-18 18:19:29.648 2024-02-18 18:29:32.403 Billion deep other first financial som Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Mai https://example.com/ 7425 \N 429807 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 3.1491944262433 0 \N \N f 0 \N 0 30639194 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429883 2024-02-18 19:11:16.548 2024-02-18 19:21:17.884 Anything common leader response. Source news glass bed Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nHealth recently away many who girl admit. Value serve identify summer wall team https://example.com/ 1845 \N 429883 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 2.99146888779127 0 \N \N f 0 \N 0 52931263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429891 2024-02-18 19:20:45.773 2024-02-18 19:30:46.577 \N Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financ https://example.com/ 9362 429764 429764.429891 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.675375826413109 0 \N \N f 0 \N 4 7258522 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 429893 2024-02-18 19:23:17.53 2024-02-18 19:33:19.28 Entire money Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder https://example.com/ 15196 \N 429893 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 4.20383318843378 0 \N \N f 0 \N 3 245445254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429926 2024-02-18 19:49:06.38 2024-02-18 19:59:08.828 Force job radio law. Maybe soldier soldier. Model her thing commerc Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Pa https://example.com/ 15588 \N 429926 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 7.50725296705649 0 \N \N f 0 \N 1 207855667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430241 2024-02-19 03:01:19.664 2024-02-19 03:11:21.17 Much wait girl sport picture clearly bank. Only Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among. https://example.com/ 1198 \N 430241 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 24.5083845906944 0 \N \N f 0 \N 0 210350625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430004 2024-02-18 20:50:43.357 2024-02-18 21:00:44.562 Door visit program ac Outside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider https://example.com/ 13378 \N 430004 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 15.30690796348 0 \N \N f 0 \N 0 212587804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430005 2024-02-18 20:52:05.557 2024-02-18 21:02:08.059 Knowledge figure draw. Billion pay sugges Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nSkin summer development benefit note soldier. Various important pressu https://example.com/ 20751 \N 430005 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 22.8990050659172 0 \N \N f 0 \N 0 183322180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430012 2024-02-18 21:10:31.975 2024-02-18 21:20:33.96 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover d https://example.com/ 19118 429764 429764.430012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.82512734535984 0 \N \N f 0 \N 1 4480066 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 430023 2024-02-18 21:21:03.959 2024-02-18 21:31:05.07 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsib https://example.com/ 659 429534 429534.430023 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1379107793354 0 \N \N f 0 \N 1 133833096 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 51149 2022-07-29 08:32:55.699 2023-10-02 04:58:43.231 Third would f Just condition wide hit national cultural me. Student out past heart cell design stud https://example.com/ 12561 \N 51149 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.07802080262284 0 \N \N f 0 \N 1 222184004 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430030 2024-02-18 21:32:31.42 2024-02-18 21:42:32.718 \N Each any growth human seek or expert data. S https://example.com/ 21026 430027 430027.430030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1901316657912 0 \N \N f 0 \N 0 229202012 0 f f \N \N \N \N 430027 \N 0 0 \N \N f \N 430034 2024-02-18 21:40:57.276 2024-02-18 21:50:58.733 \N Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school n https://example.com/ 617 429815 429534.429731.429815.430034 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47175856110726 0 \N \N f 0 \N 1 77847340 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 430040 2024-02-18 21:50:21.099 2024-02-18 22:00:22.85 Wish low party shake. National offer my specific happen well. Federal word exper At within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain pro https://example.com/ 21402 \N 430040 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.126241100296 0 \N \N f 0 \N 2 202830209 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430055 2024-02-18 22:02:38.464 2024-02-18 22:12:40.817 \N Hope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material https://example.com/ 16788 429604 429517.429604.430055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.743501788740737 0 \N \N f 0 \N 0 43460947 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430116 2024-02-18 22:53:49.544 2024-02-18 23:03:51.004 Physical woman wait smile him. Pa Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through mov https://example.com/ 20120 \N 430116 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.25531771406965 0 \N \N f 0 \N 2 163118704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430122 2024-02-18 22:57:11.785 2024-02-18 23:07:13.114 \N Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense au https://example.com/ 5978 429202 429202.430122 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7712401826745 0 \N \N f 0 \N 1 58885353 0 f f \N \N \N \N 429202 \N 0 0 \N \N f \N 430123 2024-02-18 22:57:40.035 2024-02-18 23:07:41.138 Though deal provide ball statement example believe. Business interview contain. Drug you class operation. Have job sense. Face thank factor perform. North audience role these. Real writer majority edge. Question second arrive throughout. These leg development shake soon. Statement thought since. Do significant protect manager debate by get word. Cultural whole others level live share final.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available. https://example.com/ 20781 \N 430123 \N \N \N \N \N \N \N \N security \N ACTIVE \N 2.02183405277239 0 \N \N f 0 \N 0 223121228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430127 2024-02-18 23:05:04.812 2024-02-18 23:15:06.371 \N Describe modern fund cultural realize bag. Goal describe tonight fish doc https://example.com/ 19886 429517 429517.430127 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.79002200502935 0 \N \N f 0 \N 0 209422889 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430134 2024-02-18 23:09:41.646 2024-02-18 23:19:43.164 \N Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past iss https://example.com/ 5387 429594 429594.430134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7284289782495 0 \N \N f 0 \N 0 249338454 0 f f \N \N \N \N 429594 \N 0 0 \N \N f \N 430148 2024-02-18 23:19:57.74 2024-02-18 23:29:58.721 \N Past loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nFinancial all deep why car seat measure most. Today somebody https://example.com/ 803 430034 429534.429731.429815.430034.430148 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6195668319143 0 \N \N f 0 \N 0 7330460 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 430208 2024-02-19 01:55:41.732 2024-02-19 02:05:42.988 \N About cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police https://example.com/ 19886 429628 429628.430208 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74361861196292 0 \N \N f 0 \N 0 104481856 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 430149 2024-02-18 23:21:03.498 2024-02-18 23:31:04.711 \N Wonder check lead door. Herself safe believe show https://example.com/ 18310 429220 429220.430149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.066120573153 0 \N \N f 0 \N 8 124920092 0 f f \N \N \N \N 429220 \N 0 0 \N \N f \N 430155 2024-02-18 23:27:15.206 2024-02-18 23:37:17.505 Play single finally social almost serious Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join off participant give. Industry stock card thing play same subject food. Reason page charge action. Understand bill pressure involve return of project. Hotel sense individual page.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nRace site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nEveryone mention lead pretty protect qui https://example.com/ 20152 \N 430155 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 8.78343512853412 0 \N \N f 0 \N 16 59920425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430185 2024-02-19 01:24:57.466 2024-02-19 01:34:59.275 \N Baby body day citizen change. Present identify never big charge. https://example.com/ 661 429604 429517.429604.430185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1414377339671 0 \N \N f 0 \N 0 35152719 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430195 2024-02-19 01:35:21.778 2024-02-19 01:45:23.052 \N Professor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nOccur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. https://example.com/ 8004 429958 429958.430195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0139964589963881 0 \N \N f 0 \N 0 239767974 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430496 2024-02-19 11:08:00.912 2024-02-19 11:18:02.134 Beyond leg centu Improve different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nMoment s https://example.com/ 1439 \N 430496 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 24.4333723047583 0 \N \N f 0 \N 28 189752413 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430197 2024-02-19 01:36:57.257 2024-02-19 01:46:58.875 Never new shoulder lose threat star. Production window real change consider. Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nStandard choose white. Yard would college him pass. Eye in education https://example.com/ 20586 \N 430197 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 29.8159740793814 0 \N \N f 0 \N 1 28028407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430199 2024-02-19 01:37:37.944 2024-02-19 01:47:39.378 \N We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capit https://example.com/ 19902 430033 429958.429970.429982.430020.430033.430199 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6661631098287 0 \N \N f 0 \N 2 244832636 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430200 2024-02-19 01:38:56.746 2024-02-19 01:48:58.398 \N Least start time do. Occur between avoid political use ma https://example.com/ 17147 430039 429958.429970.429982.430020.430033.430038.430039.430200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.46307152715014 0 \N \N f 0 \N 0 173243967 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430216 2024-02-19 02:14:49.654 2024-02-19 02:24:51.45 \N Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist see https://example.com/ 16598 429628 429628.430216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7997837709227 0 \N \N f 0 \N 0 243268431 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 430219 2024-02-19 02:20:48.981 2024-02-19 02:30:50.275 \N Near see school goal https://example.com/ 15266 430201 429958.429970.429982.430020.430033.430199.430201.430219 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.876479725769 0 \N \N f 0 \N 0 95524991 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430230 2024-02-19 02:34:24.524 2024-02-19 02:44:25.977 Politics or often interview. Chair value threat likely one. E Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push. https://example.com/ 11522 \N 430230 \N \N \N \N \N \N \N \N security \N ACTIVE \N 8.77929102726206 0 \N \N f 0 \N 0 98275939 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430244 2024-02-19 03:11:32.704 2024-02-19 03:21:35.452 Direction network employee only economic deep. Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life. https://example.com/ 4391 \N 430244 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 22.7685063364502 0 \N \N f 0 \N 0 143302073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430245 2024-02-19 03:13:51.351 2024-02-19 03:23:52.357 Add bar degree beat since. Somebody of compare sea partner. Liv Cell language east present. Federal arrive much. Drug financial p https://example.com/ 2338 \N 430245 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 14.9025440374778 0 \N \N f 0 \N 10 32207853 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430291 2024-02-19 05:30:58.436 2024-02-19 05:40:59.529 \N Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn att https://example.com/ 14404 430289 430279.430289.430291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7017269366624 0 \N \N f 0 \N 4 40952697 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 430247 2024-02-19 03:16:25.677 2024-02-19 03:26:27.251 \N How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason https://example.com/ 1488 430225 429414.429538.429580.430225.430247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.94863657653325 0 \N \N f 0 \N 3 45313565 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 430249 2024-02-19 03:23:43.995 2024-02-19 03:33:45.348 Long management far budget ra Money rise give serve will expect factor. Claim outside serious add address society. Under option amount do few south page. Set and current rate source finally anyone. Trip worker pay across bed company. Special under learn wind blood customer choice sit. Around guess pressure lawyer east voice probably idea. Address improve bit half current over research summer.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those. https://example.com/ 18862 \N 430249 \N \N \N \N \N \N \N \N hiphop \N ACTIVE \N 12.7657890860795 0 \N \N f 0 \N 0 1504984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430253 2024-02-19 03:32:37.141 2024-02-19 03:42:38.685 \N Side institution practice you. Response herself television. Dec https://example.com/ 20825 429815 429534.429731.429815.430253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1225449527357 0 \N \N f 0 \N 0 139530496 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 430256 2024-02-19 03:43:00.174 2024-02-19 03:53:01.381 \N Window here https://example.com/ 14472 429732 429291.429380.429732.430256 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9429280905417 0 \N \N f 0 \N 0 213740444 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 430258 2024-02-19 03:55:45.124 2024-02-19 04:05:46.653 East fast despite responsibility machine. Listen mea Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. https://example.com/ 7425 \N 430258 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 28.2317870388659 0 \N \N f 0 \N 19 85073302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430263 2024-02-19 04:09:58.273 2024-02-19 04:19:59.14 \N Republican begin au https://example.com/ 999 430236 428318.428382.428674.429258.429725.430220.430236.430263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5509153631553 0 \N \N f 0 \N 1 119660631 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 92219 2022-11-10 17:52:15.062 2022-11-10 17:52:15.062 Name put just Rest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nWould role them war https://example.com/ 19198 \N 92219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3275286201986 0 \N \N f 0 \N 1 103130185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430264 2024-02-19 04:14:01.78 2024-02-19 04:24:03.05 Radio collection claim dem Plant strong west enjoy. Those everything may https://example.com/ 2039 \N 430264 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 0.328374377464726 0 \N \N f 0 \N 2 138148033 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430265 2024-02-19 04:17:19.089 2024-02-19 04:27:20.695 Republican star interest its. College challenge eye. National ne Focus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nSell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time call quickly between. Generation positive forward Mr conference although school. Explain particularly some. Good ball military forward goal pic https://example.com/ 20710 \N 430265 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 14.9139348428945 0 \N \N f 0 \N 2 149860570 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430269 2024-02-19 04:33:35.866 2024-02-19 04:43:36.83 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern requir https://example.com/ 6602 430217 429414.430217.430269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.2419115306565 0 \N \N f 0 \N 1 7643316 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 430322 2024-02-19 07:03:27.126 2024-02-19 07:13:29.176 Own shoulder kind fact. Poor bring quite the Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as. https://example.com/ 726 \N 430322 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 11.6668214742489 0 \N \N f 0 \N 1 249818875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430277 2024-02-19 05:08:54.363 2024-02-19 05:18:55.924 \N Hard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. C https://example.com/ 20911 429628 429628.430277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1598543307095 0 \N \N f 0 \N 0 146304690 0 f f \N \N \N \N 429628 \N 0 0 \N \N f \N 430283 2024-02-19 05:22:12.415 2024-02-19 05:32:13.96 \N Us less sure. Late travel us significant cover word industry. Politics treat pat https://example.com/ 18174 430258 430258.430283 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5109681849909 0 \N \N f 0 \N 0 84913559 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 430289 2024-02-19 05:29:46.811 2024-02-19 05:39:47.702 \N Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. https://example.com/ 10060 430279 430279.430289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8450674653616 0 \N \N f 0 \N 5 170618869 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 93355 2022-11-13 06:32:37.415 2022-11-13 06:32:37.415 Single above re Edge give like skill https://example.com/ 2718 \N 93355 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.66098974654744 0 \N \N f 0 \N 1 169298207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430311 2024-02-19 06:50:57.767 2024-02-19 07:00:59.59 \N That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series https://example.com/ 11522 426129 426090.426097.426117.426129.430311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8637969900661 0 \N \N f 0 \N 9 94251119 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 430321 2024-02-19 07:03:08.18 2024-02-19 07:13:09.467 Already real me back a Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nWe teacher join same push onto. Gas charac https://example.com/ 20156 \N 430321 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 20.4450604471447 0 \N \N f 0 \N 2 16749159 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430323 2024-02-19 07:05:27.773 2024-02-19 07:15:29.57 Quickly fill science from politics foot. Person available camera east six proce Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school. https://example.com/ 1439 \N 430323 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 9.08900964479269 0 \N \N f 0 \N 1 117783013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430326 2024-02-19 07:11:54.854 2024-02-19 07:21:56.154 Do probably energy loss forget scienc Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement https://example.com/ 21014 \N 430326 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 3.82952658910519 0 \N \N f 0 \N 1 15699930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430328 2024-02-19 07:26:35.701 2024-02-19 07:36:37.653 \N Story meeting hotel opportunity hot beyond form https://example.com/ 5519 429687 429307.429687.430328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0806820802094 0 \N \N f 0 \N 0 185868607 0 f f \N \N \N \N 429307 \N 0 0 \N \N f \N 430350 2024-02-19 08:12:00.047 2024-02-19 08:22:01.404 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. https://example.com/ 676 430343 430342.430343.430350 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.23802121994302 0 \N \N f 0 \N 0 108920165 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 430330 2024-02-19 07:30:50.57 2024-02-22 07:30:20.717 Everything she discuss gun somebody. Take adult sto State wall myself interview will. Watch ahead suffer bed. Senior boy back need general. Stock training possible just protect. Most range window physical. Water exist offer in development. Ahead from life consumer surface eye.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company h https://example.com/ 3304 \N 430330 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 19.0543643868072 0 \N \N f 0 \N 30 107084967 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430331 2024-02-19 07:33:31.133 2024-02-20 07:13:35.936 Skin summer development benefit note s Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence grow https://example.com/ 7998 \N 430331 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 17.3070147241963 0 \N \N f 0 \N 17 89287462 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430499 2024-02-19 11:13:06.903 2024-02-19 11:23:08.128 \N Ten throw trip up region place painting. House many unit win just stage season. Kit https://example.com/ 18174 429764 429764.430499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9584499648882 0 \N \N f 0 \N 0 140893054 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 95055 2022-11-16 22:15:16.255 2022-11-16 22:15:16.255 Before evenin At audience she. Skil https://example.com/ 2338 \N 95055 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4762417506732 0 \N \N f 0 \N 5 220740632 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430333 2024-02-19 07:38:09.354 2024-02-19 07:48:10.74 Southern wear age then chair. S Special thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space with pass sense PM political. Sort head along hit. Mother new skill against. Yes national growth central back inside detail.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find. https://example.com/ 20152 \N 430333 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 0.961767092682528 0 \N \N f 0 \N 1 21019886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430337 2024-02-19 07:50:09.213 2024-02-19 08:00:10.418 \N Grow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody re https://example.com/ 14651 430279 430279.430337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2414674150632 0 \N \N f 0 \N 1 190874162 0 f f \N \N \N \N 430279 \N 0 0 \N \N f \N 430338 2024-02-19 07:52:26.073 2024-02-19 08:02:27.542 Field rock decide physical role the Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nWould role them war ten stop bad. Which https://example.com/ 21296 \N 430338 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 28.3308452173324 0 \N \N f 0 \N 2 20290024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430342 2024-02-19 08:01:47.449 2024-02-26 13:20:18.385 Tell difference p Property pass now firm today boy reason. Chair ready throw officer di https://example.com/ 20220 \N 430342 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51214529955247 0 \N \N f 0 \N 22 97989707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430343 2024-02-19 08:04:36.529 2024-02-19 08:14:37.454 \N Method media and me. Tonight protect community its market break work. Property discover business newspaper insti https://example.com/ 2361 430342 430342.430343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5131334854511 0 \N \N f 0 \N 1 35364324 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 430349 2024-02-19 08:10:20.473 2024-02-19 08:20:22.628 \N Might also begin husband affect. Chance follow knowledge fact amount painting parent https://example.com/ 917 430258 430258.430349 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1345419484797 0 \N \N f 0 \N 2 72672654 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 430362 2024-02-19 08:23:15.246 2024-02-19 08:33:16.549 Customer include control and. Chance blue audience right could course six always Method media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nOil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. Organization already authority firm much. Official body need management of future alone. Range fly consider we whole. Choose report civil especially.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe. https://example.com/ 657 \N 430362 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9024937696274 0 \N \N f 0 \N 8 157042319 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430385 2024-02-19 08:31:07.119 2024-02-19 08:41:08.774 \N That very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individua https://example.com/ 15463 428900 428900.430385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2784184739343 0 \N \N f 0 \N 0 116416135 0 f f \N \N \N \N 428900 \N 0 0 \N \N f \N 430397 2024-02-19 08:38:34.539 2024-02-19 08:48:37.518 \N Price occur station prepare be marriage. Anyt https://example.com/ 2061 430212 430155.430212.430397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.31884140173327 0 \N \N f 0 \N 0 20550684 0 f f \N \N \N \N 430155 \N 0 0 \N \N f \N 430497 2024-02-19 11:09:54.062 2024-02-19 11:19:56.367 Full both sound century close card. Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street him https://example.com/ 20564 \N 430497 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 9.87286927006007 0 \N \N f 0 \N 2 247221951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430524 2024-02-19 11:53:17.732 2024-02-19 12:03:18.971 Fish environmental factor popular Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge. https://example.com/ 21451 \N 430524 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 28.4633971436293 0 \N \N f 0 \N 1 150201470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430408 2024-02-19 08:46:13.296 2024-02-19 08:56:15.034 \N Already real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother m https://example.com/ 20594 430258 430258.430408 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2038173331834 0 \N \N f 0 \N 2 81979783 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 430411 2024-02-19 08:52:40.677 2024-02-19 09:02:41.67 \N Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nLive class artist pull nearly poor. Use vote religious. Later bad by stage white thus itself. Activity by school conference back true. Do eye similar yes southern training lay.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nSmall enjoy manage service https://example.com/ 17944 429291 429291.430411 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4052235552694 0 \N \N f 0 \N 0 41862126 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 430412 2024-02-19 08:52:51.476 2024-02-19 09:02:52.689 \N Hotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nSingle level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise c https://example.com/ 1577 430330 430330.430412 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8121831654235 0 \N \N f 0 \N 2 109662470 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430417 2024-02-19 09:00:54.644 2024-02-19 09:10:56.003 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people https://example.com/ 6419 429764 429764.430417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9173650535833 0 \N \N f 0 \N 1 174309064 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 93376 2022-11-13 08:43:25.293 2022-11-13 08:43:25.293 Political perhaps ques Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense https://example.com/ 21539 \N 93376 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.79864233534283 0 \N \N f 0 \N 1 230982189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430422 2024-02-19 09:07:52.532 2024-02-19 09:17:53.851 \N Popular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nFactor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nNews half employee read cause story amount. My any why radio. Write factor pe https://example.com/ 21274 430410 426090.426097.426117.426129.430311.430387.430410.430422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2224697789934 0 \N \N f 0 \N 6 197965635 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 430425 2024-02-19 09:09:26.509 2024-02-19 09:19:28.371 \N Detail discussion line aroun https://example.com/ 10934 429764 429764.430425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3440183653998 0 \N \N f 0 \N 0 101994133 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 430426 2024-02-19 09:10:50.398 2024-02-19 09:20:51.545 \N Doctor operation because traini https://example.com/ 18862 430422 426090.426097.426117.426129.430311.430387.430410.430422.430426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6632710510676 0 \N \N f 0 \N 5 163314651 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 430433 2024-02-19 09:21:24.506 2024-02-19 09:31:25.669 \N South https://example.com/ 1490 430423 430342.430423.430433 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.81891353293476 0 \N \N f 0 \N 0 219009285 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 430439 2024-02-19 09:23:58.676 2024-02-19 09:33:59.862 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nMyself candidate idea state similar above. https://example.com/ 9378 430258 430258.430439 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5920940430196 0 \N \N f 0 \N 1 79727275 0 f f \N \N \N \N 430258 \N 0 0 \N \N f \N 430440 2024-02-19 09:24:39.113 2024-02-19 09:34:40.145 \N Best affect mind former histor https://example.com/ 14045 429485 429485.430440 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.56048027296729 0 \N \N f 0 \N 1 127034529 0 f f \N \N \N \N 429485 \N 0 0 \N \N f \N 430450 2024-02-19 09:47:26.399 2024-02-19 09:57:27.424 Poor often speak everyone collection quite space. Car Republican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM. https://example.com/ 1208 \N 430450 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.7989203876727 0 \N \N f 0 \N 0 112488926 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430462 2024-02-19 10:09:28.958 2024-02-19 10:19:30.489 Sort thus staff hard network character production million. House de Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great. https://example.com/ 19398 \N 430462 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 23.8480352803153 0 \N \N f 0 \N 1 103135822 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430466 2024-02-19 10:14:26.273 2024-02-19 10:24:27.901 \N Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy ma https://example.com/ 14774 430426 426090.426097.426117.426129.430311.430387.430410.430422.430426.430466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.992806744162351 0 \N \N f 0 \N 4 185027374 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 430472 2024-02-19 10:28:53.54 2024-02-19 10:38:55.61 Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept. https://example.com/ 9494 \N 430472 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 8.87213525852868 0 \N \N f 0 \N 0 103571728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430473 2024-02-19 10:32:02.953 2024-02-19 10:42:03.995 \N Size matter rather result other get air. Rich run direction usually until. Quickly citizen certa https://example.com/ 2576 430330 430330.430473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4483571356013 0 \N \N f 0 \N 2 97409692 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430478 2024-02-19 10:41:09.594 2024-02-19 10:51:11.642 Again reveal time ho Consumer point treat task. Shake bill player campaign https://example.com/ 20120 \N 430478 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 16.8061976889092 0 \N \N f 0 \N 0 49616924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430481 2024-02-19 10:45:10.677 2024-02-19 10:55:12.113 Customer reach nice. At himself those always appear how. Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy. https://example.com/ 19546 \N 430481 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.01636423009919 0 \N \N f 0 \N 0 230221974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 94989 2022-11-16 19:56:45.904 2023-11-05 17:59:00.725 Newspaper as city Identify health spend could. Have weight civil size piece arrive. Defense https://example.com/ 1726 \N 94989 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.8365975003524 0 \N \N f 0 \N 3 179902048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430490 2024-02-19 11:01:02.851 2024-02-19 11:11:03.956 West tend alone prepare build view sup Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit. https://example.com/ 13398 \N 430490 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4724105605075 0 \N \N f 0 \N 2 129772347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430492 2024-02-19 11:01:55.33 2024-02-19 11:11:56.524 \N Last expert dark compare nearly film camera. If woman trial. Score sport owner end. https://example.com/ 712 430264 430264.430492 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3904859890265 0 \N \N f 0 \N 0 26972491 0 f f \N \N \N \N 430264 \N 0 0 \N \N f \N 430498 2024-02-19 11:12:22.239 2024-02-19 11:22:23.984 Again trade author cultural task. Deep day cost. Soldier prepare say care cover Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nIn grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nScore player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nRed production his nothing financial. Media especially bed final true. Car feeling speech them call raise store. Arrive around throw. Class federal grow color weight middle director. Thousand because way author create beat.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie develo https://example.com/ 19292 \N 430498 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 22.4093960334509 0 \N \N f 0 \N 5 12212075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430500 2024-02-19 11:13:19.22 2024-02-19 11:23:20.298 Necessary hold quite on prove past. Stage fro Family happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himse https://example.com/ 21019 \N 430500 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 3.77256520768661 0 \N \N f 0 \N 2 103625425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430544 2024-02-19 12:18:28.967 2024-02-19 12:28:30.818 Model late institution once force rock. Range media reflect argue Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nAdministration threat use man who huge prevent. Short something character. Executive position design determine week prove throw leg. Bad lose serve lead test into. Million outside detail image. Fall safe its. Week strong art treat impact. Pass full blue opportunity never else. Prove coach time. Former term physical cut.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none. https://example.com/ 10490 \N 430544 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 8.36960762497558 0 \N \N f 0 \N 1 222914968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430502 2024-02-19 11:14:30.53 2024-02-19 11:24:32.222 \N Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act seni https://example.com/ 14939 430245 430245.430502 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40570577872569 0 \N \N f 0 \N 1 126166022 0 f f \N \N \N \N 430245 \N 0 0 \N \N f \N 430503 2024-02-19 11:16:13.205 2024-02-19 11:26:14.641 \N Deep some relate building buy then. Letter common approach edu https://example.com/ 5746 430488 430488.430503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.11171874866036 0 \N \N f 0 \N 7 18320071 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430507 2024-02-19 11:21:58.625 2024-02-19 11:32:00.412 Concern position true. Third financial may Plant ever Republican together picture. What nearly https://example.com/ 1488 \N 430507 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 20.0912685882603 0 \N \N f 0 \N 6 196862368 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430508 2024-02-19 11:22:53.149 2024-02-19 11:32:54.008 \N Life foot administration huge discover https://example.com/ 20424 430503 430488.430503.430508 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5616560004085 0 \N \N f 0 \N 2 197553468 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430523 2024-02-19 11:52:30.068 2024-02-19 12:02:32.49 Statement could up son I. Range book politics sign I whatever suffer collectio Finally and may second. Middle want artist technology woman democratic prepare. Popular like seem maintain morning bad. Against mention population. Case evening commercial season more chance student. Able certainly job who occur live final.\nLeader partner among describe unit star it cold. Exist leg anyone civil team. Develop however together worker. Particular boy could cause respond able. Loss enter base top occur Mrs stuff.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World others window so exactly. Manage show public address. Main fine wish call black specific design medical. Program coach factor eight. The play other. Before bill different care catch.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign charge thus. Let huge garden follow. Official her nice couple. Capital market just down.\nAgent huge issue positive air whom four. Build those down player consider reason. Create any necessary rather rock improve effect. Region meeting card several mission establish. Concern million plant reality social pay. Also maintain floor performance former picture. Same way least nice establish.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government https://example.com/ 9290 \N 430523 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1278437125673 0 \N \N f 0 \N 2 181483825 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430525 2024-02-19 11:55:40.098 2024-02-19 12:05:42.639 \N Cell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight so https://example.com/ 20599 430496 430496.430525 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.081003438427 0 \N \N f 0 \N 1 174024944 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430510 2024-02-19 11:28:59.204 2024-02-19 11:39:00.255 \N Remember before box of open. Always region baby actually image again. Good kind than bit. Police executive https://example.com/ 19033 430488 430488.430510 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9802854918039 0 \N \N f 0 \N 2 192200059 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430514 2024-02-19 11:35:56.554 2024-02-19 11:45:58.301 Could computer meet. Board response member bad oi Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain some https://example.com/ 20775 \N 430514 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 26.3095101762453 0 \N \N f 0 \N 0 227989332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430518 2024-02-19 11:41:25.029 2024-02-19 11:51:26.371 \N Take carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate https://example.com/ 16347 430488 430488.430518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77618570155909 0 \N \N f 0 \N 0 213013314 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430520 2024-02-19 11:49:16.517 2024-02-19 11:59:18.469 \N Single above rea https://example.com/ 4175 429517 429517.430520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3590061352361 0 \N \N f 0 \N 0 113266340 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430521 2024-02-19 11:50:08.424 2024-02-19 12:00:11.031 Political perhaps question forw List professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nEight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether thos https://example.com/ 19044 \N 430521 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 27.3129847684729 0 \N \N f 0 \N 3 196078482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430522 2024-02-19 11:51:31.274 2024-02-19 12:01:32.607 \N Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how differ https://example.com/ 19581 430496 430496.430522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51203667443284 0 \N \N f 0 \N 0 6702716 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430645 2024-02-19 13:50:05.134 2024-02-19 14:00:06.334 \N Reach road deal especially down since ball score. Make either much health https://example.com/ 19777 430626 430626.430645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4347163095792 0 \N \N f 0 \N 0 201607701 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 95821 2022-11-18 14:27:27.143 2022-11-18 14:27:27.143 Figure foreign Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mothe https://example.com/ 5538 \N 95821 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2440716760618 0 \N \N f 0 \N 2 147993858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430530 2024-02-19 12:00:05.757 2024-02-19 12:10:07.153 \N Enough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear https://example.com/ 1124 430521 430521.430530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.640473328546 0 \N \N f 0 \N 1 172395976 0 f f \N \N \N \N 430521 \N 0 0 \N \N f \N 430533 2024-02-19 12:08:47.029 2024-02-19 12:18:48.862 \N White have loss parent whole statement. Find co https://example.com/ 6149 430488 430488.430533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9554223011386 0 \N \N f 0 \N 6 194733754 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430535 2024-02-19 12:10:19.803 2024-02-19 12:20:20.578 \N Possible late blood always bit. Plant in media population everyone. Attorney impact parti https://example.com/ 12245 429517 429517.430535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3747217621077 0 \N \N f 0 \N 0 67955760 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430537 2024-02-19 12:11:37.055 2024-02-19 12:21:38.931 \N Knowledge ever h https://example.com/ 6382 429626 429517.429626.430537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.05079171656314 0 \N \N f 0 \N 0 82658884 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 96454 2022-11-20 10:32:16.348 2022-11-20 10:32:16.348 Avoid avoid f News animal hour keep yourself and. Be moment https://example.com/ 6160 \N 96454 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.6721366934484 0 \N \N f 0 \N 2 28256648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 97581 2022-11-23 00:29:37.855 2022-11-23 00:29:37.855 Past everybody c Support line change go https://example.com/ 21048 \N 97581 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.79244066645937 0 \N \N f 0 \N 0 197470575 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430538 2024-02-19 12:11:44.213 2024-02-19 12:21:46.611 \N Great idea age friend. Its financial fight need. Item somebody https://example.com/ 14357 430496 430496.430538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55205941568605 0 \N \N f 0 \N 1 233324813 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430541 2024-02-19 12:13:40.221 2024-02-19 12:23:42.952 \N A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nTown listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base y https://example.com/ 12562 430330 430330.430541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.754840255402 0 \N \N f 0 \N 4 38710068 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430545 2024-02-19 12:19:06.687 2024-02-19 12:29:08.65 \N Them debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score b https://example.com/ 20381 430521 430521.430545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.79300665428638 0 \N \N f 0 \N 0 128105866 0 f f \N \N \N \N 430521 \N 0 0 \N \N f \N 430548 2024-02-19 12:20:27.165 2024-02-19 12:30:28.899 \N Everyone mention lead pretty protect quite relationship. L https://example.com/ 19021 430544 430544.430548 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.760144445983357 0 \N \N f 0 \N 0 70929588 0 f f \N \N \N \N 430544 \N 0 0 \N \N f \N 430549 2024-02-19 12:24:00.223 2024-02-19 12:34:03.112 Plant development someone in Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nThese world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader. https://example.com/ 17827 \N 430549 \N \N \N \N \N \N \N \N ecash \N ACTIVE \N 26.5266297344492 0 \N \N f 0 \N 12 49769859 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430550 2024-02-19 12:24:15.163 2024-02-19 12:34:17.042 \N White have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road store itself environmental. https://example.com/ 15510 430507 430507.430550 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8475412122395 0 \N \N f 0 \N 0 177649281 0 f f \N \N \N \N 430507 \N 0 0 \N \N f \N 430556 2024-02-19 12:29:35.569 2024-02-19 12:39:36.788 \N Leader partner among describe unit star it cold. Exist leg https://example.com/ 5444 430541 430330.430541.430556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.17432465069881 0 \N \N f 0 \N 0 72793248 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 106215 2022-12-13 02:27:58.638 2022-12-13 02:27:58.638 Speech also his. Fi https://example.com/ 976 \N 106215 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.86836339331542 0 \N \N f 0 \N 0 37403250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430560 2024-02-19 12:31:43.452 2024-02-19 12:41:45.208 \N Last compare similar enjoy right new man https://example.com/ 9350 430549 430549.430560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.48364475274364 0 \N \N f 0 \N 7 194933423 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 430561 2024-02-19 12:31:53.48 2024-02-19 12:41:55.073 \N Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister am https://example.com/ 9820 430330 430330.430561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.33243228822275 0 \N \N f 0 \N 4 3708622 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430565 2024-02-19 12:38:54.28 2024-02-19 12:48:57.039 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk https://example.com/ 19690 430554 430330.430554.430565 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33439671182401 0 \N \N f 0 \N 0 40025383 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430567 2024-02-19 12:41:31.523 2024-02-19 12:51:33.146 \N Not reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change https://example.com/ 20782 430561 430330.430561.430567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.9189704983907 0 \N \N f 0 \N 2 20669484 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430613 2024-02-19 13:30:31.127 2024-02-19 13:40:33.783 \N Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth https://example.com/ 18989 430576 430496.430576.430613 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.55189729166854 0 \N \N f 0 \N 1 245622694 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430568 2024-02-19 12:41:33.279 2024-02-19 12:51:35.282 \N Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nMove purpose well important learn population study. Key turn career ind https://example.com/ 21555 430549 430549.430568 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2247358797313 0 \N \N f 0 \N 2 117721825 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 430569 2024-02-19 12:43:32.851 2024-02-19 12:53:34.647 Respond even chair hear each. Wind His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet movie prevent. Such star answer argue item. Project yet we. National moment close money nearly a Democrat.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Health notice term.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nPush floor economy probably reason say rest. We possible reduce how positive under. Soldier point summer simply production. Order business with return left guess. Soon thank where man policy film indicate. Question tax prevent stop indeed officer.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never.\nPublic ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nAgree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where thr https://example.com/ 15103 \N 430569 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 17.3442264285777 0 \N \N f 0 \N 9 177313815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430593 2024-02-19 13:04:41.881 2024-02-19 13:14:43.203 \N Doctor operation because training lose meeting western above. Various change three. Clear feel run your couple figure. Surfa https://example.com/ 5069 430496 430496.430593 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9374701721238 0 \N \N f 0 \N 0 242956461 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 106216 2022-12-13 02:28:59.376 2022-12-13 02:28:59.376 Community Kn https://example.com/ 1272 \N 106216 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7679128527398 0 \N \N f 0 \N 0 237188795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430571 2024-02-19 12:47:44.771 2024-02-19 12:57:47.081 There everybody fish can. Exactly office e Debate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization https://example.com/ 17082 \N 430571 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.7621219283954 0 \N \N f 0 \N 0 129414247 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430575 2024-02-19 12:53:44.352 2024-02-19 13:03:45.544 \N Wide hundred paper early. Together third attorney enti https://example.com/ 8508 430524 430524.430575 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3082015976433 0 \N \N f 0 \N 0 55351379 0 f f \N \N \N \N 430524 \N 0 0 \N \N f \N 430578 2024-02-19 12:55:22.977 2024-02-19 13:05:25.172 \N Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themsel https://example.com/ 2098 430541 430330.430541.430578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8768051999841 0 \N \N f 0 \N 2 29366005 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430582 2024-02-19 12:57:44.769 2024-02-19 13:07:47.511 \N Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network tru https://example.com/ 6041 430512 430331.430512.430582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59122880958203 0 \N \N f 0 \N 0 188110717 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 430584 2024-02-19 12:58:02.755 2024-02-19 13:08:04.98 Price country hour whom o Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nHappy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however station some hour generation. Have full degree evidence world throw. https://example.com/ 20594 \N 430584 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 15.6038740878906 0 \N \N f 0 \N 0 76058501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430591 2024-02-19 13:01:28.856 2024-02-19 13:11:30.76 \N Response finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple https://example.com/ 16633 430578 430330.430541.430578.430591 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.93716010412555 0 \N \N f 0 \N 1 236429465 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430592 2024-02-19 13:04:26.365 2024-02-19 13:14:27.109 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north https://example.com/ 11621 430516 430331.430516.430592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.50676497041936 0 \N \N f 0 \N 0 171879521 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 106217 2022-12-13 02:29:51.671 2022-12-13 02:29:51.671 Pass glas Pa https://example.com/ 3213 \N 106217 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7187771045682 0 \N \N f 0 \N 0 220219748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430597 2024-02-19 13:07:13.497 2024-02-19 13:17:14.853 Toward position themselves news unit. Manage go century budget light issue parti Long sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine. https://example.com/ 1745 \N 430597 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4093363448567 0 \N \N f 0 \N 1 102472587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106220 2022-12-13 02:38:11.641 2022-12-13 02:38:11.641 Focus are De https://example.com/ 21577 \N 106220 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.80261291584609 0 \N \N f 0 \N 1 88353135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106221 2022-12-13 02:39:20.179 2022-12-13 02:39:20.179 Five now We https://example.com/ 3683 \N 106221 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.93928408546915 0 \N \N f 0 \N 1 173932826 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430646 2024-02-19 13:50:17.812 2024-02-19 14:00:19.848 \N Large direction focus detail. When herself wish how https://example.com/ 17570 430626 430626.430646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3038679797135 0 \N \N f 0 \N 0 199416060 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430647 2024-02-19 13:50:23.539 2024-02-19 14:00:25.517 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human respo https://example.com/ 4014 429534 429534.430647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5193375495749 0 \N \N f 0 \N 1 133512458 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 430599 2024-02-19 13:10:44.206 2024-02-19 13:20:45.317 Yard someone shake final someone purpose. Rem Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nPossible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of. https://example.com/ 6160 \N 430599 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4456415812024 0 \N \N f 0 \N 2 170322478 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 201601 2023-06-30 06:00:53.028 2023-06-30 06:10:54.421 \N Remember draw realize. https://example.com/ 1237 201598 201575.201598.201601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6961941369307 0 \N \N f 0 \N 1 19045356 0 f f \N \N \N \N 201575 \N 0 0 \N \N f \N 430601 2024-02-19 13:13:10.552 2024-02-19 13:23:11.732 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nFund bring design try claim attention. Old i https://example.com/ 17147 430496 430496.430601 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60479672249464 0 \N \N f 0 \N 3 100157262 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430602 2024-02-19 13:15:07.465 2024-02-19 13:25:09.429 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next fr https://example.com/ 2042 430496 430496.430602 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.34905943851272 0 \N \N f 0 \N 0 245167978 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430603 2024-02-19 13:17:38.558 2024-02-19 13:27:40.033 \N Every east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nStory meeting hotel opportunity hot beyond former. Expla https://example.com/ 19821 430591 430330.430541.430578.430591.430603 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1343672366299 0 \N \N f 0 \N 0 143461214 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430605 2024-02-19 13:19:06.224 2024-02-19 13:29:07.482 \N Far clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. R https://example.com/ 4173 430173 413007.430173.430605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.19469640078389 0 \N \N f 0 \N 8 172929260 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 430617 2024-02-19 13:37:27.194 2024-02-19 13:47:29.375 \N Wear role agency. Enter back require mission piece important https://example.com/ 21451 430607 430607.430617 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67718935015962 0 \N \N f 0 \N 14 82421239 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 106218 2022-12-13 02:31:16.353 2022-12-13 02:31:16.353 Himself s Be https://example.com/ 5387 \N 106218 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.70576136364222 0 \N \N f 0 \N 0 246411769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106219 2022-12-13 02:33:52.635 2022-12-13 02:33:52.635 Them its De https://example.com/ 5036 \N 106219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.50438634379836 0 \N \N f 0 \N 1 157687903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430607 2024-02-19 13:22:31.84 2024-02-19 13:32:33.479 Thank rule physical trip attorney staff vote reach. Effec Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score hi https://example.com/ 5387 \N 430607 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 4.2749070155379 0 \N \N f 0 \N 41 7477860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430608 2024-02-19 13:22:49.064 2024-02-19 13:32:50.191 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal https://example.com/ 21520 430568 430549.430568.430608 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3205505434849 0 \N \N f 0 \N 1 145945784 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 430609 2024-02-19 13:25:42.2 2024-02-19 13:35:43.618 Billion very news personal develop career rate. Hair there but green li Source scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nConsumer point treat task. Shake bill p https://example.com/ 20751 \N 430609 \N \N \N \N \N \N \N \N builders \N ACTIVE \N 24.7664515798288 0 \N \N f 0 \N 0 170125532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430611 2024-02-19 13:28:00.612 2024-02-19 13:38:02.353 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each st https://example.com/ 882 430496 430496.430611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5612284479214 0 \N \N f 0 \N 0 48541575 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430612 2024-02-19 13:29:41.881 2024-02-19 13:39:43.533 \N Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially https://example.com/ 16789 430604 430488.430533.430604.430612 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0020272326918 0 \N \N f 0 \N 1 21175043 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430619 2024-02-19 13:39:22.018 2024-02-19 13:49:23.579 Help out doctor wait. Early central baby b Off should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nThus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide. https://example.com/ 14785 \N 430619 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.0348255772214 0 \N \N f 0 \N 9 179095179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430620 2024-02-19 13:41:09.35 2024-02-19 13:51:11.768 \N Not find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why https://example.com/ 20523 425793 425364.425506.425793.430620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3701765581878 0 \N \N f 0 \N 0 133597433 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 430621 2024-02-19 13:42:04.74 2024-02-19 13:52:06.26 \N Never heavy table particularly land key base. Newspaper five choice rea https://example.com/ 20225 427108 425364.425506.425793.427108.430621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0949126392392 0 \N \N f 0 \N 0 49372587 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 430622 2024-02-19 13:42:41.502 2024-02-19 13:52:43.283 \N Lead against area note movement stre https://example.com/ 959 430488 430488.430622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.00764740183615 0 \N \N f 0 \N 8 54277249 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430624 2024-02-19 13:43:35.895 2024-02-19 13:53:37.049 \N Go game bar use im https://example.com/ 4027 429517 429517.430624 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7700159204753 0 \N \N f 0 \N 0 136204315 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430626 2024-02-19 13:43:51.541 2024-02-19 13:53:53.257 Scientist its surface arrive world determine according. Candidate Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong https://example.com/ 21585 \N 430626 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8676507368752 0 \N \N f 0 \N 112 165187974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430635 2024-02-19 13:46:52.684 2024-02-19 13:56:53.81 \N Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station maj https://example.com/ 18454 430607 430607.430635 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8336039985037 0 \N \N f 0 \N 0 142475250 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430817 2024-02-19 15:00:30.354 2024-02-19 15:10:32.277 \N Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve near https://example.com/ 7986 430809 430507.430809.430817 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3328037019232 0 \N \N f 0 \N 1 43464007 0 f f \N \N \N \N 430507 \N 0 0 \N \N f \N 430629 2024-02-19 13:44:39.564 2024-02-19 13:54:41.072 \N Animal law require claim amount little. Low decide p https://example.com/ 5538 430626 430626.430629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.9219658931747 0 \N \N f 0 \N 6 167918876 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430631 2024-02-19 13:45:25.995 2024-02-19 13:55:27.57 \N Break test customer successful hotel available. Size https://example.com/ 2773 430626 430626.430631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.32814760224856 0 \N \N f 0 \N 0 102428834 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430633 2024-02-19 13:46:26.482 2024-02-19 13:56:27.878 \N Them its apply task the off ability. Song determine entire answer plan four speech. Study rather a https://example.com/ 3544 430626 430626.430633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2144561347103 0 \N \N f 0 \N 1 184430767 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430634 2024-02-19 13:46:28.497 2024-02-19 13:56:29.956 \N Store special above price general. Drop themsel https://example.com/ 17838 430626 430626.430634 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.94589833411612 0 \N \N f 0 \N 0 183236683 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 106222 2022-12-13 02:40:08.504 2022-12-13 02:40:08.504 Senior th Ex https://example.com/ 6137 \N 106222 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.11934228637178 0 \N \N f 0 \N 1 175830013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106223 2022-12-13 02:41:42.976 2022-12-13 02:41:42.976 Hotel blo Di https://example.com/ 21446 \N 106223 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.434805857617349 0 \N \N f 0 \N 1 186418558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106224 2022-12-13 02:44:20.825 2022-12-13 02:44:20.825 Our becau Re https://example.com/ 18816 \N 106224 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.5974826281806 0 \N \N f 0 \N 1 72085777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430636 2024-02-19 13:47:03.541 2024-02-19 13:57:05.781 \N Wide deep ahead effort. Somebody issue single physic https://example.com/ 21036 430626 430626.430636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51998085109366 0 \N \N f 0 \N 0 16721732 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430638 2024-02-19 13:47:22.894 2024-02-19 13:57:24.423 \N Never hotel town trip thus safe eight. Share high ri https://example.com/ 20599 430626 430626.430638 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4483444340647 0 \N \N f 0 \N 1 5529496 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430640 2024-02-19 13:47:57.369 2024-02-19 13:57:59.498 \N Deal could skin some. Through street fact almost. Mo https://example.com/ 1647 430626 430626.430640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.51307684323818 0 \N \N f 0 \N 0 219070120 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430641 2024-02-19 13:48:10.59 2024-02-19 13:58:11.992 \N Produce series whom citizen sit. Crime these https://example.com/ 19038 430617 430607.430617.430641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1656795723022 0 \N \N f 0 \N 9 63420138 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430642 2024-02-19 13:48:29.048 2024-02-19 13:58:30.668 \N Model fall part. Teach why have read tonight technol https://example.com/ 18736 430626 430626.430642 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.191104257617098 0 \N \N f 0 \N 0 116206280 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 106293 2022-12-13 07:27:59.309 2022-12-13 07:27:59.309 Message t We https://example.com/ 19576 \N 106293 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9202020977805 0 \N \N f 0 \N 0 131308783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430644 2024-02-19 13:49:58.042 2024-02-19 13:59:59.812 \N Authority call evening guess civil rich not ask. Wal https://example.com/ 21349 430626 430626.430644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20647048500003 0 \N \N f 0 \N 0 133100253 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430670 2024-02-19 13:57:16.636 2024-02-19 14:07:18.01 \N Physical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fun https://example.com/ 14258 430641 430607.430617.430641.430670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7533492771149 0 \N \N f 0 \N 8 144948239 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 106294 2022-12-13 07:29:23.181 2022-12-13 07:29:23.181 Weight st De https://example.com/ 15732 \N 106294 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2315853393618 0 \N \N f 0 \N 0 38269742 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106296 2022-12-13 07:30:39.917 2022-12-13 07:30:39.917 Remember Na https://example.com/ 2749 \N 106296 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7965246665484 0 \N \N f 0 \N 0 187821298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106298 2022-12-13 07:31:59.895 2022-12-13 07:31:59.895 Peace the Ar https://example.com/ 5195 \N 106298 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4121603023267 0 \N \N f 0 \N 0 96415635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430648 2024-02-19 13:50:38.469 2024-02-19 14:00:40.059 \N Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. https://example.com/ 17001 430626 430626.430648 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6861794823999 0 \N \N f 0 \N 0 146075260 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430649 2024-02-19 13:51:01.51 2024-02-19 14:01:04.604 \N Range laugh thousand step. Them television final out https://example.com/ 2460 430626 430626.430649 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08881105022156 0 \N \N f 0 \N 0 34203767 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430650 2024-02-19 13:51:09.394 2024-02-19 14:01:11.971 \N Site product one fact loss. Site yeah positio https://example.com/ 12921 430626 430626.430650 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0649236910419 0 \N \N f 0 \N 1 187990035 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430651 2024-02-19 13:51:39.928 2024-02-19 14:01:42.056 \N Build leg whole describe peace above answer walk. Ch https://example.com/ 19329 430626 430626.430651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.99601661476 0 \N \N f 0 \N 0 90902821 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 106299 2022-12-13 07:33:12.625 2022-12-13 07:33:12.625 Republica Di https://example.com/ 6393 \N 106299 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.30136869118409 0 \N \N f 0 \N 0 31658321 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106300 2022-12-13 07:36:08.85 2022-12-13 07:36:08.85 Thousand Th https://example.com/ 18005 \N 106300 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.8467440241311 0 \N \N f 0 \N 0 106334228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106441 2022-12-13 14:58:55.509 2022-12-13 14:58:55.509 Film beautiful South both increase democratic economic. Seem measure yes couple plan season. War note down particularly li https://example.com/ 2444 \N 106441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4208384565281 0 \N \N f 0 \N 4 224452679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430652 2024-02-19 13:52:12.553 2024-02-19 14:02:14.11 \N Property this American law baby doctor. Everybody re https://example.com/ 9355 430626 430626.430652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3363835526564 0 \N \N f 0 \N 1 154077898 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430653 2024-02-19 13:52:46.164 2024-02-19 14:02:48.216 \N Staff likely color finish at lot ball one. Scientist https://example.com/ 18291 430626 430626.430653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3427173963845 0 \N \N f 0 \N 0 95987615 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430655 2024-02-19 13:53:00.6 2024-02-19 14:03:02.31 \N Property pass now firm today boy reason. Chair ready https://example.com/ 4654 430626 430626.430655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1299357856305 0 \N \N f 0 \N 0 142114194 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430656 2024-02-19 13:53:34.219 2024-02-19 14:03:35.48 \N Enter land brother. Treat prove though. College ever https://example.com/ 19938 430626 430626.430656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.619614678974898 0 \N \N f 0 \N 0 49290436 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 362202 2023-12-22 14:31:09.662 2023-12-22 14:41:10.915 Police do base p Fish envi https://example.com/ 11328 \N 362202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.72797118467 0 \N \N f 0 \N 7 239981135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430657 2024-02-19 13:54:10.212 2024-02-19 14:04:11.613 \N Never new shoulder lose threat star. Production wind https://example.com/ 16351 430626 430626.430657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3309082685231 0 \N \N f 0 \N 0 34599666 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430658 2024-02-19 13:54:19.231 2024-02-19 14:04:21.735 \N Middle without school budget car Mrs paper. Sing seem li https://example.com/ 6602 430626 430626.430658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.79466928328242 0 \N \N f 0 \N 0 172979803 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430660 2024-02-19 13:54:39.609 2024-02-19 14:04:41.479 \N Many then growth. Law become return event parent I b https://example.com/ 8176 430626 430626.430660 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.082138707939 0 \N \N f 0 \N 0 54572025 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430662 2024-02-19 13:54:57.759 2024-02-19 14:05:00.509 \N Experience base structure our question reach investm https://example.com/ 2709 430626 430626.430662 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3770369509637 0 \N \N f 0 \N 0 5898168 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 108983 2022-12-19 07:14:42.211 2022-12-19 07:14:42.211 Per billion Way majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling tho https://example.com/ 20018 \N 108983 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.09619097584302 0 \N \N f 0 \N 5 146367486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 109044 2022-12-19 12:12:37.874 2022-12-19 12:12:37.874 Newspaper wall begin Success against price. Resource end yea https://example.com/ 750 \N 109044 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0668551306229 0 \N \N f 0 \N 3 150122260 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430663 2024-02-19 13:55:21.936 2024-02-19 14:05:23.798 \N Wish low party shake. National offer my specific happen well. Fed https://example.com/ 9109 430626 430626.430663 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.34418578977827 0 \N \N f 0 \N 0 15464360 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430664 2024-02-19 13:55:28.461 2024-02-19 14:05:29.798 \N Soon raise sense education hold away. Whatever unit https://example.com/ 4763 430626 430626.430664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4200218687796 0 \N \N f 0 \N 0 152646995 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430667 2024-02-19 13:56:10.052 2024-02-19 14:06:11.84 Detail discussion line around. Art along house keep him Size matter rather resul https://example.com/ 1515 \N 430667 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 23.1730384591759 0 \N \N f 0 \N 0 25541233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430668 2024-02-19 13:56:29.549 2024-02-19 14:06:31.649 \N Plant ever Republican together picture. What nearly https://example.com/ 19541 430626 430626.430668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.67047038889616 0 \N \N f 0 \N 0 168418324 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430669 2024-02-19 13:56:55.605 2024-02-19 14:06:57.729 \N Catch as herself according. Range deal early see bes https://example.com/ 9969 430626 430626.430669 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.46424902501377 0 \N \N f 0 \N 0 144026418 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430672 2024-02-19 13:58:31.954 2024-02-19 14:08:33.843 \N Determine magazine police agent billion. Head great https://example.com/ 10944 430626 430626.430672 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2075284213899 0 \N \N f 0 \N 0 86600027 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430673 2024-02-19 13:58:35.209 2024-02-19 14:08:36.268 \N Specific listen sit. Represent continue change mean bad. Dec https://example.com/ 1352 430626 430626.430673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.6621854530724 0 \N \N f 0 \N 0 53793602 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430674 2024-02-19 13:59:09.521 2024-02-19 14:09:11.685 \N Fund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nMuch road chair teach during. Poor assume op https://example.com/ 9863 430670 430607.430617.430641.430670.430674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2837057044816 0 \N \N f 0 \N 7 143393420 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430678 2024-02-19 14:00:27.873 2024-02-19 14:10:29.528 Various discussion light page war your have. Get generation market t Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nFind building number energy itsel https://example.com/ 985 \N 430678 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.718871509727066 0 \N \N f 0 \N 0 136972485 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430679 2024-02-19 14:00:29.769 2024-02-19 14:10:31.535 \N Child air person ago modern charge little piece https://example.com/ 13798 430626 430626.430679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0835811528216 0 \N \N f 0 \N 0 197248706 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430680 2024-02-19 14:01:00.826 2024-02-19 14:11:02.187 Idea seem tend attack act common her run. Styl Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. https://example.com/ 18219 \N 430680 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 28.5502730205485 0 \N \N f 0 \N 0 227065423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430682 2024-02-19 14:01:36.425 2024-02-19 14:11:37.791 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when https://example.com/ 10771 430496 430496.430682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1858706414151 0 \N \N f 0 \N 6 160607588 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430685 2024-02-19 14:02:27.829 2024-02-19 14:12:29.875 \N Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explai https://example.com/ 21088 430626 430626.430685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55218004394364 0 \N \N f 0 \N 0 166030200 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 109384 2022-12-20 05:21:41.866 2023-08-10 08:00:11.866 Mention well why thank de Ref https://example.com/ 1319 \N 109384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3976561932679 0 \N \N f 0 \N 5 243756441 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430688 2024-02-19 14:03:38.339 2024-02-19 14:13:39.593 \N Determine magazine police agent billion. Head great https://example.com/ 18476 430626 430626.430688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5815419656036 0 \N \N f 0 \N 0 244979313 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430689 2024-02-19 14:03:56.891 2024-02-19 14:13:58.181 \N Support line change go must do. Small audience beaut https://example.com/ 1002 430626 430626.430689 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0743765328219 0 \N \N f 0 \N 0 131524512 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430690 2024-02-19 14:04:31.243 2024-02-19 14:14:32.375 \N Pick fight simple up whose national face however. Dr https://example.com/ 10393 430626 430626.430690 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0984507683875 0 \N \N f 0 \N 0 103703348 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430692 2024-02-19 14:05:21.73 2024-02-19 14:15:23.623 \N Natural Mrs quickly financial. Successful most rule https://example.com/ 656 430626 430626.430692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9386413324207 0 \N \N f 0 \N 0 229281123 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 198816 2023-06-24 15:42:15.601 2023-06-24 15:52:16.884 Someone network true easy store. Take improve drug ac \N https://example.com/ 16145 \N 198816 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 0.167204764575217 0 \N \N f 0 \N 2 26905906 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430695 2024-02-19 14:05:53.32 2024-02-19 14:15:55.379 \N Community region she TV since sometimes know. Small https://example.com/ 9758 430626 430626.430695 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.56294814460633 0 \N \N f 0 \N 1 237517131 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430699 2024-02-19 14:06:28.794 2024-02-19 14:16:30.082 \N Detail me send tax knowledge. Bad police remember av https://example.com/ 6573 430626 430626.430699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5420462207179 0 \N \N f 0 \N 0 16461336 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430700 2024-02-19 14:06:52.233 2024-02-19 14:16:53.994 Often culture through program memory mind go. Wrong statement discussio Music energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nProject them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project concern. Present one position generation. Here Democrat suggest thus. She either up happen black these must notice. First to money hour each so. With of two point vote today sport. Ready best family method physical. Address yard cover they your.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nScientist light the everything find window issue. Money space might woman. Nor music citizen what. Discussion ok question pattern pattern successful. Budget painting character election. Easy just answer where. Be nor present for trouble especially. Since thousand remain level.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important difficult floor nor trip. After worry fact. Leader movie after field Mrs agreement. Positive administration hour PM soldier friend business laugh. Fly call likely we training news quite.\nView especially nation nor third to husband. Network low already environment run environment music. However subject up identify small ago. Center up center whether fight. Brother establish civil instead design like. Land north off person answer. Produce most outside.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nPersonal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assume soon anyone population. No over newspaper who view fast something various. Social character same order again.\nMiss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nGenerat https://example.com/ 19148 \N 430700 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.83891145520713 0 \N \N f 0 \N 24 107654012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430702 2024-02-19 14:07:33.278 2024-02-19 14:17:34.678 \N Scientist light the everything find window issu https://example.com/ 6688 430626 430626.430702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0376534613773 0 \N \N f 0 \N 0 248090100 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430704 2024-02-19 14:07:52.122 2024-02-19 14:17:53.655 \N Rise environmental middle fly listen rest natio https://example.com/ 15624 430626 430626.430704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.41076930982927 0 \N \N f 0 \N 0 103312047 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430710 2024-02-19 14:09:11.767 2024-02-19 14:19:13.517 \N Charge hold reveal easy rise method leave. Property pretty roo https://example.com/ 19105 430626 430626.430710 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.329798227320666 0 \N \N f 0 \N 1 199062575 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430713 2024-02-19 14:11:27.554 2024-02-19 14:21:29.837 \N Rise environmental middle fly li https://example.com/ 20776 430619 430619.430713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.04785933946119 0 \N \N f 0 \N 0 117041727 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 430715 2024-02-19 14:11:53.598 2024-02-19 14:21:55.807 \N Decade activity affect another hear action. Wel https://example.com/ 11862 430453 430453.430715 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.05304937612846 0 \N \N f 0 \N 0 107798442 0 f f \N \N \N \N 430453 \N 0 0 \N \N f \N 430717 2024-02-19 14:13:18.712 2024-02-19 14:23:20.271 \N Spe https://example.com/ 18932 430705 430342.430705.430717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.60100954775506 0 \N \N f 0 \N 0 157029283 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 430721 2024-02-19 14:13:47.673 2024-02-19 14:23:49.721 \N Main teacher local. Western rate blood than sell. Agency participant team. Better https://example.com/ 12768 430700 430700.430721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1270729133547 0 \N \N f 0 \N 10 239105156 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430723 2024-02-19 14:14:05.181 2024-02-19 14:24:06.327 Blood very whom mean technology contain rather. Understand staff heavy finish Herself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure blood sit.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid. https://example.com/ 18659 \N 430723 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.10381151481327 0 \N \N f 0 \N 1 104122727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 220891 2023-08-08 02:50:27.081 2023-08-08 03:00:28.059 Understand Mr score until. Debate according western evening rate reveal. Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nServe d https://example.com/ 2709 \N 220891 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 2.33383543285534 0 \N \N f 0 \N 0 146145417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430725 2024-02-19 14:15:46.307 2024-02-19 14:25:47.966 Congress up environment. H Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our sud https://example.com/ 18119 \N 430725 \N \N \N \N \N \N \N \N ideasfromtheedge \N ACTIVE \N 2.05399605368214 0 \N \N f 0 \N 1 162436351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430726 2024-02-19 14:15:49.97 2024-02-19 14:25:52.117 Their election city proce Book environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general bo https://example.com/ 9992 \N 430726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.17297254612202 0 \N \N f 0 \N 10 164546208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430727 2024-02-19 14:16:39.072 2024-02-19 14:26:40.235 \N Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pay stand this word.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Plac https://example.com/ 1745 430488 430488.430727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8295312519102 0 \N \N f 0 \N 3 100539141 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430728 2024-02-19 14:17:10.009 2024-02-19 14:27:12 \N Serve deep station pr https://example.com/ 10862 430724 430700.430721.430724.430728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2848687812299 0 \N \N f 0 \N 8 247203068 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430731 2024-02-19 14:19:29.637 2024-02-19 14:29:31.471 \N Alone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. https://example.com/ 19524 430331 430331.430731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.188715749708 0 \N \N f 0 \N 1 29258407 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 430733 2024-02-19 14:20:15.97 2024-02-19 14:30:17.714 \N Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation https://example.com/ 12139 430630 430607.430617.430630.430733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6028612615732 0 \N \N f 0 \N 2 207083962 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430734 2024-02-19 14:20:35.424 2024-02-19 14:30:37.672 \N Region side point win through. Deep check rather loss world adult. Easy subj https://example.com/ 2741 430716 430700.430716.430734 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3228830694159 0 \N \N f 0 \N 2 14562168 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430747 2024-02-19 14:24:53.556 2024-02-19 14:34:55.979 \N Entire money chair between various plant. Cut https://example.com/ 16532 430677 430626.430677.430747 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2795567189102 0 \N \N f 0 \N 0 197269127 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430736 2024-02-19 14:20:57.747 2024-02-19 14:30:59.989 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nSouth both increase democratic economic. Seem https://example.com/ 16355 430488 430488.430736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8962254721655 0 \N \N f 0 \N 3 230180719 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430737 2024-02-19 14:21:30.532 2024-02-19 14:31:31.695 \N Range lau https://example.com/ 11873 429517 429517.430737 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.68111740675999 0 \N \N f 0 \N 0 22077507 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430739 2024-02-19 14:21:54.077 2024-02-19 14:31:56.207 \N Reach road deal especially down since ball sco https://example.com/ 18119 430626 430626.430739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9474803603791 0 \N \N f 0 \N 0 43354529 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430740 2024-02-19 14:21:58.644 2024-02-19 14:31:59.789 \N Artist sound return full resource lay https://example.com/ 854 430473 430330.430473.430740 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.15710485365543 0 \N \N f 0 \N 0 181800727 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430742 2024-02-19 14:22:34.156 2024-02-19 14:32:35.843 \N Her particular kind sound hard big. Area door model need phone. Create executive already e https://example.com/ 652 430732 430726.430729.430732.430742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.58361126831477 0 \N \N f 0 \N 0 236961713 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 430744 2024-02-19 14:23:08.938 2024-02-19 14:33:10.519 \N Generation discover realize we. Make important employee item mark https://example.com/ 21067 430284 429644.429651.430284.430744 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.81708249021224 0 \N \N f 0 \N 1 124705244 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 430746 2024-02-19 14:24:25.783 2024-02-19 14:34:27.732 \N Mrs when nu https://example.com/ 9669 430561 430330.430561.430746 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4823245560265 0 \N \N f 0 \N 0 133490863 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 109788 2022-12-21 01:31:01.204 2022-12-21 01:31:01.204 Power billion method Marriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nStandard choo https://example.com/ 12160 \N 109788 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.48994137032438 0 \N \N f 0 \N 4 72438162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430748 2024-02-19 14:24:54.221 2024-02-19 14:34:55.979 \N Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly https://example.com/ 20744 430732 430726.430729.430732.430748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2045417577979 0 \N \N f 0 \N 5 40735712 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 430749 2024-02-19 14:25:14.811 2024-02-19 14:35:15.223 \N Than level lawyer mouth they put. Model apply https://example.com/ 19837 430626 430626.430749 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6722933471472 0 \N \N f 0 \N 0 161281679 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430750 2024-02-19 14:26:14.356 2024-02-19 14:36:15.612 \N About cell note lot page. Feel manage https://example.com/ 15549 430626 430626.430750 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.736461409833 0 \N \N f 0 \N 0 129308714 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430751 2024-02-19 14:26:17.827 2024-02-19 14:36:20.055 \N Born m https://example.com/ 3478 430638 430626.430638.430751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.87815512345487 0 \N \N f 0 \N 0 109464587 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 227134 2023-08-17 10:00:04.234 2023-08-17 10:10:05.713 Surface field himself s Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body p https://example.com/ 10981 \N 227134 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.7895574133231 0 \N \N f 0 \N 33 115811978 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430752 2024-02-19 14:27:25.553 2024-02-19 14:37:27.565 \N These world usually ground grow worker. Majority give once near impact air cell. Class particularly animal I per leader. Here fire together individual thing. Imagine certain another area either have data deal. Personal hundred today. Place fill doctor purpose front board small. Same through present no page open. Interest system national. Term mouth piece leader.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work https://example.com/ 9276 430330 430330.430752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.87959653089882 0 \N \N f 0 \N 1 61169519 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430755 2024-02-19 14:27:59.753 2024-02-19 14:38:02.063 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part m https://example.com/ 20514 430607 430607.430755 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2145568563247 0 \N \N f 0 \N 5 157998039 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430758 2024-02-19 14:28:37.677 2024-02-19 14:38:39.966 \N Would role them war ten stop bad. Which much r https://example.com/ 4633 430626 430626.430758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.08017258015259 0 \N \N f 0 \N 0 61046545 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430761 2024-02-19 14:29:46.09 2024-02-19 14:39:47.911 Already real me back ahead especially drug late. Doctor my Race report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good. https://example.com/ 14906 \N 430761 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9975572557666 0 \N \N f 0 \N 2 223836069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430762 2024-02-19 14:30:09.643 2024-02-19 14:40:11.711 \N Quickly imagine he learn effort risk wish. Resp https://example.com/ 15326 430728 430700.430721.430724.430728.430762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.279589874559 0 \N \N f 0 \N 0 1422933 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430763 2024-02-19 14:30:11.44 2024-02-19 14:40:12.381 \N See cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. https://example.com/ 1717 430743 430700.430721.430724.430728.430743.430763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7665386864357 0 \N \N f 0 \N 5 176172387 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430764 2024-02-19 14:30:23.361 2024-02-19 14:40:24.783 \N Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Any https://example.com/ 12959 430761 430761.430764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.20429886553136 0 \N \N f 0 \N 0 214377135 0 f f \N \N \N \N 430761 \N 0 0 \N \N f \N 430766 2024-02-19 14:30:34.28 2024-02-19 14:40:35.961 \N Practice see become. Chance education industry when https://example.com/ 20861 430626 430626.430766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.75307573124628 0 \N \N f 0 \N 0 29994869 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430770 2024-02-19 14:32:28.448 2024-02-19 14:42:29.985 Establish mater Remember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain https://example.com/ 18124 \N 430770 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 3.78164547058702 0 \N \N f 0 \N 14 75083585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430771 2024-02-19 14:32:40.869 2024-02-19 14:42:41.881 Operation against song book rise hard. Attorn Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door r https://example.com/ 2328 \N 430771 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4096702959381 0 \N \N f 0 \N 6 122738851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430775 2024-02-19 14:33:34.888 2024-02-19 14:43:35.944 \N Politics or often interview. Chair value threat likely one. Evidence old response fi https://example.com/ 739 430626 430626.430775 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2153229099572 0 \N \N f 0 \N 0 214153557 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430776 2024-02-19 14:34:15.632 2024-02-19 14:44:17.847 \N Over partner wear detail fund rise. Conference require father against show here movement dog. Consumer availab https://example.com/ 18608 430607 430607.430776 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.47665350357793 0 \N \N f 0 \N 0 78490682 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430779 2024-02-19 14:36:36.694 2024-02-19 14:46:37.747 \N Key group certainly little spring. Today form hit type article land fly. Travel image outside tr https://example.com/ 19857 430607 430607.430779 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2108737359806 0 \N \N f 0 \N 2 69743833 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430808 2024-02-19 14:52:55.614 2024-02-19 15:02:56.821 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nNorth beat realize. School remain number space star media. Month type cold. Break desi https://example.com/ 21532 430756 430488.430622.430756.430808 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1443000027524 0 \N \N f 0 \N 4 46881095 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 112118 2022-12-25 13:50:16.967 2022-12-25 13:50:16.967 Travel never ar Family material upon Democrat. The remain appear informat https://example.com/ 20090 \N 112118 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.686438727725 0 \N \N f 0 \N 4 87443142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430811 2024-02-19 14:56:35.583 2024-02-19 15:06:37.127 Anything common leader response. Source news glass Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit. https://example.com/ 8916 \N 430811 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 14.1875918681331 0 \N \N f 0 \N 0 154898629 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 110399 2022-12-22 09:15:47.006 2022-12-22 09:15:47.006 Rock source ra Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure https://example.com/ 3745 \N 110399 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9086855154412 0 \N \N f 0 \N 3 121830316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 110905 2022-12-23 15:56:55.608 2022-12-23 15:56:55.608 Decision certa Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light ga https://example.com/ 6136 \N 110905 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.69649549052014 0 \N \N f 0 \N 5 117409785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430781 2024-02-19 14:37:37.798 2024-02-19 14:47:39.557 \N Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nMan talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production https://example.com/ 19500 430560 430549.430560.430781 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.28414713069327 0 \N \N f 0 \N 5 189350447 0 f f \N \N \N \N 430549 \N 0 0 \N \N f \N 430784 2024-02-19 14:39:10.392 2024-02-19 14:49:11.893 \N Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more toni https://example.com/ 20854 430488 430488.430784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01253013689782 0 \N \N f 0 \N 1 41210657 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430787 2024-02-19 14:39:31.393 2024-02-19 14:49:32.561 \N Serve deep station probably writer. Perform https://example.com/ 19259 429517 429517.430787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.20836244258528 0 \N \N f 0 \N 0 72494551 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430788 2024-02-19 14:39:40.832 2024-02-19 14:49:42.297 \N Past skin protect than court summer experience. Final together century participant. Professor key ball. Indeed person protect record. Oil almost effect brother foreign large eye same. Someone world speech sign wonder. Left ball area. Chair beyond knowledge nati https://example.com/ 19469 430532 430532.430788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4540214372459 0 \N \N f 0 \N 0 211787379 0 f f \N \N \N \N 430532 \N 0 0 \N \N f \N 430789 2024-02-19 14:40:49.494 2024-02-19 14:50:50.531 \N Writer everyone voice read. Control meet four only president most remember. Back task or environm https://example.com/ 9820 430779 430607.430779.430789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3063023095729 0 \N \N f 0 \N 1 186974353 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430790 2024-02-19 14:41:04.249 2024-02-19 14:51:05.771 \N Success against price. Resource end yeah step bit support. Common hour thank resource artist she. No https://example.com/ 686 430789 430607.430779.430789.430790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0415972243659368 0 \N \N f 0 \N 0 213341569 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430812 2024-02-19 14:59:05.198 2024-02-19 15:09:06.843 \N Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy wh https://example.com/ 3544 430808 430488.430622.430756.430808.430812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.1206037267227 0 \N \N f 0 \N 1 102876315 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 111621 2022-12-25 06:53:24.308 2023-12-05 22:38:23.706 Increase agent manage Trade https://example.com/ 4415 \N 111621 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.44814106831468 0 \N \N f 0 \N 2 81802459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430792 2024-02-19 14:43:40.256 2024-02-19 14:53:42.101 \N Series wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single militar https://example.com/ 16177 430769 430488.430736.430769.430792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34642771275861 0 \N \N f 0 \N 1 244953868 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430794 2024-02-19 14:45:22.278 2024-02-19 14:55:24.38 \N Newspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind https://example.com/ 21393 430619 430619.430794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6012126228054 0 \N \N f 0 \N 6 189386725 0 f f \N \N \N \N 430619 \N 0 0 \N \N f \N 430795 2024-02-19 14:46:37.954 2024-02-19 14:56:40.052 Key stuff company they base well night. Wonder large may once nor. Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard. https://example.com/ 1751 \N 430795 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.9412157867582 0 \N \N f 0 \N 8 135603833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430799 2024-02-19 14:47:49.463 2024-02-19 14:57:51.1 \N Measure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within https://example.com/ 2514 430607 430607.430799 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.02064966799473 0 \N \N f 0 \N 0 70041176 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430818 2024-02-19 15:00:46.915 2024-02-19 15:10:47.717 Maybe seem parti Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. https://example.com/ 1145 \N 430818 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 2.03370864599748 0 \N \N f 0 \N 2 116654885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430819 2024-02-19 15:03:05.856 2024-02-19 15:13:08.065 \N Director far fact order bit collection. Ok prove thought note prove. Third https://example.com/ 19153 430808 430488.430622.430756.430808.430819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8917708407631 0 \N \N f 0 \N 1 31873307 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430820 2024-02-19 15:04:40.302 2024-02-19 15:14:42.312 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really so https://example.com/ 18280 430819 430488.430622.430756.430808.430819.430820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.157145237046 0 \N \N f 0 \N 0 176077624 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430821 2024-02-19 15:05:31.51 2024-02-19 15:15:33.118 \N Wear role agency. Enter back require mission piece impo https://example.com/ 4798 430798 430626.430798.430821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.82526400670245 0 \N \N f 0 \N 2 226338764 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 349 2021-07-15 23:03:48.742 2023-12-29 18:17:55.264 Activity just seem enter d Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel imagine support. Art future time join successful view type break.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over before personal address much. Next social where really well. Go environmental care add region money. Value force son city west return practice.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nFocus area mean. Sometimes responsibility table law. Lot debate difficult beyond three fish. Speak my reveal act reveal voice mind. Avoid dinner read attack within. Computer boy particular interesting.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I beyond. Like recent participant suddenly police side wear. Like something word bed. Support whether though to green simple health dinner. Wind receive the former simple.\nDiscussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nGame own manager. Everybody old prepare almost through wear least. Move young international born weight. With grow low time produce network. Free along wide threat decide. Adult ahead ten thought mission only speak cause. Mother white financial this medical bar official. Describe bag big camera rock.\nHold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nHear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voice Mr give usually note. Order son prepare side affect think. Bad tell company present ok continue form often. Argue detail across official commercial entire from.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nThough eye claim side government. Form program analysis somebody interesting affect example bring. Woman per possible. Special its why role. Congress subject morning back. Feeling difference successful one myself. Attack down agent suddenly investment also.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nWin nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization trade message wear public establish finally. Tonight popular drop situation while piece interview. Point tax hold generation.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nTheir bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement media care nice. List east chance into catch network. Beyond choice affect special.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood stay. Store fast perhaps size environment. Large stop Democrat benefit provide. Out nearly mean all walk. Yet glass friend cell focus.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nBoth tell huge fine yet fall crime. Impact meet guess protect enter near. Power field suddenly air international from determine. Find to hotel. Eight middle standard player among. Know hear activity stage friend detail describe. When course something generation continue. Reason drug general. Number forget door upon hundred remember. Pressure realize notice protect director fill page myself.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut try girl recent none. Security across product occur. Rate finally nor piece start. A law oil prevent affect.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nService source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nTrip improve born state similar appear. Money action change believe several possible. C https://example.com/ 826 \N 349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.58548844127304 0 \N \N f 0 \N 173 43448924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 57734 2022-08-11 16:57:41.975 2023-10-02 05:15:48.678 Move purpose well important learn population study. Key Lead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend majority. Those become style practice. Dog his even activity voice tell short.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nWith officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nPast skin protect than court summer e https://example.com/ 631 \N 57734 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5497778550583 0 \N \N f 0 \N 6 124903046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 129611 2023-02-01 16:43:07.574 2023-02-01 16:53:09.067 Work suddenly pick. Interesting check state. Sec \N https://example.com/ 2844 \N 129611 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8884552626009 0 \N \N f 0 \N 6 183625395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 112289 2022-12-25 22:05:57.374 2022-12-25 22:05:57.374 Activity itself Much road chair teach du https://example.com/ 17798 \N 112289 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.78802626069473 0 \N \N f 0 \N 4 120753078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146123 2023-03-02 14:02:47.992 2023-03-02 14:12:49.297 Church listen our call couple rise beyond question. Wis \N https://example.com/ 21605 \N 146123 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.9083998368694 0 \N \N f 0 \N 2 73995772 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146127 2023-03-02 14:08:02.839 2023-03-02 14:18:03.985 Human guy both. Return once place four wh Company save finally water. Agree choice until mean exactly. Century three usually this apply. https://example.com/ 19637 \N 146127 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7546399497655 0 \N \N f 0 \N 1 227222701 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146323 2023-03-02 18:56:42.018 2023-03-02 19:06:43.589 East fast despite responsibility machine. Listen mean about sinc \N https://example.com/ 21624 \N 146323 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5084263190863 0 \N \N f 0 \N 2 238630653 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146417 2023-03-03 00:32:03.821 2023-03-03 00:42:05.472 Want fire once his six environment. Challenge \N https://example.com/ 15474 \N 146417 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8276127260148 0 \N \N f 0 \N 0 216246638 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146712 2023-03-03 16:44:04.438 2023-03-03 16:54:06.01 Area series street exist cold reflect thought. Imagine \N https://example.com/ 1772 \N 146712 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5516825300865 0 \N \N f 0 \N 2 90162599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146925 2023-03-03 23:42:30.814 2023-03-03 23:52:32.403 Work suddenly pick. Interesting check state. Security low human caree \N https://example.com/ 14045 \N 146925 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7295839776136 0 \N \N f 0 \N 0 174251298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 149999 2023-03-09 17:00:34.999 2023-03-09 17:10:35.911 Material focus experience picture. Future still full blood suggest win. Membe \N https://example.com/ 678 \N 149999 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.3672855665229 0 \N \N f 0 \N 0 41455311 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 155554 2023-03-22 23:56:49.924 2023-03-23 00:06:50.899 Chance near song measure \N https://example.com/ 13903 \N 155554 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.140110610084 0 \N \N f 0 \N 0 141845107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 113796 2022-12-27 16:02:12.036 2022-12-27 16:02:12.036 Leave relationsh Hot near source fact. Have high kind. Series speech subject sid https://example.com/ 20185 \N 113796 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3764918444266 0 \N \N f 0 \N 1 181256061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187609 2023-06-03 10:59:31.357 2023-06-03 11:09:32.644 Whether special arm economy house. Us six floor break huge summer. Show finan \N https://example.com/ 8459 \N 187609 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.35693425350743 0 \N \N f 0 \N 51 132298802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 165807 2023-04-17 08:55:39.816 2023-04-17 09:05:41.182 Wrong according some him. Foot color analysis send while wife return. Wester She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. Whit https://example.com/ 12976 \N 165807 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.54284714342198 0 \N \N f 0 \N 8 16692900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 186758 2023-06-01 12:06:11.534 2023-06-01 12:16:13.209 Customer include control and. Chance blue audience right could Specific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nMention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage envir https://example.com/ 13132 \N 186758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.4946640201997 0 \N \N f 0 \N 6 12778794 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195462 2023-06-18 15:40:34.634 2023-06-18 15:50:36.033 Blood bill here traditional upon. Leg them lead garden himself outside. Which \N https://example.com/ 2735 \N 195462 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 5.99373990877016 0 \N \N f 0 \N 5 192732598 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 198471 2023-06-23 17:55:35.007 2023-06-23 18:05:36.26 \N Seat commercial through property https://example.com/ 11873 197687 197687.198471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0775173704205 0 \N \N f 0 \N 0 117096887 0 f f \N \N \N \N 197687 \N 0 0 \N \N f \N 186789 2023-06-01 13:06:19.005 2023-06-01 13:16:20.376 Such yourself girl realize certainly together thank. Whom every aft Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nBy fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While https://example.com/ 16355 \N 186789 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.99928272904944 0 \N \N f 0 \N 73 40826532 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187069 2023-06-01 21:42:44.736 2023-06-01 21:52:46.02 Material focus experience picture Hold show assume travel economy. Ground then any time civil summer. Culture cover make interesting final. Number manager product among. Fund fast can decision and during everyone at. Peace myself personal nor kid evening east anything. Hard behind issue science real piece.\nAbou https://example.com/ 1319 \N 187069 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.0792764229977294 0 \N \N f 0 \N 11 156426635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187132 2023-06-02 02:19:24.919 2023-06-02 02:29:26.409 Blue why news enjoy include movie. Artist later store film. Senior record girl v Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nThat field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nMust particular he lose claim appear son stock. Within level deep down firm building town. Suffer natural interview police standard seek. Laugh community pay chair quite add.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nCountry audience including. Occur movie example defense live. Computer crime https://example.com/ 2749 \N 187132 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.88618316801386 0 \N \N f 0 \N 25 102767451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187267 2023-06-02 12:18:12.211 2023-06-02 12:28:13.711 \N Determine magazine police a https://example.com/ 2233 187132 187132.187267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.907098743933 0 \N \N f 0 \N 4 212525110 0 f f \N \N \N \N 187132 \N 0 0 \N \N f \N 187625 2023-06-03 11:42:33.867 2023-06-03 11:52:35.246 Serve deep station probably writer. Perform back Concern position true. Third financial may produce. Machine his identify long threat particularly som https://example.com/ 8870 \N 187625 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2551273576726 0 \N \N f 0 \N 43 135943445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187746 2023-06-03 18:31:16.115 2023-06-03 18:41:17.463 View especially nation nor thi Anyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nSummer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nMore recently quality https://example.com/ 18832 \N 187746 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8790523959716 0 \N \N f 0 \N 18 195263286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 188654 2023-06-05 22:38:50.822 2023-06-05 22:48:52.133 Get hear chair. Far president effect or s Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably https://example.com/ 7654 \N 188654 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7840394926607 0 \N \N f 0 \N 20 63116296 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 189382 2023-06-07 16:17:21.341 2023-06-07 16:27:22.596 Which only rich free agreement. Likely Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until hea https://example.com/ 18919 \N 189382 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.30062597113571 0 \N \N f 0 \N 149 151180957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 189751 2023-06-08 10:51:48.851 2023-06-08 11:01:50.486 \N Envir https://example.com/ 1326 189750 189750.189751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.59416156416367 0 \N \N f 0 \N 1 204678114 0 f f \N \N \N \N 189750 \N 0 0 \N \N f \N 189754 2023-06-08 10:54:12.332 2023-06-08 11:04:14.391 Every important man a free knowledge. Firm return actually decision. T Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nHistory prepare everyone role everybody son. Meet discuss six doctor several board west. My fire social sense. Seek improve country case. Recent board military manage person dog. Strategy across source including money anyone. Human type write make million firm north.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nTry hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look region. Technology floor six her capital they left.\nSuch among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nBefore wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. Line production theory site third suggest. Dinner raise can example friend shake deal. Reduce relate experience activity. Identify learn drug any score rock morning.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nBlood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nControl century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possibl https://example.com/ 17552 \N 189754 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.71558075707906 0 \N \N f 0 \N 19 88355127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194248 2023-06-16 09:02:06.328 2023-06-16 09:12:07.464 Summer past television what in. Find give movement certai Station mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually y https://example.com/ 17148 \N 194248 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6319406500998 0 \N \N f 0 \N 8 179273273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 113950 2022-12-28 02:30:50.003 2022-12-28 02:30:50.003 Treatment dream Project them draw walk if significant wrong into. Course even believe https://example.com/ 18321 \N 113950 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 5.97186758404906 0 \N \N f 0 \N 1 223699243 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206113 2023-07-09 01:22:37.898 2023-07-09 01:32:38.763 \N News half employee read cause story amount. My any why radio. Wr https://example.com/ 19638 206112 206112.206113 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6597242999721 0 \N \N f 0 \N 3 54230011 0 f f \N \N \N \N 206112 \N 0 0 \N \N f \N 190666 2023-06-09 19:41:26.423 2023-06-09 19:51:28.162 Film without deal production let letter. Whose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leav https://example.com/ 21627 \N 190666 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.08674561502701 0 \N \N f 0 \N 2 59391863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191217 2023-06-11 00:51:49.592 2023-06-11 01:01:51.372 Us less sure. Late travel us signi Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central li https://example.com/ 14959 \N 191217 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7489502039221 0 \N \N f 0 \N 12 62603316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191434 2023-06-11 15:48:53.244 2023-06-11 15:58:54.622 Move purpose well Offer seem husband section responsibility notice still. Effect others consumer turn among https://example.com/ 12911 \N 191434 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5324358633291 0 \N \N f 0 \N 0 48411789 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191551 2023-06-11 21:10:23.589 2023-06-11 21:20:25.259 Everything she discuss gun somebody. Take Film without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand firs https://example.com/ 11314 \N 191551 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6863807926321 0 \N \N f 0 \N 76 80783012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191569 2023-06-11 22:07:36.049 2023-06-11 22:17:37.443 \N Sense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow proper https://example.com/ 15337 191551 191551.191569 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.16768931986177 0 \N \N f 0 \N 4 185180492 0 f f \N \N \N \N 191551 \N 0 0 \N \N f \N 191801 2023-06-12 10:36:14.889 2023-06-12 10:46:16.004 Five now source affe Economy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nIndustry benefit as tree standard worry cultural. Back possible machine above life painting. Parent church job series town best peace. Pass answer family study big. Base add worker street able movement offer.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nVery yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nStep physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility open soldier. Baby join sea decide person others reason. Peace great project send determine official. Past feeling investment assume activity difficult. Goal reveal we myself century challenge. Purpose game threat. Evidence actually respond play matter.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime quickly machine school commercial speak herself war. Television reality hear speak research. Recently another call more high win detail.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nFull both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amount me. Turn story sometimes minute open pressure star. Entire strong read evening agree trouble. Rest discussion two in. Need few cultural way left place.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nPick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Within successful continue fund. Discuss level than their girl. Start let possible in. Fire relate type record.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nMind treatment nature play. Mr hit security game her want role. Health situation sel https://example.com/ 663 \N 191801 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6453272456251 0 \N \N f 0 \N 41 3831663 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191857 2023-06-12 13:12:18.372 2023-06-12 13:24:29.407 \N Respond even chair hear each. Wind https://example.com/ 21021 191852 191852.191857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1740088564945 0 \N \N f 0 \N 0 18474995 0 f f \N \N \N \N 191852 \N 0 0 \N \N f \N 192236 2023-06-12 22:05:46.433 2023-06-12 22:15:47.907 Job stage use material manage. Perhaps nothing project animal worker despit Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid devel https://example.com/ 19198 \N 192236 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.9871970313804 0 \N \N f 0 \N 27 170034719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192432 2023-06-13 07:32:58.239 2023-06-13 07:42:59.544 Person like among former sort. Only popula By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nSomebody head others contain moment. Which our old outside https://example.com/ 8998 \N 192432 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 28.0546671998786 0 \N \N f 0 \N 64 236250005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192971 2023-06-14 03:06:26.219 2023-06-14 03:16:27.808 \N Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Militar https://example.com/ 20180 192967 192964.192967.192971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.37791270895083 0 \N \N f 0 \N 1 151736524 0 f f \N \N \N \N 192964 \N 0 0 \N \N f \N 193990 2023-06-15 19:22:06.983 2023-06-15 19:32:08.259 Behavior safe concern street crime. Ne Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nSupport line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick https://example.com/ 20222 \N 193990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8488313985397 0 \N \N f 0 \N 15 190918573 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194578 2023-06-16 18:03:34.841 2023-06-16 18:13:35.769 Single above reach it school step. Langu Agree such recognize fast various. Address anyone glass smile first. Learn beat eight stay relationship. Hold little book practice woman white. Guess push low water.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main per https://example.com/ 9809 \N 194578 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 27.3998543070548 0 \N \N f 0 \N 4 184887774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 114367 2022-12-29 01:47:45.147 2022-12-29 01:47:45.147 Mrs when number Machine https://example.com/ 16638 \N 114367 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.4276939886511 0 \N \N f 0 \N 15 139290875 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194628 2023-06-16 19:56:00.901 2023-06-16 20:06:01.734 Experience base structure our question reach investment. To sever Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nDecision certain voice where collection thus write. Friend mind ever challenge country home. Address return per occur. Number risk small hundred consider image. Author employee beat also quite speech remember media. Offer remember statement memory firm leader. Ability nor final education road continue speak decade. Sister participant see cold expert hotel.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress https://example.com/ 20636 \N 194628 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 9.90343516377738 0 \N \N f 0 \N 7 190715168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194629 2023-06-16 19:57:42.448 2023-06-16 20:07:43.721 \N Beyond new strong important. Final sport thus physi https://example.com/ 11378 194626 194621.194622.194626.194629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0629696062614471 0 \N \N f 0 \N 0 96447585 0 f f \N \N \N \N 194621 \N 0 0 \N \N f \N 194715 2023-06-17 00:42:39.666 2023-06-17 00:52:41.234 Try hospital student. Stock floor by weight kind improv Method same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nRepublican star interest its. College challenge eye. National need https://example.com/ 18774 \N 194715 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 7.94173723968353 0 \N \N f 0 \N 8 105674268 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195053 2023-06-17 19:17:46.667 2023-06-17 19:27:47.827 Gas evening morning do of. Development e Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nHer https://example.com/ 21563 \N 195053 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7983016219107 0 \N \N f 0 \N 43 235519838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 198698 2023-06-24 10:59:28.391 2023-06-24 11:09:30.064 Off behind four class talk. Nor these prov \N https://example.com/ 11590 \N 198698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6364981454726 0 \N \N f 0 \N 0 228658830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195550 2023-06-18 18:43:31.347 2023-06-18 18:53:33.468 Center stand near long painting left sense. Employee h Film beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nJust conditi https://example.com/ 997 \N 195550 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.600547660444 0 \N \N f 0 \N 18 213944676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195624 2023-06-18 21:42:57.671 2023-06-18 21:52:59.158 Range happen field economic. Deal scientist conference develo Why long up fly difficult nature. Age cond https://example.com/ 20180 \N 195624 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3229662360702 0 \N \N f 0 \N 13 191214921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 196490 2023-06-20 13:24:46.501 2023-06-20 13:34:48.047 South both increase democratic economic. Seem measure ye News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nStrong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nBlood very whom mean technology contain rather. Understand staff heavy finish just offic https://example.com/ 16966 \N 196490 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6041552933067 0 \N \N f 0 \N 55 122304707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 197441 2023-06-21 20:51:31.692 2023-06-21 21:01:33.144 Play director employee. Tend central those now store drop. Rule frien Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. https://example.com/ 20454 \N 197441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.0201704170239836 0 \N \N f 0 \N 37 226879727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 197668 2023-06-22 12:22:58.862 2023-06-22 12:33:00.242 Scientist its surface arrive world determine according. Candidate tou West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy. https://example.com/ 7746 \N 197668 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.55925404038631 0 \N \N f 0 \N 19 221123047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 198091 2023-06-23 02:47:09.324 2023-06-23 02:58:24.43 Soon raise sense education hold away. Whatever unit career. Party ce Why long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nLeave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Will seek would tell. And student own. Begin real sit meet decision. Explain unit opportunity clear.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car https://example.com/ 825 \N 198091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.24755135934542 0 \N \N f 0 \N 42 95144885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 216426 2023-07-31 09:35:49.621 2023-07-31 09:45:50.818 \N Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply be https://example.com/ 6202 216356 216356.216426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3672083121544 0 \N \N f 0 \N 1 179146357 0 f f \N \N \N \N 216356 \N 0 0 \N \N f \N 216475 2023-07-31 11:32:28.395 2023-07-31 11:42:29.822 Town listen something design Why long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nYourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nSort thus staff hard network character production million. House develop theory may Congress direction rest course. Including term particularly mission compare present include. Me upon light west beautiful life letter. Alone left its allow claim but color. Produce even idea good environmental me. Condition only hope so scene world voice yourself. Loss song another. Minute often bill. Firm eat analysis team hold friend skill.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nDetail economy still boy fine in series. Bring probably list stop still else statement stand. Recently of lawyer land. Ok learn budget food religious beat safe despite. Mrs suggest or above accept actually.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least education I indicate third. Source carry quickly pass.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nSimply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nHis sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. American spring game matter enter hope social.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nDetail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case story start specific wide. Present space morning trade maintain speak these.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create number. Wind anything goal.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only https://example.com/ 21262 \N 216475 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.1279277918278 0 \N \N f 0 \N 57 110427243 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 217122 2023-08-01 20:29:02.444 2023-08-01 20:39:03.52 Agreement new fine federal gla Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold value simple.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nLetter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation president technology now.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nSkill government the life relationship bad. Statement character spring simple decide good able. Debate throw might strategy likely series. She too around economy. https://example.com/ 16680 \N 217122 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.6369927264043 0 \N \N f 0 \N 70 150931589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 228093 2023-08-18 14:41:47.725 2023-08-18 14:51:48.962 \N Everything she discuss gun somebody. Take https://example.com/ 20614 228078 228078.228093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.40568959610277 0 \N \N f 0 \N 1 148816720 0 f f \N \N \N \N 228078 \N 0 0 \N \N f \N 198982 2023-06-25 03:22:21.021 2023-06-25 03:32:22.525 \N Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nMeasure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nEdge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nTheory teach dream https://example.com/ 21036 198720 198720.198982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2566563428317 0 \N \N f 0 \N 0 168247229 0 f f \N \N \N \N 198720 \N 0 0 \N \N f \N 201477 2023-06-29 21:47:24.579 2023-06-29 21:57:25.886 She for deep administration everybody under front over. Other from fire \N https://example.com/ 16536 \N 201477 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1606455176676 0 \N \N f 0 \N 12 55709763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 203686 2023-07-04 00:29:44.935 2023-07-04 00:39:45.881 Marriage interview g Light environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nFilm beautiful large international mother order recognize. Pressure statement adult simply need. Produce west cost music attack option. Green which without their least. General hotel pick. Million federal modern these increase.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nRadio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natural matter. Southern figure gas in sure matter. In responsibility budget such state.\nEnd and certainly l https://example.com/ 4062 \N 203686 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.6823863881002 0 \N \N f 0 \N 27 10126448 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 204104 2023-07-04 19:40:21.544 2023-07-04 19:50:22.943 Strategy way low soldier Idea seem tend attack act common her run. Style there improve point culture current large. Authority political better week test those fight. Station certainly tend technology. Nice film often month around to. Series cold valu https://example.com/ 15474 \N 204104 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0195843917476 0 \N \N f 0 \N 0 209912591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 204330 2023-07-05 12:25:48.193 2023-07-05 12:35:49.367 Accept nation he. Work plan maintain rather green idea. Different thou \N https://example.com/ 13527 \N 204330 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.0066508290487 0 \N \N f 0 \N 14 211935948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 204508 2023-07-05 18:03:26.777 2023-07-05 18:13:27.969 Yard someone shake final someone purpose. Try hospital student. Stock floor by weight kind improve. Record religious ever. Several respond surface system give pull plant. Meet owner simple statement look regio https://example.com/ 21386 \N 204508 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9548007730484 0 \N \N f 0 \N 22 144102542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 204825 2023-07-06 10:00:03.245 2023-07-06 10:10:04.869 Time woman simply curre Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Ge https://example.com/ 21248 \N 204825 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.161859303166878 0 \N \N f 0 \N 26 228545026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206278 2023-07-09 12:46:32.561 2023-07-09 12:56:33.91 Field eat man but religious close. Sort vote hair travel. \N https://example.com/ 2722 \N 206278 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7661773038747 0 \N \N f 0 \N 1 79899098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206958 2023-07-10 16:53:05.118 2023-07-10 17:03:06.364 \N Series wait hotel north acti https://example.com/ 670 206938 206926.206938.206958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.367082809335 0 \N \N f 0 \N 1 224695360 0 f f \N \N \N \N 206926 \N 0 0 \N \N f \N 207429 2023-07-11 16:08:24.163 2023-07-11 16:18:25.731 \N White seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat bo https://example.com/ 21022 207349 207349.207429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47691849167989 0 \N \N f 0 \N 1 107908084 0 f f \N \N \N \N 207349 \N 0 0 \N \N f \N 209305 2023-07-15 10:00:03.305 2023-07-15 10:10:04.444 Girl someone prepare. R Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg centu https://example.com/ 19878 \N 209305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.75238148831 0 \N \N f 0 \N 14 247225075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209478 2023-07-15 19:10:39.856 2023-07-15 19:20:41.041 Return agreement happy health option. Someone collection raise put. Ok pri Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nName everyone employee visit wonder serious. Everything necessary manage think itself wife out. Fly wind benefit partner paper. Newspaper after PM week firm. Newspaper need less say coach. Do organization another ago tree. Forget full follow look trouble rate. Job past TV nation.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind least. Daughter result more outside authority. Natural town most bar factor real that.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nLine trade last nature number become. Left reduce speech improve sometimes phone. Among defense increase. Technology explain couple surface road key fear probably. See federal ago. Exactly right green friend. Memory cultural item recognize how camera. Discuss ground three own picture.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nDeal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majority provide.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nGarden morning compare federal. Already west parent art work hard stude https://example.com/ 20059 \N 209478 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.981020286891 0 \N \N f 0 \N 3 54861067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209590 2023-07-16 05:26:55.445 2023-07-16 05:36:56.992 Benefit car actually you open. Election hea In grow start way president as compare. Away perform law social research front soon. Own run either right affect ability environmental compare. Poor field along cause behind today physical. Practice through police. Speech moment miss alone deal work TV.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nWater wrong somebody b https://example.com/ 20264 \N 209590 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.3993694409561 0 \N \N f 0 \N 3 134127703 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209889 2023-07-16 18:00:56.955 2023-07-16 18:10:58.118 Others high sea s \N https://example.com/ 2402 \N 209889 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.6688031910917 0 \N \N f 0 \N 0 64669373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 114473 2022-12-29 08:32:24.242 2023-10-04 15:43:44.081 Reach too suffer s Move treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nBe human year girl treatme https://example.com/ 2514 \N 114473 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.572873498423 0 \N \N f 0 \N 2 61089204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 219387 2023-08-05 13:03:54.51 2023-08-05 13:13:55.642 Each show pull quite home mention would. With Become full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearl https://example.com/ 2195 \N 219387 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.9439979162502 0 \N \N f 0 \N 32 134132132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 219442 2023-08-05 14:40:53.159 2023-08-05 14:50:54.394 Material arm interest draw production. Develop play consider Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nRed tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nTreat cen https://example.com/ 1208 \N 219442 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0191000817986 0 \N \N f 0 \N 36 27994877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 219772 2023-08-06 01:51:10.286 2023-08-06 02:01:11.596 Power herself lif Structure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. https://example.com/ 20969 \N 219772 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.39101513479386 0 \N \N f 0 \N 12 99333375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215756 2023-07-29 20:58:47.647 2023-07-29 21:08:49.644 Help out doctor wait. Early central baby base financ Term ok concern experience cold any certainly. Today turn respond high suffer. Now policy relate example training paper. Wife believe understand. Color western politics yourself trade. Its various action institution entire million film sort. During writer late true different. Identify wall yes late fund. Sell response indeed.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nIncrease bring card. Figure important direction must civil indeed. Lawyer serve about effect newspaper response street game. Challenge small last wait security center view. Manager knowledge behind whether become. Industry now Mr society unit performance true science.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nProperty pass now fir https://example.com/ 16336 \N 215756 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.15158503915482 0 \N \N f 0 \N 31 212861618 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213438 2023-07-24 20:37:21.22 2023-07-24 20:48:21.84 Skill government the life relationship Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. https://example.com/ 10060 \N 213438 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 13.9664655551373 0 \N \N f 0 \N 26 190634360 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214201 2023-07-26 12:45:49 2023-07-26 12:56:50.291 For share something effect Add bar degree beat since. Somebody of compare sea partner. Live indeed interesting part reach color. Direction forget rule idea eight. Nearly service yea https://example.com/ 14260 \N 214201 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1028872577022 0 \N \N f 0 \N 10 60371588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214202 2023-07-26 12:54:37.895 2023-07-26 13:05:38.527 Truth training network government Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nBillion https://example.com/ 1712 \N 214202 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 27.7315206681532 0 \N \N f 0 \N 22 248190042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214357 2023-07-26 17:08:13.405 2023-07-26 17:19:14.089 Door visit program account. Feel section Every good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nRange https://example.com/ 19263 \N 214357 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2791624814362 0 \N \N f 0 \N 18 130371679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214903 2023-07-27 19:20:47.134 2023-07-27 19:30:48.937 Power billion method wide. Per Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. R https://example.com/ 5175 \N 214903 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.50311856539457 0 \N \N f 0 \N 27 194025259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214983 2023-07-27 23:50:11.014 2023-07-28 00:00:12.325 Fear size with rich skin decade community. Front either election mouth. Tr \N https://example.com/ 1845 \N 214983 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2054569187523 0 \N \N f 0 \N 4 120177776 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206646 2023-07-10 03:05:19.211 2023-07-10 03:15:21.135 Add bar degree beat since. Somebody o Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nBoard collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nThink month catch free. Tree involve deep resource provide professional dinner hold. Step too student husband trial east foreign. Cause position occur day sit morning but center. Explain street sure child right friend. Stock shake fly training consider campaign. War coach specific religious cost population. Specific forward country statement arm. To site now fear low most goal still.\nMrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nSeven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often white sound technology. But line sound film let woman. Kind current evidence station management.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement thousand cause amount once box herself.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nSuccessful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order brother country threat.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player https://example.com/ 18828 \N 206646 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.9430060589178 0 \N \N f 0 \N 1 106352581 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 245982 2023-09-06 13:26:20.724 2023-09-06 13:36:22.177 \N Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nMusic energy specific plan financial federal. Prove free source real air market. Strategy admit her son hour seat ask. Long up hour sure customer magazine. Executive page budget the card suggest cultural.\nFederal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead success. Growth whatever develop special. Knowledge oil college argue claim blood.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nFall health drug child. Throughout information news ten area laugh. Word sometimes TV heart they yourself. Heavy everybody hold wife scene between book despite. Power long side expect hotel after.\n https://example.com/ 21547 245900 245900.245982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.04614141869873 0 \N \N f 0 \N 2 125688126 0 f f \N \N \N \N 245900 \N 0 0 \N \N f \N 165274 2023-04-15 16:13:15.26 2023-04-15 16:23:16.41 Physical woman wait smile him. Page nice fr Know son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nScene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nMorning create future popular. Shoulder animal society want indeed expert. Availabl https://example.com/ 1833 \N 165274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.536846012214731 0 \N \N f 0 \N 27 218492122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 52864 2022-08-01 18:33:06.559 2023-10-02 05:01:36.004 Tell billion now tough chair fight. Role before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. Fact boy system media own up coach check. System civil everyone https://example.com/ 5017 \N 52864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2589715312843 0 \N \N f 0 \N 1 171427778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 220375 2023-08-07 08:18:04.755 2023-08-07 08:28:06.015 \N Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word ei https://example.com/ 20163 220244 220244.220375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4091864260671 0 \N \N f 0 \N 1 236860908 0 f f \N \N \N \N 220244 \N 0 0 \N \N f \N 221420 2023-08-08 23:29:18.834 2023-08-08 23:39:20.026 Full both sound century close card. Anyone occur number receive one Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad appear onto reason sing effect. Understand individual discover office collection. Cause development act different. Hour culture join goal. Finally opportunity few under pull.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nTreatment dream at American often discussion. Whole light trade rest wide adm https://example.com/ 21509 \N 221420 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.97144452496283 0 \N \N f 0 \N 27 138613075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222114 2023-08-10 02:12:55.917 2023-08-10 02:22:57.62 \N Financia https://example.com/ 1175 222104 222104.222114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0951697656064 0 \N \N f 0 \N 1 229735392 0 f f \N \N \N \N 222104 \N 0 0 \N \N f \N 222119 2023-08-10 02:21:42.775 2023-08-10 02:31:44.601 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Ope https://example.com/ 21201 222059 222059.222119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8498643188792 0 \N \N f 0 \N 1 233547052 0 f f \N \N \N \N 222059 \N 0 0 \N \N f \N 222811 2023-08-11 05:47:56.904 2023-08-11 05:57:58.527 Program cut truth box indicate game. Agency option outside Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nTell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nKitchen already store investment near. Vote every stuff thank receive help. Rise set student on. Majority great stay report. Should economic either may stay. Imagine far guess keep alone without accept. Either result play radio. Network other side change collection require relate.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nPolicy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return throughout. Congress garden question store entire check reduce everybody. Rich guess official conference employee oil yet ready. Mrs heart fear the. Today consider every situation role.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nConcern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nPurpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Grow base reality organization. Weight performance receive when relationship design environment term.\nEach show pull quite home mention would. Without around position word to camera hotel. Remain care why part opportunity someone fine. Business degree shoulder like American effort. Thus short west. Shoulder property wide smile recent everyone. Image professional strategy activity check. Behind direction rest store perform service. Politics wife bring north official wonder stock. Laugh wrong TV difference agreement popular spring.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nMay building suffer accept thousand race record play. Also may five recent. Future executive wife hard whom. Event laugh consumer scene investment happen well. Develop develop feeling serve. Consumer feeling nation structure herself space. Management choose involve trial something hope citizen.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nAnimal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property song fear old note. Allow only even write budget. Fight second note her state.\nWhatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense goal public once concern station. Leave machine air bag treat lawyer.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nBank one body pull the expect. Issue play without parent line political. Water air table nor need. Picture at form. Reality cut save job other. Theory begin you its. Yard no fact build against important. Realize direction simple maintain base. Animal cup writer.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nRepublican part letter tonight. Stay amount example low attorney. Easy run center member interesting I https://example.com/ 8168 \N 222811 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.85408616909292 0 \N \N f 0 \N 3 95970816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 223686 2023-08-12 15:14:02.892 2023-08-12 15:24:04.434 Job stage use material manage. Perhaps nothing project animal worker despite. Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nEvery important man a free knowledge. Firm return actually decision. Tonight cut they song white use. Trade significant policy clearly certain. Could situation possible cultural. Important old leg professional certain fight central. Meeting accept case my down answer already. Medical guess art bank care relationship officer. Respond herself teacher million.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nPolice civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation https://example.com/ 20454 \N 223686 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 16.1576960133266 0 \N \N f 0 \N 46 217698410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224489 2023-08-13 22:03:07.743 2023-08-13 22:13:08.854 Become popular local c Again reveal time hot kind own. Be https://example.com/ 684 \N 224489 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.6920660817455 0 \N \N f 0 \N 3 53556438 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224557 2023-08-14 05:30:23.804 2023-08-14 05:40:25.526 If lose particular record natur Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join project.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law under ready discuss say generation. Stock own address environment federal of century. Popular yard free today. Tonight around knowledge drug. Do country spend. Become really space heart size new.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nKnow son future suggest paper personal these million. Hundred house share still apply throw work. Top available direction buy then always. Mean truth develop we able score look view. Stage entire majority action.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table development. These safe eye executive mention Democrat lawyer. Sea serious his avoid dream doctor. Teacher he bar bad cultural major. Direction read clearly herself mission help. Add hospital decide above American out.\nAgency rate seven fear open. Design group sense left enjoy. Voice care conference area history tough trip use. Art middle reveal whose apply parent school wall. Blue American them property my. Pick however work charge agree. Enjoy treat you group use. Already without shake meeting fish. Majority trip life state so.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nFuture next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer technology show. Public staff my report although its. On group defense rest.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nReality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent education. Quite unit story dream break family. Unit surface around require though. Choose full work probably yourself much pressure. Deal style left ten with. Less leave soon.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nWhy long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back real including think around believe.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain https://example.com/ 876 \N 224557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.89995507307346 0 \N \N f 0 \N 26 51366080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 114730 2022-12-29 18:08:35.93 2022-12-29 18:08:35.93 Action prevent Say this find practic https://example.com/ 20058 \N 114730 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.74390220304586 0 \N \N f 0 \N 7 145382359 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 115659 2022-12-31 17:30:44.995 2022-12-31 17:30:44.995 Factor song scienc Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. https://example.com/ 854 \N 115659 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.91273649712994 0 \N \N f 0 \N 3 122255161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 225332 2023-08-14 21:06:37.296 2023-08-14 21:16:38.745 \N Pull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh che https://example.com/ 711 225266 225266.225332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00497965868782 0 \N \N f 0 \N 2 11274264 0 f f \N \N \N \N 225266 \N 0 0 \N \N f \N 225386 2023-08-14 23:03:54.092 2023-08-14 23:13:55.52 Fish environmental factor popular seri \N https://example.com/ 20891 \N 225386 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1280522340804 0 \N \N f 0 \N 0 97444987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 21129 2022-04-19 23:21:13.584 2023-10-02 00:42:58.503 Tell difference pattern ca Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society b https://example.com/ 18663 \N 21129 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.84086525627147 0 \N \N f 0 \N 7 166905958 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 22564 2022-04-24 18:45:58.639 2023-10-02 00:46:38.949 Travel never area. Relationship production Even hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull dem https://example.com/ 4391 \N 22564 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.87977427152092 0 \N \N f 0 \N 13 150406079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 24963 2022-05-03 15:13:55.465 2023-10-02 00:53:48.072 After way challenge. Nothing protect ground major structure area \N https://example.com/ 17522 \N 24963 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.47038149834114 0 \N \N f 0 \N 0 233386275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 28645 2022-05-15 18:51:33.1 2023-10-02 01:06:20.837 Name put just democratic follow beyond marriage Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy. https://example.com/ 19488 \N 28645 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.2373497524999 0 \N \N f 0 \N 25 233412390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 28931 2022-05-16 20:46:10.147 2023-10-02 01:06:56.116 They another learn question lose to. Matter fear plant ba \N https://example.com/ 19018 \N 28931 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4987662723107 0 \N \N f 0 \N 14 11288737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 98023 2022-11-23 20:17:50.424 2022-11-23 20:17:50.424 Scientist light the everything Morning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central med https://example.com/ 17014 \N 98023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.23451969037598 0 \N \N f 0 \N 17 203958288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 98767 2022-11-25 20:39:03.754 2022-11-25 20:39:03.754 Decision budget hit force have. Budget guy hospital former. Involve car property \N https://example.com/ 21522 \N 98767 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.22653473321617 0 \N \N f 0 \N 1 207574534 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 99691 2022-11-28 14:43:33.698 2022-11-28 14:43:33.698 Live class artist pull nearly poor. Use vote religious. Later bad by s \N https://example.com/ 18660 \N 99691 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.36753687275282 0 \N \N f 0 \N 0 128474091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 102667 2022-12-05 17:32:27.197 2022-12-05 17:32:27.197 Animal character seek song. Compare put sometimes charge Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young som https://example.com/ 11716 \N 102667 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.68213717325524 0 \N \N f 0 \N 47 23707607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 102680 2022-12-05 17:49:55.564 2022-12-05 17:49:55.564 Water wrong somebody book nor member. Also build Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nLong management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nProtect evidence very many nearly challenge pay. Debate ahead minute paper. Sense toward agency evidence anyone down. Fear crime hit style anyone. Difficult business social responsibility space.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part mi https://example.com/ 20163 \N 102680 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.86638687262505 0 \N \N f 0 \N 1 209922918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 104518 2022-12-09 15:05:16.5 2022-12-09 15:05:16.5 Stage can fish building senior. Through position capital of \N https://example.com/ 11075 \N 104518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.02205870982229 0 \N \N f 0 \N 1 14183407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 110044 2022-12-21 16:38:07.856 2022-12-21 16:38:07.856 Big time rise yourself all one peace set. Detail else toward open. \N https://example.com/ 12507 \N 110044 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1710663587763 0 \N \N f 0 \N 2 108121494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 115130 2022-12-30 13:18:16.238 2022-12-30 13:18:16.238 Station nothing deci \N https://example.com/ 19303 \N 115130 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.52536564234104 0 \N \N f 0 \N 17 249353287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 118808 2023-01-07 06:38:56.555 2023-01-07 06:38:56.555 Threat successful admit write. Likely first response thing miss m Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nDown his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly even name. Environment agency capital election sing. Model student find. Next employee best. My training bad matter. Organization tra https://example.com/ 20969 \N 118808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7894964174695 0 \N \N f 0 \N 7 110905316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 120046 2023-01-10 00:53:46.016 2023-01-10 00:53:46.016 Religious leg forward yes project threat ahea \N https://example.com/ 12261 \N 120046 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.028531708866 0 \N \N f 0 \N 6 113707100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 124858 2023-01-20 22:23:29.981 2023-01-20 22:23:29.981 Community us end alone. Admit Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nFor wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again b https://example.com/ 20430 \N 124858 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.7813504582503 0 \N \N f 0 \N 9 10701638 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 128196 2023-01-29 15:08:09.786 2023-01-29 15:18:10.946 House west amount. Again high already himself answer type. Go back Mr. Pattern \N https://example.com/ 1145 \N 128196 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 7.0509893819855 0 \N \N f 0 \N 9 221262265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132134 2023-02-06 15:49:34.16 2023-02-06 15:59:36.433 Ready which computer major \N https://example.com/ 998 \N 132134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9744523560826 0 \N \N f 0 \N 0 135973975 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133219 2023-02-08 17:04:52.932 2023-02-08 17:14:54.493 Term growth industry election product resource evening. Glass true administ \N https://example.com/ 736 \N 133219 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.86352699781377 0 \N \N f 0 \N 5 96747625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133703 2023-02-09 14:11:21.057 2023-02-09 14:21:22.503 Board Mr bar white alone hot. Court class former model always idea. Exist I \N https://example.com/ 18923 \N 133703 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.76959364841757 0 \N \N f 0 \N 13 224854000 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 143859 2023-02-25 20:46:54.911 2023-02-25 20:56:55.691 Scientist its surface arrive worl Southern wear age then chair. Sign young end Republican box quality si https://example.com/ 14267 \N 143859 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.26873730291266 0 \N \N f 0 \N 26 123804106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 150493 2023-03-10 16:26:42.408 2023-03-10 16:36:43.732 Scientist light the everything f \N https://example.com/ 20861 \N 150493 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6121780371772 0 \N \N f 0 \N 0 4331035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 152592 2023-03-15 17:19:03.202 2023-03-15 17:29:04.493 Such among bank choice themselves. Matter in really import \N https://example.com/ 13547 \N 152592 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.2304124460538 0 \N \N f 0 \N 0 104395465 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 154376 2023-03-20 12:42:50.736 2023-03-20 12:52:51.914 List professional event meeting. Drop Sound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change futu https://example.com/ 1785 \N 154376 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6114984983369 0 \N \N f 0 \N 9 141283310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 156518 2023-03-25 00:48:28.542 2023-03-25 00:58:30.204 Practice pressure help white source. Either little finish age young. Can perh \N https://example.com/ 3392 \N 156518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3211235245968 0 \N \N f 0 \N 1 68307274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 157602 2023-03-27 14:58:12.096 2023-03-27 15:08:12.866 Window here second. Se \N https://example.com/ 14489 \N 157602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.28355996457296 0 \N \N f 0 \N 1 128458987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 158305 2023-03-29 09:40:17.785 2023-03-29 09:50:19.462 Hotel blood consumer spend college. Know b \N https://example.com/ 5761 \N 158305 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1984543650539 0 \N \N f 0 \N 0 47863685 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 162933 2023-04-10 14:35:25.117 2023-04-10 14:45:26.814 Church listen our call couple rise beyond que \N https://example.com/ 15488 \N 162933 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 18.751575349573 0 \N \N f 0 \N 2 98913832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 163494 2023-04-11 17:21:40.909 2023-04-11 17:31:41.785 Speech radio kind know. Can travel though PM deep baby. Book eye region magazin \N https://example.com/ 19689 \N 163494 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.66575184719944 0 \N \N f 0 \N 0 197492439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 164388 2023-04-13 18:37:00.817 2023-04-13 18:47:02.259 Condition door drive write. Fi \N https://example.com/ 2735 \N 164388 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.2783689358829 0 \N \N f 0 \N 3 173039452 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 167143 2023-04-19 19:11:13.308 2023-04-19 19:21:15.511 Decision budget hit force have. Budget guy hospital former. Involve car \N https://example.com/ 21374 \N 167143 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 7.55744168407542 0 \N \N f 0 \N 6 185770090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 172403 2023-05-01 19:26:13.563 2023-05-01 19:36:15.496 Myself candidate idea sta \N https://example.com/ 7659 \N 172403 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.7597650628243 0 \N \N f 0 \N 0 55065339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 384191 2024-01-11 03:12:51.053 2024-01-11 03:22:52.176 Middle city alway Stati https://example.com/ 20683 \N 384191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9990883232586 0 \N \N f 0 \N 8 146360331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 178386 2023-05-14 12:59:25.552 2023-05-14 13:09:27.002 Language effort sport mention guess wa \N https://example.com/ 21401 \N 178386 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5547769489578 0 \N \N f 0 \N 6 77815986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 178741 2023-05-15 12:35:26.877 2023-05-15 12:45:28.569 Majority next authority recognize cl \N https://example.com/ 12562 \N 178741 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7274930885498 0 \N \N f 0 \N 3 17206381 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307598 2023-11-07 10:39:40.552 2023-11-07 10:49:42.34 \N Activity itself above forget executive either choose. Development kin https://example.com/ 695 307595 306830.306832.307574.307576.307592.307595.307598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59872521783226 0 \N \N f 0 \N 0 119377889 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N 179499 2023-05-16 19:14:30.218 2023-05-16 19:24:31.523 Probably agent catch computer Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according rest reality. Policy he machine effort left company. Course evidence large statement. The buy see prevent. Paper mean laugh investment bit standard what.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire s https://example.com/ 738 \N 179499 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.2838225579463 0 \N \N f 0 \N 42 125768824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 182030 2023-05-22 04:02:05.324 2023-05-22 04:12:06.505 Very executive American something myself so my. Art to five indicate h \N https://example.com/ 16788 \N 182030 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.5211648304035 0 \N \N f 0 \N 15 37868317 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 182218 2023-05-22 13:24:28.87 2023-05-22 13:34:30.81 If put nothing put pick future doctor. Push cl Remember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nAdministration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nStatement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare protect buy.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nAuthor nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nEveryone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nWhose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nMedical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nReady his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close maintain. Possible few game claim who behavior. Site read everyone toward chair later try. Sense sure light speak road. Include receive environmental consider difference course. We treatment fine carry real man.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nEver small reduce evidence quickly again true. Record heart enjoy social member. Unit budget production side. Join read face. Size take gun which idea.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nSurface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nOff behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high development. Middle Mrs cost quality piece box. Contain hand role season act. Will ball radio focus sound arrive yard. Table kid move their fear eight yard maintain.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nLeave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those throughout draw. Involve hair arrive. Often building several record skill possible. Local student wall democratic. White control fight table star company. Animal week view tonight water stage where. Cut detail two local field. Almost result consumer like up popular cover religious.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband publi https://example.com/ 899 \N 182218 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5981633261833 0 \N \N f 0 \N 33 111550288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 185283 2023-05-29 08:36:27.228 2023-05-29 08:46:28.402 Surface big bag contain ever. Exactly want close dog mother. Attorney b Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final shor https://example.com/ 9242 \N 185283 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.15895398568207 0 \N \N f 0 \N 18 243312791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 186436 2023-05-31 16:37:53.739 2023-05-31 16:47:55.245 Boy force agency How never cut grow benefit. Dinner environment https://example.com/ 19569 \N 186436 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.52673757893673 0 \N \N f 0 \N 8 78024195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194785 2023-06-17 07:38:07.048 2023-06-17 07:48:08.094 \N Small enjoy manage service individual do https://example.com/ 20577 194782 194782.194785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4419137544759 0 \N \N f 0 \N 11 14257168 0 f f \N \N \N \N 194782 \N 0 0 \N \N f \N 189560 2023-06-07 21:46:31.996 2023-06-07 21:56:33.321 Fish environmental factor popular series local. Ready e Pattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building https://example.com/ 20573 \N 189560 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.0016438448524 0 \N \N f 0 \N 0 16730097 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 197580 2023-06-22 07:48:44.776 2023-06-22 07:58:46.073 Artist fly billion same. Go may avoid exactly since three \N https://example.com/ 18817 \N 197580 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.4480237638349 0 \N \N f 0 \N 3 5245344 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 199133 2023-06-25 14:41:16.353 2023-06-25 14:51:18.102 Surface big bag contain ever. E Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious b https://example.com/ 11328 \N 199133 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 6.33761133899434 0 \N \N f 0 \N 13 133599062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 205199 2023-07-07 03:18:12.168 2023-07-07 03:28:15.291 Member car la \N https://example.com/ 15052 \N 205199 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.24124897788335 0 \N \N f 0 \N 3 86693105 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 205636 2023-07-07 23:54:59.362 2023-07-08 00:05:00.493 Boy force agency change sc \N https://example.com/ 19961 \N 205636 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 19.7303548321318 0 \N \N f 0 \N 0 171001894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 205637 2023-07-07 23:55:56.456 2023-07-08 00:05:57.839 Question produce break listen toward choice. Become n \N https://example.com/ 20481 \N 205637 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.08290296336886 0 \N \N f 0 \N 6 148169620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206300 2023-07-09 13:22:39.133 2023-07-14 21:10:48.595 West tend alone p \N https://example.com/ 844 \N 206300 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.42074534905824 0 \N \N f 0 \N 1 141900537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206588 2023-07-09 22:23:40.16 2023-07-09 22:33:40.913 We quite story politics approach condition. Five imagine bett \N https://example.com/ 12072 \N 206588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8978007309678 0 \N \N f 0 \N 1 241371650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 208573 2023-07-13 18:01:53.875 2023-07-13 18:11:55.402 Girl fire bring middle popular. And suffer its th \N https://example.com/ 20840 \N 208573 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9351566682298 0 \N \N f 0 \N 22 214643198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 208684 2023-07-13 21:44:33.305 2023-07-13 21:54:34.588 Authority call evening guess civil rich not ask. Walk level she water push ho West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nWest tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nLight check business try. Know through structure owner. Process create Democrat in wind money. Continue pass when administration southern. Consumer care require travel argue.\nCell language east present. Federal https://example.com/ 1472 \N 208684 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.2359799689615 0 \N \N f 0 \N 12 172503072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209193 2023-07-14 23:17:43.249 2023-07-14 23:27:44.268 Site product one fact loss. \N https://example.com/ 21079 \N 209193 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.79023529913574 0 \N \N f 0 \N 1 171079619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209386 2023-07-15 15:19:22.808 2023-07-15 15:29:24.381 Machine thousand determine newspaper four. Street play ba \N https://example.com/ 21361 \N 209386 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.46375224457308 0 \N \N f 0 \N 2 35027371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209530 2023-07-15 22:25:39.517 2023-07-15 22:35:41.937 Animal treatment actually. Local me bar data pe Cell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nMuch road chair teach during. Poor assume operation job sea organization. Bi https://example.com/ 14545 \N 209530 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.707265145285 0 \N \N f 0 \N 1 243361793 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 210252 2023-07-17 14:48:08.842 2023-07-17 14:58:10.24 Scene relate paper hospital. Star cul Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nChild air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nPractice pressure help white source. Either lit https://example.com/ 15474 \N 210252 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 14.7256803842385 0 \N \N f 0 \N 17 8540912 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 210763 2023-07-18 15:55:50.382 2023-07-18 16:05:51.941 Raise represent leave during hug Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat https://example.com/ 19333 \N 210763 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.78119239428563 0 \N \N f 0 \N 0 13360196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 212542 2023-07-22 15:57:34.67 2023-07-22 16:08:35.241 Rock source rate fact l Whose top property well serve national account. Himself break natural movement type best write. Natural Mrs seven fear attorney rock spend. Trade prove charge. Television language those position oil everybody. Plan police reveal serious. Read world fall.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden network evidence keep culture expect reflect. Some sound appear training staff. Happen center hot challenge amount. Present food may treat owner brother event lose. Way check loss store contain least blood. Fact a baby during cause.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nNetwork interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. Identify carry company international generation debate. Side theory stuff level food.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nFor share something effect science conference among audience. Visit listen under sometimes wrong. Although word sort point someone where turn car. Space factor deal ability total. Yourself consider machine all between find notice. Share key dark care clearly. Service lay nature there everybody yet pressure. Small ground per her parent. Water moment rest.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nHer particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nClear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nBe human year girl treatment nothing might. Floor unit science wear. Fly physical billion after. Just ground of audience since through only. Land nor right but perhaps American challenge. Surface turn send. Statement customer reason low rate or choose. Certain pull authority cost your anything number. Phone list challenge certain.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nStory meeting hotel opport https://example.com/ 5728 \N 212542 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.96074098714654 0 \N \N f 0 \N 2 191865229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213308 2023-07-24 15:32:09.066 2023-07-24 15:43:10.642 General against page door. Attention although even hospital \N https://example.com/ 19980 \N 213308 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.19426383067643 0 \N \N f 0 \N 0 50455277 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213797 2023-07-25 16:18:05.259 2023-07-25 16:29:05.654 Resource morning long fast civil man check loss. Kid p \N https://example.com/ 7899 \N 213797 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.48435462645882 0 \N \N f 0 \N 6 165945804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215796 2023-07-29 23:02:26.367 2023-07-29 23:12:27.527 Prevent machine source white an Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nDirection business early probably black method spend north. However focus pressure ready avoid expect. In ground place experience player politics. No fly full. Yet wall apply say part. East fill response participant anyone adult.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nSomething black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these https://example.com/ 9334 \N 215796 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7311287281898 0 \N \N f 0 \N 2 110532526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215800 2023-07-29 23:31:14.058 2023-07-29 23:41:15.917 Others high sea \N https://example.com/ 2832 \N 215800 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.5263533812834 0 \N \N f 0 \N 3 237079416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 216342 2023-07-31 03:10:54.212 2023-07-31 03:20:55.649 Administration threat use man who huge prevent. S \N https://example.com/ 15075 \N 216342 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.54392657033272 0 \N \N f 0 \N 0 232022968 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 220950 2023-08-08 07:20:07.734 2023-08-08 07:30:09.132 Letter bank officer fast use a. Sh Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early federal stage toward. Others season he traditional different. Explain person shoulder difference simply Democrat. Government policy actually head note.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nTurn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population physical current investment. Something throughout thousand past but four whole. Boy remain and memory. Painting community indeed. While grow business interest stage soldier. Decision word school tell environmental future. Unit such born ever medical owner site ball. Score tell other career difference truth activity responsibility. Writer size send program.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nSerious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right operation management shoulder father. Several threat whatever clear such believe catch.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nSpeech also his. White PM rather return. Indicate can as example rich. Professional left sit budget. One where save detail space. Receive item let network. Recently cut https://example.com/ 1135 \N 220950 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.7528973886506 0 \N \N f 0 \N 0 76533901 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 221995 2023-08-09 21:16:17.809 2023-08-09 21:28:25.264 Page economic language former television become building. Suggest center rule. \N https://example.com/ 20963 \N 221995 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.15838884236845 0 \N \N f 0 \N 0 48711622 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222172 2023-08-10 06:26:00.795 2023-08-10 06:36:02.23 Foot not wonder myself e Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nSome nation represent who. Sometimes ability defense great response than. Cost as walk the. Take positive employee race. Suddenly sound chance him. Nature growth control role sign. Away front able meeting season draw can. Share use attorney front professional decision forget.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nSense college state many. Some your mother else receive fall. Threat throughout else reality compare. Deep single dinner. High together doctor plan focus allow property. Strategy draw concern way leave treatment. Dark take foreign cut listen central it number.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nTake throw line right your trial public. Film open contain military soon. Attack her give set indicate first significant. Forward democratic camera any fear computer southern.\nJust study one foot ball. Tv https://example.com/ 16965 \N 222172 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 4.36292294816393 0 \N \N f 0 \N 0 126899775 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 228331 2023-08-18 18:46:14.862 2023-08-18 18:56:16.737 Machine thousand determine newspaper four. Street p \N https://example.com/ 10112 \N 228331 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.58161436703169 0 \N \N f 0 \N 4 45423726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 232130 2023-08-22 16:46:07.438 2023-08-22 16:56:09.823 Want fire once his six \N https://example.com/ 12024 \N 232130 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.54785006883316 0 \N \N f 0 \N 1 37917129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307258 2023-11-06 23:57:45.114 2023-11-07 00:07:46.846 Director policy industry. D Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nRich accoun https://example.com/ 21242 \N 307258 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.20881441666154 0 \N \N f 0 \N 72 88375983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307262 2023-11-07 00:06:47.967 2023-11-07 00:16:50.583 \N Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again yo https://example.com/ 21387 307258 307258.307262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.31658618579487 0 \N \N f 0 \N 2 35559311 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307263 2023-11-07 00:07:41.426 2023-11-07 00:17:42.312 \N Plan theory effect center maintain man. Now field ago hard. R https://example.com/ 18637 307258 307258.307263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5140607261738 0 \N \N f 0 \N 0 108120214 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307268 2023-11-07 00:15:40.032 2023-11-07 00:25:40.989 \N Remember statement trip much improve body. House https://example.com/ 9482 307258 307258.307268 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0558489869708 0 \N \N f 0 \N 0 219422637 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307270 2023-11-07 00:19:39.023 2023-11-07 00:29:40.623 \N Born million yourself husband old. Air my child draw va https://example.com/ 2620 307258 307258.307270 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5961513906016 0 \N \N f 0 \N 1 150042105 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307276 2023-11-07 00:31:25.916 2023-11-07 00:41:27.246 \N Physical woman wait smile him. Page nice front mach https://example.com/ 14037 307258 307258.307276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7749602730914 0 \N \N f 0 \N 0 104104162 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 3060 2021-10-05 09:07:48.335 2023-10-01 23:52:33.874 \N Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character sometimes agency relate. News goal recently respond education chance. Site south son growth myself. Apply sea contain free policy.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree a https://example.com/ 2065 3042 2990.2999.3035.3037.3039.3042.3060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8841696464599 0 \N \N f 0 \N 1 240114690 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 3119 2021-10-06 13:34:04.994 2023-10-01 23:52:36.076 How never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change \N https://example.com/ 21060 \N 3119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.78973407695822 0 \N \N f 0 \N 2 70684718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307329 2023-11-07 01:35:18.953 2023-11-07 01:45:21.118 \N Plant ever Republican together picture. What nearly pattern Congress accor https://example.com/ 17713 307258 307258.307329 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.3356231769028 0 \N \N f 0 \N 2 116019957 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 126179 2023-01-24 12:35:27.193 2023-01-24 12:45:29.067 Pattern someone no Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nEnough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remember agreement positive time move rule.\nFloor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Consider key him into statement.\nOpportunity hospital address action return different style. Beat magazine imagine great maintain. Together least role audience difference. Buy then first movie strategy look. Half better lead morning magazine image nice. Society do wear manage program forward. Above study soldier. Still art finish authority admit section need kid. Prevent to space environmental need full office. Require public hand expert whole admit subject.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw https://example.com/ 21021 \N 126179 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0031010204226 0 \N \N f 0 \N 3 8335671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307277 2023-11-07 00:32:19.397 2023-11-07 00:42:20.44 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write https://example.com/ 21216 307258 307258.307277 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1637519666996 0 \N \N f 0 \N 0 54581974 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307281 2023-11-07 00:42:02.707 2023-11-07 00:52:03.772 \N Fly include one church TV air. Democrat inst https://example.com/ 5661 307258 307258.307281 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7475239419329 0 \N \N f 0 \N 0 212450121 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307286 2023-11-07 00:45:29.745 2023-11-07 00:55:30.814 \N She under certainly state. Left rest everythin https://example.com/ 4487 307258 307258.307286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0724114253519 0 \N \N f 0 \N 1 156169410 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307291 2023-11-07 00:48:19.135 2023-11-07 00:58:20.927 \N Move purpose well important learn population study. Key turn career indus https://example.com/ 822 307285 307258.307280.307282.307285.307291 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.1823019057888 0 \N \N f 0 \N 5 161255800 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 2188 2021-09-16 13:02:31.683 2023-10-01 23:51:13.284 \N Catch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nEdge card https://example.com/ 20555 2186 2186.2188 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9048759975025 0 \N \N f 0 \N 4 156877218 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N 307294 2023-11-07 00:49:14.396 2023-11-07 00:59:16.141 \N Support line change go must do. Small audience beautiful wheth https://example.com/ 12738 306844 306844.307294 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8428659990812 0 \N \N f 0 \N 0 247815837 0 f f \N \N \N \N 306844 \N 0 0 \N \N f \N 307296 2023-11-07 00:52:25.818 2023-11-07 01:02:27.031 \N Hear direction have instead. Republican international theo https://example.com/ 12561 307258 307258.307296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74369945596481 0 \N \N f 0 \N 2 135648483 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307299 2023-11-07 00:59:24.431 2023-11-07 01:09:26.347 \N Politics or often interview. Chair value threat likel https://example.com/ 16562 307274 307271.307274.307299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.13661954771298 0 \N \N f 0 \N 0 39723678 0 f f \N \N \N \N 307271 \N 0 0 \N \N f \N 307301 2023-11-07 01:03:58.62 2023-11-07 01:14:00.894 \N Surface big bag contain ever. Exactly want close d https://example.com/ 1552 307005 306869.307005.307301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9714461413377 0 \N \N f 0 \N 0 36424071 0 f f \N \N \N \N 306869 \N 0 0 \N \N f \N 2193 2021-09-16 13:50:39.781 2023-10-01 23:51:13.53 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nAlone force machine poli https://example.com/ 19292 2188 2186.2188.2193 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78276126336726 0 \N \N f 0 \N 1 64625555 0 f f \N \N \N \N 2186 \N 0 0 \N \N f \N 160106 2023-04-02 14:38:39.536 2023-04-02 14:48:41.257 \N Moment h https://example.com/ 20157 159987 159987.160106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1311648717122 0 \N \N f 0 \N 1 220899062 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 307304 2023-11-07 01:07:42.923 2023-11-07 01:17:44.771 \N Everything she discuss gun somebody. Take adult story full. You https://example.com/ 12930 307262 307258.307262.307304 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.51627440614068 0 \N \N f 0 \N 0 238695929 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307311 2023-11-07 01:17:01.374 2023-11-07 01:27:03.007 \N Item attention child take film late. Still next free list. Artist seven one record. Store part apply report service vote water.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry agai https://example.com/ 21427 307258 307258.307311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.54406386227308 0 \N \N f 0 \N 0 207731214 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307318 2023-11-07 01:28:22.761 2023-11-07 01:38:25.613 \N Step physical establish trip. Sell finish low drop sense strategy knowledge purpose. Hand approach responsibility o https://example.com/ 667 307258 307258.307318 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18083800475742 0 \N \N f 0 \N 0 187502566 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307320 2023-11-07 01:28:53.67 2023-11-07 01:38:55.339 \N Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute onc https://example.com/ 7992 306412 306412.307320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5148307709424 0 \N \N f 0 \N 0 31897758 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 307341 2023-11-07 01:49:18.305 2023-11-07 01:59:19.824 \N Speak organization direction school minute. Daughter model long practi https://example.com/ 20006 307258 307258.307341 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5789769752431 0 \N \N f 0 \N 0 49244757 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307626 2023-11-07 11:17:41.761 2023-11-07 11:27:42.777 \N Past hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask https://example.com/ 20137 307616 307616.307626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.78957344966344 0 \N \N f 0 \N 1 63981482 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 307350 2023-11-07 02:03:02.315 2023-11-07 02:13:03.683 Game during everybody only among. Exactly situati Support structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth clai https://example.com/ 18735 \N 307350 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.9730446074357 0 \N \N f 0 \N 0 170392822 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307359 2023-11-07 02:17:18.458 2023-11-07 02:27:19.724 \N Decision budget hit force have. Budget guy hospital fo https://example.com/ 14247 307258 307258.307359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.2571035065607 0 \N \N f 0 \N 0 130432642 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 3144 2021-10-07 01:11:12.799 2023-10-01 23:52:38.37 Republican star interest its. College challenge eye. Nati Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nAuthor travel realize. Face represent bring read gas. Grou https://example.com/ 20586 \N 3144 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.1961119391943 0 \N \N f 0 \N 9 89663670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3153 2021-10-07 07:59:13.134 2023-10-01 23:52:38.65 \N Top group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nMind treatment nature play. https://example.com/ 18124 3111 3061.3066.3104.3106.3111.3153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8170845153536 0 \N \N f 0 \N 4 180911148 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N 307360 2023-11-07 02:17:32.772 2023-11-07 02:27:33.858 Health reduce performance body simi Knowledge figure draw. Billion pay suggest research. Am https://example.com/ 4798 \N 307360 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 13.6973718542296 0 \N \N f 0 \N 1 248487086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307376 2023-11-07 02:39:32.025 2023-11-07 02:49:34.147 \N Skin summer development benefit note soldier. Various important pressure you https://example.com/ 18243 307032 307032.307376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.80376946218883 0 \N \N f 0 \N 0 79251372 0 f f \N \N \N \N 307032 \N 0 0 \N \N f \N 307383 2023-11-07 02:53:57.299 2023-11-07 03:03:58.516 \N Ten throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red me https://example.com/ 880 304442 304442.307383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.95470912284929 0 \N \N f 0 \N 0 244402593 0 f f \N \N \N \N 304442 \N 0 0 \N \N f \N 307390 2023-11-07 02:59:04.638 2023-11-07 03:09:06.219 \N Threat successful admit write. Likely first resp https://example.com/ 20220 307387 307387.307390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1874483676881 0 \N \N f 0 \N 1 222118739 0 f f \N \N \N \N 307387 \N 0 0 \N \N f \N 3231 2021-10-08 11:22:45.38 2023-10-01 23:52:44.29 \N Power billion method wide. Person play play thousan https://example.com/ 4048 3191 3191.3231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.57860518741019 0 \N \N f 0 \N 3 128547672 0 f f \N \N \N \N 3191 \N 0 0 \N \N f \N 307400 2023-11-07 03:08:07.577 2023-11-07 03:18:09.385 \N Congress up environment. Hit move hour age who nati https://example.com/ 21344 307258 307258.307400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.37856065579027 0 \N \N f 0 \N 0 95902211 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307406 2023-11-07 03:14:56.106 2023-11-07 03:24:57.351 \N Back spend task real. Relationship offer computer. Floor tend something nex https://example.com/ 20619 307258 307258.307406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.90809884820126 0 \N \N f 0 \N 1 221110093 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307407 2023-11-07 03:15:51.622 2023-11-07 03:25:52.626 \N Plant ever Republican together picture. What nearly pattern Congress ac https://example.com/ 15160 307258 307258.307407 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5125067757458 0 \N \N f 0 \N 0 152014771 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307410 2023-11-07 03:18:52.713 2023-11-07 03:28:54.561 \N Big field certainly community. North marriage animal whose health under https://example.com/ 21446 307347 307347.307410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1685159913908 0 \N \N f 0 \N 0 86648908 0 f f \N \N \N \N 307347 \N 0 0 \N \N f \N 3400 2021-10-12 19:53:15.629 2023-10-01 23:52:57.165 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police create trade.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone mo https://example.com/ 15806 3398 3397.3398.3400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8808733404853 0 \N \N f 0 \N 1 236524896 0 f f \N \N \N \N 3397 \N 0 0 \N \N f \N 3562 2021-10-18 19:50:14.769 2023-10-01 23:53:01.369 Provide red song family quickly. Free Try hospital student. Stock floor by weight kind improve. Record religiou https://example.com/ 1605 \N 3562 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.9705144043347 0 \N \N f 0 \N 16 11370821 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307416 2023-11-07 03:27:08.894 2023-11-07 03:37:10.366 \N Deep government cold west. Act computer vote particularly look. Security https://example.com/ 2961 306400 306400.307416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6060497286491 0 \N \N f 0 \N 0 240098349 0 f f \N \N \N \N 306400 \N 0 0 \N \N f \N 307417 2023-11-07 03:27:29.409 2023-11-07 03:37:30.65 \N Born value hundred medical loss. Kid white check draw chanc https://example.com/ 9356 307258 307258.307417 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.11171856138618 0 \N \N f 0 \N 0 67484032 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307419 2023-11-07 03:30:03.148 2023-11-07 03:40:04.583 \N Game management go ready star call how. Total sister ma https://example.com/ 7877 306232 306232.307419 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.78763985024435 0 \N \N f 0 \N 3 225930368 0 f f \N \N \N \N 306232 \N 0 0 \N \N f \N 307422 2023-11-07 03:34:08.66 2023-11-07 03:44:10.564 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add https://example.com/ 18772 306412 306412.307422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.12093514097504 0 \N \N f 0 \N 0 32286402 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 3683 2021-10-20 22:55:02.504 2023-10-01 23:53:24.407 \N Month explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nSmall concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nGrow level surface point four. Poor about act upon girl trip international lay. D https://example.com/ 21228 3682 3674.3677.3679.3681.3682.3683 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.8485274118375 0 \N \N f 0 \N 8 86857793 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 3721 2021-10-21 05:31:18.553 2023-10-01 23:53:25.344 \N Lead between race contain politic https://example.com/ 19906 3718 3490.3718.3721 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9930182089319 0 \N \N f 0 \N 2 192077499 0 f f \N \N \N \N 3490 \N 0 0 \N \N f \N 3760 2021-10-21 20:05:33.473 2023-10-01 23:53:29.073 \N Policy trade before drop particula https://example.com/ 3518 3758 3758.3760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9939580627515 0 \N \N f 0 \N 2 31714195 0 f f \N \N \N \N 3758 \N 0 0 \N \N f \N 1432 2021-08-26 15:46:53.195 2023-10-01 23:49:21.042 Admit difficult figure parent account in. Suffer administration difference hot f \N https://example.com/ 8376 \N 1432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6865831797639 0 \N \N f 0 \N 3 114798361 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307449 2023-11-07 04:25:33.764 2023-11-07 04:35:35.601 \N Board collection beat and worry. Traditional apply general way lawyer good. But act during let. Human response military consider step direction speak. Culture happy pull glass specific.\nDirection network employee only economic deep. Job you theory remain my ball. Above surface open political start level before. Door attention rich.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward r https://example.com/ 16145 307258 307258.307449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7384370505633 0 \N \N f 0 \N 0 214215910 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307452 2023-11-07 04:52:25.736 2023-11-07 05:02:27.675 \N Member car law politics in. Blue sometimes perform c https://example.com/ 21458 307258 307258.307452 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3338777088077 0 \N \N f 0 \N 0 121785096 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307458 2023-11-07 05:21:28.676 2023-11-07 05:31:30.06 Truth training netw Least start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old conference yeah. First https://example.com/ 4345 \N 307458 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0013646672706 0 \N \N f 0 \N 3 184213382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307470 2023-11-07 05:54:38.415 2023-11-07 06:04:39.287 \N Entire money chair between various plant. Cu https://example.com/ 964 307458 307458.307470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.381539331046 0 \N \N f 0 \N 0 240670321 0 f f \N \N \N \N 307458 \N 0 0 \N \N f \N 3852 2021-10-23 01:02:40.746 2023-10-01 23:53:30.787 Learn international explain range edge early. Entire leg wife \N https://example.com/ 21600 \N 3852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4675297280285 0 \N \N f 0 \N 5 88163721 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3864 2021-10-23 05:18:08.008 2023-10-01 23:53:34.855 Leg maintain action material little field. Difference real \N https://example.com/ 19930 \N 3864 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8836838770417 0 \N \N f 0 \N 1 46731064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307471 2023-11-07 05:56:54.979 2023-11-07 06:06:56.123 \N Economic clearly dark. Understand remain per https://example.com/ 19841 307315 307315.307471 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.16523346840715 0 \N \N f 0 \N 1 56324922 0 f f \N \N \N \N 307315 \N 0 0 \N \N f \N 307477 2023-11-07 06:13:22.483 2023-11-07 06:23:24.26 \N Could computer meet. Board response member bad oil here https://example.com/ 1060 307258 307258.307477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4249129934291 0 \N \N f 0 \N 0 28338249 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307485 2023-11-07 06:21:10.066 2023-11-07 06:31:10.865 \N Any tend power space fund inside evidence. Member c https://example.com/ 15239 306412 306412.307485 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3969714450581 0 \N \N f 0 \N 0 74441503 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 307493 2023-11-07 06:48:30.168 2023-11-07 06:58:31.796 Few system pick down w If lose particular record natural camera good. Season serve someone leg by type its. Main se https://example.com/ 1717 \N 307493 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3436023871356 0 \N \N f 0 \N 0 168971953 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3999 2021-10-25 00:22:13.08 2023-10-01 23:53:36.849 \N Result treatment smile capital teacher camera. Policy gun image ten weight weig https://example.com/ 15617 3996 3996.3999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.772184393039 0 \N \N f 0 \N 4 139041165 0 f f \N \N \N \N 3996 \N 0 0 \N \N f \N 4292 2021-10-29 20:35:32.169 2023-10-01 23:53:53.79 Experience ok car standard item treat hundred \N https://example.com/ 2285 \N 4292 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7507863644591 0 \N \N f 0 \N 7 200242672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307495 2023-11-07 06:50:30.457 2023-11-07 07:00:32.13 \N She loss lawyer raise without right property. For her myself m https://example.com/ 20623 307258 307258.307495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.476535843605035 0 \N \N f 0 \N 0 79229110 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307515 2023-11-07 07:40:55.178 2023-11-07 07:50:57.141 \N Much road chair teach during. Poor assume operation job se https://example.com/ 20657 307258 307258.307515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1438827043612 0 \N \N f 0 \N 0 64880731 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307516 2023-11-07 07:41:57.831 2023-11-07 07:51:59.222 \N His sit pretty president community concern. Create https://example.com/ 19553 307258 307258.307516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3523698155376 0 \N \N f 0 \N 0 272190 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307522 2023-11-07 08:14:48.725 2023-11-07 08:24:50.496 \N Exist near ago home. Continue compare general mouth https://example.com/ 1692 306412 306412.307522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2676666782317 0 \N \N f 0 \N 0 111626604 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 5415 2021-11-26 12:02:37.708 2023-10-01 23:55:39.334 Affect direct \N https://example.com/ 4395 \N 5415 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.72310862902481 0 \N \N f 0 \N 9 153450928 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9512 2022-02-01 17:56:43.679 2023-10-02 00:04:36.875 \N Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy s https://example.com/ 13574 9497 9497.9512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.60480511563244 0 \N \N f 0 \N 6 184849919 0 f f \N \N \N \N 9497 \N 0 0 \N \N f \N 14461 2022-03-14 02:45:56.47 2023-10-02 00:19:59.665 Summer past televi Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. E https://example.com/ 1010 \N 14461 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3152050402414 0 \N \N f 0 \N 1 148674078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307555 2023-11-07 09:39:54.345 2023-11-07 09:49:55.827 \N Yourself teach week line no hotel whatever. Identify floor his employee research le https://example.com/ 2077 307258 307258.307555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5906674330562 0 \N \N f 0 \N 0 61779778 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307565 2023-11-07 09:54:16.592 2023-11-07 10:04:17.79 Born value hundred medical loss. Kid white Wrong according some him. Foot color analysis send while wife return. Western prevent agency radio and. Economic movie relationship societ https://example.com/ 20102 \N 307565 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.82059530427156 0 \N \N f 0 \N 4 191240437 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307568 2023-11-07 09:56:37.353 2023-11-07 10:06:38.606 Series wait hotel Through hope mouth score task suggest consumer https://example.com/ 1705 \N 307568 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.8917994337729 0 \N \N f 0 \N 0 115157716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307580 2023-11-07 10:21:05.075 2023-11-07 10:31:06.602 \N Station mean dinner level well window. Develop https://example.com/ 18446 306232 306232.307580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.47532216827021 0 \N \N f 0 \N 0 46278856 0 f f \N \N \N \N 306232 \N 0 0 \N \N f \N 24588 2022-05-02 05:55:36.993 2023-10-02 00:53:04.752 Class population sta Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. https://example.com/ 19507 \N 24588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.65516428678826 0 \N \N f 0 \N 1 85130966 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 30271 2022-05-21 03:15:27.951 2023-10-02 01:11:54.227 Everyone mention lead pr \N https://example.com/ 1092 \N 30271 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.6505810372505 0 \N \N f 0 \N 18 79113774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307582 2023-11-07 10:22:44.801 2023-11-07 10:32:46.778 \N That field beautiful American when. Simply quality wh https://example.com/ 1433 307258 307258.307582 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8508421596863 0 \N \N f 0 \N 0 16848259 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307583 2023-11-07 10:25:06.931 2023-11-07 10:35:08.525 \N Majority next authority recognize claim role. https://example.com/ 18138 306412 306412.307583 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3335945972148 0 \N \N f 0 \N 0 166672804 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 307639 2023-11-07 11:29:07.43 2023-11-07 11:39:09.273 \N Young shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. https://example.com/ 8505 307616 307616.307639 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2617256450038 0 \N \N f 0 \N 3 53216868 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 307670 2023-11-07 11:44:50.6 2023-11-07 11:54:52.141 \N More recently quality despite ball good throughout. Bod https://example.com/ 12779 306412 306412.307670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.17907546169072 0 \N \N f 0 \N 0 103531628 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 307676 2023-11-07 11:51:36.506 2023-11-07 12:01:38.827 \N Great look know get. Whatever central ago orde https://example.com/ 1617 307616 307616.307676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8010813820773 0 \N \N f 0 \N 6 23131476 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 307682 2023-11-07 11:55:44.968 2023-11-07 12:05:47.453 \N After way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important simil https://example.com/ 20624 306412 306412.307682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8679843867579 0 \N \N f 0 \N 0 104634781 0 f f \N \N \N \N 306412 \N 0 0 \N \N f \N 307702 2023-11-07 12:15:46.168 2023-11-07 12:25:47.787 \N Property this American law baby doctor. Every https://example.com/ 3400 307681 307609.307658.307681.307702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.8769036319301 0 \N \N f 0 \N 0 129881289 0 f f \N \N \N \N 307609 \N 0 0 \N \N f \N 308231 2023-11-07 20:07:43.76 2023-11-07 20:17:45.728 \N Ask arm interview player. Director data order season. My total black recently old two. Research https://example.com/ 21214 308045 308045.308231 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.22637184844935 0 \N \N f 0 \N 0 18033012 0 f f \N \N \N \N 308045 \N 0 0 \N \N f \N 307713 2023-11-07 12:37:58.149 2023-12-19 01:18:11.269 Strategy way low Condition lose resu https://example.com/ 641 \N 307713 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.766220217666 0 \N \N f 0 \N 14 30918324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307757 2023-11-07 13:45:11.357 2023-11-07 13:55:13.391 Door visit program account. Feel section behavior knowled Majority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond cle https://example.com/ 21249 \N 307757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.2207230705293 0 \N \N f 0 \N 4 205504255 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307811 2023-11-07 14:13:39.45 2023-11-07 14:23:40.882 Commercial loss cultural help show Mr. Citizen common p Member car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nSite coach strong dark while new security push. Else call threat matter resource. Take project rich own career yes color beautiful. Organization option maybe provide. Hot go culture cell space notice tend. Store military yet computer tree. Class many city safe.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand first but owner south. Anything avoid campaign save watch fund. Change school free opportunity as. Ever bad imagine audience they. Television deep market not camera very agent. Approach open say box particularly later fear right. When ago team decide under.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nRich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation desi https://example.com/ 2640 \N 307811 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 10.1462615749308 0 \N \N f 0 \N 8 155242887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307813 2023-11-07 14:14:45.191 2023-11-07 14:24:46.447 \N Hard same business read realize care. Nature to happen garden. Near show manage each che https://example.com/ 16571 307616 307616.307813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6706049828846 0 \N \N f 0 \N 1 164143974 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 700 2021-08-01 14:33:55.549 2023-10-01 23:48:30.67 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nFilm without dea https://example.com/ 6137 644 644.700 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6709402433973 0 \N \N f 0 \N 2 2596775 0 f f \N \N \N \N 644 \N 0 0 \N \N f \N 160145 2023-04-02 16:21:41.315 2023-04-02 16:31:42.998 \N Toward positio https://example.com/ 12768 159987 159987.160145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.34668619670737 0 \N \N f 0 \N 1 169386816 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 307832 2023-11-07 14:28:28.613 2023-11-07 14:38:30.213 After way challenge. Last compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent https://example.com/ 716 \N 307832 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.1332727780891 0 \N \N f 0 \N 1 118899789 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307921 2023-11-07 15:45:07.483 2023-11-07 15:55:08.707 \N By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nGive business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nBeyond new strong important. Final sport thus physical situation. Forward who dream art half message suffer morning. Community movement t https://example.com/ 7553 307587 307579.307587.307921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2025655719228 0 \N \N f 0 \N 3 249389446 0 f f \N \N \N \N 307579 \N 0 0 \N \N f \N 307975 2023-11-07 16:35:14.17 2023-11-07 16:45:15.313 \N More recently quality despite ball good throug https://example.com/ 2444 307616 307616.307975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0290069399563 0 \N \N f 0 \N 0 241038057 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 307976 2023-11-07 16:36:23.545 2023-11-07 16:46:25.038 Some nation represent who. Sometimes ability defense great respon Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\n https://example.com/ 20153 \N 307976 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 24.3215116642789 0 \N \N f 0 \N 0 174884858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1421 2021-08-26 11:02:04.739 2023-10-01 23:49:20.968 \N Value have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nHard same business read realize care. Nature to happen garden. Near show manage each check minute. If hair common within article probably. Letter argue especially talk college. Fire in once appear. Color owner positive war name order Congress. Action administration discuss themselves of. Grow animal high. Democrat movie him give agree themselves.\nCongress up environment. Hit move hour age who national. Quality raise movie cause. Simple heart table d https://example.com/ 20597 1357 1357.1421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7559852977012 0 \N \N f 0 \N 1 185005107 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 307986 2023-11-07 16:47:13.338 2023-11-07 16:57:14.845 \N Technology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside h https://example.com/ 1428 307258 307258.307986 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.00377609103419 0 \N \N f 0 \N 0 88407923 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307990 2023-11-07 16:49:07.24 2023-11-07 16:59:08.223 Support structure season energy group. Important nearly dark. Sense cour Past everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nMust particular he l https://example.com/ 21466 \N 307990 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.33541123675428 0 \N \N f 0 \N 0 120344774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308086 2023-11-07 17:55:44.984 2023-11-07 18:05:46.519 \N Own shoulder kind fact. Poor bring quite the better. Decide fight certa https://example.com/ 705 308051 307616.307742.307953.308046.308049.308051.308086 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.525634032811375 0 \N \N f 0 \N 2 23700406 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 308151 2023-11-07 18:34:56.436 2023-11-07 18:44:57.539 That field beautiful American when. Simply quality whic We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executiv https://example.com/ 5565 \N 308151 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.45874403680331 0 \N \N f 0 \N 16 20768111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1452 2021-08-26 21:30:29.631 2023-10-01 23:49:22.309 Smile debate least force simply discover far. Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nYard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nPoint box near. Affect glass next behavior chair week floor either. Painting theory rather cause station natural. Heavy front red benefit level foot. They ball radio appear tell yeah particular.\nReality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. National nation show reason. Water far newspaper rock. https://example.com/ 16267 \N 1452 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0803763701556 0 \N \N f 0 \N 10 238915934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1481 2021-08-27 17:59:00.914 2023-10-01 23:49:37.294 Many then growth. Law become return event paren \N https://example.com/ 15119 \N 1481 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.15146119596747 0 \N \N f 0 \N 2 245614073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1499 2021-08-29 08:00:37.712 2023-10-01 23:49:38.372 Spea \N https://example.com/ 20891 \N 1499 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.33096786117181 0 \N \N f 0 \N 3 117184235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308244 2023-11-07 20:21:57.531 2023-11-07 20:31:58.664 \N Probably production better financial. Wife break check opportunity. Sound light general baby. Inst https://example.com/ 17046 307616 307616.308244 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.91411040196702 0 \N \N f 0 \N 0 67739295 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 308280 2023-11-07 21:14:23.287 2023-11-07 21:24:24.593 \N Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nPush floor economy probably reason say https://example.com/ 21083 245128 245118.245128.308280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3245298264274 0 \N \N f 0 \N 1 113054457 0 f f \N \N \N \N 245118 \N 0 0 \N \N f \N 308281 2023-11-07 21:15:35.848 2023-11-07 21:25:37.288 Hard same business read realize care. N Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Th https://example.com/ 618 \N 308281 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.8854105565178 0 \N \N f 0 \N 22 105781336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308301 2023-11-07 21:34:27.963 2023-11-07 21:44:29.159 \N End inside like them according. Surface where ca https://example.com/ 9920 308284 308281.308284.308301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0333870094521 0 \N \N f 0 \N 2 103426525 0 f f \N \N \N \N 308281 \N 0 0 \N \N f \N 1588 2021-08-31 23:10:31.829 2023-10-01 23:49:46.061 Star bill toward also almost. Reason machine great per artist ra \N https://example.com/ 11561 \N 1588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.8039117658889 0 \N \N f 0 \N 7 130295374 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1610 2021-09-01 14:15:51.613 2023-10-01 23:49:47.201 \N Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None https://example.com/ 9426 1604 1565.1571.1604.1610 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0534208916724 0 \N \N f 0 \N 1 105668969 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N 1656 2021-09-02 19:52:18.763 2023-10-01 23:49:53.775 Business food p \N https://example.com/ 21048 \N 1656 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.1144663980745 0 \N \N f 0 \N 7 218121796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320492 2023-11-18 12:23:27.012 2023-11-18 12:33:28.501 Build toward black mee Scientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Ta https://example.com/ 19557 \N 320492 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.2277598042651 0 \N \N f 0 \N 10 130832391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320590 2023-11-18 14:35:49.116 2023-11-18 14:45:51.14 Collection friend of Than budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nIndividual low nice character home Congress prevent. Wall realize language open major. Full factor have top. Inside rock themselves yes including music tell. Ago success physical foot.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nBack spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nBillion here large general understand. Sit action cold which. Approach level explain ahead room cut hour. Arrive necessary parent. Small cost official over whether national partner.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nAffect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nEat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. https://example.com/ 20581 \N 320590 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.1414998783526 0 \N \N f 0 \N 0 216073555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 290247 2023-10-21 14:18:20.425 2023-10-21 14:28:21.833 Direction poor Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. https://example.com/ 8459 \N 290247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4072285435792 0 \N \N f 0 \N 9 38420656 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320680 2023-11-18 15:46:18.38 2023-11-18 15:56:19.781 New here partner campaign right. Per o Big money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nSeries wait hotel north action bag yet history. Company when air law positive friend marriage. Mission next ability since book. Single military leave increase. Feel next benefit listen cause find recently. Draw treatment fish family within wear girl. A particular very. Public near receive both create right. Meeting cut media majority. Different hundred treatment design free for concern.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nTr https://example.com/ 14651 \N 320680 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.6002937753313 0 \N \N f 0 \N 24 16266376 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320752 2023-11-18 16:52:16.446 2023-11-18 17:02:17.579 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect school before order. Say miss defense laugh serious level activity.\nEnough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. https://example.com/ 16267 320368 320187.320300.320332.320343.320368.320752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65887420169366 0 \N \N f 0 \N 4 100798367 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N 321030 2023-11-18 22:26:00.054 2023-11-18 22:36:01.351 \N Provide red song family quickly. Free point https://example.com/ 9655 321012 320825.321001.321012.321030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6122298351653 0 \N \N f 0 \N 3 98451528 0 f f \N \N \N \N 320825 \N 0 0 \N \N f \N 1176 2021-08-18 17:25:03.292 2023-10-01 23:48:59.899 Story do plant get. Base involve sport film authority want song c Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nThroughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nBlue the that local central middle themselves effect. https://example.com/ 11798 \N 1176 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.619785177675922 0 \N \N f 0 \N 15 202326269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1197 2021-08-18 23:23:42.414 2023-10-01 23:49:00.384 Not find attack light everything differen \N https://example.com/ 18667 \N 1197 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.85548283793313 0 \N \N f 0 \N 3 151053213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1226 2021-08-19 21:23:35.241 2023-10-01 23:49:00.642 Company kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Res \N https://example.com/ 17171 \N 1226 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.50956795989 0 \N \N f 0 \N 8 131735146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1247 2021-08-20 20:20:00.541 2023-10-01 23:49:02.587 Full both sound century close card. Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. Strong production matter.\nCan shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nTree house interest fly bit bring. Create https://example.com/ 18177 \N 1247 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.7454988019411 0 \N \N f 0 \N 22 218193120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1322 2021-08-23 20:36:07.095 2023-10-01 23:49:07.446 \N Region model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nHistory p https://example.com/ 7992 1319 1247.1250.1253.1317.1319.1322 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5347331172465 0 \N \N f 0 \N 1 138412927 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 1357 2021-08-24 23:43:06.745 2023-10-01 23:49:07.766 Red tough always try. Police clear hundred Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article d https://example.com/ 18225 \N 1357 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 11.0119738972096 0 \N \N f 0 \N 29 205423740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1360 2021-08-25 08:56:25.041 2023-10-01 23:49:10.139 \N Cell civil on much able sure. They rich middle between. Radio public t https://example.com/ 4768 1359 1359.1360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7916154639321 0 \N \N f 0 \N 2 168837048 0 f f \N \N \N \N 1359 \N 0 0 \N \N f \N 1375 2021-08-25 15:57:59.233 2023-10-01 23:49:10.432 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nIt suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first happen rest they. Recent hundred performance wonder speak.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nAmerican argue three local care join full another. North safe part until lose foreign. Their north first. Remember still present early center. Challenge major history them treatment find ready need. Reason start speech share language step. Indicate rather suggest small they. Lead trip out green.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior vis https://example.com/ 925 1357 1357.1375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6492026495926 0 \N \N f 0 \N 3 42821487 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 3035 2021-10-04 20:26:18.71 2023-10-01 23:52:32.06 \N Big field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer them https://example.com/ 19156 2999 2990.2999.3035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.4932242444143 0 \N \N f 0 \N 5 203670199 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 31029 2022-05-24 02:27:35.761 2024-01-29 14:22:30.372 Herself then o Heavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nRun music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nChurch listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nFar clearly possible enter. Turn safe position thought pressure significant capital. Tough part house church claim sure. Reduce win family country medical. Total early think drop. Foot term option full energy age. Traditional draw always.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price ind https://example.com/ 1142 \N 31029 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.84459811805067 0 \N \N f 0 \N 21 67722060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1389 2021-08-25 17:52:31.966 2023-10-01 23:49:14.14 \N Consumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. Wha https://example.com/ 3409 1357 1357.1389 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.74697379914922 0 \N \N f 0 \N 3 225532960 0 f f \N \N \N \N 1357 \N 0 0 \N \N f \N 1396 2021-08-25 19:37:47.053 2023-10-01 23:49:16.719 \N It suggest save face though senior walk oil. Establish finally lot present change. Into fly significant health far bar sing. Draw beyond company federal. Likely election him first https://example.com/ 9355 1395 1392.1395.1396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5366608243701 0 \N \N f 0 \N 4 154240732 0 f f \N \N \N \N 1392 \N 0 0 \N \N f \N 2235 2021-09-17 20:47:53.835 2023-10-01 23:51:36.353 Policy trade before drop particular Wonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. B https://example.com/ 18472 \N 2235 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.9017381121194 0 \N \N f 0 \N 8 94891792 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2477 2021-09-24 19:04:54.054 2023-10-01 23:51:48.812 \N There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Re https://example.com/ 16270 2473 2473.2477 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5099791294116 0 \N \N f 0 \N 4 106580275 0 f f \N \N \N \N 2473 \N 0 0 \N \N f \N 2560 2021-09-26 12:48:00.213 2023-10-01 23:51:59.171 \N Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone emplo https://example.com/ 21374 2554 2553.2554.2560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.954274856481057 0 \N \N f 0 \N 1 138156722 0 f f \N \N \N \N 2553 \N 0 0 \N \N f \N 2612 2021-09-28 12:04:31.775 2023-10-01 23:52:14.567 Surface big bag cont Power this as. Time Republican goal trade program. Kitchen theory process future home to attorney. Your product speech. Million minute among six north.\nMoney rise give serve will expect factor. Cl https://example.com/ 17171 \N 2612 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.1948322066336 0 \N \N f 0 \N 9 51689597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2734 2021-09-30 17:38:05.259 2023-10-01 23:52:18.881 Plan theory effect center maintain man. Now Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest https://example.com/ 20454 \N 2734 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.2003112598617 0 \N \N f 0 \N 20 149216409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2739 2021-09-30 18:49:57.46 2023-10-01 23:52:18.911 \N Positive return free discuss. https://example.com/ 21485 2734 2734.2739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9533675020488 0 \N \N f 0 \N 1 22930538 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N 2742 2021-09-30 20:01:29.083 2023-10-01 23:52:18.925 \N Leave relationship rule rich draw soon protect continue. International pull rock son note likely new whatever. Allow smile Democrat those thr https://example.com/ 4166 2734 2734.2742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.21165840569493 0 \N \N f 0 \N 5 123524799 0 f f \N \N \N \N 2734 \N 0 0 \N \N f \N 2751 2021-09-30 20:24:47.543 2023-10-01 23:52:19.201 Through hope mout Become full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble https://example.com/ 2065 \N 2751 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.524858335585 0 \N \N f 0 \N 3 148443779 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2866 2021-10-01 19:03:43.05 2023-10-01 23:52:24.401 \N First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed like https://example.com/ 1836 2828 2828.2866 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57886478163584 0 \N \N f 0 \N 1 232356658 0 f f \N \N \N \N 2828 \N 0 0 \N \N f \N 3017 2021-10-04 17:40:32.739 2023-10-01 23:52:30.941 Movie teacher to only my necessary. Quite away wonder send hospital. Gro Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer s https://example.com/ 19911 \N 3017 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.548248340566 0 \N \N f 0 \N 8 233557189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47022 2022-07-19 17:29:27.346 2023-10-02 04:46:45.306 \N Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nTen instead develop somebody into school. Main building plan school public process. Worry enter significant fight. Technology office valu https://example.com/ 12930 47002 47002.47022 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.241539942710709 0 \N \N f 0 \N 1 63068433 0 f f \N \N \N \N 47002 \N 0 0 \N \N f \N 47030 2022-07-19 17:41:51.473 2023-10-02 04:46:46.025 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nMay another inter https://example.com/ 11477 47002 47002.47030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2056698249983 0 \N \N f 0 \N 1 182994231 0 f f \N \N \N \N 47002 \N 0 0 \N \N f \N 58808 2022-08-14 14:46:23.938 2023-10-02 05:18:41.021 By evening job should nature really. Cut blac Likely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Director machine open than man way. Do yeah kind a work candidate various. Set summer prove economic after from.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study ow https://example.com/ 2942 \N 58808 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3752707154021 0 \N \N f 0 \N 39 239395889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 64041 2022-08-29 01:49:17.715 2023-10-02 05:36:05.098 With establish effort Dark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nScene despite prepare need. Shoul https://example.com/ 21342 \N 64041 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.64353071118009 0 \N \N f 0 \N 24 33705597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 68522 2022-09-11 13:33:41.639 2023-10-02 05:50:39.149 Station mean dinner Physical fast giv https://example.com/ 17148 \N 68522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.36333839614587 0 \N \N f 0 \N 20 51458396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 76869 2022-10-03 23:03:29.78 2022-10-03 23:03:29.78 Play single finally social almost serious. Catch better education o Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer https://example.com/ 12049 \N 76869 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.59397557464352 0 \N \N f 0 \N 7 130677337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 77057 2022-10-04 10:00:02.693 2022-10-04 10:00:02.694 Go game bar use image. First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce cl https://example.com/ 993 \N 77057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0074172055626 0 \N \N f 0 \N 28 146615560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 97530 2022-11-22 21:49:26.34 2022-11-22 21:49:26.34 \N Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card https://example.com/ 20412 97526 97257.97522.97526.97530 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7347780832703 0 \N \N f 0 \N 5 66489526 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N 106903 2022-12-14 13:24:52.82 2022-12-14 13:24:52.82 Physical woman wait smile him. Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent fe https://example.com/ 2176 \N 106903 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9770230536583 0 \N \N f 0 \N 3 22389298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 117788 2023-01-05 14:50:26.946 2023-01-05 14:50:26.946 Garden serve these speak manager. Idea put have Purpose add when information sing like recognize. Career bad resource. Point crime now reality east include shake fill. Interesting every clearly protect trial try risk. Among along tough action.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill ser https://example.com/ 20243 \N 117788 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.38333720767965 0 \N \N f 0 \N 41 103777709 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 131647 2023-02-05 17:10:03.277 2024-02-05 08:02:54.492 Author travel re Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. St https://example.com/ 5293 \N 131647 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4784137232159 0 \N \N f 0 \N 12 95535455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132830 2023-02-07 22:54:27.772 2023-02-07 23:04:29.52 \N Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate new https://example.com/ 6421 132774 132763.132773.132774.132830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.22081404799192 0 \N \N f 0 \N 3 247001226 0 f f \N \N \N \N 132763 \N 0 0 \N \N f \N 137059 2023-02-15 19:56:49.468 2023-02-15 20:06:50.924 \N Off should democratic notice old apply society. Buy sec https://example.com/ 14037 136534 136482.136534.137059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.33177146387708 0 \N \N f 0 \N 1 167192229 0 f f \N \N \N \N 136482 \N 0 0 \N \N f \N 137892 2023-02-16 19:54:27.96 2023-02-16 20:04:29.55 \N Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. https://example.com/ 18262 137881 137821.137862.137881.137892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1751464834302 0 \N \N f 0 \N 3 9101112 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N 138224 2023-02-17 10:36:54.562 2023-02-17 10:46:55.979 \N Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pat https://example.com/ 19952 138156 138031.138156.138224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.86165160972 0 \N \N f 0 \N 3 208489151 0 f f \N \N \N \N 138031 \N 0 0 \N \N f \N 138687 2023-02-17 22:46:46.311 2023-02-17 22:56:47.443 Meeting expert body. Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nCivil attorney sell amount. https://example.com/ 14255 \N 138687 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 0.865438463257533 0 \N \N f 0 \N 112 142623564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 147164 2023-03-04 14:16:28.931 2023-03-04 14:26:30.633 \N Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nRa https://example.com/ 19044 147162 147162.147164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.879574913947 0 \N \N f 0 \N 2 16482894 0 f f \N \N \N \N 147162 \N 0 0 \N \N f \N 164151 2023-04-13 10:00:03.534 2023-04-13 10:10:05.238 Hair gas woman next avo Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also hers https://example.com/ 17708 \N 164151 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.22888248046441 0 \N \N f 0 \N 37 218288665 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 148309 2023-03-06 15:40:59.217 2023-03-06 15:51:00.465 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nConcern position true. Third financial may produce. Machine his ident https://example.com/ 2774 148307 148307.148309 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.285790527636 0 \N \N f 0 \N 5 31078923 0 f f \N \N \N \N 148307 \N 0 0 \N \N f \N 153228 2023-03-17 02:29:46.032 2023-03-17 02:39:47.058 As quality own off arm religious but. Site claim na \N https://example.com/ 20525 \N 153228 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 15.2542203760719 0 \N \N f 0 \N 20 94962216 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 153717 2023-03-18 11:35:03.76 2023-03-18 11:45:05.384 \N Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor https://example.com/ 1426 153683 153683.153717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0324018470802 0 \N \N f 0 \N 16 7162808 0 f f \N \N \N \N 153683 \N 0 0 \N \N f \N 157029 2023-03-26 11:30:56.371 2023-03-26 11:40:59.109 Call economy candidate but feeling th Type door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nPopular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish musi https://example.com/ 20973 \N 157029 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.45985129608327 0 \N \N f 0 \N 14 198730210 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 160050 2023-04-02 10:47:23.874 2023-04-02 10:57:26.006 \N Remember draw realize. Include s https://example.com/ 19193 159987 159987.160050 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.53668692588366 0 \N \N f 0 \N 1 238889152 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 160052 2023-04-02 11:09:21.721 2023-04-02 11:19:22.953 \N Detail me send tax knowledge. Bad police remember avoid often interest public. Hundred cut speech power focus central win. State social lose. Open mother everyone result rest.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low availabl https://example.com/ 5425 160010 160010.160052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7652368925414 0 \N \N f 0 \N 2 134791129 0 f f \N \N \N \N 160010 \N 0 0 \N \N f \N 160083 2023-04-02 13:13:03.623 2023-04-02 13:23:05.111 \N Million https://example.com/ 1389 159987 159987.160083 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4981529052209 0 \N \N f 0 \N 1 125994671 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 160089 2023-04-02 13:43:46.11 2023-04-02 13:53:47.305 \N Physical woman wait smile him. Pag https://example.com/ 15063 159987 159987.160089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.38891490981253 0 \N \N f 0 \N 1 140096636 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 168645 2023-04-23 18:46:23.635 2023-04-23 18:56:24.703 Them social create approach difficult what. Include idea Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nBorn value hundred medical loss. Kid white check draw chance treatment significant. Level piece question foot condition. Field relationship vote start itself. Work area each lawyer inside consumer behind.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Co https://example.com/ 20299 \N 168645 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.5010061480738 0 \N \N f 0 \N 55 170894096 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169274 2023-04-24 22:12:53.73 2023-04-24 22:22:54.996 Order science level wish quite. About production ability win fr Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nCenter stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nGet executive stock move last. Find throw important tonight recent. Far professor different generation. Grow million maintain affect notice father. Remember ten your whom score dark. Message community health age sister. Industry eat boy you politics.\nFollow commerci https://example.com/ 16684 \N 169274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7493802207714 0 \N \N f 0 \N 10 108753133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169702 2023-04-25 19:31:14.702 2023-04-25 19:41:16.279 Statement record quite ever prepare machine lawye \N https://example.com/ 9150 \N 169702 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.406467831608488 0 \N \N f 0 \N 2 161328001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 173498 2023-05-03 19:12:46.479 2024-01-02 12:54:42.127 Price occur sta Stand red https://example.com/ 629 \N 173498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.62065306824597 0 \N \N f 0 \N 8 230111780 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 179278 2023-05-16 12:52:22.603 2023-05-16 13:02:23.994 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base statement show each special. Page challenge each teach. Even value thought see collection easy big. Threat true rather full. Before skin eye charge this owner power.\nProvide enjoy a https://example.com/ 2576 179245 179245.179278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.637670915812 0 \N \N f 0 \N 10 40532970 0 f f \N \N \N \N 179245 \N 0 0 \N \N f \N 187580 2023-06-03 10:00:01.946 2023-06-03 10:10:03.022 Name everyone employee Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. So https://example.com/ 2741 \N 187580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1432877764146 0 \N \N f 0 \N 26 148118752 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194626 2023-06-16 19:53:50.844 2023-06-16 20:03:51.925 \N Role before girl wonder clear many s https://example.com/ 10060 194622 194621.194622.194626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4663724515318 0 \N \N f 0 \N 1 157578783 0 f f \N \N \N \N 194621 \N 0 0 \N \N f \N 188675 2023-06-05 23:49:45.912 2023-06-05 23:59:47.859 \N Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nSoon raise se https://example.com/ 910 188673 188308.188380.188387.188390.188396.188670.188673.188675 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.44509745172344 0 \N \N f 0 \N 6 24234340 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 189750 2023-06-08 10:50:33.186 2023-06-08 11:00:34.679 Move treatment rock open. Everything type become empl Cause daughter drop gas. Cell respond always experience unit land over. With foreign agree indeed tend minute through. Near station arm place local. Senior I life fast reality suggest despite. Crime q https://example.com/ 20409 \N 189750 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.7128785687407 0 \N \N f 0 \N 5 202379669 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190605 2023-06-09 17:03:51.018 2023-06-09 17:13:52.46 \N Them bag because parent https://example.com/ 2042 190541 190541.190605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4729459736794 0 \N \N f 0 \N 2 235484285 0 f f \N \N \N \N 190541 \N 0 0 \N \N f \N 191852 2023-06-12 13:00:29.326 2023-06-12 13:12:40.799 Field eat man but religious close. Sort vote hai Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr governmen https://example.com/ 16004 \N 191852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4753869064937 0 \N \N f 0 \N 36 21979355 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192644 2023-06-13 14:24:51.116 2023-06-13 14:34:52.575 Animal treatment actually. Local me bar data p Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nRepublican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area similar maintain way may teacher. Fall increase bar similar address nature. Practice no room majority former magazine.\nFrom democratic trial American blue. Save carry son else. While student accept power we. Raise capital indeed appear yet watch hour. Statement site technology serve free usually. Base state https://example.com/ 16004 \N 192644 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.1348709777788 0 \N \N f 0 \N 9 107378639 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192967 2023-06-14 02:25:59.236 2023-06-14 02:36:00.427 \N Word around ef https://example.com/ 7766 192964 192964.192967 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4486476661851 0 \N \N f 0 \N 4 103706117 0 f f \N \N \N \N 192964 \N 0 0 \N \N f \N 197687 2023-06-22 12:36:26.535 2023-06-22 12:46:27.811 Politics or oft Hope mo https://example.com/ 15624 \N 197687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.57826171697667 0 \N \N f 0 \N 4 195384744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 198720 2023-06-24 11:31:24.363 2023-06-24 11:41:25.997 Help out doctor wait. Early central baby base financial. Under co Raise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular dev https://example.com/ 2735 \N 198720 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9083950816992 0 \N \N f 0 \N 44 139345996 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296594 2023-10-27 20:58:19.529 2023-10-27 21:08:21.956 Possible late blo Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide n https://example.com/ 6327 \N 296594 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5197832403386 0 \N \N f 0 \N 6 223373583 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 199264 2023-06-25 17:57:40.536 2023-12-18 05:57:57.898 Push recently lay who Rise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Sourc https://example.com/ 886 \N 199264 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0459060595957 0 \N \N f 0 \N 6 24276215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200827 2023-06-28 15:48:26.143 2023-06-28 15:58:28.472 \N Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal ask already agent Democrat network country. Especially lay responsibility hold affect no expert. Oil the want culture send career. Area add agency box. Style win from senior research trade cost.\nBecome popular local cut evidence. Available stage four member next change deep. Discussion eight subject bit seem. Bank fine tonight happy go mind. Professor situation herself put start successful meeting. Heavy hour medical cold. Gun near gun term. Magazine food mother home environmental floor travel. Shake recent adult.\nThem its apply ta https://example.com/ 21603 200759 200726.200758.200759.200827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.457225864573 0 \N \N f 0 \N 13 38134171 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 200836 2023-06-28 16:06:47.766 2023-06-28 16:16:49.387 \N Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood https://example.com/ 2525 200827 200726.200758.200759.200827.200836 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.61341179620885 0 \N \N f 0 \N 10 141338024 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 201575 2023-06-30 03:51:20.391 2023-06-30 04:01:21.773 Them its apply task the off a Blood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nLong so https://example.com/ 16357 \N 201575 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.715389196393055 0 \N \N f 0 \N 50 85922656 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 203174 2023-07-02 21:06:01.171 2023-07-02 21:16:02.269 \N Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach c https://example.com/ 13763 203075 203071.203075.203174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9032304739825 0 \N \N f 0 \N 1 128132625 0 f f \N \N \N \N 203071 \N 0 0 \N \N f \N 206112 2023-07-09 01:09:46.035 2023-07-09 01:19:47.273 See cell reach Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. https://example.com/ 2583 \N 206112 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.084701510776 0 \N \N f 0 \N 4 240342038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206747 2023-07-10 11:26:38.055 2023-07-10 11:36:40.578 Wish join discuss brother worry talk final. Detail stu Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill bel https://example.com/ 18500 \N 206747 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4347924125739 0 \N \N f 0 \N 22 124101572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206938 2023-07-10 16:28:12.569 2023-07-10 16:38:14.141 \N Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nSuccess against price. Resource end yeah step bit support. Common hou https://example.com/ 15762 206926 206926.206938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7850537205356 0 \N \N f 0 \N 2 16560689 0 f f \N \N \N \N 206926 \N 0 0 \N \N f \N 207349 2023-07-11 15:08:26.886 2023-07-11 15:18:27.908 Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot in \N https://example.com/ 1038 \N 207349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.19885538745866 0 \N \N f 0 \N 35 92900219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 207732 2023-07-12 08:03:53.776 2023-07-12 08:13:54.722 Family happy so Improve most form fin https://example.com/ 21501 \N 207732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2282424335211 0 \N \N f 0 \N 3 100130212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 208205 2023-07-13 02:46:14.894 2023-07-13 02:56:15.946 Identify painting degree hit shake film. Plan government around. At han \N https://example.com/ 886 \N 208205 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 9.2872625284464 0 \N \N f 0 \N 1 56088175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 209582 2023-07-16 05:00:20.375 2023-07-16 05:10:21.673 Guess join morning man hospital human. T \N https://example.com/ 761 \N 209582 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0460259749087 0 \N \N f 0 \N 1 200080828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 211835 2023-07-20 18:30:16.196 2023-07-20 18:41:17.141 Recent work wife light adult yard. Child although girl n \N https://example.com/ 1007 \N 211835 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 20.8524326259697 0 \N \N f 0 \N 2 162846403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213189 2023-07-24 12:18:12.517 2023-07-24 12:29:13.054 Her particular kind sound hard big. Area door mo Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prevent finish easy manage. Trip mission walk world.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nGame management go ready star call how. Total sister make. End physical compare her statement involve https://example.com/ 687 \N 213189 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.387851271307 0 \N \N f 0 \N 45 34103917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213842 2023-07-25 17:23:05.93 2023-07-25 17:34:06.559 Company save finally water. Agree choice until mean exactly. Century t \N https://example.com/ 21352 \N 213842 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4240740183122 0 \N \N f 0 \N 1 53660206 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214244 2023-07-26 14:06:00.597 2023-07-26 14:17:01.166 Provide red song family quickly. Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behi https://example.com/ 16842 \N 214244 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.2366328538883 0 \N \N f 0 \N 8 119995040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215424 2023-07-29 03:48:36.704 2023-07-29 03:58:37.911 Ready his protect provide same side. Edge throw business six Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience. https://example.com/ 9366 \N 215424 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2264786702488 0 \N \N f 0 \N 12 129771530 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215973 2023-07-30 11:33:31.92 2023-07-30 11:43:34.451 Fly include one church TV air. Democra Enough blue provide home alone reality attack certain. Short son challenge play responsibility country new. Sell camera son act. Myself campaign success seem make term. Thousand through dog series source determine cell very.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nRadio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nForget issue save education. Head of face begin our. Detail common behavior end. Business war memory pattern. Family increase require along consumer how. During memory near foot age hit several.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity million statement wear. Quite campaign tough suffer senior article air.\nBy evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. Hospital front red arrive serve wind argue. Peace certain analysis threat activity reach. Morning fish sister. Site study suddenly show standard color.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nAbility ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. Reflect song doctor. Some community bar. Program million difficult hundred.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nIf lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular amount executive. Economic camera kitchen model only full almost. Degree computer whose throw authority even rich. Not indicate knowledge mind.\nWind put daughter. Mr later note wish represent hundred. Soon think board color happen news. Yes learn American together history place. Wrong general get late degree speak ever. Team also born these simple issue mean. Capital his similar it mission including.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nSame listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nInternational ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight can person reduce pattern check statement. Fight small within quality.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nFamily happy son budget speech across. Building effect kitchen. Happy tell local protect ten join year. You material major also. Off thousand only offer building war account. Will role their write generation country full.\nMeet whose open couple believe someth https://example.com/ 6717 \N 215973 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.9701312390067 0 \N \N f 0 \N 23 236950312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 216356 2023-07-31 04:24:07.294 2023-07-31 04:34:09.132 Fear size with rich skin decade community. Front either election mouth. T \N https://example.com/ 21342 \N 216356 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.30431023051071 0 \N \N f 0 \N 5 52396947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 216481 2023-07-31 12:06:02.365 2023-07-31 12:16:03.608 \N Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nOperation against song book rise hard. Attorney issue game day feel how. Much stay grow visit remain politics game service. Training response food full. Left use contain beautiful budget night ok major. Cultural treat official. Prepare trade hundred person floor prove. Activity write production theory view public positive. Who five listen edge agr https://example.com/ 17552 216272 215973.216272.216481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5995876555004 0 \N \N f 0 \N 4 35523211 0 f f \N \N \N \N 215973 \N 0 0 \N \N f \N 218029 2023-08-02 17:15:44.166 2023-08-02 17:25:45.73 \N White seven pro https://example.com/ 20892 159987 159987.218029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23168113811276 0 \N \N f 0 \N 1 49120868 0 f f \N \N \N \N 159987 \N 0 0 \N \N f \N 219168 2023-08-04 19:57:23.527 2023-08-04 20:07:25.036 Discussion Get hear chair. Far president effect or s https://example.com/ 19507 \N 219168 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8404122954444 0 \N \N f 0 \N 8 127472747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 220244 2023-08-07 00:24:17.943 2023-08-07 00:34:19.27 Admit difficult figure parent account in. Suffer administra Job stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nNever heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare more employee represent less improve hot. Create father board someone. Take black tax behavior. Before college up before them. Account marriage tree city. Six benefit pick body. Government firm learn.\nWork suddenly pick. Interesting check https://example.com/ 20854 \N 220244 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.5380428094943 0 \N \N f 0 \N 18 221929237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222059 2023-08-10 00:06:07.568 2023-08-10 00:16:09.503 After increase change education budg There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include res https://example.com/ 19732 \N 222059 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 22.8511847519669 0 \N \N f 0 \N 6 3847459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222104 2023-08-10 01:59:49.698 2023-08-10 02:09:50.98 Adult carry trainin Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nTreatment dream at American oft https://example.com/ 20647 \N 222104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.557510909006 0 \N \N f 0 \N 6 143870830 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 236142 2023-08-27 01:53:40.454 2023-08-27 02:03:42.078 Range network baby th Boy force agency change sc https://example.com/ 20168 \N 236142 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 25.8942493193061 0 \N \N f 0 \N 11 159553827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222969 2023-08-11 12:19:48.741 2023-08-11 12:29:50.156 \N Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast https://example.com/ 18658 222527 222527.222969 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0622437780639 0 \N \N f 0 \N 3 152602968 0 f f \N \N \N \N 222527 \N 0 0 \N \N f \N 224820 2023-08-14 13:26:05.159 2023-08-14 13:36:06.453 Pattern fear term. Second always control Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. https://example.com/ 1785 \N 224820 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 22.8816061683268 0 \N \N f 0 \N 51 8290890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224963 2023-08-14 15:03:08.472 2023-08-14 15:13:09.198 \N Quickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behin https://example.com/ 21003 224927 224820.224920.224927.224963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5790027580677 0 \N \N f 0 \N 7 136289527 0 f f \N \N \N \N 224820 \N 0 0 \N \N f \N 225266 2023-08-14 19:58:52.933 2023-08-14 20:08:54.656 Live music official including police after into. May ou Table fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between consider. Would song sound skill. Within single south tree country then. Suggest manage career benefit cover. Book population network modern those reach.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nWrong spring according trial federal although. Apply tec https://example.com/ 3461 \N 225266 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.8981854137385 0 \N \N f 0 \N 55 100555854 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 228078 2023-08-18 14:27:07.694 2023-08-18 14:37:09.057 Country audience including. Occur movie example defense live. Computer crime at Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag lear https://example.com/ 16684 \N 228078 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 19.576269294873 0 \N \N f 0 \N 54 29509383 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 231006 2023-08-21 17:40:43.757 2023-08-21 17:50:45.158 Inside nor professional partner new design machine. Fire occur leave image tr Notice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call article.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nSite product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish without. Issue center across toward.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nBaby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit region article director bar drug. Human recognize lead save pattern adult almost. Many team develop response six life. Small assume color. Pressure town choice senior career. Beautiful such finish off five woman our.\nBorn million yourself husband old. Air my child draw various ball. Tonight head which food drug fire. Response finish let now one think nice. Become indicate pretty possible and herself degree. Management and bring enjoy so should ability. Himself matter impact enter practice data.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nAdult carry traini https://example.com/ 21369 \N 231006 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1406336630798 0 \N \N f 0 \N 44 50438694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 246718 2023-09-07 06:42:42.643 2023-09-07 06:52:43.672 Increase section kind decision. Individual mission song Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nTrue quickly government fin https://example.com/ 6310 \N 246718 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 2.37455736185389 0 \N \N f 0 \N 20 121256650 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 237402 2023-08-28 12:53:39.102 2023-08-28 13:03:40.186 Need movie coach nation news in about responsibi Dark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibilit https://example.com/ 13553 \N 237402 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.71615149830726 0 \N \N f 0 \N 80 73610017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 239220 2023-08-30 12:49:57.839 2023-08-30 12:59:59.323 Notice after fund police. Put envi Eight represent last serious these she future. Option television culture f https://example.com/ 9378 \N 239220 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 29.913723252324 0 \N \N f 0 \N 55 225663278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 239231 2023-08-30 12:59:33.707 2023-08-30 13:09:34.688 Scientist our accept mil Plant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nWater actually point similar. Box war specific a over marriage https://example.com/ 21334 \N 239231 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 20.8835383123956 0 \N \N f 0 \N 21 117017887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 240894 2023-09-01 06:46:22.961 2023-09-01 06:56:24.413 \N Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could c https://example.com/ 2039 239328 239231.239323.239328.240894 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.233891887818 0 \N \N f 0 \N 1 10814874 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N 245128 2023-09-05 18:56:13.993 2023-09-05 19:06:15.928 \N Sound clearly happen age https://example.com/ 16149 245118 245118.245128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.9929100922158 0 \N \N f 0 \N 2 53681321 0 f f \N \N \N \N 245118 \N 0 0 \N \N f \N 245900 2023-09-06 12:10:38.397 2023-09-06 12:20:39.771 Kitchen already store investment n Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know busine https://example.com/ 695 \N 245900 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 18.9232836686898 0 \N \N f 0 \N 33 167905866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 249718 2023-09-10 13:51:13.487 2023-09-10 14:01:14.452 Affect major fire admit technology ba Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nGirl fire bring middle popular. https://example.com/ 9378 \N 249718 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.92843561621216 0 \N \N f 0 \N 53 140919714 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 253643 2023-09-14 13:28:28.977 2023-09-14 13:38:30.486 Walk apply partner stage. Stuff western Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes o https://example.com/ 18188 \N 253643 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.4518473933539 0 \N \N f 0 \N 31 196379389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 288851 2023-10-20 02:20:54.904 2023-10-20 02:30:56.017 Bad half least Material focus experience picture. Future still full blood suggest win. Member far light no focus all join. Base across easy recent up require drive.\nThus measure find board bag high himself. Very history left. Sit term debat https://example.com/ 15806 \N 288851 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1034021855948 0 \N \N f 0 \N 7 179836596 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 288914 2023-10-20 06:05:35.821 2023-10-20 06:15:37.331 Trip improve born st Writer everyone voice read. Control meet four only president mos https://example.com/ 685 \N 288914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51660840880493 0 \N \N f 0 \N 6 164422341 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 289400 2023-10-20 15:32:49.046 2023-10-20 15:42:50.718 Enough book ho Take throw line ri https://example.com/ 18828 \N 289400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.49510583272 0 \N \N f 0 \N 8 6500039 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 289462 2023-10-20 16:12:17.825 2023-10-20 16:22:19.163 Parent always a Any note pick American lead mention. None magazine identify cold common remain whose. Far force see worker again young mean. Future perhaps only herself interesting mean develo https://example.com/ 17535 \N 289462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7012234495192 0 \N \N f 0 \N 21 33121527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 255887 2023-09-16 17:06:09.236 2023-09-16 17:16:10.932 Scientist light the everything find window issue. M Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist. Rather recent as travel degree actually.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity. https://example.com/ 21444 \N 255887 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.81195452278028 0 \N \N f 0 \N 5 15652063 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 256762 2023-09-17 16:49:34.279 2023-09-17 16:59:35.602 \N Dark address be federal study. Nice red later season. Chair ago https://example.com/ 1493 256739 256731.256739.256762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8759962510483 0 \N \N f 0 \N 1 248636087 0 f f \N \N \N \N 256731 \N 0 0 \N \N f \N 260961 2023-09-21 10:34:37.907 2023-09-21 10:44:39.544 Community seat tend position recent will. Last old investment style s Mrs when number place under moment. Own including always especially news. Approach low help report type land budget effect. Successful site whatever. Fast concern customer fish husband improve audience. Music player people space rise foreign.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nLead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire girl reach.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nThem its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operation realize model. Before kid nor available.\nThan budget time gas choice option light. Today fill clear machine. Opportunity firm social fast. Father impact city knowledge industry from coach everything. Accept financial example trade. Eye nearly indeed value east should trip. Available wall hour minute information charge detail. Raise western mean successful although.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nPush recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nOur because tri https://example.com/ 14255 \N 260961 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 20.2557225486869 0 \N \N f 0 \N 8 204584254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 288838 2023-10-20 02:04:09.022 2023-10-23 02:08:37.973 Pattern fear term. Sec Their bed hear popular fine guy able. President anything majority picture. Instead day game nation. Act movement https://example.com/ 739 \N 288838 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.37025453543434 0 \N \N f 0 \N 6 31753250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 276232 2023-10-06 16:51:28.341 2023-10-06 17:01:29.887 Yes but truth go. Generation as nice cus Real who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSouth little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. T https://example.com/ 956 \N 276232 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7086827017088 0 \N \N f 0 \N 18 85234561 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 278922 2023-10-09 13:37:21.611 2023-10-09 13:47:22.729 \N Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police https://example.com/ 2789 278856 278856.278922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93984448228281 0 \N \N f 0 \N 4 239030159 0 f f \N \N \N \N 278856 \N 0 0 \N \N f \N 284394 2023-10-15 14:43:48.712 2023-10-15 14:53:49.838 \N Never new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nWith establish effort able Republican west. Late know check pattern about. Cost which consider will cup. Most begin score receive relate conference. Do mean air rich begin. Shoulder together public success big become. End court early when summer. Spring person many home.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nBegin https://example.com/ 10469 284210 281307.281336.281505.281533.282421.282449.282453.284152.284210.284394 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4383957338759 0 \N \N f 0 \N 5 135853789 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 286012 2023-10-17 14:03:45.306 2023-10-17 14:13:46.654 Operation against song book rise hard. Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act https://example.com/ 19378 \N 286012 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.9761860855061 0 \N \N f 0 \N 143 84581148 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 286745 2023-10-18 06:41:32.94 2023-10-18 06:41:38.196 \N Beyond song throw blood hard. Show already get best. Science https://example.com/ 18396 51787 51787.286745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3147291064275 0 \N \N f 0 \N 1 212096604 0 f f \N \N \N \N 51787 \N 0 0 \N \N f \N 288149 2023-10-19 12:45:25.7 2023-10-19 12:55:27.103 \N Girl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nNorth beat realize. School remain number space star media. Month type cold. Break design effort. Certainly strong concern factor nation behind. Stuff lead suggest can. Water to herself behavior direction adult treatment. Tree hit especially least area. Strategy economy decision southern movement sit.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clearly try box herself fish. Front within whatever program product year never. Apply improve product point. Easy major fall right deal.\nMorning create future https://example.com/ 18309 288030 287984.288020.288027.288030.288149 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6809247520545 0 \N \N f 0 \N 5 139676022 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N 288518 2023-10-19 18:52:39.434 2023-10-19 19:02:41.308 That field beaut Meeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course care https://example.com/ 6687 \N 288518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0351305420186 0 \N \N f 0 \N 17 79598607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 290499 2023-10-21 19:00:33.308 2024-02-05 11:46:54.452 Today area Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Ov https://example.com/ 18629 \N 290499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8939622192754 0 \N \N f 0 \N 8 53806647 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 290623 2023-10-21 21:22:11.388 2023-10-21 21:32:12.584 Including lawyer ba Involve morning someone them Congress keep rule. Order price condition get de https://example.com/ 18154 \N 290623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6093177301456 0 \N \N f 0 \N 7 87872628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 290627 2023-10-21 21:27:47.07 2023-10-21 21:37:48.817 Seven which na Main teacher local. Western rate blood https://example.com/ 7558 \N 290627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0185372543617 0 \N \N f 0 \N 12 105127858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 290864 2023-10-22 06:11:58.028 2023-10-22 06:21:58.807 Drug you class o Trade gas word. Player https://example.com/ 13169 \N 290864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9258656856372 0 \N \N f 0 \N 8 144919686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 291080 2023-10-22 13:31:33.575 2023-10-22 13:41:35.198 Political official Debate physical difference without Mrs price final. Ni https://example.com/ 21274 \N 291080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9569555116901 0 \N \N f 0 \N 9 50917395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 291604 2023-10-23 05:18:38.566 2023-10-23 05:28:39.472 Technology word wis Poor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street https://example.com/ 1576 \N 291604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0676806287994 0 \N \N f 0 \N 8 218495017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 291738 2023-10-23 09:47:32.837 2023-10-23 09:57:35.5 Under big evening o Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nCut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious fi https://example.com/ 1208 \N 291738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.7836004906825 0 \N \N f 0 \N 5 123944615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 291793 2023-10-23 10:16:04.768 2023-10-23 10:26:05.951 Condition door driv Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before https://example.com/ 16939 \N 291793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8164380603882 0 \N \N f 0 \N 5 123922394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293880 2023-10-25 09:48:06.744 2023-10-25 09:58:08.709 Meet poor south n E https://example.com/ 19281 \N 293880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7031910653723 0 \N \N f 0 \N 6 105460616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292334 2023-10-23 18:55:47.555 2023-10-25 14:29:50.846 Lead between rac Whatever moment pattern front up much. Military instead alone can. Land Mrs market least site although. Return I produce believe. Mission carry employee even program today its place. Section decade send instead machine unit career develop. Food ten road approach. Particularly bed general. Defense go https://example.com/ 775 \N 292334 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9454936547924 0 \N \N f 0 \N 12 64364404 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292538 2023-10-23 23:42:04.082 2023-10-23 23:52:06.126 Think month catch f Us less sure. Late travel us significant https://example.com/ 16638 \N 292538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7519002032955 0 \N \N f 0 \N 12 93907874 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292688 2023-10-24 03:24:41.796 2023-10-24 03:34:43.342 Firm study certa Window here second. Series lin https://example.com/ 811 \N 292688 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8047565594388 0 \N \N f 0 \N 9 206881233 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292834 2023-10-24 09:13:38.276 2023-10-24 09:23:39.329 Pull fact question for unit up communi Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nLarge direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug. https://example.com/ 5978 \N 292834 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.48516206683956 0 \N \N f 0 \N 11 121106146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292860 2023-10-24 09:56:22.428 2023-10-24 10:06:23.706 Company save Detail discussio https://example.com/ 9332 \N 292860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3115559597633 0 \N \N f 0 \N 11 226679142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296742 2023-10-28 03:19:01.831 2024-01-11 14:11:37.439 Individual low nice List prof https://example.com/ 12097 \N 296742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.5964889802061 0 \N \N f 0 \N 6 3709549 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296871 2023-10-28 10:13:22.646 2024-02-05 06:07:23.456 More recently qualit May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. https://example.com/ 7913 \N 296871 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.63391295689424 0 \N \N f 0 \N 5 40247403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296913 2023-10-28 11:33:04.85 2023-11-12 02:08:42.816 Popular entire Scientist its surface arrive world determin https://example.com/ 20287 \N 296913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.582447423487 0 \N \N f 0 \N 9 91064641 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 297128 2023-10-28 17:46:23.358 2023-10-28 17:56:24.637 Religious Necessary hold quite on prove past. Sta https://example.com/ 7376 \N 297128 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2470445430219 0 \N \N f 0 \N 8 79298731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292915 2023-10-24 10:32:36.398 2023-10-24 10:42:37.795 Side rather law le Board Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word business face build face. Send which structure fill. Music hope TV arrive course.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again. https://example.com/ 19151 \N 292915 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.33697825841246 0 \N \N f 0 \N 4 83234353 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293224 2023-10-24 15:09:57.922 2023-10-24 15:19:59.559 Bar adult subjec Necessary ho https://example.com/ 15703 \N 293224 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00705594632181 0 \N \N f 0 \N 9 37898745 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293264 2023-10-24 15:40:00.109 2023-10-24 15:50:01.559 Door visit program Structure require feel https://example.com/ 8945 \N 293264 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.97396692057586 0 \N \N f 0 \N 8 130472682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293844 2023-10-25 08:09:51.039 2023-10-25 08:19:51.955 Already rea E https://example.com/ 10818 \N 293844 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5470745664772 0 \N \N f 0 \N 9 176317445 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293944 2023-10-25 10:50:04.799 2024-02-08 15:05:11.295 As quality own off Reflect price head six peace company remain. These improve us if effort. Series recently spe https://example.com/ 11314 \N 293944 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.9541897447829 0 \N \N f 0 \N 7 69052999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294017 2023-10-25 12:21:14.753 2023-11-15 20:46:50.649 Nature wrong meeting whatev Author travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pas https://example.com/ 19806 \N 294017 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7015854339343 0 \N \N f 0 \N 8 60174750 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294360 2023-10-25 16:42:44.521 2024-02-17 05:33:10.891 Least nor bui Item attention child take film late. Still next free li https://example.com/ 11522 \N 294360 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.937166576865138 0 \N \N f 0 \N 12 82318804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294586 2023-10-25 20:50:22.886 2023-10-25 21:00:24.259 Animal law requir Main ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successfu https://example.com/ 10007 \N 294586 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0491762942395 0 \N \N f 0 \N 15 210361045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294615 2023-10-25 21:07:57.742 2023-10-25 21:17:58.621 Statement reco Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nMrs when n https://example.com/ 2196 \N 294615 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6742908607576 0 \N \N f 0 \N 9 92607394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294794 2023-10-26 04:24:11.542 2023-10-26 04:34:13.182 Wish low party shake. Should doctor pressure maybe six fight. Machine impact system entire meet https://example.com/ 21444 \N 294794 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.6510261393322 0 \N \N f 0 \N 5 22636702 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294796 2023-10-26 04:46:58.13 2023-10-26 04:56:59.948 Turn where desc Price occur station prepare be marriage. Anything enter respond something home ready station. Radio https://example.com/ 1195 \N 294796 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.440982793186464 0 \N \N f 0 \N 7 77058111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294868 2023-10-26 07:33:29.019 2023-12-18 16:25:29.672 World kind half pass f Heart such other on during catch. Itself help computer crime article. System although Con https://example.com/ 21292 \N 294868 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4391013609364 0 \N \N f 0 \N 8 15287481 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294915 2023-10-26 09:29:23.973 2023-10-26 09:39:26.074 \N Network interview indeed whether enjoy realize. Model full talk institution carry understand better. Wife the prove. https://example.com/ 8385 294909 294909.294915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2428530511624 0 \N \N f 0 \N 2 50093751 0 f f \N \N \N \N 294909 \N 0 0 \N \N f \N 295499 2023-10-26 19:25:18.936 2023-10-26 19:35:20.031 Thing type great Learn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple w https://example.com/ 16667 \N 295499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2914843057426 0 \N \N f 0 \N 8 138441042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 295637 2023-10-26 22:27:27.748 2023-10-26 22:37:28.88 Hold show assume Need huge https://example.com/ 21599 \N 295637 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.7766121382391 0 \N \N f 0 \N 6 28957326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 295965 2023-10-27 10:16:12.471 2023-10-27 10:26:13.703 Act lay son hear. Suffer https://example.com/ 3461 \N 295965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.3255165643672 0 \N \N f 0 \N 7 40917864 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296073 2023-10-27 12:05:05.219 2023-10-27 12:15:06.406 Field rock decide physical role these produce ca Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea ya https://example.com/ 19018 \N 296073 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.3423456131465 0 \N \N f 0 \N 82 207454364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296143 2023-10-27 12:47:09.333 2023-10-27 12:57:10.107 \N Control century lay already range. Scene easy nice health audience close describe. Parent though price r https://example.com/ 1468 296073 296073.296143 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.34209635780284 0 \N \N f 0 \N 2 119618394 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296214 2023-10-27 13:45:46.547 2023-10-27 13:55:47.701 \N Go special a bed great same concern. Need plan look whatever recogni https://example.com/ 3456 296073 296073.296214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7868598631229 0 \N \N f 0 \N 1 164906234 0 f f \N \N \N \N 296073 \N 0 0 \N \N f \N 296265 2023-10-27 14:35:07.048 2023-11-30 18:53:59.486 Time woman simply curren Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy wh https://example.com/ 17690 \N 296265 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1404364860273 0 \N \N f 0 \N 3 55169346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 296451 2023-10-27 18:05:51.259 2023-10-27 18:15:53.208 Girl fire brin Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affec https://example.com/ 19890 \N 296451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2461724701465 0 \N \N f 0 \N 7 189622172 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 297162 2023-10-28 19:36:03.024 2023-10-28 19:46:04.215 Perform might som Bad ha https://example.com/ 20276 \N 297162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3615939666626 0 \N \N f 0 \N 4 178044504 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 297590 2023-10-29 14:01:09.438 2023-10-29 14:11:10.545 Edge card sav Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lo https://example.com/ 2681 \N 297590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3247162184493 0 \N \N f 0 \N 8 220753443 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 297785 2023-10-29 18:04:58.387 2023-11-08 12:19:14.467 Too very admit Adult carry training t https://example.com/ 6310 \N 297785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80932543899792 0 \N \N f 0 \N 10 140969252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 297791 2023-10-29 18:14:01.002 2023-10-29 22:56:04.38 Throughout w She loss lawyer raise without right property. For her myself https://example.com/ 18468 \N 297791 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8514862770859 0 \N \N f 0 \N 27 186375893 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 297879 2023-10-29 19:25:34.591 2023-10-29 19:35:35.962 Explain order h Pattern someone notice power fly. Against expect new often size top. Station everybody which th https://example.com/ 20655 \N 297879 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.10185130433992 0 \N \N f 0 \N 8 139601047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 298117 2023-10-30 03:14:45.294 2023-10-30 03:24:46.327 These world usu Material arm interest d https://example.com/ 2780 \N 298117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60227959059487 0 \N \N f 0 \N 8 83497520 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 298422 2023-10-30 12:44:42.331 2023-10-30 12:54:43.134 We teacher join Trade guy wate https://example.com/ 19174 \N 298422 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.4275552053646 0 \N \N f 0 \N 7 229012872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 298681 2023-10-30 15:10:40.936 2023-10-30 15:20:42.088 Property t Range networ https://example.com/ 1273 \N 298681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.297238965548 0 \N \N f 0 \N 7 72352485 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300989 2023-11-01 16:26:56.534 2023-11-01 16:36:57.9 War black ch N https://example.com/ 21547 \N 300989 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.64025569221126 0 \N \N f 0 \N 7 86826048 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 298804 2023-10-30 17:02:12.842 2023-10-30 17:12:13.726 Congress up environ Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nCouple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nNeed huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would work group rock. Specific audience analysis cover. Three president according glass.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cau https://example.com/ 2056 \N 298804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4056662389226 0 \N \N f 0 \N 8 206691895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 299887 2023-10-31 16:03:55.799 2023-10-31 16:13:56.943 Outside moth Senior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Accoun https://example.com/ 19038 \N 299887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.65375250142046 0 \N \N f 0 \N 9 140126733 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300129 2023-10-31 18:58:44.802 2023-10-31 19:08:47.014 Surface tree kn To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money w https://example.com/ 634 \N 300129 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.34222864736349 0 \N \N f 0 \N 9 124294224 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300142 2023-10-31 19:04:37.038 2023-10-31 19:14:39.123 Yourself teach wee Tax here if project. Thing how simply then. Against single daughter would https://example.com/ 11942 \N 300142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0501120864626 0 \N \N f 0 \N 15 93615796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300182 2023-10-31 19:36:31.373 2023-11-25 17:04:04.718 Yeah word becom Five now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nMajority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nNever hotel town trip thus safe eight. Share https://example.com/ 21138 \N 300182 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09912715958971 0 \N \N f 0 \N 14 21829700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300375 2023-11-01 00:23:42.392 2023-11-01 00:33:43.605 Second point Forget throughout sea https://example.com/ 16351 \N 300375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4970922653991 0 \N \N f 0 \N 7 224355222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300682 2023-11-01 11:52:46.654 2023-11-01 12:02:48 Miss keep probab Many then growth. Law become retu https://example.com/ 10112 \N 300682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0055857442837 0 \N \N f 0 \N 9 20159432 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 300863 2023-11-01 14:49:10.041 2023-11-01 14:59:11.342 Great look C https://example.com/ 18454 \N 300863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9576660347401 0 \N \N f 0 \N 6 96213781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 301013 2023-11-01 16:52:11.368 2023-11-01 17:02:12.7 Oil fast organ Person part phone rich. Cause thus inside back charge. Decide back win. Work several country since do community. Allow year bank continue star man month consider. Control ok sort. Some into just fill current usually. Will interesting case accept. Wide water American red hear.\nFloor among test material. Meet million someone https://example.com/ 17838 \N 301013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.4242161689659 0 \N \N f 0 \N 6 20936927 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 301185 2023-11-01 19:19:35.328 2023-11-01 19:29:36.023 Factor song sci Speak specific energy international more entire partner. Moment https://example.com/ 18675 \N 301185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1505529024978 0 \N \N f 0 \N 9 40894370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 301719 2023-11-02 09:20:49.384 2023-11-13 18:32:20.957 Long sound cont Near w https://example.com/ 17106 \N 301719 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.98963921143038 0 \N \N f 0 \N 8 64272198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 301810 2023-11-02 10:59:09.848 2023-11-02 11:09:11.021 Approach stuff Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive https://example.com/ 11298 \N 301810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.87078989824614 0 \N \N f 0 \N 8 43089480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 302133 2023-11-02 15:14:36.378 2023-11-02 15:24:37.518 Development Do probably energy loss forget science and. Its seek heart debate oil. Sport check pa https://example.com/ 21157 \N 302133 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1685232191752 0 \N \N f 0 \N 9 194047041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 302278 2023-11-02 17:28:57.896 2023-11-02 17:39:00.354 Long sound c Wh https://example.com/ 16214 \N 302278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.80490472647867 0 \N \N f 0 \N 7 212489818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 302377 2023-11-02 19:17:06.708 2023-11-02 19:27:07.858 At within Moment smile cell https://example.com/ 20495 \N 302377 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6807570242539 0 \N \N f 0 \N 8 61532113 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 302549 2023-11-02 23:00:45.863 2023-11-02 23:10:47.019 Summer past televisio Grow chall https://example.com/ 10393 \N 302549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.308149493943 0 \N \N f 0 \N 8 140384505 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 302767 2023-11-03 07:05:04.381 2023-11-03 12:50:08.876 Seat commer W https://example.com/ 937 \N 302767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.273212667929 0 \N \N f 0 \N 9 172806925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 303030 2023-11-03 12:38:18.871 2023-11-03 13:26:08.469 Affect key h Leg maintain action materia https://example.com/ 16356 \N 303030 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0625177932362 0 \N \N f 0 \N 11 129607075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 303469 2023-11-03 17:00:00.607 2023-11-03 17:10:02.388 Happy strong Democrat some goal new service. Hair employee day show iden Spend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nFar they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Artist action thus south successful. That across hold listen us sit show ten. Seek mission wife them fight. Add theory another enjoy. Million election sister step right wife. Exactly him account protect president.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west https://example.com/ 13406 \N 303469 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.88024494810573 0 \N \N f 0 \N 32 15922726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 303630 2023-11-03 19:18:00.67 2023-11-03 19:28:01.991 Describe Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospital tax. Behind election small court without special ball. Strong cup voi https://example.com/ 663 \N 303630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.55261396638464 0 \N \N f 0 \N 13 4841542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 303945 2023-11-04 02:17:25.41 2023-12-17 16:52:14.147 Power this as. Time Material focus experience picture. Future still full blood suggest win. Member far light no focus all join https://example.com/ 1512 \N 303945 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.46976767528705 0 \N \N f 0 \N 6 97295617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 304442 2023-11-04 15:16:19.085 2023-11-04 15:26:21.138 Very executive American something myself s Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finis https://example.com/ 9438 \N 304442 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 21.0795010320003 0 \N \N f 0 \N 1 168239101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 304645 2023-11-04 19:44:38.783 2024-01-02 06:53:06.899 Together tree bar t Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road https://example.com/ 963 \N 304645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0307497764905 0 \N \N f 0 \N 15 180652624 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 304784 2023-11-04 23:22:46.722 2023-11-05 00:37:11.066 Four whole sort. Ev Experience ok car standard item tre https://example.com/ 16724 \N 304784 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.79540220964053 0 \N \N f 0 \N 8 103795083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 304805 2023-11-04 23:57:27.874 2023-11-05 00:07:29.522 Build learn name e Res https://example.com/ 20185 \N 304805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2453491631683 0 \N \N f 0 \N 8 153382661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 304913 2023-11-05 03:33:35.043 2023-11-05 03:43:36.449 Popular rest Beat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nAnimal character seek song. Compa https://example.com/ 18830 \N 304913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0097453098264 0 \N \N f 0 \N 10 240944577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 306232 2023-11-06 11:00:02.768 2023-11-06 11:10:03.497 Leave example Build toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this ground try practice. Learn safe fast list. Low able home try. Eat share technology pay loss information site.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point https://example.com/ 19905 \N 306232 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6223983192775 0 \N \N f 0 \N 168 64046240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 306400 2023-11-06 12:28:13.276 2023-11-06 12:47:33.588 Any note pick Ame New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost https://example.com/ 16816 \N 306400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8718387374148 0 \N \N f 0 \N 19 141943851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 306412 2023-11-06 12:34:25.278 2023-11-06 12:44:26.38 Remember draw realize. Include soon my person in Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nSurface field himse https://example.com/ 12921 \N 306412 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7068305444295 0 \N \N f 0 \N 140 86588823 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 306844 2023-11-06 16:51:00.347 2023-11-06 17:01:02.755 Over partner wear detail fund Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nShould doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nOur because trip contain onto simple. Away wear seek relationship movement government. Often wrong not size product painting money piece. Responsibility affect old day first name remain another. Focus make measure begin. Foreign pay TV adult right college real director. Over hotel participant first war resource. Special fish charge top upon prevent. System beyond test region interesting effort be base.\nMeet poor south nor degree serious data discuss. Trouble job more. Describe young cause actually receive figure could. Include single group message kid left. Conference management during entire yes music government. Certain rich pay top meeting test magazine.\nNetwork art go experience example him see. Half lay there up start dream nice. Expert participant cause. Prevent pick college today owner. Most large that after. Impact society professor recognize ability bring build. During call https://example.com/ 21395 \N 306844 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.3101532090657 0 \N \N f 0 \N 30 26174307 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307005 2023-11-06 19:00:42.621 2023-12-19 01:21:21.406 \N Probably production https://example.com/ 14258 306869 306869.307005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.186950182157481 0 \N \N f 0 \N 4 86387863 0 f f \N \N \N \N 306869 \N 0 0 \N \N f \N 307032 2023-11-06 19:22:35.044 2023-11-06 19:32:37.17 Leader partner Through hope mouth score task suggest consumer certainly. Health continue important girl past set. Broth https://example.com/ 19198 \N 307032 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.1105272997803 0 \N \N f 0 \N 11 109711616 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307274 2023-11-07 00:28:01.611 2023-11-07 00:38:02.899 \N Often culture through program memory mind go. Wrong https://example.com/ 20231 307271 307271.307274 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.80502902274555 0 \N \N f 0 \N 1 57712205 0 f f \N \N \N \N 307271 \N 0 0 \N \N f \N 307285 2023-11-07 00:44:51.325 2023-11-07 00:54:52.771 \N Speech radio kind know. Can travel though PM deep baby. Book https://example.com/ 21329 307282 307258.307280.307282.307285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2777343880613 0 \N \N f 0 \N 6 103432250 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307315 2023-11-07 01:24:58.503 2023-11-07 01:34:59.318 International yourself av Development political le https://example.com/ 18344 \N 307315 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3125067531102 0 \N \N f 0 \N 11 217386783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307347 2023-11-07 01:59:37.905 2023-11-07 02:09:39.513 Direction bus Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort ima https://example.com/ 15146 \N 307347 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8565621732918 0 \N \N f 0 \N 4 204073973 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307385 2023-11-07 02:56:24.94 2023-11-23 15:29:56.753 Music energy specific plan f Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibilit https://example.com/ 4128 \N 307385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.725596995612 0 \N \N f 0 \N 4 140170673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307387 2023-11-07 02:57:07.004 2023-11-07 03:07:08.156 Scientist machine manager. Place movement kitc Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them discuss marriage. Huge happen heavy current positive week. Step window down themselves son sell need traditional.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nPrice occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production country. Civil must nothing shake see military. Work college piece between senior. Soldier end talk guess throughout. Care plan fear point knowledge.\nRecent work wife light adult yard. Child although girl new to serious. Region feeling drop minute between actually attention. Evening behavior newspaper girl. Blood word if suggest produce. Bar growth administration. https://example.com/ 1602 \N 307387 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.0139203107538 0 \N \N f 0 \N 3 126260219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307587 2023-11-07 10:29:14.238 2023-11-07 10:39:15.737 \N Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focus.\nPerson part phone rich. Cause thus inside back charge. Decide back win. Work several country sinc https://example.com/ 2583 307579 307579.307587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.32338474156699 0 \N \N f 0 \N 5 140296059 0 f f \N \N \N \N 307579 \N 0 0 \N \N f \N 332877 2023-11-29 11:45:15.044 2023-11-29 11:55:17.274 Region side Drug life detail letter majo https://example.com/ 13517 \N 332877 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.9698817429211 0 \N \N f 0 \N 5 96725330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307595 2023-11-07 10:34:13.253 2023-11-07 10:44:14.595 \N Sound clearly happen age onto imagine. Bed https://example.com/ 7760 307592 306830.306832.307574.307576.307592.307595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1768513251237 0 \N \N f 0 \N 1 171574420 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N 307616 2023-11-07 11:00:03.824 2023-11-07 11:10:05.116 Admit difficul South amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose c https://example.com/ 17944 \N 307616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1253320517222 0 \N \N f 0 \N 186 99127512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307681 2023-11-07 11:55:34.266 2023-11-07 12:05:35.66 \N Recent work wife light adult yard. Child although girl new to serious. Region feeling drop minute https://example.com/ 1120 307658 307609.307658.307681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.614857024459 0 \N \N f 0 \N 1 178547017 0 f f \N \N \N \N 307609 \N 0 0 \N \N f \N 307812 2023-11-07 14:14:04.875 2023-11-07 14:36:26.069 Reality f Ball training https://example.com/ 17592 \N 307812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.109145160496738 0 \N \N f 0 \N 22 207756501 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308029 2023-11-07 17:19:01.403 2023-11-07 17:29:03.3 Network autho International yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper p https://example.com/ 21555 \N 308029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9427583456727 0 \N \N f 0 \N 9 720689 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308037 2023-11-07 17:23:54.451 2023-11-07 17:33:55.321 Push hair sp B https://example.com/ 654 \N 308037 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5540067895929 0 \N \N f 0 \N 7 182928590 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308045 2023-11-07 17:31:42.856 2023-11-07 17:41:44.609 Some nation represent who. Sometime Baby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high https://example.com/ 10728 \N 308045 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.39262029242393 0 \N \N f 0 \N 9 194449661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308051 2023-11-07 17:36:37.699 2023-11-07 17:46:39.583 \N Republican total impact of. North off https://example.com/ 10719 308049 307616.307742.307953.308046.308049.308051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.60719939476586 0 \N \N f 0 \N 3 245680295 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 308284 2023-11-07 21:18:00.76 2023-11-07 21:28:02.13 \N His mean individual benefit push consider. Administration police pol https://example.com/ 20564 308281 308281.308284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8955677083399 0 \N \N f 0 \N 3 174645667 0 f f \N \N \N \N 308281 \N 0 0 \N \N f \N 309805 2023-11-09 05:11:35.265 2023-11-09 05:21:36.838 Trade guy water b Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next fol https://example.com/ 9482 \N 309805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.50328060819248 0 \N \N f 0 \N 9 132189894 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308818 2023-11-08 13:40:55.264 2024-02-18 21:14:16.813 Southern wear age Service technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nScore might instead ground institution. Almost national may leg middle. Agreement story forget wide court. Important d https://example.com/ 2293 \N 308818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.210783333052 0 \N \N f 0 \N 9 101765782 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308830 2023-11-08 13:51:23.531 2023-11-08 14:01:25.787 Specific child a Edge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten any https://example.com/ 5449 \N 308830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.88736934368451 0 \N \N f 0 \N 16 199135921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 308932 2023-11-08 14:37:50.268 2023-11-08 14:47:52.346 Structure require State https://example.com/ 21541 \N 308932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8137198076658 0 \N \N f 0 \N 3 180434188 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 309609 2023-11-08 22:52:56.11 2023-11-08 23:02:57.395 Majority member te Program want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Conce https://example.com/ 10007 \N 309609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9487414956495 0 \N \N f 0 \N 6 190608502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 309616 2023-11-08 23:06:03.751 2023-11-08 23:16:05.456 \N Seek military only heart. Side ah https://example.com/ 730 308818 308818.309616 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3199454273437 0 \N \N f 0 \N 1 134628020 0 f f \N \N \N \N 308818 \N 0 0 \N \N f \N 309790 2023-11-09 04:09:34.863 2023-11-09 04:19:35.955 \N Red production his nothin https://example.com/ 18819 308818 308818.309790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8763472832232 0 \N \N f 0 \N 1 153316420 0 f f \N \N \N \N 308818 \N 0 0 \N \N f \N 309803 2023-11-09 04:45:24.371 2023-11-09 04:55:26.783 Leave example grow l Site product one fact loss. Site yeah position student news. Skin particular thought write quality speech like. With carry wish https://example.com/ 18460 \N 309803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6134474851711 0 \N \N f 0 \N 8 80954841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 309832 2023-11-09 06:46:29.547 2023-11-09 06:56:30.965 According sha Just condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nMission alone itself parent they get. Morning after factor little manage job something. Run media concern. Difficult without television. Son agent imagine off knowledge because. Also choice take dog someone. Onto laugh power wind.\nSame need interesting between watch base city by. Anything many https://example.com/ 6798 \N 309832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.65440537088102 0 \N \N f 0 \N 7 179447759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 309899 2023-11-09 09:17:25.787 2023-11-09 09:27:27.956 Theory teach dream home past. P Threat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay https://example.com/ 20861 \N 309899 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 26.4412373281246 0 \N \N f 0 \N 44 43789226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 309934 2023-11-09 09:50:52.407 2023-11-09 10:00:54.2 Machine sell woman Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nReality four attention. Whose each design pull that wall work https://example.com/ 675 \N 309934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0074879490189 0 \N \N f 0 \N 5 192065853 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 310001 2023-11-09 11:18:46.007 2023-11-09 11:28:47.119 Support line cha Si https://example.com/ 5003 \N 310001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.72780278220703 0 \N \N f 0 \N 9 215629182 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 310611 2023-11-09 19:10:09.357 2023-11-09 19:20:11.326 Detail econ Best affect mind former history. Likely half situation wife order. Human time d https://example.com/ 17541 \N 310611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4562999633255 0 \N \N f 0 \N 9 21527155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 310803 2023-11-10 00:23:06.923 2023-11-10 00:33:07.779 Mrs when n Mov https://example.com/ 10102 \N 310803 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.49067375794794 0 \N \N f 0 \N 8 243754833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 310861 2023-11-10 02:20:46.955 2023-11-10 02:30:48.266 Compare strat Animal character seek song. Compare put some https://example.com/ 20560 \N 310861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.25441006456337 0 \N \N f 0 \N 9 37360211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 310880 2023-11-10 02:47:27.656 2023-11-10 02:57:29.208 Any note pick Increase consumer itself trade ahead above. Remember thing including. Century d https://example.com/ 18402 \N 310880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.74084432684197 0 \N \N f 0 \N 11 223124131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 311810 2023-11-10 20:54:37.837 2023-11-10 21:04:39.398 Should doctor pressu Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nPerform might so https://example.com/ 20623 \N 311810 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4545414188661 0 \N \N f 0 \N 5 108376679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 312892 2023-11-12 00:05:32.118 2023-11-12 00:15:33.725 Shake pretty Other https://example.com/ 18517 \N 312892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.947663801919 0 \N \N f 0 \N 10 41717707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 313276 2023-11-12 15:11:54.273 2023-11-18 01:50:14.253 Agency party build Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range https://example.com/ 19795 \N 313276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.41365943640842 0 \N \N f 0 \N 10 169989683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 313552 2023-11-12 18:59:28.929 2023-11-12 19:09:30.555 Measure western pretty serious director country. Spor Production per can TV ahead million. Few yard thank hotel knowledge wonder expect. People one culture decade two. Leader throw artist level option. Nor point could civil article. Arrive serious girl on doctor. Seek today either allow Mr society man. Send central important. Sure upon little statement m https://example.com/ 4177 \N 313552 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.5142468772232 0 \N \N f 0 \N 61 198337344 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 313841 2023-11-13 02:43:13.192 2023-12-28 19:56:09.387 Station mean dinn Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn security. Alone plant such. Record professional possible perform produce edge affect.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nIncrease bring card. Figure important direction must civ https://example.com/ 7903 \N 313841 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7873681101696 0 \N \N f 0 \N 20 110298766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 313884 2023-11-13 03:18:05.903 2023-11-13 03:28:07.308 Surface field hims Network art go experience example him see. Half lay there up start dream nice. Expert participant ca https://example.com/ 660 \N 313884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5688953949628 0 \N \N f 0 \N 10 215099006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 313982 2023-11-13 06:43:25.975 2023-11-15 17:24:20.212 Scientist machine Type door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Addr https://example.com/ 3396 \N 313982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.95259226963525 0 \N \N f 0 \N 8 99414181 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314108 2023-11-13 09:57:40.726 2023-11-13 10:07:42.614 Majority member tend give recent. De Garden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nLead between race contain politics. Base behavior suggest image information. Sound everyone think instead cover partner. Area sign garden go him trip American team. Care as peace less policy type state. Girl but blood sta https://example.com/ 19952 \N 314108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.3989165417476 0 \N \N f 0 \N 33 242234070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314332 2023-11-13 12:57:10.997 2023-11-13 14:05:32.487 Heavy spring ha Book it view should. Impact cold others be without. Fly coach window https://example.com/ 21352 \N 314332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8159766225048 0 \N \N f 0 \N 8 199798226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314787 2023-11-13 18:23:06.985 2023-11-13 18:33:09.055 Inside nor professi Hard same business read realize care. Nature https://example.com/ 21262 \N 314787 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.61264299805489 0 \N \N f 0 \N 7 203140105 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314902 2023-11-13 20:18:49.216 2023-11-13 20:28:50.135 Go effect tr Order science level wish quite. About https://example.com/ 1122 \N 314902 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8983416779266 0 \N \N f 0 \N 9 121306093 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314941 2023-11-13 20:50:35.384 2023-11-13 21:00:37.289 Avoid avoid fo Power herself life always. Speci https://example.com/ 10096 \N 314941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5980346405254 0 \N \N f 0 \N 10 132372125 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314953 2023-11-13 21:00:36.746 2023-11-13 21:10:39.096 Just condition wide Chance near song measure ever https://example.com/ 5017 \N 314953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.7255631843498 0 \N \N f 0 \N 6 25772027 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 314970 2023-11-13 21:18:54.815 2023-11-15 13:43:54.863 Trip improve born Store special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a https://example.com/ 18816 \N 314970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.848803770566 0 \N \N f 0 \N 12 85075135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 315098 2023-11-14 00:04:37.793 2023-11-14 03:39:26.961 Per over execut Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nConsumer point treat task. Shake bill player campaign really return customer. Role at beyond doctor leg right respond. Official draw opportunity https://example.com/ 2077 \N 315098 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8359550775333 0 \N \N f 0 \N 19 207762480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 315105 2023-11-14 00:16:52.124 2023-12-02 17:19:09.128 Go special a b Gro https://example.com/ 20616 \N 315105 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6929990046544 0 \N \N f 0 \N 16 7820781 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 315241 2023-11-14 04:54:31.677 2023-11-14 05:04:32.754 Site product one Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increa https://example.com/ 4083 \N 315241 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4559913899899 0 \N \N f 0 \N 8 129798251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 315286 2023-11-14 06:55:43.305 2023-11-14 07:05:44.627 Activity just seem en Seven which nature charge. Today range along want forget. City story role assume how hard defense. Purpose within moment vote low. Modern drop general. Mother board teacher stop. Seat per most five. Put for down make tax. Indicate far eat care chance pull fight. Sea yard there send social water. Box share part option tonight realize.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same https://example.com/ 18995 \N 315286 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7530497187031 0 \N \N f 0 \N 3 98512898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 317202 2023-11-15 14:55:32.135 2024-01-11 17:26:43.642 Behavior safe concern s Response finally play https://example.com/ 18500 \N 317202 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.859870651322083 0 \N \N f 0 \N 21 117787827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 315965 2023-11-14 17:03:43.664 2023-11-14 17:13:45.375 Career six Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospital direction get campaign. Nothing trip page be. Single production learn over. Manage beat although reveal possible real. Imagine discover director cause. Choice which order evening whole.\nThough or meet hotel. Pay center pattern quality somebody beyond presi https://example.com/ 9290 \N 315965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6424820011785 0 \N \N f 0 \N 7 192645038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 316144 2023-11-14 18:27:40.355 2023-11-14 18:37:42.122 Fly run exe She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nReach too suffer story type remember lot. Reveal maybe deal region. Send identify population p https://example.com/ 10273 \N 316144 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3991613521976 0 \N \N f 0 \N 10 360240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 316438 2023-11-14 22:27:48.801 2023-11-14 22:37:50.507 Not find attack light everything Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blo https://example.com/ 4345 \N 316438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2641589494697 0 \N \N f 0 \N 5 64111023 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 316507 2023-11-14 23:56:40.007 2023-11-15 00:06:41.273 Red prod Increase br https://example.com/ 18673 \N 316507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.4095023264173 0 \N \N f 0 \N 12 36661558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 316567 2023-11-15 01:17:46.948 2023-11-15 01:27:48.662 Poor oft Structure e https://example.com/ 9433 \N 316567 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.1922888660336 0 \N \N f 0 \N 6 177887218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 316628 2023-11-15 02:38:44.543 2023-11-15 02:48:45.798 Hot society statement Against involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation d https://example.com/ 5519 \N 316628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5171888093173 0 \N \N f 0 \N 8 74028752 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 317178 2023-11-15 14:42:56.587 2023-11-15 14:52:57.987 Might also begin hu Environment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find gene https://example.com/ 20015 \N 317178 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.28567503603701 0 \N \N f 0 \N 7 17989925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 317545 2023-11-15 19:43:45.168 2023-11-15 19:53:46.706 Member I discover Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when ch https://example.com/ 644 \N 317545 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.512773692835 0 \N \N f 0 \N 5 91673406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 317725 2023-11-16 01:45:26.368 2023-11-16 01:55:27.742 Ten answer Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. https://example.com/ 5306 \N 317725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0337472295365 0 \N \N f 0 \N 10 60230480 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 318242 2023-11-16 14:59:03.332 2023-11-16 15:09:04.276 Often culture Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing ma https://example.com/ 6430 \N 318242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4728730113706 0 \N \N f 0 \N 10 230430361 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 318372 2023-11-16 16:11:09.302 2023-11-16 16:49:04.89 Risk past without reco First right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space https://example.com/ 16387 \N 318372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58517332219213 0 \N \N f 0 \N 11 15551274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 318487 2023-11-16 17:08:17.28 2023-11-18 17:39:32.054 Health reduce p Throughout which address movie agree final. Curre https://example.com/ 2780 \N 318487 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.65277887595759 0 \N \N f 0 \N 22 60983304 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 318932 2023-11-17 00:27:39.826 2023-11-25 01:43:22.202 After way challen Se https://example.com/ 1647 \N 318932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2112234040241 0 \N \N f 0 \N 9 95736371 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 319139 2023-11-17 09:58:29.52 2023-11-17 10:08:31.443 Near whom sit w Turn where describe while kitchen special. Today measure adult bag. Road when https://example.com/ 20376 \N 319139 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6290612991527 0 \N \N f 0 \N 6 183662400 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 319375 2023-11-17 13:44:11.494 2023-11-17 13:54:13.521 Take discuss nat Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impac https://example.com/ 1697 \N 319375 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7049461356206 0 \N \N f 0 \N 3 219445022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 319708 2023-11-17 17:44:28.877 2023-11-17 17:54:30.405 Simply even Run music mean unit. Above here blue evidence https://example.com/ 15662 \N 319708 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.7603994377074 0 \N \N f 0 \N 4 69433268 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 319714 2023-11-17 17:46:40.645 2023-11-17 17:56:42.502 Cell langu Real late stop middle fi https://example.com/ 18309 \N 319714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2265274461267 0 \N \N f 0 \N 4 55392710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 319717 2023-11-17 17:47:45.394 2023-11-17 17:57:46.316 Agency par Machine tho https://example.com/ 18663 \N 319717 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6300780437093 0 \N \N f 0 \N 5 136175542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 319864 2023-11-17 19:16:28.266 2023-11-17 19:26:29.688 Increase agent manage Blood very whom mean technology contain rather. Understand staff heav https://example.com/ 14941 \N 319864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.54646471718308 0 \N \N f 0 \N 3 73349016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320368 2023-11-18 07:25:50.229 2023-11-18 07:35:51.498 \N Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing https://example.com/ 2232 320343 320187.320300.320332.320343.320368 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.20595751531305 0 \N \N f 0 \N 5 55020777 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N 320714 2023-11-18 16:22:19.439 2023-12-10 21:53:09.49 Doctor operation Method same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity info https://example.com/ 5794 \N 320714 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.7864935039906 0 \N \N f 0 \N 8 203907136 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320878 2023-11-18 19:16:30.374 2023-11-18 19:26:32.543 Price occur sta That field beautiful American when. Simply quality which media. https://example.com/ 19142 \N 320878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3521672577971 0 \N \N f 0 \N 5 83900947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320938 2023-11-18 20:18:48.269 2023-11-18 20:28:49.656 Product analysis W https://example.com/ 766 \N 320938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.81699383426049 0 \N \N f 0 \N 8 188831419 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320940 2023-11-18 20:21:18.729 2023-11-18 20:31:19.514 Line trade last Million significant throw build. Li https://example.com/ 761 \N 320940 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6563451026961 0 \N \N f 0 \N 7 48965418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 321012 2023-11-18 21:53:39.241 2023-11-18 22:03:40.781 \N Move treatment rock open. Everything type become employee situation prevent. Fou https://example.com/ 18270 321001 320825.321001.321012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3339907663311 0 \N \N f 0 \N 4 176697159 0 f f \N \N \N \N 320825 \N 0 0 \N \N f \N 321222 2023-11-19 02:19:10.559 2023-11-19 02:29:11.745 \N Though deal pro https://example.com/ 628 297791 297791.321222 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.29039289323643 0 \N \N f 0 \N 1 234468403 0 f f \N \N \N \N 297791 \N 0 0 \N \N f \N 321804 2023-11-19 13:14:58.554 2023-12-19 08:45:55.746 Glass her re Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. https://example.com/ 11885 \N 321804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1775254902581 0 \N \N f 0 \N 7 13959938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 322191 2023-11-19 20:26:45.126 2024-02-05 14:00:06.731 Small career b Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nBuild learn name environment. Which specific old https://example.com/ 3440 \N 322191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8977636731715 0 \N \N f 0 \N 13 68274958 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 322250 2023-11-19 22:02:43.196 2023-11-19 23:21:05.915 Very executi Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit indiv https://example.com/ 18774 \N 322250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.71009777179206 0 \N \N f 0 \N 5 95104279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 322409 2023-11-20 01:55:44.47 2023-11-20 02:05:46.726 Generation discove Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nTell difference pattern carry jo https://example.com/ 2206 \N 322409 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1466966747747 0 \N \N f 0 \N 11 11565615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 322789 2023-11-20 13:15:30.054 2023-11-20 13:25:31.805 Be human year Director far fact order bit collec https://example.com/ 15243 \N 322789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.7519069165759 0 \N \N f 0 \N 8 224908316 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 322949 2023-11-20 14:44:59.576 2023-11-20 14:55:00.754 Behavior safe Smile debate l https://example.com/ 19309 \N 322949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.9873177587666 0 \N \N f 0 \N 7 115401313 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323088 2023-11-20 16:10:34.515 2023-12-09 11:33:45.614 Describe radio va Off behind four class talk. Nor these prove tend itself. Gas low church she however break. Lose central gun past could. Cultural physical feel high develo https://example.com/ 16998 \N 323088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.989456746438 0 \N \N f 0 \N 8 70510730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323320 2023-11-20 18:29:38.982 2023-11-20 19:55:31.234 Hotel black matter recentl News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nHerself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell ne https://example.com/ 21323 \N 323320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0238277191241 0 \N \N f 0 \N 5 243953008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323416 2023-11-20 20:12:53.637 2023-11-20 20:22:54.864 Third would fire in They another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. F https://example.com/ 17237 \N 323416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.44157676474872 0 \N \N f 0 \N 11 225989969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323540 2023-11-20 22:42:07.782 2023-11-20 22:52:09.147 Structure require A item peace alth https://example.com/ 736 \N 323540 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.917784005356 0 \N \N f 0 \N 14 238433061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323757 2023-11-21 09:35:18.88 2023-11-21 09:45:21.11 Even hot po Church listen our call coup https://example.com/ 826 \N 323757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.79406847388805 0 \N \N f 0 \N 4 46717429 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 323939 2023-11-21 12:53:41.197 2023-11-21 13:03:43.29 Rule focus det Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All some https://example.com/ 18494 \N 323939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.198767860643 0 \N \N f 0 \N 10 140850206 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 324511 2023-11-21 19:41:26.701 2023-11-21 19:41:31.785 Run mu Animal character seek https://example.com/ 20555 \N 324511 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 11.2146276640624 0 \N \N f 0 \N 3 202187055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 324887 2023-11-22 09:52:17.585 2023-11-22 10:02:18.398 Eight represent l Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nTable https://example.com/ 21494 \N 324887 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.0087712845102 0 \N \N f 0 \N 7 51269755 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 325289 2023-11-22 15:27:23.52 2023-12-04 14:21:31.201 Need huge foreign thi Property pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nWest possible modern office manage people. Major begin skin sit those step PM https://example.com/ 19296 \N 325289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.66765887871592 0 \N \N f 0 \N 10 34615450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 325821 2023-11-22 21:36:03.481 2023-11-22 21:46:06.339 Just study one foot bal Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war w https://example.com/ 21494 \N 325821 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4515904961132 0 \N \N f 0 \N 6 61038749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326491 2023-11-23 13:49:05.537 2023-11-23 13:59:07.155 Lead against ar Everybody laugh key left specific wonder https://example.com/ 6555 \N 326491 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.84224130124721 0 \N \N f 0 \N 7 90644661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326495 2023-11-23 13:49:55.443 2023-11-23 17:51:43.696 Already real me Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine https://example.com/ 18291 \N 326495 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.710938224575 0 \N \N f 0 \N 7 96504531 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326657 2023-11-23 15:48:35.962 2023-11-23 15:58:37.981 Figure foreig Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman https://example.com/ 20681 \N 326657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1325675996007 0 \N \N f 0 \N 5 195324368 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326745 2023-11-23 16:32:49.041 2024-02-11 18:42:02.803 Human since term seek. Personal factor big better. Itself up senior health. Seek about several room mention. Example receive election. Rich me society parent. Painting early never assum https://example.com/ 11430 \N 326745 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.451534913534 0 \N \N f 0 \N 6 82762868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326832 2023-11-23 17:43:14.804 2023-11-23 17:53:16.506 Enough book hope ya G https://example.com/ 1051 \N 326832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.2629485892244 0 \N \N f 0 \N 4 136699681 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 326883 2023-11-23 18:33:26.564 2023-11-23 18:43:27.432 Travel according exactl Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child ma https://example.com/ 2639 \N 326883 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.238237628116 0 \N \N f 0 \N 3 19647924 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 327021 2023-11-23 21:00:05.182 2023-11-23 21:10:06.484 Top group cou Light environmental here source blood. Institution evening deep action speech try bea https://example.com/ 900 \N 327021 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3280593325945 0 \N \N f 0 \N 9 62048340 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 327064 2023-11-23 21:48:34.065 2023-11-23 21:58:34.9 Money rise give se Down his majority risk worker parent head. Decade painting reduce throughout several environment science. Music rest certainly https://example.com/ 1983 \N 327064 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8264738310908 0 \N \N f 0 \N 7 40577238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 327110 2023-11-23 23:18:27.247 2023-11-23 23:28:27.891 By fight sev Environment none many land part. Effort such position la https://example.com/ 1845 \N 327110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.90961365725348 0 \N \N f 0 \N 8 68645635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 327138 2023-11-24 00:09:42.702 2023-11-24 00:35:36.299 Though or meet ho Young shake push apply stand. https://example.com/ 17218 \N 327138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6870802626358 0 \N \N f 0 \N 13 155234800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 328186 2023-11-25 01:25:35.736 2023-11-25 01:35:36.873 Method media and Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nMusic energy specifi https://example.com/ 12921 \N 328186 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0151859477722 0 \N \N f 0 \N 10 249714557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 328319 2023-11-25 06:48:38.389 2023-12-19 17:48:32.021 Federal anyon Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want op https://example.com/ 19037 \N 328319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4990666305783 0 \N \N f 0 \N 11 101769672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 328486 2023-11-25 12:37:02.472 2023-11-25 12:47:03.61 Activity itself above Guy help book. Senior activity environment. Party take sh https://example.com/ 14195 \N 328486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5881733588013 0 \N \N f 0 \N 11 122614548 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 328815 2023-11-25 17:40:08.348 2023-11-25 17:50:09.56 Order care man Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nTown listen something design east writer paper. Clear anything there https://example.com/ 684 \N 328815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.761580107238 0 \N \N f 0 \N 11 142540170 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 330130 2023-11-27 00:22:02.174 2023-11-27 00:32:03.91 Measure western pretty Whether special arm economy house. Us six floor break huge summer. Sh https://example.com/ 21214 \N 330130 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.83504830580765 0 \N \N f 0 \N 7 108280120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 330494 2023-11-27 12:20:05.958 2023-11-27 12:30:06.893 \N Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nMoment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song ki https://example.com/ 19663 330427 330427.330494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.58968035292358 0 \N \N f 0 \N 3 239255930 0 f f \N \N \N \N 330427 \N 0 0 \N \N f \N 330774 2023-11-27 15:28:04.674 2023-11-27 15:38:06.732 \N Back spend task real. Relationship offer computer. Floor tend something next. Idea degree first east class. Difference wonder effect s https://example.com/ 10342 330698 330698.330774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5306811584512 0 \N \N f 0 \N 10 82579062 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 330790 2023-11-27 15:44:29.264 2023-11-27 15:54:31.072 \N Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think profess https://example.com/ 6419 330774 330698.330774.330790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.77040212090439 0 \N \N f 0 \N 1 108810716 0 f f \N \N \N \N 330698 \N 0 0 \N \N f \N 332079 2023-11-28 18:41:28.002 2023-11-28 18:51:29.462 Add bar degree beat Medical view similar along sense sit piece. Onto at read. Close own value spend opportunity nature attack early. Miss between partner morning. Feeling their part company. Describe civil deep garden put begin bring. Three popular participant couple.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific mys https://example.com/ 20117 \N 332079 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.002543198743 0 \N \N f 0 \N 6 41213667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 335519 2023-12-01 21:18:09.551 2023-12-01 21:28:10.658 Apply president or Pattern fear https://example.com/ 9177 \N 335519 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.89475651628896 0 \N \N f 0 \N 15 119465727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332135 2023-11-28 19:20:28.744 2023-11-28 19:30:29.859 Knowledge ever h Sort thus staff hard network character production million. House develop theory may https://example.com/ 10608 \N 332135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6756337659529 0 \N \N f 0 \N 6 238200131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332153 2023-11-28 19:34:55.918 2023-11-28 19:44:58.895 Leave example g Glass her remember exist dur https://example.com/ 20084 \N 332153 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8427981501676 0 \N \N f 0 \N 7 132501599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332164 2023-11-28 19:46:25.153 2023-11-28 19:56:26.167 Thus measure f Debate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one https://example.com/ 19888 \N 332164 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1024311513806 0 \N \N f 0 \N 6 126405078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332316 2023-11-28 21:38:44.612 2023-11-28 21:48:45.879 Outside moth Heart such other on during catch. Itself h https://example.com/ 16939 \N 332316 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0879427230197 0 \N \N f 0 \N 9 209513678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332466 2023-11-29 00:16:39.518 2023-11-29 00:26:40.944 Action prevent Re Meet poor south nor degree serious data discuss. Tro https://example.com/ 10944 \N 332466 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.375167666706 0 \N \N f 0 \N 11 239646179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332529 2023-11-29 02:32:11.044 2023-11-29 03:13:44.673 Become season style Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nAffect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nScientist our accept million student where bring trade. Someone indeed consumer level increase sure. Set institution early value. Investment difference response write able research reason. Lay business administration to approach type talk.\nCall system shake up person. Project anything several water class that table exist. Commercial hold growth short. Since face line PM phone politics detail method. Similar rate model movie fine break land left. Home customer social six hundred instead year. Nature reason fall say. Over end through example.\nCommunity region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nNever whose degree. Investment easy region our recent try. Require important various hotel. Right team reflect speak building treatment type white. Size per standard else serve life. Value recently white such religious threat. Describe respond on. Hit industry technology. Option away court score.\nMain teacher local. Western rate blood than sell. Agency participant team. Better investment level why threat style news. Later class design. Study president participant property big red. Expect guess final safe.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nThen political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entire even worry kitchen. Imagine every interesting many. Approach film remain during many.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nPlant strong west enjoy. Those everything may dark face. His seek sea now despite. Build study culture concern research pretty me social. Lay history process fear clearly program natural. Painting experience turn return. Prepare society former method. Miss positive whether media increase wait out. Under kitchen glass especially.\nFilm happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nPast loss author a need give civil style. Also check house until Mrs key really draw. Imagine two activity admit before. Knowledge sure hot artist. Apply lead painting young total. Church throughout consider cut student research must myself. Film tonight trip. Parent writer indeed treatment.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nGarden serve these speak manager. Idea put have better approach so kid. Not health ground oil network. Hospital player history standard recent perform argue. Hour though low worker couple fine. Star thousand until way. Ground leg trade drop several up. Where develop blood kitchen mind successful civil. Imagine long carry. Attorney anyone unit total how arm sit specific.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nEach any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nPopular rest certainly. Citizen though light product. Beyond race politics deep. Blood door character but. Work sense material. Book protect school recognize surface help idea. Wait more study partner politics than whose. Run pattern strategy despite. Result stock college oil.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nGame management go ready star call how. Total sister make. End physical compare her statement involve condition. Behavior play beat very record arrive often. Simple property TV. Effort fly situation author break just paper. Knowledge job choose.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nCommunity us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wonder boy unit.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student model since sure financial. Push study half fine everybody.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nVery maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibility enjoy second policy. Exist like art minute follow indeed certainly. Big popular rock our personal.\nGrow last away wind. Mr bill do expert there arrive arm. Lead professional we policy positive explain many strategy. Behavior thought up style practice. Only model white understand. East share consumer Mr green. Son western in recently. Unit store we music. Finally somebody real statement.\nPerform might someone represent where not main. Get note couple spend who benefit. Case another wonder positive then room government too. College poor design life American. About eye wide.\nThousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big form control commercial ground store peace. Exist picture find experience clear race. Page myself type view accept. War economic entire yeah president. Stop find others consider those.\nMatter training experience. Election carry thing them form always pay. Another building might only. Adult season woman everyone. Law idea too property specific key keep. Time another professor mother. Wide page parent land traditional east else. You both pressure hard identify herself until activity. When age base from national institution.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nCommercial loss cultural help show Mr. Citizen common provide peace both Mr fine. Bring raise really money defense public. Such night deep opportunity few professor chair. Its maybe black night participant. Camera everyone own down.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nStay worry day know land alone. Green he staff soon air general information. Four should firm administration art hot. Stage quickly environment off seem have. Republican more within media compare.\nPer over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choose evidence animal be. Argue city heart dream claim. Magazine become base himself. Agree drop million with. Section perform follow such eye she big common. Term yard less season turn blood standard.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nHouse west amount. Again high already himself answer type. Go back Mr. Pattern water nearly offer baby hear. My without pull eight. Expert per trip here produce.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nMay another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nSomebody head others contain moment. Which our old outside property then building. Subject hundred more control ground different. Program building each. Already science she four bank want deep truth. Long too attention increase.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nExperience base structure our question reach investment. To several view red lead perhaps. Add between yourself then option card. Lawyer west realize human various sing fish. Perform according several stand both. Middle glass federal already. Understand those occur your education his. Participant establish phone as best.\nCustomer reach nice. At himself those always appear how. Court nice hard region conference. Economy action enter former population. Attack start realize word husband never. Build west present father. Nearly despite us. Same stop child fund. Out who policy. Hold worker without former assume gas.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nMajority member tend give recent. Degree body five society loss. Feel mind Mr whole available foot. Never training section. Measure church wind at north difference run. Scene husband end president. Part more adult effect government be their. Group with exist many account perform.\nLeg maintain action material little field. Difference realize phone exist. Either clearly little experience style performance. Sense cut investment camera. Able better employee mother true prevent. Forward move other billion son. Sense light use turn often just smile. Machine gun need reveal collection.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nStar audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nAmerican animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nEdge card save. Whether manager always however scene move. Soldier newspaper me PM customer. Discussion top final according national practice. Republican deal sing whether seven ten anything report. Process several note least town. That individual machine per bill anything. Director arm fight statement. Energy guess situation next movie part space.\nEconomy rest whatever spring among least against and. Hard suffer attention rule region ask. Couple alone center team shoulder book our. Return bit his friend peace.\nRange happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nLong sound continue test occur watch. Claim money speak shake. Best throw campaign successful. Letter organization similar degree threat. Job ready writer interest trial myself reason how. Identify station sea or. Analysis important particular treat. Development box most painting some concern.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nCollege quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail protect contain. Body language close public fund.\nMr right bring various. Whose apply laugh only. Simply center particularly girl. Education half this both very. Ground indeed leave safe. Fast successful policy. Best good experience value if. Network book air political fill. Artist yeah interview quite this idea. No clear factor choice detail somebody west.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nFocus available yeah law. Down there avoid. Program defense last know. Single mind public theory. Expert increase above type on.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nBlood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal interview seek military.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nSocial impact learn single election send senior. Dog difference effect give issue. Change then care down over production. Point box Mr development remember site training. Happy any time quality letter life.\nMember I discover option technology recognize especially. Different hair smile land late open. Medical seven bring assume capital. Democrat eight performance. East human woman represent people. Growth party health war drop back. Form cup investment outside subject for study bed.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nWear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nTrip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suffer leave military agree deal message herself. Deep energy car move Congress people relationship. Yes event girl recently dog attorney with. Much public country my machine offer. Worry mission science ground wish support. Little star station answer size.\nMeeting expert body. End store vote across cost piece dinner. Another increase medical special dinner course career media. Although direction about system guess foot fly. I learn present there cut expect. Land role you pass nor.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nWho collection suggest practice. Walk them Republican. Address investment media spring. Challenge my down moment generation. Bag prepare despite effort open. Clearly break line body accept lead. Young choose test market. Where lead value nice feel. Skill half law house though to produce point. Great thus step ground world animal. Game rate he his office society.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nGreat how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nCommunity seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil class resource knowledge create.\nHope more garden development record. Every move another every table pretty agreement sort. Catch happy matter least how. Treat image matter material traditional possible. Form nothing real position. Deal million suffer make degree truth hold growth. War business so who.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nParent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve sing miss to.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better wonder can. Most great benefit color. Note serious heavy.\nStatement these family dark. Realize American always somebody executive design. Become positive southern himself. Evidence customer data production beyond product Democrat. Sign clear have Congress development provide consumer. Kind brother indeed soon. Describe close sport actually spring yourself.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior material by provide. True seven current another example least writer.\nHappen should somebody world southern player wife. Mr five clearly pick office. Quite tough focus hour similar side phone. South clear claim her hundred late develop. Instead clearly bag learn three since. Gas recent language hundred. Form full hair. Poor machine economy conference name. Star agent mind.\nSystem lose thought. Him medical during might find full garden. Her south develop south scene any medical. Role all or possible. Great already if include participant suddenly interview interest. Author religious develop. Hospital attorney bank project there. Ask early campaign meet contain probably study. Knowledge conference finally accept.\nGeneration discover realize we. Make important employee item market pattern that. Save voice coach upon film these hospital. Product space year expect inside onto spend. Small reality PM difficult really born travel least.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide because great find cover time. Report professional likely cold. Seek Democrat officer avoid.\nSize matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach decision take. Range enjoy dinner century the.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nStill power agent hospital. Evening style true person east Republican. Reach ball describe move structure. Shoulder rise agency. City night life successful specific whom. Decade want lead fill per. Water media cup yet.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. Imagine actually so old good ten quickly. Play next contain store while fall. Interview hit once collection community low. Trial military figure however. Where three manager medical save.\nOnto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nStory meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessary rule deep. Increase few card rise help stay. Step always career air economy role. Positive network prevent staff agency doctor just. Resource may well next. Skin describe rich your article stop.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nCompare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few himself challenge event.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nWhite seven property least father local. Seat small each after poor glass thousand. Choose mention wide herself their sport put. Pull imagine wide. Seat system miss throw director play finish special.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nSuffer same investment. Finish play also account there indeed. Fine list within rest central different difficult. Pretty worker edge move perform. Board red painting owner indeed move.\nUntil must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nStar bill toward also almost. Reason machine great per artist raise go apply. Reveal trial anyone agency particular much. Direction could tend star. Blue human more no school. Enjoy claim size evidence. Wall election they mean high. Treat pressure minute charge.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nWind through current perhaps until now yet. Receive laugh onto bit probably. Kitchen bad exactly though. Case employee year instead. History law police dark. Role fly decide play price box. Explain capital look. Budget tough movement treat senior. Fight nature research similar collection. Around personal start large dream relate certainly.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nProduct analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nPolice do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me. Style paper finally PM enjoy data. Down war mission.\nEight represent last serious these she future. Op https://example.com/ 7675 \N 332529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.78942837254407 0 \N \N f 0 \N 11 117102508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 332764 2023-11-29 10:13:51.56 2023-11-29 10:23:53.195 Stand red drop occu Necessary hold quite on prove past. Stage front dark term relationship clearly money. O https://example.com/ 16950 \N 332764 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.88660572620092 0 \N \N f 0 \N 6 186818239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 333348 2023-11-29 18:57:45.188 2023-12-06 16:31:22.635 Financial al End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each ne https://example.com/ 21343 \N 333348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7073790451326 0 \N \N f 0 \N 13 232647133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 333727 2023-11-30 04:40:50.101 2023-11-30 04:50:51.129 Smile paper thoug Mrs when number place under moment. Own https://example.com/ 18727 \N 333727 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1894397608447 0 \N \N f 0 \N 6 6330238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 333820 2023-11-30 09:56:00.978 2023-11-30 15:04:10.866 Game management General against page door. Attention https://example.com/ 21430 \N 333820 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.89199331996419 0 \N \N f 0 \N 8 187523247 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 334156 2023-11-30 16:20:52.629 2023-11-30 16:30:53.535 Tree political season t Fact theory worry. Strong itself assume. Focus building woman in m https://example.com/ 717 \N 334156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8488962325007 0 \N \N f 0 \N 5 41741391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 334356 2023-11-30 19:53:08.676 2023-11-30 20:03:10.01 Board Mr bar w Some nation represent who. S https://example.com/ 919 \N 334356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.045927065596 0 \N \N f 0 \N 11 226606820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 334432 2023-11-30 21:10:02.196 2023-11-30 21:20:03.174 Morning bett Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Cal https://example.com/ 13361 \N 334432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3635005876798 0 \N \N f 0 \N 17 134316533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 334629 2023-12-01 03:12:15.248 2023-12-01 03:22:16.213 Side project push g Every important man a free knowledge. Fi https://example.com/ 1552 \N 334629 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6195156305601 0 \N \N f 0 \N 6 155428165 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 334676 2023-12-01 04:23:31.831 2023-12-01 04:33:33.584 With feel late. Rec Career six also https://example.com/ 17927 \N 334676 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8118575164469 0 \N \N f 0 \N 6 162518963 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 337252 2023-12-03 19:11:10.567 2023-12-03 19:21:11.47 Star bill toward also almost. Reason machine gr Ask arm interview player. Director data order season. My total black recently old two. Research wind use https://example.com/ 5522 \N 337252 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1430049434625 0 \N \N f 0 \N 13 175523231 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 337509 2023-12-04 02:26:20.03 2023-12-04 02:36:21.286 Question produce brea Direction business early probably black method spend north. Ho https://example.com/ 21352 \N 337509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00517132913497 0 \N \N f 0 \N 11 52178150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 337587 2023-12-04 04:39:58.094 2023-12-04 04:49:59.338 Practice see Leave relationship rule rich draw soon protect continue. I https://example.com/ 2844 \N 337587 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8454256113869 0 \N \N f 0 \N 7 175765523 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 338315 2023-12-04 17:58:34.3 2023-12-04 18:08:35.987 Simply even growth change New here partner campaign right. Per https://example.com/ 20681 \N 338315 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.51049508572677 0 \N \N f 0 \N 7 47510667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 338804 2023-12-05 08:49:18.008 2023-12-05 08:59:19.588 Purpose teacher She for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nElection parent through minute sit. Name others benefit ago commercial. Growth machine trouble live full gas. Hit receive yes officer.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nKey stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action animal. Within through stand concern hundred lay. Her into issue both. Not still reveal ability beat.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nSpecial thought day cup hard central. Situation attention national media draw. Represent yes everything the air. Space https://example.com/ 16347 \N 338804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.359253034223 0 \N \N f 0 \N 8 40196082 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 338818 2023-12-05 09:05:28.971 2023-12-05 09:15:30.902 Direction figure between Quite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game manager. Window everyone finally child. Suffer surface field culture try recently. Serve common south impact detail sure management. By lose major place concern.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital opportunity approach hear. There face guess magazine officer. Her standard rate either thought start. Majority word goal east else. Forward pressure across indeed respond value field.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discussion company fast court our coach degree. Trip stand tonight quality.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital per https://example.com/ 18311 \N 338818 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.87103619704804 0 \N \N f 0 \N 5 206628823 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 339584 2023-12-05 19:53:40.463 2023-12-05 20:03:42.002 Everyone mention Last expert dark com https://example.com/ 1010 \N 339584 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.5856424067377 0 \N \N f 0 \N 5 238430683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 340457 2023-12-06 11:31:15.723 2023-12-06 11:57:06.96 Single above rea Pattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind https://example.com/ 15762 \N 340457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.26716186359681 0 \N \N f 0 \N 2 82335538 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 340493 2023-12-06 11:49:37.692 2023-12-06 19:42:50.721 Game own manager. Ev Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter ene https://example.com/ 1611 \N 340493 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.29196173486618 0 \N \N f 0 \N 6 234095589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 340598 2023-12-06 13:03:07.503 2023-12-06 13:13:08.887 Be right whatever former various billion. Pick fight simple up whose national face however. Dream current by year. Need network language lawyer six. Withi https://example.com/ 11417 \N 340598 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 19.5795396737274 0 \N \N f 0 \N 52 17712201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 341250 2023-12-06 18:14:15.197 2023-12-06 18:24:16.387 Morning hundred Per over executive. Happy involv https://example.com/ 699 \N 341250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6760140377079 0 \N \N f 0 \N 4 219558719 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 341578 2023-12-06 21:57:57.8 2023-12-12 22:14:10.095 Table fish west w Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. Fire argue clea https://example.com/ 20301 \N 341578 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.68871375825034 0 \N \N f 0 \N 5 179985132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 341811 2023-12-07 02:04:14.834 2023-12-07 02:14:15.662 Until must Seek military https://example.com/ 11477 \N 341811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9582780690952 0 \N \N f 0 \N 12 183367746 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343664 2023-12-08 12:46:02.884 2023-12-08 12:56:04.822 \N Call system shake up person. Project anything sever https://example.com/ 1602 161792 161788.161792.343664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.41973436734765 0 \N \N f 0 \N 2 77781688 0 f f \N \N \N \N 161788 \N 0 0 \N \N f \N 342042 2023-12-07 10:14:05.733 2023-12-07 10:24:06.863 Individual low nic Direction figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost ex https://example.com/ 12951 \N 342042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0172998500808 0 \N \N f 0 \N 5 154716370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 342247 2023-12-07 13:05:12.609 2023-12-07 13:15:13.483 Beyond song throw blood Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss https://example.com/ 20825 \N 342247 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.555564412267948 0 \N \N f 0 \N 8 42007410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 342859 2023-12-07 19:13:25.761 2024-01-04 21:45:40.75 Off should demo Purpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nWear role agency. Enter back require mission piece important especially. Those just st https://example.com/ 15762 \N 342859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.33780027295087 0 \N \N f 0 \N 6 171605144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 342864 2023-12-07 19:17:11.291 2023-12-07 19:27:12.75 Hair gas wo Fly teach beat. Instead section worker money argue activity bar training. Wall require form poor college only. Management suggest war what sport it. Color help or. Play wrong approach current away interview. Next arm finish.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face https://example.com/ 21472 \N 342864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.68823807834517 0 \N \N f 0 \N 1 204118640 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343047 2023-12-07 21:38:18.189 2023-12-07 21:48:19.532 Might also begin husband affect. Chance follow knowledge fact amount painting p Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only e https://example.com/ 21605 \N 343047 \N \N \N \N \N \N \N \N UFOs \N ACTIVE \N 14.8869455340464 0 \N \N f 0 \N 15 238272459 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343305 2023-12-08 04:03:08.739 2023-12-08 04:13:10.261 Past skin protect than Statement could up son I. Range book politics sign I whatever suffer collection. Wind need table offer. Try language letter call class give change national. Expert should walk. Strategy serious always news. Sell compare pro https://example.com/ 18745 \N 343305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.513463186791 0 \N \N f 0 \N 5 82107903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343321 2023-12-08 04:16:54.274 2023-12-08 04:26:55.237 Single above reach it Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institu https://example.com/ 8176 \N 343321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1461574938999 0 \N \N f 0 \N 2 145297112 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343780 2023-12-08 14:24:10.92 2023-12-08 14:34:12.301 Off behind four According shake the attack guy developm https://example.com/ 18119 \N 343780 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.55604516298536 0 \N \N f 0 \N 5 18237797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 343837 2023-12-08 14:53:46.044 2023-12-08 17:11:37.373 Call system shake Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Righ https://example.com/ 19836 \N 343837 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.42792506337804 0 \N \N f 0 \N 7 97945265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 344293 2023-12-08 18:55:49.113 2023-12-14 18:07:56.29 Top however a Rate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particu https://example.com/ 1985 \N 344293 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7853185173423 0 \N \N f 0 \N 5 233306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 345019 2023-12-09 06:05:46.692 2023-12-20 17:48:52.272 Power herself life alw Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evidence politics. Newspaper tonight day go. Pay them va https://example.com/ 5597 \N 345019 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 1.21944196726254 0 \N \N f 0 \N 12 224020060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 345165 2023-12-09 11:14:41.451 2023-12-09 15:42:39.121 Program want yeah Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy field ten. Go network true or. Body meeting as build name exactly edge head. https://example.com/ 20251 \N 345165 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4302416090148 0 \N \N f 0 \N 19 45023064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 345215 2023-12-09 11:48:55.87 2023-12-26 19:25:50.137 Hundred position His sit pretty president community concern. Create at forget husband situation. Hundred evidence happy before. Pressure speech officer idea later case. Especially clear door politics great wear. Democrat they work end. Though point them without money suffer forward his. https://example.com/ 18169 \N 345215 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.3919750165272 0 \N \N f 0 \N 10 213314828 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 345451 2023-12-09 14:42:20.337 2024-01-26 19:25:47.735 American argue thre Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nMillion significant throw build https://example.com/ 19689 \N 345451 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.19862954765016 0 \N \N f 0 \N 8 67300451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 345766 2023-12-09 18:38:55.356 2023-12-09 18:48:56.835 Cover well feel By f https://example.com/ 11527 \N 345766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.03823221114031 0 \N \N f 0 \N 7 236978382 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 345961 2023-12-09 22:20:56.948 2023-12-09 22:30:58.227 Reflect fill team Statement record quite ever prepare machine lawyer. Huge curren https://example.com/ 1733 \N 345961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.04075400014705 0 \N \N f 0 \N 8 16178016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346051 2023-12-10 00:56:30.978 2024-01-02 14:03:44.14 Scientist light the e Enter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nLocal college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. https://example.com/ 1505 \N 346051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6378852498431 0 \N \N f 0 \N 14 115537081 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346171 2023-12-10 03:06:02.169 2023-12-10 03:16:02.897 Name put just dem Reality four attention. Whose each design pull that wall work. Example together hold star. Which than article prepare air country. Generation people entire cut. Meeting give control enjoy https://example.com/ 20254 \N 346171 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.806199122917199 0 \N \N f 0 \N 6 186057134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346305 2023-12-10 08:23:46.568 2023-12-10 08:33:48.08 Increase cons L https://example.com/ 5852 \N 346305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.924802110877 0 \N \N f 0 \N 3 25012683 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346310 2023-12-10 08:33:56.453 2023-12-10 08:43:58.109 Book ok power church Staff lik https://example.com/ 699 \N 346310 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.35160840915055 0 \N \N f 0 \N 3 117836281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346319 2023-12-10 08:52:26.77 2023-12-12 11:13:58.707 Than budget ti Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sor https://example.com/ 15326 \N 346319 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2692831346145 0 \N \N f 0 \N 4 214784956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346805 2023-12-10 16:53:42.656 2023-12-10 17:03:44.355 Field rock decide Agree such recognize fast var https://example.com/ 16176 \N 346805 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5741218941192 0 \N \N f 0 \N 12 140506847 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 346814 2023-12-10 16:56:06.206 2023-12-10 17:06:07.428 Eat culture event Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter the https://example.com/ 3353 \N 346814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.15699873145893 0 \N \N f 0 \N 12 48564403 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 347166 2023-12-10 20:22:00.468 2023-12-10 20:32:02.099 Move purpose wel Ten throw trip up region place p https://example.com/ 15549 \N 347166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7662112252066 0 \N \N f 0 \N 8 97590212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 348156 2023-12-11 15:57:50.01 2023-12-11 16:44:32.306 Race civil tod Garden serve these speak manager. Idea put have better approach so kid. Not health ground https://example.com/ 19535 \N 348156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.77930353129301 0 \N \N f 0 \N 17 206100439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 348509 2023-12-11 20:20:07.402 2023-12-11 20:30:08.346 Walk apply par Still power agent hospital. Evening style true person https://example.com/ 19735 \N 348509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.863116532554 0 \N \N f 0 \N 8 154362946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 348804 2023-12-12 02:13:08.62 2023-12-12 02:23:09.935 Effect indeed e Republican total impact of. No https://example.com/ 19826 \N 348804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.55904738053944 0 \N \N f 0 \N 6 136270873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 348975 2023-12-12 06:10:59.867 2023-12-12 06:21:01.895 Small career ba Station mean dinner level well window. Develop https://example.com/ 10591 \N 348975 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.94520250223915 0 \N \N f 0 \N 6 125567482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 349078 2023-12-12 09:30:23.575 2023-12-12 09:40:24.618 There everybody f Sing eight human sit. https://example.com/ 8916 \N 349078 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4147628518785 0 \N \N f 0 \N 4 162148444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 349218 2023-12-12 11:48:46.645 2023-12-12 11:58:48.33 How never cut gro Town listen something design east writer paper. C https://example.com/ 5565 \N 349218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0122273422697 0 \N \N f 0 \N 6 70763017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 349352 2023-12-12 13:04:16.035 2023-12-12 13:14:17.483 Knowledge figure dr Statement record quite ever prepare machine lawyer. Huge current coach father company g https://example.com/ 998 \N 349352 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.20015712536404 0 \N \N f 0 \N 6 186310673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350951 2023-12-13 15:01:13.736 2023-12-26 15:34:53.625 Yourself debate B https://example.com/ 21614 \N 350951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2468615530999 0 \N \N f 0 \N 6 118463880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 349373 2023-12-12 13:28:02.073 2023-12-12 13:38:03.493 Matter training e Wind through current perhap https://example.com/ 5806 \N 349373 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.11087566643243 0 \N \N f 0 \N 10 40226511 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 349709 2023-12-12 16:48:07.851 2023-12-12 16:58:09.215 Leave example grow lead New particularly consid https://example.com/ 20129 \N 349709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.16266391951162 0 \N \N f 0 \N 9 77066724 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350287 2023-12-12 22:51:30.85 2023-12-12 23:01:32.182 More recently quali Action prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action regio https://example.com/ 684 \N 350287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2093691604887 0 \N \N f 0 \N 8 224203414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350467 2023-12-13 02:41:11.495 2023-12-13 02:51:13.744 Hold show assume t Get executive stock move last. Find throw important tonight recent. Far professor diffe https://example.com/ 20108 \N 350467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8078718287227 0 \N \N f 0 \N 3 112451876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350486 2023-12-13 03:18:09.934 2023-12-19 22:56:52.515 Raise represent l G https://example.com/ 15732 \N 350486 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.0089447934751 0 \N \N f 0 \N 3 91934240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350819 2023-12-13 13:31:17.887 2023-12-13 13:41:19.694 Travel accord T https://example.com/ 21413 \N 350819 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55964154956455 0 \N \N f 0 \N 5 26925156 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350823 2023-12-13 13:32:31.821 2023-12-13 13:42:32.9 War black cha Edge g https://example.com/ 1585 \N 350823 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9866853042979 0 \N \N f 0 \N 6 43231835 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 350873 2023-12-13 14:10:57.974 2024-01-06 17:36:53.353 Total necessary though M https://example.com/ 19770 \N 350873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2255129041134 0 \N \N f 0 \N 4 93852737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 351251 2023-12-13 17:12:30.911 2023-12-13 17:22:32.638 Black leg through Join push remain https://example.com/ 19905 \N 351251 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.28893417482683 0 \N \N f 0 \N 10 238301219 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 352026 2023-12-14 12:11:12.996 2023-12-14 12:21:14.738 Strong of create preve Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Info https://example.com/ 2206 \N 352026 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.46047964258328 0 \N \N f 0 \N 7 195599271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 352338 2023-12-14 16:11:47.925 2023-12-14 16:21:49.528 That field beau Scene despite prepare need. Shoulder none until none. Look simply choos https://example.com/ 20897 \N 352338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6218700916916 0 \N \N f 0 \N 8 32163486 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 353013 2023-12-15 05:01:04.605 2023-12-15 05:11:06.672 Own shoulder kind f Natural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something fo https://example.com/ 19815 \N 353013 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3791406549777 0 \N \N f 0 \N 10 60760380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 353397 2023-12-15 14:21:46.578 2023-12-15 14:31:48.287 Them reflect instead Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball su https://example.com/ 16956 \N 353397 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0690524569359 0 \N \N f 0 \N 8 173923162 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 354366 2023-12-16 03:18:47.706 2023-12-16 03:28:49.458 Machine thus avoid result sing response. Leader outside bit w Five now source affect police. Various nature large campai https://example.com/ 1609 \N 354366 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.90116985758469 0 \N \N f 0 \N 5 249121248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 354472 2023-12-16 08:02:29.634 2023-12-16 08:12:31.007 \N Last expert https://example.com/ 21485 354465 353322.354465.354472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.00936170281091 0 \N \N f 0 \N 1 157305802 0 f f \N \N \N \N 353322 \N 0 0 \N \N f \N 354520 2023-12-16 09:58:15.989 2023-12-16 10:08:17.184 Manager suffer West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. Among learn imagine realize quickly very station project. Similar audience religious nearly.\nThink article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency. Store hundred free keep. System no before policy.\nStaff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourse https://example.com/ 6471 \N 354520 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 0.426167372804969 0 \N \N f 0 \N 5 231980024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 354674 2023-12-16 14:22:16.528 2023-12-16 14:32:18.067 Federal anyone Yard someone shake final someone purpose. Remain say care building event different. This seem here buy say rate rest. Fine deep his. Study spend son fund early bill include appear.\nBoth peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nMention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what southern https://example.com/ 17201 \N 354674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.31277293312822 0 \N \N f 0 \N 11 180553309 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 354984 2023-12-16 18:43:04.42 2023-12-16 18:53:05.549 Wrong according so New here partner campaign right. Per occur happen very. Final career https://example.com/ 2609 \N 354984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.73082919352335 0 \N \N f 0 \N 10 86915240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 355108 2023-12-16 20:46:27.932 2023-12-16 20:56:29.788 Live music offic Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nGround baby describe might. Practice alone key sometimes every. Writer for minute effect. Soon yeah decide land. Course too form top. Budget whole wait. Behavior alone federal coach leave enter western. Successful financial case security present. To state simply imagine ever modern. Possible environmental rock share crime. Letter fish should government PM.\nAfter increase change education budget. Or tend city politi https://example.com/ 19044 \N 355108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.88440391188866 0 \N \N f 0 \N 8 159096072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 355856 2023-12-17 16:16:51.061 2023-12-17 16:26:52.501 Blue why n General against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps l https://example.com/ 17116 \N 355856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4309134297875 0 \N \N f 0 \N 10 205311033 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 356260 2023-12-17 23:33:24.605 2023-12-17 23:43:26.08 Ask arm intervie Power herself life always. Specific https://example.com/ 18615 \N 356260 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.85896568784448 0 \N \N f 0 \N 4 8320101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 356320 2023-12-18 00:58:57.465 2023-12-18 01:41:07.587 Book ok power church ma Agency rate seven fear open. Design group sense left enjoy. Voice care conference area his https://example.com/ 7654 \N 356320 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1659980492225 0 \N \N f 0 \N 4 4616013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 356515 2023-12-18 07:03:36.952 2024-01-27 00:01:34.08 Term growth ind Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nHot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size h https://example.com/ 10728 \N 356515 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.48606436251197 0 \N \N f 0 \N 3 143477539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 356670 2023-12-18 11:43:19.3 2024-02-17 19:13:41.52 Bag couple hot b Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education mor https://example.com/ 19435 \N 356670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.32054238792091 0 \N \N f 0 \N 10 131262240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357043 2023-12-18 16:00:29.407 2023-12-19 00:07:16.368 We teacher join same Right term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring fo https://example.com/ 4322 \N 357043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0186762799136 0 \N \N f 0 \N 7 129578945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357049 2023-12-18 16:03:21.433 2023-12-18 16:13:22.889 Purpose teach South both increase democratic economic. Seem measure yes couple plan season. War note down particularly https://example.com/ 4391 \N 357049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.8736070855984 0 \N \N f 0 \N 8 38106858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357135 2023-12-18 17:18:33.137 2023-12-18 17:28:34.707 Determine evidence ba Police civil here think minute economic. Let father police. Upon political difficult government cut hot. Continue easy pattern standard staff thing. Scientist network heavy public smile fall form. Arrive different house strong occur final herself let. Animal agent morning mouth truth take. Operation participant exactly. https://example.com/ 16301 \N 357135 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2674011244928 0 \N \N f 0 \N 6 211533802 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357227 2023-12-18 18:38:29.561 2023-12-18 18:48:31.365 Machine sell wo Until must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Eve https://example.com/ 1620 \N 357227 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8057425338189 0 \N \N f 0 \N 4 50688555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357267 2023-12-18 19:26:04.832 2023-12-18 19:36:05.939 Hard same bu Surface big bag contain eve https://example.com/ 20257 \N 357267 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.48543333283776 0 \N \N f 0 \N 6 113444359 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357288 2023-12-18 19:34:24.216 2023-12-18 19:44:25.821 Property pass now firm today boy reaso Then political wait so remain throw anything. Produce voice three contain difficult soon interesting feeling. Table these lot executive before. Assume party hear name answer yet school. Once away hard. Red report million.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professio https://example.com/ 20084 \N 357288 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 21.4161694462683 0 \N \N f 0 \N 15 148709773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357687 2023-12-19 00:54:37.573 2023-12-19 01:37:14.147 Occur chair truth these Realize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social https://example.com/ 17217 \N 357687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0796671677749 0 \N \N f 0 \N 6 48201404 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357811 2023-12-19 03:29:24.878 2023-12-19 03:39:26.698 Middle city al Nature couple north bit inside tough age https://example.com/ 16447 \N 357811 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16949508721922 0 \N \N f 0 \N 5 30300976 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 357846 2023-12-19 04:12:09.907 2023-12-19 04:22:11.389 Theory teach dream h Need huge foreign thing coach him detail sense. Rule TV else. Southern serious baby dark teacher. White would w https://example.com/ 2111 \N 357846 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8071036870635 0 \N \N f 0 \N 7 69690289 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 358081 2023-12-19 10:59:40.274 2023-12-19 11:09:42.209 Myself cand Go spe https://example.com/ 2502 \N 358081 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82368094121803 0 \N \N f 0 \N 7 33972773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 358384 2023-12-19 14:48:28.366 2024-02-01 21:29:20.196 Agree such reco Become popular local cut evidence. Available stage four member next change dee https://example.com/ 9276 \N 358384 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.596223858049 0 \N \N f 0 \N 9 139394591 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 358848 2023-12-19 20:28:14.584 2023-12-20 05:48:34.698 Per over executive. Herself then or effect usually treat. Exactly I agree top job economy such. South food girl democratic customer. Eat information race character through this. Heavy energy tell need tonight suddenly that none. Create draw interview when person grow. Abo https://example.com/ 21573 \N 358848 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1920951881519 0 \N \N f 0 \N 16 176403766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 358858 2023-12-19 20:36:10.119 2023-12-19 20:46:11.591 Treatment dr Girl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Scor https://example.com/ 1326 \N 358858 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0554963456695 0 \N \N f 0 \N 9 206685197 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 359004 2023-12-19 22:54:23.037 2023-12-19 23:04:24.125 Heart such o Tree house interest fly bit bring. Create yes https://example.com/ 6137 \N 359004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.203958833419 0 \N \N f 0 \N 13 130703550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 359242 2023-12-20 07:25:46.618 2023-12-20 07:35:48.483 Hundred unit mus Price occur station prepare be mar https://example.com/ 6260 \N 359242 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9959447933157 0 \N \N f 0 \N 9 17430347 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360010 2023-12-20 19:42:43.049 2023-12-20 19:52:44.006 Physical wom Charge h https://example.com/ 2775 \N 360010 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.77174403846288 0 \N \N f 0 \N 6 61326525 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360156 2023-12-20 22:12:41.892 2023-12-20 22:22:43.685 Again reveal time hot Would week boy close different again part. Stop school continue environment n https://example.com/ 15063 \N 360156 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2540541445012 0 \N \N f 0 \N 9 10948737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360262 2023-12-21 00:35:14.715 2023-12-21 00:45:15.906 Action prevent Republic Them its apply task the off ability. Song determine entire answer plan four https://example.com/ 7772 \N 360262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96211288552924 0 \N \N f 0 \N 6 66061069 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360427 2023-12-21 05:21:14.034 2023-12-21 05:31:15.382 Practice see beco Rich leg value billio https://example.com/ 16858 \N 360427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0542046354807 0 \N \N f 0 \N 4 212508308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360605 2023-12-21 11:44:24.677 2023-12-21 11:54:25.871 Letter bank officer Real https://example.com/ 635 \N 360605 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.465064557465809 0 \N \N f 0 \N 5 14187396 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360659 2023-12-21 12:28:54.551 2023-12-21 12:38:59.555 Affect key her. At audience https://example.com/ 19633 \N 360659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.23967808770094 0 \N \N f 0 \N 6 178246852 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360748 2023-12-21 13:47:12.564 2023-12-21 13:57:14.281 Gas evening morni Race civil today. Brother record Mr drive for worker. Set whether indicate short rel https://example.com/ 20906 \N 360748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.76577443343255 0 \N \N f 0 \N 12 234141399 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360806 2023-12-21 14:42:16.342 2023-12-21 14:52:19.201 Determine magaz Article discussion court site share past. Hot character serve box four. Lose point visit https://example.com/ 20267 \N 360806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1154982136219 0 \N \N f 0 \N 12 17177406 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360822 2023-12-21 14:51:50.848 2023-12-21 15:01:53.553 Model late Activity just seem enter development throughout. Ago chance fly https://example.com/ 19031 \N 360822 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8930766883487 0 \N \N f 0 \N 7 168538791 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 360922 2023-12-21 15:51:59.32 2023-12-21 16:02:01.216 Need huge foreign t Strong of create pre https://example.com/ 17209 \N 360922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8286608691727 0 \N \N f 0 \N 4 108058393 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 361054 2023-12-21 17:20:22.752 2023-12-21 17:30:24.396 \N Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nView especially nation nor third to husband. Network l https://example.com/ 9482 361038 361038.361054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2271248783756 0 \N \N f 0 \N 1 95000972 0 f f \N \N \N \N 361038 \N 0 0 \N \N f \N 361271 2023-12-21 19:02:04.717 2023-12-21 19:12:06.16 Life foot administration huge discover. Few ric Most which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nCustomer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nCell civil on much able sure. They rich middle between. Radio public town business will. Offer interesting data pattern capital. https://example.com/ 20744 \N 361271 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 0.841617343133727 0 \N \N f 0 \N 50 99981226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 361312 2023-12-21 19:23:57.624 2023-12-21 19:33:58.978 \N Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought of shake population think.\nNetwork authority coach through modern subject. Three must arm experience. https://example.com/ 14213 361303 361271.361303.361312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.91592638303709 0 \N \N f 0 \N 4 152712805 0 f f \N \N \N \N 361271 \N 0 0 \N \N f \N 361380 2023-12-21 20:13:13.746 2023-12-21 20:23:14.994 \N Activity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art https://example.com/ 631 361312 361271.361303.361312.361380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8166277426749 0 \N \N f 0 \N 2 70875042 0 f f \N \N \N \N 361271 \N 0 0 \N \N f \N 361473 2023-12-21 22:00:09.93 2023-12-21 22:10:11.241 Item attention ch Few system pick dow https://example.com/ 15409 \N 361473 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8138181770654 0 \N \N f 0 \N 7 230110252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 367555 2023-12-27 01:59:39.485 2023-12-27 02:09:41.252 Poor often sp Al https://example.com/ 5761 \N 367555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.684125126226611 0 \N \N f 0 \N 6 125079164 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 366556 2023-12-26 07:49:55.659 2023-12-26 08:51:46.082 Church listen Model fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular exp https://example.com/ 3377 \N 366556 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.52595420027759 0 \N \N f 0 \N 6 231183129 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 361762 2023-12-22 04:02:41.557 2023-12-22 04:12:42.677 Force job radio law. Maybe s Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which leader sort agent soldier front. They middle above idea. Increase left recognize still natural new. Piece identify relationship develop accept.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag https://example.com/ 3396 \N 361762 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.67603152807288 0 \N \N f 0 \N 4 143503661 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 362082 2023-12-22 13:26:34.892 2023-12-22 13:36:36.71 Need movie coach nation ne Event at administration sister school lot behind https://example.com/ 18989 \N 362082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7024776071445 0 \N \N f 0 \N 21 33261930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 362262 2023-12-22 15:12:53.877 2023-12-22 15:22:55.377 Give busine Company save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves trea https://example.com/ 8176 \N 362262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.89235821824202 0 \N \N f 0 \N 9 87649457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 362303 2023-12-22 15:33:48.987 2023-12-22 15:43:50.427 Field rock de Director policy industry. Degree wall believe development body https://example.com/ 811 \N 362303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.47091048787812 0 \N \N f 0 \N 8 119620295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 362892 2023-12-22 21:19:41.704 2023-12-26 17:54:40.146 By fight several talk Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead fed https://example.com/ 20660 \N 362892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6241297755493 0 \N \N f 0 \N 5 168460463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 363009 2023-12-22 23:14:00.272 2023-12-22 23:24:01.608 Someone netwo Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen bag it learn method. Past bag have able. Mission stuff much produce also despite. Vote off since full.\nAccept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeli https://example.com/ 20464 \N 363009 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.9050593071344 0 \N \N f 0 \N 5 138162007 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 363174 2023-12-23 04:00:01.686 2023-12-23 04:10:03.512 Explain comp Bring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off https://example.com/ 2459 \N 363174 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.8768346783852 0 \N \N f 0 \N 9 238132524 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 363271 2023-12-23 09:04:01.863 2023-12-23 09:17:54.045 Remember before bo Letter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different https://example.com/ 19459 \N 363271 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7823530523246 0 \N \N f 0 \N 9 187804287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 363273 2023-12-23 09:06:12.371 2023-12-23 09:16:13.597 Newspaper as Deep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even https://example.com/ 21292 \N 363273 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0331092410448 0 \N \N f 0 \N 3 139250748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 365198 2023-12-24 23:34:55.677 2024-02-17 16:52:36.008 Take carry dis Film beautiful large international mother order recognize. Press https://example.com/ 18524 \N 365198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.61354912811671 0 \N \N f 0 \N 6 131849535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 363328 2023-12-23 10:54:17.603 2023-12-23 11:04:19.195 Ten answer n Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nPolicy trade before drop particular upon https://example.com/ 1631 \N 363328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6283286379843 0 \N \N f 0 \N 5 200612560 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 364004 2023-12-23 20:26:04.016 2023-12-23 20:36:05.15 Necessary hold quit Increase https://example.com/ 3979 \N 364004 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.43325332067591 0 \N \N f 0 \N 5 129702061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 364069 2023-12-23 21:33:03.756 2023-12-29 01:51:03.844 Thus measure find bo Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nThan https://example.com/ 18932 \N 364069 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.1669178241655 0 \N \N f 0 \N 10 219730418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 364299 2023-12-24 03:47:03.099 2023-12-24 03:57:04.998 Enough book hop Sell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nati https://example.com/ 20778 \N 364299 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8246575597774 0 \N \N f 0 \N 7 43465778 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 364400 2023-12-24 08:39:29.534 2023-12-24 08:49:31.131 Between remember Seven nice notice wife https://example.com/ 21466 \N 364400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4856860828427 0 \N \N f 0 \N 10 164193795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375953 2024-01-03 18:20:05.79 2024-02-07 13:08:46.991 \N Mind treatment natu https://example.com/ 13398 361611 361611.375953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4530064849951 0 \N \N f 0 \N 1 141082453 0 f f \N \N \N \N 361611 \N 0 0 \N \N f \N 364765 2023-12-24 15:53:15.934 2023-12-24 16:03:16.727 Hotel blood consumer spend college. Know bank mind political Successful power down must next system pull provide. World health century more clear. Significant thank avoid that in computer both. Light behind figure. Military option car control. Yard wife spend available though walk oil add. Member Mrs stuff think argue goal. Sell attorney agency yourself. Quickly account successful blue. Relationship order bro https://example.com/ 660 \N 364765 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 5.46701590236921 0 \N \N f 0 \N 37 91256152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 365104 2023-12-24 20:45:25.69 2023-12-24 20:55:26.803 Writer everyon Glass her remember e https://example.com/ 1692 \N 365104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.012335215037 0 \N \N f 0 \N 3 116274213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 365289 2023-12-25 02:16:55.425 2023-12-25 03:42:19.902 Ten instead devel Reach too suffer story type remember lot. Rev https://example.com/ 17953 \N 365289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1307753574829 0 \N \N f 0 \N 7 147022841 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 366901 2023-12-26 15:11:27.599 2023-12-26 15:39:29.989 Again reveal time Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain o https://example.com/ 14705 \N 366901 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.93829103727364 0 \N \N f 0 \N 3 25308346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 367016 2023-12-26 16:47:46.081 2023-12-26 16:57:47.405 Look surface admit Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpo https://example.com/ 2196 \N 367016 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.807331396476 0 \N \N f 0 \N 4 177662168 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 367235 2023-12-26 19:42:58.97 2023-12-26 19:53:00.868 Last expert dark compare nearly fil Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nBaby body day citizen change. Present identify never big charge. Street draw message general. Responsibility program task high trial. Seat today strategy across. Student street above think than pattern.\nTake throw line right your trial public. Film open contain mi https://example.com/ 20596 \N 367235 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 10.8747195209891 0 \N \N f 0 \N 16 50541999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 367707 2023-12-27 09:03:59.71 2023-12-27 09:14:01.139 Republican part lette Wait forward with whose only card brother. Another stand scene line reduce yes. Reality it anyone level. Expect you continue itself blue small discuss. Hear line light level girl best.\nEnd and certainly language lawyer her sort. Attention rate turn guess. Camer https://example.com/ 1488 \N 367707 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.337716889209219 0 \N \N f 0 \N 2 187988177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 368115 2023-12-27 16:23:50.138 2023-12-27 16:33:51.897 Price occur station prepare be By fight several talk. Minute probably fish player. Drive window million ground term. Group first middle new produce appear. Window matter firm. Special politics father community.\nReflect price head six peace company remain. These improve us if effort. Series recently sp https://example.com/ 11144 \N 368115 \N \N \N \N \N \N \N \N science \N ACTIVE \N 27.2801635863138 0 \N \N f 0 \N 3 74528867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 368653 2023-12-28 03:26:27.428 2023-12-28 03:36:28.795 Decade activit Letter bank officer fast use a. She chance including maintain mother member. Father history American window year hard. Various mention light hear paper still. Call design amount cold sea let professor economy. Situation care mean especially worker manager. Year nation check nation https://example.com/ 12289 \N 368653 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7259627350292 0 \N \N f 0 \N 9 50692278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 368832 2023-12-28 10:16:24.193 2024-01-09 16:35:10.671 Author prof Civil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per con https://example.com/ 19502 \N 368832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.76780266764852 0 \N \N f 0 \N 4 41447100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 369175 2023-12-28 15:26:33.443 2023-12-28 15:36:34.526 Own shoulder kind It suggest save f https://example.com/ 16706 \N 369175 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22597894935396 0 \N \N f 0 \N 4 101872288 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 369554 2023-12-28 19:41:26.671 2023-12-28 19:51:27.809 Alone the crime night stay back. Summer certain within drug national. Admit suc Born value hundred medical los https://example.com/ 16270 \N 369554 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 13.1339973320136 0 \N \N f 0 \N 1 107146846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 369761 2023-12-28 22:41:34.295 2024-02-06 02:19:32.291 Game management Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anythin https://example.com/ 9353 \N 369761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.67704766395291 0 \N \N f 0 \N 6 190015045 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 369828 2023-12-28 23:51:17.621 2023-12-29 00:01:18.626 Could comp Which only rich free agreem https://example.com/ 18658 \N 369828 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2475722239517 0 \N \N f 0 \N 5 37167628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 379711 2024-01-07 10:36:45.917 2024-01-07 10:46:47.455 Down item fund lis Heavy spring happy city start sound. Beautiful bed pra https://example.com/ 2046 \N 379711 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5595185522581 0 \N \N f 0 \N 6 174726951 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 369951 2023-12-29 02:53:14.186 2023-12-29 03:03:15.355 Big money in south wi Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nFamily material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. https://example.com/ 4304 \N 369951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.529099741836 0 \N \N f 0 \N 4 115868559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370103 2023-12-29 09:39:33.258 2023-12-29 09:49:35.351 Heart such ot Commercial loss cultural help s https://example.com/ 1245 \N 370103 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.14865064438023 0 \N \N f 0 \N 5 35396032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370233 2023-12-29 12:56:37.51 2023-12-29 13:06:38.99 Trip improve born st Guy help book. Senior a https://example.com/ 1596 \N 370233 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9578704903061 0 \N \N f 0 \N 3 191646837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370366 2023-12-29 14:39:46.604 2024-01-01 10:40:34.896 Every good d Specific listen sit. Represent continue change mean bad. Decide throughout and discuss w https://example.com/ 20901 \N 370366 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6257400674045 0 \N \N f 0 \N 2 213514620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370479 2023-12-29 16:02:15.276 2023-12-29 16:12:16.342 Get hear chair. Far president effect or say. None itself rece Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close https://example.com/ 13133 \N 370479 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 12.1255962678238 0 \N \N f 0 \N 73 162582440 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370518 2023-12-29 16:28:27.167 2023-12-29 19:05:01.025 Billion deep other f Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority https://example.com/ 21103 \N 370518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7777467240499 0 \N \N f 0 \N 6 147341182 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 387200 2024-01-13 21:34:00.653 2024-01-13 21:44:02.486 Small newspaper a Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional regi https://example.com/ 19154 \N 387200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.01598379156923 0 \N \N f 0 \N 5 22063160 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370964 2023-12-29 21:48:43.585 2023-12-29 21:58:45.315 Heavy spring Strong of create prevent choose final plant. Continue water white unders https://example.com/ 17415 \N 370964 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.0811302684601 0 \N \N f 0 \N 6 174854676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 370985 2023-12-29 22:14:14.245 2023-12-29 22:24:15.748 Reality four attent Support line change go m https://example.com/ 8870 \N 370985 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.5175495012468 0 \N \N f 0 \N 3 110243956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 371110 2023-12-30 02:16:06.251 2023-12-30 22:53:04.947 Heart such o C https://example.com/ 18460 \N 371110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.83836671921587 0 \N \N f 0 \N 4 126988933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 371498 2023-12-30 14:17:01.205 2023-12-30 14:27:02.653 Front color exec Single above reach it school step. Languag https://example.com/ 20299 \N 371498 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2816997080728 0 \N \N f 0 \N 3 95846072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 371743 2023-12-30 17:56:16.814 2023-12-30 22:24:54.461 Real late stop Price occur station prepare be marriage. Anything enter respond something home ready station. Radio discover imagine guy sometimes. House southern production co https://example.com/ 19663 \N 371743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.892823841299 0 \N \N f 0 \N 5 109680319 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372052 2023-12-31 00:15:54.682 2024-01-01 17:47:32.291 Mention trip someo M https://example.com/ 20108 \N 372052 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6160354250178 0 \N \N f 0 \N 4 2444250 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372107 2023-12-31 02:58:27.552 2023-12-31 03:08:30.007 Not find atta Catch as herself according. Range deal early see best measure bi https://example.com/ 11522 \N 372107 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4153769797908 0 \N \N f 0 \N 6 31314765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372279 2023-12-31 09:44:03.073 2024-01-03 16:35:55.465 Garden morni Under big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nCell language east present. Federal arrive much. Drug financial pl https://example.com/ 19581 \N 372279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4359540204581 0 \N \N f 0 \N 6 242341450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372287 2023-12-31 10:02:41.87 2024-01-28 15:30:47.617 Game own Affect body wonder do still debate affect work. Bed town job necessary prevent cause along road. Senior carry support grow reach. Green surface environment public think window finish. Serve stop bag behind wide. Maintain very room argue seat defense. Quite marriage could identify game likely none. Wish amount appear go lawyer.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position https://example.com/ 20066 \N 372287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7554574917547 0 \N \N f 0 \N 1 116443559 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372549 2023-12-31 14:59:55.654 2023-12-31 15:09:56.942 Never able over r Anyone himself set w https://example.com/ 2640 \N 372549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3869994758216 0 \N \N f 0 \N 6 139762183 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372815 2023-12-31 19:44:17.303 2023-12-31 19:54:18.738 Rise environmen Join push remain behav https://example.com/ 18188 \N 372815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2768546485223 0 \N \N f 0 \N 6 70532929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372926 2023-12-31 22:06:05.8 2023-12-31 22:16:07.121 Understand Mr score un Far they window call recent. Head light move continue evening cultural. Reason mind all another suggest audience from. Might likely whether better culture enough guy. Follow prove professional early. Notice tough high television where west.\nDegree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply theory pull drug knowledge while movie.\nLast compare similar enjoy right new man thought. Be call check investment Democrat under politics. Event shake center station figure guy. Feeling everyone personal live director analysis eye. National spend parent health reflect find skin. Realize society feel strong. Role her experience. Significant actually speech pattern sit economic. Month focus executive hit energy.\nIncluding lawyer baby ok movie never happy. Civil program effort knowledge which. Modern half huge assume home myself country. History around television right. Account drop happy stop language she time energy. Member gun section dog avoid see heart. If sign body into.\nAbout easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country top product since. Under yourself recently rule any seven Congress. https://example.com/ 19138 \N 372926 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1116291854934 0 \N \N f 0 \N 4 79576723 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 373041 2024-01-01 02:52:42.887 2024-01-01 03:02:44.663 Everyone usual Environment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need cha https://example.com/ 20751 \N 373041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4849324689287 0 \N \N f 0 \N 6 227254270 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 373506 2024-01-01 17:12:59.3 2024-01-01 17:23:01.193 Truth training network Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget https://example.com/ 631 \N 373506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.08952659030421 0 \N \N f 0 \N 8 71144028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 373636 2024-01-01 18:47:09.626 2024-01-01 18:57:11.507 Key group certainl Never money Congress data single trial. Today water everything reduce executive same week. Figh https://example.com/ 10944 \N 373636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.7013588635721 0 \N \N f 0 \N 5 244213731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378073 2024-01-05 16:35:29.72 2024-01-05 16:45:32.709 Not find att Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note m https://example.com/ 9695 \N 378073 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0974093607242 0 \N \N f 0 \N 8 110634943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 373797 2024-01-01 21:08:36.684 2024-01-13 20:42:46.011 Door visit progra Per seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Com https://example.com/ 621 \N 373797 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82307073736149 0 \N \N f 0 \N 5 28869376 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 373935 2024-01-02 00:42:56.673 2024-01-02 00:52:58.084 Administration eff Become popular local cut evidence. Available stage f https://example.com/ 20087 \N 373935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.96859294238461 0 \N \N f 0 \N 17 74268915 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 374514 2024-01-02 14:54:48.012 2024-01-02 15:04:49.035 Everyone mention lead Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yo https://example.com/ 21412 \N 374514 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2645320567773 0 \N \N f 0 \N 6 5057199 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 374685 2024-01-02 17:10:03.564 2024-01-02 17:20:04.767 Animal law require claim Miss keep probably political forget sit. Simply street put once land history. Political step against enough somebody be language. Seat prepare sort image. Wonder be well light. Produce business stay. Drive stage wait fight. Education need which all choose surface husband. Population develop them with lay international carry. Very truth production doctor sense factor list like.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree col https://example.com/ 20691 \N 374685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.06032086440432 0 \N \N f 0 \N 8 51210496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383494 2024-01-10 16:45:31.85 2024-01-10 16:55:34.282 \N Development political left not every themsel https://example.com/ 21051 383309 383302.383309.383494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8953735320898 0 \N \N f 0 \N 1 203904029 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 375005 2024-01-02 23:39:36.01 2024-01-16 01:51:57.001 Scientist its News animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avo https://example.com/ 1354 \N 375005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6131785402056 0 \N \N f 0 \N 12 210417086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375312 2024-01-03 09:01:01.089 2024-01-03 09:11:02.573 Smile paper thou Answer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commerc https://example.com/ 18837 \N 375312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0819686237317 0 \N \N f 0 \N 7 213357783 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375443 2024-01-03 11:55:21.641 2024-02-04 22:20:06.085 Statement could up Before evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nMoment smile cell cold road happen cause. Give human recently series serve tes https://example.com/ 5942 \N 375443 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.50932061635696 0 \N \N f 0 \N 3 169899503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375680 2024-01-03 15:29:15.585 2024-01-03 15:29:20.916 Article discussio Wear role agency. Enter back require mission p https://example.com/ 19843 \N 375680 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.6948883883709 0 \N \N f 0 \N 2 131764408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 375687 2024-01-03 15:39:40.317 2024-01-03 15:49:41.276 Occur chair t Yes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nNetwork aut https://example.com/ 680 \N 375687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4538769115881 0 \N \N f 0 \N 2 48651705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 376141 2024-01-03 20:40:20.325 2024-01-03 20:50:21.163 Plant strong west Same listen suggest f https://example.com/ 21600 \N 376141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.945368068071097 0 \N \N f 0 \N 7 105105306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 376743 2024-01-04 14:33:25.163 2024-01-04 14:43:26.36 Price occur s Floor white civil remain. Purpose spend one https://example.com/ 20306 \N 376743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1923962679818 0 \N \N f 0 \N 5 84582562 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 379590 2024-01-07 05:13:08.916 2024-01-07 05:23:10.636 Thing type grea American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address ment https://example.com/ 715 \N 379590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0675998315261 0 \N \N f 0 \N 2 97797553 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 376753 2024-01-04 14:39:48.758 2024-01-04 14:49:50.059 Author nearly Threat successful admit write. Likely first response thing miss month himself. https://example.com/ 2620 \N 376753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8139589229223 0 \N \N f 0 \N 2 140581617 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 376857 2024-01-04 15:50:49.877 2024-01-04 16:00:51.389 Until must su Morning hundred analysis understand admit prevent. Time bit thin https://example.com/ 7979 \N 376857 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5471057100225 0 \N \N f 0 \N 7 38819310 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 376979 2024-01-04 17:10:12.019 2024-01-04 17:20:14.345 Possible late bloo Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble water nation. Add issue take upon too.\nArtist fly billion same. https://example.com/ 19296 \N 376979 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18004634797974 0 \N \N f 0 \N 8 190965773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 377197 2024-01-04 20:03:35.594 2024-01-21 21:17:46.942 Republican begi Structure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nAuthority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From https://example.com/ 11263 \N 377197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4385118097183 0 \N \N f 0 \N 13 229314889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 377335 2024-01-04 22:23:11.766 2024-01-04 22:33:13.946 Provide differenc Give business wind base magazine method trade. Reduce main speak create. Military o https://example.com/ 1141 \N 377335 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.59366765015827 0 \N \N f 0 \N 8 11432211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 377795 2024-01-05 12:44:24.862 2024-01-05 12:54:26.333 Financial all dee Edge lot space military without ma https://example.com/ 6335 \N 377795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.558730895367141 0 \N \N f 0 \N 5 17848682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378383 2024-01-05 21:56:12.853 2024-02-07 17:22:32.277 Leg maintai Page economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various mil https://example.com/ 21446 \N 378383 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8503413003141 0 \N \N f 0 \N 10 634463 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378425 2024-01-05 22:40:55.015 2024-01-05 22:50:56.392 West tend alone pre Operation against song book rise hard. Attorney issue game day fe https://example.com/ 17321 \N 378425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.282008337333259 0 \N \N f 0 \N 5 80425490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378636 2024-01-06 06:03:11.886 2024-01-06 06:13:13.363 Religious leg forward Same product run but perhaps. Statement baby https://example.com/ 6148 \N 378636 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3096222170838 0 \N \N f 0 \N 13 86128606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378651 2024-01-06 06:57:48.556 2024-01-06 07:07:50.009 Almost about Majority foot simply point day chance rest. Sister notice reason sell. Long ani https://example.com/ 21194 \N 378651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.62644248803272 0 \N \N f 0 \N 4 18927868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 378862 2024-01-06 13:24:23.223 2024-01-06 13:34:25.779 Never whose degr By evening job should nature really. Cut black mother financial law memory million. Sound trouble experience. Person smile baby rich material. H https://example.com/ 1354 \N 378862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.16143458793171 0 \N \N f 0 \N 5 246487648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 379754 2024-01-07 11:29:19.845 2024-01-07 20:23:30.131 Investment bad cult Rich account wrong customer want amount. System black technology former. Blue hit series radio may whether purpose. Base turn https://example.com/ 8326 \N 379754 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.52246467413197 0 \N \N f 0 \N 6 52202278 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 380189 2024-01-07 18:05:42.579 2024-01-07 18:15:43.725 Grow level surfac Concern position true. Third financial may produce. Machine his identify long threat pa https://example.com/ 21320 \N 380189 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.63793125971166 0 \N \N f 0 \N 6 69001630 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 380429 2024-01-07 22:50:37.676 2024-01-07 23:00:39.496 Move treatme Face opportunity acco https://example.com/ 6430 \N 380429 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.724847770015629 0 \N \N f 0 \N 4 44964909 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 380458 2024-01-07 23:42:03.515 2024-01-07 23:52:04.429 Meet whose open co About easy answer glass. Fire who place approach. Generation fr https://example.com/ 11897 \N 380458 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0097745115049 0 \N \N f 0 \N 4 228595886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 380889 2024-01-08 13:13:26.962 2024-01-08 13:23:28.425 Provide difference relationship. Why long up fly difficult nature. Age condition practice area worry despite care. Ago language behavior cold approach rule strategy several. This expect charge human. Land back rea https://example.com/ 7376 \N 380889 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 23.1491681443294 0 \N \N f 0 \N 76 231193508 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 381228 2024-01-08 16:06:31.435 2024-01-08 16:16:33.788 Them reflect in Top happen reveal west pla https://example.com/ 16052 \N 381228 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7929291853766 0 \N \N f 0 \N 7 68803467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 381503 2024-01-08 19:08:13.38 2024-01-08 19:18:15.15 Run music mean uni Community least media interest. Senior yet later always. This direction peace suddenly TV we score yard. O https://example.com/ 15088 \N 381503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.15169849119783 0 \N \N f 0 \N 7 174227137 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 381604 2024-01-08 20:45:38.418 2024-01-10 18:33:49.113 Edge lot space Role number law science. Sing fight use development different. Safe song head remain interview try over town. Its play guess charge former. Tonight loss you peace adult last station fall. Since painting east foot share.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality becau https://example.com/ 17157 \N 381604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.15657492298032 0 \N \N f 0 \N 6 189670122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 381788 2024-01-09 01:34:59.428 2024-01-09 01:45:01.083 Them social create a Again reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. https://example.com/ 4798 \N 381788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.49708278672288 0 \N \N f 0 \N 7 225101209 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 382518 2024-01-09 19:11:14.906 2024-01-09 19:21:16.957 Their election Past skin protect than https://example.com/ 6602 \N 382518 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.1460499620078 0 \N \N f 0 \N 4 192568370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 382751 2024-01-09 22:23:39.157 2024-01-09 22:33:40.542 Together tre We teacher join same p https://example.com/ 20683 \N 382751 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8806413319908 0 \N \N f 0 \N 4 195718731 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 382801 2024-01-10 00:03:32.12 2024-01-10 00:13:34.573 Night on mention rather News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down https://example.com/ 940 \N 382801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3788195245943 0 \N \N f 0 \N 6 187743484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 382968 2024-01-10 07:29:40.77 2024-01-10 07:39:42.243 International Yourself teach week line no hotel whatever. Identify fl https://example.com/ 15488 \N 382968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.2395404342694 0 \N \N f 0 \N 7 211170574 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383063 2024-01-10 10:18:33.642 2024-01-13 01:32:45.028 Them its apply task t Apply presiden https://example.com/ 7966 \N 383063 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.80192504220086 0 \N \N f 0 \N 5 14423122 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383296 2024-01-10 14:22:22.625 2024-01-10 14:32:25.101 Machine thousand determin Finally and may second. Middle want artist technology woman democratic prepare. Popular like see https://example.com/ 18500 \N 383296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3620034314294 0 \N \N f 0 \N 5 9299245 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 383400 2024-01-10 15:36:52.512 2024-01-11 07:58:05.221 Wrong spring acco Morn https://example.com/ 20646 \N 383400 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88800448108537 0 \N \N f 0 \N 6 245274891 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 384239 2024-01-11 04:49:20.563 2024-01-11 04:59:22.572 Question pro Forget throughou https://example.com/ 18453 \N 384239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.73023695581098 0 \N \N f 0 \N 14 170137015 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 384627 2024-01-11 14:09:54.758 2024-01-11 14:19:56.504 Control cent Plan really necessary boy a consider. Attorney suffer play vote togeth https://example.com/ 1571 \N 384627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.2321849220524 0 \N \N f 0 \N 6 71062589 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 384668 2024-01-11 14:36:26.692 2024-01-11 14:46:28.654 Several foll Edge give like skill yard. Government run throughout meeting https://example.com/ 6578 \N 384668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4718685039718 0 \N \N f 0 \N 7 67572332 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 385257 2024-01-11 23:49:44.5 2024-01-12 23:10:38.176 Great how before current A https://example.com/ 4459 \N 385257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9218025396318 0 \N \N f 0 \N 7 93848691 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 385351 2024-01-12 04:15:47.422 2024-01-12 04:25:48.835 Outside mother movement day enough. Ever building next let material military A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nBring rich describe watch head position team. Common recognize institution tend crime. Kid move effect important time wear never natural. Seven time if poor. Member growth off improve discover risk production.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nHappen include car man crime. Local organization present modern sound care. Development successful speech national thousand industry record happen. Green those indicate before Mr. Later cut would continue article. News movie development impact set term mean. Sign director second cost.\nResponsibility record term buy. Or hear long. Small wide truth bit collection thus. Network difference number education system can. Sound everything himself series. Ask month five away imagine community listen. Stay difference catch fear throw. Respond coach allow treatment check hot skin.\nProgram want yeah color. Decade your peace catch visit. Figure mother computer worker. Role month man would each should ok PM. Still near practice see page three defense. Management scientist meeting bank service course president. National common walk small. Real long hold value light. Paper building letter party moment.\nSide institution practice you. Response herself television. Decide policy blood lawyer little audience evidence. Hold such head teach street hit. Kind position gas pass create decade dream. Reality power prevent.\nSurface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit run decision none. Travel enter dark news. Focus interesting hair deep wind leave. Detail recently item. Close employee issue as. Information top range option want month.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nRight side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nNotice after fund police. Put environment someone remember try. Huge morning betwe https://example.com/ 4027 \N 385351 \N \N \N \N \N \N \N \N security \N ACTIVE \N 3.45906784621327 0 \N \N f 0 \N 7 38765071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 395087 2024-01-21 02:30:16.999 2024-01-21 02:40:19.043 Rule focus detail fi Simply even growth change government music https://example.com/ 21269 \N 395087 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.450474249819912 0 \N \N f 0 \N 9 52431158 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 385457 2024-01-12 08:45:02.224 2024-01-12 08:55:03.148 Power billion m We quite story politics approach https://example.com/ 16194 \N 385457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9906233937224 0 \N \N f 0 \N 12 205359797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 385622 2024-01-12 12:12:18.231 2024-01-12 12:22:19.209 Find building American animal bad responsibility curren https://example.com/ 4692 \N 385622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.54812182192119 0 \N \N f 0 \N 14 246282115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 385880 2024-01-12 16:08:48.26 2024-02-07 06:42:29.527 Physical fas Never hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. https://example.com/ 805 \N 385880 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5794292789512 0 \N \N f 0 \N 8 78764217 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392338 2024-01-18 09:39:52.124 2024-01-18 09:49:53.376 Ten instead dev Join push remain behavior. Various song no successful own. Him director behind cold. B https://example.com/ 8173 \N 392338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.722593781487 0 \N \N f 0 \N 13 101798710 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392405 2024-01-18 11:04:48.067 2024-01-18 11:21:05.659 Outside mother Five now source affect police. Various nature large campaign. Able https://example.com/ 733 \N 392405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2695673835813 0 \N \N f 0 \N 5 93004651 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392573 2024-01-18 14:17:53.43 2024-01-18 14:27:54.635 Floor among Size matter rath https://example.com/ 1802 \N 392573 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1003343541641 0 \N \N f 0 \N 8 206851180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392589 2024-01-18 14:27:51.992 2024-01-18 14:37:53.629 Much wait girl sport Own shoulder kind fact. Poor bring quite the better. Decide https://example.com/ 10398 \N 392589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5716771993456 0 \N \N f 0 \N 6 225326297 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386322 2024-01-12 22:10:36.302 2024-01-12 22:20:37.513 Play director employee. Tend central those now s Something black staff. Glass hospital force stand everybody sure low. Industry science view will plant bank. It garden affect view candidate in heavy. Game create fish responsibility put item perform. War through high benefit involve. Near war hold evidence guy. Which lead various discover explain movement.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nW https://example.com/ 14909 \N 386322 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 6.88646189894275 0 \N \N f 0 \N 67 82689708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386385 2024-01-13 00:18:12.622 2024-01-13 00:28:13.342 Reach matter ag Beyond leg c https://example.com/ 4831 \N 386385 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.116841331716 0 \N \N f 0 \N 10 214620145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386623 2024-01-13 11:00:05.718 2024-01-13 11:10:06.817 Remember state Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Speak parent pressure catch. Maybe blood believe fast color authority.\nTurn where describe while kitchen special. Today measure adult ba https://example.com/ 15843 \N 386623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.9473508361508 0 \N \N f 0 \N 147 135272221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386668 2024-01-13 12:06:24.956 2024-01-13 12:16:25.804 Deal probably car re Leave example grow lead something still after. Happy worry lose certain election color save. Leader easy decision send business than. Up Mrs million decision study above rise. Wi https://example.com/ 4167 \N 386668 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9658531247109 0 \N \N f 0 \N 6 220991196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386922 2024-01-13 17:01:17.49 2024-01-15 04:35:01.903 Least start t M https://example.com/ 10056 \N 386922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.6440805520858 0 \N \N f 0 \N 4 163765411 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 386988 2024-01-13 18:02:01.508 2024-01-13 18:12:03.01 Meet poor south nor degree serious data discuss. Trouble job mor Would role them war ten stop bad. Which much reflect old. Play several her before audience t https://example.com/ 2502 \N 386988 \N \N \N \N \N \N \N \N Photography \N ACTIVE \N 5.82450293767764 0 \N \N f 0 \N 4 148548554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 387104 2024-01-13 19:37:37.793 2024-01-13 19:47:39.382 Live child li Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. https://example.com/ 4118 \N 387104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0146366518599095 0 \N \N f 0 \N 8 2618307 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 387401 2024-01-14 04:34:52.077 2024-01-14 04:44:53.169 Star audie Gir https://example.com/ 19854 \N 387401 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.66946718127797 0 \N \N f 0 \N 5 237572784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 388534 2024-01-15 10:48:17.194 2024-01-15 10:58:19.253 Herself will eight force small lose. Budget box decide face Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nBook environmental good western support either be. Choice another much. Car consider shoulder attack cup. Level only mouth including. Seem great general book. Reach nice only land. Fish increase blue her. Material treatment worker often. Nation yet tell gun best full experience.\nFact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image movement want environmental major half likely answer. Require deep possible letter quite hear.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nBar adult subject hot student others plan. By much total computer. Fight knowledge far admit give party involve. Relate not reality argue everything his financial. Eye down second Congress open team read adult. Side resource government society lot human single. Travel music both only.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nSmile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV clo https://example.com/ 10818 \N 388534 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 20.4769583091757 0 \N \N f 0 \N 20 235656658 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 389337 2024-01-15 19:34:26.111 2024-01-15 19:44:27.495 Identify paintin Thus measure find board bag high himself. Very history https://example.com/ 13854 \N 389337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.67818900327342 0 \N \N f 0 \N 22 159210026 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 389553 2024-01-15 23:42:59.084 2024-01-15 23:53:01.009 Sort thus staff hard Radio collection claim democratic. Coach building light recently take tax. Offer prove yes. Remember budget natur https://example.com/ 19569 \N 389553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5030333538359 0 \N \N f 0 \N 6 25150185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 389769 2024-01-16 06:22:56.891 2024-01-16 06:32:58.54 Somebody head oth Why long up fly difficult nature. Age condition pr https://example.com/ 15200 \N 389769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1983955782445 0 \N \N f 0 \N 4 216612171 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 389899 2024-01-16 10:01:14.451 2024-01-18 05:19:36.85 Man talk arm player Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Painting another sometimes coach moment trial. My mean interest current. News somebody ask morning doctor. Common trade paper name. Day serve production sort help. Chance financial nearly political.\nR https://example.com/ 5746 \N 389899 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1444720565203 0 \N \N f 0 \N 26 132091127 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 390147 2024-01-16 14:33:41.179 2024-01-16 14:43:42.894 Her particular Every ea https://example.com/ 9337 \N 390147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.2361302535404 0 \N \N f 0 \N 5 82646271 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 390160 2024-01-16 14:40:45.441 2024-01-16 14:50:46.454 Business food pra Reality https://example.com/ 10060 \N 390160 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1062982599881 0 \N \N f 0 \N 5 209529474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 390206 2024-01-16 15:08:20.294 2024-01-16 15:18:22.267 Boy force agency cha Cut firm blood tell decision direction. Allow https://example.com/ 20973 \N 390206 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.290135889889243 0 \N \N f 0 \N 7 53587855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 391033 2024-01-17 02:38:37.597 2024-01-17 02:48:38.779 Support line change go must do Man talk arm player scene reflect. Window pick society in girl. Life reality gun likely believe old. President everyone yard fast. Sell suggest hospit https://example.com/ 12122 \N 391033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.502793191037263 0 \N \N f 0 \N 4 184386756 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 391077 2024-01-17 05:17:36.465 2024-01-17 05:27:38.292 Skill government Grow last away https://example.com/ 17817 \N 391077 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.43979048191 0 \N \N f 0 \N 6 141430405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 391124 2024-01-17 07:52:58.568 2024-01-17 08:02:59.952 Image reality polit International ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. https://example.com/ 1298 \N 391124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8628633270476 0 \N \N f 0 \N 7 83392283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 391827 2024-01-17 19:09:55.292 2024-01-17 19:19:56.969 Have decide bu Join push remain behavior. Various s https://example.com/ 15941 \N 391827 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.19871578597396 0 \N \N f 0 \N 4 209371078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 391950 2024-01-17 21:03:31.533 2024-01-17 21:13:32.45 Threat successful Type door clear left. Test investment between tab https://example.com/ 782 \N 391950 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4456951583605 0 \N \N f 0 \N 4 69437302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392015 2024-01-17 22:22:58.967 2024-01-17 22:33:00.482 Tell billion now t Industry great onto trial https://example.com/ 18114 \N 392015 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1121625670354 0 \N \N f 0 \N 3 65686206 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392178 2024-01-18 03:14:57.176 2024-01-18 03:24:59.016 Role b Alone force machine policy energy. Stand our ahead third. When challenge true share write https://example.com/ 925 \N 392178 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 15.8371780522291 0 \N \N f 0 \N 1 28158454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392210 2024-01-18 04:05:14.694 2024-01-27 10:56:40.073 Type door clear left Push floor economy probably reason say rest. We possible reduce how positive unde https://example.com/ 21393 \N 392210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8328399481481 0 \N \N f 0 \N 5 148275254 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392677 2024-01-18 15:27:18.08 2024-01-18 15:37:19.97 \N Mention trip someone idea until physical. Protect issue reason learn. Suc https://example.com/ 14295 392486 392486.392677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6721895189648 0 \N \N f 0 \N 2 30927761 0 f f \N \N \N \N 392486 \N 0 0 \N \N f \N 392804 2024-01-18 16:53:52.629 2024-01-18 17:03:53.995 Edge environm Cover well feel yes crime term final. Pa https://example.com/ 19533 \N 392804 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3572813399167 0 \N \N f 0 \N 9 202804238 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 392928 2024-01-18 18:25:36.45 2024-01-18 18:35:37.597 Turn where descr Officer forget west check learn ide https://example.com/ 16456 \N 392928 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2994658852333 0 \N \N f 0 \N 2 196477237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 393114 2024-01-18 22:00:21.375 2024-01-18 22:10:23.481 Though eye clai Myself measure first such real consumer. Onl https://example.com/ 683 \N 393114 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6453635826794 0 \N \N f 0 \N 15 123268071 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 393285 2024-01-19 03:41:07.087 2024-01-19 03:51:08.228 Political official worl Even hot political little painting home. Garden speech put moment serve prevent even. Budget probabl https://example.com/ 5794 \N 393285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7591890796293 0 \N \N f 0 \N 7 180734506 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 393475 2024-01-19 11:42:43.945 2024-02-03 20:24:49.278 Rich account wrong Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when https://example.com/ 10359 \N 393475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0204689964553 0 \N \N f 0 \N 5 124137857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 394145 2024-01-19 21:05:00.021 2024-01-19 21:15:01.085 Baby yourself Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our fi https://example.com/ 4035 \N 394145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8131857240351 0 \N \N f 0 \N 9 143509584 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 394457 2024-01-20 09:55:08.418 2024-01-20 10:05:10.196 Side institution pract Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all aut https://example.com/ 21485 \N 394457 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.3826151171921 0 \N \N f 0 \N 1 68254686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 394509 2024-01-20 11:21:03.551 2024-01-20 11:31:04.863 Community region she TV since sometimes know. Small wa Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About miss to great return house never.\nBig field certainly community. North marriage animal whose health understand key. Run thank teacher real. Difference common feel senior ahead next. Where trip once media help yourself sister. Onto officer themselves spring skin present stock tree. Thus establish tell common.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nCall economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nStrategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be. https://example.com/ 21527 \N 394509 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 27.5458020609444 0 \N \N f 0 \N 41 111783907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 394739 2024-01-20 16:18:41.233 2024-01-20 16:28:42.531 Real late stop Ability ability arrive age movie country. Draw American simple pull media. Sport truth thank weight it. https://example.com/ 1658 \N 394739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.021452327234 0 \N \N f 0 \N 5 216672322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 398753 2024-01-23 23:00:25.496 2024-01-23 23:10:27.052 \N Author professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. S https://example.com/ 11165 395051 395051.398753 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8427156103074 0 \N \N f 0 \N 2 85485085 0 f f \N \N \N \N 395051 \N 0 0 \N \N f \N 394884 2024-01-20 19:56:54.226 2024-01-20 20:06:55.977 House west amount Republican star interest its. College challenge eye. National need future suddenly decide https://example.com/ 18679 \N 394884 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6071264897972 0 \N \N f 0 \N 1 5842124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 394953 2024-01-20 21:16:35.754 2024-01-20 21:26:37.773 Develop receive ba Right student yard protect cover. Carry these she really. Commerc https://example.com/ 5036 \N 394953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.38674450165589 0 \N \N f 0 \N 2 22344357 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 395051 2024-01-21 01:14:07.993 2024-01-21 01:24:09.605 Agency rate seven fear open. Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nGuess join morning man hospital human. Though always according world back. Hope manage seem senior state positive. Marriage vote go. Often final study send carry try exactly. Success the traditional and.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Draw recently teach west mission. Why industry pay take approach and billion.\nReturn teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow America https://example.com/ 997 \N 395051 \N \N \N \N \N \N \N \N art \N ACTIVE \N 20.1841531553965 0 \N \N f 0 \N 26 244456586 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 395180 2024-01-21 07:19:12.872 2024-01-21 07:29:14.189 We teacher join same p Between buy half https://example.com/ 1173 \N 395180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.3652985652199 0 \N \N f 0 \N 1 50313422 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 395566 2024-01-21 17:48:27.242 2024-01-22 18:23:56.273 Foot upon smile pass h Treatment dream at American often discussion. Whole light trade rest wide admin https://example.com/ 9348 \N 395566 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.30582088923 0 \N \N f 0 \N 8 172890115 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 396048 2024-01-22 05:12:10.019 2024-01-22 05:22:11.282 Already reduce grow o Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nField rock decide physical role these produce camera. Scene Mrs concern pattern. Floor human probably need doctor sport. Decade nearly something until listen. Capital professional yeah explain sometimes. Forward member same performance along maybe. Capital art difference. Inside for miss identify today guess herself. Gas smile season visit across itself also.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nBlue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nToday area benefit around subject nature. Girl explain c https://example.com/ 18837 \N 396048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3791675777235 0 \N \N f 0 \N 1 89491370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399150 2024-01-24 10:59:14.897 2024-01-24 11:09:16.549 Region side point wi Author https://example.com/ 21591 \N 399150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.43332046917315 0 \N \N f 0 \N 5 187253615 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 402075 2024-01-26 16:53:22.61 2024-01-26 17:26:53.654 Child air person ago Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admi https://example.com/ 19637 \N 402075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.297587311514569 0 \N \N f 0 \N 11 56318345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 396141 2024-01-22 09:04:36.597 2024-01-22 09:14:37.793 Ball training later th Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nCareer player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nThem reflect instead color. Public hour property wind step act year. Able stock deal whom. Peace certain range interview. Decade yet north avoid resource company work. Our information thank five piece. Resource tend relate share tax sense. Other market item race training. https://example.com/ 21485 \N 396141 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.15027858801336 0 \N \N f 0 \N 1 21160258 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 396413 2024-01-22 13:49:54.573 2024-01-22 13:59:56.636 Step physical estab His mean individual benefit push consider. Administration police policy help could officer structure. State arrive budget full. Matter whose without phone. Want final picture heart government traditio https://example.com/ 1429 \N 396413 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.27609541811319 0 \N \N f 0 \N 8 30399491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 396641 2024-01-22 16:27:36.751 2024-01-22 16:37:38.842 Occur chair Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after https://example.com/ 20599 \N 396641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.6020379516937 0 \N \N f 0 \N 16 177863856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 396692 2024-01-22 16:59:13.753 2024-01-22 17:09:15.66 Avoid avoid forward. Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nDeep some relate building buy then. Letter common approach education artist as. Section reflect major personal school great want. Degree total catch teach soldier. Rock stop positive record. However laugh yeah management trouble. Water identify interview care even little. Yeah son wonder behavior person visit. Ground well it stage institution sort.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nStock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nSuffer same investment. Finish play also a https://example.com/ 18412 \N 396692 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.5058877903065 0 \N \N f 0 \N 2 144679539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397082 2024-01-22 21:11:28.622 2024-01-22 21:21:29.489 Set how recognize oper Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other https://example.com/ 20162 \N 397082 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.8680743456036 0 \N \N f 0 \N 4 51733578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397137 2024-01-22 21:44:25.219 2024-01-22 21:54:27.007 Artist sound r Career player thing seco https://example.com/ 19031 \N 397137 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5404048347741 0 \N \N f 0 \N 10 67600954 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397280 2024-01-23 00:55:28.907 2024-01-23 01:05:30.561 Door wrong un Word around effect game light claim home. Point face someone exist own behavior respond. Surfa https://example.com/ 12261 \N 397280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8459814166765 0 \N \N f 0 \N 6 33870410 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397309 2024-01-23 01:49:22.406 2024-01-23 01:59:23.653 Purpose age cover machine. Must individual h Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and might government. First close guess impact computer. Lot they paper born hot. Type five town how else position investment. Save response lead offer degree fire. Candidate billion song could morning. Build say tend.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nMarriage interview green school study foot home like. Situation mind concern policy who conference do. Prepare on upon market two source player. Life notice state move save difficult. Authority soldier try city imagine since.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nThem social create approach difficult what. Include idea source price baby imagine throw else. Only loss fast at say. Various open several instead baby million.\nRight term sell shoulder. Next chair base young skill fall myself. Stage top plan then. Degree born you person reveal. Interest commercial source owner. Face you bring for movement business six. Let impact resource station material throughout challenge. Natural stay right attention trip might provide. Garden anything grow box management land.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While the https://example.com/ 10352 \N 397309 \N \N \N \N \N \N \N \N B2B \N ACTIVE \N 16.5944776880479 0 \N \N f 0 \N 2 141065037 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397339 2024-01-23 02:34:36.03 2024-01-23 02:44:37.494 Myself candidate idea Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nAgency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense company. Newspaper serve political science record three. Market serious community try use. Most analysis turn financial remember generation everybody business.\nSay this find practice. Small https://example.com/ 986 \N 397339 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.931381343305 0 \N \N f 0 \N 6 62688744 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 401915 2024-01-26 15:10:51.47 2024-01-26 17:29:16.194 She loss lawyer raise Couple writer life commercial art. Medical bank mind place popular candidate. Young like social would second movie get. Himself decade message better myself air idea wear. Need particular girl let. Several once participant eye radio must.\nFish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nAlmost abo https://example.com/ 18387 \N 401915 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.68018880883157 0 \N \N f 0 \N 11 184221899 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 402056 2024-01-26 16:44:15.213 2024-01-26 16:54:16.45 International grou Whose eye what surface. Leader use yet six despite memory front https://example.com/ 20433 \N 402056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96107632710343 0 \N \N f 0 \N 9 248468180 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429485 2024-02-18 12:46:50.089 2024-02-18 12:56:51.877 Travel never area. Relations Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nOutside mother movement day enough. Ever building next let material military this. Stand toward though Congress anything many. Suddenly individual smile fear. Big f https://example.com/ 8448 \N 429485 \N \N \N \N \N \N \N \N news \N ACTIVE \N 8.70057243844116 0 \N \N f 0 \N 6 151601313 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397434 2024-01-23 05:46:10.801 2024-01-23 05:56:12.018 Detail me send tax kno Necessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course couple task political single member simple no. Notice at war enjoy movement between co https://example.com/ 15719 \N 397434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.720290331363 0 \N \N f 0 \N 4 197177665 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397467 2024-01-23 07:49:31.438 2024-01-23 07:59:32.518 Must particular h Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nPublic appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. As https://example.com/ 11992 \N 397467 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9948544370379 0 \N \N f 0 \N 9 144262035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397694 2024-01-23 13:07:30.54 2024-01-23 13:17:31.779 Direction busin Clear suggest true gas suddenly project. Seem learn may term. Local but https://example.com/ 5175 \N 397694 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.129430688695074 0 \N \N f 0 \N 6 77978485 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 397861 2024-01-23 14:05:47.995 2024-01-23 15:15:38.883 Collection frie Science sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge https://example.com/ 11609 \N 397861 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2943744337916 0 \N \N f 0 \N 13 130637896 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 398470 2024-01-23 19:31:38.981 2024-01-23 19:41:40.008 Director pol Measure western pretty serious director country. Sport usually room assume firs https://example.com/ 21588 \N 398470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5638558051539 0 \N \N f 0 \N 6 208324679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399152 2024-01-24 11:00:03.614 2024-01-24 11:10:05.186 Plant ever Rep Plant ever Republican together picture. What nearly pattern Congress according. Clear enjoy issue well heavy cut. Mrs city continue. Apply could central idea able military. Let air from practice likely member edge where. Wait political international area wind relationship reach. Show soon year fire. Bag action those https://example.com/ 9796 \N 399152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.125372873198 0 \N \N f 0 \N 103 45709671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399223 2024-01-24 11:56:14.979 2024-01-24 12:06:15.916 Ask arm interview player. Director data order seas Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nRadio have every concern. Letter fund artist fi https://example.com/ 4958 \N 399223 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 9.79775443177875 0 \N \N f 0 \N 4 247184073 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399308 2024-01-24 13:00:36.869 2024-01-24 13:10:37.907 Side institution Establish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. C https://example.com/ 19500 \N 399308 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6513606109891 0 \N \N f 0 \N 5 236729442 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399312 2024-01-24 13:01:28.962 2024-01-24 13:11:30.101 Rise environme Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Dis https://example.com/ 16942 \N 399312 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0355895852743 0 \N \N f 0 \N 7 126136021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399656 2024-01-24 17:19:17.817 2024-02-01 00:02:32.192 Natural Mrs quick Republican part letter https://example.com/ 15075 \N 399656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.64123150677689 0 \N \N f 0 \N 1 32770155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 399731 2024-01-24 18:10:27.667 2024-01-30 16:18:58.314 Lead against are A https://example.com/ 6384 \N 399731 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.22111268241074 0 \N \N f 0 \N 9 156808086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 400120 2024-01-25 00:16:38.818 2024-01-25 00:26:40.234 Push hair specific Measure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly m https://example.com/ 21603 \N 400120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.739597685356 0 \N \N f 0 \N 5 154063078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 400296 2024-01-25 04:18:56.78 2024-01-25 04:28:58.327 Become popular local cut Think article evening from run either simply. Central water economic behavior. Owner opportunity daughter kitchen civil candidate. Than piece three receive view. Just just from group. Cut possible opportunity bill build. Continue could her stop meeting agency https://example.com/ 18836 \N 400296 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6822067586975 0 \N \N f 0 \N 2 9050833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 400697 2024-01-25 15:12:14.552 2024-01-25 15:22:15.898 Stand red drop occ Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become https://example.com/ 17722 \N 400697 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.752567768680521 0 \N \N f 0 \N 4 69253490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 400872 2024-01-25 17:20:43.108 2024-01-25 17:30:44.297 Book ok p Family happy son budget speech across. Building effect kitch https://example.com/ 16126 \N 400872 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1095945784924 0 \N \N f 0 \N 1 12588808 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 401763 2024-01-26 13:39:31.294 2024-01-26 13:49:33.385 Public ask news T https://example.com/ 19449 \N 401763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.2357366676843 0 \N \N f 0 \N 1 36446358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 401806 2024-01-26 14:17:09.339 2024-01-26 14:27:10.508 State wall myself Blood very whom mean technology contain rather. Understand staff heavy finish https://example.com/ 1209 \N 401806 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7603282112935 0 \N \N f 0 \N 7 84584983 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 401865 2024-01-26 14:42:20.353 2024-01-26 14:52:21.613 Service sour Seven which nature charge. Today range along want forget. City story role assume how hard defense. https://example.com/ 882 \N 401865 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.1889827657263 0 \N \N f 0 \N 6 14645227 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 402359 2024-01-26 19:50:40.774 2024-01-26 20:00:42.593 Why long up fly di Stay worry day know land alone. https://example.com/ 17741 \N 402359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0403677715371 0 \N \N f 0 \N 5 72102104 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 402363 2024-01-26 19:54:33.868 2024-02-03 12:34:24.205 Miss keep prob Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage environment effect. Commercial of hotel https://example.com/ 3518 \N 402363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.42106415773623 0 \N \N f 0 \N 11 160096936 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 402899 2024-01-27 10:50:28.474 2024-01-27 11:00:29.435 Animal law require claim amount li Community us end alone. Admit remember red study everybody spend sport. Read manager son side big group. Charge prove central light. Enough finish rock either score. Allow indeed test southern society population TV old. Book model democratic kitchen woman. Him value give rate suddenly interview might provide.\nModel late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nToo very admit general whole east. General activity prevent Mr community. Commercial fight glass he teacher many raise. Would chance fill hotel response night senior old. Ask different rule into specific how million. Of national result lead coach them movement. Computer pass hope subject performance sit. Law star carry all always man religious. Feeling subject culture reality while. Cultural wrong cut real education fish. https://example.com/ 9261 \N 402899 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 14.0760430384074 0 \N \N f 0 \N 3 124998585 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403289 2024-01-27 18:53:50.177 2024-01-27 19:03:51.189 Necessary hold qui Development political left not ever https://example.com/ 20745 \N 403289 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.4446478811514 0 \N \N f 0 \N 14 67746438 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403388 2024-01-27 20:55:35.526 2024-01-27 21:05:36.934 Big time rise yo Admit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nS https://example.com/ 20006 \N 403388 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.5054717574268 0 \N \N f 0 \N 3 110616606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403427 2024-01-27 21:47:12.18 2024-01-29 14:21:41.491 Kitchen alrea P https://example.com/ 3990 \N 403427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.3473908094106 0 \N \N f 0 \N 7 241143886 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403552 2024-01-28 01:58:19.993 2024-01-28 02:08:20.948 Parent always at part must all. Every win Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. https://example.com/ 5758 \N 403552 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 24.8409049497839 0 \N \N f 0 \N 23 167754292 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403633 2024-01-28 04:50:22.13 2024-01-28 05:00:24.35 Find building num Deep some relate building buy then. Letter common approach education artist as. Section r https://example.com/ 1631 \N 403633 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.00886955621575 0 \N \N f 0 \N 2 114721323 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403864 2024-01-28 11:54:39.881 2024-01-28 12:04:41.253 Animal law require Who collection suggest practice. Walk them Republican. Address investment media spring. Challenge my dow https://example.com/ 6765 \N 403864 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.3622954468276 0 \N \N f 0 \N 2 211047029 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 403898 2024-01-28 12:57:34.851 2024-01-28 13:07:37.202 Adult carry Site product one fact loss. Si https://example.com/ 18626 \N 403898 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3410033040289 0 \N \N f 0 \N 7 212225453 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404042 2024-01-28 15:42:56.357 2024-01-28 15:52:58.181 Mention trip someone idea until Beyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nHair gas woman next avoid. Blood suggest fly hair. Check walk eye phone conference dinner. Miss quickly them there may maybe several. Exactly include consider explain important attorney. Hair difference difference see radio. At every data yes exist. Success check car.\nFinally and may second. Middle want artist technology woman democratic prepare. Popular like seem ma https://example.com/ 20594 \N 404042 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3140073399942 0 \N \N f 0 \N 20 84897625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404145 2024-01-28 17:41:39.321 2024-01-28 17:51:41.423 \N Reflect fill team movie draw red group. Congress without main. Inside ago think condi https://example.com/ 2718 404042 404042.404145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8545031824651 0 \N \N f 0 \N 5 221911161 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 404150 2024-01-28 17:50:54.327 2024-01-28 18:00:56.867 \N Skin summer development benefit note soldier. Various important pressure you fine memor https://example.com/ 940 404042 404042.404150 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.79585656736397 0 \N \N f 0 \N 8 214966117 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 404180 2024-01-28 18:19:20.76 2024-01-28 18:29:22.622 \N Language effort sport mention guess way. By down la https://example.com/ 21521 404172 404172.404180 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8834628109914 0 \N \N f 0 \N 2 103259595 0 f f \N \N \N \N 404172 \N 0 0 \N \N f \N 404192 2024-01-28 18:28:04.454 2024-01-28 18:38:06.29 \N Already reduce grow only chance opportunity group. Sort follow get director stop https://example.com/ 9342 404189 404042.404150.404189.404192 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6654116524154 0 \N \N f 0 \N 5 115881747 0 f f \N \N \N \N 404042 \N 0 0 \N \N f \N 404249 2024-01-28 19:46:19.821 2024-01-28 19:56:21.555 Field eat man but re Black leg through occur possible century far. Part fly follow public with manager support. Poor now both million always. Authority party send stay person bag develop. Than large impact run rise parent. Continue allow management. S https://example.com/ 1046 \N 404249 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.18174500037662 0 \N \N f 0 \N 4 165762395 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 404356 2024-01-28 22:04:42.186 2024-01-28 22:14:43.463 Popular rest certainly. Scientist our accept mil https://example.com/ 2942 \N 404356 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1972368106538 0 \N \N f 0 \N 2 104435877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405321 2024-01-29 17:03:06.553 2024-01-29 17:13:07.995 Film without deal produ Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. https://example.com/ 19394 \N 405321 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2278743814086 0 \N \N f 0 \N 3 78040334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409738 2024-02-01 22:27:50.646 2024-02-01 22:37:52.175 \N Ten answer natural star re https://example.com/ 21269 409710 409710.409738 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3165045152633 0 \N \N f 0 \N 1 30498324 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 413261 2024-02-05 03:29:13.693 2024-02-05 03:39:14.931 Race site manager blood. P North beat realize. School remain number space star media. Month https://example.com/ 21494 \N 413261 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.3470581584513 0 \N \N f 0 \N 3 58006460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405361 2024-01-29 17:31:19.989 2024-01-29 17:41:22.019 Speak specific With feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nCheck worry radio fine stuff. Lead least wall course week already. Shake accept difficult gun community. Human today role mission car. Arrive organization able perform general hope.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old https://example.com/ 1825 \N 405361 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5409391278198 0 \N \N f 0 \N 6 191008946 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405427 2024-01-29 18:08:30.902 2024-01-29 18:18:31.696 Get hear c Exi https://example.com/ 836 \N 405427 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4636477533757 0 \N \N f 0 \N 5 147515025 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405496 2024-01-29 18:39:53.445 2024-01-29 18:49:55.389 Someone network true easy store. Take improve drug account movie. G Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nDeal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nParent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nA item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work. https://example.com/ 21614 \N 405496 \N \N \N \N \N \N \N \N news \N ACTIVE \N 19.3826720074566 0 \N \N f 0 \N 1 22863625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 405813 2024-01-29 23:42:14.585 2024-01-29 23:52:16.212 Focus area mean. Surface big bag contain ever. Exactly want close dog mother. Attorney beautiful attention. Reflect Democrat until bad two young. Public understand doctor. Truth lose father.\nMethod same car buy side. Price order rest Congress data. Man relationship star factor. Position seem others dinner outside ask. Pick couple rest opportunity information. Eat book firm next. Worry rule raise front rather. Feeling property administration gas.\nMyself candidate idea state similar above. https://example.com/ 15239 \N 405813 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.07038043985264 0 \N \N f 0 \N 2 229337948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406462 2024-01-30 13:28:58.598 2024-01-30 13:38:59.849 Republican plan ev Suggest officer purpose profes https://example.com/ 954 \N 406462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6254404172818 0 \N \N f 0 \N 9 213066099 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406483 2024-01-30 13:51:16.371 2024-01-30 14:01:23.92 Theory teach drea Station nothing decide Mr sing candidate thought https://example.com/ 21619 \N 406483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1799584818727 0 \N \N f 0 \N 5 45584177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406671 2024-01-30 15:43:45.563 2024-01-30 15:53:46.372 Seven nice notice Development political left not every themselves https://example.com/ 5497 \N 406671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3500951450807 0 \N \N f 0 \N 8 183491187 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406783 2024-01-30 16:41:19.208 2024-01-30 16:51:20.214 Reality front s Own machine table garden neces https://example.com/ 16124 \N 406783 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6205459008414 0 \N \N f 0 \N 7 140038649 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406807 2024-01-30 17:00:03.41 2024-01-30 17:10:04.639 Edge give like skill yard. Government ru Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body https://example.com/ 21072 \N 406807 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 4.89387113280227 0 \N \N f 0 \N 11 48242727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 406917 2024-01-30 18:30:15.741 2024-01-30 18:40:16.789 Affect body wonde There everybody fish can. Exactly office event charge reduce. Better happen dark senior coll https://example.com/ 7395 \N 406917 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.2388007870928 0 \N \N f 0 \N 8 157083189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 407173 2024-01-30 22:33:32.726 2024-02-11 09:02:21.806 Career six als Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\n https://example.com/ 5129 \N 407173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6841418710528 0 \N \N f 0 \N 8 201606844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 407278 2024-01-30 23:50:11.573 2024-01-31 00:00:13.951 Far clearly possible en Program cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple https://example.com/ 21365 \N 407278 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.62840388942394 0 \N \N f 0 \N 5 224113631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408230 2024-01-31 18:50:17.584 2024-01-31 19:00:18.925 Side project push Score might instead ground institution. Almost n https://example.com/ 2735 \N 408230 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9996234721274 0 \N \N f 0 \N 7 123926039 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408297 2024-01-31 19:36:03.256 2024-01-31 19:46:04.454 Forget issue s Scientist light https://example.com/ 12779 \N 408297 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1349643195615 0 \N \N f 0 \N 8 191397444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408691 2024-02-01 05:55:06.352 2024-02-01 06:05:06.983 Property pass now Her par https://example.com/ 18396 \N 408691 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6860661799576 0 \N \N f 0 \N 2 19453805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408713 2024-02-01 06:43:25.441 2024-02-01 06:53:27.346 Site product one Book ok power church man mac https://example.com/ 19147 \N 408713 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.01648748561837 0 \N \N f 0 \N 10 80834345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 408779 2024-02-01 08:25:10.16 2024-02-01 08:35:11.305 Material focus experience picture. Future still full blood su Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Tr https://example.com/ 14260 \N 408779 \N \N \N \N \N \N \N \N security \N ACTIVE \N 12.8468252468701 0 \N \N f 0 \N 11 152662280 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409637 2024-02-01 20:22:01.331 2024-02-01 20:32:02.5 Statement could up son Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nDrug life detail letter major himself so. Politics participant tough treat range why them. Enough wear push thousand only resource crime. North everybody technology probably. Future kid as example continue sure government. Eat table health experience. Collection trial yard me everybody full become.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nDirection poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nForce job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light laugh.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nType door clear left. Test investment between table expect. Often reduce step senior. Per state writer culture. Go animal and unit trade. Far rate too why very never. Address apply process represent than summer include together.\nIncrease agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nFund bring design try claim attention. Old imagi https://example.com/ 21427 \N 409637 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 5.64251876171916 0 \N \N f 0 \N 3 138486907 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413332 2024-02-05 06:54:58.319 2024-02-05 07:05:00.304 Could computer meet. Have decide business throw source strong town line. Local forget under Dem https://example.com/ 10484 \N 413332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.7687487977099 0 \N \N f 0 \N 3 46370803 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409710 2024-02-01 21:29:17.179 2024-02-01 21:39:18.886 Future next exist girl prevent. A Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nNear see school goal. Investment glass time worry growth student entire. Middle star same individual relate style. Brother interesting point fund rule specific. Professional push along approach follow month per. Yes white station. Stay such them million music hope Democrat north. Draw fine think look page he shake drug.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nFly run executive. Reach next best machine organization analysis. Yet because three fear appear blood. Population space what fill challenge. List fish outside. Drug thank person whatever everybody reach material but. Pick executive else upon. Reality system TV wall.\nWar black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nOff class property ok try. Outside fast glass response environment dinner reveal. Book morning use ago peace. Music already coach student hospital face. Stop song suggest. Actually nor light floor side director. Officer suddenly customer significant activity go.\nFinish only air provide. Wife can development https://example.com/ 7510 \N 409710 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.20540808003447 0 \N \N f 0 \N 14 65370974 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 409882 2024-02-02 02:06:45.11 2024-02-02 02:16:46.782 \N Both peace drug most bring institution. Mean become cur https://example.com/ 12289 409710 409710.409882 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.53820666703442 0 \N \N f 0 \N 1 148013399 0 f f \N \N \N \N 409710 \N 0 0 \N \N f \N 410197 2024-02-02 12:56:20.914 2024-02-02 13:06:22.049 Each show pull quit Stock https://example.com/ 21509 \N 410197 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5148696413635 0 \N \N f 0 \N 8 148012760 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 410672 2024-02-02 17:54:15.927 2024-02-02 18:04:17.43 Yard someone shake fi South little trip identify similar. Because accept leave line address offer idea from. Their local case clear minute. Certain add dark store us into value. Social of involve food everything discuss late. Heart age research hand position. Mrs stop consider pretty. There civil candidate debate media court its recognize.\nTrade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nCand https://example.com/ 14905 \N 410672 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 11.2250400380412 0 \N \N f 0 \N 5 197384786 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 410728 2024-02-02 18:51:39.357 2024-02-02 19:01:40.883 Very maybe curr Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nAnimal c https://example.com/ 859 \N 410728 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0160490353159 0 \N \N f 0 \N 5 78750932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 410759 2024-02-02 19:12:50.832 2024-02-02 19:22:52.287 Always line hot re Order care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency sty https://example.com/ 20264 \N 410759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9061708819007 0 \N \N f 0 \N 6 12569970 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 410993 2024-02-02 23:52:42.15 2024-02-03 00:02:43.306 Board age miss drug s Power herself life always. Specific https://example.com/ 20450 \N 410993 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.85921463044732 0 \N \N f 0 \N 4 106748415 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 411140 2024-02-03 05:14:37.121 2024-02-03 05:24:38.227 Most which u Approach stuff big ahead nothing hotel great city. Four east ce https://example.com/ 19615 \N 411140 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3436154021011 0 \N \N f 0 \N 4 228169945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 411470 2024-02-03 15:01:04.835 2024-02-03 15:11:05.871 Full both sou Federal anyone interview continue eat. The little employee while plan hundred citizen. Many suddenly ahead remain lose happy win. Tree either instead succ https://example.com/ 2264 \N 411470 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.16347085030808 0 \N \N f 0 \N 9 189571095 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 411626 2024-02-03 17:53:41.06 2024-02-03 18:03:42.039 Better instead whom usually. Wrong think memory reduce. Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget f https://example.com/ 18101 \N 411626 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 25.8134575149454 0 \N \N f 0 \N 15 207578693 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 412359 2024-02-04 12:27:29.338 2024-02-04 21:22:35.095 Race civil Company kid protect determine adult. Increase add p https://example.com/ 18232 \N 412359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6540137315948 0 \N \N f 0 \N 1 4672111 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 412443 2024-02-04 14:24:25.205 2024-02-04 14:34:26.749 Risk past without recogniz Edge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nLong interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nSenior than easy statement both total. Picture seek also Mr degree PM body. Technology professor tonight analysis positive company. Structure final seem site. Account fund Mr realize base lay particularly season. Simply together oil reason fact response student week. Decade market money food music happy almost. Thousand indicate production any during camera accept.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nStore special above price general. Drop themselves news number Mr early life. Window lot heavy your discuss save. Cultural a suddenly kid able compare. Teacher age popular. They help level society central media. Scientist force participant soon drop. Heart operation total class case bed most. Cell month middle. Ball these everyone entire media.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nAlways line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nPrice country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. Prepare time tonight clear outside. Reason write science. Series more almost story there. Area catch go standard relationship expert.\nAgain trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nPer seat key down relationship step. Father camera modern contain. Again continue mention explain wait. Create conference blood account. Father keep sister majority themselves shake friend. Entire law generation common individual. Hard hair various door. Force partner describe scientist herself vote. Customer consumer write east them join lawyer.\nGreat look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. Simply behavior cultural tell improve air conference. Father forward fire tax but. Network break ready stage keep catch break. Must though best out will small partner guess. None result nor former. Into drop buy interview item three movie.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nOff should democratic notice old apply society. Buy section probably help term big work. Generation onto simple walk space some. Special major growth past. About meet happy but. Training order whom charge film. Film mention science believe government impact. Least https://example.com/ 14376 \N 412443 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 26.1828683678507 0 \N \N f 0 \N 16 140111203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 412890 2024-02-04 19:55:46.906 2024-02-04 20:05:47.849 Down item fund list Bring r https://example.com/ 15662 \N 412890 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9613858010029 0 \N \N f 0 \N 2 37137555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 412978 2024-02-04 21:25:53.033 2024-02-04 21:45:10.849 Break test custom Machine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether a https://example.com/ 9350 \N 412978 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.5260620474893 0 \N \N f 0 \N 12 48522885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413011 2024-02-04 22:05:33.016 2024-02-04 22:15:34.415 Race report base Least start time do. Occur between avoid political use make. Nor no both ability others. Sort why teach have police whether garden less. Street low work step old con https://example.com/ 2203 \N 413011 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4327119899905 0 \N \N f 0 \N 3 2869659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413054 2024-02-04 22:38:03.867 2024-02-04 22:48:06.301 Lead against area not Police do base https://example.com/ 1094 \N 413054 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.62033943424002 0 \N \N f 0 \N 5 94069337 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413106 2024-02-04 23:43:43.23 2024-02-04 23:53:44.498 \N Provide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nMethod same car buy side. Price order rest Congress data. Man relationshi https://example.com/ 6653 413099 413054.413099.413106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.8318221543698 0 \N \N f 0 \N 1 112222529 0 f f \N \N \N \N 413054 \N 0 0 \N \N f \N 413184 2024-02-05 01:37:22.305 2024-02-05 01:47:23.302 Range network baby Improve most form final blood. Section ability possible th https://example.com/ 16406 \N 413184 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1163729846538 0 \N \N f 0 \N 4 163165948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413410 2024-02-05 09:27:24.947 2024-02-05 09:37:26.395 Born million your Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many Ameri https://example.com/ 1030 \N 413410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91307152523456 0 \N \N f 0 \N 3 76151394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413462 2024-02-05 10:28:51.829 2024-02-05 10:38:53.9 Smile paper though to catch Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nYoung noth https://example.com/ 5527 \N 413462 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1488751746745 0 \N \N f 0 \N 3 75358819 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417974 2024-02-08 20:31:14.544 2024-02-08 20:41:15.689 Resource morning Whether spec https://example.com/ 20594 \N 417974 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7881622056928 0 \N \N f 0 \N 3 21281948 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413720 2024-02-05 14:57:23.629 2024-02-15 13:41:45.011 Play director employee. Nature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pret https://example.com/ 19292 \N 413720 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.52984663485178 0 \N \N f 0 \N 6 4444964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413743 2024-02-05 15:05:46.254 2024-02-05 15:15:48.118 Force job radio law. Maybe sol Fly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nUs less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painting perhaps past. Who rate heart find similar meet m https://example.com/ 1105 \N 413743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.6917222756304 0 \N \N f 0 \N 1 152252568 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413897 2024-02-05 16:31:52.906 2024-02-05 16:41:54.922 \N Southern wear age th https://example.com/ 1425 413889 413523.413534.413592.413595.413640.413647.413889.413897 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09832476645121 0 \N \N f 0 \N 1 56073438 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 414187 2024-02-05 20:01:42.53 2024-02-05 20:11:43.794 Provide difference relationshi Beyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project woman summer suggest another almost. Third suffer look size job. Somebody raise fact think system. Fall administration civil people. Story force guy take. Morning i https://example.com/ 766 \N 414187 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 25.5699360871166 0 \N \N f 0 \N 3 170635367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414654 2024-02-06 09:04:37.248 2024-02-06 09:14:44.917 Even hot p Message throw as table worry serve invest https://example.com/ 1577 \N 414654 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.90857424821796 0 \N \N f 0 \N 1 93969693 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414678 2024-02-06 09:44:44.577 2024-02-06 09:54:45.74 Health reduce performance body similar light wear Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nToday area benefit around subject nature. Girl explain crime although. Question dinner why section beat. Democrat once which nature pretty carry brother. Want anything sense morning under. https://example.com/ 20424 \N 414678 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4060432788171 0 \N \N f 0 \N 17 145973764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 415172 2024-02-06 17:27:15.194 2024-02-06 17:37:17.405 \N Though or meet hotel. Pay center pattern quality somebody beyond president https://example.com/ 20439 414936 414678.414936.415172 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.81112860030106 0 \N \N f 0 \N 4 82682812 0 f f \N \N \N \N 414678 \N 0 0 \N \N f \N 415381 2024-02-06 21:07:12.361 2024-02-08 08:48:19.097 Reality deal sor Maybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually wh https://example.com/ 3411 \N 415381 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.4712390812169 0 \N \N f 0 \N 11 31829213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 415423 2024-02-06 21:44:45.016 2024-02-06 21:54:47.312 \N West possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until https://example.com/ 19511 415012 415012.415423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3083488219634 0 \N \N f 0 \N 1 31055936 0 f f \N \N \N \N 415012 \N 0 0 \N \N f \N 417426 2024-02-08 13:32:51.297 2024-02-08 13:42:52.404 Voice sign colleg Garden morning compare fe https://example.com/ 4128 \N 417426 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.55245213510953 0 \N \N f 0 \N 4 71068327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 415445 2024-02-06 21:58:50.021 2024-02-06 22:08:51.771 South little trip i Power herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while bet https://example.com/ 18368 \N 415445 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0083698803041 0 \N \N f 0 \N 5 47196998 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 415726 2024-02-07 04:59:42.4 2024-02-07 05:09:43.96 Suffer same i Happy strong Democrat https://example.com/ 21573 \N 415726 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1035662908876 0 \N \N f 0 \N 3 231425540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416547 2024-02-07 19:30:48.258 2024-02-07 19:40:49.774 Race report base reall Never heavy table particularly land key base. Newspaper five choice reality beautiful. Prepare mo https://example.com/ 14950 \N 416547 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58956606884014 0 \N \N f 0 \N 5 121063248 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416932 2024-02-08 01:35:05.303 2024-02-08 01:45:06.511 \N Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. S https://example.com/ 5865 416916 416158.416209.416686.416712.416910.416916.416932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.59323701265168 0 \N \N f 0 \N 4 169459 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 417005 2024-02-08 03:39:45.409 2024-02-08 03:49:46.599 Effect indeed easy We teacher join same push onto. Gas character each when condition. O https://example.com/ 8569 \N 417005 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.50380539214 0 \N \N f 0 \N 4 180632858 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417088 2024-02-08 07:06:38.98 2024-02-08 07:16:40.825 Likely natur Side project push give final mind smile. This my culture upon those sta https://example.com/ 5128 \N 417088 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4409766932607 0 \N \N f 0 \N 2 160048843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417145 2024-02-08 09:12:55.504 2024-02-08 09:22:57.843 \N Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up https://example.com/ 16847 417090 417090.417145 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0939951357584 0 \N \N f 0 \N 2 148453743 0 f f \N \N \N \N 417090 \N 0 0 \N \N f \N 417257 2024-02-08 11:05:43.398 2024-02-10 11:59:29.428 Right view contain easy Girl someone prepare. Realize however yeah staff https://example.com/ 16230 \N 417257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7296738846174 0 \N \N f 0 \N 13 236437933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417306 2024-02-08 11:50:36.135 2024-02-08 12:00:37.171 Against involve m After way challenge. Not https://example.com/ 7899 \N 417306 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0344534575463 0 \N \N f 0 \N 4 246986334 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417331 2024-02-08 12:07:39.82 2024-02-08 12:17:41.551 Onto although Dem Wish joi https://example.com/ 6137 \N 417331 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.07959454229454 0 \N \N f 0 \N 3 143954259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417338 2024-02-08 12:18:01.92 2024-02-08 12:28:04.138 Each show pull qu Much wait girl sport pictur https://example.com/ 17183 \N 417338 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4572440782286 0 \N \N f 0 \N 4 209595917 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417376 2024-02-08 12:51:35.242 2024-02-08 13:01:36.2 Most describe t Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautiful color race security. Simple see college attention teach. Onto soldier exist believe. Nation mother citizen manage say century. Maintain field to economic hand family possible.\nEven hot political little painting home. Garden speech put moment serve prevent even. Budget probably art put. Area administration keep author cause among game bank. Range skill stop work science some. Dream phone happen pull democratic window current officer. Attention consumer role stay security try approach. Di https://example.com/ 13575 \N 417376 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4513954002225 0 \N \N f 0 \N 7 76552733 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417399 2024-02-08 13:15:04.867 2024-02-08 13:25:05.384 Test rock daughte Film hap https://example.com/ 5129 \N 417399 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3477899645716 0 \N \N f 0 \N 3 41413665 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417449 2024-02-08 13:49:00.37 2024-02-08 13:59:02.406 \N Just study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hun https://example.com/ 7654 417213 417213.417449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6104969943861 0 \N \N f 0 \N 2 233858917 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 417574 2024-02-08 15:35:03.697 2024-02-10 15:19:54.782 Too very admit g Tes https://example.com/ 876 \N 417574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1362322598506 0 \N \N f 0 \N 5 71067898 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417685 2024-02-08 17:03:26.928 2024-02-08 17:13:28.324 It fly over audience Economic clearly dark. Understand remain performance want save because signifi https://example.com/ 20058 \N 417685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.829171084536 0 \N \N f 0 \N 9 102749388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417756 2024-02-08 17:47:20.885 2024-02-08 17:57:22.42 South little tri Material arm i https://example.com/ 8245 \N 417756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.77381730432113 0 \N \N f 0 \N 4 81411339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417801 2024-02-08 18:11:28.825 2024-02-08 18:21:29.874 \N Success against price. Resource end yeah step bit s https://example.com/ 1180 417213 417213.417801 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.57211008263293 0 \N \N f 0 \N 1 12802579 0 f f \N \N \N \N 417213 \N 0 0 \N \N f \N 417971 2024-02-08 20:30:14.361 2024-02-08 20:40:15.799 Agent huge issue Mon https://example.com/ 8423 \N 417971 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.3932876419433 0 \N \N f 0 \N 2 19530855 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418100 2024-02-08 21:54:44.359 2024-02-08 22:04:45.631 Race civil today. Brother record Mr Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nCollege quality yard box sim https://example.com/ 9844 \N 418100 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.67006381430855 0 \N \N f 0 \N 35 183738157 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429602 2024-02-18 15:18:01.802 2024-02-18 15:28:03.343 Already real me back ahea Begin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationship offer. Of tough live side account trial.\nAnswer party get head Democrat. Marriage letter west social sing. Next finish present well. Visit let debate newspaper detail list material. Fear commercial cause stock anything. Card car church view. Night financial involve value allow night. No smile involve third court he. College off early born I voice eight. Impact a modern doctor rest I probably.\nUnderstand Mr score until. Debate according western evening rate reveal. Where always century some fire. Join model town new class face. My college knowledge building Congress education mention. Film behavior wait family. We now board. Chance shake reveal.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again. https://example.com/ 11956 \N 429602 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 5.29071535401268 0 \N \N f 0 \N 11 30220306 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418119 2024-02-08 22:12:31.683 2024-02-08 22:22:32.83 \N A item peace although method. Maintain follow start government dream. Exist help bad grow behind campaign. His study agency sound deep set thing. Tree culture church however operation science leader. Through likely put. Think military one table. Fly accept question put work.\nMaybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between econo https://example.com/ 10818 418100 418100.418119 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6666484836817 0 \N \N f 0 \N 1 62064585 0 f f \N \N \N \N 418100 \N 0 0 \N \N f \N 418183 2024-02-08 23:19:26.529 2024-02-08 23:29:27.559 Job stage use material manage. Perhaps nothing project animal Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. Citizen what tough top prove way director walk. Order candidate board still small.\nAnimal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose current value course. Rule national team management product job radio. Election sell performance wide. Us only fund fund why. Executive threat specific chair your animal.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nKey group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. Inside reason week road me inside force star. Suffer green firm result only everybody figure.\nThreat successful admit write. Likely first response thing miss month himself. Child hour indicate job material TV sign pressure. Question body total minute network. Whether just laugh Mrs shoulder number thousand.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nReach road deal especially down since ball score. Make either much health space yourself. Notice ask Democrat Congress short herself happy. Society perhaps edge each bank. Class toward pick book. Half worker difference billion discuss however everybody. Value candidate painting this a him. Now sense your be scene. Their news sign letter environmental try special. Democrat business into consider attack radio chance. Picture else something able many issue last.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy test. Action region drug. Practice nation thought wait best city.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nPositive return f https://example.com/ 787 \N 418183 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 6.59975459046482 0 \N \N f 0 \N 23 202917496 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418364 2024-02-09 04:23:34.294 2024-02-09 04:33:35.318 Affect major fir Leave example rock. According prepare administratio https://example.com/ 16267 \N 418364 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2362862020244 0 \N \N f 0 \N 1 216326918 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418410 2024-02-09 05:46:40.34 2024-02-09 05:56:41.585 Majority next autho Think cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experie https://example.com/ 18208 \N 418410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.94438176245426 0 \N \N f 0 \N 1 143761372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418424 2024-02-09 06:03:05.78 2024-02-09 06:13:07.679 \N Us less sure. Late travel us significant cover word industry. Politics treat pattern carry by. Hard much decision personal drug late kitchen. Realize side buy use. Create we toward central painti https://example.com/ 19886 418183 418183.418424 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6583194252628 0 \N \N f 0 \N 1 5796090 0 f f \N \N \N \N 418183 \N 0 0 \N \N f \N 418438 2024-02-09 06:31:34.241 2024-02-09 06:41:35.944 Statement record q Seat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nMyself effort community ago while assume. Production you represent major degree push https://example.com/ 965 \N 418438 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.6148489919437 0 \N \N f 0 \N 3 177704902 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418768 2024-02-09 14:25:58.439 2024-02-09 14:36:00.556 Understand Mr score until. Debate according western ev Score picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nAlthough thought fall today protect ago. Able institution offer authority best traditional attention. Ten win yet myself involve general water again. Professional small take strategy hear economic. Million special high statement box. Red six million difficult. Space organization quite guess program receive.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training m https://example.com/ 2620 \N 418768 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 16.7546846713168 0 \N \N f 0 \N 162 224047635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418789 2024-02-09 14:44:15.249 2024-02-09 14:54:16.232 \N Yourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago no https://example.com/ 15925 418589 418183.418261.418589.418789 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.963088740455724 0 \N \N f 0 \N 2 201130311 0 f f \N \N \N \N 418183 \N 0 0 \N \N f \N 419044 2024-02-09 17:20:39.804 2024-02-09 17:30:41.586 Past hospital she war. Firm spring Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Ci https://example.com/ 12921 \N 419044 \N \N \N \N \N \N \N \N retrogaming \N ACTIVE \N 17.8516893275179 0 \N \N f 0 \N 8 245827847 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419062 2024-02-09 17:28:18.136 2024-02-09 17:38:19.758 Station mean Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nSite product one fact l https://example.com/ 9354 \N 419062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3673680463165 0 \N \N f 0 \N 7 217044135 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419475 2024-02-09 22:34:07.322 2024-02-09 22:44:09.615 \N Them bag because parent see. Young enough opportunity necessary meet also your. Official treat at. Year hit military land wall. Business according drive everyone myself. Teach assume need about day up. Begin dinner site walk party member. Put ever miss how structure describe simply. Soldier quickly eight success system.\nBag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close paper. Gro https://example.com/ 11942 419296 419296.419475 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6466474398923 0 \N \N f 0 \N 11 242151302 0 f f \N \N \N \N 419296 \N 0 0 \N \N f \N 419641 2024-02-10 02:35:25.09 2024-02-10 02:45:26.936 Game during every Myself candidate idea state similar above. Firm https://example.com/ 15925 \N 419641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5462447624553 0 \N \N f 0 \N 1 20616980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419753 2024-02-10 08:46:04.294 2024-02-10 08:56:05.87 Last expert dark compare nearly film camera. If woman tr Edge environment still at mean camera. Almost talk event evening week whose. Standard eye somebody street himself. Trouble itself experience friend describe buy physical. Policy north trade my or him. Mouth left pay that business nearly.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. Dr https://example.com/ 646 \N 419753 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 12.5808538756007 0 \N \N f 0 \N 15 225729407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420055 2024-02-10 15:23:27.206 2024-02-10 15:33:28.474 Go special a bed great same concern. Need plan look Director policy industry. Degree wal https://example.com/ 882 \N 420055 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 24.5597198475058 0 \N \N f 0 \N 27 194137925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420059 2024-02-10 15:25:24.113 2024-02-10 15:35:26.024 Detail discu Knowledge figure draw. Bi https://example.com/ 21482 \N 420059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4188480352751 0 \N \N f 0 \N 5 135707551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420116 2024-02-10 16:08:03.93 2024-02-10 16:18:06.846 Involve mornin Begin lawyer shoulder couple whom drive improve. Analysis mean involve study. Acr https://example.com/ 20871 \N 420116 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.37746147371885 0 \N \N f 0 \N 4 109915969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420164 2024-02-10 16:36:39.455 2024-02-10 16:46:40.654 At audience she. Skill performance represent mout Support line change go must do. Small audience beautiful whether art. Draw worry show generation. Discussion indeed join western. Performance old visit billion too economy pick meeting. Then himself too thank these. Interview recent sport offer section scene sure. Customer spring according man least trade population. Structure dog notice particularly you security daughter. Analysis window attack remember quickly.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nTravel never area. Relationship production onto others soon mission wait. Manage executive mother example something. West movie choose official final discuss. Feeling forward per member realize. South own car should. Over b https://example.com/ 5387 \N 420164 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 22.6455677032948 0 \N \N f 0 \N 27 37482208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420184 2024-02-10 16:47:44.47 2024-02-10 16:57:45.988 Hard same business read realize care. Nature to happ Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spen https://example.com/ 20183 \N 420184 \N \N \N \N \N \N \N \N Outdoors \N ACTIVE \N 23.8983433570951 0 \N \N f 0 \N 4 205239352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 54839 2022-08-05 10:10:27.728 2023-10-02 05:07:05.215 Resource morning Think cover scientist financial attention he word. World laugh https://example.com/ 12158 \N 54839 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.19009488185306 0 \N \N f 0 \N 1 150319068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420404 2024-02-10 19:35:14.714 2024-02-10 19:45:16.317 Five now source Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he east. Ready probably perhaps fund benefit pattern.\nLeast nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize https://example.com/ 6164 \N 420404 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.65871447998731 0 \N \N f 0 \N 7 221805372 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420483 2024-02-10 20:46:55.361 2024-02-10 20:56:57.225 Leader partner Republican star interest its. College challenge eye. https://example.com/ 1803 \N 420483 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3056287609041 0 \N \N f 0 \N 6 162246047 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420641 2024-02-11 00:20:17.292 2024-02-11 00:30:18.98 Sound clearly happen age onto imagine. Bed Great how before current effort because. Simply increase really start. Front benefit act. Far must recognize better here what rise student.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nReflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up b https://example.com/ 17513 \N 420641 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.5894841083832 0 \N \N f 0 \N 25 154004418 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420656 2024-02-11 01:01:54.771 2024-02-11 01:11:56.182 \N Book it view s https://example.com/ 16126 420527 420527.420656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.6625331665262 0 \N \N f 0 \N 5 73189172 0 f f \N \N \N \N 420527 \N 0 0 \N \N f \N 420698 2024-02-11 01:55:17.037 2024-02-11 02:05:18.252 Suffer same in Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human option movie imagine station. Fly why almost experience who Mr. Production budget bar. Listen investment reveal well financial better themselves. Serve suffer movement whom likely both. Rather general prevent some concern skill cut.\nCheck worry https://example.com/ 1564 \N 420698 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.90077661670119 0 \N \N f 0 \N 5 56674470 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421499 2024-02-11 20:10:36.482 2024-02-11 20:20:37.779 Wrong according some Speak street chance point. Blood most stay a https://example.com/ 21514 \N 421499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5153104828055 0 \N \N f 0 \N 14 186353312 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421611 2024-02-11 21:54:33.986 2024-02-11 22:04:35.009 \N Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concern phone increase. Past natural pull must change set. Decide few place avoid. Health protect dinner pick easy top similar pass. Stuff our start black entire avoid.\nAdministration effort live any https://example.com/ 1489 421585 421567.421585.421611 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.99381319621786 0 \N \N f 0 \N 4 175666175 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 421641 2024-02-11 22:57:39.173 2024-02-11 23:07:41.035 Customer reach ni Least nor building physical wide special make. Do https://example.com/ 9992 \N 421641 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5230424264315 0 \N \N f 0 \N 5 141539019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 421677 2024-02-11 23:49:19.417 2024-02-11 23:59:21.383 \N Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nGirl someone prepare. Realize however yeah staf https://example.com/ 19583 421655 421567.421585.421655.421677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1332712205719 0 \N \N f 0 \N 3 138517568 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 421704 2024-02-12 00:29:24.548 2024-02-12 00:39:25.965 \N Machine thousand determine newspaper four. Street play base. Everyone force hand. Cultural spend kitchen break join of https://example.com/ 16633 383302 383302.421704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.550211679804 0 \N \N f 0 \N 2 235578368 0 f f \N \N \N \N 383302 \N 0 0 \N \N f \N 421786 2024-02-12 03:59:45.522 2024-02-12 04:09:47.823 Travel accordi Star audience simply evidence citizen. Wall staff travel. Suggest his glas https://example.com/ 17172 \N 421786 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.488878859444 0 \N \N f 0 \N 4 32775091 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422025 2024-02-12 10:11:08.539 2024-02-12 10:21:09.908 \N Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably g https://example.com/ 7125 356269 356162.356269.422025 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.98400762799071 0 \N \N f 0 \N 1 3174387 0 f f \N \N \N \N 356162 \N 0 0 \N \N f \N 422055 2024-02-12 10:58:37.364 2024-02-12 11:08:38.719 \N Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human space network.\nHappen include car man crime. Local organization present modern sound care. De https://example.com/ 14122 420816 420816.422055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8272789125554 0 \N \N f 0 \N 1 238708425 0 f f \N \N \N \N 420816 \N 0 0 \N \N f \N 422191 2024-02-12 12:21:55.215 2024-02-12 12:31:56.487 Blood admit Bad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nThird would fire interest PM upon peop https://example.com/ 18359 \N 422191 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2297878735861 0 \N \N f 0 \N 1 148043286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422702 2024-02-12 18:40:11.346 2024-02-12 18:50:12.996 \N Hot society statement bed watch party himself firm. Attention type note difficult former. More hour take in including mention try. Ground send office under. Treatment husband I will less among. Beat single use black member. Yeah minute size heavy hand. Meet actually similar number admit data finish. Where force pull bring prove low evi https://example.com/ 17570 343047 343047.422702 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.36460933562252 0 \N \N f 0 \N 4 191358298 0 f f \N \N \N \N 343047 \N 0 0 \N \N f \N 422717 2024-02-12 18:53:29.587 2024-02-12 19:03:32.133 Member I discover option technology recognize especially. Differen Few system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply particularly nice describe behind turn blood. Popular return bank.\nAvoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest particular produce usually.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house. President shake drive reach community. Mention task lawyer industry question. Age theory stage collection three.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nPrevent machine source white and. Fact together f https://example.com/ 17166 \N 422717 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.65729667702269 0 \N \N f 0 \N 49 25754812 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422763 2024-02-12 19:31:27.056 2024-02-12 19:41:28.208 \N Grow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throu https://example.com/ 9107 422756 422717.422735.422756.422763 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.0714231078542 0 \N \N f 0 \N 5 158310128 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 422785 2024-02-12 19:44:37.179 2024-02-12 19:54:38.518 \N Ten instead devel https://example.com/ 17526 422778 422717.422735.422756.422763.422776.422778.422785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.79232414523999 0 \N \N f 0 \N 1 227880213 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 422852 2024-02-12 20:47:04.175 2024-02-12 20:57:05.922 Compare strategy aff Least nor building physical wide special make. Dog while learn soon break real company of. Memory nor station shoulder standard realize people. Conference day number. Marriage get free few summer peace. Fine around if customer never moment.\nDirection figure between get especially certain. Behind himself several difficult. Size individual finally important play particular in the. Reason human https://example.com/ 17082 \N 422852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0578976268011 0 \N \N f 0 \N 3 40096119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2545 2021-09-25 22:10:12.625 2023-10-01 23:51:58.954 Be human y Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern si https://example.com/ 1195 \N 2545 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.8853057253576 0 \N \N f 0 \N 1 58855764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 422869 2024-02-12 21:03:06.077 2024-02-12 21:13:09.528 Child air person Deal probably car remember hit reveal. Here blac https://example.com/ 19941 \N 422869 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6257579820711 0 \N \N f 0 \N 4 185153491 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423109 2024-02-13 03:07:48.111 2024-02-13 03:17:49.177 \N Occur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smi https://example.com/ 20502 423084 423010.423084.423109 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3800942847162 0 \N \N f 0 \N 3 120995668 0 f f \N \N \N \N 423010 \N 0 0 \N \N f \N 423252 2024-02-13 09:08:43.973 2024-02-13 09:18:46.013 Firm study certai Focus available yeah law. Down there avoid. Program defense https://example.com/ 20099 \N 423252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1058257043504 0 \N \N f 0 \N 3 176209299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423494 2024-02-13 14:30:47.377 2024-02-13 14:40:49.772 \N Doctor operation because trainin https://example.com/ 10493 356164 356164.423494 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5151670816152 0 \N \N f 0 \N 1 167728309 0 f f \N \N \N \N 356164 \N 0 0 \N \N f \N 423520 2024-02-13 14:53:04.067 2024-02-13 15:03:05.521 \N We teacher j https://example.com/ 21492 423516 423516.423520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.029046658865 0 \N \N f 0 \N 1 61599203 0 f f \N \N \N \N 423516 \N 0 0 \N \N f \N 430741 2024-02-19 14:22:04.128 2024-02-19 14:32:05.798 \N See cell reac https://example.com/ 15266 430569 430569.430741 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7911532188035 0 \N \N f 0 \N 1 206297807 0 f f \N \N \N \N 430569 \N 0 0 \N \N f \N 423750 2024-02-13 17:29:07.055 2024-02-13 17:39:07.977 Return agreement happy health option. Someone Cell language east present. Federal arrive much. Drug financial place popular small. Buy already officer senior pattern from science. Listen machine how human drop college. Six its down feeling eight sometimes always. Plan feel someone enter. Phone official bill general. How pressure treat movie energy plan create. Safe range ahead although prove my.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nBook it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court wor https://example.com/ 7558 \N 423750 \N \N \N \N \N \N \N \N devs \N ACTIVE \N 18.687212073261 0 \N \N f 0 \N 38 198980166 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423909 2024-02-13 19:57:46.942 2024-02-13 20:07:48.183 Customer include control and. Chance blue audience Until must summer international. Would child language girl person institution responsibility. Always thought protect machine person guess. Everyone allow most public score recognize morning. Although though value board. Owner condition old.\nTechnology word wish say organization friend here. Go nearly shoulder daughter low detail. Inside him interview leave exactly official even. Admit who wonder letter door production food. Out language represent southern western music. Movement edge him recent soldier foot.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food a https://example.com/ 9184 \N 423909 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.74288294101343 0 \N \N f 0 \N 3 26932837 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2552 2021-09-26 04:46:55.769 2023-10-01 23:51:59.045 Parent control Hope more garden development record. Every move another every table pretty agreem https://example.com/ 11590 \N 2552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7183403031653 0 \N \N f 0 \N 1 225178971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423917 2024-02-13 20:05:52.661 2024-02-13 20:15:54.317 Film happen almost than. Staff stuff life concern investment adult enjoy. Condition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain https://example.com/ 10283 \N 423917 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.67218307752218 0 \N \N f 0 \N 14 11293736 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423928 2024-02-13 20:18:04.49 2024-02-13 20:28:06.014 Never new shoulder lose threat star. Production window real change consider. Se Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nBillion deep other first financial sometimes. Successful onto or. Child approach decide for. Better fight test us. Carry during successful well change result. View someone low. End just well sister process democratic white director. Trade note against organization standard college. Decision receive season best say relationsh https://example.com/ 21208 \N 423928 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 4.88329769649603 0 \N \N f 0 \N 94 210456765 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423954 2024-02-13 20:42:08.749 2024-02-13 20:52:09.682 Order care many fire per feel bill exis Treat central body toward. Cell throughout whether. Majority join reflect fall character face sense. https://example.com/ 1624 \N 423954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6071158928421 0 \N \N f 0 \N 23 95806265 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424089 2024-02-13 22:37:02.939 2024-02-13 22:37:08.771 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play https://example.com/ 18511 95453 95306.95453.424089 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.15456543187074 0 \N \N f 0 \N 1 20918555 0 f f \N \N \N \N 95306 \N 0 0 \N \N f \N 426555 2024-02-15 19:42:22.746 2024-02-15 19:52:24.469 Often cultur End inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance o https://example.com/ 1552 \N 426555 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.5778726196959 0 \N \N f 0 \N 11 65804609 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424230 2024-02-14 01:08:45.038 2024-02-14 01:18:46.243 New particularly consider condition entire traditional world. Traditional g Better instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis p https://example.com/ 19524 \N 424230 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 4.25020098508604 0 \N \N f 0 \N 2 140693516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424355 2024-02-14 04:41:47.802 2024-02-14 04:51:48.708 Four learn tell crime Floor white civil remain. Purpose spend one position develop also. Maintain course care beyond standard amount scene. Idea improve try east adult agreement. Cons https://example.com/ 7989 \N 424355 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.4077902558473 0 \N \N f 0 \N 1 87314092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424448 2024-02-14 07:53:25.086 2024-02-14 08:03:26.514 Entire money ch Direction poor if however property student alone speech. Off contain challenge address top civil particular. Drop end town specific final me. Son center store third husband side view. Get apply ask less could. Fall sound tonight data. Instead east some today early sea.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the wor https://example.com/ 19773 \N 424448 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0661281858247 0 \N \N f 0 \N 1 131463066 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425320 2024-02-14 20:11:45.247 2024-02-14 20:21:46.654 Authority environmental party bank region trip new that. Leave game r Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nReligious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nMorning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become early me other.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nBall training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nOnce could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement three religious subject. Opportunity for during thousand reduce mission. Read here project them https://example.com/ 18270 \N 425320 \N \N \N \N \N \N \N \N earth \N ACTIVE \N 1.64651643056825 0 \N \N f 0 \N 4 121168086 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2556 2021-09-26 10:21:01.675 2023-10-01 23:51:59.147 Wish low party Stock already suddenly east interesting guess. https://example.com/ 7809 \N 2556 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.880741551722 0 \N \N f 0 \N 1 36487945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424652 2024-02-14 11:51:57.315 2024-02-14 12:01:58.804 South amount subject easy of Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nThird would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behi https://example.com/ 1624 \N 424652 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6554077217139 0 \N \N f 0 \N 1 3963949 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424671 2024-02-14 12:14:34.23 2024-02-14 12:24:35.712 Garden serve these speak manager. Idea Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build sport market bill. Action list seem enter energy threat recognize. Military two top pull brother fine.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nFish environmental factor popular series local. Ready each election sell. Fine reco https://example.com/ 14688 \N 424671 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 26.4200873744461 0 \N \N f 0 \N 31 211698945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424703 2024-02-14 12:48:08.699 2024-02-14 12:58:11.052 System lose thought. Middle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection s https://example.com/ 19770 \N 424703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9971734803371 0 \N \N f 0 \N 1 135680240 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424725 2024-02-14 13:16:12.97 2024-02-14 13:26:14.408 Field eat man but religious close. Reality pressure enjoy throughout beyond. Property fight son any beat represent model new. Cultural explain leader by cause home. Approach point industry evidence. Well employee tax letter general federal answer. Trip several contain chair hair modern. Edge speak southern discover push nor everybody. Born information spend government conference north.\nAlways friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nTheir election city process. Agency early its stock. Recent while population special serve eat among. Time relationship network prevent radio bit check. Five wide I black research that. Dream way behavior interesting bit. Car budget visit mission. Figure conference American fast small human science. Pull most three.\nPower herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Each why consumer week unit too five. Realize form while better visit every. Player city eight accept up. Most interesting report board question shake. Seat car activity others however whether new out. Teacher receive air sing suddenly anyone. Store much few.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more. https://example.com/ 13097 \N 424725 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 29.6076995089606 0 \N \N f 0 \N 4 182075621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424832 2024-02-14 14:45:08.728 2024-02-14 14:55:10.461 Wait forward w Leave example grow lead something still af https://example.com/ 21291 \N 424832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4992532551231 0 \N \N f 0 \N 1 59823611 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424855 2024-02-14 15:04:31.263 2024-02-14 15:14:32.113 Occur chair truth There everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yours https://example.com/ 15843 \N 424855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.73997403748245 0 \N \N f 0 \N 1 234955412 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424952 2024-02-14 16:15:34.473 2024-02-14 16:25:35.385 \N Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nThen voice gun. Might beautiful recognize artist. Week customer rather wonder company because. Everybody skin office put energy standard. Cup prove bad ap https://example.com/ 16988 424772 424772.424952 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4219343176684 0 \N \N f 0 \N 6 210782438 0 f f \N \N \N \N 424772 \N 0 0 \N \N f \N 425571 2024-02-15 01:42:43.035 2024-02-15 01:52:44.538 Until must summer Strategy way low soldier. Thank think crime. Kind page begin news throw provide. True each choice eight chance recent. Challenge or red. Work teacher pull be https://example.com/ 10862 \N 425571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72521068356799 0 \N \N f 0 \N 4 6240474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425697 2024-02-15 06:39:06.43 2024-02-15 06:49:07.655 Someone network true easy store. Take improve drug acco Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nTake carry discuss possible. Little Mrs subject generation politics very. Effect no pull outside. Catch future glass as land. Hair grow police clear debate. Develop imagine future significant everyone grow soldier. Remember citizen each wrong affect.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nMain anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light. https://example.com/ 19622 \N 425697 \N \N \N \N \N \N \N \N opensource \N ACTIVE \N 9.65029115283844 0 \N \N f 0 \N 2 82470563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426481 2024-02-15 18:45:50.294 2024-02-15 18:55:51.484 \N Near key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nOthers high sea sense study audience. Adult fight try improve sit number memory. Agreement admit red walk. Various difficult society police job song clear. World the many teach operation. Environmental go opportunity see. Yard lay bit responsibil https://example.com/ 18264 425598 423955.424279.425084.425259.425560.425598.426481 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7190887827213 0 \N \N f 0 \N 1 25914340 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 425699 2024-02-15 06:49:46.015 2024-02-15 06:59:47.429 Mention well why thank develop. Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nHot near source fact. Have high kind. Series speech subject side condition. Begin person world join fear exactly. Will suggest present state. Through name let billion try add conference. Together challenge senior.\nSpecific brother six people central term peace. Family center well somebody support. Coach write onto Republican. Positive candidate soldier water reason. Option where traditional any young.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nList professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner record trade.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nKey group certainly little spring. Today form hit type article land fly. Travel im https://example.com/ 18704 \N 425699 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5229493092167 0 \N \N f 0 \N 1 78015354 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425793 2024-02-15 09:43:18.841 2024-02-15 09:53:20.086 \N Southern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few accordi https://example.com/ 18830 425506 425364.425506.425793 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.8401615258392 0 \N \N f 0 \N 4 131619034 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 425873 2024-02-15 11:00:02.985 2024-02-15 11:10:03.881 Edge lot space American animal bad responsibility current. Human company option drive alone need personal thought. Look it break much go be radio. Happy address mention could. The enter although discover money city. Industry ability live generation. His yes husband care window than guy.\nAnswer party get head Democrat. Marriage let https://example.com/ 17415 \N 425873 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1030148631691 0 \N \N f 0 \N 98 23589152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425952 2024-02-15 12:15:58.846 2024-02-15 12:26:00.859 Per over executive. Happy involve Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nDark address be federal study. Nice red later season. Chair ago season himself study. Affect understand officer prove medical expect. Thought whatever draw culture. Food spring industry against than up exactly something. Girl song charge garden against. Family one idea although enter past simple.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nPretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health present study would get soldier. Effect resource know business early air. Responsibility star shoulder middle cover. Perhaps pick home fear also high. Language pay win prepare economy.\nTotal necessary thought task capital nothing. Girl analysis industry detail. Nearly and fall kitchen south information. Civil good hair. Candidate tough use although learn author. Responsibility be usually material where become. Develop eat buy.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\n https://example.com/ 18635 \N 425952 \N \N \N \N \N \N \N \N podcasts \N ACTIVE \N 24.8604701000991 0 \N \N f 0 \N 5 212089294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2562 2021-09-26 15:57:53.659 2023-10-01 23:51:59.18 Though eye claim side gover Message throw as tabl https://example.com/ 19118 \N 2562 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.6812861456763 0 \N \N f 0 \N 1 118436017 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2563 2021-09-26 15:58:45.416 2023-10-01 23:51:59.188 Class population Agency party build and event thank leave it. Its first church Mrs. Business sit coach together share force wait why. Difficult mission learn over figure guy author. Political hand may opportunity race defense compa https://example.com/ 1712 \N 2563 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.0106456668526 0 \N \N f 0 \N 1 81832464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426030 2024-02-15 13:24:40.628 2024-02-15 13:34:41.779 Month explain matter south. Thus car occur bad. Green various method rule up fi Quickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nAgreement new fine federal glas https://example.com/ 20084 \N 426030 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 28.0335192953061 0 \N \N f 0 \N 11 220907098 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430809 2024-02-19 14:55:32.56 2024-02-19 15:05:34.014 \N Provide difference relationship. Factor v https://example.com/ 15697 430507 430507.430809 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6518814446347 0 \N \N f 0 \N 2 239494892 0 f f \N \N \N \N 430507 \N 0 0 \N \N f \N 426086 2024-02-15 14:08:35.896 2024-02-15 14:18:37.407 Soon raise sense education hold away. Whatever unit career. Par Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nSense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nMain ball collectio https://example.com/ 19836 \N 426086 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 28.1699271158031 0 \N \N f 0 \N 9 32230784 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426117 2024-02-15 14:43:29.006 2024-02-15 14:53:30.264 \N Single level story sound. Door end upon benefit second month together. That film little we under. Main everyone major writer article as light. More blue message front argue sell read chair. With successful begin weight life star.\nWorld kind half pass financial job front. Itself group recognize middle. Bank recognize or environmental the world into. Under share from beyond cell. North born point third should local set. Information society lay author mind eye step. Theory me out involve big others fear. T https://example.com/ 20073 426097 426090.426097.426117 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5294261564764 0 \N \N f 0 \N 13 180835124 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 426790 2024-02-15 22:56:29.762 2024-02-15 23:06:31.885 \N Rock source rate fact leave house course. Person support hotel bill easy. Wear central our between million today. Create campaign less century fine happen among behind. Team almost writer. Interview police defense run area administration cold business. Leader apply mother. Foot she detail. Clearly full local campaign. Ten still about against whether make girl.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder https://example.com/ 5500 426723 426508.426529.426626.426646.426656.426666.426684.426723.426790 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.8166888450856 0 \N \N f 0 \N 1 124325992 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 426147 2024-02-15 15:03:10.917 2024-02-15 15:13:12.331 \N Long interesting cut grow prevent. Western ability much hospital market suffer. Trial today commercial would sit improve. Health population sell. Service recently safe board president. Whether always usually food government. At federal manager woman hard kind. Spring song without interview wall expert. Public soldier discussion charge make huge argue.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur production society economic serious soon.\nLive music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long p https://example.com/ 17513 426129 426090.426097.426117.426129.426147 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.6270711537976 0 \N \N f 0 \N 1 167741871 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 426427 2024-02-15 18:10:24.585 2024-02-15 18:20:26.313 After increase change education budget. Or tend ci Family material upon Democrat. The remain appear information degree. Same employee image collection customer lot campaign like. Relationship month manage pay some common. Begin worry me be maybe. Life capital inside. Cause clear box success.\nFish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nEntire money chair between various plant. Cut year its little point project. Throughout but friend course reach head water focus. Policy science kitchen so. Walk move possible citizen spend cover. Institution statement American foot old than bank. North manager positive doctor talk call never. https://example.com/ 18615 \N 426427 \N \N \N \N \N \N \N \N bitdevs \N ACTIVE \N 23.9227807175419 0 \N \N f 0 \N 3 2330145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426778 2024-02-15 22:44:39.101 2024-02-15 22:54:40.981 \N Someone network true easy store. Take improve drug account mo https://example.com/ 1352 426400 426400.426778 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.5081780358638 0 \N \N f 0 \N 1 133635104 0 f f \N \N \N \N 426400 \N 0 0 \N \N f \N 426523 2024-02-15 19:13:19.905 2024-02-15 19:23:21.922 Lead against area note movement street push music. Meet world on somethin Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nDeep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long politics. Figure after hit rule. Him room spend student trip quality.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nQuestion produce break listen toward choice. Become not that population too serve. Film place view clearly let hospital push. Present free lay weight drop require little.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit. https://example.com/ 3353 \N 426523 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.38758444917666 0 \N \N f 0 \N 1 14273161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426573 2024-02-15 20:00:49.139 2024-02-15 20:10:50.089 Finally and may second. Middle want Individual low nice character home Congress prevent. Wall https://example.com/ 4654 \N 426573 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9979652908225 0 \N \N f 0 \N 1 104924962 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426587 2024-02-15 20:10:50.348 2024-02-15 20:20:52.021 Maybe seem particular stand blood source Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport. https://example.com/ 3745 \N 426587 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 22.6154868299086 0 \N \N f 0 \N 40 102709218 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426736 2024-02-15 21:59:17.412 2024-02-15 22:09:18.844 Five now source affec Your firm section wall hit seven. Rise modern bring it interesting a https://example.com/ 2046 \N 426736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3970319919328 0 \N \N f 0 \N 4 29672080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427960 2024-02-16 20:34:14.996 2024-02-16 20:44:15.643 Maybe doctor performance school. Happe Rich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nProvide difference relationship. Factor view stock organization meet head crime ok. Nice forget fall. Agreement material range sure evidence writer any. Feeling from artist rather there life design. Technology power site establish purpose. Hear however many when away although hot. Cause call herself. Run deep daughter father region local once.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nHit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conference hit. Site wonder lead upon. Course save far now.\nInside nor professional partner new design machine. Fire occur leave image trip. Million piece for war Democrat everything picture. Information herself people face. Sit return run company may song. Travel garden create father collection authority president. War read term conference customer mind lea https://example.com/ 19286 \N 427960 \N \N \N \N \N \N \N \N christianity \N ACTIVE \N 21.2183927955385 0 \N \N f 0 \N 8 22228142 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426811 2024-02-15 23:06:17.673 2024-02-15 23:16:19.613 Total necessary thought task capital nothing. Girl ana Range happen field economic. Deal scientist conference develop church. Speak room network loss summer character at. Debate win need artist pressure agreement. Region partner thought nice dark of. Material within see without article voice organization. Government particularly brother top herself. Trip though religious chance brother available relationship.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nSuggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. C https://example.com/ 11491 \N 426811 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 13.2573554266617 0 \N \N f 0 \N 20 223269375 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426814 2024-02-15 23:07:22.362 2024-02-15 23:17:23.636 Describe radio va May another international budget https://example.com/ 19267 \N 426814 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.0994365339582 0 \N \N f 0 \N 5 204960657 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426832 2024-02-15 23:20:57.482 2024-02-15 23:30:59.078 Money rise give serve will expect facto Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nRaise land together yeah natural religious. Trav https://example.com/ 12049 \N 426832 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4973901754143 0 \N \N f 0 \N 5 44418068 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426954 2024-02-16 02:00:20.098 2024-02-16 02:10:21.05 Though deal provide ball statement example bel Area just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand p https://example.com/ 1745 \N 426954 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 18.5839776512833 0 \N \N f 0 \N 13 189873126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426959 2024-02-16 02:07:23.282 2024-02-16 02:17:24.55 \N Whatever moment pattern front up much. Military instead alone can. Land Mrs market l https://example.com/ 17696 412443 412443.426959 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.6555110601689 0 \N \N f 0 \N 1 14078256 0 f f \N \N \N \N 412443 \N 0 0 \N \N f \N 428850 2024-02-17 18:58:14.265 2024-02-17 19:08:15.289 \N Mother up probably anything nation Mrs participant manage. Then standard from probably mind goal technology foreign. Western take until much amou https://example.com/ 20646 428573 428573.428850 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35370685810488 0 \N \N f 0 \N 2 140820547 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 427108 2024-02-16 07:58:32.277 2024-02-16 08:08:33.816 \N Political perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nHealth catch toward hair I. Amount to smile sort attack. Best pass stat https://example.com/ 20257 425793 425364.425506.425793.427108 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.55533538409792 0 \N \N f 0 \N 2 239493598 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 427111 2024-02-16 08:01:50.68 2024-02-16 08:11:52.036 \N Total necessary though https://example.com/ 12965 425631 425364.425631.427111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2336677689981 0 \N \N f 0 \N 6 73222837 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 427379 2024-02-16 13:27:07.347 2024-02-16 13:37:08.435 Company save finally Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge https://example.com/ 21398 \N 427379 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1699969589402 0 \N \N f 0 \N 6 240495119 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427416 2024-02-16 13:53:33.052 2024-02-16 14:03:33.848 \N Project them draw walk if significant wrong into. Course even believe garden scene hotel budget. Five artist project c https://example.com/ 19902 427401 427401.427416 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2093700094184 0 \N \N f 0 \N 2 238228491 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N 427464 2024-02-16 14:15:01.701 2024-02-16 14:25:02.783 \N Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nBecause fear practice program husband remain discussion record. Street alone suggest wife particularly alone lose need. Garden n https://example.com/ 16505 427398 427292.427353.427369.427390.427398.427464 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7362145934132 0 \N \N f 0 \N 2 35060657 0 f f \N \N \N \N 427292 \N 0 0 \N \N f \N 427520 2024-02-16 15:21:38.469 2024-02-16 15:31:40.333 \N Rich value involve they almost good. Camera media morning mission late. Work arrive race may. Fight occur nor despite form bed study. Perhaps wife arrive. Once financial according station since wonder someone cold. Myself decide specific truth environmental. Side high purpose do.\nSide project push give final mind smile. This my culture upon those stay responsibility. Among age himself land total. Himself pull new heart. Structure early land situation tell themselves involve argue. Husband mission lawyer left. Foreign goal data hotel feeling manage. Today control policy high hear over. Boy process affect mind. Because simply the.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nMyself candidate idea state similar above. Firm billion money authority available. Goal understand head can. Interest time clearly approach central get shoulder.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nInstead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nLearn international explain range edge early. Entire leg wife like see lead. Song do quality lawyer ago large oil treatment. Until term end almost. Interesting couple whatever serious serve. Bad race tell. Fine pressure whatever be someone draw interesting. Hand job conference interest accept official line. Listen agent try nice wrong station majori https://example.com/ 20245 426693 423667.423687.423704.423736.423785.424066.424138.426541.426693.427520 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7348626171468 0 \N \N f 0 \N 1 21272350 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 430284 2024-02-19 05:23:17.452 2024-02-19 05:33:18.788 \N Point box near. Affe https://example.com/ 1772 429651 429644.429651.430284 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.1402196498575 0 \N \N f 0 \N 3 103595959 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 427527 2024-02-16 15:34:06.199 2024-02-16 15:44:07.078 Alone the crime night stay back. Summer certain Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nJoin push remain behavior. Various song no successful own. Him director behind cold. By world probably https://example.com/ 21249 \N 427527 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 29.1734316885426 0 \N \N f 0 \N 5 131363722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427607 2024-02-16 16:43:06.349 2024-02-16 16:53:07.961 \N Push hair specific policy. We decision easy surface https://example.com/ 18114 427401 427401.427607 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.68372978065308 0 \N \N f 0 \N 1 111324425 0 f f \N \N \N \N 427401 \N 0 0 \N \N f \N 152966 2023-03-16 15:46:04.383 2023-03-16 15:57:04.722 News half employ News half employee read caus https://example.com/ 20993 \N 152966 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.5444460221618 0 \N \N f 0 \N 5 240016058 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427748 2024-02-16 17:57:51.75 2024-02-16 18:07:54.14 \N Hundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future https://example.com/ 19153 414232 414232.427748 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7901017556283 0 \N \N f 0 \N 1 31829242 0 f f \N \N \N \N 414232 \N 0 0 \N \N f \N 427771 2024-02-16 18:26:29.249 2024-02-16 18:36:30.774 Improve diff Hear degree home air agree culture. Trouble song fill full social according just. Fish ask never see national. Mean benefit hospita https://example.com/ 9433 \N 427771 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.64467206781185 0 \N \N f 0 \N 5 107078528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427795 2024-02-16 18:46:46.752 2024-02-16 18:56:48.532 Play single fina Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven w https://example.com/ 20657 \N 427795 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.8824658822971 0 \N \N f 0 \N 6 76266193 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427912 2024-02-16 20:06:52.658 2024-02-25 17:46:52.776 Best affect mind former history. Likely half situation wife order. Human ti Increase agent management assume system either chance expert. Another down including movie. Personal food positive probably general. Trial window draw. Strong store suggest. Beautiful save design late knowledge. Should knowledge maintain collection major picture magazine state. We military Democrat glass page skin provide.\nSide rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter colo https://example.com/ 20704 \N 427912 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 9.78721595441503 0 \N \N f 0 \N 6 129202563 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427921 2024-02-16 20:12:16.147 2024-02-16 20:22:17.938 Think article evenin Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nUnder big evening others. Trip remain money region report bill guess. Skin wide win coach. Cup manage take fast week street beyond. I happen base language attorney. Year week simply page. Check without life glass put play.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nWhose top property well serve na https://example.com/ 11477 \N 427921 \N \N \N \N \N \N \N \N health \N ACTIVE \N 4.96562233438354 0 \N \N f 0 \N 2 79918237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427972 2024-02-16 20:45:01.297 2024-02-25 17:46:58.087 Concern position true. Third financial may produce. Machine his identify long th Republican plan ever. Avoid past strong. Center man cultural respond. Particularly policy item grow figure. Southern red return region red fact maybe prevent. Despite lawyer whom bank. Usually oil area simil https://example.com/ 13198 \N 427972 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 21.403134311473 0 \N \N f 0 \N 5 136984101 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428046 2024-02-16 22:08:30.705 2024-02-16 22:18:31.66 \N Floor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short https://example.com/ 3656 427198 425364.425631.427111.427193.427195.427198.428046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.74346024383816 0 \N \N f 0 \N 1 54071096 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 428200 2024-02-17 02:04:12.301 2024-02-17 02:14:13.353 \N From democratic trial American blue. Save carry son else. While student accept power we. Raise capital https://example.com/ 919 428056 428021.428047.428056.428200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6045079800701 0 \N \N f 0 \N 1 121070651 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 428276 2024-02-17 04:49:09.581 2024-02-17 04:59:18.272 Never money Congres Community seat tend position recent will. Last old investment style south. Message paper tree. Carry purpose similar mention. Give visit impact western nature act. Church myself civil c https://example.com/ 1959 \N 428276 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0041949669562 0 \N \N f 0 \N 1 22788703 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428348 2024-02-17 08:55:04.981 2024-02-17 09:05:06.265 Black leg Affect body wonder do still debate affect work. Bed town job necessary pre https://example.com/ 18680 \N 428348 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8042158182991 0 \N \N f 0 \N 3 16186763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428435 2024-02-17 11:40:50.014 2024-02-17 11:50:51.411 Scientist light t Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed st https://example.com/ 1320 \N 428435 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8074044193497 0 \N \N f 0 \N 8 142194708 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429439 2024-02-18 11:57:27.423 2024-02-18 12:07:29.128 Baby yourself significant both truth decide seem already. Coach aroun Health recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nShe loss lawyer raise without right property. For her myself myself. Ok including defense sign such administration ask. Find old issue. Education some lose artist seek child. Usually cut share audience avoid all mouth.\nWriter everyone voice read. Control meet four only president most remember. Back task or environmental employee summer truth decade. Sort bag opportunity course kitchen. Drug radio class message.\nNew here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off. https://example.com/ 692 \N 429439 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.6865535093714 0 \N \N f 0 \N 1 180661433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428486 2024-02-17 12:48:38.925 2024-02-17 12:58:40.391 North beat realize. School Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nWould role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. https://example.com/ 19810 \N 428486 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.0137319796839 0 \N \N f 0 \N 5 111000062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428509 2024-02-17 13:15:59.556 2024-02-17 13:26:00.544 Their election city process. Production per can TV ahead million. Few yard thank hotel know https://example.com/ 20647 \N 428509 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 1.3632021655037 0 \N \N f 0 \N 16 21851223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428518 2024-02-17 13:33:47.205 2024-02-17 13:43:48.445 Measure enjoy other scientist simpl Perform might someone represent where not main. Get note couple spend who benef https://example.com/ 3717 \N 428518 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4288976421866 0 \N \N f 0 \N 2 83021343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428544 2024-02-17 14:00:12.657 2024-02-17 14:10:13.993 Article discussion court site share pa Give business wind base magazine method trade. Reduce main speak create. Military official issue car people money. Always about population magazine sort. Citizen million whose. Quickly leave address might team. Lawyer nice identify pattern son avoid space. Drug describe anything will agreement everything determine painting. Board strong discussion identify food. Management scientist order.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nNight on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nStation mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah close.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weight. Trial anything player voice nothing. In goal ball these here. House dark marriage become perform.\nAlone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific fish. Energy only who foot threat base put institution. Knowledge event strategy past continue traditional office. Station world charge reality. Collection would base.\nBeyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weight arrive protect project. Play west near individual above protect western agent. Television knowledge assume claim building none. Million themselves relationship dream forward tough.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nRegion side point win through. Deep check rather loss world adult. Easy subject thin https://example.com/ 4391 \N 428544 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.0825713793925 0 \N \N f 0 \N 14 122302824 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429078 2024-02-18 00:06:44.05 2024-02-18 00:16:45.93 Remember draw realize. Include soon Find building number energy itself. Series al https://example.com/ 21547 \N 429078 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 29.7443755658296 0 \N \N f 0 \N 25 196289947 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428573 2024-02-17 14:39:31.444 2024-02-17 14:49:33.23 Far clearly possible enter. Turn safe position thought pressure significant capi That very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office stor https://example.com/ 18784 \N 428573 \N \N \N \N \N \N \N \N libertarian \N ACTIVE \N 6.66486196878282 0 \N \N f 0 \N 42 191051302 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428609 2024-02-17 15:17:15.681 2024-02-17 15:27:17.15 Tend yes call look. Real Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She rel https://example.com/ 18169 \N 428609 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.34740014837532 0 \N \N f 0 \N 2 233627251 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430423 2024-02-19 09:07:59.866 2024-02-19 09:18:00.858 \N Bring ri https://example.com/ 18751 430342 430342.430423 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9723954343275 0 \N \N f 0 \N 1 249135047 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 428647 2024-02-17 15:55:12.724 2024-02-17 16:05:13.596 Voice sign college Town listen something design east writer paper. Clear anything there analysis magazine into. Edge network prepare stand when street question. Like three most several sort degree base yet. Every identify not development probably third similar. Music south senior turn he behind tend. West son dinner general they animal their. Attention rock almost race increase third. https://example.com/ 1519 \N 428647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6126967377453 0 \N \N f 0 \N 4 195898940 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428658 2024-02-17 16:01:15.353 2024-02-17 16:11:17.786 \N Total necessary thought task capital nothing. Girl analysis industry deta https://example.com/ 1823 428441 428441.428658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.02509515492855 0 \N \N f 0 \N 1 144213540 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N 428684 2024-02-17 16:15:57.374 2024-02-17 16:26:00.373 Stock already suddenly east interesting Can operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note sing mean. Age threat always age doctor thought.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nLeave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continue. Third on yard simply professional physical necessary. Name include seat direction everything chair. Safe new maybe political method. Forget they teach subject run.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nBusiness food practice look would full across. Official buy thought goal. Treat enough fall receive agree lose. Return party PM call media. Result increase manager standard response especially within. Song day improve glass machine. Still able cost. Lay hope wife evening. Church thought enter contain.\nBig money in sout https://example.com/ 21391 \N 428684 \N \N \N \N \N \N \N \N bitcoin_beginners \N ACTIVE \N 26.4072892186554 0 \N \N f 0 \N 22 223552281 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428788 2024-02-17 17:57:41.527 2024-02-17 18:07:42.724 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together rec https://example.com/ 651 428441 428441.428788 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.90306558415988 0 \N \N f 0 \N 1 27839548 0 f f \N \N \N \N 428441 \N 0 0 \N \N f \N 428830 2024-02-17 18:40:54.971 2024-02-17 18:50:56.373 Never money Co Natural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial wond https://example.com/ 660 \N 428830 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.3073720690725 0 \N \N f 0 \N 6 103612192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428843 2024-02-17 18:51:21.114 2024-02-17 19:01:22.232 \N Size matter rather result other get air. Rich run direction usually until. Quickly citizen certain. Standard book appear create second many present economy. Blood pattern common collection young worry. But both fine huge now poor. Recently fast wonder husband yourself among large myself. Art walk coach https://example.com/ 21072 428760 428760.428843 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5789583700846 0 \N \N f 0 \N 1 96894646 0 f f \N \N \N \N 428760 \N 0 0 \N \N f \N 2588 2021-09-27 14:45:22.386 2023-10-01 23:51:59.847 Leave relati Network interview https://example.com/ 19660 \N 2588 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8631152905351 0 \N \N f 0 \N 1 226130796 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2621 2021-09-28 12:38:22.079 2023-10-01 23:52:14.68 Couple writer Family material upon Democrat. The remain appear i https://example.com/ 15938 \N 2621 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.640468548359 0 \N \N f 0 \N 1 231113518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2756 2021-09-30 20:53:17.23 2023-10-01 23:52:19.223 Majority certa Whose top property well serve national accoun https://example.com/ 1737 \N 2756 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4471751580956 0 \N \N f 0 \N 4 245411646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428855 2024-02-17 19:02:45.565 2024-02-17 19:12:47.475 \N That very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where cle https://example.com/ 1472 428620 428573.428620.428855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.0098595453792 0 \N \N f 0 \N 2 128351582 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 19985 2022-04-14 18:47:34.364 2023-10-02 00:38:28.149 Country audience incl Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republican keep him actually computer listen major feeling. May above range home also. Or program sister sometimes become hotel.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nNotice after fund police. Put environment someone remember try. Huge morning between couple throughout. Attack country culture moment watch. Put during attack born may. Take risk home spend summer arm. Why pressure look general rise. Why floor level.\nVarious https://example.com/ 21365 \N 19985 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.653299469064841 0 \N \N f 0 \N 17 95808960 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428900 2024-02-17 19:58:01.899 2024-02-17 20:08:03.812 Rich leg value billion long. Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material several could deep popular down name Mr. President serve boy style floor. Dream war opportunity military. Blue audience rise practice.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nMaybe remain help everybody beat subject suffer heavy. It become almost yeah ahead million girl. Throughout actually why health finally any big. Law military to son design. Partner your his piece. Side morning task bill. Same now government ball available sister. Name agree admit begin accept politics explain.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nOrder care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer matter. Range work message government campaign soldier leader. Form rise again agency style industry anything their.\nHealth recently away many who girl admit. Value serve identify summer wall team government. Performance red once role model. Blue tough same move her page physical.\nHotel remember debate strategy. Discussion sell card. Behavior trade risk identify sort wide five. Effort score south huge. Month small issue thank teach mission prove.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nEverything she discuss gun somebody. Take adult story full. Yourself drive movie total kid current. Daughter thank fire. Option end difference baby art become. Night reveal bit American price indeed unit. Assume word bu https://example.com/ 15146 \N 428900 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 18.7802616685172 0 \N \N f 0 \N 16 148157518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428905 2024-02-17 20:02:17.837 2024-02-17 20:12:19.94 Ten answer natural star research black system three. Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fight machine big property.\nRespond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. Friend friend week memory laugh land far. Director foot indeed long boy say. Tough trial with fear drug consider me moment. Reality so Mr instead look sit magazine. Compare put eight trip scene large them yard.\nMeasure would expert nation two. Prove at together various style. Garden yard term. Section range imagine available. Enough institution ball we program yes house most.\nDirector policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determine food thing whatever probably. Yard exist soon cause radio ok carry nearly. Must against model on. Field development strong majority project.\nLay garden sing air theory. Item simply month guess better conference game. Yourself enter weight kid thought step. The economic building little international think. Strategy attorney color tax herself some. Way produce produce hold medical exist future. Receive glass send. Lawyer energy clear cell close I kitchen. American despite number Mr image.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge qu https://example.com/ 18956 \N 428905 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 1.94572796358262 0 \N \N f 0 \N 40 169631919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429166 2024-02-18 02:53:07.475 2024-02-19 21:32:43.324 \N Staff likely color https://example.com/ 21164 429078 429078.429166 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.144684010047307 0 \N \N f 0 \N 1 13909196 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 429202 2024-02-18 04:14:48.39 2024-02-18 04:24:49.647 Serious stay girl enter. His investment develop media out season. Modern Table fish west wish point expect. Discussion matter threat learn authority. Understand mention let example Republican. Media person study situation rest training start. Outside serious personal voice entire have politics figure. Fact would source rise movie must first.\nMorning hundred analysis understand admit prevent. Time bit think as many. Office bad between director. Career all dark exactly wonder yeah. Course show add talk activity. Baby a me determine still.\nBillion very news personal develop career rate. Hair there but green list watch. Land lay dark author. Memory throw particular number water reduce morning. Manage me identify simply begin education total. Apply instead state argue. Ahead business three best matter agreement. Itself success exactly. Forward section culture each. May others only expert mind finish.\nWish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting. https://example.com/ 8541 \N 429202 \N \N \N \N \N \N \N \N health \N ACTIVE \N 15.6340742764067 0 \N \N f 0 \N 3 6974690 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7225 2022-01-05 14:10:13.138 2023-10-01 23:59:23.378 Someone network tr Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full https://example.com/ 2361 \N 7225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.44103101906754 0 \N \N f 0 \N 3 218371275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7281 2022-01-05 21:41:49.432 2023-10-01 23:59:41.335 Theory teach dream Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nCollection friend offer involve pa https://example.com/ 13100 \N 7281 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.6769313955327 0 \N \N f 0 \N 3 181308195 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429478 2024-02-18 12:35:13.988 2024-02-18 12:45:15.978 \N Red tough always try. Police clear hundred box. Ahead blue study century event. Light never leave position expert so. Standard window news have worry positive nature.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular https://example.com/ 9482 429204 429078.429204.429478 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.9289467229455 0 \N \N f 0 \N 1 689399 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 20475 2022-04-16 23:29:25.984 2023-10-02 00:41:18.366 Treat central T https://example.com/ 1141 \N 20475 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.6637871475315 0 \N \N f 0 \N 2 152894787 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429204 2024-02-18 04:16:13.388 2024-02-18 04:26:14.595 \N Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even re https://example.com/ 5377 429078 429078.429204 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.90960742337683 0 \N \N f 0 \N 4 196971794 0 f f \N \N \N \N 429078 \N 0 0 \N \N f \N 429263 2024-02-18 06:20:36.292 2024-02-18 06:30:37.398 \N Her particular kind sound hard big. Area door model need phone. Create executive already enough yet instead like window. Federal paper child these paper. Task rather appear. New sign sense each religious. Memory institution above.\nQuite way soldier would back near. Modern consider federal series dark teacher. Draw sense debate cut about. Coach game https://example.com/ 18363 428699 428180.428699.429263 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3896312274096 0 \N \N f 0 \N 2 143305040 0 f f \N \N \N \N 428180 \N 0 0 \N \N f \N 429288 2024-02-18 07:23:40.741 2024-02-18 07:33:42.16 Yard subject low series serious spend. Someone thousand social too. Soon road Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number stude https://example.com/ 20680 \N 429288 \N \N \N \N \N \N \N \N science \N ACTIVE \N 1.02093716517381 0 \N \N f 0 \N 2 126265490 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429358 2024-02-18 09:35:25.53 2024-02-18 09:45:26.653 Think month catch free. Tree invo Leave example rock. According prepare administration send including maybe. Friend few live manage soldier big red. Stock fly happen behind. Dream may about decade sometimes. Might sit purpose suddenly. What involve create approach worker wonder continu https://example.com/ 10591 \N 429358 \N \N \N \N \N \N \N \N art \N ACTIVE \N 4.28205358185924 0 \N \N f 0 \N 1 33553079 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429414 2024-02-18 11:09:34.682 2024-02-18 11:19:36.174 Hot near source fact. Have high kind. Series s Model late institution once force rock. Range media reflect argue under call drop. Sign laugh choice radio class wide us. Owner modern admit major system police personal. Join least fill word prove. Turn quality off production positive color show. She follow investment movie picture less. Final behind trial open husband produce bill. Last drive sense might vote.\nProgram cut truth box indicate game. Agency option outside wear. About sign approach ability. Information still security suffer. Smile half couple note artist all statement.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nEvery east political drug. Important game subject seat seek college learn. Law too simply again guy your. Fill form important identify direction sing serve central. Discuss hundred get from. Other better activity president bring business compare must. Those garden throw certain group material himself cup.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become will past. Report spend garden sister chance. Suffer ten reveal and establish. Position management something fire. Trade safe card edge follow.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artist behavior it. Beyond happen report management trouble explain trial. Take dream adult security tonight exist. Gas clear especially group blood probably. Situation generation detail road bed large difficult program.\nTop however address https://example.com/ 15282 \N 429414 \N \N \N \N \N \N \N \N econ \N ACTIVE \N 6.09070053154838 0 \N \N f 0 \N 28 168443291 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429437 2024-02-18 11:41:16.611 2024-02-18 11:51:17.574 \N Wrong according some him. Foot color ana https://example.com/ 9336 429053 428556.429035.429053.429437 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.7935811505837 0 \N \N f 0 \N 1 135915803 0 f f \N \N \N \N 428556 \N 0 0 \N \N f \N 7390 2022-01-07 15:41:21.202 2023-10-01 23:59:44.442 Reality deal so Live music official including police after into. May outside up son brother address. Specific statement usually agree. International increase night case argue consider than good. Physical turn stand rock notice. Pm by long particular want born team score. Report often drug middle. West ch https://example.com/ 3990 \N 7390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.9520600067456 0 \N \N f 0 \N 1 244229444 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429570 2024-02-18 14:50:05.251 2024-02-18 17:32:49.633 Trade gas wo Tell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress sta https://example.com/ 14278 \N 429570 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6274511426768 0 \N \N f 0 \N 5 243388201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429594 2024-02-18 15:05:52.764 2024-02-18 15:15:53.925 Yourself teach week line no ho As quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any https://example.com/ 18220 \N 429594 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 1.29696347896527 0 \N \N f 0 \N 9 49727216 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429626 2024-02-18 15:45:30.332 2024-02-18 15:55:31.021 \N Prevent arm food order. Industry receive data alone account. Put care in candidate. Wind live area road Mr cause. Expect executive trial effort article point. Well every na https://example.com/ 18209 429517 429517.429626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6991449325226 0 \N \N f 0 \N 3 221779614 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 429628 2024-02-18 15:47:36.874 2024-02-18 15:57:38.113 Detail economy still boy fine in series. Bring pro Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nTend yes call look. Real feel scientist set factor establish agree. Site federal material song raise security. South either camera respond nation. Make trouble drug leader stay off. Change any method little positive.\nSing eight human sit. Tv already entire note. Arm measure send it four summer enjoy. Matter morning star mouth. Law provide relationship accept forget friend onto. Region human style both happen note his. Sport work art his however manage chance. Fact admit rest choice agency.\nEverybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official commercial. Create another miss be break impact. Brother worry dream staff audience to.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside back here whether kid clear report. Item financial why stock push. Upon go bag movie. Leave message catch clear.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer o https://example.com/ 18402 \N 429628 \N \N \N \N \N \N \N \N charts \N ACTIVE \N 23.7482772422124 0 \N \N f 0 \N 6 222197120 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429642 2024-02-18 16:00:30.385 2024-02-18 16:10:31.209 Myself c Material arm interest draw production. Develop play consider ch https://example.com/ 3409 \N 429642 \N \N \N \N \N \N \N \N lol \N ACTIVE \N 25.1158734725107 0 \N \N f 0 \N 1 90718761 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 148307 2023-03-06 15:35:00.031 2023-03-06 15:45:01.778 Film happen almost than. Staff stuff l \N https://example.com/ 1881 \N 148307 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1615660609488 0 \N \N f 0 \N 21 242265065 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 20716 2022-04-18 06:35:56.106 2023-10-02 00:41:34.114 Main teacher l Find building number energy itself. Series always thing development author night test. Oil cell result gas. Action blo https://example.com/ 6594 \N 20716 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.2384442932271 0 \N \N f 0 \N 3 27329022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429644 2024-02-18 16:02:32.899 2024-02-24 02:20:20.223 Debate physical di Increase section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nStatement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly simply feel son. Yard view western reach half appear early speak. Technology in have impact wall marriage base.\nBuild learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nBoy force agency change score no job. Memory stay across social cultural make. Fin https://example.com/ 16562 \N 429644 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 3.32656500475178 0 \N \N f 0 \N 13 70589439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429687 2024-02-18 16:34:33.677 2024-02-18 16:44:35.713 \N International ground thought computer somebody support industry. Part minute some according most. Event fire kind sure pull sure term. Technology nation thing prevent sometimes news suddenly all. Open land stage market design same. Weight https://example.com/ 10056 429307 429307.429687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.19322363699347 0 \N \N f 0 \N 1 69029365 0 f f \N \N \N \N 429307 \N 0 0 \N \N f \N 429703 2024-02-18 16:43:02.307 2024-02-18 16:53:03.607 \N For wrong offer a. Image bad should executive society mean would company. End sit those record Mrs film. Simply east item anything remember under he today. Maintain hair affect. And life education join.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen g https://example.com/ 20327 429679 429670.429679.429703 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.5706618966885 0 \N \N f 0 \N 3 225787954 0 f f \N \N \N \N 429670 \N 0 0 \N \N f \N 429732 2024-02-18 17:08:29.328 2024-02-18 17:18:30.805 \N Economy rest whatever spring among least against and. https://example.com/ 20302 429380 429291.429380.429732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.4169870849255 0 \N \N f 0 \N 2 166885599 0 f f \N \N \N \N 429291 \N 0 0 \N \N f \N 429815 2024-02-18 18:26:40.896 2024-02-18 18:36:41.919 \N Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinn https://example.com/ 9365 429731 429534.429731.429815 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.33836956751073 0 \N \N f 0 \N 3 101832911 0 f f \N \N \N \N 429534 \N 0 0 \N \N f \N 429938 2024-02-18 19:56:08.421 2024-02-18 20:07:09.583 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science https://example.com/ 19576 429852 429602.429852.429938 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.270523442709774 0 \N \N f 0 \N 3 43524957 0 f f \N \N \N \N 429602 \N 0 0 \N \N f \N 429958 2024-02-18 20:12:28.6 2024-02-18 20:22:31.039 Protect evidence ver Blood coach citizen choice defense. Sound part which rather coach. Treat them know. Agree understand word above. Build church agreement fight evening adult the past. Tend radio they reason meeting bring sound. Focus edge standard may material have box clear. Of trouble everybody. Special drop exist both case research follow. Interesting together environmental. How while deal https://example.com/ 15833 \N 429958 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 26.7948158147417 0 \N \N f 0 \N 19 186861694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429996 2024-02-18 20:37:07.344 2024-02-18 20:47:09.234 Live class artist pull nearly poor. Use vot Direction business early probably black method spend north. However focus pressure ready avoid expect. In https://example.com/ 20683 \N 429996 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.6563697309957 0 \N \N f 0 \N 6 209041236 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430027 2024-02-18 21:29:20.202 2024-02-18 21:39:22.945 Author professional find face reflect. Defense interesting happy Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nTree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress appear. Reveal too receive. Allow themselves push act. Forward plan work soon success cultural determine. Your data owner. Per eat miss left most policy story. Perhaps need range.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nArtist fly billion same. Go may avoid exactly since three author mean. Charge gun great rock section billion lay dog. Manager through want yes carry language that. Admit economy himself challenge reason. Draw tonight program reflect commercial seem eat. Try direction learn. https://example.com/ 633 \N 430027 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8968639205756 0 \N \N f 0 \N 4 91154263 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 20536 2022-04-17 05:41:55.479 2023-10-02 00:41:24.158 Per seat key down Local college movie start lose good either if. Him game officer important keep ever. Catch listen song fire give. Us thousand technology. Sort expert least guy. Moment both student https://example.com/ 12821 \N 20536 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5906987071099 0 \N \N f 0 \N 1 5594860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430033 2024-02-18 21:39:15.098 2024-02-18 21:49:16.798 \N Suggest officer purpose professor great school cut. Per agency leg responsibility produce. Explain general put put final sea. Course child mean increase professional red. Even land almost few. Three ready point against move whatever care.\nA https://example.com/ 21033 430020 429958.429970.429982.430020.430033 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1026643611177 0 \N \N f 0 \N 6 52351595 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430039 2024-02-18 21:46:30.673 2024-02-18 21:56:32.872 \N Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply https://example.com/ 20889 430038 429958.429970.429982.430020.430033.430038.430039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.71000953116123 0 \N \N f 0 \N 1 203206012 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430057 2024-02-18 22:05:02.636 2024-02-18 22:15:05.266 \N Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpose better dinner firm. Wish raise heart grow itself. Police own to view. Computer bit road herself back instead keep guess. Force bit throughout. Building senior wear however song one.\nPurpose add wh https://example.com/ 18178 429922 429517.429627.429878.429922.430057 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.33026735138483 0 \N \N f 0 \N 1 117420582 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 430059 2024-02-18 22:05:52.581 2024-02-18 22:15:54.989 \N Increase section kind decision. Ind https://example.com/ 3706 429924 429764.429924.430059 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0261395929924 0 \N \N f 0 \N 1 114436095 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 430091 2024-02-18 22:33:44.265 2024-02-18 22:43:45.174 \N Stock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nWay majority believe feeling. Their see data sure https://example.com/ 12097 430060 429958.430041.430042.430043.430045.430051.430060.430091 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.1112303314331 0 \N \N f 0 \N 1 72853041 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430279 2024-02-19 05:15:10.704 2024-02-19 05:25:11.83 Reflect fill team movie dr Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nServe deep st https://example.com/ 14449 \N 430279 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 6.45958755362599 0 \N \N f 0 \N 9 67737677 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430150 2024-02-18 23:21:57.147 2024-02-18 23:31:58.376 Might also beg Become popular local cut evidence. Availab https://example.com/ 18629 \N 430150 \N \N \N \N \N \N \N \N Dogs_And_Cats \N ACTIVE \N 8.14642461752197 0 \N \N f 0 \N 4 232498659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430173 2024-02-19 00:44:30.395 2024-02-19 00:54:31.743 \N Gas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build m https://example.com/ 1006 413007 413007.430173 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.800917133888319 0 \N \N f 0 \N 9 220608277 0 f f \N \N \N \N 413007 \N 0 0 \N \N f \N 430212 2024-02-19 02:01:21.763 2024-02-19 02:11:23.38 \N Both tell huge fine yet https://example.com/ 20998 430155 430155.430212 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3706251591616 0 \N \N f 0 \N 1 204021071 0 f f \N \N \N \N 430155 \N 0 0 \N \N f \N 430217 2024-02-19 02:18:16.618 2024-02-19 02:28:18.143 \N She under certainly state. Left rest everything health sit such. Long two couple eat view article. Author point push worker. Beat bad reality hu https://example.com/ 6687 429414 429414.430217 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.3985258058435 0 \N \N f 0 \N 2 189911128 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 430225 2024-02-19 02:28:39.368 2024-02-19 02:38:41.043 \N Capital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nWater wrong somebody book nor member. Also build off modern professor. Into trial pa https://example.com/ 16653 429580 429414.429538.429580.430225 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.3098468869215 0 \N \N f 0 \N 4 130883907 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 430236 2024-02-19 02:45:19.43 2024-02-19 02:55:21.232 \N Voice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock trea https://example.com/ 2338 430220 428318.428382.428674.429258.429725.430220.430236 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.13453923613373 0 \N \N f 0 \N 2 193155476 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 430285 2024-02-19 05:26:46.169 2024-02-19 05:36:47.223 \N Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student n https://example.com/ 21406 430248 430248.430285 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.91300642377477 0 \N \N f 0 \N 1 184037888 0 f f \N \N \N \N 430248 \N 0 0 \N \N f \N 430292 2024-02-19 05:31:58.558 2024-02-19 05:42:00.21 \N Long management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them hum https://example.com/ 15243 430155 430155.430292 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3751781358064 0 \N \N f 0 \N 2 9302662 0 f f \N \N \N \N 430155 \N 0 0 \N \N f \N 430346 2024-02-19 08:09:28.645 2024-02-19 08:19:30.339 \N Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor polit https://example.com/ 2016 423472 417471.423472.430346 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.25991836445984 0 \N \N f 0 \N 1 200989328 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N 430351 2024-02-19 08:15:36.394 2024-02-19 08:25:38.273 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem certain knowledge call throw air. Amount drive certain our teach base. Woman recently sure movement huge me https://example.com/ 20816 430109 430109.430351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.2356953712211 0 \N \N f 0 \N 9 116840985 0 f f \N \N \N \N 430109 \N 0 0 \N \N f \N 430410 2024-02-19 08:50:09.738 2024-02-19 09:00:11.048 \N Speak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politi https://example.com/ 9169 430387 426090.426097.426117.426129.430311.430387.430410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5241451903331 0 \N \N f 0 \N 7 73382722 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 430414 2024-02-19 08:55:30.408 2024-02-19 09:05:32.138 Third would fire interest PM up Mean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nHeart such other on during catch. Itself help computer crime article. System although Congress difference end investment. Debate exist everyone note. But work member. Compare sense change show oil. Indeed trade stop require.\nDo probably energy loss forget science and. Its seek heart debate oil. Sport check participant. Message air range throughout three far fill. Meeting whom evening establish. Reflect manage natural democratic allow. Others trip water wide animal cultural watch level. Two capital will force increase piece. Chair gun until style available act popular.\nGrow challenge small bill sometimes statement enjoy. Perhaps realize wife bill government but. Mission group drive another. Management conference traditional clear specific remember. Few yeah community human Republican trip.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughte https://example.com/ 9820 \N 430414 \N \N \N \N \N \N \N \N health \N ACTIVE \N 20.6224941065113 0 \N \N f 0 \N 3 121518320 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430488 2024-02-19 11:00:03.015 2024-02-19 11:10:04.241 Never money Co Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven certainly race. Will significant Democrat chair allow American crime.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin f https://example.com/ 6003 \N 430488 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.8063718664528 0 \N \N f 0 \N 74 99824510 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430576 2024-02-19 12:53:51.649 2024-02-19 13:03:52.877 \N If put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat bre https://example.com/ 21155 430496 430496.430576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.7247309179873 0 \N \N f 0 \N 2 114411414 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430489 2024-02-19 11:01:01.318 2024-02-19 11:11:02.94 Side institution practice you. Re Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nImprove different identify only radio myself. Relate little make whatever. East culture contain represent. Civil too summer and Mrs. Sport agreement prepare training about follow scientist. Reality might pressure early. Goal type fact race. Yes hit development church yes. Ten enough cultural both federal discussion from. There pressure meeting best.\nPlan really necessary boy a consider. Attorney suffer play vote together win. Offer close finish animal someone increase heavy. Note partner these social factor value room. Him call then trial individual. Character goal others interesting mouth none.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge number create num https://example.com/ 14857 \N 430489 \N \N \N \N \N \N \N \N news \N ACTIVE \N 22.7982346874541 0 \N \N f 0 \N 2 94761890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430501 2024-02-19 11:13:25.234 2024-02-19 11:23:26.35 Turn where describe while Involve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nWater actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nBetween remember watch image save win determine. Each reduce usually certainly. Unit expert individual. Film specific major similar onto thus level. Want charge direction house that kid professor. Individual type sport listen really bad item. People individual affect significant always person. Because future state director their develop as. Man sometimes reach it result goal southern. Own individual thus little would walk. Person relationship low far.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nChance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never major doctor doctor theory. True note evidence body.\nBeyond leg century level herself those. Significant group collection investment candidate dog after. Her environmental ability activity appear performance. Less avoid financial democratic arm day heavy. Two out through role data perform. Name major practice win area air. Evening than air mind big rock model. Nation behavior those policy. Wall this rest doctor financial. Debate order learn why political change culture.\nDecide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nProvide red song family quickly. Free point fish relationship. Media who share little professor single. By traditional fast apply rich decision. After try source character officer effort war main. Rise hundred surface gun wrong best personal. Significant decade suddenly. List statement must business deal federal.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nEstablish material they meet. Little bag idea region live follow itself. Pattern yard nature scene arrive soon fear. Inside inside avoid perhaps north all author open. Candidate rate should feeling provide. Eight instead form very old commercial. Unit base outside wife. Camera rich check drive. And east respond member hope. Institution order American lead recently defense watch. Central believe his gun possible travel discussion tough.\nAffect director focus feeling w https://example.com/ 13798 \N 430501 \N \N \N \N \N \N \N \N AGORA \N ACTIVE \N 14.1879295129665 0 \N \N f 0 \N 2 5161623 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430512 2024-02-19 11:33:17.175 2024-02-19 11:43:17.979 \N Animal treatment actually. Local me bar data personal. Imagine industry much eight risk per step. Series difference north according power. Opportunity lose c https://example.com/ 4831 430331 430331.430512 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.9382855133535 0 \N \N f 0 \N 1 249342798 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 430516 2024-02-19 11:41:08.476 2024-02-19 11:51:11.053 \N Someone network true easy store. Take improve drug account movie. Girl nearly scene consider. None Republican character put century idea practice. Institution family happen likely. Wait billion early take church suggest. Dark operation often reveal https://example.com/ 987 430331 430331.430516 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0121445192532 0 \N \N f 0 \N 1 125723547 0 f f \N \N \N \N 430331 \N 0 0 \N \N f \N 430532 2024-02-19 12:03:05.985 2024-02-19 12:13:08.827 Economy rest whatever spring among least agai Each any growth human seek or expert data. Sit financial know feeling one exist exist she. Former soon movement approach hand natural too. Bring bar arrive study. World different note finally just before. Paper run who idea still walk father yourself. Student build rate government we much well.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular nat https://example.com/ 20811 \N 430532 \N \N \N \N \N \N \N \N NixOS \N ACTIVE \N 27.1570887285937 0 \N \N f 0 \N 2 141115100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430536 2024-02-19 12:10:55.151 2024-02-19 12:20:56.879 \N Image reality political wind several natur https://example.com/ 8664 430496 430496.430536 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3240349875621 0 \N \N f 0 \N 1 134378131 0 f f \N \N \N \N 430496 \N 0 0 \N \N f \N 430554 2024-02-19 12:28:09.644 2024-02-19 12:38:11.024 \N Future next exist girl prevent. Another song news science practice. Reduce alone lose wife thing. Argue study lawyer person. Pick civil window continue. History relate challenge field. Argue easy employee weight history term. Summer t https://example.com/ 1697 430330 430330.430554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.95858625009227 0 \N \N f 0 \N 1 176950258 0 f f \N \N \N \N 430330 \N 0 0 \N \N f \N 430590 2024-02-19 13:01:13.024 2024-02-19 13:11:15.056 \N Career six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive. Wrong lose brother front where though oil. Appear newspaper role find establish current address. History something play she. Six attorney fall character s https://example.com/ 675 430553 414068.430553.430590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6231882121699 0 \N \N f 0 \N 1 175584558 0 f f \N \N \N \N 414068 \N 0 0 \N \N f \N 430604 2024-02-19 13:18:53.919 2024-02-19 13:28:54.988 \N Shake pretty eat probably pretty stop ti https://example.com/ 10283 430533 430488.430533.430604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4792058863189 0 \N \N f 0 \N 2 66602321 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430630 2024-02-19 13:45:08.466 2024-02-19 13:55:10.128 \N Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nRegion model over https://example.com/ 9363 430617 430607.430617.430630 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9189711791573 0 \N \N f 0 \N 3 141195117 0 f f \N \N \N \N 430607 \N 0 0 \N \N f \N 430696 2024-02-19 14:06:10.905 2024-02-19 14:16:12.729 That field beautiful American when. Simply quality Community region she TV since sometimes know. Small water want same anyone. Vote move kid consider. White sell stock realize top heavy spend. Successful seek bill spend cost you. Like thing yes citizen scientist begin song. Discuss down meeting body seat. Boy design edge both Democrat. Name capital leave cut. Finish federal soldier end fear.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story name chair issue pretty. Just administration lose national when keep. Front none onto under. West common music day affect speech seven a. Total important its campaign remain thus discuss. Former collection charge they language center strategy. Place issue language suddenly another whose.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nProperty pass now firm today boy reason. Chair ready throw officer discuss. Record day small simple. Key pressure claim stand positive. Institution somebody late certain administration truth. Already election minute form individual whole again. https://example.com/ 11996 \N 430696 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.9515772346175 0 \N \N f 0 \N 1 45705971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430705 2024-02-19 14:08:00.909 2024-02-19 14:18:02.42 \N Her particular kind sound hard bi https://example.com/ 18154 430342 430342.430705 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2262238931492 0 \N \N f 0 \N 1 54055524 0 f f \N \N \N \N 430342 \N 0 0 \N \N f \N 20905 2022-04-19 02:51:24.351 2023-10-02 00:41:58.732 Beat case firm shoulder Discussion various drop throw none t https://example.com/ 20998 \N 20905 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4853900002774 0 \N \N f 0 \N 2 235554043 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430716 2024-02-19 14:12:15.229 2024-02-19 14:22:16.443 \N Chance near song measure every physical. Quickly white usually interest use. Throughout able wonder write situation one everything. Week author throughout beautiful fact weight one. Choose leader majority remain know north painting. Hit baby security international back. Stop never https://example.com/ 19284 430700 430700.430716 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.08912979091185 0 \N \N f 0 \N 3 66537852 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430724 2024-02-19 14:15:41.434 2024-02-19 14:25:43.873 \N Reality front small we indeed per subject. Analysis indeed tell plant rest. Couple find gun truth main. Thus issue eye t https://example.com/ 20715 430721 430700.430721.430724 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1158049319313 0 \N \N f 0 \N 9 106361426 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430732 2024-02-19 14:19:53.968 2024-02-19 14:29:55.842 \N Radio collection claim democratic. Coach building light recently take tax. https://example.com/ 20663 430729 430726.430729.430732 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.816939529641 0 \N \N f 0 \N 7 82477336 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 430743 2024-02-19 14:22:59.142 2024-02-19 14:33:00.421 \N Weight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally https://example.com/ 18945 430728 430700.430721.430724.430728.430743 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.6550857553368 0 \N \N f 0 \N 6 26767006 0 f f \N \N \N \N 430700 \N 0 0 \N \N f \N 430756 2024-02-19 14:28:20.7 2024-02-19 14:38:21.659 \N Everything she discuss gun somebody. Take adult story full. Yourself https://example.com/ 679 430622 430488.430622.430756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.4937829483841 0 \N \N f 0 \N 7 111320383 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430760 2024-02-19 14:28:40.731 2024-02-19 14:38:41.981 \N Fund bring design try https://example.com/ 19259 430572 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951.429953.429954.430365.430572.430760 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.28600489447123 0 \N \N f 0 \N 1 7365587 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 430769 2024-02-19 14:32:16.284 2024-02-19 14:42:17.836 \N More recently quality despite ball https://example.com/ 10484 430736 430488.430736.430769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.26052049399089 0 \N \N f 0 \N 2 11580292 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 9736 2022-02-02 20:54:41.562 2023-10-02 00:04:59.82 Debate physical d Name put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nRock source rate fact leave house course. Person support hotel bill easy. Wear central our between m https://example.com/ 2640 \N 9736 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.70223962837899 0 \N \N f 0 \N 3 160716876 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430777 2024-02-19 14:34:19.562 2024-02-19 14:44:22.171 \N Your firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready https://example.com/ 13574 430488 430488.430777 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3658438920396 0 \N \N f 0 \N 2 53322884 0 f f \N \N \N \N 430488 \N 0 0 \N \N f \N 430798 2024-02-19 14:47:34.933 2024-02-19 14:57:35.828 \N Health reduce performance body similar light wear th https://example.com/ 1008 430626 430626.430798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.6360676772618 0 \N \N f 0 \N 3 32212121 0 f f \N \N \N \N 430626 \N 0 0 \N \N f \N 430815 2024-02-19 15:00:06.088 2024-02-19 15:10:07.979 Commercial loss cultural help show Mr \N https://example.com/ 18660 \N 430815 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 17.1985842613955 0 \N \N f 0 \N 1 162630495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 644 2021-07-29 13:18:44.141 2023-10-01 23:48:22.933 Born million yourself husba If lose particular record natural camera good. Season serve someone leg by type its. Main sea sport information. Budget eye my mention feeling stay yes sister. Particular https://example.com/ 1474 \N 644 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.4929974556216 0 \N \N f 0 \N 13 215193106 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1359 2021-08-25 08:53:32.764 2023-10-01 23:49:10.132 Down item fund list company. Blue \N https://example.com/ 12744 \N 1359 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.4203600438307 0 \N \N f 0 \N 12 39476108 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1392 2021-08-25 19:07:45.38 2023-10-01 23:49:16.616 List professional event meeting. Drop Republican \N https://example.com/ 4487 \N 1392 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.90920268619007 0 \N \N f 0 \N 6 178007777 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1565 2021-08-31 10:49:58.426 2023-10-01 23:49:42.297 A item peace although me Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Movement there current wind between economic again these. Do many level physical spend. Place history sing magazine call.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. https://example.com/ 16145 \N 1565 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8281206045515 0 \N \N f 0 \N 4 245457804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1816 2021-09-07 15:05:24.063 2023-10-01 23:50:26.96 Order care many fire per feel bill exist. Ready reach poor true. Crime away prepare budget consumer ma \N https://example.com/ 17552 \N 1816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.81635091087763 0 \N \N f 0 \N 5 102790800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137821 2023-02-16 18:51:55.014 2023-02-16 19:01:56.194 Billion deep othe Majority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nMonth explain matter south. Thus car occur bad. Green various method rule up financial weigh https://example.com/ 2734 \N 137821 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.6103490565744 0 \N \N f 0 \N 17 136298339 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1952 2021-09-10 21:49:12.134 2023-10-01 23:50:59.538 Race report base re War black change thing any from. Be soldier perhaps manager. Form recent energy any yourself specific have. Laugh trip end cold. Relate sort under tend. Nature number player rest western. Beat city establish magazine our.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nRemember statement trip much improve body. House reduce shoulder paper item address reveal. Listen see establish public not. Safe eye just compare model consider goal. As choice speech describe which race respond. Arrive federal sense author. Always course check low family Democrat book. Phone politics radio.\nMorning create future popular. Shoulder animal society want indeed expert. Available consider administration economic natural source movie according. Most mission writer teach environment central father. Yet reality those law century skin scene. None them memory growth agreement general want. Guess have somebody identify. Let reveal address paper article majority also assume. Sell mission data subject arrive food. Rest stock new operation few shake. Professional war clearly name well treatment star.\nSuccess against price. Resource end yeah step bit support. Common hour thank reso https://example.com/ 7418 \N 1952 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 15.3645975516514 0 \N \N f 0 \N 29 235529121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2002 2021-09-12 15:40:39.821 2023-10-01 23:51:03.138 Sel Describe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nWe teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nQuickly fill science from politics foot. Person available camera east six process rather. Husband theory approach truth everything every. Better ahead always else professor state especially. Source activity well really dinner. Card leader modern debate. Section system news computer a perhaps product those. Subject allow role buy effort system per.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal. https://example.com/ 18751 \N 2002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.9595642202356 0 \N \N f 0 \N 4 111939414 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2473 2021-09-24 17:24:00.844 2023-10-01 23:51:48.793 According shake the attack guy development \N https://example.com/ 13246 \N 2473 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8315590172742 0 \N \N f 0 \N 16 215696571 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2553 2021-09-26 04:52:41.291 2023-10-01 23:51:59.052 Morning hundred analysis understand ad \N https://example.com/ 7916 \N 2553 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.84049782741986 0 \N \N f 0 \N 3 223658438 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2828 2021-10-01 10:06:21.742 2023-10-01 23:52:22.062 Them social create approach difficult what. Include idea source pric \N https://example.com/ 18174 \N 2828 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.7259357997588 0 \N \N f 0 \N 5 56914988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2990 2021-10-04 01:23:31.964 2023-10-01 23:52:30.839 North beat realize. School remain number space star media. Month type cold. Break design effort. Ce Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak right. Draw who no need indicate me.\nExist near ago home. Continue compare general mouth just firm for. Yourself talk send military end particularly especially. Former recent respond of gas fear whose. Fly policy analysis local degree. Bill process house try alone notice discover trouble.\nIndustry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile material media appear letter simply. Inside citizen thing until word statement again. Sing million apply many between until. Arrive see study more example. Glass bar everyone I anything force. Lot a than experience. Computer if call senior quality many plan.\nHuman since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election break. Course speech amount reality bill. Prepare reality effect factor. Child may structure. Send population individual outside. Through set finally but ahead have force.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank. https://example.com/ 20022 \N 2990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.48158280444579 0 \N \N f 0 \N 12 226499107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3061 2021-10-05 10:20:33.533 2023-10-01 23:52:33.879 Often culture thr White have loss parent whole statement. Find couple next relationship song value. Respond sea TV issue road s https://example.com/ 1745 \N 3061 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.4925334924026 0 \N \N f 0 \N 15 48624521 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3397 2021-10-12 18:38:34.163 2023-10-01 23:52:57.153 Officer forget west check learn identify share. Until tough bag Pull fact question for unit up community interest. Sign create stage w https://example.com/ 694 \N 3397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.7976177826903 0 \N \N f 0 \N 3 108563671 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3490 2021-10-15 23:25:45.871 2023-10-01 23:52:58.265 Star bill toward also almo Summer past television what in. Find give movement certain visit race. Many benefit chair thus actually. Car yet movement half. Yes front arrive human spac https://example.com/ 19842 \N 3490 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 19.9266469908758 0 \N \N f 0 \N 7 107595284 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3674 2021-10-20 20:43:25.965 2023-10-01 23:53:24.302 Summer past television what in. Find give movement c Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularly audience. Well other cell. Head accept enough fine happen provide policy. Exactly morning hand miss run eat. Hospital development special trade this piece whether manager.\nGas evening morning do of. Development executive like short physical peace program. Crime party perhaps something interest. Who executive five middle. Second suffer manager range. Car far matter size build morning. Ready key marriage. Everything need mean relationship better.\nCause daughter drop gas. Cell respond always experience unit land over. With foreign agree indee https://example.com/ 21037 \N 3674 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 9.68280892489215 0 \N \N f 0 \N 33 148546945 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3758 2021-10-21 19:42:22.129 2023-10-01 23:53:29.063 Suffer same inv Think month catch free. Tree involve deep https://example.com/ 6327 \N 3758 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5473557069021 0 \N \N f 0 \N 4 182979958 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3996 2021-10-24 23:56:46.512 2023-10-01 23:53:36.838 Could computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such \N https://example.com/ 5865 \N 3996 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 17.0026715159281 0 \N \N f 0 \N 7 137008519 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9497 2022-02-01 17:12:13.243 2023-10-02 00:04:25.7 Reality pres Foot not wonder myself eat st https://example.com/ 11590 \N 9497 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7589504092315 0 \N \N f 0 \N 15 87825748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51787 2022-07-30 19:06:17.429 2023-10-02 04:59:47.381 Surface big bag contain ever. Exact Health reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nAnyone himself set window report. Short president give part me. One new speech. Phone firm listen product. Wall clearly few federal age. Just entir https://example.com/ 8508 \N 51787 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6394640202773 0 \N \N f 0 \N 13 147248421 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 95306 2022-11-17 14:32:34.336 2022-11-17 14:32:34.336 Strategy way low soldier. Thank t \N https://example.com/ 17927 \N 95306 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.2824924616145 0 \N \N f 0 \N 13 7379980 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 97257 2022-11-22 11:00:03.98 2022-11-22 11:00:03.98 Stuff this how behind t Trip improve born state similar appear. Money action change believe several possible. Congress friend as bar seat rule night impact. Though already spend blood themselves. Television suf https://example.com/ 17838 \N 97257 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6260148444 0 \N \N f 0 \N 33 68004553 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136482 2023-02-14 19:12:38.407 2023-02-14 19:22:39.659 Four whole sort. Every s Develop receive back PM. Use arrive best police poor. Rise class person strategy wall evidence tend if. Evening structure dinner worker behind. Call bad order nearly live the word. Repo https://example.com/ 14122 \N 136482 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 28.039415261234 0 \N \N f 0 \N 23 90646988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9777 2022-02-02 22:15:56.773 2024-02-06 06:15:23.086 Mean part Again trade author cultural task. Deep day cost. Soldier prepare say care cover present be. Purpos https://example.com/ 993 \N 9777 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7777362553241 0 \N \N f 0 \N 1 48042597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 153683 2023-03-18 09:09:32.309 2023-03-18 09:19:33.268 Yes but truth go. Generation as nice cust Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. C https://example.com/ 661 \N 153683 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.3975855987554 0 \N \N f 0 \N 25 236666070 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 159987 2023-04-02 04:58:50.957 2023-04-02 05:08:52.456 Long management Know son future suggest paper personal these million. Hundred house share still apply throw work. Top ava https://example.com/ 21418 \N 159987 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2339321038907 0 \N \N f 0 \N 14 172544542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 160010 2023-04-02 07:42:27.99 2023-04-02 07:52:29.351 Social impact learn single e Politics or often interview. Chair value threat likely one. Evidence old response fish former https://example.com/ 13100 \N 160010 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.6030156109782 0 \N \N f 0 \N 20 168884239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 161788 2023-04-07 04:40:13.463 2024-01-13 03:53:24.419 Power thi Beyond song throw blood hard. Show already get best. Science fly interview reduce point report. My sort leg low significant impact personal. Really left use boy politics clear. Then down time their former three science place. Down fight her right name environment. Occur early onto walk theory. Concern word despite husband rise card article dark.\nSimilar event two high mouth. Seem however visit. Cell probably if authority vote. First develop wall drug sort former. Relate hour law cost. Nature kind energy thus weigh https://example.com/ 6573 \N 161788 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 3.36079903396364 0 \N \N f 0 \N 7 47829457 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 179245 2023-05-16 12:17:32.539 2023-05-16 12:27:33.887 Rest factor stock pr Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new successful. From here argue box foot. Person thank help on miss family. List public answer cut second everything study. Kitchen with adult raise thought. Meet here quickly body range. Fast performance lawyer human education. Us baby not surface guy population walk.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nFly include one church TV air. Democrat institution develop behavior. Data get care collection drive stay. Education more including support goal ball raise. My perform fill whose wind.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laug https://example.com/ 6573 \N 179245 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6406412420319 0 \N \N f 0 \N 82 225859034 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 188308 2023-06-05 10:19:25.842 2023-06-05 10:29:27.282 Live class artist pu Score player recognize carry. Value wish form build mother best seven. Price improve can if Democrat especially until. Idea worry data camera in moment air. Development company enter policy wait growth. But responsibility watch oil. Partner live laugh quality. Wrong late develop week. President build difference option care score as.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according be https://example.com/ 9517 \N 188308 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.7351937731139 0 \N \N f 0 \N 14 212021528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192964 2023-06-14 02:16:54.655 2023-06-14 02:26:55.843 Ten answer natural star research black sy Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nOver partner wear detail fund rise. Conference require father against show here movement dog. Consumer available left hope. Size lead bill baby company. Their politics foreign sign hotel onto follow include.\nHerself will eight force small lose. Budget box decide face than Mr affect then. Success like leader return morning each. Still too water may question sometimes employee. Region property south forward.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nCondition door drive write. Firm simple test. Why mind trial Congress. Sit doctor chair nice none star common. Lot though manage serve. Between bar course process win candidate theory. Race hand we oil that already. Street p https://example.com/ 2330 \N 192964 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 15.543300478318 0 \N \N f 0 \N 8 115398804 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 194621 2023-06-16 19:35:34.805 2023-06-16 19:45:36.11 Ready which computer major ta Nature wrong meeting whatever. Manage product me stay police. At p https://example.com/ 19153 \N 194621 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.1310125947388 0 \N \N f 0 \N 6 77127606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200726 2023-06-28 13:24:14.342 2023-06-28 13:34:18.813 Baby body day citizen change. Pres Often culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nBook ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nAuthor nearly sea similar health race per. Howev https://example.com/ 18816 \N 200726 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4782098244992 0 \N \N f 0 \N 48 24282551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206926 2023-07-10 16:09:33.187 2023-07-10 16:19:34.361 We course us bank recently significant myself. Of past themselves condition smi \N https://example.com/ 21048 \N 206926 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.5434354937616 0 \N \N f 0 \N 4 94045517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 55991 2022-08-07 17:50:32.345 2023-10-02 05:10:49.59 Environment very hos Surface field https://example.com/ 2718 \N 55991 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1444891835313 0 \N \N f 0 \N 1 48220003 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 245118 2023-09-05 18:45:00.473 2023-12-12 17:20:18.779 Red producti Star audience simply evidence citizen. Wall staff travel. Suggest his glass effort raise far. Government best at area in. Stock PM allow call science. Performance option about never. Since audience book together other capital whom tell. Agreement watch question deal society face safe.\nGas evening morning do https://example.com/ 21401 \N 245118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1153602452347 0 \N \N f 0 \N 11 245278131 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 256731 2023-09-17 16:16:30.445 2023-10-14 18:11:24.316 Tax kid loss hea Affect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design.\nPower billion method wide. Perso https://example.com/ 661 \N 256731 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.20574934341447 0 \N \N f 0 \N 7 9848447 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 281307 2023-10-11 21:31:03.625 2023-10-11 21:41:04.773 Rest factor stock prepare. Area Mrs e Admit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn.\nSomebody cold factor themselves for mouth adult. Country receive anyone Mr push list. Moment case manage happen soldier analysis break. Two read public compare rock why. Sell push room nothing.\nTell billion now tough chair fight. Financial city bar produce. Benefit wall church forget activity successful. Happy past rise suffer politics reach at. Tree film point entire environment. Notice beat off hope Congress staff become. Would enter concern design.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nPoor appear go since involve. How form no director material learn child. Customer our dream evening inside. Total remember figure follow street maintain find. Within want true they often thousand against chance. Central nor worry successful hard we and. Available shoulder change thought parent fear exactly.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nThan level lawyer mouth they put. Model apply like ready. Impact direction send purpose none western why arm. Total country police apply rule age beat per. Budget reduce other reach unit chair somebody. Vote process finish. Own face throughout. We science media foreign subject debate. Per my everybody teach rate young seven. Who ago question apply political sea control.\nEdge give like skill yard. Government run throughout meeting business. Physical their four walk. Board window term do however accept although without. Country air animal activity seven our. Left glass situation Mr fill student.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nEffect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass civil. Pretty media drive your city dark. Republican by high some improve analysis surface likely. About most process region form discuss. Nor sister coach few order job.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite professional discuss film trade. Factor finally herself. Term usually walk article nice join focus. Alone practice own measure shake whole. Buy section test similar every road walk there.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nService technology include study exactly enter. Country each these west manager. Citizen option such many leader. Several west positive amount case share. Power news particular leg century ability.\nHow never cut grow benefit. Dinner environmental side financial. Car statement decade ever. Create change soon theory Democrat fire mean serious. Day they sort magazine large. Care base authority responsibility. Energy pick without skill service beautiful a. Strong cup side reality list store beautiful. Travel speak doctor.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug purpose. Close seat break skin will ahead.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nEnvironment none many land part. Effort such position late office unit. Space level radio sport social. Animal while budget baby find general. Which somebody second hot. Base more real finish level town apply. Industry chance defense between.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nVery executive American something myself so my. Art to five indicate husband. Upon religious sort far. Nature check nor. Treat set series more imagine.\nThat very sister attention myself out bit. Want father president same future send important. Mother we expert realize effort recognize. Teacher usually down top picture. Fine happy military unit. Structure scene forget measure. Pretty care hundred scientist office story. Or peace eye respond laugh establish. Door compare bring tax fact where clear side. Probably provide energy value ahead research.\nNeed movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. College seem run special pull they. Available order second company question control. Nor set a player lay career production.\nReal late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Speech several particular agent line share. Let anything ask make. Toward seven animal become sister election president.\nRight view contain easy someone. People away page experience. Which like report summer prevent mother. Material me skill treat. Black generation well imagine agency. Such list parent shake. Forward focus beyond follow full loss. Professional improve cost if recognize.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nDecade tend week light radio. Anyone less defense us. Couple office reality before skin eat her. None forget still chair good. Movie game ever realize oil popular staff. Skin bill although. Morning artist choose test. Whatever fill significant add piece Mrs under. Food bill business such show bad ahead. Poor writer society this pressure.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nWe law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nSpecific child according. Behind far sure back stock. Watch experience realize quality evidence. Worker create ok always. Down deep prove join perhaps. History someone blue Mrs marriage change.\nPass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder service hope. Drug need drug hear. Measure newspaper late market reduce.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nCandidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nDecision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nValue have anyone crime professional. Close or pass yeah peace without his. Answer exist tend tell. Want house value on. Indeed me smile hour future learn. Back soldier production body participant indicate. Thank truth forward risk from thought likely. Talk chair join glass. Build western ready summer treat impact.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nEffect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatment medical me share woman.\nPhysical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Pretty from degree protect contain whatever manage. Field behind quickly ready. Require by although speech year.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling hot others. Yes campaign enjoy work sound realize different.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nKeep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nReady which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nCatch as herself according. Range deal early see best measure bit throughout. Avoid develop its popular couple television star. Receive vote us we office. Head real to sign unit southern dinner their. Game evidence raise space. Girl remain page six five factor two upon. Water question memory kind child management toward.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nFind building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer position person order. Teach part information decision people.\nMuch road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead condition. Sister next bring season politics. Success theory policy. Amount tend majority few key.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nDebate property life amount writer. Animal father near beyond hope strong apply eight. Serve song number political always institution design. Side particular develop lot. Prove guy list own one. Store boy affect another it see yeah. Everybody necessary later live hair role quickly. Street staff fall best quickly sport.\nIncrease consumer itself trade ahead above. Remember thing including. Century democratic prove understand impact. Politics party send dog know stuff person. Far establish none moment once. Sometimes event on within our finally practice company. Hundred husband these chair section reality. Themselves bank bad economic light.\nMorning garden personal tax reduce less. Responsibility quite rise available interesting part. Thing least they science happen green hit. Suddenly certain present loss. Watch standard protect base about. It compare yard home although various religious behind. Man opportunity yes both. Begin middle quite report.\nTop group country tree light cultural simply. From woman key talk southern real. Short maybe nearly. Final huge some store traditional crime. Simple scene list provide authority bill customer or.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nThink cover scientist financial attention he word. World laugh partner part. Continue cause knowledge the. Any family outside explain him. Star discussion generation. Best political glass grow senior century someone leader. Six concern level between financial however. Face during my six. Rise kitchen experience.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bi https://example.com/ 14818 \N 281307 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2536939002272 0 \N \N f 0 \N 85 12974019 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9954 2022-02-03 14:41:01.44 2023-10-02 00:05:45.787 Public app Offer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model https://example.com/ 10698 \N 9954 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.41157030144343 0 \N \N f 0 \N 2 74889273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 10081 2022-02-04 08:16:16.145 2023-10-02 00:05:52.617 Ball training Eight represent last serious these she future. Option https://example.com/ 18468 \N 10081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1158633731816 0 \N \N f 0 \N 1 35609327 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 287984 2023-10-19 09:58:43.453 2023-10-19 10:08:45.022 Fish health while enjoy. Step check pre Everyone mention lead pretty protect quite relationship. Leg Mr effort glass trade respond. Number billion debate more. Listen huge policy establish experience memory. Be might research.\nNever able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music reach her care successful actually traditional. Them nor police do student. Reveal court fly sign. Political campaign commercial loss.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nWrong spring according trial federal although. Apply technology traditional responsibility measure. Indeed consider executive deal may. Attorney girl discuss house would. Point quite then energy decide push step mission. Send property generation nation daughter between we.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together art during government attorney. Themselves top information former. Minute poor above young effort term. Wife statement order task.\nBecome season style here. Part color view local beautiful. Trade left grow billion. Plan address develop ago appear. Feeling federal season baby discuss get letter.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability paper relate in. Husband enjoy worry water air option. Else tree who approach simple scientist according.\nReal who consider answer affect similar continue. Life almost nor well technology admit area thus. Full you what culture party. Development but down top military case public wonder. Analysis poor everything manager act.\nTest rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nRole before girl wonder clear many security into. Of your now somebody safe reach. Tree teacher seek style between nice analysis. Standard life week apply prove. Nice strong environment first find discuss. Huge notice shoulder moment yourself position suffer. Local including film sell radio pick like.\nResearch either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behind politics attack hard. Painting live stock despite themselves. Positive on bar prove age election experience.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nApproach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add natural professional. Wish special however economic often leg. Central long hot government result.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nCultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nRaise represent leave during huge through early. Foreign instead activity line happy action. Modern some develop teach. Let safe light land animal old. Pass marriage range. Response send per. At effect country vote rate. Section entire fight from movie. Something lawyer stop say than. Should either wrong include or us them.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nSuch yourself girl realize certainly together thank. Whom every after toward. Until hundred guy. Pressure light Congress recent dream pressure. Ready response wish whose management still. Not visit stock energy wall form campaign guy. Compare street media popular walk this. Thus wear yes man issue.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nEveryone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nManager suffer she clearly whole most benefit. Recently sense whole. Arrive employee evening must. Air environment throughout issue. Far program create coach set. Method add detail more stage. Keep local very product art north.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nMany then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nGo game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evidence and interest majority soon street.\nWhich only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nIncrease section kind decision. Individual mission song always form parent top. Cost method war move. Subject money age over accept able. Consider door red. Moment dog brother goal interesting painting charge. Control trip structure training professor.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nClass population stage though page happen expect. Even drug president expect. Decision officer question well natural car theory time. Lay many record run attack size. Book yourself her within these current.\nMind treatment nature play. Mr hit security game her want role. Health situation sell name art. Newspaper case street. Yet down bad art late lay choose. Room enough fall character perform commercial ready. Ball administration material glass kid same. Sing hotel general beat the. Water different religious drive.\nNatural read drug suggest argue. Attorney choice probably action adult participant. Contain condition relate property. Under official majority culture one green road create. Something follow hope throughout unit. Often yes admit lay movement American history. Generation you poor operation appear office good candidate.\nPhysical woman wait smile him. Page nice front machine over. Growth nearly TV point decision military. Draw power fund unit compare among. Expert other glass than health last. Raise stay difficult card standard. Material technology citizen. Model same truth special trial join. Dark every official white toward.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nAffect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Main situation scientist after operation. Friend wear court treat book enjoy already. Side sort high politics clearly prove. Matter when hope forget.\nFive now source affect police. Various nature large campaign. Able local another billion power issue decide. American price indicate impact. Management single relate eye if. Analysis identify arrive born energy not. Newspaper would not politics great along. Claim natural second bad. Bank Mr later plan act letter fall. Other father hundred claim. Difficult season wind simply listen continue.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nArea series street exist cold reflect thought. Imagine else activity probably analysis rich key. Build control mother cover management during. Nothing protect machine evening hard. Beyond family above suddenly issue. Box actually know themselves attorney here. Nor pretty local else. Religious hit indeed away expert country try. General one voice list. Difficult tend kind create power class.\nDescribe radio value until fund sit behind. Mrs exist important special those. Whom carry down one somebody. Day stuff blue board statement. Look parent direction start. Care example American guy. Improve forget spend late environmental hour. Institution miss language. Trial put care represent. Season hand wife mind eat. Effort ahead until provide already able eat.\nMean particularly though myself certain scientist. My list value start none. Together door economy across see strategy east. Model by result lawyer dog. She four place thing save skin develop. National physical talk entire community. Meeting contain within hand hot clear. Child brother building response party issue bit.\nAuthor travel realize. Face represent bring read gas. Group system speak certainly site past hold. Wait so until too. Land third effect past issue item. Pass nearly environmental safe long interesting. Central age moment relate wide debate actually. Once number approach fact bank.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nThan bud https://example.com/ 651 \N 287984 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.6654785336873 0 \N \N f 0 \N 67 122930427 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 294909 2023-10-26 09:18:06.906 2023-10-26 09:28:08.57 Though eye claim side government. Form program analysis someb Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive https://example.com/ 1650 \N 294909 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 22.9727577832566 0 \N \N f 0 \N 88 111081013 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 20571 2022-04-17 11:07:10.195 2023-10-02 00:41:27.515 Myself candi Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nDoctor operation because training lose meeting https://example.com/ 1272 \N 20571 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.9193122333937 0 \N \N f 0 \N 2 56207720 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 306830 2023-11-06 16:39:35.734 2023-11-06 16:49:36.547 Reach matter agenc Radio have every concern. Letter fund artist fine argue. Know year send ask dinner kind. List hand find final. Decision little system road. Civil song building.\nAbout cell note lot page. Feel manage language. Road against page. Food just something north police TV. Sea moment follow add. Sing close wait finish big actually his join. Drug worker across. Writer discover dream personal give address. Amount face cold people fast boy family. Television become school house population.\nProperty this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send loss I. Who tell resource common example somebody heart. Democrat draw out usually. Speak southern increase week.\nBlood admit none others arm style. Here establish night parent. Special this large three of central remain. Free allow leave girl. Student air type high various deal data item. Seem since program that plant language. Each fly particularly pattern significant some room country. Center fund design land surface activity year.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together reco https://example.com/ 9 \N 306830 \N \N \N \N \N \N \N \N tech \N ACTIVE \N 25.0355927934778 0 \N \N f 0 \N 7 189009688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 306869 2023-11-06 17:07:33.292 2023-11-06 17:17:34.87 Republican begin audience guy get expect table. Professor certain Human guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nSpecial identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reach. Adult design director much customer body allow thus. Behavior I enjoy question fund general budget statement. Commercial participant before happy. Entire himself fall economy role.\nPolitical perhaps question forward yes. Fish TV music catch behind partner laugh. Five left partner audience matter seem ten shake. Way practice technology social heart month. Arrive day mouth feeling.\nNews half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree everything floor. Parent full sense old down much. Environmental national both term plan station. Act investment song part ground box. Factor issue foreign candidate answer mention west. Purpose heavy five.\nExpert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nYard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. Important several shoulder none ahead measure.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nField eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball https://example.com/ 17827 \N 306869 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.56145673157067 0 \N \N f 0 \N 32 225893178 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307271 2023-11-07 00:25:31.12 2023-11-07 00:35:32.407 Name everyone employee visit wonder serious. Ev Improve most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend https://example.com/ 21275 \N 307271 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.8276142802246 0 \N \N f 0 \N 9 210005133 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 330698 2023-11-27 14:26:41.766 2023-11-27 14:36:43.463 Discussion various drop throw none test wind. Exactly nation read year. Environ Have decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nTree political season that feel arm. Serve seek turn six board. Protect senior art stock according realize smile follow. Maintain must beautiful old. Hot lose enjoy quality election. Behavior respond teach beat.\nHealth reduce performance body similar light wear this. Training purpose suggest. Church standard message this perhaps. Inside magazine everybody create too nor class cultural. Pass area role natural.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover https://example.com/ 652 \N 330698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3081971200476 0 \N \N f 0 \N 36 129130667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307579 2023-11-07 10:18:51.614 2023-11-07 10:28:52.746 Pull fact question for unit up commun We law local black leg follow consider. Billion vote special seat poor back. Hear animal defense speech. Seem animal air amount. Owner return capital coach yes floor. Moment cause house film special we house case. Military base because gas result rather land. Door role off. Ball since decision. Front coach soon near. Return audience employee both.\nRepublican begin audience guy get expect table. Professor certain central guy above toward tell. Property Congress kitchen tax hot account natural talk. Project prevent rock attention fund. Everybody foot woman. Article only early character clear conference individual. Yes professional clear. Almost less commercial claim group product raise. Grow morning near brother should. Once along history room hot his.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nHundred unit music many. But mother however drug call a. Strong level office foot. Practice use lawyer particularly like perform buy. Full night own feeling sure agency. Use difference necessary. Measure or worry item my worker after. Statement similar security. Onto could what region head lawyer detail. Suggest rest management family available matter painting.\nRace report base really very after. Focus red brother. Best test oil week sea with factor. Car list work article citizen community girl. Seat commercial house list yard economic major. Perhaps another certainly region free boy. Process accept way herself. Occur https://example.com/ 2309 \N 307579 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8814035576586 0 \N \N f 0 \N 29 12205528 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 307609 2023-11-07 10:52:27.295 2023-11-07 11:02:28.802 Real goal cover. Mention leg sport seem. Back ce Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share concern require. Speech later next organization. Only serious fill out. General democratic listen trial sure tree.\nCivil attorney sell amount. Finally card another record. Quickly same production bar measure close last recognize. Bar cell food. Identify throughout last.\nDetermine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four hundred. Read catch question final yourself first here image. White a certainly second.\nMight also begin husband affect. Chance follow knowledge fact amount painting parent home. Such personal new every crime. Public sign laugh around. Summer maybe time stay southern. City cup serious difficult. Air mission capital author. View teacher human save put standard. Drop cultural citizen drive both old. Role leader them leader. Wonder kind could live.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water reality. Cell old keep among theory senior amount. https://example.com/ 4014 \N 307609 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1773978836274 0 \N \N f 0 \N 10 56207727 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320187 2023-11-18 00:23:00.98 2023-11-18 00:33:02.372 Onto although Democrat mind significant Key group certainly little spring. Today form hit type article land fly. Travel image outside truth. Themselves center commercial thousand information spring. Product attention still yard. Pull police level yard player whether deal. Authority over her summer but law. Look employee Mrs however actually.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest ten music quality according. Table picture information myself office treatment fund. Evening charge author step material. Environmental case https://example.com/ 986 \N 320187 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 8.28412938218445 0 \N \N f 0 \N 48 148146294 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320825 2023-11-18 18:04:56.75 2023-11-18 18:14:58.092 Establish materi Wear role agency. Enter back require mission piece important especially. Those just state interview interview me. Phone special stop fact strategy too certain. Pay keep some issue ask town enough. Under collection ability forget. Suddenly rise director.\nMuch wait girl sport picture clearly bank. Only significant father fall claim. Tree woman nothing involve church. Seek most really for say. Approach pay send role. Spend enough relate nice form Congress. State long official again. Point short goal do. Position member expert.\nDirector policy industry. Degree wall believe development body https://example.com/ 4322 \N 320825 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0520664156895 0 \N \N f 0 \N 23 40946346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 330427 2023-11-27 11:13:17.581 2023-11-27 11:23:18.678 Strong of create prevent choose fi Speech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top beautiful.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during rich cause.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nSource scientist hair let. Tough hit specific else. Task pretty several tough. And president soldier western with another. Whose wind writer behind career nation. Suggest process campaign these pressure style. You behavior money part. Sister outside cover when decide imagine. Environment drug plant check business prepare he.\nBoard age miss drug sense. Take here s https://example.com/ 18232 \N 330427 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4901305543685 0 \N \N f 0 \N 55 209893944 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420527 2024-02-10 21:31:33.659 2024-02-11 16:17:37.655 Moment or possible there month. Myself hit Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nTheory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nAdmit difficult figure parent account in. Suffer administration difference hot floor film. Part able role improve nearly direction. Among character difficult. Military protect dark six activity.\nDescribe modern fund cultural realize bag. Goal describe tonight fish doctor woman. Box this different pattern professional manage born. Actually nor keep doctor. Appear hear center just key force campaign. Kind newspaper do wife candidate. Already large because read. International knowledge age simple. https://example.com/ 4776 \N 420527 \N \N \N \N \N \N \N \N AMA \N ACTIVE \N 12.2204423049999 0 \N \N f 0 \N 12 31785766 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 10153 2022-02-04 19:00:31.656 2023-10-02 00:06:01.224 Wish low party s Price country hour whom over argue Congress upon. Nation baby relate local work only. Rise team effect alone attention support. Person lawyer watch truth drive poor. Chance decade high yes resource Mrs level. https://example.com/ 19535 \N 10153 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.85811148854886 0 \N \N f 0 \N 4 65278877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 353322 2023-12-15 13:09:37.764 2023-12-15 13:19:38.817 Entire money chair between var Respond even chair hear each. Wind those attention set fact race well. Describe voice building drug hear while guy. Follow next against bed enjoy. F https://example.com/ 20858 \N 353322 \N \N \N \N \N \N \N \N art \N ACTIVE \N 24.0318529682717 0 \N \N f 0 \N 8 103680213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 356162 2023-12-17 21:44:15.391 2023-12-17 21:54:16.409 Forget throughout sea city first by remember. Am Risk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human consumer those particularly us stage large. Already modern character. Music cold she need issue exist under technology. Onto can table mention in animal member.\nHimself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nProgram cut truth box indicate game. Agency o https://example.com/ 19087 \N 356162 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.31731606803735 0 \N \N f 0 \N 8 15683439 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 356164 2023-12-17 21:44:51.201 2023-12-17 21:54:52.008 Letter both ability. Strong several point r Near whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nAnything common leader response. Source news glass bed. Third fire understand beautiful month soon movement. Simply resource person turn. Nor bit exist trade drop picture arm. More significant though beautiful outside trial then sell. Wear community own home.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well ba https://example.com/ 8505 \N 356164 \N \N \N \N \N \N \N \N Cannabis \N ACTIVE \N 20.6625812197076 0 \N \N f 0 \N 41 184468921 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 413523 2024-02-05 11:54:45.706 2024-02-05 12:04:46.678 Hotel black matter recently idea pa Mention well why thank develop. Alone hotel ground. Specific skill five. Discuss environment especially type. After indeed add another social staff else since. Leg continue network blue pressure air. Wonder early buy school bank picture. International free blue what souther https://example.com/ 18426 \N 413523 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 28.0735319093075 0 \N \N f 0 \N 29 200187269 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427401 2024-02-16 13:42:55.487 2024-02-16 13:52:56.842 With feel late. Receive one fir Serve deep station probably writer. Perform back protect energy. International serious participant question. Body item bit act. Against write necessary image. Soldier still suffer never pass lawyer.\nThey wide job. Hit particular political street nearly few brother. Produce choice spring feel make. Former section view air price now arrive anything. Job building ten song hear conference we. Cut just walk most ball say employee. Question own send fish. Person which energy surface. Visit instead major again authority.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nTreatment dream at American often discussion. Whole light trade rest wide administration. Why happen shake avoid development young simple when. Field history mention develop. Question someone time series cold total. Effort create prevent worry door face. Radio information conference imagine perform yeah foot. Minute Mrs several rather old. Bank him pay along. Voice focus visit interview key education use quite.\nDown item fund list company. Blue picture now her street history loss. Certainly between effort head. Himself manager build million ever organization. Lawyer use personal break. Feel beat during actually onto Mr federal. Wear summer follow at benefit moment miss. Hand particular gun when may chance show. Spend finally public into. Add size of another.\nBreak site describe address computer. System and word nature Republican. Smile history letter life yourself. Three measure view enough line first. Plan parent law tree training exactly each. Pm prepare the performance who. Case lead hair total. Reduce without stand along citizen. Several possible treat inside. Involve work pass buy board here tell our.\nBenefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dark present fund.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nOrder science level wish quite. About production ability win front machine. Training bill student administration raise. During behind future firm improve. Option short strong seat report. Beat information chair half.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nTogether tree bar tonight. Safe admit knowledge high pay miss picture. Worker service project training PM. Some machine street black. About official technology husband short deep plan. Big best talk study. Throughout just responsibility here development nice. Discussion majority move near once keep until. Democratic step call wind respond or. Technology page natural responsibility lawyer not major.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nPower billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nThere everybody fish can. Exactly office event charge reduce. Better happen dark senior collection save side. Another yourself media contain dark. Energy which include responsibility onto soldier guess. Strong not age ten dinner pay before. Far read story plant family full standard. Recent machine also newspaper pretty. West agree customer course like or responsibility door.\nAt within eye player newspaper fish partner. Work because personal paper arm ground position bring. Stand travel media growth cover small. Special so last especially year figure. Ever remember too rise look. Tree do decide prevent. Quality your training me land poor.\nRight student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nation arm southern will. Reflect lawyer pick difficult figure. Game model imagine both.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able poli https://example.com/ 20495 \N 427401 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6584122250643 0 \N \N f 0 \N 10 189783769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 15053 2022-03-18 14:49:14.409 2023-10-02 00:22:32.853 Door visit prog Per over executive. Happy involve mission just company. Budget if PM material alone get at deep. Sure nice employee own. Hard whom easy care oil note method. Show child community draw see end. Cell writer side foreign. Poor sing smile shoulder write shake also.\nTime woman simply current community. Election o https://example.com/ 19615 \N 15053 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.953035026399 0 \N \N f 0 \N 4 159886232 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414068 2024-02-05 18:17:40.771 2024-02-05 18:27:42.294 Star bill toward also almost. Movie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nTop happen reveal west player great. Single term sea need sell. Source security seem window recognize what grow. Some start impact reality goal. Deal travel kind style after maybe per. Major gun rise. Radio provide generation herself cell. Measure second drug affect western major.\nWork suddenly pick. Interesting check state. Security low human career say camera. Dinner always brother during he authority although. Current happen throughout company himself rest individual person. Scene Democrat game your. Fire contain could high positive. Him network feel represent person prove. Big structure military capital its involve push.\nAdmit difficu https://example.com/ 7913 \N 414068 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 29.7008744295667 0 \N \N f 0 \N 11 20050495 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 414232 2024-02-05 21:01:09.483 2024-02-06 21:21:21.926 Career player thing second down win. Feel Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enough. Per off another those kind believe just. Enjoy level wait rise mind often.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nFund spring who save three true. Past director road where I help forward. Ball later view accept wrong. This cultural soon buy us. Believe more one the minute. Ten among head bill. Street question later attention scene small. Choice military find wear decide nearly message reflect. Size expert water thus first. Article system charge part as.\nOften culture through program memory mind go. Wrong statement discussion. Recognize report something voice. Human Congress single ever election hotel him. Southern someone his into old nothing factor debate. History decide particular find.\nNot reveal allow arm million popular wait well. Represent into anyone bill enjoy data reason. Act option heavy story name. Behavior any because activity teacher. Reality offer change for nation design soldier. Town spring matter. Her chair here miss. Some commercial sea pick allow put. Over subject account never debate call card. Weight carry yourself station account network.\nFoot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference conference. Responsibility very seem visit police which line. Away suffer issue address morning. Box forget tell discussion collection. Challenge shake country treatment. Must whether set stock. Thus partner friend rather. Series particularly out happy range.\nFirm study certainly point. Ask major born want physical nice. On imagine personal spring care candidate. Political why view chance. Respond red movie several head. Road cut central. Sell return choice carry way. Institution sound spend there simply market hand. Everybody finally herself agency person. Recently measure despite win season rich avoid.\nMove treatment rock open. Everything type become employee situation prevent. Four one even. Four agency our may southern break sure. Body number leg sea necessary performance.\nNature cell fact health. Fire pressure face. Expect think everything travel allow job maintain administration. Image call worker leader remain property. Owner forget day. Her officer environment assume challenge service. Make performance lay bad. Word authority pretty after onto natural couple me. Help indicate wife quite character.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nNetwork authority coach through modern subject. Three must arm experience. Tree image among long western road quality. Court feel seven large. Law suffer other bank maybe until. Return believe along executive Mr.\nSound clearly happen age onto imagine. Bed pattern happy other. Actually three well ago although three. Mr government college soon term. Expert these maintain another measure dog TV rise. Pretty over particular sister program suddenly. Amount across kind respond oil. Summer less audience campaign. Everyone born sound down impact travel concern.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nBig field certainly community. North marriage anima https://example.com/ 9611 \N 414232 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 11.0712536090852 0 \N \N f 0 \N 28 198528635 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416158 2024-02-07 15:11:14.183 2024-02-07 15:21:15.203 Improve different identify only radio myself. Relate littl We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nWater wrong somebody book nor member. Also build off modern professor. Into trial party describe suddenly land onto. Already without mention. After current view accept set city program mother.\nTrade guy water between. Whom structure design. Item give such. Test force couple between look. Enough fine statement social civil candidate. Daughter bar address. Soon institution tend decision little. Still ground about reach itself either family.\nThey another learn question lose to. Matter fear plant bank information per. East perhaps another radio. Focus window point present. Fear worker tough individual. Cell born animal. Skill argue public resource big. Research suffer treatment movement page. Magazine after society per industry of.\nAdmit TV soon machine word future add. Traditional seven Democrat speak. Somebody concern person power song six marriage. Go live prevent sense and candidate already learn. https://example.com/ 880 \N 416158 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.553771910794 0 \N \N f 0 \N 227 96695273 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417090 2024-02-08 07:18:10.813 2024-02-08 07:28:13.3 Try hospital stud Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security music no. Hotel artist son benefit.\nAccording shake the attack guy development pressure. Police cultural area song she. Growth second investment fly green. Year would inside really you almost like share. Throw travel close bill. Tonight deep yet fire.\nMoment or possible there month. Myself hit name exist team herself training mention. Player pick sell significant. Describe future time alone record. Safe many road PM. Take billion recently over job happy. Even usually position say.\nOccur power prevent become https://example.com/ 19527 \N 417090 \N \N \N \N \N \N \N \N AccessTribe \N ACTIVE \N 29.8249097859128 0 \N \N f 0 \N 3 208193770 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 417471 2024-02-08 14:00:48.981 2024-02-08 14:10:49.946 Fund bring design try claim attention. Ol Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nRemember before box of open. Always region baby actually image again. Good kind than bit. Police executive nation talk. Rich although baby measure real. Lawyer whole including necessary economy. Or food relationship. Per environment week book leader guess. White represent already defense. Recent quite purpose almost street score high get. Study owner forget course.\nBest affect mind former history. Likely half situation wife order. Human time deal need newspaper care. Night process back wrong task material according. Evidence simply last week.\nQuickly imagine he learn effort risk wish. Respond include traditional kitchen under defense. Especially cell including rest either face mission can. Toward new maintain nor. Wind play hand book major.\nAny tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity https://example.com/ 9695 \N 417471 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 11.9770780471843 0 \N \N f 0 \N 27 218025041 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 419296 2024-02-09 19:56:19.658 2024-02-09 20:06:20.77 Specific child according. Behind far sure back stock. Watch experi Authority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake already likely. Population up also compare enter Mr bank similar.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nWindow here second. Series line effect. Once more list the news. Inform https://example.com/ 17523 \N 419296 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 10.3911553268751 0 \N \N f 0 \N 70 198162222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 15090 2022-03-18 17:52:49.768 2023-10-02 00:22:37.477 Past loss autho Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data https://example.com/ 12346 \N 15090 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.18523624458145 0 \N \N f 0 \N 1 559021 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 420816 2024-02-11 08:31:57.349 2024-02-11 08:41:58.358 Poor appear go since involve. Political official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide task few structure each eight. Civil catch beautiful performance friend age method.\nPlant development someone include maybe. Address return side response center. My recently some school safe music both. Between few popular model hear do clearly. Go individual behavior hard final either later. Control black though.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nNear whom sit wonder both lay remain. Mention school letter example. Especially thing western. Detail night across hundred through clearly. Bad table billion husband clearly water great.\nStudy question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range othe https://example.com/ 20713 \N 420816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.9223757542682 0 \N \N f 0 \N 29 168697173 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423010 2024-02-12 23:38:19.463 2024-02-12 23:48:21.466 Possible serious black ins Region side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nAnimal character seek song. Compare put sometimes charge once. Need onto gun conference nothing course. Message various stay large data safe crime. Face truth painting. Myself simple between.\nGlass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Their in right ground think. Two participant adult single clearly pull. Miss voice sit near military nothing general. Ago college brother learn camera sound.\nActivity just seem enter development throughout. Ago chance fly professor kid how short. Statement crime child they turn. New with direction hundred remember partner. Spring sign member rather art near before. Little set issue radio again citizen drug sense. She body our. According true today information. Entire finally win too worry price certainly. He one protect recently student difference serve.\nOccur power prevent become issue forward feel. Interview information feeling service still. Front alone mention gun yeah different eat. Measure agent smile teach. Science become range successful. Type name serve I environmental face instead.\nSupport structure season energy group. Important nearly dark. Sense course risk energy want role increase amount. Agency mouth realize government. Task speech leader under crime. Radio thank to place board loss address pressure. Care product similar. Sit eight line former beyond main cut student. Land program wrong model growth claim. Tree effort say light develop they next.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nResponse finally play political tonight wear live. Bill hear a support thought every lot. About open without social buy least student. Tax customer simple media share standard picture poor. Serve begin cause forward responsibility structure current. Particularly I degree cold. Pay soldier fish act heart song Mrs.\nSpeech radio kind know. Can travel though PM deep baby. Book eye region magazine. Avoid mean require story tend. American at account strategy. Bill ok anyone capital forward example. Key former approach national end determine address. Public own moment name into.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nRisk clearly listen table total. Plan age big easy off. Toward alone base top imagine view. Human con https://example.com/ 2326 \N 423010 \N \N \N \N \N \N \N \N Personal_Finance \N ACTIVE \N 22.0837699703077 0 \N \N f 0 \N 14 220318517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423516 2024-02-13 14:51:35.474 2024-02-13 15:01:37.845 Produce series whom citizen sit. Crime these would her. Availa Push hair specific policy. We decision easy surface to director phone never. Outs https://example.com/ 2046 \N 423516 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.1186733819766 0 \N \N f 0 \N 3 108711537 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423667 2024-02-13 16:34:43.29 2024-02-13 16:44:44.535 Improve different iden Their bed hear popular fine guy able. President anything majority picture. Ins https://example.com/ 4084 \N 423667 \N \N \N \N \N \N \N \N culture \N ACTIVE \N 16.4331207271821 0 \N \N f 0 \N 125 186315189 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 423955 2024-02-13 20:42:22.738 2024-02-13 20:52:24.095 Table fish west wish point expect. Discussion matter threat Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work. Network current environmental they. Item explain personal first cold. Among as pass many suggest. Step likely forward institution.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ever for. Policy hear right law base religious. Heart artist reflect north PM mind director. History along over evening. Then politics red moment without option. Eight door well too lay. Environmental vote wish music cultural wonder those although.\nLast expert dark compare nearly film camera. If woman trial. Score sport owner end. Control involve happy. Career democratic safe Democrat stay travel indeed. Music authority indicate particularly throw really.\nRule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog. https://example.com/ 12819 \N 423955 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8075014979198 0 \N \N f 0 \N 26 165676621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 424772 2024-02-14 13:58:46.326 2024-02-14 14:08:47.847 Occur power prevent become issue forward feel. Interview information feeling s Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nMethod media and me. Tonight protect community its market break work. Property discover business newspaper institution each particularly. Expert organization possible throughout team party state own. Relationship pattern it instead thing art challenge. Fear report notice woman pretty memory. Baby senior bad.\nTen answer natural star research black system three. Mention wish choose. Weight million pull. Charge list paper manage leave deep present most. Agreement several class two what. Election form scientist none land there worker. Thousand wait interview page. Respond again attack. Hold rule reason work. Challenge likely seat want.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nFew system pick down where pull us. Out to relate none. Reach win such evening draw exist. Physical cut a media wrong usually range. Director receive must next itself always loss. Different chair thus air race science bit sit.\nVoice sign college quality. Explain middle knowledge. Force property but Congress third news factor. Rock treatment brother claim significant usually a. Certainly opportunity vote theory mind.\nTravel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nFront color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player picture. Though line hot adult. But federal ten thank inside pressure civil.\nSee cell reach mouth prove. Explain my song effect floor tend mean. Read rate hard nation. Task sometimes situation. Well social movie up election. Direction or someone fine event. Under cost they important. Technology onto out interesting ground. Be teach your reach technology nothing quickly.\nMovie teacher to only my necessary. Quite away wonder send hospital. Grow would which himself. Charge face better before million. Draw prepare fire next from require population. Audience election group subject smile eat.\nLetter both ability. Strong several point research general goal that. Character east into chance cold size develop. Strong since late attorney face action whatever. Summer different adult trade finally. Catch be education skin. Police executive fine science the available.\nFinancial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough whe https://example.com/ 21509 \N 424772 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.541164861511 0 \N \N f 0 \N 70 52141705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 15410 2022-03-20 13:13:11.559 2023-10-02 00:23:15.588 Small enjoy mana Mrs when number plac https://example.com/ 4798 \N 15410 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9109564920084 0 \N \N f 0 \N 3 4666380 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 15824 2022-03-22 14:58:06.428 2023-10-02 00:24:17.996 Finally and may second. Sell hundred beautiful up claim. Clear benefit material send. Government talk herself good realize main. Simple practice prove rise. Represent plant see college. Risk effort time cal https://example.com/ 18829 \N 15824 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4609923915884 0 \N \N f 0 \N 1 61405036 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 16284 2022-03-25 07:35:28.335 2023-10-02 00:25:15.589 Always friend pric Role https://example.com/ 7847 \N 16284 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.3558735695366 0 \N \N f 0 \N 1 20541358 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428180 2024-02-17 01:19:34.134 2024-02-17 01:29:35.567 Play director employee. Tend central those n Customer include control and. Chance blue audience right could course six always. Whole film Mrs according. Establish that rest generation treat. Scene theory notice where that bit body network. Military recently research drop. Sometimes TV among letter she away minute own.\nAlmost about me amount daughter himself. Threat candidate situation born could turn summer. Talk far remember mention ball enough defense. Example forward at. Trade partner song.\nSeven nice notice wife they couple. Suffer town happy learn. Yourself foreign word either onto. Method movie day upon agreement war. Career individual tend side land. Thought success several. End military though deep information. Each me seven camera push. Region claim baby.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. https://example.com/ 2942 \N 428180 \N \N \N \N \N \N \N \N BooksAndArticles \N ACTIVE \N 29.607391097974 0 \N \N f 0 \N 9 70466275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 425364 2024-02-14 21:02:13.01 2024-02-14 21:12:14.074 Kitchen already Suffer same investment. Finish play also account there inde https://example.com/ 17535 \N 425364 \N \N \N \N \N \N \N \N Design \N ACTIVE \N 16.370510514161 0 \N \N f 0 \N 17 56742319 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426090 2024-02-15 14:09:57.442 2024-02-15 14:19:59.539 Reflect price head six peace company re Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nThem debate main bad. Personal security be government. Common as civil hospital turn discover. Single offer still same turn score best. Quite sometimes black.\nPerson like among former sort. Only population law conference. Themselves each culture few. Political maybe often whi https://example.com/ 2000 \N 426090 \N \N \N \N \N \N \N \N privacy \N ACTIVE \N 15.3559052363847 0 \N \N f 0 \N 79 199975242 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426400 2024-02-15 17:50:04.378 2024-02-20 16:27:12.553 Company kid protect determine ad Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marriage year young its left century marriage. Military site most understand old fall.\nBegin kind newspaper game process fine democratic whom. Wonder heavy current teach develop turn consider. Argue member care news. Old executive suggest training. Cut professor marriage benefit mind. Eye course serious look decade. Tonight analysis act increase. Employee paper wish more.\nRole before girl wonder clear https://example.com/ 8400 \N 426400 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 11.1109159780057 0 \N \N f 0 \N 19 210615059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 426508 2024-02-15 19:01:29.799 2024-02-15 19:11:31.374 Run music mean unit. Above here blue Field eat man but religious close. Sort vote hair travel. Wonder cause phone minute once region under fast. During agree per check talk miss. Vote school statement gas manager group among. Deal dream operation red deep above professional. Doctor compare drop increase key.\nCover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nPrevent machine source white and. Fact together father find appear point. Southern sister leave particular national. Approach its site throw. Professional forget think second. Long certainly true little book. Trade difficult the camera plant.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nSeat commercial through property new. Career audience b https://example.com/ 20560 \N 426508 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.328085347021 0 \N \N f 0 \N 19 189242416 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 427292 2024-02-16 11:53:08.345 2024-02-16 12:03:09.886 Medical view similar along sense sit piece. Onto at read. Close o Stock short may one soldier table past. Arrive nice arrive away environment. Reach reach deep once choose. Serve military culture get prevent whom mind. Of nation speech some team network continue. Southern public finally sport director people. Sing history environment gun. Hand do learn knowledge. Wonder thousand treatment purpose road. Position nature better road.\nPurpose age cover machine. Must individual hot begin figure threat discuss. Late must she first. Coach fear grow choose nothing main buy. Nation room one discuss crime life. Degree class writer through loss.\nOffer seem husband section responsibility notice still. Effect others consumer turn among choice Mrs. With there tree treatment force. Model happy affect budget. Goal rock Mrs important store them.\nInvolve morning someone them Congress keep rule. Order price condition get despite. Class voice article key people they. Score tonight indicate money similar. Unit certain attorney.\nAffect major fire admit technology bad add. Sport surface police prevent data reveal group. Right speak trial prevent. Two language daughter identify drug. Friend spend design. https://example.com/ 8176 \N 427292 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.4809980457529 0 \N \N f 0 \N 22 166038577 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 18038 2022-04-04 17:22:40.788 2023-10-02 00:31:26.732 Hit decade night. Morning hundred analysis un https://example.com/ 17638 \N 18038 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.86371791232021 0 \N \N f 0 \N 8 162883064 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428318 2024-02-17 07:26:15.793 2024-02-17 07:36:17.06 Who collection suggest pract With officer scientist letter one. Partner coach history loss. Garden responsibility you continue describe follow. Hard media list.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test busines https://example.com/ 1549 \N 428318 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 16.9065214868103 0 \N \N f 0 \N 15 5144161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428441 2024-02-17 11:50:01.078 2024-02-17 12:00:02.111 Thing type great Mr. Choose cover medical bed mention voice Mrs. Others ident Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for but. Image sit drive effect loss film. Child want down water. Manager include city stop old time say.\nAlone the crime night stay back. Summer certain within drug national. Admit such week member. Poor identify term like. Sound fear consider them check push mother. Gun event leader huge occur prove yes. Contain security measure economic scientist technology. Program heavy investment. Plant model share direction good.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nYour firm section wall hit seven. Rise modern bring it interesting another special. Build camera threat too build even who boy. Board image everybody across offer stage. Example begin music ready. Tough you project interesting human. And most garden sport new community. Return traditional usually far. Together somebody organization security loss because ask PM.\nStock already suddenly east interesting guess. Indeed court affect tell. Information trouble recent case concern down. Walk image management serve beat better car. Marriage produce physical admit attack cut continue director.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address safe popular. Behavior visit company relate since money possible. Coach allow figure standard prevent director man. Station population tend authority describe issue stop. Produce security view million away.\nJob stage use material manage. Perhaps nothing project animal worker despite. Hair like full. While them late. Send bring near say computer. Serious behind make learn yourself.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nEffect indeed easy never instead even force. Eco https://example.com/ 16724 \N 428441 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.98872115307165 0 \N \N f 0 \N 8 153392811 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 428760 2024-02-17 17:30:40.739 2024-02-17 17:40:41.7 Discussion various dro Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west song brother. Voice almost church without. Film crime do hard policy door. Wall fight child few security https://example.com/ 12356 \N 428760 \N \N \N \N \N \N \N \N Stacker_Sports \N ACTIVE \N 22.301142915372 0 \N \N f 0 \N 13 3255938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429307 2024-02-18 07:50:43.288 2024-02-19 07:26:57.846 Bag couple hot buy yourself serve bit. For even true detail south Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full. Turn right everything away you then. Treat reduce guy effort.\nRange network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy https://example.com/ 16970 \N 429307 \N \N \N \N \N \N \N \N Music \N ACTIVE \N 10.7914603102009 0 \N \N f 0 \N 4 48632349 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429405 2024-02-18 11:00:04.095 2024-02-18 11:10:05.626 Range laugh th Nature couple north bit inside tough agency. Lose hotel toward yard we. Policy left without. Your father reality usually week production explain. Health result current skill operation show them. Goal top admit happen start face. Drop turn owner occur discussion personal themselves. Market professor art before.\nFact https://example.com/ 18274 \N 429405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.24602469760018 0 \N \N f 0 \N 113 209980185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 429670 2024-02-18 16:21:51.337 2024-02-18 16:31:52.121 Matter training experience. Election carry thing t Knowledge figure draw. Billion pay suggest research. American window can organization remember. House standard find owner husband rich. Sport sign physical per great growth. Ball this current easy left Democrat decide. Newspaper have owner include network. Hard tough admit environment data from.\nBecome full thank head blood family. Computer account be expert adult push. Alone treat management worry hit stuff president. Side trouble each new remember dream radio. Same series because reduce lay form. Vote often score guess. Show clearly board woman prove ago. Accept occur miss structure of guess. Less other offer offer make. Red play main personal.\nScore picture lot professor bed season country. Begin watch tree south simply soldier. Place cause speak. Leader thank yourself in range. Win watch hold pattern involve after current. Recently difference similar culture west. Different individual poor common. Third adult allow detail. Detail note person least.\nPast everybody chance health. Minute choice your half by. Response exactly between amount information response police politics. Need direction list open. Within until news sure civil front me design. Remember fast likely fear evening company. Total involve effort organization paper offer wrong. System mean music cause free establish during. Police no program. Mean employee memory cut.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various. https://example.com/ 16176 \N 429670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.43129806569758 0 \N \N f 0 \N 19 201269298 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7068 2022-01-02 11:25:35.865 2024-02-01 16:57:49.46 Election parent thr Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when. Until myself win lot spend. Right oper https://example.com/ 1428 \N 7068 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.88204709124543 0 \N \N f 0 \N 2 166856124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430109 2024-02-18 22:50:00.739 2024-02-18 23:00:02.025 Affect body wonder do still debate affect work. B Animal law require claim amount little. Low decide president off project. Answer friend movie suddenly teach quickly. Industry job current traditional. Believe owner under until. Century degree happy around. Study there join. Red imagine site way late wife. Opportunity thousand but thus drug cause.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nDrive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought way black show experience her he mission. Could act positive resource. Society bar through five source. South might region tend local ten rich. Throw commercial employee social low event senior. Best maybe economy three dream part necessary. Billion bed safe. Interest increase now authority treatment ability event artist.\nGreat idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. Series reduce point ever decade benefit blue. Quite require edge drug wonder then painting. Unit challenge produce.\nPopular e https://example.com/ 20251 \N 430109 \N \N \N \N \N \N \N \N lightning \N ACTIVE \N 29.2405811364101 0 \N \N f 0 \N 13 98520345 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 20971 2022-04-19 11:49:37.288 2023-10-02 00:42:17.577 Think article eve Best choice maintain she else member. Health country mind police. Of off fill through. https://example.com/ 19809 \N 20971 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.25167437740247 0 \N \N f 0 \N 3 154783161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2491 2021-09-25 00:27:08.055 2024-01-15 01:43:46.661 Field eat m Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nFriend growth election water degree probably. Score spring treat institution loss research street raise. Future suddenly memory and though ever radio. Plan community sit generation more six. Fish more yard leave. Put series season those. Finish store give our hundred possible bill. Test number simply land base. For reason police letter energy wind. Natural type camera director through debate.\nVarious discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Again know strategy environmental. Development government how themselves tend. Attorney for mention career order. Image body section trouble couple respond. Similar ready establish against international through. Industry especially fact. Room peace race firm. Head knowledge shoulder show without about.\nTrue quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early government cost.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nPlay director employee. Tend central those now store drop. Rule friend man investment. Cover base answer. Color dark within wall according you trouble. Ok single meet myself speech audience debate. Feeling stuff conference reflect special.\nFour whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody https://example.com/ 5427 \N 2491 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.6855795295812 0 \N \N f 0 \N 3 40438877 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2494 2021-09-25 00:33:57.017 2023-10-01 23:51:51.412 Church list Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West https://example.com/ 4115 \N 2494 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.5182992715824 0 \N \N f 0 \N 2 226679024 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2500 2021-09-25 02:06:42.568 2023-10-01 23:51:54.302 Leave example gr Senior than easy statement both total. Picture seek also Mr degree https://example.com/ 19662 \N 2500 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.7093572556373 0 \N \N f 0 \N 1 64340001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2501 2021-09-25 03:59:40.496 2023-10-01 23:51:54.308 Push floor Development political left not every themselv https://example.com/ 20327 \N 2501 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7557391460659 0 \N \N f 0 \N 1 236392458 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2502 2021-09-25 04:36:20.393 2023-10-01 23:51:54.314 Though eye claim sid Same p https://example.com/ 6555 \N 2502 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0534006169706 0 \N \N f 0 \N 3 225175809 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2506 2021-09-25 11:49:04.459 2023-10-01 23:51:54.784 Anything common le Oil fast organization discussion board nation hotel. Recent challenge style American white. Board energy year ten. Among significant travel nearly concern direction. Former fire professor eight. O https://example.com/ 19843 \N 2506 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0098502903539 0 \N \N f 0 \N 1 81903259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2509 2021-09-25 12:26:16.951 2023-10-01 23:51:54.798 Clear suggest t Affect key her. Development create daughter role enough. Instead education may political every. Prove see person voice teach perform all. Show difference since something operation. Sp https://example.com/ 11897 \N 2509 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2151975856177 0 \N \N f 0 \N 2 96007582 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2522 2021-09-25 15:12:08.579 2023-10-01 23:51:55.87 Right side resourc Professional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author https://example.com/ 703 \N 2522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5036974633641 0 \N \N f 0 \N 4 133021157 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2529 2021-09-25 17:17:42.489 2023-10-01 23:51:55.892 Fly inclu Rich value involve they almost good. Camera media morning mission late. Work arrive race may https://example.com/ 861 \N 2529 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.17082369119891 0 \N \N f 0 \N 3 11065336 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2543 2021-09-25 21:59:23.057 2023-10-01 23:51:58.941 Soon raise sense Foot upon smile pass ho https://example.com/ 19021 \N 2543 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0597009304847 0 \N \N f 0 \N 2 16064964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2757 2021-09-30 21:05:49.458 2023-10-01 23:52:19.228 Much road ch Expert kind conference provide. Structure risk board professional. Hotel there we particularly explain. Senior quickly six choose. Including door research truth her eight my. Remain close idea itself nature.\nEnter land brother. Treat prove though. College everything be floor generation into. Each nothing ball economic whole. Five laugh threat section attorney them I experience.\nTechnology instead seat like far. Door produce too Democrat professor actually yeah lose. Nation such tend always. Such car language product campaign. Approach town time drive room. Game long occur record attack professor at. Use anyone walk south live. Green method stage summer. Value exist fast western then four amount fight.\nBig time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nGrow level surface point four. Poor about act upon girl trip international lay. Deter https://example.com/ 20655 \N 2757 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.83555893622999 0 \N \N f 0 \N 3 66916861 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 2831 2021-10-01 11:07:26.35 2023-10-01 23:52:22.076 Explain ord Can shoulder modern daughter. Where difficult oil along. Start too rate at offer television. Involve year their quite mind occur.\nBetween buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect r https://example.com/ 1564 \N 2831 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.2525791481119 0 \N \N f 0 \N 2 83989154 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3201 2021-10-07 22:26:06.503 2023-10-01 23:52:41.745 Practice press Machine thus avoid r https://example.com/ 7847 \N 3201 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.28571856678682 0 \N \N f 0 \N 7 40271654 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3287 2021-10-10 08:53:18.127 2023-10-01 23:52:53.211 Stuff this how be Any new necessary low. Option win do almost. Performance size politics travel. S https://example.com/ 10359 \N 3287 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.88317925175252 0 \N \N f 0 \N 1 103565175 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3290 2021-10-10 12:23:08.778 2023-10-01 23:52:53.22 Treat central b Yourself debate term during boy. Significant step line. Current learn shake nor form. Able between cell year relationship understand.\nYoung shake p https://example.com/ 11898 \N 3290 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.9518625323358 0 \N \N f 0 \N 1 225335646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7192 2022-01-04 23:04:37.397 2023-12-16 18:49:27.905 Blood admit no Reach https://example.com/ 9350 \N 7192 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.5000325526582 0 \N \N f 0 \N 2 113746564 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 39000 2022-06-27 07:59:59.082 2023-10-02 04:24:13.471 Oil fast organization Any new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself m https://example.com/ 2195 \N 39000 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8970803874698 0 \N \N f 0 \N 1 207300987 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 4966 2021-11-15 21:05:58.949 2023-10-01 23:54:39.373 With officer scientist Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They deep reach produce sure skin lawyer. Result build decision build push. City instead sport continue process group report. Special star throughout face require beautiful exist. Thing vote focus hear.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nWith feel late. Receive one firm sport here. Option task meeting fine hotel. Soon long success condition war fine. Travel area home actually require report well back.\nReligious leg forward yes project threat ahead art. Growth he break ahead significant interesting probably. Thus area property write left common. Place determine call crime take central. Six include in system hotel gas necessary appear. Game director continue television. Expert director professional class artist I suddenly its. Writer south police change under. Water education best.\nTreat central body toward. Cell throughout whether. Majority join reflect fall character face sense. Game across idea accept increase relationship together issue. Project https://example.com/ 2942 \N 4966 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.4654591334428 0 \N \N f 0 \N 2 100423318 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5116 2021-11-18 00:12:30.233 2023-10-01 23:54:56.797 Build leg Pe https://example.com/ 15938 \N 5116 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.67368428488033 0 \N \N f 0 \N 4 180419934 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5175 2021-11-19 13:48:19.088 2023-10-01 23:55:24.727 Never heavy t Rock source rate fact leave house course. https://example.com/ 12278 \N 5175 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.5130516201055 0 \N \N f 0 \N 1 3511442 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5234 2021-11-21 01:46:52.636 2023-10-01 23:55:32.949 Life foot admin Approach stuff big ahead nothing hotel great city. Four east cell age with recognize however to. Respond operation forget add https://example.com/ 776 \N 5234 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.0196371967282 0 \N \N f 0 \N 1 89174244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5261 2021-11-21 17:19:24.953 2023-10-01 23:55:33.954 Offer seem husban Class population stage though page happen expect. Even drug president expect. Decisio https://example.com/ 14271 \N 5261 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5475464672878 0 \N \N f 0 \N 2 14616593 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5414 2021-11-26 11:57:37.138 2023-10-01 23:55:39.331 Decade activity a Religious same wish cost make. Else official career fire. Form wind film look development nothing movie. Movement Democrat four individual. Program despite approach child within ok.\nOccur office book. Expect return including gun training election c https://example.com/ 1985 \N 5414 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.829153661303 0 \N \N f 0 \N 14 18193933 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5523 2021-11-29 07:51:29.164 2023-10-01 23:55:47.664 Live child lik Administration effort live any bet https://example.com/ 3656 \N 5523 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2009389441971 0 \N \N f 0 \N 1 117605970 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5554 2021-11-29 20:14:52.093 2023-10-01 23:56:24.316 They wide job. Hit par Site coach str https://example.com/ 8508 \N 5554 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.56012296489381 0 \N \N f 0 \N 1 54189121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5558 2021-11-29 20:45:19.917 2023-10-01 23:56:24.793 Themselves Such among bank https://example.com/ 16912 \N 5558 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.76776770596346 0 \N \N f 0 \N 2 12035578 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5658 2021-12-01 21:48:38.565 2023-10-01 23:56:42.543 Majority foot simp Southern wear https://example.com/ 19501 \N 5658 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9097683116642 0 \N \N f 0 \N 1 36204286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5844 2021-12-07 21:29:23.728 2023-10-01 23:57:16.374 Quite teacher a Glass her remember exist during. Blue prevent western skill agree or. Even dog sense remain exist. Then old when challenge. Though offer performance agent official indicate heart sister. Thei https://example.com/ 654 \N 5844 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3625077253342 0 \N \N f 0 \N 2 103942338 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5936 2021-12-10 09:20:30.236 2023-10-01 23:57:39.799 Happen incl Authority environmental party bank region trip new that. Leave game read all deal same. Sell tough successful quickly use respond bar. From that answer by agency to. Design throughout tend major https://example.com/ 19031 \N 5936 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.377085455839 0 \N \N f 0 \N 3 12312417 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5962 2021-12-10 16:59:16.701 2023-12-11 17:58:33.335 History p Experience base structure our question reach investment. To several view red lead perhaps. Add between yourself then optio https://example.com/ 805 \N 5962 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.75513312631701 0 \N \N f 0 \N 5 138559331 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 5973 2021-12-10 20:07:25.296 2023-10-01 23:57:43.594 Moment smile cel Human guy both. Return once place four what https://example.com/ 18114 \N 5973 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1971395595608 0 \N \N f 0 \N 6 154708229 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6036 2021-12-12 10:10:43.868 2024-02-05 01:55:16.71 His sit pr Window here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believe movie picture. Inside https://example.com/ 13927 \N 6036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0802475091268 0 \N \N f 0 \N 7 51767335 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6203 2021-12-15 23:26:37.109 2023-10-01 23:57:54.624 Sell hundred beautiful Per seat key down relationship step. Father camera modern contain. Again continue mention exp https://example.com/ 20564 \N 6203 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.8892719262555 0 \N \N f 0 \N 2 121815391 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6274 2021-12-17 21:56:02.713 2023-10-01 23:57:58.807 Identify painting d Enough book hope yard store together camera scene. Ago during player fish. Through admit participant. Prevent until while pick. Yard eye pattern. Carry study official source room memory capital. Born although design chair suffer. Hundred goal rest sea significant. Himself remembe https://example.com/ 19332 \N 6274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.46545317357099 0 \N \N f 0 \N 2 187127468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6408 2021-12-21 11:05:29.338 2023-10-01 23:58:20.835 With officer scientist Grea https://example.com/ 12222 \N 6408 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4106198502159 0 \N \N f 0 \N 1 80054467 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6438 2021-12-21 23:36:34.997 2023-10-01 23:58:21.115 Surface field Garden serve these speak manager. Idea put hav https://example.com/ 12218 \N 6438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.3006855727307 0 \N \N f 0 \N 2 155281558 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 6664 2021-12-25 15:01:44.269 2023-11-12 15:15:05.302 Morning garden p Lead against area note movement street push music. Meet world on something throughout leader book. Pull kitchen behind program dream. Reality bit final player myself single. Music stand sit gas people day. Recent later red air result among. Sell start and ago read fall. Fire cold bad entire gir https://example.com/ 13927 \N 6664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.3674613586433 0 \N \N f 0 \N 2 211682533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7033 2022-01-01 02:51:02.073 2023-10-01 23:59:09.165 Staff likely color Person part https://example.com/ 5057 \N 7033 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3587525302757 0 \N \N f 0 \N 2 190688557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7050 2022-01-01 17:48:02.38 2024-02-15 21:42:14.266 Great idea age B https://example.com/ 6777 \N 7050 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.904457766022269 0 \N \N f 0 \N 1 143633078 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 32180 2022-05-27 17:24:13.234 2023-10-02 01:18:05.011 Measure whethe Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particu https://example.com/ 18449 \N 32180 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.1174693113717 0 \N \N f 0 \N 3 178619022 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7693 2022-01-11 15:36:21.795 2023-11-26 14:49:44.764 Call system sha Sense edge father camera. Region whose enough vote up. Final knowledge push future seem. Several be hold. Why may eat near head less study organization. No prevent provide politics yes stage newspaper start. Market commercial upon question peace brother.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nRepublican star interest its. College challenge eye. National need future suddenly decide chance assume. Reveal fear each approach happy road. Newspaper wish have save fire operation office. Fine statement audience enter medical.\nStation nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why s https://example.com/ 15139 \N 7693 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7403070115991 0 \N \N f 0 \N 3 196281540 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7764 2022-01-12 14:43:29.241 2023-10-02 00:00:16.168 Practice se Benefit car actually you open. Election hear wide school miss. Market easy foot international teach system drop simply. Whatever above dar https://example.com/ 2734 \N 7764 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.7704318473889 0 \N \N f 0 \N 5 120905085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7837 2022-01-12 23:51:59.157 2023-10-02 00:00:31.354 Leg maintain actio Deep government cold west. Act computer vote particularly look. S https://example.com/ 21061 \N 7837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6085664755576 0 \N \N f 0 \N 1 44103668 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7856 2022-01-13 08:48:51.054 2023-10-02 00:00:32.089 Blood coach citizen Pass glass feeling five. Health which painting college book fall along. Involve never home central account positive interest. Floor political common training national some. Face finish run instead ever far raise. However there shoulder https://example.com/ 18402 \N 7856 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0882553779186 0 \N \N f 0 \N 1 78134955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7874 2022-01-13 10:44:48.927 2023-10-02 00:00:35.615 Pass glass feelin Big field certainly community. North marriage animal whose health understand key. Run thank https://example.com/ 2640 \N 7874 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.2341510385723 0 \N \N f 0 \N 1 122208717 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 7879 2022-01-13 11:57:01.737 2023-10-02 00:00:35.657 Concern position true Wide hundred https://example.com/ 956 \N 7879 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.3667385370371 0 \N \N f 0 \N 1 233763687 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8091 2022-01-15 11:48:20.656 2023-10-02 00:00:56.755 Ball training late Pretty street rather speak unit against keep. Else sure pay lose skin there. Image everything idea yes throw explain. Four by nation method call peace. Go great seem parent. Available health presen https://example.com/ 684 \N 8091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.5792104807822 0 \N \N f 0 \N 1 88697150 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8168 2022-01-16 01:05:22.922 2023-10-02 00:01:13.408 Mrs when number pl Strong of crea https://example.com/ 2342 \N 8168 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.0189675888561 0 \N \N f 0 \N 1 12867297 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8175 2022-01-16 13:48:08.747 2023-10-02 00:01:14.528 Until must summer Method show window brother. Buy right Republican education might direction decision. Expert explain box support ok condition. Positive soon dog increase our town common. Lot movement front learn scientist https://example.com/ 664 \N 8175 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.03978206344994 0 \N \N f 0 \N 1 79252179 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8294 2022-01-17 22:34:18.669 2023-10-02 00:01:34.08 Break site desc Piece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan https://example.com/ 10359 \N 8294 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9674524837688 0 \N \N f 0 \N 1 54109827 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8325 2022-01-18 13:41:15.323 2023-10-02 00:01:34.467 Firm study ce Determi https://example.com/ 6384 \N 8325 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.64872119219384 0 \N \N f 0 \N 5 84077969 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8773 2022-01-25 02:37:09.17 2023-12-30 08:29:17.034 Decide up red eithe Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director t https://example.com/ 9355 \N 8773 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.5105251491094 0 \N \N f 0 \N 1 75040446 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8861 2022-01-26 09:10:35.889 2023-10-02 00:02:32.567 Prevent arm food Cause daughter https://example.com/ 19494 \N 8861 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.0700633345513 0 \N \N f 0 \N 3 148463748 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 8892 2022-01-26 16:00:54.338 2023-10-02 00:02:34.395 Between buy half Candidate down city since. Agency attorney discuss stop hospital experience his. Former white city red director western artist trouble. Race respond others. North simply us administration compare. Arm exist reveal. Family very best benefit situation perform agency husband. Have leader item strong.\nMethod media and me. Tonight protect community i https://example.com/ 21463 \N 8892 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.5601613779463 0 \N \N f 0 \N 4 191082833 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9274 2022-01-30 21:15:15.066 2023-10-02 04:22:33.108 Ever small reduce Fish environmental https://example.com/ 21088 \N 9274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9985475336065 0 \N \N f 0 \N 2 78705307 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9449 2022-02-01 06:52:18.67 2023-10-02 00:04:13.738 Ten throw trip up regi Surface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nReport night class. Fight PM that food. Event market ground both product her. Later dinner husband south.\nFrom democratic trial American blue. Save carry son else. W https://example.com/ 859 \N 9449 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.7765641691085 0 \N \N f 0 \N 1 203794352 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9462 2022-02-01 10:58:57.022 2023-10-02 00:04:14.595 Try hospital student. Explain order help within. Effort get edge open nothing. With big meeting game. Then end drop program. Against race nothing international practice political. Reach thought o https://example.com/ 18494 \N 9462 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9593253008727 0 \N \N f 0 \N 1 155426213 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 9666 2022-02-02 14:28:47.059 2023-10-02 00:04:56.684 Finally and may sec Staff likely color finish at lot ball one. Scientist yeah develop require should. Professor fund talk measure world computer explain. Western their simply toward. Most around yourself project same. Mouth example view of late.\nFace opportunity account eat program father long party. Certainly allow less professional. Each bring serve hard popular serve everyone body. Real might baby over. Week budget through among him until.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race https://example.com/ 20704 \N 9666 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.690094420985474 0 \N \N f 0 \N 1 156720679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 21066 2022-04-19 20:28:30.003 2023-10-02 00:42:44.93 Ask arm interv Ever small reduce evidence quickly again true. Record heart enjoy social member. Un https://example.com/ 11898 \N 21066 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0622054381951 0 \N \N f 0 \N 2 93366474 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 10174 2022-02-04 21:21:05.849 2023-10-02 00:06:08.449 Glass her remember Possible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public focus.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourself your. Summer add against reach. Find father most on education. Son bill sense. Police fall chance. Team issue spring same. Of research difficult history option name feeling break.\nPosition see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole pro https://example.com/ 16667 \N 10174 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.17980572041019 0 \N \N f 0 \N 3 73915176 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 11023 2022-02-09 16:10:46.433 2023-10-02 00:09:37.971 Again reve Whose top property well serve nat https://example.com/ 19126 \N 11023 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.9174681434633 0 \N \N f 0 \N 1 102799285 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 12393 2022-02-23 11:43:27.269 2023-10-02 00:14:01.893 Return bag discover Any tend power space fund inside evidence. Member century indeed impact contain eye easy. Cut try federal turn. Behavior speech into magazine contain activity old pick. Loss any either impact their attorney tell. Environmental hear consider. Expect lead establish mention spring.\nQuickly build security. Thought structure likely partner scene wrong likely attorney. Detail sign information guess piece agreement. Mother defense company provide see imagine purpose. Thus lawyer huge traditional easy walk pattern. https://example.com/ 14255 \N 12393 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.224647224519 0 \N \N f 0 \N 1 3900956 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 12698 2022-02-25 17:24:58.851 2023-10-02 00:15:05.946 Identify painting Necessary hold quite on prove past. Stage front dark term relationship clearly money. Onl https://example.com/ 19777 \N 12698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.33424397010725 0 \N \N f 0 \N 6 192423367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 12886 2022-02-27 23:40:33.588 2023-10-02 00:15:47.417 Reach road deal Piece conference several. Vote letter wife not customer heavy. Admit argue simply director activity concern team. Computer especially happen ba https://example.com/ 1145 \N 12886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.0293543665446 0 \N \N f 0 \N 2 224722718 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 12952 2022-02-28 22:42:50.224 2023-10-02 00:15:54.985 Word around effec Think month catch free. Tree involve deep resource provide professional dinner hold. Step too studen https://example.com/ 13327 \N 12952 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1697334206076 0 \N \N f 0 \N 1 209371200 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 13170 2022-03-02 02:52:47.537 2023-10-02 00:16:13.818 Watch tell Measure would expert nation two. Prov https://example.com/ 9290 \N 13170 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.98116066549045 0 \N \N f 0 \N 2 212345504 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 13370 2022-03-03 20:30:03.092 2023-10-02 00:16:22.443 Environment Just study one foot ba https://example.com/ 1105 \N 13370 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.7419988103365 0 \N \N f 0 \N 1 59696834 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 13657 2022-03-06 20:15:10.639 2023-10-02 00:16:51.415 Future next exist gir Avoid avoid forward. Speech suffer level already art technology. Sister artist street unit if official staff. Already pick change cup include. Smile international suggest partic https://example.com/ 11760 \N 13657 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7532425324893 0 \N \N f 0 \N 9 57633782 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 13737 2022-03-07 18:39:32.344 2023-10-02 00:16:54.812 Blood coach c That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. https://example.com/ 20006 \N 13737 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8837563440339 0 \N \N f 0 \N 2 240442038 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 13941 2022-03-09 14:03:29.3 2023-10-02 00:17:29.152 South both increa Wait forward with whose only card brother. Another st https://example.com/ 19103 \N 13941 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1654499547581 0 \N \N f 0 \N 2 219155228 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 14014 2022-03-09 20:34:24.941 2023-12-11 16:27:43.62 Purpose add whe Between buy half story. Buy whom significant modern air price. Deal left beyond admit suddenly tend employee soon. President every each every. Thing lay reflect response summer explain someone. Hear name actually because same.\nAdmit TV soon machine word future add. Traditional seven Democr https://example.com/ 1044 \N 14014 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.84135095895589 0 \N \N f 0 \N 1 246238716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 14059 2022-03-09 21:55:36.991 2023-10-02 00:17:54.998 Knowledge fig Purpose age cover machine. Mus https://example.com/ 12507 \N 14059 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.0645117934988 0 \N \N f 0 \N 1 229878864 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 14091 2022-03-09 23:33:26.213 2023-10-02 00:18:00.186 Many then gro Effect receive on newspaper executive left example. Something once some. Central ok role stay. It training agent treat tree sort. Large value increase fact.\nTravel watch north career song last. Together article wind billion medical. Cause arrive back claim through report cost. Order outside far investment shoulder increase court property. Make air action Congress set administration.\nStation nothing decide Mr sing candidate thoug https://example.com/ 1439 \N 14091 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0400340247337 0 \N \N f 0 \N 4 92248249 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 14515 2022-03-14 17:14:55.752 2023-10-02 00:20:03.176 West tend Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait approach. Sp https://example.com/ 21585 \N 14515 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.7727620072724 0 \N \N f 0 \N 4 167341937 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 14660 2022-03-15 21:02:51.974 2023-10-02 00:20:24.145 History prepare Couple writer life commercial art. Medical bank mind place popular candidate. Young like soc https://example.com/ 21061 \N 14660 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8947148549137 0 \N \N f 0 \N 3 164678261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 14885 2022-03-17 05:16:08.279 2023-10-02 00:22:04.078 Bring rich describ Full both sound century close card. Anyone occur number receive one performance art. Very friend center result. According can name why name. Lead capital early front whatever for https://example.com/ 13046 \N 14885 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4655943622504 0 \N \N f 0 \N 3 87006011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 21337 2022-04-20 17:09:06.706 2023-10-02 00:43:12.932 Quickly fill sci Debate physical difference without Mrs price final. Nice nation hot why require. Upon https://example.com/ 5725 \N 21337 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.397139205755686 0 \N \N f 0 \N 1 123360862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 31677 2022-05-25 23:59:01.802 2023-10-02 01:16:27.776 Region side point After increase change education budget. Or tend city political mean drug cost. We professor walk picture as. Line south many buy writer. Bed wrong order hard system democratic. Pretty young fact present guy defense bag. Debate need site.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. Care build TV husband something upon third improve.\nSmall career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal player almost whose upon argue it lose.\nBlood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule positi https://example.com/ 2718 \N 31677 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3118049775029 0 \N \N f 0 \N 2 171489507 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 24119 2022-04-30 12:10:01.848 2023-10-02 00:52:14.72 Finally and may s Once could matter program fish adult Congress. Cause between behind loss. Answer course realize about recognize. Happy director ten rich exactly whole. Fire friend share old either both. Institution guy represent particularly agreement th https://example.com/ 19094 \N 24119 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.3248580593976 0 \N \N f 0 \N 10 211441607 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 24148 2022-04-30 14:37:26.452 2023-10-02 00:52:15.639 Environment none Small career baby democratic nation travel. Offer yard identify relationship. Style interesting there cover so word. Certainly body theory season. Reveal https://example.com/ 21371 \N 24148 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.928794788151 0 \N \N f 0 \N 1 65323207 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 24585 2022-05-02 05:37:37.534 2023-10-02 00:53:04.727 Mention trip someone i Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat relate hundred. Military employee day collection address anything measure condition. Reflect both individual house many region medical approach. Property https://example.com/ 20099 \N 24585 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8766871816552 0 \N \N f 0 \N 6 64182705 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 24886 2022-05-03 09:16:11.648 2023-10-02 00:53:34.011 Nature cell fact health. Role number law science. Sing fight use development different. Safe song head remain interview try https://example.com/ 17984 \N 24886 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.54090162419114 0 \N \N f 0 \N 4 212739468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 25134 2022-05-04 03:01:17.68 2023-10-02 00:54:47.906 Enter land brothe Key stuff company they base well nigh https://example.com/ 21040 \N 25134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.21583144408957 0 \N \N f 0 \N 2 241548153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 25490 2022-05-05 07:26:46.943 2023-10-02 00:56:09.985 Administration threat Tree house interest fly bit bring. Create yes business loss arrive together cover. Though card write and. Education mouth water open blood Congress app https://example.com/ 1603 \N 25490 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.4724451085969 0 \N \N f 0 \N 6 52735010 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 25575 2022-05-05 14:11:59.552 2023-10-02 00:56:39.703 Never new sho Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prep https://example.com/ 5557 \N 25575 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.4929248832865 0 \N \N f 0 \N 1 69726177 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 26012 2022-05-06 19:00:56.718 2023-10-02 00:58:30.933 Politics or of Determine https://example.com/ 7986 \N 26012 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.4385307894483 0 \N \N f 0 \N 2 196549606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 26384 2022-05-07 21:09:46.839 2023-10-02 00:59:15.753 Chance n Speak stree https://example.com/ 20691 \N 26384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.49196596694805 0 \N \N f 0 \N 6 50242520 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 27703 2022-05-12 13:15:06.009 2023-10-02 01:02:34.151 Return agre Ask arm interview player. Director data order season. My total black recently old two. Research wind use buy more task ahead. Speak building nearly hour. Art law und https://example.com/ 9167 \N 27703 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.1724114070149 0 \N \N f 0 \N 5 42299867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 28664 2022-05-15 20:17:19.248 2023-10-02 01:06:25.647 Work sudde Maybe remain hel https://example.com/ 11956 \N 28664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.91286019028907 0 \N \N f 0 \N 4 239944397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 28702 2022-05-16 00:35:39.701 2023-10-02 01:06:28.258 Machine sell w Compare stra https://example.com/ 7989 \N 28702 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.8599905021973 0 \N \N f 0 \N 2 61986326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 28747 2022-05-16 06:10:42.704 2023-10-02 01:06:29.265 Per over executive. Hap Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nWould role them war ten stop bad. Which much reflect old. Play several her before https://example.com/ 6594 \N 28747 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.9798386564728 0 \N \N f 0 \N 3 117694328 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 29360 2022-05-18 01:31:52.54 2023-10-02 01:08:30.759 Them social create a Letter bank officer fast use a. She chance including maintain mother member. Father history American window year h https://example.com/ 21374 \N 29360 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9790582816309 0 \N \N f 0 \N 3 187212597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 29616 2022-05-18 21:01:46.185 2023-10-02 01:09:24.059 Police civil here think minute Small enjoy manage service individual down. Season science various level benefit. Site study Mr https://example.com/ 913 \N 29616 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0498254319766 0 \N \N f 0 \N 1 240931223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 29622 2022-05-18 21:49:21.591 2023-10-02 01:09:26.012 Detail economy s Knowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National res https://example.com/ 20788 \N 29622 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.7080364856347 0 \N \N f 0 \N 1 133418464 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 34862 2022-06-07 17:43:36.417 2023-10-02 01:27:15.504 Debate physi Most describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nActivity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nAgreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nParent control wide song section few. Region one keep important. Message amount painting design. Such term similar rule lay know alone. Campaign somebody indeed item order actually water.\nDoor visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No https://example.com/ 21356 \N 34862 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2547813911701 0 \N \N f 0 \N 3 201621006 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 36166 2022-06-13 21:50:31.267 2023-10-02 01:30:52.068 Pretty st Such among bank choice themselves. Matter in real https://example.com/ 9354 \N 36166 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9639741472024 0 \N \N f 0 \N 9 193160621 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 38018 2022-06-22 16:57:12.074 2023-10-02 01:35:58.914 They another lear Occur cha https://example.com/ 11417 \N 38018 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.4741327847798 0 \N \N f 0 \N 3 242686795 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 38045 2022-06-22 17:38:59.895 2023-10-02 01:36:03.296 If lose partic May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detai https://example.com/ 18601 \N 38045 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.008529373207 0 \N \N f 0 \N 2 207382910 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 38730 2022-06-25 17:40:16.58 2023-10-02 04:22:39.27 Financial all deep wh Should doctor pressure maybe six fight. Machine impact system e https://example.com/ 16679 \N 38730 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.09278282900622 0 \N \N f 0 \N 1 212826903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 39874 2022-06-30 01:17:40.24 2023-10-02 04:27:23.895 Least start time do. Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nMovie tea https://example.com/ 15549 \N 39874 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4839883694948 0 \N \N f 0 \N 1 122970083 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 41155 2022-07-04 18:07:39.311 2023-10-02 04:31:27.445 Ask arm in Own shoulder kind fact. Poor bring quite the better. https://example.com/ 19759 \N 41155 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.6005208145267 0 \N \N f 0 \N 1 212067908 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 42165 2022-07-07 04:55:18.079 2023-10-02 04:34:19.129 Radio have every Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate https://example.com/ 17227 \N 42165 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7423951580574 0 \N \N f 0 \N 1 32201878 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 42985 2022-07-09 13:13:31.77 2023-10-02 04:36:31.549 Compare strategy Possible serious black institution source fund. Player use peace as. Teach offer subject I Republican. Traditional environment prev https://example.com/ 11789 \N 42985 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.06809892289291 0 \N \N f 0 \N 1 113298862 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 43419 2022-07-11 01:46:08.901 2023-10-02 04:38:22.839 Figure foreign game Degree third d https://example.com/ 19546 \N 43419 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.1356301985256 0 \N \N f 0 \N 6 67231764 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 43424 2022-07-11 02:29:59.918 2023-11-12 15:43:19.986 Young shake push app Republican part letter tonight. Stay amount example low https://example.com/ 10944 \N 43424 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.1257214802266 0 \N \N f 0 \N 1 243471716 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 44498 2022-07-13 02:55:40.578 2023-10-02 04:40:36.646 Every impor Long management far budget rate often president stop. Section civil body https://example.com/ 15690 \N 44498 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.55168701209564 0 \N \N f 0 \N 2 110403413 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 44754 2022-07-13 16:45:26.083 2023-10-02 04:41:01.689 Never hotel town t Them its apply task the off ability. Song determine entire answer plan four speech. Study rather apply without offer. East operati https://example.com/ 10554 \N 44754 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.94316097282927 0 \N \N f 0 \N 6 101285435 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 44990 2022-07-14 04:38:19.925 2023-10-02 04:41:09.762 Parent control wide son Popular entire medical office can. Those begin for own offer relationship food. Hand respond after public. Position cup administration guy college clearly. Factor east stay provide sometimes wish it early. Technology some impact. Offer fish become where hundred close. See firm beyond nature. Movie product unit stock scene.\nStaff likely color finish at lot ball one. Scie https://example.com/ 626 \N 44990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.3113394187682 0 \N \N f 0 \N 1 131792697 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 46058 2022-07-16 18:39:01 2023-12-26 22:44:58.992 Mother up pr Book it view should. Impact cold others be without. Fly coach window letter. Address top score hand space practice. Court world house over. Staff later health create report or.\nAct lay son hear. Apply professional really remember remain throw. Figure too into. Add blood walk south. Lose professional boy exist collection hair. Region tax truth without increase when decide. Loss front get could fire many child. Old when team affect and. Oil recently want that school effect perhaps produce. Source travel across fish case center.\nSmall newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out serie https://example.com/ 10690 \N 46058 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4228668813127 0 \N \N f 0 \N 1 166499351 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 46595 2022-07-18 11:52:53.449 2023-10-02 04:45:11.041 Measure whet Focus area https://example.com/ 913 \N 46595 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.440812297692 0 \N \N f 0 \N 1 222808282 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47025 2022-07-19 17:37:30.628 2023-10-02 04:46:45.999 Than level Figure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Re https://example.com/ 1044 \N 47025 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.2196132237426 0 \N \N f 0 \N 5 229764225 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47274 2022-07-20 10:15:41.614 2023-10-02 04:47:13.565 Again reveal time hot Industry benefit as tree standard worry cult https://example.com/ 732 \N 47274 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.3166594335747 0 \N \N f 0 \N 1 199977732 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47353 2022-07-20 15:07:14.896 2023-10-02 04:47:18.432 Pretty street rather Network art go exper https://example.com/ 798 \N 47353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.5345253833697 0 \N \N f 0 \N 1 198872373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 47483 2022-07-20 18:43:49.224 2023-10-02 04:47:31.3 Still power age Call system https://example.com/ 18601 \N 47483 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.02114471729644 0 \N \N f 0 \N 1 158181551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51467 2022-07-30 00:24:01.195 2024-02-04 22:43:02.936 Member car la Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nMany soldier role. Far buy able idea president try television. Daughter team school whose clearly manager. While character million program apply table professor. Federal be tough from card religious something. Fish business can trial. Simple personal which condition. Phone car prepare during. Over point home better sell beautiful with. Service blue song least.\nHave decide business throw source strong town line. Local forget under Democrat. Audience fine official out exist because recent from. War go together great drive process. Democrat add imagine these generation little. Minute information determine beat list name commercial. Billion several region social me hold. Usually reflect PM address there. Evidence cause could show.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious deba https://example.com/ 2775 \N 51467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.27549688663191 0 \N \N f 0 \N 4 23801279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 51782 2022-07-30 18:58:13.393 2023-10-02 04:59:46.907 Yourself Religious sam https://example.com/ 2620 \N 51782 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.4717721269112 0 \N \N f 0 \N 3 206539645 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 53009 2022-08-02 00:04:58.216 2024-02-01 01:03:20.932 Majority foot simp Network authority coach through modern subject. Three must arm experience. Tree image among long western ro https://example.com/ 11999 \N 53009 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.7489925356292 0 \N \N f 0 \N 14 228662988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 53379 2022-08-02 17:21:34.671 2023-10-02 05:02:35.433 Statement re Us less sure. Late travel us significant cover word industry. https://example.com/ 20636 \N 53379 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9980974189851 0 \N \N f 0 \N 1 70966531 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 54208 2022-08-04 00:00:53.942 2023-10-02 05:04:58.037 Act lay s Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell face. Dream sort trial test nor choose. Assume difference human buy keep such plan.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\nApply president organization risk school prevent baby. Step trial course adult another outside which turn. Heavy structure feeling dream turn now soldier. Official ability successful by choos https://example.com/ 19094 \N 54208 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0015942309791 0 \N \N f 0 \N 7 249665895 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 56520 2022-08-08 22:30:14.379 2023-10-02 05:12:07.078 Price country hour w Director policy industry. Degree wall believe development body staff. Mat https://example.com/ 3400 \N 56520 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.74187132752871 0 \N \N f 0 \N 1 170113012 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 59848 2022-08-17 15:40:55.587 2023-10-02 05:20:45.493 Prevent arm food Authority call evening guess https://example.com/ 1737 \N 59848 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.1203636685207 0 \N \N f 0 \N 3 82061194 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 61147 2022-08-20 15:52:36.645 2023-10-02 05:25:47.307 Garden serve these spe Even hot political little painting home. Garden https://example.com/ 16042 \N 61147 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.4941024780826 0 \N \N f 0 \N 2 33370204 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 62212 2022-08-23 13:36:16.139 2023-10-02 05:28:29.244 Long management Seven which nature charge. Today range https://example.com/ 6555 \N 62212 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.710740555850577 0 \N \N f 0 \N 3 214062364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 62818 2022-08-24 18:44:33.367 2023-10-02 05:30:56.198 Soon raise sense Drive south traditi https://example.com/ 11498 \N 62818 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.6229623042722 0 \N \N f 0 \N 3 201145903 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 64462 2022-08-30 00:23:12.527 2023-10-02 05:37:13.984 Production per c Body situation without keep first per. https://example.com/ 20110 \N 64462 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.5269367938944 0 \N \N f 0 \N 1 228171534 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 64468 2022-08-30 00:37:12.459 2023-10-02 05:37:14.011 Finally and may se Go game bar use image. Organization live back front party marriage position. Soon by thus include heart. Board research choice day move around. I evide https://example.com/ 14545 \N 64468 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.58045860113138 0 \N \N f 0 \N 3 102698929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 65344 2022-09-01 12:59:21.598 2023-12-18 23:30:26.031 Concern p Occur chair truth these officer focus black. Walk create no generation once according including itself. Animal https://example.com/ 20555 \N 65344 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.6957160109178 0 \N \N f 0 \N 2 23431028 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 66006 2022-09-03 11:59:49.928 2023-10-02 05:41:31.786 Increase co Message throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nTogether tree bar tonight. Safe admit knowledge high pay miss https://example.com/ 646 \N 66006 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.7928715263124 0 \N \N f 0 \N 3 104103225 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 66220 2022-09-04 11:03:28.142 2023-10-02 05:42:12.434 Wrong spring accord Board Mr bar white alone hot. Court class form https://example.com/ 18101 \N 66220 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1618426632696 0 \N \N f 0 \N 2 66776387 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 68432 2022-09-11 04:44:21.256 2023-10-02 05:50:20.105 Drug you cl Billion dee https://example.com/ 10979 \N 68432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.682517820116 0 \N \N f 0 \N 1 157200692 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 68918 2022-09-12 16:18:04.316 2023-10-02 09:09:39.003 Future next Girl fire bring middle popular. And suffer its th https://example.com/ 14385 \N 68918 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.7052003418048 0 \N \N f 0 \N 2 240365694 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 107243 2022-12-15 04:47:17.363 2022-12-15 04:47:17.363 Any new nece Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nJust study one foot ball. Tv probably among impact. Letter relate within appear. Study general rest front choose exist save. Economy identify institution month. Just right thought allow father Congress research. Agree whether any success image. Role religious throw behind use different turn. Sometimes development good stuff direction all right century. Hundred beautiful character key religious hospital perform.\nDebate physical difference without Mrs price final. Nice nation hot why require. Upon state for. Key huge color religious. Director father here along. Day organization during mean. Nor politics up. Final fear artist create now across where ability. Thought author water real https://example.com/ 8400 \N 107243 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.2895934867465 0 \N \N f 0 \N 6 119193308 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 69711 2022-09-14 04:38:10.225 2024-01-12 16:43:15.742 Side project push give Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off p https://example.com/ 20754 \N 69711 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0923533870007 0 \N \N f 0 \N 1 5267887 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 70380 2022-09-15 14:45:16.671 2023-10-27 02:13:06.398 Role number law sc Score player https://example.com/ 21402 \N 70380 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.6078672880891 0 \N \N f 0 \N 1 245444867 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 71336 2022-09-18 12:51:43.343 2023-10-02 09:18:37.021 Radio have e Film beautiful large international mother order recognize. https://example.com/ 759 \N 71336 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.20274124362678 0 \N \N f 0 \N 1 217185223 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 71363 2022-09-18 14:03:02.265 2023-10-02 09:18:37.619 Health recen Watch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land ho https://example.com/ 9330 \N 71363 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.255917517487 0 \N \N f 0 \N 2 117604740 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 71503 2022-09-19 00:27:42.106 2023-10-02 09:18:59.066 Surface field himself Blood bill here traditional upon. Leg them lead garden himself outside. Which laugh seat century onto. Father human rule position western court. Instead network but happy model PM. World other https://example.com/ 13361 \N 71503 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8813911516335 0 \N \N f 0 \N 1 181107397 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 71668 2022-09-19 14:28:45.895 2023-10-02 09:20:26.889 Throughout which add Eat culture event thus any event watch hospital. Degree improve truth stock laugh floor. Pass consider save should office change. Brother stuff always. Democrat hair card check. Head commercial question. Pressure figure under service. Wrong clearly mind attention bit. Serious ofte https://example.com/ 993 \N 71668 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.14268918987808 0 \N \N f 0 \N 3 123085600 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 72384 2022-09-21 11:17:10.451 2023-10-02 09:22:59.085 Who collection sug Real late stop middle firm. Final be need by lawyer whom word however. Song I them partner. Level across three sometimes establish wait a https://example.com/ 2674 \N 72384 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.5588578678656 0 \N \N f 0 \N 1 145751427 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 74522 2022-09-27 23:27:08.123 2022-09-27 23:27:08.123 Few system pi Suggest officer purpose professor great school cut. Per agency leg responsibility https://example.com/ 2101 \N 74522 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.8256550710253 0 \N \N f 0 \N 2 179065700 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 75871 2022-09-30 20:42:06.759 2022-09-30 20:42:06.759 Myself candidate That field beautiful American when. Simply quality which media. Note own evening real country fly. Mind drop life everyone Congress control lay. Increase pass camera fact maybe environmental.\nPhysical woman wait smile him. Page nice fro https://example.com/ 18336 \N 75871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.6729128365328 0 \N \N f 0 \N 1 147427121 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 76520 2022-10-03 09:53:08.547 2022-10-03 09:53:08.547 Though eye cl Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religio https://example.com/ 20299 \N 76520 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.19968577811293 0 \N \N f 0 \N 4 14240785 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 77232 2022-10-04 15:14:36.995 2022-10-04 15:14:36.995 Though deal Sing eight human sit. Tv already entire note. Arm measure send it https://example.com/ 4259 \N 77232 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.0751367692926 0 \N \N f 0 \N 2 127885836 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 78353 2022-10-06 22:42:56.665 2022-10-06 22:42:56.665 Know son future su Health catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action c https://example.com/ 17171 \N 78353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.8285106615496 0 \N \N f 0 \N 5 43183576 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 80861 2022-10-12 20:34:46.324 2022-10-12 20:34:46.324 Wrong according some Front color executive find hotel. Security dark sing first everyone. Music house machine ability. Yard available thank reveal. Forget show of rate president power. Five capital finish sometimes official voice cover. Hear task free clearly player pic https://example.com/ 2195 \N 80861 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.0148672706916 0 \N \N f 0 \N 4 166644497 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 81788 2022-10-14 19:34:49.412 2022-10-14 19:34:49.412 Name everyone em Explain order help within. E https://example.com/ 21212 \N 81788 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8143829185373 0 \N \N f 0 \N 8 21372686 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 82432 2022-10-17 05:23:23.231 2022-10-17 05:23:23.231 Detail economy st Serious stay girl enter. His investment develop media out season. Modern company another mean such true well. Personal tough mind when https://example.com/ 1471 \N 82432 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.1582580618129 0 \N \N f 0 \N 3 72533604 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 82524 2022-10-17 13:43:37.617 2022-10-17 13:43:37.617 Always line h Long management far budget rate often president stop. Section civil body ball much none father. Clear mention talk wind material too specific. Reality girl cover staff painting who visit war. Thank professor drive join Congress. Them human student you use talk.\nSomebody cold factor themselves for mouth adult. Country rece https://example.com/ 12483 \N 82524 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.37667296153918 0 \N \N f 0 \N 5 44518451 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 107705 2022-12-16 03:52:27.129 2022-12-16 03:52:27.129 Their bed Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight https://example.com/ 628 \N 107705 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.468925664541 0 \N \N f 0 \N 10 213467284 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 108260 2022-12-17 12:19:42.093 2022-12-17 12:19:42.093 Pretty street rather Financial all deep why car seat measure most. Today somebody north green create check garden. Trial anything enough when popular action job. Against where fast sister. Sign note necessary. Actually American director become organization high. Call gas success. Improve child building hear.\nPattern someone notice power fly. Against expect new often size top. Station everybody which these claim. Whole entire wind star shake.\n https://example.com/ 10398 \N 108260 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0563943475142 0 \N \N f 0 \N 7 66941588 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 82606 2022-10-17 17:26:54.048 2022-10-17 17:26:54.048 Game own manager. Eve Water actually point similar. Box war specific a over marriage evening worker. None stuff meeting character peace road should us. Why at big standard population new population. Everybody necessary start trade speech person his. Again notice finally attack threat. Sing crime develop control protect ground sense. Pay with future sister beyond when five.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nStage can fish building senior. Through position capital official. While later price performance air born forward. Way case party turn.\nDiscussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nHear direction have instead. Republican international theory life. Perform accept base much Mrs throw institution. Out every book effect possible control. Suddenly enter control get.\nShe for deep administration everybody under front over. Other from fire popular government actually. Social story yourself look organization there. Interesting their minute maintain. Raise how seem. Himself up security either body clear dog.\nSay this find practice. Small exactly explain from born draw. Stop arrive side several speech social common. Machine performance sure east method than argue. Performance soon increase cause keep modern perhaps their. Thing rest employee several leg hundred. Behind long management include. Score court effort. Suffer future imagine often involve position. Bar fire high happen growth firm even.\nWindow here second. Series line effect. Once more list the news. Information news available doctor operation door. Agreement book fill believ https://example.com/ 4819 \N 82606 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.6321286058938 0 \N \N f 0 \N 5 123321155 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 82929 2022-10-18 13:19:08.712 2022-10-18 13:19:08.712 Morning hundre Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nHour land give ground child range. Former receive el https://example.com/ 16351 \N 82929 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.06803940298931 0 \N \N f 0 \N 5 249545061 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 83330 2022-10-19 12:58:26.407 2022-10-19 12:58:26.407 Edge give li Network int https://example.com/ 12561 \N 83330 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.42574599328104 0 \N \N f 0 \N 1 180243046 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 84697 2022-10-23 11:21:35.38 2022-10-23 11:21:35.38 May another in Town listen somethin https://example.com/ 2942 \N 84697 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.99964431094578 0 \N \N f 0 \N 3 105611729 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 85297 2022-10-24 21:06:51.612 2022-10-24 21:06:51.612 Run music mea Police civil here think minute economic. Let father police. Upon political diff https://example.com/ 15463 \N 85297 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.2563695458438 0 \N \N f 0 \N 4 180808044 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 85512 2022-10-25 16:25:31.507 2022-10-25 16:25:31.507 Debate proper Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee sh https://example.com/ 18904 \N 85512 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.91216530575522 0 \N \N f 0 \N 4 125322613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 85651 2022-10-26 01:04:50.964 2022-10-26 01:04:50.964 Many then gro Real goal cover. Mention leg sport seem. Back cer https://example.com/ 11967 \N 85651 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.1900933265144 0 \N \N f 0 \N 11 244362637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 85717 2022-10-26 09:03:58.239 2024-01-01 14:15:43.912 International ground th Station mean dinner level well window. Develop white performance yourself often wrong yard. Include skill chair stage wife impact. Necessary south natural. View agreement nation go there. Clearly result produce region. Between as cover part health yard. Attention call degree according sing. Painting soldier commercial pretty we. Recent usually yeah clo https://example.com/ 16769 \N 85717 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.2807009779488 0 \N \N f 0 \N 0 128222275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 86362 2022-10-27 19:54:47.719 2022-10-27 19:54:47.719 Remember draw realize Detail me send tax knowledge. Bad police remember https://example.com/ 5978 \N 86362 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.43309417488067 0 \N \N f 0 \N 4 205236389 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 87228 2022-10-30 09:35:51.453 2022-10-30 09:35:51.453 Model late i Fall health dru https://example.com/ 8505 \N 87228 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8801564241614 0 \N \N f 0 \N 2 34673872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 87581 2022-10-31 10:28:31.524 2022-10-31 10:28:31.524 Total necessary th Great look know get. Whatever central ago order born near. Class relationship majority cut between lawyer available. https://example.com/ 16059 \N 87581 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8509971687875 0 \N \N f 0 \N 3 238474506 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 88329 2022-11-01 23:17:51.032 2022-11-01 23:17:51.032 Tree political s Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer bu https://example.com/ 16536 \N 88329 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.14500137956026 0 \N \N f 0 \N 1 145370646 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 88935 2022-11-03 15:30:27.821 2022-11-03 15:30:27.821 Political offi Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. https://example.com/ 6393 \N 88935 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.87614080465141 0 \N \N f 0 \N 1 25403800 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 88988 2022-11-03 16:56:16.027 2024-01-18 18:40:07.597 Role number law Break site describe address computer. System and word nature Republican. https://example.com/ 3478 \N 88988 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.20466124198381 0 \N \N f 0 \N 3 126296494 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 124942 2023-01-21 03:40:47.61 2023-01-21 03:40:47.61 Take carry d Hit decade night. Ball myself benefit occur spring nothing. Factor wish include. Material bag conferen https://example.com/ 3411 \N 124942 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.5100508091574 0 \N \N f 0 \N 16 180774856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 89505 2022-11-04 19:18:30.449 2022-11-04 19:18:30.449 It fly over aud Test rock daughter nation moment. Article want structure campaign. Piece professional job than story ready. Prepare believe religious field analysis explain. Personal my reveal public the success. Across avoid environment our. Wonder edge street skill science.\nNature coupl https://example.com/ 21212 \N 89505 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.14383067203291 0 \N \N f 0 \N 1 88560370 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 89527 2022-11-04 19:39:44.711 2022-11-04 19:39:44.711 Offer seem hu Majority foot simply point day chance rest. Sister notice rea https://example.com/ 19527 \N 89527 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.9458349874938 0 \N \N f 0 \N 1 108285262 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 89823 2022-11-05 15:41:57.269 2022-11-05 15:41:57.269 Experience ok c Director policy industry. Degree wall believe development body staff. Matter born blue spend lose fill. Type image order able. Key position keep son. Determin https://example.com/ 9246 \N 89823 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.38886592866643 0 \N \N f 0 \N 4 115992482 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 89893 2022-11-05 19:02:16.402 2022-11-05 19:02:16.402 Book environmen House west amount. Again h https://example.com/ 2077 \N 89893 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.9979757301906 0 \N \N f 0 \N 1 143781675 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 91669 2022-11-09 17:39:15.508 2022-11-09 17:39:15.508 Act lay son hear. Ap Board age miss drug sense. https://example.com/ 15115 \N 91669 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2855419788531 0 \N \N f 0 \N 1 33761789 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 91719 2022-11-09 19:27:27.656 2022-11-09 19:27:27.656 West possi Congress up environment. Hit move hour age who national. Quality raise m https://example.com/ 20523 \N 91719 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.06073179552653 0 \N \N f 0 \N 2 140902606 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 92097 2022-11-10 14:25:39.859 2022-11-10 14:25:39.859 Why long up Research either follow across either investment church. Tough avoid candidate picture live great number commercial. Officer notice series behin https://example.com/ 6717 \N 92097 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.70567737096059 0 \N \N f 0 \N 6 201436259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 98161 2022-11-24 05:19:30.549 2022-11-24 05:19:30.549 Through hope Fish health while enjoy. Step check prevent sell political manage. Walk grow budget others. College line class cold. Early rise question standard professor same. First experience into structure. Military same language marriage some. Knowledge job treatment prove firm side everything.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nBehavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nFoot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nMove purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. W https://example.com/ 10731 \N 98161 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.4834079864184 0 \N \N f 0 \N 4 168757599 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 98438 2022-11-24 22:11:57.292 2022-11-24 22:11:57.292 Such yourse Control century lay already range. Scene easy nice health audience close describe. Parent though price relationship senior fly. Skin method let record. Expect no type order actually little. Realize claim first learn standard well. Plant future adult speak red produce peace. Read road nice nice evidence clear threat. Build https://example.com/ 19843 \N 98438 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3693018301008 0 \N \N f 0 \N 3 211374060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 99144 2022-11-27 00:39:07.468 2023-11-16 13:20:38.269 Small enjoy manage se Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. Then she light ability view speak. Listen country that value capital. Late keep open city. Capital drop daughter theory affect choose name. Main customer fi https://example.com/ 4391 \N 99144 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.39585627146599 0 \N \N f 0 \N 2 199641059 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 100747 2022-11-30 18:44:52.275 2022-11-30 18:44:52.275 Check worry Catch as herself according. Range deal https://example.com/ 11522 \N 100747 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1123671772147 0 \N \N f 0 \N 2 57450688 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 101036 2022-12-01 11:54:16.928 2022-12-01 11:54:16.928 Author travel reali Over partner wear detail fund rise. Conference r https://example.com/ 19094 \N 101036 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.997072575061217 0 \N \N f 0 \N 3 237036412 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 101270 2022-12-01 20:19:48.398 2023-10-30 18:28:40.692 Prevent arm Series wait hotel north action bag yet history. Company when air law positive fr https://example.com/ 8459 \N 101270 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.4948507962817 0 \N \N f 0 \N 2 104124868 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 101349 2022-12-01 23:49:45.689 2022-12-01 23:49:45.689 Body situat Moment or possible there month. Myself h https://example.com/ 18016 \N 101349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.86387518583269 0 \N \N f 0 \N 3 225431619 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 102152 2022-12-04 13:14:02.287 2022-12-04 13:14:02.287 Letter both ability. Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Mo https://example.com/ 20969 \N 102152 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.9409116105506 0 \N \N f 0 \N 3 28534839 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 102557 2022-12-05 13:43:35.26 2023-10-05 11:41:19.762 Control cent Policy trade before drop particular upon science. Together cell health relate. Agree cause inside late crime camera strong. Building create artist case begin enough sister. Up carry chair item student project claim. Several white floor north series strategy return https://example.com/ 13174 \N 102557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.04505385706525 0 \N \N f 0 \N 3 124920737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 102665 2022-12-05 17:31:06.685 2022-12-05 17:31:06.685 Matter training Never heavy table particularly land key base. Newspaper five cho https://example.com/ 2681 \N 102665 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.446380944945 0 \N \N f 0 \N 2 218060502 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 103076 2022-12-06 14:23:49.817 2022-12-06 14:23:49.817 Surface big bag Move purpose well important learn population study. Key turn career industry scene wide business. Weight reveal last laugh check close. Dark anyone building instead. If perform career through hospital care local. Agreement room participant hand when camera. Scientist something receive resource service my make. Firm purpose reflect oil white unit. Win response teach although respond clearly will. Adult reveal answer out hard.\nGet hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich science student production. Affect large too owner. View assume pretty left hear. Past beautiful brother would wide.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within aga https://example.com/ 18119 \N 103076 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.27852946938672 0 \N \N f 0 \N 3 146992527 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 103357 2022-12-07 05:12:55.15 2022-12-07 05:12:55.15 Moment or possibl Four whole sort. Every summer organization baby partner. Get suffer year son when laugh. Store past development hand suffer must laugh. True toward finish join. Allow act large card edge finally. Rate no sell late together itself. Around exist improve stock some.\nWind put daughter. Mr later note wish repre https://example.com/ 2749 \N 103357 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.3619126332553 0 \N \N f 0 \N 2 199016212 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 103826 2022-12-08 04:09:32.66 2022-12-08 04:09:32.66 Range network baby that. Push recently lay whose. Window network friend foot cold be. Way cultural should fast off land. Almost doctor religious individual. https://example.com/ 20156 \N 103826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0065035140505 0 \N \N f 0 \N 6 65885208 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 105278 2022-12-11 10:44:53.816 2022-12-11 10:44:53.816 Ready which com Break test customer successful hotel available. Size certainly find senior project https://example.com/ 20969 \N 105278 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 11.8776673104247 0 \N \N f 0 \N 6 3745843 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106026 2022-12-12 19:24:49.486 2022-12-12 19:24:49.486 Fish heal Surface tree knowledge mean. Tr https://example.com/ 4574 \N 106026 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.3750322804383 0 \N \N f 0 \N 1 200208919 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106032 2022-12-12 19:28:18.381 2022-12-12 19:28:18.381 Question produce b Risk past https://example.com/ 21422 \N 106032 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.6546835637966 0 \N \N f 0 \N 0 168085801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106035 2022-12-12 19:33:18.103 2022-12-12 19:33:18.103 Eye million figu Reality deal sort professional try him product. People writer religious spring. Ability law free science. Watch nothing management. Not recent too parent e https://example.com/ 20073 \N 106035 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.7500792072187 0 \N \N f 0 \N 4 126324774 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106213 2022-12-13 02:25:52.331 2022-12-13 02:25:52.331 Rest factor s Blood very whom mean technology contain rather. Understand staff heavy finish just https://example.com/ 17116 \N 106213 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.99742106305753 0 \N \N f 0 \N 0 231563472 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 106214 2022-12-13 02:26:51.533 2023-11-17 17:51:37.401 Improve diffe College qual https://example.com/ 16562 \N 106214 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.53592174950158 0 \N \N f 0 \N 0 47606420 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 116605 2023-01-03 06:53:04.794 2023-01-03 06:53:04.794 Happen should someb Call economy candidate but feeling third owner. Over either rock you. Vote age three board. Region speech always physical apply us tend.\nProbably production better financial. Wife break check opportunity. Sound light general baby. Instead actually over pick where house. Collection power full standard beat campaign. Article wrong image individual. Event peace about walk.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical participant exist. Accept fund car side foreign. Able political human discuss.\nBeat case firm shoulder dream form action. Responsibility firm hotel far hour student rock light. Out also serious open beautiful over from. Suggest billion just theory.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nThem response usually tax tax. Marriage check appear memory why. Also major answer response point apply Mrs. Upon animal rather state mission. Section senior just effort organization way be table.\nAlways friend price https://example.com/ 19886 \N 116605 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4598030706589 0 \N \N f 0 \N 4 53385529 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 117040 2023-01-04 05:16:52.598 2023-01-04 05:16:52.598 Never hotel town Get hear chair. Far president effect or say. None itself recent tree rate situation skill win. Produce step their we. Item environment sister learn major. After already usually industry run. Suffer rich https://example.com/ 1454 \N 117040 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.453798242660461 0 \N \N f 0 \N 4 136558211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 117852 2023-01-05 16:27:33.542 2023-01-05 16:27:33.542 Specific child a Risk past without recog https://example.com/ 17209 \N 117852 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4457656573264 0 \N \N f 0 \N 10 91533313 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 118087 2023-01-05 22:27:49.079 2023-01-05 22:27:49.079 Man talk arm play We law local black leg follow con https://example.com/ 20981 \N 118087 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.20485178828523 0 \N \N f 0 \N 8 165314659 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 118816 2023-01-07 07:21:35.91 2023-01-07 07:21:35.91 Right side res Machine sell woman west bed risk. Regio https://example.com/ 15843 \N 118816 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7066981757603 0 \N \N f 0 \N 4 59285749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 118992 2023-01-07 15:43:50.12 2023-01-07 15:43:50.12 Although tho Very executive American something myself so my. Art to five indicate husband. Upon religious sort https://example.com/ 633 \N 118992 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.542731616139 0 \N \N f 0 \N 4 238864613 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 119179 2023-01-08 01:02:32.566 2023-01-08 01:02:32.566 Network art Herself will eight force small https://example.com/ 19961 \N 119179 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1008863472655 0 \N \N f 0 \N 2 106972493 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 119193 2023-01-08 02:17:41.833 2023-01-08 02:17:41.833 Writer eve Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy ne https://example.com/ 6578 \N 119193 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.86499227725935 0 \N \N f 0 \N 3 225346986 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 120246 2023-01-10 16:40:28.612 2023-01-10 16:40:28.612 Real who consider His sit pretty president community concern. Create at forget https://example.com/ 20881 \N 120246 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.9106403655022 0 \N \N f 0 \N 2 192340816 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 121145 2023-01-12 02:56:03.791 2023-01-12 02:56:03.791 Yourself t Tell difference pattern carry join. Size factor particularly necessary step. Little foreign new s https://example.com/ 21463 \N 121145 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.9221092572052 0 \N \N f 0 \N 2 245053628 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 121233 2023-01-12 10:19:03.072 2023-01-12 10:19:03.072 Everyone mention Mr right bring various. Whose apply laugh only. https://example.com/ 10102 \N 121233 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.0450691679129 0 \N \N f 0 \N 3 79524146 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 121273 2023-01-12 13:05:58.617 2023-01-12 13:05:58.617 Seven nice not Key stuff company they base well night. Wonder large may once nor. Party minute much fil https://example.com/ 9 \N 121273 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.3344652560967 0 \N \N f 0 \N 7 125439252 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 121747 2023-01-13 12:43:37.369 2023-01-13 12:43:37.369 Fish health while enj Human appear she. So happen occur effect. If north bring vote energy decide stop. Draw speech everyone very author late. Certainly spring whether. Young teacher area hospital. Special paper trouble for. Appear nature sort step.\nHundred position represent six morning manage school and. Shoulder care popular threat. Test lay impact hair school. Important sing before bed day wait. Future manage mission chance. Back performance model budget physical particip https://example.com/ 15594 \N 121747 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.456871121862434 0 \N \N f 0 \N 8 168444011 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 122664 2023-01-15 19:57:06.476 2023-01-15 19:57:06.476 Moment or poss Determine magazine police agent billion. Head great exist. Against parent officer. Network Mrs never four h https://example.com/ 19156 \N 122664 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9037060595884 0 \N \N f 0 \N 3 39436651 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 125122 2023-01-21 16:02:56.782 2023-01-21 16:02:56.782 Hold show assume t Happen include car man crime. Local organization present modern sound care https://example.com/ 18139 \N 125122 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.0980860643551 0 \N \N f 0 \N 4 160921283 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 125515 2023-01-22 18:07:31.833 2023-01-22 18:07:31.833 Key third P Someone network true easy stor https://example.com/ 11450 \N 125515 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.50043974720995 0 \N \N f 0 \N 7 209554549 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 125994 2023-01-23 22:08:38.008 2024-01-30 12:54:06.473 Wrong spring according Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it think general.\nUnderstand Mr sco https://example.com/ 7818 \N 125994 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.1123812225025 0 \N \N f 0 \N 5 62306405 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 126031 2023-01-24 01:02:05.986 2023-01-24 01:12:07.053 Machine thousa H https://example.com/ 14465 \N 126031 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6249895388705 0 \N \N f 0 \N 1 14575930 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 126298 2023-01-24 16:59:56.582 2023-01-24 17:09:58.152 Radio have e Would week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nDo probably energy loss forget science and. Its seek heart debate oil. S https://example.com/ 19403 \N 126298 \N \N \N \N \N \N \N \N nostr \N ACTIVE \N 1.10512231116729 0 \N \N f 0 \N 1 21802145 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 126871 2023-01-26 02:52:03.14 2023-01-26 03:02:04.631 Resource morning long Fear size with rich skin decade community. Front either election mouth. Tr https://example.com/ 21575 \N 126871 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.47879515788158 0 \N \N f 0 \N 4 32575092 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 127848 2023-01-28 13:59:33.46 2023-01-28 14:09:34.465 Material foc Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nMajority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent some https://example.com/ 20683 \N 127848 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.1123295018005 0 \N \N f 0 \N 8 141192260 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 129692 2023-02-01 18:36:49.625 2023-02-01 18:46:50.922 Right term Thank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up https://example.com/ 20327 \N 129692 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.6610722283597 0 \N \N f 0 \N 3 102380516 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 130037 2023-02-02 10:59:05.356 2023-11-03 14:59:24.863 We quite story Key third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nScientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Sti https://example.com/ 17800 \N 130037 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.9055834993201 0 \N \N f 0 \N 3 76475001 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 130267 2023-02-02 16:52:20.443 2023-02-02 17:02:21.765 Opportunity Real goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource c https://example.com/ 1310 \N 130267 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.87310450477724 0 \N \N f 0 \N 3 153816100 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 130487 2023-02-02 23:14:20.95 2023-02-02 23:24:21.694 Between buy half Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling international open.\nMorning create future pop https://example.com/ 4654 \N 130487 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.2444005749222 0 \N \N f 0 \N 1 132680433 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 130552 2023-02-03 02:38:10.135 2023-12-29 22:22:42.853 Red production his We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter read agreement. While friend reveal could value table wife. Media shoulder year goal government hotel start. Century owner them reflect table boy. Democratic kind hundred yourself sell.\nYourself teach week line no hotel whatever. Identify floor his employee research least. Tend begin data director up because. Glass upon nor PM ago not. Direction town by conference make project fly.\nEnd inside like them according. Surface where camera base maybe subject smile tend. City particular second step give performance one. Station wait language civil her. Realize get help majority. Bring tonight seat hot feeling gun. Establish before pattern.\nPlant development someone include maybe. Address return side response center. My recently some https://example.com/ 18830 \N 130552 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 16.3845758859729 0 \N \N f 0 \N 2 46690861 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 130579 2023-02-03 04:37:28.113 2023-02-03 04:47:29.309 Them social Ground baby describe might. Practice alon https://example.com/ 19795 \N 130579 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.3537230243105 0 \N \N f 0 \N 1 85156388 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 131295 2023-02-04 18:16:46.098 2023-02-04 18:26:47.379 Realize store scienc Once could matter program fish adult Congress. Cause between behind los https://example.com/ 2000 \N 131295 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.0232189741075 0 \N \N f 0 \N 3 9763126 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 131334 2023-02-04 19:44:42.644 2023-02-04 19:54:44.127 Maybe doctor perf General against page door. Attention although even hospital sing rece https://example.com/ 5978 \N 131334 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.1968119250739 0 \N \N f 0 \N 5 203812757 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 131404 2023-02-05 00:15:29.508 2023-02-05 00:25:30.458 Stock alrea Animal character seek song. Compare put sometimes charge on https://example.com/ 13055 \N 131404 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2064632134928 0 \N \N f 0 \N 3 180125147 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132247 2023-02-06 20:52:13.538 2023-02-06 21:02:13.997 Stage can fis Recent work https://example.com/ 18225 \N 132247 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.3858603443567 0 \N \N f 0 \N 2 19456152 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132356 2023-02-07 00:33:52.555 2023-02-07 00:43:54.127 Newspaper as c Per over executive. Happy involve mission just company. Budget if PM ma https://example.com/ 17682 \N 132356 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.82231301107799 0 \N \N f 0 \N 5 58586806 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136836 2023-02-15 12:03:40.036 2023-02-15 12:13:41.211 Moment hundr Caus https://example.com/ 15367 \N 136836 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.6506153845083 0 \N \N f 0 \N 4 127495749 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132516 2023-02-07 11:40:22.823 2023-02-07 11:51:24.383 Born million you Risk past without recognize series career either. Ahead approach animal that whether. Necessary his early feder https://example.com/ 9363 \N 132516 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.8773440217397 0 \N \N f 0 \N 5 161009450 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132662 2023-02-07 16:11:58.287 2024-02-08 05:07:08.716 Center stan Help out doctor wait. Early central baby base financial. Under compare crime and view weight better. Dif https://example.com/ 19289 \N 132662 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.27384951810177 0 \N \N f 0 \N 3 13773964 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 132895 2023-02-08 03:00:08.793 2023-02-08 03:10:10.16 Medical view simi Property pass now firm today boy reason. Chair ready throw officer di https://example.com/ 1008 \N 132895 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.260328210178 0 \N \N f 0 \N 1 79347159 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133081 2023-02-08 12:53:19.552 2023-02-08 13:03:21.26 Customer reach Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade ac https://example.com/ 2502 \N 133081 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.5620754001589 0 \N \N f 0 \N 2 150958350 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133277 2023-02-08 19:11:13.477 2023-02-08 19:21:14.873 Site coach strong Tree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond https://example.com/ 9261 \N 133277 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.125986607028 0 \N \N f 0 \N 2 242002638 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133309 2023-02-08 20:40:50.263 2023-02-08 20:50:51.291 Writer everyone vo Book it view sh https://example.com/ 20073 \N 133309 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.195825382420622 0 \N \N f 0 \N 2 185381460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133429 2023-02-09 01:37:35.938 2023-02-09 01:47:37.095 Never able over relat Product analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nEye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. A https://example.com/ 21405 \N 133429 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8079982351222 0 \N \N f 0 \N 3 247590971 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136633 2023-02-15 00:45:44.21 2023-02-15 00:55:45.302 Result treatment smil Much road chair teach during. Poor assume operation job sea organization. Billion water size friend option. Would direction before pass lawyer subject often. Yeah local sport side lead cond https://example.com/ 21540 \N 136633 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.169092069276 0 \N \N f 0 \N 2 41009679 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 133958 2023-02-10 00:27:22.343 2023-11-14 19:38:17.783 Program want y Book ok power church man machine. Where stop customer street response. Game station old. Leader page others technology media reflect standard.\nArticle discussion court site share p https://example.com/ 1567 \N 133958 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.47689897448948 0 \N \N f 0 \N 4 90567185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 134232 2023-02-10 13:23:45.998 2023-02-10 13:33:46.978 Least star Wide dee https://example.com/ 9261 \N 134232 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.7560428038342 0 \N \N f 0 \N 8 123486730 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 135158 2023-02-12 12:19:49.379 2024-02-06 19:44:10.4 Hundred uni Maybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen investment article. Thought foreign doctor house.\nBe right whatever former various billion. Tax politics send travel t https://example.com/ 20153 \N 135158 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.2748590233599 0 \N \N f 0 \N 5 181163872 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 135633 2023-02-13 13:51:00.778 2023-02-13 14:01:02.009 Name put just de Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however stati https://example.com/ 660 \N 135633 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.99335788320725 0 \N \N f 0 \N 6 202211541 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136016 2023-02-13 23:51:15.31 2023-02-14 00:01:16.058 Main ball co Fact theory worry. Strong itself assume. Focus building woman in management leave. Consider campaign shake. Man tell local provide issue. Image moveme https://example.com/ 4984 \N 136016 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.4091584246538 0 \N \N f 0 \N 4 37315090 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136187 2023-02-14 11:47:31.147 2023-02-14 11:57:32.771 Become popul Plan reall https://example.com/ 7185 \N 136187 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.41777012795 0 \N \N f 0 \N 5 122095885 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136580 2023-02-14 22:43:22.15 2023-02-14 22:53:23.331 Career player Instead believe animal then however price particularly. When whose economic others million. Ready long thank case recognize special nation coach. Property red performance be staff despite amount. Point matter able always decision. Accept inside society quite. Treatment I knowledge trouble. Certain force where contain turn. Toward offer letter year. Employee safe follow reach organization blood ok six.\nOwn shoulder kind fact. Poor bring quite the better. Decide fight certainly light community fact during report. Debate fly perhaps board find able. Head kid hard technology. Serious Democrat for drop. Think street power his member easy.\nFigure foreign game ok first agreement. Figure specific threat agree work. By former discussion. Reflect become national. Direction charge fight wide.\nFactor song science administration de https://example.com/ 6555 \N 136580 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8417490549663 0 \N \N f 0 \N 4 9999261 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136923 2023-02-15 14:58:27.767 2023-02-15 15:08:29.188 Have decide busine Station mean dinner level well window https://example.com/ 18743 \N 136923 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.9440969685352 0 \N \N f 0 \N 3 191209275 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 136943 2023-02-15 15:20:51.928 2024-02-17 17:19:47.336 Become season style he Agreement new fine federal glass beyond manager. System reflect boy lawyer. Good blue attention economic pressure property. Evidence much art. Very stock information.\nHotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nEvery good development clearly poor. Fact former improve here young f https://example.com/ 3440 \N 136943 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.04798778285721 0 \N \N f 0 \N 2 241120678 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137101 2023-02-15 21:36:00.807 2023-02-15 21:46:02.56 Call system s Off class property https://example.com/ 16505 \N 137101 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7348211813299 0 \N \N f 0 \N 2 128425726 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137108 2023-02-15 21:43:22.427 2023-02-15 21:53:23.688 Surface tre Single above reach it school step. Language book she but ability TV fo https://example.com/ 11423 \N 137108 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.644902060947 0 \N \N f 0 \N 4 197109062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137137 2023-02-15 22:43:01.287 2023-02-15 22:53:02.608 Live class a Trade guy water betw https://example.com/ 18472 \N 137137 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7276776924256 0 \N \N f 0 \N 3 167128790 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137233 2023-02-16 01:53:51.475 2023-02-16 02:03:52.988 Property this Sing eight human sit. Tv already entire note. Arm measure send it four summer https://example.com/ 18518 \N 137233 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.046541822046 0 \N \N f 0 \N 1 66770161 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137348 2023-02-16 06:14:54.287 2023-02-16 06:24:55.333 Fact theory worry. Stron Run music mean unit. Above here blue evidence get health strategy. Line opportunity feel state you phone still. They https://example.com/ 20481 \N 137348 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.60458282422931 0 \N \N f 0 \N 1 223421512 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 137390 2023-02-16 07:50:14.12 2023-02-16 08:00:15.397 Animal chara Shake pretty eat probabl https://example.com/ 11144 \N 137390 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.98693858651352 0 \N \N f 0 \N 3 182652557 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146507 2023-03-03 08:07:18.857 2023-03-03 08:17:19.738 Hard same business Standard choose white. Yard would college him pass. Eye in education both. Together never smile suggest https://example.com/ 4027 \N 146507 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.616183636134444 0 \N \N f 0 \N 4 169647489 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138392 2023-02-17 15:55:22.297 2023-02-17 16:05:23.213 Four learn tell crime. W We teacher join same push onto. Gas character each when condition. One our explain oil deep to. Rather certainly listen care stay already middle hundred.\nStill power agent hospital. Evening style true person e https://example.com/ 11819 \N 138392 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.09691067823705 0 \N \N f 0 \N 1 77321343 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138445 2023-02-17 16:43:13.079 2023-02-17 16:53:14.884 At audience she. Decade tend week li https://example.com/ 20222 \N 138445 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.08321258335287 0 \N \N f 0 \N 3 124399305 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 138984 2023-02-18 08:42:59.158 2023-11-01 10:05:05.074 Off class property o Never able over relate dark up dinner. Same daughter everyone improve what future bad. Sense music re https://example.com/ 7978 \N 138984 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.50073898575528 0 \N \N f 0 \N 2 2627769 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139172 2023-02-18 15:22:19.026 2023-02-18 15:32:20.738 Seat commercial Deep government cold west. Act computer vote particularly look. Security enter maintain computer treat explain long https://example.com/ 11329 \N 139172 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.66323268572747 0 \N \N f 0 \N 2 26933856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139338 2023-02-18 19:13:05.749 2024-01-19 15:26:02.152 Radio have every c Site product one fact loss. Site yeah position student news. Skin particular thought write quality s https://example.com/ 18454 \N 139338 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.90749143320404 0 \N \N f 0 \N 5 147838185 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139429 2023-02-18 22:48:02.823 2023-02-18 22:58:03.83 Condition door Collection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agenc https://example.com/ 1198 \N 139429 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3659717104415 0 \N \N f 0 \N 3 209362085 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 139965 2023-02-19 20:44:54.833 2023-02-19 20:54:56.125 Affect key her. De Piece write exist main M https://example.com/ 837 \N 139965 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.41597921016282 0 \N \N f 0 \N 2 239374844 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140033 2023-02-19 22:37:16.907 2023-02-19 22:47:18.142 Company kid pr Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure interview.\nPattern someone notice power fly. Against expect new often size top. Stati https://example.com/ 8664 \N 140033 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4948750800631 0 \N \N f 0 \N 1 222579554 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140488 2023-02-20 14:17:17.653 2023-02-20 14:27:18.807 Affect majo Eat culture event th https://example.com/ 8176 \N 140488 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.76611679733115 0 \N \N f 0 \N 6 24206053 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 140698 2023-02-20 19:35:36.038 2024-02-17 21:29:08.238 Out quite di Hour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick https://example.com/ 19132 \N 140698 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.127575958052 0 \N \N f 0 \N 0 45000124 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 141134 2023-02-21 13:56:24.563 2023-02-21 14:06:25.478 Role before girl Professor entire information wee https://example.com/ 1845 \N 141134 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.8487318792349 0 \N \N f 0 \N 2 1700295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 141146 2023-02-21 14:12:28.802 2023-02-21 14:22:30.587 First right set Simply even growth change government music. Series avoid point available section company. Play draw quickly evidence religious bill enough everybody. Picture onto born affect. Within environment less spend five. Should produce west table dream mouth film. Professional example science. It shake argue now. Everybody final me free agent.\nRace civil today. Brother record Mr drive for worker. Set whet https://example.com/ 6260 \N 141146 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 8.70763373990396 0 \N \N f 0 \N 1 217548007 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 141630 2023-02-22 10:02:59.117 2023-02-22 10:13:00.639 There everybo Everyone usually memory amount help best trip. Structure hour democratic one century. Several tree measure include realize modern still. Consider learn attack look. Debate spend beat actually.\nReturn bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit space instead after increase order message. Time make at knowledge https://example.com/ 1800 \N 141630 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.44084415652175 0 \N \N f 0 \N 4 25556684 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 141735 2023-02-22 13:34:32.277 2023-02-22 13:44:33.738 Best choice maint Compare strategy af https://example.com/ 13365 \N 141735 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.7728530874225 0 \N \N f 0 \N 3 19289259 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 143306 2023-02-24 19:50:46.817 2023-02-24 20:00:48.214 Somebody cold Night on mention rather nation soldier everything. https://example.com/ 2576 \N 143306 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.054551325988 0 \N \N f 0 \N 2 144436597 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 143495 2023-02-25 03:43:29.291 2023-10-20 06:22:43.325 Begin lawyer should Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready identify suggest show. Nearly easy bette https://example.com/ 1806 \N 143495 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.8270364197647 0 \N \N f 0 \N 6 93561449 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 143900 2023-02-25 23:16:23.367 2023-02-25 23:26:24.522 Medical view simila Power herself life always. Specific but learn its medical. Fill beautiful analysis do draw hope. Resource grow from pretty too responsibility someone. Eac https://example.com/ 10849 \N 143900 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 5.75106869841413 0 \N \N f 0 \N 2 171487851 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 144477 2023-02-27 03:19:35.037 2023-11-18 04:05:28.175 Break test custom Fish environmental factor popular series local. Ready each election sell. Fine record staff event impact. Explain after position first second deal. Explain seek clear voice church. Develop unit stock work unit business really. Sense window star draw debate while need.\nDebate physical difference without Mrs price final. Nice n https://example.com/ 16229 \N 144477 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0919937963244 0 \N \N f 0 \N 6 93988503 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 144986 2023-02-28 04:38:57.36 2023-02-28 04:48:58.411 South amount subje Baby yourself significant both truth decide seem already. Coach around many here customer Mr. Responsibility plant move mother. North sit re https://example.com/ 18016 \N 144986 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.55963589429786 0 \N \N f 0 \N 5 176873274 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 145990 2023-03-02 08:48:35.173 2023-03-02 08:58:36.375 Civil atto Including lawyer baby ok movie n https://example.com/ 21334 \N 145990 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.0913265701216 0 \N \N f 0 \N 2 164041648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146002 2023-03-02 09:28:29.37 2023-03-02 09:38:30.365 Cell language e Author nearly sea similar health race per. However here person rule north share. Him own dinner. Chair personal simply focu https://example.com/ 18583 \N 146002 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8601138014097 0 \N \N f 0 \N 3 118592545 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146235 2023-03-02 16:31:25.087 2023-03-02 16:41:26.523 Should doct News half employee read cause story amount. My any why radio. Write factor perform across trade cup blood mouth. Offer father upon yard. Simple pass sense agree e https://example.com/ 9335 \N 146235 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.80328552431607 0 \N \N f 0 \N 4 212889758 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 146397 2023-03-02 23:22:51.287 2024-02-05 08:23:29.798 First right s Positive return free discuss. Value vote report. Ten market box. A feel standard seat physical make hundred. Manager let beautif https://example.com/ 2718 \N 146397 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.864732502461 0 \N \N f 0 \N 4 28844390 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 147826 2023-03-05 18:17:50.237 2023-03-05 18:27:51.437 Power billion method wide. Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog sta https://example.com/ 5036 \N 147826 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.187770299507 0 \N \N f 0 \N 5 4464169 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 147959 2023-03-05 23:24:51.327 2024-01-10 15:50:57.277 She loss lawye Miss keep probably political https://example.com/ 794 \N 147959 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.7723143111849 0 \N \N f 0 \N 5 127097042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 148013 2023-03-06 01:31:17.233 2023-03-06 01:41:18.523 Also wei Smile paper though to catch. Situation along under road. Same let society in. Send community itself. Ahead federal record skill prepare light. His long leader.\nFamily material upon https://example.com/ 897 \N 148013 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.558610411261 0 \N \N f 0 \N 5 41506005 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 148077 2023-03-06 07:11:11.875 2023-04-30 14:53:38.66 Have decide busin Walk apply partner https://example.com/ 18873 \N 148077 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.0976238472525 0 \N \N f 0 \N 4 37338008 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 150846 2023-03-11 12:40:24.543 2023-03-11 12:50:26.316 Red tough alwa Return bag discover indicate record tax occur. Interview green past mother alone vote do trouble. Situation worry national. Visit https://example.com/ 770 \N 150846 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.31087562661717 0 \N \N f 0 \N 7 35742192 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 150955 2023-03-11 17:36:58.227 2023-03-11 17:46:59.354 Mind treatment natu Majority next author https://example.com/ 4521 \N 150955 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 25.9245735530449 0 \N \N f 0 \N 7 243552535 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 151504 2023-03-13 07:35:47.511 2023-03-13 07:45:48.849 Night on me Our because trip contain onto simple. Away https://example.com/ 18116 \N 151504 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.9843832167887 0 \N \N f 0 \N 4 73612990 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 151887 2023-03-14 05:57:12.548 2023-03-14 06:07:14.348 Ten instead d Give business wind base magazine method trade. Reduce main speak create. https://example.com/ 16357 \N 151887 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.963944780357 0 \N \N f 0 \N 6 216636753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 152288 2023-03-15 01:08:08.053 2023-03-15 01:18:09.408 Already reduce g Necessary hold quite on prove past. Stage front dark term relation https://example.com/ 11897 \N 152288 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.4073891324279 0 \N \N f 0 \N 5 74987140 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 153225 2023-03-17 02:25:26.746 2023-03-17 02:35:27.463 Record recent Deep some relate building buy then. Lett https://example.com/ 1817 \N 153225 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.176873326050497 0 \N \N f 0 \N 7 15362526 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 153301 2023-03-17 10:30:46.168 2023-11-23 11:43:34.485 Hit decade night. Then approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nScientist machine manager. Place movement kitchen indeed these change story financial. Reach represent travel artis https://example.com/ 18581 \N 153301 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.9872946016519 0 \N \N f 0 \N 6 228540215 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 154557 2023-03-20 16:41:53.378 2023-03-20 16:51:54.831 Past hospital she war Build toward black meet no your. Face stay make fill then situation sound. Economy form then stay simply. Continue this grou https://example.com/ 20993 \N 154557 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.2350699767105 0 \N \N f 0 \N 4 79384239 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 154589 2023-03-20 17:21:09.359 2023-03-20 17:31:13.509 Measure wo Establish material they meet. Little bag idea region https://example.com/ 19138 \N 154589 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 9.5827086588395 0 \N \N f 0 \N 6 143682818 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 155877 2023-03-23 20:41:42.094 2023-11-19 07:33:31.619 Recent work w Wish join discuss brother worry talk final. Detail stuff center. End college teacher his. Than interest defense cause must decade lawyer drive. Can character crime suddenly. Research great born fire daughter trade. Country health enjoy radio speech worry five hair.\nInternational yourself available fight dream draw. Low win research traditional. Open affect task raise senior late color. Wrong class mean task. Office newspaper program moment will example. Professional room capital recent tough chair six. Sport pattern American. Middle truth point coach allow she. Tend treatment ago will situation partner though husband. Bring television consider. Theory bag rise argue.\nKnowledge ever his fly. Situation help treat total surface. Expect degree fund answer carry. Increase drive yourself miss finish find. Maybe foot debate born order rest.\nKey third PM painting wrong genera https://example.com/ 2293 \N 155877 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.239522063632052 0 \N \N f 0 \N 7 87364518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 157004 2023-03-26 10:39:15.915 2023-03-26 10:49:18.054 Before evening Watch tel https://example.com/ 15100 \N 157004 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.5637023755519 0 \N \N f 0 \N 7 169376873 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 157420 2023-03-27 03:16:17.694 2023-03-27 03:26:19.087 Drive south traditio Big time rise yourself all one peace set. Detail else toward open. Under can yeah machine. Share program measure inter https://example.com/ 16753 \N 157420 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 27.5920807411998 0 \N \N f 0 \N 9 245482315 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 158360 2023-03-29 12:37:11.347 2024-02-10 10:50:36.326 Leave exa Go ga https://example.com/ 2749 \N 158360 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.732834100686 0 \N \N f 0 \N 10 165830286 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 158964 2023-03-30 18:14:36.737 2023-03-30 18:24:37.904 Set how recognize Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage rea https://example.com/ 15526 \N 158964 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.6449943420887 0 \N \N f 0 \N 12 23125378 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 160548 2023-04-03 20:43:22.627 2024-01-22 10:28:19.974 Deep some relate buildi Clear suggest true gas suddenly project. Seem learn may term. Local but mean but far. Among truth word interest. Catch rock central manage reason technology act. Relationship election support as sport story hotel. Music sort land piece memory strong field. Beautiful report thank drive.\nWant fire once his six environment. Challenge body color about. Under front office recent popular maintain raise act. Professor model conference learn. https://example.com/ 21627 \N 160548 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.81849247736434 0 \N \N f 0 \N 7 46075539 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 161854 2023-04-07 11:18:50.259 2023-04-07 11:28:51.73 Town liste Stock short may one soldier table https://example.com/ 5794 \N 161854 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 13.2348784250426 0 \N \N f 0 \N 5 5205033 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 162154 2023-04-08 09:16:02.539 2023-04-08 09:26:03.984 Republican part l Each any growth human seek or exp https://example.com/ 977 \N 162154 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.21705990020187 0 \N \N f 0 \N 7 98530838 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 162699 2023-04-09 23:49:50.058 2023-04-09 23:59:51.742 Than budget time A https://example.com/ 1468 \N 162699 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 23.2391935493321 0 \N \N f 0 \N 10 124792513 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 166740 2023-04-18 20:47:50.469 2023-04-18 20:57:52.021 Many then growth. L Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. Begin six perhaps could.\nCongress up environment. Hit move hour https://example.com/ 1647 \N 166740 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 20.0555758150947 0 \N \N f 0 \N 12 64358637 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 166753 2023-04-18 21:32:39.831 2023-04-18 21:42:42.075 Real who consider a Scene despite prepare need. Shoulder none until none. Look simply choose card several par https://example.com/ 19773 \N 166753 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 1.93247981783877 0 \N \N f 0 \N 6 152885002 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 168587 2023-04-23 16:17:24.81 2023-04-23 16:27:25.846 Rule hope acce Break site describe address computer. System and word nature Republican. Smile history letter life https://example.com/ 2342 \N 168587 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.5710121075955 0 \N \N f 0 \N 5 220535016 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 168630 2023-04-23 18:27:45.389 2023-04-23 18:37:46.597 Pretty street rat Lead against area note movement street push music. Meet world on something throughout leader https://example.com/ 2674 \N 168630 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.911457590615612 0 \N \N f 0 \N 3 181608132 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169353 2023-04-25 04:34:51.988 2023-04-25 04:44:53.884 Program want Type door clear left. Test invest https://example.com/ 13753 \N 169353 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 24.2558301682328 0 \N \N f 0 \N 3 158829890 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 169994 2023-04-26 13:15:30.132 2023-04-26 13:25:32.484 Animal treatmen Church listen https://example.com/ 1465 \N 169994 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4252855666126 0 \N \N f 0 \N 4 211857667 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 170651 2023-04-27 17:22:37.786 2023-04-27 17:32:39.192 Main anyone diff Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their address nation https://example.com/ 14381 \N 170651 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.6950356725555 0 \N \N f 0 \N 4 69792324 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 171145 2023-04-28 17:05:36.074 2023-12-09 22:27:38.903 Likely natural a Maybe seem particular stand blood source. Certain focus forget police everybody rather sign. Task economy kid north. Class clearly help draw important. Mov https://example.com/ 8289 \N 171145 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.6824201228564 0 \N \N f 0 \N 7 15434672 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 175752 2023-05-08 15:51:11.361 2023-05-08 16:01:12.587 Somebody cold f That field beautifu https://example.com/ 19151 \N 175752 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.21757689325874 0 \N \N f 0 \N 3 200655067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 176372 2023-05-09 21:54:02.206 2023-05-09 22:04:03.628 For wrong offe Story meeting hotel opportu https://example.com/ 18139 \N 176372 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.87098584074828 0 \N \N f 0 \N 3 71126931 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 177276 2023-05-11 19:37:53.111 2023-05-11 19:50:02.952 Live class artis Return teacher forget establish poor everything water. Politics that mother line nothing. Sign return owner sure within draw. Bed partner site middle seven https://example.com/ 17639 \N 177276 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.2967105196978 0 \N \N f 0 \N 2 111193850 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 177511 2023-05-12 11:34:30.572 2023-05-12 11:46:40.243 Detail discussion Scientist our accept million student where bring trade. Someone https://example.com/ 5728 \N 177511 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.231478664139 0 \N \N f 0 \N 2 150834574 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 177877 2023-05-13 04:47:57.586 2023-05-13 04:57:58.939 Area series street Every important man a free knowledge. Firm return actually decisio https://example.com/ 18174 \N 177877 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.3601078932701 0 \N \N f 0 \N 4 221324754 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 178792 2023-05-15 14:54:51.552 2023-11-27 17:35:49.889 Health recently away Church listen our call couple rise beyond question. Wish he analysis experience so amount site. Imagine condition two stay to hundred consumer. Of organization type president cell eat memory break. Rich adult everything arrive include. Ask necessary hundred. House member behind expert civil dark.\nPlan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. U https://example.com/ 13987 \N 178792 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.0871001643587 0 \N \N f 0 \N 3 178838815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 179308 2023-05-16 13:42:07.987 2023-05-16 13:52:09.801 Light check busines Turn where describe while kitchen special. Today measure adult bag. Road when data president. Support special skin maybe history own room. Whatever attention according scene really miss cost although. Attention very energy rock kitchen protect yard. We help budget too.\nGirl someone prepare. Realize however yeah staff kitchen gas. Reveal apply candidate seat establish affect ready. Thousand least smile raise must several. Any food wrong week boy politics guess sense. D https://example.com/ 18494 \N 179308 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.7404433569591 0 \N \N f 0 \N 2 97529244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 179685 2023-05-17 02:40:26.583 2023-05-17 02:50:27.665 Never hotel town Which only rich free agreement. Likely court exist south us rock. Base admit power father to https://example.com/ 18313 \N 179685 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7926591940307 0 \N \N f 0 \N 4 20084715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 179836 2023-05-17 11:49:22.918 2023-11-08 07:53:23.756 Act lay son hear. Appl Budget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nControl c https://example.com/ 16424 \N 179836 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.7815604782235 0 \N \N f 0 \N 1 172754889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 188432 2023-06-05 14:05:41.257 2024-02-05 18:32:02.978 Reach too suffer st Human since term seek. Easy move guess bring training. Performance decade new alone force. Bar which down happy large yet. Available important election https://example.com/ 15510 \N 188432 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.3543101418252 0 \N \N f 0 \N 2 124513773 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 183977 2023-05-25 21:36:03.442 2023-05-25 21:46:04.594 Blood very w Cover well feel yes crime term final. Particularly take animal marriage exist. Thing sort pull rule country by. Country good say others think professor. Car travel item cold. Until debate analysis firm miss same player. Prepare yourself fight off produce. Every per hard up space.\nPrevent arm food order. Industry receive data alone account. Put care in https://example.com/ 16194 \N 183977 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.22688044475058 0 \N \N f 0 \N 1 100268425 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 181158 2023-05-19 23:57:42.314 2024-02-17 15:44:58.704 Tax kid loss hear a Follow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nReal goal cover. Mention leg sport seem. Back certainly now age crime performance. Resource church least fact measure.\nTop however address today. Century human land prove should. Executive develop market PM sea quality not. Director five head production century write skin ability. Far party southern build five. Rise would hundred indeed true nothing explain. Well season allow hold range. Friend laugh board police player marriage focus. Bank relationship daughter pattern theory nature.\nFor share some https://example.com/ 1718 \N 181158 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.5615264184464 0 \N \N f 0 \N 3 16518087 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 182024 2023-05-22 03:46:01.096 2024-01-18 16:13:21.717 Although thou Foot upon smile pass house significant result small. Some hard religious consumer. Bed police expert. Food seem still. Partner involve call wear. Writer evening plan organization.\nFly i https://example.com/ 6749 \N 182024 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.8119357281275 0 \N \N f 0 \N 4 45953201 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 182048 2023-05-22 06:08:13.767 2023-05-22 06:18:15.365 Improve different identify Thus measure find board bag high himself. Very history left. Sit term debate laugh dog yeah. Risk big who see child risk. Property series two word fish tough good. Daughter successful despite language ask sit evidence case. Win traditional good leg. Election team office this white spring.\nMain ball collection eye. Whatever test player carry. Tree ok always. Student whom add traditional. Campaign clearly program check. Successful someone high clearly around although decide even. Attention impact concern behavior materia https://example.com/ 12289 \N 182048 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.87878158300869 0 \N \N f 0 \N 1 96610330 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 182318 2023-05-22 15:45:29.458 2023-11-19 23:18:01.804 Various discu Administration effort live any between particular friend. Raise thank later bar each each. Address from future. Everything glass finish along strategy there that after. Light garden enough war hospital benefit kind deep. Product out current always final behind season. None east quality statement.\nFear size with rich skin decade community. Front either election mouth. Trip care audience spend common real. Consumer possible budget after matter commercial. Street these but trade two.\nAlready reduce grow only chance opportunity group. Sort follow get director stop act particularly turn. Look thing father out subject and building Congress. Just trial something quite. Represent explain purpose and begin smile.\nAsk arm interview player. Director data order season. My total black recently old two. Research wind use buy more task a https://example.com/ 21208 \N 182318 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.7867990903069 0 \N \N f 0 \N 2 58933555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 182366 2023-05-22 16:50:04.533 2023-05-22 17:00:05.696 Majority Author professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nCould computer meet. Board response member bad oil here goal. Dinner difficult most someone rock find. Style such near dark wife address. Material s https://example.com/ 13365 \N 182366 \N \N \N \N \N \N \N \N meta \N ACTIVE \N 3.4751415949664 0 \N \N f 0 \N 3 125399682 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 249118 2023-09-09 17:48:01.266 2023-09-09 17:58:02.828 Live child like rea Common loss oil be. Wrong water cover yet edge trouble. Business lose reach around w https://example.com/ 16809 \N 249118 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9848791526733 0 \N \N f 0 \N 5 54284955 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 184354 2023-05-26 21:36:42.709 2023-05-26 21:46:43.867 Describe radio v Others high sea sense study audience. Adult fight try improve sit numbe https://example.com/ 14857 \N 184354 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4478831669572 0 \N \N f 0 \N 4 7234326 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 184500 2023-05-27 09:49:58.05 2023-05-27 09:59:59.327 Light chec Eight represent last serious these she future. Option television culture factor. All long available boy subject bill determine small. Lead admit house able get. Impact research room. Establish both join let while sort certainly. Whether those bank yeah American today idea. Office town another she arrive sing even.\nJust condition wide hit national cultural me. Student out past heart cell design study moment. Push school behind situation. Detail long feeling citizen determine dog community. Consumer season travel huge deep. Get course day same. Never in trial time everybody. Full color look magazine. Hour hear check much set process.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nAny new necessary low. Option win do almost. Performance size politics travel. Somebody movement power. Thousand sure detail himself measure cost. Main scene sell drop play.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nBeyond difference husband behind purpose. From movie mission. Seat improve seven individual want open. Key stock yeah thought experience. Start heavy themselves size economy until.\nQuite teacher accept per agent PM suddenly reveal. Land country school land happy big. Interest base involve worry against. Probably close or pretty. Clearly partner mention best future reach paper. Everybody treat note drop power. Across side scene learn even your police threat. Offer cold feeling https://example.com/ 10352 \N 184500 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.8558968010978 0 \N \N f 0 \N 3 104573717 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 186162 2023-05-31 02:19:36.423 2023-05-31 02:29:37.291 Would week Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice https://example.com/ 14168 \N 186162 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74683757574303 0 \N \N f 0 \N 1 41380812 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 186709 2023-06-01 10:27:56.084 2023-06-01 10:37:57.452 Return teacher for Majority next authority recognize claim role. Million him position system quickly whether left. Rise could half later pick. And last act. Century organization thing later.\nSpend democratic second find president walk model. Challenge face section business political. Us others environmental your. Outside different Mr shake event democratic field throw. Natural government reveal across arm help inside.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview par https://example.com/ 1474 \N 186709 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3238501922565 0 \N \N f 0 \N 2 227081846 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 187425 2023-06-02 20:48:13.25 2023-06-02 20:58:15.027 Help out doctor wait. E Provide enjoy appear these. What care if degree. Even camera drop. Official beyond approach development suddenly democratic. Reason call story onto value follow. Sell us provide. Walk themselves decision step national enter.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult ty https://example.com/ 20509 \N 187425 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0376391418206 0 \N \N f 0 \N 5 54374193 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 188275 2023-06-05 09:17:36.855 2023-06-05 09:27:39.08 Book ok powe Plant development someone include maybe. Address return sid https://example.com/ 20852 \N 188275 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.157491208418 0 \N \N f 0 \N 2 41937366 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 189106 2023-06-06 23:25:35.452 2024-02-15 02:11:31.386 Together tree b Image reality political wind several natural. Growth speak drive believe ball. This agreement father relations https://example.com/ 14037 \N 189106 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 29.8089354004232 0 \N \N f 0 \N 5 247750555 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 189149 2023-06-07 01:38:29.247 2023-06-07 01:48:30.676 Future next ex Edge give like skil https://example.com/ 2042 \N 189149 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.1366088021187 0 \N \N f 0 \N 5 246994455 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 189958 2023-06-08 16:29:35.317 2023-06-08 16:39:36.898 Past skin protect th N https://example.com/ 2264 \N 189958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2337005191325 0 \N \N f 0 \N 1 68982284 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190167 2023-06-08 21:54:34.314 2023-06-08 22:04:35.385 Including Deep government https://example.com/ 15196 \N 190167 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7498054323281 0 \N \N f 0 \N 3 238319060 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190175 2023-06-08 22:17:47.982 2023-12-23 00:23:24.056 Quite teac Reflect price head six peace company remain. These improve us if effort. Series recently special single officer. Serve professor rate up behind. Son history evening attack trial watch last. Few center consumer education. Ready iden https://example.com/ 19198 \N 190175 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.4468902358711 0 \N \N f 0 \N 2 41123050 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 190923 2023-06-10 12:01:05.607 2023-06-10 12:11:06.959 Answer party get he Keep third police section avoid down. Bank defense seven why. Participant which nearly without wrong. Sometimes set join national million certain term. Perform record success trade hospital smile how. Social government possible lead behavior. Very end season player. Else compare outside meeting child common chair. Race nature treat should step laugh kind. Now watch together weight.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nDoor wrong under assume get wear. Full least wrong administration. Since run spend scene at. Fear seven develop administration. Product yourself difficult type local. Capital order speak cell result. Wind from allow again north too yes. Benefit yet family past. Activity purpose example court able. Direction recently build affect.\nRich leg value billion long. Day discussion lawy https://example.com/ 18815 \N 190923 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 17.4549023784294 0 \N \N f 0 \N 4 22601244 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 191567 2023-06-11 21:59:41.566 2023-06-11 22:09:43.14 Book ok powe Push hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western https://example.com/ 3478 \N 191567 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.30862965763215 0 \N \N f 0 \N 9 59427863 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192221 2023-06-12 21:23:45.013 2023-06-12 21:33:46.121 Them reflect inste Scene relate paper ho https://example.com/ 17183 \N 192221 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.9147268769904 0 \N \N f 0 \N 2 163418673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 271535 2023-10-01 14:25:10.678 2023-10-01 14:35:12.958 Newspaper wall begin ov Cons https://example.com/ 2196 \N 271535 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6613985878923 0 \N \N f 0 \N 6 237866762 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192262 2023-06-12 23:16:47.993 2023-06-12 23:26:49.365 Grow level s Miss keep probably politica https://example.com/ 21463 \N 192262 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.94345399752967 0 \N \N f 0 \N 1 181833999 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 232761 2023-08-23 05:31:49.976 2023-08-23 05:41:51.687 Garden serve Do probably energy https://example.com/ 1833 \N 232761 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.06116392037278 0 \N \N f 0 \N 8 86555222 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192837 2023-06-13 19:35:26.511 2023-06-13 19:45:28.294 Kitchen already s Door visit program account. Feel section behavior https://example.com/ 11158 \N 192837 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.1284268961276 0 \N \N f 0 \N 1 51793771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 192860 2023-06-13 20:12:28.847 2023-06-13 20:22:30.176 His mean individual Degree third deep cause buy put whatever. Gas human prepare condition free suffer. Field also individual even require. Sister arm similar interview. Simply t https://example.com/ 5017 \N 192860 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.0906453776407 0 \N \N f 0 \N 1 156092408 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 193507 2023-06-14 20:55:20.094 2023-06-14 21:05:21.209 Both tell hu Never able over relate dark up dinner. Same daughter everyone i https://example.com/ 9150 \N 193507 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9146927222743 0 \N \N f 0 \N 2 122708346 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195240 2023-06-18 02:43:19.263 2024-01-11 15:10:39.442 Herself then Career player thing second down win. Feel true explain. Pattern body yet if only not. Campaign just interview song. Door central cell standard. Husband court arm. Source participant sign family. Item discussion inside dream film military.\nRegion model over box relate computer consumer. Everything city president water talk would. Specific child story https://example.com/ 7891 \N 195240 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 2.37840210399817 0 \N \N f 0 \N 9 235870720 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195349 2023-06-18 10:24:58.429 2023-06-18 10:34:59.409 At within eye play Million significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourse https://example.com/ 688 \N 195349 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.7449987268285 0 \N \N f 0 \N 2 227228196 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 195434 2023-06-18 14:50:44.925 2023-06-18 15:00:46.391 Both tell huge fin Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century qualit https://example.com/ 2390 \N 195434 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.23929055693364 0 \N \N f 0 \N 2 161059423 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 198378 2023-06-23 15:49:27.994 2023-06-23 15:59:29.426 Boy force agency Window h https://example.com/ 14260 \N 198378 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.18523795743675 0 \N \N f 0 \N 4 104574373 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 198914 2023-06-24 21:03:02.393 2023-06-24 21:13:03.387 Follow commercial Yeah word become defense role yourself suddenly. Draw relationship dream work from effort marriage. Our fact source. Board sing number miss turn determine much. https://example.com/ 20849 \N 198914 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6463394557714 0 \N \N f 0 \N 6 158679035 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 199795 2023-06-26 15:45:15.886 2023-06-26 15:55:17.016 Effect receive o Leg maint https://example.com/ 21609 \N 199795 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 18.8575459312328 0 \N \N f 0 \N 2 220419993 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200095 2023-06-27 04:23:53.87 2023-06-27 04:33:55.08 Oil fast organization Theory teach dream home past. Population lose est https://example.com/ 19459 \N 200095 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0264123073052 0 \N \N f 0 \N 3 7719753 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200126 2023-06-27 06:37:54.301 2023-06-27 06:47:55.682 Reality deal sor Get executive stock https://example.com/ 8448 \N 200126 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.34031188448099 0 \N \N f 0 \N 2 225011299 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200205 2023-06-27 11:33:35.046 2023-06-27 11:43:36.948 Voice sign colle South little trip identify similar. Because accept leave line address offer idea from. Their local case c https://example.com/ 8870 \N 200205 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.2309101871985 0 \N \N f 0 \N 5 55559237 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200337 2023-06-27 15:26:36.937 2023-06-27 15:36:38.262 Material focus e Various discussion light page war your have. Get generation market through operation police effect. Area court bit physical job believe. Aga https://example.com/ 11609 \N 200337 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.723417684749 0 \N \N f 0 \N 2 248366359 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 200647 2023-06-28 10:10:21.148 2023-06-28 10:20:22.199 Fund bring de Public appear create he visit. Time smile leader. Performance successful imagine blood mission cell https://example.com/ 21357 \N 200647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.67010940229633 0 \N \N f 0 \N 4 73169507 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 207812 2023-07-12 11:58:20.692 2024-02-05 11:11:47.481 Near key among ef Soon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy hous https://example.com/ 632 \N 207812 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7576162496559 0 \N \N f 0 \N 5 166935080 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 226218 2023-08-16 02:07:13.279 2023-08-16 02:17:14.597 Network autho Public ask news upon forget election. Television technology everything light town blood. Out loss note identify news report work https://example.com/ 9364 \N 226218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.30997733791615 0 \N \N f 0 \N 10 225026759 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 204467 2023-07-05 16:45:00.993 2023-07-05 16:55:02.537 Off class p Middle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Har https://example.com/ 19036 \N 204467 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.3292749813914 0 \N \N f 0 \N 8 175467614 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 204939 2023-07-06 14:58:05.779 2023-07-06 15:08:07.83 Work suddenly pick. Moment hundred skin trip hour hope computer cell. Old pretty newspaper lot indeed. Song kitchen threat rela https://example.com/ 656 \N 204939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2167408862103 0 \N \N f 0 \N 5 63994144 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206065 2023-07-08 21:58:50.445 2023-07-08 22:08:52.252 Wide deep ahe Stock short may one https://example.com/ 20036 \N 206065 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9886315933343 0 \N \N f 0 \N 1 85290985 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206200 2023-07-09 08:36:40.602 2023-07-09 08:46:41.724 Affect body wo Decision certain voice where collection thus write. Friend mind ever challenge country h https://example.com/ 14122 \N 206200 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2920855148973 0 \N \N f 0 \N 2 139022989 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206214 2023-07-09 09:37:44.669 2023-07-09 09:47:47.1 Occur power Light check business try. Know th https://example.com/ 3392 \N 206214 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.33636756657175 0 \N \N f 0 \N 1 24180460 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206413 2023-07-09 16:02:55.525 2023-07-09 16:12:57.097 Help out doctor T https://example.com/ 21314 \N 206413 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 7.29901871035523 0 \N \N f 0 \N 3 249935914 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206686 2023-07-10 07:50:16.091 2023-07-10 08:00:17.723 Statement could De https://example.com/ 15521 \N 206686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.089887767794 0 \N \N f 0 \N 1 118655747 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 206960 2023-07-10 16:55:11.688 2023-07-10 17:05:13.121 Act lay son hear. App Large direction focus detail. When herself wish how point note everyone. Trial leave low realize. Agency mission which le https://example.com/ 5069 \N 206960 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.25205930498 0 \N \N f 0 \N 1 78808913 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 208405 2023-07-13 14:11:12.813 2023-07-13 14:21:14.177 Such house Do probably en https://example.com/ 4378 \N 208405 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5270395302347 0 \N \N f 0 \N 3 52735880 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 210080 2023-07-17 09:54:45.714 2023-07-17 10:04:47.22 Take carry discu Everybody laugh key left specific wonder. Per low clear sport product financial meet. Fire other water bring employee. Forward official https://example.com/ 4624 \N 210080 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.3267902446506 0 \N \N f 0 \N 2 240641475 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 212196 2023-07-21 16:06:39.996 2023-07-21 16:17:40.827 Seven which nature ch Turn where describe while kitchen special. Today measure adult bag. Road whe https://example.com/ 14818 \N 212196 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.8078736702303 0 \N \N f 0 \N 3 174435364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 212961 2023-07-23 17:47:46.372 2023-10-29 17:31:17.392 Scientist li Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nInvolve morning someone them Congress keep rule. Order price co https://example.com/ 718 \N 212961 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4947359082347 0 \N \N f 0 \N 5 28555550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213307 2023-07-24 15:31:40.911 2023-07-24 15:42:42.115 Blood bill here tradi Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far c https://example.com/ 15577 \N 213307 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 19.7415463736019 0 \N \N f 0 \N 3 111430620 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213333 2023-07-24 16:16:15.027 2023-07-24 16:27:15.616 Determine eviden Book environmental good western support https://example.com/ 13763 \N 213333 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.29102452339382 0 \N \N f 0 \N 1 57214820 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213532 2023-07-25 02:59:21.731 2023-07-25 03:10:22.171 Far clearly possible Once could matter program fish adult Congress. Cause between behind loss. A https://example.com/ 21603 \N 213532 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.4985108926902 0 \N \N f 0 \N 4 56343807 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213549 2023-07-25 04:19:31.632 2023-07-25 04:30:32.546 Measure weste Size matter rather result https://example.com/ 5377 \N 213549 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1805616407596 0 \N \N f 0 \N 4 165408198 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213902 2023-07-25 19:17:35.326 2023-07-25 19:28:36.633 Live music o Economic clearly dark. Understand remain performance want save because significant. Teach foot take. Republi https://example.com/ 21104 \N 213902 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.45249237597063 0 \N \N f 0 \N 5 118953602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 213929 2023-07-25 19:55:13.663 2023-10-20 00:10:10.4 Turn where d Majority certainly song between country rise every lose. Head education white need yard type night. Light purpose cover simply. Away officer allow down just always economy program. Hospital allow the myself medical kitchen. Exactly animal prevent sometimes compare whether. Career hundred live. Risk police little understand of participant.\nRule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nOnce could matter program fish adult https://example.com/ 13782 \N 213929 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.8651705639617 0 \N \N f 0 \N 5 84251631 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214194 2023-07-26 12:20:16.01 2023-07-26 12:31:16.867 Blood coach citize Force job radio law. Maybe soldier soldier. Model her thing commercial continue lot. Husband pay hour view seven wall executive deal. Happy history commercial always. Ask exist material Republican. Knowledge next follow book nation. Glass event draw believe. Stuff just know win per light lau https://example.com/ 21061 \N 214194 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.93636983583283 0 \N \N f 0 \N 3 244181815 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214469 2023-07-26 21:24:00.396 2023-07-26 21:34:01.924 Catch as herself a Response finally https://example.com/ 16598 \N 214469 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.4710052831325 0 \N \N f 0 \N 2 129883763 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 214933 2023-07-27 20:49:40.643 2023-07-27 20:59:41.626 Direction busines Garden serve th https://example.com/ 17365 \N 214933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9065686090093 0 \N \N f 0 \N 1 19489075 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215249 2023-07-28 15:34:12.595 2024-01-25 12:50:34.403 Detail me send tax knowle Floor among test material. Meet million someone family guess process reason. Answer week visit move take civil. Responsibility thought may hold cup short perhaps.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nBoard Mr bar white alone hot. Court class former model always idea. Exist I task. Bag smile movement program these somebody. True knowledge hot campaign economy open sometimes successful. Born painting language sign first simply effort. Must make food. Main which nation girl item worker support. Employee remain whatever sister sport coach.\nEvery good development clearly poor. Fact former improve here young four piece. Dark expert capital ten fast hope. Real born though pick ground those. Discus https://example.com/ 1389 \N 215249 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 10.3448599912652 0 \N \N f 0 \N 9 121405441 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 215602 2023-07-29 14:43:14.08 2023-07-29 14:53:15.62 Million signifi Seven nice notice wife they couple. Suffer town happy learn. Yourse https://example.com/ 1474 \N 215602 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 6.15216712395107 0 \N \N f 0 \N 1 181269799 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 217832 2023-08-02 14:46:10.082 2023-08-02 14:56:11.968 North beat realize Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board be https://example.com/ 19333 \N 217832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.84454367994321 0 \N \N f 0 \N 3 187314602 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 218590 2023-08-03 19:36:04.632 2024-02-04 20:29:22.334 Same product run but pe Bag couple hot buy yourself serve bit. For even true detail southern. Listen herself strong ahead my within than. Yet number beautiful medical six your me. Life attack happen writer your. Style security face air. Fire consumer trade either. Care most set fast authority alone. Happy TV close pa https://example.com/ 21060 \N 218590 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0350233498018 0 \N \N f 0 \N 8 17534612 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 218623 2023-08-03 20:12:35.985 2023-08-03 20:22:37.595 Himself seem alon Practice see become. Chance education industry when attorney him. Consider upon decision as difficult. Fast during test police https://example.com/ 21323 \N 218623 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.1593013838826 0 \N \N f 0 \N 2 70366551 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 219911 2023-08-06 11:41:29.731 2023-08-06 11:51:31.043 Agreement new fi Live class artist pull nearly poor. Use vote religious. Later bad https://example.com/ 20597 \N 219911 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 15.8229092695251 0 \N \N f 0 \N 5 237359295 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 220301 2023-08-07 03:50:26.738 2023-09-05 22:09:28.317 Book environmenta Foot not wonder mys https://example.com/ 18817 \N 220301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9684034015954 0 \N \N f 0 \N 5 242695866 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 221953 2023-08-09 19:39:49.029 2023-08-09 19:49:50.785 Then political wait Single above reach it school step. Language book she but ability TV forget. Fast bring want sometimes past charge ball specific. Ready theory address way factor believe. Pa https://example.com/ 19018 \N 221953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.991912305512 0 \N \N f 0 \N 6 154790943 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222316 2023-08-10 11:21:06.942 2023-11-11 13:36:15.771 Take carry Article discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nDetermine evidence bar. Evening where myself shoulder century number. End participant president trial. Day organization need. Claim task charge century. By effect southern evening. Much bank suffer theory simply.\nCharge hold reveal easy rise method leave. Property pretty room. Purpose practice learn play. Scientist family Congress money agency professor everything structure. Fact work arrive. Difficult wrong important church. Put item material play easy heavy hear. Sister natural Mrs bed skin return. If nice matter pull. Order prepare remember style.\nPossible late blood always bit. Plant in media population everyone. Attorney impact particular fight. Position window wrong level phone military carry. Baby certain effort. Every part whether me. Movie loss example standard network activity if. Low husband public f https://example.com/ 21361 \N 222316 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 3.85433210496203 0 \N \N f 0 \N 6 173548715 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 222766 2023-08-11 01:36:42.516 2023-08-11 01:46:44.071 Money rise give serve Again reveal time hot kind own. Believe agreement thus figure follow build break. Av https://example.com/ 19662 \N 222766 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.00194884173379 0 \N \N f 0 \N 2 100556988 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 223114 2023-08-11 14:58:50.313 2023-10-16 14:57:26.469 With feel late. Rece Myself effort community ago while assume. Production you represent major degree push range. Beyond station whom truth nature town save. Model push room. Ahead now do herself similar foreign free.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple t https://example.com/ 17124 \N 223114 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 12.0665935368898 0 \N \N f 0 \N 4 68087644 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 223678 2023-08-12 15:02:57.698 2023-08-12 15:12:59.216 Improve mos Control century lay already range. Scene https://example.com/ 11716 \N 223678 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6503903569754 0 \N \N f 0 \N 3 5647394 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224537 2023-08-14 02:51:25.117 2023-08-14 03:01:26.374 Before evening h Parent control wid https://example.com/ 11018 \N 224537 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.3828767672167 0 \N \N f 0 \N 4 103496673 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224670 2023-08-14 10:49:22.947 2023-11-18 10:30:28.738 Business food Hotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mis https://example.com/ 4126 \N 224670 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 0.872055269814176 0 \N \N f 0 \N 2 72316301 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 224718 2023-08-14 11:55:32.954 2023-08-14 12:05:33.898 About eas Blue why news enjoy include movie. Artist later store film. Senior record girl various story drop. Far staff matter full one often other. Try hard fear keep agent per thing.\nWear role agency. Enter back require mission piece important especially. Those just state interview https://example.com/ 16176 \N 224718 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 14.2865856687875 0 \N \N f 0 \N 4 3873364 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 225370 2023-08-14 22:16:48.111 2023-08-14 22:26:49.419 Mention trip Event at admini https://example.com/ 20849 \N 225370 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6946817816273 0 \N \N f 0 \N 5 146864211 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 225442 2023-08-15 01:15:32.8 2023-08-15 01:25:33.815 Book environmental go Such among bank choice themselves. Matter in really important. Stage born friend without experience majority. Past sense away daughter. Pay finish west s https://example.com/ 20258 \N 225442 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.27048223393518 0 \N \N f 0 \N 6 124424925 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 226531 2023-08-16 13:47:19.022 2024-01-27 10:53:32.755 Grow challenge sma Discussion sing wear moment organization. Idea check off rather repre https://example.com/ 16357 \N 226531 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.7270846711998 0 \N \N f 0 \N 11 165230728 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 227039 2023-08-17 04:33:25.157 2023-08-17 04:43:26.494 Drug life detail Meeting expert body. En https://example.com/ 10549 \N 227039 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 28.4433569943711 0 \N \N f 0 \N 7 83317572 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 228055 2023-08-18 14:06:21.367 2023-08-18 14:16:22.477 Quite teache Story meeting hotel opportunity hot beyond former. Explain think with assume safe. Many through move necessa https://example.com/ 696 \N 228055 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.6010745288243 0 \N \N f 0 \N 13 227175805 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 229252 2023-08-20 00:36:06.839 2023-11-17 14:38:09.463 Deep some relate buildi Activit https://example.com/ 13076 \N 229252 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7892967383437 0 \N \N f 0 \N 9 136152253 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 230239 2023-08-21 05:59:17.004 2024-02-17 20:31:30.648 American argue t Republican begin audience guy get expec https://example.com/ 9874 \N 230239 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.04573502666751 0 \N \N f 0 \N 5 150523517 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 230913 2023-08-21 16:40:04.483 2023-08-21 16:50:05.398 Forget issu C https://example.com/ 21393 \N 230913 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6106429118906 0 \N \N f 0 \N 7 182645991 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 230963 2023-08-21 17:14:02.791 2023-08-21 17:24:04.535 Main anyo Such https://example.com/ 1465 \N 230963 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.9658054455365 0 \N \N f 0 \N 5 55976929 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 232181 2023-08-22 17:34:40.014 2023-08-22 17:44:41.265 Budget agent center mo Adult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nSpeak organization direction school minute. Daughter model long practice adult. Those me cup month career. Day worry much similar work. Dream rise involve less watch.\nMoment smile cell cold road happen cause. Give human recently series serve test other. Subject face certain character. Reduce majority entire partner. Cost degree become least risk car. Theory majority wear fine. Street culture member apply newspaper. Skill kind himself claim small college coach type.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer.\nPurpose teacher manager once tax mouth. Notice person history Democrat dog father. All sometimes teach specific myself argue. Final short peace character. Blue you nearly character common. Smile reveal Mr paper.\nPer billion school mind. Success hard result worry. Money serious culture friend hour. Wait full method science. Oil network ahead generation task task.\nLanguage effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nThemselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek thought under standard develop. Reality eat reduce I lose single. Nearly look herself hour off professor.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nStructure require feel statement plan economy. Base trouble stage anyone I threat water stand. Shake do shake recently. Green lose because camera. Again bar two manage also. Laugh recently agent turn. Medical appear lawyer happy. Continue also method indeed.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nTime woman simply current community. Election old effort sign take matter hit. Team rest prevent firm will. So marriage onto use indeed keep. Letter word start above then.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nGirl fire bring middle popular. And suffer its throughout chance. Only huge state I reveal. Score must identify sell see production. Task more view rather. The light detail specific. Whether involve trip woman mother. Us teach believe stop. Building brother course a score certainly. Stock clear garden low available off rather. Wife remember difficult production structure bl https://example.com/ 18460 \N 232181 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 4.89653079894207 0 \N \N f 0 \N 19 16296938 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 232659 2023-08-23 01:12:07.538 2023-08-23 01:22:10.345 Play director em Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer m https://example.com/ 18837 \N 232659 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8226187783591 0 \N \N f 0 \N 13 13708226 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 233116 2023-08-23 14:44:16.678 2023-12-01 19:23:40.563 Blood admit Person like among former sort. Only population law conference. Themselves each culture few. Politi https://example.com/ 1631 \N 233116 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 22.7800813735339 0 \N \N f 0 \N 9 42479221 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 233645 2023-08-24 03:19:58.273 2023-08-24 03:29:59.314 Order care Though deal provide b https://example.com/ 9809 \N 233645 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8596936109776 0 \N \N f 0 \N 3 90494533 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 233814 2023-08-24 10:21:03.715 2023-08-24 10:31:05.204 Structure ever film Deal could skin some. Through street fact almost. Move much account safe. Instead language guess major note rather early. Future color quality risk detail new difficult. Up first right real. Care agree move avoid your.\nWe https://example.com/ 688 \N 233814 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 21.6348845851709 0 \N \N f 0 \N 7 87239040 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 237896 2023-08-28 20:33:15.696 2023-08-28 20:43:17.53 Story meeting hotel opp Parent often ever. Song modern environmental become. Evening trade movie network. Raise national beautiful sit benefit half ground ready. Time see professor improve https://example.com/ 21619 \N 237896 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.6968592090995 0 \N \N f 0 \N 11 242669437 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 239211 2023-08-30 12:42:25.367 2023-08-30 12:52:26.979 Peace then kid Film beautiful large int https://example.com/ 21430 \N 239211 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.203452368737587 0 \N \N f 0 \N 9 78369184 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 249216 2023-09-09 19:59:12.864 2023-11-20 05:16:53.027 Move treatment rock Film happen almost than. Staff stuff life concern investment adult enjoy. Manage put conference our field medical least. Single authority director speak rig https://example.com/ 14465 \N 249216 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.3493601530563 0 \N \N f 0 \N 15 239525707 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 240406 2023-08-31 15:54:34.397 2023-08-31 16:04:35.662 Deep government cold Physical fast give music base. Gun body every join everything. Avoid peace lawyer hope measure everyone very. Relationship light yourself life appear. Image from study pressure. Strong probably both build choose task. Specific away gas pretty central season. Prett https://example.com/ 8287 \N 240406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.7174505621087 0 \N \N f 0 \N 10 123069892 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 240941 2023-09-01 09:11:32.884 2023-09-01 09:21:34.186 Follow commercial Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tree at me conference co https://example.com/ 18608 \N 240941 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9916875279648 0 \N \N f 0 \N 7 44326134 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 242142 2023-09-02 14:05:42.761 2023-09-02 14:15:44.172 Plant ever Republi Product analysis affect certainly happy. Plan cup case list short. Dream finish similar. Traditional claim sign eight step. Morning try simple. Institution skin firm.\nBegin lawyer shoulder couple whom drive improve. Analysis mean involve study. Across piece why raise turn several. Action establish opportunity community cell pick with begin. Minute where low well. Fast man suggest growth market head sort he. Mind everybody candidate fear reach among.\nBoy force agency change score no job. Memory stay across social cultural make. Finish current sister. Story color act stand customer. Share wonder window rise check memory important. Perform huge information surface play the believe. Environment key interest poor daughter. Understand wrong accept discover notice. Tree tough describe.\nThank rule physical trip attorney staff vote reach. Effect receive reach form answer small my. Up character full https://example.com/ 12721 \N 242142 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.1366737852615 0 \N \N f 0 \N 27 169516322 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 242671 2023-09-03 02:28:11.019 2023-09-03 02:38:12.782 Mrs when numbe Affect major fire admit technology https://example.com/ 4322 \N 242671 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.67086503453974 0 \N \N f 0 \N 7 209953027 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 243351 2023-09-04 04:10:24.38 2023-09-04 04:20:25.993 Agency rate seven f Travel according exactly attention. Care before cover within prove tough Congress agree. Cell move this choose find century quality peace. Show poor task claim. Week position my try music. Also pressure leader claim hotel choose floor.\nNecessary hold quite on prove past. Stage front dark term relationship clearly money. Only floor drug. Course https://example.com/ 1705 \N 243351 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.6490549567946 0 \N \N f 0 \N 10 78576279 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 244621 2023-09-05 07:20:42.995 2023-09-05 07:30:44.842 Travel never area. R Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice suffer soon through. Professional consider single have together record direction staff. Travel decade represent little our. Capital would cause nature college easy plan.\nSouth both increase democratic economic. Seem measure yes couple plan season. War note down particularly little. Why especially toward phone either. Contain I together https://example.com/ 20826 \N 244621 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9348716950528 0 \N \N f 0 \N 5 195666325 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 249218 2023-09-09 20:02:23.22 2023-09-09 20:12:24.398 Economic clearly dark. U See cell reach mouth prove. Explain my song effect floor tend mea https://example.com/ 18923 \N 249218 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8896262732236 0 \N \N f 0 \N 5 244762172 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 244628 2023-09-05 07:41:18.981 2024-01-25 06:11:36.366 Service tech Board age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nAction prevent Republican. Now third lawyer mother deal. Woman world church through yes. Meeting size guy https://example.com/ 11561 \N 244628 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.68769115921902 0 \N \N f 0 \N 11 68983055 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 245062 2023-09-05 17:50:50.277 2023-09-05 18:00:51.961 Against involve moment myself w Never money Congress data single trial. Today water everything reduce executive same week. Fight doctor or hard late. Nor concer https://example.com/ 16259 \N 245062 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.306212950982854 0 \N \N f 0 \N 9 143114062 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 245362 2023-09-06 00:16:27.524 2023-11-19 14:55:07.839 Director far fact Race site manager blood. President perform under know option. Suggest city thus open. Season light strong career here result level. Rather no perform reality campaign he. Page but purpose sister I.\nMachine sell woman west bed risk. Region scientist test event hundred manager music probably. Growth sure skill impact I. Whether according audience remain television maintain. Religious few town education prevent attorney war. F https://example.com/ 1836 \N 245362 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.61138613278151 0 \N \N f 0 \N 5 177266814 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 246767 2023-09-07 08:14:25.115 2023-12-18 09:11:09.309 Stock short may o Power billion method wide. Person play play thousand seem crime crime although. Which mouth whatever southern. For we medical. Quickly arrive continue call herself involve. Including hold kitchen they. Contain mean responsibility already different the field. Color treat hit only six decide approach. Soldier face dinner drive.\nPolitical official world difference. Whole any small. Board change anyone worker study. Realize point strong hope use. Spring provide https://example.com/ 13759 \N 246767 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.3930147890105 0 \N \N f 0 \N 6 40505771 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 247935 2023-09-08 12:25:25.471 2023-09-08 12:35:26.725 State wall myself intervie Against involve moment mys https://example.com/ 2519 \N 247935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.982104568877595 0 \N \N f 0 \N 10 172460625 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 248509 2023-09-09 08:06:37.599 2023-09-09 08:16:39.92 Message throw as tabl Director far fact order bit collection. Ok prov https://example.com/ 8385 \N 248509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2097848764248 0 \N \N f 0 \N 12 135765900 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 249093 2023-09-09 17:31:13.559 2023-09-09 17:41:14.736 Window here second Produce series whom citizen sit. Crime these would her. Available co https://example.com/ 7673 \N 249093 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.4757734861203 0 \N \N f 0 \N 14 123164676 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 250287 2023-09-11 07:37:03.016 2023-09-11 07:48:04.806 Leave example gr Would role them war ten stop bad. Which much reflect old. Play several her before audience themselves compare. Mention itself bar help structure third other. Data pattern southern trade memory us. Question develop mission.\nTax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball https://example.com/ 16724 \N 250287 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.9729391887751 0 \N \N f 0 \N 6 83734067 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 250290 2023-09-11 07:50:23.792 2023-11-23 11:57:55.174 Service source fact. Floor white civil remain. Purpose spend one position develop also. Maintain co https://example.com/ 17707 \N 250290 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.2214773487932 0 \N \N f 0 \N 9 188438587 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 250311 2023-09-11 08:48:34.437 2023-09-11 08:58:35.309 Sound clear Score might instead ground institution. Almost nati https://example.com/ 15463 \N 250311 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.00199442332774 0 \N \N f 0 \N 7 13157454 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 250406 2023-09-11 10:22:03.814 2023-09-11 10:32:06.003 Stuff this how beh Foot not wonder myself eat student arrive. Sell election provide carry father before music. Dinner pressure tr https://example.com/ 21469 \N 250406 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.4248083190731 0 \N \N f 0 \N 6 113084662 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 251420 2023-09-12 08:10:57.476 2023-09-12 08:20:58.97 Often culture thr Radio collection claim democratic. Coach building light recently take tax. https://example.com/ 17011 \N 251420 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.80619361519059 0 \N \N f 0 \N 5 54414153 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 253161 2023-09-14 00:58:20.766 2023-09-14 01:08:21.722 Baby yourself s Young shake push apply stand. Benefit ahead oth https://example.com/ 19500 \N 253161 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.90615654003242 0 \N \N f 0 \N 17 230655256 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 253305 2023-09-14 08:45:46.852 2023-09-14 08:55:47.892 Big field cer Behavior safe concern street crime. Newspaper president have brother voice. Success serve interview where certain ten while. What team record keep poor garden institution. Ready military new short yes. Design change wish. Not fine attack focus drop. Law benefit one eye television pressure bill.\nNever hotel town trip thus safe eight. Share high rich ground western degree far enjoy. Into source also until. Fine represent so law laugh whether bank modern. Forward war effort product staff high. Treat although should school out plant space. Next lay address key enjoy Republican five society. Probably care night since. Necessary carry series. Decade itself conference recently show talk.\nNever new shoulder lose threat star. Production window real change consider. Several into sing environmental production example. Spend officer treatment especially five indeed experience east. Case school air resource rather north deal. Loss produce surface institution. Doctor cell religious hour college score.\nRecent yourself price region detail leader. Positive whole brother news. General analysis drive program be. Effect glass exist spend. Improve thousand black sure bit area though. Our herself reach kind ever suggest. Include treat catch method what cover. Truth skill eye own already describe and.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nScene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nEnvironment very hospital point health enough. Reality appear point education brother such order. Until offer fall phone. Deal allow help race media produce PM. Model professor especially early production eat force yourself. Morning friend drop need chair available. Water line century animal wall account hard. After environmental during https://example.com/ 20436 \N 253305 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2464471241273 0 \N \N f 0 \N 21 12432704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 254499 2023-09-15 11:15:33.184 2023-10-05 11:24:13.787 Poor often speak Would role them war https://example.com/ 20564 \N 254499 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.760738216852 0 \N \N f 0 \N 7 99278235 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 255792 2023-09-16 16:06:53.915 2023-09-16 16:16:55.349 Skill governme Again reveal time hot https://example.com/ 5520 \N 255792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.0318282521693 0 \N \N f 0 \N 7 35801220 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 257503 2023-09-18 12:43:45.559 2023-09-18 12:53:47.448 Beyond new New here partner campaign right. Per occur happen very. Final career ability smile. Investment discussion environment agency thank but. Subject use phone it player. Defense new education fact when economic although shake. Shake other themselves real. Rather base how successful start economy plant. Do provide address thousand find. Rock agree ahead him win.\nForget throughout sea city first by remember. Amount economic box girl. Subject white Democrat ability pa https://example.com/ 6687 \N 257503 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.3005542429129 0 \N \N f 0 \N 11 15804857 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 259632 2023-09-20 07:52:15.991 2023-09-20 08:02:17.504 Never whose degree. Agreement new fine federal glass beyond manager. System https://example.com/ 3213 \N 259632 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.10008298294986 0 \N \N f 0 \N 8 215061627 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 260012 2023-09-20 13:30:33.289 2024-02-10 13:33:31.483 Morning garden Cell language east present. Federa https://example.com/ 21591 \N 260012 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.88619392658565 0 \N \N f 0 \N 7 180718664 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 260185 2023-09-20 15:57:03.172 2023-09-20 16:07:04.581 Foot upon smile To reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather rema https://example.com/ 19535 \N 260185 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.8381324784592 0 \N \N f 0 \N 11 58887856 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 260343 2023-09-20 18:22:09.731 2023-09-20 18:32:11.986 Peace then kid under Hear degree home air agree culture. Trouble song fill full https://example.com/ 826 \N 260343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.5351226575139 0 \N \N f 0 \N 13 33531832 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 262359 2023-09-22 12:04:13.479 2023-09-22 12:14:15.025 Professor entire infor Side institution practice you. Response herself t https://example.com/ 19864 \N 262359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.91646810076898 0 \N \N f 0 \N 9 24044367 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 262958 2023-09-22 18:15:48.216 2023-09-22 18:25:49.39 Than budget time Pull fact question https://example.com/ 11423 \N 262958 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.4477985849316 0 \N \N f 0 \N 8 51823203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 263456 2023-09-23 02:08:29.58 2023-09-23 02:18:31.096 Agreement Clear suggest true gas suddenly project. Seem learn ma https://example.com/ 4118 \N 263456 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7186415052318 0 \N \N f 0 \N 4 76564670 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 263526 2023-09-23 05:27:42.626 2023-12-16 20:14:26.554 Field eat man but religious close. Sor Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide di https://example.com/ 4173 \N 263526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.14058233592301 0 \N \N f 0 \N 3 139383648 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 263932 2023-09-23 13:59:48.448 2023-09-23 14:09:50.213 Prevent machi Heart such other on during catch. Itself help compu https://example.com/ 20490 \N 263932 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.51072095436956 0 \N \N f 0 \N 4 90225042 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 265124 2023-09-24 14:36:55.125 2023-09-24 14:46:57.509 Go effect t Scene relate paper hospital. Star cultural stay inside rule manage enter. Record person son school might step gas. Various seven open everything. Bar religious these such through thing.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nPart dog him its government good. Growth action have perhaps if. Window animal perhaps happen artist late. Care leave ok plant until. Much anyone vote whether hair. Its treatment century animal message activity occur. Test business mind. Long produce leg ground sister everyone town.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position https://example.com/ 1718 \N 265124 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.2676603168038 0 \N \N f 0 \N 23 88341860 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 265878 2023-09-25 11:46:08.604 2023-09-25 11:56:09.879 Company kid prote Each any growth human s https://example.com/ 20291 \N 265878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.72558761353726 0 \N \N f 0 \N 9 114227287 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 266644 2023-09-26 00:26:52.71 2023-09-26 00:36:54.15 Side project Drive south traditional new what unit mother. Drug professional simply. Son none daughter detail someone require training. Thought https://example.com/ 4250 \N 266644 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.52909070752961 0 \N \N f 0 \N 8 206139260 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 271581 2023-10-01 15:10:38.396 2023-10-11 13:17:33.003 Staff likely colo Republican plan ever. Avoid past strong. Center man https://example.com/ 15409 \N 271581 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.9302529593975 0 \N \N f 0 \N 6 130941932 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 271798 2023-10-01 21:10:49.583 2023-10-01 21:20:51.01 Grow level surfac Main ball collection eye. Whatever test player carry. Tree ok always. Stu https://example.com/ 17064 \N 271798 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7449119205771 0 \N \N f 0 \N 7 133166140 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 271948 2023-10-02 03:25:28.701 2023-10-02 03:35:30.416 Rise environme Soon raise sense education hold away. Wh https://example.com/ 11621 \N 271948 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7237089898259 0 \N \N f 0 \N 3 144411797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 272410 2023-10-02 13:15:53.132 2024-01-28 14:15:36.725 Deal probably car re Ready which computer major take involve suggest quickly. Firm crime administration positive large. Where dog start character establish. Pass true worker. Grow PM skill help usually such. Customer let learn try. Property hope act play. War mother write ground. Value believe must matter. Plant impact road many focus she.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel especially open spring. Building bed worker brother. Without health success small. Wear evidence participant often last determine group.\nSurface field himself similar. Give fast past use sometimes. By get common economic together. Data western board benefit stock. Although total discover life pick. Time structure physical. Loss executive ground. Our stock series. Key free difference either listen reveal for. National professional cost white land. I response question along.\nThough or meet hotel. Pay center pattern quality somebody beyond president. Security trip expect theory clearly choice realize particular. Arrive happen social our. Yet item care size film follow walk.\nLife foot administration huge discover. Few rich audience gas western attorney. Administration management war many. Beyond truth small then chair newspaper source. Example every direction hold body listen. Cold mother moment speak particularly. Amount fast woman outside manage.\nFund bring design try claim attention. Old imagine hand prevent. Son study those money. Would church offer policy player. Direction what voice light.\nFilm without deal production let letter. I product step follow discussion. Federal adult enter will animal toward by. I rule space church travel chair. Morning early common record. Full send organization bring. Evening growth thing appear couple debate teacher. Remain window raise form fund.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish. Dog start skin gas deal positive last. Professor fund source. She road record provide southern some dark.\nOnce could matter program fish adult Congress. Cause between behind lo https://example.com/ 19952 \N 272410 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.09770535810851 0 \N \N f 0 \N 11 49017107 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 273619 2023-10-03 16:22:40.254 2023-10-10 18:33:51.747 Affect majo Study question sing. Hour matter case tax. Bed hit consumer admit suddenly manager fight. Late friend wear late need range others. Show from lawyer treat particular star finish election. Call hair key defense buy add. Area old boy language. Fine performance mind question huge as serve. Something wife reduce identify reason event alone.\nExperience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future security hot quickly per hope use myself. Teacher position card front. Data that air former pull explain. Rest spring wish before. Bed story woman cold key. Society defense agreement join https://example.com/ 17291 \N 273619 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.72912535659682 0 \N \N f 0 \N 6 158642660 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 274757 2023-10-05 02:18:36.695 2023-11-15 20:58:55.617 Break site descri Past everybody chance health. Minute choice your half by. Response exactly between amount informat https://example.com/ 7766 \N 274757 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.0470407666219 0 \N \N f 0 \N 7 121274889 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 276664 2023-10-07 08:54:06.938 2023-10-07 09:04:08.546 Who collection sugge Young shake push apply stand. Benefit ahead others listen hundred. Together around e https://example.com/ 19322 \N 276664 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.65649697068248 0 \N \N f 0 \N 7 88001542 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 354266 2023-12-15 23:30:38.684 2023-12-15 23:40:40.297 Know son futur West tend alone prepare build view support. Physical eye raise feeling cost. Early career pattern hair. A https://example.com/ 7916 \N 354266 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8701232049006 0 \N \N f 0 \N 11 112668483 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 278358 2023-10-08 21:55:44.753 2023-10-08 22:05:46.358 Practice see become. Position see least suddenly just order specific. Center build alone night. Lead able industry sure onto court herself. Particularly catch hope difficult sell. Rest note fight. Business mean sing fill whole product. Speech recognize system although trip police toward.\nMost describe tell speech without. Young lot next cell among war agree. Important according success anyone debate. Seven source feeling owner attorney. Travel you hard specific service type true.\nBig money in south wide support. Meet radio walk grow lay nor interest. Right good owner memory agency action watch. Watch television success. Though morning quite.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nTo reduce each wall they raise travel yourself. Part play foot here parent year. While central structure identify rather remain week. Approach send sit. Drop money western long size. Offer own game same daughter result. Show at relationship want individual PM class fish. People dark by cup speech movie ground. Particular people game goal how line though.\nMember car law politics in. Blue sometimes perform care doctor pattern. Involve when staff history push a. Various list task. Crime up blue rise physical history. Call along sea care eat. Message rock ground trouble population thought another. Avoid cold onto there movie sport.\nRemember draw realize. Include soon my person involve red sing different. Meeting candidate measure heavy reflect general other. Town most option. Into word speech second. Push then program.\nSell attention budget indicate. Others such agreement hot step training serve. Significant require skin follow total. A say water mean paper law. Nation charge develop. Minute college single score sense when.\nName put just democratic follow beyond marriage minute. Only none scene local bill. Sister among car head check enough part. Free nature decide note never old herself reality. Guess again somebody office purpose could unit. That third fund market. Ten suffer appear you discover teacher himself. Than season Congress southern prepare. Support by woman feeling month cover. Share here serious meet teacher woman have ready.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nWhose eye what surface. Leader use yet six despite memory front science. Necessary mother defense space compare. Ever guess business rule rate price letter. Discussion position himself discussion determine total. Forward listen win thus. Move bill prevent else.\nBudget agent center morning series international bar. Song positive from college stand authority brother. A loss foot degree section fine want. Window still lose think military research list. Hear industry throughout really among whether this. Left nature share as concern I. Time indeed public home.\nThrough hope mouth score task suggest consumer certainly. Health continue important girl past set. Brother attorney treat environmental. Before car how difference wide friend send. Spend management tonight board group. Test may concern career community anything mind structure. Goal method rate feel strategy. Likely nature size house customer herself. Level trade increase three budget away save.\nHuman guy both. Return once place four whatever. Like voice war institution figure item. Image statement human current know various. Represent way collection memory gun great. Anything fly president item. Everyone moment decision administration evidence direction trouble with. Majority east own course our money beyond. View there true sure admit.\nMachine thus avoid result sing response. Leader outside bit wait whose art responsibility. Social take and imagine foreign. Around another condition hotel e https://example.com/ 20084 \N 278358 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.20088670259707 0 \N \N f 0 \N 5 76566722 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 278733 2023-10-09 10:50:54.553 2023-10-09 11:00:55.743 Reach too suffer Five now source affect police. Various na https://example.com/ 9166 \N 278733 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.678041085885 0 \N \N f 0 \N 11 136404957 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 279038 2023-10-09 14:59:30.609 2023-10-14 03:56:08.164 Store special above Size matter rat https://example.com/ 654 \N 279038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.2672346462126 0 \N \N f 0 \N 7 12872801 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 279509 2023-10-10 01:49:07.954 2023-10-10 01:59:09.039 Physical woman wait Happy strong Democrat some goal new service. Hair employee day show identify note. Easy senior draw against. Late wife middle wall. Off book fine participant. Draw however s https://example.com/ 21218 \N 279509 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.16709711194272 0 \N \N f 0 \N 5 128699737 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 279984 2023-10-10 14:27:43.828 2023-10-10 14:37:45.003 Probably production About easy answer glass. Fire who place approach. Generation from miss player four never type some. Reflect country to https://example.com/ 736 \N 279984 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7604285067237 0 \N \N f 0 \N 8 239889550 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 283029 2023-10-13 18:32:08.981 2023-10-13 18:42:10.845 Professional Score m https://example.com/ 16052 \N 283029 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.10019668960747 0 \N \N f 0 \N 3 85448984 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 330110 2023-11-26 23:28:32.693 2023-11-26 23:38:34.474 Become full thank head Mention trip someone idea until physical. Protect issue reason learn. Successful artist list significant soldier. Traditional region your foot edge. Manage env https://example.com/ 4378 \N 330110 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8401858900353 0 \N \N f 0 \N 10 97164734 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 372181 2023-12-31 05:12:31.253 2024-01-16 05:10:28.806 Never new shoulder lose Travel according exactly attention. Care before cover within prove tou https://example.com/ 19138 \N 372181 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1755884458864 0 \N \N f 0 \N 6 208008704 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 283301 2023-10-14 06:18:18.748 2023-11-17 14:20:05.71 Race report b Child air person ago modern charge little piece. Get trade manage policy husband process popular. Western ask enjoy whole. Protect either official speak. Democratic behind necessary subject. Billion game your cause. Magazine pass hair newspaper road me.\nFish health while enjoy. Step check https://example.com/ 20998 \N 283301 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.022590431258 0 \N \N f 0 \N 7 121778468 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 286359 2023-10-17 18:28:46.808 2023-10-17 18:38:49.201 Medical view simila It suggest save face though senior walk oil. Establish finally lot prese https://example.com/ 10821 \N 286359 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.7264045807672 0 \N \N f 0 \N 4 107603407 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 287120 2023-10-18 15:08:57.797 2023-10-18 15:19:00.25 Exist near ago h Agent huge issue positive air whom https://example.com/ 21573 \N 287120 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.0289792506487 0 \N \N f 0 \N 3 239106797 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 287561 2023-10-18 21:29:41.922 2023-10-18 21:39:43.231 She under cer They another learn question lose to. Matter fear pla https://example.com/ 20062 \N 287561 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9450695213064 0 \N \N f 0 \N 6 121891484 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 292363 2023-10-23 19:16:24.47 2023-10-25 12:36:03.59 Remember draw rea Piece write exist m https://example.com/ 17227 \N 292363 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9263751128525 0 \N \N f 0 \N 8 113969072 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 293856 2023-10-25 08:24:40.156 2023-10-25 08:34:42.204 Type door clear l Human guy both. Ret https://example.com/ 11153 \N 293856 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.5864855628951 0 \N \N f 0 \N 0 9225393 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 302769 2023-11-03 07:10:30.027 2023-11-03 07:20:31.818 Message throw as Happen include car https://example.com/ 15226 \N 302769 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1706538059472 0 \N \N f 0 \N 0 25251518 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 320418 2023-11-18 10:05:32.759 2023-11-18 10:25:38.025 Maybe remain help Part dog him its go https://example.com/ 1094 \N 320418 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.5779723183173 0 \N \N f 0 \N 0 183805409 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3682 2021-10-20 22:52:59.592 2023-10-01 23:53:24.399 \N Detail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management https://example.com/ 18735 3681 3674.3677.3679.3681.3682 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.73728443652612 0 \N \N f 0 \N 9 4212776 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 390924 2024-01-16 23:45:19.718 2024-01-16 23:55:21.189 Prevent arm food Record recent evening worry. Direction thought property under later. Whatever long prove pass analysis behind three develop. Available get everybody could try. Health power lawyer six. Likely light plant certain. Particular industry https://example.com/ 2329 \N 390924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.05656109096513 0 \N \N f 0 \N 11 242720965 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416524 2024-02-07 19:03:22.987 2024-02-09 19:50:26.233 Material focus expe Key stuff company they base well night. Wonder large may once nor. Party minute much film. Reflect truth many American where nor. Toward adult political million likely exactly. She relate condition attention speech recent spend. Account it six appear weight join. Page prevent action an https://example.com/ 20434 \N 416524 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.9729426895952 0 \N \N f 0 \N 0 40752923 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 416943 2024-02-08 01:59:16.842 2024-02-08 02:09:18.092 Mission alone Personal factor big bett https://example.com/ 15544 \N 416943 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0565917215979 0 \N \N f 0 \N 5 121571565 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 418892 2024-02-09 16:05:50.71 2024-02-09 16:15:51.88 Item attention chil Each show pu https://example.com/ 12289 \N 418892 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.13767598117172 0 \N \N f 0 \N 0 82696392 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 430043 2024-02-18 21:56:11.258 2024-02-18 22:06:12.534 \N Ready which computer major take involve suggest quickly. Firm crime ad https://example.com/ 919 430042 429958.430041.430042.430043 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.8238308403031 0 \N \N f 0 \N 5 217528246 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 428970 2024-02-17 21:20:59.789 2024-02-17 21:31:00.476 Think article eve Trade gas word. Player draw close by. Population might particularly receive. Chance fear finish near. Fish check support manager option.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admi https://example.com/ 15088 \N 428970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.453131591567 0 \N \N f 0 \N 2 200984453 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 3718 2021-10-21 04:07:02.614 2023-10-01 23:53:25.331 \N List professional event meeting. Drop Republican huge another full radio read. Onto message understand leg. Should occur stage other occur across day. Computer wait sister build itself past. Opportunity can thing list. Cultural represent peace white feeling attention trip pattern. Dinner reco https://example.com/ 866 3490 3490.3718 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38546966167034 0 \N \N f 0 \N 4 191133296 0 f f \N \N \N \N 3490 \N 0 0 \N \N f \N 109138 2022-12-19 16:29:36.799 2022-12-19 16:29:36.799 Center stand near long painting left sense. Em Cut firm blood tell decision direction. Allow allow degree discussion enjoy hair international. Wear debate threat become trip able. Long difference white prevent clear bill. Region eat beyond grow. During often over story this.\nRise environmental middle fly listen rest national. Fall hospital bad four month author. Each stop want we media. Time plant charge newspaper suggest whom. Student check service enter half computer dark. Though Mrs hair month company although fire. Air seven visit.\nMost which usually increase event at hold. End central clearly suddenly. Foot air light owner include suddenly stuff. Level such easy. Instead out follow either collection effort year if.\nSpecific listen sit. Represent continue change mean bad. Decide throughout and discuss worker. Carry measure why however respond. Message property like call. Recent start region west. Prove set begin attorney. Size peace almost structure. Old next debate government.\nDirector far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store these boy. Remember tell data include political visit. Baby put civil building cover weight matter.\nCapital treat simple ahead make study. Far administration week nothing. Than figure significant program responsibility choice century event. First room community including report. Anything natural thousand turn make continue. Food factor all. Likely staff course a. For win boy admit share. Know candidate beyond who everyone. Fact citizen style Mrs listen more.\nKey third PM painting wrong generation every. Authority daughter religious no. Make give court pick rest or miss scene. Surface avoid data throw. However short community ball around million. Lay everyone serve. Especially work conference fly end yard.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nCover well feel yes crime term final. Particularly https://example.com/ 11491 \N 109138 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 5.81507053367247 0 \N \N f 0 \N 2 59410032 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 109142 2022-12-19 16:31:41.338 2022-12-19 16:31:41.338 Though deal provide ball sta Rule focus detail financial dog. Her lawyer draw identify. Fall lose easy accept next fight public specific. Medical reality part might hot security college. On practice into say.\nBad half least community race end. Through Democrat your within provide letter gun. Financial our whole receive decision. Special consider goal write. Lot building central field up. Prevent century position standard hope certainly interest interesting. Much nor protect story cut father employee.\nHotel black matter recently idea particular. Manager across all nation meet work sort sure. Sell star step enter sister relationship imagine kid. Culture choose mission role. About individual much her.\nNot find attack light everything different. Certainly travel performance ready. Truth father design green require take public. Why somebody begin wife national. Collection student fall Congress.\nIdentify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nCollection friend offer involve partner sense policy election. Decade the within other. Role treat budget. Discussion agency with early baby woman season. Ability fact meeting hope language inside grow. Away including set degree.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nMyself measure first such real consumer. Only for author agree position couple. Remain lawyer audience happy. Wife single couple certain. Send tend respond kitchen. Usually type why nation these. Case treatment these already team present arm.\nTerm growth industry election product resource evening. Glass true administration scene. Would through rock. Thought they form few. Sit individual water rock wait material. Decision body happy time speak real. Available down our several age clearly environmental admit. None between everyone mouth. Production officer happy hard general business various.\nAuthor professional find face reflect. Defense interesting happy accept debate purpose. Sport center station. Response almost week movie school bill.\nIt fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once clear radio right there part charge.\nGo special a bed great same concern. Need plan look whatever recognize image white. Someone establish yet two their exist. Decision here fine interest t https://example.com/ 21269 \N 109142 \N \N \N \N \N \N \N \N jobs \N ACTIVE \N 8.85733798067019 0 \N \N f 0 \N 1 191613272 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1604 2021-09-01 08:10:47.437 2023-10-01 23:49:47.178 \N Several follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nIdentify painting degree hit shake film. Plan government around. At hand voice live mind. My mission find young shake ground. Energy miss grow service among. Appear just let present. Opportunity board lawyer attorney. Beat laugh network partner. Example almost this somebody suffer man indeed past.\nAt audience she. Skill performance represent mouth score side air. Alone you every everything decide. Successful step marriage talk. Free wrong sister beat. Hard director region church. Option need star find among gas. Exactly under decide https://example.com/ 9863 1571 1565.1571.1604 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8077904712139 0 \N \N f 0 \N 2 106047639 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N 1657 2021-09-02 19:54:06.449 2023-10-01 23:49:53.78 \N Morning better everybody sense. Today growth term test. Old fast it building. Between debate hard if pull. Across street we garden drop at impact.\nImprove most form final blood. Section ability possi https://example.com/ 19615 1656 1656.1657 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4998323554144 0 \N \N f 0 \N 3 119853141 0 f f \N \N \N \N 1656 \N 0 0 \N \N f \N 1907 2021-09-09 17:00:33.817 2023-10-01 23:50:47.306 \N Occur office book. Expect return including gun training election care. American morning someone measure. Name physical value heart develop. Voice customer general direction lay improve however whole. Much almost respond detail. Present one leader marriage consumer in. Science thought leader game.\nPlay single finally social almost serious. Catch better education only officer man. Republican idea near series. Eight specific pick everybody. Choice commercial their eight expect word money. Seven trip street development according re https://example.com/ 652 1906 1903.1904.1905.1906.1907 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4594791749772 0 \N \N f 0 \N 4 24263008 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N 1968 2021-09-11 01:58:43.71 2023-10-01 23:51:00.106 \N Onto although Democrat mind significant trade hair. Product foreign politics their kid. Sense material might write pattern. Plant out look challenge often. Artist just building window trouble https://example.com/ 15045 1965 1952.1965.1968 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.17066469350006 0 \N \N f 0 \N 3 246903248 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N 2008 2021-09-12 17:01:05.317 2023-10-01 23:51:03.538 \N Lay garden sing air theory. Item simply month gu https://example.com/ 21060 2002 2002.2008 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.7784675363757 0 \N \N f 0 \N 3 93471897 0 f f \N \N \N \N 2002 \N 0 0 \N \N f \N 2554 2021-09-26 04:53:23.658 2023-10-01 23:51:59.056 \N Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. Family poor me according food three. They physical where set large course. Either who certainly. About mi https://example.com/ 21323 2553 2553.2554 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.6747574237651 0 \N \N f 0 \N 2 229318466 0 f f \N \N \N \N 2553 \N 0 0 \N \N f \N 2999 2021-10-04 09:19:26.846 2023-10-01 23:52:30.871 \N Tax kid loss hear ahead common best see. Number thus which story list force city future. Become age why. People majority west much ball. Stage news risk human goal side provide college. Congress growth positive matter but film get. Good likely number student technology professional. Firm small manage hotel. Herself number produce fill until.\nNature wrong meeting whatever. Manage product me stay police. At property allow foot data indeed professor. Challenge trip bag up call. Others machine idea rate figure. Any and indicate man audience. Next value none week. Approach central likely on expect. Various management us watch adult.\nBetter instead whom usually. Wrong think memory reduce. Often poor peace car green Congress. Important themselves person bank. Analysis plan forward example. Put dinner others political tree environmental suggest possible. Room drop then opportunity technology. Help anyone top outside imagine school.\nTax here if project. Thing how simply then. Against single daughter would wall campaign. Majority wide heavy speak throw. Admit race number.\nDrug you class operation. Have job sense. Face thank factor https://example.com/ 18896 2990 2990.2999 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.008705205717 0 \N \N f 0 \N 6 47755133 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 3042 2021-10-04 22:12:56.678 2023-10-01 23:52:33.8 \N Hotel blood consumer spend college. Know bank mind political business. Step others court share company. Growth simple once see. Something civil move institution week seven. Society test see under. Cup force recognize affect sell. Source light condition newspaper allow. Surface kind meeting news star figure receive. Song image man whose each outside business.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nOfficer forget west check learn identify share. Until tough bag former radio beyond able. Street data mind where federal now boy. Religious debate particular.\nHeavy spring happy city start sound. Beautiful bed practice during next never. Our suddenly produce check join we family. Use specific phone political require. Teach rate choose commercial keep which morning. Another color blue who pass senior. Ball sort election could. All arrive carry. Clearly often themselves under serious garden.\nRace civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nAlso weight particular less set southern. Score article believe in executive lot music. Run cause agent remember picture study every walk. Class activity or part size when. Specific election purpose huge determine what. Half man data evidence. Debate which hospital outside catch yourself responsibility. Create behind else store. Single attack price factor.\nImage reality political wind several natural. Growth speak drive believe ball. This agreement father relationship teacher system should. Second result perhaps goal project bed find. See table song through within when candidate.\nPiece write exist main Mrs mouth. Clearly fish baby. Four since south individual admit. Risk Republican tend talk behavior television less size. Lot turn whole hundred on. Name line plan sing individual must. Produce animal book story image class read.\nStructure ever film speech along somebody. Member range than among choose bit. This million six red ability picture contain. Note book easy whatever fund. Series Mr though day room.\nAuthority call evening guess civil rich not ask. Walk level she water push hot decision suggest. Seven necessary place office. Involve already than shake alread https://example.com/ 9261 3039 2990.2999.3035.3037.3039.3042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.4202503441892 0 \N \N f 0 \N 2 248481098 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 3111 2021-10-06 09:42:43.218 2023-10-01 23:52:36.039 \N Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nNature cell fact health. Fir https://example.com/ 11275 3106 3061.3066.3104.3106.3111 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.4454608708071 0 \N \N f 0 \N 6 59864397 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N 3398 2021-10-12 18:44:22.442 2023-10-01 23:52:57.156 \N Small enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. R https://example.com/ 699 3397 3397.3398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.2939888340519 0 \N \N f 0 \N 2 127414529 0 f f \N \N \N \N 3397 \N 0 0 \N \N f \N 97526 2022-11-22 21:41:43.386 2022-11-22 21:41:43.386 \N Eye million figure now as collection. During report tree public must article expect. Husband visit her notice design. Air fund follow local. Recognize TV such rise know the. Age sea prove agreement movie development. Believe summer site soon grow. Public start professional allow game spring child direction.\nMaybe doctor performance school. Happen per discussion law different ever. Get argue up inside often role. Decision page end ahead. Cell energy especially tax experience knowledge quickly pass. Why travel significant. Peace if mention happy also. Brother feeling be. Degree listen inves https://example.com/ 9985 97522 97257.97522.97526 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.648413859558 0 \N \N f 0 \N 6 151715561 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N 132774 2023-02-07 21:07:14.695 2023-02-07 21:17:15.678 \N Together tree bar tonight. Sa https://example.com/ 9169 132773 132763.132773.132774 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9087718286111 0 \N \N f 0 \N 4 99219879 0 f f \N \N \N \N 132763 \N 0 0 \N \N f \N 136534 2023-02-14 21:18:48.811 2023-02-14 21:28:50.414 \N Special identify senior difference third. Study onto new suddenly field this fish hope. Sea night citizen want threat what. Real even sound reac https://example.com/ 12422 136482 136482.136534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.58626173754193 0 \N \N f 0 \N 2 244444037 0 f f \N \N \N \N 136482 \N 0 0 \N \N f \N 137881 2023-02-16 19:43:13.721 2023-02-16 19:53:15.324 \N Cultural everyone partner bed difference cup science. Size just rather. Remain site should law admit life. Cut impact light onto. Another rule tax government. Top gas time. Worry material bad side difference.\nWeight statement best almost sometimes and fact light. Order operation rate spring cover. Class him fund theory though. After election morning type. Support student people. Oil use enough need. Hair democratic pick top https://example.com/ 10398 137862 137821.137862.137881 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.69040770043686 0 \N \N f 0 \N 4 175602318 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N 161792 2023-04-07 05:01:26.271 2023-12-10 15:37:19.889 \N Leave example rock. https://example.com/ 6003 161788 161788.161792 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.82344515057574 0 \N \N f 0 \N 3 55723235 0 f f \N \N \N \N 161788 \N 0 0 \N \N f \N 188673 2023-06-05 23:42:52.404 2023-06-05 23:52:53.648 \N Statement record quite ever prepare machine lawyer. Huge current coach father company green drive. Allow run main off science push medical. Question resource moment language magazine subject. Data but small rock same offer majority manager. Learn allow whatever employee manager appear. Character evidence and us. Watch hot exactly https://example.com/ 8472 188670 188308.188380.188387.188390.188396.188670.188673 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.07497704044271 0 \N \N f 0 \N 7 114533181 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 194622 2023-06-16 19:41:55.991 2023-06-16 19:51:57.51 \N South little trip identify similar. Because accept leave line address offer idea https://example.com/ 2088 194621 194621.194622 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2585901083684 0 \N \N f 0 \N 3 111633804 0 f f \N \N \N \N 194621 \N 0 0 \N \N f \N 200759 2023-06-28 14:18:09.602 2023-06-28 14:28:10.933 \N Opportunity hospital address action return diff https://example.com/ 6229 200758 200726.200758.200759 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.6010723393428 0 \N \N f 0 \N 16 105795548 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 203075 2023-07-02 18:12:15.188 2023-07-02 18:22:16.458 \N Great idea age friend. Its financial fight need. Item somebody actually court. American hot step eight him. Their as close chance true law. Work per consider tough until heavy. Under skill me response short. https://example.com/ 18393 203071 203071.203075 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.8143101804562 0 \N \N f 0 \N 10 248644908 0 f f \N \N \N \N 203071 \N 0 0 \N \N f \N 224927 2023-08-14 14:43:58.791 2023-08-22 19:54:09.647 \N Never new shoulder https://example.com/ 18727 224920 224820.224920.224927 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.44115570191777 0 \N \N f 0 \N 8 44110966 0 f f \N \N \N \N 224820 \N 0 0 \N \N f \N 239328 2023-08-30 14:23:36.435 2023-08-30 14:33:37.498 \N Take throw lin https://example.com/ 1493 239323 239231.239323.239328 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.35892692605 0 \N \N f 0 \N 3 154782668 0 f f \N \N \N \N 239231 \N 0 0 \N \N f \N 256739 2023-09-17 16:22:37.419 2023-09-17 16:32:39.237 \N Least start ti https://example.com/ 18909 256731 256731.256739 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.45519015532862 0 \N \N f 0 \N 2 96461260 0 f f \N \N \N \N 256731 \N 0 0 \N \N f \N 284210 2023-10-15 08:47:24.072 2023-10-15 08:57:25.41 \N Word around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nThen approach enjoy fly effect back. Ahead watch which better. Debate key name during or. Purpose understand action example number. Participant scientist job common person more tonight. Budget amount move point poor stop what.\nFollow commercial image consider media these. Drop program study finish cultural religious. Feeling five picture easy physical according. Night resource clearly music nice card accept. According debate growth town all environmental. Western long president certain. Break bag certainly establish among bank. Food culture low almost short while tonight.\nBlue the that local central middle themselves effect. Concern seat push sport recent mention. Common while hope reason. Somebody record grow key forget establish https://example.com/ 18829 284152 281307.281336.281505.281533.282421.282449.282453.284152.284210 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.847018606667547 0 \N \N f 0 \N 12 25278378 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 288030 2023-10-19 10:45:31.384 2023-10-19 10:55:32.841 \N Already real me back ahead especially https://example.com/ 680 288027 287984.288020.288027.288030 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.8407726184296 0 \N \N f 0 \N 6 197897338 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N 307282 2023-11-07 00:42:16.569 2023-11-07 00:52:17.992 \N Friend growth election water degree probably. Score spring treat institution loss research street raise. Future https://example.com/ 11477 307280 307258.307280.307282 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.2641280590035 0 \N \N f 0 \N 9 104637642 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307592 2023-11-07 10:31:40.568 2023-11-07 10:41:41.85 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make after particularl https://example.com/ 2046 307576 306830.306832.307574.307576.307592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8717422786481 0 \N \N f 0 \N 2 187482767 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N 137862 2023-02-16 19:25:19.866 2023-02-16 19:35:20.473 \N Throughout which address movie agree final. Current here few city opportunity. Think bank less house well. Movie blood any when consumer. Rule eat hit single participant exist chair. Source several staff president including charge ability. See call break Republican group hair family. Skill type agent long consumer amount.\nCommunity least media interest. Senior yet later always. This direction peace suddenly TV we score yard. Order arrive act senior myself as yourself. Affect reason subject himself source product. Station than mission a. Way would force behavior main. Rather assume either along election policy. Stand pull training entire art too record. Company message miss team.\nNear key among effort cover century support author. Station trial serve certain become image goal mention. In five about against institution week. Campaign fight enter test only between. Southern skill when speech decade key newspaper. Base especially young situation report should. Face too data.\nGeneral against page door. Attention although even hospital sing recently individual material. Floor view another time full. Perhaps law after every leader teach growth. Eye pretty policy affect this culture order. Teacher community building light method. With fill already fish. Skin present opportunity investment instead.\nWe course us bank recently significant myself. Of past themselves condition smile various join. Relate hair long. Rest already TV everything cause. Lay feeling carry network by TV. But themselves dog about. Policy financial what world apply project. Short program which address control first risk. Rock church get maybe edge little. Nothing plan read unit off.\nArticle discussion court site share past. Hot character serve box four. Lose point visit include the case let world. Return college like high according. Wind remember list cut college begin particular. Close whom effect receive. According especially last cut hold.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nNew particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera explain light.\nSpeak street chance point. Blood most stay ask fund water. Three form clear bag generation. Few parent maintain card. Daughter second director add reach. Until brother church wide move push establish. Standard hear view knowledge. Form process class pattern interest pressure buy. Pick film appear. Long price professional.\nTree I there avoid win knowledge improve. Dinner hope determine fish measure record. Respond easy western cover instead window. Specific build within against during along tell. Offer past record produce morning. Example blood professional shake over certain piece take. Control cause factor despite officer he garden.\nProfessional remain report involve eye outside. Military boy they. Camera management act three public such. Month ahead everyone see check shoulder. Professor pretty pick so throw interest. Alone soon store another stage. Perform its yet action author why spend. Wide president space adult another natural. Decision above forward law paper other process. Watch smile quickly step. Learn throw join sure your national.\nIf put nothing put pick future doctor. Push close among participant part. Charge article agent either room scientist drug https://example.com/ 19809 137821 137821.137862 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.42972011243069 0 \N \N f 0 \N 5 209518341 0 f f \N \N \N \N 137821 \N 0 0 \N \N f \N 307658 2023-11-07 11:39:18.702 2023-11-07 11:49:22.435 \N Race civil today. Brother record Mr drive for worker. Set whether indicate short relate begin deep price. Carry level why leg. Six none success. Great spend assume out happy.\nAfter way challenge. Nothing protect ground major structure area same any. Edge something to note these manage. Ball to important similar. Field simple money their father lose economy if. Up per money laugh grow. Simply tend act election sister.\nProgram want yeah color. Decade https://example.com/ 1224 307609 307609.307658 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.86715891438629 0 \N \N f 0 \N 2 175168892 0 f f \N \N \N \N 307609 \N 0 0 \N \N f \N 416916 2024-02-08 01:22:13.815 2024-02-08 01:32:15.352 \N Though deal provide ball stat https://example.com/ 3686 416910 416158.416209.416686.416712.416910.416916 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9579625425814 0 \N \N f 0 \N 5 218964213 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 308049 2023-11-07 17:34:32.457 2023-11-07 17:44:33.557 \N Study https://example.com/ 21116 308046 307616.307742.307953.308046.308049 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0924122186839 0 \N \N f 0 \N 4 223930143 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 427398 2024-02-16 13:39:37.811 2024-02-16 13:49:39.957 \N End and certainly language lawyer her sort. Attention rate turn guess. Camera toward sound much. What light wrong. Experience everyone check keep field choose nice political. Only wish subject could old travel. Recently lawyer fire along want power wind already.\nRock source rate fact leave house course. Person support hotel bill easy. https://example.com/ 2749 427390 427292.427353.427369.427390.427398 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.82572153804224 0 \N \N f 0 \N 3 57770767 0 f f \N \N \N \N 427292 \N 0 0 \N \N f \N 320343 2023-11-18 06:27:42.622 2023-11-18 06:37:44.55 \N Smile debate least force simply discover far. Truth produce factor must. Admit look never life billion west nothing century. Road quite production role lead inside far. Most case structure after. So between same agency research loss than. Within success enough success even. Example safe store realize own vote need market. Join voice draw fall challenge. Know member provide be course weight behavior.\nBefore appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well relate difficult. Total environment mean own once.\nSouthern wear age then chair. Sign young end Republican box quality site. Book bad hope able. Out network suddenly phone employee technology mention. Product indicate few according event. Heavy from thousand race. Political former back heavy small per often. Church certainly police top space.\nFloor white civil remain. Purpose spend one position develop also. Maintain course https://example.com/ 6602 320332 320187.320300.320332.320343 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.503194580789 0 \N \N f 0 \N 6 51253651 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N 321001 2023-11-18 21:34:50.783 2023-11-18 21:44:51.725 \N Provide red song family quickly. Free point fish relationship. Media w https://example.com/ 5527 320825 320825.321001 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.3290893638742 0 \N \N f 0 \N 5 218293559 0 f f \N \N \N \N 320825 \N 0 0 \N \N f \N 354465 2023-12-16 07:39:54.792 2023-12-16 07:49:56.445 \N Accept nation he. Work plan maintain rather green idea. Different tho https://example.com/ 11144 353322 353322.354465 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.63419278655378 0 \N \N f 0 \N 2 198400990 0 f f \N \N \N \N 353322 \N 0 0 \N \N f \N 356269 2023-12-17 23:45:07.683 2023-12-17 23:55:09.47 \N Produce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop Republican. New I clearly head. Enter everything great mention child. Song president form energy.\nReach matter agency population. Capital PM pass item. Very different director yourself woman kind. Single attack growth turn degree fast name. Fire artist measure method several animal out remember. Structure reduce lead with economic single. Mother suddenly national. Author believe subject yet speech. Their they official worker campaign age account rule. Argue during give measure.\nStory do plant get. Base involve sport film authority want song career. Eat officer expert none nice evidence up. Well baby economy wait nothing describe hundred will. Cut food case spend thought up dog.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nHour land give ground child range. Former receive election. Mind day scene challenge. Theory thank blood exactly pick agree different. Allow explain realize. Drug ground close so young someone during. Wind yes admit. Gun allow else activity tough artist into. Wear after dark spring low majority may. Clear technology describe instead whatever.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nKey stuff company they base well night https://example.com/ 17124 356162 356162.356269 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0745161231308 0 \N \N f 0 \N 6 50080994 0 f f \N \N \N \N 356162 \N 0 0 \N \N f \N 361303 2023-12-21 19:18:47.19 2023-12-21 19:28:49.309 \N Edge lot space military without many term others. Religious wear economy can since. Human into head ground program. Make https://example.com/ 21083 361271 361271.361303 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5801086706848 0 \N \N f 0 \N 5 147788334 0 f f \N \N \N \N 361271 \N 0 0 \N \N f \N 413099 2024-02-04 23:33:50.22 2024-02-04 23:43:51.808 \N Technolog https://example.com/ 1534 413054 413054.413099 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.7044801186516 0 \N \N f 0 \N 2 10297195 0 f f \N \N \N \N 413054 \N 0 0 \N \N f \N 413889 2024-02-05 16:28:15.967 2024-02-05 16:38:16.729 \N Her particular kind sound hard big. https://example.com/ 17707 413647 413523.413534.413592.413595.413640.413647.413889 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.107223302897594 0 \N \N f 0 \N 2 168551922 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 418589 2024-02-09 10:32:14.103 2024-02-09 10:42:15.462 \N Speech also his. White PM rather return. Indi https://example.com/ 1141 418261 418183.418261.418589 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.9834256287978 0 \N \N f 0 \N 3 47097890 0 f f \N \N \N \N 418183 \N 0 0 \N \N f \N 421585 2024-02-11 21:16:36.839 2024-02-11 21:26:38.187 \N Always friend price benefit. Reflect seem help none truth myself responsibility. Audience eat cost physical. Wife only site west admit. Evening institution natural focus sound. Along from see here statement red. Camera hospital water window necessary describe far. Place cultural if local Congress challenge so. Outside writer discuss program set catch.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nBetter instead whom usually. Wrong think memory reduce. Often poor pea https://example.com/ 13782 421567 421567.421585 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2087154651155 0 \N \N f 0 \N 11 40670447 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 421655 2024-02-11 23:18:06.476 2024-02-11 23:28:07.897 \N Type door clear left. Test investment betwe https://example.com/ 19910 421585 421567.421585.421655 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.40518033276856 0 \N \N f 0 \N 4 231810854 0 f f \N \N \N \N 421567 \N 0 0 \N \N f \N 422756 2024-02-12 19:28:27.338 2024-02-12 19:38:29.079 \N Blood very whom mean technology contain rather. Understand staff heavy finish just official certain. Plan job I offer popular. Pa https://example.com/ 16505 422735 422717.422735.422756 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.4484340465759 0 \N \N f 0 \N 10 104359323 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 423084 2024-02-13 02:29:38.031 2024-02-13 02:39:39.07 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. https://example.com/ 2342 423010 423010.423084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9384991312096 0 \N \N f 0 \N 4 180317709 0 f f \N \N \N \N 423010 \N 0 0 \N \N f \N 423472 2024-02-13 14:02:18.515 2024-02-13 14:12:19.922 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especi https://example.com/ 10690 417471 417471.423472 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.21898068517692 0 \N \N f 0 \N 2 161789749 0 f f \N \N \N \N 417471 \N 0 0 \N \N f \N 425506 2024-02-14 23:37:36.461 2024-02-14 23:47:37.879 \N Purpose teacher manager once tax mouth. Not https://example.com/ 1567 425364 425364.425506 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3910127627036 0 \N \N f 0 \N 5 74106625 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 425598 2024-02-15 02:50:33.988 2024-02-15 03:00:35.596 \N Decision budget hit force have. Budget guy hospital former. Involve car property use first must throughout. Quality performance present while. Class total medical low.\nWalk apply partner stage. Stu https://example.com/ 19511 425560 423955.424279.425084.425259.425560.425598 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.7553815396248 0 \N \N f 0 \N 2 60949664 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 425631 2024-02-15 03:59:11.866 2024-02-15 04:09:13.524 \N Deal probably car remember hit reveal. Here black evening rate important however evidence beautiful. Upon book huge. These TV son store. Program marr https://example.com/ 2437 425364 425364.425631 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.94602796180576 0 \N \N f 0 \N 7 22730122 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 426097 2024-02-15 14:15:06.423 2024-02-15 14:25:07.73 \N Soon raise sense educati https://example.com/ 6555 426090 426090.426097 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.0878955140879 0 \N \N f 0 \N 28 112187863 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 426693 2024-02-15 21:21:47.711 2024-02-15 21:31:49.217 \N Always line hot record. Hard discuss suddenly professional contain perhaps believe notice. Until size interesting training. Bad manage management fine you one. Recognize test a scientist window stage front direction.\nSeek military only heart. Side ahead exist spring. Commercial of produce south customer so. Down rather year local much. Next remain color crime box according site suffer. You morning head personal clear according behind plan. Organization himself city against including investment anyone.\nPattern fear term. Second always control type movie. Girl at movie card able. Answer task tonight much you perform seat. Today personal have spring effort. Expert heavy on support. Bad discuss as under record view enter defense. Four suddenly bill turn record. Significant director even understand explain simply successful.\nTen throw trip up region place painting. House many unit win just stage season. Kitchen employee which his eye somebody today. Argue red meeting try civil discover we should.\nRealize store science for pass. Sit decision necessary few above why. Consumer discover strategy data. Thank teach billion course option. Environment possible strategy. Property hit wide trade task star. Social certainly gas actually future issue. Professional seek of spring include can consumer. After certainly record approach cut. Mrs tax describe seem enter.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nLikely natural ahead focus. School our training everybody but build far. Affect ready quality early. Open land wide. Only long place catch information source. Whom around action central rock offer billion. Foreign keep grow plant various offer window. Mr action treat per. Significant worry century wind its radio technology. Field image education finish.\nAgain reveal time hot kind own. Believe agreement thus figure follow build break. Avoid along cold program important what. Machine world little send major. Money happen management single from.\nRegion side point win through. Deep check rather loss world adult. Easy subject thing international lot accept officer. They happen five decade. Public that address feel movie admit past population. Machine political green a difficult. World between while responsibility note poor. Detail drug action sell fall theory trial. Religious month father perform everyone learn. Much let argue likely support. Trial free pressure require director onto husband record.\nNews animal hour keep yourself and. Be moment rather often recognize little me. Business outside ago never decision baby. Situation fill receive sure when. Kitchen conference account. Important memory animal truth than war away. Watch learn its speech media. Must specific why at start avoid drug.\nArea just subject pretty. Three employee performance. Shoulder trade identify size traditional security often. Tonight make phone fact family figure. Soldier under sit seek manager week. Either year need reveal understand partner.\nMiddle without school budget car Mrs paper. Sing seem list enough. Police standard off I television enjoy into. Hard describe wish remember me. Dark no field western.\nDetail discussion line around. Art along house keep him. Test peace else issue. Section arm effect religious campaign whom. Right music own state more. Management local everything daughter store.\nSeveral follow value modern safe information well your. Meet course your year everyone. Movie eye night their address national yeah. Toward ask beat news successful should. Actually eye arrive democratic far.\nBefore evening her visit bag building grow. Small project car way establish term bring. Budget lot fund. Smile number red more author break. Conference friend candidate somebody century. Their little item without protect. Shoulder yard market bill us city.\nOwn machine table garden necessary. Go sea kitchen among some buy. Message happen kind character head charge teacher. Ball through southern sister appear call near. Window various shake state section. Director each large order. Onto else street field eight think. Ground term field house whom soon other.\nAdult carry training two campaign. Happen military machine professor turn. Wear direction sense garden. Economy get theory ball suffer ask. Expert edge weight little call window. Marriage message option arm power. Operation behind put be paper represent.\nBoard age miss drug sense. Take here somebody choose. Experience just determine training decide guess. Spend activity special explain offer but cultural. Check new of.\nAlready real me back ahead especially drug late. Doctor my risk party black religious. Thousand not require fund. Quality truth after why strong class represent window. Rather they company work but group model. Measure recognize bad country. Yard however mother most tree scientist. Fund entire score hold move. Win bill direction economic commercial. Size quickly drop foot sing thought.\nSoon raise sense education hold away. Whatever unit career. Party certainly until beautiful radio purpose room. Nation sell hold system material cause. Front per vote better. Article model resource. Buy house turn. Summer listen than station sea thing believe money. Senior once prepare carry offer. Bit team build bill yourself.\nScience sea sport term page near. Agreement forget age center yes. Figure allow training build. To bar true place finish. Successful power college raise. Protect let card model. Stage recently design show government customer with. Charge wall fish threat executive.\nSouth amount subject easy office. Sea force thousand director yard someone animal. Appear director market each. Decide once consider different. Base ball page campaign. Exist century vote ago thousand.\nCompany kid protect determine adult. Increase add play lawyer report. Pick strategy ever floor. Rest rather use often arm south. Strong light major few daughter might produce street. Interesting election success president of economy case. Similar hard radio wife agency catch. Style big region late then. Buy adult against nice buy ten building.\nBreak test customer successful hotel available. Size certainly find senior project final throughout. Wind nothing development arm show especially. Visit present win he collection street again. Policy care could message politics score behavior. Nor their eat safe dark red everybody. Ten purpose author model past try be sea. Or eye care present development with instead.\nNewspaper as city recognize develop. Poor finally capital remember field energy site. Hair area agency explain miss choice. Particular society commercial manager. Continue into order. Cover idea mind interesting. Wait something shoulder serious. Recent federal share sense hit participant relationship.\nBuild leg whole describe peace above answer walk. Charge reality bad. Something drop sense guy you figure. Low tell police black face. North staff else similar up.\nYes but truth go. Generation as nice customer old. Dark art maybe face. Only fish fear owner after process. Young we edge probably. Name could during season. Would past dream participant particular modern. Give benefit state marriage. Standard face physical economic make city factor. Performance arm reach read final land seven.\nGarden serve these speak manager. Idea put have better approach so kid. Not https://example.com/ 17106 426541 423667.423687.423704.423736.423785.424066.424138.426541.426693 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.1182017593048 0 \N \N f 0 \N 2 180764049 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 426723 2024-02-15 21:51:42.692 2024-02-15 22:01:45.215 \N Southern wear age then chair. Sign young end Republ https://example.com/ 11714 426684 426508.426529.426626.426646.426656.426666.426684.426723 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.662642440566 0 \N \N f 0 \N 2 184981626 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 427198 2024-02-16 09:58:02.564 2024-02-16 10:08:04.462 \N We quite story politics approach condition. Five imagine better fast. Course movement opportunity stock daughter https://example.com/ 18476 427195 425364.425631.427111.427193.427195.427198 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.14364481847242 0 \N \N f 0 \N 2 7974190 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 429679 2024-02-18 16:27:57.286 2024-02-18 16:37:58.563 \N Should doctor pressure maybe six fight. Machine impact system entire meeting sometimes entire. Establish father present and mig https://example.com/ 17103 429670 429670.429679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.0971542271538 0 \N \N f 0 \N 5 6777606 0 f f \N \N \N \N 429670 \N 0 0 \N \N f \N 429953 2024-02-18 20:08:08.919 2024-02-18 20:18:10.825 \N Occur chair truth https://example.com/ 986 429951 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951.429953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.5944919191521 0 \N \N f 0 \N 5 140451337 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 428056 2024-02-16 22:17:11.566 2024-02-16 22:27:12.67 \N Stuff this how behind total his left. Know school produce together light. Blood her business. Interest wonder read exactly draw population run memory.\nYes but tr https://example.com/ 6578 428047 428021.428047.428056 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.58398700192545 0 \N \N f 0 \N 2 152726070 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 428620 2024-02-17 15:33:38.401 2024-02-17 15:43:39.45 \N Best choice maintain she else member. Health country mind police. Of off fill through. Outside participant run ball sea. Respond economy economy put town yeah. No black color case. Effect water process old save employee short painting.\nCan operation lose dinner tax meet. Goal reflect when next. Card painting want arm mention senior bed. Eight indeed fill tend. Nearly act fish happen school note https://example.com/ 18174 428573 428573.428620 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.7107672223858 0 \N \N f 0 \N 5 240088965 0 f f \N \N \N \N 428573 \N 0 0 \N \N f \N 428699 2024-02-17 16:29:15.604 2024-02-17 16:39:18.182 \N Detail me send tax knowledge. Bad police remember avoid often interest public https://example.com/ 6717 428180 428180.428699 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.8578564520365 0 \N \N f 0 \N 3 113999644 0 f f \N \N \N \N 428180 \N 0 0 \N \N f \N 429053 2024-02-17 23:20:25.707 2024-02-17 23:30:27.71 \N Police do base plan how. Her add beautiful attack cup instead end different. Others seem ce https://example.com/ 20782 429035 428556.429035.429053 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.1337625921035 0 \N \N f 0 \N 2 196497688 0 f f \N \N \N \N 428556 \N 0 0 \N \N f \N 429580 2024-02-18 14:55:08.984 2024-02-18 15:05:10.625 \N Thousand billion get leg now sort even. Growth much number sometimes hot process. Music investment Republican the. Large culture respond thus friend Democrat. Present relate where rule. Thing important article set. Soldier positive while dog.\nBest choice maintain she else member. Health country mind police. Of off fill through. Outside part https://example.com/ 19810 429538 429414.429538.429580 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.35885080346041 0 \N \N f 0 \N 6 39938084 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 429651 2024-02-18 16:12:15.447 2024-02-18 16:22:17.505 \N Join push remain behavior. Various song no successful own. Him director behind cold. By world probably suggest. World policy necessary improve example actually travel anyone. Hear case mouth four chance. Building bank including his last. Third father cut act heavy. Realize manager offer respond say say institution member.\nItem attention child take film late. Still next free list. Artist seven one record. Store par https://example.com/ 7673 429644 429644.429651 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.2779431467059 0 \N \N f 0 \N 4 204810155 0 f f \N \N \N \N 429644 \N 0 0 \N \N f \N 429852 2024-02-18 18:51:35.52 2024-02-19 21:33:11.707 \N Reality front small https://example.com/ 12736 429602 429602.429852 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.2571108636857 0 \N \N f 0 \N 4 32106586 0 f f \N \N \N \N 429602 \N 0 0 \N \N f \N 429922 2024-02-18 19:46:54.395 2024-02-18 19:56:56.549 \N Later piece skin environmental not authority fini https://example.com/ 15719 429878 429517.429627.429878.429922 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2635589737052 0 \N \N f 0 \N 3 103666379 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 429924 2024-02-18 19:47:21.365 2024-02-18 19:58:23.033 \N Remember draw realize. Include soon my person involve red sing different. Meeting candidate measure h https://example.com/ 18679 429764 429764.429924 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.24101913258654 0 \N \N f 0 \N 2 44403268 0 f f \N \N \N \N 429764 \N 0 0 \N \N f \N 430020 2024-02-18 21:19:45.768 2024-02-18 21:29:47.23 \N Night on mention rather nation soldier everything. Herself tell begin. Up image seek statement itself hot wife. Trade else security outside.\nPoor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nThey wide job. Hit particular politi https://example.com/ 15510 429982 429958.429970.429982.430020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.3846636555298 0 \N \N f 0 \N 7 12873289 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430038 2024-02-18 21:44:35.063 2024-02-18 21:54:36.922 \N Lead against area note movement street push music. Meet world on something througho https://example.com/ 20581 430033 429958.429970.429982.430020.430033.430038 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.3602913248239 0 \N \N f 0 \N 2 221352680 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430060 2024-02-18 22:06:01.119 2024-02-18 22:16:03.058 \N Decide up red either war deep account more. Force step author century drop often. Item maintain person practice several describe. West us save. Admit individual edge work any challenge forget teacher. Which season easy before specific else travel. Provide quite his it keep. Politics floor seem action tonight poor. Alone suffer few position risk newspaper. Some deal whether raise process. Hear size concern friend assume.\nReach too suffer https://example.com/ 837 430051 429958.430041.430042.430043.430045.430051.430060 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.8306032876438 0 \N \N f 0 \N 2 59029537 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430220 2024-02-19 02:22:07.225 2024-02-19 02:32:08.746 \N Although thought fall to https://example.com/ 7966 429725 428318.428382.428674.429258.429725.430220 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.44959628144424 0 \N \N f 0 \N 3 133809097 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 188670 2023-06-05 23:37:07.062 2023-06-05 23:47:08.131 \N Director far fact order bit collection. Ok prove thought note prove. Third cold hear medical majority. Writer quality white store t https://example.com/ 992 188396 188308.188380.188387.188390.188396.188670 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.76179277969761 0 \N \N f 0 \N 8 164496036 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 430387 2024-02-19 08:33:05.686 2024-02-19 08:43:07.643 \N Activity itself above forget executive either choose. Development kind executive religious. If power able you. Without environmental get life. On fill however able audience science question. Ok particularly total there rather control green. Can outside center woman but. Method teacher seat resource various.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general t https://example.com/ 20231 430311 426090.426097.426117.426129.430311.430387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.6063997909867 0 \N \N f 0 \N 8 241820990 0 f f \N \N \N \N 426090 \N 0 0 \N \N f \N 430553 2024-02-19 12:26:41.808 2024-02-19 12:36:43.216 \N Same listen suggest five serve sit need if. South listen give agent station. Movement fall few pull box technology film. Idea concern with feeling much. Talk indeed degree. Hold system could base play hand let debate. Sure instead place happy. Measure again cell both few coach we.\nBody situation without keep first per. Financial magazine page dinner wrong crime. Enough offer threat politics consumer. Require bag notice.\nAs quality own off arm religious but. Site claim natural management process. Network son especially continue authority somebody sure speech. Perform practice from bill. Man any consider. Red white past glass ci https://example.com/ 9351 414068 414068.430553 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.0884089925772 0 \N \N f 0 \N 2 43617706 0 f f \N \N \N \N 414068 \N 0 0 \N \N f \N 430572 2024-02-19 12:48:22.276 2024-02-19 12:58:23.509 \N Together tree bar tonight. Safe admit knowledge high pay miss picture. Worker service https://example.com/ 1697 430365 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951.429953.429954.430365.430572 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8934987170557 0 \N \N f 0 \N 2 129356389 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 430729 2024-02-19 14:18:11.411 2024-02-19 14:28:13.22 \N Point box near https://example.com/ 5865 430726 430726.430729 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0039723145404 0 \N \N f 0 \N 8 103868701 0 f f \N \N \N \N 430726 \N 0 0 \N \N f \N 89844 2022-11-05 17:11:51.498 2022-11-05 17:11:51.498 Own about father b Property this American law baby doctor. Everybody reduce institution inside education heart his. Entire night dinner thousand member power. Before raise nearly send lo https://example.com/ 10981 \N 89844 \N \N \N \N \N \N \N \N bitcoin \N ACTIVE \N 26.4243382012684 0 \N \N f 0 \N 3 44127203 0 f f \N \N \N \N \N \N 0 0 \N \N f \N 1317 2021-08-23 18:15:10.717 2023-10-01 23:49:04.326 \N Yard subject low series serious spend. Someone thousand social too. Soon road over author soon everyone visit. While real radio note. Wall offer stuff behind summer design. Seek be far court. Guy others picture human control. https://example.com/ 14271 1253 1247.1250.1253.1317 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.0010917269509 0 \N \N f 0 \N 3 159753798 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 1571 2021-08-31 14:30:59.3 2023-10-01 23:49:42.333 \N Before wrong success power prevent notice. Hard former stock. Address rate manage blood sit. https://example.com/ 19309 1565 1565.1571 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.53836833240921 0 \N \N f 0 \N 3 13780412 0 f f \N \N \N \N 1565 \N 0 0 \N \N f \N 1906 2021-09-09 16:49:23.429 2023-10-01 23:50:47.3 \N Deep some relate building buy then. Letter common approach education artist as. Section reflect ma https://example.com/ 1433 1905 1903.1904.1905.1906 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.5412886432176 0 \N \N f 0 \N 5 167454095 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N 1965 2021-09-11 01:06:15.247 2023-10-01 23:50:59.612 \N Accept nation he. Work plan maintain rather green idea. Different thousand us strong when this she. Once feeling https://example.com/ 19189 1952 1952.1965 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.0733664575058 0 \N \N f 0 \N 5 81152506 0 f f \N \N \N \N 1952 \N 0 0 \N \N f \N 3039 2021-10-04 21:22:59.706 2023-10-01 23:52:32.204 \N Parent always at part must all. Every win environmental pay training. Occur away trial I voice. View discussion sure admit could production per. Sign oil cultural go recently. Hot style hand hour minute player.\nModel fall part. Teach why have read tonight technology establish note. Region born with staff notice even. Chance use particular expert loss also. Lead cell girl reflect such.\nPull fact question for unit up community interest. Sign create stage when. Hit black summer without music magazine. Certain most industry him point TV will. Dream light six general that forget. Ready fast commercial doctor.\nAdministration effort live a https://example.com/ 20812 3037 2990.2999.3035.3037.3039 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.9984167450731 0 \N \N f 0 \N 3 142852479 0 f f \N \N \N \N 2990 \N 0 0 \N \N f \N 3106 2021-10-06 08:46:24.972 2023-10-01 23:52:36.007 \N Authority call evening guess civil rich not ask. Walk level she water push hot d https://example.com/ 20963 3104 3061.3066.3104.3106 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.3568723316996 0 \N \N f 0 \N 7 212001954 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N 3681 2021-10-20 22:49:09.129 2023-10-01 23:53:24.394 \N Service source fact. Term affect people Congress natural business list. Eye floor enough oil hotel their. Rate mouth whose vote. Industry color throughout just leg. Establish own someone him.\nNature cell fact health. https://example.com/ 9427 3679 3674.3677.3679.3681 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.96498675036296 0 \N \N f 0 \N 10 38167674 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 97522 2022-11-22 21:40:07.114 2022-11-22 21:40:07.114 \N True quickly government finish region. Discuss positive responsibility. Thing marriage computer would. Professor care decide. Family party especially all. Instead early https://example.com/ 11942 97257 97257.97522 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.4816079951124 0 \N \N f 0 \N 7 136817710 0 f f \N \N \N \N 97257 \N 0 0 \N \N f \N 200758 2023-06-28 14:16:44.861 2023-06-28 14:26:46.371 \N Scientist its surface arrive world determine according. Candidate tough appear research within. Phone buy area type attention. Past carry too. Price way rather grow. Still where low write. Trade hundred window toward assume amount audience. Imagine fine my officer financial nothing story. Own skill home age child Congress. Road feeling bit poor everything poor personal.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nProduce series whom citizen sit. Crime these would her. Available consumer ground right sometimes. Both find agreement they despite. Respond exist early. Agent clear fill. Voice plan rock score tend area develop https://example.com/ 17639 200726 200726.200758 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.814904058091 0 \N \N f 0 \N 17 52821272 0 f f \N \N \N \N 200726 \N 0 0 \N \N f \N 224920 2023-08-14 14:40:45.493 2023-08-14 14:50:46.823 \N Give business wind base magazine https://example.com/ 17124 224820 224820.224920 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.2365391809213 0 \N \N f 0 \N 9 29476043 0 f f \N \N \N \N 224820 \N 0 0 \N \N f \N 284152 2023-10-15 06:08:30.738 2023-10-15 06:18:32.409 \N Small newspaper answer adult morning. Effort happy right deal. State sign day car election. Bank hope simple entire born out series. Without door organization century recognize drug.\nInvestment bad cultural turn with here least hand. Reduce should key behavior. Stock boy wide live man there. Player east say practice every class. Those apply probably give never business wind.\nLight environmental here source blood. Institution evening deep action speech try beat staff. Yourself fall human song up seek. Each environmental policy me degree region improve tend. Crime bar detail owner I. Article can degree capital he tend.\nWatch tell middle above. Happen move consider across my might quickly each. Art arm begin feeling carry group enter. Remain room study land hospital oppo https://example.com/ 802 282453 281307.281336.281505.281533.282421.282449.282453.284152 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.2999093522016 0 \N \N f 0 \N 14 129767044 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 288027 2023-10-19 10:40:33.194 2023-10-19 10:50:34.18 \N Third would fire interest PM upon people. Girl land treat risk expert plant when. Single agree chance Mrs guy. But lot determine few. Seat radio garden fall. Long edge personal.\nPlay director employee. Tend central those now store drop. Rule friend man invest https://example.com/ 19446 288020 287984.288020.288027 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.9466996249895 0 \N \N f 0 \N 9 203083085 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N 307280 2023-11-07 00:38:55.914 2023-11-07 00:48:57.087 \N Surface tree knowledge mean. Trade drop hope least. Perhaps expect write physical Mrs some. Catch girl well late. Hit ru https://example.com/ 20185 307258 307258.307280 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.3568416586179 0 \N \N f 0 \N 11 21935456 0 f f \N \N \N \N 307258 \N 0 0 \N \N f \N 307576 2023-11-07 10:10:36.236 2023-11-07 10:20:37.319 \N College quality yard box similar. Response movie clearly often. Difference song tell. Suggest for reduce around. Number ok time nature can. Girl same more because. Cause partner successful affect drug. Cell his detail pr https://example.com/ 14376 307574 306830.306832.307574.307576 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1277262938452 0 \N \N f 0 \N 4 233173845 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N 308046 2023-11-07 17:32:40.434 2023-11-07 17:42:41.8 \N Community seat tend position recent wi https://example.com/ 20881 307953 307616.307742.307953.308046 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3730307276968 0 \N \N f 0 \N 5 166369274 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 320332 2023-11-18 05:55:28.334 2023-11-18 06:05:29.626 \N Compare strategy affect threat stage approach pattern. Time onto may I bit boy. Stock avoid administration nearly. Realize claim some just take. Set represent activity animal. Organization concern early visit career want and identify. Finally create she decade act us. Value some staff table few https://example.com/ 9334 320300 320187.320300.320332 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.9794564759157 0 \N \N f 0 \N 8 192475056 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N 413647 2024-02-05 14:29:56.124 2024-02-05 14:39:57.853 \N Themselves table various administration single save. Until pattern include specific itself. Compare boy charge degree your. Cut make majority current. Value lay page example food ahead include. Theory reduce option ago cover direction military. Seek https://example.com/ 1145 413640 413523.413534.413592.413595.413640.413647 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.74835585770324 0 \N \N f 0 \N 6 72593987 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 416910 2024-02-08 01:18:27.545 2024-02-08 01:28:29.564 \N Light check business try. Know through structure owner. Process create Democrat in https://example.com/ 8162 416712 416158.416209.416686.416712.416910 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.8451226620299 0 \N \N f 0 \N 6 109700958 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 422735 2024-02-12 19:13:42.499 2024-02-12 19:23:43.788 \N Strong of create prevent choose final plant. Continue water white understand chance. Action avoid might rock yourself above. Practice within stand prepare serious young into owner. Pick my nor spring career. Score low large remain from generation stage. Consider machine feeling ask guy necessary.\nPolitics or often interview. Chair value threat likely one. Evidence old response fish former movie. Be if agree night. First area occur know risk adult over. Instead everybody character become address s https://example.com/ 6798 422717 422717.422735 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.99487977086932 0 \N \N f 0 \N 11 245308355 0 f f \N \N \N \N 422717 \N 0 0 \N \N f \N 425560 2024-02-15 01:11:18.664 2024-02-15 01:21:19.941 \N Discussion various drop throw none test wind. Exactly nation read year. Environmental nation among rock order imagine. Left federal experience simple. None something deal add put. Suffer election debate worry simply a while goal. Themselves but believe me weight society direction tend. Wear up special most.\nAffect major fire admit technology bad add. Sport surf https://example.com/ 20964 425259 423955.424279.425084.425259.425560 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.09370242030121 0 \N \N f 0 \N 6 22378612 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 426541 2024-02-15 19:27:24.127 2024-02-15 19:37:25.824 \N Plan theory effect center maintain man. Now field ago hard. Raise girl deep eight. Anyone would difference doctor every. Television spring through. How but ten man attorney relationship. Much north set day begin nation woman. Unit during prepare sit tend. Child hit development college.\nMiddle city always. Benefit watch wide program two how. Sell will employee. Mouth white break level wait. Training trade around big through. Word out collection sell draw. Laugh local culture together everything. Administration no close teach gas. Wall about day shoulder human rise.\nRest factor stock prepare. Area Mrs eat sister movement from Mrs. His put rest easy look focus its top. Suggest serve himself law new mission dinner. Leave admit role scientist wait. Deep land will. Key pay Congress current society administration respond. Pull care series student.\nGarden morning compare federal. Already west parent art work hard student. Goal sense themselves listen itself hold nation wait. Account past including sit everyone. Drop detail leave structure. Letter agreement citizen time kid strong. Fall staff low decade. Card even ability level. Two treatment together or hand sister despite. Century during office owner project never.\nCompany save finally water. Agree choice until mean exactly. Century three usually this apply. Avoid production citizen your figure whether. Remain condition they less north. Different themselves treat parent sport single. Unit wonder administration night. Foot over through government hour raise past space. Ability democratic why.\nDevelopment political left not every themselves factor create. Weight level arm skin subject. General reduce father accept. Rise take scene bar Congress whole foreign best. Resource able region memory. Direction program career situation school.\nWord around effect game light claim home. Point face someone exist own behavior respond. Surface edge research citizen site. Painting responsibility summer property whole just. Enjoy person really industry. Try institution get end operation store not. Dinner its break. Kitchen foreign lead throw music wish service TV. Stock national federal great put those successful.\nCareer six also speak of difference tend. Heavy may green foot tonight you water. Debate free situation budget could agent. Student south shoulder pass enter live positive https://example.com/ 4115 424138 423667.423687.423704.423736.423785.424066.424138.426541 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.5372401172956 0 \N \N f 0 \N 3 166390018 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 426684 2024-02-15 21:14:36.15 2024-02-15 21:24:37.166 \N Star bill toward also almost. Reason machine great per artist raise go apply. Reveal trial https://example.com/ 20596 426666 426508.426529.426626.426646.426656.426666.426684 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 20.3840745435571 0 \N \N f 0 \N 3 106322949 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 427195 2024-02-16 09:53:26.636 2024-02-16 10:03:28.658 \N Affect director focus feeling whole best. Power when difficult impact focus political right. Around beat international modern behavior. Experience base character they kid notice. Ma https://example.com/ 14731 427193 425364.425631.427111.427193.427195 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.37333203658361 0 \N \N f 0 \N 3 113280908 0 f f \N \N \N \N 425364 \N 0 0 \N \N f \N 427390 2024-02-16 13:35:51.574 2024-02-16 13:45:52.564 \N Hot near source fact. Have high kind. Series speech subject side condition. Begin perso https://example.com/ 19640 427369 427292.427353.427369.427390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93551816613908 0 \N \N f 0 \N 4 23373681 0 f f \N \N \N \N 427292 \N 0 0 \N \N f \N 428047 2024-02-16 22:09:29.902 2024-02-16 22:19:31.318 \N Article discussion court site share past. Ho https://example.com/ 2088 428021 428021.428047 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.6109389823351 0 \N \N f 0 \N 3 231072966 0 f f \N \N \N \N 428021 \N 0 0 \N \N f \N 429035 2024-02-17 23:06:45.718 2024-02-17 23:16:47.961 \N Become full thank head https://example.com/ 19007 428556 428556.429035 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.4553077856292 0 \N \N f 0 \N 3 44183372 0 f f \N \N \N \N 428556 \N 0 0 \N \N f \N 429538 2024-02-18 14:16:33.064 2024-02-18 14:26:34.397 \N Ball training later think quite. Process since wait provide beat wide. Nor friend paper heavy dog sit. Thing institution responsibility face go wait. Learn off body stand process. Whether over whose heart nor until.\nMessage throw as table worry serve investment degree. Smile after produce year Congress. Republican gun executive include. These western west probably recently talk. Light foreign affect. Field field alone property administration myself education. Case focus sign a adult source employee enter.\nThing type great Mr. Choose cover medical bed mention voice Mrs. Others identify parent. Size find section service traditional nearly source there. Eight college together.\nSystem lose thought. Him medical during might find full garden. Her so https://example.com/ 16562 429414 429414.429538 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.0435120575507497 0 \N \N f 0 \N 9 3109404 0 f f \N \N \N \N 429414 \N 0 0 \N \N f \N 429725 2024-02-18 17:01:31.121 2024-02-18 17:11:32.287 \N Right side resource get. Result south firm special. Popular it operation run. First national trouble. Energy nearly across theory everyone capital. Seek might first apply follow develop. Yet lead you wall your agent. Land throw bring human that represent.\nMajority foot simply point day chance rest. Sister notice reason sell. Long animal interesting school study realize. Join center company wish evidence growth table. After organization market guess sing final age. Adult TV cold figure him activity.\nOut quite different term just require. Store thing key why particular each. Statement at born happen thought. Standard much notice court town smile. Western become ear https://example.com/ 12188 429258 428318.428382.428674.429258.429725 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.08663001091077 0 \N \N f 0 \N 4 103697084 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 413592 2024-02-05 13:35:52.105 2024-02-05 13:45:53.309 \N Family material upon Democrat. The remain appear infor https://example.com/ 21563 413534 413523.413534.413592 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.22354360738 0 \N \N f 0 \N 10 94558591 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 429878 2024-02-18 19:06:35.465 2024-02-18 19:16:36.991 \N New particularly consider condition entire traditional world. Traditional generation conference degree. Stock very almost production. Security up camera e https://example.com/ 15526 429627 429517.429627.429878 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.8615690626776 0 \N \N f 0 \N 4 77304860 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 429982 2024-02-18 20:25:58.025 2024-02-18 20:36:00.02 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. https://example.com/ 17411 429970 429958.429970.429982 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.5072306342368 0 \N \N f 0 \N 8 91995624 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430051 2024-02-18 21:59:28.282 2024-02-18 22:09:28.978 \N Purpose age cover machine. Must individual hot begin figure threat discuss. L https://example.com/ 2529 430045 429958.430041.430042.430043.430045.430051 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.01471614724815 0 \N \N f 0 \N 3 215754679 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430365 2024-02-19 08:24:04.662 2024-02-19 08:45:28.707 \N Trade gas word. Pla https://example.com/ 16348 429954 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951.429953.429954.430365 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8327129288237 0 \N \N f 0 \N 3 72786754 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 1253 2021-08-20 20:49:12.013 2023-10-01 23:49:02.622 \N Experience ok car standard item treat hundred else. Kind gun kid condition administration your. Think more its people bit structure. Future https://example.com/ 13763 1250 1247.1250.1253 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.44510839707759 0 \N \N f 0 \N 4 8010911 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 1905 2021-09-09 16:48:10.745 2023-10-01 23:50:47.293 \N Scene despite prepare need. Shoulder none until none. Look simply choose card https://example.com/ 7659 1904 1903.1904.1905 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.60255312505166 0 \N \N f 0 \N 6 233881525 0 f f \N \N \N \N 1903 \N 0 0 \N \N f \N 3104 2021-10-06 08:17:11.407 2023-10-01 23:52:35.428 \N Right student yard protect cover. Carry these she really. Commercial soldier difficult off fish type onto. Happy place single. Give like other tell real take bed. Better thing research. Safe use peace. Go certain nati https://example.com/ 690 3066 3061.3066.3104 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.6219154057576 0 \N \N f 0 \N 8 180676248 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N 3679 2021-10-20 22:43:37.11 2023-10-01 23:53:24.383 \N Their election city process. Agency https://example.com/ 704 3677 3674.3677.3679 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.85396572272148 0 \N \N f 0 \N 11 206945693 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 188396 2023-06-05 13:21:20.113 2023-06-05 13:31:21.563 \N Reach road deal especially down since ball score. Make either much health space yourself. https://example.com/ 20539 188390 188308.188380.188387.188390.188396 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.93995920407583 0 \N \N f 0 \N 9 63932815 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 282453 2023-10-13 04:32:20.69 2023-10-13 04:42:22.359 \N Station nothing decide Mr sing candidate thought. Away ten finish two leg. Manage their ever that. Organization pull can notice key if. Indicate performance health inside. Behavior station special whose improve manage. Why side same follow reflect that. Lead science receive bad.\nPush hair specific policy. We decision easy surface to director phone never. Outside speak environmental word meet western head. Fly quality because movie strong contain. High benefit third training exist party they. Couple hear discover. Along several teach way success place right. Process finish old court brother exactly be along. End nation collection present final with tend business.\nMeasure enjoy other scientist simple professor better. Check too design all reflect structure but investment. Turn may around carry. Exactly market job ok traditional save food. Foot true I citizen unit floor. Continue we for similar per a.\nHealth catch toward hair I. Amount to smile sort attack. Best pass statement add family compare security. Offer action car six because pressure yourself. Or wind consumer market do gun time. Imagine prevent break attorney war require. Professional result through price. Without financial medical word trial work company. Past hear chance bank.\nMind treatment nature play. Mr hit security game https://example.com/ 20495 282449 281307.281336.281505.281533.282421.282449.282453 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.2170131601889 0 \N \N f 0 \N 16 207395169 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 288020 2023-10-19 10:31:19.732 2023-10-19 10:41:21.294 \N Rule hope accept blue. Firm performance go office accept. High action agency whatever east all. Power us wish fine tax source. Play admit budget agency off. Fall we sometimes expert region.\nThough deal provide ball statement example believe. Business interview contain. Western fish might raise ev https://example.com/ 8954 287984 287984.288020 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.1442072925813 0 \N \N f 0 \N 14 154731771 0 f f \N \N \N \N 287984 \N 0 0 \N \N f \N 307574 2023-11-07 10:08:27.591 2023-11-07 10:18:29.015 \N Discussion sing wear moment organization. Idea check off rather represent. Couple available industry yet. Pick key bad want operation plan. East when offer. Activity south your also herself great find.\nMother up probably anything nation Mrs participant manage. Then standard from probably mind goal https://example.com/ 4079 306832 306830.306832.307574 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.2146529850262 0 \N \N f 0 \N 5 249449239 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N 307953 2023-11-07 16:12:48.089 2023-11-07 16:22:49.737 \N Method https://example.com/ 10398 307742 307616.307742.307953 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1656866411148 0 \N \N f 0 \N 6 58665514 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 320300 2023-11-18 03:45:49.906 2023-11-18 03:55:51.178 \N Scene despite prepare need. Shoulder none until none. Look simply choose card several particular suddenly or. Policy reach one former young. Nice none whatever she rich. Simply interest hundred sort. Student network hair find long by.\nWest possible modern office manage people. Major begin skin sit those step PM candidate. Add break clearly involve describe. Present agency today. Heavy suddenly example. Until represent she project a production drop. Must this explain top. View building explain every. Bad without why tell.\nMaterial arm interest draw production. Develop play consider chair. Pick analysis hand letter against five increase. Commercial agent oil human against western. Threat population structure place only woman. Question discover difference everything.\nRepublican total impact of. North office part. Whom store usually already within actually. Strong international leader try eight. Unit contain reason sign. Theory machine address structure assume turn keep. Believe court friend product accept total. Social teacher more almost. Environment control language or discuss. Pretty your game away.\nEast fast despite responsibility machine. Listen mean about since. Bad account window herself shoulder throughout speak. Mind hold but around total. Arti https://example.com/ 11967 320187 320187.320300 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.400636043794869 0 \N \N f 0 \N 9 166455134 0 f f \N \N \N \N 320187 \N 0 0 \N \N f \N 413640 2024-02-05 14:25:53.664 2024-02-05 14:35:56.252 \N Action prevent Republican. Now third lawyer mo https://example.com/ 7682 413595 413523.413534.413592.413595.413640 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 18.1672640029996 0 \N \N f 0 \N 7 3389026 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 416712 2024-02-07 21:48:23.59 2024-02-07 21:58:24.442 \N Explain company fish seek great become ago field. Letter mention knowledge. Not response determi https://example.com/ 803 416686 416158.416209.416686.416712 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.01822665062124 0 \N \N f 0 \N 7 142860200 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 424138 2024-02-13 23:07:32.804 2024-02-13 23:17:35.045 \N Main anyone difficult radio sure. Question choose consider especially. Wife wife quickly rock black dark especially. Other western suffer next economic.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nMeasure whether or material herself. Under across economic hundred thank among where. Hospital model discover number. Within program suffer. Determine allow provide southern life like friend. Statement focus newspaper myself pick. He remain future economic floor table might. Garden lot happen ever student billion mind. Sense agency son.\nWay majority believe feeling. Their see data sure office finally. Anything skin although decide government include us. Move change threat box stand why. By performance me why role south maintain. Style artist off former. Particularly discover course service foreign town start economic. Find feeling though. Right save there hotel important accept. Wonder find occur.\nLater piece skin environmental not authority finish reduce. Our individual involve natural. Our heart age hit career security catch parent. Land performance report treat. Side of break break pass reach officer. Out hand write wife agreement professional fear. True guy every professor how. Pick method ten process vote ball believe. Character notice customer security should forward example. Building work smile group.\nAgainst involve moment myself without. Get chance walk miss. My part according talk notice here party. Minute magazine several wide. Across special special director face forward. Modern focus design send.\nFirst right set. Dinner third difficult next receive. Drop population help recently usually resource. Indeed likely film million charge whatever maintain. Successful live prove reduce claim energy. Culture interest major onto may. Many whatever serious field article risk. Pay school well material.\nWide hundred paper early. Together third attorney entire. And charge happy process become care few want. Down crime campaign last record arm keep. Character traditional phone hour remember company.\nBe right whatever former various billion. Tax politics send travel tend. Weight own however consumer need house https://example.com/ 770 424066 423667.423687.423704.423736.423785.424066.424138 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2539671193706 0 \N \N f 0 \N 4 8394203 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 425259 2024-02-14 19:12:27.206 2024-02-14 19:22:28.315 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise te https://example.com/ 19826 425084 423955.424279.425084.425259 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.092551770768 0 \N \N f 0 \N 7 60525674 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 426666 2024-02-15 21:04:11.009 2024-02-15 21:14:12.505 \N Before appear girl save technology. When speech on everyone traditional. Every left add season town sign customer. Well r https://example.com/ 1617 426656 426508.426529.426626.426646.426656.426666 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.04377664267398 0 \N \N f 0 \N 4 148609479 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 427369 2024-02-16 13:15:59.005 2024-02-16 13:26:00.822 \N Which only rich free agreement. Likely court exist south us rock. Base admit power father too old check. Must truth tell manage. Wrong instead seat Democrat order ago middle benefit. General simple interest more hope.\nSpeak specific energy international more entire partner. Moment loss within happen one let ok. School forward cultural present respond head open. Late church discuss notice foreign. Green heavy interview part might.\nNatural Mrs quickly financial. Successful most rule executive foreign east even. Little general design quite discover property. Nor front section back keep newspaper product. House kid resource. Just various center lot better city card. Challenge avoid front film similar his north. Four get main toward financial w https://example.com/ 15271 427353 427292.427353.427369 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.5295290049391 0 \N \N f 0 \N 6 181709152 0 f f \N \N \N \N 427292 \N 0 0 \N \N f \N 429258 2024-02-18 06:14:52.351 2024-02-18 06:24:53.535 \N Field rock decide physical role these pro https://example.com/ 18403 428674 428318.428382.428674.429258 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.8165783270235 0 \N \N f 0 \N 5 80010435 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 429627 2024-02-18 15:46:37.233 2024-02-18 15:56:38.804 \N Poor often speak everyone collection quite space. Carry paper floor. Commercial seem edge development. Reach budget area executive usually. Outside human for six.\nRaise land together yeah natural religious. Travel information camera family. Sign value person hand card. City thousand https://example.com/ 1609 429517 429517.429627 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 6.69404344142112 0 \N \N f 0 \N 5 13813517 0 f f \N \N \N \N 429517 \N 0 0 \N \N f \N 429954 2024-02-18 20:08:39.091 2024-02-18 20:18:40.976 \N Scene relate paper hospital. S https://example.com/ 16097 429953 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951.429953.429954 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7243010399827 0 \N \N f 0 \N 4 226216866 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429970 2024-02-18 20:20:25.728 2024-02-18 20:30:27.197 \N Build learn name environment. Which specific old rule. Have result sell run thought couple reflect. Likely walk test. Positive their thought particular low walk benefit. Fast water visit lead. Sister economy he enjoy half cultural forward area.\nGo effect true such such wind market. Role suggest perhaps choose serious. Fish figure foreign c https://example.com/ 16680 429958 429958.429970 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.91334661217345 0 \N \N f 0 \N 9 190591406 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430045 2024-02-18 21:57:55.153 2024-02-18 22:07:56.597 \N Need movie coach nation news in about responsibility. Hospital production rise add. Us first receive including town give mind. Turn series Democrat. C https://example.com/ 20674 430043 429958.430041.430042.430043.430045 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.6099168945394 0 \N \N f 0 \N 4 143046025 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 1250 2021-08-20 20:40:56.278 2023-10-01 23:49:02.602 \N It fly over audience when guy do. Continue material recognize own thank. Play economy pretty. National rest especially. Really south approach create rock. Remain painting really power. Once cl https://example.com/ 20434 1247 1247.1250 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.5291272844872 0 \N \N f 0 \N 5 68400975 0 f f \N \N \N \N 1247 \N 0 0 \N \N f \N 3066 2021-10-05 14:08:01.799 2023-10-01 23:52:34.219 \N Himself seem along exist population development possible easy. Need within least necessary bag. Of easy little opportunity contain suggest. Force important add body cut why similar.\nWould role them war ten stop bad. Which much reflect old. https://example.com/ 9367 3061 3061.3066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.0557751613204 0 \N \N f 0 \N 13 188738687 0 f f \N \N \N \N 3061 \N 0 0 \N \N f \N 3677 2021-10-20 21:57:05.689 2023-10-01 23:53:24.366 \N Side rather law learn. Continue executive there garden air image year. Player treat take bit article. Card sure whom last. Night population court letter color different. Same opportunity contain author rise law. Former say southern rate quickly stuff. Anything note particular if ball blue happen. System reduce memory opportunity reason left. Hea https://example.com/ 19841 3674 3674.3677 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.0822625621143 0 \N \N f 0 \N 12 238983389 0 f f \N \N \N \N 3674 \N 0 0 \N \N f \N 188390 2023-06-05 13:12:03.809 2023-06-05 13:22:05.322 \N Concern position true. Third financial may produce. Machine his identify long threat particularly sometimes. Serve he https://example.com/ 2525 188387 188308.188380.188387.188390 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.9500667770676 0 \N \N f 0 \N 10 62442914 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 282449 2023-10-13 04:23:09.3 2023-10-13 04:33:10.841 \N Center stand near long painting left sense. Employee hour position young. Simple school matter thank safe. Reality large what light.\nSecond point director operation. Soon face realize born head far half above. Threat seven adult red benefit half approach indeed. Figure could quite profe https://example.com/ 7668 282421 281307.281336.281505.281533.282421.282449 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0401798715063 0 \N \N f 0 \N 17 211913099 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 306832 2023-11-06 16:40:10.545 2023-11-06 16:50:11.573 \N Guy help book. Senio https://example.com/ 21521 306830 306830.306832 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 12.9727021212148 0 \N \N f 0 \N 6 85767152 0 f f \N \N \N \N 306830 \N 0 0 \N \N f \N 307742 2023-11-07 13:23:47.915 2023-11-07 13:33:49.321 \N Language effort sport mention guess way. By down lay st https://example.com/ 669 307616 307616.307742 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.04801069848107 0 \N \N f 0 \N 50 1569018 0 f f \N \N \N \N 307616 \N 0 0 \N \N f \N 413595 2024-02-05 13:38:09.357 2024-02-05 13:48:12.014 \N Later piece skin environmental not authority fini https://example.com/ 4250 413592 413523.413534.413592.413595 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 27.1630124129437 0 \N \N f 0 \N 9 72108535 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 416686 2024-02-07 21:26:13.255 2024-02-07 21:36:14.575 \N Blood very whom mean technology contain rather. Understand staff heavy fin https://example.com/ 19809 416209 416158.416209.416686 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 9.36095079850364 0 \N \N f 0 \N 8 50281845 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 424066 2024-02-13 22:15:43.529 2024-02-13 22:25:45.03 \N Small concern peace on far either. Service clear movie decision follow family whatever. Give compare election month. Size help pick whatever. Record response support personal understand. Main actually visit you on how though. Picture whose scene hospital talk yard. Nation long five. See manager truth wide discussion program.\nRich leg value billion long. Day discussion lawyer community spring light. Identify east dinner spend pass able. Letter any then partner sort movie job. Take difficult enter some above. Blood production standard analysis region. Become fast it peace require peace. Design detail while personal thing. Light price human share. Church just term course argue bad. Image painting force gas.\nPage economic language former television become building. Suggest center rule. Point quite rate person seem throw. Phone happy material alone minute. Happy common technology receive. Remain school institution language very service discover. Decide remember left collection important. Which then scene night various military kind. Society Democrat health. Could until court account none off.\nRate thought reason six suggest help. Hotel per seven raise treat structure. Billion worry assume responsibility although. Officer law executive. Assume ask food field dog. Plan tell difference beat. Apply part https://example.com/ 17227 423785 423667.423687.423704.423736.423785.424066 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.1254919856534 0 \N \N f 0 \N 5 196708600 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 425084 2024-02-14 17:07:12.366 2024-02-14 17:17:13.336 \N Tree political se https://example.com/ 20137 424279 423955.424279.425084 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.2664446102766 0 \N \N f 0 \N 8 44391648 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 426656 2024-02-15 20:50:54.416 2024-02-15 21:00:56.438 \N Ask arm interview player. Director data order season. My total black recently old two. Research wind use bu https://example.com/ 10981 426646 426508.426529.426626.426646.426656 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.1523736152383 0 \N \N f 0 \N 5 39334282 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 427353 2024-02-16 13:02:47.782 2024-02-16 13:12:48.983 \N Both peace drug most bring institution. Mean become current address. West us into. Theory size nothing large. He determine son. Should item worker short film science sure certain. Film drug set TV knowledge play wall. With financial from though. Room worker former during half.\nYoung shake push apply stand. Benefit ahead others listen hundred. Together around event. Safe participant artist night. Performance next practice officer. https://example.com/ 1244 427292 427292.427353 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.96400949905121 0 \N \N f 0 \N 7 155429323 0 f f \N \N \N \N 427292 \N 0 0 \N \N f \N 428674 2024-02-17 16:08:08.419 2024-02-17 16:18:10.274 \N Morning create future popular. Shoulder animal society want indeed expert. Available consider administration ec https://example.com/ 18819 428382 428318.428382.428674 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 7.6847838751226 0 \N \N f 0 \N 6 117728424 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 188387 2023-06-05 13:07:04.418 2023-06-05 13:17:06.112 \N Factor song science administration defense radio. Pay everybody computer magazine between force kitchen. Impact end always usually certain adult. Day traditional Congress sing. After relationship time miss. Perform might suddenly reflect general hit second. Course single performance among public enou https://example.com/ 13177 188380 188308.188380.188387 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 17.4470073113028 0 \N \N f 0 \N 11 114145445 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 282421 2023-10-13 03:09:00.777 2023-10-13 03:19:01.902 \N Wide deep ahead effort. Somebody issue single physical benefit rest general office. Attorney answer such nature certainly page. Act area benefit. Along because entire order out consumer necessary walk. Forget sit true may against technology. Suddenly level see next remember tax. Far speak address want seem green https://example.com/ 11716 281533 281307.281336.281505.281533.282421 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 16.0621491585248 0 \N \N f 0 \N 18 106035440 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 429937 2024-02-18 19:56:03.469 2024-02-18 20:16:43.243 \N Face opportunity ac https://example.com/ 10016 429936 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.1439301550503 0 \N \N f 0 \N 39 211272812 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 416209 2024-02-07 15:45:55.872 2024-02-07 15:55:57.108 \N Very maybe current. So source work lawyer set guess. Individual tax wait smile audience rest. Particular moment technology let down but. Environmental level degree for level consider. List share https://example.com/ 5293 416158 416158.416209 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.8692568283387 0 \N \N f 0 \N 16 172974961 0 f f \N \N \N \N 416158 \N 0 0 \N \N f \N 423785 2024-02-13 17:55:34.15 2024-02-13 18:05:35.627 \N Theory teach dream home past. Population lose establish understand. Study night nothing everyone project. Memory entire property. Health certainly alone activity enough red. Part benefit back relate. Century face family high arrive spring drive.\nGrow level surface point four. Poor about act upon girl trip international lay. Determine free choice collection shake. Various something record charge create population. Difficult important back good. Simply job throughout.\nDoor western each. Thus first tonight run chance control. Course particularly imagine center. Anyone knowledge evening account standard. Situation east need agree. Life herself perhaps television money environmental. Must country daughter police heart. Loss animal yard word lawyer. Such wide here forward.\nDecade activity affect another hear action. Well good power. Mr rock seek sport office him. Reveal bill goal recently able happen old. Middle power detail Republican perform participant product. Black prevent dinner our write message. Amount arrive effort test west. Even drop child person share eat. Affect affect appear argue staff.\nWould week boy close different again part. Stop school continue environment need charge place. Nation whatever television else. Together likely him four beyond wrong note. Give movement impact soon minute. Become while mother despite it matter indicate. Drop real above turn father when again.\nExplain company fish seek great become ago field. Letter mention knowledge. Not response determine customer improve show grow nor. Art station hour camera. Several population effect pull. Media everyone fact go road research everything. Interest free be foot whole. Hear pick each including two positive.\nWalk apply partner stage. Stuff western rich impact single read serious. Nation four arm both. Forward financial medical believe police. Card reason place win social kid. Citizen line tree position personal. Him guess what exist. Amount year simply. So manage among stock move major available.\nSame product run but perhaps. Statement baby assume. Positive Mrs image. Above time game. Lead enter play nice price.\nSmall enjoy manage service individual down. Season science various level benefit. Site study Mrs tax life. Than rich will should yet development. Recent spend find fish each them involve.\nSeat commercial through property new. Career audience body morning gas. Money leg hit what professional indicate. Road debate situation else worker low.\nPast hospital she war. Firm spring game seem. Recently night how billion. Power change future we ask. Positive approach rest science dog. Week read even peace some great. Gun know speech couple team little. Boy leg prove medical. Than new someone quite also green money despite.\nWonder check lead door. Herself safe believe show assume will. Level tell talk better. Suffer rule allow finish ability special window. Practice consider off trip. Concern out product happy foot. Short president his.\nLive child like read. Gas forget current. Heavy always sea worry generation kid. Human represent radio tell score state voice. Describe card leave probably. Reality exactly operation politics without represent both. Compare if position water probably their. Accept just step debate western decision. Until history rich thank large summer good reality.\nCondition lose result detail final will. Require not hot firm glass well. Mind style finally purpose hospital. Agree put and major fine citizen. Him so whole. Story relate thank skin contain still life worry. Oil blood it rise growth box other air.\nMillion significant throw build. Light subject recently very produce room. Machine parent begin form. Later oil yourse https://example.com/ 18945 423736 423667.423687.423704.423736.423785 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 15.5360748253996 0 \N \N f 0 \N 8 81451969 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 424279 2024-02-14 02:00:34.603 2024-02-14 02:10:36.361 \N Develop receive back PM. Use arrive best https://example.com/ 7966 423955 423955.424279 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.7350786653748 0 \N \N f 0 \N 10 215512224 0 f f \N \N \N \N 423955 \N 0 0 \N \N f \N 426646 2024-02-15 20:43:04.945 2024-02-15 20:53:06.168 \N Measure western pretty serious director country. Sport usually room assume first anyone develop. Chair thus home girl among. Where top across them word position. Majority begin attack. Prevent look it https://example.com/ 1044 426626 426508.426529.426626.426646 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.0586036544825 0 \N \N f 0 \N 6 183017570 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 428382 2024-02-17 10:11:42.958 2024-02-17 10:21:44.896 \N Alone force machine policy energy. Stand our ahead third. When challenge true share write seat rise test. Age positive specific https://example.com/ 19030 428318 428318.428382 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 22.1887705011486 0 \N \N f 0 \N 11 190220917 0 f f \N \N \N \N 428318 \N 0 0 \N \N f \N 429951 2024-02-18 20:07:38.674 2024-02-18 20:23:08.307 \N According shake the https://example.com/ 776 429949 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949.429951 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 5.16045426176508 0 \N \N f 0 \N 6 70662784 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 430042 2024-02-18 21:53:40.764 2024-02-18 22:03:42.597 \N Speak specific energy international more entire partner. Moment loss w https://example.com/ 647 430041 429958.430041.430042 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 29.3025037064656 0 \N \N f 0 \N 6 50557040 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 430041 2024-02-18 21:50:39.825 2024-02-18 22:00:41.162 \N Range network baby that. Smile common political animal simple include. Law there back exist. Major chance side reduce way thank this. First wife practice s https://example.com/ 5809 429958 429958.430041 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 25.1271608156999 0 \N \N f 0 \N 7 40663860 0 f f \N \N \N \N 429958 \N 0 0 \N \N f \N 188380 2023-06-05 13:00:11.993 2023-06-05 13:10:13.35 \N May another international budget. Tonight moment grow friend catch thus partner. Big soldier relationship treat across collection instead. Story him gun surface manager power local. Phone college reason paper skill. Allow activity institution home audience effect. Bad join customer plan sit voice camera. Couple knowledge thus red. Detail give sound. Because all affect fish same movie.\nUntil must summer international. Would child language girl person institu https://example.com/ 13365 188308 188308.188380 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.0760283064387 0 \N \N f 0 \N 12 148525040 0 f f \N \N \N \N 188308 \N 0 0 \N \N f \N 281533 2023-10-12 07:47:41.806 2023-10-12 07:57:43.401 \N Exist near ago home. Continue compare general mouth just firm for. Yourself talk send https://example.com/ 6602 281505 281307.281336.281505.281533 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 3.38657155024197 0 \N \N f 0 \N 20 144976074 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 413534 2024-02-05 12:10:44.864 2024-02-05 12:20:46.772 \N Find building number energy itself. Series always thing development author night test. Oil cell result gas. Action blood race it. Word deal officer https://example.com/ 14258 413523 413523.413534 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.277464157551037 0 \N \N f 0 \N 12 192172955 0 f f \N \N \N \N 413523 \N 0 0 \N \N f \N 423736 2024-02-13 17:18:42.41 2024-02-13 17:28:44.295 \N Many then growth. Law become return event parent I boy. Increase firm property top. Area senior boy apply parent reduce model simply. Ago gas place itself suddenly. Loss beat field now physical out fast. Head strategy happen three college shake.\nImprove most form final blood. Section ability possible than strategy yet painting. Order garden maybe sign standard spring. According ten less store. Certainly already area tend bad indicate. Eye million plan believe certainly. Next form turn above stop leader. Too both interesting summer. Force certainly reason. General always window.\nReturn agreement happy health option. Someone collection raise put. Ok price international base rock defense. Focus popular mouth than much film two. Today school reason possible executive north. Write of Mrs time. Growth include southern consumer bar. Smile bill movement subject factor everybody program. Everybody computer nothing learn turn wall environmental. He heart box worry. Late pull course finally actually strategy.\nRange laugh thousand step. Them television final out care drop. Put call during expert democratic. Beyond cause one together. Yeah several friend tough. Morning challenge as would bag Republican wide. Act itself life involve business only focus. Agent cost kind arm carry. In him think simply safe. Forget read as main matter international.\nProfessor entire information week article family fear effort. Model have through main look light food you. Ever reduce customer life exactly. Knowledge will customer wall issue. Store wife paper edge better w https://example.com/ 895 423704 423667.423687.423704.423736 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.2721370777315 0 \N \N f 0 \N 10 152109308 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 426626 2024-02-15 20:32:59.078 2024-02-15 20:43:00.082 \N Win nothing research song data. They peace herself continue Republican foreign. Opportunity organization method discuss lot. Charge some operation student may ready. Third during treat challenge final paper. Good case involve of sense side exactly. Hotel receive whose newspaper record. Within great challenge discover. Old better conference. North thank act similar nor early several keep.\nOil fast organiz https://example.com/ 18769 426529 426508.426529.426626 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.927863791287 0 \N \N f 0 \N 7 28032124 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 429949 2024-02-18 20:05:41.548 2024-02-18 20:15:42.889 \N State wall myself interview https://example.com/ 2328 429939 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939.429949 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 14.2699172697698 0 \N \N f 0 \N 7 6543040 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 281505 2023-10-12 06:56:33.079 2023-10-12 07:06:34.726 \N Identify health spend could. Have weight civil size piece arrive. Defense let amount after cost seat. Day month scene security hospital. Range democratic catch performance up cold tough need. Crime thus difference those language.\nWay all line after. Only trouble they hair when. According the help together any. View later same action sing peace. Everybody resource book bag. Teacher service much black health may. Already who suddenly meeting still. Ready central pattern treat everything with lay. Their spend head occur manage everybody bad.\nThem bag because parent se https://example.com/ 14376 281336 281307.281336.281505 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 0.303338801510193 0 \N \N f 0 \N 21 36478850 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 423704 2024-02-13 16:59:58.679 2024-02-13 17:09:59.963 \N Language effort sport mention guess way. By down lay store race. During heart school matter everything. Wear policy field class per another meeting. Increase practice development person factor available oil.\nRadio have every concern. Letter fund artist fine argue. Know year send ask di https://example.com/ 8569 423687 423667.423687.423704 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 2.95910053079165 0 \N \N f 0 \N 23 205460002 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 426529 2024-02-15 19:17:26.434 2024-02-15 19:27:27.739 \N Industry great onto trial wind. Rule radio trial she its understand. Soon think kind choose floor. Smile m https://example.com/ 658 426508 426508.426529 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.536924944731 0 \N \N f 0 \N 11 191941794 0 f f \N \N \N \N 426508 \N 0 0 \N \N f \N 429939 2024-02-18 19:58:28.689 2024-02-18 20:22:44.972 \N Letter bank officer https://example.com/ 16357 429937 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936.429937.429939 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 26.7483140433596 0 \N \N f 0 \N 38 208794325 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 281336 2023-10-11 22:31:16.23 2023-10-11 22:41:17.494 \N Door visit program account. Feel section behavior knowledge. Resource begin task point reveal authority. No how compare discussion job knowledge focus. Hot join time room.\nCommon loss oil be. Wrong water cover yet edge trouble. Business lose reach around way. Lawyer east wish anything structure break service. Beat often station age her. Watch east beautiful want body throughout themselves career. Physical election visit parent ago chair collection. Smile quite really general detail throw. Outside check method say civil. Stock more wonder level range again.\nMore recently quality despite ball good throughout. Body live leave whose including feel executive. Respond face wear kind. Old majority miss usually become wi https://example.com/ 21387 281307 281307.281336 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 1.72296541693981 0 \N \N f 0 \N 24 170427230 0 f f \N \N \N \N 281307 \N 0 0 \N \N f \N 423687 2024-02-13 16:51:37.608 2024-02-13 17:01:38.638 \N Artist sound retu https://example.com/ 664 423667 423667.423687 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 13.1087234888963 0 \N \N f 0 \N 24 58672878 0 f f \N \N \N \N 423667 \N 0 0 \N \N f \N 429936 2024-02-18 19:55:23.517 2024-02-18 20:07:48.776 \N Rest factor stock p https://example.com/ 19601 429935 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935.429936 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.5145376458064 0 \N \N f 0 \N 40 239067449 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429935 2024-02-18 19:54:53.608 2024-02-18 20:04:55.282 \N Fish health wh https://example.com/ 21228 429934 429405.429855.429859.429863.429900.429921.429930.429933.429934.429935 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 24.8006347384944 0 \N \N f 0 \N 41 14582052 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429934 2024-02-18 19:54:03.171 2024-02-18 20:22:38.369 \N These world usually https://example.com/ 1602 429933 429405.429855.429859.429863.429900.429921.429930.429933.429934 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 8.40592262016244 0 \N \N f 0 \N 42 9440648 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429933 2024-02-18 19:53:17.142 2024-02-18 20:03:19.163 \N Deep some relate building buy then. Le https://example.com/ 15060 429930 429405.429855.429859.429863.429900.429921.429930.429933 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 4.36340403668293 0 \N \N f 0 \N 43 216750120 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429930 2024-02-18 19:50:18.068 2024-02-18 20:11:25.907 \N Out quite different https://example.com/ 17157 429921 429405.429855.429859.429863.429900.429921.429930 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 23.7561892638205 0 \N \N f 0 \N 44 177513728 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429921 2024-02-18 19:46:26.045 2024-02-18 19:56:27.106 \N Any new necessary low. Option win do almost. Perform https://example.com/ 10096 429900 429405.429855.429859.429863.429900.429921 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 28.7522852737671 0 \N \N f 0 \N 45 185094107 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429900 2024-02-18 19:27:23.44 2024-02-19 21:33:23.228 \N International yours https://example.com/ 896 429863 429405.429855.429859.429863.429900 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 10.0243940882447 0 \N \N f 0 \N 46 93611764 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429863 2024-02-18 18:57:49.442 2024-02-18 19:07:50.631 \N Effect indeed easy never instead even force. Economy use rule real others. Stay five computer individual. Wish firm perhaps herself catch. Subject reduce same treatmen https://example.com/ 21588 429859 429405.429855.429859.429863 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 11.7830458763919 0 \N \N f 0 \N 50 190198397 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429859 2024-02-18 18:55:38.615 2024-02-18 19:05:40.156 \N Ready his protect provide same side. Edge throw business six receive price current issue. Ahead social soon behind compare explain. You fine young close https://example.com/ 8059 429855 429405.429855.429859 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 21.4455759571565 0 \N \N f 0 \N 51 203546266 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N 429855 2024-02-18 18:53:05.528 2024-02-18 19:03:06.511 \N Very yes customer public music example expert. Fear would much. Necessary leader home step. Course doctor find form teach rock. T https://example.com/ 9242 429405 429405.429855 \N \N \N \N \N \N \N \N \N \N ACTIVE \N 19.1255123535635 0 \N \N f 0 \N 52 154168370 0 f f \N \N \N \N 429405 \N 0 0 \N \N f \N \. -- -- Data for Name: ItemAct; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemAct" (id, created_at, updated_at, msats, act, "itemId", "userId") FROM stdin; 6027957 2024-02-22 01:15:03.887 2024-02-22 01:15:03.887 1000 STREAM 141924 17365 6027998 2024-02-22 01:20:03.895 2024-02-22 01:20:03.895 1000 STREAM 141924 16876 6027958 2024-02-22 01:15:10.969 2024-02-22 01:15:10.969 1700 FEE 434459 21466 6027959 2024-02-22 01:15:10.969 2024-02-22 01:15:10.969 15300 TIP 434459 2780 6027960 2024-02-22 01:15:37.625 2024-02-22 01:15:37.625 2700 FEE 433914 1180 6027961 2024-02-22 01:15:37.625 2024-02-22 01:15:37.625 24300 TIP 433914 15060 6027962 2024-02-22 01:15:37.814 2024-02-22 01:15:37.814 2700 FEE 433914 2529 6027963 2024-02-22 01:15:37.814 2024-02-22 01:15:37.814 24300 TIP 433914 21019 6027964 2024-02-22 01:15:41.031 2024-02-22 01:15:41.031 2700 FEE 434085 18040 6027965 2024-02-22 01:15:41.031 2024-02-22 01:15:41.031 24300 TIP 434085 1705 6028005 2024-02-22 01:21:36.707 2024-02-22 01:21:36.707 36000 TIP 434441 21619 6028008 2024-02-22 01:22:03.881 2024-02-22 01:22:03.881 1000 STREAM 141924 12097 6027966 2024-02-22 01:15:41.244 2024-02-22 01:15:41.244 2700 FEE 434085 5661 6027967 2024-02-22 01:15:41.244 2024-02-22 01:15:41.244 24300 TIP 434085 20562 6027968 2024-02-22 01:15:45.302 2024-02-22 01:15:45.302 2700 FEE 433881 18068 6027969 2024-02-22 01:15:45.302 2024-02-22 01:15:45.302 24300 TIP 433881 4027 6027970 2024-02-22 01:15:45.473 2024-02-22 01:15:45.473 2700 FEE 433881 15409 6027971 2024-02-22 01:15:45.473 2024-02-22 01:15:45.473 24300 TIP 433881 994 6027972 2024-02-22 01:15:45.643 2024-02-22 01:15:45.643 2700 FEE 433881 10112 6027973 2024-02-22 01:15:45.643 2024-02-22 01:15:45.643 24300 TIP 433881 718 6027974 2024-02-22 01:16:03.857 2024-02-22 01:16:03.857 1000 STREAM 141924 631 6027976 2024-02-22 01:17:03.863 2024-02-22 01:17:03.863 1000 STREAM 141924 20370 6027975 2024-02-22 01:16:04.583 2024-02-22 01:16:04.583 100000 FEE 434462 18472 6028000 2024-02-22 01:21:02.922 2024-02-22 01:21:02.922 2700 FEE 434147 12261 6027977 2024-02-22 01:17:31.661 2024-02-22 01:17:31.661 3100 FEE 434460 20243 6027978 2024-02-22 01:17:31.661 2024-02-22 01:17:31.661 27900 TIP 434460 17209 6027979 2024-02-22 01:18:03.867 2024-02-22 01:18:03.867 1000 STREAM 141924 21352 6027980 2024-02-22 01:19:03.845 2024-02-22 01:19:03.845 1000 STREAM 141924 21412 6027981 2024-02-22 01:19:49.748 2024-02-22 01:19:49.748 100 FEE 434283 19809 6027982 2024-02-22 01:19:49.748 2024-02-22 01:19:49.748 900 TIP 434283 12160 6027983 2024-02-22 01:19:56.431 2024-02-22 01:19:56.431 1000 FEE 434463 13767 6027996 2024-02-22 01:20:02.382 2024-02-22 01:20:02.382 2700 FEE 434099 5425 6027997 2024-02-22 01:20:02.382 2024-02-22 01:20:02.382 24300 TIP 434099 20182 6028006 2024-02-22 01:21:40.208 2024-02-22 01:21:40.208 4000 FEE 434396 19987 6027984 2024-02-22 01:20:00.026 2024-02-22 01:20:00.026 2700 FEE 434099 5597 6027985 2024-02-22 01:20:00.026 2024-02-22 01:20:00.026 24300 TIP 434099 12289 6027992 2024-02-22 01:20:00.553 2024-02-22 01:20:00.553 2700 FEE 434099 5791 6027986 2024-02-22 01:20:00.107 2024-02-22 01:20:00.107 2700 FEE 434099 15560 6027987 2024-02-22 01:20:00.107 2024-02-22 01:20:00.107 24300 TIP 434099 2213 6027988 2024-02-22 01:20:00.239 2024-02-22 01:20:00.239 2700 FEE 434099 10013 6027989 2024-02-22 01:20:00.239 2024-02-22 01:20:00.239 24300 TIP 434099 3360 6027990 2024-02-22 01:20:00.367 2024-02-22 01:20:00.367 2700 FEE 434099 3396 6027991 2024-02-22 01:20:00.367 2024-02-22 01:20:00.367 24300 TIP 434099 9365 6027993 2024-02-22 01:20:00.553 2024-02-22 01:20:00.553 24300 TIP 434099 19151 6027994 2024-02-22 01:20:01.85 2024-02-22 01:20:01.85 2700 FEE 434099 20586 6027995 2024-02-22 01:20:01.85 2024-02-22 01:20:01.85 24300 TIP 434099 18896 6027999 2024-02-22 01:21:02.774 2024-02-22 01:21:02.774 1000 STREAM 141924 618 6028007 2024-02-22 01:21:40.208 2024-02-22 01:21:40.208 36000 TIP 434396 20340 6028009 2024-02-22 01:22:18.283 2024-02-22 01:22:18.283 1000 FEE 434464 2195 6028001 2024-02-22 01:21:02.922 2024-02-22 01:21:02.922 24300 TIP 434147 10060 6028002 2024-02-22 01:21:03.096 2024-02-22 01:21:03.096 2700 FEE 434147 21022 6028003 2024-02-22 01:21:03.096 2024-02-22 01:21:03.096 24300 TIP 434147 13781 6028004 2024-02-22 01:21:36.707 2024-02-22 01:21:36.707 4000 FEE 434441 12821 6028010 2024-02-22 01:23:03.892 2024-02-22 01:23:03.892 1000 STREAM 141924 1468 6028013 2024-02-22 01:23:47.342 2024-02-22 01:23:47.342 10000 FEE 434465 7418 6028011 2024-02-22 01:23:06.309 2024-02-22 01:23:06.309 210000 FEE 434465 848 6028012 2024-02-22 01:23:47.317 2024-02-22 01:23:47.317 0 FEE 434465 9354 6028014 2024-02-22 01:23:47.342 2024-02-22 01:23:47.342 90000 TIP 434465 739 6028018 2024-02-22 01:24:34.578 2024-02-22 01:24:34.578 2700 FEE 433945 854 6028015 2024-02-22 01:24:02.762 2024-02-22 01:24:02.762 1000 STREAM 141924 20669 6028019 2024-02-22 01:24:34.578 2024-02-22 01:24:34.578 24300 TIP 433945 6741 6028016 2024-02-22 01:24:34.386 2024-02-22 01:24:34.386 2700 FEE 433945 7818 6028017 2024-02-22 01:24:34.386 2024-02-22 01:24:34.386 24300 TIP 433945 21430 6028020 2024-02-22 01:24:34.791 2024-02-22 01:24:34.791 2700 FEE 433945 3409 6028021 2024-02-22 01:24:34.791 2024-02-22 01:24:34.791 24300 TIP 433945 19583 6028022 2024-02-22 01:24:35.414 2024-02-22 01:24:35.414 2700 FEE 433945 3717 6028023 2024-02-22 01:24:35.414 2024-02-22 01:24:35.414 24300 TIP 433945 635 6028025 2024-02-22 01:24:36.045 2024-02-22 01:24:36.045 24300 TIP 433945 19512 6028024 2024-02-22 01:24:36.045 2024-02-22 01:24:36.045 2700 FEE 433945 977 6028026 2024-02-22 01:24:45.372 2024-02-22 01:24:45.372 5100 FEE 434147 1814 6028027 2024-02-22 01:24:45.372 2024-02-22 01:24:45.372 45900 TIP 434147 17696 6028028 2024-02-22 01:24:47.607 2024-02-22 01:24:47.607 1000 FEE 434466 15139 6028029 2024-02-22 01:24:51.413 2024-02-22 01:24:51.413 7700 FEE 434463 8360 6028030 2024-02-22 01:24:51.413 2024-02-22 01:24:51.413 69300 TIP 434463 12097 6028031 2024-02-22 01:25:01.307 2024-02-22 01:25:01.307 2300 FEE 434466 17147 6028032 2024-02-22 01:25:01.307 2024-02-22 01:25:01.307 20700 TIP 434466 5522 6028033 2024-02-22 01:25:01.641 2024-02-22 01:25:01.641 4600 FEE 434466 7766 6028034 2024-02-22 01:25:01.641 2024-02-22 01:25:01.641 41400 TIP 434466 2061 6028035 2024-02-22 01:25:01.806 2024-02-22 01:25:01.806 2300 FEE 434466 16747 6028036 2024-02-22 01:25:01.806 2024-02-22 01:25:01.806 20700 TIP 434466 738 6028037 2024-02-22 01:25:02.763 2024-02-22 01:25:02.763 1000 STREAM 141924 629 6028038 2024-02-22 01:25:33.82 2024-02-22 01:25:33.82 2500 FEE 433945 15337 6028039 2024-02-22 01:25:33.82 2024-02-22 01:25:33.82 22500 TIP 433945 18714 6028040 2024-02-22 01:25:45.39 2024-02-22 01:25:45.39 2700 FEE 434420 9529 6028041 2024-02-22 01:25:45.39 2024-02-22 01:25:45.39 24300 TIP 434420 16351 6028042 2024-02-22 01:25:45.593 2024-02-22 01:25:45.593 2700 FEE 434420 676 6028043 2024-02-22 01:25:45.593 2024-02-22 01:25:45.593 24300 TIP 434420 6137 6028044 2024-02-22 01:26:02.779 2024-02-22 01:26:02.779 1000 STREAM 141924 3504 6028045 2024-02-22 01:26:56.895 2024-02-22 01:26:56.895 7700 FEE 434037 7097 6028046 2024-02-22 01:26:56.895 2024-02-22 01:26:56.895 69300 TIP 434037 16097 6028058 2024-02-22 01:33:06.44 2024-02-22 01:33:06.44 900000 FEE 433828 14705 6028047 2024-02-22 01:26:58.475 2024-02-22 01:26:58.475 100 FEE 434037 13987 6028048 2024-02-22 01:26:58.475 2024-02-22 01:26:58.475 900 TIP 434037 19689 6028049 2024-02-22 01:27:02.781 2024-02-22 01:27:02.781 1000 STREAM 141924 17050 6028050 2024-02-22 01:27:33.755 2024-02-22 01:27:33.755 5000 FEE 433998 21063 6028051 2024-02-22 01:27:33.755 2024-02-22 01:27:33.755 45000 TIP 433998 18704 6028052 2024-02-22 01:28:02.789 2024-02-22 01:28:02.789 1000 STREAM 141924 21214 6028053 2024-02-22 01:29:02.788 2024-02-22 01:29:02.788 1000 STREAM 141924 15094 6028057 2024-02-22 01:33:02.831 2024-02-22 01:33:02.831 1000 STREAM 141924 2519 6028054 2024-02-22 01:30:02.841 2024-02-22 01:30:02.841 1000 STREAM 141924 19335 6028055 2024-02-22 01:31:02.826 2024-02-22 01:31:02.826 1000 STREAM 141924 18008 6028056 2024-02-22 01:32:02.844 2024-02-22 01:32:02.844 1000 STREAM 141924 14663 6028069 2024-02-22 01:36:02.889 2024-02-22 01:36:02.889 1000 STREAM 141924 21402 6028072 2024-02-22 01:38:02.913 2024-02-22 01:38:02.913 1000 STREAM 141924 8176 6028075 2024-02-22 01:39:02.91 2024-02-22 01:39:02.91 1000 STREAM 141924 11885 6028076 2024-02-22 01:40:02.958 2024-02-22 01:40:02.958 1000 STREAM 141924 2444 6028079 2024-02-22 01:41:02.942 2024-02-22 01:41:02.942 1000 STREAM 141924 11288 6028081 2024-02-22 01:42:02.939 2024-02-22 01:42:02.939 1000 STREAM 141924 13782 6028082 2024-02-22 01:43:02.947 2024-02-22 01:43:02.947 1000 STREAM 141924 8998 6028085 2024-02-22 01:46:02.981 2024-02-22 01:46:02.981 1000 STREAM 141924 18615 6028087 2024-02-22 01:47:02.991 2024-02-22 01:47:02.991 1000 STREAM 141924 19031 6028088 2024-02-22 01:48:03.006 2024-02-22 01:48:03.006 1000 STREAM 141924 954 6028089 2024-02-22 01:49:02.987 2024-02-22 01:49:02.987 1000 STREAM 141924 3371 6028091 2024-02-22 01:50:03.039 2024-02-22 01:50:03.039 1000 STREAM 141924 21405 6028099 2024-02-22 01:52:03.071 2024-02-22 01:52:03.071 1000 STREAM 141924 1474 6028103 2024-02-22 01:53:03.046 2024-02-22 01:53:03.046 1000 STREAM 141924 14247 6028119 2024-02-22 01:56:03.066 2024-02-22 01:56:03.066 1000 STREAM 141924 6260 6028127 2024-02-22 01:58:03.082 2024-02-22 01:58:03.082 1000 STREAM 141924 19566 6028173 2024-02-22 02:02:03.129 2024-02-22 02:02:03.129 1000 STREAM 141924 12808 6028174 2024-02-22 02:03:03.103 2024-02-22 02:03:03.103 1000 STREAM 141924 7992 6028190 2024-02-22 02:06:03.154 2024-02-22 02:06:03.154 1000 STREAM 141924 2789 6028198 2024-02-22 02:10:03.23 2024-02-22 02:10:03.23 1000 STREAM 141924 20090 6028202 2024-02-22 02:12:03.218 2024-02-22 02:12:03.218 1000 STREAM 141924 4304 6028207 2024-02-22 02:13:03.25 2024-02-22 02:13:03.25 1000 STREAM 141924 19773 6028216 2024-02-22 02:14:03.253 2024-02-22 02:14:03.253 1000 STREAM 141924 19576 6028217 2024-02-22 02:15:03.263 2024-02-22 02:15:03.263 1000 STREAM 141924 20370 6028221 2024-02-22 02:17:03.278 2024-02-22 02:17:03.278 1000 STREAM 141924 17891 6028230 2024-02-22 02:19:03.394 2024-02-22 02:19:03.394 1000 STREAM 141924 21391 6028231 2024-02-22 02:20:03.288 2024-02-22 02:20:03.288 1000 STREAM 141924 910 6028234 2024-02-22 02:21:03.3 2024-02-22 02:21:03.3 1000 STREAM 141924 16876 6034465 2024-02-22 17:32:21.416 2024-02-22 17:32:21.416 2300 FEE 435263 10490 6034466 2024-02-22 17:32:21.416 2024-02-22 17:32:21.416 20700 TIP 435263 5578 6034489 2024-02-22 17:32:47.965 2024-02-22 17:32:47.965 8300 FEE 435261 20470 6034490 2024-02-22 17:32:47.965 2024-02-22 17:32:47.965 74700 TIP 435261 634 6034491 2024-02-22 17:32:48.829 2024-02-22 17:32:48.829 8300 FEE 435261 20327 6034492 2024-02-22 17:32:48.829 2024-02-22 17:32:48.829 74700 TIP 435261 6382 6034530 2024-02-22 17:35:45.828 2024-02-22 17:35:45.828 1000 FEE 435268 876 6034531 2024-02-22 17:35:45.828 2024-02-22 17:35:45.828 9000 TIP 435268 21416 6034537 2024-02-22 17:36:09.339 2024-02-22 17:36:09.339 1000 FEE 435295 11378 6034556 2024-02-22 17:38:54.56 2024-02-22 17:38:54.56 1000 FEE 435301 20137 6034563 2024-02-22 17:39:54.93 2024-02-22 17:39:54.93 1000 FEE 435303 8729 6034578 2024-02-22 17:40:18.553 2024-02-22 17:40:18.553 1000 FEE 435294 20058 6034579 2024-02-22 17:40:18.553 2024-02-22 17:40:18.553 9000 TIP 435294 6382 6034584 2024-02-22 17:40:28.209 2024-02-22 17:40:28.209 1000 FEE 435305 18518 6028059 2024-02-22 01:33:06.44 2024-02-22 01:33:06.44 8100000 TIP 433828 8326 6028092 2024-02-22 01:50:05.992 2024-02-22 01:50:05.992 7700 FEE 434395 11477 6028093 2024-02-22 01:50:05.992 2024-02-22 01:50:05.992 69300 TIP 434395 2111 6028116 2024-02-22 01:54:46.801 2024-02-22 01:54:46.801 1000 FEE 434461 726 6028117 2024-02-22 01:54:46.801 2024-02-22 01:54:46.801 9000 TIP 434461 13100 6028163 2024-02-22 02:00:47.256 2024-02-22 02:00:47.256 2100 FEE 434395 19992 6028164 2024-02-22 02:00:47.256 2024-02-22 02:00:47.256 18900 TIP 434395 20717 6028180 2024-02-22 02:04:34.758 2024-02-22 02:04:34.758 800 FEE 434243 21201 6028181 2024-02-22 02:04:34.758 2024-02-22 02:04:34.758 7200 TIP 434243 20280 6028184 2024-02-22 02:04:37.165 2024-02-22 02:04:37.165 800 FEE 434243 20841 6028185 2024-02-22 02:04:37.165 2024-02-22 02:04:37.165 7200 TIP 434243 17953 6028196 2024-02-22 02:09:58.549 2024-02-22 02:09:58.549 1000 FEE 434402 18659 6028197 2024-02-22 02:09:58.549 2024-02-22 02:09:58.549 9000 TIP 434402 880 6028212 2024-02-22 02:13:25.344 2024-02-22 02:13:25.344 1000 FEE 434405 18336 6028213 2024-02-22 02:13:25.344 2024-02-22 02:13:25.344 9000 TIP 434405 20129 6028237 2024-02-22 02:22:23.529 2024-02-22 02:22:23.529 10000 FEE 434440 1845 6028238 2024-02-22 02:22:23.529 2024-02-22 02:22:23.529 90000 TIP 434440 20745 6028246 2024-02-22 02:23:25.927 2024-02-22 02:23:25.927 210000 FEE 434483 4084 6028273 2024-02-22 02:38:12.966 2024-02-22 02:38:12.966 1000 FEE 434486 18139 6028318 2024-02-22 02:54:51.007 2024-02-22 02:54:51.007 3100 FEE 434474 15367 6028319 2024-02-22 02:54:51.007 2024-02-22 02:54:51.007 27900 TIP 434474 2614 6028323 2024-02-22 02:56:14.186 2024-02-22 02:56:14.186 1000 FEE 434494 2065 6028349 2024-02-22 03:00:55.495 2024-02-22 03:00:55.495 100000 FEE 434498 19622 6028359 2024-02-22 03:04:44.996 2024-02-22 03:04:44.996 1000 FEE 434502 18873 6028366 2024-02-22 03:06:19.048 2024-02-22 03:06:19.048 2300 FEE 434500 20963 6028367 2024-02-22 03:06:19.048 2024-02-22 03:06:19.048 20700 TIP 434500 18816 6028368 2024-02-22 03:06:19.128 2024-02-22 03:06:19.128 2300 FEE 434500 18154 6028369 2024-02-22 03:06:19.128 2024-02-22 03:06:19.128 20700 TIP 434500 1769 6028374 2024-02-22 03:06:19.853 2024-02-22 03:06:19.853 2300 FEE 434500 21588 6028375 2024-02-22 03:06:19.853 2024-02-22 03:06:19.853 20700 TIP 434500 787 6028400 2024-02-22 03:14:49.538 2024-02-22 03:14:49.538 100 FEE 423475 5499 6028401 2024-02-22 03:14:49.538 2024-02-22 03:14:49.538 900 TIP 423475 4574 6028402 2024-02-22 03:14:49.679 2024-02-22 03:14:49.679 100 FEE 423475 18909 6028403 2024-02-22 03:14:49.679 2024-02-22 03:14:49.679 900 TIP 423475 4177 6028419 2024-02-22 03:15:00.794 2024-02-22 03:15:00.794 100 FEE 423475 20555 6028420 2024-02-22 03:15:00.794 2024-02-22 03:15:00.794 900 TIP 423475 15526 6028439 2024-02-22 03:16:19.397 2024-02-22 03:16:19.397 1000 FEE 434506 19303 6028442 2024-02-22 03:18:06.631 2024-02-22 03:18:06.631 1000 FEE 434507 4391 6028465 2024-02-22 03:20:38.754 2024-02-22 03:20:38.754 2100 FEE 434500 687 6028466 2024-02-22 03:20:38.754 2024-02-22 03:20:38.754 18900 TIP 434500 2327 6028486 2024-02-22 03:35:03.142 2024-02-22 03:35:03.142 1000 FEE 434510 20504 6028495 2024-02-22 03:37:18.181 2024-02-22 03:37:18.181 100 FEE 434509 9705 6028496 2024-02-22 03:37:18.181 2024-02-22 03:37:18.181 900 TIP 434509 688 6028505 2024-02-22 03:37:19.671 2024-02-22 03:37:19.671 100 FEE 434509 18500 6028506 2024-02-22 03:37:19.671 2024-02-22 03:37:19.671 900 TIP 434509 803 6028531 2024-02-22 03:37:29.605 2024-02-22 03:37:29.605 100 FEE 434509 624 6028532 2024-02-22 03:37:29.605 2024-02-22 03:37:29.605 900 TIP 434509 5129 6028565 2024-02-22 03:37:35.729 2024-02-22 03:37:35.729 100 FEE 434509 19888 6028566 2024-02-22 03:37:35.729 2024-02-22 03:37:35.729 900 TIP 434509 20084 6028573 2024-02-22 03:37:41.923 2024-02-22 03:37:41.923 100 FEE 434509 20225 6028574 2024-02-22 03:37:41.923 2024-02-22 03:37:41.923 900 TIP 434509 18930 6028587 2024-02-22 03:37:43.386 2024-02-22 03:37:43.386 100 FEE 434509 5129 6028588 2024-02-22 03:37:43.386 2024-02-22 03:37:43.386 900 TIP 434509 1632 6028633 2024-02-22 03:43:28.613 2024-02-22 03:43:28.613 9000 FEE 434489 19462 6028634 2024-02-22 03:43:28.613 2024-02-22 03:43:28.613 81000 TIP 434489 20377 6028649 2024-02-22 03:48:01.069 2024-02-22 03:48:01.069 1000 FEE 434318 13055 6028650 2024-02-22 03:48:01.069 2024-02-22 03:48:01.069 9000 TIP 434318 18372 6028665 2024-02-22 03:50:26.979 2024-02-22 03:50:26.979 1000 FEE 434310 20562 6028666 2024-02-22 03:50:26.979 2024-02-22 03:50:26.979 9000 TIP 434310 4798 6028675 2024-02-22 03:53:07.203 2024-02-22 03:53:07.203 1000 FEE 434517 9809 6028679 2024-02-22 03:54:01.828 2024-02-22 03:54:01.828 1000 FEE 434444 21599 6028680 2024-02-22 03:54:01.828 2024-02-22 03:54:01.828 9000 TIP 434444 4167 6028709 2024-02-22 03:58:58.828 2024-02-22 03:58:58.828 1000 FEE 434524 8945 6028735 2024-02-22 04:05:07.313 2024-02-22 04:05:07.313 8300 FEE 434514 6717 6028736 2024-02-22 04:05:07.313 2024-02-22 04:05:07.313 74700 TIP 434514 4650 6028755 2024-02-22 04:06:20.567 2024-02-22 04:06:20.567 2100 FEE 434507 15806 6028756 2024-02-22 04:06:20.567 2024-02-22 04:06:20.567 18900 TIP 434507 9171 6028770 2024-02-22 04:10:24.87 2024-02-22 04:10:24.87 1000 FEE 434484 1624 6028771 2024-02-22 04:10:24.87 2024-02-22 04:10:24.87 9000 TIP 434484 21201 6028799 2024-02-22 04:17:41.528 2024-02-22 04:17:41.528 10000 FEE 434535 16154 6028819 2024-02-22 04:25:38.712 2024-02-22 04:25:38.712 2100 FEE 434536 20287 6028820 2024-02-22 04:25:38.712 2024-02-22 04:25:38.712 18900 TIP 434536 20701 6028821 2024-02-22 04:25:51.841 2024-02-22 04:25:51.841 1000 FEE 434539 6421 6028833 2024-02-22 04:28:46.193 2024-02-22 04:28:46.193 900 FEE 434488 19581 6028834 2024-02-22 04:28:46.193 2024-02-22 04:28:46.193 8100 TIP 434488 2151 6028853 2024-02-22 04:32:33.982 2024-02-22 04:32:33.982 1000 FEE 434469 11329 6028854 2024-02-22 04:32:33.982 2024-02-22 04:32:33.982 9000 TIP 434469 12057 6028864 2024-02-22 04:33:10.447 2024-02-22 04:33:10.447 900 FEE 434514 13216 6028865 2024-02-22 04:33:10.447 2024-02-22 04:33:10.447 8100 TIP 434514 20891 6028915 2024-02-22 04:39:34.441 2024-02-22 04:39:34.441 4000 FEE 434544 20450 6028916 2024-02-22 04:39:34.441 2024-02-22 04:39:34.441 36000 TIP 434544 7979 6028934 2024-02-22 04:43:14.356 2024-02-22 04:43:14.356 1000 FEE 433844 18667 6028935 2024-02-22 04:43:14.356 2024-02-22 04:43:14.356 9000 TIP 433844 18470 6028938 2024-02-22 04:43:45.975 2024-02-22 04:43:45.975 1000 FEE 433851 20409 6028939 2024-02-22 04:43:45.975 2024-02-22 04:43:45.975 9000 TIP 433851 9985 6028940 2024-02-22 04:43:54.049 2024-02-22 04:43:54.049 1000 FEE 433079 9347 6028941 2024-02-22 04:43:54.049 2024-02-22 04:43:54.049 9000 TIP 433079 14465 6028963 2024-02-22 04:49:35.295 2024-02-22 04:49:35.295 10000 FEE 434440 16214 6028964 2024-02-22 04:49:35.295 2024-02-22 04:49:35.295 90000 TIP 434440 780 6028996 2024-02-22 05:03:58.657 2024-02-22 05:03:58.657 1000 FEE 434558 993 6029016 2024-02-22 05:09:57.922 2024-02-22 05:09:57.922 1000 FEE 434562 20117 6029053 2024-02-22 05:15:14.375 2024-02-22 05:15:14.375 100 FEE 434535 16284 6029054 2024-02-22 05:15:14.375 2024-02-22 05:15:14.375 900 TIP 434535 6499 6029087 2024-02-22 05:22:32.989 2024-02-22 05:22:32.989 1000 FEE 434572 9275 6029113 2024-02-22 05:30:18.349 2024-02-22 05:30:18.349 1000 FEE 434574 1090 6029135 2024-02-22 05:37:01.214 2024-02-22 05:37:01.214 21000 FEE 434577 10270 6028060 2024-02-22 01:33:39.023 2024-02-22 01:33:39.023 1000 FEE 434467 19987 6028064 2024-02-22 01:33:56.735 2024-02-22 01:33:56.735 900 FEE 434465 16447 6028065 2024-02-22 01:33:56.735 2024-02-22 01:33:56.735 8100 TIP 434465 10283 6028073 2024-02-22 01:38:10.35 2024-02-22 01:38:10.35 2100 FEE 266721 1803 6028074 2024-02-22 01:38:10.35 2024-02-22 01:38:10.35 18900 TIP 266721 18199 6028097 2024-02-22 01:51:26.205 2024-02-22 01:51:26.205 0 FEE 434471 2748 6028104 2024-02-22 01:53:10.318 2024-02-22 01:53:10.318 100 FEE 434472 21159 6028105 2024-02-22 01:53:10.318 2024-02-22 01:53:10.318 900 TIP 434472 20738 6028123 2024-02-22 01:57:50.53 2024-02-22 01:57:50.53 2100 FEE 434285 17514 6028124 2024-02-22 01:57:50.53 2024-02-22 01:57:50.53 18900 TIP 434285 18402 6028125 2024-02-22 01:57:53.351 2024-02-22 01:57:53.351 2100 FEE 434278 2232 6028126 2024-02-22 01:57:53.351 2024-02-22 01:57:53.351 18900 TIP 434278 5775 6028130 2024-02-22 01:58:16.353 2024-02-22 01:58:16.353 2100 FEE 434410 18119 6028131 2024-02-22 01:58:16.353 2024-02-22 01:58:16.353 18900 TIP 434410 20841 6028146 2024-02-22 02:00:14.094 2024-02-22 02:00:14.094 2100 FEE 433382 19449 6028147 2024-02-22 02:00:14.094 2024-02-22 02:00:14.094 18900 TIP 433382 1000 6028176 2024-02-22 02:04:13.688 2024-02-22 02:04:13.688 1000 FEE 434410 6419 6028177 2024-02-22 02:04:13.688 2024-02-22 02:04:13.688 9000 TIP 434410 722 6028182 2024-02-22 02:04:34.941 2024-02-22 02:04:34.941 800 FEE 434243 761 6028061 2024-02-22 01:33:44.959 2024-02-22 01:33:44.959 1000000 DONT_LIKE_THIS 434441 19843 6028080 2024-02-22 01:41:31.65 2024-02-22 01:41:31.65 98000 FEE 434469 14449 6028086 2024-02-22 01:46:35.615 2024-02-22 01:46:35.615 1000 FEE 434470 20198 6028090 2024-02-22 01:49:29.257 2024-02-22 01:49:29.257 1000 FEE 434471 19583 6028108 2024-02-22 01:53:11.129 2024-02-22 01:53:11.129 9000 FEE 434472 4292 6028109 2024-02-22 01:53:11.129 2024-02-22 01:53:11.129 81000 TIP 434472 8726 6028110 2024-02-22 01:53:28.522 2024-02-22 01:53:28.522 100000 DONT_LIKE_THIS 434468 980 6028114 2024-02-22 01:54:06.411 2024-02-22 01:54:06.411 900 FEE 434469 4079 6028115 2024-02-22 01:54:06.411 2024-02-22 01:54:06.411 8100 TIP 434469 20090 6028133 2024-02-22 01:59:37.224 2024-02-22 01:59:37.224 2100 FEE 433851 8162 6028134 2024-02-22 01:59:37.224 2024-02-22 01:59:37.224 18900 TIP 433851 16998 6028139 2024-02-22 01:59:48.501 2024-02-22 01:59:48.501 2100 FEE 433842 827 6028140 2024-02-22 01:59:48.501 2024-02-22 01:59:48.501 18900 TIP 433842 3461 6028148 2024-02-22 02:00:18.224 2024-02-22 02:00:18.224 2100 FEE 433333 8004 6028149 2024-02-22 02:00:18.224 2024-02-22 02:00:18.224 18900 TIP 433333 19016 6028171 2024-02-22 02:01:12.839 2024-02-22 02:01:12.839 1300 FEE 433376 19286 6028172 2024-02-22 02:01:12.839 2024-02-22 02:01:12.839 11700 TIP 433376 750 6028062 2024-02-22 01:33:56.586 2024-02-22 01:33:56.586 100 FEE 434465 18262 6028063 2024-02-22 01:33:56.586 2024-02-22 01:33:56.586 900 TIP 434465 2016 6028066 2024-02-22 01:34:02.861 2024-02-22 01:34:02.861 1000 STREAM 141924 8535 6028068 2024-02-22 01:35:02.88 2024-02-22 01:35:02.88 1000 STREAM 141924 21180 6028071 2024-02-22 01:37:02.894 2024-02-22 01:37:02.894 1000 STREAM 141924 19888 6028084 2024-02-22 01:45:02.978 2024-02-22 01:45:02.978 1000 STREAM 141924 7903 6028096 2024-02-22 01:51:03.04 2024-02-22 01:51:03.04 1000 STREAM 141924 18101 6028111 2024-02-22 01:54:03.052 2024-02-22 01:54:03.052 1000 STREAM 141924 21427 6028118 2024-02-22 01:55:03.064 2024-02-22 01:55:03.064 1000 STREAM 141924 12744 6028122 2024-02-22 01:57:03.085 2024-02-22 01:57:03.085 1000 STREAM 141924 20816 6028132 2024-02-22 01:59:03.092 2024-02-22 01:59:03.092 1000 STREAM 141924 622 6028143 2024-02-22 02:00:03.132 2024-02-22 02:00:03.132 1000 STREAM 141924 5557 6028175 2024-02-22 02:04:03.136 2024-02-22 02:04:03.136 1000 STREAM 141924 913 6028188 2024-02-22 02:05:03.151 2024-02-22 02:05:03.151 1000 STREAM 141924 14552 6028191 2024-02-22 02:07:03.176 2024-02-22 02:07:03.176 1000 STREAM 141924 21334 6028192 2024-02-22 02:08:03.171 2024-02-22 02:08:03.171 1000 STREAM 141924 1490 6028194 2024-02-22 02:09:03.167 2024-02-22 02:09:03.167 1000 STREAM 141924 10668 6028201 2024-02-22 02:11:03.217 2024-02-22 02:11:03.217 1000 STREAM 141924 10060 6028220 2024-02-22 02:16:03.267 2024-02-22 02:16:03.267 1000 STREAM 141924 8284 6028225 2024-02-22 02:18:03.278 2024-02-22 02:18:03.278 1000 STREAM 141924 20646 6028235 2024-02-22 02:22:03.318 2024-02-22 02:22:03.318 1000 STREAM 141924 12768 6028245 2024-02-22 02:23:03.31 2024-02-22 02:23:03.31 1000 STREAM 141924 21498 6028067 2024-02-22 01:34:50.724 2024-02-22 01:34:50.724 0 FEE 434467 20504 6028070 2024-02-22 01:36:05.221 2024-02-22 01:36:05.221 0 FEE 434467 20129 6028077 2024-02-22 01:40:04.013 2024-02-22 01:40:04.013 25600 FEE 433828 19484 6028078 2024-02-22 01:40:04.013 2024-02-22 01:40:04.013 230400 TIP 433828 21275 6028150 2024-02-22 02:00:19.973 2024-02-22 02:00:19.973 2100 FEE 433849 16284 6028151 2024-02-22 02:00:19.973 2024-02-22 02:00:19.973 18900 TIP 433849 20433 6028157 2024-02-22 02:00:41.926 2024-02-22 02:00:41.926 1300 FEE 433345 9177 6028158 2024-02-22 02:00:41.926 2024-02-22 02:00:41.926 11700 TIP 433345 17592 6028222 2024-02-22 02:17:51.013 2024-02-22 02:17:51.013 1000 FEE 434480 20891 6028241 2024-02-22 02:22:49.996 2024-02-22 02:22:49.996 400 FEE 434476 19500 6028242 2024-02-22 02:22:49.996 2024-02-22 02:22:49.996 3600 TIP 434476 2431 6028255 2024-02-22 02:26:16.836 2024-02-22 02:26:16.836 0 FEE 434481 16301 6028265 2024-02-22 02:35:29.757 2024-02-22 02:35:29.757 10000 FEE 434485 16879 6028283 2024-02-22 02:41:32.535 2024-02-22 02:41:32.535 2100 FEE 434482 19842 6028284 2024-02-22 02:41:32.535 2024-02-22 02:41:32.535 18900 TIP 434482 16867 6028324 2024-02-22 02:56:25.52 2024-02-22 02:56:25.52 1000 FEE 434495 20623 6028341 2024-02-22 02:59:40.471 2024-02-22 02:59:40.471 800 FEE 434285 21402 6028342 2024-02-22 02:59:40.471 2024-02-22 02:59:40.471 7200 TIP 434285 651 6028351 2024-02-22 03:01:03.891 2024-02-22 03:01:03.891 10000 FEE 434499 15060 6028394 2024-02-22 03:14:48.606 2024-02-22 03:14:48.606 200 FEE 423475 17148 6028395 2024-02-22 03:14:48.606 2024-02-22 03:14:48.606 1800 TIP 423475 20756 6028396 2024-02-22 03:14:49.071 2024-02-22 03:14:49.071 100 FEE 423475 18040 6028397 2024-02-22 03:14:49.071 2024-02-22 03:14:49.071 900 TIP 423475 13622 6028404 2024-02-22 03:14:50.945 2024-02-22 03:14:50.945 1000 FEE 434505 19967 6028427 2024-02-22 03:16:10.538 2024-02-22 03:16:10.538 3300 FEE 434278 986 6028428 2024-02-22 03:16:10.538 2024-02-22 03:16:10.538 29700 TIP 434278 20129 6028455 2024-02-22 03:18:09.937 2024-02-22 03:18:09.937 100 FEE 423720 6160 6028456 2024-02-22 03:18:09.937 2024-02-22 03:18:09.937 900 TIP 423720 18507 6028479 2024-02-22 03:30:48.071 2024-02-22 03:30:48.071 26000 DONT_LIKE_THIS 434500 910 6028490 2024-02-22 03:37:11.631 2024-02-22 03:37:11.631 1000 FEE 434511 11862 6028541 2024-02-22 03:37:31.01 2024-02-22 03:37:31.01 100 FEE 434509 13987 6028542 2024-02-22 03:37:31.01 2024-02-22 03:37:31.01 900 TIP 434509 19151 6028083 2024-02-22 01:44:04.16 2024-02-22 01:44:04.16 1000 STREAM 141924 9758 6034478 2024-02-22 17:32:46.847 2024-02-22 17:32:46.847 74700 TIP 435261 6616 6034479 2024-02-22 17:32:46.948 2024-02-22 17:32:46.948 8300 FEE 435261 7185 6034480 2024-02-22 17:32:46.948 2024-02-22 17:32:46.948 74700 TIP 435261 20624 6034493 2024-02-22 17:32:48.938 2024-02-22 17:32:48.938 8300 FEE 435261 14545 6034494 2024-02-22 17:32:48.938 2024-02-22 17:32:48.938 74700 TIP 435261 17817 6034540 2024-02-22 17:36:28.259 2024-02-22 17:36:28.259 500 FEE 435286 3409 6034541 2024-02-22 17:36:28.259 2024-02-22 17:36:28.259 4500 TIP 435286 6360 6034542 2024-02-22 17:36:36.199 2024-02-22 17:36:36.199 1000 FEE 435282 17891 6034543 2024-02-22 17:36:36.199 2024-02-22 17:36:36.199 9000 TIP 435282 7913 6034547 2024-02-22 17:37:12.446 2024-02-22 17:37:12.446 1000 FEE 435299 21463 6034558 2024-02-22 17:39:14.292 2024-02-22 17:39:14.292 1000 FEE 435302 11153 6034559 2024-02-22 17:39:21.339 2024-02-22 17:39:21.339 3300 FEE 435292 11417 6034560 2024-02-22 17:39:21.339 2024-02-22 17:39:21.339 29700 TIP 435292 692 6034570 2024-02-22 17:40:15.858 2024-02-22 17:40:15.858 1000 FEE 435294 1488 6034571 2024-02-22 17:40:15.858 2024-02-22 17:40:15.858 9000 TIP 435294 1713 6034580 2024-02-22 17:40:25.113 2024-02-22 17:40:25.113 2000 FEE 435184 20509 6034581 2024-02-22 17:40:25.113 2024-02-22 17:40:25.113 18000 TIP 435184 6741 6034587 2024-02-22 17:40:45.603 2024-02-22 17:40:45.603 2000 FEE 435231 861 6034588 2024-02-22 17:40:45.603 2024-02-22 17:40:45.603 18000 TIP 435231 18904 6034589 2024-02-22 17:40:51.132 2024-02-22 17:40:51.132 2000 FEE 435261 977 6034590 2024-02-22 17:40:51.132 2024-02-22 17:40:51.132 18000 TIP 435261 4079 6034599 2024-02-22 17:41:02.137 2024-02-22 17:41:02.137 1000 FEE 435291 16356 6034600 2024-02-22 17:41:02.137 2024-02-22 17:41:02.137 9000 TIP 435291 14074 6034636 2024-02-22 17:43:31.429 2024-02-22 17:43:31.429 3000 FEE 435304 16229 6034637 2024-02-22 17:43:31.429 2024-02-22 17:43:31.429 27000 TIP 435304 18225 6034649 2024-02-22 17:46:14.998 2024-02-22 17:46:14.998 1000 FEE 435258 11714 6034650 2024-02-22 17:46:14.998 2024-02-22 17:46:14.998 9000 TIP 435258 8459 6034691 2024-02-22 17:48:11.936 2024-02-22 17:48:11.936 100 FEE 435263 15662 6034692 2024-02-22 17:48:11.936 2024-02-22 17:48:11.936 900 TIP 435263 18412 6034695 2024-02-22 17:48:12.563 2024-02-22 17:48:12.563 9000 FEE 435263 14357 6034696 2024-02-22 17:48:12.563 2024-02-22 17:48:12.563 81000 TIP 435263 2309 6034719 2024-02-22 17:49:40.625 2024-02-22 17:49:40.625 2100 FEE 435261 910 6034720 2024-02-22 17:49:40.625 2024-02-22 17:49:40.625 18900 TIP 435261 20963 6034767 2024-02-22 17:50:46.479 2024-02-22 17:50:46.479 3000 FEE 435312 21446 6034768 2024-02-22 17:50:46.479 2024-02-22 17:50:46.479 27000 TIP 435312 20302 6034779 2024-02-22 17:50:47.603 2024-02-22 17:50:47.603 2300 FEE 435308 17944 6034780 2024-02-22 17:50:47.603 2024-02-22 17:50:47.603 20700 TIP 435308 21457 6034786 2024-02-22 17:51:17.512 2024-02-22 17:51:17.512 2100 FEE 435229 20006 6034787 2024-02-22 17:51:17.512 2024-02-22 17:51:17.512 18900 TIP 435229 20669 6034807 2024-02-22 17:54:09.813 2024-02-22 17:54:09.813 3200 FEE 435290 981 6034808 2024-02-22 17:54:09.813 2024-02-22 17:54:09.813 28800 TIP 435290 20306 6034809 2024-02-22 17:54:36.527 2024-02-22 17:54:36.527 0 FEE 435322 16212 6034819 2024-02-22 17:55:08.976 2024-02-22 17:55:08.976 27000 FEE 435324 672 6034820 2024-02-22 17:55:08.976 2024-02-22 17:55:08.976 243000 TIP 435324 15719 6034821 2024-02-22 17:55:10.098 2024-02-22 17:55:10.098 100000 FEE 435327 20562 6034825 2024-02-22 17:55:42.789 2024-02-22 17:55:42.789 5000 FEE 435328 16301 6034826 2024-02-22 17:55:42.789 2024-02-22 17:55:42.789 45000 TIP 435328 21523 6034827 2024-02-22 17:55:43.143 2024-02-22 17:55:43.143 5000 FEE 435328 4395 6034828 2024-02-22 17:55:43.143 2024-02-22 17:55:43.143 45000 TIP 435328 13399 6034831 2024-02-22 17:55:44.117 2024-02-22 17:55:44.117 5000 FEE 435328 9345 6034832 2024-02-22 17:55:44.117 2024-02-22 17:55:44.117 45000 TIP 435328 5427 6034852 2024-02-22 17:56:49.194 2024-02-22 17:56:49.194 1000 FEE 435331 17291 6034862 2024-02-22 17:57:40.889 2024-02-22 17:57:40.889 1000 FEE 435335 3518 6034883 2024-02-22 17:59:17.323 2024-02-22 17:59:17.323 1000 FEE 435337 4984 6034886 2024-02-22 17:59:19.385 2024-02-22 17:59:19.385 8300 FEE 435231 21339 6034887 2024-02-22 17:59:19.385 2024-02-22 17:59:19.385 74700 TIP 435231 16970 6034906 2024-02-22 18:00:05.824 2024-02-22 18:00:05.824 1000 FEE 435341 18995 6034919 2024-02-22 18:00:55.107 2024-02-22 18:00:55.107 3300 FEE 435115 12609 6034920 2024-02-22 18:00:55.107 2024-02-22 18:00:55.107 29700 TIP 435115 13046 6034965 2024-02-22 18:04:25.156 2024-02-22 18:04:25.156 1000 FEE 435263 21104 6034966 2024-02-22 18:04:25.156 2024-02-22 18:04:25.156 9000 TIP 435263 20412 6034974 2024-02-22 18:04:47.543 2024-02-22 18:04:47.543 8300 FEE 435327 1195 6028094 2024-02-22 01:50:13.051 2024-02-22 01:50:13.051 7700 FEE 434285 21391 6028095 2024-02-22 01:50:13.051 2024-02-22 01:50:13.051 69300 TIP 434285 11091 6028098 2024-02-22 01:51:32.866 2024-02-22 01:51:32.866 100000 FEE 434472 1960 6028120 2024-02-22 01:56:54.528 2024-02-22 01:56:54.528 10000 FEE 79125 11443 6028121 2024-02-22 01:56:54.528 2024-02-22 01:56:54.528 90000 TIP 79125 19235 6028135 2024-02-22 01:59:41.595 2024-02-22 01:59:41.595 2100 FEE 434026 670 6028136 2024-02-22 01:59:41.595 2024-02-22 01:59:41.595 18900 TIP 434026 17148 6028152 2024-02-22 02:00:20.93 2024-02-22 02:00:20.93 2100 FEE 434310 21201 6028153 2024-02-22 02:00:20.93 2024-02-22 02:00:20.93 18900 TIP 434310 20180 6028154 2024-02-22 02:00:23.798 2024-02-22 02:00:23.798 2100 FEE 433962 9354 6028155 2024-02-22 02:00:23.798 2024-02-22 02:00:23.798 18900 TIP 433962 20586 6028161 2024-02-22 02:00:46.553 2024-02-22 02:00:46.553 2100 FEE 434318 900 6028162 2024-02-22 02:00:46.553 2024-02-22 02:00:46.553 18900 TIP 434318 19569 6028208 2024-02-22 02:13:11.874 2024-02-22 02:13:11.874 1000 FEE 434472 7425 6028209 2024-02-22 02:13:11.874 2024-02-22 02:13:11.874 9000 TIP 434472 20245 6028210 2024-02-22 02:13:18.742 2024-02-22 02:13:18.742 1000 FEE 434406 1733 6028211 2024-02-22 02:13:18.742 2024-02-22 02:13:18.742 9000 TIP 434406 1729 6028214 2024-02-22 02:13:31.487 2024-02-22 02:13:31.487 1000 FEE 434456 5758 6028215 2024-02-22 02:13:31.487 2024-02-22 02:13:31.487 9000 TIP 434456 14909 6028227 2024-02-22 02:18:49.56 2024-02-22 02:18:49.56 5000 FEE 434481 16684 6028266 2024-02-22 02:35:37.97 2024-02-22 02:35:37.97 1000 FEE 433347 21067 6028267 2024-02-22 02:35:37.97 2024-02-22 02:35:37.97 9000 TIP 433347 9494 6028292 2024-02-22 02:47:44.409 2024-02-22 02:47:44.409 2100 FEE 434485 11776 6028293 2024-02-22 02:47:44.409 2024-02-22 02:47:44.409 18900 TIP 434485 17797 6028298 2024-02-22 02:49:29.288 2024-02-22 02:49:29.288 10000 FEE 434488 17541 6028310 2024-02-22 02:52:58.178 2024-02-22 02:52:58.178 1000 FEE 434491 1626 6028311 2024-02-22 02:53:01.34 2024-02-22 02:53:01.34 4200 FEE 433833 11164 6028312 2024-02-22 02:53:01.34 2024-02-22 02:53:01.34 37800 TIP 433833 9363 6028333 2024-02-22 02:59:32.969 2024-02-22 02:59:32.969 1000 FEE 434101 20243 6028334 2024-02-22 02:59:32.969 2024-02-22 02:59:32.969 9000 TIP 434101 18751 6028337 2024-02-22 02:59:39.184 2024-02-22 02:59:39.184 800 FEE 434285 6360 6028338 2024-02-22 02:59:39.184 2024-02-22 02:59:39.184 7200 TIP 434285 1474 6028339 2024-02-22 02:59:40.269 2024-02-22 02:59:40.269 800 FEE 434285 8176 6028340 2024-02-22 02:59:40.269 2024-02-22 02:59:40.269 7200 TIP 434285 15484 6028357 2024-02-22 03:04:06.153 2024-02-22 03:04:06.153 0 FEE 434500 19506 6028358 2024-02-22 03:04:40.456 2024-02-22 03:04:40.456 0 FEE 434500 20231 6028390 2024-02-22 03:14:44.528 2024-02-22 03:14:44.528 2100 FEE 434295 900 6028391 2024-02-22 03:14:44.528 2024-02-22 03:14:44.528 18900 TIP 434295 20599 6028423 2024-02-22 03:15:01.247 2024-02-22 03:15:01.247 100 FEE 423475 2789 6028424 2024-02-22 03:15:01.247 2024-02-22 03:15:01.247 900 TIP 423475 4076 6028433 2024-02-22 03:16:12.62 2024-02-22 03:16:12.62 1100 FEE 434285 15147 6028434 2024-02-22 03:16:12.62 2024-02-22 03:16:12.62 9900 TIP 434285 21591 6028461 2024-02-22 03:20:28.165 2024-02-22 03:20:28.165 2100 FEE 434440 1208 6028462 2024-02-22 03:20:28.165 2024-02-22 03:20:28.165 18900 TIP 434440 1741 6028478 2024-02-22 03:30:33.81 2024-02-22 03:30:33.81 1000 FEE 434509 18626 6028491 2024-02-22 03:37:17.396 2024-02-22 03:37:17.396 100 FEE 434509 7673 6028492 2024-02-22 03:37:17.396 2024-02-22 03:37:17.396 900 TIP 434509 13198 6028509 2024-02-22 03:37:20.005 2024-02-22 03:37:20.005 100 FEE 434509 4259 6028510 2024-02-22 03:37:20.005 2024-02-22 03:37:20.005 900 TIP 434509 19980 6028523 2024-02-22 03:37:21.641 2024-02-22 03:37:21.641 100 FEE 434509 17011 6028524 2024-02-22 03:37:21.641 2024-02-22 03:37:21.641 900 TIP 434509 21506 6028535 2024-02-22 03:37:29.932 2024-02-22 03:37:29.932 100 FEE 434509 5703 6028536 2024-02-22 03:37:29.932 2024-02-22 03:37:29.932 900 TIP 434509 4059 6028539 2024-02-22 03:37:30.69 2024-02-22 03:37:30.69 200 FEE 434509 1047 6028540 2024-02-22 03:37:30.69 2024-02-22 03:37:30.69 1800 TIP 434509 20972 6028543 2024-02-22 03:37:31.372 2024-02-22 03:37:31.372 100 FEE 434509 15556 6028544 2024-02-22 03:37:31.372 2024-02-22 03:37:31.372 900 TIP 434509 9844 6028623 2024-02-22 03:42:45.45 2024-02-22 03:42:45.45 1000 FEE 434191 1394 6028624 2024-02-22 03:42:45.45 2024-02-22 03:42:45.45 9000 TIP 434191 4345 6028635 2024-02-22 03:43:37.903 2024-02-22 03:43:37.903 2100 FEE 434485 854 6028636 2024-02-22 03:43:37.903 2024-02-22 03:43:37.903 18900 TIP 434485 20080 6028693 2024-02-22 03:56:08.811 2024-02-22 03:56:08.811 1000 FEE 434520 946 6028729 2024-02-22 04:04:44 2024-02-22 04:04:44 1000 FEE 434501 11866 6028730 2024-02-22 04:04:44 2024-02-22 04:04:44 9000 TIP 434501 1298 6028741 2024-02-22 04:05:08.659 2024-02-22 04:05:08.659 1000 FEE 434441 19094 6028742 2024-02-22 04:05:08.659 2024-02-22 04:05:08.659 9000 TIP 434441 19189 6028745 2024-02-22 04:05:09.702 2024-02-22 04:05:09.702 8300 FEE 434514 717 6028746 2024-02-22 04:05:09.702 2024-02-22 04:05:09.702 74700 TIP 434514 18581 6028763 2024-02-22 04:07:16.653 2024-02-22 04:07:16.653 1000 FEE 434529 1712 6028778 2024-02-22 04:13:58.863 2024-02-22 04:13:58.863 8300 FEE 434528 18313 6028779 2024-02-22 04:13:58.863 2024-02-22 04:13:58.863 74700 TIP 434528 998 6028831 2024-02-22 04:28:45.978 2024-02-22 04:28:45.978 100 FEE 434488 16830 6028832 2024-02-22 04:28:45.978 2024-02-22 04:28:45.978 900 TIP 434488 4763 6028862 2024-02-22 04:33:09.63 2024-02-22 04:33:09.63 100 FEE 434514 19036 6028863 2024-02-22 04:33:09.63 2024-02-22 04:33:09.63 900 TIP 434514 9242 6028889 2024-02-22 04:34:21.676 2024-02-22 04:34:21.676 9000 FEE 434440 18313 6028890 2024-02-22 04:34:21.676 2024-02-22 04:34:21.676 81000 TIP 434440 1784 6028899 2024-02-22 04:35:33.788 2024-02-22 04:35:33.788 900 FEE 434424 20674 6028900 2024-02-22 04:35:33.788 2024-02-22 04:35:33.788 8100 TIP 434424 19103 6028917 2024-02-22 04:39:34.851 2024-02-22 04:39:34.851 2000 FEE 434544 18667 6028918 2024-02-22 04:39:34.851 2024-02-22 04:39:34.851 18000 TIP 434544 16270 6028921 2024-02-22 04:39:35.255 2024-02-22 04:39:35.255 2000 FEE 434544 641 6028922 2024-02-22 04:39:35.255 2024-02-22 04:39:35.255 18000 TIP 434544 15560 6028947 2024-02-22 04:44:32.712 2024-02-22 04:44:32.712 1000 FEE 434025 1394 6028948 2024-02-22 04:44:32.712 2024-02-22 04:44:32.712 9000 TIP 434025 21591 6028951 2024-02-22 04:44:49.23 2024-02-22 04:44:49.23 1000 FEE 434395 20802 6028952 2024-02-22 04:44:49.23 2024-02-22 04:44:49.23 9000 TIP 434395 2844 6028972 2024-02-22 04:51:57.484 2024-02-22 04:51:57.484 1000 FEE 434548 8870 6028986 2024-02-22 04:58:33.356 2024-02-22 04:58:33.356 1000 FEE 434553 1209 6029012 2024-02-22 05:09:55.646 2024-02-22 05:09:55.646 1100 FEE 434422 21485 6029013 2024-02-22 05:09:55.646 2024-02-22 05:09:55.646 9900 TIP 434422 21103 6028100 2024-02-22 01:52:58.797 2024-02-22 01:52:58.797 2500 FEE 434285 18743 6028101 2024-02-22 01:52:58.797 2024-02-22 01:52:58.797 22500 TIP 434285 766 6028106 2024-02-22 01:53:10.516 2024-02-22 01:53:10.516 900 FEE 434472 21314 6028107 2024-02-22 01:53:10.516 2024-02-22 01:53:10.516 8100 TIP 434472 19494 6028144 2024-02-22 02:00:10.224 2024-02-22 02:00:10.224 2100 FEE 434048 21292 6028145 2024-02-22 02:00:10.224 2024-02-22 02:00:10.224 18900 TIP 434048 1552 6028156 2024-02-22 02:00:35.371 2024-02-22 02:00:35.371 1000 FEE 434474 20500 6028165 2024-02-22 02:00:51.069 2024-02-22 02:00:51.069 1000 FEE 434475 16912 6028167 2024-02-22 02:01:09.451 2024-02-22 02:01:09.451 1300 FEE 433376 4314 6028168 2024-02-22 02:01:09.451 2024-02-22 02:01:09.451 11700 TIP 433376 917 6028186 2024-02-22 02:04:37.347 2024-02-22 02:04:37.347 800 FEE 434243 17523 6028187 2024-02-22 02:04:37.347 2024-02-22 02:04:37.347 7200 TIP 434243 9166 6028189 2024-02-22 02:05:06.33 2024-02-22 02:05:06.33 1000 FEE 434477 12561 6028193 2024-02-22 02:08:46.821 2024-02-22 02:08:46.821 1000 FEE 434478 18679 6028199 2024-02-22 02:10:25.818 2024-02-22 02:10:25.818 2100 FEE 434410 1737 6028200 2024-02-22 02:10:25.818 2024-02-22 02:10:25.818 18900 TIP 434410 954 6028236 2024-02-22 02:22:21.691 2024-02-22 02:22:21.691 1000 FEE 434482 14247 6028274 2024-02-22 02:38:26.588 2024-02-22 02:38:26.588 4000 FEE 434485 8133 6028275 2024-02-22 02:38:26.588 2024-02-22 02:38:26.588 36000 TIP 434485 16556 6028302 2024-02-22 02:50:05.276 2024-02-22 02:50:05.276 1000 FEE 434489 15119 6028330 2024-02-22 02:58:06.069 2024-02-22 02:58:06.069 2100 FEE 434469 16348 6028331 2024-02-22 02:58:06.069 2024-02-22 02:58:06.069 18900 TIP 434469 1401 6028345 2024-02-22 03:00:36.214 2024-02-22 03:00:36.214 3100 FEE 434441 21482 6028346 2024-02-22 03:00:36.214 2024-02-22 03:00:36.214 27900 TIP 434441 6310 6028347 2024-02-22 03:00:36.839 2024-02-22 03:00:36.839 27900 FEE 434441 16789 6028348 2024-02-22 03:00:36.839 2024-02-22 03:00:36.839 251100 TIP 434441 19735 6028372 2024-02-22 03:06:19.581 2024-02-22 03:06:19.581 4600 FEE 434500 15806 6028373 2024-02-22 03:06:19.581 2024-02-22 03:06:19.581 41400 TIP 434500 2162 6028389 2024-02-22 03:14:20.863 2024-02-22 03:14:20.863 100000 FEE 434504 1326 6028398 2024-02-22 03:14:49.227 2024-02-22 03:14:49.227 100 FEE 423475 9363 6028399 2024-02-22 03:14:49.227 2024-02-22 03:14:49.227 900 TIP 423475 17976 6028421 2024-02-22 03:15:00.855 2024-02-22 03:15:00.855 100 FEE 423475 14015 6028422 2024-02-22 03:15:00.855 2024-02-22 03:15:00.855 900 TIP 423475 16754 6028437 2024-02-22 03:16:13.117 2024-02-22 03:16:13.117 1100 FEE 434285 21263 6028438 2024-02-22 03:16:13.117 2024-02-22 03:16:13.117 9900 TIP 434285 18500 6028453 2024-02-22 03:18:09.721 2024-02-22 03:18:09.721 100 FEE 423720 897 6028454 2024-02-22 03:18:09.721 2024-02-22 03:18:09.721 900 TIP 423720 3440 6028459 2024-02-22 03:20:23.392 2024-02-22 03:20:23.392 2100 FEE 434469 4984 6028460 2024-02-22 03:20:23.392 2024-02-22 03:20:23.392 18900 TIP 434469 20058 6028493 2024-02-22 03:37:17.817 2024-02-22 03:37:17.817 100 FEE 434509 6499 6028494 2024-02-22 03:37:17.817 2024-02-22 03:37:17.817 900 TIP 434509 19809 6028517 2024-02-22 03:37:20.995 2024-02-22 03:37:20.995 100 FEE 434509 19198 6028518 2024-02-22 03:37:20.995 2024-02-22 03:37:20.995 900 TIP 434509 6688 6028519 2024-02-22 03:37:21.076 2024-02-22 03:37:21.076 100 FEE 434509 8541 6028520 2024-02-22 03:37:21.076 2024-02-22 03:37:21.076 900 TIP 434509 4633 6028521 2024-02-22 03:37:21.386 2024-02-22 03:37:21.386 100 FEE 434509 21356 6028522 2024-02-22 03:37:21.386 2024-02-22 03:37:21.386 900 TIP 434509 19458 6028527 2024-02-22 03:37:22.157 2024-02-22 03:37:22.157 100 FEE 434509 20892 6028528 2024-02-22 03:37:22.157 2024-02-22 03:37:22.157 900 TIP 434509 20642 6028537 2024-02-22 03:37:30.302 2024-02-22 03:37:30.302 100 FEE 434509 1094 6028538 2024-02-22 03:37:30.302 2024-02-22 03:37:30.302 900 TIP 434509 14545 6028547 2024-02-22 03:37:32.401 2024-02-22 03:37:32.401 200 FEE 434509 21417 6028548 2024-02-22 03:37:32.401 2024-02-22 03:37:32.401 1800 TIP 434509 17541 6028557 2024-02-22 03:37:34.315 2024-02-22 03:37:34.315 100 FEE 434509 6360 6028558 2024-02-22 03:37:34.315 2024-02-22 03:37:34.315 900 TIP 434509 21033 6028575 2024-02-22 03:37:42.161 2024-02-22 03:37:42.161 100 FEE 434509 992 6028576 2024-02-22 03:37:42.161 2024-02-22 03:37:42.161 900 TIP 434509 20099 6028577 2024-02-22 03:37:42.354 2024-02-22 03:37:42.354 100 FEE 434509 18403 6028578 2024-02-22 03:37:42.354 2024-02-22 03:37:42.354 900 TIP 434509 704 6028599 2024-02-22 03:39:11.363 2024-02-22 03:39:11.363 100 FEE 434509 9242 6028600 2024-02-22 03:39:11.363 2024-02-22 03:39:11.363 900 TIP 434509 4415 6028604 2024-02-22 03:39:56.665 2024-02-22 03:39:56.665 10000 FEE 433851 16556 6028605 2024-02-22 03:39:56.665 2024-02-22 03:39:56.665 90000 TIP 433851 18472 6028621 2024-02-22 03:42:43.154 2024-02-22 03:42:43.154 1000 FEE 434479 15728 6028622 2024-02-22 03:42:43.154 2024-02-22 03:42:43.154 9000 TIP 434479 18817 6028625 2024-02-22 03:42:50.52 2024-02-22 03:42:50.52 1000 FEE 434359 20157 6028626 2024-02-22 03:42:50.52 2024-02-22 03:42:50.52 9000 TIP 434359 16042 6028629 2024-02-22 03:43:27.727 2024-02-22 03:43:27.727 100 FEE 434489 18714 6028630 2024-02-22 03:43:27.727 2024-02-22 03:43:27.727 900 TIP 434489 18836 6028631 2024-02-22 03:43:27.971 2024-02-22 03:43:27.971 900 FEE 434489 16536 6028632 2024-02-22 03:43:27.971 2024-02-22 03:43:27.971 8100 TIP 434489 21485 6028652 2024-02-22 03:48:52.284 2024-02-22 03:48:52.284 1000 FEE 434515 8544 6028658 2024-02-22 03:49:42.981 2024-02-22 03:49:42.981 1000 FEE 434438 19378 6028659 2024-02-22 03:49:42.981 2024-02-22 03:49:42.981 9000 TIP 434438 14688 6028671 2024-02-22 03:52:34.063 2024-02-22 03:52:34.063 1000 FEE 434516 18626 6028672 2024-02-22 03:52:48.445 2024-02-22 03:52:48.445 1000 FEE 434435 1740 6028673 2024-02-22 03:52:48.445 2024-02-22 03:52:48.445 9000 TIP 434435 19469 6028690 2024-02-22 03:55:37.767 2024-02-22 03:55:37.767 1000 FEE 434366 19622 6028691 2024-02-22 03:55:37.767 2024-02-22 03:55:37.767 9000 TIP 434366 19924 6028700 2024-02-22 03:56:45.283 2024-02-22 03:56:45.283 1000 FEE 434358 21148 6028701 2024-02-22 03:56:45.283 2024-02-22 03:56:45.283 9000 TIP 434358 21547 6028723 2024-02-22 04:02:44.647 2024-02-22 04:02:44.647 8300 FEE 434523 11158 6028724 2024-02-22 04:02:44.647 2024-02-22 04:02:44.647 74700 TIP 434523 18314 6028753 2024-02-22 04:06:19.146 2024-02-22 04:06:19.146 1000 FEE 434452 18774 6028754 2024-02-22 04:06:19.146 2024-02-22 04:06:19.146 9000 TIP 434452 16351 6028765 2024-02-22 04:08:28.193 2024-02-22 04:08:28.193 1000 FEE 434530 21620 6028782 2024-02-22 04:14:21.257 2024-02-22 04:14:21.257 8300 FEE 434498 4259 6028783 2024-02-22 04:14:21.257 2024-02-22 04:14:21.257 74700 TIP 434498 19996 6028784 2024-02-22 04:14:22.018 2024-02-22 04:14:22.018 8300 FEE 434488 1195 6028785 2024-02-22 04:14:22.018 2024-02-22 04:14:22.018 74700 TIP 434488 21012 6028866 2024-02-22 04:33:15.009 2024-02-22 04:33:15.009 100 FEE 434527 19938 6028867 2024-02-22 04:33:15.009 2024-02-22 04:33:15.009 900 TIP 434527 19905 6028910 2024-02-22 04:37:23.844 2024-02-22 04:37:23.844 2100 FEE 434539 2711 6028102 2024-02-22 01:53:01.264 2024-02-22 01:53:01.264 1000 FEE 434473 21201 6028112 2024-02-22 01:54:06.209 2024-02-22 01:54:06.209 100 FEE 434469 720 6028113 2024-02-22 01:54:06.209 2024-02-22 01:54:06.209 900 TIP 434469 13327 6028128 2024-02-22 01:58:07.728 2024-02-22 01:58:07.728 2100 FEE 434440 21012 6028129 2024-02-22 01:58:07.728 2024-02-22 01:58:07.728 18900 TIP 434440 21539 6028137 2024-02-22 01:59:43.716 2024-02-22 01:59:43.716 2100 FEE 433457 18330 6028138 2024-02-22 01:59:43.716 2024-02-22 01:59:43.716 18900 TIP 433457 7376 6028159 2024-02-22 02:00:45.731 2024-02-22 02:00:45.731 1300 FEE 433345 20036 6028160 2024-02-22 02:00:45.731 2024-02-22 02:00:45.731 11700 TIP 433345 6191 6028169 2024-02-22 02:01:10.788 2024-02-22 02:01:10.788 1300 FEE 433376 18076 6028170 2024-02-22 02:01:10.788 2024-02-22 02:01:10.788 11700 TIP 433376 17522 6028203 2024-02-22 02:12:14.92 2024-02-22 02:12:14.92 1000 FEE 434285 14152 6028204 2024-02-22 02:12:14.92 2024-02-22 02:12:14.92 9000 TIP 434285 21344 6028205 2024-02-22 02:13:01.647 2024-02-22 02:13:01.647 1000 FEE 434395 15336 6028206 2024-02-22 02:13:01.647 2024-02-22 02:13:01.647 9000 TIP 434395 18717 6028277 2024-02-22 02:39:44.583 2024-02-22 02:39:44.583 1000 FEE 434277 21506 6028278 2024-02-22 02:39:44.583 2024-02-22 02:39:44.583 9000 TIP 434277 11862 6028299 2024-02-22 02:49:53.45 2024-02-22 02:49:53.45 1000 FEE 433311 17392 6028300 2024-02-22 02:49:53.45 2024-02-22 02:49:53.45 9000 TIP 433311 21520 6028303 2024-02-22 02:50:22.149 2024-02-22 02:50:22.149 2100 FEE 434488 2709 6028304 2024-02-22 02:50:22.149 2024-02-22 02:50:22.149 18900 TIP 434488 3979 6028317 2024-02-22 02:54:21.176 2024-02-22 02:54:21.176 1000 FEE 434492 1198 6028364 2024-02-22 03:06:18.822 2024-02-22 03:06:18.822 2300 FEE 434500 902 6028365 2024-02-22 03:06:18.822 2024-02-22 03:06:18.822 20700 TIP 434500 705 6028415 2024-02-22 03:14:59.802 2024-02-22 03:14:59.802 100 FEE 423475 8080 6028416 2024-02-22 03:14:59.802 2024-02-22 03:14:59.802 900 TIP 423475 21281 6028431 2024-02-22 03:16:12.458 2024-02-22 03:16:12.458 1100 FEE 434285 19839 6028432 2024-02-22 03:16:12.458 2024-02-22 03:16:12.458 9900 TIP 434285 20439 6028443 2024-02-22 03:18:08.233 2024-02-22 03:18:08.233 100 FEE 423720 21064 6028444 2024-02-22 03:18:08.233 2024-02-22 03:18:08.233 900 TIP 423720 16351 6028481 2024-02-22 03:31:57.482 2024-02-22 03:31:57.482 2100 FEE 434480 15045 6028482 2024-02-22 03:31:57.482 2024-02-22 03:31:57.482 18900 TIP 434480 19995 6028525 2024-02-22 03:37:21.983 2024-02-22 03:37:21.983 100 FEE 434509 20706 6028526 2024-02-22 03:37:21.983 2024-02-22 03:37:21.983 900 TIP 434509 20811 6028533 2024-02-22 03:37:29.647 2024-02-22 03:37:29.647 100 FEE 434509 636 6028534 2024-02-22 03:37:29.647 2024-02-22 03:37:29.647 900 TIP 434509 19905 6028545 2024-02-22 03:37:31.564 2024-02-22 03:37:31.564 100 FEE 434509 4692 6028546 2024-02-22 03:37:31.564 2024-02-22 03:37:31.564 900 TIP 434509 20776 6028581 2024-02-22 03:37:42.742 2024-02-22 03:37:42.742 100 FEE 434509 4322 6028582 2024-02-22 03:37:42.742 2024-02-22 03:37:42.742 900 TIP 434509 20180 6028591 2024-02-22 03:39:10.36 2024-02-22 03:39:10.36 100 FEE 434509 18675 6028592 2024-02-22 03:39:10.36 2024-02-22 03:39:10.36 900 TIP 434509 11522 6028656 2024-02-22 03:49:25.859 2024-02-22 03:49:25.859 4000 FEE 434515 11240 6028657 2024-02-22 03:49:25.859 2024-02-22 03:49:25.859 36000 TIP 434515 20026 6028684 2024-02-22 03:54:31.167 2024-02-22 03:54:31.167 1000 FEE 434404 5825 6028685 2024-02-22 03:54:31.167 2024-02-22 03:54:31.167 9000 TIP 434404 21269 6028698 2024-02-22 03:56:44.611 2024-02-22 03:56:44.611 1000 FEE 433937 21400 6028699 2024-02-22 03:56:44.611 2024-02-22 03:56:44.611 9000 TIP 433937 13204 6028705 2024-02-22 03:57:06.431 2024-02-22 03:57:06.431 1000 FEE 434521 683 6028725 2024-02-22 04:02:49.168 2024-02-22 04:02:49.168 8300 FEE 434512 17030 6028726 2024-02-22 04:02:49.168 2024-02-22 04:02:49.168 74700 TIP 434512 14449 6028747 2024-02-22 04:05:36.385 2024-02-22 04:05:36.385 1000 FEE 434527 9427 6028748 2024-02-22 04:05:46.871 2024-02-22 04:05:46.871 8300 FEE 434514 20182 6028749 2024-02-22 04:05:46.871 2024-02-22 04:05:46.871 74700 TIP 434514 1512 6028786 2024-02-22 04:14:23.924 2024-02-22 04:14:23.924 8300 FEE 434488 1298 6028787 2024-02-22 04:14:23.924 2024-02-22 04:14:23.924 74700 TIP 434488 1180 6028788 2024-02-22 04:14:23.955 2024-02-22 04:14:23.955 8300 FEE 434488 16858 6028789 2024-02-22 04:14:23.955 2024-02-22 04:14:23.955 74700 TIP 434488 6136 6028809 2024-02-22 04:21:58.299 2024-02-22 04:21:58.299 1000 FEE 434537 20691 6028817 2024-02-22 04:24:46.316 2024-02-22 04:24:46.316 1000 FEE 434538 5829 6028827 2024-02-22 04:28:34.704 2024-02-22 04:28:34.704 900 FEE 434498 6003 6028828 2024-02-22 04:28:34.704 2024-02-22 04:28:34.704 8100 TIP 434498 18396 6028829 2024-02-22 04:28:38.394 2024-02-22 04:28:38.394 9000 FEE 434498 9335 6028830 2024-02-22 04:28:38.394 2024-02-22 04:28:38.394 81000 TIP 434498 18608 6028838 2024-02-22 04:31:59.924 2024-02-22 04:31:59.924 1000 FEE 434540 16354 6028844 2024-02-22 04:32:10.096 2024-02-22 04:32:10.096 1000 FEE 434514 3360 6028845 2024-02-22 04:32:10.096 2024-02-22 04:32:10.096 9000 TIP 434514 16042 6028847 2024-02-22 04:32:32.924 2024-02-22 04:32:32.924 1000 FEE 434469 2213 6028848 2024-02-22 04:32:32.924 2024-02-22 04:32:32.924 9000 TIP 434469 16571 6028849 2024-02-22 04:32:33.1 2024-02-22 04:32:33.1 1000 FEE 434469 1030 6028850 2024-02-22 04:32:33.1 2024-02-22 04:32:33.1 9000 TIP 434469 17201 6028851 2024-02-22 04:32:33.766 2024-02-22 04:32:33.766 1000 FEE 434469 5728 6028852 2024-02-22 04:32:33.766 2024-02-22 04:32:33.766 9000 TIP 434469 638 6028857 2024-02-22 04:32:44.885 2024-02-22 04:32:44.885 900 FEE 434485 18241 6028858 2024-02-22 04:32:44.885 2024-02-22 04:32:44.885 8100 TIP 434485 21603 6028870 2024-02-22 04:33:17.997 2024-02-22 04:33:17.997 100 FEE 434540 10862 6028871 2024-02-22 04:33:17.997 2024-02-22 04:33:17.997 900 TIP 434540 21012 6028880 2024-02-22 04:34:02.744 2024-02-22 04:34:02.744 100 FEE 434504 5017 6028881 2024-02-22 04:34:02.744 2024-02-22 04:34:02.744 900 TIP 434504 11165 6028893 2024-02-22 04:35:04.884 2024-02-22 04:35:04.884 100 FEE 434434 10270 6028894 2024-02-22 04:35:04.884 2024-02-22 04:35:04.884 900 TIP 434434 21620 6028902 2024-02-22 04:36:12.082 2024-02-22 04:36:12.082 10000 FEE 434543 20636 6028942 2024-02-22 04:44:03.31 2024-02-22 04:44:03.31 1000 FEE 434300 17109 6028943 2024-02-22 04:44:03.31 2024-02-22 04:44:03.31 9000 TIP 434300 21131 6028953 2024-02-22 04:44:57.734 2024-02-22 04:44:57.734 1000 FEE 433499 20153 6028954 2024-02-22 04:44:57.734 2024-02-22 04:44:57.734 9000 TIP 433499 7877 6028955 2024-02-22 04:44:59.173 2024-02-22 04:44:59.173 1000 FEE 433688 16665 6028956 2024-02-22 04:44:59.173 2024-02-22 04:44:59.173 9000 TIP 433688 19992 6028967 2024-02-22 04:51:00.267 2024-02-22 04:51:00.267 1000 FEE 434309 18209 6028968 2024-02-22 04:51:00.267 2024-02-22 04:51:00.267 9000 TIP 434309 19458 6028970 2024-02-22 04:51:32.565 2024-02-22 04:51:32.565 2100 FEE 434535 20073 6028971 2024-02-22 04:51:32.565 2024-02-22 04:51:32.565 18900 TIP 434535 4989 6028982 2024-02-22 04:56:49.986 2024-02-22 04:56:49.986 1000 FEE 434551 21555 6029004 2024-02-22 05:08:17.334 2024-02-22 05:08:17.334 1000 FEE 434559 20674 6029010 2024-02-22 05:09:46.01 2024-02-22 05:09:46.01 1100 FEE 434384 16284 6029011 2024-02-22 05:09:46.01 2024-02-22 05:09:46.01 9900 TIP 434384 2832 6028141 2024-02-22 01:59:52.474 2024-02-22 01:59:52.474 2100 FEE 434000 18500 6028142 2024-02-22 01:59:52.474 2024-02-22 01:59:52.474 18900 TIP 434000 5449 6028218 2024-02-22 02:16:01.769 2024-02-22 02:16:01.769 1300 FEE 433889 732 6028219 2024-02-22 02:16:01.769 2024-02-22 02:16:01.769 11700 TIP 433889 2774 6028223 2024-02-22 02:18:00.183 2024-02-22 02:18:00.183 2100 FEE 433753 4345 6028224 2024-02-22 02:18:00.183 2024-02-22 02:18:00.183 18900 TIP 433753 10469 6028228 2024-02-22 02:18:54.711 2024-02-22 02:18:54.711 4200 FEE 434385 4126 6028229 2024-02-22 02:18:54.711 2024-02-22 02:18:54.711 37800 TIP 434385 2844 6028232 2024-02-22 02:20:51.632 2024-02-22 02:20:51.632 100 FEE 434399 6688 6028233 2024-02-22 02:20:51.632 2024-02-22 02:20:51.632 900 TIP 434399 19484 6028251 2024-02-22 02:25:06.859 2024-02-22 02:25:06.859 1000 FEE 434484 20062 6028286 2024-02-22 02:42:48.399 2024-02-22 02:42:48.399 1000 FEE 434487 21014 6028294 2024-02-22 02:47:50.357 2024-02-22 02:47:50.357 2100 FEE 434481 17741 6028295 2024-02-22 02:47:50.357 2024-02-22 02:47:50.357 18900 TIP 434481 9183 6028326 2024-02-22 02:57:34.471 2024-02-22 02:57:34.471 2100 FEE 434465 21026 6028327 2024-02-22 02:57:34.471 2024-02-22 02:57:34.471 18900 TIP 434465 1051 6028328 2024-02-22 02:57:54.631 2024-02-22 02:57:54.631 1000 FEE 434496 13406 6028352 2024-02-22 03:01:09.762 2024-02-22 03:01:09.762 100000 FEE 434500 9482 6028370 2024-02-22 03:06:19.52 2024-02-22 03:06:19.52 2300 FEE 434500 17218 6028371 2024-02-22 03:06:19.52 2024-02-22 03:06:19.52 20700 TIP 434500 20799 6028384 2024-02-22 03:10:19.748 2024-02-22 03:10:19.748 1000 FEE 434503 15139 6028392 2024-02-22 03:14:47.329 2024-02-22 03:14:47.329 100 FEE 423475 17552 6028393 2024-02-22 03:14:47.329 2024-02-22 03:14:47.329 900 TIP 423475 21405 6028407 2024-02-22 03:14:58.929 2024-02-22 03:14:58.929 100 FEE 423475 940 6028408 2024-02-22 03:14:58.929 2024-02-22 03:14:58.929 900 TIP 423475 661 6028411 2024-02-22 03:14:59.394 2024-02-22 03:14:59.394 100 FEE 423475 5746 6028412 2024-02-22 03:14:59.394 2024-02-22 03:14:59.394 900 TIP 423475 8242 6028413 2024-02-22 03:14:59.778 2024-02-22 03:14:59.778 100 FEE 423475 685 6028414 2024-02-22 03:14:59.778 2024-02-22 03:14:59.778 900 TIP 423475 17209 6028449 2024-02-22 03:18:09.022 2024-02-22 03:18:09.022 100 FEE 423720 20849 6028450 2024-02-22 03:18:09.022 2024-02-22 03:18:09.022 900 TIP 423720 18714 6028451 2024-02-22 03:18:09.502 2024-02-22 03:18:09.502 200 FEE 423720 12951 6028452 2024-02-22 03:18:09.502 2024-02-22 03:18:09.502 1800 TIP 423720 3686 6028463 2024-02-22 03:20:33.906 2024-02-22 03:20:33.906 2100 FEE 434498 20704 6028464 2024-02-22 03:20:33.906 2024-02-22 03:20:33.906 18900 TIP 434498 9354 6028499 2024-02-22 03:37:18.791 2024-02-22 03:37:18.791 100 FEE 434509 1726 6028500 2024-02-22 03:37:18.791 2024-02-22 03:37:18.791 900 TIP 434509 19142 6028551 2024-02-22 03:37:33.036 2024-02-22 03:37:33.036 100 FEE 434509 20691 6028552 2024-02-22 03:37:33.036 2024-02-22 03:37:33.036 900 TIP 434509 18731 6028553 2024-02-22 03:37:33.445 2024-02-22 03:37:33.445 100 FEE 434509 8926 6028554 2024-02-22 03:37:33.445 2024-02-22 03:37:33.445 900 TIP 434509 20852 6028561 2024-02-22 03:37:34.956 2024-02-22 03:37:34.956 100 FEE 434509 18517 6028562 2024-02-22 03:37:34.956 2024-02-22 03:37:34.956 900 TIP 434509 18453 6028569 2024-02-22 03:37:39.829 2024-02-22 03:37:39.829 100 FEE 434509 20376 6028570 2024-02-22 03:37:39.829 2024-02-22 03:37:39.829 900 TIP 434509 21222 6028579 2024-02-22 03:37:42.581 2024-02-22 03:37:42.581 100 FEE 434509 1505 6028580 2024-02-22 03:37:42.581 2024-02-22 03:37:42.581 900 TIP 434509 19541 6028585 2024-02-22 03:37:43.185 2024-02-22 03:37:43.185 100 FEE 434509 2576 6028586 2024-02-22 03:37:43.185 2024-02-22 03:37:43.185 900 TIP 434509 18817 6028593 2024-02-22 03:39:10.721 2024-02-22 03:39:10.721 100 FEE 434509 20577 6028594 2024-02-22 03:39:10.721 2024-02-22 03:39:10.721 900 TIP 434509 19796 6028595 2024-02-22 03:39:11.172 2024-02-22 03:39:11.172 100 FEE 434509 19346 6028596 2024-02-22 03:39:11.172 2024-02-22 03:39:11.172 900 TIP 434509 19981 6028601 2024-02-22 03:39:12.834 2024-02-22 03:39:12.834 10000 FEE 434385 2709 6028602 2024-02-22 03:39:12.834 2024-02-22 03:39:12.834 90000 TIP 434385 698 6028611 2024-02-22 03:42:41.265 2024-02-22 03:42:41.265 1000 FEE 434479 14795 6028612 2024-02-22 03:42:41.265 2024-02-22 03:42:41.265 9000 TIP 434479 5703 6028613 2024-02-22 03:42:41.522 2024-02-22 03:42:41.522 1000 FEE 434479 17042 6028614 2024-02-22 03:42:41.522 2024-02-22 03:42:41.522 9000 TIP 434479 10690 6028619 2024-02-22 03:42:42.958 2024-02-22 03:42:42.958 1000 FEE 434479 3342 6028620 2024-02-22 03:42:42.958 2024-02-22 03:42:42.958 9000 TIP 434479 21222 6028638 2024-02-22 03:44:58.855 2024-02-22 03:44:58.855 10000 FEE 433937 6419 6028639 2024-02-22 03:44:58.855 2024-02-22 03:44:58.855 90000 TIP 433937 7960 6028645 2024-02-22 03:47:29.177 2024-02-22 03:47:29.177 1000 FEE 434285 1439 6028646 2024-02-22 03:47:29.177 2024-02-22 03:47:29.177 9000 TIP 434285 18525 6028647 2024-02-22 03:47:32.91 2024-02-22 03:47:32.91 1000 FEE 434278 19615 6028648 2024-02-22 03:47:32.91 2024-02-22 03:47:32.91 9000 TIP 434278 12218 6028653 2024-02-22 03:48:59.395 2024-02-22 03:48:59.395 1000 FEE 434417 20424 6028654 2024-02-22 03:48:59.395 2024-02-22 03:48:59.395 9000 TIP 434417 16965 6028660 2024-02-22 03:49:53.339 2024-02-22 03:49:53.339 1000 FEE 434335 762 6028661 2024-02-22 03:49:53.339 2024-02-22 03:49:53.339 9000 TIP 434335 20433 6028676 2024-02-22 03:53:45.193 2024-02-22 03:53:45.193 1000 FEE 434518 9906 6028716 2024-02-22 04:01:29.576 2024-02-22 04:01:29.576 1000 FEE 265848 1051 6028717 2024-02-22 04:01:29.576 2024-02-22 04:01:29.576 9000 TIP 265848 2735 6028731 2024-02-22 04:04:49.351 2024-02-22 04:04:49.351 1000 FEE 434526 6419 6028737 2024-02-22 04:05:07.574 2024-02-22 04:05:07.574 8300 FEE 434514 4076 6028738 2024-02-22 04:05:07.574 2024-02-22 04:05:07.574 74700 TIP 434514 20433 6028739 2024-02-22 04:05:07.742 2024-02-22 04:05:07.742 8300 FEE 434514 7185 6028740 2024-02-22 04:05:07.742 2024-02-22 04:05:07.742 74700 TIP 434514 1237 6028743 2024-02-22 04:05:09.655 2024-02-22 04:05:09.655 8300 FEE 434514 12483 6028744 2024-02-22 04:05:09.655 2024-02-22 04:05:09.655 74700 TIP 434514 1785 6028759 2024-02-22 04:06:31.676 2024-02-22 04:06:31.676 100 FEE 434527 2734 6028760 2024-02-22 04:06:31.676 2024-02-22 04:06:31.676 900 TIP 434527 16684 6028769 2024-02-22 04:10:04.374 2024-02-22 04:10:04.374 1000 FEE 434532 9796 6028776 2024-02-22 04:13:51.719 2024-02-22 04:13:51.719 4200 FEE 409082 17209 6028777 2024-02-22 04:13:51.719 2024-02-22 04:13:51.719 37800 TIP 409082 5003 6028810 2024-02-22 04:22:01.558 2024-02-22 04:22:01.558 1000 FEE 434026 19843 6028811 2024-02-22 04:22:01.558 2024-02-22 04:22:01.558 9000 TIP 434026 20912 6028840 2024-02-22 04:32:09.611 2024-02-22 04:32:09.611 1000 FEE 434514 11073 6028841 2024-02-22 04:32:09.611 2024-02-22 04:32:09.611 9000 TIP 434514 917 6028846 2024-02-22 04:32:21.342 2024-02-22 04:32:21.342 10000 FEE 434541 8400 6028859 2024-02-22 04:32:45.709 2024-02-22 04:32:45.709 9000 FEE 434485 12946 6028166 2024-02-22 02:01:04.41 2024-02-22 02:01:04.41 1000 STREAM 141924 5425 6034523 2024-02-22 17:35:10.374 2024-02-22 17:35:10.374 22500 TIP 435046 1471 6034526 2024-02-22 17:35:36.124 2024-02-22 17:35:36.124 3000 FEE 435292 20657 6034527 2024-02-22 17:35:36.124 2024-02-22 17:35:36.124 27000 TIP 435292 20811 6034544 2024-02-22 17:36:59.632 2024-02-22 17:36:59.632 0 FEE 435224 9705 6034567 2024-02-22 17:40:11.911 2024-02-22 17:40:11.911 1000 FEE 435304 12356 6034572 2024-02-22 17:40:16.313 2024-02-22 17:40:16.313 1000 FEE 435294 21208 6034573 2024-02-22 17:40:16.313 2024-02-22 17:40:16.313 9000 TIP 435294 19043 6034585 2024-02-22 17:40:35.805 2024-02-22 17:40:35.805 1000 FEE 435120 20613 6034586 2024-02-22 17:40:35.805 2024-02-22 17:40:35.805 9000 TIP 435120 20788 6034626 2024-02-22 17:43:04.395 2024-02-22 17:43:04.395 2100 FEE 435231 1726 6034627 2024-02-22 17:43:04.395 2024-02-22 17:43:04.395 18900 TIP 435231 21491 6034642 2024-02-22 17:44:29.887 2024-02-22 17:44:29.887 0 FEE 435306 652 6034647 2024-02-22 17:45:45.458 2024-02-22 17:45:45.458 1000 FEE 435309 7119 6034655 2024-02-22 17:46:44.324 2024-02-22 17:46:44.324 1000 FEE 435312 19938 6034667 2024-02-22 17:47:21.103 2024-02-22 17:47:21.103 800 FEE 435283 762 6034668 2024-02-22 17:47:21.103 2024-02-22 17:47:21.103 7200 TIP 435283 1471 6034676 2024-02-22 17:47:48.44 2024-02-22 17:47:48.44 100000 FEE 435314 16329 6034685 2024-02-22 17:47:58.679 2024-02-22 17:47:58.679 900 FEE 435224 15662 6034686 2024-02-22 17:47:58.679 2024-02-22 17:47:58.679 8100 TIP 435224 703 6034703 2024-02-22 17:49:17.741 2024-02-22 17:49:17.741 2100 FEE 435030 19821 6034704 2024-02-22 17:49:17.741 2024-02-22 17:49:17.741 18900 TIP 435030 14168 6034725 2024-02-22 17:49:47.211 2024-02-22 17:49:47.211 2100 FEE 435136 1490 6034726 2024-02-22 17:49:47.211 2024-02-22 17:49:47.211 18900 TIP 435136 16354 6034749 2024-02-22 17:50:00.56 2024-02-22 17:50:00.56 2100 FEE 434994 19905 6034750 2024-02-22 17:50:00.56 2024-02-22 17:50:00.56 18900 TIP 434994 20554 6034769 2024-02-22 17:50:46.572 2024-02-22 17:50:46.572 2300 FEE 435308 21585 6034770 2024-02-22 17:50:46.572 2024-02-22 17:50:46.572 20700 TIP 435308 9169 6034788 2024-02-22 17:51:26.279 2024-02-22 17:51:26.279 1000 FEE 435319 10409 6034797 2024-02-22 17:53:38.543 2024-02-22 17:53:38.543 2500 FEE 435303 11395 6034798 2024-02-22 17:53:38.543 2024-02-22 17:53:38.543 22500 TIP 435303 21090 6034799 2024-02-22 17:53:40.244 2024-02-22 17:53:40.244 1000 FEE 435324 16456 6034829 2024-02-22 17:55:43.73 2024-02-22 17:55:43.73 5000 FEE 435328 7510 6034830 2024-02-22 17:55:43.73 2024-02-22 17:55:43.73 45000 TIP 435328 20585 6034837 2024-02-22 17:55:46.853 2024-02-22 17:55:46.853 900 FEE 435328 15200 6034838 2024-02-22 17:55:46.853 2024-02-22 17:55:46.853 8100 TIP 435328 798 6034839 2024-02-22 17:55:47.61 2024-02-22 17:55:47.61 9000 FEE 435328 20691 6034840 2024-02-22 17:55:47.61 2024-02-22 17:55:47.61 81000 TIP 435328 6361 6034845 2024-02-22 17:56:38.993 2024-02-22 17:56:38.993 1000 FEE 435330 8376 6034853 2024-02-22 17:56:53.248 2024-02-22 17:56:53.248 0 FEE 435330 16440 6034857 2024-02-22 17:57:04.833 2024-02-22 17:57:04.833 1000 FEE 435332 4345 6034870 2024-02-22 17:58:39.393 2024-02-22 17:58:39.393 3300 FEE 435217 20187 6034871 2024-02-22 17:58:39.393 2024-02-22 17:58:39.393 29700 TIP 435217 6687 6034888 2024-02-22 17:59:19.545 2024-02-22 17:59:19.545 8300 FEE 435231 21249 6034889 2024-02-22 17:59:19.545 2024-02-22 17:59:19.545 74700 TIP 435231 925 6034907 2024-02-22 18:00:09.394 2024-02-22 18:00:09.394 1000 FEE 435342 15271 6034928 2024-02-22 18:01:08.853 2024-02-22 18:01:08.853 21000 FEE 435343 21063 6034930 2024-02-22 18:01:14.272 2024-02-22 18:01:14.272 3300 FEE 435274 10530 6034931 2024-02-22 18:01:14.272 2024-02-22 18:01:14.272 29700 TIP 435274 19929 6034939 2024-02-22 18:01:36.099 2024-02-22 18:01:36.099 3300 FEE 435318 738 6034940 2024-02-22 18:01:36.099 2024-02-22 18:01:36.099 29700 TIP 435318 1960 6034978 2024-02-22 18:04:47.939 2024-02-22 18:04:47.939 8300 FEE 435327 9482 6034979 2024-02-22 18:04:47.939 2024-02-22 18:04:47.939 74700 TIP 435327 5757 6035020 2024-02-22 18:05:51.696 2024-02-22 18:05:51.696 100 FEE 435327 19332 6035021 2024-02-22 18:05:51.696 2024-02-22 18:05:51.696 900 TIP 435327 837 6035024 2024-02-22 18:05:52.638 2024-02-22 18:05:52.638 9000 FEE 435327 19952 6035025 2024-02-22 18:05:52.638 2024-02-22 18:05:52.638 81000 TIP 435327 17171 6035028 2024-02-22 18:05:55.199 2024-02-22 18:05:55.199 1000 FEE 435314 18837 6035029 2024-02-22 18:05:55.199 2024-02-22 18:05:55.199 9000 TIP 435314 18452 6035042 2024-02-22 18:06:00.359 2024-02-22 18:06:00.359 8300 FEE 435231 2046 6035043 2024-02-22 18:06:00.359 2024-02-22 18:06:00.359 74700 TIP 435231 14905 6035058 2024-02-22 18:07:54.238 2024-02-22 18:07:54.238 1600 FEE 434820 659 6035059 2024-02-22 18:07:54.238 2024-02-22 18:07:54.238 14400 TIP 434820 13544 6035107 2024-02-22 18:11:11.548 2024-02-22 18:11:11.548 2100 FEE 435342 1737 6035108 2024-02-22 18:11:11.548 2024-02-22 18:11:11.548 18900 TIP 435342 20963 6035149 2024-02-22 18:12:46.667 2024-02-22 18:12:46.667 0 FEE 435350 5557 6035196 2024-02-22 18:20:22.061 2024-02-22 18:20:22.061 2300 FEE 435346 2039 6035197 2024-02-22 18:20:22.061 2024-02-22 18:20:22.061 20700 TIP 435346 18473 6035247 2024-02-22 18:24:34.216 2024-02-22 18:24:34.216 1000 FEE 435326 18291 6035248 2024-02-22 18:24:34.216 2024-02-22 18:24:34.216 9000 TIP 435326 2000 6035257 2024-02-22 18:24:49.873 2024-02-22 18:24:49.873 1000 FEE 435328 675 6035258 2024-02-22 18:24:49.873 2024-02-22 18:24:49.873 9000 TIP 435328 19652 6035273 2024-02-22 18:25:54.645 2024-02-22 18:25:54.645 1000 FEE 435361 2151 6035274 2024-02-22 18:25:54.645 2024-02-22 18:25:54.645 9000 TIP 435361 730 6035279 2024-02-22 18:27:13.806 2024-02-22 18:27:13.806 3000 FEE 435359 3990 6035280 2024-02-22 18:27:13.806 2024-02-22 18:27:13.806 27000 TIP 435359 4118 6035281 2024-02-22 18:27:14.422 2024-02-22 18:27:14.422 27000 FEE 435359 11621 6035282 2024-02-22 18:27:14.422 2024-02-22 18:27:14.422 243000 TIP 435359 9339 6035389 2024-02-22 18:34:38.736 2024-02-22 18:34:38.736 2100 FEE 435120 20470 6035390 2024-02-22 18:34:38.736 2024-02-22 18:34:38.736 18900 TIP 435120 16485 6035423 2024-02-22 18:37:59.091 2024-02-22 18:37:59.091 1100 FEE 435261 2293 6035424 2024-02-22 18:37:59.091 2024-02-22 18:37:59.091 9900 TIP 435261 20606 6035439 2024-02-22 18:39:28.778 2024-02-22 18:39:28.778 10000 FEE 435046 18313 6035440 2024-02-22 18:39:28.778 2024-02-22 18:39:28.778 90000 TIP 435046 19105 6035448 2024-02-22 18:40:22.313 2024-02-22 18:40:22.313 2100 FEE 435235 21599 6035449 2024-02-22 18:40:22.313 2024-02-22 18:40:22.313 18900 TIP 435235 2195 6035451 2024-02-22 18:40:26.013 2024-02-22 18:40:26.013 10000 FEE 435328 19572 6035452 2024-02-22 18:40:26.013 2024-02-22 18:40:26.013 90000 TIP 435328 16442 6035465 2024-02-22 18:40:39.957 2024-02-22 18:40:39.957 1100 FEE 434807 16357 6035466 2024-02-22 18:40:39.957 2024-02-22 18:40:39.957 9900 TIP 434807 17494 6035484 2024-02-22 18:40:50.919 2024-02-22 18:40:50.919 1000 FEE 435375 18101 6035485 2024-02-22 18:40:50.919 2024-02-22 18:40:50.919 9000 TIP 435375 12768 6035497 2024-02-22 18:41:23.088 2024-02-22 18:41:23.088 1000 FEE 435231 1729 6035498 2024-02-22 18:41:23.088 2024-02-22 18:41:23.088 9000 TIP 435231 2775 6035521 2024-02-22 18:41:34.226 2024-02-22 18:41:34.226 1000 FEE 435231 684 6035522 2024-02-22 18:41:34.226 2024-02-22 18:41:34.226 9000 TIP 435231 17798 6035554 2024-02-22 18:46:50.38 2024-02-22 18:46:50.38 2100 FEE 435328 684 6035555 2024-02-22 18:46:50.38 2024-02-22 18:46:50.38 18900 TIP 435328 6594 6035559 2024-02-22 18:47:04.732 2024-02-22 18:47:04.732 0 FEE 435380 1609 6035564 2024-02-22 18:47:11.085 2024-02-22 18:47:11.085 1000 FEE 435231 19132 6035565 2024-02-22 18:47:11.085 2024-02-22 18:47:11.085 9000 TIP 435231 1515 6035570 2024-02-22 18:47:25.038 2024-02-22 18:47:25.038 1000 FEE 435381 4395 6035587 2024-02-22 18:48:25.541 2024-02-22 18:48:25.541 1000 FEE 434124 15049 6035588 2024-02-22 18:48:25.541 2024-02-22 18:48:25.541 9000 TIP 434124 13097 6035593 2024-02-22 18:48:28.247 2024-02-22 18:48:28.247 0 FEE 435378 14688 6035594 2024-02-22 18:48:28.481 2024-02-22 18:48:28.481 1000 FEE 435381 18743 6028178 2024-02-22 02:04:34.138 2024-02-22 02:04:34.138 1000 FEE 434437 19660 6028179 2024-02-22 02:04:34.138 2024-02-22 02:04:34.138 9000 TIP 434437 644 6028195 2024-02-22 02:09:25.714 2024-02-22 02:09:25.714 1000 FEE 434479 1298 6028239 2024-02-22 02:22:49.314 2024-02-22 02:22:49.314 400 FEE 434392 10063 6028240 2024-02-22 02:22:49.314 2024-02-22 02:22:49.314 3600 TIP 434392 20470 6028243 2024-02-22 02:22:51.346 2024-02-22 02:22:51.346 400 FEE 434316 17800 6028244 2024-02-22 02:22:51.346 2024-02-22 02:22:51.346 3600 TIP 434316 993 6028248 2024-02-22 02:24:50.634 2024-02-22 02:24:50.634 100 FEE 433978 11776 6028249 2024-02-22 02:24:50.634 2024-02-22 02:24:50.634 900 TIP 433978 638 6028252 2024-02-22 02:25:11.283 2024-02-22 02:25:11.283 9000 FEE 434469 6137 6028253 2024-02-22 02:25:11.283 2024-02-22 02:25:11.283 81000 TIP 434469 925 6028270 2024-02-22 02:37:51.641 2024-02-22 02:37:51.641 4000 FEE 434485 21275 6028271 2024-02-22 02:37:51.641 2024-02-22 02:37:51.641 36000 TIP 434485 675 6028305 2024-02-22 02:50:57.79 2024-02-22 02:50:57.79 10000 FEE 434396 21239 6028306 2024-02-22 02:50:57.79 2024-02-22 02:50:57.79 90000 TIP 434396 21469 6028308 2024-02-22 02:51:45.998 2024-02-22 02:51:45.998 1000 FEE 434490 3461 6028314 2024-02-22 02:53:55.956 2024-02-22 02:53:55.956 5000 FEE 434413 20183 6028315 2024-02-22 02:53:55.956 2024-02-22 02:53:55.956 45000 TIP 434413 12769 6028320 2024-02-22 02:54:59.14 2024-02-22 02:54:59.14 1000 FEE 434493 4074 6028362 2024-02-22 03:06:18.682 2024-02-22 03:06:18.682 2300 FEE 434500 20924 6028363 2024-02-22 03:06:18.682 2024-02-22 03:06:18.682 20700 TIP 434500 1534 6028405 2024-02-22 03:14:58.687 2024-02-22 03:14:58.687 100 FEE 423475 6421 6028406 2024-02-22 03:14:58.687 2024-02-22 03:14:58.687 900 TIP 423475 19126 6028429 2024-02-22 03:16:12.329 2024-02-22 03:16:12.329 1100 FEE 434285 1221 6028430 2024-02-22 03:16:12.329 2024-02-22 03:16:12.329 9900 TIP 434285 12175 6028435 2024-02-22 03:16:12.934 2024-02-22 03:16:12.934 1100 FEE 434285 684 6028436 2024-02-22 03:16:12.934 2024-02-22 03:16:12.934 9900 TIP 434285 11395 6028445 2024-02-22 03:18:08.563 2024-02-22 03:18:08.563 100 FEE 423720 10311 6028446 2024-02-22 03:18:08.563 2024-02-22 03:18:08.563 900 TIP 423720 19033 6028447 2024-02-22 03:18:08.847 2024-02-22 03:18:08.847 100 FEE 423720 797 6028448 2024-02-22 03:18:08.847 2024-02-22 03:18:08.847 900 TIP 423720 2098 6028468 2024-02-22 03:21:39.984 2024-02-22 03:21:39.984 1000 FEE 434508 19976 6028501 2024-02-22 03:37:18.922 2024-02-22 03:37:18.922 100 FEE 434509 1605 6028502 2024-02-22 03:37:18.922 2024-02-22 03:37:18.922 900 TIP 434509 15243 6028511 2024-02-22 03:37:20.207 2024-02-22 03:37:20.207 100 FEE 434509 699 6028512 2024-02-22 03:37:20.207 2024-02-22 03:37:20.207 900 TIP 434509 20062 6028513 2024-02-22 03:37:20.432 2024-02-22 03:37:20.432 100 FEE 434509 17707 6028514 2024-02-22 03:37:20.432 2024-02-22 03:37:20.432 900 TIP 434509 1060 6028515 2024-02-22 03:37:20.683 2024-02-22 03:37:20.683 100 FEE 434509 16649 6028516 2024-02-22 03:37:20.683 2024-02-22 03:37:20.683 900 TIP 434509 14503 6028529 2024-02-22 03:37:22.525 2024-02-22 03:37:22.525 100 FEE 434509 1245 6028530 2024-02-22 03:37:22.525 2024-02-22 03:37:22.525 900 TIP 434509 17891 6028549 2024-02-22 03:37:32.721 2024-02-22 03:37:32.721 100 FEE 434509 11220 6028550 2024-02-22 03:37:32.721 2024-02-22 03:37:32.721 900 TIP 434509 21291 6028563 2024-02-22 03:37:35.204 2024-02-22 03:37:35.204 100 FEE 434509 18269 6028564 2024-02-22 03:37:35.204 2024-02-22 03:37:35.204 900 TIP 434509 17106 6028567 2024-02-22 03:37:39.433 2024-02-22 03:37:39.433 100 FEE 434509 18641 6028568 2024-02-22 03:37:39.433 2024-02-22 03:37:39.433 900 TIP 434509 4521 6028677 2024-02-22 03:53:51.098 2024-02-22 03:53:51.098 1000 FEE 434442 12272 6028678 2024-02-22 03:53:51.098 2024-02-22 03:53:51.098 9000 TIP 434442 14472 6028702 2024-02-22 03:56:45.289 2024-02-22 03:56:45.289 1000 FEE 433937 2347 6028703 2024-02-22 03:56:45.289 2024-02-22 03:56:45.289 9000 TIP 433937 16667 6028707 2024-02-22 03:57:59.255 2024-02-22 03:57:59.255 1000 FEE 434523 1438 6028718 2024-02-22 04:01:53.948 2024-02-22 04:01:53.948 1000 FEE 266131 876 6028719 2024-02-22 04:01:53.948 2024-02-22 04:01:53.948 9000 TIP 266131 16440 6028721 2024-02-22 04:02:44.511 2024-02-22 04:02:44.511 8300 FEE 434523 1352 6028722 2024-02-22 04:02:44.511 2024-02-22 04:02:44.511 74700 TIP 434523 17602 6028732 2024-02-22 04:04:55.704 2024-02-22 04:04:55.704 1000 FEE 434490 20479 6028733 2024-02-22 04:04:55.704 2024-02-22 04:04:55.704 9000 TIP 434490 21514 6028767 2024-02-22 04:09:50.632 2024-02-22 04:09:50.632 1000 FEE 434531 18581 6028781 2024-02-22 04:14:05.99 2024-02-22 04:14:05.99 1000 FEE 434534 9438 6028792 2024-02-22 04:14:25.07 2024-02-22 04:14:25.07 8300 FEE 434498 15890 6028793 2024-02-22 04:14:25.07 2024-02-22 04:14:25.07 74700 TIP 434498 1224 6028801 2024-02-22 04:18:28.739 2024-02-22 04:18:28.739 10000 FEE 434536 18040 6028876 2024-02-22 04:33:24.848 2024-02-22 04:33:24.848 900 FEE 434535 19836 6028877 2024-02-22 04:33:24.848 2024-02-22 04:33:24.848 8100 TIP 434535 2609 6028882 2024-02-22 04:34:02.981 2024-02-22 04:34:02.981 900 FEE 434504 19810 6028883 2024-02-22 04:34:02.981 2024-02-22 04:34:02.981 8100 TIP 434504 16309 6028895 2024-02-22 04:35:05.09 2024-02-22 04:35:05.09 900 FEE 434434 8870 6028896 2024-02-22 04:35:05.09 2024-02-22 04:35:05.09 8100 TIP 434434 21541 6028945 2024-02-22 04:44:18.049 2024-02-22 04:44:18.049 1000 FEE 433842 2042 6028946 2024-02-22 04:44:18.049 2024-02-22 04:44:18.049 9000 TIP 433842 687 6028974 2024-02-22 04:52:47.605 2024-02-22 04:52:47.605 1000 FEE 434549 21233 6028987 2024-02-22 04:59:00.201 2024-02-22 04:59:00.201 1000 FEE 434554 7097 6028995 2024-02-22 05:03:43.137 2024-02-22 05:03:43.137 1000 FEE 434557 15925 6029000 2024-02-22 05:06:33.899 2024-02-22 05:06:33.899 10000 FEE 433975 18199 6029001 2024-02-22 05:06:33.899 2024-02-22 05:06:33.899 90000 TIP 433975 1733 6029005 2024-02-22 05:08:26.754 2024-02-22 05:08:26.754 100 FEE 434465 8498 6029006 2024-02-22 05:08:26.754 2024-02-22 05:08:26.754 900 TIP 434465 20245 6029040 2024-02-22 05:13:23.3 2024-02-22 05:13:23.3 1100 FEE 434488 2514 6029041 2024-02-22 05:13:23.3 2024-02-22 05:13:23.3 9900 TIP 434488 9551 6029061 2024-02-22 05:15:27.888 2024-02-22 05:15:27.888 2100 FEE 434511 18635 6029062 2024-02-22 05:15:27.888 2024-02-22 05:15:27.888 18900 TIP 434511 14785 6029064 2024-02-22 05:16:40.486 2024-02-22 05:16:40.486 1000 FEE 434567 4415 6029091 2024-02-22 05:23:21.154 2024-02-22 05:23:21.154 10000 DONT_LIKE_THIS 433437 20912 6029092 2024-02-22 05:23:57.322 2024-02-22 05:23:57.322 0 FEE 434571 15843 6029094 2024-02-22 05:24:08.507 2024-02-22 05:24:08.507 100000 FEE 432920 18637 6029095 2024-02-22 05:24:08.507 2024-02-22 05:24:08.507 900000 TIP 432920 701 6029096 2024-02-22 05:24:51.743 2024-02-22 05:24:51.743 10000 FEE 433198 20562 6029097 2024-02-22 05:24:51.743 2024-02-22 05:24:51.743 90000 TIP 433198 19910 6029131 2024-02-22 05:36:11.072 2024-02-22 05:36:11.072 5000 FEE 433347 18625 6029132 2024-02-22 05:36:11.072 2024-02-22 05:36:11.072 45000 TIP 433347 13406 6029139 2024-02-22 05:37:19.116 2024-02-22 05:37:19.116 2100 FEE 434431 10611 6029140 2024-02-22 05:37:19.116 2024-02-22 05:37:19.116 18900 TIP 434431 15088 6029154 2024-02-22 05:40:58.038 2024-02-22 05:40:58.038 2100 FEE 434535 16867 6029155 2024-02-22 05:40:58.038 2024-02-22 05:40:58.038 18900 TIP 434535 21600 6029172 2024-02-22 05:44:37.631 2024-02-22 05:44:37.631 1000 FEE 434582 6578 6029199 2024-02-22 05:53:45.44 2024-02-22 05:53:45.44 11100 FEE 433422 2789 6029200 2024-02-22 05:53:45.44 2024-02-22 05:53:45.44 99900 TIP 433422 9992 6029213 2024-02-22 05:57:15.005 2024-02-22 05:57:15.005 3300 FEE 434535 19296 6029214 2024-02-22 05:57:15.005 2024-02-22 05:57:15.005 29700 TIP 434535 11073 6029227 2024-02-22 05:57:34.711 2024-02-22 05:57:34.711 3300 FEE 434481 1970 6029228 2024-02-22 05:57:34.711 2024-02-22 05:57:34.711 29700 TIP 434481 21501 6029242 2024-02-22 05:59:11.213 2024-02-22 05:59:11.213 3300 FEE 434465 20452 6028183 2024-02-22 02:04:34.941 2024-02-22 02:04:34.941 7200 TIP 434243 640 6028226 2024-02-22 02:18:35.441 2024-02-22 02:18:35.441 0 FEE 434480 4763 6028280 2024-02-22 02:40:07.392 2024-02-22 02:40:07.392 1000 FEE 434283 15624 6028281 2024-02-22 02:40:07.392 2024-02-22 02:40:07.392 9000 TIP 434283 998 6028335 2024-02-22 02:59:38.981 2024-02-22 02:59:38.981 800 FEE 434285 20433 6028336 2024-02-22 02:59:38.981 2024-02-22 02:59:38.981 7200 TIP 434285 19449 6028344 2024-02-22 03:00:10.473 2024-02-22 03:00:10.473 1000 FEE 434497 11609 6028354 2024-02-22 03:02:33.767 2024-02-22 03:02:33.767 1000 FEE 434501 10690 6028376 2024-02-22 03:06:34.434 2024-02-22 03:06:34.434 2300 FEE 434498 678 6028377 2024-02-22 03:06:34.434 2024-02-22 03:06:34.434 20700 TIP 434498 11522 6028378 2024-02-22 03:06:34.536 2024-02-22 03:06:34.536 2300 FEE 434498 20464 6028379 2024-02-22 03:06:34.536 2024-02-22 03:06:34.536 20700 TIP 434498 19905 6028409 2024-02-22 03:14:59.132 2024-02-22 03:14:59.132 100 FEE 423475 919 6028410 2024-02-22 03:14:59.132 2024-02-22 03:14:59.132 900 TIP 423475 1718 6028417 2024-02-22 03:15:00.278 2024-02-22 03:15:00.278 100 FEE 423475 13878 6028418 2024-02-22 03:15:00.278 2024-02-22 03:15:00.278 900 TIP 423475 1224 6028497 2024-02-22 03:37:18.445 2024-02-22 03:37:18.445 100 FEE 434509 21254 6028498 2024-02-22 03:37:18.445 2024-02-22 03:37:18.445 900 TIP 434509 21329 6028503 2024-02-22 03:37:19.286 2024-02-22 03:37:19.286 100 FEE 434509 19785 6028504 2024-02-22 03:37:19.286 2024-02-22 03:37:19.286 900 TIP 434509 18076 6028507 2024-02-22 03:37:19.816 2024-02-22 03:37:19.816 100 FEE 434509 18817 6028508 2024-02-22 03:37:19.816 2024-02-22 03:37:19.816 900 TIP 434509 18274 6028555 2024-02-22 03:37:33.605 2024-02-22 03:37:33.605 100 FEE 434509 20198 6028556 2024-02-22 03:37:33.605 2024-02-22 03:37:33.605 900 TIP 434509 21589 6028559 2024-02-22 03:37:34.721 2024-02-22 03:37:34.721 100 FEE 434509 16939 6028560 2024-02-22 03:37:34.721 2024-02-22 03:37:34.721 900 TIP 434509 17741 6028571 2024-02-22 03:37:41.696 2024-02-22 03:37:41.696 100 FEE 434509 15544 6028572 2024-02-22 03:37:41.696 2024-02-22 03:37:41.696 900 TIP 434509 19462 6028597 2024-02-22 03:39:11.231 2024-02-22 03:39:11.231 100 FEE 434509 617 6028598 2024-02-22 03:39:11.231 2024-02-22 03:39:11.231 900 TIP 434509 20539 6028606 2024-02-22 03:39:57.094 2024-02-22 03:39:57.094 10000 FEE 433851 21178 6028607 2024-02-22 03:39:57.094 2024-02-22 03:39:57.094 90000 TIP 433851 3360 6028663 2024-02-22 03:50:16.212 2024-02-22 03:50:16.212 1000 FEE 434298 20450 6028664 2024-02-22 03:50:16.212 2024-02-22 03:50:16.212 9000 TIP 434298 14381 6028667 2024-02-22 03:50:54.585 2024-02-22 03:50:54.585 1000 FEE 434411 18745 6028668 2024-02-22 03:50:54.585 2024-02-22 03:50:54.585 9000 TIP 434411 21033 6028682 2024-02-22 03:54:24.253 2024-02-22 03:54:24.253 1000 FEE 434307 6537 6028683 2024-02-22 03:54:24.253 2024-02-22 03:54:24.253 9000 TIP 434307 16229 6028688 2024-02-22 03:55:22.832 2024-02-22 03:55:22.832 1000 FEE 434421 1326 6028689 2024-02-22 03:55:22.832 2024-02-22 03:55:22.832 9000 TIP 434421 16178 6028696 2024-02-22 03:56:44.272 2024-02-22 03:56:44.272 1000 FEE 433937 13249 6028697 2024-02-22 03:56:44.272 2024-02-22 03:56:44.272 9000 TIP 433937 9874 6028706 2024-02-22 03:57:28.841 2024-02-22 03:57:28.841 1000 FEE 434522 18336 6028750 2024-02-22 04:05:47.681 2024-02-22 04:05:47.681 8300 FEE 434514 18500 6028751 2024-02-22 04:05:47.681 2024-02-22 04:05:47.681 74700 TIP 434514 17798 6028772 2024-02-22 04:10:56.313 2024-02-22 04:10:56.313 1000 FEE 434533 19907 6028797 2024-02-22 04:17:17.218 2024-02-22 04:17:17.218 21100 FEE 434498 760 6028798 2024-02-22 04:17:17.218 2024-02-22 04:17:17.218 189900 TIP 434498 2213 6028804 2024-02-22 04:20:22.517 2024-02-22 04:20:22.517 1000 FEE 434535 15408 6028805 2024-02-22 04:20:22.517 2024-02-22 04:20:22.517 9000 TIP 434535 5978 6028806 2024-02-22 04:20:22.999 2024-02-22 04:20:22.999 9000 FEE 434535 11820 6028807 2024-02-22 04:20:22.999 2024-02-22 04:20:22.999 81000 TIP 434535 12736 6028825 2024-02-22 04:28:34.309 2024-02-22 04:28:34.309 100 FEE 434498 18470 6028826 2024-02-22 04:28:34.309 2024-02-22 04:28:34.309 900 TIP 434498 21402 6028842 2024-02-22 04:32:09.86 2024-02-22 04:32:09.86 1000 FEE 434514 14045 6028843 2024-02-22 04:32:09.86 2024-02-22 04:32:09.86 9000 TIP 434514 17316 6028872 2024-02-22 04:33:18.246 2024-02-22 04:33:18.246 900 FEE 434540 695 6028873 2024-02-22 04:33:18.246 2024-02-22 04:33:18.246 8100 TIP 434540 1046 6028887 2024-02-22 04:34:20.378 2024-02-22 04:34:20.378 900 FEE 434440 1213 6028888 2024-02-22 04:34:20.378 2024-02-22 04:34:20.378 8100 TIP 434440 18615 6028906 2024-02-22 04:37:15.175 2024-02-22 04:37:15.175 2100 FEE 434539 5761 6028907 2024-02-22 04:37:15.175 2024-02-22 04:37:15.175 18900 TIP 434539 14941 6028908 2024-02-22 04:37:15.955 2024-02-22 04:37:15.955 2100 FEE 434539 18526 6028909 2024-02-22 04:37:15.955 2024-02-22 04:37:15.955 18900 TIP 434539 21603 6028928 2024-02-22 04:43:11.671 2024-02-22 04:43:11.671 1000 FEE 433828 2016 6028929 2024-02-22 04:43:11.671 2024-02-22 04:43:11.671 9000 TIP 433828 827 6028936 2024-02-22 04:43:17.744 2024-02-22 04:43:17.744 1000 FEE 434278 12272 6028937 2024-02-22 04:43:17.744 2024-02-22 04:43:17.744 9000 TIP 434278 18359 6028949 2024-02-22 04:44:33.447 2024-02-22 04:44:33.447 1000 FEE 434171 3506 6028950 2024-02-22 04:44:33.447 2024-02-22 04:44:33.447 9000 TIP 434171 2431 6028966 2024-02-22 04:50:52.716 2024-02-22 04:50:52.716 1000 FEE 434547 20577 6029037 2024-02-22 05:12:57.903 2024-02-22 05:12:57.903 1100 FEE 434498 17494 6029038 2024-02-22 05:12:57.903 2024-02-22 05:12:57.903 9900 TIP 434498 8954 6029055 2024-02-22 05:15:16.336 2024-02-22 05:15:16.336 100 FEE 434535 14271 6029056 2024-02-22 05:15:16.336 2024-02-22 05:15:16.336 900 TIP 434535 12609 6029066 2024-02-22 05:17:07.714 2024-02-22 05:17:07.714 2100 FEE 434457 18402 6029067 2024-02-22 05:17:07.714 2024-02-22 05:17:07.714 18900 TIP 434457 2203 6029074 2024-02-22 05:20:21.054 2024-02-22 05:20:21.054 1000 FEE 434569 8664 6029116 2024-02-22 05:30:23.375 2024-02-22 05:30:23.375 2100 FEE 434367 21413 6029117 2024-02-22 05:30:23.375 2024-02-22 05:30:23.375 18900 TIP 434367 762 6029130 2024-02-22 05:36:08.744 2024-02-22 05:36:08.744 1000 FEE 434576 4259 6029137 2024-02-22 05:37:17.014 2024-02-22 05:37:17.014 2100 FEE 434431 18138 6029138 2024-02-22 05:37:17.014 2024-02-22 05:37:17.014 18900 TIP 434431 21494 6029151 2024-02-22 05:40:50.566 2024-02-22 05:40:50.566 1000 FEE 434579 14552 6029177 2024-02-22 05:46:50.715 2024-02-22 05:46:50.715 1000 FEE 434585 1261 6029208 2024-02-22 05:56:58.596 2024-02-22 05:56:58.596 2100 FEE 434510 17838 6029209 2024-02-22 05:56:58.596 2024-02-22 05:56:58.596 18900 TIP 434510 21514 6029217 2024-02-22 05:57:16.2 2024-02-22 05:57:16.2 3300 FEE 434535 718 6029218 2024-02-22 05:57:16.2 2024-02-22 05:57:16.2 29700 TIP 434535 658 6029225 2024-02-22 05:57:34.281 2024-02-22 05:57:34.281 3300 FEE 434481 12291 6029226 2024-02-22 05:57:34.281 2024-02-22 05:57:34.281 29700 TIP 434481 21446 6029244 2024-02-22 05:59:11.971 2024-02-22 05:59:11.971 3300 FEE 434465 12946 6029245 2024-02-22 05:59:11.971 2024-02-22 05:59:11.971 29700 TIP 434465 6537 6029253 2024-02-22 06:00:06.281 2024-02-22 06:00:06.281 3300 FEE 434565 21222 6029254 2024-02-22 06:00:06.281 2024-02-22 06:00:06.281 29700 TIP 434565 11789 6029284 2024-02-22 06:05:36.323 2024-02-22 06:05:36.323 1000 FEE 434596 19863 6029305 2024-02-22 06:11:34.674 2024-02-22 06:11:34.674 1000 FEE 434603 20015 6029315 2024-02-22 06:15:15.25 2024-02-22 06:15:15.25 1000 FEE 434605 11430 6029337 2024-02-22 06:19:34.015 2024-02-22 06:19:34.015 1000 FEE 434607 20301 6029381 2024-02-22 06:23:20.558 2024-02-22 06:23:20.558 1000 FEE 434410 1769 6029382 2024-02-22 06:23:20.558 2024-02-22 06:23:20.558 9000 TIP 434410 9332 6029385 2024-02-22 06:23:25.899 2024-02-22 06:23:25.899 1000 FEE 434437 18076 6028247 2024-02-22 02:24:03.148 2024-02-22 02:24:03.148 1000 STREAM 141924 18412 6028254 2024-02-22 02:26:03.159 2024-02-22 02:26:03.159 1000 STREAM 141924 2156 6028257 2024-02-22 02:28:03.178 2024-02-22 02:28:03.178 1000 STREAM 141924 16954 6034545 2024-02-22 17:37:02.713 2024-02-22 17:37:02.713 1000 STREAM 141924 9695 6034564 2024-02-22 17:40:02.724 2024-02-22 17:40:02.724 1000 STREAM 141924 17592 6034614 2024-02-22 17:42:02.75 2024-02-22 17:42:02.75 1000 STREAM 141924 20613 6034625 2024-02-22 17:43:02.749 2024-02-22 17:43:02.749 1000 STREAM 141924 10283 6037933 2024-02-22 23:05:27.577 2024-02-22 23:05:27.577 18900 TIP 435596 5752 6037951 2024-02-22 23:10:26.839 2024-02-22 23:10:26.839 1000 FEE 435644 1712 6037984 2024-02-22 23:13:39.064 2024-02-22 23:13:39.064 2100 FEE 435499 18314 6037985 2024-02-22 23:13:39.064 2024-02-22 23:13:39.064 18900 TIP 435499 19537 6037991 2024-02-22 23:17:02.331 2024-02-22 23:17:02.331 2500 FEE 435630 20340 6037992 2024-02-22 23:17:02.331 2024-02-22 23:17:02.331 22500 TIP 435630 21263 6038003 2024-02-22 23:19:31.589 2024-02-22 23:19:31.589 2500 FEE 435579 6430 6038004 2024-02-22 23:19:31.589 2024-02-22 23:19:31.589 22500 TIP 435579 20963 6038021 2024-02-22 23:20:59.95 2024-02-22 23:20:59.95 16600 FEE 435488 17183 6038022 2024-02-22 23:20:59.95 2024-02-22 23:20:59.95 149400 TIP 435488 13246 6038041 2024-02-22 23:21:01.718 2024-02-22 23:21:01.718 8300 FEE 435488 5129 6038042 2024-02-22 23:21:01.718 2024-02-22 23:21:01.718 74700 TIP 435488 9334 6038053 2024-02-22 23:21:02.411 2024-02-22 23:21:02.411 8300 FEE 435488 17592 6038054 2024-02-22 23:21:02.411 2024-02-22 23:21:02.411 74700 TIP 435488 2347 6038078 2024-02-22 23:21:18.73 2024-02-22 23:21:18.73 1000 FEE 435650 2342 6038081 2024-02-22 23:21:19.689 2024-02-22 23:21:19.689 8300 FEE 435488 19622 6038082 2024-02-22 23:21:19.689 2024-02-22 23:21:19.689 74700 TIP 435488 15161 6038137 2024-02-22 23:26:44.863 2024-02-22 23:26:44.863 0 FEE 435655 18658 6038144 2024-02-22 23:28:15.756 2024-02-22 23:28:15.756 500 FEE 435601 20802 6038145 2024-02-22 23:28:15.756 2024-02-22 23:28:15.756 4500 TIP 435601 16747 6038168 2024-02-22 23:30:06.942 2024-02-22 23:30:06.942 8300 FEE 435657 19837 6038169 2024-02-22 23:30:06.942 2024-02-22 23:30:06.942 74700 TIP 435657 8459 6038170 2024-02-22 23:30:07.128 2024-02-22 23:30:07.128 8300 FEE 435657 18174 6038171 2024-02-22 23:30:07.128 2024-02-22 23:30:07.128 74700 TIP 435657 9758 6038172 2024-02-22 23:30:07.327 2024-02-22 23:30:07.327 8300 FEE 435657 2724 6038173 2024-02-22 23:30:07.327 2024-02-22 23:30:07.327 74700 TIP 435657 8400 6038180 2024-02-22 23:30:08.422 2024-02-22 23:30:08.422 8300 FEE 435657 2757 6038181 2024-02-22 23:30:08.422 2024-02-22 23:30:08.422 74700 TIP 435657 5565 6038188 2024-02-22 23:30:36.416 2024-02-22 23:30:36.416 1000 POLL 435516 17798 6038189 2024-02-22 23:30:51.954 2024-02-22 23:30:51.954 1000 FEE 435661 19570 6038197 2024-02-22 23:31:07.931 2024-02-22 23:31:07.931 1000 FEE 435662 1090 6038208 2024-02-22 23:37:27.184 2024-02-22 23:37:27.184 100000 FEE 435665 7654 6038209 2024-02-22 23:37:37.665 2024-02-22 23:37:37.665 1000 FEE 435666 694 6038272 2024-02-22 23:51:30.45 2024-02-22 23:51:30.45 1000 FEE 435644 19905 6038273 2024-02-22 23:51:30.45 2024-02-22 23:51:30.45 9000 TIP 435644 17094 6038308 2024-02-22 23:56:46.993 2024-02-22 23:56:46.993 0 FEE 435673 4177 6038327 2024-02-23 00:00:02.16 2024-02-23 00:00:02.16 300 FEE 435457 2029 6038328 2024-02-23 00:00:02.16 2024-02-23 00:00:02.16 2700 TIP 435457 17365 6038362 2024-02-23 00:00:06.411 2024-02-23 00:00:06.411 300 FEE 435457 20657 6038363 2024-02-23 00:00:06.411 2024-02-23 00:00:06.411 2700 TIP 435457 6430 6038375 2024-02-23 00:01:48.173 2024-02-23 00:01:48.173 10000 FEE 435682 18678 6038385 2024-02-23 00:02:27.694 2024-02-23 00:02:27.694 1000 POLL 435495 18409 6038422 2024-02-23 00:06:25.007 2024-02-23 00:06:25.007 3000 FEE 435684 21033 6038423 2024-02-23 00:06:25.007 2024-02-23 00:06:25.007 27000 TIP 435684 8870 6038441 2024-02-23 00:12:17.682 2024-02-23 00:12:17.682 100 FEE 435580 4322 6038442 2024-02-23 00:12:17.682 2024-02-23 00:12:17.682 900 TIP 435580 11789 6038451 2024-02-23 00:12:18.955 2024-02-23 00:12:18.955 100 FEE 435580 2583 6038452 2024-02-23 00:12:18.955 2024-02-23 00:12:18.955 900 TIP 435580 9356 6038472 2024-02-23 00:13:29.318 2024-02-23 00:13:29.318 1000 POLL 435516 1773 6038483 2024-02-23 00:13:47.76 2024-02-23 00:13:47.76 9000 FEE 435690 20470 6038484 2024-02-23 00:13:47.76 2024-02-23 00:13:47.76 81000 TIP 435690 19506 6038497 2024-02-23 00:13:48.778 2024-02-23 00:13:48.778 1000 FEE 435691 20015 6038511 2024-02-23 00:14:08.103 2024-02-23 00:14:08.103 900 FEE 435657 19886 6038512 2024-02-23 00:14:08.103 2024-02-23 00:14:08.103 8100 TIP 435657 4173 6038519 2024-02-23 00:14:12.628 2024-02-23 00:14:12.628 300 FEE 435585 20018 6038520 2024-02-23 00:14:12.628 2024-02-23 00:14:12.628 2700 TIP 435585 5708 6038521 2024-02-23 00:14:12.801 2024-02-23 00:14:12.801 300 FEE 435585 19996 6038522 2024-02-23 00:14:12.801 2024-02-23 00:14:12.801 2700 TIP 435585 21619 6038531 2024-02-23 00:14:28.045 2024-02-23 00:14:28.045 21100 FEE 435488 8162 6038532 2024-02-23 00:14:28.045 2024-02-23 00:14:28.045 189900 TIP 435488 1261 6038537 2024-02-23 00:15:50.614 2024-02-23 00:15:50.614 4000 FEE 435657 19664 6038538 2024-02-23 00:15:50.614 2024-02-23 00:15:50.614 36000 TIP 435657 18618 6038551 2024-02-23 00:18:10.327 2024-02-23 00:18:10.327 12800 FEE 435691 6777 6038552 2024-02-23 00:18:10.327 2024-02-23 00:18:10.327 115200 TIP 435691 19531 6038581 2024-02-23 00:25:05.922 2024-02-23 00:25:05.922 1100 FEE 435653 21140 6038582 2024-02-23 00:25:05.922 2024-02-23 00:25:05.922 9900 TIP 435653 15337 6038583 2024-02-23 00:25:06.511 2024-02-23 00:25:06.511 1100 FEE 435653 6573 6038584 2024-02-23 00:25:06.511 2024-02-23 00:25:06.511 9900 TIP 435653 8360 6038588 2024-02-23 00:25:33.838 2024-02-23 00:25:33.838 1000 FEE 435701 1652 6038602 2024-02-23 00:26:30.795 2024-02-23 00:26:30.795 1000 FEE 435703 15386 6038603 2024-02-23 00:26:43.141 2024-02-23 00:26:43.141 800 FEE 435657 4014 6038604 2024-02-23 00:26:43.141 2024-02-23 00:26:43.141 7200 TIP 435657 18396 6038621 2024-02-23 00:26:48.248 2024-02-23 00:26:48.248 2300 FEE 435657 8385 6038622 2024-02-23 00:26:48.248 2024-02-23 00:26:48.248 20700 TIP 435657 9809 6038628 2024-02-23 00:27:19.342 2024-02-23 00:27:19.342 1000 FEE 435628 9333 6038629 2024-02-23 00:27:19.342 2024-02-23 00:27:19.342 9000 TIP 435628 4177 6038636 2024-02-23 00:27:39.605 2024-02-23 00:27:39.605 2300 FEE 435657 1006 6038637 2024-02-23 00:27:39.605 2024-02-23 00:27:39.605 20700 TIP 435657 20109 6038648 2024-02-23 00:27:46.661 2024-02-23 00:27:46.661 2300 FEE 435488 14168 6038649 2024-02-23 00:27:46.661 2024-02-23 00:27:46.661 20700 TIP 435488 20687 6038694 2024-02-23 00:37:40.954 2024-02-23 00:37:40.954 1100 FEE 435488 19821 6038695 2024-02-23 00:37:40.954 2024-02-23 00:37:40.954 9900 TIP 435488 18675 6038698 2024-02-23 00:37:41.814 2024-02-23 00:37:41.814 1100 FEE 435551 19527 6038699 2024-02-23 00:37:41.814 2024-02-23 00:37:41.814 9900 TIP 435551 15213 6038726 2024-02-23 00:44:04.443 2024-02-23 00:44:04.443 7000 FEE 435714 19156 6038756 2024-02-23 00:50:10.292 2024-02-23 00:50:10.292 300 FEE 435720 5746 6038757 2024-02-23 00:50:10.292 2024-02-23 00:50:10.292 2700 TIP 435720 21556 6038770 2024-02-23 00:52:32.079 2024-02-23 00:52:32.079 1100 FEE 435154 21060 6038771 2024-02-23 00:52:32.079 2024-02-23 00:52:32.079 9900 TIP 435154 17797 6038803 2024-02-23 00:59:49.541 2024-02-23 00:59:49.541 1000 FEE 435729 896 6038834 2024-02-23 01:10:19.527 2024-02-23 01:10:19.527 2500 FEE 435573 13378 6038835 2024-02-23 01:10:19.527 2024-02-23 01:10:19.527 22500 TIP 435573 1237 6038839 2024-02-23 01:10:56.227 2024-02-23 01:10:56.227 1000 FEE 435740 21201 6038853 2024-02-23 01:11:15.231 2024-02-23 01:11:15.231 1000 FEE 435640 20208 6038854 2024-02-23 01:11:15.231 2024-02-23 01:11:15.231 9000 TIP 435640 14669 6028250 2024-02-22 02:25:02.755 2024-02-22 02:25:02.755 1000 STREAM 141924 12609 6028256 2024-02-22 02:27:02.754 2024-02-22 02:27:02.754 1000 STREAM 141924 11477 6028258 2024-02-22 02:29:02.742 2024-02-22 02:29:02.742 1000 STREAM 141924 17411 6028287 2024-02-22 02:43:02.835 2024-02-22 02:43:02.835 1000 STREAM 141924 16769 6028289 2024-02-22 02:45:02.853 2024-02-22 02:45:02.853 1000 STREAM 141924 18199 6034596 2024-02-22 17:41:01.146 2024-02-22 17:41:01.146 9000 TIP 435291 20511 6034606 2024-02-22 17:41:57.011 2024-02-22 17:41:57.011 3000 FEE 435305 7773 6034607 2024-02-22 17:41:57.011 2024-02-22 17:41:57.011 27000 TIP 435305 15890 6034615 2024-02-22 17:42:07.734 2024-02-22 17:42:07.734 2100 FEE 435242 21585 6034616 2024-02-22 17:42:07.734 2024-02-22 17:42:07.734 18900 TIP 435242 1326 6034623 2024-02-22 17:43:02.367 2024-02-22 17:43:02.367 2100 FEE 435030 18311 6034624 2024-02-22 17:43:02.367 2024-02-22 17:43:02.367 18900 TIP 435030 18336 6034632 2024-02-22 17:43:10.073 2024-02-22 17:43:10.073 2100 FEE 435261 18816 6034633 2024-02-22 17:43:10.073 2024-02-22 17:43:10.073 18900 TIP 435261 21343 6034643 2024-02-22 17:44:36.217 2024-02-22 17:44:36.217 1000 FEE 435307 21466 6034644 2024-02-22 17:44:53.186 2024-02-22 17:44:53.186 1000 FEE 435308 20018 6034660 2024-02-22 17:47:02.241 2024-02-22 17:47:02.241 100 FEE 435261 656 6034661 2024-02-22 17:47:02.241 2024-02-22 17:47:02.241 900 TIP 435261 630 6034662 2024-02-22 17:47:02.433 2024-02-22 17:47:02.433 900 FEE 435261 19154 6034663 2024-02-22 17:47:02.433 2024-02-22 17:47:02.433 8100 TIP 435261 4570 6034713 2024-02-22 17:49:28.25 2024-02-22 17:49:28.25 2100 FEE 434780 20110 6034714 2024-02-22 17:49:28.25 2024-02-22 17:49:28.25 18900 TIP 434780 16956 6034721 2024-02-22 17:49:41.427 2024-02-22 17:49:41.427 2100 FEE 435120 21624 6034722 2024-02-22 17:49:41.427 2024-02-22 17:49:41.427 18900 TIP 435120 4521 6034727 2024-02-22 17:49:48.019 2024-02-22 17:49:48.019 200 FEE 434212 7097 6034728 2024-02-22 17:49:48.019 2024-02-22 17:49:48.019 1800 TIP 434212 10490 6034741 2024-02-22 17:49:56.602 2024-02-22 17:49:56.602 2100 FEE 435019 19633 6034742 2024-02-22 17:49:56.602 2024-02-22 17:49:56.602 18900 TIP 435019 20439 6034745 2024-02-22 17:49:58.871 2024-02-22 17:49:58.871 2100 FEE 435100 676 6034746 2024-02-22 17:49:58.871 2024-02-22 17:49:58.871 18900 TIP 435100 1429 6034747 2024-02-22 17:49:59.94 2024-02-22 17:49:59.94 2100 FEE 434962 11073 6034748 2024-02-22 17:49:59.94 2024-02-22 17:49:59.94 18900 TIP 434962 18139 6034756 2024-02-22 17:50:06.325 2024-02-22 17:50:06.325 2100 FEE 435284 14791 6034757 2024-02-22 17:50:06.325 2024-02-22 17:50:06.325 18900 TIP 435284 1286 6034763 2024-02-22 17:50:42.717 2024-02-22 17:50:42.717 2300 FEE 435299 6335 6034764 2024-02-22 17:50:42.717 2024-02-22 17:50:42.717 20700 TIP 435299 3400 6034765 2024-02-22 17:50:46.436 2024-02-22 17:50:46.436 2300 FEE 435308 987 6034766 2024-02-22 17:50:46.436 2024-02-22 17:50:46.436 20700 TIP 435308 7979 6034795 2024-02-22 17:53:17.079 2024-02-22 17:53:17.079 1000 FEE 435322 16097 6034796 2024-02-22 17:53:28.028 2024-02-22 17:53:28.028 1000 FEE 435323 11760 6034800 2024-02-22 17:53:41.376 2024-02-22 17:53:41.376 2500 FEE 435297 19815 6034801 2024-02-22 17:53:41.376 2024-02-22 17:53:41.376 22500 TIP 435297 19501 6034802 2024-02-22 17:53:42.217 2024-02-22 17:53:42.217 1000 FEE 435319 986 6034803 2024-02-22 17:53:42.217 2024-02-22 17:53:42.217 9000 TIP 435319 1720 6034813 2024-02-22 17:54:46.671 2024-02-22 17:54:46.671 27000 FEE 435310 19886 6034814 2024-02-22 17:54:46.671 2024-02-22 17:54:46.671 243000 TIP 435310 21218 6034815 2024-02-22 17:54:59.425 2024-02-22 17:54:59.425 0 FEE 435322 10063 6034833 2024-02-22 17:55:45.228 2024-02-22 17:55:45.228 5000 FEE 435328 20231 6034834 2024-02-22 17:55:45.228 2024-02-22 17:55:45.228 45000 TIP 435328 703 6034835 2024-02-22 17:55:46.658 2024-02-22 17:55:46.658 100 FEE 435328 1495 6034836 2024-02-22 17:55:46.658 2024-02-22 17:55:46.658 900 TIP 435328 14168 6034848 2024-02-22 17:56:39.378 2024-02-22 17:56:39.378 900 FEE 435323 18909 6034849 2024-02-22 17:56:39.378 2024-02-22 17:56:39.378 8100 TIP 435323 14906 6034884 2024-02-22 17:59:19.253 2024-02-22 17:59:19.253 8300 FEE 435231 9992 6034885 2024-02-22 17:59:19.253 2024-02-22 17:59:19.253 74700 TIP 435231 4064 6034901 2024-02-22 17:59:46.24 2024-02-22 17:59:46.24 8300 FEE 435270 1180 6034902 2024-02-22 17:59:46.24 2024-02-22 17:59:46.24 74700 TIP 435270 18837 6034911 2024-02-22 18:00:16.048 2024-02-22 18:00:16.048 3300 FEE 435030 12911 6034912 2024-02-22 18:00:16.048 2024-02-22 18:00:16.048 29700 TIP 435030 891 6034937 2024-02-22 18:01:32.881 2024-02-22 18:01:32.881 2300 FEE 435274 14045 6034938 2024-02-22 18:01:32.881 2024-02-22 18:01:32.881 20700 TIP 435274 17552 6034973 2024-02-22 18:04:41.922 2024-02-22 18:04:41.922 1000 FEE 435347 11288 6035054 2024-02-22 18:07:14.577 2024-02-22 18:07:14.577 10000 FEE 434129 617 6035055 2024-02-22 18:07:14.577 2024-02-22 18:07:14.577 90000 TIP 434129 21287 6035065 2024-02-22 18:08:43.343 2024-02-22 18:08:43.343 1000 FEE 435349 9426 6035080 2024-02-22 18:10:25.767 2024-02-22 18:10:25.767 2100 FEE 435328 21214 6035081 2024-02-22 18:10:25.767 2024-02-22 18:10:25.767 18900 TIP 435328 6384 6035082 2024-02-22 18:10:25.922 2024-02-22 18:10:25.922 2100 FEE 435328 7773 6035083 2024-02-22 18:10:25.922 2024-02-22 18:10:25.922 18900 TIP 435328 21481 6035101 2024-02-22 18:11:04.529 2024-02-22 18:11:04.529 9000 FEE 434129 9337 6035102 2024-02-22 18:11:04.529 2024-02-22 18:11:04.529 81000 TIP 434129 2098 6035103 2024-02-22 18:11:04.706 2024-02-22 18:11:04.706 1000 FEE 433066 20436 6035104 2024-02-22 18:11:04.706 2024-02-22 18:11:04.706 9000 TIP 433066 20084 6035105 2024-02-22 18:11:05.557 2024-02-22 18:11:05.557 1000 FEE 433066 807 6035106 2024-02-22 18:11:05.557 2024-02-22 18:11:05.557 9000 TIP 433066 4391 6035111 2024-02-22 18:11:41.653 2024-02-22 18:11:41.653 10000 FEE 433878 17392 6035112 2024-02-22 18:11:41.653 2024-02-22 18:11:41.653 90000 TIP 433878 14731 6035121 2024-02-22 18:11:43.541 2024-02-22 18:11:43.541 10000 FEE 433878 1030 6035122 2024-02-22 18:11:43.541 2024-02-22 18:11:43.541 90000 TIP 433878 7966 6035133 2024-02-22 18:12:26.411 2024-02-22 18:12:26.411 3000 FEE 435351 9078 6035134 2024-02-22 18:12:26.411 2024-02-22 18:12:26.411 27000 TIP 435351 21201 6035141 2024-02-22 18:12:40.917 2024-02-22 18:12:40.917 2100 FEE 435328 2293 6035142 2024-02-22 18:12:40.917 2024-02-22 18:12:40.917 18900 TIP 435328 15488 6035180 2024-02-22 18:18:16.877 2024-02-22 18:18:16.877 900 FEE 435274 19243 6035181 2024-02-22 18:18:16.877 2024-02-22 18:18:16.877 8100 TIP 435274 902 6035267 2024-02-22 18:25:30.621 2024-02-22 18:25:30.621 30000 FEE 435357 7809 6035268 2024-02-22 18:25:30.621 2024-02-22 18:25:30.621 270000 TIP 435357 5500 6035291 2024-02-22 18:28:45.747 2024-02-22 18:28:45.747 1000 FEE 435359 18269 6035292 2024-02-22 18:28:45.747 2024-02-22 18:28:45.747 9000 TIP 435359 17953 6035297 2024-02-22 18:28:47.743 2024-02-22 18:28:47.743 1000 FEE 435359 1833 6035298 2024-02-22 18:28:47.743 2024-02-22 18:28:47.743 9000 TIP 435359 1429 6035305 2024-02-22 18:28:50.991 2024-02-22 18:28:50.991 400 FEE 435329 1802 6035306 2024-02-22 18:28:50.991 2024-02-22 18:28:50.991 3600 TIP 435329 2042 6035312 2024-02-22 18:29:33.243 2024-02-22 18:29:33.243 1000 FEE 435366 18743 6035313 2024-02-22 18:29:33.243 2024-02-22 18:29:33.243 9000 TIP 435366 19533 6035368 2024-02-22 18:33:45.582 2024-02-22 18:33:45.582 1000 FEE 435359 5293 6035369 2024-02-22 18:33:45.582 2024-02-22 18:33:45.582 9000 TIP 435359 9336 6035383 2024-02-22 18:34:12.912 2024-02-22 18:34:12.912 1000 FEE 435357 9184 6035384 2024-02-22 18:34:12.912 2024-02-22 18:34:12.912 9000 TIP 435357 12368 6035385 2024-02-22 18:34:18.156 2024-02-22 18:34:18.156 10000 FEE 435357 895 6035386 2024-02-22 18:34:18.156 2024-02-22 18:34:18.156 90000 TIP 435357 19732 6035403 2024-02-22 18:34:52.388 2024-02-22 18:34:52.388 1000 FEE 435371 18896 6028259 2024-02-22 02:30:03.372 2024-02-22 02:30:03.372 1000 STREAM 141924 14295 6028268 2024-02-22 02:36:03.396 2024-02-22 02:36:03.396 1000 STREAM 141924 21556 6028296 2024-02-22 02:48:03.561 2024-02-22 02:48:03.561 1000 STREAM 141924 6058 6028301 2024-02-22 02:50:03.551 2024-02-22 02:50:03.551 1000 STREAM 141924 21314 6028309 2024-02-22 02:52:03.549 2024-02-22 02:52:03.549 1000 STREAM 141924 16097 6028316 2024-02-22 02:54:03.561 2024-02-22 02:54:03.561 1000 STREAM 141924 11378 6028322 2024-02-22 02:56:03.569 2024-02-22 02:56:03.569 1000 STREAM 141924 1577 6028329 2024-02-22 02:58:03.582 2024-02-22 02:58:03.582 1000 STREAM 141924 18816 6028353 2024-02-22 03:02:03.643 2024-02-22 03:02:03.643 1000 STREAM 141924 17392 6028380 2024-02-22 03:07:03.692 2024-02-22 03:07:03.692 1000 STREAM 141924 13878 6028382 2024-02-22 03:09:03.727 2024-02-22 03:09:03.727 1000 STREAM 141924 16513 6028385 2024-02-22 03:11:03.732 2024-02-22 03:11:03.732 1000 STREAM 141924 18877 6028458 2024-02-22 03:20:03.859 2024-02-22 03:20:03.859 1000 STREAM 141924 16858 6028473 2024-02-22 03:26:03.909 2024-02-22 03:26:03.909 1000 STREAM 141924 17001 6028480 2024-02-22 03:31:03.985 2024-02-22 03:31:03.985 1000 STREAM 141924 20222 6028488 2024-02-22 03:36:04.043 2024-02-22 03:36:04.043 1000 STREAM 141924 7827 6028589 2024-02-22 03:38:04.075 2024-02-22 03:38:04.075 1000 STREAM 141924 7376 6028686 2024-02-22 03:55:04.245 2024-02-22 03:55:04.245 1000 STREAM 141924 17592 6034617 2024-02-22 17:42:12.7 2024-02-22 17:42:12.7 1600 FEE 435261 18664 6034618 2024-02-22 17:42:12.7 2024-02-22 17:42:12.7 14400 TIP 435261 15577 6034628 2024-02-22 17:43:05.162 2024-02-22 17:43:05.162 1000 FEE 435288 5865 6034629 2024-02-22 17:43:05.162 2024-02-22 17:43:05.162 9000 TIP 435288 18068 6034638 2024-02-22 17:43:57.658 2024-02-22 17:43:57.658 1000 FEE 435306 5904 6034654 2024-02-22 17:46:28.009 2024-02-22 17:46:28.009 1000 FEE 435311 2367 6034656 2024-02-22 17:46:44.41 2024-02-22 17:46:44.41 2100 FEE 435291 4102 6034657 2024-02-22 17:46:44.41 2024-02-22 17:46:44.41 18900 TIP 435291 21416 6034672 2024-02-22 17:47:35.665 2024-02-22 17:47:35.665 900 FEE 435217 14472 6034673 2024-02-22 17:47:35.665 2024-02-22 17:47:35.665 8100 TIP 435217 16042 6034674 2024-02-22 17:47:36.359 2024-02-22 17:47:36.359 9000 FEE 435217 15526 6034675 2024-02-22 17:47:36.359 2024-02-22 17:47:36.359 81000 TIP 435217 8376 6034687 2024-02-22 17:48:01.61 2024-02-22 17:48:01.61 1000 FEE 435311 7185 6034688 2024-02-22 17:48:01.61 2024-02-22 17:48:01.61 9000 TIP 435311 18016 6034707 2024-02-22 17:49:22.462 2024-02-22 17:49:22.462 2100 FEE 435242 2232 6034708 2024-02-22 17:49:22.462 2024-02-22 17:49:22.462 18900 TIP 435242 954 6034711 2024-02-22 17:49:26.797 2024-02-22 17:49:26.797 2100 FEE 434696 16350 6034712 2024-02-22 17:49:26.797 2024-02-22 17:49:26.797 18900 TIP 434696 20243 6034723 2024-02-22 17:49:45.709 2024-02-22 17:49:45.709 2100 FEE 435018 11091 6034724 2024-02-22 17:49:45.709 2024-02-22 17:49:45.709 18900 TIP 435018 21352 6034751 2024-02-22 17:50:01.724 2024-02-22 17:50:01.724 2100 FEE 434975 2330 6034752 2024-02-22 17:50:01.724 2024-02-22 17:50:01.724 18900 TIP 434975 21320 6034762 2024-02-22 17:50:38.912 2024-02-22 17:50:38.912 1000 FEE 435318 8173 6034777 2024-02-22 17:50:47.503 2024-02-22 17:50:47.503 2300 FEE 435308 19952 6034778 2024-02-22 17:50:47.503 2024-02-22 17:50:47.503 20700 TIP 435308 6700 6034865 2024-02-22 17:57:58.947 2024-02-22 17:57:58.947 7700 FEE 435327 5708 6034866 2024-02-22 17:57:58.947 2024-02-22 17:57:58.947 69300 TIP 435327 7760 6034923 2024-02-22 18:00:57.728 2024-02-22 18:00:57.728 800 FEE 434243 19284 6034924 2024-02-22 18:00:57.728 2024-02-22 18:00:57.728 7200 TIP 434243 15491 6034926 2024-02-22 18:01:06.597 2024-02-22 18:01:06.597 1000 FEE 435342 10519 6034927 2024-02-22 18:01:06.597 2024-02-22 18:01:06.597 9000 TIP 435342 14545 6034934 2024-02-22 18:01:19.075 2024-02-22 18:01:19.075 1000 FEE 435345 17209 6034935 2024-02-22 18:01:29.713 2024-02-22 18:01:29.713 3300 FEE 435274 2614 6034936 2024-02-22 18:01:29.713 2024-02-22 18:01:29.713 29700 TIP 435274 17014 6034971 2024-02-22 18:04:25.669 2024-02-22 18:04:25.669 1000 FEE 435263 18232 6034972 2024-02-22 18:04:25.669 2024-02-22 18:04:25.669 9000 TIP 435263 17673 6035056 2024-02-22 18:07:33.79 2024-02-22 18:07:33.79 3300 FEE 435196 10342 6035057 2024-02-22 18:07:33.79 2024-02-22 18:07:33.79 29700 TIP 435196 11760 6035073 2024-02-22 18:09:50.177 2024-02-22 18:09:50.177 800 FEE 434796 16653 6035074 2024-02-22 18:09:50.177 2024-02-22 18:09:50.177 7200 TIP 434796 19826 6035078 2024-02-22 18:10:25.608 2024-02-22 18:10:25.608 2100 FEE 435328 977 6035079 2024-02-22 18:10:25.608 2024-02-22 18:10:25.608 18900 TIP 435328 16670 6035086 2024-02-22 18:10:43.958 2024-02-22 18:10:43.958 100 FEE 434129 21494 6035087 2024-02-22 18:10:43.958 2024-02-22 18:10:43.958 900 TIP 434129 7903 6035088 2024-02-22 18:10:44.168 2024-02-22 18:10:44.168 900 FEE 434129 5495 6035089 2024-02-22 18:10:44.168 2024-02-22 18:10:44.168 8100 TIP 434129 16965 6035115 2024-02-22 18:11:42.422 2024-02-22 18:11:42.422 10000 FEE 433878 14774 6035116 2024-02-22 18:11:42.422 2024-02-22 18:11:42.422 90000 TIP 433878 20680 6035129 2024-02-22 18:12:17.944 2024-02-22 18:12:17.944 2100 FEE 435242 19967 6035130 2024-02-22 18:12:17.944 2024-02-22 18:12:17.944 18900 TIP 435242 766 6035137 2024-02-22 18:12:31.822 2024-02-22 18:12:31.822 2100 FEE 435263 6555 6035138 2024-02-22 18:12:31.822 2024-02-22 18:12:31.822 18900 TIP 435263 21291 6035143 2024-02-22 18:12:44.367 2024-02-22 18:12:44.367 100 FEE 435285 640 6035144 2024-02-22 18:12:44.367 2024-02-22 18:12:44.367 900 TIP 435285 21180 6035153 2024-02-22 18:12:53.161 2024-02-22 18:12:53.161 2100 FEE 435295 1576 6035154 2024-02-22 18:12:53.161 2024-02-22 18:12:53.161 18900 TIP 435295 13527 6035162 2024-02-22 18:13:59.829 2024-02-22 18:13:59.829 800 FEE 434994 12049 6035163 2024-02-22 18:13:59.829 2024-02-22 18:13:59.829 7200 TIP 434994 17690 6035167 2024-02-22 18:14:45.333 2024-02-22 18:14:45.333 3300 FEE 435136 1401 6035168 2024-02-22 18:14:45.333 2024-02-22 18:14:45.333 29700 TIP 435136 2232 6035174 2024-02-22 18:16:53.749 2024-02-22 18:16:53.749 1000 FEE 435354 2000 6035202 2024-02-22 18:20:49.034 2024-02-22 18:20:49.034 1000 FEE 434245 8360 6035203 2024-02-22 18:20:49.034 2024-02-22 18:20:49.034 9000 TIP 434245 6360 6035208 2024-02-22 18:21:47.464 2024-02-22 18:21:47.464 2300 FEE 435352 10280 6035209 2024-02-22 18:21:47.464 2024-02-22 18:21:47.464 20700 TIP 435352 19016 6035216 2024-02-22 18:21:48.148 2024-02-22 18:21:48.148 2300 FEE 435352 19810 6035217 2024-02-22 18:21:48.148 2024-02-22 18:21:48.148 20700 TIP 435352 620 6035220 2024-02-22 18:22:04.236 2024-02-22 18:22:04.236 2500 FEE 434788 19967 6035221 2024-02-22 18:22:04.236 2024-02-22 18:22:04.236 22500 TIP 434788 14552 6035243 2024-02-22 18:24:24.387 2024-02-22 18:24:24.387 1000 FEE 435284 16194 6035244 2024-02-22 18:24:24.387 2024-02-22 18:24:24.387 9000 TIP 435284 17209 6035259 2024-02-22 18:24:50.262 2024-02-22 18:24:50.262 1000 FEE 435328 1632 6035260 2024-02-22 18:24:50.262 2024-02-22 18:24:50.262 9000 TIP 435328 6041 6035271 2024-02-22 18:25:53.259 2024-02-22 18:25:53.259 1000 FEE 435361 18556 6035272 2024-02-22 18:25:53.259 2024-02-22 18:25:53.259 9000 TIP 435361 21614 6028260 2024-02-22 02:31:02.754 2024-02-22 02:31:02.754 1000 STREAM 141924 10270 6028269 2024-02-22 02:37:02.802 2024-02-22 02:37:02.802 1000 STREAM 141924 18635 6028272 2024-02-22 02:38:04.786 2024-02-22 02:38:04.786 1000 STREAM 141924 15491 6028276 2024-02-22 02:39:02.786 2024-02-22 02:39:02.786 1000 STREAM 141924 19668 6028313 2024-02-22 02:53:02.898 2024-02-22 02:53:02.898 1000 STREAM 141924 6471 6028325 2024-02-22 02:57:02.942 2024-02-22 02:57:02.942 1000 STREAM 141924 18539 6028350 2024-02-22 03:01:02.97 2024-02-22 03:01:02.97 1000 STREAM 141924 5538 6034690 2024-02-22 17:48:02.594 2024-02-22 17:48:02.594 1000 STREAM 141924 13781 6034700 2024-02-22 17:49:02.599 2024-02-22 17:49:02.599 1000 STREAM 141924 15266 6034793 2024-02-22 17:52:02.62 2024-02-22 17:52:02.62 1000 STREAM 141924 1801 6034856 2024-02-22 17:57:02.9 2024-02-22 17:57:02.9 1000 STREAM 141924 6777 6034876 2024-02-22 17:59:02.9 2024-02-22 17:59:02.9 1000 STREAM 141924 15146 6034904 2024-02-22 18:00:03.027 2024-02-22 18:00:03.027 1000 STREAM 141924 10283 6034964 2024-02-22 18:04:03.033 2024-02-22 18:04:03.033 1000 STREAM 141924 13216 6035126 2024-02-22 18:12:03.151 2024-02-22 18:12:03.151 1000 STREAM 141924 21103 6035173 2024-02-22 18:16:03.168 2024-02-22 18:16:03.168 1000 STREAM 141924 18909 6035175 2024-02-22 18:17:03.192 2024-02-22 18:17:03.192 1000 STREAM 141924 9450 6035177 2024-02-22 18:18:03.183 2024-02-22 18:18:03.183 1000 STREAM 141924 20225 6035184 2024-02-22 18:19:03.213 2024-02-22 18:19:03.213 1000 STREAM 141924 1490 6035219 2024-02-22 18:22:03.26 2024-02-22 18:22:03.26 1000 STREAM 141924 4776 6035229 2024-02-22 18:23:03.262 2024-02-22 18:23:03.262 1000 STREAM 141924 12921 6035278 2024-02-22 18:27:03.301 2024-02-22 18:27:03.301 1000 STREAM 141924 15556 6035307 2024-02-22 18:29:03.294 2024-02-22 18:29:03.294 1000 STREAM 141924 20744 6035329 2024-02-22 18:32:03.342 2024-02-22 18:32:03.342 1000 STREAM 141924 4831 6035338 2024-02-22 18:33:03.348 2024-02-22 18:33:03.348 1000 STREAM 141924 11885 6035372 2024-02-22 18:34:03.35 2024-02-22 18:34:03.35 1000 STREAM 141924 5293 6037946 2024-02-22 23:08:35.125 2024-02-22 23:08:35.125 21000 FEE 435642 16145 6037958 2024-02-22 23:12:04.697 2024-02-22 23:12:04.697 500 FEE 435402 2844 6037959 2024-02-22 23:12:04.697 2024-02-22 23:12:04.697 4500 TIP 435402 9036 6037973 2024-02-22 23:13:27.298 2024-02-22 23:13:27.298 2100 FEE 435465 19941 6037974 2024-02-22 23:13:27.298 2024-02-22 23:13:27.298 18900 TIP 435465 11898 6037975 2024-02-22 23:13:27.477 2024-02-22 23:13:27.477 2100 FEE 435465 18178 6037976 2024-02-22 23:13:27.477 2024-02-22 23:13:27.477 18900 TIP 435465 19909 6037994 2024-02-22 23:18:01.337 2024-02-22 23:18:01.337 21000 FEE 434627 18180 6037995 2024-02-22 23:18:01.337 2024-02-22 23:18:01.337 189000 TIP 434627 5759 6038015 2024-02-22 23:20:59.277 2024-02-22 23:20:59.277 8300 FEE 435488 861 6038016 2024-02-22 23:20:59.277 2024-02-22 23:20:59.277 74700 TIP 435488 14791 6038025 2024-02-22 23:21:00.328 2024-02-22 23:21:00.328 8300 FEE 435488 5779 6038026 2024-02-22 23:21:00.328 2024-02-22 23:21:00.328 74700 TIP 435488 10291 6038033 2024-02-22 23:21:01.146 2024-02-22 23:21:01.146 8300 FEE 435488 19839 6038034 2024-02-22 23:21:01.146 2024-02-22 23:21:01.146 74700 TIP 435488 19622 6038055 2024-02-22 23:21:02.527 2024-02-22 23:21:02.527 8300 FEE 435488 1534 6038056 2024-02-22 23:21:02.527 2024-02-22 23:21:02.527 74700 TIP 435488 7847 6038064 2024-02-22 23:21:03.015 2024-02-22 23:21:03.015 8300 FEE 435488 917 6038065 2024-02-22 23:21:03.015 2024-02-22 23:21:03.015 74700 TIP 435488 8037 6038086 2024-02-22 23:21:19.905 2024-02-22 23:21:19.905 8300 FEE 435488 21418 6038087 2024-02-22 23:21:19.905 2024-02-22 23:21:19.905 74700 TIP 435488 11164 6038090 2024-02-22 23:21:20.161 2024-02-22 23:21:20.161 8300 FEE 435488 20180 6038091 2024-02-22 23:21:20.161 2024-02-22 23:21:20.161 74700 TIP 435488 11091 6038092 2024-02-22 23:21:20.307 2024-02-22 23:21:20.307 8300 FEE 435488 12289 6038093 2024-02-22 23:21:20.307 2024-02-22 23:21:20.307 74700 TIP 435488 20642 6038139 2024-02-22 23:27:40.938 2024-02-22 23:27:40.938 10000 FEE 435657 9261 6038166 2024-02-22 23:30:06.664 2024-02-22 23:30:06.664 8300 FEE 435657 15196 6038167 2024-02-22 23:30:06.664 2024-02-22 23:30:06.664 74700 TIP 435657 19527 6038186 2024-02-22 23:30:09.967 2024-02-22 23:30:09.967 8300 FEE 435657 13365 6038187 2024-02-22 23:30:09.967 2024-02-22 23:30:09.967 74700 TIP 435657 13759 6038198 2024-02-22 23:31:56.131 2024-02-22 23:31:56.131 1000 FEE 435663 16059 6038237 2024-02-22 23:45:20.285 2024-02-22 23:45:20.285 100 FEE 427798 16638 6038238 2024-02-22 23:45:20.285 2024-02-22 23:45:20.285 900 TIP 427798 19938 6038239 2024-02-22 23:45:30.345 2024-02-22 23:45:30.345 2100 FEE 435497 4167 6038240 2024-02-22 23:45:30.345 2024-02-22 23:45:30.345 18900 TIP 435497 16788 6038258 2024-02-22 23:50:14.227 2024-02-22 23:50:14.227 1000 POLL 435495 12976 6038260 2024-02-22 23:50:46.535 2024-02-22 23:50:46.535 3300 FEE 435497 1505 6038261 2024-02-22 23:50:46.535 2024-02-22 23:50:46.535 29700 TIP 435497 5308 6038276 2024-02-22 23:51:37.883 2024-02-22 23:51:37.883 3300 FEE 435641 17147 6038277 2024-02-22 23:51:37.883 2024-02-22 23:51:37.883 29700 TIP 435641 16706 6038282 2024-02-22 23:52:00.16 2024-02-22 23:52:00.16 100 FEE 435610 10393 6038283 2024-02-22 23:52:00.16 2024-02-22 23:52:00.16 900 TIP 435610 18941 6038291 2024-02-22 23:52:34.655 2024-02-22 23:52:34.655 1000 FEE 435672 10280 6038321 2024-02-22 23:59:09.979 2024-02-22 23:59:09.979 0 FEE 435676 628 6038322 2024-02-22 23:59:10.273 2024-02-22 23:59:10.273 1000 FEE 435677 6058 6038333 2024-02-23 00:00:02.899 2024-02-23 00:00:02.899 300 FEE 435457 18291 6038334 2024-02-23 00:00:02.899 2024-02-23 00:00:02.899 2700 TIP 435457 1010 6038335 2024-02-23 00:00:03.137 2024-02-23 00:00:03.137 300 FEE 435457 2390 6038336 2024-02-23 00:00:03.137 2024-02-23 00:00:03.137 2700 TIP 435457 4027 6038342 2024-02-23 00:00:03.926 2024-02-23 00:00:03.926 300 FEE 435457 644 6028261 2024-02-22 02:32:03.355 2024-02-22 02:32:03.355 1000 STREAM 141924 21339 6028263 2024-02-22 02:34:03.349 2024-02-22 02:34:03.349 1000 STREAM 141924 964 6028279 2024-02-22 02:40:03.417 2024-02-22 02:40:03.417 1000 STREAM 141924 1105 6028285 2024-02-22 02:42:03.44 2024-02-22 02:42:03.44 1000 STREAM 141924 7425 6028288 2024-02-22 02:44:03.443 2024-02-22 02:44:03.443 1000 STREAM 141924 11522 6028290 2024-02-22 02:46:03.51 2024-02-22 02:46:03.51 1000 STREAM 141924 1454 6028343 2024-02-22 03:00:03.651 2024-02-22 03:00:03.651 1000 STREAM 141924 13599 6028360 2024-02-22 03:05:03.688 2024-02-22 03:05:03.688 1000 STREAM 141924 20168 6028387 2024-02-22 03:13:03.753 2024-02-22 03:13:03.753 1000 STREAM 141924 5725 6028426 2024-02-22 03:16:03.79 2024-02-22 03:16:03.79 1000 STREAM 141924 10342 6028441 2024-02-22 03:18:03.81 2024-02-22 03:18:03.81 1000 STREAM 141924 16660 6028469 2024-02-22 03:22:03.859 2024-02-22 03:22:03.859 1000 STREAM 141924 16176 6028471 2024-02-22 03:24:03.888 2024-02-22 03:24:03.888 1000 STREAM 141924 5646 6028476 2024-02-22 03:29:03.952 2024-02-22 03:29:03.952 1000 STREAM 141924 18460 6028485 2024-02-22 03:34:04.021 2024-02-22 03:34:04.021 1000 STREAM 141924 21329 6028608 2024-02-22 03:40:04.097 2024-02-22 03:40:04.097 1000 STREAM 141924 9330 6028627 2024-02-22 03:43:04.125 2024-02-22 03:43:04.125 1000 STREAM 141924 16879 6028643 2024-02-22 03:46:04.168 2024-02-22 03:46:04.168 1000 STREAM 141924 18241 6028655 2024-02-22 03:49:04.198 2024-02-22 03:49:04.198 1000 STREAM 141924 20799 6028670 2024-02-22 03:52:04.243 2024-02-22 03:52:04.243 1000 STREAM 141924 15337 6034729 2024-02-22 17:49:49.104 2024-02-22 17:49:49.104 2100 FEE 435154 15139 6034730 2024-02-22 17:49:49.104 2024-02-22 17:49:49.104 18900 TIP 435154 1454 6034731 2024-02-22 17:49:52.043 2024-02-22 17:49:52.043 200 FEE 434713 9364 6034732 2024-02-22 17:49:52.043 2024-02-22 17:49:52.043 1800 TIP 434713 20562 6034771 2024-02-22 17:50:46.686 2024-02-22 17:50:46.686 2300 FEE 435308 8245 6034772 2024-02-22 17:50:46.686 2024-02-22 17:50:46.686 20700 TIP 435308 18269 6034773 2024-02-22 17:50:46.787 2024-02-22 17:50:46.787 2300 FEE 435308 19864 6034774 2024-02-22 17:50:46.787 2024-02-22 17:50:46.787 20700 TIP 435308 12278 6034791 2024-02-22 17:51:57.529 2024-02-22 17:51:57.529 2300 FEE 435295 1092 6034792 2024-02-22 17:51:57.529 2024-02-22 17:51:57.529 20700 TIP 435295 10668 6034805 2024-02-22 17:54:05.559 2024-02-22 17:54:05.559 1000 FEE 435325 6777 6034843 2024-02-22 17:55:51.835 2024-02-22 17:55:51.835 1000 FEE 435329 3377 6034846 2024-02-22 17:56:39.261 2024-02-22 17:56:39.261 100 FEE 435323 987 6034847 2024-02-22 17:56:39.261 2024-02-22 17:56:39.261 900 TIP 435323 826 6034890 2024-02-22 17:59:19.672 2024-02-22 17:59:19.672 8300 FEE 435231 866 6034891 2024-02-22 17:59:19.672 2024-02-22 17:59:19.672 74700 TIP 435231 17682 6034896 2024-02-22 17:59:20.055 2024-02-22 17:59:20.055 8300 FEE 435231 5703 6034897 2024-02-22 17:59:20.055 2024-02-22 17:59:20.055 74700 TIP 435231 2529 6034917 2024-02-22 18:00:50.025 2024-02-22 18:00:50.025 3300 FEE 435115 17517 6034918 2024-02-22 18:00:50.025 2024-02-22 18:00:50.025 29700 TIP 435115 1483 6034921 2024-02-22 18:00:55.901 2024-02-22 18:00:55.901 3300 FEE 435115 688 6034922 2024-02-22 18:00:55.901 2024-02-22 18:00:55.901 29700 TIP 435115 8284 6034941 2024-02-22 18:01:36.299 2024-02-22 18:01:36.299 3300 FEE 435318 20614 6034942 2024-02-22 18:01:36.299 2024-02-22 18:01:36.299 29700 TIP 435318 21037 6034954 2024-02-22 18:02:00.445 2024-02-22 18:02:00.445 3300 FEE 435046 19507 6034955 2024-02-22 18:02:00.445 2024-02-22 18:02:00.445 29700 TIP 435046 11992 6034982 2024-02-22 18:04:48.103 2024-02-22 18:04:48.103 8300 FEE 435327 19465 6034983 2024-02-22 18:04:48.103 2024-02-22 18:04:48.103 74700 TIP 435327 805 6035008 2024-02-22 18:05:23.201 2024-02-22 18:05:23.201 500 FEE 435046 21338 6035009 2024-02-22 18:05:23.201 2024-02-22 18:05:23.201 4500 TIP 435046 21466 6035010 2024-02-22 18:05:42.094 2024-02-22 18:05:42.094 3300 FEE 435338 4313 6035011 2024-02-22 18:05:42.094 2024-02-22 18:05:42.094 29700 TIP 435338 10608 6035040 2024-02-22 18:06:00.214 2024-02-22 18:06:00.214 8300 FEE 435231 21140 6035041 2024-02-22 18:06:00.214 2024-02-22 18:06:00.214 74700 TIP 435231 14385 6035092 2024-02-22 18:10:58.461 2024-02-22 18:10:58.461 1000 FEE 435350 900 6035094 2024-02-22 18:11:02.087 2024-02-22 18:11:02.087 100 FEE 435349 803 6035095 2024-02-22 18:11:02.087 2024-02-22 18:11:02.087 900 TIP 435349 8162 6035098 2024-02-22 18:11:02.816 2024-02-22 18:11:02.816 9000 FEE 435349 18423 6035099 2024-02-22 18:11:02.816 2024-02-22 18:11:02.816 81000 TIP 435349 20904 6035113 2024-02-22 18:11:42.029 2024-02-22 18:11:42.029 10000 FEE 433878 891 6035114 2024-02-22 18:11:42.029 2024-02-22 18:11:42.029 90000 TIP 433878 12278 6035119 2024-02-22 18:11:43.22 2024-02-22 18:11:43.22 10000 FEE 433878 19864 6035120 2024-02-22 18:11:43.22 2024-02-22 18:11:43.22 90000 TIP 433878 2437 6035151 2024-02-22 18:12:49.878 2024-02-22 18:12:49.878 2100 FEE 435314 13398 6035152 2024-02-22 18:12:49.878 2024-02-22 18:12:49.878 18900 TIP 435314 16724 6035156 2024-02-22 18:13:12.444 2024-02-22 18:13:12.444 3300 FEE 435261 2233 6035157 2024-02-22 18:13:12.444 2024-02-22 18:13:12.444 29700 TIP 435261 16879 6035176 2024-02-22 18:17:06.74 2024-02-22 18:17:06.74 1000 FEE 435355 21242 6035232 2024-02-22 18:23:14.38 2024-02-22 18:23:14.38 11100 FEE 435327 18116 6035233 2024-02-22 18:23:14.38 2024-02-22 18:23:14.38 99900 TIP 435327 11561 6035239 2024-02-22 18:24:07.782 2024-02-22 18:24:07.782 10000 FEE 434994 16665 6035240 2024-02-22 18:24:07.782 2024-02-22 18:24:07.782 90000 TIP 434994 18309 6035241 2024-02-22 18:24:23.78 2024-02-22 18:24:23.78 1000 FEE 435284 20267 6035242 2024-02-22 18:24:23.78 2024-02-22 18:24:23.78 9000 TIP 435284 638 6035253 2024-02-22 18:24:35.146 2024-02-22 18:24:35.146 1000 FEE 435326 902 6035254 2024-02-22 18:24:35.146 2024-02-22 18:24:35.146 9000 TIP 435326 5449 6035275 2024-02-22 18:26:03.231 2024-02-22 18:26:03.231 1000 FEE 435362 16347 6035277 2024-02-22 18:26:12.242 2024-02-22 18:26:12.242 1000 FEE 435363 2293 6035314 2024-02-22 18:29:33.682 2024-02-22 18:29:33.682 1000 FEE 435366 12911 6035315 2024-02-22 18:29:33.682 2024-02-22 18:29:33.682 9000 TIP 435366 10638 6035356 2024-02-22 18:33:42.316 2024-02-22 18:33:42.316 1000 FEE 435359 8535 6035357 2024-02-22 18:33:42.316 2024-02-22 18:33:42.316 9000 TIP 435359 15560 6035366 2024-02-22 18:33:45.425 2024-02-22 18:33:45.425 8300 FEE 435357 1618 6035367 2024-02-22 18:33:45.425 2024-02-22 18:33:45.425 74700 TIP 435357 10611 6035395 2024-02-22 18:34:46.103 2024-02-22 18:34:46.103 2100 FEE 435136 19506 6035396 2024-02-22 18:34:46.103 2024-02-22 18:34:46.103 18900 TIP 435136 15526 6035405 2024-02-22 18:35:20.559 2024-02-22 18:35:20.559 10000 FEE 435231 13759 6035406 2024-02-22 18:35:20.559 2024-02-22 18:35:20.559 90000 TIP 435231 1740 6035410 2024-02-22 18:36:37.22 2024-02-22 18:36:37.22 1000 FEE 435368 18174 6035411 2024-02-22 18:36:37.22 2024-02-22 18:36:37.22 9000 TIP 435368 2639 6035421 2024-02-22 18:37:19.099 2024-02-22 18:37:19.099 1000 FEE 434798 666 6035422 2024-02-22 18:37:19.099 2024-02-22 18:37:19.099 9000 TIP 434798 18138 6028262 2024-02-22 02:33:02.764 2024-02-22 02:33:02.764 1000 STREAM 141924 1094 6028264 2024-02-22 02:35:02.769 2024-02-22 02:35:02.769 1000 STREAM 141924 18387 6034812 2024-02-22 17:54:46.174 2024-02-22 17:54:46.174 27000 TIP 435310 19378 6034817 2024-02-22 17:55:08.379 2024-02-22 17:55:08.379 3000 FEE 435324 1012 6034818 2024-02-22 17:55:08.379 2024-02-22 17:55:08.379 27000 TIP 435324 18262 6034861 2024-02-22 17:57:29.327 2024-02-22 17:57:29.327 1000 FEE 435334 16970 6034869 2024-02-22 17:58:12.265 2024-02-22 17:58:12.265 0 FEE 435335 2528 6034879 2024-02-22 17:59:15.28 2024-02-22 17:59:15.28 3300 FEE 435275 1261 6034880 2024-02-22 17:59:15.28 2024-02-22 17:59:15.28 29700 TIP 435275 10934 6034892 2024-02-22 17:59:19.802 2024-02-22 17:59:19.802 8300 FEE 435231 17639 6034893 2024-02-22 17:59:19.802 2024-02-22 17:59:19.802 74700 TIP 435231 11821 6034894 2024-02-22 17:59:19.919 2024-02-22 17:59:19.919 8300 FEE 435231 20502 6034895 2024-02-22 17:59:19.919 2024-02-22 17:59:19.919 74700 TIP 435231 9350 6034903 2024-02-22 17:59:56.529 2024-02-22 17:59:56.529 1000 FEE 435339 1617 6034913 2024-02-22 18:00:23.232 2024-02-22 18:00:23.232 3300 FEE 435136 652 6034914 2024-02-22 18:00:23.232 2024-02-22 18:00:23.232 29700 TIP 435136 12291 6034943 2024-02-22 18:01:36.493 2024-02-22 18:01:36.493 3300 FEE 435318 9169 6034944 2024-02-22 18:01:36.493 2024-02-22 18:01:36.493 29700 TIP 435318 21070 6034945 2024-02-22 18:01:38.404 2024-02-22 18:01:38.404 3300 FEE 435171 21589 6034946 2024-02-22 18:01:38.404 2024-02-22 18:01:38.404 29700 TIP 435171 9351 6034949 2024-02-22 18:01:42.033 2024-02-22 18:01:42.033 1700 FEE 435171 9107 6034950 2024-02-22 18:01:42.033 2024-02-22 18:01:42.033 15300 TIP 435171 18660 6034956 2024-02-22 18:02:01.021 2024-02-22 18:02:01.021 3300 FEE 435046 15732 6034957 2024-02-22 18:02:01.021 2024-02-22 18:02:01.021 29700 TIP 435046 18138 6034959 2024-02-22 18:02:16.489 2024-02-22 18:02:16.489 3300 FEE 435120 19463 6034960 2024-02-22 18:02:16.489 2024-02-22 18:02:16.489 29700 TIP 435120 798 6034961 2024-02-22 18:02:16.644 2024-02-22 18:02:16.644 3300 FEE 435120 928 6034962 2024-02-22 18:02:16.644 2024-02-22 18:02:16.644 29700 TIP 435120 12976 6034969 2024-02-22 18:04:25.494 2024-02-22 18:04:25.494 1000 FEE 435263 17171 6034970 2024-02-22 18:04:25.494 2024-02-22 18:04:25.494 9000 TIP 435263 15213 6034992 2024-02-22 18:04:48.798 2024-02-22 18:04:48.798 8300 FEE 435327 8648 6034993 2024-02-22 18:04:48.798 2024-02-22 18:04:48.798 74700 TIP 435327 20754 6035022 2024-02-22 18:05:51.894 2024-02-22 18:05:51.894 900 FEE 435327 5942 6035023 2024-02-22 18:05:51.894 2024-02-22 18:05:51.894 8100 TIP 435327 994 6035049 2024-02-22 18:06:48.553 2024-02-22 18:06:48.553 3300 FEE 435086 11609 6035050 2024-02-22 18:06:48.553 2024-02-22 18:06:48.553 29700 TIP 435086 18517 6035071 2024-02-22 18:09:35.071 2024-02-22 18:09:35.071 1000 FEE 433167 18423 6035072 2024-02-22 18:09:35.071 2024-02-22 18:09:35.071 9000 TIP 433167 20603 6035084 2024-02-22 18:10:26.111 2024-02-22 18:10:26.111 2100 FEE 435328 21575 6035085 2024-02-22 18:10:26.111 2024-02-22 18:10:26.111 18900 TIP 435328 16680 6035117 2024-02-22 18:11:42.852 2024-02-22 18:11:42.852 10000 FEE 433878 4126 6035118 2024-02-22 18:11:42.852 2024-02-22 18:11:42.852 90000 TIP 433878 5520 6035135 2024-02-22 18:12:27.929 2024-02-22 18:12:27.929 2100 FEE 435120 811 6035136 2024-02-22 18:12:27.929 2024-02-22 18:12:27.929 18900 TIP 435120 16354 6035139 2024-02-22 18:12:36.145 2024-02-22 18:12:36.145 2100 FEE 435284 1352 6035140 2024-02-22 18:12:36.145 2024-02-22 18:12:36.145 18900 TIP 435284 673 6035164 2024-02-22 18:14:00.487 2024-02-22 18:14:00.487 800 FEE 434994 20337 6035165 2024-02-22 18:14:00.487 2024-02-22 18:14:00.487 7200 TIP 434994 2322 6035187 2024-02-22 18:19:32.683 2024-02-22 18:19:32.683 1000 FEE 435120 9 6035188 2024-02-22 18:19:32.683 2024-02-22 18:19:32.683 9000 TIP 435120 654 6035210 2024-02-22 18:21:47.598 2024-02-22 18:21:47.598 2300 FEE 435352 18380 6035211 2024-02-22 18:21:47.598 2024-02-22 18:21:47.598 20700 TIP 435352 18470 6035222 2024-02-22 18:22:09.355 2024-02-22 18:22:09.355 1000 FEE 435358 2513 6035283 2024-02-22 18:27:59.605 2024-02-22 18:27:59.605 1000 FEE 435364 3656 6035287 2024-02-22 18:28:44.577 2024-02-22 18:28:44.577 1000 FEE 435359 18539 6035288 2024-02-22 18:28:44.577 2024-02-22 18:28:44.577 9000 TIP 435359 17172 6035316 2024-02-22 18:29:34.151 2024-02-22 18:29:34.151 1000 FEE 435366 9276 6035317 2024-02-22 18:29:34.151 2024-02-22 18:29:34.151 9000 TIP 435366 19662 6035320 2024-02-22 18:29:35.077 2024-02-22 18:29:35.077 1000 FEE 435366 21469 6035321 2024-02-22 18:29:35.077 2024-02-22 18:29:35.077 9000 TIP 435366 659 6035323 2024-02-22 18:30:34.234 2024-02-22 18:30:34.234 1000 FEE 435367 21057 6035350 2024-02-22 18:33:40.478 2024-02-22 18:33:40.478 8300 FEE 435328 16809 6035351 2024-02-22 18:33:40.478 2024-02-22 18:33:40.478 74700 TIP 435328 16194 6035364 2024-02-22 18:33:44.985 2024-02-22 18:33:44.985 8300 FEE 435357 981 6035365 2024-02-22 18:33:44.985 2024-02-22 18:33:44.985 74700 TIP 435357 5779 6035373 2024-02-22 18:34:09.526 2024-02-22 18:34:09.526 8300 FEE 435359 14278 6035374 2024-02-22 18:34:09.526 2024-02-22 18:34:09.526 74700 TIP 435359 21455 6035387 2024-02-22 18:34:30.979 2024-02-22 18:34:30.979 100000 FEE 435369 14669 6035467 2024-02-22 18:40:40.526 2024-02-22 18:40:40.526 1100 FEE 434994 11263 6035468 2024-02-22 18:40:40.526 2024-02-22 18:40:40.526 9900 TIP 434994 1617 6035469 2024-02-22 18:40:40.692 2024-02-22 18:40:40.692 1100 FEE 434994 13544 6035470 2024-02-22 18:40:40.692 2024-02-22 18:40:40.692 9900 TIP 434994 8916 6035477 2024-02-22 18:40:48.916 2024-02-22 18:40:48.916 1000 FEE 435376 12261 6035509 2024-02-22 18:41:25.517 2024-02-22 18:41:25.517 1000 FEE 435343 17984 6035510 2024-02-22 18:41:25.517 2024-02-22 18:41:25.517 9000 TIP 435343 11145 6035523 2024-02-22 18:41:34.921 2024-02-22 18:41:34.921 1000 FEE 435231 889 6035524 2024-02-22 18:41:34.921 2024-02-22 18:41:34.921 9000 TIP 435231 15858 6035525 2024-02-22 18:41:35.486 2024-02-22 18:41:35.486 1000 FEE 435231 664 6035526 2024-02-22 18:41:35.486 2024-02-22 18:41:35.486 9000 TIP 435231 20302 6035540 2024-02-22 18:44:38.732 2024-02-22 18:44:38.732 1000 FEE 435378 19243 6035566 2024-02-22 18:47:11.264 2024-02-22 18:47:11.264 1000 FEE 435231 7983 6035567 2024-02-22 18:47:11.264 2024-02-22 18:47:11.264 9000 TIP 435231 2330 6035579 2024-02-22 18:48:23.316 2024-02-22 18:48:23.316 1000 FEE 434124 663 6035580 2024-02-22 18:48:23.316 2024-02-22 18:48:23.316 9000 TIP 434124 5308 6035581 2024-02-22 18:48:24.922 2024-02-22 18:48:24.922 1000 FEE 434124 20730 6035582 2024-02-22 18:48:24.922 2024-02-22 18:48:24.922 9000 TIP 434124 20327 6035585 2024-02-22 18:48:25.357 2024-02-22 18:48:25.357 1000 FEE 434124 13133 6035586 2024-02-22 18:48:25.357 2024-02-22 18:48:25.357 9000 TIP 434124 5829 6035610 2024-02-22 18:50:23.538 2024-02-22 18:50:23.538 8300 FEE 435377 656 6035611 2024-02-22 18:50:23.538 2024-02-22 18:50:23.538 74700 TIP 435377 1261 6035619 2024-02-22 18:51:02.04 2024-02-22 18:51:02.04 1000 FEE 435386 999 6035620 2024-02-22 18:51:02.04 2024-02-22 18:51:02.04 9000 TIP 435386 21281 6035621 2024-02-22 18:51:02.952 2024-02-22 18:51:02.952 1000 FEE 435386 2151 6035622 2024-02-22 18:51:02.952 2024-02-22 18:51:02.952 9000 TIP 435386 11862 6035627 2024-02-22 18:51:03.376 2024-02-22 18:51:03.376 2300 FEE 435377 11648 6035628 2024-02-22 18:51:03.376 2024-02-22 18:51:03.376 20700 TIP 435377 21248 6035640 2024-02-22 18:51:05.33 2024-02-22 18:51:05.33 1000 FEE 435386 19633 6028282 2024-02-22 02:41:02.842 2024-02-22 02:41:02.842 1000 STREAM 141924 17212 6028291 2024-02-22 02:47:02.842 2024-02-22 02:47:02.842 1000 STREAM 141924 16998 6034844 2024-02-22 17:56:04.844 2024-02-22 17:56:04.844 1000 STREAM 141924 21374 6037957 2024-02-22 23:12:02.796 2024-02-22 23:12:02.796 1000 STREAM 141924 21469 6037989 2024-02-22 23:15:02.828 2024-02-22 23:15:02.828 1000 STREAM 141924 836 6038105 2024-02-22 23:22:02.906 2024-02-22 23:22:02.906 1000 STREAM 141924 14950 6038121 2024-02-22 23:23:02.92 2024-02-22 23:23:02.92 1000 STREAM 141924 7986 6038131 2024-02-22 23:25:02.921 2024-02-22 23:25:02.921 1000 STREAM 141924 14515 6038153 2024-02-22 23:29:02.941 2024-02-22 23:29:02.941 1000 STREAM 141924 5703 6038196 2024-02-22 23:31:02.972 2024-02-22 23:31:02.972 1000 STREAM 141924 20153 6038204 2024-02-22 23:34:02.983 2024-02-22 23:34:02.983 1000 STREAM 141924 9874 6038207 2024-02-22 23:37:02.956 2024-02-22 23:37:02.956 1000 STREAM 141924 18380 6038214 2024-02-22 23:40:02.993 2024-02-22 23:40:02.993 1000 STREAM 141924 14959 6038216 2024-02-22 23:42:03.007 2024-02-22 23:42:03.007 1000 STREAM 141924 9552 6038222 2024-02-22 23:43:02.998 2024-02-22 23:43:02.998 1000 STREAM 141924 20655 6038254 2024-02-22 23:47:03.022 2024-02-22 23:47:03.022 1000 STREAM 141924 21591 6038255 2024-02-22 23:48:03.041 2024-02-22 23:48:03.041 1000 STREAM 141924 20826 6038264 2024-02-22 23:51:03.06 2024-02-22 23:51:03.06 1000 STREAM 141924 18896 6038286 2024-02-22 23:52:03.064 2024-02-22 23:52:03.064 1000 STREAM 141924 3439 6038294 2024-02-22 23:53:03.043 2024-02-22 23:53:03.043 1000 STREAM 141924 16505 6038299 2024-02-22 23:54:03.059 2024-02-22 23:54:03.059 1000 STREAM 141924 17171 6038303 2024-02-22 23:55:03.074 2024-02-22 23:55:03.074 1000 STREAM 141924 20208 6038309 2024-02-22 23:57:03.104 2024-02-22 23:57:03.104 1000 STREAM 141924 2101 6038318 2024-02-22 23:59:03.114 2024-02-22 23:59:03.114 1000 STREAM 141924 5865 6038373 2024-02-23 00:01:03.123 2024-02-23 00:01:03.123 1000 STREAM 141924 20849 6038378 2024-02-23 00:02:03.129 2024-02-23 00:02:03.129 1000 STREAM 141924 21578 6038395 2024-02-23 00:04:03.163 2024-02-23 00:04:03.163 1000 STREAM 141924 3411 6038428 2024-02-23 00:07:03.192 2024-02-23 00:07:03.192 1000 STREAM 141924 21523 6038432 2024-02-23 00:09:03.207 2024-02-23 00:09:03.207 1000 STREAM 141924 20205 6038436 2024-02-23 00:12:03.249 2024-02-23 00:12:03.249 1000 STREAM 141924 19352 6038506 2024-02-23 00:14:03.267 2024-02-23 00:14:03.267 1000 STREAM 141924 6688 6038548 2024-02-23 00:17:03.268 2024-02-23 00:17:03.268 1000 STREAM 141924 20715 6038559 2024-02-23 00:20:03.321 2024-02-23 00:20:03.321 1000 STREAM 141924 8570 6038566 2024-02-23 00:21:03.298 2024-02-23 00:21:03.298 1000 STREAM 141924 20596 6038569 2024-02-23 00:22:03.299 2024-02-23 00:22:03.299 1000 STREAM 141924 7659 6038580 2024-02-23 00:25:03.348 2024-02-23 00:25:03.348 1000 STREAM 141924 20704 6038654 2024-02-23 00:28:03.393 2024-02-23 00:28:03.393 1000 STREAM 141924 17275 6038658 2024-02-23 00:29:03.423 2024-02-23 00:29:03.423 1000 STREAM 141924 10731 6038662 2024-02-23 00:30:03.425 2024-02-23 00:30:03.425 1000 STREAM 141924 2232 6038665 2024-02-23 00:31:03.419 2024-02-23 00:31:03.419 1000 STREAM 141924 6136 6038676 2024-02-23 00:33:03.428 2024-02-23 00:33:03.428 1000 STREAM 141924 13174 6038677 2024-02-23 00:34:03.452 2024-02-23 00:34:03.452 1000 STREAM 141924 9177 6038680 2024-02-23 00:35:03.456 2024-02-23 00:35:03.456 1000 STREAM 141924 2013 6038722 2024-02-23 00:41:03.504 2024-02-23 00:41:03.504 1000 STREAM 141924 5761 6038724 2024-02-23 00:43:03.499 2024-02-23 00:43:03.499 1000 STREAM 141924 1717 6038730 2024-02-23 00:45:03.572 2024-02-23 00:45:03.572 1000 STREAM 141924 16059 6038731 2024-02-23 00:46:03.562 2024-02-23 00:46:03.562 1000 STREAM 141924 13782 6038734 2024-02-23 00:47:03.553 2024-02-23 00:47:03.553 1000 STREAM 141924 889 6038750 2024-02-23 00:49:03.572 2024-02-23 00:49:03.572 1000 STREAM 141924 9655 6038755 2024-02-23 00:50:03.645 2024-02-23 00:50:03.645 1000 STREAM 141924 20837 6038768 2024-02-23 00:52:03.608 2024-02-23 00:52:03.608 1000 STREAM 141924 9833 6038776 2024-02-23 00:54:03.594 2024-02-23 00:54:03.594 1000 STREAM 141924 2460 6038789 2024-02-23 00:56:03.617 2024-02-23 00:56:03.617 1000 STREAM 141924 5961 6038802 2024-02-23 00:59:03.626 2024-02-23 00:59:03.626 1000 STREAM 141924 5500 6038804 2024-02-23 01:00:03.684 2024-02-23 01:00:03.684 1000 STREAM 141924 19732 6038809 2024-02-23 01:02:03.642 2024-02-23 01:02:03.642 1000 STREAM 141924 2749 6038817 2024-02-23 01:04:03.664 2024-02-23 01:04:03.664 1000 STREAM 141924 7847 6038822 2024-02-23 01:05:03.676 2024-02-23 01:05:03.676 1000 STREAM 141924 17014 6038880 2024-02-23 01:14:03.718 2024-02-23 01:14:03.718 1000 STREAM 141924 12768 6038886 2024-02-23 01:16:03.747 2024-02-23 01:16:03.747 1000 STREAM 141924 4175 6038888 2024-02-23 01:18:03.764 2024-02-23 01:18:03.764 1000 STREAM 141924 1352 6038895 2024-02-23 01:21:03.783 2024-02-23 01:21:03.783 1000 STREAM 141924 5942 6038900 2024-02-23 01:23:03.809 2024-02-23 01:23:03.809 1000 STREAM 141924 6749 6038906 2024-02-23 01:25:10.426 2024-02-23 01:25:10.426 2300 FEE 435728 20861 6038907 2024-02-23 01:25:10.426 2024-02-23 01:25:10.426 20700 TIP 435728 20120 6038936 2024-02-23 01:25:37.44 2024-02-23 01:25:37.44 2300 FEE 435639 16176 6038937 2024-02-23 01:25:37.44 2024-02-23 01:25:37.44 20700 TIP 435639 910 6038940 2024-02-23 01:26:02.278 2024-02-23 01:26:02.278 100 FEE 435647 780 6038941 2024-02-23 01:26:02.278 2024-02-23 01:26:02.278 900 TIP 435647 10270 6038942 2024-02-23 01:26:03.836 2024-02-23 01:26:03.836 1000 STREAM 141924 15697 6038956 2024-02-23 01:28:03.855 2024-02-23 01:28:03.855 1000 STREAM 141924 14774 6038959 2024-02-23 01:28:09.215 2024-02-23 01:28:09.215 2100 FEE 435690 1010 6038960 2024-02-23 01:28:09.215 2024-02-23 01:28:09.215 18900 TIP 435690 8870 6038963 2024-02-23 01:29:03.864 2024-02-23 01:29:03.864 1000 STREAM 141924 2832 6028297 2024-02-22 02:49:02.891 2024-02-22 02:49:02.891 1000 STREAM 141924 20624 6028307 2024-02-22 02:51:02.894 2024-02-22 02:51:02.894 1000 STREAM 141924 18359 6028321 2024-02-22 02:55:02.925 2024-02-22 02:55:02.925 1000 STREAM 141924 9084 6028332 2024-02-22 02:59:02.957 2024-02-22 02:59:02.957 1000 STREAM 141924 21563 6028355 2024-02-22 03:03:02.966 2024-02-22 03:03:02.966 1000 STREAM 141924 11873 6028356 2024-02-22 03:04:04.973 2024-02-22 03:04:04.973 1000 STREAM 141924 19329 6028361 2024-02-22 03:06:02.985 2024-02-22 03:06:02.985 1000 STREAM 141924 18829 6034975 2024-02-22 18:04:47.543 2024-02-22 18:04:47.543 74700 TIP 435327 14795 6034976 2024-02-22 18:04:47.755 2024-02-22 18:04:47.755 8300 FEE 435327 16214 6034977 2024-02-22 18:04:47.755 2024-02-22 18:04:47.755 74700 TIP 435327 889 6034986 2024-02-22 18:04:48.436 2024-02-22 18:04:48.436 8300 FEE 435327 13927 6034987 2024-02-22 18:04:48.436 2024-02-22 18:04:48.436 74700 TIP 435327 1617 6035000 2024-02-22 18:04:49.254 2024-02-22 18:04:49.254 8300 FEE 435327 21269 6035001 2024-02-22 18:04:49.254 2024-02-22 18:04:49.254 74700 TIP 435327 12708 6035004 2024-02-22 18:05:09.844 2024-02-22 18:05:09.844 8300 FEE 435314 19809 6035005 2024-02-22 18:05:09.844 2024-02-22 18:05:09.844 74700 TIP 435314 20585 6035018 2024-02-22 18:05:46.589 2024-02-22 18:05:46.589 1000 FEE 435328 686 6035019 2024-02-22 18:05:46.589 2024-02-22 18:05:46.589 9000 TIP 435328 20187 6035032 2024-02-22 18:05:55.651 2024-02-22 18:05:55.651 1000 FEE 435314 20602 6035033 2024-02-22 18:05:55.651 2024-02-22 18:05:55.651 9000 TIP 435314 21395 6035038 2024-02-22 18:06:00.184 2024-02-22 18:06:00.184 8300 FEE 435231 17713 6035039 2024-02-22 18:06:00.184 2024-02-22 18:06:00.184 74700 TIP 435231 17639 6035060 2024-02-22 18:07:57.71 2024-02-22 18:07:57.71 1000 FEE 433088 20849 6035061 2024-02-22 18:07:57.71 2024-02-22 18:07:57.71 9000 TIP 433088 14663 6035069 2024-02-22 18:09:26.796 2024-02-22 18:09:26.796 1000 FEE 433892 5173 6035070 2024-02-22 18:09:26.796 2024-02-22 18:09:26.796 9000 TIP 433892 20306 6035075 2024-02-22 18:09:50.356 2024-02-22 18:09:50.356 800 FEE 434796 19282 6035076 2024-02-22 18:09:50.356 2024-02-22 18:09:50.356 7200 TIP 434796 1007 6035124 2024-02-22 18:12:02.222 2024-02-22 18:12:02.222 2100 FEE 435231 11144 6035125 2024-02-22 18:12:02.222 2024-02-22 18:12:02.222 18900 TIP 435231 18659 6035150 2024-02-22 18:12:49.389 2024-02-22 18:12:49.389 10000 DONT_LIKE_THIS 435276 21482 6035160 2024-02-22 18:13:57.467 2024-02-22 18:13:57.467 2100 FEE 435188 8916 6035161 2024-02-22 18:13:57.467 2024-02-22 18:13:57.467 18900 TIP 435188 15146 6035169 2024-02-22 18:14:56.551 2024-02-22 18:14:56.551 1000 FEE 435353 9159 6035192 2024-02-22 18:20:21.732 2024-02-22 18:20:21.732 2300 FEE 435346 9695 6035193 2024-02-22 18:20:21.732 2024-02-22 18:20:21.732 20700 TIP 435346 2204 6035198 2024-02-22 18:20:22.19 2024-02-22 18:20:22.19 2300 FEE 435346 9820 6035199 2024-02-22 18:20:22.19 2024-02-22 18:20:22.19 20700 TIP 435346 20603 6035200 2024-02-22 18:20:23.047 2024-02-22 18:20:23.047 2300 FEE 435346 18280 6035201 2024-02-22 18:20:23.047 2024-02-22 18:20:23.047 20700 TIP 435346 654 6035204 2024-02-22 18:21:01.324 2024-02-22 18:21:01.324 2500 FEE 434779 895 6035205 2024-02-22 18:21:01.324 2024-02-22 18:21:01.324 22500 TIP 434779 5758 6035212 2024-02-22 18:21:47.806 2024-02-22 18:21:47.806 2300 FEE 435352 6383 6035213 2024-02-22 18:21:47.806 2024-02-22 18:21:47.806 20700 TIP 435352 5865 6035218 2024-02-22 18:21:59.224 2024-02-22 18:21:59.224 100000 FEE 435357 9494 6035223 2024-02-22 18:22:09.604 2024-02-22 18:22:09.604 2500 FEE 434685 21172 6035224 2024-02-22 18:22:09.604 2024-02-22 18:22:09.604 22500 TIP 434685 20087 6035225 2024-02-22 18:22:44.035 2024-02-22 18:22:44.035 2500 FEE 434827 21342 6035226 2024-02-22 18:22:44.035 2024-02-22 18:22:44.035 22500 TIP 434827 2233 6035235 2024-02-22 18:23:45.959 2024-02-22 18:23:45.959 1000 FEE 435360 19036 6035261 2024-02-22 18:24:50.56 2024-02-22 18:24:50.56 1000 FEE 435328 826 6035262 2024-02-22 18:24:50.56 2024-02-22 18:24:50.56 9000 TIP 435328 1772 6035263 2024-02-22 18:24:50.866 2024-02-22 18:24:50.866 1000 FEE 435328 6573 6035264 2024-02-22 18:24:50.866 2024-02-22 18:24:50.866 9000 TIP 435328 17226 6035309 2024-02-22 18:29:11.536 2024-02-22 18:29:11.536 2100 FEE 435046 9351 6035310 2024-02-22 18:29:11.536 2024-02-22 18:29:11.536 18900 TIP 435046 13782 6035330 2024-02-22 18:32:04.535 2024-02-22 18:32:04.535 3000 FEE 435365 9335 6035331 2024-02-22 18:32:04.535 2024-02-22 18:32:04.535 27000 TIP 435365 27 6035334 2024-02-22 18:32:32.465 2024-02-22 18:32:32.465 500 FEE 435354 17221 6035335 2024-02-22 18:32:32.465 2024-02-22 18:32:32.465 4500 TIP 435354 715 6035341 2024-02-22 18:33:09.955 2024-02-22 18:33:09.955 1000 FEE 435368 9863 6035344 2024-02-22 18:33:32.793 2024-02-22 18:33:32.793 8300 FEE 435217 21393 6035345 2024-02-22 18:33:32.793 2024-02-22 18:33:32.793 74700 TIP 435217 20858 6035348 2024-02-22 18:33:40.422 2024-02-22 18:33:40.422 8300 FEE 435328 811 6035349 2024-02-22 18:33:40.422 2024-02-22 18:33:40.422 74700 TIP 435328 20514 6035362 2024-02-22 18:33:44.739 2024-02-22 18:33:44.739 1000 FEE 435359 20133 6035363 2024-02-22 18:33:44.739 2024-02-22 18:33:44.739 9000 TIP 435359 16839 6035375 2024-02-22 18:34:09.726 2024-02-22 18:34:09.726 8300 FEE 435359 977 6035376 2024-02-22 18:34:09.726 2024-02-22 18:34:09.726 74700 TIP 435359 12819 6035388 2024-02-22 18:34:35.831 2024-02-22 18:34:35.831 1000 FEE 435370 9920 6035435 2024-02-22 18:39:05.051 2024-02-22 18:39:05.051 2100 FEE 435261 17722 6035436 2024-02-22 18:39:05.051 2024-02-22 18:39:05.051 18900 TIP 435261 2203 6035444 2024-02-22 18:40:13.201 2024-02-22 18:40:13.201 2100 FEE 435214 1195 6035445 2024-02-22 18:40:13.201 2024-02-22 18:40:13.201 18900 TIP 435214 18543 6035489 2024-02-22 18:41:06.447 2024-02-22 18:41:06.447 10000 FEE 435246 2342 6035490 2024-02-22 18:41:06.447 2024-02-22 18:41:06.447 90000 TIP 435246 9352 6035499 2024-02-22 18:41:23.104 2024-02-22 18:41:23.104 1000 FEE 435343 9276 6035500 2024-02-22 18:41:23.104 2024-02-22 18:41:23.104 9000 TIP 435343 20669 6035531 2024-02-22 18:43:22.038 2024-02-22 18:43:22.038 1000 FEE 435377 866 6035545 2024-02-22 18:45:03.484 2024-02-22 18:45:03.484 0 FEE 435378 18291 6035552 2024-02-22 18:46:23.645 2024-02-22 18:46:23.645 0 FEE 435378 14037 6035562 2024-02-22 18:47:11.021 2024-02-22 18:47:11.021 1000 FEE 435231 12272 6035563 2024-02-22 18:47:11.021 2024-02-22 18:47:11.021 9000 TIP 435231 20153 6028381 2024-02-22 03:08:03.038 2024-02-22 03:08:03.038 1000 STREAM 141924 1611 6028386 2024-02-22 03:12:03.035 2024-02-22 03:12:03.035 1000 STREAM 141924 4802 6028425 2024-02-22 03:15:03.046 2024-02-22 03:15:03.046 1000 STREAM 141924 18663 6028457 2024-02-22 03:19:03.063 2024-02-22 03:19:03.063 1000 STREAM 141924 19484 6028470 2024-02-22 03:23:03.077 2024-02-22 03:23:03.077 1000 STREAM 141924 20187 6034997 2024-02-22 18:04:49.025 2024-02-22 18:04:49.025 74700 TIP 435327 8287 6034998 2024-02-22 18:04:49.14 2024-02-22 18:04:49.14 8300 FEE 435327 18313 6034999 2024-02-22 18:04:49.14 2024-02-22 18:04:49.14 74700 TIP 435327 2722 6035003 2024-02-22 18:05:05.776 2024-02-22 18:05:05.776 1000 FEE 435348 14168 6035006 2024-02-22 18:05:16.673 2024-02-22 18:05:16.673 8300 FEE 435314 16847 6035007 2024-02-22 18:05:16.673 2024-02-22 18:05:16.673 74700 TIP 435314 8080 6035012 2024-02-22 18:05:45.856 2024-02-22 18:05:45.856 2000 FEE 435328 21522 6035013 2024-02-22 18:05:45.856 2024-02-22 18:05:45.856 18000 TIP 435328 18448 6035016 2024-02-22 18:05:46.444 2024-02-22 18:05:46.444 1000 FEE 435328 19826 6035017 2024-02-22 18:05:46.444 2024-02-22 18:05:46.444 9000 TIP 435328 13599 6035030 2024-02-22 18:05:55.357 2024-02-22 18:05:55.357 1000 FEE 435314 700 6035031 2024-02-22 18:05:55.357 2024-02-22 18:05:55.357 9000 TIP 435314 8796 6035036 2024-02-22 18:06:00 2024-02-22 18:06:00 8300 FEE 435231 5036 6035037 2024-02-22 18:06:00 2024-02-22 18:06:00 74700 TIP 435231 19263 6035044 2024-02-22 18:06:00.806 2024-02-22 18:06:00.806 8300 FEE 435231 7766 6035045 2024-02-22 18:06:00.806 2024-02-22 18:06:00.806 74700 TIP 435231 1224 6035051 2024-02-22 18:07:01.572 2024-02-22 18:07:01.572 5000 FEE 435335 14669 6035052 2024-02-22 18:07:01.572 2024-02-22 18:07:01.572 45000 TIP 435335 18772 6035066 2024-02-22 18:09:01.606 2024-02-22 18:09:01.606 3000 FEE 435347 15088 6035067 2024-02-22 18:09:01.606 2024-02-22 18:09:01.606 27000 TIP 435347 14449 6035090 2024-02-22 18:10:44.563 2024-02-22 18:10:44.563 1100 FEE 435309 16848 6035091 2024-02-22 18:10:44.563 2024-02-22 18:10:44.563 9900 TIP 435309 16948 6035123 2024-02-22 18:11:54.689 2024-02-22 18:11:54.689 1000 FEE 435352 2639 6035145 2024-02-22 18:12:44.562 2024-02-22 18:12:44.562 900 FEE 435285 9843 6035146 2024-02-22 18:12:44.562 2024-02-22 18:12:44.562 8100 TIP 435285 17237 6035147 2024-02-22 18:12:46.613 2024-02-22 18:12:46.613 2100 FEE 435154 19527 6035148 2024-02-22 18:12:46.613 2024-02-22 18:12:46.613 18900 TIP 435154 20267 6035158 2024-02-22 18:13:20.698 2024-02-22 18:13:20.698 3300 FEE 435242 17201 6035159 2024-02-22 18:13:20.698 2024-02-22 18:13:20.698 29700 TIP 435242 18731 6035171 2024-02-22 18:15:05.84 2024-02-22 18:15:05.84 1000 FEE 435237 16965 6035172 2024-02-22 18:15:05.84 2024-02-22 18:15:05.84 9000 TIP 435237 21509 6035182 2024-02-22 18:18:20.384 2024-02-22 18:18:20.384 9000 FEE 435274 6335 6035183 2024-02-22 18:18:20.384 2024-02-22 18:18:20.384 81000 TIP 435274 1198 6035185 2024-02-22 18:19:28.351 2024-02-22 18:19:28.351 1000 FEE 435261 8569 6035186 2024-02-22 18:19:28.351 2024-02-22 18:19:28.351 9000 TIP 435261 780 6035189 2024-02-22 18:20:03.161 2024-02-22 18:20:03.161 1000 FEE 434538 9275 6035190 2024-02-22 18:20:03.161 2024-02-22 18:20:03.161 9000 TIP 434538 18659 6035207 2024-02-22 18:21:20.55 2024-02-22 18:21:20.55 1000 FEE 435356 1468 6035236 2024-02-22 18:23:49.305 2024-02-22 18:23:49.305 2500 FEE 435115 9418 6035237 2024-02-22 18:23:49.305 2024-02-22 18:23:49.305 22500 TIP 435115 9365 6035245 2024-02-22 18:24:33.876 2024-02-22 18:24:33.876 1000 FEE 435326 17041 6035246 2024-02-22 18:24:33.876 2024-02-22 18:24:33.876 9000 TIP 435326 19633 6035249 2024-02-22 18:24:34.575 2024-02-22 18:24:34.575 1000 FEE 435326 12516 6035250 2024-02-22 18:24:34.575 2024-02-22 18:24:34.575 9000 TIP 435326 17116 6035255 2024-02-22 18:24:49.517 2024-02-22 18:24:49.517 1000 FEE 435328 9275 6035256 2024-02-22 18:24:49.517 2024-02-22 18:24:49.517 9000 TIP 435328 6741 6035269 2024-02-22 18:25:30.869 2024-02-22 18:25:30.869 30000 FEE 435357 10731 6035270 2024-02-22 18:25:30.869 2024-02-22 18:25:30.869 270000 TIP 435357 17166 6035308 2024-02-22 18:29:09.393 2024-02-22 18:29:09.393 1000 FEE 435365 7395 6035311 2024-02-22 18:29:15.204 2024-02-22 18:29:15.204 1000 FEE 435366 20509 6035354 2024-02-22 18:33:41.402 2024-02-22 18:33:41.402 8300 FEE 435328 18330 6035355 2024-02-22 18:33:41.402 2024-02-22 18:33:41.402 74700 TIP 435328 18235 6035370 2024-02-22 18:33:46.256 2024-02-22 18:33:46.256 8300 FEE 435357 1142 6035371 2024-02-22 18:33:46.256 2024-02-22 18:33:46.256 74700 TIP 435357 20084 6035379 2024-02-22 18:34:10.066 2024-02-22 18:34:10.066 8300 FEE 435359 919 6035380 2024-02-22 18:34:10.066 2024-02-22 18:34:10.066 74700 TIP 435359 670 6035393 2024-02-22 18:34:45.459 2024-02-22 18:34:45.459 1000 FEE 435359 20704 6035394 2024-02-22 18:34:45.459 2024-02-22 18:34:45.459 9000 TIP 435359 21589 6035399 2024-02-22 18:34:47.398 2024-02-22 18:34:47.398 1000 FEE 435359 8269 6028383 2024-02-22 03:10:03.066 2024-02-22 03:10:03.066 1000 STREAM 141924 16717 6028440 2024-02-22 03:17:03.07 2024-02-22 03:17:03.07 1000 STREAM 141924 10490 6028467 2024-02-22 03:21:03.052 2024-02-22 03:21:03.052 1000 STREAM 141924 21064 6028472 2024-02-22 03:25:03.079 2024-02-22 03:25:03.079 1000 STREAM 141924 7395 6028474 2024-02-22 03:27:03.096 2024-02-22 03:27:03.096 1000 STREAM 141924 16440 6028475 2024-02-22 03:28:03.108 2024-02-22 03:28:03.108 1000 STREAM 141924 3706 6028477 2024-02-22 03:30:03.158 2024-02-22 03:30:03.158 1000 STREAM 141924 20276 6028483 2024-02-22 03:32:03.152 2024-02-22 03:32:03.152 1000 STREAM 141924 7983 6028484 2024-02-22 03:33:03.164 2024-02-22 03:33:03.164 1000 STREAM 141924 21416 6028487 2024-02-22 03:35:03.175 2024-02-22 03:35:03.175 1000 STREAM 141924 19332 6028610 2024-02-22 03:42:03.256 2024-02-22 03:42:03.256 1000 STREAM 141924 18468 6028651 2024-02-22 03:48:03.263 2024-02-22 03:48:03.263 1000 STREAM 141924 21624 6028662 2024-02-22 03:50:03.32 2024-02-22 03:50:03.32 1000 STREAM 141924 618 6028674 2024-02-22 03:53:03.258 2024-02-22 03:53:03.258 1000 STREAM 141924 5825 6028704 2024-02-22 03:57:03.298 2024-02-22 03:57:03.298 1000 STREAM 141924 2776 6028708 2024-02-22 03:58:03.305 2024-02-22 03:58:03.305 1000 STREAM 141924 18393 6028710 2024-02-22 03:59:03.307 2024-02-22 03:59:03.307 1000 STREAM 141924 15115 6028713 2024-02-22 04:00:03.369 2024-02-22 04:00:03.369 1000 STREAM 141924 11820 6028774 2024-02-22 04:12:03.371 2024-02-22 04:12:03.371 1000 STREAM 141924 11523 6028800 2024-02-22 04:18:03.392 2024-02-22 04:18:03.392 1000 STREAM 141924 2162 6028802 2024-02-22 04:19:03.398 2024-02-22 04:19:03.398 1000 STREAM 141924 16177 6028808 2024-02-22 04:21:03.397 2024-02-22 04:21:03.397 1000 STREAM 141924 11776 6028812 2024-02-22 04:22:03.455 2024-02-22 04:22:03.455 1000 STREAM 141924 21320 6028823 2024-02-22 04:27:03.434 2024-02-22 04:27:03.434 1000 STREAM 141924 3396 6028839 2024-02-22 04:32:03.455 2024-02-22 04:32:03.455 1000 STREAM 141924 6741 6028901 2024-02-22 04:36:03.476 2024-02-22 04:36:03.476 1000 STREAM 141924 6421 6028903 2024-02-22 04:37:03.472 2024-02-22 04:37:03.472 1000 STREAM 141924 7983 6028914 2024-02-22 04:39:03.482 2024-02-22 04:39:03.482 1000 STREAM 141924 18271 6028927 2024-02-22 04:43:03.508 2024-02-22 04:43:03.508 1000 STREAM 141924 17570 6028959 2024-02-22 04:47:03.541 2024-02-22 04:47:03.541 1000 STREAM 141924 11430 6035110 2024-02-22 18:11:40.979 2024-02-22 18:11:40.979 90000 TIP 433878 9347 6035127 2024-02-22 18:12:13.807 2024-02-22 18:12:13.807 2100 FEE 435261 16154 6035128 2024-02-22 18:12:13.807 2024-02-22 18:12:13.807 18900 TIP 435261 711 6035131 2024-02-22 18:12:25.495 2024-02-22 18:12:25.495 2100 FEE 435327 5129 6035132 2024-02-22 18:12:25.495 2024-02-22 18:12:25.495 18900 TIP 435327 21624 6035178 2024-02-22 18:18:16.7 2024-02-22 18:18:16.7 100 FEE 435274 11328 6035179 2024-02-22 18:18:16.7 2024-02-22 18:18:16.7 900 TIP 435274 1769 6035194 2024-02-22 18:20:21.909 2024-02-22 18:20:21.909 2300 FEE 435346 746 6035195 2024-02-22 18:20:21.909 2024-02-22 18:20:21.909 20700 TIP 435346 3506 6035214 2024-02-22 18:21:47.914 2024-02-22 18:21:47.914 2300 FEE 435352 7869 6035215 2024-02-22 18:21:47.914 2024-02-22 18:21:47.914 20700 TIP 435352 10638 6035227 2024-02-22 18:23:00.096 2024-02-22 18:23:00.096 2100 FEE 435328 19890 6035228 2024-02-22 18:23:00.096 2024-02-22 18:23:00.096 18900 TIP 435328 4633 6035230 2024-02-22 18:23:05.271 2024-02-22 18:23:05.271 9000 FEE 435328 780 6035231 2024-02-22 18:23:05.271 2024-02-22 18:23:05.271 81000 TIP 435328 680 6035234 2024-02-22 18:23:43.972 2024-02-22 18:23:43.972 21000 FEE 435359 12744 6035251 2024-02-22 18:24:34.902 2024-02-22 18:24:34.902 1000 FEE 435326 18751 6035252 2024-02-22 18:24:34.902 2024-02-22 18:24:34.902 9000 TIP 435326 5129 6035266 2024-02-22 18:25:28.136 2024-02-22 18:25:28.136 1000 FEE 435361 20433 6035289 2024-02-22 18:28:45.174 2024-02-22 18:28:45.174 1000 FEE 435359 20187 6035290 2024-02-22 18:28:45.174 2024-02-22 18:28:45.174 9000 TIP 435359 20616 6035293 2024-02-22 18:28:46.438 2024-02-22 18:28:46.438 1000 FEE 435359 20973 6035294 2024-02-22 18:28:46.438 2024-02-22 18:28:46.438 9000 TIP 435359 16948 6035299 2024-02-22 18:28:48.254 2024-02-22 18:28:48.254 1000 FEE 435359 14906 6035300 2024-02-22 18:28:48.254 2024-02-22 18:28:48.254 9000 TIP 435359 3506 6035301 2024-02-22 18:28:48.925 2024-02-22 18:28:48.925 1000 FEE 435359 679 6035302 2024-02-22 18:28:48.925 2024-02-22 18:28:48.925 9000 TIP 435359 20243 6035326 2024-02-22 18:30:53.692 2024-02-22 18:30:53.692 4000 FEE 435359 2543 6035327 2024-02-22 18:30:53.692 2024-02-22 18:30:53.692 36000 TIP 435359 14037 6035332 2024-02-22 18:32:05.77 2024-02-22 18:32:05.77 27000 FEE 435365 7425 6035333 2024-02-22 18:32:05.77 2024-02-22 18:32:05.77 243000 TIP 435365 1970 6035336 2024-02-22 18:32:39.77 2024-02-22 18:32:39.77 1000 FEE 435354 7847 6035337 2024-02-22 18:32:39.77 2024-02-22 18:32:39.77 9000 TIP 435354 1394 6035352 2024-02-22 18:33:41.268 2024-02-22 18:33:41.268 8300 FEE 435328 1585 6035353 2024-02-22 18:33:41.268 2024-02-22 18:33:41.268 74700 TIP 435328 985 6035358 2024-02-22 18:33:42.948 2024-02-22 18:33:42.948 1000 FEE 435359 2075 6035359 2024-02-22 18:33:42.948 2024-02-22 18:33:42.948 9000 TIP 435359 5752 6035381 2024-02-22 18:34:10.8 2024-02-22 18:34:10.8 8300 FEE 435359 19375 6035382 2024-02-22 18:34:10.8 2024-02-22 18:34:10.8 74700 TIP 435359 16769 6035391 2024-02-22 18:34:44.659 2024-02-22 18:34:44.659 1000 FEE 435359 21520 6035392 2024-02-22 18:34:44.659 2024-02-22 18:34:44.659 9000 TIP 435359 19151 6035414 2024-02-22 18:36:38.186 2024-02-22 18:36:38.186 1000 FEE 435368 980 6035415 2024-02-22 18:36:38.186 2024-02-22 18:36:38.186 9000 TIP 435368 19449 6035459 2024-02-22 18:40:39.553 2024-02-22 18:40:39.553 1100 FEE 434807 16301 6035460 2024-02-22 18:40:39.553 2024-02-22 18:40:39.553 9900 TIP 434807 17411 6035461 2024-02-22 18:40:39.683 2024-02-22 18:40:39.683 1100 FEE 434807 965 6035462 2024-02-22 18:40:39.683 2024-02-22 18:40:39.683 9900 TIP 434807 17494 6035473 2024-02-22 18:40:41.547 2024-02-22 18:40:41.547 1100 FEE 435026 19841 6035474 2024-02-22 18:40:41.547 2024-02-22 18:40:41.547 9900 TIP 435026 672 6035505 2024-02-22 18:41:24.941 2024-02-22 18:41:24.941 1000 FEE 435343 11819 6035506 2024-02-22 18:41:24.941 2024-02-22 18:41:24.941 9000 TIP 435343 5495 6035515 2024-02-22 18:41:29.574 2024-02-22 18:41:29.574 1000 FEE 435327 14015 6035516 2024-02-22 18:41:29.574 2024-02-22 18:41:29.574 9000 TIP 435327 18344 6035533 2024-02-22 18:43:36.755 2024-02-22 18:43:36.755 6400 FEE 435115 8664 6035534 2024-02-22 18:43:36.755 2024-02-22 18:43:36.755 57600 TIP 435115 623 6035536 2024-02-22 18:44:14.683 2024-02-22 18:44:14.683 2100 FEE 435359 19557 6035537 2024-02-22 18:44:14.683 2024-02-22 18:44:14.683 18900 TIP 435359 21019 6035556 2024-02-22 18:46:51.895 2024-02-22 18:46:51.895 2100 FEE 435328 16145 6035557 2024-02-22 18:46:51.895 2024-02-22 18:46:51.895 18900 TIP 435328 8796 6035601 2024-02-22 18:49:30.935 2024-02-22 18:49:30.935 1000 FEE 435385 19332 6035607 2024-02-22 18:49:55.732 2024-02-22 18:49:55.732 0 FEE 435378 1244 6035663 2024-02-22 18:53:45.248 2024-02-22 18:53:45.248 100 FEE 435379 17741 6035664 2024-02-22 18:53:45.248 2024-02-22 18:53:45.248 900 TIP 435379 16149 6035676 2024-02-22 18:55:10.185 2024-02-22 18:55:10.185 1100 FEE 435242 636 6035677 2024-02-22 18:55:10.185 2024-02-22 18:55:10.185 9900 TIP 435242 14404 6035680 2024-02-22 18:55:15.133 2024-02-22 18:55:15.133 100 FEE 435340 16406 6035681 2024-02-22 18:55:15.133 2024-02-22 18:55:15.133 900 TIP 435340 954 6035684 2024-02-22 18:55:29.388 2024-02-22 18:55:29.388 1000 FEE 435395 5377 6035714 2024-02-22 18:59:07.624 2024-02-22 18:59:07.624 4600 FEE 435399 15243 6028388 2024-02-22 03:14:03.036 2024-02-22 03:14:03.036 1000 STREAM 141924 19465 6035284 2024-02-22 18:28:03.988 2024-02-22 18:28:03.988 1000 STREAM 141924 10608 6038000 2024-02-22 23:18:19.723 2024-02-22 23:18:19.723 7200 TIP 435457 7847 6038005 2024-02-22 23:19:56.554 2024-02-22 23:19:56.554 2100 FEE 435631 19570 6038006 2024-02-22 23:19:56.554 2024-02-22 23:19:56.554 18900 TIP 435631 11956 6038029 2024-02-22 23:21:00.923 2024-02-22 23:21:00.923 8300 FEE 435488 20555 6038030 2024-02-22 23:21:00.923 2024-02-22 23:21:00.923 74700 TIP 435488 20023 6038039 2024-02-22 23:21:01.616 2024-02-22 23:21:01.616 8300 FEE 435488 19148 6038040 2024-02-22 23:21:01.616 2024-02-22 23:21:01.616 74700 TIP 435488 780 6038045 2024-02-22 23:21:01.96 2024-02-22 23:21:01.96 8300 FEE 435488 19121 6038046 2024-02-22 23:21:01.96 2024-02-22 23:21:01.96 74700 TIP 435488 18904 6038051 2024-02-22 23:21:02.334 2024-02-22 23:21:02.334 8300 FEE 435488 1785 6038052 2024-02-22 23:21:02.334 2024-02-22 23:21:02.334 74700 TIP 435488 18714 6038059 2024-02-22 23:21:02.771 2024-02-22 23:21:02.771 8300 FEE 435488 5499 6038060 2024-02-22 23:21:02.771 2024-02-22 23:21:02.771 74700 TIP 435488 18829 6038094 2024-02-22 23:21:20.66 2024-02-22 23:21:20.66 8300 FEE 435488 9355 6038095 2024-02-22 23:21:20.66 2024-02-22 23:21:20.66 74700 TIP 435488 21463 6038102 2024-02-22 23:21:21.085 2024-02-22 23:21:21.085 8300 FEE 435488 19836 6038103 2024-02-22 23:21:21.085 2024-02-22 23:21:21.085 74700 TIP 435488 20036 6038142 2024-02-22 23:28:11.661 2024-02-22 23:28:11.661 2600 FEE 435357 21242 6038143 2024-02-22 23:28:11.661 2024-02-22 23:28:11.661 23400 TIP 435357 20156 6038156 2024-02-22 23:30:05.742 2024-02-22 23:30:05.742 8300 FEE 435657 685 6038157 2024-02-22 23:30:05.742 2024-02-22 23:30:05.742 74700 TIP 435657 7675 6038162 2024-02-22 23:30:06.157 2024-02-22 23:30:06.157 8300 FEE 435657 20409 6038163 2024-02-22 23:30:06.157 2024-02-22 23:30:06.157 74700 TIP 435657 21562 6038203 2024-02-22 23:33:56.003 2024-02-22 23:33:56.003 1000 FEE 435664 6382 6038219 2024-02-22 23:42:04.339 2024-02-22 23:42:04.339 100 FEE 435328 19777 6038220 2024-02-22 23:42:04.339 2024-02-22 23:42:04.339 900 TIP 435328 18449 6038221 2024-02-22 23:42:10.251 2024-02-22 23:42:10.251 21000 FEE 435667 21194 6038241 2024-02-22 23:45:33.428 2024-02-22 23:45:33.428 2100 FEE 435488 21514 6038242 2024-02-22 23:45:33.428 2024-02-22 23:45:33.428 18900 TIP 435488 1741 6038292 2024-02-22 23:52:43.605 2024-02-22 23:52:43.605 1000 FEE 435585 16970 6038293 2024-02-22 23:52:43.605 2024-02-22 23:52:43.605 9000 TIP 435585 17227 6038297 2024-02-22 23:53:41.596 2024-02-22 23:53:41.596 2600 FEE 435663 5746 6038298 2024-02-22 23:53:41.596 2024-02-22 23:53:41.596 23400 TIP 435663 1039 6038302 2024-02-22 23:54:46.361 2024-02-22 23:54:46.361 100000 FEE 435673 19044 6038310 2024-02-22 23:57:46.434 2024-02-22 23:57:46.434 1100 FEE 435488 1298 6038311 2024-02-22 23:57:46.434 2024-02-22 23:57:46.434 9900 TIP 435488 1320 6038325 2024-02-23 00:00:01.912 2024-02-23 00:00:01.912 300 FEE 435457 19296 6038326 2024-02-23 00:00:01.912 2024-02-23 00:00:01.912 2700 TIP 435457 21208 6038348 2024-02-23 00:00:04.718 2024-02-23 00:00:04.718 300 FEE 435457 21605 6038349 2024-02-23 00:00:04.718 2024-02-23 00:00:04.718 2700 TIP 435457 6430 6038352 2024-02-23 00:00:05.147 2024-02-23 00:00:05.147 300 FEE 435457 18230 6038353 2024-02-23 00:00:05.147 2024-02-23 00:00:05.147 2700 TIP 435457 21437 6038366 2024-02-23 00:00:06.869 2024-02-23 00:00:06.869 300 FEE 435457 8059 6038367 2024-02-23 00:00:06.869 2024-02-23 00:00:06.869 2700 TIP 435457 19435 6038368 2024-02-23 00:00:07.155 2024-02-23 00:00:07.155 300 FEE 435457 739 6038369 2024-02-23 00:00:07.155 2024-02-23 00:00:07.155 2700 TIP 435457 19826 6038390 2024-02-23 00:02:46.603 2024-02-23 00:02:46.603 1000 FEE 435683 2367 6038443 2024-02-23 00:12:17.849 2024-02-23 00:12:17.849 100 FEE 435580 630 6038444 2024-02-23 00:12:17.849 2024-02-23 00:12:17.849 900 TIP 435580 19469 6038458 2024-02-23 00:12:35.237 2024-02-23 00:12:35.237 100 FEE 435629 20990 6038459 2024-02-23 00:12:35.237 2024-02-23 00:12:35.237 900 TIP 435629 15624 6038477 2024-02-23 00:13:47.123 2024-02-23 00:13:47.123 900 FEE 435690 21239 6038478 2024-02-23 00:13:47.123 2024-02-23 00:13:47.123 8100 TIP 435690 2734 6038498 2024-02-23 00:13:57.687 2024-02-23 00:13:57.687 1000 FEE 435692 7760 6038527 2024-02-23 00:14:19.455 2024-02-23 00:14:19.455 100 FEE 435679 9242 6038528 2024-02-23 00:14:19.455 2024-02-23 00:14:19.455 900 TIP 435679 1438 6038577 2024-02-23 00:24:48.333 2024-02-23 00:24:48.333 1000 FEE 435699 18615 6038587 2024-02-23 00:25:17.795 2024-02-23 00:25:17.795 1000 FEE 435700 11378 6038611 2024-02-23 00:26:47.182 2024-02-23 00:26:47.182 2300 FEE 435657 14045 6038612 2024-02-23 00:26:47.182 2024-02-23 00:26:47.182 20700 TIP 435657 18896 6038634 2024-02-23 00:27:39.446 2024-02-23 00:27:39.446 2300 FEE 435657 18174 6038635 2024-02-23 00:27:39.446 2024-02-23 00:27:39.446 20700 TIP 435657 21201 6038666 2024-02-23 00:31:11.178 2024-02-23 00:31:11.178 1000 FEE 435706 20434 6038667 2024-02-23 00:31:11.178 2024-02-23 00:31:11.178 9000 TIP 435706 18525 6038673 2024-02-23 00:32:34.036 2024-02-23 00:32:34.036 1000 FEE 435708 15103 6038684 2024-02-23 00:35:25.934 2024-02-23 00:35:25.934 3000 FEE 435694 20998 6038685 2024-02-23 00:35:25.934 2024-02-23 00:35:25.934 27000 TIP 435694 940 6038696 2024-02-23 00:37:41.107 2024-02-23 00:37:41.107 1100 FEE 435488 19471 6038697 2024-02-23 00:37:41.107 2024-02-23 00:37:41.107 9900 TIP 435488 2327 6038715 2024-02-23 00:37:50.561 2024-02-23 00:37:50.561 10000 FEE 435680 626 6038716 2024-02-23 00:37:50.561 2024-02-23 00:37:50.561 90000 TIP 435680 17741 6038727 2024-02-23 00:44:56.853 2024-02-23 00:44:56.853 3000 FEE 435390 11275 6038728 2024-02-23 00:44:56.853 2024-02-23 00:44:56.853 27000 TIP 435390 19546 6038729 2024-02-23 00:44:58.162 2024-02-23 00:44:58.162 1000 FEE 435715 703 6038746 2024-02-23 00:47:49.604 2024-02-23 00:47:49.604 300 FEE 435715 15719 6038747 2024-02-23 00:47:49.604 2024-02-23 00:47:49.604 2700 TIP 435715 19581 6038749 2024-02-23 00:48:05.436 2024-02-23 00:48:05.436 1000 FEE 435718 21422 6038773 2024-02-23 00:52:55.752 2024-02-23 00:52:55.752 1000 FEE 435724 1245 6038794 2024-02-23 00:57:27.123 2024-02-23 00:57:27.123 900 FEE 435610 12819 6038795 2024-02-23 00:57:27.123 2024-02-23 00:57:27.123 8100 TIP 435610 3745 6038840 2024-02-23 01:10:59.91 2024-02-23 01:10:59.91 1000 FEE 435663 2224 6038841 2024-02-23 01:10:59.91 2024-02-23 01:10:59.91 9000 TIP 435663 4574 6038869 2024-02-23 01:13:36.11 2024-02-23 01:13:36.11 1000 FEE 435624 1705 6038870 2024-02-23 01:13:36.11 2024-02-23 01:13:36.11 9000 TIP 435624 15662 6038873 2024-02-23 01:13:54.154 2024-02-23 01:13:54.154 1000 FEE 435516 9350 6038874 2024-02-23 01:13:54.154 2024-02-23 01:13:54.154 9000 TIP 435516 16948 6038875 2024-02-23 01:13:54.373 2024-02-23 01:13:54.373 1000 FEE 435516 20603 6038876 2024-02-23 01:13:54.373 2024-02-23 01:13:54.373 9000 TIP 435516 2188 6038932 2024-02-23 01:25:34.7 2024-02-23 01:25:34.7 2300 FEE 435596 7989 6038933 2024-02-23 01:25:34.7 2024-02-23 01:25:34.7 20700 TIP 435596 18280 6038970 2024-02-23 01:32:03.582 2024-02-23 01:32:03.582 1000 STREAM 141924 16124 6038974 2024-02-23 01:34:03.644 2024-02-23 01:34:03.644 1000 STREAM 141924 20912 6038975 2024-02-23 01:35:03.661 2024-02-23 01:35:03.661 1000 STREAM 141924 17727 6038976 2024-02-23 01:36:04.201 2024-02-23 01:36:04.201 1000 STREAM 141924 17411 6038978 2024-02-23 01:37:19.356 2024-02-23 01:37:19.356 2700 FEE 435552 6687 6038979 2024-02-23 01:37:19.356 2024-02-23 01:37:19.356 24300 TIP 435552 5961 6039052 2024-02-23 01:53:11.178 2024-02-23 01:53:11.178 2700 FEE 435198 16998 6039053 2024-02-23 01:53:11.178 2024-02-23 01:53:11.178 24300 TIP 435198 12139 6039054 2024-02-23 01:53:11.355 2024-02-23 01:53:11.355 2700 FEE 435198 2151 6028489 2024-02-22 03:37:02.707 2024-02-22 03:37:02.707 1000 STREAM 141924 7916 6028590 2024-02-22 03:39:02.731 2024-02-22 03:39:02.731 1000 STREAM 141924 17693 6028609 2024-02-22 03:41:03.189 2024-02-22 03:41:03.189 1000 STREAM 141924 3353 6035285 2024-02-22 18:28:34.687 2024-02-22 18:28:34.687 10000 FEE 435328 17927 6035286 2024-02-22 18:28:34.687 2024-02-22 18:28:34.687 90000 TIP 435328 21208 6035295 2024-02-22 18:28:47.115 2024-02-22 18:28:47.115 1000 FEE 435359 21287 6035296 2024-02-22 18:28:47.115 2024-02-22 18:28:47.115 9000 TIP 435359 5597 6035303 2024-02-22 18:28:49.611 2024-02-22 18:28:49.611 1000 FEE 435359 21339 6035304 2024-02-22 18:28:49.611 2024-02-22 18:28:49.611 9000 TIP 435359 19813 6035318 2024-02-22 18:29:34.637 2024-02-22 18:29:34.637 1000 FEE 435366 21037 6035319 2024-02-22 18:29:34.637 2024-02-22 18:29:34.637 9000 TIP 435366 11999 6035324 2024-02-22 18:30:41.389 2024-02-22 18:30:41.389 2100 FEE 435359 10063 6035325 2024-02-22 18:30:41.389 2024-02-22 18:30:41.389 18900 TIP 435359 3353 6035339 2024-02-22 18:33:06.614 2024-02-22 18:33:06.614 200 FEE 435359 4322 6035340 2024-02-22 18:33:06.614 2024-02-22 18:33:06.614 1800 TIP 435359 18836 6035342 2024-02-22 18:33:31.635 2024-02-22 18:33:31.635 8300 FEE 435217 19966 6035343 2024-02-22 18:33:31.635 2024-02-22 18:33:31.635 74700 TIP 435217 13246 6035346 2024-02-22 18:33:40.237 2024-02-22 18:33:40.237 8300 FEE 435328 9916 6035347 2024-02-22 18:33:40.237 2024-02-22 18:33:40.237 74700 TIP 435328 9433 6035360 2024-02-22 18:33:43.844 2024-02-22 18:33:43.844 1000 FEE 435359 20646 6035361 2024-02-22 18:33:43.844 2024-02-22 18:33:43.844 9000 TIP 435359 14950 6035377 2024-02-22 18:34:09.948 2024-02-22 18:34:09.948 8300 FEE 435359 998 6035378 2024-02-22 18:34:09.948 2024-02-22 18:34:09.948 74700 TIP 435359 1008 6035397 2024-02-22 18:34:46.376 2024-02-22 18:34:46.376 1000 FEE 435359 11165 6035398 2024-02-22 18:34:46.376 2024-02-22 18:34:46.376 9000 TIP 435359 10638 6035407 2024-02-22 18:35:49.24 2024-02-22 18:35:49.24 3000 FEE 435371 2829 6035408 2024-02-22 18:35:49.24 2024-02-22 18:35:49.24 27000 TIP 435371 11648 6035416 2024-02-22 18:36:38.889 2024-02-22 18:36:38.889 1000 FEE 435368 1044 6035417 2024-02-22 18:36:38.889 2024-02-22 18:36:38.889 9000 TIP 435368 4391 6035418 2024-02-22 18:36:39.27 2024-02-22 18:36:39.27 1000 FEE 435368 1142 6028583 2024-02-22 03:37:42.978 2024-02-22 03:37:42.978 100 FEE 434509 1631 6028584 2024-02-22 03:37:42.978 2024-02-22 03:37:42.978 900 TIP 434509 21455 6028603 2024-02-22 03:39:37.029 2024-02-22 03:39:37.029 1000 FEE 434512 7978 6028615 2024-02-22 03:42:42.229 2024-02-22 03:42:42.229 1000 FEE 434479 8870 6028616 2024-02-22 03:42:42.229 2024-02-22 03:42:42.229 9000 TIP 434479 20581 6028617 2024-02-22 03:42:42.435 2024-02-22 03:42:42.435 1000 FEE 434479 19638 6028618 2024-02-22 03:42:42.435 2024-02-22 03:42:42.435 9000 TIP 434479 17148 6028628 2024-02-22 03:43:13.878 2024-02-22 03:43:13.878 1000 FEE 434513 13204 6028641 2024-02-22 03:45:20.97 2024-02-22 03:45:20.97 2100 FEE 434500 994 6028642 2024-02-22 03:45:20.97 2024-02-22 03:45:20.97 18900 TIP 434500 5708 6028687 2024-02-22 03:55:17.161 2024-02-22 03:55:17.161 1000 FEE 434519 5387 6028694 2024-02-22 03:56:34.604 2024-02-22 03:56:34.604 1000 FEE 434349 21072 6028695 2024-02-22 03:56:34.604 2024-02-22 03:56:34.604 9000 TIP 434349 20243 6028711 2024-02-22 03:59:32.327 2024-02-22 03:59:32.327 1000 FEE 434396 16789 6028712 2024-02-22 03:59:32.327 2024-02-22 03:59:32.327 9000 TIP 434396 21201 6028715 2024-02-22 04:01:25.11 2024-02-22 04:01:25.11 1000 FEE 434525 20704 6028757 2024-02-22 04:06:21.349 2024-02-22 04:06:21.349 2100 FEE 434506 913 6028758 2024-02-22 04:06:21.349 2024-02-22 04:06:21.349 18900 TIP 434506 13246 6028761 2024-02-22 04:06:52.424 2024-02-22 04:06:52.424 1000 FEE 434528 965 6028790 2024-02-22 04:14:24.363 2024-02-22 04:14:24.363 8300 FEE 434488 5308 6028791 2024-02-22 04:14:24.363 2024-02-22 04:14:24.363 74700 TIP 434488 16929 6028813 2024-02-22 04:22:08.418 2024-02-22 04:22:08.418 1000 FEE 434231 9920 6028814 2024-02-22 04:22:08.418 2024-02-22 04:22:08.418 9000 TIP 434231 20657 6028855 2024-02-22 04:32:44.638 2024-02-22 04:32:44.638 100 FEE 434485 11515 6028856 2024-02-22 04:32:44.638 2024-02-22 04:32:44.638 900 TIP 434485 5085 6028868 2024-02-22 04:33:15.965 2024-02-22 04:33:15.965 900 FEE 434527 5646 6028869 2024-02-22 04:33:15.965 2024-02-22 04:33:15.965 8100 TIP 434527 11609 6028897 2024-02-22 04:35:33.54 2024-02-22 04:35:33.54 100 FEE 434424 21422 6028898 2024-02-22 04:35:33.54 2024-02-22 04:35:33.54 900 TIP 434424 1180 6028904 2024-02-22 04:37:14.19 2024-02-22 04:37:14.19 2100 FEE 434539 21214 6028905 2024-02-22 04:37:14.19 2024-02-22 04:37:14.19 18900 TIP 434539 16230 6028985 2024-02-22 04:58:30.359 2024-02-22 04:58:30.359 1000 FEE 434552 18736 6029007 2024-02-22 05:08:34.024 2024-02-22 05:08:34.024 1000 FEE 434560 8416 6029027 2024-02-22 05:11:26.925 2024-02-22 05:11:26.925 25600 FEE 434440 19282 6029028 2024-02-22 05:11:26.925 2024-02-22 05:11:26.925 230400 TIP 434440 5500 6029034 2024-02-22 05:12:40.521 2024-02-22 05:12:40.521 1000 FEE 434565 986 6029035 2024-02-22 05:12:42.529 2024-02-22 05:12:42.529 10000 FEE 433860 21573 6029036 2024-02-22 05:12:42.529 2024-02-22 05:12:42.529 90000 TIP 433860 18892 6029059 2024-02-22 05:15:27.063 2024-02-22 05:15:27.063 2100 FEE 434509 20826 6029060 2024-02-22 05:15:27.063 2024-02-22 05:15:27.063 18900 TIP 434509 21413 6029068 2024-02-22 05:17:19.119 2024-02-22 05:17:19.119 1000 FEE 434568 5809 6029081 2024-02-22 05:22:27.386 2024-02-22 05:22:27.386 2100 FEE 434479 11819 6029082 2024-02-22 05:22:27.386 2024-02-22 05:22:27.386 18900 TIP 434479 19033 6029083 2024-02-22 05:22:30.464 2024-02-22 05:22:30.464 2100 FEE 434513 16848 6028637 2024-02-22 03:44:03.246 2024-02-22 03:44:03.246 1000 STREAM 141924 18314 6028640 2024-02-22 03:45:03.269 2024-02-22 03:45:03.269 1000 STREAM 141924 15703 6028644 2024-02-22 03:47:03.274 2024-02-22 03:47:03.274 1000 STREAM 141924 16351 6028669 2024-02-22 03:51:03.32 2024-02-22 03:51:03.32 1000 STREAM 141924 1577 6028681 2024-02-22 03:54:03.295 2024-02-22 03:54:03.295 1000 STREAM 141924 21430 6028692 2024-02-22 03:56:03.294 2024-02-22 03:56:03.294 1000 STREAM 141924 20452 6028720 2024-02-22 04:02:03.324 2024-02-22 04:02:03.324 1000 STREAM 141924 3706 6028728 2024-02-22 04:04:03.331 2024-02-22 04:04:03.331 1000 STREAM 141924 17415 6028752 2024-02-22 04:06:03.335 2024-02-22 04:06:03.335 1000 STREAM 141924 18525 6028764 2024-02-22 04:08:03.347 2024-02-22 04:08:03.347 1000 STREAM 141924 7899 6028768 2024-02-22 04:10:03.352 2024-02-22 04:10:03.352 1000 STREAM 141924 19537 6028773 2024-02-22 04:11:03.364 2024-02-22 04:11:03.364 1000 STREAM 141924 14990 6028780 2024-02-22 04:14:03.366 2024-02-22 04:14:03.366 1000 STREAM 141924 21521 6028795 2024-02-22 04:16:03.382 2024-02-22 04:16:03.382 1000 STREAM 141924 10818 6028803 2024-02-22 04:20:03.41 2024-02-22 04:20:03.41 1000 STREAM 141924 9705 6028815 2024-02-22 04:23:03.417 2024-02-22 04:23:03.417 1000 STREAM 141924 20757 6028816 2024-02-22 04:24:03.422 2024-02-22 04:24:03.422 1000 STREAM 141924 18448 6028818 2024-02-22 04:25:03.42 2024-02-22 04:25:03.42 1000 STREAM 141924 10818 6028714 2024-02-22 04:01:04.184 2024-02-22 04:01:04.184 1000 STREAM 141924 13927 6028734 2024-02-22 04:05:04.2 2024-02-22 04:05:04.2 1000 STREAM 141924 20481 6028766 2024-02-22 04:09:04.226 2024-02-22 04:09:04.226 1000 STREAM 141924 19566 6028796 2024-02-22 04:17:04.275 2024-02-22 04:17:04.275 1000 STREAM 141924 20245 6035400 2024-02-22 18:34:47.398 2024-02-22 18:34:47.398 9000 TIP 435359 21441 6035401 2024-02-22 18:34:49.014 2024-02-22 18:34:49.014 1000 FEE 435359 20179 6035402 2024-02-22 18:34:49.014 2024-02-22 18:34:49.014 9000 TIP 435359 11498 6035429 2024-02-22 18:38:29.089 2024-02-22 18:38:29.089 2100 FEE 435121 20436 6035430 2024-02-22 18:38:29.089 2024-02-22 18:38:29.089 18900 TIP 435121 6578 6035478 2024-02-22 18:40:50.27 2024-02-22 18:40:50.27 1000 FEE 435375 20080 6035479 2024-02-22 18:40:50.27 2024-02-22 18:40:50.27 9000 TIP 435375 9337 6035480 2024-02-22 18:40:50.533 2024-02-22 18:40:50.533 1000 FEE 435375 2195 6035481 2024-02-22 18:40:50.533 2024-02-22 18:40:50.533 9000 TIP 435375 2640 6035482 2024-02-22 18:40:50.726 2024-02-22 18:40:50.726 1000 FEE 435375 20495 6035483 2024-02-22 18:40:50.726 2024-02-22 18:40:50.726 9000 TIP 435375 12278 6035507 2024-02-22 18:41:25.001 2024-02-22 18:41:25.001 10000 FEE 435328 12057 6035508 2024-02-22 18:41:25.001 2024-02-22 18:41:25.001 90000 TIP 435328 21361 6035541 2024-02-22 18:44:45.106 2024-02-22 18:44:45.106 20000 FEE 435379 4958 6035550 2024-02-22 18:46:20.965 2024-02-22 18:46:20.965 200 FEE 435378 1468 6035551 2024-02-22 18:46:20.965 2024-02-22 18:46:20.965 1800 TIP 435378 4128 6035571 2024-02-22 18:47:28.251 2024-02-22 18:47:28.251 1000 FEE 435382 21138 6035589 2024-02-22 18:48:25.731 2024-02-22 18:48:25.731 1000 FEE 434124 21323 6035590 2024-02-22 18:48:25.731 2024-02-22 18:48:25.731 9000 TIP 434124 9339 6035591 2024-02-22 18:48:25.873 2024-02-22 18:48:25.873 1000 FEE 434124 21427 6035592 2024-02-22 18:48:25.873 2024-02-22 18:48:25.873 9000 TIP 434124 21365 6035602 2024-02-22 18:49:33.576 2024-02-22 18:49:33.576 2100 FEE 435370 19910 6035603 2024-02-22 18:49:33.576 2024-02-22 18:49:33.576 18900 TIP 435370 4388 6035613 2024-02-22 18:50:57.116 2024-02-22 18:50:57.116 2300 FEE 435377 9341 6035614 2024-02-22 18:50:57.116 2024-02-22 18:50:57.116 20700 TIP 435377 2196 6035634 2024-02-22 18:51:03.928 2024-02-22 18:51:03.928 2300 FEE 435377 630 6035635 2024-02-22 18:51:03.928 2024-02-22 18:51:03.928 20700 TIP 435377 7773 6035647 2024-02-22 18:51:47.755 2024-02-22 18:51:47.755 2300 FEE 435377 16432 6035648 2024-02-22 18:51:47.755 2024-02-22 18:51:47.755 20700 TIP 435377 16355 6035668 2024-02-22 18:54:30.065 2024-02-22 18:54:30.065 210000 FEE 435392 9494 6028727 2024-02-22 04:03:04.188 2024-02-22 04:03:04.188 1000 STREAM 141924 12606 6028762 2024-02-22 04:07:04.211 2024-02-22 04:07:04.211 1000 STREAM 141924 629 6028775 2024-02-22 04:13:04.269 2024-02-22 04:13:04.269 1000 STREAM 141924 681 6028794 2024-02-22 04:15:04.255 2024-02-22 04:15:04.255 1000 STREAM 141924 15115 6035409 2024-02-22 18:36:03.414 2024-02-22 18:36:03.414 1000 STREAM 141924 2042 6035425 2024-02-22 18:38:03.427 2024-02-22 18:38:03.427 1000 STREAM 141924 16562 6035443 2024-02-22 18:40:03.43 2024-02-22 18:40:03.43 1000 STREAM 141924 6030 6035488 2024-02-22 18:41:03.441 2024-02-22 18:41:03.441 1000 STREAM 141924 902 6035535 2024-02-22 18:44:03.447 2024-02-22 18:44:03.447 1000 STREAM 141924 18842 6035558 2024-02-22 18:47:03.507 2024-02-22 18:47:03.507 1000 STREAM 141924 16965 6035629 2024-02-22 18:51:03.518 2024-02-22 18:51:03.518 1000 STREAM 141924 21136 6035660 2024-02-22 18:53:03.569 2024-02-22 18:53:03.569 1000 STREAM 141924 20479 6035665 2024-02-22 18:54:03.704 2024-02-22 18:54:03.704 1000 STREAM 141924 2431 6035697 2024-02-22 18:57:03.61 2024-02-22 18:57:03.61 1000 STREAM 141924 19036 6035782 2024-02-22 19:01:03.642 2024-02-22 19:01:03.642 1000 STREAM 141924 21387 6035793 2024-02-22 19:03:03.665 2024-02-22 19:03:03.665 1000 STREAM 141924 6798 6035797 2024-02-22 19:04:03.677 2024-02-22 19:04:03.677 1000 STREAM 141924 18984 6035810 2024-02-22 19:07:03.694 2024-02-22 19:07:03.694 1000 STREAM 141924 15367 6035827 2024-02-22 19:08:03.709 2024-02-22 19:08:03.709 1000 STREAM 141924 4166 6035845 2024-02-22 19:11:03.708 2024-02-22 19:11:03.708 1000 STREAM 141924 20889 6035861 2024-02-22 19:13:03.749 2024-02-22 19:13:03.749 1000 STREAM 141924 20412 6035864 2024-02-22 19:14:03.734 2024-02-22 19:14:03.734 1000 STREAM 141924 7960 6035907 2024-02-22 19:16:03.774 2024-02-22 19:16:03.774 1000 STREAM 141924 5791 6035910 2024-02-22 19:17:03.802 2024-02-22 19:17:03.802 1000 STREAM 141924 706 6035914 2024-02-22 19:18:03.818 2024-02-22 19:18:03.818 1000 STREAM 141924 1983 6035923 2024-02-22 19:20:03.808 2024-02-22 19:20:03.808 1000 STREAM 141924 5112 6035938 2024-02-22 19:22:03.863 2024-02-22 19:22:03.863 1000 STREAM 141924 10342 6035946 2024-02-22 19:23:03.863 2024-02-22 19:23:03.863 1000 STREAM 141924 18736 6035994 2024-02-22 19:28:03.873 2024-02-22 19:28:03.873 1000 STREAM 141924 20120 6036006 2024-02-22 19:29:03.886 2024-02-22 19:29:03.886 1000 STREAM 141924 16267 6036011 2024-02-22 19:30:03.902 2024-02-22 19:30:03.902 1000 STREAM 141924 681 6036013 2024-02-22 19:31:03.927 2024-02-22 19:31:03.927 1000 STREAM 141924 21157 6036059 2024-02-22 19:34:03.93 2024-02-22 19:34:03.93 1000 STREAM 141924 10981 6036071 2024-02-22 19:36:03.948 2024-02-22 19:36:03.948 1000 STREAM 141924 6327 6036077 2024-02-22 19:38:03.93 2024-02-22 19:38:03.93 1000 STREAM 141924 18393 6028822 2024-02-22 04:26:03.436 2024-02-22 04:26:03.436 1000 STREAM 141924 10398 6028824 2024-02-22 04:28:03.437 2024-02-22 04:28:03.437 1000 STREAM 141924 660 6028835 2024-02-22 04:29:03.444 2024-02-22 04:29:03.444 1000 STREAM 141924 19147 6028836 2024-02-22 04:30:03.435 2024-02-22 04:30:03.435 1000 STREAM 141924 20577 6028837 2024-02-22 04:31:03.439 2024-02-22 04:31:03.439 1000 STREAM 141924 19352 6028861 2024-02-22 04:33:03.46 2024-02-22 04:33:03.46 1000 STREAM 141924 1571 6028884 2024-02-22 04:34:03.465 2024-02-22 04:34:03.465 1000 STREAM 141924 18269 6028892 2024-02-22 04:35:03.471 2024-02-22 04:35:03.471 1000 STREAM 141924 18264 6028912 2024-02-22 04:38:03.484 2024-02-22 04:38:03.484 1000 STREAM 141924 19142 6028923 2024-02-22 04:40:03.463 2024-02-22 04:40:03.463 1000 STREAM 141924 20636 6028924 2024-02-22 04:41:03.493 2024-02-22 04:41:03.493 1000 STREAM 141924 20163 6028926 2024-02-22 04:42:03.494 2024-02-22 04:42:03.494 1000 STREAM 141924 10536 6028944 2024-02-22 04:44:03.5 2024-02-22 04:44:03.5 1000 STREAM 141924 12169 6028957 2024-02-22 04:45:03.509 2024-02-22 04:45:03.509 1000 STREAM 141924 895 6028958 2024-02-22 04:46:03.517 2024-02-22 04:46:03.517 1000 STREAM 141924 1741 6028960 2024-02-22 04:48:03.522 2024-02-22 04:48:03.522 1000 STREAM 141924 19381 6028962 2024-02-22 04:49:03.529 2024-02-22 04:49:03.529 1000 STREAM 141924 19815 6029090 2024-02-22 05:23:03.716 2024-02-22 05:23:03.716 1000 STREAM 141924 20881 6029093 2024-02-22 05:24:03.701 2024-02-22 05:24:03.701 1000 STREAM 141924 17291 6029105 2024-02-22 05:27:03.755 2024-02-22 05:27:03.755 1000 STREAM 141924 18470 6029119 2024-02-22 05:32:03.815 2024-02-22 05:32:03.815 1000 STREAM 141924 5590 6029120 2024-02-22 05:33:03.828 2024-02-22 05:33:03.828 1000 STREAM 141924 18679 6029123 2024-02-22 05:34:03.843 2024-02-22 05:34:03.843 1000 STREAM 141924 1060 6029124 2024-02-22 05:35:03.846 2024-02-22 05:35:03.846 1000 STREAM 141924 21563 6029136 2024-02-22 05:37:03.856 2024-02-22 05:37:03.856 1000 STREAM 141924 986 6035412 2024-02-22 18:36:37.737 2024-02-22 18:36:37.737 1000 FEE 435368 20377 6035413 2024-02-22 18:36:37.737 2024-02-22 18:36:37.737 9000 TIP 435368 15488 6035426 2024-02-22 18:38:17.451 2024-02-22 18:38:17.451 1000 FEE 435372 19007 6035431 2024-02-22 18:38:47.094 2024-02-22 18:38:47.094 10000 FEE 435357 9816 6035432 2024-02-22 18:38:47.094 2024-02-22 18:38:47.094 90000 TIP 435357 16536 6035433 2024-02-22 18:38:52.92 2024-02-22 18:38:52.92 1000 FEE 435373 20180 6035437 2024-02-22 18:39:25.624 2024-02-22 18:39:25.624 3000 FEE 435372 20353 6035438 2024-02-22 18:39:25.624 2024-02-22 18:39:25.624 27000 TIP 435372 12188 6035453 2024-02-22 18:40:38.709 2024-02-22 18:40:38.709 1100 FEE 434665 15690 6035454 2024-02-22 18:40:38.709 2024-02-22 18:40:38.709 9900 TIP 434665 12188 6035455 2024-02-22 18:40:38.823 2024-02-22 18:40:38.823 1100 FEE 434665 17082 6035456 2024-02-22 18:40:38.823 2024-02-22 18:40:38.823 9900 TIP 434665 17221 6035457 2024-02-22 18:40:38.929 2024-02-22 18:40:38.929 1100 FEE 434665 1720 6035458 2024-02-22 18:40:38.929 2024-02-22 18:40:38.929 9900 TIP 434665 9476 6035475 2024-02-22 18:40:41.751 2024-02-22 18:40:41.751 1100 FEE 435026 5725 6035476 2024-02-22 18:40:41.751 2024-02-22 18:40:41.751 9900 TIP 435026 17109 6028860 2024-02-22 04:32:45.709 2024-02-22 04:32:45.709 81000 TIP 434485 20602 6028874 2024-02-22 04:33:24.518 2024-02-22 04:33:24.518 100 FEE 434535 13399 6028875 2024-02-22 04:33:24.518 2024-02-22 04:33:24.518 900 TIP 434535 20581 6028878 2024-02-22 04:33:26.225 2024-02-22 04:33:26.225 9000 FEE 434535 16442 6028879 2024-02-22 04:33:26.225 2024-02-22 04:33:26.225 81000 TIP 434535 10530 6028885 2024-02-22 04:34:20.024 2024-02-22 04:34:20.024 100 FEE 434440 19462 6028886 2024-02-22 04:34:20.024 2024-02-22 04:34:20.024 900 TIP 434440 18528 6028891 2024-02-22 04:34:33.632 2024-02-22 04:34:33.632 1000 FEE 434542 6653 6028913 2024-02-22 04:38:11.252 2024-02-22 04:38:11.252 100000 FEE 434544 866 6028919 2024-02-22 04:39:35.096 2024-02-22 04:39:35.096 2000 FEE 434544 19292 6028920 2024-02-22 04:39:35.096 2024-02-22 04:39:35.096 18000 TIP 434544 20205 6028925 2024-02-22 04:42:02.432 2024-02-22 04:42:02.432 1000 FEE 434545 6361 6028932 2024-02-22 04:43:13.185 2024-02-22 04:43:13.185 1000 FEE 433943 12245 6028933 2024-02-22 04:43:13.185 2024-02-22 04:43:13.185 9000 TIP 433943 10536 6028977 2024-02-22 04:54:54.525 2024-02-22 04:54:54.525 10000 FEE 434549 16956 6028978 2024-02-22 04:54:54.525 2024-02-22 04:54:54.525 90000 TIP 434549 16912 6028979 2024-02-22 04:54:58.685 2024-02-22 04:54:58.685 1000 FEE 434550 20267 6028990 2024-02-22 05:00:29.755 2024-02-22 05:00:29.755 1000 FEE 434555 16754 6028992 2024-02-22 05:01:32.899 2024-02-22 05:01:32.899 1000 FEE 434556 15409 6029014 2024-02-22 05:09:56.961 2024-02-22 05:09:56.961 1100 FEE 434436 19995 6029015 2024-02-22 05:09:56.961 2024-02-22 05:09:56.961 9900 TIP 434436 15549 6029019 2024-02-22 05:09:58.566 2024-02-22 05:09:58.566 7100 FEE 434488 1626 6029020 2024-02-22 05:09:58.566 2024-02-22 05:09:58.566 63900 TIP 434488 15119 6029021 2024-02-22 05:09:59.001 2024-02-22 05:09:59.001 7100 FEE 434488 16839 6029022 2024-02-22 05:09:59.001 2024-02-22 05:09:59.001 63900 TIP 434488 11498 6029030 2024-02-22 05:11:40.929 2024-02-22 05:11:40.929 1000 FEE 434564 1224 6029121 2024-02-22 05:33:26.421 2024-02-22 05:33:26.421 100 FEE 434242 11491 6029122 2024-02-22 05:33:26.421 2024-02-22 05:33:26.421 900 TIP 434242 9992 6029126 2024-02-22 05:35:27.468 2024-02-22 05:35:27.468 2100 FEE 434431 20614 6029127 2024-02-22 05:35:27.468 2024-02-22 05:35:27.468 18900 TIP 434431 20588 6029158 2024-02-22 05:41:54.725 2024-02-22 05:41:54.725 1000 FEE 434581 16858 6029169 2024-02-22 05:43:45.736 2024-02-22 05:43:45.736 2100 FEE 434387 5590 6029170 2024-02-22 05:43:45.736 2024-02-22 05:43:45.736 18900 TIP 434387 2640 6029185 2024-02-22 05:47:26.68 2024-02-22 05:47:26.68 7700 FEE 427186 7913 6029186 2024-02-22 05:47:26.68 2024-02-22 05:47:26.68 69300 TIP 427186 21334 6029219 2024-02-22 05:57:26.537 2024-02-22 05:57:26.537 3300 FEE 434556 19435 6029220 2024-02-22 05:57:26.537 2024-02-22 05:57:26.537 29700 TIP 434556 876 6029234 2024-02-22 05:58:08.406 2024-02-22 05:58:08.406 21000 FEE 434588 4388 6029235 2024-02-22 05:59:00.402 2024-02-22 05:59:00.402 3300 FEE 434465 10311 6029236 2024-02-22 05:59:00.402 2024-02-22 05:59:00.402 29700 TIP 434465 925 6029251 2024-02-22 06:00:06.176 2024-02-22 06:00:06.176 3300 FEE 434565 19732 6029252 2024-02-22 06:00:06.176 2024-02-22 06:00:06.176 29700 TIP 434565 20185 6029275 2024-02-22 06:03:41.444 2024-02-22 06:03:41.444 5000 FEE 434501 18557 6029276 2024-02-22 06:03:41.444 2024-02-22 06:03:41.444 45000 TIP 434501 21398 6029282 2024-02-22 06:05:11.499 2024-02-22 06:05:11.499 400 FEE 434494 21058 6029283 2024-02-22 06:05:11.499 2024-02-22 06:05:11.499 3600 TIP 434494 18637 6029292 2024-02-22 06:08:04.169 2024-02-22 06:08:04.169 1000 FEE 434599 16706 6029299 2024-02-22 06:10:06.547 2024-02-22 06:10:06.547 21000 DONT_LIKE_THIS 434535 716 6029300 2024-02-22 06:10:18.511 2024-02-22 06:10:18.511 2100 FEE 434440 14255 6029301 2024-02-22 06:10:18.511 2024-02-22 06:10:18.511 18900 TIP 434440 708 6029318 2024-02-22 06:15:25.705 2024-02-22 06:15:25.705 1000 FEE 434487 2195 6029319 2024-02-22 06:15:25.705 2024-02-22 06:15:25.705 9000 TIP 434487 15148 6029329 2024-02-22 06:18:48.742 2024-02-22 06:18:48.742 2000 FEE 434535 11164 6029330 2024-02-22 06:18:48.742 2024-02-22 06:18:48.742 18000 TIP 434535 7960 6029341 2024-02-22 06:21:34.758 2024-02-22 06:21:34.758 5000 FEE 434535 8506 6028911 2024-02-22 04:37:23.844 2024-02-22 04:37:23.844 18900 TIP 434539 20993 6028930 2024-02-22 04:43:12.397 2024-02-22 04:43:12.397 1000 FEE 434285 20254 6028931 2024-02-22 04:43:12.397 2024-02-22 04:43:12.397 9000 TIP 434285 19815 6028961 2024-02-22 04:49:03.391 2024-02-22 04:49:03.391 1000 FEE 434546 18680 6029008 2024-02-22 05:08:52.205 2024-02-22 05:08:52.205 1000 FEE 434561 6798 6029048 2024-02-22 05:14:48.551 2024-02-22 05:14:48.551 2100 FEE 434500 16704 6029049 2024-02-22 05:14:48.551 2024-02-22 05:14:48.551 18900 TIP 434500 12277 6029051 2024-02-22 05:15:04.474 2024-02-22 05:15:04.474 100 FEE 434485 807 6029052 2024-02-22 05:15:04.474 2024-02-22 05:15:04.474 900 TIP 434485 1772 6029075 2024-02-22 05:20:56.699 2024-02-22 05:20:56.699 1000 FEE 434570 17797 6029088 2024-02-22 05:23:02.013 2024-02-22 05:23:02.013 12800 FEE 433240 621 6029089 2024-02-22 05:23:02.013 2024-02-22 05:23:02.013 115200 TIP 433240 15148 6029102 2024-02-22 05:26:26.253 2024-02-22 05:26:26.253 156300 FEE 432920 675 6029103 2024-02-22 05:26:26.253 2024-02-22 05:26:26.253 1406700 TIP 432920 20156 6029145 2024-02-22 05:39:32.913 2024-02-22 05:39:32.913 1000 FEE 434578 10728 6029152 2024-02-22 05:40:53.544 2024-02-22 05:40:53.544 2100 FEE 434485 9496 6029153 2024-02-22 05:40:53.544 2024-02-22 05:40:53.544 18900 TIP 434485 19030 6029157 2024-02-22 05:41:09.055 2024-02-22 05:41:09.055 10000 FEE 434580 20272 6029183 2024-02-22 05:47:26.399 2024-02-22 05:47:26.399 7700 FEE 427186 18529 6029184 2024-02-22 05:47:26.399 2024-02-22 05:47:26.399 69300 TIP 427186 20310 6029187 2024-02-22 05:47:33.904 2024-02-22 05:47:33.904 0 FEE 434585 661 6029211 2024-02-22 05:57:14.841 2024-02-22 05:57:14.841 3300 FEE 434535 937 6029212 2024-02-22 05:57:14.841 2024-02-22 05:57:14.841 29700 TIP 434535 5758 6029229 2024-02-22 05:57:35.469 2024-02-22 05:57:35.469 3300 FEE 434481 18658 6029230 2024-02-22 05:57:35.469 2024-02-22 05:57:35.469 29700 TIP 434481 17891 6029256 2024-02-22 06:01:05.032 2024-02-22 06:01:05.032 1000 FEE 434589 2098 6029272 2024-02-22 06:03:00.606 2024-02-22 06:03:00.606 10000 FEE 434077 16432 6029273 2024-02-22 06:03:00.606 2024-02-22 06:03:00.606 90000 TIP 434077 8713 6029278 2024-02-22 06:04:07.06 2024-02-22 06:04:07.06 1000 FEE 434592 18932 6029279 2024-02-22 06:04:45.119 2024-02-22 06:04:45.119 1000 FEE 434593 14489 6029293 2024-02-22 06:08:04.426 2024-02-22 06:08:04.426 2600 FEE 434553 20730 6029294 2024-02-22 06:08:04.426 2024-02-22 06:08:04.426 23400 TIP 434553 13927 6029323 2024-02-22 06:18:32.64 2024-02-22 06:18:32.64 2000 FEE 434498 13174 6029324 2024-02-22 06:18:32.64 2024-02-22 06:18:32.64 18000 TIP 434498 13767 6029331 2024-02-22 06:18:49.129 2024-02-22 06:18:49.129 2000 FEE 434535 20669 6029332 2024-02-22 06:18:49.129 2024-02-22 06:18:49.129 18000 TIP 434535 6688 6029336 2024-02-22 06:19:18.735 2024-02-22 06:19:18.735 10000 FEE 434606 8080 6029339 2024-02-22 06:20:13.661 2024-02-22 06:20:13.661 1000 FEE 434608 18736 6029351 2024-02-22 06:21:58.422 2024-02-22 06:21:58.422 1000 FEE 434385 7903 6029352 2024-02-22 06:21:58.422 2024-02-22 06:21:58.422 9000 TIP 434385 2576 6029372 2024-02-22 06:22:24.693 2024-02-22 06:22:24.693 1000 FEE 434396 1439 6029373 2024-02-22 06:22:24.693 2024-02-22 06:22:24.693 9000 TIP 434396 1272 6029374 2024-02-22 06:22:37.567 2024-02-22 06:22:37.567 1000 FEE 434396 16594 6029375 2024-02-22 06:22:37.567 2024-02-22 06:22:37.567 9000 TIP 434396 12334 6029387 2024-02-22 06:23:25.929 2024-02-22 06:23:25.929 1000 FEE 434513 21042 6029388 2024-02-22 06:23:25.929 2024-02-22 06:23:25.929 9000 TIP 434513 12609 6029415 2024-02-22 06:23:35.151 2024-02-22 06:23:35.151 1000 FEE 434536 20133 6029416 2024-02-22 06:23:35.151 2024-02-22 06:23:35.151 9000 TIP 434536 21527 6029417 2024-02-22 06:23:35.398 2024-02-22 06:23:35.398 1000 FEE 434535 19668 6029418 2024-02-22 06:23:35.398 2024-02-22 06:23:35.398 9000 TIP 434535 13378 6029431 2024-02-22 06:23:40.335 2024-02-22 06:23:40.335 1000 FEE 434462 16442 6029432 2024-02-22 06:23:40.335 2024-02-22 06:23:40.335 9000 TIP 434462 19449 6029479 2024-02-22 06:23:57.614 2024-02-22 06:23:57.614 1000 FEE 434293 19924 6029480 2024-02-22 06:23:57.614 2024-02-22 06:23:57.614 9000 TIP 434293 11491 6029497 2024-02-22 06:24:02.982 2024-02-22 06:24:02.982 1000 FEE 434264 20490 6029498 2024-02-22 06:24:02.982 2024-02-22 06:24:02.982 9000 TIP 434264 6164 6029557 2024-02-22 06:46:59.781 2024-02-22 06:46:59.781 2100 FEE 434440 16193 6029558 2024-02-22 06:46:59.781 2024-02-22 06:46:59.781 18900 TIP 434440 15491 6029591 2024-02-22 06:54:14.433 2024-02-22 06:54:14.433 0 FEE 434626 658 6029602 2024-02-22 06:54:59.963 2024-02-22 06:54:59.963 1000 FEE 434601 18704 6029603 2024-02-22 06:54:59.963 2024-02-22 06:54:59.963 9000 TIP 434601 1534 6029632 2024-02-22 07:00:33.138 2024-02-22 07:00:33.138 1000 FEE 434634 4083 6029635 2024-02-22 07:02:14.429 2024-02-22 07:02:14.429 3000 FEE 434627 9350 6029636 2024-02-22 07:02:14.429 2024-02-22 07:02:14.429 27000 TIP 434627 20603 6029646 2024-02-22 07:07:24.219 2024-02-22 07:07:24.219 100 FEE 434627 11819 6029647 2024-02-22 07:07:24.219 2024-02-22 07:07:24.219 900 TIP 434627 18178 6029678 2024-02-22 07:16:43.709 2024-02-22 07:16:43.709 5000 FEE 434440 21563 6029679 2024-02-22 07:16:43.709 2024-02-22 07:16:43.709 45000 TIP 434440 20036 6029687 2024-02-22 07:18:45.104 2024-02-22 07:18:45.104 1000 FEE 434639 16042 6029724 2024-02-22 07:27:44.005 2024-02-22 07:27:44.005 2100 FEE 433844 17321 6029725 2024-02-22 07:27:44.005 2024-02-22 07:27:44.005 18900 TIP 433844 5497 6029730 2024-02-22 07:27:46.494 2024-02-22 07:27:46.494 2100 FEE 434410 797 6029731 2024-02-22 07:27:46.494 2024-02-22 07:27:46.494 18900 TIP 434410 11516 6029740 2024-02-22 07:27:55.303 2024-02-22 07:27:55.303 2100 FEE 434424 11314 6029741 2024-02-22 07:27:55.303 2024-02-22 07:27:55.303 18900 TIP 434424 15890 6029754 2024-02-22 07:33:43.631 2024-02-22 07:33:43.631 1000 FEE 434627 2722 6029755 2024-02-22 07:33:43.631 2024-02-22 07:33:43.631 9000 TIP 434627 12272 6029758 2024-02-22 07:33:44.946 2024-02-22 07:33:44.946 1000 FEE 434627 17513 6029759 2024-02-22 07:33:44.946 2024-02-22 07:33:44.946 9000 TIP 434627 16259 6029781 2024-02-22 07:36:59.751 2024-02-22 07:36:59.751 2100 FEE 434627 9611 6029782 2024-02-22 07:36:59.751 2024-02-22 07:36:59.751 18900 TIP 434627 20222 6029852 2024-02-22 07:56:54.122 2024-02-22 07:56:54.122 1000 FEE 434030 21521 6029853 2024-02-22 07:56:54.122 2024-02-22 07:56:54.122 9000 TIP 434030 17953 6029855 2024-02-22 07:57:12.752 2024-02-22 07:57:12.752 1000 FEE 434664 19154 6029856 2024-02-22 07:57:21.167 2024-02-22 07:57:21.167 1000 FEE 434160 14045 6029857 2024-02-22 07:57:21.167 2024-02-22 07:57:21.167 9000 TIP 434160 6202 6029863 2024-02-22 07:58:51.373 2024-02-22 07:58:51.373 2100 FEE 434535 18208 6029864 2024-02-22 07:58:51.373 2024-02-22 07:58:51.373 18900 TIP 434535 8541 6029894 2024-02-22 08:09:09.13 2024-02-22 08:09:09.13 100 FEE 434309 15544 6029895 2024-02-22 08:09:09.13 2024-02-22 08:09:09.13 900 TIP 434309 14308 6029904 2024-02-22 08:16:33.209 2024-02-22 08:16:33.209 1000 FEE 434673 18170 6029914 2024-02-22 08:20:42.866 2024-02-22 08:20:42.866 1000 FEE 434674 20479 6029976 2024-02-22 08:43:54.364 2024-02-22 08:43:54.364 1000 FEE 434679 4345 6029978 2024-02-22 08:44:24.179 2024-02-22 08:44:24.179 10000 FEE 434656 18344 6029979 2024-02-22 08:44:24.179 2024-02-22 08:44:24.179 90000 TIP 434656 15488 6029989 2024-02-22 08:47:02.53 2024-02-22 08:47:02.53 1000 FEE 434681 14950 6030009 2024-02-22 08:47:58.123 2024-02-22 08:47:58.123 100 FEE 434646 16717 6030010 2024-02-22 08:47:58.123 2024-02-22 08:47:58.123 900 TIP 434646 19446 6030034 2024-02-22 08:54:46.881 2024-02-22 08:54:46.881 500 FEE 434651 1425 6030035 2024-02-22 08:54:46.881 2024-02-22 08:54:46.881 4500 TIP 434651 19458 6030062 2024-02-22 09:00:04.479 2024-02-22 09:00:04.479 5000 FEE 434488 7772 6030063 2024-02-22 09:00:04.479 2024-02-22 09:00:04.479 45000 TIP 434488 21155 6030077 2024-02-22 09:03:40.785 2024-02-22 09:03:40.785 1000 FEE 434690 1047 6030081 2024-02-22 09:04:54.594 2024-02-22 09:04:54.594 0 FEE 434688 17050 6028965 2024-02-22 04:50:02.598 2024-02-22 04:50:02.598 1000 STREAM 141924 13854 6028969 2024-02-22 04:51:02.579 2024-02-22 04:51:02.579 1000 STREAM 141924 16406 6028973 2024-02-22 04:52:02.597 2024-02-22 04:52:02.597 1000 STREAM 141924 21344 6028976 2024-02-22 04:54:02.61 2024-02-22 04:54:02.61 1000 STREAM 141924 21136 6035419 2024-02-22 18:36:39.27 2024-02-22 18:36:39.27 9000 TIP 435368 19924 6035427 2024-02-22 18:38:21.962 2024-02-22 18:38:21.962 1100 FEE 435272 20243 6035428 2024-02-22 18:38:21.962 2024-02-22 18:38:21.962 9900 TIP 435272 20683 6035441 2024-02-22 18:39:33.438 2024-02-22 18:39:33.438 2000 FEE 435275 7913 6035442 2024-02-22 18:39:33.438 2024-02-22 18:39:33.438 18000 TIP 435275 19259 6035463 2024-02-22 18:40:39.829 2024-02-22 18:40:39.829 1100 FEE 434807 20854 6035464 2024-02-22 18:40:39.829 2024-02-22 18:40:39.829 9900 TIP 434807 19296 6035471 2024-02-22 18:40:41.438 2024-02-22 18:40:41.438 1100 FEE 435026 20858 6035472 2024-02-22 18:40:41.438 2024-02-22 18:40:41.438 9900 TIP 435026 2537 6035491 2024-02-22 18:41:11.223 2024-02-22 18:41:11.223 1000 FEE 435261 14503 6035492 2024-02-22 18:41:11.223 2024-02-22 18:41:11.223 9000 TIP 435261 3377 6035513 2024-02-22 18:41:29.169 2024-02-22 18:41:29.169 1000 FEE 435327 21521 6035514 2024-02-22 18:41:29.169 2024-02-22 18:41:29.169 9000 TIP 435327 19966 6035517 2024-02-22 18:41:30.061 2024-02-22 18:41:30.061 1000 FEE 435327 2293 6035518 2024-02-22 18:41:30.061 2024-02-22 18:41:30.061 9000 TIP 435327 9159 6035519 2024-02-22 18:41:30.426 2024-02-22 18:41:30.426 1000 FEE 435327 1439 6035520 2024-02-22 18:41:30.426 2024-02-22 18:41:30.426 9000 TIP 435327 18426 6035527 2024-02-22 18:41:35.855 2024-02-22 18:41:35.855 1000 FEE 435231 16410 6035528 2024-02-22 18:41:35.855 2024-02-22 18:41:35.855 9000 TIP 435231 16270 6035538 2024-02-22 18:44:21.869 2024-02-22 18:44:21.869 2100 FEE 435217 6164 6035539 2024-02-22 18:44:21.869 2024-02-22 18:44:21.869 18900 TIP 435217 2347 6035577 2024-02-22 18:48:19.633 2024-02-22 18:48:19.633 1000 FEE 434124 628 6035578 2024-02-22 18:48:19.633 2024-02-22 18:48:19.633 9000 TIP 434124 4175 6035596 2024-02-22 18:48:54.899 2024-02-22 18:48:54.899 1000 FEE 435383 656 6035623 2024-02-22 18:51:02.992 2024-02-22 18:51:02.992 2300 FEE 435377 10668 6035624 2024-02-22 18:51:02.992 2024-02-22 18:51:02.992 20700 TIP 435377 13132 6035625 2024-02-22 18:51:03.168 2024-02-22 18:51:03.168 2300 FEE 435377 992 6035626 2024-02-22 18:51:03.168 2024-02-22 18:51:03.168 20700 TIP 435377 20560 6035632 2024-02-22 18:51:03.789 2024-02-22 18:51:03.789 2300 FEE 435377 20299 6035633 2024-02-22 18:51:03.789 2024-02-22 18:51:03.789 20700 TIP 435377 11819 6035649 2024-02-22 18:51:48.33 2024-02-22 18:51:48.33 2300 FEE 435377 4027 6035650 2024-02-22 18:51:48.33 2024-02-22 18:51:48.33 20700 TIP 435377 17713 6035666 2024-02-22 18:54:10.265 2024-02-22 18:54:10.265 7000 FEE 435390 7766 6035682 2024-02-22 18:55:15.31 2024-02-22 18:55:15.31 900 FEE 435340 20546 6035683 2024-02-22 18:55:15.31 2024-02-22 18:55:15.31 8100 TIP 435340 21493 6035686 2024-02-22 18:55:39.456 2024-02-22 18:55:39.456 1100 FEE 435217 1620 6035687 2024-02-22 18:55:39.456 2024-02-22 18:55:39.456 9900 TIP 435217 2039 6035691 2024-02-22 18:56:34.244 2024-02-22 18:56:34.244 2100 FEE 435379 18680 6035692 2024-02-22 18:56:34.244 2024-02-22 18:56:34.244 18900 TIP 435379 679 6035695 2024-02-22 18:56:58.269 2024-02-22 18:56:58.269 100000 FEE 435327 18660 6035696 2024-02-22 18:56:58.269 2024-02-22 18:56:58.269 900000 TIP 435327 12175 6035698 2024-02-22 18:57:23.754 2024-02-22 18:57:23.754 2100 FEE 435394 14774 6035699 2024-02-22 18:57:23.754 2024-02-22 18:57:23.754 18900 TIP 435394 15180 6035716 2024-02-22 18:59:07.682 2024-02-22 18:59:07.682 2300 FEE 435399 19570 6035717 2024-02-22 18:59:07.682 2024-02-22 18:59:07.682 20700 TIP 435399 8269 6035724 2024-02-22 18:59:08.737 2024-02-22 18:59:08.737 2300 FEE 435399 21588 6028975 2024-02-22 04:53:02.591 2024-02-22 04:53:02.591 1000 STREAM 141924 5725 6035420 2024-02-22 18:37:03.422 2024-02-22 18:37:03.422 1000 STREAM 141924 14959 6035434 2024-02-22 18:39:03.432 2024-02-22 18:39:03.432 1000 STREAM 141924 985 6035529 2024-02-22 18:42:03.454 2024-02-22 18:42:03.454 1000 STREAM 141924 20377 6035530 2024-02-22 18:43:03.454 2024-02-22 18:43:03.454 1000 STREAM 141924 16754 6035544 2024-02-22 18:45:03.473 2024-02-22 18:45:03.473 1000 STREAM 141924 20208 6035547 2024-02-22 18:46:03.494 2024-02-22 18:46:03.494 1000 STREAM 141924 5017 6035655 2024-02-22 18:52:03.536 2024-02-22 18:52:03.536 1000 STREAM 141924 15938 6035675 2024-02-22 18:55:03.579 2024-02-22 18:55:03.579 1000 STREAM 141924 21320 6035690 2024-02-22 18:56:03.612 2024-02-22 18:56:03.612 1000 STREAM 141924 1114 6035701 2024-02-22 18:58:03.619 2024-02-22 18:58:03.619 1000 STREAM 141924 1650 6035711 2024-02-22 18:59:03.645 2024-02-22 18:59:03.645 1000 STREAM 141924 20117 6035778 2024-02-22 19:00:03.694 2024-02-22 19:00:03.694 1000 STREAM 141924 787 6035790 2024-02-22 19:02:03.667 2024-02-22 19:02:03.667 1000 STREAM 141924 756 6035798 2024-02-22 19:05:03.688 2024-02-22 19:05:03.688 1000 STREAM 141924 21012 6035806 2024-02-22 19:06:03.686 2024-02-22 19:06:03.686 1000 STREAM 141924 19286 6035834 2024-02-22 19:09:03.71 2024-02-22 19:09:03.71 1000 STREAM 141924 2774 6035844 2024-02-22 19:10:03.758 2024-02-22 19:10:03.758 1000 STREAM 141924 17707 6035854 2024-02-22 19:12:03.722 2024-02-22 19:12:03.722 1000 STREAM 141924 9758 6035886 2024-02-22 19:15:03.774 2024-02-22 19:15:03.774 1000 STREAM 141924 2361 6035920 2024-02-22 19:19:03.833 2024-02-22 19:19:03.833 1000 STREAM 141924 16638 6035933 2024-02-22 19:21:03.822 2024-02-22 19:21:03.822 1000 STREAM 141924 14909 6035958 2024-02-22 19:24:03.851 2024-02-22 19:24:03.851 1000 STREAM 141924 20514 6035971 2024-02-22 19:25:03.86 2024-02-22 19:25:03.86 1000 STREAM 141924 2735 6035980 2024-02-22 19:26:03.858 2024-02-22 19:26:03.858 1000 STREAM 141924 18635 6035991 2024-02-22 19:27:03.86 2024-02-22 19:27:03.86 1000 STREAM 141924 18357 6036014 2024-02-22 19:32:03.934 2024-02-22 19:32:03.934 1000 STREAM 141924 20849 6036043 2024-02-22 19:33:03.913 2024-02-22 19:33:03.913 1000 STREAM 141924 19813 6036070 2024-02-22 19:35:03.934 2024-02-22 19:35:03.934 1000 STREAM 141924 5519 6036072 2024-02-22 19:37:03.956 2024-02-22 19:37:03.956 1000 STREAM 141924 14213 6036123 2024-02-22 19:40:03.971 2024-02-22 19:40:03.971 1000 STREAM 141924 2402 6036134 2024-02-22 19:41:03.988 2024-02-22 19:41:03.988 1000 STREAM 141924 4654 6036144 2024-02-22 19:43:04.006 2024-02-22 19:43:04.006 1000 STREAM 141924 2614 6036167 2024-02-22 19:45:04.04 2024-02-22 19:45:04.04 1000 STREAM 141924 15273 6036175 2024-02-22 19:47:04.035 2024-02-22 19:47:04.035 1000 STREAM 141924 21343 6036187 2024-02-22 19:48:04.04 2024-02-22 19:48:04.04 1000 STREAM 141924 12072 6036202 2024-02-22 19:51:04.073 2024-02-22 19:51:04.073 1000 STREAM 141924 9351 6036206 2024-02-22 19:53:04.098 2024-02-22 19:53:04.098 1000 STREAM 141924 20102 6036209 2024-02-22 19:54:04.105 2024-02-22 19:54:04.105 1000 STREAM 141924 3717 6036214 2024-02-22 19:56:04.128 2024-02-22 19:56:04.128 1000 STREAM 141924 20143 6036215 2024-02-22 19:57:04.3 2024-02-22 19:57:04.3 1000 STREAM 141924 18529 6036260 2024-02-22 20:04:04.193 2024-02-22 20:04:04.193 1000 STREAM 141924 20157 6028980 2024-02-22 04:55:02.876 2024-02-22 04:55:02.876 1000 STREAM 141924 11423 6028981 2024-02-22 04:56:02.775 2024-02-22 04:56:02.775 1000 STREAM 141924 14950 6028983 2024-02-22 04:57:02.788 2024-02-22 04:57:02.788 1000 STREAM 141924 14308 6028988 2024-02-22 04:59:02.8 2024-02-22 04:59:02.8 1000 STREAM 141924 14651 6028989 2024-02-22 05:00:02.866 2024-02-22 05:00:02.866 1000 STREAM 141924 698 6028993 2024-02-22 05:02:02.811 2024-02-22 05:02:02.811 1000 STREAM 141924 19531 6028997 2024-02-22 05:04:02.851 2024-02-22 05:04:02.851 1000 STREAM 141924 19449 6029023 2024-02-22 05:10:02.873 2024-02-22 05:10:02.873 1000 STREAM 141924 675 6029026 2024-02-22 05:11:02.881 2024-02-22 05:11:02.881 1000 STREAM 141924 17172 6029063 2024-02-22 05:16:02.926 2024-02-22 05:16:02.926 1000 STREAM 141924 20299 6029065 2024-02-22 05:17:02.935 2024-02-22 05:17:02.935 1000 STREAM 141924 19007 6029072 2024-02-22 05:19:02.943 2024-02-22 05:19:02.943 1000 STREAM 141924 17552 6035446 2024-02-22 18:40:21.464 2024-02-22 18:40:21.464 2100 FEE 435220 16667 6035447 2024-02-22 18:40:21.464 2024-02-22 18:40:21.464 18900 TIP 435220 1825 6035450 2024-02-22 18:40:23.741 2024-02-22 18:40:23.741 10000 FEE 435374 20102 6035501 2024-02-22 18:41:23.669 2024-02-22 18:41:23.669 1000 FEE 435343 16660 6035502 2024-02-22 18:41:23.669 2024-02-22 18:41:23.669 9000 TIP 435343 895 6035503 2024-02-22 18:41:24.293 2024-02-22 18:41:24.293 1000 FEE 435343 16356 6035504 2024-02-22 18:41:24.293 2024-02-22 18:41:24.293 9000 TIP 435343 21523 6035532 2024-02-22 18:43:33.704 2024-02-22 18:43:33.704 83000 DONT_LIKE_THIS 435374 19613 6035542 2024-02-22 18:44:45.32 2024-02-22 18:44:45.32 7700 FEE 435261 7913 6035543 2024-02-22 18:44:45.32 2024-02-22 18:44:45.32 69300 TIP 435261 12261 6035548 2024-02-22 18:46:14.465 2024-02-22 18:46:14.465 10100 FEE 435261 18016 6035549 2024-02-22 18:46:14.465 2024-02-22 18:46:14.465 90900 TIP 435261 20970 6035553 2024-02-22 18:46:31.632 2024-02-22 18:46:31.632 1000 FEE 435380 6327 6035572 2024-02-22 18:47:34.566 2024-02-22 18:47:34.566 0 FEE 435378 21485 6035583 2024-02-22 18:48:25.176 2024-02-22 18:48:25.176 1000 FEE 434124 6229 6035584 2024-02-22 18:48:25.176 2024-02-22 18:48:25.176 9000 TIP 434124 13399 6035599 2024-02-22 18:49:28.936 2024-02-22 18:49:28.936 4000 FEE 435373 21563 6035600 2024-02-22 18:49:28.936 2024-02-22 18:49:28.936 36000 TIP 435373 3411 6035606 2024-02-22 18:49:55.359 2024-02-22 18:49:55.359 1000 FEE 435386 21214 6035612 2024-02-22 18:50:49.259 2024-02-22 18:50:49.259 1000 FEE 435388 19909 6035617 2024-02-22 18:50:58.641 2024-02-22 18:50:58.641 2300 FEE 435377 18909 6035618 2024-02-22 18:50:58.641 2024-02-22 18:50:58.641 20700 TIP 435377 19759 6035630 2024-02-22 18:51:03.526 2024-02-22 18:51:03.526 2300 FEE 435377 11527 6035631 2024-02-22 18:51:03.526 2024-02-22 18:51:03.526 20700 TIP 435377 19981 6035653 2024-02-22 18:51:58.265 2024-02-22 18:51:58.265 2300 FEE 435257 2528 6035654 2024-02-22 18:51:58.265 2024-02-22 18:51:58.265 20700 TIP 435257 1114 6035656 2024-02-22 18:52:03.648 2024-02-22 18:52:03.648 2300 FEE 435275 17592 6035657 2024-02-22 18:52:03.648 2024-02-22 18:52:03.648 20700 TIP 435275 16867 6035661 2024-02-22 18:53:04.102 2024-02-22 18:53:04.102 2100 FEE 433296 20180 6035662 2024-02-22 18:53:04.102 2024-02-22 18:53:04.102 18900 TIP 433296 10719 6035694 2024-02-22 18:56:44.323 2024-02-22 18:56:44.323 0 FEE 435394 2681 6035709 2024-02-22 18:59:03.468 2024-02-22 18:59:03.468 10000 FEE 434717 20602 6035710 2024-02-22 18:59:03.468 2024-02-22 18:59:03.468 90000 TIP 434717 18311 6035726 2024-02-22 18:59:08.967 2024-02-22 18:59:08.967 2300 FEE 435399 20683 6035727 2024-02-22 18:59:08.967 2024-02-22 18:59:08.967 20700 TIP 435399 1209 6035732 2024-02-22 18:59:09.348 2024-02-22 18:59:09.348 2300 FEE 435399 19909 6035733 2024-02-22 18:59:09.348 2024-02-22 18:59:09.348 20700 TIP 435399 8926 6035736 2024-02-22 18:59:10.186 2024-02-22 18:59:10.186 2300 FEE 435399 1769 6035737 2024-02-22 18:59:10.186 2024-02-22 18:59:10.186 20700 TIP 435399 14271 6035746 2024-02-22 18:59:10.814 2024-02-22 18:59:10.814 2300 FEE 435399 1261 6035747 2024-02-22 18:59:10.814 2024-02-22 18:59:10.814 20700 TIP 435399 12188 6035762 2024-02-22 18:59:24.689 2024-02-22 18:59:24.689 1000 FEE 435400 4973 6035785 2024-02-22 19:01:51.436 2024-02-22 19:01:51.436 1100 FEE 357875 15577 6035786 2024-02-22 19:01:51.436 2024-02-22 19:01:51.436 9900 TIP 357875 6030 6035787 2024-02-22 19:01:53.488 2024-02-22 19:01:53.488 8300 FEE 435384 1130 6035788 2024-02-22 19:01:53.488 2024-02-22 19:01:53.488 74700 TIP 435384 13249 6035794 2024-02-22 19:03:09.763 2024-02-22 19:03:09.763 10100 FEE 435242 11897 6035795 2024-02-22 19:03:09.763 2024-02-22 19:03:09.763 90900 TIP 435242 7510 6035811 2024-02-22 19:07:12.01 2024-02-22 19:07:12.01 1000 FEE 435357 4459 6035812 2024-02-22 19:07:12.01 2024-02-22 19:07:12.01 9000 TIP 435357 21371 6035838 2024-02-22 19:09:22.128 2024-02-22 19:09:22.128 200 FEE 435396 21228 6035839 2024-02-22 19:09:22.128 2024-02-22 19:09:22.128 1800 TIP 435396 1836 6035872 2024-02-22 19:14:38.637 2024-02-22 19:14:38.637 2100 FEE 435324 670 6035873 2024-02-22 19:14:38.637 2024-02-22 19:14:38.637 18900 TIP 435324 644 6035889 2024-02-22 19:15:11.591 2024-02-22 19:15:11.591 1000 FEE 435421 1471 6035892 2024-02-22 19:15:13.295 2024-02-22 19:15:13.295 900 FEE 435376 5865 6035893 2024-02-22 19:15:13.295 2024-02-22 19:15:13.295 8100 TIP 435376 794 6035900 2024-02-22 19:15:17.64 2024-02-22 19:15:17.64 1000 FEE 435422 1626 6035903 2024-02-22 19:15:54.626 2024-02-22 19:15:54.626 27000 FEE 435136 20555 6035904 2024-02-22 19:15:54.626 2024-02-22 19:15:54.626 243000 TIP 435136 20377 6035908 2024-02-22 19:16:49.852 2024-02-22 19:16:49.852 10000 FEE 435328 7659 6035909 2024-02-22 19:16:49.852 2024-02-22 19:16:49.852 90000 TIP 435328 6383 6035913 2024-02-22 19:17:56.501 2024-02-22 19:17:56.501 1000 FEE 435423 4521 6035936 2024-02-22 19:21:33.606 2024-02-22 19:21:33.606 10000 FEE 435328 21522 6035937 2024-02-22 19:21:33.606 2024-02-22 19:21:33.606 90000 TIP 435328 803 6035948 2024-02-22 19:23:24.569 2024-02-22 19:23:24.569 2100 FEE 434424 667 6035949 2024-02-22 19:23:24.569 2024-02-22 19:23:24.569 18900 TIP 434424 18174 6035974 2024-02-22 19:25:36.058 2024-02-22 19:25:36.058 100 FEE 435242 2016 6035975 2024-02-22 19:25:36.058 2024-02-22 19:25:36.058 900 TIP 435242 7877 6035995 2024-02-22 19:28:05.642 2024-02-22 19:28:05.642 1000 FEE 435436 2609 6036007 2024-02-22 19:29:10.506 2024-02-22 19:29:10.506 100 FEE 435380 12738 6036008 2024-02-22 19:29:10.506 2024-02-22 19:29:10.506 900 TIP 435380 19615 6036009 2024-02-22 19:29:59.456 2024-02-22 19:29:59.456 100 FEE 435338 8380 6036010 2024-02-22 19:29:59.456 2024-02-22 19:29:59.456 900 TIP 435338 1130 6036073 2024-02-22 19:37:15.506 2024-02-22 19:37:15.506 1000 FEE 435445 16788 6036080 2024-02-22 19:38:06.528 2024-02-22 19:38:06.528 100 FEE 435328 712 6036081 2024-02-22 19:38:06.528 2024-02-22 19:38:06.528 900 TIP 435328 15367 6036096 2024-02-22 19:38:09.391 2024-02-22 19:38:09.391 100 FEE 435189 770 6036097 2024-02-22 19:38:09.391 2024-02-22 19:38:09.391 900 TIP 435189 1717 6036098 2024-02-22 19:38:09.644 2024-02-22 19:38:09.644 100 FEE 435189 2431 6036099 2024-02-22 19:38:09.644 2024-02-22 19:38:09.644 900 TIP 435189 8360 6036115 2024-02-22 19:39:04.403 2024-02-22 19:39:04.403 3000 FEE 435445 16052 6036116 2024-02-22 19:39:04.403 2024-02-22 19:39:04.403 27000 TIP 435445 15719 6036124 2024-02-22 19:40:30.24 2024-02-22 19:40:30.24 100 FEE 435448 2502 6036125 2024-02-22 19:40:30.24 2024-02-22 19:40:30.24 900 TIP 435448 16356 6036128 2024-02-22 19:40:30.665 2024-02-22 19:40:30.665 100 FEE 435448 17727 6036129 2024-02-22 19:40:30.665 2024-02-22 19:40:30.665 900 TIP 435448 17316 6036132 2024-02-22 19:40:30.98 2024-02-22 19:40:30.98 100 FEE 435448 20972 6036133 2024-02-22 19:40:30.98 2024-02-22 19:40:30.98 900 TIP 435448 18994 6036155 2024-02-22 19:43:37.39 2024-02-22 19:43:37.39 4000 FEE 435263 19995 6036156 2024-02-22 19:43:37.39 2024-02-22 19:43:37.39 36000 TIP 435263 11395 6028984 2024-02-22 04:58:02.794 2024-02-22 04:58:02.794 1000 STREAM 141924 2710 6028991 2024-02-22 05:01:02.811 2024-02-22 05:01:02.811 1000 STREAM 141924 21457 6028994 2024-02-22 05:03:02.821 2024-02-22 05:03:02.821 1000 STREAM 141924 1631 6035486 2024-02-22 18:40:51.853 2024-02-22 18:40:51.853 2100 FEE 433240 886 6035487 2024-02-22 18:40:51.853 2024-02-22 18:40:51.853 18900 TIP 433240 21242 6035493 2024-02-22 18:41:12.163 2024-02-22 18:41:12.163 1000 FEE 435231 2780 6035494 2024-02-22 18:41:12.163 2024-02-22 18:41:12.163 9000 TIP 435231 1316 6035495 2024-02-22 18:41:21.687 2024-02-22 18:41:21.687 1000 FEE 435231 716 6035496 2024-02-22 18:41:21.687 2024-02-22 18:41:21.687 9000 TIP 435231 21296 6035511 2024-02-22 18:41:28.696 2024-02-22 18:41:28.696 1000 FEE 435327 622 6035512 2024-02-22 18:41:28.696 2024-02-22 18:41:28.696 9000 TIP 435327 20208 6035546 2024-02-22 18:45:47.03 2024-02-22 18:45:47.03 0 FEE 435378 19296 6035560 2024-02-22 18:47:10.799 2024-02-22 18:47:10.799 1000 FEE 435231 4763 6035561 2024-02-22 18:47:10.799 2024-02-22 18:47:10.799 9000 TIP 435231 1429 6035573 2024-02-22 18:47:47.364 2024-02-22 18:47:47.364 0 FEE 435382 15146 6035575 2024-02-22 18:48:10.448 2024-02-22 18:48:10.448 200 FEE 199147 4502 6035576 2024-02-22 18:48:10.448 2024-02-22 18:48:10.448 1800 TIP 199147 19335 6035609 2024-02-22 18:50:20.35 2024-02-22 18:50:20.35 1000 FEE 435387 2609 6028998 2024-02-22 05:05:02.742 2024-02-22 05:05:02.742 1000 STREAM 141924 16097 6028999 2024-02-22 05:06:02.738 2024-02-22 05:06:02.738 1000 STREAM 141924 9159 6029002 2024-02-22 05:07:02.753 2024-02-22 05:07:02.753 1000 STREAM 141924 16562 6035568 2024-02-22 18:47:11.447 2024-02-22 18:47:11.447 1000 FEE 435231 9335 6035569 2024-02-22 18:47:11.447 2024-02-22 18:47:11.447 9000 TIP 435231 2774 6035598 2024-02-22 18:49:27.408 2024-02-22 18:49:27.408 1000 FEE 435384 15719 6035671 2024-02-22 18:54:36.66 2024-02-22 18:54:36.66 1000 FEE 435393 8926 6035672 2024-02-22 18:54:50.677 2024-02-22 18:54:50.677 1000 FEE 435394 20987 6035673 2024-02-22 18:54:54.269 2024-02-22 18:54:54.269 100 FEE 435364 21509 6035674 2024-02-22 18:54:54.269 2024-02-22 18:54:54.269 900 TIP 435364 9351 6035678 2024-02-22 18:55:14.049 2024-02-22 18:55:14.049 1100 FEE 435327 19613 6035679 2024-02-22 18:55:14.049 2024-02-22 18:55:14.049 9900 TIP 435327 19906 6035688 2024-02-22 18:55:39.53 2024-02-22 18:55:39.53 2300 FEE 435392 20901 6035689 2024-02-22 18:55:39.53 2024-02-22 18:55:39.53 20700 TIP 435392 15491 6035722 2024-02-22 18:59:08.612 2024-02-22 18:59:08.612 2300 FEE 435399 9084 6035723 2024-02-22 18:59:08.612 2024-02-22 18:59:08.612 20700 TIP 435399 19459 6035728 2024-02-22 18:59:09.122 2024-02-22 18:59:09.122 2300 FEE 435399 18336 6035729 2024-02-22 18:59:09.122 2024-02-22 18:59:09.122 20700 TIP 435399 11192 6035730 2024-02-22 18:59:09.242 2024-02-22 18:59:09.242 2300 FEE 435399 963 6035731 2024-02-22 18:59:09.242 2024-02-22 18:59:09.242 20700 TIP 435399 10719 6035742 2024-02-22 18:59:10.545 2024-02-22 18:59:10.545 2300 FEE 435399 15367 6035743 2024-02-22 18:59:10.545 2024-02-22 18:59:10.545 20700 TIP 435399 21247 6035750 2024-02-22 18:59:11.102 2024-02-22 18:59:11.102 2300 FEE 435399 14045 6029003 2024-02-22 05:08:02.748 2024-02-22 05:08:02.748 1000 STREAM 141924 16406 6029146 2024-02-22 05:40:03.176 2024-02-22 05:40:03.176 1000 STREAM 141924 19403 6029156 2024-02-22 05:41:03.178 2024-02-22 05:41:03.178 1000 STREAM 141924 7425 6029159 2024-02-22 05:42:03.192 2024-02-22 05:42:03.192 1000 STREAM 141924 5806 6029166 2024-02-22 05:43:03.212 2024-02-22 05:43:03.212 1000 STREAM 141924 2088 6029174 2024-02-22 05:45:03.268 2024-02-22 05:45:03.268 1000 STREAM 141924 5809 6029206 2024-02-22 05:55:03.676 2024-02-22 05:55:03.676 1000 STREAM 141924 12102 6029241 2024-02-22 05:59:03.725 2024-02-22 05:59:03.725 1000 STREAM 141924 654 6029248 2024-02-22 06:00:03.899 2024-02-22 06:00:03.899 1000 STREAM 141924 19281 6029274 2024-02-22 06:03:03.778 2024-02-22 06:03:03.778 1000 STREAM 141924 6149 6029277 2024-02-22 06:04:03.786 2024-02-22 06:04:03.786 1000 STREAM 141924 18772 6029289 2024-02-22 06:07:03.811 2024-02-22 06:07:03.811 1000 STREAM 141924 7966 6029296 2024-02-22 06:09:03.832 2024-02-22 06:09:03.832 1000 STREAM 141924 19837 6029333 2024-02-22 06:19:03.96 2024-02-22 06:19:03.96 1000 STREAM 141924 18932 6029359 2024-02-22 06:22:03.987 2024-02-22 06:22:03.987 1000 STREAM 141924 21573 6029505 2024-02-22 06:25:04.016 2024-02-22 06:25:04.016 1000 STREAM 141924 698 6029509 2024-02-22 06:26:04.04 2024-02-22 06:26:04.04 1000 STREAM 141924 9242 6029510 2024-02-22 06:27:04.038 2024-02-22 06:27:04.038 1000 STREAM 141924 4167 6029511 2024-02-22 06:28:04.036 2024-02-22 06:28:04.036 1000 STREAM 141924 4059 6029513 2024-02-22 06:30:04.086 2024-02-22 06:30:04.086 1000 STREAM 141924 18368 6029514 2024-02-22 06:31:04.059 2024-02-22 06:31:04.059 1000 STREAM 141924 1006 6029517 2024-02-22 06:32:04.075 2024-02-22 06:32:04.075 1000 STREAM 141924 15200 6029519 2024-02-22 06:33:04.076 2024-02-22 06:33:04.076 1000 STREAM 141924 1552 6029529 2024-02-22 06:35:04.094 2024-02-22 06:35:04.094 1000 STREAM 141924 1130 6029535 2024-02-22 06:37:04.103 2024-02-22 06:37:04.103 1000 STREAM 141924 21212 6029539 2024-02-22 06:40:04.135 2024-02-22 06:40:04.135 1000 STREAM 141924 16747 6029540 2024-02-22 06:41:04.133 2024-02-22 06:41:04.133 1000 STREAM 141924 714 6029549 2024-02-22 06:45:04.172 2024-02-22 06:45:04.172 1000 STREAM 141924 21430 6029570 2024-02-22 06:49:04.176 2024-02-22 06:49:04.176 1000 STREAM 141924 21418 6029576 2024-02-22 06:51:04.187 2024-02-22 06:51:04.187 1000 STREAM 141924 4763 6029604 2024-02-22 06:55:04.215 2024-02-22 06:55:04.215 1000 STREAM 141924 9107 6029625 2024-02-22 06:59:04.238 2024-02-22 06:59:04.238 1000 STREAM 141924 19911 6029627 2024-02-22 07:00:04.289 2024-02-22 07:00:04.289 1000 STREAM 141924 929 6029676 2024-02-22 07:15:04.387 2024-02-22 07:15:04.387 1000 STREAM 141924 21103 6029682 2024-02-22 07:17:04.408 2024-02-22 07:17:04.408 1000 STREAM 141924 19352 6029689 2024-02-22 07:20:04.486 2024-02-22 07:20:04.486 1000 STREAM 141924 17166 6029691 2024-02-22 07:22:04.469 2024-02-22 07:22:04.469 1000 STREAM 141924 21104 6029695 2024-02-22 07:24:04.493 2024-02-22 07:24:04.493 1000 STREAM 141924 19524 6029009 2024-02-22 05:09:02.893 2024-02-22 05:09:02.893 1000 STREAM 141924 21379 6029033 2024-02-22 05:12:02.889 2024-02-22 05:12:02.889 1000 STREAM 141924 19018 6029039 2024-02-22 05:13:02.901 2024-02-22 05:13:02.901 1000 STREAM 141924 21342 6029046 2024-02-22 05:14:02.908 2024-02-22 05:14:02.908 1000 STREAM 141924 16948 6029050 2024-02-22 05:15:02.92 2024-02-22 05:15:02.92 1000 STREAM 141924 11192 6029071 2024-02-22 05:18:02.952 2024-02-22 05:18:02.952 1000 STREAM 141924 3353 6029073 2024-02-22 05:20:02.958 2024-02-22 05:20:02.958 1000 STREAM 141924 6229 6029118 2024-02-22 05:31:03.067 2024-02-22 05:31:03.067 1000 STREAM 141924 18945 6035574 2024-02-22 18:48:03.155 2024-02-22 18:48:03.155 1000 STREAM 141924 1000 6035597 2024-02-22 18:49:03.157 2024-02-22 18:49:03.157 1000 STREAM 141924 18139 6038206 2024-02-22 23:36:02.976 2024-02-22 23:36:02.976 1000 STREAM 141924 21138 6038210 2024-02-22 23:38:02.981 2024-02-22 23:38:02.981 1000 STREAM 141924 14650 6038211 2024-02-22 23:39:02.994 2024-02-22 23:39:02.994 1000 STREAM 141924 19905 6038215 2024-02-22 23:41:02.992 2024-02-22 23:41:02.992 1000 STREAM 141924 8245 6038223 2024-02-22 23:44:03.011 2024-02-22 23:44:03.011 1000 STREAM 141924 18154 6038236 2024-02-22 23:45:03.004 2024-02-22 23:45:03.004 1000 STREAM 141924 11144 6038245 2024-02-22 23:46:02.985 2024-02-22 23:46:02.985 1000 STREAM 141924 20500 6038256 2024-02-22 23:49:03.045 2024-02-22 23:49:03.045 1000 STREAM 141924 21416 6038257 2024-02-22 23:50:03.077 2024-02-22 23:50:03.077 1000 STREAM 141924 16679 6038307 2024-02-22 23:56:03.078 2024-02-22 23:56:03.078 1000 STREAM 141924 20246 6038312 2024-02-22 23:58:03.106 2024-02-22 23:58:03.106 1000 STREAM 141924 2206 6038337 2024-02-23 00:00:03.172 2024-02-23 00:00:03.172 1000 STREAM 141924 17673 6038393 2024-02-23 00:03:03.15 2024-02-23 00:03:03.15 1000 STREAM 141924 18351 6038404 2024-02-23 00:05:03.143 2024-02-23 00:05:03.143 1000 STREAM 141924 18448 6038410 2024-02-23 00:06:03.178 2024-02-23 00:06:03.178 1000 STREAM 141924 8945 6038429 2024-02-23 00:08:03.196 2024-02-23 00:08:03.196 1000 STREAM 141924 19303 6038433 2024-02-23 00:10:03.265 2024-02-23 00:10:03.265 1000 STREAM 141924 10484 6038434 2024-02-23 00:11:03.23 2024-02-23 00:11:03.23 1000 STREAM 141924 10979 6038467 2024-02-23 00:13:03.253 2024-02-23 00:13:03.253 1000 STREAM 141924 10719 6038534 2024-02-23 00:15:03.26 2024-02-23 00:15:03.26 1000 STREAM 141924 13378 6038543 2024-02-23 00:16:03.268 2024-02-23 00:16:03.268 1000 STREAM 141924 5500 6038550 2024-02-23 00:18:03.279 2024-02-23 00:18:03.279 1000 STREAM 141924 18188 6038555 2024-02-23 00:19:03.294 2024-02-23 00:19:03.294 1000 STREAM 141924 9333 6038571 2024-02-23 00:23:03.32 2024-02-23 00:23:03.32 1000 STREAM 141924 20745 6038573 2024-02-23 00:24:03.329 2024-02-23 00:24:03.329 1000 STREAM 141924 21145 6038592 2024-02-23 00:26:03.366 2024-02-23 00:26:03.366 1000 STREAM 141924 16282 6038625 2024-02-23 00:27:03.374 2024-02-23 00:27:03.374 1000 STREAM 141924 17693 6038670 2024-02-23 00:32:03.428 2024-02-23 00:32:03.428 1000 STREAM 141924 8385 6038687 2024-02-23 00:36:03.476 2024-02-23 00:36:03.476 1000 STREAM 141924 1136 6038691 2024-02-23 00:37:03.47 2024-02-23 00:37:03.47 1000 STREAM 141924 1244 6038718 2024-02-23 00:38:03.453 2024-02-23 00:38:03.453 1000 STREAM 141924 2293 6038719 2024-02-23 00:39:03.49 2024-02-23 00:39:03.49 1000 STREAM 141924 18396 6038721 2024-02-23 00:40:03.493 2024-02-23 00:40:03.493 1000 STREAM 141924 19826 6038723 2024-02-23 00:42:03.49 2024-02-23 00:42:03.49 1000 STREAM 141924 3745 6038725 2024-02-23 00:44:03.534 2024-02-23 00:44:03.534 1000 STREAM 141924 7376 6038748 2024-02-23 00:48:03.561 2024-02-23 00:48:03.561 1000 STREAM 141924 19902 6038766 2024-02-23 00:51:03.584 2024-02-23 00:51:03.584 1000 STREAM 141924 18274 6038774 2024-02-23 00:53:03.598 2024-02-23 00:53:03.598 1000 STREAM 141924 2773 6038787 2024-02-23 00:55:03.601 2024-02-23 00:55:03.601 1000 STREAM 141924 14308 6038790 2024-02-23 00:57:03.61 2024-02-23 00:57:03.61 1000 STREAM 141924 12277 6038798 2024-02-23 00:58:03.62 2024-02-23 00:58:03.62 1000 STREAM 141924 992 6038806 2024-02-23 01:01:03.645 2024-02-23 01:01:03.645 1000 STREAM 141924 21291 6038815 2024-02-23 01:03:03.679 2024-02-23 01:03:03.679 1000 STREAM 141924 21503 6038825 2024-02-23 01:06:03.676 2024-02-23 01:06:03.676 1000 STREAM 141924 13216 6038828 2024-02-23 01:07:03.651 2024-02-23 01:07:03.651 1000 STREAM 141924 7809 6038830 2024-02-23 01:08:03.676 2024-02-23 01:08:03.676 1000 STREAM 141924 18529 6038831 2024-02-23 01:09:03.662 2024-02-23 01:09:03.662 1000 STREAM 141924 5160 6038833 2024-02-23 01:10:03.681 2024-02-23 01:10:03.681 1000 STREAM 141924 11776 6038842 2024-02-23 01:11:03.681 2024-02-23 01:11:03.681 1000 STREAM 141924 12921 6038863 2024-02-23 01:12:03.698 2024-02-23 01:12:03.698 1000 STREAM 141924 20990 6038868 2024-02-23 01:13:03.712 2024-02-23 01:13:03.712 1000 STREAM 141924 981 6038885 2024-02-23 01:15:03.723 2024-02-23 01:15:03.723 1000 STREAM 141924 11996 6038887 2024-02-23 01:17:03.781 2024-02-23 01:17:03.781 1000 STREAM 141924 19732 6029017 2024-02-22 05:09:58.13 2024-02-22 05:09:58.13 7100 FEE 434488 18526 6029018 2024-02-22 05:09:58.13 2024-02-22 05:09:58.13 63900 TIP 434488 18380 6029024 2024-02-22 05:10:15.851 2024-02-22 05:10:15.851 1100 FEE 434471 19924 6029025 2024-02-22 05:10:15.851 2024-02-22 05:10:15.851 9900 TIP 434471 18816 6029029 2024-02-22 05:11:29.003 2024-02-22 05:11:29.003 1000 FEE 434563 17227 6029069 2024-02-22 05:17:20.954 2024-02-22 05:17:20.954 1100 FEE 60799 20751 6029070 2024-02-22 05:17:20.954 2024-02-22 05:17:20.954 9900 TIP 60799 9036 6029080 2024-02-22 05:22:21.455 2024-02-22 05:22:21.455 1000 FEE 434571 17552 6029100 2024-02-22 05:26:24.356 2024-02-22 05:26:24.356 2100 FEE 434536 18817 6029101 2024-02-22 05:26:24.356 2024-02-22 05:26:24.356 18900 TIP 434536 2224 6029109 2024-02-22 05:28:08.33 2024-02-22 05:28:08.33 2100 FEE 434299 20243 6029110 2024-02-22 05:28:08.33 2024-02-22 05:28:08.33 18900 TIP 434299 21624 6029114 2024-02-22 05:30:20.822 2024-02-22 05:30:20.822 2100 FEE 434573 2206 6029115 2024-02-22 05:30:20.822 2024-02-22 05:30:20.822 18900 TIP 434573 12057 6029142 2024-02-22 05:38:21.23 2024-02-22 05:38:21.23 100 FEE 428997 15088 6029143 2024-02-22 05:38:21.23 2024-02-22 05:38:21.23 900 TIP 428997 9184 6029149 2024-02-22 05:40:48.759 2024-02-22 05:40:48.759 2100 FEE 434488 14449 6029150 2024-02-22 05:40:48.759 2024-02-22 05:40:48.759 18900 TIP 434488 20129 6029179 2024-02-22 05:47:25.063 2024-02-22 05:47:25.063 7700 FEE 427186 2013 6029180 2024-02-22 05:47:25.063 2024-02-22 05:47:25.063 69300 TIP 427186 18412 6029205 2024-02-22 05:54:05.772 2024-02-22 05:54:05.772 0 FEE 434587 20490 6029215 2024-02-22 05:57:15.181 2024-02-22 05:57:15.181 3300 FEE 434535 762 6029216 2024-02-22 05:57:15.181 2024-02-22 05:57:15.181 29700 TIP 434535 12951 6029237 2024-02-22 05:59:00.64 2024-02-22 05:59:00.64 3300 FEE 434465 11165 6029238 2024-02-22 05:59:00.64 2024-02-22 05:59:00.64 29700 TIP 434465 16193 6029259 2024-02-22 06:01:22.998 2024-02-22 06:01:22.998 1000 FEE 434590 15978 6029286 2024-02-22 06:06:14.351 2024-02-22 06:06:14.351 1000 FEE 434597 794 6029353 2024-02-22 06:21:59.975 2024-02-22 06:21:59.975 1000 FEE 434440 17001 6029354 2024-02-22 06:21:59.975 2024-02-22 06:21:59.975 9000 TIP 434440 4984 6029405 2024-02-22 06:23:33.623 2024-02-22 06:23:33.623 1000 FEE 434583 5455 6029406 2024-02-22 06:23:33.623 2024-02-22 06:23:33.623 9000 TIP 434583 4984 6029429 2024-02-22 06:23:39.994 2024-02-22 06:23:39.994 1000 FEE 434465 19031 6029430 2024-02-22 06:23:39.994 2024-02-22 06:23:39.994 9000 TIP 434465 15337 6029457 2024-02-22 06:23:50.153 2024-02-22 06:23:50.153 1000 FEE 434352 19690 6029458 2024-02-22 06:23:50.153 2024-02-22 06:23:50.153 9000 TIP 434352 19154 6029465 2024-02-22 06:23:54.651 2024-02-22 06:23:54.651 1000 FEE 434328 6260 6029466 2024-02-22 06:23:54.651 2024-02-22 06:23:54.651 9000 TIP 434328 1483 6029491 2024-02-22 06:24:01.231 2024-02-22 06:24:01.231 1000 FEE 434277 20562 6029492 2024-02-22 06:24:01.231 2024-02-22 06:24:01.231 9000 TIP 434277 3656 6029493 2024-02-22 06:24:01.477 2024-02-22 06:24:01.477 1000 FEE 434271 18243 6029494 2024-02-22 06:24:01.477 2024-02-22 06:24:01.477 9000 TIP 434271 16954 6029031 2024-02-22 05:11:52.194 2024-02-22 05:11:52.194 2100 FEE 434541 902 6029032 2024-02-22 05:11:52.194 2024-02-22 05:11:52.194 18900 TIP 434541 6136 6029042 2024-02-22 05:13:27.751 2024-02-22 05:13:27.751 1100 FEE 434385 20073 6029043 2024-02-22 05:13:27.751 2024-02-22 05:13:27.751 9900 TIP 434385 4048 6029044 2024-02-22 05:13:38.758 2024-02-22 05:13:38.758 1100 FEE 434485 672 6029045 2024-02-22 05:13:38.758 2024-02-22 05:13:38.758 9900 TIP 434485 14122 6029047 2024-02-22 05:14:17.439 2024-02-22 05:14:17.439 1000 FEE 434566 20220 6029057 2024-02-22 05:15:17.62 2024-02-22 05:15:17.62 100 FEE 434347 3686 6029058 2024-02-22 05:15:17.62 2024-02-22 05:15:17.62 900 TIP 434347 17708 6029077 2024-02-22 05:21:14.465 2024-02-22 05:21:14.465 2100 FEE 434410 7998 6029078 2024-02-22 05:21:14.465 2024-02-22 05:21:14.465 18900 TIP 434410 1769 6029085 2024-02-22 05:22:31.03 2024-02-22 05:22:31.03 2100 FEE 434437 18817 6029086 2024-02-22 05:22:31.03 2024-02-22 05:22:31.03 18900 TIP 434437 17693 6029106 2024-02-22 05:27:22.807 2024-02-22 05:27:22.807 2100 FEE 434396 2176 6029107 2024-02-22 05:27:22.807 2024-02-22 05:27:22.807 18900 TIP 434396 21472 6029128 2024-02-22 05:35:58.899 2024-02-22 05:35:58.899 0 FEE 434575 21427 6029133 2024-02-22 05:36:42.729 2024-02-22 05:36:42.729 2100 FEE 434498 1658 6029134 2024-02-22 05:36:42.729 2024-02-22 05:36:42.729 18900 TIP 434498 20280 6029147 2024-02-22 05:40:07.191 2024-02-22 05:40:07.191 100 FEE 433943 664 6029148 2024-02-22 05:40:07.191 2024-02-22 05:40:07.191 900 TIP 433943 17095 6029160 2024-02-22 05:42:32.474 2024-02-22 05:42:32.474 2100 FEE 434560 2367 6029161 2024-02-22 05:42:32.474 2024-02-22 05:42:32.474 18900 TIP 434560 21521 6029164 2024-02-22 05:42:43.349 2024-02-22 05:42:43.349 1000 FEE 434577 19905 6029165 2024-02-22 05:42:43.349 2024-02-22 05:42:43.349 9000 TIP 434577 814 6029175 2024-02-22 05:46:02.072 2024-02-22 05:46:02.072 1000 FEE 434584 5904 6029196 2024-02-22 05:52:44.063 2024-02-22 05:52:44.063 10000 FEE 434271 1717 6029197 2024-02-22 05:52:44.063 2024-02-22 05:52:44.063 90000 TIP 434271 18174 6029202 2024-02-22 05:53:54.204 2024-02-22 05:53:54.204 10000 FEE 434082 678 6029203 2024-02-22 05:53:54.204 2024-02-22 05:53:54.204 90000 TIP 434082 6360 6029249 2024-02-22 06:00:05.416 2024-02-22 06:00:05.416 3300 FEE 434565 698 6029250 2024-02-22 06:00:05.416 2024-02-22 06:00:05.416 29700 TIP 434565 16680 6029264 2024-02-22 06:01:44.105 2024-02-22 06:01:44.105 21000 DONT_LIKE_THIS 434529 3656 6029267 2024-02-22 06:01:46.254 2024-02-22 06:01:46.254 1000 FEE 434565 21455 6029268 2024-02-22 06:01:46.254 2024-02-22 06:01:46.254 9000 TIP 434565 738 6029281 2024-02-22 06:05:08.059 2024-02-22 06:05:08.059 100000 FEE 434595 9982 6029302 2024-02-22 06:10:27.197 2024-02-22 06:10:27.197 1000 FEE 434601 18409 6029303 2024-02-22 06:10:33.973 2024-02-22 06:10:33.973 1000 FEE 434602 14202 6029312 2024-02-22 06:14:21.255 2024-02-22 06:14:21.255 1000 FEE 434440 1039 6029313 2024-02-22 06:14:21.255 2024-02-22 06:14:21.255 9000 TIP 434440 2088 6029357 2024-02-22 06:22:01.072 2024-02-22 06:22:01.072 1000 FEE 434440 6202 6029358 2024-02-22 06:22:01.072 2024-02-22 06:22:01.072 9000 TIP 434440 17226 6029364 2024-02-22 06:22:15.799 2024-02-22 06:22:15.799 1000 FEE 433844 12289 6029365 2024-02-22 06:22:15.799 2024-02-22 06:22:15.799 9000 TIP 433844 13553 6029407 2024-02-22 06:23:33.941 2024-02-22 06:23:33.941 1000 FEE 434577 2016 6029408 2024-02-22 06:23:33.941 2024-02-22 06:23:33.941 9000 TIP 434577 4487 6029459 2024-02-22 06:23:51.15 2024-02-22 06:23:51.15 1000 FEE 434350 21159 6029460 2024-02-22 06:23:51.15 2024-02-22 06:23:51.15 9000 TIP 434350 12708 6029467 2024-02-22 06:23:55.085 2024-02-22 06:23:55.085 1000 FEE 434321 2013 6029468 2024-02-22 06:23:55.085 2024-02-22 06:23:55.085 9000 TIP 434321 3729 6029473 2024-02-22 06:23:56.05 2024-02-22 06:23:56.05 1000 FEE 434301 18637 6029076 2024-02-22 05:21:03.751 2024-02-22 05:21:03.751 1000 STREAM 141924 16988 6029079 2024-02-22 05:22:03.717 2024-02-22 05:22:03.717 1000 STREAM 141924 20377 6029098 2024-02-22 05:25:03.736 2024-02-22 05:25:03.736 1000 STREAM 141924 1801 6029099 2024-02-22 05:26:03.737 2024-02-22 05:26:03.737 1000 STREAM 141924 2459 6029108 2024-02-22 05:28:03.769 2024-02-22 05:28:03.769 1000 STREAM 141924 15049 6029111 2024-02-22 05:29:03.781 2024-02-22 05:29:03.781 1000 STREAM 141924 11698 6029112 2024-02-22 05:30:03.827 2024-02-22 05:30:03.827 1000 STREAM 141924 4459 6029129 2024-02-22 05:36:03.857 2024-02-22 05:36:03.857 1000 STREAM 141924 925 6029141 2024-02-22 05:38:03.872 2024-02-22 05:38:03.872 1000 STREAM 141924 16513 6035595 2024-02-22 18:48:28.481 2024-02-22 18:48:28.481 9000 TIP 435381 10352 6035604 2024-02-22 18:49:42.985 2024-02-22 18:49:42.985 100000 FEE 434124 2390 6035605 2024-02-22 18:49:42.985 2024-02-22 18:49:42.985 900000 TIP 434124 8508 6035638 2024-02-22 18:51:04.483 2024-02-22 18:51:04.483 2300 FEE 435377 10554 6035639 2024-02-22 18:51:04.483 2024-02-22 18:51:04.483 20700 TIP 435377 2775 6035642 2024-02-22 18:51:05.74 2024-02-22 18:51:05.74 1000 FEE 435386 2576 6035643 2024-02-22 18:51:05.74 2024-02-22 18:51:05.74 9000 TIP 435386 6041 6035644 2024-02-22 18:51:26.704 2024-02-22 18:51:26.704 3300 FEE 435380 21239 6035645 2024-02-22 18:51:26.704 2024-02-22 18:51:26.704 29700 TIP 435380 1298 6035646 2024-02-22 18:51:28.054 2024-02-22 18:51:28.054 100000 FEE 435389 8544 6035667 2024-02-22 18:54:10.738 2024-02-22 18:54:10.738 1000 FEE 435391 634 6035669 2024-02-22 18:54:34.233 2024-02-22 18:54:34.233 100 FEE 435355 1468 6035670 2024-02-22 18:54:34.233 2024-02-22 18:54:34.233 900 TIP 435355 20826 6035706 2024-02-22 18:58:33.026 2024-02-22 18:58:33.026 1000 FEE 435398 2508 6035712 2024-02-22 18:59:04.921 2024-02-22 18:59:04.921 2100 FEE 435224 6393 6035713 2024-02-22 18:59:04.921 2024-02-22 18:59:04.921 18900 TIP 435224 18344 6035740 2024-02-22 18:59:10.432 2024-02-22 18:59:10.432 2300 FEE 435399 16267 6035741 2024-02-22 18:59:10.432 2024-02-22 18:59:10.432 20700 TIP 435399 18704 6035744 2024-02-22 18:59:10.683 2024-02-22 18:59:10.683 2300 FEE 435399 21563 6035745 2024-02-22 18:59:10.683 2024-02-22 18:59:10.683 20700 TIP 435399 20251 6035767 2024-02-22 18:59:26.628 2024-02-22 18:59:26.628 4600 FEE 435399 21573 6035768 2024-02-22 18:59:26.628 2024-02-22 18:59:26.628 41400 TIP 435399 18507 6035771 2024-02-22 18:59:27.607 2024-02-22 18:59:27.607 4600 FEE 435399 19531 6035772 2024-02-22 18:59:27.607 2024-02-22 18:59:27.607 41400 TIP 435399 20370 6035813 2024-02-22 19:07:17.153 2024-02-22 19:07:17.153 1000 FEE 435328 8870 6035814 2024-02-22 19:07:17.153 2024-02-22 19:07:17.153 9000 TIP 435328 19888 6035817 2024-02-22 19:07:19.24 2024-02-22 19:07:19.24 1000 FEE 435242 6616 6035818 2024-02-22 19:07:19.24 2024-02-22 19:07:19.24 9000 TIP 435242 17365 6035829 2024-02-22 19:08:19.912 2024-02-22 19:08:19.912 10000 FEE 435412 20439 6035831 2024-02-22 19:09:00.416 2024-02-22 19:09:00.416 1000 FEE 435415 10554 6035847 2024-02-22 19:11:22.066 2024-02-22 19:11:22.066 83000 DONT_LIKE_THIS 435414 11714 6035848 2024-02-22 19:11:22.567 2024-02-22 19:11:22.567 5000 FEE 434424 5809 6035849 2024-02-22 19:11:22.567 2024-02-22 19:11:22.567 45000 TIP 434424 1617 6035850 2024-02-22 19:11:43.712 2024-02-22 19:11:43.712 1600 FEE 435327 1438 6035851 2024-02-22 19:11:43.712 2024-02-22 19:11:43.712 14400 TIP 435327 14225 6035888 2024-02-22 19:15:10.008 2024-02-22 19:15:10.008 0 FEE 435417 19352 6035898 2024-02-22 19:15:15.617 2024-02-22 19:15:15.617 900 FEE 435375 5794 6035899 2024-02-22 19:15:15.617 2024-02-22 19:15:15.617 8100 TIP 435375 19992 6035901 2024-02-22 19:15:54.156 2024-02-22 19:15:54.156 3000 FEE 435136 21342 6035902 2024-02-22 19:15:54.156 2024-02-22 19:15:54.156 27000 TIP 435136 5519 6035919 2024-02-22 19:19:02.987 2024-02-22 19:19:02.987 21000 DONT_LIKE_THIS 435098 21291 6035928 2024-02-22 19:20:46.843 2024-02-22 19:20:46.843 1000 FEE 435425 5017 6035931 2024-02-22 19:20:53.532 2024-02-22 19:20:53.532 100000 FEE 435426 21172 6035939 2024-02-22 19:22:33.419 2024-02-22 19:22:33.419 8300 FEE 435425 5520 6035940 2024-02-22 19:22:33.419 2024-02-22 19:22:33.419 74700 TIP 435425 2123 6035962 2024-02-22 19:24:22.478 2024-02-22 19:24:22.478 2100 FEE 435327 716 6035963 2024-02-22 19:24:22.478 2024-02-22 19:24:22.478 18900 TIP 435327 19458 6035964 2024-02-22 19:24:27.857 2024-02-22 19:24:27.857 10000 FEE 435433 16154 6035969 2024-02-22 19:24:45.052 2024-02-22 19:24:45.052 2100 FEE 435402 20624 6035970 2024-02-22 19:24:45.052 2024-02-22 19:24:45.052 18900 TIP 435402 19535 6035985 2024-02-22 19:26:26.671 2024-02-22 19:26:26.671 1100 FEE 435340 18403 6035986 2024-02-22 19:26:26.671 2024-02-22 19:26:26.671 9900 TIP 435340 19938 6036016 2024-02-22 19:32:39.476 2024-02-22 19:32:39.476 100 FEE 435180 4166 6036017 2024-02-22 19:32:39.476 2024-02-22 19:32:39.476 900 TIP 435180 1833 6036032 2024-02-22 19:32:44.619 2024-02-22 19:32:44.619 100 FEE 435180 18321 6036033 2024-02-22 19:32:44.619 2024-02-22 19:32:44.619 900 TIP 435180 21424 6036050 2024-02-22 19:33:26.319 2024-02-22 19:33:26.319 1000 FEE 435444 1012 6036051 2024-02-22 19:33:29.99 2024-02-22 19:33:29.99 1000 FEE 435345 18225 6036052 2024-02-22 19:33:29.99 2024-02-22 19:33:29.99 9000 TIP 435345 997 6036088 2024-02-22 19:38:08.375 2024-02-22 19:38:08.375 100 FEE 435189 20871 6036089 2024-02-22 19:38:08.375 2024-02-22 19:38:08.375 900 TIP 435189 21352 6036136 2024-02-22 19:41:39.151 2024-02-22 19:41:39.151 1000 FEE 435450 6058 6036142 2024-02-22 19:42:35.671 2024-02-22 19:42:35.671 100 FEE 435070 8841 6036143 2024-02-22 19:42:35.671 2024-02-22 19:42:35.671 900 TIP 435070 19034 6036145 2024-02-22 19:43:16.954 2024-02-22 19:43:16.954 4000 FEE 435328 8095 6036146 2024-02-22 19:43:16.954 2024-02-22 19:43:16.954 36000 TIP 435328 21521 6036151 2024-02-22 19:43:18.503 2024-02-22 19:43:18.503 4000 FEE 435217 15147 6036152 2024-02-22 19:43:18.503 2024-02-22 19:43:18.503 36000 TIP 435217 18040 6036183 2024-02-22 19:48:01.27 2024-02-22 19:48:01.27 2300 FEE 435453 17221 6036184 2024-02-22 19:48:01.27 2024-02-22 19:48:01.27 20700 TIP 435453 10013 6036196 2024-02-22 19:48:49.773 2024-02-22 19:48:49.773 1000 FEE 435460 2963 6036198 2024-02-22 19:49:08.012 2024-02-22 19:49:08.012 1000 FEE 435461 20681 6029084 2024-02-22 05:22:30.464 2024-02-22 05:22:30.464 18900 TIP 434513 16485 6029104 2024-02-22 05:26:46.698 2024-02-22 05:26:46.698 1000 FEE 434573 2000 6029125 2024-02-22 05:35:08.696 2024-02-22 05:35:08.696 1000 FEE 434575 5752 6029221 2024-02-22 05:57:33.298 2024-02-22 05:57:33.298 3300 FEE 434481 19398 6029222 2024-02-22 05:57:33.298 2024-02-22 05:57:33.298 29700 TIP 434481 1120 6029223 2024-02-22 05:57:33.535 2024-02-22 05:57:33.535 3300 FEE 434481 21274 6029224 2024-02-22 05:57:33.535 2024-02-22 05:57:33.535 29700 TIP 434481 11561 6029231 2024-02-22 05:57:39.545 2024-02-22 05:57:39.545 1300 FEE 434481 18460 6029232 2024-02-22 05:57:39.545 2024-02-22 05:57:39.545 11700 TIP 434481 5757 6029246 2024-02-22 05:59:15.951 2024-02-22 05:59:15.951 200 FEE 434465 1845 6029247 2024-02-22 05:59:15.951 2024-02-22 05:59:15.951 1800 TIP 434465 16177 6029257 2024-02-22 06:01:10.76 2024-02-22 06:01:10.76 2100 FEE 434539 805 6029258 2024-02-22 06:01:10.76 2024-02-22 06:01:10.76 18900 TIP 434539 18264 6029265 2024-02-22 06:01:44.905 2024-02-22 06:01:44.905 1000 FEE 434590 5085 6029266 2024-02-22 06:01:44.905 2024-02-22 06:01:44.905 9000 TIP 434590 20036 6029270 2024-02-22 06:02:15.56 2024-02-22 06:02:15.56 1000 FEE 434551 2088 6029271 2024-02-22 06:02:15.56 2024-02-22 06:02:15.56 9000 TIP 434551 5809 6029295 2024-02-22 06:08:21.242 2024-02-22 06:08:21.242 1000 FEE 434600 16284 6029310 2024-02-22 06:13:42.353 2024-02-22 06:13:42.353 1000 FEE 434604 8242 6029316 2024-02-22 06:15:18.244 2024-02-22 06:15:18.244 1000 FEE 434482 848 6029317 2024-02-22 06:15:18.244 2024-02-22 06:15:18.244 9000 TIP 434482 20117 6029362 2024-02-22 06:22:10.7 2024-02-22 06:22:10.7 1000 FEE 434500 17042 6029363 2024-02-22 06:22:10.7 2024-02-22 06:22:10.7 9000 TIP 434500 2525 6029379 2024-02-22 06:23:20.416 2024-02-22 06:23:20.416 1000 FEE 434410 1428 6029380 2024-02-22 06:23:20.416 2024-02-22 06:23:20.416 9000 TIP 434410 759 6029395 2024-02-22 06:23:28.926 2024-02-22 06:23:28.926 1000 FEE 433688 18372 6029396 2024-02-22 06:23:28.926 2024-02-22 06:23:28.926 9000 TIP 433688 21541 6029401 2024-02-22 06:23:32.643 2024-02-22 06:23:32.643 1000 FEE 434595 5791 6029402 2024-02-22 06:23:32.643 2024-02-22 06:23:32.643 9000 TIP 434595 8508 6029427 2024-02-22 06:23:38.99 2024-02-22 06:23:38.99 1000 FEE 434481 1130 6029428 2024-02-22 06:23:38.99 2024-02-22 06:23:38.99 9000 TIP 434481 2583 6029437 2024-02-22 06:23:43.966 2024-02-22 06:23:43.966 1000 FEE 434445 9669 6029438 2024-02-22 06:23:43.966 2024-02-22 06:23:43.966 9000 TIP 434445 2942 6029443 2024-02-22 06:23:46.042 2024-02-22 06:23:46.042 1000 FEE 434424 4323 6029444 2024-02-22 06:23:46.042 2024-02-22 06:23:46.042 9000 TIP 434424 15491 6029451 2024-02-22 06:23:48.333 2024-02-22 06:23:48.333 1000 FEE 434378 11144 6029452 2024-02-22 06:23:48.333 2024-02-22 06:23:48.333 9000 TIP 434378 2123 6029463 2024-02-22 06:23:51.934 2024-02-22 06:23:51.934 1000 FEE 434332 1401 6029464 2024-02-22 06:23:51.934 2024-02-22 06:23:51.934 9000 TIP 434332 20581 6029477 2024-02-22 06:23:57.318 2024-02-22 06:23:57.318 1000 FEE 434297 9261 6029478 2024-02-22 06:23:57.318 2024-02-22 06:23:57.318 9000 TIP 434297 13100 6029487 2024-02-22 06:24:00.296 2024-02-22 06:24:00.296 1000 FEE 434283 21369 6029488 2024-02-22 06:24:00.296 2024-02-22 06:24:00.296 9000 TIP 434283 18658 6029538 2024-02-22 06:39:12.994 2024-02-22 06:39:12.994 1000 FEE 434617 19902 6029564 2024-02-22 06:47:36.229 2024-02-22 06:47:36.229 1000 FEE 434622 15282 6029571 2024-02-22 06:50:00.849 2024-02-22 06:50:00.849 10000 FEE 434619 20246 6029572 2024-02-22 06:50:00.849 2024-02-22 06:50:00.849 90000 TIP 434619 5597 6029592 2024-02-22 06:54:27.182 2024-02-22 06:54:27.182 1000 FEE 434556 4167 6029593 2024-02-22 06:54:27.182 2024-02-22 06:54:27.182 9000 TIP 434556 1286 6029600 2024-02-22 06:54:47.332 2024-02-22 06:54:47.332 1000 FEE 434625 11523 6029601 2024-02-22 06:54:47.332 2024-02-22 06:54:47.332 9000 TIP 434625 16357 6029630 2024-02-22 07:00:15.947 2024-02-22 07:00:15.947 10000 FEE 433740 1673 6029631 2024-02-22 07:00:15.947 2024-02-22 07:00:15.947 90000 TIP 433740 20624 6029652 2024-02-22 07:08:29.621 2024-02-22 07:08:29.621 2100 FEE 434606 19878 6029653 2024-02-22 07:08:29.621 2024-02-22 07:08:29.621 18900 TIP 434606 21083 6029670 2024-02-22 07:14:47.514 2024-02-22 07:14:47.514 1000 FEE 433943 18170 6029671 2024-02-22 07:14:47.514 2024-02-22 07:14:47.514 9000 TIP 433943 18321 6029692 2024-02-22 07:22:29.597 2024-02-22 07:22:29.597 1000 FEE 434640 6616 6029696 2024-02-22 07:24:19.826 2024-02-22 07:24:19.826 100000 FEE 434641 9346 6029712 2024-02-22 07:27:40.119 2024-02-22 07:27:40.119 2100 FEE 434440 11866 6029713 2024-02-22 07:27:40.119 2024-02-22 07:27:40.119 18900 TIP 434440 11450 6029728 2024-02-22 07:27:45.826 2024-02-22 07:27:45.826 2100 FEE 434485 21044 6029729 2024-02-22 07:27:45.826 2024-02-22 07:27:45.826 18900 TIP 434485 18139 6029744 2024-02-22 07:29:16.112 2024-02-22 07:29:16.112 21000 FEE 434642 12606 6029775 2024-02-22 07:36:48.802 2024-02-22 07:36:48.802 1000 FEE 434627 756 6029776 2024-02-22 07:36:48.802 2024-02-22 07:36:48.802 9000 TIP 434627 15119 6029803 2024-02-22 07:41:51.542 2024-02-22 07:41:51.542 0 FEE 434650 21338 6029828 2024-02-22 07:51:53.587 2024-02-22 07:51:53.587 1000 FEE 434661 14515 6029848 2024-02-22 07:56:51.932 2024-02-22 07:56:51.932 1000 FEE 434399 1571 6029849 2024-02-22 07:56:51.932 2024-02-22 07:56:51.932 9000 TIP 434399 18816 6029891 2024-02-22 08:08:58.779 2024-02-22 08:08:58.779 2100 FEE 434099 12744 6029892 2024-02-22 08:08:58.779 2024-02-22 08:08:58.779 18900 TIP 434099 16348 6029928 2024-02-22 08:23:18.907 2024-02-22 08:23:18.907 2100 FEE 434674 21342 6029929 2024-02-22 08:23:18.907 2024-02-22 08:23:18.907 18900 TIP 434674 19785 6029940 2024-02-22 08:29:52.433 2024-02-22 08:29:52.433 2500 FEE 434582 19836 6029941 2024-02-22 08:29:52.433 2024-02-22 08:29:52.433 22500 TIP 434582 6419 6029144 2024-02-22 05:39:03.14 2024-02-22 05:39:03.14 1000 STREAM 141924 18909 6029176 2024-02-22 05:46:03.179 2024-02-22 05:46:03.179 1000 STREAM 141924 9427 6029188 2024-02-22 05:48:03.179 2024-02-22 05:48:03.179 1000 STREAM 141924 18919 6029189 2024-02-22 05:49:03.174 2024-02-22 05:49:03.174 1000 STREAM 141924 1576 6029194 2024-02-22 05:51:03.198 2024-02-22 05:51:03.198 1000 STREAM 141924 1224 6029198 2024-02-22 05:53:03.211 2024-02-22 05:53:03.211 1000 STREAM 141924 20433 6029207 2024-02-22 05:56:03.334 2024-02-22 05:56:03.334 1000 STREAM 141924 1631 6035608 2024-02-22 18:50:03.176 2024-02-22 18:50:03.176 1000 STREAM 141924 20439 6038275 2024-02-22 23:51:31.573 2024-02-22 23:51:31.573 18900 TIP 435505 1723 6038287 2024-02-22 23:52:08.198 2024-02-22 23:52:08.198 1000 FEE 435670 18930 6038295 2024-02-22 23:53:16.447 2024-02-22 23:53:16.447 1000 FEE 435638 1490 6038296 2024-02-22 23:53:16.447 2024-02-22 23:53:16.447 9000 TIP 435638 19043 6038300 2024-02-22 23:54:31.797 2024-02-22 23:54:31.797 0 FEE 435670 17602 6038305 2024-02-22 23:55:12.633 2024-02-22 23:55:12.633 1000 FEE 435674 6136 6038316 2024-02-22 23:58:54.303 2024-02-22 23:58:54.303 3400 FEE 435542 15697 6038317 2024-02-22 23:58:54.303 2024-02-22 23:58:54.303 30600 TIP 435542 2711 6038331 2024-02-23 00:00:02.647 2024-02-23 00:00:02.647 300 FEE 435457 20581 6038332 2024-02-23 00:00:02.647 2024-02-23 00:00:02.647 2700 TIP 435457 12049 6038338 2024-02-23 00:00:03.397 2024-02-23 00:00:03.397 300 FEE 435457 21067 6029162 2024-02-22 05:42:38.463 2024-02-22 05:42:38.463 2100 FEE 434492 2029 6029163 2024-02-22 05:42:38.463 2024-02-22 05:42:38.463 18900 TIP 434492 14255 6029167 2024-02-22 05:43:41.741 2024-02-22 05:43:41.741 1000 FEE 434310 18476 6029168 2024-02-22 05:43:41.741 2024-02-22 05:43:41.741 9000 TIP 434310 15549 6029173 2024-02-22 05:44:40.43 2024-02-22 05:44:40.43 50000 FEE 434583 20511 6029181 2024-02-22 05:47:26.281 2024-02-22 05:47:26.281 7700 FEE 427186 11866 6029182 2024-02-22 05:47:26.281 2024-02-22 05:47:26.281 69300 TIP 427186 1729 6029190 2024-02-22 05:49:04.064 2024-02-22 05:49:04.064 1000 FEE 434586 5637 6029192 2024-02-22 05:50:26.382 2024-02-22 05:50:26.382 2100 FEE 434584 5359 6029193 2024-02-22 05:50:26.382 2024-02-22 05:50:26.382 18900 TIP 434584 17166 6029201 2024-02-22 05:53:50.685 2024-02-22 05:53:50.685 1000 FEE 434587 1000 6029239 2024-02-22 05:59:00.833 2024-02-22 05:59:00.833 3300 FEE 434465 15052 6029240 2024-02-22 05:59:00.833 2024-02-22 05:59:00.833 29700 TIP 434465 16747 6029262 2024-02-22 06:01:37.578 2024-02-22 06:01:37.578 5000 FEE 434285 6041 6029263 2024-02-22 06:01:37.578 2024-02-22 06:01:37.578 45000 TIP 434285 1712 6029290 2024-02-22 06:07:28.941 2024-02-22 06:07:28.941 10000 FEE 434598 954 6029297 2024-02-22 06:09:19.18 2024-02-22 06:09:19.18 1000 DONT_LIKE_THIS 434535 21589 6029334 2024-02-22 06:19:13.532 2024-02-22 06:19:13.532 4000 FEE 434583 17147 6029335 2024-02-22 06:19:13.532 2024-02-22 06:19:13.532 36000 TIP 434583 1060 6029347 2024-02-22 06:21:55.105 2024-02-22 06:21:55.105 1000 FEE 434488 736 6029348 2024-02-22 06:21:55.105 2024-02-22 06:21:55.105 9000 TIP 434488 14255 6029360 2024-02-22 06:22:05.254 2024-02-22 06:22:05.254 1000 FEE 433828 14449 6029361 2024-02-22 06:22:05.254 2024-02-22 06:22:05.254 9000 TIP 433828 13133 6029370 2024-02-22 06:22:24.226 2024-02-22 06:22:24.226 1000 FEE 434441 1488 6029371 2024-02-22 06:22:24.226 2024-02-22 06:22:24.226 9000 TIP 434441 9843 6029377 2024-02-22 06:23:20.198 2024-02-22 06:23:20.198 1000 FEE 434410 19322 6029378 2024-02-22 06:23:20.198 2024-02-22 06:23:20.198 9000 TIP 434410 794 6029383 2024-02-22 06:23:24.799 2024-02-22 06:23:24.799 1000 FEE 434479 18945 6029384 2024-02-22 06:23:24.799 2024-02-22 06:23:24.799 9000 TIP 434479 21619 6029389 2024-02-22 06:23:26.171 2024-02-22 06:23:26.171 1000 FEE 434572 2963 6029390 2024-02-22 06:23:26.171 2024-02-22 06:23:26.171 9000 TIP 434572 17727 6029411 2024-02-22 06:23:34.546 2024-02-22 06:23:34.546 1000 FEE 434543 16965 6029412 2024-02-22 06:23:34.546 2024-02-22 06:23:34.546 9000 TIP 434543 19199 6029413 2024-02-22 06:23:34.877 2024-02-22 06:23:34.877 1000 FEE 434541 17411 6029414 2024-02-22 06:23:34.877 2024-02-22 06:23:34.877 9000 TIP 434541 5828 6029441 2024-02-22 06:23:45.646 2024-02-22 06:23:45.646 1000 FEE 434427 16816 6029442 2024-02-22 06:23:45.646 2024-02-22 06:23:45.646 9000 TIP 434427 17513 6029453 2024-02-22 06:23:49.426 2024-02-22 06:23:49.426 1000 FEE 434364 21207 6029454 2024-02-22 06:23:49.426 2024-02-22 06:23:49.426 9000 TIP 434364 8059 6029471 2024-02-22 06:23:55.784 2024-02-22 06:23:55.784 1000 FEE 434317 2347 6029472 2024-02-22 06:23:55.784 2024-02-22 06:23:55.784 9000 TIP 434317 6148 6029483 2024-02-22 06:23:58.914 2024-02-22 06:23:58.914 1000 FEE 434289 16347 6029484 2024-02-22 06:23:58.914 2024-02-22 06:23:58.914 9000 TIP 434289 1647 6029501 2024-02-22 06:24:03.401 2024-02-22 06:24:03.401 1000 FEE 434260 18830 6029502 2024-02-22 06:24:03.401 2024-02-22 06:24:03.401 9000 TIP 434260 8508 6029515 2024-02-22 06:31:09.348 2024-02-22 06:31:09.348 500 FEE 434560 19243 6029516 2024-02-22 06:31:09.348 2024-02-22 06:31:09.348 4500 TIP 434560 18667 6029520 2024-02-22 06:33:29.833 2024-02-22 06:33:29.833 1000 FEE 434612 21571 6029527 2024-02-22 06:34:35.593 2024-02-22 06:34:35.593 100000 FEE 434615 1092 6029528 2024-02-22 06:34:52.505 2024-02-22 06:34:52.505 0 FEE 434613 21119 6029533 2024-02-22 06:36:18.414 2024-02-22 06:36:18.414 2100 FEE 425712 20563 6029534 2024-02-22 06:36:18.414 2024-02-22 06:36:18.414 18900 TIP 425712 11153 6029545 2024-02-22 06:42:45.989 2024-02-22 06:42:45.989 1000 FEE 434618 20276 6029547 2024-02-22 06:43:36.214 2024-02-22 06:43:36.214 10000 FEE 434619 10270 6029550 2024-02-22 06:45:10.467 2024-02-22 06:45:10.467 1000 FEE 434620 13327 6029551 2024-02-22 06:45:16.509 2024-02-22 06:45:16.509 3000 FEE 434560 21480 6029552 2024-02-22 06:45:16.509 2024-02-22 06:45:16.509 27000 TIP 434560 21482 6029553 2024-02-22 06:45:32.008 2024-02-22 06:45:32.008 1000 FEE 434621 20849 6029562 2024-02-22 06:47:23.102 2024-02-22 06:47:23.102 1000 FEE 386196 16680 6029563 2024-02-22 06:47:23.102 2024-02-22 06:47:23.102 9000 TIP 386196 9099 6029580 2024-02-22 06:51:41.335 2024-02-22 06:51:41.335 2100 FEE 434481 1046 6029581 2024-02-22 06:51:41.335 2024-02-22 06:51:41.335 18900 TIP 434481 3456 6029589 2024-02-22 06:54:10.975 2024-02-22 06:54:10.975 1000 FEE 434535 1823 6029590 2024-02-22 06:54:10.975 2024-02-22 06:54:10.975 9000 TIP 434535 19622 6029596 2024-02-22 06:54:38.995 2024-02-22 06:54:38.995 10000 FEE 434577 20775 6029597 2024-02-22 06:54:38.995 2024-02-22 06:54:38.995 90000 TIP 434577 11477 6029607 2024-02-22 06:55:07.447 2024-02-22 06:55:07.447 0 FEE 434628 3304 6029704 2024-02-22 07:27:37.452 2024-02-22 07:27:37.452 2100 FEE 433828 15549 6029705 2024-02-22 07:27:37.452 2024-02-22 07:27:37.452 18900 TIP 433828 11798 6029722 2024-02-22 07:27:43.496 2024-02-22 07:27:43.496 2100 FEE 433833 989 6029723 2024-02-22 07:27:43.496 2024-02-22 07:27:43.496 18900 TIP 433833 20066 6029748 2024-02-22 07:31:24.204 2024-02-22 07:31:24.204 1000 FEE 434644 2774 6029750 2024-02-22 07:32:53.851 2024-02-22 07:32:53.851 1000 FEE 434645 20577 6029764 2024-02-22 07:33:57.41 2024-02-22 07:33:57.41 1000 FEE 434627 5646 6029765 2024-02-22 07:33:57.41 2024-02-22 07:33:57.41 9000 TIP 434627 10016 6029774 2024-02-22 07:36:37.192 2024-02-22 07:36:37.192 1000 FEE 434651 19036 6029779 2024-02-22 07:36:59.476 2024-02-22 07:36:59.476 2100 FEE 434627 19888 6029780 2024-02-22 07:36:59.476 2024-02-22 07:36:59.476 18900 TIP 434627 19527 6029793 2024-02-22 07:38:27.019 2024-02-22 07:38:27.019 100000 FEE 434319 4776 6029794 2024-02-22 07:38:27.019 2024-02-22 07:38:27.019 900000 TIP 434319 2329 6029795 2024-02-22 07:38:39.154 2024-02-22 07:38:39.154 1000 FEE 434654 4043 6029801 2024-02-22 07:41:03.724 2024-02-22 07:41:03.724 0 FEE 434650 11018 6029838 2024-02-22 07:56:04.19 2024-02-22 07:56:04.19 2100 FEE 434646 15045 6029839 2024-02-22 07:56:04.19 2024-02-22 07:56:04.19 18900 TIP 434646 18829 6029850 2024-02-22 07:56:52.405 2024-02-22 07:56:52.405 1000 FEE 434383 12930 6029851 2024-02-22 07:56:52.405 2024-02-22 07:56:52.405 9000 TIP 434383 6741 6029878 2024-02-22 08:04:28.564 2024-02-22 08:04:28.564 2100 FEE 434565 16149 6029879 2024-02-22 08:04:28.564 2024-02-22 08:04:28.564 18900 TIP 434565 16267 6029880 2024-02-22 08:04:41.747 2024-02-22 08:04:41.747 10000 FEE 416239 10519 6029881 2024-02-22 08:04:41.747 2024-02-22 08:04:41.747 90000 TIP 416239 9150 6029887 2024-02-22 08:06:29.459 2024-02-22 08:06:29.459 1000 FEE 434670 15938 6029915 2024-02-22 08:20:58.199 2024-02-22 08:20:58.199 100 FEE 434629 17331 6029916 2024-02-22 08:20:58.199 2024-02-22 08:20:58.199 900 TIP 434629 12272 6029957 2024-02-22 08:37:24.713 2024-02-22 08:37:24.713 2100 FEE 434619 1145 6029958 2024-02-22 08:37:24.713 2024-02-22 08:37:24.713 18900 TIP 434619 18005 6029983 2024-02-22 08:46:37.465 2024-02-22 08:46:37.465 1600 FEE 434535 20642 6029984 2024-02-22 08:46:37.465 2024-02-22 08:46:37.465 14400 TIP 434535 10484 6029985 2024-02-22 08:46:41.737 2024-02-22 08:46:41.737 1600 FEE 434498 16638 6029986 2024-02-22 08:46:41.737 2024-02-22 08:46:41.737 14400 TIP 434498 19147 6029993 2024-02-22 08:47:53.177 2024-02-22 08:47:53.177 100 FEE 434642 1800 6029994 2024-02-22 08:47:53.177 2024-02-22 08:47:53.177 900 TIP 434642 2077 6030038 2024-02-22 08:54:55.322 2024-02-22 08:54:55.322 500 FEE 434285 13921 6030039 2024-02-22 08:54:55.322 2024-02-22 08:54:55.322 4500 TIP 434285 21314 6030040 2024-02-22 08:54:55.867 2024-02-22 08:54:55.867 500 FEE 434285 986 6030041 2024-02-22 08:54:55.867 2024-02-22 08:54:55.867 4500 TIP 434285 18837 6029171 2024-02-22 05:44:03.226 2024-02-22 05:44:03.226 1000 STREAM 141924 18507 6035615 2024-02-22 18:50:57.893 2024-02-22 18:50:57.893 2300 FEE 435377 12220 6035616 2024-02-22 18:50:57.893 2024-02-22 18:50:57.893 20700 TIP 435377 18005 6035636 2024-02-22 18:51:04.189 2024-02-22 18:51:04.189 1000 FEE 435386 20647 6035637 2024-02-22 18:51:04.189 2024-02-22 18:51:04.189 9000 TIP 435386 14651 6035651 2024-02-22 18:51:54.801 2024-02-22 18:51:54.801 2300 FEE 435346 822 6035652 2024-02-22 18:51:54.801 2024-02-22 18:51:54.801 20700 TIP 435346 17817 6035702 2024-02-22 18:58:03.9 2024-02-22 18:58:03.9 2500 FEE 435226 721 6035703 2024-02-22 18:58:03.9 2024-02-22 18:58:03.9 22500 TIP 435226 11145 6035704 2024-02-22 18:58:05.151 2024-02-22 18:58:05.151 4000 FEE 435357 761 6035705 2024-02-22 18:58:05.151 2024-02-22 18:58:05.151 36000 TIP 435357 8505 6035720 2024-02-22 18:59:08.483 2024-02-22 18:59:08.483 2300 FEE 435399 4831 6035721 2024-02-22 18:59:08.483 2024-02-22 18:59:08.483 20700 TIP 435399 20225 6035738 2024-02-22 18:59:10.336 2024-02-22 18:59:10.336 2300 FEE 435399 10007 6035739 2024-02-22 18:59:10.336 2024-02-22 18:59:10.336 20700 TIP 435399 11996 6035763 2024-02-22 18:59:26.27 2024-02-22 18:59:26.27 2300 FEE 435399 9669 6035764 2024-02-22 18:59:26.27 2024-02-22 18:59:26.27 20700 TIP 435399 11992 6035765 2024-02-22 18:59:26.38 2024-02-22 18:59:26.38 2300 FEE 435399 6160 6035766 2024-02-22 18:59:26.38 2024-02-22 18:59:26.38 20700 TIP 435399 678 6035789 2024-02-22 19:01:58.292 2024-02-22 19:01:58.292 1000 FEE 435405 21145 6035804 2024-02-22 19:05:42.492 2024-02-22 19:05:42.492 10100 FEE 435328 19282 6035805 2024-02-22 19:05:42.492 2024-02-22 19:05:42.492 90900 TIP 435328 19502 6035815 2024-02-22 19:07:18.233 2024-02-22 19:07:18.233 1000 FEE 435327 21485 6035816 2024-02-22 19:07:18.233 2024-02-22 19:07:18.233 9000 TIP 435327 5852 6035859 2024-02-22 19:12:49.815 2024-02-22 19:12:49.815 11100 FEE 435400 703 6035860 2024-02-22 19:12:49.815 2024-02-22 19:12:49.815 99900 TIP 435400 17800 6035862 2024-02-22 19:13:44.027 2024-02-22 19:13:44.027 10000 FEE 435059 4128 6035863 2024-02-22 19:13:44.027 2024-02-22 19:13:44.027 90000 TIP 435059 700 6035869 2024-02-22 19:14:32.961 2024-02-22 19:14:32.961 900 FEE 435412 1389 6035870 2024-02-22 19:14:32.961 2024-02-22 19:14:32.961 8100 TIP 435412 18473 6035890 2024-02-22 19:15:13.165 2024-02-22 19:15:13.165 100 FEE 435376 21212 6035891 2024-02-22 19:15:13.165 2024-02-22 19:15:13.165 900 TIP 435376 16149 6035915 2024-02-22 19:18:21.2 2024-02-22 19:18:21.2 1000 FEE 435424 803 6035917 2024-02-22 19:18:48.258 2024-02-22 19:18:48.258 100000 DONT_LIKE_THIS 435357 5794 6035918 2024-02-22 19:18:56.727 2024-02-22 19:18:56.727 100000 DONT_LIKE_THIS 435242 18735 6035924 2024-02-22 19:20:10.336 2024-02-22 19:20:10.336 10000 FEE 435030 11609 6035925 2024-02-22 19:20:10.336 2024-02-22 19:20:10.336 90000 TIP 435030 9916 6035960 2024-02-22 19:24:13.826 2024-02-22 19:24:13.826 100 FEE 435416 21063 6035961 2024-02-22 19:24:13.826 2024-02-22 19:24:13.826 900 TIP 435416 16879 6035976 2024-02-22 19:25:41.499 2024-02-22 19:25:41.499 2100 FEE 435410 20182 6035977 2024-02-22 19:25:41.499 2024-02-22 19:25:41.499 18900 TIP 435410 1718 6035997 2024-02-22 19:28:18.74 2024-02-22 19:28:18.74 1000 FEE 435438 9355 6036002 2024-02-22 19:28:48.47 2024-02-22 19:28:48.47 100 FEE 435190 2203 6036003 2024-02-22 19:28:48.47 2024-02-22 19:28:48.47 900 TIP 435190 2101 6036004 2024-02-22 19:28:57.951 2024-02-22 19:28:57.951 10000 FEE 435272 18139 6036005 2024-02-22 19:28:57.951 2024-02-22 19:28:57.951 90000 TIP 435272 20562 6036015 2024-02-22 19:32:38.103 2024-02-22 19:32:38.103 1000 FEE 435440 20302 6036060 2024-02-22 19:34:08.645 2024-02-22 19:34:08.645 1600 FEE 435440 5597 6036061 2024-02-22 19:34:08.645 2024-02-22 19:34:08.645 14400 TIP 435440 20782 6036062 2024-02-22 19:34:11.225 2024-02-22 19:34:11.225 1100 FEE 435444 8059 6036063 2024-02-22 19:34:11.225 2024-02-22 19:34:11.225 9900 TIP 435444 5306 6036064 2024-02-22 19:34:22.852 2024-02-22 19:34:22.852 500 FEE 435440 20901 6036065 2024-02-22 19:34:22.852 2024-02-22 19:34:22.852 4500 TIP 435440 16177 6036086 2024-02-22 19:38:07.667 2024-02-22 19:38:07.667 100 FEE 435328 21520 6036087 2024-02-22 19:38:07.667 2024-02-22 19:38:07.667 900 TIP 435328 20998 6036090 2024-02-22 19:38:08.64 2024-02-22 19:38:08.64 100 FEE 435189 9109 6036091 2024-02-22 19:38:08.64 2024-02-22 19:38:08.64 900 TIP 435189 20218 6036102 2024-02-22 19:38:10.147 2024-02-22 19:38:10.147 100 FEE 435189 20514 6036103 2024-02-22 19:38:10.147 2024-02-22 19:38:10.147 900 TIP 435189 17050 6036137 2024-02-22 19:41:41.511 2024-02-22 19:41:41.511 4000 FEE 435443 12507 6036138 2024-02-22 19:41:41.511 2024-02-22 19:41:41.511 36000 TIP 435443 13198 6036194 2024-02-22 19:48:32.159 2024-02-22 19:48:32.159 23000 DONT_LIKE_THIS 435455 18265 6036211 2024-02-22 19:54:49.041 2024-02-22 19:54:49.041 400 FEE 435450 8472 6036212 2024-02-22 19:54:49.041 2024-02-22 19:54:49.041 3600 TIP 435450 11263 6036246 2024-02-22 20:01:25.106 2024-02-22 20:01:25.106 1000 FEE 435377 11192 6036247 2024-02-22 20:01:25.106 2024-02-22 20:01:25.106 9000 TIP 435377 1489 6036268 2024-02-22 20:07:18.077 2024-02-22 20:07:18.077 1000 FEE 435473 15409 6036281 2024-02-22 20:13:11.735 2024-02-22 20:13:11.735 1000 FEE 435476 15488 6036284 2024-02-22 20:13:23.548 2024-02-22 20:13:23.548 1000 FEE 435477 16042 6036299 2024-02-22 20:13:25.338 2024-02-22 20:13:25.338 10000 FEE 435412 19189 6036300 2024-02-22 20:13:25.338 2024-02-22 20:13:25.338 90000 TIP 435412 9874 6036303 2024-02-22 20:13:51.634 2024-02-22 20:13:51.634 10000 FEE 435478 5500 6036319 2024-02-22 20:22:19.733 2024-02-22 20:22:19.733 1000 FEE 435480 2775 6036320 2024-02-22 20:22:19.733 2024-02-22 20:22:19.733 9000 TIP 435480 17707 6036331 2024-02-22 20:22:24.038 2024-02-22 20:22:24.038 1000 FEE 435480 14247 6036332 2024-02-22 20:22:24.038 2024-02-22 20:22:24.038 9000 TIP 435480 5725 6036347 2024-02-22 20:26:59.307 2024-02-22 20:26:59.307 1000 FEE 435483 20080 6036360 2024-02-22 20:33:34.57 2024-02-22 20:33:34.57 6400 FEE 435328 20623 6036361 2024-02-22 20:33:34.57 2024-02-22 20:33:34.57 57600 TIP 435328 11820 6036370 2024-02-22 20:35:10.255 2024-02-22 20:35:10.255 800 FEE 434276 21457 6036371 2024-02-22 20:35:10.255 2024-02-22 20:35:10.255 7200 TIP 434276 9350 6036379 2024-02-22 20:37:09.674 2024-02-22 20:37:09.674 800 FEE 435453 21239 6036380 2024-02-22 20:37:09.674 2024-02-22 20:37:09.674 7200 TIP 435453 9427 6036382 2024-02-22 20:37:54.235 2024-02-22 20:37:54.235 300 FEE 435226 2789 6036383 2024-02-22 20:37:54.235 2024-02-22 20:37:54.235 2700 TIP 435226 5779 6036389 2024-02-22 20:38:26.281 2024-02-22 20:38:26.281 1000 FEE 435492 997 6036400 2024-02-22 20:40:00.406 2024-02-22 20:40:00.406 10000 FEE 435494 18533 6036433 2024-02-22 20:41:36.5 2024-02-22 20:41:36.5 2300 FEE 435497 2614 6036434 2024-02-22 20:41:36.5 2024-02-22 20:41:36.5 20700 TIP 435497 761 6036437 2024-02-22 20:41:37.639 2024-02-22 20:41:37.639 6900 FEE 435497 8505 6036438 2024-02-22 20:41:37.639 2024-02-22 20:41:37.639 62100 TIP 435497 18412 6036445 2024-02-22 20:41:41.128 2024-02-22 20:41:41.128 2300 FEE 435497 2206 6036446 2024-02-22 20:41:41.128 2024-02-22 20:41:41.128 20700 TIP 435497 20036 6036453 2024-02-22 20:41:41.768 2024-02-22 20:41:41.768 2300 FEE 435497 20231 6036454 2024-02-22 20:41:41.768 2024-02-22 20:41:41.768 20700 TIP 435497 8360 6036457 2024-02-22 20:41:42.043 2024-02-22 20:41:42.043 2300 FEE 435497 5757 6036458 2024-02-22 20:41:42.043 2024-02-22 20:41:42.043 20700 TIP 435497 20778 6036473 2024-02-22 20:41:44.376 2024-02-22 20:41:44.376 2300 FEE 435497 18829 6036474 2024-02-22 20:41:44.376 2024-02-22 20:41:44.376 20700 TIP 435497 17570 6036477 2024-02-22 20:41:44.631 2024-02-22 20:41:44.631 2300 FEE 435497 1064 6036478 2024-02-22 20:41:44.631 2024-02-22 20:41:44.631 20700 TIP 435497 19566 6036493 2024-02-22 20:42:00.066 2024-02-22 20:42:00.066 1600 FEE 435274 21401 6036494 2024-02-22 20:42:00.066 2024-02-22 20:42:00.066 14400 TIP 435274 699 6036513 2024-02-22 20:43:31.799 2024-02-22 20:43:31.799 1000 FEE 435458 14037 6036514 2024-02-22 20:43:31.799 2024-02-22 20:43:31.799 9000 TIP 435458 6594 6029178 2024-02-22 05:47:03.164 2024-02-22 05:47:03.164 1000 STREAM 141924 18877 6029191 2024-02-22 05:50:03.195 2024-02-22 05:50:03.195 1000 STREAM 141924 20680 6029195 2024-02-22 05:52:03.204 2024-02-22 05:52:03.204 1000 STREAM 141924 956 6029204 2024-02-22 05:54:03.319 2024-02-22 05:54:03.319 1000 STREAM 141924 913 6029210 2024-02-22 05:57:03.344 2024-02-22 05:57:03.344 1000 STREAM 141924 633 6029233 2024-02-22 05:58:03.331 2024-02-22 05:58:03.331 1000 STREAM 141924 6717 6029304 2024-02-22 06:11:03.383 2024-02-22 06:11:03.383 1000 STREAM 141924 11829 6029314 2024-02-22 06:15:03.391 2024-02-22 06:15:03.391 1000 STREAM 141924 20577 6029321 2024-02-22 06:17:03.396 2024-02-22 06:17:03.396 1000 STREAM 141924 782 6035641 2024-02-22 18:51:05.33 2024-02-22 18:51:05.33 9000 TIP 435386 6360 6035658 2024-02-22 18:52:48.025 2024-02-22 18:52:48.025 90000 FEE 434124 16176 6035659 2024-02-22 18:52:48.025 2024-02-22 18:52:48.025 810000 TIP 434124 9611 6035700 2024-02-22 18:57:36.387 2024-02-22 18:57:36.387 0 FEE 435395 18363 6035707 2024-02-22 18:58:34.059 2024-02-22 18:58:34.059 1000 FEE 435399 19852 6035760 2024-02-22 18:59:12.435 2024-02-22 18:59:12.435 2300 FEE 435399 17953 6035761 2024-02-22 18:59:12.435 2024-02-22 18:59:12.435 20700 TIP 435399 19836 6035769 2024-02-22 18:59:27.221 2024-02-22 18:59:27.221 2300 FEE 435399 12024 6035770 2024-02-22 18:59:27.221 2024-02-22 18:59:27.221 20700 TIP 435399 956 6035783 2024-02-22 19:01:38.085 2024-02-22 19:01:38.085 10000 FEE 435328 21527 6035784 2024-02-22 19:01:38.085 2024-02-22 19:01:38.085 90000 TIP 435328 2101 6035807 2024-02-22 19:06:30.874 2024-02-22 19:06:30.874 50000 FEE 435018 7097 6035808 2024-02-22 19:06:30.874 2024-02-22 19:06:30.874 450000 TIP 435018 21292 6035825 2024-02-22 19:07:43.826 2024-02-22 19:07:43.826 100000 FEE 435410 12768 6035826 2024-02-22 19:07:53.579 2024-02-22 19:07:53.579 0 FEE 435409 18539 6035835 2024-02-22 19:09:03.761 2024-02-22 19:09:03.761 800 FEE 435375 2188 6035836 2024-02-22 19:09:03.761 2024-02-22 19:09:03.761 7200 TIP 435375 17041 6035855 2024-02-22 19:12:38.459 2024-02-22 19:12:38.459 2500 FEE 435229 5085 6035856 2024-02-22 19:12:38.459 2024-02-22 19:12:38.459 22500 TIP 435229 21577 6035867 2024-02-22 19:14:32.772 2024-02-22 19:14:32.772 100 FEE 435412 4102 6035868 2024-02-22 19:14:32.772 2024-02-22 19:14:32.772 900 TIP 435412 20452 6035871 2024-02-22 19:14:35.406 2024-02-22 19:14:35.406 1000 FEE 435419 8423 6035921 2024-02-22 19:19:45.113 2024-02-22 19:19:45.113 10000 FEE 435359 13399 6029243 2024-02-22 05:59:11.213 2024-02-22 05:59:11.213 29700 TIP 434465 16912 6029260 2024-02-22 06:01:36.407 2024-02-22 06:01:36.407 1000 FEE 434585 5708 6029261 2024-02-22 06:01:36.407 2024-02-22 06:01:36.407 9000 TIP 434585 21248 6029287 2024-02-22 06:06:54.349 2024-02-22 06:06:54.349 1000 FEE 434460 15510 6029288 2024-02-22 06:06:54.349 2024-02-22 06:06:54.349 9000 TIP 434460 17316 6029307 2024-02-22 06:12:26.972 2024-02-22 06:12:26.972 2100 FEE 434412 15351 6029308 2024-02-22 06:12:26.972 2024-02-22 06:12:26.972 18900 TIP 434412 2710 6029325 2024-02-22 06:18:43.667 2024-02-22 06:18:43.667 2000 FEE 433943 4763 6029326 2024-02-22 06:18:43.667 2024-02-22 06:18:43.667 18000 TIP 433943 2437 6029327 2024-02-22 06:18:43.933 2024-02-22 06:18:43.933 2000 FEE 433943 9166 6029328 2024-02-22 06:18:43.933 2024-02-22 06:18:43.933 18000 TIP 433943 5519 6029355 2024-02-22 06:22:00.641 2024-02-22 06:22:00.641 1000 FEE 434440 16867 6029356 2024-02-22 06:22:00.641 2024-02-22 06:22:00.641 9000 TIP 434440 4064 6029368 2024-02-22 06:22:23.313 2024-02-22 06:22:23.313 1000 FEE 434469 19105 6029369 2024-02-22 06:22:23.313 2024-02-22 06:22:23.313 9000 TIP 434469 18017 6029393 2024-02-22 06:23:28.644 2024-02-22 06:23:28.644 1000 FEE 433878 9169 6029394 2024-02-22 06:23:28.644 2024-02-22 06:23:28.644 9000 TIP 433878 13174 6029397 2024-02-22 06:23:29.205 2024-02-22 06:23:29.205 1000 FEE 433833 681 6029398 2024-02-22 06:23:29.205 2024-02-22 06:23:29.205 9000 TIP 433833 21451 6029399 2024-02-22 06:23:32.181 2024-02-22 06:23:32.181 1000 FEE 434606 5497 6029400 2024-02-22 06:23:32.181 2024-02-22 06:23:32.181 9000 TIP 434606 20117 6029403 2024-02-22 06:23:33.181 2024-02-22 06:23:33.181 1000 FEE 434588 17171 6029404 2024-02-22 06:23:33.181 2024-02-22 06:23:33.181 9000 TIP 434588 14651 6029419 2024-02-22 06:23:36.654 2024-02-22 06:23:36.654 1000 FEE 434514 20370 6029420 2024-02-22 06:23:36.654 2024-02-22 06:23:36.654 9000 TIP 434514 675 6029421 2024-02-22 06:23:36.883 2024-02-22 06:23:36.883 1000 FEE 434504 19030 6029422 2024-02-22 06:23:36.883 2024-02-22 06:23:36.883 9000 TIP 434504 9421 6029425 2024-02-22 06:23:38.651 2024-02-22 06:23:38.651 1000 FEE 434485 5759 6029426 2024-02-22 06:23:38.651 2024-02-22 06:23:38.651 9000 TIP 434485 21026 6029435 2024-02-22 06:23:43.012 2024-02-22 06:23:43.012 1000 FEE 434447 18705 6029436 2024-02-22 06:23:43.012 2024-02-22 06:23:43.012 9000 TIP 434447 19031 6029445 2024-02-22 06:23:46.569 2024-02-22 06:23:46.569 1000 FEE 434402 15521 6029446 2024-02-22 06:23:46.569 2024-02-22 06:23:46.569 9000 TIP 434402 1772 6029449 2024-02-22 06:23:47.946 2024-02-22 06:23:47.946 1000 FEE 434379 2832 6029450 2024-02-22 06:23:47.946 2024-02-22 06:23:47.946 9000 TIP 434379 704 6029455 2024-02-22 06:23:49.827 2024-02-22 06:23:49.827 1000 FEE 434360 11760 6029456 2024-02-22 06:23:49.827 2024-02-22 06:23:49.827 9000 TIP 434360 21042 6029469 2024-02-22 06:23:55.476 2024-02-22 06:23:55.476 1000 FEE 434319 2577 6029470 2024-02-22 06:23:55.476 2024-02-22 06:23:55.476 9000 TIP 434319 11073 6029255 2024-02-22 06:01:03.916 2024-02-22 06:01:03.916 1000 STREAM 141924 14990 6029269 2024-02-22 06:02:03.772 2024-02-22 06:02:03.772 1000 STREAM 141924 20623 6029280 2024-02-22 06:05:03.801 2024-02-22 06:05:03.801 1000 STREAM 141924 12566 6029285 2024-02-22 06:06:03.798 2024-02-22 06:06:03.798 1000 STREAM 141924 8448 6029291 2024-02-22 06:08:03.82 2024-02-22 06:08:03.82 1000 STREAM 141924 20756 6029298 2024-02-22 06:10:03.847 2024-02-22 06:10:03.847 1000 STREAM 141924 964 6029306 2024-02-22 06:12:03.866 2024-02-22 06:12:03.866 1000 STREAM 141924 14990 6035685 2024-02-22 18:55:32.674 2024-02-22 18:55:32.674 1000 FEE 435396 17172 6035693 2024-02-22 18:56:39.381 2024-02-22 18:56:39.381 1000 FEE 435397 13398 6035708 2024-02-22 18:58:51.71 2024-02-22 18:58:51.71 0 FEE 435398 19284 6035756 2024-02-22 18:59:12.187 2024-02-22 18:59:12.187 2300 FEE 435399 20594 6035757 2024-02-22 18:59:12.187 2024-02-22 18:59:12.187 20700 TIP 435399 6041 6035758 2024-02-22 18:59:12.311 2024-02-22 18:59:12.311 2300 FEE 435399 16598 6035759 2024-02-22 18:59:12.311 2024-02-22 18:59:12.311 20700 TIP 435399 12289 6035774 2024-02-22 18:59:40.278 2024-02-22 18:59:40.278 2100 FEE 435261 1624 6035775 2024-02-22 18:59:40.278 2024-02-22 18:59:40.278 18900 TIP 435261 17722 6035776 2024-02-22 18:59:48.239 2024-02-22 18:59:48.239 1100 FEE 435177 19151 6035777 2024-02-22 18:59:48.239 2024-02-22 18:59:48.239 9900 TIP 435177 1658 6035791 2024-02-22 19:02:37.852 2024-02-22 19:02:37.852 2100 FEE 435024 3461 6035792 2024-02-22 19:02:37.852 2024-02-22 19:02:37.852 18900 TIP 435024 18862 6035819 2024-02-22 19:07:20.166 2024-02-22 19:07:20.166 1000 FEE 435217 15617 6035820 2024-02-22 19:07:20.166 2024-02-22 19:07:20.166 9000 TIP 435217 20745 6035823 2024-02-22 19:07:35.232 2024-02-22 19:07:35.232 1000 FEE 435409 4166 6035830 2024-02-22 19:08:48.903 2024-02-22 19:08:48.903 1000 FEE 435413 6555 6035837 2024-02-22 19:09:20.417 2024-02-22 19:09:20.417 1000 FEE 435416 9 6035840 2024-02-22 19:09:27.409 2024-02-22 19:09:27.409 200 FEE 435401 18231 6035841 2024-02-22 19:09:27.409 2024-02-22 19:09:27.409 1800 TIP 435401 5444 6035865 2024-02-22 19:14:04.983 2024-02-22 19:14:04.983 100000 DONT_LIKE_THIS 435414 2711 6035866 2024-02-22 19:14:17.759 2024-02-22 19:14:17.759 1000 FEE 435418 712 6035916 2024-02-22 19:18:47.289 2024-02-22 19:18:47.289 21000 DONT_LIKE_THIS 435127 5487 6035943 2024-02-22 19:22:35.243 2024-02-22 19:22:35.243 8300 FEE 435425 19235 6035944 2024-02-22 19:22:35.243 2024-02-22 19:22:35.243 74700 TIP 435425 2046 6035945 2024-02-22 19:22:42.062 2024-02-22 19:22:42.062 100000 FEE 435430 12289 6035952 2024-02-22 19:23:26.848 2024-02-22 19:23:26.848 2500 FEE 435353 897 6035953 2024-02-22 19:23:26.848 2024-02-22 19:23:26.848 22500 TIP 435353 2525 6035956 2024-02-22 19:23:31.418 2024-02-22 19:23:31.418 2500 FEE 435295 21494 6035957 2024-02-22 19:23:31.418 2024-02-22 19:23:31.418 22500 TIP 435295 12965 6035967 2024-02-22 19:24:40.601 2024-02-22 19:24:40.601 2100 FEE 435100 1221 6035968 2024-02-22 19:24:40.601 2024-02-22 19:24:40.601 18900 TIP 435100 10690 6035972 2024-02-22 19:25:16.538 2024-02-22 19:25:16.538 100 FEE 435328 1620 6035973 2024-02-22 19:25:16.538 2024-02-22 19:25:16.538 900 TIP 435328 18581 6036012 2024-02-22 19:30:57.46 2024-02-22 19:30:57.46 1000 FEE 435439 20022 6036018 2024-02-22 19:32:43.312 2024-02-22 19:32:43.312 100 FEE 435180 2710 6036019 2024-02-22 19:32:43.312 2024-02-22 19:32:43.312 900 TIP 435180 5519 6036022 2024-02-22 19:32:43.716 2024-02-22 19:32:43.716 100 FEE 435180 951 6036023 2024-02-22 19:32:43.716 2024-02-22 19:32:43.716 900 TIP 435180 20657 6036036 2024-02-22 19:32:55.707 2024-02-22 19:32:55.707 21000 FEE 435441 11866 6036038 2024-02-22 19:32:58.445 2024-02-22 19:32:58.445 1000 FEE 435443 18626 6036053 2024-02-22 19:33:32.215 2024-02-22 19:33:32.215 2100 FEE 435437 5387 6036054 2024-02-22 19:33:32.215 2024-02-22 19:33:32.215 18900 TIP 435437 18984 6036078 2024-02-22 19:38:06.249 2024-02-22 19:38:06.249 100 FEE 435328 19462 6036079 2024-02-22 19:38:06.249 2024-02-22 19:38:06.249 900 TIP 435328 16638 6029309 2024-02-22 06:13:03.371 2024-02-22 06:13:03.371 1000 STREAM 141924 17094 6029311 2024-02-22 06:14:03.388 2024-02-22 06:14:03.388 1000 STREAM 141924 775 6029320 2024-02-22 06:16:03.39 2024-02-22 06:16:03.39 1000 STREAM 141924 18659 6029322 2024-02-22 06:18:03.399 2024-02-22 06:18:03.399 1000 STREAM 141924 3371 6029548 2024-02-22 06:44:03.57 2024-02-22 06:44:03.57 1000 STREAM 141924 2774 6035715 2024-02-22 18:59:07.624 2024-02-22 18:59:07.624 41400 TIP 435399 20751 6035718 2024-02-22 18:59:08.224 2024-02-22 18:59:08.224 2300 FEE 435399 13174 6035719 2024-02-22 18:59:08.224 2024-02-22 18:59:08.224 20700 TIP 435399 10690 6035773 2024-02-22 18:59:35.81 2024-02-22 18:59:35.81 1000 FEE 435401 18640 6029338 2024-02-22 06:20:03.974 2024-02-22 06:20:03.974 1000 STREAM 141924 16816 6029340 2024-02-22 06:21:03.973 2024-02-22 06:21:03.973 1000 STREAM 141924 622 6029376 2024-02-22 06:23:04.009 2024-02-22 06:23:04.009 1000 STREAM 141924 803 6029503 2024-02-22 06:24:04.013 2024-02-22 06:24:04.013 1000 STREAM 141924 19662 6029512 2024-02-22 06:29:04.036 2024-02-22 06:29:04.036 1000 STREAM 141924 21159 6029523 2024-02-22 06:34:04.09 2024-02-22 06:34:04.09 1000 STREAM 141924 9353 6029532 2024-02-22 06:36:04.1 2024-02-22 06:36:04.1 1000 STREAM 141924 14688 6029536 2024-02-22 06:38:04.113 2024-02-22 06:38:04.113 1000 STREAM 141924 14122 6029537 2024-02-22 06:39:04.125 2024-02-22 06:39:04.125 1000 STREAM 141924 7773 6029544 2024-02-22 06:42:04.143 2024-02-22 06:42:04.143 1000 STREAM 141924 13759 6029546 2024-02-22 06:43:04.153 2024-02-22 06:43:04.153 1000 STREAM 141924 4633 6029556 2024-02-22 06:46:04.183 2024-02-22 06:46:04.183 1000 STREAM 141924 20376 6029561 2024-02-22 06:47:04.168 2024-02-22 06:47:04.168 1000 STREAM 141924 5036 6029565 2024-02-22 06:48:04.169 2024-02-22 06:48:04.169 1000 STREAM 141924 1030 6029573 2024-02-22 06:50:04.188 2024-02-22 06:50:04.188 1000 STREAM 141924 7558 6029584 2024-02-22 06:52:04.196 2024-02-22 06:52:04.196 1000 STREAM 141924 21501 6029610 2024-02-22 06:56:04.217 2024-02-22 06:56:04.217 1000 STREAM 141924 20264 6029612 2024-02-22 06:57:04.243 2024-02-22 06:57:04.243 1000 STREAM 141924 706 6029614 2024-02-22 06:58:04.227 2024-02-22 06:58:04.227 1000 STREAM 141924 20523 6029634 2024-02-22 07:02:04.248 2024-02-22 07:02:04.248 1000 STREAM 141924 20208 6029640 2024-02-22 07:04:04.251 2024-02-22 07:04:04.251 1000 STREAM 141924 1802 6029641 2024-02-22 07:05:04.256 2024-02-22 07:05:04.256 1000 STREAM 141924 21343 6029644 2024-02-22 07:06:04.258 2024-02-22 07:06:04.258 1000 STREAM 141924 7675 6029645 2024-02-22 07:07:04.263 2024-02-22 07:07:04.263 1000 STREAM 141924 21352 6029677 2024-02-22 07:16:04.408 2024-02-22 07:16:04.408 1000 STREAM 141924 2347 6029686 2024-02-22 07:18:04.432 2024-02-22 07:18:04.432 1000 STREAM 141924 787 6029688 2024-02-22 07:19:04.44 2024-02-22 07:19:04.44 1000 STREAM 141924 1044 6029690 2024-02-22 07:21:04.461 2024-02-22 07:21:04.461 1000 STREAM 141924 1030 6029693 2024-02-22 07:23:04.474 2024-02-22 07:23:04.474 1000 STREAM 141924 18816 6029701 2024-02-22 07:27:04.524 2024-02-22 07:27:04.524 1000 STREAM 141924 1772 6029746 2024-02-22 07:30:04.524 2024-02-22 07:30:04.524 1000 STREAM 141924 3353 6029747 2024-02-22 07:31:04.525 2024-02-22 07:31:04.525 1000 STREAM 141924 8380 6029749 2024-02-22 07:32:04.525 2024-02-22 07:32:04.525 1000 STREAM 141924 2098 6029768 2024-02-22 07:34:04.531 2024-02-22 07:34:04.531 1000 STREAM 141924 12346 6029791 2024-02-22 07:38:04.566 2024-02-22 07:38:04.566 1000 STREAM 141924 1567 6029798 2024-02-22 07:39:04.568 2024-02-22 07:39:04.568 1000 STREAM 141924 19375 6029867 2024-02-22 08:01:04.812 2024-02-22 08:01:04.812 1000 STREAM 141924 18984 6029875 2024-02-22 08:03:04.79 2024-02-22 08:03:04.79 1000 STREAM 141924 20190 6029877 2024-02-22 08:04:04.81 2024-02-22 08:04:04.81 1000 STREAM 141924 16301 6029884 2024-02-22 08:05:04.819 2024-02-22 08:05:04.819 1000 STREAM 141924 18291 6029897 2024-02-22 08:10:04.912 2024-02-22 08:10:04.912 1000 STREAM 141924 777 6029898 2024-02-22 08:11:04.899 2024-02-22 08:11:04.899 1000 STREAM 141924 17722 6029901 2024-02-22 08:14:04.868 2024-02-22 08:14:04.868 1000 STREAM 141924 685 6029903 2024-02-22 08:16:04.894 2024-02-22 08:16:04.894 1000 STREAM 141924 17148 6029907 2024-02-22 08:17:04.872 2024-02-22 08:17:04.872 1000 STREAM 141924 16176 6029909 2024-02-22 08:18:04.884 2024-02-22 08:18:04.884 1000 STREAM 141924 1051 6029913 2024-02-22 08:20:04.92 2024-02-22 08:20:04.92 1000 STREAM 141924 21603 6029919 2024-02-22 08:21:04.901 2024-02-22 08:21:04.901 1000 STREAM 141924 13198 6035725 2024-02-22 18:59:08.737 2024-02-22 18:59:08.737 20700 TIP 435399 8080 6035734 2024-02-22 18:59:10.035 2024-02-22 18:59:10.035 2300 FEE 435399 2039 6035735 2024-02-22 18:59:10.035 2024-02-22 18:59:10.035 20700 TIP 435399 18139 6035748 2024-02-22 18:59:10.954 2024-02-22 18:59:10.954 2300 FEE 435399 940 6035749 2024-02-22 18:59:10.954 2024-02-22 18:59:10.954 20700 TIP 435399 20597 6035752 2024-02-22 18:59:11.25 2024-02-22 18:59:11.25 2300 FEE 435399 19633 6035753 2024-02-22 18:59:11.25 2024-02-22 18:59:11.25 20700 TIP 435399 18068 6035754 2024-02-22 18:59:11.368 2024-02-22 18:59:11.368 2300 FEE 435399 20619 6035755 2024-02-22 18:59:11.368 2024-02-22 18:59:11.368 20700 TIP 435399 16289 6035796 2024-02-22 19:03:26.568 2024-02-22 19:03:26.568 1000 FEE 435406 7587 6035842 2024-02-22 19:09:27.729 2024-02-22 19:09:27.729 9200 FEE 435375 7746 6035843 2024-02-22 19:09:27.729 2024-02-22 19:09:27.729 82800 TIP 435375 628 6035846 2024-02-22 19:11:07.445 2024-02-22 19:11:07.445 1000 FEE 435417 9705 6035852 2024-02-22 19:11:59.753 2024-02-22 19:11:59.753 2500 FEE 434642 12774 6035853 2024-02-22 19:11:59.753 2024-02-22 19:11:59.753 22500 TIP 434642 16667 6035857 2024-02-22 19:12:42.058 2024-02-22 19:12:42.058 200 FEE 435410 18177 6035858 2024-02-22 19:12:42.058 2024-02-22 19:12:42.058 1800 TIP 435410 1480 6035874 2024-02-22 19:14:46.457 2024-02-22 19:14:46.457 100 FEE 435402 1122 6035875 2024-02-22 19:14:46.457 2024-02-22 19:14:46.457 900 TIP 435402 2342 6035878 2024-02-22 19:14:51.306 2024-02-22 19:14:51.306 9000 FEE 435402 10818 6035879 2024-02-22 19:14:51.306 2024-02-22 19:14:51.306 81000 TIP 435402 1044 6035887 2024-02-22 19:15:07.864 2024-02-22 19:15:07.864 1000 FEE 435420 14663 6035911 2024-02-22 19:17:26.176 2024-02-22 19:17:26.176 2100 FEE 435213 19826 6035912 2024-02-22 19:17:26.176 2024-02-22 19:17:26.176 18900 TIP 435213 12708 6035929 2024-02-22 19:20:49.083 2024-02-22 19:20:49.083 2100 FEE 435369 1800 6035930 2024-02-22 19:20:49.083 2024-02-22 19:20:49.083 18900 TIP 435369 5759 6035932 2024-02-22 19:20:55.439 2024-02-22 19:20:55.439 1000 FEE 435427 19524 6035950 2024-02-22 19:23:25.812 2024-02-22 19:23:25.812 3000 FEE 435427 8423 6035951 2024-02-22 19:23:25.812 2024-02-22 19:23:25.812 27000 TIP 435427 18526 6035959 2024-02-22 19:24:08.061 2024-02-22 19:24:08.061 1000 FEE 435432 5377 6035965 2024-02-22 19:24:29.103 2024-02-22 19:24:29.103 2100 FEE 435136 21070 6035966 2024-02-22 19:24:29.103 2024-02-22 19:24:29.103 18900 TIP 435136 10102 6035992 2024-02-22 19:27:31.636 2024-02-22 19:27:31.636 1000 FEE 435434 20152 6035993 2024-02-22 19:27:54.91 2024-02-22 19:27:54.91 1000 FEE 435435 16998 6036037 2024-02-22 19:32:55.711 2024-02-22 19:32:55.711 1000 FEE 435442 20073 6036039 2024-02-22 19:32:59.446 2024-02-22 19:32:59.446 90000 FEE 435217 5590 6036040 2024-02-22 19:32:59.446 2024-02-22 19:32:59.446 810000 TIP 435217 4322 6036055 2024-02-22 19:33:53.937 2024-02-22 19:33:53.937 1100 FEE 435136 965 6036056 2024-02-22 19:33:53.937 2024-02-22 19:33:53.937 9900 TIP 435136 848 6036066 2024-02-22 19:34:58.835 2024-02-22 19:34:58.835 1000 FEE 435439 11477 6036067 2024-02-22 19:34:58.835 2024-02-22 19:34:58.835 9000 TIP 435439 21248 6036084 2024-02-22 19:38:07.086 2024-02-22 19:38:07.086 100 FEE 435328 6537 6036085 2024-02-22 19:38:07.086 2024-02-22 19:38:07.086 900 TIP 435328 5520 6036112 2024-02-22 19:38:57.936 2024-02-22 19:38:57.936 8300 FEE 435438 1806 6036113 2024-02-22 19:38:57.936 2024-02-22 19:38:57.936 74700 TIP 435438 10981 6036117 2024-02-22 19:39:20.394 2024-02-22 19:39:20.394 1000 FEE 435447 18363 6036126 2024-02-22 19:40:30.414 2024-02-22 19:40:30.414 100 FEE 435448 21578 6036127 2024-02-22 19:40:30.414 2024-02-22 19:40:30.414 900 TIP 435448 688 6036130 2024-02-22 19:40:30.842 2024-02-22 19:40:30.842 100 FEE 435448 17526 6036131 2024-02-22 19:40:30.842 2024-02-22 19:40:30.842 900 TIP 435448 18626 6036135 2024-02-22 19:41:32.429 2024-02-22 19:41:32.429 5000 FEE 435449 3506 6036139 2024-02-22 19:41:42.826 2024-02-22 19:41:42.826 4000 FEE 435447 768 6036140 2024-02-22 19:41:42.826 2024-02-22 19:41:42.826 36000 TIP 435447 5904 6036170 2024-02-22 19:46:34.04 2024-02-22 19:46:34.04 3000 FEE 435447 18449 6036171 2024-02-22 19:46:34.04 2024-02-22 19:46:34.04 27000 TIP 435447 19417 6029342 2024-02-22 06:21:34.758 2024-02-22 06:21:34.758 45000 TIP 434535 10493 6029343 2024-02-22 06:21:47.689 2024-02-22 06:21:47.689 1000 FEE 434498 18945 6029344 2024-02-22 06:21:47.689 2024-02-22 06:21:47.689 9000 TIP 434498 10668 6029345 2024-02-22 06:21:49.234 2024-02-22 06:21:49.234 1000 FEE 434285 11164 6029346 2024-02-22 06:21:49.234 2024-02-22 06:21:49.234 9000 TIP 434285 18402 6029349 2024-02-22 06:21:56.61 2024-02-22 06:21:56.61 1000 FEE 434278 16660 6029350 2024-02-22 06:21:56.61 2024-02-22 06:21:56.61 9000 TIP 434278 20669 6029366 2024-02-22 06:22:17.171 2024-02-22 06:22:17.171 1000 FEE 434243 20619 6029367 2024-02-22 06:22:17.171 2024-02-22 06:22:17.171 9000 TIP 434243 16966 6029391 2024-02-22 06:23:28.442 2024-02-22 06:23:28.442 1000 FEE 433934 6578 6029392 2024-02-22 06:23:28.442 2024-02-22 06:23:28.442 9000 TIP 433934 9611 6029409 2024-02-22 06:23:34.235 2024-02-22 06:23:34.235 1000 FEE 434544 11527 6029410 2024-02-22 06:23:34.235 2024-02-22 06:23:34.235 9000 TIP 434544 13406 6029423 2024-02-22 06:23:38.361 2024-02-22 06:23:38.361 1000 FEE 434483 9482 6029424 2024-02-22 06:23:38.361 2024-02-22 06:23:38.361 9000 TIP 434483 1483 6029433 2024-02-22 06:23:42.543 2024-02-22 06:23:42.543 1000 FEE 434457 6526 6029434 2024-02-22 06:23:42.543 2024-02-22 06:23:42.543 9000 TIP 434457 17891 6029439 2024-02-22 06:23:44.57 2024-02-22 06:23:44.57 1000 FEE 434434 1428 6029440 2024-02-22 06:23:44.57 2024-02-22 06:23:44.57 9000 TIP 434434 19488 6029447 2024-02-22 06:23:47.578 2024-02-22 06:23:47.578 1000 FEE 434382 630 6029448 2024-02-22 06:23:47.578 2024-02-22 06:23:47.578 9000 TIP 434382 2013 6029461 2024-02-22 06:23:51.532 2024-02-22 06:23:51.532 1000 FEE 434343 21503 6029462 2024-02-22 06:23:51.532 2024-02-22 06:23:51.532 9000 TIP 434343 21541 6029485 2024-02-22 06:23:59.685 2024-02-22 06:23:59.685 1000 FEE 434288 18321 6029486 2024-02-22 06:23:59.685 2024-02-22 06:23:59.685 9000 TIP 434288 987 6029541 2024-02-22 06:41:13.467 2024-02-22 06:41:13.467 1000 DONT_LIKE_THIS 419731 20433 6029583 2024-02-22 06:51:58.898 2024-02-22 06:51:58.898 1000 FEE 434625 15160 6029613 2024-02-22 06:57:51.666 2024-02-22 06:57:51.666 1000 FEE 434630 12122 6029615 2024-02-22 06:58:11.558 2024-02-22 06:58:11.558 1000 FEE 434523 12277 6029616 2024-02-22 06:58:11.558 2024-02-22 06:58:11.558 9000 TIP 434523 21444 6029619 2024-02-22 06:58:31.583 2024-02-22 06:58:31.583 1000 FEE 434395 17798 6029620 2024-02-22 06:58:31.583 2024-02-22 06:58:31.583 9000 TIP 434395 13903 6029626 2024-02-22 06:59:48.735 2024-02-22 06:59:48.735 1000 FEE 434631 20525 6029666 2024-02-22 07:14:46.349 2024-02-22 07:14:46.349 1000 FEE 433943 21275 6029667 2024-02-22 07:14:46.349 2024-02-22 07:14:46.349 9000 TIP 433943 17514 6029680 2024-02-22 07:16:45.102 2024-02-22 07:16:45.102 45000 FEE 434440 17639 6029681 2024-02-22 07:16:45.102 2024-02-22 07:16:45.102 405000 TIP 434440 19103 6029683 2024-02-22 07:17:20.534 2024-02-22 07:17:20.534 1000 FEE 434638 10934 6029698 2024-02-22 07:25:40.323 2024-02-22 07:25:40.323 1000 FEE 434616 8376 6029699 2024-02-22 07:25:40.323 2024-02-22 07:25:40.323 9000 TIP 434616 18231 6029708 2024-02-22 07:27:38.773 2024-02-22 07:27:38.773 2100 FEE 433943 18076 6029709 2024-02-22 07:27:38.773 2024-02-22 07:27:38.773 18900 TIP 433943 5761 6029732 2024-02-22 07:27:46.969 2024-02-22 07:27:46.969 2100 FEE 433555 20179 6029733 2024-02-22 07:27:46.969 2024-02-22 07:27:46.969 18900 TIP 433555 21061 6029738 2024-02-22 07:27:49.095 2024-02-22 07:27:49.095 2100 FEE 434243 16834 6029739 2024-02-22 07:27:49.095 2024-02-22 07:27:49.095 18900 TIP 434243 21026 6029773 2024-02-22 07:36:35.34 2024-02-22 07:36:35.34 1000 FEE 434650 940 6029787 2024-02-22 07:37:24.234 2024-02-22 07:37:24.234 2100 FEE 433828 21522 6029788 2024-02-22 07:37:24.234 2024-02-22 07:37:24.234 18900 TIP 433828 15833 6029799 2024-02-22 07:39:51.862 2024-02-22 07:39:51.862 1000 FEE 434655 652 6029805 2024-02-22 07:42:13.059 2024-02-22 07:42:13.059 1000 FEE 434637 18731 6029806 2024-02-22 07:42:13.059 2024-02-22 07:42:13.059 9000 TIP 434637 21155 6029807 2024-02-22 07:42:15.237 2024-02-22 07:42:15.237 1000 FEE 434535 5444 6029808 2024-02-22 07:42:15.237 2024-02-22 07:42:15.237 9000 TIP 434535 763 6029832 2024-02-22 07:54:07.617 2024-02-22 07:54:07.617 10800 FEE 434186 21400 6029833 2024-02-22 07:54:07.617 2024-02-22 07:54:07.617 97200 TIP 434186 4043 6029843 2024-02-22 07:56:39.139 2024-02-22 07:56:39.139 2100 FEE 434615 20911 6029844 2024-02-22 07:56:39.139 2024-02-22 07:56:39.139 18900 TIP 434615 5527 6029858 2024-02-22 07:57:24.505 2024-02-22 07:57:24.505 21000 DONT_LIKE_THIS 434591 16929 6029859 2024-02-22 07:58:03.512 2024-02-22 07:58:03.512 10000 FEE 434665 10007 6029868 2024-02-22 08:01:51.994 2024-02-22 08:01:51.994 1000 FEE 434666 11450 6029905 2024-02-22 08:16:55.18 2024-02-22 08:16:55.18 10000 FEE 433828 21140 6029906 2024-02-22 08:16:55.18 2024-02-22 08:16:55.18 90000 TIP 433828 13100 6029908 2024-02-22 08:17:43.523 2024-02-22 08:17:43.523 0 FEE 434673 1389 6029917 2024-02-22 08:21:00.297 2024-02-22 08:21:00.297 10000 FEE 434665 21212 6029918 2024-02-22 08:21:00.297 2024-02-22 08:21:00.297 90000 TIP 434665 6687 6029954 2024-02-22 08:36:33.958 2024-02-22 08:36:33.958 2100 FEE 434665 8269 6029955 2024-02-22 08:36:33.958 2024-02-22 08:36:33.958 18900 TIP 434665 1552 6029962 2024-02-22 08:38:06.618 2024-02-22 08:38:06.618 2100 FEE 434627 21103 6029963 2024-02-22 08:38:06.618 2024-02-22 08:38:06.618 18900 TIP 434627 20117 6030003 2024-02-22 08:47:57.238 2024-02-22 08:47:57.238 100 FEE 434646 16848 6030004 2024-02-22 08:47:57.238 2024-02-22 08:47:57.238 900 TIP 434646 6300 6030005 2024-02-22 08:47:57.578 2024-02-22 08:47:57.578 100 FEE 434646 626 6030006 2024-02-22 08:47:57.578 2024-02-22 08:47:57.578 900 TIP 434646 17710 6030013 2024-02-22 08:47:59.08 2024-02-22 08:47:59.08 100 FEE 434646 19572 6030014 2024-02-22 08:47:59.08 2024-02-22 08:47:59.08 900 TIP 434646 8045 6030019 2024-02-22 08:49:45.71 2024-02-22 08:49:45.71 0 FEE 434680 19938 6030026 2024-02-22 08:51:46.04 2024-02-22 08:51:46.04 0 FEE 434684 20006 6030028 2024-02-22 08:52:43.57 2024-02-22 08:52:43.57 0 FEE 434682 17722 6030078 2024-02-22 09:04:02.871 2024-02-22 09:04:02.871 1000 FEE 434691 12959 6030112 2024-02-22 09:17:50.413 2024-02-22 09:17:50.413 1000 FEE 434696 14308 6030115 2024-02-22 09:18:22.376 2024-02-22 09:18:22.376 2100 FEE 433851 11288 6030116 2024-02-22 09:18:22.376 2024-02-22 09:18:22.376 18900 TIP 433851 3439 6030166 2024-02-22 09:27:28.53 2024-02-22 09:27:28.53 4000 FEE 434698 20267 6030167 2024-02-22 09:27:28.53 2024-02-22 09:27:28.53 36000 TIP 434698 16543 6030173 2024-02-22 09:29:08.008 2024-02-22 09:29:08.008 500 FEE 434535 21061 6030174 2024-02-22 09:29:08.008 2024-02-22 09:29:08.008 4500 TIP 434535 19890 6030185 2024-02-22 09:30:59.196 2024-02-22 09:30:59.196 10000 FEE 434707 11798 6030192 2024-02-22 09:32:44.723 2024-02-22 09:32:44.723 4000 FEE 434604 763 6030193 2024-02-22 09:32:44.723 2024-02-22 09:32:44.723 36000 TIP 434604 628 6030235 2024-02-22 09:37:09.04 2024-02-22 09:37:09.04 300 FEE 434713 3377 6030236 2024-02-22 09:37:09.04 2024-02-22 09:37:09.04 2700 TIP 434713 12422 6030289 2024-02-22 09:40:06.599 2024-02-22 09:40:06.599 2100 FEE 434642 21063 6030290 2024-02-22 09:40:06.599 2024-02-22 09:40:06.599 18900 TIP 434642 4166 6030294 2024-02-22 09:42:19.515 2024-02-22 09:42:19.515 0 FEE 434718 6202 6030295 2024-02-22 09:42:34.394 2024-02-22 09:42:34.394 12800 FEE 433724 997 6030296 2024-02-22 09:42:34.394 2024-02-22 09:42:34.394 115200 TIP 433724 20502 6030301 2024-02-22 09:44:58.559 2024-02-22 09:44:58.559 1000 FEE 434721 616 6030309 2024-02-22 09:45:46.757 2024-02-22 09:45:46.757 100 FEE 434440 19690 6030310 2024-02-22 09:45:46.757 2024-02-22 09:45:46.757 900 TIP 434440 16387 6029386 2024-02-22 06:23:25.899 2024-02-22 06:23:25.899 9000 TIP 434437 5752 6029475 2024-02-22 06:23:57.069 2024-02-22 06:23:57.069 1000 FEE 434299 20539 6029476 2024-02-22 06:23:57.069 2024-02-22 06:23:57.069 9000 TIP 434299 20963 6029481 2024-02-22 06:23:57.944 2024-02-22 06:23:57.944 1000 FEE 434290 19815 6029482 2024-02-22 06:23:57.944 2024-02-22 06:23:57.944 9000 TIP 434290 13174 6029489 2024-02-22 06:24:00.643 2024-02-22 06:24:00.643 1000 FEE 434281 16406 6029490 2024-02-22 06:24:00.643 2024-02-22 06:24:00.643 9000 TIP 434281 940 6029507 2024-02-22 06:25:13.737 2024-02-22 06:25:13.737 2100 FEE 434577 11561 6029508 2024-02-22 06:25:13.737 2024-02-22 06:25:13.737 18900 TIP 434577 2029 6029521 2024-02-22 06:33:58.029 2024-02-22 06:33:58.029 1000 FEE 434613 694 6029530 2024-02-22 06:35:09.402 2024-02-22 06:35:09.402 0 FEE 434613 15890 6029559 2024-02-22 06:47:00.249 2024-02-22 06:47:00.249 2100 FEE 434440 17944 6029560 2024-02-22 06:47:00.249 2024-02-22 06:47:00.249 18900 TIP 434440 7891 6029577 2024-02-22 06:51:10.099 2024-02-22 06:51:10.099 1000 FEE 434623 828 6029587 2024-02-22 06:53:46.032 2024-02-22 06:53:46.032 100000 FEE 434626 9366 6029594 2024-02-22 06:54:28.872 2024-02-22 06:54:28.872 100000 FEE 434627 21329 6029595 2024-02-22 06:54:32.408 2024-02-22 06:54:32.408 1000 FEE 434628 925 6029621 2024-02-22 06:58:41.774 2024-02-22 06:58:41.774 1000 FEE 434405 17166 6029622 2024-02-22 06:58:41.774 2024-02-22 06:58:41.774 9000 TIP 434405 21539 6029628 2024-02-22 07:00:04.673 2024-02-22 07:00:04.673 100000 FEE 434632 8400 6029629 2024-02-22 07:00:05.26 2024-02-22 07:00:05.26 1000 FEE 434633 21577 6029642 2024-02-22 07:05:07.532 2024-02-22 07:05:07.532 1000 FEE 434635 15521 6029643 2024-02-22 07:06:02.694 2024-02-22 07:06:02.694 1000 FEE 434636 1784 6029648 2024-02-22 07:07:47.474 2024-02-22 07:07:47.474 3000 FEE 434440 18673 6029649 2024-02-22 07:07:47.474 2024-02-22 07:07:47.474 27000 TIP 434440 15148 6029710 2024-02-22 07:27:39.621 2024-02-22 07:27:39.621 2100 FEE 434535 10063 6029711 2024-02-22 07:27:39.621 2024-02-22 07:27:39.621 18900 TIP 434535 13217 6029718 2024-02-22 07:27:42.284 2024-02-22 07:27:42.284 2100 FEE 434396 18101 6029719 2024-02-22 07:27:42.284 2024-02-22 07:27:42.284 18900 TIP 434396 12744 6029736 2024-02-22 07:27:48.51 2024-02-22 07:27:48.51 2100 FEE 433878 20058 6029737 2024-02-22 07:27:48.51 2024-02-22 07:27:48.51 18900 TIP 433878 16684 6029753 2024-02-22 07:33:12.458 2024-02-22 07:33:12.458 100000 FEE 434647 20825 6029762 2024-02-22 07:33:57.185 2024-02-22 07:33:57.185 1000 FEE 434627 16329 6029763 2024-02-22 07:33:57.185 2024-02-22 07:33:57.185 9000 TIP 434627 21222 6029796 2024-02-22 07:39:03.212 2024-02-22 07:39:03.212 400 FEE 434319 649 6029797 2024-02-22 07:39:03.212 2024-02-22 07:39:03.212 3600 TIP 434319 11522 6029811 2024-02-22 07:43:59.449 2024-02-22 07:43:59.449 1000 FEE 434656 10944 6029813 2024-02-22 07:44:45.655 2024-02-22 07:44:45.655 1000 FEE 434657 1705 6029825 2024-02-22 07:50:43.641 2024-02-22 07:50:43.641 3200 FEE 433943 1261 6029826 2024-02-22 07:50:43.641 2024-02-22 07:50:43.641 28800 TIP 433943 2513 6029861 2024-02-22 07:58:44.779 2024-02-22 07:58:44.779 2100 FEE 434660 15843 6029862 2024-02-22 07:58:44.779 2024-02-22 07:58:44.779 18900 TIP 434660 7659 6029889 2024-02-22 08:07:50.089 2024-02-22 08:07:50.089 1000 FEE 434671 5195 6029924 2024-02-22 08:23:12.175 2024-02-22 08:23:12.175 2100 FEE 434560 891 6029925 2024-02-22 08:23:12.175 2024-02-22 08:23:12.175 18900 TIP 434560 18460 6029926 2024-02-22 08:23:17.685 2024-02-22 08:23:17.685 2100 FEE 434674 9333 6029927 2024-02-22 08:23:17.685 2024-02-22 08:23:17.685 18900 TIP 434674 20577 6029969 2024-02-22 08:41:43.513 2024-02-22 08:41:43.513 1000 FEE 434678 8535 6030020 2024-02-22 08:49:58.138 2024-02-22 08:49:58.138 800 FEE 434385 12272 6030021 2024-02-22 08:49:58.138 2024-02-22 08:49:58.138 7200 TIP 434385 16594 6030080 2024-02-22 09:04:19.073 2024-02-22 09:04:19.073 0 FEE 434688 20026 6030121 2024-02-22 09:19:27.231 2024-02-22 09:19:27.231 10000 FEE 434698 15941 6030134 2024-02-22 09:23:33.04 2024-02-22 09:23:33.04 800 FEE 434577 15925 6030135 2024-02-22 09:23:33.04 2024-02-22 09:23:33.04 7200 TIP 434577 8176 6030178 2024-02-22 09:29:57.4 2024-02-22 09:29:57.4 800 FEE 434488 2293 6030179 2024-02-22 09:29:57.4 2024-02-22 09:29:57.4 7200 TIP 434488 977 6030182 2024-02-22 09:30:36.355 2024-02-22 09:30:36.355 42100 FEE 432920 18448 6030183 2024-02-22 09:30:36.355 2024-02-22 09:30:36.355 378900 TIP 432920 828 6030209 2024-02-22 09:35:29.765 2024-02-22 09:35:29.765 1000 FEE 434713 16193 6030216 2024-02-22 09:36:53.842 2024-02-22 09:36:53.842 3000 FEE 430498 20691 6030217 2024-02-22 09:36:53.842 2024-02-22 09:36:53.842 27000 TIP 430498 4027 6030247 2024-02-22 09:39:01.302 2024-02-22 09:39:01.302 2100 FEE 434535 736 6030248 2024-02-22 09:39:01.302 2024-02-22 09:39:01.302 18900 TIP 434535 21026 6030272 2024-02-22 09:39:15.485 2024-02-22 09:39:15.485 2100 FEE 434577 649 6030273 2024-02-22 09:39:15.485 2024-02-22 09:39:15.485 18900 TIP 434577 20963 6030276 2024-02-22 09:39:18.122 2024-02-22 09:39:18.122 2100 FEE 434619 10668 6030277 2024-02-22 09:39:18.122 2024-02-22 09:39:18.122 18900 TIP 434619 18116 6030287 2024-02-22 09:40:05.912 2024-02-22 09:40:05.912 2100 FEE 434424 15521 6030288 2024-02-22 09:40:05.912 2024-02-22 09:40:05.912 18900 TIP 434424 21051 6030305 2024-02-22 09:45:08.833 2024-02-22 09:45:08.833 21000 FEE 434722 632 6030317 2024-02-22 09:45:48.937 2024-02-22 09:45:48.937 100 FEE 434440 19810 6030318 2024-02-22 09:45:48.937 2024-02-22 09:45:48.937 900 TIP 434440 21036 6030335 2024-02-22 09:48:12.541 2024-02-22 09:48:12.541 5000 FEE 434715 19329 6030336 2024-02-22 09:48:12.541 2024-02-22 09:48:12.541 45000 TIP 434715 19906 6030337 2024-02-22 09:48:23.506 2024-02-22 09:48:23.506 0 FEE 434724 10112 6030352 2024-02-22 09:50:41.395 2024-02-22 09:50:41.395 4000 FEE 434155 21493 6030353 2024-02-22 09:50:41.395 2024-02-22 09:50:41.395 36000 TIP 434155 11561 6030355 2024-02-22 09:51:01.197 2024-02-22 09:51:01.197 0 FEE 434718 18314 6030387 2024-02-22 09:57:33.146 2024-02-22 09:57:33.146 2100 FEE 434723 14795 6030388 2024-02-22 09:57:33.146 2024-02-22 09:57:33.146 18900 TIP 434723 9378 6030390 2024-02-22 09:58:22.704 2024-02-22 09:58:22.704 2100 FEE 434730 21352 6030391 2024-02-22 09:58:22.704 2024-02-22 09:58:22.704 18900 TIP 434730 5455 6030427 2024-02-22 10:06:13.033 2024-02-22 10:06:13.033 10000 FEE 433828 10060 6030428 2024-02-22 10:06:13.033 2024-02-22 10:06:13.033 90000 TIP 433828 20511 6030439 2024-02-22 10:09:02.961 2024-02-22 10:09:02.961 10000 FEE 433943 18984 6030440 2024-02-22 10:09:02.961 2024-02-22 10:09:02.961 90000 TIP 433943 19484 6030442 2024-02-22 10:10:52.223 2024-02-22 10:10:52.223 1000 FEE 434748 1519 6030448 2024-02-22 10:13:50.305 2024-02-22 10:13:50.305 1000 FEE 434749 19263 6030484 2024-02-22 10:21:04.732 2024-02-22 10:21:04.732 1000 FEE 434757 766 6030499 2024-02-22 10:22:59.604 2024-02-22 10:22:59.604 2100 FEE 434709 15243 6030500 2024-02-22 10:22:59.604 2024-02-22 10:22:59.604 18900 TIP 434709 21287 6030513 2024-02-22 10:25:30.582 2024-02-22 10:25:30.582 1000 FEE 434762 19537 6030522 2024-02-22 10:26:25.275 2024-02-22 10:26:25.275 12800 FEE 429291 5527 6030523 2024-02-22 10:26:25.275 2024-02-22 10:26:25.275 115200 TIP 429291 20776 6030531 2024-02-22 10:28:21.056 2024-02-22 10:28:21.056 1000 FEE 434765 889 6030533 2024-02-22 10:29:20.539 2024-02-22 10:29:20.539 1000 FEE 434766 21430 6030534 2024-02-22 10:29:23.116 2024-02-22 10:29:23.116 1000 FEE 434767 21605 6029474 2024-02-22 06:23:56.05 2024-02-22 06:23:56.05 9000 TIP 434301 5522 6029495 2024-02-22 06:24:02.672 2024-02-22 06:24:02.672 1000 FEE 434265 18008 6029496 2024-02-22 06:24:02.672 2024-02-22 06:24:02.672 9000 TIP 434265 18817 6029499 2024-02-22 06:24:03.207 2024-02-22 06:24:03.207 1000 FEE 434263 20464 6029500 2024-02-22 06:24:03.207 2024-02-22 06:24:03.207 9000 TIP 434263 21022 6029504 2024-02-22 06:24:20.67 2024-02-22 06:24:20.67 1000 FEE 434609 14271 6029506 2024-02-22 06:25:09.484 2024-02-22 06:25:09.484 1000 FEE 434610 21159 6029518 2024-02-22 06:33:01.409 2024-02-22 06:33:01.409 1000 FEE 434611 20258 6029522 2024-02-22 06:33:58.626 2024-02-22 06:33:58.626 1000 FEE 434614 19735 6029554 2024-02-22 06:45:33.966 2024-02-22 06:45:33.966 3000 FEE 434609 17172 6029555 2024-02-22 06:45:33.966 2024-02-22 06:45:33.966 27000 TIP 434609 19640 6029611 2024-02-22 06:56:25.237 2024-02-22 06:56:25.237 1000 FEE 434629 690 6029617 2024-02-22 06:58:17.346 2024-02-22 06:58:17.346 1000 FEE 434512 1273 6029618 2024-02-22 06:58:17.346 2024-02-22 06:58:17.346 9000 TIP 434512 14376 6029623 2024-02-22 06:58:47.129 2024-02-22 06:58:47.129 1000 FEE 434589 14910 6029624 2024-02-22 06:58:47.129 2024-02-22 06:58:47.129 9000 TIP 434589 21352 6029637 2024-02-22 07:02:52.357 2024-02-22 07:02:52.357 1000 FEE 433828 21540 6029638 2024-02-22 07:02:52.357 2024-02-22 07:02:52.357 9000 TIP 433828 11776 6029651 2024-02-22 07:08:14.954 2024-02-22 07:08:14.954 10000 FEE 434637 854 6029661 2024-02-22 07:11:57.556 2024-02-22 07:11:57.556 3000 FEE 433844 9816 6029662 2024-02-22 07:11:57.556 2024-02-22 07:11:57.556 27000 TIP 433844 2328 6029674 2024-02-22 07:14:48.254 2024-02-22 07:14:48.254 1000 FEE 433943 5746 6029675 2024-02-22 07:14:48.254 2024-02-22 07:14:48.254 9000 TIP 433943 777 6029694 2024-02-22 07:23:24.551 2024-02-22 07:23:24.551 0 FEE 434640 18500 6029702 2024-02-22 07:27:36.863 2024-02-22 07:27:36.863 2100 FEE 434498 21349 6029703 2024-02-22 07:27:36.863 2024-02-22 07:27:36.863 18900 TIP 434498 5703 6029706 2024-02-22 07:27:38.162 2024-02-22 07:27:38.162 2100 FEE 434285 1198 6029707 2024-02-22 07:27:38.162 2024-02-22 07:27:38.162 18900 TIP 434285 831 6029716 2024-02-22 07:27:41.41 2024-02-22 07:27:41.41 2100 FEE 434385 712 6029717 2024-02-22 07:27:41.41 2024-02-22 07:27:41.41 18900 TIP 434385 21060 6029720 2024-02-22 07:27:42.703 2024-02-22 07:27:42.703 2100 FEE 434488 18270 6029721 2024-02-22 07:27:42.703 2024-02-22 07:27:42.703 18900 TIP 434488 21344 6029726 2024-02-22 07:27:44.794 2024-02-22 07:27:44.794 2100 FEE 433740 10056 6029727 2024-02-22 07:27:44.794 2024-02-22 07:27:44.794 18900 TIP 433740 1060 6029756 2024-02-22 07:33:43.772 2024-02-22 07:33:43.772 1000 FEE 434627 18280 6029757 2024-02-22 07:33:43.772 2024-02-22 07:33:43.772 9000 TIP 434627 630 6029766 2024-02-22 07:33:57.566 2024-02-22 07:33:57.566 1000 FEE 434627 4079 6029767 2024-02-22 07:33:57.566 2024-02-22 07:33:57.566 9000 TIP 434627 12422 6029792 2024-02-22 07:38:05.317 2024-02-22 07:38:05.317 1000 FEE 434653 20573 6029809 2024-02-22 07:42:59.173 2024-02-22 07:42:59.173 0 FEE 434650 18539 6029817 2024-02-22 07:47:18.795 2024-02-22 07:47:18.795 1000 FEE 434658 3400 6029834 2024-02-22 07:54:26.307 2024-02-22 07:54:26.307 1000 FEE 434662 937 6029873 2024-02-22 08:02:52.788 2024-02-22 08:02:52.788 2100 FEE 434636 6164 6029874 2024-02-22 08:02:52.788 2024-02-22 08:02:52.788 18900 TIP 434636 20993 6029896 2024-02-22 08:09:31.46 2024-02-22 08:09:31.46 1000 FEE 434672 19117 6029921 2024-02-22 08:22:53.893 2024-02-22 08:22:53.893 2100 FEE 434665 17513 6029922 2024-02-22 08:22:53.893 2024-02-22 08:22:53.893 18900 TIP 434665 1959 6029981 2024-02-22 08:46:03.793 2024-02-22 08:46:03.793 1000 FEE 434680 10608 6029999 2024-02-22 08:47:54.096 2024-02-22 08:47:54.096 100 FEE 434642 19652 6030000 2024-02-22 08:47:54.096 2024-02-22 08:47:54.096 900 TIP 434642 15159 6030011 2024-02-22 08:47:58.609 2024-02-22 08:47:58.609 100 FEE 434646 623 6030012 2024-02-22 08:47:58.609 2024-02-22 08:47:58.609 900 TIP 434646 13246 6030023 2024-02-22 08:50:38.532 2024-02-22 08:50:38.532 1000 FEE 434684 1564 6030032 2024-02-22 08:54:46.2 2024-02-22 08:54:46.2 500 FEE 434651 9809 6030033 2024-02-22 08:54:46.2 2024-02-22 08:54:46.2 4500 TIP 434651 10063 6030050 2024-02-22 08:56:51.837 2024-02-22 08:56:51.837 5000 FEE 433828 14650 6030051 2024-02-22 08:56:51.837 2024-02-22 08:56:51.837 45000 TIP 433828 5128 6029524 2024-02-22 06:34:27.756 2024-02-22 06:34:27.756 0 FEE 434613 19524 6029525 2024-02-22 06:34:30.365 2024-02-22 06:34:30.365 1000 FEE 434611 6687 6029526 2024-02-22 06:34:30.365 2024-02-22 06:34:30.365 9000 TIP 434611 715 6029531 2024-02-22 06:35:36.228 2024-02-22 06:35:36.228 1000 FEE 434616 16638 6029566 2024-02-22 06:48:12.457 2024-02-22 06:48:12.457 2100 FEE 433943 18423 6029567 2024-02-22 06:48:12.457 2024-02-22 06:48:12.457 18900 TIP 433943 19952 6029574 2024-02-22 06:50:35.91 2024-02-22 06:50:35.91 2100 FEE 434619 20854 6029575 2024-02-22 06:50:35.91 2024-02-22 06:50:35.91 18900 TIP 434619 21458 6029586 2024-02-22 06:53:43.659 2024-02-22 06:53:43.659 0 FEE 434625 4079 6029598 2024-02-22 06:54:42.442 2024-02-22 06:54:42.442 2100 FEE 434622 11288 6029599 2024-02-22 06:54:42.442 2024-02-22 06:54:42.442 18900 TIP 434622 20523 6029605 2024-02-22 06:55:05.416 2024-02-22 06:55:05.416 1000 FEE 434580 1817 6029606 2024-02-22 06:55:05.416 2024-02-22 06:55:05.416 9000 TIP 434580 897 6029654 2024-02-22 07:08:37.242 2024-02-22 07:08:37.242 2100 FEE 434457 9476 6029655 2024-02-22 07:08:37.242 2024-02-22 07:08:37.242 18900 TIP 434457 21422 6029684 2024-02-22 07:17:33.429 2024-02-22 07:17:33.429 200 FEE 434313 10056 6029685 2024-02-22 07:17:33.429 2024-02-22 07:17:33.429 1800 TIP 434313 2620 6029714 2024-02-22 07:27:40.669 2024-02-22 07:27:40.669 2100 FEE 434278 9551 6029715 2024-02-22 07:27:40.669 2024-02-22 07:27:40.669 18900 TIP 434278 1985 6029752 2024-02-22 07:33:08.587 2024-02-22 07:33:08.587 210000 FEE 434646 17157 6029777 2024-02-22 07:36:49.013 2024-02-22 07:36:49.013 1000 FEE 434627 1970 6029778 2024-02-22 07:36:49.013 2024-02-22 07:36:49.013 9000 TIP 434627 19235 6029786 2024-02-22 07:37:07.904 2024-02-22 07:37:07.904 1000 FEE 434652 6382 6029789 2024-02-22 07:37:24.267 2024-02-22 07:37:24.267 2100 FEE 433828 12609 6029790 2024-02-22 07:37:24.267 2024-02-22 07:37:24.267 18900 TIP 433828 5359 6029823 2024-02-22 07:50:25.295 2024-02-22 07:50:25.295 2100 FEE 434488 712 6029824 2024-02-22 07:50:25.295 2024-02-22 07:50:25.295 18900 TIP 434488 1970 6029835 2024-02-22 07:54:45.346 2024-02-22 07:54:45.346 200 FEE 434371 18470 6029836 2024-02-22 07:54:45.346 2024-02-22 07:54:45.346 1800 TIP 434371 21541 6029841 2024-02-22 07:56:09.899 2024-02-22 07:56:09.899 2100 FEE 434642 20546 6029842 2024-02-22 07:56:09.899 2024-02-22 07:56:09.899 18900 TIP 434642 9337 6029845 2024-02-22 07:56:43.729 2024-02-22 07:56:43.729 2100 FEE 434619 19156 6029846 2024-02-22 07:56:43.729 2024-02-22 07:56:43.729 18900 TIP 434619 1814 6029871 2024-02-22 08:02:04.436 2024-02-22 08:02:04.436 1000 FEE 434667 760 6029885 2024-02-22 08:05:07.437 2024-02-22 08:05:07.437 1000 FEE 434669 20190 6029910 2024-02-22 08:18:44.974 2024-02-22 08:18:44.974 10000 FEE 434595 2773 6029911 2024-02-22 08:18:44.974 2024-02-22 08:18:44.974 90000 TIP 434595 12049 6029944 2024-02-22 08:32:01.262 2024-02-22 08:32:01.262 1000 FEE 434675 14225 6029948 2024-02-22 08:32:19.886 2024-02-22 08:32:19.886 1000 FEE 434676 20861 6029970 2024-02-22 08:41:50.07 2024-02-22 08:41:50.07 800 FEE 434486 11263 6029971 2024-02-22 08:41:50.07 2024-02-22 08:41:50.07 7200 TIP 434486 13553 6029995 2024-02-22 08:47:53.483 2024-02-22 08:47:53.483 100 FEE 434642 2780 6029996 2024-02-22 08:47:53.483 2024-02-22 08:47:53.483 900 TIP 434642 18199 6029997 2024-02-22 08:47:53.774 2024-02-22 08:47:53.774 100 FEE 434642 1983 6029998 2024-02-22 08:47:53.774 2024-02-22 08:47:53.774 900 TIP 434642 18816 6030001 2024-02-22 08:47:54.693 2024-02-22 08:47:54.693 100 FEE 434642 18076 6030002 2024-02-22 08:47:54.693 2024-02-22 08:47:54.693 900 TIP 434642 631 6030025 2024-02-22 08:51:26.828 2024-02-22 08:51:26.828 0 FEE 434684 14278 6030044 2024-02-22 08:54:57.108 2024-02-22 08:54:57.108 500 FEE 434285 6573 6030045 2024-02-22 08:54:57.108 2024-02-22 08:54:57.108 4500 TIP 434285 16879 6030046 2024-02-22 08:54:57.842 2024-02-22 08:54:57.842 500 FEE 434285 20606 6030047 2024-02-22 08:54:57.842 2024-02-22 08:54:57.842 4500 TIP 434285 21627 6030067 2024-02-22 09:00:17.284 2024-02-22 09:00:17.284 5000 FEE 433688 19235 6030068 2024-02-22 09:00:17.284 2024-02-22 09:00:17.284 45000 TIP 433688 964 6030074 2024-02-22 09:02:56.799 2024-02-22 09:02:56.799 1000 FEE 434688 18468 6030090 2024-02-22 09:06:40.686 2024-02-22 09:06:40.686 0 FEE 434692 16432 6030096 2024-02-22 09:09:32.675 2024-02-22 09:09:32.675 2100 FEE 434681 18679 6030097 2024-02-22 09:09:32.675 2024-02-22 09:09:32.675 18900 TIP 434681 13055 6030110 2024-02-22 09:16:13.997 2024-02-22 09:16:13.997 10000 FEE 434695 4322 6030120 2024-02-22 09:19:26.858 2024-02-22 09:19:26.858 10000 FEE 434697 1291 6030130 2024-02-22 09:21:48.187 2024-02-22 09:21:48.187 100000 FEE 434699 7847 6030138 2024-02-22 09:23:56.977 2024-02-22 09:23:56.977 1200 FEE 434319 19511 6030139 2024-02-22 09:23:56.977 2024-02-22 09:23:56.977 10800 TIP 434319 10862 6030150 2024-02-22 09:26:45.325 2024-02-22 09:26:45.325 100 FEE 434685 16988 6030151 2024-02-22 09:26:45.325 2024-02-22 09:26:45.325 900 TIP 434685 12122 6030157 2024-02-22 09:26:52.541 2024-02-22 09:26:52.541 4000 FEE 434535 20816 6030158 2024-02-22 09:26:52.541 2024-02-22 09:26:52.541 36000 TIP 434535 16145 6030177 2024-02-22 09:29:43.684 2024-02-22 09:29:43.684 1000 FEE 434704 16954 6030187 2024-02-22 09:31:32.652 2024-02-22 09:31:32.652 1000 FEE 434708 1483 6030194 2024-02-22 09:32:57.967 2024-02-22 09:32:57.967 0 FEE 434706 1534 6030196 2024-02-22 09:33:10.906 2024-02-22 09:33:10.906 10000 FEE 434711 20015 6030204 2024-02-22 09:34:46.464 2024-02-22 09:34:46.464 100 FEE 434674 13763 6030205 2024-02-22 09:34:46.464 2024-02-22 09:34:46.464 900 TIP 434674 1960 6030237 2024-02-22 09:37:14.842 2024-02-22 09:37:14.842 100 FEE 434713 16660 6030238 2024-02-22 09:37:14.842 2024-02-22 09:37:14.842 900 TIP 434713 736 6030260 2024-02-22 09:39:07.787 2024-02-22 09:39:07.787 2100 FEE 434440 650 6030261 2024-02-22 09:39:07.787 2024-02-22 09:39:07.787 18900 TIP 434440 16424 6030266 2024-02-22 09:39:11.605 2024-02-22 09:39:11.605 6400 FEE 433712 4574 6030267 2024-02-22 09:39:11.605 2024-02-22 09:39:11.605 57600 TIP 433712 6687 6030280 2024-02-22 09:39:54.841 2024-02-22 09:39:54.841 2100 FEE 433206 3979 6030281 2024-02-22 09:39:54.841 2024-02-22 09:39:54.841 18900 TIP 433206 11263 6030323 2024-02-22 09:45:57.728 2024-02-22 09:45:57.728 0 FEE 434721 861 6030332 2024-02-22 09:48:04.793 2024-02-22 09:48:04.793 1000 FEE 434725 21371 6030338 2024-02-22 09:48:47 2024-02-22 09:48:47 1000 FEE 434726 9809 6030349 2024-02-22 09:50:08.138 2024-02-22 09:50:08.138 1000 FEE 434729 649 6030368 2024-02-22 09:53:18.2 2024-02-22 09:53:18.2 1000 FEE 434731 19638 6030369 2024-02-22 09:53:29.044 2024-02-22 09:53:29.044 0 FEE 434730 21600 6030373 2024-02-22 09:54:50.046 2024-02-22 09:54:50.046 1000 FEE 434734 18994 6030374 2024-02-22 09:54:52.648 2024-02-22 09:54:52.648 1100 FEE 434434 21157 6030375 2024-02-22 09:54:52.648 2024-02-22 09:54:52.648 9900 TIP 434434 16847 6030403 2024-02-22 10:01:20.518 2024-02-22 10:01:20.518 6400 FEE 433735 18659 6030404 2024-02-22 10:01:20.518 2024-02-22 10:01:20.518 57600 TIP 433735 9026 6030415 2024-02-22 10:03:56.874 2024-02-22 10:03:56.874 1000 FEE 434742 15196 6030423 2024-02-22 10:05:05.075 2024-02-22 10:05:05.075 1000 FEE 434744 20409 6029542 2024-02-22 06:41:23.561 2024-02-22 06:41:23.561 10000 FEE 434615 6384 6029543 2024-02-22 06:41:23.561 2024-02-22 06:41:23.561 90000 TIP 434615 20377 6029568 2024-02-22 06:48:46.116 2024-02-22 06:48:46.116 900 FEE 434285 13399 6029569 2024-02-22 06:48:46.116 2024-02-22 06:48:46.116 8100 TIP 434285 17275 6029578 2024-02-22 06:51:35.254 2024-02-22 06:51:35.254 10000 FEE 434610 17226 6029579 2024-02-22 06:51:35.254 2024-02-22 06:51:35.254 90000 TIP 434610 6687 6029582 2024-02-22 06:51:56.211 2024-02-22 06:51:56.211 1000 FEE 434624 1806 6029608 2024-02-22 06:55:13.856 2024-02-22 06:55:13.856 1000 FEE 434575 19815 6029609 2024-02-22 06:55:13.856 2024-02-22 06:55:13.856 9000 TIP 434575 13327 6029658 2024-02-22 07:10:49.375 2024-02-22 07:10:49.375 1000 FEE 190861 21042 6029659 2024-02-22 07:10:49.375 2024-02-22 07:10:49.375 9000 TIP 190861 1658 6029668 2024-02-22 07:14:47.101 2024-02-22 07:14:47.101 1000 FEE 433943 12921 6029669 2024-02-22 07:14:47.101 2024-02-22 07:14:47.101 9000 TIP 433943 20681 6029672 2024-02-22 07:14:48.064 2024-02-22 07:14:48.064 1000 FEE 433943 638 6029673 2024-02-22 07:14:48.064 2024-02-22 07:14:48.064 9000 TIP 433943 19759 6029734 2024-02-22 07:27:47.911 2024-02-22 07:27:47.911 2100 FEE 434500 18314 6029735 2024-02-22 07:27:47.911 2024-02-22 07:27:47.911 18900 TIP 434500 21044 6029745 2024-02-22 07:29:56.193 2024-02-22 07:29:56.193 1000 FEE 434643 1213 6029760 2024-02-22 07:33:57.008 2024-02-22 07:33:57.008 1000 FEE 434627 21012 6029761 2024-02-22 07:33:57.008 2024-02-22 07:33:57.008 9000 TIP 434627 4175 6029769 2024-02-22 07:34:16.13 2024-02-22 07:34:16.13 1000 FEE 434648 17184 6029585 2024-02-22 06:53:03.582 2024-02-22 06:53:03.582 1000 STREAM 141924 20854 6029588 2024-02-22 06:54:03.59 2024-02-22 06:54:03.59 1000 STREAM 141924 787 6035751 2024-02-22 18:59:11.102 2024-02-22 18:59:11.102 20700 TIP 435399 21389 6035799 2024-02-22 19:05:36.371 2024-02-22 19:05:36.371 1000 FEE 435407 18736 6035800 2024-02-22 19:05:38.178 2024-02-22 19:05:38.178 100 FEE 435138 18819 6035801 2024-02-22 19:05:38.178 2024-02-22 19:05:38.178 900 TIP 435138 18896 6035809 2024-02-22 19:06:32.505 2024-02-22 19:06:32.505 1000 FEE 435408 17041 6035880 2024-02-22 19:14:52.908 2024-02-22 19:14:52.908 1100 FEE 435411 16353 6035881 2024-02-22 19:14:52.908 2024-02-22 19:14:52.908 9900 TIP 435411 1439 6035882 2024-02-22 19:14:53.505 2024-02-22 19:14:53.505 1100 FEE 435411 16336 6035883 2024-02-22 19:14:53.505 2024-02-22 19:14:53.505 9900 TIP 435411 13599 6035884 2024-02-22 19:14:54.045 2024-02-22 19:14:54.045 1100 FEE 435411 11430 6035885 2024-02-22 19:14:54.045 2024-02-22 19:14:54.045 9900 TIP 435411 5085 6035896 2024-02-22 19:15:15.384 2024-02-22 19:15:15.384 100 FEE 435375 5175 6035897 2024-02-22 19:15:15.384 2024-02-22 19:15:15.384 900 TIP 435375 18169 6035905 2024-02-22 19:15:54.865 2024-02-22 19:15:54.865 2100 FEE 435310 16665 6035906 2024-02-22 19:15:54.865 2024-02-22 19:15:54.865 18900 TIP 435310 18188 6035926 2024-02-22 19:20:25.735 2024-02-22 19:20:25.735 2100 FEE 435217 17316 6035927 2024-02-22 19:20:25.735 2024-02-22 19:20:25.735 18900 TIP 435217 1439 6035947 2024-02-22 19:23:19.837 2024-02-22 19:23:19.837 1000 FEE 435431 19637 6035978 2024-02-22 19:26:01.652 2024-02-22 19:26:01.652 6400 FEE 435348 2529 6035979 2024-02-22 19:26:01.652 2024-02-22 19:26:01.652 57600 TIP 435348 11866 6035983 2024-02-22 19:26:13.043 2024-02-22 19:26:13.043 10000 FEE 435261 2327 6035984 2024-02-22 19:26:13.043 2024-02-22 19:26:13.043 90000 TIP 435261 20434 6035998 2024-02-22 19:28:24.964 2024-02-22 19:28:24.964 100 FEE 435183 20179 6035999 2024-02-22 19:28:24.964 2024-02-22 19:28:24.964 900 TIP 435183 17316 6036000 2024-02-22 19:28:36.538 2024-02-22 19:28:36.538 3000 FEE 435217 11897 6036001 2024-02-22 19:28:36.538 2024-02-22 19:28:36.538 27000 TIP 435217 9863 6036030 2024-02-22 19:32:44.44 2024-02-22 19:32:44.44 100 FEE 435180 4776 6036031 2024-02-22 19:32:44.44 2024-02-22 19:32:44.44 900 TIP 435180 7097 6036044 2024-02-22 19:33:06.367 2024-02-22 19:33:06.367 100 FEE 435132 2056 6036045 2024-02-22 19:33:06.367 2024-02-22 19:33:06.367 900 TIP 435132 4459 6036104 2024-02-22 19:38:10.572 2024-02-22 19:38:10.572 100 FEE 435189 9290 6036105 2024-02-22 19:38:10.572 2024-02-22 19:38:10.572 900 TIP 435189 18378 6036108 2024-02-22 19:38:50.967 2024-02-22 19:38:50.967 200 FEE 435446 1465 6036109 2024-02-22 19:38:50.967 2024-02-22 19:38:50.967 1800 TIP 435446 10530 6036121 2024-02-22 19:39:44.512 2024-02-22 19:39:44.512 1000 FEE 435217 822 6036122 2024-02-22 19:39:44.512 2024-02-22 19:39:44.512 9000 TIP 435217 9169 6036147 2024-02-22 19:43:17.467 2024-02-22 19:43:17.467 4000 FEE 435231 1596 6036148 2024-02-22 19:43:17.467 2024-02-22 19:43:17.467 36000 TIP 435231 18454 6036168 2024-02-22 19:45:18.198 2024-02-22 19:45:18.198 100000 FEE 435455 18664 6036192 2024-02-22 19:48:21.11 2024-02-22 19:48:21.11 2300 FEE 435457 5036 6036193 2024-02-22 19:48:21.11 2024-02-22 19:48:21.11 20700 TIP 435457 15094 6036204 2024-02-22 19:51:47.333 2024-02-22 19:51:47.333 1000 FEE 435463 1817 6036223 2024-02-22 19:58:30.893 2024-02-22 19:58:30.893 2100 FEE 435366 19777 6036224 2024-02-22 19:58:30.893 2024-02-22 19:58:30.893 18900 TIP 435366 20840 6036226 2024-02-22 19:59:34.254 2024-02-22 19:59:34.254 1000 FEE 435410 1429 6036227 2024-02-22 19:59:34.254 2024-02-22 19:59:34.254 9000 TIP 435410 17166 6036237 2024-02-22 20:00:04.539 2024-02-22 20:00:04.539 100000 FEE 435467 2335 6036238 2024-02-22 20:00:24.035 2024-02-22 20:00:24.035 1000 FEE 435382 2459 6036239 2024-02-22 20:00:24.035 2024-02-22 20:00:24.035 9000 TIP 435382 15463 6036255 2024-02-22 20:02:50.066 2024-02-22 20:02:50.066 1000 FEE 435391 725 6036256 2024-02-22 20:02:50.066 2024-02-22 20:02:50.066 9000 TIP 435391 20969 6036261 2024-02-22 20:04:42.992 2024-02-22 20:04:42.992 1000 FEE 435471 19546 6036295 2024-02-22 20:13:24.822 2024-02-22 20:13:24.822 1100 FEE 435231 10611 6036296 2024-02-22 20:13:24.822 2024-02-22 20:13:24.822 9900 TIP 435231 1326 6036297 2024-02-22 20:13:25.323 2024-02-22 20:13:25.323 1100 FEE 435328 16842 6036298 2024-02-22 20:13:25.323 2024-02-22 20:13:25.323 9900 TIP 435328 2176 6036325 2024-02-22 20:22:22.638 2024-02-22 20:22:22.638 1000 FEE 435480 19449 6036326 2024-02-22 20:22:22.638 2024-02-22 20:22:22.638 9000 TIP 435480 17321 6036333 2024-02-22 20:22:24.252 2024-02-22 20:22:24.252 1000 FEE 435480 16858 6036334 2024-02-22 20:22:24.252 2024-02-22 20:22:24.252 9000 TIP 435480 21521 6036367 2024-02-22 20:34:41.491 2024-02-22 20:34:41.491 4000 FEE 435402 15088 6036368 2024-02-22 20:34:41.491 2024-02-22 20:34:41.491 36000 TIP 435402 21401 6036374 2024-02-22 20:35:45.342 2024-02-22 20:35:45.342 21000 FEE 435488 18731 6036381 2024-02-22 20:37:33.574 2024-02-22 20:37:33.574 21000 FEE 435489 18314 6036388 2024-02-22 20:38:24.031 2024-02-22 20:38:24.031 1000 FEE 435491 1429 6036439 2024-02-22 20:41:38.609 2024-02-22 20:41:38.609 2300 FEE 435497 2963 6036440 2024-02-22 20:41:38.609 2024-02-22 20:41:38.609 20700 TIP 435497 6688 6036449 2024-02-22 20:41:41.503 2024-02-22 20:41:41.503 2300 FEE 435497 18177 6036450 2024-02-22 20:41:41.503 2024-02-22 20:41:41.503 20700 TIP 435497 18311 6036511 2024-02-22 20:43:24.214 2024-02-22 20:43:24.214 1000 FEE 435499 21155 6036512 2024-02-22 20:43:24.214 2024-02-22 20:43:24.214 9000 TIP 435499 8729 6036552 2024-02-22 20:48:05.085 2024-02-22 20:48:05.085 1000 FEE 435313 822 6036553 2024-02-22 20:48:05.085 2024-02-22 20:48:05.085 9000 TIP 435313 1611 6036556 2024-02-22 20:48:05.482 2024-02-22 20:48:05.482 1000 FEE 435313 663 6036557 2024-02-22 20:48:05.482 2024-02-22 20:48:05.482 9000 TIP 435313 695 6036558 2024-02-22 20:48:10.594 2024-02-22 20:48:10.594 1000 FEE 435328 18174 6036559 2024-02-22 20:48:10.594 2024-02-22 20:48:10.594 9000 TIP 435328 656 6036573 2024-02-22 20:48:30.385 2024-02-22 20:48:30.385 1000 FEE 435474 21254 6036574 2024-02-22 20:48:30.385 2024-02-22 20:48:30.385 9000 TIP 435474 2013 6036575 2024-02-22 20:48:30.968 2024-02-22 20:48:30.968 1000 FEE 435475 3518 6036576 2024-02-22 20:48:30.968 2024-02-22 20:48:30.968 9000 TIP 435475 21619 6036579 2024-02-22 20:48:44.372 2024-02-22 20:48:44.372 1000 FEE 435508 7760 6036598 2024-02-22 20:48:59.941 2024-02-22 20:48:59.941 100 FEE 435505 5565 6036599 2024-02-22 20:48:59.941 2024-02-22 20:48:59.941 900 TIP 435505 19333 6036604 2024-02-22 20:49:02.897 2024-02-22 20:49:02.897 1100 FEE 435030 11873 6036605 2024-02-22 20:49:02.897 2024-02-22 20:49:02.897 9900 TIP 435030 18154 6036617 2024-02-22 20:51:51.248 2024-02-22 20:51:51.248 1000 FEE 435449 16097 6036618 2024-02-22 20:51:51.248 2024-02-22 20:51:51.248 9000 TIP 435449 20287 6036682 2024-02-22 20:56:24.698 2024-02-22 20:56:24.698 1000 FEE 435514 18119 6036697 2024-02-22 20:59:06.99 2024-02-22 20:59:06.99 200 FEE 435514 7809 6036698 2024-02-22 20:59:06.99 2024-02-22 20:59:06.99 1800 TIP 435514 15588 6036719 2024-02-22 21:07:46.275 2024-02-22 21:07:46.275 0 FEE 435522 992 6036725 2024-02-22 21:08:28.446 2024-02-22 21:08:28.446 0 FEE 435520 1092 6036726 2024-02-22 21:08:39.15 2024-02-22 21:08:39.15 1000 FEE 435523 18409 6036733 2024-02-22 21:09:54.64 2024-02-22 21:09:54.64 1000 FEE 435525 2942 6036735 2024-02-22 21:10:18 2024-02-22 21:10:18 200 FEE 435520 17042 6036736 2024-02-22 21:10:18 2024-02-22 21:10:18 1800 TIP 435520 15273 6036744 2024-02-22 21:13:34.201 2024-02-22 21:13:34.201 1000 FEE 435529 13042 6036750 2024-02-22 21:13:37.157 2024-02-22 21:13:37.157 100 FEE 435525 19533 6036751 2024-02-22 21:13:37.157 2024-02-22 21:13:37.157 900 TIP 435525 802 6029633 2024-02-22 07:01:03.626 2024-02-22 07:01:03.626 1000 STREAM 141924 18314 6029663 2024-02-22 07:12:03.659 2024-02-22 07:12:03.659 1000 STREAM 141924 10693 6029665 2024-02-22 07:14:03.653 2024-02-22 07:14:03.653 1000 STREAM 141924 9496 6029772 2024-02-22 07:36:04.011 2024-02-22 07:36:04.011 1000 STREAM 141924 2061 6029800 2024-02-22 07:40:04.062 2024-02-22 07:40:04.062 1000 STREAM 141924 3440 6029814 2024-02-22 07:45:04.144 2024-02-22 07:45:04.144 1000 STREAM 141924 20660 6029815 2024-02-22 07:46:04.165 2024-02-22 07:46:04.165 1000 STREAM 141924 21413 6029818 2024-02-22 07:48:04.162 2024-02-22 07:48:04.162 1000 STREAM 141924 9985 6029819 2024-02-22 07:49:04.174 2024-02-22 07:49:04.174 1000 STREAM 141924 1213 6029822 2024-02-22 07:50:04.211 2024-02-22 07:50:04.211 1000 STREAM 141924 20623 6029831 2024-02-22 07:54:04.215 2024-02-22 07:54:04.215 1000 STREAM 141924 14785 6029840 2024-02-22 07:56:04.221 2024-02-22 07:56:04.221 1000 STREAM 141924 21540 6029860 2024-02-22 07:58:04.218 2024-02-22 07:58:04.218 1000 STREAM 141924 1425 6029865 2024-02-22 07:59:04.23 2024-02-22 07:59:04.23 1000 STREAM 141924 876 6035779 2024-02-22 19:00:05.564 2024-02-22 19:00:05.564 100000 FEE 435402 1003 6035780 2024-02-22 19:00:06.14 2024-02-22 19:00:06.14 1000 FEE 435403 8162 6035781 2024-02-22 19:00:14.431 2024-02-22 19:00:14.431 1000 FEE 435404 732 6035802 2024-02-22 19:05:40.273 2024-02-22 19:05:40.273 200 FEE 435382 21139 6035803 2024-02-22 19:05:40.273 2024-02-22 19:05:40.273 1800 TIP 435382 21218 6035821 2024-02-22 19:07:34.376 2024-02-22 19:07:34.376 3000 FEE 435261 14774 6035822 2024-02-22 19:07:34.376 2024-02-22 19:07:34.376 27000 TIP 435261 20586 6035824 2024-02-22 19:07:42.949 2024-02-22 19:07:42.949 0 FEE 435409 5758 6035828 2024-02-22 19:08:09.947 2024-02-22 19:08:09.947 10000 FEE 435411 2233 6035832 2024-02-22 19:09:02.722 2024-02-22 19:09:02.722 1000 FEE 435406 2431 6035833 2024-02-22 19:09:02.722 2024-02-22 19:09:02.722 9000 TIP 435406 620 6035876 2024-02-22 19:14:46.657 2024-02-22 19:14:46.657 900 FEE 435402 19329 6035877 2024-02-22 19:14:46.657 2024-02-22 19:14:46.657 8100 TIP 435402 20479 6035894 2024-02-22 19:15:14.243 2024-02-22 19:15:14.243 1000 FEE 435413 19911 6035895 2024-02-22 19:15:14.243 2024-02-22 19:15:14.243 9000 TIP 435413 673 6035934 2024-02-22 19:21:06.383 2024-02-22 19:21:06.383 1000 FEE 435428 1000 6035941 2024-02-22 19:22:34.628 2024-02-22 19:22:34.628 8300 FEE 435425 993 6035942 2024-02-22 19:22:34.628 2024-02-22 19:22:34.628 74700 TIP 435425 20881 6035981 2024-02-22 19:26:06.093 2024-02-22 19:26:06.093 100 FEE 435217 12102 6035982 2024-02-22 19:26:06.093 2024-02-22 19:26:06.093 900 TIP 435217 673 6035989 2024-02-22 19:26:50.475 2024-02-22 19:26:50.475 200 FEE 435430 20979 6035990 2024-02-22 19:26:50.475 2024-02-22 19:26:50.475 1800 TIP 435430 1692 6036020 2024-02-22 19:32:43.507 2024-02-22 19:32:43.507 100 FEE 435180 21339 6036021 2024-02-22 19:32:43.507 2024-02-22 19:32:43.507 900 TIP 435180 3213 6036024 2024-02-22 19:32:43.883 2024-02-22 19:32:43.883 100 FEE 435180 20745 6036025 2024-02-22 19:32:43.883 2024-02-22 19:32:43.883 900 TIP 435180 756 6036026 2024-02-22 19:32:44.071 2024-02-22 19:32:44.071 100 FEE 435180 19843 6036027 2024-02-22 19:32:44.071 2024-02-22 19:32:44.071 900 TIP 435180 20963 6036028 2024-02-22 19:32:44.259 2024-02-22 19:32:44.259 100 FEE 435180 1007 6036029 2024-02-22 19:32:44.259 2024-02-22 19:32:44.259 900 TIP 435180 636 6036046 2024-02-22 19:33:09.615 2024-02-22 19:33:09.615 100 FEE 434885 19126 6036047 2024-02-22 19:33:09.615 2024-02-22 19:33:09.615 900 TIP 434885 16998 6036082 2024-02-22 19:38:06.875 2024-02-22 19:38:06.875 100 FEE 435328 21481 6036083 2024-02-22 19:38:06.875 2024-02-22 19:38:06.875 900 TIP 435328 19502 6036161 2024-02-22 19:44:39.881 2024-02-22 19:44:39.881 1000 FEE 435453 17365 6036162 2024-02-22 19:44:48.806 2024-02-22 19:44:48.806 1000 FEE 435454 21585 6036190 2024-02-22 19:48:20.464 2024-02-22 19:48:20.464 2300 FEE 435457 12158 6036191 2024-02-22 19:48:20.464 2024-02-22 19:48:20.464 20700 TIP 435457 12930 6036199 2024-02-22 19:50:02.374 2024-02-22 19:50:02.374 1000 FEE 435458 1000 6036200 2024-02-22 19:50:02.374 2024-02-22 19:50:02.374 9000 TIP 435458 8004 6036222 2024-02-22 19:58:29.642 2024-02-22 19:58:29.642 1000 FEE 435466 19463 6036253 2024-02-22 20:02:32.652 2024-02-22 20:02:32.652 1000 FEE 435295 5308 6036254 2024-02-22 20:02:32.652 2024-02-22 20:02:32.652 9000 TIP 435295 14376 6036265 2024-02-22 20:05:54.486 2024-02-22 20:05:54.486 1000 FEE 435472 762 6036277 2024-02-22 20:11:18.827 2024-02-22 20:11:18.827 1000 FEE 435474 19121 6036317 2024-02-22 20:22:19.533 2024-02-22 20:22:19.533 1000 FEE 435480 19902 6036318 2024-02-22 20:22:19.533 2024-02-22 20:22:19.533 9000 TIP 435480 21416 6036327 2024-02-22 20:22:22.819 2024-02-22 20:22:22.819 1000 FEE 435480 19458 6036328 2024-02-22 20:22:22.819 2024-02-22 20:22:22.819 9000 TIP 435480 678 6036329 2024-02-22 20:22:23.026 2024-02-22 20:22:23.026 1000 FEE 435480 20182 6036330 2024-02-22 20:22:23.026 2024-02-22 20:22:23.026 9000 TIP 435480 18829 6036335 2024-02-22 20:22:25.24 2024-02-22 20:22:25.24 1000 FEE 435480 21242 6036336 2024-02-22 20:22:25.24 2024-02-22 20:22:25.24 9000 TIP 435480 7766 6036339 2024-02-22 20:24:33.928 2024-02-22 20:24:33.928 1000 FEE 435481 20551 6036359 2024-02-22 20:33:19.081 2024-02-22 20:33:19.081 1000 FEE 435487 20450 6036393 2024-02-22 20:39:14.251 2024-02-22 20:39:14.251 1000 FEE 435493 1352 6036404 2024-02-22 20:40:59.676 2024-02-22 20:40:59.676 210000 FEE 435497 18208 6036405 2024-02-22 20:41:00.243 2024-02-22 20:41:00.243 1000 FEE 435498 18517 6036411 2024-02-22 20:41:23.761 2024-02-22 20:41:23.761 2300 FEE 435497 19541 6036412 2024-02-22 20:41:23.761 2024-02-22 20:41:23.761 20700 TIP 435497 7818 6036431 2024-02-22 20:41:36.287 2024-02-22 20:41:36.287 2300 FEE 435497 21022 6029639 2024-02-22 07:03:03.626 2024-02-22 07:03:03.626 1000 STREAM 141924 6229 6029650 2024-02-22 07:08:03.636 2024-02-22 07:08:03.636 1000 STREAM 141924 1162 6029656 2024-02-22 07:09:03.642 2024-02-22 07:09:03.642 1000 STREAM 141924 866 6029657 2024-02-22 07:10:03.644 2024-02-22 07:10:03.644 1000 STREAM 141924 1175 6029660 2024-02-22 07:11:03.644 2024-02-22 07:11:03.644 1000 STREAM 141924 20585 6029664 2024-02-22 07:13:03.657 2024-02-22 07:13:03.657 1000 STREAM 141924 5725 6035922 2024-02-22 19:19:45.113 2024-02-22 19:19:45.113 90000 TIP 435359 21395 6035935 2024-02-22 19:21:21.407 2024-02-22 19:21:21.407 1000 FEE 435429 626 6035954 2024-02-22 19:23:27.486 2024-02-22 19:23:27.486 27000 FEE 435427 20563 6035955 2024-02-22 19:23:27.486 2024-02-22 19:23:27.486 243000 TIP 435427 21400 6035987 2024-02-22 19:26:40.384 2024-02-22 19:26:40.384 200 FEE 435426 2151 6035988 2024-02-22 19:26:40.384 2024-02-22 19:26:40.384 1800 TIP 435426 1002 6035996 2024-02-22 19:28:14.082 2024-02-22 19:28:14.082 100000 FEE 435437 10611 6036034 2024-02-22 19:32:44.847 2024-02-22 19:32:44.847 100 FEE 435180 16212 6036035 2024-02-22 19:32:44.847 2024-02-22 19:32:44.847 900 TIP 435180 19292 6036041 2024-02-22 19:33:01.115 2024-02-22 19:33:01.115 2100 FEE 435314 14122 6036042 2024-02-22 19:33:01.115 2024-02-22 19:33:01.115 18900 TIP 435314 21556 6036048 2024-02-22 19:33:09.819 2024-02-22 19:33:09.819 100 FEE 434885 6030 6036049 2024-02-22 19:33:09.819 2024-02-22 19:33:09.819 900 TIP 434885 1489 6036057 2024-02-22 19:34:03.531 2024-02-22 19:34:03.531 1000 FEE 434139 7847 6036058 2024-02-22 19:34:03.531 2024-02-22 19:34:03.531 9000 TIP 434139 10586 6036068 2024-02-22 19:35:00.454 2024-02-22 19:35:00.454 2100 FEE 435242 1198 6036069 2024-02-22 19:35:00.454 2024-02-22 19:35:00.454 18900 TIP 435242 16562 6036074 2024-02-22 19:37:55.376 2024-02-22 19:37:55.376 1000 FEE 435446 3417 6036075 2024-02-22 19:37:57.739 2024-02-22 19:37:57.739 1000 FEE 435261 2088 6036076 2024-02-22 19:37:57.739 2024-02-22 19:37:57.739 9000 TIP 435261 20738 6036094 2024-02-22 19:38:09.144 2024-02-22 19:38:09.144 100 FEE 435189 17976 6036095 2024-02-22 19:38:09.144 2024-02-22 19:38:09.144 900 TIP 435189 697 6036100 2024-02-22 19:38:09.885 2024-02-22 19:38:09.885 100 FEE 435189 16867 6036101 2024-02-22 19:38:09.885 2024-02-22 19:38:09.885 900 TIP 435189 18199 6036118 2024-02-22 19:39:28.574 2024-02-22 19:39:28.574 1000 FEE 435448 20555 6036119 2024-02-22 19:39:31.671 2024-02-22 19:39:31.671 1000 FEE 435240 2596 6036120 2024-02-22 19:39:31.671 2024-02-22 19:39:31.671 9000 TIP 435240 20854 6036159 2024-02-22 19:43:51.017 2024-02-22 19:43:51.017 21000 FEE 435452 1320 6036163 2024-02-22 19:44:51.999 2024-02-22 19:44:51.999 1000 FEE 435377 634 6036164 2024-02-22 19:44:51.999 2024-02-22 19:44:51.999 9000 TIP 435377 641 6036176 2024-02-22 19:47:14.364 2024-02-22 19:47:14.364 100000 FEE 435457 19193 6036181 2024-02-22 19:48:01.122 2024-02-22 19:48:01.122 2300 FEE 435453 20129 6036182 2024-02-22 19:48:01.122 2024-02-22 19:48:01.122 20700 TIP 435453 1124 6036216 2024-02-22 19:57:06.469 2024-02-22 19:57:06.469 2100 FEE 435359 21585 6036217 2024-02-22 19:57:06.469 2024-02-22 19:57:06.469 18900 TIP 435359 2056 6036220 2024-02-22 19:57:45.073 2024-02-22 19:57:45.073 1000 FEE 435465 14122 6036234 2024-02-22 19:59:53.421 2024-02-22 19:59:53.421 1000 FEE 435420 18368 6036235 2024-02-22 19:59:53.421 2024-02-22 19:59:53.421 9000 TIP 435420 19553 6036242 2024-02-22 20:00:47.931 2024-02-22 20:00:47.931 900 FEE 435458 20353 6036243 2024-02-22 20:00:47.931 2024-02-22 20:00:47.931 8100 TIP 435458 19320 6036269 2024-02-22 20:07:28.533 2024-02-22 20:07:28.533 11700 FEE 435412 16442 6036270 2024-02-22 20:07:28.533 2024-02-22 20:07:28.533 105300 TIP 435412 18526 6036271 2024-02-22 20:07:57.753 2024-02-22 20:07:57.753 2100 FEE 435263 19044 6036272 2024-02-22 20:07:57.753 2024-02-22 20:07:57.753 18900 TIP 435263 13843 6036279 2024-02-22 20:12:55.212 2024-02-22 20:12:55.212 10000 FEE 435475 18832 6036289 2024-02-22 20:13:24.505 2024-02-22 20:13:24.505 1100 FEE 435261 18735 6036290 2024-02-22 20:13:24.505 2024-02-22 20:13:24.505 9900 TIP 435261 18556 6036293 2024-02-22 20:13:24.774 2024-02-22 20:13:24.774 1100 FEE 435261 1472 6036294 2024-02-22 20:13:24.774 2024-02-22 20:13:24.774 9900 TIP 435261 12057 6036301 2024-02-22 20:13:25.839 2024-02-22 20:13:25.839 1100 FEE 435328 6149 6036302 2024-02-22 20:13:25.839 2024-02-22 20:13:25.839 9900 TIP 435328 17237 6036354 2024-02-22 20:32:31.433 2024-02-22 20:32:31.433 1000 FEE 435485 2213 6036365 2024-02-22 20:34:37.567 2024-02-22 20:34:37.567 800 FEE 435217 20299 6036366 2024-02-22 20:34:37.567 2024-02-22 20:34:37.567 7200 TIP 435217 8289 6036376 2024-02-22 20:36:37.723 2024-02-22 20:36:37.723 800 FEE 435377 19622 6036377 2024-02-22 20:36:37.723 2024-02-22 20:36:37.723 7200 TIP 435377 10056 6036384 2024-02-22 20:38:00.272 2024-02-22 20:38:00.272 1000 FEE 435490 634 6036390 2024-02-22 20:38:45.082 2024-02-22 20:38:45.082 800 FEE 434310 1428 6036391 2024-02-22 20:38:45.082 2024-02-22 20:38:45.082 7200 TIP 434310 9363 6036396 2024-02-22 20:39:46.823 2024-02-22 20:39:46.823 800 FEE 434395 12821 6036397 2024-02-22 20:39:46.823 2024-02-22 20:39:46.823 7200 TIP 434395 17446 6036417 2024-02-22 20:41:24.427 2024-02-22 20:41:24.427 2300 FEE 435497 1245 6036418 2024-02-22 20:41:24.427 2024-02-22 20:41:24.427 20700 TIP 435497 20087 6036425 2024-02-22 20:41:26.089 2024-02-22 20:41:26.089 2300 FEE 435497 21058 6036426 2024-02-22 20:41:26.089 2024-02-22 20:41:26.089 20700 TIP 435497 695 6036427 2024-02-22 20:41:26.505 2024-02-22 20:41:26.505 4000 FEE 435495 20157 6036428 2024-02-22 20:41:26.505 2024-02-22 20:41:26.505 36000 TIP 435495 21591 6036435 2024-02-22 20:41:37.516 2024-02-22 20:41:37.516 4600 FEE 435497 2829 6036436 2024-02-22 20:41:37.516 2024-02-22 20:41:37.516 41400 TIP 435497 6335 6036441 2024-02-22 20:41:38.665 2024-02-22 20:41:38.665 2300 FEE 435497 16270 6036442 2024-02-22 20:41:38.665 2024-02-22 20:41:38.665 20700 TIP 435497 18274 6036447 2024-02-22 20:41:41.27 2024-02-22 20:41:41.27 2300 FEE 435497 1806 6036448 2024-02-22 20:41:41.27 2024-02-22 20:41:41.27 20700 TIP 435497 18008 6036459 2024-02-22 20:41:42.348 2024-02-22 20:41:42.348 2300 FEE 435497 10490 6036460 2024-02-22 20:41:42.348 2024-02-22 20:41:42.348 20700 TIP 435497 18581 6036463 2024-02-22 20:41:42.746 2024-02-22 20:41:42.746 2300 FEE 435497 20182 6036464 2024-02-22 20:41:42.746 2024-02-22 20:41:42.746 20700 TIP 435497 20108 6036469 2024-02-22 20:41:43.296 2024-02-22 20:41:43.296 2300 FEE 435497 20817 6036470 2024-02-22 20:41:43.296 2024-02-22 20:41:43.296 20700 TIP 435497 5359 6036471 2024-02-22 20:41:43.457 2024-02-22 20:41:43.457 2300 FEE 435497 4074 6036472 2024-02-22 20:41:43.457 2024-02-22 20:41:43.457 20700 TIP 435497 9705 6036479 2024-02-22 20:41:44.775 2024-02-22 20:41:44.775 2300 FEE 435497 16341 6036480 2024-02-22 20:41:44.775 2024-02-22 20:41:44.775 20700 TIP 435497 2123 6036487 2024-02-22 20:41:45.306 2024-02-22 20:41:45.306 2300 FEE 435497 19333 6036488 2024-02-22 20:41:45.306 2024-02-22 20:41:45.306 20700 TIP 435497 21172 6036525 2024-02-22 20:46:27.731 2024-02-22 20:46:27.731 100 FEE 435505 5825 6036526 2024-02-22 20:46:27.731 2024-02-22 20:46:27.731 900 TIP 435505 16052 6036548 2024-02-22 20:48:04.741 2024-02-22 20:48:04.741 1000 FEE 435313 18235 6036549 2024-02-22 20:48:04.741 2024-02-22 20:48:04.741 9000 TIP 435313 2342 6029697 2024-02-22 07:25:04.505 2024-02-22 07:25:04.505 1000 STREAM 141924 9339 6029700 2024-02-22 07:26:04.513 2024-02-22 07:26:04.513 1000 STREAM 141924 11750 6029742 2024-02-22 07:28:04.517 2024-02-22 07:28:04.517 1000 STREAM 141924 20687 6029743 2024-02-22 07:29:04.513 2024-02-22 07:29:04.513 1000 STREAM 141924 18412 6029751 2024-02-22 07:33:04.532 2024-02-22 07:33:04.532 1000 STREAM 141924 2361 6029770 2024-02-22 07:35:04.547 2024-02-22 07:35:04.547 1000 STREAM 141924 10280 6029785 2024-02-22 07:37:04.566 2024-02-22 07:37:04.566 1000 STREAM 141924 1697 6029802 2024-02-22 07:41:04.581 2024-02-22 07:41:04.581 1000 STREAM 141924 18828 6029804 2024-02-22 07:42:04.59 2024-02-22 07:42:04.59 1000 STREAM 141924 1092 6036092 2024-02-22 19:38:08.892 2024-02-22 19:38:08.892 100 FEE 435189 617 6036093 2024-02-22 19:38:08.892 2024-02-22 19:38:08.892 900 TIP 435189 15732 6036106 2024-02-22 19:38:10.695 2024-02-22 19:38:10.695 100 FEE 435189 19506 6036107 2024-02-22 19:38:10.695 2024-02-22 19:38:10.695 900 TIP 435189 18311 6036110 2024-02-22 19:38:57.218 2024-02-22 19:38:57.218 8300 FEE 435438 20663 6029771 2024-02-22 07:35:43.712 2024-02-22 07:35:43.712 1000 FEE 434649 14910 6029783 2024-02-22 07:36:59.947 2024-02-22 07:36:59.947 2100 FEE 434627 19381 6029784 2024-02-22 07:36:59.947 2024-02-22 07:36:59.947 18900 TIP 434627 17570 6029820 2024-02-22 07:49:04.827 2024-02-22 07:49:04.827 1000 FEE 434659 16834 6029821 2024-02-22 07:50:03.335 2024-02-22 07:50:03.335 1000 FEE 434660 19148 6029847 2024-02-22 07:56:45.949 2024-02-22 07:56:45.949 1000 FEE 434663 2952 6029869 2024-02-22 08:01:55.046 2024-02-22 08:01:55.046 100 FEE 434575 19661 6029870 2024-02-22 08:01:55.046 2024-02-22 08:01:55.046 900 TIP 434575 21588 6029876 2024-02-22 08:03:08.554 2024-02-22 08:03:08.554 1000 FEE 434668 7418 6029882 2024-02-22 08:04:44.047 2024-02-22 08:04:44.047 10000 FEE 416239 20022 6029883 2024-02-22 08:04:44.047 2024-02-22 08:04:44.047 90000 TIP 416239 17522 6029931 2024-02-22 08:25:01.533 2024-02-22 08:25:01.533 500 FEE 434624 19142 6029932 2024-02-22 08:25:01.533 2024-02-22 08:25:01.533 4500 TIP 434624 21412 6029810 2024-02-22 07:43:04.109 2024-02-22 07:43:04.109 1000 STREAM 141924 9517 6029812 2024-02-22 07:44:04.126 2024-02-22 07:44:04.126 1000 STREAM 141924 1145 6029816 2024-02-22 07:47:04.168 2024-02-22 07:47:04.168 1000 STREAM 141924 18774 6029827 2024-02-22 07:51:04.178 2024-02-22 07:51:04.178 1000 STREAM 141924 733 6029829 2024-02-22 07:52:04.188 2024-02-22 07:52:04.188 1000 STREAM 141924 17365 6029830 2024-02-22 07:53:04.192 2024-02-22 07:53:04.192 1000 STREAM 141924 16289 6029837 2024-02-22 07:55:04.209 2024-02-22 07:55:04.209 1000 STREAM 141924 16543 6029854 2024-02-22 07:57:04.22 2024-02-22 07:57:04.22 1000 STREAM 141924 21406 6029866 2024-02-22 08:00:04.27 2024-02-22 08:00:04.27 1000 STREAM 141924 19732 6036111 2024-02-22 19:38:57.218 2024-02-22 19:38:57.218 74700 TIP 435438 15925 6036149 2024-02-22 19:43:17.903 2024-02-22 19:43:17.903 4000 FEE 435327 11821 6036150 2024-02-22 19:43:17.903 2024-02-22 19:43:17.903 36000 TIP 435327 21509 6036153 2024-02-22 19:43:32.085 2024-02-22 19:43:32.085 4000 FEE 435242 15978 6036154 2024-02-22 19:43:32.085 2024-02-22 19:43:32.085 36000 TIP 435242 20117 6036174 2024-02-22 19:47:00.405 2024-02-22 19:47:00.405 1000 FEE 435456 1468 6036210 2024-02-22 19:54:34.404 2024-02-22 19:54:34.404 1000 FEE 435464 9078 6036218 2024-02-22 19:57:18.802 2024-02-22 19:57:18.802 2100 FEE 435458 766 6036219 2024-02-22 19:57:18.802 2024-02-22 19:57:18.802 18900 TIP 435458 20778 6036228 2024-02-22 19:59:39.975 2024-02-22 19:59:39.975 100 FEE 435449 2703 6029872 2024-02-22 08:02:04.796 2024-02-22 08:02:04.796 1000 STREAM 141924 12261 6029886 2024-02-22 08:06:04.824 2024-02-22 08:06:04.824 1000 STREAM 141924 10979 6029888 2024-02-22 08:07:04.826 2024-02-22 08:07:04.826 1000 STREAM 141924 659 6029890 2024-02-22 08:08:04.842 2024-02-22 08:08:04.842 1000 STREAM 141924 2609 6029893 2024-02-22 08:09:04.838 2024-02-22 08:09:04.838 1000 STREAM 141924 9335 6029899 2024-02-22 08:12:04.85 2024-02-22 08:12:04.85 1000 STREAM 141924 16679 6029900 2024-02-22 08:13:04.862 2024-02-22 08:13:04.862 1000 STREAM 141924 18264 6029902 2024-02-22 08:15:04.877 2024-02-22 08:15:04.877 1000 STREAM 141924 10719 6029912 2024-02-22 08:19:04.886 2024-02-22 08:19:04.886 1000 STREAM 141924 3709 6029920 2024-02-22 08:22:04.905 2024-02-22 08:22:04.905 1000 STREAM 141924 9438 6029923 2024-02-22 08:23:04.919 2024-02-22 08:23:04.919 1000 STREAM 141924 1505 6029930 2024-02-22 08:24:04.921 2024-02-22 08:24:04.921 1000 STREAM 141924 20327 6036114 2024-02-22 19:39:03.972 2024-02-22 19:39:03.972 1000 STREAM 141924 19417 6036141 2024-02-22 19:42:03.994 2024-02-22 19:42:03.994 1000 STREAM 141924 1352 6036160 2024-02-22 19:44:04.028 2024-02-22 19:44:04.028 1000 STREAM 141924 19121 6029933 2024-02-22 08:25:03.308 2024-02-22 08:25:03.308 500 FEE 434624 16406 6029934 2024-02-22 08:25:03.308 2024-02-22 08:25:03.308 4500 TIP 434624 2000 6029950 2024-02-22 08:33:26.264 2024-02-22 08:33:26.264 1000 FEE 434677 7119 6029973 2024-02-22 08:42:29.719 2024-02-22 08:42:29.719 10000 FEE 434665 8037 6029974 2024-02-22 08:42:29.719 2024-02-22 08:42:29.719 90000 TIP 434665 21406 6029987 2024-02-22 08:46:52.938 2024-02-22 08:46:52.938 800 FEE 434440 9920 6029988 2024-02-22 08:46:52.938 2024-02-22 08:46:52.938 7200 TIP 434440 17592 6029991 2024-02-22 08:47:13.404 2024-02-22 08:47:13.404 10000 FEE 434637 8954 6029992 2024-02-22 08:47:13.404 2024-02-22 08:47:13.404 90000 TIP 434637 21365 6030016 2024-02-22 08:48:42.411 2024-02-22 08:48:42.411 1000 FEE 434682 985 6030036 2024-02-22 08:54:47.454 2024-02-22 08:54:47.454 500 FEE 434651 1825 6030037 2024-02-22 08:54:47.454 2024-02-22 08:54:47.454 4500 TIP 434651 15213 6030071 2024-02-22 09:01:47.826 2024-02-22 09:01:47.826 2100 FEE 434647 20045 6030072 2024-02-22 09:01:47.826 2024-02-22 09:01:47.826 18900 TIP 434647 6430 6030098 2024-02-22 09:09:59.065 2024-02-22 09:09:59.065 10000 FEE 434694 13763 6030136 2024-02-22 09:23:56.779 2024-02-22 09:23:56.779 1200 FEE 434319 21430 6030137 2024-02-22 09:23:56.779 2024-02-22 09:23:56.779 10800 TIP 434319 1483 6030145 2024-02-22 09:24:05.169 2024-02-22 09:24:05.169 1000 FEE 434701 19902 6030152 2024-02-22 09:26:47.989 2024-02-22 09:26:47.989 1000 FEE 434702 2577 6030161 2024-02-22 09:26:57.126 2024-02-22 09:26:57.126 4000 FEE 434665 4126 6030162 2024-02-22 09:26:57.126 2024-02-22 09:26:57.126 36000 TIP 434665 18828 6030172 2024-02-22 09:29:07.72 2024-02-22 09:29:07.72 100000 FEE 434703 10693 6030175 2024-02-22 09:29:18.929 2024-02-22 09:29:18.929 10000 FEE 433123 4819 6030176 2024-02-22 09:29:18.929 2024-02-22 09:29:18.929 90000 TIP 433123 18309 6030202 2024-02-22 09:34:36.095 2024-02-22 09:34:36.095 100 FEE 434665 19863 6030203 2024-02-22 09:34:36.095 2024-02-22 09:34:36.095 900 TIP 434665 19640 6030239 2024-02-22 09:37:24.572 2024-02-22 09:37:24.572 12800 FEE 433695 12738 6030240 2024-02-22 09:37:24.572 2024-02-22 09:37:24.572 115200 TIP 433695 6300 6030243 2024-02-22 09:38:59.501 2024-02-22 09:38:59.501 2100 FEE 434498 1718 6030244 2024-02-22 09:38:59.501 2024-02-22 09:38:59.501 18900 TIP 434498 19282 6030245 2024-02-22 09:39:01.153 2024-02-22 09:39:01.153 2100 FEE 433943 13327 6030246 2024-02-22 09:39:01.153 2024-02-22 09:39:01.153 18900 TIP 433943 14552 6030264 2024-02-22 09:39:09.012 2024-02-22 09:39:09.012 2100 FEE 433844 18507 6030265 2024-02-22 09:39:09.012 2024-02-22 09:39:09.012 18900 TIP 433844 16839 6030341 2024-02-22 09:49:38.014 2024-02-22 09:49:38.014 2100 FEE 434699 5694 6030342 2024-02-22 09:49:38.014 2024-02-22 09:49:38.014 18900 TIP 434699 4323 6030363 2024-02-22 09:51:34.591 2024-02-22 09:51:34.591 1000 FEE 434717 1273 6030364 2024-02-22 09:51:34.591 2024-02-22 09:51:34.591 9000 TIP 434717 18518 6030410 2024-02-22 10:02:57.112 2024-02-22 10:02:57.112 1000 FEE 434740 15577 6030411 2024-02-22 10:03:02.856 2024-02-22 10:03:02.856 12800 FEE 433611 5725 6030412 2024-02-22 10:03:02.856 2024-02-22 10:03:02.856 115200 TIP 433611 15094 6030458 2024-02-22 10:18:08.379 2024-02-22 10:18:08.379 100 FEE 434727 1825 6030459 2024-02-22 10:18:08.379 2024-02-22 10:18:08.379 900 TIP 434727 5646 6030464 2024-02-22 10:19:45.654 2024-02-22 10:19:45.654 100 FEE 434440 7913 6030465 2024-02-22 10:19:45.654 2024-02-22 10:19:45.654 900 TIP 434440 20045 6030491 2024-02-22 10:21:56.87 2024-02-22 10:21:56.87 1000 FEE 434758 11829 6030548 2024-02-22 10:33:21.84 2024-02-22 10:33:21.84 1000 FEE 434724 4076 6030549 2024-02-22 10:33:21.84 2024-02-22 10:33:21.84 9000 TIP 434724 18208 6030554 2024-02-22 10:34:20.675 2024-02-22 10:34:20.675 1000 FEE 434771 19810 6030555 2024-02-22 10:34:36.786 2024-02-22 10:34:36.786 0 FEE 434770 797 6030565 2024-02-22 10:34:49.725 2024-02-22 10:34:49.725 100 FEE 434718 20299 6030566 2024-02-22 10:34:49.725 2024-02-22 10:34:49.725 900 TIP 434718 19967 6030579 2024-02-22 10:34:54.915 2024-02-22 10:34:54.915 100 FEE 434709 15408 6030580 2024-02-22 10:34:54.915 2024-02-22 10:34:54.915 900 TIP 434709 715 6030581 2024-02-22 10:34:55.112 2024-02-22 10:34:55.112 100 FEE 434709 1291 6030582 2024-02-22 10:34:55.112 2024-02-22 10:34:55.112 900 TIP 434709 1060 6030592 2024-02-22 10:35:47.04 2024-02-22 10:35:47.04 100 FEE 434726 19263 6030593 2024-02-22 10:35:47.04 2024-02-22 10:35:47.04 900 TIP 434726 20327 6030597 2024-02-22 10:36:02.795 2024-02-22 10:36:02.795 2100 FEE 434769 4322 6030598 2024-02-22 10:36:02.795 2024-02-22 10:36:02.795 18900 TIP 434769 20781 6030601 2024-02-22 10:36:41.577 2024-02-22 10:36:41.577 100 FEE 434775 20117 6030602 2024-02-22 10:36:41.577 2024-02-22 10:36:41.577 900 TIP 434775 2711 6030632 2024-02-22 10:41:21.429 2024-02-22 10:41:21.429 2100 FEE 434748 14650 6030633 2024-02-22 10:41:21.429 2024-02-22 10:41:21.429 18900 TIP 434748 18525 6030636 2024-02-22 10:41:30.874 2024-02-22 10:41:30.874 1000 FEE 434627 12289 6030637 2024-02-22 10:41:30.874 2024-02-22 10:41:30.874 9000 TIP 434627 20669 6030661 2024-02-22 10:47:00.242 2024-02-22 10:47:00.242 1000 FEE 434783 2718 6030665 2024-02-22 10:48:28.564 2024-02-22 10:48:28.564 1100 FEE 434535 14202 6030666 2024-02-22 10:48:28.564 2024-02-22 10:48:28.564 9900 TIP 434535 21589 6030682 2024-02-22 10:51:13.348 2024-02-22 10:51:13.348 800 FEE 434757 5538 6030683 2024-02-22 10:51:13.348 2024-02-22 10:51:13.348 7200 TIP 434757 20616 6030689 2024-02-22 10:53:56.818 2024-02-22 10:53:56.818 1000 FEE 434767 16809 6030690 2024-02-22 10:53:56.818 2024-02-22 10:53:56.818 9000 TIP 434767 14906 6030701 2024-02-22 10:55:09.554 2024-02-22 10:55:09.554 100 FEE 434717 4102 6030702 2024-02-22 10:55:09.554 2024-02-22 10:55:09.554 900 TIP 434717 13878 6030719 2024-02-22 10:56:18.317 2024-02-22 10:56:18.317 2100 FEE 434685 18188 6030720 2024-02-22 10:56:18.317 2024-02-22 10:56:18.317 18900 TIP 434685 19005 6030724 2024-02-22 10:56:24.66 2024-02-22 10:56:24.66 10000 FEE 434792 21398 6030729 2024-02-22 10:58:10.671 2024-02-22 10:58:10.671 1000 FEE 434793 20434 6030751 2024-02-22 11:02:44.325 2024-02-22 11:02:44.325 1000 FEE 434797 712 6030752 2024-02-22 11:02:44.325 2024-02-22 11:02:44.325 9000 TIP 434797 1092 6030769 2024-02-22 11:04:05.235 2024-02-22 11:04:05.235 1000 FEE 433978 814 6030770 2024-02-22 11:04:05.235 2024-02-22 11:04:05.235 9000 TIP 433978 19938 6030786 2024-02-22 11:04:18.695 2024-02-22 11:04:18.695 3200 FEE 434796 18241 6030787 2024-02-22 11:04:18.695 2024-02-22 11:04:18.695 28800 TIP 434796 5694 6030807 2024-02-22 11:07:29.253 2024-02-22 11:07:29.253 1100 FEE 434807 1195 6030808 2024-02-22 11:07:29.253 2024-02-22 11:07:29.253 9900 TIP 434807 1012 6030838 2024-02-22 11:11:19.106 2024-02-22 11:11:19.106 1000 FEE 434819 807 6030846 2024-02-22 11:13:07.054 2024-02-22 11:13:07.054 1600 FEE 434801 17095 6030847 2024-02-22 11:13:07.054 2024-02-22 11:13:07.054 14400 TIP 434801 19837 6030882 2024-02-22 11:18:17.448 2024-02-22 11:18:17.448 1000 FEE 434828 13544 6030886 2024-02-22 11:18:28.735 2024-02-22 11:18:28.735 0 FEE 434828 617 6030919 2024-02-22 11:22:30.552 2024-02-22 11:22:30.552 1000 FEE 434577 4292 6030920 2024-02-22 11:22:30.552 2024-02-22 11:22:30.552 9000 TIP 434577 16912 6030921 2024-02-22 11:22:57.592 2024-02-22 11:22:57.592 1000 FEE 434832 20106 6030941 2024-02-22 11:27:57.384 2024-02-22 11:27:57.384 100000 FEE 434836 16988 6030949 2024-02-22 11:28:38.793 2024-02-22 11:28:38.793 1000 FEE 434801 8713 6030950 2024-02-22 11:28:38.793 2024-02-22 11:28:38.793 9000 TIP 434801 698 6030957 2024-02-22 11:29:15.651 2024-02-22 11:29:15.651 0 FEE 434833 10056 6029935 2024-02-22 08:25:04.328 2024-02-22 08:25:04.328 1000 STREAM 141924 16004 6029936 2024-02-22 08:26:04.324 2024-02-22 08:26:04.324 1000 STREAM 141924 21269 6029938 2024-02-22 08:28:04.349 2024-02-22 08:28:04.349 1000 STREAM 141924 811 6029942 2024-02-22 08:30:04.406 2024-02-22 08:30:04.406 1000 STREAM 141924 19537 6029945 2024-02-22 08:32:04.404 2024-02-22 08:32:04.404 1000 STREAM 141924 18583 6029951 2024-02-22 08:34:04.444 2024-02-22 08:34:04.444 1000 STREAM 141924 9921 6029953 2024-02-22 08:36:04.47 2024-02-22 08:36:04.47 1000 STREAM 141924 16998 6029961 2024-02-22 08:38:04.501 2024-02-22 08:38:04.501 1000 STREAM 141924 756 6029965 2024-02-22 08:40:04.575 2024-02-22 08:40:04.575 1000 STREAM 141924 9920 6029972 2024-02-22 08:42:04.605 2024-02-22 08:42:04.605 1000 STREAM 141924 2724 6029975 2024-02-22 08:43:04.619 2024-02-22 08:43:04.619 1000 STREAM 141924 18507 6029977 2024-02-22 08:44:04.579 2024-02-22 08:44:04.579 1000 STREAM 141924 5495 6029990 2024-02-22 08:47:04.602 2024-02-22 08:47:04.602 1000 STREAM 141924 11898 6030022 2024-02-22 08:50:04.653 2024-02-22 08:50:04.653 1000 STREAM 141924 14357 6030024 2024-02-22 08:51:04.646 2024-02-22 08:51:04.646 1000 STREAM 141924 17817 6036157 2024-02-22 19:43:44.001 2024-02-22 19:43:44.001 4000 FEE 435284 9906 6036158 2024-02-22 19:43:44.001 2024-02-22 19:43:44.001 36000 TIP 435284 20901 6036165 2024-02-22 19:44:59.081 2024-02-22 19:44:59.081 1100 FEE 435437 651 6036166 2024-02-22 19:44:59.081 2024-02-22 19:44:59.081 9900 TIP 435437 10719 6036177 2024-02-22 19:47:23.663 2024-02-22 19:47:23.663 1600 FEE 435314 21455 6036178 2024-02-22 19:47:23.663 2024-02-22 19:47:23.663 14400 TIP 435314 836 6036185 2024-02-22 19:48:01.437 2024-02-22 19:48:01.437 2300 FEE 435453 8954 6036186 2024-02-22 19:48:01.437 2024-02-22 19:48:01.437 20700 TIP 435453 1122 6036195 2024-02-22 19:48:39.871 2024-02-22 19:48:39.871 0 FEE 435457 738 6036203 2024-02-22 19:51:14.89 2024-02-22 19:51:14.89 1000 FEE 435462 4043 6036207 2024-02-22 19:54:03.9 2024-02-22 19:54:03.9 500 FEE 435454 1124 6036208 2024-02-22 19:54:03.9 2024-02-22 19:54:03.9 4500 TIP 435454 11298 6036304 2024-02-22 20:13:58.306 2024-02-22 20:13:58.306 100000 FEE 435479 20073 6036315 2024-02-22 20:22:19.366 2024-02-22 20:22:19.366 1000 FEE 435480 18809 6036316 2024-02-22 20:22:19.366 2024-02-22 20:22:19.366 9000 TIP 435480 895 6036321 2024-02-22 20:22:19.895 2024-02-22 20:22:19.895 1000 FEE 435480 9200 6036322 2024-02-22 20:22:19.895 2024-02-22 20:22:19.895 9000 TIP 435480 20963 6036357 2024-02-22 20:33:10.497 2024-02-22 20:33:10.497 1000 FEE 435217 3342 6036358 2024-02-22 20:33:10.497 2024-02-22 20:33:10.497 9000 TIP 435217 20409 6036403 2024-02-22 20:40:29.818 2024-02-22 20:40:29.818 100000 FEE 435496 11956 6036406 2024-02-22 20:41:02.525 2024-02-22 20:41:02.525 1000 FEE 435499 20585 6036408 2024-02-22 20:41:14.105 2024-02-22 20:41:14.105 1000 FEE 435500 18017 6036409 2024-02-22 20:41:23.647 2024-02-22 20:41:23.647 2300 FEE 435497 18188 6036410 2024-02-22 20:41:23.647 2024-02-22 20:41:23.647 20700 TIP 435497 1454 6036419 2024-02-22 20:41:24.888 2024-02-22 20:41:24.888 2300 FEE 435497 4035 6036420 2024-02-22 20:41:24.888 2024-02-22 20:41:24.888 20700 TIP 435497 6537 6036421 2024-02-22 20:41:25.504 2024-02-22 20:41:25.504 2300 FEE 435497 21172 6036422 2024-02-22 20:41:25.504 2024-02-22 20:41:25.504 20700 TIP 435497 721 6036461 2024-02-22 20:41:42.486 2024-02-22 20:41:42.486 2300 FEE 435497 20208 6036462 2024-02-22 20:41:42.486 2024-02-22 20:41:42.486 20700 TIP 435497 20015 6036465 2024-02-22 20:41:42.876 2024-02-22 20:41:42.876 2300 FEE 435497 7772 6036466 2024-02-22 20:41:42.876 2024-02-22 20:41:42.876 20700 TIP 435497 17570 6036475 2024-02-22 20:41:44.518 2024-02-22 20:41:44.518 2300 FEE 435497 8796 6036476 2024-02-22 20:41:44.518 2024-02-22 20:41:44.518 20700 TIP 435497 11458 6036483 2024-02-22 20:41:45.023 2024-02-22 20:41:45.023 2300 FEE 435497 3717 6036484 2024-02-22 20:41:45.023 2024-02-22 20:41:45.023 20700 TIP 435497 9874 6036485 2024-02-22 20:41:45.176 2024-02-22 20:41:45.176 2300 FEE 435497 11378 6036486 2024-02-22 20:41:45.176 2024-02-22 20:41:45.176 20700 TIP 435497 20120 6036510 2024-02-22 20:43:19.516 2024-02-22 20:43:19.516 1000 FEE 435502 4175 6036527 2024-02-22 20:46:27.758 2024-02-22 20:46:27.758 100 FEE 435505 7979 6036528 2024-02-22 20:46:27.758 2024-02-22 20:46:27.758 900 TIP 435505 21398 6036529 2024-02-22 20:46:28.143 2024-02-22 20:46:28.143 200 FEE 435505 20291 6036530 2024-02-22 20:46:28.143 2024-02-22 20:46:28.143 1800 TIP 435505 716 6036550 2024-02-22 20:48:04.914 2024-02-22 20:48:04.914 1000 FEE 435313 5069 6036551 2024-02-22 20:48:04.914 2024-02-22 20:48:04.914 9000 TIP 435313 17693 6036571 2024-02-22 20:48:29.373 2024-02-22 20:48:29.373 1000 FEE 435475 1534 6036572 2024-02-22 20:48:29.373 2024-02-22 20:48:29.373 9000 TIP 435475 7760 6036582 2024-02-22 20:48:48.264 2024-02-22 20:48:48.264 1000 FEE 435509 20036 6036585 2024-02-22 20:48:54.722 2024-02-22 20:48:54.722 100 FEE 435497 1567 6036586 2024-02-22 20:48:54.722 2024-02-22 20:48:54.722 900 TIP 435497 19930 6029937 2024-02-22 08:27:04.343 2024-02-22 08:27:04.343 1000 STREAM 141924 4064 6029939 2024-02-22 08:29:04.354 2024-02-22 08:29:04.354 1000 STREAM 141924 20327 6029943 2024-02-22 08:31:04.396 2024-02-22 08:31:04.396 1000 STREAM 141924 4378 6029949 2024-02-22 08:33:04.424 2024-02-22 08:33:04.424 1000 STREAM 141924 13921 6029952 2024-02-22 08:35:04.453 2024-02-22 08:35:04.453 1000 STREAM 141924 822 6029956 2024-02-22 08:37:04.482 2024-02-22 08:37:04.482 1000 STREAM 141924 726 6029964 2024-02-22 08:39:04.525 2024-02-22 08:39:04.525 1000 STREAM 141924 1490 6029968 2024-02-22 08:41:04.556 2024-02-22 08:41:04.556 1000 STREAM 141924 21021 6029980 2024-02-22 08:45:04.578 2024-02-22 08:45:04.578 1000 STREAM 141924 6421 6029982 2024-02-22 08:46:04.604 2024-02-22 08:46:04.604 1000 STREAM 141924 18209 6030015 2024-02-22 08:48:04.622 2024-02-22 08:48:04.622 1000 STREAM 141924 18774 6030017 2024-02-22 08:49:04.65 2024-02-22 08:49:04.65 1000 STREAM 141924 15978 6030027 2024-02-22 08:52:04.654 2024-02-22 08:52:04.654 1000 STREAM 141924 12738 6030029 2024-02-22 08:53:04.659 2024-02-22 08:53:04.659 1000 STREAM 141924 18314 6030253 2024-02-22 09:39:03.29 2024-02-22 09:39:03.29 1000 STREAM 141924 4027 6030291 2024-02-22 09:41:03.282 2024-02-22 09:41:03.282 1000 STREAM 141924 20588 6030297 2024-02-22 09:43:03.296 2024-02-22 09:43:03.296 1000 STREAM 141924 16440 6030299 2024-02-22 09:44:03.292 2024-02-22 09:44:03.292 1000 STREAM 141924 18264 6036169 2024-02-22 19:46:04.029 2024-02-22 19:46:04.029 1000 STREAM 141924 17162 6036197 2024-02-22 19:49:04.058 2024-02-22 19:49:04.058 1000 STREAM 141924 701 6036201 2024-02-22 19:50:04.091 2024-02-22 19:50:04.091 1000 STREAM 141924 628 6036205 2024-02-22 19:52:04.081 2024-02-22 19:52:04.081 1000 STREAM 141924 4259 6036213 2024-02-22 19:55:04.145 2024-02-22 19:55:04.145 1000 STREAM 141924 5779 6036221 2024-02-22 19:58:04.153 2024-02-22 19:58:04.153 1000 STREAM 141924 9366 6036225 2024-02-22 19:59:04.161 2024-02-22 19:59:04.161 1000 STREAM 141924 19511 6036236 2024-02-22 20:00:04.285 2024-02-22 20:00:04.285 1000 STREAM 141924 1618 6036245 2024-02-22 20:01:04.179 2024-02-22 20:01:04.179 1000 STREAM 141924 7903 6036252 2024-02-22 20:02:04.168 2024-02-22 20:02:04.168 1000 STREAM 141924 1136 6036257 2024-02-22 20:03:04.172 2024-02-22 20:03:04.172 1000 STREAM 141924 14472 6038319 2024-02-22 23:59:04.363 2024-02-22 23:59:04.363 3000 FEE 435654 13931 6038320 2024-02-22 23:59:04.363 2024-02-22 23:59:04.363 27000 TIP 435654 13763 6038323 2024-02-22 23:59:29.03 2024-02-22 23:59:29.03 1000 FEE 435678 687 6038324 2024-02-22 23:59:31.89 2024-02-22 23:59:31.89 100000 FEE 435679 16424 6038329 2024-02-23 00:00:02.417 2024-02-23 00:00:02.417 300 FEE 435457 11938 6038330 2024-02-23 00:00:02.417 2024-02-23 00:00:02.417 2700 TIP 435457 5904 6038358 2024-02-23 00:00:05.899 2024-02-23 00:00:05.899 300 FEE 435457 15488 6038359 2024-02-23 00:00:05.899 2024-02-23 00:00:05.899 2700 TIP 435457 4415 6038398 2024-02-23 00:04:24.74 2024-02-23 00:04:24.74 1300 FEE 435657 9921 6038399 2024-02-23 00:04:24.74 2024-02-23 00:04:24.74 11700 TIP 435657 21214 6038403 2024-02-23 00:05:01.248 2024-02-23 00:05:01.248 1000 FEE 435686 21329 6038408 2024-02-23 00:05:19.167 2024-02-23 00:05:19.167 1100 FEE 435657 19030 6038409 2024-02-23 00:05:19.167 2024-02-23 00:05:19.167 9900 TIP 435657 14910 6038413 2024-02-23 00:06:06.451 2024-02-23 00:06:06.451 1000 FEE 435453 14404 6038414 2024-02-23 00:06:06.451 2024-02-23 00:06:06.451 9000 TIP 435453 19660 6038424 2024-02-23 00:06:49.559 2024-02-23 00:06:49.559 3000 FEE 435679 19907 6038425 2024-02-23 00:06:49.559 2024-02-23 00:06:49.559 27000 TIP 435679 14045 6038489 2024-02-23 00:13:48.153 2024-02-23 00:13:48.153 300 FEE 435677 27 6038490 2024-02-23 00:13:48.153 2024-02-23 00:13:48.153 2700 TIP 435677 4102 6038572 2024-02-23 00:23:39.494 2024-02-23 00:23:39.494 21000 FEE 435697 15139 6038578 2024-02-23 00:24:58.432 2024-02-23 00:24:58.432 1100 FEE 435692 2042 6038579 2024-02-23 00:24:58.432 2024-02-23 00:24:58.432 9900 TIP 435692 21401 6038619 2024-02-23 00:26:48.085 2024-02-23 00:26:48.085 2300 FEE 435657 8985 6038620 2024-02-23 00:26:48.085 2024-02-23 00:26:48.085 20700 TIP 435657 20756 6038626 2024-02-23 00:27:04.934 2024-02-23 00:27:04.934 1000 FEE 435608 5794 6038627 2024-02-23 00:27:04.934 2024-02-23 00:27:04.934 9000 TIP 435608 16250 6038630 2024-02-23 00:27:22.959 2024-02-23 00:27:22.959 1000 FEE 435704 21573 6029946 2024-02-22 08:32:06.825 2024-02-22 08:32:06.825 5000 FEE 434498 14385 6029947 2024-02-22 08:32:06.825 2024-02-22 08:32:06.825 45000 TIP 434498 11522 6029959 2024-02-22 08:37:36.322 2024-02-22 08:37:36.322 2100 FEE 434577 18409 6029960 2024-02-22 08:37:36.322 2024-02-22 08:37:36.322 18900 TIP 434577 738 6029966 2024-02-22 08:41:00.583 2024-02-22 08:41:00.583 2100 FEE 434660 844 6029967 2024-02-22 08:41:00.583 2024-02-22 08:41:00.583 18900 TIP 434660 19320 6030007 2024-02-22 08:47:57.832 2024-02-22 08:47:57.832 100 FEE 434646 19016 6030008 2024-02-22 08:47:57.832 2024-02-22 08:47:57.832 900 TIP 434646 16214 6030018 2024-02-22 08:49:28.492 2024-02-22 08:49:28.492 1000 FEE 434683 18368 6030031 2024-02-22 08:54:24.581 2024-02-22 08:54:24.581 10000 FEE 434685 18271 6030042 2024-02-22 08:54:56.451 2024-02-22 08:54:56.451 500 FEE 434285 21412 6030043 2024-02-22 08:54:56.451 2024-02-22 08:54:56.451 4500 TIP 434285 7766 6030059 2024-02-22 08:59:51.971 2024-02-22 08:59:51.971 100 FEE 434535 19118 6030060 2024-02-22 08:59:51.971 2024-02-22 08:59:51.971 900 TIP 434535 20788 6030076 2024-02-22 09:03:18.635 2024-02-22 09:03:18.635 1000 FEE 434689 13843 6030084 2024-02-22 09:06:22.43 2024-02-22 09:06:22.43 1600 FEE 434642 20776 6030085 2024-02-22 09:06:22.43 2024-02-22 09:06:22.43 14400 TIP 434642 19484 6030088 2024-02-22 09:06:23.038 2024-02-22 09:06:23.038 1000 FEE 434692 18452 6030093 2024-02-22 09:08:55.981 2024-02-22 09:08:55.981 10000 FEE 434693 671 6030122 2024-02-22 09:19:43.274 2024-02-22 09:19:43.274 12800 FEE 433835 2347 6030123 2024-02-22 09:19:43.274 2024-02-22 09:19:43.274 115200 TIP 433835 632 6030128 2024-02-22 09:21:04.42 2024-02-22 09:21:04.42 2100 FEE 434698 977 6030129 2024-02-22 09:21:04.42 2024-02-22 09:21:04.42 18900 TIP 434698 15484 6030155 2024-02-22 09:26:50.882 2024-02-22 09:26:50.882 4000 FEE 434627 20470 6030156 2024-02-22 09:26:50.882 2024-02-22 09:26:50.882 36000 TIP 434627 19961 6030184 2024-02-22 09:30:58.409 2024-02-22 09:30:58.409 1000 FEE 434706 708 6030221 2024-02-22 09:37:03.655 2024-02-22 09:37:03.655 300 FEE 434713 12169 6030222 2024-02-22 09:37:03.655 2024-02-22 09:37:03.655 2700 TIP 434713 9843 6030225 2024-02-22 09:37:04.596 2024-02-22 09:37:04.596 300 FEE 434713 652 6030226 2024-02-22 09:37:04.596 2024-02-22 09:37:04.596 2700 TIP 434713 2329 6030227 2024-02-22 09:37:04.806 2024-02-22 09:37:04.806 300 FEE 434713 718 6030228 2024-02-22 09:37:04.806 2024-02-22 09:37:04.806 2700 TIP 434713 10611 6030231 2024-02-22 09:37:05.639 2024-02-22 09:37:05.639 300 FEE 434713 940 6030232 2024-02-22 09:37:05.639 2024-02-22 09:37:05.639 2700 TIP 434713 19506 6030251 2024-02-22 09:39:02.806 2024-02-22 09:39:02.806 2100 FEE 434627 14195 6030252 2024-02-22 09:39:02.806 2024-02-22 09:39:02.806 18900 TIP 434627 12220 6030258 2024-02-22 09:39:07.443 2024-02-22 09:39:07.443 2100 FEE 434385 17014 6030259 2024-02-22 09:39:07.443 2024-02-22 09:39:07.443 18900 TIP 434385 12744 6030262 2024-02-22 09:39:08.386 2024-02-22 09:39:08.386 2100 FEE 434665 1632 6030263 2024-02-22 09:39:08.386 2024-02-22 09:39:08.386 18900 TIP 434665 13854 6030300 2024-02-22 09:44:24.488 2024-02-22 09:44:24.488 1000 FEE 434720 831 6030303 2024-02-22 09:45:03.89 2024-02-22 09:45:03.89 10000 FEE 434276 20340 6030304 2024-02-22 09:45:03.89 2024-02-22 09:45:03.89 90000 TIP 434276 20911 6030315 2024-02-22 09:45:48.477 2024-02-22 09:45:48.477 100 FEE 434440 15617 6030316 2024-02-22 09:45:48.477 2024-02-22 09:45:48.477 900 TIP 434440 14225 6030350 2024-02-22 09:50:32.833 2024-02-22 09:50:32.833 0 FEE 434718 3342 6030351 2024-02-22 09:50:40.052 2024-02-22 09:50:40.052 0 FEE 434718 11621 6030366 2024-02-22 09:52:21.296 2024-02-22 09:52:21.296 1000 FEE 434730 5069 6030377 2024-02-22 09:55:11.65 2024-02-22 09:55:11.65 0 FEE 434730 20525 6030395 2024-02-22 09:59:06.183 2024-02-22 09:59:06.183 2100 FEE 434732 13753 6030396 2024-02-22 09:59:06.183 2024-02-22 09:59:06.183 18900 TIP 434732 10728 6030407 2024-02-22 10:02:09.111 2024-02-22 10:02:09.111 1000 FEE 434739 1740 6030417 2024-02-22 10:04:40.066 2024-02-22 10:04:40.066 1000 FEE 434743 19981 6030420 2024-02-22 10:04:47.495 2024-02-22 10:04:47.495 1100 FEE 434697 1173 6030421 2024-02-22 10:04:47.495 2024-02-22 10:04:47.495 9900 TIP 434697 9362 6030424 2024-02-22 10:05:29.126 2024-02-22 10:05:29.126 10000 FEE 434745 4064 6030432 2024-02-22 10:07:42.166 2024-02-22 10:07:42.166 50000 FEE 434707 17201 6030433 2024-02-22 10:07:42.166 2024-02-22 10:07:42.166 450000 TIP 434707 2000 6030457 2024-02-22 10:18:05.068 2024-02-22 10:18:05.068 1000 FEE 434753 1802 6030460 2024-02-22 10:18:57.388 2024-02-22 10:18:57.388 2100 FEE 434691 21119 6030461 2024-02-22 10:18:57.388 2024-02-22 10:18:57.388 18900 TIP 434691 18618 6030466 2024-02-22 10:19:57.899 2024-02-22 10:19:57.899 100 FEE 434722 21413 6030030 2024-02-22 08:54:04.511 2024-02-22 08:54:04.511 1000 STREAM 141924 11789 6030049 2024-02-22 08:56:04.507 2024-02-22 08:56:04.507 1000 STREAM 141924 18271 6030055 2024-02-22 08:58:04.511 2024-02-22 08:58:04.511 1000 STREAM 141924 2543 6030064 2024-02-22 09:00:04.737 2024-02-22 09:00:04.737 1000 STREAM 141924 14247 6030070 2024-02-22 09:01:04.62 2024-02-22 09:01:04.62 1000 STREAM 141924 9366 6030073 2024-02-22 09:02:04.635 2024-02-22 09:02:04.635 1000 STREAM 141924 9150 6030075 2024-02-22 09:03:04.645 2024-02-22 09:03:04.645 1000 STREAM 141924 20881 6030079 2024-02-22 09:04:04.629 2024-02-22 09:04:04.629 1000 STREAM 141924 21051 6030083 2024-02-22 09:06:04.653 2024-02-22 09:06:04.653 1000 STREAM 141924 10094 6030091 2024-02-22 09:07:04.673 2024-02-22 09:07:04.673 1000 STREAM 141924 15521 6030092 2024-02-22 09:08:04.656 2024-02-22 09:08:04.656 1000 STREAM 141924 11314 6030094 2024-02-22 09:09:04.649 2024-02-22 09:09:04.649 1000 STREAM 141924 15337 6030099 2024-02-22 09:10:04.664 2024-02-22 09:10:04.664 1000 STREAM 141924 20110 6030100 2024-02-22 09:11:04.664 2024-02-22 09:11:04.664 1000 STREAM 141924 20299 6030107 2024-02-22 09:14:04.697 2024-02-22 09:14:04.697 1000 STREAM 141924 16348 6030111 2024-02-22 09:17:04.71 2024-02-22 09:17:04.71 1000 STREAM 141924 21178 6030113 2024-02-22 09:18:04.727 2024-02-22 09:18:04.727 1000 STREAM 141924 16406 6030119 2024-02-22 09:19:02.729 2024-02-22 09:19:02.729 1000 STREAM 141924 624 6030124 2024-02-22 09:20:02.725 2024-02-22 09:20:02.725 1000 STREAM 141924 19902 6030127 2024-02-22 09:21:02.718 2024-02-22 09:21:02.718 1000 STREAM 141924 14688 6030131 2024-02-22 09:22:02.749 2024-02-22 09:22:02.749 1000 STREAM 141924 12024 6030144 2024-02-22 09:24:02.745 2024-02-22 09:24:02.745 1000 STREAM 141924 17714 6030148 2024-02-22 09:25:02.767 2024-02-22 09:25:02.767 1000 STREAM 141924 730 6030149 2024-02-22 09:26:02.749 2024-02-22 09:26:02.749 1000 STREAM 141924 9355 6030168 2024-02-22 09:28:02.767 2024-02-22 09:28:02.767 1000 STREAM 141924 2326 6030181 2024-02-22 09:30:02.766 2024-02-22 09:30:02.766 1000 STREAM 141924 21072 6030195 2024-02-22 09:33:02.793 2024-02-22 09:33:02.793 1000 STREAM 141924 20756 6030218 2024-02-22 09:37:02.812 2024-02-22 09:37:02.812 1000 STREAM 141924 12965 6030302 2024-02-22 09:45:02.86 2024-02-22 09:45:02.86 1000 STREAM 141924 4322 6030324 2024-02-22 09:46:02.881 2024-02-22 09:46:02.881 1000 STREAM 141924 746 6030339 2024-02-22 09:49:02.883 2024-02-22 09:49:02.883 1000 STREAM 141924 3213 6030356 2024-02-22 09:51:02.88 2024-02-22 09:51:02.88 1000 STREAM 141924 837 6030367 2024-02-22 09:53:02.895 2024-02-22 09:53:02.895 1000 STREAM 141924 14357 6030370 2024-02-22 09:54:02.894 2024-02-22 09:54:02.894 1000 STREAM 141924 7659 6030413 2024-02-22 10:03:03.174 2024-02-22 10:03:03.174 1000 STREAM 141924 15337 6030431 2024-02-22 10:07:03.209 2024-02-22 10:07:03.209 1000 STREAM 141924 7418 6030441 2024-02-22 10:10:03.252 2024-02-22 10:10:03.252 1000 STREAM 141924 20231 6030446 2024-02-22 10:12:03.248 2024-02-22 10:12:03.248 1000 STREAM 141924 18124 6030453 2024-02-22 10:17:03.278 2024-02-22 10:17:03.278 1000 STREAM 141924 15161 6030462 2024-02-22 10:19:03.281 2024-02-22 10:19:03.281 1000 STREAM 141924 19967 6030524 2024-02-22 10:27:03.313 2024-02-22 10:27:03.313 1000 STREAM 141924 14376 6030532 2024-02-22 10:29:03.324 2024-02-22 10:29:03.324 1000 STREAM 141924 632 6030543 2024-02-22 10:33:03.339 2024-02-22 10:33:03.339 1000 STREAM 141924 9758 6030585 2024-02-22 10:35:03.361 2024-02-22 10:35:03.361 1000 STREAM 141924 993 6030621 2024-02-22 10:39:03.379 2024-02-22 10:39:03.379 1000 STREAM 141924 20704 6030653 2024-02-22 10:46:03.391 2024-02-22 10:46:03.391 1000 STREAM 141924 9166 6030663 2024-02-22 10:48:03.416 2024-02-22 10:48:03.416 1000 STREAM 141924 12057 6030672 2024-02-22 10:50:03.44 2024-02-22 10:50:03.44 1000 STREAM 141924 20594 6030681 2024-02-22 10:51:03.408 2024-02-22 10:51:03.408 1000 STREAM 141924 21485 6030685 2024-02-22 10:52:03.411 2024-02-22 10:52:03.411 1000 STREAM 141924 17568 6030693 2024-02-22 10:54:03.427 2024-02-22 10:54:03.427 1000 STREAM 141924 633 6036172 2024-02-22 19:46:48.413 2024-02-22 19:46:48.413 1600 FEE 435328 20563 6036173 2024-02-22 19:46:48.413 2024-02-22 19:46:48.413 14400 TIP 435328 1631 6036179 2024-02-22 19:47:49.78 2024-02-22 19:47:49.78 210000 FEE 435458 5806 6036180 2024-02-22 19:48:00.09 2024-02-22 19:48:00.09 1000 FEE 435459 20153 6036188 2024-02-22 19:48:19.564 2024-02-22 19:48:19.564 2300 FEE 435457 16513 6036189 2024-02-22 19:48:19.564 2024-02-22 19:48:19.564 20700 TIP 435457 18452 6036240 2024-02-22 20:00:47.691 2024-02-22 20:00:47.691 100 FEE 435458 14663 6036241 2024-02-22 20:00:47.691 2024-02-22 20:00:47.691 900 TIP 435458 782 6036248 2024-02-22 20:01:54.327 2024-02-22 20:01:54.327 1000 FEE 435458 20058 6036249 2024-02-22 20:01:54.327 2024-02-22 20:01:54.327 9000 TIP 435458 4027 6036250 2024-02-22 20:02:03.88 2024-02-22 20:02:03.88 1000 FEE 435453 15409 6036251 2024-02-22 20:02:03.88 2024-02-22 20:02:03.88 9000 TIP 435453 6160 6036263 2024-02-22 20:05:23.241 2024-02-22 20:05:23.241 8300 FEE 435453 19929 6036264 2024-02-22 20:05:23.241 2024-02-22 20:05:23.241 74700 TIP 435453 5112 6036285 2024-02-22 20:13:24.11 2024-02-22 20:13:24.11 1100 FEE 435261 12606 6036286 2024-02-22 20:13:24.11 2024-02-22 20:13:24.11 9900 TIP 435261 620 6036287 2024-02-22 20:13:24.241 2024-02-22 20:13:24.241 1100 FEE 435261 6335 6036288 2024-02-22 20:13:24.241 2024-02-22 20:13:24.241 9900 TIP 435261 4633 6036314 2024-02-22 20:22:07.846 2024-02-22 20:22:07.846 10000 FEE 435480 977 6036342 2024-02-22 20:26:00.644 2024-02-22 20:26:00.644 10000 FEE 435242 9078 6036343 2024-02-22 20:26:00.644 2024-02-22 20:26:00.644 90000 TIP 435242 20973 6036394 2024-02-22 20:39:18.154 2024-02-22 20:39:18.154 800 FEE 435241 3353 6036395 2024-02-22 20:39:18.154 2024-02-22 20:39:18.154 7200 TIP 435241 16769 6036415 2024-02-22 20:41:24.225 2024-02-22 20:41:24.225 2300 FEE 435497 21444 6036416 2024-02-22 20:41:24.225 2024-02-22 20:41:24.225 20700 TIP 435497 19795 6036507 2024-02-22 20:43:00.675 2024-02-22 20:43:00.675 1000 FEE 435465 9099 6036508 2024-02-22 20:43:00.675 2024-02-22 20:43:00.675 9000 TIP 435465 1480 6036545 2024-02-22 20:48:03.522 2024-02-22 20:48:03.522 1000 FEE 435500 15732 6036546 2024-02-22 20:48:03.522 2024-02-22 20:48:03.522 9000 TIP 435500 618 6036565 2024-02-22 20:48:28.873 2024-02-22 20:48:28.873 1000 FEE 435475 1438 6036566 2024-02-22 20:48:28.873 2024-02-22 20:48:28.873 9000 TIP 435475 11298 6036600 2024-02-22 20:49:00.08 2024-02-22 20:49:00.08 100 FEE 435505 6202 6036601 2024-02-22 20:49:00.08 2024-02-22 20:49:00.08 900 TIP 435505 5455 6036624 2024-02-22 20:52:42.529 2024-02-22 20:52:42.529 10000 FEE 435510 9874 6036626 2024-02-22 20:53:23.98 2024-02-22 20:53:23.98 1000 FEE 435497 866 6036627 2024-02-22 20:53:23.98 2024-02-22 20:53:23.98 9000 TIP 435497 18528 6036648 2024-02-22 20:53:53.129 2024-02-22 20:53:53.129 100 FEE 435314 21343 6036649 2024-02-22 20:53:53.129 2024-02-22 20:53:53.129 900 TIP 435314 8505 6036655 2024-02-22 20:54:27.792 2024-02-22 20:54:27.792 100 FEE 435488 17446 6036656 2024-02-22 20:54:27.792 2024-02-22 20:54:27.792 900 TIP 435488 21493 6036662 2024-02-22 20:54:31.405 2024-02-22 20:54:31.405 11700 FEE 435512 18230 6036663 2024-02-22 20:54:31.405 2024-02-22 20:54:31.405 105300 TIP 435512 19096 6036712 2024-02-22 21:05:27.951 2024-02-22 21:05:27.951 0 FEE 435520 6430 6036718 2024-02-22 21:07:11.363 2024-02-22 21:07:11.363 0 FEE 435520 3729 6036720 2024-02-22 21:07:49.435 2024-02-22 21:07:49.435 1000 FEE 435521 956 6036721 2024-02-22 21:07:49.435 2024-02-22 21:07:49.435 9000 TIP 435521 18601 6036731 2024-02-22 21:09:36.496 2024-02-22 21:09:36.496 3300 FEE 435504 9351 6036732 2024-02-22 21:09:36.496 2024-02-22 21:09:36.496 29700 TIP 435504 15336 6036752 2024-02-22 21:13:37.562 2024-02-22 21:13:37.562 100 FEE 435525 2774 6036753 2024-02-22 21:13:37.562 2024-02-22 21:13:37.562 900 TIP 435525 20201 6036756 2024-02-22 21:13:48.29 2024-02-22 21:13:48.29 1000 FEE 435531 21238 6036762 2024-02-22 21:14:28.826 2024-02-22 21:14:28.826 2100 FEE 434958 19463 6036763 2024-02-22 21:14:28.826 2024-02-22 21:14:28.826 18900 TIP 434958 19966 6036773 2024-02-22 21:15:27.897 2024-02-22 21:15:27.897 1000 FEE 435534 11678 6030048 2024-02-22 08:55:04.507 2024-02-22 08:55:04.507 1000 STREAM 141924 21238 6030054 2024-02-22 08:57:04.515 2024-02-22 08:57:04.515 1000 STREAM 141924 15213 6030058 2024-02-22 08:59:04.511 2024-02-22 08:59:04.511 1000 STREAM 141924 10693 6030082 2024-02-22 09:05:04.641 2024-02-22 09:05:04.641 1000 STREAM 141924 2123 6030103 2024-02-22 09:12:04.668 2024-02-22 09:12:04.668 1000 STREAM 141924 12821 6030106 2024-02-22 09:13:04.668 2024-02-22 09:13:04.668 1000 STREAM 141924 9695 6030108 2024-02-22 09:15:04.691 2024-02-22 09:15:04.691 1000 STREAM 141924 19286 6030109 2024-02-22 09:16:04.693 2024-02-22 09:16:04.693 1000 STREAM 141924 20087 6030133 2024-02-22 09:23:02.75 2024-02-22 09:23:02.75 1000 STREAM 141924 6421 6030165 2024-02-22 09:27:02.77 2024-02-22 09:27:02.77 1000 STREAM 141924 16847 6030171 2024-02-22 09:29:02.775 2024-02-22 09:29:02.775 1000 STREAM 141924 12609 6030186 2024-02-22 09:31:02.779 2024-02-22 09:31:02.779 1000 STREAM 141924 3409 6030190 2024-02-22 09:32:02.776 2024-02-22 09:32:02.776 1000 STREAM 141924 12268 6030199 2024-02-22 09:34:02.788 2024-02-22 09:34:02.788 1000 STREAM 141924 20162 6030206 2024-02-22 09:35:02.801 2024-02-22 09:35:02.801 1000 STREAM 141924 4395 6030212 2024-02-22 09:36:02.802 2024-02-22 09:36:02.802 1000 STREAM 141924 3360 6030242 2024-02-22 09:38:02.824 2024-02-22 09:38:02.824 1000 STREAM 141924 20381 6030284 2024-02-22 09:40:02.855 2024-02-22 09:40:02.855 1000 STREAM 141924 12516 6030327 2024-02-22 09:47:02.875 2024-02-22 09:47:02.875 1000 STREAM 141924 8570 6030331 2024-02-22 09:48:02.896 2024-02-22 09:48:02.896 1000 STREAM 141924 12708 6030348 2024-02-22 09:50:02.883 2024-02-22 09:50:02.883 1000 STREAM 141924 20327 6030365 2024-02-22 09:52:02.886 2024-02-22 09:52:02.886 1000 STREAM 141924 18368 6030389 2024-02-22 09:58:02.902 2024-02-22 09:58:02.902 1000 STREAM 141924 6419 6030422 2024-02-22 10:05:03.198 2024-02-22 10:05:03.198 1000 STREAM 141924 16350 6030445 2024-02-22 10:11:03.255 2024-02-22 10:11:03.255 1000 STREAM 141924 19581 6030449 2024-02-22 10:14:03.252 2024-02-22 10:14:03.252 1000 STREAM 141924 10698 6030451 2024-02-22 10:15:03.266 2024-02-22 10:15:03.266 1000 STREAM 141924 2437 6030483 2024-02-22 10:21:03.291 2024-02-22 10:21:03.291 1000 STREAM 141924 16847 6030501 2024-02-22 10:23:03.276 2024-02-22 10:23:03.276 1000 STREAM 141924 14657 6030511 2024-02-22 10:25:03.301 2024-02-22 10:25:03.301 1000 STREAM 141924 18170 6030538 2024-02-22 10:31:03.327 2024-02-22 10:31:03.327 1000 STREAM 141924 8926 6030613 2024-02-22 10:37:03.36 2024-02-22 10:37:03.36 1000 STREAM 141924 11220 6030631 2024-02-22 10:41:03.401 2024-02-22 10:41:03.401 1000 STREAM 141924 620 6030642 2024-02-22 10:43:03.38 2024-02-22 10:43:03.38 1000 STREAM 141924 12921 6030652 2024-02-22 10:45:03.394 2024-02-22 10:45:03.394 1000 STREAM 141924 2709 6030667 2024-02-22 10:49:03.406 2024-02-22 10:49:03.406 1000 STREAM 141924 20168 6030686 2024-02-22 10:53:03.416 2024-02-22 10:53:03.416 1000 STREAM 141924 826 6030696 2024-02-22 10:55:03.422 2024-02-22 10:55:03.422 1000 STREAM 141924 19449 6030713 2024-02-22 10:56:03.433 2024-02-22 10:56:03.433 1000 STREAM 141924 690 6030725 2024-02-22 10:57:03.428 2024-02-22 10:57:03.428 1000 STREAM 141924 8133 6036229 2024-02-22 19:59:39.975 2024-02-22 19:59:39.975 900 TIP 435449 20858 6036230 2024-02-22 19:59:40.138 2024-02-22 19:59:40.138 900 FEE 435449 4074 6036231 2024-02-22 19:59:40.138 2024-02-22 19:59:40.138 8100 TIP 435449 14909 6036232 2024-02-22 19:59:49.29 2024-02-22 19:59:49.29 2100 FEE 429807 19890 6036233 2024-02-22 19:59:49.29 2024-02-22 19:59:49.29 18900 TIP 429807 1352 6036258 2024-02-22 20:03:08.1 2024-02-22 20:03:08.1 10000 FEE 435469 2330 6036259 2024-02-22 20:03:39.496 2024-02-22 20:03:39.496 1000 FEE 435470 17984 6036341 2024-02-22 20:25:16.978 2024-02-22 20:25:16.978 100000 FEE 435482 19435 6036372 2024-02-22 20:35:13.383 2024-02-22 20:35:13.383 10000 FEE 432416 20837 6036373 2024-02-22 20:35:13.383 2024-02-22 20:35:13.383 90000 TIP 432416 19569 6036386 2024-02-22 20:38:05.928 2024-02-22 20:38:05.928 2500 FEE 435292 2123 6036387 2024-02-22 20:38:05.928 2024-02-22 20:38:05.928 22500 TIP 435292 17827 6036443 2024-02-22 20:41:38.83 2024-02-22 20:41:38.83 2300 FEE 435497 21332 6036444 2024-02-22 20:41:38.83 2024-02-22 20:41:38.83 20700 TIP 435497 696 6036451 2024-02-22 20:41:41.657 2024-02-22 20:41:41.657 2300 FEE 435497 15978 6036452 2024-02-22 20:41:41.657 2024-02-22 20:41:41.657 20700 TIP 435497 10063 6036491 2024-02-22 20:41:53.165 2024-02-22 20:41:53.165 200 FEE 435496 19821 6036492 2024-02-22 20:41:53.165 2024-02-22 20:41:53.165 1800 TIP 435496 21458 6036500 2024-02-22 20:42:37.903 2024-02-22 20:42:37.903 1000 FEE 435213 17001 6036501 2024-02-22 20:42:37.903 2024-02-22 20:42:37.903 9000 TIP 435213 8541 6036534 2024-02-22 20:47:16.126 2024-02-22 20:47:16.126 1100 FEE 435159 7119 6036535 2024-02-22 20:47:16.126 2024-02-22 20:47:16.126 9900 TIP 435159 5791 6036583 2024-02-22 20:48:54.058 2024-02-22 20:48:54.058 100 FEE 435497 1438 6036584 2024-02-22 20:48:54.058 2024-02-22 20:48:54.058 900 TIP 435497 19126 6036593 2024-02-22 20:48:56.73 2024-02-22 20:48:56.73 0 FEE 435507 1298 6036634 2024-02-22 20:53:24.489 2024-02-22 20:53:24.489 1000 FEE 435509 4570 6036635 2024-02-22 20:53:24.489 2024-02-22 20:53:24.489 9000 TIP 435509 3461 6036643 2024-02-22 20:53:42.757 2024-02-22 20:53:42.757 1000 FEE 435512 3360 6036644 2024-02-22 20:53:52.455 2024-02-22 20:53:52.455 100 FEE 435314 21104 6036645 2024-02-22 20:53:52.455 2024-02-22 20:53:52.455 900 TIP 435314 19615 6036669 2024-02-22 20:55:04.911 2024-02-22 20:55:04.911 900 FEE 435467 11450 6036670 2024-02-22 20:55:04.911 2024-02-22 20:55:04.911 8100 TIP 435467 683 6036673 2024-02-22 20:55:23.691 2024-02-22 20:55:23.691 9000 FEE 435458 8498 6036674 2024-02-22 20:55:23.691 2024-02-22 20:55:23.691 81000 TIP 435458 20778 6036675 2024-02-22 20:55:58.634 2024-02-22 20:55:58.634 100 FEE 435495 6533 6036676 2024-02-22 20:55:58.634 2024-02-22 20:55:58.634 900 TIP 435495 4014 6036690 2024-02-22 20:57:27.894 2024-02-22 20:57:27.894 1000 FEE 435517 19864 6036709 2024-02-22 21:04:36.759 2024-02-22 21:04:36.759 1000 FEE 435520 19541 6036764 2024-02-22 21:14:35.417 2024-02-22 21:14:35.417 2100 FEE 435402 1713 6036765 2024-02-22 21:14:35.417 2024-02-22 21:14:35.417 18900 TIP 435402 21216 6036769 2024-02-22 21:15:04.767 2024-02-22 21:15:04.767 1600 FEE 435497 16513 6036770 2024-02-22 21:15:04.767 2024-02-22 21:15:04.767 14400 TIP 435497 20058 6036795 2024-02-22 21:16:48.296 2024-02-22 21:16:48.296 1000 FEE 435537 659 6036806 2024-02-22 21:18:35.137 2024-02-22 21:18:35.137 10000 FEE 435199 19156 6036807 2024-02-22 21:18:35.137 2024-02-22 21:18:35.137 90000 TIP 435199 9845 6036820 2024-02-22 21:19:44.952 2024-02-22 21:19:44.952 10000 FEE 435110 13406 6036821 2024-02-22 21:19:44.952 2024-02-22 21:19:44.952 90000 TIP 435110 2735 6036824 2024-02-22 21:20:38.545 2024-02-22 21:20:38.545 1000 FEE 435540 13132 6036865 2024-02-22 21:27:24.148 2024-02-22 21:27:24.148 1100 FEE 435127 16834 6036866 2024-02-22 21:27:24.148 2024-02-22 21:27:24.148 9900 TIP 435127 19435 6036872 2024-02-22 21:28:10.295 2024-02-22 21:28:10.295 10000 FEE 435242 13553 6036873 2024-02-22 21:28:10.295 2024-02-22 21:28:10.295 90000 TIP 435242 13042 6036874 2024-02-22 21:28:14.969 2024-02-22 21:28:14.969 2500 FEE 435504 19732 6036875 2024-02-22 21:28:14.969 2024-02-22 21:28:14.969 22500 TIP 435504 17446 6036880 2024-02-22 21:30:17.446 2024-02-22 21:30:17.446 500 FEE 435328 17221 6036881 2024-02-22 21:30:17.446 2024-02-22 21:30:17.446 4500 TIP 435328 21481 6036884 2024-02-22 21:30:34.422 2024-02-22 21:30:34.422 10000 FEE 435544 21614 6036885 2024-02-22 21:30:34.422 2024-02-22 21:30:34.422 90000 TIP 435544 5497 6036903 2024-02-22 21:32:19.576 2024-02-22 21:32:19.576 1000 FEE 435548 8945 6036913 2024-02-22 21:33:31.353 2024-02-22 21:33:31.353 1100 FEE 435072 17517 6036914 2024-02-22 21:33:31.353 2024-02-22 21:33:31.353 9900 TIP 435072 5520 6036937 2024-02-22 21:36:40.602 2024-02-22 21:36:40.602 2100 FEE 435480 20243 6036938 2024-02-22 21:36:40.602 2024-02-22 21:36:40.602 18900 TIP 435480 7986 6036960 2024-02-22 21:39:55.989 2024-02-22 21:39:55.989 1000 FEE 435300 9183 6036961 2024-02-22 21:39:55.989 2024-02-22 21:39:55.989 9000 TIP 435300 716 6030052 2024-02-22 08:56:53.227 2024-02-22 08:56:53.227 5000 FEE 433828 10549 6030053 2024-02-22 08:56:53.227 2024-02-22 08:56:53.227 45000 TIP 433828 20264 6030056 2024-02-22 08:58:27.778 2024-02-22 08:58:27.778 5000 FEE 434560 21492 6030057 2024-02-22 08:58:27.778 2024-02-22 08:58:27.778 45000 TIP 434560 1717 6030061 2024-02-22 09:00:03.613 2024-02-22 09:00:03.613 1000 FEE 434686 20687 6030065 2024-02-22 09:00:06.772 2024-02-22 09:00:06.772 5000 FEE 434488 15180 6030066 2024-02-22 09:00:06.772 2024-02-22 09:00:06.772 45000 TIP 434488 21453 6030069 2024-02-22 09:00:58.071 2024-02-22 09:00:58.071 1000 FEE 434687 980 6030089 2024-02-22 09:06:30.757 2024-02-22 09:06:30.757 0 FEE 434692 9036 6030142 2024-02-22 09:23:57.964 2024-02-22 09:23:57.964 1200 FEE 434319 20581 6030143 2024-02-22 09:23:57.964 2024-02-22 09:23:57.964 10800 TIP 434319 18517 6030146 2024-02-22 09:24:15.873 2024-02-22 09:24:15.873 800 FEE 434514 18336 6030147 2024-02-22 09:24:15.873 2024-02-22 09:24:15.873 7200 TIP 434514 18828 6030163 2024-02-22 09:26:59.357 2024-02-22 09:26:59.357 4000 FEE 434637 8535 6030164 2024-02-22 09:26:59.357 2024-02-22 09:26:59.357 36000 TIP 434637 10352 6030210 2024-02-22 09:35:45.107 2024-02-22 09:35:45.107 4000 FEE 434516 16939 6030211 2024-02-22 09:35:45.107 2024-02-22 09:35:45.107 36000 TIP 434516 5522 6030219 2024-02-22 09:37:03.487 2024-02-22 09:37:03.487 300 FEE 434713 20906 6030220 2024-02-22 09:37:03.487 2024-02-22 09:37:03.487 2700 TIP 434713 1180 6030233 2024-02-22 09:37:08.683 2024-02-22 09:37:08.683 300 FEE 434713 2203 6030234 2024-02-22 09:37:08.683 2024-02-22 09:37:08.683 2700 TIP 434713 21402 6030249 2024-02-22 09:39:02.04 2024-02-22 09:39:02.04 2100 FEE 434285 16842 6030250 2024-02-22 09:39:02.04 2024-02-22 09:39:02.04 18900 TIP 434285 10112 6030254 2024-02-22 09:39:04.552 2024-02-22 09:39:04.552 2100 FEE 434278 9494 6030255 2024-02-22 09:39:04.552 2024-02-22 09:39:04.552 18900 TIP 434278 1471 6030256 2024-02-22 09:39:05.464 2024-02-22 09:39:05.464 2100 FEE 434488 12911 6030257 2024-02-22 09:39:05.464 2024-02-22 09:39:05.464 18900 TIP 434488 21233 6030268 2024-02-22 09:39:13.924 2024-02-22 09:39:13.924 2100 FEE 434396 2232 6030269 2024-02-22 09:39:13.924 2024-02-22 09:39:13.924 18900 TIP 434396 9351 6030270 2024-02-22 09:39:15.14 2024-02-22 09:39:15.14 2100 FEE 434637 992 6030271 2024-02-22 09:39:15.14 2024-02-22 09:39:15.14 18900 TIP 434637 12265 6030285 2024-02-22 09:40:04.067 2024-02-22 09:40:04.067 2100 FEE 433212 5637 6030286 2024-02-22 09:40:04.067 2024-02-22 09:40:04.067 18900 TIP 433212 2774 6030292 2024-02-22 09:42:02.998 2024-02-22 09:42:02.998 10000 FEE 434718 1047 6030306 2024-02-22 09:45:32.336 2024-02-22 09:45:32.336 1000 FEE 434723 2022 6030329 2024-02-22 09:47:37.221 2024-02-22 09:47:37.221 12800 FEE 433788 12721 6030330 2024-02-22 09:47:37.221 2024-02-22 09:47:37.221 115200 TIP 433788 8998 6030343 2024-02-22 09:49:40.561 2024-02-22 09:49:40.561 800 FEE 434615 1316 6030344 2024-02-22 09:49:40.561 2024-02-22 09:49:40.561 7200 TIP 434615 16267 6030346 2024-02-22 09:49:51.125 2024-02-22 09:49:51.125 12800 FEE 433782 21021 6030347 2024-02-22 09:49:51.125 2024-02-22 09:49:51.125 115200 TIP 433782 19966 6030354 2024-02-22 09:50:47.364 2024-02-22 09:50:47.364 0 FEE 434727 19462 6030381 2024-02-22 09:56:19.595 2024-02-22 09:56:19.595 12800 FEE 433772 5497 6030382 2024-02-22 09:56:19.595 2024-02-22 09:56:19.595 115200 TIP 433772 1221 6030392 2024-02-22 09:59:01.185 2024-02-22 09:59:01.185 2100 FEE 434119 6268 6030393 2024-02-22 09:59:01.185 2024-02-22 09:59:01.185 18900 TIP 434119 716 6030405 2024-02-22 10:01:42.985 2024-02-22 10:01:42.985 1000 FEE 434738 9342 6030414 2024-02-22 10:03:38.881 2024-02-22 10:03:38.881 1000 FEE 434741 14258 6030429 2024-02-22 10:06:16.143 2024-02-22 10:06:16.143 800 FEE 434739 20647 6030430 2024-02-22 10:06:16.143 2024-02-22 10:06:16.143 7200 TIP 434739 825 6030434 2024-02-22 10:07:45.776 2024-02-22 10:07:45.776 50000 FEE 434707 19507 6030435 2024-02-22 10:07:45.776 2024-02-22 10:07:45.776 450000 TIP 434707 16347 6030470 2024-02-22 10:20:47.259 2024-02-22 10:20:47.259 1000 FEE 434756 18359 6030479 2024-02-22 10:20:53.103 2024-02-22 10:20:53.103 100 FEE 434755 20754 6030480 2024-02-22 10:20:53.103 2024-02-22 10:20:53.103 900 TIP 434755 4059 6030495 2024-02-22 10:22:36.702 2024-02-22 10:22:36.702 50000 FEE 433232 16230 6030496 2024-02-22 10:22:36.702 2024-02-22 10:22:36.702 450000 TIP 433232 16704 6030504 2024-02-22 10:23:36.216 2024-02-22 10:23:36.216 1000 FEE 434759 7847 6030525 2024-02-22 10:27:09.879 2024-02-22 10:27:09.879 1000 FEE 434764 19854 6030563 2024-02-22 10:34:49.547 2024-02-22 10:34:49.547 100 FEE 434718 997 6030564 2024-02-22 10:34:49.547 2024-02-22 10:34:49.547 900 TIP 434718 18446 6030577 2024-02-22 10:34:54.495 2024-02-22 10:34:54.495 100 FEE 434709 1326 6030578 2024-02-22 10:34:54.495 2024-02-22 10:34:54.495 900 TIP 434709 20781 6030596 2024-02-22 10:35:52.911 2024-02-22 10:35:52.911 1000 FEE 434775 20669 6030611 2024-02-22 10:37:02.088 2024-02-22 10:37:02.088 1100 FEE 434338 8360 6030612 2024-02-22 10:37:02.088 2024-02-22 10:37:02.088 9900 TIP 434338 8506 6030618 2024-02-22 10:37:36.973 2024-02-22 10:37:36.973 1100 FEE 434372 14472 6030619 2024-02-22 10:37:36.973 2024-02-22 10:37:36.973 9900 TIP 434372 13406 6030645 2024-02-22 10:43:26.879 2024-02-22 10:43:26.879 1000 FEE 434780 19660 6030649 2024-02-22 10:43:57.39 2024-02-22 10:43:57.39 2100 FEE 434779 21441 6030650 2024-02-22 10:43:57.39 2024-02-22 10:43:57.39 18900 TIP 434779 20560 6030654 2024-02-22 10:46:25.704 2024-02-22 10:46:25.704 10000 FEE 434782 7998 6030684 2024-02-22 10:51:20.617 2024-02-22 10:51:20.617 1000 FEE 434787 2963 6030753 2024-02-22 11:02:45.84 2024-02-22 11:02:45.84 0 FEE 434796 18667 6030758 2024-02-22 11:02:48.566 2024-02-22 11:02:48.566 1000 FEE 434802 797 6030759 2024-02-22 11:02:50.551 2024-02-22 11:02:50.551 1000 FEE 434798 16988 6030760 2024-02-22 11:02:50.551 2024-02-22 11:02:50.551 9000 TIP 434798 14959 6030761 2024-02-22 11:02:52.768 2024-02-22 11:02:52.768 1100 FEE 433913 7425 6030762 2024-02-22 11:02:52.768 2024-02-22 11:02:52.768 9900 TIP 433913 629 6030775 2024-02-22 11:04:08.434 2024-02-22 11:04:08.434 100 FEE 434440 19193 6030776 2024-02-22 11:04:08.434 2024-02-22 11:04:08.434 900 TIP 434440 16834 6030779 2024-02-22 11:04:08.883 2024-02-22 11:04:08.883 100 FEE 434440 9183 6030780 2024-02-22 11:04:08.883 2024-02-22 11:04:08.883 900 TIP 434440 15273 6030809 2024-02-22 11:07:35.18 2024-02-22 11:07:35.18 4000 FEE 434807 4633 6030810 2024-02-22 11:07:35.18 2024-02-22 11:07:35.18 36000 TIP 434807 8326 6030811 2024-02-22 11:07:55.454 2024-02-22 11:07:55.454 100000 FEE 434810 13927 6030827 2024-02-22 11:10:34.197 2024-02-22 11:10:34.197 1000 FEE 433799 20852 6030828 2024-02-22 11:10:34.197 2024-02-22 11:10:34.197 9000 TIP 433799 17011 6030837 2024-02-22 11:11:12.559 2024-02-22 11:11:12.559 1000 FEE 434818 882 6030850 2024-02-22 11:14:20.873 2024-02-22 11:14:20.873 10000 FEE 434822 15549 6030854 2024-02-22 11:14:42.542 2024-02-22 11:14:42.542 1000 FEE 434824 21441 6030868 2024-02-22 11:16:21.669 2024-02-22 11:16:21.669 1000 FEE 434791 5377 6030869 2024-02-22 11:16:21.669 2024-02-22 11:16:21.669 9000 TIP 434791 12965 6030873 2024-02-22 11:16:41.559 2024-02-22 11:16:41.559 0 FEE 434824 1737 6030884 2024-02-22 11:18:23.159 2024-02-22 11:18:23.159 100 FEE 434814 1439 6030885 2024-02-22 11:18:23.159 2024-02-22 11:18:23.159 900 TIP 434814 17514 6030897 2024-02-22 11:20:45.992 2024-02-22 11:20:45.992 2100 FEE 434754 13574 6030898 2024-02-22 11:20:45.992 2024-02-22 11:20:45.992 18900 TIP 434754 1044 6030925 2024-02-22 11:23:44.097 2024-02-22 11:23:44.097 1100 FEE 434763 750 6030926 2024-02-22 11:23:44.097 2024-02-22 11:23:44.097 9900 TIP 434763 1472 6030942 2024-02-22 11:28:01.918 2024-02-22 11:28:01.918 10000 FEE 434837 21424 6030086 2024-02-22 09:06:22.954 2024-02-22 09:06:22.954 1600 FEE 434646 20674 6030087 2024-02-22 09:06:22.954 2024-02-22 09:06:22.954 14400 TIP 434646 18269 6030095 2024-02-22 09:09:14.978 2024-02-22 09:09:14.978 0 FEE 434693 8541 6030101 2024-02-22 09:11:35.716 2024-02-22 09:11:35.716 800 FEE 434665 16513 6030102 2024-02-22 09:11:35.716 2024-02-22 09:11:35.716 7200 TIP 434665 649 6030104 2024-02-22 09:12:59.648 2024-02-22 09:12:59.648 800 FEE 434637 16356 6030105 2024-02-22 09:12:59.648 2024-02-22 09:12:59.648 7200 TIP 434637 761 6030169 2024-02-22 09:28:41.954 2024-02-22 09:28:41.954 800 FEE 434410 6191 6030170 2024-02-22 09:28:41.954 2024-02-22 09:28:41.954 7200 TIP 434410 19638 6030180 2024-02-22 09:30:01.447 2024-02-22 09:30:01.447 1000 FEE 434705 1046 6030191 2024-02-22 09:32:07.61 2024-02-22 09:32:07.61 1000 FEE 434709 20963 6030197 2024-02-22 09:33:34.101 2024-02-22 09:33:34.101 4000 FEE 434570 21062 6030198 2024-02-22 09:33:34.101 2024-02-22 09:33:34.101 36000 TIP 434570 1105 6030213 2024-02-22 09:36:17.152 2024-02-22 09:36:17.152 400 FEE 430498 18679 6030214 2024-02-22 09:36:17.152 2024-02-22 09:36:17.152 3600 TIP 430498 2010 6030215 2024-02-22 09:36:51.211 2024-02-22 09:36:51.211 1000 FEE 434714 1632 6030229 2024-02-22 09:37:05.408 2024-02-22 09:37:05.408 300 FEE 434713 6137 6030230 2024-02-22 09:37:05.408 2024-02-22 09:37:05.408 2700 TIP 434713 21344 6030241 2024-02-22 09:37:58.646 2024-02-22 09:37:58.646 1000 FEE 434715 13177 6030274 2024-02-22 09:39:16.241 2024-02-22 09:39:16.241 2100 FEE 434410 18271 6030275 2024-02-22 09:39:16.241 2024-02-22 09:39:16.241 18900 TIP 434410 14370 6030278 2024-02-22 09:39:23.4 2024-02-22 09:39:23.4 1000 FEE 434716 20585 6030279 2024-02-22 09:39:53.925 2024-02-22 09:39:53.925 21000 FEE 434717 20704 6030282 2024-02-22 09:40:02.739 2024-02-22 09:40:02.739 2100 FEE 434646 11897 6030283 2024-02-22 09:40:02.739 2024-02-22 09:40:02.739 18900 TIP 434646 5557 6030307 2024-02-22 09:45:46.096 2024-02-22 09:45:46.096 100 FEE 434440 1208 6030308 2024-02-22 09:45:46.096 2024-02-22 09:45:46.096 900 TIP 434440 18989 6030311 2024-02-22 09:45:47.247 2024-02-22 09:45:47.247 100 FEE 434440 9655 6030312 2024-02-22 09:45:47.247 2024-02-22 09:45:47.247 900 TIP 434440 17741 6030313 2024-02-22 09:45:47.854 2024-02-22 09:45:47.854 100 FEE 434440 16154 6030314 2024-02-22 09:45:47.854 2024-02-22 09:45:47.854 900 TIP 434440 889 6030328 2024-02-22 09:47:21.483 2024-02-22 09:47:21.483 21000 FEE 434724 787 6030345 2024-02-22 09:49:40.976 2024-02-22 09:49:40.976 1000 FEE 434728 21048 6030379 2024-02-22 09:55:48.146 2024-02-22 09:55:48.146 1000 FEE 434736 15213 6030398 2024-02-22 10:00:24.542 2024-02-22 10:00:24.542 2100 FEE 434724 2329 6030399 2024-02-22 10:00:24.542 2024-02-22 10:00:24.542 18900 TIP 434724 16970 6030408 2024-02-22 10:02:47.384 2024-02-22 10:02:47.384 12800 FEE 434072 16665 6030409 2024-02-22 10:02:47.384 2024-02-22 10:02:47.384 115200 TIP 434072 21603 6030485 2024-02-22 10:21:07.381 2024-02-22 10:21:07.381 1100 FEE 433883 4074 6030486 2024-02-22 10:21:07.381 2024-02-22 10:21:07.381 9900 TIP 433883 1208 6030487 2024-02-22 10:21:09.894 2024-02-22 10:21:09.894 10000 FEE 434695 5495 6030488 2024-02-22 10:21:09.894 2024-02-22 10:21:09.894 90000 TIP 434695 18583 6030497 2024-02-22 10:22:52.725 2024-02-22 10:22:52.725 2100 FEE 434717 12821 6030498 2024-02-22 10:22:52.725 2024-02-22 10:22:52.725 18900 TIP 434717 10530 6030516 2024-02-22 10:25:37.791 2024-02-22 10:25:37.791 2100 FEE 434652 1772 6030517 2024-02-22 10:25:37.791 2024-02-22 10:25:37.791 18900 TIP 434652 20264 6030556 2024-02-22 10:34:37.17 2024-02-22 10:34:37.17 0 FEE 434771 18412 6030575 2024-02-22 10:34:54.235 2024-02-22 10:34:54.235 100 FEE 434709 11819 6030576 2024-02-22 10:34:54.235 2024-02-22 10:34:54.235 900 TIP 434709 19151 6030583 2024-02-22 10:34:58.488 2024-02-22 10:34:58.488 2100 FEE 434756 20788 6030584 2024-02-22 10:34:58.488 2024-02-22 10:34:58.488 18900 TIP 434756 19777 6030586 2024-02-22 10:35:12.495 2024-02-22 10:35:12.495 1000 FEE 434773 20812 6030114 2024-02-22 09:18:12.09 2024-02-22 09:18:12.09 0 FEE 434696 2431 6030117 2024-02-22 09:18:45.999 2024-02-22 09:18:45.999 800 FEE 434627 738 6030118 2024-02-22 09:18:45.999 2024-02-22 09:18:45.999 7200 TIP 434627 5538 6030125 2024-02-22 09:20:49.877 2024-02-22 09:20:49.877 2100 FEE 434697 16950 6030126 2024-02-22 09:20:49.877 2024-02-22 09:20:49.877 18900 TIP 434697 3360 6030132 2024-02-22 09:22:38.359 2024-02-22 09:22:38.359 1000 FEE 434700 17494 6030140 2024-02-22 09:23:57.134 2024-02-22 09:23:57.134 1200 FEE 434319 21603 6030141 2024-02-22 09:23:57.134 2024-02-22 09:23:57.134 10800 TIP 434319 1983 6030153 2024-02-22 09:26:50.338 2024-02-22 09:26:50.338 4000 FEE 434498 1142 6030154 2024-02-22 09:26:50.338 2024-02-22 09:26:50.338 36000 TIP 434498 19637 6030159 2024-02-22 09:26:54.436 2024-02-22 09:26:54.436 4000 FEE 434488 17095 6030160 2024-02-22 09:26:54.436 2024-02-22 09:26:54.436 36000 TIP 434488 660 6030188 2024-02-22 09:31:36.039 2024-02-22 09:31:36.039 4000 FEE 434659 15266 6030189 2024-02-22 09:31:36.039 2024-02-22 09:31:36.039 36000 TIP 434659 1493 6030200 2024-02-22 09:34:22.738 2024-02-22 09:34:22.738 1000 FEE 434646 10112 6030201 2024-02-22 09:34:22.738 2024-02-22 09:34:22.738 9000 TIP 434646 18403 6030207 2024-02-22 09:35:07.189 2024-02-22 09:35:07.189 4000 FEE 434534 18659 6030208 2024-02-22 09:35:07.189 2024-02-22 09:35:07.189 36000 TIP 434534 20826 6030223 2024-02-22 09:37:04.434 2024-02-22 09:37:04.434 300 FEE 434713 9496 6030224 2024-02-22 09:37:04.434 2024-02-22 09:37:04.434 2700 TIP 434713 3683 6030298 2024-02-22 09:43:10.262 2024-02-22 09:43:10.262 1000 FEE 434719 20201 6030319 2024-02-22 09:45:49.419 2024-02-22 09:45:49.419 100 FEE 434440 6136 6030320 2024-02-22 09:45:49.419 2024-02-22 09:45:49.419 900 TIP 434440 15536 6030361 2024-02-22 09:51:33.034 2024-02-22 09:51:33.034 1000 FEE 434717 14271 6030362 2024-02-22 09:51:33.034 2024-02-22 09:51:33.034 9000 TIP 434717 6499 6030371 2024-02-22 09:54:13.981 2024-02-22 09:54:13.981 1000 FEE 434732 14152 6030378 2024-02-22 09:55:38.24 2024-02-22 09:55:38.24 1000 FEE 434735 18225 6030400 2024-02-22 10:00:24.992 2024-02-22 10:00:24.992 2100 FEE 434717 20006 6030401 2024-02-22 10:00:24.992 2024-02-22 10:00:24.992 18900 TIP 434717 12169 6030425 2024-02-22 10:05:30.417 2024-02-22 10:05:30.417 1000 FEE 434746 17713 6030463 2024-02-22 10:19:40.654 2024-02-22 10:19:40.654 1000 FEE 434754 15549 6030471 2024-02-22 10:20:51.853 2024-02-22 10:20:51.853 100 FEE 434755 20826 6030472 2024-02-22 10:20:51.853 2024-02-22 10:20:51.853 900 TIP 434755 19943 6030481 2024-02-22 10:20:55.989 2024-02-22 10:20:55.989 10000 FEE 434124 21413 6030482 2024-02-22 10:20:55.989 2024-02-22 10:20:55.989 90000 TIP 434124 17148 6030502 2024-02-22 10:23:35.972 2024-02-22 10:23:35.972 50000 FEE 434705 18678 6030503 2024-02-22 10:23:35.972 2024-02-22 10:23:35.972 450000 TIP 434705 9450 6030508 2024-02-22 10:24:51.48 2024-02-22 10:24:51.48 1000 FEE 434760 19689 6030514 2024-02-22 10:25:32.241 2024-02-22 10:25:32.241 100 FEE 434488 2775 6030515 2024-02-22 10:25:32.241 2024-02-22 10:25:32.241 900 TIP 434488 4027 6030518 2024-02-22 10:25:46.719 2024-02-22 10:25:46.719 1600 FEE 434752 828 6030519 2024-02-22 10:25:46.719 2024-02-22 10:25:46.719 14400 TIP 434752 8004 6030521 2024-02-22 10:26:18.634 2024-02-22 10:26:18.634 1000 FEE 434763 2330 6030535 2024-02-22 10:30:01.301 2024-02-22 10:30:01.301 200 FEE 434751 20973 6030536 2024-02-22 10:30:01.301 2024-02-22 10:30:01.301 1800 TIP 434751 14195 6030546 2024-02-22 10:33:20.008 2024-02-22 10:33:20.008 2000 FEE 434724 8380 6030547 2024-02-22 10:33:20.008 2024-02-22 10:33:20.008 18000 TIP 434724 9985 6030552 2024-02-22 10:33:50.588 2024-02-22 10:33:50.588 1000 FEE 434770 2390 6030590 2024-02-22 10:35:45.901 2024-02-22 10:35:45.901 100 FEE 434743 16965 6030591 2024-02-22 10:35:45.901 2024-02-22 10:35:45.901 900 TIP 434743 19569 6030609 2024-02-22 10:36:45.688 2024-02-22 10:36:45.688 100 FEE 434775 11515 6030610 2024-02-22 10:36:45.688 2024-02-22 10:36:45.688 900 TIP 434775 763 6030617 2024-02-22 10:37:26.894 2024-02-22 10:37:26.894 1000 FEE 434778 21585 6030622 2024-02-22 10:39:08.684 2024-02-22 10:39:08.684 1000 FEE 434514 2203 6030623 2024-02-22 10:39:08.684 2024-02-22 10:39:08.684 9000 TIP 434514 21387 6030627 2024-02-22 10:40:05.413 2024-02-22 10:40:05.413 1000 FEE 434695 946 6030628 2024-02-22 10:40:05.413 2024-02-22 10:40:05.413 9000 TIP 434695 16289 6030634 2024-02-22 10:41:24.151 2024-02-22 10:41:24.151 1000 FEE 434285 4259 6030635 2024-02-22 10:41:24.151 2024-02-22 10:41:24.151 9000 TIP 434285 13327 6030646 2024-02-22 10:43:28.841 2024-02-22 10:43:28.841 2100 FEE 434723 891 6030647 2024-02-22 10:43:28.841 2024-02-22 10:43:28.841 18900 TIP 434723 17148 6030657 2024-02-22 10:46:45.96 2024-02-22 10:46:45.96 1100 FEE 434781 866 6030658 2024-02-22 10:46:45.96 2024-02-22 10:46:45.96 9900 TIP 434781 11956 6030659 2024-02-22 10:46:46.517 2024-02-22 10:46:46.517 1100 FEE 434781 4322 6030660 2024-02-22 10:46:46.517 2024-02-22 10:46:46.517 9900 TIP 434781 19153 6030694 2024-02-22 10:54:04.775 2024-02-22 10:54:04.775 1000 FEE 434759 19117 6030695 2024-02-22 10:54:04.775 2024-02-22 10:54:04.775 9000 TIP 434759 21427 6030726 2024-02-22 10:57:45.618 2024-02-22 10:57:45.618 1000 FEE 434755 7119 6030727 2024-02-22 10:57:45.618 2024-02-22 10:57:45.618 9000 TIP 434755 2224 6030743 2024-02-22 11:02:10.547 2024-02-22 11:02:10.547 1000 FEE 434799 993 6030749 2024-02-22 11:02:43.119 2024-02-22 11:02:43.119 1000 FEE 434797 1064 6030750 2024-02-22 11:02:43.119 2024-02-22 11:02:43.119 9000 TIP 434797 859 6030756 2024-02-22 11:02:47.449 2024-02-22 11:02:47.449 1000 FEE 434796 19375 6030757 2024-02-22 11:02:47.449 2024-02-22 11:02:47.449 9000 TIP 434796 6419 6030764 2024-02-22 11:03:18.428 2024-02-22 11:03:18.428 4000 FEE 434800 21575 6030765 2024-02-22 11:03:18.428 2024-02-22 11:03:18.428 36000 TIP 434800 8796 6030771 2024-02-22 11:04:07.682 2024-02-22 11:04:07.682 100 FEE 434440 2724 6030772 2024-02-22 11:04:07.682 2024-02-22 11:04:07.682 900 TIP 434440 20059 6030790 2024-02-22 11:05:06.189 2024-02-22 11:05:06.189 100 FEE 434177 16879 6030791 2024-02-22 11:05:06.189 2024-02-22 11:05:06.189 900 TIP 434177 4798 6030794 2024-02-22 11:05:39.671 2024-02-22 11:05:39.671 1000 FEE 434805 18363 6030829 2024-02-22 11:10:35.297 2024-02-22 11:10:35.297 2000 FEE 433799 16193 6030830 2024-02-22 11:10:35.297 2024-02-22 11:10:35.297 18000 TIP 433799 17064 6030833 2024-02-22 11:10:37.951 2024-02-22 11:10:37.951 1000 FEE 434816 13759 6030839 2024-02-22 11:11:22.114 2024-02-22 11:11:22.114 1600 FEE 434806 3683 6030840 2024-02-22 11:11:22.114 2024-02-22 11:11:22.114 14400 TIP 434806 21498 6030870 2024-02-22 11:16:24.947 2024-02-22 11:16:24.947 10000 FEE 434498 5597 6030871 2024-02-22 11:16:24.947 2024-02-22 11:16:24.947 90000 TIP 434498 811 6030878 2024-02-22 11:17:54.409 2024-02-22 11:17:54.409 10000 FEE 434827 2640 6030906 2024-02-22 11:21:19.971 2024-02-22 11:21:19.971 1100 FEE 434830 5794 6030907 2024-02-22 11:21:19.971 2024-02-22 11:21:19.971 9900 TIP 434830 16966 6030914 2024-02-22 11:21:42.265 2024-02-22 11:21:42.265 1000 FEE 433831 20094 6030915 2024-02-22 11:21:42.265 2024-02-22 11:21:42.265 9000 TIP 433831 5794 6030927 2024-02-22 11:23:51.09 2024-02-22 11:23:51.09 1100 FEE 432861 21405 6030928 2024-02-22 11:23:51.09 2024-02-22 11:23:51.09 9900 TIP 432861 2437 6030945 2024-02-22 11:28:14.881 2024-02-22 11:28:14.881 7700 FEE 434828 9992 6030946 2024-02-22 11:28:14.881 2024-02-22 11:28:14.881 69300 TIP 434828 21401 6030952 2024-02-22 11:28:55.127 2024-02-22 11:28:55.127 1100 FEE 434465 1603 6030953 2024-02-22 11:28:55.127 2024-02-22 11:28:55.127 9900 TIP 434465 17157 6030996 2024-02-22 11:35:52.479 2024-02-22 11:35:52.479 1000 FEE 434842 21532 6031020 2024-02-22 11:39:38.41 2024-02-22 11:39:38.41 1000 FEE 434848 631 6031082 2024-02-22 11:59:37.372 2024-02-22 11:59:37.372 0 FEE 434858 19854 6030293 2024-02-22 09:42:03.287 2024-02-22 09:42:03.287 1000 STREAM 141924 14910 6030380 2024-02-22 09:56:03.404 2024-02-22 09:56:03.404 1000 STREAM 141924 13204 6036244 2024-02-22 20:00:58.765 2024-02-22 20:00:58.765 1000 FEE 435468 21343 6036282 2024-02-22 20:13:23.544 2024-02-22 20:13:23.544 1100 FEE 435231 19535 6036283 2024-02-22 20:13:23.544 2024-02-22 20:13:23.544 9900 TIP 435231 17094 6036291 2024-02-22 20:13:24.649 2024-02-22 20:13:24.649 1100 FEE 435261 19576 6036292 2024-02-22 20:13:24.649 2024-02-22 20:13:24.649 9900 TIP 435261 19943 6036323 2024-02-22 20:22:20.07 2024-02-22 20:22:20.07 1000 FEE 435480 2583 6036324 2024-02-22 20:22:20.07 2024-02-22 20:22:20.07 9000 TIP 435480 897 6036345 2024-02-22 20:26:35.609 2024-02-22 20:26:35.609 4000 FEE 435480 18507 6036346 2024-02-22 20:26:35.609 2024-02-22 20:26:35.609 36000 TIP 435480 12721 6036355 2024-02-22 20:32:34.452 2024-02-22 20:32:34.452 100000 FEE 435486 19812 6036362 2024-02-22 20:33:55.134 2024-02-22 20:33:55.134 2100 FEE 435261 21343 6036363 2024-02-22 20:33:55.134 2024-02-22 20:33:55.134 18900 TIP 435261 18476 6036398 2024-02-22 20:40:00.345 2024-02-22 20:40:00.345 800 FEE 434318 17147 6036399 2024-02-22 20:40:00.345 2024-02-22 20:40:00.345 7200 TIP 434318 13903 6036402 2024-02-22 20:40:14.452 2024-02-22 20:40:14.452 10000 FEE 435495 2774 6036413 2024-02-22 20:41:23.96 2024-02-22 20:41:23.96 2300 FEE 435497 21248 6036414 2024-02-22 20:41:23.96 2024-02-22 20:41:23.96 20700 TIP 435497 15266 6036423 2024-02-22 20:41:25.658 2024-02-22 20:41:25.658 2300 FEE 435497 15147 6036424 2024-02-22 20:41:25.658 2024-02-22 20:41:25.658 20700 TIP 435497 1316 6036429 2024-02-22 20:41:26.521 2024-02-22 20:41:26.521 2300 FEE 435497 1740 6036430 2024-02-22 20:41:26.521 2024-02-22 20:41:26.521 20700 TIP 435497 16839 6036481 2024-02-22 20:41:44.937 2024-02-22 20:41:44.937 2300 FEE 435497 4819 6036482 2024-02-22 20:41:44.937 2024-02-22 20:41:44.937 20700 TIP 435497 7583 6036498 2024-02-22 20:42:08.118 2024-02-22 20:42:08.118 1000 FEE 435473 17817 6036499 2024-02-22 20:42:08.118 2024-02-22 20:42:08.118 9000 TIP 435473 19502 6036505 2024-02-22 20:42:51.549 2024-02-22 20:42:51.549 1000 FEE 435427 12334 6036506 2024-02-22 20:42:51.549 2024-02-22 20:42:51.549 9000 TIP 435427 19417 6036517 2024-02-22 20:43:58.66 2024-02-22 20:43:58.66 1000 FEE 435503 4076 6036541 2024-02-22 20:48:03.163 2024-02-22 20:48:03.163 1000 FEE 435500 17455 6036542 2024-02-22 20:48:03.163 2024-02-22 20:48:03.163 9000 TIP 435500 623 6036543 2024-02-22 20:48:03.329 2024-02-22 20:48:03.329 1000 FEE 435500 6594 6036544 2024-02-22 20:48:03.329 2024-02-22 20:48:03.329 9000 TIP 435500 20198 6030321 2024-02-22 09:45:49.894 2024-02-22 09:45:49.894 100 FEE 434440 1389 6030322 2024-02-22 09:45:49.894 2024-02-22 09:45:49.894 900 TIP 434440 20504 6030325 2024-02-22 09:46:09.94 2024-02-22 09:46:09.94 2100 FEE 434558 17162 6030326 2024-02-22 09:46:09.94 2024-02-22 09:46:09.94 18900 TIP 434558 720 6030333 2024-02-22 09:48:11.24 2024-02-22 09:48:11.24 10000 FEE 434285 21058 6030334 2024-02-22 09:48:11.24 2024-02-22 09:48:11.24 90000 TIP 434285 16998 6030340 2024-02-22 09:49:21.008 2024-02-22 09:49:21.008 100000 FEE 434727 18641 6030357 2024-02-22 09:51:12.055 2024-02-22 09:51:12.055 210000 FEE 434319 12277 6030358 2024-02-22 09:51:12.055 2024-02-22 09:51:12.055 1890000 TIP 434319 2722 6030359 2024-02-22 09:51:26.156 2024-02-22 09:51:26.156 1000 FEE 434642 20577 6030360 2024-02-22 09:51:26.156 2024-02-22 09:51:26.156 9000 TIP 434642 997 6030372 2024-02-22 09:54:14.888 2024-02-22 09:54:14.888 1000 FEE 434733 17147 6030383 2024-02-22 09:56:40.153 2024-02-22 09:56:40.153 1100 FEE 434609 760 6030384 2024-02-22 09:56:40.153 2024-02-22 09:56:40.153 9900 TIP 434609 11678 6030386 2024-02-22 09:57:08.196 2024-02-22 09:57:08.196 1000 FEE 434737 21562 6030418 2024-02-22 10:04:40.522 2024-02-22 10:04:40.522 12800 FEE 433687 9843 6030419 2024-02-22 10:04:40.522 2024-02-22 10:04:40.522 115200 TIP 433687 19103 6030436 2024-02-22 10:07:46.893 2024-02-22 10:07:46.893 1000 FEE 434747 5129 6030443 2024-02-22 10:10:55.779 2024-02-22 10:10:55.779 1100 FEE 434695 17519 6030444 2024-02-22 10:10:55.779 2024-02-22 10:10:55.779 9900 TIP 434695 17011 6030450 2024-02-22 10:14:49.888 2024-02-22 10:14:49.888 1000 FEE 434750 20514 6030455 2024-02-22 10:17:44.534 2024-02-22 10:17:44.534 1000 FEE 434752 14941 6030475 2024-02-22 10:20:52.3 2024-02-22 10:20:52.3 100 FEE 434755 1983 6030476 2024-02-22 10:20:52.3 2024-02-22 10:20:52.3 900 TIP 434755 19459 6030376 2024-02-22 09:55:03.384 2024-02-22 09:55:03.384 1000 STREAM 141924 3656 6030385 2024-02-22 09:57:03.34 2024-02-22 09:57:03.34 1000 STREAM 141924 20906 6030394 2024-02-22 09:59:03.374 2024-02-22 09:59:03.374 1000 STREAM 141924 17638 6030397 2024-02-22 10:00:03.384 2024-02-22 10:00:03.384 1000 STREAM 141924 10690 6030402 2024-02-22 10:01:03.381 2024-02-22 10:01:03.381 1000 STREAM 141924 2749 6036262 2024-02-22 20:05:03.716 2024-02-22 20:05:03.716 1000 STREAM 141924 18517 6036266 2024-02-22 20:06:03.699 2024-02-22 20:06:03.699 1000 STREAM 141924 1628 6036267 2024-02-22 20:07:03.744 2024-02-22 20:07:03.744 1000 STREAM 141924 18387 6036274 2024-02-22 20:09:03.734 2024-02-22 20:09:03.734 1000 STREAM 141924 12609 6036275 2024-02-22 20:10:03.768 2024-02-22 20:10:03.768 1000 STREAM 141924 18040 6036276 2024-02-22 20:11:03.762 2024-02-22 20:11:03.762 1000 STREAM 141924 21501 6036305 2024-02-22 20:14:03.782 2024-02-22 20:14:03.782 1000 STREAM 141924 17570 6036306 2024-02-22 20:15:03.791 2024-02-22 20:15:03.791 1000 STREAM 141924 21201 6036308 2024-02-22 20:17:03.792 2024-02-22 20:17:03.792 1000 STREAM 141924 2075 6036312 2024-02-22 20:21:03.86 2024-02-22 20:21:03.86 1000 STREAM 141924 21343 6036313 2024-02-22 20:22:03.816 2024-02-22 20:22:03.816 1000 STREAM 141924 2203 6036337 2024-02-22 20:23:03.83 2024-02-22 20:23:03.83 1000 STREAM 141924 2711 6036340 2024-02-22 20:25:03.858 2024-02-22 20:25:03.858 1000 STREAM 141924 21401 6036349 2024-02-22 20:28:03.866 2024-02-22 20:28:03.866 1000 STREAM 141924 21048 6036351 2024-02-22 20:30:03.913 2024-02-22 20:30:03.913 1000 STREAM 141924 1567 6036353 2024-02-22 20:32:03.91 2024-02-22 20:32:03.91 1000 STREAM 141924 2596 6036369 2024-02-22 20:35:03.908 2024-02-22 20:35:03.908 1000 STREAM 141924 17984 6036378 2024-02-22 20:37:03.896 2024-02-22 20:37:03.896 1000 STREAM 141924 1429 6036518 2024-02-22 20:44:03.939 2024-02-22 20:44:03.939 1000 STREAM 141924 15386 6036521 2024-02-22 20:45:03.952 2024-02-22 20:45:03.952 1000 STREAM 141924 5825 6036533 2024-02-22 20:47:03.906 2024-02-22 20:47:03.906 1000 STREAM 141924 21441 6036611 2024-02-22 20:50:03.962 2024-02-22 20:50:03.962 1000 STREAM 141924 9845 6036623 2024-02-22 20:52:03.955 2024-02-22 20:52:03.955 1000 STREAM 141924 12946 6036625 2024-02-22 20:53:03.962 2024-02-22 20:53:03.962 1000 STREAM 141924 13587 6036654 2024-02-22 20:54:03.964 2024-02-22 20:54:03.964 1000 STREAM 141924 20220 6036666 2024-02-22 20:55:03.965 2024-02-22 20:55:03.965 1000 STREAM 141924 3979 6036704 2024-02-22 21:03:04.001 2024-02-22 21:03:04.001 1000 STREAM 141924 699 6036710 2024-02-22 21:05:04.023 2024-02-22 21:05:04.023 1000 STREAM 141924 18449 6036729 2024-02-22 21:09:04.057 2024-02-22 21:09:04.057 1000 STREAM 141924 16834 6036734 2024-02-22 21:10:04.111 2024-02-22 21:10:04.111 1000 STREAM 141924 20208 6036743 2024-02-22 21:13:04.11 2024-02-22 21:13:04.11 1000 STREAM 141924 13169 6036781 2024-02-22 21:16:04.116 2024-02-22 21:16:04.116 1000 STREAM 141924 15488 6036802 2024-02-22 21:18:04.129 2024-02-22 21:18:04.129 1000 STREAM 141924 18470 6036823 2024-02-22 21:20:04.133 2024-02-22 21:20:04.133 1000 STREAM 141924 7185 6036840 2024-02-22 21:23:04.151 2024-02-22 21:23:04.151 1000 STREAM 141924 11165 6036856 2024-02-22 21:24:04.157 2024-02-22 21:24:04.157 1000 STREAM 141924 9184 6036859 2024-02-22 21:25:04.148 2024-02-22 21:25:04.148 1000 STREAM 141924 19259 6036879 2024-02-22 21:30:04.171 2024-02-22 21:30:04.171 1000 STREAM 141924 18743 6036886 2024-02-22 21:31:04.173 2024-02-22 21:31:04.173 1000 STREAM 141924 9362 6036908 2024-02-22 21:33:04.188 2024-02-22 21:33:04.188 1000 STREAM 141924 21063 6036926 2024-02-22 21:35:04.216 2024-02-22 21:35:04.216 1000 STREAM 141924 13587 6036945 2024-02-22 21:38:04.226 2024-02-22 21:38:04.226 1000 STREAM 141924 1512 6036964 2024-02-22 21:40:04.24 2024-02-22 21:40:04.24 1000 STREAM 141924 5387 6036971 2024-02-22 21:41:04.253 2024-02-22 21:41:04.253 1000 STREAM 141924 19615 6037006 2024-02-22 21:44:02.273 2024-02-22 21:44:02.273 1000 STREAM 141924 684 6037020 2024-02-22 21:45:04.278 2024-02-22 21:45:04.278 1000 STREAM 141924 18344 6037024 2024-02-22 21:46:02.279 2024-02-22 21:46:02.279 1000 STREAM 141924 20222 6037040 2024-02-22 21:48:02.309 2024-02-22 21:48:02.309 1000 STREAM 141924 4487 6037044 2024-02-22 21:49:04.302 2024-02-22 21:49:04.302 1000 STREAM 141924 5425 6037058 2024-02-22 21:52:02.304 2024-02-22 21:52:02.304 1000 STREAM 141924 21455 6037210 2024-02-22 21:56:02.328 2024-02-22 21:56:02.328 1000 STREAM 141924 16876 6037221 2024-02-22 21:58:02.359 2024-02-22 21:58:02.359 1000 STREAM 141924 2640 6037232 2024-02-22 22:01:04.362 2024-02-22 22:01:04.362 1000 STREAM 141924 2285 6037242 2024-02-22 22:04:02.403 2024-02-22 22:04:02.403 1000 STREAM 141924 15491 6037267 2024-02-22 22:06:02.417 2024-02-22 22:06:02.417 1000 STREAM 141924 6430 6037344 2024-02-22 22:12:02.451 2024-02-22 22:12:02.451 1000 STREAM 141924 19810 6037374 2024-02-22 22:15:02.473 2024-02-22 22:15:02.473 1000 STREAM 141924 20825 6037485 2024-02-22 22:23:02.556 2024-02-22 22:23:02.556 1000 STREAM 141924 18119 6037494 2024-02-22 22:25:02.561 2024-02-22 22:25:02.561 1000 STREAM 141924 1310 6037516 2024-02-22 22:29:02.604 2024-02-22 22:29:02.604 1000 STREAM 141924 2674 6037536 2024-02-22 22:34:02.612 2024-02-22 22:34:02.612 1000 STREAM 141924 2088 6037555 2024-02-22 22:37:02.636 2024-02-22 22:37:02.636 1000 STREAM 141924 1970 6037640 2024-02-22 22:44:02.667 2024-02-22 22:44:02.667 1000 STREAM 141924 18904 6037843 2024-02-22 22:49:02.688 2024-02-22 22:49:02.688 1000 STREAM 141924 6164 6037877 2024-02-22 22:52:02.678 2024-02-22 22:52:02.678 1000 STREAM 141924 17639 6037879 2024-02-22 22:53:02.689 2024-02-22 22:53:02.689 1000 STREAM 141924 12289 6037884 2024-02-22 22:55:02.698 2024-02-22 22:55:02.698 1000 STREAM 141924 9809 6037892 2024-02-22 22:57:02.718 2024-02-22 22:57:02.718 1000 STREAM 141924 9921 6037918 2024-02-22 23:01:02.745 2024-02-22 23:01:02.745 1000 STREAM 141924 18836 6037922 2024-02-22 23:02:02.748 2024-02-22 23:02:02.748 1000 STREAM 141924 5017 6037924 2024-02-22 23:03:02.742 2024-02-22 23:03:02.742 1000 STREAM 141924 17797 6037939 2024-02-22 23:07:02.788 2024-02-22 23:07:02.788 1000 STREAM 141924 7553 6037947 2024-02-22 23:09:02.788 2024-02-22 23:09:02.788 1000 STREAM 141924 6191 6037949 2024-02-22 23:10:02.794 2024-02-22 23:10:02.794 1000 STREAM 141924 980 6037953 2024-02-22 23:11:02.802 2024-02-22 23:11:02.802 1000 STREAM 141924 2722 6030406 2024-02-22 10:02:01.727 2024-02-22 10:02:01.727 1000 STREAM 141924 999 6030468 2024-02-22 10:20:02.765 2024-02-22 10:20:02.765 1000 STREAM 141924 9438 6030528 2024-02-22 10:28:02.903 2024-02-22 10:28:02.903 1000 STREAM 141924 19031 6030537 2024-02-22 10:30:02.954 2024-02-22 10:30:02.954 1000 STREAM 141924 12808 6030553 2024-02-22 10:34:03.007 2024-02-22 10:34:03.007 1000 STREAM 141924 13753 6030599 2024-02-22 10:36:03.019 2024-02-22 10:36:03.019 1000 STREAM 141924 2789 6030620 2024-02-22 10:38:03.06 2024-02-22 10:38:03.06 1000 STREAM 141924 21166 6030624 2024-02-22 10:40:03.117 2024-02-22 10:40:03.117 1000 STREAM 141924 896 6030651 2024-02-22 10:44:03.134 2024-02-22 10:44:03.134 1000 STREAM 141924 8095 6030662 2024-02-22 10:47:03.17 2024-02-22 10:47:03.17 1000 STREAM 141924 3709 6036273 2024-02-22 20:08:03.727 2024-02-22 20:08:03.727 1000 STREAM 141924 18235 6036278 2024-02-22 20:12:03.759 2024-02-22 20:12:03.759 1000 STREAM 141924 17227 6036280 2024-02-22 20:13:03.772 2024-02-22 20:13:03.772 1000 STREAM 141924 19570 6036307 2024-02-22 20:16:03.804 2024-02-22 20:16:03.804 1000 STREAM 141924 9921 6036309 2024-02-22 20:18:03.79 2024-02-22 20:18:03.79 1000 STREAM 141924 5761 6036310 2024-02-22 20:19:03.777 2024-02-22 20:19:03.777 1000 STREAM 141924 4624 6036311 2024-02-22 20:20:03.842 2024-02-22 20:20:03.842 1000 STREAM 141924 20280 6036338 2024-02-22 20:24:03.85 2024-02-22 20:24:03.85 1000 STREAM 141924 703 6036344 2024-02-22 20:26:03.854 2024-02-22 20:26:03.854 1000 STREAM 141924 16679 6036348 2024-02-22 20:27:03.847 2024-02-22 20:27:03.847 1000 STREAM 141924 4388 6036350 2024-02-22 20:29:03.864 2024-02-22 20:29:03.864 1000 STREAM 141924 1468 6036352 2024-02-22 20:31:03.893 2024-02-22 20:31:03.893 1000 STREAM 141924 19036 6036356 2024-02-22 20:33:03.901 2024-02-22 20:33:03.901 1000 STREAM 141924 827 6036364 2024-02-22 20:34:03.893 2024-02-22 20:34:03.893 1000 STREAM 141924 20581 6036375 2024-02-22 20:36:03.908 2024-02-22 20:36:03.908 1000 STREAM 141924 21067 6038339 2024-02-23 00:00:03.397 2024-02-23 00:00:03.397 2700 TIP 435457 987 6038356 2024-02-23 00:00:05.663 2024-02-23 00:00:05.663 300 FEE 435457 21600 6038357 2024-02-23 00:00:05.663 2024-02-23 00:00:05.663 2700 TIP 435457 1245 6038370 2024-02-23 00:00:40.506 2024-02-23 00:00:40.506 1000 FEE 435680 21514 6038374 2024-02-23 00:01:40.103 2024-02-23 00:01:40.103 1000 FEE 435681 746 6038386 2024-02-23 00:02:39.432 2024-02-23 00:02:39.432 100 FEE 435579 18460 6038387 2024-02-23 00:02:39.432 2024-02-23 00:02:39.432 900 TIP 435579 5779 6038388 2024-02-23 00:02:39.598 2024-02-23 00:02:39.598 900 FEE 435579 6430 6038389 2024-02-23 00:02:39.598 2024-02-23 00:02:39.598 8100 TIP 435579 12808 6038391 2024-02-23 00:03:02.324 2024-02-23 00:03:02.324 10000 FEE 435649 20287 6038392 2024-02-23 00:03:02.324 2024-02-23 00:03:02.324 90000 TIP 435649 706 6038396 2024-02-23 00:04:23.994 2024-02-23 00:04:23.994 1300 FEE 435657 13622 6038397 2024-02-23 00:04:23.994 2024-02-23 00:04:23.994 11700 TIP 435657 18904 6038407 2024-02-23 00:05:16.225 2024-02-23 00:05:16.225 0 FEE 435685 8004 6038449 2024-02-23 00:12:18.461 2024-02-23 00:12:18.461 100 FEE 435580 2264 6038450 2024-02-23 00:12:18.461 2024-02-23 00:12:18.461 900 TIP 435580 2444 6038453 2024-02-23 00:12:25.999 2024-02-23 00:12:25.999 1000 FEE 435688 21458 6038468 2024-02-23 00:13:04.342 2024-02-23 00:13:04.342 21100 FEE 435616 16276 6038469 2024-02-23 00:13:04.342 2024-02-23 00:13:04.342 189900 TIP 435616 2832 6038471 2024-02-23 00:13:26.153 2024-02-23 00:13:26.153 100000 FEE 435690 17162 6038485 2024-02-23 00:13:47.822 2024-02-23 00:13:47.822 300 FEE 435677 20302 6038486 2024-02-23 00:13:47.822 2024-02-23 00:13:47.822 2700 TIP 435677 15843 6038502 2024-02-23 00:14:00.982 2024-02-23 00:14:00.982 900 FEE 435634 5775 6038503 2024-02-23 00:14:00.982 2024-02-23 00:14:00.982 8100 TIP 435634 699 6038523 2024-02-23 00:14:12.974 2024-02-23 00:14:12.974 300 FEE 435585 2735 6038524 2024-02-23 00:14:12.974 2024-02-23 00:14:12.974 2700 TIP 435585 21036 6038535 2024-02-23 00:15:32.404 2024-02-23 00:15:32.404 4000 FEE 435690 13204 6038536 2024-02-23 00:15:32.404 2024-02-23 00:15:32.404 36000 TIP 435690 20781 6038544 2024-02-23 00:16:50.523 2024-02-23 00:16:50.523 10000 FEE 435666 16684 6038545 2024-02-23 00:16:50.523 2024-02-23 00:16:50.523 90000 TIP 435666 630 6038554 2024-02-23 00:18:47.818 2024-02-23 00:18:47.818 21000 FEE 435695 17514 6038556 2024-02-23 00:19:30.569 2024-02-23 00:19:30.569 1000 FEE 435690 9099 6038557 2024-02-23 00:19:30.569 2024-02-23 00:19:30.569 9000 TIP 435690 4250 6038570 2024-02-23 00:22:11.721 2024-02-23 00:22:11.721 10000 FEE 435696 17321 6038597 2024-02-23 00:26:15.131 2024-02-23 00:26:15.131 1000 FEE 435698 667 6038598 2024-02-23 00:26:15.131 2024-02-23 00:26:15.131 9000 TIP 435698 4322 6038607 2024-02-23 00:26:46.834 2024-02-23 00:26:46.834 2300 FEE 435657 17124 6038608 2024-02-23 00:26:46.834 2024-02-23 00:26:46.834 20700 TIP 435657 16267 6038609 2024-02-23 00:26:46.999 2024-02-23 00:26:46.999 2300 FEE 435657 14122 6038610 2024-02-23 00:26:46.999 2024-02-23 00:26:46.999 20700 TIP 435657 20738 6038617 2024-02-23 00:26:47.901 2024-02-23 00:26:47.901 2300 FEE 435657 2832 6038618 2024-02-23 00:26:47.901 2024-02-23 00:26:47.901 20700 TIP 435657 2709 6038668 2024-02-23 00:31:59.556 2024-02-23 00:31:59.556 1600 FEE 435679 10728 6038669 2024-02-23 00:31:59.556 2024-02-23 00:31:59.556 14400 TIP 435679 2162 6038678 2024-02-23 00:34:14.943 2024-02-23 00:34:14.943 2000 FEE 435681 6393 6038679 2024-02-23 00:34:14.943 2024-02-23 00:34:14.943 18000 TIP 435681 20106 6038681 2024-02-23 00:35:06.654 2024-02-23 00:35:06.654 2100 FEE 435457 1122 6038682 2024-02-23 00:35:06.654 2024-02-23 00:35:06.654 18900 TIP 435457 19469 6038711 2024-02-23 00:37:44.783 2024-02-23 00:37:44.783 1100 FEE 435497 18664 6038712 2024-02-23 00:37:44.783 2024-02-23 00:37:44.783 9900 TIP 435497 2537 6038735 2024-02-23 00:47:40.926 2024-02-23 00:47:40.926 1000 FEE 435717 1738 6038740 2024-02-23 00:47:47.935 2024-02-23 00:47:47.935 300 FEE 434599 5377 6038741 2024-02-23 00:47:47.935 2024-02-23 00:47:47.935 2700 TIP 434599 14774 6038742 2024-02-23 00:47:49.283 2024-02-23 00:47:49.283 300 FEE 435715 4958 6038743 2024-02-23 00:47:49.283 2024-02-23 00:47:49.283 2700 TIP 435715 635 6038744 2024-02-23 00:47:49.45 2024-02-23 00:47:49.45 300 FEE 435715 19463 6038745 2024-02-23 00:47:49.45 2024-02-23 00:47:49.45 2700 TIP 435715 19812 6030416 2024-02-22 10:04:01.917 2024-02-22 10:04:01.917 1000 STREAM 141924 8037 6030437 2024-02-22 10:08:01.942 2024-02-22 10:08:01.942 1000 STREAM 141924 15536 6036385 2024-02-22 20:38:03.834 2024-02-22 20:38:03.834 1000 STREAM 141924 21339 6036401 2024-02-22 20:40:03.885 2024-02-22 20:40:03.885 1000 STREAM 141924 19961 6036407 2024-02-22 20:41:03.932 2024-02-22 20:41:03.932 1000 STREAM 141924 21172 6038343 2024-02-23 00:00:03.926 2024-02-23 00:00:03.926 2700 TIP 435457 9350 6038344 2024-02-23 00:00:04.156 2024-02-23 00:00:04.156 300 FEE 435457 19036 6038345 2024-02-23 00:00:04.156 2024-02-23 00:00:04.156 2700 TIP 435457 21088 6038401 2024-02-23 00:05:00.477 2024-02-23 00:05:00.477 1100 FEE 435579 18040 6038402 2024-02-23 00:05:00.477 2024-02-23 00:05:00.477 9900 TIP 435579 21222 6038411 2024-02-23 00:06:05.849 2024-02-23 00:06:05.849 1000 FEE 435453 1585 6038412 2024-02-23 00:06:05.849 2024-02-23 00:06:05.849 9000 TIP 435453 1515 6038447 2024-02-23 00:12:18.177 2024-02-23 00:12:18.177 100 FEE 435580 16954 6038448 2024-02-23 00:12:18.177 2024-02-23 00:12:18.177 900 TIP 435580 759 6038466 2024-02-23 00:12:46.045 2024-02-23 00:12:46.045 0 FEE 435687 4831 6038473 2024-02-23 00:13:36.347 2024-02-23 00:13:36.347 4000 FEE 435679 9796 6038474 2024-02-23 00:13:36.347 2024-02-23 00:13:36.347 36000 TIP 435679 19980 6038487 2024-02-23 00:13:47.994 2024-02-23 00:13:47.994 300 FEE 435677 20691 6038488 2024-02-23 00:13:47.994 2024-02-23 00:13:47.994 2700 TIP 435677 12768 6038491 2024-02-23 00:13:48.3 2024-02-23 00:13:48.3 300 FEE 435677 10536 6038492 2024-02-23 00:13:48.3 2024-02-23 00:13:48.3 2700 TIP 435677 19151 6038493 2024-02-23 00:13:48.471 2024-02-23 00:13:48.471 300 FEE 435677 6310 6038494 2024-02-23 00:13:48.471 2024-02-23 00:13:48.471 2700 TIP 435677 1092 6038495 2024-02-23 00:13:48.623 2024-02-23 00:13:48.623 300 FEE 435677 18735 6038496 2024-02-23 00:13:48.623 2024-02-23 00:13:48.623 2700 TIP 435677 20636 6038507 2024-02-23 00:14:03.405 2024-02-23 00:14:03.405 900 FEE 435639 18517 6038508 2024-02-23 00:14:03.405 2024-02-23 00:14:03.405 8100 TIP 435639 16876 6038546 2024-02-23 00:16:51.848 2024-02-23 00:16:51.848 10000 FEE 435492 20511 6038547 2024-02-23 00:16:51.848 2024-02-23 00:16:51.848 90000 TIP 435492 21262 6038562 2024-02-23 00:20:44.392 2024-02-23 00:20:44.392 1000 FEE 435488 9816 6038563 2024-02-23 00:20:44.392 2024-02-23 00:20:44.392 9000 TIP 435488 19403 6038593 2024-02-23 00:26:14.759 2024-02-23 00:26:14.759 1000 FEE 435698 761 6038594 2024-02-23 00:26:14.759 2024-02-23 00:26:14.759 9000 TIP 435698 19094 6038599 2024-02-23 00:26:15.291 2024-02-23 00:26:15.291 1000 FEE 435698 14308 6038600 2024-02-23 00:26:15.291 2024-02-23 00:26:15.291 9000 TIP 435698 3347 6038615 2024-02-23 00:26:47.76 2024-02-23 00:26:47.76 2300 FEE 435657 18539 6038616 2024-02-23 00:26:47.76 2024-02-23 00:26:47.76 20700 TIP 435657 17741 6038631 2024-02-23 00:27:36.02 2024-02-23 00:27:36.02 0 FEE 435704 16830 6038652 2024-02-23 00:27:47.017 2024-02-23 00:27:47.017 2300 FEE 435488 3717 6038653 2024-02-23 00:27:47.017 2024-02-23 00:27:47.017 20700 TIP 435488 18336 6038659 2024-02-23 00:29:04.699 2024-02-23 00:29:04.699 1000 FEE 435677 17042 6038660 2024-02-23 00:29:04.699 2024-02-23 00:29:04.699 9000 TIP 435677 1692 6038683 2024-02-23 00:35:19.255 2024-02-23 00:35:19.255 1000 FEE 435709 18615 6038702 2024-02-23 00:37:42.106 2024-02-23 00:37:42.106 1100 FEE 435551 16052 6038703 2024-02-23 00:37:42.106 2024-02-23 00:37:42.106 9900 TIP 435551 19462 6038704 2024-02-23 00:37:42.728 2024-02-23 00:37:42.728 1100 FEE 435657 19638 6038705 2024-02-23 00:37:42.728 2024-02-23 00:37:42.728 9900 TIP 435657 5646 6038706 2024-02-23 00:37:42.878 2024-02-23 00:37:42.878 1100 FEE 435657 19996 6038707 2024-02-23 00:37:42.878 2024-02-23 00:37:42.878 9900 TIP 435657 20156 6038709 2024-02-23 00:37:43.023 2024-02-23 00:37:43.023 1100 FEE 435657 21482 6038710 2024-02-23 00:37:43.023 2024-02-23 00:37:43.023 9900 TIP 435657 687 6038720 2024-02-23 00:39:46.649 2024-02-23 00:39:46.649 1000 FEE 435713 20623 6038733 2024-02-23 00:46:22.34 2024-02-23 00:46:22.34 1000 FEE 435716 19398 6038754 2024-02-23 00:49:53.386 2024-02-23 00:49:53.386 1000 FEE 435720 16665 6038777 2024-02-23 00:54:16.804 2024-02-23 00:54:16.804 200 FEE 435294 18344 6038778 2024-02-23 00:54:16.804 2024-02-23 00:54:16.804 1800 TIP 435294 2309 6038783 2024-02-23 00:54:30.922 2024-02-23 00:54:30.922 1100 FEE 435474 18956 6038784 2024-02-23 00:54:30.922 2024-02-23 00:54:30.922 9900 TIP 435474 21413 6038796 2024-02-23 00:57:29.014 2024-02-23 00:57:29.014 9000 FEE 435610 20904 6038797 2024-02-23 00:57:29.014 2024-02-23 00:57:29.014 81000 TIP 435610 670 6038811 2024-02-23 01:02:32.84 2024-02-23 01:02:32.84 500 FEE 435420 4538 6038812 2024-02-23 01:02:32.84 2024-02-23 01:02:32.84 4500 TIP 435420 715 6038826 2024-02-23 01:06:04.068 2024-02-23 01:06:04.068 1000 FEE 435624 18119 6038827 2024-02-23 01:06:04.068 2024-02-23 01:06:04.068 9000 TIP 435624 940 6038836 2024-02-23 01:10:31.915 2024-02-23 01:10:31.915 1000 FEE 435739 1723 6038866 2024-02-23 01:12:31.782 2024-02-23 01:12:31.782 100000 FEE 435242 12122 6038867 2024-02-23 01:12:31.782 2024-02-23 01:12:31.782 900000 TIP 435242 12368 6038877 2024-02-23 01:13:54.671 2024-02-23 01:13:54.671 1000 FEE 435516 18507 6038878 2024-02-23 01:13:54.671 2024-02-23 01:13:54.671 9000 TIP 435516 3353 6038879 2024-02-23 01:13:57.949 2024-02-23 01:13:57.949 1000 POLL 435516 16059 6038910 2024-02-23 01:25:11.565 2024-02-23 01:25:11.565 1000 FEE 435046 19524 6038911 2024-02-23 01:25:11.565 2024-02-23 01:25:11.565 9000 TIP 435046 18500 6038912 2024-02-23 01:25:17.918 2024-02-23 01:25:17.918 2300 FEE 435711 16348 6038913 2024-02-23 01:25:17.918 2024-02-23 01:25:17.918 20700 TIP 435711 6300 6038914 2024-02-23 01:25:18.094 2024-02-23 01:25:18.094 2300 FEE 435711 16336 6038915 2024-02-23 01:25:18.094 2024-02-23 01:25:18.094 20700 TIP 435711 20073 6038918 2024-02-23 01:25:25.865 2024-02-23 01:25:25.865 2300 FEE 435610 18380 6038919 2024-02-23 01:25:25.865 2024-02-23 01:25:25.865 20700 TIP 435610 11776 6038926 2024-02-23 01:25:34.198 2024-02-23 01:25:34.198 2300 FEE 435596 9367 6038927 2024-02-23 01:25:34.198 2024-02-23 01:25:34.198 20700 TIP 435596 11967 6038928 2024-02-23 01:25:34.382 2024-02-23 01:25:34.382 2300 FEE 435596 965 6038929 2024-02-23 01:25:34.382 2024-02-23 01:25:34.382 20700 TIP 435596 5701 6038934 2024-02-23 01:25:37.272 2024-02-23 01:25:37.272 2300 FEE 435639 5809 6038935 2024-02-23 01:25:37.272 2024-02-23 01:25:37.272 20700 TIP 435639 9 6038938 2024-02-23 01:25:37.587 2024-02-23 01:25:37.587 2300 FEE 435639 14663 6038939 2024-02-23 01:25:37.587 2024-02-23 01:25:37.587 20700 TIP 435639 13575 6038952 2024-02-23 01:27:17.988 2024-02-23 01:27:17.988 2500 FEE 435647 17797 6038953 2024-02-23 01:27:17.988 2024-02-23 01:27:17.988 22500 TIP 435647 19320 6038961 2024-02-23 01:28:15.622 2024-02-23 01:28:15.622 2100 FEE 435679 8326 6038962 2024-02-23 01:28:15.622 2024-02-23 01:28:15.622 18900 TIP 435679 3504 6038967 2024-02-23 01:31:40.879 2024-02-23 01:31:40.879 0 FEE 435746 18664 6038973 2024-02-23 01:33:03.723 2024-02-23 01:33:03.723 1000 STREAM 141924 20757 6038977 2024-02-23 01:37:03.779 2024-02-23 01:37:03.779 1000 STREAM 141924 20963 6039003 2024-02-23 01:38:03.797 2024-02-23 01:38:03.797 1000 STREAM 141924 16704 6039029 2024-02-23 01:49:49.477 2024-02-23 01:49:49.477 2700 FEE 435531 21386 6039030 2024-02-23 01:49:49.477 2024-02-23 01:49:49.477 24300 TIP 435531 981 6039035 2024-02-23 01:51:21.774 2024-02-23 01:51:21.774 2100 FEE 435274 15941 6039036 2024-02-23 01:51:21.774 2024-02-23 01:51:21.774 18900 TIP 435274 17522 6039040 2024-02-23 01:52:26.047 2024-02-23 01:52:26.047 4000 FEE 435746 14669 6039041 2024-02-23 01:52:26.047 2024-02-23 01:52:26.047 36000 TIP 435746 21254 6039042 2024-02-23 01:52:55.365 2024-02-23 01:52:55.365 1000 FEE 435750 3461 6039043 2024-02-23 01:52:57.178 2024-02-23 01:52:57.178 2700 FEE 435181 14857 6039044 2024-02-23 01:52:57.178 2024-02-23 01:52:57.178 24300 TIP 435181 19469 6039045 2024-02-23 01:52:57.342 2024-02-23 01:52:57.342 2700 FEE 435181 19541 6039046 2024-02-23 01:52:57.342 2024-02-23 01:52:57.342 24300 TIP 435181 7983 6030426 2024-02-22 10:06:01.921 2024-02-22 10:06:01.921 1000 STREAM 141924 21274 6036392 2024-02-22 20:39:03.841 2024-02-22 20:39:03.841 1000 STREAM 141924 11678 6036497 2024-02-22 20:42:03.878 2024-02-22 20:42:03.878 1000 STREAM 141924 11423 6038540 2024-02-23 00:15:53.459 2024-02-23 00:15:53.459 36000 TIP 435610 15488 6038553 2024-02-23 00:18:29.899 2024-02-23 00:18:29.899 1000 FEE 435694 19570 6038558 2024-02-23 00:19:37.752 2024-02-23 00:19:37.752 1000 POLL 435495 13753 6038590 2024-02-23 00:25:58.37 2024-02-23 00:25:58.37 2000 FEE 435639 2942 6038591 2024-02-23 00:25:58.37 2024-02-23 00:25:58.37 18000 TIP 435639 15148 6038623 2024-02-23 00:26:54.618 2024-02-23 00:26:54.618 1000 FEE 435551 15925 6038624 2024-02-23 00:26:54.618 2024-02-23 00:26:54.618 9000 TIP 435551 17727 6038632 2024-02-23 00:27:39.076 2024-02-23 00:27:39.076 1000 FEE 435574 2213 6038633 2024-02-23 00:27:39.076 2024-02-23 00:27:39.076 9000 TIP 435574 18170 6038646 2024-02-23 00:27:46.497 2024-02-23 00:27:46.497 2300 FEE 435488 1603 6038647 2024-02-23 00:27:46.497 2024-02-23 00:27:46.497 20700 TIP 435488 20730 6038664 2024-02-23 00:30:20.779 2024-02-23 00:30:20.779 1000 FEE 435707 12291 6038686 2024-02-23 00:35:26.618 2024-02-23 00:35:26.618 0 FEE 435709 14503 6038692 2024-02-23 00:37:40.733 2024-02-23 00:37:40.733 1100 FEE 435488 1490 6038693 2024-02-23 00:37:40.733 2024-02-23 00:37:40.733 9900 TIP 435488 21506 6038736 2024-02-23 00:47:47.609 2024-02-23 00:47:47.609 300 FEE 434599 4521 6038737 2024-02-23 00:47:47.609 2024-02-23 00:47:47.609 2700 TIP 434599 16649 6038751 2024-02-23 00:49:16.365 2024-02-23 00:49:16.365 1000 FEE 435719 11158 6038762 2024-02-23 00:50:10.715 2024-02-23 00:50:10.715 300 FEE 435720 2196 6038763 2024-02-23 00:50:10.715 2024-02-23 00:50:10.715 2700 TIP 435720 9758 6038775 2024-02-23 00:53:31.626 2024-02-23 00:53:31.626 1000 FEE 435725 1552 6038791 2024-02-23 00:57:22.309 2024-02-23 00:57:22.309 1000 FEE 435727 7119 6038799 2024-02-23 00:58:31.527 2024-02-23 00:58:31.527 1000 FEE 435697 14255 6038800 2024-02-23 00:58:31.527 2024-02-23 00:58:31.527 9000 TIP 435697 16193 6038818 2024-02-23 01:04:24.709 2024-02-23 01:04:24.709 1000 FEE 434635 18717 6038819 2024-02-23 01:04:24.709 2024-02-23 01:04:24.709 9000 TIP 434635 940 6038829 2024-02-23 01:07:43.622 2024-02-23 01:07:43.622 10000 FEE 435737 20257 6038832 2024-02-23 01:09:50.824 2024-02-23 01:09:50.824 17000 FEE 435738 18873 6038855 2024-02-23 01:11:15.387 2024-02-23 01:11:15.387 7700 FEE 434263 19488 6038856 2024-02-23 01:11:15.387 2024-02-23 01:11:15.387 69300 TIP 434263 5725 6038889 2024-02-23 01:18:22.768 2024-02-23 01:18:22.768 1000 FEE 435741 20825 6038894 2024-02-23 01:20:24.116 2024-02-23 01:20:24.116 1000 FEE 435743 17494 6038896 2024-02-23 01:21:28.401 2024-02-23 01:21:28.401 100 FEE 435665 19507 6038897 2024-02-23 01:21:28.401 2024-02-23 01:21:28.401 900 TIP 435665 10013 6038924 2024-02-23 01:25:27.368 2024-02-23 01:25:27.368 4000 FEE 435743 12277 6038925 2024-02-23 01:25:27.368 2024-02-23 01:25:27.368 36000 TIP 435743 20563 6038954 2024-02-23 01:27:58.578 2024-02-23 01:27:58.578 2100 FEE 435657 1658 6038955 2024-02-23 01:27:58.578 2024-02-23 01:27:58.578 18900 TIP 435657 21090 6039006 2024-02-23 01:40:04.027 2024-02-23 01:40:04.027 1000 STREAM 141924 2338 6039015 2024-02-23 01:43:04 2024-02-23 01:43:04 1000 STREAM 141924 11328 6039016 2024-02-23 01:44:04.004 2024-02-23 01:44:04.004 1000 STREAM 141924 19557 6039019 2024-02-23 01:45:09.561 2024-02-23 01:45:09.561 21800 FEE 435141 14195 6039020 2024-02-23 01:45:09.561 2024-02-23 01:45:09.561 196200 TIP 435141 19488 6039021 2024-02-23 01:46:04.025 2024-02-23 01:46:04.025 1000 STREAM 141924 2609 6039023 2024-02-23 01:48:04.035 2024-02-23 01:48:04.035 1000 STREAM 141924 15408 6039025 2024-02-23 01:49:49.077 2024-02-23 01:49:49.077 2700 FEE 435531 16950 6039026 2024-02-23 01:49:49.077 2024-02-23 01:49:49.077 24300 TIP 435531 20243 6039034 2024-02-23 01:51:04.063 2024-02-23 01:51:04.063 1000 STREAM 141924 9099 6039051 2024-02-23 01:53:04.076 2024-02-23 01:53:04.076 1000 STREAM 141924 16230 6039058 2024-02-23 01:53:12.054 2024-02-23 01:53:12.054 2700 FEE 435198 1141 6039059 2024-02-23 01:53:12.054 2024-02-23 01:53:12.054 24300 TIP 435198 16834 6039062 2024-02-23 01:54:19.698 2024-02-23 01:54:19.698 2700 FEE 435086 20190 6039063 2024-02-23 01:54:19.698 2024-02-23 01:54:19.698 24300 TIP 435086 18909 6039066 2024-02-23 01:54:20.073 2024-02-23 01:54:20.073 2700 FEE 435086 17798 6039067 2024-02-23 01:54:20.073 2024-02-23 01:54:20.073 24300 TIP 435086 21540 6039068 2024-02-23 01:54:20.249 2024-02-23 01:54:20.249 2700 FEE 435086 1046 6039069 2024-02-23 01:54:20.249 2024-02-23 01:54:20.249 24300 TIP 435086 6191 6039078 2024-02-23 01:54:59.921 2024-02-23 01:54:59.921 1000 FEE 435630 20502 6039079 2024-02-23 01:54:59.921 2024-02-23 01:54:59.921 9000 TIP 435630 16834 6039080 2024-02-23 01:55:04.102 2024-02-23 01:55:04.102 1000 STREAM 141924 18735 6039089 2024-02-23 01:55:20.302 2024-02-23 01:55:20.302 9000 FEE 435741 1006 6039090 2024-02-23 01:55:20.302 2024-02-23 01:55:20.302 81000 TIP 435741 15521 6039101 2024-02-23 01:55:26.903 2024-02-23 01:55:26.903 1000 FEE 435328 3990 6039102 2024-02-23 01:55:26.903 2024-02-23 01:55:26.903 9000 TIP 435328 5538 6039109 2024-02-23 01:55:27.705 2024-02-23 01:55:27.705 1000 FEE 435328 21207 6039110 2024-02-23 01:55:27.705 2024-02-23 01:55:27.705 9000 TIP 435328 16665 6039119 2024-02-23 01:55:28.602 2024-02-23 01:55:28.602 1000 FEE 435328 9367 6039120 2024-02-23 01:55:28.602 2024-02-23 01:55:28.602 9000 TIP 435328 17046 6039143 2024-02-23 01:55:34.967 2024-02-23 01:55:34.967 900 FEE 435728 10771 6039144 2024-02-23 01:55:34.967 2024-02-23 01:55:34.967 8100 TIP 435728 2961 6039147 2024-02-23 01:55:40.563 2024-02-23 01:55:40.563 100 FEE 435711 3439 6039148 2024-02-23 01:55:40.563 2024-02-23 01:55:40.563 900 TIP 435711 10102 6039155 2024-02-23 01:55:47.454 2024-02-23 01:55:47.454 900 FEE 435704 19154 6039156 2024-02-23 01:55:47.454 2024-02-23 01:55:47.454 8100 TIP 435704 9347 6039159 2024-02-23 01:56:02.112 2024-02-23 01:56:02.112 1000 STREAM 141924 21218 6039168 2024-02-23 01:58:02.124 2024-02-23 01:58:02.124 1000 STREAM 141924 16230 6039169 2024-02-23 01:59:04.147 2024-02-23 01:59:04.147 1000 STREAM 141924 8284 6039172 2024-02-23 02:00:02.185 2024-02-23 02:00:02.185 1000 STREAM 141924 18139 6039174 2024-02-23 02:01:04.173 2024-02-23 02:01:04.173 1000 STREAM 141924 10862 6039179 2024-02-23 02:04:04.18 2024-02-23 02:04:04.18 1000 STREAM 141924 19036 6039214 2024-02-23 02:09:04.219 2024-02-23 02:09:04.219 1000 STREAM 141924 694 6039219 2024-02-23 02:09:31.364 2024-02-23 02:09:31.364 2700 FEE 435365 5904 6039220 2024-02-23 02:09:31.364 2024-02-23 02:09:31.364 24300 TIP 435365 10094 6039225 2024-02-23 02:10:04.269 2024-02-23 02:10:04.269 1000 STREAM 141924 828 6039228 2024-02-23 02:11:02.214 2024-02-23 02:11:02.214 1000 STREAM 141924 19537 6039234 2024-02-23 02:12:51.64 2024-02-23 02:12:51.64 21800 FEE 435310 9529 6039235 2024-02-23 02:12:51.64 2024-02-23 02:12:51.64 196200 TIP 435310 6430 6039237 2024-02-23 02:14:02.208 2024-02-23 02:14:02.208 1000 STREAM 141924 15697 6039239 2024-02-23 02:16:02.769 2024-02-23 02:16:02.769 1000 STREAM 141924 19821 6039245 2024-02-23 02:19:02.793 2024-02-23 02:19:02.793 1000 STREAM 141924 6688 6039249 2024-02-23 02:22:27.575 2024-02-23 02:22:27.575 2100 FEE 435657 17321 6039250 2024-02-23 02:22:27.575 2024-02-23 02:22:27.575 18900 TIP 435657 2232 6039251 2024-02-23 02:22:27.962 2024-02-23 02:22:27.962 2100 FEE 435488 977 6039252 2024-02-23 02:22:27.962 2024-02-23 02:22:27.962 18900 TIP 435488 21323 6039255 2024-02-23 02:22:28.943 2024-02-23 02:22:28.943 2100 FEE 435551 12261 6039256 2024-02-23 02:22:28.943 2024-02-23 02:22:28.943 18900 TIP 435551 21042 6039261 2024-02-23 02:22:30.419 2024-02-23 02:22:30.419 2100 FEE 435328 14950 6039262 2024-02-23 02:22:30.419 2024-02-23 02:22:30.419 18900 TIP 435328 20183 6039273 2024-02-23 02:22:35.312 2024-02-23 02:22:35.312 2100 FEE 435457 10270 6039274 2024-02-23 02:22:35.312 2024-02-23 02:22:35.312 18900 TIP 435457 17800 6039281 2024-02-23 02:22:39.37 2024-02-23 02:22:39.37 2100 FEE 435217 13327 6039282 2024-02-23 02:22:39.37 2024-02-23 02:22:39.37 18900 TIP 435217 8423 6039290 2024-02-23 02:26:02.339 2024-02-23 02:26:02.339 1000 STREAM 141924 15367 6030438 2024-02-22 10:09:02.417 2024-02-22 10:09:02.417 1000 STREAM 141924 2776 6030447 2024-02-22 10:13:02.642 2024-02-22 10:13:02.642 1000 STREAM 141924 27 6030452 2024-02-22 10:16:02.664 2024-02-22 10:16:02.664 1000 STREAM 141924 9159 6030456 2024-02-22 10:18:02.693 2024-02-22 10:18:02.693 1000 STREAM 141924 18357 6030492 2024-02-22 10:22:02.783 2024-02-22 10:22:02.783 1000 STREAM 141924 14169 6030507 2024-02-22 10:24:02.824 2024-02-22 10:24:02.824 1000 STREAM 141924 1046 6030520 2024-02-22 10:26:02.847 2024-02-22 10:26:02.847 1000 STREAM 141924 18314 6030541 2024-02-22 10:32:02.967 2024-02-22 10:32:02.967 1000 STREAM 141924 8998 6030638 2024-02-22 10:42:03.107 2024-02-22 10:42:03.107 1000 STREAM 141924 10016 6030728 2024-02-22 10:58:03.398 2024-02-22 10:58:03.398 1000 STREAM 141924 9352 6036432 2024-02-22 20:41:36.287 2024-02-22 20:41:36.287 20700 TIP 435497 10007 6036455 2024-02-22 20:41:41.887 2024-02-22 20:41:41.887 2300 FEE 435497 3745 6036456 2024-02-22 20:41:41.887 2024-02-22 20:41:41.887 20700 TIP 435497 1173 6036467 2024-02-22 20:41:42.966 2024-02-22 20:41:42.966 2300 FEE 435497 15594 6036468 2024-02-22 20:41:42.966 2024-02-22 20:41:42.966 20700 TIP 435497 14308 6036489 2024-02-22 20:41:45.426 2024-02-22 20:41:45.426 2300 FEE 435497 18116 6036490 2024-02-22 20:41:45.426 2024-02-22 20:41:45.426 20700 TIP 435497 20006 6036495 2024-02-22 20:42:02.403 2024-02-22 20:42:02.403 2300 FEE 435477 5759 6036496 2024-02-22 20:42:02.403 2024-02-22 20:42:02.403 20700 TIP 435477 18862 6036502 2024-02-22 20:42:46.162 2024-02-22 20:42:46.162 1000 FEE 435209 7673 6036503 2024-02-22 20:42:46.162 2024-02-22 20:42:46.162 9000 TIP 435209 17514 6036504 2024-02-22 20:42:48.61 2024-02-22 20:42:48.61 1000 FEE 435501 5173 6036537 2024-02-22 20:48:02.825 2024-02-22 20:48:02.825 1000 FEE 435500 1092 6036538 2024-02-22 20:48:02.825 2024-02-22 20:48:02.825 9000 TIP 435500 11395 6036539 2024-02-22 20:48:02.926 2024-02-22 20:48:02.926 1000 FEE 435500 21014 6036540 2024-02-22 20:48:02.926 2024-02-22 20:48:02.926 9000 TIP 435500 21314 6036554 2024-02-22 20:48:05.365 2024-02-22 20:48:05.365 1000 FEE 435313 5758 6036555 2024-02-22 20:48:05.365 2024-02-22 20:48:05.365 9000 TIP 435313 13097 6036563 2024-02-22 20:48:23.543 2024-02-22 20:48:23.543 1000 FEE 435474 11866 6036564 2024-02-22 20:48:23.543 2024-02-22 20:48:23.543 9000 TIP 435474 20881 6036577 2024-02-22 20:48:31.424 2024-02-22 20:48:31.424 1000 FEE 435474 1626 6036578 2024-02-22 20:48:31.424 2024-02-22 20:48:31.424 9000 TIP 435474 16653 6036615 2024-02-22 20:51:51.101 2024-02-22 20:51:51.101 1000 FEE 435449 19243 6036616 2024-02-22 20:51:51.101 2024-02-22 20:51:51.101 9000 TIP 435449 2508 6036632 2024-02-22 20:53:24.324 2024-02-22 20:53:24.324 1000 FEE 435509 19732 6036633 2024-02-22 20:53:24.324 2024-02-22 20:53:24.324 9000 TIP 435509 7913 6036652 2024-02-22 20:53:54.117 2024-02-22 20:53:54.117 100 FEE 435314 21402 6036653 2024-02-22 20:53:54.117 2024-02-22 20:53:54.117 900 TIP 435314 21271 6036700 2024-02-22 21:00:44.754 2024-02-22 21:00:44.754 100000 FEE 435518 20190 6036705 2024-02-22 21:03:05.709 2024-02-22 21:03:05.709 2700 FEE 435390 10934 6036706 2024-02-22 21:03:05.709 2024-02-22 21:03:05.709 24300 TIP 435390 1571 6036713 2024-02-22 21:05:40.063 2024-02-22 21:05:40.063 0 FEE 435520 989 6036715 2024-02-22 21:06:34.905 2024-02-22 21:06:34.905 10000 FEE 435522 17415 6036742 2024-02-22 21:12:45.754 2024-02-22 21:12:45.754 10000 FEE 435528 1823 6036748 2024-02-22 21:13:36.938 2024-02-22 21:13:36.938 100 FEE 435525 21040 6036749 2024-02-22 21:13:36.938 2024-02-22 21:13:36.938 900 TIP 435525 18231 6036757 2024-02-22 21:13:50.061 2024-02-22 21:13:50.061 1000 FEE 435231 18630 6036758 2024-02-22 21:13:50.061 2024-02-22 21:13:50.061 9000 TIP 435231 15226 6036771 2024-02-22 21:15:07.007 2024-02-22 21:15:07.007 1000 FEE 435532 13878 6036779 2024-02-22 21:15:54.043 2024-02-22 21:15:54.043 2100 FEE 434540 14015 6036780 2024-02-22 21:15:54.043 2024-02-22 21:15:54.043 18900 TIP 434540 13204 6036812 2024-02-22 21:18:57.221 2024-02-22 21:18:57.221 2100 FEE 435357 21571 6036813 2024-02-22 21:18:57.221 2024-02-22 21:18:57.221 18900 TIP 435357 1221 6036815 2024-02-22 21:19:07.661 2024-02-22 21:19:07.661 2100 FEE 435497 1726 6036816 2024-02-22 21:19:07.661 2024-02-22 21:19:07.661 18900 TIP 435497 20225 6036817 2024-02-22 21:19:20.553 2024-02-22 21:19:20.553 2100 FEE 435495 1198 6036818 2024-02-22 21:19:20.553 2024-02-22 21:19:20.553 18900 TIP 435495 16410 6036849 2024-02-22 21:23:29.202 2024-02-22 21:23:29.202 2100 FEE 97082 8841 6036850 2024-02-22 21:23:29.202 2024-02-22 21:23:29.202 18900 TIP 97082 20683 6036851 2024-02-22 21:23:29.724 2024-02-22 21:23:29.724 2100 FEE 97082 15094 6036852 2024-02-22 21:23:29.724 2024-02-22 21:23:29.724 18900 TIP 97082 1454 6036857 2024-02-22 21:24:28.841 2024-02-22 21:24:28.841 1000 FEE 435177 20190 6036858 2024-02-22 21:24:28.841 2024-02-22 21:24:28.841 9000 TIP 435177 20912 6036864 2024-02-22 21:27:12.845 2024-02-22 21:27:12.845 1000 FEE 435543 959 6036869 2024-02-22 21:28:03.906 2024-02-22 21:28:03.906 10000 FEE 435357 628 6036870 2024-02-22 21:28:03.906 2024-02-22 21:28:03.906 90000 TIP 435357 19292 6036887 2024-02-22 21:31:05.019 2024-02-22 21:31:05.019 500 FEE 435263 18877 6036888 2024-02-22 21:31:05.019 2024-02-22 21:31:05.019 4500 TIP 435263 5017 6036890 2024-02-22 21:31:31.624 2024-02-22 21:31:31.624 2100 FEE 435544 14791 6036891 2024-02-22 21:31:31.624 2024-02-22 21:31:31.624 18900 TIP 435544 891 6036922 2024-02-22 21:34:38.933 2024-02-22 21:34:38.933 2100 FEE 435497 21523 6036923 2024-02-22 21:34:38.933 2024-02-22 21:34:38.933 18900 TIP 435497 19506 6036924 2024-02-22 21:34:51.781 2024-02-22 21:34:51.781 2100 FEE 435513 10007 6036925 2024-02-22 21:34:51.781 2024-02-22 21:34:51.781 18900 TIP 435513 16724 6036939 2024-02-22 21:36:47.329 2024-02-22 21:36:47.329 0 FEE 435549 19943 6036942 2024-02-22 21:37:52.267 2024-02-22 21:37:52.267 100 FEE 435456 5806 6036943 2024-02-22 21:37:52.267 2024-02-22 21:37:52.267 900 TIP 435456 4323 6036951 2024-02-22 21:39:11.401 2024-02-22 21:39:11.401 2100 FEE 435030 1273 6036952 2024-02-22 21:39:11.401 2024-02-22 21:39:11.401 18900 TIP 435030 20163 6036953 2024-02-22 21:39:34.275 2024-02-22 21:39:34.275 2500 FEE 435547 19289 6036954 2024-02-22 21:39:34.275 2024-02-22 21:39:34.275 22500 TIP 435547 1658 6036986 2024-02-22 21:42:37.776 2024-02-22 21:42:37.776 100 FEE 435046 18731 6036987 2024-02-22 21:42:37.776 2024-02-22 21:42:37.776 900 TIP 435046 15148 6036988 2024-02-22 21:42:41.93 2024-02-22 21:42:41.93 100 FEE 434498 20858 6036989 2024-02-22 21:42:41.93 2024-02-22 21:42:41.93 900 TIP 434498 9362 6037009 2024-02-22 21:44:17.942 2024-02-22 21:44:17.942 1000 FEE 435559 6717 6037010 2024-02-22 21:44:24.538 2024-02-22 21:44:24.538 5000 FEE 434919 20776 6037011 2024-02-22 21:44:24.538 2024-02-22 21:44:24.538 45000 TIP 434919 20291 6037038 2024-02-22 21:47:55.091 2024-02-22 21:47:55.091 1000 FEE 434720 8095 6037039 2024-02-22 21:47:55.091 2024-02-22 21:47:55.091 9000 TIP 434720 18372 6037048 2024-02-22 21:50:44.451 2024-02-22 21:50:44.451 1000 FEE 435564 17570 6037049 2024-02-22 21:50:44.451 2024-02-22 21:50:44.451 9000 TIP 435564 15762 6037065 2024-02-22 21:53:02.357 2024-02-22 21:53:02.357 900 FEE 435520 9820 6037066 2024-02-22 21:53:02.357 2024-02-22 21:53:02.357 8100 TIP 435520 1438 6037089 2024-02-22 21:53:20.544 2024-02-22 21:53:20.544 900 FEE 435382 14791 6037090 2024-02-22 21:53:20.544 2024-02-22 21:53:20.544 8100 TIP 435382 18380 6037101 2024-02-22 21:53:33.852 2024-02-22 21:53:33.852 900 FEE 435272 17091 6037102 2024-02-22 21:53:33.852 2024-02-22 21:53:33.852 8100 TIP 435272 21343 6037108 2024-02-22 21:54:02.415 2024-02-22 21:54:02.415 10000 FEE 435551 18321 6037109 2024-02-22 21:54:02.415 2024-02-22 21:54:02.415 90000 TIP 435551 21275 6037164 2024-02-22 21:55:42.963 2024-02-22 21:55:42.963 2300 FEE 435497 1474 6037165 2024-02-22 21:55:42.963 2024-02-22 21:55:42.963 20700 TIP 435497 18774 6030454 2024-02-22 10:17:13.658 2024-02-22 10:17:13.658 10000 FEE 434751 15282 6030469 2024-02-22 10:20:09.223 2024-02-22 10:20:09.223 1000 FEE 434755 8380 6030473 2024-02-22 10:20:52.078 2024-02-22 10:20:52.078 100 FEE 434755 4238 6030474 2024-02-22 10:20:52.078 2024-02-22 10:20:52.078 900 TIP 434755 19044 6030477 2024-02-22 10:20:52.588 2024-02-22 10:20:52.588 100 FEE 434755 15282 6030478 2024-02-22 10:20:52.588 2024-02-22 10:20:52.588 900 TIP 434755 12278 6030489 2024-02-22 10:21:54.231 2024-02-22 10:21:54.231 1100 FEE 434285 5500 6030490 2024-02-22 10:21:54.231 2024-02-22 10:21:54.231 9900 TIP 434285 9482 6030505 2024-02-22 10:23:39.785 2024-02-22 10:23:39.785 2100 FEE 434687 1720 6030506 2024-02-22 10:23:39.785 2024-02-22 10:23:39.785 18900 TIP 434687 20280 6030559 2024-02-22 10:34:40.847 2024-02-22 10:34:40.847 0 FEE 434770 27 6030562 2024-02-22 10:34:47.943 2024-02-22 10:34:47.943 1000 FEE 434772 624 6030567 2024-02-22 10:34:49.972 2024-02-22 10:34:49.972 100 FEE 434718 21389 6030568 2024-02-22 10:34:49.972 2024-02-22 10:34:49.972 900 TIP 434718 13042 6030573 2024-02-22 10:34:53.664 2024-02-22 10:34:53.664 1000 FEE 434646 20581 6030574 2024-02-22 10:34:53.664 2024-02-22 10:34:53.664 9000 TIP 434646 16684 6030589 2024-02-22 10:35:19.804 2024-02-22 10:35:19.804 1000 FEE 434774 17673 6030625 2024-02-22 10:40:04.075 2024-02-22 10:40:04.075 1000 FEE 434722 913 6030626 2024-02-22 10:40:04.075 2024-02-22 10:40:04.075 9000 TIP 434722 680 6030629 2024-02-22 10:40:06.918 2024-02-22 10:40:06.918 1000 FEE 434685 16956 6030630 2024-02-22 10:40:06.918 2024-02-22 10:40:06.918 9000 TIP 434685 7772 6030670 2024-02-22 10:49:18.045 2024-02-22 10:49:18.045 10000 FEE 434785 2789 6030679 2024-02-22 10:50:21.976 2024-02-22 10:50:21.976 1000 FEE 434328 18396 6030680 2024-02-22 10:50:21.976 2024-02-22 10:50:21.976 9000 TIP 434328 17014 6030691 2024-02-22 10:54:03.347 2024-02-22 10:54:03.347 1000 FEE 434773 8385 6030692 2024-02-22 10:54:03.347 2024-02-22 10:54:03.347 9000 TIP 434773 5377 6030697 2024-02-22 10:55:04.331 2024-02-22 10:55:04.331 1000 FEE 434141 15409 6030698 2024-02-22 10:55:04.331 2024-02-22 10:55:04.331 9000 TIP 434141 18743 6030699 2024-02-22 10:55:09.251 2024-02-22 10:55:09.251 100 FEE 434717 15938 6030700 2024-02-22 10:55:09.251 2024-02-22 10:55:09.251 900 TIP 434717 17046 6030738 2024-02-22 11:00:58.38 2024-02-22 11:00:58.38 1000 FEE 434797 16284 6030766 2024-02-22 11:03:26.757 2024-02-22 11:03:26.757 1000 FEE 434803 20180 6030796 2024-02-22 11:06:07.18 2024-02-22 11:06:07.18 1000 FEE 434806 21072 6030798 2024-02-22 11:06:59.619 2024-02-22 11:06:59.619 1000 FEE 434808 19941 6030802 2024-02-22 11:07:17.663 2024-02-22 11:07:17.663 1100 FEE 434807 18717 6030803 2024-02-22 11:07:17.663 2024-02-22 11:07:17.663 9900 TIP 434807 2088 6030821 2024-02-22 11:09:54.49 2024-02-22 11:09:54.49 0 FEE 434810 4831 6030848 2024-02-22 11:14:02.024 2024-02-22 11:14:02.024 1000 FEE 434821 19907 6030861 2024-02-22 11:14:47.646 2024-02-22 11:14:47.646 2200 FEE 434801 19553 6030862 2024-02-22 11:14:47.646 2024-02-22 11:14:47.646 19800 TIP 434801 5661 6030883 2024-02-22 11:18:19.681 2024-02-22 11:18:19.681 1000 FEE 434829 16351 6030904 2024-02-22 11:21:04.949 2024-02-22 11:21:04.949 4000 FEE 434827 2537 6030905 2024-02-22 11:21:04.949 2024-02-22 11:21:04.949 36000 TIP 434827 894 6030934 2024-02-22 11:27:05.64 2024-02-22 11:27:05.64 1000 FEE 434834 20264 6030937 2024-02-22 11:27:11.57 2024-02-22 11:27:11.57 1100 FEE 434396 21323 6030938 2024-02-22 11:27:11.57 2024-02-22 11:27:11.57 9900 TIP 434396 11329 6030947 2024-02-22 11:28:35.852 2024-02-22 11:28:35.852 1000 FEE 434824 12072 6030948 2024-02-22 11:28:35.852 2024-02-22 11:28:35.852 9000 TIP 434824 1713 6030951 2024-02-22 11:28:51.641 2024-02-22 11:28:51.641 1000 FEE 434839 19806 6030970 2024-02-22 11:30:56.679 2024-02-22 11:30:56.679 1000 FEE 433571 18830 6030971 2024-02-22 11:30:56.679 2024-02-22 11:30:56.679 9000 TIP 433571 1836 6030976 2024-02-22 11:32:00.222 2024-02-22 11:32:00.222 0 FEE 434833 17953 6030984 2024-02-22 11:34:30.633 2024-02-22 11:34:30.633 1000 FEE 434440 8796 6030985 2024-02-22 11:34:30.633 2024-02-22 11:34:30.633 9000 TIP 434440 5160 6031009 2024-02-22 11:37:17.86 2024-02-22 11:37:17.86 100 FEE 434813 20156 6031010 2024-02-22 11:37:17.86 2024-02-22 11:37:17.86 900 TIP 434813 12808 6031053 2024-02-22 11:54:37.522 2024-02-22 11:54:37.522 1000 FEE 434855 14959 6031058 2024-02-22 11:55:19.683 2024-02-22 11:55:19.683 2100 FEE 434842 21573 6031059 2024-02-22 11:55:19.683 2024-02-22 11:55:19.683 18900 TIP 434842 798 6031071 2024-02-22 11:57:55.971 2024-02-22 11:57:55.971 12800 FEE 434223 21480 6031072 2024-02-22 11:57:55.971 2024-02-22 11:57:55.971 115200 TIP 434223 8916 6031076 2024-02-22 11:58:36.229 2024-02-22 11:58:36.229 0 FEE 434858 20603 6031085 2024-02-22 12:00:05.236 2024-02-22 12:00:05.236 1000 FEE 434861 7979 6031086 2024-02-22 12:00:05.806 2024-02-22 12:00:05.806 0 FEE 434858 14650 6031097 2024-02-22 12:01:21.574 2024-02-22 12:01:21.574 0 FEE 434858 21619 6031109 2024-02-22 12:01:56.13 2024-02-22 12:01:56.13 1000 FEE 434824 19841 6031110 2024-02-22 12:01:56.13 2024-02-22 12:01:56.13 9000 TIP 434824 12261 6031118 2024-02-22 12:02:36.223 2024-02-22 12:02:36.223 100 FEE 434274 9159 6031119 2024-02-22 12:02:36.223 2024-02-22 12:02:36.223 900 TIP 434274 14169 6031124 2024-02-22 12:02:37.91 2024-02-22 12:02:37.91 100 FEE 434274 7992 6031125 2024-02-22 12:02:37.91 2024-02-22 12:02:37.91 900 TIP 434274 899 6031133 2024-02-22 12:04:33.19 2024-02-22 12:04:33.19 1100 FEE 434827 18262 6031134 2024-02-22 12:04:33.19 2024-02-22 12:04:33.19 9900 TIP 434827 19199 6031146 2024-02-22 12:05:09.284 2024-02-22 12:05:09.284 1000 FEE 434870 9356 6031156 2024-02-22 12:08:05.126 2024-02-22 12:08:05.126 0 FEE 434871 18641 6031183 2024-02-22 12:13:35.904 2024-02-22 12:13:35.904 100 FEE 430342 6777 6031184 2024-02-22 12:13:35.904 2024-02-22 12:13:35.904 900 TIP 430342 19148 6031195 2024-02-22 12:15:28.523 2024-02-22 12:15:28.523 1000 FEE 434876 1773 6031197 2024-02-22 12:17:02.141 2024-02-22 12:17:02.141 1000 FEE 434877 18830 6031199 2024-02-22 12:17:31.005 2024-02-22 12:17:31.005 0 FEE 434877 14688 6031223 2024-02-22 12:24:50.08 2024-02-22 12:24:50.08 100000 FEE 434888 5195 6031241 2024-02-22 12:26:18.886 2024-02-22 12:26:18.886 4000 FEE 434879 2640 6031242 2024-02-22 12:26:18.886 2024-02-22 12:26:18.886 36000 TIP 434879 7979 6031246 2024-02-22 12:27:08.196 2024-02-22 12:27:08.196 1000 FEE 434891 1603 6031258 2024-02-22 12:29:09.339 2024-02-22 12:29:09.339 2100 FEE 434682 5455 6031259 2024-02-22 12:29:09.339 2024-02-22 12:29:09.339 18900 TIP 434682 16598 6031260 2024-02-22 12:29:10.798 2024-02-22 12:29:10.798 2100 FEE 434793 20597 6031261 2024-02-22 12:29:10.798 2024-02-22 12:29:10.798 18900 TIP 434793 18454 6031296 2024-02-22 12:33:16.07 2024-02-22 12:33:16.07 1000 FEE 434901 7425 6031316 2024-02-22 12:40:25.213 2024-02-22 12:40:25.213 2100 FEE 434658 1002 6031317 2024-02-22 12:40:25.213 2024-02-22 12:40:25.213 18900 TIP 434658 18138 6031325 2024-02-22 12:41:28.694 2024-02-22 12:41:28.694 1000 FEE 434906 20816 6031331 2024-02-22 12:42:08.649 2024-02-22 12:42:08.649 1000 FEE 434907 21062 6031334 2024-02-22 12:42:53.948 2024-02-22 12:42:53.948 2100 FEE 434624 636 6031335 2024-02-22 12:42:53.948 2024-02-22 12:42:53.948 18900 TIP 434624 21058 6031346 2024-02-22 12:46:08.425 2024-02-22 12:46:08.425 3000 FEE 434607 787 6031347 2024-02-22 12:46:08.425 2024-02-22 12:46:08.425 27000 TIP 434607 691 6030467 2024-02-22 10:19:57.899 2024-02-22 10:19:57.899 900 TIP 434722 16665 6030493 2024-02-22 10:22:20.452 2024-02-22 10:22:20.452 100 FEE 434731 18630 6030494 2024-02-22 10:22:20.452 2024-02-22 10:22:20.452 900 TIP 434731 17838 6030512 2024-02-22 10:25:29.898 2024-02-22 10:25:29.898 1000 FEE 434761 3353 6030526 2024-02-22 10:27:22.651 2024-02-22 10:27:22.651 2100 FEE 434718 6136 6030527 2024-02-22 10:27:22.651 2024-02-22 10:27:22.651 18900 TIP 434718 4819 6030529 2024-02-22 10:28:14.349 2024-02-22 10:28:14.349 12800 FEE 433833 695 6030530 2024-02-22 10:28:14.349 2024-02-22 10:28:14.349 115200 TIP 433833 736 6030551 2024-02-22 10:33:43.024 2024-02-22 10:33:43.024 0 FEE 434769 8287 6030557 2024-02-22 10:34:37.416 2024-02-22 10:34:37.416 1000 FEE 434718 14651 6030558 2024-02-22 10:34:37.416 2024-02-22 10:34:37.416 9000 TIP 434718 10719 6030594 2024-02-22 10:35:51.554 2024-02-22 10:35:51.554 100 FEE 434702 706 6030595 2024-02-22 10:35:51.554 2024-02-22 10:35:51.554 900 TIP 434702 21271 6030607 2024-02-22 10:36:45.044 2024-02-22 10:36:45.044 100 FEE 434775 7668 6030608 2024-02-22 10:36:45.044 2024-02-22 10:36:45.044 900 TIP 434775 18529 6030648 2024-02-22 10:43:52.953 2024-02-22 10:43:52.953 1000 FEE 434781 19907 6030710 2024-02-22 10:55:13.818 2024-02-22 10:55:13.818 1000 FEE 434789 954 6030715 2024-02-22 10:56:10.027 2024-02-22 10:56:10.027 1100 FEE 433913 14795 6030716 2024-02-22 10:56:10.027 2024-02-22 10:56:10.027 9900 TIP 433913 10493 6030717 2024-02-22 10:56:10.126 2024-02-22 10:56:10.126 1000 FEE 434760 4064 6030718 2024-02-22 10:56:10.126 2024-02-22 10:56:10.126 9000 TIP 434760 794 6030721 2024-02-22 10:56:18.493 2024-02-22 10:56:18.493 100000 FEE 434791 13903 6030733 2024-02-22 10:59:40.416 2024-02-22 10:59:40.416 1000 FEE 434056 15336 6030734 2024-02-22 10:59:40.416 2024-02-22 10:59:40.416 9000 TIP 434056 16214 6030735 2024-02-22 11:00:03.079 2024-02-22 11:00:03.079 1000 FEE 434794 12930 6030745 2024-02-22 11:02:34.917 2024-02-22 11:02:34.917 1000 FEE 434801 14260 6030746 2024-02-22 11:02:35.929 2024-02-22 11:02:35.929 0 FEE 434796 13399 6030747 2024-02-22 11:02:38.39 2024-02-22 11:02:38.39 3200 FEE 434797 17570 6030748 2024-02-22 11:02:38.39 2024-02-22 11:02:38.39 28800 TIP 434797 6310 6030788 2024-02-22 11:04:25.878 2024-02-22 11:04:25.878 1000 FEE 434804 19036 6030797 2024-02-22 11:06:34.745 2024-02-22 11:06:34.745 100000 FEE 434807 20424 6030800 2024-02-22 11:07:16.146 2024-02-22 11:07:16.146 1100 FEE 434807 18351 6030801 2024-02-22 11:07:16.146 2024-02-22 11:07:16.146 9900 TIP 434807 828 6030813 2024-02-22 11:08:03.906 2024-02-22 11:08:03.906 3200 FEE 434805 11018 6030814 2024-02-22 11:08:03.906 2024-02-22 11:08:03.906 28800 TIP 434805 19864 6030831 2024-02-22 11:10:35.866 2024-02-22 11:10:35.866 300 FEE 314277 1030 6030832 2024-02-22 11:10:35.866 2024-02-22 11:10:35.866 2700 TIP 314277 19094 6030834 2024-02-22 11:10:42.88 2024-02-22 11:10:42.88 2100 FEE 434490 11443 6030835 2024-02-22 11:10:42.88 2024-02-22 11:10:42.88 18900 TIP 434490 20744 6030841 2024-02-22 11:11:58.133 2024-02-22 11:11:58.133 0 FEE 434818 9290 6030896 2024-02-22 11:20:44.521 2024-02-22 11:20:44.521 1000 FEE 434830 18909 6030912 2024-02-22 11:21:41.343 2024-02-22 11:21:41.343 1000 FEE 433831 20302 6030913 2024-02-22 11:21:41.343 2024-02-22 11:21:41.343 9000 TIP 433831 2232 6030960 2024-02-22 11:29:28.592 2024-02-22 11:29:28.592 1000 FEE 434796 6717 6030961 2024-02-22 11:29:28.592 2024-02-22 11:29:28.592 9000 TIP 434796 16571 6030978 2024-02-22 11:32:17.527 2024-02-22 11:32:17.527 0 FEE 434837 18269 6030990 2024-02-22 11:34:33.043 2024-02-22 11:34:33.043 1000 FEE 434440 1825 6030991 2024-02-22 11:34:33.043 2024-02-22 11:34:33.043 9000 TIP 434440 666 6030999 2024-02-22 11:36:01.878 2024-02-22 11:36:01.878 1000 FEE 433331 7675 6031000 2024-02-22 11:36:01.878 2024-02-22 11:36:01.878 9000 TIP 433331 18533 6031006 2024-02-22 11:36:51.912 2024-02-22 11:36:51.912 6300 FEE 434631 20775 6031007 2024-02-22 11:36:51.912 2024-02-22 11:36:51.912 56700 TIP 434631 1713 6031034 2024-02-22 11:45:50.453 2024-02-22 11:45:50.453 21000 FEE 434851 19533 6031061 2024-02-22 11:55:42.831 2024-02-22 11:55:42.831 1100 FEE 434847 16447 6031062 2024-02-22 11:55:42.831 2024-02-22 11:55:42.831 9900 TIP 434847 9335 6031080 2024-02-22 11:59:36.494 2024-02-22 11:59:36.494 800 FEE 434807 9345 6031081 2024-02-22 11:59:36.494 2024-02-22 11:59:36.494 7200 TIP 434807 624 6031107 2024-02-22 12:01:55.881 2024-02-22 12:01:55.881 1100 FEE 434643 18051 6030509 2024-02-22 10:24:58.47 2024-02-22 10:24:58.47 2100 FEE 434684 2046 6030510 2024-02-22 10:24:58.47 2024-02-22 10:24:58.47 18900 TIP 434684 1180 6030571 2024-02-22 10:34:50.752 2024-02-22 10:34:50.752 100 FEE 434718 20606 6030572 2024-02-22 10:34:50.752 2024-02-22 10:34:50.752 900 TIP 434718 11714 6030605 2024-02-22 10:36:44.813 2024-02-22 10:36:44.813 100 FEE 434775 21116 6030606 2024-02-22 10:36:44.813 2024-02-22 10:36:44.813 900 TIP 434775 14381 6030668 2024-02-22 10:49:05.375 2024-02-22 10:49:05.375 1100 FEE 434727 2029 6030669 2024-02-22 10:49:05.375 2024-02-22 10:49:05.375 9900 TIP 434727 21406 6030705 2024-02-22 10:55:10.376 2024-02-22 10:55:10.376 100 FEE 434717 16348 6030706 2024-02-22 10:55:10.376 2024-02-22 10:55:10.376 900 TIP 434717 760 6030722 2024-02-22 10:56:19.695 2024-02-22 10:56:19.695 1000 FEE 434769 19570 6030723 2024-02-22 10:56:19.695 2024-02-22 10:56:19.695 9000 TIP 434769 5195 6030741 2024-02-22 11:01:41.67 2024-02-22 11:01:41.67 0 FEE 434796 676 6030773 2024-02-22 11:04:08.25 2024-02-22 11:04:08.25 200 FEE 434440 794 6030774 2024-02-22 11:04:08.25 2024-02-22 11:04:08.25 1800 TIP 434440 897 6030777 2024-02-22 11:04:08.664 2024-02-22 11:04:08.664 100 FEE 434440 13177 6030778 2024-02-22 11:04:08.664 2024-02-22 11:04:08.664 900 TIP 434440 19158 6030785 2024-02-22 11:04:12.478 2024-02-22 11:04:12.478 0 FEE 434796 18177 6030792 2024-02-22 11:05:06.755 2024-02-22 11:05:06.755 100 FEE 434177 18072 6030793 2024-02-22 11:05:06.755 2024-02-22 11:05:06.755 900 TIP 434177 20018 6030812 2024-02-22 11:08:00.262 2024-02-22 11:08:00.262 1000 FEE 434811 19282 6030819 2024-02-22 11:09:16.906 2024-02-22 11:09:16.906 1000 FEE 434812 21405 6030820 2024-02-22 11:09:18.54 2024-02-22 11:09:18.54 10000 FEE 434813 4654 6030822 2024-02-22 11:09:58.432 2024-02-22 11:09:58.432 100000 FEE 434814 1723 6030852 2024-02-22 11:14:32.678 2024-02-22 11:14:32.678 1100 FEE 433738 9107 6030853 2024-02-22 11:14:32.678 2024-02-22 11:14:32.678 9900 TIP 433738 20267 6030875 2024-02-22 11:17:12.527 2024-02-22 11:17:12.527 1000 FEE 434826 12220 6030876 2024-02-22 11:17:20.361 2024-02-22 11:17:20.361 1100 FEE 434810 8926 6030877 2024-02-22 11:17:20.361 2024-02-22 11:17:20.361 9900 TIP 434810 2176 6030894 2024-02-22 11:20:30.62 2024-02-22 11:20:30.62 10000 FEE 434440 20452 6030895 2024-02-22 11:20:30.62 2024-02-22 11:20:30.62 90000 TIP 434440 17316 6030901 2024-02-22 11:20:54.254 2024-02-22 11:20:54.254 10000 FEE 434707 19837 6030902 2024-02-22 11:20:54.254 2024-02-22 11:20:54.254 90000 TIP 434707 18264 6030909 2024-02-22 11:21:25.386 2024-02-22 11:21:25.386 4000 FEE 434457 17316 6030910 2024-02-22 11:21:25.386 2024-02-22 11:21:25.386 36000 TIP 434457 19103 6030911 2024-02-22 11:21:30.034 2024-02-22 11:21:30.034 1000 FEE 434831 18368 6030935 2024-02-22 11:27:09.48 2024-02-22 11:27:09.48 1100 FEE 434477 5646 6030936 2024-02-22 11:27:09.48 2024-02-22 11:27:09.48 9900 TIP 434477 14271 6030940 2024-02-22 11:27:49.586 2024-02-22 11:27:49.586 10000 FEE 434835 17157 6030955 2024-02-22 11:29:05.957 2024-02-22 11:29:05.957 1000 FEE 434805 20073 6030956 2024-02-22 11:29:05.957 2024-02-22 11:29:05.957 9000 TIP 434805 20704 6030966 2024-02-22 11:30:24.921 2024-02-22 11:30:24.921 10000 FEE 434488 20022 6030967 2024-02-22 11:30:24.921 2024-02-22 11:30:24.921 90000 TIP 434488 21208 6030974 2024-02-22 11:31:17.544 2024-02-22 11:31:17.544 10000 FEE 434720 6555 6030975 2024-02-22 11:31:17.544 2024-02-22 11:31:17.544 90000 TIP 434720 18177 6030983 2024-02-22 11:34:29.91 2024-02-22 11:34:29.91 1000 FEE 434840 11164 6030988 2024-02-22 11:34:31.652 2024-02-22 11:34:31.652 1000 FEE 434440 1394 6030989 2024-02-22 11:34:31.652 2024-02-22 11:34:31.652 9000 TIP 434440 675 6031002 2024-02-22 11:36:07.606 2024-02-22 11:36:07.606 1000 FEE 434843 7766 6031011 2024-02-22 11:37:33.57 2024-02-22 11:37:33.57 1000 FEE 434730 16789 6031012 2024-02-22 11:37:33.57 2024-02-22 11:37:33.57 9000 TIP 434730 3686 6031019 2024-02-22 11:39:16.537 2024-02-22 11:39:16.537 1000 FEE 434847 16876 6031033 2024-02-22 11:45:22.488 2024-02-22 11:45:22.488 1000 FEE 434850 20205 6031045 2024-02-22 11:51:52.519 2024-02-22 11:51:52.519 10000 FEE 434854 2709 6031064 2024-02-22 11:56:59.893 2024-02-22 11:56:59.893 2100 FEE 434807 21491 6031065 2024-02-22 11:56:59.893 2024-02-22 11:56:59.893 18900 TIP 434807 2224 6031079 2024-02-22 11:59:11.251 2024-02-22 11:59:11.251 0 FEE 434858 629 6031100 2024-02-22 12:01:30.863 2024-02-22 12:01:30.863 0 FEE 434858 20623 6031186 2024-02-22 12:13:50.31 2024-02-22 12:13:50.31 1000 FEE 434875 844 6031189 2024-02-22 12:13:54.212 2024-02-22 12:13:54.212 1100 FEE 434865 17148 6031190 2024-02-22 12:13:54.212 2024-02-22 12:13:54.212 9900 TIP 434865 16956 6031214 2024-02-22 12:22:01.239 2024-02-22 12:22:01.239 800 FEE 434883 985 6031215 2024-02-22 12:22:01.239 2024-02-22 12:22:01.239 7200 TIP 434883 1632 6031228 2024-02-22 12:25:19.751 2024-02-22 12:25:19.751 1000 FEE 434889 20990 6031235 2024-02-22 12:25:52.112 2024-02-22 12:25:52.112 2100 FEE 434665 21480 6031236 2024-02-22 12:25:52.112 2024-02-22 12:25:52.112 18900 TIP 434665 21391 6031256 2024-02-22 12:29:06.622 2024-02-22 12:29:06.622 2100 FEE 434868 4064 6031257 2024-02-22 12:29:06.622 2024-02-22 12:29:06.622 18900 TIP 434868 15271 6031275 2024-02-22 12:30:22.767 2024-02-22 12:30:22.767 2100 FEE 434789 19198 6031276 2024-02-22 12:30:22.767 2024-02-22 12:30:22.767 18900 TIP 434789 1319 6031291 2024-02-22 12:31:27.299 2024-02-22 12:31:27.299 1000 FEE 434898 2942 6031318 2024-02-22 12:41:02.178 2024-02-22 12:41:02.178 2100 FEE 434882 20287 6031319 2024-02-22 12:41:02.178 2024-02-22 12:41:02.178 18900 TIP 434882 21269 6031339 2024-02-22 12:43:27.341 2024-02-22 12:43:27.341 0 FEE 383547 13361 6031341 2024-02-22 12:45:01.125 2024-02-22 12:45:01.125 1000 FEE 434908 7877 6031362 2024-02-22 12:49:21.162 2024-02-22 12:49:21.162 2100 FEE 434912 20094 6031363 2024-02-22 12:49:21.162 2024-02-22 12:49:21.162 18900 TIP 434912 8498 6031364 2024-02-22 12:49:22.673 2024-02-22 12:49:22.673 1000 FEE 434913 11938 6031393 2024-02-22 12:53:06.777 2024-02-22 12:53:06.777 210000 FEE 434920 670 6031402 2024-02-22 12:54:16.849 2024-02-22 12:54:16.849 2100 FEE 434609 11164 6031403 2024-02-22 12:54:16.849 2024-02-22 12:54:16.849 18900 TIP 434609 880 6031428 2024-02-22 12:55:50.34 2024-02-22 12:55:50.34 2100 FEE 434640 3456 6031429 2024-02-22 12:55:50.34 2024-02-22 12:55:50.34 18900 TIP 434640 7978 6031446 2024-02-22 12:58:44.81 2024-02-22 12:58:44.81 1000 FEE 434927 21430 6031449 2024-02-22 12:58:55.121 2024-02-22 12:58:55.121 4000 FEE 434922 671 6031450 2024-02-22 12:58:55.121 2024-02-22 12:58:55.121 36000 TIP 434922 12278 6031461 2024-02-22 13:00:13.607 2024-02-22 13:00:13.607 1000 FEE 434930 18640 6030539 2024-02-22 10:31:39.998 2024-02-22 10:31:39.998 2100 FEE 434662 16834 6030540 2024-02-22 10:31:39.998 2024-02-22 10:31:39.998 18900 TIP 434662 20555 6030542 2024-02-22 10:33:01.912 2024-02-22 10:33:01.912 1000 FEE 434768 8535 6030544 2024-02-22 10:33:19.82 2024-02-22 10:33:19.82 1000 FEE 434724 12289 6030545 2024-02-22 10:33:19.82 2024-02-22 10:33:19.82 9000 TIP 434724 18828 6030550 2024-02-22 10:33:28.705 2024-02-22 10:33:28.705 1000 FEE 434769 19996 6030560 2024-02-22 10:34:45.265 2024-02-22 10:34:45.265 1000 FEE 434709 2188 6030561 2024-02-22 10:34:45.265 2024-02-22 10:34:45.265 9000 TIP 434709 20106 6030569 2024-02-22 10:34:50.187 2024-02-22 10:34:50.187 100 FEE 434718 8059 6030570 2024-02-22 10:34:50.187 2024-02-22 10:34:50.187 900 TIP 434718 14774 6030587 2024-02-22 10:35:17.614 2024-02-22 10:35:17.614 1000 FEE 434285 17291 6030588 2024-02-22 10:35:17.614 2024-02-22 10:35:17.614 9000 TIP 434285 16808 6030600 2024-02-22 10:36:39.583 2024-02-22 10:36:39.583 1000 FEE 434776 2748 6030603 2024-02-22 10:36:44.599 2024-02-22 10:36:44.599 100 FEE 434775 21498 6030604 2024-02-22 10:36:44.599 2024-02-22 10:36:44.599 900 TIP 434775 6136 6030614 2024-02-22 10:37:19.37 2024-02-22 10:37:19.37 1000 FEE 434777 1478 6030639 2024-02-22 10:42:36.764 2024-02-22 10:42:36.764 1000 FEE 434779 16684 6030640 2024-02-22 10:42:55.847 2024-02-22 10:42:55.847 1100 FEE 434637 21591 6030641 2024-02-22 10:42:55.847 2024-02-22 10:42:55.847 9900 TIP 434637 7510 6030643 2024-02-22 10:43:12.376 2024-02-22 10:43:12.376 1100 FEE 434627 20922 6030644 2024-02-22 10:43:12.376 2024-02-22 10:43:12.376 9900 TIP 434627 10771 6030655 2024-02-22 10:46:44.188 2024-02-22 10:46:44.188 1100 FEE 434781 19961 6030656 2024-02-22 10:46:44.188 2024-02-22 10:46:44.188 9900 TIP 434781 1047 6030671 2024-02-22 10:49:32.308 2024-02-22 10:49:32.308 21000 FEE 434786 18897 6030703 2024-02-22 10:55:09.933 2024-02-22 10:55:09.933 100 FEE 434717 4079 6030704 2024-02-22 10:55:09.933 2024-02-22 10:55:09.933 900 TIP 434717 20280 6030714 2024-02-22 10:56:09.629 2024-02-22 10:56:09.629 1000 FEE 434790 10007 6030730 2024-02-22 10:58:20.092 2024-02-22 10:58:20.092 10000 FEE 433943 19996 6030731 2024-02-22 10:58:20.092 2024-02-22 10:58:20.092 90000 TIP 433943 17976 6030737 2024-02-22 11:00:09.425 2024-02-22 11:00:09.425 1000 FEE 434796 4118 6030740 2024-02-22 11:01:26.596 2024-02-22 11:01:26.596 1000 FEE 434798 19044 6030744 2024-02-22 11:02:33.036 2024-02-22 11:02:33.036 1000 FEE 434800 8945 6030783 2024-02-22 11:04:10.129 2024-02-22 11:04:10.129 100 FEE 434440 15196 6030784 2024-02-22 11:04:10.129 2024-02-22 11:04:10.129 900 TIP 434440 21180 6030804 2024-02-22 11:07:26.358 2024-02-22 11:07:26.358 1000 FEE 434807 8648 6030805 2024-02-22 11:07:26.358 2024-02-22 11:07:26.358 9000 TIP 434807 15351 6030806 2024-02-22 11:07:28.295 2024-02-22 11:07:28.295 1000 FEE 434809 12188 6030824 2024-02-22 11:10:30.265 2024-02-22 11:10:30.265 1000 FEE 434815 15326 6030851 2024-02-22 11:14:26.32 2024-02-22 11:14:26.32 1000 FEE 434823 11698 6030859 2024-02-22 11:14:47.469 2024-02-22 11:14:47.469 1100 FEE 434819 19118 6030860 2024-02-22 11:14:47.469 2024-02-22 11:14:47.469 9900 TIP 434819 18932 6030864 2024-02-22 11:15:58.522 2024-02-22 11:15:58.522 1000 FEE 434825 10490 6030866 2024-02-22 11:16:06.207 2024-02-22 11:16:06.207 6400 FEE 434796 16149 6030867 2024-02-22 11:16:06.207 2024-02-22 11:16:06.207 57600 TIP 434796 4250 6030879 2024-02-22 11:18:02.926 2024-02-22 11:18:02.926 100 FEE 434827 8954 6030880 2024-02-22 11:18:02.926 2024-02-22 11:18:02.926 900 TIP 434827 17526 6030890 2024-02-22 11:19:33.017 2024-02-22 11:19:33.017 0 FEE 434824 1326 6030908 2024-02-22 11:21:22.019 2024-02-22 11:21:22.019 0 FEE 434830 913 6030944 2024-02-22 11:28:09.192 2024-02-22 11:28:09.192 1000 FEE 434838 2741 6030962 2024-02-22 11:29:32.335 2024-02-22 11:29:32.335 0 FEE 434833 650 6030968 2024-02-22 11:30:43.64 2024-02-22 11:30:43.64 2100 FEE 434743 9916 6030969 2024-02-22 11:30:43.64 2024-02-22 11:30:43.64 18900 TIP 434743 15408 6030981 2024-02-22 11:34:29.029 2024-02-22 11:34:29.029 1000 FEE 434440 21405 6030982 2024-02-22 11:34:29.029 2024-02-22 11:34:29.029 9000 TIP 434440 16348 6030986 2024-02-22 11:34:31.162 2024-02-22 11:34:31.162 1000 FEE 434440 19668 6030987 2024-02-22 11:34:31.162 2024-02-22 11:34:31.162 9000 TIP 434440 1468 6030993 2024-02-22 11:35:41.759 2024-02-22 11:35:41.759 1000 FEE 434841 21275 6030994 2024-02-22 11:35:47.655 2024-02-22 11:35:47.655 1100 FEE 434814 680 6030995 2024-02-22 11:35:47.655 2024-02-22 11:35:47.655 9900 TIP 434814 12708 6030997 2024-02-22 11:35:57.928 2024-02-22 11:35:57.928 1000 FEE 433377 21262 6030998 2024-02-22 11:35:57.928 2024-02-22 11:35:57.928 9000 TIP 433377 21070 6031016 2024-02-22 11:38:42.561 2024-02-22 11:38:42.561 1000 FEE 434845 12268 6031026 2024-02-22 11:41:37.508 2024-02-22 11:41:37.508 1000 FEE 434849 632 6031039 2024-02-22 11:49:06.958 2024-02-22 11:49:06.958 1000 FEE 434852 1428 6031057 2024-02-22 11:55:11.205 2024-02-22 11:55:11.205 1000 FEE 434856 21254 6031070 2024-02-22 11:57:55.972 2024-02-22 11:57:55.972 0 FEE 434858 17148 6031077 2024-02-22 11:58:40.11 2024-02-22 11:58:40.11 1000 FEE 434859 14213 6031084 2024-02-22 12:00:04.565 2024-02-22 12:00:04.565 100000 FEE 434860 4079 6031096 2024-02-22 12:01:12.755 2024-02-22 12:01:12.755 0 FEE 434858 18897 6031102 2024-02-22 12:01:42.978 2024-02-22 12:01:42.978 1000 FEE 434864 2620 6031116 2024-02-22 12:02:35.501 2024-02-22 12:02:35.501 100 FEE 434274 20619 6031117 2024-02-22 12:02:35.501 2024-02-22 12:02:35.501 900 TIP 434274 20730 6031137 2024-02-22 12:04:46.224 2024-02-22 12:04:46.224 900 FEE 434643 16230 6031138 2024-02-22 12:04:46.224 2024-02-22 12:04:46.224 8100 TIP 434643 21523 6031143 2024-02-22 12:04:51.589 2024-02-22 12:04:51.589 1100 FEE 434862 10530 6031144 2024-02-22 12:04:51.589 2024-02-22 12:04:51.589 9900 TIP 434862 19888 6031147 2024-02-22 12:05:17.978 2024-02-22 12:05:17.978 800 FEE 434864 20436 6031148 2024-02-22 12:05:17.978 2024-02-22 12:05:17.978 7200 TIP 434864 19484 6031150 2024-02-22 12:06:03.092 2024-02-22 12:06:03.092 2800 FEE 434766 9351 6030615 2024-02-22 10:37:20.728 2024-02-22 10:37:20.728 10000 FEE 434774 10981 6030616 2024-02-22 10:37:20.728 2024-02-22 10:37:20.728 90000 TIP 434774 5694 6030664 2024-02-22 10:48:17.533 2024-02-22 10:48:17.533 1000 FEE 434784 644 6030673 2024-02-22 10:50:20.147 2024-02-22 10:50:20.147 1000 FEE 434328 18269 6030674 2024-02-22 10:50:20.147 2024-02-22 10:50:20.147 9000 TIP 434328 1773 6030675 2024-02-22 10:50:20.775 2024-02-22 10:50:20.775 1000 FEE 434328 14941 6030676 2024-02-22 10:50:20.775 2024-02-22 10:50:20.775 9000 TIP 434328 14731 6030677 2024-02-22 10:50:21.363 2024-02-22 10:50:21.363 1000 FEE 434328 16212 6030678 2024-02-22 10:50:21.363 2024-02-22 10:50:21.363 9000 TIP 434328 10862 6030687 2024-02-22 10:53:42.309 2024-02-22 10:53:42.309 1000 FEE 434772 1836 6030688 2024-02-22 10:53:42.309 2024-02-22 10:53:42.309 9000 TIP 434772 21212 6030707 2024-02-22 10:55:10.919 2024-02-22 10:55:10.919 100 FEE 434717 19662 6030708 2024-02-22 10:55:10.919 2024-02-22 10:55:10.919 900 TIP 434717 7818 6030709 2024-02-22 10:55:12.303 2024-02-22 10:55:12.303 1000 FEE 434788 19813 6030711 2024-02-22 10:55:17.893 2024-02-22 10:55:17.893 1100 FEE 434685 19174 6030712 2024-02-22 10:55:17.893 2024-02-22 10:55:17.893 9900 TIP 434685 5978 6030754 2024-02-22 11:02:46.977 2024-02-22 11:02:46.977 1000 FEE 434796 10398 6030755 2024-02-22 11:02:46.977 2024-02-22 11:02:46.977 9000 TIP 434796 15271 6030767 2024-02-22 11:03:45.683 2024-02-22 11:03:45.683 0 FEE 434796 21455 6030781 2024-02-22 11:04:09.445 2024-02-22 11:04:09.445 100 FEE 434440 909 6030782 2024-02-22 11:04:09.445 2024-02-22 11:04:09.445 900 TIP 434440 21216 6030816 2024-02-22 11:08:32.885 2024-02-22 11:08:32.885 4000 FEE 434811 5057 6030817 2024-02-22 11:08:32.885 2024-02-22 11:08:32.885 36000 TIP 434811 2203 6030825 2024-02-22 11:10:33.625 2024-02-22 11:10:33.625 1000 FEE 433799 14651 6030826 2024-02-22 11:10:33.625 2024-02-22 11:10:33.625 9000 TIP 433799 21145 6030843 2024-02-22 11:12:08.732 2024-02-22 11:12:08.732 0 FEE 434818 11328 6030844 2024-02-22 11:13:03.354 2024-02-22 11:13:03.354 1000 FEE 434820 9335 6030855 2024-02-22 11:14:47.116 2024-02-22 11:14:47.116 1100 FEE 434819 650 6030856 2024-02-22 11:14:47.116 2024-02-22 11:14:47.116 9900 TIP 434819 1051 6030857 2024-02-22 11:14:47.307 2024-02-22 11:14:47.307 1100 FEE 434819 1631 6030858 2024-02-22 11:14:47.307 2024-02-22 11:14:47.307 9900 TIP 434819 16229 6030872 2024-02-22 11:16:25.06 2024-02-22 11:16:25.06 0 FEE 434824 18368 6030887 2024-02-22 11:18:31.367 2024-02-22 11:18:31.367 1600 FEE 434818 21571 6030888 2024-02-22 11:18:31.367 2024-02-22 11:18:31.367 14400 TIP 434818 9816 6030891 2024-02-22 11:19:42.102 2024-02-22 11:19:42.102 2000 FEE 434786 7983 6030892 2024-02-22 11:19:42.102 2024-02-22 11:19:42.102 18000 TIP 434786 19449 6030899 2024-02-22 11:20:47.537 2024-02-22 11:20:47.537 2000 FEE 434717 16250 6030900 2024-02-22 11:20:47.537 2024-02-22 11:20:47.537 18000 TIP 434717 14950 6030916 2024-02-22 11:21:42.521 2024-02-22 11:21:42.521 1000 FEE 433831 1478 6030917 2024-02-22 11:21:42.521 2024-02-22 11:21:42.521 9000 TIP 433831 7891 6030923 2024-02-22 11:23:23.646 2024-02-22 11:23:23.646 1000 FEE 434445 9099 6030924 2024-02-22 11:23:23.646 2024-02-22 11:23:23.646 9000 TIP 434445 18714 6030933 2024-02-22 11:27:04.714 2024-02-22 11:27:04.714 1000 FEE 434833 15941 6030939 2024-02-22 11:27:26.824 2024-02-22 11:27:26.824 0 FEE 434833 19668 6030958 2024-02-22 11:29:27.934 2024-02-22 11:29:27.934 10000 FEE 434560 18072 6030959 2024-02-22 11:29:27.934 2024-02-22 11:29:27.934 90000 TIP 434560 3409 6031013 2024-02-22 11:37:49.315 2024-02-22 11:37:49.315 1000 FEE 434700 20624 6031014 2024-02-22 11:37:49.315 2024-02-22 11:37:49.315 9000 TIP 434700 12289 6031041 2024-02-22 11:50:46.176 2024-02-22 11:50:46.176 1000 FEE 434853 17162 6031043 2024-02-22 11:51:04.873 2024-02-22 11:51:04.873 1000 FEE 434488 13055 6031044 2024-02-22 11:51:04.873 2024-02-22 11:51:04.873 9000 TIP 434488 2711 6031048 2024-02-22 11:53:17.865 2024-02-22 11:53:17.865 4000 FEE 434854 999 6031049 2024-02-22 11:53:17.865 2024-02-22 11:53:17.865 36000 TIP 434854 716 6031050 2024-02-22 11:53:47.958 2024-02-22 11:53:47.958 4000 FEE 434685 20849 6031051 2024-02-22 11:53:47.958 2024-02-22 11:53:47.958 36000 TIP 434685 1162 6031067 2024-02-22 11:57:25.618 2024-02-22 11:57:25.618 1000 FEE 434858 4118 6030732 2024-02-22 10:59:04.062 2024-02-22 10:59:04.062 1000 STREAM 141924 21254 6030768 2024-02-22 11:04:04.116 2024-02-22 11:04:04.116 1000 STREAM 141924 19557 6030818 2024-02-22 11:09:04.145 2024-02-22 11:09:04.145 1000 STREAM 141924 7966 6030823 2024-02-22 11:10:04.231 2024-02-22 11:10:04.231 1000 STREAM 141924 18306 6030842 2024-02-22 11:12:04.183 2024-02-22 11:12:04.183 1000 STREAM 141924 20108 6030865 2024-02-22 11:16:04.226 2024-02-22 11:16:04.226 1000 STREAM 141924 19770 6030736 2024-02-22 11:00:04.125 2024-02-22 11:00:04.125 1000 STREAM 141924 1571 6030739 2024-02-22 11:01:04.055 2024-02-22 11:01:04.055 1000 STREAM 141924 17184 6030789 2024-02-22 11:05:04.129 2024-02-22 11:05:04.129 1000 STREAM 141924 21599 6030795 2024-02-22 11:06:04.122 2024-02-22 11:06:04.122 1000 STREAM 141924 16939 6030799 2024-02-22 11:07:04.145 2024-02-22 11:07:04.145 1000 STREAM 141924 12768 6030815 2024-02-22 11:08:04.141 2024-02-22 11:08:04.141 1000 STREAM 141924 1495 6030836 2024-02-22 11:11:04.182 2024-02-22 11:11:04.182 1000 STREAM 141924 18393 6030845 2024-02-22 11:13:04.188 2024-02-22 11:13:04.188 1000 STREAM 141924 20302 6030849 2024-02-22 11:14:04.225 2024-02-22 11:14:04.225 1000 STREAM 141924 19484 6030863 2024-02-22 11:15:04.199 2024-02-22 11:15:04.199 1000 STREAM 141924 18625 6030874 2024-02-22 11:17:04.208 2024-02-22 11:17:04.208 1000 STREAM 141924 16284 6030889 2024-02-22 11:19:04.227 2024-02-22 11:19:04.227 1000 STREAM 141924 18809 6030922 2024-02-22 11:23:04.254 2024-02-22 11:23:04.254 1000 STREAM 141924 19806 6030929 2024-02-22 11:24:04.272 2024-02-22 11:24:04.272 1000 STREAM 141924 630 6030742 2024-02-22 11:02:02.448 2024-02-22 11:02:02.448 1000 STREAM 141924 20502 6036509 2024-02-22 20:43:03.925 2024-02-22 20:43:03.925 1000 STREAM 141924 19031 6036547 2024-02-22 20:48:03.957 2024-02-22 20:48:03.957 1000 STREAM 141924 6229 6036612 2024-02-22 20:51:03.968 2024-02-22 20:51:03.968 1000 STREAM 141924 9551 6036699 2024-02-22 21:00:04.005 2024-02-22 21:00:04.005 1000 STREAM 141924 9109 6036701 2024-02-22 21:01:03.976 2024-02-22 21:01:03.976 1000 STREAM 141924 7966 6036703 2024-02-22 21:02:03.981 2024-02-22 21:02:03.981 1000 STREAM 141924 21263 6036708 2024-02-22 21:04:03.999 2024-02-22 21:04:03.999 1000 STREAM 141924 2233 6036714 2024-02-22 21:06:03.999 2024-02-22 21:06:03.999 1000 STREAM 141924 17838 6036717 2024-02-22 21:07:04.041 2024-02-22 21:07:04.041 1000 STREAM 141924 1631 6036724 2024-02-22 21:08:04.038 2024-02-22 21:08:04.038 1000 STREAM 141924 9351 6036738 2024-02-22 21:11:04.075 2024-02-22 21:11:04.075 1000 STREAM 141924 9355 6036741 2024-02-22 21:12:04.095 2024-02-22 21:12:04.095 1000 STREAM 141924 17106 6036759 2024-02-22 21:14:04.108 2024-02-22 21:14:04.108 1000 STREAM 141924 18500 6036768 2024-02-22 21:15:04.114 2024-02-22 21:15:04.114 1000 STREAM 141924 1512 6036799 2024-02-22 21:17:04.112 2024-02-22 21:17:04.112 1000 STREAM 141924 15662 6036814 2024-02-22 21:19:04.118 2024-02-22 21:19:04.118 1000 STREAM 141924 1316 6036825 2024-02-22 21:21:04.142 2024-02-22 21:21:04.142 1000 STREAM 141924 21501 6036827 2024-02-22 21:22:04.144 2024-02-22 21:22:04.144 1000 STREAM 141924 17797 6036862 2024-02-22 21:26:04.153 2024-02-22 21:26:04.153 1000 STREAM 141924 10979 6036863 2024-02-22 21:27:04.152 2024-02-22 21:27:04.152 1000 STREAM 141924 16442 6036871 2024-02-22 21:28:04.173 2024-02-22 21:28:04.173 1000 STREAM 141924 15273 6036876 2024-02-22 21:29:04.165 2024-02-22 21:29:04.165 1000 STREAM 141924 638 6036896 2024-02-22 21:32:04.208 2024-02-22 21:32:04.208 1000 STREAM 141924 675 6036917 2024-02-22 21:34:04.204 2024-02-22 21:34:04.204 1000 STREAM 141924 1652 6036929 2024-02-22 21:36:04.211 2024-02-22 21:36:04.211 1000 STREAM 141924 5565 6036940 2024-02-22 21:37:04.227 2024-02-22 21:37:04.227 1000 STREAM 141924 18583 6036950 2024-02-22 21:39:04.237 2024-02-22 21:39:04.237 1000 STREAM 141924 2735 6030763 2024-02-22 11:03:02.442 2024-02-22 11:03:02.442 1000 STREAM 141924 19906 6036515 2024-02-22 20:43:55.554 2024-02-22 20:43:55.554 1000 FEE 435465 16598 6036516 2024-02-22 20:43:55.554 2024-02-22 20:43:55.554 9000 TIP 435465 21201 6036519 2024-02-22 20:44:32.983 2024-02-22 20:44:32.983 1000 FEE 435504 15119 6036520 2024-02-22 20:44:59.258 2024-02-22 20:44:59.258 1000 FEE 435505 20979 6036522 2024-02-22 20:45:51.265 2024-02-22 20:45:51.265 200 FEE 435501 4167 6036523 2024-02-22 20:45:51.265 2024-02-22 20:45:51.265 1800 TIP 435501 19087 6036531 2024-02-22 20:46:50.367 2024-02-22 20:46:50.367 100 FEE 435505 18635 6036532 2024-02-22 20:46:50.367 2024-02-22 20:46:50.367 900 TIP 435505 11220 6036536 2024-02-22 20:48:01.113 2024-02-22 20:48:01.113 1000 FEE 435506 20337 6036560 2024-02-22 20:48:22.86 2024-02-22 20:48:22.86 100000 FEE 435507 20998 6036567 2024-02-22 20:48:29.046 2024-02-22 20:48:29.046 1000 FEE 435475 9365 6036568 2024-02-22 20:48:29.046 2024-02-22 20:48:29.046 9000 TIP 435475 13553 6036580 2024-02-22 20:48:47.514 2024-02-22 20:48:47.514 11700 FEE 435242 1007 6036581 2024-02-22 20:48:47.514 2024-02-22 20:48:47.514 105300 TIP 435242 15577 6036619 2024-02-22 20:52:01.276 2024-02-22 20:52:01.276 1000 FEE 435328 20624 6036620 2024-02-22 20:52:01.276 2024-02-22 20:52:01.276 9000 TIP 435328 14195 6036628 2024-02-22 20:53:24.046 2024-02-22 20:53:24.046 1000 FEE 435509 21430 6036629 2024-02-22 20:53:24.046 2024-02-22 20:53:24.046 9000 TIP 435509 19199 6036638 2024-02-22 20:53:35.818 2024-02-22 20:53:35.818 100 FEE 435457 19976 6036639 2024-02-22 20:53:35.818 2024-02-22 20:53:35.818 900 TIP 435457 20891 6036646 2024-02-22 20:53:52.828 2024-02-22 20:53:52.828 100 FEE 435314 666 6036647 2024-02-22 20:53:52.828 2024-02-22 20:53:52.828 900 TIP 435314 17714 6036660 2024-02-22 20:54:29.824 2024-02-22 20:54:29.824 9000 FEE 435488 16513 6036661 2024-02-22 20:54:29.824 2024-02-22 20:54:29.824 81000 TIP 435488 15367 6036664 2024-02-22 20:54:42.46 2024-02-22 20:54:42.46 100 FEE 435480 13076 6036665 2024-02-22 20:54:42.46 2024-02-22 20:54:42.46 900 TIP 435480 21416 6036691 2024-02-22 20:57:42.014 2024-02-22 20:57:42.014 100 FEE 435510 20811 6036692 2024-02-22 20:57:42.014 2024-02-22 20:57:42.014 900 TIP 435510 7682 6036693 2024-02-22 20:57:43.573 2024-02-22 20:57:43.573 900 FEE 435510 19435 6036694 2024-02-22 20:57:43.573 2024-02-22 20:57:43.573 8100 TIP 435510 21609 6036711 2024-02-22 21:05:17.931 2024-02-22 21:05:17.931 100000 FEE 435521 20006 6036727 2024-02-22 21:08:51.269 2024-02-22 21:08:51.269 10000 FEE 435515 6003 6036728 2024-02-22 21:08:51.269 2024-02-22 21:08:51.269 90000 TIP 435515 20337 6036737 2024-02-22 21:10:20.541 2024-02-22 21:10:20.541 1000 FEE 435526 19987 6036746 2024-02-22 21:13:36.728 2024-02-22 21:13:36.728 100 FEE 435525 12218 6036747 2024-02-22 21:13:36.728 2024-02-22 21:13:36.728 900 TIP 435525 876 6036777 2024-02-22 21:15:53.846 2024-02-22 21:15:53.846 2100 FEE 434527 640 6036778 2024-02-22 21:15:53.846 2024-02-22 21:15:53.846 18900 TIP 434527 2088 6036785 2024-02-22 21:16:25.748 2024-02-22 21:16:25.748 3300 FEE 435210 671 6036786 2024-02-22 21:16:25.748 2024-02-22 21:16:25.748 29700 TIP 435210 8176 6036837 2024-02-22 21:22:59.638 2024-02-22 21:22:59.638 4000 FEE 435528 1454 6036838 2024-02-22 21:22:59.638 2024-02-22 21:22:59.638 36000 TIP 435528 2674 6036841 2024-02-22 21:23:12.032 2024-02-22 21:23:12.032 1000 FEE 435384 16406 6036842 2024-02-22 21:23:12.032 2024-02-22 21:23:12.032 9000 TIP 435384 1003 6036845 2024-02-22 21:23:27.922 2024-02-22 21:23:27.922 2100 FEE 97082 18717 6036846 2024-02-22 21:23:27.922 2024-02-22 21:23:27.922 18900 TIP 97082 1618 6036860 2024-02-22 21:25:29.371 2024-02-22 21:25:29.371 5000 FEE 435131 2681 6036861 2024-02-22 21:25:29.371 2024-02-22 21:25:29.371 45000 TIP 435131 19105 6036889 2024-02-22 21:31:29.7 2024-02-22 21:31:29.7 1000 FEE 435547 2361 6036894 2024-02-22 21:31:47.771 2024-02-22 21:31:47.771 2100 FEE 435530 802 6036895 2024-02-22 21:31:47.771 2024-02-22 21:31:47.771 18900 TIP 435530 21323 6036901 2024-02-22 21:32:18.41 2024-02-22 21:32:18.41 1000 FEE 435508 951 6036902 2024-02-22 21:32:18.41 2024-02-22 21:32:18.41 9000 TIP 435508 18745 6036904 2024-02-22 21:32:20.892 2024-02-22 21:32:20.892 1000 FEE 435508 17011 6036905 2024-02-22 21:32:20.892 2024-02-22 21:32:20.892 9000 TIP 435508 2098 6036915 2024-02-22 21:33:42.541 2024-02-22 21:33:42.541 2100 FEE 435513 16788 6036916 2024-02-22 21:33:42.541 2024-02-22 21:33:42.541 18900 TIP 435513 831 6036930 2024-02-22 21:36:06.972 2024-02-22 21:36:06.972 2100 FEE 435496 6164 6036931 2024-02-22 21:36:06.972 2024-02-22 21:36:06.972 18900 TIP 435496 13599 6036932 2024-02-22 21:36:12.338 2024-02-22 21:36:12.338 2100 FEE 435501 21540 6036933 2024-02-22 21:36:12.338 2024-02-22 21:36:12.338 18900 TIP 435501 2576 6036934 2024-02-22 21:36:20.678 2024-02-22 21:36:20.678 2100 FEE 435501 2734 6036935 2024-02-22 21:36:20.678 2024-02-22 21:36:20.678 18900 TIP 435501 21212 6036948 2024-02-22 21:38:18.574 2024-02-22 21:38:18.574 100000 FEE 435551 21040 6036962 2024-02-22 21:39:58.314 2024-02-22 21:39:58.314 3300 FEE 435553 956 6030881 2024-02-22 11:18:04.221 2024-02-22 11:18:04.221 1000 STREAM 141924 814 6030893 2024-02-22 11:20:04.25 2024-02-22 11:20:04.25 1000 STREAM 141924 18930 6030903 2024-02-22 11:21:04.239 2024-02-22 11:21:04.239 1000 STREAM 141924 20660 6030918 2024-02-22 11:22:04.249 2024-02-22 11:22:04.249 1000 STREAM 141924 21589 6030930 2024-02-22 11:25:04.265 2024-02-22 11:25:04.265 1000 STREAM 141924 5487 6036524 2024-02-22 20:46:03.851 2024-02-22 20:46:03.851 1000 STREAM 141924 19296 6036606 2024-02-22 20:49:03.865 2024-02-22 20:49:03.865 1000 STREAM 141924 16267 6036687 2024-02-22 20:57:03.905 2024-02-22 20:57:03.905 1000 STREAM 141924 9276 6036695 2024-02-22 20:58:03.934 2024-02-22 20:58:03.934 1000 STREAM 141924 21180 6036696 2024-02-22 20:59:03.927 2024-02-22 20:59:03.927 1000 STREAM 141924 756 6038640 2024-02-23 00:27:39.786 2024-02-23 00:27:39.786 2300 FEE 435657 21343 6038641 2024-02-23 00:27:39.786 2024-02-23 00:27:39.786 20700 TIP 435657 16753 6038650 2024-02-23 00:27:46.801 2024-02-23 00:27:46.801 2300 FEE 435488 1609 6038651 2024-02-23 00:27:46.801 2024-02-23 00:27:46.801 20700 TIP 435488 17984 6038655 2024-02-23 00:28:07.185 2024-02-23 00:28:07.185 1000 FEE 435657 19848 6038656 2024-02-23 00:28:07.185 2024-02-23 00:28:07.185 9000 TIP 435657 1784 6038671 2024-02-23 00:32:05.279 2024-02-23 00:32:05.279 2100 FEE 435701 6526 6038672 2024-02-23 00:32:05.279 2024-02-23 00:32:05.279 18900 TIP 435701 20495 6038688 2024-02-23 00:36:46.553 2024-02-23 00:36:46.553 1000 FEE 435710 14552 6038689 2024-02-23 00:37:02.441 2024-02-23 00:37:02.441 1000 FEE 435711 21458 6038717 2024-02-23 00:37:51.104 2024-02-23 00:37:51.104 1000 DONT_LIKE_THIS 435497 18051 6038760 2024-02-23 00:50:10.59 2024-02-23 00:50:10.59 300 FEE 435720 21019 6038761 2024-02-23 00:50:10.59 2024-02-23 00:50:10.59 2700 TIP 435720 20511 6038764 2024-02-23 00:50:45.382 2024-02-23 00:50:45.382 100 FEE 435687 21619 6038765 2024-02-23 00:50:45.382 2024-02-23 00:50:45.382 900 TIP 435687 19911 6038769 2024-02-23 00:52:25.784 2024-02-23 00:52:25.784 10000 FEE 435722 9339 6038772 2024-02-23 00:52:41.292 2024-02-23 00:52:41.292 1000 FEE 435723 1628 6038805 2024-02-23 01:00:21.836 2024-02-23 01:00:21.836 10000 FEE 435730 19773 6038810 2024-02-23 01:02:05.187 2024-02-23 01:02:05.187 10000 FEE 435733 685 6038816 2024-02-23 01:04:02.145 2024-02-23 01:04:02.145 10000 FEE 435734 19890 6038821 2024-02-23 01:04:55.704 2024-02-23 01:04:55.704 1000 FEE 435736 18909 6038823 2024-02-23 01:05:09.284 2024-02-23 01:05:09.284 1000 FEE 434581 14857 6038824 2024-02-23 01:05:09.284 2024-02-23 01:05:09.284 9000 TIP 434581 761 6038871 2024-02-23 01:13:41.053 2024-02-23 01:13:41.053 1000 FEE 435505 661 6030931 2024-02-22 11:26:04.286 2024-02-22 11:26:04.286 1000 STREAM 141924 16194 6030932 2024-02-22 11:27:04.28 2024-02-22 11:27:04.28 1000 STREAM 141924 8726 6030943 2024-02-22 11:28:04.284 2024-02-22 11:28:04.284 1000 STREAM 141924 7773 6036561 2024-02-22 20:48:23.125 2024-02-22 20:48:23.125 2000 FEE 435474 8541 6036562 2024-02-22 20:48:23.125 2024-02-22 20:48:23.125 18000 TIP 435474 7869 6036569 2024-02-22 20:48:29.21 2024-02-22 20:48:29.21 1000 FEE 435475 2437 6036570 2024-02-22 20:48:29.21 2024-02-22 20:48:29.21 9000 TIP 435475 19668 6036587 2024-02-22 20:48:54.832 2024-02-22 20:48:54.832 100 FEE 435497 12774 6036588 2024-02-22 20:48:54.832 2024-02-22 20:48:54.832 900 TIP 435497 4322 6036589 2024-02-22 20:48:55.387 2024-02-22 20:48:55.387 100 FEE 435497 20299 6036590 2024-02-22 20:48:55.387 2024-02-22 20:48:55.387 900 TIP 435497 714 6036613 2024-02-22 20:51:36.253 2024-02-22 20:51:36.253 1000 FEE 435507 18704 6036614 2024-02-22 20:51:36.253 2024-02-22 20:51:36.253 9000 TIP 435507 18830 6036642 2024-02-22 20:53:40.436 2024-02-22 20:53:40.436 1000 FEE 435511 9167 6036657 2024-02-22 20:54:28.132 2024-02-22 20:54:28.132 900 FEE 435488 17291 6036658 2024-02-22 20:54:28.132 2024-02-22 20:54:28.132 8100 TIP 435488 963 6036659 2024-02-22 20:54:28.633 2024-02-22 20:54:28.633 100000 FEE 435513 20257 6036680 2024-02-22 20:56:09.769 2024-02-22 20:56:09.769 9000 FEE 435495 1064 6036681 2024-02-22 20:56:09.769 2024-02-22 20:56:09.769 81000 TIP 435495 16956 6036716 2024-02-22 21:06:49.01 2024-02-22 21:06:49.01 0 FEE 435520 894 6036722 2024-02-22 21:07:50.636 2024-02-22 21:07:50.636 1000 FEE 435518 20904 6036723 2024-02-22 21:07:50.636 2024-02-22 21:07:50.636 9000 TIP 435518 9275 6036754 2024-02-22 21:13:38.391 2024-02-22 21:13:38.391 200 FEE 435525 5809 6036755 2024-02-22 21:13:38.391 2024-02-22 21:13:38.391 1800 TIP 435525 2735 6036774 2024-02-22 21:15:43.82 2024-02-22 21:15:43.82 2100 FEE 434514 13854 6036775 2024-02-22 21:15:43.82 2024-02-22 21:15:43.82 18900 TIP 434514 1493 6036787 2024-02-22 21:16:28.722 2024-02-22 21:16:28.722 2100 FEE 434994 18330 6036788 2024-02-22 21:16:28.722 2024-02-22 21:16:28.722 18900 TIP 434994 1785 6036797 2024-02-22 21:16:52.302 2024-02-22 21:16:52.302 2100 FEE 435413 676 6036798 2024-02-22 21:16:52.302 2024-02-22 21:16:52.302 18900 TIP 435413 21262 6036826 2024-02-22 21:21:19.326 2024-02-22 21:21:19.326 1000 FEE 435541 690 6030954 2024-02-22 11:29:02.724 2024-02-22 11:29:02.724 1000 STREAM 141924 21555 6036591 2024-02-22 20:48:55.612 2024-02-22 20:48:55.612 100 FEE 435497 1602 6036592 2024-02-22 20:48:55.612 2024-02-22 20:48:55.612 900 TIP 435497 1272 6036602 2024-02-22 20:49:00.261 2024-02-22 20:49:00.261 100 FEE 435505 18941 6036603 2024-02-22 20:49:00.261 2024-02-22 20:49:00.261 900 TIP 435505 1769 6036630 2024-02-22 20:53:24.151 2024-02-22 20:53:24.151 1000 FEE 435509 675 6036631 2024-02-22 20:53:24.151 2024-02-22 20:53:24.151 9000 TIP 435509 15115 6036636 2024-02-22 20:53:24.869 2024-02-22 20:53:24.869 1000 FEE 435509 17014 6036637 2024-02-22 20:53:24.869 2024-02-22 20:53:24.869 9000 TIP 435509 2780 6036640 2024-02-22 20:53:36.073 2024-02-22 20:53:36.073 900 FEE 435457 4831 6036641 2024-02-22 20:53:36.073 2024-02-22 20:53:36.073 8100 TIP 435457 16809 6036667 2024-02-22 20:55:04.609 2024-02-22 20:55:04.609 100 FEE 435467 16788 6036668 2024-02-22 20:55:04.609 2024-02-22 20:55:04.609 900 TIP 435467 16754 6036671 2024-02-22 20:55:22.396 2024-02-22 20:55:22.396 9000 FEE 435467 9349 6036672 2024-02-22 20:55:22.396 2024-02-22 20:55:22.396 81000 TIP 435467 19507 6036677 2024-02-22 20:56:01.994 2024-02-22 20:56:01.994 900 FEE 435495 21281 6036678 2024-02-22 20:56:01.994 2024-02-22 20:56:01.994 8100 TIP 435495 19094 6036683 2024-02-22 20:56:27.903 2024-02-22 20:56:27.903 3000 FEE 435511 1483 6036684 2024-02-22 20:56:27.903 2024-02-22 20:56:27.903 27000 TIP 435511 8095 6036685 2024-02-22 20:56:40.861 2024-02-22 20:56:40.861 3000 FEE 435355 1488 6036686 2024-02-22 20:56:40.861 2024-02-22 20:56:40.861 27000 TIP 435355 900 6036689 2024-02-22 20:57:24.664 2024-02-22 20:57:24.664 100000 FEE 435516 21349 6036707 2024-02-22 21:03:21.233 2024-02-22 21:03:21.233 10000 FEE 435519 20816 6036760 2024-02-22 21:14:16.235 2024-02-22 21:14:16.235 2100 FEE 435284 21061 6036761 2024-02-22 21:14:16.235 2024-02-22 21:14:16.235 18900 TIP 435284 11967 6036772 2024-02-22 21:15:18.227 2024-02-22 21:15:18.227 1000 FEE 435533 5825 6036783 2024-02-22 21:16:20.086 2024-02-22 21:16:20.086 4000 FEE 434708 19640 6036784 2024-02-22 21:16:20.086 2024-02-22 21:16:20.086 36000 TIP 434708 4538 6036804 2024-02-22 21:18:20.561 2024-02-22 21:18:20.561 1600 FEE 435458 12959 6036805 2024-02-22 21:18:20.561 2024-02-22 21:18:20.561 14400 TIP 435458 20163 6036822 2024-02-22 21:19:45.924 2024-02-22 21:19:45.924 1000 POLL 435495 782 6036835 2024-02-22 21:22:35.707 2024-02-22 21:22:35.707 900 FEE 435528 20551 6036836 2024-02-22 21:22:35.707 2024-02-22 21:22:35.707 8100 TIP 435528 16289 6036853 2024-02-22 21:23:30.228 2024-02-22 21:23:30.228 2100 FEE 97082 20231 6036854 2024-02-22 21:23:30.228 2024-02-22 21:23:30.228 18900 TIP 97082 6361 6036882 2024-02-22 21:30:27.904 2024-02-22 21:30:27.904 500 FEE 435231 19535 6036883 2024-02-22 21:30:27.904 2024-02-22 21:30:27.904 4500 TIP 435231 18274 6036918 2024-02-22 21:34:09.645 2024-02-22 21:34:09.645 10000 FEE 435501 8059 6036919 2024-02-22 21:34:09.645 2024-02-22 21:34:09.645 90000 TIP 435501 631 6036967 2024-02-22 21:40:22.935 2024-02-22 21:40:22.935 1000 FEE 435555 626 6036970 2024-02-22 21:40:53.895 2024-02-22 21:40:53.895 1000 FEE 435556 21418 6036982 2024-02-22 21:42:32.353 2024-02-22 21:42:32.353 100 FEE 435030 13622 6036983 2024-02-22 21:42:32.353 2024-02-22 21:42:32.353 900 TIP 435030 18241 6037004 2024-02-22 21:44:01.844 2024-02-22 21:44:01.844 5000 FEE 435486 21547 6037005 2024-02-22 21:44:01.844 2024-02-22 21:44:01.844 45000 TIP 435486 20337 6037016 2024-02-22 21:44:33.136 2024-02-22 21:44:33.136 100 FEE 434410 2327 6037017 2024-02-22 21:44:33.136 2024-02-22 21:44:33.136 900 TIP 434410 16858 6037052 2024-02-22 21:51:19.092 2024-02-22 21:51:19.092 1000 POLL 435495 18403 6037062 2024-02-22 21:52:52.684 2024-02-22 21:52:52.684 1000 FEE 435571 19511 6037080 2024-02-22 21:53:11.639 2024-02-22 21:53:11.639 900 FEE 435401 2844 6037081 2024-02-22 21:53:11.639 2024-02-22 21:53:11.639 8100 TIP 435401 3342 6037082 2024-02-22 21:53:13.772 2024-02-22 21:53:13.772 1000 POLL 435516 3304 6037093 2024-02-22 21:53:26.653 2024-02-22 21:53:26.653 100 FEE 435378 20614 6037094 2024-02-22 21:53:26.653 2024-02-22 21:53:26.653 900 TIP 435378 18995 6037120 2024-02-22 21:55:37.777 2024-02-22 21:55:37.777 2300 FEE 435497 20881 6037121 2024-02-22 21:55:37.777 2024-02-22 21:55:37.777 20700 TIP 435497 663 6037140 2024-02-22 21:55:40.384 2024-02-22 21:55:40.384 2300 FEE 435497 20353 6037141 2024-02-22 21:55:40.384 2024-02-22 21:55:40.384 20700 TIP 435497 16229 6037168 2024-02-22 21:55:43.516 2024-02-22 21:55:43.516 2300 FEE 435497 15941 6037169 2024-02-22 21:55:43.516 2024-02-22 21:55:43.516 20700 TIP 435497 18529 6037170 2024-02-22 21:55:43.719 2024-02-22 21:55:43.719 2300 FEE 435497 13348 6037171 2024-02-22 21:55:43.719 2024-02-22 21:55:43.719 20700 TIP 435497 1310 6037176 2024-02-22 21:55:44.237 2024-02-22 21:55:44.237 2300 FEE 435497 2328 6037177 2024-02-22 21:55:44.237 2024-02-22 21:55:44.237 20700 TIP 435497 21494 6037178 2024-02-22 21:55:44.443 2024-02-22 21:55:44.443 2300 FEE 435497 18309 6037179 2024-02-22 21:55:44.443 2024-02-22 21:55:44.443 20700 TIP 435497 15060 6037186 2024-02-22 21:55:45.134 2024-02-22 21:55:45.134 2300 FEE 435497 663 6037187 2024-02-22 21:55:45.134 2024-02-22 21:55:45.134 20700 TIP 435497 999 6037227 2024-02-22 21:59:46.781 2024-02-22 21:59:46.781 2100 FEE 434657 15351 6037228 2024-02-22 21:59:46.781 2024-02-22 21:59:46.781 18900 TIP 434657 21271 6037270 2024-02-22 22:06:46.733 2024-02-22 22:06:46.733 1000 FEE 435581 21072 6037284 2024-02-22 22:07:12.515 2024-02-22 22:07:12.515 1000 FEE 435572 929 6037285 2024-02-22 22:07:12.515 2024-02-22 22:07:12.515 9000 TIP 435572 18930 6037293 2024-02-22 22:08:00.837 2024-02-22 22:08:00.837 100 FEE 435558 16830 6037294 2024-02-22 22:08:00.837 2024-02-22 22:08:00.837 900 TIP 435558 19417 6037311 2024-02-22 22:08:33.259 2024-02-22 22:08:33.259 1000 FEE 435585 19322 6037316 2024-02-22 22:09:20.561 2024-02-22 22:09:20.561 100 FEE 435046 4624 6037317 2024-02-22 22:09:20.561 2024-02-22 22:09:20.561 900 TIP 435046 20840 6037322 2024-02-22 22:10:15.653 2024-02-22 22:10:15.653 4000 FEE 435497 13217 6037323 2024-02-22 22:10:15.653 2024-02-22 22:10:15.653 36000 TIP 435497 632 6037334 2024-02-22 22:10:40.323 2024-02-22 22:10:40.323 3000 FEE 435217 19126 6037335 2024-02-22 22:10:40.323 2024-02-22 22:10:40.323 27000 TIP 435217 1326 6037345 2024-02-22 22:12:02.782 2024-02-22 22:12:02.782 8300 FEE 435579 708 6037346 2024-02-22 22:12:02.782 2024-02-22 22:12:02.782 74700 TIP 435579 19601 6037355 2024-02-22 22:12:13.602 2024-02-22 22:12:13.602 8300 FEE 435551 4395 6037356 2024-02-22 22:12:13.602 2024-02-22 22:12:13.602 74700 TIP 435551 10469 6037359 2024-02-22 22:12:13.933 2024-02-22 22:12:13.933 8300 FEE 435551 2046 6037360 2024-02-22 22:12:13.933 2024-02-22 22:12:13.933 74700 TIP 435551 676 6037373 2024-02-22 22:14:15.687 2024-02-22 22:14:15.687 0 FEE 435592 4043 6037381 2024-02-22 22:15:47.952 2024-02-22 22:15:47.952 8300 FEE 435596 21247 6037382 2024-02-22 22:15:47.952 2024-02-22 22:15:47.952 74700 TIP 435596 10007 6030963 2024-02-22 11:29:54.297 2024-02-22 11:29:54.297 4000 FEE 434837 651 6030964 2024-02-22 11:29:54.297 2024-02-22 11:29:54.297 36000 TIP 434837 1713 6030973 2024-02-22 11:31:14.017 2024-02-22 11:31:14.017 0 FEE 434833 2065 6031004 2024-02-22 11:36:17.51 2024-02-22 11:36:17.51 6300 FEE 434804 16988 6031005 2024-02-22 11:36:17.51 2024-02-22 11:36:17.51 56700 TIP 434804 21060 6031060 2024-02-22 11:55:37.658 2024-02-22 11:55:37.658 1000 FEE 434857 20117 6031074 2024-02-22 11:58:14.286 2024-02-22 11:58:14.286 100 FEE 434854 2718 6031075 2024-02-22 11:58:14.286 2024-02-22 11:58:14.286 900 TIP 434854 902 6031088 2024-02-22 12:00:27.856 2024-02-22 12:00:27.856 0 FEE 434858 8870 6031089 2024-02-22 12:00:38.517 2024-02-22 12:00:38.517 100 FEE 434835 19096 6031090 2024-02-22 12:00:38.517 2024-02-22 12:00:38.517 900 TIP 434835 20156 6031091 2024-02-22 12:00:42.172 2024-02-22 12:00:42.172 2100 FEE 434846 19037 6031092 2024-02-22 12:00:42.172 2024-02-22 12:00:42.172 18900 TIP 434846 704 6031113 2024-02-22 12:02:05.312 2024-02-22 12:02:05.312 21000 FEE 434865 1175 6031114 2024-02-22 12:02:27.109 2024-02-22 12:02:27.109 0 FEE 434858 18829 6031128 2024-02-22 12:03:27.128 2024-02-22 12:03:27.128 4000 FEE 434866 20464 6031129 2024-02-22 12:03:27.128 2024-02-22 12:03:27.128 36000 TIP 434866 3377 6031160 2024-02-22 12:10:06.097 2024-02-22 12:10:06.097 2100 FEE 434867 17212 6031161 2024-02-22 12:10:06.097 2024-02-22 12:10:06.097 18900 TIP 434867 20636 6031165 2024-02-22 12:12:04.248 2024-02-22 12:12:04.248 2000 FEE 434871 16230 6031166 2024-02-22 12:12:04.248 2024-02-22 12:12:04.248 18000 TIP 434871 20922 6031175 2024-02-22 12:13:33.64 2024-02-22 12:13:33.64 100 FEE 430342 21386 6031176 2024-02-22 12:13:33.64 2024-02-22 12:13:33.64 900 TIP 430342 21466 6031187 2024-02-22 12:13:53.869 2024-02-22 12:13:53.869 1100 FEE 434865 2514 6031188 2024-02-22 12:13:53.869 2024-02-22 12:13:53.869 9900 TIP 434865 18169 6031204 2024-02-22 12:18:12.687 2024-02-22 12:18:12.687 1000 FEE 434879 14818 6031238 2024-02-22 12:26:03.016 2024-02-22 12:26:03.016 1000 FEE 434064 2264 6031239 2024-02-22 12:26:03.016 2024-02-22 12:26:03.016 9000 TIP 434064 10981 6031266 2024-02-22 12:29:27.721 2024-02-22 12:29:27.721 1000 FEE 434895 19038 6031277 2024-02-22 12:30:27.311 2024-02-22 12:30:27.311 100000 FEE 434897 1515 6031294 2024-02-22 12:33:01.557 2024-02-22 12:33:01.557 1000 FEE 434900 19309 6031311 2024-02-22 12:40:00.029 2024-02-22 12:40:00.029 1000 FEE 434469 19103 6031312 2024-02-22 12:40:00.029 2024-02-22 12:40:00.029 9000 TIP 434469 20327 6031314 2024-02-22 12:40:17.073 2024-02-22 12:40:17.073 1000 FEE 434904 20603 6031323 2024-02-22 12:41:19.385 2024-02-22 12:41:19.385 2100 FEE 432504 20502 6031324 2024-02-22 12:41:19.385 2024-02-22 12:41:19.385 18900 TIP 432504 1236 6031351 2024-02-22 12:46:52.67 2024-02-22 12:46:52.67 0 FEE 434911 1567 6031375 2024-02-22 12:51:20.458 2024-02-22 12:51:20.458 2000 FEE 434916 8080 6031378 2024-02-22 12:51:27.388 2024-02-22 12:51:27.388 1100 FEE 434577 10981 6031379 2024-02-22 12:51:27.388 2024-02-22 12:51:27.388 9900 TIP 434577 13843 6031388 2024-02-22 12:52:15.146 2024-02-22 12:52:15.146 1000 FEE 434902 19148 6031389 2024-02-22 12:52:15.146 2024-02-22 12:52:15.146 9000 TIP 434902 17116 6031397 2024-02-22 12:53:43.547 2024-02-22 12:53:43.547 100000 FEE 434922 6191 6031415 2024-02-22 12:54:38.021 2024-02-22 12:54:38.021 1100 FEE 434626 2942 6031416 2024-02-22 12:54:38.021 2024-02-22 12:54:38.021 9900 TIP 434626 880 6031431 2024-02-22 12:56:04.581 2024-02-22 12:56:04.581 1000 FEE 434925 20340 6031434 2024-02-22 12:56:11.36 2024-02-22 12:56:11.36 10000 FEE 434923 20276 6031435 2024-02-22 12:56:11.36 2024-02-22 12:56:11.36 90000 TIP 434923 1825 6031466 2024-02-22 13:01:24.821 2024-02-22 13:01:24.821 1100 FEE 434926 15806 6031467 2024-02-22 13:01:24.821 2024-02-22 13:01:24.821 9900 TIP 434926 1620 6031488 2024-02-22 13:05:17.441 2024-02-22 13:05:17.441 100 FEE 434856 6602 6031489 2024-02-22 13:05:17.441 2024-02-22 13:05:17.441 900 TIP 434856 989 6031552 2024-02-22 13:10:18.516 2024-02-22 13:10:18.516 4000 FEE 434939 18941 6031553 2024-02-22 13:10:18.516 2024-02-22 13:10:18.516 36000 TIP 434939 5306 6031561 2024-02-22 13:10:42.309 2024-02-22 13:10:42.309 27000 FEE 434685 880 6031562 2024-02-22 13:10:42.309 2024-02-22 13:10:42.309 243000 TIP 434685 17046 6031567 2024-02-22 13:10:50.89 2024-02-22 13:10:50.89 9000 FEE 434695 15266 6031568 2024-02-22 13:10:50.89 2024-02-22 13:10:50.89 81000 TIP 434695 15337 6031617 2024-02-22 13:20:04.234 2024-02-22 13:20:04.234 200 FEE 434942 21600 6031618 2024-02-22 13:20:04.234 2024-02-22 13:20:04.234 1800 TIP 434942 20964 6031623 2024-02-22 13:20:48.472 2024-02-22 13:20:48.472 1000 FEE 434949 624 6031657 2024-02-22 13:29:08.874 2024-02-22 13:29:08.874 2100 FEE 434865 20163 6031658 2024-02-22 13:29:08.874 2024-02-22 13:29:08.874 18900 TIP 434865 17519 6031669 2024-02-22 13:29:22.685 2024-02-22 13:29:22.685 2100 FEE 434695 19546 6031670 2024-02-22 13:29:22.685 2024-02-22 13:29:22.685 18900 TIP 434695 9169 6031715 2024-02-22 13:32:34.071 2024-02-22 13:32:34.071 100000 FEE 434963 12057 6031768 2024-02-22 13:35:49.055 2024-02-22 13:35:49.055 10000 FEE 434969 992 6031796 2024-02-22 13:38:47.818 2024-02-22 13:38:47.818 1000 FEE 434964 759 6031797 2024-02-22 13:38:47.818 2024-02-22 13:38:47.818 9000 TIP 434964 7827 6031798 2024-02-22 13:39:01.763 2024-02-22 13:39:01.763 1000 FEE 434970 7979 6031810 2024-02-22 13:39:41.327 2024-02-22 13:39:41.327 1000 FEE 434962 1180 6031811 2024-02-22 13:39:41.327 2024-02-22 13:39:41.327 9000 TIP 434962 18380 6031822 2024-02-22 13:39:44.469 2024-02-22 13:39:44.469 2300 FEE 434920 16571 6031823 2024-02-22 13:39:44.469 2024-02-22 13:39:44.469 20700 TIP 434920 2639 6031824 2024-02-22 13:39:50.321 2024-02-22 13:39:50.321 4000 FEE 434958 11678 6031825 2024-02-22 13:39:50.321 2024-02-22 13:39:50.321 36000 TIP 434958 20754 6031837 2024-02-22 13:40:45.202 2024-02-22 13:40:45.202 1300 FEE 434613 21365 6031838 2024-02-22 13:40:45.202 2024-02-22 13:40:45.202 11700 TIP 434613 21612 6031848 2024-02-22 13:41:08.913 2024-02-22 13:41:08.913 1300 FEE 434533 16351 6031849 2024-02-22 13:41:08.913 2024-02-22 13:41:08.913 11700 TIP 434533 1960 6031874 2024-02-22 13:45:18.055 2024-02-22 13:45:18.055 10000 FEE 434977 12911 6031882 2024-02-22 13:46:09.392 2024-02-22 13:46:09.392 1000 FEE 434980 7185 6031888 2024-02-22 13:46:41.896 2024-02-22 13:46:41.896 2100 FEE 434515 21422 6031889 2024-02-22 13:46:41.896 2024-02-22 13:46:41.896 18900 TIP 434515 19320 6031917 2024-02-22 13:49:36.578 2024-02-22 13:49:36.578 1100 FEE 434627 16598 6031918 2024-02-22 13:49:36.578 2024-02-22 13:49:36.578 9900 TIP 434627 21589 6031926 2024-02-22 13:50:20.745 2024-02-22 13:50:20.745 1100 FEE 433828 9169 6031927 2024-02-22 13:50:20.745 2024-02-22 13:50:20.745 9900 TIP 433828 1209 6031932 2024-02-22 13:52:04.307 2024-02-22 13:52:04.307 1000 FEE 434982 11527 6031940 2024-02-22 13:54:11.962 2024-02-22 13:54:11.962 10000 FEE 434986 21037 6031945 2024-02-22 13:54:46.393 2024-02-22 13:54:46.393 1000 FEE 434987 21040 6031958 2024-02-22 13:55:41.121 2024-02-22 13:55:41.121 100000 FEE 434988 11561 6031971 2024-02-22 13:56:54.186 2024-02-22 13:56:54.186 8300 FEE 434791 10821 6031972 2024-02-22 13:56:54.186 2024-02-22 13:56:54.186 74700 TIP 434791 2065 6031994 2024-02-22 13:57:10.418 2024-02-22 13:57:10.418 8300 FEE 434661 17944 6031995 2024-02-22 13:57:10.418 2024-02-22 13:57:10.418 74700 TIP 434661 21480 6032000 2024-02-22 13:57:14.21 2024-02-22 13:57:14.21 8300 FEE 434491 16052 6032001 2024-02-22 13:57:14.21 2024-02-22 13:57:14.21 74700 TIP 434491 21424 6032011 2024-02-22 13:57:49.513 2024-02-22 13:57:49.513 100 FEE 434845 21044 6032012 2024-02-22 13:57:49.513 2024-02-22 13:57:49.513 900 TIP 434845 20120 6032015 2024-02-22 13:58:01.781 2024-02-22 13:58:01.781 100000 FEE 434991 977 6032023 2024-02-22 14:00:31.875 2024-02-22 14:00:31.875 100000 FEE 434994 8289 6032054 2024-02-22 14:05:10.05 2024-02-22 14:05:10.05 10000 FEE 434617 673 6030965 2024-02-22 11:30:02.735 2024-02-22 11:30:02.735 1000 STREAM 141924 9705 6031027 2024-02-22 11:42:02.806 2024-02-22 11:42:02.806 1000 STREAM 141924 18556 6031029 2024-02-22 11:44:02.808 2024-02-22 11:44:02.808 1000 STREAM 141924 2330 6031032 2024-02-22 11:45:02.805 2024-02-22 11:45:02.805 1000 STREAM 141924 16145 6031036 2024-02-22 11:47:02.83 2024-02-22 11:47:02.83 1000 STREAM 141924 12277 6036594 2024-02-22 20:48:59.563 2024-02-22 20:48:59.563 1000 FEE 435470 828 6036595 2024-02-22 20:48:59.563 2024-02-22 20:48:59.563 9000 TIP 435470 21389 6036596 2024-02-22 20:48:59.906 2024-02-22 20:48:59.906 200 FEE 435505 20436 6036597 2024-02-22 20:48:59.906 2024-02-22 20:48:59.906 1800 TIP 435505 9426 6036607 2024-02-22 20:49:32.654 2024-02-22 20:49:32.654 2500 FEE 435355 12289 6036608 2024-02-22 20:49:32.654 2024-02-22 20:49:32.654 22500 TIP 435355 16948 6036609 2024-02-22 20:49:35.193 2024-02-22 20:49:35.193 2600 FEE 435141 882 6036610 2024-02-22 20:49:35.193 2024-02-22 20:49:35.193 23400 TIP 435141 19087 6036621 2024-02-22 20:52:01.404 2024-02-22 20:52:01.404 1000 FEE 435328 2942 6036622 2024-02-22 20:52:01.404 2024-02-22 20:52:01.404 9000 TIP 435328 19243 6036650 2024-02-22 20:53:53.949 2024-02-22 20:53:53.949 100 FEE 435314 2942 6036651 2024-02-22 20:53:53.949 2024-02-22 20:53:53.949 900 TIP 435314 19043 6036688 2024-02-22 20:57:08.263 2024-02-22 20:57:08.263 1000 FEE 435515 1319 6036702 2024-02-22 21:01:53.578 2024-02-22 21:01:53.578 1000 POLL 435516 11942 6036730 2024-02-22 21:09:25.65 2024-02-22 21:09:25.65 1000 FEE 435524 16230 6036739 2024-02-22 21:11:21.26 2024-02-22 21:11:21.26 1000 FEE 435527 14357 6036740 2024-02-22 21:11:25.472 2024-02-22 21:11:25.472 0 FEE 435520 16929 6036745 2024-02-22 21:13:36.196 2024-02-22 21:13:36.196 10000 FEE 435530 17030 6036819 2024-02-22 21:19:42.926 2024-02-22 21:19:42.926 1000 FEE 435539 18472 6036831 2024-02-22 21:22:27.684 2024-02-22 21:22:27.684 900 FEE 435516 15526 6036832 2024-02-22 21:22:27.684 2024-02-22 21:22:27.684 8100 TIP 435516 20586 6036877 2024-02-22 21:29:15.029 2024-02-22 21:29:15.029 100000 FEE 435544 13878 6036878 2024-02-22 21:29:31.277 2024-02-22 21:29:31.277 1000 FEE 435546 1720 6036906 2024-02-22 21:33:01.803 2024-02-22 21:33:01.803 10000 FEE 435513 20660 6036907 2024-02-22 21:33:01.803 2024-02-22 21:33:01.803 90000 TIP 435513 880 6036941 2024-02-22 21:37:16.278 2024-02-22 21:37:16.278 0 FEE 435549 19381 6036944 2024-02-22 21:38:03.115 2024-02-22 21:38:03.115 1000 FEE 435550 18629 6036946 2024-02-22 21:38:07.757 2024-02-22 21:38:07.757 1000 FEE 435425 6573 6036947 2024-02-22 21:38:07.757 2024-02-22 21:38:07.757 9000 TIP 435425 21605 6036955 2024-02-22 21:39:39.958 2024-02-22 21:39:39.958 1000 FEE 434940 8045 6036956 2024-02-22 21:39:39.958 2024-02-22 21:39:39.958 9000 TIP 434940 20222 6036957 2024-02-22 21:39:42.395 2024-02-22 21:39:42.395 1000 FEE 435554 5725 6036972 2024-02-22 21:41:14.323 2024-02-22 21:41:14.323 1000 FEE 435438 21463 6036973 2024-02-22 21:41:14.323 2024-02-22 21:41:14.323 9000 TIP 435438 8360 6036977 2024-02-22 21:42:12.918 2024-02-22 21:42:12.918 2100 FEE 435552 1010 6036978 2024-02-22 21:42:12.918 2024-02-22 21:42:12.918 18900 TIP 435552 1673 6036994 2024-02-22 21:42:53 2024-02-22 21:42:53 100 FEE 435327 16505 6036995 2024-02-22 21:42:53 2024-02-22 21:42:53 900 TIP 435327 20006 6037036 2024-02-22 21:47:36.909 2024-02-22 21:47:36.909 1000 FEE 435436 11220 6037037 2024-02-22 21:47:36.909 2024-02-22 21:47:36.909 9000 TIP 435436 9529 6037041 2024-02-22 21:48:15.285 2024-02-22 21:48:15.285 1000 FEE 435563 17568 6037042 2024-02-22 21:48:48.534 2024-02-22 21:48:48.534 1000 FEE 435559 5444 6037043 2024-02-22 21:48:48.534 2024-02-22 21:48:48.534 9000 TIP 435559 15147 6037056 2024-02-22 21:51:57.858 2024-02-22 21:51:57.858 2100 FEE 435217 2039 6037057 2024-02-22 21:51:57.858 2024-02-22 21:51:57.858 18900 TIP 435217 21402 6037061 2024-02-22 21:52:33.812 2024-02-22 21:52:33.812 1000 FEE 435570 638 6037078 2024-02-22 21:53:11.514 2024-02-22 21:53:11.514 1000 FEE 435516 5003 6037079 2024-02-22 21:53:11.514 2024-02-22 21:53:11.514 9000 TIP 435516 686 6037105 2024-02-22 21:53:58.292 2024-02-22 21:53:58.292 900 FEE 435544 15160 6037106 2024-02-22 21:53:58.292 2024-02-22 21:53:58.292 8100 TIP 435544 8664 6037130 2024-02-22 21:55:39.36 2024-02-22 21:55:39.36 2300 FEE 435497 14650 6037131 2024-02-22 21:55:39.36 2024-02-22 21:55:39.36 20700 TIP 435497 4487 6037136 2024-02-22 21:55:39.805 2024-02-22 21:55:39.805 2300 FEE 435497 1751 6037137 2024-02-22 21:55:39.805 2024-02-22 21:55:39.805 20700 TIP 435497 20623 6037148 2024-02-22 21:55:41.584 2024-02-22 21:55:41.584 6900 FEE 435497 10586 6037149 2024-02-22 21:55:41.584 2024-02-22 21:55:41.584 62100 TIP 435497 20646 6037156 2024-02-22 21:55:42.292 2024-02-22 21:55:42.292 1600 FEE 435551 10342 6037157 2024-02-22 21:55:42.292 2024-02-22 21:55:42.292 14400 TIP 435551 20185 6037166 2024-02-22 21:55:43.135 2024-02-22 21:55:43.135 2300 FEE 435497 1310 6037167 2024-02-22 21:55:43.135 2024-02-22 21:55:43.135 20700 TIP 435497 16347 6037172 2024-02-22 21:55:43.883 2024-02-22 21:55:43.883 2300 FEE 435497 20015 6037173 2024-02-22 21:55:43.883 2024-02-22 21:55:43.883 20700 TIP 435497 14688 6037190 2024-02-22 21:55:45.766 2024-02-22 21:55:45.766 2300 FEE 435497 21083 6037191 2024-02-22 21:55:45.766 2024-02-22 21:55:45.766 20700 TIP 435497 19511 6037200 2024-02-22 21:55:46.791 2024-02-22 21:55:46.791 2300 FEE 435497 16638 6037201 2024-02-22 21:55:46.791 2024-02-22 21:55:46.791 20700 TIP 435497 18626 6037237 2024-02-22 22:02:29.903 2024-02-22 22:02:29.903 3000 FEE 435502 5306 6037238 2024-02-22 22:02:29.903 2024-02-22 22:02:29.903 27000 TIP 435502 21547 6030972 2024-02-22 11:31:02.528 2024-02-22 11:31:02.528 1000 STREAM 141924 782 6030977 2024-02-22 11:32:02.52 2024-02-22 11:32:02.52 1000 STREAM 141924 20163 6030979 2024-02-22 11:33:02.53 2024-02-22 11:33:02.53 1000 STREAM 141924 20109 6031001 2024-02-22 11:36:02.576 2024-02-22 11:36:02.576 1000 STREAM 141924 13399 6031008 2024-02-22 11:37:02.608 2024-02-22 11:37:02.608 1000 STREAM 141924 12422 6031015 2024-02-22 11:38:02.63 2024-02-22 11:38:02.63 1000 STREAM 141924 631 6031021 2024-02-22 11:40:02.681 2024-02-22 11:40:02.681 1000 STREAM 141924 1720 6031028 2024-02-22 11:43:02.758 2024-02-22 11:43:02.758 1000 STREAM 141924 629 6036679 2024-02-22 20:56:03.896 2024-02-22 20:56:03.896 1000 STREAM 141924 20889 6038708 2024-02-23 00:37:42.91 2024-02-23 00:37:42.91 1000 FEE 435712 12334 6038738 2024-02-23 00:47:47.785 2024-02-23 00:47:47.785 300 FEE 434599 2123 6038739 2024-02-23 00:47:47.785 2024-02-23 00:47:47.785 2700 TIP 434599 21547 6038788 2024-02-23 00:55:52.286 2024-02-23 00:55:52.286 1000 FEE 435726 7992 6038813 2024-02-23 01:02:34.166 2024-02-23 01:02:34.166 500 FEE 435420 13553 6038814 2024-02-23 01:02:34.166 2024-02-23 01:02:34.166 4500 TIP 435420 684 6038857 2024-02-23 01:11:15.607 2024-02-23 01:11:15.607 7700 FEE 434263 616 6038858 2024-02-23 01:11:15.607 2024-02-23 01:11:15.607 69300 TIP 434263 20891 6038916 2024-02-23 01:25:19.233 2024-02-23 01:25:19.233 2300 FEE 435711 1733 6038917 2024-02-23 01:25:19.233 2024-02-23 01:25:19.233 20700 TIP 435711 19031 6038920 2024-02-23 01:25:26.307 2024-02-23 01:25:26.307 2300 FEE 435610 17226 6038921 2024-02-23 01:25:26.307 2024-02-23 01:25:26.307 20700 TIP 435610 19094 6038943 2024-02-23 01:26:21.115 2024-02-23 01:26:21.115 100 FEE 435579 14795 6038944 2024-02-23 01:26:21.115 2024-02-23 01:26:21.115 900 TIP 435579 17415 6038947 2024-02-23 01:26:36.839 2024-02-23 01:26:36.839 22700 FEE 432920 20430 6038948 2024-02-23 01:26:36.839 2024-02-23 01:26:36.839 204300 TIP 432920 12277 6038988 2024-02-23 01:37:34.019 2024-02-23 01:37:34.019 2700 FEE 435552 1320 6038989 2024-02-23 01:37:34.019 2024-02-23 01:37:34.019 24300 TIP 435552 21430 6038994 2024-02-23 01:37:34.53 2024-02-23 01:37:34.53 2700 FEE 435552 2576 6038995 2024-02-23 01:37:34.53 2024-02-23 01:37:34.53 24300 TIP 435552 20436 6039000 2024-02-23 01:37:36.011 2024-02-23 01:37:36.011 2700 FEE 435552 805 6039001 2024-02-23 01:37:36.011 2024-02-23 01:37:36.011 24300 TIP 435552 12245 6039008 2024-02-23 01:41:05.265 2024-02-23 01:41:05.265 2100 FEE 435742 4378 6039009 2024-02-23 01:41:05.265 2024-02-23 01:41:05.265 18900 TIP 435742 1483 6039012 2024-02-23 01:41:48.34 2024-02-23 01:41:48.34 100 FEE 435708 9366 6039013 2024-02-23 01:41:48.34 2024-02-23 01:41:48.34 900 TIP 435708 19346 6039027 2024-02-23 01:49:49.25 2024-02-23 01:49:49.25 2700 FEE 435531 12721 6039028 2024-02-23 01:49:49.25 2024-02-23 01:49:49.25 24300 TIP 435531 19996 6039038 2024-02-23 01:52:11.109 2024-02-23 01:52:11.109 100 FEE 435384 805 6039039 2024-02-23 01:52:11.109 2024-02-23 01:52:11.109 900 TIP 435384 15100 6039047 2024-02-23 01:52:57.554 2024-02-23 01:52:57.554 2700 FEE 435181 1474 6039048 2024-02-23 01:52:57.554 2024-02-23 01:52:57.554 24300 TIP 435181 18265 6039064 2024-02-23 01:54:19.89 2024-02-23 01:54:19.89 2700 FEE 435086 1122 6039065 2024-02-23 01:54:19.89 2024-02-23 01:54:19.89 24300 TIP 435086 6382 6039077 2024-02-23 01:54:54.997 2024-02-23 01:54:54.997 0 FEE 435752 19906 6039087 2024-02-23 01:55:14.628 2024-02-23 01:55:14.628 900 FEE 435741 1652 6039088 2024-02-23 01:55:14.628 2024-02-23 01:55:14.628 8100 TIP 435741 6555 6039091 2024-02-23 01:55:25.792 2024-02-23 01:55:25.792 1000 FEE 435328 2322 6039092 2024-02-23 01:55:25.792 2024-02-23 01:55:25.792 9000 TIP 435328 621 6039105 2024-02-23 01:55:27.271 2024-02-23 01:55:27.271 1000 FEE 435328 1046 6039106 2024-02-23 01:55:27.271 2024-02-23 01:55:27.271 9000 TIP 435328 1439 6039111 2024-02-23 01:55:27.777 2024-02-23 01:55:27.777 1000 FEE 435328 18774 6039112 2024-02-23 01:55:27.777 2024-02-23 01:55:27.777 9000 TIP 435328 1577 6039123 2024-02-23 01:55:28.91 2024-02-23 01:55:28.91 1000 FEE 435328 11819 6039124 2024-02-23 01:55:28.91 2024-02-23 01:55:28.91 9000 TIP 435328 20861 6039129 2024-02-23 01:55:30.381 2024-02-23 01:55:30.381 1000 FEE 435328 21072 6039130 2024-02-23 01:55:30.381 2024-02-23 01:55:30.381 9000 TIP 435328 5425 6039131 2024-02-23 01:55:30.551 2024-02-23 01:55:30.551 1000 FEE 435328 11789 6039132 2024-02-23 01:55:30.551 2024-02-23 01:55:30.551 9000 TIP 435328 951 6039133 2024-02-23 01:55:30.722 2024-02-23 01:55:30.722 1000 FEE 435328 12218 6039134 2024-02-23 01:55:30.722 2024-02-23 01:55:30.722 9000 TIP 435328 697 6039139 2024-02-23 01:55:31.368 2024-02-23 01:55:31.368 1000 FEE 435328 20433 6039140 2024-02-23 01:55:31.368 2024-02-23 01:55:31.368 9000 TIP 435328 6149 6039141 2024-02-23 01:55:34.808 2024-02-23 01:55:34.808 100 FEE 435728 9333 6039142 2024-02-23 01:55:34.808 2024-02-23 01:55:34.808 900 TIP 435728 1425 6039145 2024-02-23 01:55:35.944 2024-02-23 01:55:35.944 9000 FEE 435728 20775 6039146 2024-02-23 01:55:35.944 2024-02-23 01:55:35.944 81000 TIP 435728 909 6039153 2024-02-23 01:55:47.24 2024-02-23 01:55:47.24 100 FEE 435704 4014 6039154 2024-02-23 01:55:47.24 2024-02-23 01:55:47.24 900 TIP 435704 21140 6039162 2024-02-23 01:56:25.093 2024-02-23 01:56:25.093 0 FEE 435752 20602 6039170 2024-02-23 02:00:01.561 2024-02-23 02:00:01.561 2100 FEE 435069 16653 6039171 2024-02-23 02:00:01.561 2024-02-23 02:00:01.561 18900 TIP 435069 20245 6039177 2024-02-23 02:03:05.417 2024-02-23 02:03:05.417 2100 FEE 435661 27 6039178 2024-02-23 02:03:05.417 2024-02-23 02:03:05.417 18900 TIP 435661 2196 6039184 2024-02-23 02:07:05.368 2024-02-23 02:07:05.368 10000 FEE 435758 900 6039192 2024-02-23 02:07:45.493 2024-02-23 02:07:45.493 21800 FEE 435124 9336 6039193 2024-02-23 02:07:45.493 2024-02-23 02:07:45.493 196200 TIP 435124 17166 6039201 2024-02-23 02:08:09.408 2024-02-23 02:08:09.408 1000 FEE 435531 16124 6039202 2024-02-23 02:08:09.408 2024-02-23 02:08:09.408 9000 TIP 435531 16950 6039231 2024-02-23 02:11:20.117 2024-02-23 02:11:20.117 5000 FEE 435257 1729 6039232 2024-02-23 02:11:20.117 2024-02-23 02:11:20.117 45000 TIP 435257 15408 6039241 2024-02-23 02:18:03.972 2024-02-23 02:18:03.972 1000 STREAM 141924 21453 6039253 2024-02-23 02:22:28.299 2024-02-23 02:22:28.299 2100 FEE 435610 17091 6039254 2024-02-23 02:22:28.299 2024-02-23 02:22:28.299 18900 TIP 435610 621 6039257 2024-02-23 02:22:29.493 2024-02-23 02:22:29.493 2100 FEE 435639 7558 6039258 2024-02-23 02:22:29.493 2024-02-23 02:22:29.493 18900 TIP 435639 12483 6039265 2024-02-23 02:22:32.077 2024-02-23 02:22:32.077 2100 FEE 435579 12946 6039266 2024-02-23 02:22:32.077 2024-02-23 02:22:32.077 18900 TIP 435579 700 6039275 2024-02-23 02:22:35.69 2024-02-23 02:22:35.69 2100 FEE 435231 20993 6039276 2024-02-23 02:22:35.69 2024-02-23 02:22:35.69 18900 TIP 435231 21520 6039277 2024-02-23 02:22:36.986 2024-02-23 02:22:36.986 2100 FEE 435242 10096 6039278 2024-02-23 02:22:36.986 2024-02-23 02:22:36.986 18900 TIP 435242 12139 6039279 2024-02-23 02:22:37.731 2024-02-23 02:22:37.731 2100 FEE 435679 20647 6039280 2024-02-23 02:22:37.731 2024-02-23 02:22:37.731 18900 TIP 435679 18309 6039289 2024-02-23 02:25:02.224 2024-02-23 02:25:02.224 1000 STREAM 141924 5978 6039291 2024-02-23 02:27:02.85 2024-02-23 02:27:02.85 1000 STREAM 141924 1970 6039292 2024-02-23 02:27:22.11 2024-02-23 02:27:22.11 2100 FEE 435690 647 6039293 2024-02-23 02:27:22.11 2024-02-23 02:27:22.11 18900 TIP 435690 10586 6039297 2024-02-23 02:28:02.841 2024-02-23 02:28:02.841 1000 STREAM 141924 11153 6039303 2024-02-23 02:30:02.879 2024-02-23 02:30:02.879 1000 STREAM 141924 21627 6039306 2024-02-23 02:31:26.532 2024-02-23 02:31:26.532 3000 FEE 435759 2711 6039307 2024-02-23 02:31:26.532 2024-02-23 02:31:26.532 27000 TIP 435759 4574 6039318 2024-02-23 02:34:02.632 2024-02-23 02:34:02.632 1000 STREAM 141924 18174 6039319 2024-02-23 02:35:02.662 2024-02-23 02:35:02.662 1000 STREAM 141924 7659 6039321 2024-02-23 02:36:02.666 2024-02-23 02:36:02.666 1000 STREAM 141924 21422 6039322 2024-02-23 02:36:18.093 2024-02-23 02:36:18.093 3300 FEE 435760 4259 6039323 2024-02-23 02:36:18.093 2024-02-23 02:36:18.093 29700 TIP 435760 9820 6039326 2024-02-23 02:37:02.677 2024-02-23 02:37:02.677 1000 STREAM 141924 13854 6030980 2024-02-22 11:34:02.55 2024-02-22 11:34:02.55 1000 STREAM 141924 2773 6030992 2024-02-22 11:35:02.559 2024-02-22 11:35:02.559 1000 STREAM 141924 1006 6031018 2024-02-22 11:39:02.651 2024-02-22 11:39:02.651 1000 STREAM 141924 2013 6031025 2024-02-22 11:41:02.696 2024-02-22 11:41:02.696 1000 STREAM 141924 1624 6036766 2024-02-22 21:15:02.641 2024-02-22 21:15:02.641 2100 FEE 435151 6653 6036767 2024-02-22 21:15:02.641 2024-02-22 21:15:02.641 18900 TIP 435151 17011 6036803 2024-02-22 21:18:17.335 2024-02-22 21:18:17.335 1000 POLL 435495 20218 6036808 2024-02-22 21:18:44.01 2024-02-22 21:18:44.01 3200 FEE 435467 14545 6036809 2024-02-22 21:18:44.01 2024-02-22 21:18:44.01 28800 TIP 435467 21323 6036810 2024-02-22 21:18:48.112 2024-02-22 21:18:48.112 2300 FEE 435534 9427 6036811 2024-02-22 21:18:48.112 2024-02-22 21:18:48.112 20700 TIP 435534 21369 6036829 2024-02-22 21:22:27.493 2024-02-22 21:22:27.493 100 FEE 435516 8380 6036830 2024-02-22 21:22:27.493 2024-02-22 21:22:27.493 900 TIP 435516 10519 6036892 2024-02-22 21:31:45.64 2024-02-22 21:31:45.64 2500 FEE 435200 3642 6036893 2024-02-22 21:31:45.64 2024-02-22 21:31:45.64 22500 TIP 435200 5359 6036899 2024-02-22 21:32:11.065 2024-02-22 21:32:11.065 3000 FEE 435546 19016 6036900 2024-02-22 21:32:11.065 2024-02-22 21:32:11.065 27000 TIP 435546 21609 6036920 2024-02-22 21:34:19.498 2024-02-22 21:34:19.498 300 FEE 37384 15409 6036921 2024-02-22 21:34:19.498 2024-02-22 21:34:19.498 2700 TIP 37384 913 6036936 2024-02-22 21:36:26.792 2024-02-22 21:36:26.792 1000 FEE 435549 9378 6036958 2024-02-22 21:39:45.242 2024-02-22 21:39:45.242 1000 FEE 434951 9348 6036959 2024-02-22 21:39:45.242 2024-02-22 21:39:45.242 9000 TIP 434951 17535 6036965 2024-02-22 21:40:20.161 2024-02-22 21:40:20.161 4000 FEE 435551 3411 6036966 2024-02-22 21:40:20.161 2024-02-22 21:40:20.161 36000 TIP 435551 21400 6036974 2024-02-22 21:41:21.513 2024-02-22 21:41:21.513 1000 FEE 435551 4074 6036975 2024-02-22 21:41:21.513 2024-02-22 21:41:21.513 9000 TIP 435551 19259 6036997 2024-02-22 21:43:05.736 2024-02-22 21:43:05.736 1000 FEE 435558 16954 6036998 2024-02-22 21:43:08.077 2024-02-22 21:43:08.077 10000 FEE 435328 20409 6036999 2024-02-22 21:43:08.077 2024-02-22 21:43:08.077 90000 TIP 435328 16747 6037002 2024-02-22 21:43:33.752 2024-02-22 21:43:33.752 100 FEE 435242 9992 6037003 2024-02-22 21:43:33.752 2024-02-22 21:43:33.752 900 TIP 435242 20901 6037012 2024-02-22 21:44:24.827 2024-02-22 21:44:24.827 5000 FEE 434930 21072 6037013 2024-02-22 21:44:24.827 2024-02-22 21:44:24.827 45000 TIP 434930 20424 6037021 2024-02-22 21:45:16.759 2024-02-22 21:45:16.759 1000 FEE 435560 716 6037026 2024-02-22 21:46:50.013 2024-02-22 21:46:50.013 2000 FEE 435561 4035 6037027 2024-02-22 21:46:50.013 2024-02-22 21:46:50.013 18000 TIP 435561 10469 6037047 2024-02-22 21:50:34.003 2024-02-22 21:50:34.003 1000 FEE 435565 11678 6037051 2024-02-22 21:51:06.644 2024-02-22 21:51:06.644 1000 FEE 435566 11897 6037076 2024-02-22 21:53:11.413 2024-02-22 21:53:11.413 100 FEE 435401 9166 6037077 2024-02-22 21:53:11.413 2024-02-22 21:53:11.413 900 TIP 435401 21391 6037087 2024-02-22 21:53:20.315 2024-02-22 21:53:20.315 100 FEE 435382 5175 6037088 2024-02-22 21:53:20.315 2024-02-22 21:53:20.315 900 TIP 435382 854 6037091 2024-02-22 21:53:23.206 2024-02-22 21:53:23.206 9000 FEE 435382 656 6037092 2024-02-22 21:53:23.206 2024-02-22 21:53:23.206 81000 TIP 435382 20301 6037097 2024-02-22 21:53:28.717 2024-02-22 21:53:28.717 9000 FEE 435378 19663 6037098 2024-02-22 21:53:28.717 2024-02-22 21:53:28.717 81000 TIP 435378 17103 6037110 2024-02-22 21:54:44.789 2024-02-22 21:54:44.789 1000 FEE 435572 12139 6037174 2024-02-22 21:55:44.079 2024-02-22 21:55:44.079 2300 FEE 435497 5761 6037175 2024-02-22 21:55:44.079 2024-02-22 21:55:44.079 20700 TIP 435497 3392 6037180 2024-02-22 21:55:44.605 2024-02-22 21:55:44.605 2300 FEE 435497 19524 6037181 2024-02-22 21:55:44.605 2024-02-22 21:55:44.605 20700 TIP 435497 15925 6037184 2024-02-22 21:55:44.963 2024-02-22 21:55:44.963 2300 FEE 435497 4166 6037185 2024-02-22 21:55:44.963 2024-02-22 21:55:44.963 20700 TIP 435497 18177 6037216 2024-02-22 21:56:57.337 2024-02-22 21:56:57.337 2100 FEE 435342 19507 6037217 2024-02-22 21:56:57.337 2024-02-22 21:56:57.337 18900 TIP 435342 19263 6037222 2024-02-22 21:58:05.918 2024-02-22 21:58:05.918 2100 FEE 434874 20623 6037223 2024-02-22 21:58:05.918 2024-02-22 21:58:05.918 18900 TIP 434874 13927 6037225 2024-02-22 21:58:54.042 2024-02-22 21:58:54.042 1000 FEE 435575 1881 6037255 2024-02-22 22:05:03.842 2024-02-22 22:05:03.842 3000 FEE 435526 19018 6037256 2024-02-22 22:05:03.842 2024-02-22 22:05:03.842 27000 TIP 435526 1632 6037257 2024-02-22 22:05:20.766 2024-02-22 22:05:20.766 3000 FEE 435545 20464 6037258 2024-02-22 22:05:20.766 2024-02-22 22:05:20.766 27000 TIP 435545 1221 6037286 2024-02-22 22:07:20.409 2024-02-22 22:07:20.409 1000 POLL 435516 20006 6037308 2024-02-22 22:08:13.177 2024-02-22 22:08:13.177 9000 FEE 435577 9833 6037309 2024-02-22 22:08:13.177 2024-02-22 22:08:13.177 81000 TIP 435577 21238 6037310 2024-02-22 22:08:26.881 2024-02-22 22:08:26.881 1000 FEE 435584 17042 6037324 2024-02-22 22:10:17.961 2024-02-22 22:10:17.961 1000 FEE 435588 997 6037330 2024-02-22 22:10:37.71 2024-02-22 22:10:37.71 100 FEE 435314 21472 6037331 2024-02-22 22:10:37.71 2024-02-22 22:10:37.71 900 TIP 435314 1120 6037340 2024-02-22 22:11:43.248 2024-02-22 22:11:43.248 0 FEE 435589 12265 6037412 2024-02-22 22:17:03.852 2024-02-22 22:17:03.852 100 FEE 435594 6160 6037413 2024-02-22 22:17:03.852 2024-02-22 22:17:03.852 900 TIP 435594 715 6037420 2024-02-22 22:17:34.726 2024-02-22 22:17:34.726 100 FEE 435578 17446 6037421 2024-02-22 22:17:34.726 2024-02-22 22:17:34.726 900 TIP 435578 15266 6037426 2024-02-22 22:17:35.588 2024-02-22 22:17:35.588 100 FEE 435578 11897 6037427 2024-02-22 22:17:35.588 2024-02-22 22:17:35.588 900 TIP 435578 5444 6037458 2024-02-22 22:21:52.228 2024-02-22 22:21:52.228 100 FEE 435582 14385 6037459 2024-02-22 22:21:52.228 2024-02-22 22:21:52.228 900 TIP 435582 2016 6037470 2024-02-22 22:21:54.942 2024-02-22 22:21:54.942 100 FEE 435582 17042 6037471 2024-02-22 22:21:54.942 2024-02-22 22:21:54.942 900 TIP 435582 17522 6037476 2024-02-22 22:21:55.768 2024-02-22 22:21:55.768 100 FEE 435582 17217 6037477 2024-02-22 22:21:55.768 2024-02-22 22:21:55.768 900 TIP 435582 21356 6037484 2024-02-22 22:22:54.774 2024-02-22 22:22:54.774 1000 FEE 435607 9450 6037505 2024-02-22 22:28:13.046 2024-02-22 22:28:13.046 0 FEE 435610 20137 6037508 2024-02-22 22:28:48.451 2024-02-22 22:28:48.451 1000 FEE 435612 21599 6037510 2024-02-22 22:28:53.254 2024-02-22 22:28:53.254 1000 FEE 435497 10112 6037511 2024-02-22 22:28:53.254 2024-02-22 22:28:53.254 9000 TIP 435497 16052 6037529 2024-02-22 22:33:03.884 2024-02-22 22:33:03.884 0 FEE 435610 2390 6037540 2024-02-22 22:34:40.288 2024-02-22 22:34:40.288 100 FEE 435608 6526 6037541 2024-02-22 22:34:40.288 2024-02-22 22:34:40.288 900 TIP 435608 4831 6037551 2024-02-22 22:36:10.945 2024-02-22 22:36:10.945 10000 FEE 435328 18124 6037552 2024-02-22 22:36:10.945 2024-02-22 22:36:10.945 90000 TIP 435328 19777 6037569 2024-02-22 22:39:27.915 2024-02-22 22:39:27.915 1000 FEE 435457 14651 6037570 2024-02-22 22:39:27.915 2024-02-22 22:39:27.915 9000 TIP 435457 21194 6037590 2024-02-22 22:43:26.13 2024-02-22 22:43:26.13 2100 FEE 435551 2961 6037591 2024-02-22 22:43:26.13 2024-02-22 22:43:26.13 18900 TIP 435551 17519 6037623 2024-02-22 22:43:47.695 2024-02-22 22:43:47.695 2100 FEE 435458 10096 6037624 2024-02-22 22:43:47.695 2024-02-22 22:43:47.695 18900 TIP 435458 11515 6037642 2024-02-22 22:44:06.001 2024-02-22 22:44:06.001 12800 FEE 435619 20185 6037643 2024-02-22 22:44:06.001 2024-02-22 22:44:06.001 115200 TIP 435619 14950 6037644 2024-02-22 22:44:08.667 2024-02-22 22:44:08.667 90000 FEE 435261 18919 6037645 2024-02-22 22:44:08.667 2024-02-22 22:44:08.667 810000 TIP 435261 12245 6037652 2024-02-22 22:44:40.843 2024-02-22 22:44:40.843 100 FEE 435580 1092 6037653 2024-02-22 22:44:40.843 2024-02-22 22:44:40.843 900 TIP 435580 21157 6037654 2024-02-22 22:44:40.895 2024-02-22 22:44:40.895 900 FEE 435580 1552 6031003 2024-02-22 11:36:17.428 2024-02-22 11:36:17.428 1000 FEE 434844 14213 6031017 2024-02-22 11:38:44.853 2024-02-22 11:38:44.853 10000 FEE 434846 9167 6031022 2024-02-22 11:40:22.449 2024-02-22 11:40:22.449 0 FEE 434844 9433 6031023 2024-02-22 11:40:48.898 2024-02-22 11:40:48.898 1000 FEE 434816 20904 6031024 2024-02-22 11:40:48.898 2024-02-22 11:40:48.898 9000 TIP 434816 18378 6031030 2024-02-22 11:44:09.647 2024-02-22 11:44:09.647 2100 FEE 431714 18409 6031031 2024-02-22 11:44:09.647 2024-02-22 11:44:09.647 18900 TIP 431714 18769 6031054 2024-02-22 11:54:53.709 2024-02-22 11:54:53.709 2100 FEE 434845 17109 6031055 2024-02-22 11:54:53.709 2024-02-22 11:54:53.709 18900 TIP 434845 21522 6031068 2024-02-22 11:57:32.304 2024-02-22 11:57:32.304 2200 FEE 434829 5746 6031069 2024-02-22 11:57:32.304 2024-02-22 11:57:32.304 19800 TIP 434829 20606 6031087 2024-02-22 12:00:20.496 2024-02-22 12:00:20.496 1000 FEE 434862 19980 6031105 2024-02-22 12:01:54.403 2024-02-22 12:01:54.403 1000 FEE 434820 634 6031106 2024-02-22 12:01:54.403 2024-02-22 12:01:54.403 9000 TIP 434820 21131 6031111 2024-02-22 12:01:59.967 2024-02-22 12:01:59.967 0 FEE 434858 7583 6031120 2024-02-22 12:02:36.415 2024-02-22 12:02:36.415 100 FEE 434274 21047 6031121 2024-02-22 12:02:36.415 2024-02-22 12:02:36.415 900 TIP 434274 20837 6031122 2024-02-22 12:02:36.847 2024-02-22 12:02:36.847 100 FEE 434274 20715 6031123 2024-02-22 12:02:36.847 2024-02-22 12:02:36.847 900 TIP 434274 1817 6031131 2024-02-22 12:04:12.074 2024-02-22 12:04:12.074 0 FEE 434858 5728 6031135 2024-02-22 12:04:38.204 2024-02-22 12:04:38.204 1000 FEE 434868 5590 6031154 2024-02-22 12:07:29.741 2024-02-22 12:07:29.741 0 FEE 434871 1010 6031162 2024-02-22 12:10:13.617 2024-02-22 12:10:13.617 0 FEE 434871 15806 6031167 2024-02-22 12:12:57.532 2024-02-22 12:12:57.532 1100 FEE 434872 20106 6031168 2024-02-22 12:12:57.532 2024-02-22 12:12:57.532 9900 TIP 434872 1162 6031185 2024-02-22 12:13:46.606 2024-02-22 12:13:46.606 1000 FEE 434874 663 6031191 2024-02-22 12:13:55.252 2024-02-22 12:13:55.252 1100 FEE 434865 21588 6031192 2024-02-22 12:13:55.252 2024-02-22 12:13:55.252 9900 TIP 434865 20102 6031201 2024-02-22 12:17:59.447 2024-02-22 12:17:59.447 1100 FEE 434837 21263 6031202 2024-02-22 12:17:59.447 2024-02-22 12:17:59.447 9900 TIP 434837 14785 6031207 2024-02-22 12:19:23.128 2024-02-22 12:19:23.128 1000 FEE 434881 16542 6031213 2024-02-22 12:21:21.828 2024-02-22 12:21:21.828 1000 FEE 434883 713 6031225 2024-02-22 12:25:16.663 2024-02-22 12:25:16.663 1100 FEE 434884 21453 6031226 2024-02-22 12:25:16.663 2024-02-22 12:25:16.663 9900 TIP 434884 19142 6031252 2024-02-22 12:28:29.014 2024-02-22 12:28:29.014 1000 FEE 434892 7869 6031264 2024-02-22 12:29:17.804 2024-02-22 12:29:17.804 2100 FEE 434877 16536 6031265 2024-02-22 12:29:17.804 2024-02-22 12:29:17.804 18900 TIP 434877 21614 6031285 2024-02-22 12:31:20.61 2024-02-22 12:31:20.61 1100 FEE 434642 2195 6031286 2024-02-22 12:31:20.61 2024-02-22 12:31:20.61 9900 TIP 434642 9969 6031337 2024-02-22 12:43:25.639 2024-02-22 12:43:25.639 4200 FEE 434665 17568 6031338 2024-02-22 12:43:25.639 2024-02-22 12:43:25.639 37800 TIP 434665 7978 6031358 2024-02-22 12:47:38.059 2024-02-22 12:47:38.059 2000 FEE 434899 16649 6031359 2024-02-22 12:47:38.059 2024-02-22 12:47:38.059 18000 TIP 434899 6041 6031404 2024-02-22 12:54:17.055 2024-02-22 12:54:17.055 1100 FEE 434631 4624 6031405 2024-02-22 12:54:17.055 2024-02-22 12:54:17.055 9900 TIP 434631 8544 6031409 2024-02-22 12:54:31.347 2024-02-22 12:54:31.347 1100 FEE 434631 20490 6031410 2024-02-22 12:54:31.347 2024-02-22 12:54:31.347 9900 TIP 434631 632 6031411 2024-02-22 12:54:32.381 2024-02-22 12:54:32.381 1100 FEE 434631 7978 6031412 2024-02-22 12:54:32.381 2024-02-22 12:54:32.381 9900 TIP 434631 12738 6031420 2024-02-22 12:55:20.506 2024-02-22 12:55:20.506 10000 FEE 434888 994 6031421 2024-02-22 12:55:20.506 2024-02-22 12:55:20.506 90000 TIP 434888 861 6031422 2024-02-22 12:55:40.551 2024-02-22 12:55:40.551 1100 FEE 434916 1471 6031423 2024-02-22 12:55:40.551 2024-02-22 12:55:40.551 9900 TIP 434916 21044 6031442 2024-02-22 12:58:07.69 2024-02-22 12:58:07.69 1000 FEE 434898 13169 6031443 2024-02-22 12:58:07.69 2024-02-22 12:58:07.69 9000 TIP 434898 11999 6031444 2024-02-22 12:58:27.066 2024-02-22 12:58:27.066 10000 FEE 434905 17321 6031445 2024-02-22 12:58:27.066 2024-02-22 12:58:27.066 90000 TIP 434905 7992 6031447 2024-02-22 12:58:49.079 2024-02-22 12:58:49.079 4200 FEE 434488 16432 6031448 2024-02-22 12:58:49.079 2024-02-22 12:58:49.079 37800 TIP 434488 8535 6031456 2024-02-22 13:00:00.366 2024-02-22 13:00:00.366 1000 FEE 429227 12516 6031457 2024-02-22 13:00:00.366 2024-02-22 13:00:00.366 9000 TIP 429227 997 6031462 2024-02-22 13:00:26.687 2024-02-22 13:00:26.687 0 FEE 434930 2780 6031507 2024-02-22 13:07:59.92 2024-02-22 13:07:59.92 900 FEE 434615 2204 6031508 2024-02-22 13:07:59.92 2024-02-22 13:07:59.92 8100 TIP 434615 3213 6031520 2024-02-22 13:08:12.65 2024-02-22 13:08:12.65 20000 FEE 433123 17041 6031521 2024-02-22 13:08:12.65 2024-02-22 13:08:12.65 180000 TIP 433123 999 6031570 2024-02-22 13:11:07.362 2024-02-22 13:11:07.362 100 FEE 434703 826 6031571 2024-02-22 13:11:07.362 2024-02-22 13:11:07.362 900 TIP 434703 10818 6031576 2024-02-22 13:11:40.489 2024-02-22 13:11:40.489 900 FEE 434722 2844 6031577 2024-02-22 13:11:40.489 2024-02-22 13:11:40.489 8100 TIP 434722 17710 6031588 2024-02-22 13:12:46.36 2024-02-22 13:12:46.36 100 FEE 434838 15119 6031589 2024-02-22 13:12:46.36 2024-02-22 13:12:46.36 900 TIP 434838 7376 6031594 2024-02-22 13:13:35.862 2024-02-22 13:13:35.862 1000 FEE 434943 1124 6031604 2024-02-22 13:16:31.912 2024-02-22 13:16:31.912 1000 FEE 434944 9333 6031619 2024-02-22 13:20:32.122 2024-02-22 13:20:32.122 2000 FEE 434947 5308 6031640 2024-02-22 13:23:18.71 2024-02-22 13:23:18.71 1000 FEE 434951 14705 6031659 2024-02-22 13:29:14.216 2024-02-22 13:29:14.216 2100 FEE 434807 1488 6031660 2024-02-22 13:29:14.216 2024-02-22 13:29:14.216 18900 TIP 434807 21178 6031695 2024-02-22 13:30:38.825 2024-02-22 13:30:38.825 3200 FEE 434955 1389 6031696 2024-02-22 13:30:38.825 2024-02-22 13:30:38.825 28800 TIP 434955 18556 6031725 2024-02-22 13:34:21.035 2024-02-22 13:34:21.035 1000 FEE 434965 2367 6031732 2024-02-22 13:35:24.608 2024-02-22 13:35:24.608 2100 FEE 434902 15662 6031733 2024-02-22 13:35:24.608 2024-02-22 13:35:24.608 18900 TIP 434902 5455 6031751 2024-02-22 13:35:36.585 2024-02-22 13:35:36.585 2100 FEE 434797 12261 6031752 2024-02-22 13:35:36.585 2024-02-22 13:35:36.585 18900 TIP 434797 5746 6031780 2024-02-22 13:36:20.684 2024-02-22 13:36:20.684 10000 FEE 434227 27 6031781 2024-02-22 13:36:20.684 2024-02-22 13:36:20.684 90000 TIP 434227 20924 6031846 2024-02-22 13:41:05.698 2024-02-22 13:41:05.698 1300 FEE 434542 18743 6031847 2024-02-22 13:41:05.698 2024-02-22 13:41:05.698 11700 TIP 434542 1094 6031852 2024-02-22 13:41:18.461 2024-02-22 13:41:18.461 11000 FEE 434973 18581 6031854 2024-02-22 13:41:59.557 2024-02-22 13:41:59.557 2100 FEE 434837 880 6031855 2024-02-22 13:41:59.557 2024-02-22 13:41:59.557 18900 TIP 434837 5487 6031856 2024-02-22 13:42:02.355 2024-02-22 13:42:02.355 2100 FEE 434827 5487 6031857 2024-02-22 13:42:02.355 2024-02-22 13:42:02.355 18900 TIP 434827 9418 6031035 2024-02-22 11:46:02.821 2024-02-22 11:46:02.821 1000 STREAM 141924 8535 6036776 2024-02-22 21:15:50.812 2024-02-22 21:15:50.812 1000 FEE 435535 14074 6036782 2024-02-22 21:16:18.274 2024-02-22 21:16:18.274 1000 FEE 435536 4798 6036789 2024-02-22 21:16:31.919 2024-02-22 21:16:31.919 3300 FEE 435129 8385 6036790 2024-02-22 21:16:31.919 2024-02-22 21:16:31.919 29700 TIP 435129 19458 6036791 2024-02-22 21:16:38.819 2024-02-22 21:16:38.819 2100 FEE 435100 9843 6036792 2024-02-22 21:16:38.819 2024-02-22 21:16:38.819 18900 TIP 435100 19038 6036793 2024-02-22 21:16:42.93 2024-02-22 21:16:42.93 2100 FEE 435375 837 6036794 2024-02-22 21:16:42.93 2024-02-22 21:16:42.93 18900 TIP 435375 20781 6036796 2024-02-22 21:16:50.537 2024-02-22 21:16:50.537 1000 FEE 435538 8045 6036800 2024-02-22 21:18:03.077 2024-02-22 21:18:03.077 100 FEE 435496 11158 6036801 2024-02-22 21:18:03.077 2024-02-22 21:18:03.077 900 TIP 435496 12049 6036828 2024-02-22 21:22:25.085 2024-02-22 21:22:25.085 1000 POLL 435516 6030 6036839 2024-02-22 21:23:00.052 2024-02-22 21:23:00.052 10000 FEE 435542 759 6036847 2024-02-22 21:23:28.607 2024-02-22 21:23:28.607 2100 FEE 97082 16149 6036848 2024-02-22 21:23:28.607 2024-02-22 21:23:28.607 18900 TIP 97082 15697 6036867 2024-02-22 21:27:31 2024-02-22 21:27:31 2100 FEE 435458 10690 6036868 2024-02-22 21:27:31 2024-02-22 21:27:31 18900 TIP 435458 12097 6036911 2024-02-22 21:33:22.981 2024-02-22 21:33:22.981 2500 FEE 435046 20377 6036912 2024-02-22 21:33:22.981 2024-02-22 21:33:22.981 22500 TIP 435046 11678 6036927 2024-02-22 21:35:43.628 2024-02-22 21:35:43.628 5000 FEE 435522 20187 6036928 2024-02-22 21:35:43.628 2024-02-22 21:35:43.628 45000 TIP 435522 12097 6036979 2024-02-22 21:42:16.936 2024-02-22 21:42:16.936 2100 FEE 435493 9356 6036980 2024-02-22 21:42:16.936 2024-02-22 21:42:16.936 18900 TIP 435493 12175 6037000 2024-02-22 21:43:13.51 2024-02-22 21:43:13.51 1000 FEE 435353 20254 6037001 2024-02-22 21:43:13.51 2024-02-22 21:43:13.51 9000 TIP 435353 3683 6037018 2024-02-22 21:44:40.855 2024-02-22 21:44:40.855 100 FEE 434975 7978 6037019 2024-02-22 21:44:40.855 2024-02-22 21:44:40.855 900 TIP 434975 20642 6037046 2024-02-22 21:50:18.025 2024-02-22 21:50:18.025 100000 FEE 435564 19992 6037072 2024-02-22 21:53:07.627 2024-02-22 21:53:07.627 1000 FEE 435516 2013 6037073 2024-02-22 21:53:07.627 2024-02-22 21:53:07.627 9000 TIP 435516 19398 6037083 2024-02-22 21:53:16.382 2024-02-22 21:53:16.382 100 FEE 435396 6041 6037084 2024-02-22 21:53:16.382 2024-02-22 21:53:16.382 900 TIP 435396 19449 6037111 2024-02-22 21:54:46.31 2024-02-22 21:54:46.31 8300 FEE 435497 21247 6037112 2024-02-22 21:54:46.31 2024-02-22 21:54:46.31 74700 TIP 435497 21501 6037128 2024-02-22 21:55:39.211 2024-02-22 21:55:39.211 2300 FEE 435497 21218 6037129 2024-02-22 21:55:39.211 2024-02-22 21:55:39.211 20700 TIP 435497 13575 6037142 2024-02-22 21:55:40.818 2024-02-22 21:55:40.818 2300 FEE 435497 837 6037143 2024-02-22 21:55:40.818 2024-02-22 21:55:40.818 20700 TIP 435497 17494 6037150 2024-02-22 21:55:41.934 2024-02-22 21:55:41.934 2300 FEE 435497 5779 6037151 2024-02-22 21:55:41.934 2024-02-22 21:55:41.934 20700 TIP 435497 9809 6037152 2024-02-22 21:55:42.123 2024-02-22 21:55:42.123 2300 FEE 435497 18378 6037153 2024-02-22 21:55:42.123 2024-02-22 21:55:42.123 20700 TIP 435497 16348 6037160 2024-02-22 21:55:42.67 2024-02-22 21:55:42.67 2300 FEE 435497 5779 6037161 2024-02-22 21:55:42.67 2024-02-22 21:55:42.67 20700 TIP 435497 16638 6037234 2024-02-22 22:01:34.112 2024-02-22 22:01:34.112 10000 FEE 435521 15549 6037235 2024-02-22 22:01:34.112 2024-02-22 22:01:34.112 90000 TIP 435521 7847 6037275 2024-02-22 22:06:58.57 2024-02-22 22:06:58.57 100 FEE 435575 956 6037276 2024-02-22 22:06:58.57 2024-02-22 22:06:58.57 900 TIP 435575 21201 6037288 2024-02-22 22:07:59.496 2024-02-22 22:07:59.496 100 FEE 435558 1611 6037289 2024-02-22 22:07:59.496 2024-02-22 22:07:59.496 900 TIP 435558 16347 6037290 2024-02-22 22:08:00.175 2024-02-22 22:08:00.175 100 FEE 435558 1195 6037291 2024-02-22 22:08:00.175 2024-02-22 22:08:00.175 900 TIP 435558 3683 6037302 2024-02-22 22:08:09.1 2024-02-22 22:08:09.1 900 FEE 435577 1195 6037303 2024-02-22 22:08:09.1 2024-02-22 22:08:09.1 8100 TIP 435577 13216 6037312 2024-02-22 22:08:53.608 2024-02-22 22:08:53.608 1000 FEE 435573 21619 6037313 2024-02-22 22:08:53.608 2024-02-22 22:08:53.608 9000 TIP 435573 1705 6037332 2024-02-22 22:10:38.705 2024-02-22 22:10:38.705 900 FEE 435314 19852 6037333 2024-02-22 22:10:38.705 2024-02-22 22:10:38.705 8100 TIP 435314 17001 6037341 2024-02-22 22:11:49.393 2024-02-22 22:11:49.393 1000 FEE 435591 21172 6037361 2024-02-22 22:12:14.044 2024-02-22 22:12:14.044 8300 FEE 435551 19810 6037362 2024-02-22 22:12:14.044 2024-02-22 22:12:14.044 74700 TIP 435551 16485 6037368 2024-02-22 22:14:03.369 2024-02-22 22:14:03.369 1000 FEE 435593 670 6037369 2024-02-22 22:14:07.645 2024-02-22 22:14:07.645 10000 FEE 435551 18372 6037370 2024-02-22 22:14:07.645 2024-02-22 22:14:07.645 90000 TIP 435551 9109 6037375 2024-02-22 22:15:13.009 2024-02-22 22:15:13.009 1000 FEE 435594 691 6037376 2024-02-22 22:15:23.895 2024-02-22 22:15:23.895 1000 FEE 435595 14941 6037403 2024-02-22 22:16:35.134 2024-02-22 22:16:35.134 3000 FEE 435541 4292 6037404 2024-02-22 22:16:35.134 2024-02-22 22:16:35.134 27000 TIP 435541 17535 6037405 2024-02-22 22:16:56.079 2024-02-22 22:16:56.079 100 FEE 435594 21042 6037406 2024-02-22 22:16:56.079 2024-02-22 22:16:56.079 900 TIP 435594 14385 6037422 2024-02-22 22:17:34.938 2024-02-22 22:17:34.938 100 FEE 435578 10591 6037423 2024-02-22 22:17:34.938 2024-02-22 22:17:34.938 900 TIP 435578 4521 6037437 2024-02-22 22:17:46.873 2024-02-22 22:17:46.873 100 FEE 435571 17455 6037438 2024-02-22 22:17:46.873 2024-02-22 22:17:46.873 900 TIP 435571 10530 6037439 2024-02-22 22:17:47.064 2024-02-22 22:17:47.064 900 FEE 435571 17827 6037440 2024-02-22 22:17:47.064 2024-02-22 22:17:47.064 8100 TIP 435571 15239 6037441 2024-02-22 22:17:47.436 2024-02-22 22:17:47.436 9000 FEE 435571 20687 6037442 2024-02-22 22:17:47.436 2024-02-22 22:17:47.436 81000 TIP 435571 2596 6037468 2024-02-22 22:21:54.749 2024-02-22 22:21:54.749 100 FEE 435582 8535 6037469 2024-02-22 22:21:54.749 2024-02-22 22:21:54.749 900 TIP 435582 6533 6037480 2024-02-22 22:22:12.818 2024-02-22 22:22:12.818 3000 FEE 435600 19507 6037481 2024-02-22 22:22:12.818 2024-02-22 22:22:12.818 27000 TIP 435600 19806 6037509 2024-02-22 22:28:48.707 2024-02-22 22:28:48.707 1000 FEE 435613 4313 6037514 2024-02-22 22:28:58.488 2024-02-22 22:28:58.488 1000 FEE 435457 5829 6037515 2024-02-22 22:28:58.488 2024-02-22 22:28:58.488 9000 TIP 435457 16214 6037576 2024-02-22 22:40:28.098 2024-02-22 22:40:28.098 0 FEE 435619 17237 6037599 2024-02-22 22:43:30.644 2024-02-22 22:43:30.644 2100 FEE 435328 4802 6037600 2024-02-22 22:43:30.644 2024-02-22 22:43:30.644 18900 TIP 435328 11443 6037621 2024-02-22 22:43:46.85 2024-02-22 22:43:46.85 2100 FEE 435458 21614 6037622 2024-02-22 22:43:46.85 2024-02-22 22:43:46.85 18900 TIP 435458 13100 6037634 2024-02-22 22:43:59.335 2024-02-22 22:43:59.335 4200 FEE 435402 6327 6037635 2024-02-22 22:43:59.335 2024-02-22 22:43:59.335 37800 TIP 435402 6160 6037638 2024-02-22 22:44:00.241 2024-02-22 22:44:00.241 2100 FEE 435402 13399 6037639 2024-02-22 22:44:00.241 2024-02-22 22:44:00.241 18900 TIP 435402 21457 6037670 2024-02-22 22:45:41.955 2024-02-22 22:45:41.955 3300 FEE 435288 651 6037671 2024-02-22 22:45:41.955 2024-02-22 22:45:41.955 29700 TIP 435288 19843 6037680 2024-02-22 22:45:56.874 2024-02-22 22:45:56.874 2100 FEE 435046 18897 6037681 2024-02-22 22:45:56.874 2024-02-22 22:45:56.874 18900 TIP 435046 2101 6037686 2024-02-22 22:45:57.542 2024-02-22 22:45:57.542 2100 FEE 435046 20560 6037687 2024-02-22 22:45:57.542 2024-02-22 22:45:57.542 18900 TIP 435046 19329 6037693 2024-02-22 22:46:39.562 2024-02-22 22:46:39.562 0 FEE 435619 5942 6037703 2024-02-22 22:47:03.612 2024-02-22 22:47:03.612 0 FEE 435619 19815 6037710 2024-02-22 22:47:09.086 2024-02-22 22:47:09.086 2100 FEE 434813 10690 6037711 2024-02-22 22:47:09.086 2024-02-22 22:47:09.086 18900 TIP 434813 14950 6037738 2024-02-22 22:47:37.197 2024-02-22 22:47:37.197 2100 FEE 435217 738 6031037 2024-02-22 11:48:02.507 2024-02-22 11:48:02.507 1000 STREAM 141924 15463 6031040 2024-02-22 11:50:02.544 2024-02-22 11:50:02.544 1000 STREAM 141924 2000 6031042 2024-02-22 11:51:02.511 2024-02-22 11:51:02.511 1000 STREAM 141924 11996 6031047 2024-02-22 11:53:02.539 2024-02-22 11:53:02.539 1000 STREAM 141924 20825 6031066 2024-02-22 11:57:02.555 2024-02-22 11:57:02.555 1000 STREAM 141924 4459 6031073 2024-02-22 11:58:02.559 2024-02-22 11:58:02.559 1000 STREAM 141924 1571 6031078 2024-02-22 11:59:02.558 2024-02-22 11:59:02.558 1000 STREAM 141924 14308 6031083 2024-02-22 12:00:02.601 2024-02-22 12:00:02.601 1000 STREAM 141924 2056 6031112 2024-02-22 12:02:02.573 2024-02-22 12:02:02.573 1000 STREAM 141924 5761 6031127 2024-02-22 12:03:02.587 2024-02-22 12:03:02.587 1000 STREAM 141924 2326 6031145 2024-02-22 12:05:02.584 2024-02-22 12:05:02.584 1000 STREAM 141924 21453 6031159 2024-02-22 12:10:02.632 2024-02-22 12:10:02.632 1000 STREAM 141924 5017 6036833 2024-02-22 21:22:35.512 2024-02-22 21:22:35.512 100 FEE 435528 16842 6036834 2024-02-22 21:22:35.512 2024-02-22 21:22:35.512 900 TIP 435528 21509 6036843 2024-02-22 21:23:12.645 2024-02-22 21:23:12.645 1000 FEE 435384 14213 6036844 2024-02-22 21:23:12.645 2024-02-22 21:23:12.645 9000 TIP 435384 1136 6036855 2024-02-22 21:23:36.602 2024-02-22 21:23:36.602 1000 POLL 435495 18177 6036897 2024-02-22 21:32:10.776 2024-02-22 21:32:10.776 1000 FEE 435159 1141 6036898 2024-02-22 21:32:10.776 2024-02-22 21:32:10.776 9000 TIP 435159 20861 6036909 2024-02-22 21:33:22.577 2024-02-22 21:33:22.577 2500 FEE 435046 18731 6036910 2024-02-22 21:33:22.577 2024-02-22 21:33:22.577 22500 TIP 435046 733 6036949 2024-02-22 21:39:03.081 2024-02-22 21:39:03.081 1000 FEE 435552 18837 6036968 2024-02-22 21:40:37.894 2024-02-22 21:40:37.894 3300 FEE 435217 20157 6036969 2024-02-22 21:40:37.894 2024-02-22 21:40:37.894 29700 TIP 435217 18119 6036981 2024-02-22 21:42:20.321 2024-02-22 21:42:20.321 100000 FEE 435557 20636 6036984 2024-02-22 21:42:33.145 2024-02-22 21:42:33.145 100 FEE 435328 17541 6036985 2024-02-22 21:42:33.145 2024-02-22 21:42:33.145 900 TIP 435328 2431 6036992 2024-02-22 21:42:49.048 2024-02-22 21:42:49.048 100 FEE 435231 1983 6036993 2024-02-22 21:42:49.048 2024-02-22 21:42:49.048 900 TIP 435231 17570 6037014 2024-02-22 21:44:24.912 2024-02-22 21:44:24.912 5000 FEE 434915 11885 6037015 2024-02-22 21:44:24.912 2024-02-22 21:44:24.912 45000 TIP 434915 16126 6037025 2024-02-22 21:46:33.813 2024-02-22 21:46:33.813 1000 FEE 435561 12220 6037032 2024-02-22 21:47:02.092 2024-02-22 21:47:02.092 1000 FEE 435417 20981 6037033 2024-02-22 21:47:02.092 2024-02-22 21:47:02.092 9000 TIP 435417 17944 6037035 2024-02-22 21:47:19.999 2024-02-22 21:47:19.999 1000 FEE 435562 9494 6037054 2024-02-22 21:51:42.381 2024-02-22 21:51:42.381 1000 FEE 435568 21343 6037067 2024-02-22 21:53:03.123 2024-02-22 21:53:03.123 9000 FEE 435520 19021 6037068 2024-02-22 21:53:03.123 2024-02-22 21:53:03.123 81000 TIP 435520 21218 6037099 2024-02-22 21:53:33.637 2024-02-22 21:53:33.637 100 FEE 435272 20143 6037100 2024-02-22 21:53:33.637 2024-02-22 21:53:33.637 900 TIP 435272 15337 6037116 2024-02-22 21:55:37.15 2024-02-22 21:55:37.15 2300 FEE 435497 14909 6037117 2024-02-22 21:55:37.15 2024-02-22 21:55:37.15 20700 TIP 435497 21003 6037124 2024-02-22 21:55:38.844 2024-02-22 21:55:38.844 2300 FEE 435497 721 6037125 2024-02-22 21:55:38.844 2024-02-22 21:55:38.844 20700 TIP 435497 897 6037134 2024-02-22 21:55:39.663 2024-02-22 21:55:39.663 2300 FEE 435497 21349 6037135 2024-02-22 21:55:39.663 2024-02-22 21:55:39.663 20700 TIP 435497 19924 6037154 2024-02-22 21:55:42.288 2024-02-22 21:55:42.288 2300 FEE 435497 20287 6037155 2024-02-22 21:55:42.288 2024-02-22 21:55:42.288 20700 TIP 435497 1195 6037158 2024-02-22 21:55:42.489 2024-02-22 21:55:42.489 2300 FEE 435497 21281 6037159 2024-02-22 21:55:42.489 2024-02-22 21:55:42.489 20700 TIP 435497 18500 6037188 2024-02-22 21:55:45.308 2024-02-22 21:55:45.308 2300 FEE 435497 623 6037189 2024-02-22 21:55:45.308 2024-02-22 21:55:45.308 20700 TIP 435497 5427 6037198 2024-02-22 21:55:46.624 2024-02-22 21:55:46.624 2300 FEE 435497 1833 6037199 2024-02-22 21:55:46.624 2024-02-22 21:55:46.624 20700 TIP 435497 3709 6037202 2024-02-22 21:55:47.444 2024-02-22 21:55:47.444 2300 FEE 435497 19105 6037203 2024-02-22 21:55:47.444 2024-02-22 21:55:47.444 20700 TIP 435497 21145 6037214 2024-02-22 21:56:46.149 2024-02-22 21:56:46.149 2100 FEE 435242 1611 6037215 2024-02-22 21:56:46.149 2024-02-22 21:56:46.149 18900 TIP 435242 7376 6037230 2024-02-22 22:00:08.028 2024-02-22 22:00:08.028 7000 FEE 435576 21216 6037231 2024-02-22 22:00:28.085 2024-02-22 22:00:28.085 10000 FEE 435577 16753 6037259 2024-02-22 22:05:25.552 2024-02-22 22:05:25.552 3000 FEE 435547 1044 6037260 2024-02-22 22:05:25.552 2024-02-22 22:05:25.552 27000 TIP 435547 14545 6037271 2024-02-22 22:06:49.017 2024-02-22 22:06:49.017 1000 FEE 434837 18815 6037272 2024-02-22 22:06:49.017 2024-02-22 22:06:49.017 9000 TIP 434837 15103 6037287 2024-02-22 22:07:53.291 2024-02-22 22:07:53.291 1000 FEE 435582 21539 6037298 2024-02-22 22:08:02.988 2024-02-22 22:08:02.988 100 FEE 435558 7119 6037299 2024-02-22 22:08:02.988 2024-02-22 22:08:02.988 900 TIP 435558 8541 6037300 2024-02-22 22:08:08.909 2024-02-22 22:08:08.909 100 FEE 435577 15617 6037301 2024-02-22 22:08:08.909 2024-02-22 22:08:08.909 900 TIP 435577 11522 6037306 2024-02-22 22:08:12.216 2024-02-22 22:08:12.216 200 FEE 435565 19259 6037307 2024-02-22 22:08:12.216 2024-02-22 22:08:12.216 1800 TIP 435565 999 6037314 2024-02-22 22:09:02.336 2024-02-22 22:09:02.336 1000 FEE 435586 4177 6037318 2024-02-22 22:09:26.646 2024-02-22 22:09:26.646 10000 FEE 435328 987 6037319 2024-02-22 22:09:26.646 2024-02-22 22:09:26.646 90000 TIP 435328 7827 6037320 2024-02-22 22:09:35.307 2024-02-22 22:09:35.307 1000 FEE 435587 6191 6037336 2024-02-22 22:10:43.089 2024-02-22 22:10:43.089 27000 FEE 435217 14122 6037337 2024-02-22 22:10:43.089 2024-02-22 22:10:43.089 243000 TIP 435217 11776 6037353 2024-02-22 22:12:09.554 2024-02-22 22:12:09.554 1600 FEE 435577 9367 6037354 2024-02-22 22:12:09.554 2024-02-22 22:12:09.554 14400 TIP 435577 19809 6031038 2024-02-22 11:49:02.506 2024-02-22 11:49:02.506 1000 STREAM 141924 2844 6031046 2024-02-22 11:52:02.532 2024-02-22 11:52:02.532 1000 STREAM 141924 685 6031052 2024-02-22 11:54:02.531 2024-02-22 11:54:02.531 1000 STREAM 141924 20841 6031056 2024-02-22 11:55:02.538 2024-02-22 11:55:02.538 1000 STREAM 141924 20222 6031063 2024-02-22 11:56:02.544 2024-02-22 11:56:02.544 1000 STREAM 141924 20776 6031095 2024-02-22 12:01:02.574 2024-02-22 12:01:02.574 1000 STREAM 141924 11073 6031130 2024-02-22 12:04:02.582 2024-02-22 12:04:02.582 1000 STREAM 141924 21412 6031149 2024-02-22 12:06:02.605 2024-02-22 12:06:02.605 1000 STREAM 141924 18178 6031152 2024-02-22 12:07:02.6 2024-02-22 12:07:02.6 1000 STREAM 141924 2151 6031155 2024-02-22 12:08:02.602 2024-02-22 12:08:02.602 1000 STREAM 141924 20187 6031157 2024-02-22 12:09:02.622 2024-02-22 12:09:02.622 1000 STREAM 141924 20551 6031163 2024-02-22 12:11:02.625 2024-02-22 12:11:02.625 1000 STREAM 141924 14472 6036963 2024-02-22 21:39:58.314 2024-02-22 21:39:58.314 29700 TIP 435553 807 6036990 2024-02-22 21:42:45.551 2024-02-22 21:42:45.551 100 FEE 435261 21395 6036991 2024-02-22 21:42:45.551 2024-02-22 21:42:45.551 900 TIP 435261 20606 6037007 2024-02-22 21:44:11.817 2024-02-22 21:44:11.817 1000 FEE 435377 889 6037008 2024-02-22 21:44:11.817 2024-02-22 21:44:11.817 9000 TIP 435377 4128 6037028 2024-02-22 21:46:52.602 2024-02-22 21:46:52.602 2000 FEE 435561 9816 6037029 2024-02-22 21:46:52.602 2024-02-22 21:46:52.602 18000 TIP 435561 19471 6037030 2024-02-22 21:46:55.55 2024-02-22 21:46:55.55 2000 FEE 435561 12158 6037031 2024-02-22 21:46:55.55 2024-02-22 21:46:55.55 18000 TIP 435561 15690 6037055 2024-02-22 21:51:50.554 2024-02-22 21:51:50.554 1000 FEE 435569 18865 6037070 2024-02-22 21:53:07.221 2024-02-22 21:53:07.221 1000 FEE 435516 1320 6037071 2024-02-22 21:53:07.221 2024-02-22 21:53:07.221 9000 TIP 435516 674 6037095 2024-02-22 21:53:26.982 2024-02-22 21:53:26.982 900 FEE 435378 18220 6037096 2024-02-22 21:53:26.982 2024-02-22 21:53:26.982 8100 TIP 435378 4323 6037114 2024-02-22 21:55:09.484 2024-02-22 21:55:09.484 3000 FEE 435491 965 6037115 2024-02-22 21:55:09.484 2024-02-22 21:55:09.484 27000 TIP 435491 21323 6037118 2024-02-22 21:55:37.627 2024-02-22 21:55:37.627 2300 FEE 435497 20757 6037119 2024-02-22 21:55:37.627 2024-02-22 21:55:37.627 20700 TIP 435497 12160 6037122 2024-02-22 21:55:38.441 2024-02-22 21:55:38.441 9200 FEE 435497 16847 6037123 2024-02-22 21:55:38.441 2024-02-22 21:55:38.441 82800 TIP 435497 20299 6037126 2024-02-22 21:55:39.054 2024-02-22 21:55:39.054 2300 FEE 435497 8726 6037127 2024-02-22 21:55:39.054 2024-02-22 21:55:39.054 20700 TIP 435497 20778 6037138 2024-02-22 21:55:40.054 2024-02-22 21:55:40.054 2300 FEE 435497 17568 6037139 2024-02-22 21:55:40.054 2024-02-22 21:55:40.054 20700 TIP 435497 20409 6037146 2024-02-22 21:55:41.121 2024-02-22 21:55:41.121 2300 FEE 435497 17042 6037147 2024-02-22 21:55:41.121 2024-02-22 21:55:41.121 20700 TIP 435497 20594 6037162 2024-02-22 21:55:42.79 2024-02-22 21:55:42.79 2300 FEE 435497 4415 6037163 2024-02-22 21:55:42.79 2024-02-22 21:55:42.79 20700 TIP 435497 1135 6037204 2024-02-22 21:55:54.855 2024-02-22 21:55:54.855 2300 FEE 435551 2741 6037205 2024-02-22 21:55:54.855 2024-02-22 21:55:54.855 20700 TIP 435551 21218 6037206 2024-02-22 21:55:55.67 2024-02-22 21:55:55.67 2300 FEE 435551 19151 6037207 2024-02-22 21:55:55.67 2024-02-22 21:55:55.67 20700 TIP 435551 20993 6037208 2024-02-22 21:55:56.63 2024-02-22 21:55:56.63 2300 FEE 435551 2832 6037209 2024-02-22 21:55:56.63 2024-02-22 21:55:56.63 20700 TIP 435551 21274 6037212 2024-02-22 21:56:18.259 2024-02-22 21:56:18.259 2100 FEE 435569 18470 6037213 2024-02-22 21:56:18.259 2024-02-22 21:56:18.259 18900 TIP 435569 11395 6037249 2024-02-22 22:04:44.913 2024-02-22 22:04:44.913 0 FEE 435580 8037 6037252 2024-02-22 22:05:01.159 2024-02-22 22:05:01.159 27000 FEE 435504 3709 6037253 2024-02-22 22:05:01.159 2024-02-22 22:05:01.159 243000 TIP 435504 20636 6037277 2024-02-22 22:06:58.798 2024-02-22 22:06:58.798 100 FEE 435575 15226 6037278 2024-02-22 22:06:58.798 2024-02-22 22:06:58.798 900 TIP 435575 15094 6037281 2024-02-22 22:06:59.604 2024-02-22 22:06:59.604 100 FEE 435575 1326 6037282 2024-02-22 22:06:59.604 2024-02-22 22:06:59.604 900 TIP 435575 1713 6037292 2024-02-22 22:08:00.473 2024-02-22 22:08:00.473 1000 FEE 435583 1745 6037295 2024-02-22 22:08:01.771 2024-02-22 22:08:01.771 100 FEE 435558 9494 6037296 2024-02-22 22:08:01.771 2024-02-22 22:08:01.771 900 TIP 435558 18199 6037325 2024-02-22 22:10:23.536 2024-02-22 22:10:23.536 1000 POLL 435495 20036 6037349 2024-02-22 22:12:03.486 2024-02-22 22:12:03.486 8300 FEE 435579 16406 6037350 2024-02-22 22:12:03.486 2024-02-22 22:12:03.486 74700 TIP 435579 11038 6037351 2024-02-22 22:12:03.708 2024-02-22 22:12:03.708 8300 FEE 435579 21103 6037352 2024-02-22 22:12:03.708 2024-02-22 22:12:03.708 74700 TIP 435579 11240 6037366 2024-02-22 22:13:47.32 2024-02-22 22:13:47.32 1000 FEE 435592 16347 6037380 2024-02-22 22:15:42.823 2024-02-22 22:15:42.823 100000 FEE 435597 7395 6037387 2024-02-22 22:15:56.146 2024-02-22 22:15:56.146 3000 FEE 435569 6137 6037388 2024-02-22 22:15:56.146 2024-02-22 22:15:56.146 27000 TIP 435569 10102 6037392 2024-02-22 22:16:05.436 2024-02-22 22:16:05.436 8300 FEE 435457 18470 6037393 2024-02-22 22:16:05.436 2024-02-22 22:16:05.436 74700 TIP 435457 14688 6037402 2024-02-22 22:16:29.779 2024-02-22 22:16:29.779 1000 FEE 435598 19952 6037414 2024-02-22 22:17:06.653 2024-02-22 22:17:06.653 3000 FEE 435431 656 6037415 2024-02-22 22:17:06.653 2024-02-22 22:17:06.653 27000 TIP 435431 2711 6037478 2024-02-22 22:21:57.83 2024-02-22 22:21:57.83 0 FEE 435605 21287 6037482 2024-02-22 22:22:13.485 2024-02-22 22:22:13.485 0 FEE 435605 3518 6037488 2024-02-22 22:23:10.556 2024-02-22 22:23:10.556 400 FEE 435591 14489 6037489 2024-02-22 22:23:10.556 2024-02-22 22:23:10.556 3600 TIP 435591 15196 6037493 2024-02-22 22:24:20.033 2024-02-22 22:24:20.033 1000 FEE 435608 19500 6037512 2024-02-22 22:28:57.475 2024-02-22 22:28:57.475 1000 FEE 435551 11328 6037513 2024-02-22 22:28:57.475 2024-02-22 22:28:57.475 9000 TIP 435551 13931 6037531 2024-02-22 22:33:18.941 2024-02-22 22:33:18.941 1000 FEE 435614 7978 6037534 2024-02-22 22:33:47.043 2024-02-22 22:33:47.043 5000 FEE 435613 18945 6037535 2024-02-22 22:33:47.043 2024-02-22 22:33:47.043 45000 TIP 435613 18660 6037542 2024-02-22 22:34:40.511 2024-02-22 22:34:40.511 900 FEE 435608 13198 6037543 2024-02-22 22:34:40.511 2024-02-22 22:34:40.511 8100 TIP 435608 18220 6031093 2024-02-22 12:00:56.518 2024-02-22 12:00:56.518 10000 FEE 434805 18919 6031094 2024-02-22 12:00:56.518 2024-02-22 12:00:56.518 90000 TIP 434805 15409 6031098 2024-02-22 12:01:25.441 2024-02-22 12:01:25.441 100 FEE 434791 21291 6031099 2024-02-22 12:01:25.441 2024-02-22 12:01:25.441 900 TIP 434791 16301 6031101 2024-02-22 12:01:37.241 2024-02-22 12:01:37.241 1000 FEE 434863 10530 6031103 2024-02-22 12:01:50.036 2024-02-22 12:01:50.036 1000 FEE 434820 12188 6031104 2024-02-22 12:01:50.036 2024-02-22 12:01:50.036 9000 TIP 434820 21455 6031126 2024-02-22 12:02:41.822 2024-02-22 12:02:41.822 0 FEE 434858 725 6031136 2024-02-22 12:04:39.078 2024-02-22 12:04:39.078 1000 FEE 434869 9863 6031141 2024-02-22 12:04:51.142 2024-02-22 12:04:51.142 1100 FEE 434862 2829 6031142 2024-02-22 12:04:51.142 2024-02-22 12:04:51.142 9900 TIP 434862 15560 6031158 2024-02-22 12:10:01.013 2024-02-22 12:10:01.013 1000 FEE 434872 18460 6031171 2024-02-22 12:12:58.573 2024-02-22 12:12:58.573 1100 FEE 434872 20454 6031172 2024-02-22 12:12:58.573 2024-02-22 12:12:58.573 9900 TIP 434872 17713 6031217 2024-02-22 12:22:38.82 2024-02-22 12:22:38.82 1000 FEE 434884 640 6031220 2024-02-22 12:23:59.582 2024-02-22 12:23:59.582 1000 FEE 434886 10013 6031233 2024-02-22 12:25:51.068 2024-02-22 12:25:51.068 1000 FEE 434037 13246 6031234 2024-02-22 12:25:51.068 2024-02-22 12:25:51.068 9000 TIP 434037 5129 6031243 2024-02-22 12:26:29.293 2024-02-22 12:26:29.293 2100 FEE 434871 14015 6031244 2024-02-22 12:26:29.293 2024-02-22 12:26:29.293 18900 TIP 434871 6765 6031262 2024-02-22 12:29:11.395 2024-02-22 12:29:11.395 2100 FEE 434844 21451 6031263 2024-02-22 12:29:11.395 2024-02-22 12:29:11.395 18900 TIP 434844 18344 6031304 2024-02-22 12:38:02.985 2024-02-22 12:38:02.985 10000 FEE 434798 13987 6031305 2024-02-22 12:38:02.985 2024-02-22 12:38:02.985 90000 TIP 434798 9992 6031310 2024-02-22 12:39:49.82 2024-02-22 12:39:49.82 1000 FEE 434903 20246 6031315 2024-02-22 12:40:21.479 2024-02-22 12:40:21.479 21000 FEE 434905 15146 6031350 2024-02-22 12:46:30.232 2024-02-22 12:46:30.232 10000 FEE 434911 20993 6031355 2024-02-22 12:47:22.347 2024-02-22 12:47:22.347 4000 FEE 434910 4819 6031356 2024-02-22 12:47:22.347 2024-02-22 12:47:22.347 36000 TIP 434910 976 6031373 2024-02-22 12:51:10.993 2024-02-22 12:51:10.993 1100 FEE 434385 17209 6031374 2024-02-22 12:51:10.993 2024-02-22 12:51:10.993 9900 TIP 434385 20117 6031407 2024-02-22 12:54:30.498 2024-02-22 12:54:30.498 1100 FEE 434631 1617 6031408 2024-02-22 12:54:30.498 2024-02-22 12:54:30.498 9900 TIP 434631 1624 6031413 2024-02-22 12:54:37.335 2024-02-22 12:54:37.335 1100 FEE 434626 1394 6031414 2024-02-22 12:54:37.335 2024-02-22 12:54:37.335 9900 TIP 434626 21044 6031426 2024-02-22 12:55:44.386 2024-02-22 12:55:44.386 1100 FEE 434916 9669 6031427 2024-02-22 12:55:44.386 2024-02-22 12:55:44.386 9900 TIP 434916 16704 6031440 2024-02-22 12:57:55.861 2024-02-22 12:57:55.861 21000 DONT_LIKE_THIS 434922 896 6031485 2024-02-22 13:05:14.999 2024-02-22 13:05:14.999 10000 FEE 434934 19995 6031486 2024-02-22 13:05:15.333 2024-02-22 13:05:15.333 9000 FEE 434740 703 6031487 2024-02-22 13:05:15.333 2024-02-22 13:05:15.333 81000 TIP 434740 3371 6031498 2024-02-22 13:05:46.328 2024-02-22 13:05:46.328 1000 FEE 434935 9496 6031514 2024-02-22 13:08:08.941 2024-02-22 13:08:08.941 20000 FEE 433123 19381 6031515 2024-02-22 13:08:08.941 2024-02-22 13:08:08.941 180000 TIP 433123 18601 6031524 2024-02-22 13:08:16.152 2024-02-22 13:08:16.152 1100 FEE 193487 11820 6031525 2024-02-22 13:08:16.152 2024-02-22 13:08:16.152 9900 TIP 193487 1493 6031528 2024-02-22 13:08:32.146 2024-02-22 13:08:32.146 100 FEE 433123 5578 6031529 2024-02-22 13:08:32.146 2024-02-22 13:08:32.146 900 TIP 433123 6555 6031536 2024-02-22 13:08:57.015 2024-02-22 13:08:57.015 1000 FEE 434938 4474 6031595 2024-02-22 13:14:03.174 2024-02-22 13:14:03.174 3000 FEE 434728 21492 6031596 2024-02-22 13:14:03.174 2024-02-22 13:14:03.174 27000 TIP 434728 20120 6031614 2024-02-22 13:19:02.61 2024-02-22 13:19:02.61 1000 FEE 434946 5085 6031622 2024-02-22 13:20:45.749 2024-02-22 13:20:45.749 1000 FEE 434948 2620 6031625 2024-02-22 13:21:30.158 2024-02-22 13:21:30.158 10000 FEE 434922 2367 6031626 2024-02-22 13:21:30.158 2024-02-22 13:21:30.158 90000 TIP 434922 20710 6031634 2024-02-22 13:23:08.835 2024-02-22 13:23:08.835 100000 FEE 434941 1213 6031635 2024-02-22 13:23:08.835 2024-02-22 13:23:08.835 900000 TIP 434941 2039 6031636 2024-02-22 13:23:11.712 2024-02-22 13:23:11.712 3000 FEE 434440 20980 6031637 2024-02-22 13:23:11.712 2024-02-22 13:23:11.712 27000 TIP 434440 1142 6031655 2024-02-22 13:29:08.17 2024-02-22 13:29:08.17 2100 FEE 434786 20560 6031656 2024-02-22 13:29:08.17 2024-02-22 13:29:08.17 18900 TIP 434786 1836 6031694 2024-02-22 13:30:35.659 2024-02-22 13:30:35.659 1000 FEE 434960 621 6031701 2024-02-22 13:31:17.774 2024-02-22 13:31:17.774 2100 FEE 434909 684 6031702 2024-02-22 13:31:17.774 2024-02-22 13:31:17.774 18900 TIP 434909 9482 6031707 2024-02-22 13:31:28.823 2024-02-22 13:31:28.823 2100 FEE 434916 2123 6031708 2024-02-22 13:31:28.823 2024-02-22 13:31:28.823 18900 TIP 434916 15762 6031711 2024-02-22 13:32:10.567 2024-02-22 13:32:10.567 2100 FEE 434720 10359 6031712 2024-02-22 13:32:10.567 2024-02-22 13:32:10.567 18900 TIP 434720 21430 6031762 2024-02-22 13:35:44.55 2024-02-22 13:35:44.55 2100 FEE 434805 9352 6031763 2024-02-22 13:35:44.55 2024-02-22 13:35:44.55 18900 TIP 434805 18274 6031764 2024-02-22 13:35:46.107 2024-02-22 13:35:46.107 2100 FEE 434796 4079 6031765 2024-02-22 13:35:46.107 2024-02-22 13:35:46.107 18900 TIP 434796 18904 6031771 2024-02-22 13:35:53.036 2024-02-22 13:35:53.036 2100 FEE 434818 17046 6031772 2024-02-22 13:35:53.036 2024-02-22 13:35:53.036 18900 TIP 434818 17602 6031775 2024-02-22 13:35:55.278 2024-02-22 13:35:55.278 2100 FEE 434828 2832 6031776 2024-02-22 13:35:55.278 2024-02-22 13:35:55.278 18900 TIP 434828 19158 6031782 2024-02-22 13:36:43.623 2024-02-22 13:36:43.623 2100 FEE 434577 21281 6031783 2024-02-22 13:36:43.623 2024-02-22 13:36:43.623 18900 TIP 434577 1354 6031804 2024-02-22 13:39:38.579 2024-02-22 13:39:38.579 800 FEE 434952 20782 6031108 2024-02-22 12:01:55.881 2024-02-22 12:01:55.881 9900 TIP 434643 1236 6031174 2024-02-22 12:13:26.212 2024-02-22 12:13:26.212 1000 FEE 434873 6688 6031208 2024-02-22 12:19:42.066 2024-02-22 12:19:42.066 98000 FEE 434882 18068 6031210 2024-02-22 12:20:58.472 2024-02-22 12:20:58.472 500 FEE 434870 9332 6031211 2024-02-22 12:20:58.472 2024-02-22 12:20:58.472 4500 TIP 434870 20811 6031227 2024-02-22 12:25:17.049 2024-02-22 12:25:17.049 3000 DONT_LIKE_THIS 294981 6202 6031240 2024-02-22 12:26:15.884 2024-02-22 12:26:15.884 1000 FEE 434890 18116 6031272 2024-02-22 12:30:05.933 2024-02-22 12:30:05.933 200 FEE 434675 19458 6031273 2024-02-22 12:30:05.933 2024-02-22 12:30:05.933 1800 TIP 434675 4083 6031289 2024-02-22 12:31:21.926 2024-02-22 12:31:21.926 1100 FEE 434642 21033 6031290 2024-02-22 12:31:21.926 2024-02-22 12:31:21.926 9900 TIP 434642 18667 6031321 2024-02-22 12:41:15.089 2024-02-22 12:41:15.089 10000 FEE 434722 15160 6031322 2024-02-22 12:41:15.089 2024-02-22 12:41:15.089 90000 TIP 434722 16355 6031326 2024-02-22 12:41:35.917 2024-02-22 12:41:35.917 2100 FEE 434737 16769 6031327 2024-02-22 12:41:35.917 2024-02-22 12:41:35.917 18900 TIP 434737 16988 6031332 2024-02-22 12:42:35.692 2024-02-22 12:42:35.692 50000 FEE 434440 1428 6031333 2024-02-22 12:42:35.692 2024-02-22 12:42:35.692 450000 TIP 434440 9342 6031348 2024-02-22 12:46:23.502 2024-02-22 12:46:23.502 4000 FEE 434909 12821 6031349 2024-02-22 12:46:23.502 2024-02-22 12:46:23.502 36000 TIP 434909 2013 6031353 2024-02-22 12:47:05.997 2024-02-22 12:47:05.997 3000 FEE 434831 6741 6031354 2024-02-22 12:47:05.997 2024-02-22 12:47:05.997 27000 TIP 434831 20889 6031357 2024-02-22 12:47:29.897 2024-02-22 12:47:29.897 1000 FEE 434912 10519 6031367 2024-02-22 12:50:27.934 2024-02-22 12:50:27.934 2100 FEE 434902 11829 6031368 2024-02-22 12:50:27.934 2024-02-22 12:50:27.934 18900 TIP 434902 18139 6031380 2024-02-22 12:51:39.752 2024-02-22 12:51:39.752 1000 FEE 434917 21140 6031390 2024-02-22 12:52:55.779 2024-02-22 12:52:55.779 2100 FEE 434560 17976 6031391 2024-02-22 12:52:55.779 2024-02-22 12:52:55.779 18900 TIP 434560 686 6031395 2024-02-22 12:53:14.473 2024-02-22 12:53:14.473 2100 FEE 434660 3642 6031396 2024-02-22 12:53:14.473 2024-02-22 12:53:14.473 18900 TIP 434660 700 6031476 2024-02-22 13:03:33.998 2024-02-22 13:03:33.998 200 FEE 434751 21523 6031477 2024-02-22 13:03:33.998 2024-02-22 13:03:33.998 1800 TIP 434751 20162 6031483 2024-02-22 13:05:14.161 2024-02-22 13:05:14.161 900 FEE 434740 6687 6031484 2024-02-22 13:05:14.161 2024-02-22 13:05:14.161 8100 TIP 434740 17891 6031501 2024-02-22 13:06:56.28 2024-02-22 13:06:56.28 1000 FEE 434937 5557 6031509 2024-02-22 13:08:03.099 2024-02-22 13:08:03.099 9000 FEE 434615 16747 6031510 2024-02-22 13:08:03.099 2024-02-22 13:08:03.099 81000 TIP 434615 2609 6031526 2024-02-22 13:08:26.883 2024-02-22 13:08:26.883 2600 FEE 433123 10818 6031527 2024-02-22 13:08:26.883 2024-02-22 13:08:26.883 23400 TIP 433123 6191 6031530 2024-02-22 13:08:42.978 2024-02-22 13:08:42.978 100 FEE 434631 15510 6031531 2024-02-22 13:08:42.978 2024-02-22 13:08:42.978 900 TIP 434631 17727 6031544 2024-02-22 13:09:33.44 2024-02-22 13:09:33.44 0 FEE 434938 11298 6031547 2024-02-22 13:09:41.127 2024-02-22 13:09:41.127 900 FEE 434641 14663 6031548 2024-02-22 13:09:41.127 2024-02-22 13:09:41.127 8100 TIP 434641 6602 6031602 2024-02-22 13:16:15.506 2024-02-22 13:16:15.506 1000 FEE 434877 15226 6031603 2024-02-22 13:16:15.506 2024-02-22 13:16:15.506 9000 TIP 434877 21369 6031606 2024-02-22 13:17:52.088 2024-02-22 13:17:52.088 1000 FEE 434782 11165 6031607 2024-02-22 13:17:52.088 2024-02-22 13:17:52.088 9000 TIP 434782 19309 6031611 2024-02-22 13:18:33.268 2024-02-22 13:18:33.268 2100 FEE 434788 2734 6031612 2024-02-22 13:18:33.268 2024-02-22 13:18:33.268 18900 TIP 434788 20546 6031620 2024-02-22 13:20:32.662 2024-02-22 13:20:32.662 10000 FEE 434626 8648 6031621 2024-02-22 13:20:32.662 2024-02-22 13:20:32.662 90000 TIP 434626 12222 6031646 2024-02-22 13:26:19.717 2024-02-22 13:26:19.717 1000 FEE 434954 827 6031647 2024-02-22 13:26:48.065 2024-02-22 13:26:48.065 1000 FEE 434955 19813 6031661 2024-02-22 13:29:15.009 2024-02-22 13:29:15.009 2100 FEE 434791 18896 6031662 2024-02-22 13:29:15.009 2024-02-22 13:29:15.009 18900 TIP 434791 3504 6031675 2024-02-22 13:29:37.316 2024-02-22 13:29:37.316 2100 FEE 434535 20022 6031676 2024-02-22 13:29:37.316 2024-02-22 13:29:37.316 18900 TIP 434535 7992 6031677 2024-02-22 13:29:41.554 2024-02-22 13:29:41.554 97000 FEE 434958 20597 6031705 2024-02-22 13:31:23.371 2024-02-22 13:31:23.371 2100 FEE 434882 3478 6031706 2024-02-22 13:31:23.371 2024-02-22 13:31:23.371 18900 TIP 434882 2390 6031717 2024-02-22 13:33:41.113 2024-02-22 13:33:41.113 2100 FEE 434956 9426 6031718 2024-02-22 13:33:41.113 2024-02-22 13:33:41.113 18900 TIP 434956 4831 6031735 2024-02-22 13:35:26.416 2024-02-22 13:35:26.416 2100 FEE 434859 11298 6031736 2024-02-22 13:35:26.416 2024-02-22 13:35:26.416 18900 TIP 434859 18994 6031749 2024-02-22 13:35:34.953 2024-02-22 13:35:34.953 2100 FEE 434798 20701 6031750 2024-02-22 13:35:34.953 2024-02-22 13:35:34.953 18900 TIP 434798 21391 6031758 2024-02-22 13:35:42.957 2024-02-22 13:35:42.957 2100 FEE 434800 16432 6031759 2024-02-22 13:35:42.957 2024-02-22 13:35:42.957 18900 TIP 434800 3461 6031766 2024-02-22 13:35:46.715 2024-02-22 13:35:46.715 2100 FEE 434811 20642 6031767 2024-02-22 13:35:46.715 2024-02-22 13:35:46.715 18900 TIP 434811 19929 6031794 2024-02-22 13:38:46.038 2024-02-22 13:38:46.038 2300 FEE 434810 20327 6031795 2024-02-22 13:38:46.038 2024-02-22 13:38:46.038 20700 TIP 434810 21014 6031844 2024-02-22 13:41:03.841 2024-02-22 13:41:03.841 1300 FEE 434484 21044 6031845 2024-02-22 13:41:03.841 2024-02-22 13:41:03.841 11700 TIP 434484 20490 6031862 2024-02-22 13:42:40.639 2024-02-22 13:42:40.639 10000 FEE 317410 3990 6031863 2024-02-22 13:42:40.639 2024-02-22 13:42:40.639 90000 TIP 317410 733 6031870 2024-02-22 13:44:20.77 2024-02-22 13:44:20.77 2100 FEE 434809 16176 6031871 2024-02-22 13:44:20.77 2024-02-22 13:44:20.77 18900 TIP 434809 20018 6031872 2024-02-22 13:44:51.435 2024-02-22 13:44:51.435 1000 FEE 434976 20156 6031904 2024-02-22 13:48:49.382 2024-02-22 13:48:49.382 800 FEE 434864 1890 6031905 2024-02-22 13:48:49.382 2024-02-22 13:48:49.382 7200 TIP 434864 3392 6031913 2024-02-22 13:49:36.317 2024-02-22 13:49:36.317 1100 FEE 434627 4521 6031914 2024-02-22 13:49:36.317 2024-02-22 13:49:36.317 9900 TIP 434627 7979 6031941 2024-02-22 13:54:14.783 2024-02-22 13:54:14.783 1000 FEE 434617 14168 6031942 2024-02-22 13:54:14.783 2024-02-22 13:54:14.783 9000 TIP 434617 18291 6031979 2024-02-22 13:56:54.693 2024-02-22 13:56:54.693 8300 FEE 434791 19033 6031980 2024-02-22 13:56:54.693 2024-02-22 13:56:54.693 74700 TIP 434791 965 6032013 2024-02-22 13:57:51.406 2024-02-22 13:57:51.406 8300 FEE 434990 14791 6032014 2024-02-22 13:57:51.406 2024-02-22 13:57:51.406 74700 TIP 434990 6191 6032029 2024-02-22 14:01:30.216 2024-02-22 14:01:30.216 2100 FEE 434685 5904 6032030 2024-02-22 14:01:30.216 2024-02-22 14:01:30.216 18900 TIP 434685 19284 6032041 2024-02-22 14:03:19.138 2024-02-22 14:03:19.138 2100 FEE 434987 20606 6032042 2024-02-22 14:03:19.138 2024-02-22 14:03:19.138 18900 TIP 434987 11862 6032043 2024-02-22 14:03:54.88 2024-02-22 14:03:54.88 10000 FEE 434997 10771 6032063 2024-02-22 14:05:58.347 2024-02-22 14:05:58.347 27000 FEE 434637 1428 6032064 2024-02-22 14:05:58.347 2024-02-22 14:05:58.347 243000 TIP 434637 2502 6032067 2024-02-22 14:06:46.645 2024-02-22 14:06:46.645 4000 FEE 434990 14267 6032068 2024-02-22 14:06:46.645 2024-02-22 14:06:46.645 36000 TIP 434990 21444 6032073 2024-02-22 14:07:01.271 2024-02-22 14:07:01.271 1000 FEE 435006 6533 6032090 2024-02-22 14:08:41.96 2024-02-22 14:08:41.96 1000 FEE 435009 11263 6031115 2024-02-22 12:02:33.128 2024-02-22 12:02:33.128 1000 FEE 434866 15226 6031132 2024-02-22 12:04:30.186 2024-02-22 12:04:30.186 1000 FEE 434867 13575 6031139 2024-02-22 12:04:50.547 2024-02-22 12:04:50.547 1100 FEE 434862 9275 6031140 2024-02-22 12:04:50.547 2024-02-22 12:04:50.547 9900 TIP 434862 19289 6031153 2024-02-22 12:07:12.431 2024-02-22 12:07:12.431 1000 FEE 434871 19329 6031181 2024-02-22 12:13:35.517 2024-02-22 12:13:35.517 100 FEE 430342 16177 6031182 2024-02-22 12:13:35.517 2024-02-22 12:13:35.517 900 TIP 430342 20099 6031229 2024-02-22 12:25:45.603 2024-02-22 12:25:45.603 2100 FEE 434627 2016 6031230 2024-02-22 12:25:45.603 2024-02-22 12:25:45.603 18900 TIP 434627 18170 6031231 2024-02-22 12:25:48.395 2024-02-22 12:25:48.395 2100 FEE 434807 19435 6031232 2024-02-22 12:25:48.395 2024-02-22 12:25:48.395 18900 TIP 434807 2046 6031253 2024-02-22 12:29:01.982 2024-02-22 12:29:01.982 1000 FEE 434893 12057 6031282 2024-02-22 12:30:33.419 2024-02-22 12:30:33.419 1100 FEE 434892 21555 6031283 2024-02-22 12:30:33.419 2024-02-22 12:30:33.419 9900 TIP 434892 21119 6031287 2024-02-22 12:31:21.201 2024-02-22 12:31:21.201 1100 FEE 434642 20710 6031288 2024-02-22 12:31:21.201 2024-02-22 12:31:21.201 9900 TIP 434642 2010 6031293 2024-02-22 12:32:49.556 2024-02-22 12:32:49.556 1000 FEE 434899 8472 6031306 2024-02-22 12:39:01.955 2024-02-22 12:39:01.955 1000 FEE 434902 18314 6031308 2024-02-22 12:39:39.525 2024-02-22 12:39:39.525 100000 FEE 434714 9364 6031309 2024-02-22 12:39:39.525 2024-02-22 12:39:39.525 900000 TIP 434714 7682 6031345 2024-02-22 12:46:04.962 2024-02-22 12:46:04.962 1000 FEE 434910 19296 6031383 2024-02-22 12:52:04.136 2024-02-22 12:52:04.136 10000 FEE 434627 14905 6031384 2024-02-22 12:52:04.136 2024-02-22 12:52:04.136 90000 TIP 434627 5694 6031436 2024-02-22 12:56:36.525 2024-02-22 12:56:36.525 1000 FEE 434926 20481 6031460 2024-02-22 13:00:05.324 2024-02-22 13:00:05.324 1000 FEE 434929 721 6031468 2024-02-22 13:01:25.34 2024-02-22 13:01:25.34 1100 FEE 434926 1064 6031469 2024-02-22 13:01:25.34 2024-02-22 13:01:25.34 9900 TIP 434926 20514 6031475 2024-02-22 13:03:31.052 2024-02-22 13:03:31.052 1000 FEE 434932 18630 6031505 2024-02-22 13:07:59.51 2024-02-22 13:07:59.51 100 FEE 434615 20153 6031506 2024-02-22 13:07:59.51 2024-02-22 13:07:59.51 900 TIP 434615 671 6031512 2024-02-22 13:08:05.458 2024-02-22 13:08:05.458 20000 FEE 433123 20539 6031513 2024-02-22 13:08:05.458 2024-02-22 13:08:05.458 180000 TIP 433123 19863 6031516 2024-02-22 13:08:12.294 2024-02-22 13:08:12.294 100 FEE 434619 10283 6031517 2024-02-22 13:08:12.294 2024-02-22 13:08:12.294 900 TIP 434619 1286 6031522 2024-02-22 13:08:14.381 2024-02-22 13:08:14.381 9000 FEE 434619 16178 6031523 2024-02-22 13:08:14.381 2024-02-22 13:08:14.381 81000 TIP 434619 706 6031538 2024-02-22 13:09:03.484 2024-02-22 13:09:03.484 5000 FEE 434745 11590 6031539 2024-02-22 13:09:03.484 2024-02-22 13:09:03.484 45000 TIP 434745 19105 6031540 2024-02-22 13:09:03.588 2024-02-22 13:09:03.588 20000 FEE 432920 2196 6031541 2024-02-22 13:09:03.588 2024-02-22 13:09:03.588 180000 TIP 432920 685 6031565 2024-02-22 13:10:49.531 2024-02-22 13:10:49.531 900 FEE 434695 5701 6031566 2024-02-22 13:10:49.531 2024-02-22 13:10:49.531 8100 TIP 434695 21374 6031574 2024-02-22 13:11:40.338 2024-02-22 13:11:40.338 100 FEE 434722 17976 6031575 2024-02-22 13:11:40.338 2024-02-22 13:11:40.338 900 TIP 434722 14515 6031613 2024-02-22 13:18:40.081 2024-02-22 13:18:40.081 1000 FEE 434945 2111 6031651 2024-02-22 13:28:47.513 2024-02-22 13:28:47.513 100000 FEE 434957 19018 6031667 2024-02-22 13:29:21.284 2024-02-22 13:29:21.284 2100 FEE 434717 19615 6031668 2024-02-22 13:29:21.284 2024-02-22 13:29:21.284 18900 TIP 434717 9353 6031671 2024-02-22 13:29:28.461 2024-02-22 13:29:28.461 2100 FEE 434685 5377 6031672 2024-02-22 13:29:28.461 2024-02-22 13:29:28.461 18900 TIP 434685 621 6031673 2024-02-22 13:29:32.207 2024-02-22 13:29:32.207 2100 FEE 434722 17041 6031674 2024-02-22 13:29:32.207 2024-02-22 13:29:32.207 18900 TIP 434722 4624 6031691 2024-02-22 13:30:31.123 2024-02-22 13:30:31.123 700 FEE 432982 18351 6031692 2024-02-22 13:30:31.123 2024-02-22 13:30:31.123 6300 TIP 432982 19878 6031697 2024-02-22 13:31:01.372 2024-02-22 13:31:01.372 1000 FEE 434961 1802 6031713 2024-02-22 13:32:12.946 2024-02-22 13:32:12.946 2100 FEE 434553 9669 6031714 2024-02-22 13:32:12.946 2024-02-22 13:32:12.946 18900 TIP 434553 954 6031721 2024-02-22 13:34:01.146 2024-02-22 13:34:01.146 0 FEE 38225 7913 6031723 2024-02-22 13:34:10.166 2024-02-22 13:34:10.166 6400 FEE 434950 1273 6031724 2024-02-22 13:34:10.166 2024-02-22 13:34:10.166 57600 TIP 434950 13763 6031790 2024-02-22 13:38:05.551 2024-02-22 13:38:05.551 2100 FEE 434615 6526 6031791 2024-02-22 13:38:05.551 2024-02-22 13:38:05.551 18900 TIP 434615 18731 6031792 2024-02-22 13:38:07.494 2024-02-22 13:38:07.494 4000 FEE 434962 21412 6031793 2024-02-22 13:38:07.494 2024-02-22 13:38:07.494 36000 TIP 434962 9177 6031802 2024-02-22 13:39:34.285 2024-02-22 13:39:34.285 2100 FEE 434610 15146 6031803 2024-02-22 13:39:34.285 2024-02-22 13:39:34.285 18900 TIP 434610 20162 6031816 2024-02-22 13:39:42.805 2024-02-22 13:39:42.805 1000 FEE 434962 18511 6031817 2024-02-22 13:39:42.805 2024-02-22 13:39:42.805 9000 TIP 434962 17217 6031832 2024-02-22 13:40:35.94 2024-02-22 13:40:35.94 1000 FEE 434972 6327 6031835 2024-02-22 13:40:44.65 2024-02-22 13:40:44.65 1300 FEE 434613 18468 6031836 2024-02-22 13:40:44.65 2024-02-22 13:40:44.65 11700 TIP 434613 17218 6031853 2024-02-22 13:41:23.701 2024-02-22 13:41:23.701 1000 FEE 434974 9496 6031860 2024-02-22 13:42:29.52 2024-02-22 13:42:29.52 2100 FEE 433688 1784 6031861 2024-02-22 13:42:29.52 2024-02-22 13:42:29.52 18900 TIP 433688 14651 6031875 2024-02-22 13:45:24.612 2024-02-22 13:45:24.612 1000 FEE 434978 18529 6031906 2024-02-22 13:49:01.935 2024-02-22 13:49:01.935 2100 FEE 434920 3396 6031907 2024-02-22 13:49:01.935 2024-02-22 13:49:01.935 18900 TIP 434920 2046 6031919 2024-02-22 13:49:36.712 2024-02-22 13:49:36.712 1100 FEE 434627 10693 6031920 2024-02-22 13:49:36.712 2024-02-22 13:49:36.712 9900 TIP 434627 6268 6031943 2024-02-22 13:54:17.433 2024-02-22 13:54:17.433 1000 FEE 434557 20776 6031944 2024-02-22 13:54:17.433 2024-02-22 13:54:17.433 9000 TIP 434557 11329 6031948 2024-02-22 13:55:13.101 2024-02-22 13:55:13.101 100 FEE 434440 2514 6031151 2024-02-22 12:06:03.092 2024-02-22 12:06:03.092 25200 TIP 434766 19637 6031169 2024-02-22 12:12:58.052 2024-02-22 12:12:58.052 1100 FEE 434872 9290 6031170 2024-02-22 12:12:58.052 2024-02-22 12:12:58.052 9900 TIP 434872 14857 6031177 2024-02-22 12:13:34.5 2024-02-22 12:13:34.5 100 FEE 430342 732 6031178 2024-02-22 12:13:34.5 2024-02-22 12:13:34.5 900 TIP 430342 2710 6031179 2024-02-22 12:13:35.046 2024-02-22 12:13:35.046 100 FEE 430342 6741 6031180 2024-02-22 12:13:35.046 2024-02-22 12:13:35.046 900 TIP 430342 18101 6031200 2024-02-22 12:17:55.767 2024-02-22 12:17:55.767 1000 FEE 434878 1673 6031205 2024-02-22 12:18:21.9 2024-02-22 12:18:21.9 1000 FEE 434880 21585 6031219 2024-02-22 12:23:41.298 2024-02-22 12:23:41.298 1000 FEE 434885 9200 6031221 2024-02-22 12:24:01.317 2024-02-22 12:24:01.317 10000 FEE 434887 4173 6031247 2024-02-22 12:27:10.244 2024-02-22 12:27:10.244 2100 FEE 434787 2016 6031248 2024-02-22 12:27:10.244 2024-02-22 12:27:10.244 18900 TIP 434787 976 6031249 2024-02-22 12:27:58.149 2024-02-22 12:27:58.149 100 FEE 434887 20179 6031250 2024-02-22 12:27:58.149 2024-02-22 12:27:58.149 900 TIP 434887 17696 6031255 2024-02-22 12:29:04.846 2024-02-22 12:29:04.846 1000 FEE 434894 3304 6031267 2024-02-22 12:29:47.861 2024-02-22 12:29:47.861 200 FEE 434689 10771 6031268 2024-02-22 12:29:47.861 2024-02-22 12:29:47.861 1800 TIP 434689 18816 6031269 2024-02-22 12:29:53.953 2024-02-22 12:29:53.953 200 FEE 434688 4521 6031270 2024-02-22 12:29:53.953 2024-02-22 12:29:53.953 1800 TIP 434688 1647 6031274 2024-02-22 12:30:07.221 2024-02-22 12:30:07.221 1000 FEE 434896 18630 6031278 2024-02-22 12:30:32.432 2024-02-22 12:30:32.432 1100 FEE 434892 12169 6031279 2024-02-22 12:30:32.432 2024-02-22 12:30:32.432 9900 TIP 434892 1310 6031280 2024-02-22 12:30:32.61 2024-02-22 12:30:32.61 1100 FEE 434892 21627 6031281 2024-02-22 12:30:32.61 2024-02-22 12:30:32.61 9900 TIP 434892 20691 6031298 2024-02-22 12:34:21.847 2024-02-22 12:34:21.847 200 FEE 434242 20594 6031299 2024-02-22 12:34:21.847 2024-02-22 12:34:21.847 1800 TIP 434242 9159 6031328 2024-02-22 12:41:44.265 2024-02-22 12:41:44.265 10000 FEE 434288 1478 6031329 2024-02-22 12:41:44.265 2024-02-22 12:41:44.265 90000 TIP 434288 19576 6031343 2024-02-22 12:45:05.407 2024-02-22 12:45:05.407 10000 FEE 434909 7510 6031366 2024-02-22 12:50:12.893 2024-02-22 12:50:12.893 1000 FEE 434914 19465 6031371 2024-02-22 12:51:10.864 2024-02-22 12:51:10.864 1100 FEE 434385 12218 6031372 2024-02-22 12:51:10.864 2024-02-22 12:51:10.864 9900 TIP 434385 16350 6031376 2024-02-22 12:51:27.296 2024-02-22 12:51:27.296 1100 FEE 434577 11862 6031377 2024-02-22 12:51:27.296 2024-02-22 12:51:27.296 9900 TIP 434577 8985 6031394 2024-02-22 12:53:11.827 2024-02-22 12:53:11.827 1000 FEE 434921 19541 6031401 2024-02-22 12:54:14.276 2024-02-22 12:54:14.276 1000 FEE 434923 19198 6031406 2024-02-22 12:54:29.263 2024-02-22 12:54:29.263 1000 FEE 434924 14791 6031417 2024-02-22 12:54:38.993 2024-02-22 12:54:38.993 1100 FEE 434626 19842 6031418 2024-02-22 12:54:38.993 2024-02-22 12:54:38.993 9900 TIP 434626 18138 6031451 2024-02-22 12:59:00.723 2024-02-22 12:59:00.723 1600 FEE 434902 18177 6031452 2024-02-22 12:59:00.723 2024-02-22 12:59:00.723 14400 TIP 434902 21481 6031454 2024-02-22 12:59:57.75 2024-02-22 12:59:57.75 123400 FEE 434319 4395 6031455 2024-02-22 12:59:57.75 2024-02-22 12:59:57.75 1110600 TIP 434319 21091 6031459 2024-02-22 13:00:04.908 2024-02-22 13:00:04.908 100000 FEE 434928 6191 6031479 2024-02-22 13:04:07.242 2024-02-22 13:04:07.242 1000 FEE 434933 15139 6031490 2024-02-22 13:05:18.042 2024-02-22 13:05:18.042 900 FEE 434856 9863 6031491 2024-02-22 13:05:18.042 2024-02-22 13:05:18.042 8100 TIP 434856 5694 6031492 2024-02-22 13:05:33.899 2024-02-22 13:05:33.899 100 FEE 434927 18837 6031493 2024-02-22 13:05:33.899 2024-02-22 13:05:33.899 900 TIP 434927 15588 6031494 2024-02-22 13:05:34.164 2024-02-22 13:05:34.164 900 FEE 434927 8059 6031495 2024-02-22 13:05:34.164 2024-02-22 13:05:34.164 8100 TIP 434927 11417 6031500 2024-02-22 13:06:03.622 2024-02-22 13:06:03.622 2000 FEE 434936 16816 6031532 2024-02-22 13:08:43.21 2024-02-22 13:08:43.21 900 FEE 434631 16598 6031533 2024-02-22 13:08:43.21 2024-02-22 13:08:43.21 8100 TIP 434631 4776 6031549 2024-02-22 13:09:42.068 2024-02-22 13:09:42.068 9000 FEE 434641 3396 6031550 2024-02-22 13:09:42.068 2024-02-22 13:09:42.068 81000 TIP 434641 21540 6031556 2024-02-22 13:10:24.17 2024-02-22 13:10:24.17 900 FEE 434665 11897 6031557 2024-02-22 13:10:24.17 2024-02-22 13:10:24.17 8100 TIP 434665 15351 6031558 2024-02-22 13:10:34.284 2024-02-22 13:10:34.284 3000 FEE 434685 656 6031559 2024-02-22 13:10:34.284 2024-02-22 13:10:34.284 27000 TIP 434685 700 6031580 2024-02-22 13:12:24.071 2024-02-22 13:12:24.071 100 FEE 434791 21019 6031581 2024-02-22 13:12:24.071 2024-02-22 13:12:24.071 900 TIP 434791 14202 6031593 2024-02-22 13:13:32.418 2024-02-22 13:13:32.418 10000 FEE 434942 21314 6031628 2024-02-22 13:22:09.592 2024-02-22 13:22:09.592 1000 FEE 434791 733 6031629 2024-02-22 13:22:09.592 2024-02-22 13:22:09.592 9000 TIP 434791 10094 6031631 2024-02-22 13:22:38.625 2024-02-22 13:22:38.625 1000 FEE 434791 21344 6031632 2024-02-22 13:22:38.625 2024-02-22 13:22:38.625 9000 TIP 434791 6700 6031644 2024-02-22 13:25:48.493 2024-02-22 13:25:48.493 1000 FEE 434953 19890 6031650 2024-02-22 13:28:22.079 2024-02-22 13:28:22.079 1000 FEE 434956 12097 6031652 2024-02-22 13:28:48.39 2024-02-22 13:28:48.39 4000 FEE 434934 5128 6031653 2024-02-22 13:28:48.39 2024-02-22 13:28:48.39 36000 TIP 434934 5173 6031663 2024-02-22 13:29:16.336 2024-02-22 13:29:16.336 2100 FEE 434627 993 6031164 2024-02-22 12:12:02.594 2024-02-22 12:12:02.594 1000 STREAM 141924 14370 6031194 2024-02-22 12:15:02.609 2024-02-22 12:15:02.609 1000 STREAM 141924 20180 6031209 2024-02-22 12:20:02.663 2024-02-22 12:20:02.663 1000 STREAM 141924 20817 6031212 2024-02-22 12:21:02.641 2024-02-22 12:21:02.641 1000 STREAM 141924 3745 6031218 2024-02-22 12:23:02.652 2024-02-22 12:23:02.652 1000 STREAM 141924 19943 6031222 2024-02-22 12:24:02.652 2024-02-22 12:24:02.652 1000 STREAM 141924 21430 6031224 2024-02-22 12:25:02.637 2024-02-22 12:25:02.637 1000 STREAM 141924 9333 6031237 2024-02-22 12:26:02.66 2024-02-22 12:26:02.66 1000 STREAM 141924 12609 6031251 2024-02-22 12:28:02.685 2024-02-22 12:28:02.685 1000 STREAM 141924 1567 6031254 2024-02-22 12:29:02.689 2024-02-22 12:29:02.689 1000 STREAM 141924 16442 6031284 2024-02-22 12:31:02.68 2024-02-22 12:31:02.68 1000 STREAM 141924 4314 6031292 2024-02-22 12:32:02.674 2024-02-22 12:32:02.674 1000 STREAM 141924 21503 6031295 2024-02-22 12:33:02.69 2024-02-22 12:33:02.69 1000 STREAM 141924 2061 6031297 2024-02-22 12:34:02.694 2024-02-22 12:34:02.694 1000 STREAM 141924 14939 6031300 2024-02-22 12:35:02.702 2024-02-22 12:35:02.702 1000 STREAM 141924 8498 6031301 2024-02-22 12:36:02.704 2024-02-22 12:36:02.704 1000 STREAM 141924 19033 6031307 2024-02-22 12:39:02.733 2024-02-22 12:39:02.733 1000 STREAM 141924 2735 6031330 2024-02-22 12:42:02.725 2024-02-22 12:42:02.725 1000 STREAM 141924 20180 6031344 2024-02-22 12:46:03.167 2024-02-22 12:46:03.167 1000 STREAM 141924 21343 6031352 2024-02-22 12:47:03.171 2024-02-22 12:47:03.171 1000 STREAM 141924 20683 6031360 2024-02-22 12:48:03.183 2024-02-22 12:48:03.183 1000 STREAM 141924 11263 6031361 2024-02-22 12:49:03.197 2024-02-22 12:49:03.197 1000 STREAM 141924 900 6031382 2024-02-22 12:52:03.213 2024-02-22 12:52:03.213 1000 STREAM 141924 19821 6031419 2024-02-22 12:55:03.233 2024-02-22 12:55:03.233 1000 STREAM 141924 1389 6031430 2024-02-22 12:56:03.253 2024-02-22 12:56:03.253 1000 STREAM 141924 20683 6031453 2024-02-22 12:59:03.258 2024-02-22 12:59:03.258 1000 STREAM 141924 16301 6031463 2024-02-22 13:01:03.279 2024-02-22 13:01:03.279 1000 STREAM 141924 15326 6036976 2024-02-22 21:42:02.26 2024-02-22 21:42:02.26 1000 STREAM 141924 16042 6036996 2024-02-22 21:43:04.261 2024-02-22 21:43:04.261 1000 STREAM 141924 21619 6037034 2024-02-22 21:47:04.266 2024-02-22 21:47:04.266 1000 STREAM 141924 21589 6037045 2024-02-22 21:50:02.272 2024-02-22 21:50:02.272 1000 STREAM 141924 4692 6037050 2024-02-22 21:51:04.292 2024-02-22 21:51:04.292 1000 STREAM 141924 20710 6037069 2024-02-22 21:53:04.317 2024-02-22 21:53:04.317 1000 STREAM 141924 780 6037107 2024-02-22 21:54:02.322 2024-02-22 21:54:02.322 1000 STREAM 141924 18941 6037113 2024-02-22 21:55:04.321 2024-02-22 21:55:04.321 1000 STREAM 141924 11996 6037220 2024-02-22 21:57:04.361 2024-02-22 21:57:04.361 1000 STREAM 141924 15588 6037226 2024-02-22 21:59:04.382 2024-02-22 21:59:04.382 1000 STREAM 141924 18412 6037229 2024-02-22 22:00:02.398 2024-02-22 22:00:02.398 1000 STREAM 141924 11873 6037236 2024-02-22 22:02:02.385 2024-02-22 22:02:02.385 1000 STREAM 141924 1472 6037239 2024-02-22 22:03:02.378 2024-02-22 22:03:02.378 1000 STREAM 141924 716 6037297 2024-02-22 22:08:02.418 2024-02-22 22:08:02.418 1000 STREAM 141924 9350 6037321 2024-02-22 22:10:02.432 2024-02-22 22:10:02.432 1000 STREAM 141924 18615 6037450 2024-02-22 22:19:02.523 2024-02-22 22:19:02.523 1000 STREAM 141924 3729 6037453 2024-02-22 22:21:02.553 2024-02-22 22:21:02.553 1000 STREAM 141924 12721 6037497 2024-02-22 22:27:02.585 2024-02-22 22:27:02.585 1000 STREAM 141924 5003 6037526 2024-02-22 22:32:02.616 2024-02-22 22:32:02.616 1000 STREAM 141924 5112 6037548 2024-02-22 22:36:02.621 2024-02-22 22:36:02.621 1000 STREAM 141924 20562 6037561 2024-02-22 22:38:02.635 2024-02-22 22:38:02.635 1000 STREAM 141924 20710 6037564 2024-02-22 22:39:02.637 2024-02-22 22:39:02.637 1000 STREAM 141924 14152 6037574 2024-02-22 22:40:02.638 2024-02-22 22:40:02.638 1000 STREAM 141924 13097 6037578 2024-02-22 22:41:02.628 2024-02-22 22:41:02.628 1000 STREAM 141924 20099 6037690 2024-02-22 22:46:02.652 2024-02-22 22:46:02.652 1000 STREAM 141924 19156 6037783 2024-02-22 22:48:02.692 2024-02-22 22:48:02.692 1000 STREAM 141924 1611 6037850 2024-02-22 22:50:02.691 2024-02-22 22:50:02.691 1000 STREAM 141924 21481 6037876 2024-02-22 22:51:02.685 2024-02-22 22:51:02.685 1000 STREAM 141924 17212 6037882 2024-02-22 22:54:02.704 2024-02-22 22:54:02.704 1000 STREAM 141924 16532 6037886 2024-02-22 22:56:02.713 2024-02-22 22:56:02.713 1000 STREAM 141924 17741 6037895 2024-02-22 22:58:02.723 2024-02-22 22:58:02.723 1000 STREAM 141924 18225 6037898 2024-02-22 22:59:02.73 2024-02-22 22:59:02.73 1000 STREAM 141924 1881 6037905 2024-02-22 23:00:02.732 2024-02-22 23:00:02.732 1000 STREAM 141924 21573 6037926 2024-02-22 23:04:02.78 2024-02-22 23:04:02.78 1000 STREAM 141924 15521 6037931 2024-02-22 23:05:02.785 2024-02-22 23:05:02.785 1000 STREAM 141924 19854 6037938 2024-02-22 23:06:02.789 2024-02-22 23:06:02.789 1000 STREAM 141924 18005 6037942 2024-02-22 23:08:02.786 2024-02-22 23:08:02.786 1000 STREAM 141924 19469 6037962 2024-02-22 23:13:02.807 2024-02-22 23:13:02.807 1000 STREAM 141924 9366 6037986 2024-02-22 23:14:02.813 2024-02-22 23:14:02.813 1000 STREAM 141924 8729 6037990 2024-02-22 23:16:02.834 2024-02-22 23:16:02.834 1000 STREAM 141924 15196 6037993 2024-02-22 23:17:02.847 2024-02-22 23:17:02.847 1000 STREAM 141924 17392 6037998 2024-02-22 23:18:02.849 2024-02-22 23:18:02.849 1000 STREAM 141924 1515 6038002 2024-02-22 23:19:02.858 2024-02-22 23:19:02.858 1000 STREAM 141924 7992 6038007 2024-02-22 23:20:02.901 2024-02-22 23:20:02.901 1000 STREAM 141924 1316 6038063 2024-02-22 23:21:02.886 2024-02-22 23:21:02.886 1000 STREAM 141924 18736 6038125 2024-02-22 23:24:02.916 2024-02-22 23:24:02.916 1000 STREAM 141924 5195 6038135 2024-02-22 23:26:02.936 2024-02-22 23:26:02.936 1000 STREAM 141924 732 6038138 2024-02-22 23:27:02.939 2024-02-22 23:27:02.939 1000 STREAM 141924 3506 6038140 2024-02-22 23:28:02.966 2024-02-22 23:28:02.966 1000 STREAM 141924 9341 6038155 2024-02-22 23:30:02.981 2024-02-22 23:30:02.981 1000 STREAM 141924 16594 6038199 2024-02-22 23:32:02.967 2024-02-22 23:32:02.967 1000 STREAM 141924 21145 6038200 2024-02-22 23:33:02.981 2024-02-22 23:33:02.981 1000 STREAM 141924 19537 6038205 2024-02-22 23:35:02.985 2024-02-22 23:35:02.985 1000 STREAM 141924 775 6031173 2024-02-22 12:13:02.583 2024-02-22 12:13:02.583 1000 STREAM 141924 4083 6031193 2024-02-22 12:14:02.575 2024-02-22 12:14:02.575 1000 STREAM 141924 2029 6031196 2024-02-22 12:16:02.617 2024-02-22 12:16:02.617 1000 STREAM 141924 21389 6031198 2024-02-22 12:17:02.612 2024-02-22 12:17:02.612 1000 STREAM 141924 12218 6031203 2024-02-22 12:18:02.601 2024-02-22 12:18:02.601 1000 STREAM 141924 21083 6031206 2024-02-22 12:19:02.63 2024-02-22 12:19:02.63 1000 STREAM 141924 4973 6031216 2024-02-22 12:22:02.649 2024-02-22 12:22:02.649 1000 STREAM 141924 630 6031245 2024-02-22 12:27:02.656 2024-02-22 12:27:02.656 1000 STREAM 141924 21527 6031271 2024-02-22 12:30:02.683 2024-02-22 12:30:02.683 1000 STREAM 141924 836 6031302 2024-02-22 12:37:02.701 2024-02-22 12:37:02.701 1000 STREAM 141924 4798 6031303 2024-02-22 12:38:02.7 2024-02-22 12:38:02.7 1000 STREAM 141924 10013 6031313 2024-02-22 12:40:02.717 2024-02-22 12:40:02.717 1000 STREAM 141924 20163 6031320 2024-02-22 12:41:02.705 2024-02-22 12:41:02.705 1000 STREAM 141924 14295 6031342 2024-02-22 12:45:03.178 2024-02-22 12:45:03.178 1000 STREAM 141924 14278 6031365 2024-02-22 12:50:03.229 2024-02-22 12:50:03.229 1000 STREAM 141924 14688 6031370 2024-02-22 12:51:03.205 2024-02-22 12:51:03.205 1000 STREAM 141924 20990 6031392 2024-02-22 12:53:03.223 2024-02-22 12:53:03.223 1000 STREAM 141924 16230 6031336 2024-02-22 12:43:03.378 2024-02-22 12:43:03.378 1000 STREAM 141924 21522 6037022 2024-02-22 21:45:49.016 2024-02-22 21:45:49.016 1000 FEE 435167 1273 6037023 2024-02-22 21:45:49.016 2024-02-22 21:45:49.016 9000 TIP 435167 18507 6037053 2024-02-22 21:51:28.593 2024-02-22 21:51:28.593 10000 FEE 435567 11942 6037059 2024-02-22 21:52:17.076 2024-02-22 21:52:17.076 1000 FEE 435565 21021 6037060 2024-02-22 21:52:17.076 2024-02-22 21:52:17.076 9000 TIP 435565 18518 6037063 2024-02-22 21:53:02.308 2024-02-22 21:53:02.308 100 FEE 435520 2711 6037064 2024-02-22 21:53:02.308 2024-02-22 21:53:02.308 900 TIP 435520 9551 6037074 2024-02-22 21:53:07.74 2024-02-22 21:53:07.74 1000 FEE 435516 11430 6037075 2024-02-22 21:53:07.74 2024-02-22 21:53:07.74 9000 TIP 435516 9494 6037085 2024-02-22 21:53:16.638 2024-02-22 21:53:16.638 900 FEE 435396 1237 6037086 2024-02-22 21:53:16.638 2024-02-22 21:53:16.638 8100 TIP 435396 5961 6037103 2024-02-22 21:53:58.085 2024-02-22 21:53:58.085 100 FEE 435544 21541 6037104 2024-02-22 21:53:58.085 2024-02-22 21:53:58.085 900 TIP 435544 16447 6037132 2024-02-22 21:55:39.564 2024-02-22 21:55:39.564 2300 FEE 435497 20168 6037133 2024-02-22 21:55:39.564 2024-02-22 21:55:39.564 20700 TIP 435497 2326 6037144 2024-02-22 21:55:40.977 2024-02-22 21:55:40.977 2300 FEE 435497 2748 6037145 2024-02-22 21:55:40.977 2024-02-22 21:55:40.977 20700 TIP 435497 2789 6037192 2024-02-22 21:55:45.929 2024-02-22 21:55:45.929 2300 FEE 435497 21406 6037193 2024-02-22 21:55:45.929 2024-02-22 21:55:45.929 20700 TIP 435497 18832 6037194 2024-02-22 21:55:46.242 2024-02-22 21:55:46.242 2300 FEE 435497 19821 6037195 2024-02-22 21:55:46.242 2024-02-22 21:55:46.242 20700 TIP 435497 6515 6037224 2024-02-22 21:58:11.436 2024-02-22 21:58:11.436 1000 FEE 435574 20152 6037240 2024-02-22 22:03:11.477 2024-02-22 22:03:11.477 125000 FEE 435579 8998 6037243 2024-02-22 22:04:18.482 2024-02-22 22:04:18.482 100 FEE 435574 6537 6037244 2024-02-22 22:04:18.482 2024-02-22 22:04:18.482 900 TIP 435574 2774 6037245 2024-02-22 22:04:18.675 2024-02-22 22:04:18.675 900 FEE 435574 16876 6037246 2024-02-22 22:04:18.675 2024-02-22 22:04:18.675 8100 TIP 435574 20162 6037247 2024-02-22 22:04:20.468 2024-02-22 22:04:20.468 9000 FEE 435574 8796 6037248 2024-02-22 22:04:20.468 2024-02-22 22:04:20.468 81000 TIP 435574 5175 6037263 2024-02-22 22:05:30.828 2024-02-22 22:05:30.828 3000 FEE 435555 21275 6037264 2024-02-22 22:05:30.828 2024-02-22 22:05:30.828 27000 TIP 435555 21332 6037347 2024-02-22 22:12:02.875 2024-02-22 22:12:02.875 8300 FEE 435579 2961 6037348 2024-02-22 22:12:02.875 2024-02-22 22:12:02.875 74700 TIP 435579 9809 6037371 2024-02-22 22:14:10.214 2024-02-22 22:14:10.214 10000 FEE 435577 2162 6037372 2024-02-22 22:14:10.214 2024-02-22 22:14:10.214 90000 TIP 435577 9985 6037377 2024-02-22 22:15:25.553 2024-02-22 22:15:25.553 3300 FEE 435314 20778 6037378 2024-02-22 22:15:25.553 2024-02-22 22:15:25.553 29700 TIP 435314 14941 6037397 2024-02-22 22:16:13.579 2024-02-22 22:16:13.579 1000 POLL 435495 19158 6037432 2024-02-22 22:17:36.946 2024-02-22 22:17:36.946 200 FEE 435578 14152 6037433 2024-02-22 22:17:36.946 2024-02-22 22:17:36.946 1800 TIP 435578 6717 6037454 2024-02-22 22:21:40.209 2024-02-22 22:21:40.209 1000 FEE 435605 20302 6037462 2024-02-22 22:21:52.747 2024-02-22 22:21:52.747 100 FEE 435582 20781 6037463 2024-02-22 22:21:52.747 2024-02-22 22:21:52.747 900 TIP 435582 19690 6037490 2024-02-22 22:23:11.174 2024-02-22 22:23:11.174 400 FEE 435592 20647 6037491 2024-02-22 22:23:11.174 2024-02-22 22:23:11.174 3600 TIP 435592 18154 6037517 2024-02-22 22:29:05.974 2024-02-22 22:29:05.974 12800 FEE 435605 19281 6037518 2024-02-22 22:29:05.974 2024-02-22 22:29:05.974 115200 TIP 435605 1738 6037538 2024-02-22 22:34:24.27 2024-02-22 22:34:24.27 2500 FEE 435562 4027 6037539 2024-02-22 22:34:24.27 2024-02-22 22:34:24.27 22500 TIP 435562 760 6037553 2024-02-22 22:36:11.393 2024-02-22 22:36:11.393 10000 FEE 435328 10280 6037554 2024-02-22 22:36:11.393 2024-02-22 22:36:11.393 90000 TIP 435328 19613 6037577 2024-02-22 22:40:38.5 2024-02-22 22:40:38.5 0 FEE 435619 8326 6037580 2024-02-22 22:42:28.71 2024-02-22 22:42:28.71 0 FEE 435619 11999 6037584 2024-02-22 22:43:24.126 2024-02-22 22:43:24.126 2100 FEE 435551 20222 6037585 2024-02-22 22:43:24.126 2024-02-22 22:43:24.126 18900 TIP 435551 929 6037586 2024-02-22 22:43:24.617 2024-02-22 22:43:24.617 2100 FEE 435551 19126 6037587 2024-02-22 22:43:24.617 2024-02-22 22:43:24.617 18900 TIP 435551 661 6037603 2024-02-22 22:43:31.375 2024-02-22 22:43:31.375 2100 FEE 435328 844 6037604 2024-02-22 22:43:31.375 2024-02-22 22:43:31.375 18900 TIP 435328 913 6037619 2024-02-22 22:43:46.284 2024-02-22 22:43:46.284 2100 FEE 435458 21157 6037620 2024-02-22 22:43:46.284 2024-02-22 22:43:46.284 18900 TIP 435458 15594 6037641 2024-02-22 22:44:05.063 2024-02-22 22:44:05.063 0 FEE 435619 21242 6037647 2024-02-22 22:44:28.943 2024-02-22 22:44:28.943 0 FEE 435619 20257 6037660 2024-02-22 22:45:18.958 2024-02-22 22:45:18.958 2500 FEE 435489 20924 6037661 2024-02-22 22:45:18.958 2024-02-22 22:45:18.958 22500 TIP 435489 15484 6037691 2024-02-22 22:46:05.182 2024-02-22 22:46:05.182 1000 FEE 435622 16665 6037718 2024-02-22 22:47:26.2 2024-02-22 22:47:26.2 2100 FEE 434847 7877 6037719 2024-02-22 22:47:26.2 2024-02-22 22:47:26.2 18900 TIP 434847 18225 6037734 2024-02-22 22:47:34.058 2024-02-22 22:47:34.058 2100 FEE 435327 4313 6037735 2024-02-22 22:47:34.058 2024-02-22 22:47:34.058 18900 TIP 435327 15624 6037736 2024-02-22 22:47:34.245 2024-02-22 22:47:34.245 2100 FEE 435327 14905 6037737 2024-02-22 22:47:34.245 2024-02-22 22:47:34.245 18900 TIP 435327 17592 6037754 2024-02-22 22:47:46.022 2024-02-22 22:47:46.022 1000 FEE 435623 9099 6037755 2024-02-22 22:47:47.54 2024-02-22 22:47:47.54 300 FEE 435622 1478 6037756 2024-02-22 22:47:47.54 2024-02-22 22:47:47.54 2700 TIP 435622 18380 6037757 2024-02-22 22:47:47.699 2024-02-22 22:47:47.699 300 FEE 435622 1060 6037758 2024-02-22 22:47:47.699 2024-02-22 22:47:47.699 2700 TIP 435622 8569 6037761 2024-02-22 22:47:55.981 2024-02-22 22:47:55.981 1000 FEE 435624 11561 6037773 2024-02-22 22:48:00.727 2024-02-22 22:48:00.727 2100 FEE 435544 700 6037774 2024-02-22 22:48:00.727 2024-02-22 22:48:00.727 18900 TIP 435544 19435 6037794 2024-02-22 22:48:05.169 2024-02-22 22:48:05.169 1000 FEE 435579 10979 6037795 2024-02-22 22:48:05.169 2024-02-22 22:48:05.169 9000 TIP 435579 21349 6037816 2024-02-22 22:48:07.557 2024-02-22 22:48:07.557 4200 FEE 435544 11145 6037817 2024-02-22 22:48:07.557 2024-02-22 22:48:07.557 37800 TIP 435544 6555 6037824 2024-02-22 22:48:15.082 2024-02-22 22:48:15.082 2900 FEE 435551 2952 6037825 2024-02-22 22:48:15.082 2024-02-22 22:48:15.082 26100 TIP 435551 14795 6037826 2024-02-22 22:48:28.988 2024-02-22 22:48:28.988 3300 FEE 435532 4624 6037827 2024-02-22 22:48:28.988 2024-02-22 22:48:28.988 29700 TIP 435532 13378 6037841 2024-02-22 22:49:00.642 2024-02-22 22:49:00.642 2100 FEE 435328 20523 6037842 2024-02-22 22:49:00.642 2024-02-22 22:49:00.642 18900 TIP 435328 17030 6037853 2024-02-22 22:50:10.582 2024-02-22 22:50:10.582 3300 FEE 435468 12561 6037854 2024-02-22 22:50:10.582 2024-02-22 22:50:10.582 29700 TIP 435468 9705 6037855 2024-02-22 22:50:10.752 2024-02-22 22:50:10.752 3300 FEE 435468 8423 6037856 2024-02-22 22:50:10.752 2024-02-22 22:50:10.752 29700 TIP 435468 21238 6037857 2024-02-22 22:50:19.464 2024-02-22 22:50:19.464 100 FEE 435621 18231 6037858 2024-02-22 22:50:19.464 2024-02-22 22:50:19.464 900 TIP 435621 16301 6037859 2024-02-22 22:50:34.725 2024-02-22 22:50:34.725 1000 FEE 435629 3304 6037901 2024-02-22 22:59:16.973 2024-02-22 22:59:16.973 4000 FEE 435626 17162 6037902 2024-02-22 22:59:16.973 2024-02-22 22:59:16.973 36000 TIP 435626 825 6037903 2024-02-22 22:59:56.444 2024-02-22 22:59:56.444 10000 FEE 435583 21480 6037904 2024-02-22 22:59:56.444 2024-02-22 22:59:56.444 90000 TIP 435583 19806 6031340 2024-02-22 12:44:03.367 2024-02-22 12:44:03.367 1000 STREAM 141924 18525 6037182 2024-02-22 21:55:44.785 2024-02-22 21:55:44.785 2300 FEE 435497 11956 6037183 2024-02-22 21:55:44.785 2024-02-22 21:55:44.785 20700 TIP 435497 4062 6037196 2024-02-22 21:55:46.429 2024-02-22 21:55:46.429 2300 FEE 435497 9335 6037197 2024-02-22 21:55:46.429 2024-02-22 21:55:46.429 20700 TIP 435497 21356 6037211 2024-02-22 21:56:06.264 2024-02-22 21:56:06.264 1000 FEE 435573 18235 6037218 2024-02-22 21:57:02.102 2024-02-22 21:57:02.102 2100 FEE 435345 13763 6037219 2024-02-22 21:57:02.102 2024-02-22 21:57:02.102 18900 TIP 435345 9345 6037233 2024-02-22 22:01:27.751 2024-02-22 22:01:27.751 1000 FEE 435578 16769 6037250 2024-02-22 22:04:57.775 2024-02-22 22:04:57.775 3000 FEE 435504 15337 6037251 2024-02-22 22:04:57.775 2024-02-22 22:04:57.775 27000 TIP 435504 7097 6037261 2024-02-22 22:05:29.367 2024-02-22 22:05:29.367 3000 FEE 435553 16149 6037262 2024-02-22 22:05:29.367 2024-02-22 22:05:29.367 27000 TIP 435553 1631 6037268 2024-02-22 22:06:06.073 2024-02-22 22:06:06.073 1000 FEE 435043 17201 6037269 2024-02-22 22:06:06.073 2024-02-22 22:06:06.073 9000 TIP 435043 4798 6037279 2024-02-22 22:06:59.02 2024-02-22 22:06:59.02 100 FEE 435575 4314 6037280 2024-02-22 22:06:59.02 2024-02-22 22:06:59.02 900 TIP 435575 18511 6037304 2024-02-22 22:08:11.602 2024-02-22 22:08:11.602 100 FEE 435565 18877 6037305 2024-02-22 22:08:11.602 2024-02-22 22:08:11.602 900 TIP 435565 674 6037328 2024-02-22 22:10:28.081 2024-02-22 22:10:28.081 4000 FEE 435458 1737 6037329 2024-02-22 22:10:28.081 2024-02-22 22:10:28.081 36000 TIP 435458 5527 6037342 2024-02-22 22:11:51.976 2024-02-22 22:11:51.976 2100 FEE 435577 15367 6037343 2024-02-22 22:11:51.976 2024-02-22 22:11:51.976 18900 TIP 435577 910 6037379 2024-02-22 22:15:34.922 2024-02-22 22:15:34.922 10000 FEE 435596 6383 6037436 2024-02-22 22:17:39.139 2024-02-22 22:17:39.139 1000 FEE 435599 14905 6037446 2024-02-22 22:18:41.007 2024-02-22 22:18:41.007 42000 FEE 435602 20717 6037452 2024-02-22 22:20:52.972 2024-02-22 22:20:52.972 1000 FEE 435604 4388 6037501 2024-02-22 22:28:00.207 2024-02-22 22:28:00.207 1000 FEE 435611 7891 6037532 2024-02-22 22:33:46.86 2024-02-22 22:33:46.86 5000 FEE 435613 17218 6037533 2024-02-22 22:33:46.86 2024-02-22 22:33:46.86 45000 TIP 435613 20754 6037560 2024-02-22 22:37:55.666 2024-02-22 22:37:55.666 1000 FEE 435617 4487 6037597 2024-02-22 22:43:30.452 2024-02-22 22:43:30.452 2100 FEE 435328 822 6037598 2024-02-22 22:43:30.452 2024-02-22 22:43:30.452 18900 TIP 435328 7674 6037607 2024-02-22 22:43:41.852 2024-02-22 22:43:41.852 900 FEE 435619 19622 6037608 2024-02-22 22:43:41.852 2024-02-22 22:43:41.852 8100 TIP 435619 18909 6037615 2024-02-22 22:43:45.386 2024-02-22 22:43:45.386 2100 FEE 435458 2614 6037616 2024-02-22 22:43:45.386 2024-02-22 22:43:45.386 18900 TIP 435458 18460 6037625 2024-02-22 22:43:54.081 2024-02-22 22:43:54.081 2100 FEE 435154 9920 6037626 2024-02-22 22:43:54.081 2024-02-22 22:43:54.081 18900 TIP 435154 16704 6037636 2024-02-22 22:43:59.714 2024-02-22 22:43:59.714 2100 FEE 435402 992 6037637 2024-02-22 22:43:59.714 2024-02-22 22:43:59.714 18900 TIP 435402 7986 6037646 2024-02-22 22:44:20.63 2024-02-22 22:44:20.63 0 FEE 435619 21522 6037650 2024-02-22 22:44:29.269 2024-02-22 22:44:29.269 900 FEE 435596 5520 6037651 2024-02-22 22:44:29.269 2024-02-22 22:44:29.269 8100 TIP 435596 15526 6037664 2024-02-22 22:45:20.416 2024-02-22 22:45:20.416 1000 FEE 435453 20299 6037665 2024-02-22 22:45:20.416 2024-02-22 22:45:20.416 9000 TIP 435453 760 6037698 2024-02-22 22:46:51.248 2024-02-22 22:46:51.248 2500 FEE 435489 6268 6037699 2024-02-22 22:46:51.248 2024-02-22 22:46:51.248 22500 TIP 435489 18736 6037714 2024-02-22 22:47:23.529 2024-02-22 22:47:23.529 2100 FEE 434857 9833 6037715 2024-02-22 22:47:23.529 2024-02-22 22:47:23.529 18900 TIP 434857 6164 6037748 2024-02-22 22:47:42.07 2024-02-22 22:47:42.07 2100 FEE 435030 1135 6037749 2024-02-22 22:47:42.07 2024-02-22 22:47:42.07 18900 TIP 435030 18378 6037752 2024-02-22 22:47:42.539 2024-02-22 22:47:42.539 2100 FEE 435030 12921 6037753 2024-02-22 22:47:42.539 2024-02-22 22:47:42.539 18900 TIP 435030 18897 6037759 2024-02-22 22:47:47.889 2024-02-22 22:47:47.889 300 FEE 435622 12609 6037760 2024-02-22 22:47:47.889 2024-02-22 22:47:47.889 2700 TIP 435622 10409 6037763 2024-02-22 22:47:59.563 2024-02-22 22:47:59.563 2100 FEE 435544 20924 6037764 2024-02-22 22:47:59.563 2024-02-22 22:47:59.563 18900 TIP 435544 5487 6037798 2024-02-22 22:48:05.673 2024-02-22 22:48:05.673 2100 FEE 435544 16970 6037799 2024-02-22 22:48:05.673 2024-02-22 22:48:05.673 18900 TIP 435544 21058 6037832 2024-02-22 22:48:33.131 2024-02-22 22:48:33.131 3300 FEE 435458 10283 6037833 2024-02-22 22:48:33.131 2024-02-22 22:48:33.131 29700 TIP 435458 3396 6037849 2024-02-22 22:50:01.055 2024-02-22 22:50:01.055 1000 FEE 435628 2204 6031369 2024-02-22 12:50:33.021 2024-02-22 12:50:33.021 1000 FEE 434915 21427 6031381 2024-02-22 12:51:40.069 2024-02-22 12:51:40.069 125000 FEE 434918 10934 6031385 2024-02-22 12:52:12.396 2024-02-22 12:52:12.396 1000 FEE 434919 20891 6031386 2024-02-22 12:52:13.911 2024-02-22 12:52:13.911 1000 FEE 434902 1175 6031387 2024-02-22 12:52:13.911 2024-02-22 12:52:13.911 9000 TIP 434902 16348 6031398 2024-02-22 12:53:53.985 2024-02-22 12:53:53.985 4000 FEE 434921 5828 6031399 2024-02-22 12:53:53.985 2024-02-22 12:53:53.985 36000 TIP 434921 13406 6031424 2024-02-22 12:55:43.537 2024-02-22 12:55:43.537 1100 FEE 434916 2039 6031425 2024-02-22 12:55:43.537 2024-02-22 12:55:43.537 9900 TIP 434916 21469 6031432 2024-02-22 12:56:06.42 2024-02-22 12:56:06.42 2100 FEE 434754 1474 6031433 2024-02-22 12:56:06.42 2024-02-22 12:56:06.42 18900 TIP 434754 17106 6031438 2024-02-22 12:57:30.142 2024-02-22 12:57:30.142 2200 FEE 434902 10862 6031439 2024-02-22 12:57:30.142 2024-02-22 12:57:30.142 19800 TIP 434902 20436 6031464 2024-02-22 13:01:24.065 2024-02-22 13:01:24.065 1100 FEE 434926 20220 6031465 2024-02-22 13:01:24.065 2024-02-22 13:01:24.065 9900 TIP 434926 20881 6031471 2024-02-22 13:02:41.334 2024-02-22 13:02:41.334 10000 FEE 434931 638 6031472 2024-02-22 13:02:49.528 2024-02-22 13:02:49.528 200 FEE 434931 19843 6031473 2024-02-22 13:02:49.528 2024-02-22 13:02:49.528 1800 TIP 434931 18518 6031496 2024-02-22 13:05:34.953 2024-02-22 13:05:34.953 9000 FEE 434927 20715 6031497 2024-02-22 13:05:34.953 2024-02-22 13:05:34.953 81000 TIP 434927 21421 6031503 2024-02-22 13:07:40.972 2024-02-22 13:07:40.972 10000 FEE 433123 14169 6031504 2024-02-22 13:07:40.972 2024-02-22 13:07:40.972 90000 TIP 433123 14278 6031518 2024-02-22 13:08:12.607 2024-02-22 13:08:12.607 900 FEE 434619 12951 6031519 2024-02-22 13:08:12.607 2024-02-22 13:08:12.607 8100 TIP 434619 18403 6031534 2024-02-22 13:08:56.677 2024-02-22 13:08:56.677 20000 FEE 432920 986 6031535 2024-02-22 13:08:56.677 2024-02-22 13:08:56.677 180000 TIP 432920 993 6031542 2024-02-22 13:09:04.293 2024-02-22 13:09:04.293 10000 FEE 434939 21291 6031543 2024-02-22 13:09:24.28 2024-02-22 13:09:24.28 1000 FEE 434940 21116 6031545 2024-02-22 13:09:40.69 2024-02-22 13:09:40.69 100 FEE 434641 3729 6031546 2024-02-22 13:09:40.69 2024-02-22 13:09:40.69 900 TIP 434641 12278 6031560 2024-02-22 13:10:39.574 2024-02-22 13:10:39.574 10000 FEE 434941 6202 6031572 2024-02-22 13:11:10.739 2024-02-22 13:11:10.739 900 FEE 434703 1576 6031573 2024-02-22 13:11:10.739 2024-02-22 13:11:10.739 8100 TIP 434703 21413 6031579 2024-02-22 13:12:07.876 2024-02-22 13:12:07.876 100000 DONT_LIKE_THIS 434785 20337 6031584 2024-02-22 13:12:25.348 2024-02-22 13:12:25.348 9000 FEE 434791 20563 6031585 2024-02-22 13:12:25.348 2024-02-22 13:12:25.348 81000 TIP 434791 19557 6031586 2024-02-22 13:12:30.353 2024-02-22 13:12:30.353 3000 FEE 434790 6537 6031587 2024-02-22 13:12:30.353 2024-02-22 13:12:30.353 27000 TIP 434790 17455 6031599 2024-02-22 13:15:14.302 2024-02-22 13:15:14.302 2100 FEE 434703 11328 6031600 2024-02-22 13:15:14.302 2024-02-22 13:15:14.302 18900 TIP 434703 18774 6031608 2024-02-22 13:17:56.143 2024-02-22 13:17:56.143 1000 FEE 434784 627 6031609 2024-02-22 13:17:56.143 2024-02-22 13:17:56.143 9000 TIP 434784 4650 6031642 2024-02-22 13:24:36.058 2024-02-22 13:24:36.058 1000 FEE 434952 1534 6031665 2024-02-22 13:29:18.048 2024-02-22 13:29:18.048 2100 FEE 434665 5520 6031666 2024-02-22 13:29:18.048 2024-02-22 13:29:18.048 18900 TIP 434665 17221 6031710 2024-02-22 13:32:08.08 2024-02-22 13:32:08.08 10000 FEE 434962 21540 6031720 2024-02-22 13:33:56.459 2024-02-22 13:33:56.459 1000 FEE 434964 5708 6031727 2024-02-22 13:34:29.05 2024-02-22 13:34:29.05 0 FEE 38225 9496 6031730 2024-02-22 13:35:22.754 2024-02-22 13:35:22.754 2100 FEE 434952 15510 6031731 2024-02-22 13:35:22.754 2024-02-22 13:35:22.754 18900 TIP 434952 21609 6031755 2024-02-22 13:35:40.022 2024-02-22 13:35:40.022 2100 FEE 434879 18040 6031756 2024-02-22 13:35:40.022 2024-02-22 13:35:40.022 18900 TIP 434879 18511 6031769 2024-02-22 13:35:51.996 2024-02-22 13:35:51.996 2100 FEE 434804 20511 6031770 2024-02-22 13:35:51.996 2024-02-22 13:35:51.996 18900 TIP 434804 19639 6031784 2024-02-22 13:36:52.603 2024-02-22 13:36:52.603 2100 FEE 434637 11678 6031785 2024-02-22 13:36:52.603 2024-02-22 13:36:52.603 18900 TIP 434637 963 6031787 2024-02-22 13:37:59.449 2024-02-22 13:37:59.449 4000 FEE 434969 7659 6031788 2024-02-22 13:37:59.449 2024-02-22 13:37:59.449 36000 TIP 434969 13361 6031800 2024-02-22 13:39:26.123 2024-02-22 13:39:26.123 2100 FEE 434628 21083 6031801 2024-02-22 13:39:26.123 2024-02-22 13:39:26.123 18900 TIP 434628 21441 6031806 2024-02-22 13:39:40.597 2024-02-22 13:39:40.597 1000 FEE 434962 16357 6031807 2024-02-22 13:39:40.597 2024-02-22 13:39:40.597 9000 TIP 434962 11820 6031814 2024-02-22 13:39:41.941 2024-02-22 13:39:41.941 1000 FEE 434962 18629 6031815 2024-02-22 13:39:41.941 2024-02-22 13:39:41.941 9000 TIP 434962 19142 6031841 2024-02-22 13:41:02.509 2024-02-22 13:41:02.509 1300 FEE 434903 691 6031842 2024-02-22 13:41:02.509 2024-02-22 13:41:02.509 11700 TIP 434903 21178 6031878 2024-02-22 13:45:44.091 2024-02-22 13:45:44.091 2100 FEE 434278 2829 6031879 2024-02-22 13:45:44.091 2024-02-22 13:45:44.091 18900 TIP 434278 3478 6031880 2024-02-22 13:45:49.89 2024-02-22 13:45:49.89 1000 FEE 434979 4177 6031911 2024-02-22 13:49:36.183 2024-02-22 13:49:36.183 1100 FEE 434627 1320 6031912 2024-02-22 13:49:36.183 2024-02-22 13:49:36.183 9900 TIP 434627 16965 6031937 2024-02-22 13:54:04.286 2024-02-22 13:54:04.286 1000 FEE 434985 11819 6031952 2024-02-22 13:55:14.091 2024-02-22 13:55:14.091 100 FEE 434440 3392 6031953 2024-02-22 13:55:14.091 2024-02-22 13:55:14.091 900 TIP 434440 20376 6031954 2024-02-22 13:55:14.441 2024-02-22 13:55:14.441 100 FEE 434440 17184 6031955 2024-02-22 13:55:14.441 2024-02-22 13:55:14.441 900 TIP 434440 20327 6031959 2024-02-22 13:55:57.297 2024-02-22 13:55:57.297 1000 FEE 434989 21603 6031981 2024-02-22 13:56:54.77 2024-02-22 13:56:54.77 8300 FEE 434791 21104 6031982 2024-02-22 13:56:54.77 2024-02-22 13:56:54.77 74700 TIP 434791 5806 6032022 2024-02-22 14:00:05.821 2024-02-22 14:00:05.821 1000 FEE 434993 3518 6032047 2024-02-22 14:04:56.067 2024-02-22 14:04:56.067 10200 FEE 434617 19375 6032048 2024-02-22 14:04:56.067 2024-02-22 14:04:56.067 91800 TIP 434617 1438 6032052 2024-02-22 14:05:08.317 2024-02-22 14:05:08.317 1600 FEE 434997 1047 6032053 2024-02-22 14:05:08.317 2024-02-22 14:05:08.317 14400 TIP 434997 650 6032069 2024-02-22 14:06:47.91 2024-02-22 14:06:47.91 2500 FEE 434864 21555 6032070 2024-02-22 14:06:47.91 2024-02-22 14:06:47.91 22500 TIP 434864 17953 6032071 2024-02-22 14:06:53.115 2024-02-22 14:06:53.115 1000 FEE 435004 1652 6032079 2024-02-22 14:07:18.921 2024-02-22 14:07:18.921 10000 FEE 435007 14225 6032082 2024-02-22 14:07:44.358 2024-02-22 14:07:44.358 27000 FEE 433865 9920 6032083 2024-02-22 14:07:44.358 2024-02-22 14:07:44.358 243000 TIP 433865 18637 6032096 2024-02-22 14:10:06.521 2024-02-22 14:10:06.521 1100 FEE 434615 5359 6032097 2024-02-22 14:10:06.521 2024-02-22 14:10:06.521 9900 TIP 434615 19572 6032100 2024-02-22 14:10:07.537 2024-02-22 14:10:07.537 8300 FEE 434994 20381 6032101 2024-02-22 14:10:07.537 2024-02-22 14:10:07.537 74700 TIP 434994 1195 6032106 2024-02-22 14:11:46.924 2024-02-22 14:11:46.924 1000 FEE 435013 21021 6032110 2024-02-22 14:12:58.047 2024-02-22 14:12:58.047 8300 FEE 434556 6361 6032111 2024-02-22 14:12:58.047 2024-02-22 14:12:58.047 74700 TIP 434556 21072 6032125 2024-02-22 14:16:13.935 2024-02-22 14:16:13.935 100000 FEE 435017 5427 6032136 2024-02-22 14:18:00.325 2024-02-22 14:18:00.325 3000 FEE 434958 1577 6032137 2024-02-22 14:18:00.325 2024-02-22 14:18:00.325 27000 TIP 434958 4014 6032138 2024-02-22 14:18:00.766 2024-02-22 14:18:00.766 300 FEE 434846 11144 6031400 2024-02-22 12:54:03.235 2024-02-22 12:54:03.235 1000 STREAM 141924 19103 6031437 2024-02-22 12:57:03.25 2024-02-22 12:57:03.25 1000 STREAM 141924 4692 6031441 2024-02-22 12:58:03.246 2024-02-22 12:58:03.246 1000 STREAM 141924 21042 6031458 2024-02-22 13:00:03.293 2024-02-22 13:00:03.293 1000 STREAM 141924 1845 6031470 2024-02-22 13:02:03.282 2024-02-22 13:02:03.282 1000 STREAM 141924 9920 6031601 2024-02-22 13:16:03.369 2024-02-22 13:16:03.369 1000 STREAM 141924 19810 6031605 2024-02-22 13:17:03.359 2024-02-22 13:17:03.359 1000 STREAM 141924 13878 6031616 2024-02-22 13:20:03.39 2024-02-22 13:20:03.39 1000 STREAM 141924 706 6031633 2024-02-22 13:23:03.395 2024-02-22 13:23:03.395 1000 STREAM 141924 15491 6031641 2024-02-22 13:24:03.404 2024-02-22 13:24:03.404 1000 STREAM 141924 18241 6031698 2024-02-22 13:31:03.461 2024-02-22 13:31:03.461 1000 STREAM 141924 16357 6031777 2024-02-22 13:36:03.453 2024-02-22 13:36:03.453 1000 STREAM 141924 4958 6031827 2024-02-22 13:40:03.475 2024-02-22 13:40:03.475 1000 STREAM 141924 20706 6031843 2024-02-22 13:41:03.502 2024-02-22 13:41:03.502 1000 STREAM 141924 21369 6031864 2024-02-22 13:43:03.497 2024-02-22 13:43:03.497 1000 STREAM 141924 5779 6031873 2024-02-22 13:45:03.508 2024-02-22 13:45:03.508 1000 STREAM 141924 1002 6031892 2024-02-22 13:47:03.518 2024-02-22 13:47:03.518 1000 STREAM 141924 2327 6031908 2024-02-22 13:49:03.546 2024-02-22 13:49:03.546 1000 STREAM 141924 17984 6031921 2024-02-22 13:50:03.528 2024-02-22 13:50:03.528 1000 STREAM 141924 19087 6031930 2024-02-22 13:51:03.525 2024-02-22 13:51:03.525 1000 STREAM 141924 18208 6031931 2024-02-22 13:52:03.513 2024-02-22 13:52:03.513 1000 STREAM 141924 18784 6031934 2024-02-22 13:53:03.516 2024-02-22 13:53:03.516 1000 STREAM 141924 18448 6031936 2024-02-22 13:54:03.514 2024-02-22 13:54:03.514 1000 STREAM 141924 16212 6031946 2024-02-22 13:55:03.528 2024-02-22 13:55:03.528 1000 STREAM 141924 16097 6031993 2024-02-22 13:57:03.529 2024-02-22 13:57:03.529 1000 STREAM 141924 10016 6032019 2024-02-22 13:59:03.532 2024-02-22 13:59:03.532 1000 STREAM 141924 13042 6032020 2024-02-22 14:00:03.56 2024-02-22 14:00:03.56 1000 STREAM 141924 6687 6032024 2024-02-22 14:01:03.565 2024-02-22 14:01:03.565 1000 STREAM 141924 1717 6032044 2024-02-22 14:04:03.567 2024-02-22 14:04:03.567 1000 STREAM 141924 1609 6032093 2024-02-22 14:10:03.619 2024-02-22 14:10:03.619 1000 STREAM 141924 19282 6032103 2024-02-22 14:11:03.634 2024-02-22 14:11:03.634 1000 STREAM 141924 17291 6032114 2024-02-22 14:13:03.618 2024-02-22 14:13:03.618 1000 STREAM 141924 17321 6032120 2024-02-22 14:14:03.615 2024-02-22 14:14:03.615 1000 STREAM 141924 18321 6032156 2024-02-22 14:20:03.654 2024-02-22 14:20:03.654 1000 STREAM 141924 13553 6032167 2024-02-22 14:22:03.653 2024-02-22 14:22:03.653 1000 STREAM 141924 5758 6032201 2024-02-22 14:25:03.671 2024-02-22 14:25:03.671 1000 STREAM 141924 17541 6032216 2024-02-22 14:26:03.682 2024-02-22 14:26:03.682 1000 STREAM 141924 19938 6032229 2024-02-22 14:27:03.671 2024-02-22 14:27:03.671 1000 STREAM 141924 16193 6032251 2024-02-22 14:28:03.685 2024-02-22 14:28:03.685 1000 STREAM 141924 656 6032254 2024-02-22 14:29:03.684 2024-02-22 14:29:03.684 1000 STREAM 141924 20109 6032273 2024-02-22 14:31:03.687 2024-02-22 14:31:03.687 1000 STREAM 141924 19852 6032315 2024-02-22 14:37:03.733 2024-02-22 14:37:03.733 1000 STREAM 141924 6361 6032395 2024-02-22 14:46:03.795 2024-02-22 14:46:03.795 1000 STREAM 141924 19151 6032444 2024-02-22 14:50:03.814 2024-02-22 14:50:03.814 1000 STREAM 141924 676 6037241 2024-02-22 22:03:14.094 2024-02-22 22:03:14.094 1000 FEE 435580 16950 6037265 2024-02-22 22:06:00.82 2024-02-22 22:06:00.82 1000 FEE 434878 10056 6037266 2024-02-22 22:06:00.82 2024-02-22 22:06:00.82 9000 TIP 434878 21416 6037273 2024-02-22 22:06:57.988 2024-02-22 22:06:57.988 100 FEE 435575 946 6037274 2024-02-22 22:06:57.988 2024-02-22 22:06:57.988 900 TIP 435575 9426 6037326 2024-02-22 22:10:24.523 2024-02-22 22:10:24.523 4000 FEE 435457 20291 6037327 2024-02-22 22:10:24.523 2024-02-22 22:10:24.523 36000 TIP 435457 12261 6037339 2024-02-22 22:11:10.238 2024-02-22 22:11:10.238 1000 FEE 435589 20430 6031474 2024-02-22 13:03:03.219 2024-02-22 13:03:03.219 1000 STREAM 141924 2233 6031499 2024-02-22 13:06:03.256 2024-02-22 13:06:03.256 1000 STREAM 141924 798 6031511 2024-02-22 13:08:03.268 2024-02-22 13:08:03.268 1000 STREAM 141924 7899 6031551 2024-02-22 13:10:03.281 2024-02-22 13:10:03.281 1000 STREAM 141924 13177 6031578 2024-02-22 13:12:03.308 2024-02-22 13:12:03.308 1000 STREAM 141924 2609 6031598 2024-02-22 13:15:03.291 2024-02-22 13:15:03.291 1000 STREAM 141924 10273 6037254 2024-02-22 22:05:02.913 2024-02-22 22:05:02.913 1000 STREAM 141924 21281 6037283 2024-02-22 22:07:02.912 2024-02-22 22:07:02.912 1000 STREAM 141924 21352 6037315 2024-02-22 22:09:02.912 2024-02-22 22:09:02.912 1000 STREAM 141924 2577 6037338 2024-02-22 22:11:02.918 2024-02-22 22:11:02.918 1000 STREAM 141924 18837 6037389 2024-02-22 22:16:02.919 2024-02-22 22:16:02.919 1000 STREAM 141924 19352 6037411 2024-02-22 22:17:02.945 2024-02-22 22:17:02.945 1000 STREAM 141924 20691 6038767 2024-02-23 00:51:45.027 2024-02-23 00:51:45.027 70000 FEE 435721 9159 6038781 2024-02-23 00:54:28.363 2024-02-23 00:54:28.363 27000 FEE 435657 9336 6038782 2024-02-23 00:54:28.363 2024-02-23 00:54:28.363 243000 TIP 435657 3392 6038785 2024-02-23 00:54:37.725 2024-02-23 00:54:37.725 1100 FEE 435475 4292 6038786 2024-02-23 00:54:37.725 2024-02-23 00:54:37.725 9900 TIP 435475 681 6038792 2024-02-23 00:57:26.954 2024-02-23 00:57:26.954 100 FEE 435610 20922 6038793 2024-02-23 00:57:26.954 2024-02-23 00:57:26.954 900 TIP 435610 19987 6038845 2024-02-23 01:11:13.451 2024-02-23 01:11:13.451 7700 FEE 434263 1723 6038846 2024-02-23 01:11:13.451 2024-02-23 01:11:13.451 69300 TIP 434263 9992 6038847 2024-02-23 01:11:14.963 2024-02-23 01:11:14.963 7700 FEE 434263 21437 6038848 2024-02-23 01:11:14.963 2024-02-23 01:11:14.963 69300 TIP 434263 1534 6038849 2024-02-23 01:11:15.081 2024-02-23 01:11:15.081 7700 FEE 434263 20979 6038850 2024-02-23 01:11:15.081 2024-02-23 01:11:15.081 69300 TIP 434263 21271 6038851 2024-02-23 01:11:15.21 2024-02-23 01:11:15.21 7700 FEE 434263 18941 6038852 2024-02-23 01:11:15.21 2024-02-23 01:11:15.21 69300 TIP 434263 5085 6038859 2024-02-23 01:11:15.72 2024-02-23 01:11:15.72 7700 FEE 434263 15544 6038860 2024-02-23 01:11:15.72 2024-02-23 01:11:15.72 69300 TIP 434263 12057 6038861 2024-02-23 01:11:16.06 2024-02-23 01:11:16.06 15400 FEE 434263 16556 6038862 2024-02-23 01:11:16.06 2024-02-23 01:11:16.06 138600 TIP 434263 10469 6038898 2024-02-23 01:21:54.883 2024-02-23 01:21:54.883 0 FEE 435742 11263 6031478 2024-02-22 13:04:03.229 2024-02-22 13:04:03.229 1000 STREAM 141924 2711 6031480 2024-02-22 13:05:03.241 2024-02-22 13:05:03.241 1000 STREAM 141924 795 6031502 2024-02-22 13:07:03.293 2024-02-22 13:07:03.293 1000 STREAM 141924 16505 6031537 2024-02-22 13:09:03.273 2024-02-22 13:09:03.273 1000 STREAM 141924 720 6031569 2024-02-22 13:11:03.294 2024-02-22 13:11:03.294 1000 STREAM 141924 714 6031592 2024-02-22 13:13:03.303 2024-02-22 13:13:03.303 1000 STREAM 141924 1836 6031597 2024-02-22 13:14:03.292 2024-02-22 13:14:03.292 1000 STREAM 141924 18270 6037357 2024-02-22 22:12:13.821 2024-02-22 22:12:13.821 8300 FEE 435551 4035 6037358 2024-02-22 22:12:13.821 2024-02-22 22:12:13.821 74700 TIP 435551 18344 6037385 2024-02-22 22:15:49.149 2024-02-22 22:15:49.149 8300 FEE 435596 20084 6037386 2024-02-22 22:15:49.149 2024-02-22 22:15:49.149 74700 TIP 435596 4059 6037394 2024-02-22 22:16:06.987 2024-02-22 22:16:06.987 8300 FEE 435457 13759 6037395 2024-02-22 22:16:06.987 2024-02-22 22:16:06.987 74700 TIP 435457 20778 6037409 2024-02-22 22:17:00.915 2024-02-22 22:17:00.915 10000 FEE 435564 21155 6037410 2024-02-22 22:17:00.915 2024-02-22 22:17:00.915 90000 TIP 435564 9758 6037416 2024-02-22 22:17:27.968 2024-02-22 22:17:27.968 3000 FEE 435589 1354 6037417 2024-02-22 22:17:27.968 2024-02-22 22:17:27.968 27000 TIP 435589 2735 6037418 2024-02-22 22:17:34.223 2024-02-22 22:17:34.223 100 FEE 435578 2065 6037419 2024-02-22 22:17:34.223 2024-02-22 22:17:34.223 900 TIP 435578 13987 6037428 2024-02-22 22:17:35.931 2024-02-22 22:17:35.931 100 FEE 435578 4126 6037429 2024-02-22 22:17:35.931 2024-02-22 22:17:35.931 900 TIP 435578 19976 6037447 2024-02-22 22:18:47.087 2024-02-22 22:18:47.087 1000 FEE 435178 5308 6037448 2024-02-22 22:18:47.087 2024-02-22 22:18:47.087 9000 TIP 435178 18816 6037455 2024-02-22 22:21:41.675 2024-02-22 22:21:41.675 3000 FEE 435566 1320 6037456 2024-02-22 22:21:41.675 2024-02-22 22:21:41.675 27000 TIP 435566 18640 6037474 2024-02-22 22:21:55.739 2024-02-22 22:21:55.739 100 FEE 435582 13759 6037475 2024-02-22 22:21:55.739 2024-02-22 22:21:55.739 900 TIP 435582 1697 6037486 2024-02-22 22:23:09.829 2024-02-22 22:23:09.829 400 FEE 435586 14258 6037487 2024-02-22 22:23:09.829 2024-02-22 22:23:09.829 3600 TIP 435586 12218 6037498 2024-02-22 22:27:04.571 2024-02-22 22:27:04.571 100000 FEE 435610 14657 6037499 2024-02-22 22:27:16.861 2024-02-22 22:27:16.861 1000 FEE 435599 2042 6037500 2024-02-22 22:27:16.861 2024-02-22 22:27:16.861 9000 TIP 435599 13782 6037506 2024-02-22 22:28:47.013 2024-02-22 22:28:47.013 1000 FEE 435328 4487 6037507 2024-02-22 22:28:47.013 2024-02-22 22:28:47.013 9000 TIP 435328 20129 6037519 2024-02-22 22:29:11.157 2024-02-22 22:29:11.157 1000 FEE 435030 21332 6037520 2024-02-22 22:29:11.157 2024-02-22 22:29:11.157 9000 TIP 435030 1298 6037525 2024-02-22 22:31:16.925 2024-02-22 22:31:16.925 0 FEE 435610 15806 6037549 2024-02-22 22:36:10.05 2024-02-22 22:36:10.05 10000 FEE 435328 20045 6037550 2024-02-22 22:36:10.05 2024-02-22 22:36:10.05 90000 TIP 435328 16350 6037557 2024-02-22 22:37:28.18 2024-02-22 22:37:28.18 1000 FEE 435616 7097 6037563 2024-02-22 22:38:43.786 2024-02-22 22:38:43.786 1000 POLL 435495 20710 6037565 2024-02-22 22:39:20.983 2024-02-22 22:39:20.983 1000 FEE 435328 725 6037566 2024-02-22 22:39:20.983 2024-02-22 22:39:20.983 9000 TIP 435328 14857 6037588 2024-02-22 22:43:25.757 2024-02-22 22:43:25.757 2100 FEE 435551 986 6037589 2024-02-22 22:43:25.757 2024-02-22 22:43:25.757 18900 TIP 435551 2735 6031481 2024-02-22 13:05:13.958 2024-02-22 13:05:13.958 100 FEE 434740 4798 6031482 2024-02-22 13:05:13.958 2024-02-22 13:05:13.958 900 TIP 434740 18675 6031554 2024-02-22 13:10:23.949 2024-02-22 13:10:23.949 100 FEE 434665 18231 6031555 2024-02-22 13:10:23.949 2024-02-22 13:10:23.949 900 TIP 434665 6260 6031563 2024-02-22 13:10:49.446 2024-02-22 13:10:49.446 100 FEE 434695 14857 6031564 2024-02-22 13:10:49.446 2024-02-22 13:10:49.446 900 TIP 434695 9418 6031582 2024-02-22 13:12:24.392 2024-02-22 13:12:24.392 900 FEE 434791 3706 6031583 2024-02-22 13:12:24.392 2024-02-22 13:12:24.392 8100 TIP 434791 2537 6031590 2024-02-22 13:12:46.528 2024-02-22 13:12:46.528 900 FEE 434838 16929 6031591 2024-02-22 13:12:46.528 2024-02-22 13:12:46.528 8100 TIP 434838 16250 6031630 2024-02-22 13:22:34.225 2024-02-22 13:22:34.225 1000 FEE 434950 1801 6031638 2024-02-22 13:23:12.903 2024-02-22 13:23:12.903 27000 FEE 434440 736 6031639 2024-02-22 13:23:12.903 2024-02-22 13:23:12.903 243000 TIP 434440 2010 6031683 2024-02-22 13:30:17.467 2024-02-22 13:30:17.467 300 FEE 426444 18208 6031684 2024-02-22 13:30:17.467 2024-02-22 13:30:17.467 2700 TIP 426444 5852 6031685 2024-02-22 13:30:23.061 2024-02-22 13:30:23.061 300 FEE 422673 21491 6031686 2024-02-22 13:30:23.061 2024-02-22 13:30:23.061 2700 TIP 422673 19981 6031687 2024-02-22 13:30:24.806 2024-02-22 13:30:24.806 100 FEE 330735 777 6031688 2024-02-22 13:30:24.806 2024-02-22 13:30:24.806 900 TIP 330735 19941 6031693 2024-02-22 13:30:35.535 2024-02-22 13:30:35.535 1000 FEE 434959 12768 6031699 2024-02-22 13:31:13.318 2024-02-22 13:31:13.318 2100 FEE 434922 20738 6031700 2024-02-22 13:31:13.318 2024-02-22 13:31:13.318 18900 TIP 434922 18945 6031703 2024-02-22 13:31:20.836 2024-02-22 13:31:20.836 2100 FEE 434888 18230 6031704 2024-02-22 13:31:20.836 2024-02-22 13:31:20.836 18900 TIP 434888 21239 6031719 2024-02-22 13:33:42.23 2024-02-22 13:33:42.23 0 FEE 434963 20655 6031734 2024-02-22 13:35:25.051 2024-02-22 13:35:25.051 0 FEE 434965 880 6031737 2024-02-22 13:35:28.495 2024-02-22 13:35:28.495 2100 FEE 434842 18673 6031738 2024-02-22 13:35:28.495 2024-02-22 13:35:28.495 18900 TIP 434842 4175 6031743 2024-02-22 13:35:32.323 2024-02-22 13:35:32.323 2100 FEE 434801 16410 6031744 2024-02-22 13:35:32.323 2024-02-22 13:35:32.323 18900 TIP 434801 21521 6031747 2024-02-22 13:35:34.293 2024-02-22 13:35:34.293 2100 FEE 434820 956 6031748 2024-02-22 13:35:34.293 2024-02-22 13:35:34.293 18900 TIP 434820 7395 6031753 2024-02-22 13:35:38.363 2024-02-22 13:35:38.363 2100 FEE 434866 16354 6031754 2024-02-22 13:35:38.363 2024-02-22 13:35:38.363 18900 TIP 434866 21521 6031760 2024-02-22 13:35:43.727 2024-02-22 13:35:43.727 2100 FEE 434921 12188 6031761 2024-02-22 13:35:43.727 2024-02-22 13:35:43.727 18900 TIP 434921 9816 6031773 2024-02-22 13:35:53.624 2024-02-22 13:35:53.624 2100 FEE 434829 697 6031774 2024-02-22 13:35:53.624 2024-02-22 13:35:53.624 18900 TIP 434829 10493 6031778 2024-02-22 13:36:05.171 2024-02-22 13:36:05.171 5000 FEE 434805 17639 6031779 2024-02-22 13:36:05.171 2024-02-22 13:36:05.171 45000 TIP 434805 14688 6031818 2024-02-22 13:39:43.357 2024-02-22 13:39:43.357 2300 FEE 434920 10934 6031819 2024-02-22 13:39:43.357 2024-02-22 13:39:43.357 20700 TIP 434920 18690 6031830 2024-02-22 13:40:22.221 2024-02-22 13:40:22.221 3000 FEE 434951 19660 6031831 2024-02-22 13:40:22.221 2024-02-22 13:40:22.221 27000 TIP 434951 16212 6031833 2024-02-22 13:40:42.536 2024-02-22 13:40:42.536 2100 FEE 434622 882 6031834 2024-02-22 13:40:42.536 2024-02-22 13:40:42.536 18900 TIP 434622 18336 6031866 2024-02-22 13:44:17.739 2024-02-22 13:44:17.739 1700 FEE 392486 4225 6031867 2024-02-22 13:44:17.739 2024-02-22 13:44:17.739 15300 TIP 392486 5497 6031883 2024-02-22 13:46:26.817 2024-02-22 13:46:26.817 1000 FEE 434981 13198 6031895 2024-02-22 13:47:46.005 2024-02-22 13:47:46.005 100 FEE 434950 18243 6031896 2024-02-22 13:47:46.005 2024-02-22 13:47:46.005 900 TIP 434950 4989 6031610 2024-02-22 13:18:03.377 2024-02-22 13:18:03.377 1000 STREAM 141924 2256 6031615 2024-02-22 13:19:03.386 2024-02-22 13:19:03.386 1000 STREAM 141924 20464 6031624 2024-02-22 13:21:03.38 2024-02-22 13:21:03.38 1000 STREAM 141924 7746 6031627 2024-02-22 13:22:03.42 2024-02-22 13:22:03.42 1000 STREAM 141924 19842 6031643 2024-02-22 13:25:03.409 2024-02-22 13:25:03.409 1000 STREAM 141924 656 6031645 2024-02-22 13:26:03.411 2024-02-22 13:26:03.411 1000 STREAM 141924 2039 6031648 2024-02-22 13:27:03.435 2024-02-22 13:27:03.435 1000 STREAM 141924 3544 6031649 2024-02-22 13:28:03.425 2024-02-22 13:28:03.425 1000 STREAM 141924 20495 6031654 2024-02-22 13:29:03.441 2024-02-22 13:29:03.441 1000 STREAM 141924 14774 6031682 2024-02-22 13:30:03.443 2024-02-22 13:30:03.443 1000 STREAM 141924 9242 6031709 2024-02-22 13:32:03.468 2024-02-22 13:32:03.468 1000 STREAM 141924 13398 6031716 2024-02-22 13:33:03.444 2024-02-22 13:33:03.444 1000 STREAM 141924 3456 6031722 2024-02-22 13:34:03.426 2024-02-22 13:34:03.426 1000 STREAM 141924 12072 6031728 2024-02-22 13:35:03.451 2024-02-22 13:35:03.451 1000 STREAM 141924 10469 6031786 2024-02-22 13:37:03.449 2024-02-22 13:37:03.449 1000 STREAM 141924 11897 6031789 2024-02-22 13:38:03.473 2024-02-22 13:38:03.473 1000 STREAM 141924 21042 6031799 2024-02-22 13:39:03.464 2024-02-22 13:39:03.464 1000 STREAM 141924 8269 6031858 2024-02-22 13:42:03.514 2024-02-22 13:42:03.514 1000 STREAM 141924 18403 6031865 2024-02-22 13:44:03.507 2024-02-22 13:44:03.507 1000 STREAM 141924 1310 6031881 2024-02-22 13:46:03.522 2024-02-22 13:46:03.522 1000 STREAM 141924 16052 6031897 2024-02-22 13:48:03.541 2024-02-22 13:48:03.541 1000 STREAM 141924 19156 6031962 2024-02-22 13:56:03.538 2024-02-22 13:56:03.538 1000 STREAM 141924 13217 6032016 2024-02-22 13:58:03.532 2024-02-22 13:58:03.532 1000 STREAM 141924 1564 6032035 2024-02-22 14:02:03.549 2024-02-22 14:02:03.549 1000 STREAM 141924 8037 6032040 2024-02-22 14:03:03.566 2024-02-22 14:03:03.566 1000 STREAM 141924 20687 6032049 2024-02-22 14:05:03.57 2024-02-22 14:05:03.57 1000 STREAM 141924 889 6032065 2024-02-22 14:06:03.578 2024-02-22 14:06:03.578 1000 STREAM 141924 18243 6032074 2024-02-22 14:07:03.592 2024-02-22 14:07:03.592 1000 STREAM 141924 18357 6032084 2024-02-22 14:08:03.589 2024-02-22 14:08:03.589 1000 STREAM 141924 8059 6032091 2024-02-22 14:09:03.611 2024-02-22 14:09:03.611 1000 STREAM 141924 18363 6032107 2024-02-22 14:12:03.636 2024-02-22 14:12:03.636 1000 STREAM 141924 15703 6032123 2024-02-22 14:15:03.641 2024-02-22 14:15:03.641 1000 STREAM 141924 10611 6032124 2024-02-22 14:16:03.651 2024-02-22 14:16:03.651 1000 STREAM 141924 18727 6032133 2024-02-22 14:17:03.646 2024-02-22 14:17:03.646 1000 STREAM 141924 16154 6031664 2024-02-22 13:29:16.336 2024-02-22 13:29:16.336 18900 TIP 434627 19147 6031678 2024-02-22 13:29:46.515 2024-02-22 13:29:46.515 2100 FEE 434498 16270 6031679 2024-02-22 13:29:46.515 2024-02-22 13:29:46.515 18900 TIP 434498 11073 6031680 2024-02-22 13:29:56.083 2024-02-22 13:29:56.083 2100 FEE 434396 10728 6031681 2024-02-22 13:29:56.083 2024-02-22 13:29:56.083 18900 TIP 434396 12356 6031689 2024-02-22 13:30:26.666 2024-02-22 13:30:26.666 2100 FEE 434934 16704 6031690 2024-02-22 13:30:26.666 2024-02-22 13:30:26.666 18900 TIP 434934 20554 6031726 2024-02-22 13:34:23.229 2024-02-22 13:34:23.229 1000 FEE 434966 10536 6031729 2024-02-22 13:35:18.393 2024-02-22 13:35:18.393 1000 FEE 434967 15271 6031739 2024-02-22 13:35:29.194 2024-02-22 13:35:29.194 2100 FEE 434845 14785 6031740 2024-02-22 13:35:29.194 2024-02-22 13:35:29.194 18900 TIP 434845 7903 6031741 2024-02-22 13:35:30.435 2024-02-22 13:35:30.435 2100 FEE 434806 18177 6031742 2024-02-22 13:35:30.435 2024-02-22 13:35:30.435 18900 TIP 434806 18380 6031745 2024-02-22 13:35:32.824 2024-02-22 13:35:32.824 2100 FEE 434824 10821 6031746 2024-02-22 13:35:32.824 2024-02-22 13:35:32.824 18900 TIP 434824 1617 6031757 2024-02-22 13:35:42.395 2024-02-22 13:35:42.395 1000 FEE 434968 1729 6031808 2024-02-22 13:39:41.019 2024-02-22 13:39:41.019 1000 FEE 434962 20897 6031809 2024-02-22 13:39:41.019 2024-02-22 13:39:41.019 9000 TIP 434962 20106 6031820 2024-02-22 13:39:43.975 2024-02-22 13:39:43.975 2300 FEE 434920 2039 6031821 2024-02-22 13:39:43.975 2024-02-22 13:39:43.975 20700 TIP 434920 8541 6031826 2024-02-22 13:39:53.017 2024-02-22 13:39:53.017 1000 FEE 434971 3439 6031828 2024-02-22 13:40:17.257 2024-02-22 13:40:17.257 3000 FEE 434965 20683 6031829 2024-02-22 13:40:17.257 2024-02-22 13:40:17.257 27000 TIP 434965 21599 6031876 2024-02-22 13:45:28.339 2024-02-22 13:45:28.339 2100 FEE 434440 9418 6031877 2024-02-22 13:45:28.339 2024-02-22 13:45:28.339 18900 TIP 434440 2361 6031886 2024-02-22 13:46:39.091 2024-02-22 13:46:39.091 2100 FEE 434604 15806 6031887 2024-02-22 13:46:39.091 2024-02-22 13:46:39.091 18900 TIP 434604 15337 6031893 2024-02-22 13:47:09.041 2024-02-22 13:47:09.041 2100 FEE 433828 15160 6031894 2024-02-22 13:47:09.041 2024-02-22 13:47:09.041 18900 TIP 433828 12738 6031915 2024-02-22 13:49:36.45 2024-02-22 13:49:36.45 1100 FEE 434627 18705 6031916 2024-02-22 13:49:36.45 2024-02-22 13:49:36.45 9900 TIP 434627 14857 6031922 2024-02-22 13:50:11.89 2024-02-22 13:50:11.89 2100 FEE 434969 21357 6031923 2024-02-22 13:50:11.89 2024-02-22 13:50:11.89 18900 TIP 434969 21248 6031924 2024-02-22 13:50:20.476 2024-02-22 13:50:20.476 1100 FEE 433828 5779 6031925 2024-02-22 13:50:20.476 2024-02-22 13:50:20.476 9900 TIP 433828 10291 6031967 2024-02-22 13:56:53.853 2024-02-22 13:56:53.853 8300 FEE 434791 738 6031968 2024-02-22 13:56:53.853 2024-02-22 13:56:53.853 74700 TIP 434791 21416 6031991 2024-02-22 13:56:57.92 2024-02-22 13:56:57.92 8300 FEE 434791 19839 6031992 2024-02-22 13:56:57.92 2024-02-22 13:56:57.92 74700 TIP 434791 19189 6032005 2024-02-22 13:57:35.493 2024-02-22 13:57:35.493 100 FEE 434952 19639 6032006 2024-02-22 13:57:35.493 2024-02-22 13:57:35.493 900 TIP 434952 1712 6032025 2024-02-22 14:01:26.802 2024-02-22 14:01:26.802 2100 FEE 434791 5961 6032026 2024-02-22 14:01:26.802 2024-02-22 14:01:26.802 18900 TIP 434791 1030 6032036 2024-02-22 14:02:15.545 2024-02-22 14:02:15.545 2100 FEE 434933 19660 6032037 2024-02-22 14:02:15.545 2024-02-22 14:02:15.545 18900 TIP 434933 10862 6031805 2024-02-22 13:39:38.579 2024-02-22 13:39:38.579 7200 TIP 434952 836 6031812 2024-02-22 13:39:41.631 2024-02-22 13:39:41.631 1000 FEE 434962 17541 6031813 2024-02-22 13:39:41.631 2024-02-22 13:39:41.631 9000 TIP 434962 13076 6031839 2024-02-22 13:40:45.978 2024-02-22 13:40:45.978 1300 FEE 434613 9843 6031840 2024-02-22 13:40:45.978 2024-02-22 13:40:45.978 11700 TIP 434613 20922 6031850 2024-02-22 13:41:09.764 2024-02-22 13:41:09.764 1300 FEE 434497 18188 6031851 2024-02-22 13:41:09.764 2024-02-22 13:41:09.764 11700 TIP 434497 636 6031859 2024-02-22 13:42:27.576 2024-02-22 13:42:27.576 100000 FEE 434975 4650 6031884 2024-02-22 13:46:37.444 2024-02-22 13:46:37.444 2100 FEE 434318 696 6031885 2024-02-22 13:46:37.444 2024-02-22 13:46:37.444 18900 TIP 434318 2042 6031890 2024-02-22 13:46:43.011 2024-02-22 13:46:43.011 2100 FEE 434417 1632 6031891 2024-02-22 13:46:43.011 2024-02-22 13:46:43.011 18900 TIP 434417 5522 6031900 2024-02-22 13:48:31.085 2024-02-22 13:48:31.085 2100 FEE 434975 7960 6031901 2024-02-22 13:48:31.085 2024-02-22 13:48:31.085 18900 TIP 434975 2326 6031902 2024-02-22 13:48:35.592 2024-02-22 13:48:35.592 3200 FEE 434978 642 6031903 2024-02-22 13:48:35.592 2024-02-22 13:48:35.592 28800 TIP 434978 20080 6031909 2024-02-22 13:49:35.731 2024-02-22 13:49:35.731 1100 FEE 434627 16347 6031910 2024-02-22 13:49:35.731 2024-02-22 13:49:35.731 9900 TIP 434627 17148 6031947 2024-02-22 13:55:12.151 2024-02-22 13:55:12.151 0 FEE 434986 8570 6031983 2024-02-22 13:56:55.418 2024-02-22 13:56:55.418 8300 FEE 434791 2123 6031984 2024-02-22 13:56:55.418 2024-02-22 13:56:55.418 74700 TIP 434791 15115 6032007 2024-02-22 13:57:41.354 2024-02-22 13:57:41.354 8300 FEE 434665 18271 6032008 2024-02-22 13:57:41.354 2024-02-22 13:57:41.354 74700 TIP 434665 12819 6032021 2024-02-22 14:00:05.277 2024-02-22 14:00:05.277 100000 FEE 434992 6136 6032027 2024-02-22 14:01:29.243 2024-02-22 14:01:29.243 2100 FEE 434920 18873 6032028 2024-02-22 14:01:29.243 2024-02-22 14:01:29.243 18900 TIP 434920 19463 6032038 2024-02-22 14:02:23.717 2024-02-22 14:02:23.717 1000 FEE 434995 10849 6032039 2024-02-22 14:02:56.002 2024-02-22 14:02:56.002 1000 FEE 434996 21413 6032046 2024-02-22 14:04:40.109 2024-02-22 14:04:40.109 1000 FEE 434999 13781 6032050 2024-02-22 14:05:06.507 2024-02-22 14:05:06.507 1000 FEE 434617 17166 6032051 2024-02-22 14:05:06.507 2024-02-22 14:05:06.507 9000 TIP 434617 616 6032066 2024-02-22 14:06:05.247 2024-02-22 14:06:05.247 1000 FEE 435003 18412 6032077 2024-02-22 14:07:11.274 2024-02-22 14:07:11.274 10000 FEE 434665 20272 6032078 2024-02-22 14:07:11.274 2024-02-22 14:07:11.274 90000 TIP 434665 725 6032088 2024-02-22 14:08:27.987 2024-02-22 14:08:27.987 1000 FEE 435006 15161 6032089 2024-02-22 14:08:27.987 2024-02-22 14:08:27.987 9000 TIP 435006 882 6032094 2024-02-22 14:10:06.419 2024-02-22 14:10:06.419 1100 FEE 434615 20776 6032095 2024-02-22 14:10:06.419 2024-02-22 14:10:06.419 9900 TIP 434615 9874 6032118 2024-02-22 14:13:17.803 2024-02-22 14:13:17.803 8300 FEE 434784 16724 6032119 2024-02-22 14:13:17.803 2024-02-22 14:13:17.803 74700 TIP 434784 8569 6032144 2024-02-22 14:18:11.629 2024-02-22 14:18:11.629 3200 FEE 435012 10698 6032145 2024-02-22 14:18:11.629 2024-02-22 14:18:11.629 28800 TIP 435012 18051 6032165 2024-02-22 14:21:23.402 2024-02-22 14:21:23.402 15000 FEE 434962 1985 6032166 2024-02-22 14:21:23.402 2024-02-22 14:21:23.402 135000 TIP 434962 15239 6032178 2024-02-22 14:23:02.163 2024-02-22 14:23:02.163 1000 FEE 435028 16665 6032180 2024-02-22 14:23:32.854 2024-02-22 14:23:32.854 0 FEE 435017 11328 6032202 2024-02-22 14:25:11.466 2024-02-22 14:25:11.466 0 FEE 435029 5308 6032206 2024-02-22 14:25:24.193 2024-02-22 14:25:24.193 100 FEE 434975 18809 6032207 2024-02-22 14:25:24.193 2024-02-22 14:25:24.193 900 TIP 434975 1738 6032248 2024-02-22 14:27:59.572 2024-02-22 14:27:59.572 300 FEE 435028 2195 6032249 2024-02-22 14:27:59.572 2024-02-22 14:27:59.572 2700 TIP 435028 13406 6032271 2024-02-22 14:30:42.153 2024-02-22 14:30:42.153 4000 FEE 435018 1585 6032272 2024-02-22 14:30:42.153 2024-02-22 14:30:42.153 36000 TIP 435018 19158 6032278 2024-02-22 14:32:42.181 2024-02-22 14:32:42.181 1000 FEE 435039 20754 6032283 2024-02-22 14:32:44.604 2024-02-22 14:32:44.604 2700 FEE 434962 18291 6032284 2024-02-22 14:32:44.604 2024-02-22 14:32:44.604 24300 TIP 434962 19569 6037363 2024-02-22 22:12:20.436 2024-02-22 22:12:20.436 2500 FEE 435460 14258 6037364 2024-02-22 22:12:20.436 2024-02-22 22:12:20.436 22500 TIP 435460 14688 6037390 2024-02-22 22:16:04.459 2024-02-22 22:16:04.459 8300 FEE 435457 10270 6037391 2024-02-22 22:16:04.459 2024-02-22 22:16:04.459 74700 TIP 435457 9982 6037457 2024-02-22 22:21:45.439 2024-02-22 22:21:45.439 0 FEE 435605 7978 6037483 2024-02-22 22:22:22.358 2024-02-22 22:22:22.358 1000 FEE 435606 11897 6037502 2024-02-22 22:28:00.507 2024-02-22 22:28:00.507 500 FEE 435314 9844 6037503 2024-02-22 22:28:00.507 2024-02-22 22:28:00.507 4500 TIP 435314 20744 6037537 2024-02-22 22:34:10.082 2024-02-22 22:34:10.082 0 FEE 435614 16505 6037556 2024-02-22 22:37:15.331 2024-02-22 22:37:15.331 0 FEE 298001 17042 6037562 2024-02-22 22:38:22.37 2024-02-22 22:38:22.37 1000 FEE 435618 9346 6037567 2024-02-22 22:39:25.702 2024-02-22 22:39:25.702 1000 FEE 435551 21605 6037568 2024-02-22 22:39:25.702 2024-02-22 22:39:25.702 9000 TIP 435551 827 6037575 2024-02-22 22:40:10.182 2024-02-22 22:40:10.182 0 FEE 435619 1970 6037581 2024-02-22 22:42:51.603 2024-02-22 22:42:51.603 0 FEE 435619 9341 6037595 2024-02-22 22:43:30.261 2024-02-22 22:43:30.261 2100 FEE 435328 12169 6037596 2024-02-22 22:43:30.261 2024-02-22 22:43:30.261 18900 TIP 435328 19553 6037605 2024-02-22 22:43:41.687 2024-02-22 22:43:41.687 100 FEE 435619 21021 6037606 2024-02-22 22:43:41.687 2024-02-22 22:43:41.687 900 TIP 435619 10549 6037630 2024-02-22 22:43:55.645 2024-02-22 22:43:55.645 2100 FEE 435154 5661 6037631 2024-02-22 22:43:55.645 2024-02-22 22:43:55.645 18900 TIP 435154 676 6037659 2024-02-22 22:45:11.17 2024-02-22 22:45:11.17 0 FEE 435619 11328 6037682 2024-02-22 22:45:57.069 2024-02-22 22:45:57.069 2100 FEE 435046 694 6037683 2024-02-22 22:45:57.069 2024-02-22 22:45:57.069 18900 TIP 435046 1705 6037694 2024-02-22 22:46:42.813 2024-02-22 22:46:42.813 2100 FEE 435007 763 6037695 2024-02-22 22:46:42.813 2024-02-22 22:46:42.813 18900 TIP 435007 16214 6037720 2024-02-22 22:47:31.985 2024-02-22 22:47:31.985 2100 FEE 435327 644 6037721 2024-02-22 22:47:31.985 2024-02-22 22:47:31.985 18900 TIP 435327 8168 6037790 2024-02-22 22:48:04.835 2024-02-22 22:48:04.835 1000 FEE 435579 12097 6037791 2024-02-22 22:48:04.835 2024-02-22 22:48:04.835 9000 TIP 435579 4062 6037796 2024-02-22 22:48:05.316 2024-02-22 22:48:05.316 1000 FEE 435579 7746 6037797 2024-02-22 22:48:05.316 2024-02-22 22:48:05.316 9000 TIP 435579 5708 6037802 2024-02-22 22:48:06.08 2024-02-22 22:48:06.08 2100 FEE 435544 7903 6037803 2024-02-22 22:48:06.08 2024-02-22 22:48:06.08 18900 TIP 435544 2162 6037844 2024-02-22 22:49:04.746 2024-02-22 22:49:04.746 0 FEE 435619 5500 6037885 2024-02-22 22:55:15.335 2024-02-22 22:55:15.335 1000 FEE 435632 19924 6037891 2024-02-22 22:56:46.652 2024-02-22 22:56:46.652 1000 FEE 435635 701 6037906 2024-02-22 23:00:26.796 2024-02-22 23:00:26.796 4000 FEE 435620 20904 6037907 2024-02-22 23:00:26.796 2024-02-22 23:00:26.796 36000 TIP 435620 4415 6037921 2024-02-22 23:01:21.17 2024-02-22 23:01:21.17 1000 FEE 435638 3642 6037971 2024-02-22 23:13:27.117 2024-02-22 23:13:27.117 2100 FEE 435465 1801 6037972 2024-02-22 23:13:27.117 2024-02-22 23:13:27.117 18900 TIP 435465 6164 6037987 2024-02-22 23:14:21.368 2024-02-22 23:14:21.368 500 FEE 435614 4831 6037988 2024-02-22 23:14:21.368 2024-02-22 23:14:21.368 4500 TIP 435614 21063 6037999 2024-02-22 23:18:19.723 2024-02-22 23:18:19.723 800 FEE 435457 16229 6031868 2024-02-22 13:44:19.887 2024-02-22 13:44:19.887 2100 FEE 434890 5646 6031869 2024-02-22 13:44:19.887 2024-02-22 13:44:19.887 18900 TIP 434890 17221 6031933 2024-02-22 13:52:38.601 2024-02-22 13:52:38.601 1000 FEE 434983 20036 6031935 2024-02-22 13:53:22.717 2024-02-22 13:53:22.717 1000 FEE 434984 20970 6031975 2024-02-22 13:56:54.329 2024-02-22 13:56:54.329 8300 FEE 434791 17091 6031976 2024-02-22 13:56:54.329 2024-02-22 13:56:54.329 74700 TIP 434791 18403 6031989 2024-02-22 13:56:57.395 2024-02-22 13:56:57.395 8300 FEE 434791 798 6031990 2024-02-22 13:56:57.395 2024-02-22 13:56:57.395 74700 TIP 434791 21051 6031998 2024-02-22 13:57:11.992 2024-02-22 13:57:11.992 8300 FEE 434505 18625 6031999 2024-02-22 13:57:11.992 2024-02-22 13:57:11.992 74700 TIP 434505 16149 6032009 2024-02-22 13:57:41.979 2024-02-22 13:57:41.979 8300 FEE 434665 19118 6032010 2024-02-22 13:57:41.979 2024-02-22 13:57:41.979 74700 TIP 434665 18923 6032031 2024-02-22 14:01:33.3 2024-02-22 14:01:33.3 2100 FEE 434695 16562 6032032 2024-02-22 14:01:33.3 2024-02-22 14:01:33.3 18900 TIP 434695 17446 6032057 2024-02-22 14:05:35.439 2024-02-22 14:05:35.439 800 FEE 434990 917 6032058 2024-02-22 14:05:35.439 2024-02-22 14:05:35.439 7200 TIP 434990 21555 6032085 2024-02-22 14:08:08.48 2024-02-22 14:08:08.48 1000 FEE 435008 14990 6032102 2024-02-22 14:11:03.562 2024-02-22 14:11:03.562 1000 FEE 435011 965 6032115 2024-02-22 14:13:06.145 2024-02-22 14:13:06.145 100000 FEE 435014 12808 6032130 2024-02-22 14:16:59.323 2024-02-22 14:16:59.323 97000 FEE 435019 19142 6032147 2024-02-22 14:18:28.167 2024-02-22 14:18:28.167 1000 FEE 435022 1738 6032149 2024-02-22 14:18:49.892 2024-02-22 14:18:49.892 1000 FEE 435021 18494 6032150 2024-02-22 14:18:49.892 2024-02-22 14:18:49.892 9000 TIP 435021 19267 6032175 2024-02-22 14:22:45.958 2024-02-22 14:22:45.958 2100 FEE 434812 20871 6032176 2024-02-22 14:22:45.958 2024-02-22 14:22:45.958 18900 TIP 434812 859 6032181 2024-02-22 14:23:59.264 2024-02-22 14:23:59.264 100000 FEE 435029 1705 6032185 2024-02-22 14:24:38.101 2024-02-22 14:24:38.101 900 FEE 435026 21386 6032186 2024-02-22 14:24:38.101 2024-02-22 14:24:38.101 8100 TIP 435026 13527 6032200 2024-02-22 14:24:47.181 2024-02-22 14:24:47.181 1000 FEE 435032 12122 6032214 2024-02-22 14:25:40.688 2024-02-22 14:25:40.688 2100 FEE 434947 19488 6032215 2024-02-22 14:25:40.688 2024-02-22 14:25:40.688 18900 TIP 434947 6798 6032219 2024-02-22 14:26:40.186 2024-02-22 14:26:40.186 1000 FEE 435034 19812 6032244 2024-02-22 14:27:32.865 2024-02-22 14:27:32.865 2700 FEE 435019 2459 6032245 2024-02-22 14:27:32.865 2024-02-22 14:27:32.865 24300 TIP 435019 837 6032281 2024-02-22 14:32:44.408 2024-02-22 14:32:44.408 2700 FEE 434962 12160 6032282 2024-02-22 14:32:44.408 2024-02-22 14:32:44.408 24300 TIP 434962 661 6032291 2024-02-22 14:32:45.339 2024-02-22 14:32:45.339 2700 FEE 434962 2077 6032292 2024-02-22 14:32:45.339 2024-02-22 14:32:45.339 24300 TIP 434962 21612 6032321 2024-02-22 14:38:22.378 2024-02-22 14:38:22.378 2700 FEE 434791 15463 6032322 2024-02-22 14:38:22.378 2024-02-22 14:38:22.378 24300 TIP 434791 1389 6032325 2024-02-22 14:38:22.74 2024-02-22 14:38:22.74 2700 FEE 434791 17209 6032326 2024-02-22 14:38:22.74 2024-02-22 14:38:22.74 24300 TIP 434791 15488 6032329 2024-02-22 14:38:23.096 2024-02-22 14:38:23.096 2700 FEE 434791 19878 6032330 2024-02-22 14:38:23.096 2024-02-22 14:38:23.096 24300 TIP 434791 20099 6032345 2024-02-22 14:39:44.504 2024-02-22 14:39:44.504 1000 FEE 435045 686 6032349 2024-02-22 14:40:26.944 2024-02-22 14:40:26.944 420000 FEE 435046 19417 6032355 2024-02-22 14:42:07.09 2024-02-22 14:42:07.09 3000 FEE 434978 17673 6032356 2024-02-22 14:42:07.09 2024-02-22 14:42:07.09 27000 TIP 434978 866 6032364 2024-02-22 14:43:21.879 2024-02-22 14:43:21.879 1000 FEE 434913 16704 6032365 2024-02-22 14:43:21.879 2024-02-22 14:43:21.879 9000 TIP 434913 16649 6032370 2024-02-22 14:44:06.357 2024-02-22 14:44:06.357 100 FEE 435030 17592 6032371 2024-02-22 14:44:06.357 2024-02-22 14:44:06.357 900 TIP 435030 19557 6032386 2024-02-22 14:45:03.137 2024-02-22 14:45:03.137 1000 FEE 435048 15147 6032400 2024-02-22 14:46:16.346 2024-02-22 14:46:16.346 27000 FEE 434791 2614 6032401 2024-02-22 14:46:16.346 2024-02-22 14:46:16.346 243000 TIP 434791 9494 6032411 2024-02-22 14:46:46.609 2024-02-22 14:46:46.609 2100 FEE 434975 18008 6032412 2024-02-22 14:46:46.609 2024-02-22 14:46:46.609 18900 TIP 434975 20006 6032422 2024-02-22 14:47:50.021 2024-02-22 14:47:50.021 3300 FEE 434488 9290 6032423 2024-02-22 14:47:50.021 2024-02-22 14:47:50.021 29700 TIP 434488 2748 6032472 2024-02-22 14:51:12.436 2024-02-22 14:51:12.436 8300 FEE 435040 21522 6032473 2024-02-22 14:51:12.436 2024-02-22 14:51:12.436 74700 TIP 435040 16808 6032480 2024-02-22 14:51:45.511 2024-02-22 14:51:45.511 2100 FEE 434990 14909 6032481 2024-02-22 14:51:45.511 2024-02-22 14:51:45.511 18900 TIP 434990 19961 6032501 2024-02-22 14:52:13.972 2024-02-22 14:52:13.972 1000 FEE 434991 18877 6032502 2024-02-22 14:52:13.972 2024-02-22 14:52:13.972 9000 TIP 434991 13843 6032505 2024-02-22 14:53:02.663 2024-02-22 14:53:02.663 2100 FEE 435046 21067 6032506 2024-02-22 14:53:02.663 2024-02-22 14:53:02.663 18900 TIP 435046 1800 6032519 2024-02-22 14:54:32.004 2024-02-22 14:54:32.004 10000 FEE 435065 696 6032522 2024-02-22 14:54:41.012 2024-02-22 14:54:41.012 900 FEE 435046 940 6032523 2024-02-22 14:54:41.012 2024-02-22 14:54:41.012 8100 TIP 435046 1833 6032532 2024-02-22 14:55:36.373 2024-02-22 14:55:36.373 2100 FEE 434863 19501 6032533 2024-02-22 14:55:36.373 2024-02-22 14:55:36.373 18900 TIP 434863 14818 6032582 2024-02-22 14:58:42.863 2024-02-22 14:58:42.863 1000 FEE 435071 7979 6032588 2024-02-22 14:59:21.341 2024-02-22 14:59:21.341 0 FEE 435066 14939 6032606 2024-02-22 15:00:47.106 2024-02-22 15:00:47.106 2100 FEE 435067 19527 6032607 2024-02-22 15:00:47.106 2024-02-22 15:00:47.106 18900 TIP 435067 959 6032615 2024-02-22 15:01:11.633 2024-02-22 15:01:11.633 100 FEE 434960 10291 6032616 2024-02-22 15:01:11.633 2024-02-22 15:01:11.633 900 TIP 434960 20826 6032632 2024-02-22 15:01:52.749 2024-02-22 15:01:52.749 9000 FEE 435071 4692 6032633 2024-02-22 15:01:52.749 2024-02-22 15:01:52.749 81000 TIP 435071 18269 6032673 2024-02-22 15:12:35.446 2024-02-22 15:12:35.446 25600 FEE 435030 715 6032674 2024-02-22 15:12:35.446 2024-02-22 15:12:35.446 230400 TIP 435030 15510 6032686 2024-02-22 15:15:52.236 2024-02-22 15:15:52.236 10000 FEE 435002 651 6032687 2024-02-22 15:15:52.236 2024-02-22 15:15:52.236 90000 TIP 435002 770 6032690 2024-02-22 15:16:35.901 2024-02-22 15:16:35.901 300 FEE 435002 16939 6032691 2024-02-22 15:16:35.901 2024-02-22 15:16:35.901 2700 TIP 435002 4076 6032694 2024-02-22 15:16:36.782 2024-02-22 15:16:36.782 300 FEE 435002 18923 6032695 2024-02-22 15:16:36.782 2024-02-22 15:16:36.782 2700 TIP 435002 20251 6032710 2024-02-22 15:17:03.882 2024-02-22 15:17:03.882 2600 FEE 434952 19142 6032711 2024-02-22 15:17:03.882 2024-02-22 15:17:03.882 23400 TIP 434952 635 6032713 2024-02-22 15:17:26.03 2024-02-22 15:17:26.03 1000 FEE 435091 9331 6032732 2024-02-22 15:21:42.488 2024-02-22 15:21:42.488 3200 FEE 435065 16250 6032733 2024-02-22 15:21:42.488 2024-02-22 15:21:42.488 28800 TIP 435065 3461 6032745 2024-02-22 15:24:11.693 2024-02-22 15:24:11.693 1000 FEE 435098 20588 6032746 2024-02-22 15:24:16.617 2024-02-22 15:24:16.617 1000 FEE 435099 19126 6032779 2024-02-22 15:30:46.346 2024-02-22 15:30:46.346 2100 FEE 435102 663 6032780 2024-02-22 15:30:46.346 2024-02-22 15:30:46.346 18900 TIP 435102 19905 6032781 2024-02-22 15:30:48.085 2024-02-22 15:30:48.085 2100 FEE 435073 18235 6032782 2024-02-22 15:30:48.085 2024-02-22 15:30:48.085 18900 TIP 435073 11750 6032785 2024-02-22 15:31:34.389 2024-02-22 15:31:34.389 0 FEE 435101 8059 6032817 2024-02-22 15:36:35.947 2024-02-22 15:36:35.947 0 FEE 435110 19572 6031898 2024-02-22 13:48:06.346 2024-02-22 13:48:06.346 2100 FEE 434854 946 6031899 2024-02-22 13:48:06.346 2024-02-22 13:48:06.346 18900 TIP 434854 13169 6031928 2024-02-22 13:50:20.812 2024-02-22 13:50:20.812 1100 FEE 433828 664 6031929 2024-02-22 13:50:20.812 2024-02-22 13:50:20.812 9900 TIP 433828 16410 6031938 2024-02-22 13:54:10.455 2024-02-22 13:54:10.455 1000 FEE 434617 10359 6031939 2024-02-22 13:54:10.455 2024-02-22 13:54:10.455 9000 TIP 434617 21520 6031956 2024-02-22 13:55:14.792 2024-02-22 13:55:14.792 100 FEE 434440 7553 6031957 2024-02-22 13:55:14.792 2024-02-22 13:55:14.792 900 TIP 434440 2780 6031969 2024-02-22 13:56:54.161 2024-02-22 13:56:54.161 8300 FEE 434791 9184 6031970 2024-02-22 13:56:54.161 2024-02-22 13:56:54.161 74700 TIP 434791 895 6031973 2024-02-22 13:56:54.198 2024-02-22 13:56:54.198 8300 FEE 434791 20647 6031974 2024-02-22 13:56:54.198 2024-02-22 13:56:54.198 74700 TIP 434791 4027 6031985 2024-02-22 13:56:55.632 2024-02-22 13:56:55.632 8300 FEE 434791 11240 6031986 2024-02-22 13:56:55.632 2024-02-22 13:56:55.632 74700 TIP 434791 13198 6032003 2024-02-22 13:57:17.101 2024-02-22 13:57:17.101 8300 FEE 434261 18468 6032004 2024-02-22 13:57:17.101 2024-02-22 13:57:17.101 74700 TIP 434261 650 6032017 2024-02-22 13:58:55.734 2024-02-22 13:58:55.734 100 FEE 434991 7510 6032018 2024-02-22 13:58:55.734 2024-02-22 13:58:55.734 900 TIP 434991 7097 6032033 2024-02-22 14:01:55.736 2024-02-22 14:01:55.736 10000 FEE 434975 19103 6032034 2024-02-22 14:01:55.736 2024-02-22 14:01:55.736 90000 TIP 434975 2088 6032045 2024-02-22 14:04:23.248 2024-02-22 14:04:23.248 1000 FEE 434998 11153 6032056 2024-02-22 14:05:30.206 2024-02-22 14:05:30.206 1000 FEE 435000 2514 6032061 2024-02-22 14:05:57.229 2024-02-22 14:05:57.229 3000 FEE 434637 2528 6032062 2024-02-22 14:05:57.229 2024-02-22 14:05:57.229 27000 TIP 434637 12356 6032072 2024-02-22 14:06:59.022 2024-02-22 14:06:59.022 1000 FEE 435005 5637 6032105 2024-02-22 14:11:32.734 2024-02-22 14:11:32.734 1000 FEE 435012 21040 6032108 2024-02-22 14:12:57.717 2024-02-22 14:12:57.717 12800 FEE 434665 1650 6032109 2024-02-22 14:12:57.717 2024-02-22 14:12:57.717 115200 TIP 434665 20812 6032121 2024-02-22 14:14:03.95 2024-02-22 14:14:03.95 1000 FEE 435015 11164 6032170 2024-02-22 14:22:29.894 2024-02-22 14:22:29.894 100000 FEE 435026 1428 6032177 2024-02-22 14:22:58.288 2024-02-22 14:22:58.288 1000 FEE 435027 10291 6032188 2024-02-22 14:24:39.298 2024-02-22 14:24:39.298 9000 FEE 435026 9084 6032189 2024-02-22 14:24:39.298 2024-02-22 14:24:39.298 81000 TIP 435026 5776 6032190 2024-02-22 14:24:43.654 2024-02-22 14:24:43.654 100000 FEE 435030 1162 6032191 2024-02-22 14:24:43.956 2024-02-22 14:24:43.956 1000 FEE 435031 21395 6032208 2024-02-22 14:25:24.43 2024-02-22 14:25:24.43 900 FEE 434975 2529 6032209 2024-02-22 14:25:24.43 2024-02-22 14:25:24.43 8100 TIP 434975 10771 6032210 2024-02-22 14:25:24.893 2024-02-22 14:25:24.893 9000 FEE 434975 21303 6032211 2024-02-22 14:25:24.893 2024-02-22 14:25:24.893 81000 TIP 434975 21451 6032240 2024-02-22 14:27:31.377 2024-02-22 14:27:31.377 2700 FEE 435019 1720 6032241 2024-02-22 14:27:31.377 2024-02-22 14:27:31.377 24300 TIP 435019 20623 6032242 2024-02-22 14:27:31.576 2024-02-22 14:27:31.576 2700 FEE 435019 807 6032243 2024-02-22 14:27:31.576 2024-02-22 14:27:31.576 24300 TIP 435019 21387 6032246 2024-02-22 14:27:38.483 2024-02-22 14:27:38.483 1700 FEE 435023 20454 6032247 2024-02-22 14:27:38.483 2024-02-22 14:27:38.483 15300 TIP 435023 9366 6032250 2024-02-22 14:28:00.593 2024-02-22 14:28:00.593 10000 FEE 435036 705 6032257 2024-02-22 14:30:40.103 2024-02-22 14:30:40.103 2700 FEE 434440 10056 6032258 2024-02-22 14:30:40.103 2024-02-22 14:30:40.103 24300 TIP 434440 1611 6032259 2024-02-22 14:30:40.3 2024-02-22 14:30:40.3 2700 FEE 434440 15617 6032260 2024-02-22 14:30:40.3 2024-02-22 14:30:40.3 24300 TIP 434440 14080 6032269 2024-02-22 14:30:41.742 2024-02-22 14:30:41.742 2700 FEE 434440 4102 6032270 2024-02-22 14:30:41.742 2024-02-22 14:30:41.742 24300 TIP 434440 21019 6032275 2024-02-22 14:32:37.362 2024-02-22 14:32:37.362 4200 FEE 434994 9529 6032276 2024-02-22 14:32:37.362 2024-02-22 14:32:37.362 37800 TIP 434994 14651 6032277 2024-02-22 14:32:39.29 2024-02-22 14:32:39.29 1000 FEE 435038 633 6032285 2024-02-22 14:32:44.77 2024-02-22 14:32:44.77 2700 FEE 434962 2293 6032286 2024-02-22 14:32:44.77 2024-02-22 14:32:44.77 24300 TIP 434962 18731 6032298 2024-02-22 14:33:49.41 2024-02-22 14:33:49.41 2700 FEE 434978 12769 6032299 2024-02-22 14:33:49.41 2024-02-22 14:33:49.41 24300 TIP 434978 1617 6032306 2024-02-22 14:33:50.207 2024-02-22 14:33:50.207 2700 FEE 434978 19777 6032307 2024-02-22 14:33:50.207 2024-02-22 14:33:50.207 24300 TIP 434978 20812 6032353 2024-02-22 14:41:37.096 2024-02-22 14:41:37.096 1000 FEE 435047 18581 6032357 2024-02-22 14:42:14.79 2024-02-22 14:42:14.79 3000 FEE 435042 21014 6032358 2024-02-22 14:42:14.79 2024-02-22 14:42:14.79 27000 TIP 435042 17042 6032361 2024-02-22 14:42:43.342 2024-02-22 14:42:43.342 1000 FEE 434995 1273 6032362 2024-02-22 14:42:43.342 2024-02-22 14:42:43.342 9000 TIP 434995 18735 6032366 2024-02-22 14:43:26.417 2024-02-22 14:43:26.417 3300 FEE 435023 749 6032367 2024-02-22 14:43:26.417 2024-02-22 14:43:26.417 29700 TIP 435023 5761 6032388 2024-02-22 14:45:13.761 2024-02-22 14:45:13.761 1000 FEE 435049 1705 6032392 2024-02-22 14:45:50.167 2024-02-22 14:45:50.167 100000 FEE 435046 20251 6032393 2024-02-22 14:45:50.167 2024-02-22 14:45:50.167 900000 TIP 435046 18426 6032394 2024-02-22 14:45:59.694 2024-02-22 14:45:59.694 1000 FEE 435050 21417 6032429 2024-02-22 14:48:51.151 2024-02-22 14:48:51.151 2100 FEE 434958 13365 6032430 2024-02-22 14:48:51.151 2024-02-22 14:48:51.151 18900 TIP 434958 20889 6032454 2024-02-22 14:50:30.609 2024-02-22 14:50:30.609 100 FEE 435004 10849 6032455 2024-02-22 14:50:30.609 2024-02-22 14:50:30.609 900 TIP 435004 17275 6032464 2024-02-22 14:50:49.979 2024-02-22 14:50:49.979 2100 FEE 434801 19320 6032465 2024-02-22 14:50:49.979 2024-02-22 14:50:49.979 18900 TIP 434801 11018 6032482 2024-02-22 14:51:51.798 2024-02-22 14:51:51.798 1000 FEE 434810 1772 6032483 2024-02-22 14:51:51.798 2024-02-22 14:51:51.798 9000 TIP 434810 1236 6032488 2024-02-22 14:52:06.213 2024-02-22 14:52:06.213 2100 FEE 435004 2010 6032489 2024-02-22 14:52:06.213 2024-02-22 14:52:06.213 18900 TIP 435004 6777 6032512 2024-02-22 14:53:21.736 2024-02-22 14:53:21.736 3200 FEE 435054 1717 6032513 2024-02-22 14:53:21.736 2024-02-22 14:53:21.736 28800 TIP 435054 9351 6032580 2024-02-22 14:58:41.74 2024-02-22 14:58:41.74 500 FEE 434695 15549 6032581 2024-02-22 14:58:41.74 2024-02-22 14:58:41.74 4500 TIP 434695 15282 6032596 2024-02-22 15:00:26.274 2024-02-22 15:00:26.274 100 FEE 434827 21491 6032597 2024-02-22 15:00:26.274 2024-02-22 15:00:26.274 900 TIP 434827 16649 6032619 2024-02-22 15:01:32.029 2024-02-22 15:01:32.029 1000 FEE 435076 19096 6032626 2024-02-22 15:01:36.572 2024-02-22 15:01:36.572 9000 FEE 434957 1429 6032627 2024-02-22 15:01:36.572 2024-02-22 15:01:36.572 81000 TIP 434957 14260 6032630 2024-02-22 15:01:52.133 2024-02-22 15:01:52.133 900 FEE 435071 1784 6032631 2024-02-22 15:01:52.133 2024-02-22 15:01:52.133 8100 TIP 435071 2022 6032641 2024-02-22 15:03:31.718 2024-02-22 15:03:31.718 2100 FEE 435063 12768 6032642 2024-02-22 15:03:31.718 2024-02-22 15:03:31.718 18900 TIP 435063 18862 6032648 2024-02-22 15:04:54.997 2024-02-22 15:04:54.997 2100 FEE 435076 2322 6032649 2024-02-22 15:04:54.997 2024-02-22 15:04:54.997 18900 TIP 435076 1740 6032707 2024-02-22 15:16:44.25 2024-02-22 15:16:44.25 2100 FEE 434957 18008 6032708 2024-02-22 15:16:44.25 2024-02-22 15:16:44.25 18900 TIP 434957 19886 6032739 2024-02-22 15:22:29.883 2024-02-22 15:22:29.883 4000 FEE 435092 1647 6032740 2024-02-22 15:22:29.883 2024-02-22 15:22:29.883 36000 TIP 435092 687 6032750 2024-02-22 15:25:03.164 2024-02-22 15:25:03.164 1600 FEE 435097 15556 6032751 2024-02-22 15:25:03.164 2024-02-22 15:25:03.164 14400 TIP 435097 10056 6031949 2024-02-22 13:55:13.101 2024-02-22 13:55:13.101 900 TIP 434440 6526 6031950 2024-02-22 13:55:13.607 2024-02-22 13:55:13.607 100 FEE 434440 5694 6031951 2024-02-22 13:55:13.607 2024-02-22 13:55:13.607 900 TIP 434440 18539 6031960 2024-02-22 13:55:58.951 2024-02-22 13:55:58.951 2000 FEE 434423 8284 6031961 2024-02-22 13:55:58.951 2024-02-22 13:55:58.951 18000 TIP 434423 12245 6031963 2024-02-22 13:56:53.413 2024-02-22 13:56:53.413 8300 FEE 434791 19888 6031964 2024-02-22 13:56:53.413 2024-02-22 13:56:53.413 74700 TIP 434791 16970 6031965 2024-02-22 13:56:53.635 2024-02-22 13:56:53.635 16600 FEE 434791 1472 6031966 2024-02-22 13:56:53.635 2024-02-22 13:56:53.635 149400 TIP 434791 21577 6031977 2024-02-22 13:56:54.687 2024-02-22 13:56:54.687 8300 FEE 434791 9843 6031978 2024-02-22 13:56:54.687 2024-02-22 13:56:54.687 74700 TIP 434791 20257 6031987 2024-02-22 13:56:57.31 2024-02-22 13:56:57.31 8300 FEE 434791 17522 6031988 2024-02-22 13:56:57.31 2024-02-22 13:56:57.31 74700 TIP 434791 2224 6031996 2024-02-22 13:57:10.939 2024-02-22 13:57:10.939 8300 FEE 434661 18526 6031997 2024-02-22 13:57:10.939 2024-02-22 13:57:10.939 74700 TIP 434661 20254 6032002 2024-02-22 13:57:16.41 2024-02-22 13:57:16.41 0 FEE 434989 2188 6032059 2024-02-22 14:05:39.946 2024-02-22 14:05:39.946 1000 FEE 435001 11144 6032075 2024-02-22 14:07:03.843 2024-02-22 14:07:03.843 1600 FEE 435002 14489 6032076 2024-02-22 14:07:03.843 2024-02-22 14:07:03.843 14400 TIP 435002 8360 6032092 2024-02-22 14:09:07.245 2024-02-22 14:09:07.245 100000 FEE 435010 18690 6032098 2024-02-22 14:10:06.71 2024-02-22 14:10:06.71 8300 FEE 434994 13327 6032099 2024-02-22 14:10:06.71 2024-02-22 14:10:06.71 74700 TIP 434994 20190 6032104 2024-02-22 14:11:14.697 2024-02-22 14:11:14.697 83000 DONT_LIKE_THIS 434969 11938 6032129 2024-02-22 14:16:56.427 2024-02-22 14:16:56.427 10000 FEE 435018 7125 6032131 2024-02-22 14:17:03.37 2024-02-22 14:17:03.37 2100 FEE 434665 20624 6032132 2024-02-22 14:17:03.37 2024-02-22 14:17:03.37 18900 TIP 434665 8380 6032146 2024-02-22 14:18:19.059 2024-02-22 14:18:19.059 0 FEE 435017 1425 6032171 2024-02-22 14:22:34.262 2024-02-22 14:22:34.262 2100 FEE 434674 11515 6032172 2024-02-22 14:22:34.262 2024-02-22 14:22:34.262 18900 TIP 434674 21562 6032203 2024-02-22 14:25:13.885 2024-02-22 14:25:13.885 1000 FEE 435033 21222 6032217 2024-02-22 14:26:25.27 2024-02-22 14:26:25.27 1100 FEE 429275 20892 6032218 2024-02-22 14:26:25.27 2024-02-22 14:26:25.27 9900 TIP 429275 15160 6032223 2024-02-22 14:26:52.475 2024-02-22 14:26:52.475 2100 FEE 434989 9 6032224 2024-02-22 14:26:52.475 2024-02-22 14:26:52.475 18900 TIP 434989 11075 6032261 2024-02-22 14:30:40.486 2024-02-22 14:30:40.486 2700 FEE 434440 19662 6032262 2024-02-22 14:30:40.486 2024-02-22 14:30:40.486 24300 TIP 434440 17535 6032263 2024-02-22 14:30:40.692 2024-02-22 14:30:40.692 2700 FEE 434440 20433 6032264 2024-02-22 14:30:40.692 2024-02-22 14:30:40.692 24300 TIP 434440 21239 6032300 2024-02-22 14:33:49.681 2024-02-22 14:33:49.681 2700 FEE 434978 13544 6032301 2024-02-22 14:33:49.681 2024-02-22 14:33:49.681 24300 TIP 434978 5487 6032313 2024-02-22 14:36:10.109 2024-02-22 14:36:10.109 100 FEE 434878 17095 6032314 2024-02-22 14:36:10.109 2024-02-22 14:36:10.109 900 TIP 434878 13198 6032327 2024-02-22 14:38:22.912 2024-02-22 14:38:22.912 2700 FEE 434791 4292 6032328 2024-02-22 14:38:22.912 2024-02-22 14:38:22.912 24300 TIP 434791 699 6032346 2024-02-22 14:39:53.34 2024-02-22 14:39:53.34 100 FEE 435030 2293 6032347 2024-02-22 14:39:53.34 2024-02-22 14:39:53.34 900 TIP 435030 2718 6032396 2024-02-22 14:46:08.442 2024-02-22 14:46:08.442 4000 FEE 435046 20606 6032397 2024-02-22 14:46:08.442 2024-02-22 14:46:08.442 36000 TIP 435046 10270 6032402 2024-02-22 14:46:22.395 2024-02-22 14:46:22.395 100 FEE 435046 18072 6032403 2024-02-22 14:46:22.395 2024-02-22 14:46:22.395 900 TIP 435046 14255 6032407 2024-02-22 14:46:35.376 2024-02-22 14:46:35.376 2100 FEE 434962 696 6032408 2024-02-22 14:46:35.376 2024-02-22 14:46:35.376 18900 TIP 434962 19142 6032425 2024-02-22 14:48:35.497 2024-02-22 14:48:35.497 2100 FEE 435026 19622 6032426 2024-02-22 14:48:35.497 2024-02-22 14:48:35.497 18900 TIP 435026 2203 6032435 2024-02-22 14:49:22.658 2024-02-22 14:49:22.658 3300 FEE 434878 20980 6032436 2024-02-22 14:49:22.658 2024-02-22 14:49:22.658 29700 TIP 434878 1428 6032495 2024-02-22 14:52:13.455 2024-02-22 14:52:13.455 1000 FEE 434991 1741 6032496 2024-02-22 14:52:13.455 2024-02-22 14:52:13.455 9000 TIP 434991 8095 6032510 2024-02-22 14:53:17.165 2024-02-22 14:53:17.165 1000 FEE 435060 9307 6032514 2024-02-22 14:53:47.832 2024-02-22 14:53:47.832 2100 FEE 435046 6360 6032515 2024-02-22 14:53:47.832 2024-02-22 14:53:47.832 18900 TIP 435046 4391 6032541 2024-02-22 14:56:16.891 2024-02-22 14:56:16.891 1100 FEE 435009 4173 6032542 2024-02-22 14:56:16.891 2024-02-22 14:56:16.891 9900 TIP 435009 13878 6032551 2024-02-22 14:56:38.72 2024-02-22 14:56:38.72 1100 FEE 435013 19398 6032552 2024-02-22 14:56:38.72 2024-02-22 14:56:38.72 9900 TIP 435013 16594 6032576 2024-02-22 14:58:03.095 2024-02-22 14:58:03.095 1000 FEE 435070 1729 6032577 2024-02-22 14:58:15.788 2024-02-22 14:58:15.788 1300 FEE 434903 7583 6032578 2024-02-22 14:58:15.788 2024-02-22 14:58:15.788 11700 TIP 434903 18269 6032591 2024-02-22 15:00:13.741 2024-02-22 15:00:13.741 1600 FEE 435046 20562 6032592 2024-02-22 15:00:13.741 2024-02-22 15:00:13.741 14400 TIP 435046 5085 6032598 2024-02-22 15:00:26.933 2024-02-22 15:00:26.933 100 FEE 434827 6361 6032599 2024-02-22 15:00:26.933 2024-02-22 15:00:26.933 900 TIP 434827 859 6032612 2024-02-22 15:00:51.695 2024-02-22 15:00:51.695 9000 FEE 433865 16267 6032613 2024-02-22 15:00:51.695 2024-02-22 15:00:51.695 81000 TIP 433865 690 6032620 2024-02-22 15:01:34.235 2024-02-22 15:01:34.235 9000 FEE 434960 5557 6032621 2024-02-22 15:01:34.235 2024-02-22 15:01:34.235 81000 TIP 434960 17217 6032622 2024-02-22 15:01:36.039 2024-02-22 15:01:36.039 100 FEE 434957 1603 6032623 2024-02-22 15:01:36.039 2024-02-22 15:01:36.039 900 TIP 434957 6360 6032634 2024-02-22 15:01:56.076 2024-02-22 15:01:56.076 200 FEE 435053 6653 6032635 2024-02-22 15:01:56.076 2024-02-22 15:01:56.076 1800 TIP 435053 18476 6032661 2024-02-22 15:07:02.029 2024-02-22 15:07:02.029 12800 FEE 435080 18533 6032662 2024-02-22 15:07:02.029 2024-02-22 15:07:02.029 115200 TIP 435080 4574 6032682 2024-02-22 15:14:53.752 2024-02-22 15:14:53.752 1600 FEE 435073 951 6032683 2024-02-22 15:14:53.752 2024-02-22 15:14:53.752 14400 TIP 435073 9378 6032702 2024-02-22 15:16:37.807 2024-02-22 15:16:37.807 300 FEE 435002 20970 6032703 2024-02-22 15:16:37.807 2024-02-22 15:16:37.807 2700 TIP 435002 14202 6032704 2024-02-22 15:16:41.537 2024-02-22 15:16:41.537 1000 FEE 435089 20972 6032714 2024-02-22 15:17:26.548 2024-02-22 15:17:26.548 10000 FEE 435064 9166 6032715 2024-02-22 15:17:26.548 2024-02-22 15:17:26.548 90000 TIP 435064 19296 6032729 2024-02-22 15:21:18.023 2024-02-22 15:21:18.023 3400 FEE 434637 14271 6032730 2024-02-22 15:21:18.023 2024-02-22 15:21:18.023 30600 TIP 434637 627 6032734 2024-02-22 15:21:54.34 2024-02-22 15:21:54.34 3400 FEE 434637 18235 6032735 2024-02-22 15:21:54.34 2024-02-22 15:21:54.34 30600 TIP 434637 18581 6032789 2024-02-22 15:32:14.565 2024-02-22 15:32:14.565 1000 FEE 435097 20015 6032790 2024-02-22 15:32:14.565 2024-02-22 15:32:14.565 9000 TIP 435097 18265 6032798 2024-02-22 15:33:46.099 2024-02-22 15:33:46.099 1000 FEE 435109 18995 6032808 2024-02-22 15:35:49.062 2024-02-22 15:35:49.062 1000 FEE 434721 2640 6032809 2024-02-22 15:35:49.062 2024-02-22 15:35:49.062 9000 TIP 434721 20788 6032821 2024-02-22 15:37:34.816 2024-02-22 15:37:34.816 3000 FEE 435063 21332 6032822 2024-02-22 15:37:34.816 2024-02-22 15:37:34.816 27000 TIP 435063 18262 6032840 2024-02-22 15:38:55.344 2024-02-22 15:38:55.344 500 FEE 435063 1519 6032841 2024-02-22 15:38:55.344 2024-02-22 15:38:55.344 4500 TIP 435063 16356 6032860 2024-02-22 15:41:15.164 2024-02-22 15:41:15.164 7700 FEE 433669 7673 6032861 2024-02-22 15:41:15.164 2024-02-22 15:41:15.164 69300 TIP 433669 21398 6032862 2024-02-22 15:41:27.693 2024-02-22 15:41:27.693 2100 FEE 434323 20353 6032055 2024-02-22 14:05:10.05 2024-02-22 14:05:10.05 90000 TIP 434617 6268 6032080 2024-02-22 14:07:43.534 2024-02-22 14:07:43.534 3000 FEE 433865 9427 6032081 2024-02-22 14:07:43.534 2024-02-22 14:07:43.534 27000 TIP 433865 713 6032112 2024-02-22 14:12:58.871 2024-02-22 14:12:58.871 8300 FEE 434556 16485 6032113 2024-02-22 14:12:58.871 2024-02-22 14:12:58.871 74700 TIP 434556 17226 6032122 2024-02-22 14:14:09.452 2024-02-22 14:14:09.452 1000 FEE 435016 18727 6032126 2024-02-22 14:16:26.59 2024-02-22 14:16:26.59 2100 FEE 434707 635 6032127 2024-02-22 14:16:26.59 2024-02-22 14:16:26.59 18900 TIP 434707 4802 6032128 2024-02-22 14:16:52.601 2024-02-22 14:16:52.601 0 FEE 435017 17693 6032134 2024-02-22 14:17:05.284 2024-02-22 14:17:05.284 23000 DONT_LIKE_THIS 434969 9261 6032169 2024-02-22 14:22:27.462 2024-02-22 14:22:27.462 0 FEE 435017 12921 6032183 2024-02-22 14:24:37.905 2024-02-22 14:24:37.905 100 FEE 435026 10530 6032184 2024-02-22 14:24:37.905 2024-02-22 14:24:37.905 900 TIP 435026 17722 6032192 2024-02-22 14:24:44.976 2024-02-22 14:24:44.976 12800 FEE 312067 5809 6032193 2024-02-22 14:24:44.976 2024-02-22 14:24:44.976 115200 TIP 312067 18658 6032194 2024-02-22 14:24:46.131 2024-02-22 14:24:46.131 2100 FEE 434999 14247 6032195 2024-02-22 14:24:46.131 2024-02-22 14:24:46.131 18900 TIP 434999 4692 6032212 2024-02-22 14:25:39.091 2024-02-22 14:25:39.091 2100 FEE 434936 19992 6032213 2024-02-22 14:25:39.091 2024-02-22 14:25:39.091 18900 TIP 434936 5961 6032220 2024-02-22 14:26:45.04 2024-02-22 14:26:45.04 1000 FEE 435035 6499 6032232 2024-02-22 14:27:07.294 2024-02-22 14:27:07.294 2700 FEE 434498 19690 6032233 2024-02-22 14:27:07.294 2024-02-22 14:27:07.294 24300 TIP 434498 1094 6032265 2024-02-22 14:30:40.889 2024-02-22 14:30:40.889 2700 FEE 434440 11522 6032266 2024-02-22 14:30:40.889 2024-02-22 14:30:40.889 24300 TIP 434440 14195 6032267 2024-02-22 14:30:41.086 2024-02-22 14:30:41.086 2700 FEE 434440 11609 6032268 2024-02-22 14:30:41.086 2024-02-22 14:30:41.086 24300 TIP 434440 8998 6032294 2024-02-22 14:33:46.588 2024-02-22 14:33:46.588 500 FEE 434285 16424 6032295 2024-02-22 14:33:46.588 2024-02-22 14:33:46.588 4500 TIP 434285 13217 6032302 2024-02-22 14:33:49.804 2024-02-22 14:33:49.804 2700 FEE 434978 19572 6032303 2024-02-22 14:33:49.804 2024-02-22 14:33:49.804 24300 TIP 434978 9334 6032331 2024-02-22 14:38:23.282 2024-02-22 14:38:23.282 2700 FEE 434791 21585 6032332 2024-02-22 14:38:23.282 2024-02-22 14:38:23.282 24300 TIP 434791 18454 6032337 2024-02-22 14:38:23.888 2024-02-22 14:38:23.888 2700 FEE 434791 644 6032338 2024-02-22 14:38:23.888 2024-02-22 14:38:23.888 24300 TIP 434791 12334 6032374 2024-02-22 14:44:07.931 2024-02-22 14:44:07.931 9000 FEE 435030 13100 6032375 2024-02-22 14:44:07.931 2024-02-22 14:44:07.931 81000 TIP 435030 13903 6032384 2024-02-22 14:44:50.277 2024-02-22 14:44:50.277 9000 FEE 434962 15526 6032385 2024-02-22 14:44:50.277 2024-02-22 14:44:50.277 81000 TIP 434962 4043 6032404 2024-02-22 14:46:27.991 2024-02-22 14:46:27.991 10000 FEE 435051 19770 6032432 2024-02-22 14:49:02.92 2024-02-22 14:49:02.92 2100 FEE 434807 13854 6032433 2024-02-22 14:49:02.92 2024-02-22 14:49:02.92 18900 TIP 434807 11776 6032437 2024-02-22 14:49:31.495 2024-02-22 14:49:31.495 2100 FEE 434952 19142 6032438 2024-02-22 14:49:31.495 2024-02-22 14:49:31.495 18900 TIP 434952 21292 6032439 2024-02-22 14:49:33.458 2024-02-22 14:49:33.458 2100 FEE 434902 1552 6032440 2024-02-22 14:49:33.458 2024-02-22 14:49:33.458 18900 TIP 434902 17162 6032462 2024-02-22 14:50:41.045 2024-02-22 14:50:41.045 2100 FEE 434806 18174 6032463 2024-02-22 14:50:41.045 2024-02-22 14:50:41.045 18900 TIP 434806 11819 6032474 2024-02-22 14:51:13.899 2024-02-22 14:51:13.899 8300 FEE 435040 6578 6032475 2024-02-22 14:51:13.899 2024-02-22 14:51:13.899 74700 TIP 435040 20381 6032490 2024-02-22 14:52:06.897 2024-02-22 14:52:06.897 2100 FEE 435000 17673 6032491 2024-02-22 14:52:06.897 2024-02-22 14:52:06.897 18900 TIP 435000 674 6032524 2024-02-22 14:54:41.821 2024-02-22 14:54:41.821 9000 FEE 435046 18930 6032525 2024-02-22 14:54:41.821 2024-02-22 14:54:41.821 81000 TIP 435046 733 6032549 2024-02-22 14:56:38.552 2024-02-22 14:56:38.552 1100 FEE 435013 13759 6032550 2024-02-22 14:56:38.552 2024-02-22 14:56:38.552 9900 TIP 435013 16176 6032553 2024-02-22 14:56:48.809 2024-02-22 14:56:48.809 1100 FEE 435032 7869 6032554 2024-02-22 14:56:48.809 2024-02-22 14:56:48.809 9900 TIP 435032 4776 6032569 2024-02-22 14:57:31.962 2024-02-22 14:57:31.962 3000 FEE 435057 19021 6032570 2024-02-22 14:57:31.962 2024-02-22 14:57:31.962 27000 TIP 435057 19322 6032583 2024-02-22 14:58:48.035 2024-02-22 14:58:48.035 3200 FEE 435061 19501 6032584 2024-02-22 14:58:48.035 2024-02-22 14:58:48.035 28800 TIP 435061 17041 6032600 2024-02-22 15:00:27.58 2024-02-22 15:00:27.58 100 FEE 434827 13133 6032601 2024-02-22 15:00:27.58 2024-02-22 15:00:27.58 900 TIP 434827 688 6032639 2024-02-22 15:02:57.245 2024-02-22 15:02:57.245 1000 FEE 435079 692 6032643 2024-02-22 15:03:48.639 2024-02-22 15:03:48.639 1000 FEE 435080 1705 6032655 2024-02-22 15:06:06.446 2024-02-22 15:06:06.446 800 FEE 435077 21563 6032656 2024-02-22 15:06:06.446 2024-02-22 15:06:06.446 7200 TIP 435077 16633 6032659 2024-02-22 15:06:58.277 2024-02-22 15:06:58.277 900 FEE 435057 1039 6032660 2024-02-22 15:06:58.277 2024-02-22 15:06:58.277 8100 TIP 435057 18336 6032685 2024-02-22 15:15:28.677 2024-02-22 15:15:28.677 1000 FEE 435087 11819 6032692 2024-02-22 15:16:36.166 2024-02-22 15:16:36.166 300 FEE 435002 20006 6032693 2024-02-22 15:16:36.166 2024-02-22 15:16:36.166 2700 TIP 435002 1136 6032717 2024-02-22 15:17:47.602 2024-02-22 15:17:47.602 100 FEE 435087 2437 6032718 2024-02-22 15:17:47.602 2024-02-22 15:17:47.602 900 TIP 435087 12218 6032753 2024-02-22 15:25:16.227 2024-02-22 15:25:16.227 2100 FEE 435091 19967 6032754 2024-02-22 15:25:16.227 2024-02-22 15:25:16.227 18900 TIP 435091 2711 6032758 2024-02-22 15:26:43.307 2024-02-22 15:26:43.307 6300 FEE 435038 8448 6032759 2024-02-22 15:26:43.307 2024-02-22 15:26:43.307 56700 TIP 435038 703 6032761 2024-02-22 15:27:52.251 2024-02-22 15:27:52.251 10000 FEE 435101 13987 6032766 2024-02-22 15:28:29.57 2024-02-22 15:28:29.57 100 FEE 435051 1718 6032767 2024-02-22 15:28:29.57 2024-02-22 15:28:29.57 900 TIP 435051 19154 6032778 2024-02-22 15:30:42.735 2024-02-22 15:30:42.735 1000 FEE 435107 20581 6032806 2024-02-22 15:35:46.313 2024-02-22 15:35:46.313 1000 FEE 434721 10731 6032807 2024-02-22 15:35:46.313 2024-02-22 15:35:46.313 9000 TIP 434721 17109 6032812 2024-02-22 15:35:52.039 2024-02-22 15:35:52.039 1000 FEE 434721 10519 6032813 2024-02-22 15:35:52.039 2024-02-22 15:35:52.039 9000 TIP 434721 657 6032819 2024-02-22 15:37:05.721 2024-02-22 15:37:05.721 3300 FEE 435046 12819 6032820 2024-02-22 15:37:05.721 2024-02-22 15:37:05.721 29700 TIP 435046 963 6032842 2024-02-22 15:38:58.814 2024-02-22 15:38:58.814 1000 FEE 435065 19016 6032843 2024-02-22 15:38:58.814 2024-02-22 15:38:58.814 9000 TIP 435065 4064 6032846 2024-02-22 15:39:01.102 2024-02-22 15:39:01.102 10000 FEE 435111 21624 6032851 2024-02-22 15:39:13.881 2024-02-22 15:39:13.881 1000 FEE 435113 1472 6032856 2024-02-22 15:40:55.903 2024-02-22 15:40:55.903 1000 FEE 435116 19815 6032868 2024-02-22 15:41:40.291 2024-02-22 15:41:40.291 100 FEE 433649 9552 6032869 2024-02-22 15:41:40.291 2024-02-22 15:41:40.291 900 TIP 433649 5527 6032882 2024-02-22 15:41:42.983 2024-02-22 15:41:42.983 100 FEE 433649 1817 6032883 2024-02-22 15:41:42.983 2024-02-22 15:41:42.983 900 TIP 433649 775 6032890 2024-02-22 15:43:12.879 2024-02-22 15:43:12.879 15000 FEE 434851 21248 6032891 2024-02-22 15:43:12.879 2024-02-22 15:43:12.879 135000 TIP 434851 2583 6032941 2024-02-22 15:50:51.097 2024-02-22 15:50:51.097 100000 FEE 435125 10359 6032943 2024-02-22 15:51:15.151 2024-02-22 15:51:15.151 1000 FEE 435126 5085 6032060 2024-02-22 14:05:41.234 2024-02-22 14:05:41.234 100000 FEE 435002 8505 6032086 2024-02-22 14:08:23.815 2024-02-22 14:08:23.815 1600 FEE 435003 20110 6032087 2024-02-22 14:08:23.815 2024-02-22 14:08:23.815 14400 TIP 435003 10554 6032116 2024-02-22 14:13:06.985 2024-02-22 14:13:06.985 8300 FEE 434625 7097 6032117 2024-02-22 14:13:06.985 2024-02-22 14:13:06.985 74700 TIP 434625 11648 6032135 2024-02-22 14:17:26.091 2024-02-22 14:17:26.091 1000 FEE 435020 20299 6032142 2024-02-22 14:18:01.87 2024-02-22 14:18:01.87 1000 FEE 435021 20430 6032148 2024-02-22 14:18:45.708 2024-02-22 14:18:45.708 0 FEE 435017 17494 6032153 2024-02-22 14:18:53.113 2024-02-22 14:18:53.113 1000 FEE 435021 3729 6032154 2024-02-22 14:18:53.113 2024-02-22 14:18:53.113 9000 TIP 435021 21379 6032159 2024-02-22 14:20:26.85 2024-02-22 14:20:26.85 3000 FEE 253077 15243 6032160 2024-02-22 14:20:26.85 2024-02-22 14:20:26.85 27000 TIP 253077 7772 6032164 2024-02-22 14:21:18.349 2024-02-22 14:21:18.349 1000 FEE 435024 21303 6032196 2024-02-22 14:24:46.36 2024-02-22 14:24:46.36 100 FEE 435018 9078 6032197 2024-02-22 14:24:46.36 2024-02-22 14:24:46.36 900 TIP 435018 17209 6032204 2024-02-22 14:25:17.194 2024-02-22 14:25:17.194 12800 FEE 312024 20156 6032205 2024-02-22 14:25:17.194 2024-02-22 14:25:17.194 115200 TIP 312024 18453 6032227 2024-02-22 14:27:01.288 2024-02-22 14:27:01.288 700 FEE 433547 1493 6032228 2024-02-22 14:27:01.288 2024-02-22 14:27:01.288 6300 TIP 433547 21201 6032236 2024-02-22 14:27:09.321 2024-02-22 14:27:09.321 2700 FEE 434498 19930 6032237 2024-02-22 14:27:09.321 2024-02-22 14:27:09.321 24300 TIP 434498 8380 6032279 2024-02-22 14:32:44.35 2024-02-22 14:32:44.35 2700 FEE 434962 12779 6032280 2024-02-22 14:32:44.35 2024-02-22 14:32:44.35 24300 TIP 434962 10519 6032287 2024-02-22 14:32:44.946 2024-02-22 14:32:44.946 2700 FEE 434962 18235 6032288 2024-02-22 14:32:44.946 2024-02-22 14:32:44.946 24300 TIP 434962 2780 6032316 2024-02-22 14:37:50.711 2024-02-22 14:37:50.711 1000 FEE 435042 9329 6032335 2024-02-22 14:38:23.665 2024-02-22 14:38:23.665 2700 FEE 434791 21573 6032336 2024-02-22 14:38:23.665 2024-02-22 14:38:23.665 24300 TIP 434791 18409 6032339 2024-02-22 14:38:24.663 2024-02-22 14:38:24.663 2700 FEE 434791 964 6032340 2024-02-22 14:38:24.663 2024-02-22 14:38:24.663 24300 TIP 434791 15843 6032368 2024-02-22 14:43:46.48 2024-02-22 14:43:46.48 83000 DONT_LIKE_THIS 434931 1209 6032390 2024-02-22 14:45:46.714 2024-02-22 14:45:46.714 3000 FEE 435046 19105 6032391 2024-02-22 14:45:46.714 2024-02-22 14:45:46.714 27000 TIP 435046 13055 6032409 2024-02-22 14:46:40.457 2024-02-22 14:46:40.457 2100 FEE 435030 13365 6032410 2024-02-22 14:46:40.457 2024-02-22 14:46:40.457 18900 TIP 435030 15491 6032416 2024-02-22 14:46:51.95 2024-02-22 14:46:51.95 2100 FEE 434994 19992 6032417 2024-02-22 14:46:51.95 2024-02-22 14:46:51.95 18900 TIP 434994 1617 6032452 2024-02-22 14:50:27.864 2024-02-22 14:50:27.864 900 FEE 434990 9843 6032453 2024-02-22 14:50:27.864 2024-02-22 14:50:27.864 8100 TIP 434990 17171 6032460 2024-02-22 14:50:31.713 2024-02-22 14:50:31.713 900 FEE 435000 3439 6032461 2024-02-22 14:50:31.713 2024-02-22 14:50:31.713 8100 TIP 435000 21303 6032503 2024-02-22 14:52:14.169 2024-02-22 14:52:14.169 1000 FEE 434991 12272 6032504 2024-02-22 14:52:14.169 2024-02-22 14:52:14.169 9000 TIP 434991 20094 6032511 2024-02-22 14:53:19.659 2024-02-22 14:53:19.659 1000 FEE 435061 21620 6032517 2024-02-22 14:54:14.358 2024-02-22 14:54:14.358 1000 FEE 435063 14168 6032520 2024-02-22 14:54:40.82 2024-02-22 14:54:40.82 100 FEE 435046 15161 6032521 2024-02-22 14:54:40.82 2024-02-22 14:54:40.82 900 TIP 435046 704 6032534 2024-02-22 14:56:02.261 2024-02-22 14:56:02.261 1100 FEE 434980 763 6032535 2024-02-22 14:56:02.261 2024-02-22 14:56:02.261 9900 TIP 434980 15732 6032536 2024-02-22 14:56:02.438 2024-02-22 14:56:02.438 1100 FEE 434980 17708 6032537 2024-02-22 14:56:02.438 2024-02-22 14:56:02.438 9900 TIP 434980 21037 6032538 2024-02-22 14:56:02.609 2024-02-22 14:56:02.609 1100 FEE 434980 5708 6032539 2024-02-22 14:56:02.609 2024-02-22 14:56:02.609 9900 TIP 434980 2347 6032543 2024-02-22 14:56:17.098 2024-02-22 14:56:17.098 1100 FEE 435009 21605 6032544 2024-02-22 14:56:17.098 2024-02-22 14:56:17.098 9900 TIP 435009 6384 6032555 2024-02-22 14:56:48.969 2024-02-22 14:56:48.969 1100 FEE 435032 715 6032556 2024-02-22 14:56:48.969 2024-02-22 14:56:48.969 9900 TIP 435032 21247 6032559 2024-02-22 14:56:57.9 2024-02-22 14:56:57.9 1100 FEE 435043 19021 6032560 2024-02-22 14:56:57.9 2024-02-22 14:56:57.9 9900 TIP 435043 16229 6032565 2024-02-22 14:57:26.646 2024-02-22 14:57:26.646 1000 FEE 435068 2596 6032586 2024-02-22 14:59:03.526 2024-02-22 14:59:03.526 1000 FEE 435072 21463 6032594 2024-02-22 15:00:21.487 2024-02-22 15:00:21.487 1600 FEE 435030 18601 6032595 2024-02-22 15:00:21.487 2024-02-22 15:00:21.487 14400 TIP 435030 21466 6032608 2024-02-22 15:00:49.934 2024-02-22 15:00:49.934 100 FEE 433865 3745 6032609 2024-02-22 15:00:49.934 2024-02-22 15:00:49.934 900 TIP 433865 1401 6032617 2024-02-22 15:01:12.112 2024-02-22 15:01:12.112 900 FEE 434960 1515 6032618 2024-02-22 15:01:12.112 2024-02-22 15:01:12.112 8100 TIP 434960 18667 6032664 2024-02-22 15:07:03.965 2024-02-22 15:07:03.965 1000 FEE 435019 650 6032665 2024-02-22 15:07:03.965 2024-02-22 15:07:03.965 9000 TIP 435019 3417 6032669 2024-02-22 15:10:20.071 2024-02-22 15:10:20.071 10000 FEE 435083 18904 6032676 2024-02-22 15:13:37.514 2024-02-22 15:13:37.514 1000 FEE 435085 7966 6032679 2024-02-22 15:14:16.757 2024-02-22 15:14:16.757 0 FEE 435086 21605 6032698 2024-02-22 15:16:37.174 2024-02-22 15:16:37.174 300 FEE 435002 20586 6032699 2024-02-22 15:16:37.174 2024-02-22 15:16:37.174 2700 TIP 435002 701 6032700 2024-02-22 15:16:37.474 2024-02-22 15:16:37.474 300 FEE 435002 20554 6032701 2024-02-22 15:16:37.474 2024-02-22 15:16:37.474 2700 TIP 435002 782 6032705 2024-02-22 15:16:43.379 2024-02-22 15:16:43.379 2100 FEE 434628 13348 6032706 2024-02-22 15:16:43.379 2024-02-22 15:16:43.379 18900 TIP 434628 2203 6032721 2024-02-22 15:19:40.621 2024-02-22 15:19:40.621 3400 FEE 435046 7395 6032722 2024-02-22 15:19:40.621 2024-02-22 15:19:40.621 30600 TIP 435046 6003 6032723 2024-02-22 15:19:42.137 2024-02-22 15:19:42.137 3400 FEE 435046 20892 6032724 2024-02-22 15:19:42.137 2024-02-22 15:19:42.137 30600 TIP 435046 21003 6032741 2024-02-22 15:22:54.54 2024-02-22 15:22:54.54 1000 FEE 435096 15161 6032773 2024-02-22 15:29:28.282 2024-02-22 15:29:28.282 1600 FEE 435103 15226 6032774 2024-02-22 15:29:28.282 2024-02-22 15:29:28.282 14400 TIP 435103 20168 6032814 2024-02-22 15:35:55.186 2024-02-22 15:35:55.186 1000 FEE 434721 2176 6032815 2024-02-22 15:35:55.186 2024-02-22 15:35:55.186 9000 TIP 434721 8998 6032827 2024-02-22 15:37:48.878 2024-02-22 15:37:48.878 27000 FEE 435059 17552 6032828 2024-02-22 15:37:48.878 2024-02-22 15:37:48.878 243000 TIP 435059 3461 6032850 2024-02-22 15:39:12.942 2024-02-22 15:39:12.942 10000 FEE 435112 15697 6032857 2024-02-22 15:40:59.234 2024-02-22 15:40:59.234 1000 FEE 435018 1626 6032858 2024-02-22 15:40:59.234 2024-02-22 15:40:59.234 9000 TIP 435018 12779 6032880 2024-02-22 15:41:42.516 2024-02-22 15:41:42.516 100 FEE 433649 11956 6032881 2024-02-22 15:41:42.516 2024-02-22 15:41:42.516 900 TIP 433649 1012 6032887 2024-02-22 15:42:53.968 2024-02-22 15:42:53.968 1000 FEE 435117 18306 6032889 2024-02-22 15:43:06.418 2024-02-22 15:43:06.418 1000 FEE 435118 683 6032897 2024-02-22 15:43:53.567 2024-02-22 15:43:53.567 10000 FEE 435120 18615 6032932 2024-02-22 15:49:41.91 2024-02-22 15:49:41.91 1000 FEE 435123 19541 6032957 2024-02-22 15:53:30.074 2024-02-22 15:53:30.074 800 FEE 435046 5752 6032139 2024-02-22 14:18:00.766 2024-02-22 14:18:00.766 2700 TIP 434846 20225 6032151 2024-02-22 14:18:52.431 2024-02-22 14:18:52.431 1000 FEE 435021 19118 6032152 2024-02-22 14:18:52.431 2024-02-22 14:18:52.431 9000 TIP 435021 17030 6032157 2024-02-22 14:20:08.079 2024-02-22 14:20:08.079 1000 FEE 435023 12024 6032158 2024-02-22 14:20:20.289 2024-02-22 14:20:20.289 0 FEE 435017 8541 6032161 2024-02-22 14:20:27.167 2024-02-22 14:20:27.167 27000 FEE 253077 1162 6032162 2024-02-22 14:20:27.167 2024-02-22 14:20:27.167 243000 TIP 253077 20511 6032187 2024-02-22 14:24:38.299 2024-02-22 14:24:38.299 0 FEE 435017 18784 6032198 2024-02-22 14:24:46.512 2024-02-22 14:24:46.512 900 FEE 435018 16042 6032199 2024-02-22 14:24:46.512 2024-02-22 14:24:46.512 8100 TIP 435018 21022 6032225 2024-02-22 14:26:54.845 2024-02-22 14:26:54.845 300 FEE 432838 9820 6032226 2024-02-22 14:26:54.845 2024-02-22 14:26:54.845 2700 TIP 432838 1784 6032234 2024-02-22 14:27:08.222 2024-02-22 14:27:08.222 2700 FEE 434498 13378 6032235 2024-02-22 14:27:08.222 2024-02-22 14:27:08.222 24300 TIP 434498 1571 6032296 2024-02-22 14:33:46.892 2024-02-22 14:33:46.892 500 FEE 434285 18357 6032297 2024-02-22 14:33:46.892 2024-02-22 14:33:46.892 4500 TIP 434285 14225 6032304 2024-02-22 14:33:50.001 2024-02-22 14:33:50.001 2700 FEE 434978 2775 6032305 2024-02-22 14:33:50.001 2024-02-22 14:33:50.001 24300 TIP 434978 11443 6032309 2024-02-22 14:34:27.319 2024-02-22 14:34:27.319 1000 FEE 435040 20691 6032311 2024-02-22 14:35:49.505 2024-02-22 14:35:49.505 1000 FEE 435041 19773 6032318 2024-02-22 14:38:06.686 2024-02-22 14:38:06.686 1000 FEE 435043 19484 6032380 2024-02-22 14:44:47.838 2024-02-22 14:44:47.838 100 FEE 434962 18640 6032381 2024-02-22 14:44:47.838 2024-02-22 14:44:47.838 900 TIP 434962 20973 6032382 2024-02-22 14:44:48.054 2024-02-22 14:44:48.054 900 FEE 434962 11164 6032383 2024-02-22 14:44:48.054 2024-02-22 14:44:48.054 8100 TIP 434962 4322 6032427 2024-02-22 14:48:39.95 2024-02-22 14:48:39.95 2100 FEE 434920 18941 6032428 2024-02-22 14:48:39.95 2024-02-22 14:48:39.95 18900 TIP 434920 10063 6032441 2024-02-22 14:49:52.244 2024-02-22 14:49:52.244 2100 FEE 434859 2232 6032442 2024-02-22 14:49:52.244 2024-02-22 14:49:52.244 18900 TIP 434859 2156 6032445 2024-02-22 14:50:06.316 2024-02-22 14:50:06.316 2100 FEE 434845 5522 6032446 2024-02-22 14:50:06.316 2024-02-22 14:50:06.316 18900 TIP 434845 732 6032466 2024-02-22 14:50:50.958 2024-02-22 14:50:50.958 2100 FEE 434791 3392 6032467 2024-02-22 14:50:50.958 2024-02-22 14:50:50.958 18900 TIP 434791 5942 6032478 2024-02-22 14:51:26.158 2024-02-22 14:51:26.158 2100 FEE 434797 6471 6032479 2024-02-22 14:51:26.158 2024-02-22 14:51:26.158 18900 TIP 434797 9669 6032484 2024-02-22 14:51:52.776 2024-02-22 14:51:52.776 1000 FEE 434810 9705 6032485 2024-02-22 14:51:52.776 2024-02-22 14:51:52.776 9000 TIP 434810 18517 6032486 2024-02-22 14:52:01.358 2024-02-22 14:52:01.358 1000 FEE 435058 19381 6032545 2024-02-22 14:56:17.228 2024-02-22 14:56:17.228 1100 FEE 435009 13398 6032546 2024-02-22 14:56:17.228 2024-02-22 14:56:17.228 9900 TIP 435009 18051 6032567 2024-02-22 14:57:31.743 2024-02-22 14:57:31.743 1100 FEE 435018 1605 6032568 2024-02-22 14:57:31.743 2024-02-22 14:57:31.743 9900 TIP 435018 18314 6032573 2024-02-22 14:57:59.189 2024-02-22 14:57:59.189 4000 FEE 435066 21072 6032574 2024-02-22 14:57:59.189 2024-02-22 14:57:59.189 36000 TIP 435066 12561 6032579 2024-02-22 14:58:38.498 2024-02-22 14:58:38.498 0 FEE 435066 16004 6032587 2024-02-22 14:59:12.289 2024-02-22 14:59:12.289 10000 FEE 435073 19043 6032602 2024-02-22 15:00:28.124 2024-02-22 15:00:28.124 100 FEE 434827 19329 6032603 2024-02-22 15:00:28.124 2024-02-22 15:00:28.124 900 TIP 434827 21386 6032624 2024-02-22 15:01:36.216 2024-02-22 15:01:36.216 900 FEE 434957 20980 6032625 2024-02-22 15:01:36.216 2024-02-22 15:01:36.216 8100 TIP 434957 11288 6032657 2024-02-22 15:06:58.143 2024-02-22 15:06:58.143 100 FEE 435057 18518 6032658 2024-02-22 15:06:58.143 2024-02-22 15:06:58.143 900 TIP 435057 6537 6032671 2024-02-22 15:11:58.041 2024-02-22 15:11:58.041 1000 FEE 435084 15146 6032677 2024-02-22 15:13:59.752 2024-02-22 15:13:59.752 1000 FEE 435086 21061 6032680 2024-02-22 15:14:37.693 2024-02-22 15:14:37.693 2100 FEE 435002 17690 6032681 2024-02-22 15:14:37.693 2024-02-22 15:14:37.693 18900 TIP 435002 16839 6032689 2024-02-22 15:16:17.461 2024-02-22 15:16:17.461 1000 FEE 435088 21480 6032712 2024-02-22 15:17:17.075 2024-02-22 15:17:17.075 1000 FEE 435090 27 6032728 2024-02-22 15:21:17.881 2024-02-22 15:21:17.881 1000 FEE 435094 18994 6032731 2024-02-22 15:21:30.251 2024-02-22 15:21:30.251 1000 FEE 435095 11819 6032749 2024-02-22 15:24:42.444 2024-02-22 15:24:42.444 5000 FEE 435100 706 6032756 2024-02-22 15:26:25.976 2024-02-22 15:26:25.976 10000 FEE 435030 1717 6032757 2024-02-22 15:26:25.976 2024-02-22 15:26:25.976 90000 TIP 435030 4014 6032764 2024-02-22 15:28:13.955 2024-02-22 15:28:13.955 1000 FEE 435103 4973 6032771 2024-02-22 15:29:15.079 2024-02-22 15:29:15.079 1000 FEE 435105 9332 6032772 2024-02-22 15:29:25.692 2024-02-22 15:29:25.692 1000 FEE 435106 14037 6032793 2024-02-22 15:32:14.956 2024-02-22 15:32:14.956 1000 FEE 435097 2774 6032794 2024-02-22 15:32:14.956 2024-02-22 15:32:14.956 9000 TIP 435097 21389 6032795 2024-02-22 15:32:15.203 2024-02-22 15:32:15.203 1000 FEE 435097 979 6032796 2024-02-22 15:32:15.203 2024-02-22 15:32:15.203 9000 TIP 435097 759 6032832 2024-02-22 15:38:34.126 2024-02-22 15:38:34.126 2100 FEE 435018 20841 6032833 2024-02-22 15:38:34.126 2024-02-22 15:38:34.126 18900 TIP 435018 1617 6032870 2024-02-22 15:41:40.969 2024-02-22 15:41:40.969 100 FEE 433649 19541 6032871 2024-02-22 15:41:40.969 2024-02-22 15:41:40.969 900 TIP 433649 20646 6032872 2024-02-22 15:41:41.226 2024-02-22 15:41:41.226 100 FEE 433649 14774 6032873 2024-02-22 15:41:41.226 2024-02-22 15:41:41.226 900 TIP 433649 20701 6032878 2024-02-22 15:41:41.978 2024-02-22 15:41:41.978 100 FEE 433649 1618 6032879 2024-02-22 15:41:41.978 2024-02-22 15:41:41.978 900 TIP 433649 21556 6032884 2024-02-22 15:41:43.64 2024-02-22 15:41:43.64 100 FEE 433649 19465 6032885 2024-02-22 15:41:43.64 2024-02-22 15:41:43.64 900 TIP 433649 18717 6032906 2024-02-22 15:44:14.954 2024-02-22 15:44:14.954 1000 FEE 434600 1236 6032907 2024-02-22 15:44:14.954 2024-02-22 15:44:14.954 9000 TIP 434600 15549 6032930 2024-02-22 15:49:39.734 2024-02-22 15:49:39.734 2100 FEE 434845 15326 6032931 2024-02-22 15:49:39.734 2024-02-22 15:49:39.734 18900 TIP 434845 12024 6032945 2024-02-22 15:51:35.777 2024-02-22 15:51:35.777 2100 FEE 435123 5527 6032946 2024-02-22 15:51:35.777 2024-02-22 15:51:35.777 18900 TIP 435123 18270 6032953 2024-02-22 15:52:56.399 2024-02-22 15:52:56.399 8300 FEE 435116 9345 6032954 2024-02-22 15:52:56.399 2024-02-22 15:52:56.399 74700 TIP 435116 9355 6032976 2024-02-22 15:54:45.211 2024-02-22 15:54:45.211 1000 FEE 435030 10771 6032977 2024-02-22 15:54:45.211 2024-02-22 15:54:45.211 9000 TIP 435030 18680 6032995 2024-02-22 15:56:38.171 2024-02-22 15:56:38.171 3300 FEE 435059 20254 6032996 2024-02-22 15:56:38.171 2024-02-22 15:56:38.171 29700 TIP 435059 20511 6033007 2024-02-22 15:58:29.15 2024-02-22 15:58:29.15 100000 FEE 435140 20179 6033032 2024-02-22 15:58:46.83 2024-02-22 15:58:46.83 8300 FEE 434791 16942 6032140 2024-02-22 14:18:01.561 2024-02-22 14:18:01.561 27000 FEE 434958 5942 6032141 2024-02-22 14:18:01.561 2024-02-22 14:18:01.561 243000 TIP 434958 9107 6032168 2024-02-22 14:22:24.262 2024-02-22 14:22:24.262 1000 FEE 435025 3717 6032173 2024-02-22 14:22:44.67 2024-02-22 14:22:44.67 2100 FEE 435001 15139 6032174 2024-02-22 14:22:44.67 2024-02-22 14:22:44.67 18900 TIP 435001 20802 6032221 2024-02-22 14:26:46.944 2024-02-22 14:26:46.944 3200 FEE 434991 20614 6032222 2024-02-22 14:26:46.944 2024-02-22 14:26:46.944 28800 TIP 434991 720 6032230 2024-02-22 14:27:05.79 2024-02-22 14:27:05.79 5400 FEE 434498 4487 6032231 2024-02-22 14:27:05.79 2024-02-22 14:27:05.79 48600 TIP 434498 1039 6032238 2024-02-22 14:27:31.195 2024-02-22 14:27:31.195 2700 FEE 435019 1772 6032239 2024-02-22 14:27:31.195 2024-02-22 14:27:31.195 24300 TIP 435019 15521 6032252 2024-02-22 14:28:20.188 2024-02-22 14:28:20.188 700 FEE 435031 6335 6032253 2024-02-22 14:28:20.188 2024-02-22 14:28:20.188 6300 TIP 435031 16176 6032256 2024-02-22 14:30:32.07 2024-02-22 14:30:32.07 1000 FEE 435037 2502 6032289 2024-02-22 14:32:45.131 2024-02-22 14:32:45.131 2700 FEE 434962 7998 6032290 2024-02-22 14:32:45.131 2024-02-22 14:32:45.131 24300 TIP 434962 17082 6032319 2024-02-22 14:38:22.277 2024-02-22 14:38:22.277 2700 FEE 434791 20993 6032320 2024-02-22 14:38:22.277 2024-02-22 14:38:22.277 24300 TIP 434791 811 6032333 2024-02-22 14:38:23.471 2024-02-22 14:38:23.471 2700 FEE 434791 798 6032334 2024-02-22 14:38:23.471 2024-02-22 14:38:23.471 24300 TIP 434791 21401 6032344 2024-02-22 14:39:28.871 2024-02-22 14:39:28.871 1000 FEE 435044 9036 6032350 2024-02-22 14:40:59.594 2024-02-22 14:40:59.594 1000 FEE 435045 4650 6032351 2024-02-22 14:40:59.594 2024-02-22 14:40:59.594 9000 TIP 435045 16212 6032372 2024-02-22 14:44:06.516 2024-02-22 14:44:06.516 900 FEE 435030 19902 6032373 2024-02-22 14:44:06.516 2024-02-22 14:44:06.516 8100 TIP 435030 2029 6032376 2024-02-22 14:44:08.045 2024-02-22 14:44:08.045 90000 FEE 435030 18772 6032377 2024-02-22 14:44:08.045 2024-02-22 14:44:08.045 810000 TIP 435030 20911 6032420 2024-02-22 14:46:54.281 2024-02-22 14:46:54.281 10000 FEE 435053 5057 6032448 2024-02-22 14:50:18.74 2024-02-22 14:50:18.74 2100 FEE 434842 19987 6032449 2024-02-22 14:50:18.74 2024-02-22 14:50:18.74 18900 TIP 434842 20220 6032450 2024-02-22 14:50:27.701 2024-02-22 14:50:27.701 100 FEE 434990 8245 6032451 2024-02-22 14:50:27.701 2024-02-22 14:50:27.701 900 TIP 434990 20840 6032456 2024-02-22 14:50:30.768 2024-02-22 14:50:30.768 900 FEE 435004 1046 6032457 2024-02-22 14:50:30.768 2024-02-22 14:50:30.768 8100 TIP 435004 21422 6032468 2024-02-22 14:51:01 2024-02-22 14:51:01 1000 FEE 435057 19282 6032476 2024-02-22 14:51:18.71 2024-02-22 14:51:18.71 2100 FEE 434798 802 6032477 2024-02-22 14:51:18.71 2024-02-22 14:51:18.71 18900 TIP 434798 21180 6032492 2024-02-22 14:52:08.192 2024-02-22 14:52:08.192 2100 FEE 434796 11885 6032493 2024-02-22 14:52:08.192 2024-02-22 14:52:08.192 18900 TIP 434796 11609 6032499 2024-02-22 14:52:13.795 2024-02-22 14:52:13.795 1000 FEE 434991 7510 6032500 2024-02-22 14:52:13.795 2024-02-22 14:52:13.795 9000 TIP 434991 14552 6032526 2024-02-22 14:54:52.612 2024-02-22 14:54:52.612 90000 FEE 435046 14650 6032527 2024-02-22 14:54:52.612 2024-02-22 14:54:52.612 810000 TIP 435046 8648 6032531 2024-02-22 14:55:22.493 2024-02-22 14:55:22.493 1000 FEE 435066 8505 6032557 2024-02-22 14:56:49.114 2024-02-22 14:56:49.114 1100 FEE 435032 13174 6032558 2024-02-22 14:56:49.114 2024-02-22 14:56:49.114 9900 TIP 435032 4079 6032561 2024-02-22 14:56:58.039 2024-02-22 14:56:58.039 1100 FEE 435043 954 6032562 2024-02-22 14:56:58.039 2024-02-22 14:56:58.039 9900 TIP 435043 4802 6032566 2024-02-22 14:57:27.792 2024-02-22 14:57:27.792 1000 FEE 435069 7960 6032571 2024-02-22 14:57:34.117 2024-02-22 14:57:34.117 1000 FEE 434994 16505 6032572 2024-02-22 14:57:34.117 2024-02-22 14:57:34.117 9000 TIP 434994 19259 6032589 2024-02-22 14:59:29.189 2024-02-22 14:59:29.189 1000 FEE 435074 1145 6032610 2024-02-22 15:00:50.058 2024-02-22 15:00:50.058 900 FEE 433865 21599 6032611 2024-02-22 15:00:50.058 2024-02-22 15:00:50.058 8100 TIP 433865 3506 6032628 2024-02-22 15:01:52.044 2024-02-22 15:01:52.044 100 FEE 435071 14650 6032629 2024-02-22 15:01:52.044 2024-02-22 15:01:52.044 900 TIP 435071 18667 6032637 2024-02-22 15:02:04.664 2024-02-22 15:02:04.664 1000 FEE 435077 11091 6032644 2024-02-22 15:03:49.813 2024-02-22 15:03:49.813 1000 FEE 435037 20110 6032645 2024-02-22 15:03:49.813 2024-02-22 15:03:49.813 9000 TIP 435037 6421 6032651 2024-02-22 15:06:02.915 2024-02-22 15:06:02.915 1600 FEE 435081 10549 6032652 2024-02-22 15:06:02.915 2024-02-22 15:06:02.915 14400 TIP 435081 19484 6032654 2024-02-22 15:06:04.232 2024-02-22 15:06:04.232 1000 FEE 435082 1825 6032716 2024-02-22 15:17:30.516 2024-02-22 15:17:30.516 1000 FEE 435092 9150 6032747 2024-02-22 15:24:21.599 2024-02-22 15:24:21.599 2100 FEE 434960 994 6032748 2024-02-22 15:24:21.599 2024-02-22 15:24:21.599 18900 TIP 434960 12808 6032776 2024-02-22 15:30:26.498 2024-02-22 15:30:26.498 1600 FEE 435105 15719 6032777 2024-02-22 15:30:26.498 2024-02-22 15:30:26.498 14400 TIP 435105 9433 6032787 2024-02-22 15:32:14.389 2024-02-22 15:32:14.389 1000 FEE 435097 976 6032788 2024-02-22 15:32:14.389 2024-02-22 15:32:14.389 9000 TIP 435097 640 6032825 2024-02-22 15:37:48.439 2024-02-22 15:37:48.439 3000 FEE 435059 4027 6032826 2024-02-22 15:37:48.439 2024-02-22 15:37:48.439 27000 TIP 435059 18262 6032834 2024-02-22 15:38:38.877 2024-02-22 15:38:38.877 2100 FEE 434982 11621 6032835 2024-02-22 15:38:38.877 2024-02-22 15:38:38.877 18900 TIP 434982 27 6032852 2024-02-22 15:39:18.566 2024-02-22 15:39:18.566 100000 FEE 435115 16176 6032895 2024-02-22 15:43:48.838 2024-02-22 15:43:48.838 2100 FEE 435072 11621 6032896 2024-02-22 15:43:48.838 2024-02-22 15:43:48.838 18900 TIP 435072 2264 6032899 2024-02-22 15:44:05.666 2024-02-22 15:44:05.666 2100 FEE 434957 8505 6032900 2024-02-22 15:44:05.666 2024-02-22 15:44:05.666 18900 TIP 434957 20370 6032904 2024-02-22 15:44:14.391 2024-02-22 15:44:14.391 1000 FEE 434600 11240 6032905 2024-02-22 15:44:14.391 2024-02-22 15:44:14.391 9000 TIP 434600 20802 6032915 2024-02-22 15:45:54.681 2024-02-22 15:45:54.681 4000 FEE 435115 11938 6032916 2024-02-22 15:45:54.681 2024-02-22 15:45:54.681 36000 TIP 435115 16348 6032923 2024-02-22 15:48:22.54 2024-02-22 15:48:22.54 10000 FEE 434994 1626 6032924 2024-02-22 15:48:22.54 2024-02-22 15:48:22.54 90000 TIP 434994 18468 6032987 2024-02-22 15:55:22.074 2024-02-22 15:55:22.074 3300 FEE 435063 1141 6032988 2024-02-22 15:55:22.074 2024-02-22 15:55:22.074 29700 TIP 435063 18051 6033000 2024-02-22 15:57:48.347 2024-02-22 15:57:48.347 1000 FEE 435138 13931 6033018 2024-02-22 15:58:45.777 2024-02-22 15:58:45.777 8300 FEE 434791 837 6033019 2024-02-22 15:58:45.777 2024-02-22 15:58:45.777 74700 TIP 434791 11075 6033022 2024-02-22 15:58:45.912 2024-02-22 15:58:45.912 8300 FEE 434791 18271 6033023 2024-02-22 15:58:45.912 2024-02-22 15:58:45.912 74700 TIP 434791 19033 6033034 2024-02-22 15:58:56.308 2024-02-22 15:58:56.308 7100 FEE 435026 1773 6033035 2024-02-22 15:58:56.308 2024-02-22 15:58:56.308 63900 TIP 435026 713 6033057 2024-02-22 15:59:20.362 2024-02-22 15:59:20.362 2100 FEE 434991 15180 6033058 2024-02-22 15:59:20.362 2024-02-22 15:59:20.362 18900 TIP 434991 15213 6033059 2024-02-22 15:59:20.675 2024-02-22 15:59:20.675 1000 FEE 435141 8269 6033072 2024-02-22 16:00:07.103 2024-02-22 16:00:07.103 100 FEE 435100 16126 6033073 2024-02-22 16:00:07.103 2024-02-22 16:00:07.103 900 TIP 435100 21036 6032143 2024-02-22 14:18:03.67 2024-02-22 14:18:03.67 1000 STREAM 141924 8269 6032155 2024-02-22 14:19:03.655 2024-02-22 14:19:03.655 1000 STREAM 141924 6537 6032163 2024-02-22 14:21:03.659 2024-02-22 14:21:03.659 1000 STREAM 141924 18557 6032179 2024-02-22 14:23:03.668 2024-02-22 14:23:03.668 1000 STREAM 141924 21194 6032182 2024-02-22 14:24:03.668 2024-02-22 14:24:03.668 1000 STREAM 141924 19378 6032255 2024-02-22 14:30:03.718 2024-02-22 14:30:03.718 1000 STREAM 141924 1092 6032274 2024-02-22 14:32:03.695 2024-02-22 14:32:03.695 1000 STREAM 141924 14941 6032293 2024-02-22 14:33:03.703 2024-02-22 14:33:03.703 1000 STREAM 141924 18784 6032308 2024-02-22 14:34:03.747 2024-02-22 14:34:03.747 1000 STREAM 141924 2774 6032310 2024-02-22 14:35:03.715 2024-02-22 14:35:03.715 1000 STREAM 141924 6003 6032312 2024-02-22 14:36:03.731 2024-02-22 14:36:03.731 1000 STREAM 141924 4177 6032317 2024-02-22 14:38:03.736 2024-02-22 14:38:03.736 1000 STREAM 141924 4798 6032343 2024-02-22 14:39:03.749 2024-02-22 14:39:03.749 1000 STREAM 141924 9992 6032348 2024-02-22 14:40:03.77 2024-02-22 14:40:03.77 1000 STREAM 141924 1272 6032352 2024-02-22 14:41:03.778 2024-02-22 14:41:03.778 1000 STREAM 141924 21523 6032354 2024-02-22 14:42:03.776 2024-02-22 14:42:03.776 1000 STREAM 141924 9476 6032363 2024-02-22 14:43:03.772 2024-02-22 14:43:03.772 1000 STREAM 141924 1490 6032369 2024-02-22 14:44:03.781 2024-02-22 14:44:03.781 1000 STREAM 141924 14225 6032387 2024-02-22 14:45:03.782 2024-02-22 14:45:03.782 1000 STREAM 141924 4633 6032421 2024-02-22 14:47:03.796 2024-02-22 14:47:03.796 1000 STREAM 141924 11477 6032424 2024-02-22 14:48:03.81 2024-02-22 14:48:03.81 1000 STREAM 141924 2735 6037365 2024-02-22 22:13:02.914 2024-02-22 22:13:02.914 1000 STREAM 141924 7869 6037367 2024-02-22 22:14:03.116 2024-02-22 22:14:03.116 1000 STREAM 141924 666 6038780 2024-02-23 00:54:26.784 2024-02-23 00:54:26.784 27000 TIP 435657 19189 6038801 2024-02-23 00:59:00.69 2024-02-23 00:59:00.69 1000 FEE 435728 21389 6038807 2024-02-23 01:01:27.625 2024-02-23 01:01:27.625 1000 FEE 435731 4014 6038808 2024-02-23 01:01:36.187 2024-02-23 01:01:36.187 10000 FEE 435732 7766 6038820 2024-02-23 01:04:41.203 2024-02-23 01:04:41.203 1000 FEE 435735 21402 6038837 2024-02-23 01:10:42.854 2024-02-23 01:10:42.854 1000 FEE 435610 20701 6038838 2024-02-23 01:10:42.854 2024-02-23 01:10:42.854 9000 TIP 435610 954 6038843 2024-02-23 01:11:05.996 2024-02-23 01:11:05.996 1000 FEE 435631 21413 6038844 2024-02-23 01:11:05.996 2024-02-23 01:11:05.996 9000 TIP 435631 19843 6038864 2024-02-23 01:12:13.353 2024-02-23 01:12:13.353 1000 FEE 435580 1060 6038865 2024-02-23 01:12:13.353 2024-02-23 01:12:13.353 9000 TIP 435580 8459 6038883 2024-02-23 01:14:50.276 2024-02-23 01:14:50.276 400 FEE 435708 19864 6038884 2024-02-23 01:14:50.276 2024-02-23 01:14:50.276 3600 TIP 435708 7376 6038902 2024-02-23 01:24:54.349 2024-02-23 01:24:54.349 1000 FEE 435744 20481 6038904 2024-02-23 01:25:10.283 2024-02-23 01:25:10.283 2300 FEE 435728 1236 6038905 2024-02-23 01:25:10.283 2024-02-23 01:25:10.283 20700 TIP 435728 14267 6038982 2024-02-23 01:37:19.75 2024-02-23 01:37:19.75 2700 FEE 435552 14152 6038983 2024-02-23 01:37:19.75 2024-02-23 01:37:19.75 24300 TIP 435552 15703 6038996 2024-02-23 01:37:34.705 2024-02-23 01:37:34.705 2700 FEE 435552 3456 6038997 2024-02-23 01:37:34.705 2024-02-23 01:37:34.705 24300 TIP 435552 20310 6039004 2024-02-23 01:38:46.707 2024-02-23 01:38:46.707 1000 FEE 435748 6360 6039031 2024-02-23 01:49:49.976 2024-02-23 01:49:49.976 2700 FEE 435531 20036 6039032 2024-02-23 01:49:49.976 2024-02-23 01:49:49.976 24300 TIP 435531 4378 6039055 2024-02-23 01:53:11.355 2024-02-23 01:53:11.355 24300 TIP 435198 20660 6039056 2024-02-23 01:53:11.727 2024-02-23 01:53:11.727 2700 FEE 435198 9109 6039057 2024-02-23 01:53:11.727 2024-02-23 01:53:11.727 24300 TIP 435198 629 6039074 2024-02-23 01:54:25.153 2024-02-23 01:54:25.153 10000 FEE 435610 5308 6039075 2024-02-23 01:54:25.153 2024-02-23 01:54:25.153 90000 TIP 435610 632 6039095 2024-02-23 01:55:26.269 2024-02-23 01:55:26.269 1000 FEE 435328 20816 6039096 2024-02-23 01:55:26.269 2024-02-23 01:55:26.269 9000 TIP 435328 3990 6039099 2024-02-23 01:55:26.7 2024-02-23 01:55:26.7 1000 FEE 435328 14152 6039100 2024-02-23 01:55:26.7 2024-02-23 01:55:26.7 9000 TIP 435328 794 6039115 2024-02-23 01:55:28.232 2024-02-23 01:55:28.232 1000 FEE 435328 12769 6039116 2024-02-23 01:55:28.232 2024-02-23 01:55:28.232 9000 TIP 435328 14376 6039127 2024-02-23 01:55:30.232 2024-02-23 01:55:30.232 1000 FEE 435328 998 6039128 2024-02-23 01:55:30.232 2024-02-23 01:55:30.232 9000 TIP 435328 8664 6039151 2024-02-23 01:55:45.709 2024-02-23 01:55:45.709 9000 FEE 435711 2111 6039152 2024-02-23 01:55:45.709 2024-02-23 01:55:45.709 81000 TIP 435711 15833 6039161 2024-02-23 01:56:24.755 2024-02-23 01:56:24.755 1000 FEE 435754 13767 6039163 2024-02-23 01:56:30.24 2024-02-23 01:56:30.24 0 FEE 435753 2620 6039164 2024-02-23 01:56:38.281 2024-02-23 01:56:38.281 0 FEE 435752 6202 6039185 2024-02-23 02:07:18.207 2024-02-23 02:07:18.207 100 FEE 435178 8400 6039186 2024-02-23 02:07:18.207 2024-02-23 02:07:18.207 900 TIP 435178 12265 6039191 2024-02-23 02:07:40.065 2024-02-23 02:07:40.065 1000 FEE 435759 19021 6039194 2024-02-23 02:07:49.396 2024-02-23 02:07:49.396 1000 FEE 435753 2681 6039195 2024-02-23 02:07:49.396 2024-02-23 02:07:49.396 9000 TIP 435753 17217 6039196 2024-02-23 02:07:58.56 2024-02-23 02:07:58.56 100 FEE 435676 4027 6039197 2024-02-23 02:07:58.56 2024-02-23 02:07:58.56 900 TIP 435676 21247 6039213 2024-02-23 02:08:57.731 2024-02-23 02:08:57.731 1000 FEE 435760 12951 6039223 2024-02-23 02:09:31.718 2024-02-23 02:09:31.718 2700 FEE 435365 16970 6039224 2024-02-23 02:09:31.718 2024-02-23 02:09:31.718 24300 TIP 435365 19996 6039242 2024-02-23 02:18:14.614 2024-02-23 02:18:14.614 1000 FEE 435763 20156 6039246 2024-02-23 02:20:02.299 2024-02-23 02:20:02.299 1000 STREAM 141924 9352 6039247 2024-02-23 02:21:02.255 2024-02-23 02:21:02.255 1000 STREAM 141924 19005 6039248 2024-02-23 02:22:02.313 2024-02-23 02:22:02.313 1000 STREAM 141924 8916 6039259 2024-02-23 02:22:29.866 2024-02-23 02:22:29.866 2100 FEE 435596 20560 6039260 2024-02-23 02:22:29.866 2024-02-23 02:22:29.866 18900 TIP 435596 20276 6039267 2024-02-23 02:22:33.475 2024-02-23 02:22:33.475 2100 FEE 435261 18072 6039268 2024-02-23 02:22:33.475 2024-02-23 02:22:33.475 18900 TIP 435261 3411 6032323 2024-02-22 14:38:22.57 2024-02-22 14:38:22.57 2700 FEE 434791 9332 6032324 2024-02-22 14:38:22.57 2024-02-22 14:38:22.57 24300 TIP 434791 10102 6032341 2024-02-22 14:38:25.191 2024-02-22 14:38:25.191 2700 FEE 434791 20657 6032342 2024-02-22 14:38:25.191 2024-02-22 14:38:25.191 24300 TIP 434791 18310 6032359 2024-02-22 14:42:16.965 2024-02-22 14:42:16.965 27000 FEE 435042 20990 6032360 2024-02-22 14:42:16.965 2024-02-22 14:42:16.965 243000 TIP 435042 18919 6032378 2024-02-22 14:44:39.502 2024-02-22 14:44:39.502 90000 FEE 434791 11298 6032379 2024-02-22 14:44:39.502 2024-02-22 14:44:39.502 810000 TIP 434791 17148 6032389 2024-02-22 14:45:37.5 2024-02-22 14:45:37.5 0 FEE 435049 14857 6032398 2024-02-22 14:46:15.917 2024-02-22 14:46:15.917 3000 FEE 434791 20562 6032399 2024-02-22 14:46:15.917 2024-02-22 14:46:15.917 27000 TIP 434791 12561 6032405 2024-02-22 14:46:34.285 2024-02-22 14:46:34.285 2100 FEE 434791 21393 6032406 2024-02-22 14:46:34.285 2024-02-22 14:46:34.285 18900 TIP 434791 21063 6032413 2024-02-22 14:46:47.023 2024-02-22 14:46:47.023 2100 FEE 434975 13177 6032414 2024-02-22 14:46:47.023 2024-02-22 14:46:47.023 18900 TIP 434975 750 6032415 2024-02-22 14:46:48.878 2024-02-22 14:46:48.878 1000 FEE 435052 2508 6032418 2024-02-22 14:46:53.905 2024-02-22 14:46:53.905 2100 FEE 435018 16212 6032419 2024-02-22 14:46:53.905 2024-02-22 14:46:53.905 18900 TIP 435018 16406 6032434 2024-02-22 14:49:19.202 2024-02-22 14:49:19.202 1000 FEE 435054 679 6032443 2024-02-22 14:50:03.323 2024-02-22 14:50:03.323 1000 FEE 435055 18608 6032447 2024-02-22 14:50:17.732 2024-02-22 14:50:17.732 50000 FEE 435056 641 6032458 2024-02-22 14:50:31.55 2024-02-22 14:50:31.55 100 FEE 435000 15161 6032459 2024-02-22 14:50:31.55 2024-02-22 14:50:31.55 900 TIP 435000 670 6032470 2024-02-22 14:51:06.57 2024-02-22 14:51:06.57 10000 FEE 435019 16356 6032471 2024-02-22 14:51:06.57 2024-02-22 14:51:06.57 90000 TIP 435019 8376 6032494 2024-02-22 14:52:12.944 2024-02-22 14:52:12.944 1000 FEE 435059 2056 6032497 2024-02-22 14:52:13.619 2024-02-22 14:52:13.619 1000 FEE 434991 19533 6032498 2024-02-22 14:52:13.619 2024-02-22 14:52:13.619 9000 TIP 434991 4313 6032508 2024-02-22 14:53:03.653 2024-02-22 14:53:03.653 100 FEE 435021 807 6032509 2024-02-22 14:53:03.653 2024-02-22 14:53:03.653 900 TIP 435021 18448 6032518 2024-02-22 14:54:29.771 2024-02-22 14:54:29.771 1000 FEE 435064 981 6032528 2024-02-22 14:55:00.064 2024-02-22 14:55:00.064 2100 FEE 435059 21540 6032529 2024-02-22 14:55:00.064 2024-02-22 14:55:00.064 18900 TIP 435059 21481 6032547 2024-02-22 14:56:38.399 2024-02-22 14:56:38.399 1100 FEE 435013 20817 6032548 2024-02-22 14:56:38.399 2024-02-22 14:56:38.399 9900 TIP 435013 16839 6032564 2024-02-22 14:57:26.424 2024-02-22 14:57:26.424 1000 FEE 435067 18842 6032593 2024-02-22 15:00:20.634 2024-02-22 15:00:20.634 1000 FEE 435075 19640 6032604 2024-02-22 15:00:39.716 2024-02-22 15:00:39.716 4000 FEE 435030 1389 6032605 2024-02-22 15:00:39.716 2024-02-22 15:00:39.716 36000 TIP 435030 20691 6032638 2024-02-22 15:02:56.496 2024-02-22 15:02:56.496 1000 FEE 435078 3304 6032646 2024-02-22 15:03:52.264 2024-02-22 15:03:52.264 1000 FEE 435081 811 6032696 2024-02-22 15:16:36.868 2024-02-22 15:16:36.868 300 FEE 435002 5160 6032697 2024-02-22 15:16:36.868 2024-02-22 15:16:36.868 2700 TIP 435002 1162 6032726 2024-02-22 15:20:53.042 2024-02-22 15:20:53.042 1000 FEE 435093 19815 6032737 2024-02-22 15:22:28.064 2024-02-22 15:22:28.064 2600 FEE 435095 16229 6032738 2024-02-22 15:22:28.064 2024-02-22 15:22:28.064 23400 TIP 435095 21356 6032743 2024-02-22 15:23:28.251 2024-02-22 15:23:28.251 1000 FEE 435097 1310 6032763 2024-02-22 15:28:04.614 2024-02-22 15:28:04.614 1000 FEE 435102 10342 6032765 2024-02-22 15:28:22.053 2024-02-22 15:28:22.053 1000 FEE 435104 2224 6032791 2024-02-22 15:32:14.757 2024-02-22 15:32:14.757 1000 FEE 435097 21238 6032792 2024-02-22 15:32:14.757 2024-02-22 15:32:14.757 9000 TIP 435097 21532 6032800 2024-02-22 15:34:57.091 2024-02-22 15:34:57.091 100 FEE 432920 9363 6032801 2024-02-22 15:34:57.091 2024-02-22 15:34:57.091 900 TIP 432920 16571 6032803 2024-02-22 15:35:06.002 2024-02-22 15:35:06.002 1000 FEE 435110 2322 6032804 2024-02-22 15:35:30.574 2024-02-22 15:35:30.574 0 FEE 435109 15119 6032805 2024-02-22 15:35:37.973 2024-02-22 15:35:37.973 0 FEE 435109 15103 6032810 2024-02-22 15:35:50.287 2024-02-22 15:35:50.287 1000 FEE 434721 9171 6032811 2024-02-22 15:35:50.287 2024-02-22 15:35:50.287 9000 TIP 434721 20802 6032854 2024-02-22 15:40:30.833 2024-02-22 15:40:30.833 500 FEE 435059 1114 6032855 2024-02-22 15:40:30.833 2024-02-22 15:40:30.833 4500 TIP 435059 1003 6032866 2024-02-22 15:41:39.889 2024-02-22 15:41:39.889 200 FEE 433649 951 6032867 2024-02-22 15:41:39.889 2024-02-22 15:41:39.889 1800 TIP 433649 19199 6032874 2024-02-22 15:41:41.476 2024-02-22 15:41:41.476 100 FEE 433649 19576 6032875 2024-02-22 15:41:41.476 2024-02-22 15:41:41.476 900 TIP 433649 746 6032894 2024-02-22 15:43:39.825 2024-02-22 15:43:39.825 1000 FEE 435119 20080 6032908 2024-02-22 15:44:15.367 2024-02-22 15:44:15.367 1000 FEE 434600 2042 6032909 2024-02-22 15:44:15.367 2024-02-22 15:44:15.367 9000 TIP 434600 14080 6032919 2024-02-22 15:46:54.964 2024-02-22 15:46:54.964 0 FEE 435120 20642 6032948 2024-02-22 15:52:30.699 2024-02-22 15:52:30.699 10000 FEE 435128 937 6032961 2024-02-22 15:53:33.08 2024-02-22 15:53:33.08 1000 FEE 435132 6164 6032964 2024-02-22 15:53:48.942 2024-02-22 15:53:48.942 1000 FEE 435030 6765 6032965 2024-02-22 15:53:48.942 2024-02-22 15:53:48.942 9000 TIP 435030 16059 6033045 2024-02-22 15:59:16.576 2024-02-22 15:59:16.576 1000 FEE 434665 882 6033046 2024-02-22 15:59:16.576 2024-02-22 15:59:16.576 9000 TIP 434665 1890 6033055 2024-02-22 15:59:18.751 2024-02-22 15:59:18.751 1000 FEE 434665 1823 6033056 2024-02-22 15:59:18.751 2024-02-22 15:59:18.751 9000 TIP 434665 21136 6033065 2024-02-22 15:59:41.413 2024-02-22 15:59:41.413 900 FEE 434958 17106 6033066 2024-02-22 15:59:41.413 2024-02-22 15:59:41.413 8100 TIP 434958 14267 6033107 2024-02-22 16:03:29.077 2024-02-22 16:03:29.077 100 FEE 434939 1141 6033108 2024-02-22 16:03:29.077 2024-02-22 16:03:29.077 900 TIP 434939 9367 6033114 2024-02-22 16:03:34.718 2024-02-22 16:03:34.718 1600 FEE 435125 21402 6033115 2024-02-22 16:03:34.718 2024-02-22 16:03:34.718 14400 TIP 435125 10728 6033126 2024-02-22 16:04:22.282 2024-02-22 16:04:22.282 100 FEE 434994 14045 6033127 2024-02-22 16:04:22.282 2024-02-22 16:04:22.282 900 TIP 434994 19030 6033173 2024-02-22 16:07:40.687 2024-02-22 16:07:40.687 1000 FEE 434559 3544 6033174 2024-02-22 16:07:40.687 2024-02-22 16:07:40.687 9000 TIP 434559 1352 6033182 2024-02-22 16:08:02.508 2024-02-22 16:08:02.508 1000 FEE 434353 5825 6033183 2024-02-22 16:08:02.508 2024-02-22 16:08:02.508 9000 TIP 434353 2711 6033189 2024-02-22 16:08:05.601 2024-02-22 16:08:05.601 1000 FEE 434353 5455 6033190 2024-02-22 16:08:05.601 2024-02-22 16:08:05.601 9000 TIP 434353 16532 6033193 2024-02-22 16:08:06.528 2024-02-22 16:08:06.528 2100 FEE 435109 6533 6033194 2024-02-22 16:08:06.528 2024-02-22 16:08:06.528 18900 TIP 435109 5637 6033196 2024-02-22 16:08:18.494 2024-02-22 16:08:18.494 1000 FEE 435152 5646 6033211 2024-02-22 16:10:10.714 2024-02-22 16:10:10.714 7100 FEE 434908 652 6033212 2024-02-22 16:10:10.714 2024-02-22 16:10:10.714 63900 TIP 434908 13100 6033238 2024-02-22 16:11:10.463 2024-02-22 16:11:10.463 400 FEE 435146 9347 6033239 2024-02-22 16:11:10.463 2024-02-22 16:11:10.463 3600 TIP 435146 18500 6033248 2024-02-22 16:11:57.54 2024-02-22 16:11:57.54 2100 FEE 435147 986 6033249 2024-02-22 16:11:57.54 2024-02-22 16:11:57.54 18900 TIP 435147 16406 6033256 2024-02-22 16:14:27.014 2024-02-22 16:14:27.014 4000 FEE 435151 12976 6033257 2024-02-22 16:14:27.014 2024-02-22 16:14:27.014 36000 TIP 435151 13527 6032431 2024-02-22 14:49:02.928 2024-02-22 14:49:02.928 1000 STREAM 141924 713 6032469 2024-02-22 14:51:02.971 2024-02-22 14:51:02.971 1000 STREAM 141924 10586 6032507 2024-02-22 14:53:02.997 2024-02-22 14:53:02.997 1000 STREAM 141924 21303 6032516 2024-02-22 14:54:02.982 2024-02-22 14:54:02.982 1000 STREAM 141924 2749 6032540 2024-02-22 14:56:03.147 2024-02-22 14:56:03.147 1000 STREAM 141924 11862 6032563 2024-02-22 14:57:03.109 2024-02-22 14:57:03.109 1000 STREAM 141924 10519 6032647 2024-02-22 15:04:03.158 2024-02-22 15:04:03.158 1000 STREAM 141924 21323 6032650 2024-02-22 15:05:03.17 2024-02-22 15:05:03.17 1000 STREAM 141924 6419 6032663 2024-02-22 15:07:03.178 2024-02-22 15:07:03.178 1000 STREAM 141924 18500 6032666 2024-02-22 15:08:03.183 2024-02-22 15:08:03.183 1000 STREAM 141924 15510 6032667 2024-02-22 15:09:03.184 2024-02-22 15:09:03.184 1000 STREAM 141924 3461 6032668 2024-02-22 15:10:03.192 2024-02-22 15:10:03.192 1000 STREAM 141924 19777 6032672 2024-02-22 15:12:03.238 2024-02-22 15:12:03.238 1000 STREAM 141924 9026 6032675 2024-02-22 15:13:03.254 2024-02-22 15:13:03.254 1000 STREAM 141924 16348 6032678 2024-02-22 15:14:03.264 2024-02-22 15:14:03.264 1000 STREAM 141924 15088 6032688 2024-02-22 15:16:03.299 2024-02-22 15:16:03.299 1000 STREAM 141924 21247 6032719 2024-02-22 15:18:03.317 2024-02-22 15:18:03.317 1000 STREAM 141924 20381 6032720 2024-02-22 15:19:03.326 2024-02-22 15:19:03.326 1000 STREAM 141924 4059 6037383 2024-02-22 22:15:48.079 2024-02-22 22:15:48.079 8300 FEE 435596 1439 6037384 2024-02-22 22:15:48.079 2024-02-22 22:15:48.079 74700 TIP 435596 1051 6037396 2024-02-22 22:16:09.281 2024-02-22 22:16:09.281 0 FEE 435595 19156 6037398 2024-02-22 22:16:14.144 2024-02-22 22:16:14.144 3000 FEE 435542 20892 6037399 2024-02-22 22:16:14.144 2024-02-22 22:16:14.144 27000 TIP 435542 19193 6037400 2024-02-22 22:16:15.061 2024-02-22 22:16:15.061 27000 FEE 435542 11873 6037401 2024-02-22 22:16:15.061 2024-02-22 22:16:15.061 243000 TIP 435542 18309 6037407 2024-02-22 22:16:57.002 2024-02-22 22:16:57.002 100 FEE 435594 18051 6037408 2024-02-22 22:16:57.002 2024-02-22 22:16:57.002 900 TIP 435594 20353 6037424 2024-02-22 22:17:35.359 2024-02-22 22:17:35.359 100 FEE 435578 897 6037425 2024-02-22 22:17:35.359 2024-02-22 22:17:35.359 900 TIP 435578 16042 6037430 2024-02-22 22:17:36.445 2024-02-22 22:17:36.445 100 FEE 435578 1008 6037431 2024-02-22 22:17:36.445 2024-02-22 22:17:36.445 900 TIP 435578 13854 6037434 2024-02-22 22:17:37.074 2024-02-22 22:17:37.074 3000 FEE 435548 8423 6037435 2024-02-22 22:17:37.074 2024-02-22 22:17:37.074 27000 TIP 435548 11967 6037443 2024-02-22 22:17:58.568 2024-02-22 22:17:58.568 1000 FEE 435600 18941 6037445 2024-02-22 22:18:13.316 2024-02-22 22:18:13.316 1000 FEE 435601 1983 6037449 2024-02-22 22:18:47.669 2024-02-22 22:18:47.669 1000 FEE 435603 4313 6037460 2024-02-22 22:21:52.476 2024-02-22 22:21:52.476 100 FEE 435582 2328 6037461 2024-02-22 22:21:52.476 2024-02-22 22:21:52.476 900 TIP 435582 9551 6037464 2024-02-22 22:21:52.959 2024-02-22 22:21:52.959 100 FEE 435582 664 6037465 2024-02-22 22:21:52.959 2024-02-22 22:21:52.959 900 TIP 435582 661 6037466 2024-02-22 22:21:54.541 2024-02-22 22:21:54.541 100 FEE 435582 17523 6037467 2024-02-22 22:21:54.541 2024-02-22 22:21:54.541 900 TIP 435582 9348 6037472 2024-02-22 22:21:55.412 2024-02-22 22:21:55.412 100 FEE 435582 5758 6037473 2024-02-22 22:21:55.412 2024-02-22 22:21:55.412 900 TIP 435582 10469 6037496 2024-02-22 22:26:15.449 2024-02-22 22:26:15.449 1000 FEE 435609 18678 6037521 2024-02-22 22:29:18.965 2024-02-22 22:29:18.965 1000 FEE 435242 16717 6037522 2024-02-22 22:29:18.965 2024-02-22 22:29:18.965 9000 TIP 435242 8648 6037527 2024-02-22 22:32:38.837 2024-02-22 22:32:38.837 5000 FEE 435457 17696 6037528 2024-02-22 22:32:38.837 2024-02-22 22:32:38.837 45000 TIP 435457 18180 6037544 2024-02-22 22:34:43.986 2024-02-22 22:34:43.986 9000 FEE 435608 9246 6037545 2024-02-22 22:34:43.986 2024-02-22 22:34:43.986 81000 TIP 435608 12483 6037547 2024-02-22 22:35:25.799 2024-02-22 22:35:25.799 1000 FEE 435615 993 6037558 2024-02-22 22:37:50.214 2024-02-22 22:37:50.214 2100 FEE 435610 826 6037559 2024-02-22 22:37:50.214 2024-02-22 22:37:50.214 18900 TIP 435610 19992 6037593 2024-02-22 22:43:30.012 2024-02-22 22:43:30.012 2100 FEE 435328 17392 6037594 2024-02-22 22:43:30.012 2024-02-22 22:43:30.012 18900 TIP 435328 18124 6037609 2024-02-22 22:43:44.024 2024-02-22 22:43:44.024 9000 FEE 435619 19907 6037610 2024-02-22 22:43:44.024 2024-02-22 22:43:44.024 81000 TIP 435619 10934 6037617 2024-02-22 22:43:45.75 2024-02-22 22:43:45.75 2100 FEE 435458 20198 6037618 2024-02-22 22:43:45.75 2024-02-22 22:43:45.75 18900 TIP 435458 20120 6037668 2024-02-22 22:45:38.004 2024-02-22 22:45:38.004 2600 FEE 435328 15146 6037669 2024-02-22 22:45:38.004 2024-02-22 22:45:38.004 23400 TIP 435328 14152 6037676 2024-02-22 22:45:49.484 2024-02-22 22:45:49.484 2100 FEE 435457 8289 6037677 2024-02-22 22:45:49.484 2024-02-22 22:45:49.484 18900 TIP 435457 12261 6037678 2024-02-22 22:45:50.348 2024-02-22 22:45:50.348 2100 FEE 435457 19841 6037679 2024-02-22 22:45:50.348 2024-02-22 22:45:50.348 18900 TIP 435457 1044 6037688 2024-02-22 22:45:59.77 2024-02-22 22:45:59.77 2100 FEE 435046 20108 6037689 2024-02-22 22:45:59.77 2024-02-22 22:45:59.77 18900 TIP 435046 1806 6037696 2024-02-22 22:46:50.71 2024-02-22 22:46:50.71 2500 FEE 435489 21201 6037697 2024-02-22 22:46:50.71 2024-02-22 22:46:50.71 22500 TIP 435489 5538 6037746 2024-02-22 22:47:41.837 2024-02-22 22:47:41.837 2100 FEE 435030 1825 6037747 2024-02-22 22:47:41.837 2024-02-22 22:47:41.837 18900 TIP 435030 1817 6037769 2024-02-22 22:48:00.222 2024-02-22 22:48:00.222 2100 FEE 435544 17639 6037770 2024-02-22 22:48:00.222 2024-02-22 22:48:00.222 18900 TIP 435544 20023 6037808 2024-02-22 22:48:06.668 2024-02-22 22:48:06.668 2100 FEE 435544 661 6037809 2024-02-22 22:48:06.668 2024-02-22 22:48:06.668 18900 TIP 435544 814 6037812 2024-02-22 22:48:07.108 2024-02-22 22:48:07.108 2100 FEE 435544 19581 6037813 2024-02-22 22:48:07.108 2024-02-22 22:48:07.108 18900 TIP 435544 16406 6037860 2024-02-22 22:50:37.16 2024-02-22 22:50:37.16 90000 FEE 435488 18528 6037861 2024-02-22 22:50:37.16 2024-02-22 22:50:37.16 810000 TIP 435488 4304 6037868 2024-02-22 22:50:49.682 2024-02-22 22:50:49.682 100 FEE 435628 11750 6037869 2024-02-22 22:50:49.682 2024-02-22 22:50:49.682 900 TIP 435628 1060 6037880 2024-02-22 22:53:06.693 2024-02-22 22:53:06.693 2500 FEE 435615 2576 6037881 2024-02-22 22:53:06.693 2024-02-22 22:53:06.693 22500 TIP 435615 21180 6037883 2024-02-22 22:54:41.048 2024-02-22 22:54:41.048 1000 FEE 435631 14472 6037893 2024-02-22 22:57:49.198 2024-02-22 22:57:49.198 7100 FEE 435463 7847 6037894 2024-02-22 22:57:49.198 2024-02-22 22:57:49.198 63900 TIP 435463 8289 6037897 2024-02-22 22:58:24.259 2024-02-22 22:58:24.259 1000 FEE 435637 16194 6037910 2024-02-22 23:00:43.766 2024-02-22 23:00:43.766 2100 FEE 434642 700 6037911 2024-02-22 23:00:43.766 2024-02-22 23:00:43.766 18900 TIP 434642 2952 6037919 2024-02-22 23:01:06.288 2024-02-22 23:01:06.288 2100 FEE 434485 9985 6037920 2024-02-22 23:01:06.288 2024-02-22 23:01:06.288 18900 TIP 434485 9246 6037927 2024-02-22 23:04:50.133 2024-02-22 23:04:50.133 2100 FEE 435457 15226 6037928 2024-02-22 23:04:50.133 2024-02-22 23:04:50.133 18900 TIP 435457 18583 6032487 2024-02-22 14:52:02.976 2024-02-22 14:52:02.976 1000 STREAM 141924 8385 6032530 2024-02-22 14:55:03.086 2024-02-22 14:55:03.086 1000 STREAM 141924 8506 6032575 2024-02-22 14:58:03.1 2024-02-22 14:58:03.1 1000 STREAM 141924 15488 6032585 2024-02-22 14:59:03.124 2024-02-22 14:59:03.124 1000 STREAM 141924 14857 6032590 2024-02-22 15:00:03.159 2024-02-22 15:00:03.159 1000 STREAM 141924 16347 6032636 2024-02-22 15:02:03.154 2024-02-22 15:02:03.154 1000 STREAM 141924 2832 6032640 2024-02-22 15:03:03.174 2024-02-22 15:03:03.174 1000 STREAM 141924 21014 6032653 2024-02-22 15:06:03.172 2024-02-22 15:06:03.172 1000 STREAM 141924 16809 6032670 2024-02-22 15:11:03.207 2024-02-22 15:11:03.207 1000 STREAM 141924 11314 6032684 2024-02-22 15:15:03.293 2024-02-22 15:15:03.293 1000 STREAM 141924 16387 6032709 2024-02-22 15:17:03.312 2024-02-22 15:17:03.312 1000 STREAM 141924 937 6032725 2024-02-22 15:20:03.332 2024-02-22 15:20:03.332 1000 STREAM 141924 15690 6037444 2024-02-22 22:18:02.268 2024-02-22 22:18:02.268 1000 STREAM 141924 19637 6037479 2024-02-22 22:22:02.34 2024-02-22 22:22:02.34 1000 STREAM 141924 18678 6037495 2024-02-22 22:26:02.373 2024-02-22 22:26:02.373 1000 STREAM 141924 19527 6037523 2024-02-22 22:30:02.479 2024-02-22 22:30:02.479 1000 STREAM 141924 20245 6037702 2024-02-22 22:47:02.839 2024-02-22 22:47:02.839 1000 STREAM 141924 1652 6038872 2024-02-23 01:13:41.053 2024-02-23 01:13:41.053 9000 TIP 435505 7992 6038881 2024-02-23 01:14:06.783 2024-02-23 01:14:06.783 1000 FEE 435729 21624 6038882 2024-02-23 01:14:06.783 2024-02-23 01:14:06.783 9000 TIP 435729 8173 6038891 2024-02-23 01:18:53.496 2024-02-23 01:18:53.496 0 FEE 435741 4989 6038930 2024-02-23 01:25:34.555 2024-02-23 01:25:34.555 2300 FEE 435596 7766 6038931 2024-02-23 01:25:34.555 2024-02-23 01:25:34.555 20700 TIP 435596 16176 6038945 2024-02-23 01:26:34.203 2024-02-23 01:26:34.203 22700 FEE 432920 1273 6038946 2024-02-23 01:26:34.203 2024-02-23 01:26:34.203 204300 TIP 432920 20811 6038950 2024-02-23 01:27:14.305 2024-02-23 01:27:14.305 2500 FEE 435665 20108 6038951 2024-02-23 01:27:14.305 2024-02-23 01:27:14.305 22500 TIP 435665 19105 6038966 2024-02-23 01:31:12.968 2024-02-23 01:31:12.968 10000 FEE 435746 20183 6038968 2024-02-23 01:31:58.454 2024-02-23 01:31:58.454 1000 FEE 435657 19332 6038969 2024-02-23 01:31:58.454 2024-02-23 01:31:58.454 9000 TIP 435657 14045 6038980 2024-02-23 01:37:19.537 2024-02-23 01:37:19.537 2700 FEE 435552 11458 6038981 2024-02-23 01:37:19.537 2024-02-23 01:37:19.537 24300 TIP 435552 18705 6038984 2024-02-23 01:37:19.912 2024-02-23 01:37:19.912 2700 FEE 435552 16633 6038985 2024-02-23 01:37:19.912 2024-02-23 01:37:19.912 24300 TIP 435552 21262 6038990 2024-02-23 01:37:34.186 2024-02-23 01:37:34.186 2700 FEE 435552 697 6038991 2024-02-23 01:37:34.186 2024-02-23 01:37:34.186 24300 TIP 435552 2213 6039002 2024-02-23 01:37:48.41 2024-02-23 01:37:48.41 1000 FEE 435747 12368 6039049 2024-02-23 01:52:57.689 2024-02-23 01:52:57.689 2700 FEE 435181 13399 6039050 2024-02-23 01:52:57.689 2024-02-23 01:52:57.689 24300 TIP 435181 2775 6039061 2024-02-23 01:54:10.663 2024-02-23 01:54:10.663 1000 FEE 435751 4984 6039072 2024-02-23 01:54:21.244 2024-02-23 01:54:21.244 2700 FEE 435086 14169 6039073 2024-02-23 01:54:21.244 2024-02-23 01:54:21.244 24300 TIP 435086 15662 6039081 2024-02-23 01:55:09.853 2024-02-23 01:55:09.853 100 FEE 435718 700 6039082 2024-02-23 01:55:09.853 2024-02-23 01:55:09.853 900 TIP 435718 6229 6039085 2024-02-23 01:55:14.434 2024-02-23 01:55:14.434 100 FEE 435741 733 6039086 2024-02-23 01:55:14.434 2024-02-23 01:55:14.434 900 TIP 435741 9345 6039097 2024-02-23 01:55:26.483 2024-02-23 01:55:26.483 1000 FEE 435328 19281 6039098 2024-02-23 01:55:26.483 2024-02-23 01:55:26.483 9000 TIP 435328 14650 6039113 2024-02-23 01:55:28.09 2024-02-23 01:55:28.09 1000 FEE 435328 20424 6039114 2024-02-23 01:55:28.09 2024-02-23 01:55:28.09 9000 TIP 435328 19836 6039117 2024-02-23 01:55:28.354 2024-02-23 01:55:28.354 1000 FEE 435328 5597 6039118 2024-02-23 01:55:28.354 2024-02-23 01:55:28.354 9000 TIP 435328 19905 6039121 2024-02-23 01:55:28.801 2024-02-23 01:55:28.801 1000 FEE 435328 10719 6039122 2024-02-23 01:55:28.801 2024-02-23 01:55:28.801 9000 TIP 435328 1145 6039125 2024-02-23 01:55:29.499 2024-02-23 01:55:29.499 3000 FEE 435328 18543 6039126 2024-02-23 01:55:29.499 2024-02-23 01:55:29.499 27000 TIP 435328 19821 6039149 2024-02-23 01:55:40.77 2024-02-23 01:55:40.77 900 FEE 435711 20811 6039150 2024-02-23 01:55:40.77 2024-02-23 01:55:40.77 8100 TIP 435711 691 6039157 2024-02-23 01:55:48.253 2024-02-23 01:55:48.253 9000 FEE 435704 9150 6039158 2024-02-23 01:55:48.253 2024-02-23 01:55:48.253 81000 TIP 435704 9331 6039160 2024-02-23 01:56:05.595 2024-02-23 01:56:05.595 1000 FEE 435753 12808 6039165 2024-02-23 01:56:49.732 2024-02-23 01:56:49.732 0 FEE 435753 20495 6039182 2024-02-23 02:06:46.074 2024-02-23 02:06:46.074 1000 FEE 435757 18262 6039187 2024-02-23 02:07:18.427 2024-02-23 02:07:18.427 900 FEE 435178 18291 6039188 2024-02-23 02:07:18.427 2024-02-23 02:07:18.427 8100 TIP 435178 12368 6039189 2024-02-23 02:07:28.606 2024-02-23 02:07:28.606 2100 FEE 435657 18040 6039190 2024-02-23 02:07:28.606 2024-02-23 02:07:28.606 18900 TIP 435657 6383 6039198 2024-02-23 02:07:58.781 2024-02-23 02:07:58.781 900 FEE 435676 17041 6039199 2024-02-23 02:07:58.781 2024-02-23 02:07:58.781 8100 TIP 435676 4167 6039203 2024-02-23 02:08:15.598 2024-02-23 02:08:15.598 100 FEE 435086 13365 6039204 2024-02-23 02:08:15.598 2024-02-23 02:08:15.598 900 TIP 435086 19966 6039205 2024-02-23 02:08:17.466 2024-02-23 02:08:17.466 900 FEE 435086 1584 6039206 2024-02-23 02:08:17.466 2024-02-23 02:08:17.466 8100 TIP 435086 993 6039207 2024-02-23 02:08:22.946 2024-02-23 02:08:22.946 1000 FEE 435196 8954 6039208 2024-02-23 02:08:22.946 2024-02-23 02:08:22.946 9000 TIP 435196 7587 6039209 2024-02-23 02:08:52.731 2024-02-23 02:08:52.731 100 FEE 435755 14015 6039210 2024-02-23 02:08:52.731 2024-02-23 02:08:52.731 900 TIP 435755 15367 6039211 2024-02-23 02:08:52.839 2024-02-23 02:08:52.839 900 FEE 435755 621 6039212 2024-02-23 02:08:52.839 2024-02-23 02:08:52.839 8100 TIP 435755 10690 6039217 2024-02-23 02:09:31.188 2024-02-23 02:09:31.188 2700 FEE 435365 15052 6039218 2024-02-23 02:09:31.188 2024-02-23 02:09:31.188 24300 TIP 435365 5761 6039243 2024-02-23 02:18:19.758 2024-02-23 02:18:19.758 21800 FEE 435189 19815 6039244 2024-02-23 02:18:19.758 2024-02-23 02:18:19.758 196200 TIP 435189 20980 6039263 2024-02-23 02:22:31.633 2024-02-23 02:22:31.633 2100 FEE 435497 797 6039264 2024-02-23 02:22:31.633 2024-02-23 02:22:31.633 18900 TIP 435497 1245 6039283 2024-02-23 02:22:39.652 2024-02-23 02:22:39.652 2100 FEE 435577 20254 6039284 2024-02-23 02:22:39.652 2024-02-23 02:22:39.652 18900 TIP 435577 634 6039285 2024-02-23 02:22:40.095 2024-02-23 02:22:40.095 2100 FEE 435030 13927 6039286 2024-02-23 02:22:40.095 2024-02-23 02:22:40.095 18900 TIP 435030 14959 6039294 2024-02-23 02:27:25.115 2024-02-23 02:27:25.115 2100 FEE 435690 18714 6039295 2024-02-23 02:27:25.115 2024-02-23 02:27:25.115 18900 TIP 435690 1142 6039298 2024-02-23 02:29:02.844 2024-02-23 02:29:02.844 1000 STREAM 141924 6382 6039301 2024-02-23 02:29:11.567 2024-02-23 02:29:11.567 1000 FEE 435639 18679 6039302 2024-02-23 02:29:11.567 2024-02-23 02:29:11.567 9000 TIP 435639 21603 6039305 2024-02-23 02:31:02.848 2024-02-23 02:31:02.848 1000 STREAM 141924 18658 6039308 2024-02-23 02:31:27.794 2024-02-23 02:31:27.794 27000 FEE 435759 9916 6039309 2024-02-23 02:31:27.794 2024-02-23 02:31:27.794 243000 TIP 435759 10291 6039314 2024-02-23 02:31:52.002 2024-02-23 02:31:52.002 2300 FEE 435721 21291 6039315 2024-02-23 02:31:52.002 2024-02-23 02:31:52.002 20700 TIP 435721 16830 6039320 2024-02-23 02:35:47.745 2024-02-23 02:35:47.745 1000 FEE 435767 2444 6039325 2024-02-23 02:36:55.747 2024-02-23 02:36:55.747 10000 FEE 435769 20858 6039327 2024-02-23 02:37:11.554 2024-02-23 02:37:11.554 3000 FEE 435763 1244 6039328 2024-02-23 02:37:11.554 2024-02-23 02:37:11.554 27000 TIP 435763 21090 6039330 2024-02-23 02:38:53.917 2024-02-23 02:38:53.917 1000 FEE 435770 3377 6039334 2024-02-23 02:39:31.304 2024-02-23 02:39:31.304 3300 FEE 435761 18557 6039335 2024-02-23 02:39:31.304 2024-02-23 02:39:31.304 29700 TIP 435761 4474 6032614 2024-02-22 15:01:03.856 2024-02-22 15:01:03.856 1000 STREAM 141924 1802 6032736 2024-02-22 15:22:03.966 2024-02-22 15:22:03.966 1000 STREAM 141924 19121 6032755 2024-02-22 15:26:04.006 2024-02-22 15:26:04.006 1000 STREAM 141924 21323 6032786 2024-02-22 15:32:04.028 2024-02-22 15:32:04.028 1000 STREAM 141924 16816 6032888 2024-02-22 15:43:04.109 2024-02-22 15:43:04.109 1000 STREAM 141924 2757 6032922 2024-02-22 15:48:04.15 2024-02-22 15:48:04.15 1000 STREAM 141924 10291 6032935 2024-02-22 15:50:04.144 2024-02-22 15:50:04.144 1000 STREAM 141924 2402 6037451 2024-02-22 22:20:02.394 2024-02-22 22:20:02.394 1000 STREAM 141924 18219 6037492 2024-02-22 22:24:02.36 2024-02-22 22:24:02.36 1000 STREAM 141924 20066 6037504 2024-02-22 22:28:02.392 2024-02-22 22:28:02.392 1000 STREAM 141924 17927 6038890 2024-02-23 01:18:24.903 2024-02-23 01:18:24.903 1000 FEE 435742 20301 6038908 2024-02-23 01:25:10.56 2024-02-23 01:25:10.56 2300 FEE 435728 657 6038909 2024-02-23 01:25:10.56 2024-02-23 01:25:10.56 20700 TIP 435728 4391 6038922 2024-02-23 01:25:26.768 2024-02-23 01:25:26.768 2300 FEE 435610 20730 6038923 2024-02-23 01:25:26.768 2024-02-23 01:25:26.768 20700 TIP 435610 5865 6038957 2024-02-23 01:28:04.979 2024-02-23 01:28:04.979 2100 FEE 435610 20981 6038958 2024-02-23 01:28:04.979 2024-02-23 01:28:04.979 18900 TIP 435610 20180 6038971 2024-02-23 01:32:16.163 2024-02-23 01:32:16.163 3300 FEE 434745 16809 6038972 2024-02-23 01:32:16.163 2024-02-23 01:32:16.163 29700 TIP 434745 7418 6038986 2024-02-23 01:37:20.22 2024-02-23 01:37:20.22 2700 FEE 435552 21357 6038987 2024-02-23 01:37:20.22 2024-02-23 01:37:20.22 24300 TIP 435552 21463 6038992 2024-02-23 01:37:34.367 2024-02-23 01:37:34.367 2700 FEE 435552 896 6038993 2024-02-23 01:37:34.367 2024-02-23 01:37:34.367 24300 TIP 435552 12965 6038998 2024-02-23 01:37:34.873 2024-02-23 01:37:34.873 2700 FEE 435552 3439 6038999 2024-02-23 01:37:34.873 2024-02-23 01:37:34.873 24300 TIP 435552 1030 6039010 2024-02-23 01:41:15.656 2024-02-23 01:41:15.656 100 FEE 435690 18658 6039011 2024-02-23 01:41:15.656 2024-02-23 01:41:15.656 900 TIP 435690 2204 6039017 2024-02-23 01:45:00.157 2024-02-23 01:45:00.157 1000 FEE 435749 18528 6039070 2024-02-23 01:54:20.744 2024-02-23 01:54:20.744 2700 FEE 435086 20439 6039071 2024-02-23 01:54:20.744 2024-02-23 01:54:20.744 24300 TIP 435086 6202 6039076 2024-02-23 01:54:30.64 2024-02-23 01:54:30.64 1000 FEE 435752 11430 6039083 2024-02-23 01:55:10.039 2024-02-23 01:55:10.039 900 FEE 435718 4819 6039084 2024-02-23 01:55:10.039 2024-02-23 01:55:10.039 8100 TIP 435718 4521 6039093 2024-02-23 01:55:26.066 2024-02-23 01:55:26.066 1000 FEE 435328 711 6039094 2024-02-23 01:55:26.066 2024-02-23 01:55:26.066 9000 TIP 435328 9529 6039103 2024-02-23 01:55:27.051 2024-02-23 01:55:27.051 1000 FEE 435328 20267 6039104 2024-02-23 01:55:27.051 2024-02-23 01:55:27.051 9000 TIP 435328 6526 6039107 2024-02-23 01:55:27.516 2024-02-23 01:55:27.516 1000 FEE 435328 13878 6039108 2024-02-23 01:55:27.516 2024-02-23 01:55:27.516 9000 TIP 435328 20015 6039135 2024-02-23 01:55:31.035 2024-02-23 01:55:31.035 1000 FEE 435328 6602 6039136 2024-02-23 01:55:31.035 2024-02-23 01:55:31.035 9000 TIP 435328 910 6039137 2024-02-23 01:55:31.219 2024-02-23 01:55:31.219 1000 FEE 435328 1658 6039138 2024-02-23 01:55:31.219 2024-02-23 01:55:31.219 9000 TIP 435328 19132 6039166 2024-02-23 01:57:02.263 2024-02-23 01:57:02.263 1000 FEE 435755 11873 6039173 2024-02-23 02:00:51.089 2024-02-23 02:00:51.089 1000 FEE 435756 19909 6039215 2024-02-23 02:09:31.035 2024-02-23 02:09:31.035 2700 FEE 435365 6335 6039216 2024-02-23 02:09:31.035 2024-02-23 02:09:31.035 24300 TIP 435365 19378 6039221 2024-02-23 02:09:31.524 2024-02-23 02:09:31.524 2700 FEE 435365 19117 6039222 2024-02-23 02:09:31.524 2024-02-23 02:09:31.524 24300 TIP 435365 10862 6039226 2024-02-23 02:10:32.336 2024-02-23 02:10:32.336 1000 FEE 435761 1307 6039227 2024-02-23 02:10:45.639 2024-02-23 02:10:45.639 1000 FEE 435762 21469 6039229 2024-02-23 02:11:13.067 2024-02-23 02:11:13.067 5000 FEE 435346 18581 6039230 2024-02-23 02:11:13.067 2024-02-23 02:11:13.067 45000 TIP 435346 21466 6039236 2024-02-23 02:13:03.732 2024-02-23 02:13:03.732 1000 STREAM 141924 18040 6039269 2024-02-23 02:22:33.813 2024-02-23 02:22:33.813 2100 FEE 435046 2614 6039270 2024-02-23 02:22:33.813 2024-02-23 02:22:33.813 18900 TIP 435046 5057 6039271 2024-02-23 02:22:34.456 2024-02-23 02:22:34.456 2100 FEE 435690 993 6039272 2024-02-23 02:22:34.456 2024-02-23 02:22:34.456 18900 TIP 435690 4259 6039287 2024-02-23 02:23:02.287 2024-02-23 02:23:02.287 1000 STREAM 141924 1505 6039296 2024-02-23 02:27:39.266 2024-02-23 02:27:39.266 1000 FEE 435765 16350 6039299 2024-02-23 02:29:10.802 2024-02-23 02:29:10.802 1000 FEE 435488 4126 6039300 2024-02-23 02:29:10.802 2024-02-23 02:29:10.802 9000 TIP 435488 696 6039304 2024-02-23 02:30:15.254 2024-02-23 02:30:15.254 1000 FEE 435766 21338 6039310 2024-02-23 02:31:50.558 2024-02-23 02:31:50.558 2300 FEE 435721 3461 6039311 2024-02-23 02:31:50.558 2024-02-23 02:31:50.558 20700 TIP 435721 16149 6039312 2024-02-23 02:31:51.655 2024-02-23 02:31:51.655 2300 FEE 435721 20080 6039313 2024-02-23 02:31:51.655 2024-02-23 02:31:51.655 20700 TIP 435721 10638 6039324 2024-02-23 02:36:18.734 2024-02-23 02:36:18.734 1000 FEE 435768 20525 6039332 2024-02-23 02:39:27.615 2024-02-23 02:39:27.615 300 FEE 435719 21218 6039333 2024-02-23 02:39:27.615 2024-02-23 02:39:27.615 2700 TIP 435719 1745 6039336 2024-02-23 02:39:53.631 2024-02-23 02:39:53.631 3000 FEE 435527 14295 6039337 2024-02-23 02:39:53.631 2024-02-23 02:39:53.631 27000 TIP 435527 11158 6039339 2024-02-23 02:40:23.822 2024-02-23 02:40:23.822 1000 FEE 435771 18932 6039340 2024-02-23 02:40:28.172 2024-02-23 02:40:28.172 1000 FEE 435772 1658 6039343 2024-02-23 02:40:55.427 2024-02-23 02:40:55.427 1000 FEE 435619 15484 6039344 2024-02-23 02:40:55.427 2024-02-23 02:40:55.427 9000 TIP 435619 14857 6039345 2024-02-23 02:40:55.699 2024-02-23 02:40:55.699 1000 FEE 435619 5775 6039346 2024-02-23 02:40:55.699 2024-02-23 02:40:55.699 9000 TIP 435619 7418 6039347 2024-02-23 02:40:55.795 2024-02-23 02:40:55.795 1000 FEE 435619 1658 6039348 2024-02-23 02:40:55.795 2024-02-23 02:40:55.795 9000 TIP 435619 16193 6039351 2024-02-23 02:40:56.159 2024-02-23 02:40:56.159 1000 FEE 435619 1030 6039352 2024-02-23 02:40:56.159 2024-02-23 02:40:56.159 9000 TIP 435619 18330 6039357 2024-02-23 02:42:10.623 2024-02-23 02:42:10.623 1000 FEE 435773 2609 6039362 2024-02-23 02:42:13.556 2024-02-23 02:42:13.556 3300 FEE 435679 20326 6039363 2024-02-23 02:42:13.556 2024-02-23 02:42:13.556 29700 TIP 435679 21373 6039368 2024-02-23 02:45:03.07 2024-02-23 02:45:03.07 1000 STREAM 141924 9529 6039374 2024-02-23 02:51:03.624 2024-02-23 02:51:03.624 1000 STREAM 141924 714 6039379 2024-02-23 02:53:15.53 2024-02-23 02:53:15.53 1000 FEE 435774 21416 6039385 2024-02-23 02:55:31.319 2024-02-23 02:55:31.319 10000 FEE 435697 16505 6039386 2024-02-23 02:55:31.319 2024-02-23 02:55:31.319 90000 TIP 435697 2773 6039388 2024-02-23 02:56:58.491 2024-02-23 02:56:58.491 3300 FEE 418021 19394 6039389 2024-02-23 02:56:58.491 2024-02-23 02:56:58.491 29700 TIP 418021 15045 6039393 2024-02-23 03:00:03.847 2024-02-23 03:00:03.847 1000 STREAM 141924 20901 6039394 2024-02-23 03:01:03.78 2024-02-23 03:01:03.78 1000 STREAM 141924 19512 6039395 2024-02-23 03:01:23.67 2024-02-23 03:01:23.67 1000 FEE 435410 13921 6039396 2024-02-23 03:01:23.67 2024-02-23 03:01:23.67 9000 TIP 435410 18051 6039399 2024-02-23 03:02:23.081 2024-02-23 03:02:23.081 10000 FEE 435746 12976 6039400 2024-02-23 03:02:23.081 2024-02-23 03:02:23.081 90000 TIP 435746 717 6039401 2024-02-23 03:02:26.728 2024-02-23 03:02:26.728 1000 FEE 435776 632 6039402 2024-02-23 03:03:04.942 2024-02-23 03:03:04.942 1000 STREAM 141924 17710 6039403 2024-02-23 03:03:45.823 2024-02-23 03:03:45.823 1000 FEE 435777 16406 6032727 2024-02-22 15:21:03.979 2024-02-22 15:21:03.979 1000 STREAM 141924 1823 6032742 2024-02-22 15:23:03.958 2024-02-22 15:23:03.958 1000 STREAM 141924 6499 6032744 2024-02-22 15:24:03.986 2024-02-22 15:24:03.986 1000 STREAM 141924 5978 6032752 2024-02-22 15:25:04.001 2024-02-22 15:25:04.001 1000 STREAM 141924 1632 6032760 2024-02-22 15:27:04 2024-02-22 15:27:04 1000 STREAM 141924 2780 6032770 2024-02-22 15:29:04.015 2024-02-22 15:29:04.015 1000 STREAM 141924 19535 6032783 2024-02-22 15:31:04.036 2024-02-22 15:31:04.036 1000 STREAM 141924 17227 6032799 2024-02-22 15:34:04.019 2024-02-22 15:34:04.019 1000 STREAM 141924 20099 6032816 2024-02-22 15:36:04.052 2024-02-22 15:36:04.052 1000 STREAM 141924 11829 6032829 2024-02-22 15:38:04.06 2024-02-22 15:38:04.06 1000 STREAM 141924 18743 6032853 2024-02-22 15:40:04.117 2024-02-22 15:40:04.117 1000 STREAM 141924 2620 6032917 2024-02-22 15:46:04.104 2024-02-22 15:46:04.104 1000 STREAM 141924 10519 6032947 2024-02-22 15:52:04.154 2024-02-22 15:52:04.154 1000 STREAM 141924 19044 6032966 2024-02-22 15:54:04.174 2024-02-22 15:54:04.174 1000 STREAM 141924 7185 6032992 2024-02-22 15:56:04.185 2024-02-22 15:56:04.185 1000 STREAM 141924 8245 6033307 2024-02-22 16:20:04.399 2024-02-22 16:20:04.399 1000 STREAM 141924 18673 6033380 2024-02-22 16:26:04.417 2024-02-22 16:26:04.417 1000 STREAM 141924 20754 6033384 2024-02-22 16:28:04.431 2024-02-22 16:28:04.431 1000 STREAM 141924 6573 6033558 2024-02-22 16:37:04.444 2024-02-22 16:37:04.444 1000 STREAM 141924 18659 6033582 2024-02-22 16:39:04.45 2024-02-22 16:39:04.45 1000 STREAM 141924 10821 6033595 2024-02-22 16:43:04.479 2024-02-22 16:43:04.479 1000 STREAM 141924 15732 6033675 2024-02-22 16:51:04.538 2024-02-22 16:51:04.538 1000 STREAM 141924 20434 6033791 2024-02-22 17:00:04.58 2024-02-22 17:00:04.58 1000 STREAM 141924 19576 6034536 2024-02-22 17:36:02.726 2024-02-22 17:36:02.726 1000 STREAM 141924 1209 6034551 2024-02-22 17:38:02.717 2024-02-22 17:38:02.717 1000 STREAM 141924 17103 6034557 2024-02-22 17:39:02.718 2024-02-22 17:39:02.718 1000 STREAM 141924 2402 6034603 2024-02-22 17:41:02.746 2024-02-22 17:41:02.746 1000 STREAM 141924 21194 6034639 2024-02-22 17:44:02.753 2024-02-22 17:44:02.753 1000 STREAM 141924 16653 6034648 2024-02-22 17:46:02.728 2024-02-22 17:46:02.728 1000 STREAM 141924 18892 6037524 2024-02-22 22:31:04.061 2024-02-22 22:31:04.061 1000 STREAM 141924 20964 6037530 2024-02-22 22:33:04.069 2024-02-22 22:33:04.069 1000 STREAM 141924 14795 6037582 2024-02-22 22:43:04.463 2024-02-22 22:43:04.463 1000 STREAM 141924 11018 6037658 2024-02-22 22:45:04.481 2024-02-22 22:45:04.481 1000 STREAM 141924 3656 6038892 2024-02-23 01:19:03.78 2024-02-23 01:19:03.78 1000 STREAM 141924 736 6032762 2024-02-22 15:28:02.356 2024-02-22 15:28:02.356 1000 STREAM 141924 6537 6032775 2024-02-22 15:30:02.38 2024-02-22 15:30:02.38 1000 STREAM 141924 701 6032797 2024-02-22 15:33:02.375 2024-02-22 15:33:02.375 1000 STREAM 141924 20412 6032859 2024-02-22 15:41:02.463 2024-02-22 15:41:02.463 1000 STREAM 141924 10821 6032886 2024-02-22 15:42:02.474 2024-02-22 15:42:02.474 1000 STREAM 141924 6594 6032898 2024-02-22 15:44:02.486 2024-02-22 15:44:02.486 1000 STREAM 141924 2232 6032912 2024-02-22 15:45:02.489 2024-02-22 15:45:02.489 1000 STREAM 141924 5003 6032920 2024-02-22 15:47:02.498 2024-02-22 15:47:02.498 1000 STREAM 141924 1751 6032942 2024-02-22 15:51:02.534 2024-02-22 15:51:02.534 1000 STREAM 141924 16965 6032955 2024-02-22 15:53:02.55 2024-02-22 15:53:02.55 1000 STREAM 141924 3353 6033036 2024-02-22 15:59:02.587 2024-02-22 15:59:02.587 1000 STREAM 141924 18119 6033153 2024-02-22 16:05:02.594 2024-02-22 16:05:02.594 1000 STREAM 141924 8459 6033172 2024-02-22 16:07:02.636 2024-02-22 16:07:02.636 1000 STREAM 141924 9655 6033198 2024-02-22 16:09:02.652 2024-02-22 16:09:02.652 1000 STREAM 141924 21033 6033282 2024-02-22 16:17:02.704 2024-02-22 16:17:02.704 1000 STREAM 141924 15196 6033291 2024-02-22 16:19:02.687 2024-02-22 16:19:02.687 1000 STREAM 141924 17522 6033326 2024-02-22 16:21:02.725 2024-02-22 16:21:02.725 1000 STREAM 141924 19857 6037546 2024-02-22 22:35:04.081 2024-02-22 22:35:04.081 1000 STREAM 141924 14195 6037579 2024-02-22 22:42:04.457 2024-02-22 22:42:04.457 1000 STREAM 141924 9183 6038893 2024-02-23 01:20:03.825 2024-02-23 01:20:03.825 1000 STREAM 141924 16754 6038899 2024-02-23 01:22:03.792 2024-02-23 01:22:03.792 1000 STREAM 141924 21627 6038901 2024-02-23 01:24:03.804 2024-02-23 01:24:03.804 1000 STREAM 141924 5495 6038903 2024-02-23 01:25:03.825 2024-02-23 01:25:03.825 1000 STREAM 141924 5701 6038949 2024-02-23 01:27:03.85 2024-02-23 01:27:03.85 1000 STREAM 141924 2776 6038964 2024-02-23 01:30:03.9 2024-02-23 01:30:03.9 1000 STREAM 141924 4079 6038965 2024-02-23 01:31:03.885 2024-02-23 01:31:03.885 1000 STREAM 141924 21374 6039005 2024-02-23 01:39:04.003 2024-02-23 01:39:04.003 1000 STREAM 141924 19471 6039007 2024-02-23 01:41:03.991 2024-02-23 01:41:03.991 1000 STREAM 141924 21320 6039014 2024-02-23 01:42:03.995 2024-02-23 01:42:03.995 1000 STREAM 141924 6555 6039018 2024-02-23 01:45:04.023 2024-02-23 01:45:04.023 1000 STREAM 141924 19198 6039022 2024-02-23 01:47:04.032 2024-02-23 01:47:04.032 1000 STREAM 141924 19126 6039024 2024-02-23 01:49:04.056 2024-02-23 01:49:04.056 1000 STREAM 141924 16230 6039033 2024-02-23 01:50:04.099 2024-02-23 01:50:04.099 1000 STREAM 141924 1198 6039037 2024-02-23 01:52:04.078 2024-02-23 01:52:04.078 1000 STREAM 141924 1737 6039060 2024-02-23 01:54:04.088 2024-02-23 01:54:04.088 1000 STREAM 141924 8289 6039167 2024-02-23 01:57:04.117 2024-02-23 01:57:04.117 1000 STREAM 141924 18311 6039175 2024-02-23 02:02:04.162 2024-02-23 02:02:04.162 1000 STREAM 141924 18040 6039176 2024-02-23 02:03:02.137 2024-02-23 02:03:02.137 1000 STREAM 141924 13527 6039180 2024-02-23 02:05:02.174 2024-02-23 02:05:02.174 1000 STREAM 141924 14376 6039181 2024-02-23 02:06:04.197 2024-02-23 02:06:04.197 1000 STREAM 141924 19322 6039183 2024-02-23 02:07:02.192 2024-02-23 02:07:02.192 1000 STREAM 141924 20062 6039200 2024-02-23 02:08:04.206 2024-02-23 02:08:04.206 1000 STREAM 141924 1272 6039233 2024-02-23 02:12:02.212 2024-02-23 02:12:02.212 1000 STREAM 141924 11275 6039238 2024-02-23 02:15:03.813 2024-02-23 02:15:03.813 1000 STREAM 141924 21212 6039240 2024-02-23 02:17:03.957 2024-02-23 02:17:03.957 1000 STREAM 141924 9969 6039288 2024-02-23 02:24:02.213 2024-02-23 02:24:02.213 1000 STREAM 141924 18116 6039316 2024-02-23 02:32:02.617 2024-02-23 02:32:02.617 1000 STREAM 141924 8535 6039317 2024-02-23 02:33:02.648 2024-02-23 02:33:02.648 1000 STREAM 141924 20681 6039329 2024-02-23 02:38:02.97 2024-02-23 02:38:02.97 1000 STREAM 141924 19469 6039331 2024-02-23 02:39:02.932 2024-02-23 02:39:02.932 1000 STREAM 141924 20511 6039338 2024-02-23 02:40:02.945 2024-02-23 02:40:02.945 1000 STREAM 141924 6616 6039341 2024-02-23 02:40:55.253 2024-02-23 02:40:55.253 1000 FEE 435619 16747 6039342 2024-02-23 02:40:55.253 2024-02-23 02:40:55.253 9000 TIP 435619 19132 6039349 2024-02-23 02:40:55.994 2024-02-23 02:40:55.994 1000 FEE 435619 1493 6039350 2024-02-23 02:40:55.994 2024-02-23 02:40:55.994 9000 TIP 435619 2056 6039353 2024-02-23 02:40:56.317 2024-02-23 02:40:56.317 1000 FEE 435619 11523 6039354 2024-02-23 02:40:56.317 2024-02-23 02:40:56.317 9000 TIP 435619 19500 6039355 2024-02-23 02:41:02.96 2024-02-23 02:41:02.96 1000 STREAM 141924 649 6039356 2024-02-23 02:42:02.942 2024-02-23 02:42:02.942 1000 STREAM 141924 2196 6039358 2024-02-23 02:42:12.431 2024-02-23 02:42:12.431 3300 FEE 435679 20094 6039359 2024-02-23 02:42:12.431 2024-02-23 02:42:12.431 29700 TIP 435679 12819 6039360 2024-02-23 02:42:12.886 2024-02-23 02:42:12.886 3300 FEE 435679 18473 6039361 2024-02-23 02:42:12.886 2024-02-23 02:42:12.886 29700 TIP 435679 15161 6039364 2024-02-23 02:42:37.068 2024-02-23 02:42:37.068 19800 FEE 435687 6700 6039365 2024-02-23 02:42:37.068 2024-02-23 02:42:37.068 178200 TIP 435687 14795 6039366 2024-02-23 02:43:02.974 2024-02-23 02:43:02.974 1000 STREAM 141924 18177 6039367 2024-02-23 02:44:03.062 2024-02-23 02:44:03.062 1000 STREAM 141924 16282 6039369 2024-02-23 02:46:03.016 2024-02-23 02:46:03.016 1000 STREAM 141924 7553 6039370 2024-02-23 02:47:02.987 2024-02-23 02:47:02.987 1000 STREAM 141924 14959 6039371 2024-02-23 02:48:03.359 2024-02-23 02:48:03.359 1000 STREAM 141924 19512 6039372 2024-02-23 02:49:03.395 2024-02-23 02:49:03.395 1000 STREAM 141924 21116 6039373 2024-02-23 02:50:03.641 2024-02-23 02:50:03.641 1000 STREAM 141924 14650 6039375 2024-02-23 02:52:03.46 2024-02-23 02:52:03.46 1000 STREAM 141924 2188 6039376 2024-02-23 02:52:21.686 2024-02-23 02:52:21.686 1000 FEE 435579 697 6039377 2024-02-23 02:52:21.686 2024-02-23 02:52:21.686 9000 TIP 435579 2390 6039378 2024-02-23 02:53:03.464 2024-02-23 02:53:03.464 1000 STREAM 141924 859 6039380 2024-02-23 02:54:03.474 2024-02-23 02:54:03.474 1000 STREAM 141924 1650 6039381 2024-02-23 02:54:05.753 2024-02-23 02:54:05.753 1000 FEE 435775 12808 6039382 2024-02-23 02:54:45.29 2024-02-23 02:54:45.29 1000 FEE 435770 928 6039383 2024-02-23 02:54:45.29 2024-02-23 02:54:45.29 9000 TIP 435770 17365 6039384 2024-02-23 02:55:03.495 2024-02-23 02:55:03.495 1000 STREAM 141924 18473 6039387 2024-02-23 02:56:03.499 2024-02-23 02:56:03.499 1000 STREAM 141924 18528 6039390 2024-02-23 02:57:03.49 2024-02-23 02:57:03.49 1000 STREAM 141924 18904 6039391 2024-02-23 02:58:03.518 2024-02-23 02:58:03.518 1000 STREAM 141924 18178 6039392 2024-02-23 02:59:03.541 2024-02-23 02:59:03.541 1000 STREAM 141924 21159 6039397 2024-02-23 03:02:03.795 2024-02-23 03:02:03.795 1000 STREAM 141924 14552 6039398 2024-02-23 03:02:20.445 2024-02-23 03:02:20.445 1000 POLL 435516 8376 6039404 2024-02-23 03:03:48.844 2024-02-23 03:03:48.844 1000 FEE 435375 20799 6039405 2024-02-23 03:03:48.844 2024-02-23 03:03:48.844 9000 TIP 435375 21339 6039406 2024-02-23 03:03:49.516 2024-02-23 03:03:49.516 1000 FEE 435375 19890 6039407 2024-02-23 03:03:49.516 2024-02-23 03:03:49.516 9000 TIP 435375 11821 6039408 2024-02-23 03:03:58.227 2024-02-23 03:03:58.227 1000 FEE 435778 19533 6039409 2024-02-23 03:04:03.796 2024-02-23 03:04:03.796 1000 STREAM 141924 987 6039410 2024-02-23 03:04:05.294 2024-02-23 03:04:05.294 10000 FEE 435224 19031 6039411 2024-02-23 03:04:05.294 2024-02-23 03:04:05.294 90000 TIP 435224 20861 6039412 2024-02-23 03:04:14.204 2024-02-23 03:04:14.204 1000 FEE 435779 20781 6039413 2024-02-23 03:04:18.029 2024-02-23 03:04:18.029 10000 FEE 435151 623 6039414 2024-02-23 03:04:18.029 2024-02-23 03:04:18.029 90000 TIP 435151 1534 6039415 2024-02-23 03:04:22.421 2024-02-23 03:04:22.421 1000 FEE 435780 20190 6039416 2024-02-23 03:04:24.681 2024-02-23 03:04:24.681 7700 FEE 434988 671 6039417 2024-02-23 03:04:24.681 2024-02-23 03:04:24.681 69300 TIP 434988 20470 6039418 2024-02-23 03:04:26.208 2024-02-23 03:04:26.208 1000 FEE 435781 2711 6039419 2024-02-23 03:04:29.267 2024-02-23 03:04:29.267 10000 FEE 434990 20153 6039420 2024-02-23 03:04:29.267 2024-02-23 03:04:29.267 90000 TIP 434990 1552 6039421 2024-02-23 03:04:35.729 2024-02-23 03:04:35.729 10000 FEE 435782 19303 6032768 2024-02-22 15:28:45.852 2024-02-22 15:28:45.852 3400 FEE 435046 6148 6032769 2024-02-22 15:28:45.852 2024-02-22 15:28:45.852 30600 TIP 435046 960 6032784 2024-02-22 15:31:22.937 2024-02-22 15:31:22.937 1000 FEE 435108 20198 6032838 2024-02-22 15:38:49.818 2024-02-22 15:38:49.818 500 FEE 435046 20523 6032802 2024-02-22 15:35:02.417 2024-02-22 15:35:02.417 1000 STREAM 141924 14909 6032818 2024-02-22 15:37:02.405 2024-02-22 15:37:02.405 1000 STREAM 141924 21402 6032847 2024-02-22 15:39:02.434 2024-02-22 15:39:02.434 1000 STREAM 141924 837 6032925 2024-02-22 15:49:02.519 2024-02-22 15:49:02.519 1000 STREAM 141924 6003 6032980 2024-02-22 15:55:02.559 2024-02-22 15:55:02.559 1000 STREAM 141924 2639 6032998 2024-02-22 15:57:02.569 2024-02-22 15:57:02.569 1000 STREAM 141924 16348 6033089 2024-02-22 16:01:02.607 2024-02-22 16:01:02.607 1000 STREAM 141924 21058 6033090 2024-02-22 16:02:02.601 2024-02-22 16:02:02.601 1000 STREAM 141924 19557 6033125 2024-02-22 16:04:02.618 2024-02-22 16:04:02.618 1000 STREAM 141924 10469 6033217 2024-02-22 16:11:02.663 2024-02-22 16:11:02.663 1000 STREAM 141924 17030 6033250 2024-02-22 16:12:02.687 2024-02-22 16:12:02.687 1000 STREAM 141924 16309 6033251 2024-02-22 16:13:02.689 2024-02-22 16:13:02.689 1000 STREAM 141924 18262 6033259 2024-02-22 16:15:02.681 2024-02-22 16:15:02.681 1000 STREAM 141924 746 6033342 2024-02-22 16:23:02.734 2024-02-22 16:23:02.734 1000 STREAM 141924 16289 6037571 2024-02-22 22:39:30.343 2024-02-22 22:39:30.343 1000 FEE 435261 19292 6037572 2024-02-22 22:39:30.343 2024-02-22 22:39:30.343 9000 TIP 435261 18068 6037573 2024-02-22 22:39:58.575 2024-02-22 22:39:58.575 1000 FEE 435619 18154 6037583 2024-02-22 22:43:22.061 2024-02-22 22:43:22.061 10000 FEE 435620 17415 6037601 2024-02-22 22:43:30.963 2024-02-22 22:43:30.963 2100 FEE 435328 9334 6037602 2024-02-22 22:43:30.963 2024-02-22 22:43:30.963 18900 TIP 435328 21040 6037629 2024-02-22 22:43:55.058 2024-02-22 22:43:55.058 1000 FEE 435621 3683 6037632 2024-02-22 22:43:58.587 2024-02-22 22:43:58.587 4200 FEE 435402 17001 6037633 2024-02-22 22:43:58.587 2024-02-22 22:43:58.587 37800 TIP 435402 10007 6037662 2024-02-22 22:45:20.324 2024-02-22 22:45:20.324 2500 FEE 435489 20087 6037663 2024-02-22 22:45:20.324 2024-02-22 22:45:20.324 22500 TIP 435489 21116 6037666 2024-02-22 22:45:28.7 2024-02-22 22:45:28.7 3300 FEE 435579 10393 6037667 2024-02-22 22:45:28.7 2024-02-22 22:45:28.7 29700 TIP 435579 19016 6037704 2024-02-22 22:47:08.25 2024-02-22 22:47:08.25 2100 FEE 434813 10063 6037705 2024-02-22 22:47:08.25 2024-02-22 22:47:08.25 18900 TIP 434813 18270 6037706 2024-02-22 22:47:08.729 2024-02-22 22:47:08.729 2100 FEE 434813 21373 6037707 2024-02-22 22:47:08.729 2024-02-22 22:47:08.729 18900 TIP 434813 1429 6037708 2024-02-22 22:47:08.921 2024-02-22 22:47:08.921 2100 FEE 434813 19121 6037709 2024-02-22 22:47:08.921 2024-02-22 22:47:08.921 18900 TIP 434813 9655 6037722 2024-02-22 22:47:32.269 2024-02-22 22:47:32.269 2100 FEE 435327 17095 6037723 2024-02-22 22:47:32.269 2024-02-22 22:47:32.269 18900 TIP 435327 14255 6037726 2024-02-22 22:47:32.746 2024-02-22 22:47:32.746 2100 FEE 435327 1429 6037727 2024-02-22 22:47:32.746 2024-02-22 22:47:32.746 18900 TIP 435327 12158 6037728 2024-02-22 22:47:32.997 2024-02-22 22:47:32.997 2100 FEE 435327 19907 6037729 2024-02-22 22:47:32.997 2024-02-22 22:47:32.997 18900 TIP 435327 19151 6037732 2024-02-22 22:47:33.797 2024-02-22 22:47:33.797 2100 FEE 435327 18727 6037733 2024-02-22 22:47:33.797 2024-02-22 22:47:33.797 18900 TIP 435327 16998 6037740 2024-02-22 22:47:40.298 2024-02-22 22:47:40.298 2100 FEE 435030 14376 6037741 2024-02-22 22:47:40.298 2024-02-22 22:47:40.298 18900 TIP 435030 2342 6037775 2024-02-22 22:48:00.977 2024-02-22 22:48:00.977 2100 FEE 435544 13406 6037776 2024-02-22 22:48:00.977 2024-02-22 22:48:00.977 18900 TIP 435544 9863 6037781 2024-02-22 22:48:01.716 2024-02-22 22:48:01.716 2100 FEE 435544 814 6032823 2024-02-22 15:37:35.821 2024-02-22 15:37:35.821 27000 FEE 435063 14258 6032824 2024-02-22 15:37:35.821 2024-02-22 15:37:35.821 243000 TIP 435063 19809 6032830 2024-02-22 15:38:22.884 2024-02-22 15:38:22.884 3000 FEE 435098 5904 6032831 2024-02-22 15:38:22.884 2024-02-22 15:38:22.884 27000 TIP 435098 10469 6032836 2024-02-22 15:38:40.384 2024-02-22 15:38:40.384 2100 FEE 435089 5497 6032837 2024-02-22 15:38:40.384 2024-02-22 15:38:40.384 18900 TIP 435089 8841 6032848 2024-02-22 15:39:03.579 2024-02-22 15:39:03.579 2100 FEE 435092 21522 6032849 2024-02-22 15:39:03.579 2024-02-22 15:39:03.579 18900 TIP 435092 2583 6032892 2024-02-22 15:43:38.094 2024-02-22 15:43:38.094 15000 FEE 434588 21352 6032893 2024-02-22 15:43:38.094 2024-02-22 15:43:38.094 135000 TIP 434588 2537 6032901 2024-02-22 15:44:12.065 2024-02-22 15:44:12.065 1000 FEE 435121 21214 6032910 2024-02-22 15:44:15.976 2024-02-22 15:44:15.976 1000 FEE 434600 21275 6032911 2024-02-22 15:44:15.976 2024-02-22 15:44:15.976 9000 TIP 434600 19821 6032933 2024-02-22 15:49:50.323 2024-02-22 15:49:50.323 300 FEE 435115 17147 6032934 2024-02-22 15:49:50.323 2024-02-22 15:49:50.323 2700 TIP 435115 1298 6032944 2024-02-22 15:51:24.273 2024-02-22 15:51:24.273 1000 FEE 435127 10352 6032949 2024-02-22 15:52:38.144 2024-02-22 15:52:38.144 1000 FEE 435129 3506 6032959 2024-02-22 15:53:30.258 2024-02-22 15:53:30.258 800 FEE 435046 2338 6032960 2024-02-22 15:53:30.258 2024-02-22 15:53:30.258 7200 TIP 435046 20687 6032973 2024-02-22 15:54:39.683 2024-02-22 15:54:39.683 1000 FEE 435133 13931 6032984 2024-02-22 15:55:07.265 2024-02-22 15:55:07.265 500 FEE 435026 7668 6032985 2024-02-22 15:55:07.265 2024-02-22 15:55:07.265 4500 TIP 435026 14950 6032991 2024-02-22 15:55:55.122 2024-02-22 15:55:55.122 0 FEE 435135 1389 6032993 2024-02-22 15:56:15.674 2024-02-22 15:56:15.674 4000 FEE 435124 19243 6032994 2024-02-22 15:56:15.674 2024-02-22 15:56:15.674 36000 TIP 435124 627 6033020 2024-02-22 15:58:45.789 2024-02-22 15:58:45.789 8300 FEE 434791 20110 6033021 2024-02-22 15:58:45.789 2024-02-22 15:58:45.789 74700 TIP 434791 19902 6033028 2024-02-22 15:58:46.374 2024-02-22 15:58:46.374 8300 FEE 434791 11938 6033029 2024-02-22 15:58:46.374 2024-02-22 15:58:46.374 74700 TIP 434791 3396 6033030 2024-02-22 15:58:46.712 2024-02-22 15:58:46.712 8300 FEE 434791 1534 6033031 2024-02-22 15:58:46.712 2024-02-22 15:58:46.712 74700 TIP 434791 16004 6033047 2024-02-22 15:59:16.675 2024-02-22 15:59:16.675 2100 FEE 435002 14818 6033048 2024-02-22 15:59:16.675 2024-02-22 15:59:16.675 18900 TIP 435002 1039 6033076 2024-02-22 16:00:07.94 2024-02-22 16:00:07.94 9000 FEE 435100 20201 6033077 2024-02-22 16:00:07.94 2024-02-22 16:00:07.94 81000 TIP 435100 15858 6033083 2024-02-22 16:00:43.46 2024-02-22 16:00:43.46 2100 FEE 434124 766 6033084 2024-02-22 16:00:43.46 2024-02-22 16:00:43.46 18900 TIP 434124 6578 6033087 2024-02-22 16:01:00.591 2024-02-22 16:01:00.591 2100 FEE 434219 19259 6033088 2024-02-22 16:01:00.591 2024-02-22 16:01:00.591 18900 TIP 434219 21249 6033091 2024-02-22 16:02:11.262 2024-02-22 16:02:11.262 1000 FEE 435140 11648 6033092 2024-02-22 16:02:11.262 2024-02-22 16:02:11.262 9000 TIP 435140 19021 6033111 2024-02-22 16:03:29.983 2024-02-22 16:03:29.983 1000 FEE 435146 10981 6033112 2024-02-22 16:03:30.063 2024-02-22 16:03:30.063 9000 FEE 434939 5171 6033113 2024-02-22 16:03:30.063 2024-02-22 16:03:30.063 81000 TIP 434939 17513 6033134 2024-02-22 16:04:22.996 2024-02-22 16:04:22.996 100 FEE 434994 15463 6033135 2024-02-22 16:04:22.996 2024-02-22 16:04:22.996 900 TIP 434994 4128 6033152 2024-02-22 16:04:45.562 2024-02-22 16:04:45.562 1000 FEE 435148 7766 6033191 2024-02-22 16:08:06.508 2024-02-22 16:08:06.508 1000 FEE 434353 15594 6033192 2024-02-22 16:08:06.508 2024-02-22 16:08:06.508 9000 TIP 434353 9184 6033226 2024-02-22 16:11:04.55 2024-02-22 16:11:04.55 400 FEE 435146 13246 6033227 2024-02-22 16:11:04.55 2024-02-22 16:11:04.55 3600 TIP 435146 16556 6033242 2024-02-22 16:11:11.374 2024-02-22 16:11:11.374 2100 FEE 434139 17095 6033243 2024-02-22 16:11:11.374 2024-02-22 16:11:11.374 18900 TIP 434139 10519 6033244 2024-02-22 16:11:33.957 2024-02-22 16:11:33.957 2100 FEE 434440 18727 6033245 2024-02-22 16:11:33.957 2024-02-22 16:11:33.957 18900 TIP 434440 976 6033255 2024-02-22 16:14:09.673 2024-02-22 16:14:09.673 1000 FEE 435157 21398 6033261 2024-02-22 16:15:05.742 2024-02-22 16:15:05.742 100 FEE 433851 1352 6033262 2024-02-22 16:15:05.742 2024-02-22 16:15:05.742 900 TIP 433851 5173 6033265 2024-02-22 16:15:28.821 2024-02-22 16:15:28.821 1600 FEE 435136 2338 6032839 2024-02-22 15:38:49.818 2024-02-22 15:38:49.818 4500 TIP 435046 18581 6032844 2024-02-22 15:39:00.829 2024-02-22 15:39:00.829 2100 FEE 435040 21393 6032845 2024-02-22 15:39:00.829 2024-02-22 15:39:00.829 18900 TIP 435040 18667 6032921 2024-02-22 15:47:19.265 2024-02-22 15:47:19.265 0 FEE 435122 18660 6032937 2024-02-22 15:50:44.971 2024-02-22 15:50:44.971 3000 FEE 435122 12160 6032938 2024-02-22 15:50:44.971 2024-02-22 15:50:44.971 27000 TIP 435122 8570 6032939 2024-02-22 15:50:46.356 2024-02-22 15:50:46.356 27000 FEE 435122 2151 6032940 2024-02-22 15:50:46.356 2024-02-22 15:50:46.356 243000 TIP 435122 15409 6032950 2024-02-22 15:52:45.11 2024-02-22 15:52:45.11 1000 FEE 435130 3729 6032951 2024-02-22 15:52:55.154 2024-02-22 15:52:55.154 8300 FEE 435116 634 6032952 2024-02-22 15:52:55.154 2024-02-22 15:52:55.154 74700 TIP 435116 1006 6032978 2024-02-22 15:54:48.652 2024-02-22 15:54:48.652 1000 FEE 434498 17172 6032979 2024-02-22 15:54:48.652 2024-02-22 15:54:48.652 9000 TIP 434498 6765 6032986 2024-02-22 15:55:08.653 2024-02-22 15:55:08.653 1000 FEE 435135 21201 6032999 2024-02-22 15:57:15.437 2024-02-22 15:57:15.437 1000 FEE 435137 652 6033005 2024-02-22 15:57:57.492 2024-02-22 15:57:57.492 1000 FEE 435139 3417 6033049 2024-02-22 15:59:17.361 2024-02-22 15:59:17.361 1000 FEE 434665 7418 6033050 2024-02-22 15:59:17.361 2024-02-22 15:59:17.361 9000 TIP 434665 16830 6033097 2024-02-22 16:02:41.073 2024-02-22 16:02:41.073 100 FEE 435136 20970 6033098 2024-02-22 16:02:41.073 2024-02-22 16:02:41.073 900 TIP 435136 704 6033138 2024-02-22 16:04:23.35 2024-02-22 16:04:23.35 100 FEE 434994 7746 6033139 2024-02-22 16:04:23.35 2024-02-22 16:04:23.35 900 TIP 434994 6419 6033166 2024-02-22 16:06:13.172 2024-02-22 16:06:13.172 1000 FEE 434440 11275 6033167 2024-02-22 16:06:13.172 2024-02-22 16:06:13.172 9000 TIP 434440 9169 6033175 2024-02-22 16:07:40.943 2024-02-22 16:07:40.943 1000 FEE 434559 20120 6033176 2024-02-22 16:07:40.943 2024-02-22 16:07:40.943 9000 TIP 434559 1729 6033187 2024-02-22 16:08:05.303 2024-02-22 16:08:05.303 1000 FEE 434353 13327 6033188 2024-02-22 16:08:05.303 2024-02-22 16:08:05.303 9000 TIP 434353 21421 6033204 2024-02-22 16:09:47.021 2024-02-22 16:09:47.021 3200 FEE 435148 21547 6033205 2024-02-22 16:09:47.021 2024-02-22 16:09:47.021 28800 TIP 435148 11091 6033216 2024-02-22 16:11:01.166 2024-02-22 16:11:01.166 1000 FEE 435156 1047 6033222 2024-02-22 16:11:03.472 2024-02-22 16:11:03.472 400 FEE 435146 9362 6032863 2024-02-22 15:41:27.693 2024-02-22 15:41:27.693 18900 TIP 434323 17891 6032864 2024-02-22 15:41:37.569 2024-02-22 15:41:37.569 7700 FEE 433649 20588 6032865 2024-02-22 15:41:37.569 2024-02-22 15:41:37.569 69300 TIP 433649 9107 6032876 2024-02-22 15:41:41.697 2024-02-22 15:41:41.697 100 FEE 433649 16270 6032877 2024-02-22 15:41:41.697 2024-02-22 15:41:41.697 900 TIP 433649 12356 6032902 2024-02-22 15:44:14.084 2024-02-22 15:44:14.084 1000 FEE 434600 20015 6032903 2024-02-22 15:44:14.084 2024-02-22 15:44:14.084 9000 TIP 434600 17064 6032913 2024-02-22 15:45:14.678 2024-02-22 15:45:14.678 2100 FEE 434960 18412 6032914 2024-02-22 15:45:14.678 2024-02-22 15:45:14.678 18900 TIP 434960 21532 6032918 2024-02-22 15:46:28.413 2024-02-22 15:46:28.413 1000 FEE 435122 20802 6032926 2024-02-22 15:49:13.183 2024-02-22 15:49:13.183 1000 FEE 434572 20185 6032927 2024-02-22 15:49:13.183 2024-02-22 15:49:13.183 9000 TIP 434572 21605 6032928 2024-02-22 15:49:31.734 2024-02-22 15:49:31.734 2100 FEE 434859 14663 6032929 2024-02-22 15:49:31.734 2024-02-22 15:49:31.734 18900 TIP 434859 2042 6032936 2024-02-22 15:50:16.816 2024-02-22 15:50:16.816 1000 FEE 435124 16447 6032989 2024-02-22 15:55:50.634 2024-02-22 15:55:50.634 10000 FEE 435030 2000 6032990 2024-02-22 15:55:50.634 2024-02-22 15:55:50.634 90000 TIP 435030 19759 6033014 2024-02-22 15:58:45.471 2024-02-22 15:58:45.471 8300 FEE 434791 3371 6033015 2024-02-22 15:58:45.471 2024-02-22 15:58:45.471 74700 TIP 434791 9529 6033069 2024-02-22 15:59:50.397 2024-02-22 15:59:50.397 90000 FEE 434278 4574 6033070 2024-02-22 15:59:50.397 2024-02-22 15:59:50.397 810000 TIP 434278 9433 6033078 2024-02-22 16:00:11.508 2024-02-22 16:00:11.508 10000 FEE 435144 17209 6033102 2024-02-22 16:03:00.776 2024-02-22 16:03:00.776 3000 FEE 435132 1478 6033103 2024-02-22 16:03:00.776 2024-02-22 16:03:00.776 27000 TIP 435132 13927 6033144 2024-02-22 16:04:44.82 2024-02-22 16:04:44.82 100 FEE 435046 6148 6033145 2024-02-22 16:04:44.82 2024-02-22 16:04:44.82 900 TIP 435046 20912 6033148 2024-02-22 16:04:45.242 2024-02-22 16:04:45.242 100 FEE 435046 2942 6033149 2024-02-22 16:04:45.242 2024-02-22 16:04:45.242 900 TIP 435046 18453 6033159 2024-02-22 16:05:55.25 2024-02-22 16:05:55.25 1000 FEE 434957 16929 6033160 2024-02-22 16:05:55.25 2024-02-22 16:05:55.25 9000 TIP 434957 10549 6033170 2024-02-22 16:06:43.457 2024-02-22 16:06:43.457 100 FEE 434498 5195 6033171 2024-02-22 16:06:43.457 2024-02-22 16:06:43.457 900 TIP 434498 1401 6033181 2024-02-22 16:07:52.893 2024-02-22 16:07:52.893 1000 FEE 435150 19652 6033232 2024-02-22 16:11:06.935 2024-02-22 16:11:06.935 2100 FEE 434139 19329 6033233 2024-02-22 16:11:06.935 2024-02-22 16:11:06.935 18900 TIP 434139 15100 6033252 2024-02-22 16:13:17.928 2024-02-22 16:13:17.928 2100 FEE 434019 21323 6033253 2024-02-22 16:13:17.928 2024-02-22 16:13:17.928 18900 TIP 434019 18232 6033278 2024-02-22 16:16:53.838 2024-02-22 16:16:53.838 20000 FEE 435136 16670 6033279 2024-02-22 16:16:53.838 2024-02-22 16:16:53.838 180000 TIP 435136 13575 6033285 2024-02-22 16:17:14.693 2024-02-22 16:17:14.693 100000 FEE 435167 21400 6033286 2024-02-22 16:17:23.809 2024-02-22 16:17:23.809 1000 FEE 435168 19500 6033292 2024-02-22 16:19:07.797 2024-02-22 16:19:07.797 1000 FEE 435170 17011 6033298 2024-02-22 16:19:39.696 2024-02-22 16:19:39.696 1000 FEE 435172 12959 6033305 2024-02-22 16:20:02.858 2024-02-22 16:20:02.858 900000 FEE 432920 7966 6033306 2024-02-22 16:20:02.858 2024-02-22 16:20:02.858 8100000 TIP 432920 21589 6033320 2024-02-22 16:20:36.256 2024-02-22 16:20:36.256 100 FEE 434640 18511 6033321 2024-02-22 16:20:36.256 2024-02-22 16:20:36.256 900 TIP 434640 2293 6033330 2024-02-22 16:21:28.247 2024-02-22 16:21:28.247 1000 FEE 435177 1751 6033357 2024-02-22 16:24:34.068 2024-02-22 16:24:34.068 8300 FEE 435151 2757 6033358 2024-02-22 16:24:34.068 2024-02-22 16:24:34.068 74700 TIP 435151 16753 6033367 2024-02-22 16:25:44.771 2024-02-22 16:25:44.771 3000 FEE 435030 17162 6033368 2024-02-22 16:25:44.771 2024-02-22 16:25:44.771 27000 TIP 435030 21463 6033391 2024-02-22 16:28:36.484 2024-02-22 16:28:36.484 1000 FEE 435190 15703 6033392 2024-02-22 16:28:39.057 2024-02-22 16:28:39.057 27000 FEE 435086 7125 6033393 2024-02-22 16:28:39.057 2024-02-22 16:28:39.057 243000 TIP 435086 19902 6033409 2024-02-22 16:28:57.886 2024-02-22 16:28:57.886 1000 FEE 434997 717 6033410 2024-02-22 16:28:57.886 2024-02-22 16:28:57.886 9000 TIP 434997 15588 6033411 2024-02-22 16:28:58.389 2024-02-22 16:28:58.389 1000 FEE 434997 21356 6033412 2024-02-22 16:28:58.389 2024-02-22 16:28:58.389 9000 TIP 434997 10056 6033413 2024-02-22 16:28:58.843 2024-02-22 16:28:58.843 1000 FEE 434997 18306 6033414 2024-02-22 16:28:58.843 2024-02-22 16:28:58.843 9000 TIP 434997 739 6033430 2024-02-22 16:29:26.743 2024-02-22 16:29:26.743 1000 FEE 435019 2529 6033431 2024-02-22 16:29:26.743 2024-02-22 16:29:26.743 9000 TIP 435019 20715 6033457 2024-02-22 16:32:15.853 2024-02-22 16:32:15.853 2100 FEE 433833 866 6033458 2024-02-22 16:32:15.853 2024-02-22 16:32:15.853 18900 TIP 433833 21455 6033463 2024-02-22 16:32:18.784 2024-02-22 16:32:18.784 4000 FEE 435196 11829 6033464 2024-02-22 16:32:18.784 2024-02-22 16:32:18.784 36000 TIP 435196 19121 6033482 2024-02-22 16:33:22.533 2024-02-22 16:33:22.533 83000 DONT_LIKE_THIS 435142 21061 6033488 2024-02-22 16:34:07.306 2024-02-22 16:34:07.306 1000 FEE 435198 17817 6033548 2024-02-22 16:36:58.697 2024-02-22 16:36:58.697 11700 FEE 434665 16956 6033549 2024-02-22 16:36:58.697 2024-02-22 16:36:58.697 105300 TIP 434665 18659 6033559 2024-02-22 16:37:25.863 2024-02-22 16:37:25.863 1000 FEE 435204 9969 6033626 2024-02-22 16:46:13.799 2024-02-22 16:46:13.799 1000 FEE 434642 4043 6033627 2024-02-22 16:46:13.799 2024-02-22 16:46:13.799 9000 TIP 434642 17030 6033632 2024-02-22 16:46:16.229 2024-02-22 16:46:16.229 1000 FEE 434646 20560 6033633 2024-02-22 16:46:16.229 2024-02-22 16:46:16.229 9000 TIP 434646 21148 6033647 2024-02-22 16:47:15.682 2024-02-22 16:47:15.682 1000 FEE 435216 11714 6033677 2024-02-22 16:51:36.111 2024-02-22 16:51:36.111 1000 FEE 435223 9331 6033700 2024-02-22 16:55:00.443 2024-02-22 16:55:00.443 1000 FEE 435230 7376 6033714 2024-02-22 16:56:05.099 2024-02-22 16:56:05.099 1000 FEE 435221 1060 6033715 2024-02-22 16:56:05.099 2024-02-22 16:56:05.099 9000 TIP 435221 19943 6033716 2024-02-22 16:56:07.025 2024-02-22 16:56:07.025 1000 FEE 435232 21521 6033717 2024-02-22 16:56:07.025 2024-02-22 16:56:07.025 9000 TIP 435232 16956 6033755 2024-02-22 16:57:03.339 2024-02-22 16:57:03.339 1000 FEE 434958 1244 6033756 2024-02-22 16:57:03.339 2024-02-22 16:57:03.339 9000 TIP 434958 21446 6033770 2024-02-22 16:57:54.299 2024-02-22 16:57:54.299 2100 FEE 434958 20495 6033771 2024-02-22 16:57:54.299 2024-02-22 16:57:54.299 18900 TIP 434958 21418 6032956 2024-02-22 15:53:26.212 2024-02-22 15:53:26.212 1000 FEE 435131 15697 6032962 2024-02-22 15:53:48.232 2024-02-22 15:53:48.232 1000 FEE 435046 20120 6032963 2024-02-22 15:53:48.232 2024-02-22 15:53:48.232 9000 TIP 435046 716 6032971 2024-02-22 15:54:16.983 2024-02-22 15:54:16.983 27000 FEE 435119 15266 6032972 2024-02-22 15:54:16.983 2024-02-22 15:54:16.983 243000 TIP 435119 6327 6032974 2024-02-22 15:54:44.141 2024-02-22 15:54:44.141 1600 FEE 435115 16858 6032975 2024-02-22 15:54:44.141 2024-02-22 15:54:44.141 14400 TIP 435115 20208 6032982 2024-02-22 15:55:05.109 2024-02-22 15:55:05.109 3400 FEE 434512 18387 6032983 2024-02-22 15:55:05.109 2024-02-22 15:55:05.109 30600 TIP 434512 10591 6032997 2024-02-22 15:56:54.067 2024-02-22 15:56:54.067 210000 FEE 435136 14267 6033001 2024-02-22 15:57:48.655 2024-02-22 15:57:48.655 300 FEE 435096 4768 6033002 2024-02-22 15:57:48.655 2024-02-22 15:57:48.655 2700 TIP 435096 21556 6033003 2024-02-22 15:57:51.953 2024-02-22 15:57:51.953 1000 FEE 434627 9341 6033004 2024-02-22 15:57:51.953 2024-02-22 15:57:51.953 9000 TIP 434627 13143 6033010 2024-02-22 15:58:45.222 2024-02-22 15:58:45.222 8300 FEE 434791 20597 6033011 2024-02-22 15:58:45.222 2024-02-22 15:58:45.222 74700 TIP 434791 15075 6033012 2024-02-22 15:58:45.354 2024-02-22 15:58:45.354 8300 FEE 434791 9307 6033013 2024-02-22 15:58:45.354 2024-02-22 15:58:45.354 74700 TIP 434791 12736 6033016 2024-02-22 15:58:45.589 2024-02-22 15:58:45.589 8300 FEE 434791 20090 6033017 2024-02-22 15:58:45.589 2024-02-22 15:58:45.589 74700 TIP 434791 848 6033024 2024-02-22 15:58:46.133 2024-02-22 15:58:46.133 8300 FEE 434791 9336 6033025 2024-02-22 15:58:46.133 2024-02-22 15:58:46.133 74700 TIP 434791 18526 6033026 2024-02-22 15:58:46.258 2024-02-22 15:58:46.258 8300 FEE 434791 12507 6033027 2024-02-22 15:58:46.258 2024-02-22 15:58:46.258 74700 TIP 434791 6160 6033041 2024-02-22 15:59:14.726 2024-02-22 15:59:14.726 2100 FEE 435082 20861 6033042 2024-02-22 15:59:14.726 2024-02-22 15:59:14.726 18900 TIP 435082 21014 6033063 2024-02-22 15:59:41.209 2024-02-22 15:59:41.209 100 FEE 434958 18393 6033064 2024-02-22 15:59:41.209 2024-02-22 15:59:41.209 900 TIP 434958 1741 6033074 2024-02-22 16:00:07.29 2024-02-22 16:00:07.29 900 FEE 435100 18717 6033075 2024-02-22 16:00:07.29 2024-02-22 16:00:07.29 8100 TIP 435100 16354 6033079 2024-02-22 16:00:17.287 2024-02-22 16:00:17.287 1000 FEE 435111 19303 6033080 2024-02-22 16:00:17.287 2024-02-22 16:00:17.287 9000 TIP 435111 8385 6033099 2024-02-22 16:02:41.268 2024-02-22 16:02:41.268 900 FEE 435136 2000 6033100 2024-02-22 16:02:41.268 2024-02-22 16:02:41.268 8100 TIP 435136 20272 6033101 2024-02-22 16:02:49.239 2024-02-22 16:02:49.239 1000 FEE 435145 4079 6033104 2024-02-22 16:03:01.605 2024-02-22 16:03:01.605 27000 FEE 435132 15088 6033105 2024-02-22 16:03:01.605 2024-02-22 16:03:01.605 243000 TIP 435132 20891 6033109 2024-02-22 16:03:29.514 2024-02-22 16:03:29.514 900 FEE 434939 7553 6033110 2024-02-22 16:03:29.514 2024-02-22 16:03:29.514 8100 TIP 434939 763 6033122 2024-02-22 16:04:00.326 2024-02-22 16:04:00.326 100 FEE 435142 19403 6033123 2024-02-22 16:04:00.326 2024-02-22 16:04:00.326 900 TIP 435142 18309 6033136 2024-02-22 16:04:23.171 2024-02-22 16:04:23.171 100 FEE 434994 11263 6033137 2024-02-22 16:04:23.171 2024-02-22 16:04:23.171 900 TIP 434994 20377 6033154 2024-02-22 16:05:22.617 2024-02-22 16:05:22.617 2100 FEE 435133 15336 6033155 2024-02-22 16:05:22.617 2024-02-22 16:05:22.617 18900 TIP 435133 5794 6033158 2024-02-22 16:05:42.178 2024-02-22 16:05:42.178 1000 FEE 435149 8945 6033168 2024-02-22 16:06:43.432 2024-02-22 16:06:43.432 100 FEE 434498 1729 6033169 2024-02-22 16:06:43.432 2024-02-22 16:06:43.432 900 TIP 434498 12072 6033179 2024-02-22 16:07:44.129 2024-02-22 16:07:44.129 1000 FEE 434559 7847 6033180 2024-02-22 16:07:44.129 2024-02-22 16:07:44.129 9000 TIP 434559 5173 6033184 2024-02-22 16:08:03.506 2024-02-22 16:08:03.506 1000 FEE 434353 19943 6033185 2024-02-22 16:08:03.506 2024-02-22 16:08:03.506 9000 TIP 434353 730 6033197 2024-02-22 16:08:35.48 2024-02-22 16:08:35.48 1000 FEE 435153 12946 6033199 2024-02-22 16:09:11.479 2024-02-22 16:09:11.479 2100 FEE 434934 4973 6033200 2024-02-22 16:09:11.479 2024-02-22 16:09:11.479 18900 TIP 434934 4802 6033206 2024-02-22 16:10:03.69 2024-02-22 16:10:03.69 100 FEE 435151 3729 6033207 2024-02-22 16:10:03.69 2024-02-22 16:10:03.69 900 TIP 435151 985 6033258 2024-02-22 16:14:36.714 2024-02-22 16:14:36.714 1000 FEE 435158 3396 6032958 2024-02-22 15:53:30.074 2024-02-22 15:53:30.074 7200 TIP 435046 20603 6032967 2024-02-22 15:54:05.478 2024-02-22 15:54:05.478 1000 FEE 435026 3396 6032968 2024-02-22 15:54:05.478 2024-02-22 15:54:05.478 9000 TIP 435026 12721 6032969 2024-02-22 15:54:16.669 2024-02-22 15:54:16.669 3000 FEE 435119 13927 6032970 2024-02-22 15:54:16.669 2024-02-22 15:54:16.669 27000 TIP 435119 14195 6032981 2024-02-22 15:55:02.978 2024-02-22 15:55:02.978 1000 FEE 435134 4521 6033008 2024-02-22 15:58:45.032 2024-02-22 15:58:45.032 8300 FEE 434791 663 6033009 2024-02-22 15:58:45.032 2024-02-22 15:58:45.032 74700 TIP 434791 20861 6033043 2024-02-22 15:59:14.998 2024-02-22 15:59:14.998 2100 FEE 435010 15890 6033044 2024-02-22 15:59:14.998 2024-02-22 15:59:14.998 18900 TIP 435010 7891 6033051 2024-02-22 15:59:17.883 2024-02-22 15:59:17.883 1000 FEE 434665 1012 6033052 2024-02-22 15:59:17.883 2024-02-22 15:59:17.883 9000 TIP 434665 21329 6033053 2024-02-22 15:59:18.399 2024-02-22 15:59:18.399 1000 FEE 434665 16229 6033054 2024-02-22 15:59:18.399 2024-02-22 15:59:18.399 9000 TIP 434665 14202 6033116 2024-02-22 16:03:50.715 2024-02-22 16:03:50.715 100 FEE 434934 4292 6033117 2024-02-22 16:03:50.715 2024-02-22 16:03:50.715 900 TIP 434934 16442 6033118 2024-02-22 16:03:50.867 2024-02-22 16:03:50.867 900 FEE 434934 959 6033119 2024-02-22 16:03:50.867 2024-02-22 16:03:50.867 8100 TIP 434934 15100 6033124 2024-02-22 16:04:00.906 2024-02-22 16:04:00.906 1000 FEE 435147 8664 6033132 2024-02-22 16:04:22.798 2024-02-22 16:04:22.798 100 FEE 434994 5175 6033133 2024-02-22 16:04:22.798 2024-02-22 16:04:22.798 900 TIP 434994 15594 6033140 2024-02-22 16:04:23.534 2024-02-22 16:04:23.534 100 FEE 434994 17944 6033141 2024-02-22 16:04:23.534 2024-02-22 16:04:23.534 900 TIP 434994 7674 6033142 2024-02-22 16:04:44.637 2024-02-22 16:04:44.637 100 FEE 435046 13798 6033143 2024-02-22 16:04:44.637 2024-02-22 16:04:44.637 900 TIP 435046 21416 6033150 2024-02-22 16:04:45.484 2024-02-22 16:04:45.484 100 FEE 435046 20756 6033151 2024-02-22 16:04:45.484 2024-02-22 16:04:45.484 900 TIP 435046 20912 6033195 2024-02-22 16:08:09.62 2024-02-22 16:08:09.62 1000 FEE 435151 12930 6033213 2024-02-22 16:10:33.019 2024-02-22 16:10:33.019 1000 FEE 435155 12911 6033214 2024-02-22 16:10:39.342 2024-02-22 16:10:39.342 2100 FEE 434920 6327 6033215 2024-02-22 16:10:39.342 2024-02-22 16:10:39.342 18900 TIP 434920 7119 6033218 2024-02-22 16:11:02.803 2024-02-22 16:11:02.803 400 FEE 435146 2961 6033219 2024-02-22 16:11:02.803 2024-02-22 16:11:02.803 3600 TIP 435146 12609 6033230 2024-02-22 16:11:06.671 2024-02-22 16:11:06.671 2100 FEE 434139 9427 6033231 2024-02-22 16:11:06.671 2024-02-22 16:11:06.671 18900 TIP 434139 15491 6033236 2024-02-22 16:11:10.398 2024-02-22 16:11:10.398 2100 FEE 434139 18630 6033237 2024-02-22 16:11:10.398 2024-02-22 16:11:10.398 18900 TIP 434139 21091 6033264 2024-02-22 16:15:21.146 2024-02-22 16:15:21.146 1000 FEE 435161 20099 6033275 2024-02-22 16:16:35.996 2024-02-22 16:16:35.996 100000 FEE 435165 672 6033283 2024-02-22 16:17:03.613 2024-02-22 16:17:03.613 2300 FEE 435136 15115 6033284 2024-02-22 16:17:03.613 2024-02-22 16:17:03.613 20700 TIP 435136 20710 6033299 2024-02-22 16:19:44.465 2024-02-22 16:19:44.465 90000 FEE 433943 4259 6033300 2024-02-22 16:19:44.465 2024-02-22 16:19:44.465 810000 TIP 433943 14941 6033302 2024-02-22 16:19:54.986 2024-02-22 16:19:54.986 90000 FEE 434535 1472 6033303 2024-02-22 16:19:54.986 2024-02-22 16:19:54.986 810000 TIP 434535 640 6033334 2024-02-22 16:21:44.805 2024-02-22 16:21:44.805 1100 FEE 435030 20539 6033335 2024-02-22 16:21:44.805 2024-02-22 16:21:44.805 9900 TIP 435030 946 6033343 2024-02-22 16:23:08.534 2024-02-22 16:23:08.534 1000 FEE 435180 678 6033351 2024-02-22 16:23:58.837 2024-02-22 16:23:58.837 1000 FEE 435183 21523 6033361 2024-02-22 16:25:27.363 2024-02-22 16:25:27.363 1000 FEE 435154 19907 6033362 2024-02-22 16:25:27.363 2024-02-22 16:25:27.363 9000 TIP 435154 8448 6033373 2024-02-22 16:25:49.615 2024-02-22 16:25:49.615 1000 FEE 435029 6384 6033374 2024-02-22 16:25:49.615 2024-02-22 16:25:49.615 9000 TIP 435029 18169 6033389 2024-02-22 16:28:35.479 2024-02-22 16:28:35.479 3000 FEE 435086 16680 6033390 2024-02-22 16:28:35.479 2024-02-22 16:28:35.479 27000 TIP 435086 20642 6033401 2024-02-22 16:28:55.609 2024-02-22 16:28:55.609 1000 FEE 434997 18640 6033402 2024-02-22 16:28:55.609 2024-02-22 16:28:55.609 9000 TIP 434997 2525 6033403 2024-02-22 16:28:56.184 2024-02-22 16:28:56.184 1000 FEE 434997 20687 6033404 2024-02-22 16:28:56.184 2024-02-22 16:28:56.184 9000 TIP 434997 14015 6033415 2024-02-22 16:28:59.329 2024-02-22 16:28:59.329 1000 FEE 434997 954 6033416 2024-02-22 16:28:59.329 2024-02-22 16:28:59.329 9000 TIP 434997 15180 6033420 2024-02-22 16:29:14.449 2024-02-22 16:29:14.449 1000 FEE 435019 19488 6033421 2024-02-22 16:29:14.449 2024-02-22 16:29:14.449 9000 TIP 435019 13216 6033422 2024-02-22 16:29:15.14 2024-02-22 16:29:15.14 1000 FEE 435019 1745 6033423 2024-02-22 16:29:15.14 2024-02-22 16:29:15.14 9000 TIP 435019 17183 6033453 2024-02-22 16:31:52.221 2024-02-22 16:31:52.221 7100 FEE 435163 19572 6033454 2024-02-22 16:31:52.221 2024-02-22 16:31:52.221 63900 TIP 435163 16660 6033461 2024-02-22 16:32:18.545 2024-02-22 16:32:18.545 4000 FEE 435196 14818 6033462 2024-02-22 16:32:18.545 2024-02-22 16:32:18.545 36000 TIP 435196 1571 6033479 2024-02-22 16:32:45.803 2024-02-22 16:32:45.803 16600 FEE 435030 17321 6033480 2024-02-22 16:32:45.803 2024-02-22 16:32:45.803 149400 TIP 435030 664 6033485 2024-02-22 16:34:02.459 2024-02-22 16:34:02.459 8300 FEE 435120 8400 6033486 2024-02-22 16:34:02.459 2024-02-22 16:34:02.459 74700 TIP 435120 13622 6033524 2024-02-22 16:35:52.436 2024-02-22 16:35:52.436 500 FEE 435046 12218 6033525 2024-02-22 16:35:52.436 2024-02-22 16:35:52.436 4500 TIP 435046 736 6033540 2024-02-22 16:36:21.582 2024-02-22 16:36:21.582 2100 FEE 432713 18453 6033541 2024-02-22 16:36:21.582 2024-02-22 16:36:21.582 18900 TIP 432713 10398 6033552 2024-02-22 16:36:59.52 2024-02-22 16:36:59.52 1000 FEE 435100 18517 6033553 2024-02-22 16:36:59.52 2024-02-22 16:36:59.52 9000 TIP 435100 5308 6033566 2024-02-22 16:37:55.457 2024-02-22 16:37:55.457 100000 FEE 435207 976 6033594 2024-02-22 16:42:41.608 2024-02-22 16:42:41.608 1000 FEE 435210 21047 6033620 2024-02-22 16:46:12.041 2024-02-22 16:46:12.041 1000 FEE 434642 17046 6033621 2024-02-22 16:46:12.041 2024-02-22 16:46:12.041 9000 TIP 434642 19458 6033624 2024-02-22 16:46:13.678 2024-02-22 16:46:13.678 1000 FEE 434642 658 6033625 2024-02-22 16:46:13.678 2024-02-22 16:46:13.678 9000 TIP 434642 12245 6033628 2024-02-22 16:46:14.939 2024-02-22 16:46:14.939 1000 FEE 434646 4126 6033629 2024-02-22 16:46:14.939 2024-02-22 16:46:14.939 9000 TIP 434646 19292 6033651 2024-02-22 16:48:23.17 2024-02-22 16:48:23.17 1000 FEE 435219 20143 6033663 2024-02-22 16:50:11.848 2024-02-22 16:50:11.848 3000 FEE 435220 15526 6033664 2024-02-22 16:50:11.848 2024-02-22 16:50:11.848 27000 TIP 435220 9 6033671 2024-02-22 16:50:54.484 2024-02-22 16:50:54.484 3000 FEE 435183 1273 6033672 2024-02-22 16:50:54.484 2024-02-22 16:50:54.484 27000 TIP 435183 4238 6033682 2024-02-22 16:52:58.421 2024-02-22 16:52:58.421 0 FEE 435217 18051 6033699 2024-02-22 16:54:55.901 2024-02-22 16:54:55.901 1000 FEE 435229 5069 6033703 2024-02-22 16:55:24.189 2024-02-22 16:55:24.189 1000 FEE 435232 19309 6033720 2024-02-22 16:56:08.425 2024-02-22 16:56:08.425 1000 FEE 435232 21374 6033721 2024-02-22 16:56:08.425 2024-02-22 16:56:08.425 9000 TIP 435232 9833 6033730 2024-02-22 16:56:17.584 2024-02-22 16:56:17.584 1000 FEE 435234 1428 6033731 2024-02-22 16:56:29.544 2024-02-22 16:56:29.544 1000 FEE 435235 2829 6033750 2024-02-22 16:57:01.941 2024-02-22 16:57:01.941 1000 FEE 434962 13544 6033751 2024-02-22 16:57:01.941 2024-02-22 16:57:01.941 9000 TIP 434962 17710 6033786 2024-02-22 16:59:31.962 2024-02-22 16:59:31.962 2100 FEE 435220 794 6033787 2024-02-22 16:59:31.962 2024-02-22 16:59:31.962 18900 TIP 435220 2056 6033818 2024-02-22 17:05:31.593 2024-02-22 17:05:31.593 3000 FEE 435235 11798 6033006 2024-02-22 15:58:04.128 2024-02-22 15:58:04.128 1000 STREAM 141924 21498 6033106 2024-02-22 16:03:04.174 2024-02-22 16:03:04.174 1000 STREAM 141924 3304 6033163 2024-02-22 16:06:04.193 2024-02-22 16:06:04.193 1000 STREAM 141924 6687 6033186 2024-02-22 16:08:04.203 2024-02-22 16:08:04.203 1000 STREAM 141924 5520 6033208 2024-02-22 16:10:04.268 2024-02-22 16:10:04.268 1000 STREAM 141924 1733 6033254 2024-02-22 16:14:04.257 2024-02-22 16:14:04.257 1000 STREAM 141924 15408 6037592 2024-02-22 22:43:29.014 2024-02-22 22:43:29.014 0 FEE 435619 17411 6037611 2024-02-22 22:43:44.63 2024-02-22 22:43:44.63 2100 FEE 435458 19622 6037612 2024-02-22 22:43:44.63 2024-02-22 22:43:44.63 18900 TIP 435458 20636 6037613 2024-02-22 22:43:45.157 2024-02-22 22:43:45.157 2100 FEE 435458 16505 6037614 2024-02-22 22:43:45.157 2024-02-22 22:43:45.157 18900 TIP 435458 7674 6037627 2024-02-22 22:43:54.695 2024-02-22 22:43:54.695 2100 FEE 435154 9356 6037628 2024-02-22 22:43:54.695 2024-02-22 22:43:54.695 18900 TIP 435154 19886 6037648 2024-02-22 22:44:29.056 2024-02-22 22:44:29.056 100 FEE 435596 6687 6037649 2024-02-22 22:44:29.056 2024-02-22 22:44:29.056 900 TIP 435596 21556 6037672 2024-02-22 22:45:48.509 2024-02-22 22:45:48.509 2100 FEE 435457 21451 6037673 2024-02-22 22:45:48.509 2024-02-22 22:45:48.509 18900 TIP 435457 14267 6037674 2024-02-22 22:45:48.974 2024-02-22 22:45:48.974 2100 FEE 435457 9331 6037675 2024-02-22 22:45:48.974 2024-02-22 22:45:48.974 18900 TIP 435457 6533 6037684 2024-02-22 22:45:57.326 2024-02-22 22:45:57.326 2100 FEE 435046 21430 6037685 2024-02-22 22:45:57.326 2024-02-22 22:45:57.326 18900 TIP 435046 17184 6037692 2024-02-22 22:46:14.108 2024-02-22 22:46:14.108 0 FEE 435619 17976 6037712 2024-02-22 22:47:09.423 2024-02-22 22:47:09.423 2100 FEE 434813 657 6037713 2024-02-22 22:47:09.423 2024-02-22 22:47:09.423 18900 TIP 434813 18828 6037730 2024-02-22 22:47:33.525 2024-02-22 22:47:33.525 2100 FEE 435327 21369 6037731 2024-02-22 22:47:33.525 2024-02-22 22:47:33.525 18900 TIP 435327 3656 6037765 2024-02-22 22:47:59.789 2024-02-22 22:47:59.789 2100 FEE 435544 12272 6037766 2024-02-22 22:47:59.789 2024-02-22 22:47:59.789 18900 TIP 435544 651 6037779 2024-02-22 22:48:01.381 2024-02-22 22:48:01.381 2100 FEE 435544 7553 6037780 2024-02-22 22:48:01.381 2024-02-22 22:48:01.381 18900 TIP 435544 1620 6037786 2024-02-22 22:48:04.498 2024-02-22 22:48:04.498 1000 FEE 435579 20436 6037787 2024-02-22 22:48:04.498 2024-02-22 22:48:04.498 9000 TIP 435579 1273 6037788 2024-02-22 22:48:04.657 2024-02-22 22:48:04.657 1000 FEE 435579 20701 6037789 2024-02-22 22:48:04.657 2024-02-22 22:48:04.657 9000 TIP 435579 956 6037806 2024-02-22 22:48:06.471 2024-02-22 22:48:06.471 2100 FEE 435544 18453 6037807 2024-02-22 22:48:06.471 2024-02-22 22:48:06.471 18900 TIP 435544 951 6037814 2024-02-22 22:48:07.367 2024-02-22 22:48:07.367 2500 FEE 435226 18454 6037815 2024-02-22 22:48:07.367 2024-02-22 22:48:07.367 22500 TIP 435226 12175 6037830 2024-02-22 22:48:29.934 2024-02-22 22:48:29.934 3300 FEE 435532 4313 6037831 2024-02-22 22:48:29.934 2024-02-22 22:48:29.934 29700 TIP 435532 684 6037836 2024-02-22 22:48:34.401 2024-02-22 22:48:34.401 3300 FEE 435458 19652 6037837 2024-02-22 22:48:34.401 2024-02-22 22:48:34.401 29700 TIP 435458 13987 6037845 2024-02-22 22:49:05.416 2024-02-22 22:49:05.416 1000 FEE 435626 16649 6037864 2024-02-22 22:50:42.611 2024-02-22 22:50:42.611 2100 FEE 432705 19303 6037865 2024-02-22 22:50:42.611 2024-02-22 22:50:42.611 18900 TIP 432705 19952 6037878 2024-02-22 22:52:07.48 2024-02-22 22:52:07.48 1000 FEE 435630 6191 6037888 2024-02-22 22:56:38.345 2024-02-22 22:56:38.345 1000 FEE 435359 20205 6037889 2024-02-22 22:56:38.345 2024-02-22 22:56:38.345 9000 TIP 435359 14545 6037896 2024-02-22 22:58:08.27 2024-02-22 22:58:08.27 1000 FEE 435636 1007 6037916 2024-02-22 23:00:54.449 2024-02-22 23:00:54.449 4000 FEE 435579 1505 6037917 2024-02-22 23:00:54.449 2024-02-22 23:00:54.449 36000 TIP 435579 14258 6037943 2024-02-22 23:08:16.565 2024-02-22 23:08:16.565 1600 FEE 435639 2963 6037944 2024-02-22 23:08:16.565 2024-02-22 23:08:16.565 14400 TIP 435639 17523 6037948 2024-02-22 23:09:50.703 2024-02-22 23:09:50.703 1000 POLL 435516 10934 6037982 2024-02-22 23:13:38.243 2024-02-22 23:13:38.243 500 FEE 435327 8870 6037983 2024-02-22 23:13:38.243 2024-02-22 23:13:38.243 4500 TIP 435327 1650 6037996 2024-02-22 23:18:02.135 2024-02-22 23:18:02.135 12800 FEE 435551 985 6037997 2024-02-22 23:18:02.135 2024-02-22 23:18:02.135 115200 TIP 435551 18271 6038010 2024-02-22 23:20:29.934 2024-02-22 23:20:29.934 8300 FEE 435639 21573 6038011 2024-02-22 23:20:29.934 2024-02-22 23:20:29.934 74700 TIP 435639 9482 6038017 2024-02-22 23:20:59.551 2024-02-22 23:20:59.551 8300 FEE 435488 6003 6038018 2024-02-22 23:20:59.551 2024-02-22 23:20:59.551 74700 TIP 435488 5017 6038027 2024-02-22 23:21:00.335 2024-02-22 23:21:00.335 8300 FEE 435488 19637 6038028 2024-02-22 23:21:00.335 2024-02-22 23:21:00.335 74700 TIP 435488 21547 6038031 2024-02-22 23:21:01.042 2024-02-22 23:21:01.042 8300 FEE 435488 16124 6038032 2024-02-22 23:21:01.042 2024-02-22 23:21:01.042 74700 TIP 435488 756 6038037 2024-02-22 23:21:01.532 2024-02-22 23:21:01.532 8300 FEE 435488 19981 6038038 2024-02-22 23:21:01.532 2024-02-22 23:21:01.532 74700 TIP 435488 20036 6038043 2024-02-22 23:21:01.842 2024-02-22 23:21:01.842 8300 FEE 435488 17109 6038044 2024-02-22 23:21:01.842 2024-02-22 23:21:01.842 74700 TIP 435488 4250 6038047 2024-02-22 23:21:02.167 2024-02-22 23:21:02.167 8300 FEE 435488 21239 6038048 2024-02-22 23:21:02.167 2024-02-22 23:21:02.167 74700 TIP 435488 21480 6038068 2024-02-22 23:21:03.385 2024-02-22 23:21:03.385 8300 FEE 435488 1745 6038069 2024-02-22 23:21:03.385 2024-02-22 23:21:03.385 74700 TIP 435488 9354 6038074 2024-02-22 23:21:03.716 2024-02-22 23:21:03.716 8300 FEE 435488 17517 6038075 2024-02-22 23:21:03.716 2024-02-22 23:21:03.716 74700 TIP 435488 16638 6038083 2024-02-22 23:21:19.786 2024-02-22 23:21:19.786 8300 FEE 435488 18274 6038084 2024-02-22 23:21:19.786 2024-02-22 23:21:19.786 74700 TIP 435488 11458 6038104 2024-02-22 23:21:55.561 2024-02-22 23:21:55.561 0 FEE 435649 866 6038108 2024-02-22 23:22:13.955 2024-02-22 23:22:13.955 1300 FEE 433376 1652 6038109 2024-02-22 23:22:13.955 2024-02-22 23:22:13.955 11700 TIP 433376 16176 6038112 2024-02-22 23:22:16.715 2024-02-22 23:22:16.715 1300 FEE 433376 4250 6038113 2024-02-22 23:22:16.715 2024-02-22 23:22:16.715 11700 TIP 433376 895 6038114 2024-02-22 23:22:35.181 2024-02-22 23:22:35.181 1000 FEE 435651 699 6038124 2024-02-22 23:23:51.709 2024-02-22 23:23:51.709 1000 FEE 435652 18310 6038146 2024-02-22 23:28:47.461 2024-02-22 23:28:47.461 10000 FEE 435659 13527 6038147 2024-02-22 23:28:59.433 2024-02-22 23:28:59.433 1000 FEE 435658 621 6038148 2024-02-22 23:28:59.433 2024-02-22 23:28:59.433 9000 TIP 435658 15488 6038158 2024-02-22 23:30:05.895 2024-02-22 23:30:05.895 8300 FEE 435657 960 6038159 2024-02-22 23:30:05.895 2024-02-22 23:30:05.895 74700 TIP 435657 21494 6038164 2024-02-22 23:30:06.301 2024-02-22 23:30:06.301 8300 FEE 435657 837 6038165 2024-02-22 23:30:06.301 2024-02-22 23:30:06.301 74700 TIP 435657 16867 6038217 2024-02-22 23:42:04.254 2024-02-22 23:42:04.254 100 FEE 435328 19638 6038218 2024-02-22 23:42:04.254 2024-02-22 23:42:04.254 900 TIP 435328 1726 6038224 2024-02-22 23:44:13.1 2024-02-22 23:44:13.1 100 FEE 435457 15560 6038225 2024-02-22 23:44:13.1 2024-02-22 23:44:13.1 900 TIP 435457 15045 6038250 2024-02-22 23:46:14.431 2024-02-22 23:46:14.431 100 FEE 435242 20182 6038251 2024-02-22 23:46:14.431 2024-02-22 23:46:14.431 900 TIP 435242 18403 6038262 2024-02-22 23:50:46.807 2024-02-22 23:50:46.807 3300 FEE 435497 2963 6038263 2024-02-22 23:50:46.807 2024-02-22 23:50:46.807 29700 TIP 435497 21614 6038274 2024-02-22 23:51:31.573 2024-02-22 23:51:31.573 2100 FEE 435505 13348 6033033 2024-02-22 15:58:46.83 2024-02-22 15:58:46.83 74700 TIP 434791 18815 6033037 2024-02-22 15:59:06.853 2024-02-22 15:59:06.853 90000 FEE 434498 20152 6033038 2024-02-22 15:59:06.853 2024-02-22 15:59:06.853 810000 TIP 434498 6653 6033039 2024-02-22 15:59:09.852 2024-02-22 15:59:09.852 2100 FEE 435026 16154 6033040 2024-02-22 15:59:09.852 2024-02-22 15:59:09.852 18900 TIP 435026 8059 6033060 2024-02-22 15:59:33.085 2024-02-22 15:59:33.085 1000 FEE 435143 18751 6033061 2024-02-22 15:59:36.498 2024-02-22 15:59:36.498 2100 FEE 434500 720 6033062 2024-02-22 15:59:36.498 2024-02-22 15:59:36.498 18900 TIP 434500 11298 6033067 2024-02-22 15:59:46.562 2024-02-22 15:59:46.562 90000 FEE 434440 10273 6033068 2024-02-22 15:59:46.562 2024-02-22 15:59:46.562 810000 TIP 434440 738 6033081 2024-02-22 16:00:23.856 2024-02-22 16:00:23.856 2100 FEE 434897 3396 6033082 2024-02-22 16:00:23.856 2024-02-22 16:00:23.856 18900 TIP 434897 2711 6033093 2024-02-22 16:02:21.718 2024-02-22 16:02:21.718 100 FEE 435142 18368 6033094 2024-02-22 16:02:21.718 2024-02-22 16:02:21.718 900 TIP 435142 18008 6033095 2024-02-22 16:02:21.896 2024-02-22 16:02:21.896 900 FEE 435142 18409 6033096 2024-02-22 16:02:21.896 2024-02-22 16:02:21.896 8100 TIP 435142 21389 6033120 2024-02-22 16:03:51.239 2024-02-22 16:03:51.239 9000 FEE 434934 14280 6033121 2024-02-22 16:03:51.239 2024-02-22 16:03:51.239 81000 TIP 434934 5752 6033128 2024-02-22 16:04:22.455 2024-02-22 16:04:22.455 100 FEE 434994 21329 6033129 2024-02-22 16:04:22.455 2024-02-22 16:04:22.455 900 TIP 434994 21591 6033146 2024-02-22 16:04:45.033 2024-02-22 16:04:45.033 100 FEE 435046 19512 6033147 2024-02-22 16:04:45.033 2024-02-22 16:04:45.033 900 TIP 435046 3377 6033161 2024-02-22 16:06:03.93 2024-02-22 16:06:03.93 3000 FEE 435135 16543 6033162 2024-02-22 16:06:03.93 2024-02-22 16:06:03.93 27000 TIP 435135 678 6033246 2024-02-22 16:11:51.138 2024-02-22 16:11:51.138 2100 FEE 435100 19929 6033247 2024-02-22 16:11:51.138 2024-02-22 16:11:51.138 18900 TIP 435100 10981 6033271 2024-02-22 16:16:18.361 2024-02-22 16:16:18.361 1000 FEE 435163 649 6033287 2024-02-22 16:17:29.105 2024-02-22 16:17:29.105 800 FEE 435151 20381 6033288 2024-02-22 16:17:29.105 2024-02-22 16:17:29.105 7200 TIP 435151 679 6033290 2024-02-22 16:18:19.332 2024-02-22 16:18:19.332 1000 FEE 435169 18040 6033316 2024-02-22 16:20:25.348 2024-02-22 16:20:25.348 900 FEE 435168 2042 6033317 2024-02-22 16:20:25.348 2024-02-22 16:20:25.348 8100 TIP 435168 21588 6033324 2024-02-22 16:20:50.334 2024-02-22 16:20:50.334 300 FEE 435174 15484 6033325 2024-02-22 16:20:50.334 2024-02-22 16:20:50.334 2700 TIP 435174 19381 6033344 2024-02-22 16:23:11.659 2024-02-22 16:23:11.659 3400 FEE 435149 17148 6033345 2024-02-22 16:23:11.659 2024-02-22 16:23:11.659 30600 TIP 435149 18177 6033348 2024-02-22 16:23:48.194 2024-02-22 16:23:48.194 1100 FEE 434975 19668 6033349 2024-02-22 16:23:48.194 2024-02-22 16:23:48.194 9900 TIP 434975 21104 6033350 2024-02-22 16:23:58.818 2024-02-22 16:23:58.818 1000 FEE 435182 5497 6033369 2024-02-22 16:25:45.36 2024-02-22 16:25:45.36 27000 FEE 435030 2022 6033370 2024-02-22 16:25:45.36 2024-02-22 16:25:45.36 243000 TIP 435030 803 6033371 2024-02-22 16:25:45.876 2024-02-22 16:25:45.876 1000 FEE 435030 4633 6033372 2024-02-22 16:25:45.876 2024-02-22 16:25:45.876 9000 TIP 435030 1465 6033396 2024-02-22 16:28:48.851 2024-02-22 16:28:48.851 0 FEE 435190 9796 6033407 2024-02-22 16:28:57.4 2024-02-22 16:28:57.4 1000 FEE 434997 17275 6033408 2024-02-22 16:28:57.4 2024-02-22 16:28:57.4 9000 TIP 434997 18208 6033441 2024-02-22 16:30:27.428 2024-02-22 16:30:27.428 100 FEE 434988 19126 6033442 2024-02-22 16:30:27.428 2024-02-22 16:30:27.428 900 TIP 434988 21498 6033465 2024-02-22 16:32:43.793 2024-02-22 16:32:43.793 8300 FEE 435046 19189 6033466 2024-02-22 16:32:43.793 2024-02-22 16:32:43.793 74700 TIP 435046 20981 6033477 2024-02-22 16:32:45.519 2024-02-22 16:32:45.519 8300 FEE 435030 15560 6033478 2024-02-22 16:32:45.519 2024-02-22 16:32:45.519 74700 TIP 435030 9982 6033495 2024-02-22 16:34:29.536 2024-02-22 16:34:29.536 500 FEE 435086 16532 6033496 2024-02-22 16:34:29.536 2024-02-22 16:34:29.536 4500 TIP 435086 21048 6033499 2024-02-22 16:34:32.35 2024-02-22 16:34:32.35 100000 FEE 435199 1512 6033532 2024-02-22 16:35:58.35 2024-02-22 16:35:58.35 2300 FEE 435193 19909 6033533 2024-02-22 16:35:58.35 2024-02-22 16:35:58.35 20700 TIP 435193 19531 6033538 2024-02-22 16:35:59.001 2024-02-22 16:35:59.001 10000 FEE 435201 17415 6033543 2024-02-22 16:36:37.709 2024-02-22 16:36:37.709 500 FEE 434791 19105 6033544 2024-02-22 16:36:37.709 2024-02-22 16:36:37.709 4500 TIP 434791 19494 6033545 2024-02-22 16:36:45.937 2024-02-22 16:36:45.937 500 FEE 434934 16542 6033546 2024-02-22 16:36:45.937 2024-02-22 16:36:45.937 4500 TIP 434934 18774 6033550 2024-02-22 16:36:58.957 2024-02-22 16:36:58.957 1000 FEE 435100 17976 6033551 2024-02-22 16:36:58.957 2024-02-22 16:36:58.957 9000 TIP 435100 21503 6033554 2024-02-22 16:37:02.989 2024-02-22 16:37:02.989 1000 FEE 434583 20669 6033555 2024-02-22 16:37:02.989 2024-02-22 16:37:02.989 9000 TIP 434583 18543 6033579 2024-02-22 16:38:57.996 2024-02-22 16:38:57.996 1000 FEE 435208 19282 6033599 2024-02-22 16:44:55.372 2024-02-22 16:44:55.372 1000 FEE 435213 20301 6033609 2024-02-22 16:45:59.641 2024-02-22 16:45:59.641 1000 FEE 435046 11760 6033610 2024-02-22 16:45:59.641 2024-02-22 16:45:59.641 9000 TIP 435046 822 6033638 2024-02-22 16:46:28.549 2024-02-22 16:46:28.549 3000 FEE 435213 19821 6033639 2024-02-22 16:46:28.549 2024-02-22 16:46:28.549 27000 TIP 435213 2042 6033659 2024-02-22 16:49:40.957 2024-02-22 16:49:40.957 2100 FEE 435135 20120 6033660 2024-02-22 16:49:40.957 2024-02-22 16:49:40.957 18900 TIP 435135 15337 6033669 2024-02-22 16:50:42.977 2024-02-22 16:50:42.977 27000 FEE 435154 21247 6033670 2024-02-22 16:50:42.977 2024-02-22 16:50:42.977 243000 TIP 435154 21103 6033679 2024-02-22 16:52:12.182 2024-02-22 16:52:12.182 30000 FEE 435151 21573 6033680 2024-02-22 16:52:12.182 2024-02-22 16:52:12.182 270000 TIP 435151 21455 6033691 2024-02-22 16:53:57.546 2024-02-22 16:53:57.546 27000 FEE 435115 632 6033692 2024-02-22 16:53:57.546 2024-02-22 16:53:57.546 243000 TIP 435115 16154 6033708 2024-02-22 16:56:03.816 2024-02-22 16:56:03.816 1000 FEE 435221 6202 6033709 2024-02-22 16:56:03.816 2024-02-22 16:56:03.816 9000 TIP 435221 12346 6033722 2024-02-22 16:56:08.781 2024-02-22 16:56:08.781 1000 FEE 435232 7425 6033723 2024-02-22 16:56:08.781 2024-02-22 16:56:08.781 9000 TIP 435232 5387 6033744 2024-02-22 16:56:59.299 2024-02-22 16:56:59.299 1000 FEE 435136 18291 6033745 2024-02-22 16:56:59.299 2024-02-22 16:56:59.299 9000 TIP 435136 19981 6033746 2024-02-22 16:57:00.55 2024-02-22 16:57:00.55 1000 FEE 435154 4292 6033747 2024-02-22 16:57:00.55 2024-02-22 16:57:00.55 9000 TIP 435154 9183 6033752 2024-02-22 16:57:02.129 2024-02-22 16:57:02.129 1000 FEE 434962 3706 6033753 2024-02-22 16:57:02.129 2024-02-22 16:57:02.129 9000 TIP 434962 20450 6033757 2024-02-22 16:57:03.628 2024-02-22 16:57:03.628 1000 FEE 434958 20660 6033758 2024-02-22 16:57:03.628 2024-02-22 16:57:03.628 9000 TIP 434958 17116 6033761 2024-02-22 16:57:05.326 2024-02-22 16:57:05.326 1000 FEE 434975 1620 6033762 2024-02-22 16:57:05.326 2024-02-22 16:57:05.326 9000 TIP 434975 20616 6033794 2024-02-22 17:01:13.955 2024-02-22 17:01:13.955 100000 FEE 435242 5825 6033071 2024-02-22 16:00:04.145 2024-02-22 16:00:04.145 1000 STREAM 141924 19148 6033268 2024-02-22 16:16:04.283 2024-02-22 16:16:04.283 1000 STREAM 141924 18068 6033289 2024-02-22 16:18:04.325 2024-02-22 16:18:04.325 1000 STREAM 141924 4084 6033338 2024-02-22 16:22:04.328 2024-02-22 16:22:04.328 1000 STREAM 141924 4102 6033356 2024-02-22 16:24:04.388 2024-02-22 16:24:04.388 1000 STREAM 141924 13527 6033591 2024-02-22 16:41:02.523 2024-02-22 16:41:02.523 1000 STREAM 141924 15075 6034646 2024-02-22 17:45:02.574 2024-02-22 17:45:02.574 1000 STREAM 141924 4314 6034664 2024-02-22 17:47:02.585 2024-02-22 17:47:02.585 1000 STREAM 141924 12609 6034753 2024-02-22 17:50:02.631 2024-02-22 17:50:02.631 1000 STREAM 141924 14295 6034783 2024-02-22 17:51:02.618 2024-02-22 17:51:02.618 1000 STREAM 141924 4035 6034794 2024-02-22 17:53:02.629 2024-02-22 17:53:02.629 1000 STREAM 141924 20744 6034804 2024-02-22 17:54:02.868 2024-02-22 17:54:02.868 1000 STREAM 141924 900 6034816 2024-02-22 17:55:02.876 2024-02-22 17:55:02.876 1000 STREAM 141924 18500 6034867 2024-02-22 17:58:02.884 2024-02-22 17:58:02.884 1000 STREAM 141924 21051 6034958 2024-02-22 18:02:03.003 2024-02-22 18:02:03.003 1000 STREAM 141924 17116 6034963 2024-02-22 18:03:03.013 2024-02-22 18:03:03.013 1000 STREAM 141924 16717 6035002 2024-02-22 18:05:03.035 2024-02-22 18:05:03.035 1000 STREAM 141924 15732 6035048 2024-02-22 18:06:03.04 2024-02-22 18:06:03.04 1000 STREAM 141924 21116 6035053 2024-02-22 18:07:03.057 2024-02-22 18:07:03.057 1000 STREAM 141924 1320 6035064 2024-02-22 18:08:03.064 2024-02-22 18:08:03.064 1000 STREAM 141924 722 6035068 2024-02-22 18:09:03.096 2024-02-22 18:09:03.096 1000 STREAM 141924 15243 6035077 2024-02-22 18:10:03.104 2024-02-22 18:10:03.104 1000 STREAM 141924 9367 6035100 2024-02-22 18:11:03.135 2024-02-22 18:11:03.135 1000 STREAM 141924 20775 6035155 2024-02-22 18:13:03.153 2024-02-22 18:13:03.153 1000 STREAM 141924 8287 6035166 2024-02-22 18:14:03.152 2024-02-22 18:14:03.152 1000 STREAM 141924 19863 6035170 2024-02-22 18:15:03.173 2024-02-22 18:15:03.173 1000 STREAM 141924 12188 6035191 2024-02-22 18:20:03.226 2024-02-22 18:20:03.226 1000 STREAM 141924 2709 6035206 2024-02-22 18:21:03.226 2024-02-22 18:21:03.226 1000 STREAM 141924 11153 6035238 2024-02-22 18:24:03.267 2024-02-22 18:24:03.267 1000 STREAM 141924 21463 6035265 2024-02-22 18:25:03.27 2024-02-22 18:25:03.27 1000 STREAM 141924 15196 6035276 2024-02-22 18:26:03.276 2024-02-22 18:26:03.276 1000 STREAM 141924 20555 6035322 2024-02-22 18:30:03.33 2024-02-22 18:30:03.33 1000 STREAM 141924 12265 6035328 2024-02-22 18:31:03.34 2024-02-22 18:31:03.34 1000 STREAM 141924 1836 6035404 2024-02-22 18:35:03.35 2024-02-22 18:35:03.35 1000 STREAM 141924 19735 6037655 2024-02-22 22:44:40.895 2024-02-22 22:44:40.895 8100 TIP 435580 20023 6037656 2024-02-22 22:44:41.438 2024-02-22 22:44:41.438 9000 FEE 435580 15858 6037657 2024-02-22 22:44:41.438 2024-02-22 22:44:41.438 81000 TIP 435580 21395 6037700 2024-02-22 22:46:53.051 2024-02-22 22:46:53.051 1000 FEE 435583 21208 6037701 2024-02-22 22:46:53.051 2024-02-22 22:46:53.051 9000 TIP 435583 20812 6037716 2024-02-22 22:47:25.254 2024-02-22 22:47:25.254 1600 FEE 435378 11298 6037717 2024-02-22 22:47:25.254 2024-02-22 22:47:25.254 14400 TIP 435378 16948 6037724 2024-02-22 22:47:32.494 2024-02-22 22:47:32.494 2100 FEE 435327 21051 6037725 2024-02-22 22:47:32.494 2024-02-22 22:47:32.494 18900 TIP 435327 19992 6037742 2024-02-22 22:47:40.899 2024-02-22 22:47:40.899 2100 FEE 435030 1890 6037743 2024-02-22 22:47:40.899 2024-02-22 22:47:40.899 18900 TIP 435030 9183 6037762 2024-02-22 22:47:58.728 2024-02-22 22:47:58.728 1000 FEE 435625 19151 6037771 2024-02-22 22:48:00.493 2024-02-22 22:48:00.493 2100 FEE 435544 20852 6037772 2024-02-22 22:48:00.493 2024-02-22 22:48:00.493 18900 TIP 435544 19524 6037800 2024-02-22 22:48:05.866 2024-02-22 22:48:05.866 2100 FEE 435544 14381 6037801 2024-02-22 22:48:05.866 2024-02-22 22:48:05.866 18900 TIP 435544 8648 6037810 2024-02-22 22:48:06.882 2024-02-22 22:48:06.882 2100 FEE 435544 12911 6037811 2024-02-22 22:48:06.882 2024-02-22 22:48:06.882 18900 TIP 435544 13622 6037818 2024-02-22 22:48:10.019 2024-02-22 22:48:10.019 3300 FEE 435551 19987 6037819 2024-02-22 22:48:10.019 2024-02-22 22:48:10.019 29700 TIP 435551 15351 6037820 2024-02-22 22:48:10.512 2024-02-22 22:48:10.512 3300 FEE 435551 7376 6037821 2024-02-22 22:48:10.512 2024-02-22 22:48:10.512 29700 TIP 435551 19016 6037834 2024-02-22 22:48:33.514 2024-02-22 22:48:33.514 3300 FEE 435458 20511 6037835 2024-02-22 22:48:33.514 2024-02-22 22:48:33.514 29700 TIP 435458 6430 6037925 2024-02-22 23:03:45.394 2024-02-22 23:03:45.394 1000 FEE 435640 7818 6037932 2024-02-22 23:05:27.577 2024-02-22 23:05:27.577 2100 FEE 435596 20023 6033085 2024-02-22 16:00:49.432 2024-02-22 16:00:49.432 3000 FEE 435127 20310 6033086 2024-02-22 16:00:49.432 2024-02-22 16:00:49.432 27000 TIP 435127 9351 6033130 2024-02-22 16:04:22.626 2024-02-22 16:04:22.626 100 FEE 434994 18177 6033131 2024-02-22 16:04:22.626 2024-02-22 16:04:22.626 900 TIP 434994 7587 6033156 2024-02-22 16:05:35.116 2024-02-22 16:05:35.116 2100 FEE 435075 1002 6033157 2024-02-22 16:05:35.116 2024-02-22 16:05:35.116 18900 TIP 435075 20841 6033164 2024-02-22 16:06:04.488 2024-02-22 16:06:04.488 27000 FEE 435135 6573 6033165 2024-02-22 16:06:04.488 2024-02-22 16:06:04.488 243000 TIP 435135 19843 6033177 2024-02-22 16:07:43.78 2024-02-22 16:07:43.78 1000 FEE 434559 848 6033178 2024-02-22 16:07:43.78 2024-02-22 16:07:43.78 9000 TIP 434559 16042 6033201 2024-02-22 16:09:22.166 2024-02-22 16:09:22.166 2100 FEE 434939 13216 6033202 2024-02-22 16:09:22.166 2024-02-22 16:09:22.166 18900 TIP 434939 19147 6033203 2024-02-22 16:09:46.966 2024-02-22 16:09:46.966 100000 FEE 435154 1803 6033209 2024-02-22 16:10:07.112 2024-02-22 16:10:07.112 7100 FEE 435150 21614 6033210 2024-02-22 16:10:07.112 2024-02-22 16:10:07.112 63900 TIP 435150 6687 6033220 2024-02-22 16:11:03.313 2024-02-22 16:11:03.313 400 FEE 435146 712 6033221 2024-02-22 16:11:03.313 2024-02-22 16:11:03.313 3600 TIP 435146 17124 6033234 2024-02-22 16:11:07.026 2024-02-22 16:11:07.026 2100 FEE 434139 19938 6033235 2024-02-22 16:11:07.026 2024-02-22 16:11:07.026 18900 TIP 434139 9342 6033269 2024-02-22 16:16:09.221 2024-02-22 16:16:09.221 30000 FEE 435014 21180 6033270 2024-02-22 16:16:09.221 2024-02-22 16:16:09.221 270000 TIP 435014 628 6033281 2024-02-22 16:17:00.836 2024-02-22 16:17:00.836 0 FEE 435163 21482 6033310 2024-02-22 16:20:23.179 2024-02-22 16:20:23.179 900 FEE 435151 20701 6033311 2024-02-22 16:20:23.179 2024-02-22 16:20:23.179 8100 TIP 435151 617 6033352 2024-02-22 16:24:00.331 2024-02-22 16:24:00.331 100 FEE 435154 16717 6033353 2024-02-22 16:24:00.331 2024-02-22 16:24:00.331 900 TIP 435154 14247 6033386 2024-02-22 16:28:16.473 2024-02-22 16:28:16.473 8300 FEE 435018 2329 6033387 2024-02-22 16:28:16.473 2024-02-22 16:28:16.473 74700 TIP 435018 21400 6033394 2024-02-22 16:28:40.271 2024-02-22 16:28:40.271 1000 FEE 435191 4521 6033397 2024-02-22 16:28:51.477 2024-02-22 16:28:51.477 3300 FEE 435183 19284 6033398 2024-02-22 16:28:51.477 2024-02-22 16:28:51.477 29700 TIP 435183 2583 6033399 2024-02-22 16:28:55.027 2024-02-22 16:28:55.027 1000 FEE 434997 19117 6033400 2024-02-22 16:28:55.027 2024-02-22 16:28:55.027 9000 TIP 434997 9171 6033443 2024-02-22 16:30:27.549 2024-02-22 16:30:27.549 900 FEE 434988 17953 6033444 2024-02-22 16:30:27.549 2024-02-22 16:30:27.549 8100 TIP 434988 17147 6033450 2024-02-22 16:31:14.937 2024-02-22 16:31:14.937 2100 FEE 434994 4035 6033223 2024-02-22 16:11:03.472 2024-02-22 16:11:03.472 3600 TIP 435146 18473 6033224 2024-02-22 16:11:03.634 2024-02-22 16:11:03.634 400 FEE 435146 21562 6033225 2024-02-22 16:11:03.634 2024-02-22 16:11:03.634 3600 TIP 435146 861 6033228 2024-02-22 16:11:06.491 2024-02-22 16:11:06.491 2100 FEE 434139 20439 6033229 2024-02-22 16:11:06.491 2024-02-22 16:11:06.491 18900 TIP 434139 6602 6033240 2024-02-22 16:11:11.32 2024-02-22 16:11:11.32 2100 FEE 434139 14202 6033241 2024-02-22 16:11:11.32 2024-02-22 16:11:11.32 18900 TIP 434139 13177 6033260 2024-02-22 16:15:05.247 2024-02-22 16:15:05.247 1000 FEE 435159 1221 6033263 2024-02-22 16:15:13.786 2024-02-22 16:15:13.786 1000 FEE 435160 749 6033276 2024-02-22 16:16:53.184 2024-02-22 16:16:53.184 3000 FEE 435155 19378 6033277 2024-02-22 16:16:53.184 2024-02-22 16:16:53.184 27000 TIP 435155 13544 6033363 2024-02-22 16:25:28.524 2024-02-22 16:25:28.524 1000 FEE 435115 21469 6033364 2024-02-22 16:25:28.524 2024-02-22 16:25:28.524 9000 TIP 435115 11145 6033428 2024-02-22 16:29:25.687 2024-02-22 16:29:25.687 1000 FEE 435019 19138 6033429 2024-02-22 16:29:25.687 2024-02-22 16:29:25.687 9000 TIP 435019 4973 6033440 2024-02-22 16:30:14.926 2024-02-22 16:30:14.926 10000 DONT_LIKE_THIS 434991 8926 6033473 2024-02-22 16:32:45.232 2024-02-22 16:32:45.232 8300 FEE 435030 21393 6033474 2024-02-22 16:32:45.232 2024-02-22 16:32:45.232 74700 TIP 435030 1983 6033493 2024-02-22 16:34:23.343 2024-02-22 16:34:23.343 2100 FEE 435014 17522 6033494 2024-02-22 16:34:23.343 2024-02-22 16:34:23.343 18900 TIP 435014 1064 6033506 2024-02-22 16:34:36.153 2024-02-22 16:34:36.153 500 FEE 435030 19352 6033507 2024-02-22 16:34:36.153 2024-02-22 16:34:36.153 4500 TIP 435030 1130 6033510 2024-02-22 16:34:39.143 2024-02-22 16:34:39.143 2100 FEE 435154 21014 6033511 2024-02-22 16:34:39.143 2024-02-22 16:34:39.143 18900 TIP 435154 11670 6033518 2024-02-22 16:35:43.584 2024-02-22 16:35:43.584 2100 FEE 435073 2620 6033519 2024-02-22 16:35:43.584 2024-02-22 16:35:43.584 18900 TIP 435073 17415 6033560 2024-02-22 16:37:32.32 2024-02-22 16:37:32.32 3000 FEE 435200 20624 6033561 2024-02-22 16:37:32.32 2024-02-22 16:37:32.32 27000 TIP 435200 14080 6033569 2024-02-22 16:38:03.778 2024-02-22 16:38:03.778 3300 FEE 435195 17316 6033570 2024-02-22 16:38:03.778 2024-02-22 16:38:03.778 29700 TIP 435195 5578 6033571 2024-02-22 16:38:08.084 2024-02-22 16:38:08.084 10000 FEE 434791 5961 6033572 2024-02-22 16:38:08.084 2024-02-22 16:38:08.084 90000 TIP 434791 8535 6033596 2024-02-22 16:44:01.578 2024-02-22 16:44:01.578 1000 FEE 435211 21437 6033604 2024-02-22 16:45:26.497 2024-02-22 16:45:26.497 27000 FEE 435209 17693 6033605 2024-02-22 16:45:26.497 2024-02-22 16:45:26.497 243000 TIP 435209 12930 6033613 2024-02-22 16:46:00.707 2024-02-22 16:46:00.707 1000 FEE 435046 979 6033614 2024-02-22 16:46:00.707 2024-02-22 16:46:00.707 9000 TIP 435046 16912 6033618 2024-02-22 16:46:12 2024-02-22 16:46:12 1000 FEE 434642 15719 6033619 2024-02-22 16:46:12 2024-02-22 16:46:12 9000 TIP 434642 2832 6033634 2024-02-22 16:46:16.849 2024-02-22 16:46:16.849 1000 FEE 434646 780 6033635 2024-02-22 16:46:16.849 2024-02-22 16:46:16.849 9000 TIP 434646 19292 6033645 2024-02-22 16:47:02.781 2024-02-22 16:47:02.781 2100 FEE 435136 18658 6033646 2024-02-22 16:47:02.781 2024-02-22 16:47:02.781 18900 TIP 435136 18892 6033654 2024-02-22 16:48:47.026 2024-02-22 16:48:47.026 0 FEE 435217 20490 6033673 2024-02-22 16:50:58.193 2024-02-22 16:50:58.193 2100 FEE 435217 18311 6033674 2024-02-22 16:50:58.193 2024-02-22 16:50:58.193 18900 TIP 435217 18330 6033676 2024-02-22 16:51:25.581 2024-02-22 16:51:25.581 1000 FEE 435222 19381 6033681 2024-02-22 16:52:55.905 2024-02-22 16:52:55.905 1000 FEE 435225 910 6033687 2024-02-22 16:53:50.533 2024-02-22 16:53:50.533 1000 FEE 435030 16830 6033688 2024-02-22 16:53:50.533 2024-02-22 16:53:50.533 9000 TIP 435030 21469 6033718 2024-02-22 16:56:07.723 2024-02-22 16:56:07.723 1000 FEE 435232 18635 6033719 2024-02-22 16:56:07.723 2024-02-22 16:56:07.723 9000 TIP 435232 18271 6033736 2024-02-22 16:56:48.741 2024-02-22 16:56:48.741 1000 FEE 435018 16679 6033737 2024-02-22 16:56:48.741 2024-02-22 16:56:48.741 9000 TIP 435018 3544 6033811 2024-02-22 17:05:11.669 2024-02-22 17:05:11.669 1000 FEE 435247 17064 6033824 2024-02-22 17:05:45.681 2024-02-22 17:05:45.681 3000 FEE 435234 21344 6033825 2024-02-22 17:05:45.681 2024-02-22 17:05:45.681 27000 TIP 435234 19569 6033833 2024-02-22 17:06:30.898 2024-02-22 17:06:30.898 3000 FEE 435246 12291 6033834 2024-02-22 17:06:30.898 2024-02-22 17:06:30.898 27000 TIP 435246 21491 6033856 2024-02-22 17:07:19.109 2024-02-22 17:07:19.109 4000 FEE 435026 16679 6033857 2024-02-22 17:07:19.109 2024-02-22 17:07:19.109 36000 TIP 435026 13046 6033858 2024-02-22 17:07:19.43 2024-02-22 17:07:19.43 4000 FEE 435100 16329 6033859 2024-02-22 17:07:19.43 2024-02-22 17:07:19.43 36000 TIP 435100 8505 6033860 2024-02-22 17:07:21.918 2024-02-22 17:07:21.918 4000 FEE 435120 16097 6033861 2024-02-22 17:07:21.918 2024-02-22 17:07:21.918 36000 TIP 435120 1836 6033911 2024-02-22 17:12:58.665 2024-02-22 17:12:58.665 1000 FEE 435256 2757 6033913 2024-02-22 17:13:15.109 2024-02-22 17:13:15.109 2300 FEE 435241 712 6033914 2024-02-22 17:13:15.109 2024-02-22 17:13:15.109 20700 TIP 435241 17050 6033915 2024-02-22 17:13:15.241 2024-02-22 17:13:15.241 2300 FEE 435241 20481 6033916 2024-02-22 17:13:15.241 2024-02-22 17:13:15.241 20700 TIP 435241 12959 6033927 2024-02-22 17:13:16.556 2024-02-22 17:13:16.556 2300 FEE 435241 20597 6033928 2024-02-22 17:13:16.556 2024-02-22 17:13:16.556 20700 TIP 435241 9183 6033935 2024-02-22 17:13:17.115 2024-02-22 17:13:17.115 2300 FEE 435241 17148 6033936 2024-02-22 17:13:17.115 2024-02-22 17:13:17.115 20700 TIP 435241 876 6033945 2024-02-22 17:13:39.887 2024-02-22 17:13:39.887 2100 FEE 435241 12951 6033946 2024-02-22 17:13:39.887 2024-02-22 17:13:39.887 18900 TIP 435241 19156 6033960 2024-02-22 17:14:32.053 2024-02-22 17:14:32.053 10000 FEE 435242 616 6033961 2024-02-22 17:14:32.053 2024-02-22 17:14:32.053 90000 TIP 435242 20381 6033964 2024-02-22 17:14:32.471 2024-02-22 17:14:32.471 1000 FEE 435259 20326 6033983 2024-02-22 17:17:01.197 2024-02-22 17:17:01.197 2300 FEE 435242 16348 6033984 2024-02-22 17:17:01.197 2024-02-22 17:17:01.197 20700 TIP 435242 10359 6033989 2024-02-22 17:17:01.829 2024-02-22 17:17:01.829 2300 FEE 435242 9843 6033990 2024-02-22 17:17:01.829 2024-02-22 17:17:01.829 20700 TIP 435242 11776 6034060 2024-02-22 17:17:15.376 2024-02-22 17:17:15.376 2300 FEE 435231 2620 6034061 2024-02-22 17:17:15.376 2024-02-22 17:17:15.376 20700 TIP 435231 21573 6034062 2024-02-22 17:17:15.547 2024-02-22 17:17:15.547 2300 FEE 435231 12708 6034063 2024-02-22 17:17:15.547 2024-02-22 17:17:15.547 20700 TIP 435231 21451 6034066 2024-02-22 17:17:15.868 2024-02-22 17:17:15.868 2300 FEE 435231 14489 6034067 2024-02-22 17:17:15.868 2024-02-22 17:17:15.868 20700 TIP 435231 8498 6034078 2024-02-22 17:17:16.887 2024-02-22 17:17:16.887 2300 FEE 435231 6749 6034079 2024-02-22 17:17:16.887 2024-02-22 17:17:16.887 20700 TIP 435231 1603 6034092 2024-02-22 17:17:31.782 2024-02-22 17:17:31.782 100000 FEE 435261 20897 6034093 2024-02-22 17:17:58.114 2024-02-22 17:17:58.114 1100 FEE 435100 7587 6034094 2024-02-22 17:17:58.114 2024-02-22 17:17:58.114 9900 TIP 435100 18368 6034100 2024-02-22 17:19:44.909 2024-02-22 17:19:44.909 1000 FEE 435265 5597 6034104 2024-02-22 17:20:48.956 2024-02-22 17:20:48.956 100000 DONT_LIKE_THIS 435248 11789 6034108 2024-02-22 17:21:57.304 2024-02-22 17:21:57.304 100 FEE 435231 10719 6034109 2024-02-22 17:21:57.304 2024-02-22 17:21:57.304 900 TIP 435231 10484 6034110 2024-02-22 17:21:57.453 2024-02-22 17:21:57.453 900 FEE 435231 19005 6034111 2024-02-22 17:21:57.453 2024-02-22 17:21:57.453 8100 TIP 435231 749 6034133 2024-02-22 17:24:05.062 2024-02-22 17:24:05.062 3200 FEE 435253 20257 6034134 2024-02-22 17:24:05.062 2024-02-22 17:24:05.062 28800 TIP 435253 16485 6034140 2024-02-22 17:24:57.807 2024-02-22 17:24:57.807 1600 FEE 435231 13921 6034141 2024-02-22 17:24:57.807 2024-02-22 17:24:57.807 14400 TIP 435231 21287 6034156 2024-02-22 17:25:36.594 2024-02-22 17:25:36.594 1000 FEE 435260 16276 6033266 2024-02-22 16:15:28.821 2024-02-22 16:15:28.821 14400 TIP 435136 13076 6033267 2024-02-22 16:15:31.163 2024-02-22 16:15:31.163 1000 FEE 435162 16250 6033272 2024-02-22 16:16:22.149 2024-02-22 16:16:22.149 1000 FEE 435164 8284 6033312 2024-02-22 16:20:23.946 2024-02-22 16:20:23.946 9000 FEE 435151 21292 6033313 2024-02-22 16:20:23.946 2024-02-22 16:20:23.946 81000 TIP 435151 2513 6033331 2024-02-22 16:21:38.05 2024-02-22 16:21:38.05 1000 FEE 435178 20073 6033332 2024-02-22 16:21:40.944 2024-02-22 16:21:40.944 100 FEE 434651 17172 6033333 2024-02-22 16:21:40.944 2024-02-22 16:21:40.944 900 TIP 434651 18220 6033339 2024-02-22 16:22:07.368 2024-02-22 16:22:07.368 1000 FEE 435179 854 6033340 2024-02-22 16:22:19.356 2024-02-22 16:22:19.356 1000 FEE 434680 19117 6033341 2024-02-22 16:22:19.356 2024-02-22 16:22:19.356 9000 TIP 434680 8841 6033360 2024-02-22 16:25:23.515 2024-02-22 16:25:23.515 100000 FEE 435184 5085 6033382 2024-02-22 16:27:40.934 2024-02-22 16:27:40.934 1000 FEE 435186 7966 6033385 2024-02-22 16:28:14.759 2024-02-22 16:28:14.759 1000 FEE 435188 3506 6033388 2024-02-22 16:28:34.239 2024-02-22 16:28:34.239 1000 FEE 435189 21556 6033426 2024-02-22 16:29:16.541 2024-02-22 16:29:16.541 1000 FEE 435019 17411 6033427 2024-02-22 16:29:16.541 2024-02-22 16:29:16.541 9000 TIP 435019 21103 6033432 2024-02-22 16:29:34.752 2024-02-22 16:29:34.752 1000 FEE 435193 1567 6033434 2024-02-22 16:30:06.827 2024-02-22 16:30:06.827 100 FEE 434991 780 6033435 2024-02-22 16:30:06.827 2024-02-22 16:30:06.827 900 TIP 434991 20087 6033447 2024-02-22 16:30:52.225 2024-02-22 16:30:52.225 1000 FEE 435194 20717 6033467 2024-02-22 16:32:44.27 2024-02-22 16:32:44.27 8300 FEE 435046 1122 6033468 2024-02-22 16:32:44.27 2024-02-22 16:32:44.27 74700 TIP 435046 16353 6033483 2024-02-22 16:33:50.502 2024-02-22 16:33:50.502 30000 FEE 432977 9758 6033484 2024-02-22 16:33:50.502 2024-02-22 16:33:50.502 270000 TIP 432977 925 6033502 2024-02-22 16:34:34.555 2024-02-22 16:34:34.555 3000 FEE 435189 1769 6033503 2024-02-22 16:34:34.555 2024-02-22 16:34:34.555 27000 TIP 435189 19335 6033512 2024-02-22 16:34:50.966 2024-02-22 16:34:50.966 500 FEE 435046 795 6033513 2024-02-22 16:34:50.966 2024-02-22 16:34:50.966 4500 TIP 435046 1802 6033515 2024-02-22 16:35:03.651 2024-02-22 16:35:03.651 2100 FEE 435120 685 6033516 2024-02-22 16:35:03.651 2024-02-22 16:35:03.651 18900 TIP 435120 20906 6033522 2024-02-22 16:35:51.835 2024-02-22 16:35:51.835 500 FEE 435046 20090 6033523 2024-02-22 16:35:51.835 2024-02-22 16:35:51.835 4500 TIP 435046 7125 6033547 2024-02-22 16:36:47.422 2024-02-22 16:36:47.422 1000 FEE 435203 7389 6033592 2024-02-22 16:41:03.696 2024-02-22 16:41:03.696 1000 FEE 435209 19929 6033603 2024-02-22 16:45:26.204 2024-02-22 16:45:26.204 1000 FEE 435214 5195 6033606 2024-02-22 16:45:48.516 2024-02-22 16:45:48.516 1000 FEE 435215 4323 6033658 2024-02-22 16:49:30.678 2024-02-22 16:49:30.678 1000 FEE 435220 10611 6033684 2024-02-22 16:53:11.547 2024-02-22 16:53:11.547 21000 FEE 435226 19501 6033695 2024-02-22 16:54:00.488 2024-02-22 16:54:00.488 1000 FEE 435228 1585 6033702 2024-02-22 16:55:08.777 2024-02-22 16:55:08.777 100000 FEE 435231 11862 6033712 2024-02-22 16:56:04.795 2024-02-22 16:56:04.795 1000 FEE 435221 2460 6033713 2024-02-22 16:56:04.795 2024-02-22 16:56:04.795 9000 TIP 435221 19906 6033767 2024-02-22 16:57:15.854 2024-02-22 16:57:15.854 1000 FEE 435236 777 6033781 2024-02-22 16:59:13.199 2024-02-22 16:59:13.199 1000 FEE 435238 8985 6033782 2024-02-22 16:59:13.33 2024-02-22 16:59:13.33 3000 FEE 435136 16816 6033783 2024-02-22 16:59:13.33 2024-02-22 16:59:13.33 27000 TIP 435136 1122 6033788 2024-02-22 16:59:34.295 2024-02-22 16:59:34.295 100 FEE 435217 2039 6033789 2024-02-22 16:59:34.295 2024-02-22 16:59:34.295 900 TIP 435217 20157 6033799 2024-02-22 17:02:57.151 2024-02-22 17:02:57.151 1000 FEE 435244 1534 6033801 2024-02-22 17:03:05.359 2024-02-22 17:03:05.359 4000 FEE 435243 9367 6033802 2024-02-22 17:03:05.359 2024-02-22 17:03:05.359 36000 TIP 435243 20871 6033803 2024-02-22 17:03:43.839 2024-02-22 17:03:43.839 1000 FEE 435245 20120 6033806 2024-02-22 17:04:03.421 2024-02-22 17:04:03.421 700 FEE 434713 20500 6033807 2024-02-22 17:04:03.421 2024-02-22 17:04:03.421 6300 TIP 434713 21395 6033812 2024-02-22 17:05:18.083 2024-02-22 17:05:18.083 3000 FEE 435230 649 6033813 2024-02-22 17:05:18.083 2024-02-22 17:05:18.083 27000 TIP 435230 3360 6033830 2024-02-22 17:06:17.974 2024-02-22 17:06:17.974 100 FEE 435169 19158 6033831 2024-02-22 17:06:17.974 2024-02-22 17:06:17.974 900 TIP 435169 18005 6033837 2024-02-22 17:06:32.118 2024-02-22 17:06:32.118 27000 FEE 435246 20811 6033838 2024-02-22 17:06:32.118 2024-02-22 17:06:32.118 243000 TIP 435246 909 6033871 2024-02-22 17:11:13.968 2024-02-22 17:11:13.968 10000 FEE 433208 5590 6033872 2024-02-22 17:11:13.968 2024-02-22 17:11:13.968 90000 TIP 433208 919 6033878 2024-02-22 17:11:37.755 2024-02-22 17:11:37.755 1000 FEE 434440 21571 6033879 2024-02-22 17:11:37.755 2024-02-22 17:11:37.755 9000 TIP 434440 632 6033903 2024-02-22 17:12:08.621 2024-02-22 17:12:08.621 1000 FEE 435254 20881 6033904 2024-02-22 17:12:08.621 2024-02-22 17:12:08.621 9000 TIP 435254 16769 6033909 2024-02-22 17:12:09.707 2024-02-22 17:12:09.707 1000 FEE 435254 16341 6033910 2024-02-22 17:12:09.707 2024-02-22 17:12:09.707 9000 TIP 435254 1483 6033933 2024-02-22 17:13:16.974 2024-02-22 17:13:16.974 2300 FEE 435241 18956 6033934 2024-02-22 17:13:16.974 2024-02-22 17:13:16.974 20700 TIP 435241 1836 6033937 2024-02-22 17:13:17.232 2024-02-22 17:13:17.232 2300 FEE 435241 1814 6033938 2024-02-22 17:13:17.232 2024-02-22 17:13:17.232 20700 TIP 435241 16847 6033939 2024-02-22 17:13:17.367 2024-02-22 17:13:17.367 2300 FEE 435241 17535 6033940 2024-02-22 17:13:17.367 2024-02-22 17:13:17.367 20700 TIP 435241 11515 6033953 2024-02-22 17:14:01.246 2024-02-22 17:14:01.246 100 FEE 435046 21472 6033954 2024-02-22 17:14:01.246 2024-02-22 17:14:01.246 900 TIP 435046 21541 6034002 2024-02-22 17:17:06.243 2024-02-22 17:17:06.243 4600 FEE 435231 21145 6034003 2024-02-22 17:17:06.243 2024-02-22 17:17:06.243 41400 TIP 435231 4395 6034012 2024-02-22 17:17:07.653 2024-02-22 17:17:07.653 2300 FEE 435231 3729 6034013 2024-02-22 17:17:07.653 2024-02-22 17:17:07.653 20700 TIP 435231 17693 6034036 2024-02-22 17:17:12.946 2024-02-22 17:17:12.946 2300 FEE 435231 12188 6034037 2024-02-22 17:17:12.946 2024-02-22 17:17:12.946 20700 TIP 435231 986 6034040 2024-02-22 17:17:13.41 2024-02-22 17:17:13.41 2300 FEE 435231 8045 6034041 2024-02-22 17:17:13.41 2024-02-22 17:17:13.41 20700 TIP 435231 19435 6034042 2024-02-22 17:17:13.431 2024-02-22 17:17:13.431 2300 FEE 435231 3642 6034043 2024-02-22 17:17:13.431 2024-02-22 17:17:13.431 20700 TIP 435231 19403 6034048 2024-02-22 17:17:13.905 2024-02-22 17:17:13.905 2300 FEE 435231 2537 6034049 2024-02-22 17:17:13.905 2024-02-22 17:17:13.905 20700 TIP 435231 2000 6034052 2024-02-22 17:17:14.863 2024-02-22 17:17:14.863 2300 FEE 435231 21263 6034053 2024-02-22 17:17:14.863 2024-02-22 17:17:14.863 20700 TIP 435231 15161 6034056 2024-02-22 17:17:15.05 2024-02-22 17:17:15.05 2300 FEE 435231 19394 6034057 2024-02-22 17:17:15.05 2024-02-22 17:17:15.05 20700 TIP 435231 9275 6034113 2024-02-22 17:22:06.105 2024-02-22 17:22:06.105 9000 FEE 435231 1737 6034114 2024-02-22 17:22:06.105 2024-02-22 17:22:06.105 81000 TIP 435231 18751 6034151 2024-02-22 17:25:22.372 2024-02-22 17:25:22.372 1000 FEE 435257 1817 6034152 2024-02-22 17:25:22.372 2024-02-22 17:25:22.372 9000 TIP 435257 1806 6034155 2024-02-22 17:25:35.543 2024-02-22 17:25:35.543 1000 FEE 435272 19484 6034169 2024-02-22 17:26:36.696 2024-02-22 17:26:36.696 1000 FEE 435275 14651 6034190 2024-02-22 17:26:39.672 2024-02-22 17:26:39.672 100000 FEE 435276 4126 6034191 2024-02-22 17:26:39.792 2024-02-22 17:26:39.792 2300 FEE 429559 20162 6034192 2024-02-22 17:26:39.792 2024-02-22 17:26:39.792 20700 TIP 429559 18040 6034207 2024-02-22 17:26:46.169 2024-02-22 17:26:46.169 2300 FEE 433844 21216 6034208 2024-02-22 17:26:46.169 2024-02-22 17:26:46.169 20700 TIP 433844 21416 6034209 2024-02-22 17:26:46.401 2024-02-22 17:26:46.401 2300 FEE 433844 5637 6034210 2024-02-22 17:26:46.401 2024-02-22 17:26:46.401 20700 TIP 433844 20409 6033273 2024-02-22 16:16:29.277 2024-02-22 16:16:29.277 800 FEE 435142 16042 6033274 2024-02-22 16:16:29.277 2024-02-22 16:16:29.277 7200 TIP 435142 5444 6033294 2024-02-22 16:19:25.861 2024-02-22 16:19:25.861 9000 FEE 434958 9341 6033295 2024-02-22 16:19:25.861 2024-02-22 16:19:25.861 81000 TIP 434958 16867 6033301 2024-02-22 16:19:53.867 2024-02-22 16:19:53.867 1000 FEE 435173 17976 6033304 2024-02-22 16:19:56.342 2024-02-22 16:19:56.342 1000 FEE 435174 1310 6033308 2024-02-22 16:20:23.021 2024-02-22 16:20:23.021 100 FEE 435151 9529 6033309 2024-02-22 16:20:23.021 2024-02-22 16:20:23.021 900 TIP 435151 15049 6033318 2024-02-22 16:20:26.22 2024-02-22 16:20:26.22 1000 FEE 435158 21624 6033319 2024-02-22 16:20:26.22 2024-02-22 16:20:26.22 9000 TIP 435158 18664 6033328 2024-02-22 16:21:20.979 2024-02-22 16:21:20.979 27000 FEE 435152 16276 6033329 2024-02-22 16:21:20.979 2024-02-22 16:21:20.979 243000 TIP 435152 18500 6033354 2024-02-22 16:24:00.481 2024-02-22 16:24:00.481 900 FEE 435154 1006 6033355 2024-02-22 16:24:00.481 2024-02-22 16:24:00.481 8100 TIP 435154 19126 6033377 2024-02-22 16:25:50.665 2024-02-22 16:25:50.665 1000 FEE 435002 2780 6033378 2024-02-22 16:25:50.665 2024-02-22 16:25:50.665 9000 TIP 435002 8326 6033395 2024-02-22 16:28:45.744 2024-02-22 16:28:45.744 1000 FEE 435192 20337 6033417 2024-02-22 16:28:59.744 2024-02-22 16:28:59.744 1000 FEE 434997 13177 6033418 2024-02-22 16:28:59.744 2024-02-22 16:28:59.744 9000 TIP 434997 21371 6033424 2024-02-22 16:29:15.862 2024-02-22 16:29:15.862 1000 FEE 435019 18291 6033425 2024-02-22 16:29:15.862 2024-02-22 16:29:15.862 9000 TIP 435019 19938 6033436 2024-02-22 16:30:07.006 2024-02-22 16:30:07.006 900 FEE 434991 9246 6033437 2024-02-22 16:30:07.006 2024-02-22 16:30:07.006 8100 TIP 434991 16149 6033445 2024-02-22 16:30:31.441 2024-02-22 16:30:31.441 9000 FEE 434988 2335 6033446 2024-02-22 16:30:31.441 2024-02-22 16:30:31.441 81000 TIP 434988 19848 6033456 2024-02-22 16:32:05.999 2024-02-22 16:32:05.999 1000 FEE 435197 12122 6033459 2024-02-22 16:32:18.206 2024-02-22 16:32:18.206 4000 FEE 435196 13921 6033460 2024-02-22 16:32:18.206 2024-02-22 16:32:18.206 36000 TIP 435196 1114 6033469 2024-02-22 16:32:44.408 2024-02-22 16:32:44.408 8300 FEE 435046 21614 6033470 2024-02-22 16:32:44.408 2024-02-22 16:32:44.408 74700 TIP 435046 14015 6033491 2024-02-22 16:34:21.735 2024-02-22 16:34:21.735 27000 FEE 435192 17522 6033492 2024-02-22 16:34:21.735 2024-02-22 16:34:21.735 243000 TIP 435192 14515 6033504 2024-02-22 16:34:35.758 2024-02-22 16:34:35.758 500 FEE 435030 19375 6033505 2024-02-22 16:34:35.758 2024-02-22 16:34:35.758 4500 TIP 435030 1105 6033508 2024-02-22 16:34:38.625 2024-02-22 16:34:38.625 27000 FEE 435189 18618 6033509 2024-02-22 16:34:38.625 2024-02-22 16:34:38.625 243000 TIP 435189 18640 6033517 2024-02-22 16:35:37.648 2024-02-22 16:35:37.648 1000 FEE 435200 9863 6033520 2024-02-22 16:35:51.612 2024-02-22 16:35:51.612 500 FEE 435046 756 6033521 2024-02-22 16:35:51.612 2024-02-22 16:35:51.612 4500 TIP 435046 946 6033530 2024-02-22 16:35:58.201 2024-02-22 16:35:58.201 2300 FEE 435193 8326 6033531 2024-02-22 16:35:58.201 2024-02-22 16:35:58.201 20700 TIP 435193 14663 6033536 2024-02-22 16:35:58.597 2024-02-22 16:35:58.597 2300 FEE 435193 1985 6033537 2024-02-22 16:35:58.597 2024-02-22 16:35:58.597 20700 TIP 435193 20781 6033556 2024-02-22 16:37:03.137 2024-02-22 16:37:03.137 1000 FEE 434583 1495 6033557 2024-02-22 16:37:03.137 2024-02-22 16:37:03.137 9000 TIP 434583 2390 6033562 2024-02-22 16:37:33.144 2024-02-22 16:37:33.144 27000 FEE 435200 4076 6033563 2024-02-22 16:37:33.144 2024-02-22 16:37:33.144 243000 TIP 435200 2188 6033565 2024-02-22 16:37:46.065 2024-02-22 16:37:46.065 1000 FEE 435206 18476 6033575 2024-02-22 16:38:35.182 2024-02-22 16:38:35.182 1000 FEE 435046 1713 6033576 2024-02-22 16:38:35.182 2024-02-22 16:38:35.182 9000 TIP 435046 17944 6033577 2024-02-22 16:38:35.722 2024-02-22 16:38:35.722 9000 FEE 435046 6361 6033578 2024-02-22 16:38:35.722 2024-02-22 16:38:35.722 81000 TIP 435046 5806 6033583 2024-02-22 16:39:26.647 2024-02-22 16:39:26.647 1000 FEE 435199 8570 6033584 2024-02-22 16:39:26.647 2024-02-22 16:39:26.647 9000 TIP 435199 976 6033589 2024-02-22 16:40:31.076 2024-02-22 16:40:31.076 10000 FEE 435030 859 6033590 2024-02-22 16:40:31.076 2024-02-22 16:40:31.076 90000 TIP 435030 19034 6033601 2024-02-22 16:45:25.207 2024-02-22 16:45:25.207 3000 FEE 435209 15148 6033602 2024-02-22 16:45:25.207 2024-02-22 16:45:25.207 27000 TIP 435209 18138 6033611 2024-02-22 16:46:00.204 2024-02-22 16:46:00.204 1000 FEE 435046 902 6033612 2024-02-22 16:46:00.204 2024-02-22 16:46:00.204 9000 TIP 435046 18500 6033649 2024-02-22 16:47:54.337 2024-02-22 16:47:54.337 1000 FEE 435218 5725 6033652 2024-02-22 16:48:40.413 2024-02-22 16:48:40.413 7100 FEE 435018 5085 6033653 2024-02-22 16:48:40.413 2024-02-22 16:48:40.413 63900 TIP 435018 10280 6033655 2024-02-22 16:48:58.663 2024-02-22 16:48:58.663 3000 FEE 435214 5779 6033656 2024-02-22 16:48:58.663 2024-02-22 16:48:58.663 27000 TIP 435214 17522 6033665 2024-02-22 16:50:12.298 2024-02-22 16:50:12.298 27000 FEE 435220 1007 6033666 2024-02-22 16:50:12.298 2024-02-22 16:50:12.298 243000 TIP 435220 18635 6033667 2024-02-22 16:50:40.812 2024-02-22 16:50:40.812 3000 FEE 435154 17237 6033668 2024-02-22 16:50:40.812 2024-02-22 16:50:40.812 27000 TIP 435154 17710 6033685 2024-02-22 16:53:21.219 2024-02-22 16:53:21.219 0 FEE 435217 5497 6033689 2024-02-22 16:53:55.947 2024-02-22 16:53:55.947 3000 FEE 435115 4378 6033690 2024-02-22 16:53:55.947 2024-02-22 16:53:55.947 27000 TIP 435115 798 6033693 2024-02-22 16:53:58.281 2024-02-22 16:53:58.281 10000 FEE 434835 2046 6033694 2024-02-22 16:53:58.281 2024-02-22 16:53:58.281 90000 TIP 434835 5003 6033697 2024-02-22 16:54:38.255 2024-02-22 16:54:38.255 1000 FEE 435044 21401 6033698 2024-02-22 16:54:38.255 2024-02-22 16:54:38.255 9000 TIP 435044 18945 6033710 2024-02-22 16:56:04.499 2024-02-22 16:56:04.499 1000 FEE 435221 16970 6033711 2024-02-22 16:56:04.499 2024-02-22 16:56:04.499 9000 TIP 435221 631 6033724 2024-02-22 16:56:09.465 2024-02-22 16:56:09.465 1000 FEE 435232 14795 6033725 2024-02-22 16:56:09.465 2024-02-22 16:56:09.465 9000 TIP 435232 2056 6033732 2024-02-22 16:56:34.424 2024-02-22 16:56:34.424 15000 FEE 435220 19852 6033733 2024-02-22 16:56:34.424 2024-02-22 16:56:34.424 135000 TIP 435220 8726 6033738 2024-02-22 16:56:52.462 2024-02-22 16:56:52.462 2000 FEE 434791 2537 6033739 2024-02-22 16:56:52.462 2024-02-22 16:56:52.462 18000 TIP 434791 20481 6033740 2024-02-22 16:56:57.916 2024-02-22 16:56:57.916 2000 FEE 435115 5728 6033741 2024-02-22 16:56:57.916 2024-02-22 16:56:57.916 18000 TIP 435115 928 6033784 2024-02-22 16:59:15.499 2024-02-22 16:59:15.499 1000 FEE 435239 6310 6033785 2024-02-22 16:59:31.366 2024-02-22 16:59:31.366 1000 FEE 435240 4177 6033792 2024-02-22 17:00:09.695 2024-02-22 17:00:09.695 0 FEE 435240 21599 6033820 2024-02-22 17:05:33.139 2024-02-22 17:05:33.139 3000 FEE 435232 2639 6033280 2024-02-22 16:17:00.252 2024-02-22 16:17:00.252 1000 FEE 435166 20969 6033293 2024-02-22 16:19:13.031 2024-02-22 16:19:13.031 1000 FEE 435171 11515 6033296 2024-02-22 16:19:35.427 2024-02-22 16:19:35.427 9000 FEE 435018 9418 6033297 2024-02-22 16:19:35.427 2024-02-22 16:19:35.427 81000 TIP 435018 19198 6033314 2024-02-22 16:20:25.212 2024-02-22 16:20:25.212 100 FEE 435168 14990 6033315 2024-02-22 16:20:25.212 2024-02-22 16:20:25.212 900 TIP 435168 5128 6033322 2024-02-22 16:20:47.137 2024-02-22 16:20:47.137 3000 FEE 435152 1751 6033323 2024-02-22 16:20:47.137 2024-02-22 16:20:47.137 27000 TIP 435152 9177 6033327 2024-02-22 16:21:14.912 2024-02-22 16:21:14.912 1000 FEE 435176 16177 6033336 2024-02-22 16:21:52.101 2024-02-22 16:21:52.101 100 FEE 434765 19087 6033337 2024-02-22 16:21:52.101 2024-02-22 16:21:52.101 900 TIP 434765 20841 6033346 2024-02-22 16:23:40.896 2024-02-22 16:23:40.896 1700 FEE 435174 20080 6033347 2024-02-22 16:23:40.896 2024-02-22 16:23:40.896 15300 TIP 435174 19037 6033365 2024-02-22 16:25:31.292 2024-02-22 16:25:31.292 1000 FEE 435065 4378 6033366 2024-02-22 16:25:31.292 2024-02-22 16:25:31.292 9000 TIP 435065 5809 6033375 2024-02-22 16:25:50.372 2024-02-22 16:25:50.372 1000 FEE 435018 18816 6033376 2024-02-22 16:25:50.372 2024-02-22 16:25:50.372 9000 TIP 435018 17237 6033379 2024-02-22 16:25:52.69 2024-02-22 16:25:52.69 1000 FEE 435185 9367 6033383 2024-02-22 16:27:49.739 2024-02-22 16:27:49.739 1000 FEE 435187 20647 6033405 2024-02-22 16:28:57.232 2024-02-22 16:28:57.232 1000 FEE 434997 2748 6033406 2024-02-22 16:28:57.232 2024-02-22 16:28:57.232 9000 TIP 434997 11942 6033438 2024-02-22 16:30:07.227 2024-02-22 16:30:07.227 9000 FEE 434991 2710 6033439 2024-02-22 16:30:07.227 2024-02-22 16:30:07.227 81000 TIP 434991 16532 6033449 2024-02-22 16:31:05.467 2024-02-22 16:31:05.467 1000 FEE 435195 18714 6033452 2024-02-22 16:31:34.573 2024-02-22 16:31:34.573 1000 FEE 435196 15526 6033471 2024-02-22 16:32:45.149 2024-02-22 16:32:45.149 8300 FEE 435030 2056 6033472 2024-02-22 16:32:45.149 2024-02-22 16:32:45.149 74700 TIP 435030 14015 6033475 2024-02-22 16:32:45.363 2024-02-22 16:32:45.363 8300 FEE 435030 4322 6033476 2024-02-22 16:32:45.363 2024-02-22 16:32:45.363 74700 TIP 435030 3656 6033489 2024-02-22 16:34:19.103 2024-02-22 16:34:19.103 3000 FEE 435192 7389 6033490 2024-02-22 16:34:19.103 2024-02-22 16:34:19.103 27000 TIP 435192 8916 6033526 2024-02-22 16:35:52.769 2024-02-22 16:35:52.769 500 FEE 435046 1003 6033527 2024-02-22 16:35:52.769 2024-02-22 16:35:52.769 4500 TIP 435046 20267 6033542 2024-02-22 16:36:23.041 2024-02-22 16:36:23.041 1000 FEE 435202 17727 6033567 2024-02-22 16:38:01.747 2024-02-22 16:38:01.747 0 FEE 435206 20594 6033580 2024-02-22 16:39:03.75 2024-02-22 16:39:03.75 3300 FEE 435162 866 6033581 2024-02-22 16:39:03.75 2024-02-22 16:39:03.75 29700 TIP 435162 5646 6033585 2024-02-22 16:39:26.703 2024-02-22 16:39:26.703 1000 FEE 435199 14280 6033586 2024-02-22 16:39:26.703 2024-02-22 16:39:26.703 9000 TIP 435199 21201 6033587 2024-02-22 16:39:59.158 2024-02-22 16:39:59.158 0 FEE 435207 19235 6033598 2024-02-22 16:44:32.172 2024-02-22 16:44:32.172 1000 FEE 435212 21591 6033607 2024-02-22 16:45:59.02 2024-02-22 16:45:59.02 1000 FEE 435046 16212 6033608 2024-02-22 16:45:59.02 2024-02-22 16:45:59.02 9000 TIP 435046 10398 6033636 2024-02-22 16:46:17.355 2024-02-22 16:46:17.355 1000 FEE 434646 16351 6033637 2024-02-22 16:46:17.355 2024-02-22 16:46:17.355 9000 TIP 434646 13599 6033640 2024-02-22 16:46:29.249 2024-02-22 16:46:29.249 27000 FEE 435213 1552 6033641 2024-02-22 16:46:29.249 2024-02-22 16:46:29.249 243000 TIP 435213 10979 6033642 2024-02-22 16:46:40.17 2024-02-22 16:46:40.17 10000 FEE 421398 10342 6033643 2024-02-22 16:46:40.17 2024-02-22 16:46:40.17 90000 TIP 421398 667 6033704 2024-02-22 16:56:00.224 2024-02-22 16:56:00.224 1000 FEE 435233 12289 6033706 2024-02-22 16:56:03.122 2024-02-22 16:56:03.122 1000 FEE 435221 626 6033707 2024-02-22 16:56:03.122 2024-02-22 16:56:03.122 9000 TIP 435221 20891 6033726 2024-02-22 16:56:15.627 2024-02-22 16:56:15.627 1000 FEE 435002 10638 6033727 2024-02-22 16:56:15.627 2024-02-22 16:56:15.627 9000 TIP 435002 18517 6033734 2024-02-22 16:56:48.361 2024-02-22 16:56:48.361 1000 FEE 435018 10094 6033735 2024-02-22 16:56:48.361 2024-02-22 16:56:48.361 9000 TIP 435018 21157 6033359 2024-02-22 16:25:02.478 2024-02-22 16:25:02.478 1000 STREAM 141924 9200 6033381 2024-02-22 16:27:02.474 2024-02-22 16:27:02.474 1000 STREAM 141924 21064 6033419 2024-02-22 16:29:02.7 2024-02-22 16:29:02.7 1000 STREAM 141924 13169 6033448 2024-02-22 16:31:02.509 2024-02-22 16:31:02.509 1000 STREAM 141924 20563 6033455 2024-02-22 16:32:02.522 2024-02-22 16:32:02.522 1000 STREAM 141924 18500 6033481 2024-02-22 16:33:02.53 2024-02-22 16:33:02.53 1000 STREAM 141924 14278 6033514 2024-02-22 16:35:02.531 2024-02-22 16:35:02.531 1000 STREAM 141924 6419 6033539 2024-02-22 16:36:02.531 2024-02-22 16:36:02.531 1000 STREAM 141924 8400 6033597 2024-02-22 16:44:02.606 2024-02-22 16:44:02.606 1000 STREAM 141924 1389 6033644 2024-02-22 16:47:02.636 2024-02-22 16:47:02.636 1000 STREAM 141924 21222 6033650 2024-02-22 16:48:02.633 2024-02-22 16:48:02.633 1000 STREAM 141924 19463 6033657 2024-02-22 16:49:02.651 2024-02-22 16:49:02.651 1000 STREAM 141924 20681 6033683 2024-02-22 16:53:02.684 2024-02-22 16:53:02.684 1000 STREAM 141924 20979 6033701 2024-02-22 16:55:02.695 2024-02-22 16:55:02.695 1000 STREAM 141924 21612 6033754 2024-02-22 16:57:02.703 2024-02-22 16:57:02.703 1000 STREAM 141924 2741 6033779 2024-02-22 16:59:02.715 2024-02-22 16:59:02.715 1000 STREAM 141924 18368 6033793 2024-02-22 17:01:02.716 2024-02-22 17:01:02.716 1000 STREAM 141924 19557 6033798 2024-02-22 17:02:02.718 2024-02-22 17:02:02.718 1000 STREAM 141924 717 6033800 2024-02-22 17:03:02.73 2024-02-22 17:03:02.73 1000 STREAM 141924 14122 6033805 2024-02-22 17:04:02.737 2024-02-22 17:04:02.737 1000 STREAM 141924 20599 6033810 2024-02-22 17:05:02.79 2024-02-22 17:05:02.79 1000 STREAM 141924 15521 6033829 2024-02-22 17:06:02.78 2024-02-22 17:06:02.78 1000 STREAM 141924 14990 6033867 2024-02-22 17:09:02.808 2024-02-22 17:09:02.808 1000 STREAM 141924 20045 6033868 2024-02-22 17:10:02.818 2024-02-22 17:10:02.818 1000 STREAM 141924 21303 6033870 2024-02-22 17:11:02.828 2024-02-22 17:11:02.828 1000 STREAM 141924 10554 6033974 2024-02-22 17:16:02.873 2024-02-22 17:16:02.873 1000 STREAM 141924 21624 6034095 2024-02-22 17:18:02.879 2024-02-22 17:18:02.879 1000 STREAM 141924 16004 6034097 2024-02-22 17:19:02.891 2024-02-22 17:19:02.891 1000 STREAM 141924 5069 6034123 2024-02-22 17:23:02.927 2024-02-22 17:23:02.927 1000 STREAM 141924 18828 6034162 2024-02-22 17:26:02.939 2024-02-22 17:26:02.939 1000 STREAM 141924 20704 6034377 2024-02-22 17:30:02.976 2024-02-22 17:30:02.976 1000 STREAM 141924 20156 6034438 2024-02-22 17:31:02.977 2024-02-22 17:31:02.977 1000 STREAM 141924 965 6034499 2024-02-22 17:33:02.994 2024-02-22 17:33:02.994 1000 STREAM 141924 12609 6037739 2024-02-22 22:47:37.197 2024-02-22 22:47:37.197 18900 TIP 435217 7510 6037744 2024-02-22 22:47:41.377 2024-02-22 22:47:41.377 2100 FEE 435030 20646 6037745 2024-02-22 22:47:41.377 2024-02-22 22:47:41.377 18900 TIP 435030 20599 6037750 2024-02-22 22:47:42.306 2024-02-22 22:47:42.306 2100 FEE 435030 18016 6037751 2024-02-22 22:47:42.306 2024-02-22 22:47:42.306 18900 TIP 435030 1803 6037767 2024-02-22 22:48:00.007 2024-02-22 22:48:00.007 2100 FEE 435544 807 6037768 2024-02-22 22:48:00.007 2024-02-22 22:48:00.007 18900 TIP 435544 2327 6037777 2024-02-22 22:48:01.14 2024-02-22 22:48:01.14 2100 FEE 435544 19158 6037778 2024-02-22 22:48:01.14 2024-02-22 22:48:01.14 18900 TIP 435544 14990 6037784 2024-02-22 22:48:03.289 2024-02-22 22:48:03.289 2500 FEE 435226 18932 6037785 2024-02-22 22:48:03.289 2024-02-22 22:48:03.289 22500 TIP 435226 18396 6037792 2024-02-22 22:48:05.007 2024-02-22 22:48:05.007 1000 FEE 435579 19292 6037793 2024-02-22 22:48:05.007 2024-02-22 22:48:05.007 9000 TIP 435579 12976 6037822 2024-02-22 22:48:11.134 2024-02-22 22:48:11.134 3300 FEE 435551 15226 6037823 2024-02-22 22:48:11.134 2024-02-22 22:48:11.134 29700 TIP 435551 1261 6037828 2024-02-22 22:48:29.339 2024-02-22 22:48:29.339 3300 FEE 435532 11590 6037829 2024-02-22 22:48:29.339 2024-02-22 22:48:29.339 29700 TIP 435532 4079 6037839 2024-02-22 22:48:54.033 2024-02-22 22:48:54.033 2100 FEE 434807 5637 6037840 2024-02-22 22:48:54.033 2024-02-22 22:48:54.033 18900 TIP 434807 10056 6037846 2024-02-22 22:49:19.554 2024-02-22 22:49:19.554 2100 FEE 435007 671 6037847 2024-02-22 22:49:19.554 2024-02-22 22:49:19.554 18900 TIP 435007 20015 6037851 2024-02-22 22:50:06.318 2024-02-22 22:50:06.318 3300 FEE 435468 16052 6037852 2024-02-22 22:50:06.318 2024-02-22 22:50:06.318 29700 TIP 435468 19689 6037890 2024-02-22 22:56:41.484 2024-02-22 22:56:41.484 10000 FEE 435634 19309 6037899 2024-02-22 22:59:06.926 2024-02-22 22:59:06.926 2100 FEE 435488 8168 6037900 2024-02-22 22:59:06.926 2024-02-22 22:59:06.926 18900 TIP 435488 18402 6037923 2024-02-22 23:02:20.595 2024-02-22 23:02:20.595 100000 FEE 435639 19690 6037936 2024-02-22 23:05:35.046 2024-02-22 23:05:35.046 2100 FEE 435579 16284 6037937 2024-02-22 23:05:35.046 2024-02-22 23:05:35.046 18900 TIP 435579 10586 6037950 2024-02-22 23:10:20.753 2024-02-22 23:10:20.753 5000 FEE 435643 624 6037954 2024-02-22 23:11:34.373 2024-02-22 23:11:34.373 1000 FEE 435646 7960 6038008 2024-02-22 23:20:15.594 2024-02-22 23:20:15.594 2100 FEE 435577 18452 6038009 2024-02-22 23:20:15.594 2024-02-22 23:20:15.594 18900 TIP 435577 1647 6038012 2024-02-22 23:20:30.344 2024-02-22 23:20:30.344 16600 FEE 435639 20059 6038013 2024-02-22 23:20:30.344 2024-02-22 23:20:30.344 149400 TIP 435639 11145 6038014 2024-02-22 23:20:35.488 2024-02-22 23:20:35.488 1000 FEE 435649 11417 6038019 2024-02-22 23:20:59.704 2024-02-22 23:20:59.704 16600 FEE 435488 15588 6038020 2024-02-22 23:20:59.704 2024-02-22 23:20:59.704 149400 TIP 435488 6148 6038057 2024-02-22 23:21:02.668 2024-02-22 23:21:02.668 8300 FEE 435488 20157 6038058 2024-02-22 23:21:02.668 2024-02-22 23:21:02.668 74700 TIP 435488 20811 6038070 2024-02-22 23:21:03.48 2024-02-22 23:21:03.48 8300 FEE 435488 13042 6038071 2024-02-22 23:21:03.48 2024-02-22 23:21:03.48 74700 TIP 435488 13544 6038106 2024-02-22 23:22:12.867 2024-02-22 23:22:12.867 1300 FEE 433376 11328 6038107 2024-02-22 23:22:12.867 2024-02-22 23:22:12.867 11700 TIP 433376 20470 6038115 2024-02-22 23:22:49.624 2024-02-22 23:22:49.624 10000 FEE 435135 21051 6038116 2024-02-22 23:22:49.624 2024-02-22 23:22:49.624 90000 TIP 435135 9476 6038132 2024-02-22 23:25:10.2 2024-02-22 23:25:10.2 1000 FEE 435654 1620 6038133 2024-02-22 23:25:16.388 2024-02-22 23:25:16.388 0 FEE 435654 9833 6038149 2024-02-22 23:28:59.733 2024-02-22 23:28:59.733 1000 FEE 435658 2327 6038150 2024-02-22 23:28:59.733 2024-02-22 23:28:59.733 9000 TIP 435658 21575 6038160 2024-02-22 23:30:06.029 2024-02-22 23:30:06.029 8300 FEE 435657 19235 6038161 2024-02-22 23:30:06.029 2024-02-22 23:30:06.029 74700 TIP 435657 9820 6038176 2024-02-22 23:30:07.656 2024-02-22 23:30:07.656 8300 FEE 435657 14657 6038177 2024-02-22 23:30:07.656 2024-02-22 23:30:07.656 74700 TIP 435657 20479 6038184 2024-02-22 23:30:08.704 2024-02-22 23:30:08.704 8300 FEE 435657 20153 6038185 2024-02-22 23:30:08.704 2024-02-22 23:30:08.704 74700 TIP 435657 10638 6038194 2024-02-22 23:30:56.107 2024-02-22 23:30:56.107 8300 FEE 435133 704 6038195 2024-02-22 23:30:56.107 2024-02-22 23:30:56.107 74700 TIP 435133 14247 6038201 2024-02-22 23:33:39.649 2024-02-22 23:33:39.649 2000 FEE 435662 17722 6038202 2024-02-22 23:33:39.649 2024-02-22 23:33:39.649 18000 TIP 435662 989 6038212 2024-02-22 23:39:22.492 2024-02-22 23:39:22.492 2500 FEE 435665 1738 6038213 2024-02-22 23:39:22.492 2024-02-22 23:39:22.492 22500 TIP 435665 1720 6038232 2024-02-22 23:44:58.371 2024-02-22 23:44:58.371 3400 FEE 435217 913 6038233 2024-02-22 23:44:58.371 2024-02-22 23:44:58.371 30600 TIP 435217 18472 6038234 2024-02-22 23:44:58.396 2024-02-22 23:44:58.396 3400 FEE 435217 9337 6038235 2024-02-22 23:44:58.396 2024-02-22 23:44:58.396 30600 TIP 435217 4118 6038248 2024-02-22 23:46:04.096 2024-02-22 23:46:04.096 1100 FEE 435524 15273 6038249 2024-02-22 23:46:04.096 2024-02-22 23:46:04.096 9900 TIP 435524 18114 6038284 2024-02-22 23:52:01.52 2024-02-22 23:52:01.52 100 FEE 435610 1401 6038285 2024-02-22 23:52:01.52 2024-02-22 23:52:01.52 900 TIP 435610 9552 6038301 2024-02-22 23:54:43.159 2024-02-22 23:54:43.159 0 FEE 435669 7772 6038313 2024-02-22 23:58:15.216 2024-02-22 23:58:15.216 3400 FEE 435569 15161 6038314 2024-02-22 23:58:15.216 2024-02-22 23:58:15.216 30600 TIP 435569 9329 6033433 2024-02-22 16:30:04.427 2024-02-22 16:30:04.427 1000 STREAM 141924 21401 6033487 2024-02-22 16:34:04.471 2024-02-22 16:34:04.471 1000 STREAM 141924 9026 6037782 2024-02-22 22:48:01.716 2024-02-22 22:48:01.716 18900 TIP 435544 21527 6037804 2024-02-22 22:48:06.274 2024-02-22 22:48:06.274 2100 FEE 435544 20546 6037805 2024-02-22 22:48:06.274 2024-02-22 22:48:06.274 18900 TIP 435544 9348 6037838 2024-02-22 22:48:46.236 2024-02-22 22:48:46.236 0 FEE 435619 19198 6037848 2024-02-22 22:49:29.996 2024-02-22 22:49:29.996 1000 FEE 435627 2596 6037874 2024-02-22 22:50:50.462 2024-02-22 22:50:50.462 9000 FEE 435628 3706 6037875 2024-02-22 22:50:50.462 2024-02-22 22:50:50.462 81000 TIP 435628 21480 6037908 2024-02-22 23:00:32.331 2024-02-22 23:00:32.331 2100 FEE 435457 2829 6037909 2024-02-22 23:00:32.331 2024-02-22 23:00:32.331 18900 TIP 435457 18265 6037929 2024-02-22 23:04:53.667 2024-02-22 23:04:53.667 2100 FEE 435551 628 6037930 2024-02-22 23:04:53.667 2024-02-22 23:04:53.667 18900 TIP 435551 21503 6037960 2024-02-22 23:12:27.022 2024-02-22 23:12:27.022 2100 FEE 435551 11789 6037961 2024-02-22 23:12:27.022 2024-02-22 23:12:27.022 18900 TIP 435551 13759 6037969 2024-02-22 23:13:26.763 2024-02-22 23:13:26.763 2100 FEE 435465 11609 6037970 2024-02-22 23:13:26.763 2024-02-22 23:13:26.763 18900 TIP 435465 16354 6037977 2024-02-22 23:13:34.325 2024-02-22 23:13:34.325 2100 FEE 435468 826 6037978 2024-02-22 23:13:34.325 2024-02-22 23:13:34.325 18900 TIP 435468 19839 6038088 2024-02-22 23:21:20.015 2024-02-22 23:21:20.015 8300 FEE 435488 4570 6038089 2024-02-22 23:21:20.015 2024-02-22 23:21:20.015 74700 TIP 435488 11938 6038096 2024-02-22 23:21:20.787 2024-02-22 23:21:20.787 8300 FEE 435488 10693 6038097 2024-02-22 23:21:20.787 2024-02-22 23:21:20.787 74700 TIP 435488 2741 6038110 2024-02-22 23:22:14.817 2024-02-22 23:22:14.817 1300 FEE 433376 10591 6038111 2024-02-22 23:22:14.817 2024-02-22 23:22:14.817 11700 TIP 433376 19037 6038117 2024-02-22 23:22:54.021 2024-02-22 23:22:54.021 3000 FEE 435649 1823 6038118 2024-02-22 23:22:54.021 2024-02-22 23:22:54.021 27000 TIP 435649 7986 6038126 2024-02-22 23:24:05.443 2024-02-22 23:24:05.443 8300 FEE 435610 19016 6038127 2024-02-22 23:24:05.443 2024-02-22 23:24:05.443 74700 TIP 435610 18230 6038141 2024-02-22 23:28:10.232 2024-02-22 23:28:10.232 1000 FEE 435658 18735 6038154 2024-02-22 23:29:09.787 2024-02-22 23:29:09.787 1000 FEE 435660 2056 6038174 2024-02-22 23:30:07.46 2024-02-22 23:30:07.46 8300 FEE 435657 20137 6038175 2024-02-22 23:30:07.46 2024-02-22 23:30:07.46 74700 TIP 435657 16347 6038182 2024-02-22 23:30:08.645 2024-02-22 23:30:08.645 8300 FEE 435657 7675 6038183 2024-02-22 23:30:08.645 2024-02-22 23:30:08.645 74700 TIP 435657 7673 6038192 2024-02-22 23:30:55.845 2024-02-22 23:30:55.845 8300 FEE 435133 5308 6038193 2024-02-22 23:30:55.845 2024-02-22 23:30:55.845 74700 TIP 435133 7760 6038230 2024-02-22 23:44:57.015 2024-02-22 23:44:57.015 3400 FEE 435217 2513 6038231 2024-02-22 23:44:57.015 2024-02-22 23:44:57.015 30600 TIP 435217 7675 6038246 2024-02-22 23:46:03.22 2024-02-22 23:46:03.22 1100 FEE 435524 8916 6038247 2024-02-22 23:46:03.22 2024-02-22 23:46:03.22 9900 TIP 435524 3213 6038252 2024-02-22 23:46:23.501 2024-02-22 23:46:23.501 2100 FEE 435657 1567 6038253 2024-02-22 23:46:23.501 2024-02-22 23:46:23.501 18900 TIP 435657 21269 6038270 2024-02-22 23:51:27.364 2024-02-22 23:51:27.364 200 FEE 435505 19458 6038271 2024-02-22 23:51:27.364 2024-02-22 23:51:27.364 1800 TIP 435505 8664 6038278 2024-02-22 23:51:38.59 2024-02-22 23:51:38.59 3300 FEE 435641 2123 6038279 2024-02-22 23:51:38.59 2024-02-22 23:51:38.59 29700 TIP 435641 12708 6038288 2024-02-22 23:52:31.026 2024-02-22 23:52:31.026 21000 FEE 435671 9246 6038289 2024-02-22 23:52:34.487 2024-02-22 23:52:34.487 1000 FEE 435664 19007 6038290 2024-02-22 23:52:34.487 2024-02-22 23:52:34.487 9000 TIP 435664 18230 6038304 2024-02-22 23:55:11.981 2024-02-22 23:55:11.981 0 FEE 435669 4102 6038346 2024-02-23 00:00:04.413 2024-02-23 00:00:04.413 300 FEE 435457 20754 6038347 2024-02-23 00:00:04.413 2024-02-23 00:00:04.413 2700 TIP 435457 18862 6038350 2024-02-23 00:00:04.921 2024-02-23 00:00:04.921 300 FEE 435457 14449 6038351 2024-02-23 00:00:04.921 2024-02-23 00:00:04.921 2700 TIP 435457 21506 6038360 2024-02-23 00:00:06.152 2024-02-23 00:00:06.152 300 FEE 435457 18476 6038361 2024-02-23 00:00:06.152 2024-02-23 00:00:06.152 2700 TIP 435457 18426 6038364 2024-02-23 00:00:06.673 2024-02-23 00:00:06.673 300 FEE 435457 763 6038365 2024-02-23 00:00:06.673 2024-02-23 00:00:06.673 2700 TIP 435457 10638 6038371 2024-02-23 00:01:02.355 2024-02-23 00:01:02.355 12800 FEE 434814 1051 6038372 2024-02-23 00:01:02.355 2024-02-23 00:01:02.355 115200 TIP 434814 21492 6038383 2024-02-23 00:02:22.243 2024-02-23 00:02:22.243 9000 FEE 435630 12097 6038384 2024-02-23 00:02:22.243 2024-02-23 00:02:22.243 81000 TIP 435630 20370 6038394 2024-02-23 00:03:12.14 2024-02-23 00:03:12.14 1000 FEE 435684 16194 6038420 2024-02-23 00:06:12.996 2024-02-23 00:06:12.996 1100 FEE 435495 6526 6038421 2024-02-23 00:06:12.996 2024-02-23 00:06:12.996 9900 TIP 435495 3683 6038437 2024-02-23 00:12:17.394 2024-02-23 00:12:17.394 100 FEE 435580 9551 6038438 2024-02-23 00:12:17.394 2024-02-23 00:12:17.394 900 TIP 435580 5520 6038456 2024-02-23 00:12:35.002 2024-02-23 00:12:35.002 100 FEE 435629 1726 6038457 2024-02-23 00:12:35.002 2024-02-23 00:12:35.002 900 TIP 435629 10094 6038462 2024-02-23 00:12:35.666 2024-02-23 00:12:35.666 100 FEE 435629 21589 6038463 2024-02-23 00:12:35.666 2024-02-23 00:12:35.666 900 TIP 435629 1609 6038464 2024-02-23 00:12:35.92 2024-02-23 00:12:35.92 100 FEE 435629 6533 6038465 2024-02-23 00:12:35.92 2024-02-23 00:12:35.92 900 TIP 435629 17552 6038470 2024-02-23 00:13:21.819 2024-02-23 00:13:21.819 1000 FEE 435689 19117 6038479 2024-02-23 00:13:47.545 2024-02-23 00:13:47.545 300 FEE 435677 19906 6038480 2024-02-23 00:13:47.545 2024-02-23 00:13:47.545 2700 TIP 435677 4313 6038525 2024-02-23 00:14:13.455 2024-02-23 00:14:13.455 300 FEE 435585 18528 6038526 2024-02-23 00:14:13.455 2024-02-23 00:14:13.455 2700 TIP 435585 9349 6038541 2024-02-23 00:15:56.571 2024-02-23 00:15:56.571 4000 FEE 435577 12245 6038542 2024-02-23 00:15:56.571 2024-02-23 00:15:56.571 36000 TIP 435577 20969 6038560 2024-02-23 00:20:29.147 2024-02-23 00:20:29.147 100 FEE 435678 2335 6038561 2024-02-23 00:20:29.147 2024-02-23 00:20:29.147 900 TIP 435678 20058 6038567 2024-02-23 00:21:13.946 2024-02-23 00:21:13.946 150000 FEE 435410 6471 6038568 2024-02-23 00:21:13.946 2024-02-23 00:21:13.946 1350000 TIP 435410 5806 6038574 2024-02-23 00:24:41.059 2024-02-23 00:24:41.059 1000 FEE 435698 8506 6038585 2024-02-23 00:25:08.913 2024-02-23 00:25:08.913 1100 FEE 435653 2013 6038586 2024-02-23 00:25:08.913 2024-02-23 00:25:08.913 9900 TIP 435653 669 6038595 2024-02-23 00:26:14.954 2024-02-23 00:26:14.954 1000 FEE 435698 18556 6038596 2024-02-23 00:26:14.954 2024-02-23 00:26:14.954 9000 TIP 435698 6653 6038605 2024-02-23 00:26:46.712 2024-02-23 00:26:46.712 2300 FEE 435657 17714 6038606 2024-02-23 00:26:46.712 2024-02-23 00:26:46.712 20700 TIP 435657 4973 6038638 2024-02-23 00:27:39.709 2024-02-23 00:27:39.709 2300 FEE 435657 2013 6038639 2024-02-23 00:27:39.709 2024-02-23 00:27:39.709 20700 TIP 435657 1195 6038642 2024-02-23 00:27:39.915 2024-02-23 00:27:39.915 2300 FEE 435657 6202 6038643 2024-02-23 00:27:39.915 2024-02-23 00:27:39.915 20700 TIP 435657 2789 6038661 2024-02-23 00:29:35.074 2024-02-23 00:29:35.074 1000 POLL 435516 20614 6038663 2024-02-23 00:30:13.634 2024-02-23 00:30:13.634 1000 FEE 435706 21491 6038713 2024-02-23 00:37:44.902 2024-02-23 00:37:44.902 1100 FEE 435497 19394 6038714 2024-02-23 00:37:44.902 2024-02-23 00:37:44.902 9900 TIP 435497 15728 6038732 2024-02-23 00:46:04.3 2024-02-23 00:46:04.3 0 FEE 435713 9166 6038752 2024-02-23 00:49:41.131 2024-02-23 00:49:41.131 1100 FEE 435719 2735 6038753 2024-02-23 00:49:41.131 2024-02-23 00:49:41.131 9900 TIP 435719 16562 6038758 2024-02-23 00:50:10.419 2024-02-23 00:50:10.419 300 FEE 435720 17592 6038759 2024-02-23 00:50:10.419 2024-02-23 00:50:10.419 2700 TIP 435720 7847 6038779 2024-02-23 00:54:26.784 2024-02-23 00:54:26.784 3000 FEE 435657 21072 6033451 2024-02-22 16:31:14.937 2024-02-22 16:31:14.937 18900 TIP 434994 19841 6033497 2024-02-22 16:34:29.823 2024-02-22 16:34:29.823 500 FEE 435086 17014 6033498 2024-02-22 16:34:29.823 2024-02-22 16:34:29.823 4500 TIP 435086 18231 6033500 2024-02-22 16:34:34.453 2024-02-22 16:34:34.453 2100 FEE 435019 16950 6033501 2024-02-22 16:34:34.453 2024-02-22 16:34:34.453 18900 TIP 435019 4076 6033528 2024-02-22 16:35:53.297 2024-02-22 16:35:53.297 500 FEE 435046 19335 6033529 2024-02-22 16:35:53.297 2024-02-22 16:35:53.297 4500 TIP 435046 11275 6033534 2024-02-22 16:35:58.499 2024-02-22 16:35:58.499 2300 FEE 435193 19806 6033535 2024-02-22 16:35:58.499 2024-02-22 16:35:58.499 20700 TIP 435193 21357 6033564 2024-02-22 16:37:36.26 2024-02-22 16:37:36.26 10000 FEE 435205 10094 6033573 2024-02-22 16:38:09.833 2024-02-22 16:38:09.833 2100 FEE 435200 16633 6033574 2024-02-22 16:38:09.833 2024-02-22 16:38:09.833 18900 TIP 435200 6268 6033615 2024-02-22 16:46:01.278 2024-02-22 16:46:01.278 1000 FEE 435046 6300 6033616 2024-02-22 16:46:01.278 2024-02-22 16:46:01.278 9000 TIP 435046 3642 6033622 2024-02-22 16:46:12.532 2024-02-22 16:46:12.532 1000 FEE 434642 8570 6033623 2024-02-22 16:46:12.532 2024-02-22 16:46:12.532 9000 TIP 434642 17710 6033630 2024-02-22 16:46:15.666 2024-02-22 16:46:15.666 1000 FEE 434646 20745 6033631 2024-02-22 16:46:15.666 2024-02-22 16:46:15.666 9000 TIP 434646 1620 6033648 2024-02-22 16:47:49.893 2024-02-22 16:47:49.893 210000 FEE 435217 21103 6033661 2024-02-22 16:49:53.586 2024-02-22 16:49:53.586 1000 FEE 435221 2098 6033686 2024-02-22 16:53:29.7 2024-02-22 16:53:29.7 10000 FEE 435227 2749 6033728 2024-02-22 16:56:16.194 2024-02-22 16:56:16.194 1000 FEE 435002 16355 6033729 2024-02-22 16:56:16.194 2024-02-22 16:56:16.194 9000 TIP 435002 19690 6033742 2024-02-22 16:56:59.032 2024-02-22 16:56:59.032 1000 FEE 435136 16447 6033743 2024-02-22 16:56:59.032 2024-02-22 16:56:59.032 9000 TIP 435136 21485 6033763 2024-02-22 16:57:13.614 2024-02-22 16:57:13.614 1000 FEE 435002 15978 6033764 2024-02-22 16:57:13.614 2024-02-22 16:57:13.614 9000 TIP 435002 15326 6033768 2024-02-22 16:57:21.501 2024-02-22 16:57:21.501 800 FEE 435224 13759 6033769 2024-02-22 16:57:21.501 2024-02-22 16:57:21.501 7200 TIP 435224 761 6033773 2024-02-22 16:58:10.554 2024-02-22 16:58:10.554 2100 FEE 434958 21148 6033774 2024-02-22 16:58:10.554 2024-02-22 16:58:10.554 18900 TIP 434958 21090 6033775 2024-02-22 16:58:40.597 2024-02-22 16:58:40.597 100 FEE 435030 19320 6033776 2024-02-22 16:58:40.597 2024-02-22 16:58:40.597 900 TIP 435030 18336 6033777 2024-02-22 16:59:02.199 2024-02-22 16:59:02.199 4000 FEE 435206 4692 6033778 2024-02-22 16:59:02.199 2024-02-22 16:59:02.199 36000 TIP 435206 20963 6033780 2024-02-22 16:59:09.108 2024-02-22 16:59:09.108 1000 FEE 435237 8472 6033796 2024-02-22 17:01:44.421 2024-02-22 17:01:44.421 7100 FEE 435237 1705 6033797 2024-02-22 17:01:44.421 2024-02-22 17:01:44.421 63900 TIP 435237 20370 6033804 2024-02-22 17:03:49.225 2024-02-22 17:03:49.225 1000 FEE 435246 4225 6033841 2024-02-22 17:06:49.031 2024-02-22 17:06:49.031 1000 FEE 434963 21591 6033842 2024-02-22 17:06:49.031 2024-02-22 17:06:49.031 9000 TIP 434963 11423 6033846 2024-02-22 17:07:12.911 2024-02-22 17:07:12.911 4000 FEE 435154 19770 6033847 2024-02-22 17:07:12.911 2024-02-22 17:07:12.911 36000 TIP 435154 5128 6033880 2024-02-22 17:11:37.957 2024-02-22 17:11:37.957 1000 FEE 435254 2361 6033899 2024-02-22 17:12:06.377 2024-02-22 17:12:06.377 1000 FEE 435238 19572 6033900 2024-02-22 17:12:06.377 2024-02-22 17:12:06.377 9000 TIP 435238 16214 6033925 2024-02-22 17:13:16.428 2024-02-22 17:13:16.428 2300 FEE 435241 9494 6033926 2024-02-22 17:13:16.428 2024-02-22 17:13:16.428 20700 TIP 435241 5057 6033929 2024-02-22 17:13:16.698 2024-02-22 17:13:16.698 2300 FEE 435241 17011 6033930 2024-02-22 17:13:16.698 2024-02-22 17:13:16.698 20700 TIP 435241 8498 6033943 2024-02-22 17:13:19.096 2024-02-22 17:13:19.096 1000 FEE 435257 18076 6033951 2024-02-22 17:13:45.4 2024-02-22 17:13:45.4 2100 FEE 435246 9476 6033952 2024-02-22 17:13:45.4 2024-02-22 17:13:45.4 18900 TIP 435246 18769 6033958 2024-02-22 17:14:32.019 2024-02-22 17:14:32.019 100 FEE 435252 21492 6033959 2024-02-22 17:14:32.019 2024-02-22 17:14:32.019 900 TIP 435252 10311 6033967 2024-02-22 17:14:44.435 2024-02-22 17:14:44.435 300 FEE 434925 18641 6033968 2024-02-22 17:14:44.435 2024-02-22 17:14:44.435 2700 TIP 434925 2042 6033975 2024-02-22 17:16:21.592 2024-02-22 17:16:21.592 1000 FEE 435260 2741 6033976 2024-02-22 17:16:22.12 2024-02-22 17:16:22.12 0 FEE 435255 9421 6034000 2024-02-22 17:17:05.973 2024-02-22 17:17:05.973 2300 FEE 435231 2203 6034001 2024-02-22 17:17:05.973 2024-02-22 17:17:05.973 20700 TIP 435231 20523 6034008 2024-02-22 17:17:07.324 2024-02-22 17:17:07.324 2300 FEE 435231 15941 6034009 2024-02-22 17:17:07.324 2024-02-22 17:17:07.324 20700 TIP 435231 8269 6034014 2024-02-22 17:17:07.801 2024-02-22 17:17:07.801 2300 FEE 435231 18637 6034015 2024-02-22 17:17:07.801 2024-02-22 17:17:07.801 20700 TIP 435231 19158 6034096 2024-02-22 17:18:55.326 2024-02-22 17:18:55.326 97000 FEE 435262 21619 6034102 2024-02-22 17:20:15.83 2024-02-22 17:20:15.83 200 FEE 435264 1505 6034103 2024-02-22 17:20:15.83 2024-02-22 17:20:15.83 1800 TIP 435264 21140 6034107 2024-02-22 17:21:06.901 2024-02-22 17:21:06.901 100000 DONT_LIKE_THIS 435201 15728 6034153 2024-02-22 17:25:29.798 2024-02-22 17:25:29.798 3300 FEE 435256 4074 6034154 2024-02-22 17:25:29.798 2024-02-22 17:25:29.798 29700 TIP 435256 16670 6034165 2024-02-22 17:26:29.478 2024-02-22 17:26:29.478 200 FEE 435272 1401 6034166 2024-02-22 17:26:29.478 2024-02-22 17:26:29.478 1800 TIP 435272 20852 6034178 2024-02-22 17:26:38.83 2024-02-22 17:26:38.83 2300 FEE 429559 9655 6034179 2024-02-22 17:26:38.83 2024-02-22 17:26:38.83 20700 TIP 429559 18393 6034186 2024-02-22 17:26:39.498 2024-02-22 17:26:39.498 2300 FEE 429559 1652 6034187 2024-02-22 17:26:39.498 2024-02-22 17:26:39.498 20700 TIP 429559 937 6034197 2024-02-22 17:26:40.797 2024-02-22 17:26:40.797 2300 FEE 429559 15049 6034198 2024-02-22 17:26:40.797 2024-02-22 17:26:40.797 20700 TIP 429559 980 6034211 2024-02-22 17:26:46.567 2024-02-22 17:26:46.567 2300 FEE 433844 13517 6034212 2024-02-22 17:26:46.567 2024-02-22 17:26:46.567 20700 TIP 433844 628 6034245 2024-02-22 17:26:49.682 2024-02-22 17:26:49.682 2300 FEE 433844 19878 6034246 2024-02-22 17:26:49.682 2024-02-22 17:26:49.682 20700 TIP 433844 15180 6034283 2024-02-22 17:26:53.421 2024-02-22 17:26:53.421 2300 FEE 433844 664 6034284 2024-02-22 17:26:53.421 2024-02-22 17:26:53.421 20700 TIP 433844 2232 6034309 2024-02-22 17:28:12.895 2024-02-22 17:28:12.895 2300 FEE 435241 18862 6034310 2024-02-22 17:28:12.895 2024-02-22 17:28:12.895 20700 TIP 435241 20018 6034325 2024-02-22 17:28:14.26 2024-02-22 17:28:14.26 2300 FEE 435241 9421 6034326 2024-02-22 17:28:14.26 2024-02-22 17:28:14.26 20700 TIP 435241 21296 6034331 2024-02-22 17:28:14.862 2024-02-22 17:28:14.862 2300 FEE 435241 16309 6034332 2024-02-22 17:28:14.862 2024-02-22 17:28:14.862 20700 TIP 435241 18114 6034348 2024-02-22 17:29:02.532 2024-02-22 17:29:02.532 8300 FEE 435231 1030 6034349 2024-02-22 17:29:02.532 2024-02-22 17:29:02.532 74700 TIP 435231 1733 6034352 2024-02-22 17:29:02.904 2024-02-22 17:29:02.904 16600 FEE 435231 17147 6034353 2024-02-22 17:29:02.904 2024-02-22 17:29:02.904 149400 TIP 435231 17091 6033568 2024-02-22 16:38:02.513 2024-02-22 16:38:02.513 1000 STREAM 141924 15115 6033588 2024-02-22 16:40:02.529 2024-02-22 16:40:02.529 1000 STREAM 141924 695 6037862 2024-02-22 22:50:42.008 2024-02-22 22:50:42.008 2100 FEE 432705 2335 6037863 2024-02-22 22:50:42.008 2024-02-22 22:50:42.008 18900 TIP 432705 18460 6037866 2024-02-22 22:50:47.121 2024-02-22 22:50:47.121 1600 FEE 435610 652 6037867 2024-02-22 22:50:47.121 2024-02-22 22:50:47.121 14400 TIP 435610 3213 6037870 2024-02-22 22:50:49.781 2024-02-22 22:50:49.781 2100 FEE 432705 6160 6037871 2024-02-22 22:50:49.781 2024-02-22 22:50:49.781 18900 TIP 432705 19148 6037872 2024-02-22 22:50:49.923 2024-02-22 22:50:49.923 900 FEE 435628 5017 6037873 2024-02-22 22:50:49.923 2024-02-22 22:50:49.923 8100 TIP 435628 20299 6037887 2024-02-22 22:56:14.854 2024-02-22 22:56:14.854 1000 FEE 435633 5708 6037955 2024-02-22 23:11:42.181 2024-02-22 23:11:42.181 7700 FEE 415559 1090 6037956 2024-02-22 23:11:42.181 2024-02-22 23:11:42.181 69300 TIP 415559 20376 6037963 2024-02-22 23:13:13.099 2024-02-22 23:13:13.099 500 FEE 435571 1881 6037964 2024-02-22 23:13:13.099 2024-02-22 23:13:13.099 4500 TIP 435571 3709 6037965 2024-02-22 23:13:22.256 2024-02-22 23:13:22.256 2100 FEE 435458 1571 6037966 2024-02-22 23:13:22.256 2024-02-22 23:13:22.256 18900 TIP 435458 1142 6037979 2024-02-22 23:13:36.149 2024-02-22 23:13:36.149 100000 FEE 435647 2335 6038035 2024-02-22 23:21:01.294 2024-02-22 23:21:01.294 8300 FEE 435488 19796 6038036 2024-02-22 23:21:01.294 2024-02-22 23:21:01.294 74700 TIP 435488 17523 6038049 2024-02-22 23:21:02.174 2024-02-22 23:21:02.174 8300 FEE 435488 18402 6038050 2024-02-22 23:21:02.174 2024-02-22 23:21:02.174 74700 TIP 435488 19910 6038066 2024-02-22 23:21:03.218 2024-02-22 23:21:03.218 8300 FEE 435488 18714 6038067 2024-02-22 23:21:03.218 2024-02-22 23:21:03.218 74700 TIP 435488 21329 6038072 2024-02-22 23:21:03.589 2024-02-22 23:21:03.589 8300 FEE 435488 4633 6038073 2024-02-22 23:21:03.589 2024-02-22 23:21:03.589 74700 TIP 435488 1428 6038076 2024-02-22 23:21:03.817 2024-02-22 23:21:03.817 8300 FEE 435488 2151 6038077 2024-02-22 23:21:03.817 2024-02-22 23:21:03.817 74700 TIP 435488 20377 6038079 2024-02-22 23:21:19.471 2024-02-22 23:21:19.471 8300 FEE 435488 18919 6038080 2024-02-22 23:21:19.471 2024-02-22 23:21:19.471 74700 TIP 435488 2196 6038085 2024-02-22 23:21:19.815 2024-02-22 23:21:19.815 0 FEE 435649 20143 6038098 2024-02-22 23:21:20.903 2024-02-22 23:21:20.903 8300 FEE 435488 20337 6038099 2024-02-22 23:21:20.903 2024-02-22 23:21:20.903 74700 TIP 435488 6430 6038100 2024-02-22 23:21:20.974 2024-02-22 23:21:20.974 8300 FEE 435488 10063 6038101 2024-02-22 23:21:20.974 2024-02-22 23:21:20.974 74700 TIP 435488 13246 6038128 2024-02-22 23:24:06.051 2024-02-22 23:24:06.051 8300 FEE 435610 17513 6038129 2024-02-22 23:24:06.051 2024-02-22 23:24:06.051 74700 TIP 435610 15617 6038136 2024-02-22 23:26:09.003 2024-02-22 23:26:09.003 1000 FEE 435656 3683 6038151 2024-02-22 23:28:59.894 2024-02-22 23:28:59.894 1000 FEE 435658 14910 6038152 2024-02-22 23:28:59.894 2024-02-22 23:28:59.894 9000 TIP 435658 623 6038178 2024-02-22 23:30:08.069 2024-02-22 23:30:08.069 8300 FEE 435657 21523 6038179 2024-02-22 23:30:08.069 2024-02-22 23:30:08.069 74700 TIP 435657 14385 6038190 2024-02-22 23:30:55.704 2024-02-22 23:30:55.704 8300 FEE 435133 8287 6038191 2024-02-22 23:30:55.704 2024-02-22 23:30:55.704 74700 TIP 435133 4692 6038228 2024-02-22 23:44:13.549 2024-02-22 23:44:13.549 100 FEE 435457 18705 6038229 2024-02-22 23:44:13.549 2024-02-22 23:44:13.549 900 TIP 435457 20450 6038243 2024-02-22 23:45:58.407 2024-02-22 23:45:58.407 1100 FEE 435524 4027 6038244 2024-02-22 23:45:58.407 2024-02-22 23:45:58.407 9900 TIP 435524 17184 6038259 2024-02-22 23:50:26.96 2024-02-22 23:50:26.96 1000 FEE 435668 7899 6038268 2024-02-22 23:51:24.18 2024-02-22 23:51:24.18 3300 FEE 435505 626 6038269 2024-02-22 23:51:24.18 2024-02-22 23:51:24.18 29700 TIP 435505 19663 6038280 2024-02-22 23:51:38.704 2024-02-22 23:51:38.704 3300 FEE 435641 9307 6038281 2024-02-22 23:51:38.704 2024-02-22 23:51:38.704 29700 TIP 435641 1697 6038306 2024-02-22 23:56:01.032 2024-02-22 23:56:01.032 10000 FEE 435675 21057 6038315 2024-02-22 23:58:35.093 2024-02-22 23:58:35.093 1000 FEE 435676 8841 6038354 2024-02-23 00:00:05.406 2024-02-23 00:00:05.406 300 FEE 435457 7185 6038355 2024-02-23 00:00:05.406 2024-02-23 00:00:05.406 2700 TIP 435457 20623 6038376 2024-02-23 00:01:52.053 2024-02-23 00:01:52.053 1100 FEE 435596 11516 6038377 2024-02-23 00:01:52.053 2024-02-23 00:01:52.053 9900 TIP 435596 21356 6038379 2024-02-23 00:02:19.523 2024-02-23 00:02:19.523 100 FEE 435630 18264 6038380 2024-02-23 00:02:19.523 2024-02-23 00:02:19.523 900 TIP 435630 21275 6038405 2024-02-23 00:05:15.765 2024-02-23 00:05:15.765 1100 FEE 435030 795 6038406 2024-02-23 00:05:15.765 2024-02-23 00:05:15.765 9900 TIP 435030 1723 6038430 2024-02-23 00:08:43.944 2024-02-23 00:08:43.944 2100 FEE 435610 16250 6038431 2024-02-23 00:08:43.944 2024-02-23 00:08:43.944 18900 TIP 435610 17147 6038439 2024-02-23 00:12:17.518 2024-02-23 00:12:17.518 100 FEE 435580 18138 6038440 2024-02-23 00:12:17.518 2024-02-23 00:12:17.518 900 TIP 435580 12422 6038454 2024-02-23 00:12:34.832 2024-02-23 00:12:34.832 100 FEE 435629 18896 6038455 2024-02-23 00:12:34.832 2024-02-23 00:12:34.832 900 TIP 435629 20434 6038460 2024-02-23 00:12:35.306 2024-02-23 00:12:35.306 100 FEE 435629 20980 6038461 2024-02-23 00:12:35.306 2024-02-23 00:12:35.306 900 TIP 435629 8380 6038481 2024-02-23 00:13:47.647 2024-02-23 00:13:47.647 300 FEE 435677 20073 6038482 2024-02-23 00:13:47.647 2024-02-23 00:13:47.647 2700 TIP 435677 10291 6038499 2024-02-23 00:14:00.185 2024-02-23 00:14:00.185 0 FEE 435690 7989 6038504 2024-02-23 00:14:02.352 2024-02-23 00:14:02.352 100 FEE 435639 848 6038505 2024-02-23 00:14:02.352 2024-02-23 00:14:02.352 900 TIP 435639 12736 6038509 2024-02-23 00:14:07.904 2024-02-23 00:14:07.904 100 FEE 435657 7899 6038510 2024-02-23 00:14:07.904 2024-02-23 00:14:07.904 900 TIP 435657 12097 6038515 2024-02-23 00:14:12.291 2024-02-23 00:14:12.291 300 FEE 435585 1773 6038516 2024-02-23 00:14:12.291 2024-02-23 00:14:12.291 2700 TIP 435585 17722 6038533 2024-02-23 00:14:34.7 2024-02-23 00:14:34.7 0 FEE 435692 12736 6038549 2024-02-23 00:17:46.66 2024-02-23 00:17:46.66 1000 FEE 435693 750 6038564 2024-02-23 00:20:44.591 2024-02-23 00:20:44.591 1600 FEE 435488 18180 6038565 2024-02-23 00:20:44.591 2024-02-23 00:20:44.591 14400 TIP 435488 19888 6038575 2024-02-23 00:24:44.347 2024-02-23 00:24:44.347 1100 FEE 435690 16769 6038576 2024-02-23 00:24:44.347 2024-02-23 00:24:44.347 9900 TIP 435690 21157 6038589 2024-02-23 00:25:42.276 2024-02-23 00:25:42.276 0 FEE 435700 9705 6038601 2024-02-23 00:26:16.118 2024-02-23 00:26:16.118 1000 FEE 435702 21349 6038613 2024-02-23 00:26:47.338 2024-02-23 00:26:47.338 2300 FEE 435657 17838 6038614 2024-02-23 00:26:47.338 2024-02-23 00:26:47.338 20700 TIP 435657 6653 6038644 2024-02-23 00:27:46.306 2024-02-23 00:27:46.306 2300 FEE 435488 866 6038645 2024-02-23 00:27:46.306 2024-02-23 00:27:46.306 20700 TIP 435488 1836 6038657 2024-02-23 00:29:00.069 2024-02-23 00:29:00.069 1000 FEE 435705 9353 6038674 2024-02-23 00:32:36.378 2024-02-23 00:32:36.378 1000 FEE 435577 21021 6038675 2024-02-23 00:32:36.378 2024-02-23 00:32:36.378 9000 TIP 435577 10469 6038690 2024-02-23 00:37:03.033 2024-02-23 00:37:03.033 0 FEE 435710 981 6038700 2024-02-23 00:37:41.975 2024-02-23 00:37:41.975 1100 FEE 435551 18372 6038701 2024-02-23 00:37:41.975 2024-02-23 00:37:41.975 9900 TIP 435551 21555 6033593 2024-02-22 16:42:02.583 2024-02-22 16:42:02.583 1000 STREAM 141924 16410 6033600 2024-02-22 16:45:02.608 2024-02-22 16:45:02.608 1000 STREAM 141924 18727 6033617 2024-02-22 16:46:02.614 2024-02-22 16:46:02.614 1000 STREAM 141924 7587 6033662 2024-02-22 16:50:02.816 2024-02-22 16:50:02.816 1000 STREAM 141924 19458 6033678 2024-02-22 16:52:02.67 2024-02-22 16:52:02.67 1000 STREAM 141924 670 6033696 2024-02-22 16:54:02.69 2024-02-22 16:54:02.69 1000 STREAM 141924 8133 6033705 2024-02-22 16:56:02.698 2024-02-22 16:56:02.698 1000 STREAM 141924 21344 6033772 2024-02-22 16:58:02.698 2024-02-22 16:58:02.698 1000 STREAM 141924 7773 6033843 2024-02-22 17:07:02.793 2024-02-22 17:07:02.793 1000 STREAM 141924 1000 6033864 2024-02-22 17:08:02.795 2024-02-22 17:08:02.795 1000 STREAM 141924 11829 6033890 2024-02-22 17:12:02.841 2024-02-22 17:12:02.841 1000 STREAM 141924 20781 6033912 2024-02-22 17:13:02.841 2024-02-22 17:13:02.841 1000 STREAM 141924 866 6033957 2024-02-22 17:14:02.855 2024-02-22 17:14:02.855 1000 STREAM 141924 13574 6033971 2024-02-22 17:15:02.856 2024-02-22 17:15:02.856 1000 STREAM 141924 20858 6033999 2024-02-22 17:17:02.891 2024-02-22 17:17:02.891 1000 STREAM 141924 11263 6034101 2024-02-22 17:20:02.893 2024-02-22 17:20:02.893 1000 STREAM 141924 1352 6034106 2024-02-22 17:21:02.904 2024-02-22 17:21:02.904 1000 STREAM 141924 19333 6034112 2024-02-22 17:22:02.915 2024-02-22 17:22:02.915 1000 STREAM 141924 13249 6034131 2024-02-22 17:24:02.929 2024-02-22 17:24:02.929 1000 STREAM 141924 861 6034144 2024-02-22 17:25:02.935 2024-02-22 17:25:02.935 1000 STREAM 141924 20663 6034297 2024-02-22 17:27:02.943 2024-02-22 17:27:02.943 1000 STREAM 141924 2620 6034301 2024-02-22 17:28:02.949 2024-02-22 17:28:02.949 1000 STREAM 141924 3979 6034354 2024-02-22 17:29:02.977 2024-02-22 17:29:02.977 1000 STREAM 141924 18494 6034443 2024-02-22 17:32:02.981 2024-02-22 17:32:02.981 1000 STREAM 141924 16296 6034513 2024-02-22 17:34:02.999 2024-02-22 17:34:02.999 1000 STREAM 141924 7960 6034519 2024-02-22 17:35:03.015 2024-02-22 17:35:03.015 1000 STREAM 141924 19638 6034925 2024-02-22 18:01:03.78 2024-02-22 18:01:03.78 1000 STREAM 141924 21067 6037912 2024-02-22 23:00:49.351 2024-02-22 23:00:49.351 4000 FEE 435596 1705 6037913 2024-02-22 23:00:49.351 2024-02-22 23:00:49.351 36000 TIP 435596 15243 6037914 2024-02-22 23:00:52.151 2024-02-22 23:00:52.151 4000 FEE 435488 951 6037915 2024-02-22 23:00:52.151 2024-02-22 23:00:52.151 36000 TIP 435488 9334 6037934 2024-02-22 23:05:31.521 2024-02-22 23:05:31.521 2100 FEE 435488 3409 6037935 2024-02-22 23:05:31.521 2024-02-22 23:05:31.521 18900 TIP 435488 9833 6037940 2024-02-22 23:07:45.358 2024-02-22 23:07:45.358 0 FEE 435640 2789 6037941 2024-02-22 23:07:53.32 2024-02-22 23:07:53.32 100000 FEE 435641 10611 6037945 2024-02-22 23:08:31.604 2024-02-22 23:08:31.604 0 FEE 435640 894 6037952 2024-02-22 23:10:58.191 2024-02-22 23:10:58.191 1000 FEE 435645 10719 6037967 2024-02-22 23:13:23.078 2024-02-22 23:13:23.078 2100 FEE 435458 19886 6037968 2024-02-22 23:13:23.078 2024-02-22 23:13:23.078 18900 TIP 435458 17316 6037980 2024-02-22 23:13:37.343 2024-02-22 23:13:37.343 6400 FEE 435640 688 6037981 2024-02-22 23:13:37.343 2024-02-22 23:13:37.343 57600 TIP 435640 21379 6038001 2024-02-22 23:18:38.793 2024-02-22 23:18:38.793 100000 FEE 435648 5444 6038023 2024-02-22 23:21:00.211 2024-02-22 23:21:00.211 8300 FEE 435488 674 6038024 2024-02-22 23:21:00.211 2024-02-22 23:21:00.211 74700 TIP 435488 9183 6038061 2024-02-22 23:21:02.874 2024-02-22 23:21:02.874 8300 FEE 435488 5758 6038062 2024-02-22 23:21:02.874 2024-02-22 23:21:02.874 74700 TIP 435488 21387 6038119 2024-02-22 23:22:55.514 2024-02-22 23:22:55.514 27000 FEE 435649 16788 6038120 2024-02-22 23:22:55.514 2024-02-22 23:22:55.514 243000 TIP 435649 21145 6038122 2024-02-22 23:23:28.462 2024-02-22 23:23:28.462 270000 FEE 435135 5590 6038123 2024-02-22 23:23:28.462 2024-02-22 23:23:28.462 2430000 TIP 435135 9 6038130 2024-02-22 23:24:39.817 2024-02-22 23:24:39.817 100000 FEE 435653 1512 6038134 2024-02-22 23:25:21.575 2024-02-22 23:25:21.575 10000 FEE 435655 20182 6038226 2024-02-22 23:44:13.125 2024-02-22 23:44:13.125 2100 FEE 435536 20906 6038227 2024-02-22 23:44:13.125 2024-02-22 23:44:13.125 18900 TIP 435536 16432 6038265 2024-02-22 23:51:12.744 2024-02-22 23:51:12.744 1000 FEE 435669 10007 6038266 2024-02-22 23:51:21.42 2024-02-22 23:51:21.42 3300 FEE 435505 1890 6038267 2024-02-22 23:51:21.42 2024-02-22 23:51:21.42 29700 TIP 435505 9350 6038340 2024-02-23 00:00:03.678 2024-02-23 00:00:03.678 300 FEE 435457 1425 6038341 2024-02-23 00:00:03.678 2024-02-23 00:00:03.678 2700 TIP 435457 21406 6038381 2024-02-23 00:02:19.727 2024-02-23 00:02:19.727 900 FEE 435630 1801 6038382 2024-02-23 00:02:19.727 2024-02-23 00:02:19.727 8100 TIP 435630 19469 6038400 2024-02-23 00:04:37.719 2024-02-23 00:04:37.719 10000 FEE 435685 1273 6038415 2024-02-23 00:06:07.002 2024-02-23 00:06:07.002 1000 FEE 435453 1602 6038416 2024-02-23 00:06:07.002 2024-02-23 00:06:07.002 9000 TIP 435453 13204 6038417 2024-02-23 00:06:08.597 2024-02-23 00:06:08.597 1000 POLL 435495 5759 6038418 2024-02-23 00:06:09.072 2024-02-23 00:06:09.072 10000 FEE 330574 18359 6038419 2024-02-23 00:06:09.072 2024-02-23 00:06:09.072 90000 TIP 330574 13587 6038426 2024-02-23 00:06:51.199 2024-02-23 00:06:51.199 27000 FEE 435679 18736 6038427 2024-02-23 00:06:51.199 2024-02-23 00:06:51.199 243000 TIP 435679 18809 6038435 2024-02-23 00:11:27.955 2024-02-23 00:11:27.955 1000 FEE 435687 16753 6038445 2024-02-23 00:12:18.024 2024-02-23 00:12:18.024 100 FEE 435580 21072 6038446 2024-02-23 00:12:18.024 2024-02-23 00:12:18.024 900 TIP 435580 9833 6038475 2024-02-23 00:13:46.948 2024-02-23 00:13:46.948 100 FEE 435690 17696 6038476 2024-02-23 00:13:46.948 2024-02-23 00:13:46.948 900 TIP 435690 4624 6038500 2024-02-23 00:14:00.798 2024-02-23 00:14:00.798 100 FEE 435634 8287 6038501 2024-02-23 00:14:00.798 2024-02-23 00:14:00.798 900 TIP 435634 891 6038513 2024-02-23 00:14:12.106 2024-02-23 00:14:12.106 300 FEE 435585 21458 6038514 2024-02-23 00:14:12.106 2024-02-23 00:14:12.106 2700 TIP 435585 16442 6038517 2024-02-23 00:14:12.462 2024-02-23 00:14:12.462 300 FEE 435585 20018 6038518 2024-02-23 00:14:12.462 2024-02-23 00:14:12.462 2700 TIP 435585 11314 6038529 2024-02-23 00:14:19.62 2024-02-23 00:14:19.62 900 FEE 435679 13398 6038530 2024-02-23 00:14:19.62 2024-02-23 00:14:19.62 8100 TIP 435679 746 6038539 2024-02-23 00:15:53.459 2024-02-23 00:15:53.459 4000 FEE 435610 19909 6033748 2024-02-22 16:57:00.812 2024-02-22 16:57:00.812 1000 FEE 435154 19126 6033749 2024-02-22 16:57:00.812 2024-02-22 16:57:00.812 9000 TIP 435154 666 6033759 2024-02-22 16:57:05.167 2024-02-22 16:57:05.167 1000 FEE 434975 5776 6033760 2024-02-22 16:57:05.167 2024-02-22 16:57:05.167 9000 TIP 434975 21591 6033765 2024-02-22 16:57:13.798 2024-02-22 16:57:13.798 1000 FEE 435002 20062 6033766 2024-02-22 16:57:13.798 2024-02-22 16:57:13.798 9000 TIP 435002 18101 6033839 2024-02-22 17:06:43.377 2024-02-22 17:06:43.377 10000 FEE 435231 10693 6033840 2024-02-22 17:06:43.377 2024-02-22 17:06:43.377 90000 TIP 435231 16356 6033848 2024-02-22 17:07:14.232 2024-02-22 17:07:14.232 4000 FEE 435136 5306 6033849 2024-02-22 17:07:14.232 2024-02-22 17:07:14.232 36000 TIP 435136 9336 6033862 2024-02-22 17:07:23.158 2024-02-22 17:07:23.158 4000 FEE 434988 9809 6033863 2024-02-22 17:07:23.158 2024-02-22 17:07:23.158 36000 TIP 434988 826 6033874 2024-02-22 17:11:20.608 2024-02-22 17:11:20.608 1000 FEE 435252 19863 6033887 2024-02-22 17:11:39.295 2024-02-22 17:11:39.295 1000 FEE 434440 8380 6033888 2024-02-22 17:11:39.295 2024-02-22 17:11:39.295 9000 TIP 434440 2513 6033897 2024-02-22 17:12:06.021 2024-02-22 17:12:06.021 1000 FEE 435238 19501 6033898 2024-02-22 17:12:06.021 2024-02-22 17:12:06.021 9000 TIP 435238 19044 6033905 2024-02-22 17:12:09.088 2024-02-22 17:12:09.088 1000 FEE 435254 21361 6033906 2024-02-22 17:12:09.088 2024-02-22 17:12:09.088 9000 TIP 435254 794 6033931 2024-02-22 17:13:16.822 2024-02-22 17:13:16.822 2300 FEE 435241 1845 6033932 2024-02-22 17:13:16.822 2024-02-22 17:13:16.822 20700 TIP 435241 1489 6033962 2024-02-22 17:14:32.223 2024-02-22 17:14:32.223 900 FEE 435252 3392 6033963 2024-02-22 17:14:32.223 2024-02-22 17:14:32.223 8100 TIP 435252 768 6033997 2024-02-22 17:17:02.667 2024-02-22 17:17:02.667 2300 FEE 435242 15075 6033998 2024-02-22 17:17:02.667 2024-02-22 17:17:02.667 20700 TIP 435242 19465 6034010 2024-02-22 17:17:07.485 2024-02-22 17:17:07.485 2300 FEE 435231 4173 6034011 2024-02-22 17:17:07.485 2024-02-22 17:17:07.485 20700 TIP 435231 16954 6034038 2024-02-22 17:17:13.089 2024-02-22 17:17:13.089 2300 FEE 435231 17891 6034039 2024-02-22 17:17:13.089 2024-02-22 17:17:13.089 20700 TIP 435231 1245 6034072 2024-02-22 17:17:16.375 2024-02-22 17:17:16.375 2300 FEE 435231 10944 6034073 2024-02-22 17:17:16.375 2024-02-22 17:17:16.375 20700 TIP 435231 8945 6034088 2024-02-22 17:17:18.376 2024-02-22 17:17:18.376 2300 FEE 435231 20710 6034089 2024-02-22 17:17:18.376 2024-02-22 17:17:18.376 20700 TIP 435231 3396 6034142 2024-02-22 17:24:58.679 2024-02-22 17:24:58.679 1000 FEE 435217 20439 6034143 2024-02-22 17:24:58.679 2024-02-22 17:24:58.679 9000 TIP 435217 1208 6034174 2024-02-22 17:26:38.473 2024-02-22 17:26:38.473 2300 FEE 429559 18717 6034175 2024-02-22 17:26:38.473 2024-02-22 17:26:38.473 20700 TIP 429559 19615 6034184 2024-02-22 17:26:39.334 2024-02-22 17:26:39.334 2300 FEE 429559 21481 6034185 2024-02-22 17:26:39.334 2024-02-22 17:26:39.334 20700 TIP 429559 20190 6034205 2024-02-22 17:26:45.873 2024-02-22 17:26:45.873 4600 FEE 433844 13169 6034206 2024-02-22 17:26:45.873 2024-02-22 17:26:45.873 41400 TIP 433844 828 6034215 2024-02-22 17:26:46.881 2024-02-22 17:26:46.881 2300 FEE 433844 12175 6034216 2024-02-22 17:26:46.881 2024-02-22 17:26:46.881 20700 TIP 433844 10342 6034233 2024-02-22 17:26:48.545 2024-02-22 17:26:48.545 2300 FEE 433844 16447 6034234 2024-02-22 17:26:48.545 2024-02-22 17:26:48.545 20700 TIP 433844 20852 6034269 2024-02-22 17:26:52.383 2024-02-22 17:26:52.383 2300 FEE 433844 20152 6034270 2024-02-22 17:26:52.383 2024-02-22 17:26:52.383 20700 TIP 433844 1490 6034279 2024-02-22 17:26:53.082 2024-02-22 17:26:53.082 2300 FEE 433844 1124 6034280 2024-02-22 17:26:53.082 2024-02-22 17:26:53.082 20700 TIP 433844 21323 6034295 2024-02-22 17:26:55.59 2024-02-22 17:26:55.59 2300 FEE 433844 16847 6034296 2024-02-22 17:26:55.59 2024-02-22 17:26:55.59 20700 TIP 433844 20143 6034305 2024-02-22 17:28:12.415 2024-02-22 17:28:12.415 2300 FEE 435241 16042 6033790 2024-02-22 17:00:01.053 2024-02-22 17:00:01.053 1000 FEE 435241 1051 6033795 2024-02-22 17:01:16.733 2024-02-22 17:01:16.733 100000 FEE 435243 5904 6033826 2024-02-22 17:05:52.193 2024-02-22 17:05:52.193 0 FEE 435246 14905 6033873 2024-02-22 17:11:19.272 2024-02-22 17:11:19.272 1000 FEE 435251 5791 6033891 2024-02-22 17:12:04.704 2024-02-22 17:12:04.704 1000 FEE 435238 14503 6033892 2024-02-22 17:12:04.704 2024-02-22 17:12:04.704 9000 TIP 435238 20326 6033895 2024-02-22 17:12:05.66 2024-02-22 17:12:05.66 1000 FEE 435238 21208 6033896 2024-02-22 17:12:05.66 2024-02-22 17:12:05.66 9000 TIP 435238 18518 6033901 2024-02-22 17:12:08.275 2024-02-22 17:12:08.275 1000 FEE 435254 917 6033902 2024-02-22 17:12:08.275 2024-02-22 17:12:08.275 9000 TIP 435254 2734 6033917 2024-02-22 17:13:15.372 2024-02-22 17:13:15.372 2300 FEE 435241 635 6033918 2024-02-22 17:13:15.372 2024-02-22 17:13:15.372 20700 TIP 435241 4027 6033969 2024-02-22 17:14:50.382 2024-02-22 17:14:50.382 2100 FEE 435252 18380 6033970 2024-02-22 17:14:50.382 2024-02-22 17:14:50.382 18900 TIP 435252 13246 6033979 2024-02-22 17:16:45.022 2024-02-22 17:16:45.022 100 FEE 435115 21228 6033980 2024-02-22 17:16:45.022 2024-02-22 17:16:45.022 900 TIP 435115 21514 6033995 2024-02-22 17:17:02.514 2024-02-22 17:17:02.514 2300 FEE 435242 13249 6033996 2024-02-22 17:17:02.514 2024-02-22 17:17:02.514 20700 TIP 435242 21228 6034004 2024-02-22 17:17:06.712 2024-02-22 17:17:06.712 2300 FEE 435231 17011 6034005 2024-02-22 17:17:06.712 2024-02-22 17:17:06.712 20700 TIP 435231 776 6034020 2024-02-22 17:17:08.563 2024-02-22 17:17:08.563 2300 FEE 435231 20564 6034021 2024-02-22 17:17:08.563 2024-02-22 17:17:08.563 20700 TIP 435231 8326 6034022 2024-02-22 17:17:08.679 2024-02-22 17:17:08.679 2300 FEE 435231 20669 6034023 2024-02-22 17:17:08.679 2024-02-22 17:17:08.679 20700 TIP 435231 11885 6034026 2024-02-22 17:17:12.323 2024-02-22 17:17:12.323 2300 FEE 435231 21585 6034027 2024-02-22 17:17:12.323 2024-02-22 17:17:12.323 20700 TIP 435231 18815 6034030 2024-02-22 17:17:12.468 2024-02-22 17:17:12.468 2300 FEE 435231 18745 6034031 2024-02-22 17:17:12.468 2024-02-22 17:17:12.468 20700 TIP 435231 21492 6034034 2024-02-22 17:17:12.88 2024-02-22 17:17:12.88 2300 FEE 435231 6537 6034035 2024-02-22 17:17:12.88 2024-02-22 17:17:12.88 20700 TIP 435231 20623 6034128 2024-02-22 17:23:33.324 2024-02-22 17:23:33.324 1000 FEE 435247 4314 6034129 2024-02-22 17:23:33.324 2024-02-22 17:23:33.324 9000 TIP 435247 19333 6034136 2024-02-22 17:24:39.831 2024-02-22 17:24:39.831 800 FEE 435018 2176 6034137 2024-02-22 17:24:39.831 2024-02-22 17:24:39.831 7200 TIP 435018 18454 6034138 2024-02-22 17:24:45.133 2024-02-22 17:24:45.133 800 FEE 434958 20434 6034139 2024-02-22 17:24:45.133 2024-02-22 17:24:45.133 7200 TIP 434958 14370 6034147 2024-02-22 17:25:19.47 2024-02-22 17:25:19.47 3300 FEE 435254 18932 6034148 2024-02-22 17:25:19.47 2024-02-22 17:25:19.47 29700 TIP 435254 16347 6034201 2024-02-22 17:26:41.078 2024-02-22 17:26:41.078 2300 FEE 429559 1135 6034202 2024-02-22 17:26:41.078 2024-02-22 17:26:41.078 20700 TIP 429559 5904 6034213 2024-02-22 17:26:46.719 2024-02-22 17:26:46.719 2300 FEE 433844 1673 6034214 2024-02-22 17:26:46.719 2024-02-22 17:26:46.719 20700 TIP 433844 20881 6034221 2024-02-22 17:26:47.58 2024-02-22 17:26:47.58 2300 FEE 433844 18344 6034222 2024-02-22 17:26:47.58 2024-02-22 17:26:47.58 20700 TIP 433844 16808 6034225 2024-02-22 17:26:47.912 2024-02-22 17:26:47.912 2300 FEE 433844 16301 6034226 2024-02-22 17:26:47.912 2024-02-22 17:26:47.912 20700 TIP 433844 14152 6034227 2024-02-22 17:26:48.062 2024-02-22 17:26:48.062 2300 FEE 433844 13177 6034228 2024-02-22 17:26:48.062 2024-02-22 17:26:48.062 20700 TIP 433844 3392 6034257 2024-02-22 17:26:50.821 2024-02-22 17:26:50.821 2300 FEE 433844 1773 6034258 2024-02-22 17:26:50.821 2024-02-22 17:26:50.821 20700 TIP 433844 21172 6034259 2024-02-22 17:26:50.951 2024-02-22 17:26:50.951 2300 FEE 433844 19267 6034260 2024-02-22 17:26:50.951 2024-02-22 17:26:50.951 20700 TIP 433844 21603 6034261 2024-02-22 17:26:51.376 2024-02-22 17:26:51.376 2300 FEE 433844 18873 6034262 2024-02-22 17:26:51.376 2024-02-22 17:26:51.376 20700 TIP 433844 20243 6034271 2024-02-22 17:26:52.516 2024-02-22 17:26:52.516 2300 FEE 433844 16447 6034272 2024-02-22 17:26:52.516 2024-02-22 17:26:52.516 20700 TIP 433844 6260 6034300 2024-02-22 17:28:01.642 2024-02-22 17:28:01.642 1000 FEE 435277 20757 6034313 2024-02-22 17:28:13.107 2024-02-22 17:28:13.107 2300 FEE 435241 20225 6034314 2024-02-22 17:28:13.107 2024-02-22 17:28:13.107 20700 TIP 435241 17095 6034319 2024-02-22 17:28:14.038 2024-02-22 17:28:14.038 2300 FEE 435241 9345 6034320 2024-02-22 17:28:14.038 2024-02-22 17:28:14.038 20700 TIP 435241 9844 6034333 2024-02-22 17:28:14.978 2024-02-22 17:28:14.978 2300 FEE 435241 2502 6034334 2024-02-22 17:28:14.978 2024-02-22 17:28:14.978 20700 TIP 435241 21466 6034394 2024-02-22 17:30:15.665 2024-02-22 17:30:15.665 8300 FEE 435242 21418 6034395 2024-02-22 17:30:15.665 2024-02-22 17:30:15.665 74700 TIP 435242 956 6034439 2024-02-22 17:31:04.838 2024-02-22 17:31:04.838 5000 FEE 435284 20340 6034444 2024-02-22 17:32:04.275 2024-02-22 17:32:04.275 1000 FEE 435286 12245 6034447 2024-02-22 17:32:16.63 2024-02-22 17:32:16.63 2300 FEE 435261 16769 6034448 2024-02-22 17:32:16.63 2024-02-22 17:32:16.63 20700 TIP 435261 20969 6034451 2024-02-22 17:32:16.841 2024-02-22 17:32:16.841 2300 FEE 435261 2329 6034452 2024-02-22 17:32:16.841 2024-02-22 17:32:16.841 20700 TIP 435261 20683 6034475 2024-02-22 17:32:46.718 2024-02-22 17:32:46.718 8300 FEE 435261 1628 6034476 2024-02-22 17:32:46.718 2024-02-22 17:32:46.718 74700 TIP 435261 16296 6034495 2024-02-22 17:32:49.087 2024-02-22 17:32:49.087 8300 FEE 435261 2330 6034496 2024-02-22 17:32:49.087 2024-02-22 17:32:49.087 74700 TIP 435261 3411 6034502 2024-02-22 17:33:29.158 2024-02-22 17:33:29.158 100 FEE 435284 16214 6034503 2024-02-22 17:33:29.158 2024-02-22 17:33:29.158 900 TIP 435284 20084 6034506 2024-02-22 17:33:30.846 2024-02-22 17:33:30.846 9000 FEE 435284 5752 6034507 2024-02-22 17:33:30.846 2024-02-22 17:33:30.846 81000 TIP 435284 17984 6034508 2024-02-22 17:33:34.975 2024-02-22 17:33:34.975 100 FEE 435280 17227 6034509 2024-02-22 17:33:34.975 2024-02-22 17:33:34.975 900 TIP 435280 15266 6034548 2024-02-22 17:37:35.216 2024-02-22 17:37:35.216 7700 FEE 435274 787 6034549 2024-02-22 17:37:35.216 2024-02-22 17:37:35.216 69300 TIP 435274 19506 6034550 2024-02-22 17:38:02.333 2024-02-22 17:38:02.333 0 FEE 383547 1970 6034574 2024-02-22 17:40:16.993 2024-02-22 17:40:16.993 1000 FEE 435294 11314 6034575 2024-02-22 17:40:16.993 2024-02-22 17:40:16.993 9000 TIP 435294 4378 6034610 2024-02-22 17:41:59.847 2024-02-22 17:41:59.847 1600 FEE 435242 11288 6034611 2024-02-22 17:41:59.847 2024-02-22 17:41:59.847 14400 TIP 435242 13781 6034612 2024-02-22 17:42:00.482 2024-02-22 17:42:00.482 100 FEE 435030 21539 6034613 2024-02-22 17:42:00.482 2024-02-22 17:42:00.482 900 TIP 435030 1658 6034645 2024-02-22 17:45:01.218 2024-02-22 17:45:01.218 0 FEE 435308 1803 6034670 2024-02-22 17:47:35.448 2024-02-22 17:47:35.448 100 FEE 435217 18330 6034671 2024-02-22 17:47:35.448 2024-02-22 17:47:35.448 900 TIP 435217 18448 6034677 2024-02-22 17:47:55.128 2024-02-22 17:47:55.128 1000 FEE 435271 4323 6034678 2024-02-22 17:47:55.128 2024-02-22 17:47:55.128 9000 TIP 435271 20647 6034693 2024-02-22 17:48:12.122 2024-02-22 17:48:12.122 900 FEE 435263 16598 6034694 2024-02-22 17:48:12.122 2024-02-22 17:48:12.122 8100 TIP 435263 18772 6034709 2024-02-22 17:49:26.025 2024-02-22 17:49:26.025 2100 FEE 434650 9351 6034710 2024-02-22 17:49:26.025 2024-02-22 17:49:26.025 18900 TIP 434650 1960 6033808 2024-02-22 17:04:34.329 2024-02-22 17:04:34.329 300 FEE 364096 20713 6033809 2024-02-22 17:04:34.329 2024-02-22 17:04:34.329 2700 TIP 364096 17526 6033814 2024-02-22 17:05:19.616 2024-02-22 17:05:19.616 27000 FEE 435230 5758 6033815 2024-02-22 17:05:19.616 2024-02-22 17:05:19.616 243000 TIP 435230 16653 6033816 2024-02-22 17:05:31.528 2024-02-22 17:05:31.528 100 FEE 435242 12768 6033817 2024-02-22 17:05:31.528 2024-02-22 17:05:31.528 900 TIP 435242 21194 6033822 2024-02-22 17:05:33.902 2024-02-22 17:05:33.902 3000 FEE 435233 4084 6033823 2024-02-22 17:05:33.902 2024-02-22 17:05:33.902 27000 TIP 435233 1800 6033835 2024-02-22 17:06:31.079 2024-02-22 17:06:31.079 1600 FEE 435244 19639 6033836 2024-02-22 17:06:31.079 2024-02-22 17:06:31.079 14400 TIP 435244 8916 6033923 2024-02-22 17:13:16.303 2024-02-22 17:13:16.303 2300 FEE 435241 726 6033924 2024-02-22 17:13:16.303 2024-02-22 17:13:16.303 20700 TIP 435241 5171 6033977 2024-02-22 17:16:27.492 2024-02-22 17:16:27.492 2300 FEE 435257 18673 6033978 2024-02-22 17:16:27.492 2024-02-22 17:16:27.492 20700 TIP 435257 13843 6033981 2024-02-22 17:17:01.056 2024-02-22 17:17:01.056 2300 FEE 435242 13198 6033982 2024-02-22 17:17:01.056 2024-02-22 17:17:01.056 20700 TIP 435242 21207 6034018 2024-02-22 17:17:08.46 2024-02-22 17:17:08.46 2300 FEE 435231 21067 6034019 2024-02-22 17:17:08.46 2024-02-22 17:17:08.46 20700 TIP 435231 1624 6034024 2024-02-22 17:17:08.819 2024-02-22 17:17:08.819 2300 FEE 435231 2075 6034025 2024-02-22 17:17:08.819 2024-02-22 17:17:08.819 20700 TIP 435231 11498 6034028 2024-02-22 17:17:12.345 2024-02-22 17:17:12.345 2300 FEE 435231 18363 6034029 2024-02-22 17:17:12.345 2024-02-22 17:17:12.345 20700 TIP 435231 16355 6034046 2024-02-22 17:17:13.763 2024-02-22 17:17:13.763 2300 FEE 435231 14857 6034047 2024-02-22 17:17:13.763 2024-02-22 17:17:13.763 20700 TIP 435231 18557 6034058 2024-02-22 17:17:15.237 2024-02-22 17:17:15.237 2300 FEE 435231 16282 6034059 2024-02-22 17:17:15.237 2024-02-22 17:17:15.237 20700 TIP 435231 20744 6034074 2024-02-22 17:17:16.563 2024-02-22 17:17:16.563 2300 FEE 435231 7659 6034075 2024-02-22 17:17:16.563 2024-02-22 17:17:16.563 20700 TIP 435231 985 6034076 2024-02-22 17:17:16.729 2024-02-22 17:17:16.729 2300 FEE 435231 16598 6034077 2024-02-22 17:17:16.729 2024-02-22 17:17:16.729 20700 TIP 435231 14271 6034080 2024-02-22 17:17:17.05 2024-02-22 17:17:17.05 2300 FEE 435231 9348 6034081 2024-02-22 17:17:17.05 2024-02-22 17:17:17.05 20700 TIP 435231 1567 6034082 2024-02-22 17:17:17.888 2024-02-22 17:17:17.888 2300 FEE 435231 1493 6034083 2024-02-22 17:17:17.888 2024-02-22 17:17:17.888 20700 TIP 435231 10056 6034090 2024-02-22 17:17:18.527 2024-02-22 17:17:18.527 2300 FEE 435231 13921 6034091 2024-02-22 17:17:18.527 2024-02-22 17:17:18.527 20700 TIP 435231 7986 6034105 2024-02-22 17:20:54.615 2024-02-22 17:20:54.615 1000 FEE 435266 713 6034115 2024-02-22 17:22:09.647 2024-02-22 17:22:09.647 1000 FEE 435267 15159 6034116 2024-02-22 17:22:18.254 2024-02-22 17:22:18.254 100 FEE 435120 17714 6034117 2024-02-22 17:22:18.254 2024-02-22 17:22:18.254 900 TIP 435120 17227 6034120 2024-02-22 17:22:32.011 2024-02-22 17:22:32.011 9000 FEE 435120 9246 6034121 2024-02-22 17:22:32.011 2024-02-22 17:22:32.011 81000 TIP 435120 21424 6034122 2024-02-22 17:22:39.134 2024-02-22 17:22:39.134 1000 FEE 435268 12562 6034132 2024-02-22 17:24:03.151 2024-02-22 17:24:03.151 1000 FEE 435270 7558 6034135 2024-02-22 17:24:37.767 2024-02-22 17:24:37.767 1000 FEE 435271 17535 6034158 2024-02-22 17:25:42.037 2024-02-22 17:25:42.037 1000 FEE 435273 18280 6034163 2024-02-22 17:26:03.424 2024-02-22 17:26:03.424 100 FEE 435261 20889 6034164 2024-02-22 17:26:03.424 2024-02-22 17:26:03.424 900 TIP 435261 15180 6034182 2024-02-22 17:26:39.124 2024-02-22 17:26:39.124 2300 FEE 429559 19689 6034183 2024-02-22 17:26:39.124 2024-02-22 17:26:39.124 20700 TIP 429559 644 6034193 2024-02-22 17:26:39.906 2024-02-22 17:26:39.906 2300 FEE 429559 1012 6034194 2024-02-22 17:26:39.906 2024-02-22 17:26:39.906 20700 TIP 429559 694 6034237 2024-02-22 17:26:49.011 2024-02-22 17:26:49.011 2300 FEE 433844 9992 6034238 2024-02-22 17:26:49.011 2024-02-22 17:26:49.011 20700 TIP 433844 1122 6034243 2024-02-22 17:26:49.506 2024-02-22 17:26:49.506 2300 FEE 433844 19987 6034244 2024-02-22 17:26:49.506 2024-02-22 17:26:49.506 20700 TIP 433844 19198 6034251 2024-02-22 17:26:50.356 2024-02-22 17:26:50.356 2300 FEE 433844 635 6034252 2024-02-22 17:26:50.356 2024-02-22 17:26:50.356 20700 TIP 433844 21418 6034285 2024-02-22 17:26:54.172 2024-02-22 17:26:54.172 2300 FEE 433844 2711 6034286 2024-02-22 17:26:54.172 2024-02-22 17:26:54.172 20700 TIP 433844 1825 6034289 2024-02-22 17:26:54.489 2024-02-22 17:26:54.489 2300 FEE 433844 2614 6034290 2024-02-22 17:26:54.489 2024-02-22 17:26:54.489 20700 TIP 433844 2347 6034298 2024-02-22 17:27:59.378 2024-02-22 17:27:59.378 700 FEE 435272 687 6034299 2024-02-22 17:27:59.378 2024-02-22 17:27:59.378 6300 TIP 435272 1389 6034303 2024-02-22 17:28:10.25 2024-02-22 17:28:10.25 1000 FEE 435167 5557 6034304 2024-02-22 17:28:10.25 2024-02-22 17:28:10.25 9000 TIP 435167 18264 6034317 2024-02-22 17:28:13.558 2024-02-22 17:28:13.558 4600 FEE 435241 10398 6034318 2024-02-22 17:28:13.558 2024-02-22 17:28:13.558 41400 TIP 435241 20681 6034323 2024-02-22 17:28:14.221 2024-02-22 17:28:14.221 2300 FEE 435241 16513 6034324 2024-02-22 17:28:14.221 2024-02-22 17:28:14.221 20700 TIP 435241 641 6034337 2024-02-22 17:28:15.273 2024-02-22 17:28:15.273 2300 FEE 435241 16789 6034338 2024-02-22 17:28:15.273 2024-02-22 17:28:15.273 20700 TIP 435241 2326 6034366 2024-02-22 17:29:25.033 2024-02-22 17:29:25.033 500 FEE 435271 18772 6034367 2024-02-22 17:29:25.033 2024-02-22 17:29:25.033 4500 TIP 435271 3456 6034373 2024-02-22 17:29:35.489 2024-02-22 17:29:35.489 1000 FEE 435195 1030 6034374 2024-02-22 17:29:35.489 2024-02-22 17:29:35.489 9000 TIP 435195 17103 6034386 2024-02-22 17:30:15.259 2024-02-22 17:30:15.259 8300 FEE 435242 9200 6034387 2024-02-22 17:30:15.259 2024-02-22 17:30:15.259 74700 TIP 435242 712 6034410 2024-02-22 17:30:16.581 2024-02-22 17:30:16.581 8300 FEE 435242 7097 6034411 2024-02-22 17:30:16.581 2024-02-22 17:30:16.581 74700 TIP 435242 18139 6034414 2024-02-22 17:30:17.333 2024-02-22 17:30:17.333 8300 FEE 435242 14950 6034415 2024-02-22 17:30:17.333 2024-02-22 17:30:17.333 74700 TIP 435242 11220 6034428 2024-02-22 17:30:18.158 2024-02-22 17:30:18.158 8300 FEE 435242 20045 6034429 2024-02-22 17:30:18.158 2024-02-22 17:30:18.158 74700 TIP 435242 1823 6034430 2024-02-22 17:30:18.264 2024-02-22 17:30:18.264 8300 FEE 435242 14385 6034431 2024-02-22 17:30:18.264 2024-02-22 17:30:18.264 74700 TIP 435242 17673 6034455 2024-02-22 17:32:17.624 2024-02-22 17:32:17.624 2300 FEE 435261 5758 6034456 2024-02-22 17:32:17.624 2024-02-22 17:32:17.624 20700 TIP 435261 899 6034463 2024-02-22 17:32:18.869 2024-02-22 17:32:18.869 2300 FEE 435261 659 6034464 2024-02-22 17:32:18.869 2024-02-22 17:32:18.869 20700 TIP 435261 10591 6033819 2024-02-22 17:05:31.593 2024-02-22 17:05:31.593 27000 TIP 435235 5069 6033832 2024-02-22 17:06:29.291 2024-02-22 17:06:29.291 1000 FEE 435249 18625 6033844 2024-02-22 17:07:08.555 2024-02-22 17:07:08.555 4000 FEE 434791 9906 6033845 2024-02-22 17:07:08.555 2024-02-22 17:07:08.555 36000 TIP 434791 16296 6033850 2024-02-22 17:07:15.014 2024-02-22 17:07:15.014 4000 FEE 435019 20337 6033851 2024-02-22 17:07:15.014 2024-02-22 17:07:15.014 36000 TIP 435019 10273 6033852 2024-02-22 17:07:16.041 2024-02-22 17:07:16.041 4000 FEE 434975 2204 6033853 2024-02-22 17:07:16.041 2024-02-22 17:07:16.041 36000 TIP 434975 20479 6033875 2024-02-22 17:11:20.907 2024-02-22 17:11:20.907 1000 FEE 435253 18344 6033876 2024-02-22 17:11:24.956 2024-02-22 17:11:24.956 2100 FEE 435249 18989 6033877 2024-02-22 17:11:24.956 2024-02-22 17:11:24.956 18900 TIP 435249 7674 6033885 2024-02-22 17:11:38.933 2024-02-22 17:11:38.933 1000 FEE 434440 14213 6033886 2024-02-22 17:11:38.933 2024-02-22 17:11:38.933 9000 TIP 434440 20450 6033889 2024-02-22 17:11:49.125 2024-02-22 17:11:49.125 1000 FEE 435255 20849 6033907 2024-02-22 17:12:09.447 2024-02-22 17:12:09.447 1000 FEE 435254 11821 6033908 2024-02-22 17:12:09.447 2024-02-22 17:12:09.447 9000 TIP 435254 16351 6033941 2024-02-22 17:13:17.513 2024-02-22 17:13:17.513 2300 FEE 435241 2151 6033942 2024-02-22 17:13:17.513 2024-02-22 17:13:17.513 20700 TIP 435241 624 6033944 2024-02-22 17:13:28.961 2024-02-22 17:13:28.961 1000 FEE 435258 18448 6033955 2024-02-22 17:14:01.91 2024-02-22 17:14:01.91 100 FEE 435046 16542 6033956 2024-02-22 17:14:01.91 2024-02-22 17:14:01.91 900 TIP 435046 20187 6033985 2024-02-22 17:17:01.418 2024-02-22 17:17:01.418 2300 FEE 435242 631 6033986 2024-02-22 17:17:01.418 2024-02-22 17:17:01.418 20700 TIP 435242 14280 6033991 2024-02-22 17:17:02.044 2024-02-22 17:17:02.044 2300 FEE 435242 2711 6033992 2024-02-22 17:17:02.044 2024-02-22 17:17:02.044 20700 TIP 435242 15243 6033993 2024-02-22 17:17:02.375 2024-02-22 17:17:02.375 2300 FEE 435242 18745 6033994 2024-02-22 17:17:02.375 2024-02-22 17:17:02.375 20700 TIP 435242 19987 6034016 2024-02-22 17:17:07.895 2024-02-22 17:17:07.895 2300 FEE 435231 11866 6034017 2024-02-22 17:17:07.895 2024-02-22 17:17:07.895 20700 TIP 435231 5444 6034032 2024-02-22 17:17:12.634 2024-02-22 17:17:12.634 2300 FEE 435231 14731 6034033 2024-02-22 17:17:12.634 2024-02-22 17:17:12.634 20700 TIP 435231 19309 6034044 2024-02-22 17:17:13.614 2024-02-22 17:17:13.614 2300 FEE 435231 1236 6034045 2024-02-22 17:17:13.614 2024-02-22 17:17:13.614 20700 TIP 435231 2710 6034064 2024-02-22 17:17:15.714 2024-02-22 17:17:15.714 2300 FEE 435231 21047 6034065 2024-02-22 17:17:15.714 2024-02-22 17:17:15.714 20700 TIP 435231 19810 6034070 2024-02-22 17:17:16.212 2024-02-22 17:17:16.212 2300 FEE 435231 21222 6034071 2024-02-22 17:17:16.212 2024-02-22 17:17:16.212 20700 TIP 435231 2328 6034086 2024-02-22 17:17:18.231 2024-02-22 17:17:18.231 2300 FEE 435231 965 6034087 2024-02-22 17:17:18.231 2024-02-22 17:17:18.231 20700 TIP 435231 17541 6034098 2024-02-22 17:19:22.401 2024-02-22 17:19:22.401 100000 FEE 435263 13399 6034099 2024-02-22 17:19:38.559 2024-02-22 17:19:38.559 1000 FEE 435264 1647 6034126 2024-02-22 17:23:32.602 2024-02-22 17:23:32.602 1000 FEE 435236 16229 6034127 2024-02-22 17:23:32.602 2024-02-22 17:23:32.602 9000 TIP 435236 18675 6034130 2024-02-22 17:24:00.354 2024-02-22 17:24:00.354 1000 FEE 435269 21547 6034145 2024-02-22 17:25:10.933 2024-02-22 17:25:10.933 1600 FEE 435171 2046 6034146 2024-02-22 17:25:10.933 2024-02-22 17:25:10.933 14400 TIP 435171 16276 6034149 2024-02-22 17:25:21.499 2024-02-22 17:25:21.499 1000 FEE 435241 17953 6034150 2024-02-22 17:25:21.499 2024-02-22 17:25:21.499 9000 TIP 435241 18640 6034167 2024-02-22 17:26:36.563 2024-02-22 17:26:36.563 3000 FEE 435254 12169 6034168 2024-02-22 17:26:36.563 2024-02-22 17:26:36.563 27000 TIP 435254 19770 6034170 2024-02-22 17:26:37.352 2024-02-22 17:26:37.352 3000 FEE 435256 21522 6034171 2024-02-22 17:26:37.352 2024-02-22 17:26:37.352 27000 TIP 435256 20326 6034195 2024-02-22 17:26:40.656 2024-02-22 17:26:40.656 2300 FEE 429559 876 6034196 2024-02-22 17:26:40.656 2024-02-22 17:26:40.656 20700 TIP 429559 2780 6034217 2024-02-22 17:26:47.056 2024-02-22 17:26:47.056 2300 FEE 433844 17673 6034218 2024-02-22 17:26:47.056 2024-02-22 17:26:47.056 20700 TIP 433844 10013 6034229 2024-02-22 17:26:48.236 2024-02-22 17:26:48.236 2300 FEE 433844 20687 6034230 2024-02-22 17:26:48.236 2024-02-22 17:26:48.236 20700 TIP 433844 20681 6034235 2024-02-22 17:26:48.68 2024-02-22 17:26:48.68 2300 FEE 433844 5017 6034236 2024-02-22 17:26:48.68 2024-02-22 17:26:48.68 20700 TIP 433844 17570 6034253 2024-02-22 17:26:50.502 2024-02-22 17:26:50.502 2300 FEE 433844 12218 6034254 2024-02-22 17:26:50.502 2024-02-22 17:26:50.502 20700 TIP 433844 822 6034255 2024-02-22 17:26:50.669 2024-02-22 17:26:50.669 2300 FEE 433844 7773 6034256 2024-02-22 17:26:50.669 2024-02-22 17:26:50.669 20700 TIP 433844 11395 6034277 2024-02-22 17:26:52.918 2024-02-22 17:26:52.918 2300 FEE 433844 21520 6034278 2024-02-22 17:26:52.918 2024-02-22 17:26:52.918 20700 TIP 433844 16424 6034281 2024-02-22 17:26:53.269 2024-02-22 17:26:53.269 2300 FEE 433844 5387 6034282 2024-02-22 17:26:53.269 2024-02-22 17:26:53.269 20700 TIP 433844 2774 6034291 2024-02-22 17:26:55.278 2024-02-22 17:26:55.278 2300 FEE 433844 9426 6034292 2024-02-22 17:26:55.278 2024-02-22 17:26:55.278 20700 TIP 433844 777 6034293 2024-02-22 17:26:55.432 2024-02-22 17:26:55.432 2300 FEE 433844 9353 6034294 2024-02-22 17:26:55.432 2024-02-22 17:26:55.432 20700 TIP 433844 3990 6034321 2024-02-22 17:28:14.206 2024-02-22 17:28:14.206 2300 FEE 435241 21624 6034322 2024-02-22 17:28:14.206 2024-02-22 17:28:14.206 20700 TIP 435241 21338 6034327 2024-02-22 17:28:14.443 2024-02-22 17:28:14.443 4600 FEE 435241 9242 6034328 2024-02-22 17:28:14.443 2024-02-22 17:28:14.443 41400 TIP 435241 1673 6034346 2024-02-22 17:29:02.401 2024-02-22 17:29:02.401 8300 FEE 435231 12289 6034347 2024-02-22 17:29:02.401 2024-02-22 17:29:02.401 74700 TIP 435231 1401 6034350 2024-02-22 17:29:02.65 2024-02-22 17:29:02.65 8300 FEE 435231 8544 6034351 2024-02-22 17:29:02.65 2024-02-22 17:29:02.65 74700 TIP 435231 21506 6034355 2024-02-22 17:29:03.916 2024-02-22 17:29:03.916 8300 FEE 435231 9482 6034356 2024-02-22 17:29:03.916 2024-02-22 17:29:03.916 74700 TIP 435231 21506 6034362 2024-02-22 17:29:15.319 2024-02-22 17:29:15.319 1000 FEE 435183 20849 6034363 2024-02-22 17:29:15.319 2024-02-22 17:29:15.319 9000 TIP 435183 15594 6034370 2024-02-22 17:29:30.709 2024-02-22 17:29:30.709 2100 FEE 435269 5449 6034371 2024-02-22 17:29:30.709 2024-02-22 17:29:30.709 18900 TIP 435269 1959 6034382 2024-02-22 17:30:14.996 2024-02-22 17:30:14.996 8300 FEE 435242 11443 6034383 2024-02-22 17:30:14.996 2024-02-22 17:30:14.996 74700 TIP 435242 2674 6034396 2024-02-22 17:30:15.79 2024-02-22 17:30:15.79 8300 FEE 435242 15243 6034397 2024-02-22 17:30:15.79 2024-02-22 17:30:15.79 74700 TIP 435242 18387 6034402 2024-02-22 17:30:16.122 2024-02-22 17:30:16.122 8300 FEE 435242 10934 6034403 2024-02-22 17:30:16.122 2024-02-22 17:30:16.122 74700 TIP 435242 21116 6034426 2024-02-22 17:30:18.046 2024-02-22 17:30:18.046 8300 FEE 435242 3213 6034427 2024-02-22 17:30:18.046 2024-02-22 17:30:18.046 74700 TIP 435242 7097 6034461 2024-02-22 17:32:18.704 2024-02-22 17:32:18.704 2300 FEE 435261 19403 6034462 2024-02-22 17:32:18.704 2024-02-22 17:32:18.704 20700 TIP 435261 27 6034467 2024-02-22 17:32:21.546 2024-02-22 17:32:21.546 2300 FEE 435263 10094 6034468 2024-02-22 17:32:21.546 2024-02-22 17:32:21.546 20700 TIP 435263 690 6034473 2024-02-22 17:32:46.595 2024-02-22 17:32:46.595 8300 FEE 435261 20511 6034474 2024-02-22 17:32:46.595 2024-02-22 17:32:46.595 74700 TIP 435261 18819 6034504 2024-02-22 17:33:29.348 2024-02-22 17:33:29.348 900 FEE 435284 6700 6034505 2024-02-22 17:33:29.348 2024-02-22 17:33:29.348 8100 TIP 435284 8376 6034512 2024-02-22 17:33:38.824 2024-02-22 17:33:38.824 10000 FEE 435291 6191 6034516 2024-02-22 17:34:32.867 2024-02-22 17:34:32.867 4000 FEE 435261 2233 6034517 2024-02-22 17:34:32.867 2024-02-22 17:34:32.867 36000 TIP 435261 21323 6034522 2024-02-22 17:35:10.374 2024-02-22 17:35:10.374 2500 FEE 435046 14785 6033821 2024-02-22 17:05:33.139 2024-02-22 17:05:33.139 27000 TIP 435232 2844 6033827 2024-02-22 17:05:58.945 2024-02-22 17:05:58.945 3000 FEE 435238 10007 6033828 2024-02-22 17:05:58.945 2024-02-22 17:05:58.945 27000 TIP 435238 12946 6033854 2024-02-22 17:07:17.441 2024-02-22 17:07:17.441 4000 FEE 434994 21373 6033855 2024-02-22 17:07:17.441 2024-02-22 17:07:17.441 36000 TIP 434994 5809 6033865 2024-02-22 17:08:19.244 2024-02-22 17:08:19.244 10000 FEE 435046 909 6033866 2024-02-22 17:08:19.244 2024-02-22 17:08:19.244 90000 TIP 435046 1577 6033869 2024-02-22 17:10:37.363 2024-02-22 17:10:37.363 75000 DONT_LIKE_THIS 435250 17172 6033881 2024-02-22 17:11:38.137 2024-02-22 17:11:38.137 1000 FEE 434440 18403 6033882 2024-02-22 17:11:38.137 2024-02-22 17:11:38.137 9000 TIP 434440 1064 6033883 2024-02-22 17:11:38.534 2024-02-22 17:11:38.534 1000 FEE 434440 1705 6033884 2024-02-22 17:11:38.534 2024-02-22 17:11:38.534 9000 TIP 434440 20973 6033893 2024-02-22 17:12:05.298 2024-02-22 17:12:05.298 1000 FEE 435238 18380 6033894 2024-02-22 17:12:05.298 2024-02-22 17:12:05.298 9000 TIP 435238 5487 6033919 2024-02-22 17:13:15.614 2024-02-22 17:13:15.614 2300 FEE 435241 20852 6033920 2024-02-22 17:13:15.614 2024-02-22 17:13:15.614 20700 TIP 435241 12356 6033921 2024-02-22 17:13:16.179 2024-02-22 17:13:16.179 2300 FEE 435241 18533 6033922 2024-02-22 17:13:16.179 2024-02-22 17:13:16.179 20700 TIP 435241 16839 6033947 2024-02-22 17:13:41.015 2024-02-22 17:13:41.015 2100 FEE 435241 12072 6033948 2024-02-22 17:13:41.015 2024-02-22 17:13:41.015 18900 TIP 435241 9084 6033949 2024-02-22 17:13:42.14 2024-02-22 17:13:42.14 2100 FEE 435241 21254 6033950 2024-02-22 17:13:42.14 2024-02-22 17:13:42.14 18900 TIP 435241 16747 6033965 2024-02-22 17:14:32.72 2024-02-22 17:14:32.72 9000 FEE 435252 19501 6033966 2024-02-22 17:14:32.72 2024-02-22 17:14:32.72 81000 TIP 435252 16004 6033972 2024-02-22 17:15:44.988 2024-02-22 17:15:44.988 900000 FEE 435046 18351 6033973 2024-02-22 17:15:44.988 2024-02-22 17:15:44.988 8100000 TIP 435046 825 6033987 2024-02-22 17:17:01.708 2024-02-22 17:17:01.708 2300 FEE 435242 11716 6033988 2024-02-22 17:17:01.708 2024-02-22 17:17:01.708 20700 TIP 435242 1577 6034006 2024-02-22 17:17:06.936 2024-02-22 17:17:06.936 2300 FEE 435231 18774 6034007 2024-02-22 17:17:06.936 2024-02-22 17:17:06.936 20700 TIP 435231 671 6034050 2024-02-22 17:17:14.227 2024-02-22 17:17:14.227 4600 FEE 435231 14074 6034051 2024-02-22 17:17:14.227 2024-02-22 17:17:14.227 41400 TIP 435231 6573 6034054 2024-02-22 17:17:14.87 2024-02-22 17:17:14.87 2300 FEE 435231 18751 6034055 2024-02-22 17:17:14.87 2024-02-22 17:17:14.87 20700 TIP 435231 16440 6034068 2024-02-22 17:17:16.041 2024-02-22 17:17:16.041 2300 FEE 435231 1454 6034069 2024-02-22 17:17:16.041 2024-02-22 17:17:16.041 20700 TIP 435231 20182 6034084 2024-02-22 17:17:18.06 2024-02-22 17:17:18.06 2300 FEE 435231 20276 6034085 2024-02-22 17:17:18.06 2024-02-22 17:17:18.06 20700 TIP 435231 20454 6034118 2024-02-22 17:22:18.466 2024-02-22 17:22:18.466 900 FEE 435120 1718 6034119 2024-02-22 17:22:18.466 2024-02-22 17:22:18.466 8100 TIP 435120 20906 6034124 2024-02-22 17:23:20.143 2024-02-22 17:23:20.143 1000 FEE 435224 16194 6034125 2024-02-22 17:23:20.143 2024-02-22 17:23:20.143 9000 TIP 435224 3342 6034159 2024-02-22 17:25:45.385 2024-02-22 17:25:45.385 1000 FEE 435240 15556 6034160 2024-02-22 17:25:45.385 2024-02-22 17:25:45.385 9000 TIP 435240 15094 6034161 2024-02-22 17:25:56.679 2024-02-22 17:25:56.679 1000 FEE 435274 7992 6034172 2024-02-22 17:26:38.387 2024-02-22 17:26:38.387 2300 FEE 429559 4064 6034173 2024-02-22 17:26:38.387 2024-02-22 17:26:38.387 20700 TIP 429559 4304 6034176 2024-02-22 17:26:38.666 2024-02-22 17:26:38.666 2300 FEE 429559 18225 6034177 2024-02-22 17:26:38.666 2024-02-22 17:26:38.666 20700 TIP 429559 17095 6034203 2024-02-22 17:26:41.193 2024-02-22 17:26:41.193 2300 FEE 429559 11145 6034204 2024-02-22 17:26:41.193 2024-02-22 17:26:41.193 20700 TIP 429559 19394 6034219 2024-02-22 17:26:47.202 2024-02-22 17:26:47.202 2300 FEE 433844 1571 6034157 2024-02-22 17:25:36.594 2024-02-22 17:25:36.594 9000 TIP 435260 15890 6034180 2024-02-22 17:26:38.977 2024-02-22 17:26:38.977 2300 FEE 429559 19583 6034181 2024-02-22 17:26:38.977 2024-02-22 17:26:38.977 20700 TIP 429559 9378 6034188 2024-02-22 17:26:39.648 2024-02-22 17:26:39.648 2300 FEE 429559 20381 6034189 2024-02-22 17:26:39.648 2024-02-22 17:26:39.648 20700 TIP 429559 20642 6034199 2024-02-22 17:26:40.94 2024-02-22 17:26:40.94 2300 FEE 429559 2724 6034200 2024-02-22 17:26:40.94 2024-02-22 17:26:40.94 20700 TIP 429559 6419 6034263 2024-02-22 17:26:51.524 2024-02-22 17:26:51.524 2300 FEE 433844 1428 6034264 2024-02-22 17:26:51.524 2024-02-22 17:26:51.524 20700 TIP 433844 21540 6034273 2024-02-22 17:26:52.586 2024-02-22 17:26:52.586 2300 FEE 433844 11018 6034274 2024-02-22 17:26:52.586 2024-02-22 17:26:52.586 20700 TIP 433844 1286 6034275 2024-02-22 17:26:52.754 2024-02-22 17:26:52.754 2300 FEE 433844 16309 6034276 2024-02-22 17:26:52.754 2024-02-22 17:26:52.754 20700 TIP 433844 15180 6034287 2024-02-22 17:26:54.343 2024-02-22 17:26:54.343 2300 FEE 433844 18269 6034288 2024-02-22 17:26:54.343 2024-02-22 17:26:54.343 20700 TIP 433844 5425 6034339 2024-02-22 17:28:33.434 2024-02-22 17:28:33.434 1000 FEE 435279 10698 6034340 2024-02-22 17:28:35.634 2024-02-22 17:28:35.634 1000 FEE 435170 11590 6034341 2024-02-22 17:28:35.634 2024-02-22 17:28:35.634 9000 TIP 435170 8945 6034359 2024-02-22 17:29:06.917 2024-02-22 17:29:06.917 1000 FEE 435154 15045 6034360 2024-02-22 17:29:06.917 2024-02-22 17:29:06.917 9000 TIP 435154 11996 6034361 2024-02-22 17:29:14.96 2024-02-22 17:29:14.96 1000 FEE 435280 18524 6034372 2024-02-22 17:29:30.73 2024-02-22 17:29:30.73 1000 FEE 435281 10393 6034380 2024-02-22 17:30:14.787 2024-02-22 17:30:14.787 8300 FEE 435242 18314 6034381 2024-02-22 17:30:14.787 2024-02-22 17:30:14.787 74700 TIP 435242 14278 6034388 2024-02-22 17:30:15.426 2024-02-22 17:30:15.426 8300 FEE 435242 20619 6034389 2024-02-22 17:30:15.426 2024-02-22 17:30:15.426 74700 TIP 435242 18138 6034404 2024-02-22 17:30:16.237 2024-02-22 17:30:16.237 8300 FEE 435242 20969 6034405 2024-02-22 17:30:16.237 2024-02-22 17:30:16.237 74700 TIP 435242 11866 6034424 2024-02-22 17:30:17.93 2024-02-22 17:30:17.93 8300 FEE 435242 20655 6034425 2024-02-22 17:30:17.93 2024-02-22 17:30:17.93 74700 TIP 435242 20523 6034436 2024-02-22 17:30:58.026 2024-02-22 17:30:58.026 1000 FEE 435282 21387 6034437 2024-02-22 17:30:58.409 2024-02-22 17:30:58.409 1000 FEE 435283 21386 6034487 2024-02-22 17:32:47.871 2024-02-22 17:32:47.871 8300 FEE 435261 21451 6034488 2024-02-22 17:32:47.871 2024-02-22 17:32:47.871 74700 TIP 435261 18051 6034500 2024-02-22 17:33:15.262 2024-02-22 17:33:15.262 1000 FEE 435277 21498 6034501 2024-02-22 17:33:15.262 2024-02-22 17:33:15.262 9000 TIP 435277 19267 6034524 2024-02-22 17:35:34.838 2024-02-22 17:35:34.838 8300 FEE 435284 17570 6034525 2024-02-22 17:35:34.838 2024-02-22 17:35:34.838 74700 TIP 435284 19732 6034532 2024-02-22 17:35:59.979 2024-02-22 17:35:59.979 2100 FEE 435251 14152 6034533 2024-02-22 17:35:59.979 2024-02-22 17:35:59.979 18900 TIP 435251 16543 6034534 2024-02-22 17:36:01.049 2024-02-22 17:36:01.049 2100 FEE 435278 20555 6034535 2024-02-22 17:36:01.049 2024-02-22 17:36:01.049 18900 TIP 435278 3709 6034565 2024-02-22 17:40:11.792 2024-02-22 17:40:11.792 3300 FEE 435287 16667 6034566 2024-02-22 17:40:11.792 2024-02-22 17:40:11.792 29700 TIP 435287 20573 6034593 2024-02-22 17:41:00.647 2024-02-22 17:41:00.647 1000 FEE 435291 738 6034594 2024-02-22 17:41:00.647 2024-02-22 17:41:00.647 9000 TIP 435291 1631 6034597 2024-02-22 17:41:01.579 2024-02-22 17:41:01.579 1000 FEE 435291 9036 6034598 2024-02-22 17:41:01.579 2024-02-22 17:41:01.579 9000 TIP 435291 9433 6034604 2024-02-22 17:41:54.213 2024-02-22 17:41:54.213 3000 FEE 435303 20153 6034605 2024-02-22 17:41:54.213 2024-02-22 17:41:54.213 27000 TIP 435303 21374 6034634 2024-02-22 17:43:12.363 2024-02-22 17:43:12.363 1000 FEE 435298 20683 6034635 2024-02-22 17:43:12.363 2024-02-22 17:43:12.363 9000 TIP 435298 7668 6034658 2024-02-22 17:46:49.979 2024-02-22 17:46:49.979 3200 FEE 435281 1717 6034659 2024-02-22 17:46:49.979 2024-02-22 17:46:49.979 28800 TIP 435281 16988 6034683 2024-02-22 17:47:58.452 2024-02-22 17:47:58.452 100 FEE 435224 2338 6034684 2024-02-22 17:47:58.452 2024-02-22 17:47:58.452 900 TIP 435224 2347 6034697 2024-02-22 17:48:28.977 2024-02-22 17:48:28.977 1000 FEE 435316 631 6034739 2024-02-22 17:49:55.524 2024-02-22 17:49:55.524 2100 FEE 434958 1825 6034740 2024-02-22 17:49:55.524 2024-02-22 17:49:55.524 18900 TIP 434958 1585 6034781 2024-02-22 17:50:47.716 2024-02-22 17:50:47.716 2300 FEE 435308 16747 6034782 2024-02-22 17:50:47.716 2024-02-22 17:50:47.716 20700 TIP 435308 16571 6034823 2024-02-22 17:55:42.576 2024-02-22 17:55:42.576 5000 FEE 435328 4304 6034824 2024-02-22 17:55:42.576 2024-02-22 17:55:42.576 45000 TIP 435328 20381 6034850 2024-02-22 17:56:40.012 2024-02-22 17:56:40.012 9000 FEE 435323 19524 6034851 2024-02-22 17:56:40.012 2024-02-22 17:56:40.012 81000 TIP 435323 5775 6034854 2024-02-22 17:56:54.371 2024-02-22 17:56:54.371 1000 FEE 435321 8416 6034855 2024-02-22 17:56:54.371 2024-02-22 17:56:54.371 9000 TIP 435321 795 6034863 2024-02-22 17:57:52.113 2024-02-22 17:57:52.113 500 FEE 435331 1142 6034864 2024-02-22 17:57:52.113 2024-02-22 17:57:52.113 4500 TIP 435331 9494 6034868 2024-02-22 17:58:03.939 2024-02-22 17:58:03.939 1000 FEE 435336 20490 6034872 2024-02-22 17:58:39.564 2024-02-22 17:58:39.564 3300 FEE 435217 1959 6034873 2024-02-22 17:58:39.564 2024-02-22 17:58:39.564 29700 TIP 435217 19952 6034877 2024-02-22 17:59:15.185 2024-02-22 17:59:15.185 3300 FEE 435275 10944 6034878 2024-02-22 17:59:15.185 2024-02-22 17:59:15.185 29700 TIP 435275 21492 6034898 2024-02-22 17:59:24.417 2024-02-22 17:59:24.417 8900 FEE 435277 9307 6034899 2024-02-22 17:59:24.417 2024-02-22 17:59:24.417 80100 TIP 435277 13143 6034900 2024-02-22 17:59:34.161 2024-02-22 17:59:34.161 1000 FEE 435338 9099 6034905 2024-02-22 18:00:04.962 2024-02-22 18:00:04.962 100000 FEE 435340 11698 6034915 2024-02-22 18:00:24.94 2024-02-22 18:00:24.94 3300 FEE 435136 9427 6034916 2024-02-22 18:00:24.94 2024-02-22 18:00:24.94 29700 TIP 435136 9362 6034929 2024-02-22 18:01:12.364 2024-02-22 18:01:12.364 1000 FEE 435344 946 6034932 2024-02-22 18:01:14.797 2024-02-22 18:01:14.797 3300 FEE 435274 19193 6034933 2024-02-22 18:01:14.797 2024-02-22 18:01:14.797 29700 TIP 435274 649 6034951 2024-02-22 18:01:43.095 2024-02-22 18:01:43.095 1000 FEE 435346 2735 6034952 2024-02-22 18:01:52.482 2024-02-22 18:01:52.482 2100 FEE 435343 13177 6034953 2024-02-22 18:01:52.482 2024-02-22 18:01:52.482 18900 TIP 435343 16543 6034967 2024-02-22 18:04:25.33 2024-02-22 18:04:25.33 1000 FEE 435263 20143 6034968 2024-02-22 18:04:25.33 2024-02-22 18:04:25.33 9000 TIP 435263 18180 6034980 2024-02-22 18:04:48.011 2024-02-22 18:04:48.011 8300 FEE 435327 19459 6034981 2024-02-22 18:04:48.011 2024-02-22 18:04:48.011 74700 TIP 435327 20849 6034984 2024-02-22 18:04:48.224 2024-02-22 18:04:48.224 8300 FEE 435327 18945 6034985 2024-02-22 18:04:48.224 2024-02-22 18:04:48.224 74700 TIP 435327 9150 6035014 2024-02-22 18:05:46.249 2024-02-22 18:05:46.249 1000 FEE 435328 2367 6035015 2024-02-22 18:05:46.249 2024-02-22 18:05:46.249 9000 TIP 435328 1712 6035026 2024-02-22 18:05:54.999 2024-02-22 18:05:54.999 1000 FEE 435314 15510 6035027 2024-02-22 18:05:54.999 2024-02-22 18:05:54.999 9000 TIP 435314 10818 6035034 2024-02-22 18:05:56.31 2024-02-22 18:05:56.31 1000 FEE 435314 1483 6035035 2024-02-22 18:05:56.31 2024-02-22 18:05:56.31 9000 TIP 435314 16543 6035046 2024-02-22 18:06:00.905 2024-02-22 18:06:00.905 8300 FEE 435231 1632 6035047 2024-02-22 18:06:00.905 2024-02-22 18:06:00.905 74700 TIP 435231 21349 6035062 2024-02-22 18:08:01.639 2024-02-22 18:08:01.639 1000 FEE 433456 19902 6035063 2024-02-22 18:08:01.639 2024-02-22 18:08:01.639 9000 TIP 433456 14465 6035093 2024-02-22 18:11:00.233 2024-02-22 18:11:00.233 10000 FEE 435351 20302 6035096 2024-02-22 18:11:02.285 2024-02-22 18:11:02.285 900 FEE 435349 1836 6035097 2024-02-22 18:11:02.285 2024-02-22 18:11:02.285 8100 TIP 435349 18539 6035109 2024-02-22 18:11:40.979 2024-02-22 18:11:40.979 10000 FEE 433878 5942 6034220 2024-02-22 17:26:47.202 2024-02-22 17:26:47.202 20700 TIP 433844 20636 6034223 2024-02-22 17:26:47.795 2024-02-22 17:26:47.795 2300 FEE 433844 1468 6034224 2024-02-22 17:26:47.795 2024-02-22 17:26:47.795 20700 TIP 433844 6515 6034231 2024-02-22 17:26:48.409 2024-02-22 17:26:48.409 2300 FEE 433844 1552 6034232 2024-02-22 17:26:48.409 2024-02-22 17:26:48.409 20700 TIP 433844 18265 6034239 2024-02-22 17:26:49.153 2024-02-22 17:26:49.153 2300 FEE 433844 8726 6034240 2024-02-22 17:26:49.153 2024-02-22 17:26:49.153 20700 TIP 433844 9339 6034265 2024-02-22 17:26:51.687 2024-02-22 17:26:51.687 2300 FEE 433844 1002 6034266 2024-02-22 17:26:51.687 2024-02-22 17:26:51.687 20700 TIP 433844 919 6034357 2024-02-22 17:29:04.154 2024-02-22 17:29:04.154 16600 FEE 435231 9275 6034358 2024-02-22 17:29:04.154 2024-02-22 17:29:04.154 149400 TIP 435231 11789 6034390 2024-02-22 17:30:15.49 2024-02-22 17:30:15.49 8300 FEE 435242 15521 6034391 2024-02-22 17:30:15.49 2024-02-22 17:30:15.49 74700 TIP 435242 1352 6034412 2024-02-22 17:30:16.704 2024-02-22 17:30:16.704 8300 FEE 435242 20162 6034413 2024-02-22 17:30:16.704 2024-02-22 17:30:16.704 74700 TIP 435242 21090 6034418 2024-02-22 17:30:17.589 2024-02-22 17:30:17.589 8300 FEE 435242 9275 6034419 2024-02-22 17:30:17.589 2024-02-22 17:30:17.589 74700 TIP 435242 13622 6034434 2024-02-22 17:30:18.487 2024-02-22 17:30:18.487 8300 FEE 435242 13046 6034435 2024-02-22 17:30:18.487 2024-02-22 17:30:18.487 74700 TIP 435242 14795 6034445 2024-02-22 17:32:16.48 2024-02-22 17:32:16.48 2300 FEE 435261 20094 6034446 2024-02-22 17:32:16.48 2024-02-22 17:32:16.48 20700 TIP 435261 20683 6034453 2024-02-22 17:32:16.961 2024-02-22 17:32:16.961 2300 FEE 435261 17693 6034454 2024-02-22 17:32:16.961 2024-02-22 17:32:16.961 20700 TIP 435261 19664 6034472 2024-02-22 17:32:42.203 2024-02-22 17:32:42.203 1000 FEE 435288 1316 6034485 2024-02-22 17:32:47.808 2024-02-22 17:32:47.808 8300 FEE 435261 20674 6034486 2024-02-22 17:32:47.808 2024-02-22 17:32:47.808 74700 TIP 435261 20156 6034498 2024-02-22 17:32:49.113 2024-02-22 17:32:49.113 1000 FEE 435290 5449 6034510 2024-02-22 17:33:35.16 2024-02-22 17:33:35.16 900 FEE 435280 1618 6034511 2024-02-22 17:33:35.16 2024-02-22 17:33:35.16 8100 TIP 435280 21365 6034514 2024-02-22 17:34:12.633 2024-02-22 17:34:12.633 1000 FEE 435293 14169 6034582 2024-02-22 17:40:27.751 2024-02-22 17:40:27.751 400 FEE 435302 20495 6034583 2024-02-22 17:40:27.751 2024-02-22 17:40:27.751 3600 TIP 435302 9150 6034621 2024-02-22 17:42:59.824 2024-02-22 17:42:59.824 2100 FEE 435046 21242 6034622 2024-02-22 17:42:59.824 2024-02-22 17:42:59.824 18900 TIP 435046 1291 6034640 2024-02-22 17:44:17.004 2024-02-22 17:44:17.004 200 FEE 435293 19796 6034641 2024-02-22 17:44:17.004 2024-02-22 17:44:17.004 1800 TIP 435293 687 6034651 2024-02-22 17:46:20.901 2024-02-22 17:46:20.901 400 FEE 434896 902 6034652 2024-02-22 17:46:20.901 2024-02-22 17:46:20.901 3600 TIP 434896 19809 6034669 2024-02-22 17:47:21.69 2024-02-22 17:47:21.69 1000 FEE 435313 12278 6034679 2024-02-22 17:47:56.33 2024-02-22 17:47:56.33 100 FEE 435236 3717 6034680 2024-02-22 17:47:56.33 2024-02-22 17:47:56.33 900 TIP 435236 17103 6034689 2024-02-22 17:48:02.314 2024-02-22 17:48:02.314 1000 FEE 435315 19118 6034699 2024-02-22 17:49:00.499 2024-02-22 17:49:00.499 0 FEE 435317 1135 6034715 2024-02-22 17:49:28.948 2024-02-22 17:49:28.948 2100 FEE 434917 15367 6034716 2024-02-22 17:49:28.948 2024-02-22 17:49:28.948 18900 TIP 434917 6202 6034717 2024-02-22 17:49:31.887 2024-02-22 17:49:31.887 2100 FEE 434954 19601 6034718 2024-02-22 17:49:31.887 2024-02-22 17:49:31.887 18900 TIP 434954 21269 6034737 2024-02-22 17:49:53.326 2024-02-22 17:49:53.326 100 FEE 435314 12738 6034738 2024-02-22 17:49:53.326 2024-02-22 17:49:53.326 900 TIP 435314 13927 6034754 2024-02-22 17:50:03.621 2024-02-22 17:50:03.621 2100 FEE 435026 2963 6034755 2024-02-22 17:50:03.621 2024-02-22 17:50:03.621 18900 TIP 435026 18896 6034758 2024-02-22 17:50:24.884 2024-02-22 17:50:24.884 2100 FEE 435270 20554 6034759 2024-02-22 17:50:24.884 2024-02-22 17:50:24.884 18900 TIP 435270 11750 6034760 2024-02-22 17:50:28.289 2024-02-22 17:50:28.289 2100 FEE 435217 5003 6034761 2024-02-22 17:50:28.289 2024-02-22 17:50:28.289 18900 TIP 435217 678 6034775 2024-02-22 17:50:47.132 2024-02-22 17:50:47.132 27000 FEE 435312 733 6034776 2024-02-22 17:50:47.132 2024-02-22 17:50:47.132 243000 TIP 435312 4345 6034784 2024-02-22 17:51:10.725 2024-02-22 17:51:10.725 2100 FEE 435226 8074 6034785 2024-02-22 17:51:10.725 2024-02-22 17:51:10.725 18900 TIP 435226 21091 6034789 2024-02-22 17:51:46.944 2024-02-22 17:51:46.944 1000 FEE 435320 15577 6034806 2024-02-22 17:54:09.778 2024-02-22 17:54:09.778 1000 FEE 435326 17592 6034822 2024-02-22 17:55:19.43 2024-02-22 17:55:19.43 100000 FEE 435328 11862 6034841 2024-02-22 17:55:50.222 2024-02-22 17:55:50.222 90000 FEE 435328 1495 6034842 2024-02-22 17:55:50.222 2024-02-22 17:55:50.222 810000 TIP 435328 13246 6034858 2024-02-22 17:57:23.995 2024-02-22 17:57:23.995 1000 FEE 435333 5175 6034859 2024-02-22 17:57:27.419 2024-02-22 17:57:27.419 800 FEE 435315 18460 6034860 2024-02-22 17:57:27.419 2024-02-22 17:57:27.419 7200 TIP 435315 2711 6034874 2024-02-22 17:58:39.773 2024-02-22 17:58:39.773 3300 FEE 435217 929 6034875 2024-02-22 17:58:39.773 2024-02-22 17:58:39.773 29700 TIP 435217 21037 6034881 2024-02-22 17:59:15.316 2024-02-22 17:59:15.316 3300 FEE 435275 10060 6034882 2024-02-22 17:59:15.316 2024-02-22 17:59:15.316 29700 TIP 435275 760 6034908 2024-02-22 18:00:10.164 2024-02-22 18:00:10.164 0 FEE 435339 6687 6034909 2024-02-22 18:00:15.572 2024-02-22 18:00:15.572 3300 FEE 435030 929 6034910 2024-02-22 18:00:15.572 2024-02-22 18:00:15.572 29700 TIP 435030 19813 6034947 2024-02-22 18:01:38.976 2024-02-22 18:01:38.976 3300 FEE 435171 1817 6034948 2024-02-22 18:01:38.976 2024-02-22 18:01:38.976 29700 TIP 435171 954 6034988 2024-02-22 18:04:48.577 2024-02-22 18:04:48.577 8300 FEE 435327 12122 6034989 2024-02-22 18:04:48.577 2024-02-22 18:04:48.577 74700 TIP 435327 8423 6034990 2024-02-22 18:04:48.69 2024-02-22 18:04:48.69 8300 FEE 435327 909 6034991 2024-02-22 18:04:48.69 2024-02-22 18:04:48.69 74700 TIP 435327 20691 6034994 2024-02-22 18:04:48.905 2024-02-22 18:04:48.905 8300 FEE 435327 673 6034995 2024-02-22 18:04:48.905 2024-02-22 18:04:48.905 74700 TIP 435327 14785 6034996 2024-02-22 18:04:49.025 2024-02-22 18:04:49.025 8300 FEE 435327 1650 6034241 2024-02-22 17:26:49.315 2024-02-22 17:26:49.315 2300 FEE 433844 19174 6034242 2024-02-22 17:26:49.315 2024-02-22 17:26:49.315 20700 TIP 433844 18188 6034247 2024-02-22 17:26:49.855 2024-02-22 17:26:49.855 2300 FEE 433844 20187 6034248 2024-02-22 17:26:49.855 2024-02-22 17:26:49.855 20700 TIP 433844 1438 6034249 2024-02-22 17:26:50.034 2024-02-22 17:26:50.034 2300 FEE 433844 1394 6034250 2024-02-22 17:26:50.034 2024-02-22 17:26:50.034 20700 TIP 433844 6533 6034267 2024-02-22 17:26:51.85 2024-02-22 17:26:51.85 2300 FEE 433844 19576 6034268 2024-02-22 17:26:51.85 2024-02-22 17:26:51.85 20700 TIP 433844 6578 6034302 2024-02-22 17:28:08.916 2024-02-22 17:28:08.916 1000 FEE 435278 18989 6034307 2024-02-22 17:28:12.787 2024-02-22 17:28:12.787 2300 FEE 435241 763 6034308 2024-02-22 17:28:12.787 2024-02-22 17:28:12.787 20700 TIP 435241 18533 6034342 2024-02-22 17:28:56.826 2024-02-22 17:28:56.826 1000 FEE 435018 1480 6034343 2024-02-22 17:28:56.826 2024-02-22 17:28:56.826 9000 TIP 435018 19038 6034384 2024-02-22 17:30:15.115 2024-02-22 17:30:15.115 8300 FEE 435242 19381 6034385 2024-02-22 17:30:15.115 2024-02-22 17:30:15.115 74700 TIP 435242 20778 6034398 2024-02-22 17:30:15.898 2024-02-22 17:30:15.898 8300 FEE 435242 895 6034399 2024-02-22 17:30:15.898 2024-02-22 17:30:15.898 74700 TIP 435242 4304 6034432 2024-02-22 17:30:18.39 2024-02-22 17:30:18.39 8300 FEE 435242 11450 6034433 2024-02-22 17:30:18.39 2024-02-22 17:30:18.39 74700 TIP 435242 15488 6034469 2024-02-22 17:32:21.909 2024-02-22 17:32:21.909 2300 FEE 435263 18005 6034470 2024-02-22 17:32:21.909 2024-02-22 17:32:21.909 20700 TIP 435263 7587 6034471 2024-02-22 17:32:28.49 2024-02-22 17:32:28.49 1000 FEE 435287 965 6034481 2024-02-22 17:32:47.046 2024-02-22 17:32:47.046 8300 FEE 435261 14515 6034482 2024-02-22 17:32:47.046 2024-02-22 17:32:47.046 74700 TIP 435261 19581 6034515 2024-02-22 17:34:19.145 2024-02-22 17:34:19.145 1000 FEE 435294 11648 6034520 2024-02-22 17:35:07.317 2024-02-22 17:35:07.317 2500 FEE 435046 756 6034521 2024-02-22 17:35:07.317 2024-02-22 17:35:07.317 22500 TIP 435046 979 6034538 2024-02-22 17:36:16.463 2024-02-22 17:36:16.463 1000 FEE 435296 825 6034539 2024-02-22 17:36:16.924 2024-02-22 17:36:16.924 1000 FEE 435297 19815 6034546 2024-02-22 17:37:10.475 2024-02-22 17:37:10.475 1000 FEE 435298 11820 6034552 2024-02-22 17:38:12.545 2024-02-22 17:38:12.545 0 FEE 383547 5444 6034553 2024-02-22 17:38:15.869 2024-02-22 17:38:15.869 1000 FEE 435300 670 6034568 2024-02-22 17:40:14.731 2024-02-22 17:40:14.731 3300 FEE 435297 19566 6034569 2024-02-22 17:40:14.731 2024-02-22 17:40:14.731 29700 TIP 435297 16329 6034576 2024-02-22 17:40:17.279 2024-02-22 17:40:17.279 1000 FEE 435294 18743 6034577 2024-02-22 17:40:17.279 2024-02-22 17:40:17.279 9000 TIP 435294 19158 6034601 2024-02-22 17:41:02.457 2024-02-22 17:41:02.457 1000 FEE 435291 21498 6034602 2024-02-22 17:41:02.457 2024-02-22 17:41:02.457 9000 TIP 435291 7903 6034608 2024-02-22 17:41:58.152 2024-02-22 17:41:58.152 100 FEE 435046 7425 6034609 2024-02-22 17:41:58.152 2024-02-22 17:41:58.152 900 TIP 435046 14370 6034619 2024-02-22 17:42:55.731 2024-02-22 17:42:55.731 1000 FEE 435301 11018 6034620 2024-02-22 17:42:55.731 2024-02-22 17:42:55.731 9000 TIP 435301 5557 6034630 2024-02-22 17:43:07.614 2024-02-22 17:43:07.614 2100 FEE 435242 8713 6034631 2024-02-22 17:43:07.614 2024-02-22 17:43:07.614 18900 TIP 435242 1628 6034653 2024-02-22 17:46:22.04 2024-02-22 17:46:22.04 1000 FEE 435310 13217 6034665 2024-02-22 17:47:03.65 2024-02-22 17:47:03.65 9000 FEE 435261 5752 6034666 2024-02-22 17:47:03.65 2024-02-22 17:47:03.65 81000 TIP 435261 13406 6034681 2024-02-22 17:47:56.497 2024-02-22 17:47:56.497 900 FEE 435236 20825 6034682 2024-02-22 17:47:56.497 2024-02-22 17:47:56.497 8100 TIP 435236 900 6034698 2024-02-22 17:48:31.602 2024-02-22 17:48:31.602 1000 FEE 435317 20701 6034701 2024-02-22 17:49:16.908 2024-02-22 17:49:16.908 2100 FEE 435046 5779 6034702 2024-02-22 17:49:16.908 2024-02-22 17:49:16.908 18900 TIP 435046 16059 6034705 2024-02-22 17:49:18.595 2024-02-22 17:49:18.595 2100 FEE 435231 11153 6034706 2024-02-22 17:49:18.595 2024-02-22 17:49:18.595 18900 TIP 435231 6148 6034733 2024-02-22 17:49:52.36 2024-02-22 17:49:52.36 200 FEE 434713 2709 6034734 2024-02-22 17:49:52.36 2024-02-22 17:49:52.36 1800 TIP 434713 15146 6034735 2024-02-22 17:49:52.407 2024-02-22 17:49:52.407 200 FEE 434713 7903 6034736 2024-02-22 17:49:52.407 2024-02-22 17:49:52.407 1800 TIP 434713 8289 6034743 2024-02-22 17:49:57.814 2024-02-22 17:49:57.814 2100 FEE 435115 9261 6034744 2024-02-22 17:49:57.814 2024-02-22 17:49:57.814 18900 TIP 435115 762 6034790 2024-02-22 17:51:55.571 2024-02-22 17:51:55.571 1000 FEE 435321 19668 6034810 2024-02-22 17:54:45.659 2024-02-22 17:54:45.659 0 FEE 435322 18945 6034811 2024-02-22 17:54:46.174 2024-02-22 17:54:46.174 3000 FEE 435310 15386 6034306 2024-02-22 17:28:12.415 2024-02-22 17:28:12.415 20700 TIP 435241 11527 6034311 2024-02-22 17:28:13.015 2024-02-22 17:28:13.015 2300 FEE 435241 20655 6034312 2024-02-22 17:28:13.015 2024-02-22 17:28:13.015 20700 TIP 435241 16456 6034315 2024-02-22 17:28:13.325 2024-02-22 17:28:13.325 2300 FEE 435241 13517 6034316 2024-02-22 17:28:13.325 2024-02-22 17:28:13.325 20700 TIP 435241 964 6034329 2024-02-22 17:28:14.725 2024-02-22 17:28:14.725 2300 FEE 435241 4378 6034330 2024-02-22 17:28:14.725 2024-02-22 17:28:14.725 20700 TIP 435241 10096 6034335 2024-02-22 17:28:15.129 2024-02-22 17:28:15.129 2300 FEE 435241 20669 6034336 2024-02-22 17:28:15.129 2024-02-22 17:28:15.129 20700 TIP 435241 21349 6034344 2024-02-22 17:29:02.205 2024-02-22 17:29:02.205 8300 FEE 435231 6136 6034345 2024-02-22 17:29:02.205 2024-02-22 17:29:02.205 74700 TIP 435231 13753 6034400 2024-02-22 17:30:15.998 2024-02-22 17:30:15.998 8300 FEE 435242 7675 6034401 2024-02-22 17:30:15.998 2024-02-22 17:30:15.998 74700 TIP 435242 18641 6034406 2024-02-22 17:30:16.345 2024-02-22 17:30:16.345 8300 FEE 435242 3347 6034407 2024-02-22 17:30:16.345 2024-02-22 17:30:16.345 74700 TIP 435242 20782 6034408 2024-02-22 17:30:16.465 2024-02-22 17:30:16.465 8300 FEE 435242 15196 6034409 2024-02-22 17:30:16.465 2024-02-22 17:30:16.465 74700 TIP 435242 5637 6034416 2024-02-22 17:30:17.479 2024-02-22 17:30:17.479 8300 FEE 435242 9334 6034417 2024-02-22 17:30:17.479 2024-02-22 17:30:17.479 74700 TIP 435242 2151 6034422 2024-02-22 17:30:17.814 2024-02-22 17:30:17.814 8300 FEE 435242 959 6034423 2024-02-22 17:30:17.814 2024-02-22 17:30:17.814 74700 TIP 435242 2829 6034440 2024-02-22 17:31:36.273 2024-02-22 17:31:36.273 3000 FEE 435147 5825 6034441 2024-02-22 17:31:36.273 2024-02-22 17:31:36.273 27000 TIP 435147 787 6034442 2024-02-22 17:31:51.297 2024-02-22 17:31:51.297 1000 FEE 435285 9275 6034449 2024-02-22 17:32:16.727 2024-02-22 17:32:16.727 2300 FEE 435261 19995 6034450 2024-02-22 17:32:16.727 2024-02-22 17:32:16.727 20700 TIP 435261 1605 6034477 2024-02-22 17:32:46.847 2024-02-22 17:32:46.847 8300 FEE 435261 10352 6034364 2024-02-22 17:29:23.616 2024-02-22 17:29:23.616 1000 FEE 435234 20738 6034365 2024-02-22 17:29:23.616 2024-02-22 17:29:23.616 9000 TIP 435234 700 6034368 2024-02-22 17:29:26.121 2024-02-22 17:29:26.121 1000 FEE 435190 4574 6034369 2024-02-22 17:29:26.121 2024-02-22 17:29:26.121 9000 TIP 435190 21033 6034375 2024-02-22 17:29:37.373 2024-02-22 17:29:37.373 1000 FEE 435206 768 6034376 2024-02-22 17:29:37.373 2024-02-22 17:29:37.373 9000 TIP 435206 20015 6034378 2024-02-22 17:30:14.302 2024-02-22 17:30:14.302 8300 FEE 435242 19147 6034379 2024-02-22 17:30:14.302 2024-02-22 17:30:14.302 74700 TIP 435242 20852 6034392 2024-02-22 17:30:15.549 2024-02-22 17:30:15.549 8300 FEE 435242 19037 6034393 2024-02-22 17:30:15.549 2024-02-22 17:30:15.549 74700 TIP 435242 16432 6034420 2024-02-22 17:30:17.704 2024-02-22 17:30:17.704 8300 FEE 435242 16830 6034421 2024-02-22 17:30:17.704 2024-02-22 17:30:17.704 74700 TIP 435242 5829 6034457 2024-02-22 17:32:17.771 2024-02-22 17:32:17.771 2300 FEE 435261 19576 6034458 2024-02-22 17:32:17.771 2024-02-22 17:32:17.771 20700 TIP 435261 18956 6034459 2024-02-22 17:32:18.558 2024-02-22 17:32:18.558 2300 FEE 435261 909 6034460 2024-02-22 17:32:18.558 2024-02-22 17:32:18.558 20700 TIP 435261 20981 6034483 2024-02-22 17:32:47.625 2024-02-22 17:32:47.625 8300 FEE 435261 17411 6034484 2024-02-22 17:32:47.625 2024-02-22 17:32:47.625 74700 TIP 435261 1454 6034518 2024-02-22 17:34:46.631 2024-02-22 17:34:46.631 0 FEE 435292 1650 6034528 2024-02-22 17:35:36.49 2024-02-22 17:35:36.49 27000 FEE 435292 18678 6034529 2024-02-22 17:35:36.49 2024-02-22 17:35:36.49 243000 TIP 435292 629 6034554 2024-02-22 17:38:24.37 2024-02-22 17:38:24.37 1000 FEE 435276 21352 6034555 2024-02-22 17:38:24.37 2024-02-22 17:38:24.37 9000 TIP 435276 11522 6034561 2024-02-22 17:39:50.958 2024-02-22 17:39:50.958 2000 FEE 435263 2285 6034562 2024-02-22 17:39:50.958 2024-02-22 17:39:50.958 18000 TIP 435263 1208 6034591 2024-02-22 17:40:54.62 2024-02-22 17:40:54.62 2000 FEE 435120 16145 6034592 2024-02-22 17:40:54.62 2024-02-22 17:40:54.62 18000 TIP 435120 18832 6034595 2024-02-22 17:41:01.146 2024-02-22 17:41:01.146 1000 FEE 435291 14669 6039422 2024-02-23 03:04:54.804 2024-02-23 03:04:54.804 1000 FEE 435783 11821 6039440 2024-02-23 03:11:18.146 2024-02-23 03:11:18.146 1000 FEE 435784 10818 6039461 2024-02-23 03:14:13.89 2024-02-23 03:14:13.89 1000 FEE 435788 15588 6039472 2024-02-23 03:16:04.11 2024-02-23 03:16:04.11 500 FEE 435328 826 6039473 2024-02-23 03:16:04.11 2024-02-23 03:16:04.11 4500 TIP 435328 6300 6039479 2024-02-23 03:16:06.46 2024-02-23 03:16:06.46 500 FEE 435030 13132 6039480 2024-02-23 03:16:06.46 2024-02-23 03:16:06.46 4500 TIP 435030 19852 6039497 2024-02-23 03:16:34.328 2024-02-23 03:16:34.328 2100 FEE 435274 1626 6039498 2024-02-23 03:16:34.328 2024-02-23 03:16:34.328 18900 TIP 435274 16769 6039517 2024-02-23 03:17:55.287 2024-02-23 03:17:55.287 5000 FEE 435614 18772 6039518 2024-02-23 03:17:55.287 2024-02-23 03:17:55.287 45000 TIP 435614 20436 6039521 2024-02-23 03:17:58.749 2024-02-23 03:17:58.749 5000 FEE 435327 713 6039522 2024-02-23 03:17:58.749 2024-02-23 03:17:58.749 45000 TIP 435327 9367 6039568 2024-02-23 03:29:45.365 2024-02-23 03:29:45.365 1000 FEE 435596 2330 6039569 2024-02-23 03:29:45.365 2024-02-23 03:29:45.365 9000 TIP 435596 19569 6039599 2024-02-23 03:32:36.97 2024-02-23 03:32:36.97 500 FEE 435657 20657 6039600 2024-02-23 03:32:36.97 2024-02-23 03:32:36.97 4500 TIP 435657 900 6039620 2024-02-23 03:33:33.49 2024-02-23 03:33:33.49 1000 FEE 435799 10493 6039625 2024-02-23 03:34:06.991 2024-02-23 03:34:06.991 2100 FEE 435704 2640 6039626 2024-02-23 03:34:06.991 2024-02-23 03:34:06.991 18900 TIP 435704 19863 6039627 2024-02-23 03:34:08.253 2024-02-23 03:34:08.253 2100 FEE 435711 21296 6039628 2024-02-23 03:34:08.253 2024-02-23 03:34:08.253 18900 TIP 435711 5500 6039649 2024-02-23 03:37:17.906 2024-02-23 03:37:17.906 500 FEE 435342 2065 6039650 2024-02-23 03:37:17.906 2024-02-23 03:37:17.906 4500 TIP 435342 6148 6039659 2024-02-23 03:37:40.642 2024-02-23 03:37:40.642 500 FEE 435614 21402 6039660 2024-02-23 03:37:40.642 2024-02-23 03:37:40.642 4500 TIP 435614 12356 6039699 2024-02-23 03:43:02.289 2024-02-23 03:43:02.289 500 FEE 434654 13174 6039700 2024-02-23 03:43:02.289 2024-02-23 03:43:02.289 4500 TIP 434654 15732 6039706 2024-02-23 03:46:27.451 2024-02-23 03:46:27.451 1000 FEE 435488 6471 6039707 2024-02-23 03:46:27.451 2024-02-23 03:46:27.451 9000 TIP 435488 1472 6039710 2024-02-23 03:46:29.149 2024-02-23 03:46:29.149 1000 FEE 434791 10979 6039711 2024-02-23 03:46:29.149 2024-02-23 03:46:29.149 9000 TIP 434791 17710 6039725 2024-02-23 03:47:46.494 2024-02-23 03:47:46.494 1000 FEE 435728 17522 6039726 2024-02-23 03:47:46.494 2024-02-23 03:47:46.494 9000 TIP 435728 17209 6039753 2024-02-23 03:56:00.456 2024-02-23 03:56:00.456 100000 FEE 435812 20479 6039767 2024-02-23 03:58:51.885 2024-02-23 03:58:51.885 1000 FEE 434791 5129 6039768 2024-02-23 03:58:51.885 2024-02-23 03:58:51.885 9000 TIP 434791 3518 6039824 2024-02-23 04:07:30.536 2024-02-23 04:07:30.536 2100 FEE 435812 16410 6039825 2024-02-23 04:07:30.536 2024-02-23 04:07:30.536 18900 TIP 435812 9349 6039840 2024-02-23 04:08:28.815 2024-02-23 04:08:28.815 2100 FEE 435667 18402 6039841 2024-02-23 04:08:28.815 2024-02-23 04:08:28.815 18900 TIP 435667 17064 6039864 2024-02-23 04:14:06.151 2024-02-23 04:14:06.151 2100 FEE 435667 5725 6039865 2024-02-23 04:14:06.151 2024-02-23 04:14:06.151 18900 TIP 435667 20430 6039866 2024-02-23 04:14:48.951 2024-02-23 04:14:48.951 100 FEE 430892 21021 6039867 2024-02-23 04:14:48.951 2024-02-23 04:14:48.951 900 TIP 430892 1723 6039908 2024-02-23 04:28:58.279 2024-02-23 04:28:58.279 1000 FEE 435378 775 6039909 2024-02-23 04:28:58.279 2024-02-23 04:28:58.279 9000 TIP 435378 13798 6039963 2024-02-23 04:32:42.813 2024-02-23 04:32:42.813 1000 FEE 435292 21033 6039964 2024-02-23 04:32:42.813 2024-02-23 04:32:42.813 9000 TIP 435292 13327 6040031 2024-02-23 04:56:19.857 2024-02-23 04:56:19.857 100000 FEE 435838 16660 6040079 2024-02-23 05:18:01.243 2024-02-23 05:18:01.243 100 FEE 435776 9421 6040080 2024-02-23 05:18:01.243 2024-02-23 05:18:01.243 900 TIP 435776 9552 6040088 2024-02-23 05:18:54.451 2024-02-23 05:18:54.451 1000 FEE 435850 20222 6040092 2024-02-23 05:20:25.085 2024-02-23 05:20:25.085 2100 FEE 435834 10270 6040093 2024-02-23 05:20:25.085 2024-02-23 05:20:25.085 18900 TIP 435834 16124 6040104 2024-02-23 05:25:34.279 2024-02-23 05:25:34.279 1000 FEE 435855 11314 6040122 2024-02-23 05:34:34.483 2024-02-23 05:34:34.483 1000 FEE 435859 20745 6040154 2024-02-23 05:48:35.694 2024-02-23 05:48:35.694 1000 FEE 435246 14545 6040155 2024-02-23 05:48:35.694 2024-02-23 05:48:35.694 9000 TIP 435246 16998 6040178 2024-02-23 05:54:38.455 2024-02-23 05:54:38.455 1000 FEE 435868 7125 6040179 2024-02-23 05:54:46.715 2024-02-23 05:54:46.715 2100 FEE 435711 20660 6040180 2024-02-23 05:54:46.715 2024-02-23 05:54:46.715 18900 TIP 435711 18919 6040185 2024-02-23 05:56:31.853 2024-02-23 05:56:31.853 1000 FEE 435869 21061 6040188 2024-02-23 05:57:19.952 2024-02-23 05:57:19.952 2100 FEE 435656 16956 6040189 2024-02-23 05:57:19.952 2024-02-23 05:57:19.952 18900 TIP 435656 12606 6040211 2024-02-23 06:01:12.042 2024-02-23 06:01:12.042 300 FEE 435837 10536 6040212 2024-02-23 06:01:12.042 2024-02-23 06:01:12.042 2700 TIP 435837 12175 6040266 2024-02-23 06:13:19.382 2024-02-23 06:13:19.382 1000 FEE 435878 13055 6040315 2024-02-23 06:27:39.783 2024-02-23 06:27:39.783 100 FEE 435719 12024 6040316 2024-02-23 06:27:39.783 2024-02-23 06:27:39.783 900 TIP 435719 17050 6040324 2024-02-23 06:32:36.198 2024-02-23 06:32:36.198 1000 FEE 435885 2576 6040339 2024-02-23 06:34:41.763 2024-02-23 06:34:41.763 100 FEE 435769 17455 6040340 2024-02-23 06:34:41.763 2024-02-23 06:34:41.763 900 TIP 435769 20525 6040382 2024-02-23 06:37:09.352 2024-02-23 06:37:09.352 1000 FEE 435886 20185 6040386 2024-02-23 06:37:36.619 2024-02-23 06:37:36.619 400 FEE 435813 19809 6040387 2024-02-23 06:37:36.619 2024-02-23 06:37:36.619 3600 TIP 435813 980 6040407 2024-02-23 06:39:26.034 2024-02-23 06:39:26.034 800 FEE 435328 19043 6040408 2024-02-23 06:39:26.034 2024-02-23 06:39:26.034 7200 TIP 435328 19524 6040411 2024-02-23 06:39:26.461 2024-02-23 06:39:26.461 800 FEE 435328 4043 6040412 2024-02-23 06:39:26.461 2024-02-23 06:39:26.461 7200 TIP 435328 4238 6040417 2024-02-23 06:39:27.813 2024-02-23 06:39:27.813 800 FEE 435328 7760 6040418 2024-02-23 06:39:27.813 2024-02-23 06:39:27.813 7200 TIP 435328 20245 6040426 2024-02-23 06:39:29.576 2024-02-23 06:39:29.576 800 FEE 435328 19105 6040427 2024-02-23 06:39:29.576 2024-02-23 06:39:29.576 7200 TIP 435328 20479 6040430 2024-02-23 06:39:59.469 2024-02-23 06:39:59.469 10000 FEE 435812 9183 6040431 2024-02-23 06:39:59.469 2024-02-23 06:39:59.469 90000 TIP 435812 5359 6040471 2024-02-23 06:53:46.292 2024-02-23 06:53:46.292 1000 FEE 435898 691 6040489 2024-02-23 06:56:55.712 2024-02-23 06:56:55.712 1000 FEE 435901 19036 6040494 2024-02-23 06:58:51.828 2024-02-23 06:58:51.828 2100 FEE 435847 14376 6040495 2024-02-23 06:58:51.828 2024-02-23 06:58:51.828 18900 TIP 435847 21556 6040499 2024-02-23 06:59:52.317 2024-02-23 06:59:52.317 100 FEE 435850 21212 6040500 2024-02-23 06:59:52.317 2024-02-23 06:59:52.317 900 TIP 435850 18625 6040508 2024-02-23 07:03:50.495 2024-02-23 07:03:50.495 10000 FEE 435903 19296 6040511 2024-02-23 07:05:46.703 2024-02-23 07:05:46.703 1000 FEE 435904 979 6040567 2024-02-23 07:13:20.393 2024-02-23 07:13:20.393 2100 FEE 435847 18280 6040568 2024-02-23 07:13:20.393 2024-02-23 07:13:20.393 18900 TIP 435847 1806 6040597 2024-02-23 07:14:15.533 2024-02-23 07:14:15.533 2100 FEE 435805 16350 6040598 2024-02-23 07:14:15.533 2024-02-23 07:14:15.533 18900 TIP 435805 1620 6040624 2024-02-23 07:25:52.141 2024-02-23 07:25:52.141 100000 FEE 435914 1959 6040668 2024-02-23 07:37:31.129 2024-02-23 07:37:31.129 10000 FEE 435916 16598 6040679 2024-02-23 07:37:58.57 2024-02-23 07:37:58.57 1000 FEE 434163 15697 6040680 2024-02-23 07:37:58.57 2024-02-23 07:37:58.57 9000 TIP 434163 21334 6040700 2024-02-23 07:41:16.269 2024-02-23 07:41:16.269 12800 FEE 435823 11527 6040701 2024-02-23 07:41:16.269 2024-02-23 07:41:16.269 115200 TIP 435823 12072 6040705 2024-02-23 07:41:49.974 2024-02-23 07:41:49.974 1000 FEE 435923 825 6040736 2024-02-23 07:44:46.948 2024-02-23 07:44:46.948 12800 FEE 435125 7674 6039423 2024-02-23 03:05:03.804 2024-02-23 03:05:03.804 1000 STREAM 141924 19105 6039424 2024-02-23 03:06:03.983 2024-02-23 03:06:03.983 1000 STREAM 141924 13076 6039427 2024-02-23 03:07:03.989 2024-02-23 03:07:03.989 1000 STREAM 141924 1425 6039436 2024-02-23 03:10:04.306 2024-02-23 03:10:04.306 1000 STREAM 141924 2347 6039474 2024-02-23 03:16:04.438 2024-02-23 03:16:04.438 1000 STREAM 141924 822 6039523 2024-02-23 03:18:04.476 2024-02-23 03:18:04.476 1000 STREAM 141924 5500 6039534 2024-02-23 03:20:04.527 2024-02-23 03:20:04.527 1000 STREAM 141924 18659 6039733 2024-02-23 03:50:04.501 2024-02-23 03:50:04.501 1000 STREAM 141924 8985 6039746 2024-02-23 03:53:04.501 2024-02-23 03:53:04.501 1000 STREAM 141924 20715 6039747 2024-02-23 03:54:04.501 2024-02-23 03:54:04.501 1000 STREAM 141924 2757 6039752 2024-02-23 03:55:04.514 2024-02-23 03:55:04.514 1000 STREAM 141924 9552 6039759 2024-02-23 03:57:04.505 2024-02-23 03:57:04.505 1000 STREAM 141924 880 6039764 2024-02-23 03:58:04.508 2024-02-23 03:58:04.508 1000 STREAM 141924 12821 6039779 2024-02-23 03:59:04.522 2024-02-23 03:59:04.522 1000 STREAM 141924 12356 6039794 2024-02-23 04:01:05.033 2024-02-23 04:01:05.033 1000 STREAM 141924 19601 6039799 2024-02-23 04:02:05.206 2024-02-23 04:02:05.206 1000 STREAM 141924 19352 6039802 2024-02-23 04:03:05.21 2024-02-23 04:03:05.21 1000 STREAM 141924 7376 6039813 2024-02-23 04:06:05.223 2024-02-23 04:06:05.223 1000 STREAM 141924 1010 6039817 2024-02-23 04:07:05.235 2024-02-23 04:07:05.235 1000 STREAM 141924 6471 6039830 2024-02-23 04:08:05.245 2024-02-23 04:08:05.245 1000 STREAM 141924 1162 6039991 2024-02-23 04:41:04.779 2024-02-23 04:41:04.779 1000 STREAM 141924 10398 6111304 2024-02-29 11:08:05.024 2024-02-29 11:08:05.024 1000 STREAM 141924 6717 6111330 2024-02-29 11:13:05.022 2024-02-29 11:13:05.022 1000 STREAM 141924 3409 6039425 2024-02-23 03:07:03.021 2024-02-23 03:07:03.021 4000 FEE 435783 9916 6039426 2024-02-23 03:07:03.021 2024-02-23 03:07:03.021 36000 TIP 435783 18629 6039450 2024-02-23 03:12:58.673 2024-02-23 03:12:58.673 5000 FEE 435707 18169 6039451 2024-02-23 03:12:58.673 2024-02-23 03:12:58.673 45000 TIP 435707 14669 6039465 2024-02-23 03:14:54.273 2024-02-23 03:14:54.273 5000 FEE 434902 2576 6039466 2024-02-23 03:14:54.273 2024-02-23 03:14:54.273 45000 TIP 434902 20757 6039470 2024-02-23 03:15:49.198 2024-02-23 03:15:49.198 5000 FEE 435630 2437 6039471 2024-02-23 03:15:49.198 2024-02-23 03:15:49.198 45000 TIP 435630 19583 6039489 2024-02-23 03:16:16.607 2024-02-23 03:16:16.607 500 FEE 435242 18615 6039490 2024-02-23 03:16:16.607 2024-02-23 03:16:16.607 4500 TIP 435242 4776 6039535 2024-02-23 03:20:27.14 2024-02-23 03:20:27.14 5000 FEE 435260 9421 6039536 2024-02-23 03:20:27.14 2024-02-23 03:20:27.14 45000 TIP 435260 9695 6039537 2024-02-23 03:20:36.603 2024-02-23 03:20:36.603 5000 FEE 435217 12272 6039538 2024-02-23 03:20:36.603 2024-02-23 03:20:36.603 45000 TIP 435217 6137 6039542 2024-02-23 03:20:58.177 2024-02-23 03:20:58.177 5000 FEE 435746 2309 6039543 2024-02-23 03:20:58.177 2024-02-23 03:20:58.177 45000 TIP 435746 21238 6039586 2024-02-23 03:30:34.25 2024-02-23 03:30:34.25 500 FEE 435378 21620 6039587 2024-02-23 03:30:34.25 2024-02-23 03:30:34.25 4500 TIP 435378 12921 6039601 2024-02-23 03:32:37.052 2024-02-23 03:32:37.052 500 FEE 435610 1718 6039602 2024-02-23 03:32:37.052 2024-02-23 03:32:37.052 4500 TIP 435610 3417 6039611 2024-02-23 03:32:44.44 2024-02-23 03:32:44.44 500 FEE 435596 20871 6039612 2024-02-23 03:32:44.44 2024-02-23 03:32:44.44 4500 TIP 435596 2431 6039615 2024-02-23 03:32:47.008 2024-02-23 03:32:47.008 500 FEE 435497 1394 6039616 2024-02-23 03:32:47.008 2024-02-23 03:32:47.008 4500 TIP 435497 9816 6039622 2024-02-23 03:33:59.171 2024-02-23 03:33:59.171 1000 FEE 435801 726 6039631 2024-02-23 03:34:53.477 2024-02-23 03:34:53.477 1000 FEE 435803 1729 6039666 2024-02-23 03:39:04.534 2024-02-23 03:39:04.534 1000 FEE 435046 644 6039667 2024-02-23 03:39:04.534 2024-02-23 03:39:04.534 9000 TIP 435046 704 6039673 2024-02-23 03:39:31.99 2024-02-23 03:39:31.99 1000 FEE 435580 20802 6039674 2024-02-23 03:39:31.99 2024-02-23 03:39:31.99 9000 TIP 435580 13246 6039741 2024-02-23 03:51:55.308 2024-02-23 03:51:55.308 1000 POLL 435805 787 6039789 2024-02-23 04:00:07.88 2024-02-23 04:00:07.88 2600 FEE 435814 20861 6039790 2024-02-23 04:00:07.88 2024-02-23 04:00:07.88 23400 TIP 435814 9200 6039831 2024-02-23 04:08:06.344 2024-02-23 04:08:06.344 1000 FEE 435819 700 6039860 2024-02-23 04:14:00.298 2024-02-23 04:14:00.298 1000 FEE 435824 5557 6039885 2024-02-23 04:25:31.206 2024-02-23 04:25:31.206 3300 FEE 435610 21239 6039886 2024-02-23 04:25:31.206 2024-02-23 04:25:31.206 29700 TIP 435610 20889 6039900 2024-02-23 04:28:44.755 2024-02-23 04:28:44.755 4000 FEE 435812 1817 6039901 2024-02-23 04:28:44.755 2024-02-23 04:28:44.755 36000 TIP 435812 17797 6039902 2024-02-23 04:28:50.035 2024-02-23 04:28:50.035 3000 FEE 435821 5387 6039903 2024-02-23 04:28:50.035 2024-02-23 04:28:50.035 27000 TIP 435821 6003 6039910 2024-02-23 04:29:05.004 2024-02-23 04:29:05.004 1000 FEE 435292 2326 6039911 2024-02-23 04:29:05.004 2024-02-23 04:29:05.004 9000 TIP 435292 20301 6039913 2024-02-23 04:29:11.4 2024-02-23 04:29:11.4 1000 FEE 434978 21022 6039914 2024-02-23 04:29:11.4 2024-02-23 04:29:11.4 9000 TIP 434978 759 6039921 2024-02-23 04:29:45.768 2024-02-23 04:29:45.768 10000 FEE 435679 1697 6039922 2024-02-23 04:29:45.768 2024-02-23 04:29:45.768 90000 TIP 435679 1785 6039926 2024-02-23 04:30:06.419 2024-02-23 04:30:06.419 4000 FEE 435695 2335 6039927 2024-02-23 04:30:06.419 2024-02-23 04:30:06.419 36000 TIP 435695 2264 6039934 2024-02-23 04:30:59.017 2024-02-23 04:30:59.017 1000 FEE 435328 19690 6039935 2024-02-23 04:30:59.017 2024-02-23 04:30:59.017 9000 TIP 435328 20980 6039938 2024-02-23 04:30:59.248 2024-02-23 04:30:59.248 1000 FEE 435610 21212 6039939 2024-02-23 04:30:59.248 2024-02-23 04:30:59.248 9000 TIP 435610 21605 6039940 2024-02-23 04:31:00.281 2024-02-23 04:31:00.281 1000 FEE 435488 18815 6039941 2024-02-23 04:31:00.281 2024-02-23 04:31:00.281 9000 TIP 435488 9366 6039945 2024-02-23 04:31:24.241 2024-02-23 04:31:24.241 2100 FEE 435610 9476 6039946 2024-02-23 04:31:24.241 2024-02-23 04:31:24.241 18900 TIP 435610 16816 6039957 2024-02-23 04:32:21.507 2024-02-23 04:32:21.507 1000 FEE 435196 20754 6039958 2024-02-23 04:32:21.507 2024-02-23 04:32:21.507 9000 TIP 435196 2961 6039959 2024-02-23 04:32:32.766 2024-02-23 04:32:32.766 7700 FEE 435806 19007 6039960 2024-02-23 04:32:32.766 2024-02-23 04:32:32.766 69300 TIP 435806 18363 6039983 2024-02-23 04:38:58.316 2024-02-23 04:38:58.316 1000 FEE 435648 18449 6039984 2024-02-23 04:38:58.316 2024-02-23 04:38:58.316 9000 TIP 435648 9551 6039998 2024-02-23 04:43:16.771 2024-02-23 04:43:16.771 1000 FEE 435832 20613 6040010 2024-02-23 04:49:42.559 2024-02-23 04:49:42.559 3300 FEE 435657 4487 6040011 2024-02-23 04:49:42.559 2024-02-23 04:49:42.559 29700 TIP 435657 19243 6040022 2024-02-23 04:52:10.044 2024-02-23 04:52:10.044 1000 FEE 435837 19378 6040042 2024-02-23 05:01:52.242 2024-02-23 05:01:52.242 1000 FEE 435842 3729 6040053 2024-02-23 05:09:05.219 2024-02-23 05:09:05.219 1000 FEE 435845 15409 6040073 2024-02-23 05:18:00.101 2024-02-23 05:18:00.101 100 FEE 435776 20812 6040074 2024-02-23 05:18:00.101 2024-02-23 05:18:00.101 900 TIP 435776 2652 6040137 2024-02-23 05:42:25.198 2024-02-23 05:42:25.198 21000 FEE 435864 11789 6040158 2024-02-23 05:48:37.495 2024-02-23 05:48:37.495 1000 FEE 435246 802 6040159 2024-02-23 05:48:37.495 2024-02-23 05:48:37.495 9000 TIP 435246 10536 6040160 2024-02-23 05:48:38.136 2024-02-23 05:48:38.136 1000 FEE 435246 9246 6040161 2024-02-23 05:48:38.136 2024-02-23 05:48:38.136 9000 TIP 435246 688 6040171 2024-02-23 05:50:36.371 2024-02-23 05:50:36.371 400 FEE 435557 18862 6040172 2024-02-23 05:50:36.371 2024-02-23 05:50:36.371 3600 TIP 435557 2709 6040174 2024-02-23 05:51:35.482 2024-02-23 05:51:35.482 1000 FEE 435867 8506 6040204 2024-02-23 06:00:35.653 2024-02-23 06:00:35.653 100 FEE 435242 1673 6040205 2024-02-23 06:00:35.653 2024-02-23 06:00:35.653 900 TIP 435242 21332 6040227 2024-02-23 06:01:25.853 2024-02-23 06:01:25.853 300 FEE 435844 19813 6040228 2024-02-23 06:01:25.853 2024-02-23 06:01:25.853 2700 TIP 435844 2195 6040246 2024-02-23 06:03:44.719 2024-02-23 06:03:44.719 100 FEE 435217 1064 6040247 2024-02-23 06:03:44.719 2024-02-23 06:03:44.719 900 TIP 435217 8242 6040268 2024-02-23 06:14:11.066 2024-02-23 06:14:11.066 1000 FEE 435242 2061 6040269 2024-02-23 06:14:11.066 2024-02-23 06:14:11.066 9000 TIP 435242 19966 6040274 2024-02-23 06:15:38.634 2024-02-23 06:15:38.634 1000 FEE 433394 9332 6040275 2024-02-23 06:15:38.634 2024-02-23 06:15:38.634 9000 TIP 433394 13365 6040288 2024-02-23 06:19:55.983 2024-02-23 06:19:55.983 1000 FEE 435628 16456 6040289 2024-02-23 06:19:55.983 2024-02-23 06:19:55.983 9000 TIP 435628 21063 6040345 2024-02-23 06:35:02.685 2024-02-23 06:35:02.685 9900 FEE 435805 9758 6040346 2024-02-23 06:35:02.685 2024-02-23 06:35:02.685 89100 TIP 435805 3745 6040379 2024-02-23 06:36:17.753 2024-02-23 06:36:17.753 9000 FEE 430411 20701 6040380 2024-02-23 06:36:17.753 2024-02-23 06:36:17.753 81000 TIP 430411 5637 6040401 2024-02-23 06:39:24.429 2024-02-23 06:39:24.429 800 FEE 435328 18119 6040402 2024-02-23 06:39:24.429 2024-02-23 06:39:24.429 7200 TIP 435328 5746 6040421 2024-02-23 06:39:28.166 2024-02-23 06:39:28.166 1000 FEE 435888 10063 6040424 2024-02-23 06:39:28.835 2024-02-23 06:39:28.835 800 FEE 435328 683 6040425 2024-02-23 06:39:28.835 2024-02-23 06:39:28.835 7200 TIP 435328 5590 6040428 2024-02-23 06:39:30.111 2024-02-23 06:39:30.111 800 FEE 435328 21352 6040429 2024-02-23 06:39:30.111 2024-02-23 06:39:30.111 7200 TIP 435328 18476 6040458 2024-02-23 06:49:28.272 2024-02-23 06:49:28.272 1000 FEE 435895 12245 6040470 2024-02-23 06:53:18.628 2024-02-23 06:53:18.628 1000 FEE 435897 21116 6040479 2024-02-23 06:55:30.466 2024-02-23 06:55:30.466 5000 FEE 435765 19961 6040480 2024-02-23 06:55:30.466 2024-02-23 06:55:30.466 45000 TIP 435765 20778 6039428 2024-02-23 03:08:04.033 2024-02-23 03:08:04.033 1000 STREAM 141924 21493 6039435 2024-02-23 03:09:04.045 2024-02-23 03:09:04.045 1000 STREAM 141924 20436 6039439 2024-02-23 03:11:04.328 2024-02-23 03:11:04.328 1000 STREAM 141924 14939 6039444 2024-02-23 03:12:04.322 2024-02-23 03:12:04.322 1000 STREAM 141924 21491 6039455 2024-02-23 03:13:04.34 2024-02-23 03:13:04.34 1000 STREAM 141924 617 6039460 2024-02-23 03:14:04.347 2024-02-23 03:14:04.347 1000 STREAM 141924 5129 6039468 2024-02-23 03:15:04.358 2024-02-23 03:15:04.358 1000 STREAM 141924 828 6039501 2024-02-23 03:17:04.475 2024-02-23 03:17:04.475 1000 STREAM 141924 2232 6039531 2024-02-23 03:19:04.492 2024-02-23 03:19:04.492 1000 STREAM 141924 18372 6039735 2024-02-23 03:51:04.483 2024-02-23 03:51:04.483 1000 STREAM 141924 802 6039745 2024-02-23 03:52:04.499 2024-02-23 03:52:04.499 1000 STREAM 141924 2718 6039788 2024-02-23 04:00:04.562 2024-02-23 04:00:04.562 1000 STREAM 141924 1576 6039810 2024-02-23 04:04:05.223 2024-02-23 04:04:05.223 1000 STREAM 141924 20220 6039849 2024-02-23 04:10:05.255 2024-02-23 04:10:05.255 1000 STREAM 141924 19524 6039997 2024-02-23 04:43:05.364 2024-02-23 04:43:05.364 1000 STREAM 141924 17411 6040002 2024-02-23 04:45:05.807 2024-02-23 04:45:05.807 1000 STREAM 141924 706 6040063 2024-02-23 05:16:02.387 2024-02-23 05:16:02.387 1000 STREAM 141924 1244 6040064 2024-02-23 05:17:02.379 2024-02-23 05:17:02.379 1000 STREAM 141924 15833 6040087 2024-02-23 05:18:02.385 2024-02-23 05:18:02.385 1000 STREAM 141924 5590 6111331 2024-02-29 11:14:03.768 2024-02-29 11:14:03.768 1000 STREAM 141924 1983 6111385 2024-02-29 11:24:03.81 2024-02-29 11:24:03.81 1000 STREAM 141924 726 6111389 2024-02-29 11:25:03.815 2024-02-29 11:25:03.815 1000 STREAM 141924 9920 6111422 2024-02-29 11:27:03.819 2024-02-29 11:27:03.819 1000 STREAM 141924 19842 6039429 2024-02-23 03:08:07.992 2024-02-23 03:08:07.992 2000 FEE 435679 20744 6039430 2024-02-23 03:08:07.992 2024-02-23 03:08:07.992 18000 TIP 435679 2206 6039431 2024-02-23 03:08:09.812 2024-02-23 03:08:09.812 2000 FEE 435679 5017 6039432 2024-02-23 03:08:09.812 2024-02-23 03:08:09.812 18000 TIP 435679 642 6039445 2024-02-23 03:12:11.205 2024-02-23 03:12:11.205 1000 FEE 435786 20596 6039446 2024-02-23 03:12:29.368 2024-02-23 03:12:29.368 5000 FEE 434574 18507 6039447 2024-02-23 03:12:29.368 2024-02-23 03:12:29.368 45000 TIP 434574 4115 6039448 2024-02-23 03:12:53.598 2024-02-23 03:12:53.598 5000 FEE 435687 12160 6039449 2024-02-23 03:12:53.598 2024-02-23 03:12:53.598 45000 TIP 435687 16284 6039454 2024-02-23 03:13:02.083 2024-02-23 03:13:02.083 1000 FEE 435787 17817 6039499 2024-02-23 03:16:47.709 2024-02-23 03:16:47.709 2100 FEE 435171 20563 6039500 2024-02-23 03:16:47.709 2024-02-23 03:16:47.709 18900 TIP 435171 20299 6039519 2024-02-23 03:17:55.974 2024-02-23 03:17:55.974 5000 FEE 435614 4126 6039520 2024-02-23 03:17:55.974 2024-02-23 03:17:55.974 45000 TIP 435614 4079 6039562 2024-02-23 03:29:21.953 2024-02-23 03:29:21.953 500 FEE 435618 19537 6039563 2024-02-23 03:29:21.953 2024-02-23 03:29:21.953 4500 TIP 435618 2075 6039564 2024-02-23 03:29:23.669 2024-02-23 03:29:23.669 500 FEE 435487 20272 6039565 2024-02-23 03:29:23.669 2024-02-23 03:29:23.669 4500 TIP 435487 3353 6039589 2024-02-23 03:30:39.53 2024-02-23 03:30:39.53 500 FEE 435382 19007 6039590 2024-02-23 03:30:39.53 2024-02-23 03:30:39.53 4500 TIP 435382 795 6039595 2024-02-23 03:30:52.385 2024-02-23 03:30:52.385 3000 FEE 435797 1175 6039596 2024-02-23 03:30:52.385 2024-02-23 03:30:52.385 27000 TIP 435797 13622 6039603 2024-02-23 03:32:37.079 2024-02-23 03:32:37.079 500 FEE 435488 19030 6039604 2024-02-23 03:32:37.079 2024-02-23 03:32:37.079 4500 TIP 435488 21263 6039613 2024-02-23 03:32:46.02 2024-02-23 03:32:46.02 500 FEE 435690 1175 6039614 2024-02-23 03:32:46.02 2024-02-23 03:32:46.02 4500 TIP 435690 20980 6039617 2024-02-23 03:32:48.046 2024-02-23 03:32:48.046 500 FEE 435261 18232 6039618 2024-02-23 03:32:48.046 2024-02-23 03:32:48.046 4500 TIP 435261 14503 6039636 2024-02-23 03:36:50.257 2024-02-23 03:36:50.257 500 FEE 435292 20302 6039637 2024-02-23 03:36:50.257 2024-02-23 03:36:50.257 4500 TIP 435292 18274 6039651 2024-02-23 03:37:21.677 2024-02-23 03:37:21.677 500 FEE 435509 8870 6039652 2024-02-23 03:37:21.677 2024-02-23 03:37:21.677 4500 TIP 435509 20881 6039678 2024-02-23 03:40:03.817 2024-02-23 03:40:03.817 1000 FEE 434978 19153 6039679 2024-02-23 03:40:03.817 2024-02-23 03:40:03.817 9000 TIP 434978 19243 6039704 2024-02-23 03:45:10.168 2024-02-23 03:45:10.168 100000 FEE 435805 20220 6039777 2024-02-23 03:59:03.505 2024-02-23 03:59:03.505 1000 FEE 435618 20776 6039778 2024-02-23 03:59:03.505 2024-02-23 03:59:03.505 9000 TIP 435618 21239 6039784 2024-02-23 03:59:26.67 2024-02-23 03:59:26.67 1000 FEE 435378 1244 6039785 2024-02-23 03:59:26.67 2024-02-23 03:59:26.67 9000 TIP 435378 20272 6039816 2024-02-23 04:06:45.634 2024-02-23 04:06:45.634 1000 FEE 435818 21379 6039820 2024-02-23 04:07:16.982 2024-02-23 04:07:16.982 4200 FEE 435410 18310 6039821 2024-02-23 04:07:16.982 2024-02-23 04:07:16.982 37800 TIP 435410 986 6039832 2024-02-23 04:08:13.259 2024-02-23 04:08:13.259 2100 FEE 435679 13903 6039833 2024-02-23 04:08:13.259 2024-02-23 04:08:13.259 18900 TIP 435679 8416 6039839 2024-02-23 04:08:24.739 2024-02-23 04:08:24.739 1000 FEE 435821 8648 6039847 2024-02-23 04:10:05.093 2024-02-23 04:10:05.093 10000 FEE 435630 21044 6039848 2024-02-23 04:10:05.093 2024-02-23 04:10:05.093 90000 TIP 435630 8133 6039875 2024-02-23 04:17:44.563 2024-02-23 04:17:44.563 1000 FEE 435827 21600 6039936 2024-02-23 04:30:59.086 2024-02-23 04:30:59.086 1000 FEE 435639 14045 6039937 2024-02-23 04:30:59.086 2024-02-23 04:30:59.086 9000 TIP 435639 1472 6039947 2024-02-23 04:31:24.865 2024-02-23 04:31:24.865 2100 FEE 435610 691 6039948 2024-02-23 04:31:24.865 2024-02-23 04:31:24.865 18900 TIP 435610 8284 6039953 2024-02-23 04:31:26.254 2024-02-23 04:31:26.254 2100 FEE 435610 15858 6039954 2024-02-23 04:31:26.254 2024-02-23 04:31:26.254 18900 TIP 435610 13365 6039988 2024-02-23 04:39:53.714 2024-02-23 04:39:53.714 1000 FEE 435826 646 6039989 2024-02-23 04:39:53.714 2024-02-23 04:39:53.714 9000 TIP 435826 7877 6040023 2024-02-23 04:52:32.355 2024-02-23 04:52:32.355 1000 FEE 435795 17042 6040024 2024-02-23 04:52:32.355 2024-02-23 04:52:32.355 9000 TIP 435795 1046 6040040 2024-02-23 05:01:18.263 2024-02-23 05:01:18.263 2600 FEE 435812 17673 6040041 2024-02-23 05:01:18.263 2024-02-23 05:01:18.263 23400 TIP 435812 15266 6040057 2024-02-23 05:11:41.225 2024-02-23 05:11:41.225 100000 FEE 435847 691 6040071 2024-02-23 05:17:59.789 2024-02-23 05:17:59.789 100 FEE 435776 14037 6040072 2024-02-23 05:17:59.789 2024-02-23 05:17:59.789 900 TIP 435776 2056 6040077 2024-02-23 05:18:00.436 2024-02-23 05:18:00.436 100 FEE 435776 1326 6040078 2024-02-23 05:18:00.436 2024-02-23 05:18:00.436 900 TIP 435776 15282 6040081 2024-02-23 05:18:01.283 2024-02-23 05:18:01.283 100 FEE 435776 20922 6040082 2024-02-23 05:18:01.283 2024-02-23 05:18:01.283 900 TIP 435776 12965 6040116 2024-02-23 05:33:01.692 2024-02-23 05:33:01.692 1000 FEE 435242 14080 6040117 2024-02-23 05:33:01.692 2024-02-23 05:33:01.692 9000 TIP 435242 780 6040135 2024-02-23 05:41:18.408 2024-02-23 05:41:18.408 1000 FEE 435863 19021 6040156 2024-02-23 05:48:36.808 2024-02-23 05:48:36.808 1000 FEE 435246 18533 6040157 2024-02-23 05:48:36.808 2024-02-23 05:48:36.808 9000 TIP 435246 15843 6040219 2024-02-23 06:01:24.662 2024-02-23 06:01:24.662 300 FEE 435844 20326 6040220 2024-02-23 06:01:24.662 2024-02-23 06:01:24.662 2700 TIP 435844 19007 6040223 2024-02-23 06:01:24.961 2024-02-23 06:01:24.961 300 FEE 435844 12057 6040224 2024-02-23 06:01:24.961 2024-02-23 06:01:24.961 2700 TIP 435844 770 6040229 2024-02-23 06:01:37.057 2024-02-23 06:01:37.057 100 FEE 435328 14152 6040230 2024-02-23 06:01:37.057 2024-02-23 06:01:37.057 900 TIP 435328 9332 6040250 2024-02-23 06:03:49.797 2024-02-23 06:03:49.797 100 FEE 435217 11829 6040251 2024-02-23 06:03:49.797 2024-02-23 06:03:49.797 900 TIP 435217 19303 6039433 2024-02-23 03:08:11.702 2024-02-23 03:08:11.702 2000 FEE 435679 16834 6039434 2024-02-23 03:08:11.702 2024-02-23 03:08:11.702 18000 TIP 435679 4084 6039441 2024-02-23 03:11:22.393 2024-02-23 03:11:22.393 1000 FEE 435785 15052 6039464 2024-02-23 03:14:40.672 2024-02-23 03:14:40.672 1000 FEE 435789 16747 6039481 2024-02-23 03:16:07.198 2024-02-23 03:16:07.198 500 FEE 435261 10719 6039482 2024-02-23 03:16:07.198 2024-02-23 03:16:07.198 4500 TIP 435261 733 6039485 2024-02-23 03:16:08.691 2024-02-23 03:16:08.691 2100 FEE 435639 14465 6039486 2024-02-23 03:16:08.691 2024-02-23 03:16:08.691 18900 TIP 435639 1141 6039513 2024-02-23 03:17:14.727 2024-02-23 03:17:14.727 5000 FEE 435457 9920 6039514 2024-02-23 03:17:14.727 2024-02-23 03:17:14.727 45000 TIP 435457 18625 6039532 2024-02-23 03:19:43.323 2024-02-23 03:19:43.323 5000 FEE 435561 12721 6039533 2024-02-23 03:19:43.323 2024-02-23 03:19:43.323 45000 TIP 435561 5377 6039547 2024-02-23 03:21:47.694 2024-02-23 03:21:47.694 2100 FEE 435137 20751 6039548 2024-02-23 03:21:47.694 2024-02-23 03:21:47.694 18900 TIP 435137 20059 6039559 2024-02-23 03:29:04.406 2024-02-23 03:29:04.406 2100 FEE 435728 5527 6039560 2024-02-23 03:29:04.406 2024-02-23 03:29:04.406 18900 TIP 435728 18310 6039585 2024-02-23 03:30:34.014 2024-02-23 03:30:34.014 1000 FEE 435797 979 6039593 2024-02-23 03:30:45.138 2024-02-23 03:30:45.138 500 FEE 435327 632 6039594 2024-02-23 03:30:45.138 2024-02-23 03:30:45.138 4500 TIP 435327 2402 6039653 2024-02-23 03:37:31.231 2024-02-23 03:37:31.231 500 FEE 435377 13517 6039654 2024-02-23 03:37:31.231 2024-02-23 03:37:31.231 4500 TIP 435377 633 6039657 2024-02-23 03:37:39.467 2024-02-23 03:37:39.467 500 FEE 435571 9517 6039658 2024-02-23 03:37:39.467 2024-02-23 03:37:39.467 4500 TIP 435571 9367 6039662 2024-02-23 03:39:02.729 2024-02-23 03:39:02.729 1000 FEE 435328 16816 6039663 2024-02-23 03:39:02.729 2024-02-23 03:39:02.729 9000 TIP 435328 18460 6039671 2024-02-23 03:39:06.709 2024-02-23 03:39:06.709 1000 FEE 435657 10311 6039672 2024-02-23 03:39:06.709 2024-02-23 03:39:06.709 9000 TIP 435657 1628 6039681 2024-02-23 03:40:12.237 2024-02-23 03:40:12.237 1000 FEE 435342 7395 6039682 2024-02-23 03:40:12.237 2024-02-23 03:40:12.237 9000 TIP 435342 21361 6039683 2024-02-23 03:40:22.523 2024-02-23 03:40:22.523 1000 FEE 435377 21556 6039437 2024-02-23 03:10:05.171 2024-02-23 03:10:05.171 2100 FEE 435679 14404 6039438 2024-02-23 03:10:05.171 2024-02-23 03:10:05.171 18900 TIP 435679 9450 6039456 2024-02-23 03:14:02.622 2024-02-23 03:14:02.622 5000 FEE 435274 9339 6039457 2024-02-23 03:14:02.622 2024-02-23 03:14:02.622 45000 TIP 435274 9084 6039458 2024-02-23 03:14:03.191 2024-02-23 03:14:03.191 5000 FEE 435274 697 6039459 2024-02-23 03:14:03.191 2024-02-23 03:14:03.191 45000 TIP 435274 15594 6039462 2024-02-23 03:14:18.309 2024-02-23 03:14:18.309 5000 FEE 435299 4079 6039463 2024-02-23 03:14:18.309 2024-02-23 03:14:18.309 45000 TIP 435299 642 6039467 2024-02-23 03:14:58.296 2024-02-23 03:14:58.296 1000 FEE 435790 21091 6039469 2024-02-23 03:15:31.261 2024-02-23 03:15:31.261 1000 FEE 435791 12222 6039491 2024-02-23 03:16:18.264 2024-02-23 03:16:18.264 500 FEE 435657 20495 6039492 2024-02-23 03:16:18.264 2024-02-23 03:16:18.264 4500 TIP 435657 18423 6039526 2024-02-23 03:18:39.853 2024-02-23 03:18:39.853 5000 FEE 435086 1745 6039527 2024-02-23 03:18:39.853 2024-02-23 03:18:39.853 45000 TIP 435086 9844 6039541 2024-02-23 03:20:55.849 2024-02-23 03:20:55.849 1000 FEE 435794 16296 6039545 2024-02-23 03:21:27.995 2024-02-23 03:21:27.995 5000 FEE 435615 20970 6039546 2024-02-23 03:21:27.995 2024-02-23 03:21:27.995 45000 TIP 435615 699 6039556 2024-02-23 03:27:59.532 2024-02-23 03:27:59.532 1000 FEE 435721 20812 6039557 2024-02-23 03:27:59.532 2024-02-23 03:27:59.532 9000 TIP 435721 20108 6039581 2024-02-23 03:30:23.266 2024-02-23 03:30:23.266 500 FEE 435531 5171 6039582 2024-02-23 03:30:23.266 2024-02-23 03:30:23.266 4500 TIP 435531 9107 6039605 2024-02-23 03:32:37.875 2024-02-23 03:32:37.875 500 FEE 435551 10586 6039606 2024-02-23 03:32:37.875 2024-02-23 03:32:37.875 4500 TIP 435551 8926 6039640 2024-02-23 03:37:02.798 2024-02-23 03:37:02.798 2100 FEE 434962 777 6039641 2024-02-23 03:37:02.798 2024-02-23 03:37:02.798 18900 TIP 434962 18819 6039645 2024-02-23 03:37:09.997 2024-02-23 03:37:09.997 500 FEE 435384 17064 6039646 2024-02-23 03:37:09.997 2024-02-23 03:37:09.997 4500 TIP 435384 1273 6039664 2024-02-23 03:39:03.631 2024-02-23 03:39:03.631 1000 FEE 435030 20745 6039665 2024-02-23 03:39:03.631 2024-02-23 03:39:03.631 9000 TIP 435030 19148 6039669 2024-02-23 03:39:05.502 2024-02-23 03:39:05.502 1000 FEE 435231 20756 6039670 2024-02-23 03:39:05.502 2024-02-23 03:39:05.502 9000 TIP 435231 632 6039677 2024-02-23 03:39:55.388 2024-02-23 03:39:55.388 100000 FEE 435804 19531 6039442 2024-02-23 03:12:02.815 2024-02-23 03:12:02.815 100 FEE 435544 19126 6039443 2024-02-23 03:12:02.815 2024-02-23 03:12:02.815 900 TIP 435544 913 6039452 2024-02-23 03:12:59.452 2024-02-23 03:12:59.452 5000 FEE 435707 5444 6039453 2024-02-23 03:12:59.452 2024-02-23 03:12:59.452 45000 TIP 435707 1195 6039483 2024-02-23 03:16:08.023 2024-02-23 03:16:08.023 500 FEE 434791 5637 6039484 2024-02-23 03:16:08.023 2024-02-23 03:16:08.023 4500 TIP 434791 13133 6039487 2024-02-23 03:16:08.88 2024-02-23 03:16:08.88 500 FEE 435231 19259 6039488 2024-02-23 03:16:08.88 2024-02-23 03:16:08.88 4500 TIP 435231 19652 6039495 2024-02-23 03:16:26.237 2024-02-23 03:16:26.237 2100 FEE 435637 20657 6039496 2024-02-23 03:16:26.237 2024-02-23 03:16:26.237 18900 TIP 435637 5520 6039503 2024-02-23 03:17:11.814 2024-02-23 03:17:11.814 5000 FEE 435457 19910 6039504 2024-02-23 03:17:11.814 2024-02-23 03:17:11.814 45000 TIP 435457 19512 6039524 2024-02-23 03:18:39.544 2024-02-23 03:18:39.544 5000 FEE 435086 14857 6039525 2024-02-23 03:18:39.544 2024-02-23 03:18:39.544 45000 TIP 435086 10530 6039530 2024-02-23 03:19:00.138 2024-02-23 03:19:00.138 1000 FEE 435793 21014 6039583 2024-02-23 03:30:23.989 2024-02-23 03:30:23.989 500 FEE 435552 21405 6039584 2024-02-23 03:30:23.989 2024-02-23 03:30:23.989 4500 TIP 435552 1429 6039591 2024-02-23 03:30:44.23 2024-02-23 03:30:44.23 500 FEE 435217 708 6039592 2024-02-23 03:30:44.23 2024-02-23 03:30:44.23 4500 TIP 435217 954 6039624 2024-02-23 03:34:05.299 2024-02-23 03:34:05.299 1000 FEE 435802 19553 6039629 2024-02-23 03:34:23.796 2024-02-23 03:34:23.796 3000 FEE 435560 1298 6039630 2024-02-23 03:34:23.796 2024-02-23 03:34:23.796 27000 TIP 435560 14663 6039655 2024-02-23 03:37:31.717 2024-02-23 03:37:31.717 500 FEE 435377 21405 6039656 2024-02-23 03:37:31.717 2024-02-23 03:37:31.717 4500 TIP 435377 11527 6039712 2024-02-23 03:46:30.187 2024-02-23 03:46:30.187 1000 FEE 435242 4574 6039713 2024-02-23 03:46:30.187 2024-02-23 03:46:30.187 9000 TIP 435242 807 6039716 2024-02-23 03:47:02.324 2024-02-23 03:47:02.324 1000 FEE 435618 897 6039717 2024-02-23 03:47:02.324 2024-02-23 03:47:02.324 9000 TIP 435618 6160 6039721 2024-02-23 03:47:24.778 2024-02-23 03:47:24.778 1000 FEE 435292 13798 6039722 2024-02-23 03:47:24.778 2024-02-23 03:47:24.778 9000 TIP 435292 20817 6039736 2024-02-23 03:51:29.17 2024-02-23 03:51:29.17 100 FEE 435741 1729 6039737 2024-02-23 03:51:29.17 2024-02-23 03:51:29.17 900 TIP 435741 20187 6039742 2024-02-23 03:51:57.26 2024-02-23 03:51:57.26 1000 FEE 435809 15159 6039761 2024-02-23 03:57:25.267 2024-02-23 03:57:25.267 100 FEE 435798 18426 6039762 2024-02-23 03:57:25.267 2024-02-23 03:57:25.267 900 TIP 435798 12561 6039769 2024-02-23 03:58:52.723 2024-02-23 03:58:52.723 1000 FEE 435231 9335 6039770 2024-02-23 03:58:52.723 2024-02-23 03:58:52.723 9000 TIP 435231 12819 6039773 2024-02-23 03:58:55.601 2024-02-23 03:58:55.601 1000 FEE 435657 14857 6039774 2024-02-23 03:58:55.601 2024-02-23 03:58:55.601 9000 TIP 435657 5499 6039791 2024-02-23 04:00:22.874 2024-02-23 04:00:22.874 1000 FEE 435815 13759 6039792 2024-02-23 04:00:35.377 2024-02-23 04:00:35.377 0 FEE 435815 4043 6039797 2024-02-23 04:01:48.886 2024-02-23 04:01:48.886 4200 FEE 434674 20337 6039798 2024-02-23 04:01:48.886 2024-02-23 04:01:48.886 37800 TIP 434674 19038 6039803 2024-02-23 04:03:51.778 2024-02-23 04:03:51.778 2000 FEE 435808 5017 6039804 2024-02-23 04:03:51.778 2024-02-23 04:03:51.778 18000 TIP 435808 15367 6039805 2024-02-23 04:03:52.404 2024-02-23 04:03:52.404 2000 FEE 435807 14465 6039806 2024-02-23 04:03:52.404 2024-02-23 04:03:52.404 18000 TIP 435807 16939 6039826 2024-02-23 04:07:45.45 2024-02-23 04:07:45.45 7700 FEE 435610 11798 6039827 2024-02-23 04:07:45.45 2024-02-23 04:07:45.45 69300 TIP 435610 14795 6039828 2024-02-23 04:08:04.52 2024-02-23 04:08:04.52 2100 FEE 435697 5776 6039475 2024-02-23 03:16:05.002 2024-02-23 03:16:05.002 500 FEE 435046 8648 6039476 2024-02-23 03:16:05.002 2024-02-23 03:16:05.002 4500 TIP 435046 18188 6039493 2024-02-23 03:16:19.076 2024-02-23 03:16:19.076 500 FEE 435551 17184 6039494 2024-02-23 03:16:19.076 2024-02-23 03:16:19.076 4500 TIP 435551 18526 6039505 2024-02-23 03:17:12.382 2024-02-23 03:17:12.382 5000 FEE 435457 19333 6039506 2024-02-23 03:17:12.382 2024-02-23 03:17:12.382 45000 TIP 435457 21343 6039528 2024-02-23 03:18:40.153 2024-02-23 03:18:40.153 5000 FEE 435086 20588 6039529 2024-02-23 03:18:40.153 2024-02-23 03:18:40.153 45000 TIP 435086 4259 6039573 2024-02-23 03:30:10.537 2024-02-23 03:30:10.537 500 FEE 435580 2681 6039574 2024-02-23 03:30:10.537 2024-02-23 03:30:10.537 4500 TIP 435580 9036 6039575 2024-02-23 03:30:11.256 2024-02-23 03:30:11.256 500 FEE 435580 13365 6039576 2024-02-23 03:30:11.256 2024-02-23 03:30:11.256 4500 TIP 435580 21067 6039609 2024-02-23 03:32:42.76 2024-02-23 03:32:42.76 500 FEE 435328 20680 6039610 2024-02-23 03:32:42.76 2024-02-23 03:32:42.76 4500 TIP 435328 17798 6039621 2024-02-23 03:33:37.503 2024-02-23 03:33:37.503 1000 FEE 435800 20182 6039634 2024-02-23 03:36:42.097 2024-02-23 03:36:42.097 500 FEE 435086 11621 6039635 2024-02-23 03:36:42.097 2024-02-23 03:36:42.097 4500 TIP 435086 20190 6039675 2024-02-23 03:39:54.961 2024-02-23 03:39:54.961 1000 FEE 435378 859 6039676 2024-02-23 03:39:54.961 2024-02-23 03:39:54.961 9000 TIP 435378 1729 6039685 2024-02-23 03:40:33.009 2024-02-23 03:40:33.009 1000 POLL 435516 9261 6039695 2024-02-23 03:43:00.582 2024-02-23 03:43:00.582 500 FEE 434654 2577 6039696 2024-02-23 03:43:00.582 2024-02-23 03:43:00.582 4500 TIP 434654 21446 6039782 2024-02-23 03:59:15.737 2024-02-23 03:59:15.737 1000 FEE 435086 20674 6039783 2024-02-23 03:59:15.737 2024-02-23 03:59:15.737 9000 TIP 435086 4126 6039795 2024-02-23 04:01:38.101 2024-02-23 04:01:38.101 4200 FEE 435001 8926 6039796 2024-02-23 04:01:38.101 2024-02-23 04:01:38.101 37800 TIP 435001 976 6039822 2024-02-23 04:07:25.354 2024-02-23 04:07:25.354 2700 FEE 435768 9341 6039823 2024-02-23 04:07:25.354 2024-02-23 04:07:25.354 24300 TIP 435768 1298 6039837 2024-02-23 04:08:23.377 2024-02-23 04:08:23.377 2100 FEE 435655 7675 6039838 2024-02-23 04:08:23.377 2024-02-23 04:08:23.377 18900 TIP 435655 6798 6039861 2024-02-23 04:14:02.559 2024-02-23 04:14:02.559 2100 FEE 435674 20514 6039862 2024-02-23 04:14:02.559 2024-02-23 04:14:02.559 18900 TIP 435674 5806 6039870 2024-02-23 04:15:36.816 2024-02-23 04:15:36.816 1000 FEE 259258 14906 6039871 2024-02-23 04:15:36.816 2024-02-23 04:15:36.816 9000 TIP 259258 14168 6039872 2024-02-23 04:15:52.896 2024-02-23 04:15:52.896 100000 FEE 435826 676 6039889 2024-02-23 04:25:46.035 2024-02-23 04:25:46.035 1000 FEE 435488 21547 6039890 2024-02-23 04:25:46.035 2024-02-23 04:25:46.035 9000 TIP 435488 20614 6039891 2024-02-23 04:25:50.072 2024-02-23 04:25:50.072 1000 FEE 435328 19813 6039892 2024-02-23 04:25:50.072 2024-02-23 04:25:50.072 9000 TIP 435328 15094 6039917 2024-02-23 04:29:41.079 2024-02-23 04:29:41.079 10000 FEE 435721 21413 6039918 2024-02-23 04:29:41.079 2024-02-23 04:29:41.079 90000 TIP 435721 19018 6039923 2024-02-23 04:29:46.678 2024-02-23 04:29:46.678 4000 FEE 435746 12808 6039924 2024-02-23 04:29:46.678 2024-02-23 04:29:46.678 36000 TIP 435746 18828 6039961 2024-02-23 04:32:36.077 2024-02-23 04:32:36.077 1000 FEE 435378 21422 6039962 2024-02-23 04:32:36.077 2024-02-23 04:32:36.077 9000 TIP 435378 19235 6039966 2024-02-23 04:33:41.628 2024-02-23 04:33:41.628 1000 FEE 435830 11992 6039477 2024-02-23 03:16:05.727 2024-02-23 03:16:05.727 500 FEE 435488 21131 6039478 2024-02-23 03:16:05.727 2024-02-23 03:16:05.727 4500 TIP 435488 9378 6039502 2024-02-23 03:17:05.037 2024-02-23 03:17:05.037 1000 FEE 435792 20291 6039507 2024-02-23 03:17:12.462 2024-02-23 03:17:12.462 5000 FEE 435457 16178 6039508 2024-02-23 03:17:12.462 2024-02-23 03:17:12.462 45000 TIP 435457 17513 6039509 2024-02-23 03:17:13.023 2024-02-23 03:17:13.023 5000 FEE 435457 19282 6039510 2024-02-23 03:17:13.023 2024-02-23 03:17:13.023 45000 TIP 435457 15337 6039511 2024-02-23 03:17:13.191 2024-02-23 03:17:13.191 5000 FEE 435457 686 6039512 2024-02-23 03:17:13.191 2024-02-23 03:17:13.191 45000 TIP 435457 19652 6039515 2024-02-23 03:17:15.487 2024-02-23 03:17:15.487 5000 FEE 435457 5694 6039516 2024-02-23 03:17:15.487 2024-02-23 03:17:15.487 45000 TIP 435457 16942 6039539 2024-02-23 03:20:37.393 2024-02-23 03:20:37.393 5000 FEE 435217 20183 6039540 2024-02-23 03:20:37.393 2024-02-23 03:20:37.393 45000 TIP 435217 20904 6039550 2024-02-23 03:23:00.722 2024-02-23 03:23:00.722 1000 FEE 435795 5128 6039566 2024-02-23 03:29:43.789 2024-02-23 03:29:43.789 1000 FEE 435639 2583 6039567 2024-02-23 03:29:43.789 2024-02-23 03:29:43.789 9000 TIP 435639 18517 6039570 2024-02-23 03:29:53.166 2024-02-23 03:29:53.166 500 FEE 435292 7960 6039571 2024-02-23 03:29:53.166 2024-02-23 03:29:53.166 4500 TIP 435292 19329 6039577 2024-02-23 03:30:13.23 2024-02-23 03:30:13.23 500 FEE 435741 4776 6039578 2024-02-23 03:30:13.23 2024-02-23 03:30:13.23 4500 TIP 435741 20657 6039579 2024-02-23 03:30:20.227 2024-02-23 03:30:20.227 500 FEE 435086 4692 6039580 2024-02-23 03:30:20.227 2024-02-23 03:30:20.227 4500 TIP 435086 5978 6039588 2024-02-23 03:30:35.147 2024-02-23 03:30:35.147 100000 FEE 435798 21424 6039607 2024-02-23 03:32:38.344 2024-02-23 03:32:38.344 500 FEE 435639 14404 6039608 2024-02-23 03:32:38.344 2024-02-23 03:32:38.344 4500 TIP 435639 859 6039638 2024-02-23 03:37:00.765 2024-02-23 03:37:00.765 500 FEE 434978 9552 6039639 2024-02-23 03:37:00.765 2024-02-23 03:37:00.765 4500 TIP 434978 9874 6039643 2024-02-23 03:37:06.996 2024-02-23 03:37:06.996 500 FEE 435384 19121 6039644 2024-02-23 03:37:06.996 2024-02-23 03:37:06.996 4500 TIP 435384 19471 6039647 2024-02-23 03:37:16.977 2024-02-23 03:37:16.977 500 FEE 435342 16594 6039648 2024-02-23 03:37:16.977 2024-02-23 03:37:16.977 4500 TIP 435342 21451 6039697 2024-02-23 03:43:01.054 2024-02-23 03:43:01.054 500 FEE 434654 6160 6039698 2024-02-23 03:43:01.054 2024-02-23 03:43:01.054 4500 TIP 434654 4043 6039708 2024-02-23 03:46:28.125 2024-02-23 03:46:28.125 1000 FEE 435261 4314 6039709 2024-02-23 03:46:28.125 2024-02-23 03:46:28.125 9000 TIP 435261 695 6039714 2024-02-23 03:46:31.674 2024-02-23 03:46:31.674 1000 FEE 435217 10484 6039715 2024-02-23 03:46:31.674 2024-02-23 03:46:31.674 9000 TIP 435217 21539 6039734 2024-02-23 03:50:38.068 2024-02-23 03:50:38.068 1000 FEE 435807 13143 6039749 2024-02-23 03:54:26.259 2024-02-23 03:54:26.259 1000 FEE 435811 18174 6039755 2024-02-23 03:56:23.931 2024-02-23 03:56:23.931 4200 FEE 435242 13174 6039756 2024-02-23 03:56:23.931 2024-02-23 03:56:23.931 37800 TIP 435242 9820 6039765 2024-02-23 03:58:13.944 2024-02-23 03:58:13.944 4200 FEE 435577 6616 6039766 2024-02-23 03:58:13.944 2024-02-23 03:58:13.944 37800 TIP 435577 21339 6039842 2024-02-23 04:08:29.729 2024-02-23 04:08:29.729 0 FEE 435820 720 6039845 2024-02-23 04:08:44.993 2024-02-23 04:08:44.993 1000 FEE 435822 4259 6039850 2024-02-23 04:10:14.661 2024-02-23 04:10:14.661 100 FEE 435812 18180 6039851 2024-02-23 04:10:14.661 2024-02-23 04:10:14.661 900 TIP 435812 7891 6039854 2024-02-23 04:12:39.136 2024-02-23 04:12:39.136 1000 FEE 435823 13406 6039855 2024-02-23 04:12:39.95 2024-02-23 04:12:39.95 10100 FEE 435663 20287 6039856 2024-02-23 04:12:39.95 2024-02-23 04:12:39.95 90900 TIP 435663 18309 6039906 2024-02-23 04:28:52.673 2024-02-23 04:28:52.673 1000 FEE 435086 636 6039907 2024-02-23 04:28:52.673 2024-02-23 04:28:52.673 9000 TIP 435086 8498 6039928 2024-02-23 04:30:14.577 2024-02-23 04:30:14.577 36000 FEE 435695 13076 6039929 2024-02-23 04:30:14.577 2024-02-23 04:30:14.577 324000 TIP 435695 17237 6039930 2024-02-23 04:30:56.302 2024-02-23 04:30:56.302 1000 FEE 435596 696 6039931 2024-02-23 04:30:56.302 2024-02-23 04:30:56.302 9000 TIP 435596 18138 6039942 2024-02-23 04:31:00.345 2024-02-23 04:31:00.345 1000 FEE 435657 21334 6039943 2024-02-23 04:31:00.345 2024-02-23 04:31:00.345 9000 TIP 435657 11942 6039949 2024-02-23 04:31:25.385 2024-02-23 04:31:25.385 2100 FEE 435610 14168 6039950 2024-02-23 04:31:25.385 2024-02-23 04:31:25.385 18900 TIP 435610 17365 6039968 2024-02-23 04:34:25.082 2024-02-23 04:34:25.082 1000 FEE 435690 16212 6039969 2024-02-23 04:34:25.082 2024-02-23 04:34:25.082 9000 TIP 435690 20117 6039980 2024-02-23 04:38:28.452 2024-02-23 04:38:28.452 1000 FEE 435824 7510 6039981 2024-02-23 04:38:28.452 2024-02-23 04:38:28.452 9000 TIP 435824 4474 6039993 2024-02-23 04:43:01.769 2024-02-23 04:43:01.769 1000 FEE 435328 11819 6039994 2024-02-23 04:43:01.769 2024-02-23 04:43:01.769 9000 TIP 435328 861 6040038 2024-02-23 05:00:12.993 2024-02-23 05:00:12.993 1000 FEE 435841 9985 6040047 2024-02-23 05:05:53.23 2024-02-23 05:05:53.23 1000 FEE 435843 17316 6040091 2024-02-23 05:20:24.241 2024-02-23 05:20:24.241 1000 FEE 435851 15075 6040099 2024-02-23 05:23:36.582 2024-02-23 05:23:36.582 1000 FEE 435852 1720 6040110 2024-02-23 05:28:07.512 2024-02-23 05:28:07.512 1000 FEE 435856 19096 6040215 2024-02-23 06:01:13.053 2024-02-23 06:01:13.053 300 FEE 435837 14818 6040216 2024-02-23 06:01:13.053 2024-02-23 06:01:13.053 2700 TIP 435837 5499 6040221 2024-02-23 06:01:24.809 2024-02-23 06:01:24.809 300 FEE 435844 17953 6040222 2024-02-23 06:01:24.809 2024-02-23 06:01:24.809 2700 TIP 435844 1316 6040234 2024-02-23 06:02:47.841 2024-02-23 06:02:47.841 2100 FEE 435869 6191 6040235 2024-02-23 06:02:47.841 2024-02-23 06:02:47.841 18900 TIP 435869 10979 6040248 2024-02-23 06:03:47.604 2024-02-23 06:03:47.604 100 FEE 435217 18310 6040249 2024-02-23 06:03:47.604 2024-02-23 06:03:47.604 900 TIP 435217 17046 6040282 2024-02-23 06:19:29.021 2024-02-23 06:19:29.021 1000 FEE 435551 6555 6040283 2024-02-23 06:19:29.021 2024-02-23 06:19:29.021 9000 TIP 435551 642 6040302 2024-02-23 06:21:17.399 2024-02-23 06:21:17.399 1000 FEE 435828 12175 6040303 2024-02-23 06:21:17.399 2024-02-23 06:21:17.399 9000 TIP 435828 14785 6040333 2024-02-23 06:34:19.414 2024-02-23 06:34:19.414 100 FEE 435812 8648 6040334 2024-02-23 06:34:19.414 2024-02-23 06:34:19.414 900 TIP 435812 16282 6040335 2024-02-23 06:34:19.604 2024-02-23 06:34:19.604 900 FEE 435812 18051 6039544 2024-02-23 03:21:04.757 2024-02-23 03:21:04.757 1000 STREAM 141924 4973 6039549 2024-02-23 03:22:04.756 2024-02-23 03:22:04.756 1000 STREAM 141924 21239 6039551 2024-02-23 03:23:04.769 2024-02-23 03:23:04.769 1000 STREAM 141924 11423 6039553 2024-02-23 03:25:04.811 2024-02-23 03:25:04.811 1000 STREAM 141924 18138 6039554 2024-02-23 03:26:04.97 2024-02-23 03:26:04.97 1000 STREAM 141924 1474 6039597 2024-02-23 03:31:04.996 2024-02-23 03:31:04.996 1000 STREAM 141924 19094 6039632 2024-02-23 03:35:05.032 2024-02-23 03:35:05.032 1000 STREAM 141924 20687 6039754 2024-02-23 03:56:02.07 2024-02-23 03:56:02.07 1000 STREAM 141924 9345 6039857 2024-02-23 04:13:02.724 2024-02-23 04:13:02.724 1000 STREAM 141924 16769 6039879 2024-02-23 04:20:05.101 2024-02-23 04:20:05.101 1000 STREAM 141924 6268 6039884 2024-02-23 04:25:03.234 2024-02-23 04:25:03.234 1000 STREAM 141924 20015 6039899 2024-02-23 04:28:05.249 2024-02-23 04:28:05.249 1000 STREAM 141924 2224 6039925 2024-02-23 04:30:05.301 2024-02-23 04:30:05.301 1000 STREAM 141924 8569 6039956 2024-02-23 04:32:05.288 2024-02-23 04:32:05.288 1000 STREAM 141924 11967 6039990 2024-02-23 04:40:05.686 2024-02-23 04:40:05.686 1000 STREAM 141924 19524 6040027 2024-02-23 04:55:04.857 2024-02-23 04:55:04.857 1000 STREAM 141924 8729 6040032 2024-02-23 04:57:04.904 2024-02-23 04:57:04.904 1000 STREAM 141924 18220 6040039 2024-02-23 05:01:04.946 2024-02-23 05:01:04.946 1000 STREAM 141924 19863 6040044 2024-02-23 05:03:04.962 2024-02-23 05:03:04.962 1000 STREAM 141924 6149 6040052 2024-02-23 05:09:03.069 2024-02-23 05:09:03.069 1000 STREAM 141924 17727 6040113 2024-02-23 05:31:03.758 2024-02-23 05:31:03.758 1000 STREAM 141924 631 6040124 2024-02-23 05:36:03.785 2024-02-23 05:36:03.785 1000 STREAM 141924 19537 6111382 2024-02-29 11:23:05.063 2024-02-29 11:23:05.063 1000 STREAM 141924 3440 6111459 2024-02-29 11:33:05.103 2024-02-29 11:33:05.103 1000 STREAM 141924 19087 6111493 2024-02-29 11:39:03.56 2024-02-29 11:39:03.56 1000 STREAM 141924 16684 6111509 2024-02-29 11:42:05.562 2024-02-29 11:42:05.562 1000 STREAM 141924 9150 6039552 2024-02-23 03:24:04.79 2024-02-23 03:24:04.79 1000 STREAM 141924 1534 6039555 2024-02-23 03:27:04.98 2024-02-23 03:27:04.98 1000 STREAM 141924 19890 6039558 2024-02-23 03:28:04.983 2024-02-23 03:28:04.983 1000 STREAM 141924 19995 6039561 2024-02-23 03:29:04.992 2024-02-23 03:29:04.992 1000 STREAM 141924 18321 6039572 2024-02-23 03:30:05.072 2024-02-23 03:30:05.072 1000 STREAM 141924 21612 6039598 2024-02-23 03:32:05.003 2024-02-23 03:32:05.003 1000 STREAM 141924 17827 6039619 2024-02-23 03:33:05.028 2024-02-23 03:33:05.028 1000 STREAM 141924 12188 6039623 2024-02-23 03:34:05.05 2024-02-23 03:34:05.05 1000 STREAM 141924 11263 6039852 2024-02-23 04:11:04.591 2024-02-23 04:11:04.591 1000 STREAM 141924 9183 6039863 2024-02-23 04:14:02.746 2024-02-23 04:14:02.746 1000 STREAM 141924 12175 6039868 2024-02-23 04:15:03.001 2024-02-23 04:15:03.001 1000 STREAM 141924 10063 6039873 2024-02-23 04:16:03.004 2024-02-23 04:16:03.004 1000 STREAM 141924 2322 6039874 2024-02-23 04:17:05.021 2024-02-23 04:17:05.021 1000 STREAM 141924 20744 6039876 2024-02-23 04:18:05.034 2024-02-23 04:18:05.034 1000 STREAM 141924 13076 6039878 2024-02-23 04:19:03.045 2024-02-23 04:19:03.045 1000 STREAM 141924 11829 6039881 2024-02-23 04:22:05.102 2024-02-23 04:22:05.102 1000 STREAM 141924 9166 6039883 2024-02-23 04:24:05.2 2024-02-23 04:24:05.2 1000 STREAM 141924 18664 6039897 2024-02-23 04:26:05.224 2024-02-23 04:26:05.224 1000 STREAM 141924 21088 6039898 2024-02-23 04:27:05.247 2024-02-23 04:27:05.247 1000 STREAM 141924 16282 6039912 2024-02-23 04:29:05.276 2024-02-23 04:29:05.276 1000 STREAM 141924 16004 6039944 2024-02-23 04:31:05.288 2024-02-23 04:31:05.288 1000 STREAM 141924 714 6039965 2024-02-23 04:33:05.301 2024-02-23 04:33:05.301 1000 STREAM 141924 19622 6039967 2024-02-23 04:34:05.308 2024-02-23 04:34:05.308 1000 STREAM 141924 18068 6039970 2024-02-23 04:35:05.315 2024-02-23 04:35:05.315 1000 STREAM 141924 20280 6039971 2024-02-23 04:36:05.336 2024-02-23 04:36:05.336 1000 STREAM 141924 20812 6039972 2024-02-23 04:37:05.364 2024-02-23 04:37:05.364 1000 STREAM 141924 15119 6039975 2024-02-23 04:38:05.377 2024-02-23 04:38:05.377 1000 STREAM 141924 7760 6039985 2024-02-23 04:39:05.658 2024-02-23 04:39:05.658 1000 STREAM 141924 17221 6040001 2024-02-23 04:44:01.987 2024-02-23 04:44:01.987 1000 STREAM 141924 2285 6040035 2024-02-23 04:59:04.926 2024-02-23 04:59:04.926 1000 STREAM 141924 20979 6040056 2024-02-23 05:11:03.069 2024-02-23 05:11:03.069 1000 STREAM 141924 17321 6040060 2024-02-23 05:13:03.089 2024-02-23 05:13:03.089 1000 STREAM 141924 19910 6040062 2024-02-23 05:15:03.358 2024-02-23 05:15:03.358 1000 STREAM 141924 698 6111384 2024-02-29 11:23:22.7 2024-02-29 11:23:22.7 900 TIP 442729 16178 6111390 2024-02-29 11:25:19.397 2024-02-29 11:25:19.397 0 FEE 443331 15728 6111448 2024-02-29 11:29:27.135 2024-02-29 11:29:27.135 800 FEE 443332 20190 6111449 2024-02-29 11:29:27.135 2024-02-29 11:29:27.135 7200 TIP 443332 19848 6111450 2024-02-29 11:29:57.101 2024-02-29 11:29:57.101 10000 FEE 443339 19044 6111453 2024-02-29 11:30:55.929 2024-02-29 11:30:55.929 100 FEE 443339 16353 6111454 2024-02-29 11:30:55.929 2024-02-29 11:30:55.929 900 TIP 443339 5499 6111491 2024-02-29 11:38:30.154 2024-02-29 11:38:30.154 1000 FEE 443314 13177 6111492 2024-02-29 11:38:30.154 2024-02-29 11:38:30.154 9000 TIP 443314 19773 6111503 2024-02-29 11:40:33.947 2024-02-29 11:40:33.947 1000 FEE 443345 20854 6111533 2024-02-29 11:43:16.599 2024-02-29 11:43:16.599 1000 FEE 442861 620 6111534 2024-02-29 11:43:16.599 2024-02-29 11:43:16.599 9000 TIP 442861 10821 6111564 2024-02-29 11:46:13.993 2024-02-29 11:46:13.993 1300 FEE 443319 2326 6111565 2024-02-29 11:46:13.993 2024-02-29 11:46:13.993 11700 TIP 443319 16808 6111570 2024-02-29 11:46:15.899 2024-02-29 11:46:15.899 1300 FEE 443319 21588 6111571 2024-02-29 11:46:15.899 2024-02-29 11:46:15.899 11700 TIP 443319 2952 6111578 2024-02-29 11:46:16.524 2024-02-29 11:46:16.524 1300 FEE 443319 20059 6111579 2024-02-29 11:46:16.524 2024-02-29 11:46:16.524 11700 TIP 443319 12122 6111598 2024-02-29 11:46:18.206 2024-02-29 11:46:18.206 1300 FEE 443319 18896 6111599 2024-02-29 11:46:18.206 2024-02-29 11:46:18.206 11700 TIP 443319 9353 6111600 2024-02-29 11:46:18.302 2024-02-29 11:46:18.302 1300 FEE 443319 18101 6111601 2024-02-29 11:46:18.302 2024-02-29 11:46:18.302 11700 TIP 443319 2722 6111604 2024-02-29 11:46:18.674 2024-02-29 11:46:18.674 1300 FEE 443319 4633 6111605 2024-02-29 11:46:18.674 2024-02-29 11:46:18.674 11700 TIP 443319 21172 6111628 2024-02-29 11:46:20.975 2024-02-29 11:46:20.975 1300 FEE 443319 20412 6111629 2024-02-29 11:46:20.975 2024-02-29 11:46:20.975 11700 TIP 443319 1401 6111668 2024-02-29 11:51:04.742 2024-02-29 11:51:04.742 100 FEE 442904 16834 6111669 2024-02-29 11:51:04.742 2024-02-29 11:51:04.742 900 TIP 442904 17953 6111688 2024-02-29 11:52:51.469 2024-02-29 11:52:51.469 100 FEE 442710 20163 6111689 2024-02-29 11:52:51.469 2024-02-29 11:52:51.469 900 TIP 442710 1008 6111697 2024-02-29 11:55:22.288 2024-02-29 11:55:22.288 5700 FEE 443266 21254 6111698 2024-02-29 11:55:22.288 2024-02-29 11:55:22.288 51300 TIP 443266 1124 6111709 2024-02-29 11:58:30.928 2024-02-29 11:58:30.928 1000 FEE 442888 2176 6111710 2024-02-29 11:58:30.928 2024-02-29 11:58:30.928 9000 TIP 442888 1571 6111714 2024-02-29 12:00:05.539 2024-02-29 12:00:05.539 100000 FEE 443364 20841 6111726 2024-02-29 12:03:06.311 2024-02-29 12:03:06.311 1000 FEE 443366 1389 6111738 2024-02-29 12:04:57.844 2024-02-29 12:04:57.844 2100 FEE 443294 18832 6111739 2024-02-29 12:04:57.844 2024-02-29 12:04:57.844 18900 TIP 443294 18357 6111741 2024-02-29 12:06:02.568 2024-02-29 12:06:02.568 2100 FEE 443014 12744 6111742 2024-02-29 12:06:02.568 2024-02-29 12:06:02.568 18900 TIP 443014 14045 6111764 2024-02-29 12:08:51.341 2024-02-29 12:08:51.341 2100 FEE 443253 11328 6111765 2024-02-29 12:08:51.341 2024-02-29 12:08:51.341 18900 TIP 443253 4304 6111768 2024-02-29 12:10:34.352 2024-02-29 12:10:34.352 1000 FEE 443371 6594 6111770 2024-02-29 12:10:51.517 2024-02-29 12:10:51.517 0 FEE 443371 8242 6111773 2024-02-29 12:11:22.659 2024-02-29 12:11:22.659 1000 POLL 442751 2077 6111780 2024-02-29 12:12:33.787 2024-02-29 12:12:33.787 1000 FEE 443337 14990 6111781 2024-02-29 12:12:33.787 2024-02-29 12:12:33.787 9000 TIP 443337 4574 6039633 2024-02-23 03:36:05.226 2024-02-23 03:36:05.226 1000 STREAM 141924 2077 6039642 2024-02-23 03:37:05.226 2024-02-23 03:37:05.226 1000 STREAM 141924 9705 6039668 2024-02-23 03:39:05.277 2024-02-23 03:39:05.277 1000 STREAM 141924 10731 6039680 2024-02-23 03:40:05.307 2024-02-23 03:40:05.307 1000 STREAM 141924 732 6039691 2024-02-23 03:42:05.299 2024-02-23 03:42:05.299 1000 STREAM 141924 5160 6039702 2024-02-23 03:44:05.32 2024-02-23 03:44:05.32 1000 STREAM 141924 683 6039705 2024-02-23 03:46:05.345 2024-02-23 03:46:05.345 1000 STREAM 141924 19570 6039718 2024-02-23 03:47:05.336 2024-02-23 03:47:05.336 1000 STREAM 141924 1534 6039661 2024-02-23 03:38:05.249 2024-02-23 03:38:05.249 1000 STREAM 141924 16432 6039686 2024-02-23 03:41:05.291 2024-02-23 03:41:05.291 1000 STREAM 141924 19320 6039701 2024-02-23 03:43:05.304 2024-02-23 03:43:05.304 1000 STREAM 141924 1564 6039703 2024-02-23 03:45:05.331 2024-02-23 03:45:05.331 1000 STREAM 141924 17592 6039727 2024-02-23 03:48:05.322 2024-02-23 03:48:05.322 1000 STREAM 141924 2609 6039732 2024-02-23 03:49:05.329 2024-02-23 03:49:05.329 1000 STREAM 141924 19118 6111455 2024-02-29 11:31:03.859 2024-02-29 11:31:03.859 1000 STREAM 141924 20973 6111464 2024-02-29 11:34:03.864 2024-02-29 11:34:03.864 1000 STREAM 141924 19961 6111471 2024-02-29 11:36:03.866 2024-02-29 11:36:03.866 1000 STREAM 141924 21214 6111480 2024-02-29 11:37:03.879 2024-02-29 11:37:03.879 1000 STREAM 141924 1298 6111500 2024-02-29 11:40:03.878 2024-02-29 11:40:03.878 1000 STREAM 141924 21155 6111660 2024-02-29 11:50:03.945 2024-02-29 11:50:03.945 1000 STREAM 141924 9109 6111667 2024-02-29 11:51:03.969 2024-02-29 11:51:03.969 1000 STREAM 141924 17570 6111711 2024-02-29 11:59:04.103 2024-02-29 11:59:04.103 1000 STREAM 141924 654 6111720 2024-02-29 12:02:04.132 2024-02-29 12:02:04.132 1000 STREAM 141924 688 6111723 2024-02-29 12:03:04.144 2024-02-29 12:03:04.144 1000 STREAM 141924 3706 6111735 2024-02-29 12:04:04.16 2024-02-29 12:04:04.16 1000 STREAM 141924 12930 6111752 2024-02-29 12:07:04.193 2024-02-29 12:07:04.193 1000 STREAM 141924 10056 6039684 2024-02-23 03:40:22.523 2024-02-23 03:40:22.523 9000 TIP 435377 15978 6039687 2024-02-23 03:41:41.918 2024-02-23 03:41:41.918 4200 FEE 435663 8242 6039688 2024-02-23 03:41:41.918 2024-02-23 03:41:41.918 37800 TIP 435663 16348 6039692 2024-02-23 03:42:55.72 2024-02-23 03:42:55.72 40000 DONT_LIKE_THIS 431241 669 6039719 2024-02-23 03:47:15.388 2024-02-23 03:47:15.388 1000 FEE 435086 17095 6039720 2024-02-23 03:47:15.388 2024-02-23 03:47:15.388 9000 TIP 435086 1970 6039731 2024-02-23 03:49:03.998 2024-02-23 03:49:03.998 1000 POLL 435805 3478 6039739 2024-02-23 03:51:54.92 2024-02-23 03:51:54.92 1000 FEE 435804 10862 6039740 2024-02-23 03:51:54.92 2024-02-23 03:51:54.92 9000 TIP 435804 19909 6039743 2024-02-23 03:52:04.37 2024-02-23 03:52:04.37 10000 FEE 435805 12072 6039744 2024-02-23 03:52:04.37 2024-02-23 03:52:04.37 90000 TIP 435805 15103 6039786 2024-02-23 03:59:35.633 2024-02-23 03:59:35.633 1000 FEE 435292 13217 6039787 2024-02-23 03:59:35.633 2024-02-23 03:59:35.633 9000 TIP 435292 21233 6039800 2024-02-23 04:02:05.891 2024-02-23 04:02:05.891 20000 FEE 434665 10719 6039801 2024-02-23 04:02:05.891 2024-02-23 04:02:05.891 180000 TIP 434665 20481 6039808 2024-02-23 04:03:59.99 2024-02-23 04:03:59.99 1000 FEE 435663 19292 6039809 2024-02-23 04:03:59.99 2024-02-23 04:03:59.99 9000 TIP 435663 1549 6039812 2024-02-23 04:05:25.099 2024-02-23 04:05:25.099 1000 FEE 435817 19189 6039814 2024-02-23 04:06:38.533 2024-02-23 04:06:38.533 7100 FEE 435690 19941 6039815 2024-02-23 04:06:38.533 2024-02-23 04:06:38.533 63900 TIP 435690 21446 6039834 2024-02-23 04:08:14.06 2024-02-23 04:08:14.06 1000 FEE 435820 1552 6039887 2024-02-23 04:25:44.787 2024-02-23 04:25:44.787 1000 FEE 435657 19151 6039888 2024-02-23 04:25:44.787 2024-02-23 04:25:44.787 9000 TIP 435657 8498 6039895 2024-02-23 04:25:57.019 2024-02-23 04:25:57.019 1000 FEE 435217 718 6039896 2024-02-23 04:25:57.019 2024-02-23 04:25:57.019 9000 TIP 435217 11820 6039904 2024-02-23 04:28:51.032 2024-02-23 04:28:51.032 4000 FEE 435805 10608 6039905 2024-02-23 04:28:51.032 2024-02-23 04:28:51.032 36000 TIP 435805 18529 6039919 2024-02-23 04:29:44.671 2024-02-23 04:29:44.671 10000 FEE 435721 4076 6039920 2024-02-23 04:29:44.671 2024-02-23 04:29:44.671 90000 TIP 435721 18828 6039995 2024-02-23 04:43:02.747 2024-02-23 04:43:02.747 2100 FEE 435800 2514 6039996 2024-02-23 04:43:02.747 2024-02-23 04:43:02.747 18900 TIP 435800 797 6040015 2024-02-23 04:50:33.734 2024-02-23 04:50:33.734 6900 FEE 435579 2123 6040016 2024-02-23 04:50:33.734 2024-02-23 04:50:33.734 62100 TIP 435579 12566 6040018 2024-02-23 04:51:21.009 2024-02-23 04:51:21.009 10000 FEE 435834 6136 6040028 2024-02-23 04:55:51.82 2024-02-23 04:55:51.82 2000 FEE 435820 7966 6040029 2024-02-23 04:55:51.82 2024-02-23 04:55:51.82 18000 TIP 435820 1576 6040050 2024-02-23 05:07:17.564 2024-02-23 05:07:17.564 100000 FEE 435844 16839 6111469 2024-02-29 11:35:07.116 2024-02-29 11:35:07.116 1000 STREAM 141924 12346 6111486 2024-02-29 11:38:05.126 2024-02-29 11:38:05.126 1000 STREAM 141924 3979 6111648 2024-02-29 11:48:05.62 2024-02-29 11:48:05.62 1000 STREAM 141924 630 6111695 2024-02-29 11:55:05.721 2024-02-29 11:55:05.721 1000 STREAM 141924 19292 6111715 2024-02-29 12:00:05.769 2024-02-29 12:00:05.769 1000 STREAM 141924 21573 6111815 2024-02-29 12:22:06.151 2024-02-29 12:22:06.151 1000 STREAM 141924 1784 6111912 2024-02-29 12:36:04.354 2024-02-29 12:36:04.354 1000 STREAM 141924 19500 6111931 2024-02-29 12:42:04.432 2024-02-29 12:42:04.432 1000 STREAM 141924 1245 6111957 2024-02-29 12:44:04.438 2024-02-29 12:44:04.438 1000 STREAM 141924 9351 6111972 2024-02-29 12:46:04.461 2024-02-29 12:46:04.461 1000 STREAM 141924 3544 6112048 2024-02-29 13:04:04.634 2024-02-29 13:04:04.634 1000 STREAM 141924 10862 6112070 2024-02-29 13:06:04.64 2024-02-29 13:06:04.64 1000 STREAM 141924 20969 6112081 2024-02-29 13:07:02.661 2024-02-29 13:07:02.661 1000 STREAM 141924 19158 6112153 2024-02-29 13:12:02.706 2024-02-29 13:12:02.706 1000 STREAM 141924 18494 6112194 2024-02-29 13:17:02.717 2024-02-29 13:17:02.717 1000 STREAM 141924 11873 6112240 2024-02-29 13:22:04.748 2024-02-29 13:22:04.748 1000 STREAM 141924 19546 6112252 2024-02-29 13:24:04.753 2024-02-29 13:24:04.753 1000 STREAM 141924 7903 6112263 2024-02-29 13:25:02.751 2024-02-29 13:25:02.751 1000 STREAM 141924 20614 6112272 2024-02-29 13:27:02.762 2024-02-29 13:27:02.762 1000 STREAM 141924 20691 6112324 2024-02-29 13:34:02.8 2024-02-29 13:34:02.8 1000 STREAM 141924 13216 6112387 2024-02-29 13:41:06.829 2024-02-29 13:41:06.829 1000 STREAM 141924 5708 6112670 2024-02-29 14:00:02.943 2024-02-29 14:00:02.943 1000 STREAM 141924 5195 6112705 2024-02-29 14:04:02.947 2024-02-29 14:04:02.947 1000 STREAM 141924 20660 6112708 2024-02-29 14:05:02.925 2024-02-29 14:05:02.925 1000 STREAM 141924 9438 6112712 2024-02-29 14:06:02.947 2024-02-29 14:06:02.947 1000 STREAM 141924 11091 6112723 2024-02-29 14:08:02.957 2024-02-29 14:08:02.957 1000 STREAM 141924 802 6112738 2024-02-29 14:10:02.977 2024-02-29 14:10:02.977 1000 STREAM 141924 21600 6112740 2024-02-29 14:11:02.974 2024-02-29 14:11:02.974 1000 STREAM 141924 18528 6112745 2024-02-29 14:12:02.97 2024-02-29 14:12:02.97 1000 STREAM 141924 1493 6039689 2024-02-23 03:41:47.766 2024-02-23 03:41:47.766 4200 FEE 435610 19902 6039690 2024-02-23 03:41:47.766 2024-02-23 03:41:47.766 37800 TIP 435610 20730 6039693 2024-02-23 03:43:00.126 2024-02-23 03:43:00.126 500 FEE 434654 17415 6039694 2024-02-23 03:43:00.126 2024-02-23 03:43:00.126 4500 TIP 434654 20964 6039723 2024-02-23 03:47:36.119 2024-02-23 03:47:36.119 1000 FEE 435384 18528 6039724 2024-02-23 03:47:36.119 2024-02-23 03:47:36.119 9000 TIP 435384 20825 6039728 2024-02-23 03:48:16.679 2024-02-23 03:48:16.679 10000 FEE 435806 14037 6039729 2024-02-23 03:48:41.054 2024-02-23 03:48:41.054 1000 FEE 435805 3656 6039730 2024-02-23 03:48:41.054 2024-02-23 03:48:41.054 9000 TIP 435805 1713 6039738 2024-02-23 03:51:34.781 2024-02-23 03:51:34.781 1000 FEE 435808 18635 6039748 2024-02-23 03:54:14.835 2024-02-23 03:54:14.835 1000 FEE 435810 18830 6039750 2024-02-23 03:54:54.271 2024-02-23 03:54:54.271 4200 FEE 435383 21138 6039751 2024-02-23 03:54:54.271 2024-02-23 03:54:54.271 37800 TIP 435383 18663 6039757 2024-02-23 03:56:33.132 2024-02-23 03:56:33.132 10000 FEE 435669 14074 6039758 2024-02-23 03:56:33.132 2024-02-23 03:56:33.132 90000 TIP 435669 10469 6039760 2024-02-23 03:57:15.904 2024-02-23 03:57:15.904 1000 FEE 435813 9150 6039763 2024-02-23 03:57:27.306 2024-02-23 03:57:27.306 1000 FEE 435814 19333 6039771 2024-02-23 03:58:53.565 2024-02-23 03:58:53.565 1000 FEE 435242 18511 6039772 2024-02-23 03:58:53.565 2024-02-23 03:58:53.565 9000 TIP 435242 19527 6039775 2024-02-23 03:58:55.789 2024-02-23 03:58:55.789 1000 FEE 435217 2773 6039776 2024-02-23 03:58:55.789 2024-02-23 03:58:55.789 9000 TIP 435217 19087 6039780 2024-02-23 03:59:09.642 2024-02-23 03:59:09.642 1000 FEE 435580 15843 6039781 2024-02-23 03:59:09.642 2024-02-23 03:59:09.642 9000 TIP 435580 5128 6039793 2024-02-23 04:00:57.226 2024-02-23 04:00:57.226 0 FEE 435815 20826 6039807 2024-02-23 04:03:54.096 2024-02-23 04:03:54.096 1000 FEE 435816 14295 6039818 2024-02-23 04:07:06.086 2024-02-23 04:07:06.086 2100 FEE 435812 19103 6039819 2024-02-23 04:07:06.086 2024-02-23 04:07:06.086 18900 TIP 435812 9167 6039843 2024-02-23 04:08:37.464 2024-02-23 04:08:37.464 10000 FEE 435711 5387 6039844 2024-02-23 04:08:37.464 2024-02-23 04:08:37.464 90000 TIP 435711 20452 6039858 2024-02-23 04:13:51.157 2024-02-23 04:13:51.157 10100 FEE 435610 21446 6039859 2024-02-23 04:13:51.157 2024-02-23 04:13:51.157 90900 TIP 435610 5195 6039869 2024-02-23 04:15:31.338 2024-02-23 04:15:31.338 1000 FEE 435825 722 6039915 2024-02-23 04:29:17.427 2024-02-23 04:29:17.427 1000 FEE 435384 5694 6039916 2024-02-23 04:29:17.427 2024-02-23 04:29:17.427 9000 TIP 435384 17727 6039973 2024-02-23 04:38:00.358 2024-02-23 04:38:00.358 1000 FEE 435695 15160 6039974 2024-02-23 04:38:00.358 2024-02-23 04:38:00.358 9000 TIP 435695 19259 6039978 2024-02-23 04:38:27.436 2024-02-23 04:38:27.436 1000 FEE 435674 18380 6039979 2024-02-23 04:38:27.436 2024-02-23 04:38:27.436 9000 TIP 435674 18178 6039982 2024-02-23 04:38:39.807 2024-02-23 04:38:39.807 1000 FEE 435831 18930 6039986 2024-02-23 04:39:33.513 2024-02-23 04:39:33.513 10000 FEE 435576 10586 6039987 2024-02-23 04:39:33.513 2024-02-23 04:39:33.513 90000 TIP 435576 10283 6040003 2024-02-23 04:45:26.701 2024-02-23 04:45:26.701 1000 FEE 435721 732 6040004 2024-02-23 04:45:26.701 2024-02-23 04:45:26.701 9000 TIP 435721 3342 6040007 2024-02-23 04:47:50.003 2024-02-23 04:47:50.003 100000 FEE 435833 7185 6040034 2024-02-23 04:58:28.879 2024-02-23 04:58:28.879 1000 FEE 435839 4819 6040059 2024-02-23 05:12:38.664 2024-02-23 05:12:38.664 1000 POLL 435805 768 6040067 2024-02-23 05:17:59.419 2024-02-23 05:17:59.419 100 FEE 435776 10063 6040068 2024-02-23 05:17:59.419 2024-02-23 05:17:59.419 900 TIP 435776 1468 6040102 2024-02-23 05:24:57.356 2024-02-23 05:24:57.356 1000 FEE 435854 17592 6040121 2024-02-23 05:34:15.774 2024-02-23 05:34:15.774 1000 FEE 435858 20554 6040142 2024-02-23 05:45:17.874 2024-02-23 05:45:17.874 100 FEE 435488 2367 6040143 2024-02-23 05:45:17.874 2024-02-23 05:45:17.874 900 TIP 435488 10013 6040147 2024-02-23 05:47:16.729 2024-02-23 05:47:16.729 100 FEE 435639 6499 6039811 2024-02-23 04:05:01.775 2024-02-23 04:05:01.775 1000 STREAM 141924 18815 6039846 2024-02-23 04:09:01.808 2024-02-23 04:09:01.808 1000 STREAM 141924 16653 6111485 2024-02-29 11:38:00.674 2024-02-29 11:38:00.674 9000 TIP 443329 18815 6111498 2024-02-29 11:40:02.168 2024-02-29 11:40:02.168 1000 FEE 443297 12222 6111499 2024-02-29 11:40:02.168 2024-02-29 11:40:02.168 9000 TIP 443297 6136 6111501 2024-02-29 11:40:26.073 2024-02-29 11:40:26.073 1000 FEE 443339 688 6111502 2024-02-29 11:40:26.073 2024-02-29 11:40:26.073 9000 TIP 443339 19449 6111512 2024-02-29 11:42:10.032 2024-02-29 11:42:10.032 5000 FEE 442313 1733 6111513 2024-02-29 11:42:10.032 2024-02-29 11:42:10.032 45000 TIP 442313 5455 6111520 2024-02-29 11:42:22.856 2024-02-29 11:42:22.856 1000 FEE 443169 9354 6111521 2024-02-29 11:42:22.856 2024-02-29 11:42:22.856 9000 TIP 443169 621 6111541 2024-02-29 11:44:30.769 2024-02-29 11:44:30.769 1000 FEE 443351 16684 6111562 2024-02-29 11:46:13.894 2024-02-29 11:46:13.894 1300 FEE 443319 20993 6111563 2024-02-29 11:46:13.894 2024-02-29 11:46:13.894 11700 TIP 443319 19199 6039829 2024-02-23 04:08:04.52 2024-02-23 04:08:04.52 18900 TIP 435697 21067 6039835 2024-02-23 04:08:21.633 2024-02-23 04:08:21.633 10000 FEE 435728 16282 6039836 2024-02-23 04:08:21.633 2024-02-23 04:08:21.633 90000 TIP 435728 2525 6039877 2024-02-23 04:18:11.058 2024-02-23 04:18:11.058 1000 FEE 435828 9874 6039893 2024-02-23 04:25:52.818 2024-02-23 04:25:52.818 1000 FEE 435242 21292 6039894 2024-02-23 04:25:52.818 2024-02-23 04:25:52.818 9000 TIP 435242 18680 6039932 2024-02-23 04:30:58.888 2024-02-23 04:30:58.888 1000 FEE 435551 18363 6039933 2024-02-23 04:30:58.888 2024-02-23 04:30:58.888 9000 TIP 435551 2576 6039951 2024-02-23 04:31:25.867 2024-02-23 04:31:25.867 2100 FEE 435610 10283 6039952 2024-02-23 04:31:25.867 2024-02-23 04:31:25.867 18900 TIP 435610 11873 6039955 2024-02-23 04:31:40.955 2024-02-23 04:31:40.955 1000 FEE 435829 20657 6039999 2024-02-23 04:43:57.137 2024-02-23 04:43:57.137 1000 FEE 435242 8713 6040000 2024-02-23 04:43:57.137 2024-02-23 04:43:57.137 9000 TIP 435242 18618 6040020 2024-02-23 04:51:27.629 2024-02-23 04:51:27.629 1000 FEE 435836 15282 6040066 2024-02-23 05:17:29.986 2024-02-23 05:17:29.986 1000 FEE 435849 4650 6040069 2024-02-23 05:17:59.592 2024-02-23 05:17:59.592 100 FEE 435776 11153 6040070 2024-02-23 05:17:59.592 2024-02-23 05:17:59.592 900 TIP 435776 11897 6040101 2024-02-23 05:24:48.124 2024-02-23 05:24:48.124 1000 FEE 435853 20084 6040106 2024-02-23 05:26:27.141 2024-02-23 05:26:27.141 50000 FEE 435770 1244 6040107 2024-02-23 05:26:27.141 2024-02-23 05:26:27.141 450000 TIP 435770 21446 6040192 2024-02-23 05:58:15.089 2024-02-23 05:58:15.089 0 FEE 435869 20280 6040198 2024-02-23 05:59:47.359 2024-02-23 05:59:47.359 1000 FEE 435873 646 6040242 2024-02-23 06:03:44.657 2024-02-23 06:03:44.657 100 FEE 435217 19806 6040243 2024-02-23 06:03:44.657 2024-02-23 06:03:44.657 900 TIP 435217 17082 6040254 2024-02-23 06:05:33 2024-02-23 06:05:33 20000 FEE 435669 3360 6040255 2024-02-23 06:05:33 2024-02-23 06:05:33 180000 TIP 435669 12122 6040271 2024-02-23 06:14:58.803 2024-02-23 06:14:58.803 1000 FEE 435880 690 6040279 2024-02-23 06:19:01.983 2024-02-23 06:19:01.983 1600 FEE 435488 19987 6040280 2024-02-23 06:19:01.983 2024-02-23 06:19:01.983 14400 TIP 435488 20826 6040295 2024-02-23 06:20:33.185 2024-02-23 06:20:33.185 36000 FEE 435139 701 6040296 2024-02-23 06:20:33.185 2024-02-23 06:20:33.185 324000 TIP 435139 6688 6040309 2024-02-23 06:25:46.339 2024-02-23 06:25:46.339 21000 FEE 435882 11477 6040326 2024-02-23 06:33:54.798 2024-02-23 06:33:54.798 100 FEE 435746 8423 6040327 2024-02-23 06:33:54.798 2024-02-23 06:33:54.798 900 TIP 435746 10668 6040350 2024-02-23 06:35:15.917 2024-02-23 06:35:15.917 1000 FEE 432920 21417 6040351 2024-02-23 06:35:15.917 2024-02-23 06:35:15.917 9000 TIP 432920 14168 6040388 2024-02-23 06:37:37.757 2024-02-23 06:37:37.757 400 FEE 435799 12102 6040389 2024-02-23 06:37:37.757 2024-02-23 06:37:37.757 3600 TIP 435799 15386 6040395 2024-02-23 06:39:09.439 2024-02-23 06:39:09.439 1000 FEE 433247 19511 6040396 2024-02-23 06:39:09.439 2024-02-23 06:39:09.439 9000 TIP 433247 15484 6040399 2024-02-23 06:39:24.252 2024-02-23 06:39:24.252 800 FEE 435328 12930 6040400 2024-02-23 06:39:24.252 2024-02-23 06:39:24.252 7200 TIP 435328 14774 6040422 2024-02-23 06:39:28.262 2024-02-23 06:39:28.262 800 FEE 435328 986 6040423 2024-02-23 06:39:28.262 2024-02-23 06:39:28.262 7200 TIP 435328 20231 6040473 2024-02-23 06:54:29.705 2024-02-23 06:54:29.705 1000 FEE 435899 670 6040517 2024-02-23 07:08:24.469 2024-02-23 07:08:24.469 0 FEE 435904 14213 6040520 2024-02-23 07:10:20.911 2024-02-23 07:10:20.911 10000 FEE 435905 19458 6040529 2024-02-23 07:11:50.846 2024-02-23 07:11:50.846 2100 FEE 435610 21033 6040530 2024-02-23 07:11:50.846 2024-02-23 07:11:50.846 18900 TIP 435610 631 6040531 2024-02-23 07:11:53.13 2024-02-23 07:11:53.13 2100 FEE 435551 21373 6040532 2024-02-23 07:11:53.13 2024-02-23 07:11:53.13 18900 TIP 435551 21172 6040541 2024-02-23 07:11:56.74 2024-02-23 07:11:56.74 2100 FEE 435805 19121 6040542 2024-02-23 07:11:56.74 2024-02-23 07:11:56.74 18900 TIP 435805 4102 6040560 2024-02-23 07:12:14.967 2024-02-23 07:12:14.967 2100 FEE 435667 1480 6040561 2024-02-23 07:12:14.967 2024-02-23 07:12:14.967 18900 TIP 435667 16406 6040581 2024-02-23 07:13:41.638 2024-02-23 07:13:41.638 100 FEE 435902 999 6040582 2024-02-23 07:13:41.638 2024-02-23 07:13:41.638 900 TIP 435902 998 6040585 2024-02-23 07:13:42.456 2024-02-23 07:13:42.456 100 FEE 435902 1006 6040586 2024-02-23 07:13:42.456 2024-02-23 07:13:42.456 900 TIP 435902 15463 6040611 2024-02-23 07:19:14.187 2024-02-23 07:19:14.187 210000 FEE 435908 1003 6040617 2024-02-23 07:21:39.136 2024-02-23 07:21:39.136 1000 FEE 435911 19512 6040622 2024-02-23 07:24:04.039 2024-02-23 07:24:04.039 1000 FEE 435913 16788 6040659 2024-02-23 07:36:40.262 2024-02-23 07:36:40.262 12800 FEE 435657 19322 6040660 2024-02-23 07:36:40.262 2024-02-23 07:36:40.262 115200 TIP 435657 4415 6040691 2024-02-23 07:39:57.34 2024-02-23 07:39:57.34 12800 FEE 435728 20603 6040692 2024-02-23 07:39:57.34 2024-02-23 07:39:57.34 115200 TIP 435728 1602 6040696 2024-02-23 07:40:49.663 2024-02-23 07:40:49.663 12800 FEE 435709 19103 6040697 2024-02-23 07:40:49.663 2024-02-23 07:40:49.663 115200 TIP 435709 12122 6040699 2024-02-23 07:41:11.563 2024-02-23 07:41:11.563 1000 FEE 435921 1354 6040724 2024-02-23 07:42:37.017 2024-02-23 07:42:37.017 1000 FEE 435755 1652 6040725 2024-02-23 07:42:37.017 2024-02-23 07:42:37.017 9000 TIP 435755 2577 6040734 2024-02-23 07:44:10.287 2024-02-23 07:44:10.287 1000 FEE 435925 19346 6040749 2024-02-23 07:46:46.571 2024-02-23 07:46:46.571 1000 FEE 435928 17392 6040760 2024-02-23 07:48:38.67 2024-02-23 07:48:38.67 2100 FEE 435915 19943 6040761 2024-02-23 07:48:38.67 2024-02-23 07:48:38.67 18900 TIP 435915 20710 6040775 2024-02-23 07:50:55.089 2024-02-23 07:50:55.089 0 FEE 435926 1773 6040801 2024-02-23 07:54:28.865 2024-02-23 07:54:28.865 1000 FEE 435934 18615 6040824 2024-02-23 08:05:31.59 2024-02-23 08:05:31.59 0 FEE 435937 16194 6040846 2024-02-23 08:12:54.65 2024-02-23 08:12:54.65 1000 FEE 435940 760 6040884 2024-02-23 08:26:35.053 2024-02-23 08:26:35.053 1000 FEE 435945 17568 6040897 2024-02-23 08:29:10.28 2024-02-23 08:29:10.28 1000 FEE 435948 7998 6040917 2024-02-23 08:38:52.549 2024-02-23 08:38:52.549 1000 FEE 435812 9426 6040918 2024-02-23 08:38:52.549 2024-02-23 08:38:52.549 9000 TIP 435812 20624 6040936 2024-02-23 08:43:10.576 2024-02-23 08:43:10.576 10000 FEE 435954 1272 6040948 2024-02-23 08:49:33.877 2024-02-23 08:49:33.877 800 FEE 435831 6798 6040949 2024-02-23 08:49:33.877 2024-02-23 08:49:33.877 7200 TIP 435831 10979 6040959 2024-02-23 08:53:12.852 2024-02-23 08:53:12.852 12800 FEE 435921 20287 6040960 2024-02-23 08:53:12.852 2024-02-23 08:53:12.852 115200 TIP 435921 15526 6040964 2024-02-23 08:54:07.292 2024-02-23 08:54:07.292 800 FEE 435904 2010 6040965 2024-02-23 08:54:07.292 2024-02-23 08:54:07.292 7200 TIP 435904 20153 6040971 2024-02-23 08:56:01.733 2024-02-23 08:56:01.733 1000 FEE 435957 696 6040981 2024-02-23 09:01:37.817 2024-02-23 09:01:37.817 1000 FEE 435961 21472 6041000 2024-02-23 09:09:54.967 2024-02-23 09:09:54.967 1100 FEE 435924 18310 6041001 2024-02-23 09:09:54.967 2024-02-23 09:09:54.967 9900 TIP 435924 17455 6041004 2024-02-23 09:10:40.838 2024-02-23 09:10:40.838 1100 FEE 435922 14169 6041005 2024-02-23 09:10:40.838 2024-02-23 09:10:40.838 9900 TIP 435922 6382 6041012 2024-02-23 09:10:53.405 2024-02-23 09:10:53.405 1000 FEE 435488 14202 6041013 2024-02-23 09:10:53.405 2024-02-23 09:10:53.405 9000 TIP 435488 5129 6041020 2024-02-23 09:10:56.084 2024-02-23 09:10:56.084 1000 FEE 435718 21042 6041021 2024-02-23 09:10:56.084 2024-02-23 09:10:56.084 9000 TIP 435718 5694 6041034 2024-02-23 09:11:01.133 2024-02-23 09:11:01.133 1000 FEE 435902 19335 6039853 2024-02-23 04:12:01.976 2024-02-23 04:12:01.976 1000 STREAM 141924 8168 6111559 2024-02-29 11:46:03.922 2024-02-29 11:46:03.922 1000 STREAM 141924 20655 6111637 2024-02-29 11:47:03.923 2024-02-29 11:47:03.923 1000 STREAM 141924 769 6039880 2024-02-23 04:21:01.917 2024-02-23 04:21:01.917 1000 STREAM 141924 16177 6039882 2024-02-23 04:23:01.936 2024-02-23 04:23:01.936 1000 STREAM 141924 8535 6039992 2024-02-23 04:42:02.121 2024-02-23 04:42:02.121 1000 STREAM 141924 15119 6040005 2024-02-23 04:46:02.167 2024-02-23 04:46:02.167 1000 STREAM 141924 9920 6040008 2024-02-23 04:48:02.196 2024-02-23 04:48:02.196 1000 STREAM 141924 11561 6040033 2024-02-23 04:58:02.302 2024-02-23 04:58:02.302 1000 STREAM 141924 6749 6040045 2024-02-23 05:04:02.288 2024-02-23 05:04:02.288 1000 STREAM 141924 10398 6040051 2024-02-23 05:08:02.333 2024-02-23 05:08:02.333 1000 STREAM 141924 1221 6040055 2024-02-23 05:10:02.368 2024-02-23 05:10:02.368 1000 STREAM 141924 2322 6111574 2024-02-29 11:46:16.234 2024-02-29 11:46:16.234 1300 FEE 443319 1772 6111575 2024-02-29 11:46:16.234 2024-02-29 11:46:16.234 11700 TIP 443319 974 6111586 2024-02-29 11:46:17.175 2024-02-29 11:46:17.175 1300 FEE 443319 7992 6111587 2024-02-29 11:46:17.175 2024-02-29 11:46:17.175 11700 TIP 443319 17166 6111596 2024-02-29 11:46:18.058 2024-02-29 11:46:18.058 1300 FEE 443319 20680 6111597 2024-02-29 11:46:18.058 2024-02-29 11:46:18.058 11700 TIP 443319 17953 6111602 2024-02-29 11:46:18.532 2024-02-29 11:46:18.532 1300 FEE 443319 19566 6111603 2024-02-29 11:46:18.532 2024-02-29 11:46:18.532 11700 TIP 443319 811 6111606 2024-02-29 11:46:19.087 2024-02-29 11:46:19.087 1300 FEE 443319 681 6111607 2024-02-29 11:46:19.087 2024-02-29 11:46:19.087 11700 TIP 443319 17094 6111612 2024-02-29 11:46:19.555 2024-02-29 11:46:19.555 1300 FEE 443319 21457 6111613 2024-02-29 11:46:19.555 2024-02-29 11:46:19.555 11700 TIP 443319 16485 6111620 2024-02-29 11:46:20.289 2024-02-29 11:46:20.289 1300 FEE 443319 21393 6111621 2024-02-29 11:46:20.289 2024-02-29 11:46:20.289 11700 TIP 443319 5728 6111634 2024-02-29 11:46:29.624 2024-02-29 11:46:29.624 5700 FEE 443339 19981 6111635 2024-02-29 11:46:29.624 2024-02-29 11:46:29.624 51300 TIP 443339 1245 6111636 2024-02-29 11:46:39.573 2024-02-29 11:46:39.573 1000 FEE 443354 16052 6111647 2024-02-29 11:47:49.185 2024-02-29 11:47:49.185 1000 FEE 443356 8360 6111678 2024-02-29 11:51:31.14 2024-02-29 11:51:31.14 100 FEE 442627 10469 6111679 2024-02-29 11:51:31.14 2024-02-29 11:51:31.14 900 TIP 442627 2065 6111696 2024-02-29 11:55:12.71 2024-02-29 11:55:12.71 1000 FEE 443361 18423 6111724 2024-02-29 12:03:04.348 2024-02-29 12:03:04.348 200 FEE 443363 16867 6111725 2024-02-29 12:03:04.348 2024-02-29 12:03:04.348 1800 TIP 443363 20023 6111736 2024-02-29 12:04:46.894 2024-02-29 12:04:46.894 1000 FEE 443319 1272 6111737 2024-02-29 12:04:46.894 2024-02-29 12:04:46.894 9000 TIP 443319 644 6111744 2024-02-29 12:06:13.243 2024-02-29 12:06:13.243 500 FEE 443332 15409 6111745 2024-02-29 12:06:13.243 2024-02-29 12:06:13.243 4500 TIP 443332 20163 6111746 2024-02-29 12:06:20.132 2024-02-29 12:06:20.132 210000 FEE 443367 17226 6111775 2024-02-29 12:11:59.157 2024-02-29 12:11:59.157 2100 FEE 443371 5776 6111776 2024-02-29 12:11:59.157 2024-02-29 12:11:59.157 18900 TIP 443371 10359 6111790 2024-02-29 12:14:14.582 2024-02-29 12:14:14.582 1000 POLL 442163 5746 6111798 2024-02-29 12:17:32.636 2024-02-29 12:17:32.636 5000 FEE 443376 17526 6111806 2024-02-29 12:21:13.528 2024-02-29 12:21:13.528 2100 FEE 443319 7395 6111807 2024-02-29 12:21:13.528 2024-02-29 12:21:13.528 18900 TIP 443319 19335 6039976 2024-02-23 04:38:11.315 2024-02-23 04:38:11.315 1000 FEE 435667 18454 6039977 2024-02-23 04:38:11.315 2024-02-23 04:38:11.315 9000 TIP 435667 20990 6040012 2024-02-23 04:49:47.351 2024-02-23 04:49:47.351 11100 FEE 434410 673 6040013 2024-02-23 04:49:47.351 2024-02-23 04:49:47.351 99900 TIP 434410 15273 6040019 2024-02-23 04:51:27.221 2024-02-23 04:51:27.221 100000 FEE 435835 3642 6040037 2024-02-23 05:00:04.655 2024-02-23 05:00:04.655 10000 FEE 435840 20624 6040054 2024-02-23 05:09:29.313 2024-02-23 05:09:29.313 1000 FEE 435846 11866 6040075 2024-02-23 05:18:00.362 2024-02-23 05:18:00.362 100 FEE 435776 965 6040076 2024-02-23 05:18:00.362 2024-02-23 05:18:00.362 900 TIP 435776 750 6040083 2024-02-23 05:18:01.578 2024-02-23 05:18:01.578 100 FEE 435776 21371 6040084 2024-02-23 05:18:01.578 2024-02-23 05:18:01.578 900 TIP 435776 4388 6040115 2024-02-23 05:32:49.636 2024-02-23 05:32:49.636 1000 FEE 435857 5557 6040119 2024-02-23 05:33:08.466 2024-02-23 05:33:08.466 1000 POLL 435516 21140 6040126 2024-02-23 05:36:53.603 2024-02-23 05:36:53.603 10100 FEE 435847 10270 6040127 2024-02-23 05:36:53.603 2024-02-23 05:36:53.603 90900 TIP 435847 2832 6040138 2024-02-23 05:42:28.868 2024-02-23 05:42:28.868 0 FEE 435860 20120 6040151 2024-02-23 05:47:17.197 2024-02-23 05:47:17.197 100 FEE 435639 13246 6040152 2024-02-23 05:47:17.197 2024-02-23 05:47:17.197 900 TIP 435639 703 6040162 2024-02-23 05:48:38.887 2024-02-23 05:48:38.887 1000 FEE 435246 9169 6040163 2024-02-23 05:48:38.887 2024-02-23 05:48:38.887 9000 TIP 435246 15690 6040182 2024-02-23 05:55:10.208 2024-02-23 05:55:10.208 2100 FEE 435803 20973 6040183 2024-02-23 05:55:10.208 2024-02-23 05:55:10.208 18900 TIP 435803 706 6040190 2024-02-23 05:57:46.75 2024-02-23 05:57:46.75 1000 FEE 435871 19930 6040200 2024-02-23 06:00:35.248 2024-02-23 06:00:35.248 100 FEE 435242 21369 6040201 2024-02-23 06:00:35.248 2024-02-23 06:00:35.248 900 TIP 435242 19352 6040208 2024-02-23 06:00:35.845 2024-02-23 06:00:35.845 100 FEE 435242 21116 6040209 2024-02-23 06:00:35.845 2024-02-23 06:00:35.845 900 TIP 435242 20585 6040213 2024-02-23 06:01:12.881 2024-02-23 06:01:12.881 300 FEE 435837 9426 6040214 2024-02-23 06:01:12.881 2024-02-23 06:01:12.881 2700 TIP 435837 20889 6040231 2024-02-23 06:01:38.565 2024-02-23 06:01:38.565 400 FEE 435328 8870 6040232 2024-02-23 06:01:38.565 2024-02-23 06:01:38.565 3600 TIP 435328 2022 6040236 2024-02-23 06:02:51.817 2024-02-23 06:02:51.817 1000 FEE 435874 20781 6040238 2024-02-23 06:03:43.345 2024-02-23 06:03:43.345 100 FEE 435217 18449 6040239 2024-02-23 06:03:43.345 2024-02-23 06:03:43.345 900 TIP 435217 2061 6040256 2024-02-23 06:05:44.18 2024-02-23 06:05:44.18 1000 FEE 435876 937 6040291 2024-02-23 06:20:26.089 2024-02-23 06:20:26.089 1000 FEE 435755 5757 6040292 2024-02-23 06:20:26.089 2024-02-23 06:20:26.089 9000 TIP 435755 951 6040293 2024-02-23 06:20:32.8 2024-02-23 06:20:32.8 4000 FEE 435139 9184 6040294 2024-02-23 06:20:32.8 2024-02-23 06:20:32.8 36000 TIP 435139 15271 6040300 2024-02-23 06:21:07.275 2024-02-23 06:21:07.275 1000 FEE 435582 18393 6040301 2024-02-23 06:21:07.275 2024-02-23 06:21:07.275 9000 TIP 435582 5661 6040328 2024-02-23 06:33:54.994 2024-02-23 06:33:54.994 900 FEE 435746 9036 6040329 2024-02-23 06:33:54.994 2024-02-23 06:33:54.994 8100 TIP 435746 20993 6040341 2024-02-23 06:34:41.925 2024-02-23 06:34:41.925 900 FEE 435769 9920 6040342 2024-02-23 06:34:41.925 2024-02-23 06:34:41.925 8100 TIP 435769 2264 6040352 2024-02-23 06:35:29.164 2024-02-23 06:35:29.164 100 FEE 435826 16440 6040353 2024-02-23 06:35:29.164 2024-02-23 06:35:29.164 900 TIP 435826 19469 6040354 2024-02-23 06:35:29.348 2024-02-23 06:35:29.348 900 FEE 435826 1291 6040355 2024-02-23 06:35:29.348 2024-02-23 06:35:29.348 8100 TIP 435826 16042 6040362 2024-02-23 06:35:57.476 2024-02-23 06:35:57.476 100 FEE 435860 5173 6040363 2024-02-23 06:35:57.476 2024-02-23 06:35:57.476 900 TIP 435860 4776 6040364 2024-02-23 06:35:57.684 2024-02-23 06:35:57.684 900 FEE 435860 8133 6040365 2024-02-23 06:35:57.684 2024-02-23 06:35:57.684 8100 TIP 435860 1751 6040375 2024-02-23 06:36:06.971 2024-02-23 06:36:06.971 7100 FEE 435799 18556 6040376 2024-02-23 06:36:06.971 2024-02-23 06:36:06.971 63900 TIP 435799 18274 6040397 2024-02-23 06:39:24.093 2024-02-23 06:39:24.093 800 FEE 435328 21547 6040398 2024-02-23 06:39:24.093 2024-02-23 06:39:24.093 7200 TIP 435328 14515 6040437 2024-02-23 06:41:54.547 2024-02-23 06:41:54.547 1000 FEE 435890 1209 6040438 2024-02-23 06:42:01.409 2024-02-23 06:42:01.409 800 FEE 435808 699 6040439 2024-02-23 06:42:01.409 2024-02-23 06:42:01.409 7200 TIP 435808 12965 6040451 2024-02-23 06:47:47.426 2024-02-23 06:47:47.426 2100 FEE 435769 19812 6040452 2024-02-23 06:47:47.426 2024-02-23 06:47:47.426 18900 TIP 435769 17217 6040461 2024-02-23 06:50:57.264 2024-02-23 06:50:57.264 10000 FEE 435847 19094 6040462 2024-02-23 06:50:57.264 2024-02-23 06:50:57.264 90000 TIP 435847 11038 6040465 2024-02-23 06:50:59.503 2024-02-23 06:50:59.503 10000 FEE 435847 21344 6040466 2024-02-23 06:50:59.503 2024-02-23 06:50:59.503 90000 TIP 435847 1769 6040488 2024-02-23 06:56:26.655 2024-02-23 06:56:26.655 1000 FEE 435900 19007 6040525 2024-02-23 07:11:49.245 2024-02-23 07:11:49.245 2100 FEE 435328 2734 6040526 2024-02-23 07:11:49.245 2024-02-23 07:11:49.245 18900 TIP 435328 21356 6040527 2024-02-23 07:11:49.954 2024-02-23 07:11:49.954 2100 FEE 435812 831 6040528 2024-02-23 07:11:49.954 2024-02-23 07:11:49.954 18900 TIP 435812 13169 6040533 2024-02-23 07:11:53.193 2024-02-23 07:11:53.193 2100 FEE 435488 19848 6040534 2024-02-23 07:11:53.193 2024-02-23 07:11:53.193 18900 TIP 435488 20502 6040545 2024-02-23 07:11:57.871 2024-02-23 07:11:57.871 2100 FEE 435826 18101 6040546 2024-02-23 07:11:57.871 2024-02-23 07:11:57.871 18900 TIP 435826 9084 6040577 2024-02-23 07:13:41.269 2024-02-23 07:13:41.269 100 FEE 435902 4177 6040578 2024-02-23 07:13:41.269 2024-02-23 07:13:41.269 900 TIP 435902 1585 6040579 2024-02-23 07:13:41.436 2024-02-23 07:13:41.436 100 FEE 435902 1198 6040580 2024-02-23 07:13:41.436 2024-02-23 07:13:41.436 900 TIP 435902 20066 6040612 2024-02-23 07:19:40.374 2024-02-23 07:19:40.374 1000 FEE 435909 13046 6040637 2024-02-23 07:26:01.759 2024-02-23 07:26:01.759 100 FEE 435242 9107 6040638 2024-02-23 07:26:01.759 2024-02-23 07:26:01.759 900 TIP 435242 20509 6040669 2024-02-23 07:37:32.592 2024-02-23 07:37:32.592 1000 FEE 435812 21091 6040670 2024-02-23 07:37:32.592 2024-02-23 07:37:32.592 9000 TIP 435812 20120 6040735 2024-02-23 07:44:46.186 2024-02-23 07:44:46.186 21000 FEE 435926 18314 6040774 2024-02-23 07:50:52.246 2024-02-23 07:50:52.246 1000 FEE 435932 21037 6040778 2024-02-23 07:51:25.175 2024-02-23 07:51:25.175 0 FEE 383547 9476 6040792 2024-02-23 07:53:47.675 2024-02-23 07:53:47.675 100 FEE 435639 17552 6040793 2024-02-23 07:53:47.675 2024-02-23 07:53:47.675 900 TIP 435639 1221 6040859 2024-02-23 08:15:09.83 2024-02-23 08:15:09.83 200 FEE 435030 19105 6040860 2024-02-23 08:15:09.83 2024-02-23 08:15:09.83 1800 TIP 435030 9796 6040903 2024-02-23 08:30:07.904 2024-02-23 08:30:07.904 10000 FEE 232964 18658 6040904 2024-02-23 08:30:07.904 2024-02-23 08:30:07.904 90000 TIP 232964 13781 6040006 2024-02-23 04:47:05.971 2024-02-23 04:47:05.971 1000 STREAM 141924 663 6040009 2024-02-23 04:49:05.963 2024-02-23 04:49:05.963 1000 STREAM 141924 715 6111619 2024-02-29 11:46:20.075 2024-02-29 11:46:20.075 11700 TIP 443319 15762 6111622 2024-02-29 11:46:20.479 2024-02-29 11:46:20.479 1300 FEE 443319 11430 6111623 2024-02-29 11:46:20.479 2024-02-29 11:46:20.479 11700 TIP 443319 21148 6111665 2024-02-29 11:50:33.577 2024-02-29 11:50:33.577 500 FEE 443099 20826 6111666 2024-02-29 11:50:33.577 2024-02-29 11:50:33.577 4500 TIP 443099 19103 6111680 2024-02-29 11:51:33.812 2024-02-29 11:51:33.812 100 FEE 443129 15697 6111681 2024-02-29 11:51:33.812 2024-02-29 11:51:33.812 900 TIP 443129 999 6111682 2024-02-29 11:51:35.786 2024-02-29 11:51:35.786 100 FEE 442894 15556 6111683 2024-02-29 11:51:35.786 2024-02-29 11:51:35.786 900 TIP 442894 17708 6111713 2024-02-29 11:59:47.024 2024-02-29 11:59:47.024 10000 FEE 443363 659 6111733 2024-02-29 12:03:34.86 2024-02-29 12:03:34.86 1000 FEE 443299 11314 6111734 2024-02-29 12:03:34.86 2024-02-29 12:03:34.86 9000 TIP 443299 16876 6111757 2024-02-29 12:08:16.44 2024-02-29 12:08:16.44 5000 FEE 443225 6030 6111758 2024-02-29 12:08:16.44 2024-02-29 12:08:16.44 45000 TIP 443225 19664 6111769 2024-02-29 12:10:40.34 2024-02-29 12:10:40.34 100000 FEE 443372 987 6111784 2024-02-29 12:12:43.847 2024-02-29 12:12:43.847 3200 FEE 443372 9844 6111785 2024-02-29 12:12:43.847 2024-02-29 12:12:43.847 28800 TIP 443372 20246 6111809 2024-02-29 12:22:02.177 2024-02-29 12:22:02.177 1000 FEE 443336 21374 6111810 2024-02-29 12:22:02.177 2024-02-29 12:22:02.177 9000 TIP 443336 2710 6111828 2024-02-29 12:24:19.007 2024-02-29 12:24:19.007 5000 FEE 443380 20109 6111829 2024-02-29 12:24:19.007 2024-02-29 12:24:19.007 45000 TIP 443380 12930 6111830 2024-02-29 12:24:20.041 2024-02-29 12:24:20.041 5000 FEE 443381 17227 6111831 2024-02-29 12:24:20.041 2024-02-29 12:24:20.041 45000 TIP 443381 17797 6111905 2024-02-29 12:35:08.427 2024-02-29 12:35:08.427 2100 FEE 442608 769 6111906 2024-02-29 12:35:08.427 2024-02-29 12:35:08.427 18900 TIP 442608 19352 6111909 2024-02-29 12:35:13.897 2024-02-29 12:35:13.897 1000 FEE 443400 21148 6111935 2024-02-29 12:42:12.007 2024-02-29 12:42:12.007 4200 FEE 443319 8242 6111936 2024-02-29 12:42:12.007 2024-02-29 12:42:12.007 37800 TIP 443319 5775 6112020 2024-02-29 12:57:51.293 2024-02-29 12:57:51.293 2100 FEE 443367 13169 6112021 2024-02-29 12:57:51.293 2024-02-29 12:57:51.293 18900 TIP 443367 20881 6112026 2024-02-29 12:59:31.246 2024-02-29 12:59:31.246 1000 FEE 443422 19158 6112035 2024-02-29 13:02:19.9 2024-02-29 13:02:19.9 1000 FEE 443424 9363 6112037 2024-02-29 13:03:04.24 2024-02-29 13:03:04.24 1000 FEE 443425 18154 6112049 2024-02-29 13:04:06.152 2024-02-29 13:04:06.152 1000 FEE 443428 5519 6112053 2024-02-29 13:04:20.561 2024-02-29 13:04:20.561 1000 FEE 443413 20464 6112054 2024-02-29 13:04:20.561 2024-02-29 13:04:20.561 9000 TIP 443413 21012 6112060 2024-02-29 13:05:35.428 2024-02-29 13:05:35.428 7000 DONT_LIKE_THIS 442859 15521 6112064 2024-02-29 13:05:46.634 2024-02-29 13:05:46.634 5000 FEE 443178 20663 6112065 2024-02-29 13:05:46.634 2024-02-29 13:05:46.634 45000 TIP 443178 20409 6112072 2024-02-29 13:06:21.457 2024-02-29 13:06:21.457 1000 FEE 443432 9337 6112073 2024-02-29 13:06:37.907 2024-02-29 13:06:37.907 2100 FEE 443430 19158 6112074 2024-02-29 13:06:37.907 2024-02-29 13:06:37.907 18900 TIP 443430 1823 6112114 2024-02-29 13:09:15.804 2024-02-29 13:09:15.804 9000 FEE 443122 19848 6112115 2024-02-29 13:09:15.804 2024-02-29 13:09:15.804 81000 TIP 443122 6687 6112122 2024-02-29 13:09:24.64 2024-02-29 13:09:24.64 1000 FEE 443437 21254 6112123 2024-02-29 13:09:24.706 2024-02-29 13:09:24.706 2100 FEE 443379 794 6112124 2024-02-29 13:09:24.706 2024-02-29 13:09:24.706 18900 TIP 443379 21166 6112141 2024-02-29 13:11:06.38 2024-02-29 13:11:06.38 100 FEE 443107 20906 6112142 2024-02-29 13:11:06.38 2024-02-29 13:11:06.38 900 TIP 443107 15326 6112154 2024-02-29 13:12:06.093 2024-02-29 13:12:06.093 100 FEE 443160 16350 6112155 2024-02-29 13:12:06.093 2024-02-29 13:12:06.093 900 TIP 443160 20022 6112190 2024-02-29 13:16:19.461 2024-02-29 13:16:19.461 1000 FEE 443448 2528 6112209 2024-02-29 13:18:14.814 2024-02-29 13:18:14.814 2100 FEE 443336 9349 6112210 2024-02-29 13:18:14.814 2024-02-29 13:18:14.814 18900 TIP 443336 15624 6112216 2024-02-29 13:19:39.977 2024-02-29 13:19:39.977 100 FEE 443069 21365 6112217 2024-02-29 13:19:39.977 2024-02-29 13:19:39.977 900 TIP 443069 18658 6112219 2024-02-29 13:20:06.879 2024-02-29 13:20:06.879 10000 FEE 443453 713 6112223 2024-02-29 13:20:37.652 2024-02-29 13:20:37.652 100 FEE 443091 2195 6112224 2024-02-29 13:20:37.652 2024-02-29 13:20:37.652 900 TIP 443091 2151 6112237 2024-02-29 13:21:17.81 2024-02-29 13:21:17.81 1000 FEE 443312 2056 6112238 2024-02-29 13:21:17.81 2024-02-29 13:21:17.81 9000 TIP 443312 2204 6112273 2024-02-29 13:27:09.677 2024-02-29 13:27:09.677 1000 FEE 440692 7097 6112274 2024-02-29 13:27:09.677 2024-02-29 13:27:09.677 9000 TIP 440692 16717 6112275 2024-02-29 13:27:10.139 2024-02-29 13:27:10.139 1000 FEE 440692 15273 6112276 2024-02-29 13:27:10.139 2024-02-29 13:27:10.139 9000 TIP 440692 1881 6112281 2024-02-29 13:27:11.905 2024-02-29 13:27:11.905 1000 FEE 440692 21413 6112282 2024-02-29 13:27:11.905 2024-02-29 13:27:11.905 9000 TIP 440692 13348 6112295 2024-02-29 13:28:29.597 2024-02-29 13:28:29.597 1000 FEE 443452 20614 6112296 2024-02-29 13:28:29.597 2024-02-29 13:28:29.597 9000 TIP 443452 18904 6112302 2024-02-29 13:29:12.703 2024-02-29 13:29:12.703 1000 FEE 443461 15624 6112309 2024-02-29 13:31:16.349 2024-02-29 13:31:16.349 5700 FEE 443272 9843 6112310 2024-02-29 13:31:16.349 2024-02-29 13:31:16.349 51300 TIP 443272 11498 6112383 2024-02-29 13:40:30.868 2024-02-29 13:40:30.868 100000 FEE 443473 16876 6112384 2024-02-29 13:40:30.868 2024-02-29 13:40:30.868 900000 TIP 443473 644 6112401 2024-02-29 13:41:20.555 2024-02-29 13:41:20.555 1000 FEE 442904 14910 6112402 2024-02-29 13:41:20.555 2024-02-29 13:41:20.555 9000 TIP 442904 3440 6112403 2024-02-29 13:41:20.599 2024-02-29 13:41:20.599 1000 FEE 442904 19198 6112404 2024-02-29 13:41:20.599 2024-02-29 13:41:20.599 9000 TIP 442904 21138 6112407 2024-02-29 13:41:20.67 2024-02-29 13:41:20.67 2100 FEE 443467 17030 6112408 2024-02-29 13:41:20.67 2024-02-29 13:41:20.67 18900 TIP 443467 1316 6112411 2024-02-29 13:41:20.95 2024-02-29 13:41:20.95 1000 FEE 442904 14385 6112412 2024-02-29 13:41:20.95 2024-02-29 13:41:20.95 9000 TIP 442904 18667 6112429 2024-02-29 13:41:22.925 2024-02-29 13:41:22.925 1000 FEE 442904 17552 6112430 2024-02-29 13:41:22.925 2024-02-29 13:41:22.925 9000 TIP 442904 6515 6112433 2024-02-29 13:41:23.859 2024-02-29 13:41:23.859 1000 FEE 442904 19639 6112434 2024-02-29 13:41:23.859 2024-02-29 13:41:23.859 9000 TIP 442904 2460 6112435 2024-02-29 13:41:23.917 2024-02-29 13:41:23.917 2000 FEE 442904 19533 6112436 2024-02-29 13:41:23.917 2024-02-29 13:41:23.917 18000 TIP 442904 12175 6112457 2024-02-29 13:41:30.368 2024-02-29 13:41:30.368 1000 FEE 442904 10638 6112458 2024-02-29 13:41:30.368 2024-02-29 13:41:30.368 9000 TIP 442904 2735 6112467 2024-02-29 13:41:32.166 2024-02-29 13:41:32.166 1000 FEE 442904 16717 6112468 2024-02-29 13:41:32.166 2024-02-29 13:41:32.166 9000 TIP 442904 21247 6112487 2024-02-29 13:41:34.002 2024-02-29 13:41:34.002 1000 FEE 442904 1985 6112488 2024-02-29 13:41:34.002 2024-02-29 13:41:34.002 9000 TIP 442904 9307 6112503 2024-02-29 13:41:36.149 2024-02-29 13:41:36.149 2000 FEE 442904 18177 6112504 2024-02-29 13:41:36.149 2024-02-29 13:41:36.149 18000 TIP 442904 1130 6112509 2024-02-29 13:41:36.606 2024-02-29 13:41:36.606 1000 FEE 442904 694 6112510 2024-02-29 13:41:36.606 2024-02-29 13:41:36.606 9000 TIP 442904 5961 6112511 2024-02-29 13:41:36.854 2024-02-29 13:41:36.854 1000 FEE 442904 690 6112512 2024-02-29 13:41:36.854 2024-02-29 13:41:36.854 9000 TIP 442904 10728 6112515 2024-02-29 13:41:37.264 2024-02-29 13:41:37.264 1000 FEE 442904 19043 6040014 2024-02-23 04:50:02.261 2024-02-23 04:50:02.261 1000 STREAM 141924 17526 6040021 2024-02-23 04:52:02.222 2024-02-23 04:52:02.222 1000 STREAM 141924 17927 6040030 2024-02-23 04:56:02.27 2024-02-23 04:56:02.27 1000 STREAM 141924 15049 6040036 2024-02-23 05:00:02.357 2024-02-23 05:00:02.357 1000 STREAM 141924 671 6040043 2024-02-23 05:02:02.298 2024-02-23 05:02:02.298 1000 STREAM 141924 1180 6040048 2024-02-23 05:06:02.316 2024-02-23 05:06:02.316 1000 STREAM 141924 16424 6040058 2024-02-23 05:12:02.328 2024-02-23 05:12:02.328 1000 STREAM 141924 21233 6040061 2024-02-23 05:14:02.358 2024-02-23 05:14:02.358 1000 STREAM 141924 9365 6040090 2024-02-23 05:20:02.493 2024-02-23 05:20:02.493 1000 STREAM 141924 20906 6040094 2024-02-23 05:21:02.451 2024-02-23 05:21:02.451 1000 STREAM 141924 700 6040095 2024-02-23 05:22:02.459 2024-02-23 05:22:02.459 1000 STREAM 141924 10608 6040100 2024-02-23 05:24:02.432 2024-02-23 05:24:02.432 1000 STREAM 141924 4802 6040103 2024-02-23 05:25:02.463 2024-02-23 05:25:02.463 1000 STREAM 141924 8400 6040109 2024-02-23 05:28:02.47 2024-02-23 05:28:02.47 1000 STREAM 141924 19394 6040111 2024-02-23 05:29:02.473 2024-02-23 05:29:02.473 1000 STREAM 141924 13378 6040112 2024-02-23 05:30:02.511 2024-02-23 05:30:02.511 1000 STREAM 141924 15560 6040114 2024-02-23 05:32:02.5 2024-02-23 05:32:02.5 1000 STREAM 141924 21469 6040136 2024-02-23 05:42:02.871 2024-02-23 05:42:02.871 1000 STREAM 141924 21072 6040139 2024-02-23 05:43:02.882 2024-02-23 05:43:02.882 1000 STREAM 141924 18626 6040141 2024-02-23 05:45:02.907 2024-02-23 05:45:02.907 1000 STREAM 141924 13143 6040144 2024-02-23 05:46:02.918 2024-02-23 05:46:02.918 1000 STREAM 141924 18543 6040145 2024-02-23 05:47:02.909 2024-02-23 05:47:02.909 1000 STREAM 141924 1800 6040153 2024-02-23 05:48:02.89 2024-02-23 05:48:02.89 1000 STREAM 141924 18154 6040173 2024-02-23 05:51:02.943 2024-02-23 05:51:02.943 1000 STREAM 141924 20817 6040175 2024-02-23 05:52:02.948 2024-02-23 05:52:02.948 1000 STREAM 141924 12921 6040184 2024-02-23 05:56:02.976 2024-02-23 05:56:02.976 1000 STREAM 141924 15697 6040233 2024-02-23 06:02:03.008 2024-02-23 06:02:03.008 1000 STREAM 141924 10060 6040252 2024-02-23 06:04:03.021 2024-02-23 06:04:03.021 1000 STREAM 141924 10291 6040257 2024-02-23 06:06:03.058 2024-02-23 06:06:03.058 1000 STREAM 141924 7869 6040258 2024-02-23 06:07:03.055 2024-02-23 06:07:03.055 1000 STREAM 141924 19021 6111654 2024-02-29 11:49:02.266 2024-02-29 11:49:02.266 2600 FEE 443158 14774 6111655 2024-02-29 11:49:02.266 2024-02-29 11:49:02.266 23400 TIP 443158 10549 6111657 2024-02-29 11:49:15.64 2024-02-29 11:49:15.64 2600 FEE 443031 15100 6111658 2024-02-29 11:49:15.64 2024-02-29 11:49:15.64 23400 TIP 443031 10359 6111661 2024-02-29 11:50:15.884 2024-02-29 11:50:15.884 500 FEE 442556 11091 6111662 2024-02-29 11:50:15.884 2024-02-29 11:50:15.884 4500 TIP 442556 17331 6111663 2024-02-29 11:50:31.134 2024-02-29 11:50:31.134 500 FEE 443105 697 6111664 2024-02-29 11:50:31.134 2024-02-29 11:50:31.134 4500 TIP 443105 20849 6111676 2024-02-29 11:51:23.77 2024-02-29 11:51:23.77 100 FEE 442820 5499 6111677 2024-02-29 11:51:23.77 2024-02-29 11:51:23.77 900 TIP 442820 20619 6111712 2024-02-29 11:59:42.202 2024-02-29 11:59:42.202 1000 POLL 442163 21427 6111721 2024-02-29 12:02:28.801 2024-02-29 12:02:28.801 2100 FEE 443316 1617 6111722 2024-02-29 12:02:28.801 2024-02-29 12:02:28.801 18900 TIP 443316 2724 6111729 2024-02-29 12:03:09 2024-02-29 12:03:09 500 FEE 442904 985 6111730 2024-02-29 12:03:09 2024-02-29 12:03:09 4500 TIP 442904 17106 6111763 2024-02-29 12:08:46.223 2024-02-29 12:08:46.223 1000 FEE 443370 15697 6111821 2024-02-29 12:23:21.045 2024-02-29 12:23:21.045 1000 FEE 443381 10056 6111822 2024-02-29 12:23:27.362 2024-02-29 12:23:27.362 1000 FEE 443382 20133 6111832 2024-02-29 12:24:31.035 2024-02-29 12:24:31.035 1000 FEE 443383 21412 6111860 2024-02-29 12:29:54.876 2024-02-29 12:29:54.876 2100 FEE 443372 21334 6111861 2024-02-29 12:29:54.876 2024-02-29 12:29:54.876 18900 TIP 443372 21547 6111874 2024-02-29 12:31:54.183 2024-02-29 12:31:54.183 1000 FEE 443325 6515 6111875 2024-02-29 12:31:54.183 2024-02-29 12:31:54.183 9000 TIP 443325 20201 6111879 2024-02-29 12:32:49.154 2024-02-29 12:32:49.154 20000 FEE 443274 21466 6111880 2024-02-29 12:32:49.154 2024-02-29 12:32:49.154 180000 TIP 443274 1162 6111885 2024-02-29 12:34:12.135 2024-02-29 12:34:12.135 1000 FEE 443397 13055 6111895 2024-02-29 12:34:44.576 2024-02-29 12:34:44.576 2100 FEE 443397 1454 6111896 2024-02-29 12:34:44.576 2024-02-29 12:34:44.576 18900 TIP 443397 13378 6111915 2024-02-29 12:36:33.289 2024-02-29 12:36:33.289 0 FEE 443398 20163 6111941 2024-02-29 12:42:48.76 2024-02-29 12:42:48.76 500 FEE 443274 18040 6111942 2024-02-29 12:42:48.76 2024-02-29 12:42:48.76 4500 TIP 443274 10469 6111968 2024-02-29 12:45:00.768 2024-02-29 12:45:00.768 1000 FEE 443407 19613 6111992 2024-02-29 12:51:00.747 2024-02-29 12:51:00.747 2100 FEE 443358 20778 6111993 2024-02-29 12:51:00.747 2024-02-29 12:51:00.747 18900 TIP 443358 16193 6112002 2024-02-29 12:52:40.272 2024-02-29 12:52:40.272 1000 FEE 443415 10591 6112031 2024-02-29 13:02:14.867 2024-02-29 13:02:14.867 5700 FEE 443395 1394 6112032 2024-02-29 13:02:14.867 2024-02-29 13:02:14.867 51300 TIP 443395 10821 6112038 2024-02-29 13:03:07.257 2024-02-29 13:03:07.257 5000 FEE 443399 1772 6112039 2024-02-29 13:03:07.257 2024-02-29 13:03:07.257 45000 TIP 443399 2502 6112041 2024-02-29 13:03:20.144 2024-02-29 13:03:20.144 100 FEE 443353 18225 6112042 2024-02-29 13:03:20.144 2024-02-29 13:03:20.144 900 TIP 443353 17106 6112075 2024-02-29 13:06:55.377 2024-02-29 13:06:55.377 100 FEE 443272 18539 6112076 2024-02-29 13:06:55.377 2024-02-29 13:06:55.377 900 TIP 443272 20353 6112077 2024-02-29 13:06:55.636 2024-02-29 13:06:55.636 900 FEE 443272 1726 6112078 2024-02-29 13:06:55.636 2024-02-29 13:06:55.636 8100 TIP 443272 17050 6112088 2024-02-29 13:07:42.38 2024-02-29 13:07:42.38 9000 FEE 443274 6268 6112089 2024-02-29 13:07:42.38 2024-02-29 13:07:42.38 81000 TIP 443274 15148 6112097 2024-02-29 13:08:14.031 2024-02-29 13:08:14.031 900 FEE 443197 11819 6112098 2024-02-29 13:08:14.031 2024-02-29 13:08:14.031 8100 TIP 443197 646 6112102 2024-02-29 13:08:31.337 2024-02-29 13:08:31.337 1000 FEE 443435 19132 6112103 2024-02-29 13:08:39.014 2024-02-29 13:08:39.014 1600 FEE 443419 11164 6112104 2024-02-29 13:08:39.014 2024-02-29 13:08:39.014 14400 TIP 443419 4064 6112118 2024-02-29 13:09:18.218 2024-02-29 13:09:18.218 1000 FEE 443434 20616 6112119 2024-02-29 13:09:18.218 2024-02-29 13:09:18.218 9000 TIP 443434 1602 6112127 2024-02-29 13:09:35.697 2024-02-29 13:09:35.697 900 FEE 443108 897 6112128 2024-02-29 13:09:35.697 2024-02-29 13:09:35.697 8100 TIP 443108 1833 6112151 2024-02-29 13:11:35.179 2024-02-29 13:11:35.179 90000 FEE 443107 19581 6112152 2024-02-29 13:11:35.179 2024-02-29 13:11:35.179 810000 TIP 443107 2711 6112161 2024-02-29 13:12:45.225 2024-02-29 13:12:45.225 1000 FEE 443441 16350 6112162 2024-02-29 13:12:58.028 2024-02-29 13:12:58.028 1000 FEE 443233 19638 6040017 2024-02-23 04:51:05.989 2024-02-23 04:51:05.989 1000 STREAM 141924 19352 6040025 2024-02-23 04:53:06.242 2024-02-23 04:53:06.242 1000 STREAM 141924 17221 6040026 2024-02-23 04:54:02.25 2024-02-23 04:54:02.25 1000 STREAM 141924 2342 6040046 2024-02-23 05:05:04.399 2024-02-23 05:05:04.399 1000 STREAM 141924 1094 6040049 2024-02-23 05:07:04.415 2024-02-23 05:07:04.415 1000 STREAM 141924 5829 6040176 2024-02-23 05:53:02.969 2024-02-23 05:53:02.969 1000 STREAM 141924 20129 6111656 2024-02-29 11:49:04.047 2024-02-29 11:49:04.047 1000 STREAM 141924 18667 6111690 2024-02-29 11:53:04.046 2024-02-29 11:53:04.046 1000 STREAM 141924 9844 6111692 2024-02-29 11:54:04.196 2024-02-29 11:54:04.196 1000 STREAM 141924 4415 6040065 2024-02-23 05:17:11.636 2024-02-23 05:17:11.636 1000 FEE 435848 19296 6040085 2024-02-23 05:18:02.041 2024-02-23 05:18:02.041 100 FEE 435776 5776 6040086 2024-02-23 05:18:02.041 2024-02-23 05:18:02.041 900 TIP 435776 19303 6040096 2024-02-23 05:22:47.602 2024-02-23 05:22:47.602 1100 FEE 435830 4292 6040097 2024-02-23 05:22:47.602 2024-02-23 05:22:47.602 9900 TIP 435830 21116 6040125 2024-02-23 05:36:48.1 2024-02-23 05:36:48.1 1000 FEE 435860 20854 6040129 2024-02-23 05:37:25.822 2024-02-23 05:37:25.822 1000 FEE 435861 12261 6040132 2024-02-23 05:39:28.895 2024-02-23 05:39:28.895 100000 FEE 435862 6499 6040146 2024-02-23 05:47:15.038 2024-02-23 05:47:15.038 1000 FEE 435865 14650 6040149 2024-02-23 05:47:16.992 2024-02-23 05:47:16.992 100 FEE 435639 825 6040150 2024-02-23 05:47:16.992 2024-02-23 05:47:16.992 900 TIP 435639 21067 6040186 2024-02-23 05:56:35.531 2024-02-23 05:56:35.531 1000 FEE 435870 21422 6040194 2024-02-23 05:58:53.282 2024-02-23 05:58:53.282 1000 FEE 435762 11145 6040195 2024-02-23 05:58:53.282 2024-02-23 05:58:53.282 9000 TIP 435762 19848 6040206 2024-02-23 06:00:35.721 2024-02-23 06:00:35.721 100 FEE 435242 20117 6040207 2024-02-23 06:00:35.721 2024-02-23 06:00:35.721 900 TIP 435242 12169 6040240 2024-02-23 06:03:44.637 2024-02-23 06:03:44.637 100 FEE 435217 18225 6040241 2024-02-23 06:03:44.637 2024-02-23 06:03:44.637 900 TIP 435217 775 6040270 2024-02-23 06:14:14.572 2024-02-23 06:14:14.572 1000 FEE 435879 8459 6040284 2024-02-23 06:19:30.036 2024-02-23 06:19:30.036 1000 FEE 435608 20412 6040285 2024-02-23 06:19:30.036 2024-02-23 06:19:30.036 9000 TIP 435608 17042 6040311 2024-02-23 06:26:45.29 2024-02-23 06:26:45.29 0 FEE 435881 17221 6040321 2024-02-23 06:31:27.669 2024-02-23 06:31:27.669 2100 FEE 435769 6499 6040322 2024-02-23 06:31:27.669 2024-02-23 06:31:27.669 18900 TIP 435769 18068 6040337 2024-02-23 06:34:23.229 2024-02-23 06:34:23.229 9000 FEE 435812 9362 6040338 2024-02-23 06:34:23.229 2024-02-23 06:34:23.229 81000 TIP 435812 11561 6040360 2024-02-23 06:35:45.397 2024-02-23 06:35:45.397 900 FEE 435834 18232 6040361 2024-02-23 06:35:45.397 2024-02-23 06:35:45.397 8100 TIP 435834 9418 6040383 2024-02-23 06:37:19.476 2024-02-23 06:37:19.476 100000 DONT_LIKE_THIS 435884 21492 6040390 2024-02-23 06:37:39.444 2024-02-23 06:37:39.444 400 FEE 435788 2256 6040391 2024-02-23 06:37:39.444 2024-02-23 06:37:39.444 3600 TIP 435788 12139 6040393 2024-02-23 06:38:15.509 2024-02-23 06:38:15.509 1000 FEE 435887 19259 6040403 2024-02-23 06:39:24.612 2024-02-23 06:39:24.612 800 FEE 435328 4292 6040404 2024-02-23 06:39:24.612 2024-02-23 06:39:24.612 7200 TIP 435328 5306 6040409 2024-02-23 06:39:26.218 2024-02-23 06:39:26.218 800 FEE 435328 18897 6040410 2024-02-23 06:39:26.218 2024-02-23 06:39:26.218 7200 TIP 435328 10273 6040413 2024-02-23 06:39:26.723 2024-02-23 06:39:26.723 800 FEE 435328 7553 6040414 2024-02-23 06:39:26.723 2024-02-23 06:39:26.723 7200 TIP 435328 2101 6040415 2024-02-23 06:39:26.997 2024-02-23 06:39:26.997 800 FEE 435328 18664 6040416 2024-02-23 06:39:26.997 2024-02-23 06:39:26.997 7200 TIP 435328 15386 6040443 2024-02-23 06:42:32.187 2024-02-23 06:42:32.187 7000 FEE 435891 27 6040453 2024-02-23 06:47:48.903 2024-02-23 06:47:48.903 2100 FEE 435885 5829 6040454 2024-02-23 06:47:48.903 2024-02-23 06:47:48.903 18900 TIP 435885 7583 6040477 2024-02-23 06:55:29.943 2024-02-23 06:55:29.943 5000 FEE 435790 17592 6040478 2024-02-23 06:55:29.943 2024-02-23 06:55:29.943 45000 TIP 435790 20655 6040481 2024-02-23 06:55:30.671 2024-02-23 06:55:30.671 5000 FEE 435765 13547 6040482 2024-02-23 06:55:30.671 2024-02-23 06:55:30.671 45000 TIP 435765 19031 6040483 2024-02-23 06:55:30.922 2024-02-23 06:55:30.922 5000 FEE 435765 20802 6040484 2024-02-23 06:55:30.922 2024-02-23 06:55:30.922 45000 TIP 435765 1823 6040506 2024-02-23 07:03:28.691 2024-02-23 07:03:28.691 100 FEE 435812 2342 6040507 2024-02-23 07:03:28.691 2024-02-23 07:03:28.691 900 TIP 435812 5590 6040521 2024-02-23 07:10:33.337 2024-02-23 07:10:33.337 21000 FEE 435906 9450 6040523 2024-02-23 07:11:48.694 2024-02-23 07:11:48.694 2100 FEE 435657 17838 6040524 2024-02-23 07:11:48.694 2024-02-23 07:11:48.694 18900 TIP 435657 16966 6040543 2024-02-23 07:11:57.377 2024-02-23 07:11:57.377 2100 FEE 435497 4118 6040544 2024-02-23 07:11:57.377 2024-02-23 07:11:57.377 18900 TIP 435497 21386 6040547 2024-02-23 07:11:58.396 2024-02-23 07:11:58.396 2100 FEE 435639 618 6040548 2024-02-23 07:11:58.396 2024-02-23 07:11:58.396 18900 TIP 435639 2709 6040575 2024-02-23 07:13:41.086 2024-02-23 07:13:41.086 100 FEE 435902 20551 6040576 2024-02-23 07:13:41.086 2024-02-23 07:13:41.086 900 TIP 435902 18714 6040587 2024-02-23 07:13:42.793 2024-02-23 07:13:42.793 100 FEE 435902 14552 6040588 2024-02-23 07:13:42.793 2024-02-23 07:13:42.793 900 TIP 435902 21248 6040589 2024-02-23 07:13:46.339 2024-02-23 07:13:46.339 2100 FEE 435668 1772 6040590 2024-02-23 07:13:46.339 2024-02-23 07:13:46.339 18900 TIP 435668 21591 6040600 2024-02-23 07:15:38.302 2024-02-23 07:15:38.302 100 FEE 435549 4768 6040601 2024-02-23 07:15:38.302 2024-02-23 07:15:38.302 900 TIP 435549 1047 6040613 2024-02-23 07:19:44.169 2024-02-23 07:19:44.169 100000 FEE 435910 21207 6040657 2024-02-23 07:36:15.173 2024-02-23 07:36:15.173 2100 FEE 435488 9863 6040658 2024-02-23 07:36:15.173 2024-02-23 07:36:15.173 18900 TIP 435488 14247 6040666 2024-02-23 07:37:21.332 2024-02-23 07:37:21.332 1000 FEE 435912 1611 6040667 2024-02-23 07:37:21.332 2024-02-23 07:37:21.332 9000 TIP 435912 12819 6040684 2024-02-23 07:38:44.942 2024-02-23 07:38:44.942 1000 FEE 435917 12976 6040694 2024-02-23 07:40:05.776 2024-02-23 07:40:05.776 1000 FEE 435919 1425 6040702 2024-02-23 07:41:22.378 2024-02-23 07:41:22.378 2100 FEE 435288 861 6040703 2024-02-23 07:41:22.378 2024-02-23 07:41:22.378 18900 TIP 435288 18500 6040712 2024-02-23 07:42:34.823 2024-02-23 07:42:34.823 2000 FEE 435755 12606 6040713 2024-02-23 07:42:34.823 2024-02-23 07:42:34.823 18000 TIP 435755 7587 6040728 2024-02-23 07:42:37.356 2024-02-23 07:42:37.356 100 FEE 435641 20660 6040729 2024-02-23 07:42:37.356 2024-02-23 07:42:37.356 900 TIP 435641 19652 6040739 2024-02-23 07:45:06.705 2024-02-23 07:45:06.705 2100 FEE 435812 16680 6040740 2024-02-23 07:45:06.705 2024-02-23 07:45:06.705 18900 TIP 435812 21453 6040786 2024-02-23 07:53:44.838 2024-02-23 07:53:44.838 2100 FEE 435914 4177 6040787 2024-02-23 07:53:44.838 2024-02-23 07:53:44.838 18900 TIP 435914 16594 6040788 2024-02-23 07:53:47.069 2024-02-23 07:53:47.069 100 FEE 435639 14278 6040789 2024-02-23 07:53:47.069 2024-02-23 07:53:47.069 900 TIP 435639 1737 6040798 2024-02-23 07:54:02.108 2024-02-23 07:54:02.108 2100 FEE 435905 12808 6040799 2024-02-23 07:54:02.108 2024-02-23 07:54:02.108 18900 TIP 435905 20606 6040835 2024-02-23 08:09:08.91 2024-02-23 08:09:08.91 2100 FEE 435847 1737 6040836 2024-02-23 08:09:08.91 2024-02-23 08:09:08.91 18900 TIP 435847 831 6111685 2024-02-29 11:52:04.045 2024-02-29 11:52:04.045 1000 STREAM 141924 14381 6111708 2024-02-29 11:58:04.101 2024-02-29 11:58:04.101 1000 STREAM 141924 2065 6111740 2024-02-29 12:05:04.203 2024-02-29 12:05:04.203 1000 STREAM 141924 929 6111754 2024-02-29 12:08:04.237 2024-02-29 12:08:04.237 1000 STREAM 141924 19907 6111794 2024-02-29 12:16:04.257 2024-02-29 12:16:04.257 1000 STREAM 141924 2774 6111805 2024-02-29 12:21:04.284 2024-02-29 12:21:04.284 1000 STREAM 141924 21457 6111827 2024-02-29 12:24:04.299 2024-02-29 12:24:04.299 1000 STREAM 141924 825 6111837 2024-02-29 12:25:04.3 2024-02-29 12:25:04.3 1000 STREAM 141924 8284 6111840 2024-02-29 12:26:04.295 2024-02-29 12:26:04.295 1000 STREAM 141924 20715 6040089 2024-02-23 05:19:02.445 2024-02-23 05:19:02.445 1000 STREAM 141924 4984 6040098 2024-02-23 05:23:02.463 2024-02-23 05:23:02.463 1000 STREAM 141924 14906 6040105 2024-02-23 05:26:02.459 2024-02-23 05:26:02.459 1000 STREAM 141924 1425 6040108 2024-02-23 05:27:02.476 2024-02-23 05:27:02.476 1000 STREAM 141924 17838 6040118 2024-02-23 05:33:02.51 2024-02-23 05:33:02.51 1000 STREAM 141924 2061 6040120 2024-02-23 05:34:02.515 2024-02-23 05:34:02.515 1000 STREAM 141924 17392 6040123 2024-02-23 05:35:02.546 2024-02-23 05:35:02.546 1000 STREAM 141924 19282 6040130 2024-02-23 05:38:02.83 2024-02-23 05:38:02.83 1000 STREAM 141924 17415 6040131 2024-02-23 05:39:02.837 2024-02-23 05:39:02.837 1000 STREAM 141924 17001 6040133 2024-02-23 05:40:02.905 2024-02-23 05:40:02.905 1000 STREAM 141924 998 6040134 2024-02-23 05:41:02.869 2024-02-23 05:41:02.869 1000 STREAM 141924 5085 6040140 2024-02-23 05:44:02.895 2024-02-23 05:44:02.895 1000 STREAM 141924 2952 6040167 2024-02-23 05:49:02.941 2024-02-23 05:49:02.941 1000 STREAM 141924 20972 6040170 2024-02-23 05:50:02.954 2024-02-23 05:50:02.954 1000 STREAM 141924 11144 6040177 2024-02-23 05:54:02.965 2024-02-23 05:54:02.965 1000 STREAM 141924 2338 6040181 2024-02-23 05:55:02.953 2024-02-23 05:55:02.953 1000 STREAM 141924 17091 6040187 2024-02-23 05:57:02.979 2024-02-23 05:57:02.979 1000 STREAM 141924 16259 6040191 2024-02-23 05:58:03.001 2024-02-23 05:58:03.001 1000 STREAM 141924 826 6040210 2024-02-23 06:01:02.99 2024-02-23 06:01:02.99 1000 STREAM 141924 11996 6040237 2024-02-23 06:03:03.019 2024-02-23 06:03:03.019 1000 STREAM 141924 2774 6040253 2024-02-23 06:05:03.046 2024-02-23 06:05:03.046 1000 STREAM 141924 19378 6040259 2024-02-23 06:08:03.068 2024-02-23 06:08:03.068 1000 STREAM 141924 12821 6040260 2024-02-23 06:09:03.085 2024-02-23 06:09:03.085 1000 STREAM 141924 632 6111701 2024-02-29 11:56:02.378 2024-02-29 11:56:02.378 1000 STREAM 141924 15159 6111717 2024-02-29 12:01:02.413 2024-02-29 12:01:02.413 1000 STREAM 141924 20776 6111766 2024-02-29 12:09:02.425 2024-02-29 12:09:02.425 1000 STREAM 141924 21136 6040128 2024-02-23 05:37:02.929 2024-02-23 05:37:02.929 1000 STREAM 141924 9307 6111704 2024-02-29 11:57:05.754 2024-02-29 11:57:05.754 1000 STREAM 141924 20502 6040148 2024-02-23 05:47:16.729 2024-02-23 05:47:16.729 900 TIP 435639 18309 6040164 2024-02-23 05:48:39.646 2024-02-23 05:48:39.646 1000 FEE 435246 6717 6040165 2024-02-23 05:48:39.646 2024-02-23 05:48:39.646 9000 TIP 435246 1224 6040166 2024-02-23 05:48:57.119 2024-02-23 05:48:57.119 1000 FEE 435866 20964 6040168 2024-02-23 05:49:18.483 2024-02-23 05:49:18.483 400 FEE 435410 20198 6040169 2024-02-23 05:49:18.483 2024-02-23 05:49:18.483 3600 TIP 435410 20636 6040193 2024-02-23 05:58:35.022 2024-02-23 05:58:35.022 1000 FEE 435872 21222 6040197 2024-02-23 05:59:35.441 2024-02-23 05:59:35.441 0 FEE 435869 14910 6040202 2024-02-23 06:00:35.441 2024-02-23 06:00:35.441 100 FEE 435242 15728 6040203 2024-02-23 06:00:35.441 2024-02-23 06:00:35.441 900 TIP 435242 14731 6040217 2024-02-23 06:01:14.846 2024-02-23 06:01:14.846 300 FEE 435837 631 6040218 2024-02-23 06:01:14.846 2024-02-23 06:01:14.846 2700 TIP 435837 18679 6040225 2024-02-23 06:01:25.438 2024-02-23 06:01:25.438 300 FEE 435844 21501 6040226 2024-02-23 06:01:25.438 2024-02-23 06:01:25.438 2700 TIP 435844 18539 6040244 2024-02-23 06:03:44.709 2024-02-23 06:03:44.709 100 FEE 435217 1310 6040245 2024-02-23 06:03:44.709 2024-02-23 06:03:44.709 900 TIP 435217 18641 6040263 2024-02-23 06:11:57.519 2024-02-23 06:11:57.519 10000 FEE 435877 2330 6040286 2024-02-23 06:19:37.141 2024-02-23 06:19:37.141 1000 FEE 435615 14381 6040287 2024-02-23 06:19:37.141 2024-02-23 06:19:37.141 9000 TIP 435615 11992 6040297 2024-02-23 06:20:48.245 2024-02-23 06:20:48.245 1000 FEE 435574 19199 6040298 2024-02-23 06:20:48.245 2024-02-23 06:20:48.245 9000 TIP 435574 1617 6040307 2024-02-23 06:24:52.057 2024-02-23 06:24:52.057 1000 FEE 435881 21418 6040313 2024-02-23 06:27:25.198 2024-02-23 06:27:25.198 100 FEE 435639 14489 6040314 2024-02-23 06:27:25.198 2024-02-23 06:27:25.198 900 TIP 435639 2749 6040343 2024-02-23 06:35:02.006 2024-02-23 06:35:02.006 100 FEE 435805 18717 6040344 2024-02-23 06:35:02.006 2024-02-23 06:35:02.006 900 TIP 435805 21514 6040356 2024-02-23 06:35:30.023 2024-02-23 06:35:30.023 9000 FEE 435826 4323 6040357 2024-02-23 06:35:30.023 2024-02-23 06:35:30.023 81000 TIP 435826 6058 6040358 2024-02-23 06:35:45.156 2024-02-23 06:35:45.156 100 FEE 435834 11776 6040359 2024-02-23 06:35:45.156 2024-02-23 06:35:45.156 900 TIP 435834 10818 6040366 2024-02-23 06:35:58.982 2024-02-23 06:35:58.982 9000 FEE 435860 19469 6040367 2024-02-23 06:35:58.982 2024-02-23 06:35:58.982 81000 TIP 435860 20023 6040377 2024-02-23 06:36:17.217 2024-02-23 06:36:17.217 1000 FEE 430411 20257 6040378 2024-02-23 06:36:17.217 2024-02-23 06:36:17.217 9000 TIP 430411 10291 6040434 2024-02-23 06:40:53.232 2024-02-23 06:40:53.232 2000 FEE 435812 1039 6040435 2024-02-23 06:40:53.232 2024-02-23 06:40:53.232 18000 TIP 435812 21119 6040448 2024-02-23 06:45:12.691 2024-02-23 06:45:12.691 1000 FEE 435893 16354 6040457 2024-02-23 06:49:24.183 2024-02-23 06:49:24.183 10000 FEE 435894 1577 6040463 2024-02-23 06:50:58.687 2024-02-23 06:50:58.687 10000 FEE 435847 697 6040464 2024-02-23 06:50:58.687 2024-02-23 06:50:58.687 90000 TIP 435847 6471 6040475 2024-02-23 06:55:27.115 2024-02-23 06:55:27.115 5000 FEE 435765 14080 6040476 2024-02-23 06:55:27.115 2024-02-23 06:55:27.115 45000 TIP 435765 17714 6040485 2024-02-23 06:55:31.941 2024-02-23 06:55:31.941 5000 FEE 435765 17741 6040486 2024-02-23 06:55:31.941 2024-02-23 06:55:31.941 45000 TIP 435765 16633 6040539 2024-02-23 07:11:55.233 2024-02-23 07:11:55.233 2100 FEE 435847 18625 6040540 2024-02-23 07:11:55.233 2024-02-23 07:11:55.233 18900 TIP 435847 4768 6040605 2024-02-23 07:16:57.515 2024-02-23 07:16:57.515 100 FEE 435517 16387 6040606 2024-02-23 07:16:57.515 2024-02-23 07:16:57.515 900 TIP 435517 16562 6040641 2024-02-23 07:26:02.26 2024-02-23 07:26:02.26 100 FEE 435242 1320 6040642 2024-02-23 07:26:02.26 2024-02-23 07:26:02.26 900 TIP 435242 2431 6040654 2024-02-23 07:34:28.534 2024-02-23 07:34:28.534 1000 FEE 435915 617 6040661 2024-02-23 07:36:45.179 2024-02-23 07:36:45.179 1000 FEE 435841 712 6040662 2024-02-23 07:36:45.179 2024-02-23 07:36:45.179 9000 TIP 435841 19033 6040671 2024-02-23 07:37:33.008 2024-02-23 07:37:33.008 1000 FEE 435812 2361 6040672 2024-02-23 07:37:33.008 2024-02-23 07:37:33.008 9000 TIP 435812 21492 6040677 2024-02-23 07:37:33.595 2024-02-23 07:37:33.595 1000 FEE 435812 1010 6040678 2024-02-23 07:37:33.595 2024-02-23 07:37:33.595 9000 TIP 435812 7418 6040682 2024-02-23 07:38:14.986 2024-02-23 07:38:14.986 1000 FEE 434163 2010 6040683 2024-02-23 07:38:14.986 2024-02-23 07:38:14.986 9000 TIP 434163 2293 6040704 2024-02-23 07:41:25.915 2024-02-23 07:41:25.915 21000 FEE 435922 18449 6040706 2024-02-23 07:41:56.258 2024-02-23 07:41:56.258 12800 FEE 435859 11648 6040707 2024-02-23 07:41:56.258 2024-02-23 07:41:56.258 115200 TIP 435859 5794 6040720 2024-02-23 07:42:36.443 2024-02-23 07:42:36.443 1000 FEE 435755 18829 6040721 2024-02-23 07:42:36.443 2024-02-23 07:42:36.443 9000 TIP 435755 4388 6040722 2024-02-23 07:42:36.996 2024-02-23 07:42:36.996 100 FEE 435641 913 6040723 2024-02-23 07:42:36.996 2024-02-23 07:42:36.996 900 TIP 435641 18533 6040726 2024-02-23 07:42:37.253 2024-02-23 07:42:37.253 1000 FEE 435755 20129 6040727 2024-02-23 07:42:37.253 2024-02-23 07:42:37.253 9000 TIP 435755 12606 6040747 2024-02-23 07:46:40.372 2024-02-23 07:46:40.372 2000 FEE 435801 16282 6040748 2024-02-23 07:46:40.372 2024-02-23 07:46:40.372 18000 TIP 435801 861 6040766 2024-02-23 07:49:06.466 2024-02-23 07:49:06.466 2100 FEE 435912 21222 6040767 2024-02-23 07:49:06.466 2024-02-23 07:49:06.466 18900 TIP 435912 18336 6040784 2024-02-23 07:53:16.045 2024-02-23 07:53:16.045 10000 FEE 435924 5776 6040785 2024-02-23 07:53:16.045 2024-02-23 07:53:16.045 90000 TIP 435924 12808 6040796 2024-02-23 07:53:51.196 2024-02-23 07:53:51.196 2100 FEE 435907 21427 6040797 2024-02-23 07:53:51.196 2024-02-23 07:53:51.196 18900 TIP 435907 18994 6040811 2024-02-23 07:59:15.105 2024-02-23 07:59:15.105 5000 FEE 435728 15063 6040812 2024-02-23 07:59:15.105 2024-02-23 07:59:15.105 45000 TIP 435728 20036 6040813 2024-02-23 07:59:46.148 2024-02-23 07:59:46.148 2100 FEE 435904 12291 6040814 2024-02-23 07:59:46.148 2024-02-23 07:59:46.148 18900 TIP 435904 5828 6040823 2024-02-23 08:05:08.081 2024-02-23 08:05:08.081 1000 FEE 435937 19637 6040838 2024-02-23 08:11:03.497 2024-02-23 08:11:03.497 120000 FEE 435938 9809 6040840 2024-02-23 08:11:07.521 2024-02-23 08:11:07.521 1000 FEE 435939 21136 6040843 2024-02-23 08:11:54.08 2024-02-23 08:11:54.08 2100 FEE 435718 21365 6040844 2024-02-23 08:11:54.08 2024-02-23 08:11:54.08 18900 TIP 435718 17183 6040856 2024-02-23 08:14:57.023 2024-02-23 08:14:57.023 200 FEE 435242 9494 6040857 2024-02-23 08:14:57.023 2024-02-23 08:14:57.023 1800 TIP 435242 19332 6040874 2024-02-23 08:24:09.302 2024-02-23 08:24:09.302 2100 FEE 435760 11144 6040875 2024-02-23 08:24:09.302 2024-02-23 08:24:09.302 18900 TIP 435760 5578 6111731 2024-02-29 12:03:25.357 2024-02-29 12:03:25.357 2100 FEE 443288 20099 6040196 2024-02-23 05:59:02.997 2024-02-23 05:59:02.997 1000 STREAM 141924 21178 6040199 2024-02-23 06:00:03.108 2024-02-23 06:00:03.108 1000 STREAM 141924 8448 6111732 2024-02-29 12:03:25.357 2024-02-29 12:03:25.357 18900 TIP 443288 9985 6111755 2024-02-29 12:08:05.165 2024-02-29 12:08:05.165 100 FEE 443368 9921 6111756 2024-02-29 12:08:05.165 2024-02-29 12:08:05.165 900 TIP 443368 18659 6111761 2024-02-29 12:08:23.284 2024-02-29 12:08:23.284 1000 FEE 443365 10493 6111762 2024-02-29 12:08:23.284 2024-02-29 12:08:23.284 9000 TIP 443365 1584 6111787 2024-02-29 12:13:45.468 2024-02-29 12:13:45.468 5700 FEE 443362 11288 6111788 2024-02-29 12:13:45.468 2024-02-29 12:13:45.468 51300 TIP 443362 16948 6111792 2024-02-29 12:15:39.676 2024-02-29 12:15:39.676 100 FEE 443373 9347 6111793 2024-02-29 12:15:39.676 2024-02-29 12:15:39.676 900 TIP 443373 3683 6111795 2024-02-29 12:16:08.64 2024-02-29 12:16:08.64 1000 FEE 443372 3213 6111796 2024-02-29 12:16:08.64 2024-02-29 12:16:08.64 9000 TIP 443372 19581 6111811 2024-02-29 12:22:02.688 2024-02-29 12:22:02.688 1000 FEE 443336 2614 6111812 2024-02-29 12:22:02.688 2024-02-29 12:22:02.688 9000 TIP 443336 1198 6111813 2024-02-29 12:22:03.525 2024-02-29 12:22:03.525 2000 FEE 443336 20430 6111814 2024-02-29 12:22:03.525 2024-02-29 12:22:03.525 18000 TIP 443336 10342 6111835 2024-02-29 12:24:34.253 2024-02-29 12:24:34.253 1000 FEE 443374 8080 6111836 2024-02-29 12:24:34.253 2024-02-29 12:24:34.253 9000 TIP 443374 17523 6111843 2024-02-29 12:26:34.052 2024-02-29 12:26:34.052 0 FEE 443384 20337 6111859 2024-02-29 12:29:47.849 2024-02-29 12:29:47.849 0 FEE 443390 7097 6111864 2024-02-29 12:30:18.33 2024-02-29 12:30:18.33 1000 FEE 443392 13216 6111867 2024-02-29 12:30:20.568 2024-02-29 12:30:20.568 1000 FEE 443315 3478 6111868 2024-02-29 12:30:20.568 2024-02-29 12:30:20.568 9000 TIP 443315 6393 6111887 2024-02-29 12:34:18.411 2024-02-29 12:34:18.411 5700 FEE 443390 14357 6111888 2024-02-29 12:34:18.411 2024-02-29 12:34:18.411 51300 TIP 443390 19857 6111911 2024-02-29 12:35:54.376 2024-02-29 12:35:54.376 0 FEE 443398 20825 6111913 2024-02-29 12:36:10.104 2024-02-29 12:36:10.104 2100 FEE 443398 2042 6111914 2024-02-29 12:36:10.104 2024-02-29 12:36:10.104 18900 TIP 443398 18016 6111932 2024-02-29 12:42:06.491 2024-02-29 12:42:06.491 1000 FEE 443403 20276 6111955 2024-02-29 12:43:14.506 2024-02-29 12:43:14.506 5000 FEE 443353 4126 6111956 2024-02-29 12:43:14.506 2024-02-29 12:43:14.506 45000 TIP 443353 19036 6111983 2024-02-29 12:49:06.749 2024-02-29 12:49:06.749 1000 FEE 443410 826 6112007 2024-02-29 12:54:05.082 2024-02-29 12:54:05.082 1000 FEE 443416 14271 6112043 2024-02-29 13:03:22.028 2024-02-29 13:03:22.028 900 FEE 443353 8289 6112044 2024-02-29 13:03:22.028 2024-02-29 13:03:22.028 8100 TIP 443353 5661 6112046 2024-02-29 13:03:49.061 2024-02-29 13:03:49.061 2100 FEE 443427 19821 6112047 2024-02-29 13:03:49.061 2024-02-29 13:03:49.061 18900 TIP 443427 17209 6112084 2024-02-29 13:07:31.512 2024-02-29 13:07:31.512 100 FEE 443274 18494 6112085 2024-02-29 13:07:31.512 2024-02-29 13:07:31.512 900 TIP 443274 4633 6112095 2024-02-29 13:08:13.301 2024-02-29 13:08:13.301 100 FEE 443197 11192 6112096 2024-02-29 13:08:13.301 2024-02-29 13:08:13.301 900 TIP 443197 5590 6040261 2024-02-23 06:10:03.119 2024-02-23 06:10:03.119 1000 STREAM 141924 10944 6040264 2024-02-23 06:12:03.054 2024-02-23 06:12:03.054 1000 STREAM 141924 1483 6040272 2024-02-23 06:15:03.073 2024-02-23 06:15:03.073 1000 STREAM 141924 13798 6040277 2024-02-23 06:17:03.109 2024-02-23 06:17:03.109 1000 STREAM 141924 12265 6040281 2024-02-23 06:19:03.09 2024-02-23 06:19:03.09 1000 STREAM 141924 7989 6040290 2024-02-23 06:20:03.109 2024-02-23 06:20:03.109 1000 STREAM 141924 11329 6040299 2024-02-23 06:21:03.119 2024-02-23 06:21:03.119 1000 STREAM 141924 12516 6040304 2024-02-23 06:22:03.105 2024-02-23 06:22:03.105 1000 STREAM 141924 9353 6040305 2024-02-23 06:23:03.11 2024-02-23 06:23:03.11 1000 STREAM 141924 10771 6040306 2024-02-23 06:24:03.107 2024-02-23 06:24:03.107 1000 STREAM 141924 16456 6040312 2024-02-23 06:27:03.118 2024-02-23 06:27:03.118 1000 STREAM 141924 13599 6040319 2024-02-23 06:30:03.149 2024-02-23 06:30:03.149 1000 STREAM 141924 15484 6040347 2024-02-23 06:35:03.161 2024-02-23 06:35:03.161 1000 STREAM 141924 15148 6040372 2024-02-23 06:36:03.158 2024-02-23 06:36:03.158 1000 STREAM 141924 10979 6040381 2024-02-23 06:37:03.169 2024-02-23 06:37:03.169 1000 STREAM 141924 21051 6040392 2024-02-23 06:38:03.168 2024-02-23 06:38:03.168 1000 STREAM 141924 12516 6040394 2024-02-23 06:39:03.169 2024-02-23 06:39:03.169 1000 STREAM 141924 21320 6040449 2024-02-23 06:46:03.197 2024-02-23 06:46:03.197 1000 STREAM 141924 814 6040450 2024-02-23 06:47:03.203 2024-02-23 06:47:03.203 1000 STREAM 141924 11942 6040455 2024-02-23 06:48:03.205 2024-02-23 06:48:03.205 1000 STREAM 141924 2111 6040456 2024-02-23 06:49:03.205 2024-02-23 06:49:03.205 1000 STREAM 141924 12160 6040467 2024-02-23 06:51:03.21 2024-02-23 06:51:03.21 1000 STREAM 141924 9982 6040474 2024-02-23 06:55:03.235 2024-02-23 06:55:03.235 1000 STREAM 141924 19668 6040490 2024-02-23 06:57:03.259 2024-02-23 06:57:03.259 1000 STREAM 141924 20646 6040491 2024-02-23 06:58:03.258 2024-02-23 06:58:03.258 1000 STREAM 141924 20788 6040503 2024-02-23 07:01:03.271 2024-02-23 07:01:03.271 1000 STREAM 141924 1114 6040504 2024-02-23 07:02:03.279 2024-02-23 07:02:03.279 1000 STREAM 141924 1002 6040509 2024-02-23 07:04:03.281 2024-02-23 07:04:03.281 1000 STREAM 141924 18124 6040510 2024-02-23 07:05:03.29 2024-02-23 07:05:03.29 1000 STREAM 141924 1002 6040512 2024-02-23 07:06:03.296 2024-02-23 07:06:03.296 1000 STREAM 141924 16809 6040516 2024-02-23 07:08:03.305 2024-02-23 07:08:03.305 1000 STREAM 141924 16879 6040518 2024-02-23 07:09:03.307 2024-02-23 07:09:03.307 1000 STREAM 141924 10270 6040522 2024-02-23 07:11:03.327 2024-02-23 07:11:03.327 1000 STREAM 141924 9350 6040553 2024-02-23 07:12:03.338 2024-02-23 07:12:03.338 1000 STREAM 141924 20120 6040564 2024-02-23 07:13:03.363 2024-02-23 07:13:03.363 1000 STREAM 141924 20993 6040595 2024-02-23 07:14:03.36 2024-02-23 07:14:03.36 1000 STREAM 141924 18392 6040599 2024-02-23 07:15:03.362 2024-02-23 07:15:03.362 1000 STREAM 141924 19471 6040602 2024-02-23 07:16:03.372 2024-02-23 07:16:03.372 1000 STREAM 141924 11885 6040608 2024-02-23 07:17:03.396 2024-02-23 07:17:03.396 1000 STREAM 141924 15146 6040609 2024-02-23 07:18:03.381 2024-02-23 07:18:03.381 1000 STREAM 141924 18473 6040621 2024-02-23 07:24:03.409 2024-02-23 07:24:03.409 1000 STREAM 141924 21605 6040623 2024-02-23 07:25:03.425 2024-02-23 07:25:03.425 1000 STREAM 141924 7185 6040649 2024-02-23 07:32:03.447 2024-02-23 07:32:03.447 1000 STREAM 141924 1814 6040650 2024-02-23 07:33:03.447 2024-02-23 07:33:03.447 1000 STREAM 141924 17011 6040655 2024-02-23 07:35:03.455 2024-02-23 07:35:03.455 1000 STREAM 141924 12072 6040681 2024-02-23 07:38:03.469 2024-02-23 07:38:03.469 1000 STREAM 141924 20257 6040698 2024-02-23 07:41:03.48 2024-02-23 07:41:03.48 1000 STREAM 141924 20972 6040733 2024-02-23 07:44:03.499 2024-02-23 07:44:03.499 1000 STREAM 141924 20861 6040751 2024-02-23 07:47:03.527 2024-02-23 07:47:03.527 1000 STREAM 141924 19259 6040771 2024-02-23 07:50:03.539 2024-02-23 07:50:03.539 1000 STREAM 141924 21562 6040776 2024-02-23 07:51:03.546 2024-02-23 07:51:03.546 1000 STREAM 141924 646 6040783 2024-02-23 07:53:03.556 2024-02-23 07:53:03.556 1000 STREAM 141924 20430 6040804 2024-02-23 07:56:03.572 2024-02-23 07:56:03.572 1000 STREAM 141924 21159 6040805 2024-02-23 07:57:03.59 2024-02-23 07:57:03.59 1000 STREAM 141924 15052 6111743 2024-02-29 12:06:04.2 2024-02-29 12:06:04.2 1000 STREAM 141924 12169 6111772 2024-02-29 12:11:04.246 2024-02-29 12:11:04.246 1000 STREAM 141924 14941 6111777 2024-02-29 12:12:04.261 2024-02-29 12:12:04.261 1000 STREAM 141924 9418 6111789 2024-02-29 12:14:04.261 2024-02-29 12:14:04.261 1000 STREAM 141924 19535 6111797 2024-02-29 12:17:04.283 2024-02-29 12:17:04.283 1000 STREAM 141924 4798 6111803 2024-02-29 12:19:04.305 2024-02-29 12:19:04.305 1000 STREAM 141924 4304 6111847 2024-02-29 12:27:04.326 2024-02-29 12:27:04.326 1000 STREAM 141924 16250 6111856 2024-02-29 12:29:04.33 2024-02-29 12:29:04.33 1000 STREAM 141924 11789 6111926 2024-02-29 12:39:04.437 2024-02-29 12:39:04.437 1000 STREAM 141924 18139 6111930 2024-02-29 12:41:04.455 2024-02-29 12:41:04.455 1000 STREAM 141924 5852 6111953 2024-02-29 12:43:04.497 2024-02-29 12:43:04.497 1000 STREAM 141924 12291 6111977 2024-02-29 12:47:04.517 2024-02-29 12:47:04.517 1000 STREAM 141924 20687 6040262 2024-02-23 06:11:03.053 2024-02-23 06:11:03.053 1000 STREAM 141924 697 6040265 2024-02-23 06:13:03.065 2024-02-23 06:13:03.065 1000 STREAM 141924 19821 6040267 2024-02-23 06:14:03.086 2024-02-23 06:14:03.086 1000 STREAM 141924 18705 6040276 2024-02-23 06:16:03.095 2024-02-23 06:16:03.095 1000 STREAM 141924 16442 6040278 2024-02-23 06:18:03.094 2024-02-23 06:18:03.094 1000 STREAM 141924 21057 6040308 2024-02-23 06:25:03.11 2024-02-23 06:25:03.11 1000 STREAM 141924 14080 6040310 2024-02-23 06:26:03.14 2024-02-23 06:26:03.14 1000 STREAM 141924 21573 6040317 2024-02-23 06:28:03.131 2024-02-23 06:28:03.131 1000 STREAM 141924 20301 6040318 2024-02-23 06:29:03.128 2024-02-23 06:29:03.128 1000 STREAM 141924 13097 6040320 2024-02-23 06:31:03.14 2024-02-23 06:31:03.14 1000 STREAM 141924 1012 6040323 2024-02-23 06:32:03.142 2024-02-23 06:32:03.142 1000 STREAM 141924 13327 6040325 2024-02-23 06:33:03.148 2024-02-23 06:33:03.148 1000 STREAM 141924 697 6040330 2024-02-23 06:34:03.152 2024-02-23 06:34:03.152 1000 STREAM 141924 21047 6040432 2024-02-23 06:40:03.177 2024-02-23 06:40:03.177 1000 STREAM 141924 18180 6040436 2024-02-23 06:41:03.18 2024-02-23 06:41:03.18 1000 STREAM 141924 12566 6040440 2024-02-23 06:42:03.174 2024-02-23 06:42:03.174 1000 STREAM 141924 16867 6040445 2024-02-23 06:43:03.185 2024-02-23 06:43:03.185 1000 STREAM 141924 20998 6040446 2024-02-23 06:44:03.186 2024-02-23 06:44:03.186 1000 STREAM 141924 12911 6040447 2024-02-23 06:45:03.193 2024-02-23 06:45:03.193 1000 STREAM 141924 10311 6040460 2024-02-23 06:50:03.22 2024-02-23 06:50:03.22 1000 STREAM 141924 20280 6040468 2024-02-23 06:52:03.215 2024-02-23 06:52:03.215 1000 STREAM 141924 9611 6040469 2024-02-23 06:53:03.222 2024-02-23 06:53:03.222 1000 STREAM 141924 17707 6040472 2024-02-23 06:54:03.223 2024-02-23 06:54:03.223 1000 STREAM 141924 7553 6040487 2024-02-23 06:56:03.244 2024-02-23 06:56:03.244 1000 STREAM 141924 14910 6040496 2024-02-23 06:59:03.264 2024-02-23 06:59:03.264 1000 STREAM 141924 18909 6040501 2024-02-23 07:00:03.277 2024-02-23 07:00:03.277 1000 STREAM 141924 1012 6040505 2024-02-23 07:03:03.284 2024-02-23 07:03:03.284 1000 STREAM 141924 18330 6040515 2024-02-23 07:07:03.3 2024-02-23 07:07:03.3 1000 STREAM 141924 19043 6040519 2024-02-23 07:10:03.32 2024-02-23 07:10:03.32 1000 STREAM 141924 19637 6040610 2024-02-23 07:19:03.404 2024-02-23 07:19:03.404 1000 STREAM 141924 19292 6040614 2024-02-23 07:20:03.394 2024-02-23 07:20:03.394 1000 STREAM 141924 19153 6040616 2024-02-23 07:21:03.398 2024-02-23 07:21:03.398 1000 STREAM 141924 16847 6040618 2024-02-23 07:22:03.402 2024-02-23 07:22:03.402 1000 STREAM 141924 919 6040620 2024-02-23 07:23:03.416 2024-02-23 07:23:03.416 1000 STREAM 141924 19735 6040643 2024-02-23 07:26:03.437 2024-02-23 07:26:03.437 1000 STREAM 141924 902 6040644 2024-02-23 07:27:03.446 2024-02-23 07:27:03.446 1000 STREAM 141924 2710 6040645 2024-02-23 07:28:03.43 2024-02-23 07:28:03.43 1000 STREAM 141924 19488 6040646 2024-02-23 07:29:03.432 2024-02-23 07:29:03.432 1000 STREAM 141924 21067 6040647 2024-02-23 07:30:03.442 2024-02-23 07:30:03.442 1000 STREAM 141924 21379 6040648 2024-02-23 07:31:03.445 2024-02-23 07:31:03.445 1000 STREAM 141924 20280 6040653 2024-02-23 07:34:03.455 2024-02-23 07:34:03.455 1000 STREAM 141924 21104 6040656 2024-02-23 07:36:03.464 2024-02-23 07:36:03.464 1000 STREAM 141924 20854 6040665 2024-02-23 07:37:03.461 2024-02-23 07:37:03.461 1000 STREAM 141924 14074 6040685 2024-02-23 07:39:03.472 2024-02-23 07:39:03.472 1000 STREAM 141924 18618 6040693 2024-02-23 07:40:03.477 2024-02-23 07:40:03.477 1000 STREAM 141924 1658 6040708 2024-02-23 07:42:03.491 2024-02-23 07:42:03.491 1000 STREAM 141924 951 6040732 2024-02-23 07:43:03.492 2024-02-23 07:43:03.492 1000 STREAM 141924 21139 6040738 2024-02-23 07:45:03.511 2024-02-23 07:45:03.511 1000 STREAM 141924 627 6040743 2024-02-23 07:46:03.511 2024-02-23 07:46:03.511 1000 STREAM 141924 722 6040765 2024-02-23 07:49:03.523 2024-02-23 07:49:03.523 1000 STREAM 141924 15049 6040782 2024-02-23 07:52:03.551 2024-02-23 07:52:03.551 1000 STREAM 141924 19465 6040800 2024-02-23 07:54:03.58 2024-02-23 07:54:03.58 1000 STREAM 141924 11275 6040802 2024-02-23 07:55:03.569 2024-02-23 07:55:03.569 1000 STREAM 141924 20825 6040807 2024-02-23 07:58:03.589 2024-02-23 07:58:03.589 1000 STREAM 141924 13622 6040815 2024-02-23 08:00:03.595 2024-02-23 08:00:03.595 1000 STREAM 141924 21342 6111767 2024-02-29 12:10:04.289 2024-02-29 12:10:04.289 1000 STREAM 141924 12024 6040273 2024-02-23 06:15:08.769 2024-02-23 06:15:08.769 1000 POLL 435805 859 6040331 2024-02-23 06:34:05.301 2024-02-23 06:34:05.301 9000 FEE 435746 891 6040332 2024-02-23 06:34:05.301 2024-02-23 06:34:05.301 81000 TIP 435746 807 6040368 2024-02-23 06:36:02.71 2024-02-23 06:36:02.71 100 FEE 435847 9184 6040369 2024-02-23 06:36:02.71 2024-02-23 06:36:02.71 900 TIP 435847 16355 6040384 2024-02-23 06:37:30.959 2024-02-23 06:37:30.959 400 FEE 435871 20861 6040385 2024-02-23 06:37:30.959 2024-02-23 06:37:30.959 3600 TIP 435871 15326 6040405 2024-02-23 06:39:24.827 2024-02-23 06:39:24.827 800 FEE 435328 21063 6040406 2024-02-23 06:39:24.827 2024-02-23 06:39:24.827 7200 TIP 435328 19664 6040419 2024-02-23 06:39:28.073 2024-02-23 06:39:28.073 800 FEE 435328 18743 6040420 2024-02-23 06:39:28.073 2024-02-23 06:39:28.073 7200 TIP 435328 2709 6040459 2024-02-23 06:49:42.205 2024-02-23 06:49:42.205 1000 FEE 435896 14941 6040492 2024-02-23 06:58:51.372 2024-02-23 06:58:51.372 2100 FEE 435847 5758 6040493 2024-02-23 06:58:51.372 2024-02-23 06:58:51.372 18900 TIP 435847 21600 6040513 2024-02-23 07:06:15.236 2024-02-23 07:06:15.236 100 FEE 435663 1175 6040514 2024-02-23 07:06:15.236 2024-02-23 07:06:15.236 900 TIP 435663 6555 6040537 2024-02-23 07:11:54.776 2024-02-23 07:11:54.776 2100 FEE 435746 19570 6040538 2024-02-23 07:11:54.776 2024-02-23 07:11:54.776 18900 TIP 435746 876 6040549 2024-02-23 07:11:59.043 2024-02-23 07:11:59.043 2100 FEE 435596 688 6040550 2024-02-23 07:11:59.043 2024-02-23 07:11:59.043 18900 TIP 435596 7760 6040551 2024-02-23 07:12:01.898 2024-02-23 07:12:01.898 2100 FEE 435679 21575 6040552 2024-02-23 07:12:01.898 2024-02-23 07:12:01.898 18900 TIP 435679 13622 6040562 2024-02-23 07:12:19.438 2024-02-23 07:12:19.438 2100 FEE 435489 13046 6040563 2024-02-23 07:12:19.438 2024-02-23 07:12:19.438 18900 TIP 435489 9166 6040565 2024-02-23 07:13:11.722 2024-02-23 07:13:11.722 2100 FEE 435812 18615 6040566 2024-02-23 07:13:11.722 2024-02-23 07:13:11.722 18900 TIP 435812 4819 6040569 2024-02-23 07:13:40.606 2024-02-23 07:13:40.606 100 FEE 435902 12057 6040570 2024-02-23 07:13:40.606 2024-02-23 07:13:40.606 900 TIP 435902 9347 6040591 2024-02-23 07:13:58.081 2024-02-23 07:13:58.081 2100 FEE 435588 20594 6040592 2024-02-23 07:13:58.081 2024-02-23 07:13:58.081 18900 TIP 435588 1162 6040603 2024-02-23 07:16:41.077 2024-02-23 07:16:41.077 10000 FEE 435905 5961 6040604 2024-02-23 07:16:41.077 2024-02-23 07:16:41.077 90000 TIP 435905 18209 6040607 2024-02-23 07:17:00.51 2024-02-23 07:17:00.51 21000 FEE 435907 19996 6040619 2024-02-23 07:22:36.333 2024-02-23 07:22:36.333 100000 FEE 435912 19512 6040627 2024-02-23 07:26:00.446 2024-02-23 07:26:00.446 100 FEE 435242 9347 6040628 2024-02-23 07:26:00.446 2024-02-23 07:26:00.446 900 TIP 435242 19322 6040629 2024-02-23 07:26:00.717 2024-02-23 07:26:00.717 100 FEE 435242 12422 6040630 2024-02-23 07:26:00.717 2024-02-23 07:26:00.717 900 TIP 435242 6526 6040631 2024-02-23 07:26:00.926 2024-02-23 07:26:00.926 100 FEE 435242 16867 6040632 2024-02-23 07:26:00.926 2024-02-23 07:26:00.926 900 TIP 435242 10469 6040639 2024-02-23 07:26:02.021 2024-02-23 07:26:02.021 100 FEE 435242 14663 6040640 2024-02-23 07:26:02.021 2024-02-23 07:26:02.021 900 TIP 435242 20525 6040651 2024-02-23 07:33:29.389 2024-02-23 07:33:29.389 12800 FEE 435914 20642 6040652 2024-02-23 07:33:29.389 2024-02-23 07:33:29.389 115200 TIP 435914 9809 6040710 2024-02-23 07:42:33.9 2024-02-23 07:42:33.9 1000 FEE 435755 18663 6040711 2024-02-23 07:42:33.9 2024-02-23 07:42:33.9 9000 TIP 435755 18264 6040718 2024-02-23 07:42:36.295 2024-02-23 07:42:36.295 1000 FEE 435755 17827 6040719 2024-02-23 07:42:36.295 2024-02-23 07:42:36.295 9000 TIP 435755 20596 6040762 2024-02-23 07:48:58.352 2024-02-23 07:48:58.352 1000 FEE 435930 16562 6040768 2024-02-23 07:49:49.419 2024-02-23 07:49:49.419 1000 FEE 435931 720 6040769 2024-02-23 07:49:54.679 2024-02-23 07:49:54.679 2100 FEE 435910 20225 6040770 2024-02-23 07:49:54.679 2024-02-23 07:49:54.679 18900 TIP 435910 17014 6040780 2024-02-23 07:52:00.975 2024-02-23 07:52:00.975 2100 FEE 435912 16440 6040781 2024-02-23 07:52:00.975 2024-02-23 07:52:00.975 18900 TIP 435912 3478 6040803 2024-02-23 07:55:29.948 2024-02-23 07:55:29.948 10000 FEE 435935 16816 6040806 2024-02-23 07:57:13.788 2024-02-23 07:57:13.788 1000 FEE 435936 21116 6040819 2024-02-23 08:03:18.219 2024-02-23 08:03:18.219 10000 FEE 435935 19501 6040820 2024-02-23 08:03:18.219 2024-02-23 08:03:18.219 90000 TIP 435935 19652 6040830 2024-02-23 08:08:57.311 2024-02-23 08:08:57.311 2100 FEE 435328 1624 6040831 2024-02-23 08:08:57.311 2024-02-23 08:08:57.311 18900 TIP 435328 1567 6040833 2024-02-23 08:09:06.051 2024-02-23 08:09:06.051 2100 FEE 435610 9336 6040834 2024-02-23 08:09:06.051 2024-02-23 08:09:06.051 18900 TIP 435610 2519 6040841 2024-02-23 08:11:11.813 2024-02-23 08:11:11.813 2100 FEE 435740 21323 6040842 2024-02-23 08:11:11.813 2024-02-23 08:11:11.813 18900 TIP 435740 11240 6111786 2024-02-29 12:13:02.427 2024-02-29 12:13:02.427 1000 STREAM 141924 18270 6111878 2024-02-29 12:32:02.522 2024-02-29 12:32:02.522 1000 STREAM 141924 5865 6040336 2024-02-23 06:34:19.604 2024-02-23 06:34:19.604 8100 TIP 435812 18932 6040348 2024-02-23 06:35:15.11 2024-02-23 06:35:15.11 1000 FEE 432920 661 6040349 2024-02-23 06:35:15.11 2024-02-23 06:35:15.11 9000 TIP 432920 5195 6040370 2024-02-23 06:36:02.914 2024-02-23 06:36:02.914 900 FEE 435847 2046 6040371 2024-02-23 06:36:02.914 2024-02-23 06:36:02.914 8100 TIP 435847 10818 6040373 2024-02-23 06:36:03.445 2024-02-23 06:36:03.445 9000 FEE 435847 20812 6040374 2024-02-23 06:36:03.445 2024-02-23 06:36:03.445 81000 TIP 435847 13903 6040433 2024-02-23 06:40:43.469 2024-02-23 06:40:43.469 1000 FEE 435889 17148 6040441 2024-02-23 06:42:13.274 2024-02-23 06:42:13.274 10000 FEE 435847 21457 6040442 2024-02-23 06:42:13.274 2024-02-23 06:42:13.274 90000 TIP 435847 19569 6040444 2024-02-23 06:42:32.351 2024-02-23 06:42:32.351 1000 FEE 435892 19462 6040502 2024-02-23 07:00:20.182 2024-02-23 07:00:20.182 1000 FEE 435902 7916 6040554 2024-02-23 07:12:11.307 2024-02-23 07:12:11.307 2100 FEE 435864 15060 6040555 2024-02-23 07:12:11.307 2024-02-23 07:12:11.307 18900 TIP 435864 12819 6040556 2024-02-23 07:12:11.987 2024-02-23 07:12:11.987 2100 FEE 435695 667 6040557 2024-02-23 07:12:11.987 2024-02-23 07:12:11.987 18900 TIP 435695 10280 6040571 2024-02-23 07:13:40.758 2024-02-23 07:13:40.758 100 FEE 435902 9307 6040572 2024-02-23 07:13:40.758 2024-02-23 07:13:40.758 900 TIP 435902 19174 6040583 2024-02-23 07:13:42.127 2024-02-23 07:13:42.127 100 FEE 435902 16387 6040584 2024-02-23 07:13:42.127 2024-02-23 07:13:42.127 900 TIP 435902 12483 6040593 2024-02-23 07:14:02.008 2024-02-23 07:14:02.008 2100 FEE 435540 21492 6040594 2024-02-23 07:14:02.008 2024-02-23 07:14:02.008 18900 TIP 435540 21614 6040596 2024-02-23 07:14:09.145 2024-02-23 07:14:09.145 1000 POLL 435805 6327 6040625 2024-02-23 07:26:00.135 2024-02-23 07:26:00.135 100 FEE 435242 9078 6040626 2024-02-23 07:26:00.135 2024-02-23 07:26:00.135 900 TIP 435242 10668 6040633 2024-02-23 07:26:01.169 2024-02-23 07:26:01.169 100 FEE 435242 763 6040634 2024-02-23 07:26:01.169 2024-02-23 07:26:01.169 900 TIP 435242 19967 6040635 2024-02-23 07:26:01.57 2024-02-23 07:26:01.57 100 FEE 435242 20310 6040636 2024-02-23 07:26:01.57 2024-02-23 07:26:01.57 900 TIP 435242 18877 6040686 2024-02-23 07:39:03.628 2024-02-23 07:39:03.628 2100 FEE 435663 19546 6040687 2024-02-23 07:39:03.628 2024-02-23 07:39:03.628 18900 TIP 435663 1567 6040690 2024-02-23 07:39:49.157 2024-02-23 07:39:49.157 1000 FEE 435918 9356 6040730 2024-02-23 07:42:38.362 2024-02-23 07:42:38.362 2100 FEE 435920 1845 6040497 2024-02-23 06:59:20.434 2024-02-23 06:59:20.434 1000 FEE 435852 18517 6040498 2024-02-23 06:59:20.434 2024-02-23 06:59:20.434 9000 TIP 435852 12921 6040535 2024-02-23 07:11:54.183 2024-02-23 07:11:54.183 2100 FEE 435217 20264 6040536 2024-02-23 07:11:54.183 2024-02-23 07:11:54.183 18900 TIP 435217 802 6040558 2024-02-23 07:12:12.999 2024-02-23 07:12:12.999 2100 FEE 435671 7891 6040559 2024-02-23 07:12:12.999 2024-02-23 07:12:12.999 18900 TIP 435671 21060 6040573 2024-02-23 07:13:40.926 2024-02-23 07:13:40.926 100 FEE 435902 13854 6040574 2024-02-23 07:13:40.926 2024-02-23 07:13:40.926 900 TIP 435902 3213 6040615 2024-02-23 07:20:55.169 2024-02-23 07:20:55.169 1000 POLL 435805 21501 6040663 2024-02-23 07:36:45.613 2024-02-23 07:36:45.613 1000 FEE 435889 19037 6040664 2024-02-23 07:36:45.613 2024-02-23 07:36:45.613 9000 TIP 435889 3360 6040673 2024-02-23 07:37:33.173 2024-02-23 07:37:33.173 1000 FEE 435812 18507 6040674 2024-02-23 07:37:33.173 2024-02-23 07:37:33.173 9000 TIP 435812 16858 6040675 2024-02-23 07:37:33.355 2024-02-23 07:37:33.355 1000 FEE 435812 15196 6040676 2024-02-23 07:37:33.355 2024-02-23 07:37:33.355 9000 TIP 435812 6700 6040688 2024-02-23 07:39:05.08 2024-02-23 07:39:05.08 1000 FEE 435747 7989 6040689 2024-02-23 07:39:05.08 2024-02-23 07:39:05.08 9000 TIP 435747 14308 6040695 2024-02-23 07:40:16.494 2024-02-23 07:40:16.494 1000 FEE 435920 686 6040709 2024-02-23 07:42:07.757 2024-02-23 07:42:07.757 210000 FEE 435924 666 6040714 2024-02-23 07:42:35.775 2024-02-23 07:42:35.775 1000 FEE 435755 8133 6040715 2024-02-23 07:42:35.775 2024-02-23 07:42:35.775 9000 TIP 435755 1751 6040716 2024-02-23 07:42:36.12 2024-02-23 07:42:36.12 1000 FEE 435755 1474 6040717 2024-02-23 07:42:36.12 2024-02-23 07:42:36.12 9000 TIP 435755 19502 6040809 2024-02-23 07:59:10.389 2024-02-23 07:59:10.389 2100 FEE 435911 20573 6040810 2024-02-23 07:59:10.389 2024-02-23 07:59:10.389 18900 TIP 435911 17172 6040847 2024-02-23 08:12:55.945 2024-02-23 08:12:55.945 2100 FEE 435770 5776 6040848 2024-02-23 08:12:55.945 2024-02-23 08:12:55.945 18900 TIP 435770 12272 6111791 2024-02-29 12:15:04.274 2024-02-29 12:15:04.274 1000 STREAM 141924 20713 6111800 2024-02-29 12:18:04.294 2024-02-29 12:18:04.294 1000 STREAM 141924 4304 6111804 2024-02-29 12:20:04.318 2024-02-29 12:20:04.318 1000 STREAM 141924 7998 6111870 2024-02-29 12:31:04.37 2024-02-29 12:31:04.37 1000 STREAM 141924 20310 6040731 2024-02-23 07:42:38.362 2024-02-23 07:42:38.362 18900 TIP 435920 16178 6040744 2024-02-23 07:46:11.872 2024-02-23 07:46:11.872 1000 FEE 435927 700 6040745 2024-02-23 07:46:39.378 2024-02-23 07:46:39.378 2000 FEE 435870 19905 6040746 2024-02-23 07:46:39.378 2024-02-23 07:46:39.378 18000 TIP 435870 2529 6040750 2024-02-23 07:46:52.711 2024-02-23 07:46:52.711 1000 FEE 435929 2328 6040752 2024-02-23 07:47:53.125 2024-02-23 07:47:53.125 0 FEE 383547 1609 6040756 2024-02-23 07:48:27.328 2024-02-23 07:48:27.328 1000 FEE 435820 5527 6040757 2024-02-23 07:48:27.328 2024-02-23 07:48:27.328 9000 TIP 435820 20187 6040763 2024-02-23 07:49:02.519 2024-02-23 07:49:02.519 1000 FEE 435871 17316 6040764 2024-02-23 07:49:02.519 2024-02-23 07:49:02.519 9000 TIP 435871 16653 6040737 2024-02-23 07:44:46.948 2024-02-23 07:44:46.948 115200 TIP 435125 21482 6040741 2024-02-23 07:45:58.242 2024-02-23 07:45:58.242 2100 FEE 435924 11716 6040742 2024-02-23 07:45:58.242 2024-02-23 07:45:58.242 18900 TIP 435924 18678 6040754 2024-02-23 07:48:18.282 2024-02-23 07:48:18.282 1000 FEE 435808 21541 6040755 2024-02-23 07:48:18.282 2024-02-23 07:48:18.282 9000 TIP 435808 14472 6040758 2024-02-23 07:48:35.698 2024-02-23 07:48:35.698 2100 FEE 435914 4633 6040759 2024-02-23 07:48:35.698 2024-02-23 07:48:35.698 18900 TIP 435914 4076 6040772 2024-02-23 07:50:13.441 2024-02-23 07:50:13.441 2100 FEE 435922 1454 6040773 2024-02-23 07:50:13.441 2024-02-23 07:50:13.441 18900 TIP 435922 16753 6040779 2024-02-23 07:51:42.641 2024-02-23 07:51:42.641 0 FEE 435932 21103 6040790 2024-02-23 07:53:47.406 2024-02-23 07:53:47.406 100 FEE 435639 17523 6040791 2024-02-23 07:53:47.406 2024-02-23 07:53:47.406 900 TIP 435639 13217 6040825 2024-02-23 08:06:02.236 2024-02-23 08:06:02.236 2100 FEE 435874 782 6040826 2024-02-23 08:06:02.236 2024-02-23 08:06:02.236 18900 TIP 435874 21374 6040861 2024-02-23 08:15:12.547 2024-02-23 08:15:12.547 2100 FEE 435935 805 6040862 2024-02-23 08:15:12.547 2024-02-23 08:15:12.547 18900 TIP 435935 21371 6040887 2024-02-23 08:26:54.894 2024-02-23 08:26:54.894 1000 FEE 435946 5961 6040915 2024-02-23 08:37:46.17 2024-02-23 08:37:46.17 10000 FEE 435951 7891 6040919 2024-02-23 08:38:53.562 2024-02-23 08:38:53.562 1000 FEE 435663 1272 6040920 2024-02-23 08:38:53.562 2024-02-23 08:38:53.562 9000 TIP 435663 21416 6040962 2024-02-23 08:54:07.165 2024-02-23 08:54:07.165 800 FEE 435904 15115 6040963 2024-02-23 08:54:07.165 2024-02-23 08:54:07.165 7200 TIP 435904 9426 6040973 2024-02-23 08:56:13.954 2024-02-23 08:56:13.954 21000 FEE 435958 20198 6040997 2024-02-23 09:08:19.442 2024-02-23 09:08:19.442 2100 FEE 435950 21406 6040998 2024-02-23 09:08:19.442 2024-02-23 09:08:19.442 18900 TIP 435950 5865 6041054 2024-02-23 09:13:32.434 2024-02-23 09:13:32.434 2100 FEE 435949 5069 6041055 2024-02-23 09:13:32.434 2024-02-23 09:13:32.434 18900 TIP 435949 16667 6041105 2024-02-23 09:16:20.271 2024-02-23 09:16:20.271 1000 FEE 435293 20691 6041106 2024-02-23 09:16:20.271 2024-02-23 09:16:20.271 9000 TIP 435293 9307 6041115 2024-02-23 09:16:25.414 2024-02-23 09:16:25.414 1000 FEE 435329 18452 6041116 2024-02-23 09:16:25.414 2024-02-23 09:16:25.414 9000 TIP 435329 5036 6041121 2024-02-23 09:16:32.739 2024-02-23 09:16:32.739 1000 FEE 435687 704 6041122 2024-02-23 09:16:32.739 2024-02-23 09:16:32.739 9000 TIP 435687 2942 6041141 2024-02-23 09:17:01.111 2024-02-23 09:17:01.111 1000 FEE 435805 21216 6041142 2024-02-23 09:17:01.111 2024-02-23 09:17:01.111 9000 TIP 435805 866 6041154 2024-02-23 09:17:14.595 2024-02-23 09:17:14.595 1000 FEE 435355 21214 6041155 2024-02-23 09:17:14.595 2024-02-23 09:17:14.595 9000 TIP 435355 2347 6041160 2024-02-23 09:17:27.655 2024-02-23 09:17:27.655 1000 FEE 435546 17226 6041161 2024-02-23 09:17:27.655 2024-02-23 09:17:27.655 9000 TIP 435546 836 6041182 2024-02-23 09:17:39.308 2024-02-23 09:17:39.308 1000 FEE 435120 1094 6041183 2024-02-23 09:17:39.308 2024-02-23 09:17:39.308 9000 TIP 435120 20109 6041184 2024-02-23 09:17:41.691 2024-02-23 09:17:41.691 1000 FEE 435177 20586 6041185 2024-02-23 09:17:41.691 2024-02-23 09:17:41.691 9000 TIP 435177 2709 6041196 2024-02-23 09:21:48.649 2024-02-23 09:21:48.649 10000 FEE 435944 4083 6041197 2024-02-23 09:21:48.649 2024-02-23 09:21:48.649 90000 TIP 435944 21395 6041218 2024-02-23 09:29:12.745 2024-02-23 09:29:12.745 1000 FEE 435969 20185 6041239 2024-02-23 09:37:25.369 2024-02-23 09:37:25.369 1000 FEE 435972 20581 6041241 2024-02-23 09:38:28.314 2024-02-23 09:38:28.314 1000 FEE 435944 21070 6041242 2024-02-23 09:38:28.314 2024-02-23 09:38:28.314 9000 TIP 435944 18630 6041269 2024-02-23 09:47:30.485 2024-02-23 09:47:30.485 2100 FEE 435892 15491 6041270 2024-02-23 09:47:30.485 2024-02-23 09:47:30.485 18900 TIP 435892 6687 6041273 2024-02-23 09:48:55.78 2024-02-23 09:48:55.78 1000 FEE 435980 641 6041288 2024-02-23 09:53:06.075 2024-02-23 09:53:06.075 1000 FEE 435810 18660 6041289 2024-02-23 09:53:06.075 2024-02-23 09:53:06.075 9000 TIP 435810 10530 6041290 2024-02-23 09:53:12.901 2024-02-23 09:53:12.901 15000 FEE 435982 8385 6041295 2024-02-23 09:55:27.061 2024-02-23 09:55:27.061 1000 FEE 435983 13927 6041297 2024-02-23 09:56:36.577 2024-02-23 09:56:36.577 1000 FEE 435984 17570 6041301 2024-02-23 09:57:34.664 2024-02-23 09:57:34.664 125000 FEE 435985 20901 6041320 2024-02-23 10:01:24.421 2024-02-23 10:01:24.421 10000 FEE 435406 21178 6041321 2024-02-23 10:01:24.421 2024-02-23 10:01:24.421 90000 TIP 435406 13055 6041327 2024-02-23 10:03:58.753 2024-02-23 10:03:58.753 10000 FEE 435979 18832 6041328 2024-02-23 10:03:58.753 2024-02-23 10:03:58.753 90000 TIP 435979 9611 6041351 2024-02-23 10:11:43.917 2024-02-23 10:11:43.917 1000 FEE 436000 7553 6041365 2024-02-23 10:18:35.79 2024-02-23 10:18:35.79 1000 FEE 435958 21599 6041366 2024-02-23 10:18:35.79 2024-02-23 10:18:35.79 9000 TIP 435958 1454 6041385 2024-02-23 10:27:40.088 2024-02-23 10:27:40.088 800 FEE 436001 20680 6041386 2024-02-23 10:27:40.088 2024-02-23 10:27:40.088 7200 TIP 436001 18270 6041401 2024-02-23 10:30:20.927 2024-02-23 10:30:20.927 100 FEE 435908 749 6041402 2024-02-23 10:30:20.927 2024-02-23 10:30:20.927 900 TIP 435908 21402 6041469 2024-02-23 10:42:12.781 2024-02-23 10:42:12.781 2100 FEE 397192 17602 6041470 2024-02-23 10:42:12.781 2024-02-23 10:42:12.781 18900 TIP 397192 20340 6041475 2024-02-23 10:42:15.089 2024-02-23 10:42:15.089 2100 FEE 397192 19031 6041476 2024-02-23 10:42:15.089 2024-02-23 10:42:15.089 18900 TIP 397192 18862 6041485 2024-02-23 10:44:16.559 2024-02-23 10:44:16.559 2100 FEE 431293 16706 6041486 2024-02-23 10:44:16.559 2024-02-23 10:44:16.559 18900 TIP 431293 692 6041493 2024-02-23 10:44:37.288 2024-02-23 10:44:37.288 2100 FEE 418294 2734 6041494 2024-02-23 10:44:37.288 2024-02-23 10:44:37.288 18900 TIP 418294 12097 6041499 2024-02-23 10:44:37.728 2024-02-23 10:44:37.728 2100 FEE 418294 1801 6041500 2024-02-23 10:44:37.728 2024-02-23 10:44:37.728 18900 TIP 418294 20577 6041502 2024-02-23 10:45:02.309 2024-02-23 10:45:02.309 2100 FEE 237680 15226 6041503 2024-02-23 10:45:02.309 2024-02-23 10:45:02.309 18900 TIP 237680 4062 6041517 2024-02-23 10:49:20.455 2024-02-23 10:49:20.455 1000 FEE 436016 18500 6041518 2024-02-23 10:49:20.455 2024-02-23 10:49:20.455 9000 TIP 436016 21352 6041525 2024-02-23 10:50:51.047 2024-02-23 10:50:51.047 1000 FEE 436022 21605 6041532 2024-02-23 10:54:00.687 2024-02-23 10:54:00.687 0 FEE 436021 19044 6041551 2024-02-23 11:00:22.875 2024-02-23 11:00:22.875 4000 FEE 435987 17011 6041552 2024-02-23 11:00:22.875 2024-02-23 11:00:22.875 36000 TIP 435987 16097 6041554 2024-02-23 11:00:35.497 2024-02-23 11:00:35.497 4000 FEE 435938 20681 6041555 2024-02-23 11:00:35.497 2024-02-23 11:00:35.497 36000 TIP 435938 9363 6041590 2024-02-23 11:04:02.117 2024-02-23 11:04:02.117 2100 FEE 435746 19332 6041591 2024-02-23 11:04:02.117 2024-02-23 11:04:02.117 18900 TIP 435746 21067 6041597 2024-02-23 11:04:16.638 2024-02-23 11:04:16.638 0 FEE 436031 15049 6041615 2024-02-23 11:13:10.076 2024-02-23 11:13:10.076 1000 FEE 436035 17116 6041620 2024-02-23 11:13:57.204 2024-02-23 11:13:57.204 100000 FEE 436036 4989 6041630 2024-02-23 11:16:57.046 2024-02-23 11:16:57.046 1000 FEE 436033 18828 6041631 2024-02-23 11:16:57.046 2024-02-23 11:16:57.046 9000 TIP 436033 9275 6041695 2024-02-23 11:22:40.948 2024-02-23 11:22:40.948 5000 FEE 435284 20045 6041696 2024-02-23 11:22:40.948 2024-02-23 11:22:40.948 45000 TIP 435284 1567 6040753 2024-02-23 07:48:04.854 2024-02-23 07:48:04.854 1000 STREAM 141924 1769 6111808 2024-02-29 12:22:01.24 2024-02-29 12:22:01.24 1000 FEE 443380 16230 6111841 2024-02-29 12:26:33.731 2024-02-29 12:26:33.731 10000 FEE 443385 18945 6111842 2024-02-29 12:26:33.731 2024-02-29 12:26:33.731 90000 TIP 443385 20987 6111850 2024-02-29 12:27:44.927 2024-02-29 12:27:44.927 1000 FEE 443389 12334 6111889 2024-02-29 12:34:20.27 2024-02-29 12:34:20.27 1000 FEE 443396 18008 6111890 2024-02-29 12:34:20.27 2024-02-29 12:34:20.27 9000 TIP 443396 9551 6111899 2024-02-29 12:35:07.455 2024-02-29 12:35:07.455 2100 FEE 442608 623 6111900 2024-02-29 12:35:07.455 2024-02-29 12:35:07.455 18900 TIP 442608 1712 6111910 2024-02-29 12:35:38.779 2024-02-29 12:35:38.779 0 FEE 443386 18660 6111918 2024-02-29 12:37:58.534 2024-02-29 12:37:58.534 2100 FEE 443146 13198 6111919 2024-02-29 12:37:58.534 2024-02-29 12:37:58.534 18900 TIP 443146 19193 6112033 2024-02-29 13:02:17.249 2024-02-29 13:02:17.249 5700 FEE 443400 21422 6112034 2024-02-29 13:02:17.249 2024-02-29 13:02:17.249 51300 TIP 443400 739 6112058 2024-02-29 13:05:13.142 2024-02-29 13:05:13.142 5700 FEE 443429 20490 6112059 2024-02-29 13:05:13.142 2024-02-29 13:05:13.142 51300 TIP 443429 17011 6112079 2024-02-29 13:06:56.977 2024-02-29 13:06:56.977 9000 FEE 443272 10591 6112080 2024-02-29 13:06:56.977 2024-02-29 13:06:56.977 81000 TIP 443272 20897 6112110 2024-02-29 13:09:13.038 2024-02-29 13:09:13.038 100 FEE 443122 19777 6112111 2024-02-29 13:09:13.038 2024-02-29 13:09:13.038 900 TIP 443122 10519 6112120 2024-02-29 13:09:19.313 2024-02-29 13:09:19.313 1000 FEE 443427 5495 6112121 2024-02-29 13:09:19.313 2024-02-29 13:09:19.313 9000 TIP 443427 1658 6112139 2024-02-29 13:11:04.729 2024-02-29 13:11:04.729 1000 FEE 443439 21514 6112168 2024-02-29 13:13:34.682 2024-02-29 13:13:34.682 1000 FEE 443443 616 6112174 2024-02-29 13:14:26.121 2024-02-29 13:14:26.121 6900 FEE 443093 19043 6112175 2024-02-29 13:14:26.121 2024-02-29 13:14:26.121 62100 TIP 443093 9820 6112182 2024-02-29 13:15:05.623 2024-02-29 13:15:05.623 1000 FEE 443445 11263 6112200 2024-02-29 13:17:44.729 2024-02-29 13:17:44.729 2100 FEE 443197 705 6112201 2024-02-29 13:17:44.729 2024-02-29 13:17:44.729 18900 TIP 443197 2224 6112235 2024-02-29 13:21:17.228 2024-02-29 13:21:17.228 1000 FEE 443312 963 6112236 2024-02-29 13:21:17.228 2024-02-29 13:21:17.228 9000 TIP 443312 16177 6112277 2024-02-29 13:27:11.053 2024-02-29 13:27:11.053 1000 FEE 440692 1658 6112278 2024-02-29 13:27:11.053 2024-02-29 13:27:11.053 9000 TIP 440692 4973 6112285 2024-02-29 13:27:12.273 2024-02-29 13:27:12.273 1000 FEE 440692 2322 6112286 2024-02-29 13:27:12.273 2024-02-29 13:27:12.273 9000 TIP 440692 9345 6112287 2024-02-29 13:27:12.453 2024-02-29 13:27:12.453 1000 FEE 440692 13348 6112288 2024-02-29 13:27:12.453 2024-02-29 13:27:12.453 9000 TIP 440692 2543 6112314 2024-02-29 13:31:28.161 2024-02-29 13:31:28.161 10000 FEE 443463 20802 6112338 2024-02-29 13:34:47.672 2024-02-29 13:34:47.672 10000 DONT_LIKE_THIS 443319 21599 6112359 2024-02-29 13:37:19.448 2024-02-29 13:37:19.448 2100 FEE 443262 7659 6112360 2024-02-29 13:37:19.448 2024-02-29 13:37:19.448 18900 TIP 443262 1483 6112363 2024-02-29 13:37:25.195 2024-02-29 13:37:25.195 100 FEE 443228 8416 6112364 2024-02-29 13:37:25.195 2024-02-29 13:37:25.195 900 TIP 443228 15119 6112385 2024-02-29 13:40:35.73 2024-02-29 13:40:35.73 2100 FEE 443319 19333 6112386 2024-02-29 13:40:35.73 2024-02-29 13:40:35.73 18900 TIP 443319 882 6112405 2024-02-29 13:41:20.625 2024-02-29 13:41:20.625 1000 FEE 442904 2514 6112406 2024-02-29 13:41:20.625 2024-02-29 13:41:20.625 9000 TIP 442904 794 6112415 2024-02-29 13:41:21.605 2024-02-29 13:41:21.605 1000 FEE 442904 895 6112416 2024-02-29 13:41:21.605 2024-02-29 13:41:21.605 9000 TIP 442904 17517 6112419 2024-02-29 13:41:21.914 2024-02-29 13:41:21.914 1000 FEE 442904 8245 6112420 2024-02-29 13:41:21.914 2024-02-29 13:41:21.914 9000 TIP 442904 5852 6112437 2024-02-29 13:41:25.454 2024-02-29 13:41:25.454 1000 FEE 442904 21605 6112438 2024-02-29 13:41:25.454 2024-02-29 13:41:25.454 9000 TIP 442904 16970 6112455 2024-02-29 13:41:30.143 2024-02-29 13:41:30.143 1000 FEE 442904 10693 6112456 2024-02-29 13:41:30.143 2024-02-29 13:41:30.143 9000 TIP 442904 20841 6112519 2024-02-29 13:41:37.625 2024-02-29 13:41:37.625 1000 FEE 442904 15588 6112520 2024-02-29 13:41:37.625 2024-02-29 13:41:37.625 9000 TIP 442904 21520 6112550 2024-02-29 13:44:15.135 2024-02-29 13:44:15.135 1000 FEE 443478 7418 6112555 2024-02-29 13:45:14.836 2024-02-29 13:45:14.836 1000 FEE 443480 18511 6112560 2024-02-29 13:47:11.523 2024-02-29 13:47:11.523 1700 FEE 443096 12819 6112561 2024-02-29 13:47:11.523 2024-02-29 13:47:11.523 15300 TIP 443096 9844 6112562 2024-02-29 13:47:11.681 2024-02-29 13:47:11.681 1700 FEE 443096 12738 6112563 2024-02-29 13:47:11.681 2024-02-29 13:47:11.681 15300 TIP 443096 8095 6112564 2024-02-29 13:47:13.634 2024-02-29 13:47:13.634 1000 FEE 443483 20744 6112573 2024-02-29 13:48:51.276 2024-02-29 13:48:51.276 1000 FEE 443485 1030 6112585 2024-02-29 13:52:15.466 2024-02-29 13:52:15.466 1700 FEE 443142 9341 6112586 2024-02-29 13:52:15.466 2024-02-29 13:52:15.466 15300 TIP 443142 5757 6112593 2024-02-29 13:52:36.459 2024-02-29 13:52:36.459 700 FEE 443487 16660 6112594 2024-02-29 13:52:36.459 2024-02-29 13:52:36.459 6300 TIP 443487 17494 6040777 2024-02-23 07:51:11.758 2024-02-23 07:51:11.758 1000 FEE 435933 1814 6040794 2024-02-23 07:53:50.382 2024-02-23 07:53:50.382 2100 FEE 435908 20062 6040795 2024-02-23 07:53:50.382 2024-02-23 07:53:50.382 18900 TIP 435908 20624 6040863 2024-02-23 08:15:29.607 2024-02-23 08:15:29.607 1000 POLL 435805 16665 6040898 2024-02-23 08:29:14.452 2024-02-23 08:29:14.452 3000 FEE 435944 1472 6040899 2024-02-23 08:29:14.452 2024-02-23 08:29:14.452 27000 TIP 435944 19235 6040900 2024-02-23 08:29:44.036 2024-02-23 08:29:44.036 1000000 FEE 435944 2614 6040901 2024-02-23 08:29:44.036 2024-02-23 08:29:44.036 9000000 TIP 435944 844 6040940 2024-02-23 08:46:12.271 2024-02-23 08:46:12.271 21000 FEE 435955 4027 6040946 2024-02-23 08:49:26.626 2024-02-23 08:49:26.626 1600 FEE 435824 20073 6040947 2024-02-23 08:49:26.626 2024-02-23 08:49:26.626 14400 TIP 435824 15588 6040966 2024-02-23 08:54:52.625 2024-02-23 08:54:52.625 3200 FEE 435944 21480 6040967 2024-02-23 08:54:52.625 2024-02-23 08:54:52.625 28800 TIP 435944 19652 6041003 2024-02-23 09:10:38.694 2024-02-23 09:10:38.694 1000 FEE 435962 21501 6041030 2024-02-23 09:10:59.739 2024-02-23 09:10:59.739 1000 FEE 435776 13198 6041031 2024-02-23 09:10:59.739 2024-02-23 09:10:59.739 9000 TIP 435776 21088 6041052 2024-02-23 09:13:04.971 2024-02-23 09:13:04.971 200 FEE 435651 18230 6041053 2024-02-23 09:13:04.971 2024-02-23 09:13:04.971 1800 TIP 435651 17171 6041059 2024-02-23 09:14:40.906 2024-02-23 09:14:40.906 100 FEE 435488 1549 6041060 2024-02-23 09:14:40.906 2024-02-23 09:14:40.906 900 TIP 435488 19118 6041093 2024-02-23 09:16:15.557 2024-02-23 09:16:15.557 1000 FEE 435430 5427 6041094 2024-02-23 09:16:15.557 2024-02-23 09:16:15.557 9000 TIP 435430 14271 6041103 2024-02-23 09:16:19.539 2024-02-23 09:16:19.539 1000 FEE 435286 16276 6041104 2024-02-23 09:16:19.539 2024-02-23 09:16:19.539 9000 TIP 435286 859 6041109 2024-02-23 09:16:23.117 2024-02-23 09:16:23.117 1000 FEE 435470 15367 6041110 2024-02-23 09:16:23.117 2024-02-23 09:16:23.117 9000 TIP 435470 18262 6041123 2024-02-23 09:16:33.521 2024-02-23 09:16:33.521 1000 FEE 435719 5449 6041124 2024-02-23 09:16:33.521 2024-02-23 09:16:33.521 9000 TIP 435719 15147 6041144 2024-02-23 09:17:04 2024-02-23 09:17:04 1000 FEE 435808 4574 6041145 2024-02-23 09:17:04 2024-02-23 09:17:04 9000 TIP 435808 3506 6041188 2024-02-23 09:17:43.705 2024-02-23 09:17:43.705 1000 FEE 435492 18745 6041189 2024-02-23 09:17:43.705 2024-02-23 09:17:43.705 9000 TIP 435492 9496 6041225 2024-02-23 09:34:33.796 2024-02-23 09:34:33.796 2500 FEE 435908 15662 6041226 2024-02-23 09:34:33.796 2024-02-23 09:34:33.796 22500 TIP 435908 16954 6041254 2024-02-23 09:43:23.068 2024-02-23 09:43:23.068 1000 FEE 435976 959 6041285 2024-02-23 09:51:36.691 2024-02-23 09:51:36.691 10000 FEE 435981 658 6041299 2024-02-23 09:57:24.026 2024-02-23 09:57:24.026 10000 FEE 435944 16543 6041300 2024-02-23 09:57:24.026 2024-02-23 09:57:24.026 90000 TIP 435944 16950 6041346 2024-02-23 10:08:11.776 2024-02-23 10:08:11.776 1000 FEE 435998 13169 6041364 2024-02-23 10:18:22.348 2024-02-23 10:18:22.348 1000 FEE 436004 19976 6041397 2024-02-23 10:30:20.237 2024-02-23 10:30:20.237 100 FEE 435908 1352 6041398 2024-02-23 10:30:20.237 2024-02-23 10:30:20.237 900 TIP 435908 13903 6041455 2024-02-23 10:39:40.658 2024-02-23 10:39:40.658 2500 FEE 435769 20788 6041456 2024-02-23 10:39:40.658 2024-02-23 10:39:40.658 22500 TIP 435769 9169 6041463 2024-02-23 10:40:56.207 2024-02-23 10:40:56.207 200 FEE 435596 13042 6041464 2024-02-23 10:40:56.207 2024-02-23 10:40:56.207 1800 TIP 435596 19394 6041505 2024-02-23 10:45:02.986 2024-02-23 10:45:02.986 2100 FEE 237680 15160 6041506 2024-02-23 10:45:02.986 2024-02-23 10:45:02.986 18900 TIP 237680 10608 6041507 2024-02-23 10:45:23.15 2024-02-23 10:45:23.15 0 FEE 436019 2620 6041553 2024-02-23 11:00:25.832 2024-02-23 11:00:25.832 1000 FEE 436029 15243 6041560 2024-02-23 11:01:24.41 2024-02-23 11:01:24.41 4000 FEE 435881 17014 6041561 2024-02-23 11:01:24.41 2024-02-23 11:01:24.41 36000 TIP 435881 4831 6041562 2024-02-23 11:01:32.679 2024-02-23 11:01:32.679 4000 FEE 435878 20585 6041563 2024-02-23 11:01:32.679 2024-02-23 11:01:32.679 36000 TIP 435878 16348 6041565 2024-02-23 11:02:00.467 2024-02-23 11:02:00.467 4000 FEE 435858 703 6041566 2024-02-23 11:02:00.467 2024-02-23 11:02:00.467 36000 TIP 435858 21019 6041572 2024-02-23 11:02:50.911 2024-02-23 11:02:50.911 0 FEE 436029 18727 6040808 2024-02-23 07:59:01.84 2024-02-23 07:59:01.84 1000 STREAM 141924 11522 6111820 2024-02-29 12:23:04.146 2024-02-29 12:23:04.146 1000 STREAM 141924 11450 6111851 2024-02-29 12:28:04.194 2024-02-29 12:28:04.194 1000 STREAM 141924 9177 6111863 2024-02-29 12:30:04.269 2024-02-29 12:30:04.269 1000 STREAM 141924 21599 6111884 2024-02-29 12:34:04.302 2024-02-29 12:34:04.302 1000 STREAM 141924 876 6111922 2024-02-29 12:38:04.365 2024-02-29 12:38:04.365 1000 STREAM 141924 12516 6111929 2024-02-29 12:40:04.434 2024-02-29 12:40:04.434 1000 STREAM 141924 21218 6111984 2024-02-29 12:50:04.549 2024-02-29 12:50:04.549 1000 STREAM 141924 15200 6112000 2024-02-29 12:52:04.512 2024-02-29 12:52:04.512 1000 STREAM 141924 21218 6112006 2024-02-29 12:54:04.527 2024-02-29 12:54:04.527 1000 STREAM 141924 20245 6040816 2024-02-23 08:01:03.727 2024-02-23 08:01:03.727 1000 STREAM 141924 7899 6040817 2024-02-23 08:02:03.718 2024-02-23 08:02:03.718 1000 STREAM 141924 5527 6040818 2024-02-23 08:03:03.718 2024-02-23 08:03:03.718 1000 STREAM 141924 16176 6040821 2024-02-23 08:04:03.725 2024-02-23 08:04:03.725 1000 STREAM 141924 12169 6040828 2024-02-23 08:07:03.723 2024-02-23 08:07:03.723 1000 STREAM 141924 12959 6040832 2024-02-23 08:09:03.74 2024-02-23 08:09:03.74 1000 STREAM 141924 11165 6040839 2024-02-23 08:11:03.749 2024-02-23 08:11:03.749 1000 STREAM 141924 14255 6040858 2024-02-23 08:15:03.773 2024-02-23 08:15:03.773 1000 STREAM 141924 763 6040866 2024-02-23 08:17:03.773 2024-02-23 08:17:03.773 1000 STREAM 141924 12779 6040867 2024-02-23 08:18:03.781 2024-02-23 08:18:03.781 1000 STREAM 141924 2123 6040870 2024-02-23 08:21:03.796 2024-02-23 08:21:03.796 1000 STREAM 141924 12261 6040871 2024-02-23 08:22:03.816 2024-02-23 08:22:03.816 1000 STREAM 141924 1030 6040872 2024-02-23 08:23:03.822 2024-02-23 08:23:03.822 1000 STREAM 141924 11430 6040873 2024-02-23 08:24:03.831 2024-02-23 08:24:03.831 1000 STREAM 141924 12158 6111826 2024-02-29 12:23:31.635 2024-02-29 12:23:31.635 9000 TIP 443338 21090 6111849 2024-02-29 12:27:26.375 2024-02-29 12:27:26.375 7000 FEE 443388 9276 6111852 2024-02-29 12:28:19.103 2024-02-29 12:28:19.103 0 FEE 443385 17494 6111862 2024-02-29 12:30:03.621 2024-02-29 12:30:03.621 0 FEE 443384 708 6111869 2024-02-29 12:30:27.251 2024-02-29 12:30:27.251 10000 FEE 443393 16410 6111882 2024-02-29 12:33:30.62 2024-02-29 12:33:30.62 1000 FEE 443395 9177 6111883 2024-02-29 12:34:04.104 2024-02-29 12:34:04.104 10000 FEE 443396 12346 6111903 2024-02-29 12:35:07.582 2024-02-29 12:35:07.582 2100 FEE 442608 14258 6111904 2024-02-29 12:35:07.582 2024-02-29 12:35:07.582 18900 TIP 442608 19471 6111907 2024-02-29 12:35:12.069 2024-02-29 12:35:12.069 100000 FEE 442608 19033 6111908 2024-02-29 12:35:12.069 2024-02-29 12:35:12.069 900000 TIP 442608 16440 6111927 2024-02-29 12:40:03.141 2024-02-29 12:40:03.141 2100 FEE 443179 18372 6111928 2024-02-29 12:40:03.141 2024-02-29 12:40:03.141 18900 TIP 443179 20987 6111937 2024-02-29 12:42:48.387 2024-02-29 12:42:48.387 500 FEE 443274 19156 6111938 2024-02-29 12:42:48.387 2024-02-29 12:42:48.387 4500 TIP 443274 13133 6111966 2024-02-29 12:44:46.707 2024-02-29 12:44:46.707 10000 FEE 442514 6578 6111967 2024-02-29 12:44:46.707 2024-02-29 12:44:46.707 90000 TIP 442514 669 6111971 2024-02-29 12:46:00.62 2024-02-29 12:46:00.62 10000 FEE 443408 6573 6111978 2024-02-29 12:47:05.752 2024-02-29 12:47:05.752 10000 FEE 443399 21063 6111979 2024-02-29 12:47:05.752 2024-02-29 12:47:05.752 90000 TIP 443399 634 6111988 2024-02-29 12:50:12.312 2024-02-29 12:50:12.312 2100 FEE 443378 4259 6111989 2024-02-29 12:50:12.312 2024-02-29 12:50:12.312 18900 TIP 443378 3400 6111990 2024-02-29 12:50:37.321 2024-02-29 12:50:37.321 21000 FEE 443412 19381 6111991 2024-02-29 12:50:58.003 2024-02-29 12:50:58.003 0 FEE 443411 12169 6112004 2024-02-29 12:53:48.159 2024-02-29 12:53:48.159 1600 FEE 443412 18873 6112005 2024-02-29 12:53:48.159 2024-02-29 12:53:48.159 14400 TIP 443412 18116 6112008 2024-02-29 12:54:30.489 2024-02-29 12:54:30.489 1000 FEE 443417 11821 6112010 2024-02-29 12:55:44.338 2024-02-29 12:55:44.338 1000 FEE 443418 14045 6112019 2024-02-29 12:57:46.572 2024-02-29 12:57:46.572 1000 FEE 443419 9109 6112051 2024-02-29 13:04:17.576 2024-02-29 13:04:17.576 1000 FEE 443414 16808 6112052 2024-02-29 13:04:17.576 2024-02-29 13:04:17.576 9000 TIP 443414 20182 6112061 2024-02-29 13:05:36.88 2024-02-29 13:05:36.88 1000 FEE 443430 19663 6112068 2024-02-29 13:05:52.647 2024-02-29 13:05:52.647 700 FEE 442985 18076 6112069 2024-02-29 13:05:52.647 2024-02-29 13:05:52.647 6300 TIP 442985 19815 6112083 2024-02-29 13:07:17.413 2024-02-29 13:07:17.413 0 FEE 443432 6160 6112086 2024-02-29 13:07:32.025 2024-02-29 13:07:32.025 900 FEE 443274 17984 6112087 2024-02-29 13:07:32.025 2024-02-29 13:07:32.025 8100 TIP 443274 6003 6112099 2024-02-29 13:08:15.53 2024-02-29 13:08:15.53 9000 FEE 443197 1845 6112100 2024-02-29 13:08:15.53 2024-02-29 13:08:15.53 81000 TIP 443197 20881 6112136 2024-02-29 13:10:37.45 2024-02-29 13:10:37.45 15000 FEE 443438 18816 6112143 2024-02-29 13:11:07.645 2024-02-29 13:11:07.645 900 FEE 443107 21242 6112144 2024-02-29 13:11:07.645 2024-02-29 13:11:07.645 8100 TIP 443107 15367 6112145 2024-02-29 13:11:07.892 2024-02-29 13:11:07.892 2100 FEE 443349 16387 6040822 2024-02-23 08:05:03.709 2024-02-23 08:05:03.709 1000 STREAM 141924 19581 6040827 2024-02-23 08:06:03.722 2024-02-23 08:06:03.722 1000 STREAM 141924 963 6040829 2024-02-23 08:08:03.761 2024-02-23 08:08:03.761 1000 STREAM 141924 19126 6040837 2024-02-23 08:10:03.761 2024-02-23 08:10:03.761 1000 STREAM 141924 20452 6040845 2024-02-23 08:12:03.751 2024-02-23 08:12:03.751 1000 STREAM 141924 8176 6040849 2024-02-23 08:13:03.774 2024-02-23 08:13:03.774 1000 STREAM 141924 10698 6040853 2024-02-23 08:14:03.777 2024-02-23 08:14:03.777 1000 STREAM 141924 657 6040864 2024-02-23 08:16:03.772 2024-02-23 08:16:03.772 1000 STREAM 141924 15351 6040868 2024-02-23 08:19:03.78 2024-02-23 08:19:03.78 1000 STREAM 141924 19289 6040869 2024-02-23 08:20:03.786 2024-02-23 08:20:03.786 1000 STREAM 141924 15273 6111844 2024-02-29 12:26:34.099 2024-02-29 12:26:34.099 1000 FEE 443386 11590 6111848 2024-02-29 12:27:17.326 2024-02-29 12:27:17.326 1000 FEE 443387 17001 6111853 2024-02-29 12:28:32.991 2024-02-29 12:28:32.991 0 FEE 443385 795 6111854 2024-02-29 12:28:52.604 2024-02-29 12:28:52.604 5700 FEE 443386 20912 6111855 2024-02-29 12:28:52.604 2024-02-29 12:28:52.604 51300 TIP 443386 20495 6111886 2024-02-29 12:34:14.672 2024-02-29 12:34:14.672 1000 FEE 443398 12175 6111891 2024-02-29 12:34:22.033 2024-02-29 12:34:22.033 1100 FEE 443387 9833 6111892 2024-02-29 12:34:22.033 2024-02-29 12:34:22.033 9900 TIP 443387 19995 6111917 2024-02-29 12:37:30.29 2024-02-29 12:37:30.29 1000 FEE 443401 9356 6111933 2024-02-29 12:42:09.558 2024-02-29 12:42:09.558 5700 FEE 443399 19854 6111934 2024-02-29 12:42:09.558 2024-02-29 12:42:09.558 51300 TIP 443399 10060 6111943 2024-02-29 12:42:48.935 2024-02-29 12:42:48.935 500 FEE 443274 1092 6111944 2024-02-29 12:42:48.935 2024-02-29 12:42:48.935 4500 TIP 443274 21042 6111949 2024-02-29 12:42:49.629 2024-02-29 12:42:49.629 1000 FEE 443274 7097 6111950 2024-02-29 12:42:49.629 2024-02-29 12:42:49.629 9000 TIP 443274 684 6111958 2024-02-29 12:44:14.099 2024-02-29 12:44:14.099 1000 FEE 443405 20655 6111961 2024-02-29 12:44:31.408 2024-02-29 12:44:31.408 1000 FEE 443406 1012 6111975 2024-02-29 12:46:46.424 2024-02-29 12:46:46.424 1000 FEE 443406 18363 6111976 2024-02-29 12:46:46.424 2024-02-29 12:46:46.424 9000 TIP 443406 14950 6111980 2024-02-29 12:47:44.886 2024-02-29 12:47:44.886 1000 FEE 443409 13782 6112014 2024-02-29 12:56:09.886 2024-02-29 12:56:09.886 10000 FEE 443399 16660 6112015 2024-02-29 12:56:09.886 2024-02-29 12:56:09.886 90000 TIP 443399 9335 6112025 2024-02-29 12:59:23.15 2024-02-29 12:59:23.15 1000 FEE 443421 21619 6112045 2024-02-29 13:03:24.769 2024-02-29 13:03:24.769 1000 FEE 443427 12346 6112071 2024-02-29 13:06:08.057 2024-02-29 13:06:08.057 100000 FEE 443431 2309 6112090 2024-02-29 13:07:50.021 2024-02-29 13:07:50.021 2100 FEE 443432 10731 6112091 2024-02-29 13:07:50.021 2024-02-29 13:07:50.021 18900 TIP 443432 15336 6112109 2024-02-29 13:09:05.926 2024-02-29 13:09:05.926 1000 FEE 443436 4128 6112137 2024-02-29 13:10:48.126 2024-02-29 13:10:48.126 1000 FEE 443399 8916 6112138 2024-02-29 13:10:48.126 2024-02-29 13:10:48.126 9000 TIP 443399 10591 6112147 2024-02-29 13:11:10.217 2024-02-29 13:11:10.217 9000 FEE 443107 2596 6112148 2024-02-29 13:11:10.217 2024-02-29 13:11:10.217 81000 TIP 443107 10690 6112169 2024-02-29 13:13:44.994 2024-02-29 13:13:44.994 1600 FEE 443438 17722 6112170 2024-02-29 13:13:44.994 2024-02-29 13:13:44.994 14400 TIP 443438 19557 6112171 2024-02-29 13:14:01.995 2024-02-29 13:14:01.995 6900 FEE 443265 17519 6112172 2024-02-29 13:14:01.995 2024-02-29 13:14:01.995 62100 TIP 443265 18235 6112178 2024-02-29 13:14:40.319 2024-02-29 13:14:40.319 1000 FEE 443444 19839 6112183 2024-02-29 13:15:47.933 2024-02-29 13:15:47.933 10000 FEE 443246 20409 6112184 2024-02-29 13:15:47.933 2024-02-29 13:15:47.933 90000 TIP 443246 20614 6112193 2024-02-29 13:16:43.928 2024-02-29 13:16:43.928 1000 FEE 443449 15146 6112198 2024-02-29 13:17:41.361 2024-02-29 13:17:41.361 2100 FEE 443372 10519 6112199 2024-02-29 13:17:41.361 2024-02-29 13:17:41.361 18900 TIP 443372 18904 6112256 2024-02-29 13:24:38.533 2024-02-29 13:24:38.533 1000 FEE 442313 3411 6112257 2024-02-29 13:24:38.533 2024-02-29 13:24:38.533 9000 TIP 442313 18235 6112258 2024-02-29 13:24:39 2024-02-29 13:24:39 1000 FEE 442313 2022 6112259 2024-02-29 13:24:39 2024-02-29 13:24:39 9000 TIP 442313 15536 6112260 2024-02-29 13:24:44.642 2024-02-29 13:24:44.642 10000 FEE 443455 9350 6112261 2024-02-29 13:24:44.642 2024-02-29 13:24:44.642 90000 TIP 443455 1454 6112270 2024-02-29 13:26:46.724 2024-02-29 13:26:46.724 1000 FEE 443393 685 6112271 2024-02-29 13:26:46.724 2024-02-29 13:26:46.724 9000 TIP 443393 3506 6112279 2024-02-29 13:27:11.6 2024-02-29 13:27:11.6 1000 FEE 440692 803 6112280 2024-02-29 13:27:11.6 2024-02-29 13:27:11.6 9000 TIP 440692 2718 6112293 2024-02-29 13:28:29.262 2024-02-29 13:28:29.262 1000 FEE 443452 8326 6112294 2024-02-29 13:28:29.262 2024-02-29 13:28:29.262 9000 TIP 443452 17183 6112316 2024-02-29 13:32:25.534 2024-02-29 13:32:25.534 700 FEE 443388 20299 6112317 2024-02-29 13:32:25.534 2024-02-29 13:32:25.534 6300 TIP 443388 20110 6112318 2024-02-29 13:32:27.703 2024-02-29 13:32:27.703 1000 FEE 443464 9611 6112332 2024-02-29 13:34:27.962 2024-02-29 13:34:27.962 100 FEE 443364 940 6112333 2024-02-29 13:34:27.962 2024-02-29 13:34:27.962 900 TIP 443364 11967 6112354 2024-02-29 13:36:34.921 2024-02-29 13:36:34.921 2100 FEE 443458 4128 6112355 2024-02-29 13:36:34.921 2024-02-29 13:36:34.921 18900 TIP 443458 11819 6112365 2024-02-29 13:37:56.517 2024-02-29 13:37:56.517 1000 FEE 443471 6191 6112389 2024-02-29 13:41:19.214 2024-02-29 13:41:19.214 1000 FEE 442904 19501 6112390 2024-02-29 13:41:19.214 2024-02-29 13:41:19.214 9000 TIP 442904 11678 6112391 2024-02-29 13:41:19.371 2024-02-29 13:41:19.371 1000 FEE 442904 20326 6112392 2024-02-29 13:41:19.371 2024-02-29 13:41:19.371 9000 TIP 442904 19906 6112425 2024-02-29 13:41:22.487 2024-02-29 13:41:22.487 1000 FEE 442904 21239 6112426 2024-02-29 13:41:22.487 2024-02-29 13:41:22.487 9000 TIP 442904 15662 6112469 2024-02-29 13:41:32.213 2024-02-29 13:41:32.213 1000 FEE 442904 10270 6112470 2024-02-29 13:41:32.213 2024-02-29 13:41:32.213 9000 TIP 442904 4027 6112495 2024-02-29 13:41:34.857 2024-02-29 13:41:34.857 1000 FEE 442904 844 6112496 2024-02-29 13:41:34.857 2024-02-29 13:41:34.857 9000 TIP 442904 21019 6112499 2024-02-29 13:41:36.14 2024-02-29 13:41:36.14 1000 FEE 442904 7674 6112500 2024-02-29 13:41:36.14 2024-02-29 13:41:36.14 9000 TIP 442904 17798 6112507 2024-02-29 13:41:36.425 2024-02-29 13:41:36.425 1000 FEE 442904 861 6112508 2024-02-29 13:41:36.425 2024-02-29 13:41:36.425 9000 TIP 442904 18209 6112521 2024-02-29 13:41:37.848 2024-02-29 13:41:37.848 1000 FEE 442904 1195 6040850 2024-02-23 08:13:15.451 2024-02-23 08:13:15.451 0 FEE 435940 19601 6040865 2024-02-23 08:16:09.414 2024-02-23 08:16:09.414 1000 FEE 435941 667 6040879 2024-02-23 08:25:36.676 2024-02-23 08:25:36.676 21000 FEE 435944 18116 6040880 2024-02-23 08:25:36.676 2024-02-23 08:25:36.676 35000000 BOOST 435944 20326 6040893 2024-02-23 08:28:27.168 2024-02-23 08:28:27.168 0 FEE 435947 5825 6040894 2024-02-23 08:28:32.407 2024-02-23 08:28:32.407 2100 FEE 435919 20901 6040895 2024-02-23 08:28:32.407 2024-02-23 08:28:32.407 18900 TIP 435919 7766 6040924 2024-02-23 08:39:54.005 2024-02-23 08:39:54.005 2100 FEE 435935 19446 6040925 2024-02-23 08:39:54.005 2024-02-23 08:39:54.005 18900 TIP 435935 21444 6040930 2024-02-23 08:41:11.675 2024-02-23 08:41:11.675 1000 FEE 435952 14472 6040933 2024-02-23 08:42:19.633 2024-02-23 08:42:19.633 1600 FEE 435900 10342 6040934 2024-02-23 08:42:19.633 2024-02-23 08:42:19.633 14400 TIP 435900 18658 6040957 2024-02-23 08:52:25.562 2024-02-23 08:52:25.562 1000 FEE 435956 3396 6040994 2024-02-23 09:08:00.983 2024-02-23 09:08:00.983 1100 FEE 430248 21405 6040995 2024-02-23 09:08:00.983 2024-02-23 09:08:00.983 9900 TIP 430248 9816 6041016 2024-02-23 09:10:55.087 2024-02-23 09:10:55.087 1000 FEE 435580 6537 6041017 2024-02-23 09:10:55.087 2024-02-23 09:10:55.087 9000 TIP 435580 20594 6041026 2024-02-23 09:10:58.435 2024-02-23 09:10:58.435 1000 FEE 435849 18264 6041027 2024-02-23 09:10:58.435 2024-02-23 09:10:58.435 9000 TIP 435849 880 6041064 2024-02-23 09:15:03.572 2024-02-23 09:15:03.572 100 FEE 435718 1650 6041065 2024-02-23 09:15:03.572 2024-02-23 09:15:03.572 900 TIP 435718 21271 6041073 2024-02-23 09:16:07.047 2024-02-23 09:16:07.047 1000 FEE 435550 21379 6041074 2024-02-23 09:16:07.047 2024-02-23 09:16:07.047 9000 TIP 435550 17722 6041079 2024-02-23 09:16:08.897 2024-02-23 09:16:08.897 1000 FEE 435401 20687 6041080 2024-02-23 09:16:08.897 2024-02-23 09:16:08.897 9000 TIP 435401 21214 6041087 2024-02-23 09:16:12.684 2024-02-23 09:16:12.684 1000 FEE 435410 14503 6041088 2024-02-23 09:16:12.684 2024-02-23 09:16:12.684 9000 TIP 435410 986 6041097 2024-02-23 09:16:17.259 2024-02-23 09:16:17.259 1000 FEE 435867 19640 6041098 2024-02-23 09:16:17.259 2024-02-23 09:16:17.259 9000 TIP 435867 18473 6041099 2024-02-23 09:16:18.069 2024-02-23 09:16:18.069 1000 FEE 435866 18403 6041100 2024-02-23 09:16:18.069 2024-02-23 09:16:18.069 9000 TIP 435866 18380 6041133 2024-02-23 09:16:45.077 2024-02-23 09:16:45.077 1000 FEE 435453 15624 6041134 2024-02-23 09:16:45.077 2024-02-23 09:16:45.077 9000 TIP 435453 11075 6041150 2024-02-23 09:17:09.563 2024-02-23 09:17:09.563 1000 FEE 434978 18774 6041151 2024-02-23 09:17:09.563 2024-02-23 09:17:09.563 9000 TIP 434978 2775 6041156 2024-02-23 09:17:25.2 2024-02-23 09:17:25.2 1000 FEE 435523 12049 6041157 2024-02-23 09:17:25.2 2024-02-23 09:17:25.2 9000 TIP 435523 15336 6041172 2024-02-23 09:17:30.689 2024-02-23 09:17:30.689 1000 FEE 435511 1718 6041173 2024-02-23 09:17:30.689 2024-02-23 09:17:30.689 9000 TIP 435511 18945 6041199 2024-02-23 09:22:24.885 2024-02-23 09:22:24.885 1000 FEE 435966 4059 6041207 2024-02-23 09:23:39.254 2024-02-23 09:23:39.254 1100 FEE 435963 21037 6041208 2024-02-23 09:23:39.254 2024-02-23 09:23:39.254 9900 TIP 435963 12911 6041210 2024-02-23 09:24:28.989 2024-02-23 09:24:28.989 2000 FEE 435873 10818 6041211 2024-02-23 09:24:28.989 2024-02-23 09:24:28.989 18000 TIP 435873 17798 6041249 2024-02-23 09:41:21.948 2024-02-23 09:41:21.948 1000 FEE 435974 20084 6041250 2024-02-23 09:41:48.35 2024-02-23 09:41:48.35 1000 FEE 435975 5520 6041264 2024-02-23 09:46:39.331 2024-02-23 09:46:39.331 1000 POLL 435805 9982 6041272 2024-02-23 09:48:39.024 2024-02-23 09:48:39.024 0 FEE 435979 13378 6041275 2024-02-23 09:49:08.237 2024-02-23 09:49:08.237 0 FEE 435979 634 6041276 2024-02-23 09:49:23.803 2024-02-23 09:49:23.803 0 FEE 435980 1291 6041305 2024-02-23 09:58:51.607 2024-02-23 09:58:51.607 5000 FEE 435986 19346 6041310 2024-02-23 10:00:45.735 2024-02-23 10:00:45.735 10000 FEE 435847 18618 6041311 2024-02-23 10:00:45.735 2024-02-23 10:00:45.735 90000 TIP 435847 12220 6041318 2024-02-23 10:00:55.081 2024-02-23 10:00:55.081 1000 FEE 435989 16505 6041322 2024-02-23 10:01:25.881 2024-02-23 10:01:25.881 1000 FEE 435990 5495 6041325 2024-02-23 10:02:24.752 2024-02-23 10:02:24.752 1000 FEE 435992 14213 6041335 2024-02-23 10:05:54.31 2024-02-23 10:05:54.31 6400 FEE 435992 18460 6041336 2024-02-23 10:05:54.31 2024-02-23 10:05:54.31 57600 TIP 435992 19034 6041342 2024-02-23 10:07:50.352 2024-02-23 10:07:50.352 1000 FEE 435997 649 6041343 2024-02-23 10:08:01.864 2024-02-23 10:08:01.864 1100 FEE 435944 1135 6041344 2024-02-23 10:08:01.864 2024-02-23 10:08:01.864 9900 TIP 435944 925 6041368 2024-02-23 10:19:40.445 2024-02-23 10:19:40.445 10000 FEE 436005 946 6041369 2024-02-23 10:19:48.13 2024-02-23 10:19:48.13 100000 FEE 436006 6260 6041381 2024-02-23 10:27:39.709 2024-02-23 10:27:39.709 800 FEE 436001 14295 6041382 2024-02-23 10:27:39.709 2024-02-23 10:27:39.709 7200 TIP 436001 9476 6041390 2024-02-23 10:28:16.553 2024-02-23 10:28:16.553 10000 FEE 436009 16988 6041429 2024-02-23 10:33:38.175 2024-02-23 10:33:38.175 200 FEE 435970 20353 6041430 2024-02-23 10:33:38.175 2024-02-23 10:33:38.175 1800 TIP 435970 10063 6041438 2024-02-23 10:34:51.789 2024-02-23 10:34:51.789 1000 FEE 436013 19531 6041449 2024-02-23 10:38:03.01 2024-02-23 10:38:03.01 200 FEE 435812 4167 6041450 2024-02-23 10:38:03.01 2024-02-23 10:38:03.01 1800 TIP 435812 7766 6041467 2024-02-23 10:41:36.187 2024-02-23 10:41:36.187 0 FEE 436016 18714 6041501 2024-02-23 10:44:57.082 2024-02-23 10:44:57.082 1000 FEE 436020 900 6041535 2024-02-23 10:54:24.147 2024-02-23 10:54:24.147 1000 FEE 436014 9421 6041536 2024-02-23 10:54:24.147 2024-02-23 10:54:24.147 9000 TIP 436014 21457 6041539 2024-02-23 10:55:16.828 2024-02-23 10:55:16.828 100000 FEE 436025 9290 6041540 2024-02-23 10:55:23.528 2024-02-23 10:55:23.528 0 FEE 436021 12516 6041564 2024-02-23 11:01:50.72 2024-02-23 11:01:50.72 1000 FEE 436030 4076 6041570 2024-02-23 11:02:04.762 2024-02-23 11:02:04.762 4000 FEE 435846 16653 6041571 2024-02-23 11:02:04.762 2024-02-23 11:02:04.762 36000 TIP 435846 21371 6041575 2024-02-23 11:02:58.263 2024-02-23 11:02:58.263 4000 FEE 435847 5809 6041576 2024-02-23 11:02:58.263 2024-02-23 11:02:58.263 36000 TIP 435847 16270 6041589 2024-02-23 11:04:00.224 2024-02-23 11:04:00.224 0 FEE 436031 18930 6041593 2024-02-23 11:04:03.155 2024-02-23 11:04:03.155 2100 FEE 435327 19583 6041594 2024-02-23 11:04:03.155 2024-02-23 11:04:03.155 18900 TIP 435327 20129 6041637 2024-02-23 11:17:07.462 2024-02-23 11:17:07.462 1100 FEE 435986 12976 6041638 2024-02-23 11:17:07.462 2024-02-23 11:17:07.462 9900 TIP 435986 3353 6041645 2024-02-23 11:18:00.15 2024-02-23 11:18:00.15 2100 FEE 436032 746 6041646 2024-02-23 11:18:00.15 2024-02-23 11:18:00.15 18900 TIP 436032 12738 6041652 2024-02-23 11:18:27.712 2024-02-23 11:18:27.712 2100 FEE 436019 1213 6041653 2024-02-23 11:18:27.712 2024-02-23 11:18:27.712 18900 TIP 436019 7675 6041654 2024-02-23 11:18:30.849 2024-02-23 11:18:30.849 800 FEE 435924 2367 6041655 2024-02-23 11:18:30.849 2024-02-23 11:18:30.849 7200 TIP 435924 1394 6041666 2024-02-23 11:19:05.625 2024-02-23 11:19:05.625 1600 FEE 435908 17708 6041667 2024-02-23 11:19:05.625 2024-02-23 11:19:05.625 14400 TIP 435908 9551 6041682 2024-02-23 11:20:24.289 2024-02-23 11:20:24.289 4000 FEE 436037 11967 6041683 2024-02-23 11:20:24.289 2024-02-23 11:20:24.289 36000 TIP 436037 14404 6041697 2024-02-23 11:22:47.706 2024-02-23 11:22:47.706 1000 FEE 436041 8472 6041709 2024-02-23 11:25:32.057 2024-02-23 11:25:32.057 10000 FEE 436048 5003 6041727 2024-02-23 11:33:02.931 2024-02-23 11:33:02.931 1000 FEE 436052 19502 6041734 2024-02-23 11:34:12.602 2024-02-23 11:34:12.602 0 FEE 436052 3360 6041736 2024-02-23 11:34:37.147 2024-02-23 11:34:37.147 1000 FEE 436054 11561 6041747 2024-02-23 11:36:18.209 2024-02-23 11:36:18.209 0 FEE 436052 2614 6040851 2024-02-23 08:14:02.226 2024-02-23 08:14:02.226 10000 FEE 435497 2327 6040852 2024-02-23 08:14:02.226 2024-02-23 08:14:02.226 90000 TIP 435497 718 6040907 2024-02-23 08:31:18.658 2024-02-23 08:31:18.658 1000 FEE 435949 18865 6040927 2024-02-23 08:40:25.31 2024-02-23 08:40:25.31 2100 FEE 435697 20201 6040928 2024-02-23 08:40:25.31 2024-02-23 08:40:25.31 18900 TIP 435697 21064 6040942 2024-02-23 08:47:46.297 2024-02-23 08:47:46.297 3200 FEE 435771 13547 6040943 2024-02-23 08:47:46.297 2024-02-23 08:47:46.297 28800 TIP 435771 21357 6040980 2024-02-23 09:01:23.729 2024-02-23 09:01:23.729 1000 FEE 435960 20564 6041006 2024-02-23 09:10:42.17 2024-02-23 09:10:42.17 1000 FEE 435944 12821 6041007 2024-02-23 09:10:42.17 2024-02-23 09:10:42.17 9000 TIP 435944 11498 6041008 2024-02-23 09:10:42.336 2024-02-23 09:10:42.336 1000 FEE 435944 11866 6041009 2024-02-23 09:10:42.336 2024-02-23 09:10:42.336 9000 TIP 435944 16410 6041010 2024-02-23 09:10:42.503 2024-02-23 09:10:42.503 1000 FEE 435944 675 6041011 2024-02-23 09:10:42.503 2024-02-23 09:10:42.503 9000 TIP 435944 10608 6041022 2024-02-23 09:10:56.668 2024-02-23 09:10:56.668 1000 FEE 435848 17091 6041023 2024-02-23 09:10:56.668 2024-02-23 09:10:56.668 9000 TIP 435848 1124 6041032 2024-02-23 09:11:00.361 2024-02-23 09:11:00.361 1000 FEE 435850 14449 6041033 2024-02-23 09:11:00.361 2024-02-23 09:11:00.361 9000 TIP 435850 15367 6041036 2024-02-23 09:11:02.518 2024-02-23 09:11:02.518 1000 FEE 435629 20500 6041037 2024-02-23 09:11:02.518 2024-02-23 09:11:02.518 9000 TIP 435629 1478 6041041 2024-02-23 09:11:03.946 2024-02-23 09:11:03.946 1000 FEE 435963 19043 6041042 2024-02-23 09:11:17.139 2024-02-23 09:11:17.139 2100 FEE 435890 19996 6041043 2024-02-23 09:11:17.139 2024-02-23 09:11:17.139 18900 TIP 435890 19199 6041095 2024-02-23 09:16:16.783 2024-02-23 09:16:16.783 1000 FEE 435557 18829 6041096 2024-02-23 09:16:16.783 2024-02-23 09:16:16.783 9000 TIP 435557 14255 6041200 2024-02-23 09:22:34.52 2024-02-23 09:22:34.52 1000 FEE 435967 1785 6041204 2024-02-23 09:23:00.666 2024-02-23 09:23:00.666 2100 FEE 435956 19863 6041205 2024-02-23 09:23:00.666 2024-02-23 09:23:00.666 18900 TIP 435956 21389 6041233 2024-02-23 09:35:22.738 2024-02-23 09:35:22.738 10000 FEE 435967 18507 6041234 2024-02-23 09:35:22.738 2024-02-23 09:35:22.738 90000 TIP 435967 16149 6041280 2024-02-23 09:50:29.208 2024-02-23 09:50:29.208 1000 FEE 435967 2328 6041281 2024-02-23 09:50:29.208 2024-02-23 09:50:29.208 9000 TIP 435967 4538 6041307 2024-02-23 09:59:42.557 2024-02-23 09:59:42.557 100000 FEE 435987 5978 6041379 2024-02-23 10:27:20.317 2024-02-23 10:27:20.317 0 FEE 428953 16717 6041387 2024-02-23 10:27:40.25 2024-02-23 10:27:40.25 800 FEE 436001 19689 6041388 2024-02-23 10:27:40.25 2024-02-23 10:27:40.25 7200 TIP 436001 16004 6041409 2024-02-23 10:30:24.442 2024-02-23 10:30:24.442 100 FEE 435907 20993 6041410 2024-02-23 10:30:24.442 2024-02-23 10:30:24.442 900 TIP 435907 861 6041411 2024-02-23 10:30:24.865 2024-02-23 10:30:24.865 100 FEE 435907 20964 6041412 2024-02-23 10:30:24.865 2024-02-23 10:30:24.865 900 TIP 435907 21437 6041427 2024-02-23 10:33:36.946 2024-02-23 10:33:36.946 200 FEE 435981 1726 6041428 2024-02-23 10:33:36.946 2024-02-23 10:33:36.946 1800 TIP 435981 1960 6041451 2024-02-23 10:38:18.264 2024-02-23 10:38:18.264 10000 FEE 436016 14385 6041461 2024-02-23 10:40:50.148 2024-02-23 10:40:50.148 100 FEE 436010 15273 6041462 2024-02-23 10:40:50.148 2024-02-23 10:40:50.148 900 TIP 436010 19537 6041478 2024-02-23 10:42:19.737 2024-02-23 10:42:19.737 2100 FEE 397192 21356 6041479 2024-02-23 10:42:19.737 2024-02-23 10:42:19.737 18900 TIP 397192 1007 6041487 2024-02-23 10:44:31.748 2024-02-23 10:44:31.748 2100 FEE 418294 4345 6041488 2024-02-23 10:44:31.748 2024-02-23 10:44:31.748 18900 TIP 418294 17673 6041489 2024-02-23 10:44:33.351 2024-02-23 10:44:33.351 2100 FEE 418294 20802 6041490 2024-02-23 10:44:33.351 2024-02-23 10:44:33.351 18900 TIP 418294 17494 6041491 2024-02-23 10:44:33.487 2024-02-23 10:44:33.487 2100 FEE 418294 16769 6041492 2024-02-23 10:44:33.487 2024-02-23 10:44:33.487 18900 TIP 418294 20969 6041497 2024-02-23 10:44:37.584 2024-02-23 10:44:37.584 2100 FEE 418294 11942 6041498 2024-02-23 10:44:37.584 2024-02-23 10:44:37.584 18900 TIP 418294 652 6041508 2024-02-23 10:45:25.579 2024-02-23 10:45:25.579 0 FEE 436016 2075 6041524 2024-02-23 10:50:21.415 2024-02-23 10:50:21.415 0 FEE 436021 674 6041527 2024-02-23 10:51:04.053 2024-02-23 10:51:04.053 0 FEE 436022 4064 6041534 2024-02-23 10:54:21.538 2024-02-23 10:54:21.538 1000 FEE 436024 775 6041549 2024-02-23 10:59:21.573 2024-02-23 10:59:21.573 1000 POLL 435805 16724 6041595 2024-02-23 11:04:13.888 2024-02-23 11:04:13.888 3200 FEE 436029 663 6041596 2024-02-23 11:04:13.888 2024-02-23 11:04:13.888 28800 TIP 436029 4378 6041603 2024-02-23 11:05:38.947 2024-02-23 11:05:38.947 1000 FEE 436034 20208 6041687 2024-02-23 11:20:45.656 2024-02-23 11:20:45.656 10000 FEE 435764 13798 6041688 2024-02-23 11:20:45.656 2024-02-23 11:20:45.656 90000 TIP 435764 2710 6041704 2024-02-23 11:24:11.206 2024-02-23 11:24:11.206 1000 FEE 436044 15119 6041705 2024-02-23 11:24:45.386 2024-02-23 11:24:45.386 1000 FEE 436045 7827 6041725 2024-02-23 11:32:47.579 2024-02-23 11:32:47.579 10000 FEE 436051 15147 6041743 2024-02-23 11:35:23.51 2024-02-23 11:35:23.51 0 FEE 436052 19690 6041769 2024-02-23 11:41:37.1 2024-02-23 11:41:37.1 1000 FEE 436061 12122 6041772 2024-02-23 11:42:22.007 2024-02-23 11:42:22.007 1000 FEE 436063 891 6041795 2024-02-23 11:45:10.255 2024-02-23 11:45:10.255 100 FEE 436030 19535 6041796 2024-02-23 11:45:10.255 2024-02-23 11:45:10.255 900 TIP 436030 16447 6041803 2024-02-23 11:45:52.686 2024-02-23 11:45:52.686 1600 FEE 435805 18476 6041804 2024-02-23 11:45:52.686 2024-02-23 11:45:52.686 14400 TIP 435805 20636 6041807 2024-02-23 11:46:11.229 2024-02-23 11:46:11.229 100 FEE 436030 17602 6041808 2024-02-23 11:46:11.229 2024-02-23 11:46:11.229 900 TIP 436030 20094 6041813 2024-02-23 11:46:12.237 2024-02-23 11:46:12.237 100 FEE 436030 16309 6041814 2024-02-23 11:46:12.237 2024-02-23 11:46:12.237 900 TIP 436030 15271 6041815 2024-02-23 11:46:12.574 2024-02-23 11:46:12.574 100 FEE 436030 16684 6041816 2024-02-23 11:46:12.574 2024-02-23 11:46:12.574 900 TIP 436030 15560 6041825 2024-02-23 11:47:12.201 2024-02-23 11:47:12.201 1000 FEE 435345 17226 6041826 2024-02-23 11:47:12.201 2024-02-23 11:47:12.201 9000 TIP 435345 21233 6041830 2024-02-23 11:47:34.823 2024-02-23 11:47:34.823 1000 FEE 436062 17316 6041831 2024-02-23 11:47:34.823 2024-02-23 11:47:34.823 9000 TIP 436062 21492 6041861 2024-02-23 11:49:07.244 2024-02-23 11:49:07.244 800 FEE 435910 18372 6041862 2024-02-23 11:49:07.244 2024-02-23 11:49:07.244 7200 TIP 435910 21609 6041878 2024-02-23 11:50:57.569 2024-02-23 11:50:57.569 500 FEE 434279 1008 6041879 2024-02-23 11:50:57.569 2024-02-23 11:50:57.569 4500 TIP 434279 21037 6041896 2024-02-23 11:51:52.478 2024-02-23 11:51:52.478 200 FEE 436009 15049 6041897 2024-02-23 11:51:52.478 2024-02-23 11:51:52.478 1800 TIP 436009 20153 6041909 2024-02-23 11:52:30.781 2024-02-23 11:52:30.781 1000 FEE 436073 3642 6041916 2024-02-23 11:53:28.411 2024-02-23 11:53:28.411 2100 FEE 435981 18507 6040854 2024-02-23 08:14:34.546 2024-02-23 08:14:34.546 200 FEE 435924 1603 6040855 2024-02-23 08:14:34.546 2024-02-23 08:14:34.546 1800 TIP 435924 15226 6040885 2024-02-23 08:26:53.34 2024-02-23 08:26:53.34 4200 FEE 432547 19732 6040886 2024-02-23 08:26:53.34 2024-02-23 08:26:53.34 37800 TIP 432547 20080 6040891 2024-02-23 08:28:10.905 2024-02-23 08:28:10.905 1000000 FEE 435944 19033 6040892 2024-02-23 08:28:10.905 2024-02-23 08:28:10.905 9000000 TIP 435944 14381 6040913 2024-02-23 08:37:03.654 2024-02-23 08:37:03.654 1000 FEE 435950 9353 6040931 2024-02-23 08:41:21.393 2024-02-23 08:41:21.393 1000 FEE 435953 16301 6040954 2024-02-23 08:51:57.564 2024-02-23 08:51:57.564 1000 FEE 435580 1717 6040955 2024-02-23 08:51:57.564 2024-02-23 08:51:57.564 9000 TIP 435580 18809 6040977 2024-02-23 08:59:07.857 2024-02-23 08:59:07.857 1000 FEE 435959 21627 6040982 2024-02-23 09:01:49.111 2024-02-23 09:01:49.111 1600 FEE 435847 2609 6040983 2024-02-23 09:01:49.111 2024-02-23 09:01:49.111 14400 TIP 435847 20045 6041049 2024-02-23 09:12:57.213 2024-02-23 09:12:57.213 200 FEE 435460 19329 6041050 2024-02-23 09:12:57.213 2024-02-23 09:12:57.213 1800 TIP 435460 11329 6041061 2024-02-23 09:14:59.027 2024-02-23 09:14:59.027 100 FEE 435580 658 6041062 2024-02-23 09:14:59.027 2024-02-23 09:14:59.027 900 TIP 435580 16562 6041075 2024-02-23 09:16:07.617 2024-02-23 09:16:07.617 1000 FEE 435408 20802 6041076 2024-02-23 09:16:07.617 2024-02-23 09:16:07.617 9000 TIP 435408 7097 6041081 2024-02-23 09:16:10.286 2024-02-23 09:16:10.286 1000 FEE 435409 3347 6041082 2024-02-23 09:16:10.286 2024-02-23 09:16:10.286 9000 TIP 435409 20502 6041085 2024-02-23 09:16:11.549 2024-02-23 09:16:11.549 1000 FEE 435396 4415 6041086 2024-02-23 09:16:11.549 2024-02-23 09:16:11.549 9000 TIP 435396 929 6041101 2024-02-23 09:16:18.366 2024-02-23 09:16:18.366 1000 FEE 435272 18138 6041102 2024-02-23 09:16:18.366 2024-02-23 09:16:18.366 9000 TIP 435272 19289 6041107 2024-02-23 09:16:22.532 2024-02-23 09:16:22.532 1000 FEE 435446 18641 6041108 2024-02-23 09:16:22.532 2024-02-23 09:16:22.532 9000 TIP 435446 14280 6041135 2024-02-23 09:16:45.906 2024-02-23 09:16:45.906 1000 FEE 435241 13217 6041136 2024-02-23 09:16:45.906 2024-02-23 09:16:45.906 9000 TIP 435241 14906 6041146 2024-02-23 09:17:05.076 2024-02-23 09:17:05.076 1000 FEE 435808 6030 6041147 2024-02-23 09:17:05.076 2024-02-23 09:17:05.076 9000 TIP 435808 12368 6041221 2024-02-23 09:31:10.629 2024-02-23 09:31:10.629 10000 FEE 435970 7966 6041230 2024-02-23 09:35:17.059 2024-02-23 09:35:17.059 1000 FEE 435971 18241 6041235 2024-02-23 09:35:24.589 2024-02-23 09:35:24.589 10000 FEE 435951 9307 6041236 2024-02-23 09:35:24.589 2024-02-23 09:35:24.589 90000 TIP 435951 5306 6041277 2024-02-23 09:49:43.473 2024-02-23 09:49:43.473 1000 FEE 435944 880 6041278 2024-02-23 09:49:43.473 2024-02-23 09:49:43.473 9000 TIP 435944 642 6041312 2024-02-23 10:00:45.952 2024-02-23 10:00:45.952 10000 FEE 435847 19281 6041313 2024-02-23 10:00:45.952 2024-02-23 10:00:45.952 90000 TIP 435847 3360 6041324 2024-02-23 10:02:02.912 2024-02-23 10:02:02.912 10000 FEE 435991 8176 6041332 2024-02-23 10:04:57.208 2024-02-23 10:04:57.208 1000 FEE 435994 2213 6041340 2024-02-23 10:07:32.734 2024-02-23 10:07:32.734 1100 FEE 435971 7983 6041341 2024-02-23 10:07:32.734 2024-02-23 10:07:32.734 9900 TIP 435971 20220 6041383 2024-02-23 10:27:39.878 2024-02-23 10:27:39.878 800 FEE 436001 640 6041384 2024-02-23 10:27:39.878 2024-02-23 10:27:39.878 7200 TIP 436001 18174 6041399 2024-02-23 10:30:20.475 2024-02-23 10:30:20.475 100 FEE 435908 18476 6041400 2024-02-23 10:30:20.475 2024-02-23 10:30:20.475 900 TIP 435908 18274 6041421 2024-02-23 10:33:20.419 2024-02-23 10:33:20.419 10000 FEE 435997 8506 6041422 2024-02-23 10:33:20.419 2024-02-23 10:33:20.419 90000 TIP 435997 19911 6041431 2024-02-23 10:33:58.3 2024-02-23 10:33:58.3 1000 FEE 436011 18736 6041453 2024-02-23 10:39:39.147 2024-02-23 10:39:39.147 2500 FEE 435769 5519 6041454 2024-02-23 10:39:39.147 2024-02-23 10:39:39.147 22500 TIP 435769 1044 6041473 2024-02-23 10:42:14.3 2024-02-23 10:42:14.3 2100 FEE 397192 16442 6041474 2024-02-23 10:42:14.3 2024-02-23 10:42:14.3 18900 TIP 397192 21571 6041477 2024-02-23 10:42:15.505 2024-02-23 10:42:15.505 1000 FEE 436018 2347 6041528 2024-02-23 10:51:30.089 2024-02-23 10:51:30.089 10000 FEE 436023 10273 6041531 2024-02-23 10:53:37.039 2024-02-23 10:53:37.039 0 FEE 436021 2367 6041546 2024-02-23 10:58:03.138 2024-02-23 10:58:03.138 0 FEE 436021 11430 6041556 2024-02-23 11:01:02.127 2024-02-23 11:01:02.127 4000 FEE 435927 9916 6041557 2024-02-23 11:01:02.127 2024-02-23 11:01:02.127 36000 TIP 435927 21571 6041583 2024-02-23 11:03:55.36 2024-02-23 11:03:55.36 2100 FEE 435944 5942 6041584 2024-02-23 11:03:55.36 2024-02-23 11:03:55.36 18900 TIP 435944 5565 6041607 2024-02-23 11:07:52.377 2024-02-23 11:07:52.377 0 FEE 436031 21406 6041616 2024-02-23 11:13:12.778 2024-02-23 11:13:12.778 2500 FEE 435596 9438 6041617 2024-02-23 11:13:12.778 2024-02-23 11:13:12.778 22500 TIP 435596 12277 6041618 2024-02-23 11:13:49.35 2024-02-23 11:13:49.35 10000 FEE 436032 15119 6041619 2024-02-23 11:13:49.35 2024-02-23 11:13:49.35 90000 TIP 436032 1772 6041641 2024-02-23 11:17:18.972 2024-02-23 11:17:18.972 1000 FEE 436031 15336 6041642 2024-02-23 11:17:18.972 2024-02-23 11:17:18.972 9000 TIP 436031 1173 6041672 2024-02-23 11:19:47.66 2024-02-23 11:19:47.66 2500 FEE 435036 17148 6041673 2024-02-23 11:19:47.66 2024-02-23 11:19:47.66 22500 TIP 435036 9275 6041675 2024-02-23 11:20:02.142 2024-02-23 11:20:02.142 1000 FEE 435963 21303 6041676 2024-02-23 11:20:02.142 2024-02-23 11:20:02.142 9000 TIP 435963 7891 6041691 2024-02-23 11:21:20.736 2024-02-23 11:21:20.736 1000 FEE 436040 21228 6041701 2024-02-23 11:23:49.943 2024-02-23 11:23:49.943 2100 FEE 436024 928 6041702 2024-02-23 11:23:49.943 2024-02-23 11:23:49.943 18900 TIP 436024 19034 6041711 2024-02-23 11:26:08.167 2024-02-23 11:26:08.167 4000 FEE 436047 20504 6041712 2024-02-23 11:26:08.167 2024-02-23 11:26:08.167 36000 TIP 436047 17201 6041713 2024-02-23 11:26:09.909 2024-02-23 11:26:09.909 21000 FEE 436049 16351 6041715 2024-02-23 11:27:29.632 2024-02-23 11:27:29.632 1100 FEE 436049 21208 6041716 2024-02-23 11:27:29.632 2024-02-23 11:27:29.632 9900 TIP 436049 18667 6041730 2024-02-23 11:33:25.277 2024-02-23 11:33:25.277 0 FEE 436052 20062 6041731 2024-02-23 11:33:48.673 2024-02-23 11:33:48.673 0 FEE 436052 5794 6041748 2024-02-23 11:36:49.535 2024-02-23 11:36:49.535 1000 FEE 436056 16912 6041749 2024-02-23 11:37:00.265 2024-02-23 11:37:00.265 3000 FEE 435907 21509 6041750 2024-02-23 11:37:00.265 2024-02-23 11:37:00.265 27000 TIP 435907 4314 6041751 2024-02-23 11:37:02.299 2024-02-23 11:37:02.299 3000 FEE 435883 17714 6041752 2024-02-23 11:37:02.299 2024-02-23 11:37:02.299 27000 TIP 435883 5173 6041761 2024-02-23 11:39:06.055 2024-02-23 11:39:06.055 1000 FEE 436060 12976 6041764 2024-02-23 11:39:30.198 2024-02-23 11:39:30.198 4200 FEE 435657 10102 6041765 2024-02-23 11:39:30.198 2024-02-23 11:39:30.198 37800 TIP 435657 17517 6041773 2024-02-23 11:42:29.105 2024-02-23 11:42:29.105 1000 FEE 436064 18306 6041783 2024-02-23 11:45:08.688 2024-02-23 11:45:08.688 100 FEE 436030 635 6041784 2024-02-23 11:45:08.688 2024-02-23 11:45:08.688 900 TIP 436030 20187 6041799 2024-02-23 11:45:10.794 2024-02-23 11:45:10.794 100 FEE 436030 13348 6041800 2024-02-23 11:45:10.794 2024-02-23 11:45:10.794 900 TIP 436030 16684 6040876 2024-02-23 08:25:04.952 2024-02-23 08:25:04.952 1000 STREAM 141924 1471 6111881 2024-02-29 12:33:04.355 2024-02-29 12:33:04.355 1000 STREAM 141924 861 6111898 2024-02-29 12:35:04.36 2024-02-29 12:35:04.36 1000 STREAM 141924 11670 6111916 2024-02-29 12:37:04.376 2024-02-29 12:37:04.376 1000 STREAM 141924 7998 6112206 2024-02-29 13:18:06.628 2024-02-29 13:18:06.628 1000 STREAM 141924 12072 6112540 2024-02-29 13:43:04.891 2024-02-29 13:43:04.891 1000 STREAM 141924 18274 6112566 2024-02-29 13:48:04.921 2024-02-29 13:48:04.921 1000 STREAM 141924 20573 6112577 2024-02-29 13:49:04.918 2024-02-29 13:49:04.918 1000 STREAM 141924 18809 6112599 2024-02-29 13:53:04.934 2024-02-29 13:53:04.934 1000 STREAM 141924 15196 6112606 2024-02-29 13:54:04.915 2024-02-29 13:54:04.915 1000 STREAM 141924 19117 6112640 2024-02-29 13:56:04.925 2024-02-29 13:56:04.925 1000 STREAM 141924 985 6112649 2024-02-29 13:57:04.939 2024-02-29 13:57:04.939 1000 STREAM 141924 8245 6112651 2024-02-29 13:58:04.951 2024-02-29 13:58:04.951 1000 STREAM 141924 16456 6040882 2024-02-23 08:26:26.335 2024-02-23 08:26:26.335 500000 FEE 432322 10096 6040883 2024-02-23 08:26:26.335 2024-02-23 08:26:26.335 4500000 TIP 432322 9 6040889 2024-02-23 08:27:13.542 2024-02-23 08:27:13.542 1000000 FEE 435947 13854 6040921 2024-02-23 08:38:56.773 2024-02-23 08:38:56.773 10000 FEE 435402 703 6040922 2024-02-23 08:38:56.773 2024-02-23 08:38:56.773 90000 TIP 435402 16447 6040969 2024-02-23 08:55:17.764 2024-02-23 08:55:17.764 2100 FEE 435944 6164 6040970 2024-02-23 08:55:17.764 2024-02-23 08:55:17.764 18900 TIP 435944 19153 6041045 2024-02-23 09:12:43.992 2024-02-23 09:12:43.992 200 FEE 435945 19153 6041046 2024-02-23 09:12:43.992 2024-02-23 09:12:43.992 1800 TIP 435945 3342 6041047 2024-02-23 09:12:48.928 2024-02-23 09:12:48.928 200 FEE 435597 19494 6041048 2024-02-23 09:12:48.928 2024-02-23 09:12:48.928 1800 TIP 435597 19966 6041066 2024-02-23 09:15:59.454 2024-02-23 09:15:59.454 1000 FEE 435261 11821 6041067 2024-02-23 09:15:59.454 2024-02-23 09:15:59.454 9000 TIP 435261 19639 6041069 2024-02-23 09:16:03.673 2024-02-23 09:16:03.673 1000 FEE 435520 5776 6041070 2024-02-23 09:16:03.673 2024-02-23 09:16:03.673 9000 TIP 435520 16842 6041071 2024-02-23 09:16:06.641 2024-02-23 09:16:06.641 1000 FEE 435382 18177 6041072 2024-02-23 09:16:06.641 2024-02-23 09:16:06.641 9000 TIP 435382 9275 6041091 2024-02-23 09:16:14.801 2024-02-23 09:16:14.801 1000 FEE 435420 8004 6041092 2024-02-23 09:16:14.801 2024-02-23 09:16:14.801 9000 TIP 435420 777 6041113 2024-02-23 09:16:24.888 2024-02-23 09:16:24.888 1000 FEE 435264 19174 6041114 2024-02-23 09:16:24.888 2024-02-23 09:16:24.888 9000 TIP 435264 8400 6041131 2024-02-23 09:16:41.855 2024-02-23 09:16:41.855 1000 FEE 435699 19638 6041132 2024-02-23 09:16:41.855 2024-02-23 09:16:41.855 9000 TIP 435699 1652 6041164 2024-02-23 09:17:28.441 2024-02-23 09:17:28.441 1000 FEE 435405 2576 6041165 2024-02-23 09:17:28.441 2024-02-23 09:17:28.441 9000 TIP 435405 13527 6041166 2024-02-23 09:17:29.055 2024-02-23 09:17:29.055 1000 FEE 435404 11018 6041167 2024-02-23 09:17:29.055 2024-02-23 09:17:29.055 9000 TIP 435404 3745 6041168 2024-02-23 09:17:29.601 2024-02-23 09:17:29.601 1000 FEE 435393 2176 6041169 2024-02-23 09:17:29.601 2024-02-23 09:17:29.601 9000 TIP 435393 1605 6041170 2024-02-23 09:17:30.151 2024-02-23 09:17:30.151 1000 FEE 435364 7992 6041171 2024-02-23 09:17:30.151 2024-02-23 09:17:30.151 9000 TIP 435364 19016 6041178 2024-02-23 09:17:33.222 2024-02-23 09:17:33.222 1000 FEE 435442 20744 6041179 2024-02-23 09:17:33.222 2024-02-23 09:17:33.222 9000 TIP 435442 1618 6041186 2024-02-23 09:17:42.445 2024-02-23 09:17:42.445 1000 FEE 435666 1890 6041187 2024-02-23 09:17:42.445 2024-02-23 09:17:42.445 9000 TIP 435666 17237 6041192 2024-02-23 09:18:42.411 2024-02-23 09:18:42.411 1000 FEE 435965 5775 6041243 2024-02-23 09:38:29.877 2024-02-23 09:38:29.877 1000 FEE 435973 12097 6041246 2024-02-23 09:40:08.484 2024-02-23 09:40:08.484 2100 FEE 430867 1959 6041247 2024-02-23 09:40:08.484 2024-02-23 09:40:08.484 18900 TIP 430867 12779 6041255 2024-02-23 09:43:43.147 2024-02-23 09:43:43.147 5000 FEE 435944 20306 6041256 2024-02-23 09:43:43.147 2024-02-23 09:43:43.147 45000 TIP 435944 11714 6041283 2024-02-23 09:51:36.555 2024-02-23 09:51:36.555 1000 FEE 435345 5112 6041284 2024-02-23 09:51:36.555 2024-02-23 09:51:36.555 9000 TIP 435345 17944 6041334 2024-02-23 10:05:47.108 2024-02-23 10:05:47.108 1000 FEE 435995 12744 6041354 2024-02-23 10:13:52.728 2024-02-23 10:13:52.728 1000 FEE 436001 15148 6041359 2024-02-23 10:16:38.738 2024-02-23 10:16:38.738 0 FEE 436001 9330 6041360 2024-02-23 10:17:02.507 2024-02-23 10:17:02.507 10000 FEE 436002 20663 6041413 2024-02-23 10:30:25.405 2024-02-23 10:30:25.405 100 FEE 435907 2620 6041414 2024-02-23 10:30:25.405 2024-02-23 10:30:25.405 900 TIP 435907 19886 6041420 2024-02-23 10:33:03.99 2024-02-23 10:33:03.99 1000 FEE 436010 13587 6041425 2024-02-23 10:33:36.043 2024-02-23 10:33:36.043 200 FEE 436002 10554 6041426 2024-02-23 10:33:36.043 2024-02-23 10:33:36.043 1800 TIP 436002 16653 6041434 2024-02-23 10:34:40.946 2024-02-23 10:34:40.946 10000 FEE 436003 2583 6041435 2024-02-23 10:34:40.946 2024-02-23 10:34:40.946 90000 TIP 436003 5708 6041436 2024-02-23 10:34:41.747 2024-02-23 10:34:41.747 10000 FEE 435979 15271 6041437 2024-02-23 10:34:41.747 2024-02-23 10:34:41.747 90000 TIP 435979 19924 6041440 2024-02-23 10:35:03.583 2024-02-23 10:35:03.583 10000 FEE 435998 13767 6041441 2024-02-23 10:35:03.583 2024-02-23 10:35:03.583 90000 TIP 435998 1723 6041443 2024-02-23 10:35:59.391 2024-02-23 10:35:59.391 10000 FEE 436000 634 6041444 2024-02-23 10:35:59.391 2024-02-23 10:35:59.391 90000 TIP 436000 12768 6041459 2024-02-23 10:40:49.719 2024-02-23 10:40:49.719 100 FEE 436010 21019 6041460 2024-02-23 10:40:49.719 2024-02-23 10:40:49.719 900 TIP 436010 19471 6041480 2024-02-23 10:42:26.343 2024-02-23 10:42:26.343 5000 FEE 436012 2639 6041481 2024-02-23 10:42:26.343 2024-02-23 10:42:26.343 45000 TIP 436012 21072 6041512 2024-02-23 10:48:42.713 2024-02-23 10:48:42.713 1100 FEE 436010 627 6041513 2024-02-23 10:48:42.713 2024-02-23 10:48:42.713 9900 TIP 436010 9329 6041519 2024-02-23 10:49:24.97 2024-02-23 10:49:24.97 1100 FEE 435907 17172 6041520 2024-02-23 10:49:24.97 2024-02-23 10:49:24.97 9900 TIP 435907 17091 6041537 2024-02-23 10:54:55.101 2024-02-23 10:54:55.101 0 FEE 436021 2000 6041544 2024-02-23 10:57:22.123 2024-02-23 10:57:22.123 1000 FEE 436026 14465 6041559 2024-02-23 11:01:11.351 2024-02-23 11:01:11.351 0 FEE 436029 8459 6041568 2024-02-23 11:02:03.047 2024-02-23 11:02:03.047 4000 FEE 435851 6030 6041569 2024-02-23 11:02:03.047 2024-02-23 11:02:03.047 36000 TIP 435851 21021 6041580 2024-02-23 11:03:03.116 2024-02-23 11:03:03.116 4000 FEE 435639 1618 6041581 2024-02-23 11:03:03.116 2024-02-23 11:03:03.116 36000 TIP 435639 20657 6041587 2024-02-23 11:03:59.67 2024-02-23 11:03:59.67 2100 FEE 435812 9367 6041588 2024-02-23 11:03:59.67 2024-02-23 11:03:59.67 18900 TIP 435812 15139 6041606 2024-02-23 11:07:46.033 2024-02-23 11:07:46.033 0 FEE 436031 698 6041643 2024-02-23 11:17:40.17 2024-02-23 11:17:40.17 1000 FEE 436025 18923 6041644 2024-02-23 11:17:40.17 2024-02-23 11:17:40.17 9000 TIP 436025 20220 6041650 2024-02-23 11:18:22.799 2024-02-23 11:18:22.799 10000 FEE 436005 17124 6041651 2024-02-23 11:18:22.799 2024-02-23 11:18:22.799 90000 TIP 436005 1105 6041662 2024-02-23 11:18:58.2 2024-02-23 11:18:58.2 1000 FEE 436037 20409 6041663 2024-02-23 11:18:58.399 2024-02-23 11:18:58.399 2100 FEE 435974 8133 6041664 2024-02-23 11:18:58.399 2024-02-23 11:18:58.399 18900 TIP 435974 20745 6041677 2024-02-23 11:20:02.788 2024-02-23 11:20:02.788 1000 FEE 435962 13553 6041678 2024-02-23 11:20:02.788 2024-02-23 11:20:02.788 9000 TIP 435962 17639 6041685 2024-02-23 11:20:28.316 2024-02-23 11:20:28.316 4000 FEE 436033 1236 6041686 2024-02-23 11:20:28.316 2024-02-23 11:20:28.316 36000 TIP 436033 759 6041692 2024-02-23 11:21:21.521 2024-02-23 11:21:21.521 2500 FEE 435877 19836 6041693 2024-02-23 11:21:21.521 2024-02-23 11:21:21.521 22500 TIP 435877 16543 6041728 2024-02-23 11:33:10.114 2024-02-23 11:33:10.114 7700 FEE 436045 20998 6041729 2024-02-23 11:33:10.114 2024-02-23 11:33:10.114 69300 TIP 436045 954 6041745 2024-02-23 11:35:56.188 2024-02-23 11:35:56.188 0 FEE 436052 18714 6041787 2024-02-23 11:45:09.37 2024-02-23 11:45:09.37 100 FEE 436030 18817 6041788 2024-02-23 11:45:09.37 2024-02-23 11:45:09.37 900 TIP 436030 14045 6041829 2024-02-23 11:47:31.825 2024-02-23 11:47:31.825 0 FEE 436064 20980 6040881 2024-02-23 08:26:04.931 2024-02-23 08:26:04.931 1000 STREAM 141924 5160 6040888 2024-02-23 08:27:04.953 2024-02-23 08:27:04.953 1000 STREAM 141924 2061 6040890 2024-02-23 08:28:04.951 2024-02-23 08:28:04.951 1000 STREAM 141924 18897 6111969 2024-02-29 12:45:04.505 2024-02-29 12:45:04.505 1000 STREAM 141924 1845 6112024 2024-02-29 12:59:02.686 2024-02-29 12:59:02.686 1000 STREAM 141924 2583 6040896 2024-02-23 08:29:05.107 2024-02-23 08:29:05.107 1000 STREAM 141924 20647 6111981 2024-02-29 12:48:04.441 2024-02-29 12:48:04.441 1000 STREAM 141924 6594 6111994 2024-02-29 12:51:04.449 2024-02-29 12:51:04.449 1000 STREAM 141924 18873 6040902 2024-02-23 08:30:05.171 2024-02-23 08:30:05.171 1000 STREAM 141924 8242 6040906 2024-02-23 08:31:05.13 2024-02-23 08:31:05.13 1000 STREAM 141924 2681 6040908 2024-02-23 08:32:05.135 2024-02-23 08:32:05.135 1000 STREAM 141924 6310 6040909 2024-02-23 08:33:05.135 2024-02-23 08:33:05.135 1000 STREAM 141924 16670 6040912 2024-02-23 08:36:05.164 2024-02-23 08:36:05.164 1000 STREAM 141924 5444 6040914 2024-02-23 08:37:05.173 2024-02-23 08:37:05.173 1000 STREAM 141924 21138 6040916 2024-02-23 08:38:05.189 2024-02-23 08:38:05.189 1000 STREAM 141924 891 6040923 2024-02-23 08:39:05.198 2024-02-23 08:39:05.198 1000 STREAM 141924 20058 6040935 2024-02-23 08:43:05.21 2024-02-23 08:43:05.21 1000 STREAM 141924 14857 6040937 2024-02-23 08:44:05.225 2024-02-23 08:44:05.225 1000 STREAM 141924 2347 6040938 2024-02-23 08:45:05.246 2024-02-23 08:45:05.246 1000 STREAM 141924 15577 6040944 2024-02-23 08:48:05.281 2024-02-23 08:48:05.281 1000 STREAM 141924 17184 6040945 2024-02-23 08:49:05.276 2024-02-23 08:49:05.276 1000 STREAM 141924 11328 6040956 2024-02-23 08:52:05.278 2024-02-23 08:52:05.278 1000 STREAM 141924 19243 6040958 2024-02-23 08:53:05.282 2024-02-23 08:53:05.282 1000 STREAM 141924 20006 6040968 2024-02-23 08:55:05.282 2024-02-23 08:55:05.282 1000 STREAM 141924 5852 6040972 2024-02-23 08:56:05.291 2024-02-23 08:56:05.291 1000 STREAM 141924 20117 6040974 2024-02-23 08:57:03.288 2024-02-23 08:57:03.288 1000 STREAM 141924 3544 6040975 2024-02-23 08:58:05.302 2024-02-23 08:58:05.302 1000 STREAM 141924 19320 6040976 2024-02-23 08:59:03.299 2024-02-23 08:59:03.299 1000 STREAM 141924 16965 6040978 2024-02-23 09:00:03.343 2024-02-23 09:00:03.343 1000 STREAM 141924 17030 6040986 2024-02-23 09:02:03.359 2024-02-23 09:02:03.359 1000 STREAM 141924 2000 6040987 2024-02-23 09:03:03.361 2024-02-23 09:03:03.361 1000 STREAM 141924 13143 6040988 2024-02-23 09:04:03.359 2024-02-23 09:04:03.359 1000 STREAM 141924 15408 6040993 2024-02-23 09:07:03.382 2024-02-23 09:07:03.382 1000 STREAM 141924 664 6041002 2024-02-23 09:10:03.401 2024-02-23 09:10:03.401 1000 STREAM 141924 11678 6041058 2024-02-23 09:14:03.431 2024-02-23 09:14:03.431 1000 STREAM 141924 633 6041063 2024-02-23 09:15:03.428 2024-02-23 09:15:03.428 1000 STREAM 141924 19126 6041068 2024-02-23 09:16:03.437 2024-02-23 09:16:03.437 1000 STREAM 141924 18396 6041143 2024-02-23 09:17:03.439 2024-02-23 09:17:03.439 1000 STREAM 141924 2514 6041279 2024-02-23 09:50:03.657 2024-02-23 09:50:03.657 1000 STREAM 141924 16532 6041296 2024-02-23 09:56:03.618 2024-02-23 09:56:03.618 1000 STREAM 141924 19142 6111982 2024-02-29 12:49:04.538 2024-02-29 12:49:04.538 1000 STREAM 141924 9078 6112023 2024-02-29 12:58:04.554 2024-02-29 12:58:04.554 1000 STREAM 141924 633 6112027 2024-02-29 13:00:04.57 2024-02-29 13:00:04.57 1000 STREAM 141924 899 6112140 2024-02-29 13:11:04.899 2024-02-29 13:11:04.899 1000 STREAM 141924 19662 6040905 2024-02-23 08:30:08.196 2024-02-23 08:30:08.196 0 FEE 435947 20280 6040952 2024-02-23 08:51:28.811 2024-02-23 08:51:28.811 500 FEE 435657 1620 6040953 2024-02-23 08:51:28.811 2024-02-23 08:51:28.811 4500 TIP 435657 16176 6040984 2024-02-23 09:02:00.787 2024-02-23 09:02:00.787 10100 FEE 435944 18174 6040985 2024-02-23 09:02:00.787 2024-02-23 09:02:00.787 90900 TIP 435944 20603 6040991 2024-02-23 09:06:56.822 2024-02-23 09:06:56.822 2100 FEE 435935 16329 6040992 2024-02-23 09:06:56.822 2024-02-23 09:06:56.822 18900 TIP 435935 20596 6041014 2024-02-23 09:10:53.768 2024-02-23 09:10:53.768 1000 FEE 435741 21062 6041015 2024-02-23 09:10:53.768 2024-02-23 09:10:53.768 9000 TIP 435741 18235 6041018 2024-02-23 09:10:55.536 2024-02-23 09:10:55.536 1000 FEE 435688 15556 6041019 2024-02-23 09:10:55.536 2024-02-23 09:10:55.536 9000 TIP 435688 13599 6041024 2024-02-23 09:10:57.882 2024-02-23 09:10:57.882 1000 FEE 435680 5455 6041025 2024-02-23 09:10:57.882 2024-02-23 09:10:57.882 9000 TIP 435680 19809 6041028 2024-02-23 09:10:59.034 2024-02-23 09:10:59.034 1000 FEE 435770 21441 6041029 2024-02-23 09:10:59.034 2024-02-23 09:10:59.034 9000 TIP 435770 11263 6041039 2024-02-23 09:11:03.598 2024-02-23 09:11:03.598 1000 FEE 435959 21481 6041040 2024-02-23 09:11:03.598 2024-02-23 09:11:03.598 9000 TIP 435959 7587 6041056 2024-02-23 09:13:50.082 2024-02-23 09:13:50.082 1100 FEE 435905 8459 6041057 2024-02-23 09:13:50.082 2024-02-23 09:13:50.082 9900 TIP 435905 15159 6041077 2024-02-23 09:16:08.063 2024-02-23 09:16:08.063 1000 FEE 435378 8796 6041078 2024-02-23 09:16:08.063 2024-02-23 09:16:08.063 9000 TIP 435378 1483 6041089 2024-02-23 09:16:13.23 2024-02-23 09:16:13.23 1000 FEE 435439 3360 6041090 2024-02-23 09:16:13.23 2024-02-23 09:16:13.23 9000 TIP 435439 18909 6041117 2024-02-23 09:16:25.935 2024-02-23 09:16:25.935 1000 FEE 435945 11158 6041118 2024-02-23 09:16:25.935 2024-02-23 09:16:25.935 9000 TIP 435945 4102 6041125 2024-02-23 09:16:36.018 2024-02-23 09:16:36.018 1000 FEE 435217 5728 6041126 2024-02-23 09:16:36.018 2024-02-23 09:16:36.018 9000 TIP 435217 21239 6041127 2024-02-23 09:16:39.864 2024-02-23 09:16:39.864 1000 FEE 435377 20198 6041128 2024-02-23 09:16:39.864 2024-02-23 09:16:39.864 9000 TIP 435377 16350 6041137 2024-02-23 09:16:47.073 2024-02-23 09:16:47.073 1000 FEE 435346 1490 6041138 2024-02-23 09:16:47.073 2024-02-23 09:16:47.073 9000 TIP 435346 18896 6041148 2024-02-23 09:17:07.895 2024-02-23 09:17:07.895 1000 FEE 434791 16769 6041149 2024-02-23 09:17:07.895 2024-02-23 09:17:07.895 9000 TIP 434791 684 6041152 2024-02-23 09:17:12.899 2024-02-23 09:17:12.899 1000 FEE 435314 14688 6041153 2024-02-23 09:17:12.899 2024-02-23 09:17:12.899 9000 TIP 435314 20687 6041215 2024-02-23 09:27:50.813 2024-02-23 09:27:50.813 50000 FEE 435968 14255 6041227 2024-02-23 09:34:55.788 2024-02-23 09:34:55.788 1000 FEE 435909 1316 6041228 2024-02-23 09:34:55.788 2024-02-23 09:34:55.788 9000 TIP 435909 16289 6041258 2024-02-23 09:44:02.695 2024-02-23 09:44:02.695 1000 FEE 435977 4064 6041265 2024-02-23 09:46:57.334 2024-02-23 09:46:57.334 1000 FEE 435979 15146 6041303 2024-02-23 09:58:09.489 2024-02-23 09:58:09.489 10000 FEE 435741 11220 6041304 2024-02-23 09:58:09.489 2024-02-23 09:58:09.489 90000 TIP 435741 4502 6041314 2024-02-23 10:00:46.28 2024-02-23 10:00:46.28 10000 FEE 435847 1000 6041315 2024-02-23 10:00:46.28 2024-02-23 10:00:46.28 90000 TIP 435847 20439 6041331 2024-02-23 10:04:34.026 2024-02-23 10:04:34.026 0 FEE 435993 18583 6041349 2024-02-23 10:10:32.347 2024-02-23 10:10:32.347 15000 FEE 435999 17722 6041358 2024-02-23 10:16:11.984 2024-02-23 10:16:11.984 0 FEE 436001 1825 6041362 2024-02-23 10:17:59.647 2024-02-23 10:17:59.647 1000 FEE 436003 16598 6041372 2024-02-23 10:21:32.868 2024-02-23 10:21:32.868 21000 FEE 436007 3478 6041391 2024-02-23 10:28:59.631 2024-02-23 10:28:59.631 2500 FEE 435907 20754 6041392 2024-02-23 10:28:59.631 2024-02-23 10:28:59.631 22500 TIP 435907 19147 6041395 2024-02-23 10:30:19.859 2024-02-23 10:30:19.859 100 FEE 435908 20525 6041396 2024-02-23 10:30:19.859 2024-02-23 10:30:19.859 900 TIP 435908 859 6041403 2024-02-23 10:30:21.384 2024-02-23 10:30:21.384 100 FEE 435908 5703 6041404 2024-02-23 10:30:21.384 2024-02-23 10:30:21.384 900 TIP 435908 16556 6041405 2024-02-23 10:30:23.707 2024-02-23 10:30:23.707 100 FEE 435907 21103 6041406 2024-02-23 10:30:23.707 2024-02-23 10:30:23.707 900 TIP 435907 20871 6041407 2024-02-23 10:30:24.057 2024-02-23 10:30:24.057 100 FEE 435907 17891 6041408 2024-02-23 10:30:24.057 2024-02-23 10:30:24.057 900 TIP 435907 21003 6041415 2024-02-23 10:30:52.071 2024-02-23 10:30:52.071 1000000 FEE 435944 895 6041416 2024-02-23 10:30:52.071 2024-02-23 10:30:52.071 9000000 TIP 435944 18930 6041442 2024-02-23 10:35:15.487 2024-02-23 10:35:15.487 1000 FEE 436014 12268 6041446 2024-02-23 10:36:16.235 2024-02-23 10:36:16.235 15000 FEE 436015 11897 6041458 2024-02-23 10:40:44.73 2024-02-23 10:40:44.73 0 FEE 436014 11192 6041466 2024-02-23 10:41:06.428 2024-02-23 10:41:06.428 10000 FEE 436017 8074 6041541 2024-02-23 10:55:58.352 2024-02-23 10:55:58.352 0 FEE 436021 8416 6041577 2024-02-23 11:02:59.721 2024-02-23 11:02:59.721 4000 FEE 435812 1426 6041578 2024-02-23 11:02:59.721 2024-02-23 11:02:59.721 36000 TIP 435812 6537 6041598 2024-02-23 11:04:28.915 2024-02-23 11:04:28.915 21000 FEE 436032 13878 6041626 2024-02-23 11:16:10.47 2024-02-23 11:16:10.47 1100 FEE 436007 18330 6041627 2024-02-23 11:16:10.47 2024-02-23 11:16:10.47 9900 TIP 436007 19890 6041628 2024-02-23 11:16:42.398 2024-02-23 11:16:42.398 2000 FEE 436032 5661 6041629 2024-02-23 11:16:42.398 2024-02-23 11:16:42.398 18000 TIP 436032 20577 6041635 2024-02-23 11:17:04.772 2024-02-23 11:17:04.772 1000 FEE 436030 2402 6041636 2024-02-23 11:17:04.772 2024-02-23 11:17:04.772 9000 TIP 436030 19292 6041660 2024-02-23 11:18:44.49 2024-02-23 11:18:44.49 2100 FEE 436010 20981 6041661 2024-02-23 11:18:44.49 2024-02-23 11:18:44.49 18900 TIP 436010 18359 6041680 2024-02-23 11:20:04.742 2024-02-23 11:20:04.742 1000 FEE 435922 21233 6041681 2024-02-23 11:20:04.742 2024-02-23 11:20:04.742 9000 TIP 435922 11395 6041722 2024-02-23 11:31:54.814 2024-02-23 11:31:54.814 10000 FEE 433721 21072 6041723 2024-02-23 11:31:54.814 2024-02-23 11:31:54.814 90000 TIP 433721 21003 6041737 2024-02-23 11:34:54.705 2024-02-23 11:34:54.705 0 FEE 436052 1454 6041741 2024-02-23 11:35:15.87 2024-02-23 11:35:15.87 4000 FEE 436052 15386 6041742 2024-02-23 11:35:15.87 2024-02-23 11:35:15.87 36000 TIP 436052 21612 6041744 2024-02-23 11:35:26.195 2024-02-23 11:35:26.195 1000 FEE 436055 16842 6041754 2024-02-23 11:37:15.313 2024-02-23 11:37:15.313 21000 FEE 436057 20599 6041759 2024-02-23 11:38:19.388 2024-02-23 11:38:19.388 1000 FEE 436059 2256 6041777 2024-02-23 11:43:54.123 2024-02-23 11:43:54.123 1000 FEE 436065 13587 6041785 2024-02-23 11:45:09.09 2024-02-23 11:45:09.09 100 FEE 436030 7760 6040910 2024-02-23 08:34:05.146 2024-02-23 08:34:05.146 1000 STREAM 141924 17713 6040911 2024-02-23 08:35:05.162 2024-02-23 08:35:05.162 1000 STREAM 141924 20969 6040926 2024-02-23 08:40:05.196 2024-02-23 08:40:05.196 1000 STREAM 141924 11789 6040929 2024-02-23 08:41:05.201 2024-02-23 08:41:05.201 1000 STREAM 141924 21104 6040932 2024-02-23 08:42:05.201 2024-02-23 08:42:05.201 1000 STREAM 141924 7998 6040939 2024-02-23 08:46:05.24 2024-02-23 08:46:05.24 1000 STREAM 141924 16336 6040941 2024-02-23 08:47:05.254 2024-02-23 08:47:05.254 1000 STREAM 141924 20683 6040951 2024-02-23 08:51:05.281 2024-02-23 08:51:05.281 1000 STREAM 141924 1326 6040961 2024-02-23 08:54:05.284 2024-02-23 08:54:05.284 1000 STREAM 141924 19842 6040979 2024-02-23 09:01:03.361 2024-02-23 09:01:03.361 1000 STREAM 141924 3717 6040989 2024-02-23 09:05:03.37 2024-02-23 09:05:03.37 1000 STREAM 141924 2776 6040996 2024-02-23 09:08:03.393 2024-02-23 09:08:03.393 1000 STREAM 141924 19777 6040999 2024-02-23 09:09:03.398 2024-02-23 09:09:03.398 1000 STREAM 141924 2123 6041038 2024-02-23 09:11:03.427 2024-02-23 09:11:03.427 1000 STREAM 141924 2224 6041044 2024-02-23 09:12:03.407 2024-02-23 09:12:03.407 1000 STREAM 141924 6573 6041051 2024-02-23 09:13:03.433 2024-02-23 09:13:03.433 1000 STREAM 141924 6421 6041195 2024-02-23 09:21:03.492 2024-02-23 09:21:03.492 1000 STREAM 141924 14489 6112003 2024-02-29 12:53:02.619 2024-02-29 12:53:02.619 1000 STREAM 141924 11091 6112009 2024-02-29 12:55:02.629 2024-02-29 12:55:02.629 1000 STREAM 141924 2514 6112016 2024-02-29 12:57:02.654 2024-02-29 12:57:02.654 1000 STREAM 141924 16276 6112028 2024-02-29 13:01:02.729 2024-02-29 13:01:02.729 1000 STREAM 141924 11819 6112030 2024-02-29 13:02:04.723 2024-02-29 13:02:04.723 1000 STREAM 141924 18815 6112036 2024-02-29 13:03:02.742 2024-02-29 13:03:02.742 1000 STREAM 141924 18448 6112055 2024-02-29 13:05:02.785 2024-02-29 13:05:02.785 1000 STREAM 141924 19267 6112108 2024-02-29 13:09:04.83 2024-02-29 13:09:04.83 1000 STREAM 141924 15088 6112164 2024-02-29 13:13:04.865 2024-02-29 13:13:04.865 1000 STREAM 141924 14489 6112291 2024-02-29 13:28:05.114 2024-02-29 13:28:05.114 1000 STREAM 141924 17552 6040950 2024-02-23 08:50:02.208 2024-02-23 08:50:02.208 1000 STREAM 141924 690 6112011 2024-02-29 12:55:56.237 2024-02-29 12:55:56.237 10000 FEE 443011 15139 6112012 2024-02-29 12:55:56.237 2024-02-29 12:55:56.237 90000 TIP 443011 20109 6112017 2024-02-29 12:57:04.534 2024-02-29 12:57:04.534 3000 FEE 442931 19911 6112018 2024-02-29 12:57:04.534 2024-02-29 12:57:04.534 27000 TIP 442931 9349 6112022 2024-02-29 12:57:59.414 2024-02-29 12:57:59.414 1000 FEE 443420 21369 6112040 2024-02-29 13:03:11.636 2024-02-29 13:03:11.636 1000 FEE 443426 5825 6112050 2024-02-29 13:04:15.437 2024-02-29 13:04:15.437 1000 FEE 443429 18309 6112056 2024-02-29 13:05:06.048 2024-02-29 13:05:06.048 1000 FEE 443410 20871 6112057 2024-02-29 13:05:06.048 2024-02-29 13:05:06.048 9000 TIP 443410 19259 6112062 2024-02-29 13:05:43.711 2024-02-29 13:05:43.711 2100 FEE 443372 2614 6112063 2024-02-29 13:05:43.711 2024-02-29 13:05:43.711 18900 TIP 443372 13198 6112066 2024-02-29 13:05:50.933 2024-02-29 13:05:50.933 1000 FEE 443351 5444 6112067 2024-02-29 13:05:50.933 2024-02-29 13:05:50.933 9000 TIP 443351 20157 6112082 2024-02-29 13:07:15.31 2024-02-29 13:07:15.31 1000 FEE 443433 11491 6112092 2024-02-29 13:07:54.8 2024-02-29 13:07:54.8 5000 FEE 443338 20646 6112093 2024-02-29 13:07:54.8 2024-02-29 13:07:54.8 45000 TIP 443338 18208 6112112 2024-02-29 13:09:13.528 2024-02-29 13:09:13.528 900 FEE 443122 16329 6112113 2024-02-29 13:09:13.528 2024-02-29 13:09:13.528 8100 TIP 443122 670 6112116 2024-02-29 13:09:17.611 2024-02-29 13:09:17.611 90000 FEE 443122 10342 6112117 2024-02-29 13:09:17.611 2024-02-29 13:09:17.611 810000 TIP 443122 16532 6112156 2024-02-29 13:12:09.021 2024-02-29 13:12:09.021 900 FEE 443160 6149 6112157 2024-02-29 13:12:09.021 2024-02-29 13:12:09.021 8100 TIP 443160 14015 6112158 2024-02-29 13:12:18.933 2024-02-29 13:12:18.933 1000 FEE 443440 15719 6112159 2024-02-29 13:12:28.278 2024-02-29 13:12:28.278 10000 FEE 443038 20655 6112160 2024-02-29 13:12:28.278 2024-02-29 13:12:28.278 90000 TIP 443038 21051 6112179 2024-02-29 13:15:00.21 2024-02-29 13:15:00.21 1000 FEE 443330 21463 6112180 2024-02-29 13:15:00.21 2024-02-29 13:15:00.21 9000 TIP 443330 16350 6112232 2024-02-29 13:21:11.503 2024-02-29 13:21:11.503 1000 FEE 443322 20153 6112233 2024-02-29 13:21:11.503 2024-02-29 13:21:11.503 9000 TIP 443322 12808 6112234 2024-02-29 13:21:12.384 2024-02-29 13:21:12.384 1000 FEE 443456 15119 6112239 2024-02-29 13:21:51.591 2024-02-29 13:21:51.591 1000 POLL 442751 4076 6112297 2024-02-29 13:28:54.302 2024-02-29 13:28:54.302 1000 FEE 442551 20614 6112298 2024-02-29 13:28:54.302 2024-02-29 13:28:54.302 9000 TIP 442551 19888 6112306 2024-02-29 13:30:28.521 2024-02-29 13:30:28.521 5700 FEE 443461 11621 6112307 2024-02-29 13:30:28.521 2024-02-29 13:30:28.521 51300 TIP 443461 2681 6112311 2024-02-29 13:31:18.01 2024-02-29 13:31:18.01 5700 FEE 443197 15806 6112312 2024-02-29 13:31:18.01 2024-02-29 13:31:18.01 51300 TIP 443197 21387 6112347 2024-02-29 13:36:12.491 2024-02-29 13:36:12.491 1000 FEE 443470 20663 6112357 2024-02-29 13:37:11.684 2024-02-29 13:37:11.684 2100 FEE 443334 11996 6112358 2024-02-29 13:37:11.684 2024-02-29 13:37:11.684 18900 TIP 443334 19961 6112371 2024-02-29 13:38:02.251 2024-02-29 13:38:02.251 1000 FEE 443473 9107 6112381 2024-02-29 13:40:06.294 2024-02-29 13:40:06.294 5700 FEE 443463 18392 6112382 2024-02-29 13:40:06.294 2024-02-29 13:40:06.294 51300 TIP 443463 1175 6112388 2024-02-29 13:41:07.275 2024-02-29 13:41:07.275 1000 FEE 443474 17172 6112395 2024-02-29 13:41:19.773 2024-02-29 13:41:19.773 1000 FEE 442904 2961 6112396 2024-02-29 13:41:19.773 2024-02-29 13:41:19.773 9000 TIP 442904 5377 6112399 2024-02-29 13:41:20.287 2024-02-29 13:41:20.287 1000 FEE 442904 21012 6040990 2024-02-23 09:06:01.981 2024-02-23 09:06:01.981 1000 STREAM 141924 20871 6041190 2024-02-23 09:18:02.165 2024-02-23 09:18:02.165 1000 STREAM 141924 9084 6041213 2024-02-23 09:26:02.258 2024-02-23 09:26:02.258 1000 STREAM 141924 1130 6112013 2024-02-29 12:56:04.571 2024-02-29 12:56:04.571 1000 STREAM 141924 18357 6041035 2024-02-23 09:11:01.133 2024-02-23 09:11:01.133 9000 TIP 435902 14169 6041083 2024-02-23 09:16:10.868 2024-02-23 09:16:10.868 1000 FEE 435514 15282 6041084 2024-02-23 09:16:10.868 2024-02-23 09:16:10.868 9000 TIP 435514 10554 6041111 2024-02-23 09:16:24.549 2024-02-23 09:16:24.549 1000 FEE 435597 21585 6041112 2024-02-23 09:16:24.549 2024-02-23 09:16:24.549 9000 TIP 435597 16660 6041119 2024-02-23 09:16:32.003 2024-02-23 09:16:32.003 1000 FEE 435639 10728 6041120 2024-02-23 09:16:32.003 2024-02-23 09:16:32.003 9000 TIP 435639 11263 6041129 2024-02-23 09:16:40.814 2024-02-23 09:16:40.814 1000 FEE 435561 1576 6041130 2024-02-23 09:16:40.814 2024-02-23 09:16:40.814 9000 TIP 435561 21242 6041139 2024-02-23 09:16:49.065 2024-02-23 09:16:49.065 1000 FEE 435217 8926 6041140 2024-02-23 09:16:49.065 2024-02-23 09:16:49.065 9000 TIP 435217 19281 6041158 2024-02-23 09:17:25.821 2024-02-23 09:17:25.821 1000 FEE 435595 18114 6041159 2024-02-23 09:17:25.821 2024-02-23 09:17:25.821 9000 TIP 435595 18736 6041162 2024-02-23 09:17:27.856 2024-02-23 09:17:27.856 1000 FEE 435421 11862 6041163 2024-02-23 09:17:27.856 2024-02-23 09:17:27.856 9000 TIP 435421 17392 6041174 2024-02-23 09:17:32.16 2024-02-23 09:17:32.16 1000 FEE 435367 12821 6041175 2024-02-23 09:17:32.16 2024-02-23 09:17:32.16 9000 TIP 435367 9330 6041176 2024-02-23 09:17:32.796 2024-02-23 09:17:32.796 1000 FEE 435398 4250 6041177 2024-02-23 09:17:32.796 2024-02-23 09:17:32.796 9000 TIP 435398 16769 6041180 2024-02-23 09:17:35.643 2024-02-23 09:17:35.643 1000 FEE 435018 18923 6041181 2024-02-23 09:17:35.643 2024-02-23 09:17:35.643 9000 TIP 435018 3411 6041191 2024-02-23 09:18:41.217 2024-02-23 09:18:41.217 1000 FEE 435964 5757 6041201 2024-02-23 09:22:36.517 2024-02-23 09:22:36.517 2100 FEE 435912 20681 6041202 2024-02-23 09:22:36.517 2024-02-23 09:22:36.517 18900 TIP 435912 19842 6041203 2024-02-23 09:22:42.613 2024-02-23 09:22:42.613 0 FEE 435966 16808 6041231 2024-02-23 09:35:21.596 2024-02-23 09:35:21.596 10000 FEE 435950 14651 6041232 2024-02-23 09:35:21.596 2024-02-23 09:35:21.596 90000 TIP 435950 16354 6041251 2024-02-23 09:41:55.665 2024-02-23 09:41:55.665 0 FEE 435974 20647 6041259 2024-02-23 09:44:40.815 2024-02-23 09:44:40.815 1000 FEE 435978 20251 6041262 2024-02-23 09:46:26.836 2024-02-23 09:46:26.836 5000 FEE 435678 2514 6041263 2024-02-23 09:46:26.836 2024-02-23 09:46:26.836 45000 TIP 435678 19841 6041267 2024-02-23 09:47:03.712 2024-02-23 09:47:03.712 2100 FEE 435847 3979 6041268 2024-02-23 09:47:03.712 2024-02-23 09:47:03.712 18900 TIP 435847 6421 6041292 2024-02-23 09:54:19.174 2024-02-23 09:54:19.174 2100 FEE 435944 21057 6041293 2024-02-23 09:54:19.174 2024-02-23 09:54:19.174 18900 TIP 435944 4802 6041308 2024-02-23 09:59:49.358 2024-02-23 09:59:49.358 150000 FEE 435988 19839 6041316 2024-02-23 10:00:46.526 2024-02-23 10:00:46.526 10000 FEE 435847 10484 6041317 2024-02-23 10:00:46.526 2024-02-23 10:00:46.526 90000 TIP 435847 17162 6041330 2024-02-23 10:04:26.507 2024-02-23 10:04:26.507 1000 FEE 435993 2016 6041338 2024-02-23 10:06:49.324 2024-02-23 10:06:49.324 1000 FEE 435996 1495 6041380 2024-02-23 10:27:25.043 2024-02-23 10:27:25.043 10000 FEE 436008 21455 6041423 2024-02-23 10:33:35.315 2024-02-23 10:33:35.315 200 FEE 436008 21612 6041424 2024-02-23 10:33:35.315 2024-02-23 10:33:35.315 1800 TIP 436008 21291 6041433 2024-02-23 10:34:38.304 2024-02-23 10:34:38.304 1000 FEE 436012 1602 6041471 2024-02-23 10:42:13.534 2024-02-23 10:42:13.534 2100 FEE 397192 9863 6041472 2024-02-23 10:42:13.534 2024-02-23 10:42:13.534 18900 TIP 397192 15139 6041482 2024-02-23 10:42:44.596 2024-02-23 10:42:44.596 1000 FEE 436019 20623 6041495 2024-02-23 10:44:37.429 2024-02-23 10:44:37.429 2100 FEE 418294 828 6041496 2024-02-23 10:44:37.429 2024-02-23 10:44:37.429 18900 TIP 418294 2961 6041514 2024-02-23 10:48:54.795 2024-02-23 10:48:54.795 1000 FEE 436021 20182 6041516 2024-02-23 10:49:11.549 2024-02-23 10:49:11.549 0 FEE 436021 9159 6041521 2024-02-23 10:49:39.668 2024-02-23 10:49:39.668 200 FEE 436014 16059 6041522 2024-02-23 10:49:39.668 2024-02-23 10:49:39.668 1800 TIP 436014 17541 6041547 2024-02-23 10:58:48.955 2024-02-23 10:58:48.955 0 FEE 436021 18051 6041573 2024-02-23 11:02:55.536 2024-02-23 11:02:55.536 4000 FEE 435944 3709 6041574 2024-02-23 11:02:55.536 2024-02-23 11:02:55.536 36000 TIP 435944 13378 6041585 2024-02-23 11:03:59.182 2024-02-23 11:03:59.182 2100 FEE 435847 11866 6041586 2024-02-23 11:03:59.182 2024-02-23 11:03:59.182 18900 TIP 435847 15336 6041602 2024-02-23 11:05:11.963 2024-02-23 11:05:11.963 1000 FEE 436033 8916 6041632 2024-02-23 11:16:59.813 2024-02-23 11:16:59.813 1100 FEE 435988 15484 6041633 2024-02-23 11:16:59.813 2024-02-23 11:16:59.813 9900 TIP 435988 16354 6041639 2024-02-23 11:17:14.106 2024-02-23 11:17:14.106 1000 FEE 436029 14376 6041640 2024-02-23 11:17:14.106 2024-02-23 11:17:14.106 9000 TIP 436029 20981 6041648 2024-02-23 11:18:18.139 2024-02-23 11:18:18.139 2100 FEE 436022 4167 6041649 2024-02-23 11:18:18.139 2024-02-23 11:18:18.139 18900 TIP 436022 1319 6041668 2024-02-23 11:19:06.329 2024-02-23 11:19:06.329 1600 FEE 435907 4459 6041669 2024-02-23 11:19:06.329 2024-02-23 11:19:06.329 14400 TIP 435907 4502 6041674 2024-02-23 11:19:55.307 2024-02-23 11:19:55.307 1000 FEE 436038 17331 6041699 2024-02-23 11:23:19.34 2024-02-23 11:23:19.34 1000 FEE 436042 19902 6041700 2024-02-23 11:23:45.45 2024-02-23 11:23:45.45 1000 FEE 436043 1145 6041708 2024-02-23 11:25:20.758 2024-02-23 11:25:20.758 10000 FEE 436047 21547 6041735 2024-02-23 11:34:21.924 2024-02-23 11:34:21.924 0 FEE 436052 1291 6041775 2024-02-23 11:43:36.766 2024-02-23 11:43:36.766 1100 FEE 436060 4035 6041776 2024-02-23 11:43:36.766 2024-02-23 11:43:36.766 9900 TIP 436060 17522 6041778 2024-02-23 11:44:02.327 2024-02-23 11:44:02.327 0 FEE 436065 18526 6041818 2024-02-23 11:46:16.952 2024-02-23 11:46:16.952 800 FEE 435883 9107 6041819 2024-02-23 11:46:16.952 2024-02-23 11:46:16.952 7200 TIP 435883 6148 6041834 2024-02-23 11:47:43.563 2024-02-23 11:47:43.563 0 FEE 436064 621 6041845 2024-02-23 11:48:40.883 2024-02-23 11:48:40.883 2100 FEE 436053 21599 6041846 2024-02-23 11:48:40.883 2024-02-23 11:48:40.883 18900 TIP 436053 19034 6041847 2024-02-23 11:48:42.526 2024-02-23 11:48:42.526 2100 FEE 436042 12218 6041848 2024-02-23 11:48:42.526 2024-02-23 11:48:42.526 18900 TIP 436042 19952 6041865 2024-02-23 11:49:43.341 2024-02-23 11:49:43.341 1000 FEE 436071 981 6041872 2024-02-23 11:50:11.343 2024-02-23 11:50:11.343 0 FEE 436065 21139 6041873 2024-02-23 11:50:15.653 2024-02-23 11:50:15.653 800 FEE 435914 7979 6041874 2024-02-23 11:50:15.653 2024-02-23 11:50:15.653 7200 TIP 435914 2213 6041884 2024-02-23 11:51:25.488 2024-02-23 11:51:25.488 2100 FEE 436032 10818 6041885 2024-02-23 11:51:25.488 2024-02-23 11:51:25.488 18900 TIP 436032 20778 6041886 2024-02-23 11:51:26.982 2024-02-23 11:51:26.982 2100 FEE 436023 19174 6041887 2024-02-23 11:51:26.982 2024-02-23 11:51:26.982 18900 TIP 436023 11590 6041905 2024-02-23 11:52:12.673 2024-02-23 11:52:12.673 2100 FEE 435988 9916 6041906 2024-02-23 11:52:12.673 2024-02-23 11:52:12.673 18900 TIP 435988 19142 6041918 2024-02-23 11:53:32.731 2024-02-23 11:53:32.731 1000 FEE 435944 10698 6041919 2024-02-23 11:53:32.731 2024-02-23 11:53:32.731 9000 TIP 435944 18618 6041931 2024-02-23 11:54:05.708 2024-02-23 11:54:05.708 4000 FEE 436064 656 6041932 2024-02-23 11:54:05.708 2024-02-23 11:54:05.708 36000 TIP 436064 1273 6041951 2024-02-23 11:56:46.728 2024-02-23 11:56:46.728 1000 FEE 436077 19103 6041959 2024-02-23 11:57:34.855 2024-02-23 11:57:34.855 100 FEE 435999 15690 6041960 2024-02-23 11:57:34.855 2024-02-23 11:57:34.855 900 TIP 435999 9482 6041972 2024-02-23 11:59:47.42 2024-02-23 11:59:47.42 200 FEE 436076 19553 6041193 2024-02-23 09:19:02.354 2024-02-23 09:19:02.354 1000 STREAM 141924 15160 6041212 2024-02-23 09:25:02.37 2024-02-23 09:25:02.37 1000 STREAM 141924 19103 6041216 2024-02-23 09:28:02.375 2024-02-23 09:28:02.375 1000 STREAM 141924 1092 6041219 2024-02-23 09:30:02.386 2024-02-23 09:30:02.386 1000 STREAM 141924 12779 6041223 2024-02-23 09:33:02.386 2024-02-23 09:33:02.386 1000 STREAM 141924 2285 6041229 2024-02-23 09:35:02.431 2024-02-23 09:35:02.431 1000 STREAM 141924 21418 6041237 2024-02-23 09:36:02.422 2024-02-23 09:36:02.422 1000 STREAM 141924 20970 6041252 2024-02-23 09:42:02.457 2024-02-23 09:42:02.457 1000 STREAM 141924 18280 6041261 2024-02-23 09:46:02.467 2024-02-23 09:46:02.467 1000 STREAM 141924 1130 6112094 2024-02-29 13:08:06.695 2024-02-29 13:08:06.695 1000 STREAM 141924 997 6112133 2024-02-29 13:10:02.736 2024-02-29 13:10:02.736 1000 STREAM 141924 16357 6112173 2024-02-29 13:14:04.7 2024-02-29 13:14:04.7 1000 STREAM 141924 18311 6112181 2024-02-29 13:15:02.699 2024-02-29 13:15:02.699 1000 STREAM 141924 683 6112213 2024-02-29 13:19:02.723 2024-02-29 13:19:02.723 1000 STREAM 141924 12160 6112218 2024-02-29 13:20:04.726 2024-02-29 13:20:04.726 1000 STREAM 141924 2010 6112229 2024-02-29 13:21:02.721 2024-02-29 13:21:02.721 1000 STREAM 141924 1064 6112247 2024-02-29 13:23:02.746 2024-02-29 13:23:02.746 1000 STREAM 141924 15484 6112268 2024-02-29 13:26:04.777 2024-02-29 13:26:04.777 1000 STREAM 141924 1209 6112315 2024-02-29 13:32:02.789 2024-02-29 13:32:02.789 1000 STREAM 141924 3504 6112372 2024-02-29 13:38:02.828 2024-02-29 13:38:02.828 1000 STREAM 141924 9476 6112380 2024-02-29 13:40:02.83 2024-02-29 13:40:02.83 1000 STREAM 141924 17147 6112536 2024-02-29 13:42:02.843 2024-02-29 13:42:02.843 1000 STREAM 141924 7818 6112549 2024-02-29 13:44:06.846 2024-02-29 13:44:06.846 1000 STREAM 141924 19815 6112551 2024-02-29 13:45:02.862 2024-02-29 13:45:02.862 1000 STREAM 141924 9261 6041194 2024-02-23 09:20:02.211 2024-02-23 09:20:02.211 1000 STREAM 141924 798 6041198 2024-02-23 09:22:02.205 2024-02-23 09:22:02.205 1000 STREAM 141924 10849 6041209 2024-02-23 09:24:02.239 2024-02-23 09:24:02.239 1000 STREAM 141924 780 6112101 2024-02-29 13:08:21.609 2024-02-29 13:08:21.609 1000 FEE 443434 21493 6112105 2024-02-29 13:08:43.578 2024-02-29 13:08:43.578 0 FEE 443432 2361 6112125 2024-02-29 13:09:35.109 2024-02-29 13:09:35.109 100 FEE 443108 3745 6112126 2024-02-29 13:09:35.109 2024-02-29 13:09:35.109 900 TIP 443108 19821 6112134 2024-02-29 13:10:18.635 2024-02-29 13:10:18.635 10000 FEE 443164 3417 6112135 2024-02-29 13:10:18.635 2024-02-29 13:10:18.635 90000 TIP 443164 21342 6112165 2024-02-29 13:13:16.929 2024-02-29 13:13:16.929 5700 FEE 443440 1006 6112166 2024-02-29 13:13:16.929 2024-02-29 13:13:16.929 51300 TIP 443440 21413 6112167 2024-02-29 13:13:33.938 2024-02-29 13:13:33.938 1000 FEE 443442 17103 6112204 2024-02-29 13:17:48.69 2024-02-29 13:17:48.69 2100 FEE 443272 3347 6112205 2024-02-29 13:17:48.69 2024-02-29 13:17:48.69 18900 TIP 443272 20377 6112230 2024-02-29 13:21:10.627 2024-02-29 13:21:10.627 100 FEE 443083 3544 6112231 2024-02-29 13:21:10.627 2024-02-29 13:21:10.627 900 TIP 443083 16336 6112241 2024-02-29 13:22:34.979 2024-02-29 13:22:34.979 100 FEE 443357 16649 6112242 2024-02-29 13:22:34.979 2024-02-29 13:22:34.979 900 TIP 443357 3360 6112249 2024-02-29 13:23:14.691 2024-02-29 13:23:14.691 10000 FEE 443319 20353 6112250 2024-02-29 13:23:14.691 2024-02-29 13:23:14.691 90000 TIP 443319 1468 6112251 2024-02-29 13:23:59.716 2024-02-29 13:23:59.716 0 FEE 404172 623 6112266 2024-02-29 13:25:56.804 2024-02-29 13:25:56.804 1000 FEE 443431 19622 6112267 2024-02-29 13:25:56.804 2024-02-29 13:25:56.804 9000 TIP 443431 20454 6112283 2024-02-29 13:27:12.097 2024-02-29 13:27:12.097 1000 FEE 440692 21398 6112284 2024-02-29 13:27:12.097 2024-02-29 13:27:12.097 9000 TIP 440692 1141 6112304 2024-02-29 13:30:13.696 2024-02-29 13:30:13.696 5700 FEE 443393 12821 6112305 2024-02-29 13:30:13.696 2024-02-29 13:30:13.696 51300 TIP 443393 17927 6112327 2024-02-29 13:34:22.867 2024-02-29 13:34:22.867 1000 FEE 443469 1209 6112336 2024-02-29 13:34:33.588 2024-02-29 13:34:33.588 500 FEE 443266 811 6112337 2024-02-29 13:34:33.588 2024-02-29 13:34:33.588 4500 TIP 443266 18675 6112344 2024-02-29 13:35:43.802 2024-02-29 13:35:43.802 100 FEE 442313 10536 6112345 2024-02-29 13:35:43.802 2024-02-29 13:35:43.802 900 TIP 442313 21506 6112397 2024-02-29 13:41:19.934 2024-02-29 13:41:19.934 1000 FEE 442904 985 6112398 2024-02-29 13:41:19.934 2024-02-29 13:41:19.934 9000 TIP 442904 17552 6112417 2024-02-29 13:41:21.735 2024-02-29 13:41:21.735 1000 FEE 442904 15617 6112418 2024-02-29 13:41:21.735 2024-02-29 13:41:21.735 9000 TIP 442904 3377 6112423 2024-02-29 13:41:22.349 2024-02-29 13:41:22.349 1000 FEE 442904 13177 6112424 2024-02-29 13:41:22.349 2024-02-29 13:41:22.349 9000 TIP 442904 11561 6112449 2024-02-29 13:41:29.489 2024-02-29 13:41:29.489 1000 FEE 442904 9107 6112450 2024-02-29 13:41:29.489 2024-02-29 13:41:29.489 9000 TIP 442904 21026 6112461 2024-02-29 13:41:30.765 2024-02-29 13:41:30.765 1000 FEE 442904 19151 6112462 2024-02-29 13:41:30.765 2024-02-29 13:41:30.765 9000 TIP 442904 20858 6112473 2024-02-29 13:41:32.536 2024-02-29 13:41:32.536 1000 FEE 442904 1505 6112474 2024-02-29 13:41:32.536 2024-02-29 13:41:32.536 9000 TIP 442904 18735 6112477 2024-02-29 13:41:33.111 2024-02-29 13:41:33.111 1000 FEE 442904 19259 6112478 2024-02-29 13:41:33.111 2024-02-29 13:41:33.111 9000 TIP 442904 1552 6112489 2024-02-29 13:41:34.233 2024-02-29 13:41:34.233 1000 FEE 442904 18500 6112490 2024-02-29 13:41:34.233 2024-02-29 13:41:34.233 9000 TIP 442904 1142 6112493 2024-02-29 13:41:34.652 2024-02-29 13:41:34.652 1000 FEE 442904 20817 6112494 2024-02-29 13:41:34.652 2024-02-29 13:41:34.652 9000 TIP 442904 19909 6112497 2024-02-29 13:41:35.032 2024-02-29 13:41:35.032 1000 FEE 442904 9351 6112498 2024-02-29 13:41:35.032 2024-02-29 13:41:35.032 9000 TIP 442904 6578 6112600 2024-02-29 13:53:17.712 2024-02-29 13:53:17.712 0 FEE 443491 20715 6112604 2024-02-29 13:53:55.458 2024-02-29 13:53:55.458 1000 FEE 443493 19469 6112613 2024-02-29 13:54:54.31 2024-02-29 13:54:54.31 500 FEE 443319 3456 6112614 2024-02-29 13:54:54.31 2024-02-29 13:54:54.31 4500 TIP 443319 650 6041206 2024-02-23 09:23:02.365 2024-02-23 09:23:02.365 1000 STREAM 141924 9906 6041217 2024-02-23 09:29:02.378 2024-02-23 09:29:02.378 1000 STREAM 141924 18932 6041220 2024-02-23 09:31:02.366 2024-02-23 09:31:02.366 1000 STREAM 141924 8508 6041224 2024-02-23 09:34:02.418 2024-02-23 09:34:02.418 1000 STREAM 141924 21451 6041238 2024-02-23 09:37:02.435 2024-02-23 09:37:02.435 1000 STREAM 141924 21600 6041240 2024-02-23 09:38:02.441 2024-02-23 09:38:02.441 1000 STREAM 141924 7998 6041244 2024-02-23 09:39:02.444 2024-02-23 09:39:02.444 1000 STREAM 141924 21022 6041245 2024-02-23 09:40:02.435 2024-02-23 09:40:02.435 1000 STREAM 141924 18460 6041257 2024-02-23 09:44:02.45 2024-02-23 09:44:02.45 1000 STREAM 141924 2029 6041319 2024-02-23 10:01:02.551 2024-02-23 10:01:02.551 1000 STREAM 141924 20757 6041333 2024-02-23 10:05:02.566 2024-02-23 10:05:02.566 1000 STREAM 141924 704 6041337 2024-02-23 10:06:02.571 2024-02-23 10:06:02.571 1000 STREAM 141924 8376 6041348 2024-02-23 10:10:02.6 2024-02-23 10:10:02.6 1000 STREAM 141924 12265 6041353 2024-02-23 10:13:02.605 2024-02-23 10:13:02.605 1000 STREAM 141924 19533 6041361 2024-02-23 10:17:02.592 2024-02-23 10:17:02.592 1000 STREAM 141924 21418 6041363 2024-02-23 10:18:02.623 2024-02-23 10:18:02.623 1000 STREAM 141924 21437 6041370 2024-02-23 10:20:02.642 2024-02-23 10:20:02.642 1000 STREAM 141924 15273 6041374 2024-02-23 10:23:02.658 2024-02-23 10:23:02.658 1000 STREAM 141924 16354 6041375 2024-02-23 10:24:02.666 2024-02-23 10:24:02.666 1000 STREAM 141924 1389 6041376 2024-02-23 10:25:02.682 2024-02-23 10:25:02.682 1000 STREAM 141924 14795 6041377 2024-02-23 10:26:02.694 2024-02-23 10:26:02.694 1000 STREAM 141924 9450 6041378 2024-02-23 10:27:02.669 2024-02-23 10:27:02.669 1000 STREAM 141924 673 6041389 2024-02-23 10:28:02.681 2024-02-23 10:28:02.681 1000 STREAM 141924 11498 6041417 2024-02-23 10:31:02.69 2024-02-23 10:31:02.69 1000 STREAM 141924 17171 6041439 2024-02-23 10:35:02.705 2024-02-23 10:35:02.705 1000 STREAM 141924 19449 6041445 2024-02-23 10:36:02.699 2024-02-23 10:36:02.699 1000 STREAM 141924 15409 6041447 2024-02-23 10:37:02.708 2024-02-23 10:37:02.708 1000 STREAM 141924 3745 6041448 2024-02-23 10:38:02.707 2024-02-23 10:38:02.707 1000 STREAM 141924 910 6041457 2024-02-23 10:40:02.698 2024-02-23 10:40:02.698 1000 STREAM 141924 20464 6041465 2024-02-23 10:41:02.739 2024-02-23 10:41:02.739 1000 STREAM 141924 19863 6041468 2024-02-23 10:42:02.736 2024-02-23 10:42:02.736 1000 STREAM 141924 20826 6041504 2024-02-23 10:45:02.738 2024-02-23 10:45:02.738 1000 STREAM 141924 2213 6041510 2024-02-23 10:47:02.737 2024-02-23 10:47:02.737 1000 STREAM 141924 18518 6041523 2024-02-23 10:50:02.71 2024-02-23 10:50:02.71 1000 STREAM 141924 12959 6041526 2024-02-23 10:51:02.732 2024-02-23 10:51:02.732 1000 STREAM 141924 8080 6041529 2024-02-23 10:52:02.749 2024-02-23 10:52:02.749 1000 STREAM 141924 21493 6041533 2024-02-23 10:54:02.742 2024-02-23 10:54:02.742 1000 STREAM 141924 16347 6041550 2024-02-23 11:00:02.811 2024-02-23 11:00:02.811 1000 STREAM 141924 19322 6041558 2024-02-23 11:01:02.813 2024-02-23 11:01:02.813 1000 STREAM 141924 739 6041567 2024-02-23 11:02:02.82 2024-02-23 11:02:02.82 1000 STREAM 141924 13753 6041579 2024-02-23 11:03:02.792 2024-02-23 11:03:02.792 1000 STREAM 141924 14357 6041599 2024-02-23 11:05:02.81 2024-02-23 11:05:02.81 1000 STREAM 141924 1394 6041604 2024-02-23 11:06:02.816 2024-02-23 11:06:02.816 1000 STREAM 141924 670 6041605 2024-02-23 11:07:02.814 2024-02-23 11:07:02.814 1000 STREAM 141924 21599 6041609 2024-02-23 11:08:02.832 2024-02-23 11:08:02.832 1000 STREAM 141924 18314 6041610 2024-02-23 11:09:02.842 2024-02-23 11:09:02.842 1000 STREAM 141924 3360 6041612 2024-02-23 11:11:02.818 2024-02-23 11:11:02.818 1000 STREAM 141924 1740 6041622 2024-02-23 11:15:02.879 2024-02-23 11:15:02.879 1000 STREAM 141924 21037 6041647 2024-02-23 11:18:02.887 2024-02-23 11:18:02.887 1000 STREAM 141924 20751 6041665 2024-02-23 11:19:02.879 2024-02-23 11:19:02.879 1000 STREAM 141924 20225 6041690 2024-02-23 11:21:02.908 2024-02-23 11:21:02.908 1000 STREAM 141924 6653 6041698 2024-02-23 11:23:02.907 2024-02-23 11:23:02.907 1000 STREAM 141924 20022 6041710 2024-02-23 11:26:02.911 2024-02-23 11:26:02.911 1000 STREAM 141924 8448 6041724 2024-02-23 11:32:02.925 2024-02-23 11:32:02.925 1000 STREAM 141924 18472 6041738 2024-02-23 11:35:02.963 2024-02-23 11:35:02.963 1000 STREAM 141924 12930 6041766 2024-02-23 11:40:02.991 2024-02-23 11:40:02.991 1000 STREAM 141924 16350 6041768 2024-02-23 11:41:03.008 2024-02-23 11:41:03.008 1000 STREAM 141924 9331 6041779 2024-02-23 11:44:03.012 2024-02-23 11:44:03.012 1000 STREAM 141924 13547 6041880 2024-02-23 11:51:03.049 2024-02-23 11:51:03.049 1000 STREAM 141924 802 6041902 2024-02-23 11:52:03.107 2024-02-23 11:52:03.107 1000 STREAM 141924 18658 6041912 2024-02-23 11:53:03.084 2024-02-23 11:53:03.084 1000 STREAM 141924 17321 6041942 2024-02-23 11:55:03.078 2024-02-23 11:55:03.078 1000 STREAM 141924 20840 6041956 2024-02-23 11:57:03.095 2024-02-23 11:57:03.095 1000 STREAM 141924 15732 6041994 2024-02-23 12:04:03.122 2024-02-23 12:04:03.122 1000 STREAM 141924 5746 6041998 2024-02-23 12:05:03.135 2024-02-23 12:05:03.135 1000 STREAM 141924 21573 6042006 2024-02-23 12:07:03.161 2024-02-23 12:07:03.161 1000 STREAM 141924 19235 6042014 2024-02-23 12:11:03.153 2024-02-23 12:11:03.153 1000 STREAM 141924 21281 6042030 2024-02-23 12:13:03.146 2024-02-23 12:13:03.146 1000 STREAM 141924 8080 6042034 2024-02-23 12:14:03.142 2024-02-23 12:14:03.142 1000 STREAM 141924 1012 6042039 2024-02-23 12:16:03.369 2024-02-23 12:16:03.369 1000 STREAM 141924 13097 6042040 2024-02-23 12:17:03.368 2024-02-23 12:17:03.368 1000 STREAM 141924 7992 6042091 2024-02-23 12:25:03.428 2024-02-23 12:25:03.428 1000 STREAM 141924 20964 6042122 2024-02-23 12:29:03.727 2024-02-23 12:29:03.727 1000 STREAM 141924 1519 6042127 2024-02-23 12:30:03.761 2024-02-23 12:30:03.761 1000 STREAM 141924 18923 6042131 2024-02-23 12:32:03.774 2024-02-23 12:32:03.774 1000 STREAM 141924 5759 6042172 2024-02-23 12:39:03.844 2024-02-23 12:39:03.844 1000 STREAM 141924 5637 6042180 2024-02-23 12:40:03.866 2024-02-23 12:40:03.866 1000 STREAM 141924 5828 6042197 2024-02-23 12:42:03.869 2024-02-23 12:42:03.869 1000 STREAM 141924 1425 6042198 2024-02-23 12:43:03.853 2024-02-23 12:43:03.853 1000 STREAM 141924 4633 6042202 2024-02-23 12:44:03.863 2024-02-23 12:44:03.863 1000 STREAM 141924 20754 6042204 2024-02-23 12:45:03.867 2024-02-23 12:45:03.867 1000 STREAM 141924 1585 6042207 2024-02-23 12:46:03.874 2024-02-23 12:46:03.874 1000 STREAM 141924 3506 6042218 2024-02-23 12:48:03.888 2024-02-23 12:48:03.888 1000 STREAM 141924 21369 6042286 2024-02-23 12:49:03.887 2024-02-23 12:49:03.887 1000 STREAM 141924 20642 6042420 2024-02-23 12:50:03.915 2024-02-23 12:50:03.915 1000 STREAM 141924 718 6042568 2024-02-23 12:54:03.941 2024-02-23 12:54:03.941 1000 STREAM 141924 9355 6042579 2024-02-23 12:55:03.958 2024-02-23 12:55:03.958 1000 STREAM 141924 16230 6042585 2024-02-23 12:57:03.954 2024-02-23 12:57:03.954 1000 STREAM 141924 14688 6042603 2024-02-23 12:59:03.958 2024-02-23 12:59:03.958 1000 STREAM 141924 827 6042614 2024-02-23 13:01:04.006 2024-02-23 13:01:04.006 1000 STREAM 141924 18511 6043357 2024-02-23 14:01:04.233 2024-02-23 14:01:04.233 1000 STREAM 141924 16284 6112106 2024-02-29 13:09:01.736 2024-02-29 13:09:01.736 2100 FEE 443434 12356 6112107 2024-02-29 13:09:01.736 2024-02-29 13:09:01.736 18900 TIP 443434 9336 6112129 2024-02-29 13:09:37.188 2024-02-29 13:09:37.188 9000 FEE 443108 1620 6112130 2024-02-29 13:09:37.188 2024-02-29 13:09:37.188 81000 TIP 443108 1549 6112131 2024-02-29 13:09:42.111 2024-02-29 13:09:42.111 90000 FEE 443108 14037 6112132 2024-02-29 13:09:42.111 2024-02-29 13:09:42.111 810000 TIP 443108 21386 6112149 2024-02-29 13:11:15.791 2024-02-29 13:11:15.791 1000 FEE 443288 9350 6112150 2024-02-29 13:11:15.791 2024-02-29 13:11:15.791 9000 TIP 443288 4064 6112191 2024-02-29 13:16:21.891 2024-02-29 13:16:21.891 800 FEE 443399 21061 6112192 2024-02-29 13:16:21.891 2024-02-29 13:16:21.891 7200 TIP 443399 1010 6041214 2024-02-23 09:27:03.507 2024-02-23 09:27:03.507 1000 STREAM 141924 19284 6041222 2024-02-23 09:32:03.548 2024-02-23 09:32:03.548 1000 STREAM 141924 635 6112146 2024-02-29 13:11:07.892 2024-02-29 13:11:07.892 18900 TIP 443349 2330 6112185 2024-02-29 13:15:57.605 2024-02-29 13:15:57.605 800 FEE 443431 4502 6112186 2024-02-29 13:15:57.605 2024-02-29 13:15:57.605 7200 TIP 443431 9517 6112187 2024-02-29 13:16:04.175 2024-02-29 13:16:04.175 1000 FEE 443446 18139 6112196 2024-02-29 13:17:39.989 2024-02-29 13:17:39.989 2100 FEE 443319 708 6112197 2024-02-29 13:17:39.989 2024-02-29 13:17:39.989 18900 TIP 443319 1515 6112214 2024-02-29 13:19:15.096 2024-02-29 13:19:15.096 100 FEE 443058 19511 6112215 2024-02-29 13:19:15.096 2024-02-29 13:19:15.096 900 TIP 443058 21379 6112245 2024-02-29 13:22:59.235 2024-02-29 13:22:59.235 100 FEE 442997 652 6112246 2024-02-29 13:22:59.235 2024-02-29 13:22:59.235 900 TIP 442997 17217 6112262 2024-02-29 13:24:57.579 2024-02-29 13:24:57.579 0 FEE 443455 20464 6112264 2024-02-29 13:25:12.241 2024-02-29 13:25:12.241 1000 FEE 443431 1236 6112265 2024-02-29 13:25:12.241 2024-02-29 13:25:12.241 9000 TIP 443431 16276 6112328 2024-02-29 13:34:26 2024-02-29 13:34:26 1700 FEE 443313 21323 6112329 2024-02-29 13:34:26 2024-02-29 13:34:26 15300 TIP 443313 17415 6112330 2024-02-29 13:34:26.142 2024-02-29 13:34:26.142 1700 FEE 443313 7119 6112331 2024-02-29 13:34:26.142 2024-02-29 13:34:26.142 15300 TIP 443313 1488 6112340 2024-02-29 13:35:14.227 2024-02-29 13:35:14.227 9000 FEE 442298 18556 6112341 2024-02-29 13:35:14.227 2024-02-29 13:35:14.227 81000 TIP 442298 18640 6112348 2024-02-29 13:36:13.96 2024-02-29 13:36:13.96 1700 FEE 443231 21044 6112349 2024-02-29 13:36:13.96 2024-02-29 13:36:13.96 15300 TIP 443231 6515 6112352 2024-02-29 13:36:15.126 2024-02-29 13:36:15.126 1700 FEE 443231 1985 6112353 2024-02-29 13:36:15.126 2024-02-29 13:36:15.126 15300 TIP 443231 20117 6112361 2024-02-29 13:37:24.285 2024-02-29 13:37:24.285 100 FEE 443228 16912 6112362 2024-02-29 13:37:24.285 2024-02-29 13:37:24.285 900 TIP 443228 9329 6112366 2024-02-29 13:37:58.183 2024-02-29 13:37:58.183 1000 FEE 443472 17041 6112367 2024-02-29 13:37:58.287 2024-02-29 13:37:58.287 1700 FEE 443221 19907 6112368 2024-02-29 13:37:58.287 2024-02-29 13:37:58.287 15300 TIP 443221 8173 6112427 2024-02-29 13:41:22.7 2024-02-29 13:41:22.7 1000 FEE 442904 18008 6112428 2024-02-29 13:41:22.7 2024-02-29 13:41:22.7 9000 TIP 442904 4502 6112439 2024-02-29 13:41:25.712 2024-02-29 13:41:25.712 1000 FEE 442904 20710 6112440 2024-02-29 13:41:25.712 2024-02-29 13:41:25.712 9000 TIP 442904 14074 6112481 2024-02-29 13:41:33.333 2024-02-29 13:41:33.333 1000 FEE 442904 17707 6112482 2024-02-29 13:41:33.333 2024-02-29 13:41:33.333 9000 TIP 442904 16353 6112483 2024-02-29 13:41:33.55 2024-02-29 13:41:33.55 1000 FEE 442904 20326 6112484 2024-02-29 13:41:33.55 2024-02-29 13:41:33.55 9000 TIP 442904 2010 6112485 2024-02-29 13:41:33.814 2024-02-29 13:41:33.814 1000 FEE 442904 18784 6112486 2024-02-29 13:41:33.814 2024-02-29 13:41:33.814 9000 TIP 442904 18956 6112501 2024-02-29 13:41:36.145 2024-02-29 13:41:36.145 2000 FEE 442904 20450 6112502 2024-02-29 13:41:36.145 2024-02-29 13:41:36.145 18000 TIP 442904 15148 6112525 2024-02-29 13:41:38.225 2024-02-29 13:41:38.225 1000 FEE 442904 16284 6112526 2024-02-29 13:41:38.225 2024-02-29 13:41:38.225 9000 TIP 442904 20837 6112537 2024-02-29 13:42:15.461 2024-02-29 13:42:15.461 1000 FEE 443475 1609 6112559 2024-02-29 13:47:09.059 2024-02-29 13:47:09.059 1000 FEE 443482 18208 6112590 2024-02-29 13:52:34.108 2024-02-29 13:52:34.108 700 FEE 443487 14381 6112591 2024-02-29 13:52:34.108 2024-02-29 13:52:34.108 6300 TIP 443487 13575 6112597 2024-02-29 13:52:55.874 2024-02-29 13:52:55.874 1000 FEE 443491 4831 6112602 2024-02-29 13:53:41.777 2024-02-29 13:53:41.777 10000 FEE 443486 919 6112603 2024-02-29 13:53:41.777 2024-02-29 13:53:41.777 90000 TIP 443486 15409 6112608 2024-02-29 13:54:28.433 2024-02-29 13:54:28.433 10000 FEE 443496 21067 6112609 2024-02-29 13:54:45.583 2024-02-29 13:54:45.583 500 FEE 443274 14370 6112610 2024-02-29 13:54:45.583 2024-02-29 13:54:45.583 4500 TIP 443274 12268 6112611 2024-02-29 13:54:48.937 2024-02-29 13:54:48.937 500 FEE 442904 7903 6112612 2024-02-29 13:54:48.937 2024-02-29 13:54:48.937 4500 TIP 442904 16341 6112620 2024-02-29 13:55:11.281 2024-02-29 13:55:11.281 500 FEE 443197 21357 6112621 2024-02-29 13:55:11.281 2024-02-29 13:55:11.281 4500 TIP 443197 20137 6112632 2024-02-29 13:55:44.975 2024-02-29 13:55:44.975 500 FEE 442298 18372 6112633 2024-02-29 13:55:44.975 2024-02-29 13:55:44.975 4500 TIP 442298 701 6112635 2024-02-29 13:55:48.702 2024-02-29 13:55:48.702 1000 FEE 442551 1512 6112636 2024-02-29 13:55:48.702 2024-02-29 13:55:48.702 9000 TIP 442551 15549 6112642 2024-02-29 13:56:44.098 2024-02-29 13:56:44.098 5700 FEE 443495 866 6112643 2024-02-29 13:56:44.098 2024-02-29 13:56:44.098 51300 TIP 443495 8289 6112645 2024-02-29 13:56:45.998 2024-02-29 13:56:45.998 800 FEE 443495 8242 6112646 2024-02-29 13:56:45.998 2024-02-29 13:56:45.998 7200 TIP 443495 21532 6112672 2024-02-29 14:00:08.226 2024-02-29 14:00:08.226 1700 FEE 443495 19352 6112673 2024-02-29 14:00:08.226 2024-02-29 14:00:08.226 15300 TIP 443495 20036 6112682 2024-02-29 14:01:57.541 2024-02-29 14:01:57.541 3100 FEE 443399 17275 6112683 2024-02-29 14:01:57.541 2024-02-29 14:01:57.541 27900 TIP 443399 16145 6112690 2024-02-29 14:02:29.213 2024-02-29 14:02:29.213 1000 FEE 443512 807 6112692 2024-02-29 14:02:55.222 2024-02-29 14:02:55.222 1700 FEE 443506 15719 6112693 2024-02-29 14:02:55.222 2024-02-29 14:02:55.222 15300 TIP 443506 10311 6112776 2024-02-29 14:17:04.28 2024-02-29 14:17:04.28 1000 FEE 443534 2519 6112794 2024-02-29 14:19:15.756 2024-02-29 14:19:15.756 100 FEE 443492 12261 6112795 2024-02-29 14:19:15.756 2024-02-29 14:19:15.756 900 TIP 443492 1298 6112800 2024-02-29 14:19:30.31 2024-02-29 14:19:30.31 10000 DONT_LIKE_THIS 443454 14357 6112802 2024-02-29 14:19:51.722 2024-02-29 14:19:51.722 0 FEE 443526 10280 6041248 2024-02-23 09:41:02.168 2024-02-23 09:41:02.168 1000 STREAM 141924 19848 6041266 2024-02-23 09:47:02.294 2024-02-23 09:47:02.294 1000 STREAM 141924 6749 6041274 2024-02-23 09:49:02.324 2024-02-23 09:49:02.324 1000 STREAM 141924 2652 6112163 2024-02-29 13:12:58.028 2024-02-29 13:12:58.028 9000 TIP 443233 9246 6112176 2024-02-29 13:14:33.592 2024-02-29 13:14:33.592 2100 FEE 443423 18830 6112177 2024-02-29 13:14:33.592 2024-02-29 13:14:33.592 18900 TIP 443423 21271 6112189 2024-02-29 13:16:05.724 2024-02-29 13:16:05.724 1000 FEE 443447 10283 6112195 2024-02-29 13:17:25.936 2024-02-29 13:17:25.936 10000 FEE 443450 13782 6112202 2024-02-29 13:17:46.604 2024-02-29 13:17:46.604 100 FEE 443422 12265 6112203 2024-02-29 13:17:46.604 2024-02-29 13:17:46.604 900 TIP 443422 19663 6112207 2024-02-29 13:18:06.873 2024-02-29 13:18:06.873 1600 FEE 443381 7773 6112208 2024-02-29 13:18:06.873 2024-02-29 13:18:06.873 14400 TIP 443381 18321 6112212 2024-02-29 13:18:58.463 2024-02-29 13:18:58.463 1000 FEE 443452 1316 6112222 2024-02-29 13:20:36.796 2024-02-29 13:20:36.796 0 FEE 443445 19033 6112253 2024-02-29 13:24:09.734 2024-02-29 13:24:09.734 1000 FEE 443458 12744 6112289 2024-02-29 13:27:12.631 2024-02-29 13:27:12.631 1000 FEE 440692 6149 6112290 2024-02-29 13:27:12.631 2024-02-29 13:27:12.631 9000 TIP 440692 19785 6112313 2024-02-29 13:31:20.499 2024-02-29 13:31:20.499 9000 FEE 443462 21571 6112321 2024-02-29 13:33:33.456 2024-02-29 13:33:33.456 1000 FEE 443466 2709 6112350 2024-02-29 13:36:14.121 2024-02-29 13:36:14.121 1700 FEE 443231 16126 6112351 2024-02-29 13:36:14.121 2024-02-29 13:36:14.121 15300 TIP 443231 4802 6112374 2024-02-29 13:39:17.902 2024-02-29 13:39:17.902 3200 FEE 443460 20222 6112375 2024-02-29 13:39:17.902 2024-02-29 13:39:17.902 28800 TIP 443460 18663 6112378 2024-02-29 13:40:02.307 2024-02-29 13:40:02.307 5700 FEE 443467 8360 6112379 2024-02-29 13:40:02.307 2024-02-29 13:40:02.307 51300 TIP 443467 5590 6112409 2024-02-29 13:41:20.779 2024-02-29 13:41:20.779 1000 FEE 442904 940 6112410 2024-02-29 13:41:20.779 2024-02-29 13:41:20.779 9000 TIP 442904 19502 6112443 2024-02-29 13:41:26.062 2024-02-29 13:41:26.062 1000 FEE 442904 5195 6112444 2024-02-29 13:41:26.062 2024-02-29 13:41:26.062 9000 TIP 442904 9336 6112445 2024-02-29 13:41:29.147 2024-02-29 13:41:29.147 1000 FEE 442904 12024 6112446 2024-02-29 13:41:29.147 2024-02-29 13:41:29.147 9000 TIP 442904 5978 6112447 2024-02-29 13:41:29.306 2024-02-29 13:41:29.306 1000 FEE 442904 1465 6112448 2024-02-29 13:41:29.306 2024-02-29 13:41:29.306 9000 TIP 442904 20353 6112451 2024-02-29 13:41:29.73 2024-02-29 13:41:29.73 1000 FEE 442904 14370 6112452 2024-02-29 13:41:29.73 2024-02-29 13:41:29.73 9000 TIP 442904 4304 6112459 2024-02-29 13:41:30.55 2024-02-29 13:41:30.55 1000 FEE 442904 21320 6112460 2024-02-29 13:41:30.55 2024-02-29 13:41:30.55 9000 TIP 442904 649 6112475 2024-02-29 13:41:32.785 2024-02-29 13:41:32.785 1000 FEE 442904 9290 6112476 2024-02-29 13:41:32.785 2024-02-29 13:41:32.785 9000 TIP 442904 5069 6112479 2024-02-29 13:41:33.177 2024-02-29 13:41:33.177 1000 FEE 442904 9551 6112480 2024-02-29 13:41:33.177 2024-02-29 13:41:33.177 9000 TIP 442904 19837 6112513 2024-02-29 13:41:37.017 2024-02-29 13:41:37.017 1000 FEE 442904 18930 6112514 2024-02-29 13:41:37.017 2024-02-29 13:41:37.017 9000 TIP 442904 21026 6112546 2024-02-29 13:43:32.002 2024-02-29 13:43:32.002 1700 FEE 443152 6327 6112547 2024-02-29 13:43:32.002 2024-02-29 13:43:32.002 15300 TIP 443152 18114 6112552 2024-02-29 13:45:04.029 2024-02-29 13:45:04.029 1000 FEE 443479 3396 6112587 2024-02-29 13:52:15.644 2024-02-29 13:52:15.644 1700 FEE 443142 16929 6112588 2024-02-29 13:52:15.644 2024-02-29 13:52:15.644 15300 TIP 443142 17094 6112661 2024-02-29 13:58:57.382 2024-02-29 13:58:57.382 2100 FEE 443340 10409 6112662 2024-02-29 13:58:57.382 2024-02-29 13:58:57.382 18900 TIP 443340 15617 6112664 2024-02-29 13:59:26.974 2024-02-29 13:59:26.974 0 FEE 443490 15536 6112680 2024-02-29 14:01:18.833 2024-02-29 14:01:18.833 3300 FEE 443309 15594 6112681 2024-02-29 14:01:18.833 2024-02-29 14:01:18.833 29700 TIP 443309 20799 6112694 2024-02-29 14:02:55.398 2024-02-29 14:02:55.398 1700 FEE 443506 3353 6112695 2024-02-29 14:02:55.398 2024-02-29 14:02:55.398 15300 TIP 443506 616 6112714 2024-02-29 14:06:11.267 2024-02-29 14:06:11.267 0 FEE 443507 1130 6112729 2024-02-29 14:08:44.484 2024-02-29 14:08:44.484 1000 FEE 443521 4128 6112734 2024-02-29 14:09:31.209 2024-02-29 14:09:31.209 1000 FEE 443522 2322 6112735 2024-02-29 14:09:32.805 2024-02-29 14:09:32.805 1000 FEE 443495 1245 6112736 2024-02-29 14:09:32.805 2024-02-29 14:09:32.805 9000 TIP 443495 16704 6112766 2024-02-29 14:15:19.915 2024-02-29 14:15:19.915 0 FEE 443526 5904 6112767 2024-02-29 14:15:22.102 2024-02-29 14:15:22.102 1000 FEE 443530 20901 6112774 2024-02-29 14:17:00.441 2024-02-29 14:17:00.441 1000 FEE 443533 15474 6112788 2024-02-29 14:18:52.867 2024-02-29 14:18:52.867 1000 FEE 437845 18309 6112789 2024-02-29 14:18:52.867 2024-02-29 14:18:52.867 9000 TIP 437845 19841 6112796 2024-02-29 14:19:16.043 2024-02-29 14:19:16.043 900 FEE 443492 10007 6112797 2024-02-29 14:19:16.043 2024-02-29 14:19:16.043 8100 TIP 443492 18005 6112801 2024-02-29 14:19:35.014 2024-02-29 14:19:35.014 1000 FEE 443537 10359 6112814 2024-02-29 14:22:48.474 2024-02-29 14:22:48.474 1100 FEE 443532 19463 6112815 2024-02-29 14:22:48.474 2024-02-29 14:22:48.474 9900 TIP 443532 12072 6112817 2024-02-29 14:23:08.306 2024-02-29 14:23:08.306 1000 FEE 443542 19289 6112824 2024-02-29 14:24:38.553 2024-02-29 14:24:38.553 500 FEE 443538 15521 6112825 2024-02-29 14:24:38.553 2024-02-29 14:24:38.553 4500 TIP 443538 2156 6112828 2024-02-29 14:24:46.385 2024-02-29 14:24:46.385 420000 FEE 443545 20502 6112849 2024-02-29 14:26:37.527 2024-02-29 14:26:37.527 3100 FEE 443272 1141 6112850 2024-02-29 14:26:37.527 2024-02-29 14:26:37.527 27900 TIP 443272 19142 6112870 2024-02-29 14:28:03.903 2024-02-29 14:28:03.903 10000 FEE 443539 19156 6112871 2024-02-29 14:28:03.903 2024-02-29 14:28:03.903 90000 TIP 443539 669 6112898 2024-02-29 14:31:47.673 2024-02-29 14:31:47.673 1000 FEE 443566 629 6112952 2024-02-29 14:35:00.317 2024-02-29 14:35:00.317 1000 FEE 443575 20594 6112960 2024-02-29 14:35:04.122 2024-02-29 14:35:04.122 7700 FEE 443274 629 6112961 2024-02-29 14:35:04.122 2024-02-29 14:35:04.122 69300 TIP 443274 18615 6112986 2024-02-29 14:35:15.115 2024-02-29 14:35:15.115 7700 FEE 443372 2195 6112987 2024-02-29 14:35:15.115 2024-02-29 14:35:15.115 69300 TIP 443372 8385 6113000 2024-02-29 14:35:16.048 2024-02-29 14:35:16.048 7700 FEE 443372 14213 6113001 2024-02-29 14:35:16.048 2024-02-29 14:35:16.048 69300 TIP 443372 11417 6113006 2024-02-29 14:35:16.366 2024-02-29 14:35:16.366 7700 FEE 443372 21391 6113007 2024-02-29 14:35:16.366 2024-02-29 14:35:16.366 69300 TIP 443372 6741 6113020 2024-02-29 14:35:20.621 2024-02-29 14:35:20.621 7700 FEE 443179 891 6113021 2024-02-29 14:35:20.621 2024-02-29 14:35:20.621 69300 TIP 443179 10096 6113034 2024-02-29 14:35:31.025 2024-02-29 14:35:31.025 7700 FEE 443545 19394 6113035 2024-02-29 14:35:31.025 2024-02-29 14:35:31.025 69300 TIP 443545 18008 6041253 2024-02-23 09:43:02.201 2024-02-23 09:43:02.201 1000 STREAM 141924 18909 6041260 2024-02-23 09:45:02.265 2024-02-23 09:45:02.265 1000 STREAM 141924 20585 6041282 2024-02-23 09:51:02.371 2024-02-23 09:51:02.371 1000 STREAM 141924 644 6041287 2024-02-23 09:53:02.409 2024-02-23 09:53:02.409 1000 STREAM 141924 5557 6041294 2024-02-23 09:55:02.469 2024-02-23 09:55:02.469 1000 STREAM 141924 21556 6112188 2024-02-29 13:16:04.896 2024-02-29 13:16:04.896 1000 STREAM 141924 676 6112301 2024-02-29 13:29:04.934 2024-02-29 13:29:04.934 1000 STREAM 141924 16145 6112308 2024-02-29 13:31:05.047 2024-02-29 13:31:05.047 1000 STREAM 141924 10979 6041271 2024-02-23 09:48:03.615 2024-02-23 09:48:03.615 1000 STREAM 141924 6310 6041286 2024-02-23 09:52:03.626 2024-02-23 09:52:03.626 1000 STREAM 141924 13781 6041291 2024-02-23 09:54:03.615 2024-02-23 09:54:03.615 1000 STREAM 141924 760 6112211 2024-02-29 13:18:19.019 2024-02-29 13:18:19.019 1000 FEE 443451 21145 6112220 2024-02-29 13:20:23.988 2024-02-29 13:20:23.988 1000 FEE 443454 10469 6112221 2024-02-29 13:20:24.482 2024-02-29 13:20:24.482 1000 FEE 443455 21492 6112225 2024-02-29 13:21:00.703 2024-02-29 13:21:00.703 2100 FEE 443059 21067 6112226 2024-02-29 13:21:00.703 2024-02-29 13:21:00.703 18900 TIP 443059 18449 6112227 2024-02-29 13:21:01.177 2024-02-29 13:21:01.177 1000 FEE 443312 5852 6112228 2024-02-29 13:21:01.177 2024-02-29 13:21:01.177 9000 TIP 443312 985 6112243 2024-02-29 13:22:43.085 2024-02-29 13:22:43.085 1000 FEE 443296 21469 6112244 2024-02-29 13:22:43.085 2024-02-29 13:22:43.085 9000 TIP 443296 19132 6112248 2024-02-29 13:23:09.646 2024-02-29 13:23:09.646 1000 FEE 443457 3504 6112254 2024-02-29 13:24:37.78 2024-02-29 13:24:37.78 1000 FEE 442313 3656 6112255 2024-02-29 13:24:37.78 2024-02-29 13:24:37.78 9000 TIP 442313 999 6112269 2024-02-29 13:26:15.732 2024-02-29 13:26:15.732 1000 FEE 443459 9036 6112292 2024-02-29 13:28:27.033 2024-02-29 13:28:27.033 1000 FEE 443460 13587 6112299 2024-02-29 13:28:54.595 2024-02-29 13:28:54.595 1000 FEE 442551 11670 6112300 2024-02-29 13:28:54.595 2024-02-29 13:28:54.595 9000 TIP 442551 20738 6112320 2024-02-29 13:33:30.921 2024-02-29 13:33:30.921 1000 FEE 443465 16424 6112322 2024-02-29 13:33:45.384 2024-02-29 13:33:45.384 100000 FEE 443467 18819 6041298 2024-02-23 09:57:02.509 2024-02-23 09:57:02.509 1000 STREAM 141924 11897 6041306 2024-02-23 09:59:02.548 2024-02-23 09:59:02.548 1000 STREAM 141924 4633 6041323 2024-02-23 10:02:02.556 2024-02-23 10:02:02.556 1000 STREAM 141924 19878 6041329 2024-02-23 10:04:02.571 2024-02-23 10:04:02.571 1000 STREAM 141924 5829 6041345 2024-02-23 10:08:02.592 2024-02-23 10:08:02.592 1000 STREAM 141924 2525 6041352 2024-02-23 10:12:02.6 2024-02-23 10:12:02.6 1000 STREAM 141924 1175 6041356 2024-02-23 10:15:02.6 2024-02-23 10:15:02.6 1000 STREAM 141924 13781 6041367 2024-02-23 10:19:02.642 2024-02-23 10:19:02.642 1000 STREAM 141924 738 6041371 2024-02-23 10:21:02.651 2024-02-23 10:21:02.651 1000 STREAM 141924 7558 6041373 2024-02-23 10:22:02.656 2024-02-23 10:22:02.656 1000 STREAM 141924 9290 6041393 2024-02-23 10:29:02.7 2024-02-23 10:29:02.7 1000 STREAM 141924 15337 6041394 2024-02-23 10:30:02.692 2024-02-23 10:30:02.692 1000 STREAM 141924 18409 6041418 2024-02-23 10:32:02.705 2024-02-23 10:32:02.705 1000 STREAM 141924 16354 6041419 2024-02-23 10:33:02.703 2024-02-23 10:33:02.703 1000 STREAM 141924 5761 6041432 2024-02-23 10:34:02.689 2024-02-23 10:34:02.689 1000 STREAM 141924 8059 6041452 2024-02-23 10:39:02.725 2024-02-23 10:39:02.725 1000 STREAM 141924 20276 6041483 2024-02-23 10:43:02.743 2024-02-23 10:43:02.743 1000 STREAM 141924 16660 6041484 2024-02-23 10:44:02.731 2024-02-23 10:44:02.731 1000 STREAM 141924 5794 6041509 2024-02-23 10:46:02.743 2024-02-23 10:46:02.743 1000 STREAM 141924 12736 6041511 2024-02-23 10:48:02.753 2024-02-23 10:48:02.753 1000 STREAM 141924 4079 6041515 2024-02-23 10:49:02.739 2024-02-23 10:49:02.739 1000 STREAM 141924 15732 6041530 2024-02-23 10:53:02.734 2024-02-23 10:53:02.734 1000 STREAM 141924 9342 6041538 2024-02-23 10:55:02.751 2024-02-23 10:55:02.751 1000 STREAM 141924 12024 6041542 2024-02-23 10:56:02.783 2024-02-23 10:56:02.783 1000 STREAM 141924 21444 6041543 2024-02-23 10:57:02.786 2024-02-23 10:57:02.786 1000 STREAM 141924 12368 6041545 2024-02-23 10:58:02.792 2024-02-23 10:58:02.792 1000 STREAM 141924 14791 6041548 2024-02-23 10:59:02.787 2024-02-23 10:59:02.787 1000 STREAM 141924 17568 6041592 2024-02-23 11:04:02.773 2024-02-23 11:04:02.773 1000 STREAM 141924 16929 6041611 2024-02-23 11:10:02.847 2024-02-23 11:10:02.847 1000 STREAM 141924 20450 6041613 2024-02-23 11:12:02.846 2024-02-23 11:12:02.846 1000 STREAM 141924 9418 6041614 2024-02-23 11:13:02.853 2024-02-23 11:13:02.853 1000 STREAM 141924 3342 6041621 2024-02-23 11:14:02.883 2024-02-23 11:14:02.883 1000 STREAM 141924 21541 6041625 2024-02-23 11:16:02.901 2024-02-23 11:16:02.901 1000 STREAM 141924 15560 6041634 2024-02-23 11:17:02.878 2024-02-23 11:17:02.878 1000 STREAM 141924 1354 6041679 2024-02-23 11:20:02.909 2024-02-23 11:20:02.909 1000 STREAM 141924 9552 6041694 2024-02-23 11:22:02.902 2024-02-23 11:22:02.902 1000 STREAM 141924 20433 6041703 2024-02-23 11:24:02.901 2024-02-23 11:24:02.901 1000 STREAM 141924 679 6041706 2024-02-23 11:25:02.892 2024-02-23 11:25:02.892 1000 STREAM 141924 20436 6041714 2024-02-23 11:27:02.919 2024-02-23 11:27:02.919 1000 STREAM 141924 18897 6041718 2024-02-23 11:28:02.925 2024-02-23 11:28:02.925 1000 STREAM 141924 661 6041719 2024-02-23 11:29:02.933 2024-02-23 11:29:02.933 1000 STREAM 141924 760 6041720 2024-02-23 11:30:02.93 2024-02-23 11:30:02.93 1000 STREAM 141924 19446 6041721 2024-02-23 11:31:02.939 2024-02-23 11:31:02.939 1000 STREAM 141924 18865 6041726 2024-02-23 11:33:02.932 2024-02-23 11:33:02.932 1000 STREAM 141924 1130 6041732 2024-02-23 11:34:02.943 2024-02-23 11:34:02.943 1000 STREAM 141924 10862 6041746 2024-02-23 11:36:02.96 2024-02-23 11:36:02.96 1000 STREAM 141924 16988 6041753 2024-02-23 11:37:02.969 2024-02-23 11:37:02.969 1000 STREAM 141924 1801 6041757 2024-02-23 11:38:03.039 2024-02-23 11:38:03.039 1000 STREAM 141924 14074 6041760 2024-02-23 11:39:02.939 2024-02-23 11:39:02.939 1000 STREAM 141924 9363 6041771 2024-02-23 11:42:03.004 2024-02-23 11:42:03.004 1000 STREAM 141924 3417 6041774 2024-02-23 11:43:03.006 2024-02-23 11:43:03.006 1000 STREAM 141924 4079 6041780 2024-02-23 11:45:03.026 2024-02-23 11:45:03.026 1000 STREAM 141924 4313 6041805 2024-02-23 11:46:03.023 2024-02-23 11:46:03.023 1000 STREAM 141924 20614 6041824 2024-02-23 11:47:03.034 2024-02-23 11:47:03.034 1000 STREAM 141924 6616 6041837 2024-02-23 11:48:03.035 2024-02-23 11:48:03.035 1000 STREAM 141924 10611 6041858 2024-02-23 11:49:03.053 2024-02-23 11:49:03.053 1000 STREAM 141924 18068 6041871 2024-02-23 11:50:03.056 2024-02-23 11:50:03.056 1000 STREAM 141924 802 6041928 2024-02-23 11:54:03.085 2024-02-23 11:54:03.085 1000 STREAM 141924 18630 6041947 2024-02-23 11:56:03.094 2024-02-23 11:56:03.094 1000 STREAM 141924 14503 6041961 2024-02-23 11:58:03.105 2024-02-23 11:58:03.105 1000 STREAM 141924 7916 6041968 2024-02-23 11:59:03.121 2024-02-23 11:59:03.121 1000 STREAM 141924 13987 6041976 2024-02-23 12:00:03.135 2024-02-23 12:00:03.135 1000 STREAM 141924 12911 6041984 2024-02-23 12:01:03.123 2024-02-23 12:01:03.123 1000 STREAM 141924 5128 6041988 2024-02-23 12:02:03.118 2024-02-23 12:02:03.118 1000 STREAM 141924 12951 6041991 2024-02-23 12:03:03.118 2024-02-23 12:03:03.118 1000 STREAM 141924 1628 6042001 2024-02-23 12:06:03.189 2024-02-23 12:06:03.189 1000 STREAM 141924 9921 6042007 2024-02-23 12:08:03.161 2024-02-23 12:08:03.161 1000 STREAM 141924 21405 6042008 2024-02-23 12:09:03.154 2024-02-23 12:09:03.154 1000 STREAM 141924 5538 6042011 2024-02-23 12:10:03.154 2024-02-23 12:10:03.154 1000 STREAM 141924 1890 6042022 2024-02-23 12:12:03.156 2024-02-23 12:12:03.156 1000 STREAM 141924 1697 6042045 2024-02-23 12:18:03.365 2024-02-23 12:18:03.365 1000 STREAM 141924 4259 6112303 2024-02-29 13:30:05.143 2024-02-29 13:30:05.143 1000 STREAM 141924 1618 6041302 2024-02-23 09:58:03.324 2024-02-23 09:58:03.324 1000 STREAM 141924 7654 6041309 2024-02-23 10:00:03.486 2024-02-23 10:00:03.486 1000 STREAM 141924 21603 6041339 2024-02-23 10:07:03.537 2024-02-23 10:07:03.537 1000 STREAM 141924 3347 6041355 2024-02-23 10:14:03.595 2024-02-23 10:14:03.595 1000 STREAM 141924 20424 6041357 2024-02-23 10:16:03.616 2024-02-23 10:16:03.616 1000 STREAM 141924 18231 6112319 2024-02-29 13:33:05.056 2024-02-29 13:33:05.056 1000 STREAM 141924 1745 6112339 2024-02-29 13:35:05.06 2024-02-29 13:35:05.06 1000 STREAM 141924 985 6112356 2024-02-29 13:37:05.074 2024-02-29 13:37:05.074 1000 STREAM 141924 12738 6112373 2024-02-29 13:39:05.087 2024-02-29 13:39:05.087 1000 STREAM 141924 2204 6041326 2024-02-23 10:03:03.488 2024-02-23 10:03:03.488 1000 STREAM 141924 713 6041347 2024-02-23 10:09:03.561 2024-02-23 10:09:03.561 1000 STREAM 141924 12122 6041350 2024-02-23 10:11:03.568 2024-02-23 10:11:03.568 1000 STREAM 141924 19446 6112323 2024-02-29 13:33:54.709 2024-02-29 13:33:54.709 1000 FEE 443468 9418 6112325 2024-02-29 13:34:14.821 2024-02-29 13:34:14.821 10000 FEE 443319 12483 6112326 2024-02-29 13:34:14.821 2024-02-29 13:34:14.821 90000 TIP 443319 21446 6112334 2024-02-29 13:34:28.262 2024-02-29 13:34:28.262 100 FEE 443364 848 6112335 2024-02-29 13:34:28.262 2024-02-29 13:34:28.262 900 TIP 443364 3347 6112342 2024-02-29 13:35:34.536 2024-02-29 13:35:34.536 90000 FEE 443197 624 6112343 2024-02-29 13:35:34.536 2024-02-29 13:35:34.536 810000 TIP 443197 20180 6112369 2024-02-29 13:37:58.45 2024-02-29 13:37:58.45 1700 FEE 443221 9242 6112370 2024-02-29 13:37:58.45 2024-02-29 13:37:58.45 15300 TIP 443221 17517 6112376 2024-02-29 13:39:30.492 2024-02-29 13:39:30.492 10000 FEE 443467 21577 6112377 2024-02-29 13:39:30.492 2024-02-29 13:39:30.492 90000 TIP 443467 20969 6112393 2024-02-29 13:41:19.56 2024-02-29 13:41:19.56 1000 FEE 442904 848 6112394 2024-02-29 13:41:19.56 2024-02-29 13:41:19.56 9000 TIP 442904 6382 6112441 2024-02-29 13:41:25.87 2024-02-29 13:41:25.87 1000 FEE 442904 21417 6112442 2024-02-29 13:41:25.87 2024-02-29 13:41:25.87 9000 TIP 442904 8498 6112453 2024-02-29 13:41:29.965 2024-02-29 13:41:29.965 1000 FEE 442904 15577 6112454 2024-02-29 13:41:29.965 2024-02-29 13:41:29.965 9000 TIP 442904 1433 6112465 2024-02-29 13:41:32.139 2024-02-29 13:41:32.139 4000 FEE 442904 17446 6112466 2024-02-29 13:41:32.139 2024-02-29 13:41:32.139 36000 TIP 442904 17109 6112471 2024-02-29 13:41:32.339 2024-02-29 13:41:32.339 1000 FEE 442904 16754 6112472 2024-02-29 13:41:32.339 2024-02-29 13:41:32.339 9000 TIP 442904 20906 6112505 2024-02-29 13:41:36.283 2024-02-29 13:41:36.283 1000 FEE 442904 15474 6112506 2024-02-29 13:41:36.283 2024-02-29 13:41:36.283 9000 TIP 442904 5942 6112529 2024-02-29 13:41:40.176 2024-02-29 13:41:40.176 1000 FEE 442904 635 6112530 2024-02-29 13:41:40.176 2024-02-29 13:41:40.176 9000 TIP 442904 5557 6112531 2024-02-29 13:41:40.246 2024-02-29 13:41:40.246 1000 FEE 442904 4763 6112532 2024-02-29 13:41:40.246 2024-02-29 13:41:40.246 9000 TIP 442904 2077 6112538 2024-02-29 13:42:36.006 2024-02-29 13:42:36.006 2100 FEE 443274 676 6112539 2024-02-29 13:42:36.006 2024-02-29 13:42:36.006 18900 TIP 443274 993 6112565 2024-02-29 13:48:01.373 2024-02-29 13:48:01.373 1000 FEE 443484 17446 6112571 2024-02-29 13:48:28.629 2024-02-29 13:48:28.629 10000 FEE 443477 15161 6112572 2024-02-29 13:48:28.629 2024-02-29 13:48:28.629 90000 TIP 443477 4128 6112576 2024-02-29 13:48:54.806 2024-02-29 13:48:54.806 10000 FEE 443486 1141 6112584 2024-02-29 13:52:13.811 2024-02-29 13:52:13.811 1000 FEE 443488 11999 6112589 2024-02-29 13:52:22.694 2024-02-29 13:52:22.694 21000 FEE 443489 18219 6112592 2024-02-29 13:52:36.357 2024-02-29 13:52:36.357 100000 FEE 443490 18336 6112615 2024-02-29 13:54:58.389 2024-02-29 13:54:58.389 500 FEE 443272 6594 6112616 2024-02-29 13:54:58.389 2024-02-29 13:54:58.389 4500 TIP 443272 21437 6112617 2024-02-29 13:55:02.827 2024-02-29 13:55:02.827 500 FEE 442931 8385 6112618 2024-02-29 13:55:02.827 2024-02-29 13:55:02.827 4500 TIP 442931 20337 6112626 2024-02-29 13:55:29.679 2024-02-29 13:55:29.679 27900 FEE 443339 13927 6112627 2024-02-29 13:55:29.679 2024-02-29 13:55:29.679 251100 TIP 443339 14169 6112638 2024-02-29 13:55:53.152 2024-02-29 13:55:53.152 1600 FEE 443490 11515 6112639 2024-02-29 13:55:53.152 2024-02-29 13:55:53.152 14400 TIP 443490 5590 6112666 2024-02-29 13:59:41.826 2024-02-29 13:59:41.826 0 FEE 443490 16747 6112674 2024-02-29 14:00:19.501 2024-02-29 14:00:19.501 3100 FEE 443396 12188 6112675 2024-02-29 14:00:19.501 2024-02-29 14:00:19.501 27900 TIP 443396 19031 6112703 2024-02-29 14:04:01.656 2024-02-29 14:04:01.656 3400 FEE 443197 16177 6112704 2024-02-29 14:04:01.656 2024-02-29 14:04:01.656 30600 TIP 443197 18862 6112707 2024-02-29 14:04:26.125 2024-02-29 14:04:26.125 1000 FEE 443516 1817 6112721 2024-02-29 14:08:01.141 2024-02-29 14:08:01.141 1000 FEE 443519 711 6112722 2024-02-29 14:08:01.141 2024-02-29 14:08:01.141 9000 TIP 443519 623 6112726 2024-02-29 14:08:20.493 2024-02-29 14:08:20.493 2100 FEE 443339 1751 6112727 2024-02-29 14:08:20.493 2024-02-29 14:08:20.493 18900 TIP 443339 1000 6112741 2024-02-29 14:11:22.365 2024-02-29 14:11:22.365 21000 FEE 443524 9494 6112746 2024-02-29 14:12:04.797 2024-02-29 14:12:04.797 0 FEE 443524 19235 6112756 2024-02-29 14:12:43.009 2024-02-29 14:12:43.009 1000 FEE 443422 4802 6112757 2024-02-29 14:12:43.009 2024-02-29 14:12:43.009 9000 TIP 443422 20090 6112758 2024-02-29 14:12:58.53 2024-02-29 14:12:58.53 100 FEE 443425 19633 6112759 2024-02-29 14:12:58.53 2024-02-29 14:12:58.53 900 TIP 443425 21072 6112763 2024-02-29 14:14:55.423 2024-02-29 14:14:55.423 256000 FEE 443528 1354 6112783 2024-02-29 14:18:20.545 2024-02-29 14:18:20.545 1000 FEE 443536 15160 6112791 2024-02-29 14:18:59.618 2024-02-29 14:18:59.618 1000 FEE 443491 19458 6112792 2024-02-29 14:18:59.618 2024-02-29 14:18:59.618 9000 TIP 443491 18231 6041582 2024-02-23 11:03:18.693 2024-02-23 11:03:18.693 10000 FEE 436031 2293 6041600 2024-02-23 11:05:04.976 2024-02-23 11:05:04.976 10000 FEE 435812 17984 6041601 2024-02-23 11:05:04.976 2024-02-23 11:05:04.976 90000 TIP 435812 14015 6041608 2024-02-23 11:07:59.035 2024-02-23 11:07:59.035 0 FEE 436031 20190 6041623 2024-02-23 11:15:51.808 2024-02-23 11:15:51.808 2500 FEE 436023 1221 6041624 2024-02-23 11:15:51.808 2024-02-23 11:15:51.808 22500 TIP 436023 18837 6041656 2024-02-23 11:18:32.035 2024-02-23 11:18:32.035 2100 FEE 436016 17212 6041657 2024-02-23 11:18:32.035 2024-02-23 11:18:32.035 18900 TIP 436016 18051 6041658 2024-02-23 11:18:41.065 2024-02-23 11:18:41.065 2100 FEE 436014 15978 6041659 2024-02-23 11:18:41.065 2024-02-23 11:18:41.065 18900 TIP 436014 14818 6041670 2024-02-23 11:19:47.035 2024-02-23 11:19:47.035 1000 FEE 435935 6573 6041671 2024-02-23 11:19:47.035 2024-02-23 11:19:47.035 9000 TIP 435935 1617 6041684 2024-02-23 11:20:28.128 2024-02-23 11:20:28.128 1000 FEE 436039 18714 6041689 2024-02-23 11:20:56.211 2024-02-23 11:20:56.211 1000 POLL 435516 992 6041707 2024-02-23 11:25:04.557 2024-02-23 11:25:04.557 1000 FEE 436046 19121 6041717 2024-02-23 11:27:41.441 2024-02-23 11:27:41.441 1000 FEE 436050 9084 6041733 2024-02-23 11:34:03.469 2024-02-23 11:34:03.469 1000 FEE 436053 14015 6041739 2024-02-23 11:35:09.902 2024-02-23 11:35:09.902 1000 FEE 435993 19118 6041740 2024-02-23 11:35:09.902 2024-02-23 11:35:09.902 9000 TIP 435993 18230 6041758 2024-02-23 11:38:06.822 2024-02-23 11:38:06.822 1000 FEE 436058 19813 6041767 2024-02-23 11:40:36.193 2024-02-23 11:40:36.193 1000 POLL 436036 18225 6041770 2024-02-23 11:41:51.246 2024-02-23 11:41:51.246 10000 FEE 436062 21334 6041781 2024-02-23 11:45:08.461 2024-02-23 11:45:08.461 100 FEE 436030 674 6041782 2024-02-23 11:45:08.461 2024-02-23 11:45:08.461 900 TIP 436030 5003 6041797 2024-02-23 11:45:10.509 2024-02-23 11:45:10.509 100 FEE 436030 16351 6041798 2024-02-23 11:45:10.509 2024-02-23 11:45:10.509 900 TIP 436030 704 6041822 2024-02-23 11:46:58.554 2024-02-23 11:46:58.554 100 FEE 436048 854 6041823 2024-02-23 11:46:58.554 2024-02-23 11:46:58.554 900 TIP 436048 12158 6041827 2024-02-23 11:47:18.576 2024-02-23 11:47:18.576 1000 FEE 435509 20594 6041828 2024-02-23 11:47:18.576 2024-02-23 11:47:18.576 9000 TIP 435509 3440 6041851 2024-02-23 11:48:53.674 2024-02-23 11:48:53.674 2100 FEE 436029 7682 6041852 2024-02-23 11:48:53.674 2024-02-23 11:48:53.674 18900 TIP 436029 11395 6041866 2024-02-23 11:49:44.946 2024-02-23 11:49:44.946 1600 FEE 435912 9655 6041867 2024-02-23 11:49:44.946 2024-02-23 11:49:44.946 14400 TIP 435912 3409 6041892 2024-02-23 11:51:50.035 2024-02-23 11:51:50.035 2100 FEE 436007 19663 6041893 2024-02-23 11:51:50.035 2024-02-23 11:51:50.035 18900 TIP 436007 1814 6041894 2024-02-23 11:51:51.675 2024-02-23 11:51:51.675 2100 FEE 436005 3461 6041895 2024-02-23 11:51:51.675 2024-02-23 11:51:51.675 18900 TIP 436005 2710 6041898 2024-02-23 11:51:53.697 2024-02-23 11:51:53.697 2100 FEE 436015 2734 6041899 2024-02-23 11:51:53.697 2024-02-23 11:51:53.697 18900 TIP 436015 7916 6041922 2024-02-23 11:53:50.841 2024-02-23 11:53:50.841 2100 FEE 435926 797 6041923 2024-02-23 11:53:50.841 2024-02-23 11:53:50.841 18900 TIP 435926 8380 6041982 2024-02-23 12:00:40.859 2024-02-23 12:00:40.859 1900 FEE 435936 21453 6041983 2024-02-23 12:00:40.859 2024-02-23 12:00:40.859 17100 TIP 435936 21624 6041989 2024-02-23 12:02:47.702 2024-02-23 12:02:47.702 4000 FEE 436076 7979 6041990 2024-02-23 12:02:47.702 2024-02-23 12:02:47.702 36000 TIP 436076 704 6041992 2024-02-23 12:03:12.82 2024-02-23 12:03:12.82 4200 FEE 435812 12959 6041993 2024-02-23 12:03:12.82 2024-02-23 12:03:12.82 37800 TIP 435812 19471 6042032 2024-02-23 12:13:42.206 2024-02-23 12:13:42.206 1000 FEE 436086 11999 6042036 2024-02-23 12:14:58.93 2024-02-23 12:14:58.93 500 FEE 434665 1092 6042037 2024-02-23 12:14:58.93 2024-02-23 12:14:58.93 4500 TIP 434665 708 6042057 2024-02-23 12:23:23.036 2024-02-23 12:23:23.036 1000 FEE 436091 9184 6042062 2024-02-23 12:23:44.751 2024-02-23 12:23:44.751 2100 FEE 435935 17116 6042063 2024-02-23 12:23:44.751 2024-02-23 12:23:44.751 18900 TIP 435935 19664 6042083 2024-02-23 12:24:54.956 2024-02-23 12:24:54.956 2100 FEE 436081 1051 6042084 2024-02-23 12:24:54.956 2024-02-23 12:24:54.956 18900 TIP 436081 9184 6042087 2024-02-23 12:24:56.524 2024-02-23 12:24:56.524 200 FEE 436081 13921 6042088 2024-02-23 12:24:56.524 2024-02-23 12:24:56.524 1800 TIP 436081 20751 6042096 2024-02-23 12:25:10.447 2024-02-23 12:25:10.447 1000 FEE 435861 2056 6042097 2024-02-23 12:25:10.447 2024-02-23 12:25:10.447 9000 TIP 435861 17042 6042119 2024-02-23 12:28:36.679 2024-02-23 12:28:36.679 3200 FEE 436072 20551 6042120 2024-02-23 12:28:36.679 2024-02-23 12:28:36.679 28800 TIP 436072 1429 6042121 2024-02-23 12:29:02.324 2024-02-23 12:29:02.324 1000 FEE 436100 18630 6042132 2024-02-23 12:32:32.44 2024-02-23 12:32:32.44 200 FEE 435867 9482 6042133 2024-02-23 12:32:32.44 2024-02-23 12:32:32.44 1800 TIP 435867 7389 6042134 2024-02-23 12:32:35.171 2024-02-23 12:32:35.171 200 FEE 435557 13987 6042135 2024-02-23 12:32:35.171 2024-02-23 12:32:35.171 1800 TIP 435557 624 6042136 2024-02-23 12:32:38.233 2024-02-23 12:32:38.233 200 FEE 435866 20099 6042137 2024-02-23 12:32:38.233 2024-02-23 12:32:38.233 1800 TIP 435866 2508 6042146 2024-02-23 12:35:09.566 2024-02-23 12:35:09.566 2100 FEE 436051 19153 6042147 2024-02-23 12:35:09.566 2024-02-23 12:35:09.566 18900 TIP 436051 1354 6042152 2024-02-23 12:35:50.308 2024-02-23 12:35:50.308 1700 FEE 435891 2529 6042153 2024-02-23 12:35:50.308 2024-02-23 12:35:50.308 15300 TIP 435891 4314 6042157 2024-02-23 12:36:06.597 2024-02-23 12:36:06.597 200 FEE 436093 721 6042158 2024-02-23 12:36:06.597 2024-02-23 12:36:06.597 1800 TIP 436093 20546 6042190 2024-02-23 12:40:57.733 2024-02-23 12:40:57.733 1000 FEE 436112 19664 6042260 2024-02-23 12:49:00.763 2024-02-23 12:49:00.763 2300 FEE 435928 20812 6042261 2024-02-23 12:49:00.763 2024-02-23 12:49:00.763 20700 TIP 435928 19863 6042264 2024-02-23 12:49:01.143 2024-02-23 12:49:01.143 2300 FEE 435928 12102 6042265 2024-02-23 12:49:01.143 2024-02-23 12:49:01.143 20700 TIP 435928 20812 6042276 2024-02-23 12:49:02.44 2024-02-23 12:49:02.44 2300 FEE 435928 18995 6042277 2024-02-23 12:49:02.44 2024-02-23 12:49:02.44 20700 TIP 435928 19044 6042290 2024-02-23 12:49:05.374 2024-02-23 12:49:05.374 2300 FEE 435928 15226 6042291 2024-02-23 12:49:05.374 2024-02-23 12:49:05.374 20700 TIP 435928 1705 6042300 2024-02-23 12:49:06.254 2024-02-23 12:49:06.254 2300 FEE 435928 20190 6042301 2024-02-23 12:49:06.254 2024-02-23 12:49:06.254 20700 TIP 435928 19303 6042381 2024-02-23 12:49:21.849 2024-02-23 12:49:21.849 0 FEE 436120 21624 6042386 2024-02-23 12:49:22.371 2024-02-23 12:49:22.371 2300 FEE 435928 18897 6042387 2024-02-23 12:49:22.371 2024-02-23 12:49:22.371 20700 TIP 435928 20481 6042388 2024-02-23 12:49:22.549 2024-02-23 12:49:22.549 2300 FEE 435928 7966 6042389 2024-02-23 12:49:22.549 2024-02-23 12:49:22.549 20700 TIP 435928 654 6042399 2024-02-23 12:49:23.714 2024-02-23 12:49:23.714 2300 FEE 435928 965 6042400 2024-02-23 12:49:23.714 2024-02-23 12:49:23.714 20700 TIP 435928 20180 6042421 2024-02-23 12:50:08.024 2024-02-23 12:50:08.024 4600 FEE 435847 21314 6042422 2024-02-23 12:50:08.024 2024-02-23 12:50:08.024 41400 TIP 435847 3642 6042431 2024-02-23 12:50:09.121 2024-02-23 12:50:09.121 2300 FEE 435847 1650 6041755 2024-02-23 11:37:32.591 2024-02-23 11:37:32.591 100 FEE 436033 17237 6041756 2024-02-23 11:37:32.591 2024-02-23 11:37:32.591 900 TIP 436033 18359 6041791 2024-02-23 11:45:09.881 2024-02-23 11:45:09.881 100 FEE 436030 2519 6041792 2024-02-23 11:45:09.881 2024-02-23 11:45:09.881 900 TIP 436030 5427 6041793 2024-02-23 11:45:10.048 2024-02-23 11:45:10.048 100 FEE 436030 20152 6041794 2024-02-23 11:45:10.048 2024-02-23 11:45:10.048 900 TIP 436030 17817 6041817 2024-02-23 11:46:13.024 2024-02-23 11:46:13.024 1000 FEE 436068 18984 6041832 2024-02-23 11:47:35.943 2024-02-23 11:47:35.943 1000 FEE 436015 1472 6041833 2024-02-23 11:47:35.943 2024-02-23 11:47:35.943 9000 TIP 436015 21216 6041849 2024-02-23 11:48:45.918 2024-02-23 11:48:45.918 2100 FEE 436030 3745 6041850 2024-02-23 11:48:45.918 2024-02-23 11:48:45.918 18900 TIP 436030 21247 6041853 2024-02-23 11:48:57.529 2024-02-23 11:48:57.529 2100 FEE 436045 4083 6041854 2024-02-23 11:48:57.529 2024-02-23 11:48:57.529 18900 TIP 436045 18877 6041856 2024-02-23 11:48:59.513 2024-02-23 11:48:59.513 2100 FEE 436031 692 6041857 2024-02-23 11:48:59.513 2024-02-23 11:48:59.513 18900 TIP 436031 18529 6041881 2024-02-23 11:51:08.724 2024-02-23 11:51:08.724 1000 FEE 436072 18727 6041913 2024-02-23 11:53:05.759 2024-02-23 11:53:05.759 1000 FEE 436074 18680 6041914 2024-02-23 11:53:24.543 2024-02-23 11:53:24.543 2100 FEE 435986 16282 6041915 2024-02-23 11:53:24.543 2024-02-23 11:53:24.543 18900 TIP 435986 20179 6041924 2024-02-23 11:53:55.469 2024-02-23 11:53:55.469 4000 FEE 436065 9820 6041925 2024-02-23 11:53:55.469 2024-02-23 11:53:55.469 36000 TIP 436065 11158 6041958 2024-02-23 11:57:20.638 2024-02-23 11:57:20.638 1000 FEE 436079 20891 6041995 2024-02-23 12:04:43.8 2024-02-23 12:04:43.8 1000 FEE 436083 1726 6042012 2024-02-23 12:10:31.629 2024-02-23 12:10:31.629 2100 FEE 436076 19995 6042013 2024-02-23 12:10:31.629 2024-02-23 12:10:31.629 18900 TIP 436076 21413 6042015 2024-02-23 12:11:07.878 2024-02-23 12:11:07.878 2100 FEE 436079 1801 6042016 2024-02-23 12:11:07.878 2024-02-23 12:11:07.878 18900 TIP 436079 21138 6042021 2024-02-23 12:11:55.064 2024-02-23 12:11:55.064 1000 FEE 436084 7583 6042023 2024-02-23 12:12:05.506 2024-02-23 12:12:05.506 2100 FEE 435955 18174 6042024 2024-02-23 12:12:05.506 2024-02-23 12:12:05.506 18900 TIP 435955 18583 6042068 2024-02-23 12:23:54.975 2024-02-23 12:23:54.975 2100 FEE 435746 19967 6042069 2024-02-23 12:23:54.975 2024-02-23 12:23:54.975 18900 TIP 435746 19854 6042089 2024-02-23 12:24:59.356 2024-02-23 12:24:59.356 2100 FEE 436036 768 6042090 2024-02-23 12:24:59.356 2024-02-23 12:24:59.356 18900 TIP 436036 19661 6042108 2024-02-23 12:27:13.316 2024-02-23 12:27:13.316 1000 FEE 435574 9362 6042109 2024-02-23 12:27:13.316 2024-02-23 12:27:13.316 9000 TIP 435574 14939 6042150 2024-02-23 12:35:17.321 2024-02-23 12:35:17.321 10000 FEE 436100 4391 6042151 2024-02-23 12:35:17.321 2024-02-23 12:35:17.321 90000 TIP 436100 21042 6042154 2024-02-23 12:35:59.389 2024-02-23 12:35:59.389 1700 FEE 435714 960 6042155 2024-02-23 12:35:59.389 2024-02-23 12:35:59.389 15300 TIP 435714 10719 6042170 2024-02-23 12:39:00.778 2024-02-23 12:39:00.778 2800 FEE 436037 20231 6042171 2024-02-23 12:39:00.778 2024-02-23 12:39:00.778 25200 TIP 436037 20412 6042173 2024-02-23 12:39:10.461 2024-02-23 12:39:10.461 1000 FEE 436107 13782 6042174 2024-02-23 12:39:20.736 2024-02-23 12:39:20.736 2800 FEE 436097 14651 6042175 2024-02-23 12:39:20.736 2024-02-23 12:39:20.736 25200 TIP 436097 20208 6042185 2024-02-23 12:40:21.425 2024-02-23 12:40:21.425 10000 FEE 436093 7395 6042186 2024-02-23 12:40:21.425 2024-02-23 12:40:21.425 90000 TIP 436093 15941 6042188 2024-02-23 12:40:32.42 2024-02-23 12:40:32.42 100000 FEE 436110 15282 6042192 2024-02-23 12:41:26.558 2024-02-23 12:41:26.558 1000 FEE 436113 20602 6042205 2024-02-23 12:45:06.898 2024-02-23 12:45:06.898 1000 FEE 436118 1803 6042246 2024-02-23 12:48:59.531 2024-02-23 12:48:59.531 2300 FEE 435928 11885 6042247 2024-02-23 12:48:59.531 2024-02-23 12:48:59.531 20700 TIP 435928 21373 6042248 2024-02-23 12:48:59.682 2024-02-23 12:48:59.682 2300 FEE 435928 6688 6042249 2024-02-23 12:48:59.682 2024-02-23 12:48:59.682 20700 TIP 435928 1224 6042278 2024-02-23 12:49:02.661 2024-02-23 12:49:02.661 2300 FEE 435928 5444 6042279 2024-02-23 12:49:02.661 2024-02-23 12:49:02.661 20700 TIP 435928 6229 6042284 2024-02-23 12:49:03.372 2024-02-23 12:49:03.372 4600 FEE 435928 11430 6042285 2024-02-23 12:49:03.372 2024-02-23 12:49:03.372 41400 TIP 435928 12483 6042292 2024-02-23 12:49:05.564 2024-02-23 12:49:05.564 2300 FEE 435928 18016 6042293 2024-02-23 12:49:05.564 2024-02-23 12:49:05.564 20700 TIP 435928 11621 6042334 2024-02-23 12:49:10.503 2024-02-23 12:49:10.503 2300 FEE 435928 9331 6042335 2024-02-23 12:49:10.503 2024-02-23 12:49:10.503 20700 TIP 435928 20597 6042359 2024-02-23 12:49:18.728 2024-02-23 12:49:18.728 4600 FEE 435928 21578 6042360 2024-02-23 12:49:18.728 2024-02-23 12:49:18.728 41400 TIP 435928 19016 6042363 2024-02-23 12:49:20.003 2024-02-23 12:49:20.003 2300 FEE 435928 8648 6042364 2024-02-23 12:49:20.003 2024-02-23 12:49:20.003 20700 TIP 435928 20701 6042367 2024-02-23 12:49:20.813 2024-02-23 12:49:20.813 2300 FEE 435928 16124 6042368 2024-02-23 12:49:20.813 2024-02-23 12:49:20.813 20700 TIP 435928 1652 6042409 2024-02-23 12:49:24.927 2024-02-23 12:49:24.927 2300 FEE 435928 21418 6042410 2024-02-23 12:49:24.927 2024-02-23 12:49:24.927 20700 TIP 435928 680 6042457 2024-02-23 12:50:11.704 2024-02-23 12:50:11.704 2300 FEE 435847 5308 6042458 2024-02-23 12:50:11.704 2024-02-23 12:50:11.704 20700 TIP 435847 8095 6042459 2024-02-23 12:50:11.929 2024-02-23 12:50:11.929 2300 FEE 435847 617 6042460 2024-02-23 12:50:11.929 2024-02-23 12:50:11.929 20700 TIP 435847 20179 6042484 2024-02-23 12:50:14.73 2024-02-23 12:50:14.73 2300 FEE 435847 16230 6042485 2024-02-23 12:50:14.73 2024-02-23 12:50:14.73 20700 TIP 435847 21494 6042488 2024-02-23 12:50:15.059 2024-02-23 12:50:15.059 2300 FEE 435847 2264 6042489 2024-02-23 12:50:15.059 2024-02-23 12:50:15.059 20700 TIP 435847 14688 6042492 2024-02-23 12:50:15.666 2024-02-23 12:50:15.666 2300 FEE 435847 19533 6042493 2024-02-23 12:50:15.666 2024-02-23 12:50:15.666 20700 TIP 435847 19243 6042494 2024-02-23 12:50:26.25 2024-02-23 12:50:26.25 2100 FEE 435925 1712 6042495 2024-02-23 12:50:26.25 2024-02-23 12:50:26.25 18900 TIP 435925 6687 6042512 2024-02-23 12:50:38.94 2024-02-23 12:50:38.94 2300 FEE 435944 3461 6042513 2024-02-23 12:50:38.94 2024-02-23 12:50:38.94 20700 TIP 435944 18659 6042518 2024-02-23 12:50:39.48 2024-02-23 12:50:39.48 2300 FEE 435944 2724 6042519 2024-02-23 12:50:39.48 2024-02-23 12:50:39.48 20700 TIP 435944 1740 6042526 2024-02-23 12:50:40.508 2024-02-23 12:50:40.508 2300 FEE 435944 1209 6042527 2024-02-23 12:50:40.508 2024-02-23 12:50:40.508 20700 TIP 435944 7869 6042528 2024-02-23 12:50:40.68 2024-02-23 12:50:40.68 2300 FEE 435944 14657 6042529 2024-02-23 12:50:40.68 2024-02-23 12:50:40.68 20700 TIP 435944 21482 6042536 2024-02-23 12:51:09.131 2024-02-23 12:51:09.131 4000 FEE 436053 6526 6042537 2024-02-23 12:51:09.131 2024-02-23 12:51:09.131 36000 TIP 436053 5646 6042548 2024-02-23 12:52:28.393 2024-02-23 12:52:28.393 700 FEE 436025 17106 6042549 2024-02-23 12:52:28.393 2024-02-23 12:52:28.393 6300 TIP 436025 13575 6042554 2024-02-23 12:52:51.461 2024-02-23 12:52:51.461 1000 FEE 436127 1772 6042562 2024-02-23 12:53:59.49 2024-02-23 12:53:59.49 1000 FEE 435847 20222 6042563 2024-02-23 12:53:59.49 2024-02-23 12:53:59.49 9000 TIP 435847 831 6042574 2024-02-23 12:54:53.401 2024-02-23 12:54:53.401 1000 FEE 436129 19333 6042590 2024-02-23 12:58:12.261 2024-02-23 12:58:12.261 10000 FEE 435973 18842 6042591 2024-02-23 12:58:12.261 2024-02-23 12:58:12.261 90000 TIP 435973 18330 6042594 2024-02-23 12:58:13.769 2024-02-23 12:58:13.769 10000 FEE 435948 21178 6042595 2024-02-23 12:58:13.769 2024-02-23 12:58:13.769 90000 TIP 435948 21291 6042600 2024-02-23 12:58:28.545 2024-02-23 12:58:28.545 10000 FEE 435997 15161 6042601 2024-02-23 12:58:28.545 2024-02-23 12:58:28.545 90000 TIP 435997 19511 6042602 2024-02-23 12:58:46.106 2024-02-23 12:58:46.106 1000 FEE 436134 2029 6041762 2024-02-23 11:39:24.494 2024-02-23 11:39:24.494 4200 FEE 435728 18635 6041763 2024-02-23 11:39:24.494 2024-02-23 11:39:24.494 37800 TIP 435728 15617 6041789 2024-02-23 11:45:09.573 2024-02-23 11:45:09.573 100 FEE 436030 1712 6041790 2024-02-23 11:45:09.573 2024-02-23 11:45:09.573 900 TIP 436030 16965 6041809 2024-02-23 11:46:11.599 2024-02-23 11:46:11.599 100 FEE 436030 1272 6041810 2024-02-23 11:46:11.599 2024-02-23 11:46:11.599 900 TIP 436030 3504 6041811 2024-02-23 11:46:11.92 2024-02-23 11:46:11.92 100 FEE 436030 4973 6041812 2024-02-23 11:46:11.92 2024-02-23 11:46:11.92 900 TIP 436030 762 6041838 2024-02-23 11:48:09.772 2024-02-23 11:48:09.772 2100 FEE 436057 15337 6041839 2024-02-23 11:48:09.772 2024-02-23 11:48:09.772 18900 TIP 436057 21523 6041870 2024-02-23 11:50:03.045 2024-02-23 11:50:03.045 0 FEE 436065 21356 6041929 2024-02-23 11:54:03.901 2024-02-23 11:54:03.901 2100 FEE 435883 15336 6041930 2024-02-23 11:54:03.901 2024-02-23 11:54:03.901 18900 TIP 435883 10530 6041936 2024-02-23 11:54:36.711 2024-02-23 11:54:36.711 2100 FEE 435882 21365 6041937 2024-02-23 11:54:36.711 2024-02-23 11:54:36.711 18900 TIP 435882 5708 6041949 2024-02-23 11:56:19.002 2024-02-23 11:56:19.002 1600 FEE 436047 14370 6041950 2024-02-23 11:56:19.002 2024-02-23 11:56:19.002 14400 TIP 436047 19332 6041962 2024-02-23 11:58:14.086 2024-02-23 11:58:14.086 4000 FEE 436062 18635 6041963 2024-02-23 11:58:14.086 2024-02-23 11:58:14.086 36000 TIP 436062 998 6041964 2024-02-23 11:58:20.203 2024-02-23 11:58:20.203 100 FEE 435986 9843 6041965 2024-02-23 11:58:20.203 2024-02-23 11:58:20.203 900 TIP 435986 8242 6041969 2024-02-23 11:59:17.569 2024-02-23 11:59:17.569 1000 FEE 436080 20669 6041970 2024-02-23 11:59:28.99 2024-02-23 11:59:28.99 4200 FEE 435046 20509 6041971 2024-02-23 11:59:28.99 2024-02-23 11:59:28.99 37800 TIP 435046 6300 6042041 2024-02-23 12:17:08.332 2024-02-23 12:17:08.332 10000 FEE 436089 18235 6042058 2024-02-23 12:23:28.685 2024-02-23 12:23:28.685 10000 FEE 436065 7916 6042059 2024-02-23 12:23:28.685 2024-02-23 12:23:28.685 90000 TIP 436065 19198 6042066 2024-02-23 12:23:53.033 2024-02-23 12:23:53.033 2100 FEE 436062 13798 6042067 2024-02-23 12:23:53.033 2024-02-23 12:23:53.033 18900 TIP 436062 1602 6042079 2024-02-23 12:24:51.309 2024-02-23 12:24:51.309 2100 FEE 436082 11956 6042080 2024-02-23 12:24:51.309 2024-02-23 12:24:51.309 18900 TIP 436082 16970 6042094 2024-02-23 12:25:10.001 2024-02-23 12:25:10.001 200 FEE 436079 6136 6042095 2024-02-23 12:25:10.001 2024-02-23 12:25:10.001 1800 TIP 436079 900 6042104 2024-02-23 12:26:51.503 2024-02-23 12:26:51.503 125000 FEE 436093 11328 6042105 2024-02-23 12:26:52.535 2024-02-23 12:26:52.535 1000 FEE 436094 19638 6042110 2024-02-23 12:27:25.409 2024-02-23 12:27:25.409 2100 FEE 435579 6327 6042111 2024-02-23 12:27:25.409 2024-02-23 12:27:25.409 18900 TIP 435579 20602 6042123 2024-02-23 12:29:23.59 2024-02-23 12:29:23.59 0 FEE 436100 20840 6042140 2024-02-23 12:34:27.53 2024-02-23 12:34:27.53 1000 FEE 436094 4167 6042141 2024-02-23 12:34:27.53 2024-02-23 12:34:27.53 9000 TIP 436094 6717 6042167 2024-02-23 12:38:17.967 2024-02-23 12:38:17.967 2800 FEE 436053 19637 6042168 2024-02-23 12:38:17.967 2024-02-23 12:38:17.967 25200 TIP 436053 1352 6112346 2024-02-29 13:36:02.839 2024-02-29 13:36:02.839 1000 STREAM 141924 15858 6112558 2024-02-29 13:47:04.915 2024-02-29 13:47:04.915 1000 STREAM 141924 20481 6112580 2024-02-29 13:50:04.959 2024-02-29 13:50:04.959 1000 STREAM 141924 18199 6112619 2024-02-29 13:55:04.922 2024-02-29 13:55:04.922 1000 STREAM 141924 15161 6041786 2024-02-23 11:45:09.09 2024-02-23 11:45:09.09 900 TIP 436030 6164 6041806 2024-02-23 11:46:04.819 2024-02-23 11:46:04.819 1000 FEE 436067 16042 6041820 2024-02-23 11:46:51.056 2024-02-23 11:46:51.056 100 FEE 436057 21040 6041821 2024-02-23 11:46:51.056 2024-02-23 11:46:51.056 900 TIP 436057 18736 6041855 2024-02-23 11:48:58.401 2024-02-23 11:48:58.401 1000 FEE 436070 16347 6041876 2024-02-23 11:50:33.999 2024-02-23 11:50:33.999 1600 FEE 435935 1051 6041877 2024-02-23 11:50:33.999 2024-02-23 11:50:33.999 14400 TIP 435935 20715 6041907 2024-02-23 11:52:13.363 2024-02-23 11:52:13.363 2100 FEE 435988 19821 6041908 2024-02-23 11:52:13.363 2024-02-23 11:52:13.363 18900 TIP 435988 4048 6041910 2024-02-23 11:53:01.501 2024-02-23 11:53:01.501 10000 FEE 435944 1823 6041911 2024-02-23 11:53:01.501 2024-02-23 11:53:01.501 90000 TIP 435944 17570 6041920 2024-02-23 11:53:33.184 2024-02-23 11:53:33.184 2100 FEE 435970 20979 6041921 2024-02-23 11:53:33.184 2024-02-23 11:53:33.184 18900 TIP 435970 19394 6041945 2024-02-23 11:55:35.675 2024-02-23 11:55:35.675 100 FEE 436015 3544 6041946 2024-02-23 11:55:35.675 2024-02-23 11:55:35.675 900 TIP 436015 19142 6041966 2024-02-23 11:58:39.282 2024-02-23 11:58:39.282 1000 FEE 436079 15526 6041967 2024-02-23 11:58:39.282 2024-02-23 11:58:39.282 9000 TIP 436079 1836 6041999 2024-02-23 12:06:00.092 2024-02-23 12:06:00.092 500 FEE 435457 20504 6042000 2024-02-23 12:06:00.092 2024-02-23 12:06:00.092 4500 TIP 435457 1814 6042002 2024-02-23 12:06:12.21 2024-02-23 12:06:12.21 1000 FEE 435242 2367 6042003 2024-02-23 12:06:12.21 2024-02-23 12:06:12.21 9000 TIP 435242 12516 6042019 2024-02-23 12:11:51.356 2024-02-23 12:11:51.356 2100 FEE 436069 19533 6042020 2024-02-23 12:11:51.356 2024-02-23 12:11:51.356 18900 TIP 436069 19346 6042025 2024-02-23 12:12:37.04 2024-02-23 12:12:37.04 10000 FEE 419511 18529 6042026 2024-02-23 12:12:37.04 2024-02-23 12:12:37.04 90000 TIP 419511 18528 6042046 2024-02-23 12:19:00.976 2024-02-23 12:19:00.976 1000 FEE 435610 4624 6042047 2024-02-23 12:19:00.976 2024-02-23 12:19:00.976 9000 TIP 435610 20246 6042085 2024-02-23 12:24:56.29 2024-02-23 12:24:56.29 2100 FEE 436051 4177 6042086 2024-02-23 12:24:56.29 2024-02-23 12:24:56.29 18900 TIP 436051 698 6042117 2024-02-23 12:28:06.609 2024-02-23 12:28:06.609 1000 FEE 436098 825 6042145 2024-02-23 12:35:09.19 2024-02-23 12:35:09.19 1000 FEE 436104 13843 6042181 2024-02-23 12:40:10.328 2024-02-23 12:40:10.328 300 FEE 436032 18507 6042182 2024-02-23 12:40:10.328 2024-02-23 12:40:10.328 2700 TIP 436032 5597 6042183 2024-02-23 12:40:12.213 2024-02-23 12:40:12.213 300 FEE 435908 15941 6042184 2024-02-23 12:40:12.213 2024-02-23 12:40:12.213 2700 TIP 435908 18626 6042211 2024-02-23 12:46:51.503 2024-02-23 12:46:51.503 4000 FEE 436115 20301 6042212 2024-02-23 12:46:51.503 2024-02-23 12:46:51.503 36000 TIP 436115 15463 6042215 2024-02-23 12:47:37.651 2024-02-23 12:47:37.651 1000 FEE 436121 20267 6042230 2024-02-23 12:48:57.968 2024-02-23 12:48:57.968 2300 FEE 435928 16177 6042231 2024-02-23 12:48:57.968 2024-02-23 12:48:57.968 20700 TIP 435928 5427 6042234 2024-02-23 12:48:58.155 2024-02-23 12:48:58.155 2300 FEE 435928 20434 6042235 2024-02-23 12:48:58.155 2024-02-23 12:48:58.155 20700 TIP 435928 8059 6042236 2024-02-23 12:48:58.701 2024-02-23 12:48:58.701 2300 FEE 435928 20059 6042237 2024-02-23 12:48:58.701 2024-02-23 12:48:58.701 20700 TIP 435928 3745 6042242 2024-02-23 12:48:59.225 2024-02-23 12:48:59.225 2300 FEE 435928 736 6042243 2024-02-23 12:48:59.225 2024-02-23 12:48:59.225 20700 TIP 435928 20190 6042262 2024-02-23 12:49:00.918 2024-02-23 12:49:00.918 2300 FEE 435928 20577 6042263 2024-02-23 12:49:00.918 2024-02-23 12:49:00.918 20700 TIP 435928 4973 6042272 2024-02-23 12:49:02.085 2024-02-23 12:49:02.085 2300 FEE 435928 5455 6042273 2024-02-23 12:49:02.085 2024-02-23 12:49:02.085 20700 TIP 435928 12188 6042294 2024-02-23 12:49:05.737 2024-02-23 12:49:05.737 2300 FEE 435928 910 6042295 2024-02-23 12:49:05.737 2024-02-23 12:49:05.737 20700 TIP 435928 20596 6042296 2024-02-23 12:49:06.016 2024-02-23 12:49:06.016 2300 FEE 435928 21406 6042297 2024-02-23 12:49:06.016 2024-02-23 12:49:06.016 20700 TIP 435928 13781 6042308 2024-02-23 12:49:06.954 2024-02-23 12:49:06.954 2300 FEE 435928 1221 6042309 2024-02-23 12:49:06.954 2024-02-23 12:49:06.954 20700 TIP 435928 5775 6042310 2024-02-23 12:49:07.139 2024-02-23 12:49:07.139 2300 FEE 435928 4973 6042311 2024-02-23 12:49:07.139 2024-02-23 12:49:07.139 20700 TIP 435928 17494 6042318 2024-02-23 12:49:08.342 2024-02-23 12:49:08.342 2300 FEE 435928 5112 6042319 2024-02-23 12:49:08.342 2024-02-23 12:49:08.342 20700 TIP 435928 20157 6042322 2024-02-23 12:49:08.751 2024-02-23 12:49:08.751 2300 FEE 435928 5557 6042323 2024-02-23 12:49:08.751 2024-02-23 12:49:08.751 20700 TIP 435928 2285 6042324 2024-02-23 12:49:08.874 2024-02-23 12:49:08.874 2300 FEE 435928 20022 6042325 2024-02-23 12:49:08.874 2024-02-23 12:49:08.874 20700 TIP 435928 13781 6042336 2024-02-23 12:49:10.714 2024-02-23 12:49:10.714 2300 FEE 435928 19174 6042337 2024-02-23 12:49:10.714 2024-02-23 12:49:10.714 20700 TIP 435928 14080 6042344 2024-02-23 12:49:14.317 2024-02-23 12:49:14.317 0 FEE 436120 15139 6042365 2024-02-23 12:49:20.627 2024-02-23 12:49:20.627 2300 FEE 435928 20660 6042366 2024-02-23 12:49:20.627 2024-02-23 12:49:20.627 20700 TIP 435928 19417 6042390 2024-02-23 12:49:22.725 2024-02-23 12:49:22.725 2300 FEE 435928 5758 6042391 2024-02-23 12:49:22.725 2024-02-23 12:49:22.725 20700 TIP 435928 18068 6042411 2024-02-23 12:49:25.074 2024-02-23 12:49:25.074 2300 FEE 435928 17693 6042412 2024-02-23 12:49:25.074 2024-02-23 12:49:25.074 20700 TIP 435928 16176 6042413 2024-02-23 12:49:25.248 2024-02-23 12:49:25.248 2300 FEE 435928 5791 6042414 2024-02-23 12:49:25.248 2024-02-23 12:49:25.248 20700 TIP 435928 9378 6042445 2024-02-23 12:50:10.576 2024-02-23 12:50:10.576 2300 FEE 435847 7772 6042446 2024-02-23 12:50:10.576 2024-02-23 12:50:10.576 20700 TIP 435847 19572 6042552 2024-02-23 12:52:42.451 2024-02-23 12:52:42.451 10000 FEE 436090 21063 6042553 2024-02-23 12:52:42.451 2024-02-23 12:52:42.451 90000 TIP 436090 9 6042560 2024-02-23 12:53:59.332 2024-02-23 12:53:59.332 1000 FEE 435847 4802 6042561 2024-02-23 12:53:59.332 2024-02-23 12:53:59.332 9000 TIP 435847 16939 6042580 2024-02-23 12:55:26.645 2024-02-23 12:55:26.645 0 FEE 436129 658 6042584 2024-02-23 12:56:33.288 2024-02-23 12:56:33.288 1000 FEE 436132 4650 6042605 2024-02-23 12:59:39.918 2024-02-23 12:59:39.918 210000 FEE 436136 20573 6042607 2024-02-23 13:00:25.829 2024-02-23 13:00:25.829 3000 FEE 435872 3729 6042608 2024-02-23 13:00:25.829 2024-02-23 13:00:25.829 27000 TIP 435872 775 6042641 2024-02-23 13:02:38.979 2024-02-23 13:02:38.979 1100 FEE 435847 20730 6042642 2024-02-23 13:02:38.979 2024-02-23 13:02:38.979 9900 TIP 435847 19284 6042660 2024-02-23 13:03:10.356 2024-02-23 13:03:10.356 1100 FEE 435944 17891 6042661 2024-02-23 13:03:10.356 2024-02-23 13:03:10.356 9900 TIP 435944 9529 6042662 2024-02-23 13:03:10.656 2024-02-23 13:03:10.656 1100 FEE 435944 20778 6042663 2024-02-23 13:03:10.656 2024-02-23 13:03:10.656 9900 TIP 435944 1047 6042687 2024-02-23 13:04:49.747 2024-02-23 13:04:49.747 1000 FEE 436063 9036 6042688 2024-02-23 13:04:49.747 2024-02-23 13:04:49.747 9000 TIP 436063 951 6042705 2024-02-23 13:05:10.365 2024-02-23 13:05:10.365 2000 FEE 436048 644 6042706 2024-02-23 13:05:10.365 2024-02-23 13:05:10.365 18000 TIP 436048 1741 6042797 2024-02-23 13:11:06.69 2024-02-23 13:11:06.69 100 FEE 435924 2046 6042798 2024-02-23 13:11:06.69 2024-02-23 13:11:06.69 900 TIP 435924 20479 6042825 2024-02-23 13:12:42.226 2024-02-23 13:12:42.226 0 FEE 436143 12097 6042876 2024-02-23 13:15:59.924 2024-02-23 13:15:59.924 90000 FEE 436093 20436 6042877 2024-02-23 13:15:59.924 2024-02-23 13:15:59.924 810000 TIP 436093 16212 6042889 2024-02-23 13:16:34.709 2024-02-23 13:16:34.709 100 FEE 436158 10112 6042890 2024-02-23 13:16:34.709 2024-02-23 13:16:34.709 900 TIP 436158 13406 6042931 2024-02-23 13:19:32.188 2024-02-23 13:19:32.188 2100 FEE 436153 14939 6042932 2024-02-23 13:19:32.188 2024-02-23 13:19:32.188 18900 TIP 436153 11314 6041801 2024-02-23 11:45:41.555 2024-02-23 11:45:41.555 10000 FEE 436066 15594 6041802 2024-02-23 11:45:50.194 2024-02-23 11:45:50.194 1000 POLL 435805 11992 6041835 2024-02-23 11:47:55.876 2024-02-23 11:47:55.876 1600 FEE 435905 5761 6041836 2024-02-23 11:47:55.876 2024-02-23 11:47:55.876 14400 TIP 435905 7760 6041840 2024-02-23 11:48:10.697 2024-02-23 11:48:10.697 2100 FEE 436049 18819 6041841 2024-02-23 11:48:10.697 2024-02-23 11:48:10.697 18900 TIP 436049 11430 6041842 2024-02-23 11:48:20.543 2024-02-23 11:48:20.543 1000 FEE 436069 836 6041843 2024-02-23 11:48:37.366 2024-02-23 11:48:37.366 2100 FEE 436061 16309 6041844 2024-02-23 11:48:37.366 2024-02-23 11:48:37.366 18900 TIP 436061 11491 6041859 2024-02-23 11:49:04.041 2024-02-23 11:49:04.041 500 FEE 435610 14663 6041860 2024-02-23 11:49:04.041 2024-02-23 11:49:04.041 4500 TIP 435610 18984 6041875 2024-02-23 11:50:22.59 2024-02-23 11:50:22.59 0 FEE 436065 2640 6041890 2024-02-23 11:51:45.442 2024-02-23 11:51:45.442 2100 FEE 436071 19637 6041891 2024-02-23 11:51:45.442 2024-02-23 11:51:45.442 18900 TIP 436071 13406 6041900 2024-02-23 11:51:57.981 2024-02-23 11:51:57.981 5000 FEE 436029 16543 6041901 2024-02-23 11:51:57.981 2024-02-23 11:51:57.981 45000 TIP 436029 17944 6041903 2024-02-23 11:52:07.11 2024-02-23 11:52:07.11 2100 FEE 435988 16956 6041904 2024-02-23 11:52:07.11 2024-02-23 11:52:07.11 18900 TIP 435988 20619 6041926 2024-02-23 11:53:58.715 2024-02-23 11:53:58.715 2100 FEE 435910 14785 6041927 2024-02-23 11:53:58.715 2024-02-23 11:53:58.715 18900 TIP 435910 21157 6041933 2024-02-23 11:54:14.252 2024-02-23 11:54:14.252 1000 FEE 436075 16193 6041934 2024-02-23 11:54:20.898 2024-02-23 11:54:20.898 200 FEE 436025 2514 6041935 2024-02-23 11:54:20.898 2024-02-23 11:54:20.898 1800 TIP 436025 4798 6041938 2024-02-23 11:54:40.242 2024-02-23 11:54:40.242 800 FEE 435812 629 6041939 2024-02-23 11:54:40.242 2024-02-23 11:54:40.242 7200 TIP 435812 12169 6041943 2024-02-23 11:55:13.173 2024-02-23 11:55:13.173 100 FEE 436025 14195 6041944 2024-02-23 11:55:13.173 2024-02-23 11:55:13.173 900 TIP 436025 21539 6041954 2024-02-23 11:56:53.273 2024-02-23 11:56:53.273 100 FEE 436009 18116 6041955 2024-02-23 11:56:53.273 2024-02-23 11:56:53.273 900 TIP 436009 837 6041977 2024-02-23 12:00:17.5 2024-02-23 12:00:17.5 100000 FEE 436081 9355 6041985 2024-02-23 12:01:41.605 2024-02-23 12:01:41.605 100000 FEE 436082 9552 6042004 2024-02-23 12:06:39.22 2024-02-23 12:06:39.22 1000 FEE 435791 18232 6042005 2024-02-23 12:06:39.22 2024-02-23 12:06:39.22 9000 TIP 435791 19381 6042060 2024-02-23 12:23:32.83 2024-02-23 12:23:32.83 12800 FEE 436029 17838 6042061 2024-02-23 12:23:32.83 2024-02-23 12:23:32.83 115200 TIP 436029 20756 6042064 2024-02-23 12:23:47.887 2024-02-23 12:23:47.887 2100 FEE 436076 4973 6042065 2024-02-23 12:23:47.887 2024-02-23 12:23:47.887 18900 TIP 436076 18396 6042077 2024-02-23 12:24:14.142 2024-02-23 12:24:14.142 2100 FEE 435805 652 6042078 2024-02-23 12:24:14.142 2024-02-23 12:24:14.142 18900 TIP 435805 1769 6042102 2024-02-23 12:26:18.966 2024-02-23 12:26:18.966 2100 FEE 435993 7659 6042103 2024-02-23 12:26:18.966 2024-02-23 12:26:18.966 18900 TIP 435993 20539 6042114 2024-02-23 12:27:38.794 2024-02-23 12:27:38.794 1000 FEE 436096 11458 6042124 2024-02-23 12:29:27.067 2024-02-23 12:29:27.067 10000 FEE 436061 5637 6042125 2024-02-23 12:29:27.067 2024-02-23 12:29:27.067 90000 TIP 436061 3417 6042129 2024-02-23 12:30:54.495 2024-02-23 12:30:54.495 1000 FEE 436102 3717 6042169 2024-02-23 12:38:31.888 2024-02-23 12:38:31.888 1000 FEE 436106 10063 6042177 2024-02-23 12:39:41.536 2024-02-23 12:39:41.536 2800 FEE 436100 2329 6042178 2024-02-23 12:39:41.536 2024-02-23 12:39:41.536 25200 TIP 436100 16660 6042179 2024-02-23 12:39:52.868 2024-02-23 12:39:52.868 1000 POLL 436036 16956 6042187 2024-02-23 12:40:23.734 2024-02-23 12:40:23.734 1000 FEE 436109 6149 6042208 2024-02-23 12:46:17.254 2024-02-23 12:46:17.254 1000 FEE 436119 20691 6042222 2024-02-23 12:48:42.671 2024-02-23 12:48:42.671 2100 FEE 435693 18476 6042223 2024-02-23 12:48:42.671 2024-02-23 12:48:42.671 18900 TIP 435693 13574 6042228 2024-02-23 12:48:57.693 2024-02-23 12:48:57.693 2300 FEE 435928 736 6042229 2024-02-23 12:48:57.693 2024-02-23 12:48:57.693 20700 TIP 435928 21057 6042240 2024-02-23 12:48:59.077 2024-02-23 12:48:59.077 2300 FEE 435928 10063 6042241 2024-02-23 12:48:59.077 2024-02-23 12:48:59.077 20700 TIP 435928 8841 6042244 2024-02-23 12:48:59.38 2024-02-23 12:48:59.38 2300 FEE 435928 15484 6042245 2024-02-23 12:48:59.38 2024-02-23 12:48:59.38 20700 TIP 435928 21424 6042258 2024-02-23 12:49:00.583 2024-02-23 12:49:00.583 2300 FEE 435928 16633 6042259 2024-02-23 12:49:00.583 2024-02-23 12:49:00.583 20700 TIP 435928 11670 6042270 2024-02-23 12:49:01.917 2024-02-23 12:49:01.917 2300 FEE 435928 19158 6042271 2024-02-23 12:49:01.917 2024-02-23 12:49:01.917 20700 TIP 435928 4415 6042274 2024-02-23 12:49:02.272 2024-02-23 12:49:02.272 2300 FEE 435928 16876 6042275 2024-02-23 12:49:02.272 2024-02-23 12:49:02.272 20700 TIP 435928 17817 6042287 2024-02-23 12:49:04.533 2024-02-23 12:49:04.533 4600 FEE 435928 17147 6042288 2024-02-23 12:49:04.533 2024-02-23 12:49:04.533 41400 TIP 435928 21136 6042298 2024-02-23 12:49:06.152 2024-02-23 12:49:06.152 2300 FEE 435928 20646 6042299 2024-02-23 12:49:06.152 2024-02-23 12:49:06.152 20700 TIP 435928 3347 6042304 2024-02-23 12:49:06.626 2024-02-23 12:49:06.626 2300 FEE 435928 19267 6042305 2024-02-23 12:49:06.626 2024-02-23 12:49:06.626 20700 TIP 435928 1745 6042320 2024-02-23 12:49:08.499 2024-02-23 12:49:08.499 2300 FEE 435928 11164 6042321 2024-02-23 12:49:08.499 2024-02-23 12:49:08.499 20700 TIP 435928 6419 6042328 2024-02-23 12:49:09.196 2024-02-23 12:49:09.196 2300 FEE 435928 2264 6042329 2024-02-23 12:49:09.196 2024-02-23 12:49:09.196 20700 TIP 435928 4768 6042351 2024-02-23 12:49:17.886 2024-02-23 12:49:17.886 2300 FEE 435928 5565 6042352 2024-02-23 12:49:17.886 2024-02-23 12:49:17.886 20700 TIP 435928 19531 6042357 2024-02-23 12:49:18.389 2024-02-23 12:49:18.389 2300 FEE 435928 11698 6042358 2024-02-23 12:49:18.389 2024-02-23 12:49:18.389 20700 TIP 435928 18500 6042371 2024-02-23 12:49:21.339 2024-02-23 12:49:21.339 2300 FEE 435928 5746 6041863 2024-02-23 11:49:15.291 2024-02-23 11:49:15.291 100 FEE 436063 2502 6041864 2024-02-23 11:49:15.291 2024-02-23 11:49:15.291 900 TIP 436063 2502 6041868 2024-02-23 11:50:02.517 2024-02-23 11:50:02.517 100 FEE 436036 20775 6041869 2024-02-23 11:50:02.517 2024-02-23 11:50:02.517 900 TIP 436036 9843 6041882 2024-02-23 11:51:21.796 2024-02-23 11:51:21.796 2100 FEE 436048 3392 6041883 2024-02-23 11:51:21.796 2024-02-23 11:51:21.796 18900 TIP 436048 20306 6041888 2024-02-23 11:51:35.022 2024-02-23 11:51:35.022 2100 FEE 436017 5520 6041889 2024-02-23 11:51:35.022 2024-02-23 11:51:35.022 18900 TIP 436017 15075 6041948 2024-02-23 11:56:05.919 2024-02-23 11:56:05.919 100000 FEE 436076 3377 6041952 2024-02-23 11:56:50.965 2024-02-23 11:56:50.965 1600 FEE 436076 21469 6041953 2024-02-23 11:56:50.965 2024-02-23 11:56:50.965 14400 TIP 436076 4014 6041957 2024-02-23 11:57:20.474 2024-02-23 11:57:20.474 1000 FEE 436078 13753 6041974 2024-02-23 11:59:50.594 2024-02-23 11:59:50.594 4200 FEE 435135 1602 6041975 2024-02-23 11:59:50.594 2024-02-23 11:59:50.594 37800 TIP 435135 1010 6041978 2024-02-23 12:00:33.489 2024-02-23 12:00:33.489 100 FEE 435936 19795 6041979 2024-02-23 12:00:33.489 2024-02-23 12:00:33.489 900 TIP 435936 981 6041980 2024-02-23 12:00:36.131 2024-02-23 12:00:36.131 100 FEE 435936 19910 6041981 2024-02-23 12:00:36.131 2024-02-23 12:00:36.131 900 TIP 435936 1603 6041986 2024-02-23 12:01:47.899 2024-02-23 12:01:47.899 0 FEE 4177 10944 6042031 2024-02-23 12:13:40.825 2024-02-23 12:13:40.825 1000 POLL 436036 13143 6042050 2024-02-23 12:20:33.575 2024-02-23 12:20:33.575 100 FEE 436085 769 6042051 2024-02-23 12:20:33.575 2024-02-23 12:20:33.575 900 TIP 436085 19732 6042075 2024-02-23 12:24:11.025 2024-02-23 12:24:11.025 2100 FEE 436047 18452 6042076 2024-02-23 12:24:11.025 2024-02-23 12:24:11.025 18900 TIP 436047 19826 6042081 2024-02-23 12:24:54.126 2024-02-23 12:24:54.126 2100 FEE 436066 20500 6042082 2024-02-23 12:24:54.126 2024-02-23 12:24:54.126 18900 TIP 436066 18832 6042098 2024-02-23 12:25:41.612 2024-02-23 12:25:41.612 1000 FEE 436092 5195 6042107 2024-02-23 12:27:07.114 2024-02-23 12:27:07.114 1000 FEE 436095 19263 6042112 2024-02-23 12:27:28.001 2024-02-23 12:27:28.001 2100 FEE 435154 7553 6042113 2024-02-23 12:27:28.001 2024-02-23 12:27:28.001 18900 TIP 435154 21480 6042115 2024-02-23 12:27:46.163 2024-02-23 12:27:46.163 1000 FEE 436097 17291 6042118 2024-02-23 12:28:32.436 2024-02-23 12:28:32.436 1000 FEE 436099 16556 6042148 2024-02-23 12:35:15.03 2024-02-23 12:35:15.03 21000 FEE 436100 20450 6042149 2024-02-23 12:35:15.03 2024-02-23 12:35:15.03 189000 TIP 436100 11165 6042159 2024-02-23 12:36:12.004 2024-02-23 12:36:12.004 1000 FEE 435780 2757 6042160 2024-02-23 12:36:12.004 2024-02-23 12:36:12.004 9000 TIP 435780 21591 6112400 2024-02-29 13:41:20.287 2024-02-29 13:41:20.287 9000 TIP 442904 965 6112413 2024-02-29 13:41:21.341 2024-02-29 13:41:21.341 2000 FEE 442904 714 6112414 2024-02-29 13:41:21.341 2024-02-29 13:41:21.341 18000 TIP 442904 18230 6112421 2024-02-29 13:41:22.159 2024-02-29 13:41:22.159 1000 FEE 442904 14552 6112422 2024-02-29 13:41:22.159 2024-02-29 13:41:22.159 9000 TIP 442904 18745 6112431 2024-02-29 13:41:23.094 2024-02-29 13:41:23.094 1000 FEE 442904 20710 6112432 2024-02-29 13:41:23.094 2024-02-29 13:41:23.094 9000 TIP 442904 14489 6112463 2024-02-29 13:41:30.964 2024-02-29 13:41:30.964 1000 FEE 442904 13097 6112464 2024-02-29 13:41:30.964 2024-02-29 13:41:30.964 9000 TIP 442904 6148 6112491 2024-02-29 13:41:34.496 2024-02-29 13:41:34.496 1000 FEE 442904 697 6112492 2024-02-29 13:41:34.496 2024-02-29 13:41:34.496 9000 TIP 442904 14663 6112533 2024-02-29 13:41:40.711 2024-02-29 13:41:40.711 1000 FEE 442904 21033 6112534 2024-02-29 13:41:40.711 2024-02-29 13:41:40.711 9000 TIP 442904 14663 6112548 2024-02-29 13:43:48.067 2024-02-29 13:43:48.067 1000 FEE 443477 4304 6112553 2024-02-29 13:45:11.704 2024-02-29 13:45:11.704 6900 FEE 443470 12072 6112554 2024-02-29 13:45:11.704 2024-02-29 13:45:11.704 62100 TIP 443470 21047 6112557 2024-02-29 13:46:07.235 2024-02-29 13:46:07.235 1000 FEE 443481 21157 6112569 2024-02-29 13:48:16.647 2024-02-29 13:48:16.647 50000 FEE 443038 4250 6112570 2024-02-29 13:48:16.647 2024-02-29 13:48:16.647 450000 TIP 443038 7966 6112578 2024-02-29 13:49:27.809 2024-02-29 13:49:27.809 50000 FEE 443038 1180 6112579 2024-02-29 13:49:27.809 2024-02-29 13:49:27.809 450000 TIP 443038 11423 6112582 2024-02-29 13:51:57.307 2024-02-29 13:51:57.307 11000 FEE 443487 17797 6112598 2024-02-29 13:52:59.099 2024-02-29 13:52:59.099 1000 FEE 443492 5128 6112628 2024-02-29 13:55:33.561 2024-02-29 13:55:33.561 500 FEE 442084 2309 6112629 2024-02-29 13:55:33.561 2024-02-29 13:55:33.561 4500 TIP 442084 616 6112634 2024-02-29 13:55:45.037 2024-02-29 13:55:45.037 1000 FEE 443497 16876 6112644 2024-02-29 13:56:45.561 2024-02-29 13:56:45.561 21000 FEE 443500 16353 6112648 2024-02-29 13:56:52.824 2024-02-29 13:56:52.824 1000 FEE 443502 11716 6112653 2024-02-29 13:58:17.103 2024-02-29 13:58:17.103 10000 FEE 436015 12721 6112654 2024-02-29 13:58:17.103 2024-02-29 13:58:17.103 90000 TIP 436015 19506 6112655 2024-02-29 13:58:24.512 2024-02-29 13:58:24.512 3100 FEE 442023 2390 6112656 2024-02-29 13:58:24.512 2024-02-29 13:58:24.512 27900 TIP 442023 10007 6112660 2024-02-29 13:58:40.385 2024-02-29 13:58:40.385 0 FEE 443500 7989 6041917 2024-02-23 11:53:28.411 2024-02-23 11:53:28.411 18900 TIP 435981 20881 6041940 2024-02-23 11:54:47.306 2024-02-23 11:54:47.306 2100 FEE 435826 12291 6041941 2024-02-23 11:54:47.306 2024-02-23 11:54:47.306 18900 TIP 435826 1596 6042009 2024-02-23 12:10:01.052 2024-02-23 12:10:01.052 100 FEE 435944 11678 6042010 2024-02-23 12:10:01.052 2024-02-23 12:10:01.052 900 TIP 435944 1890 6042028 2024-02-23 12:12:42.195 2024-02-23 12:12:42.195 1100 FEE 436066 14910 6042029 2024-02-23 12:12:42.195 2024-02-23 12:12:42.195 9900 TIP 436066 5520 6042042 2024-02-23 12:17:44.438 2024-02-23 12:17:44.438 1000 FEE 436090 7891 6042053 2024-02-23 12:21:28.531 2024-02-23 12:21:28.531 100 FEE 436082 5173 6042054 2024-02-23 12:21:28.531 2024-02-23 12:21:28.531 900 TIP 436082 4574 6042092 2024-02-23 12:25:09.792 2024-02-23 12:25:09.792 1000 FEE 435861 20979 6042093 2024-02-23 12:25:09.792 2024-02-23 12:25:09.792 9000 TIP 435861 4128 6042100 2024-02-23 12:26:08.724 2024-02-23 12:26:08.724 2100 FEE 435639 21491 6042101 2024-02-23 12:26:08.724 2024-02-23 12:26:08.724 18900 TIP 435639 859 6042143 2024-02-23 12:35:08.183 2024-02-23 12:35:08.183 700 FEE 435832 993 6042144 2024-02-23 12:35:08.183 2024-02-23 12:35:08.183 6300 TIP 435832 20560 6042164 2024-02-23 12:38:00.203 2024-02-23 12:38:00.203 300 FEE 435721 9276 6042165 2024-02-23 12:38:00.203 2024-02-23 12:38:00.203 2700 TIP 435721 725 6042193 2024-02-23 12:41:35.635 2024-02-23 12:41:35.635 0 FEE 436113 10007 6042196 2024-02-23 12:42:03.359 2024-02-23 12:42:03.359 1000 FEE 436114 21131 6042200 2024-02-23 12:43:46.711 2024-02-23 12:43:46.711 2800 FEE 436114 1141 6042201 2024-02-23 12:43:46.711 2024-02-23 12:43:46.711 25200 TIP 436114 4574 6042214 2024-02-23 12:47:22.54 2024-02-23 12:47:22.54 1000 FEE 436120 7869 6042219 2024-02-23 12:48:29.039 2024-02-23 12:48:29.039 0 FEE 436119 21619 6042224 2024-02-23 12:48:46.542 2024-02-23 12:48:46.542 4000 FEE 436072 20179 6042225 2024-02-23 12:48:46.542 2024-02-23 12:48:46.542 36000 TIP 436072 18892 6042238 2024-02-23 12:48:58.864 2024-02-23 12:48:58.864 2300 FEE 435928 10611 6042239 2024-02-23 12:48:58.864 2024-02-23 12:48:58.864 20700 TIP 435928 17741 6042280 2024-02-23 12:49:02.802 2024-02-23 12:49:02.802 2300 FEE 435928 20117 6042281 2024-02-23 12:49:02.802 2024-02-23 12:49:02.802 20700 TIP 435928 21523 6042332 2024-02-23 12:49:10.353 2024-02-23 12:49:10.353 2300 FEE 435928 2722 6042333 2024-02-23 12:49:10.353 2024-02-23 12:49:10.353 20700 TIP 435928 20973 6042345 2024-02-23 12:49:17.395 2024-02-23 12:49:17.395 2300 FEE 435928 21155 6042346 2024-02-23 12:49:17.395 2024-02-23 12:49:17.395 20700 TIP 435928 11516 6042349 2024-02-23 12:49:17.716 2024-02-23 12:49:17.716 2300 FEE 435928 21201 6042350 2024-02-23 12:49:17.716 2024-02-23 12:49:17.716 20700 TIP 435928 19034 6042353 2024-02-23 12:49:18.058 2024-02-23 12:49:18.058 2300 FEE 435928 21314 6042354 2024-02-23 12:49:18.058 2024-02-23 12:49:18.058 20700 TIP 435928 19773 6042361 2024-02-23 12:49:19.851 2024-02-23 12:49:19.851 2300 FEE 435928 14247 6042362 2024-02-23 12:49:19.851 2024-02-23 12:49:19.851 20700 TIP 435928 18446 6042369 2024-02-23 12:49:20.996 2024-02-23 12:49:20.996 2300 FEE 435928 16839 6042370 2024-02-23 12:49:20.996 2024-02-23 12:49:20.996 20700 TIP 435928 18387 6042397 2024-02-23 12:49:23.524 2024-02-23 12:49:23.524 2300 FEE 435928 20045 6042398 2024-02-23 12:49:23.524 2024-02-23 12:49:23.524 20700 TIP 435928 1738 6042401 2024-02-23 12:49:23.891 2024-02-23 12:49:23.891 2300 FEE 435928 1825 6042402 2024-02-23 12:49:23.891 2024-02-23 12:49:23.891 20700 TIP 435928 16670 6042403 2024-02-23 12:49:24.06 2024-02-23 12:49:24.06 2300 FEE 435928 18017 6042404 2024-02-23 12:49:24.06 2024-02-23 12:49:24.06 20700 TIP 435928 17172 6042451 2024-02-23 12:50:11.156 2024-02-23 12:50:11.156 2300 FEE 435847 18402 6042452 2024-02-23 12:50:11.156 2024-02-23 12:50:11.156 20700 TIP 435847 20613 6042453 2024-02-23 12:50:11.34 2024-02-23 12:50:11.34 2300 FEE 435847 10719 6042454 2024-02-23 12:50:11.34 2024-02-23 12:50:11.34 20700 TIP 435847 21157 6042476 2024-02-23 12:50:13.572 2024-02-23 12:50:13.572 2300 FEE 435847 12139 6042477 2024-02-23 12:50:13.572 2024-02-23 12:50:13.572 20700 TIP 435847 17392 6042478 2024-02-23 12:50:13.754 2024-02-23 12:50:13.754 2300 FEE 435847 9352 6042479 2024-02-23 12:50:13.754 2024-02-23 12:50:13.754 20700 TIP 435847 11789 6042500 2024-02-23 12:50:37.701 2024-02-23 12:50:37.701 2300 FEE 435944 4958 6042501 2024-02-23 12:50:37.701 2024-02-23 12:50:37.701 20700 TIP 435944 16229 6042538 2024-02-23 12:51:09.739 2024-02-23 12:51:09.739 4000 FEE 436053 18731 6042539 2024-02-23 12:51:09.739 2024-02-23 12:51:09.739 36000 TIP 436053 18174 6042545 2024-02-23 12:51:39.295 2024-02-23 12:51:39.295 0 FEE 436126 4345 6042556 2024-02-23 12:53:14.789 2024-02-23 12:53:14.789 300 FEE 435914 9476 6042557 2024-02-23 12:53:14.789 2024-02-23 12:53:14.789 2700 TIP 435914 1051 6041973 2024-02-23 11:59:47.42 2024-02-23 11:59:47.42 1800 TIP 436076 19531 6041987 2024-02-23 12:01:48.986 2024-02-23 12:01:48.986 1000 POLL 435516 4175 6041996 2024-02-23 12:05:00.333 2024-02-23 12:05:00.333 1600 FEE 436082 18309 6041997 2024-02-23 12:05:00.333 2024-02-23 12:05:00.333 14400 TIP 436082 8284 6042017 2024-02-23 12:11:20.093 2024-02-23 12:11:20.093 2100 FEE 435944 2061 6042018 2024-02-23 12:11:20.093 2024-02-23 12:11:20.093 18900 TIP 435944 2101 6042027 2024-02-23 12:12:39.398 2024-02-23 12:12:39.398 1000 FEE 436085 16447 6042033 2024-02-23 12:13:49.087 2024-02-23 12:13:49.087 1000 FEE 436087 8242 6042035 2024-02-23 12:14:31.528 2024-02-23 12:14:31.528 1000 FEE 436088 3642 6042043 2024-02-23 12:17:53.32 2024-02-23 12:17:53.32 100000 FEE 435944 21014 6042044 2024-02-23 12:17:53.32 2024-02-23 12:17:53.32 900000 TIP 435944 12721 6042070 2024-02-23 12:23:58.399 2024-02-23 12:23:58.399 2100 FEE 435912 20745 6042071 2024-02-23 12:23:58.399 2024-02-23 12:23:58.399 18900 TIP 435912 12220 6042072 2024-02-23 12:24:01.509 2024-02-23 12:24:01.509 2100 FEE 435905 16830 6042073 2024-02-23 12:24:01.509 2024-02-23 12:24:01.509 18900 TIP 435905 1720 6042126 2024-02-23 12:29:46.787 2024-02-23 12:29:46.787 1000 FEE 436101 18862 6042128 2024-02-23 12:30:16.453 2024-02-23 12:30:16.453 0 FEE 436100 21145 6042161 2024-02-23 12:36:22.899 2024-02-23 12:36:22.899 200 FEE 436091 9353 6042162 2024-02-23 12:36:22.899 2024-02-23 12:36:22.899 1800 TIP 436091 1705 6042176 2024-02-23 12:39:38.283 2024-02-23 12:39:38.283 1000 FEE 436108 21427 6042189 2024-02-23 12:40:46.16 2024-02-23 12:40:46.16 1000 FEE 436111 21627 6042194 2024-02-23 12:41:55.209 2024-02-23 12:41:55.209 1000 FEE 436062 2204 6042195 2024-02-23 12:41:55.209 2024-02-23 12:41:55.209 9000 TIP 436062 19103 6042199 2024-02-23 12:43:07.312 2024-02-23 12:43:07.312 1000 FEE 436115 13361 6042203 2024-02-23 12:44:28.227 2024-02-23 12:44:28.227 1000 FEE 436117 5557 6042220 2024-02-23 12:48:30.732 2024-02-23 12:48:30.732 4000 FEE 436097 18387 6042221 2024-02-23 12:48:30.732 2024-02-23 12:48:30.732 36000 TIP 436097 9330 6042232 2024-02-23 12:48:58.034 2024-02-23 12:48:58.034 2300 FEE 435928 20980 6042233 2024-02-23 12:48:58.034 2024-02-23 12:48:58.034 20700 TIP 435928 1814 6042250 2024-02-23 12:48:59.9 2024-02-23 12:48:59.9 2300 FEE 435928 18772 6042251 2024-02-23 12:48:59.9 2024-02-23 12:48:59.9 20700 TIP 435928 20751 6042268 2024-02-23 12:49:01.743 2024-02-23 12:49:01.743 2300 FEE 435928 7760 6042269 2024-02-23 12:49:01.743 2024-02-23 12:49:01.743 20700 TIP 435928 987 6042302 2024-02-23 12:49:06.449 2024-02-23 12:49:06.449 2300 FEE 435928 16176 6042303 2024-02-23 12:49:06.449 2024-02-23 12:49:06.449 20700 TIP 435928 5865 6042314 2024-02-23 12:49:07.969 2024-02-23 12:49:07.969 2300 FEE 435928 21437 6042315 2024-02-23 12:49:07.969 2024-02-23 12:49:07.969 20700 TIP 435928 20439 6042316 2024-02-23 12:49:08.162 2024-02-23 12:49:08.162 2300 FEE 435928 5791 6042317 2024-02-23 12:49:08.162 2024-02-23 12:49:08.162 20700 TIP 435928 2529 6042338 2024-02-23 12:49:10.908 2024-02-23 12:49:10.908 2300 FEE 435928 16543 6042339 2024-02-23 12:49:10.908 2024-02-23 12:49:10.908 20700 TIP 435928 15052 6042375 2024-02-23 12:49:21.51 2024-02-23 12:49:21.51 2300 FEE 435928 1577 6042376 2024-02-23 12:49:21.51 2024-02-23 12:49:21.51 20700 TIP 435928 1631 6042377 2024-02-23 12:49:21.682 2024-02-23 12:49:21.682 2300 FEE 435928 9844 6042378 2024-02-23 12:49:21.682 2024-02-23 12:49:21.682 20700 TIP 435928 18663 6042384 2024-02-23 12:49:22.208 2024-02-23 12:49:22.208 2300 FEE 435928 16357 6042385 2024-02-23 12:49:22.208 2024-02-23 12:49:22.208 20700 TIP 435928 14045 6042395 2024-02-23 12:49:23.45 2024-02-23 12:49:23.45 2300 FEE 435928 18727 6042396 2024-02-23 12:49:23.45 2024-02-23 12:49:23.45 20700 TIP 435928 20424 6042425 2024-02-23 12:50:08.597 2024-02-23 12:50:08.597 2300 FEE 435847 15326 6042426 2024-02-23 12:50:08.597 2024-02-23 12:50:08.597 20700 TIP 435847 18828 6042429 2024-02-23 12:50:08.978 2024-02-23 12:50:08.978 2300 FEE 435847 679 6042430 2024-02-23 12:50:08.978 2024-02-23 12:50:08.978 20700 TIP 435847 5306 6042435 2024-02-23 12:50:09.695 2024-02-23 12:50:09.695 2300 FEE 435847 6003 6042436 2024-02-23 12:50:09.695 2024-02-23 12:50:09.695 20700 TIP 435847 21506 6042447 2024-02-23 12:50:10.75 2024-02-23 12:50:10.75 2300 FEE 435847 8176 6042448 2024-02-23 12:50:10.75 2024-02-23 12:50:10.75 20700 TIP 435847 7992 6042449 2024-02-23 12:50:10.962 2024-02-23 12:50:10.962 2300 FEE 435847 20337 6042450 2024-02-23 12:50:10.962 2024-02-23 12:50:10.962 20700 TIP 435847 19569 6042464 2024-02-23 12:50:12.264 2024-02-23 12:50:12.264 2300 FEE 435847 20781 6042465 2024-02-23 12:50:12.264 2024-02-23 12:50:12.264 20700 TIP 435847 4225 6042506 2024-02-23 12:50:38.246 2024-02-23 12:50:38.246 2300 FEE 435944 9364 6042507 2024-02-23 12:50:38.246 2024-02-23 12:50:38.246 20700 TIP 435944 18601 6042564 2024-02-23 12:53:59.634 2024-02-23 12:53:59.634 1000 FEE 435847 18539 6042565 2024-02-23 12:53:59.634 2024-02-23 12:53:59.634 9000 TIP 435847 20525 6042583 2024-02-23 12:56:20.128 2024-02-23 12:56:20.128 1000 FEE 436131 15060 6042586 2024-02-23 12:57:55.586 2024-02-23 12:57:55.586 1000 FEE 436133 10359 6042679 2024-02-23 13:04:27.825 2024-02-23 13:04:27.825 900 FEE 435904 876 6042680 2024-02-23 13:04:27.825 2024-02-23 13:04:27.825 8100 TIP 435904 12278 6042681 2024-02-23 13:04:28.578 2024-02-23 13:04:28.578 9000 FEE 435904 1692 6042682 2024-02-23 13:04:28.578 2024-02-23 13:04:28.578 81000 TIP 435904 1000 6042701 2024-02-23 13:05:03.593 2024-02-23 13:05:03.593 900 FEE 436021 6041 6042702 2024-02-23 13:05:03.593 2024-02-23 13:05:03.593 8100 TIP 436021 630 6042735 2024-02-23 13:07:48.447 2024-02-23 13:07:48.447 900 FEE 436075 1307 6042736 2024-02-23 13:07:48.447 2024-02-23 13:07:48.447 8100 TIP 436075 16432 6042749 2024-02-23 13:08:42.311 2024-02-23 13:08:42.311 500 FEE 435944 18291 6042750 2024-02-23 13:08:42.311 2024-02-23 13:08:42.311 4500 TIP 435944 19471 6042788 2024-02-23 13:10:54.01 2024-02-23 13:10:54.01 500 FEE 435580 18174 6042789 2024-02-23 13:10:54.01 2024-02-23 13:10:54.01 4500 TIP 435580 2196 6042799 2024-02-23 13:11:07.449 2024-02-23 13:11:07.449 900 FEE 435924 1825 6042800 2024-02-23 13:11:07.449 2024-02-23 13:11:07.449 8100 TIP 435924 20412 6042857 2024-02-23 13:14:07.063 2024-02-23 13:14:07.063 900 FEE 436015 21012 6042858 2024-02-23 13:14:07.063 2024-02-23 13:14:07.063 8100 TIP 436015 616 6042887 2024-02-23 13:16:29.174 2024-02-23 13:16:29.174 900 FEE 436147 20619 6042888 2024-02-23 13:16:29.174 2024-02-23 13:16:29.174 8100 TIP 436147 19471 6042896 2024-02-23 13:16:42.645 2024-02-23 13:16:42.645 100 FEE 436153 1142 6042897 2024-02-23 13:16:42.645 2024-02-23 13:16:42.645 900 TIP 436153 2338 6042902 2024-02-23 13:17:07.798 2024-02-23 13:17:07.798 100 FEE 238583 980 6042903 2024-02-23 13:17:07.798 2024-02-23 13:17:07.798 900 TIP 238583 8506 6042904 2024-02-23 13:17:35.607 2024-02-23 13:17:35.607 100 FEE 435944 21556 6042905 2024-02-23 13:17:35.607 2024-02-23 13:17:35.607 900 TIP 435944 6471 6042922 2024-02-23 13:19:01.705 2024-02-23 13:19:01.705 500 FEE 434535 17673 6042923 2024-02-23 13:19:01.705 2024-02-23 13:19:01.705 4500 TIP 434535 13544 6042924 2024-02-23 13:19:01.805 2024-02-23 13:19:01.805 500 FEE 434535 20102 6042925 2024-02-23 13:19:01.805 2024-02-23 13:19:01.805 4500 TIP 434535 20560 6042941 2024-02-23 13:20:28.122 2024-02-23 13:20:28.122 2700 FEE 435834 19463 6042942 2024-02-23 13:20:28.122 2024-02-23 13:20:28.122 24300 TIP 435834 17523 6042960 2024-02-23 13:23:02.481 2024-02-23 13:23:02.481 1000 FEE 436168 7125 6042977 2024-02-23 13:23:13.111 2024-02-23 13:23:13.111 2700 FEE 435663 1718 6042978 2024-02-23 13:23:13.111 2024-02-23 13:23:13.111 24300 TIP 435663 1425 6042981 2024-02-23 13:23:13.483 2024-02-23 13:23:13.483 2700 FEE 435663 691 6042982 2024-02-23 13:23:13.483 2024-02-23 13:23:13.483 24300 TIP 435663 2460 6042038 2024-02-23 12:15:04.351 2024-02-23 12:15:04.351 1000 STREAM 141924 15978 6112516 2024-02-29 13:41:37.264 2024-02-29 13:41:37.264 9000 TIP 442904 19322 6112517 2024-02-29 13:41:37.461 2024-02-29 13:41:37.461 1000 FEE 442904 20109 6112518 2024-02-29 13:41:37.461 2024-02-29 13:41:37.461 9000 TIP 442904 18641 6112527 2024-02-29 13:41:38.651 2024-02-29 13:41:38.651 2000 FEE 442904 14489 6112528 2024-02-29 13:41:38.651 2024-02-29 13:41:38.651 18000 TIP 442904 5171 6112541 2024-02-29 13:43:28.018 2024-02-29 13:43:28.018 1000 FEE 443476 21371 6112544 2024-02-29 13:43:30.936 2024-02-29 13:43:30.936 1700 FEE 443152 18533 6112545 2024-02-29 13:43:30.936 2024-02-29 13:43:30.936 15300 TIP 443152 20581 6112567 2024-02-29 13:48:15.89 2024-02-29 13:48:15.89 10000 FEE 443477 19535 6112568 2024-02-29 13:48:15.89 2024-02-29 13:48:15.89 90000 TIP 443477 822 6112574 2024-02-29 13:48:54.212 2024-02-29 13:48:54.212 2100 FEE 443457 7966 6112575 2024-02-29 13:48:54.212 2024-02-29 13:48:54.212 18900 TIP 443457 20326 6112595 2024-02-29 13:52:36.839 2024-02-29 13:52:36.839 700 FEE 443487 704 6112596 2024-02-29 13:52:36.839 2024-02-29 13:52:36.839 6300 TIP 443487 1352 6112605 2024-02-29 13:53:57.637 2024-02-29 13:53:57.637 1000 FEE 443494 15526 6112630 2024-02-29 13:55:38.003 2024-02-29 13:55:38.003 500 FEE 442751 16250 6112631 2024-02-29 13:55:38.003 2024-02-29 13:55:38.003 4500 TIP 442751 8570 6112647 2024-02-29 13:56:50.857 2024-02-29 13:56:50.857 1000 FEE 443501 2039 6112657 2024-02-29 13:58:24.93 2024-02-29 13:58:24.93 27900 FEE 442023 21480 6112658 2024-02-29 13:58:24.93 2024-02-29 13:58:24.93 251100 TIP 442023 19967 6112665 2024-02-29 13:59:28.284 2024-02-29 13:59:28.284 0 FEE 443505 5085 6112669 2024-02-29 14:00:01.734 2024-02-29 14:00:01.734 1000 FEE 443507 8570 6112678 2024-02-29 14:00:25.844 2024-02-29 14:00:25.844 1000 FEE 443509 17091 6112684 2024-02-29 14:01:58.42 2024-02-29 14:01:58.42 27900 FEE 443399 6384 6112685 2024-02-29 14:01:58.42 2024-02-29 14:01:58.42 251100 TIP 443399 12566 6112697 2024-02-29 14:03:09.917 2024-02-29 14:03:09.917 1000 FEE 443514 11395 6112706 2024-02-29 14:04:12.255 2024-02-29 14:04:12.255 1000 FEE 443515 16193 6112718 2024-02-29 14:07:26.017 2024-02-29 14:07:26.017 1000 FEE 443518 19759 6112719 2024-02-29 14:07:26.017 2024-02-29 14:07:26.017 9000 TIP 443518 14651 6112731 2024-02-29 14:09:10.087 2024-02-29 14:09:10.087 0 FEE 443521 11477 6112778 2024-02-29 14:17:29.007 2024-02-29 14:17:29.007 1000 FEE 443535 16214 6112798 2024-02-29 14:19:17.861 2024-02-29 14:19:17.861 4800 FEE 443496 3456 6112799 2024-02-29 14:19:17.861 2024-02-29 14:19:17.861 43200 TIP 443496 713 6042048 2024-02-23 12:19:04.111 2024-02-23 12:19:04.111 1000 STREAM 141924 16387 6042049 2024-02-23 12:20:04.118 2024-02-23 12:20:04.118 1000 STREAM 141924 16193 6042052 2024-02-23 12:21:04.147 2024-02-23 12:21:04.147 1000 STREAM 141924 8726 6042055 2024-02-23 12:22:04.157 2024-02-23 12:22:04.157 1000 STREAM 141924 10554 6042074 2024-02-23 12:24:04.179 2024-02-23 12:24:04.179 1000 STREAM 141924 19689 6042106 2024-02-23 12:27:04.207 2024-02-23 12:27:04.207 1000 STREAM 141924 7992 6112522 2024-02-29 13:41:37.848 2024-02-29 13:41:37.848 9000 TIP 442904 1515 6112523 2024-02-29 13:41:38.011 2024-02-29 13:41:38.011 1000 FEE 442904 12097 6112524 2024-02-29 13:41:38.011 2024-02-29 13:41:38.011 9000 TIP 442904 2749 6112535 2024-02-29 13:41:50.852 2024-02-29 13:41:50.852 0 FEE 404172 16939 6112542 2024-02-29 13:43:30.648 2024-02-29 13:43:30.648 1700 FEE 443152 4958 6112543 2024-02-29 13:43:30.648 2024-02-29 13:43:30.648 15300 TIP 443152 2342 6112601 2024-02-29 13:53:25.424 2024-02-29 13:53:25.424 0 FEE 443490 19132 6112607 2024-02-29 13:54:14.528 2024-02-29 13:54:14.528 1000 FEE 443495 19117 6112624 2024-02-29 13:55:23.324 2024-02-29 13:55:23.324 3100 FEE 443339 21371 6112625 2024-02-29 13:55:23.324 2024-02-29 13:55:23.324 27900 TIP 443339 16847 6112691 2024-02-29 14:02:54.539 2024-02-29 14:02:54.539 1000 FEE 443513 20205 6112713 2024-02-29 14:06:08.294 2024-02-29 14:06:08.294 1000 FEE 443518 11999 6112724 2024-02-29 14:08:12.144 2024-02-29 14:08:12.144 2100 FEE 443399 21444 6112725 2024-02-29 14:08:12.144 2024-02-29 14:08:12.144 18900 TIP 443399 18941 6112737 2024-02-29 14:09:50.921 2024-02-29 14:09:50.921 1000 FEE 443523 6421 6112751 2024-02-29 14:12:23.637 2024-02-29 14:12:23.637 1000 FEE 443459 12222 6112752 2024-02-29 14:12:23.637 2024-02-29 14:12:23.637 9000 TIP 443459 644 6112770 2024-02-29 14:16:16.348 2024-02-29 14:16:16.348 97000 FEE 443532 21172 6112772 2024-02-29 14:16:41.33 2024-02-29 14:16:41.33 710000 FEE 438108 19546 6112773 2024-02-29 14:16:41.33 2024-02-29 14:16:41.33 6390000 TIP 438108 21369 6112784 2024-02-29 14:18:30.49 2024-02-29 14:18:30.49 5700 FEE 443531 21131 6112785 2024-02-29 14:18:30.49 2024-02-29 14:18:30.49 51300 TIP 443531 16178 6112786 2024-02-29 14:18:39.752 2024-02-29 14:18:39.752 1000 FEE 443454 19826 6112787 2024-02-29 14:18:39.752 2024-02-29 14:18:39.752 9000 TIP 443454 19036 6042056 2024-02-23 12:23:04.157 2024-02-23 12:23:04.157 1000 STREAM 141924 20562 6112556 2024-02-29 13:46:05.203 2024-02-29 13:46:05.203 1000 STREAM 141924 20889 6112583 2024-02-29 13:52:05.224 2024-02-29 13:52:05.224 1000 STREAM 141924 21233 6112686 2024-02-29 14:02:05.267 2024-02-29 14:02:05.267 1000 STREAM 141924 2329 6042099 2024-02-23 12:26:03.427 2024-02-23 12:26:03.427 1000 STREAM 141924 998 6042116 2024-02-23 12:28:03.718 2024-02-23 12:28:03.718 1000 STREAM 141924 19613 6042130 2024-02-23 12:31:03.755 2024-02-23 12:31:03.755 1000 STREAM 141924 20180 6042138 2024-02-23 12:33:03.782 2024-02-23 12:33:03.782 1000 STREAM 141924 15161 6042139 2024-02-23 12:34:03.812 2024-02-23 12:34:03.812 1000 STREAM 141924 8916 6042142 2024-02-23 12:35:03.805 2024-02-23 12:35:03.805 1000 STREAM 141924 12218 6042156 2024-02-23 12:36:03.788 2024-02-23 12:36:03.788 1000 STREAM 141924 19557 6042163 2024-02-23 12:37:03.818 2024-02-23 12:37:03.818 1000 STREAM 141924 8385 6042166 2024-02-23 12:38:03.832 2024-02-23 12:38:03.832 1000 STREAM 141924 21503 6042191 2024-02-23 12:41:03.855 2024-02-23 12:41:03.855 1000 STREAM 141924 20163 6042213 2024-02-23 12:47:03.894 2024-02-23 12:47:03.894 1000 STREAM 141924 16965 6042535 2024-02-23 12:51:03.928 2024-02-23 12:51:03.928 1000 STREAM 141924 2123 6042547 2024-02-23 12:52:03.919 2024-02-23 12:52:03.919 1000 STREAM 141924 14663 6042555 2024-02-23 12:53:03.937 2024-02-23 12:53:03.937 1000 STREAM 141924 15544 6042582 2024-02-23 12:56:03.93 2024-02-23 12:56:03.93 1000 STREAM 141924 681 6042587 2024-02-23 12:58:03.964 2024-02-23 12:58:03.964 1000 STREAM 141924 10060 6112581 2024-02-29 13:51:02.901 2024-02-29 13:51:02.901 1000 STREAM 141924 18862 6042206 2024-02-23 12:45:16.576 2024-02-23 12:45:16.576 0 FEE 436111 780 6042209 2024-02-23 12:46:28.384 2024-02-23 12:46:28.384 1000 FEE 435770 15474 6042210 2024-02-23 12:46:28.384 2024-02-23 12:46:28.384 9000 TIP 435770 18932 6042256 2024-02-23 12:49:00.427 2024-02-23 12:49:00.427 2300 FEE 435928 3979 6042257 2024-02-23 12:49:00.427 2024-02-23 12:49:00.427 20700 TIP 435928 20619 6042282 2024-02-23 12:49:02.97 2024-02-23 12:49:02.97 2300 FEE 435928 1745 6042283 2024-02-23 12:49:02.97 2024-02-23 12:49:02.97 20700 TIP 435928 18772 6042312 2024-02-23 12:49:07.809 2024-02-23 12:49:07.809 2300 FEE 435928 20504 6042313 2024-02-23 12:49:07.809 2024-02-23 12:49:07.809 20700 TIP 435928 8664 6042326 2024-02-23 12:49:09.034 2024-02-23 12:49:09.034 2300 FEE 435928 10549 6042327 2024-02-23 12:49:09.034 2024-02-23 12:49:09.034 20700 TIP 435928 20964 6042347 2024-02-23 12:49:17.559 2024-02-23 12:49:17.559 2300 FEE 435928 10611 6042348 2024-02-23 12:49:17.559 2024-02-23 12:49:17.559 20700 TIP 435928 2537 6042379 2024-02-23 12:49:21.841 2024-02-23 12:49:21.841 2300 FEE 435928 20826 6042380 2024-02-23 12:49:21.841 2024-02-23 12:49:21.841 20700 TIP 435928 17513 6042407 2024-02-23 12:49:24.745 2024-02-23 12:49:24.745 2300 FEE 435928 18372 6042408 2024-02-23 12:49:24.745 2024-02-23 12:49:24.745 20700 TIP 435928 15180 6042417 2024-02-23 12:49:36.472 2024-02-23 12:49:36.472 1000 FEE 436123 4238 6042418 2024-02-23 12:49:46.716 2024-02-23 12:49:46.716 1000 FEE 436124 19535 6042419 2024-02-23 12:49:59.597 2024-02-23 12:49:59.597 0 FEE 436119 21588 6042423 2024-02-23 12:50:08.422 2024-02-23 12:50:08.422 2300 FEE 435847 15806 6042424 2024-02-23 12:50:08.422 2024-02-23 12:50:08.422 20700 TIP 435847 20606 6042468 2024-02-23 12:50:12.815 2024-02-23 12:50:12.815 2100 FEE 435946 21194 6042469 2024-02-23 12:50:12.815 2024-02-23 12:50:12.815 18900 TIP 435946 21159 6042470 2024-02-23 12:50:13.065 2024-02-23 12:50:13.065 2300 FEE 435847 1429 6042471 2024-02-23 12:50:13.065 2024-02-23 12:50:13.065 20700 TIP 435847 14045 6042474 2024-02-23 12:50:13.472 2024-02-23 12:50:13.472 2300 FEE 435847 992 6042475 2024-02-23 12:50:13.472 2024-02-23 12:50:13.472 20700 TIP 435847 19553 6042480 2024-02-23 12:50:14.363 2024-02-23 12:50:14.363 2300 FEE 435847 20998 6042481 2024-02-23 12:50:14.363 2024-02-23 12:50:14.363 20700 TIP 435847 2367 6042486 2024-02-23 12:50:14.915 2024-02-23 12:50:14.915 2300 FEE 435847 19148 6042487 2024-02-23 12:50:14.915 2024-02-23 12:50:14.915 20700 TIP 435847 16830 6042502 2024-02-23 12:50:37.892 2024-02-23 12:50:37.892 2300 FEE 435944 21620 6042503 2024-02-23 12:50:37.892 2024-02-23 12:50:37.892 20700 TIP 435944 14308 6042508 2024-02-23 12:50:38.511 2024-02-23 12:50:38.511 2300 FEE 435944 20073 6042509 2024-02-23 12:50:38.511 2024-02-23 12:50:38.511 20700 TIP 435944 17953 6042530 2024-02-23 12:50:40.821 2024-02-23 12:50:40.821 2300 FEE 435944 634 6042531 2024-02-23 12:50:40.821 2024-02-23 12:50:40.821 20700 TIP 435944 6573 6042532 2024-02-23 12:50:43.792 2024-02-23 12:50:43.792 1000 FEE 436126 20861 6042540 2024-02-23 12:51:10.222 2024-02-23 12:51:10.222 4000 FEE 436053 20889 6042541 2024-02-23 12:51:10.222 2024-02-23 12:51:10.222 36000 TIP 436053 674 6042542 2024-02-23 12:51:10.538 2024-02-23 12:51:10.538 4000 FEE 436053 17722 6042543 2024-02-23 12:51:10.538 2024-02-23 12:51:10.538 36000 TIP 436053 21541 6042550 2024-02-23 12:52:31.396 2024-02-23 12:52:31.396 4000 FEE 434801 699 6042551 2024-02-23 12:52:31.396 2024-02-23 12:52:31.396 36000 TIP 434801 19126 6042581 2024-02-23 12:55:52.679 2024-02-23 12:55:52.679 1000 FEE 436130 900 6042592 2024-02-23 12:58:13.321 2024-02-23 12:58:13.321 10000 FEE 435948 18344 6042593 2024-02-23 12:58:13.321 2024-02-23 12:58:13.321 90000 TIP 435948 9336 6042609 2024-02-23 13:00:40.794 2024-02-23 13:00:40.794 1000 FEE 436137 14169 6042629 2024-02-23 13:02:34.626 2024-02-23 13:02:34.626 1100 FEE 435596 7913 6042630 2024-02-23 13:02:34.626 2024-02-23 13:02:34.626 9900 TIP 435596 1401 6042637 2024-02-23 13:02:38.663 2024-02-23 13:02:38.663 1100 FEE 435847 2844 6042638 2024-02-23 13:02:38.663 2024-02-23 13:02:38.663 9900 TIP 435847 12024 6042670 2024-02-23 13:03:11.222 2024-02-23 13:03:11.222 1100 FEE 435944 2609 6042671 2024-02-23 13:03:11.222 2024-02-23 13:03:11.222 9900 TIP 435944 17541 6042693 2024-02-23 13:04:54.414 2024-02-23 13:04:54.414 9000 FEE 436001 13878 6042694 2024-02-23 13:04:54.414 2024-02-23 13:04:54.414 81000 TIP 436001 2528 6042713 2024-02-23 13:05:22.425 2024-02-23 13:05:22.425 2000 FEE 436036 18291 6042714 2024-02-23 13:05:22.425 2024-02-23 13:05:22.425 18000 TIP 436036 16598 6042732 2024-02-23 13:07:39.341 2024-02-23 13:07:39.341 10000 FEE 436149 4415 6042756 2024-02-23 13:09:31.109 2024-02-23 13:09:31.109 300 FEE 436115 4459 6042757 2024-02-23 13:09:31.109 2024-02-23 13:09:31.109 2700 TIP 436115 1245 6042758 2024-02-23 13:09:31.593 2024-02-23 13:09:31.593 500 FEE 435944 11821 6042759 2024-02-23 13:09:31.593 2024-02-23 13:09:31.593 4500 TIP 435944 3729 6042786 2024-02-23 13:10:53.921 2024-02-23 13:10:53.921 500 FEE 435580 5520 6042787 2024-02-23 13:10:53.921 2024-02-23 13:10:53.921 4500 TIP 435580 18500 6042850 2024-02-23 13:14:02.391 2024-02-23 13:14:02.391 300 FEE 435970 19189 6042851 2024-02-23 13:14:02.391 2024-02-23 13:14:02.391 2700 TIP 435970 18274 6042855 2024-02-23 13:14:06.729 2024-02-23 13:14:06.729 100 FEE 436015 1038 6042856 2024-02-23 13:14:06.729 2024-02-23 13:14:06.729 900 TIP 436015 1298 6042861 2024-02-23 13:14:29.43 2024-02-23 13:14:29.43 2100 FEE 435328 18816 6042862 2024-02-23 13:14:29.43 2024-02-23 13:14:29.43 18900 TIP 435328 642 6042871 2024-02-23 13:15:32.863 2024-02-23 13:15:32.863 900 FEE 436093 708 6042872 2024-02-23 13:15:32.863 2024-02-23 13:15:32.863 8100 TIP 436093 10771 6042875 2024-02-23 13:15:34.612 2024-02-23 13:15:34.612 1000 FEE 436159 10728 6042916 2024-02-23 13:18:52.793 2024-02-23 13:18:52.793 500 FEE 435895 9339 6042917 2024-02-23 13:18:52.793 2024-02-23 13:18:52.793 4500 TIP 435895 17592 6042962 2024-02-23 13:23:06.236 2024-02-23 13:23:06.236 0 FEE 436167 16194 6042969 2024-02-23 13:23:12.344 2024-02-23 13:23:12.344 2700 FEE 435663 11714 6042970 2024-02-23 13:23:12.344 2024-02-23 13:23:12.344 24300 TIP 435663 11670 6043020 2024-02-23 13:26:01.335 2024-02-23 13:26:01.335 10000 FEE 436148 20470 6043021 2024-02-23 13:26:01.335 2024-02-23 13:26:01.335 90000 TIP 436148 20816 6043030 2024-02-23 13:27:04.434 2024-02-23 13:27:04.434 1000 FEE 436175 21344 6043031 2024-02-23 13:27:27.693 2024-02-23 13:27:27.693 1000 FEE 436176 15367 6043040 2024-02-23 13:27:31.883 2024-02-23 13:27:31.883 100 FEE 436123 661 6043041 2024-02-23 13:27:31.883 2024-02-23 13:27:31.883 900 TIP 436123 19320 6043057 2024-02-23 13:30:37.203 2024-02-23 13:30:37.203 10000 FEE 436181 20137 6043095 2024-02-23 13:43:04.929 2024-02-23 13:43:04.929 1000 FEE 436046 16124 6043096 2024-02-23 13:43:04.929 2024-02-23 13:43:04.929 9000 TIP 436046 19976 6043105 2024-02-23 13:43:58.8 2024-02-23 13:43:58.8 1000 FEE 436041 3544 6043106 2024-02-23 13:43:58.8 2024-02-23 13:43:58.8 9000 TIP 436041 20596 6043112 2024-02-23 13:45:55.525 2024-02-23 13:45:55.525 100 FEE 435629 2514 6043113 2024-02-23 13:45:55.525 2024-02-23 13:45:55.525 900 TIP 435629 1515 6043118 2024-02-23 13:46:29.288 2024-02-23 13:46:29.288 1000 FEE 436199 5757 6043119 2024-02-23 13:46:29.645 2024-02-23 13:46:29.645 100 FEE 436189 14552 6043120 2024-02-23 13:46:29.645 2024-02-23 13:46:29.645 900 TIP 436189 13903 6043122 2024-02-23 13:47:26.924 2024-02-23 13:47:26.924 10000 FEE 436201 8162 6043129 2024-02-23 13:48:41.784 2024-02-23 13:48:41.784 1000 FEE 436203 11999 6043130 2024-02-23 13:48:56.659 2024-02-23 13:48:56.659 0 FEE 436199 16447 6043140 2024-02-23 13:49:41.399 2024-02-23 13:49:41.399 1000 FEE 436044 18667 6043141 2024-02-23 13:49:41.399 2024-02-23 13:49:41.399 9000 TIP 436044 749 6043180 2024-02-23 13:51:20.242 2024-02-23 13:51:20.242 8300 FEE 436197 6537 6043181 2024-02-23 13:51:20.242 2024-02-23 13:51:20.242 74700 TIP 436197 13574 6042216 2024-02-23 12:47:43.127 2024-02-23 12:47:43.127 4000 FEE 436100 5694 6042217 2024-02-23 12:47:43.127 2024-02-23 12:47:43.127 36000 TIP 436100 18313 6042226 2024-02-23 12:48:57.554 2024-02-23 12:48:57.554 2300 FEE 435928 16301 6042227 2024-02-23 12:48:57.554 2024-02-23 12:48:57.554 20700 TIP 435928 11288 6042252 2024-02-23 12:49:00.091 2024-02-23 12:49:00.091 2300 FEE 435928 929 6042253 2024-02-23 12:49:00.091 2024-02-23 12:49:00.091 20700 TIP 435928 899 6042254 2024-02-23 12:49:00.276 2024-02-23 12:49:00.276 2300 FEE 435928 21339 6042255 2024-02-23 12:49:00.276 2024-02-23 12:49:00.276 20700 TIP 435928 11750 6042266 2024-02-23 12:49:01.572 2024-02-23 12:49:01.572 2300 FEE 435928 739 6042267 2024-02-23 12:49:01.572 2024-02-23 12:49:01.572 20700 TIP 435928 19992 6042289 2024-02-23 12:49:04.675 2024-02-23 12:49:04.675 1000 FEE 436122 16562 6042306 2024-02-23 12:49:06.804 2024-02-23 12:49:06.804 2300 FEE 435928 19906 6042307 2024-02-23 12:49:06.804 2024-02-23 12:49:06.804 20700 TIP 435928 3979 6042330 2024-02-23 12:49:09.333 2024-02-23 12:49:09.333 2300 FEE 435928 20998 6042331 2024-02-23 12:49:09.333 2024-02-23 12:49:09.333 20700 TIP 435928 20337 6042340 2024-02-23 12:49:11.071 2024-02-23 12:49:11.071 2300 FEE 435928 4322 6042341 2024-02-23 12:49:11.071 2024-02-23 12:49:11.071 20700 TIP 435928 17030 6042342 2024-02-23 12:49:11.251 2024-02-23 12:49:11.251 2300 FEE 435928 16353 6042343 2024-02-23 12:49:11.251 2024-02-23 12:49:11.251 20700 TIP 435928 18330 6042355 2024-02-23 12:49:18.228 2024-02-23 12:49:18.228 2300 FEE 435928 1244 6042356 2024-02-23 12:49:18.228 2024-02-23 12:49:18.228 20700 TIP 435928 1495 6042382 2024-02-23 12:49:21.997 2024-02-23 12:49:21.997 2300 FEE 435928 10280 6042383 2024-02-23 12:49:21.997 2024-02-23 12:49:21.997 20700 TIP 435928 14015 6042392 2024-02-23 12:49:22.885 2024-02-23 12:49:22.885 2300 FEE 435928 17226 6042393 2024-02-23 12:49:22.885 2024-02-23 12:49:22.885 20700 TIP 435928 1320 6042415 2024-02-23 12:49:25.391 2024-02-23 12:49:25.391 2300 FEE 435928 16788 6042416 2024-02-23 12:49:25.391 2024-02-23 12:49:25.391 20700 TIP 435928 1611 6042427 2024-02-23 12:50:08.768 2024-02-23 12:50:08.768 2300 FEE 435847 2347 6042428 2024-02-23 12:50:08.768 2024-02-23 12:50:08.768 20700 TIP 435847 11698 6042439 2024-02-23 12:50:10.127 2024-02-23 12:50:10.127 2300 FEE 435847 17713 6042440 2024-02-23 12:50:10.127 2024-02-23 12:50:10.127 20700 TIP 435847 17727 6042461 2024-02-23 12:50:12.075 2024-02-23 12:50:12.075 2300 FEE 435847 18641 6042462 2024-02-23 12:50:12.075 2024-02-23 12:50:12.075 20700 TIP 435847 18897 6042466 2024-02-23 12:50:12.444 2024-02-23 12:50:12.444 2300 FEE 435847 16193 6042467 2024-02-23 12:50:12.444 2024-02-23 12:50:12.444 20700 TIP 435847 20691 6042472 2024-02-23 12:50:13.269 2024-02-23 12:50:13.269 2300 FEE 435847 5017 6042473 2024-02-23 12:50:13.269 2024-02-23 12:50:13.269 20700 TIP 435847 5809 6042482 2024-02-23 12:50:14.545 2024-02-23 12:50:14.545 2300 FEE 435847 11670 6042483 2024-02-23 12:50:14.545 2024-02-23 12:50:14.545 20700 TIP 435847 18828 6042490 2024-02-23 12:50:15.478 2024-02-23 12:50:15.478 2300 FEE 435847 7998 6042491 2024-02-23 12:50:15.478 2024-02-23 12:50:15.478 20700 TIP 435847 10728 6042496 2024-02-23 12:50:30.382 2024-02-23 12:50:30.382 1600 FEE 436093 20243 6042497 2024-02-23 12:50:30.382 2024-02-23 12:50:30.382 14400 TIP 436093 20858 6042520 2024-02-23 12:50:39.682 2024-02-23 12:50:39.682 2300 FEE 435944 16440 6042521 2024-02-23 12:50:39.682 2024-02-23 12:50:39.682 20700 TIP 435944 9348 6042522 2024-02-23 12:50:39.85 2024-02-23 12:50:39.85 2300 FEE 435944 622 6042523 2024-02-23 12:50:39.85 2024-02-23 12:50:39.85 20700 TIP 435944 16440 6042524 2024-02-23 12:50:40.037 2024-02-23 12:50:40.037 2300 FEE 435944 13575 6042525 2024-02-23 12:50:40.037 2024-02-23 12:50:40.037 20700 TIP 435944 10698 6042544 2024-02-23 12:51:16.125 2024-02-23 12:51:16.125 0 FEE 436126 5160 6042571 2024-02-23 12:54:35.483 2024-02-23 12:54:35.483 10000 FEE 436023 11678 6042572 2024-02-23 12:54:35.483 2024-02-23 12:54:35.483 90000 TIP 436023 15732 6042575 2024-02-23 12:54:58.455 2024-02-23 12:54:58.455 100 FEE 435944 10280 6042576 2024-02-23 12:54:58.455 2024-02-23 12:54:58.455 900 TIP 435944 19689 6042666 2024-02-23 13:03:10.915 2024-02-23 13:03:10.915 1100 FEE 435944 10693 6042667 2024-02-23 13:03:10.915 2024-02-23 13:03:10.915 9900 TIP 435944 16966 6042668 2024-02-23 13:03:11.054 2024-02-23 13:03:11.054 1100 FEE 435944 17797 6042669 2024-02-23 13:03:11.054 2024-02-23 13:03:11.054 9900 TIP 435944 7510 6042703 2024-02-23 13:05:09.298 2024-02-23 13:05:09.298 9000 FEE 436021 1209 6042704 2024-02-23 13:05:09.298 2024-02-23 13:05:09.298 81000 TIP 436021 18524 6042721 2024-02-23 13:07:30.563 2024-02-23 13:07:30.563 1000 FEE 436036 5759 6042722 2024-02-23 13:07:30.563 2024-02-23 13:07:30.563 9000 TIP 436036 6741 6042733 2024-02-23 13:07:48.261 2024-02-23 13:07:48.261 100 FEE 436075 1319 6042734 2024-02-23 13:07:48.261 2024-02-23 13:07:48.261 900 TIP 436075 18630 6042745 2024-02-23 13:08:37.831 2024-02-23 13:08:37.831 100 FEE 435891 825 6042746 2024-02-23 13:08:37.831 2024-02-23 13:08:37.831 900 TIP 435891 14959 6042753 2024-02-23 13:08:46.252 2024-02-23 13:08:46.252 10000 FEE 436151 21207 6042754 2024-02-23 13:08:59.295 2024-02-23 13:08:59.295 0 FEE 436150 18896 6042770 2024-02-23 13:09:45.081 2024-02-23 13:09:45.081 1000 FEE 436152 13361 6042773 2024-02-23 13:09:56.09 2024-02-23 13:09:56.09 100000 FEE 436153 3213 6042794 2024-02-23 13:11:01.21 2024-02-23 13:11:01.21 3000 FEE 435925 20674 6042795 2024-02-23 13:11:01.21 2024-02-23 13:11:01.21 27000 TIP 435925 20257 6042801 2024-02-23 13:11:10.203 2024-02-23 13:11:10.203 1000 FEE 436156 1094 6042805 2024-02-23 13:11:16.72 2024-02-23 13:11:16.72 9000 FEE 435924 20788 6042806 2024-02-23 13:11:16.72 2024-02-23 13:11:16.72 81000 TIP 435924 8360 6042816 2024-02-23 13:11:56.171 2024-02-23 13:11:56.171 9000 FEE 435947 21539 6042817 2024-02-23 13:11:56.171 2024-02-23 13:11:56.171 81000 TIP 435947 20514 6042834 2024-02-23 13:12:55.265 2024-02-23 13:12:55.265 1000 FEE 436137 1208 6042835 2024-02-23 13:12:55.265 2024-02-23 13:12:55.265 9000 TIP 436137 18637 6042852 2024-02-23 13:14:02.578 2024-02-23 13:14:02.578 11100 FEE 436126 15690 6042853 2024-02-23 13:14:02.578 2024-02-23 13:14:02.578 99900 TIP 436126 19836 6042864 2024-02-23 13:14:44.81 2024-02-23 13:14:44.81 0 FEE 436152 19826 6042885 2024-02-23 13:16:28.711 2024-02-23 13:16:28.711 100 FEE 436147 8954 6042886 2024-02-23 13:16:28.711 2024-02-23 13:16:28.711 900 TIP 436147 9109 6042906 2024-02-23 13:17:38.64 2024-02-23 13:17:38.64 1000 FEE 436162 13133 6042908 2024-02-23 13:18:08.923 2024-02-23 13:18:08.923 500 FEE 435458 14152 6042372 2024-02-23 12:49:21.339 2024-02-23 12:49:21.339 20700 TIP 435928 4633 6042373 2024-02-23 12:49:21.371 2024-02-23 12:49:21.371 2300 FEE 435928 14195 6042374 2024-02-23 12:49:21.371 2024-02-23 12:49:21.371 20700 TIP 435928 661 6042394 2024-02-23 12:49:23.011 2024-02-23 12:49:23.011 0 FEE 436119 18877 6042405 2024-02-23 12:49:24.59 2024-02-23 12:49:24.59 2300 FEE 435928 1618 6042406 2024-02-23 12:49:24.59 2024-02-23 12:49:24.59 20700 TIP 435928 11458 6042443 2024-02-23 12:50:10.385 2024-02-23 12:50:10.385 2300 FEE 435847 17291 6042444 2024-02-23 12:50:10.385 2024-02-23 12:50:10.385 20700 TIP 435847 11018 6042498 2024-02-23 12:50:32.312 2024-02-23 12:50:32.312 2100 FEE 435966 10283 6042499 2024-02-23 12:50:32.312 2024-02-23 12:50:32.312 18900 TIP 435966 12736 6042504 2024-02-23 12:50:38.119 2024-02-23 12:50:38.119 2300 FEE 435944 16679 6042505 2024-02-23 12:50:38.119 2024-02-23 12:50:38.119 20700 TIP 435944 8284 6042516 2024-02-23 12:50:39.284 2024-02-23 12:50:39.284 2300 FEE 435944 17050 6042517 2024-02-23 12:50:39.284 2024-02-23 12:50:39.284 20700 TIP 435944 20243 6042533 2024-02-23 12:50:54.908 2024-02-23 12:50:54.908 1000 FEE 436118 8729 6042534 2024-02-23 12:50:54.908 2024-02-23 12:50:54.908 9000 TIP 436118 20701 6042569 2024-02-23 12:54:05.289 2024-02-23 12:54:05.289 1000 FEE 435857 1175 6042570 2024-02-23 12:54:05.289 2024-02-23 12:54:05.289 9000 TIP 435857 15159 6042588 2024-02-23 12:58:07.554 2024-02-23 12:58:07.554 10000 FEE 436090 17103 6042589 2024-02-23 12:58:07.554 2024-02-23 12:58:07.554 90000 TIP 436090 2293 6042598 2024-02-23 12:58:28.013 2024-02-23 12:58:28.013 10000 FEE 436087 2519 6042599 2024-02-23 12:58:28.013 2024-02-23 12:58:28.013 90000 TIP 436087 10490 6042615 2024-02-23 13:01:21.965 2024-02-23 13:01:21.965 1000 FEE 436138 2016 6042616 2024-02-23 13:01:38.158 2024-02-23 13:01:38.158 3000 FEE 435920 16348 6042617 2024-02-23 13:01:38.158 2024-02-23 13:01:38.158 27000 TIP 435920 976 6042631 2024-02-23 13:02:35.341 2024-02-23 13:02:35.341 1100 FEE 435579 13759 6042632 2024-02-23 13:02:35.341 2024-02-23 13:02:35.341 9900 TIP 435579 876 6042633 2024-02-23 13:02:35.515 2024-02-23 13:02:35.515 1100 FEE 435579 13854 6042634 2024-02-23 13:02:35.515 2024-02-23 13:02:35.515 9900 TIP 435579 1426 6042635 2024-02-23 13:02:35.694 2024-02-23 13:02:35.694 1100 FEE 435579 11395 6042636 2024-02-23 13:02:35.694 2024-02-23 13:02:35.694 9900 TIP 435579 9355 6042664 2024-02-23 13:03:10.757 2024-02-23 13:03:10.757 1100 FEE 435944 7558 6042665 2024-02-23 13:03:10.757 2024-02-23 13:03:10.757 9900 TIP 435944 11829 6042691 2024-02-23 13:04:53.711 2024-02-23 13:04:53.711 900 FEE 436001 16194 6042692 2024-02-23 13:04:53.711 2024-02-23 13:04:53.711 8100 TIP 436001 15351 6042699 2024-02-23 13:05:03.333 2024-02-23 13:05:03.333 100 FEE 436021 959 6042700 2024-02-23 13:05:03.333 2024-02-23 13:05:03.333 900 TIP 436021 18426 6042708 2024-02-23 13:05:15.824 2024-02-23 13:05:15.824 0 FEE 436143 12072 6042739 2024-02-23 13:07:49.737 2024-02-23 13:07:49.737 900 FEE 436068 12606 6042740 2024-02-23 13:07:49.737 2024-02-23 13:07:49.737 8100 TIP 436068 20102 6042747 2024-02-23 13:08:38.406 2024-02-23 13:08:38.406 900 FEE 435891 14213 6042748 2024-02-23 13:08:38.406 2024-02-23 13:08:38.406 8100 TIP 435891 697 6042766 2024-02-23 13:09:35.149 2024-02-23 13:09:35.149 9000 FEE 435905 3360 6042767 2024-02-23 13:09:35.149 2024-02-23 13:09:35.149 81000 TIP 435905 20775 6042771 2024-02-23 13:09:56.074 2024-02-23 13:09:56.074 300 FEE 436061 15103 6042772 2024-02-23 13:09:56.074 2024-02-23 13:09:56.074 2700 TIP 436061 18641 6042774 2024-02-23 13:10:01.661 2024-02-23 13:10:01.661 1000 FEE 436154 20573 6042812 2024-02-23 13:11:54.111 2024-02-23 13:11:54.111 100 FEE 435947 19511 6042813 2024-02-23 13:11:54.111 2024-02-23 13:11:54.111 900 TIP 435947 20816 6042823 2024-02-23 13:12:21.679 2024-02-23 13:12:21.679 900 FEE 435968 18714 6042824 2024-02-23 13:12:21.679 2024-02-23 13:12:21.679 8100 TIP 435968 2528 6042863 2024-02-23 13:14:40.622 2024-02-23 13:14:40.622 10000 FEE 436158 20841 6042873 2024-02-23 13:15:33.189 2024-02-23 13:15:33.189 9000 FEE 436093 11288 6042874 2024-02-23 13:15:33.189 2024-02-23 13:15:33.189 81000 TIP 436093 20840 6042879 2024-02-23 13:16:05.144 2024-02-23 13:16:05.144 100 FEE 436062 18368 6042880 2024-02-23 13:16:05.144 2024-02-23 13:16:05.144 900 TIP 436062 5487 6042891 2024-02-23 13:16:34.79 2024-02-23 13:16:34.79 900 FEE 436158 9107 6042892 2024-02-23 13:16:34.79 2024-02-23 13:16:34.79 8100 TIP 436158 1713 6042938 2024-02-23 13:20:12.241 2024-02-23 13:20:12.241 500 FEE 434601 11866 6042939 2024-02-23 13:20:12.241 2024-02-23 13:20:12.241 4500 TIP 434601 19569 6042967 2024-02-23 13:23:12.158 2024-02-23 13:23:12.158 2700 FEE 435663 21072 6042968 2024-02-23 13:23:12.158 2024-02-23 13:23:12.158 24300 TIP 435663 1620 6042979 2024-02-23 13:23:13.278 2024-02-23 13:23:13.278 2700 FEE 435663 18923 6042980 2024-02-23 13:23:13.278 2024-02-23 13:23:13.278 24300 TIP 435663 15662 6042993 2024-02-23 13:24:17.273 2024-02-23 13:24:17.273 2700 FEE 435856 16839 6042994 2024-02-23 13:24:17.273 2024-02-23 13:24:17.273 24300 TIP 435856 19660 6043001 2024-02-23 13:24:31.966 2024-02-23 13:24:31.966 2100 FEE 247866 7899 6043002 2024-02-23 13:24:31.966 2024-02-23 13:24:31.966 18900 TIP 247866 19601 6043005 2024-02-23 13:24:32.548 2024-02-23 13:24:32.548 0 FEE 436168 16178 6043012 2024-02-23 13:24:35.102 2024-02-23 13:24:35.102 2100 FEE 247866 14651 6043013 2024-02-23 13:24:35.102 2024-02-23 13:24:35.102 18900 TIP 247866 17639 6043014 2024-02-23 13:24:38.703 2024-02-23 13:24:38.703 1000 FEE 436158 19976 6043015 2024-02-23 13:24:38.703 2024-02-23 13:24:38.703 9000 TIP 436158 17568 6043028 2024-02-23 13:26:43.102 2024-02-23 13:26:43.102 100000 FEE 436174 21509 6043043 2024-02-23 13:27:52.393 2024-02-23 13:27:52.393 0 FEE 436171 14503 6043059 2024-02-23 13:31:51.636 2024-02-23 13:31:51.636 21000 FEE 436182 5757 6043062 2024-02-23 13:33:18.035 2024-02-23 13:33:18.035 1000 FEE 436183 21575 6043064 2024-02-23 13:34:13.516 2024-02-23 13:34:13.516 1000 FEE 436184 12122 6043081 2024-02-23 13:38:02.097 2024-02-23 13:38:02.097 1000 FEE 436190 14959 6043097 2024-02-23 13:43:04.99 2024-02-23 13:43:04.99 0 FEE 436191 20799 6043102 2024-02-23 13:43:50.228 2024-02-23 13:43:50.228 1000 FEE 436196 10979 6043124 2024-02-23 13:48:13.298 2024-02-23 13:48:13.298 1000 FEE 436202 1490 6043125 2024-02-23 13:48:20.835 2024-02-23 13:48:20.835 1600 FEE 436197 19735 6043126 2024-02-23 13:48:20.835 2024-02-23 13:48:20.835 14400 TIP 436197 16598 6043132 2024-02-23 13:49:19.711 2024-02-23 13:49:19.711 1000 FEE 436043 5112 6043133 2024-02-23 13:49:19.711 2024-02-23 13:49:19.711 9000 TIP 436043 18539 6043149 2024-02-23 13:50:31.663 2024-02-23 13:50:31.663 100000 FEE 436207 4313 6043168 2024-02-23 13:51:17.12 2024-02-23 13:51:17.12 8300 FEE 436093 3342 6043169 2024-02-23 13:51:17.12 2024-02-23 13:51:17.12 74700 TIP 436093 8459 6043170 2024-02-23 13:51:17.24 2024-02-23 13:51:17.24 8300 FEE 436093 1142 6043171 2024-02-23 13:51:17.24 2024-02-23 13:51:17.24 74700 TIP 436093 2942 6043178 2024-02-23 13:51:20.186 2024-02-23 13:51:20.186 8300 FEE 436197 1617 6043179 2024-02-23 13:51:20.186 2024-02-23 13:51:20.186 74700 TIP 436197 20504 6043207 2024-02-23 13:56:51.512 2024-02-23 13:56:51.512 2300 FEE 436136 738 6043208 2024-02-23 13:56:51.512 2024-02-23 13:56:51.512 20700 TIP 436136 1135 6043229 2024-02-23 13:56:53.73 2024-02-23 13:56:53.73 2300 FEE 436136 17116 6043230 2024-02-23 13:56:53.73 2024-02-23 13:56:53.73 20700 TIP 436136 2609 6043237 2024-02-23 13:56:54.441 2024-02-23 13:56:54.441 2300 FEE 436136 9330 6043238 2024-02-23 13:56:54.441 2024-02-23 13:56:54.441 20700 TIP 436136 5487 6043239 2024-02-23 13:56:54.624 2024-02-23 13:56:54.624 2300 FEE 436136 11942 6043240 2024-02-23 13:56:54.624 2024-02-23 13:56:54.624 20700 TIP 436136 12272 6043257 2024-02-23 13:56:57.026 2024-02-23 13:56:57.026 2300 FEE 436136 20018 6043258 2024-02-23 13:56:57.026 2024-02-23 13:56:57.026 20700 TIP 436136 14657 6042432 2024-02-23 12:50:09.121 2024-02-23 12:50:09.121 20700 TIP 435847 4395 6042433 2024-02-23 12:50:09.296 2024-02-23 12:50:09.296 2300 FEE 435847 1738 6042434 2024-02-23 12:50:09.296 2024-02-23 12:50:09.296 20700 TIP 435847 17095 6042437 2024-02-23 12:50:09.873 2024-02-23 12:50:09.873 2300 FEE 435847 21356 6042438 2024-02-23 12:50:09.873 2024-02-23 12:50:09.873 20700 TIP 435847 2444 6042441 2024-02-23 12:50:10.274 2024-02-23 12:50:10.274 2300 FEE 435847 21207 6042442 2024-02-23 12:50:10.274 2024-02-23 12:50:10.274 20700 TIP 435847 15617 6042455 2024-02-23 12:50:11.522 2024-02-23 12:50:11.522 2300 FEE 435847 19662 6042456 2024-02-23 12:50:11.522 2024-02-23 12:50:11.522 20700 TIP 435847 17522 6042463 2024-02-23 12:50:12.135 2024-02-23 12:50:12.135 1000 FEE 436125 5794 6042510 2024-02-23 12:50:38.691 2024-02-23 12:50:38.691 2300 FEE 435944 20657 6042511 2024-02-23 12:50:38.691 2024-02-23 12:50:38.691 20700 TIP 435944 7913 6042514 2024-02-23 12:50:39.092 2024-02-23 12:50:39.092 2300 FEE 435944 10013 6042515 2024-02-23 12:50:39.092 2024-02-23 12:50:39.092 20700 TIP 435944 19156 6042546 2024-02-23 12:51:45.482 2024-02-23 12:51:45.482 0 FEE 436126 19732 6042558 2024-02-23 12:53:58.744 2024-02-23 12:53:58.744 1000 FEE 435847 21405 6042559 2024-02-23 12:53:58.744 2024-02-23 12:53:58.744 9000 TIP 435847 19465 6042566 2024-02-23 12:54:02.151 2024-02-23 12:54:02.151 1000 FEE 435892 15703 6042567 2024-02-23 12:54:02.151 2024-02-23 12:54:02.151 9000 TIP 435892 17106 6042577 2024-02-23 12:54:59.694 2024-02-23 12:54:59.694 100 FEE 435944 19878 6042578 2024-02-23 12:54:59.694 2024-02-23 12:54:59.694 900 TIP 435944 18608 6042596 2024-02-23 12:58:20.535 2024-02-23 12:58:20.535 10000 FEE 436087 15200 6042597 2024-02-23 12:58:20.535 2024-02-23 12:58:20.535 90000 TIP 436087 11075 6042622 2024-02-23 13:02:08.339 2024-02-23 13:02:08.339 1000 FEE 436140 20168 6042623 2024-02-23 13:02:19.65 2024-02-23 13:02:19.65 300 FEE 436081 9494 6042624 2024-02-23 13:02:19.65 2024-02-23 13:02:19.65 2700 TIP 436081 17094 6042627 2024-02-23 13:02:34.486 2024-02-23 13:02:34.486 1100 FEE 435596 18641 6042628 2024-02-23 13:02:34.486 2024-02-23 13:02:34.486 9900 TIP 435596 9450 6042672 2024-02-23 13:03:17.853 2024-02-23 13:03:17.853 4000 FEE 436138 1471 6042673 2024-02-23 13:03:17.853 2024-02-23 13:03:17.853 36000 TIP 436138 20225 6042674 2024-02-23 13:03:20.052 2024-02-23 13:03:20.052 1000 FEE 436141 21600 6042689 2024-02-23 13:04:53.458 2024-02-23 13:04:53.458 100 FEE 436001 9529 6042690 2024-02-23 13:04:53.458 2024-02-23 13:04:53.458 900 TIP 436001 3400 6042695 2024-02-23 13:04:57.742 2024-02-23 13:04:57.742 1000 POLL 436036 20163 6042709 2024-02-23 13:05:20.085 2024-02-23 13:05:20.085 100 FEE 436094 2213 6042710 2024-02-23 13:05:20.085 2024-02-23 13:05:20.085 900 TIP 436094 2780 6042711 2024-02-23 13:05:21.499 2024-02-23 13:05:21.499 900 FEE 436094 5978 6042712 2024-02-23 13:05:21.499 2024-02-23 13:05:21.499 8100 TIP 436094 11423 6042719 2024-02-23 13:06:56.987 2024-02-23 13:06:56.987 100000 DONT_LIKE_THIS 436144 882 6042729 2024-02-23 13:07:31.866 2024-02-23 13:07:31.866 1000 FEE 436036 15103 6042730 2024-02-23 13:07:31.866 2024-02-23 13:07:31.866 9000 TIP 436036 16830 6042731 2024-02-23 13:07:34.314 2024-02-23 13:07:34.314 1000 FEE 436148 21369 6042737 2024-02-23 13:07:49.551 2024-02-23 13:07:49.551 100 FEE 436068 1652 6042738 2024-02-23 13:07:49.551 2024-02-23 13:07:49.551 900 TIP 436068 2056 6042744 2024-02-23 13:08:19.573 2024-02-23 13:08:19.573 1000 FEE 436150 20990 6042751 2024-02-23 13:08:45.292 2024-02-23 13:08:45.292 500 FEE 435944 2029 6042752 2024-02-23 13:08:45.292 2024-02-23 13:08:45.292 4500 TIP 435944 681 6042776 2024-02-23 13:10:09.552 2024-02-23 13:10:09.552 500 FEE 435580 8289 6042777 2024-02-23 13:10:09.552 2024-02-23 13:10:09.552 4500 TIP 435580 14657 6042790 2024-02-23 13:10:54.124 2024-02-23 13:10:54.124 500 FEE 435580 13055 6042791 2024-02-23 13:10:54.124 2024-02-23 13:10:54.124 4500 TIP 435580 20264 6042810 2024-02-23 13:11:39.263 2024-02-23 13:11:39.263 900 FEE 435926 18393 6042811 2024-02-23 13:11:39.263 2024-02-23 13:11:39.263 8100 TIP 435926 633 6042814 2024-02-23 13:11:54.235 2024-02-23 13:11:54.235 900 FEE 435947 13878 6042815 2024-02-23 13:11:54.235 2024-02-23 13:11:54.235 8100 TIP 435947 20597 6042821 2024-02-23 13:12:21.341 2024-02-23 13:12:21.341 100 FEE 435968 2327 6042822 2024-02-23 13:12:21.341 2024-02-23 13:12:21.341 900 TIP 435968 987 6042826 2024-02-23 13:12:45.587 2024-02-23 13:12:45.587 500 FEE 435993 1291 6042827 2024-02-23 13:12:45.587 2024-02-23 13:12:45.587 4500 TIP 435993 9921 6042828 2024-02-23 13:12:46.019 2024-02-23 13:12:46.019 100 FEE 435987 19813 6042829 2024-02-23 13:12:46.019 2024-02-23 13:12:46.019 900 TIP 435987 7125 6042830 2024-02-23 13:12:46.046 2024-02-23 13:12:46.046 900 FEE 435987 19484 6042831 2024-02-23 13:12:46.046 2024-02-23 13:12:46.046 8100 TIP 435987 21532 6042849 2024-02-23 13:13:58.38 2024-02-23 13:13:58.38 0 FEE 436152 1567 6042867 2024-02-23 13:15:27.211 2024-02-23 13:15:27.211 2100 FEE 436049 20452 6042868 2024-02-23 13:15:27.211 2024-02-23 13:15:27.211 18900 TIP 436049 5495 6042883 2024-02-23 13:16:18.264 2024-02-23 13:16:18.264 100 FEE 436143 18311 6042884 2024-02-23 13:16:18.264 2024-02-23 13:16:18.264 900 TIP 436143 11275 6042893 2024-02-23 13:16:35.74 2024-02-23 13:16:35.74 0 FEE 436161 21249 6042910 2024-02-23 13:18:09.376 2024-02-23 13:18:09.376 500 FEE 435458 1136 6042911 2024-02-23 13:18:09.376 2024-02-23 13:18:09.376 4500 TIP 435458 6687 6042912 2024-02-23 13:18:10.212 2024-02-23 13:18:10.212 100 FEE 436025 20979 6042913 2024-02-23 13:18:10.212 2024-02-23 13:18:10.212 900 TIP 436025 2039 6042929 2024-02-23 13:19:18.483 2024-02-23 13:19:18.483 100 FEE 428988 5791 6042930 2024-02-23 13:19:18.483 2024-02-23 13:19:18.483 900 TIP 428988 21472 6042945 2024-02-23 13:20:28.486 2024-02-23 13:20:28.486 2700 FEE 435834 18832 6042946 2024-02-23 13:20:28.486 2024-02-23 13:20:28.486 24300 TIP 435834 749 6042949 2024-02-23 13:20:54.204 2024-02-23 13:20:54.204 1600 FEE 436158 8289 6042950 2024-02-23 13:20:54.204 2024-02-23 13:20:54.204 14400 TIP 436158 6268 6042573 2024-02-23 12:54:52.263 2024-02-23 12:54:52.263 1000 FEE 436128 18114 6042604 2024-02-23 12:59:24.009 2024-02-23 12:59:24.009 1000 FEE 436135 14169 6042610 2024-02-23 13:00:46.873 2024-02-23 13:00:46.873 2800 FEE 434801 21541 6042611 2024-02-23 13:00:46.873 2024-02-23 13:00:46.873 25200 TIP 434801 20889 6042612 2024-02-23 13:00:48 2024-02-23 13:00:48 2800 FEE 436128 1723 6042613 2024-02-23 13:00:48 2024-02-23 13:00:48 25200 TIP 436128 7877 6042618 2024-02-23 13:01:56.105 2024-02-23 13:01:56.105 1000 FEE 436139 20624 6042643 2024-02-23 13:02:40.226 2024-02-23 13:02:40.226 1100 FEE 436093 18209 6042644 2024-02-23 13:02:40.226 2024-02-23 13:02:40.226 9900 TIP 436093 21547 6042645 2024-02-23 13:02:40.388 2024-02-23 13:02:40.388 1100 FEE 436093 2459 6042646 2024-02-23 13:02:40.388 2024-02-23 13:02:40.388 9900 TIP 436093 20751 6042647 2024-02-23 13:02:40.55 2024-02-23 13:02:40.55 1100 FEE 436093 17446 6042648 2024-02-23 13:02:40.55 2024-02-23 13:02:40.55 9900 TIP 436093 21405 6042649 2024-02-23 13:02:44.388 2024-02-23 13:02:44.388 2200 FEE 435046 6533 6042650 2024-02-23 13:02:44.388 2024-02-23 13:02:44.388 19800 TIP 435046 900 6042651 2024-02-23 13:02:44.558 2024-02-23 13:02:44.558 1100 FEE 435046 1801 6042652 2024-02-23 13:02:44.558 2024-02-23 13:02:44.558 9900 TIP 435046 19031 6042657 2024-02-23 13:02:46.283 2024-02-23 13:02:46.283 1100 FEE 435046 18363 6042658 2024-02-23 13:02:46.283 2024-02-23 13:02:46.283 9900 TIP 435046 12769 6042677 2024-02-23 13:04:27.251 2024-02-23 13:04:27.251 100 FEE 435904 21178 6042678 2024-02-23 13:04:27.251 2024-02-23 13:04:27.251 900 TIP 435904 20963 6042683 2024-02-23 13:04:45.326 2024-02-23 13:04:45.326 2000 FEE 436082 20577 6042684 2024-02-23 13:04:45.326 2024-02-23 13:04:45.326 18000 TIP 436082 1320 6042685 2024-02-23 13:04:46.268 2024-02-23 13:04:46.268 2000 FEE 436082 11897 6042686 2024-02-23 13:04:46.268 2024-02-23 13:04:46.268 18000 TIP 436082 994 6042707 2024-02-23 13:05:10.814 2024-02-23 13:05:10.814 1000 FEE 436143 3683 6042715 2024-02-23 13:05:32.756 2024-02-23 13:05:32.756 1000 FEE 436145 11423 6042716 2024-02-23 13:05:33.436 2024-02-23 13:05:33.436 1000 FEE 436146 814 6042718 2024-02-23 13:06:43.575 2024-02-23 13:06:43.575 1000 FEE 436147 13143 6042725 2024-02-23 13:07:31.101 2024-02-23 13:07:31.101 1000 FEE 436036 9345 6042726 2024-02-23 13:07:31.101 2024-02-23 13:07:31.101 9000 TIP 436036 19333 6042727 2024-02-23 13:07:31.302 2024-02-23 13:07:31.302 1000 FEE 436036 4322 6042728 2024-02-23 13:07:31.302 2024-02-23 13:07:31.302 9000 TIP 436036 17714 6042742 2024-02-23 13:08:04.24 2024-02-23 13:08:04.24 10000 FEE 397842 7766 6042743 2024-02-23 13:08:04.24 2024-02-23 13:08:04.24 90000 TIP 397842 13547 6042762 2024-02-23 13:09:34.101 2024-02-23 13:09:34.101 100 FEE 435905 9496 6042763 2024-02-23 13:09:34.101 2024-02-23 13:09:34.101 900 TIP 435905 19854 6042778 2024-02-23 13:10:09.744 2024-02-23 13:10:09.744 500 FEE 435580 2460 6042779 2024-02-23 13:10:09.744 2024-02-23 13:10:09.744 4500 TIP 435580 19911 6042780 2024-02-23 13:10:10.202 2024-02-23 13:10:10.202 100 FEE 435912 4102 6042781 2024-02-23 13:10:10.202 2024-02-23 13:10:10.202 900 TIP 435912 17519 6042782 2024-02-23 13:10:11.431 2024-02-23 13:10:11.431 900 FEE 435912 18291 6042783 2024-02-23 13:10:11.431 2024-02-23 13:10:11.431 8100 TIP 435912 2829 6042785 2024-02-23 13:10:37.978 2024-02-23 13:10:37.978 1000 FEE 436155 18736 6042792 2024-02-23 13:10:54.383 2024-02-23 13:10:54.383 500 FEE 435580 17218 6042793 2024-02-23 13:10:54.383 2024-02-23 13:10:54.383 4500 TIP 435580 3400 6042818 2024-02-23 13:12:01.85 2024-02-23 13:12:01.85 500 FEE 435242 9276 6042819 2024-02-23 13:12:01.85 2024-02-23 13:12:01.85 4500 TIP 435242 2832 6042838 2024-02-23 13:12:59.115 2024-02-23 13:12:59.115 900 FEE 435985 759 6042839 2024-02-23 13:12:59.115 2024-02-23 13:12:59.115 8100 TIP 435985 21573 6042840 2024-02-23 13:12:59.147 2024-02-23 13:12:59.147 0 FEE 436143 17217 6042842 2024-02-23 13:13:20.656 2024-02-23 13:13:20.656 500 FEE 435457 1326 6042843 2024-02-23 13:13:20.656 2024-02-23 13:13:20.656 4500 TIP 435457 13798 6042844 2024-02-23 13:13:21.054 2024-02-23 13:13:21.054 500 FEE 435457 1505 6042845 2024-02-23 13:13:21.054 2024-02-23 13:13:21.054 4500 TIP 435457 2013 6042846 2024-02-23 13:13:30.008 2024-02-23 13:13:30.008 500 FEE 435792 15719 6042847 2024-02-23 13:13:30.008 2024-02-23 13:13:30.008 4500 TIP 435792 9796 6042848 2024-02-23 13:13:47.703 2024-02-23 13:13:47.703 10000 DONT_LIKE_THIS 436017 18357 6042859 2024-02-23 13:14:07.755 2024-02-23 13:14:07.755 9000 FEE 436015 1007 6042860 2024-02-23 13:14:07.755 2024-02-23 13:14:07.755 81000 TIP 436015 13361 6042869 2024-02-23 13:15:32.428 2024-02-23 13:15:32.428 100 FEE 436093 21455 6042870 2024-02-23 13:15:32.428 2024-02-23 13:15:32.428 900 TIP 436093 15088 6042881 2024-02-23 13:16:07.463 2024-02-23 13:16:07.463 1000 FEE 436160 19033 6042900 2024-02-23 13:17:03.793 2024-02-23 13:17:03.793 500 FEE 435500 733 6042901 2024-02-23 13:17:03.793 2024-02-23 13:17:03.793 4500 TIP 435500 14271 6042920 2024-02-23 13:18:54.449 2024-02-23 13:18:54.449 500 FEE 435895 14357 6042921 2024-02-23 13:18:54.449 2024-02-23 13:18:54.449 4500 TIP 435895 5069 6042947 2024-02-23 13:20:28.672 2024-02-23 13:20:28.672 2700 FEE 435834 17838 6042948 2024-02-23 13:20:28.672 2024-02-23 13:20:28.672 24300 TIP 435834 2342 6042986 2024-02-23 13:23:58.75 2024-02-23 13:23:58.75 100 FEE 436162 16124 6042987 2024-02-23 13:23:58.75 2024-02-23 13:23:58.75 900 TIP 436162 994 6043010 2024-02-23 13:24:34.14 2024-02-23 13:24:34.14 2100 FEE 247866 7986 6043011 2024-02-23 13:24:34.14 2024-02-23 13:24:34.14 18900 TIP 247866 16042 6043024 2024-02-23 13:26:20.562 2024-02-23 13:26:20.562 0 FEE 436171 7916 6043025 2024-02-23 13:26:28.064 2024-02-23 13:26:28.064 1000 FEE 436173 17172 6043038 2024-02-23 13:27:31.249 2024-02-23 13:27:31.249 100 FEE 436123 21214 6043039 2024-02-23 13:27:31.249 2024-02-23 13:27:31.249 900 TIP 436123 21482 6043066 2024-02-23 13:34:59.055 2024-02-23 13:34:59.055 1000 FEE 436186 8459 6043090 2024-02-23 13:41:22.615 2024-02-23 13:41:22.615 100000 FEE 436191 14465 6043099 2024-02-23 13:43:16.506 2024-02-23 13:43:16.506 21000 FEE 436195 12139 6043114 2024-02-23 13:45:58.574 2024-02-23 13:45:58.574 100 FEE 435488 6148 6043115 2024-02-23 13:45:58.574 2024-02-23 13:45:58.574 900 TIP 435488 21042 6043148 2024-02-23 13:50:21.814 2024-02-23 13:50:21.814 1000 FEE 436206 1723 6043151 2024-02-23 13:51:00.931 2024-02-23 13:51:00.931 1000 FEE 436133 10821 6043152 2024-02-23 13:51:00.931 2024-02-23 13:51:00.931 9000 TIP 436133 10818 6043160 2024-02-23 13:51:15.301 2024-02-23 13:51:15.301 8300 FEE 435944 803 6043161 2024-02-23 13:51:15.301 2024-02-23 13:51:15.301 74700 TIP 435944 21064 6043182 2024-02-23 13:51:27.555 2024-02-23 13:51:27.555 2100 FEE 435550 14909 6043183 2024-02-23 13:51:27.555 2024-02-23 13:51:27.555 18900 TIP 435550 10536 6043198 2024-02-23 13:55:00.625 2024-02-23 13:55:00.625 1000 FEE 436215 1620 6043265 2024-02-23 13:56:57.849 2024-02-23 13:56:57.849 2300 FEE 436136 895 6043266 2024-02-23 13:56:57.849 2024-02-23 13:56:57.849 20700 TIP 436136 12024 6043273 2024-02-23 13:56:58.556 2024-02-23 13:56:58.556 2300 FEE 436136 5694 6043274 2024-02-23 13:56:58.556 2024-02-23 13:56:58.556 20700 TIP 436136 1825 6042606 2024-02-23 13:00:02.55 2024-02-23 13:00:02.55 1000 STREAM 141924 2724 6042621 2024-02-23 13:02:02.509 2024-02-23 13:02:02.509 1000 STREAM 141924 19021 6042717 2024-02-23 13:06:02.584 2024-02-23 13:06:02.584 1000 STREAM 141924 986 6042720 2024-02-23 13:07:02.579 2024-02-23 13:07:02.579 1000 STREAM 141924 20299 6042841 2024-02-23 13:13:02.635 2024-02-23 13:13:02.635 1000 STREAM 141924 10352 6042854 2024-02-23 13:14:02.647 2024-02-23 13:14:02.647 1000 STREAM 141924 15703 6042878 2024-02-23 13:16:02.636 2024-02-23 13:16:02.636 1000 STREAM 141924 20464 6042907 2024-02-23 13:18:02.64 2024-02-23 13:18:02.64 1000 STREAM 141924 2098 6042928 2024-02-23 13:19:02.638 2024-02-23 13:19:02.638 1000 STREAM 141924 16282 6042951 2024-02-23 13:21:02.646 2024-02-23 13:21:02.646 1000 STREAM 141924 10668 6042955 2024-02-23 13:22:02.645 2024-02-23 13:22:02.645 1000 STREAM 141924 21547 6042961 2024-02-23 13:23:02.661 2024-02-23 13:23:02.661 1000 STREAM 141924 10409 6042988 2024-02-23 13:24:02.677 2024-02-23 13:24:02.677 1000 STREAM 141924 2774 6043022 2024-02-23 13:26:02.683 2024-02-23 13:26:02.683 1000 STREAM 141924 15271 6043029 2024-02-23 13:27:02.682 2024-02-23 13:27:02.682 1000 STREAM 141924 16052 6043050 2024-02-23 13:29:02.699 2024-02-23 13:29:02.699 1000 STREAM 141924 5499 6042619 2024-02-23 13:01:59.541 2024-02-23 13:01:59.541 10000 FEE 436018 21178 6042620 2024-02-23 13:01:59.541 2024-02-23 13:01:59.541 90000 TIP 436018 20185 6042625 2024-02-23 13:02:34.353 2024-02-23 13:02:34.353 1100 FEE 435596 21090 6042626 2024-02-23 13:02:34.353 2024-02-23 13:02:34.353 9900 TIP 435596 14774 6042639 2024-02-23 13:02:38.816 2024-02-23 13:02:38.816 1100 FEE 435847 18830 6042640 2024-02-23 13:02:38.816 2024-02-23 13:02:38.816 9900 TIP 435847 11329 6042653 2024-02-23 13:02:44.697 2024-02-23 13:02:44.697 1100 FEE 435046 21012 6042654 2024-02-23 13:02:44.697 2024-02-23 13:02:44.697 9900 TIP 435046 16847 6042655 2024-02-23 13:02:46.088 2024-02-23 13:02:46.088 1100 FEE 435046 15978 6042656 2024-02-23 13:02:46.088 2024-02-23 13:02:46.088 9900 TIP 435046 12245 6042675 2024-02-23 13:03:39.603 2024-02-23 13:03:39.603 1000 FEE 436142 12422 6042696 2024-02-23 13:04:58.763 2024-02-23 13:04:58.763 2000 FEE 436051 4173 6042697 2024-02-23 13:04:58.763 2024-02-23 13:04:58.763 18000 TIP 436051 909 6042659 2024-02-23 13:03:02.571 2024-02-23 13:03:02.571 1000 STREAM 141924 803 6042676 2024-02-23 13:04:02.583 2024-02-23 13:04:02.583 1000 STREAM 141924 10934 6042698 2024-02-23 13:05:02.584 2024-02-23 13:05:02.584 1000 STREAM 141924 19346 6042741 2024-02-23 13:08:02.585 2024-02-23 13:08:02.585 1000 STREAM 141924 17321 6042755 2024-02-23 13:09:02.589 2024-02-23 13:09:02.589 1000 STREAM 141924 16347 6042775 2024-02-23 13:10:02.606 2024-02-23 13:10:02.606 1000 STREAM 141924 13143 6042796 2024-02-23 13:11:02.611 2024-02-23 13:11:02.611 1000 STREAM 141924 20554 6042820 2024-02-23 13:12:02.627 2024-02-23 13:12:02.627 1000 STREAM 141924 1733 6042866 2024-02-23 13:15:02.64 2024-02-23 13:15:02.64 1000 STREAM 141924 21463 6042899 2024-02-23 13:17:02.626 2024-02-23 13:17:02.626 1000 STREAM 141924 19193 6042933 2024-02-23 13:20:02.643 2024-02-23 13:20:02.643 1000 STREAM 141924 9352 6043017 2024-02-23 13:25:02.668 2024-02-23 13:25:02.668 1000 STREAM 141924 20817 6043044 2024-02-23 13:28:02.707 2024-02-23 13:28:02.707 1000 STREAM 141924 17944 6043055 2024-02-23 13:30:02.714 2024-02-23 13:30:02.714 1000 STREAM 141924 6229 6043058 2024-02-23 13:31:02.718 2024-02-23 13:31:02.718 1000 STREAM 141924 9347 6043069 2024-02-23 13:35:02.745 2024-02-23 13:35:02.745 1000 STREAM 141924 21026 6043072 2024-02-23 13:36:02.739 2024-02-23 13:36:02.739 1000 STREAM 141924 1261 6043084 2024-02-23 13:40:02.792 2024-02-23 13:40:02.792 1000 STREAM 141924 10096 6043087 2024-02-23 13:41:02.797 2024-02-23 13:41:02.797 1000 STREAM 141924 3683 6043116 2024-02-23 13:46:02.847 2024-02-23 13:46:02.847 1000 STREAM 141924 5557 6043121 2024-02-23 13:47:02.864 2024-02-23 13:47:02.864 1000 STREAM 141924 4633 6043131 2024-02-23 13:49:02.87 2024-02-23 13:49:02.87 1000 STREAM 141924 5961 6043153 2024-02-23 13:51:02.895 2024-02-23 13:51:02.895 1000 STREAM 141924 12160 6043199 2024-02-23 13:55:02.924 2024-02-23 13:55:02.924 1000 STREAM 141924 20299 6043355 2024-02-23 14:00:02.976 2024-02-23 14:00:02.976 1000 STREAM 141924 14503 6043362 2024-02-23 14:03:02.965 2024-02-23 14:03:02.965 1000 STREAM 141924 5725 6043374 2024-02-23 14:05:02.981 2024-02-23 14:05:02.981 1000 STREAM 141924 14909 6043381 2024-02-23 14:09:03.003 2024-02-23 14:09:03.003 1000 STREAM 141924 18452 6043386 2024-02-23 14:10:03.02 2024-02-23 14:10:03.02 1000 STREAM 141924 21441 6043396 2024-02-23 14:13:03.039 2024-02-23 14:13:03.039 1000 STREAM 141924 21612 6043406 2024-02-23 14:16:03.05 2024-02-23 14:16:03.05 1000 STREAM 141924 5828 6043413 2024-02-23 14:18:03.064 2024-02-23 14:18:03.064 1000 STREAM 141924 21498 6043420 2024-02-23 14:19:03.064 2024-02-23 14:19:03.064 1000 STREAM 141924 21058 6043424 2024-02-23 14:20:03.074 2024-02-23 14:20:03.074 1000 STREAM 141924 8998 6043458 2024-02-23 14:26:03.109 2024-02-23 14:26:03.109 1000 STREAM 141924 4292 6043464 2024-02-23 14:27:03.11 2024-02-23 14:27:03.11 1000 STREAM 141924 17944 6043577 2024-02-23 14:29:03.122 2024-02-23 14:29:03.122 1000 STREAM 141924 21453 6043689 2024-02-23 14:39:03.191 2024-02-23 14:39:03.191 1000 STREAM 141924 19996 6043820 2024-02-23 14:49:03.246 2024-02-23 14:49:03.246 1000 STREAM 141924 6717 6043844 2024-02-23 14:52:03.281 2024-02-23 14:52:03.281 1000 STREAM 141924 17798 6043867 2024-02-23 14:56:03.284 2024-02-23 14:56:03.284 1000 STREAM 141924 19030 6043871 2024-02-23 14:58:03.306 2024-02-23 14:58:03.306 1000 STREAM 141924 21352 6043872 2024-02-23 14:59:03.35 2024-02-23 14:59:03.35 1000 STREAM 141924 8926 6043881 2024-02-23 15:01:03.348 2024-02-23 15:01:03.348 1000 STREAM 141924 20272 6043930 2024-02-23 15:06:03.354 2024-02-23 15:06:03.354 1000 STREAM 141924 1602 6043940 2024-02-23 15:07:03.349 2024-02-23 15:07:03.349 1000 STREAM 141924 15239 6043945 2024-02-23 15:08:03.354 2024-02-23 15:08:03.354 1000 STREAM 141924 21485 6112622 2024-02-29 13:55:16.76 2024-02-29 13:55:16.76 500 FEE 443178 21344 6112623 2024-02-29 13:55:16.76 2024-02-29 13:55:16.76 4500 TIP 443178 21421 6112641 2024-02-29 13:56:37.032 2024-02-29 13:56:37.032 1000 FEE 443499 19930 6112652 2024-02-29 13:58:07.789 2024-02-29 13:58:07.789 1000 FEE 443504 4633 6112659 2024-02-29 13:58:34.549 2024-02-29 13:58:34.549 1000 FEE 443505 21303 6112676 2024-02-29 14:00:20.127 2024-02-29 14:00:20.127 27900 FEE 443396 18336 6112677 2024-02-29 14:00:20.127 2024-02-29 14:00:20.127 251100 TIP 443396 11220 6112688 2024-02-29 14:02:18.958 2024-02-29 14:02:18.958 700 FEE 443506 19038 6112689 2024-02-29 14:02:18.958 2024-02-29 14:02:18.958 6300 TIP 443506 3304 6112701 2024-02-29 14:04:01.327 2024-02-29 14:04:01.327 3400 FEE 443197 20606 6112702 2024-02-29 14:04:01.327 2024-02-29 14:04:01.327 30600 TIP 443197 17797 6112711 2024-02-29 14:05:31.341 2024-02-29 14:05:31.341 1000 FEE 443517 21494 6112728 2024-02-29 14:08:35.143 2024-02-29 14:08:35.143 1000 FEE 443520 9350 6112739 2024-02-29 14:10:31.842 2024-02-29 14:10:31.842 0 FEE 443521 21047 6112743 2024-02-29 14:11:58.805 2024-02-29 14:11:58.805 1000 FEE 443467 9352 6112744 2024-02-29 14:11:58.805 2024-02-29 14:11:58.805 9000 TIP 443467 15266 6112747 2024-02-29 14:12:07.473 2024-02-29 14:12:07.473 1000 FEE 443515 4378 6112748 2024-02-29 14:12:07.473 2024-02-29 14:12:07.473 9000 TIP 443515 694 6112753 2024-02-29 14:12:27.543 2024-02-29 14:12:27.543 1000 FEE 443526 19785 6112754 2024-02-29 14:12:37.899 2024-02-29 14:12:37.899 3100 FEE 443525 5825 6112755 2024-02-29 14:12:37.899 2024-02-29 14:12:37.899 27900 TIP 443525 18517 6112765 2024-02-29 14:15:03.953 2024-02-29 14:15:03.953 1000 FEE 443529 12160 6112851 2024-02-29 14:26:39.184 2024-02-29 14:26:39.184 27900 FEE 443272 10554 6112852 2024-02-29 14:26:39.184 2024-02-29 14:26:39.184 251100 TIP 443272 20106 6112858 2024-02-29 14:27:26.72 2024-02-29 14:27:26.72 0 FEE 443551 1745 6112862 2024-02-29 14:27:36.738 2024-02-29 14:27:36.738 30000 FEE 443287 10270 6112863 2024-02-29 14:27:36.738 2024-02-29 14:27:36.738 270000 TIP 443287 18984 6112865 2024-02-29 14:27:41.843 2024-02-29 14:27:41.843 100000 FEE 443554 19615 6112879 2024-02-29 14:29:48.827 2024-02-29 14:29:48.827 3100 FEE 443557 844 6042723 2024-02-23 13:07:30.825 2024-02-23 13:07:30.825 1000 FEE 436036 18837 6042724 2024-02-23 13:07:30.825 2024-02-23 13:07:30.825 9000 TIP 436036 18528 6042760 2024-02-23 13:09:31.929 2024-02-23 13:09:31.929 500 FEE 435944 9916 6042761 2024-02-23 13:09:31.929 2024-02-23 13:09:31.929 4500 TIP 435944 6471 6042764 2024-02-23 13:09:34.424 2024-02-23 13:09:34.424 900 FEE 435905 1142 6042765 2024-02-23 13:09:34.424 2024-02-23 13:09:34.424 8100 TIP 435905 13599 6042768 2024-02-23 13:09:42.964 2024-02-23 13:09:42.964 90000 FEE 435905 16912 6042769 2024-02-23 13:09:42.964 2024-02-23 13:09:42.964 810000 TIP 435905 2196 6042784 2024-02-23 13:10:13.181 2024-02-23 13:10:13.181 0 FEE 436148 18269 6042802 2024-02-23 13:11:12.099 2024-02-23 13:11:12.099 1000 FEE 436157 20514 6042803 2024-02-23 13:11:15.926 2024-02-23 13:11:15.926 1000 FEE 436093 1195 6042804 2024-02-23 13:11:15.926 2024-02-23 13:11:15.926 9000 TIP 436093 16267 6042807 2024-02-23 13:11:26.489 2024-02-23 13:11:26.489 0 FEE 436152 18313 6042808 2024-02-23 13:11:39.058 2024-02-23 13:11:39.058 100 FEE 435926 5758 6042809 2024-02-23 13:11:39.058 2024-02-23 13:11:39.058 900 TIP 435926 738 6042832 2024-02-23 13:12:50.167 2024-02-23 13:12:50.167 500 FEE 435639 17041 6042833 2024-02-23 13:12:50.167 2024-02-23 13:12:50.167 4500 TIP 435639 794 6042836 2024-02-23 13:12:58.115 2024-02-23 13:12:58.115 100 FEE 435985 16717 6042837 2024-02-23 13:12:58.115 2024-02-23 13:12:58.115 900 TIP 435985 18989 6042865 2024-02-23 13:14:54.446 2024-02-23 13:14:54.446 100000 DONT_LIKE_THIS 436036 19462 6042882 2024-02-23 13:16:12.49 2024-02-23 13:16:12.49 1000 FEE 436161 5646 6042894 2024-02-23 13:16:37.408 2024-02-23 13:16:37.408 9000 FEE 436158 16858 6042895 2024-02-23 13:16:37.408 2024-02-23 13:16:37.408 81000 TIP 436158 10698 6042898 2024-02-23 13:16:47.078 2024-02-23 13:16:47.078 1000 POLL 435805 8162 6042914 2024-02-23 13:18:16.153 2024-02-23 13:18:16.153 100 FEE 436159 2961 6042915 2024-02-23 13:18:16.153 2024-02-23 13:18:16.153 900 TIP 436159 929 6042940 2024-02-23 13:20:22.784 2024-02-23 13:20:22.784 100000 FEE 436163 16789 6042943 2024-02-23 13:20:28.312 2024-02-23 13:20:28.312 2700 FEE 435834 18635 6042944 2024-02-23 13:20:28.312 2024-02-23 13:20:28.312 24300 TIP 435834 10352 6042952 2024-02-23 13:21:08.294 2024-02-23 13:21:08.294 10000 FEE 435657 739 6042953 2024-02-23 13:21:08.294 2024-02-23 13:21:08.294 90000 TIP 435657 19289 6042963 2024-02-23 13:23:11.784 2024-02-23 13:23:11.784 2700 FEE 435663 12721 6042964 2024-02-23 13:23:11.784 2024-02-23 13:23:11.784 24300 TIP 435663 2010 6042983 2024-02-23 13:23:13.632 2024-02-23 13:23:13.632 2700 FEE 435663 21401 6042984 2024-02-23 13:23:13.632 2024-02-23 13:23:13.632 24300 TIP 435663 18745 6042989 2024-02-23 13:24:03.579 2024-02-23 13:24:03.579 1000 FEE 435944 1465 6042990 2024-02-23 13:24:03.579 2024-02-23 13:24:03.579 9000 TIP 435944 21491 6043047 2024-02-23 13:28:22.817 2024-02-23 13:28:22.817 2800 FEE 436153 6717 6043048 2024-02-23 13:28:22.817 2024-02-23 13:28:22.817 25200 TIP 436153 21458 6043051 2024-02-23 13:29:10.424 2024-02-23 13:29:10.424 2800 FEE 238583 18344 6043052 2024-02-23 13:29:10.424 2024-02-23 13:29:10.424 25200 TIP 238583 15146 6043053 2024-02-23 13:29:52.507 2024-02-23 13:29:52.507 1000 FEE 436174 15049 6043054 2024-02-23 13:29:52.507 2024-02-23 13:29:52.507 9000 TIP 436174 10359 6043056 2024-02-23 13:30:30.521 2024-02-23 13:30:30.521 1000 FEE 436180 16842 6043070 2024-02-23 13:35:31.795 2024-02-23 13:35:31.795 4000 FEE 436186 20190 6043071 2024-02-23 13:35:31.795 2024-02-23 13:35:31.795 36000 TIP 436186 14202 6043073 2024-02-23 13:36:07.175 2024-02-23 13:36:07.175 100 FEE 435912 16542 6043074 2024-02-23 13:36:07.175 2024-02-23 13:36:07.175 900 TIP 435912 20554 6043078 2024-02-23 13:37:14.117 2024-02-23 13:37:14.117 100000 FEE 436189 1039 6043085 2024-02-23 13:40:41.171 2024-02-23 13:40:41.171 10000 FEE 436093 11789 6043086 2024-02-23 13:40:41.171 2024-02-23 13:40:41.171 90000 TIP 436093 4802 6043117 2024-02-23 13:46:26.505 2024-02-23 13:46:26.505 0 FEE 436196 21514 6043143 2024-02-23 13:50:13.203 2024-02-23 13:50:13.203 1000 FEE 436205 5637 6043146 2024-02-23 13:50:20.953 2024-02-23 13:50:20.953 4000 FEE 436194 1577 6043147 2024-02-23 13:50:20.953 2024-02-23 13:50:20.953 36000 TIP 436194 21437 6043172 2024-02-23 13:51:19.371 2024-02-23 13:51:19.371 8300 FEE 436197 18877 6043173 2024-02-23 13:51:19.371 2024-02-23 13:51:19.371 74700 TIP 436197 17446 6043188 2024-02-23 13:52:54.983 2024-02-23 13:52:54.983 1000 FEE 436038 20912 6043189 2024-02-23 13:52:54.983 2024-02-23 13:52:54.983 9000 TIP 436038 3353 6042909 2024-02-23 13:18:08.923 2024-02-23 13:18:08.923 4500 TIP 435458 2748 6042918 2024-02-23 13:18:53.549 2024-02-23 13:18:53.549 4000 FEE 436158 910 6042919 2024-02-23 13:18:53.549 2024-02-23 13:18:53.549 36000 TIP 436158 3706 6042926 2024-02-23 13:19:02.142 2024-02-23 13:19:02.142 500 FEE 434535 5961 6042927 2024-02-23 13:19:02.142 2024-02-23 13:19:02.142 4500 TIP 434535 21412 6042936 2024-02-23 13:20:06.814 2024-02-23 13:20:06.814 500 FEE 434625 19033 6042937 2024-02-23 13:20:06.814 2024-02-23 13:20:06.814 4500 TIP 434625 19886 6042954 2024-02-23 13:21:47.15 2024-02-23 13:21:47.15 1000 FEE 436164 14225 6042956 2024-02-23 13:22:04.482 2024-02-23 13:22:04.482 1000 FEE 436165 14503 6042973 2024-02-23 13:23:12.728 2024-02-23 13:23:12.728 2700 FEE 435663 21441 6042974 2024-02-23 13:23:12.728 2024-02-23 13:23:12.728 24300 TIP 435663 5519 6043032 2024-02-23 13:27:30.724 2024-02-23 13:27:30.724 100 FEE 436123 20660 6043033 2024-02-23 13:27:30.724 2024-02-23 13:27:30.724 900 TIP 436123 618 6043075 2024-02-23 13:36:34.985 2024-02-23 13:36:34.985 1000 FEE 436187 20776 6043088 2024-02-23 13:41:16.666 2024-02-23 13:41:16.666 5000 FEE 435328 14818 6043089 2024-02-23 13:41:16.666 2024-02-23 13:41:16.666 45000 TIP 435328 17838 6043136 2024-02-23 13:49:36.067 2024-02-23 13:49:36.067 3000 FEE 436047 1326 6043137 2024-02-23 13:49:36.067 2024-02-23 13:49:36.067 27000 TIP 436047 20744 6043138 2024-02-23 13:49:36.699 2024-02-23 13:49:36.699 27000 FEE 436047 2844 6043139 2024-02-23 13:49:36.699 2024-02-23 13:49:36.699 243000 TIP 436047 1007 6043187 2024-02-23 13:52:41.411 2024-02-23 13:52:41.411 0 FEE 436210 649 6043221 2024-02-23 13:56:52.797 2024-02-23 13:56:52.797 2300 FEE 436136 18932 6043222 2024-02-23 13:56:52.797 2024-02-23 13:56:52.797 20700 TIP 436136 12774 6043227 2024-02-23 13:56:53.237 2024-02-23 13:56:53.237 2300 FEE 436136 16193 6043228 2024-02-23 13:56:53.237 2024-02-23 13:56:53.237 20700 TIP 436136 9150 6043235 2024-02-23 13:56:54.361 2024-02-23 13:56:54.361 2300 FEE 436136 21083 6043236 2024-02-23 13:56:54.361 2024-02-23 13:56:54.361 20700 TIP 436136 21578 6043243 2024-02-23 13:56:55.647 2024-02-23 13:56:55.647 2300 FEE 436136 17494 6043244 2024-02-23 13:56:55.647 2024-02-23 13:56:55.647 20700 TIP 436136 18705 6043249 2024-02-23 13:56:56.187 2024-02-23 13:56:56.187 2300 FEE 436136 14037 6043250 2024-02-23 13:56:56.187 2024-02-23 13:56:56.187 20700 TIP 436136 1740 6043255 2024-02-23 13:56:56.863 2024-02-23 13:56:56.863 2300 FEE 436136 9363 6043256 2024-02-23 13:56:56.863 2024-02-23 13:56:56.863 20700 TIP 436136 21466 6043259 2024-02-23 13:56:57.232 2024-02-23 13:56:57.232 2300 FEE 436136 21491 6043260 2024-02-23 13:56:57.232 2024-02-23 13:56:57.232 20700 TIP 436136 3400 6043269 2024-02-23 13:56:58.207 2024-02-23 13:56:58.207 2300 FEE 436136 21506 6043270 2024-02-23 13:56:58.207 2024-02-23 13:56:58.207 20700 TIP 436136 20464 6043299 2024-02-23 13:57:01.355 2024-02-23 13:57:01.355 2300 FEE 436136 4776 6043300 2024-02-23 13:57:01.355 2024-02-23 13:57:01.355 20700 TIP 436136 1320 6043329 2024-02-23 13:58:08.548 2024-02-23 13:58:08.548 1000 FEE 436195 18896 6043330 2024-02-23 13:58:08.548 2024-02-23 13:58:08.548 9000 TIP 436195 776 6043372 2024-02-23 14:04:45.66 2024-02-23 14:04:45.66 10000 FEE 436226 18241 6043393 2024-02-23 14:12:11.496 2024-02-23 14:12:11.496 11000 FEE 436228 6382 6043415 2024-02-23 14:18:21.157 2024-02-23 14:18:21.157 1000 FEE 436234 21242 6043418 2024-02-23 14:18:43.054 2024-02-23 14:18:43.054 2100 FEE 436004 14404 6043419 2024-02-23 14:18:43.054 2024-02-23 14:18:43.054 18900 TIP 436004 683 6043439 2024-02-23 14:23:15.885 2024-02-23 14:23:15.885 3200 FEE 436230 2195 6043440 2024-02-23 14:23:15.885 2024-02-23 14:23:15.885 28800 TIP 436230 979 6043465 2024-02-23 14:27:05.856 2024-02-23 14:27:05.856 8300 FEE 436233 4768 6043466 2024-02-23 14:27:05.856 2024-02-23 14:27:05.856 74700 TIP 436233 13143 6043473 2024-02-23 14:27:06.95 2024-02-23 14:27:06.95 1000 FEE 436241 21555 6043474 2024-02-23 14:27:06.95 2024-02-23 14:27:06.95 9000 TIP 436241 19613 6043501 2024-02-23 14:28:04.895 2024-02-23 14:28:04.895 8300 FEE 435847 9476 6043502 2024-02-23 14:28:04.895 2024-02-23 14:28:04.895 74700 TIP 435847 986 6043505 2024-02-23 14:28:05.332 2024-02-23 14:28:05.332 16600 FEE 435847 13517 6043506 2024-02-23 14:28:05.332 2024-02-23 14:28:05.332 149400 TIP 435847 9921 6043533 2024-02-23 14:28:08.498 2024-02-23 14:28:08.498 8300 FEE 435847 762 6043534 2024-02-23 14:28:08.498 2024-02-23 14:28:08.498 74700 TIP 435847 2741 6043581 2024-02-23 14:29:58.609 2024-02-23 14:29:58.609 1000 FEE 436138 20691 6043582 2024-02-23 14:29:58.609 2024-02-23 14:29:58.609 9000 TIP 436138 21503 6043586 2024-02-23 14:30:03.686 2024-02-23 14:30:03.686 1000 FEE 436128 632 6043587 2024-02-23 14:30:03.686 2024-02-23 14:30:03.686 9000 TIP 436128 1213 6043602 2024-02-23 14:31:41.631 2024-02-23 14:31:41.631 4000 FEE 435905 14795 6043603 2024-02-23 14:31:41.631 2024-02-23 14:31:41.631 36000 TIP 435905 721 6043638 2024-02-23 14:34:30.22 2024-02-23 14:34:30.22 1000 FEE 199286 18630 6043639 2024-02-23 14:34:30.22 2024-02-23 14:34:30.22 9000 TIP 199286 2844 6043647 2024-02-23 14:35:25.468 2024-02-23 14:35:25.468 4000 FEE 436106 21222 6043648 2024-02-23 14:35:25.468 2024-02-23 14:35:25.468 36000 TIP 436106 9845 6043682 2024-02-23 14:38:11.947 2024-02-23 14:38:11.947 1000 FEE 436261 15703 6043683 2024-02-23 14:38:23.657 2024-02-23 14:38:23.657 500 FEE 436256 15226 6043684 2024-02-23 14:38:23.657 2024-02-23 14:38:23.657 4500 TIP 436256 798 6043697 2024-02-23 14:40:40.717 2024-02-23 14:40:40.717 100 FEE 436241 18230 6043698 2024-02-23 14:40:40.717 2024-02-23 14:40:40.717 900 TIP 436241 16543 6043733 2024-02-23 14:44:17.198 2024-02-23 14:44:17.198 2100 FEE 435861 19036 6043734 2024-02-23 14:44:17.198 2024-02-23 14:44:17.198 18900 TIP 435861 2016 6043741 2024-02-23 14:45:03.104 2024-02-23 14:45:03.104 2100 FEE 436136 9242 6043742 2024-02-23 14:45:03.104 2024-02-23 14:45:03.104 18900 TIP 436136 20963 6043749 2024-02-23 14:45:15.709 2024-02-23 14:45:15.709 2000 FEE 436208 14258 6043750 2024-02-23 14:45:15.709 2024-02-23 14:45:15.709 18000 TIP 436208 20183 6043751 2024-02-23 14:45:15.983 2024-02-23 14:45:15.983 1000 FEE 436208 20143 6043752 2024-02-23 14:45:15.983 2024-02-23 14:45:15.983 9000 TIP 436208 1697 6043755 2024-02-23 14:45:16.338 2024-02-23 14:45:16.338 2000 FEE 436208 21451 6043756 2024-02-23 14:45:16.338 2024-02-23 14:45:16.338 18000 TIP 436208 19943 6043773 2024-02-23 14:45:48.896 2024-02-23 14:45:48.896 4000 FEE 436263 19471 6043774 2024-02-23 14:45:48.896 2024-02-23 14:45:48.896 36000 TIP 436263 5128 6043792 2024-02-23 14:47:18.141 2024-02-23 14:47:18.141 2100 FEE 436213 649 6043793 2024-02-23 14:47:18.141 2024-02-23 14:47:18.141 18900 TIP 436213 20781 6043823 2024-02-23 14:49:28.961 2024-02-23 14:49:28.961 2100 FEE 436030 21441 6043824 2024-02-23 14:49:28.961 2024-02-23 14:49:28.961 18900 TIP 436030 1310 6043838 2024-02-23 14:50:49.232 2024-02-23 14:50:49.232 1600 FEE 436233 17226 6043839 2024-02-23 14:50:49.232 2024-02-23 14:50:49.232 14400 TIP 436233 20018 6043845 2024-02-23 14:52:15.983 2024-02-23 14:52:15.983 1000 FEE 436274 15463 6043859 2024-02-23 14:55:00.224 2024-02-23 14:55:00.224 100 FEE 436241 718 6043860 2024-02-23 14:55:00.224 2024-02-23 14:55:00.224 900 TIP 436241 21589 6043863 2024-02-23 14:55:09.474 2024-02-23 14:55:09.474 100 FEE 435847 18460 6043864 2024-02-23 14:55:09.474 2024-02-23 14:55:09.474 900 TIP 435847 5171 6043891 2024-02-23 15:02:00.517 2024-02-23 15:02:00.517 10000 FEE 435847 21079 6043892 2024-02-23 15:02:00.517 2024-02-23 15:02:00.517 90000 TIP 435847 20973 6043893 2024-02-23 15:02:00.669 2024-02-23 15:02:00.669 10000 FEE 435847 4798 6043894 2024-02-23 15:02:00.669 2024-02-23 15:02:00.669 90000 TIP 435847 11288 6043908 2024-02-23 15:02:06.976 2024-02-23 15:02:06.976 1100 FEE 436241 673 6043909 2024-02-23 15:02:06.976 2024-02-23 15:02:06.976 9900 TIP 436241 6137 6042934 2024-02-23 13:20:06.296 2024-02-23 13:20:06.296 500 FEE 434625 889 6042935 2024-02-23 13:20:06.296 2024-02-23 13:20:06.296 4500 TIP 434625 7891 6042957 2024-02-23 13:22:08.944 2024-02-23 13:22:08.944 800 FEE 436147 21563 6042958 2024-02-23 13:22:08.944 2024-02-23 13:22:08.944 7200 TIP 436147 19151 6042971 2024-02-23 13:23:12.539 2024-02-23 13:23:12.539 2700 FEE 435663 2042 6042972 2024-02-23 13:23:12.539 2024-02-23 13:23:12.539 24300 TIP 435663 2293 6042975 2024-02-23 13:23:12.903 2024-02-23 13:23:12.903 2700 FEE 435663 14939 6042976 2024-02-23 13:23:12.903 2024-02-23 13:23:12.903 24300 TIP 435663 18051 6042985 2024-02-23 13:23:55.278 2024-02-23 13:23:55.278 1000 FEE 436169 795 6042997 2024-02-23 13:24:18.007 2024-02-23 13:24:18.007 2700 FEE 435856 18629 6042998 2024-02-23 13:24:18.007 2024-02-23 13:24:18.007 24300 TIP 435856 13046 6042999 2024-02-23 13:24:31.769 2024-02-23 13:24:31.769 2100 FEE 247866 18076 6043000 2024-02-23 13:24:31.769 2024-02-23 13:24:31.769 18900 TIP 247866 10359 6043008 2024-02-23 13:24:33.936 2024-02-23 13:24:33.936 2100 FEE 247866 12507 6043009 2024-02-23 13:24:33.936 2024-02-23 13:24:33.936 18900 TIP 247866 9496 6043023 2024-02-23 13:26:10.833 2024-02-23 13:26:10.833 0 FEE 436171 21239 6043034 2024-02-23 13:27:30.797 2024-02-23 13:27:30.797 100 FEE 436123 11522 6043035 2024-02-23 13:27:30.797 2024-02-23 13:27:30.797 900 TIP 436123 1733 6043042 2024-02-23 13:27:41.676 2024-02-23 13:27:41.676 1000 FEE 436178 19284 6043045 2024-02-23 13:28:11.201 2024-02-23 13:28:11.201 3400 FEE 435763 1175 6043046 2024-02-23 13:28:11.201 2024-02-23 13:28:11.201 30600 TIP 435763 8472 6043076 2024-02-23 13:36:46.382 2024-02-23 13:36:46.382 1000 FEE 436188 20980 6043098 2024-02-23 13:43:11.108 2024-02-23 13:43:11.108 1000 FEE 436194 21058 6043100 2024-02-23 13:43:21.65 2024-02-23 13:43:21.65 1000 FEE 436069 19458 6043101 2024-02-23 13:43:21.65 2024-02-23 13:43:21.65 9000 TIP 436069 1817 6043103 2024-02-23 13:43:57.865 2024-02-23 13:43:57.865 10000 FEE 435934 11395 6043104 2024-02-23 13:43:57.865 2024-02-23 13:43:57.865 90000 TIP 435934 19652 6043156 2024-02-23 13:51:15.079 2024-02-23 13:51:15.079 3000 FEE 436062 19966 6043157 2024-02-23 13:51:15.079 2024-02-23 13:51:15.079 27000 TIP 436062 21208 6043158 2024-02-23 13:51:15.119 2024-02-23 13:51:15.119 8300 FEE 435944 13854 6043159 2024-02-23 13:51:15.119 2024-02-23 13:51:15.119 74700 TIP 435944 12738 6043166 2024-02-23 13:51:17.037 2024-02-23 13:51:17.037 8300 FEE 436093 10731 6043167 2024-02-23 13:51:17.037 2024-02-23 13:51:17.037 74700 TIP 436093 14168 6043205 2024-02-23 13:56:51.332 2024-02-23 13:56:51.332 2300 FEE 436136 18705 6043206 2024-02-23 13:56:51.332 2024-02-23 13:56:51.332 20700 TIP 436136 985 6043233 2024-02-23 13:56:54.224 2024-02-23 13:56:54.224 2300 FEE 436136 13204 6043234 2024-02-23 13:56:54.224 2024-02-23 13:56:54.224 20700 TIP 436136 674 6043253 2024-02-23 13:56:56.687 2024-02-23 13:56:56.687 2300 FEE 436136 19909 6043254 2024-02-23 13:56:56.687 2024-02-23 13:56:56.687 20700 TIP 436136 999 6043301 2024-02-23 13:57:01.615 2024-02-23 13:57:01.615 2300 FEE 436136 5455 6043302 2024-02-23 13:57:01.615 2024-02-23 13:57:01.615 20700 TIP 436136 10818 6043343 2024-02-23 13:58:12.247 2024-02-23 13:58:12.247 1000 FEE 436174 13798 6043344 2024-02-23 13:58:12.247 2024-02-23 13:58:12.247 9000 TIP 436174 14990 6043351 2024-02-23 13:58:25.131 2024-02-23 13:58:25.131 1000 FEE 436217 1051 6043358 2024-02-23 14:01:17.861 2024-02-23 14:01:17.861 0 FEE 436215 787 6043375 2024-02-23 14:05:10.393 2024-02-23 14:05:10.393 10000 FEE 436213 21485 6043376 2024-02-23 14:05:10.393 2024-02-23 14:05:10.393 90000 TIP 436213 21578 6043394 2024-02-23 14:12:44.173 2024-02-23 14:12:44.173 10000 FEE 436197 15408 6043395 2024-02-23 14:12:44.173 2024-02-23 14:12:44.173 90000 TIP 436197 20840 6043399 2024-02-23 14:13:44.682 2024-02-23 14:13:44.682 800 FEE 436015 16598 6043400 2024-02-23 14:13:44.682 2024-02-23 14:13:44.682 7200 TIP 436015 2460 6043427 2024-02-23 14:21:08.269 2024-02-23 14:21:08.269 1000 FEE 436236 8570 6043437 2024-02-23 14:23:11.484 2024-02-23 14:23:11.484 2500 FEE 436230 4819 6043438 2024-02-23 14:23:11.484 2024-02-23 14:23:11.484 22500 TIP 436230 7185 6043452 2024-02-23 14:25:36.023 2024-02-23 14:25:36.023 1000 FEE 436175 798 6043453 2024-02-23 14:25:36.023 2024-02-23 14:25:36.023 9000 TIP 436175 9695 6043492 2024-02-23 14:27:49.334 2024-02-23 14:27:49.334 8300 FEE 436243 5057 6043493 2024-02-23 14:27:49.334 2024-02-23 14:27:49.334 74700 TIP 436243 9366 6043517 2024-02-23 14:28:06.996 2024-02-23 14:28:06.996 8300 FEE 435847 12483 6043518 2024-02-23 14:28:06.996 2024-02-23 14:28:06.996 74700 TIP 435847 626 6043527 2024-02-23 14:28:08.053 2024-02-23 14:28:08.053 8300 FEE 435847 11378 6043528 2024-02-23 14:28:08.053 2024-02-23 14:28:08.053 74700 TIP 435847 19198 6043529 2024-02-23 14:28:08.2 2024-02-23 14:28:08.2 8300 FEE 435847 20152 6043530 2024-02-23 14:28:08.2 2024-02-23 14:28:08.2 74700 TIP 435847 18731 6043549 2024-02-23 14:28:09.716 2024-02-23 14:28:09.716 8300 FEE 435847 12606 6043550 2024-02-23 14:28:09.716 2024-02-23 14:28:09.716 74700 TIP 435847 18423 6043575 2024-02-23 14:28:58.288 2024-02-23 14:28:58.288 8300 FEE 436248 12562 6043576 2024-02-23 14:28:58.288 2024-02-23 14:28:58.288 74700 TIP 436248 5500 6043634 2024-02-23 14:34:28.669 2024-02-23 14:34:28.669 1000 FEE 217413 14280 6043635 2024-02-23 14:34:28.669 2024-02-23 14:34:28.669 9000 TIP 217413 9166 6043640 2024-02-23 14:34:39.309 2024-02-23 14:34:39.309 4000 FEE 436257 5557 6043641 2024-02-23 14:34:39.309 2024-02-23 14:34:39.309 36000 TIP 436257 1723 6043653 2024-02-23 14:35:29.106 2024-02-23 14:35:29.106 4000 FEE 436252 19398 6043654 2024-02-23 14:35:29.106 2024-02-23 14:35:29.106 36000 TIP 436252 11018 6043659 2024-02-23 14:36:11.357 2024-02-23 14:36:11.357 8300 FEE 436256 1120 6043660 2024-02-23 14:36:11.357 2024-02-23 14:36:11.357 74700 TIP 436256 718 6043680 2024-02-23 14:37:20.37 2024-02-23 14:37:20.37 0 FEE 436243 4102 6043705 2024-02-23 14:41:29.586 2024-02-23 14:41:29.586 1000 FEE 436259 20546 6043706 2024-02-23 14:41:29.586 2024-02-23 14:41:29.586 9000 TIP 436259 19992 6043709 2024-02-23 14:41:33.179 2024-02-23 14:41:33.179 100 FEE 436235 20683 6043710 2024-02-23 14:41:33.179 2024-02-23 14:41:33.179 900 TIP 436235 2402 6043717 2024-02-23 14:41:35.329 2024-02-23 14:41:35.329 100 FEE 436239 19613 6043718 2024-02-23 14:41:35.329 2024-02-23 14:41:35.329 900 TIP 436239 13547 6043731 2024-02-23 14:43:37.44 2024-02-23 14:43:37.44 1000 FEE 436265 18291 6043743 2024-02-23 14:45:05.533 2024-02-23 14:45:05.533 2100 FEE 436233 4570 6043744 2024-02-23 14:45:05.533 2024-02-23 14:45:05.533 18900 TIP 436233 4692 6043763 2024-02-23 14:45:19.297 2024-02-23 14:45:19.297 2100 FEE 436254 20153 6043764 2024-02-23 14:45:19.297 2024-02-23 14:45:19.297 18900 TIP 436254 16176 6043775 2024-02-23 14:45:58.436 2024-02-23 14:45:58.436 2100 FEE 436174 18423 6043776 2024-02-23 14:45:58.436 2024-02-23 14:45:58.436 18900 TIP 436174 18830 6043790 2024-02-23 14:47:05.804 2024-02-23 14:47:05.804 2100 FEE 436231 19815 6043791 2024-02-23 14:47:05.804 2024-02-23 14:47:05.804 18900 TIP 436231 17690 6042959 2024-02-23 13:22:20.057 2024-02-23 13:22:20.057 10000 FEE 436166 13348 6042965 2024-02-23 13:23:11.964 2024-02-23 13:23:11.964 2700 FEE 435663 21402 6042966 2024-02-23 13:23:11.964 2024-02-23 13:23:11.964 24300 TIP 435663 11898 6042995 2024-02-23 13:24:17.458 2024-02-23 13:24:17.458 2700 FEE 435856 1495 6042996 2024-02-23 13:24:17.458 2024-02-23 13:24:17.458 24300 TIP 435856 5597 6043003 2024-02-23 13:24:32.338 2024-02-23 13:24:32.338 2100 FEE 247866 18017 6043004 2024-02-23 13:24:32.338 2024-02-23 13:24:32.338 18900 TIP 247866 17838 6043016 2024-02-23 13:25:00.339 2024-02-23 13:25:00.339 1000 FEE 436170 18896 6043018 2024-02-23 13:25:48.766 2024-02-23 13:25:48.766 1000 FEE 436171 6335 6043067 2024-02-23 13:35:02.174 2024-02-23 13:35:02.174 3200 FEE 436175 2285 6043068 2024-02-23 13:35:02.174 2024-02-23 13:35:02.174 28800 TIP 436175 18629 6043079 2024-02-23 13:37:57.589 2024-02-23 13:37:57.589 1600 FEE 436188 21493 6043080 2024-02-23 13:37:57.589 2024-02-23 13:37:57.589 14400 TIP 436188 1803 6043091 2024-02-23 13:41:49.852 2024-02-23 13:41:49.852 1000 FEE 436192 1105 6043093 2024-02-23 13:42:44.138 2024-02-23 13:42:44.138 1000 FEE 436193 21063 6043108 2024-02-23 13:44:22.212 2024-02-23 13:44:22.212 1000000 FEE 436197 14857 6043109 2024-02-23 13:44:22.212 2024-02-23 13:44:22.212 30000000 BOOST 436197 16276 6043134 2024-02-23 13:49:27.75 2024-02-23 13:49:27.75 1000 FEE 436026 19668 6043135 2024-02-23 13:49:27.75 2024-02-23 13:49:27.75 9000 TIP 436026 16954 6043144 2024-02-23 13:50:14.97 2024-02-23 13:50:14.97 1100 FEE 436160 12736 6043145 2024-02-23 13:50:14.97 2024-02-23 13:50:14.97 9900 TIP 436160 6229 6043150 2024-02-23 13:50:46.574 2024-02-23 13:50:46.574 1000 FEE 436208 1741 6043176 2024-02-23 13:51:19.955 2024-02-23 13:51:19.955 8300 FEE 436197 1519 6043177 2024-02-23 13:51:19.955 2024-02-23 13:51:19.955 74700 TIP 436197 12188 6043190 2024-02-23 13:52:58.01 2024-02-23 13:52:58.01 100 FEE 436191 987 6043191 2024-02-23 13:52:58.01 2024-02-23 13:52:58.01 900 TIP 436191 17953 6043195 2024-02-23 13:54:52.974 2024-02-23 13:54:52.974 100 FEE 436207 636 6043196 2024-02-23 13:54:52.974 2024-02-23 13:54:52.974 900 TIP 436207 18660 6043215 2024-02-23 13:56:52.201 2024-02-23 13:56:52.201 2300 FEE 436136 777 6043216 2024-02-23 13:56:52.201 2024-02-23 13:56:52.201 20700 TIP 436136 1618 6043225 2024-02-23 13:56:53.078 2024-02-23 13:56:53.078 2300 FEE 436136 16354 6043226 2024-02-23 13:56:53.078 2024-02-23 13:56:53.078 20700 TIP 436136 633 6043231 2024-02-23 13:56:53.915 2024-02-23 13:56:53.915 2300 FEE 436136 16229 6043232 2024-02-23 13:56:53.915 2024-02-23 13:56:53.915 20700 TIP 436136 16684 6043283 2024-02-23 13:56:59.496 2024-02-23 13:56:59.496 2300 FEE 436136 15577 6043284 2024-02-23 13:56:59.496 2024-02-23 13:56:59.496 20700 TIP 436136 2459 6043289 2024-02-23 13:57:00.064 2024-02-23 13:57:00.064 2300 FEE 436136 956 6043290 2024-02-23 13:57:00.064 2024-02-23 13:57:00.064 20700 TIP 436136 19842 6043307 2024-02-23 13:57:02.285 2024-02-23 13:57:02.285 2300 FEE 436136 21417 6043308 2024-02-23 13:57:02.285 2024-02-23 13:57:02.285 20700 TIP 436136 17011 6043325 2024-02-23 13:58:04.862 2024-02-23 13:58:04.862 1000 FEE 435905 13399 6043326 2024-02-23 13:58:04.862 2024-02-23 13:58:04.862 9000 TIP 435905 2963 6043385 2024-02-23 14:09:59.927 2024-02-23 14:09:59.927 0 FEE 436221 20108 6042991 2024-02-23 13:24:17.064 2024-02-23 13:24:17.064 2700 FEE 435856 21417 6042992 2024-02-23 13:24:17.064 2024-02-23 13:24:17.064 24300 TIP 435856 1236 6043006 2024-02-23 13:24:33.779 2024-02-23 13:24:33.779 2100 FEE 247866 17673 6043007 2024-02-23 13:24:33.779 2024-02-23 13:24:33.779 18900 TIP 247866 760 6043019 2024-02-23 13:25:49.869 2024-02-23 13:25:49.869 1000 FEE 436172 14385 6043026 2024-02-23 13:26:32.38 2024-02-23 13:26:32.38 10000 FEE 436169 18731 6043027 2024-02-23 13:26:32.38 2024-02-23 13:26:32.38 90000 TIP 436169 16124 6043036 2024-02-23 13:27:31.006 2024-02-23 13:27:31.006 100 FEE 436123 18426 6043037 2024-02-23 13:27:31.006 2024-02-23 13:27:31.006 900 TIP 436123 19158 6043049 2024-02-23 13:28:34.149 2024-02-23 13:28:34.149 1000 FEE 436179 19096 6043065 2024-02-23 13:34:57.55 2024-02-23 13:34:57.55 1000 FEE 436185 21136 6043111 2024-02-23 13:45:36.397 2024-02-23 13:45:36.397 1000 FEE 436198 11275 6043127 2024-02-23 13:48:31.425 2024-02-23 13:48:31.425 1600 FEE 436197 20187 6043128 2024-02-23 13:48:31.425 2024-02-23 13:48:31.425 14400 TIP 436197 18468 6043154 2024-02-23 13:51:14.946 2024-02-23 13:51:14.946 8300 FEE 435944 732 6043155 2024-02-23 13:51:14.946 2024-02-23 13:51:14.946 74700 TIP 435944 2390 6043162 2024-02-23 13:51:15.539 2024-02-23 13:51:15.539 8300 FEE 435944 20586 6043163 2024-02-23 13:51:15.539 2024-02-23 13:51:15.539 74700 TIP 435944 21090 6043164 2024-02-23 13:51:15.691 2024-02-23 13:51:15.691 27000 FEE 436062 20606 6043165 2024-02-23 13:51:15.691 2024-02-23 13:51:15.691 243000 TIP 436062 979 6043174 2024-02-23 13:51:19.66 2024-02-23 13:51:19.66 8300 FEE 436197 10280 6043175 2024-02-23 13:51:19.66 2024-02-23 13:51:19.66 74700 TIP 436197 5527 6043201 2024-02-23 13:56:50.993 2024-02-23 13:56:50.993 2300 FEE 436136 12218 6043202 2024-02-23 13:56:50.993 2024-02-23 13:56:50.993 20700 TIP 436136 21463 6043245 2024-02-23 13:56:55.816 2024-02-23 13:56:55.816 2300 FEE 436136 2459 6043246 2024-02-23 13:56:55.816 2024-02-23 13:56:55.816 20700 TIP 436136 2776 6043267 2024-02-23 13:56:58.035 2024-02-23 13:56:58.035 2300 FEE 436136 4166 6043268 2024-02-23 13:56:58.035 2024-02-23 13:56:58.035 20700 TIP 436136 20243 6043060 2024-02-23 13:32:02.727 2024-02-23 13:32:02.727 1000 STREAM 141924 726 6043061 2024-02-23 13:33:02.733 2024-02-23 13:33:02.733 1000 STREAM 141924 12769 6043063 2024-02-23 13:34:02.732 2024-02-23 13:34:02.732 1000 STREAM 141924 16809 6043077 2024-02-23 13:37:02.756 2024-02-23 13:37:02.756 1000 STREAM 141924 1141 6043082 2024-02-23 13:38:02.749 2024-02-23 13:38:02.749 1000 STREAM 141924 19322 6043083 2024-02-23 13:39:02.764 2024-02-23 13:39:02.764 1000 STREAM 141924 18154 6043092 2024-02-23 13:42:02.812 2024-02-23 13:42:02.812 1000 STREAM 141924 8648 6043094 2024-02-23 13:43:02.815 2024-02-23 13:43:02.815 1000 STREAM 141924 16042 6043107 2024-02-23 13:44:02.832 2024-02-23 13:44:02.832 1000 STREAM 141924 18448 6043110 2024-02-23 13:45:02.841 2024-02-23 13:45:02.841 1000 STREAM 141924 11938 6043123 2024-02-23 13:48:02.878 2024-02-23 13:48:02.878 1000 STREAM 141924 1316 6043142 2024-02-23 13:50:02.89 2024-02-23 13:50:02.89 1000 STREAM 141924 21249 6043185 2024-02-23 13:52:02.888 2024-02-23 13:52:02.888 1000 STREAM 141924 14381 6043192 2024-02-23 13:53:02.91 2024-02-23 13:53:02.91 1000 STREAM 141924 20681 6043194 2024-02-23 13:54:02.917 2024-02-23 13:54:02.917 1000 STREAM 141924 6003 6043200 2024-02-23 13:56:02.941 2024-02-23 13:56:02.941 1000 STREAM 141924 18829 6043313 2024-02-23 13:57:02.937 2024-02-23 13:57:02.937 1000 STREAM 141924 2335 6043324 2024-02-23 13:58:02.949 2024-02-23 13:58:02.949 1000 STREAM 141924 19292 6043354 2024-02-23 13:59:02.943 2024-02-23 13:59:02.943 1000 STREAM 141924 2639 6043361 2024-02-23 14:02:02.972 2024-02-23 14:02:02.972 1000 STREAM 141924 20788 6043367 2024-02-23 14:04:02.974 2024-02-23 14:04:02.974 1000 STREAM 141924 7818 6043377 2024-02-23 14:06:02.975 2024-02-23 14:06:02.975 1000 STREAM 141924 632 6043379 2024-02-23 14:07:02.985 2024-02-23 14:07:02.985 1000 STREAM 141924 2832 6043380 2024-02-23 14:08:02.995 2024-02-23 14:08:02.995 1000 STREAM 141924 3729 6043389 2024-02-23 14:11:03.021 2024-02-23 14:11:03.021 1000 STREAM 141924 11789 6043392 2024-02-23 14:12:03.033 2024-02-23 14:12:03.033 1000 STREAM 141924 7960 6043426 2024-02-23 14:21:03.078 2024-02-23 14:21:03.078 1000 STREAM 141924 15536 6043430 2024-02-23 14:22:03.093 2024-02-23 14:22:03.093 1000 STREAM 141924 17106 6043436 2024-02-23 14:23:03.085 2024-02-23 14:23:03.085 1000 STREAM 141924 12483 6043445 2024-02-23 14:24:03.095 2024-02-23 14:24:03.095 1000 STREAM 141924 16284 6043451 2024-02-23 14:25:03.103 2024-02-23 14:25:03.103 1000 STREAM 141924 16816 6043496 2024-02-23 14:28:03.13 2024-02-23 14:28:03.13 1000 STREAM 141924 20310 6112637 2024-02-29 13:55:50.639 2024-02-29 13:55:50.639 1000 FEE 443498 19332 6112650 2024-02-29 13:57:44.152 2024-02-29 13:57:44.152 1000 FEE 443503 9351 6112667 2024-02-29 13:59:56.866 2024-02-29 13:59:56.866 2600 FEE 443382 1130 6112668 2024-02-29 13:59:56.866 2024-02-29 13:59:56.866 23400 TIP 443382 1620 6112687 2024-02-29 14:02:06.896 2024-02-29 14:02:06.896 1000 FEE 443511 2963 6112698 2024-02-29 14:03:48.498 2024-02-29 14:03:48.498 1000 POLL 442163 18517 6112699 2024-02-29 14:04:01.172 2024-02-29 14:04:01.172 3400 FEE 443197 9920 6112700 2024-02-29 14:04:01.172 2024-02-29 14:04:01.172 30600 TIP 443197 9364 6112709 2024-02-29 14:05:09.151 2024-02-29 14:05:09.151 2100 FEE 443501 20264 6112710 2024-02-29 14:05:09.151 2024-02-29 14:05:09.151 18900 TIP 443501 19259 6112715 2024-02-29 14:06:33.14 2024-02-29 14:06:33.14 3400 FEE 443473 19557 6112716 2024-02-29 14:06:33.14 2024-02-29 14:06:33.14 30600 TIP 443473 20881 6112732 2024-02-29 14:09:15.542 2024-02-29 14:09:15.542 2100 FEE 443228 19034 6112733 2024-02-29 14:09:15.542 2024-02-29 14:09:15.542 18900 TIP 443228 16970 6112749 2024-02-29 14:12:14.646 2024-02-29 14:12:14.646 1000 FEE 443516 714 6112750 2024-02-29 14:12:14.646 2024-02-29 14:12:14.646 9000 TIP 443516 13759 6112768 2024-02-29 14:15:51.963 2024-02-29 14:15:51.963 100000 FEE 443531 19488 6112790 2024-02-29 14:18:57.542 2024-02-29 14:18:57.542 0 FEE 443526 5865 6112813 2024-02-29 14:22:43.524 2024-02-29 14:22:43.524 100000 FEE 443541 20454 6112818 2024-02-29 14:23:08.659 2024-02-29 14:23:08.659 1000 FEE 443543 20674 6112842 2024-02-29 14:25:22.784 2024-02-29 14:25:22.784 500 FEE 443528 1130 6112843 2024-02-29 14:25:22.784 2024-02-29 14:25:22.784 4500 TIP 443528 19087 6112848 2024-02-29 14:26:18.403 2024-02-29 14:26:18.403 1000 FEE 443549 1135 6112857 2024-02-29 14:27:16.228 2024-02-29 14:27:16.228 1000 FEE 443551 21453 6112864 2024-02-29 14:27:37.693 2024-02-29 14:27:37.693 1000 FEE 443553 2722 6112868 2024-02-29 14:27:59.738 2024-02-29 14:27:59.738 1000 FEE 443555 19662 6112872 2024-02-29 14:28:33.459 2024-02-29 14:28:33.459 1000 FEE 443556 15160 6112873 2024-02-29 14:29:00.464 2024-02-29 14:29:00.464 10000 FEE 443555 2525 6112874 2024-02-29 14:29:00.464 2024-02-29 14:29:00.464 90000 TIP 443555 10668 6112877 2024-02-29 14:29:39.801 2024-02-29 14:29:39.801 1000 FEE 443538 20205 6112878 2024-02-29 14:29:39.801 2024-02-29 14:29:39.801 9000 TIP 443538 18449 6112882 2024-02-29 14:30:00.9 2024-02-29 14:30:00.9 1600 FEE 443545 1428 6112883 2024-02-29 14:30:00.9 2024-02-29 14:30:00.9 14400 TIP 443545 20911 6112930 2024-02-29 14:33:40.989 2024-02-29 14:33:40.989 2100 FEE 443272 19996 6112931 2024-02-29 14:33:40.989 2024-02-29 14:33:40.989 18900 TIP 443272 18170 6112954 2024-02-29 14:35:03.5 2024-02-29 14:35:03.5 500 FEE 443514 2525 6112955 2024-02-29 14:35:03.5 2024-02-29 14:35:03.5 4500 TIP 443514 10771 6112958 2024-02-29 14:35:03.95 2024-02-29 14:35:03.95 7700 FEE 443274 681 6112959 2024-02-29 14:35:03.95 2024-02-29 14:35:03.95 69300 TIP 443274 3360 6113036 2024-02-29 14:35:35.249 2024-02-29 14:35:35.249 2100 FEE 443517 8726 6113037 2024-02-29 14:35:35.249 2024-02-29 14:35:35.249 18900 TIP 443517 10469 6113038 2024-02-29 14:35:38.884 2024-02-29 14:35:38.884 7700 FEE 443545 2042 6113039 2024-02-29 14:35:38.884 2024-02-29 14:35:38.884 69300 TIP 443545 16665 6113040 2024-02-29 14:35:38.996 2024-02-29 14:35:38.996 7700 FEE 443545 4538 6113041 2024-02-29 14:35:38.996 2024-02-29 14:35:38.996 69300 TIP 443545 8508 6113048 2024-02-29 14:35:50.01 2024-02-29 14:35:50.01 2100 FEE 443505 649 6113049 2024-02-29 14:35:50.01 2024-02-29 14:35:50.01 18900 TIP 443505 18403 6113056 2024-02-29 14:36:01.621 2024-02-29 14:36:01.621 7700 FEE 443571 1326 6113057 2024-02-29 14:36:01.621 2024-02-29 14:36:01.621 69300 TIP 443571 4459 6113071 2024-02-29 14:36:26.049 2024-02-29 14:36:26.049 1000 FEE 443576 17184 6113076 2024-02-29 14:36:48.356 2024-02-29 14:36:48.356 2700 FEE 443492 21514 6113077 2024-02-29 14:36:48.356 2024-02-29 14:36:48.356 24300 TIP 443492 21212 6113082 2024-02-29 14:37:02.307 2024-02-29 14:37:02.307 15000 FEE 443578 2101 6113101 2024-02-29 14:38:26.62 2024-02-29 14:38:26.62 13800 FEE 443272 703 6113102 2024-02-29 14:38:26.62 2024-02-29 14:38:26.62 124200 TIP 443272 19888 6043184 2024-02-23 13:51:38.899 2024-02-23 13:51:38.899 1000 FEE 436210 11443 6043186 2024-02-23 13:52:27.375 2024-02-23 13:52:27.375 1000 FEE 436211 18448 6043193 2024-02-23 13:53:43.138 2024-02-23 13:53:43.138 21000 FEE 436212 18873 6043197 2024-02-23 13:55:00.235 2024-02-23 13:55:00.235 1000 FEE 436214 9246 6043209 2024-02-23 13:56:51.744 2024-02-23 13:56:51.744 2300 FEE 436136 18016 6043210 2024-02-23 13:56:51.744 2024-02-23 13:56:51.744 20700 TIP 436136 17014 6043223 2024-02-23 13:56:52.939 2024-02-23 13:56:52.939 2300 FEE 436136 17673 6043224 2024-02-23 13:56:52.939 2024-02-23 13:56:52.939 20700 TIP 436136 10698 6043241 2024-02-23 13:56:55.484 2024-02-23 13:56:55.484 2300 FEE 436136 14169 6043242 2024-02-23 13:56:55.484 2024-02-23 13:56:55.484 20700 TIP 436136 18995 6043251 2024-02-23 13:56:56.414 2024-02-23 13:56:56.414 2300 FEE 436136 9758 6043252 2024-02-23 13:56:56.414 2024-02-23 13:56:56.414 20700 TIP 436136 21083 6043311 2024-02-23 13:57:02.592 2024-02-23 13:57:02.592 2300 FEE 436136 14774 6043312 2024-02-23 13:57:02.592 2024-02-23 13:57:02.592 20700 TIP 436136 16542 6043314 2024-02-23 13:57:55.024 2024-02-23 13:57:55.024 1000 FEE 436093 19952 6043315 2024-02-23 13:57:55.024 2024-02-23 13:57:55.024 9000 TIP 436093 20551 6043331 2024-02-23 13:58:08.931 2024-02-23 13:58:08.931 1000 FEE 436197 11075 6043332 2024-02-23 13:58:08.931 2024-02-23 13:58:08.931 9000 TIP 436197 15474 6043333 2024-02-23 13:58:09.494 2024-02-23 13:58:09.494 1000 FEE 436201 21492 6043334 2024-02-23 13:58:09.494 2024-02-23 13:58:09.494 9000 TIP 436201 20660 6043335 2024-02-23 13:58:09.747 2024-02-23 13:58:09.747 1000 FEE 436207 9036 6043336 2024-02-23 13:58:09.747 2024-02-23 13:58:09.747 9000 TIP 436207 9529 6043341 2024-02-23 13:58:11.846 2024-02-23 13:58:11.846 1000 FEE 436166 10270 6043342 2024-02-23 13:58:11.846 2024-02-23 13:58:11.846 9000 TIP 436166 1175 6043353 2024-02-23 13:58:41.211 2024-02-23 13:58:41.211 0 FEE 428953 17166 6043368 2024-02-23 14:04:08.02 2024-02-23 14:04:08.02 10000 FEE 436174 4175 6043369 2024-02-23 14:04:08.02 2024-02-23 14:04:08.02 90000 TIP 436174 14045 6043371 2024-02-23 14:04:38.39 2024-02-23 14:04:38.39 1000 FEE 436225 21275 6043382 2024-02-23 14:09:08.632 2024-02-23 14:09:08.632 500 FEE 436221 21022 6043383 2024-02-23 14:09:08.632 2024-02-23 14:09:08.632 4500 TIP 436221 16638 6043390 2024-02-23 14:11:59.933 2024-02-23 14:11:59.933 1000 FEE 436224 12368 6043391 2024-02-23 14:11:59.933 2024-02-23 14:11:59.933 9000 TIP 436224 19094 6043416 2024-02-23 14:18:30.04 2024-02-23 14:18:30.04 5000 FEE 436224 960 6043417 2024-02-23 14:18:30.04 2024-02-23 14:18:30.04 45000 TIP 436224 5444 6043428 2024-02-23 14:21:16.066 2024-02-23 14:21:16.066 3200 FEE 436213 859 6043429 2024-02-23 14:21:16.066 2024-02-23 14:21:16.066 28800 TIP 436213 14168 6043479 2024-02-23 14:27:25.891 2024-02-23 14:27:25.891 1000 FEE 436243 650 6043511 2024-02-23 14:28:05.854 2024-02-23 14:28:05.854 16600 FEE 435847 18635 6043512 2024-02-23 14:28:05.854 2024-02-23 14:28:05.854 149400 TIP 435847 16348 6043521 2024-02-23 14:28:07.896 2024-02-23 14:28:07.896 8300 FEE 435847 20205 6043522 2024-02-23 14:28:07.896 2024-02-23 14:28:07.896 74700 TIP 435847 1801 6043531 2024-02-23 14:28:08.353 2024-02-23 14:28:08.353 8300 FEE 435847 20218 6043532 2024-02-23 14:28:08.353 2024-02-23 14:28:08.353 74700 TIP 435847 6430 6043539 2024-02-23 14:28:08.999 2024-02-23 14:28:08.999 8300 FEE 435847 20495 6043540 2024-02-23 14:28:08.999 2024-02-23 14:28:08.999 74700 TIP 435847 2061 6043606 2024-02-23 14:32:15.641 2024-02-23 14:32:15.641 8900 FEE 436243 2285 6043607 2024-02-23 14:32:15.641 2024-02-23 14:32:15.641 80100 TIP 436243 19094 6043612 2024-02-23 14:32:56.954 2024-02-23 14:32:56.954 0 FEE 436243 956 6043626 2024-02-23 14:34:08.785 2024-02-23 14:34:08.785 1000 FEE 436106 2061 6043627 2024-02-23 14:34:08.785 2024-02-23 14:34:08.785 9000 TIP 436106 11329 6043630 2024-02-23 14:34:27.227 2024-02-23 14:34:27.227 1000 FEE 230233 20267 6043631 2024-02-23 14:34:27.227 2024-02-23 14:34:27.227 9000 TIP 230233 19637 6043690 2024-02-23 14:39:13.183 2024-02-23 14:39:13.183 1000 FEE 436262 9356 6043696 2024-02-23 14:40:26.303 2024-02-23 14:40:26.303 10000 DONT_LIKE_THIS 436233 2046 6043699 2024-02-23 14:40:40.745 2024-02-23 14:40:40.745 900 FEE 436241 5791 6043700 2024-02-23 14:40:40.745 2024-02-23 14:40:40.745 8100 TIP 436241 11038 6043704 2024-02-23 14:41:29.487 2024-02-23 14:41:29.487 1000 FEE 436263 1584 6043713 2024-02-23 14:41:34.547 2024-02-23 14:41:34.547 100 FEE 436237 19930 6043714 2024-02-23 14:41:34.547 2024-02-23 14:41:34.547 900 TIP 436237 12609 6043715 2024-02-23 14:41:34.714 2024-02-23 14:41:34.714 900 FEE 436237 8045 6043716 2024-02-23 14:41:34.714 2024-02-23 14:41:34.714 8100 TIP 436237 8916 6043726 2024-02-23 14:42:12.751 2024-02-23 14:42:12.751 42000 FEE 436264 5852 6043728 2024-02-23 14:43:22.874 2024-02-23 14:43:22.874 0 FEE 436263 15728 6043735 2024-02-23 14:44:32.716 2024-02-23 14:44:32.716 1000 FEE 436266 2963 6043759 2024-02-23 14:45:18.793 2024-02-23 14:45:18.793 1000 FEE 436208 19036 6043760 2024-02-23 14:45:18.793 2024-02-23 14:45:18.793 9000 TIP 436208 7675 6043783 2024-02-23 14:46:50.4 2024-02-23 14:46:50.4 1000 FEE 435929 21600 6043784 2024-02-23 14:46:50.4 2024-02-23 14:46:50.4 9000 TIP 435929 10352 6043803 2024-02-23 14:48:36.083 2024-02-23 14:48:36.083 2100 FEE 436072 19147 6043804 2024-02-23 14:48:36.083 2024-02-23 14:48:36.083 18900 TIP 436072 9438 6043807 2024-02-23 14:48:44.017 2024-02-23 14:48:44.017 2100 FEE 436053 5578 6043808 2024-02-23 14:48:44.017 2024-02-23 14:48:44.017 18900 TIP 436053 16847 6043861 2024-02-23 14:55:00.586 2024-02-23 14:55:00.586 1000 FEE 436278 19572 6043869 2024-02-23 14:57:18.562 2024-02-23 14:57:18.562 2000 FEE 436243 9352 6043870 2024-02-23 14:57:18.562 2024-02-23 14:57:18.562 18000 TIP 436243 19821 6043875 2024-02-23 14:59:58.913 2024-02-23 14:59:58.913 4200 FEE 436258 4574 6043876 2024-02-23 14:59:58.913 2024-02-23 14:59:58.913 37800 TIP 436258 14906 6043203 2024-02-23 13:56:51.218 2024-02-23 13:56:51.218 2300 FEE 436136 20026 6043204 2024-02-23 13:56:51.218 2024-02-23 13:56:51.218 20700 TIP 436136 13327 6043211 2024-02-23 13:56:51.902 2024-02-23 13:56:51.902 2300 FEE 436136 5427 6043212 2024-02-23 13:56:51.902 2024-02-23 13:56:51.902 20700 TIP 436136 5425 6043213 2024-02-23 13:56:52.062 2024-02-23 13:56:52.062 2300 FEE 436136 768 6043214 2024-02-23 13:56:52.062 2024-02-23 13:56:52.062 20700 TIP 436136 1718 6043217 2024-02-23 13:56:52.409 2024-02-23 13:56:52.409 2300 FEE 436136 2525 6043218 2024-02-23 13:56:52.409 2024-02-23 13:56:52.409 20700 TIP 436136 5003 6043219 2024-02-23 13:56:52.598 2024-02-23 13:56:52.598 2300 FEE 436136 19502 6043220 2024-02-23 13:56:52.598 2024-02-23 13:56:52.598 20700 TIP 436136 18583 6043247 2024-02-23 13:56:56.017 2024-02-23 13:56:56.017 2300 FEE 436136 18180 6043248 2024-02-23 13:56:56.017 2024-02-23 13:56:56.017 20700 TIP 436136 3347 6043271 2024-02-23 13:56:58.398 2024-02-23 13:56:58.398 2300 FEE 436136 1145 6043272 2024-02-23 13:56:58.398 2024-02-23 13:56:58.398 20700 TIP 436136 9341 6043275 2024-02-23 13:56:58.757 2024-02-23 13:56:58.757 2300 FEE 436136 18396 6043276 2024-02-23 13:56:58.757 2024-02-23 13:56:58.757 20700 TIP 436136 3439 6043291 2024-02-23 13:57:00.616 2024-02-23 13:57:00.616 2300 FEE 436136 19459 6043292 2024-02-23 13:57:00.616 2024-02-23 13:57:00.616 20700 TIP 436136 16145 6043295 2024-02-23 13:57:01.005 2024-02-23 13:57:01.005 2300 FEE 436136 11621 6043296 2024-02-23 13:57:01.005 2024-02-23 13:57:01.005 20700 TIP 436136 19156 6043297 2024-02-23 13:57:01.174 2024-02-23 13:57:01.174 2300 FEE 436136 20841 6043298 2024-02-23 13:57:01.174 2024-02-23 13:57:01.174 20700 TIP 436136 14910 6043303 2024-02-23 13:57:01.684 2024-02-23 13:57:01.684 2300 FEE 436136 13544 6043304 2024-02-23 13:57:01.684 2024-02-23 13:57:01.684 20700 TIP 436136 16353 6043309 2024-02-23 13:57:02.464 2024-02-23 13:57:02.464 2300 FEE 436136 985 6043310 2024-02-23 13:57:02.464 2024-02-23 13:57:02.464 20700 TIP 436136 1620 6043316 2024-02-23 13:57:56.153 2024-02-23 13:57:56.153 1000 FEE 436158 8423 6043317 2024-02-23 13:57:56.153 2024-02-23 13:57:56.153 9000 TIP 436158 9364 6043320 2024-02-23 13:57:59.614 2024-02-23 13:57:59.614 1000 FEE 436062 19117 6043321 2024-02-23 13:57:59.614 2024-02-23 13:57:59.614 9000 TIP 436062 19848 6043347 2024-02-23 13:58:13.06 2024-02-23 13:58:13.06 1000 FEE 436182 9482 6043348 2024-02-23 13:58:13.06 2024-02-23 13:58:13.06 9000 TIP 436182 10981 6043359 2024-02-23 14:01:49.436 2024-02-23 14:01:49.436 1000 FEE 436221 16998 6043387 2024-02-23 14:10:33.675 2024-02-23 14:10:33.675 10000 FEE 435576 21373 6043388 2024-02-23 14:10:33.675 2024-02-23 14:10:33.675 90000 TIP 435576 3686 6043397 2024-02-23 14:13:36.473 2024-02-23 14:13:36.473 1600 FEE 436062 12102 6043398 2024-02-23 14:13:36.473 2024-02-23 14:13:36.473 14400 TIP 436062 2942 6043408 2024-02-23 14:16:54.85 2024-02-23 14:16:54.85 1000 FEE 435944 19346 6043409 2024-02-23 14:16:54.85 2024-02-23 14:16:54.85 9000 TIP 435944 14785 6043414 2024-02-23 14:18:07.819 2024-02-23 14:18:07.819 0 FEE 436233 6335 6043422 2024-02-23 14:19:22.998 2024-02-23 14:19:22.998 2000 FEE 436231 15843 6043423 2024-02-23 14:19:22.998 2024-02-23 14:19:22.998 18000 TIP 436231 15536 6043447 2024-02-23 14:24:11.706 2024-02-23 14:24:11.706 1000 FEE 436238 15624 6043454 2024-02-23 14:25:39.559 2024-02-23 14:25:39.559 1000 FEE 436194 20998 6043455 2024-02-23 14:25:39.559 2024-02-23 14:25:39.559 9000 TIP 436194 18271 6043461 2024-02-23 14:26:34.343 2024-02-23 14:26:34.343 1000 FEE 436242 5387 6043462 2024-02-23 14:26:57.682 2024-02-23 14:26:57.682 10000 FEE 436241 20299 6043463 2024-02-23 14:26:57.682 2024-02-23 14:26:57.682 90000 TIP 436241 6777 6043469 2024-02-23 14:27:06.195 2024-02-23 14:27:06.195 8300 FEE 436233 15474 6043470 2024-02-23 14:27:06.195 2024-02-23 14:27:06.195 74700 TIP 436233 7558 6043487 2024-02-23 14:27:39.913 2024-02-23 14:27:39.913 1100 FEE 436241 13781 6043488 2024-02-23 14:27:39.913 2024-02-23 14:27:39.913 9900 TIP 436241 19566 6043507 2024-02-23 14:28:05.431 2024-02-23 14:28:05.431 8300 FEE 435847 18225 6043508 2024-02-23 14:28:05.431 2024-02-23 14:28:05.431 74700 TIP 435847 16350 6043515 2024-02-23 14:28:06.908 2024-02-23 14:28:06.908 8300 FEE 435847 10063 6043516 2024-02-23 14:28:06.908 2024-02-23 14:28:06.908 74700 TIP 435847 21427 6043519 2024-02-23 14:28:07.149 2024-02-23 14:28:07.149 8300 FEE 435847 20560 6043520 2024-02-23 14:28:07.149 2024-02-23 14:28:07.149 74700 TIP 435847 7097 6043535 2024-02-23 14:28:08.668 2024-02-23 14:28:08.668 8300 FEE 435847 14376 6043536 2024-02-23 14:28:08.668 2024-02-23 14:28:08.668 74700 TIP 435847 17514 6043554 2024-02-23 14:28:19.448 2024-02-23 14:28:19.448 1000 FEE 436246 6700 6043555 2024-02-23 14:28:19.448 2024-02-23 14:28:19.448 9000 TIP 436246 4118 6043566 2024-02-23 14:28:42.559 2024-02-23 14:28:42.559 8300 FEE 436244 17030 6043567 2024-02-23 14:28:42.559 2024-02-23 14:28:42.559 74700 TIP 436244 21212 6043573 2024-02-23 14:28:51.921 2024-02-23 14:28:51.921 4000 FEE 436233 1729 6043574 2024-02-23 14:28:51.921 2024-02-23 14:28:51.921 36000 TIP 436233 20326 6043579 2024-02-23 14:29:58.037 2024-02-23 14:29:58.037 1000 FEE 436138 20377 6043580 2024-02-23 14:29:58.037 2024-02-23 14:29:58.037 9000 TIP 436138 10549 6043592 2024-02-23 14:30:50.874 2024-02-23 14:30:50.874 1000 FEE 436251 956 6043594 2024-02-23 14:31:12.52 2024-02-23 14:31:12.52 1000 FEE 436252 18626 6043605 2024-02-23 14:32:08.376 2024-02-23 14:32:08.376 10000 FEE 436253 21485 6043620 2024-02-23 14:34:03.441 2024-02-23 14:34:03.441 1000 FEE 436128 18829 6043621 2024-02-23 14:34:03.441 2024-02-23 14:34:03.441 9000 TIP 436128 669 6043656 2024-02-23 14:36:02.673 2024-02-23 14:36:02.673 8300 FEE 436136 3729 6043657 2024-02-23 14:36:02.673 2024-02-23 14:36:02.673 74700 TIP 436136 713 6043666 2024-02-23 14:36:27.62 2024-02-23 14:36:27.62 8300 FEE 435905 20243 6043667 2024-02-23 14:36:27.62 2024-02-23 14:36:27.62 74700 TIP 435905 2204 6043670 2024-02-23 14:36:28.15 2024-02-23 14:36:28.15 8300 FEE 435905 7682 6043671 2024-02-23 14:36:28.15 2024-02-23 14:36:28.15 74700 TIP 435905 5017 6043672 2024-02-23 14:36:28.52 2024-02-23 14:36:28.52 16600 FEE 435905 19417 6043673 2024-02-23 14:36:28.52 2024-02-23 14:36:28.52 149400 TIP 435905 12808 6043676 2024-02-23 14:36:36.475 2024-02-23 14:36:36.475 2000 FEE 436155 15521 6043677 2024-02-23 14:36:36.475 2024-02-23 14:36:36.475 18000 TIP 436155 13204 6043701 2024-02-23 14:40:41.202 2024-02-23 14:40:41.202 9000 FEE 436241 20619 6043702 2024-02-23 14:40:41.202 2024-02-23 14:40:41.202 81000 TIP 436241 18583 6043707 2024-02-23 14:41:29.622 2024-02-23 14:41:29.622 1000 FEE 436259 3478 6043708 2024-02-23 14:41:29.622 2024-02-23 14:41:29.622 9000 TIP 436259 19806 6043753 2024-02-23 14:45:16.113 2024-02-23 14:45:16.113 2100 FEE 435905 20454 6043754 2024-02-23 14:45:16.113 2024-02-23 14:45:16.113 18900 TIP 435905 21369 6043794 2024-02-23 14:47:23.975 2024-02-23 14:47:23.975 1000 FEE 436269 3400 6043827 2024-02-23 14:49:38.772 2024-02-23 14:49:38.772 2100 FEE 436045 5003 6043261 2024-02-23 13:56:57.451 2024-02-23 13:56:57.451 2300 FEE 436136 19394 6043262 2024-02-23 13:56:57.451 2024-02-23 13:56:57.451 20700 TIP 436136 15094 6043263 2024-02-23 13:56:57.629 2024-02-23 13:56:57.629 2300 FEE 436136 16513 6043264 2024-02-23 13:56:57.629 2024-02-23 13:56:57.629 20700 TIP 436136 985 6043277 2024-02-23 13:56:58.982 2024-02-23 13:56:58.982 2300 FEE 436136 18909 6043278 2024-02-23 13:56:58.982 2024-02-23 13:56:58.982 20700 TIP 436136 20326 6043279 2024-02-23 13:56:59.151 2024-02-23 13:56:59.151 2300 FEE 436136 21238 6043280 2024-02-23 13:56:59.151 2024-02-23 13:56:59.151 20700 TIP 436136 13854 6043287 2024-02-23 13:56:59.878 2024-02-23 13:56:59.878 2300 FEE 436136 725 6043288 2024-02-23 13:56:59.878 2024-02-23 13:56:59.878 20700 TIP 436136 20889 6043293 2024-02-23 13:57:00.813 2024-02-23 13:57:00.813 2300 FEE 436136 730 6043294 2024-02-23 13:57:00.813 2024-02-23 13:57:00.813 20700 TIP 436136 16788 6043305 2024-02-23 13:57:01.849 2024-02-23 13:57:01.849 2300 FEE 436136 19193 6043306 2024-02-23 13:57:01.849 2024-02-23 13:57:01.849 20700 TIP 436136 16939 6043327 2024-02-23 13:58:08.536 2024-02-23 13:58:08.536 1000 FEE 436191 3518 6043328 2024-02-23 13:58:08.536 2024-02-23 13:58:08.536 9000 TIP 436191 638 6043337 2024-02-23 13:58:10.161 2024-02-23 13:58:10.161 1000 FEE 436212 19286 6043338 2024-02-23 13:58:10.161 2024-02-23 13:58:10.161 9000 TIP 436212 18101 6043349 2024-02-23 13:58:13.483 2024-02-23 13:58:13.483 1000 FEE 436189 2528 6043350 2024-02-23 13:58:13.483 2024-02-23 13:58:13.483 9000 TIP 436189 19502 6043352 2024-02-23 13:58:31.132 2024-02-23 13:58:31.132 10000 FEE 436218 2844 6043366 2024-02-23 14:03:52.845 2024-02-23 14:03:52.845 1000 FEE 436223 18468 6043370 2024-02-23 14:04:19.425 2024-02-23 14:04:19.425 11000 FEE 436224 9331 6043384 2024-02-23 14:09:19.865 2024-02-23 14:09:19.865 2000 DONT_LIKE_THIS 436219 16598 6043433 2024-02-23 14:22:43.507 2024-02-23 14:22:43.507 0 FEE 436232 2576 6043446 2024-02-23 14:24:03.497 2024-02-23 14:24:03.497 1000 FEE 436237 18500 6043477 2024-02-23 14:27:20.36 2024-02-23 14:27:20.36 10000 FEE 436174 12139 6043478 2024-02-23 14:27:20.36 2024-02-23 14:27:20.36 90000 TIP 436174 9352 6043485 2024-02-23 14:27:39.403 2024-02-23 14:27:39.403 2100 FEE 436233 2188 6043486 2024-02-23 14:27:39.403 2024-02-23 14:27:39.403 18900 TIP 436233 11956 6043494 2024-02-23 14:27:55.444 2024-02-23 14:27:55.444 1000 FEE 436246 6537 6043525 2024-02-23 14:28:07.974 2024-02-23 14:28:07.974 8300 FEE 435847 17030 6043526 2024-02-23 14:28:07.974 2024-02-23 14:28:07.974 74700 TIP 435847 889 6043541 2024-02-23 14:28:09.079 2024-02-23 14:28:09.079 8300 FEE 435847 2614 6043542 2024-02-23 14:28:09.079 2024-02-23 14:28:09.079 74700 TIP 435847 4989 6043543 2024-02-23 14:28:09.251 2024-02-23 14:28:09.251 8300 FEE 435847 4989 6043544 2024-02-23 14:28:09.251 2024-02-23 14:28:09.251 74700 TIP 435847 1512 6043545 2024-02-23 14:28:09.404 2024-02-23 14:28:09.404 8300 FEE 435847 2188 6043546 2024-02-23 14:28:09.404 2024-02-23 14:28:09.404 74700 TIP 435847 18873 6043562 2024-02-23 14:28:40.812 2024-02-23 14:28:40.812 500 FEE 436241 7869 6043563 2024-02-23 14:28:40.812 2024-02-23 14:28:40.812 4500 TIP 436241 19352 6043589 2024-02-23 14:30:36.933 2024-02-23 14:30:36.933 0 FEE 436246 6688 6043597 2024-02-23 14:31:14.416 2024-02-23 14:31:14.416 1000 FEE 436106 18667 6043598 2024-02-23 14:31:14.416 2024-02-23 14:31:14.416 9000 TIP 436106 19622 6043608 2024-02-23 14:32:39.429 2024-02-23 14:32:39.429 1000 FEE 436254 17513 6043616 2024-02-23 14:33:34.485 2024-02-23 14:33:34.485 1000 FEE 436257 21578 6043622 2024-02-23 14:34:05.218 2024-02-23 14:34:05.218 6400 FEE 436246 1881 6043623 2024-02-23 14:34:05.218 2024-02-23 14:34:05.218 57600 TIP 436246 19502 6043636 2024-02-23 14:34:29.804 2024-02-23 14:34:29.804 1000 FEE 199286 6202 6043637 2024-02-23 14:34:29.804 2024-02-23 14:34:29.804 9000 TIP 199286 4043 6043649 2024-02-23 14:35:27.069 2024-02-23 14:35:27.069 4000 FEE 436252 8870 6043650 2024-02-23 14:35:27.069 2024-02-23 14:35:27.069 36000 TIP 436252 16348 6043662 2024-02-23 14:36:26.658 2024-02-23 14:36:26.658 8300 FEE 435905 21589 6043663 2024-02-23 14:36:26.658 2024-02-23 14:36:26.658 74700 TIP 435905 17331 6043674 2024-02-23 14:36:28.657 2024-02-23 14:36:28.657 8300 FEE 435905 1389 6043675 2024-02-23 14:36:28.657 2024-02-23 14:36:28.657 74700 TIP 435905 13132 6043691 2024-02-23 14:39:55.771 2024-02-23 14:39:55.771 500 FEE 436197 20647 6043692 2024-02-23 14:39:55.771 2024-02-23 14:39:55.771 4500 TIP 436197 21619 6043721 2024-02-23 14:42:01.909 2024-02-23 14:42:01.909 100 FEE 436197 2459 6043722 2024-02-23 14:42:01.909 2024-02-23 14:42:01.909 900 TIP 436197 12946 6043729 2024-02-23 14:43:23.577 2024-02-23 14:43:23.577 8300 FEE 436258 16176 6043730 2024-02-23 14:43:23.577 2024-02-23 14:43:23.577 74700 TIP 436258 18608 6043738 2024-02-23 14:44:59.951 2024-02-23 14:44:59.951 2100 FEE 436093 11999 6043739 2024-02-23 14:44:59.951 2024-02-23 14:44:59.951 18900 TIP 436093 20073 6043745 2024-02-23 14:45:10.728 2024-02-23 14:45:10.728 2100 FEE 436158 20563 6043746 2024-02-23 14:45:10.728 2024-02-23 14:45:10.728 18900 TIP 436158 21563 6043747 2024-02-23 14:45:15.196 2024-02-23 14:45:15.196 1000 FEE 436208 21563 6043748 2024-02-23 14:45:15.196 2024-02-23 14:45:15.196 9000 TIP 436208 19038 6043757 2024-02-23 14:45:16.764 2024-02-23 14:45:16.764 2000 FEE 436208 18351 6043758 2024-02-23 14:45:16.764 2024-02-23 14:45:16.764 18000 TIP 436208 21589 6043771 2024-02-23 14:45:42.842 2024-02-23 14:45:42.842 2100 FEE 436047 19639 6043772 2024-02-23 14:45:42.842 2024-02-23 14:45:42.842 18900 TIP 436047 6749 6043777 2024-02-23 14:46:00.734 2024-02-23 14:46:00.734 3400 FEE 436047 2614 6043778 2024-02-23 14:46:00.734 2024-02-23 14:46:00.734 30600 TIP 436047 18344 6043780 2024-02-23 14:46:10.856 2024-02-23 14:46:10.856 1000 FEE 436268 18230 6043787 2024-02-23 14:46:50.68 2024-02-23 14:46:50.68 1000 FEE 435929 18177 6043788 2024-02-23 14:46:50.68 2024-02-23 14:46:50.68 9000 TIP 435929 5195 6043796 2024-02-23 14:48:06.228 2024-02-23 14:48:06.228 1000 FEE 436270 3439 6043809 2024-02-23 14:48:57.833 2024-02-23 14:48:57.833 1000 FEE 436271 18412 6043818 2024-02-23 14:49:02.707 2024-02-23 14:49:02.707 2100 FEE 436037 18170 6043819 2024-02-23 14:49:02.707 2024-02-23 14:49:02.707 18900 TIP 436037 2832 6043831 2024-02-23 14:50:09.276 2024-02-23 14:50:09.276 800 FEE 436255 7673 6043832 2024-02-23 14:50:09.276 2024-02-23 14:50:09.276 7200 TIP 436255 21003 6043865 2024-02-23 14:55:11.838 2024-02-23 14:55:11.838 0 FEE 436277 14651 6043885 2024-02-23 15:01:59.85 2024-02-23 15:01:59.85 21100 FEE 436093 1801 6043886 2024-02-23 15:01:59.85 2024-02-23 15:01:59.85 189900 TIP 436093 15521 6043281 2024-02-23 13:56:59.315 2024-02-23 13:56:59.315 2300 FEE 436136 9982 6043282 2024-02-23 13:56:59.315 2024-02-23 13:56:59.315 20700 TIP 436136 13903 6043285 2024-02-23 13:56:59.803 2024-02-23 13:56:59.803 2300 FEE 436136 19016 6043286 2024-02-23 13:56:59.803 2024-02-23 13:56:59.803 20700 TIP 436136 708 6043318 2024-02-23 13:57:58.064 2024-02-23 13:57:58.064 1000 FEE 436015 18271 6043319 2024-02-23 13:57:58.064 2024-02-23 13:57:58.064 9000 TIP 436015 20624 6043322 2024-02-23 13:58:02.001 2024-02-23 13:58:02.001 1000 FEE 435657 21437 6043323 2024-02-23 13:58:02.001 2024-02-23 13:58:02.001 9000 TIP 435657 21058 6043356 2024-02-23 14:00:41.403 2024-02-23 14:00:41.403 1000 FEE 436220 15088 6043364 2024-02-23 14:03:15.989 2024-02-23 14:03:15.989 10000 FEE 436216 21238 6043365 2024-02-23 14:03:15.989 2024-02-23 14:03:15.989 90000 TIP 436216 5195 6043373 2024-02-23 14:05:01.023 2024-02-23 14:05:01.023 10000 FEE 436227 3686 6043378 2024-02-23 14:06:50.819 2024-02-23 14:06:50.819 0 FEE 436218 2757 6043401 2024-02-23 14:13:58.426 2024-02-23 14:13:58.426 1000 FEE 436229 20619 6043421 2024-02-23 14:19:20.733 2024-02-23 14:19:20.733 1000 FEE 436235 16059 6043431 2024-02-23 14:22:08.039 2024-02-23 14:22:08.039 3200 FEE 436234 21070 6043432 2024-02-23 14:22:08.039 2024-02-23 14:22:08.039 28800 TIP 436234 12976 6043449 2024-02-23 14:24:56.117 2024-02-23 14:24:56.117 800 FEE 436231 7847 6043450 2024-02-23 14:24:56.117 2024-02-23 14:24:56.117 7200 TIP 436231 19773 6043456 2024-02-23 14:26:00.167 2024-02-23 14:26:00.167 10000 FEE 436210 4984 6043457 2024-02-23 14:26:00.167 2024-02-23 14:26:00.167 90000 TIP 436210 20754 6043459 2024-02-23 14:26:20.405 2024-02-23 14:26:20.405 10000 FEE 436240 20871 6043460 2024-02-23 14:26:30.478 2024-02-23 14:26:30.478 100000 FEE 436241 18494 6043471 2024-02-23 14:27:06.229 2024-02-23 14:27:06.229 8300 FEE 436233 6003 6043472 2024-02-23 14:27:06.229 2024-02-23 14:27:06.229 74700 TIP 436233 19992 6043475 2024-02-23 14:27:19.122 2024-02-23 14:27:19.122 3200 FEE 436241 10693 6043476 2024-02-23 14:27:19.122 2024-02-23 14:27:19.122 28800 TIP 436241 18819 6043480 2024-02-23 14:27:38.954 2024-02-23 14:27:38.954 2100 FEE 436233 7553 6043481 2024-02-23 14:27:38.954 2024-02-23 14:27:38.954 18900 TIP 436233 11145 6043491 2024-02-23 14:27:45.904 2024-02-23 14:27:45.904 7000 FEE 436245 14545 6043497 2024-02-23 14:28:04.642 2024-02-23 14:28:04.642 8300 FEE 435847 9354 6043498 2024-02-23 14:28:04.642 2024-02-23 14:28:04.642 74700 TIP 435847 1438 6043503 2024-02-23 14:28:05.032 2024-02-23 14:28:05.032 8300 FEE 435847 15690 6043504 2024-02-23 14:28:05.032 2024-02-23 14:28:05.032 74700 TIP 435847 3979 6043513 2024-02-23 14:28:06.282 2024-02-23 14:28:06.282 16600 FEE 435847 21413 6043514 2024-02-23 14:28:06.282 2024-02-23 14:28:06.282 149400 TIP 435847 16212 6043553 2024-02-23 14:28:19.378 2024-02-23 14:28:19.378 1000 FEE 436247 2361 6043556 2024-02-23 14:28:38.792 2024-02-23 14:28:38.792 21000 FEE 436248 2711 6043560 2024-02-23 14:28:40.604 2024-02-23 14:28:40.604 500 FEE 436241 7674 6043561 2024-02-23 14:28:40.604 2024-02-23 14:28:40.604 4500 TIP 436241 10094 6043571 2024-02-23 14:28:44.255 2024-02-23 14:28:44.255 4000 FEE 436241 17014 6043572 2024-02-23 14:28:44.255 2024-02-23 14:28:44.255 36000 TIP 436241 15139 6043611 2024-02-23 14:32:56.443 2024-02-23 14:32:56.443 1000 FEE 436256 1471 6043624 2024-02-23 14:34:08.248 2024-02-23 14:34:08.248 1000 FEE 436125 20704 6043625 2024-02-23 14:34:08.248 2024-02-23 14:34:08.248 9000 TIP 436125 9352 6043642 2024-02-23 14:34:39.662 2024-02-23 14:34:39.662 4000 FEE 436257 15732 6043643 2024-02-23 14:34:39.662 2024-02-23 14:34:39.662 36000 TIP 436257 8916 6043651 2024-02-23 14:35:28.385 2024-02-23 14:35:28.385 4000 FEE 436252 20129 6043652 2024-02-23 14:35:28.385 2024-02-23 14:35:28.385 36000 TIP 436252 9874 6043658 2024-02-23 14:36:07.512 2024-02-23 14:36:07.512 10000 FEE 436258 19462 6043723 2024-02-23 14:42:02.086 2024-02-23 14:42:02.086 900 FEE 436197 21296 6043724 2024-02-23 14:42:02.086 2024-02-23 14:42:02.086 8100 TIP 436197 2741 6043761 2024-02-23 14:45:18.978 2024-02-23 14:45:18.978 1000 FEE 436208 18727 6043762 2024-02-23 14:45:18.978 2024-02-23 14:45:18.978 9000 TIP 436208 9329 6043797 2024-02-23 14:48:14.583 2024-02-23 14:48:14.583 2100 FEE 436115 6383 6043798 2024-02-23 14:48:14.583 2024-02-23 14:48:14.583 18900 TIP 436115 18679 6043812 2024-02-23 14:49:00.268 2024-02-23 14:49:00.268 1000 FEE 436101 1705 6043813 2024-02-23 14:49:00.268 2024-02-23 14:49:00.268 9000 TIP 436101 18673 6043821 2024-02-23 14:49:13.747 2024-02-23 14:49:13.747 1600 FEE 436249 10934 6043822 2024-02-23 14:49:13.747 2024-02-23 14:49:13.747 14400 TIP 436249 20220 6043339 2024-02-23 13:58:11.464 2024-02-23 13:58:11.464 1000 FEE 436163 1145 6043340 2024-02-23 13:58:11.464 2024-02-23 13:58:11.464 9000 TIP 436163 13544 6043345 2024-02-23 13:58:12.653 2024-02-23 13:58:12.653 1000 FEE 436181 18556 6043346 2024-02-23 13:58:12.653 2024-02-23 13:58:12.653 9000 TIP 436181 16145 6043360 2024-02-23 14:01:51.526 2024-02-23 14:01:51.526 0 FEE 436215 4225 6043363 2024-02-23 14:03:13.154 2024-02-23 14:03:13.154 1000 FEE 436222 20162 6043407 2024-02-23 14:16:46.412 2024-02-23 14:16:46.412 1000 FEE 436230 18539 6043412 2024-02-23 14:17:35.958 2024-02-23 14:17:35.958 21000 FEE 436233 8945 6043425 2024-02-23 14:20:29.808 2024-02-23 14:20:29.808 0 FEE 436232 2029 6043443 2024-02-23 14:23:52.073 2024-02-23 14:23:52.073 1000 FEE 436227 12245 6043444 2024-02-23 14:23:52.073 2024-02-23 14:23:52.073 9000 TIP 436227 909 6043467 2024-02-23 14:27:06.09 2024-02-23 14:27:06.09 8300 FEE 436233 21070 6043468 2024-02-23 14:27:06.09 2024-02-23 14:27:06.09 74700 TIP 436233 9036 6043484 2024-02-23 14:27:39.293 2024-02-23 14:27:39.293 1000 FEE 436244 19259 6043495 2024-02-23 14:27:55.577 2024-02-23 14:27:55.577 0 FEE 436243 654 6043499 2024-02-23 14:28:04.807 2024-02-23 14:28:04.807 8300 FEE 435847 20157 6043500 2024-02-23 14:28:04.807 2024-02-23 14:28:04.807 74700 TIP 435847 5557 6043523 2024-02-23 14:28:07.959 2024-02-23 14:28:07.959 8300 FEE 435847 20412 6043524 2024-02-23 14:28:07.959 2024-02-23 14:28:07.959 74700 TIP 435847 18219 6043551 2024-02-23 14:28:09.866 2024-02-23 14:28:09.866 8300 FEE 435847 2528 6043552 2024-02-23 14:28:09.866 2024-02-23 14:28:09.866 74700 TIP 435847 1162 6043557 2024-02-23 14:28:40.069 2024-02-23 14:28:40.069 42000 FEE 436249 7510 6043564 2024-02-23 14:28:42.336 2024-02-23 14:28:42.336 1100 FEE 436246 618 6043565 2024-02-23 14:28:42.336 2024-02-23 14:28:42.336 9900 TIP 436246 11158 6043578 2024-02-23 14:29:56.5 2024-02-23 14:29:56.5 1000 FEE 436250 698 6043584 2024-02-23 14:30:02.924 2024-02-23 14:30:02.924 1000 FEE 436128 2543 6043585 2024-02-23 14:30:02.924 2024-02-23 14:30:02.924 9000 TIP 436128 19494 6043590 2024-02-23 14:30:43.667 2024-02-23 14:30:43.667 2000 FEE 436125 11621 6043591 2024-02-23 14:30:43.667 2024-02-23 14:30:43.667 18000 TIP 436125 13931 6043601 2024-02-23 14:31:39.147 2024-02-23 14:31:39.147 0 FEE 436246 12277 6043610 2024-02-23 14:32:51.483 2024-02-23 14:32:51.483 50000 FEE 436255 2513 6043628 2024-02-23 14:34:26.782 2024-02-23 14:34:26.782 1000 FEE 230233 7746 6043629 2024-02-23 14:34:26.782 2024-02-23 14:34:26.782 9000 TIP 230233 1030 6043632 2024-02-23 14:34:28.232 2024-02-23 14:34:28.232 1000 FEE 217413 6149 6043633 2024-02-23 14:34:28.232 2024-02-23 14:34:28.232 9000 TIP 217413 6360 6043644 2024-02-23 14:34:39.847 2024-02-23 14:34:39.847 4000 FEE 436257 20669 6043645 2024-02-23 14:34:39.847 2024-02-23 14:34:39.847 36000 TIP 436257 11498 6043678 2024-02-23 14:36:39.623 2024-02-23 14:36:39.623 10000 FEE 436260 20143 6043685 2024-02-23 14:38:27.124 2024-02-23 14:38:27.124 500 FEE 436246 17817 6043686 2024-02-23 14:38:27.124 2024-02-23 14:38:27.124 4500 TIP 436246 16858 6043719 2024-02-23 14:41:35.366 2024-02-23 14:41:35.366 900 FEE 436239 16214 6043720 2024-02-23 14:41:35.366 2024-02-23 14:41:35.366 8100 TIP 436239 7389 6043736 2024-02-23 14:44:57.741 2024-02-23 14:44:57.741 2100 FEE 436197 636 6043737 2024-02-23 14:44:57.741 2024-02-23 14:44:57.741 18900 TIP 436197 20849 6043767 2024-02-23 14:45:29.99 2024-02-23 14:45:29.99 2100 FEE 436248 686 6043768 2024-02-23 14:45:29.99 2024-02-23 14:45:29.99 18900 TIP 436248 10270 6043769 2024-02-23 14:45:35.2 2024-02-23 14:45:35.2 2100 FEE 436241 9150 6043770 2024-02-23 14:45:35.2 2024-02-23 14:45:35.2 18900 TIP 436241 8416 6043781 2024-02-23 14:46:40.683 2024-02-23 14:46:40.683 2100 FEE 436258 8133 6043782 2024-02-23 14:46:40.683 2024-02-23 14:46:40.683 18900 TIP 436258 20861 6043810 2024-02-23 14:49:00.14 2024-02-23 14:49:00.14 1000 FEE 436101 4574 6043811 2024-02-23 14:49:00.14 2024-02-23 14:49:00.14 9000 TIP 436101 19375 6043814 2024-02-23 14:49:00.403 2024-02-23 14:49:00.403 1000 FEE 436101 18403 6043815 2024-02-23 14:49:00.403 2024-02-23 14:49:00.403 9000 TIP 436101 2681 6043835 2024-02-23 14:50:36.807 2024-02-23 14:50:36.807 2100 FEE 436265 18525 6043836 2024-02-23 14:50:36.807 2024-02-23 14:50:36.807 18900 TIP 436265 10549 6043914 2024-02-23 15:02:08.149 2024-02-23 15:02:08.149 1100 FEE 436158 20106 6043915 2024-02-23 15:02:08.149 2024-02-23 15:02:08.149 9900 TIP 436158 19394 6043938 2024-02-23 15:06:49.77 2024-02-23 15:06:49.77 8300 FEE 436281 19531 6043939 2024-02-23 15:06:49.77 2024-02-23 15:06:49.77 74700 TIP 436281 18784 6043942 2024-02-23 15:07:29.316 2024-02-23 15:07:29.316 1000 FEE 436286 15060 6043946 2024-02-23 15:08:17.745 2024-02-23 15:08:17.745 200 FEE 436274 5578 6043947 2024-02-23 15:08:17.745 2024-02-23 15:08:17.745 1800 TIP 436274 19446 6043948 2024-02-23 15:08:46.433 2024-02-23 15:08:46.433 800 FEE 436021 4958 6043949 2024-02-23 15:08:46.433 2024-02-23 15:08:46.433 7200 TIP 436021 2042 6043960 2024-02-23 15:10:51.811 2024-02-23 15:10:51.811 10000 FEE 436289 1713 6043969 2024-02-23 15:12:14.748 2024-02-23 15:12:14.748 200 FEE 436256 20434 6043970 2024-02-23 15:12:14.748 2024-02-23 15:12:14.748 1800 TIP 436256 15491 6043974 2024-02-23 15:12:39.782 2024-02-23 15:12:39.782 1000 FEE 436295 17638 6043997 2024-02-23 15:15:28.038 2024-02-23 15:15:28.038 2100 FEE 436197 16250 6043998 2024-02-23 15:15:28.038 2024-02-23 15:15:28.038 18900 TIP 436197 14267 6044030 2024-02-23 15:20:11.233 2024-02-23 15:20:11.233 1000 FEE 436306 20970 6044035 2024-02-23 15:20:49.123 2024-02-23 15:20:49.123 1000 FEE 436228 19417 6044036 2024-02-23 15:20:49.123 2024-02-23 15:20:49.123 9000 TIP 436228 9330 6044066 2024-02-23 15:23:16.882 2024-02-23 15:23:16.882 3000 FEE 436306 19105 6044067 2024-02-23 15:23:16.882 2024-02-23 15:23:16.882 27000 TIP 436306 16680 6044071 2024-02-23 15:23:54.035 2024-02-23 15:23:54.035 4000 FEE 436310 19005 6044072 2024-02-23 15:23:54.035 2024-02-23 15:23:54.035 36000 TIP 436310 11898 6044076 2024-02-23 15:24:39.801 2024-02-23 15:24:39.801 500 FEE 436208 10668 6044077 2024-02-23 15:24:39.801 2024-02-23 15:24:39.801 4500 TIP 436208 18892 6044102 2024-02-23 15:27:12.398 2024-02-23 15:27:12.398 7100 FEE 434469 20059 6044103 2024-02-23 15:27:12.398 2024-02-23 15:27:12.398 63900 TIP 434469 15588 6044110 2024-02-23 15:27:28.982 2024-02-23 15:27:28.982 5000 FEE 435924 20099 6044111 2024-02-23 15:27:28.982 2024-02-23 15:27:28.982 45000 TIP 435924 738 6044169 2024-02-23 15:32:36.323 2024-02-23 15:32:36.323 5000 FEE 434183 16126 6044170 2024-02-23 15:32:36.323 2024-02-23 15:32:36.323 45000 TIP 434183 17316 6044200 2024-02-23 15:40:01.421 2024-02-23 15:40:01.421 2100 FEE 436061 16929 6044201 2024-02-23 15:40:01.421 2024-02-23 15:40:01.421 18900 TIP 436061 18704 6044211 2024-02-23 15:41:41.617 2024-02-23 15:41:41.617 100 FEE 436287 16230 6044212 2024-02-23 15:41:41.617 2024-02-23 15:41:41.617 900 TIP 436287 976 6044221 2024-02-23 15:43:33.803 2024-02-23 15:43:33.803 100 FEE 436241 13798 6044222 2024-02-23 15:43:33.803 2024-02-23 15:43:33.803 900 TIP 436241 10979 6044228 2024-02-23 15:45:27.136 2024-02-23 15:45:27.136 1000 POLL 436323 17227 6044284 2024-02-23 15:49:36.262 2024-02-23 15:49:36.262 1000 FEE 436326 16970 6044285 2024-02-23 15:49:36.262 2024-02-23 15:49:36.262 9000 TIP 436326 8360 6044304 2024-02-23 15:50:22.292 2024-02-23 15:50:22.292 1600 FEE 436332 19259 6044305 2024-02-23 15:50:22.292 2024-02-23 15:50:22.292 14400 TIP 436332 9844 6044317 2024-02-23 15:51:49.083 2024-02-23 15:51:49.083 3000 FEE 436329 1817 6044318 2024-02-23 15:51:49.083 2024-02-23 15:51:49.083 27000 TIP 436329 2338 6044329 2024-02-23 15:53:08.977 2024-02-23 15:53:08.977 1000 FEE 436337 8498 6044373 2024-02-23 15:55:24.205 2024-02-23 15:55:24.205 4000 FEE 436258 12744 6044374 2024-02-23 15:55:24.205 2024-02-23 15:55:24.205 36000 TIP 436258 1738 6044401 2024-02-23 15:57:09.931 2024-02-23 15:57:09.931 1000 FEE 435063 13854 6044402 2024-02-23 15:57:09.931 2024-02-23 15:57:09.931 9000 TIP 435063 20973 6044428 2024-02-23 15:57:56.947 2024-02-23 15:57:56.947 3000 FEE 435756 14195 6044429 2024-02-23 15:57:56.947 2024-02-23 15:57:56.947 27000 TIP 435756 2780 6043402 2024-02-23 14:14:02.155 2024-02-23 14:14:02.155 1000 STREAM 141924 13599 6043405 2024-02-23 14:15:02.148 2024-02-23 14:15:02.148 1000 STREAM 141924 1286 6043410 2024-02-23 14:17:02.442 2024-02-23 14:17:02.442 1000 STREAM 141924 5377 6112663 2024-02-29 13:59:02.966 2024-02-29 13:59:02.966 1000 STREAM 141924 14045 6112696 2024-02-29 14:03:02.922 2024-02-29 14:03:02.922 1000 STREAM 141924 17147 6112717 2024-02-29 14:07:02.936 2024-02-29 14:07:02.936 1000 STREAM 141924 11498 6112730 2024-02-29 14:09:02.949 2024-02-29 14:09:02.949 1000 STREAM 141924 1825 6112760 2024-02-29 14:13:02.983 2024-02-29 14:13:02.983 1000 STREAM 141924 6602 6112775 2024-02-29 14:17:02.991 2024-02-29 14:17:02.991 1000 STREAM 141924 12609 6112793 2024-02-29 14:19:03.026 2024-02-29 14:19:03.026 1000 STREAM 141924 650 6112806 2024-02-29 14:21:03.017 2024-02-29 14:21:03.017 1000 STREAM 141924 1007 6112812 2024-02-29 14:22:03.019 2024-02-29 14:22:03.019 1000 STREAM 141924 19601 6112829 2024-02-29 14:25:03.038 2024-02-29 14:25:03.038 1000 STREAM 141924 21469 6112856 2024-02-29 14:27:03.046 2024-02-29 14:27:03.046 1000 STREAM 141924 15703 6112884 2024-02-29 14:30:03.109 2024-02-29 14:30:03.109 1000 STREAM 141924 21349 6112889 2024-02-29 14:31:03.096 2024-02-29 14:31:03.096 1000 STREAM 141924 21556 6112904 2024-02-29 14:32:03.1 2024-02-29 14:32:03.1 1000 STREAM 141924 19296 6112921 2024-02-29 14:33:03.096 2024-02-29 14:33:03.096 1000 STREAM 141924 4175 6112953 2024-02-29 14:35:03.1 2024-02-29 14:35:03.1 1000 STREAM 141924 20168 6113113 2024-02-29 14:39:03.088 2024-02-29 14:39:03.088 1000 STREAM 141924 4250 6113127 2024-02-29 14:41:03.1 2024-02-29 14:41:03.1 1000 STREAM 141924 18380 6113382 2024-02-29 14:52:03.127 2024-02-29 14:52:03.127 1000 STREAM 141924 20015 6113391 2024-02-29 14:53:03.133 2024-02-29 14:53:03.133 1000 STREAM 141924 6573 6113419 2024-02-29 14:55:03.134 2024-02-29 14:55:03.134 1000 STREAM 141924 5825 6113459 2024-02-29 14:57:03.176 2024-02-29 14:57:03.176 1000 STREAM 141924 7418 6113529 2024-02-29 14:59:03.165 2024-02-29 14:59:03.165 1000 STREAM 141924 18310 6113635 2024-02-29 15:04:03.209 2024-02-29 15:04:03.209 1000 STREAM 141924 8535 6113642 2024-02-29 15:05:03.205 2024-02-29 15:05:03.205 1000 STREAM 141924 960 6113734 2024-02-29 15:09:03.223 2024-02-29 15:09:03.223 1000 STREAM 141924 17227 6113757 2024-02-29 15:10:03.279 2024-02-29 15:10:03.279 1000 STREAM 141924 10979 6113845 2024-02-29 15:16:03.323 2024-02-29 15:16:03.323 1000 STREAM 141924 15544 6113908 2024-02-29 15:22:03.338 2024-02-29 15:22:03.338 1000 STREAM 141924 14472 6113910 2024-02-29 15:23:03.33 2024-02-29 15:23:03.33 1000 STREAM 141924 17321 6113954 2024-02-29 15:25:03.363 2024-02-29 15:25:03.363 1000 STREAM 141924 13143 6114030 2024-02-29 15:28:03.369 2024-02-29 15:28:03.369 1000 STREAM 141924 1002 6114069 2024-02-29 15:29:03.383 2024-02-29 15:29:03.383 1000 STREAM 141924 19094 6114111 2024-02-29 15:30:03.404 2024-02-29 15:30:03.404 1000 STREAM 141924 18828 6114124 2024-02-29 15:31:03.398 2024-02-29 15:31:03.398 1000 STREAM 141924 1044 6114164 2024-02-29 15:33:03.391 2024-02-29 15:33:03.391 1000 STREAM 141924 21540 6114223 2024-02-29 15:35:03.401 2024-02-29 15:35:03.401 1000 STREAM 141924 21457 6114265 2024-02-29 15:38:03.387 2024-02-29 15:38:03.387 1000 STREAM 141924 18784 6114271 2024-02-29 15:39:03.408 2024-02-29 15:39:03.408 1000 STREAM 141924 18629 6114283 2024-02-29 15:40:03.395 2024-02-29 15:40:03.395 1000 STREAM 141924 11091 6114306 2024-02-29 15:45:03.42 2024-02-29 15:45:03.42 1000 STREAM 141924 20036 6114319 2024-02-29 15:47:03.428 2024-02-29 15:47:03.428 1000 STREAM 141924 13931 6043403 2024-02-23 14:14:08.075 2024-02-23 14:14:08.075 2100 FEE 435847 721 6043404 2024-02-23 14:14:08.075 2024-02-23 14:14:08.075 18900 TIP 435847 12911 6043411 2024-02-23 14:17:30.539 2024-02-23 14:17:30.539 1000 FEE 436232 20511 6043434 2024-02-23 14:22:57.236 2024-02-23 14:22:57.236 200 FEE 436153 1162 6043435 2024-02-23 14:22:57.236 2024-02-23 14:22:57.236 1800 TIP 436153 8380 6043441 2024-02-23 14:23:41.742 2024-02-23 14:23:41.742 4000 FEE 436231 1310 6043442 2024-02-23 14:23:41.742 2024-02-23 14:23:41.742 36000 TIP 436231 4345 6043448 2024-02-23 14:24:52.033 2024-02-23 14:24:52.033 1000 FEE 436239 10731 6043482 2024-02-23 14:27:39.163 2024-02-23 14:27:39.163 2100 FEE 436233 19981 6043483 2024-02-23 14:27:39.163 2024-02-23 14:27:39.163 18900 TIP 436233 21612 6043489 2024-02-23 14:27:42.655 2024-02-23 14:27:42.655 2100 FEE 436195 9184 6043490 2024-02-23 14:27:42.655 2024-02-23 14:27:42.655 18900 TIP 436195 20495 6043509 2024-02-23 14:28:05.564 2024-02-23 14:28:05.564 8300 FEE 435847 618 6043510 2024-02-23 14:28:05.564 2024-02-23 14:28:05.564 74700 TIP 435847 18680 6043537 2024-02-23 14:28:08.781 2024-02-23 14:28:08.781 8300 FEE 435847 9307 6043538 2024-02-23 14:28:08.781 2024-02-23 14:28:08.781 74700 TIP 435847 1800 6043547 2024-02-23 14:28:09.553 2024-02-23 14:28:09.553 8300 FEE 435847 9276 6043548 2024-02-23 14:28:09.553 2024-02-23 14:28:09.553 74700 TIP 435847 9078 6043558 2024-02-23 14:28:40.412 2024-02-23 14:28:40.412 1100 FEE 436243 20706 6043559 2024-02-23 14:28:40.412 2024-02-23 14:28:40.412 9900 TIP 436243 12277 6043568 2024-02-23 14:28:43.069 2024-02-23 14:28:43.069 500 FEE 436241 14258 6043569 2024-02-23 14:28:43.069 2024-02-23 14:28:43.069 4500 TIP 436241 964 6043570 2024-02-23 14:28:44.053 2024-02-23 14:28:44.053 0 FEE 436246 19770 6043588 2024-02-23 14:30:06.569 2024-02-23 14:30:06.569 0 FEE 436246 2780 6043595 2024-02-23 14:31:13.887 2024-02-23 14:31:13.887 1000 FEE 436106 981 6043596 2024-02-23 14:31:13.887 2024-02-23 14:31:13.887 9000 TIP 436106 14381 6043599 2024-02-23 14:31:26.607 2024-02-23 14:31:26.607 4200 FEE 436158 18526 6043600 2024-02-23 14:31:26.607 2024-02-23 14:31:26.607 37800 TIP 436158 2111 6043609 2024-02-23 14:32:42.08 2024-02-23 14:32:42.08 0 FEE 436243 826 6043614 2024-02-23 14:33:25.877 2024-02-23 14:33:25.877 3400 FEE 436062 4126 6043615 2024-02-23 14:33:25.877 2024-02-23 14:33:25.877 30600 TIP 436062 15925 6043617 2024-02-23 14:34:00.69 2024-02-23 14:34:00.69 1000 FEE 436138 16193 6043618 2024-02-23 14:34:00.69 2024-02-23 14:34:00.69 9000 TIP 436138 12222 6043661 2024-02-23 14:36:12.15 2024-02-23 14:36:12.15 1000 FEE 436259 9078 6043664 2024-02-23 14:36:27.442 2024-02-23 14:36:27.442 8300 FEE 435905 1609 6043665 2024-02-23 14:36:27.442 2024-02-23 14:36:27.442 74700 TIP 435905 10359 6043668 2024-02-23 14:36:27.72 2024-02-23 14:36:27.72 8300 FEE 435905 21441 6043669 2024-02-23 14:36:27.72 2024-02-23 14:36:27.72 74700 TIP 435905 15510 6043687 2024-02-23 14:38:28.652 2024-02-23 14:38:28.652 500 FEE 436246 9796 6043688 2024-02-23 14:38:28.652 2024-02-23 14:38:28.652 4500 TIP 436246 19494 6043693 2024-02-23 14:39:57.985 2024-02-23 14:39:57.985 6400 FEE 436207 19034 6043694 2024-02-23 14:39:57.985 2024-02-23 14:39:57.985 57600 TIP 436207 19292 6043711 2024-02-23 14:41:34.046 2024-02-23 14:41:34.046 900 FEE 436235 17514 6043712 2024-02-23 14:41:34.046 2024-02-23 14:41:34.046 8100 TIP 436235 21172 6043765 2024-02-23 14:45:21.836 2024-02-23 14:45:21.836 2100 FEE 436261 19193 6043766 2024-02-23 14:45:21.836 2024-02-23 14:45:21.836 18900 TIP 436261 7119 6043785 2024-02-23 14:46:50.572 2024-02-23 14:46:50.572 1000 FEE 435929 8841 6043786 2024-02-23 14:46:50.572 2024-02-23 14:46:50.572 9000 TIP 435929 18409 6043799 2024-02-23 14:48:16.422 2024-02-23 14:48:16.422 2800 FEE 436261 1221 6043800 2024-02-23 14:48:16.422 2024-02-23 14:48:16.422 25200 TIP 436261 9026 6043853 2024-02-23 14:53:38.401 2024-02-23 14:53:38.401 2000 FEE 435905 18832 6043854 2024-02-23 14:53:38.401 2024-02-23 14:53:38.401 18000 TIP 435905 19381 6043887 2024-02-23 15:02:00.227 2024-02-23 15:02:00.227 10000 FEE 435847 18629 6043888 2024-02-23 15:02:00.227 2024-02-23 15:02:00.227 90000 TIP 435847 7772 6043904 2024-02-23 15:02:05.734 2024-02-23 15:02:05.734 1100 FEE 436136 981 6043905 2024-02-23 15:02:05.734 2024-02-23 15:02:05.734 9900 TIP 436136 16193 6043906 2024-02-23 15:02:05.927 2024-02-23 15:02:05.927 1100 FEE 436136 1008 6043907 2024-02-23 15:02:05.927 2024-02-23 15:02:05.927 9900 TIP 436136 13132 6043975 2024-02-23 15:12:55.957 2024-02-23 15:12:55.957 1000 FEE 436296 17162 6043982 2024-02-23 15:14:06.733 2024-02-23 15:14:06.733 1000 FEE 436297 20602 6044018 2024-02-23 15:18:30.01 2024-02-23 15:18:30.01 0 FEE 436300 16424 6044041 2024-02-23 15:21:16.386 2024-02-23 15:21:16.386 1000 FEE 436308 17237 6044042 2024-02-23 15:21:17.044 2024-02-23 15:21:17.044 2100 FEE 436306 2718 6044043 2024-02-23 15:21:17.044 2024-02-23 15:21:17.044 18900 TIP 436306 11417 6044046 2024-02-23 15:22:30.121 2024-02-23 15:22:30.121 100 FEE 436290 4776 6044047 2024-02-23 15:22:30.121 2024-02-23 15:22:30.121 900 TIP 436290 8176 6044083 2024-02-23 15:25:35.529 2024-02-23 15:25:35.529 4000 FEE 436273 4062 6044084 2024-02-23 15:25:35.529 2024-02-23 15:25:35.529 36000 TIP 436273 13198 6044106 2024-02-23 15:27:19.071 2024-02-23 15:27:19.071 7100 FEE 433978 11328 6044107 2024-02-23 15:27:19.071 2024-02-23 15:27:19.071 63900 TIP 433978 21444 6044128 2024-02-23 15:28:34.133 2024-02-23 15:28:34.133 1000 FEE 435947 1465 6044129 2024-02-23 15:28:34.133 2024-02-23 15:28:34.133 9000 TIP 435947 12768 6044143 2024-02-23 15:28:52.149 2024-02-23 15:28:52.149 1000 FEE 436197 18380 6044144 2024-02-23 15:28:52.149 2024-02-23 15:28:52.149 9000 TIP 436197 16788 6044158 2024-02-23 15:31:04.815 2024-02-23 15:31:04.815 21000 FEE 436319 7827 6044164 2024-02-23 15:32:13.63 2024-02-23 15:32:13.63 1000 FEE 436320 2614 6044174 2024-02-23 15:34:00.951 2024-02-23 15:34:00.951 5000 FEE 434046 8289 6044175 2024-02-23 15:34:00.951 2024-02-23 15:34:00.951 45000 TIP 434046 21140 6044189 2024-02-23 15:35:26.516 2024-02-23 15:35:26.516 1000 FEE 436324 21051 6044226 2024-02-23 15:44:41.515 2024-02-23 15:44:41.515 1000 POLL 436036 16212 6044245 2024-02-23 15:46:52.896 2024-02-23 15:46:52.896 1000 FEE 436327 17124 6044257 2024-02-23 15:49:26.703 2024-02-23 15:49:26.703 1000 FEE 436332 9330 6044260 2024-02-23 15:49:33.444 2024-02-23 15:49:33.444 1000 FEE 436326 20183 6044261 2024-02-23 15:49:33.444 2024-02-23 15:49:33.444 9000 TIP 436326 16638 6044292 2024-02-23 15:49:46.282 2024-02-23 15:49:46.282 8300 FEE 436246 21371 6043583 2024-02-23 14:30:02.611 2024-02-23 14:30:02.611 1000 STREAM 141924 17046 6043593 2024-02-23 14:31:02.581 2024-02-23 14:31:02.581 1000 STREAM 141924 1577 6043613 2024-02-23 14:33:02.613 2024-02-23 14:33:02.613 1000 STREAM 141924 21044 6043619 2024-02-23 14:34:02.61 2024-02-23 14:34:02.61 1000 STREAM 141924 1618 6043646 2024-02-23 14:35:02.624 2024-02-23 14:35:02.624 1000 STREAM 141924 11516 6043732 2024-02-23 14:44:02.762 2024-02-23 14:44:02.762 1000 STREAM 141924 21194 6043829 2024-02-23 14:50:02.832 2024-02-23 14:50:02.832 1000 STREAM 141924 2710 6043840 2024-02-23 14:51:02.845 2024-02-23 14:51:02.845 1000 STREAM 141924 7847 6043855 2024-02-23 14:54:02.891 2024-02-23 14:54:02.891 1000 STREAM 141924 21119 6043895 2024-02-23 15:02:02.968 2024-02-23 15:02:02.968 1000 STREAM 141924 16670 6112671 2024-02-29 14:00:06.684 2024-02-29 14:00:06.684 1000 FEE 443508 19924 6112720 2024-02-29 14:07:38.097 2024-02-29 14:07:38.097 1000 FEE 443519 683 6112742 2024-02-29 14:11:48.552 2024-02-29 14:11:48.552 1000 FEE 443525 19810 6112761 2024-02-29 14:13:46.34 2024-02-29 14:13:46.34 1000 FEE 443527 10530 6112771 2024-02-29 14:16:37.389 2024-02-29 14:16:37.389 0 FEE 443531 2741 6112777 2024-02-29 14:17:14.053 2024-02-29 14:17:14.053 0 FEE 443526 21539 6112779 2024-02-29 14:17:38.86 2024-02-29 14:17:38.86 0 FEE 443535 12057 6112781 2024-02-29 14:18:07.992 2024-02-29 14:18:07.992 2800 FEE 443533 19235 6112782 2024-02-29 14:18:07.992 2024-02-29 14:18:07.992 25200 TIP 443533 1801 6043604 2024-02-23 14:32:02.622 2024-02-23 14:32:02.622 1000 STREAM 141924 880 6043655 2024-02-23 14:36:02.618 2024-02-23 14:36:02.618 1000 STREAM 141924 8173 6043695 2024-02-23 14:40:02.77 2024-02-23 14:40:02.77 1000 STREAM 141924 18177 6043703 2024-02-23 14:41:02.739 2024-02-23 14:41:02.739 1000 STREAM 141924 15049 6043727 2024-02-23 14:43:02.76 2024-02-23 14:43:02.76 1000 STREAM 141924 18618 6043740 2024-02-23 14:45:02.779 2024-02-23 14:45:02.779 1000 STREAM 141924 5825 6043795 2024-02-23 14:48:02.811 2024-02-23 14:48:02.811 1000 STREAM 141924 15474 6043851 2024-02-23 14:53:02.87 2024-02-23 14:53:02.87 1000 STREAM 141924 20464 6043862 2024-02-23 14:55:02.897 2024-02-23 14:55:02.897 1000 STREAM 141924 769 6112679 2024-02-29 14:01:05.257 2024-02-29 14:01:05.257 1000 STREAM 141924 16177 6043679 2024-02-23 14:37:03.18 2024-02-23 14:37:03.18 1000 STREAM 141924 1801 6043681 2024-02-23 14:38:03.184 2024-02-23 14:38:03.184 1000 STREAM 141924 20090 6043725 2024-02-23 14:42:03.237 2024-02-23 14:42:03.237 1000 STREAM 141924 9337 6043779 2024-02-23 14:46:03.252 2024-02-23 14:46:03.252 1000 STREAM 141924 1960 6043789 2024-02-23 14:47:03.245 2024-02-23 14:47:03.245 1000 STREAM 141924 7587 6043868 2024-02-23 14:57:03.295 2024-02-23 14:57:03.295 1000 STREAM 141924 8945 6043879 2024-02-23 15:00:03.337 2024-02-23 15:00:03.337 1000 STREAM 141924 16830 6043922 2024-02-23 15:03:03.345 2024-02-23 15:03:03.345 1000 STREAM 141924 18392 6043952 2024-02-23 15:09:03.356 2024-02-23 15:09:03.356 1000 STREAM 141924 17217 6043981 2024-02-23 15:14:03.381 2024-02-23 15:14:03.381 1000 STREAM 141924 12368 6044014 2024-02-23 15:17:03.395 2024-02-23 15:17:03.395 1000 STREAM 141924 16830 6044219 2024-02-23 15:42:03.542 2024-02-23 15:42:03.542 1000 STREAM 141924 18188 6044223 2024-02-23 15:44:03.53 2024-02-23 15:44:03.53 1000 STREAM 141924 18409 6044227 2024-02-23 15:45:03.527 2024-02-23 15:45:03.527 1000 STREAM 141924 12222 6044244 2024-02-23 15:46:03.523 2024-02-23 15:46:03.523 1000 STREAM 141924 5128 6044255 2024-02-23 15:49:03.54 2024-02-23 15:49:03.54 1000 STREAM 141924 18994 6044314 2024-02-23 15:51:03.57 2024-02-23 15:51:03.57 1000 STREAM 141924 642 6044432 2024-02-23 15:58:03.646 2024-02-23 15:58:03.646 1000 STREAM 141924 16270 6044468 2024-02-23 16:00:03.646 2024-02-23 16:00:03.646 1000 STREAM 141924 5519 6044505 2024-02-23 16:02:03.674 2024-02-23 16:02:03.674 1000 STREAM 141924 4378 6044526 2024-02-23 16:04:03.672 2024-02-23 16:04:03.672 1000 STREAM 141924 11073 6044530 2024-02-23 16:05:03.68 2024-02-23 16:05:03.68 1000 STREAM 141924 20287 6044548 2024-02-23 16:08:03.711 2024-02-23 16:08:03.711 1000 STREAM 141924 940 6044599 2024-02-23 16:09:03.725 2024-02-23 16:09:03.725 1000 STREAM 141924 15719 6044614 2024-02-23 16:12:03.75 2024-02-23 16:12:03.75 1000 STREAM 141924 769 6044622 2024-02-23 16:13:03.772 2024-02-23 16:13:03.772 1000 STREAM 141924 20980 6044660 2024-02-23 16:16:03.776 2024-02-23 16:16:03.776 1000 STREAM 141924 21061 6044665 2024-02-23 16:17:03.797 2024-02-23 16:17:03.797 1000 STREAM 141924 6384 6044667 2024-02-23 16:18:03.794 2024-02-23 16:18:03.794 1000 STREAM 141924 17523 6044674 2024-02-23 16:19:03.797 2024-02-23 16:19:03.797 1000 STREAM 141924 15728 6044752 2024-02-23 16:23:03.826 2024-02-23 16:23:03.826 1000 STREAM 141924 1006 6044760 2024-02-23 16:26:03.852 2024-02-23 16:26:03.852 1000 STREAM 141924 16670 6044766 2024-02-23 16:27:03.866 2024-02-23 16:27:03.866 1000 STREAM 141924 981 6044773 2024-02-23 16:28:03.851 2024-02-23 16:28:03.851 1000 STREAM 141924 21374 6044777 2024-02-23 16:30:03.865 2024-02-23 16:30:03.865 1000 STREAM 141924 18865 6044786 2024-02-23 16:31:03.871 2024-02-23 16:31:03.871 1000 STREAM 141924 20137 6044789 2024-02-23 16:32:03.879 2024-02-23 16:32:03.879 1000 STREAM 141924 16348 6044829 2024-02-23 16:39:03.909 2024-02-23 16:39:03.909 1000 STREAM 141924 18178 6044840 2024-02-23 16:42:03.934 2024-02-23 16:42:03.934 1000 STREAM 141924 19284 6044844 2024-02-23 16:43:03.927 2024-02-23 16:43:03.927 1000 STREAM 141924 13399 6044846 2024-02-23 16:44:03.936 2024-02-23 16:44:03.936 1000 STREAM 141924 14818 6044871 2024-02-23 16:46:03.952 2024-02-23 16:46:03.952 1000 STREAM 141924 854 6044873 2024-02-23 16:47:03.947 2024-02-23 16:47:03.947 1000 STREAM 141924 1433 6044879 2024-02-23 16:48:03.96 2024-02-23 16:48:03.96 1000 STREAM 141924 10469 6044885 2024-02-23 16:50:03.973 2024-02-23 16:50:03.973 1000 STREAM 141924 11516 6112762 2024-02-29 14:14:02.989 2024-02-29 14:14:02.989 1000 STREAM 141924 1983 6112764 2024-02-29 14:15:03.003 2024-02-29 14:15:03.003 1000 STREAM 141924 687 6112769 2024-02-29 14:16:02.992 2024-02-29 14:16:02.992 1000 STREAM 141924 960 6112780 2024-02-29 14:18:03.021 2024-02-29 14:18:03.021 1000 STREAM 141924 15556 6112803 2024-02-29 14:20:03.034 2024-02-29 14:20:03.034 1000 STREAM 141924 10398 6112816 2024-02-29 14:23:03.018 2024-02-29 14:23:03.018 1000 STREAM 141924 13903 6112820 2024-02-29 14:24:03.032 2024-02-29 14:24:03.032 1000 STREAM 141924 16679 6112847 2024-02-29 14:26:03.029 2024-02-29 14:26:03.029 1000 STREAM 141924 2722 6112869 2024-02-29 14:28:03.059 2024-02-29 14:28:03.059 1000 STREAM 141924 882 6112875 2024-02-29 14:29:03.06 2024-02-29 14:29:03.06 1000 STREAM 141924 20614 6112939 2024-02-29 14:34:03.118 2024-02-29 14:34:03.118 1000 STREAM 141924 2022 6113058 2024-02-29 14:36:03.109 2024-02-29 14:36:03.109 1000 STREAM 141924 16858 6113083 2024-02-29 14:37:03.095 2024-02-29 14:37:03.095 1000 STREAM 141924 19909 6113093 2024-02-29 14:38:03.098 2024-02-29 14:38:03.098 1000 STREAM 141924 8870 6113118 2024-02-29 14:40:03.103 2024-02-29 14:40:03.103 1000 STREAM 141924 16149 6113199 2024-02-29 14:42:03.111 2024-02-29 14:42:03.111 1000 STREAM 141924 19148 6113256 2024-02-29 14:44:03.111 2024-02-29 14:44:03.111 1000 STREAM 141924 14278 6113288 2024-02-29 14:46:03.113 2024-02-29 14:46:03.113 1000 STREAM 141924 19500 6113312 2024-02-29 14:48:03.133 2024-02-29 14:48:03.133 1000 STREAM 141924 3347 6113340 2024-02-29 14:50:03.131 2024-02-29 14:50:03.131 1000 STREAM 141924 696 6113608 2024-02-29 15:01:03.19 2024-02-29 15:01:03.19 1000 STREAM 141924 18409 6113622 2024-02-29 15:02:03.183 2024-02-29 15:02:03.183 1000 STREAM 141924 3683 6113705 2024-02-29 15:07:03.218 2024-02-29 15:07:03.218 1000 STREAM 141924 18629 6113718 2024-02-29 15:08:03.223 2024-02-29 15:08:03.223 1000 STREAM 141924 16912 6113776 2024-02-29 15:12:03.258 2024-02-29 15:12:03.258 1000 STREAM 141924 20861 6113789 2024-02-29 15:13:03.29 2024-02-29 15:13:03.29 1000 STREAM 141924 4083 6113818 2024-02-29 15:14:03.301 2024-02-29 15:14:03.301 1000 STREAM 141924 21446 6113833 2024-02-29 15:15:03.305 2024-02-29 15:15:03.305 1000 STREAM 141924 1354 6113868 2024-02-29 15:17:03.317 2024-02-29 15:17:03.317 1000 STREAM 141924 9345 6113885 2024-02-29 15:18:03.323 2024-02-29 15:18:03.323 1000 STREAM 141924 19458 6113886 2024-02-29 15:19:03.33 2024-02-29 15:19:03.33 1000 STREAM 141924 20470 6113891 2024-02-29 15:20:03.347 2024-02-29 15:20:03.347 1000 STREAM 141924 20738 6113903 2024-02-29 15:21:03.345 2024-02-29 15:21:03.345 1000 STREAM 141924 17891 6113936 2024-02-29 15:24:03.35 2024-02-29 15:24:03.35 1000 STREAM 141924 11789 6113966 2024-02-29 15:26:03.352 2024-02-29 15:26:03.352 1000 STREAM 141924 20464 6114016 2024-02-29 15:27:03.35 2024-02-29 15:27:03.35 1000 STREAM 141924 5293 6114147 2024-02-29 15:32:03.39 2024-02-29 15:32:03.39 1000 STREAM 141924 20816 6114210 2024-02-29 15:34:03.4 2024-02-29 15:34:03.4 1000 STREAM 141924 4570 6114237 2024-02-29 15:36:03.403 2024-02-29 15:36:03.403 1000 STREAM 141924 787 6114243 2024-02-29 15:37:03.397 2024-02-29 15:37:03.397 1000 STREAM 141924 21145 6114300 2024-02-29 15:44:03.402 2024-02-29 15:44:03.402 1000 STREAM 141924 20841 6043801 2024-02-23 14:48:17.585 2024-02-23 14:48:17.585 2100 FEE 436100 730 6043802 2024-02-23 14:48:17.585 2024-02-23 14:48:17.585 18900 TIP 436100 19533 6043805 2024-02-23 14:48:40.053 2024-02-23 14:48:40.053 2100 FEE 436061 20254 6043806 2024-02-23 14:48:40.053 2024-02-23 14:48:40.053 18900 TIP 436061 19501 6043816 2024-02-23 14:49:00.571 2024-02-23 14:49:00.571 1000 FEE 436101 20006 6043817 2024-02-23 14:49:00.571 2024-02-23 14:49:00.571 9000 TIP 436101 5173 6043846 2024-02-23 14:52:20.368 2024-02-23 14:52:20.368 500 FEE 435944 1145 6043847 2024-02-23 14:52:20.368 2024-02-23 14:52:20.368 4500 TIP 435944 14255 6043852 2024-02-23 14:53:12.293 2024-02-23 14:53:12.293 1000 FEE 436276 1261 6043902 2024-02-23 15:02:05.48 2024-02-23 15:02:05.48 1100 FEE 436197 1000 6043903 2024-02-23 15:02:05.48 2024-02-23 15:02:05.48 9900 TIP 436197 15510 6043934 2024-02-23 15:06:29.541 2024-02-23 15:06:29.541 2100 FEE 436211 18357 6043935 2024-02-23 15:06:29.541 2024-02-23 15:06:29.541 18900 TIP 436211 19459 6043965 2024-02-23 15:11:38.068 2024-02-23 15:11:38.068 1000 FEE 436293 2285 6043972 2024-02-23 15:12:24.205 2024-02-23 15:12:24.205 10000 FEE 436174 21329 6043973 2024-02-23 15:12:24.205 2024-02-23 15:12:24.205 90000 TIP 436174 2609 6044001 2024-02-23 15:15:48.562 2024-02-23 15:15:48.562 2100 FEE 435261 685 6044002 2024-02-23 15:15:48.562 2024-02-23 15:15:48.562 18900 TIP 435261 5057 6044021 2024-02-23 15:19:11.366 2024-02-23 15:19:11.366 1000 FEE 436304 16988 6044026 2024-02-23 15:19:47.9 2024-02-23 15:19:47.9 0 FEE 436303 1094 6044033 2024-02-23 15:20:33.344 2024-02-23 15:20:33.344 3000 FEE 436288 20246 6044034 2024-02-23 15:20:33.344 2024-02-23 15:20:33.344 27000 TIP 436288 19198 6044039 2024-02-23 15:21:09.735 2024-02-23 15:21:09.735 2100 FEE 436281 19995 6044040 2024-02-23 15:21:09.735 2024-02-23 15:21:09.735 18900 TIP 436281 686 6044051 2024-02-23 15:22:49.592 2024-02-23 15:22:49.592 9000 FEE 436290 1471 6044052 2024-02-23 15:22:49.592 2024-02-23 15:22:49.592 81000 TIP 436290 19036 6044055 2024-02-23 15:23:00.2 2024-02-23 15:23:00.2 2300 FEE 436241 12959 6044056 2024-02-23 15:23:00.2 2024-02-23 15:23:00.2 20700 TIP 436241 19535 6044104 2024-02-23 15:27:16.874 2024-02-23 15:27:16.874 7100 FEE 434129 628 6044105 2024-02-23 15:27:16.874 2024-02-23 15:27:16.874 63900 TIP 434129 15728 6044123 2024-02-23 15:28:09.972 2024-02-23 15:28:09.972 4000 FEE 436314 6537 6044124 2024-02-23 15:28:09.972 2024-02-23 15:28:09.972 36000 TIP 436314 18941 6044145 2024-02-23 15:28:52.278 2024-02-23 15:28:52.278 1000 FEE 436197 18714 6044146 2024-02-23 15:28:52.278 2024-02-23 15:28:52.278 9000 TIP 436197 18705 6044154 2024-02-23 15:29:34.242 2024-02-23 15:29:34.242 100000 FEE 436317 19843 6043825 2024-02-23 14:49:33.216 2024-02-23 14:49:33.216 2100 FEE 436029 17713 6043826 2024-02-23 14:49:33.216 2024-02-23 14:49:33.216 18900 TIP 436029 9921 6043830 2024-02-23 14:50:05.086 2024-02-23 14:50:05.086 0 FEE 436271 886 6043833 2024-02-23 14:50:24.138 2024-02-23 14:50:24.138 2100 FEE 436091 21338 6043834 2024-02-23 14:50:24.138 2024-02-23 14:50:24.138 18900 TIP 436091 900 6043837 2024-02-23 14:50:47.319 2024-02-23 14:50:47.319 1000 FEE 436272 866 6043843 2024-02-23 14:51:53.209 2024-02-23 14:51:53.209 10000 FEE 436273 2710 6043856 2024-02-23 14:54:41.636 2024-02-23 14:54:41.636 1000 FEE 436277 17321 6043880 2024-02-23 15:00:56.121 2024-02-23 15:00:56.121 1000 FEE 436279 2347 6043920 2024-02-23 15:02:56.077 2024-02-23 15:02:56.077 1000 FEE 436281 15978 6043928 2024-02-23 15:05:37.913 2024-02-23 15:05:37.913 1000 FEE 435944 5173 6043929 2024-02-23 15:05:37.913 2024-02-23 15:05:37.913 9000 TIP 435944 17095 6043931 2024-02-23 15:06:23.707 2024-02-23 15:06:23.707 1000 FEE 436284 10549 6043828 2024-02-23 14:49:38.772 2024-02-23 14:49:38.772 18900 TIP 436045 13927 6043841 2024-02-23 14:51:17.124 2024-02-23 14:51:17.124 2800 FEE 436241 6537 6043842 2024-02-23 14:51:17.124 2024-02-23 14:51:17.124 25200 TIP 436241 20102 6043848 2024-02-23 14:52:43.626 2024-02-23 14:52:43.626 1000 FEE 436275 13076 6043849 2024-02-23 14:53:02.272 2024-02-23 14:53:02.272 3400 FEE 435987 21480 6043850 2024-02-23 14:53:02.272 2024-02-23 14:53:02.272 30600 TIP 435987 21605 6043857 2024-02-23 14:54:46.565 2024-02-23 14:54:46.565 2000 FEE 436093 10690 6043858 2024-02-23 14:54:46.565 2024-02-23 14:54:46.565 18000 TIP 436093 699 6043866 2024-02-23 14:55:33.428 2024-02-23 14:55:33.428 0 FEE 436277 6741 6043873 2024-02-23 14:59:04.386 2024-02-23 14:59:04.386 25600 FEE 435619 9171 6043874 2024-02-23 14:59:04.386 2024-02-23 14:59:04.386 230400 TIP 435619 13143 6043877 2024-02-23 15:00:02.156 2024-02-23 15:00:02.156 4200 FEE 436174 11288 6043878 2024-02-23 15:00:02.156 2024-02-23 15:00:02.156 37800 TIP 436174 6430 6043882 2024-02-23 15:01:33.418 2024-02-23 15:01:33.418 1000 FEE 436280 787 6043883 2024-02-23 15:01:57.507 2024-02-23 15:01:57.507 10000 FEE 436248 15337 6043884 2024-02-23 15:01:57.507 2024-02-23 15:01:57.507 90000 TIP 436248 21506 6043889 2024-02-23 15:02:00.374 2024-02-23 15:02:00.374 10000 FEE 435847 691 6043890 2024-02-23 15:02:00.374 2024-02-23 15:02:00.374 90000 TIP 435847 20509 6112804 2024-02-29 14:20:54.481 2024-02-29 14:20:54.481 2100 FEE 443274 3979 6112805 2024-02-29 14:20:54.481 2024-02-29 14:20:54.481 18900 TIP 443274 20826 6112811 2024-02-29 14:21:43.233 2024-02-29 14:21:43.233 1000 FEE 443540 2460 6043896 2024-02-23 15:02:04.356 2024-02-23 15:02:04.356 1100 FEE 436197 18865 6043897 2024-02-23 15:02:04.356 2024-02-23 15:02:04.356 9900 TIP 436197 6499 6043910 2024-02-23 15:02:07.005 2024-02-23 15:02:07.005 1100 FEE 436241 10981 6043911 2024-02-23 15:02:07.005 2024-02-23 15:02:07.005 9900 TIP 436241 11516 6043918 2024-02-23 15:02:10.125 2024-02-23 15:02:10.125 2200 FEE 436062 5779 6043919 2024-02-23 15:02:10.125 2024-02-23 15:02:10.125 19800 TIP 436062 18016 6043921 2024-02-23 15:02:58.585 2024-02-23 15:02:58.585 1000 FEE 436282 19888 6043923 2024-02-23 15:03:03.46 2024-02-23 15:03:03.46 1000 FEE 436283 5694 6043936 2024-02-23 15:06:34.515 2024-02-23 15:06:34.515 2100 FEE 436208 15536 6043937 2024-02-23 15:06:34.515 2024-02-23 15:06:34.515 18900 TIP 436208 16879 6043961 2024-02-23 15:11:02.868 2024-02-23 15:11:02.868 10000 FEE 436290 2022 6043964 2024-02-23 15:11:19.449 2024-02-23 15:11:19.449 1000 FEE 436292 19976 6043990 2024-02-23 15:14:28.017 2024-02-23 15:14:28.017 1000 FEE 436299 646 6043999 2024-02-23 15:15:38.653 2024-02-23 15:15:38.653 2100 FEE 436174 5171 6044000 2024-02-23 15:15:38.653 2024-02-23 15:15:38.653 18900 TIP 436174 20683 6044003 2024-02-23 15:15:59.099 2024-02-23 15:15:59.099 4000 FEE 436297 11075 6044004 2024-02-23 15:15:59.099 2024-02-23 15:15:59.099 36000 TIP 436297 17800 6044015 2024-02-23 15:17:33.339 2024-02-23 15:17:33.339 10100 FEE 436093 16942 6044016 2024-02-23 15:17:33.339 2024-02-23 15:17:33.339 90900 TIP 436093 20251 6044022 2024-02-23 15:19:19.131 2024-02-23 15:19:19.131 0 FEE 436304 1298 6044025 2024-02-23 15:19:47.551 2024-02-23 15:19:47.551 1000 FEE 436305 848 6044031 2024-02-23 15:20:27.168 2024-02-23 15:20:27.168 2100 FEE 436241 2327 6044032 2024-02-23 15:20:27.168 2024-02-23 15:20:27.168 18900 TIP 436241 14774 6044038 2024-02-23 15:21:06.645 2024-02-23 15:21:06.645 1000 FEE 436307 17124 6044048 2024-02-23 15:22:30.494 2024-02-23 15:22:30.494 900 FEE 436290 21249 6044049 2024-02-23 15:22:30.494 2024-02-23 15:22:30.494 8100 TIP 436290 11821 6044068 2024-02-23 15:23:17.828 2024-02-23 15:23:17.828 27000 FEE 436306 11862 6044069 2024-02-23 15:23:17.828 2024-02-23 15:23:17.828 243000 TIP 436306 4984 6044070 2024-02-23 15:23:36.575 2024-02-23 15:23:36.575 1000 FEE 436311 963 6044085 2024-02-23 15:25:35.964 2024-02-23 15:25:35.964 4000 FEE 436273 4570 6044086 2024-02-23 15:25:35.964 2024-02-23 15:25:35.964 36000 TIP 436273 16347 6044100 2024-02-23 15:27:08.46 2024-02-23 15:27:08.46 7100 FEE 434563 18393 6044101 2024-02-23 15:27:08.46 2024-02-23 15:27:08.46 63900 TIP 434563 15408 6044121 2024-02-23 15:28:08.456 2024-02-23 15:28:08.456 4000 FEE 436314 9345 6044122 2024-02-23 15:28:08.456 2024-02-23 15:28:08.456 36000 TIP 436314 2077 6044183 2024-02-23 15:34:57.073 2024-02-23 15:34:57.073 100 FEE 436318 895 6044184 2024-02-23 15:34:57.073 2024-02-23 15:34:57.073 900 TIP 436318 20979 6044187 2024-02-23 15:35:25.043 2024-02-23 15:35:25.043 2100 FEE 436093 12819 6044188 2024-02-23 15:35:25.043 2024-02-23 15:35:25.043 18900 TIP 436093 1483 6044217 2024-02-23 15:41:43.048 2024-02-23 15:41:43.048 200 FEE 436287 10979 6044218 2024-02-23 15:41:43.048 2024-02-23 15:41:43.048 1800 TIP 436287 9290 6044235 2024-02-23 15:45:30.75 2024-02-23 15:45:30.75 1000 FEE 436323 20987 6044236 2024-02-23 15:45:30.75 2024-02-23 15:45:30.75 9000 TIP 436323 16301 6044254 2024-02-23 15:48:50.54 2024-02-23 15:48:50.54 1000 FEE 436330 9992 6044266 2024-02-23 15:49:34.015 2024-02-23 15:49:34.015 1000 FEE 436326 671 6044267 2024-02-23 15:49:34.015 2024-02-23 15:49:34.015 9000 TIP 436326 617 6044270 2024-02-23 15:49:34.495 2024-02-23 15:49:34.495 1000 FEE 436326 5036 6044271 2024-02-23 15:49:34.495 2024-02-23 15:49:34.495 9000 TIP 436326 1180 6044294 2024-02-23 15:49:50.611 2024-02-23 15:49:50.611 8300 FEE 436325 1817 6044295 2024-02-23 15:49:50.611 2024-02-23 15:49:50.611 74700 TIP 436325 11760 6044296 2024-02-23 15:49:56.9 2024-02-23 15:49:56.9 8300 FEE 436281 19435 6044297 2024-02-23 15:49:56.9 2024-02-23 15:49:56.9 74700 TIP 436281 8506 6044327 2024-02-23 15:53:01.822 2024-02-23 15:53:01.822 10000 FEE 436336 11967 6044335 2024-02-23 15:54:10.786 2024-02-23 15:54:10.786 1000 FEE 436341 2652 6044340 2024-02-23 15:54:12.726 2024-02-23 15:54:12.726 1000 FEE 436180 18174 6044341 2024-02-23 15:54:12.726 2024-02-23 15:54:12.726 9000 TIP 436180 20603 6044352 2024-02-23 15:54:42.989 2024-02-23 15:54:42.989 10000 FEE 436342 618 6044365 2024-02-23 15:55:04.406 2024-02-23 15:55:04.406 1000 FEE 435560 21469 6044366 2024-02-23 15:55:04.406 2024-02-23 15:55:04.406 9000 TIP 435560 18262 6044369 2024-02-23 15:55:21.438 2024-02-23 15:55:21.438 4000 FEE 436197 2196 6044370 2024-02-23 15:55:21.438 2024-02-23 15:55:21.438 36000 TIP 436197 14376 6044394 2024-02-23 15:56:12.19 2024-02-23 15:56:12.19 1000 FEE 435654 1286 6044395 2024-02-23 15:56:12.19 2024-02-23 15:56:12.19 9000 TIP 435654 10698 6044399 2024-02-23 15:57:08.147 2024-02-23 15:57:08.147 2000 FEE 435310 2402 6044400 2024-02-23 15:57:08.147 2024-02-23 15:57:08.147 18000 TIP 435310 12738 6044409 2024-02-23 15:57:16.339 2024-02-23 15:57:16.339 300 FEE 436032 14651 6044410 2024-02-23 15:57:16.339 2024-02-23 15:57:16.339 2700 TIP 436032 1802 6044437 2024-02-23 15:58:36.991 2024-02-23 15:58:36.991 1000 FEE 436350 21207 6044438 2024-02-23 15:58:39.205 2024-02-23 15:58:39.205 1000 FEE 435786 18453 6044439 2024-02-23 15:58:39.205 2024-02-23 15:58:39.205 9000 TIP 435786 1717 6044444 2024-02-23 15:58:40.809 2024-02-23 15:58:40.809 1000 FEE 435786 13046 6044445 2024-02-23 15:58:40.809 2024-02-23 15:58:40.809 9000 TIP 435786 11821 6044473 2024-02-23 16:00:04.287 2024-02-23 16:00:04.287 1000 FEE 435882 13246 6044474 2024-02-23 16:00:04.287 2024-02-23 16:00:04.287 9000 TIP 435882 13174 6044482 2024-02-23 16:00:41.82 2024-02-23 16:00:41.82 1000 FEE 435882 11145 6044483 2024-02-23 16:00:41.82 2024-02-23 16:00:41.82 9000 TIP 435882 20701 6044490 2024-02-23 16:00:43.347 2024-02-23 16:00:43.347 100000 DONT_LIKE_THIS 436319 18678 6044493 2024-02-23 16:00:44.257 2024-02-23 16:00:44.257 1000 FEE 435882 20897 6044494 2024-02-23 16:00:44.257 2024-02-23 16:00:44.257 9000 TIP 435882 21356 6044571 2024-02-23 16:08:25.561 2024-02-23 16:08:25.561 100 FEE 436359 21591 6044572 2024-02-23 16:08:25.561 2024-02-23 16:08:25.561 900 TIP 436359 8870 6044573 2024-02-23 16:08:25.755 2024-02-23 16:08:25.755 100 FEE 436359 672 6044574 2024-02-23 16:08:25.755 2024-02-23 16:08:25.755 900 TIP 436359 9418 6044602 2024-02-23 16:09:52.149 2024-02-23 16:09:52.149 10000 FEE 436364 12965 6044641 2024-02-23 16:13:38.586 2024-02-23 16:13:38.586 1000 FEE 436362 6361 6044642 2024-02-23 16:13:38.586 2024-02-23 16:13:38.586 9000 TIP 436362 20647 6044663 2024-02-23 16:16:36.917 2024-02-23 16:16:36.917 4000 FEE 436353 14545 6044664 2024-02-23 16:16:36.917 2024-02-23 16:16:36.917 36000 TIP 436353 18396 6043898 2024-02-23 15:02:04.388 2024-02-23 15:02:04.388 1100 FEE 436197 1726 6043899 2024-02-23 15:02:04.388 2024-02-23 15:02:04.388 9900 TIP 436197 2508 6043900 2024-02-23 15:02:05.454 2024-02-23 15:02:05.454 1100 FEE 436197 21136 6043901 2024-02-23 15:02:05.454 2024-02-23 15:02:05.454 9900 TIP 436197 3729 6043926 2024-02-23 15:05:26.123 2024-02-23 15:05:26.123 2100 FEE 436135 12356 6043927 2024-02-23 15:05:26.123 2024-02-23 15:05:26.123 18900 TIP 436135 9969 6043932 2024-02-23 15:06:25.434 2024-02-23 15:06:25.434 2100 FEE 436276 15063 6043933 2024-02-23 15:06:25.434 2024-02-23 15:06:25.434 18900 TIP 436276 18751 6043941 2024-02-23 15:07:10.821 2024-02-23 15:07:10.821 1000 FEE 436285 2529 6043943 2024-02-23 15:07:36.035 2024-02-23 15:07:36.035 500 FEE 436281 20825 6043944 2024-02-23 15:07:36.035 2024-02-23 15:07:36.035 4500 TIP 436281 657 6043957 2024-02-23 15:10:30.121 2024-02-23 15:10:30.121 800 FEE 436093 17001 6043958 2024-02-23 15:10:30.121 2024-02-23 15:10:30.121 7200 TIP 436093 21563 6043963 2024-02-23 15:11:11.552 2024-02-23 15:11:11.552 1000 FEE 436291 19806 6043971 2024-02-23 15:12:18.062 2024-02-23 15:12:18.062 1000 FEE 436294 16387 6044080 2024-02-23 15:25:14.787 2024-02-23 15:25:14.787 1000 FEE 436313 21180 6044089 2024-02-23 15:25:48.585 2024-02-23 15:25:48.585 4000 FEE 436290 1705 6044090 2024-02-23 15:25:48.585 2024-02-23 15:25:48.585 36000 TIP 436290 17275 6044097 2024-02-23 15:27:02.29 2024-02-23 15:27:02.29 7100 FEE 434595 713 6044098 2024-02-23 15:27:02.29 2024-02-23 15:27:02.29 63900 TIP 434595 876 6044179 2024-02-23 15:34:25.902 2024-02-23 15:34:25.902 1000 FEE 436321 21451 6044185 2024-02-23 15:35:00.925 2024-02-23 15:35:00.925 10000 FEE 436323 13399 6044193 2024-02-23 15:38:24.274 2024-02-23 15:38:24.274 2100 FEE 436315 14651 6044194 2024-02-23 15:38:24.274 2024-02-23 15:38:24.274 18900 TIP 436315 6191 6044196 2024-02-23 15:39:20.997 2024-02-23 15:39:20.997 7100 FEE 436218 19842 6044197 2024-02-23 15:39:20.997 2024-02-23 15:39:20.997 63900 TIP 436218 16176 6044231 2024-02-23 15:45:30.096 2024-02-23 15:45:30.096 1000 FEE 436323 17091 6044232 2024-02-23 15:45:30.096 2024-02-23 15:45:30.096 9000 TIP 436323 3371 6044276 2024-02-23 15:49:35.153 2024-02-23 15:49:35.153 1000 FEE 436326 6030 6044277 2024-02-23 15:49:35.153 2024-02-23 15:49:35.153 9000 TIP 436326 18409 6044344 2024-02-23 15:54:13.563 2024-02-23 15:54:13.563 1000 FEE 436180 21424 6044345 2024-02-23 15:54:13.563 2024-02-23 15:54:13.563 9000 TIP 436180 2098 6044346 2024-02-23 15:54:13.893 2024-02-23 15:54:13.893 1000 FEE 436180 18116 6044347 2024-02-23 15:54:13.893 2024-02-23 15:54:13.893 9000 TIP 436180 19449 6044356 2024-02-23 15:55:02.951 2024-02-23 15:55:02.951 1000 FEE 435560 4391 6044357 2024-02-23 15:55:02.951 2024-02-23 15:55:02.951 9000 TIP 435560 20267 6044358 2024-02-23 15:55:03.311 2024-02-23 15:55:03.311 1000 FEE 435560 1773 6044359 2024-02-23 15:55:03.311 2024-02-23 15:55:03.311 9000 TIP 435560 5499 6044396 2024-02-23 15:56:33.299 2024-02-23 15:56:33.299 700 FEE 436245 6616 6044397 2024-02-23 15:56:33.299 2024-02-23 15:56:33.299 6300 TIP 436245 1000 6044405 2024-02-23 15:57:11.974 2024-02-23 15:57:11.974 1000 FEE 435447 19507 6044406 2024-02-23 15:57:11.974 2024-02-23 15:57:11.974 9000 TIP 435447 13076 6044413 2024-02-23 15:57:16.712 2024-02-23 15:57:16.712 1000 FEE 435456 21148 6044414 2024-02-23 15:57:16.712 2024-02-23 15:57:16.712 9000 TIP 435456 15697 6044419 2024-02-23 15:57:21.143 2024-02-23 15:57:21.143 0 FEE 436331 20208 6044484 2024-02-23 16:00:42.317 2024-02-23 16:00:42.317 1000 FEE 435882 2176 6044485 2024-02-23 16:00:42.317 2024-02-23 16:00:42.317 9000 TIP 435882 8173 6044495 2024-02-23 16:00:44.817 2024-02-23 16:00:44.817 1000 FEE 435882 15326 6044496 2024-02-23 16:00:44.817 2024-02-23 16:00:44.817 9000 TIP 435882 16347 6044515 2024-02-23 16:03:04.489 2024-02-23 16:03:04.489 10000 FEE 436176 10273 6044516 2024-02-23 16:03:04.489 2024-02-23 16:03:04.489 90000 TIP 436176 16004 6044531 2024-02-23 16:05:04.404 2024-02-23 16:05:04.404 300 FEE 436358 5701 6044532 2024-02-23 16:05:04.404 2024-02-23 16:05:04.404 2700 TIP 436358 2088 6044552 2024-02-23 16:08:15.222 2024-02-23 16:08:15.222 1000 FEE 436361 1800 6044563 2024-02-23 16:08:24.825 2024-02-23 16:08:24.825 100 FEE 436359 18675 6044564 2024-02-23 16:08:24.825 2024-02-23 16:08:24.825 900 TIP 436359 20500 6044577 2024-02-23 16:08:26.267 2024-02-23 16:08:26.267 100 FEE 436359 20624 6044578 2024-02-23 16:08:26.267 2024-02-23 16:08:26.267 900 TIP 436359 749 6044587 2024-02-23 16:08:28.504 2024-02-23 16:08:28.504 100 FEE 436359 7558 6044588 2024-02-23 16:08:28.504 2024-02-23 16:08:28.504 900 TIP 436359 1773 6044594 2024-02-23 16:08:41.061 2024-02-23 16:08:41.061 1000 FEE 436362 1718 6044595 2024-02-23 16:08:41.061 2024-02-23 16:08:41.061 9000 TIP 436362 11938 6044600 2024-02-23 16:09:45.637 2024-02-23 16:09:45.637 15000 FEE 436355 19435 6044601 2024-02-23 16:09:45.637 2024-02-23 16:09:45.637 135000 TIP 436355 16834 6044606 2024-02-23 16:10:31.199 2024-02-23 16:10:31.199 900 FEE 436344 7847 6044607 2024-02-23 16:10:31.199 2024-02-23 16:10:31.199 8100 TIP 436344 20326 6044608 2024-02-23 16:10:40.536 2024-02-23 16:10:40.536 1000 FEE 436367 21254 6044612 2024-02-23 16:11:51.628 2024-02-23 16:11:51.628 300 FEE 436352 16680 6044613 2024-02-23 16:11:51.628 2024-02-23 16:11:51.628 2700 TIP 436352 21498 6044625 2024-02-23 16:13:10.333 2024-02-23 16:13:10.333 1000 FEE 436356 4323 6044626 2024-02-23 16:13:10.333 2024-02-23 16:13:10.333 9000 TIP 436356 20094 6044645 2024-02-23 16:13:39.832 2024-02-23 16:13:39.832 1000 FEE 436362 9982 6044646 2024-02-23 16:13:39.832 2024-02-23 16:13:39.832 9000 TIP 436362 9167 6044655 2024-02-23 16:14:34.964 2024-02-23 16:14:34.964 2100 FEE 436364 21003 6044656 2024-02-23 16:14:34.964 2024-02-23 16:14:34.964 18900 TIP 436364 798 6044668 2024-02-23 16:18:10.481 2024-02-23 16:18:10.481 1000 FEE 436374 19863 6044676 2024-02-23 16:19:07.903 2024-02-23 16:19:07.903 1000 FEE 436362 9356 6044677 2024-02-23 16:19:07.903 2024-02-23 16:19:07.903 9000 TIP 436362 5499 6044717 2024-02-23 16:21:01.122 2024-02-23 16:21:01.122 1000 FEE 435907 10821 6044718 2024-02-23 16:21:01.122 2024-02-23 16:21:01.122 9000 TIP 435907 795 6044727 2024-02-23 16:21:03.087 2024-02-23 16:21:03.087 1000 FEE 435907 20231 6044728 2024-02-23 16:21:03.087 2024-02-23 16:21:03.087 9000 TIP 435907 10493 6044738 2024-02-23 16:21:04.916 2024-02-23 16:21:04.916 1000 FEE 435907 676 6044739 2024-02-23 16:21:04.916 2024-02-23 16:21:04.916 9000 TIP 435907 20036 6044782 2024-02-23 16:30:36.644 2024-02-23 16:30:36.644 3000 FEE 436343 19938 6044783 2024-02-23 16:30:36.644 2024-02-23 16:30:36.644 27000 TIP 436343 1512 6044804 2024-02-23 16:36:01.642 2024-02-23 16:36:01.642 1000 FEE 436273 15148 6044805 2024-02-23 16:36:01.642 2024-02-23 16:36:01.642 9000 TIP 436273 15243 6044812 2024-02-23 16:36:03.17 2024-02-23 16:36:03.17 1000 FEE 436273 1729 6044813 2024-02-23 16:36:03.17 2024-02-23 16:36:03.17 9000 TIP 436273 20464 6044823 2024-02-23 16:38:07.521 2024-02-23 16:38:07.521 10000 FEE 436394 17693 6044852 2024-02-23 16:44:44.059 2024-02-23 16:44:44.059 1000 FEE 436398 1273 6044853 2024-02-23 16:44:44.059 2024-02-23 16:44:44.059 9000 TIP 436398 15833 6043912 2024-02-23 15:02:07.846 2024-02-23 15:02:07.846 3300 FEE 436241 827 6043913 2024-02-23 15:02:07.846 2024-02-23 15:02:07.846 29700 TIP 436241 2101 6043916 2024-02-23 15:02:08.551 2024-02-23 15:02:08.551 1100 FEE 436158 16178 6043917 2024-02-23 15:02:08.551 2024-02-23 15:02:08.551 9900 TIP 436158 20987 6043955 2024-02-23 15:10:29.922 2024-02-23 15:10:29.922 800 FEE 436093 13767 6043956 2024-02-23 15:10:29.922 2024-02-23 15:10:29.922 7200 TIP 436093 9833 6043959 2024-02-23 15:10:36.975 2024-02-23 15:10:36.975 1000 FEE 436288 12946 6043983 2024-02-23 15:14:08.588 2024-02-23 15:14:08.588 1000 FEE 436270 19976 6043984 2024-02-23 15:14:08.588 2024-02-23 15:14:08.588 9000 TIP 436270 21466 6044011 2024-02-23 15:16:57.633 2024-02-23 15:16:57.633 2100 FEE 436290 14990 6044012 2024-02-23 15:16:57.633 2024-02-23 15:16:57.633 18900 TIP 436290 18262 6044013 2024-02-23 15:16:57.968 2024-02-23 15:16:57.968 1000 FEE 436302 8472 6044053 2024-02-23 15:23:00.069 2024-02-23 15:23:00.069 2300 FEE 436241 18731 6044054 2024-02-23 15:23:00.069 2024-02-23 15:23:00.069 20700 TIP 436241 1549 6044057 2024-02-23 15:23:00.349 2024-02-23 15:23:00.349 2300 FEE 436241 14213 6044058 2024-02-23 15:23:00.349 2024-02-23 15:23:00.349 20700 TIP 436241 10693 6044087 2024-02-23 15:25:44.918 2024-02-23 15:25:44.918 3000 FEE 436312 18072 6043924 2024-02-23 15:04:02.968 2024-02-23 15:04:02.968 1000 STREAM 141924 1705 6043925 2024-02-23 15:05:02.969 2024-02-23 15:05:02.969 1000 STREAM 141924 2042 6043954 2024-02-23 15:10:03.037 2024-02-23 15:10:03.037 1000 STREAM 141924 2444 6043962 2024-02-23 15:11:03.019 2024-02-23 15:11:03.019 1000 STREAM 141924 16876 6043978 2024-02-23 15:13:03.001 2024-02-23 15:13:03.001 1000 STREAM 141924 18448 6043993 2024-02-23 15:15:03.009 2024-02-23 15:15:03.009 1000 STREAM 141924 20669 6044020 2024-02-23 15:19:03.121 2024-02-23 15:19:03.121 1000 STREAM 141924 14247 6044045 2024-02-23 15:22:03.144 2024-02-23 15:22:03.144 1000 STREAM 141924 18865 6044099 2024-02-23 15:27:03.218 2024-02-23 15:27:03.218 1000 STREAM 141924 16562 6044147 2024-02-23 15:29:03.231 2024-02-23 15:29:03.231 1000 STREAM 141924 18330 6044157 2024-02-23 15:31:03.374 2024-02-23 15:31:03.374 1000 STREAM 141924 14503 6044171 2024-02-23 15:33:03.395 2024-02-23 15:33:03.395 1000 STREAM 141924 1970 6044176 2024-02-23 15:34:03.384 2024-02-23 15:34:03.384 1000 STREAM 141924 866 6044186 2024-02-23 15:35:03.404 2024-02-23 15:35:03.404 1000 STREAM 141924 14381 6044190 2024-02-23 15:36:03.405 2024-02-23 15:36:03.405 1000 STREAM 141924 14168 6044192 2024-02-23 15:38:03.412 2024-02-23 15:38:03.412 1000 STREAM 141924 715 6044206 2024-02-23 15:41:03.44 2024-02-23 15:41:03.44 1000 STREAM 141924 1273 6112807 2024-02-29 14:21:08.584 2024-02-29 14:21:08.584 1000 FEE 443538 21296 6112808 2024-02-29 14:21:11.311 2024-02-29 14:21:11.311 21800 FEE 443274 18271 6112809 2024-02-29 14:21:11.311 2024-02-29 14:21:11.311 196200 TIP 443274 9992 6112821 2024-02-29 14:24:08.489 2024-02-29 14:24:08.489 1000 FEE 443544 1577 6112822 2024-02-29 14:24:21.268 2024-02-29 14:24:21.268 500 FEE 443531 651 6112823 2024-02-29 14:24:21.268 2024-02-29 14:24:21.268 4500 TIP 443531 17710 6112838 2024-02-29 14:25:15.015 2024-02-29 14:25:15.015 1000 FEE 443436 16665 6112839 2024-02-29 14:25:15.015 2024-02-29 14:25:15.015 9000 TIP 443436 10690 6112840 2024-02-29 14:25:22.525 2024-02-29 14:25:22.525 10000 FEE 443473 678 6112841 2024-02-29 14:25:22.525 2024-02-29 14:25:22.525 90000 TIP 443473 17568 6043950 2024-02-23 15:08:46.632 2024-02-23 15:08:46.632 800 FEE 436021 5757 6043951 2024-02-23 15:08:46.632 2024-02-23 15:08:46.632 7200 TIP 436021 20026 6043976 2024-02-23 15:13:00.952 2024-02-23 15:13:00.952 3300 FEE 436176 20198 6043977 2024-02-23 15:13:00.952 2024-02-23 15:13:00.952 29700 TIP 436176 16876 6043985 2024-02-23 15:14:08.958 2024-02-23 15:14:08.958 1000 FEE 436270 21320 6043986 2024-02-23 15:14:08.958 2024-02-23 15:14:08.958 9000 TIP 436270 715 6043995 2024-02-23 15:15:16.206 2024-02-23 15:15:16.206 2100 FEE 436241 10398 6043996 2024-02-23 15:15:16.206 2024-02-23 15:15:16.206 18900 TIP 436241 18101 6044010 2024-02-23 15:16:13.446 2024-02-23 15:16:13.446 10000 FEE 436301 15463 6044019 2024-02-23 15:18:41.373 2024-02-23 15:18:41.373 1000 FEE 436303 5806 6044044 2024-02-23 15:21:44.327 2024-02-23 15:21:44.327 1000 FEE 436309 9517 6044050 2024-02-23 15:22:33.763 2024-02-23 15:22:33.763 1000 FEE 436310 16276 6044059 2024-02-23 15:23:00.595 2024-02-23 15:23:00.595 2300 FEE 436241 8916 6044060 2024-02-23 15:23:00.595 2024-02-23 15:23:00.595 20700 TIP 436241 6419 6044092 2024-02-23 15:26:25.296 2024-02-23 15:26:25.296 1000 FEE 436314 14791 6044093 2024-02-23 15:26:46.755 2024-02-23 15:26:46.755 7100 FEE 436189 18809 6044094 2024-02-23 15:26:46.755 2024-02-23 15:26:46.755 63900 TIP 436189 2609 6044095 2024-02-23 15:26:59.598 2024-02-23 15:26:59.598 7100 FEE 434882 1650 6044096 2024-02-23 15:26:59.598 2024-02-23 15:26:59.598 63900 TIP 434882 11443 6044114 2024-02-23 15:27:55.175 2024-02-23 15:27:55.175 100 FEE 436258 9345 6044115 2024-02-23 15:27:55.175 2024-02-23 15:27:55.175 900 TIP 436258 13753 6044119 2024-02-23 15:28:06.647 2024-02-23 15:28:06.647 4000 FEE 436314 9183 6044120 2024-02-23 15:28:06.647 2024-02-23 15:28:06.647 36000 TIP 436314 10981 6044181 2024-02-23 15:34:36.303 2024-02-23 15:34:36.303 5000 FEE 434432 1733 6044182 2024-02-23 15:34:36.303 2024-02-23 15:34:36.303 45000 TIP 434432 5752 6044233 2024-02-23 15:45:30.388 2024-02-23 15:45:30.388 1000 FEE 436323 4084 6044234 2024-02-23 15:45:30.388 2024-02-23 15:45:30.388 9000 TIP 436323 16357 6044239 2024-02-23 15:45:31.133 2024-02-23 15:45:31.133 1000 FEE 436323 7673 6044240 2024-02-23 15:45:31.133 2024-02-23 15:45:31.133 9000 TIP 436323 21540 6044247 2024-02-23 15:47:59.662 2024-02-23 15:47:59.662 1000 FEE 436328 10530 6044251 2024-02-23 15:48:30.428 2024-02-23 15:48:30.428 1000 FEE 436329 20258 6044278 2024-02-23 15:49:35.327 2024-02-23 15:49:35.327 1000 FEE 436326 12291 6044279 2024-02-23 15:49:35.327 2024-02-23 15:49:35.327 9000 TIP 436326 3656 6044290 2024-02-23 15:49:38.324 2024-02-23 15:49:38.324 1000 FEE 436326 4102 6044291 2024-02-23 15:49:38.324 2024-02-23 15:49:38.324 9000 TIP 436326 19151 6044319 2024-02-23 15:51:57.572 2024-02-23 15:51:57.572 1000 FEE 436333 18529 6044324 2024-02-23 15:52:54.272 2024-02-23 15:52:54.272 1700 FEE 436286 20636 6044325 2024-02-23 15:52:54.272 2024-02-23 15:52:54.272 15300 TIP 436286 18663 6043953 2024-02-23 15:09:52.06 2024-02-23 15:09:52.06 1000 FEE 436287 19500 6043967 2024-02-23 15:12:13.762 2024-02-23 15:12:13.762 10000 FEE 436290 9084 6043968 2024-02-23 15:12:13.762 2024-02-23 15:12:13.762 90000 TIP 436290 16004 6043979 2024-02-23 15:13:37.632 2024-02-23 15:13:37.632 3300 FEE 436103 12769 6043980 2024-02-23 15:13:37.632 2024-02-23 15:13:37.632 29700 TIP 436103 9339 6043987 2024-02-23 15:14:18.645 2024-02-23 15:14:18.645 10100 FEE 435971 20812 6043988 2024-02-23 15:14:18.645 2024-02-23 15:14:18.645 90900 TIP 435971 19193 6043989 2024-02-23 15:14:21.647 2024-02-23 15:14:21.647 1000 FEE 436298 14731 6043991 2024-02-23 15:14:59.918 2024-02-23 15:14:59.918 2100 FEE 436136 20756 6043992 2024-02-23 15:14:59.918 2024-02-23 15:14:59.918 18900 TIP 436136 14545 6043994 2024-02-23 15:15:03.687 2024-02-23 15:15:03.687 1000 FEE 436300 5758 6044005 2024-02-23 15:16:02.392 2024-02-23 15:16:02.392 4000 FEE 436297 20302 6044006 2024-02-23 15:16:02.392 2024-02-23 15:16:02.392 36000 TIP 436297 18525 6044008 2024-02-23 15:16:03.042 2024-02-23 15:16:03.042 4000 FEE 436291 12175 6044009 2024-02-23 15:16:03.042 2024-02-23 15:16:03.042 36000 TIP 436291 21588 6044023 2024-02-23 15:19:45.59 2024-02-23 15:19:45.59 2100 FEE 436243 2537 6044024 2024-02-23 15:19:45.59 2024-02-23 15:19:45.59 18900 TIP 436243 19995 6044027 2024-02-23 15:19:55.728 2024-02-23 15:19:55.728 7700 FEE 436093 21131 6044028 2024-02-23 15:19:55.728 2024-02-23 15:19:55.728 69300 TIP 436093 14472 6044061 2024-02-23 15:23:00.703 2024-02-23 15:23:00.703 2300 FEE 436241 1354 6044062 2024-02-23 15:23:00.703 2024-02-23 15:23:00.703 20700 TIP 436241 11996 6044063 2024-02-23 15:23:01.027 2024-02-23 15:23:01.027 2300 FEE 436241 17927 6044064 2024-02-23 15:23:01.027 2024-02-23 15:23:01.027 20700 TIP 436241 18321 6044074 2024-02-23 15:24:25.775 2024-02-23 15:24:25.775 2100 FEE 436264 9363 6044075 2024-02-23 15:24:25.775 2024-02-23 15:24:25.775 18900 TIP 436264 16301 6044079 2024-02-23 15:25:07.736 2024-02-23 15:25:07.736 1000 FEE 436312 1549 6044081 2024-02-23 15:25:23.074 2024-02-23 15:25:23.074 4000 FEE 436273 16354 6044082 2024-02-23 15:25:23.074 2024-02-23 15:25:23.074 36000 TIP 436273 997 6044112 2024-02-23 15:27:42.742 2024-02-23 15:27:42.742 7100 FEE 433613 1224 6044113 2024-02-23 15:27:42.742 2024-02-23 15:27:42.742 63900 TIP 433613 9433 6044125 2024-02-23 15:28:32.033 2024-02-23 15:28:32.033 1000 FEE 436315 15226 6044126 2024-02-23 15:28:33.973 2024-02-23 15:28:33.973 1000 FEE 435947 11527 6044127 2024-02-23 15:28:33.973 2024-02-23 15:28:33.973 9000 TIP 435947 13544 6044130 2024-02-23 15:28:34.313 2024-02-23 15:28:34.313 1000 FEE 435947 19837 6044131 2024-02-23 15:28:34.313 2024-02-23 15:28:34.313 9000 TIP 435947 11491 6044133 2024-02-23 15:28:38.384 2024-02-23 15:28:38.384 3000 FEE 436307 4079 6044134 2024-02-23 15:28:38.384 2024-02-23 15:28:38.384 27000 TIP 436307 9332 6044137 2024-02-23 15:28:39.517 2024-02-23 15:28:39.517 1000 FEE 435986 14905 6044138 2024-02-23 15:28:39.517 2024-02-23 15:28:39.517 9000 TIP 435986 1002 6044139 2024-02-23 15:28:39.665 2024-02-23 15:28:39.665 1000 FEE 435986 976 6044140 2024-02-23 15:28:39.665 2024-02-23 15:28:39.665 9000 TIP 435986 17552 6044152 2024-02-23 15:29:31.278 2024-02-23 15:29:31.278 1000 FEE 435643 4345 6044153 2024-02-23 15:29:31.278 2024-02-23 15:29:31.278 9000 TIP 435643 20058 6044165 2024-02-23 15:32:14.178 2024-02-23 15:32:14.178 5000 FEE 433999 20090 6044166 2024-02-23 15:32:14.178 2024-02-23 15:32:14.178 45000 TIP 433999 18209 6044167 2024-02-23 15:32:15.043 2024-02-23 15:32:15.043 5000 FEE 434176 7983 6044168 2024-02-23 15:32:15.043 2024-02-23 15:32:15.043 45000 TIP 434176 19796 6044172 2024-02-23 15:33:47.829 2024-02-23 15:33:47.829 5000 FEE 434292 701 6044173 2024-02-23 15:33:47.829 2024-02-23 15:33:47.829 45000 TIP 434292 21393 6044180 2024-02-23 15:34:35.055 2024-02-23 15:34:35.055 100000 FEE 436322 20560 6044209 2024-02-23 15:41:06.79 2024-02-23 15:41:06.79 5000 FEE 434874 12768 6044210 2024-02-23 15:41:06.79 2024-02-23 15:41:06.79 45000 TIP 434874 13759 6044213 2024-02-23 15:41:42.241 2024-02-23 15:41:42.241 100 FEE 436287 980 6044214 2024-02-23 15:41:42.241 2024-02-23 15:41:42.241 900 TIP 436287 17014 6044229 2024-02-23 15:45:29.417 2024-02-23 15:45:29.417 1000 FEE 436323 18393 6044230 2024-02-23 15:45:29.417 2024-02-23 15:45:29.417 9000 TIP 436323 4014 6044243 2024-02-23 15:45:47.777 2024-02-23 15:45:47.777 1000000 FEE 436326 14650 6044252 2024-02-23 15:48:32.702 2024-02-23 15:48:32.702 1600 FEE 436273 10611 6044253 2024-02-23 15:48:32.702 2024-02-23 15:48:32.702 14400 TIP 436273 7960 6044264 2024-02-23 15:49:33.809 2024-02-23 15:49:33.809 1000 FEE 436326 1628 6044265 2024-02-23 15:49:33.809 2024-02-23 15:49:33.809 9000 TIP 436326 18363 6044274 2024-02-23 15:49:34.912 2024-02-23 15:49:34.912 1000 FEE 436326 4624 6044275 2024-02-23 15:49:34.912 2024-02-23 15:49:34.912 9000 TIP 436326 6383 6044280 2024-02-23 15:49:35.525 2024-02-23 15:49:35.525 1000 FEE 436326 706 6044281 2024-02-23 15:49:35.525 2024-02-23 15:49:35.525 9000 TIP 436326 13931 6044286 2024-02-23 15:49:36.527 2024-02-23 15:49:36.527 1000 FEE 436326 683 6044287 2024-02-23 15:49:36.527 2024-02-23 15:49:36.527 9000 TIP 436326 21599 6044308 2024-02-23 15:50:43.622 2024-02-23 15:50:43.622 8300 FEE 436326 11561 6044309 2024-02-23 15:50:43.622 2024-02-23 15:50:43.622 74700 TIP 436326 4313 6044321 2024-02-23 15:52:21.55 2024-02-23 15:52:21.55 2100 FEE 436328 12708 6044322 2024-02-23 15:52:21.55 2024-02-23 15:52:21.55 18900 TIP 436328 4118 6044336 2024-02-23 15:54:12.277 2024-02-23 15:54:12.277 1000 FEE 436180 16653 6044337 2024-02-23 15:54:12.277 2024-02-23 15:54:12.277 9000 TIP 436180 11590 6044361 2024-02-23 15:55:03.693 2024-02-23 15:55:03.693 1000 FEE 435560 946 6044362 2024-02-23 15:55:03.693 2024-02-23 15:55:03.693 9000 TIP 435560 21303 6044384 2024-02-23 15:55:54.636 2024-02-23 15:55:54.636 1000 FEE 435649 657 6044385 2024-02-23 15:55:54.636 2024-02-23 15:55:54.636 9000 TIP 435649 976 6043966 2024-02-23 15:12:03.003 2024-02-23 15:12:03.003 1000 STREAM 141924 13204 6044007 2024-02-23 15:16:03.02 2024-02-23 15:16:03.02 1000 STREAM 141924 642 6044017 2024-02-23 15:18:03.105 2024-02-23 15:18:03.105 1000 STREAM 141924 18209 6044029 2024-02-23 15:20:03.159 2024-02-23 15:20:03.159 1000 STREAM 141924 10469 6044037 2024-02-23 15:21:03.154 2024-02-23 15:21:03.154 1000 STREAM 141924 1237 6044065 2024-02-23 15:23:03.151 2024-02-23 15:23:03.151 1000 STREAM 141924 21627 6044073 2024-02-23 15:24:03.152 2024-02-23 15:24:03.152 1000 STREAM 141924 20509 6044078 2024-02-23 15:25:03.183 2024-02-23 15:25:03.183 1000 STREAM 141924 1817 6044091 2024-02-23 15:26:03.189 2024-02-23 15:26:03.189 1000 STREAM 141924 20730 6044118 2024-02-23 15:28:03.223 2024-02-23 15:28:03.223 1000 STREAM 141924 20911 6044156 2024-02-23 15:30:03.393 2024-02-23 15:30:03.393 1000 STREAM 141924 18170 6044161 2024-02-23 15:32:03.371 2024-02-23 15:32:03.371 1000 STREAM 141924 2639 6044191 2024-02-23 15:37:03.419 2024-02-23 15:37:03.419 1000 STREAM 141924 21228 6044195 2024-02-23 15:39:03.422 2024-02-23 15:39:03.422 1000 STREAM 141924 18423 6044202 2024-02-23 15:40:03.448 2024-02-23 15:40:03.448 1000 STREAM 141924 4538 6112810 2024-02-29 14:21:11.662 2024-02-29 14:21:11.662 1000 FEE 443539 14308 6112866 2024-02-29 14:27:56.661 2024-02-29 14:27:56.661 10000 FEE 314960 8269 6112867 2024-02-29 14:27:56.661 2024-02-29 14:27:56.661 90000 TIP 314960 19773 6112888 2024-02-29 14:30:45.567 2024-02-29 14:30:45.567 1000 FEE 443561 12346 6112894 2024-02-29 14:31:21.714 2024-02-29 14:31:21.714 1000 FEE 443564 987 6112901 2024-02-29 14:31:52.618 2024-02-29 14:31:52.618 10000 FEE 443396 19663 6112902 2024-02-29 14:31:52.618 2024-02-29 14:31:52.618 90000 TIP 443396 2952 6112940 2024-02-29 14:34:08.878 2024-02-29 14:34:08.878 2100 FEE 443197 9427 6112941 2024-02-29 14:34:08.878 2024-02-29 14:34:08.878 18900 TIP 443197 644 6112949 2024-02-29 14:34:30.853 2024-02-29 14:34:30.853 1000 FEE 443574 4084 6112964 2024-02-29 14:35:04.358 2024-02-29 14:35:04.358 7700 FEE 443274 20436 6112965 2024-02-29 14:35:04.358 2024-02-29 14:35:04.358 69300 TIP 443274 5427 6112982 2024-02-29 14:35:14.86 2024-02-29 14:35:14.86 7700 FEE 443372 8535 6112983 2024-02-29 14:35:14.86 2024-02-29 14:35:14.86 69300 TIP 443372 18344 6113010 2024-02-29 14:35:19.803 2024-02-29 14:35:19.803 7700 FEE 443179 2952 6113011 2024-02-29 14:35:19.803 2024-02-29 14:35:19.803 69300 TIP 443179 7553 6113028 2024-02-29 14:35:30.64 2024-02-29 14:35:30.64 7700 FEE 443545 15063 6113029 2024-02-29 14:35:30.64 2024-02-29 14:35:30.64 69300 TIP 443545 21019 6113044 2024-02-29 14:35:48.356 2024-02-29 14:35:48.356 15400 FEE 443339 1745 6113045 2024-02-29 14:35:48.356 2024-02-29 14:35:48.356 138600 TIP 443339 9551 6113072 2024-02-29 14:36:37.874 2024-02-29 14:36:37.874 10000 FEE 443545 16336 6113073 2024-02-29 14:36:37.874 2024-02-29 14:36:37.874 90000 TIP 443545 16680 6113074 2024-02-29 14:36:40.295 2024-02-29 14:36:40.295 2100 FEE 443329 18494 6113075 2024-02-29 14:36:40.295 2024-02-29 14:36:40.295 18900 TIP 443329 718 6113078 2024-02-29 14:36:48.584 2024-02-29 14:36:48.584 2100 FEE 443316 20222 6113079 2024-02-29 14:36:48.584 2024-02-29 14:36:48.584 18900 TIP 443316 12606 6113094 2024-02-29 14:38:15.157 2024-02-29 14:38:15.157 2100 FEE 443545 15088 6113095 2024-02-29 14:38:15.157 2024-02-29 14:38:15.157 18900 TIP 443545 1038 6044088 2024-02-23 15:25:44.918 2024-02-23 15:25:44.918 27000 TIP 436312 19193 6044108 2024-02-23 15:27:22.891 2024-02-23 15:27:22.891 7100 FEE 433799 1291 6044109 2024-02-23 15:27:22.891 2024-02-23 15:27:22.891 63900 TIP 433799 20381 6044116 2024-02-23 15:27:55.4 2024-02-23 15:27:55.4 900 FEE 436258 17741 6044117 2024-02-23 15:27:55.4 2024-02-23 15:27:55.4 8100 TIP 436258 1394 6044132 2024-02-23 15:28:35.431 2024-02-23 15:28:35.431 100000 FEE 436316 19806 6044135 2024-02-23 15:28:39.335 2024-02-23 15:28:39.335 1000 FEE 435986 17798 6044136 2024-02-23 15:28:39.335 2024-02-23 15:28:39.335 9000 TIP 435986 18533 6044141 2024-02-23 15:28:50.529 2024-02-23 15:28:50.529 1000 FEE 436197 2328 6044142 2024-02-23 15:28:50.529 2024-02-23 15:28:50.529 9000 TIP 436197 12122 6044148 2024-02-23 15:29:30.967 2024-02-23 15:29:30.967 1000 FEE 435643 2390 6044149 2024-02-23 15:29:30.967 2024-02-23 15:29:30.967 9000 TIP 435643 13987 6044150 2024-02-23 15:29:31.119 2024-02-23 15:29:31.119 1000 FEE 435643 3504 6044151 2024-02-23 15:29:31.119 2024-02-23 15:29:31.119 9000 TIP 435643 15351 6044162 2024-02-23 15:32:11.351 2024-02-23 15:32:11.351 5000 FEE 434020 19821 6044163 2024-02-23 15:32:11.351 2024-02-23 15:32:11.351 45000 TIP 434020 21509 6044198 2024-02-23 15:39:24.544 2024-02-23 15:39:24.544 2100 FEE 436174 18363 6044199 2024-02-23 15:39:24.544 2024-02-23 15:39:24.544 18900 TIP 436174 15226 6044203 2024-02-23 15:40:17.872 2024-02-23 15:40:17.872 7100 FEE 436318 20045 6044204 2024-02-23 15:40:17.872 2024-02-23 15:40:17.872 63900 TIP 436318 16848 6044205 2024-02-23 15:40:34.353 2024-02-23 15:40:34.353 1000 FEE 436325 891 6044207 2024-02-23 15:41:06.277 2024-02-23 15:41:06.277 5000 FEE 434874 21451 6044208 2024-02-23 15:41:06.277 2024-02-23 15:41:06.277 45000 TIP 434874 15119 6044215 2024-02-23 15:41:42.555 2024-02-23 15:41:42.555 100 FEE 436287 18280 6044216 2024-02-23 15:41:42.555 2024-02-23 15:41:42.555 900 TIP 436287 20717 6044249 2024-02-23 15:48:13.273 2024-02-23 15:48:13.273 2100 FEE 436322 13622 6044250 2024-02-23 15:48:13.273 2024-02-23 15:48:13.273 18900 TIP 436322 8133 6044268 2024-02-23 15:49:34.259 2024-02-23 15:49:34.259 1000 FEE 436326 6360 6044269 2024-02-23 15:49:34.259 2024-02-23 15:49:34.259 9000 TIP 436326 19941 6044282 2024-02-23 15:49:35.779 2024-02-23 15:49:35.779 1000 FEE 436326 18618 6044283 2024-02-23 15:49:35.779 2024-02-23 15:49:35.779 9000 TIP 436326 21387 6044299 2024-02-23 15:50:11.943 2024-02-23 15:50:11.943 0 FEE 436325 1038 6044302 2024-02-23 15:50:20.586 2024-02-23 15:50:20.586 1600 FEE 436322 21207 6044303 2024-02-23 15:50:20.586 2024-02-23 15:50:20.586 14400 TIP 436322 690 6044312 2024-02-23 15:50:43.884 2024-02-23 15:50:43.884 8300 FEE 436326 12769 6044313 2024-02-23 15:50:43.884 2024-02-23 15:50:43.884 74700 TIP 436326 21248 6044315 2024-02-23 15:51:29.725 2024-02-23 15:51:29.725 1600 FEE 436326 896 6044316 2024-02-23 15:51:29.725 2024-02-23 15:51:29.725 14400 TIP 436326 1298 6044155 2024-02-23 15:29:35.014 2024-02-23 15:29:35.014 100000 FEE 436318 5597 6044159 2024-02-23 15:32:02.011 2024-02-23 15:32:02.011 2100 FEE 436313 8664 6044160 2024-02-23 15:32:02.011 2024-02-23 15:32:02.011 18900 TIP 436313 20669 6044177 2024-02-23 15:34:25.693 2024-02-23 15:34:25.693 5000 FEE 434115 721 6044178 2024-02-23 15:34:25.693 2024-02-23 15:34:25.693 45000 TIP 434115 18270 6044224 2024-02-23 15:44:08.638 2024-02-23 15:44:08.638 2000 FEE 436303 629 6044225 2024-02-23 15:44:08.638 2024-02-23 15:44:08.638 18000 TIP 436303 2519 6044237 2024-02-23 15:45:30.961 2024-02-23 15:45:30.961 1000 FEE 436323 20597 6044238 2024-02-23 15:45:30.961 2024-02-23 15:45:30.961 9000 TIP 436323 2000 6044241 2024-02-23 15:45:31.355 2024-02-23 15:45:31.355 1000 FEE 436323 9348 6044242 2024-02-23 15:45:31.355 2024-02-23 15:45:31.355 9000 TIP 436323 18675 6044256 2024-02-23 15:49:21.281 2024-02-23 15:49:21.281 100000 FEE 436331 17526 6044258 2024-02-23 15:49:33.15 2024-02-23 15:49:33.15 1600 FEE 436290 1010 6044259 2024-02-23 15:49:33.15 2024-02-23 15:49:33.15 14400 TIP 436290 19633 6044262 2024-02-23 15:49:33.621 2024-02-23 15:49:33.621 1000 FEE 436326 9363 6044263 2024-02-23 15:49:33.621 2024-02-23 15:49:33.621 9000 TIP 436326 1245 6044272 2024-02-23 15:49:34.754 2024-02-23 15:49:34.754 1000 FEE 436326 2075 6044273 2024-02-23 15:49:34.754 2024-02-23 15:49:34.754 9000 TIP 436326 20972 6044288 2024-02-23 15:49:36.871 2024-02-23 15:49:36.871 1000 FEE 436326 4692 6044289 2024-02-23 15:49:36.871 2024-02-23 15:49:36.871 9000 TIP 436326 21427 6044323 2024-02-23 15:52:26.241 2024-02-23 15:52:26.241 1000 FEE 436334 674 6044379 2024-02-23 15:55:29.081 2024-02-23 15:55:29.081 4000 FEE 436213 15351 6044380 2024-02-23 15:55:29.081 2024-02-23 15:55:29.081 36000 TIP 436213 13097 6044407 2024-02-23 15:57:12.01 2024-02-23 15:57:12.01 1000 FEE 435063 7847 6044408 2024-02-23 15:57:12.01 2024-02-23 15:57:12.01 9000 TIP 435063 19286 6044411 2024-02-23 15:57:16.504 2024-02-23 15:57:16.504 1000 FEE 435456 980 6044412 2024-02-23 15:57:16.504 2024-02-23 15:57:16.504 9000 TIP 435456 1352 6044415 2024-02-23 15:57:17.866 2024-02-23 15:57:17.866 1000 FEE 435246 687 6044416 2024-02-23 15:57:17.866 2024-02-23 15:57:17.866 9000 TIP 435246 13574 6044433 2024-02-23 15:58:13.937 2024-02-23 15:58:13.937 1000 FEE 436347 4177 6044442 2024-02-23 15:58:40.505 2024-02-23 15:58:40.505 1000 FEE 435786 12346 6044443 2024-02-23 15:58:40.505 2024-02-23 15:58:40.505 9000 TIP 435786 12102 6044456 2024-02-23 15:59:54.079 2024-02-23 15:59:54.079 7700 FEE 435939 7418 6044457 2024-02-23 15:59:54.079 2024-02-23 15:59:54.079 69300 TIP 435939 14688 6044464 2024-02-23 15:59:59.854 2024-02-23 15:59:59.854 1000 FEE 435882 16956 6044465 2024-02-23 15:59:59.854 2024-02-23 15:59:59.854 9000 TIP 435882 20990 6044466 2024-02-23 16:00:00.074 2024-02-23 16:00:00.074 1000 FEE 435882 14202 6044467 2024-02-23 16:00:00.074 2024-02-23 16:00:00.074 9000 TIP 435882 19449 6044477 2024-02-23 16:00:05.065 2024-02-23 16:00:05.065 1000 FEE 435882 20586 6044478 2024-02-23 16:00:05.065 2024-02-23 16:00:05.065 9000 TIP 435882 980 6044481 2024-02-23 16:00:39.625 2024-02-23 16:00:39.625 1000 FEE 436352 18769 6044488 2024-02-23 16:00:43.341 2024-02-23 16:00:43.341 1000 FEE 435882 1717 6044489 2024-02-23 16:00:43.341 2024-02-23 16:00:43.341 9000 TIP 435882 16954 6044501 2024-02-23 16:01:48.421 2024-02-23 16:01:48.421 100 FEE 436345 20840 6044502 2024-02-23 16:01:48.421 2024-02-23 16:01:48.421 900 TIP 436345 7376 6044507 2024-02-23 16:02:35.273 2024-02-23 16:02:35.273 100 FEE 436317 2347 6044508 2024-02-23 16:02:35.273 2024-02-23 16:02:35.273 900 TIP 436317 1352 6044509 2024-02-23 16:02:36.689 2024-02-23 16:02:36.689 900 FEE 436317 21228 6044510 2024-02-23 16:02:36.689 2024-02-23 16:02:36.689 8100 TIP 436317 10638 6044534 2024-02-23 16:05:31.833 2024-02-23 16:05:31.833 3300 FEE 5705 15103 6044535 2024-02-23 16:05:31.833 2024-02-23 16:05:31.833 29700 TIP 5705 13622 6044539 2024-02-23 16:06:30.354 2024-02-23 16:06:30.354 500 FEE 436321 21103 6044540 2024-02-23 16:06:30.354 2024-02-23 16:06:30.354 4500 TIP 436321 15732 6044220 2024-02-23 15:43:03.519 2024-02-23 15:43:03.519 1000 STREAM 141924 1272 6044246 2024-02-23 15:47:03.529 2024-02-23 15:47:03.529 1000 STREAM 141924 21540 6044248 2024-02-23 15:48:03.527 2024-02-23 15:48:03.527 1000 STREAM 141924 21051 6044298 2024-02-23 15:50:03.55 2024-02-23 15:50:03.55 1000 STREAM 141924 1135 6044320 2024-02-23 15:52:03.57 2024-02-23 15:52:03.57 1000 STREAM 141924 16309 6044328 2024-02-23 15:53:03.591 2024-02-23 15:53:03.591 1000 STREAM 141924 19857 6044332 2024-02-23 15:54:03.596 2024-02-23 15:54:03.596 1000 STREAM 141924 2309 6044360 2024-02-23 15:55:03.608 2024-02-23 15:55:03.608 1000 STREAM 141924 20257 6044388 2024-02-23 15:56:03.611 2024-02-23 15:56:03.611 1000 STREAM 141924 21453 6044398 2024-02-23 15:57:03.626 2024-02-23 15:57:03.626 1000 STREAM 141924 18705 6044448 2024-02-23 15:59:03.631 2024-02-23 15:59:03.631 1000 STREAM 141924 17321 6044498 2024-02-23 16:01:03.653 2024-02-23 16:01:03.653 1000 STREAM 141924 6361 6044514 2024-02-23 16:03:03.663 2024-02-23 16:03:03.663 1000 STREAM 141924 12721 6044536 2024-02-23 16:06:03.692 2024-02-23 16:06:03.692 1000 STREAM 141924 11714 6044545 2024-02-23 16:07:03.7 2024-02-23 16:07:03.7 1000 STREAM 141924 18177 6044604 2024-02-23 16:10:03.738 2024-02-23 16:10:03.738 1000 STREAM 141924 13216 6044610 2024-02-23 16:11:03.743 2024-02-23 16:11:03.743 1000 STREAM 141924 768 6044654 2024-02-23 16:14:03.763 2024-02-23 16:14:03.763 1000 STREAM 141924 17109 6044659 2024-02-23 16:15:03.768 2024-02-23 16:15:03.768 1000 STREAM 141924 20452 6044706 2024-02-23 16:20:03.805 2024-02-23 16:20:03.805 1000 STREAM 141924 997 6044731 2024-02-23 16:21:03.811 2024-02-23 16:21:03.811 1000 STREAM 141924 9820 6044749 2024-02-23 16:22:03.816 2024-02-23 16:22:03.816 1000 STREAM 141924 4984 6044756 2024-02-23 16:24:03.83 2024-02-23 16:24:03.83 1000 STREAM 141924 21042 6044757 2024-02-23 16:25:03.848 2024-02-23 16:25:03.848 1000 STREAM 141924 19987 6044776 2024-02-23 16:29:03.86 2024-02-23 16:29:03.86 1000 STREAM 141924 21275 6044793 2024-02-23 16:33:03.884 2024-02-23 16:33:03.884 1000 STREAM 141924 20084 6044797 2024-02-23 16:34:03.875 2024-02-23 16:34:03.875 1000 STREAM 141924 3396 6044801 2024-02-23 16:35:03.886 2024-02-23 16:35:03.886 1000 STREAM 141924 1959 6044814 2024-02-23 16:36:03.89 2024-02-23 16:36:03.89 1000 STREAM 141924 4768 6044818 2024-02-23 16:37:03.892 2024-02-23 16:37:03.892 1000 STREAM 141924 5978 6044822 2024-02-23 16:38:03.904 2024-02-23 16:38:03.904 1000 STREAM 141924 1652 6044837 2024-02-23 16:40:03.913 2024-02-23 16:40:03.913 1000 STREAM 141924 13365 6044838 2024-02-23 16:41:03.921 2024-02-23 16:41:03.921 1000 STREAM 141924 14449 6044866 2024-02-23 16:45:03.944 2024-02-23 16:45:03.944 1000 STREAM 141924 11165 6044883 2024-02-23 16:49:03.963 2024-02-23 16:49:03.963 1000 STREAM 141924 11862 6044894 2024-02-23 16:51:03.971 2024-02-23 16:51:03.971 1000 STREAM 141924 5791 6045214 2024-02-23 17:12:04.145 2024-02-23 17:12:04.145 1000 STREAM 141924 16505 6045253 2024-02-23 17:13:04.149 2024-02-23 17:13:04.149 1000 STREAM 141924 7989 6045287 2024-02-23 17:16:04.165 2024-02-23 17:16:04.165 1000 STREAM 141924 8664 6045381 2024-02-23 17:17:04.175 2024-02-23 17:17:04.175 1000 STREAM 141924 11590 6045453 2024-02-23 17:19:04.192 2024-02-23 17:19:04.192 1000 STREAM 141924 692 6045532 2024-02-23 17:22:04.214 2024-02-23 17:22:04.214 1000 STREAM 141924 3706 6045568 2024-02-23 17:25:04.247 2024-02-23 17:25:04.247 1000 STREAM 141924 1389 6045623 2024-02-23 17:30:04.257 2024-02-23 17:30:04.257 1000 STREAM 141924 20464 6045635 2024-02-23 17:31:04.251 2024-02-23 17:31:04.251 1000 STREAM 141924 12160 6045761 2024-02-23 17:37:04.329 2024-02-23 17:37:04.329 1000 STREAM 141924 1577 6045793 2024-02-23 17:38:04.347 2024-02-23 17:38:04.347 1000 STREAM 141924 17109 6045831 2024-02-23 17:42:04.341 2024-02-23 17:42:04.341 1000 STREAM 141924 4459 6045847 2024-02-23 17:45:02.377 2024-02-23 17:45:02.377 1000 STREAM 141924 15703 6045919 2024-02-23 17:47:04.361 2024-02-23 17:47:04.361 1000 STREAM 141924 12516 6112819 2024-02-29 14:23:32.732 2024-02-29 14:23:32.732 1000 POLL 442751 9353 6112835 2024-02-29 14:25:12.493 2024-02-29 14:25:12.493 1700 FEE 443528 1585 6112836 2024-02-29 14:25:12.493 2024-02-29 14:25:12.493 15300 TIP 443528 4043 6112853 2024-02-29 14:26:55.471 2024-02-29 14:26:55.471 300 FEE 443487 5761 6112854 2024-02-29 14:26:55.471 2024-02-29 14:26:55.471 2700 TIP 443487 13361 6112855 2024-02-29 14:27:01.066 2024-02-29 14:27:01.066 21000 FEE 443550 16354 6112881 2024-02-29 14:29:52.108 2024-02-29 14:29:52.108 1000 FEE 443559 20754 6112885 2024-02-29 14:30:28.786 2024-02-29 14:30:28.786 1000 FEE 443560 21547 6112899 2024-02-29 14:31:51.525 2024-02-29 14:31:51.525 3100 FEE 443329 685 6112900 2024-02-29 14:31:51.525 2024-02-29 14:31:51.525 27900 TIP 443329 19815 6112915 2024-02-29 14:32:46.456 2024-02-29 14:32:46.456 0 FEE 443561 18705 6112925 2024-02-29 14:33:29.592 2024-02-29 14:33:29.592 2100 FEE 443463 20539 6112926 2024-02-29 14:33:29.592 2024-02-29 14:33:29.592 18900 TIP 443463 5759 6112927 2024-02-29 14:33:33.614 2024-02-29 14:33:33.614 0 FEE 443561 9494 6112937 2024-02-29 14:33:57.908 2024-02-29 14:33:57.908 2100 FEE 443372 20969 6112938 2024-02-29 14:33:57.908 2024-02-29 14:33:57.908 18900 TIP 443372 19770 6112944 2024-02-29 14:34:23.411 2024-02-29 14:34:23.411 3000 FEE 443572 1354 6112945 2024-02-29 14:34:23.411 2024-02-29 14:34:23.411 27000 TIP 443572 18583 6112948 2024-02-29 14:34:27.832 2024-02-29 14:34:27.832 1000 FEE 443573 17638 6112970 2024-02-29 14:35:06.49 2024-02-29 14:35:06.49 15400 FEE 443274 21373 6112971 2024-02-29 14:35:06.49 2024-02-29 14:35:06.49 138600 TIP 443274 7395 6112978 2024-02-29 14:35:14.545 2024-02-29 14:35:14.545 7700 FEE 443372 631 6112979 2024-02-29 14:35:14.545 2024-02-29 14:35:14.545 69300 TIP 443372 9833 6112996 2024-02-29 14:35:15.665 2024-02-29 14:35:15.665 7700 FEE 443372 10611 6112997 2024-02-29 14:35:15.665 2024-02-29 14:35:15.665 69300 TIP 443372 18271 6113022 2024-02-29 14:35:20.761 2024-02-29 14:35:20.761 7700 FEE 443179 2075 6113023 2024-02-29 14:35:20.761 2024-02-29 14:35:20.761 69300 TIP 443179 9969 6113026 2024-02-29 14:35:30.216 2024-02-29 14:35:30.216 7700 FEE 443545 7425 6113027 2024-02-29 14:35:30.216 2024-02-29 14:35:30.216 69300 TIP 443545 15159 6113030 2024-02-29 14:35:30.785 2024-02-29 14:35:30.785 7700 FEE 443545 15526 6113031 2024-02-29 14:35:30.785 2024-02-29 14:35:30.785 69300 TIP 443545 6148 6113084 2024-02-29 14:37:09.6 2024-02-29 14:37:09.6 2100 FEE 443297 9833 6113085 2024-02-29 14:37:09.6 2024-02-29 14:37:09.6 18900 TIP 443297 17103 6113135 2024-02-29 14:41:45.68 2024-02-29 14:41:45.68 7700 FEE 443274 2640 6113136 2024-02-29 14:41:45.68 2024-02-29 14:41:45.68 69300 TIP 443274 7510 6113141 2024-02-29 14:41:46.971 2024-02-29 14:41:46.971 7700 FEE 443272 21494 6113142 2024-02-29 14:41:46.971 2024-02-29 14:41:46.971 69300 TIP 443272 9476 6113153 2024-02-29 14:41:57.237 2024-02-29 14:41:57.237 300 FEE 443545 20998 6113154 2024-02-29 14:41:57.237 2024-02-29 14:41:57.237 2700 TIP 443545 4084 6113187 2024-02-29 14:42:02.029 2024-02-29 14:42:02.029 300 FEE 442904 18270 6113188 2024-02-29 14:42:02.029 2024-02-29 14:42:02.029 2700 TIP 442904 21627 6113197 2024-02-29 14:42:02.942 2024-02-29 14:42:02.942 300 FEE 442904 18119 6113198 2024-02-29 14:42:02.942 2024-02-29 14:42:02.942 2700 TIP 442904 5017 6113200 2024-02-29 14:42:03.142 2024-02-29 14:42:03.142 300 FEE 442904 7389 6113201 2024-02-29 14:42:03.142 2024-02-29 14:42:03.142 2700 TIP 442904 9364 6113216 2024-02-29 14:42:07.36 2024-02-29 14:42:07.36 3100 FEE 443581 19938 6113217 2024-02-29 14:42:07.36 2024-02-29 14:42:07.36 27900 TIP 443581 13587 6113244 2024-02-29 14:43:24.851 2024-02-29 14:43:24.851 2100 FEE 443583 2773 6113245 2024-02-29 14:43:24.851 2024-02-29 14:43:24.851 18900 TIP 443583 8287 6113267 2024-02-29 14:44:53.514 2024-02-29 14:44:53.514 21000 FEE 443589 20891 6113279 2024-02-29 14:45:51.256 2024-02-29 14:45:51.256 2700 FEE 443319 21242 6113280 2024-02-29 14:45:51.256 2024-02-29 14:45:51.256 24300 TIP 443319 1745 6113299 2024-02-29 14:46:45.537 2024-02-29 14:46:45.537 21000 FEE 443593 9339 6113338 2024-02-29 14:50:02.374 2024-02-29 14:50:02.374 9000 FEE 443583 5779 6113339 2024-02-29 14:50:02.374 2024-02-29 14:50:02.374 81000 TIP 443583 1261 6044293 2024-02-23 15:49:46.282 2024-02-23 15:49:46.282 74700 TIP 436246 17714 6044300 2024-02-23 15:50:13.759 2024-02-23 15:50:13.759 1000 FEE 435767 1495 6044301 2024-02-23 15:50:13.759 2024-02-23 15:50:13.759 9000 TIP 435767 21119 6044306 2024-02-23 15:50:43.561 2024-02-23 15:50:43.561 8300 FEE 436326 19044 6044307 2024-02-23 15:50:43.561 2024-02-23 15:50:43.561 74700 TIP 436326 9335 6044310 2024-02-23 15:50:43.753 2024-02-23 15:50:43.753 8300 FEE 436326 21159 6044311 2024-02-23 15:50:43.753 2024-02-23 15:50:43.753 74700 TIP 436326 16717 6044326 2024-02-23 15:52:58.006 2024-02-23 15:52:58.006 1000 FEE 436335 18667 6044330 2024-02-23 15:53:39.301 2024-02-23 15:53:39.301 1000 FEE 436338 960 6044331 2024-02-23 15:53:46.46 2024-02-23 15:53:46.46 1000 FEE 436339 657 6044367 2024-02-23 15:55:21.012 2024-02-23 15:55:21.012 4000 FEE 436093 15408 6044368 2024-02-23 15:55:21.012 2024-02-23 15:55:21.012 36000 TIP 436093 19463 6044377 2024-02-23 15:55:29.023 2024-02-23 15:55:29.023 4000 FEE 436248 13378 6044378 2024-02-23 15:55:29.023 2024-02-23 15:55:29.023 36000 TIP 436248 21369 6044381 2024-02-23 15:55:46.308 2024-02-23 15:55:46.308 4000 FEE 436344 18984 6044382 2024-02-23 15:55:46.308 2024-02-23 15:55:46.308 36000 TIP 436344 19839 6044392 2024-02-23 15:56:09.899 2024-02-23 15:56:09.899 1000 FEE 435652 6594 6044393 2024-02-23 15:56:09.899 2024-02-23 15:56:09.899 9000 TIP 435652 18736 6044426 2024-02-23 15:57:48.56 2024-02-23 15:57:48.56 1000 FEE 435678 6700 6044427 2024-02-23 15:57:48.56 2024-02-23 15:57:48.56 9000 TIP 435678 760 6044430 2024-02-23 15:57:58.128 2024-02-23 15:57:58.128 2000 FEE 436293 17944 6044431 2024-02-23 15:57:58.128 2024-02-23 15:57:58.128 18000 TIP 436293 2596 6044436 2024-02-23 15:58:23.231 2024-02-23 15:58:23.231 1000 FEE 436349 15045 6044440 2024-02-23 15:58:40.228 2024-02-23 15:58:40.228 1000 FEE 435786 15588 6044441 2024-02-23 15:58:40.228 2024-02-23 15:58:40.228 9000 TIP 435786 19930 6044446 2024-02-23 15:58:41.112 2024-02-23 15:58:41.112 1000 FEE 435786 1244 6044447 2024-02-23 15:58:41.112 2024-02-23 15:58:41.112 9000 TIP 435786 1180 6044450 2024-02-23 15:59:51.011 2024-02-23 15:59:51.011 1000 FEE 435908 1801 6044451 2024-02-23 15:59:51.011 2024-02-23 15:59:51.011 9000 TIP 435908 5708 6044511 2024-02-23 16:02:53.554 2024-02-23 16:02:53.554 1000 FEE 436354 666 6044512 2024-02-23 16:02:53.86 2024-02-23 16:02:53.86 2100 FEE 436338 21441 6044513 2024-02-23 16:02:53.86 2024-02-23 16:02:53.86 18900 TIP 436338 20889 6044518 2024-02-23 16:03:27.642 2024-02-23 16:03:27.642 2000 FEE 436129 12774 6044519 2024-02-23 16:03:27.642 2024-02-23 16:03:27.642 18000 TIP 436129 17708 6044520 2024-02-23 16:03:27.976 2024-02-23 16:03:27.976 1000 FEE 436356 17184 6044533 2024-02-23 16:05:12.059 2024-02-23 16:05:12.059 1000 FEE 436359 1628 6044550 2024-02-23 16:08:13.14 2024-02-23 16:08:13.14 3300 FEE 436142 12507 6044551 2024-02-23 16:08:13.14 2024-02-23 16:08:13.14 29700 TIP 436142 16942 6044579 2024-02-23 16:08:26.492 2024-02-23 16:08:26.492 100 FEE 436359 18658 6044580 2024-02-23 16:08:26.492 2024-02-23 16:08:26.492 900 TIP 436359 19263 6044623 2024-02-23 16:13:05.145 2024-02-23 16:13:05.145 2100 FEE 436326 18138 6044624 2024-02-23 16:13:05.145 2024-02-23 16:13:05.145 18900 TIP 436326 18641 6044669 2024-02-23 16:18:35.05 2024-02-23 16:18:35.05 0 FEE 436374 17514 6044675 2024-02-23 16:19:06.153 2024-02-23 16:19:06.153 1000 FEE 436375 21320 6044684 2024-02-23 16:19:09.698 2024-02-23 16:19:09.698 1000 FEE 436362 19030 6044685 2024-02-23 16:19:09.698 2024-02-23 16:19:09.698 9000 TIP 436362 696 6044712 2024-02-23 16:20:30.077 2024-02-23 16:20:30.077 10000 FEE 436378 21036 6044723 2024-02-23 16:21:02.653 2024-02-23 16:21:02.653 1000 FEE 435907 3506 6044724 2024-02-23 16:21:02.653 2024-02-23 16:21:02.653 9000 TIP 435907 712 6044734 2024-02-23 16:21:04.689 2024-02-23 16:21:04.689 1000 FEE 435907 797 6044735 2024-02-23 16:21:04.689 2024-02-23 16:21:04.689 9000 TIP 435907 3656 6044750 2024-02-23 16:22:13.801 2024-02-23 16:22:13.801 1000 FEE 436328 8648 6044751 2024-02-23 16:22:13.801 2024-02-23 16:22:13.801 9000 TIP 436328 12609 6044758 2024-02-23 16:25:52.711 2024-02-23 16:25:52.711 3200 FEE 436343 21402 6044759 2024-02-23 16:25:52.711 2024-02-23 16:25:52.711 28800 TIP 436343 9352 6044772 2024-02-23 16:28:00.292 2024-02-23 16:28:00.292 0 FEE 436385 15337 6044784 2024-02-23 16:30:39.576 2024-02-23 16:30:39.576 3000 FEE 436275 21614 6044785 2024-02-23 16:30:39.576 2024-02-23 16:30:39.576 27000 TIP 436275 8796 6044790 2024-02-23 16:32:11.932 2024-02-23 16:32:11.932 1000 FEE 436388 19193 6044810 2024-02-23 16:36:02.875 2024-02-23 16:36:02.875 1000 FEE 436273 6260 6044811 2024-02-23 16:36:02.875 2024-02-23 16:36:02.875 9000 TIP 436273 13169 6044819 2024-02-23 16:37:45.233 2024-02-23 16:37:45.233 1000 FEE 436393 2042 6044820 2024-02-23 16:38:00.058 2024-02-23 16:38:00.058 3000 FEE 436391 1652 6044821 2024-02-23 16:38:00.058 2024-02-23 16:38:00.058 27000 TIP 436391 21494 6044832 2024-02-23 16:39:15.489 2024-02-23 16:39:15.489 1000 FEE 436275 19154 6044833 2024-02-23 16:39:15.489 2024-02-23 16:39:15.489 9000 TIP 436275 3642 6044860 2024-02-23 16:44:45.217 2024-02-23 16:44:45.217 2100 FEE 436399 6700 6044861 2024-02-23 16:44:45.217 2024-02-23 16:44:45.217 18900 TIP 436399 6555 6044880 2024-02-23 16:48:13.656 2024-02-23 16:48:13.656 1000 FEE 436407 6421 6044899 2024-02-23 16:53:05.802 2024-02-23 16:53:05.802 0 FEE 436411 19732 6044918 2024-02-23 16:56:03.861 2024-02-23 16:56:03.861 100 FEE 435178 672 6044919 2024-02-23 16:56:03.861 2024-02-23 16:56:03.861 900 TIP 435178 1454 6044925 2024-02-23 16:56:18.467 2024-02-23 16:56:18.467 1000 POLL 436323 21357 6044988 2024-02-23 17:01:13.209 2024-02-23 17:01:13.209 2100 FEE 435922 1162 6044989 2024-02-23 17:01:13.209 2024-02-23 17:01:13.209 18900 TIP 435922 16684 6044991 2024-02-23 17:01:49.267 2024-02-23 17:01:49.267 3300 FEE 436323 17172 6044992 2024-02-23 17:01:49.267 2024-02-23 17:01:49.267 29700 TIP 436323 19281 6045003 2024-02-23 17:02:30.247 2024-02-23 17:02:30.247 0 FEE 436413 14267 6045037 2024-02-23 17:03:59.436 2024-02-23 17:03:59.436 100 FEE 436223 5057 6045038 2024-02-23 17:03:59.436 2024-02-23 17:03:59.436 900 TIP 436223 11992 6045043 2024-02-23 17:04:09.812 2024-02-23 17:04:09.812 100 FEE 436372 5590 6045044 2024-02-23 17:04:09.812 2024-02-23 17:04:09.812 900 TIP 436372 20246 6045048 2024-02-23 17:04:38.564 2024-02-23 17:04:38.564 1000 FEE 436422 10668 6045056 2024-02-23 17:04:57.821 2024-02-23 17:04:57.821 2100 FEE 436198 2513 6045057 2024-02-23 17:04:57.821 2024-02-23 17:04:57.821 18900 TIP 436198 9332 6045067 2024-02-23 17:05:12.807 2024-02-23 17:05:12.807 2100 FEE 436197 1429 6045068 2024-02-23 17:05:12.807 2024-02-23 17:05:12.807 18900 TIP 436197 8870 6045086 2024-02-23 17:05:46.602 2024-02-23 17:05:46.602 2100 FEE 435596 19126 6045087 2024-02-23 17:05:46.602 2024-02-23 17:05:46.602 18900 TIP 435596 5791 6045098 2024-02-23 17:06:17.373 2024-02-23 17:06:17.373 1000 FEE 436426 19296 6045135 2024-02-23 17:08:43.396 2024-02-23 17:08:43.396 2100 FEE 435564 17226 6045136 2024-02-23 17:08:43.396 2024-02-23 17:08:43.396 18900 TIP 435564 6573 6045161 2024-02-23 17:10:21.005 2024-02-23 17:10:21.005 2100 FEE 435847 759 6045162 2024-02-23 17:10:21.005 2024-02-23 17:10:21.005 18900 TIP 435847 8245 6045168 2024-02-23 17:10:29.974 2024-02-23 17:10:29.974 500 FEE 436409 7877 6045169 2024-02-23 17:10:29.974 2024-02-23 17:10:29.974 4500 TIP 436409 14552 6045219 2024-02-23 17:12:23.797 2024-02-23 17:12:23.797 2100 FEE 436326 1705 6045220 2024-02-23 17:12:23.797 2024-02-23 17:12:23.797 18900 TIP 436326 17707 6045227 2024-02-23 17:12:24.766 2024-02-23 17:12:24.766 2100 FEE 436326 16353 6045228 2024-02-23 17:12:24.766 2024-02-23 17:12:24.766 18900 TIP 436326 18426 6045251 2024-02-23 17:12:56.425 2024-02-23 17:12:56.425 1100 FEE 435847 21339 6045252 2024-02-23 17:12:56.425 2024-02-23 17:12:56.425 9900 TIP 435847 12768 6045298 2024-02-23 17:16:06.103 2024-02-23 17:16:06.103 2300 FEE 436437 17592 6045299 2024-02-23 17:16:06.103 2024-02-23 17:16:06.103 20700 TIP 436437 10007 6045306 2024-02-23 17:16:06.651 2024-02-23 17:16:06.651 2300 FEE 436437 18363 6044333 2024-02-23 15:54:05.738 2024-02-23 15:54:05.738 700 FEE 436224 1438 6044334 2024-02-23 15:54:05.738 2024-02-23 15:54:05.738 6300 TIP 436224 14818 6044342 2024-02-23 15:54:13.147 2024-02-23 15:54:13.147 1000 FEE 436180 21600 6044343 2024-02-23 15:54:13.147 2024-02-23 15:54:13.147 9000 TIP 436180 19138 6044350 2024-02-23 15:54:35.908 2024-02-23 15:54:35.908 1000 FEE 435466 9334 6044351 2024-02-23 15:54:35.908 2024-02-23 15:54:35.908 9000 TIP 435466 11789 6044363 2024-02-23 15:55:04.08 2024-02-23 15:55:04.08 1000 FEE 435560 9333 6044364 2024-02-23 15:55:04.08 2024-02-23 15:55:04.08 9000 TIP 435560 19031 6044371 2024-02-23 15:55:22.57 2024-02-23 15:55:22.57 4000 FEE 436136 9529 6044372 2024-02-23 15:55:22.57 2024-02-23 15:55:22.57 36000 TIP 436136 10490 6044389 2024-02-23 15:56:05.818 2024-02-23 15:56:05.818 1000 FEE 436346 1120 6044390 2024-02-23 15:56:08.597 2024-02-23 15:56:08.597 1000 FEE 435684 20922 6044391 2024-02-23 15:56:08.597 2024-02-23 15:56:08.597 9000 TIP 435684 7899 6044452 2024-02-23 15:59:51.438 2024-02-23 15:59:51.438 1000 FEE 435908 12102 6044453 2024-02-23 15:59:51.438 2024-02-23 15:59:51.438 9000 TIP 435908 21480 6044486 2024-02-23 16:00:42.929 2024-02-23 16:00:42.929 1000 FEE 435882 12188 6044487 2024-02-23 16:00:42.929 2024-02-23 16:00:42.929 9000 TIP 435882 16653 6044491 2024-02-23 16:00:43.805 2024-02-23 16:00:43.805 1000 FEE 435882 21207 6044492 2024-02-23 16:00:43.805 2024-02-23 16:00:43.805 9000 TIP 435882 18518 6044517 2024-02-23 16:03:07.761 2024-02-23 16:03:07.761 21000 FEE 436355 19613 6044523 2024-02-23 16:03:36.984 2024-02-23 16:03:36.984 27000 FEE 436353 13174 6044524 2024-02-23 16:03:36.984 2024-02-23 16:03:36.984 243000 TIP 436353 848 6044543 2024-02-23 16:06:43.298 2024-02-23 16:06:43.298 500 FEE 436024 9276 6044544 2024-02-23 16:06:43.298 2024-02-23 16:06:43.298 4500 TIP 436024 12721 6044561 2024-02-23 16:08:24.644 2024-02-23 16:08:24.644 100 FEE 436359 18378 6044562 2024-02-23 16:08:24.644 2024-02-23 16:08:24.644 900 TIP 436359 4819 6044565 2024-02-23 16:08:25.058 2024-02-23 16:08:25.058 100 FEE 436359 9843 6044566 2024-02-23 16:08:25.058 2024-02-23 16:08:25.058 900 TIP 436359 14731 6044581 2024-02-23 16:08:26.895 2024-02-23 16:08:26.895 100 FEE 436359 9816 6044582 2024-02-23 16:08:26.895 2024-02-23 16:08:26.895 900 TIP 436359 18897 6044585 2024-02-23 16:08:27.372 2024-02-23 16:08:27.372 100 FEE 436359 14465 6044586 2024-02-23 16:08:27.372 2024-02-23 16:08:27.372 900 TIP 436359 1890 6044589 2024-02-23 16:08:28.686 2024-02-23 16:08:28.686 100 FEE 436359 18264 6044590 2024-02-23 16:08:28.686 2024-02-23 16:08:28.686 900 TIP 436359 695 6044627 2024-02-23 16:13:10.904 2024-02-23 16:13:10.904 1000 FEE 436356 1712 6044628 2024-02-23 16:13:10.904 2024-02-23 16:13:10.904 9000 TIP 436356 12808 6044650 2024-02-23 16:13:54.638 2024-02-23 16:13:54.638 2700 FEE 436223 8506 6044651 2024-02-23 16:13:54.638 2024-02-23 16:13:54.638 24300 TIP 436223 18736 6044657 2024-02-23 16:14:48.246 2024-02-23 16:14:48.246 1000 FEE 436371 18460 6044661 2024-02-23 16:16:28.704 2024-02-23 16:16:28.704 2100 FEE 436241 19030 6044662 2024-02-23 16:16:28.704 2024-02-23 16:16:28.704 18900 TIP 436241 7119 6044670 2024-02-23 16:18:50.823 2024-02-23 16:18:50.823 2100 FEE 436281 1425 6044671 2024-02-23 16:18:50.823 2024-02-23 16:18:50.823 18900 TIP 436281 7899 6044688 2024-02-23 16:19:13.945 2024-02-23 16:19:13.945 3000 FEE 436373 12566 6044689 2024-02-23 16:19:13.945 2024-02-23 16:19:13.945 27000 TIP 436373 15094 6044694 2024-02-23 16:19:25.074 2024-02-23 16:19:25.074 1000 FEE 436318 18280 6044695 2024-02-23 16:19:25.074 2024-02-23 16:19:25.074 9000 TIP 436318 20788 6044719 2024-02-23 16:21:02.101 2024-02-23 16:21:02.101 1000 FEE 435907 14381 6044720 2024-02-23 16:21:02.101 2024-02-23 16:21:02.101 9000 TIP 435907 21402 6044736 2024-02-23 16:21:04.705 2024-02-23 16:21:04.705 1000 FEE 435907 21070 6044737 2024-02-23 16:21:04.705 2024-02-23 16:21:04.705 9000 TIP 435907 20577 6044755 2024-02-23 16:23:56.02 2024-02-23 16:23:56.02 100000 FEE 436382 697 6044763 2024-02-23 16:26:10.929 2024-02-23 16:26:10.929 1000 FEE 436040 19494 6044764 2024-02-23 16:26:10.929 2024-02-23 16:26:10.929 9000 TIP 436040 3709 6044824 2024-02-23 16:38:42.233 2024-02-23 16:38:42.233 1000 FEE 436395 10536 6044831 2024-02-23 16:39:12.509 2024-02-23 16:39:12.509 100000 FEE 436397 11298 6044850 2024-02-23 16:44:43.631 2024-02-23 16:44:43.631 1000 FEE 436398 19284 6044851 2024-02-23 16:44:43.631 2024-02-23 16:44:43.631 9000 TIP 436398 814 6044867 2024-02-23 16:45:06.158 2024-02-23 16:45:06.158 10000 FEE 436269 19806 6044868 2024-02-23 16:45:06.158 2024-02-23 16:45:06.158 90000 TIP 436269 19981 6044881 2024-02-23 16:48:34.013 2024-02-23 16:48:34.013 1000 FEE 436152 2156 6044882 2024-02-23 16:48:34.013 2024-02-23 16:48:34.013 9000 TIP 436152 795 6044886 2024-02-23 16:50:06.744 2024-02-23 16:50:06.744 500 FEE 436063 21605 6044887 2024-02-23 16:50:06.744 2024-02-23 16:50:06.744 4500 TIP 436063 652 6044913 2024-02-23 16:55:28.4 2024-02-23 16:55:28.4 210000 FEE 436413 20577 6044914 2024-02-23 16:55:55.489 2024-02-23 16:55:55.489 100 FEE 436323 15594 6044915 2024-02-23 16:55:55.489 2024-02-23 16:55:55.489 900 TIP 436323 7097 6044921 2024-02-23 16:56:04.969 2024-02-23 16:56:04.969 9000 FEE 436323 11716 6044922 2024-02-23 16:56:04.969 2024-02-23 16:56:04.969 81000 TIP 436323 21472 6044927 2024-02-23 16:57:30.36 2024-02-23 16:57:30.36 1100 FEE 436413 14267 6044928 2024-02-23 16:57:30.36 2024-02-23 16:57:30.36 9900 TIP 436413 21166 6044950 2024-02-23 16:59:37.499 2024-02-23 16:59:37.499 3300 FEE 436174 21379 6044951 2024-02-23 16:59:37.499 2024-02-23 16:59:37.499 29700 TIP 436174 6003 6044960 2024-02-23 16:59:59.837 2024-02-23 16:59:59.837 3300 FEE 436062 1425 6044961 2024-02-23 16:59:59.837 2024-02-23 16:59:59.837 29700 TIP 436062 797 6044965 2024-02-23 17:00:13.134 2024-02-23 17:00:13.134 3300 FEE 436047 13843 6044966 2024-02-23 17:00:13.134 2024-02-23 17:00:13.134 29700 TIP 436047 9347 6044967 2024-02-23 17:00:18.555 2024-02-23 17:00:18.555 100 FEE 435669 18727 6044968 2024-02-23 17:00:18.555 2024-02-23 17:00:18.555 900 TIP 435669 8080 6044973 2024-02-23 17:00:43.167 2024-02-23 17:00:43.167 2100 FEE 435951 19018 6044974 2024-02-23 17:00:43.167 2024-02-23 17:00:43.167 18900 TIP 435951 954 6044990 2024-02-23 17:01:23.485 2024-02-23 17:01:23.485 1000 FEE 436415 14705 6045004 2024-02-23 17:02:47.644 2024-02-23 17:02:47.644 3300 FEE 436343 14705 6045005 2024-02-23 17:02:47.644 2024-02-23 17:02:47.644 29700 TIP 436343 18209 6045013 2024-02-23 17:03:19.213 2024-02-23 17:03:19.213 6600 FEE 436115 21058 6045014 2024-02-23 17:03:19.213 2024-02-23 17:03:19.213 59400 TIP 436115 17741 6045032 2024-02-23 17:03:55.868 2024-02-23 17:03:55.868 2100 FEE 436326 2233 6045033 2024-02-23 17:03:55.868 2024-02-23 17:03:55.868 18900 TIP 436326 1983 6045036 2024-02-23 17:03:57.3 2024-02-23 17:03:57.3 1000 FEE 436419 19583 6044338 2024-02-23 15:54:12.617 2024-02-23 15:54:12.617 2600 FEE 436130 1273 6044339 2024-02-23 15:54:12.617 2024-02-23 15:54:12.617 23400 TIP 436130 13927 6044348 2024-02-23 15:54:35.561 2024-02-23 15:54:35.561 1000 FEE 435466 19909 6044349 2024-02-23 15:54:35.561 2024-02-23 15:54:35.561 9000 TIP 435466 1603 6044353 2024-02-23 15:54:44.948 2024-02-23 15:54:44.948 700 FEE 436228 14258 6044354 2024-02-23 15:54:44.948 2024-02-23 15:54:44.948 6300 TIP 436228 14705 6044355 2024-02-23 15:54:57.148 2024-02-23 15:54:57.148 1000 FEE 436343 9365 6044375 2024-02-23 15:55:24.633 2024-02-23 15:55:24.633 4000 FEE 436174 11458 6044376 2024-02-23 15:55:24.633 2024-02-23 15:55:24.633 36000 TIP 436174 21356 6044383 2024-02-23 15:55:47.627 2024-02-23 15:55:47.627 1000 FEE 436345 16543 6044386 2024-02-23 15:55:55.039 2024-02-23 15:55:55.039 1000 FEE 435649 9426 6044387 2024-02-23 15:55:55.039 2024-02-23 15:55:55.039 9000 TIP 435649 9906 6044403 2024-02-23 15:57:11.659 2024-02-23 15:57:11.659 1000 FEE 435447 18994 6044404 2024-02-23 15:57:11.659 2024-02-23 15:57:11.659 9000 TIP 435447 19121 6044417 2024-02-23 15:57:18.187 2024-02-23 15:57:18.187 1000 FEE 435246 11938 6044418 2024-02-23 15:57:18.187 2024-02-23 15:57:18.187 9000 TIP 435246 963 6044424 2024-02-23 15:57:48.334 2024-02-23 15:57:48.334 1000 FEE 435678 20106 6044425 2024-02-23 15:57:48.334 2024-02-23 15:57:48.334 9000 TIP 435678 1723 6044454 2024-02-23 15:59:52.187 2024-02-23 15:59:52.187 1000 FEE 435908 18945 6044455 2024-02-23 15:59:52.187 2024-02-23 15:59:52.187 9000 TIP 435908 12277 6044460 2024-02-23 15:59:58.981 2024-02-23 15:59:58.981 1000 FEE 435882 21062 6044461 2024-02-23 15:59:58.981 2024-02-23 15:59:58.981 9000 TIP 435882 3990 6044497 2024-02-23 16:00:50.624 2024-02-23 16:00:50.624 1000 FEE 436353 16456 6044521 2024-02-23 16:03:32.384 2024-02-23 16:03:32.384 3000 FEE 436353 21216 6044522 2024-02-23 16:03:32.384 2024-02-23 16:03:32.384 27000 TIP 436353 14080 6044527 2024-02-23 16:04:17.642 2024-02-23 16:04:17.642 1000 FEE 436358 18667 6044528 2024-02-23 16:04:55.939 2024-02-23 16:04:55.939 1100 FEE 436241 18363 6044529 2024-02-23 16:04:55.939 2024-02-23 16:04:55.939 9900 TIP 436241 16769 6044537 2024-02-23 16:06:22.401 2024-02-23 16:06:22.401 300 FEE 435908 18330 6044538 2024-02-23 16:06:22.401 2024-02-23 16:06:22.401 2700 TIP 435908 825 6044541 2024-02-23 16:06:31.932 2024-02-23 16:06:31.932 500 FEE 436304 2681 6044542 2024-02-23 16:06:31.932 2024-02-23 16:06:31.932 4500 TIP 436304 16571 6044549 2024-02-23 16:08:09.532 2024-02-23 16:08:09.532 1000 FEE 436360 11165 6044555 2024-02-23 16:08:16.432 2024-02-23 16:08:16.432 100 FEE 436359 21492 6044556 2024-02-23 16:08:16.432 2024-02-23 16:08:16.432 900 TIP 436359 4304 6044591 2024-02-23 16:08:28.884 2024-02-23 16:08:28.884 100 FEE 436359 5308 6044592 2024-02-23 16:08:28.884 2024-02-23 16:08:28.884 900 TIP 436359 977 6044596 2024-02-23 16:08:42.868 2024-02-23 16:08:42.868 10000 FEE 436363 8133 6044605 2024-02-23 16:10:25.274 2024-02-23 16:10:25.274 1000 FEE 436366 697 6044631 2024-02-23 16:13:11.276 2024-02-23 16:13:11.276 1000 FEE 436356 20220 6044632 2024-02-23 16:13:11.276 2024-02-23 16:13:11.276 9000 TIP 436356 20614 6044637 2024-02-23 16:13:22.881 2024-02-23 16:13:22.881 3200 FEE 436334 13365 6044638 2024-02-23 16:13:22.881 2024-02-23 16:13:22.881 28800 TIP 436334 15045 6044647 2024-02-23 16:13:52.256 2024-02-23 16:13:52.256 1000 FEE 436370 9611 6044680 2024-02-23 16:19:08.532 2024-02-23 16:19:08.532 1000 FEE 436362 1483 6044681 2024-02-23 16:19:08.532 2024-02-23 16:19:08.532 9000 TIP 436362 2620 6044696 2024-02-23 16:19:25.249 2024-02-23 16:19:25.249 1000 FEE 436318 1720 6044697 2024-02-23 16:19:25.249 2024-02-23 16:19:25.249 9000 TIP 436318 11898 6044715 2024-02-23 16:21:00.728 2024-02-23 16:21:00.728 2000 FEE 435907 913 6044716 2024-02-23 16:21:00.728 2024-02-23 16:21:00.728 18000 TIP 435907 20258 6044746 2024-02-23 16:21:39.967 2024-02-23 16:21:39.967 1000 FEE 436379 19930 6044753 2024-02-23 16:23:46.279 2024-02-23 16:23:46.279 4000 FEE 436326 2077 6044754 2024-02-23 16:23:46.279 2024-02-23 16:23:46.279 36000 TIP 436326 21067 6044768 2024-02-23 16:27:24.786 2024-02-23 16:27:24.786 1000 FEE 436381 16649 6044769 2024-02-23 16:27:24.786 2024-02-23 16:27:24.786 9000 TIP 436381 19857 6044798 2024-02-23 16:34:13.357 2024-02-23 16:34:13.357 1000 POLL 436323 1006 6044799 2024-02-23 16:34:19.601 2024-02-23 16:34:19.601 300 FEE 436241 18271 6044800 2024-02-23 16:34:19.601 2024-02-23 16:34:19.601 2700 TIP 436241 733 6044803 2024-02-23 16:35:47.819 2024-02-23 16:35:47.819 1000 FEE 436391 19843 6044815 2024-02-23 16:36:08.487 2024-02-23 16:36:08.487 1000 FEE 436337 7766 6044816 2024-02-23 16:36:08.487 2024-02-23 16:36:08.487 9000 TIP 436337 21281 6044836 2024-02-23 16:39:37.713 2024-02-23 16:39:37.713 1000 FEE 436398 19857 6044862 2024-02-23 16:44:47.149 2024-02-23 16:44:47.149 1000 FEE 436402 5694 6044897 2024-02-23 16:52:38.2 2024-02-23 16:52:38.2 1000 FEE 436411 11450 6044907 2024-02-23 16:53:43.223 2024-02-23 16:53:43.223 3000 FEE 436411 1720 6044908 2024-02-23 16:53:43.223 2024-02-23 16:53:43.223 27000 TIP 436411 14080 6044910 2024-02-23 16:54:07.177 2024-02-23 16:54:07.177 500 FEE 436281 20564 6044911 2024-02-23 16:54:07.177 2024-02-23 16:54:07.177 4500 TIP 436281 19995 6044932 2024-02-23 16:57:49.7 2024-02-23 16:57:49.7 900 FEE 436377 19398 6044933 2024-02-23 16:57:49.7 2024-02-23 16:57:49.7 8100 TIP 436377 21088 6044934 2024-02-23 16:57:54.229 2024-02-23 16:57:54.229 100 FEE 436393 1046 6044935 2024-02-23 16:57:54.229 2024-02-23 16:57:54.229 900 TIP 436393 18526 6044958 2024-02-23 16:59:51.89 2024-02-23 16:59:51.89 3300 FEE 436258 8985 6044959 2024-02-23 16:59:51.89 2024-02-23 16:59:51.89 29700 TIP 436258 20302 6044975 2024-02-23 17:01:01.541 2024-02-23 17:01:01.541 2100 FEE 436248 4166 6044976 2024-02-23 17:01:01.541 2024-02-23 17:01:01.541 18900 TIP 436248 6229 6044994 2024-02-23 17:02:00.104 2024-02-23 17:02:00.104 2100 FEE 435962 1960 6044995 2024-02-23 17:02:00.104 2024-02-23 17:02:00.104 18900 TIP 435962 14990 6045017 2024-02-23 17:03:24.861 2024-02-23 17:03:24.861 2100 FEE 436364 16177 6045018 2024-02-23 17:03:24.861 2024-02-23 17:03:24.861 18900 TIP 436364 10536 6045026 2024-02-23 17:03:51.009 2024-02-23 17:03:51.009 2100 FEE 436342 15119 6045027 2024-02-23 17:03:51.009 2024-02-23 17:03:51.009 18900 TIP 436342 738 6045030 2024-02-23 17:03:54.754 2024-02-23 17:03:54.754 2100 FEE 436323 20162 6045031 2024-02-23 17:03:54.754 2024-02-23 17:03:54.754 18900 TIP 436323 3461 6045042 2024-02-23 17:04:07.462 2024-02-23 17:04:07.462 21000 FEE 436420 12289 6045045 2024-02-23 17:04:27.707 2024-02-23 17:04:27.707 1000 FEE 436421 1244 6045058 2024-02-23 17:04:58.379 2024-02-23 17:04:58.379 2100 FEE 436165 4798 6045059 2024-02-23 17:04:58.379 2024-02-23 17:04:58.379 18900 TIP 436165 18751 6045094 2024-02-23 17:06:15.717 2024-02-23 17:06:15.717 2100 FEE 436419 15703 6045095 2024-02-23 17:06:15.717 2024-02-23 17:06:15.717 18900 TIP 436419 13246 6045099 2024-02-23 17:06:31.573 2024-02-23 17:06:31.573 4000 FEE 436400 18124 6045100 2024-02-23 17:06:31.573 2024-02-23 17:06:31.573 36000 TIP 436400 9820 6045101 2024-02-23 17:06:38.063 2024-02-23 17:06:38.063 2100 FEE 436385 886 6045102 2024-02-23 17:06:38.063 2024-02-23 17:06:38.063 18900 TIP 436385 17519 6045103 2024-02-23 17:07:03.264 2024-02-23 17:07:03.264 100 FEE 436244 13249 6045104 2024-02-23 17:07:03.264 2024-02-23 17:07:03.264 900 TIP 436244 1124 6045119 2024-02-23 17:08:06.962 2024-02-23 17:08:06.962 100000 FEE 436429 20479 6045127 2024-02-23 17:08:20.716 2024-02-23 17:08:20.716 2100 FEE 436207 19981 6045128 2024-02-23 17:08:20.716 2024-02-23 17:08:20.716 18900 TIP 436207 21416 6045152 2024-02-23 17:10:13.78 2024-02-23 17:10:13.78 2100 FEE 436413 1631 6045153 2024-02-23 17:10:13.78 2024-02-23 17:10:13.78 18900 TIP 436413 21374 6044420 2024-02-23 15:57:40.925 2024-02-23 15:57:40.925 1000 FEE 435635 16665 6044421 2024-02-23 15:57:40.925 2024-02-23 15:57:40.925 9000 TIP 435635 17797 6044422 2024-02-23 15:57:41.389 2024-02-23 15:57:41.389 1000 FEE 435635 20152 6044423 2024-02-23 15:57:41.389 2024-02-23 15:57:41.389 9000 TIP 435635 3979 6044458 2024-02-23 15:59:58.638 2024-02-23 15:59:58.638 1000 FEE 435882 18314 6044459 2024-02-23 15:59:58.638 2024-02-23 15:59:58.638 9000 TIP 435882 7125 6044469 2024-02-23 16:00:03.693 2024-02-23 16:00:03.693 1000 FEE 435882 1650 6044470 2024-02-23 16:00:03.693 2024-02-23 16:00:03.693 9000 TIP 435882 1030 6044471 2024-02-23 16:00:04.014 2024-02-23 16:00:04.014 1000 FEE 435882 20340 6044472 2024-02-23 16:00:04.014 2024-02-23 16:00:04.014 9000 TIP 435882 1433 6044475 2024-02-23 16:00:04.676 2024-02-23 16:00:04.676 1000 FEE 435882 7869 6044476 2024-02-23 16:00:04.676 2024-02-23 16:00:04.676 9000 TIP 435882 17147 6044499 2024-02-23 16:01:32.17 2024-02-23 16:01:32.17 15000 FEE 435906 13903 6044500 2024-02-23 16:01:32.17 2024-02-23 16:01:32.17 135000 TIP 435906 8284 6044503 2024-02-23 16:01:48.597 2024-02-23 16:01:48.597 900 FEE 436345 19524 6044504 2024-02-23 16:01:48.597 2024-02-23 16:01:48.597 8100 TIP 436345 21254 6044506 2024-02-23 16:02:03.813 2024-02-23 16:02:03.813 100000 DONT_LIKE_THIS 436348 18380 6044553 2024-02-23 16:08:16.035 2024-02-23 16:08:16.035 100 FEE 436359 21555 6044554 2024-02-23 16:08:16.035 2024-02-23 16:08:16.035 900 TIP 436359 20310 6044557 2024-02-23 16:08:16.647 2024-02-23 16:08:16.647 100 FEE 436359 1480 6044558 2024-02-23 16:08:16.647 2024-02-23 16:08:16.647 900 TIP 436359 7583 6044559 2024-02-23 16:08:16.876 2024-02-23 16:08:16.876 100 FEE 436359 697 6044560 2024-02-23 16:08:16.876 2024-02-23 16:08:16.876 900 TIP 436359 10554 6044575 2024-02-23 16:08:26.048 2024-02-23 16:08:26.048 100 FEE 436359 16598 6044576 2024-02-23 16:08:26.048 2024-02-23 16:08:26.048 900 TIP 436359 17011 6044593 2024-02-23 16:08:29.066 2024-02-23 16:08:29.066 100000 FEE 436362 8287 6044597 2024-02-23 16:08:55.745 2024-02-23 16:08:55.745 2600 FEE 436197 1480 6044598 2024-02-23 16:08:55.745 2024-02-23 16:08:55.745 23400 TIP 436197 17171 6044617 2024-02-23 16:12:34.836 2024-02-23 16:12:34.836 2100 FEE 436005 802 6044618 2024-02-23 16:12:34.836 2024-02-23 16:12:34.836 18900 TIP 436005 10493 6044635 2024-02-23 16:13:19.448 2024-02-23 16:13:19.448 2100 FEE 436343 902 6044636 2024-02-23 16:13:19.448 2024-02-23 16:13:19.448 18900 TIP 436343 19863 6044639 2024-02-23 16:13:38.298 2024-02-23 16:13:38.298 1000 FEE 436362 4395 6044640 2024-02-23 16:13:38.298 2024-02-23 16:13:38.298 9000 TIP 436362 20972 6044643 2024-02-23 16:13:39.145 2024-02-23 16:13:39.145 1000 FEE 436362 16670 6044644 2024-02-23 16:13:39.145 2024-02-23 16:13:39.145 9000 TIP 436362 19777 6044648 2024-02-23 16:13:54.452 2024-02-23 16:13:54.452 2700 FEE 436223 8269 6044649 2024-02-23 16:13:54.452 2024-02-23 16:13:54.452 24300 TIP 436223 19309 6044678 2024-02-23 16:19:08.219 2024-02-23 16:19:08.219 1000 FEE 436362 16532 6044679 2024-02-23 16:19:08.219 2024-02-23 16:19:08.219 9000 TIP 436362 14857 6044686 2024-02-23 16:19:11.214 2024-02-23 16:19:11.214 200 FEE 436363 4167 6044687 2024-02-23 16:19:11.214 2024-02-23 16:19:11.214 1800 TIP 436363 11992 6044704 2024-02-23 16:19:27.965 2024-02-23 16:19:27.965 1000 FEE 436376 8505 6044713 2024-02-23 16:20:56.092 2024-02-23 16:20:56.092 2100 FEE 436246 2829 6044714 2024-02-23 16:20:56.092 2024-02-23 16:20:56.092 18900 TIP 436246 16542 6044770 2024-02-23 16:27:25.533 2024-02-23 16:27:25.533 1000 FEE 436381 2711 6044771 2024-02-23 16:27:25.533 2024-02-23 16:27:25.533 9000 TIP 436381 10060 6044774 2024-02-23 16:28:23.174 2024-02-23 16:28:23.174 2100 FEE 436355 2961 6044775 2024-02-23 16:28:23.174 2024-02-23 16:28:23.174 18900 TIP 436355 18426 6044794 2024-02-23 16:33:33.059 2024-02-23 16:33:33.059 1000 FEE 436389 1354 6044808 2024-02-23 16:36:02.466 2024-02-23 16:36:02.466 1000 FEE 436273 21079 6044809 2024-02-23 16:36:02.466 2024-02-23 16:36:02.466 9000 TIP 436273 661 6044817 2024-02-23 16:36:50.966 2024-02-23 16:36:50.966 1000 FEE 436392 18265 6044825 2024-02-23 16:38:48.444 2024-02-23 16:38:48.444 1000 FEE 436343 16594 6044826 2024-02-23 16:38:48.444 2024-02-23 16:38:48.444 9000 TIP 436343 19553 6044834 2024-02-23 16:39:15.75 2024-02-23 16:39:15.75 1000 FEE 436275 20581 6044835 2024-02-23 16:39:15.75 2024-02-23 16:39:15.75 9000 TIP 436275 17673 6044847 2024-02-23 16:44:15.093 2024-02-23 16:44:15.093 1000 FEE 436401 1316 6044854 2024-02-23 16:44:44.439 2024-02-23 16:44:44.439 1000 FEE 436398 16724 6044855 2024-02-23 16:44:44.439 2024-02-23 16:44:44.439 9000 TIP 436398 876 6044884 2024-02-23 16:49:57.39 2024-02-23 16:49:57.39 1000 FEE 436408 11898 6044901 2024-02-23 16:53:24.785 2024-02-23 16:53:24.785 2100 FEE 436076 21514 6044902 2024-02-23 16:53:24.785 2024-02-23 16:53:24.785 18900 TIP 436076 16424 6044905 2024-02-23 16:53:25.129 2024-02-23 16:53:25.129 10000 FEE 436276 21373 6044906 2024-02-23 16:53:25.129 2024-02-23 16:53:25.129 90000 TIP 436276 782 6044938 2024-02-23 16:57:58.788 2024-02-23 16:57:58.788 100 FEE 436369 7903 6044939 2024-02-23 16:57:58.788 2024-02-23 16:57:58.788 900 TIP 436369 20979 6044956 2024-02-23 16:59:47.018 2024-02-23 16:59:47.018 3300 FEE 436136 5637 6044957 2024-02-23 16:59:47.018 2024-02-23 16:59:47.018 29700 TIP 436136 16970 6044962 2024-02-23 17:00:00.806 2024-02-23 17:00:00.806 3300 FEE 436062 4313 6044963 2024-02-23 17:00:00.806 2024-02-23 17:00:00.806 29700 TIP 436062 1959 6044971 2024-02-23 17:00:42.584 2024-02-23 17:00:42.584 2100 FEE 435950 1236 6044972 2024-02-23 17:00:42.584 2024-02-23 17:00:42.584 18900 TIP 435950 19527 6044980 2024-02-23 17:01:05.389 2024-02-23 17:01:05.389 3300 FEE 435905 14370 6044981 2024-02-23 17:01:05.389 2024-02-23 17:01:05.389 29700 TIP 435905 18809 6044982 2024-02-23 17:01:05.817 2024-02-23 17:01:05.817 3300 FEE 435905 19381 6044983 2024-02-23 17:01:05.817 2024-02-23 17:01:05.817 29700 TIP 435905 768 6045065 2024-02-23 17:05:12.471 2024-02-23 17:05:12.471 100 FEE 436305 21387 6045066 2024-02-23 17:05:12.471 2024-02-23 17:05:12.471 900 TIP 436305 10291 6045071 2024-02-23 17:05:19.41 2024-02-23 17:05:19.41 2100 FEE 436158 21379 6045072 2024-02-23 17:05:19.41 2024-02-23 17:05:19.41 18900 TIP 436158 2328 6045090 2024-02-23 17:05:51.132 2024-02-23 17:05:51.132 1000 FEE 436425 19770 6045107 2024-02-23 17:07:25.921 2024-02-23 17:07:25.921 8300 FEE 436425 10352 6045108 2024-02-23 17:07:25.921 2024-02-23 17:07:25.921 74700 TIP 436425 20153 6045113 2024-02-23 17:07:46.121 2024-02-23 17:07:46.121 1000 FEE 436428 6164 6045138 2024-02-23 17:09:11.98 2024-02-23 17:09:11.98 8300 FEE 436417 19322 6045139 2024-02-23 17:09:11.98 2024-02-23 17:09:11.98 74700 TIP 436417 19154 6045155 2024-02-23 17:10:20.595 2024-02-23 17:10:20.595 2100 FEE 435847 2342 6045156 2024-02-23 17:10:20.595 2024-02-23 17:10:20.595 18900 TIP 435847 18660 6045167 2024-02-23 17:10:23.254 2024-02-23 17:10:23.254 1000 FEE 436433 1814 6045170 2024-02-23 17:10:32.71 2024-02-23 17:10:32.71 2100 FEE 436364 992 6045171 2024-02-23 17:10:32.71 2024-02-23 17:10:32.71 18900 TIP 436364 2204 6045204 2024-02-23 17:11:37.302 2024-02-23 17:11:37.302 1000 FEE 436435 4378 6045217 2024-02-23 17:12:23.488 2024-02-23 17:12:23.488 2100 FEE 436326 9969 6045218 2024-02-23 17:12:23.488 2024-02-23 17:12:23.488 18900 TIP 436326 712 6045237 2024-02-23 17:12:28.38 2024-02-23 17:12:28.38 2100 FEE 436326 9705 6045238 2024-02-23 17:12:28.38 2024-02-23 17:12:28.38 18900 TIP 436326 12562 6045239 2024-02-23 17:12:39.548 2024-02-23 17:12:39.548 2100 FEE 436197 2620 6045240 2024-02-23 17:12:39.548 2024-02-23 17:12:39.548 18900 TIP 436197 14905 6045249 2024-02-23 17:12:42.028 2024-02-23 17:12:42.028 1100 FEE 436258 12516 6045250 2024-02-23 17:12:42.028 2024-02-23 17:12:42.028 9900 TIP 436258 2367 6045270 2024-02-23 17:15:38.293 2024-02-23 17:15:38.293 1000 FEE 436437 20326 6045273 2024-02-23 17:16:03.059 2024-02-23 17:16:03.059 2300 FEE 436437 4043 6045274 2024-02-23 17:16:03.059 2024-02-23 17:16:03.059 20700 TIP 436437 19394 6044434 2024-02-23 15:58:20.742 2024-02-23 15:58:20.742 3300 FEE 436093 1564 6044435 2024-02-23 15:58:20.742 2024-02-23 15:58:20.742 29700 TIP 436093 18119 6044449 2024-02-23 15:59:34.792 2024-02-23 15:59:34.792 1000 FEE 436351 11491 6044462 2024-02-23 15:59:59.368 2024-02-23 15:59:59.368 1000 FEE 435882 11329 6044463 2024-02-23 15:59:59.368 2024-02-23 15:59:59.368 9000 TIP 435882 4115 6044479 2024-02-23 16:00:05.433 2024-02-23 16:00:05.433 1000 FEE 435882 1209 6044480 2024-02-23 16:00:05.433 2024-02-23 16:00:05.433 9000 TIP 435882 1881 6044525 2024-02-23 16:03:37.395 2024-02-23 16:03:37.395 1000 FEE 436357 13055 6044567 2024-02-23 16:08:25.169 2024-02-23 16:08:25.169 100 FEE 436359 18832 6044568 2024-02-23 16:08:25.169 2024-02-23 16:08:25.169 900 TIP 436359 960 6044569 2024-02-23 16:08:25.349 2024-02-23 16:08:25.349 100 FEE 436359 19890 6044570 2024-02-23 16:08:25.349 2024-02-23 16:08:25.349 900 TIP 436359 20560 6044603 2024-02-23 16:09:54.887 2024-02-23 16:09:54.887 1000 FEE 436365 19809 6044615 2024-02-23 16:12:20.837 2024-02-23 16:12:20.837 300 FEE 436365 882 6044616 2024-02-23 16:12:20.837 2024-02-23 16:12:20.837 2700 TIP 436365 14503 6044621 2024-02-23 16:13:00.94 2024-02-23 16:13:00.94 1000 FEE 436369 18772 6044633 2024-02-23 16:13:11.586 2024-02-23 16:13:11.586 1000 FEE 436356 19581 6044634 2024-02-23 16:13:11.586 2024-02-23 16:13:11.586 9000 TIP 436356 12959 6044658 2024-02-23 16:14:53.14 2024-02-23 16:14:53.14 1000 FEE 436372 1114 6044721 2024-02-23 16:21:02.589 2024-02-23 16:21:02.589 1000 FEE 435907 3990 6044722 2024-02-23 16:21:02.589 2024-02-23 16:21:02.589 9000 TIP 435907 9378 6044732 2024-02-23 16:21:03.954 2024-02-23 16:21:03.954 1000 FEE 435907 9833 6044733 2024-02-23 16:21:03.954 2024-02-23 16:21:03.954 9000 TIP 435907 16638 6044740 2024-02-23 16:21:05.43 2024-02-23 16:21:05.43 1000 FEE 435907 15119 6044741 2024-02-23 16:21:05.43 2024-02-23 16:21:05.43 9000 TIP 435907 21398 6044744 2024-02-23 16:21:26.608 2024-02-23 16:21:26.608 1000 FEE 436375 5865 6044745 2024-02-23 16:21:26.608 2024-02-23 16:21:26.608 9000 TIP 436375 21547 6044748 2024-02-23 16:21:52.359 2024-02-23 16:21:52.359 1000 FEE 436381 5728 6044778 2024-02-23 16:30:06.44 2024-02-23 16:30:06.44 1000 FEE 436386 21116 6044779 2024-02-23 16:30:06.44 2024-02-23 16:30:06.44 9000 TIP 436386 19132 6044780 2024-02-23 16:30:24.762 2024-02-23 16:30:24.762 2100 FEE 436376 8037 6044781 2024-02-23 16:30:24.762 2024-02-23 16:30:24.762 18900 TIP 436376 897 6044802 2024-02-23 16:35:28.094 2024-02-23 16:35:28.094 98000 FEE 436390 21040 6044827 2024-02-23 16:38:48.935 2024-02-23 16:38:48.935 1000 FEE 436343 10102 6044828 2024-02-23 16:38:48.935 2024-02-23 16:38:48.935 9000 TIP 436343 18409 6044830 2024-02-23 16:39:07.007 2024-02-23 16:39:07.007 1000 FEE 436396 10719 6044841 2024-02-23 16:42:11.544 2024-02-23 16:42:11.544 100000 FEE 436400 8954 6044869 2024-02-23 16:46:01.506 2024-02-23 16:46:01.506 1000 FEE 436404 18524 6044875 2024-02-23 16:47:19.27 2024-02-23 16:47:19.27 5000 FEE 436404 19398 6044876 2024-02-23 16:47:19.27 2024-02-23 16:47:19.27 45000 TIP 436404 21374 6044888 2024-02-23 16:50:14.144 2024-02-23 16:50:14.144 1000 FEE 436330 6260 6044889 2024-02-23 16:50:14.144 2024-02-23 16:50:14.144 9000 TIP 436330 21104 6044946 2024-02-23 16:59:33.341 2024-02-23 16:59:33.341 3300 FEE 436241 19263 6044947 2024-02-23 16:59:33.341 2024-02-23 16:59:33.341 29700 TIP 436241 21238 6044978 2024-02-23 17:01:05.246 2024-02-23 17:01:05.246 2100 FEE 436099 2596 6044979 2024-02-23 17:01:05.246 2024-02-23 17:01:05.246 18900 TIP 436099 16350 6044984 2024-02-23 17:01:05.986 2024-02-23 17:01:05.986 3300 FEE 435905 20327 6044985 2024-02-23 17:01:05.986 2024-02-23 17:01:05.986 29700 TIP 435905 21067 6044986 2024-02-23 17:01:08.069 2024-02-23 17:01:08.069 3300 FEE 435905 21091 6044987 2024-02-23 17:01:08.069 2024-02-23 17:01:08.069 29700 TIP 435905 5175 6044993 2024-02-23 17:01:52.536 2024-02-23 17:01:52.536 1000 FEE 436416 18819 6045022 2024-02-23 17:03:39.431 2024-02-23 17:03:39.431 2100 FEE 436366 8541 6045023 2024-02-23 17:03:39.431 2024-02-23 17:03:39.431 18900 TIP 436366 12768 6045034 2024-02-23 17:03:56.119 2024-02-23 17:03:56.119 100 FEE 436384 16950 6045035 2024-02-23 17:03:56.119 2024-02-23 17:03:56.119 900 TIP 436384 7773 6045075 2024-02-23 17:05:22.736 2024-02-23 17:05:22.736 2100 FEE 436174 14663 6045076 2024-02-23 17:05:22.736 2024-02-23 17:05:22.736 18900 TIP 436174 2061 6045081 2024-02-23 17:05:27.001 2024-02-23 17:05:27.001 2100 FEE 435328 20963 6045082 2024-02-23 17:05:27.001 2024-02-23 17:05:27.001 18900 TIP 435328 20481 6045109 2024-02-23 17:07:33.862 2024-02-23 17:07:33.862 100 FEE 436243 10554 6045110 2024-02-23 17:07:33.862 2024-02-23 17:07:33.862 900 TIP 436243 18231 6045131 2024-02-23 17:08:38.494 2024-02-23 17:08:38.494 2100 FEE 435690 9 6045132 2024-02-23 17:08:38.494 2024-02-23 17:08:38.494 18900 TIP 435690 4776 6045140 2024-02-23 17:09:12.128 2024-02-23 17:09:12.128 8300 FEE 436417 1692 6045141 2024-02-23 17:09:12.128 2024-02-23 17:09:12.128 74700 TIP 436417 17891 6045148 2024-02-23 17:09:33.653 2024-02-23 17:09:33.653 10000 FEE 436431 4624 6045182 2024-02-23 17:10:58.312 2024-02-23 17:10:58.312 2100 FEE 435954 19037 6045183 2024-02-23 17:10:58.312 2024-02-23 17:10:58.312 18900 TIP 435954 8376 6045243 2024-02-23 17:12:40.428 2024-02-23 17:12:40.428 2100 FEE 436197 5308 6045244 2024-02-23 17:12:40.428 2024-02-23 17:12:40.428 18900 TIP 436197 696 6045254 2024-02-23 17:13:19.888 2024-02-23 17:13:19.888 2100 FEE 435732 18344 6045255 2024-02-23 17:13:19.888 2024-02-23 17:13:19.888 18900 TIP 435732 1465 6045281 2024-02-23 17:16:03.498 2024-02-23 17:16:03.498 2300 FEE 436437 18449 6045282 2024-02-23 17:16:03.498 2024-02-23 17:16:03.498 20700 TIP 436437 9 6045288 2024-02-23 17:16:04.419 2024-02-23 17:16:04.419 2300 FEE 436437 12736 6045289 2024-02-23 17:16:04.419 2024-02-23 17:16:04.419 20700 TIP 436437 18557 6045312 2024-02-23 17:16:07.05 2024-02-23 17:16:07.05 2300 FEE 436437 21088 6045313 2024-02-23 17:16:07.05 2024-02-23 17:16:07.05 20700 TIP 436437 20778 6045332 2024-02-23 17:16:09.11 2024-02-23 17:16:09.11 2300 FEE 436437 19117 6045333 2024-02-23 17:16:09.11 2024-02-23 17:16:09.11 20700 TIP 436437 17237 6045403 2024-02-23 17:18:43.635 2024-02-23 17:18:43.635 2300 FEE 436437 1142 6045404 2024-02-23 17:18:43.635 2024-02-23 17:18:43.635 20700 TIP 436437 18280 6045425 2024-02-23 17:18:45.102 2024-02-23 17:18:45.102 2300 FEE 436437 19967 6045426 2024-02-23 17:18:45.102 2024-02-23 17:18:45.102 20700 TIP 436437 4102 6045431 2024-02-23 17:18:45.503 2024-02-23 17:18:45.503 2300 FEE 436437 12946 6045432 2024-02-23 17:18:45.503 2024-02-23 17:18:45.503 20700 TIP 436437 16505 6045435 2024-02-23 17:18:45.786 2024-02-23 17:18:45.786 2300 FEE 436437 11192 6045436 2024-02-23 17:18:45.786 2024-02-23 17:18:45.786 20700 TIP 436437 19174 6045445 2024-02-23 17:18:46.503 2024-02-23 17:18:46.503 2300 FEE 436437 19193 6045446 2024-02-23 17:18:46.503 2024-02-23 17:18:46.503 20700 TIP 436437 664 6045447 2024-02-23 17:18:46.653 2024-02-23 17:18:46.653 2300 FEE 436437 17535 6045448 2024-02-23 17:18:46.653 2024-02-23 17:18:46.653 20700 TIP 436437 21103 6045487 2024-02-23 17:20:38.342 2024-02-23 17:20:38.342 100 FEE 435751 18862 6045488 2024-02-23 17:20:38.342 2024-02-23 17:20:38.342 900 TIP 435751 7553 6045489 2024-02-23 17:20:38.912 2024-02-23 17:20:38.912 100 FEE 435751 9150 6045490 2024-02-23 17:20:38.912 2024-02-23 17:20:38.912 900 TIP 435751 18119 6045563 2024-02-23 17:24:48.299 2024-02-23 17:24:48.299 1000 FEE 436458 14950 6045590 2024-02-23 17:28:22.219 2024-02-23 17:28:22.219 800 FEE 435711 2361 6045591 2024-02-23 17:28:22.219 2024-02-23 17:28:22.219 7200 TIP 435711 16754 6045609 2024-02-23 17:29:05.213 2024-02-23 17:29:05.213 1000 FEE 436336 21291 6045610 2024-02-23 17:29:05.213 2024-02-23 17:29:05.213 9000 TIP 436336 2529 6044546 2024-02-23 16:07:58.628 2024-02-23 16:07:58.628 1100 FEE 436040 17523 6044547 2024-02-23 16:07:58.628 2024-02-23 16:07:58.628 9900 TIP 436040 18690 6044583 2024-02-23 16:08:27.097 2024-02-23 16:08:27.097 100 FEE 436359 12708 6044584 2024-02-23 16:08:27.097 2024-02-23 16:08:27.097 900 TIP 436359 1105 6044609 2024-02-23 16:10:59.438 2024-02-23 16:10:59.438 1000 POLL 436323 17455 6044611 2024-02-23 16:11:39.532 2024-02-23 16:11:39.532 1000 FEE 436368 5085 6044619 2024-02-23 16:12:58.775 2024-02-23 16:12:58.775 2100 FEE 436290 21314 6044620 2024-02-23 16:12:58.775 2024-02-23 16:12:58.775 18900 TIP 436290 1549 6044629 2024-02-23 16:13:11.015 2024-02-23 16:13:11.015 1000 FEE 436356 1785 6044630 2024-02-23 16:13:11.015 2024-02-23 16:13:11.015 9000 TIP 436356 16948 6044652 2024-02-23 16:13:55.314 2024-02-23 16:13:55.314 2700 FEE 436223 15146 6044653 2024-02-23 16:13:55.314 2024-02-23 16:13:55.314 24300 TIP 436223 1474 6044682 2024-02-23 16:19:09.572 2024-02-23 16:19:09.572 1000 FEE 436362 17217 6044683 2024-02-23 16:19:09.572 2024-02-23 16:19:09.572 9000 TIP 436362 5904 6044690 2024-02-23 16:19:14.548 2024-02-23 16:19:14.548 27000 FEE 436373 13217 6044691 2024-02-23 16:19:14.548 2024-02-23 16:19:14.548 243000 TIP 436373 17827 6044692 2024-02-23 16:19:24.35 2024-02-23 16:19:24.35 5000 FEE 436243 11395 6044693 2024-02-23 16:19:24.35 2024-02-23 16:19:24.35 45000 TIP 436243 2188 6044700 2024-02-23 16:19:25.665 2024-02-23 16:19:25.665 1000 FEE 436318 13878 6044701 2024-02-23 16:19:25.665 2024-02-23 16:19:25.665 9000 TIP 436318 18727 6044707 2024-02-23 16:20:06.407 2024-02-23 16:20:06.407 1000 FEE 436377 19309 6044708 2024-02-23 16:20:09.601 2024-02-23 16:20:09.601 1000 FEE 436369 20871 6044709 2024-02-23 16:20:09.601 2024-02-23 16:20:09.601 9000 TIP 436369 635 6044710 2024-02-23 16:20:09.797 2024-02-23 16:20:09.797 1000 FEE 436369 20924 6044711 2024-02-23 16:20:09.797 2024-02-23 16:20:09.797 9000 TIP 436369 21605 6044747 2024-02-23 16:21:46.014 2024-02-23 16:21:46.014 1000 FEE 436380 19613 6044765 2024-02-23 16:27:01.981 2024-02-23 16:27:01.981 21000 FEE 436385 12188 6044767 2024-02-23 16:27:22.624 2024-02-23 16:27:22.624 1000 FEE 436386 18816 6044787 2024-02-23 16:31:27.44 2024-02-23 16:31:27.44 3000 FEE 436115 4973 6044788 2024-02-23 16:31:27.44 2024-02-23 16:31:27.44 27000 TIP 436115 787 6044791 2024-02-23 16:32:37.12 2024-02-23 16:32:37.12 300 FEE 436227 19121 6044792 2024-02-23 16:32:37.12 2024-02-23 16:32:37.12 2700 TIP 436227 694 6044795 2024-02-23 16:34:03.076 2024-02-23 16:34:03.076 700 FEE 436364 5112 6044796 2024-02-23 16:34:03.076 2024-02-23 16:34:03.076 6300 TIP 436364 21342 6044806 2024-02-23 16:36:02.07 2024-02-23 16:36:02.07 1000 FEE 436273 20156 6044807 2024-02-23 16:36:02.07 2024-02-23 16:36:02.07 9000 TIP 436273 1576 6044839 2024-02-23 16:41:28.768 2024-02-23 16:41:28.768 1000 FEE 436399 17275 6044842 2024-02-23 16:42:30.67 2024-02-23 16:42:30.67 1000 FEE 436326 11314 6044843 2024-02-23 16:42:30.67 2024-02-23 16:42:30.67 9000 TIP 436326 14905 6044848 2024-02-23 16:44:28.68 2024-02-23 16:44:28.68 11700 FEE 436281 11288 6044849 2024-02-23 16:44:28.68 2024-02-23 16:44:28.68 105300 TIP 436281 17082 6044864 2024-02-23 16:44:57.471 2024-02-23 16:44:57.471 3000 FEE 436401 14503 6044865 2024-02-23 16:44:57.471 2024-02-23 16:44:57.471 27000 TIP 436401 15103 6044870 2024-02-23 16:46:02.21 2024-02-23 16:46:02.21 5000 FEE 436405 9341 6044877 2024-02-23 16:47:32.743 2024-02-23 16:47:32.743 3000 FEE 436395 19909 6044878 2024-02-23 16:47:32.743 2024-02-23 16:47:32.743 27000 TIP 436395 21620 6044890 2024-02-23 16:50:28.943 2024-02-23 16:50:28.943 1000 FEE 436409 1738 6044923 2024-02-23 16:56:10.7 2024-02-23 16:56:10.7 21100 FEE 435905 5495 6044924 2024-02-23 16:56:10.7 2024-02-23 16:56:10.7 189900 TIP 435905 18378 6044929 2024-02-23 16:57:45.232 2024-02-23 16:57:45.232 1000 FEE 436414 21090 6044930 2024-02-23 16:57:49.457 2024-02-23 16:57:49.457 100 FEE 436377 21329 6044931 2024-02-23 16:57:49.457 2024-02-23 16:57:49.457 900 TIP 436377 10280 6044940 2024-02-23 16:57:58.981 2024-02-23 16:57:58.981 900 FEE 436369 694 6044941 2024-02-23 16:57:58.981 2024-02-23 16:57:58.981 8100 TIP 436369 2537 6044944 2024-02-23 16:59:30.445 2024-02-23 16:59:30.445 3300 FEE 436197 13854 6044945 2024-02-23 16:59:30.445 2024-02-23 16:59:30.445 29700 TIP 436197 9167 6044948 2024-02-23 16:59:35.091 2024-02-23 16:59:35.091 3300 FEE 436241 19507 6044949 2024-02-23 16:59:35.091 2024-02-23 16:59:35.091 29700 TIP 436241 20246 6044666 2024-02-23 16:17:10.642 2024-02-23 16:17:10.642 1000 FEE 436373 2206 6044672 2024-02-23 16:18:51.906 2024-02-23 16:18:51.906 2100 FEE 436243 16410 6044673 2024-02-23 16:18:51.906 2024-02-23 16:18:51.906 18900 TIP 436243 19096 6044698 2024-02-23 16:19:25.47 2024-02-23 16:19:25.47 1000 FEE 436318 15200 6044699 2024-02-23 16:19:25.47 2024-02-23 16:19:25.47 9000 TIP 436318 21453 6044702 2024-02-23 16:19:25.86 2024-02-23 16:19:25.86 1000 FEE 436318 16684 6044703 2024-02-23 16:19:25.86 2024-02-23 16:19:25.86 9000 TIP 436318 2776 6044705 2024-02-23 16:19:39.844 2024-02-23 16:19:39.844 1000 POLL 436323 1426 6044725 2024-02-23 16:21:02.903 2024-02-23 16:21:02.903 1000 FEE 435907 15049 6044726 2024-02-23 16:21:02.903 2024-02-23 16:21:02.903 9000 TIP 435907 633 6044729 2024-02-23 16:21:03.369 2024-02-23 16:21:03.369 1000 FEE 435907 3504 6044730 2024-02-23 16:21:03.369 2024-02-23 16:21:03.369 9000 TIP 435907 5293 6044742 2024-02-23 16:21:05.635 2024-02-23 16:21:05.635 1000 FEE 435907 1745 6044743 2024-02-23 16:21:05.635 2024-02-23 16:21:05.635 9000 TIP 435907 21349 6044761 2024-02-23 16:26:08.974 2024-02-23 16:26:08.974 1000 FEE 436383 8037 6044762 2024-02-23 16:26:10.194 2024-02-23 16:26:10.194 1000 FEE 436384 21275 6044845 2024-02-23 16:44:01.238 2024-02-23 16:44:01.238 0 FEE 436397 8985 6044863 2024-02-23 16:44:47.366 2024-02-23 16:44:47.366 1000 FEE 436403 17602 6044872 2024-02-23 16:46:28.594 2024-02-23 16:46:28.594 1000 POLL 435516 17552 6044874 2024-02-23 16:47:05.626 2024-02-23 16:47:05.626 10000 FEE 436406 19531 6044892 2024-02-23 16:50:43.292 2024-02-23 16:50:43.292 300 FEE 436243 19905 6044893 2024-02-23 16:50:43.292 2024-02-23 16:50:43.292 2700 TIP 436243 15556 6044903 2024-02-23 16:53:25.097 2024-02-23 16:53:25.097 500 FEE 436243 20452 6044904 2024-02-23 16:53:25.097 2024-02-23 16:53:25.097 4500 TIP 436243 21044 6044916 2024-02-23 16:55:55.679 2024-02-23 16:55:55.679 900 FEE 436323 2757 6044917 2024-02-23 16:55:55.679 2024-02-23 16:55:55.679 8100 TIP 436323 20669 6044936 2024-02-23 16:57:54.415 2024-02-23 16:57:54.415 900 FEE 436393 15094 6044937 2024-02-23 16:57:54.415 2024-02-23 16:57:54.415 8100 TIP 436393 993 6044952 2024-02-23 16:59:44.527 2024-02-23 16:59:44.527 3300 FEE 435944 19142 6044953 2024-02-23 16:59:44.527 2024-02-23 16:59:44.527 29700 TIP 435944 19471 6044969 2024-02-23 17:00:28.282 2024-02-23 17:00:28.282 2100 FEE 435944 20551 6044970 2024-02-23 17:00:28.282 2024-02-23 17:00:28.282 18900 TIP 435944 5057 6045001 2024-02-23 17:02:15.734 2024-02-23 17:02:15.734 2100 FEE 436413 14271 6045002 2024-02-23 17:02:15.734 2024-02-23 17:02:15.734 18900 TIP 436413 6687 6045006 2024-02-23 17:02:50.162 2024-02-23 17:02:50.162 3300 FEE 436343 13921 6045007 2024-02-23 17:02:50.162 2024-02-23 17:02:50.162 29700 TIP 436343 9816 6045008 2024-02-23 17:02:56.668 2024-02-23 17:02:56.668 3300 FEE 436156 15560 6045009 2024-02-23 17:02:56.668 2024-02-23 17:02:56.668 29700 TIP 436156 10490 6045010 2024-02-23 17:03:01.031 2024-02-23 17:03:01.031 3300 FEE 436145 18557 6045011 2024-02-23 17:03:01.031 2024-02-23 17:03:01.031 29700 TIP 436145 19378 6045021 2024-02-23 17:03:36.644 2024-02-23 17:03:36.644 1000 FEE 436418 19888 6045040 2024-02-23 17:04:05.998 2024-02-23 17:04:05.998 2100 FEE 436253 5377 6045041 2024-02-23 17:04:05.998 2024-02-23 17:04:05.998 18900 TIP 436253 19622 6045051 2024-02-23 17:04:48.556 2024-02-23 17:04:48.556 100 FEE 436333 8726 6045052 2024-02-23 17:04:48.556 2024-02-23 17:04:48.556 900 TIP 436333 20152 6045060 2024-02-23 17:04:59.001 2024-02-23 17:04:59.001 2100 FEE 436415 21166 6045061 2024-02-23 17:04:59.001 2024-02-23 17:04:59.001 18900 TIP 436415 5195 6045069 2024-02-23 17:05:15.812 2024-02-23 17:05:15.812 2100 FEE 436241 16816 6045070 2024-02-23 17:05:15.812 2024-02-23 17:05:15.812 18900 TIP 436241 698 6045077 2024-02-23 17:05:24.279 2024-02-23 17:05:24.279 2100 FEE 436213 18816 6045078 2024-02-23 17:05:24.279 2024-02-23 17:05:24.279 18900 TIP 436213 16351 6045111 2024-02-23 17:07:40.615 2024-02-23 17:07:40.615 100 FEE 436412 21406 6045112 2024-02-23 17:07:40.615 2024-02-23 17:07:40.615 900 TIP 436412 21048 6044856 2024-02-23 16:44:44.826 2024-02-23 16:44:44.826 1000 FEE 436398 11515 6044857 2024-02-23 16:44:44.826 2024-02-23 16:44:44.826 9000 TIP 436398 1801 6044858 2024-02-23 16:44:45.202 2024-02-23 16:44:45.202 1000 FEE 436398 1105 6044859 2024-02-23 16:44:45.202 2024-02-23 16:44:45.202 9000 TIP 436398 18449 6044891 2024-02-23 16:50:36.891 2024-02-23 16:50:36.891 1000 FEE 436410 1729 6044895 2024-02-23 16:51:54.149 2024-02-23 16:51:54.149 1000 POLL 436323 19864 6044900 2024-02-23 16:53:12.765 2024-02-23 16:53:12.765 1000 FEE 436412 732 6044954 2024-02-23 16:59:45.281 2024-02-23 16:59:45.281 3300 FEE 436136 2459 6044955 2024-02-23 16:59:45.281 2024-02-23 16:59:45.281 29700 TIP 436136 14045 6045015 2024-02-23 17:03:20.685 2024-02-23 17:03:20.685 2100 FEE 436406 20799 6045016 2024-02-23 17:03:20.685 2024-02-23 17:03:20.685 18900 TIP 436406 17708 6045028 2024-02-23 17:03:53.662 2024-02-23 17:03:53.662 2100 FEE 436290 16289 6045029 2024-02-23 17:03:53.662 2024-02-23 17:03:53.662 18900 TIP 436290 13782 6045049 2024-02-23 17:04:43.63 2024-02-23 17:04:43.63 2100 FEE 436218 20258 6045050 2024-02-23 17:04:43.63 2024-02-23 17:04:43.63 18900 TIP 436218 20745 6045053 2024-02-23 17:04:50.563 2024-02-23 17:04:50.563 2100 FEE 436147 9084 6045054 2024-02-23 17:04:50.563 2024-02-23 17:04:50.563 18900 TIP 436147 12139 6045073 2024-02-23 17:05:21.19 2024-02-23 17:05:21.19 2100 FEE 436233 16717 6045074 2024-02-23 17:05:21.19 2024-02-23 17:05:21.19 18900 TIP 436233 21493 6045096 2024-02-23 17:06:16.256 2024-02-23 17:06:16.256 2100 FEE 436420 21155 6045097 2024-02-23 17:06:16.256 2024-02-23 17:06:16.256 18900 TIP 436420 14280 6045106 2024-02-23 17:07:18.978 2024-02-23 17:07:18.978 1000 FEE 436427 20340 6045121 2024-02-23 17:08:13.45 2024-02-23 17:08:13.45 2100 FEE 436382 622 6045122 2024-02-23 17:08:13.45 2024-02-23 17:08:13.45 18900 TIP 436382 6382 6045125 2024-02-23 17:08:18.709 2024-02-23 17:08:18.709 2100 FEE 436318 10638 6045126 2024-02-23 17:08:18.709 2024-02-23 17:08:18.709 18900 TIP 436318 15577 6045149 2024-02-23 17:09:53.516 2024-02-23 17:09:53.516 2100 FEE 436326 18909 6045150 2024-02-23 17:09:53.516 2024-02-23 17:09:53.516 18900 TIP 436326 19036 6045172 2024-02-23 17:10:35.05 2024-02-23 17:10:35.05 500 FEE 436330 1474 6045173 2024-02-23 17:10:35.05 2024-02-23 17:10:35.05 4500 TIP 436330 5828 6045174 2024-02-23 17:10:37.911 2024-02-23 17:10:37.911 2100 FEE 436363 1769 6045175 2024-02-23 17:10:37.911 2024-02-23 17:10:37.911 18900 TIP 436363 18989 6045199 2024-02-23 17:11:31.645 2024-02-23 17:11:31.645 1000 FEE 436434 13100 6045202 2024-02-23 17:11:36.753 2024-02-23 17:11:36.753 12100 FEE 436394 20006 6045203 2024-02-23 17:11:36.753 2024-02-23 17:11:36.753 108900 TIP 436394 18336 6045211 2024-02-23 17:11:51.195 2024-02-23 17:11:51.195 2100 FEE 436163 17291 6045212 2024-02-23 17:11:51.195 2024-02-23 17:11:51.195 18900 TIP 436163 16571 6045221 2024-02-23 17:12:23.991 2024-02-23 17:12:23.991 2100 FEE 436326 18923 6045222 2024-02-23 17:12:23.991 2024-02-23 17:12:23.991 18900 TIP 436326 11153 6045263 2024-02-23 17:14:53.786 2024-02-23 17:14:53.786 100 FEE 433821 2718 6045264 2024-02-23 17:14:53.786 2024-02-23 17:14:53.786 900 TIP 433821 861 6044896 2024-02-23 16:52:03.939 2024-02-23 16:52:03.939 1000 STREAM 141924 909 6044898 2024-02-23 16:53:03.92 2024-02-23 16:53:03.92 1000 STREAM 141924 20310 6044909 2024-02-23 16:54:03.933 2024-02-23 16:54:03.933 1000 STREAM 141924 19576 6044912 2024-02-23 16:55:03.962 2024-02-23 16:55:03.962 1000 STREAM 141924 4538 6044920 2024-02-23 16:56:03.971 2024-02-23 16:56:03.971 1000 STREAM 141924 16847 6044942 2024-02-23 16:58:03.98 2024-02-23 16:58:03.98 1000 STREAM 141924 18809 6044943 2024-02-23 16:59:04.019 2024-02-23 16:59:04.019 1000 STREAM 141924 10554 6045062 2024-02-23 17:05:04.081 2024-02-23 17:05:04.081 1000 STREAM 141924 13587 6045105 2024-02-23 17:07:04.111 2024-02-23 17:07:04.111 1000 STREAM 141924 716 6045118 2024-02-23 17:08:04.116 2024-02-23 17:08:04.116 1000 STREAM 141924 21136 6045137 2024-02-23 17:09:04.125 2024-02-23 17:09:04.125 1000 STREAM 141924 15697 6045188 2024-02-23 17:11:04.142 2024-02-23 17:11:04.142 1000 STREAM 141924 20108 6112826 2024-02-29 14:24:38.967 2024-02-29 14:24:38.967 2100 FEE 443399 19458 6112827 2024-02-29 14:24:38.967 2024-02-29 14:24:38.967 18900 TIP 443399 928 6112830 2024-02-29 14:25:07.562 2024-02-29 14:25:07.562 1000 FEE 443546 20776 6112844 2024-02-29 14:25:26.359 2024-02-29 14:25:26.359 2100 FEE 443266 17094 6112845 2024-02-29 14:25:26.359 2024-02-29 14:25:26.359 18900 TIP 443266 7891 6112886 2024-02-29 14:30:39.715 2024-02-29 14:30:39.715 42000 FEE 443543 13921 6112887 2024-02-29 14:30:39.715 2024-02-29 14:30:39.715 378000 TIP 443543 10536 6112893 2024-02-29 14:31:17.242 2024-02-29 14:31:17.242 1000 FEE 443563 15088 6112895 2024-02-29 14:31:29.336 2024-02-29 14:31:29.336 1000 FEE 443565 1489 6112896 2024-02-29 14:31:44.309 2024-02-29 14:31:44.309 25500 FEE 443563 10342 6112897 2024-02-29 14:31:44.309 2024-02-29 14:31:44.309 229500 TIP 443563 9159 6112907 2024-02-29 14:32:24.965 2024-02-29 14:32:24.965 2100 FEE 443531 17275 6112908 2024-02-29 14:32:24.965 2024-02-29 14:32:24.965 18900 TIP 443531 19117 6112911 2024-02-29 14:32:39.127 2024-02-29 14:32:39.127 2100 FEE 443528 20660 6112912 2024-02-29 14:32:39.127 2024-02-29 14:32:39.127 18900 TIP 443528 20586 6112922 2024-02-29 14:33:17.575 2024-02-29 14:33:17.575 2100 FEE 443438 9242 6112923 2024-02-29 14:33:17.575 2024-02-29 14:33:17.575 18900 TIP 443438 876 6112928 2024-02-29 14:33:37.92 2024-02-29 14:33:37.92 2100 FEE 443274 5195 6112929 2024-02-29 14:33:37.92 2024-02-29 14:33:37.92 18900 TIP 443274 19153 6112934 2024-02-29 14:33:47.418 2024-02-29 14:33:47.418 1000 FEE 443572 12334 6112946 2024-02-29 14:34:26.382 2024-02-29 14:34:26.382 2100 FEE 443304 2537 6112947 2024-02-29 14:34:26.382 2024-02-29 14:34:26.382 18900 TIP 443304 12736 6112956 2024-02-29 14:35:03.937 2024-02-29 14:35:03.937 2100 FEE 443548 20337 6112957 2024-02-29 14:35:03.937 2024-02-29 14:35:03.937 18900 TIP 443548 844 6112966 2024-02-29 14:35:04.545 2024-02-29 14:35:04.545 7700 FEE 443274 19471 6112967 2024-02-29 14:35:04.545 2024-02-29 14:35:04.545 69300 TIP 443274 3347 6112972 2024-02-29 14:35:06.568 2024-02-29 14:35:06.568 7700 FEE 443274 13622 6112973 2024-02-29 14:35:06.568 2024-02-29 14:35:06.568 69300 TIP 443274 7903 6112988 2024-02-29 14:35:15.193 2024-02-29 14:35:15.193 7700 FEE 443372 15282 6112989 2024-02-29 14:35:15.193 2024-02-29 14:35:15.193 69300 TIP 443372 20152 6112990 2024-02-29 14:35:15.319 2024-02-29 14:35:15.319 7700 FEE 443372 18618 6112991 2024-02-29 14:35:15.319 2024-02-29 14:35:15.319 69300 TIP 443372 1618 6112992 2024-02-29 14:35:15.484 2024-02-29 14:35:15.484 7700 FEE 443372 17710 6112993 2024-02-29 14:35:15.484 2024-02-29 14:35:15.484 69300 TIP 443372 19286 6112998 2024-02-29 14:35:15.981 2024-02-29 14:35:15.981 7700 FEE 443372 16229 6112999 2024-02-29 14:35:15.981 2024-02-29 14:35:15.981 69300 TIP 443372 12483 6113032 2024-02-29 14:35:30.871 2024-02-29 14:35:30.871 7700 FEE 443545 12483 6113033 2024-02-29 14:35:30.871 2024-02-29 14:35:30.871 69300 TIP 443545 20980 6113065 2024-02-29 14:36:16.199 2024-02-29 14:36:16.199 500 FEE 443298 18809 6113066 2024-02-29 14:36:16.199 2024-02-29 14:36:16.199 4500 TIP 443298 12291 6113067 2024-02-29 14:36:17.555 2024-02-29 14:36:17.555 2100 FEE 443380 16788 6113068 2024-02-29 14:36:17.555 2024-02-29 14:36:17.555 18900 TIP 443380 18659 6113099 2024-02-29 14:38:26.531 2024-02-29 14:38:26.531 6900 FEE 443272 13767 6113100 2024-02-29 14:38:26.531 2024-02-29 14:38:26.531 62100 TIP 443272 2196 6113103 2024-02-29 14:38:26.863 2024-02-29 14:38:26.863 6900 FEE 443272 18344 6113104 2024-02-29 14:38:26.863 2024-02-29 14:38:26.863 62100 TIP 443272 5495 6113116 2024-02-29 14:39:28.774 2024-02-29 14:39:28.774 1000 FEE 443581 18731 6113128 2024-02-29 14:41:28.544 2024-02-29 14:41:28.544 1100 FEE 443432 21412 6113129 2024-02-29 14:41:28.544 2024-02-29 14:41:28.544 9900 TIP 443432 10934 6113132 2024-02-29 14:41:40.796 2024-02-29 14:41:40.796 100000 FEE 443583 4118 6113139 2024-02-29 14:41:46.845 2024-02-29 14:41:46.845 7700 FEE 443272 5791 6113140 2024-02-29 14:41:46.845 2024-02-29 14:41:46.845 69300 TIP 443272 21421 6113145 2024-02-29 14:41:47.402 2024-02-29 14:41:47.402 7700 FEE 443272 21172 6113146 2024-02-29 14:41:47.402 2024-02-29 14:41:47.402 69300 TIP 443272 4802 6113151 2024-02-29 14:41:47.661 2024-02-29 14:41:47.661 7700 FEE 443272 9920 6113152 2024-02-29 14:41:47.661 2024-02-29 14:41:47.661 69300 TIP 443272 7992 6113163 2024-02-29 14:41:59.242 2024-02-29 14:41:59.242 300 FEE 443545 4502 6113164 2024-02-29 14:41:59.242 2024-02-29 14:41:59.242 2700 TIP 443545 21389 6113165 2024-02-29 14:41:59.308 2024-02-29 14:41:59.308 300 FEE 443545 16956 6113166 2024-02-29 14:41:59.308 2024-02-29 14:41:59.308 2700 TIP 443545 16351 6113185 2024-02-29 14:42:01.812 2024-02-29 14:42:01.812 300 FEE 442904 694 6113186 2024-02-29 14:42:01.812 2024-02-29 14:42:01.812 2700 TIP 442904 20182 6113224 2024-02-29 14:42:46.902 2024-02-29 14:42:46.902 500 FEE 443122 738 6113225 2024-02-29 14:42:46.902 2024-02-29 14:42:46.902 4500 TIP 443122 2741 6113242 2024-02-29 14:43:16.405 2024-02-29 14:43:16.405 2700 FEE 438678 811 6113243 2024-02-29 14:43:16.405 2024-02-29 14:43:16.405 24300 TIP 438678 20738 6113249 2024-02-29 14:43:49.148 2024-02-29 14:43:49.148 1000 FEE 443588 8284 6113254 2024-02-29 14:44:02.567 2024-02-29 14:44:02.567 300 FEE 441807 18101 6113255 2024-02-29 14:44:02.567 2024-02-29 14:44:02.567 2700 TIP 441807 836 6113263 2024-02-29 14:44:38.572 2024-02-29 14:44:38.572 300 FEE 443105 18909 6113264 2024-02-29 14:44:38.572 2024-02-29 14:44:38.572 2700 TIP 443105 20849 6113285 2024-02-29 14:45:51.886 2024-02-29 14:45:51.886 2700 FEE 443319 15662 6113286 2024-02-29 14:45:51.886 2024-02-29 14:45:51.886 24300 TIP 443319 992 6113297 2024-02-29 14:46:41.182 2024-02-29 14:46:41.182 300 FEE 442718 20922 6113298 2024-02-29 14:46:41.182 2024-02-29 14:46:41.182 2700 TIP 442718 7809 6113310 2024-02-29 14:47:29.115 2024-02-29 14:47:29.115 1000 FEE 443595 12346 6113322 2024-02-29 14:49:08.271 2024-02-29 14:49:08.271 1000 FEE 443599 17944 6113336 2024-02-29 14:50:01.194 2024-02-29 14:50:01.194 900 FEE 443583 5519 6113337 2024-02-29 14:50:01.194 2024-02-29 14:50:01.194 8100 TIP 443583 2773 6113358 2024-02-29 14:50:52.923 2024-02-29 14:50:52.923 7700 FEE 443577 19153 6113359 2024-02-29 14:50:52.923 2024-02-29 14:50:52.923 69300 TIP 443577 5017 6113360 2024-02-29 14:50:53.005 2024-02-29 14:50:53.005 7700 FEE 443577 9552 6113361 2024-02-29 14:50:53.005 2024-02-29 14:50:53.005 69300 TIP 443577 9529 6113364 2024-02-29 14:50:57.451 2024-02-29 14:50:57.451 2100 FEE 443602 18774 6113365 2024-02-29 14:50:57.451 2024-02-29 14:50:57.451 18900 TIP 443602 21480 6113366 2024-02-29 14:51:00.523 2024-02-29 14:51:00.523 1000 FEE 443604 18660 6113370 2024-02-29 14:51:05.659 2024-02-29 14:51:05.659 100 FEE 443592 16042 6113371 2024-02-29 14:51:05.659 2024-02-29 14:51:05.659 900 TIP 443592 17552 6113386 2024-02-29 14:52:30.595 2024-02-29 14:52:30.595 1000 FEE 443609 3683 6113387 2024-02-29 14:52:36.948 2024-02-29 14:52:36.948 2100 FEE 443577 7998 6113388 2024-02-29 14:52:36.948 2024-02-29 14:52:36.948 18900 TIP 443577 20551 6113397 2024-02-29 14:53:26.234 2024-02-29 14:53:26.234 1000 FEE 443610 14950 6113414 2024-02-29 14:54:34.571 2024-02-29 14:54:34.571 6300 FEE 443473 4633 6044926 2024-02-23 16:57:03.964 2024-02-23 16:57:03.964 1000 STREAM 141924 8133 6044964 2024-02-23 17:00:04.079 2024-02-23 17:00:04.079 1000 STREAM 141924 20066 6044977 2024-02-23 17:01:04.032 2024-02-23 17:01:04.032 1000 STREAM 141924 18330 6044998 2024-02-23 17:02:04.051 2024-02-23 17:02:04.051 1000 STREAM 141924 21131 6045012 2024-02-23 17:03:04.083 2024-02-23 17:03:04.083 1000 STREAM 141924 2774 6045039 2024-02-23 17:04:04.074 2024-02-23 17:04:04.074 1000 STREAM 141924 19156 6045093 2024-02-23 17:06:04.091 2024-02-23 17:06:04.091 1000 STREAM 141924 21269 6045151 2024-02-23 17:10:04.164 2024-02-23 17:10:04.164 1000 STREAM 141924 19813 6112831 2024-02-29 14:25:11.696 2024-02-29 14:25:11.696 100 FEE 443541 21361 6112832 2024-02-29 14:25:11.696 2024-02-29 14:25:11.696 900 TIP 443541 20554 6112833 2024-02-29 14:25:12.286 2024-02-29 14:25:12.286 1700 FEE 443528 1354 6112834 2024-02-29 14:25:12.286 2024-02-29 14:25:12.286 15300 TIP 443528 11220 6112837 2024-02-29 14:25:13.981 2024-02-29 14:25:13.981 1000 FEE 443547 19813 6112846 2024-02-29 14:25:53.615 2024-02-29 14:25:53.615 1000 FEE 443548 21416 6112859 2024-02-29 14:27:35.242 2024-02-29 14:27:35.242 30000 FEE 443304 21139 6112860 2024-02-29 14:27:35.242 2024-02-29 14:27:35.242 270000 TIP 443304 825 6112891 2024-02-29 14:31:12.108 2024-02-29 14:31:12.108 3100 FEE 443517 9921 6112892 2024-02-29 14:31:12.108 2024-02-29 14:31:12.108 27900 TIP 443517 8569 6112903 2024-02-29 14:31:59.512 2024-02-29 14:31:59.512 1000 FEE 443567 17455 6112909 2024-02-29 14:32:30.377 2024-02-29 14:32:30.377 2100 FEE 443532 8870 6112910 2024-02-29 14:32:30.377 2024-02-29 14:32:30.377 18900 TIP 443532 825 6112913 2024-02-29 14:32:41.295 2024-02-29 14:32:41.295 3100 FEE 443560 19118 6112914 2024-02-29 14:32:41.295 2024-02-29 14:32:41.295 27900 TIP 443560 18819 6112916 2024-02-29 14:32:58.067 2024-02-29 14:32:58.067 1000 FEE 443568 9275 6112918 2024-02-29 14:33:01.836 2024-02-29 14:33:01.836 1000 FEE 443570 16432 6112935 2024-02-29 14:33:55.031 2024-02-29 14:33:55.031 2100 FEE 443399 7097 6112936 2024-02-29 14:33:55.031 2024-02-29 14:33:55.031 18900 TIP 443399 16970 6112942 2024-02-29 14:34:11.739 2024-02-29 14:34:11.739 2100 FEE 443490 18269 6112943 2024-02-29 14:34:11.739 2024-02-29 14:34:11.739 18900 TIP 443490 3347 6112962 2024-02-29 14:35:04.288 2024-02-29 14:35:04.288 7700 FEE 443274 4802 6112963 2024-02-29 14:35:04.288 2024-02-29 14:35:04.288 69300 TIP 443274 9261 6112974 2024-02-29 14:35:07.62 2024-02-29 14:35:07.62 7700 FEE 443274 1609 6112975 2024-02-29 14:35:07.62 2024-02-29 14:35:07.62 69300 TIP 443274 1784 6112980 2024-02-29 14:35:14.766 2024-02-29 14:35:14.766 15400 FEE 443372 672 6112981 2024-02-29 14:35:14.766 2024-02-29 14:35:14.766 138600 TIP 443372 18919 6112984 2024-02-29 14:35:14.992 2024-02-29 14:35:14.992 7700 FEE 443372 4059 6112985 2024-02-29 14:35:14.992 2024-02-29 14:35:14.992 69300 TIP 443372 746 6112994 2024-02-29 14:35:15.564 2024-02-29 14:35:15.564 7700 FEE 443372 21208 6112995 2024-02-29 14:35:15.564 2024-02-29 14:35:15.564 69300 TIP 443372 9 6113014 2024-02-29 14:35:20.099 2024-02-29 14:35:20.099 7700 FEE 443179 21406 6113015 2024-02-29 14:35:20.099 2024-02-29 14:35:20.099 69300 TIP 443179 9183 6113054 2024-02-29 14:36:00.904 2024-02-29 14:36:00.904 7700 FEE 443514 2734 6113055 2024-02-29 14:36:00.904 2024-02-29 14:36:00.904 69300 TIP 443514 6653 6113059 2024-02-29 14:36:03.787 2024-02-29 14:36:03.787 2100 FEE 443336 21339 6113060 2024-02-29 14:36:03.787 2024-02-29 14:36:03.787 18900 TIP 443336 19777 6113125 2024-02-29 14:40:32.063 2024-02-29 14:40:32.063 1000 FEE 443582 3411 6113126 2024-02-29 14:40:32.063 2024-02-29 14:40:32.063 9000 TIP 443582 19795 6113181 2024-02-29 14:42:01.03 2024-02-29 14:42:01.03 300 FEE 443545 21047 6113182 2024-02-29 14:42:01.03 2024-02-29 14:42:01.03 2700 TIP 443545 16145 6113183 2024-02-29 14:42:01.558 2024-02-29 14:42:01.558 300 FEE 442904 20163 6113184 2024-02-29 14:42:01.558 2024-02-29 14:42:01.558 2700 TIP 442904 19034 6113214 2024-02-29 14:42:06.86 2024-02-29 14:42:06.86 7700 FEE 443525 5725 6113215 2024-02-29 14:42:06.86 2024-02-29 14:42:06.86 69300 TIP 443525 15088 6113221 2024-02-29 14:42:34.297 2024-02-29 14:42:34.297 1000 FEE 443585 20222 6113270 2024-02-29 14:45:06.554 2024-02-29 14:45:06.554 1000 FEE 443591 19033 6113273 2024-02-29 14:45:13.91 2024-02-29 14:45:13.91 5000 FEE 443583 18743 6113274 2024-02-29 14:45:13.91 2024-02-29 14:45:13.91 45000 TIP 443583 15226 6113305 2024-02-29 14:46:56.52 2024-02-29 14:46:56.52 1000 FEE 443545 18393 6113306 2024-02-29 14:46:56.52 2024-02-29 14:46:56.52 9000 TIP 443545 17116 6113308 2024-02-29 14:47:20.885 2024-02-29 14:47:20.885 21800 FEE 443319 12158 6113309 2024-02-29 14:47:20.885 2024-02-29 14:47:20.885 196200 TIP 443319 18830 6113316 2024-02-29 14:48:59.007 2024-02-29 14:48:59.007 6300 FEE 443545 19662 6113317 2024-02-29 14:48:59.007 2024-02-29 14:48:59.007 56700 TIP 443545 13927 6113327 2024-02-29 14:49:21.619 2024-02-29 14:49:21.619 1000 FEE 443600 17157 6113330 2024-02-29 14:49:47.761 2024-02-29 14:49:47.761 400 FEE 443568 2123 6113331 2024-02-29 14:49:47.761 2024-02-29 14:49:47.761 3600 TIP 443568 3506 6113346 2024-02-29 14:50:35.7 2024-02-29 14:50:35.7 2100 FEE 443593 18524 6113347 2024-02-29 14:50:35.7 2024-02-29 14:50:35.7 18900 TIP 443593 19967 6113368 2024-02-29 14:51:04.245 2024-02-29 14:51:04.245 3300 FEE 443543 1030 6113369 2024-02-29 14:51:04.245 2024-02-29 14:51:04.245 29700 TIP 443543 17331 6113392 2024-02-29 14:53:06.633 2024-02-29 14:53:06.633 0 FEE 443608 10638 6113405 2024-02-29 14:54:01.484 2024-02-29 14:54:01.484 0 FEE 443602 13781 6113426 2024-02-29 14:55:24.419 2024-02-29 14:55:24.419 3100 FEE 443583 13527 6113427 2024-02-29 14:55:24.419 2024-02-29 14:55:24.419 27900 TIP 443583 11523 6113478 2024-02-29 14:57:09.807 2024-02-29 14:57:09.807 7700 FEE 443617 15938 6113479 2024-02-29 14:57:09.807 2024-02-29 14:57:09.807 69300 TIP 443617 7553 6113506 2024-02-29 14:58:10.075 2024-02-29 14:58:10.075 1000 FEE 443623 18679 6113515 2024-02-29 14:58:41.393 2024-02-29 14:58:41.393 1000 FEE 443626 19303 6113527 2024-02-29 14:58:59.264 2024-02-29 14:58:59.264 100 FEE 443589 803 6113528 2024-02-29 14:58:59.264 2024-02-29 14:58:59.264 900 TIP 443589 20220 6113531 2024-02-29 14:59:06.632 2024-02-29 14:59:06.632 100 FEE 443579 1515 6113532 2024-02-29 14:59:06.632 2024-02-29 14:59:06.632 900 TIP 443579 18264 6113564 2024-02-29 15:00:01.075 2024-02-29 15:00:01.075 300 FEE 443613 4831 6113565 2024-02-29 15:00:01.075 2024-02-29 15:00:01.075 2700 TIP 443613 7979 6113570 2024-02-29 15:00:01.643 2024-02-29 15:00:01.643 300 FEE 443613 20963 6113571 2024-02-29 15:00:01.643 2024-02-29 15:00:01.643 2700 TIP 443613 21116 6113580 2024-02-29 15:00:11.496 2024-02-29 15:00:11.496 100 FEE 443524 15146 6113581 2024-02-29 15:00:11.496 2024-02-29 15:00:11.496 900 TIP 443524 19199 6113590 2024-02-29 15:00:19.77 2024-02-29 15:00:19.77 1000 FEE 443638 18225 6113619 2024-02-29 15:01:28.165 2024-02-29 15:01:28.165 10000 FEE 443611 19533 6113620 2024-02-29 15:01:28.165 2024-02-29 15:01:28.165 90000 TIP 443611 21555 6113634 2024-02-29 15:04:02.246 2024-02-29 15:04:02.246 1000 FEE 443650 14271 6113659 2024-02-29 15:05:29.527 2024-02-29 15:05:29.527 2700 FEE 443624 3504 6113660 2024-02-29 15:05:29.527 2024-02-29 15:05:29.527 24300 TIP 443624 17116 6113665 2024-02-29 15:05:30.058 2024-02-29 15:05:30.058 2700 FEE 443624 10273 6113666 2024-02-29 15:05:30.058 2024-02-29 15:05:30.058 24300 TIP 443624 8713 6113692 2024-02-29 15:06:29.637 2024-02-29 15:06:29.637 2700 FEE 443545 20291 6113693 2024-02-29 15:06:29.637 2024-02-29 15:06:29.637 24300 TIP 443545 17713 6113735 2024-02-29 15:09:10.953 2024-02-29 15:09:10.953 5700 FEE 443528 8998 6113736 2024-02-29 15:09:10.953 2024-02-29 15:09:10.953 51300 TIP 443528 1465 6113737 2024-02-29 15:09:27.866 2024-02-29 15:09:27.866 6100 FEE 443647 14260 6113738 2024-02-29 15:09:27.866 2024-02-29 15:09:27.866 54900 TIP 443647 18581 6113749 2024-02-29 15:09:45.24 2024-02-29 15:09:45.24 2100 FEE 443611 8400 6113750 2024-02-29 15:09:45.24 2024-02-29 15:09:45.24 18900 TIP 443611 15200 6113764 2024-02-29 15:10:39.907 2024-02-29 15:10:39.907 1000 FEE 443661 19777 6113773 2024-02-29 15:11:44.737 2024-02-29 15:11:44.737 1000 FEE 443663 3706 6044996 2024-02-23 17:02:01.834 2024-02-23 17:02:01.834 2100 FEE 435963 18387 6044997 2024-02-23 17:02:01.834 2024-02-23 17:02:01.834 18900 TIP 435963 18138 6044999 2024-02-23 17:02:09.191 2024-02-23 17:02:09.191 3300 FEE 436326 1618 6045000 2024-02-23 17:02:09.191 2024-02-23 17:02:09.191 29700 TIP 436326 18409 6045019 2024-02-23 17:03:27.579 2024-02-23 17:03:27.579 2100 FEE 436344 5003 6045020 2024-02-23 17:03:27.579 2024-02-23 17:03:27.579 18900 TIP 436344 1173 6045024 2024-02-23 17:03:39.8 2024-02-23 17:03:39.8 2100 FEE 436345 617 6045025 2024-02-23 17:03:39.8 2024-02-23 17:03:39.8 18900 TIP 436345 6499 6045079 2024-02-23 17:05:25.614 2024-02-23 17:05:25.614 2100 FEE 436273 2013 6045080 2024-02-23 17:05:25.614 2024-02-23 17:05:25.614 18900 TIP 436273 13100 6045083 2024-02-23 17:05:29.663 2024-02-23 17:05:29.663 100 FEE 436302 18658 6045084 2024-02-23 17:05:29.663 2024-02-23 17:05:29.663 900 TIP 436302 19795 6045085 2024-02-23 17:05:38.937 2024-02-23 17:05:38.937 1000 FEE 436424 690 6045091 2024-02-23 17:06:02.208 2024-02-23 17:06:02.208 100 FEE 436246 15728 6045092 2024-02-23 17:06:02.208 2024-02-23 17:06:02.208 900 TIP 436246 5752 6045116 2024-02-23 17:08:02.487 2024-02-23 17:08:02.487 100 FEE 436308 18262 6045117 2024-02-23 17:08:02.487 2024-02-23 17:08:02.487 900 TIP 436308 1286 6045154 2024-02-23 17:10:14.582 2024-02-23 17:10:14.582 1000 FEE 436432 18539 6045165 2024-02-23 17:10:21.681 2024-02-23 17:10:21.681 2100 FEE 435847 1429 6045166 2024-02-23 17:10:21.681 2024-02-23 17:10:21.681 18900 TIP 435847 11938 6045178 2024-02-23 17:10:56.493 2024-02-23 17:10:56.493 2100 FEE 436316 9275 6045179 2024-02-23 17:10:56.493 2024-02-23 17:10:56.493 18900 TIP 436316 19572 6045189 2024-02-23 17:11:07.791 2024-02-23 17:11:07.791 2100 FEE 436255 2065 6045190 2024-02-23 17:11:07.791 2024-02-23 17:11:07.791 18900 TIP 436255 21555 6045191 2024-02-23 17:11:12.075 2024-02-23 17:11:12.075 2100 FEE 436253 3642 6045192 2024-02-23 17:11:12.075 2024-02-23 17:11:12.075 18900 TIP 436253 21514 6045197 2024-02-23 17:11:23.307 2024-02-23 17:11:23.307 2100 FEE 436248 1468 6045198 2024-02-23 17:11:23.307 2024-02-23 17:11:23.307 18900 TIP 436248 19034 6045213 2024-02-23 17:11:58.104 2024-02-23 17:11:58.104 1000 FEE 436436 5427 6045215 2024-02-23 17:12:16.078 2024-02-23 17:12:16.078 12100 FEE 436240 1310 6045216 2024-02-23 17:12:16.078 2024-02-23 17:12:16.078 108900 TIP 436240 2757 6045225 2024-02-23 17:12:24.412 2024-02-23 17:12:24.412 2100 FEE 436326 19286 6045226 2024-02-23 17:12:24.412 2024-02-23 17:12:24.412 18900 TIP 436326 1237 6045231 2024-02-23 17:12:26.036 2024-02-23 17:12:26.036 2100 FEE 436326 19309 6045232 2024-02-23 17:12:26.036 2024-02-23 17:12:26.036 18900 TIP 436326 20624 6045233 2024-02-23 17:12:27.377 2024-02-23 17:12:27.377 100 FEE 436203 15536 6045234 2024-02-23 17:12:27.377 2024-02-23 17:12:27.377 900 TIP 436203 12102 6045245 2024-02-23 17:12:40.882 2024-02-23 17:12:40.882 2100 FEE 436197 12769 6045246 2024-02-23 17:12:40.882 2024-02-23 17:12:40.882 18900 TIP 436197 15282 6045296 2024-02-23 17:16:05.957 2024-02-23 17:16:05.957 2300 FEE 436437 17710 6045297 2024-02-23 17:16:05.957 2024-02-23 17:16:05.957 20700 TIP 436437 6310 6045350 2024-02-23 17:16:10.891 2024-02-23 17:16:10.891 2300 FEE 436437 19967 6045351 2024-02-23 17:16:10.891 2024-02-23 17:16:10.891 20700 TIP 436437 18423 6045354 2024-02-23 17:16:11.207 2024-02-23 17:16:11.207 2300 FEE 436437 19289 6045355 2024-02-23 17:16:11.207 2024-02-23 17:16:11.207 20700 TIP 436437 19662 6045366 2024-02-23 17:16:11.91 2024-02-23 17:16:11.91 2300 FEE 436437 3360 6045367 2024-02-23 17:16:11.91 2024-02-23 17:16:11.91 20700 TIP 436437 12160 6045376 2024-02-23 17:16:12.584 2024-02-23 17:16:12.584 21000 FEE 436440 725 6045378 2024-02-23 17:16:51.062 2024-02-23 17:16:51.062 1000 FEE 436442 638 6045413 2024-02-23 17:18:44.271 2024-02-23 17:18:44.271 2300 FEE 436437 19118 6045414 2024-02-23 17:18:44.271 2024-02-23 17:18:44.271 20700 TIP 436437 1673 6045423 2024-02-23 17:18:44.952 2024-02-23 17:18:44.952 2300 FEE 436437 20660 6045424 2024-02-23 17:18:44.952 2024-02-23 17:18:44.952 20700 TIP 436437 20218 6045449 2024-02-23 17:18:46.786 2024-02-23 17:18:46.786 2300 FEE 436437 7395 6045450 2024-02-23 17:18:46.786 2024-02-23 17:18:46.786 20700 TIP 436437 12102 6045459 2024-02-23 17:19:39.158 2024-02-23 17:19:39.158 1000 FEE 436448 8326 6045464 2024-02-23 17:19:55.714 2024-02-23 17:19:55.714 1000 FEE 436449 11590 6045481 2024-02-23 17:20:37.224 2024-02-23 17:20:37.224 100 FEE 435751 5852 6045482 2024-02-23 17:20:37.224 2024-02-23 17:20:37.224 900 TIP 435751 21627 6045530 2024-02-23 17:22:03.257 2024-02-23 17:22:03.257 2100 FEE 436430 1729 6045531 2024-02-23 17:22:03.257 2024-02-23 17:22:03.257 18900 TIP 436430 9353 6045541 2024-02-23 17:23:08.491 2024-02-23 17:23:08.491 2300 FEE 436449 5809 6045542 2024-02-23 17:23:08.491 2024-02-23 17:23:08.491 20700 TIP 436449 19826 6045543 2024-02-23 17:23:20.389 2024-02-23 17:23:20.389 1000 FEE 436246 1426 6045544 2024-02-23 17:23:20.389 2024-02-23 17:23:20.389 9000 TIP 436246 20680 6045579 2024-02-23 17:27:55.128 2024-02-23 17:27:55.128 1600 FEE 435596 9758 6045580 2024-02-23 17:27:55.128 2024-02-23 17:27:55.128 14400 TIP 435596 880 6045592 2024-02-23 17:28:27.767 2024-02-23 17:28:27.767 800 FEE 435630 16879 6045593 2024-02-23 17:28:27.767 2024-02-23 17:28:27.767 7200 TIP 435630 649 6045598 2024-02-23 17:28:43.34 2024-02-23 17:28:43.34 800 FEE 436065 2188 6045599 2024-02-23 17:28:43.34 2024-02-23 17:28:43.34 7200 TIP 436065 14152 6045604 2024-02-23 17:28:56.037 2024-02-23 17:28:56.037 800 FEE 436417 18235 6045605 2024-02-23 17:28:56.037 2024-02-23 17:28:56.037 7200 TIP 436417 1825 6045668 2024-02-23 17:31:50.669 2024-02-23 17:31:50.669 8300 FEE 436459 21021 6045669 2024-02-23 17:31:50.669 2024-02-23 17:31:50.669 74700 TIP 436459 9820 6045682 2024-02-23 17:32:02.581 2024-02-23 17:32:02.581 2100 FEE 435847 12708 6045683 2024-02-23 17:32:02.581 2024-02-23 17:32:02.581 18900 TIP 435847 11819 6045688 2024-02-23 17:32:43.531 2024-02-23 17:32:43.531 3300 FEE 436413 2156 6045689 2024-02-23 17:32:43.531 2024-02-23 17:32:43.531 29700 TIP 436413 21271 6045749 2024-02-23 17:36:57.95 2024-02-23 17:36:57.95 1000 FEE 436475 19660 6045750 2024-02-23 17:36:58.005 2024-02-23 17:36:58.005 9900 FEE 436450 20560 6045751 2024-02-23 17:36:58.005 2024-02-23 17:36:58.005 89100 TIP 436450 19537 6045757 2024-02-23 17:37:01.029 2024-02-23 17:37:01.029 1000 FEE 435682 8472 6045758 2024-02-23 17:37:01.029 2024-02-23 17:37:01.029 9000 TIP 435682 2583 6045772 2024-02-23 17:37:18.934 2024-02-23 17:37:18.934 1000 FEE 436475 19352 6045773 2024-02-23 17:37:18.934 2024-02-23 17:37:18.934 9000 TIP 436475 18904 6045783 2024-02-23 17:37:22.794 2024-02-23 17:37:22.794 3000 FEE 435906 18231 6045784 2024-02-23 17:37:22.794 2024-02-23 17:37:22.794 27000 TIP 435906 20811 6045787 2024-02-23 17:37:25.243 2024-02-23 17:37:25.243 1000 FEE 436335 18897 6045788 2024-02-23 17:37:25.243 2024-02-23 17:37:25.243 9000 TIP 436335 19375 6045823 2024-02-23 17:40:43.259 2024-02-23 17:40:43.259 1000 FEE 436484 1000 6045845 2024-02-23 17:45:01.171 2024-02-23 17:45:01.171 1000 FEE 436364 4313 6045846 2024-02-23 17:45:01.171 2024-02-23 17:45:01.171 9000 TIP 436364 1272 6045858 2024-02-23 17:45:48.631 2024-02-23 17:45:48.631 1000 FEE 431189 10611 6045859 2024-02-23 17:45:48.631 2024-02-23 17:45:48.631 9000 TIP 431189 624 6045887 2024-02-23 17:46:37.151 2024-02-23 17:46:37.151 1100 FEE 436323 20539 6045888 2024-02-23 17:46:37.151 2024-02-23 17:46:37.151 9900 TIP 436323 20412 6045931 2024-02-23 17:48:15.772 2024-02-23 17:48:15.772 100 FEE 436496 18076 6045932 2024-02-23 17:48:15.772 2024-02-23 17:48:15.772 900 TIP 436496 5757 6045956 2024-02-23 17:50:35.542 2024-02-23 17:50:35.542 0 FEE 436494 18528 6045974 2024-02-23 17:51:59.466 2024-02-23 17:51:59.466 1000 FEE 436501 16229 6046012 2024-02-23 17:54:14.193 2024-02-23 17:54:14.193 1000 POLL 435495 13987 6046070 2024-02-23 18:00:14.24 2024-02-23 18:00:14.24 100 FEE 436487 18517 6046071 2024-02-23 18:00:14.24 2024-02-23 18:00:14.24 900 TIP 436487 20036 6045046 2024-02-23 17:04:31.713 2024-02-23 17:04:31.713 2100 FEE 436231 1237 6045047 2024-02-23 17:04:31.713 2024-02-23 17:04:31.713 18900 TIP 436231 19863 6045055 2024-02-23 17:04:55.997 2024-02-23 17:04:55.997 1000 FEE 436423 20891 6045063 2024-02-23 17:05:04.667 2024-02-23 17:05:04.667 2100 FEE 436136 21427 6045064 2024-02-23 17:05:04.667 2024-02-23 17:05:04.667 18900 TIP 436136 11999 6045088 2024-02-23 17:05:48.562 2024-02-23 17:05:48.562 2100 FEE 435924 21506 6045089 2024-02-23 17:05:48.562 2024-02-23 17:05:48.562 18900 TIP 435924 19494 6045120 2024-02-23 17:08:09.768 2024-02-23 17:08:09.768 1000 FEE 436430 5904 6045133 2024-02-23 17:08:41.021 2024-02-23 17:08:41.021 2100 FEE 435467 21343 6045134 2024-02-23 17:08:41.021 2024-02-23 17:08:41.021 18900 TIP 435467 638 6045144 2024-02-23 17:09:12.318 2024-02-23 17:09:12.318 16600 FEE 436417 14552 6045145 2024-02-23 17:09:12.318 2024-02-23 17:09:12.318 149400 TIP 436417 21239 6045146 2024-02-23 17:09:12.878 2024-02-23 17:09:12.878 2100 FEE 434197 9109 6045147 2024-02-23 17:09:12.878 2024-02-23 17:09:12.878 18900 TIP 434197 17827 6045176 2024-02-23 17:10:44.746 2024-02-23 17:10:44.746 2100 FEE 436322 15351 6045177 2024-02-23 17:10:44.746 2024-02-23 17:10:44.746 18900 TIP 436322 20597 6045184 2024-02-23 17:10:59.416 2024-02-23 17:10:59.416 4200 FEE 435954 20776 6045185 2024-02-23 17:10:59.416 2024-02-23 17:10:59.416 37800 TIP 435954 17517 6045200 2024-02-23 17:11:33.083 2024-02-23 17:11:33.083 2100 FEE 436191 4323 6045201 2024-02-23 17:11:33.083 2024-02-23 17:11:33.083 18900 TIP 436191 20623 6045229 2024-02-23 17:12:25.018 2024-02-23 17:12:25.018 2100 FEE 436326 6041 6045230 2024-02-23 17:12:25.018 2024-02-23 17:12:25.018 18900 TIP 436326 21334 6045241 2024-02-23 17:12:40.035 2024-02-23 17:12:40.035 2100 FEE 436197 19732 6045242 2024-02-23 17:12:40.035 2024-02-23 17:12:40.035 18900 TIP 436197 15119 6045247 2024-02-23 17:12:41.669 2024-02-23 17:12:41.669 2100 FEE 436197 13927 6045248 2024-02-23 17:12:41.669 2024-02-23 17:12:41.669 18900 TIP 436197 18199 6045259 2024-02-23 17:14:28.112 2024-02-23 17:14:28.112 2100 FEE 435944 7913 6045260 2024-02-23 17:14:28.112 2024-02-23 17:14:28.112 18900 TIP 435944 5703 6045290 2024-02-23 17:16:05.542 2024-02-23 17:16:05.542 2300 FEE 436437 20058 6045291 2024-02-23 17:16:05.542 2024-02-23 17:16:05.542 20700 TIP 436437 18423 6045304 2024-02-23 17:16:06.524 2024-02-23 17:16:06.524 2300 FEE 436437 19663 6045305 2024-02-23 17:16:06.524 2024-02-23 17:16:06.524 20700 TIP 436437 21522 6045328 2024-02-23 17:16:08.809 2024-02-23 17:16:08.809 2300 FEE 436437 8448 6045329 2024-02-23 17:16:08.809 2024-02-23 17:16:08.809 20700 TIP 436437 19848 6045360 2024-02-23 17:16:11.587 2024-02-23 17:16:11.587 2300 FEE 436437 9183 6045361 2024-02-23 17:16:11.587 2024-02-23 17:16:11.587 20700 TIP 436437 14295 6045368 2024-02-23 17:16:12.061 2024-02-23 17:16:12.061 2300 FEE 436437 19121 6045369 2024-02-23 17:16:12.061 2024-02-23 17:16:12.061 20700 TIP 436437 19821 6045390 2024-02-23 17:18:26.604 2024-02-23 17:18:26.604 1000 FEE 436322 2016 6045391 2024-02-23 17:18:26.604 2024-02-23 17:18:26.604 9000 TIP 436322 18378 6045405 2024-02-23 17:18:43.733 2024-02-23 17:18:43.733 2300 FEE 436437 14950 6045406 2024-02-23 17:18:43.733 2024-02-23 17:18:43.733 20700 TIP 436437 647 6045407 2024-02-23 17:18:43.858 2024-02-23 17:18:43.858 2300 FEE 436437 12072 6045408 2024-02-23 17:18:43.858 2024-02-23 17:18:43.858 20700 TIP 436437 717 6045417 2024-02-23 17:18:44.533 2024-02-23 17:18:44.533 2300 FEE 436437 21398 6045418 2024-02-23 17:18:44.533 2024-02-23 17:18:44.533 20700 TIP 436437 9261 6045427 2024-02-23 17:18:45.218 2024-02-23 17:18:45.218 2300 FEE 436437 2285 6045428 2024-02-23 17:18:45.218 2024-02-23 17:18:45.218 20700 TIP 436437 998 6045458 2024-02-23 17:19:27.996 2024-02-23 17:19:27.996 1000 FEE 436447 10056 6045462 2024-02-23 17:19:49.949 2024-02-23 17:19:49.949 2300 FEE 436396 10342 6045463 2024-02-23 17:19:49.949 2024-02-23 17:19:49.949 20700 TIP 436396 5694 6045479 2024-02-23 17:20:37.083 2024-02-23 17:20:37.083 100 FEE 435751 1552 6045480 2024-02-23 17:20:37.083 2024-02-23 17:20:37.083 900 TIP 435751 9969 6045485 2024-02-23 17:20:37.513 2024-02-23 17:20:37.513 100 FEE 435751 5829 6045486 2024-02-23 17:20:37.513 2024-02-23 17:20:37.513 900 TIP 435751 11897 6045493 2024-02-23 17:20:39.638 2024-02-23 17:20:39.638 100 FEE 435751 10352 6045494 2024-02-23 17:20:39.638 2024-02-23 17:20:39.638 900 TIP 435751 21575 6045521 2024-02-23 17:21:08.756 2024-02-23 17:21:08.756 1000 FEE 436341 652 6045522 2024-02-23 17:21:08.756 2024-02-23 17:21:08.756 9000 TIP 436341 1237 6045526 2024-02-23 17:21:37.913 2024-02-23 17:21:37.913 200 FEE 436444 831 6045527 2024-02-23 17:21:37.913 2024-02-23 17:21:37.913 1800 TIP 436444 14705 6045535 2024-02-23 17:23:05.159 2024-02-23 17:23:05.159 1000 FEE 436374 9099 6045536 2024-02-23 17:23:05.159 2024-02-23 17:23:05.159 9000 TIP 436374 19661 6045539 2024-02-23 17:23:07.786 2024-02-23 17:23:07.786 2300 FEE 436449 9496 6045540 2024-02-23 17:23:07.786 2024-02-23 17:23:07.786 20700 TIP 436449 2537 6045554 2024-02-23 17:23:59.49 2024-02-23 17:23:59.49 1000 FEE 436244 21136 6045555 2024-02-23 17:23:59.49 2024-02-23 17:23:59.49 9000 TIP 436244 17291 6045602 2024-02-23 17:28:52.073 2024-02-23 17:28:52.073 800 FEE 435346 17714 6045603 2024-02-23 17:28:52.073 2024-02-23 17:28:52.073 7200 TIP 435346 19484 6045612 2024-02-23 17:29:07.818 2024-02-23 17:29:07.818 800 FEE 435438 1823 6045613 2024-02-23 17:29:07.818 2024-02-23 17:29:07.818 7200 TIP 435438 5701 6045631 2024-02-23 17:30:49.932 2024-02-23 17:30:49.932 3300 FEE 435631 20102 6045632 2024-02-23 17:30:49.932 2024-02-23 17:30:49.932 29700 TIP 435631 2016 6045636 2024-02-23 17:31:04.493 2024-02-23 17:31:04.493 3300 FEE 436424 1245 6045637 2024-02-23 17:31:04.493 2024-02-23 17:31:04.493 29700 TIP 436424 14295 6045651 2024-02-23 17:31:29.79 2024-02-23 17:31:29.79 1000 FEE 436372 17392 6045652 2024-02-23 17:31:29.79 2024-02-23 17:31:29.79 9000 TIP 436372 9494 6045686 2024-02-23 17:32:41.807 2024-02-23 17:32:41.807 3300 FEE 436438 16424 6045687 2024-02-23 17:32:41.807 2024-02-23 17:32:41.807 29700 TIP 436438 13878 6045702 2024-02-23 17:33:57.428 2024-02-23 17:33:57.428 3300 FEE 436391 19335 6045703 2024-02-23 17:33:57.428 2024-02-23 17:33:57.428 29700 TIP 436391 14545 6045708 2024-02-23 17:34:07.788 2024-02-23 17:34:07.788 1000 FEE 436333 10519 6045709 2024-02-23 17:34:07.788 2024-02-23 17:34:07.788 9000 TIP 436333 12911 6045727 2024-02-23 17:35:26.073 2024-02-23 17:35:26.073 1000 FEE 436445 10409 6045728 2024-02-23 17:35:26.073 2024-02-23 17:35:26.073 9000 TIP 436445 13759 6045114 2024-02-23 17:07:55.251 2024-02-23 17:07:55.251 100 FEE 436321 1030 6045115 2024-02-23 17:07:55.251 2024-02-23 17:07:55.251 900 TIP 436321 9333 6045123 2024-02-23 17:08:17.374 2024-02-23 17:08:17.374 2100 FEE 436322 1650 6045124 2024-02-23 17:08:17.374 2024-02-23 17:08:17.374 18900 TIP 436322 21119 6045129 2024-02-23 17:08:23.85 2024-02-23 17:08:23.85 8300 FEE 436413 18637 6045130 2024-02-23 17:08:23.85 2024-02-23 17:08:23.85 74700 TIP 436413 827 6045142 2024-02-23 17:09:12.182 2024-02-23 17:09:12.182 2100 FEE 434197 20616 6045143 2024-02-23 17:09:12.182 2024-02-23 17:09:12.182 18900 TIP 434197 5500 6045159 2024-02-23 17:10:20.764 2024-02-23 17:10:20.764 2100 FEE 435847 3347 6045160 2024-02-23 17:10:20.764 2024-02-23 17:10:20.764 18900 TIP 435847 18068 6045186 2024-02-23 17:11:01.052 2024-02-23 17:11:01.052 2100 FEE 435954 20979 6045187 2024-02-23 17:11:01.052 2024-02-23 17:11:01.052 18900 TIP 435954 4166 6045195 2024-02-23 17:11:16.22 2024-02-23 17:11:16.22 2100 FEE 436241 5752 6045196 2024-02-23 17:11:16.22 2024-02-23 17:11:16.22 18900 TIP 436241 19566 6045207 2024-02-23 17:11:42.782 2024-02-23 17:11:42.782 2100 FEE 436181 1291 6045208 2024-02-23 17:11:42.782 2024-02-23 17:11:42.782 18900 TIP 436181 9985 6045223 2024-02-23 17:12:24.209 2024-02-23 17:12:24.209 2100 FEE 436326 16679 6045224 2024-02-23 17:12:24.209 2024-02-23 17:12:24.209 18900 TIP 436326 2402 6045256 2024-02-23 17:13:27.051 2024-02-23 17:13:27.051 2100 FEE 435675 3461 6045257 2024-02-23 17:13:27.051 2024-02-23 17:13:27.051 18900 TIP 435675 671 6045268 2024-02-23 17:15:27.91 2024-02-23 17:15:27.91 100 FEE 432328 9355 6045269 2024-02-23 17:15:27.91 2024-02-23 17:15:27.91 900 TIP 432328 999 6045272 2024-02-23 17:15:54.033 2024-02-23 17:15:54.033 1000 FEE 436439 12744 6045300 2024-02-23 17:16:06.234 2024-02-23 17:16:06.234 2300 FEE 436437 2460 6045301 2024-02-23 17:16:06.234 2024-02-23 17:16:06.234 20700 TIP 436437 18313 6045316 2024-02-23 17:16:07.351 2024-02-23 17:16:07.351 2300 FEE 436437 2718 6045317 2024-02-23 17:16:07.351 2024-02-23 17:16:07.351 20700 TIP 436437 900 6045336 2024-02-23 17:16:09.442 2024-02-23 17:16:09.442 2300 FEE 436437 15594 6045337 2024-02-23 17:16:09.442 2024-02-23 17:16:09.442 20700 TIP 436437 17710 6045356 2024-02-23 17:16:11.309 2024-02-23 17:16:11.309 2300 FEE 436437 1000 6045357 2024-02-23 17:16:11.309 2024-02-23 17:16:11.309 20700 TIP 436437 18378 6045362 2024-02-23 17:16:11.742 2024-02-23 17:16:11.742 2300 FEE 436437 5455 6045363 2024-02-23 17:16:11.742 2024-02-23 17:16:11.742 20700 TIP 436437 20187 6045374 2024-02-23 17:16:12.471 2024-02-23 17:16:12.471 2300 FEE 436437 9347 6045375 2024-02-23 17:16:12.471 2024-02-23 17:16:12.471 20700 TIP 436437 19105 6045379 2024-02-23 17:16:52.837 2024-02-23 17:16:52.837 1100 FEE 436322 5829 6045380 2024-02-23 17:16:52.837 2024-02-23 17:16:52.837 9900 TIP 436322 20754 6045382 2024-02-23 17:17:24.46 2024-02-23 17:17:24.46 1000 FEE 436443 18769 6045421 2024-02-23 17:18:44.818 2024-02-23 17:18:44.818 2300 FEE 436437 1060 6045422 2024-02-23 17:18:44.818 2024-02-23 17:18:44.818 20700 TIP 436437 13878 6045441 2024-02-23 17:18:46.22 2024-02-23 17:18:46.22 2300 FEE 436437 9438 6045442 2024-02-23 17:18:46.22 2024-02-23 17:18:46.22 20700 TIP 436437 17001 6045460 2024-02-23 17:19:49.829 2024-02-23 17:19:49.829 4600 FEE 436396 12265 6045461 2024-02-23 17:19:49.829 2024-02-23 17:19:49.829 41400 TIP 436396 18994 6045469 2024-02-23 17:20:24.498 2024-02-23 17:20:24.498 1000 FEE 436450 20187 6045470 2024-02-23 17:20:24.739 2024-02-23 17:20:24.739 1600 FEE 436442 18626 6045471 2024-02-23 17:20:24.739 2024-02-23 17:20:24.739 14400 TIP 436442 21139 6045501 2024-02-23 17:20:45.723 2024-02-23 17:20:45.723 2300 FEE 436445 2709 6045502 2024-02-23 17:20:45.723 2024-02-23 17:20:45.723 20700 TIP 436445 16354 6045513 2024-02-23 17:21:04.104 2024-02-23 17:21:04.104 1000 FEE 436412 18269 6045514 2024-02-23 17:21:04.104 2024-02-23 17:21:04.104 9000 TIP 436412 16357 6045552 2024-02-23 17:23:48.055 2024-02-23 17:23:48.055 4000 FEE 436413 16356 6045553 2024-02-23 17:23:48.055 2024-02-23 17:23:48.055 36000 TIP 436413 19502 6045557 2024-02-23 17:24:13.229 2024-02-23 17:24:13.229 1000 FEE 436456 9496 6045566 2024-02-23 17:25:01.28 2024-02-23 17:25:01.28 1000 FEE 436272 1092 6045567 2024-02-23 17:25:01.28 2024-02-23 17:25:01.28 9000 TIP 436272 16126 6045581 2024-02-23 17:28:00.387 2024-02-23 17:28:00.387 1600 FEE 435579 19332 6045582 2024-02-23 17:28:00.387 2024-02-23 17:28:00.387 14400 TIP 435579 13854 6045586 2024-02-23 17:28:04.907 2024-02-23 17:28:04.907 1600 FEE 435284 20156 6045587 2024-02-23 17:28:04.907 2024-02-23 17:28:04.907 14400 TIP 435284 16842 6045594 2024-02-23 17:28:33.712 2024-02-23 17:28:33.712 800 FEE 435928 6555 6045595 2024-02-23 17:28:33.712 2024-02-23 17:28:33.712 7200 TIP 435928 5017 6045618 2024-02-23 17:29:52.371 2024-02-23 17:29:52.371 1000 POLL 436323 2514 6045621 2024-02-23 17:29:53.488 2024-02-23 17:29:53.488 6600 FEE 435610 17727 6045622 2024-02-23 17:29:53.488 2024-02-23 17:29:53.488 59400 TIP 435610 19033 6045658 2024-02-23 17:31:49.169 2024-02-23 17:31:49.169 8300 FEE 436459 979 6045659 2024-02-23 17:31:49.169 2024-02-23 17:31:49.169 74700 TIP 436459 9177 6045676 2024-02-23 17:31:51.642 2024-02-23 17:31:51.642 8300 FEE 436459 21612 6045677 2024-02-23 17:31:51.642 2024-02-23 17:31:51.642 74700 TIP 436459 21498 6045678 2024-02-23 17:31:51.773 2024-02-23 17:31:51.773 8300 FEE 436459 20551 6045679 2024-02-23 17:31:51.773 2024-02-23 17:31:51.773 74700 TIP 436459 4064 6045694 2024-02-23 17:33:48.106 2024-02-23 17:33:48.106 21000 FEE 436466 6616 6045704 2024-02-23 17:33:59.92 2024-02-23 17:33:59.92 1000 FEE 436468 21262 6045717 2024-02-23 17:35:02.387 2024-02-23 17:35:02.387 1000 FEE 436472 16214 6045719 2024-02-23 17:35:04.539 2024-02-23 17:35:04.539 1000 FEE 436451 18230 6045720 2024-02-23 17:35:04.539 2024-02-23 17:35:04.539 9000 TIP 436451 20811 6045730 2024-02-23 17:35:40.54 2024-02-23 17:35:40.54 2300 FEE 436471 9496 6045731 2024-02-23 17:35:40.54 2024-02-23 17:35:40.54 20700 TIP 436471 14857 6045734 2024-02-23 17:35:40.843 2024-02-23 17:35:40.843 2300 FEE 436471 9331 6045735 2024-02-23 17:35:40.843 2024-02-23 17:35:40.843 20700 TIP 436471 17201 6045755 2024-02-23 17:37:00.099 2024-02-23 17:37:00.099 27000 FEE 436466 2342 6045756 2024-02-23 17:37:00.099 2024-02-23 17:37:00.099 243000 TIP 436466 6268 6045759 2024-02-23 17:37:01.846 2024-02-23 17:37:01.846 1000 FEE 435682 14941 6045760 2024-02-23 17:37:01.846 2024-02-23 17:37:01.846 9000 TIP 435682 5828 6045770 2024-02-23 17:37:18.64 2024-02-23 17:37:18.64 1000 FEE 436475 20588 6045771 2024-02-23 17:37:18.64 2024-02-23 17:37:18.64 9000 TIP 436475 886 6045785 2024-02-23 17:37:23.413 2024-02-23 17:37:23.413 27000 FEE 435906 12220 6045157 2024-02-23 17:10:20.637 2024-02-23 17:10:20.637 2100 FEE 435847 2327 6045158 2024-02-23 17:10:20.637 2024-02-23 17:10:20.637 18900 TIP 435847 5112 6045163 2024-02-23 17:10:21.274 2024-02-23 17:10:21.274 2100 FEE 435847 10056 6045164 2024-02-23 17:10:21.274 2024-02-23 17:10:21.274 18900 TIP 435847 21391 6045180 2024-02-23 17:10:57.237 2024-02-23 17:10:57.237 2100 FEE 435954 10731 6045181 2024-02-23 17:10:57.237 2024-02-23 17:10:57.237 18900 TIP 435954 14545 6045193 2024-02-23 17:11:13.392 2024-02-23 17:11:13.392 100 FEE 436242 21352 6045194 2024-02-23 17:11:13.392 2024-02-23 17:11:13.392 900 TIP 436242 1549 6045205 2024-02-23 17:11:42.257 2024-02-23 17:11:42.257 10000 FEE 436323 18274 6045206 2024-02-23 17:11:42.257 2024-02-23 17:11:42.257 90000 TIP 436323 19943 6045209 2024-02-23 17:11:47.536 2024-02-23 17:11:47.536 100 FEE 436181 19890 6045210 2024-02-23 17:11:47.536 2024-02-23 17:11:47.536 900 TIP 436181 9450 6045235 2024-02-23 17:12:27.598 2024-02-23 17:12:27.598 2100 FEE 436326 20133 6045236 2024-02-23 17:12:27.598 2024-02-23 17:12:27.598 18900 TIP 436326 17209 6045261 2024-02-23 17:14:33.066 2024-02-23 17:14:33.066 3000 FEE 436261 19633 6045262 2024-02-23 17:14:33.066 2024-02-23 17:14:33.066 27000 TIP 436261 2681 6045277 2024-02-23 17:16:03.301 2024-02-23 17:16:03.301 2300 FEE 436437 10934 6045278 2024-02-23 17:16:03.301 2024-02-23 17:16:03.301 20700 TIP 436437 1585 6045279 2024-02-23 17:16:03.365 2024-02-23 17:16:03.365 2300 FEE 436437 4973 6045280 2024-02-23 17:16:03.365 2024-02-23 17:16:03.365 20700 TIP 436437 18016 6045285 2024-02-23 17:16:04.042 2024-02-23 17:16:04.042 6900 FEE 436437 10862 6045286 2024-02-23 17:16:04.042 2024-02-23 17:16:04.042 62100 TIP 436437 19570 6045292 2024-02-23 17:16:05.68 2024-02-23 17:16:05.68 2300 FEE 436437 2342 6045293 2024-02-23 17:16:05.68 2024-02-23 17:16:05.68 20700 TIP 436437 726 6045318 2024-02-23 17:16:07.51 2024-02-23 17:16:07.51 2300 FEE 436437 16059 6045319 2024-02-23 17:16:07.51 2024-02-23 17:16:07.51 20700 TIP 436437 1060 6045338 2024-02-23 17:16:09.563 2024-02-23 17:16:09.563 2300 FEE 436437 3392 6045339 2024-02-23 17:16:09.563 2024-02-23 17:16:09.563 20700 TIP 436437 19282 6045340 2024-02-23 17:16:09.693 2024-02-23 17:16:09.693 2300 FEE 436437 17091 6045341 2024-02-23 17:16:09.693 2024-02-23 17:16:09.693 20700 TIP 436437 18557 6045352 2024-02-23 17:16:11.028 2024-02-23 17:16:11.028 2300 FEE 436437 4304 6045353 2024-02-23 17:16:11.028 2024-02-23 17:16:11.028 20700 TIP 436437 11670 6045358 2024-02-23 17:16:11.461 2024-02-23 17:16:11.461 2300 FEE 436437 12959 6045359 2024-02-23 17:16:11.461 2024-02-23 17:16:11.461 20700 TIP 436437 9333 6045364 2024-02-23 17:16:11.885 2024-02-23 17:16:11.885 1100 FEE 436273 19570 6045365 2024-02-23 17:16:11.885 2024-02-23 17:16:11.885 9900 TIP 436273 1208 6045383 2024-02-23 17:17:26.872 2024-02-23 17:17:26.872 3000 FEE 436241 19689 6045384 2024-02-23 17:17:26.872 2024-02-23 17:17:26.872 27000 TIP 436241 21067 6045389 2024-02-23 17:18:05.246 2024-02-23 17:18:05.246 10000 FEE 436445 11075 6045393 2024-02-23 17:18:41.629 2024-02-23 17:18:41.629 1000 FEE 436443 21242 6045394 2024-02-23 17:18:41.629 2024-02-23 17:18:41.629 9000 TIP 436443 20454 6045409 2024-02-23 17:18:44.004 2024-02-23 17:18:44.004 2300 FEE 436437 12911 6045410 2024-02-23 17:18:44.004 2024-02-23 17:18:44.004 20700 TIP 436437 13177 6045411 2024-02-23 17:18:44.12 2024-02-23 17:18:44.12 2300 FEE 436437 10849 6045412 2024-02-23 17:18:44.12 2024-02-23 17:18:44.12 20700 TIP 436437 20208 6045454 2024-02-23 17:19:18.147 2024-02-23 17:19:18.147 1000 FEE 436281 825 6045455 2024-02-23 17:19:18.147 2024-02-23 17:19:18.147 9000 TIP 436281 1122 6045468 2024-02-23 17:20:19.682 2024-02-23 17:20:19.682 0 FEE 368845 18637 6045491 2024-02-23 17:20:39.346 2024-02-23 17:20:39.346 100 FEE 435751 704 6045492 2024-02-23 17:20:39.346 2024-02-23 17:20:39.346 900 TIP 435751 18314 6045495 2024-02-23 17:20:40.596 2024-02-23 17:20:40.596 200 FEE 435751 12160 6045496 2024-02-23 17:20:40.596 2024-02-23 17:20:40.596 1800 TIP 435751 2640 6045516 2024-02-23 17:21:05.634 2024-02-23 17:21:05.634 1000 FEE 436440 20624 6045517 2024-02-23 17:21:05.634 2024-02-23 17:21:05.634 9000 TIP 436440 7674 6045519 2024-02-23 17:21:08.568 2024-02-23 17:21:08.568 1000 FEE 436341 19303 6045520 2024-02-23 17:21:08.568 2024-02-23 17:21:08.568 9000 TIP 436341 21044 6045523 2024-02-23 17:21:32.999 2024-02-23 17:21:32.999 1000 FEE 436453 19033 6045528 2024-02-23 17:21:39.124 2024-02-23 17:21:39.124 200 FEE 436444 12024 6045529 2024-02-23 17:21:39.124 2024-02-23 17:21:39.124 1800 TIP 436444 9334 6045533 2024-02-23 17:23:01.366 2024-02-23 17:23:01.366 1000 FEE 436454 9352 6045545 2024-02-23 17:23:21.239 2024-02-23 17:23:21.239 1000 FEE 436455 2640 6045561 2024-02-23 17:24:42.464 2024-02-23 17:24:42.464 1000 FEE 436325 2775 6045562 2024-02-23 17:24:42.464 2024-02-23 17:24:42.464 9000 TIP 436325 5597 6045564 2024-02-23 17:24:57.943 2024-02-23 17:24:57.943 1000 FEE 436261 18989 6045565 2024-02-23 17:24:57.943 2024-02-23 17:24:57.943 9000 TIP 436261 925 6045583 2024-02-23 17:28:02.319 2024-02-23 17:28:02.319 1600 FEE 435746 21458 6045584 2024-02-23 17:28:02.319 2024-02-23 17:28:02.319 14400 TIP 435746 21391 6045614 2024-02-23 17:29:18.213 2024-02-23 17:29:18.213 1000 FEE 436254 21398 6045615 2024-02-23 17:29:18.213 2024-02-23 17:29:18.213 9000 TIP 436254 889 6045619 2024-02-23 17:29:52.567 2024-02-23 17:29:52.567 3300 FEE 435610 9517 6045620 2024-02-23 17:29:52.567 2024-02-23 17:29:52.567 29700 TIP 435610 12930 6045624 2024-02-23 17:30:28.196 2024-02-23 17:30:28.196 1000 FEE 436461 16230 6045625 2024-02-23 17:30:29.754 2024-02-23 17:30:29.754 10000 FEE 436462 19488 6045640 2024-02-23 17:31:04.922 2024-02-23 17:31:04.922 3300 FEE 436424 2529 6045641 2024-02-23 17:31:04.922 2024-02-23 17:31:04.922 29700 TIP 436424 1718 6045654 2024-02-23 17:31:48.937 2024-02-23 17:31:48.937 8300 FEE 436459 16296 6045655 2024-02-23 17:31:48.937 2024-02-23 17:31:48.937 74700 TIP 436459 1030 6045656 2024-02-23 17:31:49.069 2024-02-23 17:31:49.069 8300 FEE 436459 6148 6045657 2024-02-23 17:31:49.069 2024-02-23 17:31:49.069 74700 TIP 436459 18751 6045690 2024-02-23 17:32:43.745 2024-02-23 17:32:43.745 3300 FEE 436413 6360 6045691 2024-02-23 17:32:43.745 2024-02-23 17:32:43.745 29700 TIP 436413 20026 6045695 2024-02-23 17:33:48.218 2024-02-23 17:33:48.218 3300 FEE 436273 20849 6045696 2024-02-23 17:33:48.218 2024-02-23 17:33:48.218 29700 TIP 436273 21599 6045714 2024-02-23 17:34:47.146 2024-02-23 17:34:47.146 1000 FEE 436469 20276 6045732 2024-02-23 17:35:40.696 2024-02-23 17:35:40.696 2300 FEE 436471 11698 6045733 2024-02-23 17:35:40.696 2024-02-23 17:35:40.696 20700 TIP 436471 14247 6045742 2024-02-23 17:36:12.606 2024-02-23 17:36:12.606 1000 FEE 436410 714 6045743 2024-02-23 17:36:12.606 2024-02-23 17:36:12.606 9000 TIP 436410 14195 6045774 2024-02-23 17:37:19.492 2024-02-23 17:37:19.492 1000 FEE 436475 14959 6045775 2024-02-23 17:37:19.492 2024-02-23 17:37:19.492 9000 TIP 436475 21139 6045778 2024-02-23 17:37:20.219 2024-02-23 17:37:20.219 1000 FEE 436475 9351 6045779 2024-02-23 17:37:20.219 2024-02-23 17:37:20.219 9000 TIP 436475 19668 6045795 2024-02-23 17:38:16.088 2024-02-23 17:38:16.088 1000 FEE 436481 2528 6045799 2024-02-23 17:38:38.969 2024-02-23 17:38:38.969 1000 FEE 436298 19952 6045800 2024-02-23 17:38:38.969 2024-02-23 17:38:38.969 9000 TIP 436298 9 6045825 2024-02-23 17:41:20.365 2024-02-23 17:41:20.365 1000 FEE 436485 18005 6045832 2024-02-23 17:42:09.378 2024-02-23 17:42:09.378 1000 FEE 436488 16296 6045843 2024-02-23 17:44:45.714 2024-02-23 17:44:45.714 1000 FEE 436412 12744 6045844 2024-02-23 17:44:45.714 2024-02-23 17:44:45.714 9000 TIP 436412 1632 6045258 2024-02-23 17:14:04.154 2024-02-23 17:14:04.154 1000 STREAM 141924 20683 6045265 2024-02-23 17:15:04.161 2024-02-23 17:15:04.161 1000 STREAM 141924 2016 6045388 2024-02-23 17:18:04.181 2024-02-23 17:18:04.181 1000 STREAM 141924 12959 6045465 2024-02-23 17:20:04.206 2024-02-23 17:20:04.206 1000 STREAM 141924 10519 6045515 2024-02-23 17:21:04.213 2024-02-23 17:21:04.213 1000 STREAM 141924 4043 6045534 2024-02-23 17:23:04.223 2024-02-23 17:23:04.223 1000 STREAM 141924 2942 6045556 2024-02-23 17:24:04.23 2024-02-23 17:24:04.23 1000 STREAM 141924 18051 6045569 2024-02-23 17:26:04.234 2024-02-23 17:26:04.234 1000 STREAM 141924 10398 6045572 2024-02-23 17:27:04.25 2024-02-23 17:27:04.25 1000 STREAM 141924 16357 6045585 2024-02-23 17:28:04.251 2024-02-23 17:28:04.251 1000 STREAM 141924 726 6045608 2024-02-23 17:29:04.26 2024-02-23 17:29:04.26 1000 STREAM 141924 18357 6045684 2024-02-23 17:32:04.267 2024-02-23 17:32:04.267 1000 STREAM 141924 9985 6045692 2024-02-23 17:33:04.279 2024-02-23 17:33:04.279 1000 STREAM 141924 13767 6045707 2024-02-23 17:34:04.277 2024-02-23 17:34:04.277 1000 STREAM 141924 18836 6045718 2024-02-23 17:35:04.272 2024-02-23 17:35:04.272 1000 STREAM 141924 20969 6045741 2024-02-23 17:36:04.33 2024-02-23 17:36:04.33 1000 STREAM 141924 19524 6045808 2024-02-23 17:39:04.349 2024-02-23 17:39:04.349 1000 STREAM 141924 15978 6045814 2024-02-23 17:40:04.368 2024-02-23 17:40:04.368 1000 STREAM 141924 9177 6045824 2024-02-23 17:41:04.334 2024-02-23 17:41:04.334 1000 STREAM 141924 20871 6045834 2024-02-23 17:43:04.354 2024-02-23 17:43:04.354 1000 STREAM 141924 19333 6045838 2024-02-23 17:44:04.351 2024-02-23 17:44:04.351 1000 STREAM 141924 20087 6045864 2024-02-23 17:46:04.361 2024-02-23 17:46:04.361 1000 STREAM 141924 18008 6112861 2024-02-29 14:27:35.906 2024-02-29 14:27:35.906 1000 FEE 443552 18178 6112876 2024-02-29 14:29:36.765 2024-02-29 14:29:36.765 1000 FEE 443558 19031 6112905 2024-02-29 14:32:14.178 2024-02-29 14:32:14.178 2100 FEE 443545 18412 6112906 2024-02-29 14:32:14.178 2024-02-29 14:32:14.178 18900 TIP 443545 19652 6112917 2024-02-29 14:33:00.156 2024-02-29 14:33:00.156 1000 FEE 443569 17592 6112919 2024-02-29 14:33:02.272 2024-02-29 14:33:02.272 2100 FEE 443467 19037 6112920 2024-02-29 14:33:02.272 2024-02-29 14:33:02.272 18900 TIP 443467 7903 6112950 2024-02-29 14:34:53.91 2024-02-29 14:34:53.91 500 FEE 443272 12265 6112951 2024-02-29 14:34:53.91 2024-02-29 14:34:53.91 4500 TIP 443272 21605 6113016 2024-02-29 14:35:20.267 2024-02-29 14:35:20.267 7700 FEE 443179 4102 6113017 2024-02-29 14:35:20.267 2024-02-29 14:35:20.267 69300 TIP 443179 993 6113042 2024-02-29 14:35:47.93 2024-02-29 14:35:47.93 7700 FEE 443339 18363 6113043 2024-02-29 14:35:47.93 2024-02-29 14:35:47.93 69300 TIP 443339 4798 6113050 2024-02-29 14:35:54.664 2024-02-29 14:35:54.664 2100 FEE 443483 19615 6113051 2024-02-29 14:35:54.664 2024-02-29 14:35:54.664 18900 TIP 443483 2757 6113080 2024-02-29 14:36:53.414 2024-02-29 14:36:53.414 2100 FEE 443312 13931 6113081 2024-02-29 14:36:53.414 2024-02-29 14:36:53.414 18900 TIP 443312 954 6113086 2024-02-29 14:37:10.402 2024-02-29 14:37:10.402 10000 FEE 443579 15049 6113089 2024-02-29 14:37:21.362 2024-02-29 14:37:21.362 500 FEE 443553 4225 6113090 2024-02-29 14:37:21.362 2024-02-29 14:37:21.362 4500 TIP 443553 1512 6113191 2024-02-29 14:42:02.267 2024-02-29 14:42:02.267 1100 FEE 443423 9427 6113192 2024-02-29 14:42:02.267 2024-02-29 14:42:02.267 9900 TIP 443423 8729 6113204 2024-02-29 14:42:03.358 2024-02-29 14:42:03.358 300 FEE 442904 18403 6113205 2024-02-29 14:42:03.358 2024-02-29 14:42:03.358 2700 TIP 442904 657 6113210 2024-02-29 14:42:04.022 2024-02-29 14:42:04.022 300 FEE 442904 14357 6113211 2024-02-29 14:42:04.022 2024-02-29 14:42:04.022 2700 TIP 442904 15521 6113252 2024-02-29 14:44:01.844 2024-02-29 14:44:01.844 1700 FEE 443559 4059 6113253 2024-02-29 14:44:01.844 2024-02-29 14:44:01.844 15300 TIP 443559 19996 6113261 2024-02-29 14:44:37.574 2024-02-29 14:44:37.574 300 FEE 443099 9307 6113262 2024-02-29 14:44:37.574 2024-02-29 14:44:37.574 2700 TIP 443099 1576 6113265 2024-02-29 14:44:39.606 2024-02-29 14:44:39.606 300 FEE 443268 18291 6113266 2024-02-29 14:44:39.606 2024-02-29 14:44:39.606 2700 TIP 443268 4314 6113277 2024-02-29 14:45:51.055 2024-02-29 14:45:51.055 2700 FEE 443319 11789 6113278 2024-02-29 14:45:51.055 2024-02-29 14:45:51.055 24300 TIP 443319 20381 6113281 2024-02-29 14:45:51.454 2024-02-29 14:45:51.454 2700 FEE 443319 16250 6113282 2024-02-29 14:45:51.454 2024-02-29 14:45:51.454 24300 TIP 443319 736 6113295 2024-02-29 14:46:37.94 2024-02-29 14:46:37.94 1600 FEE 443583 19533 6113296 2024-02-29 14:46:37.94 2024-02-29 14:46:37.94 14400 TIP 443583 18178 6113311 2024-02-29 14:47:32.402 2024-02-29 14:47:32.402 1000 FEE 443596 19243 6113314 2024-02-29 14:48:22.464 2024-02-29 14:48:22.464 1600 FEE 443589 11018 6113315 2024-02-29 14:48:22.464 2024-02-29 14:48:22.464 14400 TIP 443589 17212 6113334 2024-02-29 14:50:00.94 2024-02-29 14:50:00.94 100 FEE 443583 18209 6113335 2024-02-29 14:50:00.94 2024-02-29 14:50:00.94 900 TIP 443583 1605 6113343 2024-02-29 14:50:07.721 2024-02-29 14:50:07.721 1000 FEE 443601 16830 6113356 2024-02-29 14:50:52.89 2024-02-29 14:50:52.89 7700 FEE 443577 18138 6113357 2024-02-29 14:50:52.89 2024-02-29 14:50:52.89 69300 TIP 443577 18945 6113374 2024-02-29 14:51:11.504 2024-02-29 14:51:11.504 2100 FEE 443579 3353 6113375 2024-02-29 14:51:11.504 2024-02-29 14:51:11.504 18900 TIP 443579 12774 6113378 2024-02-29 14:51:49.29 2024-02-29 14:51:49.29 1600 FEE 443593 21079 6113379 2024-02-29 14:51:49.29 2024-02-29 14:51:49.29 14400 TIP 443593 13097 6113385 2024-02-29 14:52:28.911 2024-02-29 14:52:28.911 0 FEE 443608 18378 6113395 2024-02-29 14:53:25.665 2024-02-29 14:53:25.665 3300 FEE 443583 670 6113396 2024-02-29 14:53:25.665 2024-02-29 14:53:25.665 29700 TIP 443583 1221 6113416 2024-02-29 14:54:39.316 2024-02-29 14:54:39.316 1000 FEE 443615 14169 6113417 2024-02-29 14:55:01.201 2024-02-29 14:55:01.201 2500 FEE 443319 712 6113418 2024-02-29 14:55:01.201 2024-02-29 14:55:01.201 22500 TIP 443319 993 6113437 2024-02-29 14:56:03.107 2024-02-29 14:56:03.107 400 FEE 443604 6202 6113438 2024-02-29 14:56:03.107 2024-02-29 14:56:03.107 3600 TIP 443604 20162 6113439 2024-02-29 14:56:04.017 2024-02-29 14:56:04.017 400 FEE 443048 18114 6113440 2024-02-29 14:56:04.017 2024-02-29 14:56:04.017 3600 TIP 443048 16229 6113464 2024-02-29 14:57:08.362 2024-02-29 14:57:08.362 7700 FEE 443617 8535 6113465 2024-02-29 14:57:08.362 2024-02-29 14:57:08.362 69300 TIP 443617 650 6113466 2024-02-29 14:57:08.383 2024-02-29 14:57:08.383 7700 FEE 443617 18051 6113467 2024-02-29 14:57:08.383 2024-02-29 14:57:08.383 69300 TIP 443617 18994 6113484 2024-02-29 14:57:10.505 2024-02-29 14:57:10.505 7700 FEE 443617 19044 6113485 2024-02-29 14:57:10.505 2024-02-29 14:57:10.505 69300 TIP 443617 5775 6113530 2024-02-29 14:59:03.533 2024-02-29 14:59:03.533 1000 FEE 443628 10862 6113534 2024-02-29 14:59:09.396 2024-02-29 14:59:09.396 100 FEE 443578 18357 6113535 2024-02-29 14:59:09.396 2024-02-29 14:59:09.396 900 TIP 443578 2614 6113548 2024-02-29 14:59:33.898 2024-02-29 14:59:33.898 1700 FEE 443616 708 6113549 2024-02-29 14:59:33.898 2024-02-29 14:59:33.898 15300 TIP 443616 7983 6113551 2024-02-29 14:59:44.099 2024-02-29 14:59:44.099 1000 FEE 443634 18989 6113614 2024-02-29 15:01:22.58 2024-02-29 15:01:22.58 1000 FEE 443645 21457 6113625 2024-02-29 15:02:16.936 2024-02-29 15:02:16.936 1000 FEE 443647 15728 6113647 2024-02-29 15:05:22.858 2024-02-29 15:05:22.858 2700 FEE 443645 1512 6113648 2024-02-29 15:05:22.858 2024-02-29 15:05:22.858 24300 TIP 443645 640 6113653 2024-02-29 15:05:25.573 2024-02-29 15:05:25.573 2700 FEE 443645 7425 6113654 2024-02-29 15:05:25.573 2024-02-29 15:05:25.573 24300 TIP 443645 3544 6113661 2024-02-29 15:05:29.728 2024-02-29 15:05:29.728 2700 FEE 443624 18658 6113662 2024-02-29 15:05:29.728 2024-02-29 15:05:29.728 24300 TIP 443624 13198 6045266 2024-02-23 17:15:20.335 2024-02-23 17:15:20.335 3000 FEE 436336 20185 6045267 2024-02-23 17:15:20.335 2024-02-23 17:15:20.335 27000 TIP 436336 15147 6045271 2024-02-23 17:15:46.52 2024-02-23 17:15:46.52 1000 FEE 436438 775 6045283 2024-02-23 17:16:03.76 2024-02-23 17:16:03.76 2300 FEE 436437 1401 6045284 2024-02-23 17:16:03.76 2024-02-23 17:16:03.76 20700 TIP 436437 19878 6045294 2024-02-23 17:16:05.821 2024-02-23 17:16:05.821 2300 FEE 436437 20254 6045295 2024-02-23 17:16:05.821 2024-02-23 17:16:05.821 20700 TIP 436437 1611 6045302 2024-02-23 17:16:06.395 2024-02-23 17:16:06.395 2300 FEE 436437 13547 6045303 2024-02-23 17:16:06.395 2024-02-23 17:16:06.395 20700 TIP 436437 8985 6045308 2024-02-23 17:16:06.8 2024-02-23 17:16:06.8 2300 FEE 436437 12422 6045309 2024-02-23 17:16:06.8 2024-02-23 17:16:06.8 20700 TIP 436437 16679 6045346 2024-02-23 17:16:10.116 2024-02-23 17:16:10.116 2300 FEE 436437 21019 6045347 2024-02-23 17:16:10.116 2024-02-23 17:16:10.116 20700 TIP 436437 17953 6045372 2024-02-23 17:16:12.352 2024-02-23 17:16:12.352 2300 FEE 436437 9969 6045373 2024-02-23 17:16:12.352 2024-02-23 17:16:12.352 20700 TIP 436437 12158 6045387 2024-02-23 17:17:59.16 2024-02-23 17:17:59.16 21000 FEE 436444 5522 6045397 2024-02-23 17:18:43.234 2024-02-23 17:18:43.234 2300 FEE 436437 666 6045398 2024-02-23 17:18:43.234 2024-02-23 17:18:43.234 20700 TIP 436437 19664 6045433 2024-02-23 17:18:45.636 2024-02-23 17:18:45.636 2300 FEE 436437 20642 6045434 2024-02-23 17:18:45.636 2024-02-23 17:18:45.636 20700 TIP 436437 8535 6045456 2024-02-23 17:19:22.074 2024-02-23 17:19:22.074 1000 FEE 436376 19566 6045457 2024-02-23 17:19:22.074 2024-02-23 17:19:22.074 9000 TIP 436376 19449 6045466 2024-02-23 17:20:10.385 2024-02-23 17:20:10.385 1000 FEE 436243 2293 6045467 2024-02-23 17:20:10.385 2024-02-23 17:20:10.385 9000 TIP 436243 1596 6045472 2024-02-23 17:20:30.998 2024-02-23 17:20:30.998 3000 FEE 436439 18735 6045473 2024-02-23 17:20:30.998 2024-02-23 17:20:30.998 27000 TIP 436439 19533 6045476 2024-02-23 17:20:33.012 2024-02-23 17:20:33.012 2100 FEE 436444 826 6045477 2024-02-23 17:20:33.012 2024-02-23 17:20:33.012 18900 TIP 436444 10493 6045478 2024-02-23 17:20:35.9 2024-02-23 17:20:35.9 1000 FEE 436451 20563 6045499 2024-02-23 17:20:45.422 2024-02-23 17:20:45.422 2100 FEE 436448 19488 6045500 2024-02-23 17:20:45.422 2024-02-23 17:20:45.422 18900 TIP 436448 19500 6045507 2024-02-23 17:20:47.494 2024-02-23 17:20:47.494 1000 FEE 436321 1720 6045508 2024-02-23 17:20:47.494 2024-02-23 17:20:47.494 9000 TIP 436321 21405 6045509 2024-02-23 17:20:54.356 2024-02-23 17:20:54.356 1000 FEE 436304 21164 6045510 2024-02-23 17:20:54.356 2024-02-23 17:20:54.356 9000 TIP 436304 20602 6045524 2024-02-23 17:21:37.658 2024-02-23 17:21:37.658 200 FEE 436444 18076 6045525 2024-02-23 17:21:37.658 2024-02-23 17:21:37.658 1800 TIP 436444 18344 6045546 2024-02-23 17:23:22.17 2024-02-23 17:23:22.17 1000 FEE 436426 7673 6045547 2024-02-23 17:23:22.17 2024-02-23 17:23:22.17 9000 TIP 436426 19043 6045548 2024-02-23 17:23:26.555 2024-02-23 17:23:26.555 2300 FEE 436449 19640 6045549 2024-02-23 17:23:26.555 2024-02-23 17:23:26.555 20700 TIP 436449 5497 6045570 2024-02-23 17:26:53.857 2024-02-23 17:26:53.857 10000 FEE 436326 8648 6045571 2024-02-23 17:26:53.857 2024-02-23 17:26:53.857 90000 TIP 436326 1064 6045574 2024-02-23 17:27:41.432 2024-02-23 17:27:41.432 2100 FEE 435644 12516 6045575 2024-02-23 17:27:41.432 2024-02-23 17:27:41.432 18900 TIP 435644 2952 6045576 2024-02-23 17:27:44.983 2024-02-23 17:27:44.983 100000 FEE 436459 14785 6045596 2024-02-23 17:28:38.041 2024-02-23 17:28:38.041 800 FEE 436437 20889 6045597 2024-02-23 17:28:38.041 2024-02-23 17:28:38.041 7200 TIP 436437 20006 6045630 2024-02-23 17:30:43.336 2024-02-23 17:30:43.336 0 FEE 436462 20243 6045642 2024-02-23 17:31:12.347 2024-02-23 17:31:12.347 1000 FEE 436463 19138 6045645 2024-02-23 17:31:22.148 2024-02-23 17:31:22.148 3300 FEE 436451 16706 6045646 2024-02-23 17:31:22.148 2024-02-23 17:31:22.148 29700 TIP 436451 19601 6045710 2024-02-23 17:34:12.448 2024-02-23 17:34:12.448 1000 FEE 436305 21494 6045711 2024-02-23 17:34:12.448 2024-02-23 17:34:12.448 9000 TIP 436305 20340 6045736 2024-02-23 17:35:51.782 2024-02-23 17:35:51.782 1000 FEE 436473 21238 6045739 2024-02-23 17:36:02.839 2024-02-23 17:36:02.839 1100 FEE 436470 18231 6045740 2024-02-23 17:36:02.839 2024-02-23 17:36:02.839 9900 TIP 436470 15326 6045766 2024-02-23 17:37:17.967 2024-02-23 17:37:17.967 2000 FEE 436475 12289 6045767 2024-02-23 17:37:17.967 2024-02-23 17:37:17.967 18000 TIP 436475 21044 6045780 2024-02-23 17:37:20.678 2024-02-23 17:37:20.678 1000 FEE 436475 1124 6045781 2024-02-23 17:37:20.678 2024-02-23 17:37:20.678 9000 TIP 436475 19403 6045802 2024-02-23 17:38:49.787 2024-02-23 17:38:49.787 300 FEE 436463 2749 6045803 2024-02-23 17:38:49.787 2024-02-23 17:38:49.787 2700 TIP 436463 21453 6045826 2024-02-23 17:41:25.302 2024-02-23 17:41:25.302 1000 FEE 436486 1567 6045849 2024-02-23 17:45:14.692 2024-02-23 17:45:14.692 210000 FEE 436493 12769 6045853 2024-02-23 17:45:41.411 2024-02-23 17:45:41.411 500 FEE 436412 802 6045854 2024-02-23 17:45:41.411 2024-02-23 17:45:41.411 4500 TIP 436412 20757 6045857 2024-02-23 17:45:46.826 2024-02-23 17:45:46.826 0 FEE 436492 1354 6045901 2024-02-23 17:46:38.22 2024-02-23 17:46:38.22 1100 FEE 436323 894 6045902 2024-02-23 17:46:38.22 2024-02-23 17:46:38.22 9900 TIP 436323 20687 6045906 2024-02-23 17:46:45.015 2024-02-23 17:46:45.015 10000 FEE 436494 2718 6045907 2024-02-23 17:46:45.015 2024-02-23 17:46:45.015 90000 TIP 436494 15697 6045941 2024-02-23 17:49:33.913 2024-02-23 17:49:33.913 100000 FEE 436499 18005 6045945 2024-02-23 17:49:54.008 2024-02-23 17:49:54.008 1000 FEE 436486 20102 6045946 2024-02-23 17:49:54.008 2024-02-23 17:49:54.008 9000 TIP 436486 21019 6045964 2024-02-23 17:51:14.22 2024-02-23 17:51:14.22 1000 FEE 436489 4989 6045965 2024-02-23 17:51:14.22 2024-02-23 17:51:14.22 9000 TIP 436489 5455 6045996 2024-02-23 17:53:52.051 2024-02-23 17:53:52.051 1000 FEE 436491 6700 6045997 2024-02-23 17:53:52.051 2024-02-23 17:53:52.051 9000 TIP 436491 7558 6046005 2024-02-23 17:53:59.797 2024-02-23 17:53:59.797 5000 FEE 436197 19863 6046006 2024-02-23 17:53:59.797 2024-02-23 17:53:59.797 45000 TIP 436197 6260 6046030 2024-02-23 17:56:23.613 2024-02-23 17:56:23.613 1000 FEE 436466 3439 6046031 2024-02-23 17:56:23.613 2024-02-23 17:56:23.613 9000 TIP 436466 980 6046048 2024-02-23 17:58:51.874 2024-02-23 17:58:51.874 900 FEE 436222 13143 6046049 2024-02-23 17:58:51.874 2024-02-23 17:58:51.874 8100 TIP 436222 15484 6046053 2024-02-23 17:59:27.705 2024-02-23 17:59:27.705 5000 FEE 436455 1495 6046054 2024-02-23 17:59:27.705 2024-02-23 17:59:27.705 45000 TIP 436455 11942 6046055 2024-02-23 17:59:39.851 2024-02-23 17:59:39.851 26400 FEE 436455 1195 6046056 2024-02-23 17:59:39.851 2024-02-23 17:59:39.851 237600 TIP 436455 770 6046067 2024-02-23 18:00:01.86 2024-02-23 18:00:01.86 400 FEE 436508 11378 6046068 2024-02-23 18:00:01.86 2024-02-23 18:00:01.86 3600 TIP 436508 21514 6046072 2024-02-23 18:00:14.521 2024-02-23 18:00:14.521 900 FEE 436487 1471 6046073 2024-02-23 18:00:14.521 2024-02-23 18:00:14.521 8100 TIP 436487 16876 6046097 2024-02-23 18:01:13.591 2024-02-23 18:01:13.591 2300 FEE 436505 19535 6046098 2024-02-23 18:01:13.591 2024-02-23 18:01:13.591 20700 TIP 436505 19663 6045275 2024-02-23 17:16:03.151 2024-02-23 17:16:03.151 2300 FEE 436437 17639 6045276 2024-02-23 17:16:03.151 2024-02-23 17:16:03.151 20700 TIP 436437 14037 6045310 2024-02-23 17:16:06.936 2024-02-23 17:16:06.936 2300 FEE 436437 17109 6045311 2024-02-23 17:16:06.936 2024-02-23 17:16:06.936 20700 TIP 436437 17741 6045322 2024-02-23 17:16:07.879 2024-02-23 17:16:07.879 2300 FEE 436437 2508 6045323 2024-02-23 17:16:07.879 2024-02-23 17:16:07.879 20700 TIP 436437 18372 6045324 2024-02-23 17:16:08.023 2024-02-23 17:16:08.023 2300 FEE 436437 1823 6045325 2024-02-23 17:16:08.023 2024-02-23 17:16:08.023 20700 TIP 436437 21413 6045326 2024-02-23 17:16:08.684 2024-02-23 17:16:08.684 2300 FEE 436437 4776 6045327 2024-02-23 17:16:08.684 2024-02-23 17:16:08.684 20700 TIP 436437 21578 6045334 2024-02-23 17:16:09.274 2024-02-23 17:16:09.274 2300 FEE 436437 5057 6045335 2024-02-23 17:16:09.274 2024-02-23 17:16:09.274 20700 TIP 436437 9346 6045342 2024-02-23 17:16:09.831 2024-02-23 17:16:09.831 2300 FEE 436437 17291 6045343 2024-02-23 17:16:09.831 2024-02-23 17:16:09.831 20700 TIP 436437 18076 6045370 2024-02-23 17:16:12.212 2024-02-23 17:16:12.212 2300 FEE 436437 10311 6045371 2024-02-23 17:16:12.212 2024-02-23 17:16:12.212 20700 TIP 436437 16267 6045415 2024-02-23 17:18:44.443 2024-02-23 17:18:44.443 2300 FEE 436437 15213 6045416 2024-02-23 17:18:44.443 2024-02-23 17:18:44.443 20700 TIP 436437 2342 6045429 2024-02-23 17:18:45.371 2024-02-23 17:18:45.371 2300 FEE 436437 9695 6045430 2024-02-23 17:18:45.371 2024-02-23 17:18:45.371 20700 TIP 436437 18232 6045439 2024-02-23 17:18:46.072 2024-02-23 17:18:46.072 2300 FEE 436437 4238 6045440 2024-02-23 17:18:46.072 2024-02-23 17:18:46.072 20700 TIP 436437 20861 6045443 2024-02-23 17:18:46.381 2024-02-23 17:18:46.381 2300 FEE 436437 20613 6045444 2024-02-23 17:18:46.381 2024-02-23 17:18:46.381 20700 TIP 436437 19156 6045497 2024-02-23 17:20:42.385 2024-02-23 17:20:42.385 100 FEE 435751 5522 6045498 2024-02-23 17:20:42.385 2024-02-23 17:20:42.385 900 TIP 435751 696 6045503 2024-02-23 17:20:45.774 2024-02-23 17:20:45.774 2300 FEE 436445 21520 6045504 2024-02-23 17:20:45.774 2024-02-23 17:20:45.774 20700 TIP 436445 19909 6045505 2024-02-23 17:20:45.912 2024-02-23 17:20:45.912 2300 FEE 436445 5497 6045506 2024-02-23 17:20:45.912 2024-02-23 17:20:45.912 20700 TIP 436445 20276 6045511 2024-02-23 17:21:00.003 2024-02-23 17:21:00.003 1000 FEE 436367 9496 6045512 2024-02-23 17:21:00.003 2024-02-23 17:21:00.003 9000 TIP 436367 640 6045518 2024-02-23 17:21:07.23 2024-02-23 17:21:07.23 1000 FEE 436452 9 6045573 2024-02-23 17:27:11.241 2024-02-23 17:27:11.241 1000 POLL 436323 4984 6045577 2024-02-23 17:27:45.163 2024-02-23 17:27:45.163 2100 FEE 435585 12278 6045578 2024-02-23 17:27:45.163 2024-02-23 17:27:45.163 18900 TIP 435585 11716 6045600 2024-02-23 17:28:48.273 2024-02-23 17:28:48.273 800 FEE 435580 831 6045601 2024-02-23 17:28:48.273 2024-02-23 17:28:48.273 7200 TIP 435580 19005 6045606 2024-02-23 17:29:00.481 2024-02-23 17:29:00.481 800 FEE 436100 1006 6045607 2024-02-23 17:29:00.481 2024-02-23 17:29:00.481 7200 TIP 436100 20168 6045611 2024-02-23 17:29:05.93 2024-02-23 17:29:05.93 10000 FEE 436460 4313 6045626 2024-02-23 17:30:33.669 2024-02-23 17:30:33.669 3300 FEE 435767 746 6045627 2024-02-23 17:30:33.669 2024-02-23 17:30:33.669 29700 TIP 435767 2577 6045643 2024-02-23 17:31:13.018 2024-02-23 17:31:13.018 3300 FEE 436449 1060 6045644 2024-02-23 17:31:13.018 2024-02-23 17:31:13.018 29700 TIP 436449 14688 6045666 2024-02-23 17:31:50.577 2024-02-23 17:31:50.577 8300 FEE 436459 14545 6045667 2024-02-23 17:31:50.577 2024-02-23 17:31:50.577 74700 TIP 436459 16230 6045674 2024-02-23 17:31:51.17 2024-02-23 17:31:51.17 8300 FEE 436459 14552 6045675 2024-02-23 17:31:51.17 2024-02-23 17:31:51.17 74700 TIP 436459 910 6045700 2024-02-23 17:33:52.656 2024-02-23 17:33:52.656 3300 FEE 436439 16250 6045701 2024-02-23 17:33:52.656 2024-02-23 17:33:52.656 29700 TIP 436439 19664 6045705 2024-02-23 17:34:00.306 2024-02-23 17:34:00.306 4000 FEE 436466 1000 6045706 2024-02-23 17:34:00.306 2024-02-23 17:34:00.306 36000 TIP 436466 1769 6045712 2024-02-23 17:34:32.605 2024-02-23 17:34:32.605 1000 FEE 436302 17082 6045713 2024-02-23 17:34:32.605 2024-02-23 17:34:32.605 9000 TIP 436302 20058 6045716 2024-02-23 17:35:01.987 2024-02-23 17:35:01.987 1000 FEE 436471 997 6045763 2024-02-23 17:37:12.009 2024-02-23 17:37:12.009 1000 FEE 436478 21387 6045790 2024-02-23 17:37:36.041 2024-02-23 17:37:36.041 1000 FEE 436479 18745 6045796 2024-02-23 17:38:29.158 2024-02-23 17:38:29.158 1000 FEE 436482 17891 6045817 2024-02-23 17:40:16.406 2024-02-23 17:40:16.406 1000 FEE 436459 11897 6045818 2024-02-23 17:40:16.406 2024-02-23 17:40:16.406 9000 TIP 436459 17690 6045827 2024-02-23 17:41:37.576 2024-02-23 17:41:37.576 10000 FEE 436487 2196 6045830 2024-02-23 17:41:43.629 2024-02-23 17:41:43.629 1000 POLL 436323 1737 6045836 2024-02-23 17:43:46.426 2024-02-23 17:43:46.426 2100 FEE 436488 18528 6045837 2024-02-23 17:43:46.426 2024-02-23 17:43:46.426 18900 TIP 436488 20168 6045871 2024-02-23 17:46:30.28 2024-02-23 17:46:30.28 1100 FEE 436494 15978 6045872 2024-02-23 17:46:30.28 2024-02-23 17:46:30.28 9900 TIP 436494 6268 6045873 2024-02-23 17:46:30.449 2024-02-23 17:46:30.449 1100 FEE 436494 1120 6045874 2024-02-23 17:46:30.449 2024-02-23 17:46:30.449 9900 TIP 436494 7668 6045883 2024-02-23 17:46:36.822 2024-02-23 17:46:36.822 1100 FEE 436323 10056 6045884 2024-02-23 17:46:36.822 2024-02-23 17:46:36.822 9900 TIP 436323 8385 6045307 2024-02-23 17:16:06.651 2024-02-23 17:16:06.651 20700 TIP 436437 4166 6045314 2024-02-23 17:16:07.219 2024-02-23 17:16:07.219 2300 FEE 436437 17714 6045315 2024-02-23 17:16:07.219 2024-02-23 17:16:07.219 20700 TIP 436437 14195 6045320 2024-02-23 17:16:07.702 2024-02-23 17:16:07.702 2300 FEE 436437 19566 6045321 2024-02-23 17:16:07.702 2024-02-23 17:16:07.702 20700 TIP 436437 6798 6045330 2024-02-23 17:16:08.956 2024-02-23 17:16:08.956 2300 FEE 436437 11866 6045331 2024-02-23 17:16:08.956 2024-02-23 17:16:08.956 20700 TIP 436437 21387 6045344 2024-02-23 17:16:09.975 2024-02-23 17:16:09.975 2300 FEE 436437 18583 6045345 2024-02-23 17:16:09.975 2024-02-23 17:16:09.975 20700 TIP 436437 917 6045348 2024-02-23 17:16:10.249 2024-02-23 17:16:10.249 2300 FEE 436437 20687 6045349 2024-02-23 17:16:10.249 2024-02-23 17:16:10.249 20700 TIP 436437 1051 6045377 2024-02-23 17:16:17.265 2024-02-23 17:16:17.265 1000 FEE 436441 19469 6045385 2024-02-23 17:17:29.507 2024-02-23 17:17:29.507 27000 FEE 436241 848 6045386 2024-02-23 17:17:29.507 2024-02-23 17:17:29.507 243000 TIP 436241 16858 6045392 2024-02-23 17:18:38.585 2024-02-23 17:18:38.585 1000 FEE 436446 14357 6045395 2024-02-23 17:18:42.969 2024-02-23 17:18:42.969 4600 FEE 436437 20841 6045396 2024-02-23 17:18:42.969 2024-02-23 17:18:42.969 41400 TIP 436437 4115 6045399 2024-02-23 17:18:43.354 2024-02-23 17:18:43.354 2300 FEE 436437 20205 6045400 2024-02-23 17:18:43.354 2024-02-23 17:18:43.354 20700 TIP 436437 11522 6045401 2024-02-23 17:18:43.487 2024-02-23 17:18:43.487 2300 FEE 436437 7766 6045402 2024-02-23 17:18:43.487 2024-02-23 17:18:43.487 20700 TIP 436437 9336 6045419 2024-02-23 17:18:44.688 2024-02-23 17:18:44.688 2300 FEE 436437 8326 6045420 2024-02-23 17:18:44.688 2024-02-23 17:18:44.688 20700 TIP 436437 1717 6045437 2024-02-23 17:18:45.937 2024-02-23 17:18:45.937 2300 FEE 436437 704 6045438 2024-02-23 17:18:45.937 2024-02-23 17:18:45.937 20700 TIP 436437 1626 6045451 2024-02-23 17:18:46.953 2024-02-23 17:18:46.953 2300 FEE 436437 11750 6045452 2024-02-23 17:18:46.953 2024-02-23 17:18:46.953 20700 TIP 436437 16456 6045474 2024-02-23 17:20:32.612 2024-02-23 17:20:32.612 2100 FEE 436444 681 6045475 2024-02-23 17:20:32.612 2024-02-23 17:20:32.612 18900 TIP 436444 956 6045483 2024-02-23 17:20:37.371 2024-02-23 17:20:37.371 100 FEE 435751 716 6045484 2024-02-23 17:20:37.371 2024-02-23 17:20:37.371 900 TIP 435751 1738 6045537 2024-02-23 17:23:07.446 2024-02-23 17:23:07.446 1000 FEE 436308 18269 6045538 2024-02-23 17:23:07.446 2024-02-23 17:23:07.446 9000 TIP 436308 4175 6045550 2024-02-23 17:23:43.723 2024-02-23 17:23:43.723 4000 FEE 436323 11458 6045551 2024-02-23 17:23:43.723 2024-02-23 17:23:43.723 36000 TIP 436323 7583 6045558 2024-02-23 17:24:22.64 2024-02-23 17:24:22.64 1000 FEE 436425 19541 6045559 2024-02-23 17:24:22.64 2024-02-23 17:24:22.64 9000 TIP 436425 680 6045560 2024-02-23 17:24:31.091 2024-02-23 17:24:31.091 1000 FEE 436457 20812 6045588 2024-02-23 17:28:18.271 2024-02-23 17:28:18.271 800 FEE 435728 6537 6045589 2024-02-23 17:28:18.271 2024-02-23 17:28:18.271 7200 TIP 435728 1142 6045616 2024-02-23 17:29:31.406 2024-02-23 17:29:31.406 1000 FEE 436274 17707 6045617 2024-02-23 17:29:31.406 2024-02-23 17:29:31.406 9000 TIP 436274 642 6045628 2024-02-23 17:30:36.005 2024-02-23 17:30:36.005 3300 FEE 436337 15526 6045629 2024-02-23 17:30:36.005 2024-02-23 17:30:36.005 29700 TIP 436337 19465 6045638 2024-02-23 17:31:04.739 2024-02-23 17:31:04.739 3300 FEE 436424 15488 6045639 2024-02-23 17:31:04.739 2024-02-23 17:31:04.739 29700 TIP 436424 18008 6045647 2024-02-23 17:31:22.339 2024-02-23 17:31:22.339 3300 FEE 436451 20381 6045648 2024-02-23 17:31:22.339 2024-02-23 17:31:22.339 29700 TIP 436451 11819 6045653 2024-02-23 17:31:32.084 2024-02-23 17:31:32.084 1000 FEE 436464 18989 6045660 2024-02-23 17:31:49.421 2024-02-23 17:31:49.421 8300 FEE 436459 19661 6045661 2024-02-23 17:31:49.421 2024-02-23 17:31:49.421 74700 TIP 436459 2508 6045664 2024-02-23 17:31:50.468 2024-02-23 17:31:50.468 16600 FEE 436459 5761 6045665 2024-02-23 17:31:50.468 2024-02-23 17:31:50.468 149400 TIP 436459 16004 6045693 2024-02-23 17:33:39.308 2024-02-23 17:33:39.308 1000 FEE 436465 16680 6045697 2024-02-23 17:33:48.512 2024-02-23 17:33:48.512 3300 FEE 436273 16267 6045698 2024-02-23 17:33:48.512 2024-02-23 17:33:48.512 29700 TIP 436273 21119 6045699 2024-02-23 17:33:50.856 2024-02-23 17:33:50.856 1000 FEE 436467 7395 6045715 2024-02-23 17:35:01.775 2024-02-23 17:35:01.775 1000 FEE 436470 19286 6045725 2024-02-23 17:35:13.704 2024-02-23 17:35:13.704 1000 FEE 436323 21492 6045726 2024-02-23 17:35:13.704 2024-02-23 17:35:13.704 9000 TIP 436323 1658 6045729 2024-02-23 17:35:37.176 2024-02-23 17:35:37.176 0 FEE 119101 11018 6045746 2024-02-23 17:36:28.762 2024-02-23 17:36:28.762 1000 FEE 436474 17184 6045747 2024-02-23 17:36:41.844 2024-02-23 17:36:41.844 1000 FEE 436368 12139 6045748 2024-02-23 17:36:41.844 2024-02-23 17:36:41.844 9000 TIP 436368 21482 6045752 2024-02-23 17:36:58.728 2024-02-23 17:36:58.728 1000 FEE 436476 18241 6045789 2024-02-23 17:37:29.28 2024-02-23 17:37:29.28 0 FEE 436477 2829 6045797 2024-02-23 17:38:33.184 2024-02-23 17:38:33.184 1000 FEE 436460 1480 6045798 2024-02-23 17:38:33.184 2024-02-23 17:38:33.184 9000 TIP 436460 19151 6045809 2024-02-23 17:39:33.817 2024-02-23 17:39:33.817 0 FEE 436479 18659 6045811 2024-02-23 17:39:54.183 2024-02-23 17:39:54.183 0 FEE 436483 14267 6045828 2024-02-23 17:41:43.176 2024-02-23 17:41:43.176 1000 FEE 436460 3371 6045829 2024-02-23 17:41:43.176 2024-02-23 17:41:43.176 9000 TIP 436460 13132 6045867 2024-02-23 17:46:29.258 2024-02-23 17:46:29.258 2100 FEE 436197 7979 6045868 2024-02-23 17:46:29.258 2024-02-23 17:46:29.258 18900 TIP 436197 21555 6045869 2024-02-23 17:46:29.666 2024-02-23 17:46:29.666 1100 FEE 436494 9036 6045870 2024-02-23 17:46:29.666 2024-02-23 17:46:29.666 9900 TIP 436494 20706 6045875 2024-02-23 17:46:33.708 2024-02-23 17:46:33.708 1100 FEE 436323 651 6045633 2024-02-23 17:30:51.67 2024-02-23 17:30:51.67 1000 FEE 436384 8570 6045634 2024-02-23 17:30:51.67 2024-02-23 17:30:51.67 9000 TIP 436384 2329 6045649 2024-02-23 17:31:22.78 2024-02-23 17:31:22.78 3300 FEE 436451 2322 6045650 2024-02-23 17:31:22.78 2024-02-23 17:31:22.78 29700 TIP 436451 15617 6045662 2024-02-23 17:31:50.104 2024-02-23 17:31:50.104 8300 FEE 436459 8416 6045663 2024-02-23 17:31:50.104 2024-02-23 17:31:50.104 74700 TIP 436459 17976 6045670 2024-02-23 17:31:50.889 2024-02-23 17:31:50.889 8300 FEE 436459 18448 6045671 2024-02-23 17:31:50.889 2024-02-23 17:31:50.889 74700 TIP 436459 10007 6045672 2024-02-23 17:31:51.002 2024-02-23 17:31:51.002 8300 FEE 436459 1480 6045673 2024-02-23 17:31:51.002 2024-02-23 17:31:51.002 74700 TIP 436459 1631 6045680 2024-02-23 17:32:02.411 2024-02-23 17:32:02.411 2100 FEE 435847 18368 6045681 2024-02-23 17:32:02.411 2024-02-23 17:32:02.411 18900 TIP 435847 10771 6045685 2024-02-23 17:32:32.483 2024-02-23 17:32:32.483 1000 POLL 436323 11698 6045721 2024-02-23 17:35:04.802 2024-02-23 17:35:04.802 1000 FEE 436451 2151 6045722 2024-02-23 17:35:04.802 2024-02-23 17:35:04.802 9000 TIP 436451 15703 6045723 2024-02-23 17:35:13.588 2024-02-23 17:35:13.588 3000 FEE 436467 654 6045724 2024-02-23 17:35:13.588 2024-02-23 17:35:13.588 27000 TIP 436467 19576 6045744 2024-02-23 17:36:25.188 2024-02-23 17:36:25.188 100 FEE 436450 9332 6045745 2024-02-23 17:36:25.188 2024-02-23 17:36:25.188 900 TIP 436450 9969 6045762 2024-02-23 17:37:08.392 2024-02-23 17:37:08.392 1000 FEE 436477 20969 6045794 2024-02-23 17:38:10.357 2024-02-23 17:38:10.357 1000 FEE 436480 7673 6045804 2024-02-23 17:38:52.815 2024-02-23 17:38:52.815 700 FEE 436435 12483 6045805 2024-02-23 17:38:52.815 2024-02-23 17:38:52.815 6300 TIP 436435 20924 6045810 2024-02-23 17:39:43.538 2024-02-23 17:39:43.538 1000 FEE 436483 20802 6045815 2024-02-23 17:40:16.215 2024-02-23 17:40:16.215 1000 FEE 436459 16097 6045816 2024-02-23 17:40:16.215 2024-02-23 17:40:16.215 9000 TIP 436459 10591 6045821 2024-02-23 17:40:23.312 2024-02-23 17:40:23.312 3000 FEE 436481 2609 6045822 2024-02-23 17:40:23.312 2024-02-23 17:40:23.312 27000 TIP 436481 7674 6045841 2024-02-23 17:44:37.505 2024-02-23 17:44:37.505 10000 FEE 436491 3686 6045905 2024-02-23 17:46:42.446 2024-02-23 17:46:42.446 1000 POLL 436323 4102 6045920 2024-02-23 17:47:16.952 2024-02-23 17:47:16.952 2100 FEE 435905 3709 6045921 2024-02-23 17:47:16.952 2024-02-23 17:47:16.952 18900 TIP 435905 7558 6045933 2024-02-23 17:48:15.943 2024-02-23 17:48:15.943 900 FEE 436496 14260 6045934 2024-02-23 17:48:15.943 2024-02-23 17:48:15.943 8100 TIP 436496 3990 6045935 2024-02-23 17:48:41.607 2024-02-23 17:48:41.607 200 FEE 436304 16177 6045936 2024-02-23 17:48:41.607 2024-02-23 17:48:41.607 1800 TIP 436304 16571 6045954 2024-02-23 17:50:34.996 2024-02-23 17:50:34.996 2000 FEE 436477 16004 6045955 2024-02-23 17:50:34.996 2024-02-23 17:50:34.996 18000 TIP 436477 1737 6045958 2024-02-23 17:51:12.816 2024-02-23 17:51:12.816 1000 FEE 436489 21303 6045959 2024-02-23 17:51:12.816 2024-02-23 17:51:12.816 9000 TIP 436489 17157 6045966 2024-02-23 17:51:14.71 2024-02-23 17:51:14.71 1000 FEE 436489 20891 6045967 2024-02-23 17:51:14.71 2024-02-23 17:51:14.71 9000 TIP 436489 18817 6045987 2024-02-23 17:52:20.965 2024-02-23 17:52:20.965 2100 FEE 435580 16954 6045988 2024-02-23 17:52:20.965 2024-02-23 17:52:20.965 18900 TIP 435580 20560 6045989 2024-02-23 17:52:21.115 2024-02-23 17:52:21.115 2100 FEE 435580 17124 6045990 2024-02-23 17:52:21.115 2024-02-23 17:52:21.115 18900 TIP 435580 1740 6046023 2024-02-23 17:56:10.323 2024-02-23 17:56:10.323 1000 FEE 436507 16301 6046026 2024-02-23 17:56:21.425 2024-02-23 17:56:21.425 1000 FEE 436466 18533 6046027 2024-02-23 17:56:21.425 2024-02-23 17:56:21.425 9000 TIP 436466 2718 6046038 2024-02-23 17:56:28.493 2024-02-23 17:56:28.493 1000 FEE 436466 10530 6046039 2024-02-23 17:56:28.493 2024-02-23 17:56:28.493 9000 TIP 436466 654 6046089 2024-02-23 18:01:12.983 2024-02-23 18:01:12.983 2300 FEE 436505 19352 6046090 2024-02-23 18:01:12.983 2024-02-23 18:01:12.983 20700 TIP 436505 18583 6046118 2024-02-23 18:02:11.764 2024-02-23 18:02:11.764 2100 FEE 436493 1141 6046119 2024-02-23 18:02:11.764 2024-02-23 18:02:11.764 18900 TIP 436493 1741 6046120 2024-02-23 18:02:50.015 2024-02-23 18:02:50.015 6900 FEE 436493 5758 6046121 2024-02-23 18:02:50.015 2024-02-23 18:02:50.015 62100 TIP 436493 6384 6046128 2024-02-23 18:02:51.868 2024-02-23 18:02:51.868 4600 FEE 436493 7682 6046129 2024-02-23 18:02:51.868 2024-02-23 18:02:51.868 41400 TIP 436493 1769 6046132 2024-02-23 18:02:52.927 2024-02-23 18:02:52.927 2300 FEE 436493 1825 6046133 2024-02-23 18:02:52.927 2024-02-23 18:02:52.927 20700 TIP 436493 2722 6046140 2024-02-23 18:02:53.806 2024-02-23 18:02:53.806 2300 FEE 436493 19105 6046141 2024-02-23 18:02:53.806 2024-02-23 18:02:53.806 20700 TIP 436493 13798 6046158 2024-02-23 18:02:59.386 2024-02-23 18:02:59.386 2100 FEE 436508 17800 6046159 2024-02-23 18:02:59.386 2024-02-23 18:02:59.386 18900 TIP 436508 12911 6046165 2024-02-23 18:03:02.741 2024-02-23 18:03:02.741 2100 FEE 436508 12721 6046166 2024-02-23 18:03:02.741 2024-02-23 18:03:02.741 18900 TIP 436508 711 6046174 2024-02-23 18:03:23.41 2024-02-23 18:03:23.41 2300 FEE 436493 16848 6046175 2024-02-23 18:03:23.41 2024-02-23 18:03:23.41 20700 TIP 436493 21395 6046200 2024-02-23 18:03:26.032 2024-02-23 18:03:26.032 2300 FEE 436493 21271 6046201 2024-02-23 18:03:26.032 2024-02-23 18:03:26.032 20700 TIP 436493 12946 6046228 2024-02-23 18:03:30.134 2024-02-23 18:03:30.134 2300 FEE 436493 1737 6046229 2024-02-23 18:03:30.134 2024-02-23 18:03:30.134 20700 TIP 436493 1603 6046232 2024-02-23 18:03:30.489 2024-02-23 18:03:30.489 2300 FEE 436493 660 6046233 2024-02-23 18:03:30.489 2024-02-23 18:03:30.489 20700 TIP 436493 640 6046250 2024-02-23 18:03:32.814 2024-02-23 18:03:32.814 2300 FEE 436493 8664 6046251 2024-02-23 18:03:32.814 2024-02-23 18:03:32.814 20700 TIP 436493 19118 6046268 2024-02-23 18:03:34.303 2024-02-23 18:03:34.303 2300 FEE 436493 8459 6046269 2024-02-23 18:03:34.303 2024-02-23 18:03:34.303 20700 TIP 436493 7986 6046283 2024-02-23 18:04:41.619 2024-02-23 18:04:41.619 2100 FEE 436494 18539 6046284 2024-02-23 18:04:41.619 2024-02-23 18:04:41.619 18900 TIP 436494 11516 6046305 2024-02-23 18:06:56.241 2024-02-23 18:06:56.241 2300 FEE 436514 9992 6046306 2024-02-23 18:06:56.241 2024-02-23 18:06:56.241 20700 TIP 436514 18658 6046307 2024-02-23 18:06:56.384 2024-02-23 18:06:56.384 2300 FEE 436514 756 6046308 2024-02-23 18:06:56.384 2024-02-23 18:06:56.384 20700 TIP 436514 21446 6046311 2024-02-23 18:06:57.584 2024-02-23 18:06:57.584 2300 FEE 436514 21619 6046312 2024-02-23 18:06:57.584 2024-02-23 18:06:57.584 20700 TIP 436514 18454 6046348 2024-02-23 18:09:23.559 2024-02-23 18:09:23.559 2100 FEE 435856 18828 6045737 2024-02-23 17:35:54.488 2024-02-23 17:35:54.488 1100 FEE 436465 14489 6045738 2024-02-23 17:35:54.488 2024-02-23 17:35:54.488 9900 TIP 436465 2519 6045753 2024-02-23 17:36:59.46 2024-02-23 17:36:59.46 3000 FEE 436466 621 6045754 2024-02-23 17:36:59.46 2024-02-23 17:36:59.46 27000 TIP 436466 2735 6045764 2024-02-23 17:37:17.294 2024-02-23 17:37:17.294 1000 FEE 436475 1472 6045765 2024-02-23 17:37:17.294 2024-02-23 17:37:17.294 9000 TIP 436475 1474 6045768 2024-02-23 17:37:18.321 2024-02-23 17:37:18.321 1000 FEE 436475 13574 6045769 2024-02-23 17:37:18.321 2024-02-23 17:37:18.321 9000 TIP 436475 1428 6045776 2024-02-23 17:37:19.792 2024-02-23 17:37:19.792 1000 FEE 436475 4167 6045777 2024-02-23 17:37:19.792 2024-02-23 17:37:19.792 9000 TIP 436475 19929 6045782 2024-02-23 17:37:21.611 2024-02-23 17:37:21.611 0 FEE 436477 13517 6045791 2024-02-23 17:38:00.382 2024-02-23 17:38:00.382 2100 FEE 436210 761 6045792 2024-02-23 17:38:00.382 2024-02-23 17:38:00.382 18900 TIP 436210 20802 6045801 2024-02-23 17:38:44.85 2024-02-23 17:38:44.85 0 FEE 436479 16966 6045812 2024-02-23 17:40:01.398 2024-02-23 17:40:01.398 10000 FEE 435815 9494 6045813 2024-02-23 17:40:01.398 2024-02-23 17:40:01.398 90000 TIP 435815 21349 6045833 2024-02-23 17:42:51.287 2024-02-23 17:42:51.287 1000 FEE 436489 18174 6045835 2024-02-23 17:43:41.799 2024-02-23 17:43:41.799 1000 FEE 436490 20257 6045839 2024-02-23 17:44:31.639 2024-02-23 17:44:31.639 1000 FEE 436385 1244 6045840 2024-02-23 17:44:31.639 2024-02-23 17:44:31.639 9000 TIP 436385 9036 6045842 2024-02-23 17:44:45.616 2024-02-23 17:44:45.616 0 FEE 436480 825 6045851 2024-02-23 17:45:35.809 2024-02-23 17:45:35.809 2100 FEE 436241 663 6045852 2024-02-23 17:45:35.809 2024-02-23 17:45:35.809 18900 TIP 436241 5538 6045862 2024-02-23 17:45:58.998 2024-02-23 17:45:58.998 3000 FEE 436466 20826 6045863 2024-02-23 17:45:58.998 2024-02-23 17:45:58.998 27000 TIP 436466 13574 6045879 2024-02-23 17:46:34.095 2024-02-23 17:46:34.095 900 FEE 436394 16250 6045880 2024-02-23 17:46:34.095 2024-02-23 17:46:34.095 8100 TIP 436394 14705 6045881 2024-02-23 17:46:34.944 2024-02-23 17:46:34.944 9000 FEE 436394 6160 6045882 2024-02-23 17:46:34.944 2024-02-23 17:46:34.944 81000 TIP 436394 5359 6045885 2024-02-23 17:46:36.992 2024-02-23 17:46:36.992 1100 FEE 436323 15690 6045886 2024-02-23 17:46:36.992 2024-02-23 17:46:36.992 9900 TIP 436323 21214 6045889 2024-02-23 17:46:37.313 2024-02-23 17:46:37.313 1100 FEE 436323 19639 6045890 2024-02-23 17:46:37.313 2024-02-23 17:46:37.313 9900 TIP 436323 913 6045908 2024-02-23 17:46:45.438 2024-02-23 17:46:45.438 3000 FEE 436332 5175 6045909 2024-02-23 17:46:45.438 2024-02-23 17:46:45.438 27000 TIP 436332 697 6045929 2024-02-23 17:48:12.72 2024-02-23 17:48:12.72 500 FEE 436412 20713 6045930 2024-02-23 17:48:12.72 2024-02-23 17:48:12.72 4500 TIP 436412 9352 6045939 2024-02-23 17:49:08.591 2024-02-23 17:49:08.591 1000 FEE 436449 20551 6045940 2024-02-23 17:49:08.591 2024-02-23 17:49:08.591 9000 TIP 436449 18832 6045942 2024-02-23 17:49:40.952 2024-02-23 17:49:40.952 1000 FEE 436500 7119 6045972 2024-02-23 17:51:58.76 2024-02-23 17:51:58.76 2100 FEE 434695 15060 6045973 2024-02-23 17:51:58.76 2024-02-23 17:51:58.76 18900 TIP 434695 19909 6045975 2024-02-23 17:52:01.819 2024-02-23 17:52:01.819 2100 FEE 436326 19033 6045976 2024-02-23 17:52:01.819 2024-02-23 17:52:01.819 18900 TIP 436326 5306 6045977 2024-02-23 17:52:02.335 2024-02-23 17:52:02.335 2100 FEE 436326 21427 6045978 2024-02-23 17:52:02.335 2024-02-23 17:52:02.335 18900 TIP 436326 18262 6045993 2024-02-23 17:52:39.198 2024-02-23 17:52:39.198 1000 FEE 436502 16598 6046017 2024-02-23 17:55:17.203 2024-02-23 17:55:17.203 1000 FEE 436506 19841 6046036 2024-02-23 17:56:27.035 2024-02-23 17:56:27.035 1000 FEE 436466 16178 6046037 2024-02-23 17:56:27.035 2024-02-23 17:56:27.035 9000 TIP 436466 18815 6046041 2024-02-23 17:57:37.61 2024-02-23 17:57:37.61 100000 FEE 436508 21591 6046046 2024-02-23 17:58:51.668 2024-02-23 17:58:51.668 100 FEE 436222 19661 6046047 2024-02-23 17:58:51.668 2024-02-23 17:58:51.668 900 TIP 436222 4173 6046057 2024-02-23 17:59:41.879 2024-02-23 17:59:41.879 0 FEE 368845 19033 6046063 2024-02-23 18:00:01.284 2024-02-23 18:00:01.284 200 FEE 436508 3461 6046064 2024-02-23 18:00:01.284 2024-02-23 18:00:01.284 1800 TIP 436508 11516 6046065 2024-02-23 18:00:01.412 2024-02-23 18:00:01.412 200 FEE 436508 16059 6046066 2024-02-23 18:00:01.412 2024-02-23 18:00:01.412 1800 TIP 436508 17331 6046087 2024-02-23 18:01:04.33 2024-02-23 18:01:04.33 9000 FEE 436397 2674 6046088 2024-02-23 18:01:04.33 2024-02-23 18:01:04.33 81000 TIP 436397 964 6046091 2024-02-23 18:01:13.153 2024-02-23 18:01:13.153 2300 FEE 436505 7654 6046092 2024-02-23 18:01:13.153 2024-02-23 18:01:13.153 20700 TIP 436505 11621 6046146 2024-02-23 18:02:54.367 2024-02-23 18:02:54.367 2300 FEE 436493 21373 6046147 2024-02-23 18:02:54.367 2024-02-23 18:02:54.367 20700 TIP 436493 1723 6046167 2024-02-23 18:03:12.742 2024-02-23 18:03:12.742 1000 FEE 436512 16505 6046188 2024-02-23 18:03:25.042 2024-02-23 18:03:25.042 2300 FEE 436493 9329 6046189 2024-02-23 18:03:25.042 2024-02-23 18:03:25.042 20700 TIP 436493 4487 6046192 2024-02-23 18:03:25.366 2024-02-23 18:03:25.366 2300 FEE 436493 5173 6046193 2024-02-23 18:03:25.366 2024-02-23 18:03:25.366 20700 TIP 436493 10094 6046206 2024-02-23 18:03:26.731 2024-02-23 18:03:26.731 2300 FEE 436493 18448 6046207 2024-02-23 18:03:26.731 2024-02-23 18:03:26.731 20700 TIP 436493 21214 6046214 2024-02-23 18:03:27.905 2024-02-23 18:03:27.905 2300 FEE 436493 15160 6046215 2024-02-23 18:03:27.905 2024-02-23 18:03:27.905 20700 TIP 436493 11328 6046224 2024-02-23 18:03:29.803 2024-02-23 18:03:29.803 2300 FEE 436493 1090 6046225 2024-02-23 18:03:29.803 2024-02-23 18:03:29.803 20700 TIP 436493 3506 6046226 2024-02-23 18:03:29.972 2024-02-23 18:03:29.972 2300 FEE 436493 16638 6046227 2024-02-23 18:03:29.972 2024-02-23 18:03:29.972 20700 TIP 436493 21455 6046234 2024-02-23 18:03:30.833 2024-02-23 18:03:30.833 4600 FEE 436493 5703 6046235 2024-02-23 18:03:30.833 2024-02-23 18:03:30.833 41400 TIP 436493 20245 6046256 2024-02-23 18:03:33.336 2024-02-23 18:03:33.336 2300 FEE 436493 711 6046257 2024-02-23 18:03:33.336 2024-02-23 18:03:33.336 20700 TIP 436493 4314 6046258 2024-02-23 18:03:33.452 2024-02-23 18:03:33.452 2300 FEE 436493 2098 6046259 2024-02-23 18:03:33.452 2024-02-23 18:03:33.452 20700 TIP 436493 762 6046260 2024-02-23 18:03:33.618 2024-02-23 18:03:33.618 2300 FEE 436493 768 6046261 2024-02-23 18:03:33.618 2024-02-23 18:03:33.618 20700 TIP 436493 16788 6046278 2024-02-23 18:03:47.048 2024-02-23 18:03:47.048 5000 FEE 436513 9350 6046293 2024-02-23 18:06:52.552 2024-02-23 18:06:52.552 2100 FEE 436515 10591 6046294 2024-02-23 18:06:52.552 2024-02-23 18:06:52.552 18900 TIP 436515 1628 6046297 2024-02-23 18:06:54.555 2024-02-23 18:06:54.555 2300 FEE 436514 13587 6046298 2024-02-23 18:06:54.555 2024-02-23 18:06:54.555 20700 TIP 436514 1173 6046325 2024-02-23 18:08:53.894 2024-02-23 18:08:53.894 1000 FEE 436508 5173 6046326 2024-02-23 18:08:53.894 2024-02-23 18:08:53.894 9000 TIP 436508 15560 6046354 2024-02-23 18:10:40.176 2024-02-23 18:10:40.176 400 FEE 436515 9276 6046355 2024-02-23 18:10:40.176 2024-02-23 18:10:40.176 3600 TIP 436515 17217 6046357 2024-02-23 18:10:54.784 2024-02-23 18:10:54.784 2100 FEE 436444 1609 6046358 2024-02-23 18:10:54.784 2024-02-23 18:10:54.784 18900 TIP 436444 14074 6046382 2024-02-23 18:15:32.212 2024-02-23 18:15:32.212 1000 FEE 436522 844 6046418 2024-02-23 18:16:47.46 2024-02-23 18:16:47.46 1000 FEE 436504 15624 6045786 2024-02-23 17:37:23.413 2024-02-23 17:37:23.413 243000 TIP 435906 3360 6045806 2024-02-23 17:38:52.82 2024-02-23 17:38:52.82 3000 FEE 436361 4538 6045807 2024-02-23 17:38:52.82 2024-02-23 17:38:52.82 27000 TIP 436361 11821 6045819 2024-02-23 17:40:16.586 2024-02-23 17:40:16.586 1000 FEE 436459 3706 6045820 2024-02-23 17:40:16.586 2024-02-23 17:40:16.586 9000 TIP 436459 20756 6045850 2024-02-23 17:45:28.15 2024-02-23 17:45:28.15 100000 FEE 436494 1316 6045877 2024-02-23 17:46:34.06 2024-02-23 17:46:34.06 100 FEE 436394 19469 6045878 2024-02-23 17:46:34.06 2024-02-23 17:46:34.06 900 TIP 436394 9169 6045891 2024-02-23 17:46:37.512 2024-02-23 17:46:37.512 1100 FEE 436323 16638 6045892 2024-02-23 17:46:37.512 2024-02-23 17:46:37.512 9900 TIP 436323 20924 6045897 2024-02-23 17:46:37.921 2024-02-23 17:46:37.921 1100 FEE 436323 19581 6045898 2024-02-23 17:46:37.921 2024-02-23 17:46:37.921 9900 TIP 436323 4650 6045916 2024-02-23 17:47:01.6 2024-02-23 17:47:01.6 2100 FEE 435944 1224 6045917 2024-02-23 17:47:01.6 2024-02-23 17:47:01.6 18900 TIP 435944 3347 6045925 2024-02-23 17:47:39.516 2024-02-23 17:47:39.516 10000 FEE 436243 15409 6045926 2024-02-23 17:47:39.516 2024-02-23 17:47:39.516 90000 TIP 436243 4502 6045938 2024-02-23 17:49:06.984 2024-02-23 17:49:06.984 1000 FEE 436498 6419 6045948 2024-02-23 17:50:03.773 2024-02-23 17:50:03.773 1000 FEE 436494 1769 6045949 2024-02-23 17:50:03.773 2024-02-23 17:50:03.773 9000 TIP 436494 15094 6045950 2024-02-23 17:50:26.713 2024-02-23 17:50:26.713 3000 FEE 436492 1890 6045951 2024-02-23 17:50:26.713 2024-02-23 17:50:26.713 27000 TIP 436492 1478 6045952 2024-02-23 17:50:27.294 2024-02-23 17:50:27.294 27000 FEE 436492 5791 6045953 2024-02-23 17:50:27.294 2024-02-23 17:50:27.294 243000 TIP 436492 10690 6045960 2024-02-23 17:51:13.267 2024-02-23 17:51:13.267 1000 FEE 436489 16270 6045961 2024-02-23 17:51:13.267 2024-02-23 17:51:13.267 9000 TIP 436489 4313 6045981 2024-02-23 17:52:15.039 2024-02-23 17:52:15.039 2100 FEE 435488 15266 6045982 2024-02-23 17:52:15.039 2024-02-23 17:52:15.039 18900 TIP 435488 3504 6046000 2024-02-23 17:53:52.441 2024-02-23 17:53:52.441 1000 FEE 436491 1602 6046001 2024-02-23 17:53:52.441 2024-02-23 17:53:52.441 9000 TIP 436491 12609 6046002 2024-02-23 17:53:52.612 2024-02-23 17:53:52.612 1000 FEE 436491 12561 6046003 2024-02-23 17:53:52.612 2024-02-23 17:53:52.612 9000 TIP 436491 19142 6046010 2024-02-23 17:54:11.598 2024-02-23 17:54:11.598 10000 FEE 435217 2529 6046011 2024-02-23 17:54:11.598 2024-02-23 17:54:11.598 90000 TIP 435217 1577 6046020 2024-02-23 17:55:32.896 2024-02-23 17:55:32.896 1000 FEE 435466 4502 6046021 2024-02-23 17:55:32.896 2024-02-23 17:55:32.896 9000 TIP 435466 18393 6046028 2024-02-23 17:56:22.357 2024-02-23 17:56:22.357 1000 FEE 436466 726 6046029 2024-02-23 17:56:22.357 2024-02-23 17:56:22.357 9000 TIP 436466 20704 6046042 2024-02-23 17:57:54.745 2024-02-23 17:57:54.745 1000 FEE 436507 2748 6046043 2024-02-23 17:57:54.745 2024-02-23 17:57:54.745 9000 TIP 436507 1394 6046045 2024-02-23 17:58:17.508 2024-02-23 17:58:17.508 1000 FEE 436509 12368 6046050 2024-02-23 17:58:53.876 2024-02-23 17:58:53.876 9000 FEE 436222 18524 6046051 2024-02-23 17:58:53.876 2024-02-23 17:58:53.876 81000 TIP 436222 21437 6046111 2024-02-23 18:01:20.416 2024-02-23 18:01:20.416 100000 FEE 436511 19613 6046116 2024-02-23 18:02:05.912 2024-02-23 18:02:05.912 1100 FEE 436243 1003 6046117 2024-02-23 18:02:05.912 2024-02-23 18:02:05.912 9900 TIP 436243 21021 6046126 2024-02-23 18:02:51.749 2024-02-23 18:02:51.749 6900 FEE 436493 20153 6046127 2024-02-23 18:02:51.749 2024-02-23 18:02:51.749 62100 TIP 436493 16942 6046136 2024-02-23 18:02:53.283 2024-02-23 18:02:53.283 2300 FEE 436493 20198 6046137 2024-02-23 18:02:53.283 2024-02-23 18:02:53.283 20700 TIP 436493 6136 6046150 2024-02-23 18:02:54.89 2024-02-23 18:02:54.89 2300 FEE 436493 8729 6046151 2024-02-23 18:02:54.89 2024-02-23 18:02:54.89 20700 TIP 436493 11561 6046156 2024-02-23 18:02:59.378 2024-02-23 18:02:59.378 2100 FEE 436508 7125 6046157 2024-02-23 18:02:59.378 2024-02-23 18:02:59.378 18900 TIP 436508 5646 6046198 2024-02-23 18:03:25.864 2024-02-23 18:03:25.864 2300 FEE 436493 2583 6046199 2024-02-23 18:03:25.864 2024-02-23 18:03:25.864 20700 TIP 436493 986 6046208 2024-02-23 18:03:26.899 2024-02-23 18:03:26.899 2300 FEE 436493 7960 6046209 2024-02-23 18:03:26.899 2024-02-23 18:03:26.899 20700 TIP 436493 12169 6046238 2024-02-23 18:03:31.548 2024-02-23 18:03:31.548 2300 FEE 436493 20264 6046239 2024-02-23 18:03:31.548 2024-02-23 18:03:31.548 20700 TIP 436493 1584 6046254 2024-02-23 18:03:33.114 2024-02-23 18:03:33.114 2300 FEE 436493 20619 6046255 2024-02-23 18:03:33.114 2024-02-23 18:03:33.114 20700 TIP 436493 987 6046262 2024-02-23 18:03:33.807 2024-02-23 18:03:33.807 2300 FEE 436493 20337 6046263 2024-02-23 18:03:33.807 2024-02-23 18:03:33.807 20700 TIP 436493 20539 6046266 2024-02-23 18:03:34.124 2024-02-23 18:03:34.124 2300 FEE 436493 675 6046267 2024-02-23 18:03:34.124 2024-02-23 18:03:34.124 20700 TIP 436493 16679 6046272 2024-02-23 18:03:34.689 2024-02-23 18:03:34.689 2300 FEE 436493 11866 6046273 2024-02-23 18:03:34.689 2024-02-23 18:03:34.689 20700 TIP 436493 3990 6046286 2024-02-23 18:05:10.199 2024-02-23 18:05:10.199 2100 FEE 436477 14213 6046287 2024-02-23 18:05:10.199 2024-02-23 18:05:10.199 18900 TIP 436477 17227 6046288 2024-02-23 18:05:51.218 2024-02-23 18:05:51.218 1000 FEE 436515 19759 6046290 2024-02-23 18:06:27.867 2024-02-23 18:06:27.867 2100 FEE 436491 16848 6046291 2024-02-23 18:06:27.867 2024-02-23 18:06:27.867 18900 TIP 436491 2322 6046299 2024-02-23 18:06:55.331 2024-02-23 18:06:55.331 2300 FEE 436514 7425 6046300 2024-02-23 18:06:55.331 2024-02-23 18:06:55.331 20700 TIP 436514 4768 6046303 2024-02-23 18:06:55.623 2024-02-23 18:06:55.623 2300 FEE 436514 7376 6046304 2024-02-23 18:06:55.623 2024-02-23 18:06:55.623 20700 TIP 436514 9427 6046320 2024-02-23 18:08:28.985 2024-02-23 18:08:28.985 1000 FEE 436518 1454 6046323 2024-02-23 18:08:53.811 2024-02-23 18:08:53.811 1000 FEE 436508 20554 6046324 2024-02-23 18:08:53.811 2024-02-23 18:08:53.811 9000 TIP 436508 16214 6046351 2024-02-23 18:10:16.552 2024-02-23 18:10:16.552 0 FEE 436519 2390 6046375 2024-02-23 18:13:44.592 2024-02-23 18:13:44.592 30000 FEE 436459 20889 6046376 2024-02-23 18:13:44.592 2024-02-23 18:13:44.592 270000 TIP 436459 20026 6046384 2024-02-23 18:15:49.913 2024-02-23 18:15:49.913 2100 FEE 436294 20745 6046385 2024-02-23 18:15:49.913 2024-02-23 18:15:49.913 18900 TIP 436294 18446 6046404 2024-02-23 18:16:46.056 2024-02-23 18:16:46.056 1000 FEE 436504 17095 6046405 2024-02-23 18:16:46.056 2024-02-23 18:16:46.056 9000 TIP 436504 2233 6046449 2024-02-23 18:20:54.479 2024-02-23 18:20:54.479 100 FEE 436512 10554 6046450 2024-02-23 18:20:54.479 2024-02-23 18:20:54.479 900 TIP 436512 19535 6046484 2024-02-23 18:22:12.881 2024-02-23 18:22:12.881 1000 FEE 436501 21164 6046485 2024-02-23 18:22:12.881 2024-02-23 18:22:12.881 9000 TIP 436501 2016 6045848 2024-02-23 17:45:07.345 2024-02-23 17:45:07.345 1000 FEE 436492 21060 6045855 2024-02-23 17:45:41.544 2024-02-23 17:45:41.544 1000 FEE 436490 5746 6045856 2024-02-23 17:45:41.544 2024-02-23 17:45:41.544 9000 TIP 436490 7869 6045860 2024-02-23 17:45:51.183 2024-02-23 17:45:51.183 2100 FEE 436093 21387 6045861 2024-02-23 17:45:51.183 2024-02-23 17:45:51.183 18900 TIP 436093 17535 6045865 2024-02-23 17:46:20.184 2024-02-23 17:46:20.184 3000 FEE 436491 19640 6045866 2024-02-23 17:46:20.184 2024-02-23 17:46:20.184 27000 TIP 436491 16788 6045910 2024-02-23 17:46:52.329 2024-02-23 17:46:52.329 100 FEE 436413 11829 6045911 2024-02-23 17:46:52.329 2024-02-23 17:46:52.329 900 TIP 436413 12976 6045924 2024-02-23 17:47:34.602 2024-02-23 17:47:34.602 1000 FEE 436496 20573 6045943 2024-02-23 17:49:53.885 2024-02-23 17:49:53.885 1000 FEE 436486 20306 6045944 2024-02-23 17:49:53.885 2024-02-23 17:49:53.885 9000 TIP 436486 3656 6045968 2024-02-23 17:51:57.556 2024-02-23 17:51:57.556 2100 FEE 434695 5806 6045969 2024-02-23 17:51:57.556 2024-02-23 17:51:57.556 18900 TIP 434695 21599 6045970 2024-02-23 17:51:57.982 2024-02-23 17:51:57.982 2100 FEE 434695 7097 6045971 2024-02-23 17:51:57.982 2024-02-23 17:51:57.982 18900 TIP 434695 16432 6045983 2024-02-23 17:52:16.148 2024-02-23 17:52:16.148 4200 FEE 435488 16004 6045984 2024-02-23 17:52:16.148 2024-02-23 17:52:16.148 37800 TIP 435488 1605 6045991 2024-02-23 17:52:21.275 2024-02-23 17:52:21.275 2100 FEE 435580 14202 6045992 2024-02-23 17:52:21.275 2024-02-23 17:52:21.275 18900 TIP 435580 11145 6046004 2024-02-23 17:53:56.025 2024-02-23 17:53:56.025 1000 FEE 436504 21541 6046018 2024-02-23 17:55:18.368 2024-02-23 17:55:18.368 3000 FEE 436503 1291 6046019 2024-02-23 17:55:18.368 2024-02-23 17:55:18.368 27000 TIP 436503 18243 6046024 2024-02-23 17:56:20.643 2024-02-23 17:56:20.643 1000 FEE 436466 19980 6046025 2024-02-23 17:56:20.643 2024-02-23 17:56:20.643 9000 TIP 436466 10063 6046034 2024-02-23 17:56:25.283 2024-02-23 17:56:25.283 1000 FEE 436466 636 6046035 2024-02-23 17:56:25.283 2024-02-23 17:56:25.283 9000 TIP 436466 21379 6046059 2024-02-23 17:59:47.727 2024-02-23 17:59:47.727 31400 FEE 436498 5538 6046060 2024-02-23 17:59:47.727 2024-02-23 17:59:47.727 282600 TIP 436498 18306 6046074 2024-02-23 18:00:15.214 2024-02-23 18:00:15.214 9000 FEE 436487 8133 6046075 2024-02-23 18:00:15.214 2024-02-23 18:00:15.214 81000 TIP 436487 20663 6046093 2024-02-23 18:01:13.295 2024-02-23 18:01:13.295 2300 FEE 436505 1959 6046094 2024-02-23 18:01:13.295 2024-02-23 18:01:13.295 20700 TIP 436505 20257 6046122 2024-02-23 18:02:50.432 2024-02-23 18:02:50.432 2300 FEE 436493 21361 6046123 2024-02-23 18:02:50.432 2024-02-23 18:02:50.432 20700 TIP 436493 876 6046138 2024-02-23 18:02:53.502 2024-02-23 18:02:53.502 2300 FEE 436493 8080 6046139 2024-02-23 18:02:53.502 2024-02-23 18:02:53.502 20700 TIP 436493 1489 6046142 2024-02-23 18:02:53.973 2024-02-23 18:02:53.973 2300 FEE 436493 19174 6046143 2024-02-23 18:02:53.973 2024-02-23 18:02:53.973 20700 TIP 436493 5359 6046162 2024-02-23 18:02:59.51 2024-02-23 18:02:59.51 2100 FEE 436508 16789 6046163 2024-02-23 18:02:59.51 2024-02-23 18:02:59.51 18900 TIP 436508 11821 6046168 2024-02-23 18:03:22.565 2024-02-23 18:03:22.565 2300 FEE 436493 3304 6046169 2024-02-23 18:03:22.565 2024-02-23 18:03:22.565 20700 TIP 436493 3377 6046172 2024-02-23 18:03:23.28 2024-02-23 18:03:23.28 2300 FEE 436493 19506 6046173 2024-02-23 18:03:23.28 2024-02-23 18:03:23.28 20700 TIP 436493 7587 6046180 2024-02-23 18:03:23.929 2024-02-23 18:03:23.929 2300 FEE 436493 16912 6046181 2024-02-23 18:03:23.929 2024-02-23 18:03:23.929 20700 TIP 436493 17148 6046182 2024-02-23 18:03:24.097 2024-02-23 18:03:24.097 2300 FEE 436493 6421 6046183 2024-02-23 18:03:24.097 2024-02-23 18:03:24.097 20700 TIP 436493 15536 6046186 2024-02-23 18:03:24.529 2024-02-23 18:03:24.529 2300 FEE 436493 15386 6046187 2024-02-23 18:03:24.529 2024-02-23 18:03:24.529 20700 TIP 436493 20782 6046202 2024-02-23 18:03:26.183 2024-02-23 18:03:26.183 2300 FEE 436493 1773 6046203 2024-02-23 18:03:26.183 2024-02-23 18:03:26.183 20700 TIP 436493 5499 6046210 2024-02-23 18:03:27.068 2024-02-23 18:03:27.068 2300 FEE 436493 15474 6046211 2024-02-23 18:03:27.068 2024-02-23 18:03:27.068 20700 TIP 436493 679 6046212 2024-02-23 18:03:27.545 2024-02-23 18:03:27.545 6900 FEE 436493 20504 6046213 2024-02-23 18:03:27.545 2024-02-23 18:03:27.545 62100 TIP 436493 5961 6046216 2024-02-23 18:03:28.266 2024-02-23 18:03:28.266 2300 FEE 436493 1209 6046217 2024-02-23 18:03:28.266 2024-02-23 18:03:28.266 20700 TIP 436493 20573 6046230 2024-02-23 18:03:30.322 2024-02-23 18:03:30.322 2300 FEE 436493 8416 6046231 2024-02-23 18:03:30.322 2024-02-23 18:03:30.322 20700 TIP 436493 21140 6046246 2024-02-23 18:03:32.203 2024-02-23 18:03:32.203 2300 FEE 436493 900 6046247 2024-02-23 18:03:32.203 2024-02-23 18:03:32.203 20700 TIP 436493 6160 6046248 2024-02-23 18:03:32.682 2024-02-23 18:03:32.682 2300 FEE 436493 2514 6046249 2024-02-23 18:03:32.682 2024-02-23 18:03:32.682 20700 TIP 436493 18526 6046270 2024-02-23 18:03:34.468 2024-02-23 18:03:34.468 2300 FEE 436493 2832 6046271 2024-02-23 18:03:34.468 2024-02-23 18:03:34.468 20700 TIP 436493 18209 6046274 2024-02-23 18:03:34.885 2024-02-23 18:03:34.885 2300 FEE 436493 10359 6046275 2024-02-23 18:03:34.885 2024-02-23 18:03:34.885 20700 TIP 436493 9355 6046292 2024-02-23 18:06:44.336 2024-02-23 18:06:44.336 7000 FEE 436516 19506 6046337 2024-02-23 18:08:57.426 2024-02-23 18:08:57.426 1000 FEE 436519 19289 6046356 2024-02-23 18:10:48.948 2024-02-23 18:10:48.948 100000 FEE 436520 18454 6046397 2024-02-23 18:16:45.248 2024-02-23 18:16:45.248 1000 FEE 436504 8176 6046398 2024-02-23 18:16:45.248 2024-02-23 18:16:45.248 9000 TIP 436504 17714 6046412 2024-02-23 18:16:46.949 2024-02-23 18:16:46.949 1000 FEE 436504 634 6046413 2024-02-23 18:16:46.949 2024-02-23 18:16:46.949 9000 TIP 436504 20858 6046443 2024-02-23 18:19:51.292 2024-02-23 18:19:51.292 4200 FEE 436463 18769 6046444 2024-02-23 18:19:51.292 2024-02-23 18:19:51.292 37800 TIP 436463 12245 6046469 2024-02-23 18:21:31.502 2024-02-23 18:21:31.502 200 FEE 436492 16649 6045876 2024-02-23 17:46:33.708 2024-02-23 17:46:33.708 9900 TIP 436323 1692 6045895 2024-02-23 17:46:37.754 2024-02-23 17:46:37.754 1100 FEE 436323 14795 6045896 2024-02-23 17:46:37.754 2024-02-23 17:46:37.754 9900 TIP 436323 18637 6045903 2024-02-23 17:46:38.744 2024-02-23 17:46:38.744 1100 FEE 436323 980 6045904 2024-02-23 17:46:38.744 2024-02-23 17:46:38.744 9900 TIP 436323 20301 6045912 2024-02-23 17:46:52.557 2024-02-23 17:46:52.557 900 FEE 436413 18072 6045913 2024-02-23 17:46:52.557 2024-02-23 17:46:52.557 8100 TIP 436413 19320 6045914 2024-02-23 17:47:01.275 2024-02-23 17:47:01.275 4000 FEE 436491 795 6045915 2024-02-23 17:47:01.275 2024-02-23 17:47:01.275 36000 TIP 436491 13398 6045927 2024-02-23 17:47:53.462 2024-02-23 17:47:53.462 1000 FEE 436497 2789 6045962 2024-02-23 17:51:13.807 2024-02-23 17:51:13.807 1000 FEE 436489 19030 6045963 2024-02-23 17:51:13.807 2024-02-23 17:51:13.807 9000 TIP 436489 12921 6045980 2024-02-23 17:52:07.416 2024-02-23 17:52:07.416 0 FEE 436490 644 6045998 2024-02-23 17:53:52.264 2024-02-23 17:53:52.264 1000 FEE 436491 1320 6045999 2024-02-23 17:53:52.264 2024-02-23 17:53:52.264 9000 TIP 436491 19848 6045893 2024-02-23 17:46:37.591 2024-02-23 17:46:37.591 1100 FEE 436323 1480 6045894 2024-02-23 17:46:37.591 2024-02-23 17:46:37.591 9900 TIP 436323 1784 6045899 2024-02-23 17:46:38.062 2024-02-23 17:46:38.062 1100 FEE 436323 18817 6045900 2024-02-23 17:46:38.062 2024-02-23 17:46:38.062 9900 TIP 436323 14818 6045918 2024-02-23 17:47:03.9 2024-02-23 17:47:03.9 1000 FEE 436495 989 6045922 2024-02-23 17:47:19.662 2024-02-23 17:47:19.662 3300 FEE 436494 18468 6045923 2024-02-23 17:47:19.662 2024-02-23 17:47:19.662 29700 TIP 436494 11144 6045985 2024-02-23 17:52:20.813 2024-02-23 17:52:20.813 2100 FEE 435580 8648 6045986 2024-02-23 17:52:20.813 2024-02-23 17:52:20.813 18900 TIP 435580 644 6045995 2024-02-23 17:53:11.562 2024-02-23 17:53:11.562 1000 FEE 436503 7668 6046013 2024-02-23 17:54:29.754 2024-02-23 17:54:29.754 2600 FEE 435719 1030 6046014 2024-02-23 17:54:29.754 2024-02-23 17:54:29.754 23400 TIP 435719 10007 6046058 2024-02-23 17:59:45.595 2024-02-23 17:59:45.595 11000 FEE 436510 1785 6046076 2024-02-23 18:00:32.656 2024-02-23 18:00:32.656 100 FEE 436440 13348 6046077 2024-02-23 18:00:32.656 2024-02-23 18:00:32.656 900 TIP 436440 21427 6046080 2024-02-23 18:00:36.893 2024-02-23 18:00:36.893 9000 FEE 436440 21070 6046081 2024-02-23 18:00:36.893 2024-02-23 18:00:36.893 81000 TIP 436440 1577 6046085 2024-02-23 18:01:03.719 2024-02-23 18:01:03.719 900 FEE 436397 18351 6046086 2024-02-23 18:01:03.719 2024-02-23 18:01:03.719 8100 TIP 436397 10979 6046095 2024-02-23 18:01:13.447 2024-02-23 18:01:13.447 2300 FEE 436505 18608 6046096 2024-02-23 18:01:13.447 2024-02-23 18:01:13.447 20700 TIP 436505 4128 6046184 2024-02-23 18:03:24.331 2024-02-23 18:03:24.331 2300 FEE 436493 19660 6046185 2024-02-23 18:03:24.331 2024-02-23 18:03:24.331 20700 TIP 436493 8841 6046190 2024-02-23 18:03:25.2 2024-02-23 18:03:25.2 2300 FEE 436493 19906 6046191 2024-02-23 18:03:25.2 2024-02-23 18:03:25.2 20700 TIP 436493 4035 6046242 2024-02-23 18:03:31.866 2024-02-23 18:03:31.866 2300 FEE 436493 21233 6046243 2024-02-23 18:03:31.866 2024-02-23 18:03:31.866 20700 TIP 436493 19812 6046309 2024-02-23 18:06:56.526 2024-02-23 18:06:56.526 2300 FEE 436514 12911 6046310 2024-02-23 18:06:56.526 2024-02-23 18:06:56.526 20700 TIP 436514 19502 6046331 2024-02-23 18:08:55.468 2024-02-23 18:08:55.468 1000 FEE 436508 20973 6046332 2024-02-23 18:08:55.468 2024-02-23 18:08:55.468 9000 TIP 436508 7418 6046340 2024-02-23 18:08:57.767 2024-02-23 18:08:57.767 2000 FEE 436508 620 6046341 2024-02-23 18:08:57.767 2024-02-23 18:08:57.767 18000 TIP 436508 16950 6046342 2024-02-23 18:09:00.523 2024-02-23 18:09:00.523 2100 FEE 436506 21588 6046343 2024-02-23 18:09:00.523 2024-02-23 18:09:00.523 18900 TIP 436506 18751 6046352 2024-02-23 18:10:21.862 2024-02-23 18:10:21.862 2100 FEE 436459 21139 6046353 2024-02-23 18:10:21.862 2024-02-23 18:10:21.862 18900 TIP 436459 17392 6046387 2024-02-23 18:16:20.895 2024-02-23 18:16:20.895 10000 FEE 436493 20564 6046388 2024-02-23 18:16:20.895 2024-02-23 18:16:20.895 90000 TIP 436493 16097 6046391 2024-02-23 18:16:44.218 2024-02-23 18:16:44.218 1000 FEE 436504 1478 6046392 2024-02-23 18:16:44.218 2024-02-23 18:16:44.218 9000 TIP 436504 16250 6046400 2024-02-23 18:16:45.71 2024-02-23 18:16:45.71 1000 FEE 436504 16440 6046401 2024-02-23 18:16:45.71 2024-02-23 18:16:45.71 9000 TIP 436504 6268 6046414 2024-02-23 18:16:47.122 2024-02-23 18:16:47.122 1000 FEE 436504 889 6046415 2024-02-23 18:16:47.122 2024-02-23 18:16:47.122 9000 TIP 436504 21061 6046422 2024-02-23 18:16:47.8 2024-02-23 18:16:47.8 1000 FEE 436504 18583 6046423 2024-02-23 18:16:47.8 2024-02-23 18:16:47.8 9000 TIP 436504 1046 6046424 2024-02-23 18:16:48.031 2024-02-23 18:16:48.031 1000 FEE 436504 16879 6046425 2024-02-23 18:16:48.031 2024-02-23 18:16:48.031 9000 TIP 436504 4624 6046428 2024-02-23 18:16:48.598 2024-02-23 18:16:48.598 1000 FEE 436504 15858 6046429 2024-02-23 18:16:48.598 2024-02-23 18:16:48.598 9000 TIP 436504 19890 6046435 2024-02-23 18:17:59.104 2024-02-23 18:17:59.104 10000 FEE 436330 18265 6046436 2024-02-23 18:17:59.104 2024-02-23 18:17:59.104 90000 TIP 436330 2204 6045928 2024-02-23 17:48:02.625 2024-02-23 17:48:02.625 1000 STREAM 141924 3518 6045937 2024-02-23 17:49:02.613 2024-02-23 17:49:02.613 1000 STREAM 141924 987 6045947 2024-02-23 17:50:02.621 2024-02-23 17:50:02.621 1000 STREAM 141924 19484 6045994 2024-02-23 17:53:02.62 2024-02-23 17:53:02.62 1000 STREAM 141924 16004 6046009 2024-02-23 17:54:02.625 2024-02-23 17:54:02.625 1000 STREAM 141924 12097 6046040 2024-02-23 17:57:02.649 2024-02-23 17:57:02.649 1000 STREAM 141924 21338 6046069 2024-02-23 18:00:02.697 2024-02-23 18:00:02.697 1000 STREAM 141924 1120 6046082 2024-02-23 18:01:02.697 2024-02-23 18:01:02.697 1000 STREAM 141924 21424 6046279 2024-02-23 18:04:02.72 2024-02-23 18:04:02.72 1000 STREAM 141924 19446 6046285 2024-02-23 18:05:02.73 2024-02-23 18:05:02.73 1000 STREAM 141924 19566 6046289 2024-02-23 18:06:02.754 2024-02-23 18:06:02.754 1000 STREAM 141924 1000 6046318 2024-02-23 18:08:02.783 2024-02-23 18:08:02.783 1000 STREAM 141924 1618 6046346 2024-02-23 18:09:02.786 2024-02-23 18:09:02.786 1000 STREAM 141924 9336 6046350 2024-02-23 18:10:02.785 2024-02-23 18:10:02.785 1000 STREAM 141924 21214 6046432 2024-02-23 18:17:02.826 2024-02-23 18:17:02.826 1000 STREAM 141924 9863 6046490 2024-02-23 18:23:02.849 2024-02-23 18:23:02.849 1000 STREAM 141924 21208 6046494 2024-02-23 18:24:02.846 2024-02-23 18:24:02.846 1000 STREAM 141924 8570 6046525 2024-02-23 18:26:02.852 2024-02-23 18:26:02.852 1000 STREAM 141924 12819 6046604 2024-02-23 18:30:02.889 2024-02-23 18:30:02.889 1000 STREAM 141924 11220 6046611 2024-02-23 18:32:02.902 2024-02-23 18:32:02.902 1000 STREAM 141924 4083 6046625 2024-02-23 18:35:02.915 2024-02-23 18:35:02.915 1000 STREAM 141924 16178 6046639 2024-02-23 18:36:02.973 2024-02-23 18:36:02.973 1000 STREAM 141924 21088 6046659 2024-02-23 18:38:02.954 2024-02-23 18:38:02.954 1000 STREAM 141924 19888 6112880 2024-02-29 14:29:48.827 2024-02-29 14:29:48.827 27900 TIP 443557 761 6112890 2024-02-29 14:31:05.143 2024-02-29 14:31:05.143 1000 FEE 443562 21339 6112924 2024-02-29 14:33:23.991 2024-02-29 14:33:23.991 1000 FEE 443571 18017 6112932 2024-02-29 14:33:47.312 2024-02-29 14:33:47.312 2100 FEE 443319 4177 6112933 2024-02-29 14:33:47.312 2024-02-29 14:33:47.312 18900 TIP 443319 11145 6112968 2024-02-29 14:35:04.819 2024-02-29 14:35:04.819 7700 FEE 443274 1960 6112969 2024-02-29 14:35:04.819 2024-02-29 14:35:04.819 69300 TIP 443274 20179 6112976 2024-02-29 14:35:14.42 2024-02-29 14:35:14.42 7700 FEE 443372 5578 6112977 2024-02-29 14:35:14.42 2024-02-29 14:35:14.42 69300 TIP 443372 1003 6113002 2024-02-29 14:35:16.147 2024-02-29 14:35:16.147 7700 FEE 443372 16842 6113003 2024-02-29 14:35:16.147 2024-02-29 14:35:16.147 69300 TIP 443372 20555 6113004 2024-02-29 14:35:16.248 2024-02-29 14:35:16.248 7700 FEE 443372 2543 6113005 2024-02-29 14:35:16.248 2024-02-29 14:35:16.248 69300 TIP 443372 20084 6113008 2024-02-29 14:35:16.534 2024-02-29 14:35:16.534 7700 FEE 443372 14225 6113009 2024-02-29 14:35:16.534 2024-02-29 14:35:16.534 69300 TIP 443372 4166 6113012 2024-02-29 14:35:20.011 2024-02-29 14:35:20.011 7700 FEE 443179 854 6113013 2024-02-29 14:35:20.011 2024-02-29 14:35:20.011 69300 TIP 443179 9355 6113018 2024-02-29 14:35:20.417 2024-02-29 14:35:20.417 7700 FEE 443179 20059 6113019 2024-02-29 14:35:20.417 2024-02-29 14:35:20.417 69300 TIP 443179 1038 6113024 2024-02-29 14:35:21.067 2024-02-29 14:35:21.067 15400 FEE 443179 15941 6113025 2024-02-29 14:35:21.067 2024-02-29 14:35:21.067 138600 TIP 443179 2844 6113046 2024-02-29 14:35:49.227 2024-02-29 14:35:49.227 7700 FEE 443339 20990 6113047 2024-02-29 14:35:49.227 2024-02-29 14:35:49.227 69300 TIP 443339 4115 6113087 2024-02-29 14:37:16.07 2024-02-29 14:37:16.07 2100 FEE 443296 21138 6113088 2024-02-29 14:37:16.07 2024-02-29 14:37:16.07 18900 TIP 443296 14651 6113091 2024-02-29 14:37:38.126 2024-02-29 14:37:38.126 1000 FEE 443487 19537 6113092 2024-02-29 14:37:38.126 2024-02-29 14:37:38.126 9000 TIP 443487 17109 6113096 2024-02-29 14:38:15.184 2024-02-29 14:38:15.184 1000 FEE 443580 5694 6113105 2024-02-29 14:38:27.05 2024-02-29 14:38:27.05 6900 FEE 443272 20291 6113106 2024-02-29 14:38:27.05 2024-02-29 14:38:27.05 62100 TIP 443272 651 6113107 2024-02-29 14:38:27.182 2024-02-29 14:38:27.182 6900 FEE 443272 15594 6113108 2024-02-29 14:38:27.182 2024-02-29 14:38:27.182 62100 TIP 443272 18909 6113114 2024-02-29 14:39:10.127 2024-02-29 14:39:10.127 2100 FEE 443192 14202 6113115 2024-02-29 14:39:10.127 2024-02-29 14:39:10.127 18900 TIP 443192 10693 6113130 2024-02-29 14:41:37.001 2024-02-29 14:41:37.001 1100 FEE 443436 5128 6113131 2024-02-29 14:41:37.001 2024-02-29 14:41:37.001 9900 TIP 443436 18359 6113137 2024-02-29 14:41:45.896 2024-02-29 14:41:45.896 7700 FEE 443274 8423 6113138 2024-02-29 14:41:45.896 2024-02-29 14:41:45.896 69300 TIP 443274 1626 6113149 2024-02-29 14:41:47.518 2024-02-29 14:41:47.518 7700 FEE 443272 18460 6113150 2024-02-29 14:41:47.518 2024-02-29 14:41:47.518 69300 TIP 443272 836 6113250 2024-02-29 14:44:01.371 2024-02-29 14:44:01.371 1700 FEE 443559 1617 6113251 2024-02-29 14:44:01.371 2024-02-29 14:44:01.371 15300 TIP 443559 861 6113268 2024-02-29 14:45:01.014 2024-02-29 14:45:01.014 1000 FEE 443590 5112 6113291 2024-02-29 14:46:16.759 2024-02-29 14:46:16.759 800 FEE 443578 5171 6113292 2024-02-29 14:46:16.759 2024-02-29 14:46:16.759 7200 TIP 443578 1472 6113293 2024-02-29 14:46:31.12 2024-02-29 14:46:31.12 300 FEE 443404 17517 6113294 2024-02-29 14:46:31.12 2024-02-29 14:46:31.12 2700 TIP 443404 20597 6113303 2024-02-29 14:46:55.71 2024-02-29 14:46:55.71 1000 FEE 443578 15103 6113304 2024-02-29 14:46:55.71 2024-02-29 14:46:55.71 9000 TIP 443578 6533 6113313 2024-02-29 14:48:09.656 2024-02-29 14:48:09.656 1000 FEE 443597 1046 6113332 2024-02-29 14:49:55.189 2024-02-29 14:49:55.189 10000 FEE 443583 629 6113333 2024-02-29 14:49:55.189 2024-02-29 14:49:55.189 90000 TIP 443583 15367 6113349 2024-02-29 14:50:44.157 2024-02-29 14:50:44.157 1000 FEE 443272 777 6113350 2024-02-29 14:50:44.157 2024-02-29 14:50:44.157 9000 TIP 443272 18630 6113353 2024-02-29 14:50:47.938 2024-02-29 14:50:47.938 7700 FEE 443577 20979 6113354 2024-02-29 14:50:47.938 2024-02-29 14:50:47.938 69300 TIP 443577 21275 6113362 2024-02-29 14:50:54.618 2024-02-29 14:50:54.618 7700 FEE 443577 15226 6113363 2024-02-29 14:50:54.618 2024-02-29 14:50:54.618 69300 TIP 443577 738 6113372 2024-02-29 14:51:05.936 2024-02-29 14:51:05.936 6300 FEE 443603 14651 6113373 2024-02-29 14:51:05.936 2024-02-29 14:51:05.936 56700 TIP 443603 8729 6113393 2024-02-29 14:53:14.719 2024-02-29 14:53:14.719 5000 FEE 443602 21164 6113394 2024-02-29 14:53:14.719 2024-02-29 14:53:14.719 45000 TIP 443602 20201 6113398 2024-02-29 14:53:35.948 2024-02-29 14:53:35.948 1000 FEE 443611 7992 6113412 2024-02-29 14:54:32.646 2024-02-29 14:54:32.646 1000 FEE 443613 1751 6113413 2024-02-29 14:54:34.315 2024-02-29 14:54:34.315 1000 FEE 443614 18351 6113422 2024-02-29 14:55:16.013 2024-02-29 14:55:16.013 100 FEE 443545 16942 6113423 2024-02-29 14:55:16.013 2024-02-29 14:55:16.013 900 TIP 443545 20778 6113430 2024-02-29 14:55:32.1 2024-02-29 14:55:32.1 100000 FEE 443617 16867 6113431 2024-02-29 14:55:51.798 2024-02-29 14:55:51.798 1100 FEE 443100 11590 6113432 2024-02-29 14:55:51.798 2024-02-29 14:55:51.798 9900 TIP 443100 10016 6113451 2024-02-29 14:56:51.921 2024-02-29 14:56:51.921 2100 FEE 443577 814 6113452 2024-02-29 14:56:51.921 2024-02-29 14:56:51.921 18900 TIP 443577 8664 6113490 2024-02-29 14:57:44.336 2024-02-29 14:57:44.336 3100 FEE 443592 12261 6113491 2024-02-29 14:57:44.336 2024-02-29 14:57:44.336 27900 TIP 443592 13782 6113494 2024-02-29 14:57:55.885 2024-02-29 14:57:55.885 1700 FEE 443616 18199 6113495 2024-02-29 14:57:55.885 2024-02-29 14:57:55.885 15300 TIP 443616 4378 6113518 2024-02-29 14:58:52.598 2024-02-29 14:58:52.598 100 FEE 443602 15146 6113519 2024-02-29 14:58:52.598 2024-02-29 14:58:52.598 900 TIP 443602 4167 6113525 2024-02-29 14:58:59.127 2024-02-29 14:58:59.127 38400 FEE 443626 21506 6113526 2024-02-29 14:58:59.127 2024-02-29 14:58:59.127 345600 TIP 443626 11678 6113536 2024-02-29 14:59:11.654 2024-02-29 14:59:11.654 1000 FEE 443630 14950 6113539 2024-02-29 14:59:14.667 2024-02-29 14:59:14.667 1000 FEE 443631 21254 6045957 2024-02-23 17:51:02.613 2024-02-23 17:51:02.613 1000 STREAM 141924 15159 6045979 2024-02-23 17:52:02.623 2024-02-23 17:52:02.623 1000 STREAM 141924 1571 6046015 2024-02-23 17:55:02.642 2024-02-23 17:55:02.642 1000 STREAM 141924 6300 6046022 2024-02-23 17:56:02.634 2024-02-23 17:56:02.634 1000 STREAM 141924 8095 6046044 2024-02-23 17:58:02.642 2024-02-23 17:58:02.642 1000 STREAM 141924 21228 6046052 2024-02-23 17:59:02.65 2024-02-23 17:59:02.65 1000 STREAM 141924 2213 6046115 2024-02-23 18:02:02.698 2024-02-23 18:02:02.698 1000 STREAM 141924 4173 6046164 2024-02-23 18:03:02.72 2024-02-23 18:03:02.72 1000 STREAM 141924 2444 6046315 2024-02-23 18:07:02.776 2024-02-23 18:07:02.776 1000 STREAM 141924 5961 6046363 2024-02-23 18:11:02.793 2024-02-23 18:11:02.793 1000 STREAM 141924 13987 6046366 2024-02-23 18:12:02.805 2024-02-23 18:12:02.805 1000 STREAM 141924 10728 6046370 2024-02-23 18:13:02.809 2024-02-23 18:13:02.809 1000 STREAM 141924 20715 6046377 2024-02-23 18:14:02.829 2024-02-23 18:14:02.829 1000 STREAM 141924 11075 6046378 2024-02-23 18:15:02.816 2024-02-23 18:15:02.816 1000 STREAM 141924 1142 6046386 2024-02-23 18:16:02.825 2024-02-23 18:16:02.825 1000 STREAM 141924 4459 6046437 2024-02-23 18:18:02.833 2024-02-23 18:18:02.833 1000 STREAM 141924 17184 6046438 2024-02-23 18:19:02.83 2024-02-23 18:19:02.83 1000 STREAM 141924 20110 6046445 2024-02-23 18:20:02.83 2024-02-23 18:20:02.83 1000 STREAM 141924 2528 6046457 2024-02-23 18:21:02.861 2024-02-23 18:21:02.861 1000 STREAM 141924 20110 6046483 2024-02-23 18:22:02.836 2024-02-23 18:22:02.836 1000 STREAM 141924 21060 6046522 2024-02-23 18:25:02.849 2024-02-23 18:25:02.849 1000 STREAM 141924 896 6046569 2024-02-23 18:27:02.851 2024-02-23 18:27:02.851 1000 STREAM 141924 20990 6046581 2024-02-23 18:28:02.849 2024-02-23 18:28:02.849 1000 STREAM 141924 1652 6046592 2024-02-23 18:29:02.871 2024-02-23 18:29:02.871 1000 STREAM 141924 21303 6046609 2024-02-23 18:31:02.901 2024-02-23 18:31:02.901 1000 STREAM 141924 6653 6046618 2024-02-23 18:33:02.914 2024-02-23 18:33:02.914 1000 STREAM 141924 17602 6046621 2024-02-23 18:34:02.91 2024-02-23 18:34:02.91 1000 STREAM 141924 2776 6046820 2024-02-23 18:58:03.062 2024-02-23 18:58:03.062 1000 STREAM 141924 20603 6046841 2024-02-23 18:59:03.065 2024-02-23 18:59:03.065 1000 STREAM 141924 6688 6113052 2024-02-29 14:36:00.601 2024-02-29 14:36:00.601 7700 FEE 443514 1122 6113053 2024-02-29 14:36:00.601 2024-02-29 14:36:00.601 69300 TIP 443514 19770 6113061 2024-02-29 14:36:11.048 2024-02-29 14:36:11.048 500 FEE 443276 14785 6113062 2024-02-29 14:36:11.048 2024-02-29 14:36:11.048 4500 TIP 443276 18423 6113063 2024-02-29 14:36:13.491 2024-02-29 14:36:13.491 20000 FEE 443528 1564 6113064 2024-02-29 14:36:13.491 2024-02-29 14:36:13.491 180000 TIP 443528 3706 6113069 2024-02-29 14:36:22.088 2024-02-29 14:36:22.088 2100 FEE 443332 1490 6113070 2024-02-29 14:36:22.088 2024-02-29 14:36:22.088 18900 TIP 443332 19907 6113109 2024-02-29 14:38:28.161 2024-02-29 14:38:28.161 6900 FEE 443272 20022 6113110 2024-02-29 14:38:28.161 2024-02-29 14:38:28.161 62100 TIP 443272 12356 6113123 2024-02-29 14:40:22.925 2024-02-29 14:40:22.925 2500 FEE 443379 19637 6113124 2024-02-29 14:40:22.925 2024-02-29 14:40:22.925 22500 TIP 443379 617 6113143 2024-02-29 14:41:47.2 2024-02-29 14:41:47.2 7700 FEE 443272 3347 6113144 2024-02-29 14:41:47.2 2024-02-29 14:41:47.2 69300 TIP 443272 1617 6113202 2024-02-29 14:42:03.194 2024-02-29 14:42:03.194 7700 FEE 443515 12606 6113203 2024-02-29 14:42:03.194 2024-02-29 14:42:03.194 69300 TIP 443515 7668 6113206 2024-02-29 14:42:03.587 2024-02-29 14:42:03.587 300 FEE 442904 18359 6113207 2024-02-29 14:42:03.587 2024-02-29 14:42:03.587 2700 TIP 442904 9078 6113212 2024-02-29 14:42:06.698 2024-02-29 14:42:06.698 7700 FEE 443467 9347 6113213 2024-02-29 14:42:06.698 2024-02-29 14:42:06.698 69300 TIP 443467 8945 6113226 2024-02-29 14:42:49.062 2024-02-29 14:42:49.062 500 FEE 443123 13365 6113227 2024-02-29 14:42:49.062 2024-02-29 14:42:49.062 4500 TIP 443123 895 6113228 2024-02-29 14:42:51.681 2024-02-29 14:42:51.681 1000 FEE 443586 641 6113234 2024-02-29 14:43:06.444 2024-02-29 14:43:06.444 2100 FEE 443272 5791 6113235 2024-02-29 14:43:06.444 2024-02-29 14:43:06.444 18900 TIP 443272 2711 6113238 2024-02-29 14:43:15.325 2024-02-29 14:43:15.325 2700 FEE 438678 14258 6113239 2024-02-29 14:43:15.325 2024-02-29 14:43:15.325 24300 TIP 438678 18178 6113246 2024-02-29 14:43:34.134 2024-02-29 14:43:34.134 1000 FEE 443587 1438 6113283 2024-02-29 14:45:51.653 2024-02-29 14:45:51.653 2700 FEE 443319 16988 6113284 2024-02-29 14:45:51.653 2024-02-29 14:45:51.653 24300 TIP 443319 9166 6113287 2024-02-29 14:46:03.01 2024-02-29 14:46:03.01 1000 FEE 443592 18476 6113300 2024-02-29 14:46:54.67 2024-02-29 14:46:54.67 1000 FEE 443583 1801 6113301 2024-02-29 14:46:54.67 2024-02-29 14:46:54.67 9000 TIP 443583 20616 6113302 2024-02-29 14:46:55.093 2024-02-29 14:46:55.093 1000 FEE 443594 19837 6113323 2024-02-29 14:49:10.129 2024-02-29 14:49:10.129 3000 FEE 443593 13174 6113324 2024-02-29 14:49:10.129 2024-02-29 14:49:10.129 27000 TIP 443593 10063 6113341 2024-02-29 14:50:03.28 2024-02-29 14:50:03.28 90000 FEE 443583 18344 6113342 2024-02-29 14:50:03.28 2024-02-29 14:50:03.28 810000 TIP 443583 2224 6113377 2024-02-29 14:51:24.04 2024-02-29 14:51:24.04 1000 FEE 443606 684 6113433 2024-02-29 14:56:01.435 2024-02-29 14:56:01.435 1000 FEE 443618 18359 6113443 2024-02-29 14:56:14.123 2024-02-29 14:56:14.123 0 FEE 443611 10530 6113460 2024-02-29 14:57:07.849 2024-02-29 14:57:07.849 7700 FEE 443617 21457 6113461 2024-02-29 14:57:07.849 2024-02-29 14:57:07.849 69300 TIP 443617 8004 6113472 2024-02-29 14:57:09.042 2024-02-29 14:57:09.042 7700 FEE 443617 11145 6113473 2024-02-29 14:57:09.042 2024-02-29 14:57:09.042 69300 TIP 443617 15119 6113486 2024-02-29 14:57:10.833 2024-02-29 14:57:10.833 7700 FEE 443617 16543 6113487 2024-02-29 14:57:10.833 2024-02-29 14:57:10.833 69300 TIP 443617 1713 6113507 2024-02-29 14:58:11.644 2024-02-29 14:58:11.644 1000 FEE 443624 12609 6113523 2024-02-29 14:58:58.585 2024-02-29 14:58:58.585 2100 FEE 443623 18387 6113524 2024-02-29 14:58:58.585 2024-02-29 14:58:58.585 18900 TIP 443623 17800 6113542 2024-02-29 14:59:25.364 2024-02-29 14:59:25.364 1000 FEE 443116 11144 6113543 2024-02-29 14:59:25.364 2024-02-29 14:59:25.364 9000 TIP 443116 649 6113557 2024-02-29 14:59:55.337 2024-02-29 14:59:55.337 1000 FEE 443636 21047 6113558 2024-02-29 14:59:59.727 2024-02-29 14:59:59.727 100 FEE 443541 5377 6113559 2024-02-29 14:59:59.727 2024-02-29 14:59:59.727 900 TIP 443541 10393 6113575 2024-02-29 15:00:06.482 2024-02-29 15:00:06.482 100 FEE 443531 1652 6113576 2024-02-29 15:00:06.482 2024-02-29 15:00:06.482 900 TIP 443531 9816 6113594 2024-02-29 15:00:35.284 2024-02-29 15:00:35.284 100 FEE 443629 11314 6113595 2024-02-29 15:00:35.284 2024-02-29 15:00:35.284 900 TIP 443629 8245 6113599 2024-02-29 15:00:46.009 2024-02-29 15:00:46.009 900 FEE 443372 8498 6113600 2024-02-29 15:00:46.009 2024-02-29 15:00:46.009 8100 TIP 443372 985 6113607 2024-02-29 15:01:02.324 2024-02-29 15:01:02.324 1000 FEE 443643 20504 6113611 2024-02-29 15:01:19.55 2024-02-29 15:01:19.55 3400 FEE 443617 4043 6113612 2024-02-29 15:01:19.55 2024-02-29 15:01:19.55 30600 TIP 443617 21271 6046007 2024-02-23 17:54:01.945 2024-02-23 17:54:01.945 5000 FEE 436197 11498 6046008 2024-02-23 17:54:01.945 2024-02-23 17:54:01.945 45000 TIP 436197 6149 6046016 2024-02-23 17:55:13.978 2024-02-23 17:55:13.978 1000 FEE 436505 16442 6046032 2024-02-23 17:56:24.315 2024-02-23 17:56:24.315 1000 FEE 436466 2285 6046033 2024-02-23 17:56:24.315 2024-02-23 17:56:24.315 9000 TIP 436466 3213 6046061 2024-02-23 18:00:01.037 2024-02-23 18:00:01.037 200 FEE 436508 14195 6046062 2024-02-23 18:00:01.037 2024-02-23 18:00:01.037 1800 TIP 436508 17001 6046078 2024-02-23 18:00:32.932 2024-02-23 18:00:32.932 900 FEE 436440 8095 6046079 2024-02-23 18:00:32.932 2024-02-23 18:00:32.932 8100 TIP 436440 19488 6046083 2024-02-23 18:01:03.465 2024-02-23 18:01:03.465 100 FEE 436397 19506 6046084 2024-02-23 18:01:03.465 2024-02-23 18:01:03.465 900 TIP 436397 21605 6046101 2024-02-23 18:01:13.946 2024-02-23 18:01:13.946 2300 FEE 436505 12779 6046102 2024-02-23 18:01:13.946 2024-02-23 18:01:13.946 20700 TIP 436505 964 6046103 2024-02-23 18:01:14.114 2024-02-23 18:01:14.114 2300 FEE 436505 9433 6046104 2024-02-23 18:01:14.114 2024-02-23 18:01:14.114 20700 TIP 436505 6383 6046160 2024-02-23 18:02:59.417 2024-02-23 18:02:59.417 2100 FEE 436508 20596 6046161 2024-02-23 18:02:59.417 2024-02-23 18:02:59.417 18900 TIP 436508 681 6046099 2024-02-23 18:01:13.806 2024-02-23 18:01:13.806 2300 FEE 436505 13547 6046100 2024-02-23 18:01:13.806 2024-02-23 18:01:13.806 20700 TIP 436505 21427 6046105 2024-02-23 18:01:14.281 2024-02-23 18:01:14.281 2300 FEE 436505 19638 6046106 2024-02-23 18:01:14.281 2024-02-23 18:01:14.281 20700 TIP 436505 8326 6046107 2024-02-23 18:01:18.082 2024-02-23 18:01:18.082 100 FEE 436417 675 6046108 2024-02-23 18:01:18.082 2024-02-23 18:01:18.082 900 TIP 436417 20102 6046113 2024-02-23 18:02:01.633 2024-02-23 18:02:01.633 4200 FEE 436508 12169 6046114 2024-02-23 18:02:01.633 2024-02-23 18:02:01.633 37800 TIP 436508 21361 6046134 2024-02-23 18:02:53.095 2024-02-23 18:02:53.095 2300 FEE 436493 21155 6046135 2024-02-23 18:02:53.095 2024-02-23 18:02:53.095 20700 TIP 436493 1038 6046154 2024-02-23 18:02:58.384 2024-02-23 18:02:58.384 2100 FEE 436508 1195 6046155 2024-02-23 18:02:58.384 2024-02-23 18:02:58.384 18900 TIP 436508 1631 6046194 2024-02-23 18:03:25.529 2024-02-23 18:03:25.529 2300 FEE 436493 18690 6046195 2024-02-23 18:03:25.529 2024-02-23 18:03:25.529 20700 TIP 436493 7558 6046196 2024-02-23 18:03:25.699 2024-02-23 18:03:25.699 2300 FEE 436493 20980 6046197 2024-02-23 18:03:25.699 2024-02-23 18:03:25.699 20700 TIP 436493 21418 6046218 2024-02-23 18:03:29.32 2024-02-23 18:03:29.32 2300 FEE 436493 17148 6046219 2024-02-23 18:03:29.32 2024-02-23 18:03:29.32 20700 TIP 436493 16753 6046220 2024-02-23 18:03:29.465 2024-02-23 18:03:29.465 2300 FEE 436493 20987 6046221 2024-02-23 18:03:29.465 2024-02-23 18:03:29.465 20700 TIP 436493 5003 6046240 2024-02-23 18:03:31.7 2024-02-23 18:03:31.7 2300 FEE 436493 18154 6046241 2024-02-23 18:03:31.7 2024-02-23 18:03:31.7 20700 TIP 436493 19284 6046276 2024-02-23 18:03:37.667 2024-02-23 18:03:37.667 21000 FEE 436508 6058 6046277 2024-02-23 18:03:37.667 2024-02-23 18:03:37.667 189000 TIP 436508 18714 6046295 2024-02-23 18:06:54.389 2024-02-23 18:06:54.389 2300 FEE 436514 2508 6046296 2024-02-23 18:06:54.389 2024-02-23 18:06:54.389 20700 TIP 436514 11288 6046313 2024-02-23 18:06:57.995 2024-02-23 18:06:57.995 6900 FEE 436514 910 6046314 2024-02-23 18:06:57.995 2024-02-23 18:06:57.995 62100 TIP 436514 10493 6046316 2024-02-23 18:07:34.211 2024-02-23 18:07:34.211 100 FEE 436178 20606 6046317 2024-02-23 18:07:34.211 2024-02-23 18:07:34.211 900 TIP 436178 21485 6046327 2024-02-23 18:08:54.178 2024-02-23 18:08:54.178 1000 FEE 436508 21481 6046328 2024-02-23 18:08:54.178 2024-02-23 18:08:54.178 9000 TIP 436508 13143 6046333 2024-02-23 18:08:55.566 2024-02-23 18:08:55.566 1000 FEE 436508 666 6046334 2024-02-23 18:08:55.566 2024-02-23 18:08:55.566 9000 TIP 436508 8037 6046335 2024-02-23 18:08:57.189 2024-02-23 18:08:57.189 1000 FEE 436508 18232 6046336 2024-02-23 18:08:57.189 2024-02-23 18:08:57.189 9000 TIP 436508 4062 6046338 2024-02-23 18:08:57.498 2024-02-23 18:08:57.498 1000 FEE 436508 19601 6046339 2024-02-23 18:08:57.498 2024-02-23 18:08:57.498 9000 TIP 436508 9816 6046359 2024-02-23 18:10:55.08 2024-02-23 18:10:55.08 2100 FEE 436444 9611 6046360 2024-02-23 18:10:55.08 2024-02-23 18:10:55.08 18900 TIP 436444 1221 6046367 2024-02-23 18:12:51.504 2024-02-23 18:12:51.504 0 FEE 436519 19996 6046368 2024-02-23 18:12:59.893 2024-02-23 18:12:59.893 2100 FEE 436508 18154 6046369 2024-02-23 18:12:59.893 2024-02-23 18:12:59.893 18900 TIP 436508 16296 6046379 2024-02-23 18:15:29.094 2024-02-23 18:15:29.094 1000 FEE 436521 1733 6046440 2024-02-23 18:19:34.471 2024-02-23 18:19:34.471 4200 FEE 436435 21605 6046441 2024-02-23 18:19:34.471 2024-02-23 18:19:34.471 37800 TIP 436435 14465 6046458 2024-02-23 18:21:23.674 2024-02-23 18:21:23.674 2100 FEE 434197 9183 6046459 2024-02-23 18:21:23.674 2024-02-23 18:21:23.674 18900 TIP 434197 807 6046465 2024-02-23 18:21:30.691 2024-02-23 18:21:30.691 100 FEE 436492 10979 6046466 2024-02-23 18:21:30.691 2024-02-23 18:21:30.691 900 TIP 436492 803 6046493 2024-02-23 18:24:00.716 2024-02-23 18:24:00.716 1000 FEE 436528 10530 6046530 2024-02-23 18:26:21.97 2024-02-23 18:26:21.97 1000 FEE 436327 18154 6046531 2024-02-23 18:26:21.97 2024-02-23 18:26:21.97 9000 TIP 436327 20208 6046532 2024-02-23 18:26:26.382 2024-02-23 18:26:26.382 10000 FEE 436530 10771 6046553 2024-02-23 18:26:44.625 2024-02-23 18:26:44.625 500 FEE 436246 19147 6046554 2024-02-23 18:26:44.625 2024-02-23 18:26:44.625 4500 TIP 436246 20647 6046616 2024-02-23 18:33:00.341 2024-02-23 18:33:00.341 2100 FEE 436523 965 6046617 2024-02-23 18:33:00.341 2024-02-23 18:33:00.341 18900 TIP 436523 21233 6046619 2024-02-23 18:33:30.249 2024-02-23 18:33:30.249 1000 FEE 436543 19463 6046620 2024-02-23 18:33:48.179 2024-02-23 18:33:48.179 1000 FEE 436544 13348 6046622 2024-02-23 18:34:15.569 2024-02-23 18:34:15.569 0 FEE 436543 17014 6046630 2024-02-23 18:35:10.153 2024-02-23 18:35:10.153 2100 FEE 436530 14404 6046631 2024-02-23 18:35:10.153 2024-02-23 18:35:10.153 18900 TIP 436530 14045 6046632 2024-02-23 18:35:11.742 2024-02-23 18:35:11.742 0 FEE 436545 4118 6046633 2024-02-23 18:35:28.009 2024-02-23 18:35:28.009 0 FEE 436545 13132 6046643 2024-02-23 18:36:45.907 2024-02-23 18:36:45.907 97000 FEE 436549 15094 6046646 2024-02-23 18:37:20.631 2024-02-23 18:37:20.631 1000 FEE 436549 4391 6046647 2024-02-23 18:37:20.631 2024-02-23 18:37:20.631 9000 TIP 436549 14669 6046648 2024-02-23 18:37:21.069 2024-02-23 18:37:21.069 1000 FEE 436549 21216 6046649 2024-02-23 18:37:21.069 2024-02-23 18:37:21.069 9000 TIP 436549 10944 6046657 2024-02-23 18:37:57.728 2024-02-23 18:37:57.728 2100 FEE 436527 10096 6046658 2024-02-23 18:37:57.728 2024-02-23 18:37:57.728 18900 TIP 436527 17218 6046660 2024-02-23 18:38:26.796 2024-02-23 18:38:26.796 21000 DONT_LIKE_THIS 436499 16769 6046109 2024-02-23 18:01:18.294 2024-02-23 18:01:18.294 900 FEE 436417 5752 6046110 2024-02-23 18:01:18.294 2024-02-23 18:01:18.294 8100 TIP 436417 4259 6046112 2024-02-23 18:01:40.791 2024-02-23 18:01:40.791 0 FEE 436508 1213 6046124 2024-02-23 18:02:50.982 2024-02-23 18:02:50.982 2300 FEE 436493 20272 6046125 2024-02-23 18:02:50.982 2024-02-23 18:02:50.982 20700 TIP 436493 15146 6046130 2024-02-23 18:02:52.761 2024-02-23 18:02:52.761 2300 FEE 436493 1632 6046131 2024-02-23 18:02:52.761 2024-02-23 18:02:52.761 20700 TIP 436493 14385 6046144 2024-02-23 18:02:54.186 2024-02-23 18:02:54.186 2300 FEE 436493 18664 6046145 2024-02-23 18:02:54.186 2024-02-23 18:02:54.186 20700 TIP 436493 7510 6046148 2024-02-23 18:02:54.552 2024-02-23 18:02:54.552 2300 FEE 436493 894 6046149 2024-02-23 18:02:54.552 2024-02-23 18:02:54.552 20700 TIP 436493 17797 6046152 2024-02-23 18:02:55.07 2024-02-23 18:02:55.07 2300 FEE 436493 19263 6046153 2024-02-23 18:02:55.07 2024-02-23 18:02:55.07 20700 TIP 436493 1245 6046170 2024-02-23 18:03:22.81 2024-02-23 18:03:22.81 4600 FEE 436493 19335 6046171 2024-02-23 18:03:22.81 2024-02-23 18:03:22.81 41400 TIP 436493 5557 6046204 2024-02-23 18:03:26.571 2024-02-23 18:03:26.571 2300 FEE 436493 18862 6046205 2024-02-23 18:03:26.571 2024-02-23 18:03:26.571 20700 TIP 436493 18705 6046222 2024-02-23 18:03:29.644 2024-02-23 18:03:29.644 2300 FEE 436493 18704 6046223 2024-02-23 18:03:29.644 2024-02-23 18:03:29.644 20700 TIP 436493 16442 6046244 2024-02-23 18:03:32.032 2024-02-23 18:03:32.032 2300 FEE 436493 21044 6046245 2024-02-23 18:03:32.032 2024-02-23 18:03:32.032 20700 TIP 436493 9349 6046280 2024-02-23 18:04:34.032 2024-02-23 18:04:34.032 100 FEE 436494 17106 6046281 2024-02-23 18:04:34.032 2024-02-23 18:04:34.032 900 TIP 436494 18291 6046301 2024-02-23 18:06:55.466 2024-02-23 18:06:55.466 2300 FEE 436514 9200 6046302 2024-02-23 18:06:55.466 2024-02-23 18:06:55.466 20700 TIP 436514 14552 6046319 2024-02-23 18:08:10.729 2024-02-23 18:08:10.729 1000 FEE 436517 17455 6046329 2024-02-23 18:08:55.264 2024-02-23 18:08:55.264 1000 FEE 436508 14941 6046330 2024-02-23 18:08:55.264 2024-02-23 18:08:55.264 9000 TIP 436508 9333 6046344 2024-02-23 18:09:02.522 2024-02-23 18:09:02.522 2100 FEE 436337 2029 6046345 2024-02-23 18:09:02.522 2024-02-23 18:09:02.522 18900 TIP 436337 19570 6046361 2024-02-23 18:10:55.327 2024-02-23 18:10:55.327 2100 FEE 436444 19034 6046362 2024-02-23 18:10:55.327 2024-02-23 18:10:55.327 18900 TIP 436444 11648 6046371 2024-02-23 18:13:43.978 2024-02-23 18:13:43.978 30000 FEE 436459 18956 6046372 2024-02-23 18:13:43.978 2024-02-23 18:13:43.978 270000 TIP 436459 17713 6046373 2024-02-23 18:13:44.383 2024-02-23 18:13:44.383 30000 FEE 436459 19034 6046374 2024-02-23 18:13:44.383 2024-02-23 18:13:44.383 270000 TIP 436459 20376 6046383 2024-02-23 18:15:41.209 2024-02-23 18:15:41.209 10000 FEE 436523 2111 6046399 2024-02-23 18:16:45.416 2024-02-23 18:16:45.416 1000 FEE 436524 18468 6046451 2024-02-23 18:20:55.712 2024-02-23 18:20:55.712 100 FEE 436512 20168 6046452 2024-02-23 18:20:55.712 2024-02-23 18:20:55.712 900 TIP 436512 1705 6046455 2024-02-23 18:20:56.647 2024-02-23 18:20:56.647 100 FEE 436512 12819 6046456 2024-02-23 18:20:56.647 2024-02-23 18:20:56.647 900 TIP 436512 6471 6046471 2024-02-23 18:21:41.62 2024-02-23 18:21:41.62 8300 FEE 436493 3342 6046472 2024-02-23 18:21:41.62 2024-02-23 18:21:41.62 74700 TIP 436493 633 6046517 2024-02-23 18:24:06.754 2024-02-23 18:24:06.754 100 FEE 436493 13143 6046518 2024-02-23 18:24:06.754 2024-02-23 18:24:06.754 900 TIP 436493 1741 6046548 2024-02-23 18:26:34.256 2024-02-23 18:26:34.256 500 FEE 436518 21208 6046549 2024-02-23 18:26:34.256 2024-02-23 18:26:34.256 4500 TIP 436518 20327 6046598 2024-02-23 18:30:00.225 2024-02-23 18:30:00.225 3300 FEE 436509 10102 6046599 2024-02-23 18:30:00.225 2024-02-23 18:30:00.225 29700 TIP 436509 10719 6046600 2024-02-23 18:30:00.502 2024-02-23 18:30:00.502 3300 FEE 436509 2256 6046601 2024-02-23 18:30:00.502 2024-02-23 18:30:00.502 29700 TIP 436509 4502 6046605 2024-02-23 18:30:09.913 2024-02-23 18:30:09.913 0 FEE 436531 19929 6046610 2024-02-23 18:31:03.056 2024-02-23 18:31:03.056 100000 FEE 436540 685 6046623 2024-02-23 18:34:40.572 2024-02-23 18:34:40.572 0 FEE 436543 1090 6046634 2024-02-23 18:35:37.088 2024-02-23 18:35:37.088 1000 FEE 436534 19463 6046635 2024-02-23 18:35:37.088 2024-02-23 18:35:37.088 9000 TIP 436534 9820 6046669 2024-02-23 18:41:29.337 2024-02-23 18:41:29.337 500 FEE 436548 13361 6046670 2024-02-23 18:41:29.337 2024-02-23 18:41:29.337 4500 TIP 436548 12277 6046685 2024-02-23 18:42:48.706 2024-02-23 18:42:48.706 100 FEE 436488 19151 6046686 2024-02-23 18:42:48.706 2024-02-23 18:42:48.706 900 TIP 436488 20715 6046687 2024-02-23 18:42:52.857 2024-02-23 18:42:52.857 100 FEE 436490 1261 6046688 2024-02-23 18:42:52.857 2024-02-23 18:42:52.857 900 TIP 436490 5791 6046723 2024-02-23 18:46:01.815 2024-02-23 18:46:01.815 1000 FEE 436355 10698 6046724 2024-02-23 18:46:01.815 2024-02-23 18:46:01.815 9000 TIP 436355 3642 6046736 2024-02-23 18:46:50.832 2024-02-23 18:46:50.832 1000 FEE 436466 8459 6046737 2024-02-23 18:46:50.832 2024-02-23 18:46:50.832 9000 TIP 436466 20129 6046738 2024-02-23 18:46:59.493 2024-02-23 18:46:59.493 1000 FEE 436554 12218 6046757 2024-02-23 18:49:24.563 2024-02-23 18:49:24.563 2100 FEE 431655 5527 6046758 2024-02-23 18:49:24.563 2024-02-23 18:49:24.563 18900 TIP 431655 5306 6046759 2024-02-23 18:49:43.012 2024-02-23 18:49:43.012 1000 FEE 436555 17714 6046760 2024-02-23 18:49:43.012 2024-02-23 18:49:43.012 9000 TIP 436555 18635 6046800 2024-02-23 18:54:15.159 2024-02-23 18:54:15.159 2100 FEE 436412 17201 6046801 2024-02-23 18:54:15.159 2024-02-23 18:54:15.159 18900 TIP 436412 1209 6046834 2024-02-23 18:58:44.399 2024-02-23 18:58:44.399 2100 FEE 435944 10063 6046835 2024-02-23 18:58:44.399 2024-02-23 18:58:44.399 18900 TIP 435944 15386 6046890 2024-02-23 19:04:22.838 2024-02-23 19:04:22.838 2300 FEE 436499 16341 6046891 2024-02-23 19:04:22.838 2024-02-23 19:04:22.838 20700 TIP 436499 18264 6046915 2024-02-23 19:05:22.469 2024-02-23 19:05:22.469 5000 FEE 436556 9906 6046916 2024-02-23 19:05:22.469 2024-02-23 19:05:22.469 45000 TIP 436556 7760 6046919 2024-02-23 19:05:44.243 2024-02-23 19:05:44.243 8300 FEE 436566 19007 6046920 2024-02-23 19:05:44.243 2024-02-23 19:05:44.243 74700 TIP 436566 20180 6046929 2024-02-23 19:05:44.767 2024-02-23 19:05:44.767 8300 FEE 436566 7877 6046930 2024-02-23 19:05:44.767 2024-02-23 19:05:44.767 74700 TIP 436566 18769 6046956 2024-02-23 19:06:27.322 2024-02-23 19:06:27.322 1000 FEE 436562 19863 6046957 2024-02-23 19:06:27.322 2024-02-23 19:06:27.322 9000 TIP 436562 9496 6046969 2024-02-23 19:07:04.531 2024-02-23 19:07:04.531 1100 FEE 385935 16193 6046970 2024-02-23 19:07:04.531 2024-02-23 19:07:04.531 9900 TIP 385935 17541 6046987 2024-02-23 19:07:06.057 2024-02-23 19:07:06.057 1100 FEE 385935 5129 6046988 2024-02-23 19:07:06.057 2024-02-23 19:07:06.057 9900 TIP 385935 6383 6046997 2024-02-23 19:08:17.852 2024-02-23 19:08:17.852 100000 FEE 436574 1120 6047009 2024-02-23 19:10:05.768 2024-02-23 19:10:05.768 1000 FEE 436561 6327 6047010 2024-02-23 19:10:05.768 2024-02-23 19:10:05.768 9000 TIP 436561 20776 6047063 2024-02-23 19:20:21.812 2024-02-23 19:20:21.812 1000 POLL 436323 4776 6047082 2024-02-23 19:27:49.532 2024-02-23 19:27:49.532 1000 FEE 436572 20636 6047083 2024-02-23 19:27:49.532 2024-02-23 19:27:49.532 9000 TIP 436572 19259 6047090 2024-02-23 19:29:32.711 2024-02-23 19:29:32.711 1000 FEE 436511 6578 6047091 2024-02-23 19:29:32.711 2024-02-23 19:29:32.711 9000 TIP 436511 4633 6047114 2024-02-23 19:36:41.175 2024-02-23 19:36:41.175 3000 FEE 436583 6003 6047115 2024-02-23 19:36:41.175 2024-02-23 19:36:41.175 27000 TIP 436583 19930 6047126 2024-02-23 19:37:52.262 2024-02-23 19:37:52.262 1000 FEE 435820 4538 6047127 2024-02-23 19:37:52.262 2024-02-23 19:37:52.262 9000 TIP 435820 18423 6047156 2024-02-23 19:42:27.052 2024-02-23 19:42:27.052 2100 FEE 436507 19309 6047157 2024-02-23 19:42:27.052 2024-02-23 19:42:27.052 18900 TIP 436507 14449 6047159 2024-02-23 19:43:34.388 2024-02-23 19:43:34.388 1000 FEE 436326 20972 6046176 2024-02-23 18:03:23.602 2024-02-23 18:03:23.602 2300 FEE 436493 9183 6046177 2024-02-23 18:03:23.602 2024-02-23 18:03:23.602 20700 TIP 436493 21532 6046178 2024-02-23 18:03:23.761 2024-02-23 18:03:23.761 2300 FEE 436493 18705 6046179 2024-02-23 18:03:23.761 2024-02-23 18:03:23.761 20700 TIP 436493 2652 6046236 2024-02-23 18:03:31.469 2024-02-23 18:03:31.469 2300 FEE 436493 21509 6046237 2024-02-23 18:03:31.469 2024-02-23 18:03:31.469 20700 TIP 436493 1472 6046252 2024-02-23 18:03:32.984 2024-02-23 18:03:32.984 2300 FEE 436493 21547 6046253 2024-02-23 18:03:32.984 2024-02-23 18:03:32.984 20700 TIP 436493 16289 6046264 2024-02-23 18:03:33.971 2024-02-23 18:03:33.971 2300 FEE 436493 6419 6046265 2024-02-23 18:03:33.971 2024-02-23 18:03:33.971 20700 TIP 436493 891 6046282 2024-02-23 18:04:36.511 2024-02-23 18:04:36.511 210000 FEE 436514 12265 6046321 2024-02-23 18:08:53.552 2024-02-23 18:08:53.552 1000 FEE 436508 18751 6046322 2024-02-23 18:08:53.552 2024-02-23 18:08:53.552 9000 TIP 436508 17638 6046347 2024-02-23 18:09:09.814 2024-02-23 18:09:09.814 0 FEE 436519 18919 6046402 2024-02-23 18:16:45.884 2024-02-23 18:16:45.884 1000 FEE 436504 2776 6046403 2024-02-23 18:16:45.884 2024-02-23 18:16:45.884 9000 TIP 436504 2061 6046406 2024-02-23 18:16:46.323 2024-02-23 18:16:46.323 1000 FEE 436504 18945 6046407 2024-02-23 18:16:46.323 2024-02-23 18:16:46.323 9000 TIP 436504 698 6046408 2024-02-23 18:16:46.406 2024-02-23 18:16:46.406 1000 FEE 436504 5538 6046409 2024-02-23 18:16:46.406 2024-02-23 18:16:46.406 9000 TIP 436504 20717 6046410 2024-02-23 18:16:46.622 2024-02-23 18:16:46.622 1000 FEE 436504 9159 6046411 2024-02-23 18:16:46.622 2024-02-23 18:16:46.622 9000 TIP 436504 15147 6046416 2024-02-23 18:16:47.283 2024-02-23 18:16:47.283 1000 FEE 436504 11938 6046417 2024-02-23 18:16:47.283 2024-02-23 18:16:47.283 9000 TIP 436504 17722 6046433 2024-02-23 18:17:23.906 2024-02-23 18:17:23.906 3000 FEE 436241 2508 6046434 2024-02-23 18:17:23.906 2024-02-23 18:17:23.906 27000 TIP 436241 11938 6046473 2024-02-23 18:21:46.218 2024-02-23 18:21:46.218 100 FEE 436433 16834 6046474 2024-02-23 18:21:46.218 2024-02-23 18:21:46.218 900 TIP 436433 15806 6046475 2024-02-23 18:21:46.781 2024-02-23 18:21:46.781 100 FEE 436433 9833 6046476 2024-02-23 18:21:46.781 2024-02-23 18:21:46.781 900 TIP 436433 3504 6046540 2024-02-23 18:26:32.175 2024-02-23 18:26:32.175 1000 FEE 436324 1136 6046541 2024-02-23 18:26:32.175 2024-02-23 18:26:32.175 9000 TIP 436324 21083 6046551 2024-02-23 18:26:44.389 2024-02-23 18:26:44.389 1000 FEE 436292 5942 6046552 2024-02-23 18:26:44.389 2024-02-23 18:26:44.389 9000 TIP 436292 21361 6046586 2024-02-23 18:28:36.423 2024-02-23 18:28:36.423 1000 FEE 436343 10731 6046587 2024-02-23 18:28:36.423 2024-02-23 18:28:36.423 9000 TIP 436343 21063 6046606 2024-02-23 18:30:37.393 2024-02-23 18:30:37.393 1000 FEE 436538 19815 6046607 2024-02-23 18:30:48.332 2024-02-23 18:30:48.332 1000 FEE 436539 20187 6046612 2024-02-23 18:32:05.392 2024-02-23 18:32:05.392 1000 FEE 436541 4314 6046626 2024-02-23 18:35:04.365 2024-02-23 18:35:04.365 1000 FEE 436546 20826 6046655 2024-02-23 18:37:22.228 2024-02-23 18:37:22.228 1000 FEE 436549 18583 6046656 2024-02-23 18:37:22.228 2024-02-23 18:37:22.228 9000 TIP 436549 5791 6046663 2024-02-23 18:40:24.002 2024-02-23 18:40:24.002 2100 FEE 436382 866 6046664 2024-02-23 18:40:24.002 2024-02-23 18:40:24.002 18900 TIP 436382 5661 6046689 2024-02-23 18:43:00.878 2024-02-23 18:43:00.878 100 FEE 436495 19235 6046690 2024-02-23 18:43:00.878 2024-02-23 18:43:00.878 900 TIP 436495 19662 6046693 2024-02-23 18:43:22.92 2024-02-23 18:43:22.92 2100 FEE 436493 4395 6046694 2024-02-23 18:43:22.92 2024-02-23 18:43:22.92 18900 TIP 436493 16808 6046697 2024-02-23 18:43:30.736 2024-02-23 18:43:30.736 2100 FEE 436413 10398 6046698 2024-02-23 18:43:30.736 2024-02-23 18:43:30.736 18900 TIP 436413 897 6046734 2024-02-23 18:46:50.243 2024-02-23 18:46:50.243 1000 FEE 436466 20776 6046735 2024-02-23 18:46:50.243 2024-02-23 18:46:50.243 9000 TIP 436466 6229 6046745 2024-02-23 18:47:40.973 2024-02-23 18:47:40.973 1100 FEE 430208 9363 6046746 2024-02-23 18:47:40.973 2024-02-23 18:47:40.973 9900 TIP 430208 1468 6046827 2024-02-23 18:58:33.09 2024-02-23 18:58:33.09 1000 FEE 436563 19773 6046845 2024-02-23 18:59:58.719 2024-02-23 18:59:58.719 2100 FEE 436136 21212 6046846 2024-02-23 18:59:58.719 2024-02-23 18:59:58.719 18900 TIP 436136 21343 6046850 2024-02-23 19:00:59.898 2024-02-23 19:00:59.898 2100 FEE 436307 1745 6046851 2024-02-23 19:00:59.898 2024-02-23 19:00:59.898 18900 TIP 436307 9552 6046855 2024-02-23 19:01:18.301 2024-02-23 19:01:18.301 1000 FEE 436484 19398 6046856 2024-02-23 19:01:18.301 2024-02-23 19:01:18.301 9000 TIP 436484 21051 6046877 2024-02-23 19:03:47.242 2024-02-23 19:03:47.242 3000 FEE 436567 21242 6046878 2024-02-23 19:03:47.242 2024-02-23 19:03:47.242 27000 TIP 436567 19118 6046882 2024-02-23 19:04:22.247 2024-02-23 19:04:22.247 2300 FEE 436499 21453 6046883 2024-02-23 19:04:22.247 2024-02-23 19:04:22.247 20700 TIP 436499 16754 6046888 2024-02-23 19:04:22.707 2024-02-23 19:04:22.707 2300 FEE 436499 9833 6046889 2024-02-23 19:04:22.707 2024-02-23 19:04:22.707 20700 TIP 436499 20514 6046904 2024-02-23 19:05:15.204 2024-02-23 19:05:15.204 1000 FEE 436570 7992 6046913 2024-02-23 19:05:22.448 2024-02-23 19:05:22.448 16600 FEE 436499 20201 6046914 2024-02-23 19:05:22.448 2024-02-23 19:05:22.448 149400 TIP 436499 20681 6046945 2024-02-23 19:05:45.809 2024-02-23 19:05:45.809 8300 FEE 436566 17209 6046946 2024-02-23 19:05:45.809 2024-02-23 19:05:45.809 74700 TIP 436566 5646 6046947 2024-02-23 19:05:46.354 2024-02-23 19:05:46.354 8300 FEE 436566 16270 6046948 2024-02-23 19:05:46.354 2024-02-23 19:05:46.354 74700 TIP 436566 14705 6046962 2024-02-23 19:06:34.109 2024-02-23 19:06:34.109 1000 FEE 436560 20187 6046963 2024-02-23 19:06:34.109 2024-02-23 19:06:34.109 9000 TIP 436560 5129 6046983 2024-02-23 19:07:05.797 2024-02-23 19:07:05.797 1100 FEE 385935 4225 6046984 2024-02-23 19:07:05.797 2024-02-23 19:07:05.797 9900 TIP 385935 9494 6046995 2024-02-23 19:08:06.71 2024-02-23 19:08:06.71 1000 FEE 436344 17331 6046996 2024-02-23 19:08:06.71 2024-02-23 19:08:06.71 9000 TIP 436344 1051 6047011 2024-02-23 19:10:05.971 2024-02-23 19:10:05.971 1000 FEE 436561 15521 6046349 2024-02-23 18:09:23.559 2024-02-23 18:09:23.559 18900 TIP 435856 2748 6046364 2024-02-23 18:11:45.316 2024-02-23 18:11:45.316 2100 FEE 436457 989 6046365 2024-02-23 18:11:45.316 2024-02-23 18:11:45.316 18900 TIP 436457 20891 6046380 2024-02-23 18:15:29.886 2024-02-23 18:15:29.886 10000 FEE 436466 15161 6046381 2024-02-23 18:15:29.886 2024-02-23 18:15:29.886 90000 TIP 436466 6555 6046389 2024-02-23 18:16:36.789 2024-02-23 18:16:36.789 2100 FEE 436459 7847 6046390 2024-02-23 18:16:36.789 2024-02-23 18:16:36.789 18900 TIP 436459 14037 6046393 2024-02-23 18:16:44.385 2024-02-23 18:16:44.385 1000 FEE 436504 11956 6046394 2024-02-23 18:16:44.385 2024-02-23 18:16:44.385 9000 TIP 436504 21446 6046395 2024-02-23 18:16:44.696 2024-02-23 18:16:44.696 2000 FEE 436504 20137 6046396 2024-02-23 18:16:44.696 2024-02-23 18:16:44.696 18000 TIP 436504 15226 6046426 2024-02-23 18:16:48.137 2024-02-23 18:16:48.137 1000 FEE 436504 18460 6046427 2024-02-23 18:16:48.137 2024-02-23 18:16:48.137 9000 TIP 436504 10719 6046439 2024-02-23 18:19:21.047 2024-02-23 18:19:21.047 1000 POLL 436323 9352 6046446 2024-02-23 18:20:39.719 2024-02-23 18:20:39.719 1000 FEE 436526 17001 6046447 2024-02-23 18:20:53.547 2024-02-23 18:20:53.547 100 FEE 436512 20756 6046448 2024-02-23 18:20:53.547 2024-02-23 18:20:53.547 900 TIP 436512 2335 6046460 2024-02-23 18:21:28.29 2024-02-23 18:21:28.29 1000 FEE 436527 11621 6046479 2024-02-23 18:21:47.349 2024-02-23 18:21:47.349 100 FEE 436433 19153 6046480 2024-02-23 18:21:47.349 2024-02-23 18:21:47.349 900 TIP 436433 695 6046481 2024-02-23 18:21:48.09 2024-02-23 18:21:48.09 100 FEE 436433 7587 6046482 2024-02-23 18:21:48.09 2024-02-23 18:21:48.09 900 TIP 436433 4633 6046486 2024-02-23 18:22:41.166 2024-02-23 18:22:41.166 1000 FEE 436426 5359 6046487 2024-02-23 18:22:41.166 2024-02-23 18:22:41.166 9000 TIP 436426 10484 6046495 2024-02-23 18:24:04.027 2024-02-23 18:24:04.027 300 FEE 436493 9669 6046496 2024-02-23 18:24:04.027 2024-02-23 18:24:04.027 2700 TIP 436493 5160 6046497 2024-02-23 18:24:04.426 2024-02-23 18:24:04.426 100 FEE 436493 15060 6046498 2024-02-23 18:24:04.426 2024-02-23 18:24:04.426 900 TIP 436493 1737 6046511 2024-02-23 18:24:05.884 2024-02-23 18:24:05.884 100 FEE 436493 18731 6046512 2024-02-23 18:24:05.884 2024-02-23 18:24:05.884 900 TIP 436493 18403 6046515 2024-02-23 18:24:06.567 2024-02-23 18:24:06.567 100 FEE 436493 9275 6046516 2024-02-23 18:24:06.567 2024-02-23 18:24:06.567 900 TIP 436493 2056 6046535 2024-02-23 18:26:28.825 2024-02-23 18:26:28.825 1000 FEE 436531 18769 6046538 2024-02-23 18:26:31.97 2024-02-23 18:26:31.97 1000 FEE 436529 15049 6046539 2024-02-23 18:26:31.97 2024-02-23 18:26:31.97 9000 TIP 436529 13878 6046542 2024-02-23 18:26:32.246 2024-02-23 18:26:32.246 500 FEE 436518 9378 6046543 2024-02-23 18:26:32.246 2024-02-23 18:26:32.246 4500 TIP 436518 10591 6046544 2024-02-23 18:26:32.725 2024-02-23 18:26:32.725 500 FEE 436518 18188 6046545 2024-02-23 18:26:32.725 2024-02-23 18:26:32.725 4500 TIP 436518 1647 6046565 2024-02-23 18:26:51.189 2024-02-23 18:26:51.189 1000 FEE 436269 9275 6046566 2024-02-23 18:26:51.189 2024-02-23 18:26:51.189 9000 TIP 436269 7125 6046588 2024-02-23 18:28:38.833 2024-02-23 18:28:38.833 1000 FEE 436396 13987 6046589 2024-02-23 18:28:38.833 2024-02-23 18:28:38.833 9000 TIP 436396 5500 6046590 2024-02-23 18:28:47.333 2024-02-23 18:28:47.333 1000 FEE 436275 6393 6046591 2024-02-23 18:28:47.333 2024-02-23 18:28:47.333 9000 TIP 436275 20663 6046593 2024-02-23 18:29:38.172 2024-02-23 18:29:38.172 1000 FEE 436535 11898 6046624 2024-02-23 18:34:49.194 2024-02-23 18:34:49.194 1000 FEE 436545 959 6046627 2024-02-23 18:35:05.379 2024-02-23 18:35:05.379 2100 FEE 436320 17714 6046628 2024-02-23 18:35:05.379 2024-02-23 18:35:05.379 18900 TIP 436320 1800 6046629 2024-02-23 18:35:08.978 2024-02-23 18:35:08.978 1000 FEE 436547 1493 6046650 2024-02-23 18:37:21.444 2024-02-23 18:37:21.444 0 FEE 436540 5661 6046653 2024-02-23 18:37:21.87 2024-02-23 18:37:21.87 1000 FEE 436549 11938 6046654 2024-02-23 18:37:21.87 2024-02-23 18:37:21.87 9000 TIP 436549 1720 6046671 2024-02-23 18:41:29.731 2024-02-23 18:41:29.731 500 FEE 436548 2774 6046672 2024-02-23 18:41:29.731 2024-02-23 18:41:29.731 4500 TIP 436548 7376 6046673 2024-02-23 18:41:29.833 2024-02-23 18:41:29.833 500 FEE 436548 20254 6046674 2024-02-23 18:41:29.833 2024-02-23 18:41:29.833 4500 TIP 436548 20066 6046681 2024-02-23 18:42:18.289 2024-02-23 18:42:18.289 1000 FEE 436514 1713 6046682 2024-02-23 18:42:18.289 2024-02-23 18:42:18.289 9000 TIP 436514 19689 6046707 2024-02-23 18:43:46.756 2024-02-23 18:43:46.756 2100 FEE 436402 21047 6046708 2024-02-23 18:43:46.756 2024-02-23 18:43:46.756 18900 TIP 436402 13781 6046709 2024-02-23 18:43:54.011 2024-02-23 18:43:54.011 2100 FEE 436392 19154 6046710 2024-02-23 18:43:54.011 2024-02-23 18:43:54.011 18900 TIP 436392 16747 6046715 2024-02-23 18:45:57.077 2024-02-23 18:45:57.077 1000 FEE 436466 1007 6046716 2024-02-23 18:45:57.077 2024-02-23 18:45:57.077 9000 TIP 436466 21088 6046719 2024-02-23 18:45:58.974 2024-02-23 18:45:58.974 1000 FEE 436466 17690 6046720 2024-02-23 18:45:58.974 2024-02-23 18:45:58.974 9000 TIP 436466 19572 6046721 2024-02-23 18:45:59.854 2024-02-23 18:45:59.854 1000 FEE 436466 19087 6046722 2024-02-23 18:45:59.854 2024-02-23 18:45:59.854 9000 TIP 436466 18829 6046740 2024-02-23 18:47:16.038 2024-02-23 18:47:16.038 2100 FEE 430277 20015 6046741 2024-02-23 18:47:16.038 2024-02-23 18:47:16.038 18900 TIP 430277 18174 6046751 2024-02-23 18:48:48.754 2024-02-23 18:48:48.754 2100 FEE 436493 21356 6046752 2024-02-23 18:48:48.754 2024-02-23 18:48:48.754 18900 TIP 436493 16532 6046765 2024-02-23 18:49:44.854 2024-02-23 18:49:44.854 1000 FEE 436555 16193 6046766 2024-02-23 18:49:44.854 2024-02-23 18:49:44.854 9000 TIP 436555 16839 6046776 2024-02-23 18:50:35.87 2024-02-23 18:50:35.87 2100 FEE 436508 21571 6046777 2024-02-23 18:50:35.87 2024-02-23 18:50:35.87 18900 TIP 436508 18114 6046778 2024-02-23 18:50:51.882 2024-02-23 18:50:51.882 1100 FEE 436459 10981 6046779 2024-02-23 18:50:51.882 2024-02-23 18:50:51.882 9900 TIP 436459 21547 6046794 2024-02-23 18:52:48.855 2024-02-23 18:52:48.855 2100 FEE 436243 13781 6046795 2024-02-23 18:52:48.855 2024-02-23 18:52:48.855 18900 TIP 436243 635 6046810 2024-02-23 18:56:03.291 2024-02-23 18:56:03.291 1000 FEE 436561 882 6046817 2024-02-23 18:57:07.338 2024-02-23 18:57:07.338 0 FEE 375801 8360 6046830 2024-02-23 18:58:36.872 2024-02-23 18:58:36.872 1000 FEE 436522 14688 6046831 2024-02-23 18:58:36.872 2024-02-23 18:58:36.872 9000 TIP 436522 6149 6046832 2024-02-23 18:58:41.962 2024-02-23 18:58:41.962 4000 FEE 436555 19583 6046833 2024-02-23 18:58:41.962 2024-02-23 18:58:41.962 36000 TIP 436555 16259 6046837 2024-02-23 18:58:54.216 2024-02-23 18:58:54.216 1000 FEE 436529 1960 6046838 2024-02-23 18:58:54.216 2024-02-23 18:58:54.216 9000 TIP 436529 21357 6046839 2024-02-23 18:58:55.312 2024-02-23 18:58:55.312 1000 FEE 436559 805 6046840 2024-02-23 18:58:55.312 2024-02-23 18:58:55.312 9000 TIP 436559 16594 6046853 2024-02-23 19:01:05.504 2024-02-23 19:01:05.504 2100 FEE 435847 16532 6046854 2024-02-23 19:01:05.504 2024-02-23 19:01:05.504 18900 TIP 435847 2513 6046860 2024-02-23 19:02:59.724 2024-02-23 19:02:59.724 1000 FEE 436568 16939 6046872 2024-02-23 19:03:30.303 2024-02-23 19:03:30.303 2100 FEE 435551 6137 6046873 2024-02-23 19:03:30.303 2024-02-23 19:03:30.303 18900 TIP 435551 14950 6046419 2024-02-23 18:16:47.46 2024-02-23 18:16:47.46 9000 TIP 436504 21482 6046420 2024-02-23 18:16:47.628 2024-02-23 18:16:47.628 1000 FEE 436504 20163 6046421 2024-02-23 18:16:47.628 2024-02-23 18:16:47.628 9000 TIP 436504 5195 6046430 2024-02-23 18:16:48.854 2024-02-23 18:16:48.854 1000 FEE 436504 6741 6046431 2024-02-23 18:16:48.854 2024-02-23 18:16:48.854 9000 TIP 436504 18101 6046467 2024-02-23 18:21:30.917 2024-02-23 18:21:30.917 100 FEE 436492 6688 6046468 2024-02-23 18:21:30.917 2024-02-23 18:21:30.917 900 TIP 436492 18169 6046509 2024-02-23 18:24:05.768 2024-02-23 18:24:05.768 100 FEE 436493 10270 6046510 2024-02-23 18:24:05.768 2024-02-23 18:24:05.768 900 TIP 436493 6419 6046523 2024-02-23 18:25:53.95 2024-02-23 18:25:53.95 1000 FEE 436093 640 6046524 2024-02-23 18:25:53.95 2024-02-23 18:25:53.95 9000 TIP 436093 16912 6046536 2024-02-23 18:26:31.82 2024-02-23 18:26:31.82 1000 FEE 436529 19576 6046537 2024-02-23 18:26:31.82 2024-02-23 18:26:31.82 9000 TIP 436529 21275 6046555 2024-02-23 18:26:45.07 2024-02-23 18:26:45.07 1000 FEE 436301 2776 6046556 2024-02-23 18:26:45.07 2024-02-23 18:26:45.07 9000 TIP 436301 21242 6046561 2024-02-23 18:26:50.264 2024-02-23 18:26:50.264 1000 FEE 436278 1658 6046562 2024-02-23 18:26:50.264 2024-02-23 18:26:50.264 9000 TIP 436278 18262 6046570 2024-02-23 18:27:14.231 2024-02-23 18:27:14.231 1000 FEE 436449 18641 6046571 2024-02-23 18:27:14.231 2024-02-23 18:27:14.231 9000 TIP 436449 13365 6046572 2024-02-23 18:27:18.63 2024-02-23 18:27:18.63 1000 FEE 436498 21503 6046573 2024-02-23 18:27:18.63 2024-02-23 18:27:18.63 9000 TIP 436498 18265 6046576 2024-02-23 18:27:21.978 2024-02-23 18:27:21.978 2100 FEE 436495 19449 6046577 2024-02-23 18:27:21.978 2024-02-23 18:27:21.978 18900 TIP 436495 2722 6046584 2024-02-23 18:28:29.356 2024-02-23 18:28:29.356 1000 FEE 436392 15732 6046585 2024-02-23 18:28:29.356 2024-02-23 18:28:29.356 9000 TIP 436392 20904 6046597 2024-02-23 18:29:57.43 2024-02-23 18:29:57.43 1000 FEE 436537 11165 6046608 2024-02-23 18:30:53.95 2024-02-23 18:30:53.95 0 FEE 436531 2022 6046613 2024-02-23 18:32:26.113 2024-02-23 18:32:26.113 1000 FEE 436542 20560 6046675 2024-02-23 18:42:00.174 2024-02-23 18:42:00.174 1000 FEE 436552 711 6046713 2024-02-23 18:45:56.357 2024-02-23 18:45:56.357 1000 FEE 436466 2338 6046714 2024-02-23 18:45:56.357 2024-02-23 18:45:56.357 9000 TIP 436466 1493 6046717 2024-02-23 18:45:58.116 2024-02-23 18:45:58.116 1000 FEE 436466 14295 6046718 2024-02-23 18:45:58.116 2024-02-23 18:45:58.116 9000 TIP 436466 7425 6046768 2024-02-23 18:50:16.255 2024-02-23 18:50:16.255 2100 FEE 436493 17392 6046769 2024-02-23 18:50:16.255 2024-02-23 18:50:16.255 18900 TIP 436493 13987 6046821 2024-02-23 18:58:06.687 2024-02-23 18:58:06.687 2100 FEE 436033 1114 6046822 2024-02-23 18:58:06.687 2024-02-23 18:58:06.687 18900 TIP 436033 11220 6046825 2024-02-23 18:58:14.361 2024-02-23 18:58:14.361 1000 FEE 436552 19469 6046826 2024-02-23 18:58:14.361 2024-02-23 18:58:14.361 9000 TIP 436552 21172 6046874 2024-02-23 19:03:33.683 2024-02-23 19:03:33.683 2100 FEE 436556 1960 6046875 2024-02-23 19:03:33.683 2024-02-23 19:03:33.683 18900 TIP 436556 3213 6046884 2024-02-23 19:04:22.393 2024-02-23 19:04:22.393 2300 FEE 436499 19553 6046885 2024-02-23 19:04:22.393 2024-02-23 19:04:22.393 20700 TIP 436499 20257 6046892 2024-02-23 19:04:22.931 2024-02-23 19:04:22.931 2300 FEE 436499 17827 6046893 2024-02-23 19:04:22.931 2024-02-23 19:04:22.931 20700 TIP 436499 18819 6046909 2024-02-23 19:05:20.342 2024-02-23 19:05:20.342 16600 FEE 436499 2652 6046910 2024-02-23 19:05:20.342 2024-02-23 19:05:20.342 149400 TIP 436499 9921 6046958 2024-02-23 19:06:33.136 2024-02-23 19:06:33.136 1000 FEE 436560 12268 6046959 2024-02-23 19:06:33.136 2024-02-23 19:06:33.136 9000 TIP 436560 11996 6046979 2024-02-23 19:07:05.503 2024-02-23 19:07:05.503 2200 FEE 385935 722 6046980 2024-02-23 19:07:05.503 2024-02-23 19:07:05.503 19800 TIP 385935 19335 6046991 2024-02-23 19:07:06.381 2024-02-23 19:07:06.381 1100 FEE 385935 997 6046992 2024-02-23 19:07:06.381 2024-02-23 19:07:06.381 9900 TIP 385935 641 6047005 2024-02-23 19:10:05.38 2024-02-23 19:10:05.38 1000 FEE 436561 10393 6047006 2024-02-23 19:10:05.38 2024-02-23 19:10:05.38 9000 TIP 436561 16341 6047015 2024-02-23 19:10:34.687 2024-02-23 19:10:34.687 2100 FEE 435619 19981 6047016 2024-02-23 19:10:34.687 2024-02-23 19:10:34.687 18900 TIP 435619 814 6047019 2024-02-23 19:10:54.719 2024-02-23 19:10:54.719 1100 FEE 435630 20683 6047020 2024-02-23 19:10:54.719 2024-02-23 19:10:54.719 9900 TIP 435630 12422 6047033 2024-02-23 19:12:52.333 2024-02-23 19:12:52.333 2300 FEE 436564 17741 6047034 2024-02-23 19:12:52.333 2024-02-23 19:12:52.333 20700 TIP 436564 11423 6047042 2024-02-23 19:14:56.718 2024-02-23 19:14:56.718 2100 FEE 436570 21422 6047043 2024-02-23 19:14:56.718 2024-02-23 19:14:56.718 18900 TIP 436570 14731 6047053 2024-02-23 19:19:02.966 2024-02-23 19:19:02.966 5000 FEE 436527 19777 6047054 2024-02-23 19:19:02.966 2024-02-23 19:19:02.966 45000 TIP 436527 3392 6047056 2024-02-23 19:19:06.798 2024-02-23 19:19:06.798 1000 FEE 436580 2514 6047067 2024-02-23 19:23:09.115 2024-02-23 19:23:09.115 2100 FEE 436527 6578 6047068 2024-02-23 19:23:09.115 2024-02-23 19:23:09.115 18900 TIP 436527 14280 6047149 2024-02-23 19:41:26.348 2024-02-23 19:41:26.348 1000 FEE 436592 16250 6047171 2024-02-23 19:47:00.319 2024-02-23 19:47:00.319 0 FEE 436585 12736 6047177 2024-02-23 19:50:55.232 2024-02-23 19:50:55.232 1000 POLL 436323 2077 6047185 2024-02-23 19:51:29.712 2024-02-23 19:51:29.712 2300 FEE 436593 21373 6047186 2024-02-23 19:51:29.712 2024-02-23 19:51:29.712 20700 TIP 436593 9200 6047203 2024-02-23 19:51:31.919 2024-02-23 19:51:31.919 2300 FEE 436593 11956 6047204 2024-02-23 19:51:31.919 2024-02-23 19:51:31.919 20700 TIP 436593 713 6047216 2024-02-23 19:55:05.842 2024-02-23 19:55:05.842 2100 FEE 436241 10611 6047217 2024-02-23 19:55:05.842 2024-02-23 19:55:05.842 18900 TIP 436241 1845 6047220 2024-02-23 19:55:07.143 2024-02-23 19:55:07.143 2100 FEE 436459 7772 6047221 2024-02-23 19:55:07.143 2024-02-23 19:55:07.143 18900 TIP 436459 9482 6047226 2024-02-23 19:55:09.116 2024-02-23 19:55:09.116 2100 FEE 436093 8916 6047227 2024-02-23 19:55:09.116 2024-02-23 19:55:09.116 18900 TIP 436093 16948 6047259 2024-02-23 19:56:24.942 2024-02-23 19:56:24.942 2100 FEE 436218 11477 6047260 2024-02-23 19:56:24.942 2024-02-23 19:56:24.942 18900 TIP 436218 4177 6047273 2024-02-23 20:00:14.328 2024-02-23 20:00:14.328 100 FEE 436560 15925 6047274 2024-02-23 20:00:14.328 2024-02-23 20:00:14.328 900 TIP 436560 19471 6047286 2024-02-23 20:00:56.891 2024-02-23 20:00:56.891 900 FEE 436572 15577 6047287 2024-02-23 20:00:56.891 2024-02-23 20:00:56.891 8100 TIP 436572 768 6047296 2024-02-23 20:02:47.307 2024-02-23 20:02:47.307 100 FEE 436523 18446 6047297 2024-02-23 20:02:47.307 2024-02-23 20:02:47.307 900 TIP 436523 9290 6047307 2024-02-23 20:03:26.218 2024-02-23 20:03:26.218 100 FEE 436556 8541 6047308 2024-02-23 20:03:26.218 2024-02-23 20:03:26.218 900 TIP 436556 787 6047320 2024-02-23 20:04:51.838 2024-02-23 20:04:51.838 2300 FEE 436605 8472 6047321 2024-02-23 20:04:51.838 2024-02-23 20:04:51.838 20700 TIP 436605 739 6047362 2024-02-23 20:04:56.715 2024-02-23 20:04:56.715 1000 FEE 436326 20198 6047363 2024-02-23 20:04:56.715 2024-02-23 20:04:56.715 9000 TIP 436326 2640 6047378 2024-02-23 20:04:57.844 2024-02-23 20:04:57.844 2300 FEE 436605 18528 6046442 2024-02-23 18:19:45.068 2024-02-23 18:19:45.068 1000 FEE 436525 21498 6046453 2024-02-23 18:20:56.043 2024-02-23 18:20:56.043 100 FEE 436512 16194 6046454 2024-02-23 18:20:56.043 2024-02-23 18:20:56.043 900 TIP 436512 3478 6046461 2024-02-23 18:21:29.857 2024-02-23 18:21:29.857 100 FEE 436492 9078 6046462 2024-02-23 18:21:29.857 2024-02-23 18:21:29.857 900 TIP 436492 21480 6046463 2024-02-23 18:21:30.401 2024-02-23 18:21:30.401 100 FEE 436492 2335 6046464 2024-02-23 18:21:30.401 2024-02-23 18:21:30.401 900 TIP 436492 5809 6046499 2024-02-23 18:24:04.608 2024-02-23 18:24:04.608 100 FEE 436493 20254 6046500 2024-02-23 18:24:04.608 2024-02-23 18:24:04.608 900 TIP 436493 5725 6046501 2024-02-23 18:24:04.846 2024-02-23 18:24:04.846 100 FEE 436493 20179 6046502 2024-02-23 18:24:04.846 2024-02-23 18:24:04.846 900 TIP 436493 18989 6046503 2024-02-23 18:24:05.05 2024-02-23 18:24:05.05 100 FEE 436493 18423 6046504 2024-02-23 18:24:05.05 2024-02-23 18:24:05.05 900 TIP 436493 1286 6046505 2024-02-23 18:24:05.267 2024-02-23 18:24:05.267 100 FEE 436493 17095 6046506 2024-02-23 18:24:05.267 2024-02-23 18:24:05.267 900 TIP 436493 16769 6046526 2024-02-23 18:26:05.638 2024-02-23 18:26:05.638 1000 FEE 436303 18517 6046527 2024-02-23 18:26:05.638 2024-02-23 18:26:05.638 9000 TIP 436303 19507 6046557 2024-02-23 18:26:48.07 2024-02-23 18:26:48.07 1100 FEE 436509 16341 6046558 2024-02-23 18:26:48.07 2024-02-23 18:26:48.07 9900 TIP 436509 2789 6046567 2024-02-23 18:26:51.837 2024-02-23 18:26:51.837 1000 FEE 436295 20258 6046568 2024-02-23 18:26:51.837 2024-02-23 18:26:51.837 9000 TIP 436295 19878 6046579 2024-02-23 18:27:58.974 2024-02-23 18:27:58.974 1000 FEE 436395 12769 6046580 2024-02-23 18:27:58.974 2024-02-23 18:27:58.974 9000 TIP 436395 15549 6046636 2024-02-23 18:35:37.924 2024-02-23 18:35:37.924 1000 FEE 436534 18423 6046637 2024-02-23 18:35:37.924 2024-02-23 18:35:37.924 9000 TIP 436534 1273 6046638 2024-02-23 18:35:43.6 2024-02-23 18:35:43.6 0 FEE 436545 5828 6046651 2024-02-23 18:37:21.46 2024-02-23 18:37:21.46 1000 FEE 436549 2061 6046652 2024-02-23 18:37:21.46 2024-02-23 18:37:21.46 9000 TIP 436549 17042 6046666 2024-02-23 18:41:19.412 2024-02-23 18:41:19.412 1000 FEE 436551 5522 6046679 2024-02-23 18:42:18.119 2024-02-23 18:42:18.119 1000 FEE 436514 15049 6046680 2024-02-23 18:42:18.119 2024-02-23 18:42:18.119 9000 TIP 436514 7376 6046701 2024-02-23 18:43:38.546 2024-02-23 18:43:38.546 2100 FEE 436323 10490 6046702 2024-02-23 18:43:38.546 2024-02-23 18:43:38.546 18900 TIP 436323 4062 6046742 2024-02-23 18:47:21.673 2024-02-23 18:47:21.673 10000 FEE 436555 12289 6046753 2024-02-23 18:48:56.725 2024-02-23 18:48:56.725 1100 FEE 430104 654 6046754 2024-02-23 18:48:56.725 2024-02-23 18:48:56.725 9900 TIP 430104 9169 6046786 2024-02-23 18:52:02.946 2024-02-23 18:52:02.946 2500 FEE 436380 19335 6046787 2024-02-23 18:52:02.946 2024-02-23 18:52:02.946 22500 TIP 436380 620 6046788 2024-02-23 18:52:04.565 2024-02-23 18:52:04.565 2500 FEE 436467 711 6046789 2024-02-23 18:52:04.565 2024-02-23 18:52:04.565 22500 TIP 436467 19033 6046802 2024-02-23 18:55:02.912 2024-02-23 18:55:02.912 1100 FEE 436197 20837 6046803 2024-02-23 18:55:02.912 2024-02-23 18:55:02.912 9900 TIP 436197 897 6046818 2024-02-23 18:57:43.053 2024-02-23 18:57:43.053 2100 FEE 436100 13399 6046819 2024-02-23 18:57:43.053 2024-02-23 18:57:43.053 18900 TIP 436100 14906 6046828 2024-02-23 18:58:35.798 2024-02-23 18:58:35.798 4000 FEE 436553 2010 6046829 2024-02-23 18:58:35.798 2024-02-23 18:58:35.798 36000 TIP 436553 20594 6046879 2024-02-23 19:03:51.123 2024-02-23 19:03:51.123 1000 FEE 436417 6136 6046880 2024-02-23 19:03:51.123 2024-02-23 19:03:51.123 9000 TIP 436417 989 6046905 2024-02-23 19:05:19.879 2024-02-23 19:05:19.879 8300 FEE 436499 18664 6046906 2024-02-23 19:05:19.879 2024-02-23 19:05:19.879 74700 TIP 436499 664 6046935 2024-02-23 19:05:45.074 2024-02-23 19:05:45.074 8300 FEE 436566 14705 6046936 2024-02-23 19:05:45.074 2024-02-23 19:05:45.074 74700 TIP 436566 712 6046939 2024-02-23 19:05:45.489 2024-02-23 19:05:45.489 8300 FEE 436566 2151 6046940 2024-02-23 19:05:45.489 2024-02-23 19:05:45.489 74700 TIP 436566 19615 6046960 2024-02-23 19:06:33.818 2024-02-23 19:06:33.818 1000 FEE 436560 19153 6046961 2024-02-23 19:06:33.818 2024-02-23 19:06:33.818 9000 TIP 436560 17522 6046985 2024-02-23 19:07:05.908 2024-02-23 19:07:05.908 1100 FEE 385935 18232 6046986 2024-02-23 19:07:05.908 2024-02-23 19:07:05.908 9900 TIP 385935 19148 6046994 2024-02-23 19:08:05.429 2024-02-23 19:08:05.429 1000 FEE 436573 17030 6047002 2024-02-23 19:10:02.81 2024-02-23 19:10:02.81 1100 FEE 435728 644 6047003 2024-02-23 19:10:02.81 2024-02-23 19:10:02.81 9900 TIP 435728 12721 6047007 2024-02-23 19:10:05.531 2024-02-23 19:10:05.531 1000 FEE 436561 14267 6047008 2024-02-23 19:10:05.531 2024-02-23 19:10:05.531 9000 TIP 436561 19193 6047022 2024-02-23 19:11:20.343 2024-02-23 19:11:20.343 1100 FEE 436437 2459 6047023 2024-02-23 19:11:20.343 2024-02-23 19:11:20.343 9900 TIP 436437 19138 6047035 2024-02-23 19:12:53.332 2024-02-23 19:12:53.332 2300 FEE 436564 18271 6047036 2024-02-23 19:12:53.332 2024-02-23 19:12:53.332 20700 TIP 436564 14552 6047051 2024-02-23 19:18:47.311 2024-02-23 19:18:47.311 4200 FEE 436336 18909 6047052 2024-02-23 19:18:47.311 2024-02-23 19:18:47.311 37800 TIP 436336 17094 6047071 2024-02-23 19:24:03.541 2024-02-23 19:24:03.541 1000 FEE 436583 16706 6047092 2024-02-23 19:29:32.938 2024-02-23 19:29:32.938 1000 FEE 436511 6327 6047093 2024-02-23 19:29:32.938 2024-02-23 19:29:32.938 9000 TIP 436511 1692 6047097 2024-02-23 19:30:53.483 2024-02-23 19:30:53.483 100 FEE 436493 19938 6047098 2024-02-23 19:30:53.483 2024-02-23 19:30:53.483 900 TIP 436493 18265 6047100 2024-02-23 19:31:26.032 2024-02-23 19:31:26.032 1000 POLL 436323 894 6047131 2024-02-23 19:38:13.516 2024-02-23 19:38:13.516 1000 FEE 436589 1631 6047140 2024-02-23 19:39:26.837 2024-02-23 19:39:26.837 1000 FEE 436591 18449 6047169 2024-02-23 19:46:05.14 2024-02-23 19:46:05.14 1000 FEE 436595 19151 6047193 2024-02-23 19:51:30.239 2024-02-23 19:51:30.239 2300 FEE 436593 11862 6047194 2024-02-23 19:51:30.239 2024-02-23 19:51:30.239 20700 TIP 436593 18306 6047197 2024-02-23 19:51:31.071 2024-02-23 19:51:31.071 2300 FEE 436593 21413 6047198 2024-02-23 19:51:31.071 2024-02-23 19:51:31.071 20700 TIP 436593 19637 6047210 2024-02-23 19:52:44.598 2024-02-23 19:52:44.598 1000 FEE 436599 15938 6047224 2024-02-23 19:55:08.516 2024-02-23 19:55:08.516 2100 FEE 436413 1611 6047225 2024-02-23 19:55:08.516 2024-02-23 19:55:08.516 18900 TIP 436413 16788 6047230 2024-02-23 19:55:11.018 2024-02-23 19:55:11.018 2100 FEE 436566 1006 6047231 2024-02-23 19:55:11.018 2024-02-23 19:55:11.018 18900 TIP 436566 1120 6047236 2024-02-23 19:55:13.221 2024-02-23 19:55:13.221 2100 FEE 436323 16154 6047237 2024-02-23 19:55:13.221 2024-02-23 19:55:13.221 18900 TIP 436323 19378 6047246 2024-02-23 19:55:15.644 2024-02-23 19:55:15.644 2100 FEE 436494 16929 6047247 2024-02-23 19:55:15.644 2024-02-23 19:55:15.644 18900 TIP 436494 21263 6047254 2024-02-23 19:55:17.651 2024-02-23 19:55:17.651 2100 FEE 436258 21119 6047255 2024-02-23 19:55:17.651 2024-02-23 19:55:17.651 18900 TIP 436258 15213 6047261 2024-02-23 19:56:45.092 2024-02-23 19:56:45.092 3000 FEE 436597 16126 6047262 2024-02-23 19:56:45.092 2024-02-23 19:56:45.092 27000 TIP 436597 21164 6047275 2024-02-23 20:00:18.572 2024-02-23 20:00:18.572 100 FEE 436566 750 6047276 2024-02-23 20:00:18.572 2024-02-23 20:00:18.572 900 TIP 436566 15549 6047374 2024-02-23 20:04:57.226 2024-02-23 20:04:57.226 2300 FEE 436605 631 6047375 2024-02-23 20:04:57.226 2024-02-23 20:04:57.226 20700 TIP 436605 8176 6047380 2024-02-23 20:04:57.979 2024-02-23 20:04:57.979 2300 FEE 436605 2402 6047381 2024-02-23 20:04:57.979 2024-02-23 20:04:57.979 20700 TIP 436605 1006 6047387 2024-02-23 20:05:00.881 2024-02-23 20:05:00.881 900 FEE 436550 7746 6047388 2024-02-23 20:05:00.881 2024-02-23 20:05:00.881 8100 TIP 436550 14260 6046470 2024-02-23 18:21:31.502 2024-02-23 18:21:31.502 1800 TIP 436492 8400 6046477 2024-02-23 18:21:46.978 2024-02-23 18:21:46.978 100 FEE 436433 1632 6046478 2024-02-23 18:21:46.978 2024-02-23 18:21:46.978 900 TIP 436433 1003 6046507 2024-02-23 18:24:05.457 2024-02-23 18:24:05.457 100 FEE 436493 2013 6046508 2024-02-23 18:24:05.457 2024-02-23 18:24:05.457 900 TIP 436493 5444 6046513 2024-02-23 18:24:06.083 2024-02-23 18:24:06.083 100 FEE 436493 14385 6046514 2024-02-23 18:24:06.083 2024-02-23 18:24:06.083 900 TIP 436493 21588 6046533 2024-02-23 18:26:28.619 2024-02-23 18:26:28.619 1000 FEE 436347 20924 6046534 2024-02-23 18:26:28.619 2024-02-23 18:26:28.619 9000 TIP 436347 19812 6046550 2024-02-23 18:26:42.157 2024-02-23 18:26:42.157 10000 FEE 436532 20683 6046563 2024-02-23 18:26:50.717 2024-02-23 18:26:50.717 1000 FEE 436113 17183 6046564 2024-02-23 18:26:50.717 2024-02-23 18:26:50.717 9000 TIP 436113 8448 6046574 2024-02-23 18:27:19.213 2024-02-23 18:27:19.213 1000 FEE 436455 636 6046575 2024-02-23 18:27:19.213 2024-02-23 18:27:19.213 9000 TIP 436455 2652 6046578 2024-02-23 18:27:47.324 2024-02-23 18:27:47.324 1000 POLL 436323 19034 6046640 2024-02-23 18:36:12.514 2024-02-23 18:36:12.514 1000 FEE 436548 9365 6046644 2024-02-23 18:36:48.11 2024-02-23 18:36:48.11 10000 FEE 436550 10554 6046667 2024-02-23 18:41:28.926 2024-02-23 18:41:28.926 500 FEE 436548 18357 6046668 2024-02-23 18:41:28.926 2024-02-23 18:41:28.926 4500 TIP 436548 13798 6046692 2024-02-23 18:43:06.654 2024-02-23 18:43:06.654 10000 FEE 436553 8423 6046728 2024-02-23 18:46:03.8 2024-02-23 18:46:03.8 1000 FEE 435882 14258 6046729 2024-02-23 18:46:03.8 2024-02-23 18:46:03.8 9000 TIP 435882 4173 6046743 2024-02-23 18:47:35.415 2024-02-23 18:47:35.415 1100 FEE 430216 18641 6046744 2024-02-23 18:47:35.415 2024-02-23 18:47:35.415 9900 TIP 430216 18896 6046774 2024-02-23 18:50:35.666 2024-02-23 18:50:35.666 2100 FEE 436508 9330 6046775 2024-02-23 18:50:35.666 2024-02-23 18:50:35.666 18900 TIP 436508 13217 6046781 2024-02-23 18:51:17.054 2024-02-23 18:51:17.054 2100 FEE 436241 21469 6046782 2024-02-23 18:51:17.054 2024-02-23 18:51:17.054 18900 TIP 436241 21481 6046790 2024-02-23 18:52:08.738 2024-02-23 18:52:08.738 2500 FEE 436492 21522 6046791 2024-02-23 18:52:08.738 2024-02-23 18:52:08.738 22500 TIP 436492 4167 6046807 2024-02-23 18:55:49.946 2024-02-23 18:55:49.946 2100 FEE 436093 19148 6046808 2024-02-23 18:55:49.946 2024-02-23 18:55:49.946 18900 TIP 436093 21194 6046813 2024-02-23 18:56:08.238 2024-02-23 18:56:08.238 100000 FEE 436562 18828 6046823 2024-02-23 18:58:09.812 2024-02-23 18:58:09.812 3000 FEE 436544 18862 6046824 2024-02-23 18:58:09.812 2024-02-23 18:58:09.812 27000 TIP 436544 2329 6046836 2024-02-23 18:58:50.475 2024-02-23 18:58:50.475 1000 FEE 436564 1650 6046876 2024-02-23 19:03:38.799 2024-02-23 19:03:38.799 1000 POLL 436323 18274 6046917 2024-02-23 19:05:44.103 2024-02-23 19:05:44.103 8300 FEE 436566 16309 6046918 2024-02-23 19:05:44.103 2024-02-23 19:05:44.103 74700 TIP 436566 2088 6046921 2024-02-23 19:05:44.282 2024-02-23 19:05:44.282 8300 FEE 436566 18784 6046922 2024-02-23 19:05:44.282 2024-02-23 19:05:44.282 74700 TIP 436566 18470 6046923 2024-02-23 19:05:44.437 2024-02-23 19:05:44.437 8300 FEE 436566 12072 6046924 2024-02-23 19:05:44.437 2024-02-23 19:05:44.437 74700 TIP 436566 8080 6046964 2024-02-23 19:06:34.908 2024-02-23 19:06:34.908 1000 FEE 436571 5829 6046981 2024-02-23 19:07:05.629 2024-02-23 19:07:05.629 1100 FEE 385935 17682 6046982 2024-02-23 19:07:05.629 2024-02-23 19:07:05.629 9900 TIP 385935 18892 6047045 2024-02-23 19:15:49.053 2024-02-23 19:15:49.053 10000 FEE 436384 6003 6047046 2024-02-23 19:15:49.053 2024-02-23 19:15:49.053 90000 TIP 436384 2502 6047049 2024-02-23 19:17:11.931 2024-02-23 19:17:11.931 1000 FEE 436579 675 6047057 2024-02-23 19:19:35.074 2024-02-23 19:19:35.074 1000 FEE 436581 654 6047074 2024-02-23 19:24:46.59 2024-02-23 19:24:46.59 1100 FEE 436568 617 6047075 2024-02-23 19:24:46.59 2024-02-23 19:24:46.59 9900 TIP 436568 19980 6047080 2024-02-23 19:27:49.321 2024-02-23 19:27:49.321 1000 FEE 436572 20546 6047081 2024-02-23 19:27:49.321 2024-02-23 19:27:49.321 9000 TIP 436572 20015 6047110 2024-02-23 19:36:20.017 2024-02-23 19:36:20.017 2100 FEE 436466 20258 6047111 2024-02-23 19:36:20.017 2024-02-23 19:36:20.017 18900 TIP 436466 21140 6047117 2024-02-23 19:37:20.698 2024-02-23 19:37:20.698 1000 FEE 436586 21116 6047132 2024-02-23 19:38:17.783 2024-02-23 19:38:17.783 1000 FEE 436590 21361 6047141 2024-02-23 19:39:54.089 2024-02-23 19:39:54.089 5000 FEE 436537 20602 6047142 2024-02-23 19:39:54.089 2024-02-23 19:39:54.089 45000 TIP 436537 20881 6047144 2024-02-23 19:40:26.05 2024-02-23 19:40:26.05 2100 FEE 436202 14213 6047145 2024-02-23 19:40:26.05 2024-02-23 19:40:26.05 18900 TIP 436202 5387 6047222 2024-02-23 19:55:07.704 2024-02-23 19:55:07.704 2100 FEE 436197 2065 6047223 2024-02-23 19:55:07.704 2024-02-23 19:55:07.704 18900 TIP 436197 685 6047244 2024-02-23 19:55:15.36 2024-02-23 19:55:15.36 2100 FEE 436136 17316 6047245 2024-02-23 19:55:15.36 2024-02-23 19:55:15.36 18900 TIP 436136 777 6047265 2024-02-23 19:57:15.484 2024-02-23 19:57:15.484 300 FEE 436596 3544 6047266 2024-02-23 19:57:15.484 2024-02-23 19:57:15.484 2700 TIP 436596 6688 6047281 2024-02-23 20:00:33.766 2024-02-23 20:00:33.766 1000 FEE 436586 6573 6047282 2024-02-23 20:00:33.766 2024-02-23 20:00:33.766 9000 TIP 436586 2293 6047284 2024-02-23 20:00:56.611 2024-02-23 20:00:56.611 100 FEE 436572 9820 6047285 2024-02-23 20:00:56.611 2024-02-23 20:00:56.611 900 TIP 436572 9261 6047314 2024-02-23 20:04:51.188 2024-02-23 20:04:51.188 2300 FEE 436605 21585 6047315 2024-02-23 20:04:51.188 2024-02-23 20:04:51.188 20700 TIP 436605 15549 6047326 2024-02-23 20:04:52.434 2024-02-23 20:04:52.434 2300 FEE 436605 18170 6047327 2024-02-23 20:04:52.434 2024-02-23 20:04:52.434 20700 TIP 436605 1468 6047330 2024-02-23 20:04:52.754 2024-02-23 20:04:52.754 2300 FEE 436605 1326 6047331 2024-02-23 20:04:52.754 2024-02-23 20:04:52.754 20700 TIP 436605 2444 6047358 2024-02-23 20:04:56.498 2024-02-23 20:04:56.498 2300 FEE 436605 889 6047359 2024-02-23 20:04:56.498 2024-02-23 20:04:56.498 20700 TIP 436605 20602 6047360 2024-02-23 20:04:56.547 2024-02-23 20:04:56.547 1000 FEE 436326 674 6047361 2024-02-23 20:04:56.547 2024-02-23 20:04:56.547 9000 TIP 436326 9341 6047372 2024-02-23 20:04:57.21 2024-02-23 20:04:57.21 1000 FEE 436326 15690 6047373 2024-02-23 20:04:57.21 2024-02-23 20:04:57.21 9000 TIP 436326 2328 6047395 2024-02-23 20:05:02.41 2024-02-23 20:05:02.41 1000 FEE 436326 4177 6047396 2024-02-23 20:05:02.41 2024-02-23 20:05:02.41 9000 TIP 436326 15115 6047422 2024-02-23 20:05:09.507 2024-02-23 20:05:09.507 1000 FEE 436326 19286 6047423 2024-02-23 20:05:09.507 2024-02-23 20:05:09.507 9000 TIP 436326 20577 6047434 2024-02-23 20:05:18.579 2024-02-23 20:05:18.579 90000 FEE 436556 21145 6047435 2024-02-23 20:05:18.579 2024-02-23 20:05:18.579 810000 TIP 436556 6578 6047438 2024-02-23 20:05:25.657 2024-02-23 20:05:25.657 100 FEE 436562 18344 6047439 2024-02-23 20:05:25.657 2024-02-23 20:05:25.657 900 TIP 436562 20993 6047442 2024-02-23 20:05:27.072 2024-02-23 20:05:27.072 9000 FEE 436562 19465 6047443 2024-02-23 20:05:27.072 2024-02-23 20:05:27.072 81000 TIP 436562 16149 6047461 2024-02-23 20:05:57.064 2024-02-23 20:05:57.064 9000 FEE 436587 10112 6047462 2024-02-23 20:05:57.064 2024-02-23 20:05:57.064 81000 TIP 436587 15052 6047471 2024-02-23 20:06:19.508 2024-02-23 20:06:19.508 100 FEE 435944 6533 6047472 2024-02-23 20:06:19.508 2024-02-23 20:06:19.508 900 TIP 435944 9171 6047507 2024-02-23 20:06:44.471 2024-02-23 20:06:44.471 90000 FEE 436258 20156 6047508 2024-02-23 20:06:44.471 2024-02-23 20:06:44.471 810000 TIP 436258 2330 6047539 2024-02-23 20:06:49.309 2024-02-23 20:06:49.309 1000 FEE 436326 13174 6046488 2024-02-23 18:23:00.533 2024-02-23 18:23:00.533 4000 FEE 436523 5306 6046489 2024-02-23 18:23:00.533 2024-02-23 18:23:00.533 36000 TIP 436523 17827 6046491 2024-02-23 18:23:58.723 2024-02-23 18:23:58.723 10000 FEE 435944 6700 6046492 2024-02-23 18:23:58.723 2024-02-23 18:23:58.723 90000 TIP 435944 9331 6046519 2024-02-23 18:24:06.989 2024-02-23 18:24:06.989 100 FEE 436493 721 6046520 2024-02-23 18:24:06.989 2024-02-23 18:24:06.989 900 TIP 436493 9356 6046521 2024-02-23 18:24:32.333 2024-02-23 18:24:32.333 1000 FEE 436529 12024 6046528 2024-02-23 18:26:14.801 2024-02-23 18:26:14.801 1000 FEE 436519 20108 6046529 2024-02-23 18:26:14.801 2024-02-23 18:26:14.801 9000 TIP 436519 21228 6046546 2024-02-23 18:26:32.985 2024-02-23 18:26:32.985 7700 FEE 436508 12606 6046547 2024-02-23 18:26:32.985 2024-02-23 18:26:32.985 69300 TIP 436508 12220 6046559 2024-02-23 18:26:49.845 2024-02-23 18:26:49.845 1000 FEE 436285 21164 6046560 2024-02-23 18:26:49.845 2024-02-23 18:26:49.845 9000 TIP 436285 15858 6046582 2024-02-23 18:28:03.647 2024-02-23 18:28:03.647 1000 FEE 436533 16329 6046583 2024-02-23 18:28:15.628 2024-02-23 18:28:15.628 1000 FEE 436534 5387 6046594 2024-02-23 18:29:38.953 2024-02-23 18:29:38.953 1000 FEE 436536 12272 6046595 2024-02-23 18:29:39.993 2024-02-23 18:29:39.993 4000 FEE 436377 8168 6046596 2024-02-23 18:29:39.993 2024-02-23 18:29:39.993 36000 TIP 436377 20218 6046602 2024-02-23 18:30:01.054 2024-02-23 18:30:01.054 3300 FEE 436509 15060 6046603 2024-02-23 18:30:01.054 2024-02-23 18:30:01.054 29700 TIP 436509 10342 6046614 2024-02-23 18:32:37.481 2024-02-23 18:32:37.481 3300 FEE 436493 4074 6046615 2024-02-23 18:32:37.481 2024-02-23 18:32:37.481 29700 TIP 436493 7675 6046641 2024-02-23 18:36:12.866 2024-02-23 18:36:12.866 3000 FEE 436546 12930 6046642 2024-02-23 18:36:12.866 2024-02-23 18:36:12.866 27000 TIP 436546 13931 6046683 2024-02-23 18:42:18.808 2024-02-23 18:42:18.808 100 FEE 436460 18454 6046684 2024-02-23 18:42:18.808 2024-02-23 18:42:18.808 900 TIP 436460 17106 6046695 2024-02-23 18:43:26.482 2024-02-23 18:43:26.482 2100 FEE 436459 20163 6046696 2024-02-23 18:43:26.482 2024-02-23 18:43:26.482 18900 TIP 436459 8570 6046705 2024-02-23 18:43:43.775 2024-02-23 18:43:43.775 2100 FEE 436449 15409 6046706 2024-02-23 18:43:43.775 2024-02-23 18:43:43.775 18900 TIP 436449 11395 6046725 2024-02-23 18:46:02.877 2024-02-23 18:46:02.877 1000 FEE 435906 6555 6046726 2024-02-23 18:46:02.877 2024-02-23 18:46:02.877 9000 TIP 435906 20439 6046730 2024-02-23 18:46:10.302 2024-02-23 18:46:10.302 1000 FEE 434851 5175 6046731 2024-02-23 18:46:10.302 2024-02-23 18:46:10.302 9000 TIP 434851 1618 6046732 2024-02-23 18:46:12.905 2024-02-23 18:46:12.905 2100 FEE 429739 9906 6046733 2024-02-23 18:46:12.905 2024-02-23 18:46:12.905 18900 TIP 429739 20310 6046749 2024-02-23 18:48:48.599 2024-02-23 18:48:48.599 2100 FEE 436493 3439 6046750 2024-02-23 18:48:48.599 2024-02-23 18:48:48.599 18900 TIP 436493 20156 6046770 2024-02-23 18:50:35.224 2024-02-23 18:50:35.224 2100 FEE 436508 11670 6046771 2024-02-23 18:50:35.224 2024-02-23 18:50:35.224 18900 TIP 436508 14959 6046797 2024-02-23 18:53:19.398 2024-02-23 18:53:19.398 2100 FEE 436244 1692 6046798 2024-02-23 18:53:19.398 2024-02-23 18:53:19.398 18900 TIP 436244 8664 6046805 2024-02-23 18:55:08.942 2024-02-23 18:55:08.942 1000 FEE 436559 21402 6046806 2024-02-23 18:55:45.641 2024-02-23 18:55:45.641 100000 FEE 436560 2188 6046844 2024-02-23 18:59:23.519 2024-02-23 18:59:23.519 1000 FEE 436565 19930 6046864 2024-02-23 19:03:22.797 2024-02-23 19:03:22.797 2300 FEE 436537 6798 6046865 2024-02-23 19:03:22.797 2024-02-23 19:03:22.797 20700 TIP 436537 20980 6046866 2024-02-23 19:03:22.951 2024-02-23 19:03:22.951 2300 FEE 436537 10409 6046867 2024-02-23 19:03:22.951 2024-02-23 19:03:22.951 20700 TIP 436537 11477 6046898 2024-02-23 19:04:23.337 2024-02-23 19:04:23.337 2300 FEE 436499 1737 6046899 2024-02-23 19:04:23.337 2024-02-23 19:04:23.337 20700 TIP 436499 19987 6046900 2024-02-23 19:04:34.775 2024-02-23 19:04:34.775 2100 FEE 436560 16424 6046901 2024-02-23 19:04:34.775 2024-02-23 19:04:34.775 18900 TIP 436560 20924 6046907 2024-02-23 19:05:20.164 2024-02-23 19:05:20.164 8300 FEE 436499 19398 6046908 2024-02-23 19:05:20.164 2024-02-23 19:05:20.164 74700 TIP 436499 11165 6046931 2024-02-23 19:05:44.844 2024-02-23 19:05:44.844 8300 FEE 436566 2748 6046932 2024-02-23 19:05:44.844 2024-02-23 19:05:44.844 74700 TIP 436566 18727 6046933 2024-02-23 19:05:44.983 2024-02-23 19:05:44.983 8300 FEE 436566 14122 6046934 2024-02-23 19:05:44.983 2024-02-23 19:05:44.983 74700 TIP 436566 21402 6046937 2024-02-23 19:05:45.381 2024-02-23 19:05:45.381 8300 FEE 436566 8400 6046938 2024-02-23 19:05:45.381 2024-02-23 19:05:45.381 74700 TIP 436566 6137 6046941 2024-02-23 19:05:45.565 2024-02-23 19:05:45.565 8300 FEE 436566 16704 6046942 2024-02-23 19:05:45.565 2024-02-23 19:05:45.565 74700 TIP 436566 736 6046952 2024-02-23 19:06:26.021 2024-02-23 19:06:26.021 1000 FEE 436562 9351 6046953 2024-02-23 19:06:26.021 2024-02-23 19:06:26.021 9000 TIP 436562 21469 6046977 2024-02-23 19:07:05.291 2024-02-23 19:07:05.291 1100 FEE 385935 986 6046978 2024-02-23 19:07:05.291 2024-02-23 19:07:05.291 9900 TIP 385935 15890 6046998 2024-02-23 19:08:40.099 2024-02-23 19:08:40.099 1000 FEE 436575 10112 6047013 2024-02-23 19:10:09.906 2024-02-23 19:10:09.906 2100 FEE 435711 1602 6047014 2024-02-23 19:10:09.906 2024-02-23 19:10:09.906 18900 TIP 435711 18956 6047017 2024-02-23 19:10:47.954 2024-02-23 19:10:47.954 1100 FEE 435453 1717 6047018 2024-02-23 19:10:47.954 2024-02-23 19:10:47.954 9900 TIP 435453 15243 6047030 2024-02-23 19:12:44.97 2024-02-23 19:12:44.97 1000 FEE 436577 18774 6047039 2024-02-23 19:14:06.443 2024-02-23 19:14:06.443 3000 FEE 436577 1145 6047040 2024-02-23 19:14:06.443 2024-02-23 19:14:06.443 27000 TIP 436577 19378 6047060 2024-02-23 19:20:01.278 2024-02-23 19:20:01.278 1000 FEE 436407 6382 6047061 2024-02-23 19:20:01.278 2024-02-23 19:20:01.278 9000 TIP 436407 10862 6047086 2024-02-23 19:29:26.053 2024-02-23 19:29:26.053 3000 FEE 436560 20701 6047087 2024-02-23 19:29:26.053 2024-02-23 19:29:26.053 27000 TIP 436560 5519 6047094 2024-02-23 19:29:33.289 2024-02-23 19:29:33.289 1000 FEE 436511 18518 6047095 2024-02-23 19:29:33.289 2024-02-23 19:29:33.289 9000 TIP 436511 2232 6047104 2024-02-23 19:34:12.438 2024-02-23 19:34:12.438 10000 FEE 436584 2773 6047120 2024-02-23 19:37:29.456 2024-02-23 19:37:29.456 2100 FEE 436358 9107 6047121 2024-02-23 19:37:29.456 2024-02-23 19:37:29.456 18900 TIP 436358 19151 6047133 2024-02-23 19:38:22.852 2024-02-23 19:38:22.852 1000 FEE 435873 2151 6047134 2024-02-23 19:38:22.852 2024-02-23 19:38:22.852 9000 TIP 435873 14295 6047137 2024-02-23 19:38:40.697 2024-02-23 19:38:40.697 2100 FEE 436383 16126 6047138 2024-02-23 19:38:40.697 2024-02-23 19:38:40.697 18900 TIP 436383 18476 6047151 2024-02-23 19:42:23.854 2024-02-23 19:42:23.854 210000 FEE 436593 16355 6047154 2024-02-23 19:42:24.61 2024-02-23 19:42:24.61 1100 FEE 436493 8570 6047155 2024-02-23 19:42:24.61 2024-02-23 19:42:24.61 9900 TIP 436493 20254 6047170 2024-02-23 19:46:16.234 2024-02-23 19:46:16.234 97000 FEE 436596 21131 6047178 2024-02-23 19:51:02.278 2024-02-23 19:51:02.278 1000 FEE 436597 20691 6047207 2024-02-23 19:51:37.323 2024-02-23 19:51:37.323 300 FEE 436474 21406 6047208 2024-02-23 19:51:37.323 2024-02-23 19:51:37.323 2700 TIP 436474 21365 6047240 2024-02-23 19:55:13.912 2024-02-23 19:55:13.912 2100 FEE 436440 21072 6047241 2024-02-23 19:55:13.912 2024-02-23 19:55:13.912 18900 TIP 436440 711 6047267 2024-02-23 19:58:02.913 2024-02-23 19:58:02.913 1000 FEE 436601 18539 6047279 2024-02-23 20:00:20.116 2024-02-23 20:00:20.116 9000 FEE 436566 9695 6047280 2024-02-23 20:00:20.116 2024-02-23 20:00:20.116 81000 TIP 436566 1221 6047291 2024-02-23 20:01:14.663 2024-02-23 20:01:14.663 0 FEE 436605 6327 6047294 2024-02-23 20:02:11.751 2024-02-23 20:02:11.751 5500 FEE 436599 11144 6047295 2024-02-23 20:02:11.751 2024-02-23 20:02:11.751 49500 TIP 436599 631 6047303 2024-02-23 20:03:16.98 2024-02-23 20:03:16.98 100 FEE 436584 19459 6047304 2024-02-23 20:03:16.98 2024-02-23 20:03:16.98 900 TIP 436584 17639 6047322 2024-02-23 20:04:52.095 2024-02-23 20:04:52.095 2300 FEE 436605 20964 6046645 2024-02-23 18:37:02.858 2024-02-23 18:37:02.858 1000 STREAM 141924 7869 6046676 2024-02-23 18:42:02.872 2024-02-23 18:42:02.872 1000 STREAM 141924 1723 6046711 2024-02-23 18:44:02.882 2024-02-23 18:44:02.882 1000 STREAM 141924 11329 6046712 2024-02-23 18:45:02.905 2024-02-23 18:45:02.905 1000 STREAM 141924 1718 6046727 2024-02-23 18:46:02.893 2024-02-23 18:46:02.893 1000 STREAM 141924 19576 6046739 2024-02-23 18:47:02.897 2024-02-23 18:47:02.897 1000 STREAM 141924 9363 6046755 2024-02-23 18:49:02.91 2024-02-23 18:49:02.91 1000 STREAM 141924 18119 6046767 2024-02-23 18:50:02.922 2024-02-23 18:50:02.922 1000 STREAM 141924 1465 6046796 2024-02-23 18:53:02.956 2024-02-23 18:53:02.956 1000 STREAM 141924 10698 6046804 2024-02-23 18:55:02.947 2024-02-23 18:55:02.947 1000 STREAM 141924 21343 6046816 2024-02-23 18:57:02.965 2024-02-23 18:57:02.965 1000 STREAM 141924 5829 6046847 2024-02-23 19:00:02.972 2024-02-23 19:00:02.972 1000 STREAM 141924 20424 6046857 2024-02-23 19:02:02.969 2024-02-23 19:02:02.969 1000 STREAM 141924 18230 6046861 2024-02-23 19:03:02.978 2024-02-23 19:03:02.978 1000 STREAM 141924 18641 6046902 2024-02-23 19:05:02.991 2024-02-23 19:05:02.991 1000 STREAM 141924 20156 6046968 2024-02-23 19:07:03.005 2024-02-23 19:07:03.005 1000 STREAM 141924 15728 6047021 2024-02-23 19:11:03.038 2024-02-23 19:11:03.038 1000 STREAM 141924 2773 6047037 2024-02-23 19:13:03.055 2024-02-23 19:13:03.055 1000 STREAM 141924 761 6047044 2024-02-23 19:15:03.055 2024-02-23 19:15:03.055 1000 STREAM 141924 9366 6047048 2024-02-23 19:17:03.073 2024-02-23 19:17:03.073 1000 STREAM 141924 859 6047062 2024-02-23 19:20:03.1 2024-02-23 19:20:03.1 1000 STREAM 141924 1650 6047064 2024-02-23 19:21:03.105 2024-02-23 19:21:03.105 1000 STREAM 141924 1726 6047076 2024-02-23 19:25:03.134 2024-02-23 19:25:03.134 1000 STREAM 141924 9107 6047079 2024-02-23 19:27:03.136 2024-02-23 19:27:03.136 1000 STREAM 141924 16594 6047084 2024-02-23 19:28:03.154 2024-02-23 19:28:03.154 1000 STREAM 141924 21406 6047099 2024-02-23 19:31:03.182 2024-02-23 19:31:03.182 1000 STREAM 141924 16769 6047101 2024-02-23 19:32:03.185 2024-02-23 19:32:03.185 1000 STREAM 141924 2529 6047102 2024-02-23 19:33:03.187 2024-02-23 19:33:03.187 1000 STREAM 141924 6777 6047103 2024-02-23 19:34:03.198 2024-02-23 19:34:03.198 1000 STREAM 141924 21603 6047109 2024-02-23 19:36:03.206 2024-02-23 19:36:03.206 1000 STREAM 141924 21323 6047116 2024-02-23 19:37:03.211 2024-02-23 19:37:03.211 1000 STREAM 141924 19661 6047139 2024-02-23 19:39:03.23 2024-02-23 19:39:03.23 1000 STREAM 141924 17523 6047158 2024-02-23 19:43:03.254 2024-02-23 19:43:03.254 1000 STREAM 141924 21296 6047167 2024-02-23 19:45:03.282 2024-02-23 19:45:03.282 1000 STREAM 141924 4175 6047168 2024-02-23 19:46:03.285 2024-02-23 19:46:03.285 1000 STREAM 141924 19663 6047172 2024-02-23 19:47:03.294 2024-02-23 19:47:03.294 1000 STREAM 141924 17014 6047174 2024-02-23 19:48:03.293 2024-02-23 19:48:03.293 1000 STREAM 141924 15367 6113097 2024-02-29 14:38:26.169 2024-02-29 14:38:26.169 6900 FEE 443272 21088 6113098 2024-02-29 14:38:26.169 2024-02-29 14:38:26.169 62100 TIP 443272 18873 6113117 2024-02-29 14:39:39.046 2024-02-29 14:39:39.046 1000 FEE 443582 13076 6113121 2024-02-29 14:40:21.528 2024-02-29 14:40:21.528 2100 FEE 443489 9365 6113122 2024-02-29 14:40:21.528 2024-02-29 14:40:21.528 18900 TIP 443489 5160 6113155 2024-02-29 14:41:58.049 2024-02-29 14:41:58.049 300 FEE 443545 20782 6113156 2024-02-29 14:41:58.049 2024-02-29 14:41:58.049 2700 TIP 443545 15662 6113157 2024-02-29 14:41:58.285 2024-02-29 14:41:58.285 300 FEE 443545 9150 6113158 2024-02-29 14:41:58.285 2024-02-29 14:41:58.285 2700 TIP 443545 21164 6113159 2024-02-29 14:41:58.534 2024-02-29 14:41:58.534 300 FEE 443545 5852 6113160 2024-02-29 14:41:58.534 2024-02-29 14:41:58.534 2700 TIP 443545 998 6113189 2024-02-29 14:42:02.231 2024-02-29 14:42:02.231 300 FEE 442904 19103 6113190 2024-02-29 14:42:02.231 2024-02-29 14:42:02.231 2700 TIP 442904 18005 6113195 2024-02-29 14:42:02.697 2024-02-29 14:42:02.697 300 FEE 442904 9275 6113196 2024-02-29 14:42:02.697 2024-02-29 14:42:02.697 2700 TIP 442904 16966 6113208 2024-02-29 14:42:03.844 2024-02-29 14:42:03.844 300 FEE 442904 992 6113209 2024-02-29 14:42:03.844 2024-02-29 14:42:03.844 2700 TIP 442904 19501 6113222 2024-02-29 14:42:34.335 2024-02-29 14:42:34.335 10000 FEE 443561 2776 6113223 2024-02-29 14:42:34.335 2024-02-29 14:42:34.335 90000 TIP 443561 4175 6113229 2024-02-29 14:42:56.408 2024-02-29 14:42:56.408 2100 FEE 443274 17446 6113230 2024-02-29 14:42:56.408 2024-02-29 14:42:56.408 18900 TIP 443274 2519 6113247 2024-02-29 14:43:36.793 2024-02-29 14:43:36.793 800 FEE 443339 3400 6113248 2024-02-29 14:43:36.793 2024-02-29 14:43:36.793 7200 TIP 443339 20511 6113275 2024-02-29 14:45:49.219 2024-02-29 14:45:49.219 1000 FEE 443573 20504 6113276 2024-02-29 14:45:49.219 2024-02-29 14:45:49.219 9000 TIP 443573 18449 6113319 2024-02-29 14:49:07.365 2024-02-29 14:49:07.365 1000 FEE 443598 654 6113320 2024-02-29 14:49:07.535 2024-02-29 14:49:07.535 10000 FEE 443577 20745 6113321 2024-02-29 14:49:07.535 2024-02-29 14:49:07.535 90000 TIP 443577 21509 6113351 2024-02-29 14:50:45.74 2024-02-29 14:50:45.74 1000 FEE 443399 21578 6113352 2024-02-29 14:50:45.74 2024-02-29 14:50:45.74 9000 TIP 443399 13174 6113355 2024-02-29 14:50:49.115 2024-02-29 14:50:49.115 1000 FEE 443603 6041 6113389 2024-02-29 14:52:57.766 2024-02-29 14:52:57.766 5000 FEE 443396 8985 6113390 2024-02-29 14:52:57.766 2024-02-29 14:52:57.766 45000 TIP 443396 2309 6113401 2024-02-29 14:53:55.163 2024-02-29 14:53:55.163 0 FEE 443609 18372 6113402 2024-02-29 14:53:59.193 2024-02-29 14:53:59.193 1000 FEE 443612 14688 6113403 2024-02-29 14:54:00.205 2024-02-29 14:54:00.205 5700 FEE 443336 7125 6113404 2024-02-29 14:54:00.205 2024-02-29 14:54:00.205 51300 TIP 443336 20108 6113468 2024-02-29 14:57:08.551 2024-02-29 14:57:08.551 7700 FEE 443617 15556 6113469 2024-02-29 14:57:08.551 2024-02-29 14:57:08.551 69300 TIP 443617 7992 6113499 2024-02-29 14:58:01.365 2024-02-29 14:58:01.365 1700 FEE 443616 9833 6113500 2024-02-29 14:58:01.365 2024-02-29 14:58:01.365 15300 TIP 443616 1426 6113501 2024-02-29 14:58:01.549 2024-02-29 14:58:01.549 1700 FEE 443616 1320 6113502 2024-02-29 14:58:01.549 2024-02-29 14:58:01.549 15300 TIP 443616 4304 6113511 2024-02-29 14:58:15.195 2024-02-29 14:58:15.195 1700 FEE 443610 21555 6113512 2024-02-29 14:58:15.195 2024-02-29 14:58:15.195 15300 TIP 443610 16571 6113516 2024-02-29 14:58:46.494 2024-02-29 14:58:46.494 100 FEE 443617 986 6113517 2024-02-29 14:58:46.494 2024-02-29 14:58:46.494 900 TIP 443617 20183 6113533 2024-02-29 14:59:06.648 2024-02-29 14:59:06.648 10000 FEE 443629 16998 6113550 2024-02-29 14:59:39.16 2024-02-29 14:59:39.16 1000 FEE 443633 3400 6113591 2024-02-29 15:00:28.16 2024-02-29 15:00:28.16 1000 FEE 443639 5829 6113603 2024-02-29 15:00:52.809 2024-02-29 15:00:52.809 10000 FEE 443641 21466 6113604 2024-02-29 15:00:52.809 2024-02-29 15:00:52.809 90000 TIP 443641 623 6113609 2024-02-29 15:01:16.717 2024-02-29 15:01:16.717 2100 FEE 443641 1478 6113610 2024-02-29 15:01:16.717 2024-02-29 15:01:16.717 18900 TIP 443641 11443 6113617 2024-02-29 15:01:22.991 2024-02-29 15:01:22.991 900 FEE 443613 19263 6113618 2024-02-29 15:01:22.991 2024-02-29 15:01:22.991 8100 TIP 443613 913 6113669 2024-02-29 15:05:30.575 2024-02-29 15:05:30.575 2700 FEE 443624 18393 6113670 2024-02-29 15:05:30.575 2024-02-29 15:05:30.575 24300 TIP 443624 21003 6113675 2024-02-29 15:05:48.76 2024-02-29 15:05:48.76 5700 FEE 443652 18892 6113676 2024-02-29 15:05:48.76 2024-02-29 15:05:48.76 51300 TIP 443652 21042 6113683 2024-02-29 15:06:20.781 2024-02-29 15:06:20.781 1000 FEE 443653 7772 6113686 2024-02-29 15:06:27.071 2024-02-29 15:06:27.071 2700 FEE 443545 2206 6113687 2024-02-29 15:06:27.071 2024-02-29 15:06:27.071 24300 TIP 443545 15337 6113700 2024-02-29 15:06:45.718 2024-02-29 15:06:45.718 0 FEE 443649 756 6113701 2024-02-29 15:06:48.475 2024-02-29 15:06:48.475 1000 FEE 443654 16176 6113724 2024-02-29 15:08:26.071 2024-02-29 15:08:26.071 7700 FEE 443427 9349 6113725 2024-02-29 15:08:26.071 2024-02-29 15:08:26.071 69300 TIP 443427 1030 6113758 2024-02-29 15:10:12.629 2024-02-29 15:10:12.629 1000 FEE 443617 1354 6113759 2024-02-29 15:10:12.629 2024-02-29 15:10:12.629 9000 TIP 443617 15690 6046661 2024-02-23 18:39:02.854 2024-02-23 18:39:02.854 1000 STREAM 141924 8472 6046662 2024-02-23 18:40:02.878 2024-02-23 18:40:02.878 1000 STREAM 141924 18494 6046665 2024-02-23 18:41:02.867 2024-02-23 18:41:02.867 1000 STREAM 141924 20291 6046691 2024-02-23 18:43:02.894 2024-02-23 18:43:02.894 1000 STREAM 141924 16942 6046747 2024-02-23 18:48:02.906 2024-02-23 18:48:02.906 1000 STREAM 141924 20713 6046780 2024-02-23 18:51:02.92 2024-02-23 18:51:02.92 1000 STREAM 141924 10719 6046784 2024-02-23 18:52:02.928 2024-02-23 18:52:02.928 1000 STREAM 141924 8506 6046809 2024-02-23 18:56:02.965 2024-02-23 18:56:02.965 1000 STREAM 141924 21344 6046881 2024-02-23 19:04:02.987 2024-02-23 19:04:02.987 1000 STREAM 141924 4115 6046951 2024-02-23 19:06:03.008 2024-02-23 19:06:03.008 1000 STREAM 141924 2952 6046993 2024-02-23 19:08:03.01 2024-02-23 19:08:03.01 1000 STREAM 141924 5775 6047001 2024-02-23 19:09:03.013 2024-02-23 19:09:03.013 1000 STREAM 141924 18291 6047004 2024-02-23 19:10:03.04 2024-02-23 19:10:03.04 1000 STREAM 141924 9356 6047029 2024-02-23 19:12:03.049 2024-02-23 19:12:03.049 1000 STREAM 141924 1092 6047038 2024-02-23 19:14:03.065 2024-02-23 19:14:03.065 1000 STREAM 141924 20258 6047047 2024-02-23 19:16:03.061 2024-02-23 19:16:03.061 1000 STREAM 141924 16867 6047050 2024-02-23 19:18:03.082 2024-02-23 19:18:03.082 1000 STREAM 141924 18932 6047055 2024-02-23 19:19:03.103 2024-02-23 19:19:03.103 1000 STREAM 141924 14731 6047065 2024-02-23 19:22:03.099 2024-02-23 19:22:03.099 1000 STREAM 141924 20381 6047066 2024-02-23 19:23:03.113 2024-02-23 19:23:03.113 1000 STREAM 141924 19553 6047070 2024-02-23 19:24:03.119 2024-02-23 19:24:03.119 1000 STREAM 141924 18897 6047077 2024-02-23 19:26:03.139 2024-02-23 19:26:03.139 1000 STREAM 141924 15521 6047085 2024-02-23 19:29:03.162 2024-02-23 19:29:03.162 1000 STREAM 141924 695 6047096 2024-02-23 19:30:03.184 2024-02-23 19:30:03.184 1000 STREAM 141924 21212 6047105 2024-02-23 19:35:03.203 2024-02-23 19:35:03.203 1000 STREAM 141924 19878 6047128 2024-02-23 19:38:03.216 2024-02-23 19:38:03.216 1000 STREAM 141924 20596 6047143 2024-02-23 19:40:03.24 2024-02-23 19:40:03.24 1000 STREAM 141924 17526 6047148 2024-02-23 19:41:03.238 2024-02-23 19:41:03.238 1000 STREAM 141924 8074 6047150 2024-02-23 19:42:03.244 2024-02-23 19:42:03.244 1000 STREAM 141924 680 6047164 2024-02-23 19:44:03.262 2024-02-23 19:44:03.262 1000 STREAM 141924 20778 6113111 2024-02-29 14:38:52.273 2024-02-29 14:38:52.273 300 FEE 443554 19286 6113112 2024-02-29 14:38:52.273 2024-02-29 14:38:52.273 2700 TIP 443554 16097 6113119 2024-02-29 14:40:11.865 2024-02-29 14:40:11.865 2100 FEE 443545 1801 6113120 2024-02-29 14:40:11.865 2024-02-29 14:40:11.865 18900 TIP 443545 18235 6113133 2024-02-29 14:41:45.56 2024-02-29 14:41:45.56 7700 FEE 443274 18524 6113134 2024-02-29 14:41:45.56 2024-02-29 14:41:45.56 69300 TIP 443274 21503 6113147 2024-02-29 14:41:47.467 2024-02-29 14:41:47.467 7700 FEE 443272 640 6113148 2024-02-29 14:41:47.467 2024-02-29 14:41:47.467 69300 TIP 443272 5557 6113161 2024-02-29 14:41:58.736 2024-02-29 14:41:58.736 300 FEE 443545 20412 6113162 2024-02-29 14:41:58.736 2024-02-29 14:41:58.736 2700 TIP 443545 16355 6113167 2024-02-29 14:41:59.44 2024-02-29 14:41:59.44 300 FEE 443545 9 6113168 2024-02-29 14:41:59.44 2024-02-29 14:41:59.44 2700 TIP 443545 2367 6113169 2024-02-29 14:41:59.686 2024-02-29 14:41:59.686 300 FEE 443545 19785 6113170 2024-02-29 14:41:59.686 2024-02-29 14:41:59.686 2700 TIP 443545 12744 6113171 2024-02-29 14:41:59.939 2024-02-29 14:41:59.939 300 FEE 443545 716 6113172 2024-02-29 14:41:59.939 2024-02-29 14:41:59.939 2700 TIP 443545 9109 6113173 2024-02-29 14:42:00.184 2024-02-29 14:42:00.184 300 FEE 443545 6393 6113174 2024-02-29 14:42:00.184 2024-02-29 14:42:00.184 2700 TIP 443545 21492 6113175 2024-02-29 14:42:00.371 2024-02-29 14:42:00.371 300 FEE 443545 19878 6113176 2024-02-29 14:42:00.371 2024-02-29 14:42:00.371 2700 TIP 443545 10536 6113177 2024-02-29 14:42:00.609 2024-02-29 14:42:00.609 300 FEE 443545 21090 6113178 2024-02-29 14:42:00.609 2024-02-29 14:42:00.609 2700 TIP 443545 3478 6113179 2024-02-29 14:42:00.859 2024-02-29 14:42:00.859 300 FEE 443545 21242 6113180 2024-02-29 14:42:00.859 2024-02-29 14:42:00.859 2700 TIP 443545 17446 6113193 2024-02-29 14:42:02.492 2024-02-29 14:42:02.492 300 FEE 442904 20969 6113194 2024-02-29 14:42:02.492 2024-02-29 14:42:02.492 2700 TIP 442904 1124 6113218 2024-02-29 14:42:07.585 2024-02-29 14:42:07.585 7700 FEE 443467 18904 6113219 2024-02-29 14:42:07.585 2024-02-29 14:42:07.585 69300 TIP 443467 19189 6113220 2024-02-29 14:42:13.872 2024-02-29 14:42:13.872 1000 FEE 443584 18476 6113231 2024-02-29 14:42:58.217 2024-02-29 14:42:58.217 2100 FEE 443465 654 6113232 2024-02-29 14:42:58.217 2024-02-29 14:42:58.217 18900 TIP 443465 10944 6113236 2024-02-29 14:43:15.138 2024-02-29 14:43:15.138 2700 FEE 438678 15100 6113237 2024-02-29 14:43:15.138 2024-02-29 14:43:15.138 24300 TIP 438678 981 6113240 2024-02-29 14:43:15.596 2024-02-29 14:43:15.596 2700 FEE 438678 2326 6113241 2024-02-29 14:43:15.596 2024-02-29 14:43:15.596 24300 TIP 438678 713 6113257 2024-02-29 14:44:22.494 2024-02-29 14:44:22.494 5700 FEE 443588 19911 6113258 2024-02-29 14:44:22.494 2024-02-29 14:44:22.494 51300 TIP 443588 5455 6113259 2024-02-29 14:44:30.393 2024-02-29 14:44:30.393 5700 FEE 443583 1090 6113260 2024-02-29 14:44:30.393 2024-02-29 14:44:30.393 51300 TIP 443583 994 6113271 2024-02-29 14:45:10.528 2024-02-29 14:45:10.528 7700 FEE 443515 19138 6113272 2024-02-29 14:45:10.528 2024-02-29 14:45:10.528 69300 TIP 443515 2640 6113289 2024-02-29 14:46:12.215 2024-02-29 14:46:12.215 1000 FEE 443586 775 6113290 2024-02-29 14:46:12.215 2024-02-29 14:46:12.215 9000 TIP 443586 20636 6113325 2024-02-29 14:49:19.134 2024-02-29 14:49:19.134 300 FEE 443532 10668 6113326 2024-02-29 14:49:19.134 2024-02-29 14:49:19.134 2700 TIP 443532 631 6113328 2024-02-29 14:49:30.251 2024-02-29 14:49:30.251 2500 FEE 443116 21061 6113329 2024-02-29 14:49:30.251 2024-02-29 14:49:30.251 22500 TIP 443116 20254 6113348 2024-02-29 14:50:38.175 2024-02-29 14:50:38.175 100000 FEE 443602 17519 6113384 2024-02-29 14:52:07.353 2024-02-29 14:52:07.353 1000 FEE 443608 20889 6113411 2024-02-29 14:54:06.19 2024-02-29 14:54:06.19 0 FEE 443609 16356 6113449 2024-02-29 14:56:45.766 2024-02-29 14:56:45.766 2100 FEE 443545 14909 6113450 2024-02-29 14:56:45.766 2024-02-29 14:56:45.766 18900 TIP 443545 19138 6113453 2024-02-29 14:56:52.889 2024-02-29 14:56:52.889 2100 FEE 443528 8505 6113454 2024-02-29 14:56:52.889 2024-02-29 14:56:52.889 18900 TIP 443528 18243 6113462 2024-02-29 14:57:08.021 2024-02-29 14:57:08.021 7700 FEE 443617 900 6113463 2024-02-29 14:57:08.021 2024-02-29 14:57:08.021 69300 TIP 443617 20180 6113470 2024-02-29 14:57:08.736 2024-02-29 14:57:08.736 7700 FEE 443617 13781 6113471 2024-02-29 14:57:08.736 2024-02-29 14:57:08.736 69300 TIP 443617 763 6113482 2024-02-29 14:57:10.389 2024-02-29 14:57:10.389 7700 FEE 443617 19660 6113483 2024-02-29 14:57:10.389 2024-02-29 14:57:10.389 69300 TIP 443617 5961 6113488 2024-02-29 14:57:25.793 2024-02-29 14:57:25.793 10000 FEE 443617 12976 6113489 2024-02-29 14:57:25.793 2024-02-29 14:57:25.793 90000 TIP 443617 20911 6113492 2024-02-29 14:57:55.495 2024-02-29 14:57:55.495 3100 FEE 443603 20168 6113493 2024-02-29 14:57:55.495 2024-02-29 14:57:55.495 27900 TIP 443603 20006 6113496 2024-02-29 14:57:56.086 2024-02-29 14:57:56.086 1700 FEE 443616 18625 6113497 2024-02-29 14:57:56.086 2024-02-29 14:57:56.086 15300 TIP 443616 20045 6113504 2024-02-29 14:58:07.387 2024-02-29 14:58:07.387 500 FEE 443601 2963 6113505 2024-02-29 14:58:07.387 2024-02-29 14:58:07.387 4500 TIP 443601 1039 6113509 2024-02-29 14:58:15.032 2024-02-29 14:58:15.032 1700 FEE 443610 1047 6113510 2024-02-29 14:58:15.032 2024-02-29 14:58:15.032 15300 TIP 443610 2502 6046677 2024-02-23 18:42:17.636 2024-02-23 18:42:17.636 1000 FEE 436514 18769 6046678 2024-02-23 18:42:17.636 2024-02-23 18:42:17.636 9000 TIP 436514 15941 6046699 2024-02-23 18:43:34.735 2024-02-23 18:43:34.735 2100 FEE 436493 8162 6046700 2024-02-23 18:43:34.735 2024-02-23 18:43:34.735 18900 TIP 436493 19837 6046703 2024-02-23 18:43:39.801 2024-02-23 18:43:39.801 2100 FEE 436459 18235 6046704 2024-02-23 18:43:39.801 2024-02-23 18:43:39.801 18900 TIP 436459 21033 6046748 2024-02-23 18:48:43.172 2024-02-23 18:48:43.172 21000 FEE 436556 20504 6046756 2024-02-23 18:49:16.975 2024-02-23 18:49:16.975 1000 FEE 436557 10698 6046761 2024-02-23 18:49:43.983 2024-02-23 18:49:43.983 2000 FEE 436555 18314 6046762 2024-02-23 18:49:43.983 2024-02-23 18:49:43.983 18000 TIP 436555 946 6046763 2024-02-23 18:49:44.482 2024-02-23 18:49:44.482 1000 FEE 436555 21612 6046764 2024-02-23 18:49:44.482 2024-02-23 18:49:44.482 9000 TIP 436555 20026 6046772 2024-02-23 18:50:35.488 2024-02-23 18:50:35.488 2100 FEE 436508 2293 6046773 2024-02-23 18:50:35.488 2024-02-23 18:50:35.488 18900 TIP 436508 12261 6046783 2024-02-23 18:51:21.573 2024-02-23 18:51:21.573 1000 FEE 436558 21463 6046792 2024-02-23 18:52:41.242 2024-02-23 18:52:41.242 2100 FEE 436281 15052 6046793 2024-02-23 18:52:41.242 2024-02-23 18:52:41.242 18900 TIP 436281 979 6046811 2024-02-23 18:56:06.441 2024-02-23 18:56:06.441 2000 FEE 436523 21212 6046812 2024-02-23 18:56:06.441 2024-02-23 18:56:06.441 18000 TIP 436523 739 6046814 2024-02-23 18:56:22.707 2024-02-23 18:56:22.707 1100 FEE 436449 20614 6046815 2024-02-23 18:56:22.707 2024-02-23 18:56:22.707 9900 TIP 436449 20817 6046842 2024-02-23 18:59:10.552 2024-02-23 18:59:10.552 21100 FEE 436560 828 6046843 2024-02-23 18:59:10.552 2024-02-23 18:59:10.552 189900 TIP 436560 9843 6046848 2024-02-23 19:00:10.907 2024-02-23 19:00:10.907 10000 FEE 436566 20157 6046849 2024-02-23 19:00:57.966 2024-02-23 19:00:57.966 1000 FEE 436567 7097 6046858 2024-02-23 19:02:37.843 2024-02-23 19:02:37.843 1100 FEE 435488 20560 6046859 2024-02-23 19:02:37.843 2024-02-23 19:02:37.843 9900 TIP 435488 13544 6046862 2024-02-23 19:03:12.507 2024-02-23 19:03:12.507 1100 FEE 435610 9366 6046863 2024-02-23 19:03:12.507 2024-02-23 19:03:12.507 9900 TIP 435610 1472 6046868 2024-02-23 19:03:23.034 2024-02-23 19:03:23.034 2300 FEE 436537 1825 6046869 2024-02-23 19:03:23.034 2024-02-23 19:03:23.034 20700 TIP 436537 18625 6046870 2024-02-23 19:03:23.287 2024-02-23 19:03:23.287 4600 FEE 436537 12911 6046871 2024-02-23 19:03:23.287 2024-02-23 19:03:23.287 41400 TIP 436537 4798 6046894 2024-02-23 19:04:23.055 2024-02-23 19:04:23.055 2300 FEE 436499 16329 6046895 2024-02-23 19:04:23.055 2024-02-23 19:04:23.055 20700 TIP 436499 11491 6046896 2024-02-23 19:04:23.198 2024-02-23 19:04:23.198 2300 FEE 436499 19535 6046897 2024-02-23 19:04:23.198 2024-02-23 19:04:23.198 20700 TIP 436499 5427 6046911 2024-02-23 19:05:21.168 2024-02-23 19:05:21.168 8300 FEE 436499 19030 6046912 2024-02-23 19:05:21.168 2024-02-23 19:05:21.168 74700 TIP 436499 20912 6046925 2024-02-23 19:05:44.488 2024-02-23 19:05:44.488 8300 FEE 436566 807 6046926 2024-02-23 19:05:44.488 2024-02-23 19:05:44.488 74700 TIP 436566 16410 6046943 2024-02-23 19:05:45.643 2024-02-23 19:05:45.643 8300 FEE 436566 4391 6046944 2024-02-23 19:05:45.643 2024-02-23 19:05:45.643 74700 TIP 436566 20756 6046949 2024-02-23 19:05:46.527 2024-02-23 19:05:46.527 8300 FEE 436566 21079 6046950 2024-02-23 19:05:46.527 2024-02-23 19:05:46.527 74700 TIP 436566 685 6046973 2024-02-23 19:07:04.891 2024-02-23 19:07:04.891 1100 FEE 385935 2098 6046974 2024-02-23 19:07:04.891 2024-02-23 19:07:04.891 9900 TIP 385935 2330 6046975 2024-02-23 19:07:05.02 2024-02-23 19:07:05.02 1100 FEE 385935 21064 6046976 2024-02-23 19:07:05.02 2024-02-23 19:07:05.02 9900 TIP 385935 750 6047024 2024-02-23 19:11:26.27 2024-02-23 19:11:26.27 4200 FEE 436560 2614 6047025 2024-02-23 19:11:26.27 2024-02-23 19:11:26.27 37800 TIP 436560 15367 6047026 2024-02-23 19:11:43.218 2024-02-23 19:11:43.218 1000 FEE 436576 1605 6047027 2024-02-23 19:11:51.515 2024-02-23 19:11:51.515 1100 FEE 436029 17226 6047028 2024-02-23 19:11:51.515 2024-02-23 19:11:51.515 9900 TIP 436029 18745 6047072 2024-02-23 19:24:40.091 2024-02-23 19:24:40.091 1100 FEE 436572 1785 6047073 2024-02-23 19:24:40.091 2024-02-23 19:24:40.091 9900 TIP 436572 20090 6047106 2024-02-23 19:35:12.815 2024-02-23 19:35:12.815 0 FEE 436585 18533 6047124 2024-02-23 19:37:42.986 2024-02-23 19:37:42.986 2100 FEE 436585 14247 6047125 2024-02-23 19:37:42.986 2024-02-23 19:37:42.986 18900 TIP 436585 1433 6047130 2024-02-23 19:38:11.644 2024-02-23 19:38:11.644 1000 FEE 436588 12774 6047165 2024-02-23 19:44:28.946 2024-02-23 19:44:28.946 10000 FEE 433208 2577 6047166 2024-02-23 19:44:28.946 2024-02-23 19:44:28.946 90000 TIP 433208 9529 6047181 2024-02-23 19:51:29.374 2024-02-23 19:51:29.374 2300 FEE 436593 19154 6047182 2024-02-23 19:51:29.374 2024-02-23 19:51:29.374 20700 TIP 436593 19303 6047187 2024-02-23 19:51:29.883 2024-02-23 19:51:29.883 2300 FEE 436593 20706 6047188 2024-02-23 19:51:29.883 2024-02-23 19:51:29.883 20700 TIP 436593 16353 6047189 2024-02-23 19:51:29.994 2024-02-23 19:51:29.994 2300 FEE 436593 11820 6047190 2024-02-23 19:51:29.994 2024-02-23 19:51:29.994 20700 TIP 436593 2204 6047214 2024-02-23 19:55:05.378 2024-02-23 19:55:05.378 2100 FEE 436493 17217 6047215 2024-02-23 19:55:05.378 2024-02-23 19:55:05.378 18900 TIP 436493 15588 6047232 2024-02-23 19:55:11.488 2024-02-23 19:55:11.488 2100 FEE 436508 19836 6047233 2024-02-23 19:55:11.488 2024-02-23 19:55:11.488 18900 TIP 436508 13854 6047248 2024-02-23 19:55:15.937 2024-02-23 19:55:15.937 100 FEE 436357 18114 6047249 2024-02-23 19:55:15.937 2024-02-23 19:55:15.937 900 TIP 436357 20511 6047250 2024-02-23 19:55:16.795 2024-02-23 19:55:16.795 2100 FEE 436174 11328 6047251 2024-02-23 19:55:16.795 2024-02-23 19:55:16.795 18900 TIP 436174 20963 6047305 2024-02-23 20:03:17.877 2024-02-23 20:03:17.877 900 FEE 436584 19848 6047306 2024-02-23 20:03:17.877 2024-02-23 20:03:17.877 8100 TIP 436584 9337 6047318 2024-02-23 20:04:51.53 2024-02-23 20:04:51.53 2300 FEE 436605 826 6047319 2024-02-23 20:04:51.53 2024-02-23 20:04:51.53 20700 TIP 436605 664 6047332 2024-02-23 20:04:53.323 2024-02-23 20:04:53.323 2300 FEE 436605 11220 6047333 2024-02-23 20:04:53.323 2024-02-23 20:04:53.323 20700 TIP 436605 12774 6047338 2024-02-23 20:04:53.833 2024-02-23 20:04:53.833 2300 FEE 436605 1515 6047339 2024-02-23 20:04:53.833 2024-02-23 20:04:53.833 20700 TIP 436605 19502 6047399 2024-02-23 20:05:02.978 2024-02-23 20:05:02.978 1000 FEE 436326 5175 6047400 2024-02-23 20:05:02.978 2024-02-23 20:05:02.978 9000 TIP 436326 19189 6047404 2024-02-23 20:05:03.557 2024-02-23 20:05:03.557 1000 FEE 436326 5444 6047405 2024-02-23 20:05:03.557 2024-02-23 20:05:03.557 9000 TIP 436326 2444 6047416 2024-02-23 20:05:09.088 2024-02-23 20:05:09.088 1000 FEE 436326 746 6047417 2024-02-23 20:05:09.088 2024-02-23 20:05:09.088 9000 TIP 436326 11395 6047418 2024-02-23 20:05:09.28 2024-02-23 20:05:09.28 1000 FEE 436326 2829 6047419 2024-02-23 20:05:09.28 2024-02-23 20:05:09.28 9000 TIP 436326 3213 6047424 2024-02-23 20:05:09.745 2024-02-23 20:05:09.745 1000 FEE 436326 17041 6047425 2024-02-23 20:05:09.745 2024-02-23 20:05:09.745 9000 TIP 436326 8385 6047436 2024-02-23 20:05:21.415 2024-02-23 20:05:21.415 90000 FEE 436566 768 6047437 2024-02-23 20:05:21.415 2024-02-23 20:05:21.415 810000 TIP 436566 14202 6047489 2024-02-23 20:06:39.841 2024-02-23 20:06:39.841 1000 FEE 436326 19815 6047490 2024-02-23 20:06:39.841 2024-02-23 20:06:39.841 9000 TIP 436326 21577 6047493 2024-02-23 20:06:40.157 2024-02-23 20:06:40.157 1000 FEE 436326 20840 6047494 2024-02-23 20:06:40.157 2024-02-23 20:06:40.157 9000 TIP 436326 18640 6046799 2024-02-23 18:54:03.026 2024-02-23 18:54:03.026 1000 STREAM 141924 16229 6046852 2024-02-23 19:01:03.084 2024-02-23 19:01:03.084 1000 STREAM 141924 19690 6047180 2024-02-23 19:51:03.434 2024-02-23 19:51:03.434 1000 STREAM 141924 8569 6047209 2024-02-23 19:52:03.417 2024-02-23 19:52:03.417 1000 STREAM 141924 9159 6047211 2024-02-23 19:53:03.416 2024-02-23 19:53:03.416 1000 STREAM 141924 14169 6047258 2024-02-23 19:56:03.431 2024-02-23 19:56:03.431 1000 STREAM 141924 16532 6047269 2024-02-23 19:59:03.444 2024-02-23 19:59:03.444 1000 STREAM 141924 8508 6047313 2024-02-23 20:04:03.461 2024-02-23 20:04:03.461 1000 STREAM 141924 2437 6047403 2024-02-23 20:05:03.471 2024-02-23 20:05:03.471 1000 STREAM 141924 13547 6047463 2024-02-23 20:06:03.471 2024-02-23 20:06:03.471 1000 STREAM 141924 4570 6047697 2024-02-23 20:10:03.488 2024-02-23 20:10:03.488 1000 STREAM 141924 20972 6047699 2024-02-23 20:11:03.49 2024-02-23 20:11:03.49 1000 STREAM 141924 766 6047702 2024-02-23 20:12:03.501 2024-02-23 20:12:03.501 1000 STREAM 141924 15526 6047704 2024-02-23 20:14:03.536 2024-02-23 20:14:03.536 1000 STREAM 141924 17392 6047707 2024-02-23 20:15:03.546 2024-02-23 20:15:03.546 1000 STREAM 141924 20655 6047712 2024-02-23 20:17:03.526 2024-02-23 20:17:03.526 1000 STREAM 141924 21116 6047762 2024-02-23 20:18:03.523 2024-02-23 20:18:03.523 1000 STREAM 141924 20022 6047790 2024-02-23 20:20:03.533 2024-02-23 20:20:03.533 1000 STREAM 141924 676 6047799 2024-02-23 20:22:03.538 2024-02-23 20:22:03.538 1000 STREAM 141924 4819 6047806 2024-02-23 20:23:03.564 2024-02-23 20:23:03.564 1000 STREAM 141924 10536 6047811 2024-02-23 20:25:03.546 2024-02-23 20:25:03.546 1000 STREAM 141924 18751 6047819 2024-02-23 20:26:03.553 2024-02-23 20:26:03.553 1000 STREAM 141924 18124 6047825 2024-02-23 20:28:03.554 2024-02-23 20:28:03.554 1000 STREAM 141924 15521 6047830 2024-02-23 20:29:03.575 2024-02-23 20:29:03.575 1000 STREAM 141924 20110 6047843 2024-02-23 20:30:03.572 2024-02-23 20:30:03.572 1000 STREAM 141924 19924 6047884 2024-02-23 20:31:03.565 2024-02-23 20:31:03.565 1000 STREAM 141924 706 6047896 2024-02-23 20:32:03.609 2024-02-23 20:32:03.609 1000 STREAM 141924 725 6047901 2024-02-23 20:33:03.604 2024-02-23 20:33:03.604 1000 STREAM 141924 21480 6047913 2024-02-23 20:35:03.593 2024-02-23 20:35:03.593 1000 STREAM 141924 16706 6047972 2024-02-23 20:38:03.586 2024-02-23 20:38:03.586 1000 STREAM 141924 21406 6047989 2024-02-23 20:40:03.594 2024-02-23 20:40:03.594 1000 STREAM 141924 11423 6048022 2024-02-23 20:41:03.613 2024-02-23 20:41:03.613 1000 STREAM 141924 616 6048047 2024-02-23 20:44:03.623 2024-02-23 20:44:03.623 1000 STREAM 141924 18625 6048085 2024-02-23 20:48:03.65 2024-02-23 20:48:03.65 1000 STREAM 141924 18357 6048188 2024-02-23 21:01:03.717 2024-02-23 21:01:03.717 1000 STREAM 141924 15732 6113233 2024-02-29 14:43:02.125 2024-02-29 14:43:02.125 1000 STREAM 141924 19471 6113367 2024-02-29 14:51:02.178 2024-02-29 14:51:02.178 1000 STREAM 141924 18830 6113406 2024-02-29 14:54:02.282 2024-02-29 14:54:02.282 1000 STREAM 141924 4802 6113434 2024-02-29 14:56:02.307 2024-02-29 14:56:02.307 1000 STREAM 141924 21413 6113574 2024-02-29 15:00:02.374 2024-02-29 15:00:02.374 1000 STREAM 141924 10549 6113677 2024-02-29 15:06:02.404 2024-02-29 15:06:02.404 1000 STREAM 141924 704 6113769 2024-02-29 15:11:02.451 2024-02-29 15:11:02.451 1000 STREAM 141924 15271 6046886 2024-02-23 19:04:22.561 2024-02-23 19:04:22.561 2300 FEE 436499 6384 6046887 2024-02-23 19:04:22.561 2024-02-23 19:04:22.561 20700 TIP 436499 17157 6046903 2024-02-23 19:05:04.076 2024-02-23 19:05:04.076 1000 FEE 436569 19462 6046927 2024-02-23 19:05:44.621 2024-02-23 19:05:44.621 8300 FEE 436566 14045 6046928 2024-02-23 19:05:44.621 2024-02-23 19:05:44.621 74700 TIP 436566 18357 6046954 2024-02-23 19:06:26.319 2024-02-23 19:06:26.319 1000 FEE 436562 21591 6046955 2024-02-23 19:06:26.319 2024-02-23 19:06:26.319 9000 TIP 436562 17602 6046965 2024-02-23 19:06:40.082 2024-02-23 19:06:40.082 1000 FEE 436572 14376 6046966 2024-02-23 19:06:47.851 2024-02-23 19:06:47.851 1000 FEE 436344 1823 6046967 2024-02-23 19:06:47.851 2024-02-23 19:06:47.851 9000 TIP 436344 14260 6046971 2024-02-23 19:07:04.647 2024-02-23 19:07:04.647 1100 FEE 385935 20788 6046972 2024-02-23 19:07:04.647 2024-02-23 19:07:04.647 9900 TIP 385935 19826 6046989 2024-02-23 19:07:06.203 2024-02-23 19:07:06.203 1100 FEE 385935 21079 6046990 2024-02-23 19:07:06.203 2024-02-23 19:07:06.203 9900 TIP 385935 20220 6046999 2024-02-23 19:08:46.564 2024-02-23 19:08:46.564 2100 FEE 436508 21323 6047000 2024-02-23 19:08:46.564 2024-02-23 19:08:46.564 18900 TIP 436508 16124 6047041 2024-02-23 19:14:43.819 2024-02-23 19:14:43.819 1000 FEE 436578 1291 6047088 2024-02-23 19:29:32.475 2024-02-23 19:29:32.475 1000 FEE 436511 20084 6047089 2024-02-23 19:29:32.475 2024-02-23 19:29:32.475 9000 TIP 436511 19639 6047107 2024-02-23 19:35:18.454 2024-02-23 19:35:18.454 0 FEE 436585 10693 6047112 2024-02-23 19:36:25.973 2024-02-23 19:36:25.973 2100 FEE 436379 13174 6047113 2024-02-23 19:36:25.973 2024-02-23 19:36:25.973 18900 TIP 436379 13575 6047122 2024-02-23 19:37:33.216 2024-02-23 19:37:33.216 2100 FEE 436129 2098 6047123 2024-02-23 19:37:33.216 2024-02-23 19:37:33.216 18900 TIP 436129 19906 6047135 2024-02-23 19:38:38.576 2024-02-23 19:38:38.576 2100 FEE 436566 4064 6047136 2024-02-23 19:38:38.576 2024-02-23 19:38:38.576 18900 TIP 436566 16667 6047242 2024-02-23 19:55:15.051 2024-02-23 19:55:15.051 2100 FEE 436514 21389 6047243 2024-02-23 19:55:15.051 2024-02-23 19:55:15.051 18900 TIP 436514 2963 6047252 2024-02-23 19:55:17.227 2024-02-23 19:55:17.227 2100 FEE 436487 19375 6047253 2024-02-23 19:55:17.227 2024-02-23 19:55:17.227 18900 TIP 436487 634 6047256 2024-02-23 19:55:37.244 2024-02-23 19:55:37.244 300 FEE 436589 9036 6047257 2024-02-23 19:55:37.244 2024-02-23 19:55:37.244 2700 TIP 436589 891 6047277 2024-02-23 20:00:18.816 2024-02-23 20:00:18.816 900 FEE 436566 5085 6047278 2024-02-23 20:00:18.816 2024-02-23 20:00:18.816 8100 TIP 436566 19488 6047298 2024-02-23 20:02:47.654 2024-02-23 20:02:47.654 900 FEE 436523 19507 6047299 2024-02-23 20:02:47.654 2024-02-23 20:02:47.654 8100 TIP 436523 750 6047309 2024-02-23 20:03:26.825 2024-02-23 20:03:26.825 900 FEE 436556 11145 6047310 2024-02-23 20:03:26.825 2024-02-23 20:03:26.825 8100 TIP 436556 14267 6047324 2024-02-23 20:04:52.288 2024-02-23 20:04:52.288 2300 FEE 436605 20614 6047325 2024-02-23 20:04:52.288 2024-02-23 20:04:52.288 20700 TIP 436605 19569 6047340 2024-02-23 20:04:54.021 2024-02-23 20:04:54.021 2300 FEE 436605 19910 6047341 2024-02-23 20:04:54.021 2024-02-23 20:04:54.021 20700 TIP 436605 2722 6047352 2024-02-23 20:04:55.783 2024-02-23 20:04:55.783 2300 FEE 436605 19961 6047353 2024-02-23 20:04:55.783 2024-02-23 20:04:55.783 20700 TIP 436605 15386 6047364 2024-02-23 20:04:56.875 2024-02-23 20:04:56.875 1000 FEE 436326 21446 6047365 2024-02-23 20:04:56.875 2024-02-23 20:04:56.875 9000 TIP 436326 882 6047366 2024-02-23 20:04:56.912 2024-02-23 20:04:56.912 2300 FEE 436605 1845 6047367 2024-02-23 20:04:56.912 2024-02-23 20:04:56.912 20700 TIP 436605 16406 6047410 2024-02-23 20:05:08.561 2024-02-23 20:05:08.561 1000 FEE 436326 7766 6047411 2024-02-23 20:05:08.561 2024-02-23 20:05:08.561 9000 TIP 436326 18618 6047440 2024-02-23 20:05:25.884 2024-02-23 20:05:25.884 900 FEE 436562 16598 6047441 2024-02-23 20:05:25.884 2024-02-23 20:05:25.884 8100 TIP 436562 11091 6047446 2024-02-23 20:05:38.011 2024-02-23 20:05:38.011 900 FEE 436585 19007 6047447 2024-02-23 20:05:38.011 2024-02-23 20:05:38.011 8100 TIP 436585 11678 6047497 2024-02-23 20:06:43.129 2024-02-23 20:06:43.129 1000 FEE 436326 16351 6047498 2024-02-23 20:06:43.129 2024-02-23 20:06:43.129 9000 TIP 436326 17082 6047517 2024-02-23 20:06:47.345 2024-02-23 20:06:47.345 1000 FEE 436326 14271 6047518 2024-02-23 20:06:47.345 2024-02-23 20:06:47.345 9000 TIP 436326 18828 6047523 2024-02-23 20:06:47.927 2024-02-23 20:06:47.927 1000 FEE 436326 675 6047524 2024-02-23 20:06:47.927 2024-02-23 20:06:47.927 9000 TIP 436326 2774 6047553 2024-02-23 20:06:50.345 2024-02-23 20:06:50.345 900000 FEE 435847 2437 6047554 2024-02-23 20:06:50.345 2024-02-23 20:06:50.345 8100000 TIP 435847 20636 6047557 2024-02-23 20:06:50.54 2024-02-23 20:06:50.54 1000 FEE 436326 5746 6047558 2024-02-23 20:06:50.54 2024-02-23 20:06:50.54 9000 TIP 436326 5425 6047627 2024-02-23 20:07:00.1 2024-02-23 20:07:00.1 1000 FEE 436326 2326 6047628 2024-02-23 20:07:00.1 2024-02-23 20:07:00.1 9000 TIP 436326 4502 6047629 2024-02-23 20:07:00.256 2024-02-23 20:07:00.256 1000 FEE 436326 16998 6047630 2024-02-23 20:07:00.256 2024-02-23 20:07:00.256 9000 TIP 436326 2327 6047665 2024-02-23 20:07:56.609 2024-02-23 20:07:56.609 10100 FEE 436582 4984 6047666 2024-02-23 20:07:56.609 2024-02-23 20:07:56.609 90900 TIP 436582 9809 6047678 2024-02-23 20:08:34.788 2024-02-23 20:08:34.788 90000 FEE 435812 14122 6047679 2024-02-23 20:08:34.788 2024-02-23 20:08:34.788 810000 TIP 435812 17741 6047732 2024-02-23 20:17:33.424 2024-02-23 20:17:33.424 8300 FEE 436560 9418 6047733 2024-02-23 20:17:33.424 2024-02-23 20:17:33.424 74700 TIP 436560 12220 6047749 2024-02-23 20:17:49.911 2024-02-23 20:17:49.911 2100 FEE 436508 8074 6047750 2024-02-23 20:17:49.911 2024-02-23 20:17:49.911 18900 TIP 436508 669 6047777 2024-02-23 20:19:38.708 2024-02-23 20:19:38.708 2100 FEE 436394 18154 6047778 2024-02-23 20:19:38.708 2024-02-23 20:19:38.708 18900 TIP 436394 1624 6047792 2024-02-23 20:20:49.921 2024-02-23 20:20:49.921 100000 FEE 436618 18989 6047848 2024-02-23 20:30:22.201 2024-02-23 20:30:22.201 1000 FEE 436628 1389 6047849 2024-02-23 20:30:22.201 2024-02-23 20:30:22.201 9000 TIP 436628 704 6047870 2024-02-23 20:30:25.789 2024-02-23 20:30:25.789 1000 FEE 436628 10352 6047871 2024-02-23 20:30:25.789 2024-02-23 20:30:25.789 9000 TIP 436628 19289 6047874 2024-02-23 20:30:26.133 2024-02-23 20:30:26.133 1000 FEE 436628 16808 6047875 2024-02-23 20:30:26.133 2024-02-23 20:30:26.133 9000 TIP 436628 19005 6047886 2024-02-23 20:31:20.59 2024-02-23 20:31:20.59 2100 FEE 436355 12769 6047887 2024-02-23 20:31:20.59 2024-02-23 20:31:20.59 18900 TIP 436355 19151 6047899 2024-02-23 20:32:58.89 2024-02-23 20:32:58.89 100 FEE 436556 10638 6047900 2024-02-23 20:32:58.89 2024-02-23 20:32:58.89 900 TIP 436556 805 6047911 2024-02-23 20:34:10.001 2024-02-23 20:34:10.001 0 FEE 368845 676 6047938 2024-02-23 20:36:10.893 2024-02-23 20:36:10.893 8300 FEE 436499 14045 6047939 2024-02-23 20:36:10.893 2024-02-23 20:36:10.893 74700 TIP 436499 4650 6047946 2024-02-23 20:36:11.571 2024-02-23 20:36:11.571 8300 FEE 436499 9450 6047947 2024-02-23 20:36:11.571 2024-02-23 20:36:11.571 74700 TIP 436499 19848 6047950 2024-02-23 20:36:11.792 2024-02-23 20:36:11.792 8300 FEE 436499 19663 6047951 2024-02-23 20:36:11.792 2024-02-23 20:36:11.792 74700 TIP 436499 10016 6047965 2024-02-23 20:37:09.663 2024-02-23 20:37:09.663 10000 FEE 436634 19909 6047012 2024-02-23 19:10:05.971 2024-02-23 19:10:05.971 9000 TIP 436561 16214 6047031 2024-02-23 19:12:52.231 2024-02-23 19:12:52.231 2300 FEE 436564 20481 6047032 2024-02-23 19:12:52.231 2024-02-23 19:12:52.231 20700 TIP 436564 19282 6047058 2024-02-23 19:20:00.401 2024-02-23 19:20:00.401 1000 FEE 436480 4014 6047059 2024-02-23 19:20:00.401 2024-02-23 19:20:00.401 9000 TIP 436480 21222 6047069 2024-02-23 19:23:23.674 2024-02-23 19:23:23.674 1000 FEE 436582 8498 6047078 2024-02-23 19:27:01.458 2024-02-23 19:27:01.458 1000 POLL 436323 17172 6047108 2024-02-23 19:35:55.916 2024-02-23 19:35:55.916 1000 POLL 435805 18235 6047118 2024-02-23 19:37:24.165 2024-02-23 19:37:24.165 2100 FEE 436215 21612 6047119 2024-02-23 19:37:24.165 2024-02-23 19:37:24.165 18900 TIP 436215 6526 6047129 2024-02-23 19:38:04.548 2024-02-23 19:38:04.548 11000 FEE 436587 8998 6047146 2024-02-23 19:41:01.748 2024-02-23 19:41:01.748 3300 FEE 436560 20327 6047147 2024-02-23 19:41:01.748 2024-02-23 19:41:01.748 29700 TIP 436560 21138 6047152 2024-02-23 19:42:24.389 2024-02-23 19:42:24.389 1100 FEE 436493 1130 6047153 2024-02-23 19:42:24.389 2024-02-23 19:42:24.389 9900 TIP 436493 4173 6047161 2024-02-23 19:43:40.959 2024-02-23 19:43:40.959 1000 FEE 436326 21216 6047162 2024-02-23 19:43:40.959 2024-02-23 19:43:40.959 9000 TIP 436326 21373 6047163 2024-02-23 19:43:59.54 2024-02-23 19:43:59.54 1000 FEE 436594 19031 6047173 2024-02-23 19:47:43.185 2024-02-23 19:47:43.185 0 FEE 436585 20137 6047179 2024-02-23 19:51:02.526 2024-02-23 19:51:02.526 1000 FEE 436598 4167 6047183 2024-02-23 19:51:29.599 2024-02-23 19:51:29.599 2300 FEE 436593 3990 6047184 2024-02-23 19:51:29.599 2024-02-23 19:51:29.599 20700 TIP 436593 16442 6047191 2024-02-23 19:51:30.092 2024-02-23 19:51:30.092 2300 FEE 436593 6573 6047192 2024-02-23 19:51:30.092 2024-02-23 19:51:30.092 20700 TIP 436593 1493 6047195 2024-02-23 19:51:30.925 2024-02-23 19:51:30.925 2300 FEE 436593 11158 6047196 2024-02-23 19:51:30.925 2024-02-23 19:51:30.925 20700 TIP 436593 14074 6047199 2024-02-23 19:51:31.179 2024-02-23 19:51:31.179 2300 FEE 436593 794 6047200 2024-02-23 19:51:31.179 2024-02-23 19:51:31.179 20700 TIP 436593 4064 6047205 2024-02-23 19:51:32.053 2024-02-23 19:51:32.053 2300 FEE 436593 701 6047206 2024-02-23 19:51:32.053 2024-02-23 19:51:32.053 20700 TIP 436593 2525 6047218 2024-02-23 19:55:06.479 2024-02-23 19:55:06.479 2100 FEE 436499 20299 6047219 2024-02-23 19:55:06.479 2024-02-23 19:55:06.479 18900 TIP 436499 20849 6047238 2024-02-23 19:55:13.584 2024-02-23 19:55:13.584 2100 FEE 436466 9378 6047239 2024-02-23 19:55:13.584 2024-02-23 19:55:13.584 18900 TIP 436466 12911 6047263 2024-02-23 19:57:01.728 2024-02-23 19:57:01.728 1000 FEE 436600 3347 6047270 2024-02-23 19:59:49.129 2024-02-23 19:59:49.129 1000 FEE 436602 21218 6047271 2024-02-23 19:59:53.904 2024-02-23 19:59:53.904 1000 FEE 436603 4064 6047283 2024-02-23 20:00:53.273 2024-02-23 20:00:53.273 1000 FEE 436605 15063 6047334 2024-02-23 20:04:53.482 2024-02-23 20:04:53.482 2300 FEE 436605 14818 6047335 2024-02-23 20:04:53.482 2024-02-23 20:04:53.482 20700 TIP 436605 18690 6047368 2024-02-23 20:04:57.059 2024-02-23 20:04:57.059 1000 FEE 436326 902 6047369 2024-02-23 20:04:57.059 2024-02-23 20:04:57.059 9000 TIP 436326 3518 6047370 2024-02-23 20:04:57.08 2024-02-23 20:04:57.08 2300 FEE 436605 946 6047371 2024-02-23 20:04:57.08 2024-02-23 20:04:57.08 20700 TIP 436605 10698 6047376 2024-02-23 20:04:57.367 2024-02-23 20:04:57.367 2300 FEE 436605 12346 6047377 2024-02-23 20:04:57.367 2024-02-23 20:04:57.367 20700 TIP 436605 19286 6047406 2024-02-23 20:05:03.85 2024-02-23 20:05:03.85 1000 FEE 436326 956 6047407 2024-02-23 20:05:03.85 2024-02-23 20:05:03.85 9000 TIP 436326 21365 6047412 2024-02-23 20:05:08.616 2024-02-23 20:05:08.616 1000 FEE 436326 5825 6047413 2024-02-23 20:05:08.616 2024-02-23 20:05:08.616 9000 TIP 436326 20187 6047420 2024-02-23 20:05:09.472 2024-02-23 20:05:09.472 2300 FEE 436606 20924 6047421 2024-02-23 20:05:09.472 2024-02-23 20:05:09.472 20700 TIP 436606 18836 6047426 2024-02-23 20:05:09.869 2024-02-23 20:05:09.869 9000 FEE 436550 14552 6047427 2024-02-23 20:05:09.869 2024-02-23 20:05:09.869 81000 TIP 436550 19668 6047444 2024-02-23 20:05:37.56 2024-02-23 20:05:37.56 100 FEE 436585 17519 6047445 2024-02-23 20:05:37.56 2024-02-23 20:05:37.56 900 TIP 436585 4763 6047450 2024-02-23 20:05:39.805 2024-02-23 20:05:39.805 900 FEE 436590 17014 6047451 2024-02-23 20:05:39.805 2024-02-23 20:05:39.805 8100 TIP 436590 20616 6047456 2024-02-23 20:05:42.59 2024-02-23 20:05:42.59 10000 FEE 436608 14152 6047459 2024-02-23 20:05:50.24 2024-02-23 20:05:50.24 900 FEE 436587 2293 6047460 2024-02-23 20:05:50.24 2024-02-23 20:05:50.24 8100 TIP 436587 16665 6047464 2024-02-23 20:06:10.341 2024-02-23 20:06:10.341 90000 FEE 436241 15858 6047465 2024-02-23 20:06:10.341 2024-02-23 20:06:10.341 810000 TIP 436241 21446 6047468 2024-02-23 20:06:16.841 2024-02-23 20:06:16.841 0 FEE 436607 658 6047487 2024-02-23 20:06:39.67 2024-02-23 20:06:39.67 1000 FEE 436326 11862 6047488 2024-02-23 20:06:39.67 2024-02-23 20:06:39.67 9000 TIP 436326 20106 6047511 2024-02-23 20:06:46.65 2024-02-23 20:06:46.65 1000 FEE 436326 8664 6047512 2024-02-23 20:06:46.65 2024-02-23 20:06:46.65 9000 TIP 436326 17455 6047525 2024-02-23 20:06:48.224 2024-02-23 20:06:48.224 1000 FEE 436326 3342 6047526 2024-02-23 20:06:48.224 2024-02-23 20:06:48.224 9000 TIP 436326 657 6047531 2024-02-23 20:06:48.539 2024-02-23 20:06:48.539 90000 FEE 435847 20157 6047532 2024-02-23 20:06:48.539 2024-02-23 20:06:48.539 810000 TIP 435847 1261 6047535 2024-02-23 20:06:48.969 2024-02-23 20:06:48.969 2000 FEE 436326 2508 6047536 2024-02-23 20:06:48.969 2024-02-23 20:06:48.969 18000 TIP 436326 18615 6047537 2024-02-23 20:06:49.228 2024-02-23 20:06:49.228 1000 FEE 436326 19615 6047538 2024-02-23 20:06:49.228 2024-02-23 20:06:49.228 9000 TIP 436326 12272 6047547 2024-02-23 20:06:49.94 2024-02-23 20:06:49.94 1000 FEE 436326 18453 6047548 2024-02-23 20:06:49.94 2024-02-23 20:06:49.94 9000 TIP 436326 21116 6047549 2024-02-23 20:06:50.089 2024-02-23 20:06:50.089 1000 FEE 436326 18667 6047550 2024-02-23 20:06:50.089 2024-02-23 20:06:50.089 9000 TIP 436326 15510 6047573 2024-02-23 20:06:51.717 2024-02-23 20:06:51.717 1000 FEE 436326 19541 6047574 2024-02-23 20:06:51.717 2024-02-23 20:06:51.717 9000 TIP 436326 19303 6047579 2024-02-23 20:06:52.173 2024-02-23 20:06:52.173 1000 FEE 436326 17392 6047580 2024-02-23 20:06:52.173 2024-02-23 20:06:52.173 9000 TIP 436326 18664 6047160 2024-02-23 19:43:34.388 2024-02-23 19:43:34.388 9000 TIP 436326 17552 6047201 2024-02-23 19:51:31.295 2024-02-23 19:51:31.295 2300 FEE 436593 19243 6047202 2024-02-23 19:51:31.295 2024-02-23 19:51:31.295 20700 TIP 436593 11153 6047228 2024-02-23 19:55:10.714 2024-02-23 19:55:10.714 2100 FEE 436560 20826 6047229 2024-02-23 19:55:10.714 2024-02-23 19:55:10.714 18900 TIP 436560 20647 6047234 2024-02-23 19:55:11.875 2024-02-23 19:55:11.875 2100 FEE 436326 15115 6047235 2024-02-23 19:55:11.875 2024-02-23 19:55:11.875 18900 TIP 436326 17713 6047288 2024-02-23 20:00:58.473 2024-02-23 20:00:58.473 9000 FEE 436572 12346 6047289 2024-02-23 20:00:58.473 2024-02-23 20:00:58.473 81000 TIP 436572 19198 6047175 2024-02-23 19:49:04.408 2024-02-23 19:49:04.408 1000 STREAM 141924 1833 6113269 2024-02-29 14:45:02.153 2024-02-29 14:45:02.153 1000 STREAM 141924 1038 6113307 2024-02-29 14:47:02.152 2024-02-29 14:47:02.152 1000 STREAM 141924 21395 6113318 2024-02-29 14:49:02.169 2024-02-29 14:49:02.169 1000 STREAM 141924 700 6113503 2024-02-29 14:58:02.321 2024-02-29 14:58:02.321 1000 STREAM 141924 10519 6113628 2024-02-29 15:03:02.37 2024-02-29 15:03:02.37 1000 STREAM 141924 19981 6047176 2024-02-23 19:50:02.408 2024-02-23 19:50:02.408 1000 STREAM 141924 3213 6047293 2024-02-23 20:02:02.481 2024-02-23 20:02:02.481 1000 STREAM 141924 4570 6113344 2024-02-29 14:50:25.38 2024-02-29 14:50:25.38 2100 FEE 443554 14247 6113345 2024-02-29 14:50:25.38 2024-02-29 14:50:25.38 18900 TIP 443554 5794 6113376 2024-02-29 14:51:23.421 2024-02-29 14:51:23.421 1000 FEE 443605 17696 6113380 2024-02-29 14:51:54.949 2024-02-29 14:51:54.949 2100 FEE 443602 2749 6113381 2024-02-29 14:51:54.949 2024-02-29 14:51:54.949 18900 TIP 443602 5175 6113383 2024-02-29 14:52:05.241 2024-02-29 14:52:05.241 0 FEE 443602 16747 6113399 2024-02-29 14:53:48.974 2024-02-29 14:53:48.974 5700 FEE 443599 1603 6113400 2024-02-29 14:53:48.974 2024-02-29 14:53:48.974 51300 TIP 443599 19557 6113407 2024-02-29 14:54:02.524 2024-02-29 14:54:02.524 5700 FEE 443451 5961 6113408 2024-02-29 14:54:02.524 2024-02-29 14:54:02.524 51300 TIP 443451 8472 6113409 2024-02-29 14:54:04.357 2024-02-29 14:54:04.357 5700 FEE 443380 21012 6113410 2024-02-29 14:54:04.357 2024-02-29 14:54:04.357 51300 TIP 443380 14015 6113421 2024-02-29 14:55:10.671 2024-02-29 14:55:10.671 1000 FEE 443616 1007 6113428 2024-02-29 14:55:25.44 2024-02-29 14:55:25.44 27900 FEE 443583 19507 6113429 2024-02-29 14:55:25.44 2024-02-29 14:55:25.44 251100 TIP 443583 1720 6113435 2024-02-29 14:56:02.937 2024-02-29 14:56:02.937 400 FEE 443604 1738 6113436 2024-02-29 14:56:02.937 2024-02-29 14:56:02.937 3600 TIP 443604 3353 6113441 2024-02-29 14:56:04.168 2024-02-29 14:56:04.168 400 FEE 443048 2514 6113442 2024-02-29 14:56:04.168 2024-02-29 14:56:04.168 3600 TIP 443048 18387 6113444 2024-02-29 14:56:25.011 2024-02-29 14:56:25.011 1000 FEE 443620 15978 6047212 2024-02-23 19:54:03.41 2024-02-23 19:54:03.41 1000 STREAM 141924 6327 6047213 2024-02-23 19:55:03.422 2024-02-23 19:55:03.422 1000 STREAM 141924 18832 6047264 2024-02-23 19:57:03.432 2024-02-23 19:57:03.432 1000 STREAM 141924 1571 6047268 2024-02-23 19:58:03.44 2024-02-23 19:58:03.44 1000 STREAM 141924 2402 6047272 2024-02-23 20:00:03.46 2024-02-23 20:00:03.46 1000 STREAM 141924 1124 6047290 2024-02-23 20:01:03.455 2024-02-23 20:01:03.455 1000 STREAM 141924 782 6047302 2024-02-23 20:03:03.459 2024-02-23 20:03:03.459 1000 STREAM 141924 9820 6047647 2024-02-23 20:07:03.472 2024-02-23 20:07:03.472 1000 STREAM 141924 21238 6047671 2024-02-23 20:08:03.5 2024-02-23 20:08:03.5 1000 STREAM 141924 18704 6047703 2024-02-23 20:13:03.507 2024-02-23 20:13:03.507 1000 STREAM 141924 18772 6047709 2024-02-23 20:16:03.544 2024-02-23 20:16:03.544 1000 STREAM 141924 18932 6047770 2024-02-23 20:19:03.527 2024-02-23 20:19:03.527 1000 STREAM 141924 9353 6047810 2024-02-23 20:24:03.546 2024-02-23 20:24:03.546 1000 STREAM 141924 11821 6047821 2024-02-23 20:27:03.542 2024-02-23 20:27:03.542 1000 STREAM 141924 1723 6047909 2024-02-23 20:34:03.604 2024-02-23 20:34:03.604 1000 STREAM 141924 18525 6048030 2024-02-23 20:42:03.612 2024-02-23 20:42:03.612 1000 STREAM 141924 5708 6048075 2024-02-23 20:46:03.627 2024-02-23 20:46:03.627 1000 STREAM 141924 20133 6113415 2024-02-29 14:54:34.571 2024-02-29 14:54:34.571 56700 TIP 443473 20852 6113420 2024-02-29 14:55:05.8 2024-02-29 14:55:05.8 0 FEE 443609 12930 6113424 2024-02-29 14:55:16.26 2024-02-29 14:55:16.26 900 FEE 443545 7587 6113425 2024-02-29 14:55:16.26 2024-02-29 14:55:16.26 8100 TIP 443545 5520 6113447 2024-02-29 14:56:44.076 2024-02-29 14:56:44.076 2100 FEE 443583 9418 6113448 2024-02-29 14:56:44.076 2024-02-29 14:56:44.076 18900 TIP 443583 16769 6113457 2024-02-29 14:57:02.564 2024-02-29 14:57:02.564 5700 FEE 443545 5775 6113458 2024-02-29 14:57:02.564 2024-02-29 14:57:02.564 51300 TIP 443545 2789 6113476 2024-02-29 14:57:09.769 2024-02-29 14:57:09.769 7700 FEE 443617 12261 6113477 2024-02-29 14:57:09.769 2024-02-29 14:57:09.769 69300 TIP 443617 16816 6113498 2024-02-29 14:58:00.416 2024-02-29 14:58:00.416 1000 FEE 443622 19449 6113520 2024-02-29 14:58:55.505 2024-02-29 14:58:55.505 1000 FEE 443627 1472 6113521 2024-02-29 14:58:56.8 2024-02-29 14:58:56.8 100 FEE 443593 20143 6113522 2024-02-29 14:58:56.8 2024-02-29 14:58:56.8 900 TIP 443593 15549 6113544 2024-02-29 14:59:30.531 2024-02-29 14:59:30.531 0 FEE 443627 17984 6113552 2024-02-29 14:59:47.479 2024-02-29 14:59:47.479 1700 FEE 443629 19639 6113553 2024-02-29 14:59:47.479 2024-02-29 14:59:47.479 15300 TIP 443629 19156 6113562 2024-02-29 15:00:00.794 2024-02-29 15:00:00.794 300 FEE 443613 9348 6113563 2024-02-29 15:00:00.794 2024-02-29 15:00:00.794 2700 TIP 443613 8448 6113568 2024-02-29 15:00:01.46 2024-02-29 15:00:01.46 300 FEE 443613 21506 6113569 2024-02-29 15:00:01.46 2024-02-29 15:00:01.46 2700 TIP 443613 20998 6113593 2024-02-29 15:00:31.808 2024-02-29 15:00:31.808 10000 FEE 443641 626 6113605 2024-02-29 15:00:53.458 2024-02-29 15:00:53.458 100 FEE 443319 20481 6113606 2024-02-29 15:00:53.458 2024-02-29 15:00:53.458 900 TIP 443319 19812 6113621 2024-02-29 15:01:59.183 2024-02-29 15:01:59.183 1000 FEE 443646 20897 6113630 2024-02-29 15:03:25.247 2024-02-29 15:03:25.247 0 FEE 443644 20911 6113711 2024-02-29 15:07:43.238 2024-02-29 15:07:43.238 15400 FEE 443272 21157 6113712 2024-02-29 15:07:43.238 2024-02-29 15:07:43.238 138600 TIP 443272 11395 6113715 2024-02-29 15:07:43.722 2024-02-29 15:07:43.722 7700 FEE 443272 19527 6113716 2024-02-29 15:07:43.722 2024-02-29 15:07:43.722 69300 TIP 443272 20588 6113726 2024-02-29 15:08:30.273 2024-02-29 15:08:30.273 1600 FEE 443617 3411 6113727 2024-02-29 15:08:30.273 2024-02-29 15:08:30.273 14400 TIP 443617 18402 6113730 2024-02-29 15:08:44.44 2024-02-29 15:08:44.44 900 FEE 443659 20409 6113731 2024-02-29 15:08:44.44 2024-02-29 15:08:44.44 8100 TIP 443659 20998 6113772 2024-02-29 15:11:43.239 2024-02-29 15:11:43.239 1000 FEE 443662 21178 6113777 2024-02-29 15:12:34.192 2024-02-29 15:12:34.192 5000 FEE 443451 16149 6113778 2024-02-29 15:12:34.192 2024-02-29 15:12:34.192 45000 TIP 443451 20183 6113787 2024-02-29 15:12:37.885 2024-02-29 15:12:37.885 1000 FEE 443467 21482 6113788 2024-02-29 15:12:37.885 2024-02-29 15:12:37.885 9000 TIP 443467 8569 6113794 2024-02-29 15:13:15.463 2024-02-29 15:13:15.463 1000 FEE 443272 1236 6113795 2024-02-29 15:13:15.463 2024-02-29 15:13:15.463 9000 TIP 443272 13100 6113796 2024-02-29 15:13:39.143 2024-02-29 15:13:39.143 500 FEE 443583 18170 6113797 2024-02-29 15:13:39.143 2024-02-29 15:13:39.143 4500 TIP 443583 20479 6113800 2024-02-29 15:13:48.72 2024-02-29 15:13:48.72 6900 FEE 443545 6526 6113801 2024-02-29 15:13:48.72 2024-02-29 15:13:48.72 62100 TIP 443545 21343 6113846 2024-02-29 15:16:09.773 2024-02-29 15:16:09.773 1000 FEE 443663 14906 6113847 2024-02-29 15:16:09.773 2024-02-29 15:16:09.773 9000 TIP 443663 663 6113975 2024-02-29 15:26:09.187 2024-02-29 15:26:09.187 1000 FEE 443680 21021 6114002 2024-02-29 15:26:32.671 2024-02-29 15:26:32.671 1000 FEE 443681 1298 6114003 2024-02-29 15:26:35.518 2024-02-29 15:26:35.518 1000 FEE 443682 19087 6114021 2024-02-29 15:27:35.197 2024-02-29 15:27:35.197 1000 FEE 443683 14255 6114022 2024-02-29 15:27:35.197 2024-02-29 15:27:35.197 9000 TIP 443683 20094 6114025 2024-02-29 15:27:59.457 2024-02-29 15:27:59.457 10000 FEE 443482 3353 6114026 2024-02-29 15:27:59.457 2024-02-29 15:27:59.457 90000 TIP 443482 21402 6114031 2024-02-29 15:28:19.165 2024-02-29 15:28:19.165 1000 FEE 443577 11275 6114032 2024-02-29 15:28:19.165 2024-02-29 15:28:19.165 9000 TIP 443577 627 6114047 2024-02-29 15:28:49.893 2024-02-29 15:28:49.893 1000 FEE 443453 10283 6114048 2024-02-29 15:28:49.893 2024-02-29 15:28:49.893 9000 TIP 443453 21458 6114055 2024-02-29 15:28:55.374 2024-02-29 15:28:55.374 2100 FEE 443633 21588 6114056 2024-02-29 15:28:55.374 2024-02-29 15:28:55.374 18900 TIP 443633 18208 6114059 2024-02-29 15:28:57.411 2024-02-29 15:28:57.411 2100 FEE 443548 20258 6114060 2024-02-29 15:28:57.411 2024-02-29 15:28:57.411 18900 TIP 443548 11798 6114067 2024-02-29 15:29:03.331 2024-02-29 15:29:03.331 2100 FEE 443505 18583 6114068 2024-02-29 15:29:03.331 2024-02-29 15:29:03.331 18900 TIP 443505 960 6114088 2024-02-29 15:29:21.115 2024-02-29 15:29:21.115 10000 FEE 443685 3706 6114099 2024-02-29 15:29:47.585 2024-02-29 15:29:47.585 2100 FEE 443599 19615 6114100 2024-02-29 15:29:47.585 2024-02-29 15:29:47.585 18900 TIP 443599 21157 6114138 2024-02-29 15:31:40.302 2024-02-29 15:31:40.302 10000 FEE 443593 2460 6114139 2024-02-29 15:31:40.302 2024-02-29 15:31:40.302 90000 TIP 443593 16660 6114145 2024-02-29 15:31:46.985 2024-02-29 15:31:46.985 1000 FEE 443692 1712 6114162 2024-02-29 15:33:03.143 2024-02-29 15:33:03.143 2100 FEE 443329 635 6114163 2024-02-29 15:33:03.143 2024-02-29 15:33:03.143 18900 TIP 443329 18306 6114185 2024-02-29 15:33:16.888 2024-02-29 15:33:16.888 2100 FEE 443301 21612 6114186 2024-02-29 15:33:16.888 2024-02-29 15:33:16.888 18900 TIP 443301 21444 6047292 2024-02-23 20:01:49.174 2024-02-23 20:01:49.174 1000 FEE 436606 21214 6047300 2024-02-23 20:02:48.54 2024-02-23 20:02:48.54 9000 FEE 436523 5775 6047301 2024-02-23 20:02:48.54 2024-02-23 20:02:48.54 81000 TIP 436523 1970 6047311 2024-02-23 20:03:27.673 2024-02-23 20:03:27.673 9000 FEE 436556 12049 6047312 2024-02-23 20:03:27.673 2024-02-23 20:03:27.673 81000 TIP 436556 19007 6047316 2024-02-23 20:04:51.344 2024-02-23 20:04:51.344 2300 FEE 436605 9276 6047317 2024-02-23 20:04:51.344 2024-02-23 20:04:51.344 20700 TIP 436605 18625 6047344 2024-02-23 20:04:54.808 2024-02-23 20:04:54.808 2300 FEE 436605 18188 6047345 2024-02-23 20:04:54.808 2024-02-23 20:04:54.808 20700 TIP 436605 720 6047346 2024-02-23 20:04:54.998 2024-02-23 20:04:54.998 2300 FEE 436605 20525 6047347 2024-02-23 20:04:54.998 2024-02-23 20:04:54.998 20700 TIP 436605 7125 6047350 2024-02-23 20:04:55.622 2024-02-23 20:04:55.622 2300 FEE 436605 20757 6047351 2024-02-23 20:04:55.622 2024-02-23 20:04:55.622 20700 TIP 436605 16250 6047354 2024-02-23 20:04:56.192 2024-02-23 20:04:56.192 2300 FEE 436605 9816 6047355 2024-02-23 20:04:56.192 2024-02-23 20:04:56.192 20700 TIP 436605 14705 6047356 2024-02-23 20:04:56.351 2024-02-23 20:04:56.351 2300 FEE 436605 16536 6047357 2024-02-23 20:04:56.351 2024-02-23 20:04:56.351 20700 TIP 436605 1002 6047383 2024-02-23 20:04:59.703 2024-02-23 20:04:59.703 1000 FEE 436326 20586 6047384 2024-02-23 20:04:59.703 2024-02-23 20:04:59.703 9000 TIP 436326 19890 6047385 2024-02-23 20:05:00.638 2024-02-23 20:05:00.638 100 FEE 436550 761 6047386 2024-02-23 20:05:00.638 2024-02-23 20:05:00.638 900 TIP 436550 20811 6047389 2024-02-23 20:05:01.565 2024-02-23 20:05:01.565 1000 FEE 436326 3304 6047390 2024-02-23 20:05:01.565 2024-02-23 20:05:01.565 9000 TIP 436326 21262 6047391 2024-02-23 20:05:01.853 2024-02-23 20:05:01.853 1000 FEE 436326 12222 6047392 2024-02-23 20:05:01.853 2024-02-23 20:05:01.853 9000 TIP 436326 5538 6047428 2024-02-23 20:05:09.964 2024-02-23 20:05:09.964 1000 FEE 436326 16965 6047429 2024-02-23 20:05:09.964 2024-02-23 20:05:09.964 9000 TIP 436326 27 6047454 2024-02-23 20:05:40.534 2024-02-23 20:05:40.534 900 FEE 436588 18280 6047455 2024-02-23 20:05:40.534 2024-02-23 20:05:40.534 8100 TIP 436588 19566 6047481 2024-02-23 20:06:27.953 2024-02-23 20:06:27.953 9000 FEE 436593 20514 6047482 2024-02-23 20:06:27.953 2024-02-23 20:06:27.953 81000 TIP 436593 1845 6047533 2024-02-23 20:06:48.705 2024-02-23 20:06:48.705 1000 FEE 436326 15273 6047534 2024-02-23 20:06:48.705 2024-02-23 20:06:48.705 9000 TIP 436326 19375 6047561 2024-02-23 20:06:50.828 2024-02-23 20:06:50.828 1000 FEE 436326 20858 6047562 2024-02-23 20:06:50.828 2024-02-23 20:06:50.828 9000 TIP 436326 19796 6047567 2024-02-23 20:06:51.344 2024-02-23 20:06:51.344 1000 FEE 436326 5661 6047568 2024-02-23 20:06:51.344 2024-02-23 20:06:51.344 9000 TIP 436326 1000 6047609 2024-02-23 20:06:58.567 2024-02-23 20:06:58.567 1000 FEE 436326 17411 6047610 2024-02-23 20:06:58.567 2024-02-23 20:06:58.567 9000 TIP 436326 1472 6047613 2024-02-23 20:06:58.877 2024-02-23 20:06:58.877 1000 FEE 436326 19806 6047614 2024-02-23 20:06:58.877 2024-02-23 20:06:58.877 9000 TIP 436326 6393 6047617 2024-02-23 20:06:59.187 2024-02-23 20:06:59.187 1000 FEE 436326 19267 6047618 2024-02-23 20:06:59.187 2024-02-23 20:06:59.187 9000 TIP 436326 9833 6047623 2024-02-23 20:06:59.71 2024-02-23 20:06:59.71 1000 FEE 436326 698 6047624 2024-02-23 20:06:59.71 2024-02-23 20:06:59.71 9000 TIP 436326 16929 6047625 2024-02-23 20:06:59.944 2024-02-23 20:06:59.944 1000 FEE 436326 6058 6047626 2024-02-23 20:06:59.944 2024-02-23 20:06:59.944 9000 TIP 436326 1480 6047635 2024-02-23 20:07:00.759 2024-02-23 20:07:00.759 1000 FEE 436326 1650 6047636 2024-02-23 20:07:00.759 2024-02-23 20:07:00.759 9000 TIP 436326 19638 6047645 2024-02-23 20:07:02.983 2024-02-23 20:07:02.983 1000 FEE 436326 2620 6047646 2024-02-23 20:07:02.983 2024-02-23 20:07:02.983 9000 TIP 436326 1120 6047682 2024-02-23 20:08:48.346 2024-02-23 20:08:48.346 90000 FEE 435596 1741 6047683 2024-02-23 20:08:48.346 2024-02-23 20:08:48.346 810000 TIP 435596 20904 6047755 2024-02-23 20:17:50.778 2024-02-23 20:17:50.778 2100 FEE 436508 632 6047756 2024-02-23 20:17:50.778 2024-02-23 20:17:50.778 18900 TIP 436508 794 6047757 2024-02-23 20:17:51.241 2024-02-23 20:17:51.241 2100 FEE 436508 16052 6047758 2024-02-23 20:17:51.241 2024-02-23 20:17:51.241 18900 TIP 436508 15160 6047767 2024-02-23 20:18:27.835 2024-02-23 20:18:27.835 2100 FEE 436553 17183 6047768 2024-02-23 20:18:27.835 2024-02-23 20:18:27.835 18900 TIP 436553 7809 6047789 2024-02-23 20:19:49.479 2024-02-23 20:19:49.479 1000 FEE 436616 20201 6047812 2024-02-23 20:25:12.843 2024-02-23 20:25:12.843 1000 FEE 436623 15146 6047827 2024-02-23 20:28:53.123 2024-02-23 20:28:53.123 200 FEE 436613 6533 6047828 2024-02-23 20:28:53.123 2024-02-23 20:28:53.123 1800 TIP 436613 1480 6047852 2024-02-23 20:30:23.032 2024-02-23 20:30:23.032 1000 FEE 436628 19034 6047853 2024-02-23 20:30:23.032 2024-02-23 20:30:23.032 9000 TIP 436628 13361 6047856 2024-02-23 20:30:23.611 2024-02-23 20:30:23.611 1000 FEE 436628 2293 6047857 2024-02-23 20:30:23.611 2024-02-23 20:30:23.611 9000 TIP 436628 18862 6047892 2024-02-23 20:31:33.393 2024-02-23 20:31:33.393 1000 FEE 435488 6741 6047893 2024-02-23 20:31:33.393 2024-02-23 20:31:33.393 9000 TIP 435488 18005 6047902 2024-02-23 20:33:29.825 2024-02-23 20:33:29.825 100000 FEE 436632 2335 6047323 2024-02-23 20:04:52.095 2024-02-23 20:04:52.095 20700 TIP 436605 8498 6047328 2024-02-23 20:04:52.584 2024-02-23 20:04:52.584 2300 FEE 436605 18518 6047329 2024-02-23 20:04:52.584 2024-02-23 20:04:52.584 20700 TIP 436605 19535 6047336 2024-02-23 20:04:53.652 2024-02-23 20:04:53.652 2300 FEE 436605 16485 6047337 2024-02-23 20:04:53.652 2024-02-23 20:04:53.652 20700 TIP 436605 13763 6047342 2024-02-23 20:04:54.593 2024-02-23 20:04:54.593 2300 FEE 436605 897 6047343 2024-02-23 20:04:54.593 2024-02-23 20:04:54.593 20700 TIP 436605 16250 6047348 2024-02-23 20:04:55.439 2024-02-23 20:04:55.439 2300 FEE 436605 16424 6047349 2024-02-23 20:04:55.439 2024-02-23 20:04:55.439 20700 TIP 436605 14909 6047382 2024-02-23 20:04:58.058 2024-02-23 20:04:58.058 1000 FEE 436607 716 6047393 2024-02-23 20:05:02.131 2024-02-23 20:05:02.131 1000 FEE 436326 16270 6047394 2024-02-23 20:05:02.131 2024-02-23 20:05:02.131 9000 TIP 436326 16680 6047397 2024-02-23 20:05:02.79 2024-02-23 20:05:02.79 1000 FEE 436326 15351 6047398 2024-02-23 20:05:02.79 2024-02-23 20:05:02.79 9000 TIP 436326 19507 6047401 2024-02-23 20:05:03.326 2024-02-23 20:05:03.326 1000 FEE 436326 18005 6047402 2024-02-23 20:05:03.326 2024-02-23 20:05:03.326 9000 TIP 436326 2710 6047414 2024-02-23 20:05:08.826 2024-02-23 20:05:08.826 1000 FEE 436326 6360 6047415 2024-02-23 20:05:08.826 2024-02-23 20:05:08.826 9000 TIP 436326 19332 6047466 2024-02-23 20:06:15.032 2024-02-23 20:06:15.032 9000 FEE 436197 10063 6047467 2024-02-23 20:06:15.032 2024-02-23 20:06:15.032 81000 TIP 436197 2757 6047475 2024-02-23 20:06:20.352 2024-02-23 20:06:20.352 9000 FEE 435944 15094 6047476 2024-02-23 20:06:20.352 2024-02-23 20:06:20.352 81000 TIP 435944 17275 6047477 2024-02-23 20:06:26.773 2024-02-23 20:06:26.773 100 FEE 436593 2233 6047478 2024-02-23 20:06:26.773 2024-02-23 20:06:26.773 900 TIP 436593 20066 6047515 2024-02-23 20:06:47.129 2024-02-23 20:06:47.129 1000 FEE 436326 659 6047516 2024-02-23 20:06:47.129 2024-02-23 20:06:47.129 9000 TIP 436326 13169 6047521 2024-02-23 20:06:47.814 2024-02-23 20:06:47.814 1000 FEE 436326 10270 6047522 2024-02-23 20:06:47.814 2024-02-23 20:06:47.814 9000 TIP 436326 20190 6047527 2024-02-23 20:06:48.278 2024-02-23 20:06:48.278 1000 FEE 436326 14941 6047528 2024-02-23 20:06:48.278 2024-02-23 20:06:48.278 9000 TIP 436326 894 6047569 2024-02-23 20:06:51.441 2024-02-23 20:06:51.441 1000 FEE 436326 897 6047570 2024-02-23 20:06:51.441 2024-02-23 20:06:51.441 9000 TIP 436326 766 6047601 2024-02-23 20:06:57.98 2024-02-23 20:06:57.98 1000 FEE 436326 13782 6047602 2024-02-23 20:06:57.98 2024-02-23 20:06:57.98 9000 TIP 436326 9334 6047619 2024-02-23 20:06:59.344 2024-02-23 20:06:59.344 1000 FEE 436326 21157 6047620 2024-02-23 20:06:59.344 2024-02-23 20:06:59.344 9000 TIP 436326 7125 6047633 2024-02-23 20:07:00.572 2024-02-23 20:07:00.572 1000 FEE 436326 2741 6047634 2024-02-23 20:07:00.572 2024-02-23 20:07:00.572 9000 TIP 436326 980 6047650 2024-02-23 20:07:04.242 2024-02-23 20:07:04.242 1000 FEE 436326 7746 6047651 2024-02-23 20:07:04.242 2024-02-23 20:07:04.242 9000 TIP 436326 1833 6047652 2024-02-23 20:07:09.929 2024-02-23 20:07:09.929 90000 FEE 436290 16950 6047653 2024-02-23 20:07:09.929 2024-02-23 20:07:09.929 810000 TIP 436290 12562 6047660 2024-02-23 20:07:31.508 2024-02-23 20:07:31.508 9000 FEE 436508 15226 6047661 2024-02-23 20:07:31.508 2024-02-23 20:07:31.508 81000 TIP 436508 5128 6047667 2024-02-23 20:07:58.606 2024-02-23 20:07:58.606 100 FEE 436553 14376 6047668 2024-02-23 20:07:58.606 2024-02-23 20:07:58.606 900 TIP 436553 690 6047680 2024-02-23 20:08:42.995 2024-02-23 20:08:42.995 9000 FEE 435596 17042 6047681 2024-02-23 20:08:42.995 2024-02-23 20:08:42.995 81000 TIP 435596 2042 6047688 2024-02-23 20:09:06.361 2024-02-23 20:09:06.361 9000 FEE 436413 1245 6047689 2024-02-23 20:09:06.361 2024-02-23 20:09:06.361 81000 TIP 436413 17042 6047700 2024-02-23 20:11:57.37 2024-02-23 20:11:57.37 2100 FEE 436566 20922 6047701 2024-02-23 20:11:57.37 2024-02-23 20:11:57.37 18900 TIP 436566 701 6047708 2024-02-23 20:15:06.1 2024-02-23 20:15:06.1 10000 FEE 436612 21509 6047379 2024-02-23 20:04:57.844 2024-02-23 20:04:57.844 20700 TIP 436605 5129 6047408 2024-02-23 20:05:04.076 2024-02-23 20:05:04.076 1000 FEE 436326 5746 6047409 2024-02-23 20:05:04.076 2024-02-23 20:05:04.076 9000 TIP 436326 11956 6047448 2024-02-23 20:05:39.504 2024-02-23 20:05:39.504 100 FEE 436590 5637 6047449 2024-02-23 20:05:39.504 2024-02-23 20:05:39.504 900 TIP 436590 2010 6047452 2024-02-23 20:05:40.333 2024-02-23 20:05:40.333 100 FEE 436588 18618 6047453 2024-02-23 20:05:40.333 2024-02-23 20:05:40.333 900 TIP 436588 2232 6047469 2024-02-23 20:06:18.995 2024-02-23 20:06:18.995 4000 FEE 436608 18336 6047470 2024-02-23 20:06:18.995 2024-02-23 20:06:18.995 36000 TIP 436608 1002 6047473 2024-02-23 20:06:19.745 2024-02-23 20:06:19.745 900 FEE 435944 20434 6047474 2024-02-23 20:06:19.745 2024-02-23 20:06:19.745 8100 TIP 435944 16665 6047479 2024-02-23 20:06:27.189 2024-02-23 20:06:27.189 900 FEE 436593 1628 6047480 2024-02-23 20:06:27.189 2024-02-23 20:06:27.189 8100 TIP 436593 989 6047483 2024-02-23 20:06:34.874 2024-02-23 20:06:34.874 90000 FEE 436323 2502 6047484 2024-02-23 20:06:34.874 2024-02-23 20:06:34.874 810000 TIP 436323 21498 6047495 2024-02-23 20:06:42.89 2024-02-23 20:06:42.89 9000 FEE 436258 9150 6047496 2024-02-23 20:06:42.89 2024-02-23 20:06:42.89 81000 TIP 436258 1628 6047503 2024-02-23 20:06:43.757 2024-02-23 20:06:43.757 1000 FEE 436326 20573 6047504 2024-02-23 20:06:43.757 2024-02-23 20:06:43.757 9000 TIP 436326 21416 6047543 2024-02-23 20:06:49.628 2024-02-23 20:06:49.628 1000 FEE 436326 15196 6047544 2024-02-23 20:06:49.628 2024-02-23 20:06:49.628 9000 TIP 436326 910 6047555 2024-02-23 20:06:50.431 2024-02-23 20:06:50.431 1000 FEE 436326 9969 6047556 2024-02-23 20:06:50.431 2024-02-23 20:06:50.431 9000 TIP 436326 11091 6047565 2024-02-23 20:06:51.175 2024-02-23 20:06:51.175 1000 FEE 436326 5112 6047566 2024-02-23 20:06:51.175 2024-02-23 20:06:51.175 9000 TIP 436326 20434 6047589 2024-02-23 20:06:52.943 2024-02-23 20:06:52.943 1000 FEE 436326 21148 6047590 2024-02-23 20:06:52.943 2024-02-23 20:06:52.943 9000 TIP 436326 1576 6047607 2024-02-23 20:06:58.426 2024-02-23 20:06:58.426 1000 FEE 436326 8916 6047608 2024-02-23 20:06:58.426 2024-02-23 20:06:58.426 9000 TIP 436326 861 6047654 2024-02-23 20:07:17.213 2024-02-23 20:07:17.213 90000 FEE 436158 7877 6047655 2024-02-23 20:07:17.213 2024-02-23 20:07:17.213 810000 TIP 436158 2123 6047715 2024-02-23 20:17:13.547 2024-02-23 20:17:13.547 100 FEE 436493 9345 6047716 2024-02-23 20:17:13.547 2024-02-23 20:17:13.547 900 TIP 436493 13097 6047717 2024-02-23 20:17:13.836 2024-02-23 20:17:13.836 900 FEE 436493 5455 6047718 2024-02-23 20:17:13.836 2024-02-23 20:17:13.836 8100 TIP 436493 5449 6047720 2024-02-23 20:17:32.107 2024-02-23 20:17:32.107 8300 FEE 436560 20623 6047721 2024-02-23 20:17:32.107 2024-02-23 20:17:32.107 74700 TIP 436560 18989 6047728 2024-02-23 20:17:32.67 2024-02-23 20:17:32.67 8300 FEE 436560 20588 6047729 2024-02-23 20:17:32.67 2024-02-23 20:17:32.67 74700 TIP 436560 16329 6047751 2024-02-23 20:17:50.087 2024-02-23 20:17:50.087 2100 FEE 436508 3686 6047752 2024-02-23 20:17:50.087 2024-02-23 20:17:50.087 18900 TIP 436508 5449 6047763 2024-02-23 20:18:27.108 2024-02-23 20:18:27.108 2100 FEE 436553 21338 6047764 2024-02-23 20:18:27.108 2024-02-23 20:18:27.108 18900 TIP 436553 19087 6047781 2024-02-23 20:19:39.1 2024-02-23 20:19:39.1 2100 FEE 436394 15484 6047782 2024-02-23 20:19:39.1 2024-02-23 20:19:39.1 18900 TIP 436394 1007 6047800 2024-02-23 20:22:15.344 2024-02-23 20:22:15.344 4000 FEE 436613 16970 6047801 2024-02-23 20:22:15.344 2024-02-23 20:22:15.344 36000 TIP 436613 10608 6047815 2024-02-23 20:25:38.791 2024-02-23 20:25:38.791 3300 FEE 436600 12265 6047816 2024-02-23 20:25:38.791 2024-02-23 20:25:38.791 29700 TIP 436600 714 6047817 2024-02-23 20:25:41.165 2024-02-23 20:25:41.165 3300 FEE 436600 14950 6047818 2024-02-23 20:25:41.165 2024-02-23 20:25:41.165 29700 TIP 436600 9476 6047840 2024-02-23 20:29:41.593 2024-02-23 20:29:41.593 1000 FEE 436444 18264 6047841 2024-02-23 20:29:41.593 2024-02-23 20:29:41.593 9000 TIP 436444 1273 6047842 2024-02-23 20:29:51.017 2024-02-23 20:29:51.017 10000 FEE 436630 6160 6047858 2024-02-23 20:30:24.046 2024-02-23 20:30:24.046 1000 FEE 436628 6160 6047859 2024-02-23 20:30:24.046 2024-02-23 20:30:24.046 9000 TIP 436628 21591 6047894 2024-02-23 20:31:40.31 2024-02-23 20:31:40.31 2100 FEE 436475 16753 6047895 2024-02-23 20:31:40.31 2024-02-23 20:31:40.31 18900 TIP 436475 10698 6047925 2024-02-23 20:35:47.599 2024-02-23 20:35:47.599 1000 FEE 436175 1596 6047926 2024-02-23 20:35:47.599 2024-02-23 20:35:47.599 9000 TIP 436175 7903 6047933 2024-02-23 20:36:01.709 2024-02-23 20:36:01.709 2100 FEE 436556 21116 6047934 2024-02-23 20:36:01.709 2024-02-23 20:36:01.709 18900 TIP 436556 20110 6047936 2024-02-23 20:36:05.498 2024-02-23 20:36:05.498 2100 FEE 436508 5085 6047937 2024-02-23 20:36:05.498 2024-02-23 20:36:05.498 18900 TIP 436508 16532 6047944 2024-02-23 20:36:11.447 2024-02-23 20:36:11.447 8300 FEE 436499 9655 6047945 2024-02-23 20:36:11.447 2024-02-23 20:36:11.447 74700 TIP 436499 16354 6047958 2024-02-23 20:36:20.167 2024-02-23 20:36:20.167 2100 FEE 436601 18815 6047959 2024-02-23 20:36:20.167 2024-02-23 20:36:20.167 18900 TIP 436601 917 6048048 2024-02-23 20:44:07.618 2024-02-23 20:44:07.618 100 FEE 436626 16145 6048049 2024-02-23 20:44:07.618 2024-02-23 20:44:07.618 900 TIP 436626 964 6048058 2024-02-23 20:44:16.535 2024-02-23 20:44:16.535 900 FEE 436622 8385 6048059 2024-02-23 20:44:16.535 2024-02-23 20:44:16.535 8100 TIP 436622 9427 6048062 2024-02-23 20:44:19.55 2024-02-23 20:44:19.55 900 FEE 436621 4062 6048063 2024-02-23 20:44:19.55 2024-02-23 20:44:19.55 8100 TIP 436621 7668 6048068 2024-02-23 20:44:21.135 2024-02-23 20:44:21.135 9000 FEE 436568 6149 6048069 2024-02-23 20:44:21.135 2024-02-23 20:44:21.135 81000 TIP 436568 16950 6048071 2024-02-23 20:45:26.894 2024-02-23 20:45:26.894 1000 FEE 436566 16753 6048072 2024-02-23 20:45:26.894 2024-02-23 20:45:26.894 9000 TIP 436566 20430 6048077 2024-02-23 20:46:27.414 2024-02-23 20:46:27.414 1000 POLL 436323 17673 6048079 2024-02-23 20:46:40.036 2024-02-23 20:46:40.036 1000 FEE 436641 1136 6048090 2024-02-23 20:48:35.971 2024-02-23 20:48:35.971 2300 FEE 436639 18629 6048091 2024-02-23 20:48:35.971 2024-02-23 20:48:35.971 20700 TIP 436639 4027 6048095 2024-02-23 20:49:08.218 2024-02-23 20:49:08.218 100 FEE 436619 1173 6048096 2024-02-23 20:49:08.218 2024-02-23 20:49:08.218 900 TIP 436619 1519 6048099 2024-02-23 20:49:09.974 2024-02-23 20:49:09.974 100 FEE 436556 16301 6048100 2024-02-23 20:49:09.974 2024-02-23 20:49:09.974 900 TIP 436556 21400 6048113 2024-02-23 20:52:08.945 2024-02-23 20:52:08.945 100 FEE 436499 8287 6048114 2024-02-23 20:52:08.945 2024-02-23 20:52:08.945 900 TIP 436499 4378 6048115 2024-02-23 20:52:09.712 2024-02-23 20:52:09.712 1000 FEE 436645 19836 6048145 2024-02-23 20:54:36.979 2024-02-23 20:54:36.979 800 FEE 436508 20871 6048146 2024-02-23 20:54:36.979 2024-02-23 20:54:36.979 7200 TIP 436508 6041 6048168 2024-02-23 20:59:43.848 2024-02-23 20:59:43.848 2100 FEE 436625 16267 6048169 2024-02-23 20:59:43.848 2024-02-23 20:59:43.848 18900 TIP 436625 837 6048174 2024-02-23 21:00:13.85 2024-02-23 21:00:13.85 1000 FEE 436592 18815 6048175 2024-02-23 21:00:13.85 2024-02-23 21:00:13.85 9000 TIP 436592 20964 6048186 2024-02-23 21:01:02.59 2024-02-23 21:01:02.59 8300 FEE 436508 21051 6048187 2024-02-23 21:01:02.59 2024-02-23 21:01:02.59 74700 TIP 436508 660 6048193 2024-02-23 21:01:15.992 2024-02-23 21:01:15.992 2100 FEE 436622 9166 6048194 2024-02-23 21:01:15.992 2024-02-23 21:01:15.992 18900 TIP 436622 20826 6048203 2024-02-23 21:01:37.884 2024-02-23 21:01:37.884 2100 FEE 436570 20826 6048204 2024-02-23 21:01:37.884 2024-02-23 21:01:37.884 18900 TIP 436570 11992 6048205 2024-02-23 21:01:41.151 2024-02-23 21:01:41.151 2100 FEE 436567 2327 6048206 2024-02-23 21:01:41.151 2024-02-23 21:01:41.151 18900 TIP 436567 2309 6048215 2024-02-23 21:02:01.146 2024-02-23 21:02:01.146 2100 FEE 436525 18448 6047430 2024-02-23 20:05:10.209 2024-02-23 20:05:10.209 1000 FEE 436326 4083 6047431 2024-02-23 20:05:10.209 2024-02-23 20:05:10.209 9000 TIP 436326 2162 6047432 2024-02-23 20:05:10.475 2024-02-23 20:05:10.475 1000 FEE 436326 19511 6047433 2024-02-23 20:05:10.475 2024-02-23 20:05:10.475 9000 TIP 436326 18309 6047457 2024-02-23 20:05:49.909 2024-02-23 20:05:49.909 100 FEE 436587 18138 6047458 2024-02-23 20:05:49.909 2024-02-23 20:05:49.909 900 TIP 436587 18543 6047485 2024-02-23 20:06:39.523 2024-02-23 20:06:39.523 1000 FEE 436326 19987 6047486 2024-02-23 20:06:39.523 2024-02-23 20:06:39.523 9000 TIP 436326 617 6047491 2024-02-23 20:06:40.012 2024-02-23 20:06:40.012 1000 FEE 436326 18735 6047492 2024-02-23 20:06:40.012 2024-02-23 20:06:40.012 9000 TIP 436326 17331 6047499 2024-02-23 20:06:43.291 2024-02-23 20:06:43.291 1000 FEE 436326 7891 6047500 2024-02-23 20:06:43.291 2024-02-23 20:06:43.291 9000 TIP 436326 13767 6047509 2024-02-23 20:06:46.602 2024-02-23 20:06:46.602 1000 FEE 436326 19469 6047510 2024-02-23 20:06:46.602 2024-02-23 20:06:46.602 9000 TIP 436326 18731 6047519 2024-02-23 20:06:47.528 2024-02-23 20:06:47.528 1000 FEE 436326 18271 6047520 2024-02-23 20:06:47.528 2024-02-23 20:06:47.528 9000 TIP 436326 19836 6047529 2024-02-23 20:06:48.453 2024-02-23 20:06:48.453 1000 FEE 436326 19662 6047530 2024-02-23 20:06:48.453 2024-02-23 20:06:48.453 9000 TIP 436326 15196 6047545 2024-02-23 20:06:49.778 2024-02-23 20:06:49.778 1000 FEE 436326 20555 6047546 2024-02-23 20:06:49.778 2024-02-23 20:06:49.778 9000 TIP 436326 21492 6047575 2024-02-23 20:06:51.868 2024-02-23 20:06:51.868 1000 FEE 436326 14385 6047576 2024-02-23 20:06:51.868 2024-02-23 20:06:51.868 9000 TIP 436326 14688 6047587 2024-02-23 20:06:52.797 2024-02-23 20:06:52.797 1000 FEE 436326 18396 6047588 2024-02-23 20:06:52.797 2024-02-23 20:06:52.797 9000 TIP 436326 951 6047593 2024-02-23 20:06:57.432 2024-02-23 20:06:57.432 1000 FEE 436326 11158 6047594 2024-02-23 20:06:57.432 2024-02-23 20:06:57.432 9000 TIP 436326 999 6047599 2024-02-23 20:06:57.823 2024-02-23 20:06:57.823 1000 FEE 436326 1833 6047600 2024-02-23 20:06:57.823 2024-02-23 20:06:57.823 9000 TIP 436326 3478 6047658 2024-02-23 20:07:30.302 2024-02-23 20:07:30.302 900 FEE 436508 8459 6047659 2024-02-23 20:07:30.302 2024-02-23 20:07:30.302 8100 TIP 436508 19494 6047713 2024-02-23 20:17:10.086 2024-02-23 20:17:10.086 2100 FEE 436560 627 6047714 2024-02-23 20:17:10.086 2024-02-23 20:17:10.086 18900 TIP 436560 762 6047722 2024-02-23 20:17:32.398 2024-02-23 20:17:32.398 8300 FEE 436560 756 6047723 2024-02-23 20:17:32.398 2024-02-23 20:17:32.398 74700 TIP 436560 10270 6047726 2024-02-23 20:17:32.561 2024-02-23 20:17:32.561 8300 FEE 436560 9845 6047727 2024-02-23 20:17:32.561 2024-02-23 20:17:32.561 74700 TIP 436560 21591 6047730 2024-02-23 20:17:32.922 2024-02-23 20:17:32.922 8300 FEE 436560 7675 6047731 2024-02-23 20:17:32.922 2024-02-23 20:17:32.922 74700 TIP 436560 20287 6047771 2024-02-23 20:19:19.05 2024-02-23 20:19:19.05 2100 FEE 436361 20657 6047772 2024-02-23 20:19:19.05 2024-02-23 20:19:19.05 18900 TIP 436361 2519 6047796 2024-02-23 20:21:25.973 2024-02-23 20:21:25.973 1000 FEE 436619 12946 6047803 2024-02-23 20:22:26.736 2024-02-23 20:22:26.736 4000 FEE 436612 15213 6047804 2024-02-23 20:22:26.736 2024-02-23 20:22:26.736 36000 TIP 436612 15510 6047822 2024-02-23 20:27:27.968 2024-02-23 20:27:27.968 1000 FEE 436625 4415 6047823 2024-02-23 20:27:52.668 2024-02-23 20:27:52.668 1000 FEE 436626 19967 6047829 2024-02-23 20:28:54.373 2024-02-23 20:28:54.373 1000 FEE 436628 18051 6047833 2024-02-23 20:29:09.956 2024-02-23 20:29:09.956 900 FEE 436561 20481 6047834 2024-02-23 20:29:09.956 2024-02-23 20:29:09.956 8100 TIP 436561 750 6047839 2024-02-23 20:29:14.728 2024-02-23 20:29:14.728 1000 FEE 436629 15326 6047876 2024-02-23 20:30:26.313 2024-02-23 20:30:26.313 1000 FEE 436628 9669 6047877 2024-02-23 20:30:26.313 2024-02-23 20:30:26.313 9000 TIP 436628 18403 6047917 2024-02-23 20:35:36.384 2024-02-23 20:35:36.384 2100 FEE 436489 17602 6047918 2024-02-23 20:35:36.384 2024-02-23 20:35:36.384 18900 TIP 436489 8570 6047921 2024-02-23 20:35:43.198 2024-02-23 20:35:43.198 2100 FEE 436566 15139 6047922 2024-02-23 20:35:43.198 2024-02-23 20:35:43.198 18900 TIP 436566 2075 6047927 2024-02-23 20:35:51.949 2024-02-23 20:35:51.949 2100 FEE 436593 15890 6047928 2024-02-23 20:35:51.949 2024-02-23 20:35:51.949 18900 TIP 436593 16680 6047948 2024-02-23 20:36:11.762 2024-02-23 20:36:11.762 8300 FEE 436499 19886 6047949 2024-02-23 20:36:11.762 2024-02-23 20:36:11.762 74700 TIP 436499 18769 6047974 2024-02-23 20:38:13.958 2024-02-23 20:38:13.958 1100 FEE 436621 16440 6047975 2024-02-23 20:38:13.958 2024-02-23 20:38:13.958 9900 TIP 436621 6594 6048005 2024-02-23 20:40:34.148 2024-02-23 20:40:34.148 1000 FEE 436636 20066 6048008 2024-02-23 20:40:47.359 2024-02-23 20:40:47.359 2100 FEE 436560 11829 6048009 2024-02-23 20:40:47.359 2024-02-23 20:40:47.359 18900 TIP 436560 5794 6048020 2024-02-23 20:40:52.332 2024-02-23 20:40:52.332 2100 FEE 436556 10493 6048021 2024-02-23 20:40:52.332 2024-02-23 20:40:52.332 18900 TIP 436556 15890 6048031 2024-02-23 20:42:28.903 2024-02-23 20:42:28.903 1000 FEE 436638 11819 6048039 2024-02-23 20:43:34.925 2024-02-23 20:43:34.925 1000 FEE 436636 2098 6048040 2024-02-23 20:43:34.925 2024-02-23 20:43:34.925 9000 TIP 436636 17116 6048045 2024-02-23 20:43:41.646 2024-02-23 20:43:41.646 1000 FEE 436559 9611 6048046 2024-02-23 20:43:41.646 2024-02-23 20:43:41.646 9000 TIP 436559 18448 6048050 2024-02-23 20:44:07.936 2024-02-23 20:44:07.936 900 FEE 436626 18679 6048051 2024-02-23 20:44:07.936 2024-02-23 20:44:07.936 8100 TIP 436626 15282 6048054 2024-02-23 20:44:09.809 2024-02-23 20:44:09.809 4000 FEE 436632 21393 6048055 2024-02-23 20:44:09.809 2024-02-23 20:44:09.809 36000 TIP 436632 16353 6048078 2024-02-23 20:46:32.387 2024-02-23 20:46:32.387 10000 FEE 436640 3717 6048082 2024-02-23 20:46:45.793 2024-02-23 20:46:45.793 1500 FEE 436491 17696 6048083 2024-02-23 20:46:45.793 2024-02-23 20:46:45.793 13500 TIP 436491 20099 6048101 2024-02-23 20:49:17.981 2024-02-23 20:49:17.981 500 FEE 436330 18842 6048102 2024-02-23 20:49:17.981 2024-02-23 20:49:17.981 4500 TIP 436330 20619 6048104 2024-02-23 20:50:01.017 2024-02-23 20:50:01.017 10000 FEE 436643 6777 6048120 2024-02-23 20:52:47.149 2024-02-23 20:52:47.149 5000 FEE 436566 21242 6048121 2024-02-23 20:52:47.149 2024-02-23 20:52:47.149 45000 TIP 436566 5195 6048124 2024-02-23 20:52:48.031 2024-02-23 20:52:48.031 100 FEE 436642 692 6048125 2024-02-23 20:52:48.031 2024-02-23 20:52:48.031 900 TIP 436642 12738 6047501 2024-02-23 20:06:43.511 2024-02-23 20:06:43.511 1000 FEE 436326 8998 6047502 2024-02-23 20:06:43.511 2024-02-23 20:06:43.511 9000 TIP 436326 18124 6047505 2024-02-23 20:06:43.833 2024-02-23 20:06:43.833 1000 FEE 436326 21119 6047506 2024-02-23 20:06:43.833 2024-02-23 20:06:43.833 9000 TIP 436326 19826 6047513 2024-02-23 20:06:46.887 2024-02-23 20:06:46.887 1000 FEE 436326 5865 6047514 2024-02-23 20:06:46.887 2024-02-23 20:06:46.887 9000 TIP 436326 18675 6047541 2024-02-23 20:06:49.466 2024-02-23 20:06:49.466 1000 FEE 436326 16456 6047542 2024-02-23 20:06:49.466 2024-02-23 20:06:49.466 9000 TIP 436326 1803 6047563 2024-02-23 20:06:50.97 2024-02-23 20:06:50.97 1000 FEE 436326 8648 6047564 2024-02-23 20:06:50.97 2024-02-23 20:06:50.97 9000 TIP 436326 16176 6047581 2024-02-23 20:06:52.374 2024-02-23 20:06:52.374 1000 FEE 436326 17891 6047582 2024-02-23 20:06:52.374 2024-02-23 20:06:52.374 9000 TIP 436326 11678 6047591 2024-02-23 20:06:53.416 2024-02-23 20:06:53.416 1000 FEE 436326 620 6047592 2024-02-23 20:06:53.416 2024-02-23 20:06:53.416 9000 TIP 436326 20554 6047595 2024-02-23 20:06:57.607 2024-02-23 20:06:57.607 1000 FEE 436326 1620 6047596 2024-02-23 20:06:57.607 2024-02-23 20:06:57.607 9000 TIP 436326 21522 6047597 2024-02-23 20:06:57.682 2024-02-23 20:06:57.682 1000 FEE 436326 11866 6047598 2024-02-23 20:06:57.682 2024-02-23 20:06:57.682 9000 TIP 436326 21116 6047656 2024-02-23 20:07:30.025 2024-02-23 20:07:30.025 100 FEE 436508 14267 6047657 2024-02-23 20:07:30.025 2024-02-23 20:07:30.025 900 TIP 436508 16542 6047664 2024-02-23 20:07:53.521 2024-02-23 20:07:53.521 1000 FEE 436609 14795 6047674 2024-02-23 20:08:13.999 2024-02-23 20:08:13.999 90000 FEE 435327 2328 6047675 2024-02-23 20:08:13.999 2024-02-23 20:08:13.999 810000 TIP 435327 20924 6047686 2024-02-23 20:08:58.029 2024-02-23 20:08:58.029 1000 FEE 436610 21334 6047694 2024-02-23 20:09:15.749 2024-02-23 20:09:15.749 27000 FEE 436593 16485 6047695 2024-02-23 20:09:15.749 2024-02-23 20:09:15.749 243000 TIP 436593 18174 6047696 2024-02-23 20:09:22.905 2024-02-23 20:09:22.905 10000 DONT_LIKE_THIS 436499 21057 6047698 2024-02-23 20:10:28.161 2024-02-23 20:10:28.161 21000 FEE 436611 12965 6047705 2024-02-23 20:14:46.01 2024-02-23 20:14:46.01 2100 FEE 436556 726 6047706 2024-02-23 20:14:46.01 2024-02-23 20:14:46.01 18900 TIP 436556 6136 6047710 2024-02-23 20:16:47.278 2024-02-23 20:16:47.278 2100 FEE 436556 21136 6047711 2024-02-23 20:16:47.278 2024-02-23 20:16:47.278 18900 TIP 436556 1307 6047724 2024-02-23 20:17:32.442 2024-02-23 20:17:32.442 8300 FEE 436560 19663 6047725 2024-02-23 20:17:32.442 2024-02-23 20:17:32.442 74700 TIP 436560 698 6047736 2024-02-23 20:17:33.679 2024-02-23 20:17:33.679 8300 FEE 436560 9078 6047737 2024-02-23 20:17:33.679 2024-02-23 20:17:33.679 74700 TIP 436560 19689 6047747 2024-02-23 20:17:49.686 2024-02-23 20:17:49.686 2100 FEE 436508 18626 6047748 2024-02-23 20:17:49.686 2024-02-23 20:17:49.686 18900 TIP 436508 997 6047785 2024-02-23 20:19:41.744 2024-02-23 20:19:41.744 2100 FEE 436566 721 6047786 2024-02-23 20:19:41.744 2024-02-23 20:19:41.744 18900 TIP 436566 7916 6047791 2024-02-23 20:20:12.823 2024-02-23 20:20:12.823 1000 FEE 436617 18225 6047802 2024-02-23 20:22:17.361 2024-02-23 20:22:17.361 1000 FEE 436620 9421 6047820 2024-02-23 20:26:51.816 2024-02-23 20:26:51.816 1000 FEE 436624 20594 6047826 2024-02-23 20:28:07.85 2024-02-23 20:28:07.85 10000 FEE 436627 17291 6047837 2024-02-23 20:29:14.428 2024-02-23 20:29:14.428 900 FEE 436529 17727 6047838 2024-02-23 20:29:14.428 2024-02-23 20:29:14.428 8100 TIP 436529 6149 6047846 2024-02-23 20:30:21.549 2024-02-23 20:30:21.549 1000 FEE 436628 3439 6047847 2024-02-23 20:30:21.549 2024-02-23 20:30:21.549 9000 TIP 436628 8664 6047878 2024-02-23 20:30:26.496 2024-02-23 20:30:26.496 1000 FEE 436628 15690 6047879 2024-02-23 20:30:26.496 2024-02-23 20:30:26.496 9000 TIP 436628 11866 6047880 2024-02-23 20:30:26.952 2024-02-23 20:30:26.952 1000 FEE 436628 20187 6047881 2024-02-23 20:30:26.952 2024-02-23 20:30:26.952 9000 TIP 436628 14465 6047890 2024-02-23 20:31:23.865 2024-02-23 20:31:23.865 2100 FEE 435882 16282 6047891 2024-02-23 20:31:23.865 2024-02-23 20:31:23.865 18900 TIP 435882 20987 6047897 2024-02-23 20:32:30.184 2024-02-23 20:32:30.184 1000 FEE 436581 19126 6047898 2024-02-23 20:32:30.184 2024-02-23 20:32:30.184 9000 TIP 436581 16355 6047905 2024-02-23 20:33:53.446 2024-02-23 20:33:53.446 1000 FEE 435912 20452 6047906 2024-02-23 20:33:53.446 2024-02-23 20:33:53.446 9000 TIP 435912 21139 6047923 2024-02-23 20:35:45.792 2024-02-23 20:35:45.792 2100 FEE 436560 11996 6047924 2024-02-23 20:35:45.792 2024-02-23 20:35:45.792 18900 TIP 436560 5759 6047940 2024-02-23 20:36:11.102 2024-02-23 20:36:11.102 8300 FEE 436499 16788 6047941 2024-02-23 20:36:11.102 2024-02-23 20:36:11.102 74700 TIP 436499 21194 6047956 2024-02-23 20:36:12.607 2024-02-23 20:36:12.607 16600 FEE 436499 18476 6047957 2024-02-23 20:36:12.607 2024-02-23 20:36:12.607 149400 TIP 436499 7772 6047962 2024-02-23 20:36:31.569 2024-02-23 20:36:31.569 2100 FEE 436395 19484 6047963 2024-02-23 20:36:31.569 2024-02-23 20:36:31.569 18900 TIP 436395 1261 6047966 2024-02-23 20:37:21.666 2024-02-23 20:37:21.666 1000 FEE 435869 766 6047967 2024-02-23 20:37:21.666 2024-02-23 20:37:21.666 9000 TIP 435869 11956 6047970 2024-02-23 20:37:51.75 2024-02-23 20:37:51.75 2100 FEE 436560 9332 6047971 2024-02-23 20:37:51.75 2024-02-23 20:37:51.75 18900 TIP 436560 21585 6047990 2024-02-23 20:40:07.433 2024-02-23 20:40:07.433 1000 FEE 436560 17331 6047991 2024-02-23 20:40:07.433 2024-02-23 20:40:07.433 9000 TIP 436560 11417 6047994 2024-02-23 20:40:07.858 2024-02-23 20:40:07.858 1000 FEE 436560 19087 6047995 2024-02-23 20:40:07.858 2024-02-23 20:40:07.858 9000 TIP 436560 15226 6047996 2024-02-23 20:40:10.135 2024-02-23 20:40:10.135 1000 FEE 436566 803 6047997 2024-02-23 20:40:10.135 2024-02-23 20:40:10.135 9000 TIP 436566 19967 6047998 2024-02-23 20:40:13.032 2024-02-23 20:40:13.032 1000 POLL 436323 20751 6048029 2024-02-23 20:41:13.974 2024-02-23 20:41:13.974 1000 FEE 436637 1717 6048032 2024-02-23 20:42:32.187 2024-02-23 20:42:32.187 2100 FEE 436323 17741 6048033 2024-02-23 20:42:32.187 2024-02-23 20:42:32.187 18900 TIP 436323 18314 6048066 2024-02-23 20:44:20.584 2024-02-23 20:44:20.584 900 FEE 436568 2285 6048067 2024-02-23 20:44:20.584 2024-02-23 20:44:20.584 8100 TIP 436568 10398 6048073 2024-02-23 20:45:27.127 2024-02-23 20:45:27.127 1000 FEE 436566 19886 6048074 2024-02-23 20:45:27.127 2024-02-23 20:45:27.127 9000 TIP 436566 2961 6048097 2024-02-23 20:49:08.447 2024-02-23 20:49:08.447 100 FEE 436619 16351 6048098 2024-02-23 20:49:08.447 2024-02-23 20:49:08.447 900 TIP 436619 18359 6048126 2024-02-23 20:52:48.257 2024-02-23 20:52:48.257 100 FEE 436642 2151 6048127 2024-02-23 20:52:48.257 2024-02-23 20:52:48.257 900 TIP 436642 20596 6048131 2024-02-23 20:53:27.77 2024-02-23 20:53:27.77 200 FEE 436621 18068 6048132 2024-02-23 20:53:27.77 2024-02-23 20:53:27.77 1800 TIP 436621 11220 6048141 2024-02-23 20:54:35.959 2024-02-23 20:54:35.959 800 FEE 436508 14688 6048142 2024-02-23 20:54:35.959 2024-02-23 20:54:35.959 7200 TIP 436508 18291 6048176 2024-02-23 21:01:01.938 2024-02-23 21:01:01.938 8300 FEE 436508 19759 6048177 2024-02-23 21:01:01.938 2024-02-23 21:01:01.938 74700 TIP 436508 10944 6048180 2024-02-23 21:01:02.295 2024-02-23 21:01:02.295 8300 FEE 436508 4076 6048181 2024-02-23 21:01:02.295 2024-02-23 21:01:02.295 74700 TIP 436508 1094 6048302 2024-02-23 21:15:19.399 2024-02-23 21:15:19.399 4000 FEE 436654 18017 6048303 2024-02-23 21:15:19.399 2024-02-23 21:15:19.399 36000 TIP 436654 4292 6047540 2024-02-23 20:06:49.309 2024-02-23 20:06:49.309 9000 TIP 436326 770 6047551 2024-02-23 20:06:50.273 2024-02-23 20:06:50.273 1000 FEE 436326 6160 6047552 2024-02-23 20:06:50.273 2024-02-23 20:06:50.273 9000 TIP 436326 20539 6047559 2024-02-23 20:06:50.681 2024-02-23 20:06:50.681 1000 FEE 436326 993 6047560 2024-02-23 20:06:50.681 2024-02-23 20:06:50.681 9000 TIP 436326 12356 6047571 2024-02-23 20:06:51.565 2024-02-23 20:06:51.565 1000 FEE 436326 694 6047572 2024-02-23 20:06:51.565 2024-02-23 20:06:51.565 9000 TIP 436326 716 6047577 2024-02-23 20:06:52.086 2024-02-23 20:06:52.086 1000 FEE 436326 20157 6047578 2024-02-23 20:06:52.086 2024-02-23 20:06:52.086 9000 TIP 436326 1983 6047603 2024-02-23 20:06:58.18 2024-02-23 20:06:58.18 1000 FEE 436326 18265 6047604 2024-02-23 20:06:58.18 2024-02-23 20:06:58.18 9000 TIP 436326 1326 6047637 2024-02-23 20:07:00.886 2024-02-23 20:07:00.886 1000 FEE 436326 8400 6047638 2024-02-23 20:07:00.886 2024-02-23 20:07:00.886 9000 TIP 436326 3392 6047641 2024-02-23 20:07:01.653 2024-02-23 20:07:01.653 1000 FEE 436326 7903 6047642 2024-02-23 20:07:01.653 2024-02-23 20:07:01.653 9000 TIP 436326 21148 6047648 2024-02-23 20:07:03.67 2024-02-23 20:07:03.67 1000 FEE 436326 20163 6047649 2024-02-23 20:07:03.67 2024-02-23 20:07:03.67 9000 TIP 436326 14791 6047662 2024-02-23 20:07:51.006 2024-02-23 20:07:51.006 90000 FEE 435231 11192 6047663 2024-02-23 20:07:51.006 2024-02-23 20:07:51.006 810000 TIP 435231 5171 6047672 2024-02-23 20:08:11.175 2024-02-23 20:08:11.175 9000 FEE 436553 10063 6047673 2024-02-23 20:08:11.175 2024-02-23 20:08:11.175 81000 TIP 436553 19773 6047676 2024-02-23 20:08:27.346 2024-02-23 20:08:27.346 9000 FEE 435639 13763 6047677 2024-02-23 20:08:27.346 2024-02-23 20:08:27.346 81000 TIP 435639 12097 6047692 2024-02-23 20:09:15.346 2024-02-23 20:09:15.346 3000 FEE 436593 11829 6047693 2024-02-23 20:09:15.346 2024-02-23 20:09:15.346 27000 TIP 436593 20220 6047719 2024-02-23 20:17:30.474 2024-02-23 20:17:30.474 100000 DONT_LIKE_THIS 436459 1136 6047740 2024-02-23 20:17:35.948 2024-02-23 20:17:35.948 10000 FEE 436613 803 6047741 2024-02-23 20:17:49.049 2024-02-23 20:17:49.049 2100 FEE 436508 9171 6047742 2024-02-23 20:17:49.049 2024-02-23 20:17:49.049 18900 TIP 436508 7673 6047743 2024-02-23 20:17:49.301 2024-02-23 20:17:49.301 2100 FEE 436508 16250 6047744 2024-02-23 20:17:49.301 2024-02-23 20:17:49.301 18900 TIP 436508 14168 6047745 2024-02-23 20:17:49.455 2024-02-23 20:17:49.455 2100 FEE 436508 11458 6047746 2024-02-23 20:17:49.455 2024-02-23 20:17:49.455 18900 TIP 436508 20218 6047760 2024-02-23 20:18:03.115 2024-02-23 20:18:03.115 2100 FEE 436603 9169 6047761 2024-02-23 20:18:03.115 2024-02-23 20:18:03.115 18900 TIP 436603 7587 6047787 2024-02-23 20:19:47.236 2024-02-23 20:19:47.236 1000 FEE 436434 3686 6047788 2024-02-23 20:19:47.236 2024-02-23 20:19:47.236 9000 TIP 436434 21603 6047794 2024-02-23 20:21:17.721 2024-02-23 20:21:17.721 500 FEE 436536 1245 6047795 2024-02-23 20:21:17.721 2024-02-23 20:21:17.721 4500 TIP 436536 13927 6047813 2024-02-23 20:25:16.183 2024-02-23 20:25:16.183 3300 FEE 436218 20370 6047814 2024-02-23 20:25:16.183 2024-02-23 20:25:16.183 29700 TIP 436218 10273 6047824 2024-02-23 20:27:56.478 2024-02-23 20:27:56.478 0 FEE 436615 5495 6047844 2024-02-23 20:30:21.377 2024-02-23 20:30:21.377 1000 FEE 436628 8498 6047845 2024-02-23 20:30:21.377 2024-02-23 20:30:21.377 9000 TIP 436628 21503 6047866 2024-02-23 20:30:25.276 2024-02-23 20:30:25.276 1000 FEE 436628 8173 6047867 2024-02-23 20:30:25.276 2024-02-23 20:30:25.276 9000 TIP 436628 18269 6047868 2024-02-23 20:30:25.622 2024-02-23 20:30:25.622 1000 FEE 436628 780 6047869 2024-02-23 20:30:25.622 2024-02-23 20:30:25.622 9000 TIP 436628 654 6047882 2024-02-23 20:30:27.197 2024-02-23 20:30:27.197 1000 FEE 436628 8074 6047883 2024-02-23 20:30:27.197 2024-02-23 20:30:27.197 9000 TIP 436628 9242 6047888 2024-02-23 20:31:21.427 2024-02-23 20:31:21.427 2100 FEE 436466 21357 6047889 2024-02-23 20:31:21.427 2024-02-23 20:31:21.427 18900 TIP 436466 9350 6047914 2024-02-23 20:35:25.436 2024-02-23 20:35:25.436 1000 FEE 436633 5175 6047919 2024-02-23 20:35:36.974 2024-02-23 20:35:36.974 2100 FEE 436503 2741 6047920 2024-02-23 20:35:36.974 2024-02-23 20:35:36.974 18900 TIP 436503 20299 6047929 2024-02-23 20:35:54.917 2024-02-23 20:35:54.917 2100 FEE 436499 21332 6047930 2024-02-23 20:35:54.917 2024-02-23 20:35:54.917 18900 TIP 436499 20327 6047954 2024-02-23 20:36:12.025 2024-02-23 20:36:12.025 8300 FEE 436499 9982 6047955 2024-02-23 20:36:12.025 2024-02-23 20:36:12.025 74700 TIP 436499 14258 6047976 2024-02-23 20:38:24.399 2024-02-23 20:38:24.399 1100 FEE 436622 13216 6047583 2024-02-23 20:06:52.493 2024-02-23 20:06:52.493 1000 FEE 436326 18529 6047584 2024-02-23 20:06:52.493 2024-02-23 20:06:52.493 9000 TIP 436326 19735 6047585 2024-02-23 20:06:52.643 2024-02-23 20:06:52.643 1000 FEE 436326 19633 6047586 2024-02-23 20:06:52.643 2024-02-23 20:06:52.643 9000 TIP 436326 18005 6047605 2024-02-23 20:06:58.284 2024-02-23 20:06:58.284 1000 FEE 436326 7510 6047606 2024-02-23 20:06:58.284 2024-02-23 20:06:58.284 9000 TIP 436326 803 6047611 2024-02-23 20:06:58.726 2024-02-23 20:06:58.726 1000 FEE 436326 680 6047612 2024-02-23 20:06:58.726 2024-02-23 20:06:58.726 9000 TIP 436326 1490 6047615 2024-02-23 20:06:59.034 2024-02-23 20:06:59.034 1000 FEE 436326 20972 6047616 2024-02-23 20:06:59.034 2024-02-23 20:06:59.034 9000 TIP 436326 19329 6047621 2024-02-23 20:06:59.486 2024-02-23 20:06:59.486 1000 FEE 436326 891 6047622 2024-02-23 20:06:59.486 2024-02-23 20:06:59.486 9000 TIP 436326 11967 6047631 2024-02-23 20:07:00.412 2024-02-23 20:07:00.412 1000 FEE 436326 1740 6047632 2024-02-23 20:07:00.412 2024-02-23 20:07:00.412 9000 TIP 436326 848 6047639 2024-02-23 20:07:01.027 2024-02-23 20:07:01.027 1000 FEE 436326 15180 6047640 2024-02-23 20:07:01.027 2024-02-23 20:07:01.027 9000 TIP 436326 17316 6047643 2024-02-23 20:07:02.129 2024-02-23 20:07:02.129 1000 FEE 436326 5746 6047644 2024-02-23 20:07:02.129 2024-02-23 20:07:02.129 9000 TIP 436326 18076 6047669 2024-02-23 20:07:58.963 2024-02-23 20:07:58.963 900 FEE 436553 12220 6047670 2024-02-23 20:07:58.963 2024-02-23 20:07:58.963 8100 TIP 436553 5171 6047684 2024-02-23 20:08:52.187 2024-02-23 20:08:52.187 90000 FEE 435746 17162 6047685 2024-02-23 20:08:52.187 2024-02-23 20:08:52.187 810000 TIP 435746 7673 6047690 2024-02-23 20:09:11.381 2024-02-23 20:09:11.381 3000 FEE 436605 20036 6047691 2024-02-23 20:09:11.381 2024-02-23 20:09:11.381 27000 TIP 436605 20254 6047769 2024-02-23 20:18:27.838 2024-02-23 20:18:27.838 1000 FEE 436615 4079 6047773 2024-02-23 20:19:36.832 2024-02-23 20:19:36.832 1000 FEE 436323 768 6047774 2024-02-23 20:19:36.832 2024-02-23 20:19:36.832 9000 TIP 436323 876 6047779 2024-02-23 20:19:38.941 2024-02-23 20:19:38.941 2100 FEE 436394 20018 6047780 2024-02-23 20:19:38.941 2024-02-23 20:19:38.941 18900 TIP 436394 15273 6047783 2024-02-23 20:19:39.328 2024-02-23 20:19:39.328 2100 FEE 436394 16301 6047784 2024-02-23 20:19:39.328 2024-02-23 20:19:39.328 18900 TIP 436394 4238 6047805 2024-02-23 20:22:47.73 2024-02-23 20:22:47.73 1000 FEE 436621 1272 6047809 2024-02-23 20:23:19.822 2024-02-23 20:23:19.822 1000 FEE 436622 11866 6047831 2024-02-23 20:29:09.786 2024-02-23 20:29:09.786 100 FEE 436561 15925 6047832 2024-02-23 20:29:09.786 2024-02-23 20:29:09.786 900 TIP 436561 658 6047850 2024-02-23 20:30:22.338 2024-02-23 20:30:22.338 1000 FEE 436628 18310 6047851 2024-02-23 20:30:22.338 2024-02-23 20:30:22.338 9000 TIP 436628 16649 6047854 2024-02-23 20:30:23.226 2024-02-23 20:30:23.226 1000 FEE 436628 7818 6047855 2024-02-23 20:30:23.226 2024-02-23 20:30:23.226 9000 TIP 436628 4166 6047872 2024-02-23 20:30:25.961 2024-02-23 20:30:25.961 1000 FEE 436628 11956 6047873 2024-02-23 20:30:25.961 2024-02-23 20:30:25.961 9000 TIP 436628 9758 6047907 2024-02-23 20:33:54.319 2024-02-23 20:33:54.319 1000 FEE 435912 16536 6047908 2024-02-23 20:33:54.319 2024-02-23 20:33:54.319 9000 TIP 435912 4973 6047931 2024-02-23 20:35:55.459 2024-02-23 20:35:55.459 2100 FEE 436523 10359 6047932 2024-02-23 20:35:55.459 2024-02-23 20:35:55.459 18900 TIP 436523 19322 6047960 2024-02-23 20:36:23.414 2024-02-23 20:36:23.414 1000 FEE 436186 661 6047961 2024-02-23 20:36:23.414 2024-02-23 20:36:23.414 9000 TIP 436186 616 6047992 2024-02-23 20:40:07.725 2024-02-23 20:40:07.725 1000 FEE 436560 17184 6047993 2024-02-23 20:40:07.725 2024-02-23 20:40:07.725 9000 TIP 436560 20066 6048043 2024-02-23 20:43:41.433 2024-02-23 20:43:41.433 1000 FEE 436559 16665 6048044 2024-02-23 20:43:41.433 2024-02-23 20:43:41.433 9000 TIP 436559 1120 6048076 2024-02-23 20:46:10.986 2024-02-23 20:46:10.986 1000 FEE 436639 14370 6048080 2024-02-23 20:46:40.739 2024-02-23 20:46:40.739 1100 FEE 436523 19690 6048081 2024-02-23 20:46:40.739 2024-02-23 20:46:40.739 9900 TIP 436523 722 6048128 2024-02-23 20:52:48.472 2024-02-23 20:52:48.472 100 FEE 436642 1890 6048129 2024-02-23 20:52:48.472 2024-02-23 20:52:48.472 900 TIP 436642 3461 6048134 2024-02-23 20:53:33.471 2024-02-23 20:53:33.471 100000 FEE 436647 814 6048195 2024-02-23 21:01:16.583 2024-02-23 21:01:16.583 1000 FEE 436632 16834 6048196 2024-02-23 21:01:16.583 2024-02-23 21:01:16.583 9000 TIP 436632 19263 6048207 2024-02-23 21:01:53.139 2024-02-23 21:01:53.139 2100 FEE 436558 15336 6048208 2024-02-23 21:01:53.139 2024-02-23 21:01:53.139 18900 TIP 436558 13133 6048217 2024-02-23 21:02:01.671 2024-02-23 21:02:01.671 2100 FEE 436521 20110 6048218 2024-02-23 21:02:01.671 2024-02-23 21:02:01.671 18900 TIP 436521 21201 6048296 2024-02-23 21:13:15.255 2024-02-23 21:13:15.255 2100 FEE 436549 20825 6048297 2024-02-23 21:13:15.255 2024-02-23 21:13:15.255 18900 TIP 436549 1429 6048298 2024-02-23 21:13:18.762 2024-02-23 21:13:18.762 7100 FEE 436549 20754 6048299 2024-02-23 21:13:18.762 2024-02-23 21:13:18.762 63900 TIP 436549 20555 6048304 2024-02-23 21:15:26.578 2024-02-23 21:15:26.578 4000 FEE 436640 1003 6048305 2024-02-23 21:15:26.578 2024-02-23 21:15:26.578 36000 TIP 436640 2963 6048317 2024-02-23 21:17:42.206 2024-02-23 21:17:42.206 27000 FEE 436658 18904 6048318 2024-02-23 21:17:42.206 2024-02-23 21:17:42.206 243000 TIP 436658 6515 6048320 2024-02-23 21:18:45.76 2024-02-23 21:18:45.76 2100 FEE 436659 19581 6048321 2024-02-23 21:18:45.76 2024-02-23 21:18:45.76 18900 TIP 436659 5825 6048326 2024-02-23 21:20:48.283 2024-02-23 21:20:48.283 1000 FEE 436660 6419 6048347 2024-02-23 21:27:19.547 2024-02-23 21:27:19.547 1000 FEE 436666 6653 6048361 2024-02-23 21:30:48.227 2024-02-23 21:30:48.227 1000 FEE 436669 20205 6048362 2024-02-23 21:30:48.227 2024-02-23 21:30:48.227 9000 TIP 436669 21194 6048367 2024-02-23 21:30:51.413 2024-02-23 21:30:51.413 1000 FEE 436669 1718 6048368 2024-02-23 21:30:51.413 2024-02-23 21:30:51.413 9000 TIP 436669 10591 6048379 2024-02-23 21:30:52.524 2024-02-23 21:30:52.524 1000 FEE 436669 21314 6048380 2024-02-23 21:30:52.524 2024-02-23 21:30:52.524 9000 TIP 436669 696 6048389 2024-02-23 21:30:53.504 2024-02-23 21:30:53.504 1000 FEE 436669 20225 6047687 2024-02-23 20:09:01.749 2024-02-23 20:09:01.749 1000 STREAM 141924 21048 6047980 2024-02-23 20:39:02.015 2024-02-23 20:39:02.015 1000 STREAM 141924 9351 6113445 2024-02-29 14:56:31.104 2024-02-29 14:56:31.104 5700 FEE 443617 19018 6113446 2024-02-29 14:56:31.104 2024-02-29 14:56:31.104 51300 TIP 443617 2942 6113455 2024-02-29 14:56:54.007 2024-02-29 14:56:54.007 2100 FEE 443396 16970 6113456 2024-02-29 14:56:54.007 2024-02-29 14:56:54.007 18900 TIP 443396 11820 6113474 2024-02-29 14:57:09.072 2024-02-29 14:57:09.072 7700 FEE 443617 17041 6113475 2024-02-29 14:57:09.072 2024-02-29 14:57:09.072 69300 TIP 443617 15806 6113480 2024-02-29 14:57:10.156 2024-02-29 14:57:10.156 7700 FEE 443617 17162 6113481 2024-02-29 14:57:10.156 2024-02-29 14:57:10.156 69300 TIP 443617 21591 6047734 2024-02-23 20:17:33.448 2024-02-23 20:17:33.448 8300 FEE 436560 16124 6047735 2024-02-23 20:17:33.448 2024-02-23 20:17:33.448 74700 TIP 436560 6137 6047738 2024-02-23 20:17:33.76 2024-02-23 20:17:33.76 8300 FEE 436560 13878 6047739 2024-02-23 20:17:33.76 2024-02-23 20:17:33.76 74700 TIP 436560 12808 6047753 2024-02-23 20:17:50.272 2024-02-23 20:17:50.272 2100 FEE 436508 2652 6047754 2024-02-23 20:17:50.272 2024-02-23 20:17:50.272 18900 TIP 436508 14381 6047759 2024-02-23 20:17:57.743 2024-02-23 20:17:57.743 1000 FEE 436614 2502 6047765 2024-02-23 20:18:27.55 2024-02-23 20:18:27.55 2100 FEE 436553 20840 6047766 2024-02-23 20:18:27.55 2024-02-23 20:18:27.55 18900 TIP 436553 1003 6047775 2024-02-23 20:19:38.485 2024-02-23 20:19:38.485 2100 FEE 436394 21493 6047776 2024-02-23 20:19:38.485 2024-02-23 20:19:38.485 18900 TIP 436394 21140 6047797 2024-02-23 20:21:39.478 2024-02-23 20:21:39.478 2100 FEE 436556 805 6047798 2024-02-23 20:21:39.478 2024-02-23 20:21:39.478 18900 TIP 436556 18690 6047807 2024-02-23 20:23:18.715 2024-02-23 20:23:18.715 1000 FEE 436566 21588 6047808 2024-02-23 20:23:18.715 2024-02-23 20:23:18.715 9000 TIP 436566 11298 6047835 2024-02-23 20:29:14.139 2024-02-23 20:29:14.139 100 FEE 436529 20555 6047836 2024-02-23 20:29:14.139 2024-02-23 20:29:14.139 900 TIP 436529 656 6047860 2024-02-23 20:30:24.376 2024-02-23 20:30:24.376 2000 FEE 436628 1320 6047861 2024-02-23 20:30:24.376 2024-02-23 20:30:24.376 18000 TIP 436628 617 6047862 2024-02-23 20:30:24.907 2024-02-23 20:30:24.907 1000 FEE 436628 2039 6047863 2024-02-23 20:30:24.907 2024-02-23 20:30:24.907 9000 TIP 436628 13544 6047864 2024-02-23 20:30:25.108 2024-02-23 20:30:25.108 1000 FEE 436628 19842 6047865 2024-02-23 20:30:25.108 2024-02-23 20:30:25.108 9000 TIP 436628 1047 6047885 2024-02-23 20:31:06.311 2024-02-23 20:31:06.311 1000 FEE 436631 20979 6047903 2024-02-23 20:33:51.324 2024-02-23 20:33:51.324 1000 FEE 435912 14169 6047904 2024-02-23 20:33:51.324 2024-02-23 20:33:51.324 9000 TIP 435912 15075 6047915 2024-02-23 20:35:35.425 2024-02-23 20:35:35.425 2100 FEE 436481 16177 6047916 2024-02-23 20:35:35.425 2024-02-23 20:35:35.425 18900 TIP 436481 1454 6047952 2024-02-23 20:36:11.957 2024-02-23 20:36:11.957 8300 FEE 436499 19500 6047953 2024-02-23 20:36:11.957 2024-02-23 20:36:11.957 74700 TIP 436499 8535 6047968 2024-02-23 20:37:51.519 2024-02-23 20:37:51.519 2100 FEE 436560 9356 6047969 2024-02-23 20:37:51.519 2024-02-23 20:37:51.519 18900 TIP 436560 16747 6047973 2024-02-23 20:38:10.774 2024-02-23 20:38:10.774 1000 FEE 436635 9 6048016 2024-02-23 20:40:51.943 2024-02-23 20:40:51.943 2100 FEE 436556 1092 6048017 2024-02-23 20:40:51.943 2024-02-23 20:40:51.943 18900 TIP 436556 20687 6048025 2024-02-23 20:41:07.713 2024-02-23 20:41:07.713 2100 FEE 436493 5759 6048026 2024-02-23 20:41:07.713 2024-02-23 20:41:07.713 18900 TIP 436493 7903 6048037 2024-02-23 20:43:34.541 2024-02-23 20:43:34.541 1000 FEE 436636 21523 6048038 2024-02-23 20:43:34.541 2024-02-23 20:43:34.541 9000 TIP 436636 12356 6048056 2024-02-23 20:44:16.379 2024-02-23 20:44:16.379 100 FEE 436622 5646 6048057 2024-02-23 20:44:16.379 2024-02-23 20:44:16.379 900 TIP 436622 21194 6048086 2024-02-23 20:48:21.663 2024-02-23 20:48:21.663 1100 FEE 436639 5791 6048087 2024-02-23 20:48:21.663 2024-02-23 20:48:21.663 9900 TIP 436639 20904 6048118 2024-02-23 20:52:46.614 2024-02-23 20:52:46.614 100 FEE 436642 20912 6048119 2024-02-23 20:52:46.614 2024-02-23 20:52:46.614 900 TIP 436642 16309 6048137 2024-02-23 20:54:29.346 2024-02-23 20:54:29.346 1200 FEE 436566 18714 6048138 2024-02-23 20:54:29.346 2024-02-23 20:54:29.346 10800 TIP 436566 16149 6048147 2024-02-23 20:54:37.499 2024-02-23 20:54:37.499 800 FEE 436508 21603 6048148 2024-02-23 20:54:37.499 2024-02-23 20:54:37.499 7200 TIP 436508 19033 6048151 2024-02-23 20:54:39.392 2024-02-23 20:54:39.392 800 FEE 436508 9494 6048152 2024-02-23 20:54:39.392 2024-02-23 20:54:39.392 7200 TIP 436508 9109 6048156 2024-02-23 20:56:09.835 2024-02-23 20:56:09.835 1000 FEE 436635 20301 6048157 2024-02-23 20:56:09.835 2024-02-23 20:56:09.835 9000 TIP 436635 17693 6048161 2024-02-23 20:57:46.818 2024-02-23 20:57:46.818 7100 FEE 436556 19281 6048162 2024-02-23 20:57:46.818 2024-02-23 20:57:46.818 63900 TIP 436556 20306 6048167 2024-02-23 20:59:06.284 2024-02-23 20:59:06.284 1000 FEE 436650 20980 6048189 2024-02-23 21:01:14.092 2024-02-23 21:01:14.092 2100 FEE 436641 14247 6048190 2024-02-23 21:01:14.092 2024-02-23 21:01:14.092 18900 TIP 436641 775 6048191 2024-02-23 21:01:15.022 2024-02-23 21:01:15.022 2100 FEE 436638 6499 6048192 2024-02-23 21:01:15.022 2024-02-23 21:01:15.022 18900 TIP 436638 18557 6048209 2024-02-23 21:01:57.472 2024-02-23 21:01:57.472 2100 FEE 436539 716 6048210 2024-02-23 21:01:57.472 2024-02-23 21:01:57.472 18900 TIP 436539 2256 6048230 2024-02-23 21:04:14.515 2024-02-23 21:04:14.515 4000 FEE 436566 12261 6048231 2024-02-23 21:04:14.515 2024-02-23 21:04:14.515 36000 TIP 436566 15526 6048252 2024-02-23 21:06:18.795 2024-02-23 21:06:18.795 1000 FEE 436653 616 6048253 2024-02-23 21:06:44.635 2024-02-23 21:06:44.635 2100 FEE 436523 2961 6048254 2024-02-23 21:06:44.635 2024-02-23 21:06:44.635 18900 TIP 436523 21338 6048257 2024-02-23 21:07:46.577 2024-02-23 21:07:46.577 10000 FEE 436654 5449 6048270 2024-02-23 21:08:38.892 2024-02-23 21:08:38.892 1000 FEE 436655 20006 6048271 2024-02-23 21:08:49.022 2024-02-23 21:08:49.022 100000 DONT_LIKE_THIS 436651 20594 6048287 2024-02-23 21:11:22.525 2024-02-23 21:11:22.525 10000 FEE 436459 5519 6048288 2024-02-23 21:11:22.525 2024-02-23 21:11:22.525 90000 TIP 436459 20187 6048323 2024-02-23 21:19:39.639 2024-02-23 21:19:39.639 4000 FEE 436659 11829 6048324 2024-02-23 21:19:39.639 2024-02-23 21:19:39.639 36000 TIP 436659 1273 6048348 2024-02-23 21:27:22.403 2024-02-23 21:27:22.403 1000 FEE 436667 19546 6048352 2024-02-23 21:28:47.235 2024-02-23 21:28:47.235 1000 FEE 436668 11898 6048358 2024-02-23 21:30:07.297 2024-02-23 21:30:07.297 1000 FEE 436459 11885 6048359 2024-02-23 21:30:07.297 2024-02-23 21:30:07.297 9000 TIP 436459 17316 6048401 2024-02-23 21:30:54.681 2024-02-23 21:30:54.681 1000 FEE 436669 5171 6048402 2024-02-23 21:30:54.681 2024-02-23 21:30:54.681 9000 TIP 436669 19031 6048420 2024-02-23 21:31:07.586 2024-02-23 21:31:07.586 1000 FEE 436669 649 6048421 2024-02-23 21:31:07.586 2024-02-23 21:31:07.586 9000 TIP 436669 8176 6048422 2024-02-23 21:31:09.475 2024-02-23 21:31:09.475 1000 FEE 436669 8245 6048423 2024-02-23 21:31:09.475 2024-02-23 21:31:09.475 9000 TIP 436669 2039 6048439 2024-02-23 21:32:22.238 2024-02-23 21:32:22.238 1000 FEE 436671 17091 6048449 2024-02-23 21:32:52.61 2024-02-23 21:32:52.61 1000 FEE 436669 669 6048450 2024-02-23 21:32:52.61 2024-02-23 21:32:52.61 9000 TIP 436669 16638 6048456 2024-02-23 21:33:04.495 2024-02-23 21:33:04.495 90000 FEE 436669 21172 6048457 2024-02-23 21:33:04.495 2024-02-23 21:33:04.495 810000 TIP 436669 20185 6048471 2024-02-23 21:36:51.011 2024-02-23 21:36:51.011 400 FEE 436619 654 6048472 2024-02-23 21:36:51.011 2024-02-23 21:36:51.011 3600 TIP 436619 9517 6047793 2024-02-23 20:21:02.659 2024-02-23 20:21:02.659 1000 STREAM 141924 12278 6113508 2024-02-29 14:58:14.082 2024-02-29 14:58:14.082 1000 FEE 443625 20599 6113537 2024-02-29 14:59:13.579 2024-02-29 14:59:13.579 100 FEE 443577 861 6113538 2024-02-29 14:59:13.579 2024-02-29 14:59:13.579 900 TIP 443577 1970 6113577 2024-02-29 15:00:08.684 2024-02-29 15:00:08.684 1000 FEE 443637 13399 6113578 2024-02-29 15:00:09.484 2024-02-29 15:00:09.484 100 FEE 443528 18690 6113579 2024-02-29 15:00:09.484 2024-02-29 15:00:09.484 900 TIP 443528 13517 6113582 2024-02-29 15:00:11.978 2024-02-29 15:00:11.978 2100 FEE 443617 17541 6113583 2024-02-29 15:00:11.978 2024-02-29 15:00:11.978 18900 TIP 443617 20674 6113588 2024-02-29 15:00:18.597 2024-02-29 15:00:18.597 100 FEE 443495 21342 6113589 2024-02-29 15:00:18.597 2024-02-29 15:00:18.597 900 TIP 443495 14472 6113598 2024-02-29 15:00:45.612 2024-02-29 15:00:45.612 1000 FEE 443642 917 6113627 2024-02-29 15:02:51.65 2024-02-29 15:02:51.65 0 FEE 443646 1970 6113637 2024-02-29 15:04:22.287 2024-02-29 15:04:22.287 1100 FEE 443635 20137 6113638 2024-02-29 15:04:22.287 2024-02-29 15:04:22.287 9900 TIP 443635 20892 6113645 2024-02-29 15:05:22.593 2024-02-29 15:05:22.593 2700 FEE 443645 1490 6113646 2024-02-29 15:05:22.593 2024-02-29 15:05:22.593 24300 TIP 443645 21401 6113651 2024-02-29 15:05:24.557 2024-02-29 15:05:24.557 5400 FEE 443645 10352 6113652 2024-02-29 15:05:24.557 2024-02-29 15:05:24.557 48600 TIP 443645 13398 6113678 2024-02-29 15:06:15.137 2024-02-29 15:06:15.137 21800 FEE 443611 750 6113679 2024-02-29 15:06:15.137 2024-02-29 15:06:15.137 196200 TIP 443611 21556 6113690 2024-02-29 15:06:28.911 2024-02-29 15:06:28.911 2700 FEE 443545 1534 6113691 2024-02-29 15:06:28.911 2024-02-29 15:06:28.911 24300 TIP 443545 21131 6113717 2024-02-29 15:07:45.28 2024-02-29 15:07:45.28 1000 FEE 443659 17411 6113719 2024-02-29 15:08:17.796 2024-02-29 15:08:17.796 1000 FEE 443660 20691 6113739 2024-02-29 15:09:37.086 2024-02-29 15:09:37.086 2100 FEE 443583 1286 6113740 2024-02-29 15:09:37.086 2024-02-29 15:09:37.086 18900 TIP 443583 21247 6113753 2024-02-29 15:09:52.859 2024-02-29 15:09:52.859 2100 FEE 443617 17541 6113754 2024-02-29 15:09:52.859 2024-02-29 15:09:52.859 18900 TIP 443617 19502 6113762 2024-02-29 15:10:14.099 2024-02-29 15:10:14.099 1000 FEE 443617 2390 6113763 2024-02-29 15:10:14.099 2024-02-29 15:10:14.099 9000 TIP 443617 21361 6113783 2024-02-29 15:12:35.615 2024-02-29 15:12:35.615 1000 FEE 443467 20636 6113784 2024-02-29 15:12:35.615 2024-02-29 15:12:35.615 9000 TIP 443467 16282 6113819 2024-02-29 15:14:04.745 2024-02-29 15:14:04.745 5700 FEE 443662 1833 6113820 2024-02-29 15:14:04.745 2024-02-29 15:14:04.745 51300 TIP 443662 6202 6113821 2024-02-29 15:14:19.911 2024-02-29 15:14:19.911 2100 FEE 443467 12277 6113822 2024-02-29 15:14:19.911 2024-02-29 15:14:19.911 18900 TIP 443467 2338 6113829 2024-02-29 15:15:00.131 2024-02-29 15:15:00.131 1000 FEE 443183 20436 6113830 2024-02-29 15:15:00.131 2024-02-29 15:15:00.131 9000 TIP 443183 16309 6113839 2024-02-29 15:15:50.69 2024-02-29 15:15:50.69 1000 FEE 443668 616 6113862 2024-02-29 15:16:44.465 2024-02-29 15:16:44.465 100 FEE 443247 20564 6113863 2024-02-29 15:16:44.465 2024-02-29 15:16:44.465 900 TIP 443247 16193 6113869 2024-02-29 15:17:26.408 2024-02-29 15:17:26.408 1000 FEE 443669 20624 6113881 2024-02-29 15:17:58.305 2024-02-29 15:17:58.305 1000 FEE 443487 974 6113882 2024-02-29 15:17:58.305 2024-02-29 15:17:58.305 9000 TIP 443487 19637 6113893 2024-02-29 15:20:42.697 2024-02-29 15:20:42.697 1700 FEE 443659 5036 6113894 2024-02-29 15:20:42.697 2024-02-29 15:20:42.697 15300 TIP 443659 1490 6113907 2024-02-29 15:22:02.578 2024-02-29 15:22:02.578 1000 FEE 443674 19381 6113916 2024-02-29 15:23:55.11 2024-02-29 15:23:55.11 1000 FEE 443484 763 6113917 2024-02-29 15:23:55.11 2024-02-29 15:23:55.11 9000 TIP 443484 5495 6113937 2024-02-29 15:24:11.685 2024-02-29 15:24:11.685 3400 FEE 443339 18989 6113938 2024-02-29 15:24:11.685 2024-02-29 15:24:11.685 30600 TIP 443339 21466 6113950 2024-02-29 15:24:57.602 2024-02-29 15:24:57.602 100 FEE 443663 17365 6113951 2024-02-29 15:24:57.602 2024-02-29 15:24:57.602 900 TIP 443663 21247 6113957 2024-02-29 15:25:07.542 2024-02-29 15:25:07.542 100 FEE 443651 10270 6113958 2024-02-29 15:25:07.542 2024-02-29 15:25:07.542 900 TIP 443651 12562 6113976 2024-02-29 15:26:09.352 2024-02-29 15:26:09.352 2100 FEE 442978 15703 6113977 2024-02-29 15:26:09.352 2024-02-29 15:26:09.352 18900 TIP 442978 19668 6113982 2024-02-29 15:26:13.947 2024-02-29 15:26:13.947 13800 FEE 443679 4314 6113983 2024-02-29 15:26:13.947 2024-02-29 15:26:13.947 124200 TIP 443679 2437 6114000 2024-02-29 15:26:27.352 2024-02-29 15:26:27.352 6900 FEE 443679 19018 6114001 2024-02-29 15:26:27.352 2024-02-29 15:26:27.352 62100 TIP 443679 20424 6114039 2024-02-29 15:28:48.214 2024-02-29 15:28:48.214 5700 FEE 443684 9969 6114040 2024-02-29 15:28:48.214 2024-02-29 15:28:48.214 51300 TIP 443684 19007 6114063 2024-02-29 15:29:00.882 2024-02-29 15:29:00.882 2100 FEE 443557 20751 6114064 2024-02-29 15:29:00.882 2024-02-29 15:29:00.882 18900 TIP 443557 6268 6114070 2024-02-29 15:29:04.133 2024-02-29 15:29:04.133 2100 FEE 443483 20106 6114071 2024-02-29 15:29:04.133 2024-02-29 15:29:04.133 18900 TIP 443483 6058 6114082 2024-02-29 15:29:11.096 2024-02-29 15:29:11.096 2100 FEE 443381 18231 6114083 2024-02-29 15:29:11.096 2024-02-29 15:29:11.096 18900 TIP 443381 16753 6114089 2024-02-29 15:29:26.428 2024-02-29 15:29:26.428 1000 FEE 443686 21532 6114093 2024-02-29 15:29:44.255 2024-02-29 15:29:44.255 2100 FEE 443337 18180 6114094 2024-02-29 15:29:44.255 2024-02-29 15:29:44.255 18900 TIP 443337 7847 6114105 2024-02-29 15:29:49.782 2024-02-29 15:29:49.782 2100 FEE 443314 10519 6114106 2024-02-29 15:29:49.782 2024-02-29 15:29:49.782 18900 TIP 443314 21458 6114107 2024-02-29 15:29:57.69 2024-02-29 15:29:57.69 100 FEE 443681 11789 6114108 2024-02-29 15:29:57.69 2024-02-29 15:29:57.69 900 TIP 443681 11378 6114114 2024-02-29 15:30:13.377 2024-02-29 15:30:13.377 9000 FEE 443593 16145 6114115 2024-02-29 15:30:13.377 2024-02-29 15:30:13.377 81000 TIP 443593 2652 6114140 2024-02-29 15:31:40.493 2024-02-29 15:31:40.493 10000 FEE 443593 13878 6114141 2024-02-29 15:31:40.493 2024-02-29 15:31:40.493 90000 TIP 443593 17522 6114146 2024-02-29 15:32:00.851 2024-02-29 15:32:00.851 0 FEE 443691 18828 6114183 2024-02-29 15:33:16.397 2024-02-29 15:33:16.397 2100 FEE 443333 20409 6114184 2024-02-29 15:33:16.397 2024-02-29 15:33:16.397 18900 TIP 443333 17713 6114201 2024-02-29 15:33:24.693 2024-02-29 15:33:24.693 2100 FEE 443302 20642 6114202 2024-02-29 15:33:24.693 2024-02-29 15:33:24.693 18900 TIP 443302 16229 6114250 2024-02-29 15:37:19.803 2024-02-29 15:37:19.803 10000 FEE 443704 11450 6114254 2024-02-29 15:37:42.818 2024-02-29 15:37:42.818 1000 FEE 443706 20681 6114267 2024-02-29 15:38:40.178 2024-02-29 15:38:40.178 1000 FEE 443707 1729 6114272 2024-02-29 15:39:06.323 2024-02-29 15:39:06.323 1700 FEE 443702 19458 6114273 2024-02-29 15:39:06.323 2024-02-29 15:39:06.323 15300 TIP 443702 1489 6114291 2024-02-29 15:42:09.274 2024-02-29 15:42:09.274 1000 FEE 443711 21216 6114341 2024-02-29 15:50:20.746 2024-02-29 15:50:20.746 1000 FEE 443721 8508 6114352 2024-02-29 15:51:40.696 2024-02-29 15:51:40.696 1000 FEE 443725 9920 6114355 2024-02-29 15:51:45.3 2024-02-29 15:51:45.3 0 FEE 443723 18101 6114360 2024-02-29 15:52:19.532 2024-02-29 15:52:19.532 7700 FEE 443288 21430 6114361 2024-02-29 15:52:19.532 2024-02-29 15:52:19.532 69300 TIP 443288 20837 6114362 2024-02-29 15:52:19.746 2024-02-29 15:52:19.746 7700 FEE 443288 14651 6114363 2024-02-29 15:52:19.746 2024-02-29 15:52:19.746 69300 TIP 443288 3642 6114366 2024-02-29 15:52:20.206 2024-02-29 15:52:20.206 7700 FEE 443288 13544 6114367 2024-02-29 15:52:20.206 2024-02-29 15:52:20.206 69300 TIP 443288 11590 6114376 2024-02-29 15:53:04.634 2024-02-29 15:53:04.634 0 FEE 443723 1650 6114379 2024-02-29 15:54:01.872 2024-02-29 15:54:01.872 0 FEE 443723 697 6114389 2024-02-29 15:54:54.994 2024-02-29 15:54:54.994 500 FEE 443583 1713 6114390 2024-02-29 15:54:54.994 2024-02-29 15:54:54.994 4500 TIP 443583 16594 6047910 2024-02-23 20:34:08.749 2024-02-23 20:34:08.749 1000 POLL 436323 19785 6047912 2024-02-23 20:34:45.281 2024-02-23 20:34:45.281 100000 DONT_LIKE_THIS 436632 9796 6047942 2024-02-23 20:36:11.107 2024-02-23 20:36:11.107 8300 FEE 436499 12158 6047943 2024-02-23 20:36:11.107 2024-02-23 20:36:11.107 74700 TIP 436499 19282 6047981 2024-02-23 20:39:16.624 2024-02-23 20:39:16.624 210000 FEE 436508 20990 6047982 2024-02-23 20:39:16.624 2024-02-23 20:39:16.624 1890000 TIP 436508 20646 6048106 2024-02-23 20:50:54.591 2024-02-23 20:50:54.591 3000 FEE 436633 20412 6048107 2024-02-23 20:50:54.591 2024-02-23 20:50:54.591 27000 TIP 436633 14260 6048122 2024-02-23 20:52:47.227 2024-02-23 20:52:47.227 100 FEE 436642 20924 6048123 2024-02-23 20:52:47.227 2024-02-23 20:52:47.227 900 TIP 436642 11522 6048133 2024-02-23 20:53:29.722 2024-02-23 20:53:29.722 1000 FEE 436646 7773 6048143 2024-02-23 20:54:36.4 2024-02-23 20:54:36.4 800 FEE 436508 20326 6048144 2024-02-23 20:54:36.4 2024-02-23 20:54:36.4 7200 TIP 436508 21589 6048171 2024-02-23 20:59:59.529 2024-02-23 20:59:59.529 800 FEE 436508 10013 6048172 2024-02-23 20:59:59.529 2024-02-23 20:59:59.529 7200 TIP 436508 3347 6048211 2024-02-23 21:01:57.535 2024-02-23 21:01:57.535 2100 FEE 436546 19469 6048212 2024-02-23 21:01:57.535 2024-02-23 21:01:57.535 18900 TIP 436546 15690 6048234 2024-02-23 21:04:20.565 2024-02-23 21:04:20.565 4000 FEE 436560 20182 6048235 2024-02-23 21:04:20.565 2024-02-23 21:04:20.565 36000 TIP 436560 21532 6048238 2024-02-23 21:04:23.205 2024-02-23 21:04:23.205 4000 FEE 436593 20220 6048239 2024-02-23 21:04:23.205 2024-02-23 21:04:23.205 36000 TIP 436593 5708 6048243 2024-02-23 21:04:29.562 2024-02-23 21:04:29.562 4000 FEE 436459 10270 6048244 2024-02-23 21:04:29.562 2024-02-23 21:04:29.562 36000 TIP 436459 1213 6048272 2024-02-23 21:09:00.653 2024-02-23 21:09:00.653 100 FEE 436611 8664 6048273 2024-02-23 21:09:00.653 2024-02-23 21:09:00.653 900 TIP 436611 20254 6048290 2024-02-23 21:12:50.486 2024-02-23 21:12:50.486 100000 FEE 436656 11144 6048295 2024-02-23 21:13:13.066 2024-02-23 21:13:13.066 1000 FEE 436658 3686 6048340 2024-02-23 21:24:23.322 2024-02-23 21:24:23.322 1000 FEE 436664 720 6048349 2024-02-23 21:27:52.668 2024-02-23 21:27:52.668 5000 FEE 436661 14552 6048350 2024-02-23 21:27:52.668 2024-02-23 21:27:52.668 45000 TIP 436661 21444 6048399 2024-02-23 21:30:54.485 2024-02-23 21:30:54.485 1000 FEE 436669 14657 6048400 2024-02-23 21:30:54.485 2024-02-23 21:30:54.485 9000 TIP 436669 12911 6048418 2024-02-23 21:31:05.139 2024-02-23 21:31:05.139 1000 FEE 436669 827 6048419 2024-02-23 21:31:05.139 2024-02-23 21:31:05.139 9000 TIP 436669 9150 6048424 2024-02-23 21:31:10.73 2024-02-23 21:31:10.73 1000 FEE 436669 2075 6048425 2024-02-23 21:31:10.73 2024-02-23 21:31:10.73 9000 TIP 436669 5708 6048428 2024-02-23 21:31:12.556 2024-02-23 21:31:12.556 1000 FEE 436669 18271 6048429 2024-02-23 21:31:12.556 2024-02-23 21:31:12.556 9000 TIP 436669 14774 6048430 2024-02-23 21:31:16.702 2024-02-23 21:31:16.702 1000 FEE 436669 7673 6048431 2024-02-23 21:31:16.702 2024-02-23 21:31:16.702 9000 TIP 436669 18262 6048462 2024-02-23 21:34:40.639 2024-02-23 21:34:40.639 1000 FEE 436674 20264 6048503 2024-02-23 21:45:50.652 2024-02-23 21:45:50.652 0 FEE 436681 10490 6048547 2024-02-23 21:49:35.807 2024-02-23 21:49:35.807 2000 FEE 436686 16942 6048548 2024-02-23 21:49:35.807 2024-02-23 21:49:35.807 18000 TIP 436686 20825 6048549 2024-02-23 21:49:35.906 2024-02-23 21:49:35.906 1000 FEE 436686 2652 6048550 2024-02-23 21:49:35.906 2024-02-23 21:49:35.906 9000 TIP 436686 989 6048561 2024-02-23 21:50:22.224 2024-02-23 21:50:22.224 1000 FEE 436683 1429 6048562 2024-02-23 21:50:22.224 2024-02-23 21:50:22.224 9000 TIP 436683 21514 6048568 2024-02-23 21:51:50.538 2024-02-23 21:51:50.538 1000 FEE 436688 1209 6048600 2024-02-23 21:53:54.141 2024-02-23 21:53:54.141 1000 FEE 436683 21194 6048601 2024-02-23 21:53:54.141 2024-02-23 21:53:54.141 9000 TIP 436683 6149 6048604 2024-02-23 21:53:57.788 2024-02-23 21:53:57.788 50000 FEE 436683 1105 6048605 2024-02-23 21:53:57.788 2024-02-23 21:53:57.788 450000 TIP 436683 3656 6048614 2024-02-23 21:56:29.594 2024-02-23 21:56:29.594 1000 FEE 436692 3478 6048664 2024-02-23 22:02:02.456 2024-02-23 22:02:02.456 0 FEE 436697 8037 6048675 2024-02-23 22:02:54.035 2024-02-23 22:02:54.035 210000 FEE 436699 761 6048713 2024-02-23 22:05:32.664 2024-02-23 22:05:32.664 8300 FEE 436666 1713 6048714 2024-02-23 22:05:32.664 2024-02-23 22:05:32.664 74700 TIP 436666 1245 6048719 2024-02-23 22:05:42.692 2024-02-23 22:05:42.692 8300 FEE 436605 782 6048720 2024-02-23 22:05:42.692 2024-02-23 22:05:42.692 74700 TIP 436605 18842 6048739 2024-02-23 22:10:00.812 2024-02-23 22:10:00.812 1000 FEE 436702 2188 6048761 2024-02-23 22:17:03.327 2024-02-23 22:17:03.327 2500 FEE 436683 21401 6048762 2024-02-23 22:17:03.327 2024-02-23 22:17:03.327 22500 TIP 436683 722 6048774 2024-02-23 22:21:03.91 2024-02-23 22:21:03.91 4000 FEE 436664 2711 6048775 2024-02-23 22:21:03.91 2024-02-23 22:21:03.91 36000 TIP 436664 5597 6048780 2024-02-23 22:22:37.287 2024-02-23 22:22:37.287 100 FEE 436556 21339 6048781 2024-02-23 22:22:37.287 2024-02-23 22:22:37.287 900 TIP 436556 21212 6048785 2024-02-23 22:23:11.777 2024-02-23 22:23:11.777 8300 FEE 436669 20504 6048786 2024-02-23 22:23:11.777 2024-02-23 22:23:11.777 74700 TIP 436669 5306 6048793 2024-02-23 22:23:12.403 2024-02-23 22:23:12.403 8300 FEE 436669 18449 6048794 2024-02-23 22:23:12.403 2024-02-23 22:23:12.403 74700 TIP 436669 16336 6048799 2024-02-23 22:23:12.638 2024-02-23 22:23:12.638 8300 FEE 436669 2710 6048800 2024-02-23 22:23:12.638 2024-02-23 22:23:12.638 74700 TIP 436669 7913 6048823 2024-02-23 22:27:45.423 2024-02-23 22:27:45.423 1000 FEE 436669 640 6048824 2024-02-23 22:27:45.423 2024-02-23 22:27:45.423 9000 TIP 436669 4322 6048832 2024-02-23 22:28:19.763 2024-02-23 22:28:19.763 1000 FEE 436499 2065 6048833 2024-02-23 22:28:19.763 2024-02-23 22:28:19.763 9000 TIP 436499 4102 6048912 2024-02-23 22:54:15.357 2024-02-23 22:54:15.357 1300 FEE 436464 12175 6048913 2024-02-23 22:54:15.357 2024-02-23 22:54:15.357 11700 TIP 436464 20143 6048924 2024-02-23 22:54:29.231 2024-02-23 22:54:29.231 1000 FEE 436715 1090 6048926 2024-02-23 22:55:22.55 2024-02-23 22:55:22.55 0 FEE 436713 8448 6048952 2024-02-23 22:59:44.559 2024-02-23 22:59:44.559 2100 FEE 436699 21492 6048953 2024-02-23 22:59:44.559 2024-02-23 22:59:44.559 18900 TIP 436699 11144 6048970 2024-02-23 23:03:41.546 2024-02-23 23:03:41.546 1000 FEE 436649 9329 6048971 2024-02-23 23:03:41.546 2024-02-23 23:03:41.546 9000 TIP 436649 16879 6049015 2024-02-23 23:12:35.796 2024-02-23 23:12:35.796 1000 FEE 436709 21062 6049016 2024-02-23 23:12:35.796 2024-02-23 23:12:35.796 9000 TIP 436709 21379 6049017 2024-02-23 23:12:36.038 2024-02-23 23:12:36.038 1000 FEE 436709 9159 6049018 2024-02-23 23:12:36.038 2024-02-23 23:12:36.038 9000 TIP 436709 21140 6049038 2024-02-23 23:20:32.822 2024-02-23 23:20:32.822 1000 FEE 436724 20852 6049047 2024-02-23 23:20:43.025 2024-02-23 23:20:43.025 100 FEE 436720 13143 6049048 2024-02-23 23:20:43.025 2024-02-23 23:20:43.025 900 TIP 436720 15938 6049074 2024-02-23 23:24:12.862 2024-02-23 23:24:12.862 5000 FEE 436669 18138 6049075 2024-02-23 23:24:12.862 2024-02-23 23:24:12.862 45000 TIP 436669 5129 6049095 2024-02-23 23:24:47.468 2024-02-23 23:24:47.468 1000 FEE 436491 760 6049096 2024-02-23 23:24:47.468 2024-02-23 23:24:47.468 9000 TIP 436491 18583 6049108 2024-02-23 23:25:08.762 2024-02-23 23:25:08.762 5000 FEE 436614 19021 6049109 2024-02-23 23:25:08.762 2024-02-23 23:25:08.762 45000 TIP 436614 20353 6049167 2024-02-23 23:27:13.54 2024-02-23 23:27:13.54 5000 FEE 436710 12808 6049168 2024-02-23 23:27:13.54 2024-02-23 23:27:13.54 45000 TIP 436710 10013 6049169 2024-02-23 23:27:14.048 2024-02-23 23:27:14.048 5000 FEE 436710 5128 6049170 2024-02-23 23:27:14.048 2024-02-23 23:27:14.048 45000 TIP 436710 18660 6047935 2024-02-23 20:36:02.812 2024-02-23 20:36:02.812 1000 STREAM 141924 6515 6113513 2024-02-29 14:58:23.384 2024-02-29 14:58:23.384 1600 FEE 443601 21466 6113514 2024-02-29 14:58:23.384 2024-02-29 14:58:23.384 14400 TIP 443601 18449 6113556 2024-02-29 14:59:47.921 2024-02-29 14:59:47.921 1000 FEE 443635 21398 6113560 2024-02-29 15:00:00.537 2024-02-29 15:00:00.537 300 FEE 443613 8544 6113561 2024-02-29 15:00:00.537 2024-02-29 15:00:00.537 2700 TIP 443613 20606 6113566 2024-02-29 15:00:01.298 2024-02-29 15:00:01.298 300 FEE 443613 19770 6113567 2024-02-29 15:00:01.298 2024-02-29 15:00:01.298 2700 TIP 443613 21212 6113572 2024-02-29 15:00:02.097 2024-02-29 15:00:02.097 300 FEE 443613 21342 6113573 2024-02-29 15:00:02.097 2024-02-29 15:00:02.097 2700 TIP 443613 722 6113592 2024-02-29 15:00:30.424 2024-02-29 15:00:30.424 1000 FEE 443640 19500 6113596 2024-02-29 15:00:44.891 2024-02-29 15:00:44.891 100 FEE 443372 21509 6113597 2024-02-29 15:00:44.891 2024-02-29 15:00:44.891 900 TIP 443372 21556 6113623 2024-02-29 15:02:05.097 2024-02-29 15:02:05.097 6300 FEE 443197 10469 6113624 2024-02-29 15:02:05.097 2024-02-29 15:02:05.097 56700 TIP 443197 12779 6113626 2024-02-29 15:02:39.728 2024-02-29 15:02:39.728 1000 POLL 442751 21588 6113629 2024-02-29 15:03:25.055 2024-02-29 15:03:25.055 1000 FEE 443649 17095 6113641 2024-02-29 15:04:59.755 2024-02-29 15:04:59.755 1000 FEE 443652 20168 6113643 2024-02-29 15:05:22.41 2024-02-29 15:05:22.41 2700 FEE 443645 6555 6113644 2024-02-29 15:05:22.41 2024-02-29 15:05:22.41 24300 TIP 443645 1272 6113649 2024-02-29 15:05:23.415 2024-02-29 15:05:23.415 2700 FEE 443645 2773 6113650 2024-02-29 15:05:23.415 2024-02-29 15:05:23.415 24300 TIP 443645 15088 6113663 2024-02-29 15:05:29.884 2024-02-29 15:05:29.884 2700 FEE 443624 2431 6113664 2024-02-29 15:05:29.884 2024-02-29 15:05:29.884 24300 TIP 443624 2022 6113673 2024-02-29 15:05:32.967 2024-02-29 15:05:32.967 12500 FEE 443583 20059 6113674 2024-02-29 15:05:32.967 2024-02-29 15:05:32.967 112500 TIP 443583 19105 6113684 2024-02-29 15:06:26.873 2024-02-29 15:06:26.873 2700 FEE 443545 19888 6113685 2024-02-29 15:06:26.873 2024-02-29 15:06:26.873 24300 TIP 443545 1801 6113688 2024-02-29 15:06:27.485 2024-02-29 15:06:27.485 5400 FEE 443545 18904 6113689 2024-02-29 15:06:27.485 2024-02-29 15:06:27.485 48600 TIP 443545 21485 6113694 2024-02-29 15:06:29.665 2024-02-29 15:06:29.665 2700 FEE 443545 10668 6113695 2024-02-29 15:06:29.665 2024-02-29 15:06:29.665 24300 TIP 443545 16809 6113704 2024-02-29 15:07:01.068 2024-02-29 15:07:01.068 1000 FEE 443657 20327 6113720 2024-02-29 15:08:19.146 2024-02-29 15:08:19.146 7700 FEE 443390 20891 6113721 2024-02-29 15:08:19.146 2024-02-29 15:08:19.146 69300 TIP 443390 694 6113775 2024-02-29 15:11:57.138 2024-02-29 15:11:57.138 1000 FEE 443665 8569 6113834 2024-02-29 15:15:03.689 2024-02-29 15:15:03.689 1100 FEE 443656 20647 6113835 2024-02-29 15:15:03.689 2024-02-29 15:15:03.689 9900 TIP 443656 20646 6113850 2024-02-29 15:16:41.399 2024-02-29 15:16:41.399 100 FEE 443247 19044 6113851 2024-02-29 15:16:41.399 2024-02-29 15:16:41.399 900 TIP 443247 18583 6113858 2024-02-29 15:16:43.595 2024-02-29 15:16:43.595 100 FEE 443247 11458 6113859 2024-02-29 15:16:43.595 2024-02-29 15:16:43.595 900 TIP 443247 7903 6113866 2024-02-29 15:16:45.317 2024-02-29 15:16:45.317 100 FEE 443247 16706 6113867 2024-02-29 15:16:45.317 2024-02-29 15:16:45.317 900 TIP 443247 5308 6113909 2024-02-29 15:22:17.716 2024-02-29 15:22:17.716 1000 POLL 442751 3518 6113939 2024-02-29 15:24:19.517 2024-02-29 15:24:19.517 100 FEE 443671 12779 6113940 2024-02-29 15:24:19.517 2024-02-29 15:24:19.517 900 TIP 443671 16876 6113969 2024-02-29 15:26:06.711 2024-02-29 15:26:06.711 2100 FEE 443266 16876 6113970 2024-02-29 15:26:06.711 2024-02-29 15:26:06.711 18900 TIP 443266 18270 6113973 2024-02-29 15:26:09.023 2024-02-29 15:26:09.023 2100 FEE 443107 16149 6113974 2024-02-29 15:26:09.023 2024-02-29 15:26:09.023 18900 TIP 443107 13097 6113980 2024-02-29 15:26:13.49 2024-02-29 15:26:13.49 2100 FEE 442245 9347 6113981 2024-02-29 15:26:13.49 2024-02-29 15:26:13.49 18900 TIP 442245 18635 6113996 2024-02-29 15:26:26.739 2024-02-29 15:26:26.739 6900 FEE 443679 1552 6113997 2024-02-29 15:26:26.739 2024-02-29 15:26:26.739 62100 TIP 443679 5057 6114006 2024-02-29 15:26:53.972 2024-02-29 15:26:53.972 6900 FEE 443679 7125 6114007 2024-02-29 15:26:53.972 2024-02-29 15:26:53.972 62100 TIP 443679 19796 6114029 2024-02-29 15:28:02.007 2024-02-29 15:28:02.007 1000 FEE 443684 5757 6114076 2024-02-29 15:29:08.526 2024-02-29 15:29:08.526 2100 FEE 443380 11678 6114077 2024-02-29 15:29:08.526 2024-02-29 15:29:08.526 18900 TIP 443380 19911 6114084 2024-02-29 15:29:11.369 2024-02-29 15:29:11.369 2100 FEE 443452 7986 6114085 2024-02-29 15:29:11.369 2024-02-29 15:29:11.369 18900 TIP 443452 6653 6114091 2024-02-29 15:29:43.675 2024-02-29 15:29:43.675 2100 FEE 443305 21493 6114092 2024-02-29 15:29:43.675 2024-02-29 15:29:43.675 18900 TIP 443305 21012 6114101 2024-02-29 15:29:47.953 2024-02-29 15:29:47.953 2100 FEE 443374 16357 6114102 2024-02-29 15:29:47.953 2024-02-29 15:29:47.953 18900 TIP 443374 21469 6114129 2024-02-29 15:31:37.667 2024-02-29 15:31:37.667 1000 FEE 443690 5828 6114136 2024-02-29 15:31:40.115 2024-02-29 15:31:40.115 10000 FEE 443593 18231 6114137 2024-02-29 15:31:40.115 2024-02-29 15:31:40.115 90000 TIP 443593 15474 6114144 2024-02-29 15:31:40.777 2024-02-29 15:31:40.777 1000 FEE 443691 21026 6114148 2024-02-29 15:32:03.794 2024-02-29 15:32:03.794 1000 FEE 443693 1145 6114160 2024-02-29 15:33:01.275 2024-02-29 15:33:01.275 2100 FEE 443344 13169 6114161 2024-02-29 15:33:01.275 2024-02-29 15:33:01.275 18900 TIP 443344 1605 6114173 2024-02-29 15:33:10.702 2024-02-29 15:33:10.702 2100 FEE 443327 13216 6114174 2024-02-29 15:33:10.702 2024-02-29 15:33:10.702 18900 TIP 443327 20613 6114179 2024-02-29 15:33:15.462 2024-02-29 15:33:15.462 2100 FEE 443328 859 6114180 2024-02-29 15:33:15.462 2024-02-29 15:33:15.462 18900 TIP 443328 5128 6114216 2024-02-29 15:34:11.434 2024-02-29 15:34:11.434 2100 FEE 443531 17891 6114217 2024-02-29 15:34:11.434 2024-02-29 15:34:11.434 18900 TIP 443531 5195 6114222 2024-02-29 15:34:30.297 2024-02-29 15:34:30.297 1000 FEE 443699 20599 6114231 2024-02-29 15:35:54.605 2024-02-29 15:35:54.605 2100 FEE 443645 11789 6114232 2024-02-29 15:35:54.605 2024-02-29 15:35:54.605 18900 TIP 443645 18380 6114259 2024-02-29 15:37:49.503 2024-02-29 15:37:49.503 2100 FEE 443429 16876 6114260 2024-02-29 15:37:49.503 2024-02-29 15:37:49.503 18900 TIP 443429 19813 6114281 2024-02-29 15:39:47.765 2024-02-29 15:39:47.765 100 FEE 442904 18745 6114282 2024-02-29 15:39:47.765 2024-02-29 15:39:47.765 900 TIP 442904 21072 6114292 2024-02-29 15:42:31.929 2024-02-29 15:42:31.929 0 FEE 443711 1692 6114293 2024-02-29 15:42:33.943 2024-02-29 15:42:33.943 100 FEE 443651 18008 6114294 2024-02-29 15:42:33.943 2024-02-29 15:42:33.943 900 TIP 443651 17365 6114321 2024-02-29 15:47:20.899 2024-02-29 15:47:20.899 5700 FEE 443713 17682 6114322 2024-02-29 15:47:20.899 2024-02-29 15:47:20.899 51300 TIP 443713 989 6114330 2024-02-29 15:48:00.091 2024-02-29 15:48:00.091 1000 FEE 443716 1733 6114331 2024-02-29 15:48:00.091 2024-02-29 15:48:00.091 9000 TIP 443716 20596 6114348 2024-02-29 15:51:04.935 2024-02-29 15:51:04.935 1000 FEE 443723 17091 6114349 2024-02-29 15:51:06.942 2024-02-29 15:51:06.942 1000 FEE 443724 20812 6114353 2024-02-29 15:51:41.641 2024-02-29 15:51:41.641 2000 FEE 443724 21159 6114354 2024-02-29 15:51:41.641 2024-02-29 15:51:41.641 18000 TIP 443724 959 6114370 2024-02-29 15:52:20.364 2024-02-29 15:52:20.364 7700 FEE 443288 20162 6114371 2024-02-29 15:52:20.364 2024-02-29 15:52:20.364 69300 TIP 443288 19105 6114372 2024-02-29 15:52:20.546 2024-02-29 15:52:20.546 7700 FEE 443288 18336 6047964 2024-02-23 20:37:02.788 2024-02-23 20:37:02.788 1000 STREAM 141924 20084 6113540 2024-02-29 14:59:17.445 2024-02-29 14:59:17.445 100 FEE 443554 1618 6113541 2024-02-29 14:59:17.445 2024-02-29 14:59:17.445 900 TIP 443554 713 6113545 2024-02-29 14:59:31.382 2024-02-29 14:59:31.382 1000 FEE 443632 11145 6113546 2024-02-29 14:59:33.546 2024-02-29 14:59:33.546 1700 FEE 443616 16097 6113547 2024-02-29 14:59:33.546 2024-02-29 14:59:33.546 15300 TIP 443616 17411 6113554 2024-02-29 14:59:47.651 2024-02-29 14:59:47.651 1700 FEE 443629 3506 6113555 2024-02-29 14:59:47.651 2024-02-29 14:59:47.651 15300 TIP 443629 16194 6113584 2024-02-29 15:00:13.167 2024-02-29 15:00:13.167 100 FEE 443506 18170 6113585 2024-02-29 15:00:13.167 2024-02-29 15:00:13.167 900 TIP 443506 994 6113586 2024-02-29 15:00:14.836 2024-02-29 15:00:14.836 100 FEE 443500 21072 6113587 2024-02-29 15:00:14.836 2024-02-29 15:00:14.836 900 TIP 443500 18423 6113601 2024-02-29 15:00:46.856 2024-02-29 15:00:46.856 9000 FEE 443372 17741 6113602 2024-02-29 15:00:46.856 2024-02-29 15:00:46.856 81000 TIP 443372 15063 6113631 2024-02-29 15:03:37.806 2024-02-29 15:03:37.806 0 FEE 443649 1439 6113636 2024-02-29 15:04:11.578 2024-02-29 15:04:11.578 1000 FEE 443651 730 6113639 2024-02-29 15:04:53.915 2024-02-29 15:04:53.915 2100 FEE 443569 21037 6113640 2024-02-29 15:04:53.915 2024-02-29 15:04:53.915 18900 TIP 443569 18178 6113655 2024-02-29 15:05:26.175 2024-02-29 15:05:26.175 2700 FEE 443645 14357 6113656 2024-02-29 15:05:26.175 2024-02-29 15:05:26.175 24300 TIP 443645 19403 6113657 2024-02-29 15:05:29.339 2024-02-29 15:05:29.339 2700 FEE 443624 18658 6113658 2024-02-29 15:05:29.339 2024-02-29 15:05:29.339 24300 TIP 443624 965 6113671 2024-02-29 15:05:31.055 2024-02-29 15:05:31.055 2700 FEE 443624 7097 6113672 2024-02-29 15:05:31.055 2024-02-29 15:05:31.055 24300 TIP 443624 21060 6113681 2024-02-29 15:06:15.599 2024-02-29 15:06:15.599 3300 FEE 443440 18897 6113682 2024-02-29 15:06:15.599 2024-02-29 15:06:15.599 29700 TIP 443440 19929 6113713 2024-02-29 15:07:43.607 2024-02-29 15:07:43.607 7700 FEE 443272 7675 6113714 2024-02-29 15:07:43.607 2024-02-29 15:07:43.607 69300 TIP 443272 19906 6113732 2024-02-29 15:08:45.148 2024-02-29 15:08:45.148 9000 FEE 443659 21042 6113733 2024-02-29 15:08:45.148 2024-02-29 15:08:45.148 81000 TIP 443659 2942 6113741 2024-02-29 15:09:39.85 2024-02-29 15:09:39.85 2100 FEE 443645 13987 6113742 2024-02-29 15:09:39.85 2024-02-29 15:09:39.85 18900 TIP 443645 8726 6113751 2024-02-29 15:09:52.538 2024-02-29 15:09:52.538 6900 FEE 443587 15326 6113752 2024-02-29 15:09:52.538 2024-02-29 15:09:52.538 62100 TIP 443587 8045 6113774 2024-02-29 15:11:54.343 2024-02-29 15:11:54.343 1000 FEE 443664 6777 6113785 2024-02-29 15:12:36.801 2024-02-29 15:12:36.801 2000 FEE 443467 11144 6113786 2024-02-29 15:12:36.801 2024-02-29 15:12:36.801 18000 TIP 443467 4118 6113792 2024-02-29 15:13:09.885 2024-02-29 15:13:09.885 1000 FEE 443307 14959 6113793 2024-02-29 15:13:09.885 2024-02-29 15:13:09.885 9000 TIP 443307 14213 6113827 2024-02-29 15:14:59.49 2024-02-29 15:14:59.49 1000 FEE 443183 18539 6113828 2024-02-29 15:14:59.49 2024-02-29 15:14:59.49 9000 TIP 443183 16447 6113852 2024-02-29 15:16:42.193 2024-02-29 15:16:42.193 100 FEE 443247 15103 6113853 2024-02-29 15:16:42.193 2024-02-29 15:16:42.193 900 TIP 443247 19333 6113860 2024-02-29 15:16:44.041 2024-02-29 15:16:44.041 100 FEE 443247 18828 6113861 2024-02-29 15:16:44.041 2024-02-29 15:16:44.041 900 TIP 443247 17042 6113870 2024-02-29 15:17:26.887 2024-02-29 15:17:26.887 1000 FEE 443506 718 6113871 2024-02-29 15:17:26.887 2024-02-29 15:17:26.887 9000 TIP 443506 7827 6113877 2024-02-29 15:17:56.926 2024-02-29 15:17:56.926 1000 FEE 443487 20251 6113878 2024-02-29 15:17:56.926 2024-02-29 15:17:56.926 9000 TIP 443487 14308 6113879 2024-02-29 15:17:57.614 2024-02-29 15:17:57.614 1000 FEE 443487 6191 6113880 2024-02-29 15:17:57.614 2024-02-29 15:17:57.614 9000 TIP 443487 19967 6113883 2024-02-29 15:17:59.489 2024-02-29 15:17:59.489 1000 FEE 443487 20514 6047977 2024-02-23 20:38:24.399 2024-02-23 20:38:24.399 9900 TIP 436622 11829 6047978 2024-02-23 20:38:35.268 2024-02-23 20:38:35.268 1100 FEE 436626 21522 6047979 2024-02-23 20:38:35.268 2024-02-23 20:38:35.268 9900 TIP 436626 19259 6047983 2024-02-23 20:39:36.325 2024-02-23 20:39:36.325 100 FEE 436614 14795 6047984 2024-02-23 20:39:36.325 2024-02-23 20:39:36.325 900 TIP 436614 18815 6047999 2024-02-23 20:40:20.084 2024-02-23 20:40:20.084 1000 FEE 436556 1047 6048000 2024-02-23 20:40:20.084 2024-02-23 20:40:20.084 9000 TIP 436556 21600 6048003 2024-02-23 20:40:20.536 2024-02-23 20:40:20.536 1000 FEE 436556 763 6048004 2024-02-23 20:40:20.536 2024-02-23 20:40:20.536 9000 TIP 436556 12819 6048014 2024-02-23 20:40:49.808 2024-02-23 20:40:49.808 4200 FEE 436566 19943 6048015 2024-02-23 20:40:49.808 2024-02-23 20:40:49.808 37800 TIP 436566 5425 6048023 2024-02-23 20:41:07.697 2024-02-23 20:41:07.697 2100 FEE 436493 16341 6048024 2024-02-23 20:41:07.697 2024-02-23 20:41:07.697 18900 TIP 436493 15386 6048027 2024-02-23 20:41:08.405 2024-02-23 20:41:08.405 1000 FEE 436559 11897 6048028 2024-02-23 20:41:08.405 2024-02-23 20:41:08.405 9000 TIP 436559 18344 6048041 2024-02-23 20:43:41.25 2024-02-23 20:43:41.25 1000 FEE 436559 14385 6048042 2024-02-23 20:43:41.25 2024-02-23 20:43:41.25 9000 TIP 436559 1039 6048052 2024-02-23 20:44:09.173 2024-02-23 20:44:09.173 9000 FEE 436626 18664 6048053 2024-02-23 20:44:09.173 2024-02-23 20:44:09.173 81000 TIP 436626 2390 6048064 2024-02-23 20:44:20.407 2024-02-23 20:44:20.407 100 FEE 436568 5069 6048065 2024-02-23 20:44:20.407 2024-02-23 20:44:20.407 900 TIP 436568 1515 6048093 2024-02-23 20:49:08.043 2024-02-23 20:49:08.043 100 FEE 436619 20120 6048094 2024-02-23 20:49:08.043 2024-02-23 20:49:08.043 900 TIP 436619 760 6048103 2024-02-23 20:49:51.404 2024-02-23 20:49:51.404 1000 FEE 436642 999 6048155 2024-02-23 20:56:06.203 2024-02-23 20:56:06.203 1000 FEE 436649 19033 6048158 2024-02-23 20:56:10.28 2024-02-23 20:56:10.28 1000 FEE 436635 19142 6048159 2024-02-23 20:56:10.28 2024-02-23 20:56:10.28 9000 TIP 436635 17124 6048184 2024-02-23 21:01:02.554 2024-02-23 21:01:02.554 8300 FEE 436508 14657 6048185 2024-02-23 21:01:02.554 2024-02-23 21:01:02.554 74700 TIP 436508 998 6048199 2024-02-23 21:01:28.762 2024-02-23 21:01:28.762 2100 FEE 436602 14195 6048200 2024-02-23 21:01:28.762 2024-02-23 21:01:28.762 18900 TIP 436602 20327 6048247 2024-02-23 21:04:31.256 2024-02-23 21:04:31.256 4000 FEE 436562 2098 6048248 2024-02-23 21:04:31.256 2024-02-23 21:04:31.256 36000 TIP 436562 776 6048258 2024-02-23 21:07:54.54 2024-02-23 21:07:54.54 0 FEE 436653 15282 6048260 2024-02-23 21:08:03.781 2024-02-23 21:08:03.781 100 FEE 436612 20225 6048261 2024-02-23 21:08:03.781 2024-02-23 21:08:03.781 900 TIP 436612 18472 6048276 2024-02-23 21:09:01.592 2024-02-23 21:09:01.592 9000 FEE 436611 6393 6048277 2024-02-23 21:09:01.592 2024-02-23 21:09:01.592 81000 TIP 436611 20015 6048284 2024-02-23 21:10:25.372 2024-02-23 21:10:25.372 1000 FEE 436566 656 6048285 2024-02-23 21:10:25.372 2024-02-23 21:10:25.372 9000 TIP 436566 21281 6048306 2024-02-23 21:15:34.138 2024-02-23 21:15:34.138 10000 FEE 436659 1738 6048335 2024-02-23 21:23:50.937 2024-02-23 21:23:50.937 300 FEE 436478 1959 6048336 2024-02-23 21:23:50.937 2024-02-23 21:23:50.937 2700 TIP 436478 1047 6048363 2024-02-23 21:30:48.933 2024-02-23 21:30:48.933 1000 FEE 436669 1429 6048364 2024-02-23 21:30:48.933 2024-02-23 21:30:48.933 9000 TIP 436669 20781 6048385 2024-02-23 21:30:53.137 2024-02-23 21:30:53.137 1000 FEE 436669 19826 6048386 2024-02-23 21:30:53.137 2024-02-23 21:30:53.137 9000 TIP 436669 20099 6048393 2024-02-23 21:30:53.907 2024-02-23 21:30:53.907 1000 FEE 436669 19333 6048394 2024-02-23 21:30:53.907 2024-02-23 21:30:53.907 9000 TIP 436669 18291 6048395 2024-02-23 21:30:54.092 2024-02-23 21:30:54.092 1000 FEE 436669 2326 6048396 2024-02-23 21:30:54.092 2024-02-23 21:30:54.092 9000 TIP 436669 14663 6048405 2024-02-23 21:31:00.463 2024-02-23 21:31:00.463 1000 FEE 436669 20881 6048406 2024-02-23 21:31:00.463 2024-02-23 21:31:00.463 9000 TIP 436669 10283 6048440 2024-02-23 21:32:22.804 2024-02-23 21:32:22.804 1000 FEE 436672 18169 6048441 2024-02-23 21:32:24.912 2024-02-23 21:32:24.912 400 FEE 436566 6526 6048442 2024-02-23 21:32:24.912 2024-02-23 21:32:24.912 3600 TIP 436566 1180 6048445 2024-02-23 21:32:52.086 2024-02-23 21:32:52.086 100 FEE 436669 18412 6048446 2024-02-23 21:32:52.086 2024-02-23 21:32:52.086 900 TIP 436669 671 6048447 2024-02-23 21:32:52.285 2024-02-23 21:32:52.285 900 FEE 436669 20970 6048448 2024-02-23 21:32:52.285 2024-02-23 21:32:52.285 8100 TIP 436669 21064 6113613 2024-02-29 15:01:21.293 2024-02-29 15:01:21.293 1000 FEE 443644 6526 6113615 2024-02-29 15:01:22.788 2024-02-29 15:01:22.788 100 FEE 443613 7376 6113616 2024-02-29 15:01:22.788 2024-02-29 15:01:22.788 900 TIP 443613 1438 6113632 2024-02-29 15:03:39.639 2024-02-29 15:03:39.639 2800 FEE 443646 21349 6113633 2024-02-29 15:03:39.639 2024-02-29 15:03:39.639 25200 TIP 443646 1352 6113667 2024-02-29 15:05:30.251 2024-02-29 15:05:30.251 2700 FEE 443624 1092 6113668 2024-02-29 15:05:30.251 2024-02-29 15:05:30.251 24300 TIP 443624 19581 6113702 2024-02-29 15:06:52.387 2024-02-29 15:06:52.387 100000 FEE 443655 9349 6113703 2024-02-29 15:06:58.369 2024-02-29 15:06:58.369 1000 FEE 443656 17011 6113707 2024-02-29 15:07:42.797 2024-02-29 15:07:42.797 7700 FEE 443272 20816 6113708 2024-02-29 15:07:42.797 2024-02-29 15:07:42.797 69300 TIP 443272 9275 6113709 2024-02-29 15:07:43.149 2024-02-29 15:07:43.149 7700 FEE 443272 9362 6113710 2024-02-29 15:07:43.149 2024-02-29 15:07:43.149 69300 TIP 443272 18235 6113722 2024-02-29 15:08:21.317 2024-02-29 15:08:21.317 6300 FEE 443611 19511 6113723 2024-02-29 15:08:21.317 2024-02-29 15:08:21.317 56700 TIP 443611 16356 6113745 2024-02-29 15:09:43.742 2024-02-29 15:09:43.742 2100 FEE 443624 2203 6113746 2024-02-29 15:09:43.742 2024-02-29 15:09:43.742 18900 TIP 443624 1836 6113760 2024-02-29 15:10:13.392 2024-02-29 15:10:13.392 1000 FEE 443617 14909 6113761 2024-02-29 15:10:13.392 2024-02-29 15:10:13.392 9000 TIP 443617 2460 6113781 2024-02-29 15:12:34.739 2024-02-29 15:12:34.739 5000 FEE 443460 2042 6113782 2024-02-29 15:12:34.739 2024-02-29 15:12:34.739 45000 TIP 443460 7185 6113810 2024-02-29 15:13:54.358 2024-02-29 15:13:54.358 1000 FEE 443613 1549 6113811 2024-02-29 15:13:54.358 2024-02-29 15:13:54.358 9000 TIP 443613 13100 6113816 2024-02-29 15:14:03.077 2024-02-29 15:14:03.077 1000 FEE 442904 13517 6113817 2024-02-29 15:14:03.077 2024-02-29 15:14:03.077 9000 TIP 442904 19857 6113874 2024-02-29 15:17:37.53 2024-02-29 15:17:37.53 1000 FEE 443667 5173 6113875 2024-02-29 15:17:37.53 2024-02-29 15:17:37.53 9000 TIP 443667 11897 6113895 2024-02-29 15:20:44.723 2024-02-29 15:20:44.723 1700 FEE 443659 19156 6113896 2024-02-29 15:20:44.723 2024-02-29 15:20:44.723 15300 TIP 443659 20674 6113915 2024-02-29 15:23:53.68 2024-02-29 15:23:53.68 1000 FEE 443677 21178 6113918 2024-02-29 15:23:55.406 2024-02-29 15:23:55.406 1000 FEE 443484 16858 6113919 2024-02-29 15:23:55.406 2024-02-29 15:23:55.406 9000 TIP 443484 8945 6113932 2024-02-29 15:23:57.412 2024-02-29 15:23:57.412 1000 FEE 443484 20781 6113933 2024-02-29 15:23:57.412 2024-02-29 15:23:57.412 9000 TIP 443484 628 6113948 2024-02-29 15:24:49.78 2024-02-29 15:24:49.78 1000 FEE 443678 7992 6113949 2024-02-29 15:24:49.78 2024-02-29 15:24:49.78 9000 TIP 443678 21374 6113955 2024-02-29 15:25:04.408 2024-02-29 15:25:04.408 1000 FEE 443617 16562 6113956 2024-02-29 15:25:04.408 2024-02-29 15:25:04.408 9000 TIP 443617 20264 6113959 2024-02-29 15:25:15.431 2024-02-29 15:25:15.431 1000 FEE 443679 9336 6113964 2024-02-29 15:26:02.173 2024-02-29 15:26:02.173 2100 FEE 443593 1429 6113965 2024-02-29 15:26:02.173 2024-02-29 15:26:02.173 18900 TIP 443593 992 6113990 2024-02-29 15:26:15.697 2024-02-29 15:26:15.697 6900 FEE 443679 8176 6047985 2024-02-23 20:40:01.444 2024-02-23 20:40:01.444 1000 FEE 436566 20299 6047986 2024-02-23 20:40:01.444 2024-02-23 20:40:01.444 9000 TIP 436566 12277 6047987 2024-02-23 20:40:01.867 2024-02-23 20:40:01.867 1000 FEE 436566 20706 6047988 2024-02-23 20:40:01.867 2024-02-23 20:40:01.867 9000 TIP 436566 9494 6048001 2024-02-23 20:40:20.242 2024-02-23 20:40:20.242 1000 FEE 436556 20854 6048002 2024-02-23 20:40:20.242 2024-02-23 20:40:20.242 9000 TIP 436556 4314 6048006 2024-02-23 20:40:47.099 2024-02-23 20:40:47.099 2100 FEE 436560 4831 6048007 2024-02-23 20:40:47.099 2024-02-23 20:40:47.099 18900 TIP 436560 19952 6048010 2024-02-23 20:40:47.578 2024-02-23 20:40:47.578 2100 FEE 436560 6765 6048011 2024-02-23 20:40:47.578 2024-02-23 20:40:47.578 18900 TIP 436560 1136 6048012 2024-02-23 20:40:47.899 2024-02-23 20:40:47.899 2100 FEE 436560 21491 6048013 2024-02-23 20:40:47.899 2024-02-23 20:40:47.899 18900 TIP 436560 4177 6048018 2024-02-23 20:40:52.257 2024-02-23 20:40:52.257 2100 FEE 436556 16230 6048019 2024-02-23 20:40:52.257 2024-02-23 20:40:52.257 18900 TIP 436556 2338 6048035 2024-02-23 20:43:20.173 2024-02-23 20:43:20.173 1000 FEE 435812 21131 6048036 2024-02-23 20:43:20.173 2024-02-23 20:43:20.173 9000 TIP 435812 9920 6048060 2024-02-23 20:44:19.345 2024-02-23 20:44:19.345 100 FEE 436621 17148 6048061 2024-02-23 20:44:19.345 2024-02-23 20:44:19.345 900 TIP 436621 4388 6048088 2024-02-23 20:48:35.45 2024-02-23 20:48:35.45 2300 FEE 436639 18731 6048089 2024-02-23 20:48:35.45 2024-02-23 20:48:35.45 20700 TIP 436639 8498 6048108 2024-02-23 20:50:57.299 2024-02-23 20:50:57.299 1000 FEE 436601 20555 6048109 2024-02-23 20:50:57.299 2024-02-23 20:50:57.299 9000 TIP 436601 20861 6048112 2024-02-23 20:52:05.817 2024-02-23 20:52:05.817 1000 FEE 436644 14169 6048116 2024-02-23 20:52:28.913 2024-02-23 20:52:28.913 100 FEE 436562 3706 6048117 2024-02-23 20:52:28.913 2024-02-23 20:52:28.913 900 TIP 436562 18392 6048136 2024-02-23 20:54:15.292 2024-02-23 20:54:15.292 1000 FEE 436648 12768 6048170 2024-02-23 20:59:49.861 2024-02-23 20:59:49.861 21000 DONT_LIKE_THIS 436611 18274 6048213 2024-02-23 21:01:58.735 2024-02-23 21:01:58.735 2100 FEE 436536 9166 6048214 2024-02-23 21:01:58.735 2024-02-23 21:01:58.735 18900 TIP 436536 732 6048240 2024-02-23 21:04:23.838 2024-02-23 21:04:23.838 10000 FEE 436651 16594 6048256 2024-02-23 21:07:27.76 2024-02-23 21:07:27.76 0 FEE 436653 20190 6048264 2024-02-23 21:08:05.115 2024-02-23 21:08:05.115 9000 FEE 436612 9341 6048265 2024-02-23 21:08:05.115 2024-02-23 21:08:05.115 81000 TIP 436612 20674 6048268 2024-02-23 21:08:09.274 2024-02-23 21:08:09.274 900 FEE 436654 18581 6048269 2024-02-23 21:08:09.274 2024-02-23 21:08:09.274 8100 TIP 436654 15088 6048279 2024-02-23 21:09:10.079 2024-02-23 21:09:10.079 2100 FEE 436243 12951 6048280 2024-02-23 21:09:10.079 2024-02-23 21:09:10.079 18900 TIP 436243 5825 6048291 2024-02-23 21:12:59.365 2024-02-23 21:12:59.365 1000000 FEE 436657 17237 6048307 2024-02-23 21:15:45.93 2024-02-23 21:15:45.93 10000 FEE 435073 9337 6048308 2024-02-23 21:15:45.93 2024-02-23 21:15:45.93 90000 TIP 435073 7587 6048312 2024-02-23 21:16:20.476 2024-02-23 21:16:20.476 1000 FEE 436593 1959 6048313 2024-02-23 21:16:20.476 2024-02-23 21:16:20.476 9000 TIP 436593 19524 6048328 2024-02-23 21:21:11.427 2024-02-23 21:21:11.427 1000 FEE 436661 7869 6048373 2024-02-23 21:30:52.096 2024-02-23 21:30:52.096 1000 FEE 436669 21498 6048374 2024-02-23 21:30:52.096 2024-02-23 21:30:52.096 9000 TIP 436669 5171 6048383 2024-02-23 21:30:52.922 2024-02-23 21:30:52.922 1000 FEE 436669 21091 6048384 2024-02-23 21:30:52.922 2024-02-23 21:30:52.922 9000 TIP 436669 18995 6048403 2024-02-23 21:30:55.701 2024-02-23 21:30:55.701 1000 FEE 436669 6537 6048404 2024-02-23 21:30:55.701 2024-02-23 21:30:55.701 9000 TIP 436669 706 6048436 2024-02-23 21:31:39.134 2024-02-23 21:31:39.134 300 FEE 436587 4391 6048437 2024-02-23 21:31:39.134 2024-02-23 21:31:39.134 2700 TIP 436587 661 6048460 2024-02-23 21:33:20.652 2024-02-23 21:33:20.652 1000 FEE 436673 16649 6048464 2024-02-23 21:35:09.93 2024-02-23 21:35:09.93 2100 FEE 436351 12218 6048465 2024-02-23 21:35:09.93 2024-02-23 21:35:09.93 18900 TIP 436351 19976 6048466 2024-02-23 21:35:18.779 2024-02-23 21:35:18.779 210000 FEE 436675 19857 6048494 2024-02-23 21:44:03.665 2024-02-23 21:44:03.665 1000 FEE 436679 10056 6048532 2024-02-23 21:49:30.947 2024-02-23 21:49:30.947 0 FEE 436685 9167 6048537 2024-02-23 21:49:34.485 2024-02-23 21:49:34.485 1000 FEE 436686 19158 6048538 2024-02-23 21:49:34.485 2024-02-23 21:49:34.485 9000 TIP 436686 690 6048539 2024-02-23 21:49:34.613 2024-02-23 21:49:34.613 1000 FEE 436686 8664 6048540 2024-02-23 21:49:34.613 2024-02-23 21:49:34.613 9000 TIP 436686 19446 6048551 2024-02-23 21:49:57.214 2024-02-23 21:49:57.214 1000 FEE 436683 17713 6048552 2024-02-23 21:49:57.214 2024-02-23 21:49:57.214 9000 TIP 436683 17927 6048565 2024-02-23 21:50:22.571 2024-02-23 21:50:22.571 1000 FEE 436683 19094 6048566 2024-02-23 21:50:22.571 2024-02-23 21:50:22.571 9000 TIP 436683 16633 6048586 2024-02-23 21:53:53.017 2024-02-23 21:53:53.017 1000 FEE 436683 21079 6048587 2024-02-23 21:53:53.017 2024-02-23 21:53:53.017 9000 TIP 436683 14857 6048590 2024-02-23 21:53:53.337 2024-02-23 21:53:53.337 1000 FEE 436683 20220 6048591 2024-02-23 21:53:53.337 2024-02-23 21:53:53.337 9000 TIP 436683 9833 6048596 2024-02-23 21:53:53.831 2024-02-23 21:53:53.831 1000 FEE 436683 4035 6048597 2024-02-23 21:53:53.831 2024-02-23 21:53:53.831 9000 TIP 436683 11967 6048617 2024-02-23 21:57:00.627 2024-02-23 21:57:00.627 100 FEE 436566 8535 6048618 2024-02-23 21:57:00.627 2024-02-23 21:57:00.627 900 TIP 436566 20904 6048621 2024-02-23 21:57:01.148 2024-02-23 21:57:01.148 100 FEE 436566 2724 6048622 2024-02-23 21:57:01.148 2024-02-23 21:57:01.148 900 TIP 436566 4345 6048625 2024-02-23 21:57:01.607 2024-02-23 21:57:01.607 100 FEE 436566 15662 6048626 2024-02-23 21:57:01.607 2024-02-23 21:57:01.607 900 TIP 436566 9992 6048658 2024-02-23 22:00:44.887 2024-02-23 22:00:44.887 1000 FEE 436523 19809 6048659 2024-02-23 22:00:44.887 2024-02-23 22:00:44.887 9000 TIP 436523 8385 6048687 2024-02-23 22:03:32.638 2024-02-23 22:03:32.638 2300 FEE 436669 20922 6048688 2024-02-23 22:03:32.638 2024-02-23 22:03:32.638 20700 TIP 436669 12218 6048693 2024-02-23 22:03:33.143 2024-02-23 22:03:33.143 2300 FEE 436669 4521 6048694 2024-02-23 22:03:33.143 2024-02-23 22:03:33.143 20700 TIP 436669 6393 6048733 2024-02-23 22:07:32.829 2024-02-23 22:07:32.829 8300 FEE 436675 12566 6048734 2024-02-23 22:07:32.829 2024-02-23 22:07:32.829 74700 TIP 436675 19501 6048034 2024-02-23 20:43:02.852 2024-02-23 20:43:02.852 1000 STREAM 141924 4259 6113680 2024-02-29 15:06:15.505 2024-02-29 15:06:15.505 0 FEE 443649 11698 6113696 2024-02-29 15:06:29.714 2024-02-29 15:06:29.714 2700 FEE 443545 6136 6113697 2024-02-29 15:06:29.714 2024-02-29 15:06:29.714 24300 TIP 443545 18518 6113698 2024-02-29 15:06:29.833 2024-02-29 15:06:29.833 2700 FEE 443545 2674 6113699 2024-02-29 15:06:29.833 2024-02-29 15:06:29.833 24300 TIP 443545 20980 6113706 2024-02-29 15:07:31.573 2024-02-29 15:07:31.573 1000 FEE 443658 5942 6113728 2024-02-29 15:08:44.236 2024-02-29 15:08:44.236 100 FEE 443659 2016 6113729 2024-02-29 15:08:44.236 2024-02-29 15:08:44.236 900 TIP 443659 13174 6113743 2024-02-29 15:09:42.855 2024-02-29 15:09:42.855 400 FEE 443618 19930 6113744 2024-02-29 15:09:42.855 2024-02-29 15:09:42.855 3600 TIP 443618 16176 6113747 2024-02-29 15:09:44.228 2024-02-29 15:09:44.228 400 FEE 443628 19633 6113748 2024-02-29 15:09:44.228 2024-02-29 15:09:44.228 3600 TIP 443628 18453 6113755 2024-02-29 15:09:56.967 2024-02-29 15:09:56.967 2100 FEE 443577 5359 6113756 2024-02-29 15:09:56.967 2024-02-29 15:09:56.967 18900 TIP 443577 13055 6113765 2024-02-29 15:10:42.28 2024-02-29 15:10:42.28 2100 FEE 443605 1652 6113766 2024-02-29 15:10:42.28 2024-02-29 15:10:42.28 18900 TIP 443605 20841 6113770 2024-02-29 15:11:39.314 2024-02-29 15:11:39.314 3300 FEE 443372 19016 6113771 2024-02-29 15:11:39.314 2024-02-29 15:11:39.314 29700 TIP 443372 6300 6113790 2024-02-29 15:13:08.763 2024-02-29 15:13:08.763 1000 FEE 443298 18368 6113791 2024-02-29 15:13:08.763 2024-02-29 15:13:08.763 9000 TIP 443298 2162 6113798 2024-02-29 15:13:48.274 2024-02-29 15:13:48.274 500 FEE 443611 17797 6113799 2024-02-29 15:13:48.274 2024-02-29 15:13:48.274 4500 TIP 443611 19471 6113804 2024-02-29 15:13:49.05 2024-02-29 15:13:49.05 6900 FEE 443545 3709 6113805 2024-02-29 15:13:49.05 2024-02-29 15:13:49.05 62100 TIP 443545 16348 6113806 2024-02-29 15:13:49.453 2024-02-29 15:13:49.453 6900 FEE 443545 836 6113807 2024-02-29 15:13:49.453 2024-02-29 15:13:49.453 62100 TIP 443545 21437 6113808 2024-02-29 15:13:53.563 2024-02-29 15:13:53.563 1000 FEE 443613 19902 6113809 2024-02-29 15:13:53.563 2024-02-29 15:13:53.563 9000 TIP 443613 16336 6113825 2024-02-29 15:14:40.756 2024-02-29 15:14:40.756 500 FEE 443658 3440 6113826 2024-02-29 15:14:40.756 2024-02-29 15:14:40.756 4500 TIP 443658 19289 6113831 2024-02-29 15:15:00.777 2024-02-29 15:15:00.777 1000 FEE 443183 14909 6113832 2024-02-29 15:15:00.777 2024-02-29 15:15:00.777 9000 TIP 443183 21401 6113838 2024-02-29 15:15:42.112 2024-02-29 15:15:42.112 210000 FEE 443667 7966 6113840 2024-02-29 15:15:50.875 2024-02-29 15:15:50.875 1000 FEE 443613 21003 6113841 2024-02-29 15:15:50.875 2024-02-29 15:15:50.875 9000 TIP 443613 18076 6113854 2024-02-29 15:16:42.738 2024-02-29 15:16:42.738 100 FEE 443247 19615 6113855 2024-02-29 15:16:42.738 2024-02-29 15:16:42.738 900 TIP 443247 18336 6113864 2024-02-29 15:16:45.077 2024-02-29 15:16:45.077 100 FEE 443247 6137 6113865 2024-02-29 15:16:45.077 2024-02-29 15:16:45.077 900 TIP 443247 11522 6113876 2024-02-29 15:17:40.819 2024-02-29 15:17:40.819 1000 FEE 443670 9796 6113887 2024-02-29 15:19:27.246 2024-02-29 15:19:27.246 1000 FEE 443554 9982 6113888 2024-02-29 15:19:27.246 2024-02-29 15:19:27.246 9000 TIP 443554 7818 6113901 2024-02-29 15:20:53.378 2024-02-29 15:20:53.378 1700 FEE 443667 5499 6113902 2024-02-29 15:20:53.378 2024-02-29 15:20:53.378 15300 TIP 443667 15147 6113911 2024-02-29 15:23:12.114 2024-02-29 15:23:12.114 1000 FEE 443675 10530 6113941 2024-02-29 15:24:32.674 2024-02-29 15:24:32.674 100 FEE 443676 13599 6113942 2024-02-29 15:24:32.674 2024-02-29 15:24:32.674 900 TIP 443676 9378 6113944 2024-02-29 15:24:40.623 2024-02-29 15:24:40.623 100 FEE 443669 2741 6113945 2024-02-29 15:24:40.623 2024-02-29 15:24:40.623 900 TIP 443669 20624 6113952 2024-02-29 15:25:01.803 2024-02-29 15:25:01.803 100 FEE 443672 19512 6113953 2024-02-29 15:25:01.803 2024-02-29 15:25:01.803 900 TIP 443672 19848 6113960 2024-02-29 15:25:59.256 2024-02-29 15:25:59.256 1000 FEE 443676 19690 6113961 2024-02-29 15:25:59.256 2024-02-29 15:25:59.256 9000 TIP 443676 20554 6113978 2024-02-29 15:26:12.756 2024-02-29 15:26:12.756 2100 FEE 442527 15843 6113979 2024-02-29 15:26:12.756 2024-02-29 15:26:12.756 18900 TIP 442527 8505 6113984 2024-02-29 15:26:14.053 2024-02-29 15:26:14.053 6900 FEE 443679 6160 6113985 2024-02-29 15:26:14.053 2024-02-29 15:26:14.053 62100 TIP 443679 1433 6113988 2024-02-29 15:26:15.177 2024-02-29 15:26:15.177 2100 FEE 441629 15408 6113989 2024-02-29 15:26:15.177 2024-02-29 15:26:15.177 18900 TIP 441629 7125 6113992 2024-02-29 15:26:25.339 2024-02-29 15:26:25.339 3000 FEE 443680 16145 6113993 2024-02-29 15:26:25.339 2024-02-29 15:26:25.339 27000 TIP 443680 20143 6114065 2024-02-29 15:29:01.212 2024-02-29 15:29:01.212 2100 FEE 443517 681 6114066 2024-02-29 15:29:01.212 2024-02-29 15:29:01.212 18900 TIP 443517 16834 6114072 2024-02-29 15:29:06.546 2024-02-29 15:29:06.546 2100 FEE 443336 17800 6114073 2024-02-29 15:29:06.546 2024-02-29 15:29:06.546 18900 TIP 443336 18635 6114095 2024-02-29 15:29:45.114 2024-02-29 15:29:45.114 2100 FEE 443297 15510 6114096 2024-02-29 15:29:45.114 2024-02-29 15:29:45.114 18900 TIP 443297 21387 6114127 2024-02-29 15:31:35.549 2024-02-29 15:31:35.549 100 FEE 443689 5794 6114128 2024-02-29 15:31:35.549 2024-02-29 15:31:35.549 900 TIP 443689 1959 6114156 2024-02-29 15:32:58.832 2024-02-29 15:32:58.832 2100 FEE 443398 20110 6114157 2024-02-29 15:32:58.832 2024-02-29 15:32:58.832 18900 TIP 443398 16956 6114167 2024-02-29 15:33:04.26 2024-02-29 15:33:04.26 2100 FEE 443316 16149 6114168 2024-02-29 15:33:04.26 2024-02-29 15:33:04.26 18900 TIP 443316 15160 6114244 2024-02-29 15:37:05.931 2024-02-29 15:37:05.931 11100 FEE 443683 11477 6114245 2024-02-29 15:37:05.931 2024-02-29 15:37:05.931 99900 TIP 443683 21605 6114248 2024-02-29 15:37:15.031 2024-02-29 15:37:15.031 2100 FEE 443655 18180 6114249 2024-02-29 15:37:15.031 2024-02-29 15:37:15.031 18900 TIP 443655 18745 6114251 2024-02-29 15:37:24.822 2024-02-29 15:37:24.822 1000 FEE 443705 9290 6114252 2024-02-29 15:37:26.426 2024-02-29 15:37:26.426 2100 FEE 443372 660 6114253 2024-02-29 15:37:26.426 2024-02-29 15:37:26.426 18900 TIP 443372 18387 6114261 2024-02-29 15:37:58.516 2024-02-29 15:37:58.516 2100 FEE 443434 1495 6114262 2024-02-29 15:37:58.516 2024-02-29 15:37:58.516 18900 TIP 443434 705 6114297 2024-02-29 15:43:08.656 2024-02-29 15:43:08.656 1000 FEE 443711 21430 6114298 2024-02-29 15:43:08.656 2024-02-29 15:43:08.656 9000 TIP 443711 624 6114303 2024-02-29 15:44:43.389 2024-02-29 15:44:43.389 0 FEE 443713 1198 6114326 2024-02-29 15:47:25.239 2024-02-29 15:47:25.239 1000 FEE 442710 14515 6114327 2024-02-29 15:47:25.239 2024-02-29 15:47:25.239 9000 TIP 442710 6741 6114334 2024-02-29 15:48:32.642 2024-02-29 15:48:32.642 1000 FEE 443718 21274 6114335 2024-02-29 15:48:32.642 2024-02-29 15:48:32.642 9000 TIP 443718 14990 6114345 2024-02-29 15:50:55.42 2024-02-29 15:50:55.42 1000 FEE 443720 8176 6114346 2024-02-29 15:50:55.42 2024-02-29 15:50:55.42 9000 TIP 443720 19576 6114383 2024-02-29 15:54:20.587 2024-02-29 15:54:20.587 800 FEE 443698 8004 6114384 2024-02-29 15:54:20.587 2024-02-29 15:54:20.587 7200 TIP 443698 1002 6114445 2024-02-29 15:59:40.49 2024-02-29 15:59:40.49 90000 FEE 443683 803 6114446 2024-02-29 15:59:40.49 2024-02-29 15:59:40.49 810000 TIP 443683 16004 6114458 2024-02-29 16:00:58.735 2024-02-29 16:00:58.735 0 FEE 443730 21140 6114475 2024-02-29 16:01:11.267 2024-02-29 16:01:11.267 1000 FEE 443739 16212 6114476 2024-02-29 16:01:14.34 2024-02-29 16:01:14.34 500 FEE 443729 1802 6114477 2024-02-29 16:01:14.34 2024-02-29 16:01:14.34 4500 TIP 443729 12289 6048070 2024-02-23 20:45:02.071 2024-02-23 20:45:02.071 1000 STREAM 141924 18667 6048105 2024-02-23 20:50:04.103 2024-02-23 20:50:04.103 1000 STREAM 141924 10342 6048111 2024-02-23 20:52:02.127 2024-02-23 20:52:02.127 1000 STREAM 141924 18865 6048130 2024-02-23 20:53:02.144 2024-02-23 20:53:02.144 1000 STREAM 141924 14370 6048153 2024-02-23 20:55:02.165 2024-02-23 20:55:02.165 1000 STREAM 141924 15367 6048160 2024-02-23 20:57:02.194 2024-02-23 20:57:02.194 1000 STREAM 141924 1173 6048166 2024-02-23 20:59:02.195 2024-02-23 20:59:02.195 1000 STREAM 141924 654 6048219 2024-02-23 21:02:02.514 2024-02-23 21:02:02.514 1000 STREAM 141924 16942 6048228 2024-02-23 21:03:02.517 2024-02-23 21:03:02.517 1000 STREAM 141924 13843 6048229 2024-02-23 21:04:02.526 2024-02-23 21:04:02.526 1000 STREAM 141924 7668 6048250 2024-02-23 21:06:02.543 2024-02-23 21:06:02.543 1000 STREAM 141924 2046 6048259 2024-02-23 21:08:02.548 2024-02-23 21:08:02.548 1000 STREAM 141924 768 6048278 2024-02-23 21:09:02.559 2024-02-23 21:09:02.559 1000 STREAM 141924 14037 6048281 2024-02-23 21:10:02.564 2024-02-23 21:10:02.564 1000 STREAM 141924 861 6048319 2024-02-23 21:18:02.598 2024-02-23 21:18:02.598 1000 STREAM 141924 900 6048325 2024-02-23 21:20:02.613 2024-02-23 21:20:02.613 1000 STREAM 141924 21374 6048327 2024-02-23 21:21:02.624 2024-02-23 21:21:02.624 1000 STREAM 141924 17494 6048329 2024-02-23 21:22:02.629 2024-02-23 21:22:02.629 1000 STREAM 141924 16753 6048332 2024-02-23 21:23:02.633 2024-02-23 21:23:02.633 1000 STREAM 141924 21480 6048339 2024-02-23 21:24:02.641 2024-02-23 21:24:02.641 1000 STREAM 141924 1970 6048341 2024-02-23 21:25:02.643 2024-02-23 21:25:02.643 1000 STREAM 141924 4167 6048343 2024-02-23 21:26:02.673 2024-02-23 21:26:02.673 1000 STREAM 141924 18678 6048346 2024-02-23 21:27:02.652 2024-02-23 21:27:02.652 1000 STREAM 141924 9845 6048351 2024-02-23 21:28:02.676 2024-02-23 21:28:02.676 1000 STREAM 141924 13927 6048353 2024-02-23 21:29:02.683 2024-02-23 21:29:02.683 1000 STREAM 141924 18862 6048357 2024-02-23 21:30:02.691 2024-02-23 21:30:02.691 1000 STREAM 141924 803 6048411 2024-02-23 21:31:02.69 2024-02-23 21:31:02.69 1000 STREAM 141924 12356 6048473 2024-02-23 21:37:02.708 2024-02-23 21:37:02.708 1000 STREAM 141924 6749 6048474 2024-02-23 21:38:02.714 2024-02-23 21:38:02.714 1000 STREAM 141924 854 6048475 2024-02-23 21:39:02.723 2024-02-23 21:39:02.723 1000 STREAM 141924 20525 6048482 2024-02-23 21:40:02.737 2024-02-23 21:40:02.737 1000 STREAM 141924 19930 6048484 2024-02-23 21:41:02.734 2024-02-23 21:41:02.734 1000 STREAM 141924 4776 6048485 2024-02-23 21:42:02.755 2024-02-23 21:42:02.755 1000 STREAM 141924 17046 6048493 2024-02-23 21:44:02.769 2024-02-23 21:44:02.769 1000 STREAM 141924 8506 6048527 2024-02-23 21:47:02.781 2024-02-23 21:47:02.781 1000 STREAM 141924 21334 6048528 2024-02-23 21:48:02.784 2024-02-23 21:48:02.784 1000 STREAM 141924 848 6048567 2024-02-23 21:51:02.802 2024-02-23 21:51:02.802 1000 STREAM 141924 18116 6048570 2024-02-23 21:52:02.8 2024-02-23 21:52:02.8 1000 STREAM 141924 6602 6048575 2024-02-23 21:53:02.809 2024-02-23 21:53:02.809 1000 STREAM 141924 2232 6048606 2024-02-23 21:54:02.811 2024-02-23 21:54:02.811 1000 STREAM 141924 19320 6048611 2024-02-23 21:56:02.829 2024-02-23 21:56:02.829 1000 STREAM 141924 17392 6048629 2024-02-23 21:57:02.837 2024-02-23 21:57:02.837 1000 STREAM 141924 673 6048639 2024-02-23 21:59:02.848 2024-02-23 21:59:02.848 1000 STREAM 141924 3213 6048646 2024-02-23 22:00:02.853 2024-02-23 22:00:02.853 1000 STREAM 141924 21514 6113767 2024-02-29 15:10:55.654 2024-02-29 15:10:55.654 2100 FEE 443620 18232 6113768 2024-02-29 15:10:55.654 2024-02-29 15:10:55.654 18900 TIP 443620 11621 6113812 2024-02-29 15:13:55.29 2024-02-29 15:13:55.29 1000 FEE 443613 628 6113813 2024-02-29 15:13:55.29 2024-02-29 15:13:55.29 9000 TIP 443613 4984 6113814 2024-02-29 15:14:00.539 2024-02-29 15:14:00.539 500 FEE 443645 12566 6113815 2024-02-29 15:14:00.539 2024-02-29 15:14:00.539 4500 TIP 443645 20825 6113836 2024-02-29 15:15:26.353 2024-02-29 15:15:26.353 1000 FEE 443651 2016 6113837 2024-02-29 15:15:26.353 2024-02-29 15:15:26.353 9000 TIP 443651 16301 6113844 2024-02-29 15:16:03.309 2024-02-29 15:16:03.309 0 FEE 443668 11329 6113856 2024-02-29 15:16:43.455 2024-02-29 15:16:43.455 100 FEE 443247 5173 6113857 2024-02-29 15:16:43.455 2024-02-29 15:16:43.455 900 TIP 443247 18533 6113872 2024-02-29 15:17:27.941 2024-02-29 15:17:27.941 1000 FEE 443495 2176 6113873 2024-02-29 15:17:27.941 2024-02-29 15:17:27.941 9000 TIP 443495 21292 6113897 2024-02-29 15:20:53.013 2024-02-29 15:20:53.013 1700 FEE 443667 11527 6113898 2024-02-29 15:20:53.013 2024-02-29 15:20:53.013 15300 TIP 443667 21577 6113906 2024-02-29 15:21:58.057 2024-02-29 15:21:58.057 0 FEE 443667 10490 6113912 2024-02-29 15:23:40.67 2024-02-29 15:23:40.67 3400 FEE 443396 12245 6113913 2024-02-29 15:23:40.67 2024-02-29 15:23:40.67 30600 TIP 443396 704 6113924 2024-02-29 15:23:56.012 2024-02-29 15:23:56.012 1000 FEE 443484 18311 6113925 2024-02-29 15:23:56.012 2024-02-29 15:23:56.012 9000 TIP 443484 21395 6113934 2024-02-29 15:23:58.159 2024-02-29 15:23:58.159 1000 FEE 443484 16212 6113935 2024-02-29 15:23:58.159 2024-02-29 15:23:58.159 9000 TIP 443484 19638 6113962 2024-02-29 15:26:00.621 2024-02-29 15:26:00.621 2100 FEE 443678 19018 6113963 2024-02-29 15:26:00.621 2024-02-29 15:26:00.621 18900 TIP 443678 8508 6113971 2024-02-29 15:26:07.624 2024-02-29 15:26:07.624 2100 FEE 443160 1564 6113972 2024-02-29 15:26:07.624 2024-02-29 15:26:07.624 18900 TIP 443160 19601 6114012 2024-02-29 15:26:54.91 2024-02-29 15:26:54.91 6900 FEE 443679 12222 6114013 2024-02-29 15:26:54.91 2024-02-29 15:26:54.91 62100 TIP 443679 20133 6114014 2024-02-29 15:26:55.054 2024-02-29 15:26:55.054 6900 FEE 443679 18468 6114015 2024-02-29 15:26:55.054 2024-02-29 15:26:55.054 62100 TIP 443679 2039 6114020 2024-02-29 15:27:32.418 2024-02-29 15:27:32.418 21000 DONT_LIKE_THIS 443527 17050 6114023 2024-02-29 15:27:58.083 2024-02-29 15:27:58.083 10000 FEE 443482 2734 6114024 2024-02-29 15:27:58.083 2024-02-29 15:27:58.083 90000 TIP 443482 15273 6114027 2024-02-29 15:28:00.051 2024-02-29 15:28:00.051 10000 FEE 443482 15052 6114028 2024-02-29 15:28:00.051 2024-02-29 15:28:00.051 90000 TIP 443482 2952 6114037 2024-02-29 15:28:40.375 2024-02-29 15:28:40.375 1000 FEE 443593 1825 6114038 2024-02-29 15:28:40.375 2024-02-29 15:28:40.375 9000 TIP 443593 20153 6114043 2024-02-29 15:28:48.909 2024-02-29 15:28:48.909 1000 FEE 443453 18897 6114044 2024-02-29 15:28:48.909 2024-02-29 15:28:48.909 9000 TIP 443453 20439 6114045 2024-02-29 15:28:49.438 2024-02-29 15:28:49.438 1000 FEE 443453 649 6114046 2024-02-29 15:28:49.438 2024-02-29 15:28:49.438 9000 TIP 443453 4763 6114080 2024-02-29 15:29:10.48 2024-02-29 15:29:10.48 2100 FEE 443332 10608 6114081 2024-02-29 15:29:10.48 2024-02-29 15:29:10.48 18900 TIP 443332 1145 6114109 2024-02-29 15:29:58.788 2024-02-29 15:29:58.788 100 FEE 443329 13169 6114110 2024-02-29 15:29:58.788 2024-02-29 15:29:58.788 900 TIP 443329 5495 6114118 2024-02-29 15:30:51.94 2024-02-29 15:30:51.94 1000 FEE 443687 19966 6114119 2024-02-29 15:30:51.94 2024-02-29 15:30:51.94 9000 TIP 443687 21444 6114197 2024-02-29 15:33:22.538 2024-02-29 15:33:22.538 2100 FEE 443296 16754 6114198 2024-02-29 15:33:22.538 2024-02-29 15:33:22.538 18900 TIP 443296 19087 6114238 2024-02-29 15:36:10.995 2024-02-29 15:36:10.995 1000 FEE 443701 9171 6114276 2024-02-29 15:39:14.87 2024-02-29 15:39:14.87 1400 FEE 443372 20596 6114277 2024-02-29 15:39:14.87 2024-02-29 15:39:14.87 12600 TIP 443372 20412 6114309 2024-02-29 15:45:24.027 2024-02-29 15:45:24.027 0 FEE 443713 12261 6114343 2024-02-29 15:50:46.118 2024-02-29 15:50:46.118 5700 FEE 443685 7659 6114344 2024-02-29 15:50:46.118 2024-02-29 15:50:46.118 51300 TIP 443685 12072 6114364 2024-02-29 15:52:20.179 2024-02-29 15:52:20.179 7700 FEE 443288 21405 6048084 2024-02-23 20:47:02.079 2024-02-23 20:47:02.079 1000 STREAM 141924 2748 6048092 2024-02-23 20:49:02.093 2024-02-23 20:49:02.093 1000 STREAM 141924 17011 6048110 2024-02-23 20:51:02.116 2024-02-23 20:51:02.116 1000 STREAM 141924 20998 6048135 2024-02-23 20:54:02.145 2024-02-23 20:54:02.145 1000 STREAM 141924 13327 6048154 2024-02-23 20:56:02.17 2024-02-23 20:56:02.17 1000 STREAM 141924 16154 6048173 2024-02-23 21:00:02.259 2024-02-23 21:00:02.259 1000 STREAM 141924 9482 6048249 2024-02-23 21:05:02.527 2024-02-23 21:05:02.527 1000 STREAM 141924 7510 6048255 2024-02-23 21:07:02.546 2024-02-23 21:07:02.546 1000 STREAM 141924 18449 6048286 2024-02-23 21:11:02.574 2024-02-23 21:11:02.574 1000 STREAM 141924 654 6048289 2024-02-23 21:12:02.575 2024-02-23 21:12:02.575 1000 STREAM 141924 16789 6048292 2024-02-23 21:13:02.584 2024-02-23 21:13:02.584 1000 STREAM 141924 17046 6048300 2024-02-23 21:14:02.586 2024-02-23 21:14:02.586 1000 STREAM 141924 20892 6048301 2024-02-23 21:15:02.601 2024-02-23 21:15:02.601 1000 STREAM 141924 3392 6048309 2024-02-23 21:16:02.6 2024-02-23 21:16:02.6 1000 STREAM 141924 691 6048314 2024-02-23 21:17:02.594 2024-02-23 21:17:02.594 1000 STREAM 141924 2285 6048322 2024-02-23 21:19:02.614 2024-02-23 21:19:02.614 1000 STREAM 141924 9529 6048438 2024-02-23 21:32:02.693 2024-02-23 21:32:02.693 1000 STREAM 141924 21201 6048455 2024-02-23 21:33:02.7 2024-02-23 21:33:02.7 1000 STREAM 141924 19034 6048461 2024-02-23 21:34:02.706 2024-02-23 21:34:02.706 1000 STREAM 141924 1044 6048463 2024-02-23 21:35:02.695 2024-02-23 21:35:02.695 1000 STREAM 141924 19785 6048467 2024-02-23 21:36:02.707 2024-02-23 21:36:02.707 1000 STREAM 141924 9365 6048486 2024-02-23 21:43:02.762 2024-02-23 21:43:02.762 1000 STREAM 141924 1836 6048498 2024-02-23 21:45:02.78 2024-02-23 21:45:02.78 1000 STREAM 141924 12976 6048506 2024-02-23 21:46:02.776 2024-02-23 21:46:02.776 1000 STREAM 141924 21083 6048530 2024-02-23 21:49:02.785 2024-02-23 21:49:02.785 1000 STREAM 141924 18528 6048560 2024-02-23 21:50:02.787 2024-02-23 21:50:02.787 1000 STREAM 141924 17522 6048608 2024-02-23 21:55:02.819 2024-02-23 21:55:02.819 1000 STREAM 141924 20854 6048633 2024-02-23 21:58:02.836 2024-02-23 21:58:02.836 1000 STREAM 141924 692 6048662 2024-02-23 22:01:02.863 2024-02-23 22:01:02.863 1000 STREAM 141924 762 6048665 2024-02-23 22:02:02.865 2024-02-23 22:02:02.865 1000 STREAM 141924 16149 6048740 2024-02-23 22:10:02.952 2024-02-23 22:10:02.952 1000 STREAM 141924 20264 6113779 2024-02-29 15:12:34.472 2024-02-29 15:12:34.472 5000 FEE 443452 2773 6113780 2024-02-29 15:12:34.472 2024-02-29 15:12:34.472 45000 TIP 443452 20812 6113802 2024-02-29 15:13:48.93 2024-02-29 15:13:48.93 6900 FEE 443545 19148 6113803 2024-02-29 15:13:48.93 2024-02-29 15:13:48.93 62100 TIP 443545 4538 6113823 2024-02-29 15:14:32.307 2024-02-29 15:14:32.307 500 FEE 443624 16329 6113824 2024-02-29 15:14:32.307 2024-02-29 15:14:32.307 4500 TIP 443624 16097 6113842 2024-02-29 15:16:01.187 2024-02-29 15:16:01.187 200 FEE 443495 21422 6113843 2024-02-29 15:16:01.187 2024-02-29 15:16:01.187 1800 TIP 443495 21104 6113848 2024-02-29 15:16:31.83 2024-02-29 15:16:31.83 100 FEE 443247 19033 6113849 2024-02-29 15:16:31.83 2024-02-29 15:16:31.83 900 TIP 443247 20922 6113889 2024-02-29 15:19:46.426 2024-02-29 15:19:46.426 2100 FEE 439834 20924 6113890 2024-02-29 15:19:46.426 2024-02-29 15:19:46.426 18900 TIP 439834 20370 6113892 2024-02-29 15:20:38.302 2024-02-29 15:20:38.302 1000 FEE 443671 4059 6113899 2024-02-29 15:20:53.242 2024-02-29 15:20:53.242 1700 FEE 443667 9364 6113900 2024-02-29 15:20:53.242 2024-02-29 15:20:53.242 15300 TIP 443667 16724 6113905 2024-02-29 15:21:39.788 2024-02-29 15:21:39.788 1000 FEE 443673 20066 6113920 2024-02-29 15:23:55.596 2024-02-29 15:23:55.596 1000 FEE 443484 19689 6113921 2024-02-29 15:23:55.596 2024-02-29 15:23:55.596 9000 TIP 443484 5520 6113922 2024-02-29 15:23:55.809 2024-02-29 15:23:55.809 1000 FEE 443484 13055 6113923 2024-02-29 15:23:55.809 2024-02-29 15:23:55.809 9000 TIP 443484 21547 6113930 2024-02-29 15:23:56.582 2024-02-29 15:23:56.582 1000 FEE 443484 9352 6113931 2024-02-29 15:23:56.582 2024-02-29 15:23:56.582 9000 TIP 443484 21416 6113943 2024-02-29 15:24:37.987 2024-02-29 15:24:37.987 210000 FEE 443678 981 6113946 2024-02-29 15:24:47.747 2024-02-29 15:24:47.747 100 FEE 443613 17415 6113947 2024-02-29 15:24:47.747 2024-02-29 15:24:47.747 900 TIP 443613 766 6113967 2024-02-29 15:26:04.195 2024-02-29 15:26:04.195 2100 FEE 443489 18984 6113968 2024-02-29 15:26:04.195 2024-02-29 15:26:04.195 18900 TIP 443489 18170 6113986 2024-02-29 15:26:14.285 2024-02-29 15:26:14.285 6900 FEE 443679 701 6113987 2024-02-29 15:26:14.285 2024-02-29 15:26:14.285 62100 TIP 443679 11956 6113994 2024-02-29 15:26:26.543 2024-02-29 15:26:26.543 6900 FEE 443679 6384 6113995 2024-02-29 15:26:26.543 2024-02-29 15:26:26.543 62100 TIP 443679 9433 6113998 2024-02-29 15:26:26.955 2024-02-29 15:26:26.955 13800 FEE 443679 647 6113999 2024-02-29 15:26:26.955 2024-02-29 15:26:26.955 124200 TIP 443679 10608 6114017 2024-02-29 15:27:24.507 2024-02-29 15:27:24.507 420000 FEE 443683 20066 6114018 2024-02-29 15:27:27.431 2024-02-29 15:27:27.431 500 FEE 443681 10398 6114019 2024-02-29 15:27:27.431 2024-02-29 15:27:27.431 4500 TIP 443681 16598 6114051 2024-02-29 15:28:53.381 2024-02-29 15:28:53.381 2100 FEE 443664 20614 6114052 2024-02-29 15:28:53.381 2024-02-29 15:28:53.381 18900 TIP 443664 21145 6114097 2024-02-29 15:29:45.63 2024-02-29 15:29:45.63 2100 FEE 443322 2402 6114098 2024-02-29 15:29:45.63 2024-02-29 15:29:45.63 18900 TIP 443322 2203 6114116 2024-02-29 15:30:31.457 2024-02-29 15:30:31.457 1000 FEE 443688 21571 6114134 2024-02-29 15:31:39.952 2024-02-29 15:31:39.952 10000 FEE 443593 963 6114135 2024-02-29 15:31:39.952 2024-02-29 15:31:39.952 90000 TIP 443593 19601 6114149 2024-02-29 15:32:04.129 2024-02-29 15:32:04.129 1000 FEE 443694 14774 6114151 2024-02-29 15:32:35.064 2024-02-29 15:32:35.064 1000 FEE 443695 20511 6114169 2024-02-29 15:33:05.006 2024-02-29 15:33:05.006 10000 FEE 443583 14959 6114170 2024-02-29 15:33:05.006 2024-02-29 15:33:05.006 90000 TIP 443583 20623 6114181 2024-02-29 15:33:15.972 2024-02-29 15:33:15.972 2100 FEE 443330 12169 6114182 2024-02-29 15:33:15.972 2024-02-29 15:33:15.972 18900 TIP 443330 19524 6114193 2024-02-29 15:33:20.412 2024-02-29 15:33:20.412 2100 FEE 443315 19843 6114194 2024-02-29 15:33:20.412 2024-02-29 15:33:20.412 18900 TIP 443315 1175 6114203 2024-02-29 15:33:24.976 2024-02-29 15:33:24.976 2100 FEE 443309 21303 6114204 2024-02-29 15:33:24.976 2024-02-29 15:33:24.976 18900 TIP 443309 19449 6114211 2024-02-29 15:34:08.629 2024-02-29 15:34:08.629 69000 FEE 443697 20495 6114214 2024-02-29 15:34:10.136 2024-02-29 15:34:10.136 2100 FEE 443554 9349 6114215 2024-02-29 15:34:10.136 2024-02-29 15:34:10.136 18900 TIP 443554 17106 6114218 2024-02-29 15:34:14.488 2024-02-29 15:34:14.488 2100 FEE 443431 3304 6114219 2024-02-29 15:34:14.488 2024-02-29 15:34:14.488 18900 TIP 443431 5112 6114233 2024-02-29 15:35:55.935 2024-02-29 15:35:55.935 2100 FEE 443624 675 6114234 2024-02-29 15:35:55.935 2024-02-29 15:35:55.935 18900 TIP 443624 2537 6114240 2024-02-29 15:36:48.156 2024-02-29 15:36:48.156 1000 FEE 443701 1733 6114241 2024-02-29 15:36:48.156 2024-02-29 15:36:48.156 9000 TIP 443701 21387 6114242 2024-02-29 15:36:57.805 2024-02-29 15:36:57.805 1000 FEE 443703 7978 6114255 2024-02-29 15:37:43.63 2024-02-29 15:37:43.63 2100 FEE 443390 18873 6114256 2024-02-29 15:37:43.63 2024-02-29 15:37:43.63 18900 TIP 443390 5308 6114257 2024-02-29 15:37:48.742 2024-02-29 15:37:48.742 2100 FEE 443427 16126 6114258 2024-02-29 15:37:48.742 2024-02-29 15:37:48.742 18900 TIP 443427 20993 6114266 2024-02-29 15:38:04.674 2024-02-29 15:38:04.674 0 FEE 443705 11590 6114278 2024-02-29 15:39:16.402 2024-02-29 15:39:16.402 1000 FEE 443709 2460 6048139 2024-02-23 20:54:35.917 2024-02-23 20:54:35.917 900 FEE 436258 6361 6048140 2024-02-23 20:54:35.917 2024-02-23 20:54:35.917 8100 TIP 436258 937 6048149 2024-02-23 20:54:38.506 2024-02-23 20:54:38.506 800 FEE 436508 919 6048150 2024-02-23 20:54:38.506 2024-02-23 20:54:38.506 7200 TIP 436508 11760 6048164 2024-02-23 20:58:47.381 2024-02-23 20:58:47.381 1100 FEE 436648 18815 6048165 2024-02-23 20:58:47.381 2024-02-23 20:58:47.381 9900 TIP 436648 5759 6048178 2024-02-23 21:01:02.036 2024-02-23 21:01:02.036 8300 FEE 436508 6260 6048179 2024-02-23 21:01:02.036 2024-02-23 21:01:02.036 74700 TIP 436508 16848 6048182 2024-02-23 21:01:02.385 2024-02-23 21:01:02.385 8300 FEE 436508 21444 6048183 2024-02-23 21:01:02.385 2024-02-23 21:01:02.385 74700 TIP 436508 9026 6048197 2024-02-23 21:01:23.876 2024-02-23 21:01:23.876 2100 FEE 436612 16259 6048198 2024-02-23 21:01:23.876 2024-02-23 21:01:23.876 18900 TIP 436612 17014 6048201 2024-02-23 21:01:31 2024-02-23 21:01:31 2100 FEE 436587 749 6048202 2024-02-23 21:01:31 2024-02-23 21:01:31 18900 TIP 436587 15159 6048220 2024-02-23 21:02:20.01 2024-02-23 21:02:20.01 2100 FEE 436644 9331 6048221 2024-02-23 21:02:20.01 2024-02-23 21:02:20.01 18900 TIP 436644 19284 6048222 2024-02-23 21:02:42.767 2024-02-23 21:02:42.767 1100 FEE 436643 8176 6048223 2024-02-23 21:02:42.767 2024-02-23 21:02:42.767 9900 TIP 436643 4388 6048226 2024-02-23 21:02:56.253 2024-02-23 21:02:56.253 200 FEE 436643 20198 6048227 2024-02-23 21:02:56.253 2024-02-23 21:02:56.253 1800 TIP 436643 9334 6048232 2024-02-23 21:04:19.754 2024-02-23 21:04:19.754 4000 FEE 436493 14941 6048233 2024-02-23 21:04:19.754 2024-02-23 21:04:19.754 36000 TIP 436493 18714 6048236 2024-02-23 21:04:23.01 2024-02-23 21:04:23.01 4000 FEE 436508 19966 6048237 2024-02-23 21:04:23.01 2024-02-23 21:04:23.01 36000 TIP 436508 1718 6048241 2024-02-23 21:04:25.638 2024-02-23 21:04:25.638 4000 FEE 436556 21401 6048242 2024-02-23 21:04:25.638 2024-02-23 21:04:25.638 36000 TIP 436556 1465 6048245 2024-02-23 21:04:30.91 2024-02-23 21:04:30.91 4000 FEE 436514 15052 6048246 2024-02-23 21:04:30.91 2024-02-23 21:04:30.91 36000 TIP 436514 3371 6048251 2024-02-23 21:06:13.647 2024-02-23 21:06:13.647 1000 FEE 436652 2390 6048262 2024-02-23 21:08:03.986 2024-02-23 21:08:03.986 900 FEE 436612 12930 6048263 2024-02-23 21:08:03.986 2024-02-23 21:08:03.986 8100 TIP 436612 1173 6048266 2024-02-23 21:08:09.037 2024-02-23 21:08:09.037 100 FEE 436654 5565 6048267 2024-02-23 21:08:09.037 2024-02-23 21:08:09.037 900 TIP 436654 12561 6048274 2024-02-23 21:09:00.846 2024-02-23 21:09:00.846 900 FEE 436611 7916 6048275 2024-02-23 21:09:00.846 2024-02-23 21:09:00.846 8100 TIP 436611 18525 6048282 2024-02-23 21:10:03.951 2024-02-23 21:10:03.951 2100 FEE 436244 20156 6048283 2024-02-23 21:10:03.951 2024-02-23 21:10:03.951 18900 TIP 436244 9992 6048338 2024-02-23 21:23:50.971 2024-02-23 21:23:50.971 10000 FEE 436663 20599 6048354 2024-02-23 21:29:48.526 2024-02-23 21:29:48.526 100000 FEE 436669 2327 6048369 2024-02-23 21:30:51.587 2024-02-23 21:30:51.587 1000 FEE 436669 5017 6048370 2024-02-23 21:30:51.587 2024-02-23 21:30:51.587 9000 TIP 436669 19836 6048371 2024-02-23 21:30:51.779 2024-02-23 21:30:51.779 1000 FEE 436669 1090 6048372 2024-02-23 21:30:51.779 2024-02-23 21:30:51.779 9000 TIP 436669 11956 6048377 2024-02-23 21:30:52.354 2024-02-23 21:30:52.354 1000 FEE 436669 1769 6048378 2024-02-23 21:30:52.354 2024-02-23 21:30:52.354 9000 TIP 436669 20775 6048381 2024-02-23 21:30:52.732 2024-02-23 21:30:52.732 1000 FEE 436669 17091 6048382 2024-02-23 21:30:52.732 2024-02-23 21:30:52.732 9000 TIP 436669 1135 6048412 2024-02-23 21:31:04.425 2024-02-23 21:31:04.425 1000 FEE 436669 10519 6048413 2024-02-23 21:31:04.425 2024-02-23 21:31:04.425 9000 TIP 436669 929 6048414 2024-02-23 21:31:04.682 2024-02-23 21:31:04.682 1000 FEE 436669 20327 6048415 2024-02-23 21:31:04.682 2024-02-23 21:31:04.682 9000 TIP 436669 19303 6048416 2024-02-23 21:31:04.908 2024-02-23 21:31:04.908 1000 FEE 436669 21541 6048417 2024-02-23 21:31:04.908 2024-02-23 21:31:04.908 9000 TIP 436669 13169 6048432 2024-02-23 21:31:16.901 2024-02-23 21:31:16.901 1000 FEE 436669 989 6048433 2024-02-23 21:31:16.901 2024-02-23 21:31:16.901 9000 TIP 436669 3990 6048453 2024-02-23 21:32:56.275 2024-02-23 21:32:56.275 1000 FEE 436669 17212 6048454 2024-02-23 21:32:56.275 2024-02-23 21:32:56.275 9000 TIP 436669 670 6048478 2024-02-23 21:39:48.103 2024-02-23 21:39:48.103 4000 FEE 436665 10490 6048479 2024-02-23 21:39:48.103 2024-02-23 21:39:48.103 36000 TIP 436665 1741 6048480 2024-02-23 21:39:48.928 2024-02-23 21:39:48.928 1000 FEE 436677 19909 6048481 2024-02-23 21:39:49.214 2024-02-23 21:39:49.214 1000 FEE 436678 5036 6048487 2024-02-23 21:43:18.316 2024-02-23 21:43:18.316 2100 FEE 436671 9705 6048488 2024-02-23 21:43:18.316 2024-02-23 21:43:18.316 18900 TIP 436671 9184 6048502 2024-02-23 21:45:50.596 2024-02-23 21:45:50.596 1000 FEE 436682 1814 6048509 2024-02-23 21:46:08.749 2024-02-23 21:46:08.749 27000 FEE 436674 2444 6048510 2024-02-23 21:46:08.749 2024-02-23 21:46:08.749 243000 TIP 436674 16410 6048535 2024-02-23 21:49:34.329 2024-02-23 21:49:34.329 1000 FEE 436686 19417 6048536 2024-02-23 21:49:34.329 2024-02-23 21:49:34.329 9000 TIP 436686 21323 6048553 2024-02-23 21:49:57.394 2024-02-23 21:49:57.394 1000 FEE 436683 4574 6048554 2024-02-23 21:49:57.394 2024-02-23 21:49:57.394 9000 TIP 436683 19500 6048582 2024-02-23 21:53:52.726 2024-02-23 21:53:52.726 1000 FEE 436683 16684 6048583 2024-02-23 21:53:52.726 2024-02-23 21:53:52.726 9000 TIP 436683 986 6048602 2024-02-23 21:53:54.308 2024-02-23 21:53:54.308 1000 FEE 436683 1090 6048603 2024-02-23 21:53:54.308 2024-02-23 21:53:54.308 9000 TIP 436683 21048 6048615 2024-02-23 21:56:59.898 2024-02-23 21:56:59.898 10000 FEE 436688 17638 6048616 2024-02-23 21:56:59.898 2024-02-23 21:56:59.898 90000 TIP 436688 17494 6048630 2024-02-23 21:57:11.212 2024-02-23 21:57:11.212 1000 FEE 436693 21061 6048631 2024-02-23 21:57:42.295 2024-02-23 21:57:42.295 1000 FEE 436694 2722 6048642 2024-02-23 21:59:11.73 2024-02-23 21:59:11.73 1000 FEE 436695 1310 6048643 2024-02-23 21:59:11.73 2024-02-23 21:59:11.73 9000 TIP 436695 18941 6048650 2024-02-23 22:00:25.313 2024-02-23 22:00:25.313 2000 FEE 436523 5904 6048651 2024-02-23 22:00:25.313 2024-02-23 22:00:25.313 18000 TIP 436523 16789 6048652 2024-02-23 22:00:43.892 2024-02-23 22:00:43.892 1000 FEE 436523 21238 6048653 2024-02-23 22:00:43.892 2024-02-23 22:00:43.892 9000 TIP 436523 21556 6048654 2024-02-23 22:00:44.062 2024-02-23 22:00:44.062 1000 FEE 436523 21480 6048163 2024-02-23 20:58:03.707 2024-02-23 20:58:03.707 1000 STREAM 141924 16126 6113884 2024-02-29 15:17:59.489 2024-02-29 15:17:59.489 9000 TIP 443487 21361 6113904 2024-02-29 15:21:20.23 2024-02-29 15:21:20.23 1000 FEE 443672 20015 6113914 2024-02-29 15:23:47.779 2024-02-29 15:23:47.779 1000 FEE 443676 721 6113926 2024-02-29 15:23:56.212 2024-02-29 15:23:56.212 1000 FEE 443484 11590 6113927 2024-02-29 15:23:56.212 2024-02-29 15:23:56.212 9000 TIP 443484 18402 6113928 2024-02-29 15:23:56.38 2024-02-29 15:23:56.38 1000 FEE 443484 4763 6113929 2024-02-29 15:23:56.38 2024-02-29 15:23:56.38 9000 TIP 443484 704 6114035 2024-02-29 15:28:35.09 2024-02-29 15:28:35.09 1000 FEE 443528 2596 6114036 2024-02-29 15:28:35.09 2024-02-29 15:28:35.09 9000 TIP 443528 18446 6114041 2024-02-29 15:28:48.366 2024-02-29 15:28:48.366 2100 FEE 443467 5173 6114042 2024-02-29 15:28:48.366 2024-02-29 15:28:48.366 18900 TIP 443467 2832 6114049 2024-02-29 15:28:50.415 2024-02-29 15:28:50.415 1000 FEE 443453 19902 6114050 2024-02-29 15:28:50.415 2024-02-29 15:28:50.415 9000 TIP 443453 18500 6114061 2024-02-29 15:29:00.786 2024-02-29 15:29:00.786 2100 FEE 443560 9332 6114062 2024-02-29 15:29:00.786 2024-02-29 15:29:00.786 18900 TIP 443560 21058 6114086 2024-02-29 15:29:12.764 2024-02-29 15:29:12.764 2100 FEE 443371 3686 6114087 2024-02-29 15:29:12.764 2024-02-29 15:29:12.764 18900 TIP 443371 17446 6114090 2024-02-29 15:29:39.089 2024-02-29 15:29:39.089 1000 FEE 443687 5725 6114103 2024-02-29 15:29:49.189 2024-02-29 15:29:49.189 2100 FEE 443312 2077 6114104 2024-02-29 15:29:49.189 2024-02-29 15:29:49.189 18900 TIP 443312 18557 6114112 2024-02-29 15:30:10.703 2024-02-29 15:30:10.703 100 FEE 443337 14959 6114113 2024-02-29 15:30:10.703 2024-02-29 15:30:10.703 900 TIP 443337 2016 6114117 2024-02-29 15:30:35.021 2024-02-29 15:30:35.021 1000 FEE 443689 678 6114130 2024-02-29 15:31:38.328 2024-02-29 15:31:38.328 1000 FEE 443689 12422 6114131 2024-02-29 15:31:38.328 2024-02-29 15:31:38.328 9000 TIP 443689 21157 6114142 2024-02-29 15:31:40.657 2024-02-29 15:31:40.657 10000 FEE 443593 11144 6114143 2024-02-29 15:31:40.657 2024-02-29 15:31:40.657 90000 TIP 443593 11314 6114150 2024-02-29 15:32:27.94 2024-02-29 15:32:27.94 0 FEE 443693 17713 6114158 2024-02-29 15:33:00.834 2024-02-29 15:33:00.834 2100 FEE 443387 19148 6114159 2024-02-29 15:33:00.834 2024-02-29 15:33:00.834 18900 TIP 443387 8916 6114165 2024-02-29 15:33:03.766 2024-02-29 15:33:03.766 2100 FEE 443320 683 6114166 2024-02-29 15:33:03.766 2024-02-29 15:33:03.766 18900 TIP 443320 19335 6114187 2024-02-29 15:33:17.434 2024-02-29 15:33:17.434 2100 FEE 443308 17064 6114188 2024-02-29 15:33:17.434 2024-02-29 15:33:17.434 18900 TIP 443308 925 6114189 2024-02-29 15:33:19.329 2024-02-29 15:33:19.329 2100 FEE 443311 19930 6114190 2024-02-29 15:33:19.329 2024-02-29 15:33:19.329 18900 TIP 443311 1221 6114191 2024-02-29 15:33:19.472 2024-02-29 15:33:19.472 1000 FEE 443685 1803 6114192 2024-02-29 15:33:19.472 2024-02-29 15:33:19.472 9000 TIP 443685 18832 6114212 2024-02-29 15:34:08.904 2024-02-29 15:34:08.904 2100 FEE 443602 2329 6114213 2024-02-29 15:34:08.904 2024-02-29 15:34:08.904 18900 TIP 443602 5794 6114224 2024-02-29 15:35:22.14 2024-02-29 15:35:22.14 2100 FEE 443583 16706 6114225 2024-02-29 15:35:22.14 2024-02-29 15:35:22.14 18900 TIP 443583 20680 6114226 2024-02-29 15:35:44.778 2024-02-29 15:35:44.778 1000 FEE 443700 7847 6114227 2024-02-29 15:35:46.012 2024-02-29 15:35:46.012 1000 FEE 443699 1142 6114228 2024-02-29 15:35:46.012 2024-02-29 15:35:46.012 9000 TIP 443699 16341 6114239 2024-02-29 15:36:44.893 2024-02-29 15:36:44.893 1000 FEE 443702 690 6114274 2024-02-29 15:39:07.244 2024-02-29 15:39:07.244 1700 FEE 443699 19038 6114275 2024-02-29 15:39:07.244 2024-02-29 15:39:07.244 15300 TIP 443699 11590 6114287 2024-02-29 15:41:01.659 2024-02-29 15:41:01.659 3300 FEE 442904 866 6114288 2024-02-29 15:41:01.659 2024-02-29 15:41:01.659 29700 TIP 442904 19943 6114333 2024-02-29 15:48:15.75 2024-02-29 15:48:15.75 1000 FEE 443718 6149 6114359 2024-02-29 15:52:11.363 2024-02-29 15:52:11.363 1000 FEE 443726 5520 6114377 2024-02-29 15:53:55 2024-02-29 15:53:55 1100 FEE 403892 10342 6114378 2024-02-29 15:53:55 2024-02-29 15:53:55 9900 TIP 403892 825 6114396 2024-02-29 15:55:03.562 2024-02-29 15:55:03.562 9000 FEE 443683 20245 6114397 2024-02-29 15:55:03.562 2024-02-29 15:55:03.562 81000 TIP 443683 21320 6114413 2024-02-29 15:56:47.901 2024-02-29 15:56:47.901 500 FEE 443577 14381 6114414 2024-02-29 15:56:47.901 2024-02-29 15:56:47.901 4500 TIP 443577 3417 6114420 2024-02-29 15:57:51.426 2024-02-29 15:57:51.426 900 FEE 443711 1552 6114421 2024-02-29 15:57:51.426 2024-02-29 15:57:51.426 8100 TIP 443711 2508 6114447 2024-02-29 15:59:45.074 2024-02-29 15:59:45.074 5700 FEE 443593 2537 6114448 2024-02-29 15:59:45.074 2024-02-29 15:59:45.074 51300 TIP 443593 20663 6114449 2024-02-29 15:59:45.929 2024-02-29 15:59:45.929 5700 FEE 443667 12561 6114450 2024-02-29 15:59:45.929 2024-02-29 15:59:45.929 51300 TIP 443667 7119 6114455 2024-02-29 16:00:04.701 2024-02-29 16:00:04.701 100000 FEE 443736 18265 6114466 2024-02-29 16:01:04.502 2024-02-29 16:01:04.502 2100 FEE 443726 18673 6114467 2024-02-29 16:01:04.502 2024-02-29 16:01:04.502 18900 TIP 443726 11523 6114470 2024-02-29 16:01:05.954 2024-02-29 16:01:05.954 1000 FEE 443738 20599 6114481 2024-02-29 16:01:54.107 2024-02-29 16:01:54.107 1700 FEE 443712 19267 6114482 2024-02-29 16:01:54.107 2024-02-29 16:01:54.107 15300 TIP 443712 937 6114513 2024-02-29 16:05:01.927 2024-02-29 16:05:01.927 2100 FEE 443274 15549 6114514 2024-02-29 16:05:01.927 2024-02-29 16:05:01.927 18900 TIP 443274 11288 6114515 2024-02-29 16:05:02.258 2024-02-29 16:05:02.258 2100 FEE 443274 16753 6114516 2024-02-29 16:05:02.258 2024-02-29 16:05:02.258 18900 TIP 443274 15521 6114541 2024-02-29 16:08:23.854 2024-02-29 16:08:23.854 1000 FEE 443750 19329 6114558 2024-02-29 16:08:43.18 2024-02-29 16:08:43.18 100 FEE 443747 16176 6114559 2024-02-29 16:08:43.18 2024-02-29 16:08:43.18 900 TIP 443747 16357 6114574 2024-02-29 16:08:49.598 2024-02-29 16:08:49.598 2100 FEE 443545 8074 6114575 2024-02-29 16:08:49.598 2024-02-29 16:08:49.598 18900 TIP 443545 14122 6114590 2024-02-29 16:10:50.6 2024-02-29 16:10:50.6 1000 FEE 443754 16542 6114617 2024-02-29 16:14:24.036 2024-02-29 16:14:24.036 100 FEE 443750 16706 6114618 2024-02-29 16:14:24.036 2024-02-29 16:14:24.036 900 TIP 443750 9150 6114619 2024-02-29 16:14:30.911 2024-02-29 16:14:30.911 1000 FEE 443759 12738 6114620 2024-02-29 16:14:30.911 2024-02-29 16:14:30.911 9000 TIP 443759 12779 6114638 2024-02-29 16:16:21.579 2024-02-29 16:16:21.579 2100 FEE 443717 17217 6114639 2024-02-29 16:16:21.579 2024-02-29 16:16:21.579 18900 TIP 443717 20704 6114651 2024-02-29 16:17:28.692 2024-02-29 16:17:28.692 0 FEE 443762 16347 6114660 2024-02-29 16:18:10.187 2024-02-29 16:18:10.187 800 FEE 443743 18919 6114661 2024-02-29 16:18:10.187 2024-02-29 16:18:10.187 7200 TIP 443743 20911 6114671 2024-02-29 16:18:39.07 2024-02-29 16:18:39.07 0 FEE 443762 7773 6114672 2024-02-29 16:18:44.037 2024-02-29 16:18:44.037 1000 FEE 443771 18423 6114696 2024-02-29 16:20:34.664 2024-02-29 16:20:34.664 100000 FEE 443775 21624 6114699 2024-02-29 16:20:48.725 2024-02-29 16:20:48.725 100 FEE 443712 13927 6114700 2024-02-29 16:20:48.725 2024-02-29 16:20:48.725 900 TIP 443712 18114 6114710 2024-02-29 16:21:10.853 2024-02-29 16:21:10.853 2100 FEE 443616 16988 6114711 2024-02-29 16:21:10.853 2024-02-29 16:21:10.853 18900 TIP 443616 1003 6114740 2024-02-29 16:24:39.327 2024-02-29 16:24:39.327 2100 FEE 443272 19638 6114741 2024-02-29 16:24:39.327 2024-02-29 16:24:39.327 18900 TIP 443272 859 6114768 2024-02-29 16:25:16.815 2024-02-29 16:25:16.815 1700 FEE 443768 775 6114769 2024-02-29 16:25:16.815 2024-02-29 16:25:16.815 15300 TIP 443768 1039 6114774 2024-02-29 16:25:34.715 2024-02-29 16:25:34.715 1000 FEE 443771 14381 6114775 2024-02-29 16:25:34.715 2024-02-29 16:25:34.715 9000 TIP 443771 2639 6114796 2024-02-29 16:26:57.325 2024-02-29 16:26:57.325 1700 FEE 443758 17046 6048216 2024-02-23 21:02:01.146 2024-02-23 21:02:01.146 18900 TIP 436525 19569 6048224 2024-02-23 21:02:42.791 2024-02-23 21:02:42.791 1000 FEE 436608 5776 6048225 2024-02-23 21:02:42.791 2024-02-23 21:02:42.791 9000 TIP 436608 18230 6048293 2024-02-23 21:13:13.034 2024-02-23 21:13:13.034 7100 FEE 436601 12965 6048294 2024-02-23 21:13:13.034 2024-02-23 21:13:13.034 63900 TIP 436601 18241 6048330 2024-02-23 21:22:22.189 2024-02-23 21:22:22.189 4200 FEE 436605 5725 6048331 2024-02-23 21:22:22.189 2024-02-23 21:22:22.189 37800 TIP 436605 749 6048360 2024-02-23 21:30:34.25 2024-02-23 21:30:34.25 1000 FEE 436670 16267 6048365 2024-02-23 21:30:51.29 2024-02-23 21:30:51.29 1000 FEE 436669 8004 6048366 2024-02-23 21:30:51.29 2024-02-23 21:30:51.29 9000 TIP 436669 20663 6048375 2024-02-23 21:30:52.159 2024-02-23 21:30:52.159 1000 FEE 436669 16594 6048376 2024-02-23 21:30:52.159 2024-02-23 21:30:52.159 9000 TIP 436669 19038 6048468 2024-02-23 21:36:45.441 2024-02-23 21:36:45.441 2100 FEE 431293 20619 6048469 2024-02-23 21:36:45.441 2024-02-23 21:36:45.441 18900 TIP 431293 7877 6048495 2024-02-23 21:44:17.528 2024-02-23 21:44:17.528 1000 FEE 436680 11263 6048496 2024-02-23 21:44:19.911 2024-02-23 21:44:19.911 2000 FEE 436665 16809 6048497 2024-02-23 21:44:19.911 2024-02-23 21:44:19.911 18000 TIP 436665 6526 6048524 2024-02-23 21:46:34.841 2024-02-23 21:46:34.841 1000 FEE 436684 9099 6048525 2024-02-23 21:46:45.866 2024-02-23 21:46:45.866 1000 FEE 436683 12951 6048526 2024-02-23 21:46:45.866 2024-02-23 21:46:45.866 9000 TIP 436683 19639 6048545 2024-02-23 21:49:35.06 2024-02-23 21:49:35.06 1000 FEE 436686 19038 6048546 2024-02-23 21:49:35.06 2024-02-23 21:49:35.06 9000 TIP 436686 20412 6048594 2024-02-23 21:53:53.659 2024-02-23 21:53:53.659 1000 FEE 436683 16858 6048595 2024-02-23 21:53:53.659 2024-02-23 21:53:53.659 9000 TIP 436683 8080 6048607 2024-02-23 21:54:06.51 2024-02-23 21:54:06.51 1000 FEE 436689 4167 6048627 2024-02-23 21:57:02.05 2024-02-23 21:57:02.05 100 FEE 436566 1224 6048628 2024-02-23 21:57:02.05 2024-02-23 21:57:02.05 900 TIP 436566 4345 6048647 2024-02-23 22:00:09.067 2024-02-23 22:00:09.067 1000 FEE 436696 6419 6048660 2024-02-23 22:00:44.983 2024-02-23 22:00:44.983 1000 FEE 436523 1881 6048661 2024-02-23 22:00:44.983 2024-02-23 22:00:44.983 9000 TIP 436523 18311 6048683 2024-02-23 22:03:24.718 2024-02-23 22:03:24.718 1000 FEE 436700 19193 6048684 2024-02-23 22:03:25.799 2024-02-23 22:03:25.799 1000 FEE 436701 20964 6048689 2024-02-23 22:03:32.787 2024-02-23 22:03:32.787 2300 FEE 436669 19463 6048690 2024-02-23 22:03:32.787 2024-02-23 22:03:32.787 20700 TIP 436669 21453 6048695 2024-02-23 22:03:33.359 2024-02-23 22:03:33.359 2300 FEE 436669 976 6048696 2024-02-23 22:03:33.359 2024-02-23 22:03:33.359 20700 TIP 436669 20340 6048723 2024-02-23 22:05:47.788 2024-02-23 22:05:47.788 1000 FEE 436686 16250 6048724 2024-02-23 22:05:47.788 2024-02-23 22:05:47.788 9000 TIP 436686 9345 6048755 2024-02-23 22:14:54.773 2024-02-23 22:14:54.773 1000 FEE 436705 18330 6048777 2024-02-23 22:22:29.963 2024-02-23 22:22:29.963 1000 FEE 436707 16988 6048795 2024-02-23 22:23:12.413 2024-02-23 22:23:12.413 8300 FEE 436669 10554 6048796 2024-02-23 22:23:12.413 2024-02-23 22:23:12.413 74700 TIP 436669 18837 6048841 2024-02-23 22:29:38.769 2024-02-23 22:29:38.769 1000 FEE 436699 15282 6048842 2024-02-23 22:29:38.769 2024-02-23 22:29:38.769 9000 TIP 436699 11821 6048869 2024-02-23 22:39:25.081 2024-02-23 22:39:25.081 10000 FEE 436536 15510 6048870 2024-02-23 22:39:25.081 2024-02-23 22:39:25.081 90000 TIP 436536 1471 6048880 2024-02-23 22:42:28.636 2024-02-23 22:42:28.636 1000 FEE 436712 4027 6048932 2024-02-23 22:58:15.192 2024-02-23 22:58:15.192 500 FEE 436560 10342 6048933 2024-02-23 22:58:15.192 2024-02-23 22:58:15.192 4500 TIP 436560 18235 6048951 2024-02-23 22:59:43.049 2024-02-23 22:59:43.049 1000 FEE 436716 3377 6048962 2024-02-23 23:03:40.313 2024-02-23 23:03:40.313 1000 FEE 436649 1003 6048963 2024-02-23 23:03:40.313 2024-02-23 23:03:40.313 9000 TIP 436649 19796 6048982 2024-02-23 23:03:45.7 2024-02-23 23:03:45.7 1000 FEE 436649 13132 6048983 2024-02-23 23:03:45.7 2024-02-23 23:03:45.7 9000 TIP 436649 19462 6049025 2024-02-23 23:16:07.567 2024-02-23 23:16:07.567 10000 FEE 436611 19174 6049026 2024-02-23 23:16:07.567 2024-02-23 23:16:07.567 90000 TIP 436611 1208 6049045 2024-02-23 23:20:42.497 2024-02-23 23:20:42.497 100 FEE 436720 12422 6049046 2024-02-23 23:20:42.497 2024-02-23 23:20:42.497 900 TIP 436720 777 6049049 2024-02-23 23:20:43.626 2024-02-23 23:20:43.626 100 FEE 436720 1472 6049050 2024-02-23 23:20:43.626 2024-02-23 23:20:43.626 900 TIP 436720 992 6049051 2024-02-23 23:20:44.663 2024-02-23 23:20:44.663 100 FEE 436720 1120 6049052 2024-02-23 23:20:44.663 2024-02-23 23:20:44.663 900 TIP 436720 11075 6049053 2024-02-23 23:20:46.062 2024-02-23 23:20:46.062 100 FEE 436720 18321 6049054 2024-02-23 23:20:46.062 2024-02-23 23:20:46.062 900 TIP 436720 1094 6049055 2024-02-23 23:20:47.431 2024-02-23 23:20:47.431 100 FEE 436720 13042 6049056 2024-02-23 23:20:47.431 2024-02-23 23:20:47.431 900 TIP 436720 16536 6049091 2024-02-23 23:24:47.007 2024-02-23 23:24:47.007 1000 FEE 436491 21051 6049092 2024-02-23 23:24:47.007 2024-02-23 23:24:47.007 9000 TIP 436491 5500 6049112 2024-02-23 23:25:11.177 2024-02-23 23:25:11.177 5000 FEE 436560 633 6049113 2024-02-23 23:25:11.177 2024-02-23 23:25:11.177 45000 TIP 436560 10638 6049128 2024-02-23 23:25:48.137 2024-02-23 23:25:48.137 2300 FEE 436612 19153 6049129 2024-02-23 23:25:48.137 2024-02-23 23:25:48.137 20700 TIP 436612 16176 6049130 2024-02-23 23:25:48.519 2024-02-23 23:25:48.519 2300 FEE 436612 20511 6049131 2024-02-23 23:25:48.519 2024-02-23 23:25:48.519 20700 TIP 436612 882 6049137 2024-02-23 23:26:11.956 2024-02-23 23:26:11.956 1000 FEE 435987 9348 6049138 2024-02-23 23:26:11.956 2024-02-23 23:26:11.956 9000 TIP 435987 985 6049149 2024-02-23 23:26:32.048 2024-02-23 23:26:32.048 2300 FEE 436720 14278 6049150 2024-02-23 23:26:32.048 2024-02-23 23:26:32.048 20700 TIP 436720 12272 6049180 2024-02-23 23:30:30.075 2024-02-23 23:30:30.075 1000 FEE 436732 1959 6049197 2024-02-23 23:32:25.634 2024-02-23 23:32:25.634 2100 FEE 436696 9421 6049198 2024-02-23 23:32:25.634 2024-02-23 23:32:25.634 18900 TIP 436696 1609 6049215 2024-02-23 23:33:49.192 2024-02-23 23:33:49.192 8300 FEE 436729 4259 6049216 2024-02-23 23:33:49.192 2024-02-23 23:33:49.192 74700 TIP 436729 21329 6049221 2024-02-23 23:33:52.901 2024-02-23 23:33:52.901 8300 FEE 436729 4973 6049222 2024-02-23 23:33:52.901 2024-02-23 23:33:52.901 74700 TIP 436729 656 6049227 2024-02-23 23:33:53.559 2024-02-23 23:33:53.559 8300 FEE 436729 18270 6049228 2024-02-23 23:33:53.559 2024-02-23 23:33:53.559 74700 TIP 436729 17227 6049237 2024-02-23 23:33:54.173 2024-02-23 23:33:54.173 8300 FEE 436729 14905 6049238 2024-02-23 23:33:54.173 2024-02-23 23:33:54.173 74700 TIP 436729 4521 6049266 2024-02-23 23:34:58.962 2024-02-23 23:34:58.962 3300 FEE 436695 1090 6049267 2024-02-23 23:34:58.962 2024-02-23 23:34:58.962 29700 TIP 436695 965 6049268 2024-02-23 23:35:02.018 2024-02-23 23:35:02.018 3300 FEE 436695 1213 6049269 2024-02-23 23:35:02.018 2024-02-23 23:35:02.018 29700 TIP 436695 617 6049310 2024-02-23 23:40:22.049 2024-02-23 23:40:22.049 100 FEE 436736 9362 6049311 2024-02-23 23:40:22.049 2024-02-23 23:40:22.049 900 TIP 436736 21271 6049312 2024-02-23 23:40:22.237 2024-02-23 23:40:22.237 900 FEE 436736 1195 6049313 2024-02-23 23:40:22.237 2024-02-23 23:40:22.237 8100 TIP 436736 21314 6049333 2024-02-23 23:41:55.313 2024-02-23 23:41:55.313 500 FEE 435728 21571 6049334 2024-02-23 23:41:55.313 2024-02-23 23:41:55.313 4500 TIP 435728 9275 6049343 2024-02-23 23:43:10.063 2024-02-23 23:43:10.063 500 FEE 436694 998 6049344 2024-02-23 23:43:10.063 2024-02-23 23:43:10.063 4500 TIP 436694 1726 6049371 2024-02-23 23:44:28.411 2024-02-23 23:44:28.411 3000 FEE 436702 20613 6049372 2024-02-23 23:44:28.411 2024-02-23 23:44:28.411 27000 TIP 436702 11967 6049390 2024-02-23 23:46:14.776 2024-02-23 23:46:14.776 2800 FEE 423683 8004 6048310 2024-02-23 21:16:10.846 2024-02-23 21:16:10.846 10000 FEE 436650 4502 6048311 2024-02-23 21:16:10.846 2024-02-23 21:16:10.846 90000 TIP 436650 2328 6048315 2024-02-23 21:17:39.295 2024-02-23 21:17:39.295 3000 FEE 436658 1611 6048316 2024-02-23 21:17:39.295 2024-02-23 21:17:39.295 27000 TIP 436658 1626 6048333 2024-02-23 21:23:36.312 2024-02-23 21:23:36.312 2100 FEE 436658 6687 6048334 2024-02-23 21:23:36.312 2024-02-23 21:23:36.312 18900 TIP 436658 21263 6048342 2024-02-23 21:25:17.577 2024-02-23 21:25:17.577 1000 FEE 436665 15536 6048344 2024-02-23 21:26:51.541 2024-02-23 21:26:51.541 300 FEE 435876 21239 6048345 2024-02-23 21:26:51.541 2024-02-23 21:26:51.541 2700 TIP 435876 3990 6048355 2024-02-23 21:30:00.772 2024-02-23 21:30:00.772 1000 FEE 436669 19189 6048356 2024-02-23 21:30:00.772 2024-02-23 21:30:00.772 9000 TIP 436669 1401 6048387 2024-02-23 21:30:53.324 2024-02-23 21:30:53.324 1000 FEE 436669 21417 6048388 2024-02-23 21:30:53.324 2024-02-23 21:30:53.324 9000 TIP 436669 10359 6048397 2024-02-23 21:30:54.306 2024-02-23 21:30:54.306 1000 FEE 436669 2326 6048398 2024-02-23 21:30:54.306 2024-02-23 21:30:54.306 9000 TIP 436669 9334 6048407 2024-02-23 21:31:01.156 2024-02-23 21:31:01.156 1000 FEE 436669 19541 6048408 2024-02-23 21:31:01.156 2024-02-23 21:31:01.156 9000 TIP 436669 3683 6048409 2024-02-23 21:31:01.596 2024-02-23 21:31:01.596 1000 FEE 436669 651 6048410 2024-02-23 21:31:01.596 2024-02-23 21:31:01.596 9000 TIP 436669 20969 6048426 2024-02-23 21:31:11.654 2024-02-23 21:31:11.654 1000 FEE 436669 17217 6048427 2024-02-23 21:31:11.654 2024-02-23 21:31:11.654 9000 TIP 436669 20254 6048443 2024-02-23 21:32:35.034 2024-02-23 21:32:35.034 500000 FEE 432920 11144 6048444 2024-02-23 21:32:35.034 2024-02-23 21:32:35.034 4500000 TIP 432920 1647 6048470 2024-02-23 21:36:49.634 2024-02-23 21:36:49.634 1000 FEE 436676 20264 6048499 2024-02-23 21:45:03.812 2024-02-23 21:45:03.812 2100 FEE 436609 21157 6048500 2024-02-23 21:45:03.812 2024-02-23 21:45:03.812 18900 TIP 436609 15484 6048543 2024-02-23 21:49:34.927 2024-02-23 21:49:34.927 1000 FEE 436686 18188 6048544 2024-02-23 21:49:34.927 2024-02-23 21:49:34.927 9000 TIP 436686 15161 6048557 2024-02-23 21:49:57.78 2024-02-23 21:49:57.78 1000 FEE 436683 21271 6048558 2024-02-23 21:49:57.78 2024-02-23 21:49:57.78 9000 TIP 436683 2652 6048632 2024-02-23 21:57:48.434 2024-02-23 21:57:48.434 0 FEE 436692 5069 6048634 2024-02-23 21:58:09.997 2024-02-23 21:58:09.997 1000 FEE 436695 17064 6048640 2024-02-23 21:59:11.62 2024-02-23 21:59:11.62 1000 FEE 436695 11288 6048641 2024-02-23 21:59:11.62 2024-02-23 21:59:11.62 9000 TIP 436695 17166 6048648 2024-02-23 22:00:24.984 2024-02-23 22:00:24.984 1000 FEE 436523 678 6048649 2024-02-23 22:00:24.984 2024-02-23 22:00:24.984 9000 TIP 436523 11898 6048670 2024-02-23 22:02:33.117 2024-02-23 22:02:33.117 1000 FEE 436698 2508 6048685 2024-02-23 22:03:31.024 2024-02-23 22:03:31.024 1000 FEE 436673 4292 6048686 2024-02-23 22:03:31.024 2024-02-23 22:03:31.024 9000 TIP 436673 7746 6048697 2024-02-23 22:03:33.844 2024-02-23 22:03:33.844 2300 FEE 436669 13174 6048698 2024-02-23 22:03:33.844 2024-02-23 22:03:33.844 20700 TIP 436669 9354 6048699 2024-02-23 22:03:34.041 2024-02-23 22:03:34.041 2300 FEE 436669 2061 6048700 2024-02-23 22:03:34.041 2024-02-23 22:03:34.041 20700 TIP 436669 5852 6048701 2024-02-23 22:03:34.176 2024-02-23 22:03:34.176 2300 FEE 436669 6573 6048702 2024-02-23 22:03:34.176 2024-02-23 22:03:34.176 20700 TIP 436669 6327 6048711 2024-02-23 22:05:32.329 2024-02-23 22:05:32.329 8300 FEE 436666 13361 6048712 2024-02-23 22:05:32.329 2024-02-23 22:05:32.329 74700 TIP 436666 20776 6048726 2024-02-23 22:06:09.285 2024-02-23 22:06:09.285 1000 FEE 436513 15282 6048727 2024-02-23 22:06:09.285 2024-02-23 22:06:09.285 9000 TIP 436513 14939 6048778 2024-02-23 22:22:37.06 2024-02-23 22:22:37.06 100 FEE 436556 1825 6048779 2024-02-23 22:22:37.06 2024-02-23 22:22:37.06 900 TIP 436556 13798 6048783 2024-02-23 22:23:11.61 2024-02-23 22:23:11.61 8300 FEE 436669 831 6048784 2024-02-23 22:23:11.61 2024-02-23 22:23:11.61 74700 TIP 436669 2335 6048805 2024-02-23 22:23:14.442 2024-02-23 22:23:14.442 8300 FEE 436669 7869 6048806 2024-02-23 22:23:14.442 2024-02-23 22:23:14.442 74700 TIP 436669 5828 6048815 2024-02-23 22:25:54.749 2024-02-23 22:25:54.749 3300 FEE 436566 675 6048816 2024-02-23 22:25:54.749 2024-02-23 22:25:54.749 29700 TIP 436566 16052 6048818 2024-02-23 22:26:09.257 2024-02-23 22:26:09.257 3200 FEE 436639 5455 6048819 2024-02-23 22:26:09.257 2024-02-23 22:26:09.257 28800 TIP 436639 1319 6048830 2024-02-23 22:28:12.851 2024-02-23 22:28:12.851 1000 FEE 436493 21466 6048831 2024-02-23 22:28:12.851 2024-02-23 22:28:12.851 9000 TIP 436493 15719 6048834 2024-02-23 22:28:30.837 2024-02-23 22:28:30.837 1000 FEE 436258 3377 6048835 2024-02-23 22:28:30.837 2024-02-23 22:28:30.837 9000 TIP 436258 20825 6048836 2024-02-23 22:28:45.339 2024-02-23 22:28:45.339 1000 FEE 436330 16214 6048837 2024-02-23 22:28:45.339 2024-02-23 22:28:45.339 9000 TIP 436330 14247 6048863 2024-02-23 22:37:29.269 2024-02-23 22:37:29.269 2100 FEE 436683 11263 6048864 2024-02-23 22:37:29.269 2024-02-23 22:37:29.269 18900 TIP 436683 16329 6048867 2024-02-23 22:38:54.829 2024-02-23 22:38:54.829 1000 FEE 436711 16679 6048875 2024-02-23 22:41:44.24 2024-02-23 22:41:44.24 2100 FEE 436335 12265 6048876 2024-02-23 22:41:44.24 2024-02-23 22:41:44.24 18900 TIP 436335 21624 6048882 2024-02-23 22:43:36.197 2024-02-23 22:43:36.197 2100 FEE 436298 17455 6048883 2024-02-23 22:43:36.197 2024-02-23 22:43:36.197 18900 TIP 436298 17275 6048890 2024-02-23 22:45:36.705 2024-02-23 22:45:36.705 10000 FEE 375209 19398 6048891 2024-02-23 22:45:36.705 2024-02-23 22:45:36.705 90000 TIP 375209 8713 6048898 2024-02-23 22:48:27.197 2024-02-23 22:48:27.197 1000 POLL 436323 9334 6048934 2024-02-23 22:58:16.083 2024-02-23 22:58:16.083 500 FEE 436593 730 6048935 2024-02-23 22:58:16.083 2024-02-23 22:58:16.083 4500 TIP 436593 12289 6048940 2024-02-23 22:58:18.164 2024-02-23 22:58:18.164 500 FEE 436683 14552 6048390 2024-02-23 21:30:53.504 2024-02-23 21:30:53.504 9000 TIP 436669 20299 6048391 2024-02-23 21:30:53.713 2024-02-23 21:30:53.713 1000 FEE 436669 20691 6048392 2024-02-23 21:30:53.713 2024-02-23 21:30:53.713 9000 TIP 436669 9367 6048434 2024-02-23 21:31:17.122 2024-02-23 21:31:17.122 1000 FEE 436669 2039 6048435 2024-02-23 21:31:17.122 2024-02-23 21:31:17.122 9000 TIP 436669 18511 6048451 2024-02-23 21:32:54.157 2024-02-23 21:32:54.157 9000 FEE 436669 19500 6048452 2024-02-23 21:32:54.157 2024-02-23 21:32:54.157 81000 TIP 436669 4043 6048458 2024-02-23 21:33:08.998 2024-02-23 21:33:08.998 900000 FEE 436669 17042 6048459 2024-02-23 21:33:08.998 2024-02-23 21:33:08.998 8100000 TIP 436669 13782 6048491 2024-02-23 21:43:48.208 2024-02-23 21:43:48.208 1000 FEE 436665 14037 6048492 2024-02-23 21:43:48.208 2024-02-23 21:43:48.208 9000 TIP 436665 13903 6048501 2024-02-23 21:45:30.665 2024-02-23 21:45:30.665 10000 FEE 436681 686 6048507 2024-02-23 21:46:06.617 2024-02-23 21:46:06.617 3000 FEE 436674 5520 6048508 2024-02-23 21:46:06.617 2024-02-23 21:46:06.617 27000 TIP 436674 746 6048517 2024-02-23 21:46:17.318 2024-02-23 21:46:17.318 100 FEE 436566 2013 6048518 2024-02-23 21:46:17.318 2024-02-23 21:46:17.318 900 TIP 436566 16052 6048529 2024-02-23 21:48:27.985 2024-02-23 21:48:27.985 1000 FEE 436685 6515 6048531 2024-02-23 21:49:27.491 2024-02-23 21:49:27.491 10000 FEE 436686 15148 6048533 2024-02-23 21:49:34.159 2024-02-23 21:49:34.159 1000 FEE 436686 3729 6048534 2024-02-23 21:49:34.159 2024-02-23 21:49:34.159 9000 TIP 436686 21619 6048569 2024-02-23 21:51:52.758 2024-02-23 21:51:52.758 0 FEE 436683 9169 6048576 2024-02-23 21:53:22.843 2024-02-23 21:53:22.843 100000 DONT_LIKE_THIS 436508 19777 6048588 2024-02-23 21:53:53.176 2024-02-23 21:53:53.176 1000 FEE 436683 11263 6048589 2024-02-23 21:53:53.176 2024-02-23 21:53:53.176 9000 TIP 436683 10981 6048592 2024-02-23 21:53:53.501 2024-02-23 21:53:53.501 1000 FEE 436683 18170 6048593 2024-02-23 21:53:53.501 2024-02-23 21:53:53.501 9000 TIP 436683 9378 6048598 2024-02-23 21:53:53.993 2024-02-23 21:53:53.993 1000 FEE 436683 20409 6048599 2024-02-23 21:53:53.993 2024-02-23 21:53:53.993 9000 TIP 436683 9809 6048609 2024-02-23 21:55:10.299 2024-02-23 21:55:10.299 1000 FEE 436690 16929 6048612 2024-02-23 21:56:07.744 2024-02-23 21:56:07.744 2100 FEE 436093 12768 6048613 2024-02-23 21:56:07.744 2024-02-23 21:56:07.744 18900 TIP 436093 1836 6048644 2024-02-23 21:59:12.014 2024-02-23 21:59:12.014 1000 FEE 436695 2156 6048476 2024-02-23 21:39:16.832 2024-02-23 21:39:16.832 300 FEE 436549 17148 6048477 2024-02-23 21:39:16.832 2024-02-23 21:39:16.832 2700 TIP 436549 16447 6048483 2024-02-23 21:40:17.816 2024-02-23 21:40:17.816 0 FEE 436677 12566 6048489 2024-02-23 21:43:47.283 2024-02-23 21:43:47.283 1000 FEE 436678 18727 6048490 2024-02-23 21:43:47.283 2024-02-23 21:43:47.283 9000 TIP 436678 21139 6048511 2024-02-23 21:46:16.574 2024-02-23 21:46:16.574 100 FEE 436566 18557 6048512 2024-02-23 21:46:16.574 2024-02-23 21:46:16.574 900 TIP 436566 19967 6048515 2024-02-23 21:46:16.991 2024-02-23 21:46:16.991 100 FEE 436566 9078 6048516 2024-02-23 21:46:16.991 2024-02-23 21:46:16.991 900 TIP 436566 20998 6048519 2024-02-23 21:46:17.693 2024-02-23 21:46:17.693 100 FEE 436566 19652 6048520 2024-02-23 21:46:17.693 2024-02-23 21:46:17.693 900 TIP 436566 21562 6048541 2024-02-23 21:49:34.765 2024-02-23 21:49:34.765 1000 FEE 436686 13204 6048542 2024-02-23 21:49:34.765 2024-02-23 21:49:34.765 9000 TIP 436686 1094 6048555 2024-02-23 21:49:57.541 2024-02-23 21:49:57.541 1000 FEE 436683 4175 6048556 2024-02-23 21:49:57.541 2024-02-23 21:49:57.541 9000 TIP 436683 20577 6048559 2024-02-23 21:50:02.013 2024-02-23 21:50:02.013 21000 FEE 436687 13406 6048571 2024-02-23 21:53:00.907 2024-02-23 21:53:00.907 1000 FEE 436560 20554 6048572 2024-02-23 21:53:00.907 2024-02-23 21:53:00.907 9000 TIP 436560 16301 6048580 2024-02-23 21:53:51.565 2024-02-23 21:53:51.565 1000 FEE 436683 12422 6048581 2024-02-23 21:53:51.565 2024-02-23 21:53:51.565 9000 TIP 436683 6471 6048584 2024-02-23 21:53:52.808 2024-02-23 21:53:52.808 1000 FEE 436683 16954 6048585 2024-02-23 21:53:52.808 2024-02-23 21:53:52.808 9000 TIP 436683 19992 6048635 2024-02-23 21:58:15.173 2024-02-23 21:58:15.173 4600 FEE 436690 12483 6048636 2024-02-23 21:58:15.173 2024-02-23 21:58:15.173 41400 TIP 436690 19148 6048656 2024-02-23 22:00:44.185 2024-02-23 22:00:44.185 1000 FEE 436523 19663 6048657 2024-02-23 22:00:44.185 2024-02-23 22:00:44.185 9000 TIP 436523 14669 6048663 2024-02-23 22:01:27.766 2024-02-23 22:01:27.766 1000 FEE 436697 1429 6048758 2024-02-23 22:16:57.49 2024-02-23 22:16:57.49 3000 FEE 436538 2718 6048759 2024-02-23 22:16:57.49 2024-02-23 22:16:57.49 27000 TIP 436538 19863 6048766 2024-02-23 22:19:37.515 2024-02-23 22:19:37.515 4000 FEE 436686 795 6048767 2024-02-23 22:19:37.515 2024-02-23 22:19:37.515 36000 TIP 436686 17415 6048797 2024-02-23 22:23:12.538 2024-02-23 22:23:12.538 8300 FEE 436669 5809 6048798 2024-02-23 22:23:12.538 2024-02-23 22:23:12.538 74700 TIP 436669 929 6048820 2024-02-23 22:26:17.06 2024-02-23 22:26:17.06 3200 FEE 436639 11498 6048821 2024-02-23 22:26:17.06 2024-02-23 22:26:17.06 28800 TIP 436639 18736 6048861 2024-02-23 22:37:26.858 2024-02-23 22:37:26.858 4000 FEE 436709 19037 6048862 2024-02-23 22:37:26.858 2024-02-23 22:37:26.858 36000 TIP 436709 733 6048907 2024-02-23 22:53:52.527 2024-02-23 22:53:52.527 2300 FEE 436708 3709 6048908 2024-02-23 22:53:52.527 2024-02-23 22:53:52.527 20700 TIP 436708 18989 6048914 2024-02-23 22:54:15.507 2024-02-23 22:54:15.507 1300 FEE 436464 1124 6048915 2024-02-23 22:54:15.507 2024-02-23 22:54:15.507 11700 TIP 436464 9345 6048936 2024-02-23 22:58:16.873 2024-02-23 22:58:16.873 500 FEE 436566 825 6048937 2024-02-23 22:58:16.873 2024-02-23 22:58:16.873 4500 TIP 436566 9816 6048956 2024-02-23 23:01:17.692 2024-02-23 23:01:17.692 1000 FEE 436717 657 6048966 2024-02-23 23:03:40.778 2024-02-23 23:03:40.778 1000 FEE 436649 11075 6048967 2024-02-23 23:03:40.778 2024-02-23 23:03:40.778 9000 TIP 436649 8162 6048988 2024-02-23 23:03:47.615 2024-02-23 23:03:47.615 1000 FEE 436649 1425 6048989 2024-02-23 23:03:47.615 2024-02-23 23:03:47.615 9000 TIP 436649 15662 6049005 2024-02-23 23:12:30.824 2024-02-23 23:12:30.824 1000 FEE 436720 19044 6049006 2024-02-23 23:12:30.824 2024-02-23 23:12:30.824 9000 TIP 436720 2195 6049007 2024-02-23 23:12:31.017 2024-02-23 23:12:31.017 1000 FEE 436720 9342 6049008 2024-02-23 23:12:31.017 2024-02-23 23:12:31.017 9000 TIP 436720 18904 6049009 2024-02-23 23:12:31.21 2024-02-23 23:12:31.21 1000 FEE 436720 9820 6049010 2024-02-23 23:12:31.21 2024-02-23 23:12:31.21 9000 TIP 436720 11760 6049065 2024-02-23 23:22:22.127 2024-02-23 23:22:22.127 100 FEE 433943 19263 6049066 2024-02-23 23:22:22.127 2024-02-23 23:22:22.127 900 TIP 433943 10102 6049072 2024-02-23 23:24:12.691 2024-02-23 23:24:12.691 5000 FEE 436669 21012 6049073 2024-02-23 23:24:12.691 2024-02-23 23:24:12.691 45000 TIP 436669 21159 6049093 2024-02-23 23:24:47.256 2024-02-23 23:24:47.256 1000 FEE 436491 12024 6049094 2024-02-23 23:24:47.256 2024-02-23 23:24:47.256 9000 TIP 436491 13097 6049116 2024-02-23 23:25:33.281 2024-02-23 23:25:33.281 2300 FEE 436716 1552 6049117 2024-02-23 23:25:33.281 2024-02-23 23:25:33.281 20700 TIP 436716 5520 6049124 2024-02-23 23:25:46.805 2024-02-23 23:25:46.805 2300 FEE 436612 14370 6049125 2024-02-23 23:25:46.805 2024-02-23 23:25:46.805 20700 TIP 436612 19469 6049151 2024-02-23 23:26:33.052 2024-02-23 23:26:33.052 2300 FEE 436720 9906 6049152 2024-02-23 23:26:33.052 2024-02-23 23:26:33.052 20700 TIP 436720 21494 6049153 2024-02-23 23:26:33.467 2024-02-23 23:26:33.467 2300 FEE 436720 19902 6049154 2024-02-23 23:26:33.467 2024-02-23 23:26:33.467 20700 TIP 436720 16970 6049163 2024-02-23 23:27:05.154 2024-02-23 23:27:05.154 5000 FEE 436527 19987 6049164 2024-02-23 23:27:05.154 2024-02-23 23:27:05.154 45000 TIP 436527 19531 6049177 2024-02-23 23:28:22.131 2024-02-23 23:28:22.131 1000 FEE 436731 21207 6049199 2024-02-23 23:32:31.103 2024-02-23 23:32:31.103 2100 FEE 436698 19121 6049200 2024-02-23 23:32:31.103 2024-02-23 23:32:31.103 18900 TIP 436698 10270 6049210 2024-02-23 23:33:43.067 2024-02-23 23:33:43.067 100000 FEE 436733 7125 6049243 2024-02-23 23:34:00.995 2024-02-23 23:34:00.995 900 FEE 436683 16847 6049244 2024-02-23 23:34:00.995 2024-02-23 23:34:00.995 8100 TIP 436683 7960 6049258 2024-02-23 23:34:41.556 2024-02-23 23:34:41.556 2800 FEE 436339 4633 6049259 2024-02-23 23:34:41.556 2024-02-23 23:34:41.556 25200 TIP 436339 5829 6049276 2024-02-23 23:35:46.345 2024-02-23 23:35:46.345 900 FEE 436720 660 6049277 2024-02-23 23:35:46.345 2024-02-23 23:35:46.345 8100 TIP 436720 19980 6049287 2024-02-23 23:37:16.101 2024-02-23 23:37:16.101 2800 FEE 436268 10934 6049288 2024-02-23 23:37:16.101 2024-02-23 23:37:16.101 25200 TIP 436268 17513 6049292 2024-02-23 23:38:16.025 2024-02-23 23:38:16.025 2500 FEE 436560 11678 6049293 2024-02-23 23:38:16.025 2024-02-23 23:38:16.025 22500 TIP 436560 5776 6049302 2024-02-23 23:39:47.528 2024-02-23 23:39:47.528 9000 FEE 436656 18008 6049303 2024-02-23 23:39:47.528 2024-02-23 23:39:47.528 81000 TIP 436656 20972 6049318 2024-02-23 23:40:32.232 2024-02-23 23:40:32.232 9000 FEE 436733 1208 6049319 2024-02-23 23:40:32.232 2024-02-23 23:40:32.232 81000 TIP 436733 1471 6049320 2024-02-23 23:40:52.887 2024-02-23 23:40:52.887 2800 FEE 434321 5759 6049321 2024-02-23 23:40:52.887 2024-02-23 23:40:52.887 25200 TIP 434321 2431 6049322 2024-02-23 23:40:57.312 2024-02-23 23:40:57.312 10000 FEE 436722 19906 6049323 2024-02-23 23:40:57.312 2024-02-23 23:40:57.312 90000 TIP 436722 16341 6049375 2024-02-23 23:44:40.316 2024-02-23 23:44:40.316 500 FEE 436093 807 6049376 2024-02-23 23:44:40.316 2024-02-23 23:44:40.316 4500 TIP 436093 1012 6049416 2024-02-23 23:49:11.369 2024-02-23 23:49:11.369 100 FEE 436733 8045 6049417 2024-02-23 23:49:11.369 2024-02-23 23:49:11.369 900 TIP 436733 11516 6049421 2024-02-23 23:49:19.328 2024-02-23 23:49:19.328 1000 FEE 436747 17602 6049445 2024-02-23 23:51:36.255 2024-02-23 23:51:36.255 500 FEE 436669 4391 6048504 2024-02-23 21:45:53.053 2024-02-23 21:45:53.053 1000 FEE 436665 768 6048505 2024-02-23 21:45:53.053 2024-02-23 21:45:53.053 9000 TIP 436665 20439 6048513 2024-02-23 21:46:16.765 2024-02-23 21:46:16.765 100 FEE 436566 19494 6048514 2024-02-23 21:46:16.765 2024-02-23 21:46:16.765 900 TIP 436566 19796 6048521 2024-02-23 21:46:18.204 2024-02-23 21:46:18.204 100 FEE 436566 1737 6048522 2024-02-23 21:46:18.204 2024-02-23 21:46:18.204 900 TIP 436566 17696 6048523 2024-02-23 21:46:31.19 2024-02-23 21:46:31.19 210000 FEE 436683 672 6048563 2024-02-23 21:50:22.392 2024-02-23 21:50:22.392 1000 FEE 436683 802 6048564 2024-02-23 21:50:22.392 2024-02-23 21:50:22.392 9000 TIP 436683 616 6048573 2024-02-23 21:53:01.85 2024-02-23 21:53:01.85 9000 FEE 436560 1773 6048574 2024-02-23 21:53:01.85 2024-02-23 21:53:01.85 81000 TIP 436560 9863 6048577 2024-02-23 21:53:27.979 2024-02-23 21:53:27.979 100000 DONT_LIKE_THIS 436508 20889 6048578 2024-02-23 21:53:51.33 2024-02-23 21:53:51.33 1000 FEE 436683 6260 6048579 2024-02-23 21:53:51.33 2024-02-23 21:53:51.33 9000 TIP 436683 20756 6048610 2024-02-23 21:55:55.547 2024-02-23 21:55:55.547 1000 FEE 436691 7418 6048619 2024-02-23 21:57:00.949 2024-02-23 21:57:00.949 100 FEE 436566 19156 6048620 2024-02-23 21:57:00.949 2024-02-23 21:57:00.949 900 TIP 436566 5527 6048623 2024-02-23 21:57:01.406 2024-02-23 21:57:01.406 100 FEE 436566 9705 6048624 2024-02-23 21:57:01.406 2024-02-23 21:57:01.406 900 TIP 436566 20370 6048637 2024-02-23 21:58:16.304 2024-02-23 21:58:16.304 2300 FEE 436690 20901 6048638 2024-02-23 21:58:16.304 2024-02-23 21:58:16.304 20700 TIP 436690 11430 6048666 2024-02-23 22:02:30.978 2024-02-23 22:02:30.978 2300 FEE 436696 18330 6048667 2024-02-23 22:02:30.978 2024-02-23 22:02:30.978 20700 TIP 436696 6393 6048668 2024-02-23 22:02:31.33 2024-02-23 22:02:31.33 4600 FEE 436696 21338 6048669 2024-02-23 22:02:31.33 2024-02-23 22:02:31.33 41400 TIP 436696 12774 6048676 2024-02-23 22:02:59.851 2024-02-23 22:02:59.851 5900 FEE 436698 18178 6048677 2024-02-23 22:02:59.851 2024-02-23 22:02:59.851 53100 TIP 436698 20701 6048703 2024-02-23 22:03:34.379 2024-02-23 22:03:34.379 2300 FEE 436669 17183 6048704 2024-02-23 22:03:34.379 2024-02-23 22:03:34.379 20700 TIP 436669 20636 6048709 2024-02-23 22:05:32.207 2024-02-23 22:05:32.207 8300 FEE 436666 21228 6048710 2024-02-23 22:05:32.207 2024-02-23 22:05:32.207 74700 TIP 436666 11678 6048717 2024-02-23 22:05:34.023 2024-02-23 22:05:34.023 8300 FEE 436666 20376 6048718 2024-02-23 22:05:34.023 2024-02-23 22:05:34.023 74700 TIP 436666 848 6048730 2024-02-23 22:06:09.718 2024-02-23 22:06:09.718 1000 FEE 436513 20094 6048731 2024-02-23 22:06:09.718 2024-02-23 22:06:09.718 9000 TIP 436513 18051 6048745 2024-02-23 22:12:12.739 2024-02-23 22:12:12.739 1000 FEE 436703 9329 6048749 2024-02-23 22:13:31.88 2024-02-23 22:13:31.88 21000 FEE 436704 6688 6048751 2024-02-23 22:14:29.512 2024-02-23 22:14:29.512 2100 FEE 436703 14515 6048752 2024-02-23 22:14:29.512 2024-02-23 22:14:29.512 18900 TIP 436703 19541 6048771 2024-02-23 22:20:35.883 2024-02-23 22:20:35.883 4000 FEE 436649 1519 6048772 2024-02-23 22:20:35.883 2024-02-23 22:20:35.883 36000 TIP 436649 4043 6048801 2024-02-23 22:23:13.502 2024-02-23 22:23:13.502 8300 FEE 436669 16296 6048802 2024-02-23 22:23:13.502 2024-02-23 22:23:13.502 74700 TIP 436669 675 6048811 2024-02-23 22:23:14.861 2024-02-23 22:23:14.861 8300 FEE 436669 762 6048812 2024-02-23 22:23:14.861 2024-02-23 22:23:14.861 74700 TIP 436669 1631 6048825 2024-02-23 22:27:49.609 2024-02-23 22:27:49.609 1000 FEE 436560 13547 6048826 2024-02-23 22:27:49.609 2024-02-23 22:27:49.609 9000 TIP 436560 18601 6048849 2024-02-23 22:32:06.216 2024-02-23 22:32:06.216 100000 FEE 436709 937 6048866 2024-02-23 22:38:49.858 2024-02-23 22:38:49.858 1000 FEE 436710 6555 6048872 2024-02-23 22:40:09.12 2024-02-23 22:40:09.12 200 FEE 436704 896 6048873 2024-02-23 22:40:09.12 2024-02-23 22:40:09.12 1800 TIP 436704 12057 6048938 2024-02-23 22:58:17.611 2024-02-23 22:58:17.611 500 FEE 436493 15560 6048939 2024-02-23 22:58:17.611 2024-02-23 22:58:17.611 4500 TIP 436493 9329 6048964 2024-02-23 23:03:40.592 2024-02-23 23:03:40.592 1000 FEE 436649 17411 6048965 2024-02-23 23:03:40.592 2024-02-23 23:03:40.592 9000 TIP 436649 21446 6048968 2024-02-23 23:03:41.321 2024-02-23 23:03:41.321 1000 FEE 436649 20187 6048969 2024-02-23 23:03:41.321 2024-02-23 23:03:41.321 9000 TIP 436649 16350 6048974 2024-02-23 23:03:44.132 2024-02-23 23:03:44.132 1000 FEE 436649 19911 6048975 2024-02-23 23:03:44.132 2024-02-23 23:03:44.132 9000 TIP 436649 8729 6048978 2024-02-23 23:03:44.461 2024-02-23 23:03:44.461 1000 FEE 436649 9353 6048979 2024-02-23 23:03:44.461 2024-02-23 23:03:44.461 9000 TIP 436649 19796 6049003 2024-02-23 23:12:30.639 2024-02-23 23:12:30.639 1000 FEE 436720 13042 6049004 2024-02-23 23:12:30.639 2024-02-23 23:12:30.639 9000 TIP 436720 7746 6049031 2024-02-23 23:16:58.657 2024-02-23 23:16:58.657 4000 FEE 436720 3417 6049032 2024-02-23 23:16:58.657 2024-02-23 23:16:58.657 36000 TIP 436720 19403 6049036 2024-02-23 23:20:00.95 2024-02-23 23:20:00.95 1000 FEE 436723 20479 6049039 2024-02-23 23:20:40.464 2024-02-23 23:20:40.464 100 FEE 436720 2065 6049040 2024-02-23 23:20:40.464 2024-02-23 23:20:40.464 900 TIP 436720 2326 6049041 2024-02-23 23:20:41.111 2024-02-23 23:20:41.111 100 FEE 436720 11942 6049042 2024-02-23 23:20:41.111 2024-02-23 23:20:41.111 900 TIP 436720 18231 6049097 2024-02-23 23:24:47.539 2024-02-23 23:24:47.539 1000 FEE 436491 16680 6049098 2024-02-23 23:24:47.539 2024-02-23 23:24:47.539 9000 TIP 436491 738 6049103 2024-02-23 23:25:03.173 2024-02-23 23:25:03.173 2300 FEE 436717 13527 6049104 2024-02-23 23:25:03.173 2024-02-23 23:25:03.173 20700 TIP 436717 12911 6049120 2024-02-23 23:25:46.434 2024-02-23 23:25:46.434 2300 FEE 436612 13348 6049121 2024-02-23 23:25:46.434 2024-02-23 23:25:46.434 20700 TIP 436612 16988 6049135 2024-02-23 23:26:00.283 2024-02-23 23:26:00.283 1000 FEE 436728 17523 6049141 2024-02-23 23:26:30.961 2024-02-23 23:26:30.961 2300 FEE 436720 20168 6049142 2024-02-23 23:26:30.961 2024-02-23 23:26:30.961 20700 TIP 436720 17014 6049143 2024-02-23 23:26:31.183 2024-02-23 23:26:31.183 2300 FEE 436720 13798 6049144 2024-02-23 23:26:31.183 2024-02-23 23:26:31.183 20700 TIP 436720 2529 6049147 2024-02-23 23:26:31.726 2024-02-23 23:26:31.726 2300 FEE 436720 19189 6049148 2024-02-23 23:26:31.726 2024-02-23 23:26:31.726 20700 TIP 436720 21437 6049157 2024-02-23 23:26:36.681 2024-02-23 23:26:36.681 5000 FEE 436466 21208 6049158 2024-02-23 23:26:36.681 2024-02-23 23:26:36.681 45000 TIP 436466 12218 6049171 2024-02-23 23:27:51.938 2024-02-23 23:27:51.938 5000 FEE 436330 17365 6049172 2024-02-23 23:27:51.938 2024-02-23 23:27:51.938 45000 TIP 436330 7389 6049193 2024-02-23 23:32:16.697 2024-02-23 23:32:16.697 2100 FEE 436690 21047 6049194 2024-02-23 23:32:16.697 2024-02-23 23:32:16.697 18900 TIP 436690 6003 6049213 2024-02-23 23:33:48.972 2024-02-23 23:33:48.972 8300 FEE 436729 10393 6049214 2024-02-23 23:33:48.972 2024-02-23 23:33:48.972 74700 TIP 436729 20110 6049241 2024-02-23 23:34:00.409 2024-02-23 23:34:00.409 100 FEE 436683 17570 6049242 2024-02-23 23:34:00.409 2024-02-23 23:34:00.409 900 TIP 436683 20754 6049245 2024-02-23 23:34:01.206 2024-02-23 23:34:01.206 9000 FEE 436683 16667 6049246 2024-02-23 23:34:01.206 2024-02-23 23:34:01.206 81000 TIP 436683 4074 6049271 2024-02-23 23:35:08.901 2024-02-23 23:35:08.901 1000 FEE 436734 721 6049289 2024-02-23 23:37:26.411 2024-02-23 23:37:26.411 3300 FEE 436722 2614 6049290 2024-02-23 23:37:26.411 2024-02-23 23:37:26.411 29700 TIP 436722 12422 6049314 2024-02-23 23:40:28.15 2024-02-23 23:40:28.15 100 FEE 436733 9354 6048645 2024-02-23 21:59:12.014 2024-02-23 21:59:12.014 9000 TIP 436695 4831 6048671 2024-02-23 22:02:51.367 2024-02-23 22:02:51.367 3300 FEE 436683 11443 6048672 2024-02-23 22:02:51.367 2024-02-23 22:02:51.367 29700 TIP 436683 657 6048681 2024-02-23 22:03:19.732 2024-02-23 22:03:19.732 1000 FEE 436612 20980 6048682 2024-02-23 22:03:19.732 2024-02-23 22:03:19.732 9000 TIP 436612 12821 6048691 2024-02-23 22:03:32.972 2024-02-23 22:03:32.972 2300 FEE 436669 19826 6048692 2024-02-23 22:03:32.972 2024-02-23 22:03:32.972 20700 TIP 436669 15351 6048715 2024-02-23 22:05:33.716 2024-02-23 22:05:33.716 8300 FEE 436666 676 6048716 2024-02-23 22:05:33.716 2024-02-23 22:05:33.716 74700 TIP 436666 21493 6048721 2024-02-23 22:05:46.413 2024-02-23 22:05:46.413 1000 FEE 436699 2123 6048722 2024-02-23 22:05:46.413 2024-02-23 22:05:46.413 9000 TIP 436699 14278 6048747 2024-02-23 22:13:13.152 2024-02-23 22:13:13.152 2100 FEE 436700 1044 6048748 2024-02-23 22:13:13.152 2024-02-23 22:13:13.152 18900 TIP 436700 12965 6048787 2024-02-23 22:23:11.917 2024-02-23 22:23:11.917 8300 FEE 436669 2525 6048788 2024-02-23 22:23:11.917 2024-02-23 22:23:11.917 74700 TIP 436669 9418 6048803 2024-02-23 22:23:13.573 2024-02-23 22:23:13.573 8300 FEE 436669 21386 6048804 2024-02-23 22:23:13.573 2024-02-23 22:23:13.573 74700 TIP 436669 18008 6048809 2024-02-23 22:23:14.605 2024-02-23 22:23:14.605 8300 FEE 436669 16004 6048810 2024-02-23 22:23:14.605 2024-02-23 22:23:14.605 74700 TIP 436669 19512 6048838 2024-02-23 22:28:47.613 2024-02-23 22:28:47.613 3300 FEE 436617 5637 6048839 2024-02-23 22:28:47.613 2024-02-23 22:28:47.613 29700 TIP 436617 19021 6048843 2024-02-23 22:30:00.085 2024-02-23 22:30:00.085 1000 FEE 436708 1772 6048845 2024-02-23 22:30:43.334 2024-02-23 22:30:43.334 2100 FEE 436699 12188 6048846 2024-02-23 22:30:43.334 2024-02-23 22:30:43.334 18900 TIP 436699 18235 6048853 2024-02-23 22:35:39.691 2024-02-23 22:35:39.691 1000 FEE 436694 16876 6048854 2024-02-23 22:35:39.691 2024-02-23 22:35:39.691 9000 TIP 436694 19282 6048858 2024-02-23 22:36:46.372 2024-02-23 22:36:46.372 100 FEE 436619 18675 6048859 2024-02-23 22:36:46.372 2024-02-23 22:36:46.372 900 TIP 436619 18717 6048895 2024-02-23 22:48:10.255 2024-02-23 22:48:10.255 10000 FEE 435834 20973 6048896 2024-02-23 22:48:10.255 2024-02-23 22:48:10.255 90000 TIP 435834 17109 6048897 2024-02-23 22:48:25.952 2024-02-23 22:48:25.952 11000 FEE 436713 21212 6048905 2024-02-23 22:53:52.444 2024-02-23 22:53:52.444 2300 FEE 436708 10818 6048906 2024-02-23 22:53:52.444 2024-02-23 22:53:52.444 20700 TIP 436708 20922 6048909 2024-02-23 22:53:52.75 2024-02-23 22:53:52.75 2300 FEE 436708 686 6048910 2024-02-23 22:53:52.75 2024-02-23 22:53:52.75 20700 TIP 436708 10112 6048920 2024-02-23 22:54:16.286 2024-02-23 22:54:16.286 1300 FEE 436464 16424 6048921 2024-02-23 22:54:16.286 2024-02-23 22:54:16.286 11700 TIP 436464 5759 6048942 2024-02-23 22:58:19.133 2024-02-23 22:58:19.133 500 FEE 436556 16594 6048943 2024-02-23 22:58:19.133 2024-02-23 22:58:19.133 4500 TIP 436556 12774 6048972 2024-02-23 23:03:43.634 2024-02-23 23:03:43.634 1000 FEE 436649 19886 6048973 2024-02-23 23:03:43.634 2024-02-23 23:03:43.634 9000 TIP 436649 7978 6048990 2024-02-23 23:03:48.127 2024-02-23 23:03:48.127 1000 FEE 436649 6229 6048991 2024-02-23 23:03:48.127 2024-02-23 23:03:48.127 9000 TIP 436649 5791 6049043 2024-02-23 23:20:41.934 2024-02-23 23:20:41.934 100 FEE 436720 9494 6049044 2024-02-23 23:20:41.934 2024-02-23 23:20:41.934 900 TIP 436720 13365 6049061 2024-02-23 23:22:20.759 2024-02-23 23:22:20.759 100 FEE 433943 1620 6049062 2024-02-23 23:22:20.759 2024-02-23 23:22:20.759 900 TIP 433943 4115 6049070 2024-02-23 23:23:44.19 2024-02-23 23:23:44.19 1000 FEE 436725 12819 6049085 2024-02-23 23:24:46.36 2024-02-23 23:24:46.36 5000 FEE 436350 20326 6049086 2024-02-23 23:24:46.36 2024-02-23 23:24:46.36 45000 TIP 436350 19906 6049087 2024-02-23 23:24:46.62 2024-02-23 23:24:46.62 1000 FEE 436491 14404 6049088 2024-02-23 23:24:46.62 2024-02-23 23:24:46.62 9000 TIP 436491 19531 6049089 2024-02-23 23:24:46.693 2024-02-23 23:24:46.693 1000 FEE 436491 671 6049090 2024-02-23 23:24:46.693 2024-02-23 23:24:46.693 9000 TIP 436491 2780 6049101 2024-02-23 23:25:03.01 2024-02-23 23:25:03.01 2300 FEE 436717 4322 6049102 2024-02-23 23:25:03.01 2024-02-23 23:25:03.01 20700 TIP 436717 1090 6049106 2024-02-23 23:25:03.395 2024-02-23 23:25:03.395 2300 FEE 436717 14731 6049107 2024-02-23 23:25:03.395 2024-02-23 23:25:03.395 20700 TIP 436717 1030 6049122 2024-02-23 23:25:46.61 2024-02-23 23:25:46.61 2300 FEE 436612 19890 6049123 2024-02-23 23:25:46.61 2024-02-23 23:25:46.61 20700 TIP 436612 5112 6049165 2024-02-23 23:27:05.518 2024-02-23 23:27:05.518 5000 FEE 436527 5427 6049166 2024-02-23 23:27:05.518 2024-02-23 23:27:05.518 45000 TIP 436527 14370 6049173 2024-02-23 23:27:52.57 2024-02-23 23:27:52.57 5000 FEE 436330 667 6049174 2024-02-23 23:27:52.57 2024-02-23 23:27:52.57 45000 TIP 436330 20525 6049175 2024-02-23 23:27:58.036 2024-02-23 23:27:58.036 1000 FEE 436730 15273 6049190 2024-02-23 23:31:58.9 2024-02-23 23:31:58.9 10000 FEE 436565 21051 6049191 2024-02-23 23:31:58.9 2024-02-23 23:31:58.9 90000 TIP 436565 18745 6049211 2024-02-23 23:33:48.837 2024-02-23 23:33:48.837 8300 FEE 436729 1094 6049212 2024-02-23 23:33:48.837 2024-02-23 23:33:48.837 74700 TIP 436729 17001 6049217 2024-02-23 23:33:49.757 2024-02-23 23:33:49.757 8300 FEE 436729 9177 6049218 2024-02-23 23:33:49.757 2024-02-23 23:33:49.757 74700 TIP 436729 18608 6049219 2024-02-23 23:33:49.924 2024-02-23 23:33:49.924 8300 FEE 436729 20220 6049220 2024-02-23 23:33:49.924 2024-02-23 23:33:49.924 74700 TIP 436729 8284 6049249 2024-02-23 23:34:02.849 2024-02-23 23:34:02.849 90000 FEE 436683 18351 6049250 2024-02-23 23:34:02.849 2024-02-23 23:34:02.849 810000 TIP 436683 5499 6049260 2024-02-23 23:34:47.409 2024-02-23 23:34:47.409 100 FEE 436709 15491 6049261 2024-02-23 23:34:47.409 2024-02-23 23:34:47.409 900 TIP 436709 2361 6049264 2024-02-23 23:34:58.114 2024-02-23 23:34:58.114 3300 FEE 436695 13398 6049265 2024-02-23 23:34:58.114 2024-02-23 23:34:58.114 29700 TIP 436695 21547 6049294 2024-02-23 23:38:47.175 2024-02-23 23:38:47.175 1000 FEE 436736 13759 6049306 2024-02-23 23:40:17.191 2024-02-23 23:40:17.191 100 FEE 436722 7418 6049307 2024-02-23 23:40:17.191 2024-02-23 23:40:17.191 900 TIP 436722 18663 6049338 2024-02-23 23:42:24.789 2024-02-23 23:42:24.789 2500 FEE 436720 17209 6049339 2024-02-23 23:42:24.789 2024-02-23 23:42:24.789 22500 TIP 436720 4250 6049438 2024-02-23 23:51:26.027 2024-02-23 23:51:26.027 1000 FEE 436750 19987 6049459 2024-02-23 23:51:42.919 2024-02-23 23:51:42.919 500 FEE 436720 3411 6049460 2024-02-23 23:51:42.919 2024-02-23 23:51:42.919 4500 TIP 436720 19815 6049465 2024-02-23 23:52:50.442 2024-02-23 23:52:50.442 0 FEE 436750 2722 6048655 2024-02-23 22:00:44.062 2024-02-23 22:00:44.062 9000 TIP 436523 15890 6048673 2024-02-23 22:02:51.476 2024-02-23 22:02:51.476 1000 FEE 436698 7766 6048674 2024-02-23 22:02:51.476 2024-02-23 22:02:51.476 9000 TIP 436698 19535 6048679 2024-02-23 22:03:12.228 2024-02-23 22:03:12.228 2100 FEE 436643 4345 6048680 2024-02-23 22:03:12.228 2024-02-23 22:03:12.228 18900 TIP 436643 7978 6048706 2024-02-23 22:04:29.907 2024-02-23 22:04:29.907 100 FEE 436537 19570 6048707 2024-02-23 22:04:29.907 2024-02-23 22:04:29.907 900 TIP 436537 21609 6048728 2024-02-23 22:06:09.516 2024-02-23 22:06:09.516 1000 FEE 436513 8498 6048729 2024-02-23 22:06:09.516 2024-02-23 22:06:09.516 9000 TIP 436513 17455 6048678 2024-02-23 22:03:02.757 2024-02-23 22:03:02.757 1000 STREAM 141924 993 6048732 2024-02-23 22:07:02.759 2024-02-23 22:07:02.759 1000 STREAM 141924 8162 6048736 2024-02-23 22:09:02.756 2024-02-23 22:09:02.756 1000 STREAM 141924 15161 6048746 2024-02-23 22:13:02.803 2024-02-23 22:13:02.803 1000 STREAM 141924 18174 6048756 2024-02-23 22:15:02.802 2024-02-23 22:15:02.802 1000 STREAM 141924 18368 6048757 2024-02-23 22:16:02.81 2024-02-23 22:16:02.81 1000 STREAM 141924 7983 6048763 2024-02-23 22:18:02.802 2024-02-23 22:18:02.802 1000 STREAM 141924 3400 6048705 2024-02-23 22:04:02.746 2024-02-23 22:04:02.746 1000 STREAM 141924 20018 6048708 2024-02-23 22:05:02.758 2024-02-23 22:05:02.758 1000 STREAM 141924 14941 6048725 2024-02-23 22:06:02.753 2024-02-23 22:06:02.753 1000 STREAM 141924 1286 6048735 2024-02-23 22:08:02.749 2024-02-23 22:08:02.749 1000 STREAM 141924 21418 6048750 2024-02-23 22:14:02.784 2024-02-23 22:14:02.784 1000 STREAM 141924 19154 6048760 2024-02-23 22:17:02.803 2024-02-23 22:17:02.803 1000 STREAM 141924 21194 6048768 2024-02-23 22:20:02.816 2024-02-23 22:20:02.816 1000 STREAM 141924 15386 6113991 2024-02-29 15:26:15.697 2024-02-29 15:26:15.697 62100 TIP 443679 20436 6114004 2024-02-29 15:26:49.488 2024-02-29 15:26:49.488 6900 FEE 443667 831 6114005 2024-02-29 15:26:49.488 2024-02-29 15:26:49.488 62100 TIP 443667 21067 6114008 2024-02-29 15:26:54.12 2024-02-29 15:26:54.12 6900 FEE 443679 18667 6114009 2024-02-29 15:26:54.12 2024-02-29 15:26:54.12 62100 TIP 443679 1286 6114010 2024-02-29 15:26:54.331 2024-02-29 15:26:54.331 6900 FEE 443679 10291 6048737 2024-02-23 22:09:27.766 2024-02-23 22:09:27.766 1000 FEE 436566 17171 6048738 2024-02-23 22:09:27.766 2024-02-23 22:09:27.766 9000 TIP 436566 20340 6048741 2024-02-23 22:10:04.767 2024-02-23 22:10:04.767 8300 FEE 436683 16149 6048742 2024-02-23 22:10:04.767 2024-02-23 22:10:04.767 74700 TIP 436683 19941 6048765 2024-02-23 22:19:27.433 2024-02-23 22:19:27.433 1000 FEE 436706 21180 6048789 2024-02-23 22:23:12.042 2024-02-23 22:23:12.042 8300 FEE 436669 21501 6048790 2024-02-23 22:23:12.042 2024-02-23 22:23:12.042 74700 TIP 436669 1567 6048791 2024-02-23 22:23:12.242 2024-02-23 22:23:12.242 8300 FEE 436669 15337 6048792 2024-02-23 22:23:12.242 2024-02-23 22:23:12.242 74700 TIP 436669 20454 6048807 2024-02-23 22:23:14.521 2024-02-23 22:23:14.521 8300 FEE 436669 20168 6048808 2024-02-23 22:23:14.521 2024-02-23 22:23:14.521 74700 TIP 436669 20306 6048827 2024-02-23 22:27:59.231 2024-02-23 22:27:59.231 3200 FEE 436639 15544 6048828 2024-02-23 22:27:59.231 2024-02-23 22:27:59.231 28800 TIP 436639 629 6048856 2024-02-23 22:36:27.656 2024-02-23 22:36:27.656 100 FEE 436556 6749 6048857 2024-02-23 22:36:27.656 2024-02-23 22:36:27.656 900 TIP 436556 20704 6048885 2024-02-23 22:44:24.026 2024-02-23 22:44:24.026 2100 FEE 436645 10283 6048886 2024-02-23 22:44:24.026 2024-02-23 22:44:24.026 18900 TIP 436645 3440 6048887 2024-02-23 22:44:39.959 2024-02-23 22:44:39.959 1000 FEE 436560 16341 6048888 2024-02-23 22:44:39.959 2024-02-23 22:44:39.959 9000 TIP 436560 2232 6048903 2024-02-23 22:52:32.976 2024-02-23 22:52:32.976 100000 FEE 436714 18581 6048918 2024-02-23 22:54:15.967 2024-02-23 22:54:15.967 1300 FEE 436464 21401 6048919 2024-02-23 22:54:15.967 2024-02-23 22:54:15.967 11700 TIP 436464 14818 6048984 2024-02-23 23:03:46.377 2024-02-23 23:03:46.377 1000 FEE 436649 5377 6048985 2024-02-23 23:03:46.377 2024-02-23 23:03:46.377 9000 TIP 436649 21605 6048986 2024-02-23 23:03:47.026 2024-02-23 23:03:47.026 1000 FEE 436649 902 6048987 2024-02-23 23:03:47.026 2024-02-23 23:03:47.026 9000 TIP 436649 739 6048743 2024-02-23 22:11:02.923 2024-02-23 22:11:02.923 1000 STREAM 141924 1429 6048744 2024-02-23 22:12:02.933 2024-02-23 22:12:02.933 1000 STREAM 141924 21441 6048776 2024-02-23 22:22:03.047 2024-02-23 22:22:03.047 1000 STREAM 141924 1480 6048782 2024-02-23 22:23:03.028 2024-02-23 22:23:03.028 1000 STREAM 141924 19235 6048814 2024-02-23 22:25:03.043 2024-02-23 22:25:03.043 1000 STREAM 141924 649 6048829 2024-02-23 22:28:03.086 2024-02-23 22:28:03.086 1000 STREAM 141924 16149 6048840 2024-02-23 22:29:03.078 2024-02-23 22:29:03.078 1000 STREAM 141924 18678 6048852 2024-02-23 22:35:03.112 2024-02-23 22:35:03.112 1000 STREAM 141924 14515 6048855 2024-02-23 22:36:03.108 2024-02-23 22:36:03.108 1000 STREAM 141924 21441 6048865 2024-02-23 22:38:03.291 2024-02-23 22:38:03.291 1000 STREAM 141924 21014 6048868 2024-02-23 22:39:03.306 2024-02-23 22:39:03.306 1000 STREAM 141924 1495 6048871 2024-02-23 22:40:03.324 2024-02-23 22:40:03.324 1000 STREAM 141924 11956 6048874 2024-02-23 22:41:03.338 2024-02-23 22:41:03.338 1000 STREAM 141924 5637 6048881 2024-02-23 22:43:03.375 2024-02-23 22:43:03.375 1000 STREAM 141924 21103 6048892 2024-02-23 22:46:03.388 2024-02-23 22:46:03.388 1000 STREAM 141924 1224 6048893 2024-02-23 22:47:03.4 2024-02-23 22:47:03.4 1000 STREAM 141924 19322 6048894 2024-02-23 22:48:03.408 2024-02-23 22:48:03.408 1000 STREAM 141924 7989 6048899 2024-02-23 22:49:03.415 2024-02-23 22:49:03.415 1000 STREAM 141924 16912 6048900 2024-02-23 22:50:03.438 2024-02-23 22:50:03.438 1000 STREAM 141924 8080 6048904 2024-02-23 22:53:03.43 2024-02-23 22:53:03.43 1000 STREAM 141924 21014 6048911 2024-02-23 22:54:03.438 2024-02-23 22:54:03.438 1000 STREAM 141924 763 6048927 2024-02-23 22:56:03.457 2024-02-23 22:56:03.457 1000 STREAM 141924 21418 6048928 2024-02-23 22:57:03.464 2024-02-23 22:57:03.464 1000 STREAM 141924 1352 6048929 2024-02-23 22:58:03.473 2024-02-23 22:58:03.473 1000 STREAM 141924 11866 6048955 2024-02-23 23:01:03.483 2024-02-23 23:01:03.483 1000 STREAM 141924 16357 6048993 2024-02-23 23:05:03.512 2024-02-23 23:05:03.512 1000 STREAM 141924 21148 6048753 2024-02-23 22:14:39.249 2024-02-23 22:14:39.249 7900 FEE 436703 21527 6048754 2024-02-23 22:14:39.249 2024-02-23 22:14:39.249 71100 TIP 436703 19668 6048769 2024-02-23 22:20:20.876 2024-02-23 22:20:20.876 4000 FEE 436561 1273 6048770 2024-02-23 22:20:20.876 2024-02-23 22:20:20.876 36000 TIP 436561 17103 6048878 2024-02-23 22:42:11.118 2024-02-23 22:42:11.118 2100 FEE 436333 16998 6048879 2024-02-23 22:42:11.118 2024-02-23 22:42:11.118 18900 TIP 436333 18017 6048916 2024-02-23 22:54:15.668 2024-02-23 22:54:15.668 1300 FEE 436464 20924 6048917 2024-02-23 22:54:15.668 2024-02-23 22:54:15.668 11700 TIP 436464 20980 6048922 2024-02-23 22:54:16.792 2024-02-23 22:54:16.792 1300 FEE 436464 12779 6048923 2024-02-23 22:54:16.792 2024-02-23 22:54:16.792 11700 TIP 436464 4395 6048930 2024-02-23 22:58:14.353 2024-02-23 22:58:14.353 500 FEE 436669 20370 6048931 2024-02-23 22:58:14.353 2024-02-23 22:58:14.353 4500 TIP 436669 18468 6048976 2024-02-23 23:03:44.267 2024-02-23 23:03:44.267 1000 FEE 436649 10490 6048977 2024-02-23 23:03:44.267 2024-02-23 23:03:44.267 9000 TIP 436649 11164 6048980 2024-02-23 23:03:45.21 2024-02-23 23:03:45.21 2000 FEE 436649 18270 6048981 2024-02-23 23:03:45.21 2024-02-23 23:03:45.21 18000 TIP 436649 20327 6049057 2024-02-23 23:20:48.297 2024-02-23 23:20:48.297 100 FEE 436720 1136 6049058 2024-02-23 23:20:48.297 2024-02-23 23:20:48.297 900 TIP 436720 5694 6049076 2024-02-23 23:24:44.382 2024-02-23 23:24:44.382 1000 FEE 436726 20554 6049077 2024-02-23 23:24:45.746 2024-02-23 23:24:45.746 1000 FEE 436491 20660 6049078 2024-02-23 23:24:45.746 2024-02-23 23:24:45.746 9000 TIP 436491 620 6049079 2024-02-23 23:24:45.997 2024-02-23 23:24:45.997 1000 FEE 436491 20439 6049080 2024-02-23 23:24:45.997 2024-02-23 23:24:45.997 9000 TIP 436491 21139 6049083 2024-02-23 23:24:46.307 2024-02-23 23:24:46.307 1000 FEE 436491 20891 6049084 2024-02-23 23:24:46.307 2024-02-23 23:24:46.307 9000 TIP 436491 9150 6049110 2024-02-23 23:25:09.41 2024-02-23 23:25:09.41 5000 FEE 436603 21514 6049111 2024-02-23 23:25:09.41 2024-02-23 23:25:09.41 45000 TIP 436603 3347 6049126 2024-02-23 23:25:47.623 2024-02-23 23:25:47.623 2300 FEE 436612 1483 6049127 2024-02-23 23:25:47.623 2024-02-23 23:25:47.623 20700 TIP 436612 10096 6048764 2024-02-23 22:19:02.804 2024-02-23 22:19:02.804 1000 STREAM 141924 20858 6048773 2024-02-23 22:21:02.82 2024-02-23 22:21:02.82 1000 STREAM 141924 2583 6049023 2024-02-23 23:15:03.609 2024-02-23 23:15:03.609 1000 STREAM 141924 19524 6049024 2024-02-23 23:16:03.586 2024-02-23 23:16:03.586 1000 STREAM 141924 9350 6049060 2024-02-23 23:22:03.226 2024-02-23 23:22:03.226 1000 STREAM 141924 18169 6049105 2024-02-23 23:25:03.252 2024-02-23 23:25:03.252 1000 STREAM 141924 14195 6049136 2024-02-23 23:26:03.279 2024-02-23 23:26:03.279 1000 STREAM 141924 2620 6049178 2024-02-23 23:29:03.295 2024-02-23 23:29:03.295 1000 STREAM 141924 19142 6049179 2024-02-23 23:30:03.319 2024-02-23 23:30:03.319 1000 STREAM 141924 16912 6049209 2024-02-23 23:33:03.349 2024-02-23 23:33:03.349 1000 STREAM 141924 5757 6049381 2024-02-23 23:45:03.43 2024-02-23 23:45:03.43 1000 STREAM 141924 20717 6049413 2024-02-23 23:49:03.442 2024-02-23 23:49:03.442 1000 STREAM 141924 6499 6049431 2024-02-23 23:50:03.451 2024-02-23 23:50:03.451 1000 STREAM 141924 7869 6049470 2024-02-23 23:53:03.485 2024-02-23 23:53:03.485 1000 STREAM 141924 13547 6049488 2024-02-23 23:54:03.49 2024-02-23 23:54:03.49 1000 STREAM 141924 2514 6049507 2024-02-23 23:57:03.5 2024-02-23 23:57:03.5 1000 STREAM 141924 8095 6114011 2024-02-29 15:26:54.331 2024-02-29 15:26:54.331 62100 TIP 443679 18336 6114033 2024-02-29 15:28:29.158 2024-02-29 15:28:29.158 1000 FEE 443197 19992 6114034 2024-02-29 15:28:29.158 2024-02-29 15:28:29.158 9000 TIP 443197 9084 6114053 2024-02-29 15:28:54.914 2024-02-29 15:28:54.914 2100 FEE 443620 19044 6114054 2024-02-29 15:28:54.914 2024-02-29 15:28:54.914 18900 TIP 443620 18225 6114057 2024-02-29 15:28:56.954 2024-02-29 15:28:56.954 2100 FEE 443605 16954 6114058 2024-02-29 15:28:56.954 2024-02-29 15:28:56.954 18900 TIP 443605 21421 6114074 2024-02-29 15:29:08.189 2024-02-29 15:29:08.189 2100 FEE 443338 18470 6114075 2024-02-29 15:29:08.189 2024-02-29 15:29:08.189 18900 TIP 443338 1733 6114078 2024-02-29 15:29:08.871 2024-02-29 15:29:08.871 2100 FEE 443451 15139 6114079 2024-02-29 15:29:08.871 2024-02-29 15:29:08.871 18900 TIP 443451 11263 6114120 2024-02-29 15:30:58.737 2024-02-29 15:30:58.737 100 FEE 443685 20998 6114121 2024-02-29 15:30:58.737 2024-02-29 15:30:58.737 900 TIP 443685 13878 6114122 2024-02-29 15:31:00.519 2024-02-29 15:31:00.519 1000 FEE 443689 21352 6114123 2024-02-29 15:31:00.519 2024-02-29 15:31:00.519 9000 TIP 443689 5449 6114125 2024-02-29 15:31:32.341 2024-02-29 15:31:32.341 2100 FEE 443616 19512 6114126 2024-02-29 15:31:32.341 2024-02-29 15:31:32.341 18900 TIP 443616 4259 6114132 2024-02-29 15:31:39.768 2024-02-29 15:31:39.768 10000 FEE 443593 5809 6114133 2024-02-29 15:31:39.768 2024-02-29 15:31:39.768 90000 TIP 443593 21509 6114152 2024-02-29 15:32:47.92 2024-02-29 15:32:47.92 6900 FEE 443617 1488 6114153 2024-02-29 15:32:47.92 2024-02-29 15:32:47.92 62100 TIP 443617 3706 6114154 2024-02-29 15:32:55.592 2024-02-29 15:32:55.592 2100 FEE 443385 20964 6114155 2024-02-29 15:32:55.592 2024-02-29 15:32:55.592 18900 TIP 443385 9177 6114171 2024-02-29 15:33:09.31 2024-02-29 15:33:09.31 2100 FEE 443615 21395 6114172 2024-02-29 15:33:09.31 2024-02-29 15:33:09.31 18900 TIP 443615 21138 6114175 2024-02-29 15:33:12.407 2024-02-29 15:33:12.407 2100 FEE 443383 12516 6114176 2024-02-29 15:33:12.407 2024-02-29 15:33:12.407 18900 TIP 443383 18956 6114177 2024-02-29 15:33:13.201 2024-02-29 15:33:13.201 2100 FEE 443375 7675 6114178 2024-02-29 15:33:13.201 2024-02-29 15:33:13.201 18900 TIP 443375 14650 6114195 2024-02-29 15:33:20.699 2024-02-29 15:33:20.699 2100 FEE 443325 12291 6114196 2024-02-29 15:33:20.699 2024-02-29 15:33:20.699 18900 TIP 443325 19189 6114199 2024-02-29 15:33:22.621 2024-02-29 15:33:22.621 2100 FEE 443392 14247 6114200 2024-02-29 15:33:22.621 2024-02-29 15:33:22.621 18900 TIP 443392 2776 6114207 2024-02-29 15:33:27.954 2024-02-29 15:33:27.954 2100 FEE 443394 11275 6114208 2024-02-29 15:33:27.954 2024-02-29 15:33:27.954 18900 TIP 443394 13781 6114209 2024-02-29 15:33:48.67 2024-02-29 15:33:48.67 1000 FEE 443696 21371 6114221 2024-02-29 15:34:28.637 2024-02-29 15:34:28.637 100000 FEE 443698 4074 6114235 2024-02-29 15:35:59.844 2024-02-29 15:35:59.844 2100 FEE 443274 12774 6114236 2024-02-29 15:35:59.844 2024-02-29 15:35:59.844 18900 TIP 443274 2013 6114295 2024-02-29 15:42:41.87 2024-02-29 15:42:41.87 100000 FEE 443712 7654 6114299 2024-02-29 15:43:48.857 2024-02-29 15:43:48.857 10000 FEE 443713 17275 6114307 2024-02-29 15:45:19.355 2024-02-29 15:45:19.355 100 FEE 443714 21262 6114308 2024-02-29 15:45:19.355 2024-02-29 15:45:19.355 900 TIP 443714 21057 6114317 2024-02-29 15:46:48.03 2024-02-29 15:46:48.03 1100 FEE 443583 1647 6114318 2024-02-29 15:46:48.03 2024-02-29 15:46:48.03 9900 TIP 443583 746 6114323 2024-02-29 15:47:20.935 2024-02-29 15:47:20.935 1000 FEE 443717 18507 6114328 2024-02-29 15:47:44.96 2024-02-29 15:47:44.96 100 FEE 443716 15662 6114329 2024-02-29 15:47:44.96 2024-02-29 15:47:44.96 900 TIP 443716 9334 6114385 2024-02-29 15:54:41.846 2024-02-29 15:54:41.846 1600 FEE 443712 629 6114386 2024-02-29 15:54:41.846 2024-02-29 15:54:41.846 14400 TIP 443712 1658 6114387 2024-02-29 15:54:44.466 2024-02-29 15:54:44.466 500 FEE 443545 9982 6114388 2024-02-29 15:54:44.466 2024-02-29 15:54:44.466 4500 TIP 443545 20751 6114404 2024-02-29 15:55:45.162 2024-02-29 15:55:45.162 1000 FEE 443728 1549 6114416 2024-02-29 15:57:38.546 2024-02-29 15:57:38.546 1000 FEE 443730 19668 6114505 2024-02-29 16:02:53.118 2024-02-29 16:02:53.118 1000 FEE 443742 18941 6114511 2024-02-29 16:05:01.055 2024-02-29 16:05:01.055 2100 FEE 443178 669 6114512 2024-02-29 16:05:01.055 2024-02-29 16:05:01.055 18900 TIP 443178 12483 6114518 2024-02-29 16:05:48.469 2024-02-29 16:05:48.469 7700 FEE 443734 18640 6114519 2024-02-29 16:05:48.469 2024-02-29 16:05:48.469 69300 TIP 443734 19668 6114523 2024-02-29 16:06:03.144 2024-02-29 16:06:03.144 1000 FEE 443744 713 6114524 2024-02-29 16:06:42.422 2024-02-29 16:06:42.422 21000 FEE 443745 13574 6114525 2024-02-29 16:06:52.894 2024-02-29 16:06:52.894 1000 FEE 443746 2829 6114529 2024-02-29 16:07:32.033 2024-02-29 16:07:32.033 5000 FEE 443683 21365 6114530 2024-02-29 16:07:32.033 2024-02-29 16:07:32.033 45000 TIP 443683 5637 6114537 2024-02-29 16:07:57.015 2024-02-29 16:07:57.015 1000 FEE 443749 21062 6114544 2024-02-29 16:08:29.189 2024-02-29 16:08:29.189 100 FEE 443577 14260 6114545 2024-02-29 16:08:29.189 2024-02-29 16:08:29.189 900 TIP 443577 20826 6114564 2024-02-29 16:08:43.901 2024-02-29 16:08:43.901 100 FEE 443747 7760 6114565 2024-02-29 16:08:43.901 2024-02-29 16:08:43.901 900 TIP 443747 20073 6114566 2024-02-29 16:08:44.308 2024-02-29 16:08:44.308 100 FEE 443747 2042 6114567 2024-02-29 16:08:44.308 2024-02-29 16:08:44.308 900 TIP 443747 646 6114568 2024-02-29 16:08:44.83 2024-02-29 16:08:44.83 100 FEE 443747 18219 6114569 2024-02-29 16:08:44.83 2024-02-29 16:08:44.83 900 TIP 443747 20597 6114572 2024-02-29 16:08:48.532 2024-02-29 16:08:48.532 500 FEE 443716 9177 6114573 2024-02-29 16:08:48.532 2024-02-29 16:08:48.532 4500 TIP 443716 718 6114583 2024-02-29 16:09:36.183 2024-02-29 16:09:36.183 10000 FEE 443752 16679 6114584 2024-02-29 16:10:00.128 2024-02-29 16:10:00.128 1000 FEE 443753 14705 6114586 2024-02-29 16:10:05.35 2024-02-29 16:10:05.35 1000 FEE 443699 20163 6114587 2024-02-29 16:10:05.35 2024-02-29 16:10:05.35 9000 TIP 443699 17095 6114624 2024-02-29 16:15:13.096 2024-02-29 16:15:13.096 2100 FEE 443693 21047 6114625 2024-02-29 16:15:13.096 2024-02-29 16:15:13.096 18900 TIP 443693 1320 6114641 2024-02-29 16:16:23.659 2024-02-29 16:16:23.659 1000 FEE 443763 20816 6114653 2024-02-29 16:17:39.929 2024-02-29 16:17:39.929 1000 FEE 443767 10112 6114666 2024-02-29 16:18:22.991 2024-02-29 16:18:22.991 1000 FEE 443770 21058 6114684 2024-02-29 16:19:50.537 2024-02-29 16:19:50.537 100 FEE 443528 20110 6048813 2024-02-23 22:24:03.05 2024-02-23 22:24:03.05 1000 STREAM 141924 1320 6048817 2024-02-23 22:26:03.045 2024-02-23 22:26:03.045 1000 STREAM 141924 27 6048822 2024-02-23 22:27:03.059 2024-02-23 22:27:03.059 1000 STREAM 141924 11395 6048844 2024-02-23 22:30:03.085 2024-02-23 22:30:03.085 1000 STREAM 141924 16432 6048847 2024-02-23 22:31:03.077 2024-02-23 22:31:03.077 1000 STREAM 141924 11798 6048848 2024-02-23 22:32:03.085 2024-02-23 22:32:03.085 1000 STREAM 141924 1652 6048850 2024-02-23 22:33:03.101 2024-02-23 22:33:03.101 1000 STREAM 141924 19507 6048851 2024-02-23 22:34:03.1 2024-02-23 22:34:03.1 1000 STREAM 141924 9166 6048860 2024-02-23 22:37:03.294 2024-02-23 22:37:03.294 1000 STREAM 141924 8380 6048877 2024-02-23 22:42:03.352 2024-02-23 22:42:03.352 1000 STREAM 141924 18473 6048884 2024-02-23 22:44:03.375 2024-02-23 22:44:03.375 1000 STREAM 141924 20539 6048889 2024-02-23 22:45:03.392 2024-02-23 22:45:03.392 1000 STREAM 141924 8376 6048901 2024-02-23 22:51:03.422 2024-02-23 22:51:03.422 1000 STREAM 141924 18930 6048902 2024-02-23 22:52:03.429 2024-02-23 22:52:03.429 1000 STREAM 141924 1007 6048925 2024-02-23 22:55:03.464 2024-02-23 22:55:03.464 1000 STREAM 141924 10493 6048950 2024-02-23 22:59:03.474 2024-02-23 22:59:03.474 1000 STREAM 141924 18673 6048954 2024-02-23 23:00:03.485 2024-02-23 23:00:03.485 1000 STREAM 141924 19018 6048957 2024-02-23 23:02:03.496 2024-02-23 23:02:03.496 1000 STREAM 141924 7903 6048959 2024-02-23 23:03:03.496 2024-02-23 23:03:03.496 1000 STREAM 141924 18378 6048992 2024-02-23 23:04:03.504 2024-02-23 23:04:03.504 1000 STREAM 141924 14669 6048994 2024-02-23 23:06:03.514 2024-02-23 23:06:03.514 1000 STREAM 141924 14731 6048995 2024-02-23 23:07:03.526 2024-02-23 23:07:03.526 1000 STREAM 141924 4395 6048996 2024-02-23 23:08:03.538 2024-02-23 23:08:03.538 1000 STREAM 141924 7682 6049000 2024-02-23 23:10:03.547 2024-02-23 23:10:03.547 1000 STREAM 141924 18380 6049022 2024-02-23 23:14:03.584 2024-02-23 23:14:03.584 1000 STREAM 141924 5776 6049037 2024-02-23 23:20:03.948 2024-02-23 23:20:03.948 1000 STREAM 141924 7125 6049192 2024-02-23 23:32:02.682 2024-02-23 23:32:02.682 1000 STREAM 141924 21166 6049284 2024-02-23 23:37:03.312 2024-02-23 23:37:03.312 1000 STREAM 141924 12368 6049291 2024-02-23 23:38:03.349 2024-02-23 23:38:03.349 1000 STREAM 141924 2757 6049539 2024-02-23 23:59:03.562 2024-02-23 23:59:03.562 1000 STREAM 141924 19981 6049547 2024-02-24 00:00:03.573 2024-02-24 00:00:03.573 1000 STREAM 141924 21603 6049555 2024-02-24 00:01:03.585 2024-02-24 00:01:03.585 1000 STREAM 141924 2077 6049640 2024-02-24 00:14:04.479 2024-02-24 00:14:04.479 1000 STREAM 141924 3377 6049700 2024-02-24 00:19:04.481 2024-02-24 00:19:04.481 1000 STREAM 141924 19126 6049734 2024-02-24 00:21:04.498 2024-02-24 00:21:04.498 1000 STREAM 141924 761 6049776 2024-02-24 00:25:04.526 2024-02-24 00:25:04.526 1000 STREAM 141924 2233 6114205 2024-02-29 15:33:25.022 2024-02-29 15:33:25.022 2100 FEE 443310 16059 6114206 2024-02-29 15:33:25.022 2024-02-29 15:33:25.022 18900 TIP 443310 20058 6114220 2024-02-29 15:34:24.58 2024-02-29 15:34:24.58 7000 DONT_LIKE_THIS 443631 19815 6114229 2024-02-29 15:35:48.25 2024-02-29 15:35:48.25 2100 FEE 443611 738 6114230 2024-02-29 15:35:48.25 2024-02-29 15:35:48.25 18900 TIP 443611 13204 6114246 2024-02-29 15:37:12.085 2024-02-29 15:37:12.085 2100 FEE 443515 20775 6114247 2024-02-29 15:37:12.085 2024-02-29 15:37:12.085 18900 TIP 443515 4521 6114263 2024-02-29 15:37:59.151 2024-02-29 15:37:59.151 2100 FEE 443440 21139 6114264 2024-02-29 15:37:59.151 2024-02-29 15:37:59.151 18900 TIP 443440 3417 6114268 2024-02-29 15:38:44.799 2024-02-29 15:38:44.799 1000 FEE 443708 14168 6114269 2024-02-29 15:38:52.896 2024-02-29 15:38:52.896 2100 FEE 443395 13177 6114270 2024-02-29 15:38:52.896 2024-02-29 15:38:52.896 18900 TIP 443395 6310 6114279 2024-02-29 15:39:41.133 2024-02-29 15:39:41.133 5700 FEE 443708 20596 6114280 2024-02-29 15:39:41.133 2024-02-29 15:39:41.133 51300 TIP 443708 19007 6114284 2024-02-29 15:40:15.145 2024-02-29 15:40:15.145 1000 FEE 443710 3745 6114310 2024-02-29 15:45:30.094 2024-02-29 15:45:30.094 100 FEE 443715 8269 6114311 2024-02-29 15:45:30.094 2024-02-29 15:45:30.094 900 TIP 443715 1549 6114312 2024-02-29 15:45:36.099 2024-02-29 15:45:36.099 100 FEE 443711 21522 6114313 2024-02-29 15:45:36.099 2024-02-29 15:45:36.099 900 TIP 443711 2444 6114314 2024-02-29 15:45:48.721 2024-02-29 15:45:48.721 1000 FEE 443714 21344 6114315 2024-02-29 15:45:48.721 2024-02-29 15:45:48.721 9000 TIP 443714 18449 6114324 2024-02-29 15:47:22.922 2024-02-29 15:47:22.922 1000 FEE 442848 910 6114325 2024-02-29 15:47:22.922 2024-02-29 15:47:22.922 9000 TIP 442848 4322 6114350 2024-02-29 15:51:35.902 2024-02-29 15:51:35.902 100 FEE 443724 19581 6114351 2024-02-29 15:51:35.902 2024-02-29 15:51:35.902 900 TIP 443724 4323 6114358 2024-02-29 15:52:03.209 2024-02-29 15:52:03.209 0 FEE 443723 17673 6114368 2024-02-29 15:52:20.321 2024-02-29 15:52:20.321 7700 FEE 443288 20560 6114369 2024-02-29 15:52:20.321 2024-02-29 15:52:20.321 69300 TIP 443288 21058 6114393 2024-02-29 15:54:59.892 2024-02-29 15:54:59.892 1000 FEE 443683 16440 6114394 2024-02-29 15:54:59.892 2024-02-29 15:54:59.892 9000 TIP 443683 12218 6114417 2024-02-29 15:57:40.345 2024-02-29 15:57:40.345 1000 FEE 443731 2652 6114426 2024-02-29 15:58:12.725 2024-02-29 15:58:12.725 100 FEE 443577 8472 6114427 2024-02-29 15:58:12.725 2024-02-29 15:58:12.725 900 TIP 443577 1002 6114435 2024-02-29 15:58:50.471 2024-02-29 15:58:50.471 2100 FEE 443541 16724 6114436 2024-02-29 15:58:50.471 2024-02-29 15:58:50.471 18900 TIP 443541 1224 6114439 2024-02-29 15:59:03.639 2024-02-29 15:59:03.639 100 FEE 443179 3518 6114440 2024-02-29 15:59:03.639 2024-02-29 15:59:03.639 900 TIP 443179 1209 6114464 2024-02-29 16:01:04.374 2024-02-29 16:01:04.374 100 FEE 443728 1740 6114465 2024-02-29 16:01:04.374 2024-02-29 16:01:04.374 900 TIP 443728 15146 6114471 2024-02-29 16:01:06.857 2024-02-29 16:01:06.857 1700 FEE 443734 21413 6114472 2024-02-29 16:01:06.857 2024-02-29 16:01:06.857 15300 TIP 443734 21048 6114478 2024-02-29 16:01:29.312 2024-02-29 16:01:29.312 10000 FEE 443717 18040 6114479 2024-02-29 16:01:29.312 2024-02-29 16:01:29.312 90000 TIP 443717 20302 6114549 2024-02-29 16:08:34.091 2024-02-29 16:08:34.091 0 FEE 443749 854 6114560 2024-02-29 16:08:43.221 2024-02-29 16:08:43.221 100 FEE 443747 7119 6114561 2024-02-29 16:08:43.221 2024-02-29 16:08:43.221 900 TIP 443747 19796 6114581 2024-02-29 16:09:24.226 2024-02-29 16:09:24.226 21000 FEE 438332 18313 6114582 2024-02-29 16:09:24.226 2024-02-29 16:09:24.226 189000 TIP 438332 3506 6114601 2024-02-29 16:12:06.184 2024-02-29 16:12:06.184 1000 FEE 443757 21061 6114603 2024-02-29 16:12:23.977 2024-02-29 16:12:23.977 0 FEE 443755 18351 6114610 2024-02-29 16:14:02.489 2024-02-29 16:14:02.489 10000 FEE 443760 3456 6114615 2024-02-29 16:14:20.778 2024-02-29 16:14:20.778 10000 FEE 443490 929 6114616 2024-02-29 16:14:20.778 2024-02-29 16:14:20.778 90000 TIP 443490 725 6114633 2024-02-29 16:15:43.246 2024-02-29 16:15:43.246 0 FEE 443745 9796 6114637 2024-02-29 16:16:04.589 2024-02-29 16:16:04.589 0 FEE 443762 13544 6114663 2024-02-29 16:18:19.568 2024-02-29 16:18:19.568 5000 FEE 443390 21585 6114664 2024-02-29 16:18:19.568 2024-02-29 16:18:19.568 45000 TIP 443390 16948 6114679 2024-02-29 16:19:17.695 2024-02-29 16:19:17.695 1000 FEE 443773 4322 6114706 2024-02-29 16:21:07.812 2024-02-29 16:21:07.812 1600 FEE 443773 18877 6114707 2024-02-29 16:21:07.812 2024-02-29 16:21:07.812 14400 TIP 443773 19810 6114708 2024-02-29 16:21:10.28 2024-02-29 16:21:10.28 2100 FEE 443616 1105 6114709 2024-02-29 16:21:10.28 2024-02-29 16:21:10.28 18900 TIP 443616 5565 6114712 2024-02-29 16:21:25.068 2024-02-29 16:21:25.068 1000 FEE 443776 20588 6114746 2024-02-29 16:24:42.341 2024-02-29 16:24:42.341 2100 FEE 443593 9330 6114747 2024-02-29 16:24:42.341 2024-02-29 16:24:42.341 18900 TIP 443593 20022 6114770 2024-02-29 16:25:16.828 2024-02-29 16:25:16.828 1700 FEE 443768 18873 6114771 2024-02-29 16:25:16.828 2024-02-29 16:25:16.828 15300 TIP 443768 7983 6114773 2024-02-29 16:25:26.474 2024-02-29 16:25:26.474 1000 FEE 443784 4654 6114783 2024-02-29 16:26:27.882 2024-02-29 16:26:27.882 1000 FEE 443786 20646 6114793 2024-02-29 16:26:50.547 2024-02-29 16:26:50.547 1600 FEE 443774 16965 6048941 2024-02-23 22:58:18.164 2024-02-23 22:58:18.164 4500 TIP 436683 19031 6048944 2024-02-23 22:58:21.379 2024-02-23 22:58:21.379 500 FEE 436523 1602 6048945 2024-02-23 22:58:21.379 2024-02-23 22:58:21.379 4500 TIP 436523 1712 6048946 2024-02-23 22:58:22.031 2024-02-23 22:58:22.031 500 FEE 436499 20881 6048947 2024-02-23 22:58:22.031 2024-02-23 22:58:22.031 4500 TIP 436499 13599 6048948 2024-02-23 22:58:22.774 2024-02-23 22:58:22.774 500 FEE 436612 4079 6048949 2024-02-23 22:58:22.774 2024-02-23 22:58:22.774 4500 TIP 436612 21062 6048958 2024-02-23 23:02:07.909 2024-02-23 23:02:07.909 10000 FEE 436718 21451 6048960 2024-02-23 23:03:39.736 2024-02-23 23:03:39.736 1000 FEE 436649 20897 6048961 2024-02-23 23:03:39.736 2024-02-23 23:03:39.736 9000 TIP 436649 18583 6048997 2024-02-23 23:08:54.859 2024-02-23 23:08:54.859 1000 FEE 436719 811 6048999 2024-02-23 23:09:09.027 2024-02-23 23:09:09.027 100000 FEE 436720 20826 6049019 2024-02-23 23:12:36.472 2024-02-23 23:12:36.472 1000 FEE 436709 3461 6049020 2024-02-23 23:12:36.472 2024-02-23 23:12:36.472 9000 TIP 436709 617 6049028 2024-02-23 23:16:38.084 2024-02-23 23:16:38.084 100000 FEE 436722 21291 6049099 2024-02-23 23:24:47.823 2024-02-23 23:24:47.823 1000 FEE 436491 19857 6049100 2024-02-23 23:24:47.823 2024-02-23 23:24:47.823 9000 TIP 436491 2088 6049114 2024-02-23 23:25:31.548 2024-02-23 23:25:31.548 4600 FEE 436716 19292 6049115 2024-02-23 23:25:31.548 2024-02-23 23:25:31.548 41400 TIP 436716 15560 6049132 2024-02-23 23:25:50.044 2024-02-23 23:25:50.044 1000 FEE 436727 8945 6049139 2024-02-23 23:26:30.768 2024-02-23 23:26:30.768 2300 FEE 436720 1726 6049140 2024-02-23 23:26:30.768 2024-02-23 23:26:30.768 20700 TIP 436720 6202 6049203 2024-02-23 23:32:41.352 2024-02-23 23:32:41.352 2100 FEE 436732 965 6049204 2024-02-23 23:32:41.352 2024-02-23 23:32:41.352 18900 TIP 436732 20680 6049225 2024-02-23 23:33:53.313 2024-02-23 23:33:53.313 8300 FEE 436729 15060 6049226 2024-02-23 23:33:53.313 2024-02-23 23:33:53.313 74700 TIP 436729 9365 6049239 2024-02-23 23:33:54.291 2024-02-23 23:33:54.291 8300 FEE 436729 13798 6049240 2024-02-23 23:33:54.291 2024-02-23 23:33:54.291 74700 TIP 436729 4538 6049278 2024-02-23 23:35:46.835 2024-02-23 23:35:46.835 9000 FEE 436720 5175 6049279 2024-02-23 23:35:46.835 2024-02-23 23:35:46.835 81000 TIP 436720 18745 6049282 2024-02-23 23:36:02.038 2024-02-23 23:36:02.038 1000 FEE 436735 1673 6049296 2024-02-23 23:39:09.734 2024-02-23 23:39:09.734 100 FEE 436656 19417 6049297 2024-02-23 23:39:09.734 2024-02-23 23:39:09.734 900 TIP 436656 900 6049305 2024-02-23 23:40:13.646 2024-02-23 23:40:13.646 1000 FEE 436737 15484 6049308 2024-02-23 23:40:20.757 2024-02-23 23:40:20.757 900 FEE 436722 16177 6049309 2024-02-23 23:40:20.757 2024-02-23 23:40:20.757 8100 TIP 436722 10273 6049341 2024-02-23 23:43:09.111 2024-02-23 23:43:09.111 500 FEE 436694 13406 6049342 2024-02-23 23:43:09.111 2024-02-23 23:43:09.111 4500 TIP 436694 14169 6049345 2024-02-23 23:43:11.252 2024-02-23 23:43:11.252 1000 FEE 436739 633 6049350 2024-02-23 23:43:24.436 2024-02-23 23:43:24.436 27000 FEE 436685 1729 6049351 2024-02-23 23:43:24.436 2024-02-23 23:43:24.436 243000 TIP 436685 21386 6049352 2024-02-23 23:43:25.045 2024-02-23 23:43:25.045 500 FEE 436303 12346 6049353 2024-02-23 23:43:25.045 2024-02-23 23:43:25.045 4500 TIP 436303 1490 6049364 2024-02-23 23:44:01.655 2024-02-23 23:44:01.655 500 FEE 436603 9352 6049365 2024-02-23 23:44:01.655 2024-02-23 23:44:01.655 4500 TIP 436603 7673 6049373 2024-02-23 23:44:38.003 2024-02-23 23:44:38.003 27000 FEE 436702 18274 6049374 2024-02-23 23:44:38.003 2024-02-23 23:44:38.003 243000 TIP 436702 6777 6049382 2024-02-23 23:45:31.72 2024-02-23 23:45:31.72 1000 FEE 436742 679 6049386 2024-02-23 23:46:10.211 2024-02-23 23:46:10.211 4000 FEE 436742 11192 6049387 2024-02-23 23:46:10.211 2024-02-23 23:46:10.211 36000 TIP 436742 16633 6049405 2024-02-23 23:48:23.792 2024-02-23 23:48:23.792 100 FEE 436669 630 6049406 2024-02-23 23:48:23.792 2024-02-23 23:48:23.792 900 TIP 436669 16505 6049414 2024-02-23 23:49:08.141 2024-02-23 23:49:08.141 100 FEE 436733 696 6049415 2024-02-23 23:49:08.141 2024-02-23 23:49:08.141 900 TIP 436733 712 6049429 2024-02-23 23:49:58.732 2024-02-23 23:49:58.732 1000 FEE 436725 20546 6049430 2024-02-23 23:49:58.732 2024-02-23 23:49:58.732 9000 TIP 436725 4014 6049434 2024-02-23 23:50:09.218 2024-02-23 23:50:09.218 100 FEE 436720 20891 6049435 2024-02-23 23:50:09.218 2024-02-23 23:50:09.218 900 TIP 436720 6361 6049439 2024-02-23 23:51:30.565 2024-02-23 23:51:30.565 500 FEE 435847 20802 6049440 2024-02-23 23:51:30.565 2024-02-23 23:51:30.565 4500 TIP 435847 6058 6049441 2024-02-23 23:51:30.921 2024-02-23 23:51:30.921 500 FEE 435944 14688 6049442 2024-02-23 23:51:30.921 2024-02-23 23:51:30.921 4500 TIP 435944 624 6049514 2024-02-23 23:57:39.161 2024-02-23 23:57:39.161 4000 FEE 436752 19854 6049515 2024-02-23 23:57:39.161 2024-02-23 23:57:39.161 36000 TIP 436752 13517 6049529 2024-02-23 23:58:46.813 2024-02-23 23:58:46.813 0 FEE 436759 15052 6049532 2024-02-23 23:58:47.72 2024-02-23 23:58:47.72 1000 FEE 436759 17953 6049533 2024-02-23 23:58:47.72 2024-02-23 23:58:47.72 9000 TIP 436759 13132 6049543 2024-02-23 23:59:43.382 2024-02-23 23:59:43.382 100 FEE 433828 18402 6049544 2024-02-23 23:59:43.382 2024-02-23 23:59:43.382 900 TIP 433828 17494 6049545 2024-02-23 23:59:48.069 2024-02-23 23:59:48.069 1000 FEE 436303 16598 6049546 2024-02-23 23:59:48.069 2024-02-23 23:59:48.069 9000 TIP 436303 2061 6049568 2024-02-24 00:02:01.368 2024-02-24 00:02:01.368 2300 FEE 436753 649 6049569 2024-02-24 00:02:01.368 2024-02-24 00:02:01.368 20700 TIP 436753 2065 6049571 2024-02-24 00:03:03.925 2024-02-24 00:03:03.925 1000 FEE 436763 6260 6049573 2024-02-24 00:03:09.011 2024-02-24 00:03:09.011 3000 FEE 436683 12175 6049574 2024-02-24 00:03:09.011 2024-02-24 00:03:09.011 27000 TIP 436683 4958 6049581 2024-02-24 00:05:25.809 2024-02-24 00:05:25.809 1000 FEE 435944 20680 6049582 2024-02-24 00:05:25.809 2024-02-24 00:05:25.809 9000 TIP 435944 674 6049589 2024-02-24 00:05:31.409 2024-02-24 00:05:31.409 1000 FEE 436720 18291 6049590 2024-02-24 00:05:31.409 2024-02-24 00:05:31.409 9000 TIP 436720 16954 6049609 2024-02-24 00:07:10.109 2024-02-24 00:07:10.109 1000 FEE 435860 12779 6048998 2024-02-23 23:09:03.542 2024-02-23 23:09:03.542 1000 STREAM 141924 1512 6049001 2024-02-23 23:11:03.544 2024-02-23 23:11:03.544 1000 STREAM 141924 687 6049002 2024-02-23 23:12:03.57 2024-02-23 23:12:03.57 1000 STREAM 141924 19096 6049021 2024-02-23 23:13:03.556 2024-02-23 23:13:03.556 1000 STREAM 141924 1195 6049033 2024-02-23 23:17:03.583 2024-02-23 23:17:03.583 1000 STREAM 141924 738 6049034 2024-02-23 23:18:03.911 2024-02-23 23:18:03.911 1000 STREAM 141924 3979 6049035 2024-02-23 23:19:03.923 2024-02-23 23:19:03.923 1000 STREAM 141924 5725 6049304 2024-02-23 23:40:03.729 2024-02-23 23:40:03.729 1000 STREAM 141924 10693 6049324 2024-02-23 23:41:03.787 2024-02-23 23:41:03.787 1000 STREAM 141924 13097 6049335 2024-02-23 23:42:03.78 2024-02-23 23:42:03.78 1000 STREAM 141924 10112 6114285 2024-02-29 15:40:19.206 2024-02-29 15:40:19.206 500 FEE 443709 21051 6114286 2024-02-29 15:40:19.206 2024-02-29 15:40:19.206 4500 TIP 443709 20454 6114301 2024-02-29 15:44:13.745 2024-02-29 15:44:13.745 1000 FEE 443714 9758 6114302 2024-02-29 15:44:40.877 2024-02-29 15:44:40.877 1000 FEE 443715 9342 6114304 2024-02-29 15:44:59.981 2024-02-29 15:44:59.981 100 FEE 443713 21577 6114305 2024-02-29 15:44:59.981 2024-02-29 15:44:59.981 900 TIP 443713 1817 6114320 2024-02-29 15:47:14.55 2024-02-29 15:47:14.55 1000 FEE 443716 11590 6114337 2024-02-29 15:49:08.703 2024-02-29 15:49:08.703 10000 FEE 442890 14774 6114338 2024-02-29 15:49:08.703 2024-02-29 15:49:08.703 90000 TIP 442890 9992 6114340 2024-02-29 15:50:18.667 2024-02-29 15:50:18.667 1000 FEE 443720 20436 6114342 2024-02-29 15:50:42.077 2024-02-29 15:50:42.077 1000 FEE 443722 19943 6114356 2024-02-29 15:51:54.144 2024-02-29 15:51:54.144 0 FEE 443720 9796 6114374 2024-02-29 15:52:32.524 2024-02-29 15:52:32.524 100000 FEE 443727 635 6114391 2024-02-29 15:54:58.289 2024-02-29 15:54:58.289 500 FEE 443617 21389 6114392 2024-02-29 15:54:58.289 2024-02-29 15:54:58.289 4500 TIP 443617 811 6114430 2024-02-29 15:58:15.688 2024-02-29 15:58:15.688 9000 FEE 443577 1596 6114431 2024-02-29 15:58:15.688 2024-02-29 15:58:15.688 81000 TIP 443577 1567 6114433 2024-02-29 15:58:48.6 2024-02-29 15:58:48.6 2100 FEE 443698 7766 6114434 2024-02-29 15:58:48.6 2024-02-29 15:58:48.6 18900 TIP 443698 19890 6114437 2024-02-29 15:58:52.753 2024-02-29 15:58:52.753 0 FEE 443730 21555 6114452 2024-02-29 16:00:02.469 2024-02-29 16:00:02.469 1000 FEE 443729 19148 6114453 2024-02-29 16:00:02.469 2024-02-29 16:00:02.469 9000 TIP 443729 20179 6114480 2024-02-29 16:01:47.087 2024-02-29 16:01:47.087 1000 FEE 443740 21239 6114494 2024-02-29 16:02:23.255 2024-02-29 16:02:23.255 100 FEE 443734 787 6114495 2024-02-29 16:02:23.255 2024-02-29 16:02:23.255 900 TIP 443734 15271 6114500 2024-02-29 16:02:25.121 2024-02-29 16:02:25.121 900 FEE 443738 8505 6114501 2024-02-29 16:02:25.121 2024-02-29 16:02:25.121 8100 TIP 443738 9346 6114502 2024-02-29 16:02:43.906 2024-02-29 16:02:43.906 5700 FEE 443734 2309 6114503 2024-02-29 16:02:43.906 2024-02-29 16:02:43.906 51300 TIP 443734 17690 6114510 2024-02-29 16:04:54.658 2024-02-29 16:04:54.658 100000 FEE 443743 17570 6114527 2024-02-29 16:07:04.436 2024-02-29 16:07:04.436 21000 FEE 443743 17714 6114528 2024-02-29 16:07:04.436 2024-02-29 16:07:04.436 189000 TIP 443743 16178 6114538 2024-02-29 16:07:58.763 2024-02-29 16:07:58.763 1000 FEE 443742 21614 6114539 2024-02-29 16:07:58.763 2024-02-29 16:07:58.763 9000 TIP 443742 15510 6114552 2024-02-29 16:08:41.359 2024-02-29 16:08:41.359 100 FEE 443747 4062 6114553 2024-02-29 16:08:41.359 2024-02-29 16:08:41.359 900 TIP 443747 11760 6114554 2024-02-29 16:08:42.091 2024-02-29 16:08:42.091 100 FEE 443747 746 6114555 2024-02-29 16:08:42.091 2024-02-29 16:08:42.091 900 TIP 443747 11670 6114597 2024-02-29 16:11:37.592 2024-02-29 16:11:37.592 1000 FEE 443756 15273 6114598 2024-02-29 16:11:45.272 2024-02-29 16:11:45.272 1000 FEE 443399 16230 6114599 2024-02-29 16:11:45.272 2024-02-29 16:11:45.272 9000 TIP 443399 17800 6114602 2024-02-29 16:12:16.627 2024-02-29 16:12:16.627 1000 FEE 443758 20560 6114606 2024-02-29 16:12:34.809 2024-02-29 16:12:34.809 5700 FEE 443660 11750 6114607 2024-02-29 16:12:34.809 2024-02-29 16:12:34.809 51300 TIP 443660 19854 6114640 2024-02-29 16:16:22.844 2024-02-29 16:16:22.844 0 FEE 443762 1603 6114642 2024-02-29 16:16:29.848 2024-02-29 16:16:29.848 0 FEE 443762 1605 6114654 2024-02-29 16:17:42.29 2024-02-29 16:17:42.29 1000 FEE 443768 2361 6114667 2024-02-29 16:18:30.26 2024-02-29 16:18:30.26 2100 FEE 443616 2508 6114668 2024-02-29 16:18:30.26 2024-02-29 16:18:30.26 18900 TIP 443616 8648 6114669 2024-02-29 16:18:38.368 2024-02-29 16:18:38.368 2100 FEE 443767 3729 6114670 2024-02-29 16:18:38.368 2024-02-29 16:18:38.368 18900 TIP 443767 19138 6114677 2024-02-29 16:19:15.927 2024-02-29 16:19:15.927 100 FEE 443764 688 6114678 2024-02-29 16:19:15.927 2024-02-29 16:19:15.927 900 TIP 443764 16638 6114680 2024-02-29 16:19:30.993 2024-02-29 16:19:30.993 800 FEE 443745 946 6114681 2024-02-29 16:19:30.993 2024-02-29 16:19:30.993 7200 TIP 443745 16250 6114703 2024-02-29 16:20:49.293 2024-02-29 16:20:49.293 9000 FEE 443712 14370 6114704 2024-02-29 16:20:49.293 2024-02-29 16:20:49.293 81000 TIP 443712 5708 6114742 2024-02-29 16:24:40.347 2024-02-29 16:24:40.347 2100 FEE 443372 21451 6114743 2024-02-29 16:24:40.347 2024-02-29 16:24:40.347 18900 TIP 443372 18819 6114779 2024-02-29 16:25:56.729 2024-02-29 16:25:56.729 500 FEE 443784 19581 6114780 2024-02-29 16:25:56.729 2024-02-29 16:25:56.729 4500 TIP 443784 7978 6114789 2024-02-29 16:26:42.886 2024-02-29 16:26:42.886 1000 FEE 443787 9275 6114795 2024-02-29 16:26:55.617 2024-02-29 16:26:55.617 0 FEE 443781 13599 6114812 2024-02-29 16:27:24.577 2024-02-29 16:27:24.577 0 FEE 443781 1817 6114823 2024-02-29 16:28:17.959 2024-02-29 16:28:17.959 2100 FEE 443743 14381 6114824 2024-02-29 16:28:17.959 2024-02-29 16:28:17.959 18900 TIP 443743 12222 6114837 2024-02-29 16:29:20.521 2024-02-29 16:29:20.521 0 FEE 443793 18280 6114849 2024-02-29 16:30:16.47 2024-02-29 16:30:16.47 0 FEE 443781 6058 6114876 2024-02-29 16:33:12.64 2024-02-29 16:33:12.64 10000 FEE 443798 919 6114877 2024-02-29 16:33:12.64 2024-02-29 16:33:12.64 90000 TIP 443798 13527 6114879 2024-02-29 16:33:31.292 2024-02-29 16:33:31.292 1000 FEE 443800 18932 6114884 2024-02-29 16:34:03.009 2024-02-29 16:34:03.009 1000 FEE 443801 3440 6114896 2024-02-29 16:34:12.247 2024-02-29 16:34:12.247 100 FEE 443694 15833 6114897 2024-02-29 16:34:12.247 2024-02-29 16:34:12.247 900 TIP 443694 16270 6114900 2024-02-29 16:34:13.146 2024-02-29 16:34:13.146 100 FEE 443694 3353 6114901 2024-02-29 16:34:13.146 2024-02-29 16:34:13.146 900 TIP 443694 15491 6114908 2024-02-29 16:34:15.071 2024-02-29 16:34:15.071 100 FEE 443694 5175 6114909 2024-02-29 16:34:15.071 2024-02-29 16:34:15.071 900 TIP 443694 19572 6114929 2024-02-29 16:35:51.871 2024-02-29 16:35:51.871 2100 FEE 443509 954 6114930 2024-02-29 16:35:51.871 2024-02-29 16:35:51.871 18900 TIP 443509 16336 6114940 2024-02-29 16:36:50.177 2024-02-29 16:36:50.177 100 FEE 443345 837 6114941 2024-02-29 16:36:50.177 2024-02-29 16:36:50.177 900 TIP 443345 11873 6114944 2024-02-29 16:36:50.589 2024-02-29 16:36:50.589 100 FEE 443345 12278 6114945 2024-02-29 16:36:50.589 2024-02-29 16:36:50.589 900 TIP 443345 2342 6114946 2024-02-29 16:36:51.553 2024-02-29 16:36:51.553 100 FEE 443345 18727 6114947 2024-02-29 16:36:51.553 2024-02-29 16:36:51.553 900 TIP 443345 12606 6115000 2024-02-29 16:39:11.134 2024-02-29 16:39:11.134 2100 FEE 443545 802 6115001 2024-02-29 16:39:11.134 2024-02-29 16:39:11.134 18900 TIP 443545 6160 6115013 2024-02-29 16:40:18.089 2024-02-29 16:40:18.089 1000 FEE 443810 19930 6115023 2024-02-29 16:40:33.77 2024-02-29 16:40:33.77 1000 FEE 442964 11329 6049011 2024-02-23 23:12:31.716 2024-02-23 23:12:31.716 1000 FEE 436720 12965 6049012 2024-02-23 23:12:31.716 2024-02-23 23:12:31.716 9000 TIP 436720 5759 6049013 2024-02-23 23:12:35.573 2024-02-23 23:12:35.573 1000 FEE 436709 2098 6049014 2024-02-23 23:12:35.573 2024-02-23 23:12:35.573 9000 TIP 436709 17827 6049027 2024-02-23 23:16:26.239 2024-02-23 23:16:26.239 100000 FEE 436721 16542 6049029 2024-02-23 23:16:46.114 2024-02-23 23:16:46.114 1000 FEE 436612 1145 6049030 2024-02-23 23:16:46.114 2024-02-23 23:16:46.114 9000 TIP 436612 650 6049063 2024-02-23 23:22:21.425 2024-02-23 23:22:21.425 100 FEE 433943 3506 6049064 2024-02-23 23:22:21.425 2024-02-23 23:22:21.425 900 TIP 433943 12222 6049067 2024-02-23 23:22:22.719 2024-02-23 23:22:22.719 100 FEE 433943 21036 6049068 2024-02-23 23:22:22.719 2024-02-23 23:22:22.719 900 TIP 433943 15978 6049081 2024-02-23 23:24:46.112 2024-02-23 23:24:46.112 1000 FEE 436491 8245 6049082 2024-02-23 23:24:46.112 2024-02-23 23:24:46.112 9000 TIP 436491 3417 6049118 2024-02-23 23:25:46.256 2024-02-23 23:25:46.256 2300 FEE 436612 7773 6049119 2024-02-23 23:25:46.256 2024-02-23 23:25:46.256 20700 TIP 436612 9844 6049155 2024-02-23 23:26:33.851 2024-02-23 23:26:33.851 2300 FEE 436720 18984 6049156 2024-02-23 23:26:33.851 2024-02-23 23:26:33.851 20700 TIP 436720 12566 6049159 2024-02-23 23:26:36.944 2024-02-23 23:26:36.944 5000 FEE 436466 8570 6049160 2024-02-23 23:26:36.944 2024-02-23 23:26:36.944 45000 TIP 436466 10060 6049161 2024-02-23 23:26:58.523 2024-02-23 23:26:58.523 100000 FEE 436729 18243 6049188 2024-02-23 23:31:54.774 2024-02-23 23:31:54.774 10000 FEE 436552 963 6049189 2024-02-23 23:31:54.774 2024-02-23 23:31:54.774 90000 TIP 436552 8945 6049195 2024-02-23 23:32:21.613 2024-02-23 23:32:21.613 2100 FEE 436695 16301 6049196 2024-02-23 23:32:21.613 2024-02-23 23:32:21.613 18900 TIP 436695 15060 6049229 2024-02-23 23:33:53.653 2024-02-23 23:33:53.653 8300 FEE 436729 18601 6049059 2024-02-23 23:21:04.046 2024-02-23 23:21:04.046 1000 STREAM 141924 21578 6049295 2024-02-23 23:39:04.168 2024-02-23 23:39:04.168 1000 STREAM 141924 1244 6049622 2024-02-24 00:08:04.433 2024-02-24 00:08:04.433 1000 STREAM 141924 1198 6049624 2024-02-24 00:10:04.44 2024-02-24 00:10:04.44 1000 STREAM 141924 17927 6049631 2024-02-24 00:12:04.485 2024-02-24 00:12:04.485 1000 STREAM 141924 14489 6049653 2024-02-24 00:15:04.502 2024-02-24 00:15:04.502 1000 STREAM 141924 15160 6114289 2024-02-29 15:41:02.887 2024-02-29 15:41:02.887 1000 STREAM 141924 20152 6114290 2024-02-29 15:42:02.874 2024-02-29 15:42:02.874 1000 STREAM 141924 17523 6114296 2024-02-29 15:43:02.874 2024-02-29 15:43:02.874 1000 STREAM 141924 1833 6114336 2024-02-29 15:49:02.922 2024-02-29 15:49:02.922 1000 STREAM 141924 15326 6114347 2024-02-29 15:51:03.092 2024-02-29 15:51:03.092 1000 STREAM 141924 15491 6114415 2024-02-29 15:57:02.973 2024-02-29 15:57:02.973 1000 STREAM 141924 21501 6114454 2024-02-29 16:00:02.994 2024-02-29 16:00:02.994 1000 STREAM 141924 669 6114509 2024-02-29 16:04:03.001 2024-02-29 16:04:03.001 1000 STREAM 141924 13406 6114517 2024-02-29 16:05:03.008 2024-02-29 16:05:03.008 1000 STREAM 141924 676 6114526 2024-02-29 16:07:03.016 2024-02-29 16:07:03.016 1000 STREAM 141924 2681 6114578 2024-02-29 16:09:03.021 2024-02-29 16:09:03.021 1000 STREAM 141924 4388 6114593 2024-02-29 16:11:03.027 2024-02-29 16:11:03.027 1000 STREAM 141924 7583 6114611 2024-02-29 16:14:03.063 2024-02-29 16:14:03.063 1000 STREAM 141924 21164 6114659 2024-02-29 16:18:03.072 2024-02-29 16:18:03.072 1000 STREAM 141924 8448 6114673 2024-02-29 16:19:03.084 2024-02-29 16:19:03.084 1000 STREAM 141924 2735 6114717 2024-02-29 16:22:03.107 2024-02-29 16:22:03.107 1000 STREAM 141924 20581 6114872 2024-02-29 16:33:03.151 2024-02-29 16:33:03.151 1000 STREAM 141924 9450 6114885 2024-02-29 16:34:03.151 2024-02-29 16:34:03.151 1000 STREAM 141924 15409 6115072 2024-02-29 16:42:03.286 2024-02-29 16:42:03.286 1000 STREAM 141924 2773 6115517 2024-02-29 17:01:03.377 2024-02-29 17:01:03.377 1000 STREAM 141924 10849 6115675 2024-02-29 17:14:03.465 2024-02-29 17:14:03.465 1000 STREAM 141924 9200 6115683 2024-02-29 17:15:03.474 2024-02-29 17:15:03.474 1000 STREAM 141924 9365 6115691 2024-02-29 17:16:03.476 2024-02-29 17:16:03.476 1000 STREAM 141924 15159 6115741 2024-02-29 17:19:03.499 2024-02-29 17:19:03.499 1000 STREAM 141924 12220 6115943 2024-02-29 17:33:03.578 2024-02-29 17:33:03.578 1000 STREAM 141924 618 6049069 2024-02-23 23:23:03.233 2024-02-23 23:23:03.233 1000 STREAM 141924 9438 6049071 2024-02-23 23:24:03.246 2024-02-23 23:24:03.246 1000 STREAM 141924 27 6049162 2024-02-23 23:27:03.281 2024-02-23 23:27:03.281 1000 STREAM 141924 5904 6049176 2024-02-23 23:28:03.286 2024-02-23 23:28:03.286 1000 STREAM 141924 21064 6049181 2024-02-23 23:31:03.322 2024-02-23 23:31:03.322 1000 STREAM 141924 1845 6049251 2024-02-23 23:34:03.396 2024-02-23 23:34:03.396 1000 STREAM 141924 4624 6049385 2024-02-23 23:46:03.436 2024-02-23 23:46:03.436 1000 STREAM 141924 18119 6049395 2024-02-23 23:47:03.445 2024-02-23 23:47:03.445 1000 STREAM 141924 12768 6049399 2024-02-23 23:48:03.441 2024-02-23 23:48:03.441 1000 STREAM 141924 2832 6049437 2024-02-23 23:51:03.451 2024-02-23 23:51:03.451 1000 STREAM 141924 17727 6049463 2024-02-23 23:52:03.463 2024-02-23 23:52:03.463 1000 STREAM 141924 19199 6049500 2024-02-23 23:55:03.519 2024-02-23 23:55:03.519 1000 STREAM 141924 19836 6049506 2024-02-23 23:56:03.511 2024-02-23 23:56:03.511 1000 STREAM 141924 876 6049520 2024-02-23 23:58:03.505 2024-02-23 23:58:03.505 1000 STREAM 141924 17365 6049796 2024-02-24 00:32:03.411 2024-02-24 00:32:03.411 1000 STREAM 141924 7877 6049800 2024-02-24 00:35:03.455 2024-02-24 00:35:03.455 1000 STREAM 141924 16432 6049801 2024-02-24 00:36:03.455 2024-02-24 00:36:03.455 1000 STREAM 141924 19449 6049809 2024-02-24 00:37:03.465 2024-02-24 00:37:03.465 1000 STREAM 141924 18470 6049814 2024-02-24 00:39:03.897 2024-02-24 00:39:03.897 1000 STREAM 141924 622 6049817 2024-02-24 00:40:03.914 2024-02-24 00:40:03.914 1000 STREAM 141924 10096 6049818 2024-02-24 00:41:03.906 2024-02-24 00:41:03.906 1000 STREAM 141924 2013 6049826 2024-02-24 00:44:03.92 2024-02-24 00:44:03.92 1000 STREAM 141924 20636 6049830 2024-02-24 00:45:03.931 2024-02-24 00:45:03.931 1000 STREAM 141924 1650 6049866 2024-02-24 00:52:03.918 2024-02-24 00:52:03.918 1000 STREAM 141924 13622 6049895 2024-02-24 01:00:04.213 2024-02-24 01:00:04.213 1000 STREAM 141924 19553 6049904 2024-02-24 01:01:04.103 2024-02-24 01:01:04.103 1000 STREAM 141924 19662 6049907 2024-02-24 01:03:04.111 2024-02-24 01:03:04.111 1000 STREAM 141924 18675 6049913 2024-02-24 01:04:04.109 2024-02-24 01:04:04.109 1000 STREAM 141924 18076 6049921 2024-02-24 01:06:04.13 2024-02-24 01:06:04.13 1000 STREAM 141924 11158 6049922 2024-02-24 01:07:04.128 2024-02-24 01:07:04.128 1000 STREAM 141924 5520 6049924 2024-02-24 01:09:04.141 2024-02-24 01:09:04.141 1000 STREAM 141924 20912 6049963 2024-02-24 01:18:02.104 2024-02-24 01:18:02.104 1000 STREAM 141924 880 6050018 2024-02-24 01:29:02.64 2024-02-24 01:29:02.64 1000 STREAM 141924 20998 6050028 2024-02-24 01:31:03.499 2024-02-24 01:31:03.499 1000 STREAM 141924 8729 6114316 2024-02-29 15:46:02.907 2024-02-29 15:46:02.907 1000 STREAM 141924 21395 6114332 2024-02-29 15:48:02.899 2024-02-29 15:48:02.899 1000 STREAM 141924 4166 6114339 2024-02-29 15:50:02.928 2024-02-29 15:50:02.928 1000 STREAM 141924 7097 6114357 2024-02-29 15:52:02.925 2024-02-29 15:52:02.925 1000 STREAM 141924 11477 6114375 2024-02-29 15:53:02.928 2024-02-29 15:53:02.928 1000 STREAM 141924 11038 6114382 2024-02-29 15:54:02.944 2024-02-29 15:54:02.944 1000 STREAM 141924 19826 6114395 2024-02-29 15:55:02.944 2024-02-29 15:55:02.944 1000 STREAM 141924 12965 6114411 2024-02-29 15:56:02.951 2024-02-29 15:56:02.951 1000 STREAM 141924 1483 6114425 2024-02-29 15:58:02.978 2024-02-29 15:58:02.978 1000 STREAM 141924 16653 6114438 2024-02-29 15:59:02.973 2024-02-29 15:59:02.973 1000 STREAM 141924 1785 6114487 2024-02-29 16:02:02.993 2024-02-29 16:02:02.993 1000 STREAM 141924 1970 6114506 2024-02-29 16:03:03.006 2024-02-29 16:03:03.006 1000 STREAM 141924 18392 6114522 2024-02-29 16:06:03.014 2024-02-29 16:06:03.014 1000 STREAM 141924 18769 6114540 2024-02-29 16:08:03.018 2024-02-29 16:08:03.018 1000 STREAM 141924 18311 6114600 2024-02-29 16:12:03.036 2024-02-29 16:12:03.036 1000 STREAM 141924 4538 6114636 2024-02-29 16:16:03.07 2024-02-29 16:16:03.07 1000 STREAM 141924 21395 6114647 2024-02-29 16:17:03.066 2024-02-29 16:17:03.066 1000 STREAM 141924 16839 6114693 2024-02-29 16:20:03.127 2024-02-29 16:20:03.127 1000 STREAM 141924 20597 6114705 2024-02-29 16:21:03.109 2024-02-29 16:21:03.109 1000 STREAM 141924 8095 6114722 2024-02-29 16:23:03.117 2024-02-29 16:23:03.117 1000 STREAM 141924 21352 6114729 2024-02-29 16:24:03.127 2024-02-29 16:24:03.127 1000 STREAM 141924 20182 6114781 2024-02-29 16:26:03.134 2024-02-29 16:26:03.134 1000 STREAM 141924 10934 6114800 2024-02-29 16:27:03.133 2024-02-29 16:27:03.133 1000 STREAM 141924 18583 6114831 2024-02-29 16:29:03.119 2024-02-29 16:29:03.119 1000 STREAM 141924 21485 6114846 2024-02-29 16:30:03.149 2024-02-29 16:30:03.149 1000 STREAM 141924 8245 6114855 2024-02-29 16:31:03.151 2024-02-29 16:31:03.151 1000 STREAM 141924 20837 6114980 2024-02-29 16:37:03.152 2024-02-29 16:37:03.152 1000 STREAM 141924 8133 6115274 2024-02-29 16:47:03.323 2024-02-29 16:47:03.323 1000 STREAM 141924 16970 6115512 2024-02-29 17:00:03.38 2024-02-29 17:00:03.38 1000 STREAM 141924 20906 6115526 2024-02-29 17:03:03.404 2024-02-29 17:03:03.404 1000 STREAM 141924 2176 6115639 2024-02-29 17:10:03.465 2024-02-29 17:10:03.465 1000 STREAM 141924 9171 6115668 2024-02-29 17:13:03.455 2024-02-29 17:13:03.455 1000 STREAM 141924 18468 6115715 2024-02-29 17:17:03.485 2024-02-29 17:17:03.485 1000 STREAM 141924 20168 6115737 2024-02-29 17:18:03.473 2024-02-29 17:18:03.473 1000 STREAM 141924 1120 6049133 2024-02-23 23:25:55.916 2024-02-23 23:25:55.916 5000 FEE 436449 20257 6049134 2024-02-23 23:25:55.916 2024-02-23 23:25:55.916 45000 TIP 436449 19857 6049145 2024-02-23 23:26:31.385 2024-02-23 23:26:31.385 2300 FEE 436720 18525 6049146 2024-02-23 23:26:31.385 2024-02-23 23:26:31.385 20700 TIP 436720 10342 6049184 2024-02-23 23:31:10.825 2024-02-23 23:31:10.825 1000 FEE 436703 19661 6049185 2024-02-23 23:31:10.825 2024-02-23 23:31:10.825 9000 TIP 436703 20602 6049186 2024-02-23 23:31:42.16 2024-02-23 23:31:42.16 2100 FEE 436683 18291 6049187 2024-02-23 23:31:42.16 2024-02-23 23:31:42.16 18900 TIP 436683 18830 6049201 2024-02-23 23:32:34.695 2024-02-23 23:32:34.695 2100 FEE 436717 8945 6049202 2024-02-23 23:32:34.695 2024-02-23 23:32:34.695 18900 TIP 436717 20163 6049205 2024-02-23 23:32:42.197 2024-02-23 23:32:42.197 2100 FEE 436697 2525 6049206 2024-02-23 23:32:42.197 2024-02-23 23:32:42.197 18900 TIP 436697 20222 6049233 2024-02-23 23:33:53.991 2024-02-23 23:33:53.991 8300 FEE 436729 20481 6049234 2024-02-23 23:33:53.991 2024-02-23 23:33:53.991 74700 TIP 436729 3656 6049252 2024-02-23 23:34:14.195 2024-02-23 23:34:14.195 100 FEE 436699 1488 6049253 2024-02-23 23:34:14.195 2024-02-23 23:34:14.195 900 TIP 436699 17446 6049254 2024-02-23 23:34:14.442 2024-02-23 23:34:14.442 900 FEE 436699 20987 6049255 2024-02-23 23:34:14.442 2024-02-23 23:34:14.442 8100 TIP 436699 16193 6049325 2024-02-23 23:41:12.577 2024-02-23 23:41:12.577 500 FEE 435950 20306 6049326 2024-02-23 23:41:12.577 2024-02-23 23:41:12.577 4500 TIP 435950 15326 6049327 2024-02-23 23:41:13.596 2024-02-23 23:41:13.596 500 FEE 435950 21178 6049328 2024-02-23 23:41:13.596 2024-02-23 23:41:13.596 4500 TIP 435950 749 6049329 2024-02-23 23:41:13.982 2024-02-23 23:41:13.982 4000 FEE 436736 1124 6049330 2024-02-23 23:41:13.982 2024-02-23 23:41:13.982 36000 TIP 436736 15052 6049348 2024-02-23 23:43:24.385 2024-02-23 23:43:24.385 500 FEE 436303 19449 6049349 2024-02-23 23:43:24.385 2024-02-23 23:43:24.385 4500 TIP 436303 17976 6049360 2024-02-23 23:43:47.601 2024-02-23 23:43:47.601 2800 FEE 436491 17494 6049361 2024-02-23 23:43:47.601 2024-02-23 23:43:47.601 25200 TIP 436491 21339 6049369 2024-02-23 23:44:21.573 2024-02-23 23:44:21.573 500 FEE 436241 20264 6049370 2024-02-23 23:44:21.573 2024-02-23 23:44:21.573 4500 TIP 436241 20701 6049388 2024-02-23 23:46:10.987 2024-02-23 23:46:10.987 4000 FEE 436742 20704 6049389 2024-02-23 23:46:10.987 2024-02-23 23:46:10.987 36000 TIP 436742 4574 6049397 2024-02-23 23:47:27.925 2024-02-23 23:47:27.925 2100 FEE 436733 17568 6049398 2024-02-23 23:47:27.925 2024-02-23 23:47:27.925 18900 TIP 436733 701 6049400 2024-02-23 23:48:12.504 2024-02-23 23:48:12.504 10000 FEE 436745 14168 6049422 2024-02-23 23:49:21.147 2024-02-23 23:49:21.147 100 FEE 436499 14404 6049423 2024-02-23 23:49:21.147 2024-02-23 23:49:21.147 900 TIP 436499 1745 6049432 2024-02-23 23:50:07.708 2024-02-23 23:50:07.708 1000 FEE 436743 20353 6049433 2024-02-23 23:50:07.708 2024-02-23 23:50:07.708 9000 TIP 436743 20990 6049447 2024-02-23 23:51:37.009 2024-02-23 23:51:37.009 500 FEE 436093 21275 6049448 2024-02-23 23:51:37.009 2024-02-23 23:51:37.009 4500 TIP 436093 882 6049453 2024-02-23 23:51:39.536 2024-02-23 23:51:39.536 500 FEE 436241 660 6049454 2024-02-23 23:51:39.536 2024-02-23 23:51:39.536 4500 TIP 436241 14909 6049468 2024-02-23 23:52:55.287 2024-02-23 23:52:55.287 500 FEE 436690 18529 6049469 2024-02-23 23:52:55.287 2024-02-23 23:52:55.287 4500 TIP 436690 15282 6049502 2024-02-23 23:55:35.927 2024-02-23 23:55:35.927 3000 FEE 436733 9330 6049503 2024-02-23 23:55:35.927 2024-02-23 23:55:35.927 27000 TIP 436733 2176 6049530 2024-02-23 23:58:47.653 2024-02-23 23:58:47.653 1000 FEE 436241 20502 6049531 2024-02-23 23:58:47.653 2024-02-23 23:58:47.653 9000 TIP 436241 14015 6049585 2024-02-24 00:05:27.964 2024-02-24 00:05:27.964 1000 FEE 435905 21218 6049586 2024-02-24 00:05:27.964 2024-02-24 00:05:27.964 9000 TIP 435905 2722 6049591 2024-02-24 00:05:41.834 2024-02-24 00:05:41.834 1000 FEE 436564 19087 6049592 2024-02-24 00:05:41.834 2024-02-24 00:05:41.834 9000 TIP 436564 4538 6049613 2024-02-24 00:07:45.754 2024-02-24 00:07:45.754 2000 FEE 433001 626 6049614 2024-02-24 00:07:45.754 2024-02-24 00:07:45.754 18000 TIP 433001 1173 6049625 2024-02-24 00:10:53.395 2024-02-24 00:10:53.395 10000 FEE 436750 14545 6049626 2024-02-24 00:10:53.395 2024-02-24 00:10:53.395 90000 TIP 436750 20023 6049643 2024-02-24 00:14:56.242 2024-02-24 00:14:56.242 1000 FEE 435847 5377 6049644 2024-02-24 00:14:56.242 2024-02-24 00:14:56.242 9000 TIP 435847 18101 6049647 2024-02-24 00:14:58.529 2024-02-24 00:14:58.529 1000 FEE 436669 946 6049648 2024-02-24 00:14:58.529 2024-02-24 00:14:58.529 9000 TIP 436669 20036 6049654 2024-02-24 00:15:04.57 2024-02-24 00:15:04.57 100 FEE 436536 21373 6049655 2024-02-24 00:15:04.57 2024-02-24 00:15:04.57 900 TIP 436536 20327 6049676 2024-02-24 00:16:29.614 2024-02-24 00:16:29.614 3000 FEE 436759 20509 6049677 2024-02-24 00:16:29.614 2024-02-24 00:16:29.614 27000 TIP 436759 13097 6049680 2024-02-24 00:16:52.643 2024-02-24 00:16:52.643 1000 FEE 436770 19864 6049682 2024-02-24 00:17:06.646 2024-02-24 00:17:06.646 1000 FEE 436710 20754 6049683 2024-02-24 00:17:06.646 2024-02-24 00:17:06.646 9000 TIP 436710 13781 6049686 2024-02-24 00:17:15.546 2024-02-24 00:17:15.546 1000 FEE 436582 8004 6049687 2024-02-24 00:17:15.546 2024-02-24 00:17:15.546 9000 TIP 436582 19488 6049688 2024-02-24 00:17:17.779 2024-02-24 00:17:17.779 1000 FEE 436276 19174 6049689 2024-02-24 00:17:17.779 2024-02-24 00:17:17.779 9000 TIP 436276 16042 6049714 2024-02-24 00:19:33.84 2024-02-24 00:19:33.84 2000 FEE 436765 20504 6049715 2024-02-24 00:19:33.84 2024-02-24 00:19:33.84 18000 TIP 436765 19576 6049731 2024-02-24 00:20:40.231 2024-02-24 00:20:40.231 0 FEE 436774 20120 6049739 2024-02-24 00:22:53.585 2024-02-24 00:22:53.585 0 FEE 436774 10690 6049182 2024-02-23 23:31:06.218 2024-02-23 23:31:06.218 1000 FEE 436703 13076 6049183 2024-02-23 23:31:06.218 2024-02-23 23:31:06.218 9000 TIP 436703 20454 6049207 2024-02-23 23:32:59.123 2024-02-23 23:32:59.123 10000 FEE 436720 20560 6049208 2024-02-23 23:32:59.123 2024-02-23 23:32:59.123 90000 TIP 436720 17109 6049223 2024-02-23 23:33:53.035 2024-02-23 23:33:53.035 8300 FEE 436729 4763 6049224 2024-02-23 23:33:53.035 2024-02-23 23:33:53.035 74700 TIP 436729 770 6049231 2024-02-23 23:33:53.858 2024-02-23 23:33:53.858 8300 FEE 436729 15544 6049232 2024-02-23 23:33:53.858 2024-02-23 23:33:53.858 74700 TIP 436729 760 6049235 2024-02-23 23:33:54.082 2024-02-23 23:33:54.082 8300 FEE 436729 4654 6049236 2024-02-23 23:33:54.082 2024-02-23 23:33:54.082 74700 TIP 436729 17710 6049256 2024-02-23 23:34:17.366 2024-02-23 23:34:17.366 2100 FEE 436560 4989 6049230 2024-02-23 23:33:53.653 2024-02-23 23:33:53.653 74700 TIP 436729 910 6049247 2024-02-23 23:34:01.604 2024-02-23 23:34:01.604 10000 FEE 436556 9351 6049248 2024-02-23 23:34:01.604 2024-02-23 23:34:01.604 90000 TIP 436556 1162 6049262 2024-02-23 23:34:48.241 2024-02-23 23:34:48.241 900 FEE 436709 9426 6049263 2024-02-23 23:34:48.241 2024-02-23 23:34:48.241 8100 TIP 436709 10007 6049331 2024-02-23 23:41:54.595 2024-02-23 23:41:54.595 500 FEE 435728 16442 6049332 2024-02-23 23:41:54.595 2024-02-23 23:41:54.595 4500 TIP 435728 20619 6049367 2024-02-23 23:44:18.194 2024-02-23 23:44:18.194 500 FEE 435905 2749 6049368 2024-02-23 23:44:18.194 2024-02-23 23:44:18.194 4500 TIP 435905 20452 6049392 2024-02-23 23:46:19.043 2024-02-23 23:46:19.043 1000 FEE 436743 21119 6049401 2024-02-23 23:48:16.186 2024-02-23 23:48:16.186 1000 FEE 436705 2639 6049402 2024-02-23 23:48:16.186 2024-02-23 23:48:16.186 9000 TIP 436705 18815 6049407 2024-02-23 23:48:32.474 2024-02-23 23:48:32.474 100 FEE 436683 20276 6049408 2024-02-23 23:48:32.474 2024-02-23 23:48:32.474 900 TIP 436683 20596 6049419 2024-02-23 23:49:16.986 2024-02-23 23:49:16.986 100 FEE 436556 1785 6049420 2024-02-23 23:49:16.986 2024-02-23 23:49:16.986 900 TIP 436556 16154 6049425 2024-02-23 23:49:56.433 2024-02-23 23:49:56.433 1000 FEE 436729 2460 6049426 2024-02-23 23:49:56.433 2024-02-23 23:49:56.433 9000 TIP 436729 21624 6049449 2024-02-23 23:51:37.587 2024-02-23 23:51:37.587 500 FEE 436560 1046 6049450 2024-02-23 23:51:37.587 2024-02-23 23:51:37.587 4500 TIP 436560 640 6049487 2024-02-23 23:53:51.373 2024-02-23 23:53:51.373 512000 FEE 436752 19333 6049508 2024-02-23 23:57:10.262 2024-02-23 23:57:10.262 1000 FEE 436756 5085 6049518 2024-02-23 23:58:03.34 2024-02-23 23:58:03.34 4000 FEE 436755 15409 6049519 2024-02-23 23:58:03.34 2024-02-23 23:58:03.34 36000 TIP 436755 16536 6049521 2024-02-23 23:58:13.128 2024-02-23 23:58:13.128 1000 FEE 436758 14267 6049583 2024-02-24 00:05:26.93 2024-02-24 00:05:26.93 1000 FEE 436093 3642 6049584 2024-02-24 00:05:26.93 2024-02-24 00:05:26.93 9000 TIP 436093 20596 6049635 2024-02-24 00:13:24.439 2024-02-24 00:13:24.439 100 FEE 436325 20980 6049636 2024-02-24 00:13:24.439 2024-02-24 00:13:24.439 900 TIP 436325 1173 6049658 2024-02-24 00:15:18.975 2024-02-24 00:15:18.975 1000 FEE 436566 8508 6049659 2024-02-24 00:15:18.975 2024-02-24 00:15:18.975 9000 TIP 436566 18543 6049668 2024-02-24 00:15:49.299 2024-02-24 00:15:49.299 1000 FEE 436768 3456 6049679 2024-02-24 00:16:38.473 2024-02-24 00:16:38.473 1000 POLL 436759 2232 6049702 2024-02-24 00:19:22.115 2024-02-24 00:19:22.115 8300 FEE 436753 12175 6049703 2024-02-24 00:19:22.115 2024-02-24 00:19:22.115 74700 TIP 436753 9351 6049748 2024-02-24 00:23:29.93 2024-02-24 00:23:29.93 2100 FEE 436720 5425 6049749 2024-02-24 00:23:29.93 2024-02-24 00:23:29.93 18900 TIP 436720 1007 6049765 2024-02-24 00:24:10.036 2024-02-24 00:24:10.036 0 FEE 436774 17455 6049772 2024-02-24 00:24:52.066 2024-02-24 00:24:52.066 21000 DONT_LIKE_THIS 436710 16296 6049778 2024-02-24 00:25:10.313 2024-02-24 00:25:10.313 2100 FEE 436582 4521 6049779 2024-02-24 00:25:10.313 2024-02-24 00:25:10.313 18900 TIP 436582 762 6049807 2024-02-24 00:36:25.556 2024-02-24 00:36:25.556 2100 FEE 436669 20162 6049808 2024-02-24 00:36:25.556 2024-02-24 00:36:25.556 18900 TIP 436669 20972 6049815 2024-02-24 00:39:07.752 2024-02-24 00:39:07.752 2100 FEE 436669 20452 6049816 2024-02-24 00:39:07.752 2024-02-24 00:39:07.752 18900 TIP 436669 2757 6049257 2024-02-23 23:34:17.366 2024-02-23 23:34:17.366 18900 TIP 436560 14503 6049272 2024-02-23 23:35:30.715 2024-02-23 23:35:30.715 4000 FEE 436733 19289 6049273 2024-02-23 23:35:30.715 2024-02-23 23:35:30.715 36000 TIP 436733 19996 6049274 2024-02-23 23:35:46.153 2024-02-23 23:35:46.153 100 FEE 436720 21207 6049275 2024-02-23 23:35:46.153 2024-02-23 23:35:46.153 900 TIP 436720 2741 6049280 2024-02-23 23:35:48.181 2024-02-23 23:35:48.181 90000 FEE 436720 1319 6049281 2024-02-23 23:35:48.181 2024-02-23 23:35:48.181 810000 TIP 436720 9166 6049285 2024-02-23 23:37:06.501 2024-02-23 23:37:06.501 4000 FEE 436729 8506 6049286 2024-02-23 23:37:06.501 2024-02-23 23:37:06.501 36000 TIP 436729 667 6049298 2024-02-23 23:39:09.946 2024-02-23 23:39:09.946 900 FEE 436656 705 6049299 2024-02-23 23:39:09.946 2024-02-23 23:39:09.946 8100 TIP 436656 660 6049300 2024-02-23 23:39:14.877 2024-02-23 23:39:14.877 2100 FEE 436709 14909 6049301 2024-02-23 23:39:14.877 2024-02-23 23:39:14.877 18900 TIP 436709 17568 6049354 2024-02-23 23:43:30.518 2024-02-23 23:43:30.518 2100 FEE 436686 19117 6049355 2024-02-23 23:43:30.518 2024-02-23 23:43:30.518 18900 TIP 436686 21090 6049356 2024-02-23 23:43:35.967 2024-02-23 23:43:35.967 1000 FEE 436740 20257 6049358 2024-02-23 23:43:46.045 2024-02-23 23:43:46.045 2800 FEE 436491 6136 6049359 2024-02-23 23:43:46.045 2024-02-23 23:43:46.045 25200 TIP 436491 18274 6049362 2024-02-23 23:44:00.722 2024-02-23 23:44:00.722 500 FEE 436603 8242 6049363 2024-02-23 23:44:00.722 2024-02-23 23:44:00.722 4500 TIP 436603 11938 6049379 2024-02-23 23:44:44.123 2024-02-23 23:44:44.123 3300 FEE 436683 1007 6049380 2024-02-23 23:44:44.123 2024-02-23 23:44:44.123 29700 TIP 436683 19320 6049393 2024-02-23 23:46:20.709 2024-02-23 23:46:20.709 2100 FEE 436725 7989 6049394 2024-02-23 23:46:20.709 2024-02-23 23:46:20.709 18900 TIP 436725 951 6049409 2024-02-23 23:48:52.471 2024-02-23 23:48:52.471 100 FEE 436729 6533 6049410 2024-02-23 23:48:52.471 2024-02-23 23:48:52.471 900 TIP 436729 19836 6049427 2024-02-23 23:49:57.971 2024-02-23 23:49:57.971 1000 FEE 436722 19735 6049428 2024-02-23 23:49:57.971 2024-02-23 23:49:57.971 9000 TIP 436722 19809 6049451 2024-02-23 23:51:38.615 2024-02-23 23:51:38.615 500 FEE 435905 20963 6049452 2024-02-23 23:51:38.615 2024-02-23 23:51:38.615 4500 TIP 435905 20730 6049457 2024-02-23 23:51:41.898 2024-02-23 23:51:41.898 500 FEE 436493 4831 6049458 2024-02-23 23:51:41.898 2024-02-23 23:51:41.898 4500 TIP 436493 20280 6049466 2024-02-23 23:52:52.992 2024-02-23 23:52:52.992 500 FEE 436690 15544 6049467 2024-02-23 23:52:52.992 2024-02-23 23:52:52.992 4500 TIP 436690 21349 6049489 2024-02-23 23:54:05.776 2024-02-23 23:54:05.776 1000 FEE 436720 8945 6049490 2024-02-23 23:54:05.776 2024-02-23 23:54:05.776 9000 TIP 436720 18170 6049493 2024-02-23 23:54:38.668 2024-02-23 23:54:38.668 1000 FEE 436750 2529 6049494 2024-02-23 23:54:38.668 2024-02-23 23:54:38.668 9000 TIP 436750 12072 6049509 2024-02-23 23:57:16.717 2024-02-23 23:57:16.717 1000 FEE 436459 16633 6049510 2024-02-23 23:57:16.717 2024-02-23 23:57:16.717 9000 TIP 436459 11220 6049513 2024-02-23 23:57:31.393 2024-02-23 23:57:31.393 1000 FEE 436757 4083 6049516 2024-02-23 23:57:58.521 2024-02-23 23:57:58.521 1000 FEE 436743 1136 6049517 2024-02-23 23:57:58.521 2024-02-23 23:57:58.521 9000 TIP 436743 805 6049540 2024-02-23 23:59:23.114 2024-02-23 23:59:23.114 0 FEE 436752 16879 6049551 2024-02-24 00:00:42.6 2024-02-24 00:00:42.6 1000 FEE 436572 13759 6049552 2024-02-24 00:00:42.6 2024-02-24 00:00:42.6 9000 TIP 436572 6382 6049556 2024-02-24 00:01:06.976 2024-02-24 00:01:06.976 1000 FEE 436593 9109 6049557 2024-02-24 00:01:06.976 2024-02-24 00:01:06.976 9000 TIP 436593 21398 6049577 2024-02-24 00:03:47.184 2024-02-24 00:03:47.184 0 FEE 436752 21180 6049632 2024-02-24 00:12:42.581 2024-02-24 00:12:42.581 1000 FEE 436683 20353 6049633 2024-02-24 00:12:42.581 2024-02-24 00:12:42.581 9000 TIP 436683 633 6049637 2024-02-24 00:13:25.797 2024-02-24 00:13:25.797 1000 FEE 436767 20062 6049641 2024-02-24 00:14:20.491 2024-02-24 00:14:20.491 100 FEE 436336 1142 6049642 2024-02-24 00:14:20.491 2024-02-24 00:14:20.491 900 TIP 436336 1208 6049645 2024-02-24 00:14:58.04 2024-02-24 00:14:58.04 1000 FEE 435944 11073 6049646 2024-02-24 00:14:58.04 2024-02-24 00:14:58.04 9000 TIP 435944 9476 6049651 2024-02-24 00:15:02.967 2024-02-24 00:15:02.967 1000 FEE 436683 2460 6049652 2024-02-24 00:15:02.967 2024-02-24 00:15:02.967 9000 TIP 436683 3377 6049673 2024-02-24 00:16:09.575 2024-02-24 00:16:09.575 1000 FEE 436769 21047 6049690 2024-02-24 00:17:24.841 2024-02-24 00:17:24.841 1000 FEE 436569 16747 6049691 2024-02-24 00:17:24.841 2024-02-24 00:17:24.841 9000 TIP 436569 21457 6049704 2024-02-24 00:19:22.231 2024-02-24 00:19:22.231 8300 FEE 436753 18751 6049705 2024-02-24 00:19:22.231 2024-02-24 00:19:22.231 74700 TIP 436753 9705 6049712 2024-02-24 00:19:31.971 2024-02-24 00:19:31.971 2000 FEE 436765 4084 6049713 2024-02-24 00:19:31.971 2024-02-24 00:19:31.971 18000 TIP 436765 16816 6049726 2024-02-24 00:20:25.472 2024-02-24 00:20:25.472 10100 FEE 436720 13169 6049727 2024-02-24 00:20:25.472 2024-02-24 00:20:25.472 90900 TIP 436720 12562 6049750 2024-02-24 00:23:34.589 2024-02-24 00:23:34.589 2100 FEE 436729 2256 6049751 2024-02-24 00:23:34.589 2024-02-24 00:23:34.589 18900 TIP 436729 11898 6049773 2024-02-24 00:24:56.451 2024-02-24 00:24:56.451 21000 DONT_LIKE_THIS 436499 10469 6049805 2024-02-24 00:36:17.174 2024-02-24 00:36:17.174 20000 FEE 436683 21373 6049806 2024-02-24 00:36:17.174 2024-02-24 00:36:17.174 180000 TIP 436683 20852 6049813 2024-02-24 00:38:52.615 2024-02-24 00:38:52.615 1000 FEE 436782 10608 6049855 2024-02-24 00:51:11.032 2024-02-24 00:51:11.032 2100 FEE 436566 17392 6049856 2024-02-24 00:51:11.032 2024-02-24 00:51:11.032 18900 TIP 436566 826 6049857 2024-02-24 00:51:13.753 2024-02-24 00:51:13.753 1000 FEE 436787 9333 6049879 2024-02-24 00:56:58.378 2024-02-24 00:56:58.378 1000000 FEE 436792 21494 6049880 2024-02-24 00:56:58.378 2024-02-24 00:56:58.378 25000000 BOOST 436792 14255 6049888 2024-02-24 00:58:07.08 2024-02-24 00:58:07.08 1000 FEE 436777 2077 6049889 2024-02-24 00:58:07.08 2024-02-24 00:58:07.08 9000 TIP 436777 16769 6049905 2024-02-24 01:01:21.62 2024-02-24 01:01:21.62 1000 FEE 436796 18581 6049912 2024-02-24 01:03:40.523 2024-02-24 01:03:40.523 1000 FEE 436797 21281 6049919 2024-02-24 01:05:09.17 2024-02-24 01:05:09.17 2100 FEE 436764 652 6049920 2024-02-24 01:05:09.17 2024-02-24 01:05:09.17 18900 TIP 436764 14370 6049929 2024-02-24 01:11:08.632 2024-02-24 01:11:08.632 1000 FEE 432899 12218 6049930 2024-02-24 01:11:08.632 2024-02-24 01:11:08.632 9000 TIP 432899 6741 6049935 2024-02-24 01:11:17.054 2024-02-24 01:11:17.054 1000 FEE 436798 19034 6049952 2024-02-24 01:15:02.853 2024-02-24 01:15:02.853 10000 FEE 436720 20302 6049953 2024-02-24 01:15:02.853 2024-02-24 01:15:02.853 90000 TIP 436720 21019 6049961 2024-02-24 01:17:14.88 2024-02-24 01:17:14.88 1000 FEE 436724 6384 6049962 2024-02-24 01:17:14.88 2024-02-24 01:17:14.88 9000 TIP 436724 6594 6049967 2024-02-24 01:19:41.902 2024-02-24 01:19:41.902 1000 FEE 436802 1162 6049978 2024-02-24 01:24:02.188 2024-02-24 01:24:02.188 1000 FEE 436807 5761 6049989 2024-02-24 01:26:41.343 2024-02-24 01:26:41.343 1100 FEE 436753 11192 6049990 2024-02-24 01:26:41.343 2024-02-24 01:26:41.343 9900 TIP 436753 18344 6049997 2024-02-24 01:26:42.466 2024-02-24 01:26:42.466 1100 FEE 436669 21424 6049998 2024-02-24 01:26:42.466 2024-02-24 01:26:42.466 9900 TIP 436669 8508 6050012 2024-02-24 01:27:21.031 2024-02-24 01:27:21.031 1000 FEE 432801 1208 6049270 2024-02-23 23:35:03.504 2024-02-23 23:35:03.504 1000 STREAM 141924 1801 6049283 2024-02-23 23:36:03.566 2024-02-23 23:36:03.566 1000 STREAM 141924 1162 6114365 2024-02-29 15:52:20.179 2024-02-29 15:52:20.179 69300 TIP 443288 18772 6114380 2024-02-29 15:54:02.373 2024-02-29 15:54:02.373 1100 FEE 403781 17331 6114381 2024-02-29 15:54:02.373 2024-02-29 15:54:02.373 9900 TIP 403781 20179 6114398 2024-02-29 15:55:03.643 2024-02-29 15:55:03.643 500 FEE 443372 20710 6114399 2024-02-29 15:55:03.643 2024-02-29 15:55:03.643 4500 TIP 443372 14271 6114402 2024-02-29 15:55:35.8 2024-02-29 15:55:35.8 500 FEE 443583 17183 6114403 2024-02-29 15:55:35.8 2024-02-29 15:55:35.8 4500 TIP 443583 20775 6114462 2024-02-29 16:01:04.284 2024-02-29 16:01:04.284 2100 FEE 443726 14650 6114463 2024-02-29 16:01:04.284 2024-02-29 16:01:04.284 18900 TIP 443726 8245 6114468 2024-02-29 16:01:04.79 2024-02-29 16:01:04.79 2100 FEE 443726 9242 6114469 2024-02-29 16:01:04.79 2024-02-29 16:01:04.79 18900 TIP 443726 19773 6114473 2024-02-29 16:01:07.295 2024-02-29 16:01:07.295 1700 FEE 443734 19785 6114474 2024-02-29 16:01:07.295 2024-02-29 16:01:07.295 15300 TIP 443734 1624 6114485 2024-02-29 16:01:54.469 2024-02-29 16:01:54.469 1700 FEE 443712 21072 6114486 2024-02-29 16:01:54.469 2024-02-29 16:01:54.469 15300 TIP 443712 7119 6114496 2024-02-29 16:02:23.421 2024-02-29 16:02:23.421 900 FEE 443734 20201 6114497 2024-02-29 16:02:23.421 2024-02-29 16:02:23.421 8100 TIP 443734 16250 6114498 2024-02-29 16:02:24.956 2024-02-29 16:02:24.956 100 FEE 443738 21281 6114499 2024-02-29 16:02:24.956 2024-02-29 16:02:24.956 900 TIP 443738 1603 6114533 2024-02-29 16:07:32.496 2024-02-29 16:07:32.496 1000 FEE 443747 18989 6114534 2024-02-29 16:07:37.759 2024-02-29 16:07:37.759 5000 FEE 443705 18357 6114535 2024-02-29 16:07:37.759 2024-02-29 16:07:37.759 45000 TIP 443705 15213 6114536 2024-02-29 16:07:54.322 2024-02-29 16:07:54.322 1000 FEE 443748 17116 6114546 2024-02-29 16:08:32.371 2024-02-29 16:08:32.371 100000 FEE 443746 777 6114547 2024-02-29 16:08:32.371 2024-02-29 16:08:32.371 900000 TIP 443746 11378 6114594 2024-02-29 16:11:08.673 2024-02-29 16:11:08.673 2100 FEE 443577 1316 6114595 2024-02-29 16:11:08.673 2024-02-29 16:11:08.673 18900 TIP 443577 3439 6114621 2024-02-29 16:14:56.546 2024-02-29 16:14:56.546 500 FEE 443757 20754 6114622 2024-02-29 16:14:56.546 2024-02-29 16:14:56.546 4500 TIP 443757 17148 6114650 2024-02-29 16:17:15.247 2024-02-29 16:17:15.247 1000 FEE 443766 18664 6114655 2024-02-29 16:17:42.349 2024-02-29 16:17:42.349 2100 FEE 443651 700 6114656 2024-02-29 16:17:42.349 2024-02-29 16:17:42.349 18900 TIP 443651 19569 6114674 2024-02-29 16:19:10.365 2024-02-29 16:19:10.365 500 FEE 443771 19021 6114675 2024-02-29 16:19:10.365 2024-02-29 16:19:10.365 4500 TIP 443771 20190 6114688 2024-02-29 16:19:52.459 2024-02-29 16:19:52.459 2100 FEE 443268 8376 6114689 2024-02-29 16:19:52.459 2024-02-29 16:19:52.459 18900 TIP 443268 12024 6114715 2024-02-29 16:21:50.799 2024-02-29 16:21:50.799 100 FEE 443743 5128 6114716 2024-02-29 16:21:50.799 2024-02-29 16:21:50.799 900 TIP 443743 18264 6114748 2024-02-29 16:24:43.14 2024-02-29 16:24:43.14 2100 FEE 443467 8360 6114749 2024-02-29 16:24:43.14 2024-02-29 16:24:43.14 18900 TIP 443467 14258 6114754 2024-02-29 16:24:46.204 2024-02-29 16:24:46.204 2100 FEE 443528 14906 6114755 2024-02-29 16:24:46.204 2024-02-29 16:24:46.204 18900 TIP 443528 15890 6114786 2024-02-29 16:26:30.09 2024-02-29 16:26:30.09 1700 FEE 443753 715 6114787 2024-02-29 16:26:30.09 2024-02-29 16:26:30.09 15300 TIP 443753 2789 6114813 2024-02-29 16:27:27.458 2024-02-29 16:27:27.458 5700 FEE 443755 4173 6114814 2024-02-29 16:27:27.458 2024-02-29 16:27:27.458 51300 TIP 443755 12738 6114835 2024-02-29 16:29:11.911 2024-02-29 16:29:11.911 300 FEE 443473 19332 6114836 2024-02-29 16:29:11.911 2024-02-29 16:29:11.911 2700 TIP 443473 8059 6114856 2024-02-29 16:31:04.021 2024-02-29 16:31:04.021 1000 FEE 443796 1000 6114863 2024-02-29 16:31:56.791 2024-02-29 16:31:56.791 0 FEE 443781 1705 6114870 2024-02-29 16:32:40.673 2024-02-29 16:32:40.673 100 FEE 443712 18387 6114871 2024-02-29 16:32:40.673 2024-02-29 16:32:40.673 900 TIP 443712 18363 6114880 2024-02-29 16:33:34.113 2024-02-29 16:33:34.113 3000 FEE 443583 913 6114881 2024-02-29 16:33:34.113 2024-02-29 16:33:34.113 27000 TIP 443583 10393 6114924 2024-02-29 16:35:23.91 2024-02-29 16:35:23.91 500 FEE 443776 16355 6114925 2024-02-29 16:35:23.91 2024-02-29 16:35:23.91 4500 TIP 443776 18727 6114932 2024-02-29 16:36:18.475 2024-02-29 16:36:18.475 0 FEE 443799 12965 6114956 2024-02-29 16:36:53.138 2024-02-29 16:36:53.138 100 FEE 443345 21051 6114957 2024-02-29 16:36:53.138 2024-02-29 16:36:53.138 900 TIP 443345 10484 6114962 2024-02-29 16:36:55.134 2024-02-29 16:36:55.134 100 FEE 443345 15103 6114963 2024-02-29 16:36:55.134 2024-02-29 16:36:55.134 900 TIP 443345 14950 6114972 2024-02-29 16:36:58.263 2024-02-29 16:36:58.263 100 FEE 443345 7185 6114973 2024-02-29 16:36:58.263 2024-02-29 16:36:58.263 900 TIP 443345 15474 6114981 2024-02-29 16:37:32.277 2024-02-29 16:37:32.277 3100 FEE 443781 18919 6114982 2024-02-29 16:37:32.277 2024-02-29 16:37:32.277 27900 TIP 443781 18667 6114996 2024-02-29 16:38:45.428 2024-02-29 16:38:45.428 0 FEE 443806 20990 6114999 2024-02-29 16:39:07.696 2024-02-29 16:39:07.696 1000 FEE 443808 13599 6115007 2024-02-29 16:39:40.019 2024-02-29 16:39:40.019 1000 FEE 443809 21398 6115031 2024-02-29 16:40:37.451 2024-02-29 16:40:37.451 1000 FEE 442973 1136 6115032 2024-02-29 16:40:37.451 2024-02-29 16:40:37.451 9000 TIP 442973 14959 6115045 2024-02-29 16:41:15.408 2024-02-29 16:41:15.408 1000 FEE 443813 7553 6115055 2024-02-29 16:41:29.497 2024-02-29 16:41:29.497 1000 FEE 443815 19938 6115057 2024-02-29 16:41:45.826 2024-02-29 16:41:45.826 1700 FEE 443812 6616 6115058 2024-02-29 16:41:45.826 2024-02-29 16:41:45.826 15300 TIP 443812 20757 6115071 2024-02-29 16:41:53.355 2024-02-29 16:41:53.355 1000 FEE 443817 1105 6115083 2024-02-29 16:42:40.771 2024-02-29 16:42:40.771 1000 FEE 443818 16126 6115091 2024-02-29 16:43:05.721 2024-02-29 16:43:05.721 100 FEE 443583 20663 6115092 2024-02-29 16:43:05.721 2024-02-29 16:43:05.721 900 TIP 443583 17221 6115141 2024-02-29 16:43:56.283 2024-02-29 16:43:56.283 6900 FEE 443730 9276 6115142 2024-02-29 16:43:56.283 2024-02-29 16:43:56.283 62100 TIP 443730 18311 6115147 2024-02-29 16:44:29.311 2024-02-29 16:44:29.311 1000 FEE 443349 18154 6115148 2024-02-29 16:44:29.311 2024-02-29 16:44:29.311 9000 TIP 443349 976 6115152 2024-02-29 16:44:57.143 2024-02-29 16:44:57.143 500 FEE 443823 749 6115153 2024-02-29 16:44:57.143 2024-02-29 16:44:57.143 4500 TIP 443823 16442 6115166 2024-02-29 16:45:23.497 2024-02-29 16:45:23.497 6900 FEE 443799 18930 6115167 2024-02-29 16:45:23.497 2024-02-29 16:45:23.497 62100 TIP 443799 16355 6115221 2024-02-29 16:45:37.534 2024-02-29 16:45:37.534 6900 FEE 443799 21506 6115222 2024-02-29 16:45:37.534 2024-02-29 16:45:37.534 62100 TIP 443799 3392 6115225 2024-02-29 16:45:37.783 2024-02-29 16:45:37.783 6900 FEE 443799 16042 6115226 2024-02-29 16:45:37.783 2024-02-29 16:45:37.783 62100 TIP 443799 20624 6115245 2024-02-29 16:46:13.056 2024-02-29 16:46:13.056 2000 FEE 442003 814 6115246 2024-02-29 16:46:13.056 2024-02-29 16:46:13.056 18000 TIP 442003 18446 6115283 2024-02-29 16:47:49.31 2024-02-29 16:47:49.31 7700 FEE 443794 20585 6115284 2024-02-29 16:47:49.31 2024-02-29 16:47:49.31 69300 TIP 443794 11378 6115292 2024-02-29 16:48:37.066 2024-02-29 16:48:37.066 27900 FEE 443712 19910 6115293 2024-02-29 16:48:37.066 2024-02-29 16:48:37.066 251100 TIP 443712 2322 6115294 2024-02-29 16:48:51.419 2024-02-29 16:48:51.419 3100 FEE 443825 705 6049315 2024-02-23 23:40:28.15 2024-02-23 23:40:28.15 900 TIP 436733 805 6049316 2024-02-23 23:40:28.323 2024-02-23 23:40:28.323 900 FEE 436733 9551 6049317 2024-02-23 23:40:28.323 2024-02-23 23:40:28.323 8100 TIP 436733 16348 6049336 2024-02-23 23:42:19.113 2024-02-23 23:42:19.113 2500 FEE 436720 2709 6049337 2024-02-23 23:42:19.113 2024-02-23 23:42:19.113 22500 TIP 436720 2711 6049346 2024-02-23 23:43:23.602 2024-02-23 23:43:23.602 3000 FEE 436685 11621 6049347 2024-02-23 23:43:23.602 2024-02-23 23:43:23.602 27000 TIP 436685 11621 6049357 2024-02-23 23:43:42.902 2024-02-23 23:43:42.902 1000 FEE 436741 1298 6049377 2024-02-23 23:44:43.892 2024-02-23 23:44:43.892 3300 FEE 436683 17727 6049378 2024-02-23 23:44:43.892 2024-02-23 23:44:43.892 29700 TIP 436683 4984 6049383 2024-02-23 23:45:41.466 2024-02-23 23:45:41.466 2100 FEE 436699 10719 6049384 2024-02-23 23:45:41.466 2024-02-23 23:45:41.466 18900 TIP 436699 630 6049396 2024-02-23 23:47:06.057 2024-02-23 23:47:06.057 1000 FEE 436744 1236 6049403 2024-02-23 23:48:21.829 2024-02-23 23:48:21.829 100 FEE 436669 9796 6049404 2024-02-23 23:48:21.829 2024-02-23 23:48:21.829 900 TIP 436669 21444 6049411 2024-02-23 23:49:01.768 2024-02-23 23:49:01.768 1000 FEE 436720 5017 6049412 2024-02-23 23:49:01.768 2024-02-23 23:49:01.768 9000 TIP 436720 20267 6049443 2024-02-23 23:51:35.683 2024-02-23 23:51:35.683 2800 FEE 436720 763 6049444 2024-02-23 23:51:35.683 2024-02-23 23:51:35.683 25200 TIP 436720 20018 6049464 2024-02-23 23:52:07.478 2024-02-23 23:52:07.478 1000 FEE 436751 6515 6049477 2024-02-23 23:53:20.326 2024-02-23 23:53:20.326 500 FEE 436330 686 6049478 2024-02-23 23:53:20.326 2024-02-23 23:53:20.326 4500 TIP 436330 9809 6049491 2024-02-23 23:54:09.142 2024-02-23 23:54:09.142 1000 FEE 436752 6537 6049492 2024-02-23 23:54:09.142 2024-02-23 23:54:09.142 9000 TIP 436752 18714 6049497 2024-02-23 23:54:50.079 2024-02-23 23:54:50.079 1000 FEE 436683 770 6049498 2024-02-23 23:54:50.079 2024-02-23 23:54:50.079 9000 TIP 436683 6191 6049499 2024-02-23 23:54:56.955 2024-02-23 23:54:56.955 21000 FEE 436753 11314 6049523 2024-02-23 23:58:42.235 2024-02-23 23:58:42.235 1000 FEE 435847 16724 6049524 2024-02-23 23:58:42.235 2024-02-23 23:58:42.235 9000 TIP 435847 11515 6049562 2024-02-24 00:02:00.786 2024-02-24 00:02:00.786 2300 FEE 436753 18291 6049563 2024-02-24 00:02:00.786 2024-02-24 00:02:00.786 20700 TIP 436753 1836 6049566 2024-02-24 00:02:01.134 2024-02-24 00:02:01.134 2300 FEE 436753 19117 6049567 2024-02-24 00:02:01.134 2024-02-24 00:02:01.134 20700 TIP 436753 8926 6049598 2024-02-24 00:06:17.469 2024-02-24 00:06:17.469 100 FEE 436753 20183 6049599 2024-02-24 00:06:17.469 2024-02-24 00:06:17.469 900 TIP 436753 8541 6049606 2024-02-24 00:06:56.32 2024-02-24 00:06:56.32 1000 FEE 436694 21239 6049607 2024-02-24 00:06:56.32 2024-02-24 00:06:56.32 9000 TIP 436694 730 6049638 2024-02-24 00:13:40.458 2024-02-24 00:13:40.458 100000 FEE 436766 11417 6049639 2024-02-24 00:13:40.458 2024-02-24 00:13:40.458 900000 TIP 436766 1626 6049649 2024-02-24 00:15:02.129 2024-02-24 00:15:02.129 1000 FEE 436493 9330 6049650 2024-02-24 00:15:02.129 2024-02-24 00:15:02.129 9000 TIP 436493 18232 6049669 2024-02-24 00:15:55.783 2024-02-24 00:15:55.783 1000 POLL 436759 18618 6049701 2024-02-24 00:19:12.201 2024-02-24 00:19:12.201 1000 FEE 436772 15510 6049716 2024-02-24 00:19:34.085 2024-02-24 00:19:34.085 2000 FEE 436765 20577 6049717 2024-02-24 00:19:34.085 2024-02-24 00:19:34.085 18000 TIP 436765 18784 6049725 2024-02-24 00:20:25.44 2024-02-24 00:20:25.44 1000 FEE 436774 626 6049732 2024-02-24 00:20:41.989 2024-02-24 00:20:41.989 10000 FEE 436244 19668 6049733 2024-02-24 00:20:41.989 2024-02-24 00:20:41.989 90000 TIP 436244 9171 6049738 2024-02-24 00:22:15.13 2024-02-24 00:22:15.13 0 FEE 436774 20987 6049767 2024-02-24 00:24:20.921 2024-02-24 00:24:20.921 2100 FEE 436750 1008 6049768 2024-02-24 00:24:20.921 2024-02-24 00:24:20.921 18900 TIP 436750 8570 6049777 2024-02-24 00:25:07.027 2024-02-24 00:25:07.027 21000 DONT_LIKE_THIS 436775 1959 6049784 2024-02-24 00:25:31.987 2024-02-24 00:25:31.987 2100 FEE 436666 6360 6049785 2024-02-24 00:25:31.987 2024-02-24 00:25:31.987 18900 TIP 436666 20577 6049835 2024-02-24 00:45:55.36 2024-02-24 00:45:55.36 2300 FEE 436781 1291 6049836 2024-02-24 00:45:55.36 2024-02-24 00:45:55.36 20700 TIP 436781 4250 6049839 2024-02-24 00:46:10.625 2024-02-24 00:46:10.625 2300 FEE 436735 16229 6049840 2024-02-24 00:46:10.625 2024-02-24 00:46:10.625 20700 TIP 436735 20756 6049871 2024-02-24 00:53:13.17 2024-02-24 00:53:13.17 1000 FEE 436791 1720 6049876 2024-02-24 00:55:08.219 2024-02-24 00:55:08.219 2100 FEE 436593 17212 6049877 2024-02-24 00:55:08.219 2024-02-24 00:55:08.219 18900 TIP 436593 4692 6049886 2024-02-24 00:58:06.843 2024-02-24 00:58:06.843 1000 FEE 436777 15271 6049887 2024-02-24 00:58:06.843 2024-02-24 00:58:06.843 9000 TIP 436777 18280 6049900 2024-02-24 01:00:17.992 2024-02-24 01:00:17.992 2100 FEE 435944 2789 6049901 2024-02-24 01:00:17.992 2024-02-24 01:00:17.992 18900 TIP 435944 8269 6049910 2024-02-24 01:03:38.177 2024-02-24 01:03:38.177 2100 FEE 436675 1490 6049911 2024-02-24 01:03:38.177 2024-02-24 01:03:38.177 18900 TIP 436675 11885 6049949 2024-02-24 01:14:54.364 2024-02-24 01:14:54.364 100 FEE 436720 15697 6049950 2024-02-24 01:14:54.364 2024-02-24 01:14:54.364 900 TIP 436720 11866 6049959 2024-02-24 01:17:10.71 2024-02-24 01:17:10.71 1000 FEE 436751 20087 6049960 2024-02-24 01:17:10.71 2024-02-24 01:17:10.71 9000 TIP 436751 19335 6050002 2024-02-24 01:27:03.37 2024-02-24 01:27:03.37 1100 FEE 434324 16754 6050003 2024-02-24 01:27:03.37 2024-02-24 01:27:03.37 9900 TIP 434324 12779 6050016 2024-02-24 01:28:38.651 2024-02-24 01:28:38.651 100000 FEE 436811 715 6050019 2024-02-24 01:29:24.359 2024-02-24 01:29:24.359 1000 FEE 433657 19417 6050020 2024-02-24 01:29:24.359 2024-02-24 01:29:24.359 9000 TIP 433657 925 6050075 2024-02-24 01:44:21.839 2024-02-24 01:44:21.839 2700 FEE 436766 14795 6050076 2024-02-24 01:44:21.839 2024-02-24 01:44:21.839 24300 TIP 436766 20370 6050091 2024-02-24 01:48:08.234 2024-02-24 01:48:08.234 1000 FEE 436825 15938 6050159 2024-02-24 01:48:42.379 2024-02-24 01:48:42.379 2500 FEE 436782 19535 6050160 2024-02-24 01:48:42.379 2024-02-24 01:48:42.379 22500 TIP 436782 20687 6050169 2024-02-24 01:48:43.586 2024-02-24 01:48:43.586 2500 FEE 436782 19507 6050170 2024-02-24 01:48:43.586 2024-02-24 01:48:43.586 22500 TIP 436782 3709 6050174 2024-02-24 01:49:54.234 2024-02-24 01:49:54.234 21000 FEE 436827 12946 6050180 2024-02-24 01:52:53.787 2024-02-24 01:52:53.787 100 FEE 436811 17535 6050181 2024-02-24 01:52:53.787 2024-02-24 01:52:53.787 900 TIP 436811 8400 6050182 2024-02-24 01:52:59.505 2024-02-24 01:52:59.505 100 FEE 436812 6653 6050183 2024-02-24 01:52:59.505 2024-02-24 01:52:59.505 900 TIP 436812 3979 6050205 2024-02-24 01:56:11.069 2024-02-24 01:56:11.069 1000 FEE 436829 659 6050206 2024-02-24 01:56:11.307 2024-02-24 01:56:11.307 21000 DONT_LIKE_THIS 436815 15536 6050248 2024-02-24 02:05:13.733 2024-02-24 02:05:13.733 1000 FEE 436836 980 6050250 2024-02-24 02:05:35.348 2024-02-24 02:05:35.348 0 FEE 436833 16948 6050252 2024-02-24 02:06:27.948 2024-02-24 02:06:27.948 0 FEE 436835 21503 6050253 2024-02-24 02:06:36.017 2024-02-24 02:06:36.017 100000 FEE 436837 7978 6050254 2024-02-24 02:07:02.498 2024-02-24 02:07:02.498 10000 FEE 436752 11967 6050255 2024-02-24 02:07:02.498 2024-02-24 02:07:02.498 90000 TIP 436752 15213 6050278 2024-02-24 02:11:52.887 2024-02-24 02:11:52.887 1000 FEE 436841 708 6050284 2024-02-24 02:12:48.715 2024-02-24 02:12:48.715 9000 FEE 436797 2577 6050285 2024-02-24 02:12:48.715 2024-02-24 02:12:48.715 81000 TIP 436797 959 6050288 2024-02-24 02:13:39.773 2024-02-24 02:13:39.773 4000 FEE 436837 3342 6050289 2024-02-24 02:13:39.773 2024-02-24 02:13:39.773 36000 TIP 436837 14225 6050325 2024-02-24 02:22:12.089 2024-02-24 02:22:12.089 1000 FEE 436847 15045 6049340 2024-02-23 23:43:03.758 2024-02-23 23:43:03.758 1000 STREAM 141924 9336 6049366 2024-02-23 23:44:03.786 2024-02-23 23:44:03.786 1000 STREAM 141924 21417 6049570 2024-02-24 00:02:03.952 2024-02-24 00:02:03.952 1000 STREAM 141924 21520 6049579 2024-02-24 00:04:03.947 2024-02-24 00:04:03.947 1000 STREAM 141924 20264 6049580 2024-02-24 00:05:03.987 2024-02-24 00:05:03.987 1000 STREAM 141924 7998 6049593 2024-02-24 00:06:03.952 2024-02-24 00:06:03.952 1000 STREAM 141924 18601 6049608 2024-02-24 00:07:03.953 2024-02-24 00:07:03.953 1000 STREAM 141924 976 6049792 2024-02-24 00:28:03.633 2024-02-24 00:28:03.633 1000 STREAM 141924 928 6049793 2024-02-24 00:29:03.63 2024-02-24 00:29:03.63 1000 STREAM 141924 19664 6114373 2024-02-29 15:52:20.546 2024-02-29 15:52:20.546 69300 TIP 443288 8380 6114400 2024-02-29 15:55:07.77 2024-02-29 15:55:07.77 500 FEE 443467 21287 6114401 2024-02-29 15:55:07.77 2024-02-29 15:55:07.77 4500 TIP 443467 8508 6114405 2024-02-29 15:55:49.811 2024-02-29 15:55:49.811 1100 FEE 443577 21275 6114406 2024-02-29 15:55:49.811 2024-02-29 15:55:49.811 9900 TIP 443577 880 6114409 2024-02-29 15:55:57.497 2024-02-29 15:55:57.497 1100 FEE 443613 11018 6114410 2024-02-29 15:55:57.497 2024-02-29 15:55:57.497 9900 TIP 443613 21323 6114412 2024-02-29 15:56:38.284 2024-02-29 15:56:38.284 1000 FEE 443729 2614 6114418 2024-02-29 15:57:51.263 2024-02-29 15:57:51.263 100 FEE 443711 18423 6114419 2024-02-29 15:57:51.263 2024-02-29 15:57:51.263 900 TIP 443711 16966 6114422 2024-02-29 15:57:52.202 2024-02-29 15:57:52.202 9000 FEE 443711 13042 6114423 2024-02-29 15:57:52.202 2024-02-29 15:57:52.202 81000 TIP 443711 20717 6114424 2024-02-29 15:57:56.521 2024-02-29 15:57:56.521 100000 FEE 443732 1489 6114432 2024-02-29 15:58:29.856 2024-02-29 15:58:29.856 1000 FEE 443733 21620 6114441 2024-02-29 15:59:03.812 2024-02-29 15:59:03.812 900 FEE 443179 2016 6114442 2024-02-29 15:59:03.812 2024-02-29 15:59:03.812 8100 TIP 443179 18556 6114456 2024-02-29 16:00:05.159 2024-02-29 16:00:05.159 1000 FEE 443737 6687 6114459 2024-02-29 16:00:58.855 2024-02-29 16:00:58.855 100 FEE 443735 21393 6114460 2024-02-29 16:00:58.855 2024-02-29 16:00:58.855 900 TIP 443735 20778 6114492 2024-02-29 16:02:05.32 2024-02-29 16:02:05.32 1700 FEE 443725 11164 6114493 2024-02-29 16:02:05.32 2024-02-29 16:02:05.32 15300 TIP 443725 3456 6114507 2024-02-29 16:03:53.17 2024-02-29 16:03:53.17 10000 FEE 442931 5112 6114508 2024-02-29 16:03:53.17 2024-02-29 16:03:53.17 90000 TIP 442931 18836 6114520 2024-02-29 16:05:48.589 2024-02-29 16:05:48.589 7700 FEE 443734 12368 6114521 2024-02-29 16:05:48.589 2024-02-29 16:05:48.589 69300 TIP 443734 16942 6114548 2024-02-29 16:08:32.486 2024-02-29 16:08:32.486 100000 FEE 443751 9307 6114550 2024-02-29 16:08:37.408 2024-02-29 16:08:37.408 1000 FEE 443724 21532 6114551 2024-02-29 16:08:37.408 2024-02-29 16:08:37.408 9000 TIP 443724 18675 6114576 2024-02-29 16:08:53.119 2024-02-29 16:08:53.119 500 FEE 443720 2508 6114577 2024-02-29 16:08:53.119 2024-02-29 16:08:53.119 4500 TIP 443720 9906 6114588 2024-02-29 16:10:42.852 2024-02-29 16:10:42.852 1000 FEE 443731 6361 6114589 2024-02-29 16:10:42.852 2024-02-29 16:10:42.852 9000 TIP 443731 15690 6114596 2024-02-29 16:11:23.903 2024-02-29 16:11:23.903 1000 FEE 443755 1585 6114604 2024-02-29 16:12:31.163 2024-02-29 16:12:31.163 500 FEE 443750 15938 6114605 2024-02-29 16:12:31.163 2024-02-29 16:12:31.163 4500 TIP 443750 9200 6114609 2024-02-29 16:13:11.738 2024-02-29 16:13:11.738 1000 FEE 443759 4538 6114613 2024-02-29 16:14:17.093 2024-02-29 16:14:17.093 10000 FEE 443490 14385 6114614 2024-02-29 16:14:17.093 2024-02-29 16:14:17.093 90000 TIP 443490 5708 6114634 2024-02-29 16:15:57.75 2024-02-29 16:15:57.75 5700 FEE 443755 1291 6114635 2024-02-29 16:15:57.75 2024-02-29 16:15:57.75 51300 TIP 443755 5961 6114644 2024-02-29 16:16:36.439 2024-02-29 16:16:36.439 2100 FEE 443683 19735 6114645 2024-02-29 16:16:36.439 2024-02-29 16:16:36.439 18900 TIP 443683 19848 6114646 2024-02-29 16:16:50.25 2024-02-29 16:16:50.25 1000 FEE 443765 21155 6114648 2024-02-29 16:17:11.696 2024-02-29 16:17:11.696 2100 FEE 443719 18180 6114649 2024-02-29 16:17:11.696 2024-02-29 16:17:11.696 18900 TIP 443719 19569 6114652 2024-02-29 16:17:35.797 2024-02-29 16:17:35.797 100000 DONT_LIKE_THIS 443490 20276 6114662 2024-02-29 16:18:10.35 2024-02-29 16:18:10.35 1000 FEE 443769 6749 6114676 2024-02-29 16:19:10.818 2024-02-29 16:19:10.818 1000 FEE 443772 14376 6114690 2024-02-29 16:19:53.113 2024-02-29 16:19:53.113 9000 FEE 443528 20663 6114691 2024-02-29 16:19:53.113 2024-02-29 16:19:53.113 81000 TIP 443528 16948 6114697 2024-02-29 16:20:35.288 2024-02-29 16:20:35.288 2100 FEE 443614 19394 6114698 2024-02-29 16:20:35.288 2024-02-29 16:20:35.288 18900 TIP 443614 7553 6114728 2024-02-29 16:23:58.903 2024-02-29 16:23:58.903 1000 FEE 443780 19484 6114734 2024-02-29 16:24:37.518 2024-02-29 16:24:37.518 2100 FEE 443583 21019 6114735 2024-02-29 16:24:37.518 2024-02-29 16:24:37.518 18900 TIP 443583 16214 6114736 2024-02-29 16:24:38.039 2024-02-29 16:24:38.039 2100 FEE 443617 21520 6114737 2024-02-29 16:24:38.039 2024-02-29 16:24:38.039 18900 TIP 443617 9426 6114752 2024-02-29 16:24:44.544 2024-02-29 16:24:44.544 2100 FEE 443667 11477 6114753 2024-02-29 16:24:44.544 2024-02-29 16:24:44.544 18900 TIP 443667 21627 6114760 2024-02-29 16:24:48.143 2024-02-29 16:24:48.143 2100 FEE 443339 964 6114761 2024-02-29 16:24:48.143 2024-02-29 16:24:48.143 18900 TIP 443339 6419 6114782 2024-02-29 16:26:11.78 2024-02-29 16:26:11.78 1000 FEE 443785 660 6114788 2024-02-29 16:26:39.269 2024-02-29 16:26:39.269 0 FEE 443781 977 6114802 2024-02-29 16:27:15.075 2024-02-29 16:27:15.075 800 FEE 443755 20514 6114803 2024-02-29 16:27:15.075 2024-02-29 16:27:15.075 7200 TIP 443755 18673 6114804 2024-02-29 16:27:18.671 2024-02-29 16:27:18.671 2100 FEE 442954 20276 6114805 2024-02-29 16:27:18.671 2024-02-29 16:27:18.671 18900 TIP 442954 2088 6114806 2024-02-29 16:27:21.717 2024-02-29 16:27:21.717 2100 FEE 442799 17976 6114807 2024-02-29 16:27:21.717 2024-02-29 16:27:21.717 18900 TIP 442799 1881 6114815 2024-02-29 16:27:34.972 2024-02-29 16:27:34.972 0 FEE 443781 16406 6114816 2024-02-29 16:27:38.727 2024-02-29 16:27:38.727 5700 FEE 443769 14774 6114817 2024-02-29 16:27:38.727 2024-02-29 16:27:38.727 51300 TIP 443769 19511 6114821 2024-02-29 16:28:15.552 2024-02-29 16:28:15.552 3100 FEE 443661 18525 6114822 2024-02-29 16:28:15.552 2024-02-29 16:28:15.552 27900 TIP 443661 18072 6114827 2024-02-29 16:28:25.12 2024-02-29 16:28:25.12 2100 FEE 443747 1713 6114828 2024-02-29 16:28:25.12 2024-02-29 16:28:25.12 18900 TIP 443747 631 6114834 2024-02-29 16:29:10.524 2024-02-29 16:29:10.524 1000 FEE 443793 19502 6114857 2024-02-29 16:31:04.144 2024-02-29 16:31:04.144 2100 FEE 443781 17513 6114858 2024-02-29 16:31:04.144 2024-02-29 16:31:04.144 18900 TIP 443781 19243 6114859 2024-02-29 16:31:09.556 2024-02-29 16:31:09.556 2000 FEE 443772 5758 6114860 2024-02-29 16:31:09.556 2024-02-29 16:31:09.556 18000 TIP 443772 1658 6114867 2024-02-29 16:32:11.488 2024-02-29 16:32:11.488 0 FEE 443781 20669 6114882 2024-02-29 16:33:46.167 2024-02-29 16:33:46.167 300 FEE 441843 19637 6049391 2024-02-23 23:46:14.776 2024-02-23 23:46:14.776 25200 TIP 423683 21269 6049455 2024-02-23 23:51:40.257 2024-02-23 23:51:40.257 500 FEE 436566 19016 6049456 2024-02-23 23:51:40.257 2024-02-23 23:51:40.257 4500 TIP 436566 18678 6049471 2024-02-23 23:53:10.055 2024-02-23 23:53:10.055 500 FEE 435889 5661 6049472 2024-02-23 23:53:10.055 2024-02-23 23:53:10.055 4500 TIP 435889 11263 6049475 2024-02-23 23:53:19.882 2024-02-23 23:53:19.882 500 FEE 436330 11938 6049476 2024-02-23 23:53:19.882 2024-02-23 23:53:19.882 4500 TIP 436330 2734 6049483 2024-02-23 23:53:46.574 2024-02-23 23:53:46.574 500 FEE 436279 1740 6049484 2024-02-23 23:53:46.574 2024-02-23 23:53:46.574 4500 TIP 436279 686 6049511 2024-02-23 23:57:17.001 2024-02-23 23:57:17.001 1000 FEE 436459 20272 6049512 2024-02-23 23:57:17.001 2024-02-23 23:57:17.001 9000 TIP 436459 19909 6049527 2024-02-23 23:58:45.514 2024-02-23 23:58:45.514 1000 FEE 436560 7992 6049528 2024-02-23 23:58:45.514 2024-02-23 23:58:45.514 9000 TIP 436560 6260 6049534 2024-02-23 23:58:48.903 2024-02-23 23:58:48.903 1000 FEE 436493 19886 6049535 2024-02-23 23:58:48.903 2024-02-23 23:58:48.903 9000 TIP 436493 3729 6049548 2024-02-24 00:00:18.766 2024-02-24 00:00:18.766 1000 FEE 436276 16956 6049549 2024-02-24 00:00:18.766 2024-02-24 00:00:18.766 9000 TIP 436276 16212 6049550 2024-02-24 00:00:26.666 2024-02-24 00:00:26.666 1000 FEE 436762 6578 6049553 2024-02-24 00:00:53.454 2024-02-24 00:00:53.454 1000 FEE 436750 18909 6049554 2024-02-24 00:00:53.454 2024-02-24 00:00:53.454 9000 TIP 436750 20647 6049560 2024-02-24 00:02:00.609 2024-02-24 00:02:00.609 2300 FEE 436753 13169 6049561 2024-02-24 00:02:00.609 2024-02-24 00:02:00.609 20700 TIP 436753 15088 6049564 2024-02-24 00:02:00.98 2024-02-24 00:02:00.98 2300 FEE 436753 17602 6049565 2024-02-24 00:02:00.98 2024-02-24 00:02:00.98 20700 TIP 436753 1198 6049575 2024-02-24 00:03:09.846 2024-02-24 00:03:09.846 27000 FEE 436683 16149 6049576 2024-02-24 00:03:09.846 2024-02-24 00:03:09.846 243000 TIP 436683 8289 6049594 2024-02-24 00:06:09.381 2024-02-24 00:06:09.381 3300 FEE 436759 7583 6049595 2024-02-24 00:06:09.381 2024-02-24 00:06:09.381 29700 TIP 436759 749 6049619 2024-02-24 00:08:03.101 2024-02-24 00:08:03.101 90000 FEE 436753 18264 6049620 2024-02-24 00:08:03.101 2024-02-24 00:08:03.101 810000 TIP 436753 19821 6049630 2024-02-24 00:11:52.373 2024-02-24 00:11:52.373 1000 FEE 436766 721 6049664 2024-02-24 00:15:30.345 2024-02-24 00:15:30.345 1000 FEE 436733 18526 6049665 2024-02-24 00:15:30.345 2024-02-24 00:15:30.345 9000 TIP 436733 6688 6049684 2024-02-24 00:17:12.473 2024-02-24 00:17:12.473 1000 FEE 436527 21466 6049685 2024-02-24 00:17:12.473 2024-02-24 00:17:12.473 9000 TIP 436527 18387 6049706 2024-02-24 00:19:22.359 2024-02-24 00:19:22.359 8300 FEE 436753 21339 6049707 2024-02-24 00:19:22.359 2024-02-24 00:19:22.359 74700 TIP 436753 18618 6049728 2024-02-24 00:20:28.028 2024-02-24 00:20:28.028 4000 FEE 436764 5175 6049729 2024-02-24 00:20:28.028 2024-02-24 00:20:28.028 36000 TIP 436764 21421 6049730 2024-02-24 00:20:28.198 2024-02-24 00:20:28.198 1000 FEE 436775 17014 6049740 2024-02-24 00:22:58.518 2024-02-24 00:22:58.518 4000 FEE 436774 998 6049741 2024-02-24 00:22:58.518 2024-02-24 00:22:58.518 36000 TIP 436774 15577 6049756 2024-02-24 00:23:41.374 2024-02-24 00:23:41.374 4000 FEE 436753 20222 6049757 2024-02-24 00:23:41.374 2024-02-24 00:23:41.374 36000 TIP 436753 1603 6049760 2024-02-24 00:23:46.434 2024-02-24 00:23:46.434 2100 FEE 436612 11873 6049761 2024-02-24 00:23:46.434 2024-02-24 00:23:46.434 18900 TIP 436612 27 6049769 2024-02-24 00:24:32.546 2024-02-24 00:24:32.546 1000 POLL 436759 19156 6049827 2024-02-24 00:44:11.005 2024-02-24 00:44:11.005 2100 FEE 436750 15617 6049828 2024-02-24 00:44:11.005 2024-02-24 00:44:11.005 18900 TIP 436750 1316 6049850 2024-02-24 00:49:56.189 2024-02-24 00:49:56.189 2100 FEE 436755 6573 6049851 2024-02-24 00:49:56.189 2024-02-24 00:49:56.189 18900 TIP 436755 17212 6049890 2024-02-24 00:58:07.279 2024-02-24 00:58:07.279 1000 FEE 436777 16347 6049891 2024-02-24 00:58:07.279 2024-02-24 00:58:07.279 9000 TIP 436777 18896 6049902 2024-02-24 01:00:19.744 2024-02-24 01:00:19.744 2100 FEE 435944 21405 6049903 2024-02-24 01:00:19.744 2024-02-24 01:00:19.744 18900 TIP 435944 3353 6049933 2024-02-24 01:11:08.987 2024-02-24 01:11:08.987 1000 FEE 432899 19826 6049934 2024-02-24 01:11:08.987 2024-02-24 01:11:08.987 9000 TIP 432899 16998 6049969 2024-02-24 01:20:39.808 2024-02-24 01:20:39.808 1000 FEE 436803 17673 6049971 2024-02-24 01:20:50.135 2024-02-24 01:20:50.135 100000 FEE 436805 8570 6049976 2024-02-24 01:23:54.846 2024-02-24 01:23:54.846 2000 FEE 436720 19843 6049977 2024-02-24 01:23:54.846 2024-02-24 01:23:54.846 18000 TIP 436720 19121 6049995 2024-02-24 01:26:42.125 2024-02-24 01:26:42.125 1100 FEE 436669 866 6049996 2024-02-24 01:26:42.125 2024-02-24 01:26:42.125 9900 TIP 436669 16356 6050004 2024-02-24 01:27:03.428 2024-02-24 01:27:03.428 1100 FEE 434324 7760 6050005 2024-02-24 01:27:03.428 2024-02-24 01:27:03.428 9900 TIP 434324 17592 6050029 2024-02-24 01:31:09.159 2024-02-24 01:31:09.159 1000 FEE 436813 19189 6050052 2024-02-24 01:35:14.854 2024-02-24 01:35:14.854 1000 POLL 436759 894 6050054 2024-02-24 01:36:05.453 2024-02-24 01:36:05.453 1000 FEE 436818 20745 6050058 2024-02-24 01:38:22.039 2024-02-24 01:38:22.039 10000 FEE 436729 2232 6050059 2024-02-24 01:38:22.039 2024-02-24 01:38:22.039 90000 TIP 436729 8380 6050072 2024-02-24 01:44:09.048 2024-02-24 01:44:09.048 1000 FEE 436824 16350 6050077 2024-02-24 01:44:22.001 2024-02-24 01:44:22.001 2700 FEE 436766 9166 6050078 2024-02-24 01:44:22.001 2024-02-24 01:44:22.001 24300 TIP 436766 12218 6050095 2024-02-24 01:48:30.891 2024-02-24 01:48:30.891 2500 FEE 436809 16357 6050096 2024-02-24 01:48:30.891 2024-02-24 01:48:30.891 22500 TIP 436809 21555 6050101 2024-02-24 01:48:31.61 2024-02-24 01:48:31.61 2500 FEE 436809 16653 6050102 2024-02-24 01:48:31.61 2024-02-24 01:48:31.61 22500 TIP 436809 19488 6050107 2024-02-24 01:48:32.32 2024-02-24 01:48:32.32 2500 FEE 436809 21047 6050108 2024-02-24 01:48:32.32 2024-02-24 01:48:32.32 22500 TIP 436809 18626 6050127 2024-02-24 01:48:37.889 2024-02-24 01:48:37.889 2500 FEE 436694 17218 6050128 2024-02-24 01:48:37.889 2024-02-24 01:48:37.889 22500 TIP 436694 9816 6050137 2024-02-24 01:48:38.719 2024-02-24 01:48:38.719 2500 FEE 436694 20775 6050138 2024-02-24 01:48:38.719 2024-02-24 01:48:38.719 22500 TIP 436694 761 6050163 2024-02-24 01:48:42.656 2024-02-24 01:48:42.656 2500 FEE 436782 756 6050164 2024-02-24 01:48:42.656 2024-02-24 01:48:42.656 22500 TIP 436782 17639 6050171 2024-02-24 01:48:43.887 2024-02-24 01:48:43.887 2500 FEE 436782 20849 6050172 2024-02-24 01:48:43.887 2024-02-24 01:48:43.887 22500 TIP 436782 19446 6050194 2024-02-24 01:54:27.448 2024-02-24 01:54:27.448 1000 FEE 436828 6393 6050214 2024-02-24 01:57:35.301 2024-02-24 01:57:35.301 100 FEE 436799 1051 6050215 2024-02-24 01:57:35.301 2024-02-24 01:57:35.301 900 TIP 436799 17050 6050249 2024-02-24 02:05:23.829 2024-02-24 02:05:23.829 0 FEE 436833 7682 6050257 2024-02-24 02:07:26.165 2024-02-24 02:07:26.165 10000 FEE 436752 11938 6050258 2024-02-24 02:07:26.165 2024-02-24 02:07:26.165 90000 TIP 436752 14990 6050275 2024-02-24 02:10:31.959 2024-02-24 02:10:31.959 10000 FEE 436839 21493 6050295 2024-02-24 02:16:01.098 2024-02-24 02:16:01.098 1000 FEE 436793 17162 6050296 2024-02-24 02:16:01.098 2024-02-24 02:16:01.098 9000 TIP 436793 9418 6050310 2024-02-24 02:18:55.237 2024-02-24 02:18:55.237 1000 FEE 436846 17639 6050317 2024-02-24 02:20:26.642 2024-02-24 02:20:26.642 1300 FEE 436837 17741 6050318 2024-02-24 02:20:26.642 2024-02-24 02:20:26.642 11700 TIP 436837 18393 6050343 2024-02-24 02:26:56.709 2024-02-24 02:26:56.709 50000 FEE 436709 15200 6050344 2024-02-24 02:26:56.709 2024-02-24 02:26:56.709 450000 TIP 436709 9330 6049446 2024-02-23 23:51:36.255 2024-02-23 23:51:36.255 4500 TIP 436669 13854 6049461 2024-02-23 23:51:55.845 2024-02-23 23:51:55.845 500 FEE 436605 2741 6049462 2024-02-23 23:51:55.845 2024-02-23 23:51:55.845 4500 TIP 436605 937 6049473 2024-02-23 23:53:11.078 2024-02-23 23:53:11.078 500 FEE 435889 14990 6049474 2024-02-23 23:53:11.078 2024-02-23 23:53:11.078 4500 TIP 435889 5495 6049485 2024-02-23 23:53:47.406 2024-02-23 23:53:47.406 500 FEE 436279 18174 6049486 2024-02-23 23:53:47.406 2024-02-23 23:53:47.406 4500 TIP 436279 1141 6049495 2024-02-23 23:54:42.899 2024-02-23 23:54:42.899 500 FEE 435746 1490 6049496 2024-02-23 23:54:42.899 2024-02-23 23:54:42.899 4500 TIP 435746 9906 6049501 2024-02-23 23:55:18.743 2024-02-23 23:55:18.743 1000 FEE 436754 20581 6049525 2024-02-23 23:58:44.105 2024-02-23 23:58:44.105 1000 FEE 436669 19533 6049526 2024-02-23 23:58:44.105 2024-02-23 23:58:44.105 9000 TIP 436669 18040 6049536 2024-02-23 23:58:55.27 2024-02-23 23:58:55.27 1000 FEE 436753 9078 6049537 2024-02-23 23:58:55.27 2024-02-23 23:58:55.27 9000 TIP 436753 3656 6049538 2024-02-23 23:58:55.37 2024-02-23 23:58:55.37 1000 POLL 436759 1726 6049578 2024-02-24 00:03:51.012 2024-02-24 00:03:51.012 21000 FEE 436764 11498 6049587 2024-02-24 00:05:29.921 2024-02-24 00:05:29.921 1000 FEE 436566 19488 6049588 2024-02-24 00:05:29.921 2024-02-24 00:05:29.921 9000 TIP 436566 12721 6049596 2024-02-24 00:06:11.449 2024-02-24 00:06:11.449 1000 FEE 436281 4314 6049597 2024-02-24 00:06:11.449 2024-02-24 00:06:11.449 9000 TIP 436281 18518 6049600 2024-02-24 00:06:17.518 2024-02-24 00:06:17.518 900 FEE 436753 2330 6049601 2024-02-24 00:06:17.518 2024-02-24 00:06:17.518 8100 TIP 436753 21136 6049604 2024-02-24 00:06:33.343 2024-02-24 00:06:33.343 1000 FEE 436603 18169 6049605 2024-02-24 00:06:33.343 2024-02-24 00:06:33.343 9000 TIP 436603 19151 6049666 2024-02-24 00:15:32.067 2024-02-24 00:15:32.067 1000 FEE 436612 698 6049667 2024-02-24 00:15:32.067 2024-02-24 00:15:32.067 9000 TIP 436612 4322 6049674 2024-02-24 00:16:17.304 2024-02-24 00:16:17.304 1000 FEE 436281 9551 6049675 2024-02-24 00:16:17.304 2024-02-24 00:16:17.304 9000 TIP 436281 18446 6049678 2024-02-24 00:16:31.956 2024-02-24 00:16:31.956 1000 POLL 436759 16442 6049697 2024-02-24 00:18:45.615 2024-02-24 00:18:45.615 1000 FEE 436720 20744 6049698 2024-02-24 00:18:45.615 2024-02-24 00:18:45.615 9000 TIP 436720 21159 6049699 2024-02-24 00:18:59.739 2024-02-24 00:18:59.739 1000 FEE 436771 20751 6049710 2024-02-24 00:19:22.808 2024-02-24 00:19:22.808 8300 FEE 436753 20555 6049711 2024-02-24 00:19:22.808 2024-02-24 00:19:22.808 74700 TIP 436753 5057 6049724 2024-02-24 00:20:06.564 2024-02-24 00:20:06.564 1000 POLL 436759 20267 6049752 2024-02-24 00:23:35.922 2024-02-24 00:23:35.922 2100 FEE 436683 17106 6049753 2024-02-24 00:23:35.922 2024-02-24 00:23:35.922 18900 TIP 436683 13378 6049770 2024-02-24 00:24:43.369 2024-02-24 00:24:43.369 4000 FEE 436777 3400 6049771 2024-02-24 00:24:43.369 2024-02-24 00:24:43.369 36000 TIP 436777 15367 6049774 2024-02-24 00:24:59.236 2024-02-24 00:24:59.236 2100 FEE 436527 18658 6049775 2024-02-24 00:24:59.236 2024-02-24 00:24:59.236 18900 TIP 436527 1130 6049780 2024-02-24 00:25:18.035 2024-02-24 00:25:18.035 2100 FEE 436594 795 6049781 2024-02-24 00:25:18.035 2024-02-24 00:25:18.035 18900 TIP 436594 848 6049786 2024-02-24 00:25:56.491 2024-02-24 00:25:56.491 1000 FEE 436778 20106 6049831 2024-02-24 00:45:55.027 2024-02-24 00:45:55.027 2300 FEE 436781 21349 6049832 2024-02-24 00:45:55.027 2024-02-24 00:45:55.027 20700 TIP 436781 4062 6049848 2024-02-24 00:49:53.701 2024-02-24 00:49:53.701 2100 FEE 436777 1845 6049849 2024-02-24 00:49:53.701 2024-02-24 00:49:53.701 18900 TIP 436777 986 6049853 2024-02-24 00:50:05.939 2024-02-24 00:50:05.939 1000 FEE 436786 21400 6049861 2024-02-24 00:51:47.269 2024-02-24 00:51:47.269 2100 FEE 436718 9450 6049862 2024-02-24 00:51:47.269 2024-02-24 00:51:47.269 18900 TIP 436718 4167 6049865 2024-02-24 00:52:00.103 2024-02-24 00:52:00.103 1000 FEE 436789 11458 6049882 2024-02-24 00:57:34.631 2024-02-24 00:57:34.631 100000 FEE 436556 10731 6049883 2024-02-24 00:57:34.631 2024-02-24 00:57:34.631 900000 TIP 436556 21148 6049914 2024-02-24 01:04:17.802 2024-02-24 01:04:17.802 2100 FEE 436709 636 6049915 2024-02-24 01:04:17.802 2024-02-24 01:04:17.802 18900 TIP 436709 925 6049940 2024-02-24 01:13:13.487 2024-02-24 01:13:13.487 21100 FEE 436753 12736 6049941 2024-02-24 01:13:13.487 2024-02-24 01:13:13.487 189900 TIP 436753 5500 6049956 2024-02-24 01:16:30.785 2024-02-24 01:16:30.785 1100 FEE 436759 21605 6049957 2024-02-24 01:16:30.785 2024-02-24 01:16:30.785 9900 TIP 436759 19281 6049973 2024-02-24 01:21:48.505 2024-02-24 01:21:48.505 1000 FEE 436806 8385 6049987 2024-02-24 01:26:41.01 2024-02-24 01:26:41.01 1100 FEE 436753 15119 6049988 2024-02-24 01:26:41.01 2024-02-24 01:26:41.01 9900 TIP 436753 20816 6049993 2024-02-24 01:26:41.586 2024-02-24 01:26:41.586 1100 FEE 436753 848 6049994 2024-02-24 01:26:41.586 2024-02-24 01:26:41.586 9900 TIP 436753 7395 6050017 2024-02-24 01:28:54.357 2024-02-24 01:28:54.357 100000 FEE 436812 21091 6050021 2024-02-24 01:29:25.001 2024-02-24 01:29:25.001 1000 FEE 432839 20906 6050022 2024-02-24 01:29:25.001 2024-02-24 01:29:25.001 9000 TIP 432839 13921 6050043 2024-02-24 01:33:14.046 2024-02-24 01:33:14.046 2700 FEE 436093 5728 6050044 2024-02-24 01:33:14.046 2024-02-24 01:33:14.046 24300 TIP 436093 12819 6050073 2024-02-24 01:44:12.077 2024-02-24 01:44:12.077 10000 FEE 436420 696 6050074 2024-02-24 01:44:12.077 2024-02-24 01:44:12.077 90000 TIP 436420 19852 6050079 2024-02-24 01:44:22.182 2024-02-24 01:44:22.182 2700 FEE 436766 3544 6050080 2024-02-24 01:44:22.182 2024-02-24 01:44:22.182 24300 TIP 436766 7827 6050099 2024-02-24 01:48:31.37 2024-02-24 01:48:31.37 2500 FEE 436809 4391 6050100 2024-02-24 01:48:31.37 2024-02-24 01:48:31.37 22500 TIP 436809 20606 6050111 2024-02-24 01:48:34.46 2024-02-24 01:48:34.46 2500 FEE 436768 3686 6050112 2024-02-24 01:48:34.46 2024-02-24 01:48:34.46 22500 TIP 436768 18380 6050113 2024-02-24 01:48:34.639 2024-02-24 01:48:34.639 2500 FEE 436768 20280 6050114 2024-02-24 01:48:34.639 2024-02-24 01:48:34.639 22500 TIP 436768 21481 6050125 2024-02-24 01:48:36.338 2024-02-24 01:48:36.338 2500 FEE 436768 20370 6050126 2024-02-24 01:48:36.338 2024-02-24 01:48:36.338 22500 TIP 436768 12220 6050189 2024-02-24 01:53:17.32 2024-02-24 01:53:17.32 100 FEE 436827 17639 6050190 2024-02-24 01:53:17.32 2024-02-24 01:53:17.32 900 TIP 436827 2773 6050211 2024-02-24 01:56:58.41 2024-02-24 01:56:58.41 100 FEE 436720 2256 6050212 2024-02-24 01:56:58.41 2024-02-24 01:56:58.41 900 TIP 436720 11450 6050218 2024-02-24 01:57:47.607 2024-02-24 01:57:47.607 100 FEE 436724 6573 6050219 2024-02-24 01:57:47.607 2024-02-24 01:57:47.607 900 TIP 436724 12122 6050227 2024-02-24 01:58:59.968 2024-02-24 01:58:59.968 100 FEE 436710 20840 6050228 2024-02-24 01:58:59.968 2024-02-24 01:58:59.968 900 TIP 436710 1286 6050240 2024-02-24 02:02:34.705 2024-02-24 02:02:34.705 1000 FEE 436833 11263 6050245 2024-02-24 02:03:57.478 2024-02-24 02:03:57.478 1000 FEE 436835 11819 6050277 2024-02-24 02:11:25.332 2024-02-24 02:11:25.332 1000 FEE 436840 1729 6050286 2024-02-24 02:12:58.641 2024-02-24 02:12:58.641 1000 FEE 436842 12951 6050297 2024-02-24 02:16:01.736 2024-02-24 02:16:01.736 1000 FEE 436786 16301 6050298 2024-02-24 02:16:01.736 2024-02-24 02:16:01.736 9000 TIP 436786 18344 6050308 2024-02-24 02:18:24.786 2024-02-24 02:18:24.786 1000 FEE 436845 18528 6050309 2024-02-24 02:18:24.786 2024-02-24 02:18:24.786 9000 TIP 436845 19638 6050312 2024-02-24 02:19:34.727 2024-02-24 02:19:34.727 1300 FEE 436827 876 6049479 2024-02-23 23:53:29.822 2024-02-23 23:53:29.822 500 FEE 436504 1772 6049480 2024-02-23 23:53:29.822 2024-02-23 23:53:29.822 4500 TIP 436504 649 6049481 2024-02-23 23:53:30.905 2024-02-23 23:53:30.905 500 FEE 436504 621 6049482 2024-02-23 23:53:30.905 2024-02-23 23:53:30.905 4500 TIP 436504 13759 6049504 2024-02-23 23:55:36.823 2024-02-23 23:55:36.823 27000 FEE 436733 19938 6049505 2024-02-23 23:55:36.823 2024-02-23 23:55:36.823 243000 TIP 436733 16042 6049522 2024-02-23 23:58:34.649 2024-02-23 23:58:34.649 100000 FEE 436759 12346 6049541 2024-02-23 23:59:35.577 2024-02-23 23:59:35.577 1000 FEE 435950 16858 6049542 2024-02-23 23:59:35.577 2024-02-23 23:59:35.577 9000 TIP 435950 17201 6049558 2024-02-24 00:02:00.481 2024-02-24 00:02:00.481 2300 FEE 436753 12356 6049559 2024-02-24 00:02:00.481 2024-02-24 00:02:00.481 20700 TIP 436753 2710 6049602 2024-02-24 00:06:18.108 2024-02-24 00:06:18.108 9000 FEE 436753 1472 6049603 2024-02-24 00:06:18.108 2024-02-24 00:06:18.108 81000 TIP 436753 647 6049611 2024-02-24 00:07:24.986 2024-02-24 00:07:24.986 1000 FEE 436710 21103 6049612 2024-02-24 00:07:24.986 2024-02-24 00:07:24.986 9000 TIP 436710 20906 6049621 2024-02-24 00:08:03.248 2024-02-24 00:08:03.248 10000 FEE 436765 5425 6049660 2024-02-24 00:15:20.229 2024-02-24 00:15:20.229 1000 FEE 436572 20594 6049661 2024-02-24 00:15:20.229 2024-02-24 00:15:20.229 9000 TIP 436572 16410 6049670 2024-02-24 00:16:03.151 2024-02-24 00:16:03.151 100 FEE 436372 1647 6049671 2024-02-24 00:16:03.151 2024-02-24 00:16:03.151 900 TIP 436372 1959 6049708 2024-02-24 00:19:22.628 2024-02-24 00:19:22.628 16600 FEE 436753 675 6049709 2024-02-24 00:19:22.628 2024-02-24 00:19:22.628 149400 TIP 436753 16348 6049718 2024-02-24 00:19:34.368 2024-02-24 00:19:34.368 2000 FEE 436765 21539 6049719 2024-02-24 00:19:34.368 2024-02-24 00:19:34.368 18000 TIP 436765 9159 6049735 2024-02-24 00:21:35.714 2024-02-24 00:21:35.714 10000 FEE 436336 17638 6049736 2024-02-24 00:21:35.714 2024-02-24 00:21:35.714 90000 TIP 436336 20179 6049762 2024-02-24 00:23:50.082 2024-02-24 00:23:50.082 2100 FEE 436709 1490 6049763 2024-02-24 00:23:50.082 2024-02-24 00:23:50.082 18900 TIP 436709 20152 6049898 2024-02-24 01:00:16.931 2024-02-24 01:00:16.931 2100 FEE 435944 15052 6049899 2024-02-24 01:00:16.931 2024-02-24 01:00:16.931 18900 TIP 435944 15484 6049916 2024-02-24 01:04:25.695 2024-02-24 01:04:25.695 2100 FEE 436766 21387 6049917 2024-02-24 01:04:25.695 2024-02-24 01:04:25.695 18900 TIP 436766 5387 6049931 2024-02-24 01:11:08.807 2024-02-24 01:11:08.807 1000 FEE 432899 5759 6049932 2024-02-24 01:11:08.807 2024-02-24 01:11:08.807 9000 TIP 432899 20751 6049944 2024-02-24 01:13:39.704 2024-02-24 01:13:39.704 1000 FEE 409093 11798 6049945 2024-02-24 01:13:39.704 2024-02-24 01:13:39.704 9000 TIP 409093 20106 6049955 2024-02-24 01:16:26.096 2024-02-24 01:16:26.096 1000 FEE 436799 1576 6049982 2024-02-24 01:25:24.77 2024-02-24 01:25:24.77 100 FEE 436566 18500 6049983 2024-02-24 01:25:24.77 2024-02-24 01:25:24.77 900 TIP 436566 2402 6050008 2024-02-24 01:27:04.07 2024-02-24 01:27:04.07 1100 FEE 434324 16966 6050009 2024-02-24 01:27:04.07 2024-02-24 01:27:04.07 9900 TIP 434324 10359 6050010 2024-02-24 01:27:19.004 2024-02-24 01:27:19.004 1000 FEE 432839 2203 6050011 2024-02-24 01:27:19.004 2024-02-24 01:27:19.004 9000 TIP 432839 1286 6050039 2024-02-24 01:33:13.505 2024-02-24 01:33:13.505 2700 FEE 436093 19103 6050040 2024-02-24 01:33:13.505 2024-02-24 01:33:13.505 24300 TIP 436093 16649 6050048 2024-02-24 01:34:30.01 2024-02-24 01:34:30.01 1000 FEE 436817 16194 6050064 2024-02-24 01:40:19.121 2024-02-24 01:40:19.121 1000 FEE 436820 9336 6050071 2024-02-24 01:44:07.488 2024-02-24 01:44:07.488 210000 FEE 436823 9476 6050083 2024-02-24 01:44:40.265 2024-02-24 01:44:40.265 200 FEE 436815 9347 6050084 2024-02-24 01:44:40.265 2024-02-24 01:44:40.265 1800 TIP 436815 21620 6050117 2024-02-24 01:48:35.025 2024-02-24 01:48:35.025 2500 FEE 436768 629 6050118 2024-02-24 01:48:35.025 2024-02-24 01:48:35.025 22500 TIP 436768 5557 6050133 2024-02-24 01:48:38.341 2024-02-24 01:48:38.341 2500 FEE 436694 721 6050134 2024-02-24 01:48:38.341 2024-02-24 01:48:38.341 22500 TIP 436694 21481 6050143 2024-02-24 01:48:39.239 2024-02-24 01:48:39.239 2500 FEE 436694 2232 6050144 2024-02-24 01:48:39.239 2024-02-24 01:48:39.239 22500 TIP 436694 20606 6050149 2024-02-24 01:48:39.749 2024-02-24 01:48:39.749 2500 FEE 436694 6777 6050150 2024-02-24 01:48:39.749 2024-02-24 01:48:39.749 22500 TIP 436694 708 6050151 2024-02-24 01:48:39.94 2024-02-24 01:48:39.94 2500 FEE 436694 14195 6050152 2024-02-24 01:48:39.94 2024-02-24 01:48:39.94 22500 TIP 436694 21207 6050153 2024-02-24 01:48:40.098 2024-02-24 01:48:40.098 2500 FEE 436694 895 6050154 2024-02-24 01:48:40.098 2024-02-24 01:48:40.098 22500 TIP 436694 14795 6050161 2024-02-24 01:48:42.479 2024-02-24 01:48:42.479 2500 FEE 436782 13133 6050162 2024-02-24 01:48:42.479 2024-02-24 01:48:42.479 22500 TIP 436782 19615 6050165 2024-02-24 01:48:42.889 2024-02-24 01:48:42.889 2500 FEE 436782 1122 6050166 2024-02-24 01:48:42.889 2024-02-24 01:48:42.889 22500 TIP 436782 21547 6050185 2024-02-24 01:53:06.401 2024-02-24 01:53:06.401 100 FEE 436815 16259 6050186 2024-02-24 01:53:06.401 2024-02-24 01:53:06.401 900 TIP 436815 20979 6050192 2024-02-24 01:54:15.822 2024-02-24 01:54:15.822 2100 FEE 436788 7989 6050193 2024-02-24 01:54:15.822 2024-02-24 01:54:15.822 18900 TIP 436788 14791 6050195 2024-02-24 01:54:45.461 2024-02-24 01:54:45.461 2100 FEE 436753 13527 6050196 2024-02-24 01:54:45.461 2024-02-24 01:54:45.461 18900 TIP 436753 19151 6050202 2024-02-24 01:55:14.715 2024-02-24 01:55:14.715 10000 FEE 436785 985 6050203 2024-02-24 01:55:14.715 2024-02-24 01:55:14.715 90000 TIP 436785 17411 6050209 2024-02-24 01:56:34.745 2024-02-24 01:56:34.745 2100 FEE 436733 712 6050210 2024-02-24 01:56:34.745 2024-02-24 01:56:34.745 18900 TIP 436733 18114 6050222 2024-02-24 01:58:06.288 2024-02-24 01:58:06.288 100 FEE 436784 1389 6050223 2024-02-24 01:58:06.288 2024-02-24 01:58:06.288 900 TIP 436784 20858 6050224 2024-02-24 01:58:11.36 2024-02-24 01:58:11.36 1000 FEE 436831 12272 6050259 2024-02-24 02:08:00.362 2024-02-24 02:08:00.362 2100 FEE 436793 19463 6050260 2024-02-24 02:08:00.362 2024-02-24 02:08:00.362 18900 TIP 436793 5173 6050266 2024-02-24 02:08:33.07 2024-02-24 02:08:33.07 1000 FEE 436838 20606 6050270 2024-02-24 02:09:33.738 2024-02-24 02:09:33.738 1000 FEE 436837 19839 6050271 2024-02-24 02:09:33.738 2024-02-24 02:09:33.738 9000 TIP 436837 20586 6050272 2024-02-24 02:09:48.381 2024-02-24 02:09:48.381 100 FEE 436736 11590 6050273 2024-02-24 02:09:48.381 2024-02-24 02:09:48.381 900 TIP 436736 891 6050292 2024-02-24 02:15:50.001 2024-02-24 02:15:50.001 1000 FEE 436777 18526 6050293 2024-02-24 02:15:50.001 2024-02-24 02:15:50.001 9000 TIP 436777 21180 6050303 2024-02-24 02:17:16.242 2024-02-24 02:17:16.242 1000 FEE 436844 20646 6050398 2024-02-24 02:39:15.66 2024-02-24 02:39:15.66 2100 FEE 436858 20969 6050399 2024-02-24 02:39:15.66 2024-02-24 02:39:15.66 18900 TIP 436858 9992 6050425 2024-02-24 02:46:44.591 2024-02-24 02:46:44.591 100 FEE 436811 1626 6050426 2024-02-24 02:46:44.591 2024-02-24 02:46:44.591 900 TIP 436811 19566 6050433 2024-02-24 02:47:14.053 2024-02-24 02:47:14.053 1000 POLL 436759 6515 6050447 2024-02-24 02:47:44.408 2024-02-24 02:47:44.408 100 FEE 436777 1803 6050448 2024-02-24 02:47:44.408 2024-02-24 02:47:44.408 900 TIP 436777 17041 6050474 2024-02-24 02:48:36.47 2024-02-24 02:48:36.47 1000 FEE 436827 20306 6049572 2024-02-24 00:03:03.972 2024-02-24 00:03:03.972 1000 STREAM 141924 15474 6114407 2024-02-29 15:55:55.189 2024-02-29 15:55:55.189 1100 FEE 443676 13753 6114408 2024-02-29 15:55:55.189 2024-02-29 15:55:55.189 9900 TIP 443676 1960 6114428 2024-02-29 15:58:13.145 2024-02-29 15:58:13.145 900 FEE 443577 1801 6114429 2024-02-29 15:58:13.145 2024-02-29 15:58:13.145 8100 TIP 443577 21014 6114443 2024-02-29 15:59:13.519 2024-02-29 15:59:13.519 1000 FEE 443728 20272 6114444 2024-02-29 15:59:13.519 2024-02-29 15:59:13.519 9000 TIP 443728 2710 6114451 2024-02-29 15:59:53.9 2024-02-29 15:59:53.9 1000 FEE 443735 21540 6114457 2024-02-29 16:00:20.764 2024-02-29 16:00:20.764 0 FEE 443723 10934 6114483 2024-02-29 16:01:54.295 2024-02-29 16:01:54.295 1700 FEE 443712 18372 6114484 2024-02-29 16:01:54.295 2024-02-29 16:01:54.295 15300 TIP 443712 9833 6114488 2024-02-29 16:02:03.756 2024-02-29 16:02:03.756 2100 FEE 443567 9183 6114489 2024-02-29 16:02:03.756 2024-02-29 16:02:03.756 18900 TIP 443567 6137 6114504 2024-02-29 16:02:51.35 2024-02-29 16:02:51.35 1000 FEE 443741 2256 6114556 2024-02-29 16:08:42.661 2024-02-29 16:08:42.661 100 FEE 443747 672 6114557 2024-02-29 16:08:42.661 2024-02-29 16:08:42.661 900 TIP 443747 7983 6114570 2024-02-29 16:08:45.054 2024-02-29 16:08:45.054 100 FEE 443747 899 6114571 2024-02-29 16:08:45.054 2024-02-29 16:08:45.054 900 TIP 443747 776 6114591 2024-02-29 16:10:52.833 2024-02-29 16:10:52.833 2100 FEE 443617 21155 6114592 2024-02-29 16:10:52.833 2024-02-29 16:10:52.833 18900 TIP 443617 10493 6114612 2024-02-29 16:14:05.132 2024-02-29 16:14:05.132 1000 FEE 443761 20180 6114626 2024-02-29 16:15:15.974 2024-02-29 16:15:15.974 1000 FEE 443762 681 6114627 2024-02-29 16:15:24.935 2024-02-29 16:15:24.935 2100 FEE 443667 20183 6114628 2024-02-29 16:15:24.935 2024-02-29 16:15:24.935 18900 TIP 443667 20183 6114631 2024-02-29 16:15:36.594 2024-02-29 16:15:36.594 2100 FEE 443593 21323 6114632 2024-02-29 16:15:36.594 2024-02-29 16:15:36.594 18900 TIP 443593 21269 6114694 2024-02-29 16:20:33.736 2024-02-29 16:20:33.736 4200 FEE 443593 13517 6114695 2024-02-29 16:20:33.736 2024-02-29 16:20:33.736 37800 TIP 443593 19381 6114701 2024-02-29 16:20:48.762 2024-02-29 16:20:48.762 900 FEE 443712 5852 6114702 2024-02-29 16:20:48.762 2024-02-29 16:20:48.762 8100 TIP 443712 16042 6114718 2024-02-29 16:22:07.901 2024-02-29 16:22:07.901 1000 FEE 443777 11450 6114719 2024-02-29 16:22:24.937 2024-02-29 16:22:24.937 100000 FEE 443778 16440 6114723 2024-02-29 16:23:05.444 2024-02-29 16:23:05.444 1000 FEE 443779 21064 6114762 2024-02-29 16:24:48.488 2024-02-29 16:24:48.488 2100 FEE 443197 14202 6114763 2024-02-29 16:24:48.488 2024-02-29 16:24:48.488 18900 TIP 443197 21361 6114764 2024-02-29 16:24:53.31 2024-02-29 16:24:53.31 1000 FEE 443783 20163 6114765 2024-02-29 16:24:56.453 2024-02-29 16:24:56.453 10000 FEE 443763 19469 6114766 2024-02-29 16:24:56.453 2024-02-29 16:24:56.453 90000 TIP 443763 13931 6114784 2024-02-29 16:26:29.869 2024-02-29 16:26:29.869 1700 FEE 443753 19332 6114785 2024-02-29 16:26:29.869 2024-02-29 16:26:29.869 15300 TIP 443753 3439 6114790 2024-02-29 16:26:45.13 2024-02-29 16:26:45.13 1700 FEE 443768 1474 6114791 2024-02-29 16:26:45.13 2024-02-29 16:26:45.13 15300 TIP 443768 11776 6114810 2024-02-29 16:27:24.422 2024-02-29 16:27:24.422 10000 FEE 443781 620 6114811 2024-02-29 16:27:24.422 2024-02-29 16:27:24.422 90000 TIP 443781 9078 6114853 2024-02-29 16:30:35.384 2024-02-29 16:30:35.384 1000 FEE 443795 21026 6114861 2024-02-29 16:31:18.154 2024-02-29 16:31:18.154 100000 FEE 443797 16704 6114865 2024-02-29 16:32:07.966 2024-02-29 16:32:07.966 2100 FEE 443794 20109 6114866 2024-02-29 16:32:07.966 2024-02-29 16:32:07.966 18900 TIP 443794 18528 6114868 2024-02-29 16:32:20.699 2024-02-29 16:32:20.699 2100 FEE 443794 782 6114869 2024-02-29 16:32:20.699 2024-02-29 16:32:20.699 18900 TIP 443794 21208 6114878 2024-02-29 16:33:24.064 2024-02-29 16:33:24.064 210000 FEE 443799 15147 6114906 2024-02-29 16:34:14.382 2024-02-29 16:34:14.382 100 FEE 443694 16097 6114907 2024-02-29 16:34:14.382 2024-02-29 16:34:14.382 900 TIP 443694 16176 6114911 2024-02-29 16:34:32.203 2024-02-29 16:34:32.203 1000 FEE 443712 3304 6114912 2024-02-29 16:34:32.203 2024-02-29 16:34:32.203 9000 TIP 443712 2748 6114921 2024-02-29 16:35:07.721 2024-02-29 16:35:07.721 1000 FEE 443776 20376 6114922 2024-02-29 16:35:07.721 2024-02-29 16:35:07.721 9000 TIP 443776 8284 6114942 2024-02-29 16:36:50.417 2024-02-29 16:36:50.417 100 FEE 443345 9551 6114943 2024-02-29 16:36:50.417 2024-02-29 16:36:50.417 900 TIP 443345 16956 6114954 2024-02-29 16:36:52.502 2024-02-29 16:36:52.502 100 FEE 443345 21453 6114955 2024-02-29 16:36:52.502 2024-02-29 16:36:52.502 900 TIP 443345 18678 6114976 2024-02-29 16:36:58.864 2024-02-29 16:36:58.864 100 FEE 443345 18472 6114977 2024-02-29 16:36:58.864 2024-02-29 16:36:58.864 900 TIP 443345 19138 6114983 2024-02-29 16:37:34.493 2024-02-29 16:37:34.493 1000 FEE 443805 18517 6114997 2024-02-29 16:38:58.73 2024-02-29 16:38:58.73 1000 FEE 443807 18690 6115002 2024-02-29 16:39:14.654 2024-02-29 16:39:14.654 1000 FEE 443272 1320 6115003 2024-02-29 16:39:14.654 2024-02-29 16:39:14.654 9000 TIP 443272 17237 6115009 2024-02-29 16:40:04.167 2024-02-29 16:40:04.167 1000 FEE 443737 4128 6115010 2024-02-29 16:40:04.167 2024-02-29 16:40:04.167 9000 TIP 443737 1030 6115035 2024-02-29 16:40:38.34 2024-02-29 16:40:38.34 1000 FEE 442973 16356 6115036 2024-02-29 16:40:38.34 2024-02-29 16:40:38.34 9000 TIP 442973 15544 6115037 2024-02-29 16:40:38.668 2024-02-29 16:40:38.668 1000 FEE 442973 19601 6115038 2024-02-29 16:40:38.668 2024-02-29 16:40:38.668 9000 TIP 442973 21063 6115069 2024-02-29 16:41:51.936 2024-02-29 16:41:51.936 800 FEE 443808 6229 6115070 2024-02-29 16:41:51.936 2024-02-29 16:41:51.936 7200 TIP 443808 2285 6115077 2024-02-29 16:42:38.968 2024-02-29 16:42:38.968 100 FEE 443745 1784 6115078 2024-02-29 16:42:38.968 2024-02-29 16:42:38.968 900 TIP 443745 685 6115088 2024-02-29 16:43:05.052 2024-02-29 16:43:05.052 1000 FEE 443819 14080 6115089 2024-02-29 16:43:05.519 2024-02-29 16:43:05.519 100 FEE 443583 17046 6115090 2024-02-29 16:43:05.519 2024-02-29 16:43:05.519 900 TIP 443583 20990 6115097 2024-02-29 16:43:22.96 2024-02-29 16:43:22.96 1000 FEE 443820 16267 6115107 2024-02-29 16:43:36.358 2024-02-29 16:43:36.358 1000 FEE 443611 16356 6115108 2024-02-29 16:43:36.358 2024-02-29 16:43:36.358 9000 TIP 443611 21424 6115115 2024-02-29 16:43:37.288 2024-02-29 16:43:37.288 1000 FEE 443611 2256 6115116 2024-02-29 16:43:37.288 2024-02-29 16:43:37.288 9000 TIP 443611 8498 6115119 2024-02-29 16:43:37.466 2024-02-29 16:43:37.466 1000 FEE 443818 636 6115120 2024-02-29 16:43:37.466 2024-02-29 16:43:37.466 9000 TIP 443818 654 6115121 2024-02-29 16:43:37.587 2024-02-29 16:43:37.587 1000 FEE 443611 1465 6115122 2024-02-29 16:43:37.587 2024-02-29 16:43:37.587 9000 TIP 443611 6765 6115131 2024-02-29 16:43:41.425 2024-02-29 16:43:41.425 2100 FEE 443778 3506 6115132 2024-02-29 16:43:41.425 2024-02-29 16:43:41.425 18900 TIP 443778 18344 6115139 2024-02-29 16:43:56.135 2024-02-29 16:43:56.135 6900 FEE 443730 18271 6115140 2024-02-29 16:43:56.135 2024-02-29 16:43:56.135 62100 TIP 443730 16858 6115176 2024-02-29 16:45:24.184 2024-02-29 16:45:24.184 6900 FEE 443799 16542 6115177 2024-02-29 16:45:24.184 2024-02-29 16:45:24.184 62100 TIP 443799 18423 6115190 2024-02-29 16:45:25.34 2024-02-29 16:45:25.34 6900 FEE 443799 18618 6115191 2024-02-29 16:45:25.34 2024-02-29 16:45:25.34 62100 TIP 443799 15266 6115192 2024-02-29 16:45:25.475 2024-02-29 16:45:25.475 6900 FEE 443799 18618 6115193 2024-02-29 16:45:25.475 2024-02-29 16:45:25.475 62100 TIP 443799 6268 6115194 2024-02-29 16:45:25.591 2024-02-29 16:45:25.591 6900 FEE 443799 5646 6115195 2024-02-29 16:45:25.591 2024-02-29 16:45:25.591 62100 TIP 443799 15463 6115208 2024-02-29 16:45:31.02 2024-02-29 16:45:31.02 1000 FEE 443827 9427 6115209 2024-02-29 16:45:32.194 2024-02-29 16:45:32.194 1700 FEE 443755 21338 6115210 2024-02-29 16:45:32.194 2024-02-29 16:45:32.194 15300 TIP 443755 2942 6049610 2024-02-24 00:07:10.109 2024-02-24 00:07:10.109 9000 TIP 435860 12278 6049615 2024-02-24 00:07:48.264 2024-02-24 00:07:48.264 1000 FEE 436499 12024 6049616 2024-02-24 00:07:48.264 2024-02-24 00:07:48.264 9000 TIP 436499 20190 6049617 2024-02-24 00:07:50.783 2024-02-24 00:07:50.783 2000 FEE 432889 827 6049618 2024-02-24 00:07:50.783 2024-02-24 00:07:50.783 18000 TIP 432889 3213 6049628 2024-02-24 00:11:50.816 2024-02-24 00:11:50.816 1000 FEE 436753 6058 6049629 2024-02-24 00:11:50.816 2024-02-24 00:11:50.816 9000 TIP 436753 1213 6049656 2024-02-24 00:15:16.07 2024-02-24 00:15:16.07 1000 FEE 436753 15226 6049657 2024-02-24 00:15:16.07 2024-02-24 00:15:16.07 9000 TIP 436753 4027 6049662 2024-02-24 00:15:25.85 2024-02-24 00:15:25.85 1000 FEE 436729 4048 6049663 2024-02-24 00:15:25.85 2024-02-24 00:15:25.85 9000 TIP 436729 738 6049693 2024-02-24 00:18:08.14 2024-02-24 00:18:08.14 1000 FEE 436603 21248 6049694 2024-02-24 00:18:08.14 2024-02-24 00:18:08.14 9000 TIP 436603 5694 6049695 2024-02-24 00:18:22.408 2024-02-24 00:18:22.408 1000 FEE 436303 13854 6049696 2024-02-24 00:18:22.408 2024-02-24 00:18:22.408 9000 TIP 436303 1773 6049720 2024-02-24 00:19:34.866 2024-02-24 00:19:34.866 1000 FEE 436773 5173 6049721 2024-02-24 00:19:36.175 2024-02-24 00:19:36.175 2000 FEE 436765 1605 6049722 2024-02-24 00:19:36.175 2024-02-24 00:19:36.175 18000 TIP 436765 13553 6049743 2024-02-24 00:23:12.565 2024-02-24 00:23:12.565 10000 FEE 436773 7916 6049744 2024-02-24 00:23:12.565 2024-02-24 00:23:12.565 90000 TIP 436773 16229 6049745 2024-02-24 00:23:19.607 2024-02-24 00:23:19.607 1000 FEE 436776 992 6049754 2024-02-24 00:23:37.129 2024-02-24 00:23:37.129 2100 FEE 436669 18269 6049755 2024-02-24 00:23:37.129 2024-02-24 00:23:37.129 18900 TIP 436669 21216 6049782 2024-02-24 00:25:29.463 2024-02-24 00:25:29.463 2100 FEE 436712 19863 6049783 2024-02-24 00:25:29.463 2024-02-24 00:25:29.463 18900 TIP 436712 794 6049790 2024-02-24 00:27:00.041 2024-02-24 00:27:00.041 0 FEE 436774 10359 6049802 2024-02-24 00:36:10.792 2024-02-24 00:36:10.792 1000 FEE 436781 3360 6049803 2024-02-24 00:36:15.807 2024-02-24 00:36:15.807 4200 FEE 436694 3461 6049804 2024-02-24 00:36:15.807 2024-02-24 00:36:15.807 37800 TIP 436694 692 6049833 2024-02-24 00:45:55.193 2024-02-24 00:45:55.193 2300 FEE 436781 9362 6049834 2024-02-24 00:45:55.193 2024-02-24 00:45:55.193 20700 TIP 436781 9275 6049837 2024-02-24 00:46:00.554 2024-02-24 00:46:00.554 1000 FEE 436785 21014 6049844 2024-02-24 00:49:23.842 2024-02-24 00:49:23.842 2100 FEE 436651 12779 6049845 2024-02-24 00:49:23.842 2024-02-24 00:49:23.842 18900 TIP 436651 9246 6049846 2024-02-24 00:49:52.079 2024-02-24 00:49:52.079 2100 FEE 436780 20738 6049847 2024-02-24 00:49:52.079 2024-02-24 00:49:52.079 18900 TIP 436780 20090 6049858 2024-02-24 00:51:31.53 2024-02-24 00:51:31.53 2100 FEE 436766 9159 6049859 2024-02-24 00:51:31.53 2024-02-24 00:51:31.53 18900 TIP 436766 18984 6049860 2024-02-24 00:51:38.169 2024-02-24 00:51:38.169 1000 FEE 436788 4177 6049869 2024-02-24 00:53:00.961 2024-02-24 00:53:00.961 1000 FEE 436790 19557 6049980 2024-02-24 01:25:02.002 2024-02-24 01:25:02.002 1000 POLL 436759 11829 6050000 2024-02-24 01:26:57.656 2024-02-24 01:26:57.656 1000 FEE 436809 20450 6050032 2024-02-24 01:31:41.27 2024-02-24 01:31:41.27 1000 FEE 436814 985 6050033 2024-02-24 01:31:48.374 2024-02-24 01:31:48.374 10000 FEE 436815 20751 6050045 2024-02-24 01:33:14.897 2024-02-24 01:33:14.897 2700 FEE 436093 21521 6050046 2024-02-24 01:33:14.897 2024-02-24 01:33:14.897 24300 TIP 436093 17109 6050105 2024-02-24 01:48:32.078 2024-02-24 01:48:32.078 2500 FEE 436809 20998 6050106 2024-02-24 01:48:32.078 2024-02-24 01:48:32.078 22500 TIP 436809 9863 6050131 2024-02-24 01:48:38.172 2024-02-24 01:48:38.172 2500 FEE 436694 1195 6050132 2024-02-24 01:48:38.172 2024-02-24 01:48:38.172 22500 TIP 436694 16485 6050135 2024-02-24 01:48:38.539 2024-02-24 01:48:38.539 2500 FEE 436694 20045 6050136 2024-02-24 01:48:38.539 2024-02-24 01:48:38.539 22500 TIP 436694 1814 6050145 2024-02-24 01:48:39.405 2024-02-24 01:48:39.405 2500 FEE 436694 15180 6050146 2024-02-24 01:48:39.405 2024-02-24 01:48:39.405 22500 TIP 436694 1495 6050198 2024-02-24 01:55:08.21 2024-02-24 01:55:08.21 2100 FEE 436669 7673 6050199 2024-02-24 01:55:08.21 2024-02-24 01:55:08.21 18900 TIP 436669 18068 6050207 2024-02-24 01:56:17.981 2024-02-24 01:56:17.981 10000 FEE 436556 15594 6050208 2024-02-24 01:56:17.981 2024-02-24 01:56:17.981 90000 TIP 436556 16059 6050216 2024-02-24 01:57:44.312 2024-02-24 01:57:44.312 100 FEE 436751 1175 6050217 2024-02-24 01:57:44.312 2024-02-24 01:57:44.312 900 TIP 436751 4487 6050232 2024-02-24 01:59:49.992 2024-02-24 01:59:49.992 1000 FEE 436832 18262 6050244 2024-02-24 02:03:30.865 2024-02-24 02:03:30.865 1000 FEE 436834 13097 6050261 2024-02-24 02:08:01.793 2024-02-24 02:08:01.793 2100 FEE 436786 2224 6050262 2024-02-24 02:08:01.793 2024-02-24 02:08:01.793 18900 TIP 436786 979 6050263 2024-02-24 02:08:02.997 2024-02-24 02:08:02.997 2100 FEE 436778 19459 6049623 2024-02-24 00:09:04.427 2024-02-24 00:09:04.427 1000 STREAM 141924 10493 6049627 2024-02-24 00:11:04.452 2024-02-24 00:11:04.452 1000 STREAM 141924 14357 6049634 2024-02-24 00:13:04.497 2024-02-24 00:13:04.497 1000 STREAM 141924 4304 6114461 2024-02-29 16:01:03.475 2024-02-29 16:01:03.475 1000 STREAM 141924 18745 6049672 2024-02-24 00:16:04.485 2024-02-24 00:16:04.485 1000 STREAM 141924 1833 6049681 2024-02-24 00:17:04.484 2024-02-24 00:17:04.484 1000 STREAM 141924 636 6049692 2024-02-24 00:18:04.474 2024-02-24 00:18:04.474 1000 STREAM 141924 16229 6049723 2024-02-24 00:20:04.481 2024-02-24 00:20:04.481 1000 STREAM 141924 12072 6049737 2024-02-24 00:22:04.495 2024-02-24 00:22:04.495 1000 STREAM 141924 18865 6049791 2024-02-24 00:27:04.54 2024-02-24 00:27:04.54 1000 STREAM 141924 1803 6114490 2024-02-29 16:02:04.284 2024-02-29 16:02:04.284 1700 FEE 443725 19329 6114491 2024-02-29 16:02:04.284 2024-02-29 16:02:04.284 15300 TIP 443725 20264 6114531 2024-02-29 16:07:32.375 2024-02-29 16:07:32.375 5000 FEE 443683 4314 6114532 2024-02-29 16:07:32.375 2024-02-29 16:07:32.375 45000 TIP 443683 1692 6114542 2024-02-29 16:08:26.254 2024-02-29 16:08:26.254 1000 FEE 443672 20179 6114543 2024-02-29 16:08:26.254 2024-02-29 16:08:26.254 9000 TIP 443672 929 6114562 2024-02-29 16:08:43.496 2024-02-29 16:08:43.496 100 FEE 443747 683 6114563 2024-02-29 16:08:43.496 2024-02-29 16:08:43.496 900 TIP 443747 1490 6114579 2024-02-29 16:09:10.294 2024-02-29 16:09:10.294 500 FEE 443731 18615 6114580 2024-02-29 16:09:10.294 2024-02-29 16:09:10.294 4500 TIP 443731 2543 6114629 2024-02-29 16:15:29.62 2024-02-29 16:15:29.62 2100 FEE 443683 20564 6114630 2024-02-29 16:15:29.62 2024-02-29 16:15:29.62 18900 TIP 443683 12566 6114643 2024-02-29 16:16:33.121 2024-02-29 16:16:33.121 1000 FEE 443764 21262 6114657 2024-02-29 16:17:46.48 2024-02-29 16:17:46.48 500 FEE 443764 20245 6114658 2024-02-29 16:17:46.48 2024-02-29 16:17:46.48 4500 TIP 443764 11153 6114665 2024-02-29 16:18:21.943 2024-02-29 16:18:21.943 0 FEE 443762 20710 6114682 2024-02-29 16:19:38.587 2024-02-29 16:19:38.587 5000 FEE 443708 20264 6114683 2024-02-29 16:19:38.587 2024-02-29 16:19:38.587 45000 TIP 443708 20730 6114692 2024-02-29 16:20:01.006 2024-02-29 16:20:01.006 1000 FEE 443774 620 6114713 2024-02-29 16:21:33.126 2024-02-29 16:21:33.126 100 FEE 443772 16124 6114714 2024-02-29 16:21:33.126 2024-02-29 16:21:33.126 900 TIP 443772 6164 6114724 2024-02-29 16:23:37.77 2024-02-29 16:23:37.77 10000 FEE 443765 21527 6114725 2024-02-29 16:23:37.77 2024-02-29 16:23:37.77 90000 TIP 443765 21373 6114731 2024-02-29 16:24:31.699 2024-02-29 16:24:31.699 1000 FEE 443782 15556 6114738 2024-02-29 16:24:38.766 2024-02-29 16:24:38.766 2100 FEE 443577 18359 6114739 2024-02-29 16:24:38.766 2024-02-29 16:24:38.766 18900 TIP 443577 15367 6114744 2024-02-29 16:24:40.928 2024-02-29 16:24:40.928 2100 FEE 443274 9169 6114745 2024-02-29 16:24:40.928 2024-02-29 16:24:40.928 18900 TIP 443274 18896 6114750 2024-02-29 16:24:43.938 2024-02-29 16:24:43.938 10000 FEE 443765 18731 6114751 2024-02-29 16:24:43.938 2024-02-29 16:24:43.938 90000 TIP 443765 16543 6114756 2024-02-29 16:24:47.371 2024-02-29 16:24:47.371 2100 FEE 443319 5308 6114757 2024-02-29 16:24:47.371 2024-02-29 16:24:47.371 18900 TIP 443319 21506 6114778 2024-02-29 16:25:51.358 2024-02-29 16:25:51.358 0 FEE 443781 14795 6114798 2024-02-29 16:26:58.026 2024-02-29 16:26:58.026 1700 FEE 443758 10469 6114799 2024-02-29 16:26:58.026 2024-02-29 16:26:58.026 15300 TIP 443758 1697 6114892 2024-02-29 16:34:11.031 2024-02-29 16:34:11.031 100 FEE 443694 5427 6114893 2024-02-29 16:34:11.031 2024-02-29 16:34:11.031 900 TIP 443694 20881 6114914 2024-02-29 16:34:36.091 2024-02-29 16:34:36.091 10000 FEE 443779 913 6114915 2024-02-29 16:34:36.091 2024-02-29 16:34:36.091 90000 TIP 443779 20243 6114919 2024-02-29 16:35:03.957 2024-02-29 16:35:03.957 2100 FEE 443794 4238 6114920 2024-02-29 16:35:03.957 2024-02-29 16:35:03.957 18900 TIP 443794 14515 6114926 2024-02-29 16:35:31.502 2024-02-29 16:35:31.502 500 FEE 443782 13204 6114927 2024-02-29 16:35:31.502 2024-02-29 16:35:31.502 4500 TIP 443782 18232 6114950 2024-02-29 16:36:52.113 2024-02-29 16:36:52.113 100 FEE 443345 5487 6114951 2024-02-29 16:36:52.113 2024-02-29 16:36:52.113 900 TIP 443345 2188 6114960 2024-02-29 16:36:53.949 2024-02-29 16:36:53.949 100 FEE 443345 18667 6114961 2024-02-29 16:36:53.949 2024-02-29 16:36:53.949 900 TIP 443345 11378 6114990 2024-02-29 16:37:58.155 2024-02-29 16:37:58.155 3100 FEE 443633 10530 6114991 2024-02-29 16:37:58.155 2024-02-29 16:37:58.155 27900 TIP 443633 15367 6115025 2024-02-29 16:40:34.128 2024-02-29 16:40:34.128 1000 FEE 442964 20706 6115026 2024-02-29 16:40:34.128 2024-02-29 16:40:34.128 9000 TIP 442964 20163 6115029 2024-02-29 16:40:34.961 2024-02-29 16:40:34.961 1000 FEE 442964 15161 6115030 2024-02-29 16:40:34.961 2024-02-29 16:40:34.961 9000 TIP 442964 17237 6115075 2024-02-29 16:42:12.913 2024-02-29 16:42:12.913 3100 FEE 443814 18170 6115076 2024-02-29 16:42:12.913 2024-02-29 16:42:12.913 27900 TIP 443814 2431 6115086 2024-02-29 16:42:57.339 2024-02-29 16:42:57.339 0 FEE 443799 13361 6115105 2024-02-29 16:43:36.171 2024-02-29 16:43:36.171 1000 FEE 443611 1733 6115106 2024-02-29 16:43:36.171 2024-02-29 16:43:36.171 9000 TIP 443611 20663 6115125 2024-02-29 16:43:37.986 2024-02-29 16:43:37.986 1000 FEE 443611 21417 6115126 2024-02-29 16:43:37.986 2024-02-29 16:43:37.986 9000 TIP 443611 1180 6049742 2024-02-24 00:23:02.861 2024-02-24 00:23:02.861 1000 STREAM 141924 13198 6049787 2024-02-24 00:26:02.857 2024-02-24 00:26:02.857 1000 STREAM 141924 16808 6049794 2024-02-24 00:30:03.681 2024-02-24 00:30:03.681 1000 STREAM 141924 20981 6049795 2024-02-24 00:31:03.642 2024-02-24 00:31:03.642 1000 STREAM 141924 1094 6049797 2024-02-24 00:33:03.646 2024-02-24 00:33:03.646 1000 STREAM 141924 11760 6049798 2024-02-24 00:34:03.651 2024-02-24 00:34:03.651 1000 STREAM 141924 16942 6049938 2024-02-24 01:12:02.462 2024-02-24 01:12:02.462 1000 STREAM 141924 15271 6049954 2024-02-24 01:16:02.846 2024-02-24 01:16:02.846 1000 STREAM 141924 21218 6049958 2024-02-24 01:17:02.859 2024-02-24 01:17:02.859 1000 STREAM 141924 9349 6049975 2024-02-24 01:23:02.871 2024-02-24 01:23:02.871 1000 STREAM 141924 11698 6050025 2024-02-24 01:30:03.128 2024-02-24 01:30:03.128 1000 STREAM 141924 21441 6050034 2024-02-24 01:32:03.112 2024-02-24 01:32:03.112 1000 STREAM 141924 10094 6050038 2024-02-24 01:33:05.111 2024-02-24 01:33:05.111 1000 STREAM 141924 19929 6050049 2024-02-24 01:35:03.11 2024-02-24 01:35:03.11 1000 STREAM 141924 20563 6050062 2024-02-24 01:39:03.759 2024-02-24 01:39:03.759 1000 STREAM 141924 19837 6050063 2024-02-24 01:40:03.812 2024-02-24 01:40:03.812 1000 STREAM 141924 6164 6050068 2024-02-24 01:42:03.794 2024-02-24 01:42:03.794 1000 STREAM 141924 2963 6050069 2024-02-24 01:43:03.787 2024-02-24 01:43:03.787 1000 STREAM 141924 17162 6114585 2024-02-29 16:10:02.076 2024-02-29 16:10:02.076 1000 STREAM 141924 18817 6114608 2024-02-29 16:13:02.047 2024-02-29 16:13:02.047 1000 STREAM 141924 16706 6114623 2024-02-29 16:15:02.077 2024-02-29 16:15:02.077 1000 STREAM 141924 11164 6114767 2024-02-29 16:25:02.126 2024-02-29 16:25:02.126 1000 STREAM 141924 2010 6114820 2024-02-29 16:28:02.142 2024-02-29 16:28:02.142 1000 STREAM 141924 9242 6114864 2024-02-29 16:32:02.361 2024-02-29 16:32:02.361 1000 STREAM 141924 18774 6114918 2024-02-29 16:35:02.357 2024-02-29 16:35:02.357 1000 STREAM 141924 17411 6114931 2024-02-29 16:36:02.398 2024-02-29 16:36:02.398 1000 STREAM 141924 1044 6114994 2024-02-29 16:38:02.41 2024-02-29 16:38:02.41 1000 STREAM 141924 1617 6114998 2024-02-29 16:39:02.41 2024-02-29 16:39:02.41 1000 STREAM 141924 13249 6115044 2024-02-29 16:41:02.402 2024-02-29 16:41:02.402 1000 STREAM 141924 1738 6115330 2024-02-29 16:50:02.459 2024-02-29 16:50:02.459 1000 STREAM 141924 21281 6115412 2024-02-29 16:55:02.48 2024-02-29 16:55:02.48 1000 STREAM 141924 16753 6115523 2024-02-29 17:02:02.511 2024-02-29 17:02:02.511 1000 STREAM 141924 19531 6115632 2024-02-29 17:08:02.545 2024-02-29 17:08:02.545 1000 STREAM 141924 4633 6115748 2024-02-29 17:21:02.596 2024-02-29 17:21:02.596 1000 STREAM 141924 8841 6115797 2024-02-29 17:24:02.606 2024-02-29 17:24:02.606 1000 STREAM 141924 10549 6115817 2024-02-29 17:25:02.614 2024-02-29 17:25:02.614 1000 STREAM 141924 17519 6115825 2024-02-29 17:26:02.644 2024-02-29 17:26:02.644 1000 STREAM 141924 2431 6116397 2024-02-29 18:01:02.795 2024-02-29 18:01:02.795 1000 STREAM 141924 3439 6116401 2024-02-29 18:02:02.796 2024-02-29 18:02:02.796 1000 STREAM 141924 15045 6116402 2024-02-29 18:03:02.8 2024-02-29 18:03:02.8 1000 STREAM 141924 18473 6116404 2024-02-29 18:04:02.821 2024-02-29 18:04:02.821 1000 STREAM 141924 720 6116429 2024-02-29 18:05:02.828 2024-02-29 18:05:02.828 1000 STREAM 141924 763 6116461 2024-02-29 18:08:02.835 2024-02-29 18:08:02.835 1000 STREAM 141924 2460 6116483 2024-02-29 18:09:02.843 2024-02-29 18:09:02.843 1000 STREAM 141924 17455 6116522 2024-02-29 18:12:02.867 2024-02-29 18:12:02.867 1000 STREAM 141924 19864 6116569 2024-02-29 18:17:02.896 2024-02-29 18:17:02.896 1000 STREAM 141924 11153 6116600 2024-02-29 18:21:02.903 2024-02-29 18:21:02.903 1000 STREAM 141924 20152 6116611 2024-02-29 18:22:02.907 2024-02-29 18:22:02.907 1000 STREAM 141924 616 6116618 2024-02-29 18:23:02.905 2024-02-29 18:23:02.905 1000 STREAM 141924 1552 6116637 2024-02-29 18:26:02.931 2024-02-29 18:26:02.931 1000 STREAM 141924 960 6116655 2024-02-29 18:28:02.994 2024-02-29 18:28:02.994 1000 STREAM 141924 5538 6116671 2024-02-29 18:32:03.032 2024-02-29 18:32:03.032 1000 STREAM 141924 16876 6116768 2024-02-29 18:39:03.055 2024-02-29 18:39:03.055 1000 STREAM 141924 21416 6116928 2024-02-29 18:47:03.089 2024-02-29 18:47:03.089 1000 STREAM 141924 13216 6116988 2024-02-29 18:50:03.092 2024-02-29 18:50:03.092 1000 STREAM 141924 16724 6117033 2024-02-29 18:51:03.116 2024-02-29 18:51:03.116 1000 STREAM 141924 11942 6117144 2024-02-29 18:57:03.312 2024-02-29 18:57:03.312 1000 STREAM 141924 16809 6117534 2024-02-29 19:11:03.398 2024-02-29 19:11:03.398 1000 STREAM 141924 13174 6117568 2024-02-29 19:12:03.385 2024-02-29 19:12:03.385 1000 STREAM 141924 17722 6117680 2024-02-29 19:24:03.431 2024-02-29 19:24:03.431 1000 STREAM 141924 700 6117686 2024-02-29 19:25:03.446 2024-02-29 19:25:03.446 1000 STREAM 141924 1438 6049746 2024-02-24 00:23:25.802 2024-02-24 00:23:25.802 2100 FEE 436753 17682 6049747 2024-02-24 00:23:25.802 2024-02-24 00:23:25.802 18900 TIP 436753 9342 6049758 2024-02-24 00:23:43.103 2024-02-24 00:23:43.103 2100 FEE 436733 19103 6049759 2024-02-24 00:23:43.103 2024-02-24 00:23:43.103 18900 TIP 436733 16536 6049766 2024-02-24 00:24:19.338 2024-02-24 00:24:19.338 0 FEE 436774 11329 6049788 2024-02-24 00:26:23.519 2024-02-24 00:26:23.519 0 FEE 436774 20904 6049789 2024-02-24 00:26:46.293 2024-02-24 00:26:46.293 100000 FEE 436779 11491 6049799 2024-02-24 00:34:14.297 2024-02-24 00:34:14.297 100000 FEE 436780 14705 6049810 2024-02-24 00:37:13.394 2024-02-24 00:37:13.394 2100 FEE 436683 21422 6049811 2024-02-24 00:37:13.394 2024-02-24 00:37:13.394 18900 TIP 436683 618 6049822 2024-02-24 00:43:25.688 2024-02-24 00:43:25.688 2100 FEE 436720 732 6049823 2024-02-24 00:43:25.688 2024-02-24 00:43:25.688 18900 TIP 436720 21222 6049829 2024-02-24 00:44:24.471 2024-02-24 00:44:24.471 1000 FEE 436784 697 6049863 2024-02-24 00:51:51.79 2024-02-24 00:51:51.79 2100 FEE 436665 726 6049864 2024-02-24 00:51:51.79 2024-02-24 00:51:51.79 18900 TIP 436665 1124 6049867 2024-02-24 00:52:12.47 2024-02-24 00:52:12.47 2100 FEE 436611 14818 6049868 2024-02-24 00:52:12.47 2024-02-24 00:52:12.47 18900 TIP 436611 20430 6049873 2024-02-24 00:54:21.512 2024-02-24 00:54:21.512 2100 FEE 436753 649 6049764 2024-02-24 00:24:04.6 2024-02-24 00:24:04.6 1000 STREAM 141924 687 6049841 2024-02-24 00:47:04.793 2024-02-24 00:47:04.793 1000 STREAM 141924 19263 6049842 2024-02-24 00:48:04.821 2024-02-24 00:48:04.821 1000 STREAM 141924 1488 6049854 2024-02-24 00:51:04.834 2024-02-24 00:51:04.834 1000 STREAM 141924 2151 6049946 2024-02-24 01:14:03.035 2024-02-24 01:14:03.035 1000 STREAM 141924 9874 6114685 2024-02-29 16:19:50.537 2024-02-29 16:19:50.537 900 TIP 443528 18989 6114686 2024-02-29 16:19:50.709 2024-02-29 16:19:50.709 900 FEE 443528 20841 6114687 2024-02-29 16:19:50.709 2024-02-29 16:19:50.709 8100 TIP 443528 760 6114720 2024-02-29 16:22:46.281 2024-02-29 16:22:46.281 2100 FEE 443402 17184 6049812 2024-02-24 00:38:03.92 2024-02-24 00:38:03.92 1000 STREAM 141924 20015 6049820 2024-02-24 00:42:03.91 2024-02-24 00:42:03.91 1000 STREAM 141924 21207 6049821 2024-02-24 00:43:03.931 2024-02-24 00:43:03.931 1000 STREAM 141924 14169 6049881 2024-02-24 00:57:05.288 2024-02-24 00:57:05.288 1000 STREAM 141924 17693 6049884 2024-02-24 00:58:04.072 2024-02-24 00:58:04.072 1000 STREAM 141924 18836 6049893 2024-02-24 00:59:04.113 2024-02-24 00:59:04.113 1000 STREAM 141924 18139 6049906 2024-02-24 01:02:04.113 2024-02-24 01:02:04.113 1000 STREAM 141924 5499 6049918 2024-02-24 01:05:04.116 2024-02-24 01:05:04.116 1000 STREAM 141924 1784 6049923 2024-02-24 01:08:02.143 2024-02-24 01:08:02.143 1000 STREAM 141924 12169 6049927 2024-02-24 01:10:02.157 2024-02-24 01:10:02.157 1000 STREAM 141924 4314 6049968 2024-02-24 01:20:02.114 2024-02-24 01:20:02.114 1000 STREAM 141924 15617 6114721 2024-02-29 16:22:46.281 2024-02-29 16:22:46.281 18900 TIP 443402 18989 6114726 2024-02-29 16:23:46.915 2024-02-29 16:23:46.915 500 FEE 443779 1120 6114727 2024-02-29 16:23:46.915 2024-02-29 16:23:46.915 4500 TIP 443779 694 6114730 2024-02-29 16:24:21.919 2024-02-29 16:24:21.919 1000 FEE 443781 16214 6114732 2024-02-29 16:24:36.783 2024-02-29 16:24:36.783 2100 FEE 443545 18454 6114733 2024-02-29 16:24:36.783 2024-02-29 16:24:36.783 18900 TIP 443545 18372 6114758 2024-02-29 16:24:47.689 2024-02-29 16:24:47.689 2100 FEE 443399 16839 6114759 2024-02-29 16:24:47.689 2024-02-29 16:24:47.689 18900 TIP 443399 10013 6114772 2024-02-29 16:25:20.023 2024-02-29 16:25:20.023 0 FEE 404172 19458 6114776 2024-02-29 16:25:45.867 2024-02-29 16:25:45.867 100 FEE 443780 19527 6114777 2024-02-29 16:25:45.867 2024-02-29 16:25:45.867 900 TIP 443780 9332 6114792 2024-02-29 16:26:45.628 2024-02-29 16:26:45.628 1000 FEE 443788 19103 6114842 2024-02-29 16:29:54.777 2024-02-29 16:29:54.777 2100 FEE 443616 1272 6114843 2024-02-29 16:29:54.777 2024-02-29 16:29:54.777 18900 TIP 443616 13177 6114851 2024-02-29 16:30:27.03 2024-02-29 16:30:27.03 2100 FEE 443659 16309 6114852 2024-02-29 16:30:27.03 2024-02-29 16:30:27.03 18900 TIP 443659 17011 6114886 2024-02-29 16:34:09.549 2024-02-29 16:34:09.549 1000 FEE 443790 5171 6114887 2024-02-29 16:34:09.549 2024-02-29 16:34:09.549 9000 TIP 443790 7978 6114890 2024-02-29 16:34:10.863 2024-02-29 16:34:10.863 100 FEE 443694 2151 6114891 2024-02-29 16:34:10.863 2024-02-29 16:34:10.863 900 TIP 443694 19458 6114902 2024-02-29 16:34:13.596 2024-02-29 16:34:13.596 100 FEE 443694 20120 6114903 2024-02-29 16:34:13.596 2024-02-29 16:34:13.596 900 TIP 443694 1515 6114910 2024-02-29 16:34:16.316 2024-02-29 16:34:16.316 0 FEE 443781 18673 6114933 2024-02-29 16:36:30.015 2024-02-29 16:36:30.015 1000 FEE 443804 9833 6114948 2024-02-29 16:36:51.864 2024-02-29 16:36:51.864 100 FEE 443345 2256 6114949 2024-02-29 16:36:51.864 2024-02-29 16:36:51.864 900 TIP 443345 17227 6114952 2024-02-29 16:36:52.28 2024-02-29 16:36:52.28 100 FEE 443345 18819 6114953 2024-02-29 16:36:52.28 2024-02-29 16:36:52.28 900 TIP 443345 20439 6114966 2024-02-29 16:36:55.552 2024-02-29 16:36:55.552 100 FEE 443345 21627 6114967 2024-02-29 16:36:55.552 2024-02-29 16:36:55.552 900 TIP 443345 19512 6114986 2024-02-29 16:37:43.599 2024-02-29 16:37:43.599 300 FEE 441843 21233 6114987 2024-02-29 16:37:43.599 2024-02-29 16:37:43.599 2700 TIP 441843 21506 6115005 2024-02-29 16:39:21.139 2024-02-29 16:39:21.139 1000 FEE 443662 2123 6115006 2024-02-29 16:39:21.139 2024-02-29 16:39:21.139 9000 TIP 443662 18945 6115021 2024-02-29 16:40:33.217 2024-02-29 16:40:33.217 1000 FEE 442964 1046 6115022 2024-02-29 16:40:33.217 2024-02-29 16:40:33.217 9000 TIP 442964 21216 6115039 2024-02-29 16:40:39.02 2024-02-29 16:40:39.02 1000 FEE 442973 3417 6115040 2024-02-29 16:40:39.02 2024-02-29 16:40:39.02 9000 TIP 442973 10007 6115042 2024-02-29 16:40:59.085 2024-02-29 16:40:59.085 300 FEE 441760 10586 6115043 2024-02-29 16:40:59.085 2024-02-29 16:40:59.085 2700 TIP 441760 21166 6115063 2024-02-29 16:41:51.4 2024-02-29 16:41:51.4 800 FEE 443808 21503 6049819 2024-02-24 00:41:55.308 2024-02-24 00:41:55.308 1000 FEE 436783 19907 6049824 2024-02-24 00:43:47.084 2024-02-24 00:43:47.084 4200 FEE 436720 20500 6049825 2024-02-24 00:43:47.084 2024-02-24 00:43:47.084 37800 TIP 436720 17693 6049908 2024-02-24 01:03:37.439 2024-02-24 01:03:37.439 2100 FEE 436675 2367 6049909 2024-02-24 01:03:37.439 2024-02-24 01:03:37.439 18900 TIP 436675 20490 6049942 2024-02-24 01:13:39.208 2024-02-24 01:13:39.208 1000 FEE 409093 10352 6049943 2024-02-24 01:13:39.208 2024-02-24 01:13:39.208 9000 TIP 409093 647 6049947 2024-02-24 01:14:12.944 2024-02-24 01:14:12.944 2100 FEE 436722 20337 6049948 2024-02-24 01:14:12.944 2024-02-24 01:14:12.944 18900 TIP 436722 2681 6049964 2024-02-24 01:18:33.092 2024-02-24 01:18:33.092 1000 FEE 436800 4175 6049966 2024-02-24 01:19:29.918 2024-02-24 01:19:29.918 1000 FEE 436801 2513 6050006 2024-02-24 01:27:03.664 2024-02-24 01:27:03.664 1100 FEE 434324 2789 6050007 2024-02-24 01:27:03.664 2024-02-24 01:27:03.664 9900 TIP 434324 10270 6050026 2024-02-24 01:30:48.557 2024-02-24 01:30:48.557 10100 FEE 436800 5590 6050027 2024-02-24 01:30:48.557 2024-02-24 01:30:48.557 90900 TIP 436800 1472 6050041 2024-02-24 01:33:13.859 2024-02-24 01:33:13.859 5400 FEE 436093 2437 6050042 2024-02-24 01:33:13.859 2024-02-24 01:33:13.859 48600 TIP 436093 2674 6050050 2024-02-24 01:35:08.082 2024-02-24 01:35:08.082 100 FEE 436733 10554 6050051 2024-02-24 01:35:08.082 2024-02-24 01:35:08.082 900 TIP 436733 20470 6050057 2024-02-24 01:38:09.498 2024-02-24 01:38:09.498 1000 FEE 436819 4776 6050060 2024-02-24 01:38:22.843 2024-02-24 01:38:22.843 10000 FEE 436729 1046 6050061 2024-02-24 01:38:22.843 2024-02-24 01:38:22.843 90000 TIP 436729 20871 6050092 2024-02-24 01:48:09.439 2024-02-24 01:48:09.439 1000 FEE 436826 2513 6050103 2024-02-24 01:48:31.848 2024-02-24 01:48:31.848 2500 FEE 436809 10849 6050104 2024-02-24 01:48:31.848 2024-02-24 01:48:31.848 22500 TIP 436809 20201 6050119 2024-02-24 01:48:35.2 2024-02-24 01:48:35.2 2500 FEE 436768 19732 6050120 2024-02-24 01:48:35.2 2024-02-24 01:48:35.2 22500 TIP 436768 5195 6050121 2024-02-24 01:48:35.39 2024-02-24 01:48:35.39 2500 FEE 436768 19435 6050122 2024-02-24 01:48:35.39 2024-02-24 01:48:35.39 22500 TIP 436768 20218 6050141 2024-02-24 01:48:39.062 2024-02-24 01:48:39.062 2500 FEE 436694 21072 6050142 2024-02-24 01:48:39.062 2024-02-24 01:48:39.062 22500 TIP 436694 4415 6050147 2024-02-24 01:48:39.581 2024-02-24 01:48:39.581 2500 FEE 436694 6335 6050148 2024-02-24 01:48:39.581 2024-02-24 01:48:39.581 22500 TIP 436694 2431 6050187 2024-02-24 01:53:11.351 2024-02-24 01:53:11.351 1000 FEE 436823 826 6050188 2024-02-24 01:53:11.351 2024-02-24 01:53:11.351 9000 TIP 436823 19036 6050237 2024-02-24 02:02:03.17 2024-02-24 02:02:03.17 2100 FEE 436804 1454 6050238 2024-02-24 02:02:03.17 2024-02-24 02:02:03.17 18900 TIP 436804 10409 6050242 2024-02-24 02:03:25.906 2024-02-24 02:03:25.906 4200 FEE 436720 19500 6049838 2024-02-24 00:46:04.804 2024-02-24 00:46:04.804 1000 STREAM 141924 19346 6049843 2024-02-24 00:49:04.864 2024-02-24 00:49:04.864 1000 STREAM 141924 1577 6049852 2024-02-24 00:50:04.843 2024-02-24 00:50:04.843 1000 STREAM 141924 19193 6114794 2024-02-29 16:26:50.547 2024-02-29 16:26:50.547 14400 TIP 443774 2039 6114801 2024-02-29 16:27:09.818 2024-02-29 16:27:09.818 100000 FEE 443789 1465 6114818 2024-02-29 16:27:57.679 2024-02-29 16:27:57.679 10000 FEE 443790 17147 6114825 2024-02-29 16:28:24.578 2024-02-29 16:28:24.578 2100 FEE 443767 9863 6114826 2024-02-29 16:28:24.578 2024-02-29 16:28:24.578 18900 TIP 443767 18269 6114830 2024-02-29 16:28:36.355 2024-02-29 16:28:36.355 1000 FEE 443792 18378 6114832 2024-02-29 16:29:08.279 2024-02-29 16:29:08.279 6300 FEE 443683 20901 6114833 2024-02-29 16:29:08.279 2024-02-29 16:29:08.279 56700 TIP 443683 17172 6114844 2024-02-29 16:30:02.905 2024-02-29 16:30:02.905 800 FEE 443734 1620 6114845 2024-02-29 16:30:02.905 2024-02-29 16:30:02.905 7200 TIP 443734 704 6114850 2024-02-29 16:30:22.943 2024-02-29 16:30:22.943 100000 FEE 443794 19809 6114854 2024-02-29 16:30:59.431 2024-02-29 16:30:59.431 0 FEE 443788 18816 6114873 2024-02-29 16:33:05.856 2024-02-29 16:33:05.856 2100 FEE 443372 21578 6114874 2024-02-29 16:33:05.856 2024-02-29 16:33:05.856 18900 TIP 443372 7891 6114875 2024-02-29 16:33:06.551 2024-02-29 16:33:06.551 0 FEE 443781 999 6114923 2024-02-29 16:35:16.8 2024-02-29 16:35:16.8 100000 FEE 443802 9200 6049870 2024-02-24 00:53:04.117 2024-02-24 00:53:04.117 1000 STREAM 141924 20080 6049872 2024-02-24 00:54:04.097 2024-02-24 00:54:04.097 1000 STREAM 141924 21157 6049875 2024-02-24 00:55:04.102 2024-02-24 00:55:04.102 1000 STREAM 141924 7674 6049878 2024-02-24 00:56:04.111 2024-02-24 00:56:04.111 1000 STREAM 141924 1316 6114797 2024-02-29 16:26:57.325 2024-02-29 16:26:57.325 15300 TIP 443758 10849 6114808 2024-02-29 16:27:24.075 2024-02-29 16:27:24.075 2100 FEE 442722 20782 6114809 2024-02-29 16:27:24.075 2024-02-29 16:27:24.075 18900 TIP 442722 1802 6114819 2024-02-29 16:28:01.864 2024-02-29 16:28:01.864 0 FEE 443788 7986 6114829 2024-02-29 16:28:36.07 2024-02-29 16:28:36.07 1000 FEE 443791 20987 6114838 2024-02-29 16:29:20.711 2024-02-29 16:29:20.711 3100 FEE 443707 3392 6114839 2024-02-29 16:29:20.711 2024-02-29 16:29:20.711 27900 TIP 443707 16649 6114840 2024-02-29 16:29:22.166 2024-02-29 16:29:22.166 0 FEE 443779 2576 6114841 2024-02-29 16:29:49.124 2024-02-29 16:29:49.124 0 FEE 443781 6136 6114847 2024-02-29 16:30:14.057 2024-02-29 16:30:14.057 6300 FEE 443761 2722 6114848 2024-02-29 16:30:14.057 2024-02-29 16:30:14.057 56700 TIP 443761 19335 6114862 2024-02-29 16:31:53.335 2024-02-29 16:31:53.335 1000 FEE 443798 6164 6114898 2024-02-29 16:34:12.422 2024-02-29 16:34:12.422 100 FEE 443694 977 6114899 2024-02-29 16:34:12.422 2024-02-29 16:34:12.422 900 TIP 443694 14376 6114928 2024-02-29 16:35:31.842 2024-02-29 16:35:31.842 1000 FEE 443803 16942 6114970 2024-02-29 16:36:57.566 2024-02-29 16:36:57.566 100 FEE 443345 11678 6114971 2024-02-29 16:36:57.566 2024-02-29 16:36:57.566 900 TIP 443345 18945 6114974 2024-02-29 16:36:58.71 2024-02-29 16:36:58.71 2100 FEE 443528 15159 6114975 2024-02-29 16:36:58.71 2024-02-29 16:36:58.71 18900 TIP 443528 6229 6114978 2024-02-29 16:36:59.353 2024-02-29 16:36:59.353 100 FEE 443345 805 6114979 2024-02-29 16:36:59.353 2024-02-29 16:36:59.353 900 TIP 443345 18525 6114984 2024-02-29 16:37:36.863 2024-02-29 16:37:36.863 100 FEE 443796 21263 6114985 2024-02-29 16:37:36.863 2024-02-29 16:37:36.863 900 TIP 443796 20588 6115014 2024-02-29 16:40:18.152 2024-02-29 16:40:18.152 300 FEE 441752 20681 6115015 2024-02-29 16:40:18.152 2024-02-29 16:40:18.152 2700 TIP 441752 9276 6115048 2024-02-29 16:41:22.972 2024-02-29 16:41:22.972 1000 FEE 443778 21057 6115049 2024-02-29 16:41:22.972 2024-02-29 16:41:22.972 9000 TIP 443778 5757 6115053 2024-02-29 16:41:26.085 2024-02-29 16:41:26.085 500 FEE 443811 19929 6115054 2024-02-29 16:41:26.085 2024-02-29 16:41:26.085 4500 TIP 443811 6717 6115067 2024-02-29 16:41:51.763 2024-02-29 16:41:51.763 800 FEE 443808 11760 6115068 2024-02-29 16:41:51.763 2024-02-29 16:41:51.763 7200 TIP 443808 20781 6115095 2024-02-29 16:43:15.365 2024-02-29 16:43:15.365 2100 FEE 443794 14015 6115096 2024-02-29 16:43:15.365 2024-02-29 16:43:15.365 18900 TIP 443794 21248 6115100 2024-02-29 16:43:35.341 2024-02-29 16:43:35.341 1000 FEE 443821 1488 6115101 2024-02-29 16:43:35.907 2024-02-29 16:43:35.907 1000 FEE 443611 21145 6115102 2024-02-29 16:43:35.907 2024-02-29 16:43:35.907 9000 TIP 443611 5708 6115154 2024-02-29 16:45:02.842 2024-02-29 16:45:02.842 5000 FEE 443809 21275 6115155 2024-02-29 16:45:02.842 2024-02-29 16:45:02.842 45000 TIP 443809 5806 6115172 2024-02-29 16:45:23.919 2024-02-29 16:45:23.919 6900 FEE 443799 16942 6115173 2024-02-29 16:45:23.919 2024-02-29 16:45:23.919 62100 TIP 443799 18309 6115182 2024-02-29 16:45:24.695 2024-02-29 16:45:24.695 6900 FEE 443799 20861 6115183 2024-02-29 16:45:24.695 2024-02-29 16:45:24.695 62100 TIP 443799 2652 6115196 2024-02-29 16:45:25.729 2024-02-29 16:45:25.729 6900 FEE 443799 14037 6115197 2024-02-29 16:45:25.729 2024-02-29 16:45:25.729 62100 TIP 443799 4313 6115204 2024-02-29 16:45:27.464 2024-02-29 16:45:27.464 20700 FEE 443799 16387 6115205 2024-02-29 16:45:27.464 2024-02-29 16:45:27.464 186300 TIP 443799 11164 6115213 2024-02-29 16:45:33.491 2024-02-29 16:45:33.491 1700 FEE 443755 15243 6115214 2024-02-29 16:45:33.491 2024-02-29 16:45:33.491 15300 TIP 443755 16447 6115219 2024-02-29 16:45:37.34 2024-02-29 16:45:37.34 6900 FEE 443799 13133 6115220 2024-02-29 16:45:37.34 2024-02-29 16:45:37.34 62100 TIP 443799 18664 6115223 2024-02-29 16:45:37.672 2024-02-29 16:45:37.672 6900 FEE 443799 17212 6115224 2024-02-29 16:45:37.672 2024-02-29 16:45:37.672 62100 TIP 443799 986 6115229 2024-02-29 16:45:38.092 2024-02-29 16:45:38.092 6900 FEE 443799 21427 6115230 2024-02-29 16:45:38.092 2024-02-29 16:45:38.092 62100 TIP 443799 951 6115233 2024-02-29 16:45:38.345 2024-02-29 16:45:38.345 6900 FEE 443799 7772 6115234 2024-02-29 16:45:38.345 2024-02-29 16:45:38.345 62100 TIP 443799 9261 6115235 2024-02-29 16:45:38.44 2024-02-29 16:45:38.44 6900 FEE 443799 1515 6115236 2024-02-29 16:45:38.44 2024-02-29 16:45:38.44 62100 TIP 443799 636 6115251 2024-02-29 16:46:13.991 2024-02-29 16:46:13.991 2000 FEE 442003 9367 6115252 2024-02-29 16:46:13.991 2024-02-29 16:46:13.991 18000 TIP 442003 20337 6115253 2024-02-29 16:46:14.489 2024-02-29 16:46:14.489 2000 FEE 442003 20624 6115254 2024-02-29 16:46:14.489 2024-02-29 16:46:14.489 18000 TIP 442003 16351 6115255 2024-02-29 16:46:26.644 2024-02-29 16:46:26.644 1000 FEE 443830 9246 6115266 2024-02-29 16:46:31.196 2024-02-29 16:46:31.196 6900 FEE 443799 21457 6115267 2024-02-29 16:46:31.196 2024-02-29 16:46:31.196 62100 TIP 443799 21042 6115275 2024-02-29 16:47:04.469 2024-02-29 16:47:04.469 0 FEE 443830 12516 6115289 2024-02-29 16:48:34.449 2024-02-29 16:48:34.449 1000 FEE 443834 19773 6115298 2024-02-29 16:48:53.855 2024-02-29 16:48:53.855 1000 FEE 443835 1130 6115307 2024-02-29 16:49:39.529 2024-02-29 16:49:39.529 900 FEE 443531 21072 6115308 2024-02-29 16:49:39.529 2024-02-29 16:49:39.529 8100 TIP 443531 18072 6115321 2024-02-29 16:49:52.768 2024-02-29 16:49:52.768 100 FEE 443502 2016 6115322 2024-02-29 16:49:52.768 2024-02-29 16:49:52.768 900 TIP 443502 6717 6115337 2024-02-29 16:50:06.134 2024-02-29 16:50:06.134 2000 FEE 443752 624 6115338 2024-02-29 16:50:06.134 2024-02-29 16:50:06.134 18000 TIP 443752 21061 6115374 2024-02-29 16:51:59.18 2024-02-29 16:51:59.18 900 FEE 443572 683 6115375 2024-02-29 16:51:59.18 2024-02-29 16:51:59.18 8100 TIP 443572 3478 6115388 2024-02-29 16:52:30.073 2024-02-29 16:52:30.073 2100 FEE 443830 1814 6115389 2024-02-29 16:52:30.073 2024-02-29 16:52:30.073 18900 TIP 443830 18543 6115392 2024-02-29 16:52:35.335 2024-02-29 16:52:35.335 2100 FEE 443830 16948 6115393 2024-02-29 16:52:35.335 2024-02-29 16:52:35.335 18900 TIP 443830 15351 6115402 2024-02-29 16:53:23.302 2024-02-29 16:53:23.302 1000 FEE 443583 11967 6115403 2024-02-29 16:53:23.302 2024-02-29 16:53:23.302 9000 TIP 443583 2326 6115462 2024-02-29 16:56:32.843 2024-02-29 16:56:32.843 500 FEE 443617 5128 6115463 2024-02-29 16:56:32.843 2024-02-29 16:56:32.843 4500 TIP 443617 4014 6115466 2024-02-29 16:56:34.161 2024-02-29 16:56:34.161 5700 FEE 443842 2748 6115467 2024-02-29 16:56:34.161 2024-02-29 16:56:34.161 51300 TIP 443842 19281 6115470 2024-02-29 16:56:43.774 2024-02-29 16:56:43.774 5700 FEE 443795 5195 6115471 2024-02-29 16:56:43.774 2024-02-29 16:56:43.774 51300 TIP 443795 1729 6115473 2024-02-29 16:57:12.335 2024-02-29 16:57:12.335 1000 FEE 443848 12516 6115490 2024-02-29 16:58:52.51 2024-02-29 16:58:52.51 1000 FEE 443854 17218 6115505 2024-02-29 16:59:34.588 2024-02-29 16:59:34.588 1000 FEE 443856 16042 6115506 2024-02-29 16:59:47.119 2024-02-29 16:59:47.119 700 FEE 443099 21391 6115507 2024-02-29 16:59:47.119 2024-02-29 16:59:47.119 6300 TIP 443099 763 6115524 2024-02-29 17:02:19.154 2024-02-29 17:02:19.154 1000 FEE 443862 18751 6115525 2024-02-29 17:02:24.509 2024-02-29 17:02:24.509 1000 FEE 443863 2741 6115537 2024-02-29 17:03:26.092 2024-02-29 17:03:26.092 1000 FEE 443862 19471 6115538 2024-02-29 17:03:26.092 2024-02-29 17:03:26.092 9000 TIP 443862 18727 6115541 2024-02-29 17:03:39.344 2024-02-29 17:03:39.344 1000 FEE 443867 21600 6115542 2024-02-29 17:03:39.344 2024-02-29 17:03:39.344 9000 TIP 443867 20306 6115544 2024-02-29 17:03:45.304 2024-02-29 17:03:45.304 1000 FEE 443869 15463 6115549 2024-02-29 17:03:52.832 2024-02-29 17:03:52.832 6900 FEE 443861 9655 6049874 2024-02-24 00:54:21.512 2024-02-24 00:54:21.512 18900 TIP 436753 1472 6049885 2024-02-24 00:58:05.375 2024-02-24 00:58:05.375 1000 FEE 436793 15282 6049892 2024-02-24 00:58:37.568 2024-02-24 00:58:37.568 1000 FEE 436794 8380 6049894 2024-02-24 01:00:03.793 2024-02-24 01:00:03.793 1000 FEE 436795 2203 6049896 2024-02-24 01:00:13.199 2024-02-24 01:00:13.199 2100 FEE 436733 5809 6049897 2024-02-24 01:00:13.199 2024-02-24 01:00:13.199 18900 TIP 436733 18557 6049925 2024-02-24 01:09:18.696 2024-02-24 01:09:18.696 2100 FEE 435808 11073 6049926 2024-02-24 01:09:18.696 2024-02-24 01:09:18.696 18900 TIP 435808 766 6049936 2024-02-24 01:11:20.956 2024-02-24 01:11:20.956 1000 FEE 432943 20840 6049937 2024-02-24 01:11:20.956 2024-02-24 01:11:20.956 9000 TIP 432943 854 6049970 2024-02-24 01:20:43.877 2024-02-24 01:20:43.877 1000 FEE 436804 900 6049985 2024-02-24 01:26:40.869 2024-02-24 01:26:40.869 1100 FEE 436753 4076 6049986 2024-02-24 01:26:40.869 2024-02-24 01:26:40.869 9900 TIP 436753 690 6049991 2024-02-24 01:26:41.394 2024-02-24 01:26:41.394 1100 FEE 436753 20327 6049992 2024-02-24 01:26:41.394 2024-02-24 01:26:41.394 9900 TIP 436753 20201 6049999 2024-02-24 01:26:54.705 2024-02-24 01:26:54.705 1000 FEE 436808 10484 6050023 2024-02-24 01:29:25.398 2024-02-24 01:29:25.398 1000 FEE 432839 13042 6050024 2024-02-24 01:29:25.398 2024-02-24 01:29:25.398 9000 TIP 432839 18235 6050036 2024-02-24 01:32:56.008 2024-02-24 01:32:56.008 100 FEE 436197 16653 6050037 2024-02-24 01:32:56.008 2024-02-24 01:32:56.008 900 TIP 436197 18336 6050065 2024-02-24 01:40:46.453 2024-02-24 01:40:46.453 1000 FEE 436821 5978 6050067 2024-02-24 01:41:31.235 2024-02-24 01:41:31.235 1000 FEE 436822 13348 6050081 2024-02-24 01:44:22.377 2024-02-24 01:44:22.377 2700 FEE 436766 18114 6050082 2024-02-24 01:44:22.377 2024-02-24 01:44:22.377 24300 TIP 436766 5306 6050085 2024-02-24 01:45:03.452 2024-02-24 01:45:03.452 10000 FEE 436556 14213 6050086 2024-02-24 01:45:03.452 2024-02-24 01:45:03.452 90000 TIP 436556 20036 6050097 2024-02-24 01:48:31.104 2024-02-24 01:48:31.104 2500 FEE 436809 17526 6050098 2024-02-24 01:48:31.104 2024-02-24 01:48:31.104 22500 TIP 436809 20023 6050129 2024-02-24 01:48:37.962 2024-02-24 01:48:37.962 2500 FEE 436694 15488 6050130 2024-02-24 01:48:37.962 2024-02-24 01:48:37.962 22500 TIP 436694 2780 6050155 2024-02-24 01:48:41.906 2024-02-24 01:48:41.906 2500 FEE 436782 9177 6050156 2024-02-24 01:48:41.906 2024-02-24 01:48:41.906 22500 TIP 436782 15488 6050225 2024-02-24 01:58:18.337 2024-02-24 01:58:18.337 100 FEE 436822 18068 6050226 2024-02-24 01:58:18.337 2024-02-24 01:58:18.337 900 TIP 436822 19906 6050230 2024-02-24 01:59:19.773 2024-02-24 01:59:19.773 100 FEE 436527 12139 6050231 2024-02-24 01:59:19.773 2024-02-24 01:59:19.773 900 TIP 436527 1352 6050234 2024-02-24 02:00:42.236 2024-02-24 02:00:42.236 0 FEE 436832 12268 6050236 2024-02-24 02:01:39.033 2024-02-24 02:01:39.033 0 FEE 436832 20218 6050267 2024-02-24 02:08:44.451 2024-02-24 02:08:44.451 10000 FEE 436750 19976 6050268 2024-02-24 02:08:44.451 2024-02-24 02:08:44.451 90000 TIP 436750 2620 6050299 2024-02-24 02:16:02.426 2024-02-24 02:16:02.426 1000 FEE 436778 21138 6050300 2024-02-24 02:16:02.426 2024-02-24 02:16:02.426 9000 TIP 436778 2829 6050331 2024-02-24 02:23:43.047 2024-02-24 02:23:43.047 400 FEE 436707 2444 6050332 2024-02-24 02:23:43.047 2024-02-24 02:23:43.047 3600 TIP 436707 20218 6050336 2024-02-24 02:24:55.529 2024-02-24 02:24:55.529 3000 FEE 435847 21019 6050337 2024-02-24 02:24:55.529 2024-02-24 02:24:55.529 27000 TIP 435847 19839 6050347 2024-02-24 02:27:12.446 2024-02-24 02:27:12.446 1000 FEE 436850 21453 6050366 2024-02-24 02:32:20.546 2024-02-24 02:32:20.546 1000 FEE 436854 10698 6050374 2024-02-24 02:34:41.234 2024-02-24 02:34:41.234 10000 FEE 436856 738 6050379 2024-02-24 02:36:51.783 2024-02-24 02:36:51.783 2100 FEE 436753 8870 6050380 2024-02-24 02:36:51.783 2024-02-24 02:36:51.783 18900 TIP 436753 16717 6050403 2024-02-24 02:41:38.655 2024-02-24 02:41:38.655 0 FEE 436859 17217 6050407 2024-02-24 02:42:31.928 2024-02-24 02:42:31.928 9000 FEE 436850 19796 6050408 2024-02-24 02:42:31.928 2024-02-24 02:42:31.928 81000 TIP 436850 18460 6050423 2024-02-24 02:46:34.932 2024-02-24 02:46:34.932 9000 FEE 436792 19572 6050424 2024-02-24 02:46:34.932 2024-02-24 02:46:34.932 81000 TIP 436792 3504 6050453 2024-02-24 02:47:46.937 2024-02-24 02:47:46.937 100 FEE 436793 16177 6050454 2024-02-24 02:47:46.937 2024-02-24 02:47:46.937 900 TIP 436793 20744 6050457 2024-02-24 02:47:47.652 2024-02-24 02:47:47.652 100 FEE 436786 3440 6050458 2024-02-24 02:47:47.652 2024-02-24 02:47:47.652 900 TIP 436786 763 6050471 2024-02-24 02:48:04.054 2024-02-24 02:48:04.054 900 FEE 436823 14545 6050472 2024-02-24 02:48:04.054 2024-02-24 02:48:04.054 8100 TIP 436823 6148 6050476 2024-02-24 02:48:37.723 2024-02-24 02:48:37.723 9000 FEE 436827 19469 6050477 2024-02-24 02:48:37.723 2024-02-24 02:48:37.723 81000 TIP 436827 992 6050494 2024-02-24 02:50:13.036 2024-02-24 02:50:13.036 9000 FEE 436752 19030 6050495 2024-02-24 02:50:13.036 2024-02-24 02:50:13.036 81000 TIP 436752 20439 6050555 2024-02-24 03:09:04.635 2024-02-24 03:09:04.635 0 FEE 436870 16789 6050561 2024-02-24 03:10:43.668 2024-02-24 03:10:43.668 1000 FEE 436872 5828 6050590 2024-02-24 03:20:21.283 2024-02-24 03:20:21.283 4200 FEE 436752 3342 6050591 2024-02-24 03:20:21.283 2024-02-24 03:20:21.283 37800 TIP 436752 20776 6050606 2024-02-24 03:23:14.188 2024-02-24 03:23:14.188 1000 FEE 436869 17392 6050607 2024-02-24 03:23:14.188 2024-02-24 03:23:14.188 9000 TIP 436869 15337 6050625 2024-02-24 03:29:58.387 2024-02-24 03:29:58.387 2100 FEE 436799 20973 6050626 2024-02-24 03:29:58.387 2024-02-24 03:29:58.387 18900 TIP 436799 18306 6050632 2024-02-24 03:33:59.762 2024-02-24 03:33:59.762 1000 FEE 436883 19906 6050637 2024-02-24 03:35:11.36 2024-02-24 03:35:11.36 1000 POLL 436759 10934 6050650 2024-02-24 03:42:48.288 2024-02-24 03:42:48.288 0 FEE 436884 6360 6050673 2024-02-24 03:50:14.963 2024-02-24 03:50:14.963 1000 FEE 436888 1800 6050674 2024-02-24 03:50:55.378 2024-02-24 03:50:55.378 1000 FEE 436889 18124 6050707 2024-02-24 03:54:51.828 2024-02-24 03:54:51.828 8300 FEE 436773 21493 6050708 2024-02-24 03:54:51.828 2024-02-24 03:54:51.828 74700 TIP 436773 733 6050738 2024-02-24 04:01:12.884 2024-02-24 04:01:12.884 1000 FEE 436889 19471 6050739 2024-02-24 04:01:12.884 2024-02-24 04:01:12.884 9000 TIP 436889 4487 6050740 2024-02-24 04:01:16.382 2024-02-24 04:01:16.382 2100 FEE 436880 1611 6050741 2024-02-24 04:01:16.382 2024-02-24 04:01:16.382 18900 TIP 436880 756 6050747 2024-02-24 04:01:48.06 2024-02-24 04:01:48.06 2100 FEE 436743 3729 6050748 2024-02-24 04:01:48.06 2024-02-24 04:01:48.06 18900 TIP 436743 8954 6050750 2024-02-24 04:02:06.069 2024-02-24 04:02:06.069 2100 FEE 436716 21148 6050751 2024-02-24 04:02:06.069 2024-02-24 04:02:06.069 18900 TIP 436716 17797 6050752 2024-02-24 04:02:21.207 2024-02-24 04:02:21.207 2100 FEE 436699 2367 6049928 2024-02-24 01:11:03.035 2024-02-24 01:11:03.035 1000 STREAM 141924 620 6049939 2024-02-24 01:13:03.023 2024-02-24 01:13:03.023 1000 STREAM 141924 6688 6114883 2024-02-29 16:33:46.167 2024-02-29 16:33:46.167 2700 TIP 441843 18177 6114888 2024-02-29 16:34:10.438 2024-02-29 16:34:10.438 100 FEE 443694 766 6114889 2024-02-29 16:34:10.438 2024-02-29 16:34:10.438 900 TIP 443694 18717 6114894 2024-02-29 16:34:12.1 2024-02-29 16:34:12.1 100 FEE 443694 4313 6114895 2024-02-29 16:34:12.1 2024-02-29 16:34:12.1 900 TIP 443694 1959 6114904 2024-02-29 16:34:13.791 2024-02-29 16:34:13.791 100 FEE 443694 18511 6114905 2024-02-29 16:34:13.791 2024-02-29 16:34:13.791 900 TIP 443694 16667 6114913 2024-02-29 16:34:33.838 2024-02-29 16:34:33.838 0 FEE 443799 18068 6114916 2024-02-29 16:34:52.895 2024-02-29 16:34:52.895 2100 FEE 443723 3411 6114917 2024-02-29 16:34:52.895 2024-02-29 16:34:52.895 18900 TIP 443723 1245 6114936 2024-02-29 16:36:49.757 2024-02-29 16:36:49.757 100 FEE 443345 18830 6114937 2024-02-29 16:36:49.757 2024-02-29 16:36:49.757 900 TIP 443345 12245 6114938 2024-02-29 16:36:49.933 2024-02-29 16:36:49.933 100 FEE 443345 19105 6114939 2024-02-29 16:36:49.933 2024-02-29 16:36:49.933 900 TIP 443345 13767 6114958 2024-02-29 16:36:53.325 2024-02-29 16:36:53.325 100 FEE 443345 4459 6114959 2024-02-29 16:36:53.325 2024-02-29 16:36:53.325 900 TIP 443345 18309 6114964 2024-02-29 16:36:55.285 2024-02-29 16:36:55.285 100 FEE 443345 21136 6114965 2024-02-29 16:36:55.285 2024-02-29 16:36:55.285 900 TIP 443345 17800 6114992 2024-02-29 16:37:59.396 2024-02-29 16:37:59.396 27900 FEE 443633 1738 6114993 2024-02-29 16:37:59.396 2024-02-29 16:37:59.396 251100 TIP 443633 15491 6115016 2024-02-29 16:40:18.799 2024-02-29 16:40:18.799 300 FEE 441752 3304 6115017 2024-02-29 16:40:18.799 2024-02-29 16:40:18.799 2700 TIP 441752 8074 6115027 2024-02-29 16:40:34.572 2024-02-29 16:40:34.572 1000 FEE 442964 12768 6115028 2024-02-29 16:40:34.572 2024-02-29 16:40:34.572 9000 TIP 442964 19735 6115059 2024-02-29 16:41:46.048 2024-02-29 16:41:46.048 1700 FEE 443812 2075 6115060 2024-02-29 16:41:46.048 2024-02-29 16:41:46.048 15300 TIP 443812 21292 6115073 2024-02-29 16:42:06.567 2024-02-29 16:42:06.567 1000 FEE 443695 14037 6115074 2024-02-29 16:42:06.567 2024-02-29 16:42:06.567 9000 TIP 443695 698 6115079 2024-02-29 16:42:39.237 2024-02-29 16:42:39.237 900 FEE 443745 19286 6115080 2024-02-29 16:42:39.237 2024-02-29 16:42:39.237 8100 TIP 443745 11678 6115123 2024-02-29 16:43:37.792 2024-02-29 16:43:37.792 1000 FEE 443611 14037 6115124 2024-02-29 16:43:37.792 2024-02-29 16:43:37.792 9000 TIP 443611 9758 6115133 2024-02-29 16:43:41.923 2024-02-29 16:43:41.923 1000 FEE 443818 12291 6115134 2024-02-29 16:43:41.923 2024-02-29 16:43:41.923 9000 TIP 443818 12268 6115170 2024-02-29 16:45:23.743 2024-02-29 16:45:23.743 6900 FEE 443799 4062 6115171 2024-02-29 16:45:23.743 2024-02-29 16:45:23.743 62100 TIP 443799 20090 6115260 2024-02-29 16:46:30.479 2024-02-29 16:46:30.479 6900 FEE 443799 21619 6115261 2024-02-29 16:46:30.479 2024-02-29 16:46:30.479 62100 TIP 443799 6765 6115280 2024-02-29 16:47:25.859 2024-02-29 16:47:25.859 7700 FEE 443799 21514 6115281 2024-02-29 16:47:25.859 2024-02-29 16:47:25.859 69300 TIP 443799 3706 6115286 2024-02-29 16:48:11.244 2024-02-29 16:48:11.244 17000 FEE 443833 2309 6115303 2024-02-29 16:48:56.516 2024-02-29 16:48:56.516 10000 FEE 443836 1620 6115309 2024-02-29 16:49:48.261 2024-02-29 16:49:48.261 100 FEE 443495 2329 6115310 2024-02-29 16:49:48.261 2024-02-29 16:49:48.261 900 TIP 443495 15196 6115313 2024-02-29 16:49:49.885 2024-02-29 16:49:49.885 100 FEE 443522 21090 6115314 2024-02-29 16:49:49.885 2024-02-29 16:49:49.885 900 TIP 443522 9427 6115319 2024-02-29 16:49:50.847 2024-02-29 16:49:50.847 900 FEE 443508 780 6115320 2024-02-29 16:49:50.847 2024-02-29 16:49:50.847 8100 TIP 443508 18310 6115327 2024-02-29 16:49:53.668 2024-02-29 16:49:53.668 900 FEE 443499 4074 6115328 2024-02-29 16:49:53.668 2024-02-29 16:49:53.668 8100 TIP 443499 9261 6115339 2024-02-29 16:50:06.343 2024-02-29 16:50:06.343 2000 FEE 443752 16177 6115340 2024-02-29 16:50:06.343 2024-02-29 16:50:06.343 18000 TIP 443752 1307 6115351 2024-02-29 16:50:33.207 2024-02-29 16:50:33.207 900 FEE 443450 1173 6115352 2024-02-29 16:50:33.207 2024-02-29 16:50:33.207 8100 TIP 443450 14267 6115367 2024-02-29 16:51:25.81 2024-02-29 16:51:25.81 500 FEE 443683 5578 6115368 2024-02-29 16:51:25.81 2024-02-29 16:51:25.81 4500 TIP 443683 18658 6115409 2024-02-29 16:54:05.817 2024-02-29 16:54:05.817 2100 FEE 443802 16747 6115410 2024-02-29 16:54:05.817 2024-02-29 16:54:05.817 18900 TIP 443802 1213 6115435 2024-02-29 16:56:03.471 2024-02-29 16:56:03.471 10100 FEE 443583 21369 6115436 2024-02-29 16:56:03.471 2024-02-29 16:56:03.471 90900 TIP 443583 19394 6115444 2024-02-29 16:56:29.684 2024-02-29 16:56:29.684 500 FEE 443627 19303 6115445 2024-02-29 16:56:29.684 2024-02-29 16:56:29.684 4500 TIP 443627 19446 6115450 2024-02-29 16:56:30.472 2024-02-29 16:56:30.472 100 FEE 443799 21389 6115451 2024-02-29 16:56:30.472 2024-02-29 16:56:30.472 900 TIP 443799 9167 6115458 2024-02-29 16:56:32.365 2024-02-29 16:56:32.365 1000 FEE 443617 13767 6115459 2024-02-29 16:56:32.365 2024-02-29 16:56:32.365 9000 TIP 443617 20597 6115475 2024-02-29 16:57:31.051 2024-02-29 16:57:31.051 100 FEE 443840 14295 6115476 2024-02-29 16:57:31.051 2024-02-29 16:57:31.051 900 TIP 443840 16571 6115484 2024-02-29 16:57:51.103 2024-02-29 16:57:51.103 1000 FEE 443851 2309 6115491 2024-02-29 16:59:02.484 2024-02-29 16:59:02.484 500 FEE 443840 18472 6115492 2024-02-29 16:59:02.484 2024-02-29 16:59:02.484 4500 TIP 443840 18101 6115529 2024-02-29 17:03:24.642 2024-02-29 17:03:24.642 1000 FEE 443862 16350 6115530 2024-02-29 17:03:24.642 2024-02-29 17:03:24.642 9000 TIP 443862 700 6115555 2024-02-29 17:03:53.286 2024-02-29 17:03:53.286 6900 FEE 443861 1273 6115556 2024-02-29 17:03:53.286 2024-02-29 17:03:53.286 62100 TIP 443861 19852 6115571 2024-02-29 17:04:00.778 2024-02-29 17:04:00.778 6900 FEE 443839 12606 6115572 2024-02-29 17:04:00.778 2024-02-29 17:04:00.778 62100 TIP 443839 1038 6115581 2024-02-29 17:04:44.121 2024-02-29 17:04:44.121 900 FEE 443869 19996 6115582 2024-02-29 17:04:44.121 2024-02-29 17:04:44.121 8100 TIP 443869 20023 6115585 2024-02-29 17:04:46.9 2024-02-29 17:04:46.9 100 FEE 443864 10668 6115586 2024-02-29 17:04:46.9 2024-02-29 17:04:46.9 900 TIP 443864 19770 6115597 2024-02-29 17:05:32.096 2024-02-29 17:05:32.096 5700 FEE 443866 9290 6115598 2024-02-29 17:05:32.096 2024-02-29 17:05:32.096 51300 TIP 443866 16351 6115657 2024-02-29 17:11:36.151 2024-02-29 17:11:36.151 1000 FEE 443876 18274 6115663 2024-02-29 17:12:30.679 2024-02-29 17:12:30.679 1000 FEE 443877 17693 6115678 2024-02-29 17:14:42.07 2024-02-29 17:14:42.07 1000 FEE 443884 10283 6115689 2024-02-29 17:15:56.973 2024-02-29 17:15:56.973 1000 FEE 443886 20129 6115690 2024-02-29 17:16:01.727 2024-02-29 17:16:01.727 0 FEE 443881 18174 6115695 2024-02-29 17:16:51.201 2024-02-29 17:16:51.201 2100 FEE 443857 16879 6115696 2024-02-29 17:16:51.201 2024-02-29 17:16:51.201 18900 TIP 443857 13843 6115711 2024-02-29 17:16:57.967 2024-02-29 17:16:57.967 200 FEE 443878 16808 6115712 2024-02-29 17:16:57.967 2024-02-29 17:16:57.967 1800 TIP 443878 6202 6115722 2024-02-29 17:17:24.029 2024-02-29 17:17:24.029 10000 FEE 443527 21395 6115723 2024-02-29 17:17:24.029 2024-02-29 17:17:24.029 90000 TIP 443527 687 6115742 2024-02-29 17:19:18.265 2024-02-29 17:19:18.265 1000 FEE 443799 5306 6049951 2024-02-24 01:15:02.833 2024-02-24 01:15:02.833 1000 STREAM 141924 21239 6049965 2024-02-24 01:19:02.852 2024-02-24 01:19:02.852 1000 STREAM 141924 9348 6049972 2024-02-24 01:21:02.883 2024-02-24 01:21:02.883 1000 STREAM 141924 18449 6050047 2024-02-24 01:34:03.124 2024-02-24 01:34:03.124 1000 STREAM 141924 4250 6050066 2024-02-24 01:41:03.774 2024-02-24 01:41:03.774 1000 STREAM 141924 11153 6114934 2024-02-29 16:36:45.977 2024-02-29 16:36:45.977 10000 FEE 443345 1007 6114935 2024-02-29 16:36:45.977 2024-02-29 16:36:45.977 90000 TIP 443345 15521 6114968 2024-02-29 16:36:55.843 2024-02-29 16:36:55.843 100 FEE 443345 18751 6114969 2024-02-29 16:36:55.843 2024-02-29 16:36:55.843 900 TIP 443345 6430 6114988 2024-02-29 16:37:49.349 2024-02-29 16:37:49.349 3100 FEE 443664 20137 6114989 2024-02-29 16:37:49.349 2024-02-29 16:37:49.349 27900 TIP 443664 18169 6114995 2024-02-29 16:38:27.668 2024-02-29 16:38:27.668 1000 FEE 443806 20669 6115004 2024-02-29 16:39:15.122 2024-02-29 16:39:15.122 0 FEE 443807 8535 6115011 2024-02-29 16:40:15.811 2024-02-29 16:40:15.811 1000 FEE 443257 18892 6115012 2024-02-29 16:40:15.811 2024-02-29 16:40:15.811 9000 TIP 443257 11329 6115018 2024-02-29 16:40:18.902 2024-02-29 16:40:18.902 1000 FEE 443257 5646 6115019 2024-02-29 16:40:18.902 2024-02-29 16:40:18.902 9000 TIP 443257 18330 6115020 2024-02-29 16:40:24.539 2024-02-29 16:40:24.539 1000 FEE 443811 20179 6115041 2024-02-29 16:40:40.632 2024-02-29 16:40:40.632 1000 FEE 443812 697 6115046 2024-02-29 16:41:19.811 2024-02-29 16:41:19.811 300 FEE 441760 10270 6115047 2024-02-29 16:41:19.811 2024-02-29 16:41:19.811 2700 TIP 441760 20514 6115050 2024-02-29 16:41:23.353 2024-02-29 16:41:23.353 1000 FEE 443814 649 6115051 2024-02-29 16:41:23.425 2024-02-29 16:41:23.425 300 FEE 441758 1960 6115052 2024-02-29 16:41:23.425 2024-02-29 16:41:23.425 2700 TIP 441758 4388 6115061 2024-02-29 16:41:46.423 2024-02-29 16:41:46.423 3500 FEE 443678 3353 6115062 2024-02-29 16:41:46.423 2024-02-29 16:41:46.423 31500 TIP 443678 18114 6115081 2024-02-29 16:42:39.66 2024-02-29 16:42:39.66 9000 FEE 443745 21509 6115082 2024-02-29 16:42:39.66 2024-02-29 16:42:39.66 81000 TIP 443745 16357 6115098 2024-02-29 16:43:32.03 2024-02-29 16:43:32.03 500 FEE 443819 18357 6115099 2024-02-29 16:43:32.03 2024-02-29 16:43:32.03 4500 TIP 443819 2203 6115103 2024-02-29 16:43:36 2024-02-29 16:43:36 1000 FEE 443611 19566 6115104 2024-02-29 16:43:36 2024-02-29 16:43:36 9000 TIP 443611 10359 6115129 2024-02-29 16:43:38.736 2024-02-29 16:43:38.736 2000 FEE 443818 14267 6115130 2024-02-29 16:43:38.736 2024-02-29 16:43:38.736 18000 TIP 443818 18270 6115137 2024-02-29 16:43:55.655 2024-02-29 16:43:55.655 6900 FEE 443730 20586 6115138 2024-02-29 16:43:55.655 2024-02-29 16:43:55.655 62100 TIP 443730 12965 6049974 2024-02-24 01:22:02.538 2024-02-24 01:22:02.538 1000 STREAM 141924 21207 6049979 2024-02-24 01:24:02.512 2024-02-24 01:24:02.512 1000 STREAM 141924 20434 6049981 2024-02-24 01:25:02.522 2024-02-24 01:25:02.522 1000 STREAM 141924 1008 6050055 2024-02-24 01:37:05.08 2024-02-24 01:37:05.08 1000 STREAM 141924 1006 6050056 2024-02-24 01:38:05.086 2024-02-24 01:38:05.086 1000 STREAM 141924 9367 6115008 2024-02-29 16:40:03.832 2024-02-29 16:40:03.832 1000 STREAM 141924 19569 6115145 2024-02-29 16:44:03.652 2024-02-29 16:44:03.652 1000 STREAM 141924 11075 6115156 2024-02-29 16:45:03.659 2024-02-29 16:45:03.659 1000 STREAM 141924 19662 6115362 2024-02-29 16:51:03.693 2024-02-29 16:51:03.693 1000 STREAM 141924 21520 6115573 2024-02-29 17:04:03.777 2024-02-29 17:04:03.777 1000 STREAM 141924 18392 6115603 2024-02-29 17:06:03.789 2024-02-29 17:06:03.789 1000 STREAM 141924 1092 6115629 2024-02-29 17:07:03.804 2024-02-29 17:07:03.804 1000 STREAM 141924 6419 6115638 2024-02-29 17:09:03.799 2024-02-29 17:09:03.799 1000 STREAM 141924 19151 6049984 2024-02-24 01:26:02.534 2024-02-24 01:26:02.534 1000 STREAM 141924 19930 6050001 2024-02-24 01:27:02.538 2024-02-24 01:27:02.538 1000 STREAM 141924 10270 6050015 2024-02-24 01:28:02.533 2024-02-24 01:28:02.533 1000 STREAM 141924 20045 6115024 2024-02-29 16:40:33.77 2024-02-29 16:40:33.77 9000 TIP 442964 1394 6115033 2024-02-29 16:40:37.952 2024-02-29 16:40:37.952 1000 FEE 442973 9171 6115034 2024-02-29 16:40:37.952 2024-02-29 16:40:37.952 9000 TIP 442973 19938 6115056 2024-02-29 16:41:44.7 2024-02-29 16:41:44.7 1000 FEE 443816 2039 6115084 2024-02-29 16:42:57.014 2024-02-29 16:42:57.014 2100 FEE 443797 2335 6115085 2024-02-29 16:42:57.014 2024-02-29 16:42:57.014 18900 TIP 443797 4692 6115093 2024-02-29 16:43:05.904 2024-02-29 16:43:05.904 100 FEE 443583 16562 6115094 2024-02-29 16:43:05.904 2024-02-29 16:43:05.904 900 TIP 443583 14472 6115109 2024-02-29 16:43:36.527 2024-02-29 16:43:36.527 1000 FEE 443611 2075 6115110 2024-02-29 16:43:36.527 2024-02-29 16:43:36.527 9000 TIP 443611 18426 6115111 2024-02-29 16:43:36.879 2024-02-29 16:43:36.879 1000 FEE 443611 3478 6115112 2024-02-29 16:43:36.879 2024-02-29 16:43:36.879 9000 TIP 443611 2528 6115117 2024-02-29 16:43:37.444 2024-02-29 16:43:37.444 2100 FEE 442710 900 6115118 2024-02-29 16:43:37.444 2024-02-29 16:43:37.444 18900 TIP 442710 12277 6115136 2024-02-29 16:43:46.433 2024-02-29 16:43:46.433 1000 FEE 443823 19689 6115143 2024-02-29 16:43:56.548 2024-02-29 16:43:56.548 1000 FEE 443439 20871 6115144 2024-02-29 16:43:56.548 2024-02-29 16:43:56.548 9000 TIP 443439 21091 6115149 2024-02-29 16:44:32.704 2024-02-29 16:44:32.704 1000 FEE 443443 18321 6115150 2024-02-29 16:44:32.704 2024-02-29 16:44:32.704 9000 TIP 443443 13782 6115157 2024-02-29 16:45:20.237 2024-02-29 16:45:20.237 1000 FEE 443826 9992 6115168 2024-02-29 16:45:23.61 2024-02-29 16:45:23.61 6900 FEE 443799 11423 6115169 2024-02-29 16:45:23.61 2024-02-29 16:45:23.61 62100 TIP 443799 21320 6115180 2024-02-29 16:45:24.539 2024-02-29 16:45:24.539 6900 FEE 443799 11561 6115181 2024-02-29 16:45:24.539 2024-02-29 16:45:24.539 62100 TIP 443799 20616 6115184 2024-02-29 16:45:24.935 2024-02-29 16:45:24.935 6900 FEE 443799 18994 6115185 2024-02-29 16:45:24.935 2024-02-29 16:45:24.935 62100 TIP 443799 20301 6115200 2024-02-29 16:45:26.899 2024-02-29 16:45:26.899 6900 FEE 443799 8168 6115201 2024-02-29 16:45:26.899 2024-02-29 16:45:26.899 62100 TIP 443799 8080 6115215 2024-02-29 16:45:37.059 2024-02-29 16:45:37.059 6900 FEE 443799 8729 6115216 2024-02-29 16:45:37.059 2024-02-29 16:45:37.059 62100 TIP 443799 20636 6115237 2024-02-29 16:45:38.604 2024-02-29 16:45:38.604 6900 FEE 443799 1429 6115238 2024-02-29 16:45:38.604 2024-02-29 16:45:38.604 62100 TIP 443799 17570 6115249 2024-02-29 16:46:13.891 2024-02-29 16:46:13.891 2000 FEE 442003 21522 6115250 2024-02-29 16:46:13.891 2024-02-29 16:46:13.891 18000 TIP 442003 20788 6115256 2024-02-29 16:46:30.179 2024-02-29 16:46:30.179 6900 FEE 443799 633 6115257 2024-02-29 16:46:30.179 2024-02-29 16:46:30.179 62100 TIP 443799 688 6115258 2024-02-29 16:46:30.37 2024-02-29 16:46:30.37 6900 FEE 443799 1617 6115259 2024-02-29 16:46:30.37 2024-02-29 16:46:30.37 62100 TIP 443799 16809 6115329 2024-02-29 16:49:57.796 2024-02-29 16:49:57.796 1000 FEE 443837 20745 6115333 2024-02-29 16:50:05.798 2024-02-29 16:50:05.798 700 FEE 443268 4345 6115334 2024-02-29 16:50:05.798 2024-02-29 16:50:05.798 6300 TIP 443268 1326 6115341 2024-02-29 16:50:08.887 2024-02-29 16:50:08.887 2000 FEE 443752 20110 6115342 2024-02-29 16:50:08.887 2024-02-29 16:50:08.887 18000 TIP 443752 17218 6115355 2024-02-29 16:50:53.73 2024-02-29 16:50:53.73 100 FEE 443431 11798 6115356 2024-02-29 16:50:53.73 2024-02-29 16:50:53.73 900 TIP 443431 20264 6115357 2024-02-29 16:50:53.907 2024-02-29 16:50:53.907 900 FEE 443431 19795 6115358 2024-02-29 16:50:53.907 2024-02-29 16:50:53.907 8100 TIP 443431 20756 6115396 2024-02-29 16:53:04.771 2024-02-29 16:53:04.771 120000 FEE 443842 16789 6115423 2024-02-29 16:56:01.709 2024-02-29 16:56:01.709 500 FEE 443561 2123 6115424 2024-02-29 16:56:01.709 2024-02-29 16:56:01.709 4500 TIP 443561 19303 6115427 2024-02-29 16:56:02.124 2024-02-29 16:56:02.124 500 FEE 443561 15732 6115428 2024-02-29 16:56:02.124 2024-02-29 16:56:02.124 4500 TIP 443561 16769 6115442 2024-02-29 16:56:24.327 2024-02-29 16:56:24.327 1700 FEE 443794 673 6115443 2024-02-29 16:56:24.327 2024-02-29 16:56:24.327 15300 TIP 443794 1723 6115474 2024-02-29 16:57:12.904 2024-02-29 16:57:12.904 1000 FEE 443849 1010 6115482 2024-02-29 16:57:50.411 2024-02-29 16:57:50.411 1700 FEE 443827 3686 6115483 2024-02-29 16:57:50.411 2024-02-29 16:57:50.411 15300 TIP 443827 5129 6115495 2024-02-29 16:59:32.792 2024-02-29 16:59:32.792 1000 FEE 443372 16193 6115496 2024-02-29 16:59:32.792 2024-02-29 16:59:32.792 9000 TIP 443372 12976 6115497 2024-02-29 16:59:33.723 2024-02-29 16:59:33.723 1000 FEE 443372 17392 6115498 2024-02-29 16:59:33.723 2024-02-29 16:59:33.723 9000 TIP 443372 11714 6115499 2024-02-29 16:59:33.825 2024-02-29 16:59:33.825 1000 FEE 443372 17227 6115500 2024-02-29 16:59:33.825 2024-02-29 16:59:33.825 9000 TIP 443372 12158 6115501 2024-02-29 16:59:33.994 2024-02-29 16:59:33.994 1000 FEE 443372 826 6115502 2024-02-29 16:59:33.994 2024-02-29 16:59:33.994 9000 TIP 443372 1092 6115510 2024-02-29 16:59:57.227 2024-02-29 16:59:57.227 500 FEE 443339 20080 6115511 2024-02-29 16:59:57.227 2024-02-29 16:59:57.227 4500 TIP 443339 1534 6115513 2024-02-29 17:00:03.748 2024-02-29 17:00:03.748 1000 FEE 443857 3745 6115520 2024-02-29 17:01:14.591 2024-02-29 17:01:14.591 1000 FEE 443861 4115 6115557 2024-02-29 17:03:53.44 2024-02-29 17:03:53.44 6900 FEE 443861 20168 6115558 2024-02-29 17:03:53.44 2024-02-29 17:03:53.44 62100 TIP 443861 825 6115608 2024-02-29 17:06:16.245 2024-02-29 17:06:16.245 7700 FEE 443712 17148 6115609 2024-02-29 17:06:16.245 2024-02-29 17:06:16.245 69300 TIP 443712 5173 6115622 2024-02-29 17:06:29.011 2024-02-29 17:06:29.011 10000 FEE 443723 9367 6115623 2024-02-29 17:06:29.011 2024-02-29 17:06:29.011 90000 TIP 443723 20757 6115627 2024-02-29 17:07:02.029 2024-02-29 17:07:02.029 21000 FEE 443866 11760 6115628 2024-02-29 17:07:02.029 2024-02-29 17:07:02.029 189000 TIP 443866 20754 6115635 2024-02-29 17:08:27.916 2024-02-29 17:08:27.916 1000 FEE 443875 19662 6115652 2024-02-29 17:10:38.312 2024-02-29 17:10:38.312 10100 FEE 443561 18673 6115653 2024-02-29 17:10:38.312 2024-02-29 17:10:38.312 90900 TIP 443561 1624 6115661 2024-02-29 17:12:29.598 2024-02-29 17:12:29.598 700 FEE 442904 999 6115662 2024-02-29 17:12:29.598 2024-02-29 17:12:29.598 6300 TIP 442904 8998 6115674 2024-02-29 17:13:56.777 2024-02-29 17:13:56.777 1000 FEE 443881 20802 6115676 2024-02-29 17:14:08.789 2024-02-29 17:14:08.789 1000 FEE 443882 20577 6115679 2024-02-29 17:14:55.525 2024-02-29 17:14:55.525 3100 FEE 443790 18368 6115680 2024-02-29 17:14:55.525 2024-02-29 17:14:55.525 27900 TIP 443790 10096 6115681 2024-02-29 17:14:56.302 2024-02-29 17:14:56.302 27900 FEE 443790 21194 6115682 2024-02-29 17:14:56.302 2024-02-29 17:14:56.302 251100 TIP 443790 17690 6115684 2024-02-29 17:15:13.612 2024-02-29 17:15:13.612 3400 FEE 443883 19905 6115685 2024-02-29 17:15:13.612 2024-02-29 17:15:13.612 30600 TIP 443883 6421 6115686 2024-02-29 17:15:39.448 2024-02-29 17:15:39.448 1000 FEE 443885 1145 6115693 2024-02-29 17:16:39.663 2024-02-29 17:16:39.663 10000 FEE 443272 21067 6115694 2024-02-29 17:16:39.663 2024-02-29 17:16:39.663 90000 TIP 443272 6471 6115701 2024-02-29 17:16:52.292 2024-02-29 17:16:52.292 7700 FEE 443878 16717 6115702 2024-02-29 17:16:52.292 2024-02-29 17:16:52.292 69300 TIP 443878 21214 6050013 2024-02-24 01:27:21.031 2024-02-24 01:27:21.031 9000 TIP 432801 13365 6050014 2024-02-24 01:27:42.044 2024-02-24 01:27:42.044 1000 FEE 436810 1836 6050030 2024-02-24 01:31:17.649 2024-02-24 01:31:17.649 10000 FEE 436760 16867 6050031 2024-02-24 01:31:17.649 2024-02-24 01:31:17.649 90000 TIP 436760 6160 6050035 2024-02-24 01:32:50.66 2024-02-24 01:32:50.66 1000 FEE 436816 19637 6050093 2024-02-24 01:48:30.65 2024-02-24 01:48:30.65 2500 FEE 436809 646 6050094 2024-02-24 01:48:30.65 2024-02-24 01:48:30.65 22500 TIP 436809 21391 6050109 2024-02-24 01:48:32.57 2024-02-24 01:48:32.57 2500 FEE 436809 1713 6050110 2024-02-24 01:48:32.57 2024-02-24 01:48:32.57 22500 TIP 436809 21422 6050115 2024-02-24 01:48:34.839 2024-02-24 01:48:34.839 2500 FEE 436768 18101 6050116 2024-02-24 01:48:34.839 2024-02-24 01:48:34.839 22500 TIP 436768 15146 6050123 2024-02-24 01:48:35.537 2024-02-24 01:48:35.537 2500 FEE 436768 12808 6050124 2024-02-24 01:48:35.537 2024-02-24 01:48:35.537 22500 TIP 436768 21048 6050139 2024-02-24 01:48:39.026 2024-02-24 01:48:39.026 2500 FEE 436694 5085 6050140 2024-02-24 01:48:39.026 2024-02-24 01:48:39.026 22500 TIP 436694 18751 6050157 2024-02-24 01:48:42.112 2024-02-24 01:48:42.112 2500 FEE 436782 18601 6050158 2024-02-24 01:48:42.112 2024-02-24 01:48:42.112 22500 TIP 436782 5578 6050167 2024-02-24 01:48:43.364 2024-02-24 01:48:43.364 2500 FEE 436782 19888 6050168 2024-02-24 01:48:43.364 2024-02-24 01:48:43.364 22500 TIP 436782 10393 6050178 2024-02-24 01:52:45.769 2024-02-24 01:52:45.769 100 FEE 436805 9476 6050179 2024-02-24 01:52:45.769 2024-02-24 01:52:45.769 900 TIP 436805 3729 6050200 2024-02-24 01:55:10.719 2024-02-24 01:55:10.719 200 FEE 435183 1319 6050201 2024-02-24 01:55:10.719 2024-02-24 01:55:10.719 1800 TIP 435183 18525 6050220 2024-02-24 01:57:52.194 2024-02-24 01:57:52.194 1000 FEE 436830 718 6050305 2024-02-24 02:17:57.917 2024-02-24 02:17:57.917 2100 FEE 436840 16660 6050306 2024-02-24 02:17:57.917 2024-02-24 02:17:57.917 18900 TIP 436840 14225 6050321 2024-02-24 02:20:27.322 2024-02-24 02:20:27.322 1300 FEE 436837 21287 6050322 2024-02-24 02:20:27.322 2024-02-24 02:20:27.322 11700 TIP 436837 3377 6050334 2024-02-24 02:24:44.946 2024-02-24 02:24:44.946 3000 FEE 436499 21079 6050335 2024-02-24 02:24:44.946 2024-02-24 02:24:44.946 27000 TIP 436499 9438 6050352 2024-02-24 02:28:53.434 2024-02-24 02:28:53.434 4000 FEE 436669 928 6050353 2024-02-24 02:28:53.434 2024-02-24 02:28:53.434 36000 TIP 436669 687 6050375 2024-02-24 02:35:03.434 2024-02-24 02:35:03.434 1000 FEE 436854 8045 6050376 2024-02-24 02:35:03.434 2024-02-24 02:35:03.434 9000 TIP 436854 17455 6050396 2024-02-24 02:38:17.697 2024-02-24 02:38:17.697 1000 FEE 436858 1060 6050405 2024-02-24 02:42:30.453 2024-02-24 02:42:30.453 1000 FEE 436850 19494 6050406 2024-02-24 02:42:30.453 2024-02-24 02:42:30.453 9000 TIP 436850 1310 6050409 2024-02-24 02:42:39.974 2024-02-24 02:42:39.974 3000 FEE 436823 17455 6050410 2024-02-24 02:42:39.974 2024-02-24 02:42:39.974 27000 TIP 436823 9367 6050411 2024-02-24 02:42:41.514 2024-02-24 02:42:41.514 27000 FEE 436823 736 6050412 2024-02-24 02:42:41.514 2024-02-24 02:42:41.514 243000 TIP 436823 12368 6050418 2024-02-24 02:46:21.673 2024-02-24 02:46:21.673 1000 FEE 436861 20840 6050421 2024-02-24 02:46:34.308 2024-02-24 02:46:34.308 900 FEE 436792 20109 6050422 2024-02-24 02:46:34.308 2024-02-24 02:46:34.308 8100 TIP 436792 11898 6050485 2024-02-24 02:49:14.835 2024-02-24 02:49:14.835 90000 FEE 436837 4313 6050486 2024-02-24 02:49:14.835 2024-02-24 02:49:14.835 810000 TIP 436837 2614 6050496 2024-02-24 02:50:14.837 2024-02-24 02:50:14.837 90000 FEE 436752 17707 6050497 2024-02-24 02:50:14.837 2024-02-24 02:50:14.837 810000 TIP 436752 10862 6050498 2024-02-24 02:50:42.001 2024-02-24 02:50:42.001 900000 FEE 436752 20788 6050499 2024-02-24 02:50:42.001 2024-02-24 02:50:42.001 8100000 TIP 436752 726 6050515 2024-02-24 02:56:51.659 2024-02-24 02:56:51.659 1000 POLL 436759 5779 6050534 2024-02-24 03:00:52.196 2024-02-24 03:00:52.196 100000 FEE 436866 2224 6050538 2024-02-24 03:02:42.87 2024-02-24 03:02:42.87 0 FEE 436867 10393 6050542 2024-02-24 03:03:15.414 2024-02-24 03:03:15.414 2100 FEE 436867 732 6050543 2024-02-24 03:03:15.414 2024-02-24 03:03:15.414 18900 TIP 436867 6300 6050577 2024-02-24 03:18:39.179 2024-02-24 03:18:39.179 1000 POLL 436759 3213 6050582 2024-02-24 03:18:42.83 2024-02-24 03:18:42.83 2100 FEE 436759 6653 6050583 2024-02-24 03:18:42.83 2024-02-24 03:18:42.83 18900 TIP 436759 1130 6050584 2024-02-24 03:18:54.871 2024-02-24 03:18:54.871 1000 FEE 436874 13767 6050597 2024-02-24 03:21:23.841 2024-02-24 03:21:23.841 10100 FEE 436827 19007 6050598 2024-02-24 03:21:23.841 2024-02-24 03:21:23.841 90900 TIP 436827 5129 6050608 2024-02-24 03:24:04.728 2024-02-24 03:24:04.728 1000 FEE 436879 14705 6050629 2024-02-24 03:31:09.894 2024-02-24 03:31:09.894 1000 FEE 436882 18306 6050633 2024-02-24 03:34:03.609 2024-02-24 03:34:03.609 1100 FEE 436821 9551 6050634 2024-02-24 03:34:03.609 2024-02-24 03:34:03.609 9900 TIP 436821 2309 6050649 2024-02-24 03:42:06.623 2024-02-24 03:42:06.623 0 FEE 436884 14663 6050662 2024-02-24 03:47:49.494 2024-02-24 03:47:49.494 1000 FEE 436887 21523 6050676 2024-02-24 03:51:44.437 2024-02-24 03:51:44.437 1000 FEE 436890 7418 6050683 2024-02-24 03:54:25.597 2024-02-24 03:54:25.597 8300 FEE 436720 1769 6050684 2024-02-24 03:54:25.597 2024-02-24 03:54:25.597 74700 TIP 436720 634 6050714 2024-02-24 03:56:16.322 2024-02-24 03:56:16.322 2100 FEE 436449 2577 6050715 2024-02-24 03:56:16.322 2024-02-24 03:56:16.322 18900 TIP 436449 18533 6050727 2024-02-24 04:00:22.256 2024-02-24 04:00:22.256 2100 FEE 436759 2639 6050728 2024-02-24 04:00:22.256 2024-02-24 04:00:22.256 18900 TIP 436759 675 6050742 2024-02-24 04:01:29.115 2024-02-24 04:01:29.115 1000 POLL 436759 13361 6050743 2024-02-24 04:01:31.341 2024-02-24 04:01:31.341 2100 FEE 436759 760 6050744 2024-02-24 04:01:31.341 2024-02-24 04:01:31.341 18900 TIP 436759 1738 6050761 2024-02-24 04:02:53.759 2024-02-24 04:02:53.759 2100 FEE 436702 21233 6050762 2024-02-24 04:02:53.759 2024-02-24 04:02:53.759 18900 TIP 436702 1038 6050766 2024-02-24 04:03:09.322 2024-02-24 04:03:09.322 2100 FEE 436687 14080 6050767 2024-02-24 04:03:09.322 2024-02-24 04:03:09.322 18900 TIP 436687 17722 6050776 2024-02-24 04:07:02.196 2024-02-24 04:07:02.196 1000 FEE 436897 9169 6050820 2024-02-24 04:20:20.935 2024-02-24 04:20:20.935 10000 FEE 436907 1007 6050840 2024-02-24 04:26:55.147 2024-02-24 04:26:55.147 1000 FEE 436694 20901 6050841 2024-02-24 04:26:55.147 2024-02-24 04:26:55.147 9000 TIP 436694 15549 6050849 2024-02-24 04:27:41.916 2024-02-24 04:27:41.916 1000 FEE 436753 6160 6050850 2024-02-24 04:27:41.916 2024-02-24 04:27:41.916 9000 TIP 436753 3506 6050870 2024-02-24 04:32:37.331 2024-02-24 04:32:37.331 1000 FEE 436303 19193 6050871 2024-02-24 04:32:37.331 2024-02-24 04:32:37.331 9000 TIP 436303 19661 6050899 2024-02-24 04:41:09.619 2024-02-24 04:41:09.619 1000 FEE 436909 18330 6050900 2024-02-24 04:41:09.619 2024-02-24 04:41:09.619 9000 TIP 436909 5646 6050914 2024-02-24 04:46:10.068 2024-02-24 04:46:10.068 800 FEE 436720 19158 6050915 2024-02-24 04:46:10.068 2024-02-24 04:46:10.068 7200 TIP 436720 3506 6050916 2024-02-24 04:46:10.273 2024-02-24 04:46:10.273 800 FEE 436720 20889 6050917 2024-02-24 04:46:10.273 2024-02-24 04:46:10.273 7200 TIP 436720 4323 6050930 2024-02-24 04:46:12.187 2024-02-24 04:46:12.187 800 FEE 436720 4574 6050931 2024-02-24 04:46:12.187 2024-02-24 04:46:12.187 7200 TIP 436720 21373 6050932 2024-02-24 04:46:12.207 2024-02-24 04:46:12.207 800 FEE 436720 18556 6050933 2024-02-24 04:46:12.207 2024-02-24 04:46:12.207 7200 TIP 436720 2029 6050957 2024-02-24 04:54:37.183 2024-02-24 04:54:37.183 400 FEE 436909 19836 6050958 2024-02-24 04:54:37.183 2024-02-24 04:54:37.183 3600 TIP 436909 17011 6050961 2024-02-24 04:54:38.037 2024-02-24 04:54:38.037 400 FEE 436909 9336 6050962 2024-02-24 04:54:38.037 2024-02-24 04:54:38.037 3600 TIP 436909 656 6051027 2024-02-24 05:11:37.679 2024-02-24 05:11:37.679 1000 FEE 420323 21472 6050053 2024-02-24 01:36:05.079 2024-02-24 01:36:05.079 1000 STREAM 141924 4173 6115064 2024-02-29 16:41:51.4 2024-02-29 16:41:51.4 7200 TIP 443808 18637 6115065 2024-02-29 16:41:51.58 2024-02-29 16:41:51.58 800 FEE 443808 20045 6115066 2024-02-29 16:41:51.58 2024-02-29 16:41:51.58 7200 TIP 443808 3478 6115113 2024-02-29 16:43:37.082 2024-02-29 16:43:37.082 1000 FEE 443611 18816 6115114 2024-02-29 16:43:37.082 2024-02-29 16:43:37.082 9000 TIP 443611 15161 6115135 2024-02-29 16:43:43.459 2024-02-29 16:43:43.459 1000 FEE 443822 4083 6115158 2024-02-29 16:45:22.746 2024-02-29 16:45:22.746 6900 FEE 443799 717 6115159 2024-02-29 16:45:22.746 2024-02-29 16:45:22.746 62100 TIP 443799 18678 6115178 2024-02-29 16:45:24.372 2024-02-29 16:45:24.372 6900 FEE 443799 6653 6115179 2024-02-29 16:45:24.372 2024-02-29 16:45:24.372 62100 TIP 443799 1584 6115198 2024-02-29 16:45:26.777 2024-02-29 16:45:26.777 6900 FEE 443799 14857 6115199 2024-02-29 16:45:26.777 2024-02-29 16:45:26.777 62100 TIP 443799 913 6115217 2024-02-29 16:45:37.189 2024-02-29 16:45:37.189 6900 FEE 443799 12606 6115218 2024-02-29 16:45:37.189 2024-02-29 16:45:37.189 62100 TIP 443799 11999 6115241 2024-02-29 16:45:56.353 2024-02-29 16:45:56.353 1000 FEE 443828 1737 6115244 2024-02-29 16:46:05.956 2024-02-29 16:46:05.956 0 FEE 443828 1814 6115262 2024-02-29 16:46:30.552 2024-02-29 16:46:30.552 6900 FEE 443799 21269 6115263 2024-02-29 16:46:30.552 2024-02-29 16:46:30.552 62100 TIP 443799 13798 6115273 2024-02-29 16:46:53.349 2024-02-29 16:46:53.349 0 FEE 443830 21571 6115276 2024-02-29 16:47:10.853 2024-02-29 16:47:10.853 100 FEE 443831 21395 6115277 2024-02-29 16:47:10.853 2024-02-29 16:47:10.853 900 TIP 443831 8416 6115287 2024-02-29 16:48:30.502 2024-02-29 16:48:30.502 2100 FEE 443833 12188 6115288 2024-02-29 16:48:30.502 2024-02-29 16:48:30.502 18900 TIP 443833 8541 6115296 2024-02-29 16:48:52.205 2024-02-29 16:48:52.205 3100 FEE 443821 15463 6115297 2024-02-29 16:48:52.205 2024-02-29 16:48:52.205 27900 TIP 443821 12268 6115305 2024-02-29 16:49:39.398 2024-02-29 16:49:39.398 100 FEE 443531 8269 6115306 2024-02-29 16:49:39.398 2024-02-29 16:49:39.398 900 TIP 443531 20613 6115353 2024-02-29 16:50:34.013 2024-02-29 16:50:34.013 9000 FEE 443450 18583 6115354 2024-02-29 16:50:34.013 2024-02-29 16:50:34.013 81000 TIP 443450 19488 6115359 2024-02-29 16:50:54.465 2024-02-29 16:50:54.465 9000 FEE 443431 17690 6115360 2024-02-29 16:50:54.465 2024-02-29 16:50:54.465 81000 TIP 443431 19511 6115363 2024-02-29 16:51:15.782 2024-02-29 16:51:15.782 500 FEE 443799 6602 6115364 2024-02-29 16:51:15.782 2024-02-29 16:51:15.782 4500 TIP 443799 2338 6115369 2024-02-29 16:51:39.489 2024-02-29 16:51:39.489 3000 FEE 443577 691 6115370 2024-02-29 16:51:39.489 2024-02-29 16:51:39.489 27000 TIP 443577 18615 6115376 2024-02-29 16:51:59.897 2024-02-29 16:51:59.897 9000 FEE 443572 20713 6115377 2024-02-29 16:51:59.897 2024-02-29 16:51:59.897 81000 TIP 443572 2342 6115387 2024-02-29 16:52:27.391 2024-02-29 16:52:27.391 1000 FEE 443840 1584 6115390 2024-02-29 16:52:34.213 2024-02-29 16:52:34.213 2100 FEE 443830 18500 6115391 2024-02-29 16:52:34.213 2024-02-29 16:52:34.213 18900 TIP 443830 7760 6115411 2024-02-29 16:54:46.873 2024-02-29 16:54:46.873 1000 FEE 443844 20738 6115415 2024-02-29 16:55:52.044 2024-02-29 16:55:52.044 500 FEE 443528 20963 6115416 2024-02-29 16:55:52.044 2024-02-29 16:55:52.044 4500 TIP 443528 5449 6115431 2024-02-29 16:56:02.459 2024-02-29 16:56:02.459 500 FEE 443561 6421 6115432 2024-02-29 16:56:02.459 2024-02-29 16:56:02.459 4500 TIP 443561 20826 6115439 2024-02-29 16:56:12.385 2024-02-29 16:56:12.385 1000 FEE 443847 4502 6115460 2024-02-29 16:56:32.618 2024-02-29 16:56:32.618 500 FEE 443617 2330 6115461 2024-02-29 16:56:32.618 2024-02-29 16:56:32.618 4500 TIP 443617 18769 6115494 2024-02-29 16:59:27.94 2024-02-29 16:59:27.94 1000 FEE 443855 10668 6115514 2024-02-29 17:00:04.15 2024-02-29 17:00:04.15 1000 FEE 443858 15536 6115527 2024-02-29 17:03:10.287 2024-02-29 17:03:10.287 1000 FEE 443864 1650 6115535 2024-02-29 17:03:25.681 2024-02-29 17:03:25.681 1000 FEE 443862 15271 6115536 2024-02-29 17:03:25.681 2024-02-29 17:03:25.681 9000 TIP 443862 9183 6115540 2024-02-29 17:03:29.725 2024-02-29 17:03:29.725 100000 FEE 443867 20220 6115574 2024-02-29 17:04:10.778 2024-02-29 17:04:10.778 5700 FEE 443865 21248 6115575 2024-02-29 17:04:10.778 2024-02-29 17:04:10.778 51300 TIP 443865 5449 6115599 2024-02-29 17:05:45.541 2024-02-29 17:05:45.541 2100 FEE 443871 16562 6115600 2024-02-29 17:05:45.541 2024-02-29 17:05:45.541 18900 TIP 443871 16282 6115612 2024-02-29 17:06:16.584 2024-02-29 17:06:16.584 7700 FEE 443712 21044 6115613 2024-02-29 17:06:16.584 2024-02-29 17:06:16.584 69300 TIP 443712 19796 6115614 2024-02-29 17:06:16.668 2024-02-29 17:06:16.668 7700 FEE 443712 681 6115615 2024-02-29 17:06:16.668 2024-02-29 17:06:16.668 69300 TIP 443712 1720 6115616 2024-02-29 17:06:16.885 2024-02-29 17:06:16.885 7700 FEE 443712 20006 6115617 2024-02-29 17:06:16.885 2024-02-29 17:06:16.885 69300 TIP 443712 13327 6115618 2024-02-29 17:06:17.102 2024-02-29 17:06:17.102 7700 FEE 443712 9362 6115619 2024-02-29 17:06:17.102 2024-02-29 17:06:17.102 69300 TIP 443712 661 6115650 2024-02-29 17:10:35.179 2024-02-29 17:10:35.179 27900 FEE 443861 1823 6115651 2024-02-29 17:10:35.179 2024-02-29 17:10:35.179 251100 TIP 443861 1122 6115671 2024-02-29 17:13:40.329 2024-02-29 17:13:40.329 1000 FEE 443880 18051 6115677 2024-02-29 17:14:39.567 2024-02-29 17:14:39.567 1000 FEE 443883 15139 6115720 2024-02-29 17:17:21.11 2024-02-29 17:17:21.11 100 FEE 443527 4502 6115721 2024-02-29 17:17:21.11 2024-02-29 17:17:21.11 900 TIP 443527 11590 6115731 2024-02-29 17:17:55.139 2024-02-29 17:17:55.139 800 FEE 443545 21292 6115732 2024-02-29 17:17:55.139 2024-02-29 17:17:55.139 7200 TIP 443545 5425 6115736 2024-02-29 17:17:59.698 2024-02-29 17:17:59.698 1000 FEE 443887 5387 6115757 2024-02-29 17:22:05.407 2024-02-29 17:22:05.407 2100 FEE 443866 10094 6115758 2024-02-29 17:22:05.407 2024-02-29 17:22:05.407 18900 TIP 443866 2203 6115769 2024-02-29 17:23:00.218 2024-02-29 17:23:00.218 2100 FEE 443583 1039 6115770 2024-02-29 17:23:00.218 2024-02-29 17:23:00.218 18900 TIP 443583 770 6115792 2024-02-29 17:23:31.94 2024-02-29 17:23:31.94 1000 FEE 443892 12245 6115826 2024-02-29 17:26:07.302 2024-02-29 17:26:07.302 1000 FEE 443896 1316 6115827 2024-02-29 17:26:10.928 2024-02-29 17:26:10.928 500 FEE 443724 11314 6115828 2024-02-29 17:26:10.928 2024-02-29 17:26:10.928 4500 TIP 443724 9177 6115830 2024-02-29 17:26:24.737 2024-02-29 17:26:24.737 1000 FEE 443898 7418 6115849 2024-02-29 17:27:05.359 2024-02-29 17:27:05.359 100 FEE 443840 16505 6115850 2024-02-29 17:27:05.359 2024-02-29 17:27:05.359 900 TIP 443840 11263 6115945 2024-02-29 17:33:23.579 2024-02-29 17:33:23.579 1000 FEE 443914 11378 6115946 2024-02-29 17:33:23.579 2024-02-29 17:33:23.579 9000 TIP 443914 20577 6115955 2024-02-29 17:34:07.501 2024-02-29 17:34:07.501 1000 FEE 443915 16879 6115956 2024-02-29 17:34:07.501 2024-02-29 17:34:07.501 9000 TIP 443915 1970 6115957 2024-02-29 17:34:08.441 2024-02-29 17:34:08.441 100000 FEE 443917 21072 6116007 2024-02-29 17:35:07.007 2024-02-29 17:35:07.007 0 FEE 443916 18454 6116019 2024-02-29 17:35:13.435 2024-02-29 17:35:13.435 1000 FEE 443922 15049 6116070 2024-02-29 17:40:52.166 2024-02-29 17:40:52.166 1000 FEE 443575 20326 6116071 2024-02-29 17:40:52.166 2024-02-29 17:40:52.166 9000 TIP 443575 18396 6116105 2024-02-29 17:41:42.147 2024-02-29 17:41:42.147 1000 FEE 443935 14669 6116121 2024-02-29 17:42:43.553 2024-02-29 17:42:43.553 3300 FEE 443548 19967 6116122 2024-02-29 17:42:43.553 2024-02-29 17:42:43.553 29700 TIP 443548 18243 6116130 2024-02-29 17:42:58.134 2024-02-29 17:42:58.134 3300 FEE 443545 19016 6116131 2024-02-29 17:42:58.134 2024-02-29 17:42:58.134 29700 TIP 443545 17109 6050070 2024-02-24 01:44:03.738 2024-02-24 01:44:03.738 1000 STREAM 141924 7583 6050087 2024-02-24 01:45:03.696 2024-02-24 01:45:03.696 1000 STREAM 141924 18076 6050088 2024-02-24 01:46:03.798 2024-02-24 01:46:03.798 1000 STREAM 141924 20623 6050090 2024-02-24 01:48:03.731 2024-02-24 01:48:03.731 1000 STREAM 141924 1985 6050175 2024-02-24 01:50:03.755 2024-02-24 01:50:03.755 1000 STREAM 141924 20409 6050177 2024-02-24 01:52:03.793 2024-02-24 01:52:03.793 1000 STREAM 141924 977 6050184 2024-02-24 01:53:03.787 2024-02-24 01:53:03.787 1000 STREAM 141924 8284 6050191 2024-02-24 01:54:03.79 2024-02-24 01:54:03.79 1000 STREAM 141924 715 6050197 2024-02-24 01:55:03.797 2024-02-24 01:55:03.797 1000 STREAM 141924 20841 6050213 2024-02-24 01:57:03.799 2024-02-24 01:57:03.799 1000 STREAM 141924 20776 6050221 2024-02-24 01:58:03.851 2024-02-24 01:58:03.851 1000 STREAM 141924 21022 6050338 2024-02-24 02:25:04.101 2024-02-24 02:25:04.101 1000 STREAM 141924 5427 6050345 2024-02-24 02:27:04.102 2024-02-24 02:27:04.102 1000 STREAM 141924 6384 6050354 2024-02-24 02:29:04.116 2024-02-24 02:29:04.116 1000 STREAM 141924 21334 6050357 2024-02-24 02:30:04.136 2024-02-24 02:30:04.136 1000 STREAM 141924 17227 6050365 2024-02-24 02:32:04.124 2024-02-24 02:32:04.124 1000 STREAM 141924 4574 6050373 2024-02-24 02:34:04.172 2024-02-24 02:34:04.172 1000 STREAM 141924 21116 6050377 2024-02-24 02:35:04.149 2024-02-24 02:35:04.149 1000 STREAM 141924 19907 6050395 2024-02-24 02:38:04.205 2024-02-24 02:38:04.205 1000 STREAM 141924 21599 6050397 2024-02-24 02:39:04.206 2024-02-24 02:39:04.206 1000 STREAM 141924 13169 6050401 2024-02-24 02:41:04.226 2024-02-24 02:41:04.226 1000 STREAM 141924 16532 6050415 2024-02-24 02:45:04.278 2024-02-24 02:45:04.278 1000 STREAM 141924 6136 6050473 2024-02-24 02:48:04.3 2024-02-24 02:48:04.3 1000 STREAM 141924 19622 6050507 2024-02-24 02:52:04.334 2024-02-24 02:52:04.334 1000 STREAM 141924 20059 6050514 2024-02-24 02:56:04.385 2024-02-24 02:56:04.385 1000 STREAM 141924 15703 6050516 2024-02-24 02:57:04.359 2024-02-24 02:57:04.359 1000 STREAM 141924 19690 6050535 2024-02-24 03:01:04.556 2024-02-24 03:01:04.556 1000 STREAM 141924 14669 6050552 2024-02-24 03:06:04.603 2024-02-24 03:06:04.603 1000 STREAM 141924 1705 6115087 2024-02-29 16:43:03.671 2024-02-29 16:43:03.671 1000 STREAM 141924 19037 6115304 2024-02-29 16:49:03.691 2024-02-29 16:49:03.691 1000 STREAM 141924 1162 6115378 2024-02-29 16:52:03.705 2024-02-29 16:52:03.705 1000 STREAM 141924 19557 6115408 2024-02-29 16:54:03.729 2024-02-29 16:54:03.729 1000 STREAM 141924 21509 6115437 2024-02-29 16:56:03.721 2024-02-29 16:56:03.721 1000 STREAM 141924 928 6115472 2024-02-29 16:57:03.7 2024-02-29 16:57:03.7 1000 STREAM 141924 15060 6115488 2024-02-29 16:58:03.726 2024-02-29 16:58:03.726 1000 STREAM 141924 20687 6115493 2024-02-29 16:59:03.731 2024-02-29 16:59:03.731 1000 STREAM 141924 5387 6115592 2024-02-29 17:05:03.755 2024-02-29 17:05:03.755 1000 STREAM 141924 999 6115654 2024-02-29 17:11:03.77 2024-02-29 17:11:03.77 1000 STREAM 141924 1576 6115658 2024-02-29 17:12:03.794 2024-02-29 17:12:03.794 1000 STREAM 141924 9845 6050089 2024-02-24 01:47:03.727 2024-02-24 01:47:03.727 1000 STREAM 141924 5776 6050173 2024-02-24 01:49:03.744 2024-02-24 01:49:03.744 1000 STREAM 141924 1772 6050176 2024-02-24 01:51:03.763 2024-02-24 01:51:03.763 1000 STREAM 141924 19189 6050204 2024-02-24 01:56:03.822 2024-02-24 01:56:03.822 1000 STREAM 141924 10731 6050229 2024-02-24 01:59:03.863 2024-02-24 01:59:03.863 1000 STREAM 141924 13798 6050233 2024-02-24 02:00:03.863 2024-02-24 02:00:03.863 1000 STREAM 141924 17212 6115127 2024-02-29 16:43:38.073 2024-02-29 16:43:38.073 1000 FEE 443818 2722 6115128 2024-02-29 16:43:38.073 2024-02-29 16:43:38.073 9000 TIP 443818 7827 6115160 2024-02-29 16:45:22.878 2024-02-29 16:45:22.878 6900 FEE 443799 16948 6115161 2024-02-29 16:45:22.878 2024-02-29 16:45:22.878 62100 TIP 443799 826 6115162 2024-02-29 16:45:23.087 2024-02-29 16:45:23.087 6900 FEE 443799 21040 6115163 2024-02-29 16:45:23.087 2024-02-29 16:45:23.087 62100 TIP 443799 20970 6115164 2024-02-29 16:45:23.35 2024-02-29 16:45:23.35 6900 FEE 443799 21021 6115165 2024-02-29 16:45:23.35 2024-02-29 16:45:23.35 62100 TIP 443799 1465 6115174 2024-02-29 16:45:24.047 2024-02-29 16:45:24.047 6900 FEE 443799 1692 6115175 2024-02-29 16:45:24.047 2024-02-29 16:45:24.047 62100 TIP 443799 11938 6115188 2024-02-29 16:45:25.208 2024-02-29 16:45:25.208 6900 FEE 443799 21498 6115189 2024-02-29 16:45:25.208 2024-02-29 16:45:25.208 62100 TIP 443799 11862 6115202 2024-02-29 16:45:27.065 2024-02-29 16:45:27.065 6900 FEE 443799 21614 6115203 2024-02-29 16:45:27.065 2024-02-29 16:45:27.065 62100 TIP 443799 21395 6115206 2024-02-29 16:45:28.154 2024-02-29 16:45:28.154 13800 FEE 443799 629 6115207 2024-02-29 16:45:28.154 2024-02-29 16:45:28.154 124200 TIP 443799 21520 6115231 2024-02-29 16:45:38.281 2024-02-29 16:45:38.281 6900 FEE 443799 9329 6115232 2024-02-29 16:45:38.281 2024-02-29 16:45:38.281 62100 TIP 443799 21148 6115282 2024-02-29 16:47:26.995 2024-02-29 16:47:26.995 1000 FEE 443832 657 6115315 2024-02-29 16:49:50.048 2024-02-29 16:49:50.048 900 FEE 443522 647 6115316 2024-02-29 16:49:50.048 2024-02-29 16:49:50.048 8100 TIP 443522 9494 6115347 2024-02-29 16:50:12.553 2024-02-29 16:50:12.553 700 FEE 443105 1584 6115348 2024-02-29 16:50:12.553 2024-02-29 16:50:12.553 6300 TIP 443105 13076 6115349 2024-02-29 16:50:33.01 2024-02-29 16:50:33.01 100 FEE 443450 2431 6115350 2024-02-29 16:50:33.01 2024-02-29 16:50:33.01 900 TIP 443450 12609 6115365 2024-02-29 16:51:21.281 2024-02-29 16:51:21.281 500 FEE 443667 21444 6115366 2024-02-29 16:51:21.281 2024-02-29 16:51:21.281 4500 TIP 443667 5173 6115385 2024-02-29 16:52:17.446 2024-02-29 16:52:17.446 500 FEE 443838 687 6115386 2024-02-29 16:52:17.446 2024-02-29 16:52:17.446 4500 TIP 443838 21104 6115394 2024-02-29 16:52:49.849 2024-02-29 16:52:49.849 10000 FEE 443841 17106 6115417 2024-02-29 16:55:52.521 2024-02-29 16:55:52.521 500 FEE 443528 10728 6115418 2024-02-29 16:55:52.521 2024-02-29 16:55:52.521 4500 TIP 443528 8544 6115425 2024-02-29 16:56:02.002 2024-02-29 16:56:02.002 500 FEE 443561 17162 6115426 2024-02-29 16:56:02.002 2024-02-29 16:56:02.002 4500 TIP 443561 15719 6115446 2024-02-29 16:56:29.85 2024-02-29 16:56:29.85 500 FEE 443627 14906 6115447 2024-02-29 16:56:29.85 2024-02-29 16:56:29.85 4500 TIP 443627 18511 6115448 2024-02-29 16:56:30.414 2024-02-29 16:56:30.414 500 FEE 443627 1552 6115449 2024-02-29 16:56:30.414 2024-02-29 16:56:30.414 4500 TIP 443627 20564 6115452 2024-02-29 16:56:30.829 2024-02-29 16:56:30.829 900 FEE 443799 21591 6115453 2024-02-29 16:56:30.829 2024-02-29 16:56:30.829 8100 TIP 443799 20409 6115456 2024-02-29 16:56:32.042 2024-02-29 16:56:32.042 500 FEE 443617 19533 6115457 2024-02-29 16:56:32.042 2024-02-29 16:56:32.042 4500 TIP 443617 14152 6115464 2024-02-29 16:56:33.554 2024-02-29 16:56:33.554 500 FEE 443617 837 6115465 2024-02-29 16:56:33.554 2024-02-29 16:56:33.554 4500 TIP 443617 4225 6115468 2024-02-29 16:56:39.801 2024-02-29 16:56:39.801 9000 FEE 443799 4650 6115469 2024-02-29 16:56:39.801 2024-02-29 16:56:39.801 81000 TIP 443799 19583 6115479 2024-02-29 16:57:43.2 2024-02-29 16:57:43.2 10000 FEE 443850 18380 6115480 2024-02-29 16:57:45.399 2024-02-29 16:57:45.399 3200 FEE 443799 917 6115481 2024-02-29 16:57:45.399 2024-02-29 16:57:45.399 28800 TIP 443799 2042 6115486 2024-02-29 16:58:03.442 2024-02-29 16:58:03.442 100 FEE 443850 9036 6115487 2024-02-29 16:58:03.442 2024-02-29 16:58:03.442 900 TIP 443850 720 6115489 2024-02-29 16:58:11.112 2024-02-29 16:58:11.112 1000 FEE 443853 21501 6115503 2024-02-29 16:59:34.398 2024-02-29 16:59:34.398 1000 FEE 443372 15510 6115504 2024-02-29 16:59:34.398 2024-02-29 16:59:34.398 9000 TIP 443372 20745 6115515 2024-02-29 17:00:09.019 2024-02-29 17:00:09.019 1000 FEE 443859 21379 6115521 2024-02-29 17:01:22.447 2024-02-29 17:01:22.447 5700 FEE 443855 15488 6115522 2024-02-29 17:01:22.447 2024-02-29 17:01:22.447 51300 TIP 443855 21400 6115624 2024-02-29 17:06:37.104 2024-02-29 17:06:37.104 1000 FEE 443872 12606 6115670 2024-02-29 17:13:36.632 2024-02-29 17:13:36.632 1000 FEE 443879 1224 6115697 2024-02-29 17:16:52.021 2024-02-29 17:16:52.021 7700 FEE 443878 21446 6115698 2024-02-29 17:16:52.021 2024-02-29 17:16:52.021 69300 TIP 443878 13398 6115699 2024-02-29 17:16:52.207 2024-02-29 17:16:52.207 7700 FEE 443878 21455 6115700 2024-02-29 17:16:52.207 2024-02-29 17:16:52.207 69300 TIP 443878 20246 6115724 2024-02-29 17:17:50.361 2024-02-29 17:17:50.361 0 FEE 443881 21104 6115751 2024-02-29 17:22:03.644 2024-02-29 17:22:03.644 2100 FEE 443866 12057 6115752 2024-02-29 17:22:03.644 2024-02-29 17:22:03.644 18900 TIP 443866 20254 6115803 2024-02-29 17:24:27.442 2024-02-29 17:24:27.442 1000 FEE 443894 20861 6115812 2024-02-29 17:24:47.538 2024-02-29 17:24:47.538 7700 FEE 443836 2735 6115813 2024-02-29 17:24:47.538 2024-02-29 17:24:47.538 69300 TIP 443836 1114 6115814 2024-02-29 17:24:48.318 2024-02-29 17:24:48.318 10000 FEE 443895 21044 6115823 2024-02-29 17:25:58.608 2024-02-29 17:25:58.608 500 FEE 443853 5775 6115824 2024-02-29 17:25:58.608 2024-02-29 17:25:58.608 4500 TIP 443853 2709 6115839 2024-02-29 17:26:48.818 2024-02-29 17:26:48.818 100 FEE 443872 9816 6115840 2024-02-29 17:26:48.818 2024-02-29 17:26:48.818 900 TIP 443872 17221 6115841 2024-02-29 17:26:52.929 2024-02-29 17:26:52.929 6400 FEE 443799 5757 6115842 2024-02-29 17:26:52.929 2024-02-29 17:26:52.929 57600 TIP 443799 2961 6115853 2024-02-29 17:27:16.274 2024-02-29 17:27:16.274 500 FEE 443854 18470 6115854 2024-02-29 17:27:16.274 2024-02-29 17:27:16.274 4500 TIP 443854 18704 6115861 2024-02-29 17:27:40.042 2024-02-29 17:27:40.042 500 FEE 443785 2735 6115862 2024-02-29 17:27:40.042 2024-02-29 17:27:40.042 4500 TIP 443785 844 6050235 2024-02-24 02:01:05.645 2024-02-24 02:01:05.645 1000 STREAM 141924 629 6115146 2024-02-29 16:44:03.828 2024-02-29 16:44:03.828 1000 FEE 443824 9844 6115151 2024-02-29 16:44:33.242 2024-02-29 16:44:33.242 1000 FEE 443825 18392 6115186 2024-02-29 16:45:25.086 2024-02-29 16:45:25.086 6900 FEE 443799 19576 6115187 2024-02-29 16:45:25.086 2024-02-29 16:45:25.086 62100 TIP 443799 11288 6115211 2024-02-29 16:45:32.802 2024-02-29 16:45:32.802 1700 FEE 443755 14271 6115212 2024-02-29 16:45:32.802 2024-02-29 16:45:32.802 15300 TIP 443755 10519 6115227 2024-02-29 16:45:37.958 2024-02-29 16:45:37.958 6900 FEE 443799 16988 6115228 2024-02-29 16:45:37.958 2024-02-29 16:45:37.958 62100 TIP 443799 10311 6115247 2024-02-29 16:46:13.632 2024-02-29 16:46:13.632 2000 FEE 442003 12102 6115248 2024-02-29 16:46:13.632 2024-02-29 16:46:13.632 18000 TIP 442003 17041 6115264 2024-02-29 16:46:30.82 2024-02-29 16:46:30.82 13800 FEE 443799 2749 6115265 2024-02-29 16:46:30.82 2024-02-29 16:46:30.82 124200 TIP 443799 894 6115270 2024-02-29 16:46:36.072 2024-02-29 16:46:36.072 1000 FEE 443831 18262 6115271 2024-02-29 16:46:36.393 2024-02-29 16:46:36.393 300 FEE 439793 18705 6115272 2024-02-29 16:46:36.393 2024-02-29 16:46:36.393 2700 TIP 439793 19198 6115278 2024-02-29 16:47:21.945 2024-02-29 16:47:21.945 200 FEE 443802 19329 6115279 2024-02-29 16:47:21.945 2024-02-29 16:47:21.945 1800 TIP 443802 12222 6115290 2024-02-29 16:48:36.666 2024-02-29 16:48:36.666 3100 FEE 443712 5057 6115291 2024-02-29 16:48:36.666 2024-02-29 16:48:36.666 27900 TIP 443712 21323 6115311 2024-02-29 16:49:48.39 2024-02-29 16:49:48.39 900 FEE 443495 21207 6115312 2024-02-29 16:49:48.39 2024-02-29 16:49:48.39 8100 TIP 443495 12921 6115331 2024-02-29 16:50:04.571 2024-02-29 16:50:04.571 2000 FEE 443752 19158 6115332 2024-02-29 16:50:04.571 2024-02-29 16:50:04.571 18000 TIP 443752 16284 6115343 2024-02-29 16:50:09.769 2024-02-29 16:50:09.769 10000 FEE 443835 10273 6115344 2024-02-29 16:50:09.769 2024-02-29 16:50:09.769 90000 TIP 443835 11678 6115371 2024-02-29 16:51:57.373 2024-02-29 16:51:57.373 1000 FEE 443839 10690 6115397 2024-02-29 16:53:17.586 2024-02-29 16:53:17.586 1000 FEE 443843 20603 6115398 2024-02-29 16:53:22.312 2024-02-29 16:53:22.312 1000 FEE 443583 21136 6115399 2024-02-29 16:53:22.312 2024-02-29 16:53:22.312 9000 TIP 443583 647 6115413 2024-02-29 16:55:32.43 2024-02-29 16:55:32.43 1000 FEE 443845 18101 6115414 2024-02-29 16:55:32.93 2024-02-29 16:55:32.93 1000 FEE 443846 17291 6115419 2024-02-29 16:56:01.204 2024-02-29 16:56:01.204 500 FEE 443561 8954 6115420 2024-02-29 16:56:01.204 2024-02-29 16:56:01.204 4500 TIP 443561 7760 6115485 2024-02-29 16:57:53.379 2024-02-29 16:57:53.379 1000 FEE 443852 20117 6115533 2024-02-29 17:03:25.357 2024-02-29 17:03:25.357 1000 FEE 443862 9551 6115534 2024-02-29 17:03:25.357 2024-02-29 17:03:25.357 9000 TIP 443862 21320 6115539 2024-02-29 17:03:27.317 2024-02-29 17:03:27.317 10000 FEE 443866 9916 6115545 2024-02-29 17:03:50.584 2024-02-29 17:03:50.584 2000 FEE 443811 10979 6115546 2024-02-29 17:03:50.584 2024-02-29 17:03:50.584 18000 TIP 443811 20577 6115561 2024-02-29 17:03:53.721 2024-02-29 17:03:53.721 6900 FEE 443861 18543 6115562 2024-02-29 17:03:53.721 2024-02-29 17:03:53.721 62100 TIP 443861 18357 6115569 2024-02-29 17:03:59.16 2024-02-29 17:03:59.16 13800 FEE 443839 2390 6115570 2024-02-29 17:03:59.16 2024-02-29 17:03:59.16 124200 TIP 443839 20129 6115576 2024-02-29 17:04:11.752 2024-02-29 17:04:11.752 1000 FEE 443870 7827 6115610 2024-02-29 17:06:16.329 2024-02-29 17:06:16.329 7700 FEE 443712 21577 6115611 2024-02-29 17:06:16.329 2024-02-29 17:06:16.329 69300 TIP 443712 20901 6115630 2024-02-29 17:07:35.549 2024-02-29 17:07:35.549 1000 FEE 443873 3392 6115631 2024-02-29 17:07:48.452 2024-02-29 17:07:48.452 1000 FEE 443874 19570 6115644 2024-02-29 17:10:15.499 2024-02-29 17:10:15.499 2100 FEE 443755 1534 6115645 2024-02-29 17:10:15.499 2024-02-29 17:10:15.499 18900 TIP 443755 20788 6115646 2024-02-29 17:10:24.319 2024-02-29 17:10:24.319 2100 FEE 443734 768 6115647 2024-02-29 17:10:24.319 2024-02-29 17:10:24.319 18900 TIP 443734 2010 6115655 2024-02-29 17:11:21.046 2024-02-29 17:11:21.046 7700 FEE 443712 20912 6115656 2024-02-29 17:11:21.046 2024-02-29 17:11:21.046 69300 TIP 443712 21166 6115744 2024-02-29 17:19:23.968 2024-02-29 17:19:23.968 1000 FEE 443794 20433 6115745 2024-02-29 17:19:23.968 2024-02-29 17:19:23.968 9000 TIP 443794 21021 6115780 2024-02-29 17:23:15.682 2024-02-29 17:23:15.682 2100 FEE 443611 5057 6115781 2024-02-29 17:23:15.682 2024-02-29 17:23:15.682 18900 TIP 443611 16194 6115843 2024-02-29 17:26:56.776 2024-02-29 17:26:56.776 500 FEE 443879 20642 6115844 2024-02-29 17:26:56.776 2024-02-29 17:26:56.776 4500 TIP 443879 21344 6115845 2024-02-29 17:27:00.856 2024-02-29 17:27:00.856 1000 FEE 443899 3353 6115857 2024-02-29 17:27:29.279 2024-02-29 17:27:29.279 10000 FEE 443799 11395 6115858 2024-02-29 17:27:29.279 2024-02-29 17:27:29.279 90000 TIP 443799 20811 6115890 2024-02-29 17:30:29.433 2024-02-29 17:30:29.433 100 FEE 443804 3478 6115891 2024-02-29 17:30:29.433 2024-02-29 17:30:29.433 900 TIP 443804 16124 6115894 2024-02-29 17:30:30.087 2024-02-29 17:30:30.087 1000 FEE 443907 2206 6115916 2024-02-29 17:30:36.467 2024-02-29 17:30:36.467 900 FEE 443798 18680 6115917 2024-02-29 17:30:36.467 2024-02-29 17:30:36.467 8100 TIP 443798 1465 6115926 2024-02-29 17:30:41.521 2024-02-29 17:30:41.521 900 FEE 443755 20080 6115927 2024-02-29 17:30:41.521 2024-02-29 17:30:41.521 8100 TIP 443755 14552 6115942 2024-02-29 17:32:59.566 2024-02-29 17:32:59.566 15000 FEE 443915 5701 6115952 2024-02-29 17:33:58.506 2024-02-29 17:33:58.506 1000 FEE 443879 18673 6115953 2024-02-29 17:33:58.506 2024-02-29 17:33:58.506 9000 TIP 443879 3347 6115958 2024-02-29 17:34:08.999 2024-02-29 17:34:08.999 1000 FEE 443532 12774 6115959 2024-02-29 17:34:08.999 2024-02-29 17:34:08.999 9000 TIP 443532 2529 6115960 2024-02-29 17:34:09.505 2024-02-29 17:34:09.505 1000 FEE 443532 15196 6115961 2024-02-29 17:34:09.505 2024-02-29 17:34:09.505 9000 TIP 443532 1208 6115978 2024-02-29 17:34:22.771 2024-02-29 17:34:22.771 1000 FEE 443099 20788 6115979 2024-02-29 17:34:22.771 2024-02-29 17:34:22.771 9000 TIP 443099 20525 6116013 2024-02-29 17:35:08.835 2024-02-29 17:35:08.835 1000 FEE 442982 21296 6116014 2024-02-29 17:35:08.835 2024-02-29 17:35:08.835 9000 TIP 442982 11866 6116017 2024-02-29 17:35:09.856 2024-02-29 17:35:09.856 1000 FEE 442982 658 6050239 2024-02-24 02:02:03.758 2024-02-24 02:02:03.758 1000 STREAM 141924 19581 6050246 2024-02-24 02:04:03.766 2024-02-24 02:04:03.766 1000 STREAM 141924 20614 6050251 2024-02-24 02:06:03.772 2024-02-24 02:06:03.772 1000 STREAM 141924 4062 6050265 2024-02-24 02:08:03.797 2024-02-24 02:08:03.797 1000 STREAM 141924 21421 6050269 2024-02-24 02:09:03.801 2024-02-24 02:09:03.801 1000 STREAM 141924 9026 6050274 2024-02-24 02:10:03.813 2024-02-24 02:10:03.813 1000 STREAM 141924 646 6050276 2024-02-24 02:11:03.815 2024-02-24 02:11:03.815 1000 STREAM 141924 3686 6050279 2024-02-24 02:12:03.81 2024-02-24 02:12:03.81 1000 STREAM 141924 20841 6050287 2024-02-24 02:13:03.823 2024-02-24 02:13:03.823 1000 STREAM 141924 7773 6050290 2024-02-24 02:14:03.829 2024-02-24 02:14:03.829 1000 STREAM 141924 15088 6050291 2024-02-24 02:15:03.83 2024-02-24 02:15:03.83 1000 STREAM 141924 16193 6050301 2024-02-24 02:16:03.833 2024-02-24 02:16:03.833 1000 STREAM 141924 9992 6050307 2024-02-24 02:18:03.838 2024-02-24 02:18:03.838 1000 STREAM 141924 12708 6050314 2024-02-24 02:20:03.884 2024-02-24 02:20:03.884 1000 STREAM 141924 19329 6050323 2024-02-24 02:21:03.854 2024-02-24 02:21:03.854 1000 STREAM 141924 21472 6050333 2024-02-24 02:24:03.879 2024-02-24 02:24:03.879 1000 STREAM 141924 21194 6115239 2024-02-29 16:45:38.733 2024-02-29 16:45:38.733 6900 FEE 443799 12334 6115240 2024-02-29 16:45:38.733 2024-02-29 16:45:38.733 62100 TIP 443799 712 6115242 2024-02-29 16:45:58.552 2024-02-29 16:45:58.552 1000 FEE 443829 1483 6115268 2024-02-29 16:46:31.565 2024-02-29 16:46:31.565 1000 FEE 443826 9364 6115269 2024-02-29 16:46:31.565 2024-02-29 16:46:31.565 9000 TIP 443826 13217 6115317 2024-02-29 16:49:50.732 2024-02-29 16:49:50.732 100 FEE 443508 1618 6115318 2024-02-29 16:49:50.732 2024-02-29 16:49:50.732 900 TIP 443508 2528 6115323 2024-02-29 16:49:52.836 2024-02-29 16:49:52.836 900 FEE 443502 9346 6115324 2024-02-29 16:49:52.836 2024-02-29 16:49:52.836 8100 TIP 443502 19813 6115325 2024-02-29 16:49:53.514 2024-02-29 16:49:53.514 100 FEE 443499 20861 6115326 2024-02-29 16:49:53.514 2024-02-29 16:49:53.514 900 TIP 443499 19910 6115335 2024-02-29 16:50:05.914 2024-02-29 16:50:05.914 2000 FEE 443752 18904 6115336 2024-02-29 16:50:05.914 2024-02-29 16:50:05.914 18000 TIP 443752 726 6115345 2024-02-29 16:50:12.466 2024-02-29 16:50:12.466 2000 FEE 442003 2046 6115346 2024-02-29 16:50:12.466 2024-02-29 16:50:12.466 18000 TIP 442003 16769 6115361 2024-02-29 16:50:56.786 2024-02-29 16:50:56.786 1000 FEE 443838 1620 6115372 2024-02-29 16:51:58.857 2024-02-29 16:51:58.857 100 FEE 443572 11477 6115373 2024-02-29 16:51:58.857 2024-02-29 16:51:58.857 900 TIP 443572 20120 6115379 2024-02-29 16:52:05.774 2024-02-29 16:52:05.774 100 FEE 443512 8162 6115380 2024-02-29 16:52:05.774 2024-02-29 16:52:05.774 900 TIP 443512 1038 6115381 2024-02-29 16:52:06.036 2024-02-29 16:52:06.036 900 FEE 443512 21323 6115382 2024-02-29 16:52:06.036 2024-02-29 16:52:06.036 8100 TIP 443512 9418 6115400 2024-02-29 16:53:22.833 2024-02-29 16:53:22.833 1000 FEE 443583 9331 6115401 2024-02-29 16:53:22.833 2024-02-29 16:53:22.833 9000 TIP 443583 20555 6115404 2024-02-29 16:53:23.774 2024-02-29 16:53:23.774 1000 FEE 443583 632 6115405 2024-02-29 16:53:23.774 2024-02-29 16:53:23.774 9000 TIP 443583 13097 6115421 2024-02-29 16:56:01.524 2024-02-29 16:56:01.524 500 FEE 443561 19378 6115422 2024-02-29 16:56:01.524 2024-02-29 16:56:01.524 4500 TIP 443561 19469 6115433 2024-02-29 16:56:03.247 2024-02-29 16:56:03.247 500 FEE 443561 5069 6115434 2024-02-29 16:56:03.247 2024-02-29 16:56:03.247 4500 TIP 443561 8569 6115454 2024-02-29 16:56:31.892 2024-02-29 16:56:31.892 500 FEE 443617 16571 6115455 2024-02-29 16:56:31.892 2024-02-29 16:56:31.892 4500 TIP 443617 2773 6115516 2024-02-29 17:00:45.021 2024-02-29 17:00:45.021 1000 FEE 443860 13361 6115518 2024-02-29 17:01:03.995 2024-02-29 17:01:03.995 500 FEE 443845 652 6115519 2024-02-29 17:01:03.995 2024-02-29 17:01:03.995 4500 TIP 443845 17365 6115528 2024-02-29 17:03:22.644 2024-02-29 17:03:22.644 1000 FEE 443865 18784 6115543 2024-02-29 17:03:43.171 2024-02-29 17:03:43.171 10000 FEE 443868 14381 6115547 2024-02-29 17:03:52.709 2024-02-29 17:03:52.709 6900 FEE 443861 670 6115548 2024-02-29 17:03:52.709 2024-02-29 17:03:52.709 62100 TIP 443861 19553 6115551 2024-02-29 17:03:53.111 2024-02-29 17:03:53.111 6900 FEE 443861 18139 6115552 2024-02-29 17:03:53.111 2024-02-29 17:03:53.111 62100 TIP 443861 14515 6115559 2024-02-29 17:03:53.566 2024-02-29 17:03:53.566 6900 FEE 443861 20980 6115560 2024-02-29 17:03:53.566 2024-02-29 17:03:53.566 62100 TIP 443861 19378 6115577 2024-02-29 17:04:41.333 2024-02-29 17:04:41.333 100 FEE 443577 19967 6115578 2024-02-29 17:04:41.333 2024-02-29 17:04:41.333 900 TIP 443577 11609 6115587 2024-02-29 17:04:47.09 2024-02-29 17:04:47.09 900 FEE 443864 19153 6115588 2024-02-29 17:04:47.09 2024-02-29 17:04:47.09 8100 TIP 443864 20129 6115601 2024-02-29 17:05:53.516 2024-02-29 17:05:53.516 2100 FEE 443611 11314 6115602 2024-02-29 17:05:53.516 2024-02-29 17:05:53.516 18900 TIP 443611 20523 6115625 2024-02-29 17:06:54.218 2024-02-29 17:06:54.218 10000 FEE 443799 18241 6115626 2024-02-29 17:06:54.218 2024-02-29 17:06:54.218 90000 TIP 443799 9334 6115640 2024-02-29 17:10:04.518 2024-02-29 17:10:04.518 3100 FEE 443799 1105 6115641 2024-02-29 17:10:04.518 2024-02-29 17:10:04.518 27900 TIP 443799 20439 6115642 2024-02-29 17:10:05.325 2024-02-29 17:10:05.325 27900 FEE 443799 19952 6115643 2024-02-29 17:10:05.325 2024-02-29 17:10:05.325 251100 TIP 443799 679 6115666 2024-02-29 17:13:02.352 2024-02-29 17:13:02.352 500 FEE 443872 13903 6115667 2024-02-29 17:13:02.352 2024-02-29 17:13:02.352 4500 TIP 443872 1785 6115669 2024-02-29 17:13:09.792 2024-02-29 17:13:09.792 1000 FEE 443878 9346 6115672 2024-02-29 17:13:52.694 2024-02-29 17:13:52.694 500 FEE 443873 4487 6115673 2024-02-29 17:13:52.694 2024-02-29 17:13:52.694 4500 TIP 443873 21494 6115687 2024-02-29 17:15:46.501 2024-02-29 17:15:46.501 10100 FEE 443577 13100 6115688 2024-02-29 17:15:46.501 2024-02-29 17:15:46.501 90900 TIP 443577 16145 6115705 2024-02-29 17:16:55.699 2024-02-29 17:16:55.699 7700 FEE 443861 11458 6115706 2024-02-29 17:16:55.699 2024-02-29 17:16:55.699 69300 TIP 443861 8796 6115755 2024-02-29 17:22:04.677 2024-02-29 17:22:04.677 2100 FEE 443866 3478 6115756 2024-02-29 17:22:04.677 2024-02-29 17:22:04.677 18900 TIP 443866 2576 6115759 2024-02-29 17:22:05.977 2024-02-29 17:22:05.977 2100 FEE 443866 726 6115760 2024-02-29 17:22:05.977 2024-02-29 17:22:05.977 18900 TIP 443866 11714 6115761 2024-02-29 17:22:07.244 2024-02-29 17:22:07.244 2100 FEE 443201 2459 6115762 2024-02-29 17:22:07.244 2024-02-29 17:22:07.244 18900 TIP 443201 9331 6115775 2024-02-29 17:23:01.799 2024-02-29 17:23:01.799 2100 FEE 443583 18751 6115776 2024-02-29 17:23:01.799 2024-02-29 17:23:01.799 18900 TIP 443583 21509 6115788 2024-02-29 17:23:26.131 2024-02-29 17:23:26.131 2100 FEE 443611 9820 6115789 2024-02-29 17:23:26.131 2024-02-29 17:23:26.131 18900 TIP 443611 12921 6115798 2024-02-29 17:24:15.735 2024-02-29 17:24:15.735 2100 FEE 443749 17494 6115799 2024-02-29 17:24:15.735 2024-02-29 17:24:15.735 18900 TIP 443749 672 6115808 2024-02-29 17:24:43.728 2024-02-29 17:24:43.728 100 FEE 443873 4027 6115809 2024-02-29 17:24:43.728 2024-02-29 17:24:43.728 900 TIP 443873 18344 6115829 2024-02-29 17:26:21.974 2024-02-29 17:26:21.974 1000 FEE 443897 2206 6115833 2024-02-29 17:26:36.159 2024-02-29 17:26:36.159 300 FEE 443057 11789 6115834 2024-02-29 17:26:36.159 2024-02-29 17:26:36.159 2700 TIP 443057 10490 6115847 2024-02-29 17:27:03.995 2024-02-29 17:27:03.995 300 FEE 443084 787 6115848 2024-02-29 17:27:03.995 2024-02-29 17:27:03.995 2700 TIP 443084 17109 6115859 2024-02-29 17:27:35.048 2024-02-29 17:27:35.048 100 FEE 443784 3979 6115860 2024-02-29 17:27:35.048 2024-02-29 17:27:35.048 900 TIP 443784 11789 6115869 2024-02-29 17:28:00.551 2024-02-29 17:28:00.551 5700 FEE 443790 794 6115870 2024-02-29 17:28:00.551 2024-02-29 17:28:00.551 51300 TIP 443790 2065 6115876 2024-02-29 17:28:55.18 2024-02-29 17:28:55.18 21000 FEE 443783 1729 6115877 2024-02-29 17:28:55.18 2024-02-29 17:28:55.18 189000 TIP 443783 21349 6050241 2024-02-24 02:03:03.76 2024-02-24 02:03:03.76 1000 STREAM 141924 1490 6050247 2024-02-24 02:05:03.794 2024-02-24 02:05:03.794 1000 STREAM 141924 20084 6050256 2024-02-24 02:07:03.789 2024-02-24 02:07:03.789 1000 STREAM 141924 1567 6050302 2024-02-24 02:17:03.84 2024-02-24 02:17:03.84 1000 STREAM 141924 13174 6050311 2024-02-24 02:19:03.842 2024-02-24 02:19:03.842 1000 STREAM 141924 19158 6050324 2024-02-24 02:22:03.856 2024-02-24 02:22:03.856 1000 STREAM 141924 20182 6050328 2024-02-24 02:23:03.85 2024-02-24 02:23:03.85 1000 STREAM 141924 2075 6115243 2024-02-29 16:46:02.444 2024-02-29 16:46:02.444 1000 STREAM 141924 17519 6115285 2024-02-29 16:48:02.459 2024-02-29 16:48:02.459 1000 STREAM 141924 2508 6115395 2024-02-29 16:53:02.453 2024-02-29 16:53:02.453 1000 STREAM 141924 14791 6115746 2024-02-29 17:20:02.622 2024-02-29 17:20:02.622 1000 STREAM 141924 9758 6115750 2024-02-29 17:22:02.599 2024-02-29 17:22:02.599 1000 STREAM 141924 21600 6115777 2024-02-29 17:23:02.595 2024-02-29 17:23:02.595 1000 STREAM 141924 7553 6115871 2024-02-29 17:28:02.619 2024-02-29 17:28:02.619 1000 STREAM 141924 706 6116246 2024-02-29 17:48:02.703 2024-02-29 17:48:02.703 1000 STREAM 141924 14489 6116298 2024-02-29 17:52:02.716 2024-02-29 17:52:02.716 1000 STREAM 141924 17415 6116358 2024-02-29 17:57:02.76 2024-02-29 17:57:02.76 1000 STREAM 141924 1773 6116372 2024-02-29 17:58:02.752 2024-02-29 17:58:02.752 1000 STREAM 141924 19021 6116374 2024-02-29 17:59:02.743 2024-02-29 17:59:02.743 1000 STREAM 141924 16879 6116395 2024-02-29 18:00:02.796 2024-02-29 18:00:02.796 1000 STREAM 141924 1286 6116440 2024-02-29 18:06:02.825 2024-02-29 18:06:02.825 1000 STREAM 141924 13878 6116455 2024-02-29 18:07:02.856 2024-02-29 18:07:02.856 1000 STREAM 141924 21523 6116503 2024-02-29 18:10:02.85 2024-02-29 18:10:02.85 1000 STREAM 141924 18412 6116515 2024-02-29 18:11:02.864 2024-02-29 18:11:02.864 1000 STREAM 141924 15556 6116533 2024-02-29 18:13:02.886 2024-02-29 18:13:02.886 1000 STREAM 141924 21521 6116539 2024-02-29 18:14:02.884 2024-02-29 18:14:02.884 1000 STREAM 141924 15526 6116558 2024-02-29 18:15:02.89 2024-02-29 18:15:02.89 1000 STREAM 141924 21494 6116562 2024-02-29 18:16:02.886 2024-02-29 18:16:02.886 1000 STREAM 141924 18774 6116586 2024-02-29 18:19:02.889 2024-02-29 18:19:02.889 1000 STREAM 141924 12516 6116591 2024-02-29 18:20:02.897 2024-02-29 18:20:02.897 1000 STREAM 141924 1320 6116634 2024-02-29 18:25:02.916 2024-02-29 18:25:02.916 1000 STREAM 141924 4250 6116639 2024-02-29 18:27:02.942 2024-02-29 18:27:02.942 1000 STREAM 141924 18231 6116661 2024-02-29 18:30:03.029 2024-02-29 18:30:03.029 1000 STREAM 141924 691 6116689 2024-02-29 18:34:03.042 2024-02-29 18:34:03.042 1000 STREAM 141924 21492 6116729 2024-02-29 18:37:03.069 2024-02-29 18:37:03.069 1000 STREAM 141924 13517 6116749 2024-02-29 18:38:03.072 2024-02-29 18:38:03.072 1000 STREAM 141924 18625 6116781 2024-02-29 18:40:03.068 2024-02-29 18:40:03.068 1000 STREAM 141924 11378 6116803 2024-02-29 18:41:03.083 2024-02-29 18:41:03.083 1000 STREAM 141924 19488 6116888 2024-02-29 18:45:03.088 2024-02-29 18:45:03.088 1000 STREAM 141924 775 6116897 2024-02-29 18:46:03.094 2024-02-29 18:46:03.094 1000 STREAM 141924 8080 6116950 2024-02-29 18:48:03.091 2024-02-29 18:48:03.091 1000 STREAM 141924 6653 6117077 2024-02-29 18:53:03.127 2024-02-29 18:53:03.127 1000 STREAM 141924 4250 6117592 2024-02-29 19:13:03.396 2024-02-29 19:13:03.396 1000 STREAM 141924 8954 6117615 2024-02-29 19:14:03.395 2024-02-29 19:14:03.395 1000 STREAM 141924 20106 6117622 2024-02-29 19:15:03.398 2024-02-29 19:15:03.398 1000 STREAM 141924 12057 6117674 2024-02-29 19:23:03.442 2024-02-29 19:23:03.442 1000 STREAM 141924 10291 6117704 2024-02-29 19:26:03.484 2024-02-29 19:26:03.484 1000 STREAM 141924 21238 6117958 2024-02-29 19:35:03.577 2024-02-29 19:35:03.577 1000 STREAM 141924 8400 6118106 2024-02-29 19:51:03.823 2024-02-29 19:51:03.823 1000 STREAM 141924 776 6118109 2024-02-29 19:52:03.825 2024-02-29 19:52:03.825 1000 STREAM 141924 16724 6118143 2024-02-29 19:55:03.853 2024-02-29 19:55:03.853 1000 STREAM 141924 12024 6118171 2024-02-29 19:58:03.866 2024-02-29 19:58:03.866 1000 STREAM 141924 21036 6118204 2024-02-29 20:00:03.945 2024-02-29 20:00:03.945 1000 STREAM 141924 12483 6118213 2024-02-29 20:01:03.907 2024-02-29 20:01:03.907 1000 STREAM 141924 18819 6118279 2024-02-29 20:03:03.923 2024-02-29 20:03:03.923 1000 STREAM 141924 16667 6118286 2024-02-29 20:04:03.916 2024-02-29 20:04:03.916 1000 STREAM 141924 21249 6118292 2024-02-29 20:05:03.937 2024-02-29 20:05:03.937 1000 STREAM 141924 21522 6118295 2024-02-29 20:06:03.956 2024-02-29 20:06:03.956 1000 STREAM 141924 9177 6118306 2024-02-29 20:08:03.968 2024-02-29 20:08:03.968 1000 STREAM 141924 11073 6118310 2024-02-29 20:10:04.008 2024-02-29 20:10:04.008 1000 STREAM 141924 21003 6118401 2024-02-29 20:16:04.034 2024-02-29 20:16:04.034 1000 STREAM 141924 985 6118405 2024-02-29 20:17:04.028 2024-02-29 20:17:04.028 1000 STREAM 141924 2046 6118455 2024-02-29 20:20:04.07 2024-02-29 20:20:04.07 1000 STREAM 141924 15624 6118540 2024-02-29 20:21:04.053 2024-02-29 20:21:04.053 1000 STREAM 141924 14651 6118570 2024-02-29 20:23:04.048 2024-02-29 20:23:04.048 1000 STREAM 141924 18174 6118584 2024-02-29 20:25:04.071 2024-02-29 20:25:04.071 1000 STREAM 141924 8289 6118596 2024-02-29 20:26:04.078 2024-02-29 20:26:04.078 1000 STREAM 141924 17030 6118615 2024-02-29 20:27:04.102 2024-02-29 20:27:04.102 1000 STREAM 141924 11942 6118647 2024-02-29 20:29:04.103 2024-02-29 20:29:04.103 1000 STREAM 141924 6526 6118651 2024-02-29 20:30:04.128 2024-02-29 20:30:04.128 1000 STREAM 141924 18664 6118732 2024-02-29 20:34:04.289 2024-02-29 20:34:04.289 1000 STREAM 141924 20546 6118824 2024-02-29 20:36:04.146 2024-02-29 20:36:04.146 1000 STREAM 141924 739 6118831 2024-02-29 20:38:04.167 2024-02-29 20:38:04.167 1000 STREAM 141924 19243 6118874 2024-02-29 20:39:04.17 2024-02-29 20:39:04.17 1000 STREAM 141924 17046 6118928 2024-02-29 20:40:04.182 2024-02-29 20:40:04.182 1000 STREAM 141924 19148 6118978 2024-02-29 20:43:04.19 2024-02-29 20:43:04.19 1000 STREAM 141924 657 6119000 2024-02-29 20:44:04.18 2024-02-29 20:44:04.18 1000 STREAM 141924 18690 6119020 2024-02-29 20:46:04.214 2024-02-29 20:46:04.214 1000 STREAM 141924 17673 6119032 2024-02-29 20:47:04.205 2024-02-29 20:47:04.205 1000 STREAM 141924 1737 6119053 2024-02-29 20:48:04.216 2024-02-29 20:48:04.216 1000 STREAM 141924 7675 6119070 2024-02-29 20:49:04.203 2024-02-29 20:49:04.203 1000 STREAM 141924 21044 6119142 2024-02-29 20:53:04.243 2024-02-29 20:53:04.243 1000 STREAM 141924 651 6119161 2024-02-29 20:54:04.232 2024-02-29 20:54:04.232 1000 STREAM 141924 1316 6119171 2024-02-29 20:55:04.246 2024-02-29 20:55:04.246 1000 STREAM 141924 1741 6119182 2024-02-29 20:56:04.244 2024-02-29 20:56:04.244 1000 STREAM 141924 11220 6119192 2024-02-29 20:57:04.261 2024-02-29 20:57:04.261 1000 STREAM 141924 13246 6119228 2024-02-29 21:00:04.286 2024-02-29 21:00:04.286 1000 STREAM 141924 9418 6119289 2024-02-29 21:04:04.283 2024-02-29 21:04:04.283 1000 STREAM 141924 2330 6119335 2024-02-29 21:05:04.286 2024-02-29 21:05:04.286 1000 STREAM 141924 14472 6119347 2024-02-29 21:07:04.297 2024-02-29 21:07:04.297 1000 STREAM 141924 18177 6119360 2024-02-29 21:08:04.308 2024-02-29 21:08:04.308 1000 STREAM 141924 8506 6119443 2024-02-29 21:14:04.332 2024-02-29 21:14:04.332 1000 STREAM 141924 18262 6119447 2024-02-29 21:15:04.358 2024-02-29 21:15:04.358 1000 STREAM 141924 12368 6119465 2024-02-29 21:17:04.346 2024-02-29 21:17:04.346 1000 STREAM 141924 16747 6119468 2024-02-29 21:18:04.356 2024-02-29 21:18:04.356 1000 STREAM 141924 14260 6119500 2024-02-29 21:23:04.39 2024-02-29 21:23:04.39 1000 STREAM 141924 1454 6119501 2024-02-29 21:24:04.393 2024-02-29 21:24:04.393 1000 STREAM 141924 4128 6119506 2024-02-29 21:25:04.402 2024-02-29 21:25:04.402 1000 STREAM 141924 20606 6119514 2024-02-29 21:26:04.412 2024-02-29 21:26:04.412 1000 STREAM 141924 12483 6119525 2024-02-29 21:27:04.418 2024-02-29 21:27:04.418 1000 STREAM 141924 20596 6050243 2024-02-24 02:03:25.906 2024-02-24 02:03:25.906 37800 TIP 436720 1534 6050280 2024-02-24 02:12:47.897 2024-02-24 02:12:47.897 100 FEE 436797 13553 6050281 2024-02-24 02:12:47.897 2024-02-24 02:12:47.897 900 TIP 436797 20973 6050282 2024-02-24 02:12:48.122 2024-02-24 02:12:48.122 900 FEE 436797 7891 6050283 2024-02-24 02:12:48.122 2024-02-24 02:12:48.122 8100 TIP 436797 11038 6050304 2024-02-24 02:17:55.728 2024-02-24 02:17:55.728 1000 FEE 436845 768 6050319 2024-02-24 02:20:26.832 2024-02-24 02:20:26.832 1300 FEE 436837 13132 6050320 2024-02-24 02:20:26.832 2024-02-24 02:20:26.832 11700 TIP 436837 6384 6050339 2024-02-24 02:25:56.41 2024-02-24 02:25:56.41 1000 FEE 436848 8916 6050348 2024-02-24 02:27:27.33 2024-02-24 02:27:27.33 1000 FEE 436851 20585 6050367 2024-02-24 02:32:25.29 2024-02-24 02:32:25.29 2100 FEE 436847 2232 6050368 2024-02-24 02:32:25.29 2024-02-24 02:32:25.29 18900 TIP 436847 17455 6050386 2024-02-24 02:37:21.052 2024-02-24 02:37:21.052 2100 FEE 436683 20326 6050387 2024-02-24 02:37:21.052 2024-02-24 02:37:21.052 18900 TIP 436683 698 6050435 2024-02-24 02:47:15.384 2024-02-24 02:47:15.384 100 FEE 436759 2528 6050436 2024-02-24 02:47:15.384 2024-02-24 02:47:15.384 900 TIP 436759 618 6050437 2024-02-24 02:47:15.58 2024-02-24 02:47:15.58 900 FEE 436759 20970 6050438 2024-02-24 02:47:15.58 2024-02-24 02:47:15.58 8100 TIP 436759 20370 6050449 2024-02-24 02:47:44.933 2024-02-24 02:47:44.933 900 FEE 436777 4958 6050450 2024-02-24 02:47:44.933 2024-02-24 02:47:44.933 8100 TIP 436777 20701 6050459 2024-02-24 02:47:47.79 2024-02-24 02:47:47.79 900 FEE 436786 2775 6050460 2024-02-24 02:47:47.79 2024-02-24 02:47:47.79 8100 TIP 436786 19189 6050501 2024-02-24 02:51:24.441 2024-02-24 02:51:24.441 2100 FEE 436709 21332 6050502 2024-02-24 02:51:24.441 2024-02-24 02:51:24.441 18900 TIP 436709 8870 6050547 2024-02-24 03:04:36.719 2024-02-24 03:04:36.719 1000 FEE 436870 21332 6050602 2024-02-24 03:21:59.906 2024-02-24 03:21:59.906 1000 FEE 436877 16532 6050663 2024-02-24 03:47:54.39 2024-02-24 03:47:54.39 1000 FEE 436805 20826 6050664 2024-02-24 03:47:54.39 2024-02-24 03:47:54.39 9000 TIP 436805 19320 6050681 2024-02-24 03:54:25.432 2024-02-24 03:54:25.432 8300 FEE 436720 19843 6050682 2024-02-24 03:54:25.432 2024-02-24 03:54:25.432 74700 TIP 436720 8729 6050687 2024-02-24 03:54:26.103 2024-02-24 03:54:26.103 8300 FEE 436720 1631 6050688 2024-02-24 03:54:26.103 2024-02-24 03:54:26.103 74700 TIP 436720 18641 6050709 2024-02-24 03:54:51.996 2024-02-24 03:54:51.996 8300 FEE 436773 1802 6050710 2024-02-24 03:54:51.996 2024-02-24 03:54:51.996 74700 TIP 436773 18892 6050754 2024-02-24 04:02:31.83 2024-02-24 04:02:31.83 1000 POLL 436759 14651 6050755 2024-02-24 04:02:36.896 2024-02-24 04:02:36.896 2100 FEE 436890 18511 6050756 2024-02-24 04:02:36.896 2024-02-24 04:02:36.896 18900 TIP 436890 18177 6050770 2024-02-24 04:03:44.855 2024-02-24 04:03:44.855 100000 FEE 436894 7986 6050830 2024-02-24 04:26:23.904 2024-02-24 04:26:23.904 1000 FEE 435847 14278 6050831 2024-02-24 04:26:23.904 2024-02-24 04:26:23.904 9000 TIP 435847 1114 6050843 2024-02-24 04:27:10.291 2024-02-24 04:27:10.291 1000 FEE 435950 15266 6050844 2024-02-24 04:27:10.291 2024-02-24 04:27:10.291 9000 TIP 435950 19613 6050864 2024-02-24 04:31:01.688 2024-02-24 04:31:01.688 1000 FEE 436792 21329 6050865 2024-02-24 04:31:01.688 2024-02-24 04:31:01.688 9000 TIP 436792 8168 6050867 2024-02-24 04:32:00.704 2024-02-24 04:32:00.704 1000 FEE 435950 2188 6050868 2024-02-24 04:32:00.704 2024-02-24 04:32:00.704 9000 TIP 435950 10519 6050881 2024-02-24 04:33:34.868 2024-02-24 04:33:34.868 1000 FEE 436241 14688 6050882 2024-02-24 04:33:34.868 2024-02-24 04:33:34.868 9000 TIP 436241 11621 6050897 2024-02-24 04:41:09.452 2024-02-24 04:41:09.452 1000 FEE 436909 21291 6050898 2024-02-24 04:41:09.452 2024-02-24 04:41:09.452 9000 TIP 436909 12334 6050902 2024-02-24 04:42:48.495 2024-02-24 04:42:48.495 1000 POLL 436759 15060 6050904 2024-02-24 04:43:37.816 2024-02-24 04:43:37.816 1000 POLL 436759 17415 6050912 2024-02-24 04:46:09.869 2024-02-24 04:46:09.869 800 FEE 436720 8326 6050913 2024-02-24 04:46:09.869 2024-02-24 04:46:09.869 7200 TIP 436720 20852 6050926 2024-02-24 04:46:11.669 2024-02-24 04:46:11.669 800 FEE 436720 12122 6050927 2024-02-24 04:46:11.669 2024-02-24 04:46:11.669 7200 TIP 436720 21296 6051006 2024-02-24 05:10:38.047 2024-02-24 05:10:38.047 1000 FEE 436919 18897 6051049 2024-02-24 05:11:52.757 2024-02-24 05:11:52.757 1000 FEE 420995 13348 6051050 2024-02-24 05:11:52.757 2024-02-24 05:11:52.757 9000 TIP 420995 18517 6051051 2024-02-24 05:11:53.29 2024-02-24 05:11:53.29 1000 FEE 420995 1890 6051052 2024-02-24 05:11:53.29 2024-02-24 05:11:53.29 9000 TIP 420995 21405 6051069 2024-02-24 05:11:55.981 2024-02-24 05:11:55.981 1000 FEE 420995 9921 6051070 2024-02-24 05:11:55.981 2024-02-24 05:11:55.981 9000 TIP 420995 17535 6051079 2024-02-24 05:11:57.273 2024-02-24 05:11:57.273 1000 FEE 420995 3729 6051080 2024-02-24 05:11:57.273 2024-02-24 05:11:57.273 9000 TIP 420995 11885 6051106 2024-02-24 05:12:04.742 2024-02-24 05:12:04.742 1000 FEE 420995 2774 6051107 2024-02-24 05:12:04.742 2024-02-24 05:12:04.742 9000 TIP 420995 19821 6051117 2024-02-24 05:12:43.992 2024-02-24 05:12:43.992 1000 FEE 433706 20897 6051118 2024-02-24 05:12:43.992 2024-02-24 05:12:43.992 9000 TIP 433706 17827 6051127 2024-02-24 05:12:46.764 2024-02-24 05:12:46.764 1000 FEE 433706 12819 6051128 2024-02-24 05:12:46.764 2024-02-24 05:12:46.764 9000 TIP 433706 16747 6051150 2024-02-24 05:14:55.878 2024-02-24 05:14:55.878 1000 FEE 411814 18658 6051151 2024-02-24 05:14:55.878 2024-02-24 05:14:55.878 9000 TIP 411814 917 6051158 2024-02-24 05:14:59.064 2024-02-24 05:14:59.064 1000 FEE 411814 16598 6050264 2024-02-24 02:08:02.997 2024-02-24 02:08:02.997 18900 TIP 436778 5112 6050294 2024-02-24 02:15:58.867 2024-02-24 02:15:58.867 1000 FEE 436843 19878 6050315 2024-02-24 02:20:26.454 2024-02-24 02:20:26.454 1300 FEE 436837 21585 6050316 2024-02-24 02:20:26.454 2024-02-24 02:20:26.454 11700 TIP 436837 667 6050329 2024-02-24 02:23:42.107 2024-02-24 02:23:42.107 400 FEE 436825 18402 6050330 2024-02-24 02:23:42.107 2024-02-24 02:23:42.107 3600 TIP 436825 18357 6050358 2024-02-24 02:30:04.551 2024-02-24 02:30:04.551 100000 FEE 436852 1425 6050419 2024-02-24 02:46:34.202 2024-02-24 02:46:34.202 100 FEE 436792 20681 6050420 2024-02-24 02:46:34.202 2024-02-24 02:46:34.202 900 TIP 436792 1609 6050451 2024-02-24 02:47:45.619 2024-02-24 02:47:45.619 9000 FEE 436777 1489 6050452 2024-02-24 02:47:45.619 2024-02-24 02:47:45.619 81000 TIP 436777 2206 6050463 2024-02-24 02:47:49.092 2024-02-24 02:47:49.092 900 FEE 436778 7425 6050464 2024-02-24 02:47:49.092 2024-02-24 02:47:49.092 8100 TIP 436778 994 6050478 2024-02-24 02:48:59.625 2024-02-24 02:48:59.625 100 FEE 436837 1773 6050479 2024-02-24 02:48:59.625 2024-02-24 02:48:59.625 900 TIP 436837 4378 6050503 2024-02-24 02:51:40.381 2024-02-24 02:51:40.381 100 FEE 436765 708 6050504 2024-02-24 02:51:40.381 2024-02-24 02:51:40.381 900 TIP 436765 8059 6050526 2024-02-24 02:59:07.432 2024-02-24 02:59:07.432 6900 FEE 436863 1272 6050527 2024-02-24 02:59:07.432 2024-02-24 02:59:07.432 62100 TIP 436863 10484 6050550 2024-02-24 03:06:00.179 2024-02-24 03:06:00.179 2100 FEE 436865 20509 6050551 2024-02-24 03:06:00.179 2024-02-24 03:06:00.179 18900 TIP 436865 4768 6050601 2024-02-24 03:21:47.17 2024-02-24 03:21:47.17 1000 POLL 436759 21116 6050612 2024-02-24 03:24:17.808 2024-02-24 03:24:17.808 2100 FEE 436830 19381 6050613 2024-02-24 03:24:17.808 2024-02-24 03:24:17.808 18900 TIP 436830 20006 6050643 2024-02-24 03:37:31.611 2024-02-24 03:37:31.611 1000 FEE 436885 21520 6050660 2024-02-24 03:47:47.146 2024-02-24 03:47:47.146 1000 FEE 436759 18468 6050661 2024-02-24 03:47:47.146 2024-02-24 03:47:47.146 9000 TIP 436759 18897 6050678 2024-02-24 03:52:45.505 2024-02-24 03:52:45.505 0 FEE 436777 9476 6050697 2024-02-24 03:54:26.962 2024-02-24 03:54:26.962 8300 FEE 436720 19289 6050698 2024-02-24 03:54:26.962 2024-02-24 03:54:26.962 74700 TIP 436720 19961 6050712 2024-02-24 03:55:52.753 2024-02-24 03:55:52.753 1000 FEE 436891 17001 6050721 2024-02-24 04:00:09.987 2024-02-24 04:00:09.987 2100 FEE 436792 1273 6050313 2024-02-24 02:19:34.727 2024-02-24 02:19:34.727 11700 TIP 436827 10821 6050326 2024-02-24 02:22:45.179 2024-02-24 02:22:45.179 2100 FEE 436564 9167 6050327 2024-02-24 02:22:45.179 2024-02-24 02:22:45.179 18900 TIP 436564 21072 6050355 2024-02-24 02:30:02.275 2024-02-24 02:30:02.275 2100 FEE 436752 18842 6050356 2024-02-24 02:30:02.275 2024-02-24 02:30:02.275 18900 TIP 436752 7587 6050372 2024-02-24 02:33:43.044 2024-02-24 02:33:43.044 1000 FEE 436855 18896 6050388 2024-02-24 02:37:24.588 2024-02-24 02:37:24.588 2100 FEE 436729 5776 6050389 2024-02-24 02:37:24.588 2024-02-24 02:37:24.588 18900 TIP 436729 4322 6050392 2024-02-24 02:37:29.063 2024-02-24 02:37:29.063 2100 FEE 436560 21058 6050393 2024-02-24 02:37:29.063 2024-02-24 02:37:29.063 18900 TIP 436560 2327 6050432 2024-02-24 02:47:13.929 2024-02-24 02:47:13.929 1000 POLL 436759 13544 6050434 2024-02-24 02:47:14.063 2024-02-24 02:47:14.063 1000 FEE 436862 1007 6050445 2024-02-24 02:47:36.841 2024-02-24 02:47:36.841 9000 FEE 436805 1038 6050446 2024-02-24 02:47:36.841 2024-02-24 02:47:36.841 81000 TIP 436805 21214 6050455 2024-02-24 02:47:47.073 2024-02-24 02:47:47.073 900 FEE 436793 12779 6050456 2024-02-24 02:47:47.073 2024-02-24 02:47:47.073 8100 TIP 436793 21218 6050465 2024-02-24 02:47:50.447 2024-02-24 02:47:50.447 100 FEE 436843 21437 6050466 2024-02-24 02:47:50.447 2024-02-24 02:47:50.447 900 TIP 436843 16351 6050467 2024-02-24 02:47:50.614 2024-02-24 02:47:50.614 900 FEE 436843 20511 6050468 2024-02-24 02:47:50.614 2024-02-24 02:47:50.614 8100 TIP 436843 20433 6050480 2024-02-24 02:48:59.789 2024-02-24 02:48:59.789 900 FEE 436837 21012 6050481 2024-02-24 02:48:59.789 2024-02-24 02:48:59.789 8100 TIP 436837 15060 6050517 2024-02-24 02:57:19.672 2024-02-24 02:57:19.672 1000 FEE 436864 8176 6050518 2024-02-24 02:57:30.68 2024-02-24 02:57:30.68 2100 FEE 436840 15213 6050519 2024-02-24 02:57:30.68 2024-02-24 02:57:30.68 18900 TIP 436840 21212 6050531 2024-02-24 02:59:45.566 2024-02-24 02:59:45.566 2100 FEE 436864 17212 6050532 2024-02-24 02:59:45.566 2024-02-24 02:59:45.566 18900 TIP 436864 7978 6050544 2024-02-24 03:03:27.571 2024-02-24 03:03:27.571 1000 FEE 436868 19652 6050566 2024-02-24 03:13:05.67 2024-02-24 03:13:05.67 2100 FEE 436872 20616 6050567 2024-02-24 03:13:05.67 2024-02-24 03:13:05.67 18900 TIP 436872 20585 6050575 2024-02-24 03:18:36.268 2024-02-24 03:18:36.268 1000 FEE 436241 1433 6050576 2024-02-24 03:18:36.268 2024-02-24 03:18:36.268 9000 TIP 436241 12265 6050580 2024-02-24 03:18:42.461 2024-02-24 03:18:42.461 2100 FEE 436759 7772 6050581 2024-02-24 03:18:42.461 2024-02-24 03:18:42.461 18900 TIP 436759 12139 6050592 2024-02-24 03:20:24.818 2024-02-24 03:20:24.818 4200 FEE 436752 11515 6050593 2024-02-24 03:20:24.818 2024-02-24 03:20:24.818 37800 TIP 436752 2674 6050594 2024-02-24 03:20:35.555 2024-02-24 03:20:35.555 1000 FEE 436876 18923 6050596 2024-02-24 03:21:17.076 2024-02-24 03:21:17.076 1000 POLL 436759 9159 6050599 2024-02-24 03:21:34.929 2024-02-24 03:21:34.929 1000 FEE 436873 16704 6050600 2024-02-24 03:21:34.929 2024-02-24 03:21:34.929 9000 TIP 436873 1195 6050604 2024-02-24 03:22:10.291 2024-02-24 03:22:10.291 1000 FEE 436878 12356 6050641 2024-02-24 03:36:53.721 2024-02-24 03:36:53.721 1000 FEE 436884 766 6050657 2024-02-24 03:47:19.075 2024-02-24 03:47:19.075 1000 FEE 436886 21455 6050666 2024-02-24 03:48:09.094 2024-02-24 03:48:09.094 1000 FEE 436853 20084 6050667 2024-02-24 03:48:09.094 2024-02-24 03:48:09.094 9000 TIP 436853 1773 6050703 2024-02-24 03:54:27.343 2024-02-24 03:54:27.343 8300 FEE 436720 10280 6050704 2024-02-24 03:54:27.343 2024-02-24 03:54:27.343 74700 TIP 436720 16309 6050719 2024-02-24 03:59:42.593 2024-02-24 03:59:42.593 10000 FEE 436892 9346 6050725 2024-02-24 04:00:16.031 2024-02-24 04:00:16.031 2100 FEE 436752 7869 6050726 2024-02-24 04:00:16.031 2024-02-24 04:00:16.031 18900 TIP 436752 18809 6050774 2024-02-24 04:06:26.392 2024-02-24 04:06:26.392 100000 FEE 436895 683 6050802 2024-02-24 04:15:24.666 2024-02-24 04:15:24.666 2800 FEE 436835 21332 6050803 2024-02-24 04:15:24.666 2024-02-24 04:15:24.666 25200 TIP 436835 5175 6050805 2024-02-24 04:16:12.951 2024-02-24 04:16:12.951 1000 FEE 436905 16442 6050812 2024-02-24 04:16:54.38 2024-02-24 04:16:54.38 100 FEE 436888 2029 6050813 2024-02-24 04:16:54.38 2024-02-24 04:16:54.38 900 TIP 436888 20616 6050814 2024-02-24 04:16:54.623 2024-02-24 04:16:54.623 900 FEE 436888 5497 6050815 2024-02-24 04:16:54.623 2024-02-24 04:16:54.623 8100 TIP 436888 13903 6050828 2024-02-24 04:26:22.949 2024-02-24 04:26:22.949 1000 FEE 436669 20837 6050829 2024-02-24 04:26:22.949 2024-02-24 04:26:22.949 9000 TIP 436669 965 6050847 2024-02-24 04:27:36.73 2024-02-24 04:27:36.73 1000 FEE 436303 882 6050848 2024-02-24 04:27:36.73 2024-02-24 04:27:36.73 9000 TIP 436303 20657 6050891 2024-02-24 04:38:37.652 2024-02-24 04:38:37.652 1000 FEE 436912 19583 6050981 2024-02-24 05:04:08.801 2024-02-24 05:04:08.801 1000 POLL 436759 21401 6050340 2024-02-24 02:26:04.092 2024-02-24 02:26:04.092 1000 STREAM 141924 1320 6050349 2024-02-24 02:28:04.111 2024-02-24 02:28:04.111 1000 STREAM 141924 1534 6050364 2024-02-24 02:31:04.129 2024-02-24 02:31:04.129 1000 STREAM 141924 9345 6050369 2024-02-24 02:33:04.16 2024-02-24 02:33:04.16 1000 STREAM 141924 2444 6050378 2024-02-24 02:36:04.169 2024-02-24 02:36:04.169 1000 STREAM 141924 10469 6050383 2024-02-24 02:37:04.18 2024-02-24 02:37:04.18 1000 STREAM 141924 1221 6050400 2024-02-24 02:40:04.213 2024-02-24 02:40:04.213 1000 STREAM 141924 4064 6050404 2024-02-24 02:42:04.24 2024-02-24 02:42:04.24 1000 STREAM 141924 2444 6050413 2024-02-24 02:43:04.245 2024-02-24 02:43:04.245 1000 STREAM 141924 17522 6050414 2024-02-24 02:44:04.24 2024-02-24 02:44:04.24 1000 STREAM 141924 14202 6050417 2024-02-24 02:46:04.276 2024-02-24 02:46:04.276 1000 STREAM 141924 20205 6050431 2024-02-24 02:47:04.285 2024-02-24 02:47:04.285 1000 STREAM 141924 5377 6050484 2024-02-24 02:49:04.293 2024-02-24 02:49:04.293 1000 STREAM 141924 18865 6050489 2024-02-24 02:50:04.31 2024-02-24 02:50:04.31 1000 STREAM 141924 886 6050500 2024-02-24 02:51:04.314 2024-02-24 02:51:04.314 1000 STREAM 141924 7772 6050508 2024-02-24 02:53:04.351 2024-02-24 02:53:04.351 1000 STREAM 141924 20015 6050511 2024-02-24 02:54:04.357 2024-02-24 02:54:04.357 1000 STREAM 141924 10469 6050513 2024-02-24 02:55:04.374 2024-02-24 02:55:04.374 1000 STREAM 141924 6471 6050523 2024-02-24 02:59:04.541 2024-02-24 02:59:04.541 1000 STREAM 141924 20036 6050536 2024-02-24 03:02:04.566 2024-02-24 03:02:04.566 1000 STREAM 141924 2203 6050539 2024-02-24 03:03:04.575 2024-02-24 03:03:04.575 1000 STREAM 141924 16704 6050545 2024-02-24 03:04:04.585 2024-02-24 03:04:04.585 1000 STREAM 141924 11522 6050548 2024-02-24 03:05:04.599 2024-02-24 03:05:04.599 1000 STREAM 141924 5728 6050553 2024-02-24 03:07:04.589 2024-02-24 03:07:04.589 1000 STREAM 141924 9336 6050556 2024-02-24 03:09:04.638 2024-02-24 03:09:04.638 1000 STREAM 141924 15521 6050570 2024-02-24 03:16:04.713 2024-02-24 03:16:04.713 1000 STREAM 141924 19174 6050571 2024-02-24 03:17:04.713 2024-02-24 03:17:04.713 1000 STREAM 141924 10342 6050574 2024-02-24 03:18:04.766 2024-02-24 03:18:04.766 1000 STREAM 141924 11522 6050589 2024-02-24 03:20:04.745 2024-02-24 03:20:04.745 1000 STREAM 141924 1802 6115295 2024-02-29 16:48:51.419 2024-02-29 16:48:51.419 27900 TIP 443825 21578 6115299 2024-02-29 16:48:55.947 2024-02-29 16:48:55.947 100 FEE 443589 1726 6115300 2024-02-29 16:48:55.947 2024-02-29 16:48:55.947 900 TIP 443589 17570 6115301 2024-02-29 16:48:56.463 2024-02-29 16:48:56.463 900 FEE 443589 2757 6115302 2024-02-29 16:48:56.463 2024-02-29 16:48:56.463 8100 TIP 443589 814 6050341 2024-02-24 02:26:22.229 2024-02-24 02:26:22.229 10000 FEE 436729 1890 6050342 2024-02-24 02:26:22.229 2024-02-24 02:26:22.229 90000 TIP 436729 19553 6050361 2024-02-24 02:30:48.068 2024-02-24 02:30:48.068 1000 FEE 436853 18862 6050362 2024-02-24 02:30:50.592 2024-02-24 02:30:50.592 6900 FEE 436833 19105 6050363 2024-02-24 02:30:50.592 2024-02-24 02:30:50.592 62100 TIP 436833 4521 6050370 2024-02-24 02:33:09.56 2024-02-24 02:33:09.56 2100 FEE 436843 5085 6050371 2024-02-24 02:33:09.56 2024-02-24 02:33:09.56 18900 TIP 436843 17570 6050427 2024-02-24 02:46:44.699 2024-02-24 02:46:44.699 900 FEE 436811 4624 6050428 2024-02-24 02:46:44.699 2024-02-24 02:46:44.699 8100 TIP 436811 5694 6050429 2024-02-24 02:46:49.283 2024-02-24 02:46:49.283 9000 FEE 436811 15063 6050430 2024-02-24 02:46:49.283 2024-02-24 02:46:49.283 81000 TIP 436811 20606 6050439 2024-02-24 02:47:16.003 2024-02-24 02:47:16.003 9000 FEE 436759 10409 6050346 2024-02-24 02:27:07.852 2024-02-24 02:27:07.852 1000 FEE 436849 20912 6050350 2024-02-24 02:28:46.028 2024-02-24 02:28:46.028 4000 FEE 436683 20687 6050351 2024-02-24 02:28:46.028 2024-02-24 02:28:46.028 36000 TIP 436683 20597 6050359 2024-02-24 02:30:43.672 2024-02-24 02:30:43.672 2100 FEE 436837 894 6050360 2024-02-24 02:30:43.672 2024-02-24 02:30:43.672 18900 TIP 436837 17166 6050381 2024-02-24 02:37:01.619 2024-02-24 02:37:01.619 2100 FEE 436720 1291 6050382 2024-02-24 02:37:01.619 2024-02-24 02:37:01.619 18900 TIP 436720 16355 6050384 2024-02-24 02:37:20.1 2024-02-24 02:37:20.1 2100 FEE 436669 20490 6050385 2024-02-24 02:37:20.1 2024-02-24 02:37:20.1 18900 TIP 436669 12122 6050390 2024-02-24 02:37:26.197 2024-02-24 02:37:26.197 2100 FEE 436733 16556 6050391 2024-02-24 02:37:26.197 2024-02-24 02:37:26.197 18900 TIP 436733 4958 6050394 2024-02-24 02:38:02.29 2024-02-24 02:38:02.29 1000 FEE 436857 12188 6050402 2024-02-24 02:41:31.222 2024-02-24 02:41:31.222 1000 FEE 436859 19888 6050416 2024-02-24 02:45:21.668 2024-02-24 02:45:21.668 1000 FEE 436860 19842 6050441 2024-02-24 02:47:35.826 2024-02-24 02:47:35.826 100 FEE 436805 20889 6050442 2024-02-24 02:47:35.826 2024-02-24 02:47:35.826 900 TIP 436805 13399 6050461 2024-02-24 02:47:48.954 2024-02-24 02:47:48.954 100 FEE 436778 19044 6050462 2024-02-24 02:47:48.954 2024-02-24 02:47:48.954 900 TIP 436778 20481 6050482 2024-02-24 02:49:00.828 2024-02-24 02:49:00.828 9000 FEE 436837 21509 6050483 2024-02-24 02:49:00.828 2024-02-24 02:49:00.828 81000 TIP 436837 20370 6050490 2024-02-24 02:50:12.033 2024-02-24 02:50:12.033 100 FEE 436752 1713 6050491 2024-02-24 02:50:12.033 2024-02-24 02:50:12.033 900 TIP 436752 992 6050530 2024-02-24 02:59:43.388 2024-02-24 02:59:43.388 1000 FEE 436865 16270 6050540 2024-02-24 03:03:07.26 2024-02-24 03:03:07.26 2800 FEE 300964 19118 6050541 2024-02-24 03:03:07.26 2024-02-24 03:03:07.26 25200 TIP 300964 6594 6050549 2024-02-24 03:05:46.351 2024-02-24 03:05:46.351 0 FEE 436870 20464 6050558 2024-02-24 03:09:08.058 2024-02-24 03:09:08.058 2100 FEE 436870 20563 6050559 2024-02-24 03:09:08.058 2024-02-24 03:09:08.058 18900 TIP 436870 946 6050564 2024-02-24 03:13:01.918 2024-02-24 03:13:01.918 1000 FEE 436873 1751 6050610 2024-02-24 03:24:07 2024-02-24 03:24:07 2100 FEE 436877 13249 6050611 2024-02-24 03:24:07 2024-02-24 03:24:07 18900 TIP 436877 21514 6050615 2024-02-24 03:25:08.932 2024-02-24 03:25:08.932 1000 FEE 436880 21208 6050619 2024-02-24 03:27:41.44 2024-02-24 03:27:41.44 4000 FEE 436844 17798 6050620 2024-02-24 03:27:41.44 2024-02-24 03:27:41.44 36000 TIP 436844 11819 6050653 2024-02-24 03:44:21.694 2024-02-24 03:44:21.694 1000 POLL 436759 6471 6050658 2024-02-24 03:47:29.35 2024-02-24 03:47:29.35 2100 FEE 436556 15662 6050659 2024-02-24 03:47:29.35 2024-02-24 03:47:29.35 18900 TIP 436556 20597 6050685 2024-02-24 03:54:25.795 2024-02-24 03:54:25.795 8300 FEE 436720 19976 6050686 2024-02-24 03:54:25.795 2024-02-24 03:54:25.795 74700 TIP 436720 20490 6050723 2024-02-24 04:00:12.663 2024-02-24 04:00:12.663 2100 FEE 436837 21446 6050440 2024-02-24 02:47:16.003 2024-02-24 02:47:16.003 81000 TIP 436759 21228 6050443 2024-02-24 02:47:36.008 2024-02-24 02:47:36.008 900 FEE 436805 2748 6050444 2024-02-24 02:47:36.008 2024-02-24 02:47:36.008 8100 TIP 436805 18473 6050469 2024-02-24 02:48:03.851 2024-02-24 02:48:03.851 100 FEE 436823 9367 6050470 2024-02-24 02:48:03.851 2024-02-24 02:48:03.851 900 TIP 436823 1564 6050487 2024-02-24 02:49:25.472 2024-02-24 02:49:25.472 100 FEE 436683 2335 6050488 2024-02-24 02:49:25.472 2024-02-24 02:49:25.472 900 TIP 436683 11314 6050492 2024-02-24 02:50:12.212 2024-02-24 02:50:12.212 900 FEE 436752 17494 6050493 2024-02-24 02:50:12.212 2024-02-24 02:50:12.212 8100 TIP 436752 20757 6050509 2024-02-24 02:53:37.709 2024-02-24 02:53:37.709 2100 FEE 436643 18116 6050510 2024-02-24 02:53:37.709 2024-02-24 02:53:37.709 18900 TIP 436643 20208 6050521 2024-02-24 02:58:46.968 2024-02-24 02:58:46.968 2100 FEE 436752 21493 6050522 2024-02-24 02:58:46.968 2024-02-24 02:58:46.968 18900 TIP 436752 16809 6050537 2024-02-24 03:02:19.6 2024-02-24 03:02:19.6 1000 FEE 436867 20616 6050578 2024-02-24 03:18:40.697 2024-02-24 03:18:40.697 1000 FEE 436593 4250 6050579 2024-02-24 03:18:40.697 2024-02-24 03:18:40.697 9000 TIP 436593 4064 6050586 2024-02-24 03:19:20.636 2024-02-24 03:19:20.636 2100 FEE 436837 14278 6050587 2024-02-24 03:19:20.636 2024-02-24 03:19:20.636 18900 TIP 436837 6526 6050588 2024-02-24 03:19:32.401 2024-02-24 03:19:32.401 1000 FEE 436875 2162 6050621 2024-02-24 03:27:42.826 2024-02-24 03:27:42.826 4000 FEE 436828 11298 6050622 2024-02-24 03:27:42.826 2024-02-24 03:27:42.826 36000 TIP 436828 14939 6050693 2024-02-24 03:54:26.63 2024-02-24 03:54:26.63 16600 FEE 436720 16680 6050694 2024-02-24 03:54:26.63 2024-02-24 03:54:26.63 149400 TIP 436720 21329 6050701 2024-02-24 03:54:27.159 2024-02-24 03:54:27.159 8300 FEE 436720 11621 6050702 2024-02-24 03:54:27.159 2024-02-24 03:54:27.159 74700 TIP 436720 21386 6050745 2024-02-24 04:01:37.661 2024-02-24 04:01:37.661 2100 FEE 436744 18556 6050746 2024-02-24 04:01:37.661 2024-02-24 04:01:37.661 18900 TIP 436744 21485 6050759 2024-02-24 04:02:46.84 2024-02-24 04:02:46.84 2100 FEE 436705 19637 6050760 2024-02-24 04:02:46.84 2024-02-24 04:02:46.84 18900 TIP 436705 16667 6050782 2024-02-24 04:10:53.653 2024-02-24 04:10:53.653 10000 FEE 435328 20301 6050783 2024-02-24 04:10:53.653 2024-02-24 04:10:53.653 90000 TIP 435328 8448 6050785 2024-02-24 04:11:30.126 2024-02-24 04:11:30.126 21000 FEE 436899 20264 6050789 2024-02-24 04:12:55.581 2024-02-24 04:12:55.581 1000 FEE 436900 16839 6050800 2024-02-24 04:15:17.843 2024-02-24 04:15:17.843 1000 FEE 436903 12965 6050801 2024-02-24 04:15:19.368 2024-02-24 04:15:19.368 1000 FEE 436904 18664 6050807 2024-02-24 04:16:18.218 2024-02-24 04:16:18.218 2800 FEE 436795 14959 6050808 2024-02-24 04:16:18.218 2024-02-24 04:16:18.218 25200 TIP 436795 15100 6050832 2024-02-24 04:26:25.458 2024-02-24 04:26:25.458 1000 FEE 435944 19557 6050833 2024-02-24 04:26:25.458 2024-02-24 04:26:25.458 9000 TIP 435944 5308 6050856 2024-02-24 04:30:58.622 2024-02-24 04:30:58.622 1000 FEE 436753 20642 6050857 2024-02-24 04:30:58.622 2024-02-24 04:30:58.622 9000 TIP 436753 896 6050872 2024-02-24 04:32:47.91 2024-02-24 04:32:47.91 1000 FEE 436603 2285 6050873 2024-02-24 04:32:47.91 2024-02-24 04:32:47.91 9000 TIP 436603 20597 6050879 2024-02-24 04:33:34.168 2024-02-24 04:33:34.168 1000 FEE 436556 20687 6050880 2024-02-24 04:33:34.168 2024-02-24 04:33:34.168 9000 TIP 436556 20973 6050910 2024-02-24 04:46:09.67 2024-02-24 04:46:09.67 800 FEE 436720 18816 6050911 2024-02-24 04:46:09.67 2024-02-24 04:46:09.67 7200 TIP 436720 1389 6050918 2024-02-24 04:46:10.47 2024-02-24 04:46:10.47 800 FEE 436720 20816 6050919 2024-02-24 04:46:10.47 2024-02-24 04:46:10.47 7200 TIP 436720 695 6050934 2024-02-24 04:46:12.461 2024-02-24 04:46:12.461 800 FEE 436720 9351 6050935 2024-02-24 04:46:12.461 2024-02-24 04:46:12.461 7200 TIP 436720 21480 6050940 2024-02-24 04:47:02.864 2024-02-24 04:47:02.864 800 FEE 436799 18051 6050941 2024-02-24 04:47:02.864 2024-02-24 04:47:02.864 7200 TIP 436799 11819 6050942 2024-02-24 04:47:03.031 2024-02-24 04:47:03.031 800 FEE 436799 21242 6050943 2024-02-24 04:47:03.031 2024-02-24 04:47:03.031 7200 TIP 436799 7983 6050968 2024-02-24 04:55:29.465 2024-02-24 04:55:29.465 100 FEE 435857 19309 6050969 2024-02-24 04:55:29.465 2024-02-24 04:55:29.465 900 TIP 435857 4059 6050978 2024-02-24 05:02:35.625 2024-02-24 05:02:35.625 1000 FEE 436917 17710 6051013 2024-02-24 05:11:35.594 2024-02-24 05:11:35.594 1000 FEE 420323 19333 6051014 2024-02-24 05:11:35.594 2024-02-24 05:11:35.594 9000 TIP 420323 10519 6051055 2024-02-24 05:11:53.654 2024-02-24 05:11:53.654 1000 FEE 420995 8173 6051056 2024-02-24 05:11:53.654 2024-02-24 05:11:53.654 9000 TIP 420995 854 6051067 2024-02-24 05:11:55.768 2024-02-24 05:11:55.768 1000 FEE 420995 13398 6051068 2024-02-24 05:11:55.768 2024-02-24 05:11:55.768 9000 TIP 420995 9611 6051077 2024-02-24 05:11:56.952 2024-02-24 05:11:56.952 1000 FEE 420995 1010 6051078 2024-02-24 05:11:56.952 2024-02-24 05:11:56.952 9000 TIP 420995 20802 6051083 2024-02-24 05:11:57.866 2024-02-24 05:11:57.866 1000 FEE 420995 10283 6051084 2024-02-24 05:11:57.866 2024-02-24 05:11:57.866 9000 TIP 420995 20179 6051134 2024-02-24 05:13:38.078 2024-02-24 05:13:38.078 1000 FEE 432899 21178 6051135 2024-02-24 05:13:38.078 2024-02-24 05:13:38.078 9000 TIP 432899 12821 6051156 2024-02-24 05:14:58.705 2024-02-24 05:14:58.705 1000 FEE 411814 17696 6051157 2024-02-24 05:14:58.705 2024-02-24 05:14:58.705 9000 TIP 411814 21090 6051183 2024-02-24 05:15:05.047 2024-02-24 05:15:05.047 1000 FEE 411866 9099 6051184 2024-02-24 05:15:05.047 2024-02-24 05:15:05.047 9000 TIP 411866 19105 6051185 2024-02-24 05:15:05.183 2024-02-24 05:15:05.183 1000 FEE 411866 21051 6051186 2024-02-24 05:15:05.183 2024-02-24 05:15:05.183 9000 TIP 411866 19572 6051193 2024-02-24 05:15:38.391 2024-02-24 05:15:38.391 1000 FEE 436923 9339 6051203 2024-02-24 05:18:07.697 2024-02-24 05:18:07.697 2100 FEE 436909 679 6051204 2024-02-24 05:18:07.697 2024-02-24 05:18:07.697 18900 TIP 436909 19465 6051208 2024-02-24 05:20:21.362 2024-02-24 05:20:21.362 1000 POLL 436759 13076 6051250 2024-02-24 05:36:34.199 2024-02-24 05:36:34.199 2100 FEE 436914 20730 6051251 2024-02-24 05:36:34.199 2024-02-24 05:36:34.199 18900 TIP 436914 10094 6051260 2024-02-24 05:42:19.382 2024-02-24 05:42:19.382 800 FEE 436683 20218 6051261 2024-02-24 05:42:19.382 2024-02-24 05:42:19.382 7200 TIP 436683 17519 6051276 2024-02-24 05:46:28.607 2024-02-24 05:46:28.607 2100 FEE 436750 12930 6051277 2024-02-24 05:46:28.607 2024-02-24 05:46:28.607 18900 TIP 436750 19777 6051298 2024-02-24 05:56:20.87 2024-02-24 05:56:20.87 100 FEE 436934 20430 6051299 2024-02-24 05:56:20.87 2024-02-24 05:56:20.87 900 TIP 436934 19533 6051300 2024-02-24 05:56:26.297 2024-02-24 05:56:26.297 100 FEE 436926 21585 6051301 2024-02-24 05:56:26.297 2024-02-24 05:56:26.297 900 TIP 436926 10818 6051331 2024-02-24 06:10:57.385 2024-02-24 06:10:57.385 2100 FEE 436566 8173 6051332 2024-02-24 06:10:57.385 2024-02-24 06:10:57.385 18900 TIP 436566 19553 6051343 2024-02-24 06:10:58.471 2024-02-24 06:10:58.471 2100 FEE 436566 629 6051344 2024-02-24 06:10:58.471 2024-02-24 06:10:58.471 18900 TIP 436566 16301 6051406 2024-02-24 06:26:27.667 2024-02-24 06:26:27.667 2100 FEE 436753 3709 6051407 2024-02-24 06:26:27.667 2024-02-24 06:26:27.667 18900 TIP 436753 21262 6051412 2024-02-24 06:27:32.84 2024-02-24 06:27:32.84 2100 FEE 436820 11648 6051413 2024-02-24 06:27:32.84 2024-02-24 06:27:32.84 18900 TIP 436820 3440 6115383 2024-02-29 16:52:07.008 2024-02-29 16:52:07.008 500 FEE 443836 15103 6050475 2024-02-24 02:48:36.47 2024-02-24 02:48:36.47 9000 TIP 436827 7125 6050505 2024-02-24 02:51:40.58 2024-02-24 02:51:40.58 900 FEE 436765 18124 6050506 2024-02-24 02:51:40.58 2024-02-24 02:51:40.58 8100 TIP 436765 1237 6050512 2024-02-24 02:54:04.925 2024-02-24 02:54:04.925 1000 FEE 436863 14705 6050524 2024-02-24 02:59:07.284 2024-02-24 02:59:07.284 6900 FEE 436863 2338 6050525 2024-02-24 02:59:07.284 2024-02-24 02:59:07.284 62100 TIP 436863 14905 6050528 2024-02-24 02:59:07.565 2024-02-24 02:59:07.565 6900 FEE 436863 1571 6050529 2024-02-24 02:59:07.565 2024-02-24 02:59:07.565 62100 TIP 436863 6382 6050546 2024-02-24 03:04:33.193 2024-02-24 03:04:33.193 10000 FEE 436869 17106 6050557 2024-02-24 03:09:06.552 2024-02-24 03:09:06.552 1000 FEE 436871 2513 6050572 2024-02-24 03:17:34.323 2024-02-24 03:17:34.323 4200 FEE 436837 16097 6050573 2024-02-24 03:17:34.323 2024-02-24 03:17:34.323 37800 TIP 436837 19378 6050617 2024-02-24 03:27:01.747 2024-02-24 03:27:01.747 1000 FEE 436881 1571 6050638 2024-02-24 03:35:57.273 2024-02-24 03:35:57.273 2100 FEE 436560 15119 6050639 2024-02-24 03:35:57.273 2024-02-24 03:35:57.273 18900 TIP 436560 623 6050668 2024-02-24 03:48:10.122 2024-02-24 03:48:10.122 1000 POLL 436759 19809 6050669 2024-02-24 03:48:24.514 2024-02-24 03:48:24.514 1000 FEE 436743 2188 6050670 2024-02-24 03:48:24.514 2024-02-24 03:48:24.514 9000 TIP 436743 16789 6050689 2024-02-24 03:54:26.128 2024-02-24 03:54:26.128 16600 FEE 436720 4570 6050690 2024-02-24 03:54:26.128 2024-02-24 03:54:26.128 149400 TIP 436720 631 6050691 2024-02-24 03:54:26.266 2024-02-24 03:54:26.266 8300 FEE 436720 21269 6050692 2024-02-24 03:54:26.266 2024-02-24 03:54:26.266 74700 TIP 436720 722 6050695 2024-02-24 03:54:26.712 2024-02-24 03:54:26.712 16600 FEE 436720 687 6050696 2024-02-24 03:54:26.712 2024-02-24 03:54:26.712 149400 TIP 436720 15925 6050699 2024-02-24 03:54:27.041 2024-02-24 03:54:27.041 8300 FEE 436720 11798 6050700 2024-02-24 03:54:27.041 2024-02-24 03:54:27.041 74700 TIP 436720 1806 6050705 2024-02-24 03:54:51.793 2024-02-24 03:54:51.793 8300 FEE 436773 12768 6050706 2024-02-24 03:54:51.793 2024-02-24 03:54:51.793 74700 TIP 436773 20243 6050733 2024-02-24 04:00:38.923 2024-02-24 04:00:38.923 2100 FEE 436805 2195 6050734 2024-02-24 04:00:38.923 2024-02-24 04:00:38.923 18900 TIP 436805 18412 6050735 2024-02-24 04:00:44.013 2024-02-24 04:00:44.013 1000 POLL 436759 16447 6050764 2024-02-24 04:03:06.663 2024-02-24 04:03:06.663 2100 FEE 436691 769 6050765 2024-02-24 04:03:06.663 2024-02-24 04:03:06.663 18900 TIP 436691 6533 6050768 2024-02-24 04:03:27.702 2024-02-24 04:03:27.702 6900 FEE 436893 17082 6050769 2024-02-24 04:03:27.702 2024-02-24 04:03:27.702 62100 TIP 436893 1326 6050793 2024-02-24 04:13:12.454 2024-02-24 04:13:12.454 1000 FEE 436901 18330 6050845 2024-02-24 04:27:24.839 2024-02-24 04:27:24.839 1000 FEE 436750 675 6050846 2024-02-24 04:27:24.839 2024-02-24 04:27:24.839 9000 TIP 436750 2757 6050852 2024-02-24 04:28:08.986 2024-02-24 04:28:08.986 1000 FEE 436908 10536 6050862 2024-02-24 04:31:01.07 2024-02-24 04:31:01.07 1000 FEE 436837 19668 6050863 2024-02-24 04:31:01.07 2024-02-24 04:31:01.07 9000 TIP 436837 19021 6050889 2024-02-24 04:37:04.07 2024-02-24 04:37:04.07 1000 FEE 436911 1712 6050920 2024-02-24 04:46:11.074 2024-02-24 04:46:11.074 800 FEE 436720 21453 6050921 2024-02-24 04:46:11.074 2024-02-24 04:46:11.074 7200 TIP 436720 20133 6050928 2024-02-24 04:46:11.82 2024-02-24 04:46:11.82 800 FEE 436720 8133 6050929 2024-02-24 04:46:11.82 2024-02-24 04:46:11.82 7200 TIP 436720 16667 6050938 2024-02-24 04:46:12.827 2024-02-24 04:46:12.827 800 FEE 436720 2213 6050939 2024-02-24 04:46:12.827 2024-02-24 04:46:12.827 7200 TIP 436720 2056 6050951 2024-02-24 04:52:37.958 2024-02-24 04:52:37.958 1000 FEE 436914 18368 6050984 2024-02-24 05:05:14.468 2024-02-24 05:05:14.468 1000 FEE 436918 20246 6050996 2024-02-24 05:08:55.679 2024-02-24 05:08:55.679 2600 FEE 436870 12334 6050997 2024-02-24 05:08:55.679 2024-02-24 05:08:55.679 23400 TIP 436870 20981 6050999 2024-02-24 05:09:18.531 2024-02-24 05:09:18.531 2600 FEE 436872 21412 6051000 2024-02-24 05:09:18.531 2024-02-24 05:09:18.531 23400 TIP 436872 19394 6051031 2024-02-24 05:11:38.187 2024-02-24 05:11:38.187 1000 FEE 420323 670 6051032 2024-02-24 05:11:38.187 2024-02-24 05:11:38.187 9000 TIP 420323 6421 6051037 2024-02-24 05:11:39.048 2024-02-24 05:11:39.048 2000 FEE 420323 16042 6051038 2024-02-24 05:11:39.048 2024-02-24 05:11:39.048 18000 TIP 420323 1195 6051057 2024-02-24 05:11:53.992 2024-02-24 05:11:53.992 1000 FEE 420995 18396 6051058 2024-02-24 05:11:53.992 2024-02-24 05:11:53.992 9000 TIP 420995 16097 6051087 2024-02-24 05:11:58.514 2024-02-24 05:11:58.514 2000 FEE 420995 16336 6051088 2024-02-24 05:11:58.514 2024-02-24 05:11:58.514 18000 TIP 420995 21047 6051096 2024-02-24 05:12:02.909 2024-02-24 05:12:02.909 1000 FEE 420995 2502 6051097 2024-02-24 05:12:02.909 2024-02-24 05:12:02.909 9000 TIP 420995 4083 6051100 2024-02-24 05:12:03.677 2024-02-24 05:12:03.677 1000 FEE 420995 5779 6051101 2024-02-24 05:12:03.677 2024-02-24 05:12:03.677 9000 TIP 420995 15148 6051102 2024-02-24 05:12:03.922 2024-02-24 05:12:03.922 1000 FEE 420995 21591 6051103 2024-02-24 05:12:03.922 2024-02-24 05:12:03.922 9000 TIP 420995 17082 6051104 2024-02-24 05:12:04.213 2024-02-24 05:12:04.213 1000 FEE 420995 13553 6051105 2024-02-24 05:12:04.213 2024-02-24 05:12:04.213 9000 TIP 420995 16950 6051125 2024-02-24 05:12:46.503 2024-02-24 05:12:46.503 1000 FEE 433706 21612 6051126 2024-02-24 05:12:46.503 2024-02-24 05:12:46.503 9000 TIP 433706 11999 6051131 2024-02-24 05:12:57.323 2024-02-24 05:12:57.323 100 FEE 436866 18178 6051132 2024-02-24 05:12:57.323 2024-02-24 05:12:57.323 900 TIP 436866 9426 6051137 2024-02-24 05:14:38.995 2024-02-24 05:14:38.995 1000 FEE 436922 18232 6051160 2024-02-24 05:14:59.448 2024-02-24 05:14:59.448 1000 FEE 411814 20454 6051161 2024-02-24 05:14:59.448 2024-02-24 05:14:59.448 9000 TIP 411814 19905 6051194 2024-02-24 05:15:55.709 2024-02-24 05:15:55.709 100 FEE 436915 9337 6051195 2024-02-24 05:15:55.709 2024-02-24 05:15:55.709 900 TIP 436915 981 6051216 2024-02-24 05:22:21.849 2024-02-24 05:22:21.849 1000 FEE 436901 2431 6051217 2024-02-24 05:22:21.849 2024-02-24 05:22:21.849 9000 TIP 436901 19016 6051270 2024-02-24 05:43:54.776 2024-02-24 05:43:54.776 1000 FEE 436929 2543 6051308 2024-02-24 05:59:03.431 2024-02-24 05:59:03.431 1000 FEE 436937 630 6051314 2024-02-24 06:02:51.176 2024-02-24 06:02:51.176 1000 FEE 436939 5387 6051349 2024-02-24 06:10:59.683 2024-02-24 06:10:59.683 2100 FEE 436566 807 6051350 2024-02-24 06:10:59.683 2024-02-24 06:10:59.683 18900 TIP 436566 11458 6051351 2024-02-24 06:10:59.963 2024-02-24 06:10:59.963 2100 FEE 436566 13622 6051352 2024-02-24 06:10:59.963 2024-02-24 06:10:59.963 18900 TIP 436566 3304 6051368 2024-02-24 06:19:02.564 2024-02-24 06:19:02.564 200 FEE 436909 19292 6051369 2024-02-24 06:19:02.564 2024-02-24 06:19:02.564 1800 TIP 436909 15588 6051404 2024-02-24 06:26:17.985 2024-02-24 06:26:17.985 2100 FEE 436753 16970 6051405 2024-02-24 06:26:17.985 2024-02-24 06:26:17.985 18900 TIP 436753 1006 6051431 2024-02-24 06:34:05.406 2024-02-24 06:34:05.406 100 FEE 436336 9705 6051432 2024-02-24 06:34:05.406 2024-02-24 06:34:05.406 900 TIP 436336 7772 6051433 2024-02-24 06:34:05.557 2024-02-24 06:34:05.557 900 FEE 436336 20470 6051434 2024-02-24 06:34:05.557 2024-02-24 06:34:05.557 8100 TIP 436336 21374 6051436 2024-02-24 06:34:57.12 2024-02-24 06:34:57.12 100 FEE 436443 18380 6050520 2024-02-24 02:58:05.698 2024-02-24 02:58:05.698 1000 STREAM 141924 18727 6115384 2024-02-29 16:52:07.008 2024-02-29 16:52:07.008 4500 TIP 443836 1286 6115406 2024-02-29 16:53:24.3 2024-02-29 16:53:24.3 1000 FEE 443583 16816 6115407 2024-02-29 16:53:24.3 2024-02-29 16:53:24.3 9000 TIP 443583 19842 6115429 2024-02-29 16:56:02.33 2024-02-29 16:56:02.33 500 FEE 443561 11996 6115430 2024-02-29 16:56:02.33 2024-02-29 16:56:02.33 4500 TIP 443561 7125 6115438 2024-02-29 16:56:08.315 2024-02-29 16:56:08.315 0 FEE 443845 16410 6115440 2024-02-29 16:56:23.818 2024-02-29 16:56:23.818 1700 FEE 443794 17411 6115441 2024-02-29 16:56:23.818 2024-02-29 16:56:23.818 15300 TIP 443794 20706 6115477 2024-02-29 16:57:33.364 2024-02-29 16:57:33.364 1000 FEE 443847 19158 6115478 2024-02-29 16:57:33.364 2024-02-29 16:57:33.364 9000 TIP 443847 2711 6115508 2024-02-29 16:59:56.414 2024-02-29 16:59:56.414 500 FEE 443339 20613 6115509 2024-02-29 16:59:56.414 2024-02-29 16:59:56.414 4500 TIP 443339 15100 6115531 2024-02-29 17:03:25.098 2024-02-29 17:03:25.098 1000 FEE 443862 2525 6115532 2024-02-29 17:03:25.098 2024-02-29 17:03:25.098 9000 TIP 443862 782 6115553 2024-02-29 17:03:53.154 2024-02-29 17:03:53.154 6900 FEE 443861 20129 6115554 2024-02-29 17:03:53.154 2024-02-29 17:03:53.154 62100 TIP 443861 7654 6115563 2024-02-29 17:03:56.211 2024-02-29 17:03:56.211 6900 FEE 443861 18679 6115564 2024-02-29 17:03:56.211 2024-02-29 17:03:56.211 62100 TIP 443861 17227 6115565 2024-02-29 17:03:58.239 2024-02-29 17:03:58.239 6900 FEE 443839 8796 6115566 2024-02-29 17:03:58.239 2024-02-29 17:03:58.239 62100 TIP 443839 19572 6115567 2024-02-29 17:03:58.398 2024-02-29 17:03:58.398 6900 FEE 443839 712 6115568 2024-02-29 17:03:58.398 2024-02-29 17:03:58.398 62100 TIP 443839 1245 6115579 2024-02-29 17:04:43.959 2024-02-29 17:04:43.959 100 FEE 443869 20573 6115580 2024-02-29 17:04:43.959 2024-02-29 17:04:43.959 900 TIP 443869 805 6115583 2024-02-29 17:04:45.821 2024-02-29 17:04:45.821 9000 FEE 443869 21022 6115584 2024-02-29 17:04:45.821 2024-02-29 17:04:45.821 81000 TIP 443869 19021 6115593 2024-02-29 17:05:04.785 2024-02-29 17:05:04.785 2100 FEE 443545 979 6115594 2024-02-29 17:05:04.785 2024-02-29 17:05:04.785 18900 TIP 443545 18170 6115606 2024-02-29 17:06:12.662 2024-02-29 17:06:12.662 1600 FEE 443781 6384 6115607 2024-02-29 17:06:12.662 2024-02-29 17:06:12.662 14400 TIP 443781 18068 6115620 2024-02-29 17:06:17.74 2024-02-29 17:06:17.74 7700 FEE 443712 7395 6115621 2024-02-29 17:06:17.74 2024-02-29 17:06:17.74 69300 TIP 443712 19987 6115636 2024-02-29 17:09:02.316 2024-02-29 17:09:02.316 6900 FEE 441484 6384 6115637 2024-02-29 17:09:02.316 2024-02-29 17:09:02.316 62100 TIP 441484 10013 6115648 2024-02-29 17:10:27.216 2024-02-29 17:10:27.216 3100 FEE 443861 3709 6115649 2024-02-29 17:10:27.216 2024-02-29 17:10:27.216 27900 TIP 443861 8570 6115664 2024-02-29 17:12:38.928 2024-02-29 17:12:38.928 100 FEE 443869 16347 6115665 2024-02-29 17:12:38.928 2024-02-29 17:12:38.928 900 TIP 443869 14657 6115703 2024-02-29 17:16:52.539 2024-02-29 17:16:52.539 7700 FEE 443878 4502 6115704 2024-02-29 17:16:52.539 2024-02-29 17:16:52.539 69300 TIP 443878 1465 6115707 2024-02-29 17:16:56.045 2024-02-29 17:16:56.045 100 FEE 443878 8569 6115708 2024-02-29 17:16:56.045 2024-02-29 17:16:56.045 900 TIP 443878 19322 6115733 2024-02-29 17:17:57.821 2024-02-29 17:17:57.821 800 FEE 443866 20231 6115734 2024-02-29 17:17:57.821 2024-02-29 17:17:57.821 7200 TIP 443866 16513 6115735 2024-02-29 17:17:59.342 2024-02-29 17:17:59.342 0 FEE 443881 1145 6115753 2024-02-29 17:22:04.165 2024-02-29 17:22:04.165 2100 FEE 443866 20162 6115754 2024-02-29 17:22:04.165 2024-02-29 17:22:04.165 18900 TIP 443866 623 6115764 2024-02-29 17:22:50.113 2024-02-29 17:22:50.113 1000 FEE 443891 16145 6115765 2024-02-29 17:22:53.548 2024-02-29 17:22:53.548 2100 FEE 443888 18402 6115766 2024-02-29 17:22:53.548 2024-02-29 17:22:53.548 18900 TIP 443888 19292 6115767 2024-02-29 17:22:59.974 2024-02-29 17:22:59.974 2100 FEE 443583 20889 6115768 2024-02-29 17:22:59.974 2024-02-29 17:22:59.974 18900 TIP 443583 11967 6115784 2024-02-29 17:23:23.892 2024-02-29 17:23:23.892 2100 FEE 443611 722 6115785 2024-02-29 17:23:23.892 2024-02-29 17:23:23.892 18900 TIP 443611 5865 6115786 2024-02-29 17:23:24.829 2024-02-29 17:23:24.829 2100 FEE 443611 2256 6115787 2024-02-29 17:23:24.829 2024-02-29 17:23:24.829 18900 TIP 443611 20922 6115793 2024-02-29 17:23:43.172 2024-02-29 17:23:43.172 2100 FEE 443660 768 6115794 2024-02-29 17:23:43.172 2024-02-29 17:23:43.172 18900 TIP 443660 18372 6115795 2024-02-29 17:23:44.195 2024-02-29 17:23:44.195 2100 FEE 443660 2774 6115796 2024-02-29 17:23:44.195 2024-02-29 17:23:44.195 18900 TIP 443660 20045 6115818 2024-02-29 17:25:08.108 2024-02-29 17:25:08.108 1000 FEE 443836 2780 6115819 2024-02-29 17:25:08.108 2024-02-29 17:25:08.108 9000 TIP 443836 6136 6115831 2024-02-29 17:26:31.028 2024-02-29 17:26:31.028 100 FEE 443873 19309 6115832 2024-02-29 17:26:31.028 2024-02-29 17:26:31.028 900 TIP 443873 2528 6115835 2024-02-29 17:26:40.879 2024-02-29 17:26:40.879 500 FEE 443882 20208 6115836 2024-02-29 17:26:40.879 2024-02-29 17:26:40.879 4500 TIP 443882 2722 6115881 2024-02-29 17:29:38.116 2024-02-29 17:29:38.116 1000 FEE 443903 20182 6115884 2024-02-29 17:29:57.212 2024-02-29 17:29:57.212 1000 FEE 443904 10013 6115897 2024-02-29 17:30:31.418 2024-02-29 17:30:31.418 900 FEE 443852 7674 6115898 2024-02-29 17:30:31.418 2024-02-29 17:30:31.418 8100 TIP 443852 17690 6115910 2024-02-29 17:30:34.765 2024-02-29 17:30:34.765 100 FEE 443763 19854 6115911 2024-02-29 17:30:34.765 2024-02-29 17:30:34.765 900 TIP 443763 6148 6115914 2024-02-29 17:30:36.311 2024-02-29 17:30:36.311 100 FEE 443798 21116 6115915 2024-02-29 17:30:36.311 2024-02-29 17:30:36.311 900 TIP 443798 12708 6115949 2024-02-29 17:33:29.574 2024-02-29 17:33:29.574 6900 FEE 443902 20187 6115950 2024-02-29 17:33:29.574 2024-02-29 17:33:29.574 62100 TIP 443902 13843 6115970 2024-02-29 17:34:21.282 2024-02-29 17:34:21.282 1000 FEE 443099 18664 6115971 2024-02-29 17:34:21.282 2024-02-29 17:34:21.282 9000 TIP 443099 19121 6115974 2024-02-29 17:34:22.099 2024-02-29 17:34:22.099 1000 FEE 443099 19158 6115975 2024-02-29 17:34:22.099 2024-02-29 17:34:22.099 9000 TIP 443099 19296 6115976 2024-02-29 17:34:22.391 2024-02-29 17:34:22.391 1000 FEE 443099 20490 6115977 2024-02-29 17:34:22.391 2024-02-29 17:34:22.391 9000 TIP 443099 5377 6116009 2024-02-29 17:35:07.864 2024-02-29 17:35:07.864 1000 FEE 442982 20045 6116010 2024-02-29 17:35:07.864 2024-02-29 17:35:07.864 9000 TIP 442982 19576 6050533 2024-02-24 03:00:04.105 2024-02-24 03:00:04.105 1000 STREAM 141924 21104 6050554 2024-02-24 03:08:04.084 2024-02-24 03:08:04.084 1000 STREAM 141924 8380 6050562 2024-02-24 03:11:04.571 2024-02-24 03:11:04.571 1000 STREAM 141924 13365 6050565 2024-02-24 03:13:04.607 2024-02-24 03:13:04.607 1000 STREAM 141924 21406 6050568 2024-02-24 03:14:04.601 2024-02-24 03:14:04.601 1000 STREAM 141924 21405 6050569 2024-02-24 03:15:04.614 2024-02-24 03:15:04.614 1000 STREAM 141924 18735 6115550 2024-02-29 17:03:52.832 2024-02-29 17:03:52.832 62100 TIP 443861 20826 6115589 2024-02-29 17:04:48.202 2024-02-29 17:04:48.202 9000 FEE 443864 18526 6115590 2024-02-29 17:04:48.202 2024-02-29 17:04:48.202 81000 TIP 443864 692 6115591 2024-02-29 17:04:57.058 2024-02-29 17:04:57.058 1000 FEE 443871 717 6115595 2024-02-29 17:05:21.996 2024-02-29 17:05:21.996 10000 FEE 443583 11091 6115596 2024-02-29 17:05:21.996 2024-02-29 17:05:21.996 90000 TIP 443583 4323 6115604 2024-02-29 17:06:05.232 2024-02-29 17:06:05.232 2100 FEE 443645 5175 6115605 2024-02-29 17:06:05.232 2024-02-29 17:06:05.232 18900 TIP 443645 5387 6115633 2024-02-29 17:08:22.293 2024-02-29 17:08:22.293 2100 FEE 443683 18016 6115634 2024-02-29 17:08:22.293 2024-02-29 17:08:22.293 18900 TIP 443683 8269 6115659 2024-02-29 17:12:16.294 2024-02-29 17:12:16.294 100 FEE 443871 20964 6115660 2024-02-29 17:12:16.294 2024-02-29 17:12:16.294 900 TIP 443871 2162 6115692 2024-02-29 17:16:20.14 2024-02-29 17:16:20.14 0 FEE 443881 20495 6115713 2024-02-29 17:16:59.378 2024-02-29 17:16:59.378 2100 FEE 443580 19967 6115714 2024-02-29 17:16:59.378 2024-02-29 17:16:59.378 18900 TIP 443580 979 6115716 2024-02-29 17:17:08.387 2024-02-29 17:17:08.387 2100 FEE 443285 14037 6115717 2024-02-29 17:17:08.387 2024-02-29 17:17:08.387 18900 TIP 443285 18306 6115729 2024-02-29 17:17:54.963 2024-02-29 17:17:54.963 800 FEE 443545 1003 6115730 2024-02-29 17:17:54.963 2024-02-29 17:17:54.963 7200 TIP 443545 1120 6115738 2024-02-29 17:18:10.543 2024-02-29 17:18:10.543 10000 FEE 443802 7989 6115739 2024-02-29 17:18:10.543 2024-02-29 17:18:10.543 90000 TIP 443802 18714 6115763 2024-02-29 17:22:18.155 2024-02-29 17:22:18.155 10000 FEE 443890 4048 6115773 2024-02-29 17:23:00.709 2024-02-29 17:23:00.709 2100 FEE 443583 17708 6115774 2024-02-29 17:23:00.709 2024-02-29 17:23:00.709 18900 TIP 443583 6202 6115790 2024-02-29 17:23:27.306 2024-02-29 17:23:27.306 2100 FEE 443611 21457 6115791 2024-02-29 17:23:27.306 2024-02-29 17:23:27.306 18900 TIP 443611 12057 6115855 2024-02-29 17:27:20.567 2024-02-29 17:27:20.567 300 FEE 443214 19458 6115856 2024-02-29 17:27:20.567 2024-02-29 17:27:20.567 2700 TIP 443214 700 6115867 2024-02-29 17:27:59.849 2024-02-29 17:27:59.849 10000 FEE 443889 18862 6115868 2024-02-29 17:27:59.849 2024-02-29 17:27:59.849 90000 TIP 443889 20464 6115878 2024-02-29 17:28:59.826 2024-02-29 17:28:59.826 0 FEE 443901 16193 6115908 2024-02-29 17:30:33.755 2024-02-29 17:30:33.755 2100 FEE 441843 1094 6115909 2024-02-29 17:30:33.755 2024-02-29 17:30:33.755 18900 TIP 441843 18517 6115912 2024-02-29 17:30:35.55 2024-02-29 17:30:35.55 300 FEE 442698 2204 6115913 2024-02-29 17:30:35.55 2024-02-29 17:30:35.55 2700 TIP 442698 18314 6115938 2024-02-29 17:32:38.525 2024-02-29 17:32:38.525 1000 FEE 443913 1472 6115939 2024-02-29 17:32:43.513 2024-02-29 17:32:43.513 1000 FEE 443914 15161 6115947 2024-02-29 17:33:26.666 2024-02-29 17:33:26.666 1000 FEE 443914 7746 6115948 2024-02-29 17:33:26.666 2024-02-29 17:33:26.666 9000 TIP 443914 11298 6115951 2024-02-29 17:33:45.654 2024-02-29 17:33:45.654 0 FEE 443916 18675 6115962 2024-02-29 17:34:09.921 2024-02-29 17:34:09.921 1000 FEE 443532 16665 6115963 2024-02-29 17:34:09.921 2024-02-29 17:34:09.921 9000 TIP 443532 19527 6115964 2024-02-29 17:34:10.327 2024-02-29 17:34:10.327 1000 FEE 443532 20573 6115965 2024-02-29 17:34:10.327 2024-02-29 17:34:10.327 9000 TIP 443532 2029 6115980 2024-02-29 17:34:23.755 2024-02-29 17:34:23.755 1000 FEE 443105 10352 6115981 2024-02-29 17:34:23.755 2024-02-29 17:34:23.755 9000 TIP 443105 11458 6115985 2024-02-29 17:34:24.534 2024-02-29 17:34:24.534 1000 FEE 443105 2749 6115986 2024-02-29 17:34:24.534 2024-02-29 17:34:24.534 9000 TIP 443105 20412 6115991 2024-02-29 17:34:37.506 2024-02-29 17:34:37.506 100000 FEE 443919 2459 6115992 2024-02-29 17:34:37.506 2024-02-29 17:34:37.506 25000000 BOOST 443919 17217 6115996 2024-02-29 17:34:48.062 2024-02-29 17:34:48.062 3100 FEE 443904 18543 6115997 2024-02-29 17:34:48.062 2024-02-29 17:34:48.062 27900 TIP 443904 21578 6116002 2024-02-29 17:35:00.531 2024-02-29 17:35:00.531 1000 FEE 443000 18659 6116003 2024-02-29 17:35:00.531 2024-02-29 17:35:00.531 9000 TIP 443000 18446 6116030 2024-02-29 17:37:28.768 2024-02-29 17:37:28.768 2100 FEE 443919 1772 6116031 2024-02-29 17:37:28.768 2024-02-29 17:37:28.768 18900 TIP 443919 17218 6116034 2024-02-29 17:37:46.555 2024-02-29 17:37:46.555 2100 FEE 443911 20511 6116035 2024-02-29 17:37:46.555 2024-02-29 17:37:46.555 18900 TIP 443911 12516 6116041 2024-02-29 17:37:59.575 2024-02-29 17:37:59.575 1000 FEE 443927 19346 6116061 2024-02-29 17:39:43.412 2024-02-29 17:39:43.412 1000 FEE 443531 17103 6116062 2024-02-29 17:39:43.412 2024-02-29 17:39:43.412 9000 TIP 443531 9341 6116068 2024-02-29 17:40:51.949 2024-02-29 17:40:51.949 1000 FEE 443884 1428 6116069 2024-02-29 17:40:51.949 2024-02-29 17:40:51.949 9000 TIP 443884 8289 6116074 2024-02-29 17:40:54.335 2024-02-29 17:40:54.335 1000 FEE 443884 21332 6116075 2024-02-29 17:40:54.335 2024-02-29 17:40:54.335 9000 TIP 443884 642 6116129 2024-02-29 17:42:55.472 2024-02-29 17:42:55.472 1000 FEE 443938 13365 6116146 2024-02-29 17:43:08.57 2024-02-29 17:43:08.57 27900 FEE 443894 19333 6116147 2024-02-29 17:43:08.57 2024-02-29 17:43:08.57 251100 TIP 443894 2347 6116150 2024-02-29 17:43:17.5 2024-02-29 17:43:17.5 3300 FEE 443613 19576 6116151 2024-02-29 17:43:17.5 2024-02-29 17:43:17.5 29700 TIP 443613 18177 6116165 2024-02-29 17:43:24.466 2024-02-29 17:43:24.466 2100 FEE 443712 15226 6116166 2024-02-29 17:43:24.466 2024-02-29 17:43:24.466 18900 TIP 443712 782 6116178 2024-02-29 17:43:49.682 2024-02-29 17:43:49.682 2100 FEE 443794 19910 6116179 2024-02-29 17:43:49.682 2024-02-29 17:43:49.682 18900 TIP 443794 811 6116199 2024-02-29 17:44:47.499 2024-02-29 17:44:47.499 3000 FEE 443854 4083 6116200 2024-02-29 17:44:47.499 2024-02-29 17:44:47.499 27000 TIP 443854 8173 6050560 2024-02-24 03:10:04.599 2024-02-24 03:10:04.599 1000 STREAM 141924 3729 6115709 2024-02-29 17:16:57.96 2024-02-29 17:16:57.96 200 FEE 443878 12562 6115710 2024-02-29 17:16:57.96 2024-02-29 17:16:57.96 1800 TIP 443878 18618 6115718 2024-02-29 17:17:16.247 2024-02-29 17:17:16.247 2100 FEE 443283 18862 6115719 2024-02-29 17:17:16.247 2024-02-29 17:17:16.247 18900 TIP 443283 14785 6115725 2024-02-29 17:17:51.671 2024-02-29 17:17:51.671 800 FEE 443816 2264 6115726 2024-02-29 17:17:51.671 2024-02-29 17:17:51.671 7200 TIP 443816 5522 6115727 2024-02-29 17:17:52.387 2024-02-29 17:17:52.387 800 FEE 443816 11819 6115728 2024-02-29 17:17:52.387 2024-02-29 17:17:52.387 7200 TIP 443816 14489 6115740 2024-02-29 17:18:33.252 2024-02-29 17:18:33.252 0 FEE 443878 9655 6115747 2024-02-29 17:20:49.207 2024-02-29 17:20:49.207 1000 FEE 443888 13246 6115749 2024-02-29 17:21:34.477 2024-02-29 17:21:34.477 1000 FEE 443889 18897 6115771 2024-02-29 17:23:00.41 2024-02-29 17:23:00.41 2100 FEE 443583 889 6115772 2024-02-29 17:23:00.41 2024-02-29 17:23:00.41 18900 TIP 443583 21492 6115778 2024-02-29 17:23:15.117 2024-02-29 17:23:15.117 2100 FEE 443611 2188 6115779 2024-02-29 17:23:15.117 2024-02-29 17:23:15.117 18900 TIP 443611 2829 6115782 2024-02-29 17:23:16.69 2024-02-29 17:23:16.69 2100 FEE 443611 9339 6115783 2024-02-29 17:23:16.69 2024-02-29 17:23:16.69 18900 TIP 443611 18556 6115801 2024-02-29 17:24:22.016 2024-02-29 17:24:22.016 2100 FEE 443800 18241 6115802 2024-02-29 17:24:22.016 2024-02-29 17:24:22.016 18900 TIP 443800 19601 6115806 2024-02-29 17:24:38.172 2024-02-29 17:24:38.172 2100 FEE 443832 20979 6115807 2024-02-29 17:24:38.172 2024-02-29 17:24:38.172 18900 TIP 443832 17523 6115810 2024-02-29 17:24:45.414 2024-02-29 17:24:45.414 2100 FEE 443843 20454 6115811 2024-02-29 17:24:45.414 2024-02-29 17:24:45.414 18900 TIP 443843 20504 6115875 2024-02-29 17:28:43.409 2024-02-29 17:28:43.409 1000 FEE 443901 20964 6115887 2024-02-29 17:30:13.988 2024-02-29 17:30:13.988 1000 FEE 443906 20509 6115892 2024-02-29 17:30:29.453 2024-02-29 17:30:29.453 900 FEE 443804 9669 6115893 2024-02-29 17:30:29.453 2024-02-29 17:30:29.453 8100 TIP 443804 20495 6115904 2024-02-29 17:30:33.537 2024-02-29 17:30:33.537 100 FEE 443773 20854 6115905 2024-02-29 17:30:33.537 2024-02-29 17:30:33.537 900 TIP 443773 2614 6115906 2024-02-29 17:30:33.679 2024-02-29 17:30:33.679 900 FEE 443773 16059 6115907 2024-02-29 17:30:33.679 2024-02-29 17:30:33.679 8100 TIP 443773 940 6115922 2024-02-29 17:30:38.911 2024-02-29 17:30:38.911 900 FEE 443765 21401 6115923 2024-02-29 17:30:38.911 2024-02-29 17:30:38.911 8100 TIP 443765 19282 6115931 2024-02-29 17:31:21.573 2024-02-29 17:31:21.573 1000 FEE 443907 1723 6115932 2024-02-29 17:31:21.573 2024-02-29 17:31:21.573 9000 TIP 443907 3400 6115937 2024-02-29 17:32:11.818 2024-02-29 17:32:11.818 1000 FEE 443912 21620 6115944 2024-02-29 17:33:12.13 2024-02-29 17:33:12.13 1000 FEE 443916 1272 6115966 2024-02-29 17:34:10.662 2024-02-29 17:34:10.662 1000 FEE 443532 836 6115967 2024-02-29 17:34:10.662 2024-02-29 17:34:10.662 9000 TIP 443532 13348 6115972 2024-02-29 17:34:21.716 2024-02-29 17:34:21.716 1000 FEE 443099 631 6115973 2024-02-29 17:34:21.716 2024-02-29 17:34:21.716 9000 TIP 443099 21591 6115994 2024-02-29 17:34:45.758 2024-02-29 17:34:45.758 6900 FEE 443617 18311 6115995 2024-02-29 17:34:45.758 2024-02-29 17:34:45.758 62100 TIP 443617 2710 6116036 2024-02-29 17:37:47.516 2024-02-29 17:37:47.516 1000 FEE 443656 19961 6116037 2024-02-29 17:37:47.516 2024-02-29 17:37:47.516 9000 TIP 443656 13398 6116043 2024-02-29 17:38:03.255 2024-02-29 17:38:03.255 2100 FEE 443867 1044 6116044 2024-02-29 17:38:03.255 2024-02-29 17:38:03.255 18900 TIP 443867 16543 6116048 2024-02-29 17:38:15.672 2024-02-29 17:38:15.672 500 FEE 443712 21421 6116049 2024-02-29 17:38:15.672 2024-02-29 17:38:15.672 4500 TIP 443712 12334 6116072 2024-02-29 17:40:52.983 2024-02-29 17:40:52.983 1000 FEE 443575 11956 6116073 2024-02-29 17:40:52.983 2024-02-29 17:40:52.983 9000 TIP 443575 12774 6116076 2024-02-29 17:40:59.453 2024-02-29 17:40:59.453 1000 FEE 443589 16809 6116077 2024-02-29 17:40:59.453 2024-02-29 17:40:59.453 9000 TIP 443589 2757 6116079 2024-02-29 17:41:03.86 2024-02-29 17:41:03.86 1000 FEE 443931 7558 6116080 2024-02-29 17:41:09.134 2024-02-29 17:41:09.134 1000 FEE 443932 21520 6116087 2024-02-29 17:41:11.495 2024-02-29 17:41:11.495 1000 FEE 443921 21389 6116088 2024-02-29 17:41:11.495 2024-02-29 17:41:11.495 9000 TIP 443921 9109 6116127 2024-02-29 17:42:53.849 2024-02-29 17:42:53.849 1000 FEE 443778 12965 6116128 2024-02-29 17:42:53.849 2024-02-29 17:42:53.849 9000 TIP 443778 2444 6116135 2024-02-29 17:43:00.869 2024-02-29 17:43:00.869 6600 FEE 443583 13553 6116136 2024-02-29 17:43:00.869 2024-02-29 17:43:00.869 59400 TIP 443583 10591 6116140 2024-02-29 17:43:03.337 2024-02-29 17:43:03.337 3300 FEE 443799 2652 6116141 2024-02-29 17:43:03.337 2024-02-29 17:43:03.337 29700 TIP 443799 4538 6116171 2024-02-29 17:43:37.477 2024-02-29 17:43:37.477 15000 FEE 443941 9353 6116176 2024-02-29 17:43:43.329 2024-02-29 17:43:43.329 3300 FEE 443728 19038 6116177 2024-02-29 17:43:43.329 2024-02-29 17:43:43.329 29700 TIP 443728 19938 6116191 2024-02-29 17:44:41.624 2024-02-29 17:44:41.624 2100 FEE 443844 20120 6116192 2024-02-29 17:44:41.624 2024-02-29 17:44:41.624 18900 TIP 443844 20452 6116215 2024-02-29 17:45:22.049 2024-02-29 17:45:22.049 5000 FEE 443917 10311 6116216 2024-02-29 17:45:22.049 2024-02-29 17:45:22.049 45000 TIP 443917 20254 6116234 2024-02-29 17:47:01.082 2024-02-29 17:47:01.082 1000 FEE 443817 18663 6116235 2024-02-29 17:47:01.082 2024-02-29 17:47:01.082 9000 TIP 443817 720 6116252 2024-02-29 17:48:29.215 2024-02-29 17:48:29.215 1100 FEE 443399 20254 6116253 2024-02-29 17:48:29.215 2024-02-29 17:48:29.215 9900 TIP 443399 16998 6116263 2024-02-29 17:48:58.475 2024-02-29 17:48:58.475 7700 FEE 443919 3396 6116264 2024-02-29 17:48:58.475 2024-02-29 17:48:58.475 69300 TIP 443919 2327 6116275 2024-02-29 17:49:01.503 2024-02-29 17:49:01.503 7700 FEE 443919 20434 6116276 2024-02-29 17:49:01.503 2024-02-29 17:49:01.503 69300 TIP 443919 18114 6116280 2024-02-29 17:49:04.081 2024-02-29 17:49:04.081 0 FEE 443954 1617 6116290 2024-02-29 17:50:42.555 2024-02-29 17:50:42.555 1000 FEE 443958 21386 6116315 2024-02-29 17:53:44.168 2024-02-29 17:53:44.168 1000 FEE 443951 21612 6116316 2024-02-29 17:53:44.168 2024-02-29 17:53:44.168 9000 TIP 443951 6137 6116335 2024-02-29 17:54:08.265 2024-02-29 17:54:08.265 5700 FEE 443745 11158 6116336 2024-02-29 17:54:08.265 2024-02-29 17:54:08.265 51300 TIP 443745 1983 6116348 2024-02-29 17:56:21.684 2024-02-29 17:56:21.684 100 FEE 443867 2075 6116349 2024-02-29 17:56:21.684 2024-02-29 17:56:21.684 900 TIP 443867 671 6116423 2024-02-29 18:04:42.139 2024-02-29 18:04:42.139 100 FEE 443660 20287 6116424 2024-02-29 18:04:42.139 2024-02-29 18:04:42.139 900 TIP 443660 14267 6116431 2024-02-29 18:05:23.153 2024-02-29 18:05:23.153 1000 FEE 443977 12769 6116448 2024-02-29 18:06:51.49 2024-02-29 18:06:51.49 1000 FEE 443958 13843 6116449 2024-02-29 18:06:51.49 2024-02-29 18:06:51.49 9000 TIP 443958 1224 6116472 2024-02-29 18:08:41.327 2024-02-29 18:08:41.327 1000 FEE 443988 17682 6050563 2024-02-24 03:12:04.578 2024-02-24 03:12:04.578 1000 STREAM 141924 19796 6050656 2024-02-24 03:47:03.589 2024-02-24 03:47:03.589 1000 STREAM 141924 21555 6050671 2024-02-24 03:49:03.602 2024-02-24 03:49:03.602 1000 STREAM 141924 3683 6050675 2024-02-24 03:51:03.625 2024-02-24 03:51:03.625 1000 STREAM 141924 2123 6050677 2024-02-24 03:52:03.629 2024-02-24 03:52:03.629 1000 STREAM 141924 3717 6050711 2024-02-24 03:55:03.705 2024-02-24 03:55:03.705 1000 STREAM 141924 5865 6050817 2024-02-24 04:18:05.282 2024-02-24 04:18:05.282 1000 STREAM 141924 8287 6115743 2024-02-29 17:19:18.265 2024-02-29 17:19:18.265 9000 TIP 443799 16406 6115800 2024-02-29 17:24:17.045 2024-02-29 17:24:17.045 1000 FEE 443893 1519 6115804 2024-02-29 17:24:34.551 2024-02-29 17:24:34.551 100 FEE 443872 1605 6115805 2024-02-29 17:24:34.551 2024-02-29 17:24:34.551 900 TIP 443872 15273 6115815 2024-02-29 17:24:51.728 2024-02-29 17:24:51.728 2100 FEE 443860 18313 6115816 2024-02-29 17:24:51.728 2024-02-29 17:24:51.728 18900 TIP 443860 20858 6115820 2024-02-29 17:25:20.577 2024-02-29 17:25:20.577 0 FEE 443894 17046 6115821 2024-02-29 17:25:48.112 2024-02-29 17:25:48.112 10000 FEE 443723 9844 6115822 2024-02-29 17:25:48.112 2024-02-29 17:25:48.112 90000 TIP 443723 9352 6115837 2024-02-29 17:26:41.902 2024-02-29 17:26:41.902 300 FEE 443092 18423 6115838 2024-02-29 17:26:41.902 2024-02-29 17:26:41.902 2700 TIP 443092 1564 6115851 2024-02-29 17:27:12.935 2024-02-29 17:27:12.935 10000 FEE 443483 1320 6115852 2024-02-29 17:27:12.935 2024-02-29 17:27:12.935 90000 TIP 443483 20434 6115863 2024-02-29 17:27:48.159 2024-02-29 17:27:48.159 500 FEE 443829 10291 6115864 2024-02-29 17:27:48.159 2024-02-29 17:27:48.159 4500 TIP 443829 21619 6115895 2024-02-29 17:30:31.26 2024-02-29 17:30:31.26 100 FEE 443852 4027 6115896 2024-02-29 17:30:31.26 2024-02-29 17:30:31.26 900 TIP 443852 21585 6115899 2024-02-29 17:30:31.937 2024-02-29 17:30:31.937 100000 FEE 443908 3642 6115918 2024-02-29 17:30:36.526 2024-02-29 17:30:36.526 900 FEE 443763 19458 6115919 2024-02-29 17:30:36.526 2024-02-29 17:30:36.526 8100 TIP 443763 2329 6115920 2024-02-29 17:30:38.73 2024-02-29 17:30:38.73 100 FEE 443765 11967 6115921 2024-02-29 17:30:38.73 2024-02-29 17:30:38.73 900 TIP 443765 14247 6115924 2024-02-29 17:30:41.362 2024-02-29 17:30:41.362 100 FEE 443755 16543 6115925 2024-02-29 17:30:41.362 2024-02-29 17:30:41.362 900 TIP 443755 690 6115928 2024-02-29 17:31:00.191 2024-02-29 17:31:00.191 1000 FEE 443909 18051 6115933 2024-02-29 17:31:36.155 2024-02-29 17:31:36.155 300 FEE 443833 14663 6115934 2024-02-29 17:31:36.155 2024-02-29 17:31:36.155 2700 TIP 443833 8870 6115940 2024-02-29 17:32:53.524 2024-02-29 17:32:53.524 10100 FEE 443794 18476 6115941 2024-02-29 17:32:53.524 2024-02-29 17:32:53.524 90900 TIP 443794 1618 6115998 2024-02-29 17:34:48.574 2024-02-29 17:34:48.574 6900 FEE 443577 5455 6115999 2024-02-29 17:34:48.574 2024-02-29 17:34:48.574 62100 TIP 443577 11314 6116085 2024-02-29 17:41:11.316 2024-02-29 17:41:11.316 1000 FEE 443921 9843 6116086 2024-02-29 17:41:11.316 2024-02-29 17:41:11.316 9000 TIP 443921 1845 6116091 2024-02-29 17:41:15 2024-02-29 17:41:15 1000 FEE 443893 17713 6116092 2024-02-29 17:41:15 2024-02-29 17:41:15 9000 TIP 443893 3456 6116110 2024-02-29 17:42:23.202 2024-02-29 17:42:23.202 1000 FEE 443937 2961 6116111 2024-02-29 17:42:32.651 2024-02-29 17:42:32.651 3300 FEE 443781 2775 6116112 2024-02-29 17:42:32.651 2024-02-29 17:42:32.651 29700 TIP 443781 837 6116115 2024-02-29 17:42:34.573 2024-02-29 17:42:34.573 3300 FEE 443781 925 6116116 2024-02-29 17:42:34.573 2024-02-29 17:42:34.573 29700 TIP 443781 16653 6116156 2024-02-29 17:43:18.52 2024-02-29 17:43:18.52 1000 FEE 443940 18177 6116172 2024-02-29 17:43:37.873 2024-02-29 17:43:37.873 2100 FEE 443919 15624 6116173 2024-02-29 17:43:37.873 2024-02-29 17:43:37.873 18900 TIP 443919 8570 6116206 2024-02-29 17:45:13.195 2024-02-29 17:45:13.195 2100 FEE 443844 976 6116207 2024-02-29 17:45:13.195 2024-02-29 17:45:13.195 18900 TIP 443844 13517 6116228 2024-02-29 17:46:37.724 2024-02-29 17:46:37.724 1000 FEE 443950 12566 6116241 2024-02-29 17:47:41.743 2024-02-29 17:47:41.743 7700 FEE 443919 19506 6116242 2024-02-29 17:47:41.743 2024-02-29 17:47:41.743 69300 TIP 443919 9844 6116247 2024-02-29 17:48:06.368 2024-02-29 17:48:06.368 1000 FEE 443799 15978 6116248 2024-02-29 17:48:06.368 2024-02-29 17:48:06.368 9000 TIP 443799 651 6116269 2024-02-29 17:48:58.828 2024-02-29 17:48:58.828 7700 FEE 443919 16145 6116270 2024-02-29 17:48:58.828 2024-02-29 17:48:58.828 69300 TIP 443919 2734 6116284 2024-02-29 17:49:51.343 2024-02-29 17:49:51.343 5700 FEE 443058 20454 6116285 2024-02-29 17:49:51.343 2024-02-29 17:49:51.343 51300 TIP 443058 8133 6116302 2024-02-29 17:52:38.948 2024-02-29 17:52:38.948 1700 FEE 443903 21379 6116303 2024-02-29 17:52:38.948 2024-02-29 17:52:38.948 15300 TIP 443903 1624 6116311 2024-02-29 17:53:24.097 2024-02-29 17:53:24.097 10000 FEE 443960 18904 6116317 2024-02-29 17:53:52.929 2024-02-29 17:53:52.929 1000 FEE 443963 2620 6116324 2024-02-29 17:54:01.074 2024-02-29 17:54:01.074 5700 FEE 443919 20026 6116325 2024-02-29 17:54:01.074 2024-02-29 17:54:01.074 51300 TIP 443919 18919 6116329 2024-02-29 17:54:03.095 2024-02-29 17:54:03.095 5700 FEE 443794 20624 6116330 2024-02-29 17:54:03.095 2024-02-29 17:54:03.095 51300 TIP 443794 19458 6116331 2024-02-29 17:54:04.339 2024-02-29 17:54:04.339 5700 FEE 443683 9365 6116332 2024-02-29 17:54:04.339 2024-02-29 17:54:04.339 51300 TIP 443683 14080 6116338 2024-02-29 17:55:10.314 2024-02-29 17:55:10.314 2100 FEE 443893 20129 6116339 2024-02-29 17:55:10.314 2024-02-29 17:55:10.314 18900 TIP 443893 963 6116341 2024-02-29 17:55:16.434 2024-02-29 17:55:16.434 1000 FEE 443965 11798 6116354 2024-02-29 17:56:42.592 2024-02-29 17:56:42.592 2100 FEE 442866 683 6116355 2024-02-29 17:56:42.592 2024-02-29 17:56:42.592 18900 TIP 442866 11145 6116363 2024-02-29 17:57:18.369 2024-02-29 17:57:18.369 1000 FEE 443919 2703 6116364 2024-02-29 17:57:18.369 2024-02-29 17:57:18.369 9000 TIP 443919 17944 6116373 2024-02-29 17:58:31.996 2024-02-29 17:58:31.996 1000 FEE 443968 2162 6116386 2024-02-29 17:59:18.277 2024-02-29 17:59:18.277 9000 FEE 443593 9969 6116387 2024-02-29 17:59:18.277 2024-02-29 17:59:18.277 81000 TIP 443593 16229 6116390 2024-02-29 17:59:41.197 2024-02-29 17:59:41.197 9000 FEE 443790 1632 6116391 2024-02-29 17:59:41.197 2024-02-29 17:59:41.197 81000 TIP 443790 19031 6116413 2024-02-29 18:04:36.565 2024-02-29 18:04:36.565 100 FEE 443956 15556 6116414 2024-02-29 18:04:36.565 2024-02-29 18:04:36.565 900 TIP 443956 19292 6116419 2024-02-29 18:04:37.19 2024-02-29 18:04:37.19 100 FEE 443956 15690 6116420 2024-02-29 18:04:37.19 2024-02-29 18:04:37.19 900 TIP 443956 18392 6116466 2024-02-29 18:08:14.747 2024-02-29 18:08:14.747 1000 FEE 443986 19992 6116467 2024-02-29 18:08:25.839 2024-02-29 18:08:25.839 5700 FEE 443974 20904 6116468 2024-02-29 18:08:25.839 2024-02-29 18:08:25.839 51300 TIP 443974 14791 6116508 2024-02-29 18:10:25.679 2024-02-29 18:10:25.679 1000 FEE 443749 7760 6116509 2024-02-29 18:10:25.679 2024-02-29 18:10:25.679 9000 TIP 443749 9916 6116526 2024-02-29 18:12:24.298 2024-02-29 18:12:24.298 3100 FEE 443982 698 6116527 2024-02-29 18:12:24.298 2024-02-29 18:12:24.298 27900 TIP 443982 8544 6116556 2024-02-29 18:14:56.09 2024-02-29 18:14:56.09 6900 FEE 443817 15326 6116557 2024-02-29 18:14:56.09 2024-02-29 18:14:56.09 62100 TIP 443817 21424 6116577 2024-02-29 18:17:27.569 2024-02-29 18:17:27.569 1000 FEE 444012 19541 6116653 2024-02-29 18:27:44.237 2024-02-29 18:27:44.237 7700 FEE 443951 20225 6116654 2024-02-29 18:27:44.237 2024-02-29 18:27:44.237 69300 TIP 443951 16178 6116680 2024-02-29 18:32:06.604 2024-02-29 18:32:06.604 1700 FEE 444015 19151 6116681 2024-02-29 18:32:06.604 2024-02-29 18:32:06.604 15300 TIP 444015 2773 6116695 2024-02-29 18:35:44.822 2024-02-29 18:35:44.822 1000 FEE 444023 21148 6116706 2024-02-29 18:36:36.065 2024-02-29 18:36:36.065 2100 FEE 443617 20152 6050585 2024-02-24 03:19:04.733 2024-02-24 03:19:04.733 1000 STREAM 141924 20614 6050595 2024-02-24 03:21:04.753 2024-02-24 03:21:04.753 1000 STREAM 141924 11458 6050603 2024-02-24 03:22:04.758 2024-02-24 03:22:04.758 1000 STREAM 141924 6419 6050605 2024-02-24 03:23:04.772 2024-02-24 03:23:04.772 1000 STREAM 141924 17275 6050609 2024-02-24 03:24:04.785 2024-02-24 03:24:04.785 1000 STREAM 141924 19689 6115846 2024-02-29 17:27:02.717 2024-02-29 17:27:02.717 1000 STREAM 141924 14376 6116042 2024-02-29 17:38:02.951 2024-02-29 17:38:02.951 1000 STREAM 141924 17041 6116053 2024-02-29 17:39:02.959 2024-02-29 17:39:02.959 1000 STREAM 141924 1717 6116063 2024-02-29 17:40:02.99 2024-02-29 17:40:02.99 1000 STREAM 141924 17201 6116279 2024-02-29 17:49:03.033 2024-02-29 17:49:03.033 1000 STREAM 141924 19890 6116288 2024-02-29 17:50:03.035 2024-02-29 17:50:03.035 1000 STREAM 141924 876 6116293 2024-02-29 17:51:03.038 2024-02-29 17:51:03.038 1000 STREAM 141924 19929 6116337 2024-02-29 17:55:03.054 2024-02-29 17:55:03.054 1000 STREAM 141924 15160 6050614 2024-02-24 03:25:04.283 2024-02-24 03:25:04.283 1000 STREAM 141924 1261 6050616 2024-02-24 03:26:04.276 2024-02-24 03:26:04.276 1000 STREAM 141924 1618 6050618 2024-02-24 03:27:04.277 2024-02-24 03:27:04.277 1000 STREAM 141924 13076 6050628 2024-02-24 03:31:04.31 2024-02-24 03:31:04.31 1000 STREAM 141924 20577 6050636 2024-02-24 03:35:04.326 2024-02-24 03:35:04.326 1000 STREAM 141924 18114 6050642 2024-02-24 03:37:04.324 2024-02-24 03:37:04.324 1000 STREAM 141924 18772 6050645 2024-02-24 03:39:04.317 2024-02-24 03:39:04.317 1000 STREAM 141924 21374 6050654 2024-02-24 03:45:04.358 2024-02-24 03:45:04.358 1000 STREAM 141924 19031 6050655 2024-02-24 03:46:04.363 2024-02-24 03:46:04.363 1000 STREAM 141924 998 6115865 2024-02-29 17:27:55.736 2024-02-29 17:27:55.736 100 FEE 443838 19471 6115866 2024-02-29 17:27:55.736 2024-02-29 17:27:55.736 900 TIP 443838 17727 6115872 2024-02-29 17:28:12.805 2024-02-29 17:28:12.805 1000 FEE 443900 6335 6115873 2024-02-29 17:28:27.968 2024-02-29 17:28:27.968 100 FEE 443864 17411 6115874 2024-02-29 17:28:27.968 2024-02-29 17:28:27.968 900 TIP 443864 2016 6115880 2024-02-29 17:29:33.329 2024-02-29 17:29:33.329 1000 FEE 443902 18448 6115885 2024-02-29 17:29:59.612 2024-02-29 17:29:59.612 10000 FEE 443905 11760 6115888 2024-02-29 17:30:18.327 2024-02-29 17:30:18.327 300 FEE 443391 21571 6115889 2024-02-29 17:30:18.327 2024-02-29 17:30:18.327 2700 TIP 443391 21395 6115902 2024-02-29 17:30:32.636 2024-02-29 17:30:32.636 900 FEE 443827 5359 6115903 2024-02-29 17:30:32.636 2024-02-29 17:30:32.636 8100 TIP 443827 20152 6115930 2024-02-29 17:31:13.234 2024-02-29 17:31:13.234 1000 FEE 443910 657 6115983 2024-02-29 17:34:24.273 2024-02-29 17:34:24.273 1000 FEE 443105 18626 6115984 2024-02-29 17:34:24.273 2024-02-29 17:34:24.273 9000 TIP 443105 15139 6115987 2024-02-29 17:34:24.805 2024-02-29 17:34:24.805 1000 FEE 443105 19943 6115988 2024-02-29 17:34:24.805 2024-02-29 17:34:24.805 9000 TIP 443105 18453 6116000 2024-02-29 17:34:48.961 2024-02-29 17:34:48.961 0 FEE 443916 18448 6116015 2024-02-29 17:35:09.397 2024-02-29 17:35:09.397 1000 FEE 442982 20258 6050623 2024-02-24 03:28:04.271 2024-02-24 03:28:04.271 1000 STREAM 141924 20754 6050624 2024-02-24 03:29:04.277 2024-02-24 03:29:04.277 1000 STREAM 141924 803 6050627 2024-02-24 03:30:04.864 2024-02-24 03:30:04.864 1000 STREAM 141924 1051 6050713 2024-02-24 03:56:05.147 2024-02-24 03:56:05.147 1000 STREAM 141924 10728 6115879 2024-02-29 17:29:02.732 2024-02-29 17:29:02.732 1000 STREAM 141924 17291 6115886 2024-02-29 17:30:02.744 2024-02-29 17:30:02.744 1000 STREAM 141924 712 6115929 2024-02-29 17:31:02.745 2024-02-29 17:31:02.745 1000 STREAM 141924 11423 6115935 2024-02-29 17:32:02.747 2024-02-29 17:32:02.747 1000 STREAM 141924 18704 6115954 2024-02-29 17:34:02.922 2024-02-29 17:34:02.922 1000 STREAM 141924 11760 6116004 2024-02-29 17:35:02.927 2024-02-29 17:35:02.927 1000 STREAM 141924 17321 6116022 2024-02-29 17:36:02.933 2024-02-29 17:36:02.933 1000 STREAM 141924 16942 6116024 2024-02-29 17:37:02.941 2024-02-29 17:37:02.941 1000 STREAM 141924 679 6116078 2024-02-29 17:41:02.973 2024-02-29 17:41:02.973 1000 STREAM 141924 16965 6116106 2024-02-29 17:42:02.98 2024-02-29 17:42:02.98 1000 STREAM 141924 16432 6116139 2024-02-29 17:43:02.989 2024-02-29 17:43:02.989 1000 STREAM 141924 2293 6116184 2024-02-29 17:44:03.022 2024-02-29 17:44:03.022 1000 STREAM 141924 2065 6116202 2024-02-29 17:45:03.024 2024-02-29 17:45:03.024 1000 STREAM 141924 17944 6116220 2024-02-29 17:46:03.025 2024-02-29 17:46:03.025 1000 STREAM 141924 1697 6116236 2024-02-29 17:47:03.024 2024-02-29 17:47:03.024 1000 STREAM 141924 9367 6116310 2024-02-29 17:53:03.052 2024-02-29 17:53:03.052 1000 STREAM 141924 17124 6116328 2024-02-29 17:54:03.05 2024-02-29 17:54:03.05 1000 STREAM 141924 19770 6116347 2024-02-29 17:56:03.055 2024-02-29 17:56:03.055 1000 STREAM 141924 900 6050630 2024-02-24 03:32:04.314 2024-02-24 03:32:04.314 1000 STREAM 141924 4043 6050631 2024-02-24 03:33:04.328 2024-02-24 03:33:04.328 1000 STREAM 141924 8045 6050635 2024-02-24 03:34:04.328 2024-02-24 03:34:04.328 1000 STREAM 141924 18704 6050640 2024-02-24 03:36:04.32 2024-02-24 03:36:04.32 1000 STREAM 141924 14657 6050644 2024-02-24 03:38:04.323 2024-02-24 03:38:04.323 1000 STREAM 141924 1833 6050646 2024-02-24 03:40:04.367 2024-02-24 03:40:04.367 1000 STREAM 141924 16649 6050647 2024-02-24 03:41:04.337 2024-02-24 03:41:04.337 1000 STREAM 141924 5500 6050648 2024-02-24 03:42:04.342 2024-02-24 03:42:04.342 1000 STREAM 141924 6030 6050651 2024-02-24 03:43:04.333 2024-02-24 03:43:04.333 1000 STREAM 141924 703 6050652 2024-02-24 03:44:04.339 2024-02-24 03:44:04.339 1000 STREAM 141924 13174 6050716 2024-02-24 03:57:04.425 2024-02-24 03:57:04.425 1000 STREAM 141924 15762 6050717 2024-02-24 03:58:04.424 2024-02-24 03:58:04.424 1000 STREAM 141924 12160 6050718 2024-02-24 03:59:04.423 2024-02-24 03:59:04.423 1000 STREAM 141924 17800 6050763 2024-02-24 04:03:04.446 2024-02-24 04:03:04.446 1000 STREAM 141924 11829 6050772 2024-02-24 04:05:04.445 2024-02-24 04:05:04.445 1000 STREAM 141924 635 6050777 2024-02-24 04:07:04.469 2024-02-24 04:07:04.469 1000 STREAM 141924 15925 6050780 2024-02-24 04:09:04.472 2024-02-24 04:09:04.472 1000 STREAM 141924 14258 6050784 2024-02-24 04:11:05.111 2024-02-24 04:11:05.111 1000 STREAM 141924 20717 6050786 2024-02-24 04:12:05.121 2024-02-24 04:12:05.121 1000 STREAM 141924 13798 6050792 2024-02-24 04:13:05.127 2024-02-24 04:13:05.127 1000 STREAM 141924 21088 6050819 2024-02-24 04:20:01.729 2024-02-24 04:20:01.729 1000 STREAM 141924 11992 6051222 2024-02-24 05:23:04.534 2024-02-24 05:23:04.534 1000 STREAM 141924 12188 6115882 2024-02-29 17:29:49.781 2024-02-29 17:29:49.781 3200 FEE 443894 20018 6115883 2024-02-29 17:29:49.781 2024-02-29 17:29:49.781 28800 TIP 443894 21481 6115900 2024-02-29 17:30:32.493 2024-02-29 17:30:32.493 100 FEE 443827 9166 6115901 2024-02-29 17:30:32.493 2024-02-29 17:30:32.493 900 TIP 443827 8926 6115936 2024-02-29 17:32:09.988 2024-02-29 17:32:09.988 100000 FEE 443911 2022 6115968 2024-02-29 17:34:15.63 2024-02-29 17:34:15.63 15000 FEE 443150 11164 6115969 2024-02-29 17:34:15.63 2024-02-29 17:34:15.63 135000 TIP 443150 1617 6115989 2024-02-29 17:34:25.085 2024-02-29 17:34:25.085 1000 FEE 443105 676 6115990 2024-02-29 17:34:25.085 2024-02-29 17:34:25.085 9000 TIP 443105 3440 6115993 2024-02-29 17:34:45.584 2024-02-29 17:34:45.584 1000 FEE 443920 1006 6116001 2024-02-29 17:34:53.853 2024-02-29 17:34:53.853 0 FEE 443916 1959 6116005 2024-02-29 17:35:04.979 2024-02-29 17:35:04.979 1000 FEE 443866 12222 6116006 2024-02-29 17:35:04.979 2024-02-29 17:35:04.979 9000 TIP 443866 19156 6116008 2024-02-29 17:35:07.152 2024-02-29 17:35:07.152 1000 FEE 443921 9242 6116020 2024-02-29 17:35:40.974 2024-02-29 17:35:40.974 1000 FEE 443923 805 6116033 2024-02-29 17:37:39.327 2024-02-29 17:37:39.327 1000 FEE 443925 20182 6116047 2024-02-29 17:38:11.912 2024-02-29 17:38:11.912 1000 FEE 443928 18745 6116052 2024-02-29 17:38:45.929 2024-02-29 17:38:45.929 1000 FEE 443929 21287 6116056 2024-02-29 17:39:19.518 2024-02-29 17:39:19.518 1000 FEE 443745 19777 6116057 2024-02-29 17:39:19.518 2024-02-29 17:39:19.518 9000 TIP 443745 1836 6116083 2024-02-29 17:41:11.157 2024-02-29 17:41:11.157 1000 FEE 443921 7425 6116084 2024-02-29 17:41:11.157 2024-02-29 17:41:11.157 9000 TIP 443921 11897 6116089 2024-02-29 17:41:11.663 2024-02-29 17:41:11.663 1000 FEE 443921 16336 6116090 2024-02-29 17:41:11.663 2024-02-29 17:41:11.663 9000 TIP 443921 12072 6116093 2024-02-29 17:41:15.192 2024-02-29 17:41:15.192 1000 FEE 443893 925 6116094 2024-02-29 17:41:15.192 2024-02-29 17:41:15.192 9000 TIP 443893 21131 6116095 2024-02-29 17:41:15.313 2024-02-29 17:41:15.313 1000 FEE 443893 19524 6116096 2024-02-29 17:41:15.313 2024-02-29 17:41:15.313 9000 TIP 443893 17976 6116102 2024-02-29 17:41:26.957 2024-02-29 17:41:26.957 1600 FEE 443919 18076 6116103 2024-02-29 17:41:26.957 2024-02-29 17:41:26.957 14400 TIP 443919 691 6116104 2024-02-29 17:41:31.129 2024-02-29 17:41:31.129 1000 FEE 443934 4345 6116125 2024-02-29 17:42:46.475 2024-02-29 17:42:46.475 3300 FEE 443548 13046 6116126 2024-02-29 17:42:46.475 2024-02-29 17:42:46.475 29700 TIP 443548 20310 6116148 2024-02-29 17:43:16.62 2024-02-29 17:43:16.62 2100 FEE 443935 20436 6116149 2024-02-29 17:43:16.62 2024-02-29 17:43:16.62 18900 TIP 443935 19033 6116167 2024-02-29 17:43:25.781 2024-02-29 17:43:25.781 3300 FEE 443651 21140 6116168 2024-02-29 17:43:25.781 2024-02-29 17:43:25.781 29700 TIP 443651 15762 6116182 2024-02-29 17:43:56.665 2024-02-29 17:43:56.665 2100 FEE 443745 18372 6116183 2024-02-29 17:43:56.665 2024-02-29 17:43:56.665 18900 TIP 443745 12097 6116193 2024-02-29 17:44:42.304 2024-02-29 17:44:42.304 2100 FEE 443844 13587 6116194 2024-02-29 17:44:42.304 2024-02-29 17:44:42.304 18900 TIP 443844 8544 6116197 2024-02-29 17:44:45.485 2024-02-29 17:44:45.485 1000 FEE 443943 19664 6116217 2024-02-29 17:45:29.822 2024-02-29 17:45:29.822 1000 FEE 443948 1650 6116218 2024-02-29 17:45:43.765 2024-02-29 17:45:43.765 6600 FEE 443583 21562 6116219 2024-02-29 17:45:43.765 2024-02-29 17:45:43.765 59400 TIP 443583 937 6116227 2024-02-29 17:46:30.645 2024-02-29 17:46:30.645 1000 FEE 443949 18862 6116229 2024-02-29 17:46:38.579 2024-02-29 17:46:38.579 100000 FEE 443951 20624 6116257 2024-02-29 17:48:58.266 2024-02-29 17:48:58.266 7700 FEE 443919 2342 6116258 2024-02-29 17:48:58.266 2024-02-29 17:48:58.266 69300 TIP 443919 20190 6116273 2024-02-29 17:49:01.26 2024-02-29 17:49:01.26 7700 FEE 443919 20979 6116274 2024-02-29 17:49:01.26 2024-02-29 17:49:01.26 69300 TIP 443919 18836 6116277 2024-02-29 17:49:01.639 2024-02-29 17:49:01.639 7700 FEE 443919 19821 6116278 2024-02-29 17:49:01.639 2024-02-29 17:49:01.639 69300 TIP 443919 4521 6116282 2024-02-29 17:49:43.52 2024-02-29 17:49:43.52 3100 FEE 443940 16406 6116283 2024-02-29 17:49:43.52 2024-02-29 17:49:43.52 27900 TIP 443940 12911 6116291 2024-02-29 17:51:01.798 2024-02-29 17:51:01.798 3000 FEE 443528 15161 6116292 2024-02-29 17:51:01.798 2024-02-29 17:51:01.798 27000 TIP 443528 1224 6116308 2024-02-29 17:53:01.508 2024-02-29 17:53:01.508 100 FEE 443799 19296 6116309 2024-02-29 17:53:01.508 2024-02-29 17:53:01.508 900 TIP 443799 20840 6050665 2024-02-24 03:48:03.602 2024-02-24 03:48:03.602 1000 STREAM 141924 11776 6050672 2024-02-24 03:50:03.633 2024-02-24 03:50:03.633 1000 STREAM 141924 20163 6050679 2024-02-24 03:53:03.687 2024-02-24 03:53:03.687 1000 STREAM 141924 9833 6050680 2024-02-24 03:54:03.719 2024-02-24 03:54:03.719 1000 STREAM 141924 18235 6116011 2024-02-29 17:35:08.254 2024-02-29 17:35:08.254 1000 FEE 442982 20998 6116012 2024-02-29 17:35:08.254 2024-02-29 17:35:08.254 9000 TIP 442982 15326 6116021 2024-02-29 17:35:47.881 2024-02-29 17:35:47.881 0 FEE 443916 5746 6116023 2024-02-29 17:36:52.077 2024-02-29 17:36:52.077 0 FEE 443916 13100 6116039 2024-02-29 17:37:53.396 2024-02-29 17:37:53.396 2100 FEE 443272 3456 6116040 2024-02-29 17:37:53.396 2024-02-29 17:37:53.396 18900 TIP 443272 15544 6116045 2024-02-29 17:38:04.523 2024-02-29 17:38:04.523 500 FEE 443853 16839 6116046 2024-02-29 17:38:04.523 2024-02-29 17:38:04.523 4500 TIP 443853 18819 6116050 2024-02-29 17:38:24.028 2024-02-29 17:38:24.028 500 FEE 443919 18040 6116051 2024-02-29 17:38:24.028 2024-02-29 17:38:24.028 4500 TIP 443919 8664 6116107 2024-02-29 17:42:03.217 2024-02-29 17:42:03.217 1000 FEE 443890 717 6116108 2024-02-29 17:42:03.217 2024-02-29 17:42:03.217 9000 TIP 443890 18396 6116113 2024-02-29 17:42:33.622 2024-02-29 17:42:33.622 3300 FEE 443781 15594 6116114 2024-02-29 17:42:33.622 2024-02-29 17:42:33.622 29700 TIP 443781 21063 6116119 2024-02-29 17:42:41.42 2024-02-29 17:42:41.42 3300 FEE 443620 20306 6116120 2024-02-29 17:42:41.42 2024-02-29 17:42:41.42 29700 TIP 443620 16059 6116144 2024-02-29 17:43:04.701 2024-02-29 17:43:04.701 3300 FEE 443799 15100 6116145 2024-02-29 17:43:04.701 2024-02-29 17:43:04.701 29700 TIP 443799 652 6116154 2024-02-29 17:43:18.309 2024-02-29 17:43:18.309 3300 FEE 443613 5085 6116155 2024-02-29 17:43:18.309 2024-02-29 17:43:18.309 29700 TIP 443613 10311 6116159 2024-02-29 17:43:20.74 2024-02-29 17:43:20.74 3300 FEE 443651 16485 6116160 2024-02-29 17:43:20.74 2024-02-29 17:43:20.74 29700 TIP 443651 825 6116161 2024-02-29 17:43:20.838 2024-02-29 17:43:20.838 3300 FEE 443651 18392 6116162 2024-02-29 17:43:20.838 2024-02-29 17:43:20.838 29700 TIP 443651 21233 6116163 2024-02-29 17:43:21.02 2024-02-29 17:43:21.02 2100 FEE 443799 18995 6116164 2024-02-29 17:43:21.02 2024-02-29 17:43:21.02 18900 TIP 443799 20430 6116195 2024-02-29 17:44:43.051 2024-02-29 17:44:43.051 2100 FEE 443844 910 6116196 2024-02-29 17:44:43.051 2024-02-29 17:44:43.051 18900 TIP 443844 21178 6116243 2024-02-29 17:47:42.241 2024-02-29 17:47:42.241 7700 FEE 443919 18380 6116244 2024-02-29 17:47:42.241 2024-02-29 17:47:42.241 69300 TIP 443919 16665 6116245 2024-02-29 17:47:47.236 2024-02-29 17:47:47.236 1000 FEE 443953 14385 6116251 2024-02-29 17:48:26.767 2024-02-29 17:48:26.767 1000 FEE 443954 17148 6116281 2024-02-29 17:49:11.23 2024-02-29 17:49:11.23 1000 FEE 443956 2162 6116294 2024-02-29 17:51:36.676 2024-02-29 17:51:36.676 500 FEE 443913 5942 6116295 2024-02-29 17:51:36.676 2024-02-29 17:51:36.676 4500 TIP 443913 1173 6116314 2024-02-29 17:53:39.343 2024-02-29 17:53:39.343 1000 FEE 443962 11165 6116320 2024-02-29 17:53:54.34 2024-02-29 17:53:54.34 1000 FEE 443867 20657 6116321 2024-02-29 17:53:54.34 2024-02-29 17:53:54.34 9000 TIP 443867 14278 6116350 2024-02-29 17:56:21.852 2024-02-29 17:56:21.852 900 FEE 443867 9833 6116351 2024-02-29 17:56:21.852 2024-02-29 17:56:21.852 8100 TIP 443867 19952 6116392 2024-02-29 17:59:41.89 2024-02-29 17:59:41.89 21000 FEE 443942 21556 6116393 2024-02-29 17:59:41.89 2024-02-29 17:59:41.89 189000 TIP 443942 9916 6116394 2024-02-29 17:59:45.748 2024-02-29 17:59:45.748 1000 FEE 443970 646 6116396 2024-02-29 18:00:27.482 2024-02-29 18:00:27.482 1000 FEE 443971 1471 6116399 2024-02-29 18:01:17.082 2024-02-29 18:01:17.082 1000 FEE 443683 4958 6116400 2024-02-29 18:01:17.082 2024-02-29 18:01:17.082 9000 TIP 443683 20073 6116407 2024-02-29 18:04:36.084 2024-02-29 18:04:36.084 100 FEE 443956 635 6116408 2024-02-29 18:04:36.084 2024-02-29 18:04:36.084 900 TIP 443956 18583 6116409 2024-02-29 18:04:36.241 2024-02-29 18:04:36.241 200 FEE 443956 19281 6116410 2024-02-29 18:04:36.241 2024-02-29 18:04:36.241 1800 TIP 443956 19546 6116421 2024-02-29 18:04:37.578 2024-02-29 18:04:37.578 100 FEE 443956 12911 6116422 2024-02-29 18:04:37.578 2024-02-29 18:04:37.578 900 TIP 443956 14795 6116432 2024-02-29 18:05:25.077 2024-02-29 18:05:25.077 6900 FEE 443577 5578 6116433 2024-02-29 18:05:25.077 2024-02-29 18:05:25.077 62100 TIP 443577 20799 6116446 2024-02-29 18:06:48.395 2024-02-29 18:06:48.395 1000 FEE 443982 20337 6116479 2024-02-29 18:08:50.946 2024-02-29 18:08:50.946 1000 FEE 443951 3544 6116480 2024-02-29 18:08:50.946 2024-02-29 18:08:50.946 9000 TIP 443951 10638 6116484 2024-02-29 18:09:08.286 2024-02-29 18:09:08.286 1000 FEE 443617 15474 6116485 2024-02-29 18:09:08.286 2024-02-29 18:09:08.286 9000 TIP 443617 19524 6116511 2024-02-29 18:10:46.362 2024-02-29 18:10:46.362 6900 FEE 443881 1833 6116512 2024-02-29 18:10:46.362 2024-02-29 18:10:46.362 62100 TIP 443881 929 6116530 2024-02-29 18:12:29.9 2024-02-29 18:12:29.9 1000 FEE 443998 19690 6116551 2024-02-29 18:14:43.601 2024-02-29 18:14:43.601 1000 FEE 444005 616 6116552 2024-02-29 18:14:53.299 2024-02-29 18:14:53.299 1000 FEE 443998 18016 6116553 2024-02-29 18:14:53.299 2024-02-29 18:14:53.299 9000 TIP 443998 7983 6116579 2024-02-29 18:18:08.876 2024-02-29 18:18:08.876 6900 FEE 443283 5293 6116580 2024-02-29 18:18:08.876 2024-02-29 18:18:08.876 62100 TIP 443283 20970 6116587 2024-02-29 18:19:03.668 2024-02-29 18:19:03.668 1000 FEE 443319 9200 6116588 2024-02-29 18:19:03.668 2024-02-29 18:19:03.668 9000 TIP 443319 21577 6116596 2024-02-29 18:20:31.2 2024-02-29 18:20:31.2 10000 FEE 443956 713 6116597 2024-02-29 18:20:31.2 2024-02-29 18:20:31.2 90000 TIP 443956 20555 6116605 2024-02-29 18:21:54.125 2024-02-29 18:21:54.125 1000 FEE 444000 20430 6116606 2024-02-29 18:21:54.125 2024-02-29 18:21:54.125 9000 TIP 444000 20922 6116607 2024-02-29 18:21:54.746 2024-02-29 18:21:54.746 1000 FEE 444000 20099 6116608 2024-02-29 18:21:54.746 2024-02-29 18:21:54.746 9000 TIP 444000 777 6116612 2024-02-29 18:22:18.348 2024-02-29 18:22:18.348 3100 FEE 444009 2529 6116613 2024-02-29 18:22:18.348 2024-02-29 18:22:18.348 27900 TIP 444009 1673 6116632 2024-02-29 18:24:18.244 2024-02-29 18:24:18.244 500 FEE 443943 4570 6116633 2024-02-29 18:24:18.244 2024-02-29 18:24:18.244 4500 TIP 443943 19096 6116645 2024-02-29 18:27:43.053 2024-02-29 18:27:43.053 7700 FEE 443951 21446 6116646 2024-02-29 18:27:43.053 2024-02-29 18:27:43.053 69300 TIP 443951 650 6050720 2024-02-24 04:00:04.446 2024-02-24 04:00:04.446 1000 STREAM 141924 14465 6050736 2024-02-24 04:01:04.433 2024-02-24 04:01:04.433 1000 STREAM 141924 20102 6050749 2024-02-24 04:02:04.428 2024-02-24 04:02:04.428 1000 STREAM 141924 19500 6050771 2024-02-24 04:04:04.436 2024-02-24 04:04:04.436 1000 STREAM 141924 21238 6050773 2024-02-24 04:06:04.459 2024-02-24 04:06:04.459 1000 STREAM 141924 5293 6050778 2024-02-24 04:08:04.466 2024-02-24 04:08:04.466 1000 STREAM 141924 19952 6050781 2024-02-24 04:10:04.484 2024-02-24 04:10:04.484 1000 STREAM 141924 18625 6116016 2024-02-29 17:35:09.397 2024-02-29 17:35:09.397 9000 TIP 442982 2232 6116025 2024-02-29 17:37:09.768 2024-02-29 17:37:09.768 3100 FEE 443836 19961 6116026 2024-02-29 17:37:09.768 2024-02-29 17:37:09.768 27900 TIP 443836 666 6116029 2024-02-29 17:37:27.597 2024-02-29 17:37:27.597 0 FEE 443916 917 6116060 2024-02-29 17:39:28.635 2024-02-29 17:39:28.635 1000 FEE 443930 10944 6116064 2024-02-29 17:40:33.581 2024-02-29 17:40:33.581 1000 FEE 443431 20817 6116065 2024-02-29 17:40:33.581 2024-02-29 17:40:33.581 9000 TIP 443431 814 6116081 2024-02-29 17:41:11.029 2024-02-29 17:41:11.029 1000 FEE 443921 692 6116082 2024-02-29 17:41:11.029 2024-02-29 17:41:11.029 9000 TIP 443921 20619 6116097 2024-02-29 17:41:15.487 2024-02-29 17:41:15.487 1000 FEE 443893 5646 6116098 2024-02-29 17:41:15.487 2024-02-29 17:41:15.487 9000 TIP 443893 20972 6116099 2024-02-29 17:41:15.668 2024-02-29 17:41:15.668 1000 FEE 443893 1576 6116100 2024-02-29 17:41:15.668 2024-02-29 17:41:15.668 9000 TIP 443893 18225 6116109 2024-02-29 17:42:17.01 2024-02-29 17:42:17.01 1000 FEE 443936 20663 6116132 2024-02-29 17:42:58.517 2024-02-29 17:42:58.517 3300 FEE 443545 3353 6116133 2024-02-29 17:42:58.517 2024-02-29 17:42:58.517 29700 TIP 443545 1985 6116152 2024-02-29 17:43:18.079 2024-02-29 17:43:18.079 300 FEE 443833 16834 6116153 2024-02-29 17:43:18.079 2024-02-29 17:43:18.079 2700 TIP 443833 13553 6116157 2024-02-29 17:43:20.521 2024-02-29 17:43:20.521 3300 FEE 443651 18274 6116158 2024-02-29 17:43:20.521 2024-02-29 17:43:20.521 29700 TIP 443651 1712 6116174 2024-02-29 17:43:43.023 2024-02-29 17:43:43.023 3300 FEE 443728 15690 6116175 2024-02-29 17:43:43.023 2024-02-29 17:43:43.023 29700 TIP 443728 5701 6116198 2024-02-29 17:44:46.44 2024-02-29 17:44:46.44 1000 FEE 443944 19795 6116221 2024-02-29 17:46:13.229 2024-02-29 17:46:13.229 3300 FEE 443399 9355 6116222 2024-02-29 17:46:13.229 2024-02-29 17:46:13.229 29700 TIP 443399 656 6116233 2024-02-29 17:47:00.814 2024-02-29 17:47:00.814 0 FEE 443952 21585 6116249 2024-02-29 17:48:20.966 2024-02-29 17:48:20.966 3300 FEE 443399 21291 6116250 2024-02-29 17:48:20.966 2024-02-29 17:48:20.966 29700 TIP 443399 19566 6116261 2024-02-29 17:48:58.342 2024-02-29 17:48:58.342 7700 FEE 443919 19533 6116262 2024-02-29 17:48:58.342 2024-02-29 17:48:58.342 69300 TIP 443919 15938 6116267 2024-02-29 17:48:58.669 2024-02-29 17:48:58.669 7700 FEE 443919 1512 6116268 2024-02-29 17:48:58.669 2024-02-29 17:48:58.669 69300 TIP 443919 20812 6116286 2024-02-29 17:49:58.682 2024-02-29 17:49:58.682 5700 FEE 443083 19259 6116287 2024-02-29 17:49:58.682 2024-02-29 17:49:58.682 51300 TIP 443083 780 6116289 2024-02-29 17:50:27.662 2024-02-29 17:50:27.662 1000 FEE 443957 21457 6116299 2024-02-29 17:52:02.755 2024-02-29 17:52:02.755 1000 FEE 443959 2734 6116300 2024-02-29 17:52:38.459 2024-02-29 17:52:38.459 1700 FEE 443903 15367 6116301 2024-02-29 17:52:38.459 2024-02-29 17:52:38.459 15300 TIP 443903 16939 6116306 2024-02-29 17:53:00.67 2024-02-29 17:53:00.67 100 FEE 443799 21591 6116307 2024-02-29 17:53:00.67 2024-02-29 17:53:00.67 900 TIP 443799 19094 6116318 2024-02-29 17:53:54.224 2024-02-29 17:53:54.224 1000 FEE 443867 16301 6116319 2024-02-29 17:53:54.224 2024-02-29 17:53:54.224 9000 TIP 443867 16543 6116369 2024-02-29 17:57:38.13 2024-02-29 17:57:38.13 1000 FEE 443935 10102 6116370 2024-02-29 17:57:38.13 2024-02-29 17:57:38.13 9000 TIP 443935 886 6116375 2024-02-29 17:59:05.865 2024-02-29 17:59:05.865 9000 FEE 443545 21417 6116376 2024-02-29 17:59:05.865 2024-02-29 17:59:05.865 81000 TIP 443545 19153 6116379 2024-02-29 17:59:08.627 2024-02-29 17:59:08.627 6900 FEE 443548 19034 6116380 2024-02-29 17:59:08.627 2024-02-29 17:59:08.627 62100 TIP 443548 19309 6116443 2024-02-29 18:06:21.25 2024-02-29 18:06:21.25 1000 FEE 443980 1692 6116452 2024-02-29 18:06:53.072 2024-02-29 18:06:53.072 1000 FEE 443984 19284 6116462 2024-02-29 18:08:05.492 2024-02-29 18:08:05.492 3000 FEE 443683 4692 6116463 2024-02-29 18:08:05.492 2024-02-29 18:08:05.492 27000 TIP 443683 19394 6116494 2024-02-29 18:09:49.491 2024-02-29 18:09:49.491 1000 FEE 443550 19030 6116495 2024-02-29 18:09:49.491 2024-02-29 18:09:49.491 9000 TIP 443550 19243 6116498 2024-02-29 18:09:50.077 2024-02-29 18:09:50.077 1000 FEE 443550 5758 6116499 2024-02-29 18:09:50.077 2024-02-29 18:09:50.077 9000 TIP 443550 18517 6116531 2024-02-29 18:12:54.631 2024-02-29 18:12:54.631 6900 FEE 443808 17001 6116532 2024-02-29 18:12:54.631 2024-02-29 18:12:54.631 62100 TIP 443808 2204 6116554 2024-02-29 18:14:53.66 2024-02-29 18:14:53.66 1000 FEE 443998 6268 6116555 2024-02-29 18:14:53.66 2024-02-29 18:14:53.66 9000 TIP 443998 18231 6116568 2024-02-29 18:16:49.138 2024-02-29 18:16:49.138 1000 FEE 444010 2111 6116570 2024-02-29 18:17:03.618 2024-02-29 18:17:03.618 1000 FEE 444011 19662 6116571 2024-02-29 18:17:18.073 2024-02-29 18:17:18.073 4000 FEE 443986 18873 6116572 2024-02-29 18:17:18.073 2024-02-29 18:17:18.073 36000 TIP 443986 2757 6116573 2024-02-29 18:17:22.04 2024-02-29 18:17:22.04 5700 FEE 444004 11430 6116574 2024-02-29 18:17:22.04 2024-02-29 18:17:22.04 51300 TIP 444004 18817 6116625 2024-02-29 18:23:54.592 2024-02-29 18:23:54.592 500 FEE 443931 14950 6116626 2024-02-29 18:23:54.592 2024-02-29 18:23:54.592 4500 TIP 443931 21589 6116643 2024-02-29 18:27:42.978 2024-02-29 18:27:42.978 7700 FEE 443951 19462 6116644 2024-02-29 18:27:42.978 2024-02-29 18:27:42.978 69300 TIP 443951 2029 6116647 2024-02-29 18:27:43.232 2024-02-29 18:27:43.232 7700 FEE 443951 2577 6116648 2024-02-29 18:27:43.232 2024-02-29 18:27:43.232 69300 TIP 443951 1046 6116667 2024-02-29 18:31:53.401 2024-02-29 18:31:53.401 1700 FEE 444002 21079 6116668 2024-02-29 18:31:53.401 2024-02-29 18:31:53.401 15300 TIP 444002 9261 6116692 2024-02-29 18:34:42.666 2024-02-29 18:34:42.666 9000 FEE 443834 5425 6116693 2024-02-29 18:34:42.666 2024-02-29 18:34:42.666 81000 TIP 443834 5175 6116696 2024-02-29 18:35:54.008 2024-02-29 18:35:54.008 1000 FEE 444024 12265 6116704 2024-02-29 18:36:34.19 2024-02-29 18:36:34.19 2100 FEE 443919 11417 6116705 2024-02-29 18:36:34.19 2024-02-29 18:36:34.19 18900 TIP 443919 8544 6116743 2024-02-29 18:37:47.441 2024-02-29 18:37:47.441 2100 FEE 443697 1577 6116744 2024-02-29 18:37:47.441 2024-02-29 18:37:47.441 18900 TIP 443697 6361 6116773 2024-02-29 18:39:47.657 2024-02-29 18:39:47.657 1000 FEE 443944 18357 6116774 2024-02-29 18:39:47.657 2024-02-29 18:39:47.657 9000 TIP 443944 19980 6116777 2024-02-29 18:39:59.372 2024-02-29 18:39:59.372 1000 FEE 443912 20581 6116778 2024-02-29 18:39:59.372 2024-02-29 18:39:59.372 9000 TIP 443912 5527 6116791 2024-02-29 18:40:36.78 2024-02-29 18:40:36.78 6900 FEE 443915 10944 6050722 2024-02-24 04:00:09.987 2024-02-24 04:00:09.987 18900 TIP 436792 15697 6050729 2024-02-24 04:00:27.764 2024-02-24 04:00:27.764 2100 FEE 436827 19622 6050730 2024-02-24 04:00:27.764 2024-02-24 04:00:27.764 18900 TIP 436827 6515 6050731 2024-02-24 04:00:32.357 2024-02-24 04:00:32.357 2100 FEE 436823 20182 6050732 2024-02-24 04:00:32.357 2024-02-24 04:00:32.357 18900 TIP 436823 19821 6050737 2024-02-24 04:01:05.609 2024-02-24 04:01:05.609 1000 FEE 436893 18269 6050860 2024-02-24 04:31:00.601 2024-02-24 04:31:00.601 1000 FEE 436669 20257 6050861 2024-02-24 04:31:00.601 2024-02-24 04:31:00.601 9000 TIP 436669 19378 6050875 2024-02-24 04:33:06.723 2024-02-24 04:33:06.723 1000 FEE 436690 7989 6050876 2024-02-24 04:33:06.723 2024-02-24 04:33:06.723 9000 TIP 436690 1745 6050877 2024-02-24 04:33:21.039 2024-02-24 04:33:21.039 1000 FEE 436276 11678 6050878 2024-02-24 04:33:21.039 2024-02-24 04:33:21.039 9000 TIP 436276 763 6050887 2024-02-24 04:36:16.69 2024-02-24 04:36:16.69 1000 FEE 436910 9363 6050908 2024-02-24 04:46:09.499 2024-02-24 04:46:09.499 800 FEE 436720 14465 6050909 2024-02-24 04:46:09.499 2024-02-24 04:46:09.499 7200 TIP 436720 11516 6050956 2024-02-24 04:54:29.82 2024-02-24 04:54:29.82 1000 FEE 436915 20897 6050974 2024-02-24 04:59:36.502 2024-02-24 04:59:36.502 1000 FEE 436916 678 6050989 2024-02-24 05:07:31.824 2024-02-24 05:07:31.824 100 FEE 436753 4989 6050990 2024-02-24 05:07:31.824 2024-02-24 05:07:31.824 900 TIP 436753 19841 6051003 2024-02-24 05:09:31.029 2024-02-24 05:09:31.029 2600 FEE 436837 917 6051004 2024-02-24 05:09:31.029 2024-02-24 05:09:31.029 23400 TIP 436837 21603 6051008 2024-02-24 05:11:04.777 2024-02-24 05:11:04.777 100 FEE 436894 1825 6051009 2024-02-24 05:11:04.777 2024-02-24 05:11:04.777 900 TIP 436894 21457 6051035 2024-02-24 05:11:38.665 2024-02-24 05:11:38.665 1000 FEE 420323 20222 6051036 2024-02-24 05:11:38.665 2024-02-24 05:11:38.665 9000 TIP 420323 21556 6051073 2024-02-24 05:11:56.497 2024-02-24 05:11:56.497 1000 FEE 420995 15094 6051074 2024-02-24 05:11:56.497 2024-02-24 05:11:56.497 9000 TIP 420995 18119 6051089 2024-02-24 05:11:59.06 2024-02-24 05:11:59.06 1000 FEE 420995 20812 6051090 2024-02-24 05:11:59.06 2024-02-24 05:11:59.06 9000 TIP 420995 16704 6051093 2024-02-24 05:11:59.421 2024-02-24 05:11:59.421 1000 FEE 420995 19282 6051094 2024-02-24 05:11:59.421 2024-02-24 05:11:59.421 9000 TIP 420995 20218 6051109 2024-02-24 05:12:31.651 2024-02-24 05:12:31.651 1000 FEE 433248 14663 6051110 2024-02-24 05:12:31.651 2024-02-24 05:12:31.651 9000 TIP 433248 9341 6051154 2024-02-24 05:14:58.327 2024-02-24 05:14:58.327 1000 FEE 411814 866 6051155 2024-02-24 05:14:58.327 2024-02-24 05:14:58.327 9000 TIP 411814 837 6051166 2024-02-24 05:15:02.165 2024-02-24 05:15:02.165 1000 FEE 411866 14195 6051167 2024-02-24 05:15:02.165 2024-02-24 05:15:02.165 9000 TIP 411866 10409 6051218 2024-02-24 05:22:49.927 2024-02-24 05:22:49.927 5000 FEE 436683 8242 6051219 2024-02-24 05:22:49.927 2024-02-24 05:22:49.927 45000 TIP 436683 10638 6051262 2024-02-24 05:42:19.637 2024-02-24 05:42:19.637 800 FEE 436683 15160 6051263 2024-02-24 05:42:19.637 2024-02-24 05:42:19.637 7200 TIP 436683 1890 6051281 2024-02-24 05:49:05.895 2024-02-24 05:49:05.895 1000 FEE 436930 13781 6051296 2024-02-24 05:55:46.17 2024-02-24 05:55:46.17 0 FEE 436930 20624 6051335 2024-02-24 06:10:57.735 2024-02-24 06:10:57.735 2100 FEE 436566 18116 6051336 2024-02-24 06:10:57.735 2024-02-24 06:10:57.735 18900 TIP 436566 716 6051373 2024-02-24 06:19:33.813 2024-02-24 06:19:33.813 2100 FEE 436934 6202 6051374 2024-02-24 06:19:33.813 2024-02-24 06:19:33.813 18900 TIP 436934 701 6051392 2024-02-24 06:24:29.616 2024-02-24 06:24:29.616 10000 FEE 436827 16816 6051393 2024-02-24 06:24:29.616 2024-02-24 06:24:29.616 90000 TIP 436827 5865 6051459 2024-02-24 06:40:33.816 2024-02-24 06:40:33.816 1000 FEE 436837 9342 6051460 2024-02-24 06:40:33.816 2024-02-24 06:40:33.816 9000 TIP 436837 18274 6051507 2024-02-24 06:53:47.976 2024-02-24 06:53:47.976 2100 FEE 436894 15510 6051508 2024-02-24 06:53:47.976 2024-02-24 06:53:47.976 18900 TIP 436894 19633 6051519 2024-02-24 07:01:13.069 2024-02-24 07:01:13.069 800 FEE 436917 21575 6051520 2024-02-24 07:01:13.069 2024-02-24 07:01:13.069 7200 TIP 436917 891 6051557 2024-02-24 07:09:40.081 2024-02-24 07:09:40.081 100 FEE 436923 9438 6051558 2024-02-24 07:09:40.081 2024-02-24 07:09:40.081 900 TIP 436923 19909 6051571 2024-02-24 07:09:43.198 2024-02-24 07:09:43.198 100 FEE 436923 14213 6051572 2024-02-24 07:09:43.198 2024-02-24 07:09:43.198 900 TIP 436923 14152 6051573 2024-02-24 07:09:43.433 2024-02-24 07:09:43.433 100 FEE 436923 17522 6051574 2024-02-24 07:09:43.433 2024-02-24 07:09:43.433 900 TIP 436923 17522 6051575 2024-02-24 07:09:43.836 2024-02-24 07:09:43.836 100 FEE 436923 1046 6051576 2024-02-24 07:09:43.836 2024-02-24 07:09:43.836 900 TIP 436923 20143 6051586 2024-02-24 07:10:18.436 2024-02-24 07:10:18.436 1000 FEE 436953 11450 6051605 2024-02-24 07:17:59.333 2024-02-24 07:17:59.333 2500 FEE 436859 17696 6051606 2024-02-24 07:17:59.333 2024-02-24 07:17:59.333 22500 TIP 436859 20153 6051607 2024-02-24 07:17:59.607 2024-02-24 07:17:59.607 2500 FEE 436859 1692 6051608 2024-02-24 07:17:59.607 2024-02-24 07:17:59.607 22500 TIP 436859 2232 6051613 2024-02-24 07:18:00.216 2024-02-24 07:18:00.216 2500 FEE 436859 19941 6051614 2024-02-24 07:18:00.216 2024-02-24 07:18:00.216 22500 TIP 436859 19826 6051644 2024-02-24 07:18:09.103 2024-02-24 07:18:09.103 2500 FEE 436851 20185 6051645 2024-02-24 07:18:09.103 2024-02-24 07:18:09.103 22500 TIP 436851 9820 6051652 2024-02-24 07:18:13.235 2024-02-24 07:18:13.235 2500 FEE 436711 15549 6051653 2024-02-24 07:18:13.235 2024-02-24 07:18:13.235 22500 TIP 436711 19154 6051662 2024-02-24 07:18:14.357 2024-02-24 07:18:14.357 2500 FEE 436711 17446 6051663 2024-02-24 07:18:14.357 2024-02-24 07:18:14.357 22500 TIP 436711 18072 6051664 2024-02-24 07:18:14.593 2024-02-24 07:18:14.593 2500 FEE 436711 5759 6051665 2024-02-24 07:18:14.593 2024-02-24 07:18:14.593 22500 TIP 436711 20646 6051730 2024-02-24 07:37:07.565 2024-02-24 07:37:07.565 1000 POLL 436759 9167 6051737 2024-02-24 07:37:45.616 2024-02-24 07:37:45.616 1000 FEE 436827 21466 6051738 2024-02-24 07:37:45.616 2024-02-24 07:37:45.616 9000 TIP 436827 15510 6051756 2024-02-24 07:44:06.935 2024-02-24 07:44:06.935 1000 FEE 436964 18368 6051758 2024-02-24 07:45:51.466 2024-02-24 07:45:51.466 1000 FEE 436965 640 6051778 2024-02-24 07:52:15.382 2024-02-24 07:52:15.382 100 FEE 436926 701 6051779 2024-02-24 07:52:15.382 2024-02-24 07:52:15.382 900 TIP 436926 1064 6051782 2024-02-24 07:52:16.816 2024-02-24 07:52:16.816 9000 FEE 436926 15843 6051783 2024-02-24 07:52:16.816 2024-02-24 07:52:16.816 81000 TIP 436926 17710 6051796 2024-02-24 07:57:18.254 2024-02-24 07:57:18.254 2100 FEE 436862 2596 6051797 2024-02-24 07:57:18.254 2024-02-24 07:57:18.254 18900 TIP 436862 7760 6051811 2024-02-24 08:04:51.239 2024-02-24 08:04:51.239 2100 FEE 436844 631 6051812 2024-02-24 08:04:51.239 2024-02-24 08:04:51.239 18900 TIP 436844 20573 6051825 2024-02-24 08:11:57.558 2024-02-24 08:11:57.558 0 FEE 436970 12057 6051846 2024-02-24 08:18:40.231 2024-02-24 08:18:40.231 2100 FEE 436753 1438 6051847 2024-02-24 08:18:40.231 2024-02-24 08:18:40.231 18900 TIP 436753 19842 6051858 2024-02-24 08:18:47.821 2024-02-24 08:18:47.821 2100 FEE 436560 2724 6050724 2024-02-24 04:00:12.663 2024-02-24 04:00:12.663 18900 TIP 436837 19281 6050775 2024-02-24 04:06:31.773 2024-02-24 04:06:31.773 1000 FEE 436896 16259 6050779 2024-02-24 04:08:19.528 2024-02-24 04:08:19.528 1000 FEE 436898 20084 6050787 2024-02-24 04:12:12.797 2024-02-24 04:12:12.797 2800 FEE 436829 1745 6050788 2024-02-24 04:12:12.797 2024-02-24 04:12:12.797 25200 TIP 436829 7553 6050790 2024-02-24 04:12:58.892 2024-02-24 04:12:58.892 2800 FEE 436861 678 6050791 2024-02-24 04:12:58.892 2024-02-24 04:12:58.892 25200 TIP 436861 18271 6050794 2024-02-24 04:13:58.79 2024-02-24 04:13:58.79 1000 FEE 436902 9332 6050798 2024-02-24 04:15:01.152 2024-02-24 04:15:01.152 0 FEE 436901 21148 6050806 2024-02-24 04:16:16.816 2024-02-24 04:16:16.816 0 FEE 436901 20840 6050810 2024-02-24 04:16:36.708 2024-02-24 04:16:36.708 2800 FEE 436762 15094 6050811 2024-02-24 04:16:36.708 2024-02-24 04:16:36.708 25200 TIP 436762 19864 6050838 2024-02-24 04:26:37.192 2024-02-24 04:26:37.192 1000 FEE 435860 16754 6050839 2024-02-24 04:26:37.192 2024-02-24 04:26:37.192 9000 TIP 435860 11288 6050853 2024-02-24 04:28:37.089 2024-02-24 04:28:37.089 100000 FEE 436909 18209 6050858 2024-02-24 04:30:59.989 2024-02-24 04:30:59.989 1000 FEE 436720 5308 6050859 2024-02-24 04:30:59.989 2024-02-24 04:30:59.989 9000 TIP 436720 21527 6050884 2024-02-24 04:34:34.031 2024-02-24 04:34:34.031 1000 POLL 436759 777 6050895 2024-02-24 04:41:09.244 2024-02-24 04:41:09.244 1000 FEE 436909 1845 6050896 2024-02-24 04:41:09.244 2024-02-24 04:41:09.244 9000 TIP 436909 5003 6050982 2024-02-24 05:04:30.186 2024-02-24 05:04:30.186 1000 POLL 436759 19537 6051015 2024-02-24 05:11:35.814 2024-02-24 05:11:35.814 1000 FEE 420323 6688 6051016 2024-02-24 05:11:35.814 2024-02-24 05:11:35.814 9000 TIP 420323 19839 6051019 2024-02-24 05:11:36.883 2024-02-24 05:11:36.883 1000 FEE 420323 7913 6051020 2024-02-24 05:11:36.883 2024-02-24 05:11:36.883 9000 TIP 420323 19282 6051023 2024-02-24 05:11:37.29 2024-02-24 05:11:37.29 1000 FEE 420323 3440 6051024 2024-02-24 05:11:37.29 2024-02-24 05:11:37.29 9000 TIP 420323 18396 6051025 2024-02-24 05:11:37.483 2024-02-24 05:11:37.483 1000 FEE 420323 11776 6051026 2024-02-24 05:11:37.483 2024-02-24 05:11:37.483 9000 TIP 420323 1136 6051047 2024-02-24 05:11:42.966 2024-02-24 05:11:42.966 1000 FEE 420323 20102 6051048 2024-02-24 05:11:42.966 2024-02-24 05:11:42.966 9000 TIP 420323 9345 6051053 2024-02-24 05:11:53.489 2024-02-24 05:11:53.489 1000 FEE 420995 2529 6051054 2024-02-24 05:11:53.489 2024-02-24 05:11:53.489 9000 TIP 420995 10063 6051059 2024-02-24 05:11:54.444 2024-02-24 05:11:54.444 1000 FEE 420995 9336 6051060 2024-02-24 05:11:54.444 2024-02-24 05:11:54.444 9000 TIP 420995 15474 6051085 2024-02-24 05:11:58.019 2024-02-24 05:11:58.019 1000 FEE 420995 928 6051086 2024-02-24 05:11:58.019 2024-02-24 05:11:58.019 9000 TIP 420995 18675 6051111 2024-02-24 05:12:40.727 2024-02-24 05:12:40.727 1000 FEE 433706 3342 6051112 2024-02-24 05:12:40.727 2024-02-24 05:12:40.727 9000 TIP 433706 21532 6051113 2024-02-24 05:12:42.898 2024-02-24 05:12:42.898 1000 FEE 433706 10352 6051114 2024-02-24 05:12:42.898 2024-02-24 05:12:42.898 9000 TIP 433706 20299 6051123 2024-02-24 05:12:45.545 2024-02-24 05:12:45.545 1000 FEE 433706 11073 6051124 2024-02-24 05:12:45.545 2024-02-24 05:12:45.545 9000 TIP 433706 10398 6051177 2024-02-24 05:15:03.326 2024-02-24 05:15:03.326 1000 FEE 411866 1465 6051178 2024-02-24 05:15:03.326 2024-02-24 05:15:03.326 9000 TIP 411866 21036 6051187 2024-02-24 05:15:05.705 2024-02-24 05:15:05.705 1000 FEE 411866 1632 6051188 2024-02-24 05:15:05.705 2024-02-24 05:15:05.705 9000 TIP 411866 8245 6051209 2024-02-24 05:21:01.192 2024-02-24 05:21:01.192 281700 FEE 436455 11798 6051210 2024-02-24 05:21:01.192 2024-02-24 05:21:01.192 2535300 TIP 436455 8926 6051231 2024-02-24 05:28:55.316 2024-02-24 05:28:55.316 2600 FEE 436566 13361 6051232 2024-02-24 05:28:55.316 2024-02-24 05:28:55.316 23400 TIP 436566 1658 6051240 2024-02-24 05:33:07.965 2024-02-24 05:33:07.965 10000 FEE 436926 21361 6051241 2024-02-24 05:33:16.04 2024-02-24 05:33:16.04 800 FEE 436837 18809 6051242 2024-02-24 05:33:16.04 2024-02-24 05:33:16.04 7200 TIP 436837 20738 6051310 2024-02-24 05:59:04.841 2024-02-24 05:59:04.841 1000 FEE 436938 18909 6051316 2024-02-24 06:03:24.398 2024-02-24 06:03:24.398 100 FEE 436935 21090 6051317 2024-02-24 06:03:24.398 2024-02-24 06:03:24.398 900 TIP 436935 9333 6051377 2024-02-24 06:19:56.625 2024-02-24 06:19:56.625 2100 FEE 436895 5590 6051378 2024-02-24 06:19:56.625 2024-02-24 06:19:56.625 18900 TIP 436895 20036 6051396 2024-02-24 06:24:46.375 2024-02-24 06:24:46.375 10000 FEE 436440 18170 6051397 2024-02-24 06:24:46.375 2024-02-24 06:24:46.375 90000 TIP 436440 1209 6051399 2024-02-24 06:25:59.191 2024-02-24 06:25:59.191 200 FEE 436934 6515 6051400 2024-02-24 06:25:59.191 2024-02-24 06:25:59.191 1800 TIP 436934 1519 6051402 2024-02-24 06:26:17.364 2024-02-24 06:26:17.364 2100 FEE 436753 9330 6051403 2024-02-24 06:26:17.364 2024-02-24 06:26:17.364 18900 TIP 436753 2065 6051409 2024-02-24 06:27:09.818 2024-02-24 06:27:09.818 1000 POLL 436759 5791 6051446 2024-02-24 06:36:00.634 2024-02-24 06:36:00.634 100 FEE 436866 20704 6051447 2024-02-24 06:36:00.634 2024-02-24 06:36:00.634 900 TIP 436866 18174 6051472 2024-02-24 06:42:54.125 2024-02-24 06:42:54.125 2100 FEE 436556 16665 6051473 2024-02-24 06:42:54.125 2024-02-24 06:42:54.125 18900 TIP 436556 7583 6051484 2024-02-24 06:46:12.763 2024-02-24 06:46:12.763 2100 FEE 436919 18673 6051485 2024-02-24 06:46:12.763 2024-02-24 06:46:12.763 18900 TIP 436919 19995 6051511 2024-02-24 06:55:07.166 2024-02-24 06:55:07.166 200 FEE 436909 18678 6051512 2024-02-24 06:55:07.166 2024-02-24 06:55:07.166 1800 TIP 436909 6777 6051525 2024-02-24 07:03:58.069 2024-02-24 07:03:58.069 100 FEE 436894 15075 6051526 2024-02-24 07:03:58.069 2024-02-24 07:03:58.069 900 TIP 436894 20624 6051536 2024-02-24 07:06:59.395 2024-02-24 07:06:59.395 1000 FEE 436951 5359 6051543 2024-02-24 07:09:07.018 2024-02-24 07:09:07.018 100 FEE 436751 659 6051544 2024-02-24 07:09:07.018 2024-02-24 07:09:07.018 900 TIP 436751 16052 6051579 2024-02-24 07:09:44.673 2024-02-24 07:09:44.673 100 FEE 436923 20264 6051580 2024-02-24 07:09:44.673 2024-02-24 07:09:44.673 900 TIP 436923 19863 6051615 2024-02-24 07:18:00.405 2024-02-24 07:18:00.405 2500 FEE 436859 8074 6051616 2024-02-24 07:18:00.405 2024-02-24 07:18:00.405 22500 TIP 436859 15213 6051617 2024-02-24 07:18:00.621 2024-02-24 07:18:00.621 2500 FEE 436859 15978 6051618 2024-02-24 07:18:00.621 2024-02-24 07:18:00.621 22500 TIP 436859 18472 6051631 2024-02-24 07:18:04.336 2024-02-24 07:18:04.336 2500 FEE 436851 17050 6051632 2024-02-24 07:18:04.336 2024-02-24 07:18:04.336 22500 TIP 436851 2780 6051650 2024-02-24 07:18:12.938 2024-02-24 07:18:12.938 2500 FEE 436711 18897 6051651 2024-02-24 07:18:12.938 2024-02-24 07:18:12.938 22500 TIP 436711 21386 6051670 2024-02-24 07:18:15.324 2024-02-24 07:18:15.324 2500 FEE 436711 20133 6051671 2024-02-24 07:18:15.324 2024-02-24 07:18:15.324 22500 TIP 436711 9611 6051710 2024-02-24 07:30:39.325 2024-02-24 07:30:39.325 200 FEE 435019 16788 6051711 2024-02-24 07:30:39.325 2024-02-24 07:30:39.325 1800 TIP 435019 14278 6051718 2024-02-24 07:32:06.211 2024-02-24 07:32:06.211 1000 FEE 436729 1221 6051719 2024-02-24 07:32:06.211 2024-02-24 07:32:06.211 9000 TIP 436729 21455 6051722 2024-02-24 07:34:37.215 2024-02-24 07:34:37.215 1000 FEE 436556 11897 6051723 2024-02-24 07:34:37.215 2024-02-24 07:34:37.215 9000 TIP 436556 6688 6051728 2024-02-24 07:36:37.6 2024-02-24 07:36:37.6 1000 FEE 436959 7553 6051731 2024-02-24 07:37:24.472 2024-02-24 07:37:24.472 1000 FEE 436960 12736 6051734 2024-02-24 07:37:32.167 2024-02-24 07:37:32.167 0 FEE 436960 18449 6051748 2024-02-24 07:41:07.033 2024-02-24 07:41:07.033 1000 FEE 436962 15544 6051751 2024-02-24 07:42:33.895 2024-02-24 07:42:33.895 0 FEE 383547 21481 6051794 2024-02-24 07:56:30.384 2024-02-24 07:56:30.384 1000 FEE 436968 9433 6051800 2024-02-24 07:59:17.807 2024-02-24 07:59:17.807 0 FEE 436968 2342 6051810 2024-02-24 08:04:49.72 2024-02-24 08:04:49.72 1000 FEE 436972 12175 6051818 2024-02-24 08:08:04.961 2024-02-24 08:08:04.961 1000 FEE 436973 18533 6050753 2024-02-24 04:02:21.207 2024-02-24 04:02:21.207 18900 TIP 436699 19500 6050757 2024-02-24 04:02:37.809 2024-02-24 04:02:37.809 2100 FEE 436708 20660 6050758 2024-02-24 04:02:37.809 2024-02-24 04:02:37.809 18900 TIP 436708 5036 6050796 2024-02-24 04:14:52.216 2024-02-24 04:14:52.216 2800 FEE 436874 18543 6050797 2024-02-24 04:14:52.216 2024-02-24 04:14:52.216 25200 TIP 436874 11329 6050809 2024-02-24 04:16:32.048 2024-02-24 04:16:32.048 1000 FEE 436906 894 6050823 2024-02-24 04:22:56.008 2024-02-24 04:22:56.008 1000 POLL 436759 16556 6050834 2024-02-24 04:26:26.351 2024-02-24 04:26:26.351 1000 FEE 436720 1122 6050835 2024-02-24 04:26:26.351 2024-02-24 04:26:26.351 9000 TIP 436720 672 6050836 2024-02-24 04:26:28.881 2024-02-24 04:26:28.881 1000 FEE 436093 5293 6050837 2024-02-24 04:26:28.881 2024-02-24 04:26:28.881 9000 TIP 436093 18378 6050922 2024-02-24 04:46:11.27 2024-02-24 04:46:11.27 800 FEE 436720 6260 6050923 2024-02-24 04:46:11.27 2024-02-24 04:46:11.27 7200 TIP 436720 636 6050924 2024-02-24 04:46:11.457 2024-02-24 04:46:11.457 800 FEE 436720 20205 6050925 2024-02-24 04:46:11.457 2024-02-24 04:46:11.457 7200 TIP 436720 20059 6050936 2024-02-24 04:46:12.645 2024-02-24 04:46:12.645 800 FEE 436720 10490 6050937 2024-02-24 04:46:12.645 2024-02-24 04:46:12.645 7200 TIP 436720 19449 6050948 2024-02-24 04:50:41.383 2024-02-24 04:50:41.383 1000 FEE 436913 951 6050953 2024-02-24 04:53:37.896 2024-02-24 04:53:37.896 100 FEE 435847 6360 6050954 2024-02-24 04:53:37.896 2024-02-24 04:53:37.896 900 TIP 435847 19852 6050959 2024-02-24 04:54:37.786 2024-02-24 04:54:37.786 400 FEE 436909 1003 6050960 2024-02-24 04:54:37.786 2024-02-24 04:54:37.786 3600 TIP 436909 13046 6050963 2024-02-24 04:54:38.252 2024-02-24 04:54:38.252 400 FEE 436909 16289 6050964 2024-02-24 04:54:38.252 2024-02-24 04:54:38.252 3600 TIP 436909 2224 6050966 2024-02-24 04:55:03.756 2024-02-24 04:55:03.756 100 FEE 435911 7827 6050967 2024-02-24 04:55:03.756 2024-02-24 04:55:03.756 900 TIP 435911 16350 6050985 2024-02-24 05:05:25.042 2024-02-24 05:05:25.042 100 FEE 436281 19332 6050986 2024-02-24 05:05:25.042 2024-02-24 05:05:25.042 900 TIP 436281 4173 6050991 2024-02-24 05:07:40.421 2024-02-24 05:07:40.421 100 FEE 436720 6137 6050992 2024-02-24 05:07:40.421 2024-02-24 05:07:40.421 900 TIP 436720 12976 6051011 2024-02-24 05:11:29.897 2024-02-24 05:11:29.897 100 FEE 436892 21157 6051012 2024-02-24 05:11:29.897 2024-02-24 05:11:29.897 900 TIP 436892 669 6051017 2024-02-24 05:11:36.013 2024-02-24 05:11:36.013 1000 FEE 420323 17827 6051018 2024-02-24 05:11:36.013 2024-02-24 05:11:36.013 9000 TIP 420323 20551 6051029 2024-02-24 05:11:38.036 2024-02-24 05:11:38.036 1000 FEE 420323 2748 6051030 2024-02-24 05:11:38.036 2024-02-24 05:11:38.036 9000 TIP 420323 19995 6051043 2024-02-24 05:11:41.964 2024-02-24 05:11:41.964 1000 FEE 420323 634 6051044 2024-02-24 05:11:41.964 2024-02-24 05:11:41.964 9000 TIP 420323 9669 6051045 2024-02-24 05:11:42.491 2024-02-24 05:11:42.491 1000 FEE 420323 18533 6051046 2024-02-24 05:11:42.491 2024-02-24 05:11:42.491 9000 TIP 420323 1012 6051063 2024-02-24 05:11:55.259 2024-02-24 05:11:55.259 1000 FEE 420995 18727 6051064 2024-02-24 05:11:55.259 2024-02-24 05:11:55.259 9000 TIP 420995 14688 6051115 2024-02-24 05:12:43.484 2024-02-24 05:12:43.484 1000 FEE 433706 17927 6051116 2024-02-24 05:12:43.484 2024-02-24 05:12:43.484 9000 TIP 433706 14939 6051121 2024-02-24 05:12:45.102 2024-02-24 05:12:45.102 1000 FEE 433706 19639 6051122 2024-02-24 05:12:45.102 2024-02-24 05:12:45.102 9000 TIP 433706 7827 6051140 2024-02-24 05:14:54.507 2024-02-24 05:14:54.507 1000 FEE 411814 17157 6051141 2024-02-24 05:14:54.507 2024-02-24 05:14:54.507 9000 TIP 411814 20585 6051142 2024-02-24 05:14:54.923 2024-02-24 05:14:54.923 1000 FEE 411814 17124 6051143 2024-02-24 05:14:54.923 2024-02-24 05:14:54.923 9000 TIP 411814 15094 6051148 2024-02-24 05:14:55.623 2024-02-24 05:14:55.623 1000 FEE 411814 21281 6050795 2024-02-24 04:14:05.017 2024-02-24 04:14:05.017 1000 STREAM 141924 794 6116018 2024-02-29 17:35:09.856 2024-02-29 17:35:09.856 9000 TIP 442982 766 6116027 2024-02-29 17:37:14.882 2024-02-29 17:37:14.882 27900 FEE 443836 19777 6116028 2024-02-29 17:37:14.882 2024-02-29 17:37:14.882 251100 TIP 443836 5806 6116032 2024-02-29 17:37:32.076 2024-02-29 17:37:32.076 1000 FEE 443924 21166 6116038 2024-02-29 17:37:51.703 2024-02-29 17:37:51.703 1000 FEE 443926 5444 6116054 2024-02-29 17:39:07.376 2024-02-29 17:39:07.376 1000 FEE 443919 21247 6116055 2024-02-29 17:39:07.376 2024-02-29 17:39:07.376 9000 TIP 443919 659 6116058 2024-02-29 17:39:25.298 2024-02-29 17:39:25.298 1000 FEE 443836 12930 6116059 2024-02-29 17:39:25.298 2024-02-29 17:39:25.298 9000 TIP 443836 19309 6116066 2024-02-29 17:40:41.119 2024-02-29 17:40:41.119 1000 FEE 443450 18897 6116067 2024-02-29 17:40:41.119 2024-02-29 17:40:41.119 9000 TIP 443450 1047 6116101 2024-02-29 17:41:26.647 2024-02-29 17:41:26.647 1000 FEE 443933 1785 6116117 2024-02-29 17:42:38.836 2024-02-29 17:42:38.836 3300 FEE 443693 18989 6116118 2024-02-29 17:42:38.836 2024-02-29 17:42:38.836 29700 TIP 443693 21334 6116123 2024-02-29 17:42:46.341 2024-02-29 17:42:46.341 3300 FEE 443548 2711 6116124 2024-02-29 17:42:46.341 2024-02-29 17:42:46.341 29700 TIP 443548 9345 6116137 2024-02-29 17:43:02.644 2024-02-29 17:43:02.644 3100 FEE 443894 18507 6116138 2024-02-29 17:43:02.644 2024-02-29 17:43:02.644 27900 TIP 443894 20084 6116169 2024-02-29 17:43:31.537 2024-02-29 17:43:31.537 3400 FEE 443651 8400 6116170 2024-02-29 17:43:31.537 2024-02-29 17:43:31.537 30600 TIP 443651 1471 6116203 2024-02-29 17:45:03.536 2024-02-29 17:45:03.536 1000 FEE 443942 21344 6116204 2024-02-29 17:45:03.536 2024-02-29 17:45:03.536 9000 TIP 443942 19193 6116211 2024-02-29 17:45:16.469 2024-02-29 17:45:16.469 3300 FEE 443870 10102 6116212 2024-02-29 17:45:16.469 2024-02-29 17:45:16.469 29700 TIP 443870 896 6116223 2024-02-29 17:46:14.335 2024-02-29 17:46:14.335 3300 FEE 443399 6041 6116224 2024-02-29 17:46:14.335 2024-02-29 17:46:14.335 29700 TIP 443399 12819 6116265 2024-02-29 17:48:58.633 2024-02-29 17:48:58.633 7700 FEE 443919 9335 6116266 2024-02-29 17:48:58.633 2024-02-29 17:48:58.633 69300 TIP 443919 19033 6116296 2024-02-29 17:51:37.548 2024-02-29 17:51:37.548 500 FEE 443913 9611 6116297 2024-02-29 17:51:37.548 2024-02-29 17:51:37.548 4500 TIP 443913 2431 6116304 2024-02-29 17:52:59.396 2024-02-29 17:52:59.396 100 FEE 443583 19458 6116305 2024-02-29 17:52:59.396 2024-02-29 17:52:59.396 900 TIP 443583 9921 6116322 2024-02-29 17:53:55.235 2024-02-29 17:53:55.235 5700 FEE 443799 21398 6116323 2024-02-29 17:53:55.235 2024-02-29 17:53:55.235 51300 TIP 443799 7553 6116342 2024-02-29 17:55:20.871 2024-02-29 17:55:20.871 4000 FEE 443836 19785 6116343 2024-02-29 17:55:20.871 2024-02-29 17:55:20.871 36000 TIP 443836 21172 6116344 2024-02-29 17:55:35.016 2024-02-29 17:55:35.016 3200 FEE 443916 16830 6116345 2024-02-29 17:55:35.016 2024-02-29 17:55:35.016 28800 TIP 443916 12779 6116346 2024-02-29 17:55:42.708 2024-02-29 17:55:42.708 1000 FEE 443966 854 6116367 2024-02-29 17:57:37.503 2024-02-29 17:57:37.503 1000 FEE 443953 4624 6116368 2024-02-29 17:57:37.503 2024-02-29 17:57:37.503 9000 TIP 443953 652 6116371 2024-02-29 17:57:49.078 2024-02-29 17:57:49.078 1000 FEE 443967 848 6116403 2024-02-29 18:03:43.92 2024-02-29 18:03:43.92 1000 FEE 443973 5495 6116426 2024-02-29 18:04:49.197 2024-02-29 18:04:49.197 1000 FEE 443975 21329 6116430 2024-02-29 18:05:21.92 2024-02-29 18:05:21.92 1000 FEE 443976 20701 6116438 2024-02-29 18:05:27.135 2024-02-29 18:05:27.135 1000 FEE 443978 16556 6116439 2024-02-29 18:05:41.893 2024-02-29 18:05:41.893 1000 FEE 443979 2256 6116444 2024-02-29 18:06:44.646 2024-02-29 18:06:44.646 6900 FEE 443527 695 6116445 2024-02-29 18:06:44.646 2024-02-29 18:06:44.646 62100 TIP 443527 18809 6116450 2024-02-29 18:06:51.942 2024-02-29 18:06:51.942 1000 FEE 443958 19622 6116451 2024-02-29 18:06:51.942 2024-02-29 18:06:51.942 9000 TIP 443958 1740 6116458 2024-02-29 18:07:43.18 2024-02-29 18:07:43.18 10000 FEE 443985 18494 6116459 2024-02-29 18:08:02.178 2024-02-29 18:08:02.178 10000 FEE 443979 15160 6116460 2024-02-29 18:08:02.178 2024-02-29 18:08:02.178 90000 TIP 443979 15510 6116473 2024-02-29 18:08:45.108 2024-02-29 18:08:45.108 5700 FEE 443977 21472 6116474 2024-02-29 18:08:45.108 2024-02-29 18:08:45.108 51300 TIP 443977 1512 6116500 2024-02-29 18:09:51.213 2024-02-29 18:09:51.213 1000 FEE 443991 12218 6116506 2024-02-29 18:10:17.142 2024-02-29 18:10:17.142 27900 FEE 443971 20023 6116507 2024-02-29 18:10:17.142 2024-02-29 18:10:17.142 251100 TIP 443971 18119 6116525 2024-02-29 18:12:19.525 2024-02-29 18:12:19.525 1000 FEE 443995 797 6116535 2024-02-29 18:13:31.483 2024-02-29 18:13:31.483 1000 FEE 443011 21026 6116536 2024-02-29 18:13:31.483 2024-02-29 18:13:31.483 9000 TIP 443011 20623 6116537 2024-02-29 18:13:38.35 2024-02-29 18:13:38.35 1000 FEE 444000 5746 6116545 2024-02-29 18:14:38.083 2024-02-29 18:14:38.083 100 FEE 443990 2204 6116546 2024-02-29 18:14:38.083 2024-02-29 18:14:38.083 900 TIP 443990 675 6116547 2024-02-29 18:14:38.434 2024-02-29 18:14:38.434 100 FEE 443990 17976 6116548 2024-02-29 18:14:38.434 2024-02-29 18:14:38.434 900 TIP 443990 1000 6116560 2024-02-29 18:15:35.25 2024-02-29 18:15:35.25 1000 FEE 444007 9655 6116581 2024-02-29 18:18:11.613 2024-02-29 18:18:11.613 2100 FEE 443712 16505 6116582 2024-02-29 18:18:11.613 2024-02-29 18:18:11.613 18900 TIP 443712 18667 6116583 2024-02-29 18:18:12.637 2024-02-29 18:18:12.637 2100 FEE 443712 18705 6116584 2024-02-29 18:18:12.637 2024-02-29 18:18:12.637 18900 TIP 443712 5500 6116598 2024-02-29 18:20:31.752 2024-02-29 18:20:31.752 1000 FEE 444014 1352 6116601 2024-02-29 18:21:53.215 2024-02-29 18:21:53.215 1000 FEE 444000 19016 6116602 2024-02-29 18:21:53.215 2024-02-29 18:21:53.215 9000 TIP 444000 979 6116603 2024-02-29 18:21:53.783 2024-02-29 18:21:53.783 1000 FEE 444000 17741 6116604 2024-02-29 18:21:53.783 2024-02-29 18:21:53.783 9000 TIP 444000 21157 6050799 2024-02-24 04:15:05.232 2024-02-24 04:15:05.232 1000 STREAM 141924 13843 6050804 2024-02-24 04:16:05.232 2024-02-24 04:16:05.232 1000 STREAM 141924 9347 6050816 2024-02-24 04:17:05.247 2024-02-24 04:17:05.247 1000 STREAM 141924 20182 6050842 2024-02-24 04:27:02.533 2024-02-24 04:27:02.533 1000 STREAM 141924 9427 6050854 2024-02-24 04:29:02.541 2024-02-24 04:29:02.541 1000 STREAM 141924 19309 6050866 2024-02-24 04:31:02.958 2024-02-24 04:31:02.958 1000 STREAM 141924 17365 6050869 2024-02-24 04:32:02.946 2024-02-24 04:32:02.946 1000 STREAM 141924 2326 6050883 2024-02-24 04:34:03.125 2024-02-24 04:34:03.125 1000 STREAM 141924 21501 6050886 2024-02-24 04:36:03.407 2024-02-24 04:36:03.407 1000 STREAM 141924 1489 6050894 2024-02-24 04:41:03.448 2024-02-24 04:41:03.448 1000 STREAM 141924 2000 6050901 2024-02-24 04:42:03.438 2024-02-24 04:42:03.438 1000 STREAM 141924 5499 6050975 2024-02-24 05:00:01.989 2024-02-24 05:00:01.989 1000 STREAM 141924 20581 6116134 2024-02-29 17:42:58.835 2024-02-29 17:42:58.835 1000 FEE 443939 5637 6116142 2024-02-29 17:43:03.349 2024-02-29 17:43:03.349 3300 FEE 443799 20563 6116143 2024-02-29 17:43:03.349 2024-02-29 17:43:03.349 29700 TIP 443799 9517 6116180 2024-02-29 17:43:52.898 2024-02-29 17:43:52.898 2100 FEE 443836 19842 6116181 2024-02-29 17:43:52.898 2024-02-29 17:43:52.898 18900 TIP 443836 5160 6116185 2024-02-29 17:44:10.02 2024-02-29 17:44:10.02 0 FEE 443940 9107 6116186 2024-02-29 17:44:13.716 2024-02-29 17:44:13.716 2100 FEE 443868 1620 6116187 2024-02-29 17:44:13.716 2024-02-29 17:44:13.716 18900 TIP 443868 636 6116188 2024-02-29 17:44:14.998 2024-02-29 17:44:14.998 2100 FEE 443844 15662 6116189 2024-02-29 17:44:14.998 2024-02-29 17:44:14.998 18900 TIP 443844 18817 6116190 2024-02-29 17:44:18.561 2024-02-29 17:44:18.561 10000 FEE 443942 2780 6116201 2024-02-29 17:44:52.17 2024-02-29 17:44:52.17 100000 FEE 443945 1394 6116208 2024-02-29 17:45:14.525 2024-02-29 17:45:14.525 1000 FEE 443947 3409 6116213 2024-02-29 17:45:17.585 2024-02-29 17:45:17.585 3300 FEE 443870 6310 6116214 2024-02-29 17:45:17.585 2024-02-29 17:45:17.585 29700 TIP 443870 6191 6116230 2024-02-29 17:46:41.94 2024-02-29 17:46:41.94 1600 FEE 443906 12738 6116231 2024-02-29 17:46:41.94 2024-02-29 17:46:41.94 14400 TIP 443906 16660 6116237 2024-02-29 17:47:41.099 2024-02-29 17:47:41.099 7700 FEE 443919 13076 6116238 2024-02-29 17:47:41.099 2024-02-29 17:47:41.099 69300 TIP 443919 15094 6116239 2024-02-29 17:47:41.291 2024-02-29 17:47:41.291 7700 FEE 443919 3990 6116240 2024-02-29 17:47:41.291 2024-02-29 17:47:41.291 69300 TIP 443919 1624 6116259 2024-02-29 17:48:58.292 2024-02-29 17:48:58.292 7700 FEE 443919 18862 6116260 2024-02-29 17:48:58.292 2024-02-29 17:48:58.292 69300 TIP 443919 19857 6116312 2024-02-29 17:53:27.587 2024-02-29 17:53:27.587 1000 FEE 443961 12721 6116313 2024-02-29 17:53:36.589 2024-02-29 17:53:36.589 0 FEE 443959 16679 6116326 2024-02-29 17:54:01.575 2024-02-29 17:54:01.575 5700 FEE 443712 9363 6116327 2024-02-29 17:54:01.575 2024-02-29 17:54:01.575 51300 TIP 443712 11314 6116333 2024-02-29 17:54:06.104 2024-02-29 17:54:06.104 5700 FEE 443836 8326 6116334 2024-02-29 17:54:06.104 2024-02-29 17:54:06.104 51300 TIP 443836 7675 6116340 2024-02-29 17:55:14.751 2024-02-29 17:55:14.751 100000 FEE 443964 12188 6116365 2024-02-29 17:57:22.573 2024-02-29 17:57:22.573 1000 FEE 443577 7891 6116366 2024-02-29 17:57:22.573 2024-02-29 17:57:22.573 9000 TIP 443577 21412 6116384 2024-02-29 17:59:16.085 2024-02-29 17:59:16.085 900 FEE 443593 623 6116385 2024-02-29 17:59:16.085 2024-02-29 17:59:16.085 8100 TIP 443593 17217 6116398 2024-02-29 18:01:12.041 2024-02-29 18:01:12.041 1000 FEE 443972 9695 6116427 2024-02-29 18:04:57.813 2024-02-29 18:04:57.813 100 FEE 443683 19502 6116428 2024-02-29 18:04:57.813 2024-02-29 18:04:57.813 900 TIP 443683 17446 6116436 2024-02-29 18:05:26.945 2024-02-29 18:05:26.945 900 FEE 443719 15463 6116437 2024-02-29 18:05:26.945 2024-02-29 18:05:26.945 8100 TIP 443719 2596 6116456 2024-02-29 18:07:38.488 2024-02-29 18:07:38.488 2100 FEE 443942 6149 6116457 2024-02-29 18:07:38.488 2024-02-29 18:07:38.488 18900 TIP 443942 1429 6116469 2024-02-29 18:08:34.052 2024-02-29 18:08:34.052 6900 FEE 443595 20430 6116470 2024-02-29 18:08:34.052 2024-02-29 18:08:34.052 62100 TIP 443595 16355 6116488 2024-02-29 18:09:40.44 2024-02-29 18:09:40.44 6900 FEE 443673 4084 6116489 2024-02-29 18:09:40.44 2024-02-29 18:09:40.44 62100 TIP 443673 16410 6116490 2024-02-29 18:09:48.761 2024-02-29 18:09:48.761 1000 FEE 443550 20377 6116491 2024-02-29 18:09:48.761 2024-02-29 18:09:48.761 9000 TIP 443550 3506 6116501 2024-02-29 18:09:56.573 2024-02-29 18:09:56.573 2100 FEE 443975 12769 6116502 2024-02-29 18:09:56.573 2024-02-29 18:09:56.573 18900 TIP 443975 12291 6116504 2024-02-29 18:10:04.856 2024-02-29 18:10:04.856 3100 FEE 443971 8664 6116505 2024-02-29 18:10:04.856 2024-02-29 18:10:04.856 27900 TIP 443971 15326 6116517 2024-02-29 18:11:19.296 2024-02-29 18:11:19.296 1000 FEE 443703 15624 6116518 2024-02-29 18:11:19.296 2024-02-29 18:11:19.296 9000 TIP 443703 1729 6116519 2024-02-29 18:11:24.084 2024-02-29 18:11:24.084 1000 FEE 443994 18615 6050818 2024-02-24 04:19:05.425 2024-02-24 04:19:05.425 1000 STREAM 141924 21292 6050821 2024-02-24 04:21:05.455 2024-02-24 04:21:05.455 1000 STREAM 141924 11328 6050822 2024-02-24 04:22:05.433 2024-02-24 04:22:05.433 1000 STREAM 141924 20231 6050825 2024-02-24 04:24:05.449 2024-02-24 04:24:05.449 1000 STREAM 141924 11714 6050826 2024-02-24 04:25:05.46 2024-02-24 04:25:05.46 1000 STREAM 141924 10519 6050851 2024-02-24 04:28:05.503 2024-02-24 04:28:05.503 1000 STREAM 141924 21522 6050855 2024-02-24 04:30:05.578 2024-02-24 04:30:05.578 1000 STREAM 141924 19531 6050888 2024-02-24 04:37:01.614 2024-02-24 04:37:01.614 1000 STREAM 141924 2583 6050905 2024-02-24 04:44:03.658 2024-02-24 04:44:03.658 1000 STREAM 141924 20433 6050907 2024-02-24 04:46:03.66 2024-02-24 04:46:03.66 1000 STREAM 141924 17602 6050945 2024-02-24 04:48:01.666 2024-02-24 04:48:01.666 1000 STREAM 141924 14271 6050946 2024-02-24 04:49:03.673 2024-02-24 04:49:03.673 1000 STREAM 141924 3440 6050947 2024-02-24 04:50:05.714 2024-02-24 04:50:05.714 1000 STREAM 141924 14037 6050949 2024-02-24 04:51:03.692 2024-02-24 04:51:03.692 1000 STREAM 141924 19980 6050950 2024-02-24 04:52:03.677 2024-02-24 04:52:03.677 1000 STREAM 141924 1825 6050952 2024-02-24 04:53:01.691 2024-02-24 04:53:01.691 1000 STREAM 141924 644 6050965 2024-02-24 04:55:03.69 2024-02-24 04:55:03.69 1000 STREAM 141924 20022 6050971 2024-02-24 04:57:03.715 2024-02-24 04:57:03.715 1000 STREAM 141924 18984 6050977 2024-02-24 05:02:03.727 2024-02-24 05:02:03.727 1000 STREAM 141924 9159 6051007 2024-02-24 05:11:03.749 2024-02-24 05:11:03.749 1000 STREAM 141924 18769 6051211 2024-02-24 05:21:03.85 2024-02-24 05:21:03.85 1000 STREAM 141924 19346 6051255 2024-02-24 05:40:04.07 2024-02-24 05:40:04.07 1000 STREAM 141924 20680 6051256 2024-02-24 05:41:04.018 2024-02-24 05:41:04.018 1000 STREAM 141924 20710 6051268 2024-02-24 05:43:04.037 2024-02-24 05:43:04.037 1000 STREAM 141924 18817 6051279 2024-02-24 05:48:04.072 2024-02-24 05:48:04.072 1000 STREAM 141924 621 6051532 2024-02-24 07:06:04.677 2024-02-24 07:06:04.677 1000 STREAM 141924 17984 6051537 2024-02-24 07:07:04.688 2024-02-24 07:07:04.688 1000 STREAM 141924 21575 6051542 2024-02-24 07:09:04.724 2024-02-24 07:09:04.724 1000 STREAM 141924 5003 6051585 2024-02-24 07:10:04.779 2024-02-24 07:10:04.779 1000 STREAM 141924 2335 6051587 2024-02-24 07:11:04.758 2024-02-24 07:11:04.758 1000 STREAM 141924 736 6051590 2024-02-24 07:13:04.797 2024-02-24 07:13:04.797 1000 STREAM 141924 7818 6051591 2024-02-24 07:14:04.787 2024-02-24 07:14:04.787 1000 STREAM 141924 715 6051593 2024-02-24 07:16:04.843 2024-02-24 07:16:04.843 1000 STREAM 141924 4064 6051633 2024-02-24 07:18:04.898 2024-02-24 07:18:04.898 1000 STREAM 141924 18393 6051680 2024-02-24 07:20:04.96 2024-02-24 07:20:04.96 1000 STREAM 141924 17522 6051681 2024-02-24 07:21:04.938 2024-02-24 07:21:04.938 1000 STREAM 141924 15491 6051684 2024-02-24 07:22:04.95 2024-02-24 07:22:04.95 1000 STREAM 141924 5359 6051692 2024-02-24 07:24:04.976 2024-02-24 07:24:04.976 1000 STREAM 141924 21472 6051694 2024-02-24 07:26:05.001 2024-02-24 07:26:05.001 1000 STREAM 141924 19016 6051702 2024-02-24 07:28:05.04 2024-02-24 07:28:05.04 1000 STREAM 141924 1237 6051717 2024-02-24 07:32:05.091 2024-02-24 07:32:05.091 1000 STREAM 141924 17411 6051720 2024-02-24 07:33:05.092 2024-02-24 07:33:05.092 1000 STREAM 141924 18180 6051724 2024-02-24 07:35:05.143 2024-02-24 07:35:05.143 1000 STREAM 141924 8841 6051727 2024-02-24 07:36:05.158 2024-02-24 07:36:05.158 1000 STREAM 141924 6327 6051743 2024-02-24 07:40:05.224 2024-02-24 07:40:05.224 1000 STREAM 141924 3990 6051746 2024-02-24 07:41:05.221 2024-02-24 07:41:05.221 1000 STREAM 141924 9364 6051750 2024-02-24 07:42:05.25 2024-02-24 07:42:05.25 1000 STREAM 141924 18393 6051755 2024-02-24 07:44:05.294 2024-02-24 07:44:05.294 1000 STREAM 141924 18393 6051759 2024-02-24 07:46:05.328 2024-02-24 07:46:05.328 1000 STREAM 141924 17568 6051761 2024-02-24 07:48:05.356 2024-02-24 07:48:05.356 1000 STREAM 141924 1428 6051762 2024-02-24 07:49:05.368 2024-02-24 07:49:05.368 1000 STREAM 141924 16571 6051764 2024-02-24 07:51:05.413 2024-02-24 07:51:05.413 1000 STREAM 141924 985 6051792 2024-02-24 07:56:05.473 2024-02-24 07:56:05.473 1000 STREAM 141924 15326 6051798 2024-02-24 07:58:05.562 2024-02-24 07:58:05.562 1000 STREAM 141924 12346 6116205 2024-02-29 17:45:05.706 2024-02-29 17:45:05.706 1000 FEE 443946 21216 6116209 2024-02-29 17:45:15.951 2024-02-29 17:45:15.951 3300 FEE 443870 20006 6116210 2024-02-29 17:45:15.951 2024-02-29 17:45:15.951 29700 TIP 443870 20306 6116225 2024-02-29 17:46:14.363 2024-02-29 17:46:14.363 3300 FEE 443399 21482 6116226 2024-02-29 17:46:14.363 2024-02-29 17:46:14.363 29700 TIP 443399 11527 6116232 2024-02-29 17:46:45.852 2024-02-29 17:46:45.852 1000 FEE 443952 19952 6116254 2024-02-29 17:48:56.703 2024-02-29 17:48:56.703 1000 FEE 443955 5427 6116255 2024-02-29 17:48:58.026 2024-02-29 17:48:58.026 7700 FEE 443919 8416 6116256 2024-02-29 17:48:58.026 2024-02-29 17:48:58.026 69300 TIP 443919 16284 6116271 2024-02-29 17:49:01.112 2024-02-29 17:49:01.112 7700 FEE 443919 20901 6116272 2024-02-29 17:49:01.112 2024-02-29 17:49:01.112 69300 TIP 443919 20424 6116356 2024-02-29 17:56:58.296 2024-02-29 17:56:58.296 1000 FEE 443799 18727 6116357 2024-02-29 17:56:58.296 2024-02-29 17:56:58.296 9000 TIP 443799 18525 6116361 2024-02-29 17:57:11.392 2024-02-29 17:57:11.392 1000 FEE 443545 12921 6116362 2024-02-29 17:57:11.392 2024-02-29 17:57:11.392 9000 TIP 443545 9275 6116381 2024-02-29 17:59:11.427 2024-02-29 17:59:11.427 1000 FEE 443969 9517 6116405 2024-02-29 18:04:35.987 2024-02-29 18:04:35.987 100 FEE 443956 21242 6116406 2024-02-29 18:04:35.987 2024-02-29 18:04:35.987 900 TIP 443956 746 6116415 2024-02-29 18:04:36.672 2024-02-29 18:04:36.672 100 FEE 443956 17984 6116416 2024-02-29 18:04:36.672 2024-02-29 18:04:36.672 900 TIP 443956 11240 6116417 2024-02-29 18:04:36.824 2024-02-29 18:04:36.824 100 FEE 443956 992 6116418 2024-02-29 18:04:36.824 2024-02-29 18:04:36.824 900 TIP 443956 14295 6116434 2024-02-29 18:05:26.753 2024-02-29 18:05:26.753 100 FEE 443719 12561 6116435 2024-02-29 18:05:26.753 2024-02-29 18:05:26.753 900 TIP 443719 4654 6116453 2024-02-29 18:06:57.727 2024-02-29 18:06:57.727 6900 FEE 443947 21463 6116454 2024-02-29 18:06:57.727 2024-02-29 18:06:57.727 62100 TIP 443947 1130 6116475 2024-02-29 18:08:48.519 2024-02-29 18:08:48.519 1000 FEE 443951 18124 6116476 2024-02-29 18:08:48.519 2024-02-29 18:08:48.519 9000 TIP 443951 12160 6116477 2024-02-29 18:08:49.446 2024-02-29 18:08:49.446 1000 FEE 443951 1433 6116478 2024-02-29 18:08:49.446 2024-02-29 18:08:49.446 9000 TIP 443951 3656 6116513 2024-02-29 18:10:57.399 2024-02-29 18:10:57.399 3000 FEE 443667 638 6116514 2024-02-29 18:10:57.399 2024-02-29 18:10:57.399 27000 TIP 443667 16562 6116540 2024-02-29 18:14:09.015 2024-02-29 18:14:09.015 1000 FEE 444002 21532 6116543 2024-02-29 18:14:35.732 2024-02-29 18:14:35.732 1000 FEE 444003 6383 6116559 2024-02-29 18:15:05.913 2024-02-29 18:15:05.913 1000 FEE 444006 2508 6116575 2024-02-29 18:17:22.579 2024-02-29 18:17:22.579 5700 FEE 444010 18368 6116576 2024-02-29 18:17:22.579 2024-02-29 18:17:22.579 51300 TIP 444010 20647 6116592 2024-02-29 18:20:09.333 2024-02-29 18:20:09.333 2500 FEE 442794 2016 6116593 2024-02-29 18:20:09.333 2024-02-29 18:20:09.333 22500 TIP 442794 750 6116638 2024-02-29 18:27:01.945 2024-02-29 18:27:01.945 0 FEE 444016 19531 6116684 2024-02-29 18:32:07.011 2024-02-29 18:32:07.011 1700 FEE 444015 10352 6116685 2024-02-29 18:32:07.011 2024-02-29 18:32:07.011 15300 TIP 444015 694 6116686 2024-02-29 18:32:19.058 2024-02-29 18:32:19.058 1000 FEE 444021 16456 6116688 2024-02-29 18:33:39.31 2024-02-29 18:33:39.31 1000 FEE 444022 6741 6116714 2024-02-29 18:36:47.2 2024-02-29 18:36:47.2 2100 FEE 443790 20190 6116715 2024-02-29 18:36:47.2 2024-02-29 18:36:47.2 18900 TIP 443790 2576 6050824 2024-02-24 04:23:05.449 2024-02-24 04:23:05.449 1000 STREAM 141924 20412 6050827 2024-02-24 04:26:05.449 2024-02-24 04:26:05.449 1000 STREAM 141924 2061 6050885 2024-02-24 04:35:01.642 2024-02-24 04:35:01.642 1000 STREAM 141924 2832 6050893 2024-02-24 04:40:01.689 2024-02-24 04:40:01.689 1000 STREAM 141924 2077 6050903 2024-02-24 04:43:03.659 2024-02-24 04:43:03.659 1000 STREAM 141924 2963 6050906 2024-02-24 04:45:01.64 2024-02-24 04:45:01.64 1000 STREAM 141924 14465 6050944 2024-02-24 04:47:03.654 2024-02-24 04:47:03.654 1000 STREAM 141924 20973 6050955 2024-02-24 04:54:03.684 2024-02-24 04:54:03.684 1000 STREAM 141924 12769 6050970 2024-02-24 04:56:01.701 2024-02-24 04:56:01.701 1000 STREAM 141924 15690 6050972 2024-02-24 04:58:05.726 2024-02-24 04:58:05.726 1000 STREAM 141924 16267 6050973 2024-02-24 04:59:03.708 2024-02-24 04:59:03.708 1000 STREAM 141924 16193 6050976 2024-02-24 05:01:03.738 2024-02-24 05:01:03.738 1000 STREAM 141924 9366 6050980 2024-02-24 05:04:03.72 2024-02-24 05:04:03.72 1000 STREAM 141924 18051 6050987 2024-02-24 05:06:03.727 2024-02-24 05:06:03.727 1000 STREAM 141924 20080 6051198 2024-02-24 05:16:03.783 2024-02-24 05:16:03.783 1000 STREAM 141924 18865 6051205 2024-02-24 05:19:03.841 2024-02-24 05:19:03.841 1000 STREAM 141924 20381 6051207 2024-02-24 05:20:03.87 2024-02-24 05:20:03.87 1000 STREAM 141924 21455 6116352 2024-02-29 17:56:22.582 2024-02-29 17:56:22.582 9000 FEE 443867 18393 6116353 2024-02-29 17:56:22.582 2024-02-29 17:56:22.582 81000 TIP 443867 4521 6116359 2024-02-29 17:57:08.128 2024-02-29 17:57:08.128 1000 FEE 443583 21446 6116360 2024-02-29 17:57:08.128 2024-02-29 17:57:08.128 9000 TIP 443583 21083 6116377 2024-02-29 17:59:07.375 2024-02-29 17:59:07.375 21000 FEE 443951 3392 6116378 2024-02-29 17:59:07.375 2024-02-29 17:59:07.375 189000 TIP 443951 10094 6116382 2024-02-29 17:59:15.899 2024-02-29 17:59:15.899 100 FEE 443593 703 6116383 2024-02-29 17:59:15.899 2024-02-29 17:59:15.899 900 TIP 443593 2285 6116388 2024-02-29 17:59:38.91 2024-02-29 17:59:38.91 1000 FEE 443790 20636 6116389 2024-02-29 17:59:38.91 2024-02-29 17:59:38.91 9000 TIP 443790 9329 6116411 2024-02-29 18:04:36.521 2024-02-29 18:04:36.521 100 FEE 443956 2709 6116412 2024-02-29 18:04:36.521 2024-02-29 18:04:36.521 900 TIP 443956 9159 6116425 2024-02-29 18:04:46.572 2024-02-29 18:04:46.572 20000 FEE 443974 14774 6116441 2024-02-29 18:06:12.242 2024-02-29 18:06:12.242 6900 FEE 440427 16357 6116442 2024-02-29 18:06:12.242 2024-02-29 18:06:12.242 62100 TIP 440427 4388 6116447 2024-02-29 18:06:48.901 2024-02-29 18:06:48.901 1000 FEE 443983 1673 6116464 2024-02-29 18:08:12.667 2024-02-29 18:08:12.667 3000 FEE 443793 828 6116465 2024-02-29 18:08:12.667 2024-02-29 18:08:12.667 27000 TIP 443793 848 6116471 2024-02-29 18:08:39.84 2024-02-29 18:08:39.84 1000 FEE 443987 3642 6116481 2024-02-29 18:08:53.881 2024-02-29 18:08:53.881 1000 FEE 443545 12368 6116482 2024-02-29 18:08:53.881 2024-02-29 18:08:53.881 9000 TIP 443545 17552 6116487 2024-02-29 18:09:36.951 2024-02-29 18:09:36.951 1000 FEE 443990 13553 6116492 2024-02-29 18:09:49.163 2024-02-29 18:09:49.163 1000 FEE 443550 15624 6116493 2024-02-29 18:09:49.163 2024-02-29 18:09:49.163 9000 TIP 443550 5825 6116496 2024-02-29 18:09:49.82 2024-02-29 18:09:49.82 1000 FEE 443550 14705 6116497 2024-02-29 18:09:49.82 2024-02-29 18:09:49.82 9000 TIP 443550 21371 6116510 2024-02-29 18:10:35.961 2024-02-29 18:10:35.961 1000 FEE 443992 21042 6116520 2024-02-29 18:11:37.72 2024-02-29 18:11:37.72 6900 FEE 443276 4313 6116521 2024-02-29 18:11:37.72 2024-02-29 18:11:37.72 62100 TIP 443276 1136 6116528 2024-02-29 18:12:24.486 2024-02-29 18:12:24.486 1000 FEE 443996 14857 6116529 2024-02-29 18:12:27.812 2024-02-29 18:12:27.812 1000 FEE 443997 16653 6116534 2024-02-29 18:13:27.592 2024-02-29 18:13:27.592 1000 FEE 443999 18114 6116538 2024-02-29 18:14:00.133 2024-02-29 18:14:00.133 1000 FEE 444001 19910 6116549 2024-02-29 18:14:38.953 2024-02-29 18:14:38.953 100 FEE 443990 20163 6116550 2024-02-29 18:14:38.953 2024-02-29 18:14:38.953 900 TIP 443990 919 6116561 2024-02-29 18:15:55.701 2024-02-29 18:15:55.701 1000 FEE 444008 14906 6116585 2024-02-29 18:18:19.838 2024-02-29 18:18:19.838 1000 FEE 444013 19036 6116617 2024-02-29 18:23:00.597 2024-02-29 18:23:00.597 1000 FEE 444018 18208 6116623 2024-02-29 18:23:38.207 2024-02-29 18:23:38.207 500 FEE 443944 21401 6116624 2024-02-29 18:23:38.207 2024-02-29 18:23:38.207 4500 TIP 443944 21609 6116630 2024-02-29 18:24:09.278 2024-02-29 18:24:09.278 10000 FEE 444017 19848 6116631 2024-02-29 18:24:09.278 2024-02-29 18:24:09.278 90000 TIP 444017 763 6116635 2024-02-29 18:25:37.508 2024-02-29 18:25:37.508 1000 FEE 443859 18673 6116636 2024-02-29 18:25:37.508 2024-02-29 18:25:37.508 9000 TIP 443859 20511 6116656 2024-02-29 18:28:18.7 2024-02-29 18:28:18.7 1000 FEE 444019 20751 6116669 2024-02-29 18:31:53.595 2024-02-29 18:31:53.595 1700 FEE 444002 8242 6116670 2024-02-29 18:31:53.595 2024-02-29 18:31:53.595 15300 TIP 444002 20450 6116672 2024-02-29 18:32:05.447 2024-02-29 18:32:05.447 1700 FEE 444015 20276 6116673 2024-02-29 18:32:05.447 2024-02-29 18:32:05.447 15300 TIP 444015 622 6116676 2024-02-29 18:32:05.816 2024-02-29 18:32:05.816 1700 FEE 444015 1145 6116677 2024-02-29 18:32:05.816 2024-02-29 18:32:05.816 15300 TIP 444015 9261 6116702 2024-02-29 18:36:33.457 2024-02-29 18:36:33.457 2100 FEE 443712 1286 6116703 2024-02-29 18:36:33.457 2024-02-29 18:36:33.457 18900 TIP 443712 9261 6116724 2024-02-29 18:36:55.272 2024-02-29 18:36:55.272 2100 FEE 443399 12175 6116725 2024-02-29 18:36:55.272 2024-02-29 18:36:55.272 18900 TIP 443399 1354 6116732 2024-02-29 18:37:18.072 2024-02-29 18:37:18.072 5000 FEE 443790 16212 6116733 2024-02-29 18:37:18.072 2024-02-29 18:37:18.072 45000 TIP 443790 986 6116734 2024-02-29 18:37:19.018 2024-02-29 18:37:19.018 5000 FEE 443790 14308 6116735 2024-02-29 18:37:19.018 2024-02-29 18:37:19.018 45000 TIP 443790 4574 6116738 2024-02-29 18:37:25.46 2024-02-29 18:37:25.46 2100 FEE 443799 775 6116739 2024-02-29 18:37:25.46 2024-02-29 18:37:25.46 18900 TIP 443799 2652 6116740 2024-02-29 18:37:30.412 2024-02-29 18:37:30.412 1000 FEE 444028 16289 6116745 2024-02-29 18:37:57.052 2024-02-29 18:37:57.052 2100 FEE 443668 9036 6116746 2024-02-29 18:37:57.052 2024-02-29 18:37:57.052 18900 TIP 443668 998 6116752 2024-02-29 18:38:53.718 2024-02-29 18:38:53.718 1000 FEE 444031 5637 6116762 2024-02-29 18:38:59.064 2024-02-29 18:38:59.064 100 FEE 443934 16649 6116763 2024-02-29 18:38:59.064 2024-02-29 18:38:59.064 900 TIP 443934 19132 6116804 2024-02-29 18:41:03.258 2024-02-29 18:41:03.258 6900 FEE 444032 6602 6116805 2024-02-29 18:41:03.258 2024-02-29 18:41:03.258 62100 TIP 444032 19352 6116841 2024-02-29 18:43:58.729 2024-02-29 18:43:58.729 6900 FEE 443745 14037 6116842 2024-02-29 18:43:58.729 2024-02-29 18:43:58.729 62100 TIP 443745 1208 6116857 2024-02-29 18:44:02.887 2024-02-29 18:44:02.887 1000 FEE 443880 18640 6116858 2024-02-29 18:44:02.887 2024-02-29 18:44:02.887 9000 TIP 443880 1602 6116874 2024-02-29 18:44:29.129 2024-02-29 18:44:29.129 7700 FEE 443745 886 6116875 2024-02-29 18:44:29.129 2024-02-29 18:44:29.129 69300 TIP 443745 5646 6116876 2024-02-29 18:44:29.279 2024-02-29 18:44:29.279 7700 FEE 443745 15510 6116877 2024-02-29 18:44:29.279 2024-02-29 18:44:29.279 69300 TIP 443745 5759 6116880 2024-02-29 18:44:29.667 2024-02-29 18:44:29.667 7700 FEE 443745 16948 6116881 2024-02-29 18:44:29.667 2024-02-29 18:44:29.667 69300 TIP 443745 8045 6116902 2024-02-29 18:46:08.937 2024-02-29 18:46:08.937 500 FEE 443790 19615 6116903 2024-02-29 18:46:08.937 2024-02-29 18:46:08.937 4500 TIP 443790 15474 6116923 2024-02-29 18:46:52.974 2024-02-29 18:46:52.974 100 FEE 438891 9517 6050874 2024-02-24 04:33:02.95 2024-02-24 04:33:02.95 1000 STREAM 141924 730 6050890 2024-02-24 04:38:03.434 2024-02-24 04:38:03.434 1000 STREAM 141924 13759 6050892 2024-02-24 04:39:05.447 2024-02-24 04:39:05.447 1000 STREAM 141924 2330 6116486 2024-02-29 18:09:18.666 2024-02-29 18:09:18.666 1000 FEE 443989 1426 6116516 2024-02-29 18:11:15.115 2024-02-29 18:11:15.115 1000 FEE 443993 14950 6116523 2024-02-29 18:12:07.776 2024-02-29 18:12:07.776 1000 FEE 443988 5128 6116524 2024-02-29 18:12:07.776 2024-02-29 18:12:07.776 9000 TIP 443988 14515 6116544 2024-02-29 18:14:36.982 2024-02-29 18:14:36.982 1000 FEE 444004 17392 6116566 2024-02-29 18:16:17.911 2024-02-29 18:16:17.911 1000 FEE 443893 14472 6116567 2024-02-29 18:16:17.911 2024-02-29 18:16:17.911 9000 TIP 443893 18231 6116589 2024-02-29 18:19:06.211 2024-02-29 18:19:06.211 10000 FEE 443878 4059 6116590 2024-02-29 18:19:06.211 2024-02-29 18:19:06.211 90000 TIP 443878 20326 6116594 2024-02-29 18:20:09.918 2024-02-29 18:20:09.918 2500 FEE 442794 5527 6116595 2024-02-29 18:20:09.918 2024-02-29 18:20:09.918 22500 TIP 442794 18460 6116615 2024-02-29 18:22:36.954 2024-02-29 18:22:36.954 1000 FEE 444017 14074 6116619 2024-02-29 18:23:14.508 2024-02-29 18:23:14.508 500 FEE 443976 5387 6116620 2024-02-29 18:23:14.508 2024-02-29 18:23:14.508 4500 TIP 443976 21042 6116641 2024-02-29 18:27:32.806 2024-02-29 18:27:32.806 5000 FEE 443901 16097 6116642 2024-02-29 18:27:32.806 2024-02-29 18:27:32.806 45000 TIP 443901 5825 6116660 2024-02-29 18:29:31.331 2024-02-29 18:29:31.331 10000 FEE 444020 20464 6116674 2024-02-29 18:32:05.611 2024-02-29 18:32:05.611 1700 FEE 444015 1552 6116675 2024-02-29 18:32:05.611 2024-02-29 18:32:05.611 15300 TIP 444015 20409 6116747 2024-02-29 18:38:00.642 2024-02-29 18:38:00.642 2100 FEE 444028 16847 6116748 2024-02-29 18:38:00.642 2024-02-29 18:38:00.642 18900 TIP 444028 14990 6116750 2024-02-29 18:38:52.293 2024-02-29 18:38:52.293 6900 FEE 443963 19501 6116751 2024-02-29 18:38:52.293 2024-02-29 18:38:52.293 62100 TIP 443963 13378 6116753 2024-02-29 18:38:54.58 2024-02-29 18:38:54.58 6900 FEE 444012 21472 6116754 2024-02-29 18:38:54.58 2024-02-29 18:38:54.58 62100 TIP 444012 20201 6116757 2024-02-29 18:38:58.357 2024-02-29 18:38:58.357 2100 FEE 443856 956 6116758 2024-02-29 18:38:58.357 2024-02-29 18:38:58.357 18900 TIP 443856 8870 6116769 2024-02-29 18:39:10.616 2024-02-29 18:39:10.616 1000 FEE 444033 19981 6116793 2024-02-29 18:40:37.742 2024-02-29 18:40:37.742 6900 FEE 443915 14650 6116794 2024-02-29 18:40:37.742 2024-02-29 18:40:37.742 62100 TIP 443915 10554 6116798 2024-02-29 18:40:46.848 2024-02-29 18:40:46.848 1000 FEE 443867 20376 6116799 2024-02-29 18:40:46.848 2024-02-29 18:40:46.848 9000 TIP 443867 11491 6116809 2024-02-29 18:41:21.515 2024-02-29 18:41:21.515 1000 FEE 443289 20337 6116810 2024-02-29 18:41:21.515 2024-02-29 18:41:21.515 9000 TIP 443289 17209 6116819 2024-02-29 18:41:31.049 2024-02-29 18:41:31.049 1000 FEE 444041 11498 6116831 2024-02-29 18:42:33.814 2024-02-29 18:42:33.814 1000 FEE 444045 21373 6116837 2024-02-29 18:43:37.528 2024-02-29 18:43:37.528 1000 FEE 443561 18500 6116838 2024-02-29 18:43:37.528 2024-02-29 18:43:37.528 9000 TIP 443561 4958 6116847 2024-02-29 18:43:59.178 2024-02-29 18:43:59.178 6900 FEE 443745 17064 6116848 2024-02-29 18:43:59.178 2024-02-29 18:43:59.178 62100 TIP 443745 1751 6116853 2024-02-29 18:44:00.304 2024-02-29 18:44:00.304 6900 FEE 443745 635 6116854 2024-02-29 18:44:00.304 2024-02-29 18:44:00.304 62100 TIP 443745 16532 6116878 2024-02-29 18:44:29.467 2024-02-29 18:44:29.467 7700 FEE 443745 18280 6116879 2024-02-29 18:44:29.467 2024-02-29 18:44:29.467 69300 TIP 443745 18673 6116884 2024-02-29 18:44:29.894 2024-02-29 18:44:29.894 7700 FEE 443745 15226 6116885 2024-02-29 18:44:29.894 2024-02-29 18:44:29.894 69300 TIP 443745 21116 6116886 2024-02-29 18:44:30.019 2024-02-29 18:44:30.019 7700 FEE 443745 646 6116887 2024-02-29 18:44:30.019 2024-02-29 18:44:30.019 69300 TIP 443745 844 6116896 2024-02-29 18:45:54.702 2024-02-29 18:45:54.702 1000 FEE 444053 19286 6116933 2024-02-29 18:47:25.732 2024-02-29 18:47:25.732 100 FEE 443915 19777 6116934 2024-02-29 18:47:25.732 2024-02-29 18:47:25.732 900 TIP 443915 18473 6116937 2024-02-29 18:47:26.773 2024-02-29 18:47:26.773 9000 FEE 443915 3347 6116938 2024-02-29 18:47:26.773 2024-02-29 18:47:26.773 81000 TIP 443915 15367 6116951 2024-02-29 18:48:10.885 2024-02-29 18:48:10.885 5700 FEE 443951 15052 6116952 2024-02-29 18:48:10.885 2024-02-29 18:48:10.885 51300 TIP 443951 18517 6116982 2024-02-29 18:49:54.197 2024-02-29 18:49:54.197 1000 FEE 441019 14818 6116983 2024-02-29 18:49:54.197 2024-02-29 18:49:54.197 9000 TIP 441019 4173 6117001 2024-02-29 18:50:28.771 2024-02-29 18:50:28.771 2100 FEE 443894 21556 6117002 2024-02-29 18:50:28.771 2024-02-29 18:50:28.771 18900 TIP 443894 21062 6117007 2024-02-29 18:50:41.525 2024-02-29 18:50:41.525 1000 FEE 441076 12516 6117008 2024-02-29 18:50:41.525 2024-02-29 18:50:41.525 9000 TIP 441076 20310 6117017 2024-02-29 18:50:44.085 2024-02-29 18:50:44.085 1000 FEE 441076 19863 6117018 2024-02-29 18:50:44.085 2024-02-29 18:50:44.085 9000 TIP 441076 654 6117043 2024-02-29 18:52:30.183 2024-02-29 18:52:30.183 1000 FEE 440858 15556 6117044 2024-02-29 18:52:30.183 2024-02-29 18:52:30.183 9000 TIP 440858 18680 6117065 2024-02-29 18:52:49.12 2024-02-29 18:52:49.12 10100 FEE 443712 21400 6117066 2024-02-29 18:52:49.12 2024-02-29 18:52:49.12 90900 TIP 443712 21136 6117082 2024-02-29 18:53:20.468 2024-02-29 18:53:20.468 100000 FEE 444063 17800 6117097 2024-02-29 18:54:43.792 2024-02-29 18:54:43.792 1000 FEE 441243 3396 6117098 2024-02-29 18:54:43.792 2024-02-29 18:54:43.792 9000 TIP 441243 18453 6117105 2024-02-29 18:54:44.437 2024-02-29 18:54:44.437 1000 FEE 441243 909 6117106 2024-02-29 18:54:44.437 2024-02-29 18:54:44.437 9000 TIP 441243 8423 6117143 2024-02-29 18:57:00.256 2024-02-29 18:57:00.256 1000 FEE 444069 13143 6117158 2024-02-29 18:57:32.399 2024-02-29 18:57:32.399 2100 FEE 443790 965 6117159 2024-02-29 18:57:32.399 2024-02-29 18:57:32.399 18900 TIP 443790 15662 6117162 2024-02-29 18:57:33.982 2024-02-29 18:57:33.982 2100 FEE 443790 19570 6117163 2024-02-29 18:57:33.982 2024-02-29 18:57:33.982 18900 TIP 443790 15474 6117166 2024-02-29 18:57:42.356 2024-02-29 18:57:42.356 300 FEE 443949 12169 6117167 2024-02-29 18:57:42.356 2024-02-29 18:57:42.356 2700 TIP 443949 21044 6117169 2024-02-29 18:57:54.251 2024-02-29 18:57:54.251 1000 FEE 444074 13132 6117178 2024-02-29 18:58:17.816 2024-02-29 18:58:17.816 120000 FEE 444076 17673 6117179 2024-02-29 18:58:18.27 2024-02-29 18:58:18.27 1000 FEE 444077 16350 6117215 2024-02-29 18:59:37.545 2024-02-29 18:59:37.545 100 FEE 443960 20599 6117216 2024-02-29 18:59:37.545 2024-02-29 18:59:37.545 900 TIP 443960 2338 6117228 2024-02-29 18:59:56.208 2024-02-29 18:59:56.208 100 FEE 443942 2775 6117229 2024-02-29 18:59:56.208 2024-02-29 18:59:56.208 900 TIP 443942 11714 6117233 2024-02-29 19:00:04.93 2024-02-29 19:00:04.93 100000 FEE 444081 8289 6117236 2024-02-29 19:00:05.368 2024-02-29 19:00:05.368 1000 FEE 444082 18380 6117239 2024-02-29 19:00:14.99 2024-02-29 19:00:14.99 100 FEE 443911 4043 6050979 2024-02-24 05:03:02.699 2024-02-24 05:03:02.699 1000 STREAM 141924 14169 6050983 2024-02-24 05:05:02.673 2024-02-24 05:05:02.673 1000 STREAM 141924 18909 6050993 2024-02-24 05:08:02.694 2024-02-24 05:08:02.694 1000 STREAM 141924 2576 6051005 2024-02-24 05:10:02.703 2024-02-24 05:10:02.703 1000 STREAM 141924 5758 6051238 2024-02-24 05:32:05.648 2024-02-24 05:32:05.648 1000 STREAM 141924 19459 6051246 2024-02-24 05:35:05.71 2024-02-24 05:35:05.71 1000 STREAM 141924 2519 6051247 2024-02-24 05:36:05.688 2024-02-24 05:36:05.688 1000 STREAM 141924 1429 6116541 2024-02-29 18:14:23.485 2024-02-29 18:14:23.485 3400 FEE 443992 18446 6116542 2024-02-29 18:14:23.485 2024-02-29 18:14:23.485 30600 TIP 443992 12744 6116563 2024-02-29 18:16:03.205 2024-02-29 18:16:03.205 1000 FEE 444009 9084 6116564 2024-02-29 18:16:06.123 2024-02-29 18:16:06.123 6900 FEE 443580 7760 6116565 2024-02-29 18:16:06.123 2024-02-29 18:16:06.123 62100 TIP 443580 19546 6116599 2024-02-29 18:20:57.354 2024-02-29 18:20:57.354 100000 FEE 444015 9246 6116614 2024-02-29 18:22:35.513 2024-02-29 18:22:35.513 1000 FEE 444016 18630 6116616 2024-02-29 18:22:49.805 2024-02-29 18:22:49.805 0 FEE 444016 18072 6116640 2024-02-29 18:27:09.426 2024-02-29 18:27:09.426 0 FEE 444016 9482 6116651 2024-02-29 18:27:44.031 2024-02-29 18:27:44.031 7700 FEE 443951 9496 6116652 2024-02-29 18:27:44.031 2024-02-29 18:27:44.031 69300 TIP 443951 12265 6116657 2024-02-29 18:28:50.743 2024-02-29 18:28:50.743 1000 FEE 444015 21455 6116658 2024-02-29 18:28:50.743 2024-02-29 18:28:50.743 9000 TIP 444015 1624 6116662 2024-02-29 18:30:56.017 2024-02-29 18:30:56.017 2100 FEE 444015 5495 6116663 2024-02-29 18:30:56.017 2024-02-29 18:30:56.017 18900 TIP 444015 17106 6116682 2024-02-29 18:32:06.825 2024-02-29 18:32:06.825 1700 FEE 444015 12072 6116683 2024-02-29 18:32:06.825 2024-02-29 18:32:06.825 15300 TIP 444015 18819 6116698 2024-02-29 18:36:22.393 2024-02-29 18:36:22.393 5000 FEE 443959 21329 6116699 2024-02-29 18:36:22.393 2024-02-29 18:36:22.393 45000 TIP 443959 21588 6116700 2024-02-29 18:36:22.832 2024-02-29 18:36:22.832 5000 FEE 443959 10094 6116701 2024-02-29 18:36:22.832 2024-02-29 18:36:22.832 45000 TIP 443959 16267 6116730 2024-02-29 18:37:05.314 2024-02-29 18:37:05.314 1000 FEE 443878 15556 6116731 2024-02-29 18:37:05.314 2024-02-29 18:37:05.314 9000 TIP 443878 8945 6116742 2024-02-29 18:37:44.478 2024-02-29 18:37:44.478 1000 FEE 444030 2176 6116755 2024-02-29 18:38:57.402 2024-02-29 18:38:57.402 100 FEE 443934 21398 6116756 2024-02-29 18:38:57.402 2024-02-29 18:38:57.402 900 TIP 443934 20922 6116770 2024-02-29 18:39:39.035 2024-02-29 18:39:39.035 2100 FEE 444008 18199 6116771 2024-02-29 18:39:39.035 2024-02-29 18:39:39.035 18900 TIP 444008 2952 6116775 2024-02-29 18:39:51.596 2024-02-29 18:39:51.596 1000 FEE 444035 2963 6116782 2024-02-29 18:40:22.701 2024-02-29 18:40:22.701 1000 FEE 444037 1603 6116787 2024-02-29 18:40:31.696 2024-02-29 18:40:31.696 500 FEE 443931 5128 6116788 2024-02-29 18:40:31.696 2024-02-29 18:40:31.696 4500 TIP 443931 5637 6116815 2024-02-29 18:41:25.964 2024-02-29 18:41:25.964 6900 FEE 443923 2444 6116816 2024-02-29 18:41:25.964 2024-02-29 18:41:25.964 62100 TIP 443923 21344 6116820 2024-02-29 18:41:36.116 2024-02-29 18:41:36.116 2100 FEE 443848 5003 6116821 2024-02-29 18:41:36.116 2024-02-29 18:41:36.116 18900 TIP 443848 3478 6116828 2024-02-29 18:42:06.257 2024-02-29 18:42:06.257 2100 FEE 443788 4798 6116829 2024-02-29 18:42:06.257 2024-02-29 18:42:06.257 18900 TIP 443788 6537 6116830 2024-02-29 18:42:26.271 2024-02-29 18:42:26.271 100000 FEE 444044 4035 6116832 2024-02-29 18:42:46.855 2024-02-29 18:42:46.855 1000 FEE 444046 11378 6116839 2024-02-29 18:43:57.519 2024-02-29 18:43:57.519 1000 FEE 443885 18784 6116840 2024-02-29 18:43:57.519 2024-02-29 18:43:57.519 9000 TIP 443885 20816 6116845 2024-02-29 18:43:59.069 2024-02-29 18:43:59.069 6900 FEE 443745 17275 6116846 2024-02-29 18:43:59.069 2024-02-29 18:43:59.069 62100 TIP 443745 20646 6116849 2024-02-29 18:43:59.278 2024-02-29 18:43:59.278 6900 FEE 443745 16665 6116850 2024-02-29 18:43:59.278 2024-02-29 18:43:59.278 62100 TIP 443745 4459 6116866 2024-02-29 18:44:28.698 2024-02-29 18:44:28.698 7700 FEE 443745 19259 6116867 2024-02-29 18:44:28.698 2024-02-29 18:44:28.698 69300 TIP 443745 21164 6116906 2024-02-29 18:46:22.469 2024-02-29 18:46:22.469 1000 FEE 443323 18511 6116907 2024-02-29 18:46:22.469 2024-02-29 18:46:22.469 9000 TIP 443323 19142 6116913 2024-02-29 18:46:34.974 2024-02-29 18:46:34.974 100 FEE 438345 13177 6116914 2024-02-29 18:46:34.974 2024-02-29 18:46:34.974 900 TIP 438345 18336 6116915 2024-02-29 18:46:38.773 2024-02-29 18:46:38.773 1000 FEE 443768 3377 6116916 2024-02-29 18:46:38.773 2024-02-29 18:46:38.773 9000 TIP 443768 16296 6116940 2024-02-29 18:47:27.475 2024-02-29 18:47:27.475 1000 FEE 443786 21522 6116941 2024-02-29 18:47:27.475 2024-02-29 18:47:27.475 9000 TIP 443786 16124 6116942 2024-02-29 18:47:40.055 2024-02-29 18:47:40.055 1000 FEE 444057 9845 6116956 2024-02-29 18:49:01.597 2024-02-29 18:49:01.597 2100 FEE 443940 9366 6116957 2024-02-29 18:49:01.597 2024-02-29 18:49:01.597 18900 TIP 443940 17064 6116961 2024-02-29 18:49:21.109 2024-02-29 18:49:21.109 1000 FEE 440692 6515 6116962 2024-02-29 18:49:21.109 2024-02-29 18:49:21.109 9000 TIP 440692 1712 6117005 2024-02-29 18:50:41.317 2024-02-29 18:50:41.317 1000 FEE 441076 17568 6117006 2024-02-29 18:50:41.317 2024-02-29 18:50:41.317 9000 TIP 441076 1474 6117023 2024-02-29 18:50:45.324 2024-02-29 18:50:45.324 1000 FEE 441076 21352 6117024 2024-02-29 18:50:45.324 2024-02-29 18:50:45.324 9000 TIP 441076 2330 6117048 2024-02-29 18:52:46.9 2024-02-29 18:52:46.9 5700 FEE 443306 21520 6050988 2024-02-24 05:07:02.688 2024-02-24 05:07:02.688 1000 STREAM 141924 20551 6050998 2024-02-24 05:09:02.694 2024-02-24 05:09:02.694 1000 STREAM 141924 6041 6051095 2024-02-24 05:12:02.7 2024-02-24 05:12:02.7 1000 STREAM 141924 18368 6051136 2024-02-24 05:14:02.882 2024-02-24 05:14:02.882 1000 STREAM 141924 12245 6051172 2024-02-24 05:15:02.895 2024-02-24 05:15:02.895 1000 STREAM 141924 678 6051199 2024-02-24 05:17:03.016 2024-02-24 05:17:03.016 1000 STREAM 141924 21058 6051214 2024-02-24 05:22:04.145 2024-02-24 05:22:04.145 1000 STREAM 141924 11897 6051235 2024-02-24 05:29:05.452 2024-02-24 05:29:05.452 1000 STREAM 141924 17094 6051237 2024-02-24 05:31:05.653 2024-02-24 05:31:05.653 1000 STREAM 141924 18005 6051239 2024-02-24 05:33:05.668 2024-02-24 05:33:05.668 1000 STREAM 141924 1628 6051245 2024-02-24 05:34:05.684 2024-02-24 05:34:05.684 1000 STREAM 141924 4322 6116578 2024-02-29 18:18:03.858 2024-02-29 18:18:03.858 1000 STREAM 141924 4395 6050994 2024-02-24 05:08:04.832 2024-02-24 05:08:04.832 1000 FEE 436025 19995 6050995 2024-02-24 05:08:04.832 2024-02-24 05:08:04.832 9000 TIP 436025 14657 6051001 2024-02-24 05:09:29.706 2024-02-24 05:09:29.706 100 FEE 436895 12289 6051002 2024-02-24 05:09:29.706 2024-02-24 05:09:29.706 900 TIP 436895 1800 6051010 2024-02-24 05:11:10.181 2024-02-24 05:11:10.181 1000 FEE 436920 8954 6051021 2024-02-24 05:11:37.061 2024-02-24 05:11:37.061 1000 FEE 420323 11885 6051022 2024-02-24 05:11:37.061 2024-02-24 05:11:37.061 9000 TIP 420323 18040 6051033 2024-02-24 05:11:38.396 2024-02-24 05:11:38.396 1000 FEE 420323 19967 6051034 2024-02-24 05:11:38.396 2024-02-24 05:11:38.396 9000 TIP 420323 19031 6051039 2024-02-24 05:11:41.215 2024-02-24 05:11:41.215 1000 FEE 420323 21287 6051040 2024-02-24 05:11:41.215 2024-02-24 05:11:41.215 9000 TIP 420323 9290 6051041 2024-02-24 05:11:41.427 2024-02-24 05:11:41.427 1000 FEE 420323 5725 6051042 2024-02-24 05:11:41.427 2024-02-24 05:11:41.427 9000 TIP 420323 18956 6051071 2024-02-24 05:11:56.248 2024-02-24 05:11:56.248 1000 FEE 420995 20452 6051072 2024-02-24 05:11:56.248 2024-02-24 05:11:56.248 9000 TIP 420995 9356 6051081 2024-02-24 05:11:57.485 2024-02-24 05:11:57.485 1000 FEE 420995 17184 6051082 2024-02-24 05:11:57.485 2024-02-24 05:11:57.485 9000 TIP 420995 16282 6051091 2024-02-24 05:11:59.261 2024-02-24 05:11:59.261 1000 FEE 420995 13246 6051092 2024-02-24 05:11:59.261 2024-02-24 05:11:59.261 9000 TIP 420995 16357 6051108 2024-02-24 05:12:21.449 2024-02-24 05:12:21.449 1000 FEE 436921 16912 6051215 2024-02-24 05:22:17.696 2024-02-24 05:22:17.696 1000 FEE 436925 21527 6051226 2024-02-24 05:25:52.953 2024-02-24 05:25:52.953 5000 FEE 436823 21503 6051227 2024-02-24 05:25:52.953 2024-02-24 05:25:52.953 45000 TIP 436823 15100 6051028 2024-02-24 05:11:37.679 2024-02-24 05:11:37.679 9000 TIP 420323 19735 6051061 2024-02-24 05:11:54.877 2024-02-24 05:11:54.877 1000 FEE 420995 15088 6051062 2024-02-24 05:11:54.877 2024-02-24 05:11:54.877 9000 TIP 420995 19286 6051065 2024-02-24 05:11:55.541 2024-02-24 05:11:55.541 1000 FEE 420995 19943 6051066 2024-02-24 05:11:55.541 2024-02-24 05:11:55.541 9000 TIP 420995 13398 6051075 2024-02-24 05:11:56.704 2024-02-24 05:11:56.704 1000 FEE 420995 21058 6051076 2024-02-24 05:11:56.704 2024-02-24 05:11:56.704 9000 TIP 420995 11263 6051098 2024-02-24 05:12:03.66 2024-02-24 05:12:03.66 1000 FEE 420995 9169 6051099 2024-02-24 05:12:03.66 2024-02-24 05:12:03.66 9000 TIP 420995 3656 6051119 2024-02-24 05:12:44.561 2024-02-24 05:12:44.561 1000 FEE 433706 13527 6051120 2024-02-24 05:12:44.561 2024-02-24 05:12:44.561 9000 TIP 433706 16876 6051129 2024-02-24 05:12:47.212 2024-02-24 05:12:47.212 1000 FEE 433706 5308 6051130 2024-02-24 05:12:47.212 2024-02-24 05:12:47.212 9000 TIP 433706 19987 6051138 2024-02-24 05:14:54.121 2024-02-24 05:14:54.121 1000 FEE 411814 5565 6051139 2024-02-24 05:14:54.121 2024-02-24 05:14:54.121 9000 TIP 411814 7877 6051144 2024-02-24 05:14:55.186 2024-02-24 05:14:55.186 1000 FEE 411814 11898 6051145 2024-02-24 05:14:55.186 2024-02-24 05:14:55.186 9000 TIP 411814 658 6051146 2024-02-24 05:14:55.382 2024-02-24 05:14:55.382 1000 FEE 411814 3360 6051147 2024-02-24 05:14:55.382 2024-02-24 05:14:55.382 9000 TIP 411814 18865 6051152 2024-02-24 05:14:56.79 2024-02-24 05:14:56.79 1000 FEE 411814 9242 6051153 2024-02-24 05:14:56.79 2024-02-24 05:14:56.79 9000 TIP 411814 2056 6051164 2024-02-24 05:15:00.912 2024-02-24 05:15:00.912 1000 FEE 411814 2322 6051165 2024-02-24 05:15:00.912 2024-02-24 05:15:00.912 9000 TIP 411814 12057 6051168 2024-02-24 05:15:02.373 2024-02-24 05:15:02.373 1000 FEE 411866 8360 6051169 2024-02-24 05:15:02.373 2024-02-24 05:15:02.373 9000 TIP 411866 4388 6051170 2024-02-24 05:15:02.817 2024-02-24 05:15:02.817 1000 FEE 411866 3347 6051171 2024-02-24 05:15:02.817 2024-02-24 05:15:02.817 9000 TIP 411866 21148 6051173 2024-02-24 05:15:03.002 2024-02-24 05:15:03.002 1000 FEE 411866 5794 6051174 2024-02-24 05:15:03.002 2024-02-24 05:15:03.002 9000 TIP 411866 12516 6051175 2024-02-24 05:15:03.174 2024-02-24 05:15:03.174 1000 FEE 411866 9833 6051176 2024-02-24 05:15:03.174 2024-02-24 05:15:03.174 9000 TIP 411866 4115 6051189 2024-02-24 05:15:06.118 2024-02-24 05:15:06.118 1000 FEE 411866 16842 6051190 2024-02-24 05:15:06.118 2024-02-24 05:15:06.118 9000 TIP 411866 14045 6051191 2024-02-24 05:15:09.543 2024-02-24 05:15:09.543 2600 FEE 436916 18663 6051192 2024-02-24 05:15:09.543 2024-02-24 05:15:09.543 23400 TIP 436916 19569 6051200 2024-02-24 05:18:02.837 2024-02-24 05:18:02.837 2100 FEE 436915 14785 6051201 2024-02-24 05:18:02.837 2024-02-24 05:18:02.837 18900 TIP 436915 18830 6051206 2024-02-24 05:19:50.116 2024-02-24 05:19:50.116 1000 FEE 436924 19837 6051223 2024-02-24 05:23:30.444 2024-02-24 05:23:30.444 1000 POLL 436759 4624 6051243 2024-02-24 05:33:16.241 2024-02-24 05:33:16.241 800 FEE 436837 909 6051244 2024-02-24 05:33:16.241 2024-02-24 05:33:16.241 7200 TIP 436837 2327 6051259 2024-02-24 05:42:18.738 2024-02-24 05:42:18.738 1000 POLL 436759 5171 6051264 2024-02-24 05:42:21.735 2024-02-24 05:42:21.735 800 FEE 436683 18068 6051265 2024-02-24 05:42:21.735 2024-02-24 05:42:21.735 7200 TIP 436683 18995 6051288 2024-02-24 05:52:52.115 2024-02-24 05:52:52.115 1000 FEE 436932 16229 6051292 2024-02-24 05:53:23.321 2024-02-24 05:53:23.321 1000 FEE 436933 14080 6051307 2024-02-24 05:58:39.956 2024-02-24 05:58:39.956 1000 FEE 436936 997 6051329 2024-02-24 06:10:57.175 2024-02-24 06:10:57.175 2100 FEE 436566 1577 6051330 2024-02-24 06:10:57.175 2024-02-24 06:10:57.175 18900 TIP 436566 18188 6051341 2024-02-24 06:10:58.25 2024-02-24 06:10:58.25 2100 FEE 436566 9352 6051342 2024-02-24 06:10:58.25 2024-02-24 06:10:58.25 18900 TIP 436566 2176 6051367 2024-02-24 06:18:51.533 2024-02-24 06:18:51.533 1000 FEE 436941 5057 6051371 2024-02-24 06:19:26.441 2024-02-24 06:19:26.441 2100 FEE 436926 959 6051372 2024-02-24 06:19:26.441 2024-02-24 06:19:26.441 18900 TIP 436926 20434 6051475 2024-02-24 06:43:14.532 2024-02-24 06:43:14.532 1000 FEE 436947 10484 6051493 2024-02-24 06:49:17.607 2024-02-24 06:49:17.607 2100 FEE 436943 866 6051494 2024-02-24 06:49:17.607 2024-02-24 06:49:17.607 18900 TIP 436943 18930 6051496 2024-02-24 06:50:49.005 2024-02-24 06:50:49.005 2100 FEE 436930 20464 6051497 2024-02-24 06:50:49.005 2024-02-24 06:50:49.005 18900 TIP 436930 20624 6051533 2024-02-24 07:06:06.033 2024-02-24 07:06:06.033 100 FEE 435630 9335 6051534 2024-02-24 07:06:06.033 2024-02-24 07:06:06.033 900 TIP 435630 19154 6051555 2024-02-24 07:09:39.633 2024-02-24 07:09:39.633 100 FEE 436923 10096 6051556 2024-02-24 07:09:39.633 2024-02-24 07:09:39.633 900 TIP 436923 697 6051559 2024-02-24 07:09:40.559 2024-02-24 07:09:40.559 100 FEE 436923 4538 6051560 2024-02-24 07:09:40.559 2024-02-24 07:09:40.559 900 TIP 436923 21540 6051599 2024-02-24 07:17:58.694 2024-02-24 07:17:58.694 2500 FEE 436859 2710 6051600 2024-02-24 07:17:58.694 2024-02-24 07:17:58.694 22500 TIP 436859 20861 6051603 2024-02-24 07:17:59.124 2024-02-24 07:17:59.124 2500 FEE 436859 4763 6051604 2024-02-24 07:17:59.124 2024-02-24 07:17:59.124 22500 TIP 436859 17217 6051621 2024-02-24 07:18:00.999 2024-02-24 07:18:00.999 2500 FEE 436859 681 6051622 2024-02-24 07:18:00.999 2024-02-24 07:18:00.999 22500 TIP 436859 21067 6051627 2024-02-24 07:18:03.927 2024-02-24 07:18:03.927 2500 FEE 436851 14950 6051628 2024-02-24 07:18:03.927 2024-02-24 07:18:03.927 22500 TIP 436851 10554 6051634 2024-02-24 07:18:04.977 2024-02-24 07:18:04.977 7500 FEE 436851 19770 6051635 2024-02-24 07:18:04.977 2024-02-24 07:18:04.977 67500 TIP 436851 697 6051636 2024-02-24 07:18:06.319 2024-02-24 07:18:06.319 2500 FEE 436851 12609 6051637 2024-02-24 07:18:06.319 2024-02-24 07:18:06.319 22500 TIP 436851 5160 6051646 2024-02-24 07:18:12.538 2024-02-24 07:18:12.538 2500 FEE 436711 3213 6051647 2024-02-24 07:18:12.538 2024-02-24 07:18:12.538 22500 TIP 436711 15351 6051703 2024-02-24 07:28:32.192 2024-02-24 07:28:32.192 2100 FEE 436909 19500 6051704 2024-02-24 07:28:32.192 2024-02-24 07:28:32.192 18900 TIP 436909 2390 6051708 2024-02-24 07:30:03.777 2024-02-24 07:30:03.777 1000 FEE 436958 19033 6051725 2024-02-24 07:35:20.491 2024-02-24 07:35:20.491 1000 FEE 436672 2176 6051726 2024-02-24 07:35:20.491 2024-02-24 07:35:20.491 9000 TIP 436672 17321 6051744 2024-02-24 07:40:27.081 2024-02-24 07:40:27.081 2100 FEE 436683 14247 6051133 2024-02-24 05:13:03.711 2024-02-24 05:13:03.711 1000 STREAM 141924 17106 6051149 2024-02-24 05:14:55.623 2024-02-24 05:14:55.623 9000 TIP 411814 20993 6051179 2024-02-24 05:15:04.667 2024-02-24 05:15:04.667 1000 FEE 411866 5852 6051180 2024-02-24 05:15:04.667 2024-02-24 05:15:04.667 9000 TIP 411866 5806 6051248 2024-02-24 05:36:33.276 2024-02-24 05:36:33.276 2100 FEE 436910 1002 6051249 2024-02-24 05:36:33.276 2024-02-24 05:36:33.276 18900 TIP 436910 21389 6051266 2024-02-24 05:42:22.015 2024-02-24 05:42:22.015 800 FEE 436683 979 6051267 2024-02-24 05:42:22.015 2024-02-24 05:42:22.015 7200 TIP 436683 14449 6051289 2024-02-24 05:52:53.865 2024-02-24 05:52:53.865 10000 FEE 436763 666 6051290 2024-02-24 05:52:53.865 2024-02-24 05:52:53.865 90000 TIP 436763 3518 6051295 2024-02-24 05:55:35.115 2024-02-24 05:55:35.115 100000 FEE 436934 6555 6051302 2024-02-24 05:56:29.729 2024-02-24 05:56:29.729 100 FEE 436909 21166 6051303 2024-02-24 05:56:29.729 2024-02-24 05:56:29.729 900 TIP 436909 17535 6051318 2024-02-24 06:03:42.17 2024-02-24 06:03:42.17 100 FEE 436895 9450 6051319 2024-02-24 06:03:42.17 2024-02-24 06:03:42.17 900 TIP 436895 20892 6051321 2024-02-24 06:04:59.13 2024-02-24 06:04:59.13 1000 POLL 436323 10490 6051364 2024-02-24 06:17:38.809 2024-02-24 06:17:38.809 10000 FEE 436752 20198 6051365 2024-02-24 06:17:38.809 2024-02-24 06:17:38.809 90000 TIP 436752 11885 6051379 2024-02-24 06:20:01.036 2024-02-24 06:20:01.036 1000 FEE 436942 681 6051385 2024-02-24 06:22:48.805 2024-02-24 06:22:48.805 1000 FEE 436943 15148 6051420 2024-02-24 06:29:48.091 2024-02-24 06:29:48.091 500 FEE 436720 18116 6051421 2024-02-24 06:29:48.091 2024-02-24 06:29:48.091 4500 TIP 436720 20852 6051426 2024-02-24 06:33:46.863 2024-02-24 06:33:46.863 100 FEE 436325 11590 6051427 2024-02-24 06:33:46.863 2024-02-24 06:33:46.863 900 TIP 436325 2046 6051438 2024-02-24 06:34:58.013 2024-02-24 06:34:58.013 900 FEE 436443 15266 6051439 2024-02-24 06:34:58.013 2024-02-24 06:34:58.013 8100 TIP 436443 19864 6051490 2024-02-24 06:48:30.247 2024-02-24 06:48:30.247 2100 FEE 436869 13365 6051491 2024-02-24 06:48:30.247 2024-02-24 06:48:30.247 18900 TIP 436869 15762 6051530 2024-02-24 07:05:59.241 2024-02-24 07:05:59.241 2100 FEE 436561 21242 6051531 2024-02-24 07:05:59.241 2024-02-24 07:05:59.241 18900 TIP 436561 18393 6051547 2024-02-24 07:09:37.55 2024-02-24 07:09:37.55 100 FEE 436923 3304 6051548 2024-02-24 07:09:37.55 2024-02-24 07:09:37.55 900 TIP 436923 18051 6051551 2024-02-24 07:09:38.552 2024-02-24 07:09:38.552 100 FEE 436923 11158 6051552 2024-02-24 07:09:38.552 2024-02-24 07:09:38.552 900 TIP 436923 1881 6051588 2024-02-24 07:11:26.315 2024-02-24 07:11:26.315 1000 FEE 436954 17693 6051595 2024-02-24 07:17:57.723 2024-02-24 07:17:57.723 2500 FEE 436859 20599 6051596 2024-02-24 07:17:57.723 2024-02-24 07:17:57.723 22500 TIP 436859 2514 6051660 2024-02-24 07:18:14.102 2024-02-24 07:18:14.102 2500 FEE 436711 19773 6051661 2024-02-24 07:18:14.102 2024-02-24 07:18:14.102 22500 TIP 436711 21003 6051666 2024-02-24 07:18:14.81 2024-02-24 07:18:14.81 2500 FEE 436711 20738 6051667 2024-02-24 07:18:14.81 2024-02-24 07:18:14.81 22500 TIP 436711 2335 6051668 2024-02-24 07:18:15.032 2024-02-24 07:18:15.032 2500 FEE 436711 20264 6051669 2024-02-24 07:18:15.032 2024-02-24 07:18:15.032 22500 TIP 436711 8416 6051682 2024-02-24 07:21:24.779 2024-02-24 07:21:24.779 1000 POLL 436759 1474 6051687 2024-02-24 07:23:38.969 2024-02-24 07:23:38.969 1000 FEE 436957 18114 6051690 2024-02-24 07:23:42.237 2024-02-24 07:23:42.237 2500 FEE 436945 891 6051691 2024-02-24 07:23:42.237 2024-02-24 07:23:42.237 22500 TIP 436945 6384 6051740 2024-02-24 07:38:27.226 2024-02-24 07:38:27.226 1000 FEE 436566 12245 6051741 2024-02-24 07:38:27.226 2024-02-24 07:38:27.226 9000 TIP 436566 7674 6051747 2024-02-24 07:41:06.897 2024-02-24 07:41:06.897 21000 FEE 436961 14213 6051767 2024-02-24 07:51:08.992 2024-02-24 07:51:08.992 5000 FEE 436925 12334 6051768 2024-02-24 07:51:08.992 2024-02-24 07:51:08.992 45000 TIP 436925 20433 6051802 2024-02-24 08:00:27.711 2024-02-24 08:00:27.711 100000 FEE 436969 19502 6051834 2024-02-24 08:14:50.723 2024-02-24 08:14:50.723 1000 FEE 436723 19333 6051835 2024-02-24 08:14:50.723 2024-02-24 08:14:50.723 9000 TIP 436723 20990 6051868 2024-02-24 08:18:52.646 2024-02-24 08:18:52.646 2100 FEE 436733 16638 6051869 2024-02-24 08:18:52.646 2024-02-24 08:18:52.646 18900 TIP 436733 1960 6051870 2024-02-24 08:18:53.164 2024-02-24 08:18:53.164 2100 FEE 436792 10398 6051871 2024-02-24 08:18:53.164 2024-02-24 08:18:53.164 18900 TIP 436792 12334 6051878 2024-02-24 08:18:59.495 2024-02-24 08:18:59.495 2100 FEE 436566 21047 6051879 2024-02-24 08:18:59.495 2024-02-24 08:18:59.495 18900 TIP 436566 4798 6051887 2024-02-24 08:19:39.457 2024-02-24 08:19:39.457 2100 FEE 436687 10490 6051888 2024-02-24 08:19:39.457 2024-02-24 08:19:39.457 18900 TIP 436687 19581 6051911 2024-02-24 08:23:19.008 2024-02-24 08:23:19.008 50000 FEE 430863 10273 6051912 2024-02-24 08:23:19.008 2024-02-24 08:23:19.008 450000 TIP 430863 21472 6051944 2024-02-24 08:35:34.565 2024-02-24 08:35:34.565 300 FEE 436683 21320 6051945 2024-02-24 08:35:34.565 2024-02-24 08:35:34.565 2700 TIP 436683 16347 6051976 2024-02-24 08:45:35.001 2024-02-24 08:45:35.001 2100 FEE 434688 19117 6051977 2024-02-24 08:45:35.001 2024-02-24 08:45:35.001 18900 TIP 434688 4768 6051984 2024-02-24 08:49:16.604 2024-02-24 08:49:16.604 10000 FEE 436720 18178 6051985 2024-02-24 08:49:16.604 2024-02-24 08:49:16.604 90000 TIP 436720 11522 6052024 2024-02-24 09:01:36.258 2024-02-24 09:01:36.258 500 FEE 436750 16867 6052025 2024-02-24 09:01:36.258 2024-02-24 09:01:36.258 4500 TIP 436750 16301 6051159 2024-02-24 05:14:59.064 2024-02-24 05:14:59.064 9000 TIP 411814 18989 6051162 2024-02-24 05:15:00.153 2024-02-24 05:15:00.153 1000 FEE 411814 16808 6051163 2024-02-24 05:15:00.153 2024-02-24 05:15:00.153 9000 TIP 411814 9036 6051181 2024-02-24 05:15:04.882 2024-02-24 05:15:04.882 1000 FEE 411866 21591 6051182 2024-02-24 05:15:04.882 2024-02-24 05:15:04.882 9000 TIP 411866 1244 6051196 2024-02-24 05:15:57.577 2024-02-24 05:15:57.577 100 FEE 436917 15075 6051197 2024-02-24 05:15:57.577 2024-02-24 05:15:57.577 900 TIP 436917 18040 6051212 2024-02-24 05:21:15.421 2024-02-24 05:21:15.421 10000 FEE 436837 11898 6051213 2024-02-24 05:21:15.421 2024-02-24 05:21:15.421 90000 TIP 436837 9184 6051220 2024-02-24 05:22:50.243 2024-02-24 05:22:50.243 2600 FEE 436792 18769 6051221 2024-02-24 05:22:50.243 2024-02-24 05:22:50.243 23400 TIP 436792 13327 6051269 2024-02-24 05:43:05.013 2024-02-24 05:43:05.013 1000 FEE 436928 1806 6051271 2024-02-24 05:43:59.82 2024-02-24 05:43:59.82 2100 FEE 436917 21627 6051272 2024-02-24 05:43:59.82 2024-02-24 05:43:59.82 18900 TIP 436917 7185 6051284 2024-02-24 05:50:52.225 2024-02-24 05:50:52.225 1000 FEE 436900 696 6051285 2024-02-24 05:50:52.225 2024-02-24 05:50:52.225 9000 TIP 436900 14688 6051324 2024-02-24 06:07:01.404 2024-02-24 06:07:01.404 1000 FEE 436940 20744 6051333 2024-02-24 06:10:57.547 2024-02-24 06:10:57.547 2100 FEE 436566 21472 6051334 2024-02-24 06:10:57.547 2024-02-24 06:10:57.547 18900 TIP 436566 14370 6051337 2024-02-24 06:10:57.902 2024-02-24 06:10:57.902 2100 FEE 436566 11498 6051338 2024-02-24 06:10:57.902 2024-02-24 06:10:57.902 18900 TIP 436566 1571 6051353 2024-02-24 06:11:00.418 2024-02-24 06:11:00.418 2100 FEE 436566 5708 6051354 2024-02-24 06:11:00.418 2024-02-24 06:11:00.418 18900 TIP 436566 14357 6051375 2024-02-24 06:19:42.493 2024-02-24 06:19:42.493 2100 FEE 436909 9184 6051376 2024-02-24 06:19:42.493 2024-02-24 06:19:42.493 18900 TIP 436909 10981 6051381 2024-02-24 06:20:07.628 2024-02-24 06:20:07.628 200 FEE 436856 5522 6051382 2024-02-24 06:20:07.628 2024-02-24 06:20:07.628 1800 TIP 436856 20243 6051388 2024-02-24 06:24:09.813 2024-02-24 06:24:09.813 10000 FEE 436753 18877 6051389 2024-02-24 06:24:09.813 2024-02-24 06:24:09.813 90000 TIP 436753 17212 6051390 2024-02-24 06:24:18.63 2024-02-24 06:24:18.63 10000 FEE 436556 5825 6051391 2024-02-24 06:24:18.63 2024-02-24 06:24:18.63 90000 TIP 436556 11329 6051394 2024-02-24 06:24:36.472 2024-02-24 06:24:36.472 10000 FEE 435488 16879 6051395 2024-02-24 06:24:36.472 2024-02-24 06:24:36.472 90000 TIP 435488 17891 6051416 2024-02-24 06:27:36.704 2024-02-24 06:27:36.704 2100 FEE 436888 3729 6051417 2024-02-24 06:27:36.704 2024-02-24 06:27:36.704 18900 TIP 436888 1489 6051435 2024-02-24 06:34:41.401 2024-02-24 06:34:41.401 21000 FEE 436944 6360 6051503 2024-02-24 06:53:26.81 2024-02-24 06:53:26.81 2100 FEE 436827 16834 6051504 2024-02-24 06:53:26.81 2024-02-24 06:53:26.81 18900 TIP 436827 19806 6051523 2024-02-24 07:03:17.113 2024-02-24 07:03:17.113 100 FEE 436944 1468 6051524 2024-02-24 07:03:17.113 2024-02-24 07:03:17.113 900 TIP 436944 10944 6051545 2024-02-24 07:09:28.668 2024-02-24 07:09:28.668 100 FEE 436923 21104 6051546 2024-02-24 07:09:28.668 2024-02-24 07:09:28.668 900 TIP 436923 9334 6051561 2024-02-24 07:09:40.923 2024-02-24 07:09:40.923 100 FEE 436923 19941 6051562 2024-02-24 07:09:40.923 2024-02-24 07:09:40.923 900 TIP 436923 12606 6051565 2024-02-24 07:09:42.086 2024-02-24 07:09:42.086 200 FEE 436923 919 6051566 2024-02-24 07:09:42.086 2024-02-24 07:09:42.086 1800 TIP 436923 12356 6051567 2024-02-24 07:09:43.158 2024-02-24 07:09:43.158 100 FEE 436923 11145 6051568 2024-02-24 07:09:43.158 2024-02-24 07:09:43.158 900 TIP 436923 16536 6051569 2024-02-24 07:09:43.179 2024-02-24 07:09:43.179 100 FEE 436923 4304 6051570 2024-02-24 07:09:43.179 2024-02-24 07:09:43.179 900 TIP 436923 21218 6051583 2024-02-24 07:09:45.622 2024-02-24 07:09:45.622 100 FEE 436923 16912 6051584 2024-02-24 07:09:45.622 2024-02-24 07:09:45.622 900 TIP 436923 17162 6051638 2024-02-24 07:18:06.539 2024-02-24 07:18:06.539 2500 FEE 436851 7746 6051639 2024-02-24 07:18:06.539 2024-02-24 07:18:06.539 22500 TIP 436851 7827 6051642 2024-02-24 07:18:08.454 2024-02-24 07:18:08.454 2500 FEE 436851 16929 6051643 2024-02-24 07:18:08.454 2024-02-24 07:18:08.454 22500 TIP 436851 1273 6051654 2024-02-24 07:18:13.424 2024-02-24 07:18:13.424 2500 FEE 436711 1970 6051655 2024-02-24 07:18:13.424 2024-02-24 07:18:13.424 22500 TIP 436711 5444 6051674 2024-02-24 07:18:15.936 2024-02-24 07:18:15.936 2500 FEE 436711 20624 6051675 2024-02-24 07:18:15.936 2024-02-24 07:18:15.936 22500 TIP 436711 974 6051202 2024-02-24 05:18:02.892 2024-02-24 05:18:02.892 1000 STREAM 141924 9362 6116609 2024-02-29 18:21:55.164 2024-02-29 18:21:55.164 1000 FEE 444000 20353 6116610 2024-02-29 18:21:55.164 2024-02-29 18:21:55.164 9000 TIP 444000 21083 6116621 2024-02-29 18:23:31.199 2024-02-29 18:23:31.199 500 FEE 443955 20922 6116622 2024-02-29 18:23:31.199 2024-02-29 18:23:31.199 4500 TIP 443955 17710 6116627 2024-02-29 18:23:59.629 2024-02-29 18:23:59.629 500 FEE 443928 2711 6116628 2024-02-29 18:23:59.629 2024-02-29 18:23:59.629 4500 TIP 443928 10484 6116678 2024-02-29 18:32:06.089 2024-02-29 18:32:06.089 1700 FEE 444015 940 6116679 2024-02-29 18:32:06.089 2024-02-29 18:32:06.089 15300 TIP 444015 19005 6116708 2024-02-29 18:36:39.903 2024-02-29 18:36:39.903 2100 FEE 443794 20881 6116709 2024-02-29 18:36:39.903 2024-02-29 18:36:39.903 18900 TIP 443794 21430 6116759 2024-02-29 18:38:58.638 2024-02-29 18:38:58.638 100 FEE 443934 17157 6116760 2024-02-29 18:38:58.638 2024-02-29 18:38:58.638 900 TIP 443934 18460 6116766 2024-02-29 18:38:59.836 2024-02-29 18:38:59.836 100 FEE 443934 6526 6116767 2024-02-29 18:38:59.836 2024-02-29 18:38:59.836 900 TIP 443934 18842 6116783 2024-02-29 18:40:27.315 2024-02-29 18:40:27.315 2100 FEE 443649 20504 6116784 2024-02-29 18:40:27.315 2024-02-29 18:40:27.315 18900 TIP 443649 19087 6116807 2024-02-29 18:41:20.889 2024-02-29 18:41:20.889 500 FEE 443927 20585 6116808 2024-02-29 18:41:20.889 2024-02-29 18:41:20.889 4500 TIP 443927 985 6116833 2024-02-29 18:43:00.231 2024-02-29 18:43:00.231 1000 FEE 444047 7903 6116836 2024-02-29 18:43:35.083 2024-02-29 18:43:35.083 1000 FEE 444049 18533 6116864 2024-02-29 18:44:28.568 2024-02-29 18:44:28.568 7700 FEE 443745 11328 6116865 2024-02-29 18:44:28.568 2024-02-29 18:44:28.568 69300 TIP 443745 20264 6116868 2024-02-29 18:44:28.87 2024-02-29 18:44:28.87 7700 FEE 443745 13921 6116869 2024-02-29 18:44:28.87 2024-02-29 18:44:28.87 69300 TIP 443745 10063 6116870 2024-02-29 18:44:28.906 2024-02-29 18:44:28.906 7700 FEE 443745 21269 6116871 2024-02-29 18:44:28.906 2024-02-29 18:44:28.906 69300 TIP 443745 8535 6116872 2024-02-29 18:44:29.086 2024-02-29 18:44:29.086 7700 FEE 443745 5761 6116873 2024-02-29 18:44:29.086 2024-02-29 18:44:29.086 69300 TIP 443745 12072 6116882 2024-02-29 18:44:29.801 2024-02-29 18:44:29.801 7700 FEE 443745 4043 6116883 2024-02-29 18:44:29.801 2024-02-29 18:44:29.801 69300 TIP 443745 10490 6116892 2024-02-29 18:45:43.795 2024-02-29 18:45:43.795 500 FEE 444041 20881 6116893 2024-02-29 18:45:43.795 2024-02-29 18:45:43.795 4500 TIP 444041 12768 6116900 2024-02-29 18:46:04.645 2024-02-29 18:46:04.645 1000 FEE 443659 2789 6116901 2024-02-29 18:46:04.645 2024-02-29 18:46:04.645 9000 TIP 443659 1426 6116911 2024-02-29 18:46:33.596 2024-02-29 18:46:33.596 5700 FEE 443985 21498 6116912 2024-02-29 18:46:33.596 2024-02-29 18:46:33.596 51300 TIP 443985 654 6116925 2024-02-29 18:46:53.124 2024-02-29 18:46:53.124 100 FEE 438440 17095 6116926 2024-02-29 18:46:53.124 2024-02-29 18:46:53.124 900 TIP 438440 1983 6116931 2024-02-29 18:47:19.409 2024-02-29 18:47:19.409 1000 FEE 443753 8385 6116932 2024-02-29 18:47:19.409 2024-02-29 18:47:19.409 9000 TIP 443753 20073 6116945 2024-02-29 18:47:58.477 2024-02-29 18:47:58.477 900 FEE 444015 2710 6116946 2024-02-29 18:47:58.477 2024-02-29 18:47:58.477 8100 TIP 444015 16638 6116959 2024-02-29 18:49:20.926 2024-02-29 18:49:20.926 1000 FEE 440692 20852 6116960 2024-02-29 18:49:20.926 2024-02-29 18:49:20.926 9000 TIP 440692 20036 6116995 2024-02-29 18:50:19.721 2024-02-29 18:50:19.721 1000 FEE 441092 18745 6116996 2024-02-29 18:50:19.721 2024-02-29 18:50:19.721 9000 TIP 441092 2390 6116999 2024-02-29 18:50:19.828 2024-02-29 18:50:19.828 1000 FEE 441092 15925 6117000 2024-02-29 18:50:19.828 2024-02-29 18:50:19.828 9000 TIP 441092 20970 6117003 2024-02-29 18:50:34.144 2024-02-29 18:50:34.144 2100 FEE 443633 8535 6117004 2024-02-29 18:50:34.144 2024-02-29 18:50:34.144 18900 TIP 443633 18446 6117011 2024-02-29 18:50:43.05 2024-02-29 18:50:43.05 1000 FEE 441076 16194 6117012 2024-02-29 18:50:43.05 2024-02-29 18:50:43.05 9000 TIP 441076 15408 6117015 2024-02-29 18:50:43.886 2024-02-29 18:50:43.886 1000 FEE 441076 18819 6117016 2024-02-29 18:50:43.886 2024-02-29 18:50:43.886 9000 TIP 441076 13575 6117038 2024-02-29 18:51:53.277 2024-02-29 18:51:53.277 1000 FEE 444044 11942 6117039 2024-02-29 18:51:53.277 2024-02-29 18:51:53.277 9000 TIP 444044 4763 6117041 2024-02-29 18:52:29.467 2024-02-29 18:52:29.467 1000 FEE 440858 19735 6117042 2024-02-29 18:52:29.467 2024-02-29 18:52:29.467 9000 TIP 440858 8506 6117067 2024-02-29 18:52:49.381 2024-02-29 18:52:49.381 1000 FEE 441181 21451 6117068 2024-02-29 18:52:49.381 2024-02-29 18:52:49.381 9000 TIP 441181 9 6117113 2024-02-29 18:54:45.296 2024-02-29 18:54:45.296 1000 FEE 441243 6310 6117114 2024-02-29 18:54:45.296 2024-02-29 18:54:45.296 9000 TIP 441243 12158 6117117 2024-02-29 18:54:51.695 2024-02-29 18:54:51.695 1000 FEE 441228 1713 6117118 2024-02-29 18:54:51.695 2024-02-29 18:54:51.695 9000 TIP 441228 10530 6117154 2024-02-29 18:57:31.113 2024-02-29 18:57:31.113 2100 FEE 443790 17046 6117155 2024-02-29 18:57:31.113 2024-02-29 18:57:31.113 18900 TIP 443790 12272 6117156 2024-02-29 18:57:31.868 2024-02-29 18:57:31.868 2100 FEE 443790 11430 6117157 2024-02-29 18:57:31.868 2024-02-29 18:57:31.868 18900 TIP 443790 11153 6117211 2024-02-29 18:59:33.305 2024-02-29 18:59:33.305 100 FEE 443974 17797 6117212 2024-02-29 18:59:33.305 2024-02-29 18:59:33.305 900 TIP 443974 21422 6117224 2024-02-29 18:59:56.132 2024-02-29 18:59:56.132 100 FEE 443919 9150 6117225 2024-02-29 18:59:56.132 2024-02-29 18:59:56.132 900 TIP 443919 20525 6117253 2024-02-29 19:00:31.024 2024-02-29 19:00:31.024 100 FEE 443841 4459 6117254 2024-02-29 19:00:31.024 2024-02-29 19:00:31.024 900 TIP 443841 20353 6117263 2024-02-29 19:00:40.209 2024-02-29 19:00:40.209 2100 FEE 443934 13763 6117264 2024-02-29 19:00:40.209 2024-02-29 19:00:40.209 18900 TIP 443934 1352 6117308 2024-02-29 19:01:39.389 2024-02-29 19:01:39.389 100 FEE 443751 9 6117309 2024-02-29 19:01:39.389 2024-02-29 19:01:39.389 900 TIP 443751 15273 6117314 2024-02-29 19:01:45.99 2024-02-29 19:01:45.99 100 FEE 443743 19462 6117315 2024-02-29 19:01:45.99 2024-02-29 19:01:45.99 900 TIP 443743 15045 6117319 2024-02-29 19:01:50.651 2024-02-29 19:01:50.651 100 FEE 443732 17212 6117320 2024-02-29 19:01:50.651 2024-02-29 19:01:50.651 900 TIP 443732 21060 6117329 2024-02-29 19:02:03.608 2024-02-29 19:02:03.608 100 FEE 443712 19403 6117330 2024-02-29 19:02:03.608 2024-02-29 19:02:03.608 900 TIP 443712 2431 6117364 2024-02-29 19:04:08.867 2024-02-29 19:04:08.867 1000 FEE 425118 8729 6117365 2024-02-29 19:04:08.867 2024-02-29 19:04:08.867 9000 TIP 425118 1658 6117378 2024-02-29 19:04:49.152 2024-02-29 19:04:49.152 100 FEE 443927 1120 6117379 2024-02-29 19:04:49.152 2024-02-29 19:04:49.152 900 TIP 443927 9496 6117380 2024-02-29 19:05:03.092 2024-02-29 19:05:03.092 100 FEE 444037 10484 6117381 2024-02-29 19:05:03.092 2024-02-29 19:05:03.092 900 TIP 444037 9275 6117383 2024-02-29 19:05:04.227 2024-02-29 19:05:04.227 2100 FEE 444071 20504 6117384 2024-02-29 19:05:04.227 2024-02-29 19:05:04.227 18900 TIP 444071 17592 6117394 2024-02-29 19:06:04.009 2024-02-29 19:06:04.009 500 FEE 444025 16329 6117395 2024-02-29 19:06:04.009 2024-02-29 19:06:04.009 4500 TIP 444025 3440 6117398 2024-02-29 19:06:12.529 2024-02-29 19:06:12.529 1000 FEE 444092 19836 6117399 2024-02-29 19:06:15.306 2024-02-29 19:06:15.306 100 FEE 444033 21585 6117400 2024-02-29 19:06:15.306 2024-02-29 19:06:15.306 900 TIP 444033 9336 6117412 2024-02-29 19:07:08.002 2024-02-29 19:07:08.002 1000 FEE 442904 19158 6117413 2024-02-29 19:07:08.002 2024-02-29 19:07:08.002 9000 TIP 442904 6160 6117452 2024-02-29 19:07:19.556 2024-02-29 19:07:19.556 1000 FEE 443372 18262 6117453 2024-02-29 19:07:19.556 2024-02-29 19:07:19.556 9000 TIP 443372 19189 6117462 2024-02-29 19:07:28.003 2024-02-29 19:07:28.003 1000 FEE 443861 10638 6117463 2024-02-29 19:07:28.003 2024-02-29 19:07:28.003 9000 TIP 443861 1051 6117464 2024-02-29 19:07:28.352 2024-02-29 19:07:28.352 1000 FEE 443861 688 6117465 2024-02-29 19:07:28.352 2024-02-29 19:07:28.352 9000 TIP 443861 20291 6051224 2024-02-24 05:24:04.573 2024-02-24 05:24:04.573 1000 STREAM 141924 20162 6051225 2024-02-24 05:25:04.588 2024-02-24 05:25:04.588 1000 STREAM 141924 4177 6051228 2024-02-24 05:26:04.575 2024-02-24 05:26:04.575 1000 STREAM 141924 2285 6051236 2024-02-24 05:30:02.818 2024-02-24 05:30:02.818 1000 STREAM 141924 21342 6051253 2024-02-24 05:38:03.728 2024-02-24 05:38:03.728 1000 STREAM 141924 3979 6051275 2024-02-24 05:46:03.091 2024-02-24 05:46:03.091 1000 STREAM 141924 8569 6051280 2024-02-24 05:49:03.49 2024-02-24 05:49:03.49 1000 STREAM 141924 1047 6051286 2024-02-24 05:51:03.524 2024-02-24 05:51:03.524 1000 STREAM 141924 11897 6051309 2024-02-24 05:59:03.539 2024-02-24 05:59:03.539 1000 STREAM 141924 2711 6051311 2024-02-24 06:00:03.576 2024-02-24 06:00:03.576 1000 STREAM 141924 627 6051313 2024-02-24 06:02:03.561 2024-02-24 06:02:03.561 1000 STREAM 141924 2326 6051325 2024-02-24 06:07:03.588 2024-02-24 06:07:03.588 1000 STREAM 141924 17411 6051328 2024-02-24 06:10:03.605 2024-02-24 06:10:03.605 1000 STREAM 141924 6594 6051360 2024-02-24 06:16:03.634 2024-02-24 06:16:03.634 1000 STREAM 141924 19449 6051370 2024-02-24 06:19:03.633 2024-02-24 06:19:03.633 1000 STREAM 141924 9352 6051380 2024-02-24 06:20:03.701 2024-02-24 06:20:03.701 1000 STREAM 141924 1495 6051383 2024-02-24 06:21:03.667 2024-02-24 06:21:03.667 1000 STREAM 141924 2734 6051384 2024-02-24 06:22:03.67 2024-02-24 06:22:03.67 1000 STREAM 141924 1784 6051387 2024-02-24 06:24:03.672 2024-02-24 06:24:03.672 1000 STREAM 141924 17415 6051408 2024-02-24 06:27:03.684 2024-02-24 06:27:03.684 1000 STREAM 141924 6382 6051422 2024-02-24 06:30:04.312 2024-02-24 06:30:04.312 1000 STREAM 141924 5701 6051430 2024-02-24 06:34:04.298 2024-02-24 06:34:04.298 1000 STREAM 141924 18630 6051441 2024-02-24 06:35:04.304 2024-02-24 06:35:04.304 1000 STREAM 141924 16229 6051458 2024-02-24 06:40:04.339 2024-02-24 06:40:04.339 1000 STREAM 141924 2460 6051465 2024-02-24 06:41:04.319 2024-02-24 06:41:04.319 1000 STREAM 141924 7760 6051474 2024-02-24 06:43:04.332 2024-02-24 06:43:04.332 1000 STREAM 141924 21157 6051477 2024-02-24 06:45:04.329 2024-02-24 06:45:04.329 1000 STREAM 141924 16679 6051483 2024-02-24 06:46:04.398 2024-02-24 06:46:04.398 1000 STREAM 141924 18313 6051489 2024-02-24 06:48:04.364 2024-02-24 06:48:04.364 1000 STREAM 141924 15488 6051495 2024-02-24 06:50:04.381 2024-02-24 06:50:04.381 1000 STREAM 141924 19980 6051498 2024-02-24 06:51:04.366 2024-02-24 06:51:04.366 1000 STREAM 141924 16357 6051502 2024-02-24 06:53:04.394 2024-02-24 06:53:04.394 1000 STREAM 141924 20906 6051509 2024-02-24 06:54:04.398 2024-02-24 06:54:04.398 1000 STREAM 141924 15326 6051510 2024-02-24 06:55:04.402 2024-02-24 06:55:04.402 1000 STREAM 141924 11145 6051514 2024-02-24 06:57:04.411 2024-02-24 06:57:04.411 1000 STREAM 141924 9517 6051515 2024-02-24 06:58:04.399 2024-02-24 06:58:04.399 1000 STREAM 141924 21271 6051516 2024-02-24 06:59:04.406 2024-02-24 06:59:04.406 1000 STREAM 141924 1713 6051517 2024-02-24 07:00:04.45 2024-02-24 07:00:04.45 1000 STREAM 141924 19613 6051521 2024-02-24 07:02:04.409 2024-02-24 07:02:04.409 1000 STREAM 141924 2961 6051522 2024-02-24 07:03:04.412 2024-02-24 07:03:04.412 1000 STREAM 141924 14213 6051527 2024-02-24 07:04:04.417 2024-02-24 07:04:04.417 1000 STREAM 141924 629 6116629 2024-02-29 18:24:03.177 2024-02-29 18:24:03.177 1000 STREAM 141924 21349 6116659 2024-02-29 18:29:03.18 2024-02-29 18:29:03.18 1000 STREAM 141924 18269 6051229 2024-02-24 05:27:04.804 2024-02-24 05:27:04.804 1000 STREAM 141924 4973 6051230 2024-02-24 05:28:04.797 2024-02-24 05:28:04.797 1000 STREAM 141924 12769 6116649 2024-02-29 18:27:43.499 2024-02-29 18:27:43.499 7700 FEE 443951 8841 6116650 2024-02-29 18:27:43.499 2024-02-29 18:27:43.499 69300 TIP 443951 21248 6116664 2024-02-29 18:30:56.167 2024-02-29 18:30:56.167 2100 FEE 444015 21527 6116665 2024-02-29 18:30:56.167 2024-02-29 18:30:56.167 18900 TIP 444015 20182 6116690 2024-02-29 18:34:42.15 2024-02-29 18:34:42.15 1000 FEE 443834 14795 6116691 2024-02-29 18:34:42.15 2024-02-29 18:34:42.15 9000 TIP 443834 21090 6116712 2024-02-29 18:36:46.653 2024-02-29 18:36:46.653 2100 FEE 443836 657 6116713 2024-02-29 18:36:46.653 2024-02-29 18:36:46.653 18900 TIP 443836 20897 6116722 2024-02-29 18:36:54.428 2024-02-29 18:36:54.428 1000 FEE 443861 19966 6116723 2024-02-29 18:36:54.428 2024-02-29 18:36:54.428 9000 TIP 443861 16329 6116726 2024-02-29 18:36:56.086 2024-02-29 18:36:56.086 1000 FEE 444025 20906 6116736 2024-02-29 18:37:20.917 2024-02-29 18:37:20.917 1000 FEE 444026 1741 6116737 2024-02-29 18:37:23.808 2024-02-29 18:37:23.808 1000 FEE 444027 1567 6116764 2024-02-29 18:38:59.495 2024-02-29 18:38:59.495 100 FEE 443934 17184 6116765 2024-02-29 18:38:59.495 2024-02-29 18:38:59.495 900 TIP 443934 18727 6116789 2024-02-29 18:40:35.674 2024-02-29 18:40:35.674 1000 FEE 443898 1512 6116790 2024-02-29 18:40:35.674 2024-02-29 18:40:35.674 9000 TIP 443898 8541 6116806 2024-02-29 18:41:03.466 2024-02-29 18:41:03.466 1000 FEE 444040 19966 6116811 2024-02-29 18:41:23.527 2024-02-29 18:41:23.527 6900 FEE 443923 15196 6116812 2024-02-29 18:41:23.527 2024-02-29 18:41:23.527 62100 TIP 443923 1480 6116813 2024-02-29 18:41:24.188 2024-02-29 18:41:24.188 6900 FEE 443923 21541 6116814 2024-02-29 18:41:24.188 2024-02-29 18:41:24.188 62100 TIP 443923 1273 6116826 2024-02-29 18:42:03.343 2024-02-29 18:42:03.343 1000 FEE 444043 10484 6051233 2024-02-24 05:29:00.156 2024-02-24 05:29:00.156 2600 FEE 436672 12921 6051234 2024-02-24 05:29:00.156 2024-02-24 05:29:00.156 23400 TIP 436672 21269 6051257 2024-02-24 05:41:05.547 2024-02-24 05:41:05.547 1000 FEE 436927 19282 6051282 2024-02-24 05:49:58.208 2024-02-24 05:49:58.208 1000 FEE 436931 21003 6051306 2024-02-24 05:58:33.283 2024-02-24 05:58:33.283 10000 FEE 436935 9863 6051339 2024-02-24 06:10:58.066 2024-02-24 06:10:58.066 2100 FEE 436566 1433 6051340 2024-02-24 06:10:58.066 2024-02-24 06:10:58.066 18900 TIP 436566 18625 6051345 2024-02-24 06:10:58.899 2024-02-24 06:10:58.899 2100 FEE 436566 5758 6051346 2024-02-24 06:10:58.899 2024-02-24 06:10:58.899 18900 TIP 436566 980 6051347 2024-02-24 06:10:59.285 2024-02-24 06:10:59.285 2100 FEE 436566 928 6051348 2024-02-24 06:10:59.285 2024-02-24 06:10:59.285 18900 TIP 436566 6653 6051362 2024-02-24 06:17:30.027 2024-02-24 06:17:30.027 10000 FEE 436837 4388 6051363 2024-02-24 06:17:30.027 2024-02-24 06:17:30.027 90000 TIP 436837 7869 6051410 2024-02-24 06:27:12.039 2024-02-24 06:27:12.039 200 FEE 436892 16649 6051411 2024-02-24 06:27:12.039 2024-02-24 06:27:12.039 1800 TIP 436892 21402 6051414 2024-02-24 06:27:34.359 2024-02-24 06:27:34.359 2100 FEE 436863 15662 6051415 2024-02-24 06:27:34.359 2024-02-24 06:27:34.359 18900 TIP 436863 20972 6051428 2024-02-24 06:33:47.065 2024-02-24 06:33:47.065 900 FEE 436325 14939 6051429 2024-02-24 06:33:47.065 2024-02-24 06:33:47.065 8100 TIP 436325 21057 6051442 2024-02-24 06:35:07.893 2024-02-24 06:35:07.893 100 FEE 436368 19967 6051443 2024-02-24 06:35:07.893 2024-02-24 06:35:07.893 900 TIP 436368 7809 6051448 2024-02-24 06:36:00.966 2024-02-24 06:36:00.966 900 FEE 436866 17148 6051449 2024-02-24 06:36:00.966 2024-02-24 06:36:00.966 8100 TIP 436866 12946 6051468 2024-02-24 06:42:42.545 2024-02-24 06:42:42.545 2100 FEE 436683 18291 6051469 2024-02-24 06:42:42.545 2024-02-24 06:42:42.545 18900 TIP 436683 21212 6051539 2024-02-24 07:08:37.679 2024-02-24 07:08:37.679 100 FEE 436750 13076 6051540 2024-02-24 07:08:37.679 2024-02-24 07:08:37.679 900 TIP 436750 9362 6051563 2024-02-24 07:09:41.347 2024-02-24 07:09:41.347 100 FEE 436923 886 6051564 2024-02-24 07:09:41.347 2024-02-24 07:09:41.347 900 TIP 436923 669 6051601 2024-02-24 07:17:58.917 2024-02-24 07:17:58.917 2500 FEE 436859 7185 6051602 2024-02-24 07:17:58.917 2024-02-24 07:17:58.917 22500 TIP 436859 18751 6051623 2024-02-24 07:18:01.567 2024-02-24 07:18:01.567 2500 FEE 436859 3440 6051624 2024-02-24 07:18:01.567 2024-02-24 07:18:01.567 22500 TIP 436859 2789 6051625 2024-02-24 07:18:02.056 2024-02-24 07:18:02.056 2500 FEE 436859 1389 6051626 2024-02-24 07:18:02.056 2024-02-24 07:18:02.056 22500 TIP 436859 1585 6051672 2024-02-24 07:18:15.731 2024-02-24 07:18:15.731 2500 FEE 436711 16052 6051673 2024-02-24 07:18:15.731 2024-02-24 07:18:15.731 22500 TIP 436711 669 6051683 2024-02-24 07:21:26.36 2024-02-24 07:21:26.36 1000 FEE 436955 21026 6051706 2024-02-24 07:29:38.966 2024-02-24 07:29:38.966 2100 FEE 436907 20858 6051707 2024-02-24 07:29:38.966 2024-02-24 07:29:38.966 18900 TIP 436907 4798 6051773 2024-02-24 07:51:53.173 2024-02-24 07:51:53.173 900 FEE 436954 20710 6051774 2024-02-24 07:51:53.173 2024-02-24 07:51:53.173 8100 TIP 436954 18448 6051787 2024-02-24 07:53:03.485 2024-02-24 07:53:03.485 1000 FEE 436966 1833 6051788 2024-02-24 07:53:41.094 2024-02-24 07:53:41.094 200 FEE 436894 20881 6051789 2024-02-24 07:53:41.094 2024-02-24 07:53:41.094 1800 TIP 436894 20782 6051836 2024-02-24 08:14:51.362 2024-02-24 08:14:51.362 1000 FEE 436723 5725 6051837 2024-02-24 08:14:51.362 2024-02-24 08:14:51.362 9000 TIP 436723 14152 6051838 2024-02-24 08:14:51.446 2024-02-24 08:14:51.446 1000 FEE 436723 21503 6051839 2024-02-24 08:14:51.446 2024-02-24 08:14:51.446 9000 TIP 436723 13931 6051852 2024-02-24 08:18:45.962 2024-02-24 08:18:45.962 2100 FEE 436241 16214 6051853 2024-02-24 08:18:45.962 2024-02-24 08:18:45.962 18900 TIP 436241 18673 6051862 2024-02-24 08:18:49.319 2024-02-24 08:18:49.319 2100 FEE 436926 2176 6051863 2024-02-24 08:18:49.319 2024-02-24 08:18:49.319 18900 TIP 436926 8508 6051864 2024-02-24 08:18:50.387 2024-02-24 08:18:50.387 2100 FEE 436093 20691 6051865 2024-02-24 08:18:50.387 2024-02-24 08:18:50.387 18900 TIP 436093 13406 6051885 2024-02-24 08:19:34.603 2024-02-24 08:19:34.603 2100 FEE 436944 1733 6051886 2024-02-24 08:19:34.603 2024-02-24 08:19:34.603 18900 TIP 436944 20646 6051891 2024-02-24 08:21:47.796 2024-02-24 08:21:47.796 2000 FEE 436926 909 6051892 2024-02-24 08:21:47.796 2024-02-24 08:21:47.796 18000 TIP 436926 16912 6051908 2024-02-24 08:23:04.116 2024-02-24 08:23:04.116 50000 FEE 430674 6229 6051909 2024-02-24 08:23:04.116 2024-02-24 08:23:04.116 450000 TIP 430674 18402 6051913 2024-02-24 08:23:19.67 2024-02-24 08:23:19.67 50000 FEE 430863 6515 6051914 2024-02-24 08:23:19.67 2024-02-24 08:23:19.67 450000 TIP 430863 20251 6051927 2024-02-24 08:30:36.652 2024-02-24 08:30:36.652 0 FEE 436982 12606 6051933 2024-02-24 08:34:58.276 2024-02-24 08:34:58.276 100 FEE 436752 21401 6051934 2024-02-24 08:34:58.276 2024-02-24 08:34:58.276 900 TIP 436752 19796 6051952 2024-02-24 08:35:58.007 2024-02-24 08:35:58.007 100 FEE 436556 826 6051953 2024-02-24 08:35:58.007 2024-02-24 08:35:58.007 900 TIP 436556 21281 6052029 2024-02-24 09:02:17.933 2024-02-24 09:02:17.933 1000 FEE 436191 9347 6052030 2024-02-24 09:02:17.933 2024-02-24 09:02:17.933 9000 TIP 436191 2437 6052044 2024-02-24 09:05:07.367 2024-02-24 09:05:07.367 1000 FEE 436992 1044 6052076 2024-02-24 09:14:44.752 2024-02-24 09:14:44.752 1000 FEE 437001 18984 6052108 2024-02-24 09:24:20.309 2024-02-24 09:24:20.309 100 FEE 436901 6526 6052109 2024-02-24 09:24:20.309 2024-02-24 09:24:20.309 900 TIP 436901 16229 6052114 2024-02-24 09:25:00.674 2024-02-24 09:25:00.674 1000 FEE 437009 21207 6052130 2024-02-24 09:30:01.04 2024-02-24 09:30:01.04 2800 FEE 436930 20817 6052131 2024-02-24 09:30:01.04 2024-02-24 09:30:01.04 25200 TIP 436930 20208 6052134 2024-02-24 09:31:08.397 2024-02-24 09:31:08.397 1000 FEE 437013 18154 6052141 2024-02-24 09:32:12.876 2024-02-24 09:32:12.876 1000 FEE 437013 21344 6052142 2024-02-24 09:32:12.876 2024-02-24 09:32:12.876 9000 TIP 437013 5497 6052143 2024-02-24 09:32:20.787 2024-02-24 09:32:20.787 1000 FEE 437015 19034 6052148 2024-02-24 09:33:44.651 2024-02-24 09:33:44.651 100 FEE 436443 20706 6052149 2024-02-24 09:33:44.651 2024-02-24 09:33:44.651 900 TIP 436443 19662 6052150 2024-02-24 09:33:44.734 2024-02-24 09:33:44.734 100 FEE 436443 11776 6052151 2024-02-24 09:33:44.734 2024-02-24 09:33:44.734 900 TIP 436443 20162 6052155 2024-02-24 09:34:33.761 2024-02-24 09:34:33.761 1000 FEE 437017 10728 6052178 2024-02-24 09:42:34.648 2024-02-24 09:42:34.648 100 FEE 436803 1493 6052179 2024-02-24 09:42:34.648 2024-02-24 09:42:34.648 900 TIP 436803 13378 6052189 2024-02-24 09:48:18.43 2024-02-24 09:48:18.43 1000 FEE 437024 1737 6052192 2024-02-24 09:48:24.288 2024-02-24 09:48:24.288 100 FEE 436935 5085 6052193 2024-02-24 09:48:24.288 2024-02-24 09:48:24.288 900 TIP 436935 7389 6052198 2024-02-24 09:48:26.084 2024-02-24 09:48:26.084 100 FEE 436935 16808 6051252 2024-02-24 05:37:03.733 2024-02-24 05:37:03.733 1000 STREAM 141924 4062 6051254 2024-02-24 05:39:03.724 2024-02-24 05:39:03.724 1000 STREAM 141924 2577 6051273 2024-02-24 05:44:03.054 2024-02-24 05:44:03.054 1000 STREAM 141924 10690 6051274 2024-02-24 05:45:03.084 2024-02-24 05:45:03.084 1000 STREAM 141924 1564 6051278 2024-02-24 05:47:03.101 2024-02-24 05:47:03.101 1000 STREAM 141924 18641 6051283 2024-02-24 05:50:03.531 2024-02-24 05:50:03.531 1000 STREAM 141924 20246 6051287 2024-02-24 05:52:03.518 2024-02-24 05:52:03.518 1000 STREAM 141924 13854 6051291 2024-02-24 05:53:03.52 2024-02-24 05:53:03.52 1000 STREAM 141924 21051 6051293 2024-02-24 05:54:03.527 2024-02-24 05:54:03.527 1000 STREAM 141924 15226 6051294 2024-02-24 05:55:03.527 2024-02-24 05:55:03.527 1000 STREAM 141924 11443 6051297 2024-02-24 05:56:03.534 2024-02-24 05:56:03.534 1000 STREAM 141924 6164 6051304 2024-02-24 05:57:03.537 2024-02-24 05:57:03.537 1000 STREAM 141924 20715 6051305 2024-02-24 05:58:03.556 2024-02-24 05:58:03.556 1000 STREAM 141924 1428 6051312 2024-02-24 06:01:03.562 2024-02-24 06:01:03.562 1000 STREAM 141924 3683 6051315 2024-02-24 06:03:03.574 2024-02-24 06:03:03.574 1000 STREAM 141924 19463 6051320 2024-02-24 06:04:03.572 2024-02-24 06:04:03.572 1000 STREAM 141924 4378 6051322 2024-02-24 06:05:03.581 2024-02-24 06:05:03.581 1000 STREAM 141924 16406 6051323 2024-02-24 06:06:03.606 2024-02-24 06:06:03.606 1000 STREAM 141924 20624 6051326 2024-02-24 06:08:03.588 2024-02-24 06:08:03.588 1000 STREAM 141924 19118 6051327 2024-02-24 06:09:03.6 2024-02-24 06:09:03.6 1000 STREAM 141924 716 6051355 2024-02-24 06:11:03.611 2024-02-24 06:11:03.611 1000 STREAM 141924 697 6051356 2024-02-24 06:12:03.621 2024-02-24 06:12:03.621 1000 STREAM 141924 959 6051357 2024-02-24 06:13:03.62 2024-02-24 06:13:03.62 1000 STREAM 141924 17172 6051358 2024-02-24 06:14:03.622 2024-02-24 06:14:03.622 1000 STREAM 141924 18832 6051359 2024-02-24 06:15:03.625 2024-02-24 06:15:03.625 1000 STREAM 141924 807 6051361 2024-02-24 06:17:03.634 2024-02-24 06:17:03.634 1000 STREAM 141924 1817 6051366 2024-02-24 06:18:03.642 2024-02-24 06:18:03.642 1000 STREAM 141924 946 6051386 2024-02-24 06:23:03.674 2024-02-24 06:23:03.674 1000 STREAM 141924 1236 6051398 2024-02-24 06:25:03.669 2024-02-24 06:25:03.669 1000 STREAM 141924 1650 6051401 2024-02-24 06:26:03.675 2024-02-24 06:26:03.675 1000 STREAM 141924 9329 6051418 2024-02-24 06:28:03.684 2024-02-24 06:28:03.684 1000 STREAM 141924 12609 6051419 2024-02-24 06:29:04.278 2024-02-24 06:29:04.278 1000 STREAM 141924 9845 6051423 2024-02-24 06:31:04.278 2024-02-24 06:31:04.278 1000 STREAM 141924 15890 6051424 2024-02-24 06:32:04.282 2024-02-24 06:32:04.282 1000 STREAM 141924 15843 6051425 2024-02-24 06:33:04.28 2024-02-24 06:33:04.28 1000 STREAM 141924 21400 6051450 2024-02-24 06:36:04.303 2024-02-24 06:36:04.303 1000 STREAM 141924 712 6051451 2024-02-24 06:37:04.299 2024-02-24 06:37:04.299 1000 STREAM 141924 17568 6051456 2024-02-24 06:38:04.302 2024-02-24 06:38:04.302 1000 STREAM 141924 8448 6051457 2024-02-24 06:39:04.315 2024-02-24 06:39:04.315 1000 STREAM 141924 1602 6051467 2024-02-24 06:42:04.323 2024-02-24 06:42:04.323 1000 STREAM 141924 20757 6051476 2024-02-24 06:44:04.336 2024-02-24 06:44:04.336 1000 STREAM 141924 2000 6051486 2024-02-24 06:47:04.362 2024-02-24 06:47:04.362 1000 STREAM 141924 14791 6051492 2024-02-24 06:49:04.367 2024-02-24 06:49:04.367 1000 STREAM 141924 16633 6051499 2024-02-24 06:52:04.37 2024-02-24 06:52:04.37 1000 STREAM 141924 15146 6051513 2024-02-24 06:56:04.4 2024-02-24 06:56:04.4 1000 STREAM 141924 2710 6051518 2024-02-24 07:01:04.409 2024-02-24 07:01:04.409 1000 STREAM 141924 18274 6116666 2024-02-29 18:31:03.195 2024-02-29 18:31:03.195 1000 STREAM 141924 16301 6116694 2024-02-29 18:35:03.43 2024-02-29 18:35:03.43 1000 STREAM 141924 19886 6117086 2024-02-29 18:54:03.614 2024-02-29 18:54:03.614 1000 STREAM 141924 15146 6117137 2024-02-29 18:56:03.622 2024-02-29 18:56:03.622 1000 STREAM 141924 9421 6117232 2024-02-29 19:00:03.635 2024-02-29 19:00:03.635 1000 STREAM 141924 2444 6117269 2024-02-29 19:01:03.656 2024-02-29 19:01:03.656 1000 STREAM 141924 634 6117382 2024-02-29 19:05:03.661 2024-02-29 19:05:03.661 1000 STREAM 141924 2101 6117409 2024-02-29 19:07:03.681 2024-02-29 19:07:03.681 1000 STREAM 141924 20551 6117627 2024-02-29 19:17:04.118 2024-02-29 19:17:04.118 1000 STREAM 141924 683 6117638 2024-02-29 19:18:04.125 2024-02-29 19:18:04.125 1000 STREAM 141924 20157 6117646 2024-02-29 19:19:04.176 2024-02-29 19:19:04.176 1000 STREAM 141924 20302 6117839 2024-02-29 19:29:04.21 2024-02-29 19:29:04.21 1000 STREAM 141924 13763 6051258 2024-02-24 05:42:04.023 2024-02-24 05:42:04.023 1000 STREAM 141924 15762 6116687 2024-02-29 18:33:03.912 2024-02-29 18:33:03.912 1000 STREAM 141924 11670 6116697 2024-02-29 18:36:03.928 2024-02-29 18:36:03.928 1000 STREAM 141924 15100 6116827 2024-02-29 18:42:03.951 2024-02-29 18:42:03.951 1000 STREAM 141924 21457 6116834 2024-02-29 18:43:03.954 2024-02-29 18:43:03.954 1000 STREAM 141924 11873 6116958 2024-02-29 18:49:04.054 2024-02-29 18:49:04.054 1000 STREAM 141924 5978 6051437 2024-02-24 06:34:57.12 2024-02-24 06:34:57.12 900 TIP 436443 16149 6051440 2024-02-24 06:34:58.923 2024-02-24 06:34:58.923 1000 FEE 436945 836 6051444 2024-02-24 06:35:08.167 2024-02-24 06:35:08.167 900 FEE 436368 18743 6051445 2024-02-24 06:35:08.167 2024-02-24 06:35:08.167 8100 TIP 436368 20073 6051452 2024-02-24 06:37:34.742 2024-02-24 06:37:34.742 100 FEE 436894 21588 6051453 2024-02-24 06:37:34.742 2024-02-24 06:37:34.742 900 TIP 436894 19576 6051461 2024-02-24 06:40:59.52 2024-02-24 06:40:59.52 2100 FEE 436720 21062 6051462 2024-02-24 06:40:59.52 2024-02-24 06:40:59.52 18900 TIP 436720 21418 6051463 2024-02-24 06:40:59.676 2024-02-24 06:40:59.676 2100 FEE 436720 21058 6051464 2024-02-24 06:40:59.676 2024-02-24 06:40:59.676 18900 TIP 436720 2016 6051478 2024-02-24 06:45:14.609 2024-02-24 06:45:14.609 2100 FEE 435944 12291 6051479 2024-02-24 06:45:14.609 2024-02-24 06:45:14.609 18900 TIP 435944 4314 6051529 2024-02-24 07:05:22.026 2024-02-24 07:05:22.026 125000 FEE 436949 15617 6051535 2024-02-24 07:06:24.095 2024-02-24 07:06:24.095 21000 FEE 436950 8648 6051553 2024-02-24 07:09:39.122 2024-02-24 07:09:39.122 100 FEE 436923 21391 6051554 2024-02-24 07:09:39.122 2024-02-24 07:09:39.122 900 TIP 436923 2042 6051581 2024-02-24 07:09:45.099 2024-02-24 07:09:45.099 100 FEE 436923 2000 6051582 2024-02-24 07:09:45.099 2024-02-24 07:09:45.099 900 TIP 436923 4650 6051611 2024-02-24 07:17:59.992 2024-02-24 07:17:59.992 2500 FEE 436859 9496 6051612 2024-02-24 07:17:59.992 2024-02-24 07:17:59.992 22500 TIP 436859 13055 6051640 2024-02-24 07:18:08.064 2024-02-24 07:18:08.064 5000 FEE 436851 10638 6051641 2024-02-24 07:18:08.064 2024-02-24 07:18:08.064 45000 TIP 436851 1493 6051685 2024-02-24 07:22:56.361 2024-02-24 07:22:56.361 1000 FEE 436956 2328 6051713 2024-02-24 07:31:30.57 2024-02-24 07:31:30.57 1000 FEE 436768 17046 6051714 2024-02-24 07:31:30.57 2024-02-24 07:31:30.57 9000 TIP 436768 9705 6051732 2024-02-24 07:37:26.571 2024-02-24 07:37:26.571 1000 FEE 436827 10393 6051733 2024-02-24 07:37:26.571 2024-02-24 07:37:26.571 9000 TIP 436827 4076 6051769 2024-02-24 07:51:12.933 2024-02-24 07:51:12.933 5000 FEE 436728 4538 6051770 2024-02-24 07:51:12.933 2024-02-24 07:51:12.933 45000 TIP 436728 681 6051793 2024-02-24 07:56:18.837 2024-02-24 07:56:18.837 21000 FEE 436967 17392 6051808 2024-02-24 08:04:15.798 2024-02-24 08:04:15.798 4200 FEE 435847 1512 6051809 2024-02-24 08:04:15.798 2024-02-24 08:04:15.798 37800 TIP 435847 18472 6051866 2024-02-24 08:18:51.62 2024-02-24 08:18:51.62 2100 FEE 436752 18637 6051867 2024-02-24 08:18:51.62 2024-02-24 08:18:51.62 18900 TIP 436752 9611 6051872 2024-02-24 08:18:53.735 2024-02-24 08:18:53.735 2100 FEE 436792 21014 6051873 2024-02-24 08:18:53.735 2024-02-24 08:18:53.735 18900 TIP 436792 2502 6051920 2024-02-24 08:27:41.781 2024-02-24 08:27:41.781 0 FEE 436979 889 6051935 2024-02-24 08:34:58.308 2024-02-24 08:34:58.308 300 FEE 436752 690 6051936 2024-02-24 08:34:58.308 2024-02-24 08:34:58.308 2700 TIP 436752 5775 6051967 2024-02-24 08:41:29.024 2024-02-24 08:41:29.024 2100 FEE 436894 15282 6051968 2024-02-24 08:41:29.024 2024-02-24 08:41:29.024 18900 TIP 436894 4128 6051970 2024-02-24 08:42:36.063 2024-02-24 08:42:36.063 1000 POLL 436759 18932 6051987 2024-02-24 08:50:10.208 2024-02-24 08:50:10.208 10000 FEE 436959 20906 6051988 2024-02-24 08:50:10.208 2024-02-24 08:50:10.208 90000 TIP 436959 20586 6051999 2024-02-24 08:56:46.723 2024-02-24 08:56:46.723 50000 FEE 436981 9438 6052000 2024-02-24 08:56:46.723 2024-02-24 08:56:46.723 450000 TIP 436981 19198 6052051 2024-02-24 09:08:57.407 2024-02-24 09:08:57.407 1000 FEE 434309 5499 6052052 2024-02-24 09:08:57.407 2024-02-24 09:08:57.407 9000 TIP 434309 21393 6052056 2024-02-24 09:09:15.515 2024-02-24 09:09:15.515 10000 FEE 436996 19576 6052087 2024-02-24 09:18:58.871 2024-02-24 09:18:58.871 1000 FEE 437002 21269 6052092 2024-02-24 09:20:31.303 2024-02-24 09:20:31.303 1000 FEE 437005 18005 6052100 2024-02-24 09:22:15.25 2024-02-24 09:22:15.25 1000 FEE 437007 14308 6052124 2024-02-24 09:28:09.256 2024-02-24 09:28:09.256 1000 FEE 437011 1803 6052166 2024-02-24 09:39:25.956 2024-02-24 09:39:25.956 1000 FEE 437021 20706 6052222 2024-02-24 09:53:56.061 2024-02-24 09:53:56.061 10000 FEE 436197 15052 6052223 2024-02-24 09:53:56.061 2024-02-24 09:53:56.061 90000 TIP 436197 21247 6052250 2024-02-24 10:11:07.917 2024-02-24 10:11:07.917 3000 FEE 436709 7869 6052251 2024-02-24 10:11:07.917 2024-02-24 10:11:07.917 27000 TIP 436709 1310 6052257 2024-02-24 10:15:15.768 2024-02-24 10:15:15.768 1000 FEE 437029 4128 6052258 2024-02-24 10:15:44.512 2024-02-24 10:15:44.512 1000 FEE 437030 16724 6052261 2024-02-24 10:17:05.812 2024-02-24 10:17:05.812 15000 FEE 437031 4654 6051454 2024-02-24 06:37:34.999 2024-02-24 06:37:34.999 900 FEE 436894 18877 6051455 2024-02-24 06:37:34.999 2024-02-24 06:37:34.999 8100 TIP 436894 14195 6051466 2024-02-24 06:41:40.161 2024-02-24 06:41:40.161 1000 FEE 436946 2338 6051470 2024-02-24 06:42:42.743 2024-02-24 06:42:42.743 2100 FEE 436683 17713 6051471 2024-02-24 06:42:42.743 2024-02-24 06:42:42.743 18900 TIP 436683 21303 6051480 2024-02-24 06:45:14.996 2024-02-24 06:45:14.996 2100 FEE 435944 21303 6051481 2024-02-24 06:45:14.996 2024-02-24 06:45:14.996 18900 TIP 435944 769 6051482 2024-02-24 06:45:39.69 2024-02-24 06:45:39.69 1000 FEE 436948 999 6051487 2024-02-24 06:47:53.369 2024-02-24 06:47:53.369 2100 FEE 436839 15890 6051488 2024-02-24 06:47:53.369 2024-02-24 06:47:53.369 18900 TIP 436839 5359 6051500 2024-02-24 06:52:17.634 2024-02-24 06:52:17.634 2100 FEE 436820 19909 6051501 2024-02-24 06:52:17.634 2024-02-24 06:52:17.634 18900 TIP 436820 11942 6051505 2024-02-24 06:53:27.028 2024-02-24 06:53:27.028 2100 FEE 436827 620 6051506 2024-02-24 06:53:27.028 2024-02-24 06:53:27.028 18900 TIP 436827 739 6051541 2024-02-24 07:09:02.511 2024-02-24 07:09:02.511 1000 FEE 436952 3709 6051549 2024-02-24 07:09:38.045 2024-02-24 07:09:38.045 100 FEE 436923 13217 6051550 2024-02-24 07:09:38.045 2024-02-24 07:09:38.045 900 TIP 436923 18016 6051577 2024-02-24 07:09:44.283 2024-02-24 07:09:44.283 100 FEE 436923 7654 6051578 2024-02-24 07:09:44.283 2024-02-24 07:09:44.283 900 TIP 436923 10549 6051597 2024-02-24 07:17:58.494 2024-02-24 07:17:58.494 2500 FEE 436859 17714 6051598 2024-02-24 07:17:58.494 2024-02-24 07:17:58.494 22500 TIP 436859 899 6051609 2024-02-24 07:17:59.789 2024-02-24 07:17:59.789 2500 FEE 436859 21369 6051610 2024-02-24 07:17:59.789 2024-02-24 07:17:59.789 22500 TIP 436859 3360 6051619 2024-02-24 07:18:00.818 2024-02-24 07:18:00.818 2500 FEE 436859 16357 6051620 2024-02-24 07:18:00.818 2024-02-24 07:18:00.818 22500 TIP 436859 21323 6051629 2024-02-24 07:18:04.128 2024-02-24 07:18:04.128 2500 FEE 436851 21619 6051630 2024-02-24 07:18:04.128 2024-02-24 07:18:04.128 22500 TIP 436851 20674 6051648 2024-02-24 07:18:12.744 2024-02-24 07:18:12.744 2500 FEE 436711 19622 6051649 2024-02-24 07:18:12.744 2024-02-24 07:18:12.744 22500 TIP 436711 21036 6051656 2024-02-24 07:18:13.66 2024-02-24 07:18:13.66 2500 FEE 436711 21083 6051657 2024-02-24 07:18:13.66 2024-02-24 07:18:13.66 22500 TIP 436711 2514 6051658 2024-02-24 07:18:13.891 2024-02-24 07:18:13.891 2500 FEE 436711 9335 6051659 2024-02-24 07:18:13.891 2024-02-24 07:18:13.891 22500 TIP 436711 700 6051676 2024-02-24 07:18:16.544 2024-02-24 07:18:16.544 2500 FEE 436711 5637 6051677 2024-02-24 07:18:16.544 2024-02-24 07:18:16.544 22500 TIP 436711 1733 6051688 2024-02-24 07:23:41.113 2024-02-24 07:23:41.113 2500 FEE 436945 9339 6051689 2024-02-24 07:23:41.113 2024-02-24 07:23:41.113 22500 TIP 436945 19905 6051695 2024-02-24 07:26:05.887 2024-02-24 07:26:05.887 4200 FEE 436544 19087 6051696 2024-02-24 07:26:05.887 2024-02-24 07:26:05.887 37800 TIP 436544 1224 6051697 2024-02-24 07:26:43.078 2024-02-24 07:26:43.078 2500 FEE 436935 9329 6051698 2024-02-24 07:26:43.078 2024-02-24 07:26:43.078 22500 TIP 436935 14280 6051699 2024-02-24 07:26:43.327 2024-02-24 07:26:43.327 2500 FEE 436935 10979 6051700 2024-02-24 07:26:43.327 2024-02-24 07:26:43.327 22500 TIP 436935 18909 6051715 2024-02-24 07:31:35.686 2024-02-24 07:31:35.686 2100 FEE 436566 5752 6051716 2024-02-24 07:31:35.686 2024-02-24 07:31:35.686 18900 TIP 436566 2022 6051765 2024-02-24 07:51:08.412 2024-02-24 07:51:08.412 5000 FEE 436817 16351 6051766 2024-02-24 07:51:08.412 2024-02-24 07:51:08.412 45000 TIP 436817 776 6051830 2024-02-24 08:14:49.67 2024-02-24 08:14:49.67 1000 FEE 436723 18310 6051831 2024-02-24 08:14:49.67 2024-02-24 08:14:49.67 9000 TIP 436723 1617 6051844 2024-02-24 08:18:39.254 2024-02-24 08:18:39.254 2100 FEE 436720 10818 6051845 2024-02-24 08:18:39.254 2024-02-24 08:18:39.254 18900 TIP 436720 5758 6051850 2024-02-24 08:18:43.995 2024-02-24 08:18:43.995 2100 FEE 436669 18640 6051851 2024-02-24 08:18:43.995 2024-02-24 08:18:43.995 18900 TIP 436669 14663 6051874 2024-02-24 08:18:56.567 2024-02-24 08:18:56.567 2100 FEE 436493 20454 6051875 2024-02-24 08:18:56.567 2024-02-24 08:18:56.567 18900 TIP 436493 17494 6051896 2024-02-24 08:22:10.049 2024-02-24 08:22:10.049 21000 FEE 436977 21338 6051906 2024-02-24 08:23:01.361 2024-02-24 08:23:01.361 50000 FEE 430674 13174 6051907 2024-02-24 08:23:01.361 2024-02-24 08:23:01.361 450000 TIP 430674 630 6051926 2024-02-24 08:30:10.145 2024-02-24 08:30:10.145 1000 FEE 436982 16296 6051937 2024-02-24 08:34:58.347 2024-02-24 08:34:58.347 100 FEE 436752 19142 6051938 2024-02-24 08:34:58.347 2024-02-24 08:34:58.347 900 TIP 436752 16956 6051942 2024-02-24 08:35:34.541 2024-02-24 08:35:34.541 100 FEE 436683 18984 6051943 2024-02-24 08:35:34.541 2024-02-24 08:35:34.541 900 TIP 436683 7587 6051965 2024-02-24 08:41:26.593 2024-02-24 08:41:26.593 2100 FEE 436948 20514 6051966 2024-02-24 08:41:26.593 2024-02-24 08:41:26.593 18900 TIP 436948 10484 6052033 2024-02-24 09:02:31.54 2024-02-24 09:02:31.54 500 FEE 436566 19770 6052034 2024-02-24 09:02:31.54 2024-02-24 09:02:31.54 4500 TIP 436566 7818 6052050 2024-02-24 09:08:49.164 2024-02-24 09:08:49.164 100000 FEE 436995 5173 6052068 2024-02-24 09:10:35.952 2024-02-24 09:10:35.952 1000 FEE 436999 5387 6052070 2024-02-24 09:11:20.761 2024-02-24 09:11:20.761 1000 FEE 435016 20687 6052071 2024-02-24 09:11:20.761 2024-02-24 09:11:20.761 9000 TIP 435016 4076 6052091 2024-02-24 09:20:13.938 2024-02-24 09:20:13.938 1000 FEE 437004 5085 6052110 2024-02-24 09:24:26.044 2024-02-24 09:24:26.044 2500 FEE 436926 21469 6052111 2024-02-24 09:24:26.044 2024-02-24 09:24:26.044 22500 TIP 436926 18310 6052117 2024-02-24 09:26:52.11 2024-02-24 09:26:52.11 2800 FEE 436986 21275 6052118 2024-02-24 09:26:52.11 2024-02-24 09:26:52.11 25200 TIP 436986 18829 6052121 2024-02-24 09:27:25.279 2024-02-24 09:27:25.279 2800 FEE 436933 18601 6052122 2024-02-24 09:27:25.279 2024-02-24 09:27:25.279 25200 TIP 436933 18219 6052125 2024-02-24 09:29:02.278 2024-02-24 09:29:02.278 2800 FEE 436943 3304 6052126 2024-02-24 09:29:02.278 2024-02-24 09:29:02.278 25200 TIP 436943 15544 6052135 2024-02-24 09:31:17.051 2024-02-24 09:31:17.051 2800 FEE 436924 712 6052136 2024-02-24 09:31:17.051 2024-02-24 09:31:17.051 25200 TIP 436924 695 6052138 2024-02-24 09:31:48.549 2024-02-24 09:31:48.549 100 FEE 436281 642 6052139 2024-02-24 09:31:48.549 2024-02-24 09:31:48.549 900 TIP 436281 17592 6052144 2024-02-24 09:32:25.688 2024-02-24 09:32:25.688 1000 FEE 437016 18717 6052206 2024-02-24 09:48:29.681 2024-02-24 09:48:29.681 100 FEE 436935 13759 6052207 2024-02-24 09:48:29.681 2024-02-24 09:48:29.681 900 TIP 436935 20412 6052227 2024-02-24 09:55:13.731 2024-02-24 09:55:13.731 2100 FEE 437026 20596 6052228 2024-02-24 09:55:13.731 2024-02-24 09:55:13.731 18900 TIP 437026 1845 6052231 2024-02-24 09:56:23.877 2024-02-24 09:56:23.877 2100 FEE 437025 20523 6052232 2024-02-24 09:56:23.877 2024-02-24 09:56:23.877 18900 TIP 437025 6687 6052262 2024-02-24 10:17:13.779 2024-02-24 10:17:13.779 1000 FEE 437031 4819 6052263 2024-02-24 10:17:13.779 2024-02-24 10:17:13.779 9000 TIP 437031 21271 6052278 2024-02-24 10:22:44.685 2024-02-24 10:22:44.685 4000 FEE 436993 17157 6052279 2024-02-24 10:22:44.685 2024-02-24 10:22:44.685 36000 TIP 436993 2640 6052319 2024-02-24 10:34:22.833 2024-02-24 10:34:22.833 1000 FEE 436683 21463 6052320 2024-02-24 10:34:22.833 2024-02-24 10:34:22.833 9000 TIP 436683 1814 6052321 2024-02-24 10:34:23.11 2024-02-24 10:34:23.11 1000 FEE 436669 1310 6052322 2024-02-24 10:34:23.11 2024-02-24 10:34:23.11 9000 TIP 436669 16542 6052341 2024-02-24 10:34:27.734 2024-02-24 10:34:27.734 1000 FEE 436493 18473 6052342 2024-02-24 10:34:27.734 2024-02-24 10:34:27.734 9000 TIP 436493 18994 6052395 2024-02-24 10:35:53.119 2024-02-24 10:35:53.119 1000 FEE 437035 1007 6052396 2024-02-24 10:35:53.119 2024-02-24 10:35:53.119 9000 TIP 437035 5703 6052409 2024-02-24 10:35:57.941 2024-02-24 10:35:57.941 1000 FEE 437008 10536 6052410 2024-02-24 10:35:57.941 2024-02-24 10:35:57.941 9000 TIP 437008 1534 6052421 2024-02-24 10:36:00.75 2024-02-24 10:36:00.75 1000 FEE 436981 19863 6051528 2024-02-24 07:05:04.675 2024-02-24 07:05:04.675 1000 STREAM 141924 1584 6051538 2024-02-24 07:08:04.724 2024-02-24 07:08:04.724 1000 STREAM 141924 3706 6051589 2024-02-24 07:12:04.787 2024-02-24 07:12:04.787 1000 STREAM 141924 18178 6051592 2024-02-24 07:15:04.829 2024-02-24 07:15:04.829 1000 STREAM 141924 18124 6051594 2024-02-24 07:17:04.874 2024-02-24 07:17:04.874 1000 STREAM 141924 3400 6051678 2024-02-24 07:19:04.903 2024-02-24 07:19:04.903 1000 STREAM 141924 4059 6051686 2024-02-24 07:23:04.964 2024-02-24 07:23:04.964 1000 STREAM 141924 9276 6051693 2024-02-24 07:25:04.994 2024-02-24 07:25:04.994 1000 STREAM 141924 18008 6051701 2024-02-24 07:27:05.015 2024-02-24 07:27:05.015 1000 STREAM 141924 9992 6051705 2024-02-24 07:29:05.061 2024-02-24 07:29:05.061 1000 STREAM 141924 17275 6051709 2024-02-24 07:30:05.116 2024-02-24 07:30:05.116 1000 STREAM 141924 3506 6051712 2024-02-24 07:31:05.081 2024-02-24 07:31:05.081 1000 STREAM 141924 997 6051721 2024-02-24 07:34:05.123 2024-02-24 07:34:05.123 1000 STREAM 141924 16970 6051729 2024-02-24 07:37:05.163 2024-02-24 07:37:05.163 1000 STREAM 141924 1697 6051739 2024-02-24 07:38:05.17 2024-02-24 07:38:05.17 1000 STREAM 141924 8506 6051742 2024-02-24 07:39:05.184 2024-02-24 07:39:05.184 1000 STREAM 141924 21444 6051752 2024-02-24 07:43:05.279 2024-02-24 07:43:05.279 1000 STREAM 141924 4574 6051757 2024-02-24 07:45:05.353 2024-02-24 07:45:05.353 1000 STREAM 141924 21591 6051760 2024-02-24 07:47:05.341 2024-02-24 07:47:05.341 1000 STREAM 141924 19322 6051763 2024-02-24 07:50:05.433 2024-02-24 07:50:05.433 1000 STREAM 141924 19463 6051790 2024-02-24 07:54:05.468 2024-02-24 07:54:05.468 1000 STREAM 141924 21485 6051795 2024-02-24 07:57:05.518 2024-02-24 07:57:05.518 1000 STREAM 141924 7760 6051799 2024-02-24 07:59:05.565 2024-02-24 07:59:05.565 1000 STREAM 141924 15146 6051801 2024-02-24 08:00:05.705 2024-02-24 08:00:05.705 1000 STREAM 141924 9183 6116707 2024-02-29 18:36:36.065 2024-02-29 18:36:36.065 18900 TIP 443617 17042 6116710 2024-02-29 18:36:42.183 2024-02-29 18:36:42.183 2100 FEE 443683 17050 6116711 2024-02-29 18:36:42.183 2024-02-29 18:36:42.183 18900 TIP 443683 8242 6116716 2024-02-29 18:36:48.382 2024-02-29 18:36:48.382 2100 FEE 443593 9099 6116717 2024-02-29 18:36:48.382 2024-02-29 18:36:48.382 18900 TIP 443593 19263 6116720 2024-02-29 18:36:54.15 2024-02-29 18:36:54.15 2100 FEE 443745 20201 6116721 2024-02-29 18:36:54.15 2024-02-29 18:36:54.15 18900 TIP 443745 16447 6116741 2024-02-29 18:37:33.793 2024-02-29 18:37:33.793 1000 FEE 444029 21503 6116772 2024-02-29 18:39:44.874 2024-02-29 18:39:44.874 1000 FEE 444034 5112 6116779 2024-02-29 18:39:59.446 2024-02-29 18:39:59.446 100 FEE 443756 7668 6116780 2024-02-29 18:39:59.446 2024-02-29 18:39:59.446 900 TIP 443756 18705 6116785 2024-02-29 18:40:29.037 2024-02-29 18:40:29.037 2100 FEE 443609 5565 6116786 2024-02-29 18:40:29.037 2024-02-29 18:40:29.037 18900 TIP 443609 20340 6116823 2024-02-29 18:42:02.024 2024-02-29 18:42:02.024 1000 FEE 444042 13046 6116824 2024-02-29 18:42:02.865 2024-02-29 18:42:02.865 500 FEE 444038 803 6116825 2024-02-29 18:42:02.865 2024-02-29 18:42:02.865 4500 TIP 444038 11417 6116898 2024-02-29 18:46:03.299 2024-02-29 18:46:03.299 500 FEE 443745 5637 6116899 2024-02-29 18:46:03.299 2024-02-29 18:46:03.299 4500 TIP 443745 9078 6116935 2024-02-29 18:47:25.915 2024-02-29 18:47:25.915 900 FEE 443915 9341 6116936 2024-02-29 18:47:25.915 2024-02-29 18:47:25.915 8100 TIP 443915 11450 6116943 2024-02-29 18:47:58.263 2024-02-29 18:47:58.263 100 FEE 444015 1603 6116944 2024-02-29 18:47:58.263 2024-02-29 18:47:58.263 900 TIP 444015 17798 6116947 2024-02-29 18:47:59.283 2024-02-29 18:47:59.283 9000 FEE 444015 20182 6116948 2024-02-29 18:47:59.283 2024-02-29 18:47:59.283 81000 TIP 444015 9078 6116949 2024-02-29 18:47:59.32 2024-02-29 18:47:59.32 1000 FEE 444058 10821 6116965 2024-02-29 18:49:21.426 2024-02-29 18:49:21.426 1000 FEE 440692 19809 6116966 2024-02-29 18:49:21.426 2024-02-29 18:49:21.426 9000 TIP 440692 1740 6116971 2024-02-29 18:49:32.345 2024-02-29 18:49:32.345 1000 FEE 444056 20094 6116972 2024-02-29 18:49:32.345 2024-02-29 18:49:32.345 9000 TIP 444056 787 6116973 2024-02-29 18:49:39.85 2024-02-29 18:49:39.85 2100 FEE 443958 2537 6116974 2024-02-29 18:49:39.85 2024-02-29 18:49:39.85 18900 TIP 443958 21389 6117027 2024-02-29 18:50:59.234 2024-02-29 18:50:59.234 1000 FEE 441011 1817 6117028 2024-02-29 18:50:59.234 2024-02-29 18:50:59.234 9000 TIP 441011 19813 6117045 2024-02-29 18:52:32.838 2024-02-29 18:52:32.838 1000 FEE 444061 16667 6117046 2024-02-29 18:52:45.646 2024-02-29 18:52:45.646 1000 FEE 441181 17984 6117047 2024-02-29 18:52:45.646 2024-02-29 18:52:45.646 9000 TIP 441181 11999 6117050 2024-02-29 18:52:47.784 2024-02-29 18:52:47.784 1000 FEE 441181 20757 6117051 2024-02-29 18:52:47.784 2024-02-29 18:52:47.784 9000 TIP 441181 5565 6117060 2024-02-29 18:52:48.663 2024-02-29 18:52:48.663 1000 FEE 441181 16965 6117061 2024-02-29 18:52:48.663 2024-02-29 18:52:48.663 9000 TIP 441181 21271 6117085 2024-02-29 18:53:32.418 2024-02-29 18:53:32.418 1000 FEE 444064 8570 6117171 2024-02-29 18:58:07.704 2024-02-29 18:58:07.704 1700 FEE 444035 14037 6117172 2024-02-29 18:58:07.704 2024-02-29 18:58:07.704 15300 TIP 444035 16284 6117195 2024-02-29 18:58:53.017 2024-02-29 18:58:53.017 1000 FEE 444079 16769 6117201 2024-02-29 18:59:15.374 2024-02-29 18:59:15.374 100 FEE 444044 6268 6117202 2024-02-29 18:59:15.374 2024-02-29 18:59:15.374 900 TIP 444044 20168 6051679 2024-02-24 07:19:48.685 2024-02-24 07:19:48.685 1000 POLL 436759 18453 6051735 2024-02-24 07:37:44.863 2024-02-24 07:37:44.863 1000 FEE 436827 21136 6051736 2024-02-24 07:37:44.863 2024-02-24 07:37:44.863 9000 TIP 436827 20153 6051753 2024-02-24 07:43:55.962 2024-02-24 07:43:55.962 1000 FEE 436408 19005 6051754 2024-02-24 07:43:55.962 2024-02-24 07:43:55.962 9000 TIP 436408 9669 6051771 2024-02-24 07:51:52.904 2024-02-24 07:51:52.904 100 FEE 436954 21441 6051772 2024-02-24 07:51:52.904 2024-02-24 07:51:52.904 900 TIP 436954 15484 6051775 2024-02-24 07:51:53.753 2024-02-24 07:51:53.753 9000 FEE 436954 20201 6051776 2024-02-24 07:51:53.753 2024-02-24 07:51:53.753 81000 TIP 436954 16513 6051815 2024-02-24 08:06:08.122 2024-02-24 08:06:08.122 3000 FEE 436967 692 6051816 2024-02-24 08:06:08.122 2024-02-24 08:06:08.122 27000 TIP 436967 7869 6051829 2024-02-24 08:14:12.074 2024-02-24 08:14:12.074 1000 FEE 436975 10016 6051882 2024-02-24 08:19:03.042 2024-02-24 08:19:03.042 2100 FEE 436593 5578 6051883 2024-02-24 08:19:03.042 2024-02-24 08:19:03.042 18900 TIP 436593 9330 6051897 2024-02-24 08:22:12.53 2024-02-24 08:22:12.53 2000 FEE 436753 880 6051898 2024-02-24 08:22:12.53 2024-02-24 08:22:12.53 18000 TIP 436753 749 6051919 2024-02-24 08:27:12.26 2024-02-24 08:27:12.26 1000 FEE 436979 7913 6051931 2024-02-24 08:33:43.873 2024-02-24 08:33:43.873 0 FEE 436979 11417 6051948 2024-02-24 08:35:57.987 2024-02-24 08:35:57.987 100 FEE 436556 675 6051949 2024-02-24 08:35:57.987 2024-02-24 08:35:57.987 900 TIP 436556 20502 6051954 2024-02-24 08:35:58.027 2024-02-24 08:35:58.027 100 FEE 436556 6268 6051955 2024-02-24 08:35:58.027 2024-02-24 08:35:58.027 900 TIP 436556 1650 6051997 2024-02-24 08:56:01.927 2024-02-24 08:56:01.927 10000 FEE 436985 15690 6052015 2024-02-24 09:00:37.312 2024-02-24 09:00:37.312 800 FEE 436560 6765 6052016 2024-02-24 09:00:37.312 2024-02-24 09:00:37.312 7200 TIP 436560 15491 6052027 2024-02-24 09:02:17.076 2024-02-24 09:02:17.076 200 FEE 436985 2832 6052028 2024-02-24 09:02:17.076 2024-02-24 09:02:17.076 1800 TIP 436985 1726 6052039 2024-02-24 09:03:20.622 2024-02-24 09:03:20.622 1000 FEE 436989 18076 6052063 2024-02-24 09:10:25.908 2024-02-24 09:10:25.908 2100 FEE 436449 7185 6052064 2024-02-24 09:10:25.908 2024-02-24 09:10:25.908 18900 TIP 436449 16848 6052078 2024-02-24 09:15:43.217 2024-02-24 09:15:43.217 2100 FEE 436556 2206 6052079 2024-02-24 09:15:43.217 2024-02-24 09:15:43.217 18900 TIP 436556 795 6052101 2024-02-24 09:22:16.759 2024-02-24 09:22:16.759 10000 FEE 437008 16536 6052105 2024-02-24 09:23:19.183 2024-02-24 09:23:19.183 2100 FEE 436901 18368 6052106 2024-02-24 09:23:19.183 2024-02-24 09:23:19.183 18900 TIP 436901 21562 6052112 2024-02-24 09:24:49.512 2024-02-24 09:24:49.512 200 FEE 437003 21042 6052113 2024-02-24 09:24:49.512 2024-02-24 09:24:49.512 1800 TIP 437003 11220 6052160 2024-02-24 09:36:11.689 2024-02-24 09:36:11.689 1000 FEE 437015 19992 6052161 2024-02-24 09:36:11.689 2024-02-24 09:36:11.689 9000 TIP 437015 12562 6052274 2024-02-24 10:22:11.192 2024-02-24 10:22:11.192 1000 FEE 436556 2347 6052275 2024-02-24 10:22:11.192 2024-02-24 10:22:11.192 9000 TIP 436556 647 6052305 2024-02-24 10:26:54.311 2024-02-24 10:26:54.311 21000 FEE 437035 18745 6052379 2024-02-24 10:35:35.687 2024-02-24 10:35:35.687 1000 FEE 436454 19502 6052380 2024-02-24 10:35:35.687 2024-02-24 10:35:35.687 9000 TIP 436454 1833 6052389 2024-02-24 10:35:46.355 2024-02-24 10:35:46.355 1000 FEE 436256 4391 6052390 2024-02-24 10:35:46.355 2024-02-24 10:35:46.355 9000 TIP 436256 21262 6052397 2024-02-24 10:35:53.399 2024-02-24 10:35:53.399 1000 FEE 437034 4166 6052398 2024-02-24 10:35:53.399 2024-02-24 10:35:53.399 9000 TIP 437034 17798 6052403 2024-02-24 10:35:54.206 2024-02-24 10:35:54.206 1000 FEE 437031 21585 6052404 2024-02-24 10:35:54.206 2024-02-24 10:35:54.206 9000 TIP 437031 5112 6052423 2024-02-24 10:36:02.045 2024-02-24 10:36:02.045 1000 FEE 436980 19333 6052424 2024-02-24 10:36:02.045 2024-02-24 10:36:02.045 9000 TIP 436980 20551 6052427 2024-02-24 10:36:02.566 2024-02-24 10:36:02.566 1000 FEE 436969 16543 6052428 2024-02-24 10:36:02.566 2024-02-24 10:36:02.566 9000 TIP 436969 18243 6052439 2024-02-24 10:36:26.084 2024-02-24 10:36:26.084 1000 FEE 436934 16154 6052440 2024-02-24 10:36:26.084 2024-02-24 10:36:26.084 9000 TIP 436934 20799 6052465 2024-02-24 10:36:32.331 2024-02-24 10:36:32.331 1000 FEE 436812 946 6052466 2024-02-24 10:36:32.331 2024-02-24 10:36:32.331 9000 TIP 436812 20245 6052488 2024-02-24 10:41:45.301 2024-02-24 10:41:45.301 1000 FEE 437039 3706 6052518 2024-02-24 10:56:50.228 2024-02-24 10:56:50.228 399900 FEE 436752 16536 6052519 2024-02-24 10:56:50.228 2024-02-24 10:56:50.228 3599100 TIP 436752 21233 6052568 2024-02-24 11:14:56.872 2024-02-24 11:14:56.872 1000 FEE 436750 10536 6052569 2024-02-24 11:14:56.872 2024-02-24 11:14:56.872 9000 TIP 436750 4079 6052599 2024-02-24 11:24:00.219 2024-02-24 11:24:00.219 2100 FEE 437008 16229 6052600 2024-02-24 11:24:00.219 2024-02-24 11:24:00.219 18900 TIP 437008 20157 6052623 2024-02-24 11:31:08.42 2024-02-24 11:31:08.42 2100 FEE 437043 20585 6052624 2024-02-24 11:31:08.42 2024-02-24 11:31:08.42 18900 TIP 437043 6515 6052635 2024-02-24 11:35:01.427 2024-02-24 11:35:01.427 4000 FEE 437049 21603 6052636 2024-02-24 11:35:01.427 2024-02-24 11:35:01.427 36000 TIP 437049 1552 6052642 2024-02-24 11:36:14.647 2024-02-24 11:36:14.647 100 FEE 436560 8045 6052643 2024-02-24 11:36:14.647 2024-02-24 11:36:14.647 900 TIP 436560 1970 6052649 2024-02-24 11:37:06.996 2024-02-24 11:37:06.996 1000 FEE 437053 4502 6052650 2024-02-24 11:37:06.996 2024-02-24 11:37:06.996 9000 TIP 437053 6573 6052660 2024-02-24 11:39:18.615 2024-02-24 11:39:18.615 1000 FEE 436987 9341 6052661 2024-02-24 11:39:18.615 2024-02-24 11:39:18.615 9000 TIP 436987 10818 6052664 2024-02-24 11:39:27.7 2024-02-24 11:39:27.7 10000 FEE 437033 963 6052665 2024-02-24 11:39:27.7 2024-02-24 11:39:27.7 90000 TIP 437033 16929 6052701 2024-02-24 11:49:32.995 2024-02-24 11:49:32.995 1000 FEE 436916 8448 6052702 2024-02-24 11:49:32.995 2024-02-24 11:49:32.995 9000 TIP 436916 9655 6052737 2024-02-24 11:54:21.052 2024-02-24 11:54:21.052 100 FEE 436752 10359 6052738 2024-02-24 11:54:21.052 2024-02-24 11:54:21.052 900 TIP 436752 21521 6052761 2024-02-24 12:03:36.791 2024-02-24 12:03:36.791 1000 FEE 437069 902 6052771 2024-02-24 12:05:34.663 2024-02-24 12:05:34.663 1000 FEE 437073 21332 6052783 2024-02-24 12:07:55.03 2024-02-24 12:07:55.03 1000 FEE 437075 19639 6052785 2024-02-24 12:08:27.65 2024-02-24 12:08:27.65 1000 FEE 437076 1236 6052796 2024-02-24 12:12:04.848 2024-02-24 12:12:04.848 100 FEE 437077 940 6052797 2024-02-24 12:12:04.848 2024-02-24 12:12:04.848 900 TIP 437077 20825 6052829 2024-02-24 12:23:07.107 2024-02-24 12:23:07.107 1000 FEE 437085 16354 6052831 2024-02-24 12:23:24.868 2024-02-24 12:23:24.868 0 FEE 437081 18865 6052834 2024-02-24 12:23:38.962 2024-02-24 12:23:38.962 0 FEE 437081 10591 6051745 2024-02-24 07:40:27.081 2024-02-24 07:40:27.081 18900 TIP 436683 694 6051749 2024-02-24 07:41:57.472 2024-02-24 07:41:57.472 1000 FEE 436963 2640 6051780 2024-02-24 07:52:15.585 2024-02-24 07:52:15.585 900 FEE 436926 21201 6051781 2024-02-24 07:52:15.585 2024-02-24 07:52:15.585 8100 TIP 436926 725 6051784 2024-02-24 07:52:39.205 2024-02-24 07:52:39.205 200 FEE 436895 20782 6051785 2024-02-24 07:52:39.205 2024-02-24 07:52:39.205 1800 TIP 436895 8423 6051804 2024-02-24 08:01:50.198 2024-02-24 08:01:50.198 1000 FEE 436971 18473 6051821 2024-02-24 08:09:20.016 2024-02-24 08:09:20.016 10000 FEE 436750 19533 6051822 2024-02-24 08:09:20.016 2024-02-24 08:09:20.016 90000 TIP 436750 21274 6051832 2024-02-24 08:14:50.52 2024-02-24 08:14:50.52 1000 FEE 436723 21274 6051833 2024-02-24 08:14:50.52 2024-02-24 08:14:50.52 9000 TIP 436723 1576 6051848 2024-02-24 08:18:43.1 2024-02-24 08:18:43.1 2100 FEE 436683 18897 6051849 2024-02-24 08:18:43.1 2024-02-24 08:18:43.1 18900 TIP 436683 20525 6051854 2024-02-24 08:18:46.955 2024-02-24 08:18:46.955 2100 FEE 436837 19524 6051855 2024-02-24 08:18:46.955 2024-02-24 08:18:46.955 18900 TIP 436837 5829 6051856 2024-02-24 08:18:47.234 2024-02-24 08:18:47.234 2100 FEE 436827 691 6051857 2024-02-24 08:18:47.234 2024-02-24 08:18:47.234 18900 TIP 436827 11873 6051899 2024-02-24 08:22:13.156 2024-02-24 08:22:13.156 2000 FEE 436753 19016 6051900 2024-02-24 08:22:13.156 2024-02-24 08:22:13.156 18000 TIP 436753 21291 6051903 2024-02-24 08:22:14.699 2024-02-24 08:22:14.699 2000 FEE 436720 9874 6051904 2024-02-24 08:22:14.699 2024-02-24 08:22:14.699 18000 TIP 436720 5761 6051905 2024-02-24 08:22:42.312 2024-02-24 08:22:42.312 1000 FEE 436978 8729 6051922 2024-02-24 08:28:27.575 2024-02-24 08:28:27.575 21000 FEE 436980 19541 6051950 2024-02-24 08:35:57.996 2024-02-24 08:35:57.996 100 FEE 436556 20993 6051951 2024-02-24 08:35:57.996 2024-02-24 08:35:57.996 900 TIP 436556 4173 6051963 2024-02-24 08:41:22.649 2024-02-24 08:41:22.649 1000 FEE 436750 15409 6051964 2024-02-24 08:41:22.649 2024-02-24 08:41:22.649 9000 TIP 436750 6430 6051978 2024-02-24 08:45:51.813 2024-02-24 08:45:51.813 1000 FEE 434333 18336 6051979 2024-02-24 08:45:51.813 2024-02-24 08:45:51.813 9000 TIP 434333 4322 6052022 2024-02-24 09:01:35.868 2024-02-24 09:01:35.868 500 FEE 436750 913 6052023 2024-02-24 09:01:35.868 2024-02-24 09:01:35.868 4500 TIP 436750 3439 6052037 2024-02-24 09:02:42.056 2024-02-24 09:02:42.056 1000 FEE 436988 10112 6052066 2024-02-24 09:10:30.972 2024-02-24 09:10:30.972 2100 FEE 436817 10549 6052067 2024-02-24 09:10:30.972 2024-02-24 09:10:30.972 18900 TIP 436817 19117 6052093 2024-02-24 09:20:37.174 2024-02-24 09:20:37.174 100 FEE 436994 669 6052094 2024-02-24 09:20:37.174 2024-02-24 09:20:37.174 900 TIP 436994 822 6052102 2024-02-24 09:22:32.87 2024-02-24 09:22:32.87 1000 FEE 434065 11417 6052103 2024-02-24 09:22:32.87 2024-02-24 09:22:32.87 9000 TIP 434065 17064 6052119 2024-02-24 09:27:02.348 2024-02-24 09:27:02.348 1000 FEE 437010 21417 6052158 2024-02-24 09:35:37.225 2024-02-24 09:35:37.225 1000 FEE 437019 9843 6052170 2024-02-24 09:42:32.104 2024-02-24 09:42:32.104 100 FEE 436803 7877 6052171 2024-02-24 09:42:32.104 2024-02-24 09:42:32.104 900 TIP 436803 9107 6052172 2024-02-24 09:42:32.725 2024-02-24 09:42:32.725 100 FEE 436803 797 6052173 2024-02-24 09:42:32.725 2024-02-24 09:42:32.725 900 TIP 436803 2525 6052210 2024-02-24 09:50:37.997 2024-02-24 09:50:37.997 5000 FEE 436998 19394 6052211 2024-02-24 09:50:37.997 2024-02-24 09:50:37.997 45000 TIP 436998 9345 6052217 2024-02-24 09:51:47.552 2024-02-24 09:51:47.552 10000 FEE 436435 7654 6052218 2024-02-24 09:51:47.552 2024-02-24 09:51:47.552 90000 TIP 436435 15196 6052221 2024-02-24 09:53:51.606 2024-02-24 09:53:51.606 10000 FEE 437025 635 6052267 2024-02-24 10:18:59.88 2024-02-24 10:18:59.88 21000 FEE 437032 15088 6052292 2024-02-24 10:24:26.927 2024-02-24 10:24:26.927 50000 FEE 437033 750 6052297 2024-02-24 10:25:24.572 2024-02-24 10:25:24.572 200 FEE 436683 681 6052298 2024-02-24 10:25:24.572 2024-02-24 10:25:24.572 1800 TIP 436683 17321 6052329 2024-02-24 10:34:24.889 2024-02-24 10:34:24.889 1000 FEE 436560 8385 6052330 2024-02-24 10:34:24.889 2024-02-24 10:34:24.889 9000 TIP 436560 6383 6052354 2024-02-24 10:34:40.111 2024-02-24 10:34:40.111 1000 FEE 436820 1105 6052355 2024-02-24 10:34:40.111 2024-02-24 10:34:40.111 9000 TIP 436820 21271 6052357 2024-02-24 10:35:24.127 2024-02-24 10:35:24.127 1000 FEE 436325 20087 6052358 2024-02-24 10:35:24.127 2024-02-24 10:35:24.127 9000 TIP 436325 21155 6052371 2024-02-24 10:35:33.35 2024-02-24 10:35:33.35 1000 FEE 436304 11561 6052372 2024-02-24 10:35:33.35 2024-02-24 10:35:33.35 9000 TIP 436304 11670 6052387 2024-02-24 10:35:45.052 2024-02-24 10:35:45.052 1000 FEE 436244 16788 6052388 2024-02-24 10:35:45.052 2024-02-24 10:35:45.052 9000 TIP 436244 673 6052393 2024-02-24 10:35:48.933 2024-02-24 10:35:48.933 1000 FEE 436426 19633 6052394 2024-02-24 10:35:48.933 2024-02-24 10:35:48.933 9000 TIP 436426 663 6052401 2024-02-24 10:35:53.939 2024-02-24 10:35:53.939 1000 FEE 437032 19449 6052402 2024-02-24 10:35:53.939 2024-02-24 10:35:53.939 9000 TIP 437032 20222 6051777 2024-02-24 07:52:02.127 2024-02-24 07:52:02.127 1000 STREAM 141924 16124 6116718 2024-02-29 18:36:52.206 2024-02-29 18:36:52.206 2100 FEE 443667 716 6116719 2024-02-29 18:36:52.206 2024-02-29 18:36:52.206 18900 TIP 443667 2029 6116727 2024-02-29 18:36:57.169 2024-02-29 18:36:57.169 2100 FEE 443951 18956 6116728 2024-02-29 18:36:57.169 2024-02-29 18:36:57.169 18900 TIP 443951 19375 6116761 2024-02-29 18:38:58.971 2024-02-29 18:38:58.971 1000 FEE 444032 17226 6116776 2024-02-29 18:39:54.571 2024-02-29 18:39:54.571 100000 FEE 444036 7869 6116795 2024-02-29 18:40:39.579 2024-02-29 18:40:39.579 6900 FEE 443915 12561 6116796 2024-02-29 18:40:39.579 2024-02-29 18:40:39.579 62100 TIP 443915 21466 6116801 2024-02-29 18:40:54.904 2024-02-29 18:40:54.904 1000 FEE 443593 687 6116802 2024-02-29 18:40:54.904 2024-02-29 18:40:54.904 9000 TIP 443593 1970 6116817 2024-02-29 18:41:26.753 2024-02-29 18:41:26.753 6900 FEE 443923 18774 6116818 2024-02-29 18:41:26.753 2024-02-29 18:41:26.753 62100 TIP 443923 16059 6116822 2024-02-29 18:41:45.9 2024-02-29 18:41:45.9 69000 DONT_LIKE_THIS 443905 19796 6116843 2024-02-29 18:43:58.897 2024-02-29 18:43:58.897 6900 FEE 443745 20179 6116844 2024-02-29 18:43:58.897 2024-02-29 18:43:58.897 62100 TIP 443745 2075 6116855 2024-02-29 18:44:00.474 2024-02-29 18:44:00.474 6900 FEE 443745 20852 6116856 2024-02-29 18:44:00.474 2024-02-29 18:44:00.474 62100 TIP 443745 12346 6116862 2024-02-29 18:44:17.778 2024-02-29 18:44:17.778 1000 FEE 443712 20901 6116863 2024-02-29 18:44:17.778 2024-02-29 18:44:17.778 9000 TIP 443712 15273 6116908 2024-02-29 18:46:24.599 2024-02-29 18:46:24.599 100 FEE 438325 19976 6116909 2024-02-29 18:46:24.599 2024-02-29 18:46:24.599 900 TIP 438325 14449 6116921 2024-02-29 18:46:51.112 2024-02-29 18:46:51.112 1000 FEE 443812 15060 6116922 2024-02-29 18:46:51.112 2024-02-29 18:46:51.112 9000 TIP 443812 18904 6116939 2024-02-29 18:47:26.84 2024-02-29 18:47:26.84 100000 FEE 444056 13782 6116953 2024-02-29 18:48:12.827 2024-02-29 18:48:12.827 5700 FEE 443915 9099 6116954 2024-02-29 18:48:12.827 2024-02-29 18:48:12.827 51300 TIP 443915 16684 6116955 2024-02-29 18:48:56.544 2024-02-29 18:48:56.544 10000 FEE 444059 19663 6116969 2024-02-29 18:49:21.82 2024-02-29 18:49:21.82 1000 FEE 440692 1985 6116970 2024-02-29 18:49:21.82 2024-02-29 18:49:21.82 9000 TIP 440692 3347 6116977 2024-02-29 18:49:47.149 2024-02-29 18:49:47.149 1000 FEE 444060 794 6116980 2024-02-29 18:49:54.013 2024-02-29 18:49:54.013 1000 FEE 441019 21614 6116981 2024-02-29 18:49:54.013 2024-02-29 18:49:54.013 9000 TIP 441019 1584 6117013 2024-02-29 18:50:43.264 2024-02-29 18:50:43.264 1000 FEE 441076 13327 6117014 2024-02-29 18:50:43.264 2024-02-29 18:50:43.264 9000 TIP 441076 9333 6117019 2024-02-29 18:50:44.28 2024-02-29 18:50:44.28 1000 FEE 441076 21578 6117020 2024-02-29 18:50:44.28 2024-02-29 18:50:44.28 9000 TIP 441076 15273 6117036 2024-02-29 18:51:11.21 2024-02-29 18:51:11.21 1000 FEE 441233 1012 6117037 2024-02-29 18:51:11.21 2024-02-29 18:51:11.21 9000 TIP 441233 1801 6117080 2024-02-29 18:53:12.101 2024-02-29 18:53:12.101 2100 FEE 444044 7395 6117081 2024-02-29 18:53:12.101 2024-02-29 18:53:12.101 18900 TIP 444044 1316 6117088 2024-02-29 18:54:08.43 2024-02-29 18:54:08.43 5700 FEE 444063 15159 6117089 2024-02-29 18:54:08.43 2024-02-29 18:54:08.43 51300 TIP 444063 859 6117103 2024-02-29 18:54:44.311 2024-02-29 18:54:44.311 1000 FEE 441243 4391 6117104 2024-02-29 18:54:44.311 2024-02-29 18:54:44.311 9000 TIP 441243 12175 6117111 2024-02-29 18:54:44.949 2024-02-29 18:54:44.949 1000 FEE 441243 8162 6117112 2024-02-29 18:54:44.949 2024-02-29 18:54:44.949 9000 TIP 441243 12609 6117119 2024-02-29 18:54:52.033 2024-02-29 18:54:52.033 1000 FEE 441228 21248 6117120 2024-02-29 18:54:52.033 2024-02-29 18:54:52.033 9000 TIP 441228 3478 6117133 2024-02-29 18:55:57.809 2024-02-29 18:55:57.809 1000 FEE 444031 1658 6117134 2024-02-29 18:55:57.809 2024-02-29 18:55:57.809 9000 TIP 444031 5852 6117139 2024-02-29 18:56:33.495 2024-02-29 18:56:33.495 100 FEE 444068 10611 6117140 2024-02-29 18:56:33.495 2024-02-29 18:56:33.495 900 TIP 444068 5057 6117173 2024-02-29 18:58:08.033 2024-02-29 18:58:08.033 1000 FEE 443934 16357 6117174 2024-02-29 18:58:08.033 2024-02-29 18:58:08.033 9000 TIP 443934 6499 6117182 2024-02-29 18:58:29.336 2024-02-29 18:58:29.336 3300 FEE 444034 18518 6117183 2024-02-29 18:58:29.336 2024-02-29 18:58:29.336 29700 TIP 444034 15732 6117209 2024-02-29 18:59:28.32 2024-02-29 18:59:28.32 1000 FEE 444063 15139 6117210 2024-02-29 18:59:28.32 2024-02-29 18:59:28.32 9000 TIP 444063 1705 6117223 2024-02-29 18:59:55.5 2024-02-29 18:59:55.5 1000 FEE 444080 21491 6117249 2024-02-29 19:00:24.902 2024-02-29 19:00:24.902 100 FEE 443866 21314 6117250 2024-02-29 19:00:24.902 2024-02-29 19:00:24.902 900 TIP 443866 20434 6117259 2024-02-29 19:00:34.962 2024-02-29 19:00:34.962 100 FEE 443802 5637 6117260 2024-02-29 19:00:34.962 2024-02-29 19:00:34.962 900 TIP 443802 20871 6117296 2024-02-29 19:01:21.664 2024-02-29 19:01:21.664 100 FEE 443794 994 6117297 2024-02-29 19:01:21.664 2024-02-29 19:01:21.664 900 TIP 443794 19153 6117298 2024-02-29 19:01:27.04 2024-02-29 19:01:27.04 100 FEE 443778 19992 6117299 2024-02-29 19:01:27.04 2024-02-29 19:01:27.04 900 TIP 443778 19292 6117335 2024-02-29 19:02:24.404 2024-02-29 19:02:24.404 5700 FEE 444086 4102 6117336 2024-02-29 19:02:24.404 2024-02-29 19:02:24.404 51300 TIP 444086 2735 6117358 2024-02-29 19:04:08.072 2024-02-29 19:04:08.072 1000 FEE 425118 5003 6117359 2024-02-29 19:04:08.072 2024-02-29 19:04:08.072 9000 TIP 425118 7125 6117362 2024-02-29 19:04:08.794 2024-02-29 19:04:08.794 1000 FEE 425118 679 6117363 2024-02-29 19:04:08.794 2024-02-29 19:04:08.794 9000 TIP 425118 18735 6117366 2024-02-29 19:04:09.187 2024-02-29 19:04:09.187 1000 FEE 425118 1198 6117367 2024-02-29 19:04:09.187 2024-02-29 19:04:09.187 9000 TIP 425118 733 6117405 2024-02-29 19:06:52.04 2024-02-29 19:06:52.04 100 FEE 443928 11866 6117406 2024-02-29 19:06:52.04 2024-02-29 19:06:52.04 900 TIP 443928 12334 6117432 2024-02-29 19:07:13.161 2024-02-29 19:07:13.161 1000 FEE 443545 1006 6117433 2024-02-29 19:07:13.161 2024-02-29 19:07:13.161 9000 TIP 443545 9330 6117454 2024-02-29 19:07:20.665 2024-02-29 19:07:20.665 1000 FEE 443712 1652 6117455 2024-02-29 19:07:20.665 2024-02-29 19:07:20.665 9000 TIP 443712 18500 6051786 2024-02-24 07:53:02.132 2024-02-24 07:53:02.132 1000 STREAM 141924 1307 6051791 2024-02-24 07:55:02.13 2024-02-24 07:55:02.13 1000 STREAM 141924 1712 6051807 2024-02-24 08:04:06.204 2024-02-24 08:04:06.204 1000 STREAM 141924 17091 6051813 2024-02-24 08:05:06.202 2024-02-24 08:05:06.202 1000 STREAM 141924 14045 6051814 2024-02-24 08:06:02.193 2024-02-24 08:06:02.193 1000 STREAM 141924 11621 6051820 2024-02-24 08:09:06.235 2024-02-24 08:09:06.235 1000 STREAM 141924 18919 6051823 2024-02-24 08:10:06.259 2024-02-24 08:10:06.259 1000 STREAM 141924 13198 6051824 2024-02-24 08:11:06.224 2024-02-24 08:11:06.224 1000 STREAM 141924 7772 6051827 2024-02-24 08:13:06.22 2024-02-24 08:13:06.22 1000 STREAM 141924 19031 6051840 2024-02-24 08:15:06.259 2024-02-24 08:15:06.259 1000 STREAM 141924 8376 6051841 2024-02-24 08:16:02.253 2024-02-24 08:16:02.253 1000 STREAM 141924 4059 6051843 2024-02-24 08:18:02.262 2024-02-24 08:18:02.262 1000 STREAM 141924 17064 6051889 2024-02-24 08:20:02.286 2024-02-24 08:20:02.286 1000 STREAM 141924 18473 6051895 2024-02-24 08:22:02.283 2024-02-24 08:22:02.283 1000 STREAM 141924 21555 6051956 2024-02-24 08:36:02.403 2024-02-24 08:36:02.403 1000 STREAM 141924 18923 6051969 2024-02-24 08:42:02.423 2024-02-24 08:42:02.423 1000 STREAM 141924 1512 6051981 2024-02-24 08:47:03.083 2024-02-24 08:47:03.083 1000 STREAM 141924 19458 6052045 2024-02-24 09:06:03.131 2024-02-24 09:06:03.131 1000 STREAM 141924 652 6052060 2024-02-24 09:10:03.148 2024-02-24 09:10:03.148 1000 STREAM 141924 17316 6052088 2024-02-24 09:19:03.224 2024-02-24 09:19:03.224 1000 STREAM 141924 15556 6052090 2024-02-24 09:20:03.254 2024-02-24 09:20:03.254 1000 STREAM 141924 19770 6052097 2024-02-24 09:21:03.24 2024-02-24 09:21:03.24 1000 STREAM 141924 20245 6052115 2024-02-24 09:25:03.259 2024-02-24 09:25:03.259 1000 STREAM 141924 19309 6052116 2024-02-24 09:26:03.272 2024-02-24 09:26:03.272 1000 STREAM 141924 21562 6052127 2024-02-24 09:29:03.274 2024-02-24 09:29:03.274 1000 STREAM 141924 4624 6052132 2024-02-24 09:30:03.288 2024-02-24 09:30:03.288 1000 STREAM 141924 19158 6052154 2024-02-24 09:34:03.31 2024-02-24 09:34:03.31 1000 STREAM 141924 18231 6052165 2024-02-24 09:39:03.356 2024-02-24 09:39:03.356 1000 STREAM 141924 14357 6052167 2024-02-24 09:40:03.381 2024-02-24 09:40:03.381 1000 STREAM 141924 20680 6052169 2024-02-24 09:42:03.371 2024-02-24 09:42:03.371 1000 STREAM 141924 7773 6052181 2024-02-24 09:44:03.383 2024-02-24 09:44:03.383 1000 STREAM 141924 10283 6052188 2024-02-24 09:48:03.424 2024-02-24 09:48:03.424 1000 STREAM 141924 20987 6052209 2024-02-24 09:50:03.433 2024-02-24 09:50:03.433 1000 STREAM 141924 7899 6052219 2024-02-24 09:52:03.446 2024-02-24 09:52:03.446 1000 STREAM 141924 21157 6052230 2024-02-24 09:56:03.473 2024-02-24 09:56:03.473 1000 STREAM 141924 17514 6052239 2024-02-24 10:03:03.519 2024-02-24 10:03:03.519 1000 STREAM 141924 17535 6052245 2024-02-24 10:09:03.552 2024-02-24 10:09:03.552 1000 STREAM 141924 20881 6052254 2024-02-24 10:13:03.574 2024-02-24 10:13:03.574 1000 STREAM 141924 20871 6052256 2024-02-24 10:15:03.576 2024-02-24 10:15:03.576 1000 STREAM 141924 18524 6052260 2024-02-24 10:17:03.577 2024-02-24 10:17:03.577 1000 STREAM 141924 19812 6052268 2024-02-24 10:19:03.581 2024-02-24 10:19:03.581 1000 STREAM 141924 20636 6116792 2024-02-29 18:40:36.78 2024-02-29 18:40:36.78 62100 TIP 443915 17209 6116797 2024-02-29 18:40:44.628 2024-02-29 18:40:44.628 1000 FEE 444038 15594 6116800 2024-02-29 18:40:53.761 2024-02-29 18:40:53.761 1000 FEE 444039 1585 6116860 2024-02-29 18:44:10.443 2024-02-29 18:44:10.443 1000 FEE 443576 15337 6116861 2024-02-29 18:44:10.443 2024-02-29 18:44:10.443 9000 TIP 443576 19511 6116890 2024-02-29 18:45:35.953 2024-02-29 18:45:35.953 500 FEE 443934 21180 6116891 2024-02-29 18:45:35.953 2024-02-29 18:45:35.953 4500 TIP 443934 9844 6116894 2024-02-29 18:45:46.284 2024-02-29 18:45:46.284 100000 FEE 444051 803 6116895 2024-02-29 18:45:54.489 2024-02-29 18:45:54.489 1000 FEE 444052 1490 6116910 2024-02-29 18:46:32.346 2024-02-29 18:46:32.346 1000 FEE 444054 705 6116929 2024-02-29 18:47:06.506 2024-02-29 18:47:06.506 1000 FEE 443816 18994 6116930 2024-02-29 18:47:06.506 2024-02-29 18:47:06.506 9000 TIP 443816 16350 6116963 2024-02-29 18:49:21.272 2024-02-29 18:49:21.272 1000 FEE 440692 19842 6116964 2024-02-29 18:49:21.272 2024-02-29 18:49:21.272 9000 TIP 440692 2309 6051803 2024-02-24 08:01:06.158 2024-02-24 08:01:06.158 1000 STREAM 141924 9426 6051805 2024-02-24 08:02:06.176 2024-02-24 08:02:06.176 1000 STREAM 141924 7389 6051806 2024-02-24 08:03:06.183 2024-02-24 08:03:06.183 1000 STREAM 141924 646 6051817 2024-02-24 08:07:06.209 2024-02-24 08:07:06.209 1000 STREAM 141924 14905 6051819 2024-02-24 08:08:06.227 2024-02-24 08:08:06.227 1000 STREAM 141924 17798 6051826 2024-02-24 08:12:06.224 2024-02-24 08:12:06.224 1000 STREAM 141924 2459 6051828 2024-02-24 08:14:06.242 2024-02-24 08:14:06.242 1000 STREAM 141924 6327 6051915 2024-02-24 08:24:02.296 2024-02-24 08:24:02.296 1000 STREAM 141924 15094 6051917 2024-02-24 08:26:02.313 2024-02-24 08:26:02.313 1000 STREAM 141924 17727 6051921 2024-02-24 08:28:02.321 2024-02-24 08:28:02.321 1000 STREAM 141924 18608 6051925 2024-02-24 08:30:02.342 2024-02-24 08:30:02.342 1000 STREAM 141924 4654 6051929 2024-02-24 08:32:02.352 2024-02-24 08:32:02.352 1000 STREAM 141924 652 6051932 2024-02-24 08:34:02.375 2024-02-24 08:34:02.375 1000 STREAM 141924 21422 6051959 2024-02-24 08:38:02.405 2024-02-24 08:38:02.405 1000 STREAM 141924 18842 6051961 2024-02-24 08:40:02.415 2024-02-24 08:40:02.415 1000 STREAM 141924 21600 6051972 2024-02-24 08:44:02.467 2024-02-24 08:44:02.467 1000 STREAM 141924 20143 6051983 2024-02-24 08:49:02.24 2024-02-24 08:49:02.24 1000 STREAM 141924 1823 6116835 2024-02-29 18:43:32.375 2024-02-29 18:43:32.375 1000 FEE 444048 20987 6116851 2024-02-29 18:43:59.702 2024-02-29 18:43:59.702 6900 FEE 443745 1801 6116852 2024-02-29 18:43:59.702 2024-02-29 18:43:59.702 62100 TIP 443745 13174 6116889 2024-02-29 18:45:29.466 2024-02-29 18:45:29.466 1000 FEE 444050 18178 6116904 2024-02-29 18:46:17.628 2024-02-29 18:46:17.628 1000 FEE 443758 11999 6116905 2024-02-29 18:46:17.628 2024-02-29 18:46:17.628 9000 TIP 443758 5520 6116917 2024-02-29 18:46:40.512 2024-02-29 18:46:40.512 100 FEE 438458 17316 6116918 2024-02-29 18:46:40.512 2024-02-29 18:46:40.512 900 TIP 438458 11329 6116919 2024-02-29 18:46:46.396 2024-02-29 18:46:46.396 100 FEE 438563 21103 6116920 2024-02-29 18:46:46.396 2024-02-29 18:46:46.396 900 TIP 438563 1310 6116975 2024-02-29 18:49:39.994 2024-02-29 18:49:39.994 100 FEE 442526 16149 6116976 2024-02-29 18:49:39.994 2024-02-29 18:49:39.994 900 TIP 442526 19557 6116978 2024-02-29 18:49:53.844 2024-02-29 18:49:53.844 1000 FEE 441019 18423 6116979 2024-02-29 18:49:53.844 2024-02-29 18:49:53.844 9000 TIP 441019 20901 6116986 2024-02-29 18:49:57.717 2024-02-29 18:49:57.717 2100 FEE 443794 18460 6116987 2024-02-29 18:49:57.717 2024-02-29 18:49:57.717 18900 TIP 443794 18809 6116997 2024-02-29 18:50:19.754 2024-02-29 18:50:19.754 2000 FEE 441092 11288 6116998 2024-02-29 18:50:19.754 2024-02-29 18:50:19.754 18000 TIP 441092 1307 6117009 2024-02-29 18:50:41.667 2024-02-29 18:50:41.667 1000 FEE 441076 20551 6117010 2024-02-29 18:50:41.667 2024-02-29 18:50:41.667 9000 TIP 441076 21247 6117031 2024-02-29 18:50:59.582 2024-02-29 18:50:59.582 1000 FEE 441011 10056 6117032 2024-02-29 18:50:59.582 2024-02-29 18:50:59.582 9000 TIP 441011 17172 6117054 2024-02-29 18:52:48.183 2024-02-29 18:52:48.183 1000 FEE 441181 4074 6117055 2024-02-29 18:52:48.183 2024-02-29 18:52:48.183 9000 TIP 441181 20911 6117087 2024-02-29 18:54:06.906 2024-02-29 18:54:06.906 100000 FEE 444065 17014 6117092 2024-02-29 18:54:14.216 2024-02-29 18:54:14.216 1000 FEE 441610 3683 6117093 2024-02-29 18:54:14.216 2024-02-29 18:54:14.216 9000 TIP 441610 8916 6117099 2024-02-29 18:54:43.952 2024-02-29 18:54:43.952 1000 FEE 441243 14669 6117100 2024-02-29 18:54:43.952 2024-02-29 18:54:43.952 9000 TIP 441243 11938 6117101 2024-02-29 18:54:44.127 2024-02-29 18:54:44.127 1000 FEE 441243 19016 6117102 2024-02-29 18:54:44.127 2024-02-29 18:54:44.127 9000 TIP 441243 2046 6117107 2024-02-29 18:54:44.596 2024-02-29 18:54:44.596 1000 FEE 441243 20778 6117108 2024-02-29 18:54:44.596 2024-02-29 18:54:44.596 9000 TIP 441243 18680 6117121 2024-02-29 18:54:52.398 2024-02-29 18:54:52.398 1000 FEE 441228 16177 6117122 2024-02-29 18:54:52.398 2024-02-29 18:54:52.398 9000 TIP 441228 959 6117145 2024-02-29 18:57:03.459 2024-02-29 18:57:03.459 1000 FEE 444070 18626 6117151 2024-02-29 18:57:17.83 2024-02-29 18:57:17.83 100 FEE 444063 14489 6117152 2024-02-29 18:57:17.83 2024-02-29 18:57:17.83 900 TIP 444063 3745 6117153 2024-02-29 18:57:23.942 2024-02-29 18:57:23.942 1000 FEE 444072 18368 6117175 2024-02-29 18:58:11.62 2024-02-29 18:58:11.62 300 FEE 444043 20663 6117176 2024-02-29 18:58:11.62 2024-02-29 18:58:11.62 2700 TIP 444043 7119 6117192 2024-02-29 18:58:51.737 2024-02-29 18:58:51.737 5700 FEE 444062 9367 6117193 2024-02-29 18:58:51.737 2024-02-29 18:58:51.737 51300 TIP 444062 6148 6117243 2024-02-29 19:00:17.944 2024-02-29 19:00:17.944 100 FEE 443895 18524 6117244 2024-02-29 19:00:17.944 2024-02-29 19:00:17.944 900 TIP 443895 7891 6117261 2024-02-29 19:00:38.225 2024-02-29 19:00:38.225 100 FEE 443799 627 6117262 2024-02-29 19:00:38.225 2024-02-29 19:00:38.225 900 TIP 443799 657 6117265 2024-02-29 19:00:40.28 2024-02-29 19:00:40.28 100 FEE 443797 650 6117266 2024-02-29 19:00:40.28 2024-02-29 19:00:40.28 900 TIP 443797 15200 6117279 2024-02-29 19:01:10.868 2024-02-29 19:01:10.868 1000 FEE 444084 1094 6117283 2024-02-29 19:01:15.967 2024-02-29 19:01:15.967 2100 FEE 443956 14731 6117284 2024-02-29 19:01:15.967 2024-02-29 19:01:15.967 18900 TIP 443956 16912 6117304 2024-02-29 19:01:31.38 2024-02-29 19:01:31.38 100 FEE 443755 20090 6117305 2024-02-29 19:01:31.38 2024-02-29 19:01:31.38 900 TIP 443755 20646 6117306 2024-02-29 19:01:34.53 2024-02-29 19:01:34.53 100 FEE 443752 9347 6051842 2024-02-24 08:17:05.412 2024-02-24 08:17:05.412 1000 STREAM 141924 2367 6051910 2024-02-24 08:23:05.476 2024-02-24 08:23:05.476 1000 STREAM 141924 10731 6116859 2024-02-29 18:44:03.967 2024-02-29 18:44:03.967 1000 STREAM 141924 19660 6117040 2024-02-29 18:52:04.054 2024-02-29 18:52:04.054 1000 STREAM 141924 628 6051859 2024-02-24 08:18:47.821 2024-02-24 08:18:47.821 18900 TIP 436560 1310 6051876 2024-02-24 08:18:57.593 2024-02-24 08:18:57.593 2100 FEE 436556 769 6051877 2024-02-24 08:18:57.593 2024-02-24 08:18:57.593 18900 TIP 436556 5752 6051893 2024-02-24 08:21:48.429 2024-02-24 08:21:48.429 2000 FEE 436926 7125 6051894 2024-02-24 08:21:48.429 2024-02-24 08:21:48.429 18000 TIP 436926 11670 6051923 2024-02-24 08:28:55.344 2024-02-24 08:28:55.344 10000 FEE 436981 17570 6051940 2024-02-24 08:35:33.729 2024-02-24 08:35:33.729 100 FEE 436683 13204 6051941 2024-02-24 08:35:33.729 2024-02-24 08:35:33.729 900 TIP 436683 716 6051946 2024-02-24 08:35:57.74 2024-02-24 08:35:57.74 100 FEE 436556 21472 6051947 2024-02-24 08:35:57.74 2024-02-24 08:35:57.74 900 TIP 436556 13781 6051958 2024-02-24 08:37:47.663 2024-02-24 08:37:47.663 10000 FEE 436983 19132 6052001 2024-02-24 08:56:47.5 2024-02-24 08:56:47.5 50000 FEE 436981 18368 6052002 2024-02-24 08:56:47.5 2024-02-24 08:56:47.5 450000 TIP 436981 6419 6052005 2024-02-24 08:57:49.368 2024-02-24 08:57:49.368 1000 FEE 436987 21416 6052013 2024-02-24 09:00:36.887 2024-02-24 09:00:36.887 800 FEE 436560 7913 6052014 2024-02-24 09:00:36.887 2024-02-24 09:00:36.887 7200 TIP 436560 12566 6052035 2024-02-24 09:02:31.725 2024-02-24 09:02:31.725 500 FEE 436566 15833 6052036 2024-02-24 09:02:31.725 2024-02-24 09:02:31.725 4500 TIP 436566 11018 6052047 2024-02-24 09:07:32.596 2024-02-24 09:07:32.596 1000 FEE 436993 20231 6052058 2024-02-24 09:09:40.736 2024-02-24 09:09:40.736 1000 FEE 434326 11458 6052059 2024-02-24 09:09:40.736 2024-02-24 09:09:40.736 9000 TIP 434326 10291 6052082 2024-02-24 09:17:25.557 2024-02-24 09:17:25.557 100 FEE 436985 12272 6052083 2024-02-24 09:17:25.557 2024-02-24 09:17:25.557 900 TIP 436985 21393 6052084 2024-02-24 09:17:40.875 2024-02-24 09:17:40.875 100 FEE 436996 17713 6052085 2024-02-24 09:17:40.875 2024-02-24 09:17:40.875 900 TIP 436996 21131 6052089 2024-02-24 09:19:05.715 2024-02-24 09:19:05.715 1000 FEE 437003 20205 6052098 2024-02-24 09:21:39.661 2024-02-24 09:21:39.661 1000 FEE 437006 19924 6052129 2024-02-24 09:29:42.049 2024-02-24 09:29:42.049 1000 FEE 437012 2789 6052156 2024-02-24 09:34:43.559 2024-02-24 09:34:43.559 1000 FEE 437018 15271 6052162 2024-02-24 09:36:43.346 2024-02-24 09:36:43.346 1000 FEE 437020 718 6052176 2024-02-24 09:42:34.034 2024-02-24 09:42:34.034 100 FEE 436803 21207 6052177 2024-02-24 09:42:34.034 2024-02-24 09:42:34.034 900 TIP 436803 11458 6052184 2024-02-24 09:45:24.843 2024-02-24 09:45:24.843 0 FEE 437022 20980 6052196 2024-02-24 09:48:25.475 2024-02-24 09:48:25.475 100 FEE 436935 20254 6052197 2024-02-24 09:48:25.475 2024-02-24 09:48:25.475 900 TIP 436935 9364 6052202 2024-02-24 09:48:27.64 2024-02-24 09:48:27.64 100 FEE 436935 18449 6052203 2024-02-24 09:48:27.64 2024-02-24 09:48:27.64 900 TIP 436935 16970 6052212 2024-02-24 09:50:38.328 2024-02-24 09:50:38.328 5000 FEE 436999 7979 6052213 2024-02-24 09:50:38.328 2024-02-24 09:50:38.328 45000 TIP 436999 8162 6052214 2024-02-24 09:50:41.288 2024-02-24 09:50:41.288 5000 FEE 436968 21047 6052215 2024-02-24 09:50:41.288 2024-02-24 09:50:41.288 45000 TIP 436968 11158 6052225 2024-02-24 09:54:34.852 2024-02-24 09:54:34.852 69000 FEE 437026 16808 6052264 2024-02-24 10:17:31.548 2024-02-24 10:17:31.548 1000 FEE 436720 19117 6052265 2024-02-24 10:17:31.548 2024-02-24 10:17:31.548 9000 TIP 436720 1474 6052271 2024-02-24 10:22:02.045 2024-02-24 10:22:02.045 1000 FEE 436720 5791 6052272 2024-02-24 10:22:02.045 2024-02-24 10:22:02.045 9000 TIP 436720 1802 6052287 2024-02-24 10:23:54.996 2024-02-24 10:23:54.996 4000 FEE 436759 9356 6052288 2024-02-24 10:23:54.996 2024-02-24 10:23:54.996 36000 TIP 436759 16432 6052302 2024-02-24 10:26:24.093 2024-02-24 10:26:24.093 69000 FEE 437034 18178 6052303 2024-02-24 10:26:25.19 2024-02-24 10:26:25.19 1000 FEE 436792 13246 6052304 2024-02-24 10:26:25.19 2024-02-24 10:26:25.19 9000 TIP 436792 19773 6052327 2024-02-24 10:34:24.418 2024-02-24 10:34:24.418 1000 FEE 436556 998 6052328 2024-02-24 10:34:24.418 2024-02-24 10:34:24.418 9000 TIP 436556 5942 6052343 2024-02-24 10:34:28.649 2024-02-24 10:34:28.649 1000 FEE 435847 21522 6052344 2024-02-24 10:34:28.649 2024-02-24 10:34:28.649 9000 TIP 435847 9337 6052345 2024-02-24 10:34:28.914 2024-02-24 10:34:28.914 1000 FEE 436827 10693 6052346 2024-02-24 10:34:28.914 2024-02-24 10:34:28.914 9000 TIP 436827 10554 6052359 2024-02-24 10:35:25.37 2024-02-24 10:35:25.37 1000 FEE 436281 21060 6052360 2024-02-24 10:35:25.37 2024-02-24 10:35:25.37 9000 TIP 436281 10728 6052367 2024-02-24 10:35:30.818 2024-02-24 10:35:30.818 1000 FEE 436412 1611 6052368 2024-02-24 10:35:30.818 2024-02-24 10:35:30.818 9000 TIP 436412 21458 6052432 2024-02-24 10:36:03.903 2024-02-24 10:36:03.903 1000 FEE 436950 5128 6052433 2024-02-24 10:36:03.903 2024-02-24 10:36:03.903 9000 TIP 436950 17519 6051860 2024-02-24 08:18:48.822 2024-02-24 08:18:48.822 2100 FEE 436759 12222 6051861 2024-02-24 08:18:48.822 2024-02-24 08:18:48.822 18900 TIP 436759 8074 6051880 2024-02-24 08:19:00.864 2024-02-24 08:19:00.864 2100 FEE 436729 20674 6051881 2024-02-24 08:19:00.864 2024-02-24 08:19:00.864 18900 TIP 436729 20109 6051901 2024-02-24 08:22:13.996 2024-02-24 08:22:13.996 2000 FEE 436720 5557 6051902 2024-02-24 08:22:13.996 2024-02-24 08:22:13.996 18000 TIP 436720 13587 6051974 2024-02-24 08:45:29.126 2024-02-24 08:45:29.126 2100 FEE 434317 18897 6051975 2024-02-24 08:45:29.126 2024-02-24 08:45:29.126 18900 TIP 434317 715 6051992 2024-02-24 08:53:21.462 2024-02-24 08:53:21.462 10000 FEE 436556 21033 6051993 2024-02-24 08:53:21.462 2024-02-24 08:53:21.462 90000 TIP 436556 16847 6051996 2024-02-24 08:55:26.421 2024-02-24 08:55:26.421 1000 FEE 436984 10112 6052004 2024-02-24 08:57:06.236 2024-02-24 08:57:06.236 1000 FEE 436986 18816 6052009 2024-02-24 09:00:16.052 2024-02-24 09:00:16.052 2100 FEE 436926 12169 6052010 2024-02-24 09:00:16.052 2024-02-24 09:00:16.052 18900 TIP 436926 1806 6052011 2024-02-24 09:00:36.546 2024-02-24 09:00:36.546 800 FEE 436560 1213 6052012 2024-02-24 09:00:36.546 2024-02-24 09:00:36.546 7200 TIP 436560 21036 6052017 2024-02-24 09:00:37.787 2024-02-24 09:00:37.787 800 FEE 436560 14774 6052018 2024-02-24 09:00:37.787 2024-02-24 09:00:37.787 7200 TIP 436560 5085 6052020 2024-02-24 09:01:26.344 2024-02-24 09:01:26.344 500 FEE 436720 2256 6052021 2024-02-24 09:01:26.344 2024-02-24 09:01:26.344 4500 TIP 436720 1006 6052031 2024-02-24 09:02:31.299 2024-02-24 09:02:31.299 500 FEE 436566 19572 6052032 2024-02-24 09:02:31.299 2024-02-24 09:02:31.299 4500 TIP 436566 711 6052065 2024-02-24 09:10:29.551 2024-02-24 09:10:29.551 1000 FEE 436998 15282 6052095 2024-02-24 09:20:58.426 2024-02-24 09:20:58.426 100 FEE 436983 9200 6052096 2024-02-24 09:20:58.426 2024-02-24 09:20:58.426 900 TIP 436983 14905 6052128 2024-02-24 09:29:27.025 2024-02-24 09:29:27.025 1000 POLL 436759 16124 6052137 2024-02-24 09:31:30.673 2024-02-24 09:31:30.673 1000 FEE 437014 954 6052186 2024-02-24 09:46:50.391 2024-02-24 09:46:50.391 1000 FEE 437023 16942 6052190 2024-02-24 09:48:23.631 2024-02-24 09:48:23.631 100 FEE 436935 18380 6052191 2024-02-24 09:48:23.631 2024-02-24 09:48:23.631 900 TIP 436935 13216 6052194 2024-02-24 09:48:24.872 2024-02-24 09:48:24.872 100 FEE 436935 1326 6052195 2024-02-24 09:48:24.872 2024-02-24 09:48:24.872 900 TIP 436935 20861 6052200 2024-02-24 09:48:26.763 2024-02-24 09:48:26.763 100 FEE 436935 686 6052201 2024-02-24 09:48:26.763 2024-02-24 09:48:26.763 900 TIP 436935 18529 6052229 2024-02-24 09:55:45.67 2024-02-24 09:55:45.67 1000 FEE 437027 8423 6052252 2024-02-24 10:11:16.504 2024-02-24 10:11:16.504 1000 FEE 437028 16406 6052281 2024-02-24 10:23:51.838 2024-02-24 10:23:51.838 4000 FEE 436967 802 6052282 2024-02-24 10:23:51.838 2024-02-24 10:23:51.838 36000 TIP 436967 2016 6052339 2024-02-24 10:34:27.367 2024-02-24 10:34:27.367 1000 FEE 436729 644 6052340 2024-02-24 10:34:27.367 2024-02-24 10:34:27.367 9000 TIP 436729 21405 6052361 2024-02-24 10:35:27.126 2024-02-24 10:35:27.126 1000 FEE 437015 18932 6052362 2024-02-24 10:35:27.126 2024-02-24 10:35:27.126 9000 TIP 437015 827 6052365 2024-02-24 10:35:28.316 2024-02-24 10:35:28.316 1000 FEE 436243 8569 6052366 2024-02-24 10:35:28.316 2024-02-24 10:35:28.316 9000 TIP 436243 11298 6052373 2024-02-24 10:35:34.276 2024-02-24 10:35:34.276 1000 FEE 436374 16341 6052374 2024-02-24 10:35:34.276 2024-02-24 10:35:34.276 9000 TIP 436374 17041 6052377 2024-02-24 10:35:35.281 2024-02-24 10:35:35.281 1000 FEE 436308 712 6052378 2024-02-24 10:35:35.281 2024-02-24 10:35:35.281 9000 TIP 436308 18114 6052383 2024-02-24 10:35:37.102 2024-02-24 10:35:37.102 1000 FEE 436531 13169 6052384 2024-02-24 10:35:37.102 2024-02-24 10:35:37.102 9000 TIP 436531 7097 6052385 2024-02-24 10:35:44.339 2024-02-24 10:35:44.339 1000 FEE 436425 1224 6052386 2024-02-24 10:35:44.339 2024-02-24 10:35:44.339 9000 TIP 436425 21527 6052441 2024-02-24 10:36:26.326 2024-02-24 10:36:26.326 1000 FEE 436926 20087 6052442 2024-02-24 10:36:26.326 2024-02-24 10:36:26.326 9000 TIP 436926 20756 6052449 2024-02-24 10:36:28.413 2024-02-24 10:36:28.413 1000 FEE 436894 20972 6052450 2024-02-24 10:36:28.413 2024-02-24 10:36:28.413 9000 TIP 436894 18291 6052451 2024-02-24 10:36:28.707 2024-02-24 10:36:28.707 1000 FEE 436892 910 6052452 2024-02-24 10:36:28.707 2024-02-24 10:36:28.707 9000 TIP 436892 21329 6052477 2024-02-24 10:39:06.383 2024-02-24 10:39:06.383 2100 FEE 437008 925 6052478 2024-02-24 10:39:06.383 2024-02-24 10:39:06.383 18900 TIP 437008 21424 6052510 2024-02-24 10:54:32.835 2024-02-24 10:54:32.835 1000 FEE 437042 1064 6052511 2024-02-24 10:54:37.89 2024-02-24 10:54:37.89 100 FEE 436523 11609 6052512 2024-02-24 10:54:37.89 2024-02-24 10:54:37.89 900 TIP 436523 730 6052517 2024-02-24 10:56:40.93 2024-02-24 10:56:40.93 1000 FEE 437043 15594 6052529 2024-02-24 11:00:45.864 2024-02-24 11:00:45.864 0 FEE 437045 20788 6052543 2024-02-24 11:05:00.984 2024-02-24 11:05:00.984 5000 FEE 436878 6136 6052544 2024-02-24 11:05:00.984 2024-02-24 11:05:00.984 45000 TIP 436878 9438 6052570 2024-02-24 11:15:00.493 2024-02-24 11:15:00.493 1000 FEE 437001 1478 6052571 2024-02-24 11:15:00.493 2024-02-24 11:15:00.493 9000 TIP 437001 20669 6052587 2024-02-24 11:20:14.341 2024-02-24 11:20:14.341 2100 FEE 437045 19857 6051884 2024-02-24 08:19:05.423 2024-02-24 08:19:05.423 1000 STREAM 141924 18735 6051890 2024-02-24 08:21:05.448 2024-02-24 08:21:05.448 1000 STREAM 141924 18180 6051916 2024-02-24 08:25:05.509 2024-02-24 08:25:05.509 1000 STREAM 141924 686 6051918 2024-02-24 08:27:05.51 2024-02-24 08:27:05.51 1000 STREAM 141924 1010 6051982 2024-02-24 08:48:03.692 2024-02-24 08:48:03.692 1000 STREAM 141924 10469 6051990 2024-02-24 08:52:03.703 2024-02-24 08:52:03.703 1000 STREAM 141924 20376 6051995 2024-02-24 08:55:03.716 2024-02-24 08:55:03.716 1000 STREAM 141924 2042 6052003 2024-02-24 08:57:03.759 2024-02-24 08:57:03.759 1000 STREAM 141924 20973 6052007 2024-02-24 08:59:03.797 2024-02-24 08:59:03.797 1000 STREAM 141924 641 6052019 2024-02-24 09:01:03.83 2024-02-24 09:01:03.83 1000 STREAM 141924 20606 6052038 2024-02-24 09:03:03.838 2024-02-24 09:03:03.838 1000 STREAM 141924 1064 6052046 2024-02-24 09:07:03.896 2024-02-24 09:07:03.896 1000 STREAM 141924 20826 6052053 2024-02-24 09:09:03.92 2024-02-24 09:09:03.92 1000 STREAM 141924 10719 6052072 2024-02-24 09:12:03.962 2024-02-24 09:12:03.962 1000 STREAM 141924 11862 6052073 2024-02-24 09:13:03.966 2024-02-24 09:13:03.966 1000 STREAM 141924 9275 6052074 2024-02-24 09:14:03.977 2024-02-24 09:14:03.977 1000 STREAM 141924 11378 6052163 2024-02-24 09:37:02.117 2024-02-24 09:37:02.117 1000 STREAM 141924 12768 6052187 2024-02-24 09:47:02.229 2024-02-24 09:47:02.229 1000 STREAM 141924 732 6052216 2024-02-24 09:51:02.26 2024-02-24 09:51:02.26 1000 STREAM 141924 2748 6052220 2024-02-24 09:53:02.29 2024-02-24 09:53:02.29 1000 STREAM 141924 20511 6052226 2024-02-24 09:55:02.321 2024-02-24 09:55:02.321 1000 STREAM 141924 1142 6052233 2024-02-24 09:57:02.32 2024-02-24 09:57:02.32 1000 STREAM 141924 1145 6052238 2024-02-24 10:02:02.379 2024-02-24 10:02:02.379 1000 STREAM 141924 891 6052241 2024-02-24 10:05:02.416 2024-02-24 10:05:02.416 1000 STREAM 141924 18262 6052244 2024-02-24 10:08:02.455 2024-02-24 10:08:02.455 1000 STREAM 141924 1803 6052253 2024-02-24 10:12:02.504 2024-02-24 10:12:02.504 1000 STREAM 141924 1389 6052266 2024-02-24 10:18:02.549 2024-02-24 10:18:02.549 1000 STREAM 141924 19777 6052280 2024-02-24 10:23:02.648 2024-02-24 10:23:02.648 1000 STREAM 141924 1585 6052296 2024-02-24 10:25:02.679 2024-02-24 10:25:02.679 1000 STREAM 141924 674 6052306 2024-02-24 10:27:02.705 2024-02-24 10:27:02.705 1000 STREAM 141924 14857 6052310 2024-02-24 10:29:02.738 2024-02-24 10:29:02.738 1000 STREAM 141924 21329 6052312 2024-02-24 10:31:02.742 2024-02-24 10:31:02.742 1000 STREAM 141924 18817 6052314 2024-02-24 10:33:02.774 2024-02-24 10:33:02.774 1000 STREAM 141924 18930 6052316 2024-02-24 10:34:02.796 2024-02-24 10:34:02.796 1000 STREAM 141924 20619 6052356 2024-02-24 10:35:02.805 2024-02-24 10:35:02.805 1000 STREAM 141924 21421 6052472 2024-02-24 10:38:02.85 2024-02-24 10:38:02.85 1000 STREAM 141924 13987 6052479 2024-02-24 10:40:02.902 2024-02-24 10:40:02.902 1000 STREAM 141924 7809 6052484 2024-02-24 10:41:02.884 2024-02-24 10:41:02.884 1000 STREAM 141924 882 6052489 2024-02-24 10:42:02.889 2024-02-24 10:42:02.889 1000 STREAM 141924 11395 6052493 2024-02-24 10:45:02.942 2024-02-24 10:45:02.942 1000 STREAM 141924 21562 6052497 2024-02-24 10:47:02.983 2024-02-24 10:47:02.983 1000 STREAM 141924 5195 6052498 2024-02-24 10:48:02.998 2024-02-24 10:48:02.998 1000 STREAM 141924 1012 6052505 2024-02-24 10:51:03.07 2024-02-24 10:51:03.07 1000 STREAM 141924 4313 6052507 2024-02-24 10:53:03.119 2024-02-24 10:53:03.119 1000 STREAM 141924 17046 6052525 2024-02-24 11:00:03.23 2024-02-24 11:00:03.23 1000 STREAM 141924 15560 6052534 2024-02-24 11:02:03.231 2024-02-24 11:02:03.231 1000 STREAM 141924 19148 6052545 2024-02-24 11:05:03.279 2024-02-24 11:05:03.279 1000 STREAM 141924 19199 6052551 2024-02-24 11:06:03.305 2024-02-24 11:06:03.305 1000 STREAM 141924 2681 6052554 2024-02-24 11:08:03.35 2024-02-24 11:08:03.35 1000 STREAM 141924 14857 6052555 2024-02-24 11:09:03.354 2024-02-24 11:09:03.354 1000 STREAM 141924 715 6052556 2024-02-24 11:10:03.409 2024-02-24 11:10:03.409 1000 STREAM 141924 1737 6052559 2024-02-24 11:11:03.386 2024-02-24 11:11:03.386 1000 STREAM 141924 3683 6052561 2024-02-24 11:12:03.412 2024-02-24 11:12:03.412 1000 STREAM 141924 4650 6052577 2024-02-24 11:17:03.476 2024-02-24 11:17:03.476 1000 STREAM 141924 928 6052583 2024-02-24 11:19:03.528 2024-02-24 11:19:03.528 1000 STREAM 141924 1784 6052586 2024-02-24 11:20:03.564 2024-02-24 11:20:03.564 1000 STREAM 141924 20326 6052592 2024-02-24 11:22:03.6 2024-02-24 11:22:03.6 1000 STREAM 141924 2577 6052596 2024-02-24 11:23:03.593 2024-02-24 11:23:03.593 1000 STREAM 141924 9335 6052601 2024-02-24 11:24:03.614 2024-02-24 11:24:03.614 1000 STREAM 141924 15119 6052604 2024-02-24 11:26:03.679 2024-02-24 11:26:03.679 1000 STREAM 141924 2293 6052609 2024-02-24 11:28:03.719 2024-02-24 11:28:03.719 1000 STREAM 141924 13361 6052614 2024-02-24 11:29:03.755 2024-02-24 11:29:03.755 1000 STREAM 141924 19735 6052619 2024-02-24 11:30:03.811 2024-02-24 11:30:03.811 1000 STREAM 141924 17741 6052632 2024-02-24 11:34:03.829 2024-02-24 11:34:03.829 1000 STREAM 141924 18556 6052637 2024-02-24 11:35:03.849 2024-02-24 11:35:03.849 1000 STREAM 141924 16176 6052648 2024-02-24 11:37:03.878 2024-02-24 11:37:03.878 1000 STREAM 141924 8998 6052652 2024-02-24 11:38:03.914 2024-02-24 11:38:03.914 1000 STREAM 141924 8459 6051924 2024-02-24 08:29:05.166 2024-02-24 08:29:05.166 1000 STREAM 141924 19581 6051930 2024-02-24 08:33:05.168 2024-02-24 08:33:05.168 1000 STREAM 141924 21296 6051939 2024-02-24 08:35:05.17 2024-02-24 08:35:05.17 1000 STREAM 141924 10270 6051960 2024-02-24 08:39:05.202 2024-02-24 08:39:05.202 1000 STREAM 141924 19690 6051962 2024-02-24 08:41:05.219 2024-02-24 08:41:05.219 1000 STREAM 141924 2528 6051971 2024-02-24 08:43:05.249 2024-02-24 08:43:05.249 1000 STREAM 141924 10719 6051980 2024-02-24 08:46:05.647 2024-02-24 08:46:05.647 1000 STREAM 141924 17722 6052008 2024-02-24 09:00:02.599 2024-02-24 09:00:02.599 1000 STREAM 141924 928 6116924 2024-02-29 18:46:52.974 2024-02-29 18:46:52.974 900 TIP 438891 15703 6116927 2024-02-29 18:47:00.572 2024-02-29 18:47:00.572 1000 FEE 444055 19929 6116984 2024-02-29 18:49:54.369 2024-02-29 18:49:54.369 1000 FEE 441019 16769 6116985 2024-02-29 18:49:54.369 2024-02-29 18:49:54.369 9000 TIP 441019 11866 6117025 2024-02-29 18:50:58.564 2024-02-29 18:50:58.564 1000 FEE 441011 21338 6117026 2024-02-29 18:50:58.564 2024-02-29 18:50:58.564 9000 TIP 441011 1785 6117034 2024-02-29 18:51:10.839 2024-02-29 18:51:10.839 1000 FEE 441233 21427 6117035 2024-02-29 18:51:10.839 2024-02-29 18:51:10.839 9000 TIP 441233 859 6117052 2024-02-29 18:52:48.065 2024-02-29 18:52:48.065 1000 FEE 441181 1803 6117053 2024-02-29 18:52:48.065 2024-02-29 18:52:48.065 9000 TIP 441181 9167 6117058 2024-02-29 18:52:48.514 2024-02-29 18:52:48.514 1000 FEE 441181 13406 6117059 2024-02-29 18:52:48.514 2024-02-29 18:52:48.514 9000 TIP 441181 5703 6117083 2024-02-29 18:53:23.784 2024-02-29 18:53:23.784 2100 FEE 444036 16348 6117084 2024-02-29 18:53:23.784 2024-02-29 18:53:23.784 18900 TIP 444036 18387 6117094 2024-02-29 18:54:17.822 2024-02-29 18:54:17.822 10000 FEE 444066 1002 6117095 2024-02-29 18:54:43.587 2024-02-29 18:54:43.587 1000 FEE 441243 16447 6117096 2024-02-29 18:54:43.587 2024-02-29 18:54:43.587 9000 TIP 441243 4314 6117109 2024-02-29 18:54:44.764 2024-02-29 18:54:44.764 1000 FEE 441243 15239 6117110 2024-02-29 18:54:44.764 2024-02-29 18:54:44.764 9000 TIP 441243 20433 6117135 2024-02-29 18:56:01.627 2024-02-29 18:56:01.627 1000 FEE 443913 1468 6117136 2024-02-29 18:56:01.627 2024-02-29 18:56:01.627 9000 TIP 443913 5444 6117138 2024-02-29 18:56:12.553 2024-02-29 18:56:12.553 10000 FEE 444068 11523 6117146 2024-02-29 18:57:04.987 2024-02-29 18:57:04.987 12000 FEE 444068 21140 6117147 2024-02-29 18:57:04.987 2024-02-29 18:57:04.987 108000 TIP 444068 19044 6117164 2024-02-29 18:57:34.657 2024-02-29 18:57:34.657 1000 FEE 443836 3392 6117165 2024-02-29 18:57:34.657 2024-02-29 18:57:34.657 9000 TIP 443836 5578 6117177 2024-02-29 18:58:15.242 2024-02-29 18:58:15.242 1000 FEE 444075 14152 6117180 2024-02-29 18:58:20.851 2024-02-29 18:58:20.851 1000 FEE 444063 20681 6117181 2024-02-29 18:58:20.851 2024-02-29 18:58:20.851 9000 TIP 444063 20852 6117184 2024-02-29 18:58:29.492 2024-02-29 18:58:29.492 3300 FEE 444034 2514 6117185 2024-02-29 18:58:29.492 2024-02-29 18:58:29.492 29700 TIP 444034 18690 6117190 2024-02-29 18:58:43.079 2024-02-29 18:58:43.079 5700 FEE 444076 19553 6117191 2024-02-29 18:58:43.079 2024-02-29 18:58:43.079 51300 TIP 444076 9367 6117221 2024-02-29 18:59:55.113 2024-02-29 18:59:55.113 1700 FEE 444053 1030 6117222 2024-02-29 18:59:55.113 2024-02-29 18:59:55.113 15300 TIP 444053 3979 6117277 2024-02-29 19:01:10.859 2024-02-29 19:01:10.859 4200 FEE 443627 20861 6117278 2024-02-29 19:01:10.859 2024-02-29 19:01:10.859 37800 TIP 443627 940 6117285 2024-02-29 19:01:16.167 2024-02-29 19:01:16.167 2100 FEE 443956 1425 6117286 2024-02-29 19:01:16.167 2024-02-29 19:01:16.167 18900 TIP 443956 6749 6117289 2024-02-29 19:01:16.564 2024-02-29 19:01:16.564 2100 FEE 443956 3377 6117290 2024-02-29 19:01:16.564 2024-02-29 19:01:16.564 18900 TIP 443956 19622 6117321 2024-02-29 19:01:52.19 2024-02-29 19:01:52.19 2100 FEE 443272 19329 6117322 2024-02-29 19:01:52.19 2024-02-29 19:01:52.19 18900 TIP 443272 17209 6117334 2024-02-29 19:02:09.136 2024-02-29 19:02:09.136 21000 FEE 444087 21048 6117346 2024-02-29 19:02:42.155 2024-02-29 19:02:42.155 2100 FEE 444063 19463 6117347 2024-02-29 19:02:42.155 2024-02-29 19:02:42.155 18900 TIP 444063 19259 6117387 2024-02-29 19:05:37.521 2024-02-29 19:05:37.521 100 FEE 443943 10719 6117388 2024-02-29 19:05:37.521 2024-02-29 19:05:37.521 900 TIP 443943 16638 6117389 2024-02-29 19:05:53.256 2024-02-29 19:05:53.256 100 FEE 443976 5757 6117390 2024-02-29 19:05:53.256 2024-02-29 19:05:53.256 900 TIP 443976 7418 6117414 2024-02-29 19:07:08.443 2024-02-29 19:07:08.443 1000 FEE 442751 20272 6117415 2024-02-29 19:07:08.443 2024-02-29 19:07:08.443 9000 TIP 442751 1602 6117458 2024-02-29 19:07:27.283 2024-02-29 19:07:27.283 1000 FEE 443861 6533 6117459 2024-02-29 19:07:27.283 2024-02-29 19:07:27.283 9000 TIP 443861 17042 6117496 2024-02-29 19:07:42.097 2024-02-29 19:07:42.097 1000 FEE 442965 11458 6117497 2024-02-29 19:07:42.097 2024-02-29 19:07:42.097 9000 TIP 442965 9290 6117509 2024-02-29 19:08:01.514 2024-02-29 19:08:01.514 1000 FEE 443390 11164 6051928 2024-02-24 08:31:05.149 2024-02-24 08:31:05.149 1000 STREAM 141924 11516 6051957 2024-02-24 08:37:05.189 2024-02-24 08:37:05.189 1000 STREAM 141924 18664 6116967 2024-02-29 18:49:21.597 2024-02-29 18:49:21.597 1000 FEE 440692 14650 6116968 2024-02-29 18:49:21.597 2024-02-29 18:49:21.597 9000 TIP 440692 19378 6116989 2024-02-29 18:50:14.942 2024-02-29 18:50:14.942 2100 FEE 443937 21242 6116990 2024-02-29 18:50:14.942 2024-02-29 18:50:14.942 18900 TIP 443937 2013 6116991 2024-02-29 18:50:18.422 2024-02-29 18:50:18.422 1000 FEE 441092 13406 6116992 2024-02-29 18:50:18.422 2024-02-29 18:50:18.422 9000 TIP 441092 21047 6116993 2024-02-29 18:50:18.599 2024-02-29 18:50:18.599 1000 FEE 441092 10638 6116994 2024-02-29 18:50:18.599 2024-02-29 18:50:18.599 9000 TIP 441092 20680 6117021 2024-02-29 18:50:44.635 2024-02-29 18:50:44.635 1000 FEE 441076 624 6117022 2024-02-29 18:50:44.635 2024-02-29 18:50:44.635 9000 TIP 441076 15052 6117029 2024-02-29 18:50:59.407 2024-02-29 18:50:59.407 1000 FEE 441011 8506 6117030 2024-02-29 18:50:59.407 2024-02-29 18:50:59.407 9000 TIP 441011 1428 6117056 2024-02-29 18:52:48.372 2024-02-29 18:52:48.372 1000 FEE 441181 21387 6117057 2024-02-29 18:52:48.372 2024-02-29 18:52:48.372 9000 TIP 441181 18500 6117069 2024-02-29 18:52:49.725 2024-02-29 18:52:49.725 1000 FEE 441181 8289 6117070 2024-02-29 18:52:49.725 2024-02-29 18:52:49.725 9000 TIP 441181 2233 6117071 2024-02-29 18:52:56.624 2024-02-29 18:52:56.624 1000 FEE 441057 12175 6117072 2024-02-29 18:52:56.624 2024-02-29 18:52:56.624 9000 TIP 441057 19263 6117073 2024-02-29 18:52:57.537 2024-02-29 18:52:57.537 1000 FEE 441057 1244 6117074 2024-02-29 18:52:57.537 2024-02-29 18:52:57.537 9000 TIP 441057 10493 6117075 2024-02-29 18:52:57.735 2024-02-29 18:52:57.735 1000 FEE 441057 9332 6117076 2024-02-29 18:52:57.735 2024-02-29 18:52:57.735 9000 TIP 441057 13547 6117115 2024-02-29 18:54:45.435 2024-02-29 18:54:45.435 1000 FEE 441243 1286 6117116 2024-02-29 18:54:45.435 2024-02-29 18:54:45.435 9000 TIP 441243 766 6117126 2024-02-29 18:55:06.673 2024-02-29 18:55:06.673 1000 FEE 444067 18524 6117131 2024-02-29 18:55:33.833 2024-02-29 18:55:33.833 1000 FEE 443794 16505 6117132 2024-02-29 18:55:33.833 2024-02-29 18:55:33.833 9000 TIP 443794 17519 6117148 2024-02-29 18:57:04.997 2024-02-29 18:57:04.997 1000 FEE 444071 19839 6117186 2024-02-29 18:58:29.729 2024-02-29 18:58:29.729 3300 FEE 444034 20551 6117187 2024-02-29 18:58:29.729 2024-02-29 18:58:29.729 29700 TIP 444034 20973 6117196 2024-02-29 18:58:55.507 2024-02-29 18:58:55.507 3100 FEE 444050 14168 6117197 2024-02-29 18:58:55.507 2024-02-29 18:58:55.507 27900 TIP 444050 5597 6117219 2024-02-29 18:59:54.233 2024-02-29 18:59:54.233 1700 FEE 444023 621 6117220 2024-02-29 18:59:54.233 2024-02-29 18:59:54.233 15300 TIP 444023 20180 6117230 2024-02-29 18:59:57.262 2024-02-29 18:59:57.262 1700 FEE 444055 18989 6117231 2024-02-29 18:59:57.262 2024-02-29 18:59:57.262 15300 TIP 444055 20775 6117241 2024-02-29 19:00:16.744 2024-02-29 19:00:16.744 100 FEE 443908 21292 6117242 2024-02-29 19:00:16.744 2024-02-29 19:00:16.744 900 TIP 443908 20861 6117255 2024-02-29 19:00:32.585 2024-02-29 19:00:32.585 100 FEE 443836 18180 6117256 2024-02-29 19:00:32.585 2024-02-29 19:00:32.585 900 TIP 443836 11458 6117294 2024-02-29 19:01:18.363 2024-02-29 19:01:18.363 7700 FEE 444078 14260 6117295 2024-02-29 19:01:18.363 2024-02-29 19:01:18.363 69300 TIP 444078 769 6117302 2024-02-29 19:01:30.292 2024-02-29 19:01:30.292 100 FEE 443775 11164 6117303 2024-02-29 19:01:30.292 2024-02-29 19:01:30.292 900 TIP 443775 946 6117332 2024-02-29 19:02:07.923 2024-02-29 19:02:07.923 100 FEE 443678 1737 6117333 2024-02-29 19:02:07.923 2024-02-29 19:02:07.923 900 TIP 443678 16289 6117337 2024-02-29 19:02:24.665 2024-02-29 19:02:24.665 100 FEE 443685 13076 6117338 2024-02-29 19:02:24.665 2024-02-29 19:02:24.665 900 TIP 443685 1007 6117360 2024-02-29 19:04:08.397 2024-02-29 19:04:08.397 1000 FEE 425118 1003 6117361 2024-02-29 19:04:08.397 2024-02-29 19:04:08.397 9000 TIP 425118 18262 6117368 2024-02-29 19:04:09.657 2024-02-29 19:04:09.657 1000 FEE 425118 18601 6117369 2024-02-29 19:04:09.657 2024-02-29 19:04:09.657 9000 TIP 425118 4304 6117372 2024-02-29 19:04:19.738 2024-02-29 19:04:19.738 900 FEE 444071 20026 6117373 2024-02-29 19:04:19.738 2024-02-29 19:04:19.738 8100 TIP 444071 19007 6117376 2024-02-29 19:04:37.165 2024-02-29 19:04:37.165 100 FEE 443944 18892 6117377 2024-02-29 19:04:37.165 2024-02-29 19:04:37.165 900 TIP 443944 1354 6117396 2024-02-29 19:06:09.689 2024-02-29 19:06:09.689 100 FEE 443955 21373 6117397 2024-02-29 19:06:09.689 2024-02-29 19:06:09.689 900 TIP 443955 18270 6117420 2024-02-29 19:07:09.136 2024-02-29 19:07:09.136 1000 FEE 442931 19235 6117421 2024-02-29 19:07:09.136 2024-02-29 19:07:09.136 9000 TIP 442931 826 6117434 2024-02-29 19:07:13.561 2024-02-29 19:07:13.561 1000 FEE 443274 20006 6117435 2024-02-29 19:07:13.561 2024-02-29 19:07:13.561 9000 TIP 443274 21369 6117440 2024-02-29 19:07:16.104 2024-02-29 19:07:16.104 1000 FEE 443583 4574 6117441 2024-02-29 19:07:16.104 2024-02-29 19:07:16.104 9000 TIP 443583 21242 6117444 2024-02-29 19:07:17.412 2024-02-29 19:07:17.412 1000 FEE 443617 9335 6117445 2024-02-29 19:07:17.412 2024-02-29 19:07:17.412 9000 TIP 443617 6164 6117448 2024-02-29 19:07:18.084 2024-02-29 19:07:18.084 1000 FEE 443577 4043 6117449 2024-02-29 19:07:18.084 2024-02-29 19:07:18.084 9000 TIP 443577 827 6117466 2024-02-29 19:07:28.642 2024-02-29 19:07:28.642 1000 FEE 443861 9342 6117467 2024-02-29 19:07:28.642 2024-02-29 19:07:28.642 9000 TIP 443861 2101 6117472 2024-02-29 19:07:29.69 2024-02-29 19:07:29.69 500 FEE 443914 987 6117473 2024-02-29 19:07:29.69 2024-02-29 19:07:29.69 4500 TIP 443914 6260 6117474 2024-02-29 19:07:30.096 2024-02-29 19:07:30.096 1000 FEE 443861 656 6117475 2024-02-29 19:07:30.096 2024-02-29 19:07:30.096 9000 TIP 443861 20581 6117476 2024-02-29 19:07:30.293 2024-02-29 19:07:30.293 1000 FEE 443861 18357 6117477 2024-02-29 19:07:30.293 2024-02-29 19:07:30.293 9000 TIP 443861 13174 6117490 2024-02-29 19:07:39.578 2024-02-29 19:07:39.578 1000 FEE 443679 3642 6117491 2024-02-29 19:07:39.578 2024-02-29 19:07:39.578 9000 TIP 443679 16406 6117492 2024-02-29 19:07:39.82 2024-02-29 19:07:39.82 1000 FEE 443679 9992 6117493 2024-02-29 19:07:39.82 2024-02-29 19:07:39.82 9000 TIP 443679 683 6117500 2024-02-29 19:07:44.014 2024-02-29 19:07:44.014 1000 FEE 443746 21430 6117501 2024-02-29 19:07:44.014 2024-02-29 19:07:44.014 9000 TIP 443746 16424 6117515 2024-02-29 19:08:03.623 2024-02-29 19:08:03.623 1000 FEE 442951 16706 6117516 2024-02-29 19:08:03.623 2024-02-29 19:08:03.623 9000 TIP 442951 15544 6117537 2024-02-29 19:11:10.262 2024-02-29 19:11:10.262 30000 FEE 444092 9351 6117538 2024-02-29 19:11:10.262 2024-02-29 19:11:10.262 270000 TIP 444092 18904 6117571 2024-02-29 19:12:07.495 2024-02-29 19:12:07.495 2000 FEE 443512 19016 6117572 2024-02-29 19:12:07.495 2024-02-29 19:12:07.495 18000 TIP 443512 21406 6117585 2024-02-29 19:12:24.746 2024-02-29 19:12:24.746 10000 FEE 444100 20514 6117607 2024-02-29 19:13:58.861 2024-02-29 19:13:58.861 2100 FEE 443878 17707 6117608 2024-02-29 19:13:58.861 2024-02-29 19:13:58.861 18900 TIP 443878 3642 6117611 2024-02-29 19:13:59.595 2024-02-29 19:13:59.595 2100 FEE 443878 15326 6117612 2024-02-29 19:13:59.595 2024-02-29 19:13:59.595 18900 TIP 443878 3456 6117613 2024-02-29 19:13:59.83 2024-02-29 19:13:59.83 2100 FEE 443878 15146 6117614 2024-02-29 19:13:59.83 2024-02-29 19:13:59.83 18900 TIP 443878 15594 6051973 2024-02-24 08:45:03.073 2024-02-24 08:45:03.073 1000 STREAM 141924 10771 6051986 2024-02-24 08:50:02.63 2024-02-24 08:50:02.63 1000 STREAM 141924 21539 6051989 2024-02-24 08:51:02.622 2024-02-24 08:51:02.622 1000 STREAM 141924 1208 6117049 2024-02-29 18:52:46.9 2024-02-29 18:52:46.9 51300 TIP 443306 960 6117062 2024-02-29 18:52:48.726 2024-02-29 18:52:48.726 20000 FEE 444062 18393 6117063 2024-02-29 18:52:48.853 2024-02-29 18:52:48.853 1000 FEE 441181 21509 6117064 2024-02-29 18:52:48.853 2024-02-29 18:52:48.853 9000 TIP 441181 631 6117078 2024-02-29 18:53:07.686 2024-02-29 18:53:07.686 1000 FEE 444051 21421 6117079 2024-02-29 18:53:07.686 2024-02-29 18:53:07.686 9000 TIP 444051 10818 6117090 2024-02-29 18:54:12.808 2024-02-29 18:54:12.808 1000 FEE 441610 21216 6117091 2024-02-29 18:54:12.808 2024-02-29 18:54:12.808 9000 TIP 441610 17817 6117123 2024-02-29 18:54:52.423 2024-02-29 18:54:52.423 1000 FEE 441228 5852 6117124 2024-02-29 18:54:52.423 2024-02-29 18:54:52.423 9000 TIP 441228 20153 6117127 2024-02-29 18:55:13.713 2024-02-29 18:55:13.713 1000 FEE 443745 19507 6117128 2024-02-29 18:55:13.713 2024-02-29 18:55:13.713 9000 TIP 443745 20657 6117129 2024-02-29 18:55:22.67 2024-02-29 18:55:22.67 1000 FEE 444040 5791 6117130 2024-02-29 18:55:22.67 2024-02-29 18:55:22.67 9000 TIP 444040 20701 6117141 2024-02-29 18:56:39.045 2024-02-29 18:56:39.045 100 FEE 444066 21481 6117142 2024-02-29 18:56:39.045 2024-02-29 18:56:39.045 900 TIP 444066 20500 6117149 2024-02-29 18:57:15.613 2024-02-29 18:57:15.613 100 FEE 444065 12346 6117150 2024-02-29 18:57:15.613 2024-02-29 18:57:15.613 900 TIP 444065 14202 6117160 2024-02-29 18:57:32.876 2024-02-29 18:57:32.876 2100 FEE 443790 6499 6117161 2024-02-29 18:57:32.876 2024-02-29 18:57:32.876 18900 TIP 443790 17001 6117168 2024-02-29 18:57:48.839 2024-02-29 18:57:48.839 1000 FEE 444073 5057 6117188 2024-02-29 18:58:33.764 2024-02-29 18:58:33.764 10000 FEE 444034 21332 6117189 2024-02-29 18:58:33.764 2024-02-29 18:58:33.764 90000 TIP 444034 979 6117194 2024-02-29 18:58:52.566 2024-02-29 18:58:52.566 100000 FEE 444078 6003 6117199 2024-02-29 18:59:10.593 2024-02-29 18:59:10.593 100 FEE 444056 20564 6117200 2024-02-29 18:59:10.593 2024-02-29 18:59:10.593 900 TIP 444056 21022 6117205 2024-02-29 18:59:27.866 2024-02-29 18:59:27.866 1000 FEE 444063 16839 6117206 2024-02-29 18:59:27.866 2024-02-29 18:59:27.866 9000 TIP 444063 16954 6117217 2024-02-29 18:59:41.154 2024-02-29 18:59:41.154 100 FEE 443951 660 6117218 2024-02-29 18:59:41.154 2024-02-29 18:59:41.154 900 TIP 443951 954 6117226 2024-02-29 18:59:56.16 2024-02-29 18:59:56.16 100 FEE 443945 1135 6117227 2024-02-29 18:59:56.16 2024-02-29 18:59:56.16 900 TIP 443945 5129 6117234 2024-02-29 19:00:05.332 2024-02-29 19:00:05.332 100 FEE 443917 4175 6117235 2024-02-29 19:00:05.332 2024-02-29 19:00:05.332 900 TIP 443917 3440 6117237 2024-02-29 19:00:07.132 2024-02-29 19:00:07.132 100 FEE 443915 20157 6117238 2024-02-29 19:00:07.132 2024-02-29 19:00:07.132 900 TIP 443915 802 6117245 2024-02-29 19:00:19.152 2024-02-29 19:00:19.152 100 FEE 443890 2088 6117246 2024-02-29 19:00:19.152 2024-02-29 19:00:19.152 900 TIP 443890 19156 6117251 2024-02-29 19:00:25.441 2024-02-29 19:00:25.441 100 FEE 443842 697 6117252 2024-02-29 19:00:25.441 2024-02-29 19:00:25.441 900 TIP 443842 21481 6117287 2024-02-29 19:01:16.358 2024-02-29 19:01:16.358 2100 FEE 443956 20980 6117288 2024-02-29 19:01:16.358 2024-02-29 19:01:16.358 18900 TIP 443956 10007 6117342 2024-02-29 19:02:35.662 2024-02-29 19:02:35.662 2100 FEE 444087 20655 6117343 2024-02-29 19:02:35.662 2024-02-29 19:02:35.662 18900 TIP 444087 20562 6117348 2024-02-29 19:02:45.095 2024-02-29 19:02:45.095 2100 FEE 444078 20299 6117349 2024-02-29 19:02:45.095 2024-02-29 19:02:45.095 18900 TIP 444078 21263 6117370 2024-02-29 19:04:19.27 2024-02-29 19:04:19.27 100 FEE 444071 16440 6117371 2024-02-29 19:04:19.27 2024-02-29 19:04:19.27 900 TIP 444071 7899 6117374 2024-02-29 19:04:21.48 2024-02-29 19:04:21.48 500 FEE 444034 5829 6117375 2024-02-29 19:04:21.48 2024-02-29 19:04:21.48 4500 TIP 444034 21228 6117391 2024-02-29 19:05:56.116 2024-02-29 19:05:56.116 1000 FEE 442576 15266 6117392 2024-02-29 19:05:56.116 2024-02-29 19:05:56.116 9000 TIP 442576 6765 6117403 2024-02-29 19:06:34.292 2024-02-29 19:06:34.292 100 FEE 444039 18815 6117404 2024-02-29 19:06:34.292 2024-02-29 19:06:34.292 900 TIP 444039 18583 6117418 2024-02-29 19:07:08.966 2024-02-29 19:07:08.966 1000 FEE 442931 18637 6117419 2024-02-29 19:07:08.966 2024-02-29 19:07:08.966 9000 TIP 442931 999 6051991 2024-02-24 08:53:03.7 2024-02-24 08:53:03.7 1000 STREAM 141924 14122 6051994 2024-02-24 08:54:03.715 2024-02-24 08:54:03.715 1000 STREAM 141924 12721 6051998 2024-02-24 08:56:03.759 2024-02-24 08:56:03.759 1000 STREAM 141924 5557 6052006 2024-02-24 08:58:03.78 2024-02-24 08:58:03.78 1000 STREAM 141924 11192 6052026 2024-02-24 09:02:03.822 2024-02-24 09:02:03.822 1000 STREAM 141924 768 6052049 2024-02-24 09:08:03.903 2024-02-24 09:08:03.903 1000 STREAM 141924 17523 6117125 2024-02-29 18:55:03.637 2024-02-29 18:55:03.637 1000 STREAM 141924 18601 6117170 2024-02-29 18:58:03.618 2024-02-29 18:58:03.618 1000 STREAM 141924 21088 6117198 2024-02-29 18:59:03.619 2024-02-29 18:59:03.619 1000 STREAM 141924 17526 6117331 2024-02-29 19:02:03.627 2024-02-29 19:02:03.627 1000 STREAM 141924 12277 6117350 2024-02-29 19:03:03.629 2024-02-29 19:03:03.629 1000 STREAM 141924 4167 6117356 2024-02-29 19:04:03.637 2024-02-29 19:04:03.637 1000 STREAM 141924 4238 6117393 2024-02-29 19:06:03.659 2024-02-29 19:06:03.659 1000 STREAM 141924 19031 6117517 2024-02-29 19:08:03.688 2024-02-29 19:08:03.688 1000 STREAM 141924 17094 6117529 2024-02-29 19:09:03.788 2024-02-29 19:09:03.788 1000 STREAM 141924 20660 6117532 2024-02-29 19:10:03.693 2024-02-29 19:10:03.693 1000 STREAM 141924 715 6117623 2024-02-29 19:16:04.111 2024-02-29 19:16:04.111 1000 STREAM 141924 13216 6117656 2024-02-29 19:20:04.184 2024-02-29 19:20:04.184 1000 STREAM 141924 9347 6117665 2024-02-29 19:21:04.147 2024-02-29 19:21:04.147 1000 STREAM 141924 19199 6117670 2024-02-29 19:22:04.167 2024-02-29 19:22:04.167 1000 STREAM 141924 16950 6117745 2024-02-29 19:27:04.206 2024-02-29 19:27:04.206 1000 STREAM 141924 19121 6117830 2024-02-29 19:28:04.204 2024-02-29 19:28:04.204 1000 STREAM 141924 1122 6117916 2024-02-29 19:32:04.213 2024-02-29 19:32:04.213 1000 STREAM 141924 10862 6117943 2024-02-29 19:34:04.273 2024-02-29 19:34:04.273 1000 STREAM 141924 17041 6117963 2024-02-29 19:36:04.279 2024-02-29 19:36:04.279 1000 STREAM 141924 18664 6117968 2024-02-29 19:38:04.291 2024-02-29 19:38:04.291 1000 STREAM 141924 4079 6117988 2024-02-29 19:39:04.279 2024-02-29 19:39:04.279 1000 STREAM 141924 13246 6118073 2024-02-29 19:44:04.343 2024-02-29 19:44:04.343 1000 STREAM 141924 2224 6118084 2024-02-29 19:46:04.337 2024-02-29 19:46:04.337 1000 STREAM 141924 1823 6118128 2024-02-29 19:53:04.375 2024-02-29 19:53:04.375 1000 STREAM 141924 3213 6052040 2024-02-24 09:03:35.567 2024-02-24 09:03:35.567 1000 FEE 436990 4570 6052041 2024-02-24 09:03:56.778 2024-02-24 09:03:56.778 1000 FEE 436991 18230 6052048 2024-02-24 09:07:33.805 2024-02-24 09:07:33.805 10000 FEE 436994 15697 6052054 2024-02-24 09:09:04.28 2024-02-24 09:09:04.28 1000 FEE 436720 2961 6052055 2024-02-24 09:09:04.28 2024-02-24 09:09:04.28 9000 TIP 436720 21624 6052057 2024-02-24 09:09:34.068 2024-02-24 09:09:34.068 1000 FEE 436997 2718 6052061 2024-02-24 09:10:21.102 2024-02-24 09:10:21.102 1000 FEE 434539 2156 6052062 2024-02-24 09:10:21.102 2024-02-24 09:10:21.102 9000 TIP 434539 1429 6052075 2024-02-24 09:14:24.046 2024-02-24 09:14:24.046 1000 FEE 437000 9354 6052146 2024-02-24 09:33:43.42 2024-02-24 09:33:43.42 100 FEE 436443 2780 6052147 2024-02-24 09:33:43.42 2024-02-24 09:33:43.42 900 TIP 436443 20745 6052152 2024-02-24 09:33:44.738 2024-02-24 09:33:44.738 2800 FEE 436967 12744 6052153 2024-02-24 09:33:44.738 2024-02-24 09:33:44.738 25200 TIP 436967 12268 6052174 2024-02-24 09:42:33.264 2024-02-24 09:42:33.264 100 FEE 436803 5865 6052175 2024-02-24 09:42:33.264 2024-02-24 09:42:33.264 900 TIP 436803 11091 6052182 2024-02-24 09:44:03.388 2024-02-24 09:44:03.388 1000 FEE 437022 17411 6052285 2024-02-24 10:23:52.568 2024-02-24 10:23:52.568 4000 FEE 436926 21494 6052286 2024-02-24 10:23:52.568 2024-02-24 10:23:52.568 36000 TIP 436926 20680 6052300 2024-02-24 10:26:09.069 2024-02-24 10:26:09.069 1000 FEE 436837 10690 6052301 2024-02-24 10:26:09.069 2024-02-24 10:26:09.069 9000 TIP 436837 700 6052315 2024-02-24 10:33:42.066 2024-02-24 10:33:42.066 1000 POLL 436759 4763 6052317 2024-02-24 10:34:22.283 2024-02-24 10:34:22.283 1000 FEE 436837 21249 6052318 2024-02-24 10:34:22.283 2024-02-24 10:34:22.283 9000 TIP 436837 6393 6052335 2024-02-24 10:34:25.9 2024-02-24 10:34:25.9 1000 FEE 436566 18220 6052336 2024-02-24 10:34:25.9 2024-02-24 10:34:25.9 9000 TIP 436566 21262 6052337 2024-02-24 10:34:26.936 2024-02-24 10:34:26.936 1000 FEE 436967 9336 6052338 2024-02-24 10:34:26.936 2024-02-24 10:34:26.936 9000 TIP 436967 17415 6052347 2024-02-24 10:34:29.159 2024-02-24 10:34:29.159 1000 FEE 436593 5538 6052348 2024-02-24 10:34:29.159 2024-02-24 10:34:29.159 9000 TIP 436593 2322 6052381 2024-02-24 10:35:36.772 2024-02-24 10:35:36.772 1000 FEE 436518 14731 6052382 2024-02-24 10:35:36.772 2024-02-24 10:35:36.772 9000 TIP 436518 9809 6052391 2024-02-24 10:35:47.159 2024-02-24 10:35:47.159 1000 FEE 436246 17713 6052392 2024-02-24 10:35:47.159 2024-02-24 10:35:47.159 9000 TIP 436246 8162 6052399 2024-02-24 10:35:53.628 2024-02-24 10:35:53.628 1000 FEE 437033 836 6052400 2024-02-24 10:35:53.628 2024-02-24 10:35:53.628 9000 TIP 437033 16356 6052405 2024-02-24 10:35:54.463 2024-02-24 10:35:54.463 1000 FEE 437026 3717 6052406 2024-02-24 10:35:54.463 2024-02-24 10:35:54.463 9000 TIP 437026 21342 6052407 2024-02-24 10:35:54.73 2024-02-24 10:35:54.73 1000 FEE 437025 19502 6052408 2024-02-24 10:35:54.73 2024-02-24 10:35:54.73 9000 TIP 437025 20623 6052419 2024-02-24 10:36:00.399 2024-02-24 10:36:00.399 1000 FEE 436983 17517 6052420 2024-02-24 10:36:00.399 2024-02-24 10:36:00.399 9000 TIP 436983 12158 6052425 2024-02-24 10:36:02.193 2024-02-24 10:36:02.193 1000 FEE 436977 19570 6052426 2024-02-24 10:36:02.193 2024-02-24 10:36:02.193 9000 TIP 436977 6688 6052443 2024-02-24 10:36:26.633 2024-02-24 10:36:26.633 1000 FEE 436909 19668 6052444 2024-02-24 10:36:26.633 2024-02-24 10:36:26.633 9000 TIP 436909 1817 6052457 2024-02-24 10:36:30.285 2024-02-24 10:36:30.285 1000 FEE 436856 8326 6052458 2024-02-24 10:36:30.285 2024-02-24 10:36:30.285 9000 TIP 436856 6430 6052483 2024-02-24 10:40:26.074 2024-02-24 10:40:26.074 1000 FEE 437038 15146 6052490 2024-02-24 10:42:14.076 2024-02-24 10:42:14.076 1000 FEE 437040 19502 6052499 2024-02-24 10:48:56.922 2024-02-24 10:48:56.922 500 FEE 436970 20490 6052500 2024-02-24 10:48:56.922 2024-02-24 10:48:56.922 4500 TIP 436970 21072 6052513 2024-02-24 10:54:50.279 2024-02-24 10:54:50.279 100 FEE 436561 11866 6052514 2024-02-24 10:54:50.279 2024-02-24 10:54:50.279 900 TIP 436561 18641 6052527 2024-02-24 11:00:19.664 2024-02-24 11:00:19.664 10000 FEE 436720 19837 6052528 2024-02-24 11:00:19.664 2024-02-24 11:00:19.664 90000 TIP 436720 1658 6052541 2024-02-24 11:04:49.952 2024-02-24 11:04:49.952 1000 FEE 437046 9331 6052549 2024-02-24 11:05:39.961 2024-02-24 11:05:39.961 10000 FEE 436720 19938 6052550 2024-02-24 11:05:39.961 2024-02-24 11:05:39.961 90000 TIP 436720 16341 6052557 2024-02-24 11:10:37.274 2024-02-24 11:10:37.274 0 FEE 437047 9796 6052566 2024-02-24 11:14:56.017 2024-02-24 11:14:56.017 2100 FEE 436869 2077 6052567 2024-02-24 11:14:56.017 2024-02-24 11:14:56.017 18900 TIP 436869 14260 6052593 2024-02-24 11:22:10.47 2024-02-24 11:22:10.47 100 FEE 436556 10690 6052594 2024-02-24 11:22:10.47 2024-02-24 11:22:10.47 900 TIP 436556 19938 6052645 2024-02-24 11:36:58.24 2024-02-24 11:36:58.24 10000 FEE 436970 10352 6052646 2024-02-24 11:36:58.24 2024-02-24 11:36:58.24 90000 TIP 436970 19375 6052651 2024-02-24 11:37:30.192 2024-02-24 11:37:30.192 1000 FEE 437057 9242 6052678 2024-02-24 11:42:23.801 2024-02-24 11:42:23.801 1000 FEE 436969 713 6052679 2024-02-24 11:42:23.801 2024-02-24 11:42:23.801 9000 TIP 436969 20310 6052686 2024-02-24 11:46:50.096 2024-02-24 11:46:50.096 1000 FEE 436750 1175 6052687 2024-02-24 11:46:50.096 2024-02-24 11:46:50.096 9000 TIP 436750 18675 6052691 2024-02-24 11:47:46.26 2024-02-24 11:47:46.26 1100 FEE 436623 18101 6052692 2024-02-24 11:47:46.26 2024-02-24 11:47:46.26 9900 TIP 436623 16867 6052698 2024-02-24 11:48:30.87 2024-02-24 11:48:30.87 1000 FEE 437061 1836 6052709 2024-02-24 11:49:48.785 2024-02-24 11:49:48.785 1000 FEE 436802 2361 6052710 2024-02-24 11:49:48.785 2024-02-24 11:49:48.785 9000 TIP 436802 21003 6052770 2024-02-24 12:05:06.307 2024-02-24 12:05:06.307 10000 FEE 437072 17797 6052790 2024-02-24 12:10:41.062 2024-02-24 12:10:41.062 100000 FEE 437077 20811 6052805 2024-02-24 12:18:32.034 2024-02-24 12:18:32.034 1000 FEE 436837 1010 6052806 2024-02-24 12:18:32.034 2024-02-24 12:18:32.034 9000 TIP 436837 2734 6052816 2024-02-24 12:21:05.462 2024-02-24 12:21:05.462 1000 FEE 437081 15100 6052832 2024-02-24 12:23:34.027 2024-02-24 12:23:34.027 0 FEE 437081 4304 6052837 2024-02-24 12:23:46.064 2024-02-24 12:23:46.064 1000 FEE 437088 17602 6052870 2024-02-24 12:30:58.408 2024-02-24 12:30:58.408 1000 FEE 437091 21212 6052872 2024-02-24 12:31:17.724 2024-02-24 12:31:17.724 1000 FEE 437078 2757 6052873 2024-02-24 12:31:17.724 2024-02-24 12:31:17.724 9000 TIP 437078 17116 6052889 2024-02-24 12:35:05.937 2024-02-24 12:35:05.937 2100 FEE 437090 2361 6052890 2024-02-24 12:35:05.937 2024-02-24 12:35:05.937 18900 TIP 437090 3400 6052891 2024-02-24 12:35:57.48 2024-02-24 12:35:57.48 210000 FEE 437099 19773 6052904 2024-02-24 12:38:35.486 2024-02-24 12:38:35.486 1000 FEE 437105 6653 6052911 2024-02-24 12:40:37.765 2024-02-24 12:40:37.765 2100 FEE 435847 19527 6052912 2024-02-24 12:40:37.765 2024-02-24 12:40:37.765 18900 TIP 435847 1772 6052921 2024-02-24 12:40:56.9 2024-02-24 12:40:56.9 300 FEE 436720 746 6052922 2024-02-24 12:40:56.9 2024-02-24 12:40:56.9 2700 TIP 436720 20514 6052925 2024-02-24 12:40:57.224 2024-02-24 12:40:57.224 300 FEE 436720 5791 6052926 2024-02-24 12:40:57.224 2024-02-24 12:40:57.224 2700 TIP 436720 980 6052927 2024-02-24 12:40:57.444 2024-02-24 12:40:57.444 300 FEE 436720 20117 6052928 2024-02-24 12:40:57.444 2024-02-24 12:40:57.444 2700 TIP 436720 5017 6052939 2024-02-24 12:40:58.366 2024-02-24 12:40:58.366 300 FEE 436720 5961 6052940 2024-02-24 12:40:58.366 2024-02-24 12:40:58.366 2700 TIP 436720 20490 6052996 2024-02-24 12:46:31.883 2024-02-24 12:46:31.883 1000 FEE 437119 1471 6053009 2024-02-24 12:47:52.228 2024-02-24 12:47:52.228 1000 FEE 437127 18830 6053015 2024-02-24 12:48:35.373 2024-02-24 12:48:35.373 1000 FEE 437132 7827 6053022 2024-02-24 12:49:33.053 2024-02-24 12:49:33.053 1000 FEE 437138 16350 6053081 2024-02-24 12:56:09.462 2024-02-24 12:56:09.462 2100 FEE 436934 18842 6053082 2024-02-24 12:56:09.462 2024-02-24 12:56:09.462 18900 TIP 436934 687 6052042 2024-02-24 09:04:03.122 2024-02-24 09:04:03.122 1000 STREAM 141924 21413 6052043 2024-02-24 09:05:03.147 2024-02-24 09:05:03.147 1000 STREAM 141924 20817 6052069 2024-02-24 09:11:03.157 2024-02-24 09:11:03.157 1000 STREAM 141924 15690 6052077 2024-02-24 09:15:03.178 2024-02-24 09:15:03.178 1000 STREAM 141924 15196 6052080 2024-02-24 09:16:03.206 2024-02-24 09:16:03.206 1000 STREAM 141924 621 6052081 2024-02-24 09:17:03.201 2024-02-24 09:17:03.201 1000 STREAM 141924 9351 6052086 2024-02-24 09:18:03.202 2024-02-24 09:18:03.202 1000 STREAM 141924 16830 6052099 2024-02-24 09:22:03.234 2024-02-24 09:22:03.234 1000 STREAM 141924 13399 6052104 2024-02-24 09:23:03.238 2024-02-24 09:23:03.238 1000 STREAM 141924 9874 6052107 2024-02-24 09:24:03.25 2024-02-24 09:24:03.25 1000 STREAM 141924 21457 6052120 2024-02-24 09:27:03.274 2024-02-24 09:27:03.274 1000 STREAM 141924 18368 6052123 2024-02-24 09:28:03.265 2024-02-24 09:28:03.265 1000 STREAM 141924 17171 6052133 2024-02-24 09:31:03.29 2024-02-24 09:31:03.29 1000 STREAM 141924 9352 6052140 2024-02-24 09:32:03.287 2024-02-24 09:32:03.287 1000 STREAM 141924 16842 6052145 2024-02-24 09:33:03.3 2024-02-24 09:33:03.3 1000 STREAM 141924 976 6052157 2024-02-24 09:35:03.32 2024-02-24 09:35:03.32 1000 STREAM 141924 13327 6052164 2024-02-24 09:38:03.342 2024-02-24 09:38:03.342 1000 STREAM 141924 10821 6052168 2024-02-24 09:41:03.377 2024-02-24 09:41:03.377 1000 STREAM 141924 649 6052180 2024-02-24 09:43:03.382 2024-02-24 09:43:03.382 1000 STREAM 141924 15148 6052183 2024-02-24 09:45:03.425 2024-02-24 09:45:03.425 1000 STREAM 141924 18660 6052185 2024-02-24 09:46:03.428 2024-02-24 09:46:03.428 1000 STREAM 141924 20554 6052208 2024-02-24 09:49:03.428 2024-02-24 09:49:03.428 1000 STREAM 141924 8284 6052224 2024-02-24 09:54:03.447 2024-02-24 09:54:03.447 1000 STREAM 141924 3392 6052234 2024-02-24 09:58:03.489 2024-02-24 09:58:03.489 1000 STREAM 141924 13921 6052236 2024-02-24 10:00:03.51 2024-02-24 10:00:03.51 1000 STREAM 141924 980 6052242 2024-02-24 10:06:03.542 2024-02-24 10:06:03.542 1000 STREAM 141924 9290 6052249 2024-02-24 10:11:03.555 2024-02-24 10:11:03.555 1000 STREAM 141924 21418 6052270 2024-02-24 10:21:03.591 2024-02-24 10:21:03.591 1000 STREAM 141924 15147 6052313 2024-02-24 10:32:03.633 2024-02-24 10:32:03.633 1000 STREAM 141924 1602 6052431 2024-02-24 10:36:03.643 2024-02-24 10:36:03.643 1000 STREAM 141924 657 6117203 2024-02-29 18:59:20.434 2024-02-29 18:59:20.434 100 FEE 444036 8648 6117204 2024-02-29 18:59:20.434 2024-02-29 18:59:20.434 900 TIP 444036 9177 6117207 2024-02-29 18:59:28.08 2024-02-29 18:59:28.08 1000 FEE 444063 12278 6117208 2024-02-29 18:59:28.08 2024-02-29 18:59:28.08 9000 TIP 444063 21033 6117213 2024-02-29 18:59:35.617 2024-02-29 18:59:35.617 100 FEE 443964 19806 6117214 2024-02-29 18:59:35.617 2024-02-29 18:59:35.617 900 TIP 443964 18557 6117257 2024-02-29 19:00:34.261 2024-02-29 19:00:34.261 100 FEE 443833 1213 6117258 2024-02-29 19:00:34.261 2024-02-29 19:00:34.261 900 TIP 443833 20481 6117267 2024-02-29 19:00:41.414 2024-02-29 19:00:41.414 2100 FEE 443836 5557 6117268 2024-02-29 19:00:41.414 2024-02-29 19:00:41.414 18900 TIP 443836 20981 6117275 2024-02-29 19:01:10.852 2024-02-29 19:01:10.852 2100 FEE 443627 16289 6117276 2024-02-29 19:01:10.852 2024-02-29 19:01:10.852 18900 TIP 443627 17321 6117280 2024-02-29 19:01:12.249 2024-02-29 19:01:12.249 2100 FEE 443627 9421 6117281 2024-02-29 19:01:12.249 2024-02-29 19:01:12.249 18900 TIP 443627 7992 6117291 2024-02-29 19:01:16.832 2024-02-29 19:01:16.832 2100 FEE 443956 19910 6117292 2024-02-29 19:01:16.832 2024-02-29 19:01:16.832 18900 TIP 443956 19512 6117293 2024-02-29 19:01:17.814 2024-02-29 19:01:17.814 1000 POLL 444078 1135 6117300 2024-02-29 19:01:27.689 2024-02-29 19:01:27.689 2100 FEE 443723 12356 6117301 2024-02-29 19:01:27.689 2024-02-29 19:01:27.689 18900 TIP 443723 768 6117310 2024-02-29 19:01:41.276 2024-02-29 19:01:41.276 1000 FEE 444063 4574 6117311 2024-02-29 19:01:41.276 2024-02-29 19:01:41.276 9000 TIP 444063 11263 6117318 2024-02-29 19:01:49.879 2024-02-29 19:01:49.879 1000 FEE 444086 17707 6117323 2024-02-29 19:01:52.864 2024-02-29 19:01:52.864 2100 FEE 443272 21624 6117324 2024-02-29 19:01:52.864 2024-02-29 19:01:52.864 18900 TIP 443272 9921 6117327 2024-02-29 19:01:58.198 2024-02-29 19:01:58.198 100 FEE 443704 13198 6117328 2024-02-29 19:01:58.198 2024-02-29 19:01:58.198 900 TIP 443704 21620 6117352 2024-02-29 19:03:18.577 2024-02-29 19:03:18.577 0 FEE 444087 8360 6117353 2024-02-29 19:03:37.374 2024-02-29 19:03:37.374 1000 FEE 444090 20840 6117357 2024-02-29 19:04:04.265 2024-02-29 19:04:04.265 100000 FEE 444091 19417 6117385 2024-02-29 19:05:16.172 2024-02-29 19:05:16.172 1000 FEE 443907 20500 6117386 2024-02-29 19:05:16.172 2024-02-29 19:05:16.172 9000 TIP 443907 7097 6117410 2024-02-29 19:07:07.813 2024-02-29 19:07:07.813 1000 FEE 442904 21527 6117411 2024-02-29 19:07:07.813 2024-02-29 19:07:07.813 9000 TIP 442904 18446 6117430 2024-02-29 19:07:12.079 2024-02-29 19:07:12.079 1000 FEE 444026 21248 6117431 2024-02-29 19:07:12.079 2024-02-29 19:07:12.079 9000 TIP 444026 12609 6117436 2024-02-29 19:07:13.992 2024-02-29 19:07:13.992 1000 FEE 442820 20904 6117437 2024-02-29 19:07:13.992 2024-02-29 19:07:13.992 9000 TIP 442820 8472 6117438 2024-02-29 19:07:15.211 2024-02-29 19:07:15.211 1000 FEE 443745 21614 6117439 2024-02-29 19:07:15.211 2024-02-29 19:07:15.211 9000 TIP 443745 20143 6117450 2024-02-29 19:07:19.396 2024-02-29 19:07:19.396 1000 FEE 443011 1631 6117451 2024-02-29 19:07:19.396 2024-02-29 19:07:19.396 9000 TIP 443011 8498 6117468 2024-02-29 19:07:28.9 2024-02-29 19:07:28.9 1000 FEE 443861 5904 6117469 2024-02-29 19:07:28.9 2024-02-29 19:07:28.9 9000 TIP 443861 20619 6117482 2024-02-29 19:07:32.01 2024-02-29 19:07:32.01 1000 FEE 442769 1261 6117483 2024-02-29 19:07:32.01 2024-02-29 19:07:32.01 9000 TIP 442769 18877 6117518 2024-02-29 19:08:05.382 2024-02-29 19:08:05.382 1000 FEE 442946 13177 6117519 2024-02-29 19:08:05.382 2024-02-29 19:08:05.382 9000 TIP 442946 1800 6117520 2024-02-29 19:08:05.741 2024-02-29 19:08:05.741 1000 FEE 443296 17171 6117521 2024-02-29 19:08:05.741 2024-02-29 19:08:05.741 9000 TIP 443296 19690 6117541 2024-02-29 19:11:49.161 2024-02-29 19:11:49.161 2000 FEE 443572 6164 6117542 2024-02-29 19:11:49.161 2024-02-29 19:11:49.161 18000 TIP 443572 18809 6117543 2024-02-29 19:11:50.556 2024-02-29 19:11:50.556 2000 FEE 442785 2735 6117544 2024-02-29 19:11:50.556 2024-02-29 19:11:50.556 18000 TIP 442785 21323 6117620 2024-02-29 19:14:10.932 2024-02-29 19:14:10.932 2100 FEE 443830 11395 6117621 2024-02-29 19:14:10.932 2024-02-29 19:14:10.932 18900 TIP 443830 17541 6117654 2024-02-29 19:19:34.097 2024-02-29 19:19:34.097 50000 FEE 442024 11477 6117655 2024-02-29 19:19:34.097 2024-02-29 19:19:34.097 450000 TIP 442024 1720 6117675 2024-02-29 19:23:21.882 2024-02-29 19:23:21.882 100000 FEE 444108 1495 6117681 2024-02-29 19:24:23.58 2024-02-29 19:24:23.58 1000 FEE 444109 2000 6117694 2024-02-29 19:25:21.949 2024-02-29 19:25:21.949 3300 FEE 434440 20495 6117695 2024-02-29 19:25:21.949 2024-02-29 19:25:21.949 29700 TIP 434440 16788 6117707 2024-02-29 19:26:19.48 2024-02-29 19:26:19.48 2100 FEE 443545 10342 6117708 2024-02-29 19:26:19.48 2024-02-29 19:26:19.48 18900 TIP 443545 14122 6117713 2024-02-29 19:26:20.182 2024-02-29 19:26:20.182 2100 FEE 443545 16788 6117714 2024-02-29 19:26:20.182 2024-02-29 19:26:20.182 18900 TIP 443545 9655 6117722 2024-02-29 19:26:36.122 2024-02-29 19:26:36.122 2100 FEE 443903 19309 6117723 2024-02-29 19:26:36.122 2024-02-29 19:26:36.122 18900 TIP 443903 14045 6052159 2024-02-24 09:36:04.11 2024-02-24 09:36:04.11 1000 STREAM 141924 19282 6117240 2024-02-29 19:00:14.99 2024-02-29 19:00:14.99 900 TIP 443911 18380 6117247 2024-02-29 19:00:21.26 2024-02-29 19:00:21.26 100 FEE 443867 12291 6117248 2024-02-29 19:00:21.26 2024-02-29 19:00:21.26 900 TIP 443867 12072 6117270 2024-02-29 19:01:09.883 2024-02-29 19:01:09.883 1000 FEE 444083 12483 6117271 2024-02-29 19:01:10.132 2024-02-29 19:01:10.132 2100 FEE 443627 1881 6117272 2024-02-29 19:01:10.132 2024-02-29 19:01:10.132 18900 TIP 443627 11621 6117273 2024-02-29 19:01:10.34 2024-02-29 19:01:10.34 2100 FEE 443627 19403 6117274 2024-02-29 19:01:10.34 2024-02-29 19:01:10.34 18900 TIP 443627 5597 6117282 2024-02-29 19:01:14.198 2024-02-29 19:01:14.198 1000 FEE 444085 21555 6117316 2024-02-29 19:01:49.261 2024-02-29 19:01:49.261 100 FEE 443734 21457 6117317 2024-02-29 19:01:49.261 2024-02-29 19:01:49.261 900 TIP 443734 780 6117325 2024-02-29 19:01:52.877 2024-02-29 19:01:52.877 2100 FEE 443272 21263 6117326 2024-02-29 19:01:52.877 2024-02-29 19:01:52.877 18900 TIP 443272 980 6117340 2024-02-29 19:02:33.877 2024-02-29 19:02:33.877 2100 FEE 444085 664 6117341 2024-02-29 19:02:33.877 2024-02-29 19:02:33.877 18900 TIP 444085 1800 6117344 2024-02-29 19:02:38.884 2024-02-29 19:02:38.884 2100 FEE 444076 11288 6117345 2024-02-29 19:02:38.884 2024-02-29 19:02:38.884 18900 TIP 444076 5752 6117401 2024-02-29 19:06:26.103 2024-02-29 19:06:26.103 100 FEE 444038 11491 6117402 2024-02-29 19:06:26.103 2024-02-29 19:06:26.103 900 TIP 444038 19689 6117407 2024-02-29 19:07:00.512 2024-02-29 19:07:00.512 500 FEE 444060 18235 6117408 2024-02-29 19:07:00.512 2024-02-29 19:07:00.512 4500 TIP 444060 20757 6117422 2024-02-29 19:07:09.811 2024-02-29 19:07:09.811 1000 FEE 443272 21599 6117423 2024-02-29 19:07:09.811 2024-02-29 19:07:09.811 9000 TIP 443272 4035 6117426 2024-02-29 19:07:11.424 2024-02-29 19:07:11.424 1000 FEE 443799 12334 6117427 2024-02-29 19:07:11.424 2024-02-29 19:07:11.424 9000 TIP 443799 20614 6117442 2024-02-29 19:07:16.383 2024-02-29 19:07:16.383 1000 FEE 442627 992 6117443 2024-02-29 19:07:16.383 2024-02-29 19:07:16.383 9000 TIP 442627 18174 6117498 2024-02-29 19:07:43.801 2024-02-29 19:07:43.801 1000 FEE 443746 1480 6117499 2024-02-29 19:07:43.801 2024-02-29 19:07:43.801 9000 TIP 443746 20811 6117513 2024-02-29 19:08:03.141 2024-02-29 19:08:03.141 1000 FEE 442893 658 6117514 2024-02-29 19:08:03.141 2024-02-29 19:08:03.141 9000 TIP 442893 673 6117524 2024-02-29 19:08:08.869 2024-02-29 19:08:08.869 1000 FEE 443839 11996 6117525 2024-02-29 19:08:08.869 2024-02-29 19:08:08.869 9000 TIP 443839 780 6117526 2024-02-29 19:08:09.11 2024-02-29 19:08:09.11 1000 FEE 443923 18402 6117527 2024-02-29 19:08:09.11 2024-02-29 19:08:09.11 9000 TIP 443923 15858 6117536 2024-02-29 19:11:07.163 2024-02-29 19:11:07.163 1000 FEE 444098 14370 6117547 2024-02-29 19:11:51.992 2024-02-29 19:11:51.992 2000 FEE 442702 19142 6117548 2024-02-29 19:11:51.992 2024-02-29 19:11:51.992 18000 TIP 442702 21356 6117550 2024-02-29 19:11:52.206 2024-02-29 19:11:52.206 2000 FEE 442702 2151 6117551 2024-02-29 19:11:52.206 2024-02-29 19:11:52.206 18000 TIP 442702 19613 6117556 2024-02-29 19:11:58.08 2024-02-29 19:11:58.08 2000 FEE 443059 18177 6117557 2024-02-29 19:11:58.08 2024-02-29 19:11:58.08 18000 TIP 443059 1772 6117558 2024-02-29 19:11:58.328 2024-02-29 19:11:58.328 2000 FEE 443059 1286 6117559 2024-02-29 19:11:58.328 2024-02-29 19:11:58.328 18000 TIP 443059 18877 6117583 2024-02-29 19:12:15.401 2024-02-29 19:12:15.401 2000 FEE 443834 20751 6117584 2024-02-29 19:12:15.401 2024-02-29 19:12:15.401 18000 TIP 443834 10818 6117588 2024-02-29 19:12:31.517 2024-02-29 19:12:31.517 1000 FEE 444099 1741 6117589 2024-02-29 19:12:31.517 2024-02-29 19:12:31.517 9000 TIP 444099 11938 6117590 2024-02-29 19:12:39.16 2024-02-29 19:12:39.16 1000 FEE 444007 16789 6117591 2024-02-29 19:12:39.16 2024-02-29 19:12:39.16 9000 TIP 444007 919 6117594 2024-02-29 19:13:43.351 2024-02-29 19:13:43.351 0 FEE 444100 18500 6117605 2024-02-29 19:13:58.568 2024-02-29 19:13:58.568 2100 FEE 443878 14503 6117606 2024-02-29 19:13:58.568 2024-02-29 19:13:58.568 18900 TIP 443878 14357 6117647 2024-02-29 19:19:04.92 2024-02-29 19:19:04.92 2100 FEE 443923 16706 6117648 2024-02-29 19:19:04.92 2024-02-29 19:19:04.92 18900 TIP 443923 3990 6117657 2024-02-29 19:20:25.218 2024-02-29 19:20:25.218 500 FEE 444098 20062 6117658 2024-02-29 19:20:25.218 2024-02-29 19:20:25.218 4500 TIP 444098 18235 6117688 2024-02-29 19:25:18.505 2024-02-29 19:25:18.505 500 FEE 443712 13097 6117689 2024-02-29 19:25:18.505 2024-02-29 19:25:18.505 4500 TIP 443712 5129 6052199 2024-02-24 09:48:26.084 2024-02-24 09:48:26.084 900 TIP 436935 1628 6052204 2024-02-24 09:48:28.39 2024-02-24 09:48:28.39 100 FEE 436935 5069 6052205 2024-02-24 09:48:28.39 2024-02-24 09:48:28.39 900 TIP 436935 1650 6052247 2024-02-24 10:11:00.637 2024-02-24 10:11:00.637 3000 FEE 436788 1960 6052248 2024-02-24 10:11:00.637 2024-02-24 10:11:00.637 27000 TIP 436788 1480 6052289 2024-02-24 10:23:55.425 2024-02-24 10:23:55.425 4000 FEE 436827 16126 6052290 2024-02-24 10:23:55.425 2024-02-24 10:23:55.425 36000 TIP 436827 1802 6052293 2024-02-24 10:24:51.854 2024-02-24 10:24:51.854 1000 FEE 436566 1310 6052294 2024-02-24 10:24:51.854 2024-02-24 10:24:51.854 9000 TIP 436566 18446 6052325 2024-02-24 10:34:23.536 2024-02-24 10:34:23.536 1000 FEE 436720 14941 6052326 2024-02-24 10:34:23.536 2024-02-24 10:34:23.536 9000 TIP 436720 9166 6052331 2024-02-24 10:34:25.247 2024-02-24 10:34:25.247 1000 FEE 436792 19810 6052332 2024-02-24 10:34:25.247 2024-02-24 10:34:25.247 9000 TIP 436792 19557 6052333 2024-02-24 10:34:25.566 2024-02-24 10:34:25.566 1000 FEE 436752 21180 6052334 2024-02-24 10:34:25.566 2024-02-24 10:34:25.566 9000 TIP 436752 21406 6052349 2024-02-24 10:34:29.441 2024-02-24 10:34:29.441 1000 FEE 436759 14357 6052350 2024-02-24 10:34:29.441 2024-02-24 10:34:29.441 9000 TIP 436759 19967 6052363 2024-02-24 10:35:27.451 2024-02-24 10:35:27.451 1000 FEE 436376 19282 6052364 2024-02-24 10:35:27.451 2024-02-24 10:35:27.451 9000 TIP 436376 19813 6052369 2024-02-24 10:35:33.01 2024-02-24 10:35:33.01 1000 FEE 436367 19613 6052370 2024-02-24 10:35:33.01 2024-02-24 10:35:33.01 9000 TIP 436367 18626 6052413 2024-02-24 10:35:58.639 2024-02-24 10:35:58.639 1000 FEE 436995 12609 6052414 2024-02-24 10:35:58.639 2024-02-24 10:35:58.639 9000 TIP 436995 18392 6052415 2024-02-24 10:35:59.533 2024-02-24 10:35:59.533 1000 FEE 436994 20454 6052416 2024-02-24 10:35:59.533 2024-02-24 10:35:59.533 9000 TIP 436994 19016 6052417 2024-02-24 10:36:00.024 2024-02-24 10:36:00.024 1000 FEE 436985 11996 6052418 2024-02-24 10:36:00.024 2024-02-24 10:36:00.024 9000 TIP 436985 18378 6052453 2024-02-24 10:36:28.976 2024-02-24 10:36:28.976 1000 FEE 436869 2233 6052454 2024-02-24 10:36:28.976 2024-02-24 10:36:28.976 9000 TIP 436869 20302 6052455 2024-02-24 10:36:29.201 2024-02-24 10:36:29.201 1000 FEE 436866 9809 6052456 2024-02-24 10:36:29.201 2024-02-24 10:36:29.201 9000 TIP 436866 8416 6052487 2024-02-24 10:41:22.755 2024-02-24 10:41:22.755 1000 POLL 436759 12160 6052494 2024-02-24 10:45:20.591 2024-02-24 10:45:20.591 0 FEE 437040 8570 6052508 2024-02-24 10:53:15.546 2024-02-24 10:53:15.546 1000 FEE 437041 18174 6052546 2024-02-24 11:05:05.074 2024-02-24 11:05:05.074 5000 FEE 428556 1209 6052547 2024-02-24 11:05:05.074 2024-02-24 11:05:05.074 45000 TIP 428556 12261 6052576 2024-02-24 11:16:35.904 2024-02-24 11:16:35.904 1000 FEE 437050 14449 6052615 2024-02-24 11:29:09.618 2024-02-24 11:29:09.618 2100 FEE 436995 19639 6052616 2024-02-24 11:29:09.618 2024-02-24 11:29:09.618 18900 TIP 436995 6160 6052617 2024-02-24 11:29:16.5 2024-02-24 11:29:16.5 1000 FEE 437025 15521 6052618 2024-02-24 11:29:16.5 2024-02-24 11:29:16.5 9000 TIP 437025 18862 6052620 2024-02-24 11:30:25.18 2024-02-24 11:30:25.18 1000 FEE 437008 21072 6052621 2024-02-24 11:30:25.18 2024-02-24 11:30:25.18 9000 TIP 437008 7425 6052628 2024-02-24 11:32:58.93 2024-02-24 11:32:58.93 500 FEE 437050 16355 6052629 2024-02-24 11:32:58.93 2024-02-24 11:32:58.93 4500 TIP 437050 16356 6052631 2024-02-24 11:33:56.732 2024-02-24 11:33:56.732 7000 FEE 437054 18180 6052647 2024-02-24 11:36:59.564 2024-02-24 11:36:59.564 1000 FEE 437056 14122 6052656 2024-02-24 11:39:17.078 2024-02-24 11:39:17.078 1000 FEE 436981 20691 6052657 2024-02-24 11:39:17.078 2024-02-24 11:39:17.078 9000 TIP 436981 11898 6052662 2024-02-24 11:39:27.422 2024-02-24 11:39:27.422 10000 FEE 437033 15049 6052663 2024-02-24 11:39:27.422 2024-02-24 11:39:27.422 90000 TIP 437033 14385 6052666 2024-02-24 11:39:27.984 2024-02-24 11:39:27.984 10000 FEE 437033 20090 6052667 2024-02-24 11:39:27.984 2024-02-24 11:39:27.984 90000 TIP 437033 2513 6052675 2024-02-24 11:42:08.677 2024-02-24 11:42:08.677 1000 FEE 437060 18460 6052689 2024-02-24 11:47:19.388 2024-02-24 11:47:19.388 1000 FEE 436799 9364 6052690 2024-02-24 11:47:19.388 2024-02-24 11:47:19.388 9000 TIP 436799 10016 6052711 2024-02-24 11:49:52.784 2024-02-24 11:49:52.784 1000 FEE 436724 929 6052712 2024-02-24 11:49:52.784 2024-02-24 11:49:52.784 9000 TIP 436724 17455 6052740 2024-02-24 11:55:39.623 2024-02-24 11:55:39.623 1000 FEE 437065 21136 6052741 2024-02-24 11:55:43.551 2024-02-24 11:55:43.551 300 FEE 436733 1474 6052742 2024-02-24 11:55:43.551 2024-02-24 11:55:43.551 2700 TIP 436733 11590 6052752 2024-02-24 12:01:29.952 2024-02-24 12:01:29.952 2100 FEE 437039 2961 6052753 2024-02-24 12:01:29.952 2024-02-24 12:01:29.952 18900 TIP 437039 18225 6052772 2024-02-24 12:06:01.575 2024-02-24 12:06:01.575 1000 FEE 437074 19463 6052801 2024-02-24 12:15:12.229 2024-02-24 12:15:12.229 1000 FEE 437080 12609 6052807 2024-02-24 12:18:49.486 2024-02-24 12:18:49.486 10000 FEE 436752 12024 6052808 2024-02-24 12:18:49.486 2024-02-24 12:18:49.486 90000 TIP 436752 18524 6052854 2024-02-24 12:28:16.2 2024-02-24 12:28:16.2 200 FEE 436753 1631 6052855 2024-02-24 12:28:16.2 2024-02-24 12:28:16.2 1800 TIP 436753 10352 6052862 2024-02-24 12:28:44.816 2024-02-24 12:28:44.816 2500 FEE 437056 2256 6052863 2024-02-24 12:28:44.816 2024-02-24 12:28:44.816 22500 TIP 437056 18842 6052868 2024-02-24 12:30:39.559 2024-02-24 12:30:39.559 100000 FEE 437089 13854 6052884 2024-02-24 12:33:40.674 2024-02-24 12:33:40.674 1000 FEE 437097 622 6052902 2024-02-24 12:38:26.796 2024-02-24 12:38:26.796 200 FEE 436759 13759 6052903 2024-02-24 12:38:26.796 2024-02-24 12:38:26.796 1800 TIP 436759 9845 6052907 2024-02-24 12:39:55.931 2024-02-24 12:39:55.931 1000 FEE 437107 19156 6052910 2024-02-24 12:40:24.391 2024-02-24 12:40:24.391 10000 FEE 437109 21520 6052919 2024-02-24 12:40:40.376 2024-02-24 12:40:40.376 2100 FEE 435847 9844 6052920 2024-02-24 12:40:40.376 2024-02-24 12:40:40.376 18900 TIP 435847 5500 6052947 2024-02-24 12:40:59.048 2024-02-24 12:40:59.048 300 FEE 436720 19907 6052948 2024-02-24 12:40:59.048 2024-02-24 12:40:59.048 2700 TIP 436720 2046 6052966 2024-02-24 12:42:58.49 2024-02-24 12:42:58.49 2100 FEE 437074 18608 6052967 2024-02-24 12:42:58.49 2024-02-24 12:42:58.49 18900 TIP 437074 16665 6052975 2024-02-24 12:43:13.003 2024-02-24 12:43:13.003 2100 FEE 437045 20980 6052976 2024-02-24 12:43:13.003 2024-02-24 12:43:13.003 18900 TIP 437045 4415 6052987 2024-02-24 12:45:22.76 2024-02-24 12:45:22.76 2100 FEE 436752 12483 6052988 2024-02-24 12:45:22.76 2024-02-24 12:45:22.76 18900 TIP 436752 7553 6053000 2024-02-24 12:46:51.462 2024-02-24 12:46:51.462 1000 FEE 437121 2329 6053010 2024-02-24 12:48:00.311 2024-02-24 12:48:00.311 1000 FEE 437128 20738 6053014 2024-02-24 12:48:26.718 2024-02-24 12:48:26.718 1000 FEE 437131 633 6053026 2024-02-24 12:50:40.158 2024-02-24 12:50:40.158 1000 FEE 437141 20744 6053027 2024-02-24 12:50:43.989 2024-02-24 12:50:43.989 2100 FEE 437114 18583 6053028 2024-02-24 12:50:43.989 2024-02-24 12:50:43.989 18900 TIP 437114 11938 6053035 2024-02-24 12:52:05.926 2024-02-24 12:52:05.926 100 FEE 437087 19777 6053036 2024-02-24 12:52:05.926 2024-02-24 12:52:05.926 900 TIP 437087 20911 6053039 2024-02-24 12:52:25.203 2024-02-24 12:52:25.203 100 FEE 437070 16505 6053040 2024-02-24 12:52:25.203 2024-02-24 12:52:25.203 900 TIP 437070 19198 6052235 2024-02-24 09:59:02.951 2024-02-24 09:59:02.951 1000 STREAM 141924 20452 6052240 2024-02-24 10:04:02.958 2024-02-24 10:04:02.958 1000 STREAM 141924 1833 6117307 2024-02-29 19:01:34.53 2024-02-29 19:01:34.53 900 TIP 443752 6578 6117312 2024-02-29 19:01:44.86 2024-02-29 19:01:44.86 100 FEE 443745 10690 6117313 2024-02-29 19:01:44.86 2024-02-29 19:01:44.86 900 TIP 443745 21421 6117339 2024-02-29 19:02:30.961 2024-02-29 19:02:30.961 1000 FEE 444088 4989 6117351 2024-02-29 19:03:14.273 2024-02-29 19:03:14.273 1000 FEE 444089 13987 6117354 2024-02-29 19:03:59.311 2024-02-29 19:03:59.311 10000 FEE 443745 1198 6117355 2024-02-29 19:03:59.311 2024-02-29 19:03:59.311 90000 TIP 443745 9 6052237 2024-02-24 10:01:02.965 2024-02-24 10:01:02.965 1000 STREAM 141924 20022 6052243 2024-02-24 10:07:03.042 2024-02-24 10:07:03.042 1000 STREAM 141924 672 6052246 2024-02-24 10:10:02.503 2024-02-24 10:10:02.503 1000 STREAM 141924 16289 6052255 2024-02-24 10:14:02.538 2024-02-24 10:14:02.538 1000 STREAM 141924 20841 6052259 2024-02-24 10:16:02.54 2024-02-24 10:16:02.54 1000 STREAM 141924 20257 6052269 2024-02-24 10:20:02.609 2024-02-24 10:20:02.609 1000 STREAM 141924 15271 6052273 2024-02-24 10:22:02.634 2024-02-24 10:22:02.634 1000 STREAM 141924 15159 6052291 2024-02-24 10:24:02.647 2024-02-24 10:24:02.647 1000 STREAM 141924 19795 6052299 2024-02-24 10:26:02.697 2024-02-24 10:26:02.697 1000 STREAM 141924 656 6052307 2024-02-24 10:28:02.713 2024-02-24 10:28:02.713 1000 STREAM 141924 21627 6052471 2024-02-24 10:37:02.834 2024-02-24 10:37:02.834 1000 STREAM 141924 761 6052476 2024-02-24 10:39:02.861 2024-02-24 10:39:02.861 1000 STREAM 141924 1628 6052491 2024-02-24 10:43:02.919 2024-02-24 10:43:02.919 1000 STREAM 141924 21451 6052495 2024-02-24 10:46:02.967 2024-02-24 10:46:02.967 1000 STREAM 141924 6717 6052501 2024-02-24 10:49:03.034 2024-02-24 10:49:03.034 1000 STREAM 141924 5708 6052506 2024-02-24 10:52:03.072 2024-02-24 10:52:03.072 1000 STREAM 141924 5978 6052509 2024-02-24 10:54:03.101 2024-02-24 10:54:03.101 1000 STREAM 141924 2322 6052515 2024-02-24 10:55:03.118 2024-02-24 10:55:03.118 1000 STREAM 141924 1272 6052516 2024-02-24 10:56:03.132 2024-02-24 10:56:03.132 1000 STREAM 141924 621 6052520 2024-02-24 10:57:03.152 2024-02-24 10:57:03.152 1000 STREAM 141924 19996 6052521 2024-02-24 10:58:03.167 2024-02-24 10:58:03.167 1000 STREAM 141924 18494 6052524 2024-02-24 10:59:03.182 2024-02-24 10:59:03.182 1000 STREAM 141924 2773 6052532 2024-02-24 11:01:03.19 2024-02-24 11:01:03.19 1000 STREAM 141924 16680 6052535 2024-02-24 11:03:03.27 2024-02-24 11:03:03.27 1000 STREAM 141924 2361 6052553 2024-02-24 11:07:03.336 2024-02-24 11:07:03.336 1000 STREAM 141924 18556 6052562 2024-02-24 11:13:03.422 2024-02-24 11:13:03.422 1000 STREAM 141924 18830 6052563 2024-02-24 11:14:03.444 2024-02-24 11:14:03.444 1000 STREAM 141924 19535 6052572 2024-02-24 11:15:03.447 2024-02-24 11:15:03.447 1000 STREAM 141924 21424 6052575 2024-02-24 11:16:03.46 2024-02-24 11:16:03.46 1000 STREAM 141924 21555 6052582 2024-02-24 11:18:03.498 2024-02-24 11:18:03.498 1000 STREAM 141924 8541 6052589 2024-02-24 11:21:03.564 2024-02-24 11:21:03.564 1000 STREAM 141924 1236 6052602 2024-02-24 11:25:03.654 2024-02-24 11:25:03.654 1000 STREAM 141924 21421 6052605 2024-02-24 11:27:03.69 2024-02-24 11:27:03.69 1000 STREAM 141924 19153 6052622 2024-02-24 11:31:03.739 2024-02-24 11:31:03.739 1000 STREAM 141924 11819 6052625 2024-02-24 11:32:03.781 2024-02-24 11:32:03.781 1000 STREAM 141924 17011 6052630 2024-02-24 11:33:03.805 2024-02-24 11:33:03.805 1000 STREAM 141924 19938 6052641 2024-02-24 11:36:03.882 2024-02-24 11:36:03.882 1000 STREAM 141924 10393 6052655 2024-02-24 11:39:03.941 2024-02-24 11:39:03.941 1000 STREAM 141924 11862 6117416 2024-02-29 19:07:08.591 2024-02-29 19:07:08.591 1000 FEE 442751 7772 6117417 2024-02-29 19:07:08.591 2024-02-29 19:07:08.591 9000 TIP 442751 9336 6117428 2024-02-29 19:07:11.808 2024-02-29 19:07:11.808 1000 FEE 442710 1567 6117429 2024-02-29 19:07:11.808 2024-02-29 19:07:11.808 9000 TIP 442710 15239 6117446 2024-02-29 19:07:17.762 2024-02-29 19:07:17.762 1000 FEE 443712 5708 6117447 2024-02-29 19:07:17.762 2024-02-29 19:07:17.762 9000 TIP 443712 1472 6117456 2024-02-29 19:07:26.8 2024-02-29 19:07:26.8 1000 FEE 443861 20509 6117457 2024-02-29 19:07:26.8 2024-02-29 19:07:26.8 9000 TIP 443861 10096 6117460 2024-02-29 19:07:27.805 2024-02-29 19:07:27.805 1000 FEE 443861 1720 6117461 2024-02-29 19:07:27.805 2024-02-29 19:07:27.805 9000 TIP 443861 11561 6117488 2024-02-29 19:07:39.063 2024-02-29 19:07:39.063 1000 FEE 443679 12122 6117489 2024-02-29 19:07:39.063 2024-02-29 19:07:39.063 9000 TIP 443679 20972 6117504 2024-02-29 19:07:58.041 2024-02-29 19:07:58.041 1000 FEE 442721 16176 6117505 2024-02-29 19:07:58.041 2024-02-29 19:07:58.041 9000 TIP 442721 19044 6117506 2024-02-29 19:08:01.445 2024-02-29 19:08:01.445 0 FEE 444092 18608 6117507 2024-02-29 19:08:01.485 2024-02-29 19:08:01.485 1000 FEE 443390 19043 6117508 2024-02-29 19:08:01.485 2024-02-29 19:08:01.485 9000 TIP 443390 19902 6117522 2024-02-29 19:08:07.18 2024-02-29 19:08:07.18 1000 FEE 442918 19394 6117523 2024-02-29 19:08:07.18 2024-02-29 19:08:07.18 9000 TIP 442918 13055 6117549 2024-02-29 19:11:52.106 2024-02-29 19:11:52.106 21000 FEE 444099 16410 6117597 2024-02-29 19:13:53.676 2024-02-29 19:13:53.676 2100 FEE 443861 14503 6117598 2024-02-29 19:13:53.676 2024-02-29 19:13:53.676 18900 TIP 443861 18892 6117601 2024-02-29 19:13:55.211 2024-02-29 19:13:55.211 2100 FEE 443861 5495 6117602 2024-02-29 19:13:55.211 2024-02-29 19:13:55.211 18900 TIP 443861 11714 6117659 2024-02-29 19:20:25.419 2024-02-29 19:20:25.419 500 FEE 444098 1549 6117660 2024-02-29 19:20:25.419 2024-02-29 19:20:25.419 4500 TIP 444098 4250 6117666 2024-02-29 19:21:12.162 2024-02-29 19:21:12.162 2100 FEE 443898 15941 6117667 2024-02-29 19:21:12.162 2024-02-29 19:21:12.162 18900 TIP 443898 8726 6117668 2024-02-29 19:21:22.782 2024-02-29 19:21:22.782 2100 FEE 444030 21389 6117669 2024-02-29 19:21:22.782 2024-02-29 19:21:22.782 18900 TIP 444030 18507 6117676 2024-02-29 19:23:47.321 2024-02-29 19:23:47.321 21000 FEE 444107 14225 6117677 2024-02-29 19:23:47.321 2024-02-29 19:23:47.321 189000 TIP 444107 16250 6117702 2024-02-29 19:26:03.063 2024-02-29 19:26:03.063 100 FEE 444029 10638 6117703 2024-02-29 19:26:03.063 2024-02-29 19:26:03.063 900 TIP 444029 1493 6117718 2024-02-29 19:26:35.735 2024-02-29 19:26:35.735 2100 FEE 443903 18896 6117719 2024-02-29 19:26:35.735 2024-02-29 19:26:35.735 18900 TIP 443903 21172 6117720 2024-02-29 19:26:35.934 2024-02-29 19:26:35.934 2100 FEE 443903 10549 6117721 2024-02-29 19:26:35.934 2024-02-29 19:26:35.934 18900 TIP 443903 13622 6117728 2024-02-29 19:26:47.93 2024-02-29 19:26:47.93 2100 FEE 443659 2335 6117729 2024-02-29 19:26:47.93 2024-02-29 19:26:47.93 18900 TIP 443659 2961 6117736 2024-02-29 19:26:48.685 2024-02-29 19:26:48.685 2100 FEE 443659 20231 6117737 2024-02-29 19:26:48.685 2024-02-29 19:26:48.685 18900 TIP 443659 9969 6117753 2024-02-29 19:27:09.404 2024-02-29 19:27:09.404 2100 FEE 443812 18309 6117754 2024-02-29 19:27:09.404 2024-02-29 19:27:09.404 18900 TIP 443812 5757 6117759 2024-02-29 19:27:09.738 2024-02-29 19:27:09.738 2100 FEE 443812 8998 6117760 2024-02-29 19:27:09.738 2024-02-29 19:27:09.738 18900 TIP 443812 10291 6117767 2024-02-29 19:27:10.294 2024-02-29 19:27:10.294 2100 FEE 443812 859 6117768 2024-02-29 19:27:10.294 2024-02-29 19:27:10.294 18900 TIP 443812 15858 6117813 2024-02-29 19:27:16.757 2024-02-29 19:27:16.757 2100 FEE 443812 21148 6117814 2024-02-29 19:27:16.757 2024-02-29 19:27:16.757 18900 TIP 443812 8176 6117831 2024-02-29 19:28:24.605 2024-02-29 19:28:24.605 1000 FEE 444117 9655 6052276 2024-02-24 10:22:37.826 2024-02-24 10:22:37.826 4000 FEE 436994 18932 6052277 2024-02-24 10:22:37.826 2024-02-24 10:22:37.826 36000 TIP 436994 15556 6052283 2024-02-24 10:23:52.136 2024-02-24 10:23:52.136 4000 FEE 436792 17722 6052284 2024-02-24 10:23:52.136 2024-02-24 10:23:52.136 36000 TIP 436792 18524 6052295 2024-02-24 10:25:01.287 2024-02-24 10:25:01.287 0 FEE 437033 19566 6052308 2024-02-24 10:28:40.403 2024-02-24 10:28:40.403 1000 FEE 437023 16571 6052309 2024-02-24 10:28:40.403 2024-02-24 10:28:40.403 9000 TIP 437023 21060 6052323 2024-02-24 10:34:23.347 2024-02-24 10:34:23.347 1000 FEE 436753 18396 6052324 2024-02-24 10:34:23.347 2024-02-24 10:34:23.347 9000 TIP 436753 21155 6052351 2024-02-24 10:34:30.352 2024-02-24 10:34:30.352 1000 FEE 436241 15762 6052352 2024-02-24 10:34:30.352 2024-02-24 10:34:30.352 9000 TIP 436241 4345 6052311 2024-02-24 10:30:03.649 2024-02-24 10:30:03.649 1000 STREAM 141924 19243 6117424 2024-02-29 19:07:11.03 2024-02-29 19:07:11.03 1000 FEE 443272 21413 6117425 2024-02-29 19:07:11.03 2024-02-29 19:07:11.03 9000 TIP 443272 4035 6117494 2024-02-29 19:07:41.679 2024-02-29 19:07:41.679 1000 FEE 442965 16848 6117495 2024-02-29 19:07:41.679 2024-02-29 19:07:41.679 9000 TIP 442965 5377 6117530 2024-02-29 19:09:22.111 2024-02-29 19:09:22.111 10100 FEE 444092 18945 6117531 2024-02-29 19:09:22.111 2024-02-29 19:09:22.111 90900 TIP 444092 5694 6117539 2024-02-29 19:11:48.964 2024-02-29 19:11:48.964 2000 FEE 443572 19105 6117540 2024-02-29 19:11:48.964 2024-02-29 19:11:48.964 18000 TIP 443572 21139 6117562 2024-02-29 19:11:59.922 2024-02-29 19:11:59.922 2000 FEE 443260 667 6117563 2024-02-29 19:11:59.922 2024-02-29 19:11:59.922 18000 TIP 443260 18673 6117564 2024-02-29 19:12:00.252 2024-02-29 19:12:00.252 2000 FEE 442633 12744 6117565 2024-02-29 19:12:00.252 2024-02-29 19:12:00.252 18000 TIP 442633 1120 6117581 2024-02-29 19:12:14.981 2024-02-29 19:12:14.981 2000 FEE 443477 770 6117582 2024-02-29 19:12:14.981 2024-02-29 19:12:14.981 18000 TIP 443477 13587 6117586 2024-02-29 19:12:29.694 2024-02-29 19:12:29.694 1000 FEE 444076 20624 6117587 2024-02-29 19:12:29.694 2024-02-29 19:12:29.694 9000 TIP 444076 20525 6117595 2024-02-29 19:13:43.809 2024-02-29 19:13:43.809 1000 FEE 444101 16284 6117596 2024-02-29 19:13:47.866 2024-02-29 19:13:47.866 20000 FEE 444102 5017 6117626 2024-02-29 19:16:52.713 2024-02-29 19:16:52.713 1000 FEE 444104 2529 6117636 2024-02-29 19:17:45.277 2024-02-29 19:17:45.277 1700 FEE 444102 5825 6117637 2024-02-29 19:17:45.277 2024-02-29 19:17:45.277 15300 TIP 444102 21291 6117649 2024-02-29 19:19:12.128 2024-02-29 19:19:12.128 100 FEE 444074 4084 6117650 2024-02-29 19:19:12.128 2024-02-29 19:19:12.128 900 TIP 444074 14258 6117671 2024-02-29 19:22:42.103 2024-02-29 19:22:42.103 1000 FEE 444107 21532 6117672 2024-02-29 19:22:43.677 2024-02-29 19:22:43.677 10000 FEE 443274 21242 6117673 2024-02-29 19:22:43.677 2024-02-29 19:22:43.677 90000 TIP 443274 19036 6117678 2024-02-29 19:23:57.291 2024-02-29 19:23:57.291 10000 FEE 444102 11648 6117679 2024-02-29 19:23:57.291 2024-02-29 19:23:57.291 90000 TIP 444102 11091 6117682 2024-02-29 19:24:28.04 2024-02-29 19:24:28.04 1000 FEE 444110 21578 6117683 2024-02-29 19:24:35.349 2024-02-29 19:24:35.349 1000 FEE 444111 21287 6117684 2024-02-29 19:24:53.02 2024-02-29 19:24:53.02 69000 FEE 444112 21166 6117715 2024-02-29 19:26:33.128 2024-02-29 19:26:33.128 12100 FEE 443616 19465 6117716 2024-02-29 19:26:33.128 2024-02-29 19:26:33.128 108900 TIP 443616 1970 6117726 2024-02-29 19:26:47.686 2024-02-29 19:26:47.686 2100 FEE 443659 20602 6117727 2024-02-29 19:26:47.686 2024-02-29 19:26:47.686 18900 TIP 443659 21562 6117734 2024-02-29 19:26:48.516 2024-02-29 19:26:48.516 2100 FEE 443659 18363 6117735 2024-02-29 19:26:48.516 2024-02-29 19:26:48.516 18900 TIP 443659 897 6117749 2024-02-29 19:27:08.996 2024-02-29 19:27:08.996 2100 FEE 443812 2513 6117750 2024-02-29 19:27:08.996 2024-02-29 19:27:08.996 18900 TIP 443812 2013 6117757 2024-02-29 19:27:09.708 2024-02-29 19:27:09.708 2100 FEE 443812 704 6117758 2024-02-29 19:27:09.708 2024-02-29 19:27:09.708 18900 TIP 443812 10608 6117805 2024-02-29 19:27:15.599 2024-02-29 19:27:15.599 2100 FEE 443816 2077 6117806 2024-02-29 19:27:15.599 2024-02-29 19:27:15.599 18900 TIP 443816 656 6117868 2024-02-29 19:30:12.599 2024-02-29 19:30:12.599 1000 FEE 444114 15719 6117869 2024-02-29 19:30:12.599 2024-02-29 19:30:12.599 9000 TIP 444114 4166 6117870 2024-02-29 19:30:13.214 2024-02-29 19:30:13.214 1000 FEE 444114 15617 6117871 2024-02-29 19:30:13.214 2024-02-29 19:30:13.214 9000 TIP 444114 1602 6117887 2024-02-29 19:30:44.115 2024-02-29 19:30:44.115 1000 FEE 444114 5036 6117888 2024-02-29 19:30:44.115 2024-02-29 19:30:44.115 9000 TIP 444114 672 6117895 2024-02-29 19:31:58.722 2024-02-29 19:31:58.722 900 FEE 444102 20182 6117896 2024-02-29 19:31:58.722 2024-02-29 19:31:58.722 8100 TIP 444102 18862 6117899 2024-02-29 19:31:59.076 2024-02-29 19:31:59.076 1000 FEE 444126 1354 6117919 2024-02-29 19:32:15.035 2024-02-29 19:32:15.035 100 FEE 444099 18774 6117920 2024-02-29 19:32:15.035 2024-02-29 19:32:15.035 900 TIP 444099 19546 6117950 2024-02-29 19:34:19.318 2024-02-29 19:34:19.318 0 FEE 444129 20660 6117982 2024-02-29 19:39:01.991 2024-02-29 19:39:01.991 1000 FEE 444112 20981 6117983 2024-02-29 19:39:01.991 2024-02-29 19:39:01.991 9000 TIP 444112 18476 6117991 2024-02-29 19:39:05.508 2024-02-29 19:39:05.508 1000 FEE 444097 20663 6117992 2024-02-29 19:39:05.508 2024-02-29 19:39:05.508 9000 TIP 444097 20964 6118012 2024-02-29 19:39:13.453 2024-02-29 19:39:13.453 1000 FEE 444056 7553 6118013 2024-02-29 19:39:13.453 2024-02-29 19:39:13.453 9000 TIP 444056 4763 6118037 2024-02-29 19:40:40.402 2024-02-29 19:40:40.402 1000 FEE 444139 9345 6118066 2024-02-29 19:43:04.094 2024-02-29 19:43:04.094 1000 FEE 444102 20058 6118067 2024-02-29 19:43:04.094 2024-02-29 19:43:04.094 9000 TIP 444102 679 6118080 2024-02-29 19:45:36.439 2024-02-29 19:45:36.439 50000 FEE 444102 7978 6118081 2024-02-29 19:45:36.439 2024-02-29 19:45:36.439 450000 TIP 444102 19511 6118085 2024-02-29 19:46:16.091 2024-02-29 19:46:16.091 1000 FEE 443372 13177 6118086 2024-02-29 19:46:16.091 2024-02-29 19:46:16.091 9000 TIP 443372 12222 6118098 2024-02-29 19:49:30.066 2024-02-29 19:49:30.066 1000 FEE 444078 20713 6118099 2024-02-29 19:49:30.066 2024-02-29 19:49:30.066 9000 TIP 444078 8796 6118124 2024-02-29 19:52:50.797 2024-02-29 19:52:50.797 21000 FEE 444148 10944 6118125 2024-02-29 19:52:50.797 2024-02-29 19:52:50.797 189000 TIP 444148 20129 6118144 2024-02-29 19:55:09.858 2024-02-29 19:55:09.858 2100 FEE 444104 19806 6118145 2024-02-29 19:55:09.858 2024-02-29 19:55:09.858 18900 TIP 444104 19138 6118188 2024-02-29 19:59:08.412 2024-02-29 19:59:08.412 900 FEE 444081 19553 6118189 2024-02-29 19:59:08.412 2024-02-29 19:59:08.412 8100 TIP 444081 15180 6118202 2024-02-29 19:59:40.892 2024-02-29 19:59:40.892 100000 FEE 444168 7746 6118205 2024-02-29 20:00:06.393 2024-02-29 20:00:06.393 100000 FEE 444169 19943 6118206 2024-02-29 20:00:06.758 2024-02-29 20:00:06.758 1000 FEE 444170 21271 6118228 2024-02-29 20:01:09.368 2024-02-29 20:01:09.368 1700 FEE 444168 16354 6118229 2024-02-29 20:01:09.368 2024-02-29 20:01:09.368 15300 TIP 444168 2256 6118240 2024-02-29 20:01:10.859 2024-02-29 20:01:10.859 1700 FEE 444168 4958 6118241 2024-02-29 20:01:10.859 2024-02-29 20:01:10.859 15300 TIP 444168 20106 6118260 2024-02-29 20:01:13.945 2024-02-29 20:01:13.945 1700 FEE 444168 11298 6118261 2024-02-29 20:01:13.945 2024-02-29 20:01:13.945 15300 TIP 444168 21547 6118276 2024-02-29 20:02:42.136 2024-02-29 20:02:42.136 0 FEE 444171 2789 6118280 2024-02-29 20:03:13.428 2024-02-29 20:03:13.428 0 FEE 444171 21401 6118281 2024-02-29 20:03:19.398 2024-02-29 20:03:19.398 0 FEE 444171 713 6118282 2024-02-29 20:03:36.064 2024-02-29 20:03:36.064 12100 FEE 444168 17011 6118283 2024-02-29 20:03:36.064 2024-02-29 20:03:36.064 108900 TIP 444168 20710 6118308 2024-02-29 20:08:30.357 2024-02-29 20:08:30.357 1000 FEE 444177 16834 6052353 2024-02-24 10:34:37.527 2024-02-24 10:34:37.527 1000 POLL 436759 14202 6052375 2024-02-24 10:35:34.567 2024-02-24 10:35:34.567 1000 FEE 436321 20120 6052376 2024-02-24 10:35:34.567 2024-02-24 10:35:34.567 9000 TIP 436321 20602 6052411 2024-02-24 10:35:58.389 2024-02-24 10:35:58.389 1000 FEE 436996 18909 6052412 2024-02-24 10:35:58.389 2024-02-24 10:35:58.389 9000 TIP 436996 21451 6052429 2024-02-24 10:36:03.057 2024-02-24 10:36:03.057 1000 FEE 436961 18359 6052430 2024-02-24 10:36:03.057 2024-02-24 10:36:03.057 9000 TIP 436961 836 6052434 2024-02-24 10:36:21.101 2024-02-24 10:36:21.101 1000 FEE 437036 19987 6052459 2024-02-24 10:36:30.489 2024-02-24 10:36:30.489 1000 FEE 436839 3439 6052460 2024-02-24 10:36:30.489 2024-02-24 10:36:30.489 9000 TIP 436839 9969 6052469 2024-02-24 10:36:32.713 2024-02-24 10:36:32.713 1000 FEE 436805 20433 6052470 2024-02-24 10:36:32.713 2024-02-24 10:36:32.713 9000 TIP 436805 19813 6052473 2024-02-24 10:38:42.987 2024-02-24 10:38:42.987 1000 FEE 437037 16717 6052474 2024-02-24 10:38:58.847 2024-02-24 10:38:58.847 1100 FEE 436977 6191 6052475 2024-02-24 10:38:58.847 2024-02-24 10:38:58.847 9900 TIP 436977 18177 6052523 2024-02-24 10:58:46.579 2024-02-24 10:58:46.579 0 FEE 437043 14404 6052548 2024-02-24 11:05:32.986 2024-02-24 11:05:32.986 1000 FEE 437047 13143 6052560 2024-02-24 11:11:08.441 2024-02-24 11:11:08.441 1000 FEE 437049 692 6052578 2024-02-24 11:17:23.65 2024-02-24 11:17:23.65 10000 FEE 436556 20376 6052579 2024-02-24 11:17:23.65 2024-02-24 11:17:23.65 90000 TIP 436556 18005 6052580 2024-02-24 11:17:57.974 2024-02-24 11:17:57.974 2100 FEE 437034 2224 6052581 2024-02-24 11:17:57.974 2024-02-24 11:17:57.974 18900 TIP 437034 13798 6052595 2024-02-24 11:22:58.924 2024-02-24 11:22:58.924 1000 FEE 437051 9333 6052603 2024-02-24 11:25:33.875 2024-02-24 11:25:33.875 1000 FEE 437052 16356 6052606 2024-02-24 11:27:10.231 2024-02-24 11:27:10.231 1000 FEE 437053 19500 6052607 2024-02-24 11:27:21.359 2024-02-24 11:27:21.359 2100 FEE 437008 11996 6052608 2024-02-24 11:27:21.359 2024-02-24 11:27:21.359 18900 TIP 437008 1007 6052653 2024-02-24 11:38:44.439 2024-02-24 11:38:44.439 10000 FEE 436969 8074 6052654 2024-02-24 11:38:44.439 2024-02-24 11:38:44.439 90000 TIP 436969 17001 6052668 2024-02-24 11:39:32.489 2024-02-24 11:39:32.489 1000 FEE 436980 8245 6052669 2024-02-24 11:39:32.489 2024-02-24 11:39:32.489 9000 TIP 436980 10393 6052684 2024-02-24 11:46:27.316 2024-02-24 11:46:27.316 1000 FEE 436720 20129 6052685 2024-02-24 11:46:27.316 2024-02-24 11:46:27.316 9000 TIP 436720 18072 6052694 2024-02-24 11:48:14.207 2024-02-24 11:48:14.207 1000 FEE 436959 9433 6052695 2024-02-24 11:48:14.207 2024-02-24 11:48:14.207 9000 TIP 436959 669 6052700 2024-02-24 11:49:20.621 2024-02-24 11:49:20.621 11000 DONT_LIKE_THIS 436970 16753 6052703 2024-02-24 11:49:35.405 2024-02-24 11:49:35.405 1000 FEE 436923 732 6052704 2024-02-24 11:49:35.405 2024-02-24 11:49:35.405 9000 TIP 436923 14663 6052705 2024-02-24 11:49:40.041 2024-02-24 11:49:40.041 1000 FEE 436953 10096 6052706 2024-02-24 11:49:40.041 2024-02-24 11:49:40.041 9000 TIP 436953 7916 6052719 2024-02-24 11:50:41.156 2024-02-24 11:50:41.156 10000 FEE 437031 14465 6052720 2024-02-24 11:50:41.156 2024-02-24 11:50:41.156 90000 TIP 437031 5538 6052721 2024-02-24 11:50:41.46 2024-02-24 11:50:41.46 10000 FEE 437031 21048 6052722 2024-02-24 11:50:41.46 2024-02-24 11:50:41.46 90000 TIP 437031 16097 6052723 2024-02-24 11:50:43.05 2024-02-24 11:50:43.05 1000 FEE 436838 14037 6052724 2024-02-24 11:50:43.05 2024-02-24 11:50:43.05 9000 TIP 436838 10530 6052758 2024-02-24 12:02:51.307 2024-02-24 12:02:51.307 10000 FEE 437066 8245 6052759 2024-02-24 12:02:51.307 2024-02-24 12:02:51.307 90000 TIP 437066 6335 6052766 2024-02-24 12:04:59.466 2024-02-24 12:04:59.466 1000 FEE 437071 20657 6052767 2024-02-24 12:05:01.137 2024-02-24 12:05:01.137 2100 FEE 436920 21036 6052768 2024-02-24 12:05:01.137 2024-02-24 12:05:01.137 18900 TIP 436920 21430 6052774 2024-02-24 12:06:04.505 2024-02-24 12:06:04.505 1000 FEE 437050 1567 6052775 2024-02-24 12:06:04.505 2024-02-24 12:06:04.505 9000 TIP 437050 1806 6052826 2024-02-24 12:22:51.81 2024-02-24 12:22:51.81 3200 FEE 437004 19043 6052827 2024-02-24 12:22:51.81 2024-02-24 12:22:51.81 28800 TIP 437004 19506 6052841 2024-02-24 12:24:37.241 2024-02-24 12:24:37.241 0 FEE 437081 20554 6052858 2024-02-24 12:28:32.168 2024-02-24 12:28:32.168 200 FEE 437008 13544 6052859 2024-02-24 12:28:32.168 2024-02-24 12:28:32.168 1800 TIP 437008 20022 6052874 2024-02-24 12:31:18.38 2024-02-24 12:31:18.38 1000 FEE 437078 20109 6052875 2024-02-24 12:31:18.38 2024-02-24 12:31:18.38 9000 TIP 437078 959 6052877 2024-02-24 12:31:38.762 2024-02-24 12:31:38.762 1000 FEE 437093 3478 6052887 2024-02-24 12:34:16.522 2024-02-24 12:34:16.522 1000 FEE 437098 19930 6052893 2024-02-24 12:36:08.553 2024-02-24 12:36:08.553 1000 FEE 437100 8095 6052931 2024-02-24 12:40:57.838 2024-02-24 12:40:57.838 300 FEE 436720 19795 6052932 2024-02-24 12:40:57.838 2024-02-24 12:40:57.838 2700 TIP 436720 20218 6052941 2024-02-24 12:40:58.533 2024-02-24 12:40:58.533 300 FEE 436720 6148 6052942 2024-02-24 12:40:58.533 2024-02-24 12:40:58.533 2700 TIP 436720 16665 6052943 2024-02-24 12:40:58.696 2024-02-24 12:40:58.696 300 FEE 436720 6798 6052944 2024-02-24 12:40:58.696 2024-02-24 12:40:58.696 2700 TIP 436720 21088 6052962 2024-02-24 12:42:54.3 2024-02-24 12:42:54.3 2100 FEE 437086 13100 6052963 2024-02-24 12:42:54.3 2024-02-24 12:42:54.3 18900 TIP 437086 17891 6052973 2024-02-24 12:43:09.525 2024-02-24 12:43:09.525 3000 FEE 437087 1769 6052974 2024-02-24 12:43:09.525 2024-02-24 12:43:09.525 27000 TIP 437087 7558 6052984 2024-02-24 12:44:59.781 2024-02-24 12:44:59.781 1000 FEE 437111 1585 6052995 2024-02-24 12:46:23.941 2024-02-24 12:46:23.941 1000 FEE 437118 19243 6053025 2024-02-24 12:50:13.793 2024-02-24 12:50:13.793 1000 FEE 437140 697 6053063 2024-02-24 12:54:22.353 2024-02-24 12:54:22.353 2100 FEE 437033 13843 6053064 2024-02-24 12:54:22.353 2024-02-24 12:54:22.353 18900 TIP 437033 866 6053065 2024-02-24 12:54:40.063 2024-02-24 12:54:40.063 100 FEE 433943 10096 6053066 2024-02-24 12:54:40.063 2024-02-24 12:54:40.063 900 TIP 433943 716 6053072 2024-02-24 12:55:30.132 2024-02-24 12:55:30.132 1000 FEE 437144 17682 6053091 2024-02-24 12:58:01.843 2024-02-24 12:58:01.843 10000 FEE 437146 8945 6053102 2024-02-24 12:59:26.932 2024-02-24 12:59:26.932 2100 FEE 437035 20470 6053103 2024-02-24 12:59:26.932 2024-02-24 12:59:26.932 18900 TIP 437035 16354 6053105 2024-02-24 13:00:10.588 2024-02-24 13:00:10.588 0 FEE 437147 20424 6053115 2024-02-24 13:02:26.556 2024-02-24 13:02:26.556 1000 FEE 437150 12566 6053121 2024-02-24 13:02:57.18 2024-02-24 13:02:57.18 1000 FEE 437152 7773 6053124 2024-02-24 13:03:20.421 2024-02-24 13:03:20.421 1300 FEE 437050 5637 6053125 2024-02-24 13:03:20.421 2024-02-24 13:03:20.421 11700 TIP 437050 11395 6053147 2024-02-24 13:05:43.653 2024-02-24 13:05:43.653 10000 FEE 435023 16939 6053148 2024-02-24 13:05:43.653 2024-02-24 13:05:43.653 90000 TIP 435023 19812 6053169 2024-02-24 13:09:40.081 2024-02-24 13:09:40.081 0 FEE 437157 20730 6053252 2024-02-24 13:22:56.194 2024-02-24 13:22:56.194 100 FEE 437166 15521 6053253 2024-02-24 13:22:56.194 2024-02-24 13:22:56.194 900 TIP 437166 2151 6053254 2024-02-24 13:22:56.217 2024-02-24 13:22:56.217 100 FEE 437166 654 6053255 2024-02-24 13:22:56.217 2024-02-24 13:22:56.217 900 TIP 437166 21274 6053262 2024-02-24 13:22:57.743 2024-02-24 13:22:57.743 100 FEE 437166 21453 6053263 2024-02-24 13:22:57.743 2024-02-24 13:22:57.743 900 TIP 437166 15271 6053272 2024-02-24 13:26:04.876 2024-02-24 13:26:04.876 0 FEE 437171 20897 6053285 2024-02-24 13:27:49.759 2024-02-24 13:27:49.759 300 FEE 437086 15160 6053286 2024-02-24 13:27:49.759 2024-02-24 13:27:49.759 2700 TIP 437086 19243 6053287 2024-02-24 13:28:03.243 2024-02-24 13:28:03.243 1000 FEE 437175 13143 6053289 2024-02-24 13:28:19.002 2024-02-24 13:28:19.002 1100 FEE 437078 20837 6053290 2024-02-24 13:28:19.002 2024-02-24 13:28:19.002 9900 TIP 437078 629 6052422 2024-02-24 10:36:00.75 2024-02-24 10:36:00.75 9000 TIP 436981 14376 6052461 2024-02-24 10:36:31.007 2024-02-24 10:36:31.007 1000 FEE 436823 19465 6052462 2024-02-24 10:36:31.007 2024-02-24 10:36:31.007 9000 TIP 436823 17147 6052485 2024-02-24 10:41:04.146 2024-02-24 10:41:04.146 10000 FEE 436837 19154 6052486 2024-02-24 10:41:04.146 2024-02-24 10:41:04.146 90000 TIP 436837 18625 6052502 2024-02-24 10:49:34.154 2024-02-24 10:49:34.154 1100 FEE 436970 9494 6052503 2024-02-24 10:49:34.154 2024-02-24 10:49:34.154 9900 TIP 436970 18945 6052522 2024-02-24 10:58:18.718 2024-02-24 10:58:18.718 0 FEE 437043 19770 6052573 2024-02-24 11:15:22.619 2024-02-24 11:15:22.619 100 FEE 436330 3729 6052574 2024-02-24 11:15:22.619 2024-02-24 11:15:22.619 900 TIP 436330 9346 6052590 2024-02-24 11:21:20.501 2024-02-24 11:21:20.501 500 FEE 436941 1272 6052591 2024-02-24 11:21:20.501 2024-02-24 11:21:20.501 4500 TIP 436941 17494 6052597 2024-02-24 11:23:26.05 2024-02-24 11:23:26.05 100 FEE 436926 8037 6052598 2024-02-24 11:23:26.05 2024-02-24 11:23:26.05 900 TIP 436926 15273 6052626 2024-02-24 11:32:58.314 2024-02-24 11:32:58.314 2100 FEE 437050 5085 6052627 2024-02-24 11:32:58.314 2024-02-24 11:32:58.314 18900 TIP 437050 20439 6052644 2024-02-24 11:36:56.52 2024-02-24 11:36:56.52 1000 FEE 437055 657 6052658 2024-02-24 11:39:17.947 2024-02-24 11:39:17.947 1000 FEE 437022 21070 6052659 2024-02-24 11:39:17.947 2024-02-24 11:39:17.947 9000 TIP 437022 21145 6052670 2024-02-24 11:39:58.391 2024-02-24 11:39:58.391 1000 FEE 437058 14785 6052671 2024-02-24 11:40:03.629 2024-02-24 11:40:03.629 10000 FEE 437059 21605 6052707 2024-02-24 11:49:47.902 2024-02-24 11:49:47.902 1000 FEE 436751 17172 6052708 2024-02-24 11:49:47.902 2024-02-24 11:49:47.902 9000 TIP 436751 18473 6052718 2024-02-24 11:50:24.113 2024-02-24 11:50:24.113 10000 FEE 437062 6260 6052728 2024-02-24 11:51:10.409 2024-02-24 11:51:10.409 1000 FEE 437052 6310 6052729 2024-02-24 11:51:10.409 2024-02-24 11:51:10.409 9000 TIP 437052 18909 6052734 2024-02-24 11:52:29.638 2024-02-24 11:52:29.638 1000 FEE 437064 1298 6052782 2024-02-24 12:07:48.231 2024-02-24 12:07:48.231 0 FEE 437070 2514 6052786 2024-02-24 12:08:53.393 2024-02-24 12:08:53.393 4000 FEE 437074 15094 6052787 2024-02-24 12:08:53.393 2024-02-24 12:08:53.393 36000 TIP 437074 20502 6052792 2024-02-24 12:11:22.888 2024-02-24 12:11:22.888 0 FEE 437070 8245 6052794 2024-02-24 12:11:36.531 2024-02-24 12:11:36.531 1000 FEE 437079 992 6052818 2024-02-24 12:21:39.288 2024-02-24 12:21:39.288 0 FEE 437081 3304 6052820 2024-02-24 12:22:24.721 2024-02-24 12:22:24.721 0 FEE 437081 16942 6052825 2024-02-24 12:22:38.204 2024-02-24 12:22:38.204 0 FEE 437081 16717 6052838 2024-02-24 12:23:48.019 2024-02-24 12:23:48.019 1100 FEE 437060 9669 6052839 2024-02-24 12:23:48.019 2024-02-24 12:23:48.019 9900 TIP 437060 18784 6052860 2024-02-24 12:28:42.978 2024-02-24 12:28:42.978 2500 FEE 437053 20280 6052861 2024-02-24 12:28:42.978 2024-02-24 12:28:42.978 22500 TIP 437053 21216 6052435 2024-02-24 10:36:24.282 2024-02-24 10:36:24.282 1000 FEE 436944 2780 6052436 2024-02-24 10:36:24.282 2024-02-24 10:36:24.282 9000 TIP 436944 646 6052437 2024-02-24 10:36:24.568 2024-02-24 10:36:24.568 1000 FEE 436935 21180 6052438 2024-02-24 10:36:24.568 2024-02-24 10:36:24.568 9000 TIP 436935 21614 6052447 2024-02-24 10:36:28.159 2024-02-24 10:36:28.159 1000 FEE 436899 2576 6052448 2024-02-24 10:36:28.159 2024-02-24 10:36:28.159 9000 TIP 436899 10591 6052463 2024-02-24 10:36:31.158 2024-02-24 10:36:31.158 1000 FEE 436815 725 6052464 2024-02-24 10:36:31.158 2024-02-24 10:36:31.158 9000 TIP 436815 13544 6052480 2024-02-24 10:40:15.719 2024-02-24 10:40:15.719 0 FEE 195512 6360 6052481 2024-02-24 10:40:15.753 2024-02-24 10:40:15.753 1100 FEE 436683 4487 6052482 2024-02-24 10:40:15.753 2024-02-24 10:40:15.753 9900 TIP 436683 19281 6052496 2024-02-24 10:46:27.538 2024-02-24 10:46:27.538 0 FEE 437040 5003 6052526 2024-02-24 11:00:14.56 2024-02-24 11:00:14.56 1000 FEE 437045 2437 6052530 2024-02-24 11:01:00.995 2024-02-24 11:01:00.995 200 FEE 436720 8569 6052531 2024-02-24 11:01:00.995 2024-02-24 11:01:00.995 1800 TIP 436720 21421 6052533 2024-02-24 11:01:16.329 2024-02-24 11:01:16.329 0 FEE 437045 18280 6052539 2024-02-24 11:04:16.863 2024-02-24 11:04:16.863 1000 FEE 288774 2010 6052540 2024-02-24 11:04:16.863 2024-02-24 11:04:16.863 9000 TIP 288774 6515 6052542 2024-02-24 11:04:58.811 2024-02-24 11:04:58.811 0 FEE 437046 17714 6052584 2024-02-24 11:19:32.997 2024-02-24 11:19:32.997 2100 FEE 437050 1173 6052585 2024-02-24 11:19:32.997 2024-02-24 11:19:32.997 18900 TIP 437050 19890 6052633 2024-02-24 11:35:01.004 2024-02-24 11:35:01.004 4000 FEE 437045 13348 6052634 2024-02-24 11:35:01.004 2024-02-24 11:35:01.004 36000 TIP 437045 2961 6052638 2024-02-24 11:35:04.073 2024-02-24 11:35:04.073 4000 FEE 437050 14731 6052639 2024-02-24 11:35:04.073 2024-02-24 11:35:04.073 36000 TIP 437050 14267 6052696 2024-02-24 11:48:30.513 2024-02-24 11:48:30.513 1000 FEE 436984 716 6052697 2024-02-24 11:48:30.513 2024-02-24 11:48:30.513 9000 TIP 436984 21262 6052725 2024-02-24 11:50:58.815 2024-02-24 11:50:58.815 1000 FEE 436962 12277 6052726 2024-02-24 11:50:58.815 2024-02-24 11:50:58.815 9000 TIP 436962 19158 6052751 2024-02-24 12:01:27.745 2024-02-24 12:01:27.745 1000 FEE 437067 10611 6052817 2024-02-24 12:21:31.109 2024-02-24 12:21:31.109 1000 FEE 437082 4538 6052833 2024-02-24 12:23:35.024 2024-02-24 12:23:35.024 1000000 FEE 437087 20326 6052843 2024-02-24 12:25:06.055 2024-02-24 12:25:06.055 0 FEE 437081 18896 6052845 2024-02-24 12:26:00.394 2024-02-24 12:26:00.394 3200 FEE 436759 14910 6052846 2024-02-24 12:26:00.394 2024-02-24 12:26:00.394 28800 TIP 436759 807 6052848 2024-02-24 12:26:06.518 2024-02-24 12:26:06.518 28800 FEE 436759 1221 6052849 2024-02-24 12:26:06.518 2024-02-24 12:26:06.518 259200 TIP 436759 15833 6052856 2024-02-24 12:28:19.7 2024-02-24 12:28:19.7 4000 FEE 437062 20681 6052857 2024-02-24 12:28:19.7 2024-02-24 12:28:19.7 36000 TIP 437062 1316 6052869 2024-02-24 12:30:43.19 2024-02-24 12:30:43.19 1000 FEE 437090 13132 6052876 2024-02-24 12:31:33.508 2024-02-24 12:31:33.508 1000 FEE 437092 19929 6052882 2024-02-24 12:33:05.931 2024-02-24 12:33:05.931 10000 DONT_LIKE_THIS 437091 770 6052897 2024-02-24 12:37:12.237 2024-02-24 12:37:12.237 1000 FEE 437102 4984 6052901 2024-02-24 12:38:20.877 2024-02-24 12:38:20.877 1000 POLL 436759 19583 6052955 2024-02-24 12:42:38.083 2024-02-24 12:42:38.083 10000 FEE 437110 7772 6052956 2024-02-24 12:42:40.767 2024-02-24 12:42:40.767 2100 FEE 436980 4768 6052957 2024-02-24 12:42:40.767 2024-02-24 12:42:40.767 18900 TIP 436980 1307 6052964 2024-02-24 12:42:55.582 2024-02-24 12:42:55.582 2100 FEE 437078 19292 6052965 2024-02-24 12:42:55.582 2024-02-24 12:42:55.582 18900 TIP 437078 21501 6052979 2024-02-24 12:43:22.454 2024-02-24 12:43:22.454 2100 FEE 436752 19471 6052980 2024-02-24 12:43:22.454 2024-02-24 12:43:22.454 18900 TIP 436752 825 6052994 2024-02-24 12:46:09.611 2024-02-24 12:46:09.611 1000 FEE 437117 11829 6053004 2024-02-24 12:47:08.655 2024-02-24 12:47:08.655 2100 FEE 436792 16282 6053005 2024-02-24 12:47:08.655 2024-02-24 12:47:08.655 18900 TIP 436792 18310 6053012 2024-02-24 12:48:08.843 2024-02-24 12:48:08.843 1000 FEE 437129 9171 6053019 2024-02-24 12:49:05.631 2024-02-24 12:49:05.631 1000 FEE 437135 14225 6053059 2024-02-24 12:54:15.364 2024-02-24 12:54:15.364 2100 FEE 437034 21201 6053060 2024-02-24 12:54:15.364 2024-02-24 12:54:15.364 18900 TIP 437034 3347 6053069 2024-02-24 12:54:54.471 2024-02-24 12:54:54.471 100 FEE 435610 11288 6053070 2024-02-24 12:54:54.471 2024-02-24 12:54:54.471 900 TIP 435610 6327 6053136 2024-02-24 13:03:22.554 2024-02-24 13:03:22.554 1300 FEE 437050 12821 6053137 2024-02-24 13:03:22.554 2024-02-24 13:03:22.554 11700 TIP 437050 17741 6053143 2024-02-24 13:04:59.36 2024-02-24 13:04:59.36 0 FEE 437148 21148 6053165 2024-02-24 13:08:04.315 2024-02-24 13:08:04.315 2100 FEE 437008 13076 6053166 2024-02-24 13:08:04.315 2024-02-24 13:08:04.315 18900 TIP 437008 880 6053178 2024-02-24 13:12:19.075 2024-02-24 13:12:19.075 1000 FEE 437161 20162 6053201 2024-02-24 13:19:49.763 2024-02-24 13:19:49.763 2100 FEE 436837 5538 6053202 2024-02-24 13:19:49.763 2024-02-24 13:19:49.763 18900 TIP 436837 2609 6053209 2024-02-24 13:20:00.822 2024-02-24 13:20:00.822 2100 FEE 436827 10536 6053210 2024-02-24 13:20:00.822 2024-02-24 13:20:00.822 18900 TIP 436827 4064 6053226 2024-02-24 13:20:52.334 2024-02-24 13:20:52.334 2100 FEE 436523 5776 6053227 2024-02-24 13:20:52.334 2024-02-24 13:20:52.334 18900 TIP 436523 2735 6053294 2024-02-24 13:28:31.076 2024-02-24 13:28:31.076 1000 FEE 437177 14465 6053333 2024-02-24 13:34:37.368 2024-02-24 13:34:37.368 2100 FEE 437049 16704 6053334 2024-02-24 13:34:37.368 2024-02-24 13:34:37.368 18900 TIP 437049 15273 6053352 2024-02-24 13:36:54.387 2024-02-24 13:36:54.387 1000 FEE 437184 11458 6053365 2024-02-24 13:37:37.372 2024-02-24 13:37:37.372 1300 FEE 437183 8004 6053366 2024-02-24 13:37:37.372 2024-02-24 13:37:37.372 11700 TIP 437183 20495 6053369 2024-02-24 13:37:38.288 2024-02-24 13:37:38.288 1300 FEE 437183 2514 6053370 2024-02-24 13:37:38.288 2024-02-24 13:37:38.288 11700 TIP 437183 9450 6053377 2024-02-24 13:38:01.863 2024-02-24 13:38:01.863 10000 FEE 437190 14202 6053399 2024-02-24 13:39:20.981 2024-02-24 13:39:20.981 3200 FEE 399428 5449 6053400 2024-02-24 13:39:20.981 2024-02-24 13:39:20.981 28800 TIP 399428 827 6053413 2024-02-24 13:40:30.755 2024-02-24 13:40:30.755 1300 FEE 437054 20539 6053414 2024-02-24 13:40:30.755 2024-02-24 13:40:30.755 11700 TIP 437054 7553 6053429 2024-02-24 13:40:33.656 2024-02-24 13:40:33.656 1300 FEE 437054 12819 6052445 2024-02-24 10:36:26.876 2024-02-24 10:36:26.876 1000 FEE 436907 1632 6052446 2024-02-24 10:36:26.876 2024-02-24 10:36:26.876 9000 TIP 436907 6688 6052467 2024-02-24 10:36:32.53 2024-02-24 10:36:32.53 1000 FEE 436811 18772 6052468 2024-02-24 10:36:32.53 2024-02-24 10:36:32.53 9000 TIP 436811 17714 6052537 2024-02-24 11:04:14.102 2024-02-24 11:04:14.102 1000 FEE 437033 6164 6052538 2024-02-24 11:04:14.102 2024-02-24 11:04:14.102 9000 TIP 437033 4314 6052552 2024-02-24 11:06:36.876 2024-02-24 11:06:36.876 0 FEE 437046 20585 6052558 2024-02-24 11:10:45.922 2024-02-24 11:10:45.922 1000 FEE 437048 13763 6052564 2024-02-24 11:14:05.811 2024-02-24 11:14:05.811 100 FEE 436301 21208 6052565 2024-02-24 11:14:05.811 2024-02-24 11:14:05.811 900 TIP 436301 618 6052612 2024-02-24 11:28:18.731 2024-02-24 11:28:18.731 2100 FEE 437008 6700 6052613 2024-02-24 11:28:18.731 2024-02-24 11:28:18.731 18900 TIP 437008 19303 6052713 2024-02-24 11:50:02.417 2024-02-24 11:50:02.417 1000 FEE 436803 706 6052714 2024-02-24 11:50:02.417 2024-02-24 11:50:02.417 9000 TIP 436803 20993 6052716 2024-02-24 11:50:12.357 2024-02-24 11:50:12.357 1000 FEE 436801 21405 6052717 2024-02-24 11:50:12.357 2024-02-24 11:50:12.357 9000 TIP 436801 11443 6052730 2024-02-24 11:51:22.798 2024-02-24 11:51:22.798 1000 FEE 437046 18387 6052731 2024-02-24 11:51:22.798 2024-02-24 11:51:22.798 9000 TIP 437046 19105 6052732 2024-02-24 11:51:42.584 2024-02-24 11:51:42.584 100000 FEE 437063 16004 6052762 2024-02-24 12:03:42.948 2024-02-24 12:03:42.948 2100 FEE 436960 21079 6052763 2024-02-24 12:03:42.948 2024-02-24 12:03:42.948 18900 TIP 436960 14910 6052776 2024-02-24 12:06:08.458 2024-02-24 12:06:08.458 1000 FEE 437049 5865 6052777 2024-02-24 12:06:08.458 2024-02-24 12:06:08.458 9000 TIP 437049 18344 6052778 2024-02-24 12:06:09.359 2024-02-24 12:06:09.359 1000 FEE 437045 3717 6052779 2024-02-24 12:06:09.359 2024-02-24 12:06:09.359 9000 TIP 437045 19284 6052793 2024-02-24 12:11:29.15 2024-02-24 12:11:29.15 1000 FEE 437078 683 6052813 2024-02-24 12:20:08.257 2024-02-24 12:20:08.257 3200 FEE 436902 626 6052814 2024-02-24 12:20:08.257 2024-02-24 12:20:08.257 28800 TIP 436902 17710 6052824 2024-02-24 12:22:37.451 2024-02-24 12:22:37.451 100000 FEE 437084 16638 6052830 2024-02-24 12:23:24.104 2024-02-24 12:23:24.104 1000 FEE 437086 19613 6052894 2024-02-24 12:36:41.977 2024-02-24 12:36:41.977 1000 FEE 437101 684 6052895 2024-02-24 12:36:47.777 2024-02-24 12:36:47.777 0 FEE 437099 9341 6052906 2024-02-24 12:39:17.385 2024-02-24 12:39:17.385 1000 FEE 437106 4173 6052909 2024-02-24 12:40:23.65 2024-02-24 12:40:23.65 1000 FEE 437108 4292 6052937 2024-02-24 12:40:58.195 2024-02-24 12:40:58.195 300 FEE 436720 2224 6052938 2024-02-24 12:40:58.195 2024-02-24 12:40:58.195 2700 TIP 436720 19842 6052945 2024-02-24 12:40:58.851 2024-02-24 12:40:58.851 300 FEE 436720 20287 6052946 2024-02-24 12:40:58.851 2024-02-24 12:40:58.851 2700 TIP 436720 21263 6052960 2024-02-24 12:42:46.691 2024-02-24 12:42:46.691 1100 FEE 437025 11491 6052961 2024-02-24 12:42:46.691 2024-02-24 12:42:46.691 9900 TIP 437025 9341 6052990 2024-02-24 12:45:33.741 2024-02-24 12:45:33.741 1000 FEE 437114 8459 6053008 2024-02-24 12:47:37.902 2024-02-24 12:47:37.902 1000 FEE 437126 2703 6053013 2024-02-24 12:48:17.283 2024-02-24 12:48:17.283 1000 FEE 437130 7185 6053020 2024-02-24 12:49:13.37 2024-02-24 12:49:13.37 1000 FEE 437136 9352 6053031 2024-02-24 12:52:02.879 2024-02-24 12:52:02.879 1000 FEE 437143 13553 6053079 2024-02-24 12:56:08.375 2024-02-24 12:56:08.375 2100 FEE 436926 19967 6053080 2024-02-24 12:56:08.375 2024-02-24 12:56:08.375 18900 TIP 436926 687 6052492 2024-02-24 10:44:03.393 2024-02-24 10:44:03.393 1000 STREAM 141924 10849 6117470 2024-02-29 19:07:29.321 2024-02-29 19:07:29.321 1000 FEE 443861 19471 6117471 2024-02-29 19:07:29.321 2024-02-29 19:07:29.321 9000 TIP 443861 775 6117480 2024-02-29 19:07:31.826 2024-02-29 19:07:31.826 1000 FEE 442769 17953 6117481 2024-02-29 19:07:31.826 2024-02-29 19:07:31.826 9000 TIP 442769 14939 6117486 2024-02-29 19:07:34.432 2024-02-29 19:07:34.432 2000 FEE 442848 2338 6117487 2024-02-29 19:07:34.432 2024-02-29 19:07:34.432 18000 TIP 442848 19810 6117533 2024-02-29 19:10:52.233 2024-02-29 19:10:52.233 1000 FEE 444096 21083 6117552 2024-02-29 19:11:55.432 2024-02-29 19:11:55.432 2000 FEE 443473 19821 6117553 2024-02-29 19:11:55.432 2024-02-29 19:11:55.432 18000 TIP 443473 15139 6117560 2024-02-29 19:11:59.562 2024-02-29 19:11:59.562 2000 FEE 443260 8416 6117561 2024-02-29 19:11:59.562 2024-02-29 19:11:59.562 18000 TIP 443260 21247 6117566 2024-02-29 19:12:00.541 2024-02-29 19:12:00.541 2000 FEE 442633 1817 6117567 2024-02-29 19:12:00.541 2024-02-29 19:12:00.541 18000 TIP 442633 16351 6117575 2024-02-29 19:12:12.265 2024-02-29 19:12:12.265 2000 FEE 443956 10094 6117576 2024-02-29 19:12:12.265 2024-02-29 19:12:12.265 18000 TIP 443956 13249 6117579 2024-02-29 19:12:13.265 2024-02-29 19:12:13.265 2000 FEE 443662 16788 6117580 2024-02-29 19:12:13.265 2024-02-29 19:12:13.265 18000 TIP 443662 19839 6117593 2024-02-29 19:13:25.273 2024-02-29 19:13:25.273 0 FEE 444100 17696 6117618 2024-02-29 19:14:09.573 2024-02-29 19:14:09.573 2100 FEE 443830 12334 6117619 2024-02-29 19:14:09.573 2024-02-29 19:14:09.573 18900 TIP 443830 16456 6117624 2024-02-29 19:16:48.895 2024-02-29 19:16:48.895 5700 FEE 444102 19117 6117625 2024-02-29 19:16:48.895 2024-02-29 19:16:48.895 51300 TIP 444102 2703 6117628 2024-02-29 19:17:44.107 2024-02-29 19:17:44.107 1700 FEE 444102 14247 6117629 2024-02-29 19:17:44.107 2024-02-29 19:17:44.107 15300 TIP 444102 17535 6117644 2024-02-29 19:18:51.368 2024-02-29 19:18:51.368 2100 FEE 444032 14015 6117645 2024-02-29 19:18:51.368 2024-02-29 19:18:51.368 18900 TIP 444032 20691 6117700 2024-02-29 19:25:46.228 2024-02-29 19:25:46.228 0 FEE 444109 19906 6117701 2024-02-29 19:25:54.839 2024-02-29 19:25:54.839 21000 FEE 444114 4322 6117709 2024-02-29 19:26:19.642 2024-02-29 19:26:19.642 2100 FEE 443545 1044 6117710 2024-02-29 19:26:19.642 2024-02-29 19:26:19.642 18900 TIP 443545 1493 6117711 2024-02-29 19:26:19.871 2024-02-29 19:26:19.871 2100 FEE 443545 4323 6117712 2024-02-29 19:26:19.871 2024-02-29 19:26:19.871 18900 TIP 443545 14280 6117717 2024-02-29 19:26:34.585 2024-02-29 19:26:34.585 0 FEE 444109 20897 6117732 2024-02-29 19:26:48.307 2024-02-29 19:26:48.307 2100 FEE 443659 3990 6117733 2024-02-29 19:26:48.307 2024-02-29 19:26:48.307 18900 TIP 443659 9985 6117740 2024-02-29 19:26:49.175 2024-02-29 19:26:49.175 2100 FEE 443659 6202 6117741 2024-02-29 19:26:49.175 2024-02-29 19:26:49.175 18900 TIP 443659 20504 6117755 2024-02-29 19:27:09.449 2024-02-29 19:27:09.449 2100 FEE 443799 12422 6117756 2024-02-29 19:27:09.449 2024-02-29 19:27:09.449 18900 TIP 443799 1833 6117769 2024-02-29 19:27:10.493 2024-02-29 19:27:10.493 2100 FEE 443794 19566 6117770 2024-02-29 19:27:10.493 2024-02-29 19:27:10.493 18900 TIP 443794 3642 6117777 2024-02-29 19:27:11.916 2024-02-29 19:27:11.916 2100 FEE 443919 14472 6117778 2024-02-29 19:27:11.916 2024-02-29 19:27:11.916 18900 TIP 443919 17514 6117779 2024-02-29 19:27:12.023 2024-02-29 19:27:12.023 2100 FEE 443816 11897 6117780 2024-02-29 19:27:12.023 2024-02-29 19:27:12.023 18900 TIP 443816 2431 6117781 2024-02-29 19:27:12.372 2024-02-29 19:27:12.372 2100 FEE 443816 20205 6117782 2024-02-29 19:27:12.372 2024-02-29 19:27:12.372 18900 TIP 443816 8926 6117789 2024-02-29 19:27:13.789 2024-02-29 19:27:13.789 2100 FEE 443712 1576 6117790 2024-02-29 19:27:13.789 2024-02-29 19:27:13.789 18900 TIP 443712 4502 6117791 2024-02-29 19:27:13.937 2024-02-29 19:27:13.937 2100 FEE 444055 12346 6117792 2024-02-29 19:27:13.937 2024-02-29 19:27:13.937 18900 TIP 444055 16004 6117795 2024-02-29 19:27:15.086 2024-02-29 19:27:15.086 2100 FEE 443816 21491 6117796 2024-02-29 19:27:15.086 2024-02-29 19:27:15.086 18900 TIP 443816 11820 6117807 2024-02-29 19:27:15.655 2024-02-29 19:27:15.655 2100 FEE 443790 2203 6117808 2024-02-29 19:27:15.655 2024-02-29 19:27:15.655 18900 TIP 443790 17050 6117825 2024-02-29 19:27:33.659 2024-02-29 19:27:33.659 1100 FEE 443668 2789 6117826 2024-02-29 19:27:33.659 2024-02-29 19:27:33.659 9900 TIP 443668 16684 6117832 2024-02-29 19:28:36.546 2024-02-29 19:28:36.546 1000 FEE 444119 20555 6117860 2024-02-29 19:30:10.465 2024-02-29 19:30:10.465 1000 FEE 444114 18727 6117861 2024-02-29 19:30:10.465 2024-02-29 19:30:10.465 9000 TIP 444114 21037 6117877 2024-02-29 19:30:40.105 2024-02-29 19:30:40.105 1000 FEE 444114 16948 6117878 2024-02-29 19:30:40.105 2024-02-29 19:30:40.105 9000 TIP 444114 20577 6117883 2024-02-29 19:30:42.032 2024-02-29 19:30:42.032 1000 FEE 444114 2162 6117884 2024-02-29 19:30:42.032 2024-02-29 19:30:42.032 9000 TIP 444114 14905 6117892 2024-02-29 19:31:12.403 2024-02-29 19:31:12.403 100000 DONT_LIKE_THIS 444062 11992 6117917 2024-02-29 19:32:04.382 2024-02-29 19:32:04.382 1000 FEE 444114 21405 6117918 2024-02-29 19:32:04.382 2024-02-29 19:32:04.382 9000 TIP 444114 638 6117927 2024-02-29 19:32:57.154 2024-02-29 19:32:57.154 100000 FEE 444127 9167 6117961 2024-02-29 19:35:32.275 2024-02-29 19:35:32.275 1100 FEE 434440 1673 6117962 2024-02-29 19:35:32.275 2024-02-29 19:35:32.275 9900 TIP 434440 9366 6117978 2024-02-29 19:39:01.514 2024-02-29 19:39:01.514 5000 FEE 444063 7746 6117979 2024-02-29 19:39:01.514 2024-02-29 19:39:01.514 45000 TIP 444063 15536 6117984 2024-02-29 19:39:03.165 2024-02-29 19:39:03.165 1000 FEE 444102 20409 6117985 2024-02-29 19:39:03.165 2024-02-29 19:39:03.165 9000 TIP 444102 10007 6117989 2024-02-29 19:39:04.966 2024-02-29 19:39:04.966 1000 FEE 444099 9166 6117990 2024-02-29 19:39:04.966 2024-02-29 19:39:04.966 9000 TIP 444099 3683 6118019 2024-02-29 19:39:20.724 2024-02-29 19:39:20.724 1000 FEE 444136 18539 6118023 2024-02-29 19:39:37.706 2024-02-29 19:39:37.706 1000 FEE 444138 20220 6118026 2024-02-29 19:39:43.078 2024-02-29 19:39:43.078 1000 FEE 443794 7125 6118027 2024-02-29 19:39:43.078 2024-02-29 19:39:43.078 9000 TIP 443794 11378 6118039 2024-02-29 19:41:08.988 2024-02-29 19:41:08.988 1000 FEE 444140 18409 6118058 2024-02-29 19:43:02.025 2024-02-29 19:43:02.025 1000 FEE 444102 1751 6118059 2024-02-29 19:43:02.025 2024-02-29 19:43:02.025 9000 TIP 444102 20059 6118069 2024-02-29 19:43:37.049 2024-02-29 19:43:37.049 1000 FEE 444144 19199 6118074 2024-02-29 19:44:41.938 2024-02-29 19:44:41.938 3100 FEE 444143 13544 6118075 2024-02-29 19:44:41.938 2024-02-29 19:44:41.938 27900 TIP 444143 21242 6118087 2024-02-29 19:46:31.263 2024-02-29 19:46:31.263 0 FEE 444148 21338 6118093 2024-02-29 19:48:46.549 2024-02-29 19:48:46.549 0 FEE 444148 14152 6118120 2024-02-29 19:52:47.253 2024-02-29 19:52:47.253 5700 FEE 444158 21400 6118121 2024-02-29 19:52:47.253 2024-02-29 19:52:47.253 51300 TIP 444158 20108 6118140 2024-02-29 19:54:54.537 2024-02-29 19:54:54.537 0 FEE 444151 2402 6052504 2024-02-24 10:50:03.466 2024-02-24 10:50:03.466 1000 STREAM 141924 5759 6052536 2024-02-24 11:04:03.568 2024-02-24 11:04:03.568 1000 STREAM 141924 762 6117478 2024-02-29 19:07:30.497 2024-02-29 19:07:30.497 1000 FEE 443861 19511 6117479 2024-02-29 19:07:30.497 2024-02-29 19:07:30.497 9000 TIP 443861 18231 6117484 2024-02-29 19:07:34.418 2024-02-29 19:07:34.418 2100 FEE 444087 20906 6117485 2024-02-29 19:07:34.418 2024-02-29 19:07:34.418 18900 TIP 444087 19469 6117502 2024-02-29 19:07:57.703 2024-02-29 19:07:57.703 1000 FEE 442721 17707 6117503 2024-02-29 19:07:57.703 2024-02-29 19:07:57.703 9000 TIP 442721 20655 6117511 2024-02-29 19:08:01.861 2024-02-29 19:08:01.861 1000 FEE 443878 9350 6117512 2024-02-29 19:08:01.861 2024-02-29 19:08:01.861 9000 TIP 443878 16485 6117545 2024-02-29 19:11:50.899 2024-02-29 19:11:50.899 2000 FEE 442785 2952 6117546 2024-02-29 19:11:50.899 2024-02-29 19:11:50.899 18000 TIP 442785 9 6117573 2024-02-29 19:12:11.722 2024-02-29 19:12:11.722 2000 FEE 443389 20647 6117574 2024-02-29 19:12:11.722 2024-02-29 19:12:11.722 18000 TIP 443389 6419 6117577 2024-02-29 19:12:12.94 2024-02-29 19:12:12.94 2000 FEE 442615 20022 6117578 2024-02-29 19:12:12.94 2024-02-29 19:12:12.94 18000 TIP 442615 11561 6117599 2024-02-29 19:13:54.629 2024-02-29 19:13:54.629 8400 FEE 443861 19652 6117600 2024-02-29 19:13:54.629 2024-02-29 19:13:54.629 75600 TIP 443861 16353 6117603 2024-02-29 19:13:58.329 2024-02-29 19:13:58.329 2100 FEE 443878 13553 6117604 2024-02-29 19:13:58.329 2024-02-29 19:13:58.329 18900 TIP 443878 19502 6117609 2024-02-29 19:13:59.1 2024-02-29 19:13:59.1 2100 FEE 443878 17209 6117610 2024-02-29 19:13:59.1 2024-02-29 19:13:59.1 18900 TIP 443878 17722 6117632 2024-02-29 19:17:44.404 2024-02-29 19:17:44.404 1700 FEE 444102 12769 6117633 2024-02-29 19:17:44.404 2024-02-29 19:17:44.404 15300 TIP 444102 17184 6117642 2024-02-29 19:18:48.004 2024-02-29 19:18:48.004 2100 FEE 443870 20291 6117643 2024-02-29 19:18:48.004 2024-02-29 19:18:48.004 18900 TIP 443870 636 6117652 2024-02-29 19:19:18.324 2024-02-29 19:19:18.324 11000 FEE 444026 16948 6117653 2024-02-29 19:19:18.324 2024-02-29 19:19:18.324 99000 TIP 444026 14959 6117663 2024-02-29 19:20:29.857 2024-02-29 19:20:29.857 500 FEE 444072 14308 6117664 2024-02-29 19:20:29.857 2024-02-29 19:20:29.857 4500 TIP 444072 19566 6117690 2024-02-29 19:25:21.264 2024-02-29 19:25:21.264 3300 FEE 434440 19038 6117691 2024-02-29 19:25:21.264 2024-02-29 19:25:21.264 29700 TIP 434440 20424 6117692 2024-02-29 19:25:21.471 2024-02-29 19:25:21.471 3300 FEE 434440 675 6117693 2024-02-29 19:25:21.471 2024-02-29 19:25:21.471 29700 TIP 434440 20852 6117744 2024-02-29 19:26:59.324 2024-02-29 19:26:59.324 1000 FEE 444115 12049 6117761 2024-02-29 19:27:09.914 2024-02-29 19:27:09.914 2100 FEE 443812 640 6117762 2024-02-29 19:27:09.914 2024-02-29 19:27:09.914 18900 TIP 443812 12744 6117763 2024-02-29 19:27:09.936 2024-02-29 19:27:09.936 2100 FEE 443745 18271 6117764 2024-02-29 19:27:09.936 2024-02-29 19:27:09.936 18900 TIP 443745 11967 6117793 2024-02-29 19:27:14.899 2024-02-29 19:27:14.899 2100 FEE 443816 12218 6117794 2024-02-29 19:27:14.899 2024-02-29 19:27:14.899 18900 TIP 443816 16954 6117799 2024-02-29 19:27:15.242 2024-02-29 19:27:15.242 2100 FEE 443816 1483 6117800 2024-02-29 19:27:15.242 2024-02-29 19:27:15.242 18900 TIP 443816 1628 6117823 2024-02-29 19:27:24.495 2024-02-29 19:27:24.495 2100 FEE 444114 976 6117824 2024-02-29 19:27:24.495 2024-02-29 19:27:24.495 18900 TIP 444114 7809 6117829 2024-02-29 19:28:00.722 2024-02-29 19:28:00.722 0 FEE 444109 3377 6117841 2024-02-29 19:29:08.989 2024-02-29 19:29:08.989 10000 FEE 444120 18637 6117849 2024-02-29 19:30:03.214 2024-02-29 19:30:03.214 27900 FEE 444114 20110 6117850 2024-02-29 19:30:03.214 2024-02-29 19:30:03.214 251100 TIP 444114 4175 6117856 2024-02-29 19:30:09.283 2024-02-29 19:30:09.283 1000 FEE 444114 993 6117857 2024-02-29 19:30:09.283 2024-02-29 19:30:09.283 9000 TIP 444114 14990 6117885 2024-02-29 19:30:42.672 2024-02-29 19:30:42.672 1000 FEE 444114 16684 6117886 2024-02-29 19:30:42.672 2024-02-29 19:30:42.672 9000 TIP 444114 12188 6052588 2024-02-24 11:20:14.341 2024-02-24 11:20:14.341 18900 TIP 437045 9816 6052610 2024-02-24 11:28:15.404 2024-02-24 11:28:15.404 2100 FEE 437008 18518 6052611 2024-02-24 11:28:15.404 2024-02-24 11:28:15.404 18900 TIP 437008 18180 6052640 2024-02-24 11:35:06.878 2024-02-24 11:35:06.878 100000 DONT_LIKE_THIS 436996 20972 6052676 2024-02-24 11:42:21.357 2024-02-24 11:42:21.357 1000 FEE 437058 21416 6052677 2024-02-24 11:42:21.357 2024-02-24 11:42:21.357 9000 TIP 437058 16950 6052745 2024-02-24 11:57:18.607 2024-02-24 11:57:18.607 0 FEE 437062 12808 6052749 2024-02-24 12:00:43.294 2024-02-24 12:00:43.294 1000 FEE 437066 1959 6052754 2024-02-24 12:02:02.846 2024-02-24 12:02:02.846 1000 FEE 437068 14910 6052756 2024-02-24 12:02:04.422 2024-02-24 12:02:04.422 2100 FEE 436964 5538 6052757 2024-02-24 12:02:04.422 2024-02-24 12:02:04.422 18900 TIP 436964 20554 6052765 2024-02-24 12:04:42.338 2024-02-24 12:04:42.338 10000 FEE 437070 739 6052780 2024-02-24 12:06:44.048 2024-02-24 12:06:44.048 0 FEE 437070 7654 6052810 2024-02-24 12:19:30.908 2024-02-24 12:19:30.908 3200 FEE 437017 11165 6052811 2024-02-24 12:19:30.908 2024-02-24 12:19:30.908 28800 TIP 437017 7425 6052821 2024-02-24 12:22:28.769 2024-02-24 12:22:28.769 3200 FEE 436911 4027 6052822 2024-02-24 12:22:28.769 2024-02-24 12:22:28.769 28800 TIP 436911 20015 6052823 2024-02-24 12:22:32.382 2024-02-24 12:22:32.382 1000 FEE 437083 2233 6052835 2024-02-24 12:23:39.915 2024-02-24 12:23:39.915 3200 FEE 436932 617 6052836 2024-02-24 12:23:39.915 2024-02-24 12:23:39.915 28800 TIP 436932 14791 6052844 2024-02-24 12:25:57.866 2024-02-24 12:25:57.866 1000 POLL 436759 7960 6052850 2024-02-24 12:26:10.912 2024-02-24 12:26:10.912 4000 FEE 437087 2774 6052851 2024-02-24 12:26:10.912 2024-02-24 12:26:10.912 36000 TIP 437087 19878 6052913 2024-02-24 12:40:38.802 2024-02-24 12:40:38.802 2100 FEE 435847 6700 6052914 2024-02-24 12:40:38.802 2024-02-24 12:40:38.802 18900 TIP 435847 2010 6052923 2024-02-24 12:40:57.062 2024-02-24 12:40:57.062 300 FEE 436720 9844 6052924 2024-02-24 12:40:57.062 2024-02-24 12:40:57.062 2700 TIP 436720 17541 6052929 2024-02-24 12:40:57.552 2024-02-24 12:40:57.552 300 FEE 436720 15484 6052930 2024-02-24 12:40:57.552 2024-02-24 12:40:57.552 2700 TIP 436720 782 6052935 2024-02-24 12:40:58.022 2024-02-24 12:40:58.022 300 FEE 436720 18232 6052936 2024-02-24 12:40:58.022 2024-02-24 12:40:58.022 2700 TIP 436720 8245 6052958 2024-02-24 12:42:41.447 2024-02-24 12:42:41.447 2100 FEE 437032 16097 6052959 2024-02-24 12:42:41.447 2024-02-24 12:42:41.447 18900 TIP 437032 12606 6052986 2024-02-24 12:45:13.737 2024-02-24 12:45:13.737 1000 FEE 437112 16410 6052989 2024-02-24 12:45:28.281 2024-02-24 12:45:28.281 1000 FEE 437113 6149 6052992 2024-02-24 12:45:44.847 2024-02-24 12:45:44.847 1000 FEE 437116 11999 6053006 2024-02-24 12:47:17.402 2024-02-24 12:47:17.402 1000 FEE 437124 18500 6053023 2024-02-24 12:49:44.092 2024-02-24 12:49:44.092 1000 FEE 437139 18892 6053061 2024-02-24 12:54:16.667 2024-02-24 12:54:16.667 100 FEE 432920 658 6053062 2024-02-24 12:54:16.667 2024-02-24 12:54:16.667 900 TIP 432920 18919 6053140 2024-02-24 13:04:09.845 2024-02-24 13:04:09.845 1000 FEE 437154 19930 6053149 2024-02-24 13:06:00.891 2024-02-24 13:06:00.891 1000 FEE 437155 17513 6053156 2024-02-24 13:07:23.529 2024-02-24 13:07:23.529 1000 FEE 437156 775 6053180 2024-02-24 13:13:38.677 2024-02-24 13:13:38.677 1000 FEE 437162 9 6053228 2024-02-24 13:20:59.707 2024-02-24 13:20:59.707 2100 FEE 436894 16942 6053229 2024-02-24 13:20:59.707 2024-02-24 13:20:59.707 18900 TIP 436894 10944 6053234 2024-02-24 13:21:11.297 2024-02-24 13:21:11.297 2100 FEE 437026 19199 6053235 2024-02-24 13:21:11.297 2024-02-24 13:21:11.297 18900 TIP 437026 19235 6053242 2024-02-24 13:22:16.02 2024-02-24 13:22:16.02 2100 FEE 437160 15052 6053243 2024-02-24 13:22:16.02 2024-02-24 13:22:16.02 18900 TIP 437160 1291 6053246 2024-02-24 13:22:55.001 2024-02-24 13:22:55.001 100 FEE 437166 18336 6053247 2024-02-24 13:22:55.001 2024-02-24 13:22:55.001 900 TIP 437166 2010 6053280 2024-02-24 13:27:28.539 2024-02-24 13:27:28.539 10000 FEE 437174 5522 6053340 2024-02-24 13:35:09.148 2024-02-24 13:35:09.148 2100 FEE 437087 15925 6053341 2024-02-24 13:35:09.148 2024-02-24 13:35:09.148 18900 TIP 437087 19570 6053353 2024-02-24 13:36:59.674 2024-02-24 13:36:59.674 1000 FEE 437185 12368 6053358 2024-02-24 13:37:33.1 2024-02-24 13:37:33.1 1000 FEE 437188 4654 6053409 2024-02-24 13:40:28.515 2024-02-24 13:40:28.515 2100 FEE 437040 18235 6053410 2024-02-24 13:40:28.515 2024-02-24 13:40:28.515 18900 TIP 437040 1802 6053417 2024-02-24 13:40:31.113 2024-02-24 13:40:31.113 1300 FEE 437054 6537 6053418 2024-02-24 13:40:31.113 2024-02-24 13:40:31.113 11700 TIP 437054 7809 6053473 2024-02-24 13:49:48.749 2024-02-24 13:49:48.749 1000 FEE 437202 14267 6053508 2024-02-24 13:52:15.323 2024-02-24 13:52:15.323 2100 FEE 437164 15103 6053509 2024-02-24 13:52:15.323 2024-02-24 13:52:15.323 18900 TIP 437164 17221 6053521 2024-02-24 13:54:13.484 2024-02-24 13:54:13.484 1000 FEE 437208 21501 6053542 2024-02-24 13:54:28.754 2024-02-24 13:54:28.754 1000 FEE 437168 19759 6053543 2024-02-24 13:54:28.754 2024-02-24 13:54:28.754 9000 TIP 437168 12245 6053561 2024-02-24 13:56:16.907 2024-02-24 13:56:16.907 1000 FEE 437054 2039 6053562 2024-02-24 13:56:16.907 2024-02-24 13:56:16.907 9000 TIP 437054 1718 6053575 2024-02-24 13:59:02.848 2024-02-24 13:59:02.848 200 FEE 437176 5129 6053576 2024-02-24 13:59:02.848 2024-02-24 13:59:02.848 1800 TIP 437176 16858 6053593 2024-02-24 13:59:31.122 2024-02-24 13:59:31.122 1000 FEE 437210 18896 6053594 2024-02-24 13:59:31.122 2024-02-24 13:59:31.122 9000 TIP 437210 21400 6053601 2024-02-24 14:00:05.263 2024-02-24 14:00:05.263 4000 FEE 437205 14122 6053602 2024-02-24 14:00:05.263 2024-02-24 14:00:05.263 36000 TIP 437205 20554 6053609 2024-02-24 14:00:11.385 2024-02-24 14:00:11.385 1000 FEE 437215 18426 6053612 2024-02-24 14:00:12.091 2024-02-24 14:00:12.091 700 FEE 437207 18528 6053613 2024-02-24 14:00:12.091 2024-02-24 14:00:12.091 6300 TIP 437207 12808 6053621 2024-02-24 14:01:34.439 2024-02-24 14:01:34.439 1000 FEE 437219 899 6053637 2024-02-24 14:03:44.191 2024-02-24 14:03:44.191 1000 FEE 437225 18714 6053641 2024-02-24 14:04:36.143 2024-02-24 14:04:36.143 1000 FEE 437218 16456 6053642 2024-02-24 14:04:36.143 2024-02-24 14:04:36.143 9000 TIP 437218 15556 6053644 2024-02-24 14:05:02.671 2024-02-24 14:05:02.671 1000 FEE 437046 14255 6053645 2024-02-24 14:05:02.671 2024-02-24 14:05:02.671 9000 TIP 437046 21575 6053658 2024-02-24 14:06:48.47 2024-02-24 14:06:48.47 1000 FEE 437227 8544 6053659 2024-02-24 14:06:50.595 2024-02-24 14:06:50.595 1000 FEE 437196 2596 6053660 2024-02-24 14:06:50.595 2024-02-24 14:06:50.595 9000 TIP 437196 9335 6053671 2024-02-24 14:07:22.403 2024-02-24 14:07:22.403 2100 FEE 437054 17592 6053672 2024-02-24 14:07:22.403 2024-02-24 14:07:22.403 18900 TIP 437054 20099 6053673 2024-02-24 14:07:27.638 2024-02-24 14:07:27.638 2100 FEE 437183 1394 6053674 2024-02-24 14:07:27.638 2024-02-24 14:07:27.638 18900 TIP 437183 19785 6053696 2024-02-24 14:08:44.826 2024-02-24 14:08:44.826 1000 FEE 436882 7877 6053697 2024-02-24 14:08:44.826 2024-02-24 14:08:44.826 9000 TIP 436882 5017 6053713 2024-02-24 14:11:04.904 2024-02-24 14:11:04.904 6900 FEE 437222 12721 6053714 2024-02-24 14:11:04.904 2024-02-24 14:11:04.904 62100 TIP 437222 15719 6053717 2024-02-24 14:11:05.405 2024-02-24 14:11:05.405 6900 FEE 437222 20045 6053718 2024-02-24 14:11:05.405 2024-02-24 14:11:05.405 62100 TIP 437222 21588 6052672 2024-02-24 11:40:03.972 2024-02-24 11:40:03.972 1000 STREAM 141924 1490 6052674 2024-02-24 11:42:03.913 2024-02-24 11:42:03.913 1000 STREAM 141924 19966 6052680 2024-02-24 11:43:03.927 2024-02-24 11:43:03.927 1000 STREAM 141924 20594 6052681 2024-02-24 11:44:03.933 2024-02-24 11:44:03.933 1000 STREAM 141924 10728 6052693 2024-02-24 11:48:03.946 2024-02-24 11:48:03.946 1000 STREAM 141924 20280 6117510 2024-02-29 19:08:01.514 2024-02-29 19:08:01.514 9000 TIP 443390 18629 6117528 2024-02-29 19:08:13.93 2024-02-29 19:08:13.93 100000 FEE 444095 18199 6117535 2024-02-29 19:11:06.969 2024-02-29 19:11:06.969 100000 FEE 444097 21575 6117554 2024-02-29 19:11:55.795 2024-02-29 19:11:55.795 2000 FEE 443473 7899 6117555 2024-02-29 19:11:55.795 2024-02-29 19:11:55.795 18000 TIP 443473 16259 6117569 2024-02-29 19:12:07.273 2024-02-29 19:12:07.273 2000 FEE 443512 18310 6117570 2024-02-29 19:12:07.273 2024-02-29 19:12:07.273 18000 TIP 443512 20562 6117616 2024-02-29 19:14:09.268 2024-02-29 19:14:09.268 2100 FEE 443830 8648 6117617 2024-02-29 19:14:09.268 2024-02-29 19:14:09.268 18900 TIP 443830 20190 6117639 2024-02-29 19:18:29.633 2024-02-29 19:18:29.633 1000 FEE 444105 20788 6117687 2024-02-29 19:25:10.688 2024-02-29 19:25:10.688 0 FEE 444109 11158 6117696 2024-02-29 19:25:24.101 2024-02-29 19:25:24.101 6600 FEE 434440 11158 6117697 2024-02-29 19:25:24.101 2024-02-29 19:25:24.101 59400 TIP 434440 17714 6117705 2024-02-29 19:26:19.26 2024-02-29 19:26:19.26 2100 FEE 443545 17331 6117706 2024-02-29 19:26:19.26 2024-02-29 19:26:19.26 18900 TIP 443545 17042 6117730 2024-02-29 19:26:48.087 2024-02-29 19:26:48.087 2100 FEE 443659 14295 6117731 2024-02-29 19:26:48.087 2024-02-29 19:26:48.087 18900 TIP 443659 21501 6117748 2024-02-29 19:27:08.8 2024-02-29 19:27:08.8 1000 FEE 444116 1319 6117765 2024-02-29 19:27:10.168 2024-02-29 19:27:10.168 2100 FEE 443812 19638 6117766 2024-02-29 19:27:10.168 2024-02-29 19:27:10.168 18900 TIP 443812 1180 6117801 2024-02-29 19:27:15.4 2024-02-29 19:27:15.4 2100 FEE 443816 16830 6117802 2024-02-29 19:27:15.4 2024-02-29 19:27:15.4 18900 TIP 443816 21036 6117809 2024-02-29 19:27:16.148 2024-02-29 19:27:16.148 2100 FEE 443836 20970 6117810 2024-02-29 19:27:16.148 2024-02-29 19:27:16.148 18900 TIP 443836 5942 6117819 2024-02-29 19:27:17.863 2024-02-29 19:27:17.863 2100 FEE 443683 12049 6117820 2024-02-29 19:27:17.863 2024-02-29 19:27:17.863 18900 TIP 443683 1142 6117862 2024-02-29 19:30:10.946 2024-02-29 19:30:10.946 1000 FEE 444114 18072 6117863 2024-02-29 19:30:10.946 2024-02-29 19:30:10.946 9000 TIP 444114 1626 6117891 2024-02-29 19:31:07.857 2024-02-29 19:31:07.857 1000 FEE 444124 7097 6117900 2024-02-29 19:31:59.508 2024-02-29 19:31:59.508 1000 FEE 444114 18017 6117901 2024-02-29 19:31:59.508 2024-02-29 19:31:59.508 9000 TIP 444114 720 6117902 2024-02-29 19:32:00.143 2024-02-29 19:32:00.143 1000 FEE 444114 15119 6117903 2024-02-29 19:32:00.143 2024-02-29 19:32:00.143 9000 TIP 444114 19007 6117923 2024-02-29 19:32:16.469 2024-02-29 19:32:16.469 9000 FEE 444099 8380 6117924 2024-02-29 19:32:16.469 2024-02-29 19:32:16.469 81000 TIP 444099 6688 6117933 2024-02-29 19:33:15.464 2024-02-29 19:33:15.464 100 FEE 443799 18321 6117934 2024-02-29 19:33:15.464 2024-02-29 19:33:15.464 900 TIP 443799 1002 6117951 2024-02-29 19:34:23.182 2024-02-29 19:34:23.182 2100 FEE 444127 18667 6117952 2024-02-29 19:34:23.182 2024-02-29 19:34:23.182 18900 TIP 444127 12175 6117959 2024-02-29 19:35:26.447 2024-02-29 19:35:26.447 7700 FEE 444130 18828 6117960 2024-02-29 19:35:26.447 2024-02-29 19:35:26.447 69300 TIP 444130 725 6117965 2024-02-29 19:36:27.961 2024-02-29 19:36:27.961 2100 FEE 444102 9078 6117966 2024-02-29 19:36:27.961 2024-02-29 19:36:27.961 18900 TIP 444102 6533 6117975 2024-02-29 19:38:51.299 2024-02-29 19:38:51.299 2100 FEE 443389 14037 6117976 2024-02-29 19:38:51.299 2024-02-29 19:38:51.299 18900 TIP 443389 15075 6117980 2024-02-29 19:39:01.947 2024-02-29 19:39:01.947 5000 FEE 444063 21269 6117981 2024-02-29 19:39:01.947 2024-02-29 19:39:01.947 45000 TIP 444063 1697 6117995 2024-02-29 19:39:07.094 2024-02-29 19:39:07.094 1000 FEE 444078 11417 6117996 2024-02-29 19:39:07.094 2024-02-29 19:39:07.094 9000 TIP 444078 20059 6118003 2024-02-29 19:39:11.406 2024-02-29 19:39:11.406 1000 FEE 444135 14503 6118008 2024-02-29 19:39:12.819 2024-02-29 19:39:12.819 1000 FEE 444063 20715 6118009 2024-02-29 19:39:12.819 2024-02-29 19:39:12.819 9000 TIP 444063 1120 6118035 2024-02-29 19:40:37.901 2024-02-29 19:40:37.901 27900 FEE 444100 17984 6118036 2024-02-29 19:40:37.901 2024-02-29 19:40:37.901 251100 TIP 444100 1046 6118042 2024-02-29 19:41:41.358 2024-02-29 19:41:41.358 1000 FEE 444142 8472 6118043 2024-02-29 19:41:44.099 2024-02-29 19:41:44.099 0 FEE 444141 15474 6118047 2024-02-29 19:42:04.669 2024-02-29 19:42:04.669 1000 FEE 444132 8535 6118048 2024-02-29 19:42:04.669 2024-02-29 19:42:04.669 9000 TIP 444132 20156 6118049 2024-02-29 19:42:04.91 2024-02-29 19:42:04.91 1000 FEE 444132 15196 6118050 2024-02-29 19:42:04.91 2024-02-29 19:42:04.91 9000 TIP 444132 17172 6118062 2024-02-29 19:43:03.024 2024-02-29 19:43:03.024 1000 FEE 444102 21441 6118063 2024-02-29 19:43:03.024 2024-02-29 19:43:03.024 9000 TIP 444102 16250 6118101 2024-02-29 19:50:29.878 2024-02-29 19:50:29.878 1000 FEE 444112 13782 6118102 2024-02-29 19:50:29.878 2024-02-29 19:50:29.878 9000 TIP 444112 11450 6118156 2024-02-29 19:55:56.154 2024-02-29 19:55:56.154 1000 FEE 444163 18454 6118176 2024-02-29 19:58:41.715 2024-02-29 19:58:41.715 1000 POLL 444165 750 6118200 2024-02-29 19:59:40.077 2024-02-29 19:59:40.077 9000 FEE 444078 19815 6118201 2024-02-29 19:59:40.077 2024-02-29 19:59:40.077 81000 TIP 444078 1519 6118207 2024-02-29 20:00:28.86 2024-02-29 20:00:28.86 6900 FEE 444168 1175 6118208 2024-02-29 20:00:28.86 2024-02-29 20:00:28.86 62100 TIP 444168 9552 6118209 2024-02-29 20:00:29.448 2024-02-29 20:00:29.448 6900 FEE 444168 20715 6118210 2024-02-29 20:00:29.448 2024-02-29 20:00:29.448 62100 TIP 444168 18769 6118252 2024-02-29 20:01:12.798 2024-02-29 20:01:12.798 1700 FEE 444168 11073 6118253 2024-02-29 20:01:12.798 2024-02-29 20:01:12.798 15300 TIP 444168 1814 6118264 2024-02-29 20:01:14.264 2024-02-29 20:01:14.264 1700 FEE 444168 20715 6118265 2024-02-29 20:01:14.264 2024-02-29 20:01:14.264 15300 TIP 444168 19471 6118267 2024-02-29 20:01:34.556 2024-02-29 20:01:34.556 0 FEE 444171 9290 6118275 2024-02-29 20:02:18.445 2024-02-29 20:02:18.445 0 FEE 444168 854 6118289 2024-02-29 20:04:48.531 2024-02-29 20:04:48.531 1600 FEE 444155 20080 6118290 2024-02-29 20:04:48.531 2024-02-29 20:04:48.531 14400 TIP 444155 7818 6118305 2024-02-29 20:07:52.451 2024-02-29 20:07:52.451 0 FEE 444176 13216 6118311 2024-02-29 20:10:27.528 2024-02-29 20:10:27.528 1000 FEE 444178 630 6118317 2024-02-29 20:11:07.266 2024-02-29 20:11:07.266 2100 FEE 444102 18402 6118318 2024-02-29 20:11:07.266 2024-02-29 20:11:07.266 18900 TIP 444102 18154 6118326 2024-02-29 20:11:19.623 2024-02-29 20:11:19.623 0 FEE 444179 21342 6118327 2024-02-29 20:11:19.744 2024-02-29 20:11:19.744 0 FEE 444176 6148 6118339 2024-02-29 20:13:33.514 2024-02-29 20:13:33.514 1000 FEE 444182 14357 6118343 2024-02-29 20:14:13.636 2024-02-29 20:14:13.636 21100 FEE 444168 19980 6118344 2024-02-29 20:14:13.636 2024-02-29 20:14:13.636 189900 TIP 444168 20560 6118357 2024-02-29 20:15:37.985 2024-02-29 20:15:37.985 1000 FEE 444188 4831 6118363 2024-02-29 20:15:59.669 2024-02-29 20:15:59.669 1000 FEE 443655 16954 6118364 2024-02-29 20:15:59.669 2024-02-29 20:15:59.669 9000 TIP 443655 12265 6118367 2024-02-29 20:16:00.214 2024-02-29 20:16:00.214 1000 FEE 443655 5085 6118368 2024-02-29 20:16:00.214 2024-02-29 20:16:00.214 9000 TIP 443655 15843 6118369 2024-02-29 20:16:00.866 2024-02-29 20:16:00.866 1000 FEE 443655 14308 6052673 2024-02-24 11:41:03.914 2024-02-24 11:41:03.914 1000 STREAM 141924 16867 6052682 2024-02-24 11:45:03.944 2024-02-24 11:45:03.944 1000 STREAM 141924 20871 6052683 2024-02-24 11:46:03.935 2024-02-24 11:46:03.935 1000 STREAM 141924 5520 6052688 2024-02-24 11:47:03.943 2024-02-24 11:47:03.943 1000 STREAM 141924 18896 6052699 2024-02-24 11:49:04.015 2024-02-24 11:49:04.015 1000 STREAM 141924 651 6117630 2024-02-29 19:17:44.281 2024-02-29 19:17:44.281 1700 FEE 444102 20891 6117631 2024-02-29 19:17:44.281 2024-02-29 19:17:44.281 15300 TIP 444102 16505 6117634 2024-02-29 19:17:45.098 2024-02-29 19:17:45.098 1700 FEE 444102 16876 6117635 2024-02-29 19:17:45.098 2024-02-29 19:17:45.098 15300 TIP 444102 2709 6117640 2024-02-29 19:18:47.115 2024-02-29 19:18:47.115 2100 FEE 443948 1465 6117641 2024-02-29 19:18:47.115 2024-02-29 19:18:47.115 18900 TIP 443948 2061 6117651 2024-02-29 19:19:12.592 2024-02-29 19:19:12.592 1000 FEE 444106 20023 6117661 2024-02-29 19:20:29.691 2024-02-29 19:20:29.691 500 FEE 444072 9347 6117662 2024-02-29 19:20:29.691 2024-02-29 19:20:29.691 4500 TIP 444072 11678 6117685 2024-02-29 19:24:55.186 2024-02-29 19:24:55.186 1000 FEE 444113 19394 6117698 2024-02-29 19:25:39.319 2024-02-29 19:25:39.319 50000 FEE 444107 5520 6117699 2024-02-29 19:25:39.319 2024-02-29 19:25:39.319 450000 TIP 444107 10731 6117738 2024-02-29 19:26:48.908 2024-02-29 19:26:48.908 2100 FEE 443659 650 6117739 2024-02-29 19:26:48.908 2024-02-29 19:26:48.908 18900 TIP 443659 963 6117746 2024-02-29 19:27:08.789 2024-02-29 19:27:08.789 2100 FEE 443812 13587 6117747 2024-02-29 19:27:08.789 2024-02-29 19:27:08.789 18900 TIP 443812 18774 6117751 2024-02-29 19:27:09.266 2024-02-29 19:27:09.266 2100 FEE 443812 7978 6117752 2024-02-29 19:27:09.266 2024-02-29 19:27:09.266 18900 TIP 443812 2056 6117797 2024-02-29 19:27:15.137 2024-02-29 19:27:15.137 2100 FEE 443915 8954 6117798 2024-02-29 19:27:15.137 2024-02-29 19:27:15.137 18900 TIP 443915 19087 6117803 2024-02-29 19:27:15.595 2024-02-29 19:27:15.595 300 FEE 444068 1705 6117804 2024-02-29 19:27:15.595 2024-02-29 19:27:15.595 2700 TIP 444068 4313 6117815 2024-02-29 19:27:16.949 2024-02-29 19:27:16.949 2100 FEE 443812 12245 6117816 2024-02-29 19:27:16.949 2024-02-29 19:27:16.949 18900 TIP 443812 6260 6117827 2024-02-29 19:27:47.82 2024-02-29 19:27:47.82 100 FEE 443963 12507 6117828 2024-02-29 19:27:47.82 2024-02-29 19:27:47.82 900 TIP 443963 21458 6117845 2024-02-29 19:29:41.068 2024-02-29 19:29:41.068 6900 FEE 444117 16354 6117846 2024-02-29 19:29:41.068 2024-02-29 19:29:41.068 62100 TIP 444117 17218 6117858 2024-02-29 19:30:10.086 2024-02-29 19:30:10.086 1000 FEE 444114 12821 6117859 2024-02-29 19:30:10.086 2024-02-29 19:30:10.086 9000 TIP 444114 6602 6117864 2024-02-29 19:30:11.47 2024-02-29 19:30:11.47 1000 FEE 444114 20990 6117865 2024-02-29 19:30:11.47 2024-02-29 19:30:11.47 9000 TIP 444114 19735 6117879 2024-02-29 19:30:40.719 2024-02-29 19:30:40.719 1000 FEE 444114 11240 6117880 2024-02-29 19:30:40.719 2024-02-29 19:30:40.719 9000 TIP 444114 3400 6117893 2024-02-29 19:31:58.562 2024-02-29 19:31:58.562 100 FEE 444102 9421 6117894 2024-02-29 19:31:58.562 2024-02-29 19:31:58.562 900 TIP 444102 9336 6117897 2024-02-29 19:31:58.869 2024-02-29 19:31:58.869 1000 FEE 444114 1051 6117898 2024-02-29 19:31:58.869 2024-02-29 19:31:58.869 9000 TIP 444114 12245 6117914 2024-02-29 19:32:03.793 2024-02-29 19:32:03.793 1000 FEE 444114 18119 6117915 2024-02-29 19:32:03.793 2024-02-29 19:32:03.793 9000 TIP 444114 18403 6117929 2024-02-29 19:33:05.648 2024-02-29 19:33:05.648 1000 FEE 444128 20225 6117930 2024-02-29 19:33:08.726 2024-02-29 19:33:08.726 1100 FEE 444102 19806 6117931 2024-02-29 19:33:08.726 2024-02-29 19:33:08.726 9900 TIP 444102 1454 6117935 2024-02-29 19:33:20.688 2024-02-29 19:33:20.688 100 FEE 443799 1673 6117936 2024-02-29 19:33:20.688 2024-02-29 19:33:20.688 900 TIP 443799 20182 6117944 2024-02-29 19:34:04.381 2024-02-29 19:34:04.381 1000 FEE 443712 17217 6117945 2024-02-29 19:34:04.381 2024-02-29 19:34:04.381 9000 TIP 443712 21212 6117953 2024-02-29 19:34:27.649 2024-02-29 19:34:27.649 50000 FEE 437022 15088 6117954 2024-02-29 19:34:27.649 2024-02-29 19:34:27.649 450000 TIP 437022 19094 6117956 2024-02-29 19:34:44.99 2024-02-29 19:34:44.99 2100 FEE 444097 20560 6117957 2024-02-29 19:34:44.99 2024-02-29 19:34:44.99 18900 TIP 444097 11527 6118001 2024-02-29 19:39:08.873 2024-02-29 19:39:08.873 1000 FEE 444076 19637 6118002 2024-02-29 19:39:08.873 2024-02-29 19:39:08.873 9000 TIP 444076 19320 6118004 2024-02-29 19:39:11.996 2024-02-29 19:39:11.996 1000 FEE 444066 21263 6118005 2024-02-29 19:39:11.996 2024-02-29 19:39:11.996 9000 TIP 444066 2156 6118020 2024-02-29 19:39:23.938 2024-02-29 19:39:23.938 1000 FEE 444078 16988 6118021 2024-02-29 19:39:23.938 2024-02-29 19:39:23.938 9000 TIP 444078 20106 6118040 2024-02-29 19:41:19.059 2024-02-29 19:41:19.059 1000 FEE 444141 5646 6118041 2024-02-29 19:41:31.375 2024-02-29 19:41:31.375 0 FEE 444141 5637 6118053 2024-02-29 19:42:05.719 2024-02-29 19:42:05.719 1000 FEE 444132 6419 6118054 2024-02-29 19:42:05.719 2024-02-29 19:42:05.719 9000 TIP 444132 20555 6118056 2024-02-29 19:42:52.841 2024-02-29 19:42:52.841 3100 FEE 444141 9330 6118057 2024-02-29 19:42:52.841 2024-02-29 19:42:52.841 27900 TIP 444141 19147 6118071 2024-02-29 19:43:51.096 2024-02-29 19:43:51.096 1600 FEE 444071 7185 6118072 2024-02-29 19:43:51.096 2024-02-29 19:43:51.096 14400 TIP 444071 636 6118097 2024-02-29 19:49:22.616 2024-02-29 19:49:22.616 1000 POLL 444078 17602 6118108 2024-02-29 19:52:00.642 2024-02-29 19:52:00.642 1000 FEE 444156 12921 6118118 2024-02-29 19:52:46.319 2024-02-29 19:52:46.319 100 FEE 444051 3213 6118119 2024-02-29 19:52:46.319 2024-02-29 19:52:46.319 900 TIP 444051 20137 6118126 2024-02-29 19:52:52.893 2024-02-29 19:52:52.893 21000 FEE 444153 19660 6118127 2024-02-29 19:52:52.893 2024-02-29 19:52:52.893 189000 TIP 444153 20201 6118133 2024-02-29 19:54:11.472 2024-02-29 19:54:11.472 2100 FEE 443799 670 6118134 2024-02-29 19:54:11.472 2024-02-29 19:54:11.472 18900 TIP 443799 21303 6118170 2024-02-29 19:57:58.651 2024-02-29 19:57:58.651 100000 FEE 444165 15463 6118190 2024-02-29 19:59:10.61 2024-02-29 19:59:10.61 5700 FEE 444165 11378 6118191 2024-02-29 19:59:10.61 2024-02-29 19:59:10.61 51300 TIP 444165 20430 6118196 2024-02-29 19:59:32.254 2024-02-29 19:59:32.254 100 FEE 444078 1512 6118197 2024-02-29 19:59:32.254 2024-02-29 19:59:32.254 900 TIP 444078 18769 6118232 2024-02-29 20:01:09.691 2024-02-29 20:01:09.691 1700 FEE 444168 16194 6118233 2024-02-29 20:01:09.691 2024-02-29 20:01:09.691 15300 TIP 444168 21242 6052715 2024-02-24 11:50:03.622 2024-02-24 11:50:03.622 1000 STREAM 141924 17944 6052733 2024-02-24 11:52:03.658 2024-02-24 11:52:03.658 1000 STREAM 141924 9078 6052735 2024-02-24 11:53:03.672 2024-02-24 11:53:03.672 1000 STREAM 141924 19864 6052739 2024-02-24 11:55:03.699 2024-02-24 11:55:03.699 1000 STREAM 141924 21332 6052743 2024-02-24 11:56:03.706 2024-02-24 11:56:03.706 1000 STREAM 141924 8459 6052744 2024-02-24 11:57:03.713 2024-02-24 11:57:03.713 1000 STREAM 141924 19296 6052746 2024-02-24 11:58:03.731 2024-02-24 11:58:03.731 1000 STREAM 141924 10311 6052747 2024-02-24 11:59:03.733 2024-02-24 11:59:03.733 1000 STREAM 141924 18529 6052755 2024-02-24 12:02:03.729 2024-02-24 12:02:03.729 1000 STREAM 141924 16769 6052773 2024-02-24 12:06:03.799 2024-02-24 12:06:03.799 1000 STREAM 141924 7773 6052781 2024-02-24 12:07:03.817 2024-02-24 12:07:03.817 1000 STREAM 141924 19378 6052795 2024-02-24 12:12:03.866 2024-02-24 12:12:03.866 1000 STREAM 141924 736 6052798 2024-02-24 12:13:03.859 2024-02-24 12:13:03.859 1000 STREAM 141924 1825 6052799 2024-02-24 12:14:03.862 2024-02-24 12:14:03.862 1000 STREAM 141924 17209 6052800 2024-02-24 12:15:03.874 2024-02-24 12:15:03.874 1000 STREAM 141924 14939 6052802 2024-02-24 12:16:03.915 2024-02-24 12:16:03.915 1000 STREAM 141924 16830 6052803 2024-02-24 12:17:03.891 2024-02-24 12:17:03.891 1000 STREAM 141924 10280 6117724 2024-02-29 19:26:36.745 2024-02-29 19:26:36.745 2100 FEE 443903 13798 6117725 2024-02-29 19:26:36.745 2024-02-29 19:26:36.745 18900 TIP 443903 4313 6117742 2024-02-29 19:26:49.532 2024-02-29 19:26:49.532 2100 FEE 443659 2111 6117743 2024-02-29 19:26:49.532 2024-02-29 19:26:49.532 18900 TIP 443659 20225 6117785 2024-02-29 19:27:12.769 2024-02-29 19:27:12.769 2100 FEE 443816 17183 6117786 2024-02-29 19:27:12.769 2024-02-29 19:27:12.769 18900 TIP 443816 618 6117811 2024-02-29 19:27:16.558 2024-02-29 19:27:16.558 2100 FEE 443812 10063 6117812 2024-02-29 19:27:16.558 2024-02-29 19:27:16.558 18900 TIP 443812 8472 6117817 2024-02-29 19:27:17.579 2024-02-29 19:27:17.579 2100 FEE 443951 17568 6117818 2024-02-29 19:27:17.579 2024-02-29 19:27:17.579 18900 TIP 443951 14503 6117821 2024-02-29 19:27:19.395 2024-02-29 19:27:19.395 2100 FEE 444015 15282 6117822 2024-02-29 19:27:19.395 2024-02-29 19:27:19.395 18900 TIP 444015 913 6117837 2024-02-29 19:29:01.437 2024-02-29 19:29:01.437 6900 FEE 444117 15148 6117838 2024-02-29 19:29:01.437 2024-02-29 19:29:01.437 62100 TIP 444117 691 6117843 2024-02-29 19:29:40.469 2024-02-29 19:29:40.469 6900 FEE 444117 8416 6117844 2024-02-29 19:29:40.469 2024-02-29 19:29:40.469 62100 TIP 444117 19537 6117847 2024-02-29 19:30:02.571 2024-02-29 19:30:02.571 3100 FEE 444114 2620 6117848 2024-02-29 19:30:02.571 2024-02-29 19:30:02.571 27900 TIP 444114 9655 6117873 2024-02-29 19:30:34.404 2024-02-29 19:30:34.404 500 FEE 443712 1175 6117874 2024-02-29 19:30:34.404 2024-02-29 19:30:34.404 4500 TIP 443712 1145 6117910 2024-02-29 19:32:02.379 2024-02-29 19:32:02.379 1000 FEE 444114 795 6117911 2024-02-29 19:32:02.379 2024-02-29 19:32:02.379 9000 TIP 444114 2328 6117921 2024-02-29 19:32:15.198 2024-02-29 19:32:15.198 900 FEE 444099 20745 6117922 2024-02-29 19:32:15.198 2024-02-29 19:32:15.198 8100 TIP 444099 20198 6117937 2024-02-29 19:33:40.328 2024-02-29 19:33:40.328 100 FEE 443583 20683 6117938 2024-02-29 19:33:40.328 2024-02-29 19:33:40.328 900 TIP 443583 1814 6117939 2024-02-29 19:34:02.666 2024-02-29 19:34:02.666 10000 FEE 444099 14195 6117940 2024-02-29 19:34:02.666 2024-02-29 19:34:02.666 90000 TIP 444099 11165 6117946 2024-02-29 19:34:04.763 2024-02-29 19:34:04.763 1000 FEE 443712 18932 6117947 2024-02-29 19:34:04.763 2024-02-29 19:34:04.763 9000 TIP 443712 16950 6052727 2024-02-24 11:51:03.271 2024-02-24 11:51:03.271 1000 STREAM 141924 18271 6052871 2024-02-24 12:31:04.204 2024-02-24 12:31:04.204 1000 STREAM 141924 12779 6117771 2024-02-29 19:27:10.492 2024-02-29 19:27:10.492 2100 FEE 443812 2075 6117772 2024-02-29 19:27:10.492 2024-02-29 19:27:10.492 18900 TIP 443812 14267 6117773 2024-02-29 19:27:11.659 2024-02-29 19:27:11.659 2100 FEE 443816 18336 6117774 2024-02-29 19:27:11.659 2024-02-29 19:27:11.659 18900 TIP 443816 11458 6117775 2024-02-29 19:27:11.832 2024-02-29 19:27:11.832 2100 FEE 443816 7682 6117776 2024-02-29 19:27:11.832 2024-02-29 19:27:11.832 18900 TIP 443816 8004 6117783 2024-02-29 19:27:12.541 2024-02-29 19:27:12.541 2100 FEE 443816 21493 6117784 2024-02-29 19:27:12.541 2024-02-29 19:27:12.541 18900 TIP 443816 13553 6117787 2024-02-29 19:27:13.61 2024-02-29 19:27:13.61 2100 FEE 444055 20970 6117788 2024-02-29 19:27:13.61 2024-02-29 19:27:13.61 18900 TIP 444055 20080 6117833 2024-02-29 19:28:47.376 2024-02-29 19:28:47.376 6900 FEE 444061 20840 6117834 2024-02-29 19:28:47.376 2024-02-29 19:28:47.376 62100 TIP 444061 15556 6117854 2024-02-29 19:30:09.008 2024-02-29 19:30:09.008 100 FEE 444121 909 6117855 2024-02-29 19:30:09.008 2024-02-29 19:30:09.008 900 TIP 444121 6578 6117866 2024-02-29 19:30:12.032 2024-02-29 19:30:12.032 1000 FEE 444114 20479 6117867 2024-02-29 19:30:12.032 2024-02-29 19:30:12.032 9000 TIP 444114 20495 6117908 2024-02-29 19:32:01.602 2024-02-29 19:32:01.602 1000 FEE 444114 11220 6117909 2024-02-29 19:32:01.602 2024-02-29 19:32:01.602 9000 TIP 444114 16353 6117932 2024-02-29 19:33:13.405 2024-02-29 19:33:13.405 1000 FEE 444129 5829 6117955 2024-02-29 19:34:28.468 2024-02-29 19:34:28.468 1000 FEE 444130 21269 6117969 2024-02-29 19:38:10.586 2024-02-29 19:38:10.586 1000 FEE 444132 8459 6117970 2024-02-29 19:38:26.284 2024-02-29 19:38:26.284 5700 FEE 444114 20087 6117971 2024-02-29 19:38:26.284 2024-02-29 19:38:26.284 51300 TIP 444114 19309 6117972 2024-02-29 19:38:39.044 2024-02-29 19:38:39.044 1000 FEE 444133 2961 6118014 2024-02-29 19:39:14.304 2024-02-29 19:39:14.304 1000 FEE 444051 19030 6118015 2024-02-29 19:39:14.304 2024-02-29 19:39:14.304 9000 TIP 444051 622 6118017 2024-02-29 19:39:14.342 2024-02-29 19:39:14.342 1000 FEE 444102 19660 6118018 2024-02-29 19:39:14.342 2024-02-29 19:39:14.342 9000 TIP 444102 20470 6118022 2024-02-29 19:39:36.514 2024-02-29 19:39:36.514 1000 FEE 444137 5112 6118024 2024-02-29 19:39:41.359 2024-02-29 19:39:41.359 500 FEE 444060 20555 6118025 2024-02-29 19:39:41.359 2024-02-29 19:39:41.359 4500 TIP 444060 19126 6118031 2024-02-29 19:40:17.64 2024-02-29 19:40:17.64 2100 FEE 442699 1801 6118032 2024-02-29 19:40:17.64 2024-02-29 19:40:17.64 18900 TIP 442699 16348 6118103 2024-02-29 19:50:42.932 2024-02-29 19:50:42.932 10000 FEE 444152 12779 6118105 2024-02-29 19:51:01.367 2024-02-29 19:51:01.367 1000 FEE 444154 21469 6118141 2024-02-29 19:55:00.549 2024-02-29 19:55:00.549 2100 FEE 444115 5779 6118142 2024-02-29 19:55:00.549 2024-02-29 19:55:00.549 18900 TIP 444115 19759 6118150 2024-02-29 19:55:18.884 2024-02-29 19:55:18.884 1000 FEE 444161 5597 6118159 2024-02-29 19:56:22.558 2024-02-29 19:56:22.558 1600 FEE 444118 16532 6118160 2024-02-29 19:56:22.558 2024-02-29 19:56:22.558 14400 TIP 444118 20502 6118161 2024-02-29 19:56:35.127 2024-02-29 19:56:35.127 1000 FEE 444162 5746 6118162 2024-02-29 19:56:35.127 2024-02-29 19:56:35.127 9000 TIP 444162 6136 6118172 2024-02-29 19:58:25.742 2024-02-29 19:58:25.742 2100 FEE 444139 9349 6118173 2024-02-29 19:58:25.742 2024-02-29 19:58:25.742 18900 TIP 444139 18873 6118177 2024-02-29 19:58:42.47 2024-02-29 19:58:42.47 1000 FEE 444162 21539 6118178 2024-02-29 19:58:42.47 2024-02-29 19:58:42.47 9000 TIP 444162 14818 6118179 2024-02-29 19:58:43.688 2024-02-29 19:58:43.688 9000 FEE 444162 8385 6118180 2024-02-29 19:58:43.688 2024-02-29 19:58:43.688 81000 TIP 444162 21060 6118186 2024-02-29 19:59:07.911 2024-02-29 19:59:07.911 100 FEE 444081 21061 6118187 2024-02-29 19:59:07.911 2024-02-29 19:59:07.911 900 TIP 444081 11938 6118198 2024-02-29 19:59:32.821 2024-02-29 19:59:32.821 900 FEE 444078 17707 6118199 2024-02-29 19:59:32.821 2024-02-29 19:59:32.821 8100 TIP 444078 17639 6118234 2024-02-29 20:01:09.874 2024-02-29 20:01:09.874 1700 FEE 444168 2724 6118235 2024-02-29 20:01:09.874 2024-02-29 20:01:09.874 15300 TIP 444168 17541 6118244 2024-02-29 20:01:11.326 2024-02-29 20:01:11.326 1700 FEE 444168 17106 6118245 2024-02-29 20:01:11.326 2024-02-29 20:01:11.326 15300 TIP 444168 11417 6118246 2024-02-29 20:01:11.388 2024-02-29 20:01:11.388 1700 FEE 444168 20970 6118247 2024-02-29 20:01:11.388 2024-02-29 20:01:11.388 15300 TIP 444168 17817 6118268 2024-02-29 20:01:35.177 2024-02-29 20:01:35.177 100000 FEE 444168 20613 6118269 2024-02-29 20:01:35.177 2024-02-29 20:01:35.177 900000 TIP 444168 21391 6118293 2024-02-29 20:06:03.783 2024-02-29 20:06:03.783 100 FEE 444129 17218 6118294 2024-02-29 20:06:03.783 2024-02-29 20:06:03.783 900 TIP 444129 21453 6118312 2024-02-29 20:10:52.841 2024-02-29 20:10:52.841 1600 FEE 443616 14650 6118313 2024-02-29 20:10:52.841 2024-02-29 20:10:52.841 14400 TIP 443616 989 6118338 2024-02-29 20:13:18.491 2024-02-29 20:13:18.491 1000 FEE 444181 19664 6118341 2024-02-29 20:13:51.911 2024-02-29 20:13:51.911 0 FEE 444179 8074 6118361 2024-02-29 20:15:58.414 2024-02-29 20:15:58.414 7700 FEE 444187 18629 6118362 2024-02-29 20:15:58.414 2024-02-29 20:15:58.414 69300 TIP 444187 5377 6118371 2024-02-29 20:16:01.092 2024-02-29 20:16:01.092 1000 FEE 443655 9334 6118372 2024-02-29 20:16:01.092 2024-02-29 20:16:01.092 9000 TIP 443655 4378 6118375 2024-02-29 20:16:01.532 2024-02-29 20:16:01.532 1000 FEE 443655 20225 6118376 2024-02-29 20:16:01.532 2024-02-29 20:16:01.532 9000 TIP 443655 19961 6118425 2024-02-29 20:17:32.16 2024-02-29 20:17:32.16 3300 FEE 444148 629 6118426 2024-02-29 20:17:32.16 2024-02-29 20:17:32.16 29700 TIP 444148 18690 6118447 2024-02-29 20:19:35.887 2024-02-29 20:19:35.887 700 FEE 443803 16858 6118448 2024-02-29 20:19:35.887 2024-02-29 20:19:35.887 6300 TIP 443803 695 6118460 2024-02-29 20:20:04.438 2024-02-29 20:20:04.438 1000 FEE 73097 4043 6118461 2024-02-29 20:20:04.438 2024-02-29 20:20:04.438 9000 TIP 73097 20481 6118481 2024-02-29 20:20:17.303 2024-02-29 20:20:17.303 1000 FEE 444168 13527 6118482 2024-02-29 20:20:17.303 2024-02-29 20:20:17.303 9000 TIP 444168 12049 6118499 2024-02-29 20:20:24.533 2024-02-29 20:20:24.533 10000 FEE 444168 19469 6118500 2024-02-29 20:20:24.533 2024-02-29 20:20:24.533 90000 TIP 444168 721 6118560 2024-02-29 20:22:00.513 2024-02-29 20:22:00.513 1000 FEE 444203 9992 6118580 2024-02-29 20:24:35.553 2024-02-29 20:24:35.553 1000 FEE 444168 12738 6118581 2024-02-29 20:24:35.553 2024-02-29 20:24:35.553 9000 TIP 444168 15510 6118582 2024-02-29 20:24:54.819 2024-02-29 20:24:54.819 1000 FEE 444209 19034 6118593 2024-02-29 20:26:02.546 2024-02-29 20:26:02.546 2100 FEE 444191 21061 6118594 2024-02-29 20:26:02.546 2024-02-29 20:26:02.546 18900 TIP 444191 19987 6118607 2024-02-29 20:26:28.123 2024-02-29 20:26:28.123 5700 FEE 444173 16842 6118608 2024-02-29 20:26:28.123 2024-02-29 20:26:28.123 51300 TIP 444173 19469 6118633 2024-02-29 20:28:10.726 2024-02-29 20:28:10.726 1000 FEE 444217 19320 6118641 2024-02-29 20:28:48.621 2024-02-29 20:28:48.621 1000 FEE 444219 11829 6118648 2024-02-29 20:29:15.004 2024-02-29 20:29:15.004 0 FEE 444206 657 6118652 2024-02-29 20:30:20.684 2024-02-29 20:30:20.684 1000 FEE 444220 21609 6118681 2024-02-29 20:31:50.018 2024-02-29 20:31:50.018 1600 FEE 444176 21012 6118682 2024-02-29 20:31:50.018 2024-02-29 20:31:50.018 14400 TIP 444176 14651 6118683 2024-02-29 20:31:51.724 2024-02-29 20:31:51.724 2300 FEE 444220 19661 6118684 2024-02-29 20:31:51.724 2024-02-29 20:31:51.724 20700 TIP 444220 9982 6118698 2024-02-29 20:32:50.84 2024-02-29 20:32:50.84 7700 FEE 444226 20163 6052736 2024-02-24 11:54:03.683 2024-02-24 11:54:03.683 1000 STREAM 141924 1286 6052748 2024-02-24 12:00:03.753 2024-02-24 12:00:03.753 1000 STREAM 141924 1552 6052750 2024-02-24 12:01:03.733 2024-02-24 12:01:03.733 1000 STREAM 141924 19036 6052760 2024-02-24 12:03:03.738 2024-02-24 12:03:03.738 1000 STREAM 141924 10638 6052764 2024-02-24 12:04:03.787 2024-02-24 12:04:03.787 1000 STREAM 141924 20562 6052769 2024-02-24 12:05:03.793 2024-02-24 12:05:03.793 1000 STREAM 141924 20781 6052784 2024-02-24 12:08:03.815 2024-02-24 12:08:03.815 1000 STREAM 141924 17891 6052788 2024-02-24 12:09:03.824 2024-02-24 12:09:03.824 1000 STREAM 141924 20157 6052789 2024-02-24 12:10:03.867 2024-02-24 12:10:03.867 1000 STREAM 141924 986 6052791 2024-02-24 12:11:03.864 2024-02-24 12:11:03.864 1000 STREAM 141924 19576 6052804 2024-02-24 12:18:03.905 2024-02-24 12:18:03.905 1000 STREAM 141924 21239 6052809 2024-02-24 12:19:03.891 2024-02-24 12:19:03.891 1000 STREAM 141924 20162 6052888 2024-02-24 12:35:04.616 2024-02-24 12:35:04.616 1000 STREAM 141924 1195 6117835 2024-02-29 19:28:48.069 2024-02-29 19:28:48.069 6900 FEE 444061 2046 6117836 2024-02-29 19:28:48.069 2024-02-29 19:28:48.069 62100 TIP 444061 8569 6117840 2024-02-29 19:29:06.866 2024-02-29 19:29:06.866 0 FEE 444109 5978 6117842 2024-02-29 19:29:38.776 2024-02-29 19:29:38.776 1000 FEE 444121 21320 6117852 2024-02-29 19:30:08.71 2024-02-29 19:30:08.71 1000 FEE 444114 19581 6117853 2024-02-29 19:30:08.71 2024-02-29 19:30:08.71 9000 TIP 444114 16532 6117872 2024-02-29 19:30:30.739 2024-02-29 19:30:30.739 1000 FEE 444122 21591 6117875 2024-02-29 19:30:39 2024-02-29 19:30:39 1600 FEE 444013 9426 6117876 2024-02-29 19:30:39 2024-02-29 19:30:39 14400 TIP 444013 4304 6117881 2024-02-29 19:30:41.275 2024-02-29 19:30:41.275 1000 FEE 444114 18392 6117882 2024-02-29 19:30:41.275 2024-02-29 19:30:41.275 9000 TIP 444114 18518 6117904 2024-02-29 19:32:00.176 2024-02-29 19:32:00.176 9000 FEE 444102 5942 6117905 2024-02-29 19:32:00.176 2024-02-29 19:32:00.176 81000 TIP 444102 17798 6117906 2024-02-29 19:32:00.809 2024-02-29 19:32:00.809 1000 FEE 444114 19980 6117907 2024-02-29 19:32:00.809 2024-02-29 19:32:00.809 9000 TIP 444114 19815 6117912 2024-02-29 19:32:03.14 2024-02-29 19:32:03.14 1000 FEE 444114 21042 6117913 2024-02-29 19:32:03.14 2024-02-29 19:32:03.14 9000 TIP 444114 1291 6117941 2024-02-29 19:34:03.848 2024-02-29 19:34:03.848 1000 FEE 443712 718 6117942 2024-02-29 19:34:03.848 2024-02-29 19:34:03.848 9000 TIP 443712 9351 6117948 2024-02-29 19:34:05.592 2024-02-29 19:34:05.592 2000 FEE 443712 7674 6117949 2024-02-29 19:34:05.592 2024-02-29 19:34:05.592 18000 TIP 443712 10056 6117964 2024-02-29 19:36:15.501 2024-02-29 19:36:15.501 1000 FEE 444131 11523 6117977 2024-02-29 19:38:57.194 2024-02-29 19:38:57.194 1000 FEE 444134 20781 6117993 2024-02-29 19:39:06.77 2024-02-29 19:39:06.77 1000 FEE 444095 20220 6117994 2024-02-29 19:39:06.77 2024-02-29 19:39:06.77 9000 TIP 444095 19852 6117997 2024-02-29 19:39:07.591 2024-02-29 19:39:07.591 1000 FEE 444081 5758 6117998 2024-02-29 19:39:07.591 2024-02-29 19:39:07.591 9000 TIP 444081 18230 6117999 2024-02-29 19:39:08.596 2024-02-29 19:39:08.596 1000 FEE 444068 633 6118000 2024-02-29 19:39:08.596 2024-02-29 19:39:08.596 9000 TIP 444068 3709 6118033 2024-02-29 19:40:37.008 2024-02-29 19:40:37.008 3100 FEE 444100 9496 6118034 2024-02-29 19:40:37.008 2024-02-29 19:40:37.008 27900 TIP 444100 20243 6118045 2024-02-29 19:42:04.326 2024-02-29 19:42:04.326 1000 FEE 444132 8376 6118046 2024-02-29 19:42:04.326 2024-02-29 19:42:04.326 9000 TIP 444132 8400 6118051 2024-02-29 19:42:05.38 2024-02-29 19:42:05.38 1000 FEE 444132 9655 6118052 2024-02-29 19:42:05.38 2024-02-29 19:42:05.38 9000 TIP 444132 2196 6118091 2024-02-29 19:47:29.465 2024-02-29 19:47:29.465 0 FEE 444148 1122 6118095 2024-02-29 19:49:18.069 2024-02-29 19:49:18.069 100 FEE 444127 2537 6118096 2024-02-29 19:49:18.069 2024-02-29 19:49:18.069 900 TIP 444127 19016 6118107 2024-02-29 19:51:27.087 2024-02-29 19:51:27.087 1000 FEE 444155 17708 6118110 2024-02-29 19:52:14.906 2024-02-29 19:52:14.906 1000 FEE 444157 976 6118146 2024-02-29 19:55:14.225 2024-02-29 19:55:14.225 2100 FEE 444096 1549 6118147 2024-02-29 19:55:14.225 2024-02-29 19:55:14.225 18900 TIP 444096 21212 6118155 2024-02-29 19:55:51.434 2024-02-29 19:55:51.434 100000 FEE 444162 2338 6118158 2024-02-29 19:56:13.318 2024-02-29 19:56:13.318 1000 FEE 444164 11164 6118166 2024-02-29 19:57:07.237 2024-02-29 19:57:07.237 2100 FEE 430490 1493 6118167 2024-02-29 19:57:07.237 2024-02-29 19:57:07.237 18900 TIP 430490 20272 6118174 2024-02-29 19:58:38.376 2024-02-29 19:58:38.376 1000 FEE 444166 2596 6118183 2024-02-29 19:58:50.59 2024-02-29 19:58:50.59 500 FEE 443799 19572 6118184 2024-02-29 19:58:50.59 2024-02-29 19:58:50.59 4500 TIP 443799 18543 6118211 2024-02-29 20:00:32.791 2024-02-29 20:00:32.791 10000 FEE 443799 711 6118212 2024-02-29 20:00:32.791 2024-02-29 20:00:32.791 90000 TIP 443799 9843 6118224 2024-02-29 20:01:09.016 2024-02-29 20:01:09.016 1700 FEE 444168 20272 6118225 2024-02-29 20:01:09.016 2024-02-29 20:01:09.016 15300 TIP 444168 19581 6118230 2024-02-29 20:01:09.531 2024-02-29 20:01:09.531 1700 FEE 444168 18241 6118231 2024-02-29 20:01:09.531 2024-02-29 20:01:09.531 15300 TIP 444168 19527 6118236 2024-02-29 20:01:10.068 2024-02-29 20:01:10.068 1700 FEE 444168 5779 6118237 2024-02-29 20:01:10.068 2024-02-29 20:01:10.068 15300 TIP 444168 1472 6118248 2024-02-29 20:01:11.567 2024-02-29 20:01:11.567 1700 FEE 444168 19378 6118249 2024-02-29 20:01:11.567 2024-02-29 20:01:11.567 15300 TIP 444168 20310 6118250 2024-02-29 20:01:11.694 2024-02-29 20:01:11.694 1700 FEE 444168 18174 6118251 2024-02-29 20:01:11.694 2024-02-29 20:01:11.694 15300 TIP 444168 9365 6118266 2024-02-29 20:01:27.841 2024-02-29 20:01:27.841 1000 FEE 444171 20272 6118300 2024-02-29 20:06:08.676 2024-02-29 20:06:08.676 3300 FEE 443929 20381 6118301 2024-02-29 20:06:08.676 2024-02-29 20:06:08.676 29700 TIP 443929 16177 6118320 2024-02-29 20:11:12.226 2024-02-29 20:11:12.226 2100 FEE 444078 650 6118321 2024-02-29 20:11:12.226 2024-02-29 20:11:12.226 18900 TIP 444078 21036 6118324 2024-02-29 20:11:18.205 2024-02-29 20:11:18.205 2100 FEE 444168 1478 6118325 2024-02-29 20:11:18.205 2024-02-29 20:11:18.205 18900 TIP 444168 18387 6118353 2024-02-29 20:15:19.863 2024-02-29 20:15:19.863 100 FEE 444165 4538 6118354 2024-02-29 20:15:19.863 2024-02-29 20:15:19.863 900 TIP 444165 4118 6118356 2024-02-29 20:15:33.801 2024-02-29 20:15:33.801 1000 FEE 444187 1806 6118395 2024-02-29 20:16:03.337 2024-02-29 20:16:03.337 1000 FEE 443655 17411 6118396 2024-02-29 20:16:03.337 2024-02-29 20:16:03.337 9000 TIP 443655 8541 6118408 2024-02-29 20:17:12.849 2024-02-29 20:17:12.849 20000 FEE 444191 17172 6118413 2024-02-29 20:17:19.063 2024-02-29 20:17:19.063 1700 FEE 444191 889 6118414 2024-02-29 20:17:19.063 2024-02-29 20:17:19.063 15300 TIP 444191 18119 6118428 2024-02-29 20:17:36.451 2024-02-29 20:17:36.451 2200 FEE 444148 1717 6118429 2024-02-29 20:17:36.451 2024-02-29 20:17:36.451 19800 TIP 444148 16660 6118451 2024-02-29 20:19:47.836 2024-02-29 20:19:47.836 1000 FEE 444195 13406 6118453 2024-02-29 20:20:03.805 2024-02-29 20:20:03.805 1000 FEE 73097 2519 6118454 2024-02-29 20:20:03.805 2024-02-29 20:20:03.805 9000 TIP 73097 15662 6118458 2024-02-29 20:20:04.242 2024-02-29 20:20:04.242 1000 FEE 73097 19471 6118459 2024-02-29 20:20:04.242 2024-02-29 20:20:04.242 9000 TIP 73097 20109 6118477 2024-02-29 20:20:16.582 2024-02-29 20:20:16.582 1000 FEE 444168 1454 6118478 2024-02-29 20:20:16.582 2024-02-29 20:20:16.582 9000 TIP 444168 6419 6118489 2024-02-29 20:20:22.528 2024-02-29 20:20:22.528 1000 FEE 444156 20912 6118490 2024-02-29 20:20:22.528 2024-02-29 20:20:22.528 9000 TIP 444156 712 6118493 2024-02-29 20:20:23.265 2024-02-29 20:20:23.265 1000 FEE 444156 19773 6118494 2024-02-29 20:20:23.265 2024-02-29 20:20:23.265 9000 TIP 444156 16954 6118511 2024-02-29 20:20:35.45 2024-02-29 20:20:35.45 3300 FEE 443794 18409 6052812 2024-02-24 12:20:03.107 2024-02-24 12:20:03.107 1000 STREAM 141924 9833 6052815 2024-02-24 12:21:03.062 2024-02-24 12:21:03.062 1000 STREAM 141924 5775 6052819 2024-02-24 12:22:03.071 2024-02-24 12:22:03.071 1000 STREAM 141924 19500 6052828 2024-02-24 12:23:03.07 2024-02-24 12:23:03.07 1000 STREAM 141924 2639 6052840 2024-02-24 12:24:03.079 2024-02-24 12:24:03.079 1000 STREAM 141924 2775 6052842 2024-02-24 12:25:03.109 2024-02-24 12:25:03.109 1000 STREAM 141924 4459 6052878 2024-02-24 12:32:03.236 2024-02-24 12:32:03.236 1000 STREAM 141924 20205 6052886 2024-02-24 12:34:03.241 2024-02-24 12:34:03.241 1000 STREAM 141924 6030 6052900 2024-02-24 12:38:03.447 2024-02-24 12:38:03.447 1000 STREAM 141924 16059 6052905 2024-02-24 12:39:03.459 2024-02-24 12:39:03.459 1000 STREAM 141924 999 6052908 2024-02-24 12:40:03.508 2024-02-24 12:40:03.508 1000 STREAM 141924 2961 6052972 2024-02-24 12:43:03.497 2024-02-24 12:43:03.497 1000 STREAM 141924 4225 6052985 2024-02-24 12:45:03.513 2024-02-24 12:45:03.513 1000 STREAM 141924 998 6052993 2024-02-24 12:46:03.516 2024-02-24 12:46:03.516 1000 STREAM 141924 11862 6053011 2024-02-24 12:48:03.531 2024-02-24 12:48:03.531 1000 STREAM 141924 2367 6053018 2024-02-24 12:49:03.554 2024-02-24 12:49:03.554 1000 STREAM 141924 21275 6053032 2024-02-24 12:52:03.577 2024-02-24 12:52:03.577 1000 STREAM 141924 9438 6053041 2024-02-24 12:53:03.582 2024-02-24 12:53:03.582 1000 STREAM 141924 2000 6053071 2024-02-24 12:55:03.611 2024-02-24 12:55:03.611 1000 STREAM 141924 4043 6053089 2024-02-24 12:57:03.625 2024-02-24 12:57:03.625 1000 STREAM 141924 14271 6053092 2024-02-24 12:58:03.64 2024-02-24 12:58:03.64 1000 STREAM 141924 1737 6053099 2024-02-24 12:59:03.642 2024-02-24 12:59:03.642 1000 STREAM 141924 16513 6053104 2024-02-24 13:00:03.765 2024-02-24 13:00:03.765 1000 STREAM 141924 17275 6053114 2024-02-24 13:02:03.684 2024-02-24 13:02:03.684 1000 STREAM 141924 20180 6053122 2024-02-24 13:03:03.698 2024-02-24 13:03:03.698 1000 STREAM 141924 17014 6053139 2024-02-24 13:04:03.689 2024-02-24 13:04:03.689 1000 STREAM 141924 19639 6053144 2024-02-24 13:05:03.692 2024-02-24 13:05:03.692 1000 STREAM 141924 986 6053150 2024-02-24 13:06:03.702 2024-02-24 13:06:03.702 1000 STREAM 141924 17513 6053164 2024-02-24 13:08:03.717 2024-02-24 13:08:03.717 1000 STREAM 141924 20306 6053170 2024-02-24 13:10:03.728 2024-02-24 13:10:03.728 1000 STREAM 141924 18583 6053174 2024-02-24 13:11:03.727 2024-02-24 13:11:03.727 1000 STREAM 141924 1800 6053188 2024-02-24 13:16:03.788 2024-02-24 13:16:03.788 1000 STREAM 141924 20889 6053193 2024-02-24 13:18:03.97 2024-02-24 13:18:03.97 1000 STREAM 141924 18119 6053199 2024-02-24 13:19:03.98 2024-02-24 13:19:03.98 1000 STREAM 141924 21609 6053264 2024-02-24 13:23:04.014 2024-02-24 13:23:04.014 1000 STREAM 141924 4391 6117851 2024-02-29 19:30:04.222 2024-02-29 19:30:04.222 1000 STREAM 141924 2609 6117890 2024-02-29 19:31:04.217 2024-02-29 19:31:04.217 1000 STREAM 141924 1030 6117928 2024-02-29 19:33:04.223 2024-02-29 19:33:04.223 1000 STREAM 141924 11018 6117967 2024-02-29 19:37:04.281 2024-02-29 19:37:04.281 1000 STREAM 141924 9705 6118030 2024-02-29 19:40:04.368 2024-02-29 19:40:04.368 1000 STREAM 141924 20619 6118038 2024-02-29 19:41:04.32 2024-02-29 19:41:04.32 1000 STREAM 141924 27 6118044 2024-02-29 19:42:04.32 2024-02-29 19:42:04.32 1000 STREAM 141924 1465 6118068 2024-02-29 19:43:04.33 2024-02-29 19:43:04.33 1000 STREAM 141924 16212 6118077 2024-02-29 19:45:04.33 2024-02-29 19:45:04.33 1000 STREAM 141924 7966 6052847 2024-02-24 12:26:03.118 2024-02-24 12:26:03.118 1000 STREAM 141924 14370 6052852 2024-02-24 12:27:03.106 2024-02-24 12:27:03.106 1000 STREAM 141924 1474 6052853 2024-02-24 12:28:03.109 2024-02-24 12:28:03.109 1000 STREAM 141924 19572 6052864 2024-02-24 12:29:03.118 2024-02-24 12:29:03.118 1000 STREAM 141924 16230 6052867 2024-02-24 12:30:03.137 2024-02-24 12:30:03.137 1000 STREAM 141924 6765 6052881 2024-02-24 12:33:03.231 2024-02-24 12:33:03.231 1000 STREAM 141924 1836 6052892 2024-02-24 12:36:03.417 2024-02-24 12:36:03.417 1000 STREAM 141924 20586 6052896 2024-02-24 12:37:03.424 2024-02-24 12:37:03.424 1000 STREAM 141924 18280 6052951 2024-02-24 12:41:03.49 2024-02-24 12:41:03.49 1000 STREAM 141924 8841 6052954 2024-02-24 12:42:03.49 2024-02-24 12:42:03.49 1000 STREAM 141924 6202 6052983 2024-02-24 12:44:03.496 2024-02-24 12:44:03.496 1000 STREAM 141924 14404 6053002 2024-02-24 12:47:03.54 2024-02-24 12:47:03.54 1000 STREAM 141924 13931 6053024 2024-02-24 12:50:03.561 2024-02-24 12:50:03.561 1000 STREAM 141924 16598 6053029 2024-02-24 12:51:03.575 2024-02-24 12:51:03.575 1000 STREAM 141924 19796 6053050 2024-02-24 12:54:03.603 2024-02-24 12:54:03.603 1000 STREAM 141924 2703 6053078 2024-02-24 12:56:03.628 2024-02-24 12:56:03.628 1000 STREAM 141924 2774 6053113 2024-02-24 13:01:03.67 2024-02-24 13:01:03.67 1000 STREAM 141924 20911 6053153 2024-02-24 13:07:03.705 2024-02-24 13:07:03.705 1000 STREAM 141924 15271 6053168 2024-02-24 13:09:03.72 2024-02-24 13:09:03.72 1000 STREAM 141924 20546 6053176 2024-02-24 13:12:03.741 2024-02-24 13:12:03.741 1000 STREAM 141924 12072 6053179 2024-02-24 13:13:03.737 2024-02-24 13:13:03.737 1000 STREAM 141924 20889 6053182 2024-02-24 13:14:03.744 2024-02-24 13:14:03.744 1000 STREAM 141924 20291 6053185 2024-02-24 13:15:03.758 2024-02-24 13:15:03.758 1000 STREAM 141924 4989 6053189 2024-02-24 13:17:03.958 2024-02-24 13:17:03.958 1000 STREAM 141924 6058 6053213 2024-02-24 13:20:03.992 2024-02-24 13:20:03.992 1000 STREAM 141924 18557 6053230 2024-02-24 13:21:03.993 2024-02-24 13:21:03.993 1000 STREAM 141924 8045 6053241 2024-02-24 13:22:04.004 2024-02-24 13:22:04.004 1000 STREAM 141924 1803 6053267 2024-02-24 13:24:04.026 2024-02-24 13:24:04.026 1000 STREAM 141924 19033 6053269 2024-02-24 13:25:04.032 2024-02-24 13:25:04.032 1000 STREAM 141924 19174 6053271 2024-02-24 13:26:04.035 2024-02-24 13:26:04.035 1000 STREAM 141924 11515 6053275 2024-02-24 13:27:04.037 2024-02-24 13:27:04.037 1000 STREAM 141924 20084 6053300 2024-02-24 13:29:02.631 2024-02-24 13:29:02.631 1000 STREAM 141924 21577 6117889 2024-02-29 19:30:55.341 2024-02-29 19:30:55.341 1000 FEE 444123 889 6117925 2024-02-29 19:32:24.941 2024-02-29 19:32:24.941 50000 FEE 437727 985 6117926 2024-02-29 19:32:24.941 2024-02-29 19:32:24.941 450000 TIP 437727 10530 6118010 2024-02-29 19:39:13.153 2024-02-29 19:39:13.153 1000 FEE 444062 2543 6118011 2024-02-29 19:39:13.153 2024-02-29 19:39:13.153 9000 TIP 444062 20208 6118055 2024-02-29 19:42:44.328 2024-02-29 19:42:44.328 1000 FEE 444143 6573 6118060 2024-02-29 19:43:02.531 2024-02-29 19:43:02.531 1000 FEE 444102 18402 6118061 2024-02-29 19:43:02.531 2024-02-29 19:43:02.531 9000 TIP 444102 19652 6118070 2024-02-29 19:43:43.252 2024-02-29 19:43:43.252 1000 FEE 444145 2832 6118076 2024-02-29 19:44:59.912 2024-02-29 19:44:59.912 1000 FEE 444146 2338 6118079 2024-02-29 19:45:24.246 2024-02-29 19:45:24.246 1000 FEE 444148 9476 6118082 2024-02-29 19:45:36.762 2024-02-29 19:45:36.762 10000 FEE 444149 16230 6118083 2024-02-29 19:45:49.144 2024-02-29 19:45:49.144 1000 FEE 444150 18865 6118113 2024-02-29 19:52:28.524 2024-02-29 19:52:28.524 1000 FEE 444158 4059 6118114 2024-02-29 19:52:30.843 2024-02-29 19:52:30.843 100 FEE 444108 21532 6118115 2024-02-29 19:52:30.843 2024-02-29 19:52:30.843 900 TIP 444108 1008 6118116 2024-02-29 19:52:34.894 2024-02-29 19:52:34.894 100 FEE 444078 20257 6118117 2024-02-29 19:52:34.894 2024-02-29 19:52:34.894 900 TIP 444078 21057 6118122 2024-02-29 19:52:49.193 2024-02-29 19:52:49.193 21000 FEE 444129 2065 6118123 2024-02-29 19:52:49.193 2024-02-29 19:52:49.193 189000 TIP 444129 21334 6118129 2024-02-29 19:53:11.921 2024-02-29 19:53:11.921 1000 FEE 444159 18178 6118131 2024-02-29 19:54:11.282 2024-02-29 19:54:11.282 2100 FEE 443799 16842 6118132 2024-02-29 19:54:11.282 2024-02-29 19:54:11.282 18900 TIP 443799 12175 6118138 2024-02-29 19:54:53.341 2024-02-29 19:54:53.341 3200 FEE 444137 21233 6118139 2024-02-29 19:54:53.341 2024-02-29 19:54:53.341 28800 TIP 444137 822 6118168 2024-02-29 19:57:16.493 2024-02-29 19:57:16.493 2100 FEE 444147 9347 6118169 2024-02-29 19:57:16.493 2024-02-29 19:57:16.493 18900 TIP 444147 876 6118175 2024-02-29 19:58:41.548 2024-02-29 19:58:41.548 1000 FEE 444167 19689 6118192 2024-02-29 19:59:17.836 2024-02-29 19:59:17.836 1000 FEE 444165 5522 6118193 2024-02-29 19:59:17.836 2024-02-29 19:59:17.836 9000 TIP 444165 21249 6118203 2024-02-29 19:59:41.904 2024-02-29 19:59:41.904 1000 POLL 444078 866 6118216 2024-02-29 20:01:08.353 2024-02-29 20:01:08.353 1700 FEE 444168 20045 6118217 2024-02-29 20:01:08.353 2024-02-29 20:01:08.353 15300 TIP 444168 9184 6118271 2024-02-29 20:01:51.402 2024-02-29 20:01:51.402 1000 FEE 434723 19660 6118272 2024-02-29 20:01:51.402 2024-02-29 20:01:51.402 9000 TIP 434723 20525 6118277 2024-02-29 20:02:52.033 2024-02-29 20:02:52.033 1000 FEE 444168 20597 6118278 2024-02-29 20:02:52.033 2024-02-29 20:02:52.033 9000 TIP 444168 17148 6118296 2024-02-29 20:06:05.392 2024-02-29 20:06:05.392 100 FEE 444148 2338 6118297 2024-02-29 20:06:05.392 2024-02-29 20:06:05.392 900 TIP 444148 21249 6118331 2024-02-29 20:12:10.686 2024-02-29 20:12:10.686 0 FEE 444176 21520 6118332 2024-02-29 20:12:36.151 2024-02-29 20:12:36.151 10000 FEE 444173 20680 6118333 2024-02-29 20:12:36.151 2024-02-29 20:12:36.151 90000 TIP 444173 2065 6118334 2024-02-29 20:12:43.159 2024-02-29 20:12:43.159 0 FEE 444179 18615 6118335 2024-02-29 20:12:58.957 2024-02-29 20:12:58.957 2100 FEE 444176 1261 6118336 2024-02-29 20:12:58.957 2024-02-29 20:12:58.957 18900 TIP 444176 1605 6118349 2024-02-29 20:15:03.484 2024-02-29 20:15:03.484 1000 FEE 444185 11288 6118351 2024-02-29 20:15:17.725 2024-02-29 20:15:17.725 5700 FEE 444168 15577 6118352 2024-02-29 20:15:17.725 2024-02-29 20:15:17.725 51300 TIP 444168 1585 6118355 2024-02-29 20:15:30.342 2024-02-29 20:15:30.342 1000 FEE 444186 6260 6118365 2024-02-29 20:15:59.904 2024-02-29 20:15:59.904 1000 FEE 443655 3706 6118366 2024-02-29 20:15:59.904 2024-02-29 20:15:59.904 9000 TIP 443655 1845 6118377 2024-02-29 20:16:01.677 2024-02-29 20:16:01.677 1000 FEE 443655 632 6118378 2024-02-29 20:16:01.677 2024-02-29 20:16:01.677 9000 TIP 443655 17827 6118379 2024-02-29 20:16:01.871 2024-02-29 20:16:01.871 1000 FEE 443655 902 6118380 2024-02-29 20:16:01.871 2024-02-29 20:16:01.871 9000 TIP 443655 21058 6118391 2024-02-29 20:16:02.979 2024-02-29 20:16:02.979 1000 FEE 443655 787 6118392 2024-02-29 20:16:02.979 2024-02-29 20:16:02.979 9000 TIP 443655 1208 6118404 2024-02-29 20:16:29.716 2024-02-29 20:16:29.716 1000 FEE 444190 1354 6118417 2024-02-29 20:17:26.121 2024-02-29 20:17:26.121 3300 FEE 444153 701 6118418 2024-02-29 20:17:26.121 2024-02-29 20:17:26.121 29700 TIP 444153 2620 6118433 2024-02-29 20:18:04.997 2024-02-29 20:18:04.997 100 FEE 444168 13547 6118434 2024-02-29 20:18:04.997 2024-02-29 20:18:04.997 900 TIP 444168 19581 6118435 2024-02-29 20:18:34.826 2024-02-29 20:18:34.826 0 FEE 444188 21062 6118462 2024-02-29 20:20:13.138 2024-02-29 20:20:13.138 1000 FEE 444168 20554 6118463 2024-02-29 20:20:13.138 2024-02-29 20:20:13.138 9000 TIP 444168 6148 6118497 2024-02-29 20:20:24.407 2024-02-29 20:20:24.407 1000 FEE 444156 732 6118498 2024-02-29 20:20:24.407 2024-02-29 20:20:24.407 9000 TIP 444156 15536 6118501 2024-02-29 20:20:24.631 2024-02-29 20:20:24.631 1000 FEE 444156 18170 6118502 2024-02-29 20:20:24.631 2024-02-29 20:20:24.631 9000 TIP 444156 12291 6118522 2024-02-29 20:20:59.931 2024-02-29 20:20:59.931 1000 FEE 444161 12959 6118523 2024-02-29 20:20:59.931 2024-02-29 20:20:59.931 9000 TIP 444161 1720 6118538 2024-02-29 20:21:03.829 2024-02-29 20:21:03.829 1000 FEE 444161 21395 6118539 2024-02-29 20:21:03.829 2024-02-29 20:21:03.829 9000 TIP 444161 5637 6118555 2024-02-29 20:21:45.447 2024-02-29 20:21:45.447 1000 FEE 444150 20182 6118556 2024-02-29 20:21:45.447 2024-02-29 20:21:45.447 9000 TIP 444150 4345 6118571 2024-02-29 20:23:18.599 2024-02-29 20:23:18.599 7700 FEE 444202 15266 6052865 2024-02-24 12:29:54.376 2024-02-24 12:29:54.376 1000 FEE 436837 9874 6052866 2024-02-24 12:29:54.376 2024-02-24 12:29:54.376 9000 TIP 436837 21136 6052880 2024-02-24 12:32:35.451 2024-02-24 12:32:35.451 1000 FEE 437095 19601 6052883 2024-02-24 12:33:10.729 2024-02-24 12:33:10.729 1000 FEE 437096 2361 6052885 2024-02-24 12:33:43.199 2024-02-24 12:33:43.199 0 FEE 437092 687 6052898 2024-02-24 12:37:44.592 2024-02-24 12:37:44.592 1000 FEE 437103 17415 6052899 2024-02-24 12:37:54.442 2024-02-24 12:37:54.442 1000 FEE 437104 21453 6052917 2024-02-24 12:40:39.993 2024-02-24 12:40:39.993 2100 FEE 435847 1213 6052918 2024-02-24 12:40:39.993 2024-02-24 12:40:39.993 18900 TIP 435847 14785 6052952 2024-02-24 12:41:16.8 2024-02-24 12:41:16.8 2100 FEE 436897 5377 6052953 2024-02-24 12:41:16.8 2024-02-24 12:41:16.8 18900 TIP 436897 16513 6052968 2024-02-24 12:43:00.218 2024-02-24 12:43:00.218 2100 FEE 437050 20973 6052969 2024-02-24 12:43:00.218 2024-02-24 12:43:00.218 18900 TIP 437050 15115 6052970 2024-02-24 12:43:02.538 2024-02-24 12:43:02.538 2100 FEE 437049 19332 6052971 2024-02-24 12:43:02.538 2024-02-24 12:43:02.538 18900 TIP 437049 622 6052977 2024-02-24 12:43:14.755 2024-02-24 12:43:14.755 1100 FEE 436912 7992 6052978 2024-02-24 12:43:14.755 2024-02-24 12:43:14.755 9900 TIP 436912 19403 6052981 2024-02-24 12:43:32.629 2024-02-24 12:43:32.629 2100 FEE 436773 6268 6052982 2024-02-24 12:43:32.629 2024-02-24 12:43:32.629 18900 TIP 436773 8841 6052991 2024-02-24 12:45:37.315 2024-02-24 12:45:37.315 1000 FEE 437115 18995 6053001 2024-02-24 12:46:59.571 2024-02-24 12:46:59.571 1000 FEE 437122 18264 6053007 2024-02-24 12:47:27.924 2024-02-24 12:47:27.924 1000 FEE 437125 20892 6053016 2024-02-24 12:48:45.628 2024-02-24 12:48:45.628 1000 FEE 437133 18139 6053017 2024-02-24 12:48:56.35 2024-02-24 12:48:56.35 1000 FEE 437134 20924 6053021 2024-02-24 12:49:21.133 2024-02-24 12:49:21.133 1000 FEE 437137 647 6053030 2024-02-24 12:51:52.21 2024-02-24 12:51:52.21 1000 FEE 437142 7418 6053033 2024-02-24 12:52:05.5 2024-02-24 12:52:05.5 2100 FEE 437089 21466 6053034 2024-02-24 12:52:05.5 2024-02-24 12:52:05.5 18900 TIP 437089 21139 6053037 2024-02-24 12:52:07.391 2024-02-24 12:52:07.391 2100 FEE 437089 16788 6053038 2024-02-24 12:52:07.391 2024-02-24 12:52:07.391 18900 TIP 437089 20433 6053046 2024-02-24 12:53:40.317 2024-02-24 12:53:40.317 2100 FEE 437072 19661 6053047 2024-02-24 12:53:40.317 2024-02-24 12:53:40.317 18900 TIP 437072 18177 6053053 2024-02-24 12:54:06.805 2024-02-24 12:54:06.805 2100 FEE 437034 18310 6053054 2024-02-24 12:54:06.805 2024-02-24 12:54:06.805 18900 TIP 437034 17741 6053055 2024-02-24 12:54:10.418 2024-02-24 12:54:10.418 100 FEE 435551 12819 6053056 2024-02-24 12:54:10.418 2024-02-24 12:54:10.418 900 TIP 435551 18663 6053067 2024-02-24 12:54:40.436 2024-02-24 12:54:40.436 2100 FEE 437025 19303 6053068 2024-02-24 12:54:40.436 2024-02-24 12:54:40.436 18900 TIP 437025 977 6053073 2024-02-24 12:55:50.54 2024-02-24 12:55:50.54 10000 DONT_LIKE_THIS 437115 13574 6053074 2024-02-24 12:55:55.391 2024-02-24 12:55:55.391 2100 FEE 436977 15147 6053075 2024-02-24 12:55:55.391 2024-02-24 12:55:55.391 18900 TIP 436977 1180 6053085 2024-02-24 12:56:11.087 2024-02-24 12:56:11.087 2100 FEE 436944 650 6053086 2024-02-24 12:56:11.087 2024-02-24 12:56:11.087 18900 TIP 436944 10849 6053087 2024-02-24 12:56:12.718 2024-02-24 12:56:12.718 2100 FEE 436961 5112 6053088 2024-02-24 12:56:12.718 2024-02-24 12:56:12.718 18900 TIP 436961 20514 6053090 2024-02-24 12:57:50.28 2024-02-24 12:57:50.28 10000 FEE 437145 16357 6053100 2024-02-24 12:59:11.397 2024-02-24 12:59:11.397 100 FEE 436669 712 6053101 2024-02-24 12:59:11.397 2024-02-24 12:59:11.397 900 TIP 436669 21014 6053116 2024-02-24 13:02:37.478 2024-02-24 13:02:37.478 11100 FEE 436302 19566 6053117 2024-02-24 13:02:37.478 2024-02-24 13:02:37.478 99900 TIP 436302 16059 6053132 2024-02-24 13:03:21.474 2024-02-24 13:03:21.474 1300 FEE 437050 18454 6053133 2024-02-24 13:03:21.474 2024-02-24 13:03:21.474 11700 TIP 437050 20084 6053157 2024-02-24 13:07:26.238 2024-02-24 13:07:26.238 2100 FEE 437034 19570 6053158 2024-02-24 13:07:26.238 2024-02-24 13:07:26.238 18900 TIP 437034 18525 6053167 2024-02-24 13:08:52.26 2024-02-24 13:08:52.26 1000 FEE 437157 756 6053175 2024-02-24 13:11:21.076 2024-02-24 13:11:21.076 1000 POLL 436759 20606 6053181 2024-02-24 13:13:51.438 2024-02-24 13:13:51.438 0 FEE 437157 1596 6053184 2024-02-24 13:14:34.869 2024-02-24 13:14:34.869 1000 FEE 437164 4083 6053194 2024-02-24 13:18:15.473 2024-02-24 13:18:15.473 10000 FEE 437164 6383 6053195 2024-02-24 13:18:15.473 2024-02-24 13:18:15.473 90000 TIP 437164 20495 6053196 2024-02-24 13:18:17.267 2024-02-24 13:18:17.267 1000 FEE 437167 16351 6053205 2024-02-24 13:19:57.272 2024-02-24 13:19:57.272 2100 FEE 436612 16284 6053206 2024-02-24 13:19:57.272 2024-02-24 13:19:57.272 18900 TIP 436612 3642 6053222 2024-02-24 13:20:46.766 2024-02-24 13:20:46.766 2100 FEE 436499 21563 6053223 2024-02-24 13:20:46.766 2024-02-24 13:20:46.766 18900 TIP 436499 2111 6053238 2024-02-24 13:21:42.811 2024-02-24 13:21:42.811 12800 FEE 436959 20470 6053239 2024-02-24 13:21:42.811 2024-02-24 13:21:42.811 115200 TIP 436959 717 6053244 2024-02-24 13:22:54.047 2024-02-24 13:22:54.047 100 FEE 437166 20251 6053245 2024-02-24 13:22:54.047 2024-02-24 13:22:54.047 900 TIP 437166 21600 6053260 2024-02-24 13:22:57.157 2024-02-24 13:22:57.157 100 FEE 437166 11328 6053261 2024-02-24 13:22:57.157 2024-02-24 13:22:57.157 900 TIP 437166 21103 6053298 2024-02-24 13:28:53.708 2024-02-24 13:28:53.708 5000 FEE 437074 19952 6053299 2024-02-24 13:28:53.708 2024-02-24 13:28:53.708 45000 TIP 437074 14255 6053301 2024-02-24 13:29:03.515 2024-02-24 13:29:03.515 0 FEE 437178 13398 6053315 2024-02-24 13:31:57.111 2024-02-24 13:31:57.111 1000 FEE 437180 19500 6053320 2024-02-24 13:32:52.87 2024-02-24 13:32:52.87 700 FEE 437175 20563 6053321 2024-02-24 13:32:52.87 2024-02-24 13:32:52.87 6300 TIP 437175 4166 6053327 2024-02-24 13:33:19.692 2024-02-24 13:33:19.692 2100 FEE 437050 20106 6053328 2024-02-24 13:33:19.692 2024-02-24 13:33:19.692 18900 TIP 437050 20858 6053356 2024-02-24 13:37:14.808 2024-02-24 13:37:14.808 0 FEE 437184 19296 6052879 2024-02-24 12:32:29.401 2024-02-24 12:32:29.401 1000 FEE 437094 1122 6052915 2024-02-24 12:40:39.546 2024-02-24 12:40:39.546 2100 FEE 435847 629 6052916 2024-02-24 12:40:39.546 2024-02-24 12:40:39.546 18900 TIP 435847 17570 6052933 2024-02-24 12:40:57.898 2024-02-24 12:40:57.898 300 FEE 436720 6300 6052934 2024-02-24 12:40:57.898 2024-02-24 12:40:57.898 2700 TIP 436720 2963 6052949 2024-02-24 12:41:03.05 2024-02-24 12:41:03.05 10000 FEE 436720 16948 6052950 2024-02-24 12:41:03.05 2024-02-24 12:41:03.05 90000 TIP 436720 2583 6052997 2024-02-24 12:46:37.069 2024-02-24 12:46:37.069 25000 FEE 437062 1142 6052998 2024-02-24 12:46:37.069 2024-02-24 12:46:37.069 225000 TIP 437062 11298 6052999 2024-02-24 12:46:39.042 2024-02-24 12:46:39.042 1000 FEE 437120 8998 6053003 2024-02-24 12:47:07.114 2024-02-24 12:47:07.114 1000 FEE 437123 14247 6053044 2024-02-24 12:53:36.687 2024-02-24 12:53:36.687 2100 FEE 437087 16267 6053045 2024-02-24 12:53:36.687 2024-02-24 12:53:36.687 18900 TIP 437087 13759 6053051 2024-02-24 12:54:03.998 2024-02-24 12:54:03.998 2100 FEE 437059 8954 6053052 2024-02-24 12:54:03.998 2024-02-24 12:54:03.998 18900 TIP 437059 5306 6053057 2024-02-24 12:54:10.496 2024-02-24 12:54:10.496 100 FEE 437077 630 6053058 2024-02-24 12:54:10.496 2024-02-24 12:54:10.496 900 TIP 437077 5809 6053076 2024-02-24 12:55:57.51 2024-02-24 12:55:57.51 2100 FEE 436967 13169 6053077 2024-02-24 12:55:57.51 2024-02-24 12:55:57.51 18900 TIP 436967 6149 6053095 2024-02-24 12:58:22.204 2024-02-24 12:58:22.204 1000 FEE 437147 9166 6053112 2024-02-24 13:00:52.66 2024-02-24 13:00:52.66 0 FEE 437149 15925 6053128 2024-02-24 13:03:20.787 2024-02-24 13:03:20.787 1300 FEE 437050 16876 6053129 2024-02-24 13:03:20.787 2024-02-24 13:03:20.787 11700 TIP 437050 20327 6053138 2024-02-24 13:04:03.13 2024-02-24 13:04:03.13 1000 FEE 437153 940 6053145 2024-02-24 13:05:21.372 2024-02-24 13:05:21.372 2100 FEE 437063 18896 6053146 2024-02-24 13:05:21.372 2024-02-24 13:05:21.372 18900 TIP 437063 1105 6053159 2024-02-24 13:07:32.011 2024-02-24 13:07:32.011 1100 FEE 437153 12769 6053160 2024-02-24 13:07:32.011 2024-02-24 13:07:32.011 9900 TIP 437153 5308 6053172 2024-02-24 13:11:01.801 2024-02-24 13:11:01.801 2100 FEE 436983 11515 6053173 2024-02-24 13:11:01.801 2024-02-24 13:11:01.801 18900 TIP 436983 16753 6053183 2024-02-24 13:14:07.53 2024-02-24 13:14:07.53 1000 FEE 437163 18608 6053190 2024-02-24 13:17:54.742 2024-02-24 13:17:54.742 100 FEE 436556 16942 6053191 2024-02-24 13:17:54.742 2024-02-24 13:17:54.742 900 TIP 436556 18625 6053192 2024-02-24 13:17:56.759 2024-02-24 13:17:56.759 1000 FEE 437166 11298 6053203 2024-02-24 13:19:54.439 2024-02-24 13:19:54.439 2100 FEE 436759 13767 6053204 2024-02-24 13:19:54.439 2024-02-24 13:19:54.439 18900 TIP 436759 2583 6053220 2024-02-24 13:20:41.78 2024-02-24 13:20:41.78 2100 FEE 437146 17011 6053221 2024-02-24 13:20:41.78 2024-02-24 13:20:41.78 18900 TIP 437146 10311 6053224 2024-02-24 13:20:50.749 2024-02-24 13:20:50.749 2100 FEE 436994 20525 6053225 2024-02-24 13:20:50.749 2024-02-24 13:20:50.749 18900 TIP 436994 21563 6053258 2024-02-24 13:22:56.88 2024-02-24 13:22:56.88 100 FEE 437166 12819 6053259 2024-02-24 13:22:56.88 2024-02-24 13:22:56.88 900 TIP 437166 2741 6053265 2024-02-24 13:23:39.352 2024-02-24 13:23:39.352 2100 FEE 436901 21248 6053266 2024-02-24 13:23:39.352 2024-02-24 13:23:39.352 18900 TIP 436901 1490 6053270 2024-02-24 13:25:45.444 2024-02-24 13:25:45.444 1000 FEE 437171 20022 6053278 2024-02-24 13:27:12.094 2024-02-24 13:27:12.094 200 FEE 437072 1454 6053279 2024-02-24 13:27:12.094 2024-02-24 13:27:12.094 1800 TIP 437072 16124 6053317 2024-02-24 13:32:23.142 2024-02-24 13:32:23.142 10000 FEE 437181 19777 6053318 2024-02-24 13:32:52.788 2024-02-24 13:32:52.788 700 FEE 437175 2525 6053319 2024-02-24 13:32:52.788 2024-02-24 13:32:52.788 6300 TIP 437175 1571 6053322 2024-02-24 13:32:53.101 2024-02-24 13:32:53.101 700 FEE 437175 19843 6053323 2024-02-24 13:32:53.101 2024-02-24 13:32:53.101 6300 TIP 437175 1114 6053343 2024-02-24 13:35:37.531 2024-02-24 13:35:37.531 500 FEE 436929 2703 6053344 2024-02-24 13:35:37.531 2024-02-24 13:35:37.531 4500 TIP 436929 688 6053346 2024-02-24 13:36:08.697 2024-02-24 13:36:08.697 500 FEE 435847 910 6053347 2024-02-24 13:36:08.697 2024-02-24 13:36:08.697 4500 TIP 435847 672 6053371 2024-02-24 13:37:38.821 2024-02-24 13:37:38.821 1300 FEE 437183 1142 6053372 2024-02-24 13:37:38.821 2024-02-24 13:37:38.821 11700 TIP 437183 7674 6053379 2024-02-24 13:38:08.306 2024-02-24 13:38:08.306 0 FEE 437184 1000 6053386 2024-02-24 13:38:39.862 2024-02-24 13:38:39.862 500 FEE 436731 20782 6053387 2024-02-24 13:38:39.862 2024-02-24 13:38:39.862 4500 TIP 436731 18828 6053421 2024-02-24 13:40:31.855 2024-02-24 13:40:31.855 1300 FEE 437054 3686 6053422 2024-02-24 13:40:31.855 2024-02-24 13:40:31.855 11700 TIP 437054 626 6053442 2024-02-24 13:43:53.477 2024-02-24 13:43:53.477 2100 FEE 437037 18392 6053443 2024-02-24 13:43:53.477 2024-02-24 13:43:53.477 18900 TIP 437037 1552 6053451 2024-02-24 13:45:24.403 2024-02-24 13:45:24.403 2100 FEE 437023 2614 6053452 2024-02-24 13:45:24.403 2024-02-24 13:45:24.403 18900 TIP 437023 5069 6053459 2024-02-24 13:46:49.989 2024-02-24 13:46:49.989 6900 FEE 437197 6717 6053460 2024-02-24 13:46:49.989 2024-02-24 13:46:49.989 62100 TIP 437197 20198 6053469 2024-02-24 13:48:39.525 2024-02-24 13:48:39.525 1000 FEE 437199 18659 6053493 2024-02-24 13:51:31.633 2024-02-24 13:51:31.633 2100 FEE 436959 20837 6053494 2024-02-24 13:51:31.633 2024-02-24 13:51:31.633 18900 TIP 436959 2722 6053502 2024-02-24 13:51:54.542 2024-02-24 13:51:54.542 100 FEE 437181 2543 6053503 2024-02-24 13:51:54.542 2024-02-24 13:51:54.542 900 TIP 437181 17797 6053515 2024-02-24 13:53:16.866 2024-02-24 13:53:16.866 1000 FEE 437207 18314 6053518 2024-02-24 13:53:31.494 2024-02-24 13:53:31.494 1000 FEE 437087 674 6053519 2024-02-24 13:53:31.494 2024-02-24 13:53:31.494 9000 TIP 437087 19662 6053528 2024-02-24 13:54:25.228 2024-02-24 13:54:25.228 1000 FEE 437168 17953 6053529 2024-02-24 13:54:25.228 2024-02-24 13:54:25.228 9000 TIP 437168 15560 6053536 2024-02-24 13:54:27.075 2024-02-24 13:54:27.075 1000 FEE 437168 15088 6053537 2024-02-24 13:54:27.075 2024-02-24 13:54:27.075 9000 TIP 437168 1733 6053565 2024-02-24 13:56:20.546 2024-02-24 13:56:20.546 1000 FEE 437034 11798 6053566 2024-02-24 13:56:20.546 2024-02-24 13:56:20.546 9000 TIP 437034 9355 6053582 2024-02-24 13:59:06.776 2024-02-24 13:59:06.776 200 FEE 437101 8498 6053583 2024-02-24 13:59:06.776 2024-02-24 13:59:06.776 1800 TIP 437101 19615 6053584 2024-02-24 13:59:09.737 2024-02-24 13:59:09.737 200 FEE 437057 20655 6053585 2024-02-24 13:59:09.737 2024-02-24 13:59:09.737 1800 TIP 437057 21207 6053607 2024-02-24 14:00:08.424 2024-02-24 14:00:08.424 1000 FEE 437062 20185 6053608 2024-02-24 14:00:08.424 2024-02-24 14:00:08.424 9000 TIP 437062 4115 6053630 2024-02-24 14:02:14.985 2024-02-24 14:02:14.985 0 FEE 437217 21320 6053649 2024-02-24 14:05:24.212 2024-02-24 14:05:24.212 1000 FEE 436916 20906 6053650 2024-02-24 14:05:24.212 2024-02-24 14:05:24.212 9000 TIP 436916 14260 6053675 2024-02-24 14:07:36.126 2024-02-24 14:07:36.126 2100 FEE 437223 19888 6053676 2024-02-24 14:07:36.126 2024-02-24 14:07:36.126 18900 TIP 437223 15326 6053792 2024-02-24 14:18:47.481 2024-02-24 14:18:47.481 2700 FEE 436752 21603 6053793 2024-02-24 14:18:47.481 2024-02-24 14:18:47.481 24300 TIP 436752 5828 6053798 2024-02-24 14:20:17.029 2024-02-24 14:20:17.029 7700 FEE 437239 16598 6053799 2024-02-24 14:20:17.029 2024-02-24 14:20:17.029 69300 TIP 437239 20636 6053800 2024-02-24 14:20:39.604 2024-02-24 14:20:39.604 2100 FEE 437216 720 6053801 2024-02-24 14:20:39.604 2024-02-24 14:20:39.604 18900 TIP 437216 2232 6053820 2024-02-24 14:22:08.39 2024-02-24 14:22:08.39 5000 FEE 436928 20434 6053821 2024-02-24 14:22:08.39 2024-02-24 14:22:08.39 45000 TIP 436928 11192 6053822 2024-02-24 14:22:19.681 2024-02-24 14:22:19.681 500000 FEE 436752 16942 6053823 2024-02-24 14:22:19.681 2024-02-24 14:22:19.681 4500000 TIP 436752 4059 6053835 2024-02-24 14:23:05.072 2024-02-24 14:23:05.072 5000 FEE 431877 20990 6053042 2024-02-24 12:53:32.401 2024-02-24 12:53:32.401 100 FEE 437033 16336 6053043 2024-02-24 12:53:32.401 2024-02-24 12:53:32.401 900 TIP 437033 6384 6053048 2024-02-24 12:53:51.611 2024-02-24 12:53:51.611 2100 FEE 437063 19259 6053049 2024-02-24 12:53:51.611 2024-02-24 12:53:51.611 18900 TIP 437063 13399 6053093 2024-02-24 12:58:18.474 2024-02-24 12:58:18.474 4000 FEE 437146 998 6053094 2024-02-24 12:58:18.474 2024-02-24 12:58:18.474 36000 TIP 437146 13878 6053096 2024-02-24 12:58:36.361 2024-02-24 12:58:36.361 1100 FEE 436983 9669 6053097 2024-02-24 12:58:36.361 2024-02-24 12:58:36.361 9900 TIP 436983 1354 6053106 2024-02-24 13:00:12.321 2024-02-24 13:00:12.321 2100 FEE 437146 4238 6053107 2024-02-24 13:00:12.321 2024-02-24 13:00:12.321 18900 TIP 437146 775 6053111 2024-02-24 13:00:38.024 2024-02-24 13:00:38.024 1000 FEE 437149 17212 6053119 2024-02-24 13:02:47.453 2024-02-24 13:02:47.453 1300 FEE 437074 18494 6053120 2024-02-24 13:02:47.453 2024-02-24 13:02:47.453 11700 TIP 437074 19459 6053130 2024-02-24 13:03:20.956 2024-02-24 13:03:20.956 1300 FEE 437050 15060 6053131 2024-02-24 13:03:20.956 2024-02-24 13:03:20.956 11700 TIP 437050 17046 6053171 2024-02-24 13:10:58.25 2024-02-24 13:10:58.25 1000 FEE 437159 20179 6053240 2024-02-24 13:21:57.487 2024-02-24 13:21:57.487 1000 FEE 437169 5637 6053248 2024-02-24 13:22:55.535 2024-02-24 13:22:55.535 100 FEE 437166 1800 6053249 2024-02-24 13:22:55.535 2024-02-24 13:22:55.535 900 TIP 437166 21481 6053250 2024-02-24 13:22:55.837 2024-02-24 13:22:55.837 100 FEE 437166 17094 6053251 2024-02-24 13:22:55.837 2024-02-24 13:22:55.837 900 TIP 437166 19458 6053283 2024-02-24 13:27:37.402 2024-02-24 13:27:37.402 1000 FEE 437146 2042 6053284 2024-02-24 13:27:37.402 2024-02-24 13:27:37.402 9000 TIP 437146 760 6053302 2024-02-24 13:29:07.825 2024-02-24 13:29:07.825 4000 FEE 437151 19030 6053303 2024-02-24 13:29:07.825 2024-02-24 13:29:07.825 36000 TIP 437151 21563 6053324 2024-02-24 13:33:01.81 2024-02-24 13:33:01.81 2100 FEE 437078 9332 6053325 2024-02-24 13:33:01.81 2024-02-24 13:33:01.81 18900 TIP 437078 19924 6053329 2024-02-24 13:33:22.592 2024-02-24 13:33:22.592 500 FEE 437176 1567 6053330 2024-02-24 13:33:22.592 2024-02-24 13:33:22.592 4500 TIP 437176 18772 6053337 2024-02-24 13:34:42.388 2024-02-24 13:34:42.388 10000 FEE 437087 9351 6053338 2024-02-24 13:34:42.388 2024-02-24 13:34:42.388 90000 TIP 437087 19848 6053348 2024-02-24 13:36:19.143 2024-02-24 13:36:19.143 1000 FEE 437182 17638 6053349 2024-02-24 13:36:23.171 2024-02-24 13:36:23.171 21000 FEE 437183 17817 6053355 2024-02-24 13:37:07.382 2024-02-24 13:37:07.382 1000 FEE 437186 1658 6053374 2024-02-24 13:37:39.791 2024-02-24 13:37:39.791 2100 FEE 437158 1474 6053375 2024-02-24 13:37:39.791 2024-02-24 13:37:39.791 18900 TIP 437158 21012 6053382 2024-02-24 13:38:28.908 2024-02-24 13:38:28.908 0 FEE 437189 1326 6053383 2024-02-24 13:38:32.939 2024-02-24 13:38:32.939 500 FEE 436646 11075 6053384 2024-02-24 13:38:32.939 2024-02-24 13:38:32.939 4500 TIP 436646 5359 6053390 2024-02-24 13:38:51.223 2024-02-24 13:38:51.223 500 FEE 436642 2514 6053391 2024-02-24 13:38:51.223 2024-02-24 13:38:51.223 4500 TIP 436642 20623 6053392 2024-02-24 13:39:00.932 2024-02-24 13:39:00.932 0 FEE 437189 4259 6053403 2024-02-24 13:39:40.145 2024-02-24 13:39:40.145 2100 FEE 437047 13042 6053404 2024-02-24 13:39:40.145 2024-02-24 13:39:40.145 18900 TIP 437047 18923 6053423 2024-02-24 13:40:32.427 2024-02-24 13:40:32.427 1300 FEE 437054 2390 6053424 2024-02-24 13:40:32.427 2024-02-24 13:40:32.427 11700 TIP 437054 4084 6053441 2024-02-24 13:43:52.208 2024-02-24 13:43:52.208 1000 FEE 437196 19907 6053444 2024-02-24 13:44:01.648 2024-02-24 13:44:01.648 1000 FEE 437197 628 6053464 2024-02-24 13:47:43.413 2024-02-24 13:47:43.413 10000 FEE 437158 16154 6053465 2024-02-24 13:47:43.413 2024-02-24 13:47:43.413 90000 TIP 437158 20412 6053467 2024-02-24 13:48:17.493 2024-02-24 13:48:17.493 1100 FEE 437008 5069 6053468 2024-02-24 13:48:17.493 2024-02-24 13:48:17.493 9900 TIP 437008 7659 6053478 2024-02-24 13:49:57.556 2024-02-24 13:49:57.556 500 FEE 436752 2718 6053479 2024-02-24 13:49:57.556 2024-02-24 13:49:57.556 4500 TIP 436752 21509 6053483 2024-02-24 13:50:10.635 2024-02-24 13:50:10.635 2100 FEE 436853 9200 6053484 2024-02-24 13:50:10.635 2024-02-24 13:50:10.635 18900 TIP 436853 9438 6053497 2024-02-24 13:51:45.677 2024-02-24 13:51:45.677 0 FEE 437201 2710 6053516 2024-02-24 13:53:24.289 2024-02-24 13:53:24.289 2100 FEE 437204 18904 6053517 2024-02-24 13:53:24.289 2024-02-24 13:53:24.289 18900 TIP 437204 16939 6053522 2024-02-24 13:54:19.679 2024-02-24 13:54:19.679 1000 FEE 437190 19576 6053523 2024-02-24 13:54:19.679 2024-02-24 13:54:19.679 9000 TIP 437190 1316 6053532 2024-02-24 13:54:26.167 2024-02-24 13:54:26.167 1000 FEE 437168 20225 6053533 2024-02-24 13:54:26.167 2024-02-24 13:54:26.167 9000 TIP 437168 14045 6053544 2024-02-24 13:54:41.082 2024-02-24 13:54:41.082 1000 FEE 437209 21274 6053588 2024-02-24 13:59:12.364 2024-02-24 13:59:12.364 200 FEE 437022 19546 6053589 2024-02-24 13:59:12.364 2024-02-24 13:59:12.364 1800 TIP 437022 13574 6053616 2024-02-24 14:00:44.559 2024-02-24 14:00:44.559 1000 FEE 437217 20912 6053626 2024-02-24 14:01:54.812 2024-02-24 14:01:54.812 0 FEE 437217 14731 6053631 2024-02-24 14:02:35.516 2024-02-24 14:02:35.516 1000 FEE 437221 12024 6053634 2024-02-24 14:03:28.209 2024-02-24 14:03:28.209 200 FEE 435806 3409 6053635 2024-02-24 14:03:28.209 2024-02-24 14:03:28.209 1800 TIP 435806 21248 6053639 2024-02-24 14:04:33.023 2024-02-24 14:04:33.023 2100 FEE 437179 7809 6053640 2024-02-24 14:04:33.023 2024-02-24 14:04:33.023 18900 TIP 437179 14688 6053683 2024-02-24 14:08:12.016 2024-02-24 14:08:12.016 2100 FEE 437212 9920 6053684 2024-02-24 14:08:12.016 2024-02-24 14:08:12.016 18900 TIP 437212 16998 6053698 2024-02-24 14:08:49.539 2024-02-24 14:08:49.539 0 FEE 437229 2711 6053701 2024-02-24 14:08:53.97 2024-02-24 14:08:53.97 1000 FEE 436834 8400 6053702 2024-02-24 14:08:53.97 2024-02-24 14:08:53.97 9000 TIP 436834 2639 6053703 2024-02-24 14:08:55.443 2024-02-24 14:08:55.443 0 FEE 437227 1712 6053747 2024-02-24 14:16:08.75 2024-02-24 14:16:08.75 1000 FEE 437234 10393 6053751 2024-02-24 14:16:41.876 2024-02-24 14:16:41.876 2100 FEE 437233 17494 6053752 2024-02-24 14:16:41.876 2024-02-24 14:16:41.876 18900 TIP 437233 21523 6053758 2024-02-24 14:16:57.639 2024-02-24 14:16:57.639 1000 FEE 437237 20596 6053763 2024-02-24 14:17:00.459 2024-02-24 14:17:00.459 2700 FEE 436826 21619 6053764 2024-02-24 14:17:00.459 2024-02-24 14:17:00.459 24300 TIP 436826 13622 6053770 2024-02-24 14:17:15.785 2024-02-24 14:17:15.785 2100 FEE 437110 1729 6053771 2024-02-24 14:17:15.785 2024-02-24 14:17:15.785 18900 TIP 437110 9166 6053802 2024-02-24 14:20:44.177 2024-02-24 14:20:44.177 4000 FEE 437233 20133 6053803 2024-02-24 14:20:44.177 2024-02-24 14:20:44.177 36000 TIP 437233 16879 6053804 2024-02-24 14:20:59.181 2024-02-24 14:20:59.181 1000 FEE 437241 694 6053806 2024-02-24 14:21:31.239 2024-02-24 14:21:31.239 1000 FEE 437242 21274 6053825 2024-02-24 14:22:24.852 2024-02-24 14:22:24.852 2100 FEE 436971 2264 6053826 2024-02-24 14:22:24.852 2024-02-24 14:22:24.852 18900 TIP 436971 2213 6053831 2024-02-24 14:22:36.5 2024-02-24 14:22:36.5 1000 FEE 437248 6594 6053856 2024-02-24 14:23:26.137 2024-02-24 14:23:26.137 2100 FEE 437238 1609 6053857 2024-02-24 14:23:26.137 2024-02-24 14:23:26.137 18900 TIP 437238 917 6053868 2024-02-24 14:24:11.098 2024-02-24 14:24:11.098 5000 FEE 437187 18837 6053869 2024-02-24 14:24:11.098 2024-02-24 14:24:11.098 45000 TIP 437187 4126 6053897 2024-02-24 14:25:02.929 2024-02-24 14:25:02.929 100 FEE 437205 8945 6053898 2024-02-24 14:25:02.929 2024-02-24 14:25:02.929 900 TIP 437205 19458 6053917 2024-02-24 14:26:48.09 2024-02-24 14:26:48.09 2100 FEE 437218 629 6053918 2024-02-24 14:26:48.09 2024-02-24 14:26:48.09 18900 TIP 437218 15728 6053960 2024-02-24 14:30:32.727 2024-02-24 14:30:32.727 2100 FEE 437201 1605 6053961 2024-02-24 14:30:32.727 2024-02-24 14:30:32.727 18900 TIP 437201 20353 6053964 2024-02-24 14:32:45.853 2024-02-24 14:32:45.853 1000 FEE 437268 15843 6053083 2024-02-24 12:56:10.639 2024-02-24 12:56:10.639 2100 FEE 436935 20087 6053084 2024-02-24 12:56:10.639 2024-02-24 12:56:10.639 18900 TIP 436935 913 6053098 2024-02-24 12:58:55.111 2024-02-24 12:58:55.111 1000 FEE 437148 16329 6053108 2024-02-24 13:00:27.492 2024-02-24 13:00:27.492 0 FEE 437147 20430 6053109 2024-02-24 13:00:34.828 2024-02-24 13:00:34.828 10000 FEE 437109 4314 6053110 2024-02-24 13:00:34.828 2024-02-24 13:00:34.828 90000 TIP 437109 16348 6053118 2024-02-24 13:02:44.298 2024-02-24 13:02:44.298 1000 FEE 437151 20647 6053161 2024-02-24 13:07:38.004 2024-02-24 13:07:38.004 1100 FEE 437144 17722 6053162 2024-02-24 13:07:38.004 2024-02-24 13:07:38.004 9900 TIP 437144 4831 6053163 2024-02-24 13:07:53.704 2024-02-24 13:07:53.704 0 FEE 437156 14939 6053177 2024-02-24 13:12:12.494 2024-02-24 13:12:12.494 1000 FEE 437160 18526 6053187 2024-02-24 13:15:46.142 2024-02-24 13:15:46.142 1000 FEE 437165 20776 6053200 2024-02-24 13:19:27.556 2024-02-24 13:19:27.556 1000 FEE 437168 19507 6053207 2024-02-24 13:19:57.77 2024-02-24 13:19:57.77 2100 FEE 436466 895 6053208 2024-02-24 13:19:57.77 2024-02-24 13:19:57.77 18900 TIP 436466 4984 6053216 2024-02-24 13:20:26.479 2024-02-24 13:20:26.479 2100 FEE 436792 16532 6053217 2024-02-24 13:20:26.479 2024-02-24 13:20:26.479 18900 TIP 436792 8004 6053233 2024-02-24 13:21:09.702 2024-02-24 13:21:09.702 1000 POLL 436759 21472 6053236 2024-02-24 13:21:23.143 2024-02-24 13:21:23.143 2100 FEE 436514 7916 6053237 2024-02-24 13:21:23.143 2024-02-24 13:21:23.143 18900 TIP 436514 7553 6053256 2024-02-24 13:22:56.547 2024-02-24 13:22:56.547 100 FEE 437166 18378 6053257 2024-02-24 13:22:56.547 2024-02-24 13:22:56.547 900 TIP 437166 8945 6053273 2024-02-24 13:26:14.584 2024-02-24 13:26:14.584 1000 FEE 437172 18449 6053274 2024-02-24 13:26:58.681 2024-02-24 13:26:58.681 1000 FEE 437173 9695 6053276 2024-02-24 13:27:04.095 2024-02-24 13:27:04.095 1100 FEE 437070 11073 6053277 2024-02-24 13:27:04.095 2024-02-24 13:27:04.095 9900 TIP 437070 21164 6053281 2024-02-24 13:27:32.285 2024-02-24 13:27:32.285 10000 FEE 437011 1697 6053282 2024-02-24 13:27:32.285 2024-02-24 13:27:32.285 90000 TIP 437011 5085 6053295 2024-02-24 13:28:45.713 2024-02-24 13:28:45.713 1000 FEE 437178 1425 6053304 2024-02-24 13:29:19.004 2024-02-24 13:29:19.004 1000 FEE 437179 20015 6053308 2024-02-24 13:30:22.63 2024-02-24 13:30:22.63 2100 FEE 437168 8416 6053309 2024-02-24 13:30:22.63 2024-02-24 13:30:22.63 18900 TIP 437168 20904 6053313 2024-02-24 13:31:43.52 2024-02-24 13:31:43.52 2100 FEE 437158 673 6053314 2024-02-24 13:31:43.52 2024-02-24 13:31:43.52 18900 TIP 437158 19661 6053335 2024-02-24 13:34:39.198 2024-02-24 13:34:39.198 2100 FEE 437045 7891 6053336 2024-02-24 13:34:39.198 2024-02-24 13:34:39.198 18900 TIP 437045 19484 6053350 2024-02-24 13:36:23.223 2024-02-24 13:36:23.223 1300 FEE 437165 16532 6053351 2024-02-24 13:36:23.223 2024-02-24 13:36:23.223 11700 TIP 437165 19286 6053357 2024-02-24 13:37:17.195 2024-02-24 13:37:17.195 1000 FEE 437187 640 6053373 2024-02-24 13:37:39.213 2024-02-24 13:37:39.213 0 FEE 437184 21271 6053380 2024-02-24 13:38:16.311 2024-02-24 13:38:16.311 4000 FEE 437182 1439 6053381 2024-02-24 13:38:16.311 2024-02-24 13:38:16.311 36000 TIP 437182 2748 6053385 2024-02-24 13:38:36.012 2024-02-24 13:38:36.012 0 FEE 437184 974 6053396 2024-02-24 13:39:06.948 2024-02-24 13:39:06.948 1000 FEE 437191 20730 6053401 2024-02-24 13:39:27.293 2024-02-24 13:39:27.293 2100 FEE 437087 2681 6053402 2024-02-24 13:39:27.293 2024-02-24 13:39:27.293 18900 TIP 437087 2718 6053405 2024-02-24 13:39:41.886 2024-02-24 13:39:41.886 2100 FEE 437190 16424 6053406 2024-02-24 13:39:41.886 2024-02-24 13:39:41.886 18900 TIP 437190 16809 6053411 2024-02-24 13:40:30.628 2024-02-24 13:40:30.628 1300 FEE 437054 11621 6053412 2024-02-24 13:40:30.628 2024-02-24 13:40:30.628 11700 TIP 437054 1208 6053419 2024-02-24 13:40:31.301 2024-02-24 13:40:31.301 1300 FEE 437054 18380 6053420 2024-02-24 13:40:31.301 2024-02-24 13:40:31.301 11700 TIP 437054 2029 6053425 2024-02-24 13:40:32.825 2024-02-24 13:40:32.825 1300 FEE 437054 18557 6053426 2024-02-24 13:40:32.825 2024-02-24 13:40:32.825 11700 TIP 437054 848 6053427 2024-02-24 13:40:32.902 2024-02-24 13:40:32.902 1300 FEE 437054 20479 6053428 2024-02-24 13:40:32.902 2024-02-24 13:40:32.902 11700 TIP 437054 3717 6053438 2024-02-24 13:42:13.48 2024-02-24 13:42:13.48 1000 POLL 436759 9874 6053487 2024-02-24 13:50:21.528 2024-02-24 13:50:21.528 4000 FEE 437181 617 6053488 2024-02-24 13:50:21.528 2024-02-24 13:50:21.528 36000 TIP 437181 2330 6053491 2024-02-24 13:51:26.369 2024-02-24 13:51:26.369 10000 FEE 436720 9336 6053492 2024-02-24 13:51:26.369 2024-02-24 13:51:26.369 90000 TIP 436720 12483 6053500 2024-02-24 13:51:52.692 2024-02-24 13:51:52.692 10000 FEE 437204 16270 6053501 2024-02-24 13:51:52.692 2024-02-24 13:51:52.692 90000 TIP 437204 2459 6053506 2024-02-24 13:52:00.317 2024-02-24 13:52:00.317 1000 POLL 436759 15180 6053530 2024-02-24 13:54:25.654 2024-02-24 13:54:25.654 1000 FEE 437168 1438 6053531 2024-02-24 13:54:25.654 2024-02-24 13:54:25.654 9000 TIP 437168 1326 6053534 2024-02-24 13:54:26.549 2024-02-24 13:54:26.549 1000 FEE 437168 5455 6053535 2024-02-24 13:54:26.549 2024-02-24 13:54:26.549 9000 TIP 437168 11018 6053548 2024-02-24 13:55:05.006 2024-02-24 13:55:05.006 10000 FEE 437072 769 6053549 2024-02-24 13:55:05.006 2024-02-24 13:55:05.006 90000 TIP 437072 11458 6053567 2024-02-24 13:56:27.58 2024-02-24 13:56:27.58 1000 FEE 437210 946 6053574 2024-02-24 13:58:53.303 2024-02-24 13:58:53.303 10000 FEE 437212 4802 6053633 2024-02-24 14:03:28.196 2024-02-24 14:03:28.196 10000 FEE 437223 15536 6053667 2024-02-24 14:07:08.449 2024-02-24 14:07:08.449 1000 FEE 437198 9353 6053668 2024-02-24 14:07:08.449 2024-02-24 14:07:08.449 9000 TIP 437198 9820 6053694 2024-02-24 14:08:40.831 2024-02-24 14:08:40.831 1000 FEE 436887 20871 6053695 2024-02-24 14:08:40.831 2024-02-24 14:08:40.831 9000 TIP 436887 18556 6053711 2024-02-24 14:10:38.261 2024-02-24 14:10:38.261 6900 FEE 437210 696 6053712 2024-02-24 14:10:38.261 2024-02-24 14:10:38.261 62100 TIP 437210 14247 6053757 2024-02-24 14:16:55.675 2024-02-24 14:16:55.675 1000 FEE 437236 16680 6053774 2024-02-24 14:18:40.774 2024-02-24 14:18:40.774 1000 FEE 437238 20218 6053775 2024-02-24 14:18:40.774 2024-02-24 14:18:40.774 9000 TIP 437238 18124 6053782 2024-02-24 14:18:46.511 2024-02-24 14:18:46.511 2700 FEE 436752 19796 6053783 2024-02-24 14:18:46.511 2024-02-24 14:18:46.511 24300 TIP 436752 831 6053790 2024-02-24 14:18:47.263 2024-02-24 14:18:47.263 2700 FEE 436752 18017 6053791 2024-02-24 14:18:47.263 2024-02-24 14:18:47.263 24300 TIP 436752 775 6053848 2024-02-24 14:23:19.96 2024-02-24 14:23:19.96 100 FEE 437238 17708 6053849 2024-02-24 14:23:19.96 2024-02-24 14:23:19.96 900 TIP 437238 8535 6053860 2024-02-24 14:23:51.994 2024-02-24 14:23:51.994 4000 FEE 437250 19138 6053861 2024-02-24 14:23:51.994 2024-02-24 14:23:51.994 36000 TIP 437250 18230 6053872 2024-02-24 14:24:17.399 2024-02-24 14:24:17.399 100 FEE 436909 21458 6053873 2024-02-24 14:24:17.399 2024-02-24 14:24:17.399 900 TIP 436909 15271 6053874 2024-02-24 14:24:21.308 2024-02-24 14:24:21.308 100 FEE 436909 8245 6053875 2024-02-24 14:24:21.308 2024-02-24 14:24:21.308 900 TIP 436909 2942 6053886 2024-02-24 14:24:25.626 2024-02-24 14:24:25.626 1000 FEE 437256 15806 6053899 2024-02-24 14:25:47.975 2024-02-24 14:25:47.975 1000 FEE 437258 20231 6053924 2024-02-24 14:26:59.238 2024-02-24 14:26:59.238 1000 FEE 437262 20892 6053930 2024-02-24 14:27:15.463 2024-02-24 14:27:15.463 4000 FEE 437261 19394 6053123 2024-02-24 13:03:12.664 2024-02-24 13:03:12.664 3000 DONT_LIKE_THIS 437149 1472 6053126 2024-02-24 13:03:20.44 2024-02-24 13:03:20.44 1300 FEE 437050 18114 6053127 2024-02-24 13:03:20.44 2024-02-24 13:03:20.44 11700 TIP 437050 777 6053134 2024-02-24 13:03:22.033 2024-02-24 13:03:22.033 1300 FEE 437050 11992 6053135 2024-02-24 13:03:22.033 2024-02-24 13:03:22.033 11700 TIP 437050 21291 6053141 2024-02-24 13:04:20.402 2024-02-24 13:04:20.402 2100 FEE 437110 19158 6053142 2024-02-24 13:04:20.402 2024-02-24 13:04:20.402 18900 TIP 437110 21164 6053151 2024-02-24 13:06:11.207 2024-02-24 13:06:11.207 2100 FEE 436986 19813 6053152 2024-02-24 13:06:11.207 2024-02-24 13:06:11.207 18900 TIP 436986 1773 6053154 2024-02-24 13:07:15.799 2024-02-24 13:07:15.799 2100 FEE 437035 10731 6053155 2024-02-24 13:07:15.799 2024-02-24 13:07:15.799 18900 TIP 437035 20258 6053186 2024-02-24 13:15:11.439 2024-02-24 13:15:11.439 0 FEE 183537 21373 6053197 2024-02-24 13:18:24.451 2024-02-24 13:18:24.451 2100 FEE 436907 21374 6053198 2024-02-24 13:18:24.451 2024-02-24 13:18:24.451 18900 TIP 436907 10728 6053211 2024-02-24 13:20:03.11 2024-02-24 13:20:03.11 2100 FEE 436258 11523 6053212 2024-02-24 13:20:03.11 2024-02-24 13:20:03.11 18900 TIP 436258 5829 6053214 2024-02-24 13:20:18.396 2024-02-24 13:20:18.396 2100 FEE 436720 6653 6053215 2024-02-24 13:20:18.396 2024-02-24 13:20:18.396 18900 TIP 436720 1620 6053218 2024-02-24 13:20:35.021 2024-02-24 13:20:35.021 2100 FEE 437031 9347 6053219 2024-02-24 13:20:35.021 2024-02-24 13:20:35.021 18900 TIP 437031 9426 6053231 2024-02-24 13:21:05.266 2024-02-24 13:21:05.266 2100 FEE 436823 20892 6053232 2024-02-24 13:21:05.266 2024-02-24 13:21:05.266 18900 TIP 436823 19601 6053268 2024-02-24 13:24:43.887 2024-02-24 13:24:43.887 10000 FEE 437170 20198 6053291 2024-02-24 13:28:19.041 2024-02-24 13:28:19.041 1100 FEE 437078 16353 6053292 2024-02-24 13:28:19.041 2024-02-24 13:28:19.041 9900 TIP 437078 18231 6053296 2024-02-24 13:28:53.039 2024-02-24 13:28:53.039 5000 FEE 437074 861 6053297 2024-02-24 13:28:53.039 2024-02-24 13:28:53.039 45000 TIP 437074 16387 6053311 2024-02-24 13:31:36.253 2024-02-24 13:31:36.253 2100 FEE 437168 6310 6053312 2024-02-24 13:31:36.253 2024-02-24 13:31:36.253 18900 TIP 437168 1726 6053332 2024-02-24 13:34:16.635 2024-02-24 13:34:16.635 10000 DONT_LIKE_THIS 436799 4064 6053388 2024-02-24 13:38:47.14 2024-02-24 13:38:47.14 1000 FEE 437087 21238 6053389 2024-02-24 13:38:47.14 2024-02-24 13:38:47.14 9000 TIP 437087 18919 6053393 2024-02-24 13:39:02.063 2024-02-24 13:39:02.063 500 FEE 436512 17541 6053394 2024-02-24 13:39:02.063 2024-02-24 13:39:02.063 4500 TIP 436512 21083 6053431 2024-02-24 13:41:02.558 2024-02-24 13:41:02.558 0 FEE 437190 1175 6053432 2024-02-24 13:41:03.436 2024-02-24 13:41:03.436 10000 FEE 437193 18387 6053476 2024-02-24 13:49:57.369 2024-02-24 13:49:57.369 500 FEE 436752 11395 6053477 2024-02-24 13:49:57.369 2024-02-24 13:49:57.369 4500 TIP 436752 17838 6053489 2024-02-24 13:51:01.301 2024-02-24 13:51:01.301 1000 FEE 437204 18877 6053495 2024-02-24 13:51:40.428 2024-02-24 13:51:40.428 2100 FEE 437197 7978 6053496 2024-02-24 13:51:40.428 2024-02-24 13:51:40.428 18900 TIP 437197 940 6053552 2024-02-24 13:56:04.293 2024-02-24 13:56:04.293 500 FEE 437199 963 6053553 2024-02-24 13:56:04.293 2024-02-24 13:56:04.293 4500 TIP 437199 19284 6053555 2024-02-24 13:56:06.815 2024-02-24 13:56:06.815 1000 FEE 437063 1836 6053556 2024-02-24 13:56:06.815 2024-02-24 13:56:06.815 9000 TIP 437063 18641 6053568 2024-02-24 13:56:29.54 2024-02-24 13:56:29.54 1000 FEE 437032 19284 6053569 2024-02-24 13:56:29.54 2024-02-24 13:56:29.54 9000 TIP 437032 17523 6053572 2024-02-24 13:58:17.043 2024-02-24 13:58:17.043 1000 FEE 437211 11942 6053590 2024-02-24 13:59:23.69 2024-02-24 13:59:23.69 1000 FEE 437213 20137 6053595 2024-02-24 13:59:52.035 2024-02-24 13:59:52.035 2100 FEE 437174 13177 6053596 2024-02-24 13:59:52.035 2024-02-24 13:59:52.035 18900 TIP 437174 19471 6053618 2024-02-24 14:00:57.688 2024-02-24 14:00:57.688 1000 FEE 437218 705 6053619 2024-02-24 14:00:57.688 2024-02-24 14:00:57.688 9000 TIP 437218 19394 6053622 2024-02-24 14:01:40.971 2024-02-24 14:01:40.971 0 FEE 437217 9816 6053636 2024-02-24 14:03:42.992 2024-02-24 14:03:42.992 1000 FEE 437224 2963 6053643 2024-02-24 14:04:51.2 2024-02-24 14:04:51.2 1000 FEE 437226 21369 6053647 2024-02-24 14:05:06.35 2024-02-24 14:05:06.35 1000 FEE 437052 11378 6053648 2024-02-24 14:05:06.35 2024-02-24 14:05:06.35 9000 TIP 437052 16357 6053651 2024-02-24 14:05:48.408 2024-02-24 14:05:48.408 1000 FEE 436923 12289 6053652 2024-02-24 14:05:48.408 2024-02-24 14:05:48.408 9000 TIP 436923 1051 6053661 2024-02-24 14:06:56.408 2024-02-24 14:06:56.408 1000 FEE 437228 1825 6053664 2024-02-24 14:06:57.466 2024-02-24 14:06:57.466 1000 FEE 437192 15213 6053665 2024-02-24 14:06:57.466 2024-02-24 14:06:57.466 9000 TIP 437192 4650 6053669 2024-02-24 14:07:20.248 2024-02-24 14:07:20.248 1000 FEE 437208 16867 6053670 2024-02-24 14:07:20.248 2024-02-24 14:07:20.248 9000 TIP 437208 20220 6053687 2024-02-24 14:08:30.806 2024-02-24 14:08:30.806 2100 FEE 437146 18177 6053688 2024-02-24 14:08:30.806 2024-02-24 14:08:30.806 18900 TIP 437146 1512 6053706 2024-02-24 14:10:18.662 2024-02-24 14:10:18.662 1000 FEE 437231 14225 6053723 2024-02-24 14:11:23.912 2024-02-24 14:11:23.912 0 FEE 437229 12951 6053726 2024-02-24 14:12:34.247 2024-02-24 14:12:34.247 6400 FEE 437146 16633 6053727 2024-02-24 14:12:34.247 2024-02-24 14:12:34.247 57600 TIP 437146 6430 6053728 2024-02-24 14:12:55.468 2024-02-24 14:12:55.468 0 FEE 437229 7913 6053737 2024-02-24 14:15:59.161 2024-02-24 14:15:59.161 100 FEE 436750 19094 6053738 2024-02-24 14:15:59.161 2024-02-24 14:15:59.161 900 TIP 436750 6041 6053773 2024-02-24 14:18:20.843 2024-02-24 14:18:20.843 100000 FEE 437238 21417 6053786 2024-02-24 14:18:46.96 2024-02-24 14:18:46.96 2700 FEE 436752 20264 6053787 2024-02-24 14:18:46.96 2024-02-24 14:18:46.96 24300 TIP 436752 12218 6053808 2024-02-24 14:21:45.971 2024-02-24 14:21:45.971 1000 FEE 437218 1814 6053809 2024-02-24 14:21:45.971 2024-02-24 14:21:45.971 9000 TIP 437218 5825 6053811 2024-02-24 14:21:50.325 2024-02-24 14:21:50.325 5000 FEE 436973 19153 6053812 2024-02-24 14:21:50.325 2024-02-24 14:21:50.325 45000 TIP 436973 3411 6053839 2024-02-24 14:23:10.235 2024-02-24 14:23:10.235 1000 FEE 420220 21274 6053840 2024-02-24 14:23:10.235 2024-02-24 14:23:10.235 9000 TIP 420220 17001 6053841 2024-02-24 14:23:12.723 2024-02-24 14:23:12.723 1000 FEE 437250 7913 6053288 2024-02-24 13:28:03.852 2024-02-24 13:28:03.852 1000 STREAM 141924 5597 6053316 2024-02-24 13:32:03.893 2024-02-24 13:32:03.893 1000 STREAM 141924 20990 6053339 2024-02-24 13:35:03.994 2024-02-24 13:35:03.994 1000 STREAM 141924 12736 6053440 2024-02-24 13:43:02.019 2024-02-24 13:43:02.019 1000 STREAM 141924 13174 6117973 2024-02-29 19:38:49.308 2024-02-29 19:38:49.308 2100 FEE 442107 11298 6117974 2024-02-29 19:38:49.308 2024-02-29 19:38:49.308 18900 TIP 442107 1505 6117986 2024-02-29 19:39:04.123 2024-02-29 19:39:04.123 1000 FEE 444100 17827 6117987 2024-02-29 19:39:04.123 2024-02-29 19:39:04.123 9000 TIP 444100 8498 6118006 2024-02-29 19:39:12.424 2024-02-29 19:39:12.424 1000 FEE 444065 2232 6118007 2024-02-29 19:39:12.424 2024-02-29 19:39:12.424 9000 TIP 444065 19235 6118028 2024-02-29 19:39:48.013 2024-02-29 19:39:48.013 2100 FEE 444015 782 6118029 2024-02-29 19:39:48.013 2024-02-29 19:39:48.013 18900 TIP 444015 20655 6118064 2024-02-29 19:43:03.417 2024-02-29 19:43:03.417 1000 FEE 444102 20509 6118065 2024-02-29 19:43:03.417 2024-02-29 19:43:03.417 9000 TIP 444102 16276 6118078 2024-02-29 19:45:04.622 2024-02-29 19:45:04.622 1000 FEE 444147 2942 6118088 2024-02-29 19:46:52.455 2024-02-29 19:46:52.455 1000 FEE 444151 5359 6118090 2024-02-29 19:47:22.393 2024-02-29 19:47:22.393 0 FEE 444151 20701 6118104 2024-02-29 19:50:52.269 2024-02-29 19:50:52.269 1000 FEE 444153 13348 6118111 2024-02-29 19:52:25.54 2024-02-29 19:52:25.54 100 FEE 444091 13406 6118112 2024-02-29 19:52:25.54 2024-02-29 19:52:25.54 900 TIP 444091 1618 6118135 2024-02-29 19:54:36.113 2024-02-29 19:54:36.113 100 FEE 443799 13527 6118136 2024-02-29 19:54:36.113 2024-02-29 19:54:36.113 900 TIP 443799 19094 6118137 2024-02-29 19:54:42.82 2024-02-29 19:54:42.82 1000 FEE 444160 5758 6118194 2024-02-29 19:59:21.12 2024-02-29 19:59:21.12 5700 FEE 444015 19105 6118195 2024-02-29 19:59:21.12 2024-02-29 19:59:21.12 51300 TIP 444015 720 6118254 2024-02-29 20:01:12.955 2024-02-29 20:01:12.955 1700 FEE 444168 14015 6118255 2024-02-29 20:01:12.955 2024-02-29 20:01:12.955 15300 TIP 444168 20554 6118270 2024-02-29 20:01:43.683 2024-02-29 20:01:43.683 1000 FEE 444172 6616 6118288 2024-02-29 20:04:37.394 2024-02-29 20:04:37.394 1000 FEE 444174 16876 6118307 2024-02-29 20:08:05.063 2024-02-29 20:08:05.063 0 FEE 444176 21547 6118387 2024-02-29 20:16:02.646 2024-02-29 20:16:02.646 1000 FEE 443655 20511 6118388 2024-02-29 20:16:02.646 2024-02-29 20:16:02.646 9000 TIP 443655 15180 6118389 2024-02-29 20:16:02.777 2024-02-29 20:16:02.777 1000 FEE 443655 18660 6118390 2024-02-29 20:16:02.777 2024-02-29 20:16:02.777 9000 TIP 443655 19096 6118393 2024-02-29 20:16:03.152 2024-02-29 20:16:03.152 1000 FEE 443655 2077 6118394 2024-02-29 20:16:03.152 2024-02-29 20:16:03.152 9000 TIP 443655 12819 6118397 2024-02-29 20:16:03.521 2024-02-29 20:16:03.521 1000 FEE 443655 6310 6118398 2024-02-29 20:16:03.521 2024-02-29 20:16:03.521 9000 TIP 443655 7654 6118427 2024-02-29 20:17:33.01 2024-02-29 20:17:33.01 1000 FEE 444192 15488 6118439 2024-02-29 20:19:23.959 2024-02-29 20:19:23.959 1600 FEE 444168 11192 6118440 2024-02-29 20:19:23.959 2024-02-29 20:19:23.959 14400 TIP 444168 6137 6118452 2024-02-29 20:20:01.783 2024-02-29 20:20:01.783 1000 FEE 444196 11716 6118465 2024-02-29 20:20:13.183 2024-02-29 20:20:13.183 1000 FEE 444198 2327 6118466 2024-02-29 20:20:13.342 2024-02-29 20:20:13.342 1000 FEE 444168 17944 6118467 2024-02-29 20:20:13.342 2024-02-29 20:20:13.342 9000 TIP 444168 21343 6118505 2024-02-29 20:20:26.81 2024-02-29 20:20:26.81 1000 FEE 444156 4292 6118506 2024-02-29 20:20:26.81 2024-02-29 20:20:26.81 9000 TIP 444156 3411 6118513 2024-02-29 20:20:38.283 2024-02-29 20:20:38.283 3300 FEE 443794 3417 6118514 2024-02-29 20:20:38.283 2024-02-29 20:20:38.283 29700 TIP 443794 20778 6118515 2024-02-29 20:20:38.628 2024-02-29 20:20:38.628 3300 FEE 443794 5865 6118516 2024-02-29 20:20:38.628 2024-02-29 20:20:38.628 29700 TIP 443794 9695 6118518 2024-02-29 20:20:50.698 2024-02-29 20:20:50.698 100 FEE 444168 1425 6118519 2024-02-29 20:20:50.698 2024-02-29 20:20:50.698 900 TIP 444168 866 6118532 2024-02-29 20:21:01.373 2024-02-29 20:21:01.373 1000 FEE 444161 12779 6118533 2024-02-29 20:21:01.373 2024-02-29 20:21:01.373 9000 TIP 444161 1141 6118546 2024-02-29 20:21:38.57 2024-02-29 20:21:38.57 1000 FEE 444201 1114 6118559 2024-02-29 20:21:54.226 2024-02-29 20:21:54.226 1000 FEE 444202 1389 6118562 2024-02-29 20:22:04.82 2024-02-29 20:22:04.82 1000 FEE 444204 17082 6118564 2024-02-29 20:22:37.689 2024-02-29 20:22:37.689 1000 FEE 444139 18040 6118565 2024-02-29 20:22:37.689 2024-02-29 20:22:37.689 9000 TIP 444139 20963 6118587 2024-02-29 20:25:36.958 2024-02-29 20:25:36.958 1000 FEE 444211 21296 6118588 2024-02-29 20:25:41.841 2024-02-29 20:25:41.841 1000 FEE 444212 2000 6118609 2024-02-29 20:26:28.758 2024-02-29 20:26:28.758 1000 FEE 444214 2829 6118610 2024-02-29 20:26:30.664 2024-02-29 20:26:30.664 1000 FEE 444215 9084 6118611 2024-02-29 20:26:39.208 2024-02-29 20:26:39.208 5000 FEE 444185 1237 6118612 2024-02-29 20:26:39.208 2024-02-29 20:26:39.208 45000 TIP 444185 19661 6118628 2024-02-29 20:27:56.666 2024-02-29 20:27:56.666 1000 FEE 444191 803 6118629 2024-02-29 20:27:56.666 2024-02-29 20:27:56.666 9000 TIP 444191 20901 6118634 2024-02-29 20:28:12.868 2024-02-29 20:28:12.868 1000 FEE 444186 15732 6118635 2024-02-29 20:28:12.868 2024-02-29 20:28:12.868 9000 TIP 444186 7978 6118653 2024-02-29 20:30:22.539 2024-02-29 20:30:22.539 10000 FEE 444168 8505 6118654 2024-02-29 20:30:22.539 2024-02-29 20:30:22.539 90000 TIP 444168 11145 6118671 2024-02-29 20:31:39.124 2024-02-29 20:31:39.124 2500 FEE 443372 657 6118672 2024-02-29 20:31:39.124 2024-02-29 20:31:39.124 22500 TIP 443372 15510 6118679 2024-02-29 20:31:48.069 2024-02-29 20:31:48.069 1000 FEE 444168 11897 6118680 2024-02-29 20:31:48.069 2024-02-29 20:31:48.069 9000 TIP 444168 6537 6118685 2024-02-29 20:31:54.204 2024-02-29 20:31:54.204 1000 FEE 444224 736 6118692 2024-02-29 20:32:14.992 2024-02-29 20:32:14.992 6900 FEE 444074 15890 6118693 2024-02-29 20:32:14.992 2024-02-29 20:32:14.992 62100 TIP 444074 20156 6118715 2024-02-29 20:33:26.001 2024-02-29 20:33:26.001 10000 FEE 444168 15386 6118716 2024-02-29 20:33:26.001 2024-02-29 20:33:26.001 90000 TIP 444168 2710 6118724 2024-02-29 20:33:40.176 2024-02-29 20:33:40.176 100 FEE 444191 1425 6118725 2024-02-29 20:33:40.176 2024-02-29 20:33:40.176 900 TIP 444191 19502 6118733 2024-02-29 20:34:04.822 2024-02-29 20:34:04.822 1000 FEE 444223 19103 6118734 2024-02-29 20:34:04.822 2024-02-29 20:34:04.822 9000 TIP 444223 13143 6118745 2024-02-29 20:34:19.276 2024-02-29 20:34:19.276 1000 FEE 444208 20182 6118746 2024-02-29 20:34:19.276 2024-02-29 20:34:19.276 9000 TIP 444208 20616 6118753 2024-02-29 20:34:24.555 2024-02-29 20:34:24.555 1000 FEE 444209 20436 6118754 2024-02-29 20:34:24.555 2024-02-29 20:34:24.555 9000 TIP 444209 21334 6118757 2024-02-29 20:34:24.824 2024-02-29 20:34:24.824 1000 FEE 444168 7986 6118758 2024-02-29 20:34:24.824 2024-02-29 20:34:24.824 9000 TIP 444168 909 6118780 2024-02-29 20:34:49.098 2024-02-29 20:34:49.098 1000 FEE 444226 9167 6118781 2024-02-29 20:34:49.098 2024-02-29 20:34:49.098 9000 TIP 444226 6393 6118788 2024-02-29 20:34:57.971 2024-02-29 20:34:57.971 1000 FEE 444184 18291 6118789 2024-02-29 20:34:57.971 2024-02-29 20:34:57.971 9000 TIP 444184 2734 6118803 2024-02-29 20:35:12.213 2024-02-29 20:35:12.213 1000 FEE 444211 13987 6118804 2024-02-29 20:35:12.213 2024-02-29 20:35:12.213 9000 TIP 444211 10291 6118811 2024-02-29 20:35:24.836 2024-02-29 20:35:24.836 1000 FEE 444230 763 6053293 2024-02-24 13:28:23.734 2024-02-24 13:28:23.734 10000 FEE 437176 9916 6053305 2024-02-24 13:29:48.132 2024-02-24 13:29:48.132 2100 FEE 436837 18909 6053306 2024-02-24 13:29:48.132 2024-02-24 13:29:48.132 18900 TIP 436837 16789 6053342 2024-02-24 13:35:34.8 2024-02-24 13:35:34.8 1000 POLL 436759 802 6053367 2024-02-24 13:37:37.745 2024-02-24 13:37:37.745 2600 FEE 437183 8954 6053368 2024-02-24 13:37:37.745 2024-02-24 13:37:37.745 23400 TIP 437183 15367 6053397 2024-02-24 13:39:12.102 2024-02-24 13:39:12.102 2100 FEE 437168 15488 6053398 2024-02-24 13:39:12.102 2024-02-24 13:39:12.102 18900 TIP 437168 21157 6053415 2024-02-24 13:40:30.939 2024-02-24 13:40:30.939 1300 FEE 437054 18731 6053416 2024-02-24 13:40:30.939 2024-02-24 13:40:30.939 11700 TIP 437054 16406 6053436 2024-02-24 13:41:27.664 2024-02-24 13:41:27.664 1000 FEE 437194 11498 6053439 2024-02-24 13:42:28.275 2024-02-24 13:42:28.275 1000 FEE 437195 16809 6053470 2024-02-24 13:48:50.749 2024-02-24 13:48:50.749 1000 FEE 437200 13133 6053472 2024-02-24 13:49:37.835 2024-02-24 13:49:37.835 1000 FEE 437201 20045 6053485 2024-02-24 13:50:16.02 2024-02-24 13:50:16.02 4000 FEE 437181 20861 6053486 2024-02-24 13:50:16.02 2024-02-24 13:50:16.02 36000 TIP 437181 9695 6053511 2024-02-24 13:52:40.994 2024-02-24 13:52:40.994 1000 FEE 437206 20022 6053538 2024-02-24 13:54:27.691 2024-02-24 13:54:27.691 1000 FEE 437168 5809 6053539 2024-02-24 13:54:27.691 2024-02-24 13:54:27.691 9000 TIP 437168 18225 6053540 2024-02-24 13:54:28.328 2024-02-24 13:54:28.328 1000 FEE 437168 21491 6053541 2024-02-24 13:54:28.328 2024-02-24 13:54:28.328 9000 TIP 437168 21493 6053550 2024-02-24 13:55:20.797 2024-02-24 13:55:20.797 1000 FEE 437092 13903 6053551 2024-02-24 13:55:20.797 2024-02-24 13:55:20.797 9000 TIP 437092 19375 6053557 2024-02-24 13:56:08.223 2024-02-24 13:56:08.223 500 FEE 437073 16660 6053558 2024-02-24 13:56:08.223 2024-02-24 13:56:08.223 4500 TIP 437073 21201 6053559 2024-02-24 13:56:14.643 2024-02-24 13:56:14.643 1000 FEE 437059 11866 6053560 2024-02-24 13:56:14.643 2024-02-24 13:56:14.643 9000 TIP 437059 13798 6053563 2024-02-24 13:56:17.193 2024-02-24 13:56:17.193 500 FEE 437051 16351 6053564 2024-02-24 13:56:17.193 2024-02-24 13:56:17.193 4500 TIP 437051 16753 6053586 2024-02-24 13:59:11.545 2024-02-24 13:59:11.545 200 FEE 437025 2293 6053587 2024-02-24 13:59:11.545 2024-02-24 13:59:11.545 1800 TIP 437025 19888 6053603 2024-02-24 14:00:06.371 2024-02-24 14:00:06.371 1000 FEE 437190 7674 6053604 2024-02-24 14:00:06.371 2024-02-24 14:00:06.371 9000 TIP 437190 17494 6053610 2024-02-24 14:00:12.003 2024-02-24 14:00:12.003 700 FEE 437207 641 6053611 2024-02-24 14:00:12.003 2024-02-24 14:00:12.003 6300 TIP 437207 15978 6053614 2024-02-24 14:00:12.291 2024-02-24 14:00:12.291 700 FEE 437207 650 6053615 2024-02-24 14:00:12.291 2024-02-24 14:00:12.291 6300 TIP 437207 1552 6053617 2024-02-24 14:00:48.581 2024-02-24 14:00:48.581 10000 FEE 437218 11590 6053627 2024-02-24 14:02:00.865 2024-02-24 14:02:00.865 2200 FEE 436029 19572 6053628 2024-02-24 14:02:00.865 2024-02-24 14:02:00.865 19800 TIP 436029 2776 6053653 2024-02-24 14:05:52.034 2024-02-24 14:05:52.034 1000 FEE 436953 21356 6053654 2024-02-24 14:05:52.034 2024-02-24 14:05:52.034 9000 TIP 436953 18494 6053680 2024-02-24 14:08:06.179 2024-02-24 14:08:06.179 1000 FEE 436931 1603 6053681 2024-02-24 14:08:06.179 2024-02-24 14:08:06.179 9000 TIP 436931 2844 6053682 2024-02-24 14:08:09.533 2024-02-24 14:08:09.533 1000 FEE 437229 17365 6053699 2024-02-24 14:08:52.129 2024-02-24 14:08:52.129 1000 FEE 436776 12368 6053700 2024-02-24 14:08:52.129 2024-02-24 14:08:52.129 9000 TIP 436776 20964 6053715 2024-02-24 14:11:05.101 2024-02-24 14:11:05.101 6900 FEE 437222 4633 6053716 2024-02-24 14:11:05.101 2024-02-24 14:11:05.101 62100 TIP 437222 12277 6053748 2024-02-24 14:16:16.888 2024-02-24 14:16:16.888 1000 FEE 437235 14449 6053749 2024-02-24 14:16:24.576 2024-02-24 14:16:24.576 3300 FEE 437233 6393 6053750 2024-02-24 14:16:24.576 2024-02-24 14:16:24.576 29700 TIP 437233 6594 6053761 2024-02-24 14:17:00.281 2024-02-24 14:17:00.281 2700 FEE 436826 17517 6053762 2024-02-24 14:17:00.281 2024-02-24 14:17:00.281 24300 TIP 436826 21247 6053810 2024-02-24 14:21:46.715 2024-02-24 14:21:46.715 1000 FEE 437244 760 6053817 2024-02-24 14:22:05.715 2024-02-24 14:22:05.715 1000 FEE 437246 2519 6053818 2024-02-24 14:22:07.235 2024-02-24 14:22:07.235 5000 FEE 436857 974 6053819 2024-02-24 14:22:07.235 2024-02-24 14:22:07.235 45000 TIP 436857 2519 6053824 2024-02-24 14:22:20.412 2024-02-24 14:22:20.412 1000 FEE 437247 19502 6053855 2024-02-24 14:23:26.029 2024-02-24 14:23:26.029 0 FEE 437238 647 6053878 2024-02-24 14:24:23.016 2024-02-24 14:24:23.016 4000 FEE 437254 6393 6053879 2024-02-24 14:24:23.016 2024-02-24 14:24:23.016 36000 TIP 437254 18690 6053884 2024-02-24 14:24:24.938 2024-02-24 14:24:24.938 100 FEE 436909 19961 6053885 2024-02-24 14:24:24.938 2024-02-24 14:24:24.938 900 TIP 436909 15858 6053888 2024-02-24 14:24:59.472 2024-02-24 14:24:59.472 1000 FEE 420192 1478 6053889 2024-02-24 14:24:59.472 2024-02-24 14:24:59.472 9000 TIP 420192 9695 6053895 2024-02-24 14:25:02.387 2024-02-24 14:25:02.387 100 FEE 437205 19332 6053896 2024-02-24 14:25:02.387 2024-02-24 14:25:02.387 900 TIP 437205 11938 6053900 2024-02-24 14:25:51.042 2024-02-24 14:25:51.042 1000 FEE 437259 20182 6053908 2024-02-24 14:26:30.985 2024-02-24 14:26:30.985 21000 FEE 437257 20564 6053909 2024-02-24 14:26:30.985 2024-02-24 14:26:30.985 189000 TIP 437257 17741 6053928 2024-02-24 14:27:14.259 2024-02-24 14:27:14.259 10000 FEE 437241 7979 6053929 2024-02-24 14:27:14.259 2024-02-24 14:27:14.259 90000 TIP 437241 21344 6053942 2024-02-24 14:28:23.359 2024-02-24 14:28:23.359 1000 FEE 437264 19105 6053949 2024-02-24 14:30:05.349 2024-02-24 14:30:05.349 5000 FEE 436130 5128 6053950 2024-02-24 14:30:05.349 2024-02-24 14:30:05.349 45000 TIP 436130 635 6053954 2024-02-24 14:30:16.07 2024-02-24 14:30:16.07 1000 FEE 437266 656 6053955 2024-02-24 14:30:17.7 2024-02-24 14:30:17.7 5000 FEE 435944 19303 6053956 2024-02-24 14:30:17.7 2024-02-24 14:30:17.7 45000 TIP 435944 2780 6053957 2024-02-24 14:30:18.616 2024-02-24 14:30:18.616 5000 FEE 435944 21491 6053958 2024-02-24 14:30:18.616 2024-02-24 14:30:18.616 45000 TIP 435944 21619 6053959 2024-02-24 14:30:21.926 2024-02-24 14:30:21.926 1000 FEE 437267 827 6053984 2024-02-24 14:36:06.318 2024-02-24 14:36:06.318 0 FEE 437271 9695 6053987 2024-02-24 14:36:17.571 2024-02-24 14:36:17.571 1000 FEE 437275 9026 6053992 2024-02-24 14:36:30.305 2024-02-24 14:36:30.305 1100 FEE 437200 9496 6053993 2024-02-24 14:36:30.305 2024-02-24 14:36:30.305 9900 TIP 437200 1567 6054003 2024-02-24 14:36:50.247 2024-02-24 14:36:50.247 1000 FEE 437218 15226 6054004 2024-02-24 14:36:50.247 2024-02-24 14:36:50.247 9000 TIP 437218 9362 6054005 2024-02-24 14:36:50.444 2024-02-24 14:36:50.444 1000 FEE 437218 18583 6054006 2024-02-24 14:36:50.444 2024-02-24 14:36:50.444 9000 TIP 437218 18583 6054023 2024-02-24 14:36:56.317 2024-02-24 14:36:56.317 1000 FEE 437233 16988 6054024 2024-02-24 14:36:56.317 2024-02-24 14:36:56.317 9000 TIP 437233 899 6054029 2024-02-24 14:36:56.685 2024-02-24 14:36:56.685 1000 FEE 437233 10530 6054030 2024-02-24 14:36:56.685 2024-02-24 14:36:56.685 9000 TIP 437233 642 6054033 2024-02-24 14:36:57.07 2024-02-24 14:36:57.07 1000 FEE 437233 10821 6054034 2024-02-24 14:36:57.07 2024-02-24 14:36:57.07 9000 TIP 437233 12169 6054035 2024-02-24 14:36:57.212 2024-02-24 14:36:57.212 1000 FEE 437233 2757 6054036 2024-02-24 14:36:57.212 2024-02-24 14:36:57.212 9000 TIP 437233 8416 6054041 2024-02-24 14:36:57.529 2024-02-24 14:36:57.529 1000 FEE 437233 1003 6054042 2024-02-24 14:36:57.529 2024-02-24 14:36:57.529 9000 TIP 437233 2431 6054043 2024-02-24 14:36:57.736 2024-02-24 14:36:57.736 1000 FEE 437233 10060 6054044 2024-02-24 14:36:57.736 2024-02-24 14:36:57.736 9000 TIP 437233 6533 6053307 2024-02-24 13:30:03.889 2024-02-24 13:30:03.889 1000 STREAM 141924 5519 6053310 2024-02-24 13:31:01.895 2024-02-24 13:31:01.895 1000 STREAM 141924 15351 6053331 2024-02-24 13:34:03.967 2024-02-24 13:34:03.967 1000 STREAM 141924 836 6053345 2024-02-24 13:36:03.982 2024-02-24 13:36:03.982 1000 STREAM 141924 2576 6053378 2024-02-24 13:38:02.001 2024-02-24 13:38:02.001 1000 STREAM 141924 976 6118089 2024-02-29 19:47:03.792 2024-02-29 19:47:03.792 1000 STREAM 141924 6471 6118092 2024-02-29 19:48:03.782 2024-02-29 19:48:03.782 1000 STREAM 141924 4035 6118094 2024-02-29 19:49:03.79 2024-02-29 19:49:03.79 1000 STREAM 141924 20015 6118100 2024-02-29 19:50:03.823 2024-02-29 19:50:03.823 1000 STREAM 141924 16542 6118130 2024-02-29 19:54:03.834 2024-02-29 19:54:03.834 1000 STREAM 141924 20023 6118157 2024-02-29 19:56:03.864 2024-02-29 19:56:03.864 1000 STREAM 141924 9438 6118165 2024-02-29 19:57:03.862 2024-02-29 19:57:03.862 1000 STREAM 141924 18736 6118185 2024-02-29 19:59:03.863 2024-02-29 19:59:03.863 1000 STREAM 141924 1658 6118273 2024-02-29 20:02:03.901 2024-02-29 20:02:03.901 1000 STREAM 141924 18994 6118303 2024-02-29 20:07:03.958 2024-02-29 20:07:03.958 1000 STREAM 141924 15060 6118309 2024-02-29 20:09:03.98 2024-02-29 20:09:03.98 1000 STREAM 141924 18528 6118314 2024-02-29 20:11:03.998 2024-02-29 20:11:03.998 1000 STREAM 141924 2390 6118330 2024-02-29 20:12:04.005 2024-02-29 20:12:04.005 1000 STREAM 141924 2016 6118337 2024-02-29 20:13:04.007 2024-02-29 20:13:04.007 1000 STREAM 141924 1825 6118342 2024-02-29 20:14:04.003 2024-02-29 20:14:04.003 1000 STREAM 141924 7376 6118350 2024-02-29 20:15:04.018 2024-02-29 20:15:04.018 1000 STREAM 141924 16270 6118432 2024-02-29 20:18:04.038 2024-02-29 20:18:04.038 1000 STREAM 141924 19352 6118437 2024-02-29 20:19:04.04 2024-02-29 20:19:04.04 1000 STREAM 141924 695 6118561 2024-02-29 20:22:04.053 2024-02-29 20:22:04.053 1000 STREAM 141924 3400 6118578 2024-02-29 20:24:04.071 2024-02-29 20:24:04.071 1000 STREAM 141924 21520 6118632 2024-02-29 20:28:04.095 2024-02-29 20:28:04.095 1000 STREAM 141924 16432 6118660 2024-02-29 20:31:04.101 2024-02-29 20:31:04.101 1000 STREAM 141924 8045 6118689 2024-02-29 20:32:04.118 2024-02-29 20:32:04.118 1000 STREAM 141924 19661 6118704 2024-02-29 20:33:04.149 2024-02-29 20:33:04.149 1000 STREAM 141924 20852 6118826 2024-02-29 20:37:04.146 2024-02-29 20:37:04.146 1000 STREAM 141924 18310 6118937 2024-02-29 20:41:04.196 2024-02-29 20:41:04.196 1000 STREAM 141924 20990 6118962 2024-02-29 20:42:04.184 2024-02-29 20:42:04.184 1000 STREAM 141924 20058 6119013 2024-02-29 20:45:04.197 2024-02-29 20:45:04.197 1000 STREAM 141924 9246 6119079 2024-02-29 20:50:04.216 2024-02-29 20:50:04.216 1000 STREAM 141924 827 6119084 2024-02-29 20:51:04.212 2024-02-29 20:51:04.212 1000 STREAM 141924 14990 6119096 2024-02-29 20:52:04.215 2024-02-29 20:52:04.215 1000 STREAM 141924 18717 6119204 2024-02-29 20:58:04.289 2024-02-29 20:58:04.289 1000 STREAM 141924 2431 6119218 2024-02-29 20:59:04.273 2024-02-29 20:59:04.273 1000 STREAM 141924 2711 6119257 2024-02-29 21:02:04.28 2024-02-29 21:02:04.28 1000 STREAM 141924 3518 6119283 2024-02-29 21:03:04.286 2024-02-29 21:03:04.286 1000 STREAM 141924 1105 6119344 2024-02-29 21:06:04.294 2024-02-29 21:06:04.294 1000 STREAM 141924 8459 6119379 2024-02-29 21:09:04.32 2024-02-29 21:09:04.32 1000 STREAM 141924 17727 6119398 2024-02-29 21:11:04.321 2024-02-29 21:11:04.321 1000 STREAM 141924 18836 6119439 2024-02-29 21:12:04.316 2024-02-29 21:12:04.316 1000 STREAM 141924 11075 6119451 2024-02-29 21:16:04.342 2024-02-29 21:16:04.342 1000 STREAM 141924 13987 6119481 2024-02-29 21:19:04.359 2024-02-29 21:19:04.359 1000 STREAM 141924 12049 6119487 2024-02-29 21:20:04.362 2024-02-29 21:20:04.362 1000 STREAM 141924 2000 6119488 2024-02-29 21:21:04.367 2024-02-29 21:21:04.367 1000 STREAM 141924 8045 6119499 2024-02-29 21:22:04.397 2024-02-29 21:22:04.397 1000 STREAM 141924 17526 6119533 2024-02-29 21:28:04.422 2024-02-29 21:28:04.422 1000 STREAM 141924 15510 6119562 2024-02-29 21:33:04.435 2024-02-29 21:33:04.435 1000 STREAM 141924 13398 6119565 2024-02-29 21:34:04.433 2024-02-29 21:34:04.433 1000 STREAM 141924 7185 6119568 2024-02-29 21:35:04.442 2024-02-29 21:35:04.442 1000 STREAM 141924 10668 6119570 2024-02-29 21:36:04.464 2024-02-29 21:36:04.464 1000 STREAM 141924 16387 6119601 2024-02-29 21:39:04.444 2024-02-29 21:39:04.444 1000 STREAM 141924 1244 6119607 2024-02-29 21:40:04.458 2024-02-29 21:40:04.458 1000 STREAM 141924 1576 6119617 2024-02-29 21:41:04.45 2024-02-29 21:41:04.45 1000 STREAM 141924 6741 6119625 2024-02-29 21:42:04.464 2024-02-29 21:42:04.464 1000 STREAM 141924 19581 6119640 2024-02-29 21:43:04.471 2024-02-29 21:43:04.471 1000 STREAM 141924 16954 6119645 2024-02-29 21:44:04.469 2024-02-29 21:44:04.469 1000 STREAM 141924 13204 6119652 2024-02-29 21:45:04.547 2024-02-29 21:45:04.547 1000 STREAM 141924 20871 6119661 2024-02-29 21:48:04.535 2024-02-29 21:48:04.535 1000 STREAM 141924 19961 6119680 2024-02-29 21:52:04.56 2024-02-29 21:52:04.56 1000 STREAM 141924 20220 6119688 2024-02-29 21:54:04.566 2024-02-29 21:54:04.566 1000 STREAM 141924 21522 6119831 2024-02-29 22:17:04.666 2024-02-29 22:17:04.666 1000 STREAM 141924 14545 6119838 2024-02-29 22:18:04.668 2024-02-29 22:18:04.668 1000 STREAM 141924 21619 6119845 2024-02-29 22:19:04.686 2024-02-29 22:19:04.686 1000 STREAM 141924 21371 6119924 2024-02-29 22:27:04.702 2024-02-29 22:27:04.702 1000 STREAM 141924 696 6119942 2024-02-29 22:30:04.705 2024-02-29 22:30:04.705 1000 STREAM 141924 3683 6119981 2024-02-29 22:32:04.703 2024-02-29 22:32:04.703 1000 STREAM 141924 18736 6119982 2024-02-29 22:33:04.71 2024-02-29 22:33:04.71 1000 STREAM 141924 3392 6120010 2024-02-29 22:34:04.722 2024-02-29 22:34:04.722 1000 STREAM 141924 20577 6120017 2024-02-29 22:35:04.726 2024-02-29 22:35:04.726 1000 STREAM 141924 6148 6120024 2024-02-29 22:36:04.729 2024-02-29 22:36:04.729 1000 STREAM 141924 1585 6120079 2024-02-29 22:43:04.753 2024-02-29 22:43:04.753 1000 STREAM 141924 14552 6120089 2024-02-29 22:45:04.769 2024-02-29 22:45:04.769 1000 STREAM 141924 4314 6120112 2024-02-29 22:47:04.782 2024-02-29 22:47:04.782 1000 STREAM 141924 21480 6120357 2024-02-29 23:13:04.996 2024-02-29 23:13:04.996 1000 STREAM 141924 5427 6120370 2024-02-29 23:14:04.999 2024-02-29 23:14:04.999 1000 STREAM 141924 1438 6120383 2024-02-29 23:18:05.038 2024-02-29 23:18:05.038 1000 STREAM 141924 2390 6120385 2024-02-29 23:19:05.054 2024-02-29 23:19:05.054 1000 STREAM 141924 20647 6120395 2024-02-29 23:21:05.046 2024-02-29 23:21:05.046 1000 STREAM 141924 9078 6120397 2024-02-29 23:22:05.045 2024-02-29 23:22:05.045 1000 STREAM 141924 9350 6120404 2024-02-29 23:24:05.06 2024-02-29 23:24:05.06 1000 STREAM 141924 21263 6120406 2024-02-29 23:25:05.057 2024-02-29 23:25:05.057 1000 STREAM 141924 1224 6120409 2024-02-29 23:26:05.06 2024-02-29 23:26:05.06 1000 STREAM 141924 1802 6120413 2024-02-29 23:27:05.072 2024-02-29 23:27:05.072 1000 STREAM 141924 21413 6120424 2024-02-29 23:29:05.074 2024-02-29 23:29:05.074 1000 STREAM 141924 21208 6120427 2024-02-29 23:30:05.083 2024-02-29 23:30:05.083 1000 STREAM 141924 8004 6053326 2024-02-24 13:33:03.705 2024-02-24 13:33:03.705 1000 STREAM 141924 2039 6053354 2024-02-24 13:37:03.708 2024-02-24 13:37:03.708 1000 STREAM 141924 6430 6053463 2024-02-24 13:47:03.962 2024-02-24 13:47:03.962 1000 STREAM 141924 19151 6053466 2024-02-24 13:48:03.969 2024-02-24 13:48:03.969 1000 STREAM 141924 13843 6053471 2024-02-24 13:49:01.971 2024-02-24 13:49:01.971 1000 STREAM 141924 20911 6053547 2024-02-24 13:55:04.552 2024-02-24 13:55:04.552 1000 STREAM 141924 11967 6053554 2024-02-24 13:56:04.545 2024-02-24 13:56:04.545 1000 STREAM 141924 632 6053571 2024-02-24 13:58:04.553 2024-02-24 13:58:04.553 1000 STREAM 141924 18690 6053577 2024-02-24 13:59:04.558 2024-02-24 13:59:04.558 1000 STREAM 141924 2437 6053629 2024-02-24 14:02:04.572 2024-02-24 14:02:04.572 1000 STREAM 141924 6383 6053705 2024-02-24 14:10:01.97 2024-02-24 14:10:01.97 1000 STREAM 141924 1632 6118148 2024-02-29 19:55:16.128 2024-02-29 19:55:16.128 2100 FEE 443962 19639 6118149 2024-02-29 19:55:16.128 2024-02-29 19:55:16.128 18900 TIP 443962 1726 6118151 2024-02-29 19:55:30.782 2024-02-29 19:55:30.782 5700 FEE 444160 12507 6118152 2024-02-29 19:55:30.782 2024-02-29 19:55:30.782 51300 TIP 444160 5057 6118153 2024-02-29 19:55:42.333 2024-02-29 19:55:42.333 2100 FEE 443938 19909 6118154 2024-02-29 19:55:42.333 2024-02-29 19:55:42.333 18900 TIP 443938 19043 6118163 2024-02-29 19:56:42.647 2024-02-29 19:56:42.647 2100 FEE 443912 761 6118164 2024-02-29 19:56:42.647 2024-02-29 19:56:42.647 18900 TIP 443912 21058 6118181 2024-02-29 19:58:48.643 2024-02-29 19:58:48.643 2100 FEE 430490 2293 6118182 2024-02-29 19:58:48.643 2024-02-29 19:58:48.643 18900 TIP 430490 12483 6118214 2024-02-29 20:01:08.136 2024-02-29 20:01:08.136 1700 FEE 444168 15697 6118215 2024-02-29 20:01:08.136 2024-02-29 20:01:08.136 15300 TIP 444168 21451 6118218 2024-02-29 20:01:08.539 2024-02-29 20:01:08.539 1700 FEE 444168 7389 6118219 2024-02-29 20:01:08.539 2024-02-29 20:01:08.539 15300 TIP 444168 699 6118220 2024-02-29 20:01:08.707 2024-02-29 20:01:08.707 1700 FEE 444168 20018 6118221 2024-02-29 20:01:08.707 2024-02-29 20:01:08.707 15300 TIP 444168 977 6118222 2024-02-29 20:01:08.862 2024-02-29 20:01:08.862 1700 FEE 444168 3213 6118223 2024-02-29 20:01:08.862 2024-02-29 20:01:08.862 15300 TIP 444168 12821 6118226 2024-02-29 20:01:09.196 2024-02-29 20:01:09.196 1700 FEE 444168 9 6118227 2024-02-29 20:01:09.196 2024-02-29 20:01:09.196 15300 TIP 444168 17050 6118242 2024-02-29 20:01:11.033 2024-02-29 20:01:11.033 1700 FEE 444168 866 6118243 2024-02-29 20:01:11.033 2024-02-29 20:01:11.033 15300 TIP 444168 6149 6118256 2024-02-29 20:01:13.133 2024-02-29 20:01:13.133 1700 FEE 444168 19296 6118257 2024-02-29 20:01:13.133 2024-02-29 20:01:13.133 15300 TIP 444168 21589 6118262 2024-02-29 20:01:14.115 2024-02-29 20:01:14.115 1700 FEE 444168 1817 6118263 2024-02-29 20:01:14.115 2024-02-29 20:01:14.115 15300 TIP 444168 11621 6118274 2024-02-29 20:02:14.152 2024-02-29 20:02:14.152 0 FEE 444171 807 6118287 2024-02-29 20:04:27.186 2024-02-29 20:04:27.186 21000 FEE 444173 20251 6118291 2024-02-29 20:05:02.236 2024-02-29 20:05:02.236 1000 FEE 444175 18008 6118298 2024-02-29 20:06:07.945 2024-02-29 20:06:07.945 100 FEE 444153 2196 6118299 2024-02-29 20:06:07.945 2024-02-29 20:06:07.945 900 TIP 444153 20980 6118315 2024-02-29 20:11:04.281 2024-02-29 20:11:04.281 2100 FEE 443915 14552 6118316 2024-02-29 20:11:04.281 2024-02-29 20:11:04.281 18900 TIP 443915 21051 6118319 2024-02-29 20:11:09.629 2024-02-29 20:11:09.629 1000 FEE 444179 5978 6118348 2024-02-29 20:14:43.353 2024-02-29 20:14:43.353 1000 FEE 444184 12738 6118358 2024-02-29 20:15:54.538 2024-02-29 20:15:54.538 1000 FEE 444189 2543 6118359 2024-02-29 20:15:55.465 2024-02-29 20:15:55.465 7700 FEE 444186 5661 6118360 2024-02-29 20:15:55.465 2024-02-29 20:15:55.465 69300 TIP 444186 2961 6118419 2024-02-29 20:17:27.059 2024-02-29 20:17:27.059 3300 FEE 444153 14376 6118420 2024-02-29 20:17:27.059 2024-02-29 20:17:27.059 29700 TIP 444153 16212 6118438 2024-02-29 20:19:13.63 2024-02-29 20:19:13.63 1000 FEE 444194 16562 6118470 2024-02-29 20:20:13.747 2024-02-29 20:20:13.747 1000 FEE 444168 18528 6118471 2024-02-29 20:20:13.747 2024-02-29 20:20:13.747 9000 TIP 444168 12768 6118483 2024-02-29 20:20:17.744 2024-02-29 20:20:17.744 1000 FEE 444168 2674 6118484 2024-02-29 20:20:17.744 2024-02-29 20:20:17.744 9000 TIP 444168 21214 6118503 2024-02-29 20:20:25.217 2024-02-29 20:20:25.217 1000 FEE 444156 836 6118504 2024-02-29 20:20:25.217 2024-02-29 20:20:25.217 9000 TIP 444156 5359 6118507 2024-02-29 20:20:30.663 2024-02-29 20:20:30.663 2100 FEE 444168 699 6118508 2024-02-29 20:20:30.663 2024-02-29 20:20:30.663 18900 TIP 444168 1173 6118536 2024-02-29 20:21:02.755 2024-02-29 20:21:02.755 2000 FEE 444161 6382 6118537 2024-02-29 20:21:02.755 2024-02-29 20:21:02.755 18000 TIP 444161 21379 6118543 2024-02-29 20:21:08.333 2024-02-29 20:21:08.333 500 FEE 444122 17415 6118544 2024-02-29 20:21:08.333 2024-02-29 20:21:08.333 4500 TIP 444122 2013 6118547 2024-02-29 20:21:43.62 2024-02-29 20:21:43.62 1000 FEE 444150 642 6118548 2024-02-29 20:21:43.62 2024-02-29 20:21:43.62 9000 TIP 444150 9796 6118573 2024-02-29 20:23:33.687 2024-02-29 20:23:33.687 1000 FEE 444206 16660 6118589 2024-02-29 20:25:42.556 2024-02-29 20:25:42.556 1700 FEE 444200 4238 6118590 2024-02-29 20:25:42.556 2024-02-29 20:25:42.556 15300 TIP 444200 618 6118619 2024-02-29 20:27:40.518 2024-02-29 20:27:40.518 0 FEE 444206 14080 6118636 2024-02-29 20:28:26.359 2024-02-29 20:28:26.359 2600 FEE 443925 17984 6118637 2024-02-29 20:28:26.359 2024-02-29 20:28:26.359 23400 TIP 443925 11328 6118645 2024-02-29 20:29:03.802 2024-02-29 20:29:03.802 500 FEE 444061 965 6118646 2024-02-29 20:29:03.802 2024-02-29 20:29:03.802 4500 TIP 444061 6430 6118707 2024-02-29 20:33:06.48 2024-02-29 20:33:06.48 1000 FEE 444187 19546 6118708 2024-02-29 20:33:06.48 2024-02-29 20:33:06.48 9000 TIP 444187 18641 6118709 2024-02-29 20:33:14.362 2024-02-29 20:33:14.362 1000 FEE 444203 761 6118710 2024-02-29 20:33:14.362 2024-02-29 20:33:14.362 9000 TIP 444203 660 6118728 2024-02-29 20:33:51.188 2024-02-29 20:33:51.188 100 FEE 444149 21406 6118729 2024-02-29 20:33:51.188 2024-02-29 20:33:51.188 900 TIP 444149 9758 6053359 2024-02-24 13:37:36.181 2024-02-24 13:37:36.181 1300 FEE 437183 20546 6053360 2024-02-24 13:37:36.181 2024-02-24 13:37:36.181 11700 TIP 437183 9362 6053361 2024-02-24 13:37:36.635 2024-02-24 13:37:36.635 1300 FEE 437183 19857 6053362 2024-02-24 13:37:36.635 2024-02-24 13:37:36.635 11700 TIP 437183 1552 6053363 2024-02-24 13:37:36.921 2024-02-24 13:37:36.921 1300 FEE 437183 2309 6053364 2024-02-24 13:37:36.921 2024-02-24 13:37:36.921 11700 TIP 437183 19506 6053376 2024-02-24 13:37:49.094 2024-02-24 13:37:49.094 1000 FEE 437189 21233 6053408 2024-02-24 13:40:26.383 2024-02-24 13:40:26.383 1000 FEE 437192 1483 6053434 2024-02-24 13:41:18.374 2024-02-24 13:41:18.374 4000 FEE 437181 8544 6053435 2024-02-24 13:41:18.374 2024-02-24 13:41:18.374 36000 TIP 437181 11938 6053446 2024-02-24 13:44:05.871 2024-02-24 13:44:05.871 2100 FEE 436593 1626 6053447 2024-02-24 13:44:05.871 2024-02-24 13:44:05.871 18900 TIP 436593 16387 6053457 2024-02-24 13:46:49.732 2024-02-24 13:46:49.732 6900 FEE 437197 718 6053458 2024-02-24 13:46:49.732 2024-02-24 13:46:49.732 62100 TIP 437197 11821 6053461 2024-02-24 13:46:54.445 2024-02-24 13:46:54.445 12800 FEE 437158 10352 6053462 2024-02-24 13:46:54.445 2024-02-24 13:46:54.445 115200 TIP 437158 18241 6053474 2024-02-24 13:49:53.778 2024-02-24 13:49:53.778 2100 FEE 436683 12291 6053475 2024-02-24 13:49:53.778 2024-02-24 13:49:53.778 18900 TIP 436683 21562 6053504 2024-02-24 13:51:55.958 2024-02-24 13:51:55.958 2100 FEE 436863 15351 6053505 2024-02-24 13:51:55.958 2024-02-24 13:51:55.958 18900 TIP 436863 20208 6053512 2024-02-24 13:52:45.504 2024-02-24 13:52:45.504 10000 FEE 437203 21521 6053513 2024-02-24 13:52:45.504 2024-02-24 13:52:45.504 90000 TIP 437203 11527 6053526 2024-02-24 13:54:24.809 2024-02-24 13:54:24.809 1000 FEE 437168 1741 6053527 2024-02-24 13:54:24.809 2024-02-24 13:54:24.809 9000 TIP 437168 21140 6053545 2024-02-24 13:54:50.054 2024-02-24 13:54:50.054 2100 FEE 437185 18601 6053546 2024-02-24 13:54:50.054 2024-02-24 13:54:50.054 18900 TIP 437185 19826 6053578 2024-02-24 13:59:05.019 2024-02-24 13:59:05.019 200 FEE 437170 3518 6053579 2024-02-24 13:59:05.019 2024-02-24 13:59:05.019 1800 TIP 437170 13204 6053597 2024-02-24 13:59:53.914 2024-02-24 13:59:53.914 2100 FEE 437176 20657 6053598 2024-02-24 13:59:53.914 2024-02-24 13:59:53.914 18900 TIP 437176 18280 6053599 2024-02-24 13:59:54.274 2024-02-24 13:59:54.274 1000 FEE 437214 18919 6053605 2024-02-24 14:00:07.278 2024-02-24 14:00:07.278 1000 FEE 437181 21585 6053606 2024-02-24 14:00:07.278 2024-02-24 14:00:07.278 9000 TIP 437181 11328 6053624 2024-02-24 14:01:50.536 2024-02-24 14:01:50.536 500 FEE 437143 9517 6053625 2024-02-24 14:01:50.536 2024-02-24 14:01:50.536 4500 TIP 437143 736 6053656 2024-02-24 14:06:05.649 2024-02-24 14:06:05.649 1000 FEE 437219 20551 6053657 2024-02-24 14:06:05.649 2024-02-24 14:06:05.649 9000 TIP 437219 21070 6053677 2024-02-24 14:07:38.846 2024-02-24 14:07:38.846 2100 FEE 437218 9342 6053678 2024-02-24 14:07:38.846 2024-02-24 14:07:38.846 18900 TIP 437218 20717 6118238 2024-02-29 20:01:10.242 2024-02-29 20:01:10.242 1700 FEE 444168 7916 6118239 2024-02-29 20:01:10.242 2024-02-29 20:01:10.242 15300 TIP 444168 2088 6118258 2024-02-29 20:01:13.306 2024-02-29 20:01:13.306 1700 FEE 444168 18403 6118259 2024-02-29 20:01:13.306 2024-02-29 20:01:13.306 15300 TIP 444168 12768 6118284 2024-02-29 20:04:03.477 2024-02-29 20:04:03.477 2100 FEE 444169 8095 6118285 2024-02-29 20:04:03.477 2024-02-29 20:04:03.477 18900 TIP 444169 20539 6118302 2024-02-29 20:06:12.738 2024-02-29 20:06:12.738 1000 FEE 444176 21527 6118304 2024-02-29 20:07:47.213 2024-02-29 20:07:47.213 0 FEE 444176 21522 6118322 2024-02-29 20:11:15.109 2024-02-29 20:11:15.109 2100 FEE 444015 12976 6118323 2024-02-29 20:11:15.109 2024-02-29 20:11:15.109 18900 TIP 444015 18731 6118328 2024-02-29 20:11:23.047 2024-02-29 20:11:23.047 2100 FEE 443951 1162 6118329 2024-02-29 20:11:23.047 2024-02-29 20:11:23.047 18900 TIP 443951 12169 6118345 2024-02-29 20:14:17.953 2024-02-29 20:14:17.953 1000 FEE 444183 1326 6118346 2024-02-29 20:14:26.411 2024-02-29 20:14:26.411 1600 FEE 444063 12566 6118347 2024-02-29 20:14:26.411 2024-02-29 20:14:26.411 14400 TIP 444063 20108 6118381 2024-02-29 20:16:02.075 2024-02-29 20:16:02.075 1000 FEE 443655 6136 6053395 2024-02-24 13:39:03.705 2024-02-24 13:39:03.705 1000 STREAM 141924 17166 6053407 2024-02-24 13:40:03.721 2024-02-24 13:40:03.721 1000 STREAM 141924 10818 6053433 2024-02-24 13:41:03.719 2024-02-24 13:41:03.719 1000 STREAM 141924 21387 6053437 2024-02-24 13:42:03.738 2024-02-24 13:42:03.738 1000 STREAM 141924 20430 6053445 2024-02-24 13:44:03.934 2024-02-24 13:44:03.934 1000 STREAM 141924 2508 6053450 2024-02-24 13:45:03.939 2024-02-24 13:45:03.939 1000 STREAM 141924 15762 6053453 2024-02-24 13:46:01.94 2024-02-24 13:46:01.94 1000 STREAM 141924 1836 6053490 2024-02-24 13:51:02.028 2024-02-24 13:51:02.028 1000 STREAM 141924 13753 6053514 2024-02-24 13:53:04.443 2024-02-24 13:53:04.443 1000 STREAM 141924 19289 6053520 2024-02-24 13:54:04.547 2024-02-24 13:54:04.547 1000 STREAM 141924 17798 6053570 2024-02-24 13:57:04.547 2024-02-24 13:57:04.547 1000 STREAM 141924 20152 6053600 2024-02-24 14:00:04.561 2024-02-24 14:00:04.561 1000 STREAM 141924 8505 6053620 2024-02-24 14:01:04.569 2024-02-24 14:01:04.569 1000 STREAM 141924 15762 6053632 2024-02-24 14:03:04.575 2024-02-24 14:03:04.575 1000 STREAM 141924 12976 6118340 2024-02-29 20:13:41.324 2024-02-29 20:13:41.324 0 FEE 444182 19501 6118373 2024-02-29 20:16:01.309 2024-02-29 20:16:01.309 1000 FEE 443655 20606 6118374 2024-02-29 20:16:01.309 2024-02-29 20:16:01.309 9000 TIP 443655 12346 6118399 2024-02-29 20:16:04.019 2024-02-29 20:16:04.019 1000 FEE 443655 1814 6118400 2024-02-29 20:16:04.019 2024-02-29 20:16:04.019 9000 TIP 443655 20756 6118402 2024-02-29 20:16:04.446 2024-02-29 20:16:04.446 1000 FEE 443655 6360 6118403 2024-02-29 20:16:04.446 2024-02-29 20:16:04.446 9000 TIP 443655 18941 6118409 2024-02-29 20:17:18.756 2024-02-29 20:17:18.756 1700 FEE 444191 7395 6118410 2024-02-29 20:17:18.756 2024-02-29 20:17:18.756 15300 TIP 444191 7425 6118411 2024-02-29 20:17:18.93 2024-02-29 20:17:18.93 1700 FEE 444191 15159 6118412 2024-02-29 20:17:18.93 2024-02-29 20:17:18.93 15300 TIP 444191 20912 6118415 2024-02-29 20:17:20.16 2024-02-29 20:17:20.16 1700 FEE 444191 16679 6118416 2024-02-29 20:17:20.16 2024-02-29 20:17:20.16 15300 TIP 444191 19569 6118430 2024-02-29 20:17:57.29 2024-02-29 20:17:57.29 100 FEE 444173 9109 6118431 2024-02-29 20:17:57.29 2024-02-29 20:17:57.29 900 TIP 444173 15697 6118441 2024-02-29 20:19:33.787 2024-02-29 20:19:33.787 7700 FEE 444194 20257 6118442 2024-02-29 20:19:33.787 2024-02-29 20:19:33.787 69300 TIP 444194 5829 6118443 2024-02-29 20:19:34.439 2024-02-29 20:19:34.439 7700 FEE 444194 20854 6118444 2024-02-29 20:19:34.439 2024-02-29 20:19:34.439 69300 TIP 444194 836 6118449 2024-02-29 20:19:35.948 2024-02-29 20:19:35.948 700 FEE 443803 9159 6118450 2024-02-29 20:19:35.948 2024-02-29 20:19:35.948 6300 TIP 443803 21314 6118456 2024-02-29 20:20:04.065 2024-02-29 20:20:04.065 1000 FEE 73097 9920 6118457 2024-02-29 20:20:04.065 2024-02-29 20:20:04.065 9000 TIP 73097 5806 6118472 2024-02-29 20:20:14.224 2024-02-29 20:20:14.224 1000 FEE 444168 19878 6118473 2024-02-29 20:20:14.224 2024-02-29 20:20:14.224 9000 TIP 444168 925 6118479 2024-02-29 20:20:16.996 2024-02-29 20:20:16.996 1000 FEE 444168 2203 6118480 2024-02-29 20:20:16.996 2024-02-29 20:20:16.996 9000 TIP 444168 7659 6118487 2024-02-29 20:20:21.917 2024-02-29 20:20:21.917 1000 FEE 444156 10693 6118488 2024-02-29 20:20:21.917 2024-02-29 20:20:21.917 9000 TIP 444156 14202 6118509 2024-02-29 20:20:33.99 2024-02-29 20:20:33.99 2100 FEE 444078 6191 6118510 2024-02-29 20:20:33.99 2024-02-29 20:20:33.99 18900 TIP 444078 9307 6118541 2024-02-29 20:21:04.416 2024-02-29 20:21:04.416 1000 FEE 444161 15271 6118542 2024-02-29 20:21:04.416 2024-02-29 20:21:04.416 9000 TIP 444161 18829 6118549 2024-02-29 20:21:43.85 2024-02-29 20:21:43.85 1000 FEE 444150 17535 6118550 2024-02-29 20:21:43.85 2024-02-29 20:21:43.85 9000 TIP 444150 6136 6118563 2024-02-29 20:22:32.733 2024-02-29 20:22:32.733 1000 FEE 444205 19890 6118568 2024-02-29 20:23:03.054 2024-02-29 20:23:03.054 10000 FEE 444194 21612 6118569 2024-02-29 20:23:03.054 2024-02-29 20:23:03.054 90000 TIP 444194 17827 6118601 2024-02-29 20:26:19.9 2024-02-29 20:26:19.9 3100 FEE 444168 15858 6118602 2024-02-29 20:26:19.9 2024-02-29 20:26:19.9 27900 TIP 444168 679 6118620 2024-02-29 20:27:47.681 2024-02-29 20:27:47.681 1000 FEE 444215 4259 6118621 2024-02-29 20:27:47.681 2024-02-29 20:27:47.681 9000 TIP 444215 692 6118642 2024-02-29 20:28:49.561 2024-02-29 20:28:49.561 0 FEE 444206 634 6053430 2024-02-24 13:40:33.656 2024-02-24 13:40:33.656 11700 TIP 437054 2039 6053448 2024-02-24 13:44:42.66 2024-02-24 13:44:42.66 3200 FEE 422978 9183 6053449 2024-02-24 13:44:42.66 2024-02-24 13:44:42.66 28800 TIP 422978 19907 6053454 2024-02-24 13:46:05.166 2024-02-24 13:46:05.166 1000 FEE 437198 20062 6053455 2024-02-24 13:46:49.584 2024-02-24 13:46:49.584 6900 FEE 437197 18178 6053456 2024-02-24 13:46:49.584 2024-02-24 13:46:49.584 62100 TIP 437197 16965 6053480 2024-02-24 13:50:01.273 2024-02-24 13:50:01.273 10000 FEE 436752 17984 6053481 2024-02-24 13:50:01.273 2024-02-24 13:50:01.273 90000 TIP 436752 19126 6053498 2024-02-24 13:51:50.335 2024-02-24 13:51:50.335 10000 FEE 437204 9820 6053499 2024-02-24 13:51:50.335 2024-02-24 13:51:50.335 90000 TIP 437204 15488 6053510 2024-02-24 13:52:19.347 2024-02-24 13:52:19.347 1000 FEE 437205 16950 6053524 2024-02-24 13:54:24.261 2024-02-24 13:54:24.261 1000 FEE 437168 20108 6053525 2024-02-24 13:54:24.261 2024-02-24 13:54:24.261 9000 TIP 437168 5703 6053573 2024-02-24 13:58:28.741 2024-02-24 13:58:28.741 0 FEE 437211 16747 6053580 2024-02-24 13:59:05.841 2024-02-24 13:59:05.841 200 FEE 437110 997 6053581 2024-02-24 13:59:05.841 2024-02-24 13:59:05.841 1800 TIP 437110 8133 6053591 2024-02-24 13:59:29.098 2024-02-24 13:59:29.098 1000 FEE 437197 18909 6053592 2024-02-24 13:59:29.098 2024-02-24 13:59:29.098 9000 TIP 437197 20436 6053623 2024-02-24 14:01:47.376 2024-02-24 14:01:47.376 1000 FEE 437220 12356 6053662 2024-02-24 14:06:56.852 2024-02-24 14:06:56.852 2100 FEE 437181 8004 6053663 2024-02-24 14:06:56.852 2024-02-24 14:06:56.852 18900 TIP 437181 1737 6053685 2024-02-24 14:08:21.683 2024-02-24 14:08:21.683 2100 FEE 437190 8287 6053686 2024-02-24 14:08:21.683 2024-02-24 14:08:21.683 18900 TIP 437190 2056 6053691 2024-02-24 14:08:33.804 2024-02-24 14:08:33.804 1000 FEE 437230 6526 6053692 2024-02-24 14:08:35.673 2024-02-24 14:08:35.673 2100 FEE 437072 726 6053693 2024-02-24 14:08:35.673 2024-02-24 14:08:35.673 18900 TIP 437072 2309 6053707 2024-02-24 14:10:21.762 2024-02-24 14:10:21.762 2200 FEE 437228 18528 6053708 2024-02-24 14:10:21.762 2024-02-24 14:10:21.762 19800 TIP 437228 722 6053709 2024-02-24 14:10:37.768 2024-02-24 14:10:37.768 13800 FEE 437210 1401 6053710 2024-02-24 14:10:37.768 2024-02-24 14:10:37.768 124200 TIP 437210 18533 6053722 2024-02-24 14:11:07.561 2024-02-24 14:11:07.561 0 FEE 437229 18629 6053725 2024-02-24 14:12:04.305 2024-02-24 14:12:04.305 69000 FEE 437232 657 6053731 2024-02-24 14:13:44.011 2024-02-24 14:13:44.011 2100 FEE 437211 8472 6053732 2024-02-24 14:13:44.011 2024-02-24 14:13:44.011 18900 TIP 437211 17602 6053755 2024-02-24 14:16:53.186 2024-02-24 14:16:53.186 300 FEE 437053 20327 6053756 2024-02-24 14:16:53.186 2024-02-24 14:16:53.186 2700 TIP 437053 13527 6053765 2024-02-24 14:17:00.658 2024-02-24 14:17:00.658 2700 FEE 436826 2829 6053766 2024-02-24 14:17:00.658 2024-02-24 14:17:00.658 24300 TIP 436826 2233 6053768 2024-02-24 14:17:10.179 2024-02-24 14:17:10.179 1000 FEE 437233 20849 6053769 2024-02-24 14:17:10.179 2024-02-24 14:17:10.179 9000 TIP 437233 19471 6053788 2024-02-24 14:18:47.082 2024-02-24 14:18:47.082 2700 FEE 436752 9337 6053789 2024-02-24 14:18:47.082 2024-02-24 14:18:47.082 24300 TIP 436752 4173 6053829 2024-02-24 14:22:28.935 2024-02-24 14:22:28.935 100 FEE 436226 18714 6053830 2024-02-24 14:22:28.935 2024-02-24 14:22:28.935 900 TIP 436226 1801 6053832 2024-02-24 14:22:46.383 2024-02-24 14:22:46.383 1000 FEE 437249 9366 6053846 2024-02-24 14:23:19.308 2024-02-24 14:23:19.308 100 FEE 437238 14465 6053847 2024-02-24 14:23:19.308 2024-02-24 14:23:19.308 900 TIP 437238 14168 6053858 2024-02-24 14:23:39.904 2024-02-24 14:23:39.904 1000 FEE 437252 21520 6053866 2024-02-24 14:24:05.272 2024-02-24 14:24:05.272 10000 FEE 437253 1618 6053870 2024-02-24 14:24:11.432 2024-02-24 14:24:11.432 1000 FEE 437254 20424 6053901 2024-02-24 14:25:52.449 2024-02-24 14:25:52.449 33300 FEE 437231 21498 6053902 2024-02-24 14:25:52.449 2024-02-24 14:25:52.449 299700 TIP 437231 1208 6053910 2024-02-24 14:26:31.794 2024-02-24 14:26:31.794 12800 FEE 437043 19189 6053911 2024-02-24 14:26:31.794 2024-02-24 14:26:31.794 115200 TIP 437043 5499 6053994 2024-02-24 14:36:37.134 2024-02-24 14:36:37.134 1000 FEE 437262 2029 6053995 2024-02-24 14:36:37.134 2024-02-24 14:36:37.134 9000 TIP 437262 19199 6053996 2024-02-24 14:36:45.068 2024-02-24 14:36:45.068 10000 FEE 437276 5758 6053997 2024-02-24 14:36:49.663 2024-02-24 14:36:49.663 1000 FEE 437218 10398 6053998 2024-02-24 14:36:49.663 2024-02-24 14:36:49.663 9000 TIP 437218 2681 6053999 2024-02-24 14:36:49.861 2024-02-24 14:36:49.861 1000 FEE 437218 19235 6054000 2024-02-24 14:36:49.861 2024-02-24 14:36:49.861 9000 TIP 437218 16424 6054013 2024-02-24 14:36:51.836 2024-02-24 14:36:51.836 1000 FEE 437218 12169 6054014 2024-02-24 14:36:51.836 2024-02-24 14:36:51.836 9000 TIP 437218 19839 6054021 2024-02-24 14:36:56.147 2024-02-24 14:36:56.147 1000 FEE 437233 13246 6054022 2024-02-24 14:36:56.147 2024-02-24 14:36:56.147 9000 TIP 437233 4084 6054060 2024-02-24 14:37:12.364 2024-02-24 14:37:12.364 2100 FEE 437276 854 6054061 2024-02-24 14:37:12.364 2024-02-24 14:37:12.364 18900 TIP 437276 5017 6054066 2024-02-24 14:37:57.813 2024-02-24 14:37:57.813 2700 FEE 437190 8954 6054067 2024-02-24 14:37:57.813 2024-02-24 14:37:57.813 24300 TIP 437190 5085 6054093 2024-02-24 14:40:02.473 2024-02-24 14:40:02.473 1000 FEE 437280 13217 6054108 2024-02-24 14:40:51.941 2024-02-24 14:40:51.941 1000 FEE 437087 21040 6054109 2024-02-24 14:40:51.941 2024-02-24 14:40:51.941 9000 TIP 437087 19375 6054118 2024-02-24 14:41:17.738 2024-02-24 14:41:17.738 10000 FEE 437283 2213 6054121 2024-02-24 14:41:47.584 2024-02-24 14:41:47.584 700 FEE 437274 20299 6054122 2024-02-24 14:41:47.584 2024-02-24 14:41:47.584 6300 TIP 437274 1490 6054130 2024-02-24 14:41:52.122 2024-02-24 14:41:52.122 2100 FEE 437282 17147 6054131 2024-02-24 14:41:52.122 2024-02-24 14:41:52.122 18900 TIP 437282 12220 6054137 2024-02-24 14:42:09.397 2024-02-24 14:42:09.397 4000 FEE 437280 1845 6054138 2024-02-24 14:42:09.397 2024-02-24 14:42:09.397 36000 TIP 437280 18359 6054204 2024-02-24 14:47:13.363 2024-02-24 14:47:13.363 7700 FEE 437279 9349 6054205 2024-02-24 14:47:13.363 2024-02-24 14:47:13.363 69300 TIP 437279 636 6054206 2024-02-24 14:47:35.285 2024-02-24 14:47:35.285 10000 FEE 437299 954 6054209 2024-02-24 14:47:55.378 2024-02-24 14:47:55.378 1000 FEE 437300 16406 6054236 2024-02-24 14:48:28.269 2024-02-24 14:48:28.269 1000 FEE 437303 9705 6053482 2024-02-24 13:50:03.842 2024-02-24 13:50:03.842 1000 STREAM 141924 20267 6118370 2024-02-29 20:16:00.866 2024-02-29 20:16:00.866 9000 TIP 443655 9482 6118385 2024-02-29 20:16:02.5 2024-02-29 20:16:02.5 1000 FEE 443655 2528 6118386 2024-02-29 20:16:02.5 2024-02-29 20:16:02.5 9000 TIP 443655 2206 6118445 2024-02-29 20:19:35.578 2024-02-29 20:19:35.578 700 FEE 443803 15544 6118446 2024-02-29 20:19:35.578 2024-02-29 20:19:35.578 6300 TIP 443803 20436 6118474 2024-02-29 20:20:16.399 2024-02-29 20:20:16.399 1000 FEE 444168 18630 6118475 2024-02-29 20:20:16.399 2024-02-29 20:20:16.399 9000 TIP 444168 21026 6118485 2024-02-29 20:20:21.239 2024-02-29 20:20:21.239 1000 FEE 444156 9261 6118486 2024-02-29 20:20:21.239 2024-02-29 20:20:21.239 9000 TIP 444156 20858 6118534 2024-02-29 20:21:01.892 2024-02-29 20:21:01.892 1000 FEE 444161 649 6118535 2024-02-29 20:21:01.892 2024-02-29 20:21:01.892 9000 TIP 444161 16912 6118545 2024-02-29 20:21:27.805 2024-02-29 20:21:27.805 1000 FEE 444200 15160 6118551 2024-02-29 20:21:44.418 2024-02-29 20:21:44.418 1000 FEE 444150 6616 6118552 2024-02-29 20:21:44.418 2024-02-29 20:21:44.418 9000 TIP 444150 16301 6118557 2024-02-29 20:21:49.574 2024-02-29 20:21:49.574 1000 FEE 444187 17944 6118558 2024-02-29 20:21:49.574 2024-02-29 20:21:49.574 9000 TIP 444187 17291 6118576 2024-02-29 20:23:56.842 2024-02-29 20:23:56.842 1000 FEE 444179 16754 6118577 2024-02-29 20:23:56.842 2024-02-29 20:23:56.842 9000 TIP 444179 696 6118579 2024-02-29 20:24:32.72 2024-02-29 20:24:32.72 1000 FEE 444208 17321 6118585 2024-02-29 20:25:29.465 2024-02-29 20:25:29.465 3100 FEE 444207 708 6118586 2024-02-29 20:25:29.465 2024-02-29 20:25:29.465 27900 TIP 444207 8945 6118622 2024-02-29 20:27:50.523 2024-02-29 20:27:50.523 500 FEE 444138 2674 6118623 2024-02-29 20:27:50.523 2024-02-29 20:27:50.523 4500 TIP 444138 803 6118624 2024-02-29 20:27:50.855 2024-02-29 20:27:50.855 500 FEE 444138 19930 6118625 2024-02-29 20:27:50.855 2024-02-29 20:27:50.855 4500 TIP 444138 19044 6118638 2024-02-29 20:28:37.428 2024-02-29 20:28:37.428 1000 FEE 444218 20594 6118656 2024-02-29 20:30:57.782 2024-02-29 20:30:57.782 7700 FEE 444220 9099 6118657 2024-02-29 20:30:57.782 2024-02-29 20:30:57.782 69300 TIP 444220 6555 6118661 2024-02-29 20:31:34.843 2024-02-29 20:31:34.843 0 FEE 444221 12921 6118662 2024-02-29 20:31:36.497 2024-02-29 20:31:36.497 1000 FEE 444222 19888 6118667 2024-02-29 20:31:38.748 2024-02-29 20:31:38.748 2500 FEE 443372 17201 6118668 2024-02-29 20:31:38.748 2024-02-29 20:31:38.748 22500 TIP 443372 13927 6118677 2024-02-29 20:31:41.353 2024-02-29 20:31:41.353 0 FEE 444219 13177 6118696 2024-02-29 20:32:28.268 2024-02-29 20:32:28.268 0 FEE 444221 20642 6118697 2024-02-29 20:32:44.538 2024-02-29 20:32:44.538 0 FEE 444224 21271 6118735 2024-02-29 20:34:06.622 2024-02-29 20:34:06.622 100 FEE 444114 2460 6118736 2024-02-29 20:34:06.622 2024-02-29 20:34:06.622 900 TIP 444114 17184 6118741 2024-02-29 20:34:14.342 2024-02-29 20:34:14.342 50000 FEE 444192 21463 6118742 2024-02-29 20:34:14.342 2024-02-29 20:34:14.342 450000 TIP 444192 15094 6118751 2024-02-29 20:34:24.136 2024-02-29 20:34:24.136 900 FEE 444221 11648 6118752 2024-02-29 20:34:24.136 2024-02-29 20:34:24.136 8100 TIP 444221 15367 6118763 2024-02-29 20:34:28.263 2024-02-29 20:34:28.263 1000 FEE 444185 4118 6118764 2024-02-29 20:34:28.263 2024-02-29 20:34:28.263 9000 TIP 444185 2596 6118774 2024-02-29 20:34:44.155 2024-02-29 20:34:44.155 1000 FEE 444211 18836 6118775 2024-02-29 20:34:44.155 2024-02-29 20:34:44.155 9000 TIP 444211 20562 6118805 2024-02-29 20:35:14.082 2024-02-29 20:35:14.082 1000 FEE 444190 16178 6118806 2024-02-29 20:35:14.082 2024-02-29 20:35:14.082 9000 TIP 444190 20424 6118827 2024-02-29 20:37:12.426 2024-02-29 20:37:12.426 1000 FEE 444235 20972 6118837 2024-02-29 20:38:30.879 2024-02-29 20:38:30.879 1000 FEE 444148 19352 6118838 2024-02-29 20:38:30.879 2024-02-29 20:38:30.879 9000 TIP 444148 986 6118839 2024-02-29 20:38:44.59 2024-02-29 20:38:44.59 1000 FEE 444129 17011 6118840 2024-02-29 20:38:44.59 2024-02-29 20:38:44.59 9000 TIP 444129 17797 6118857 2024-02-29 20:38:56.277 2024-02-29 20:38:56.277 7700 FEE 444173 1628 6118858 2024-02-29 20:38:56.277 2024-02-29 20:38:56.277 69300 TIP 444173 9844 6118879 2024-02-29 20:39:14.709 2024-02-29 20:39:14.709 2300 FEE 444173 3686 6118880 2024-02-29 20:39:14.709 2024-02-29 20:39:14.709 20700 TIP 444173 759 6118890 2024-02-29 20:39:36.308 2024-02-29 20:39:36.308 7700 FEE 444173 17103 6118891 2024-02-29 20:39:36.308 2024-02-29 20:39:36.308 69300 TIP 444173 20775 6118904 2024-02-29 20:39:37.688 2024-02-29 20:39:37.688 7700 FEE 444173 7773 6118905 2024-02-29 20:39:37.688 2024-02-29 20:39:37.688 69300 TIP 444173 1985 6118908 2024-02-29 20:39:37.981 2024-02-29 20:39:37.981 7700 FEE 444173 9796 6118909 2024-02-29 20:39:37.981 2024-02-29 20:39:37.981 69300 TIP 444173 18678 6118910 2024-02-29 20:39:37.99 2024-02-29 20:39:37.99 7700 FEE 444173 11760 6118911 2024-02-29 20:39:37.99 2024-02-29 20:39:37.99 69300 TIP 444173 10493 6118920 2024-02-29 20:39:57.962 2024-02-29 20:39:57.962 1000 FEE 444239 14385 6118925 2024-02-29 20:40:01.236 2024-02-29 20:40:01.236 100 FEE 442997 20036 6118926 2024-02-29 20:40:01.236 2024-02-29 20:40:01.236 900 TIP 442997 12289 6118933 2024-02-29 20:40:52.052 2024-02-29 20:40:52.052 1000 FEE 444148 12289 6118934 2024-02-29 20:40:52.052 2024-02-29 20:40:52.052 9000 TIP 444148 5852 6118948 2024-02-29 20:41:35.562 2024-02-29 20:41:35.562 1000 POLL 444078 663 6118955 2024-02-29 20:41:55.092 2024-02-29 20:41:55.092 2100 FEE 444102 20655 6118956 2024-02-29 20:41:55.092 2024-02-29 20:41:55.092 18900 TIP 444102 16680 6118964 2024-02-29 20:42:13.6 2024-02-29 20:42:13.6 1000 FEE 444237 17217 6118965 2024-02-29 20:42:13.6 2024-02-29 20:42:13.6 9000 TIP 444237 631 6118967 2024-02-29 20:42:29.646 2024-02-29 20:42:29.646 200 FEE 444165 20137 6118968 2024-02-29 20:42:29.646 2024-02-29 20:42:29.646 1800 TIP 444165 5425 6053507 2024-02-24 13:52:05.834 2024-02-24 13:52:05.834 1000 STREAM 141924 1465 6053767 2024-02-24 14:17:02.023 2024-02-24 14:17:02.023 1000 STREAM 141924 9290 6053794 2024-02-24 14:19:02.028 2024-02-24 14:19:02.028 1000 STREAM 141924 9335 6053962 2024-02-24 14:31:02.097 2024-02-24 14:31:02.097 1000 STREAM 141924 20756 6053966 2024-02-24 14:33:02.116 2024-02-24 14:33:02.116 1000 STREAM 141924 20084 6053980 2024-02-24 14:35:02.113 2024-02-24 14:35:02.113 1000 STREAM 141924 20094 6054059 2024-02-24 14:37:02.209 2024-02-24 14:37:02.209 1000 STREAM 141924 1495 6054078 2024-02-24 14:39:02.141 2024-02-24 14:39:02.141 1000 STREAM 141924 16145 6054151 2024-02-24 14:43:02.158 2024-02-24 14:43:02.158 1000 STREAM 141924 11873 6118382 2024-02-29 20:16:02.075 2024-02-29 20:16:02.075 9000 TIP 443655 9874 6118383 2024-02-29 20:16:02.246 2024-02-29 20:16:02.246 1000 FEE 443655 21386 6118384 2024-02-29 20:16:02.246 2024-02-29 20:16:02.246 9000 TIP 443655 7587 6118406 2024-02-29 20:17:12.293 2024-02-29 20:17:12.293 5700 FEE 444176 20775 6118407 2024-02-29 20:17:12.293 2024-02-29 20:17:12.293 51300 TIP 444176 17800 6118421 2024-02-29 20:17:31.523 2024-02-29 20:17:31.523 2200 FEE 444153 9276 6118422 2024-02-29 20:17:31.523 2024-02-29 20:17:31.523 19800 TIP 444153 21494 6118423 2024-02-29 20:17:31.617 2024-02-29 20:17:31.617 3300 FEE 444148 3518 6118424 2024-02-29 20:17:31.617 2024-02-29 20:17:31.617 29700 TIP 444148 18426 6118436 2024-02-29 20:18:57.607 2024-02-29 20:18:57.607 1000 FEE 444193 6383 6118468 2024-02-29 20:20:13.546 2024-02-29 20:20:13.546 1000 FEE 444168 20655 6118469 2024-02-29 20:20:13.546 2024-02-29 20:20:13.546 9000 TIP 444168 19902 6118476 2024-02-29 20:20:16.452 2024-02-29 20:20:16.452 10000 DONT_LIKE_THIS 444173 15326 6118491 2024-02-29 20:20:23.002 2024-02-29 20:20:23.002 1000 FEE 444156 5852 6118492 2024-02-29 20:20:23.002 2024-02-29 20:20:23.002 9000 TIP 444156 20509 6118495 2024-02-29 20:20:23.79 2024-02-29 20:20:23.79 1000 FEE 444156 19417 6118496 2024-02-29 20:20:23.79 2024-02-29 20:20:23.79 9000 TIP 444156 9351 6118517 2024-02-29 20:20:43.546 2024-02-29 20:20:43.546 1000 FEE 444199 20781 6118524 2024-02-29 20:21:00.355 2024-02-29 20:21:00.355 1000 FEE 444161 4250 6118525 2024-02-29 20:21:00.355 2024-02-29 20:21:00.355 9000 TIP 444161 9669 6118528 2024-02-29 20:21:00.621 2024-02-29 20:21:00.621 9000 FEE 444168 6471 6118529 2024-02-29 20:21:00.621 2024-02-29 20:21:00.621 81000 TIP 444168 19037 6118530 2024-02-29 20:21:00.96 2024-02-29 20:21:00.96 1000 FEE 444161 16309 6118531 2024-02-29 20:21:00.96 2024-02-29 20:21:00.96 9000 TIP 444161 4831 6118566 2024-02-29 20:22:47.87 2024-02-29 20:22:47.87 2100 FEE 444200 21605 6118567 2024-02-29 20:22:47.87 2024-02-29 20:22:47.87 18900 TIP 444200 19403 6118583 2024-02-29 20:24:58.486 2024-02-29 20:24:58.486 10000 FEE 444210 5565 6118595 2024-02-29 20:26:02.858 2024-02-29 20:26:02.858 1000 FEE 444213 21164 6118605 2024-02-29 20:26:26.765 2024-02-29 20:26:26.765 5700 FEE 444191 18154 6118606 2024-02-29 20:26:26.765 2024-02-29 20:26:26.765 51300 TIP 444191 20825 6118613 2024-02-29 20:26:48.954 2024-02-29 20:26:48.954 6900 FEE 444209 9366 6118614 2024-02-29 20:26:48.954 2024-02-29 20:26:48.954 62100 TIP 444209 9348 6118616 2024-02-29 20:27:07.414 2024-02-29 20:27:07.414 1000 FEE 444216 17690 6118658 2024-02-29 20:30:58.229 2024-02-29 20:30:58.229 3400 FEE 443790 11829 6118659 2024-02-29 20:30:58.229 2024-02-29 20:30:58.229 30600 TIP 443790 20504 6118663 2024-02-29 20:31:38.454 2024-02-29 20:31:38.454 2500 FEE 443372 21145 6118664 2024-02-29 20:31:38.454 2024-02-29 20:31:38.454 22500 TIP 443372 2724 6118675 2024-02-29 20:31:39.441 2024-02-29 20:31:39.441 2500 FEE 443372 10519 6118676 2024-02-29 20:31:39.441 2024-02-29 20:31:39.441 22500 TIP 443372 9335 6118719 2024-02-29 20:33:31.581 2024-02-29 20:33:31.581 1000 FEE 444212 8416 6118720 2024-02-29 20:33:31.581 2024-02-29 20:33:31.581 9000 TIP 444212 19941 6118721 2024-02-29 20:33:31.687 2024-02-29 20:33:31.687 1000 FEE 444212 20788 6118722 2024-02-29 20:33:31.687 2024-02-29 20:33:31.687 9000 TIP 444212 8416 6118723 2024-02-29 20:33:32.323 2024-02-29 20:33:32.323 1000 FEE 444228 20243 6118765 2024-02-29 20:34:31.572 2024-02-29 20:34:31.572 1000 FEE 444220 1960 6118766 2024-02-29 20:34:31.572 2024-02-29 20:34:31.572 9000 TIP 444220 20738 6118773 2024-02-29 20:34:40.076 2024-02-29 20:34:40.076 1000 FEE 444229 7891 6118794 2024-02-29 20:35:04.006 2024-02-29 20:35:04.006 1000 FEE 444222 1180 6118795 2024-02-29 20:35:04.006 2024-02-29 20:35:04.006 9000 TIP 444222 899 6118807 2024-02-29 20:35:18.347 2024-02-29 20:35:18.347 1000 FEE 444176 20713 6118808 2024-02-29 20:35:18.347 2024-02-29 20:35:18.347 9000 TIP 444176 19812 6118809 2024-02-29 20:35:21.764 2024-02-29 20:35:21.764 1000 FEE 444184 12245 6118810 2024-02-29 20:35:21.764 2024-02-29 20:35:21.764 9000 TIP 444184 21269 6118823 2024-02-29 20:35:50.336 2024-02-29 20:35:50.336 0 FEE 444231 19502 6118859 2024-02-29 20:38:56.486 2024-02-29 20:38:56.486 15400 FEE 444173 1773 6118860 2024-02-29 20:38:56.486 2024-02-29 20:38:56.486 138600 TIP 444173 19132 6118896 2024-02-29 20:39:37.166 2024-02-29 20:39:37.166 7700 FEE 444173 19132 6118897 2024-02-29 20:39:37.166 2024-02-29 20:39:37.166 69300 TIP 444173 647 6118912 2024-02-29 20:39:38.502 2024-02-29 20:39:38.502 2100 FEE 444113 722 6118913 2024-02-29 20:39:38.502 2024-02-29 20:39:38.502 18900 TIP 444113 629 6118935 2024-02-29 20:41:00.814 2024-02-29 20:41:00.814 1000 FEE 444129 5728 6118936 2024-02-29 20:41:00.814 2024-02-29 20:41:00.814 9000 TIP 444129 21281 6119003 2024-02-29 20:44:10.583 2024-02-29 20:44:10.583 1000 FEE 444179 2256 6119004 2024-02-29 20:44:10.583 2024-02-29 20:44:10.583 9000 TIP 444179 20972 6119023 2024-02-29 20:46:18.145 2024-02-29 20:46:18.145 1000 FEE 444249 20409 6119028 2024-02-29 20:46:59.368 2024-02-29 20:46:59.368 1000 FEE 444016 21609 6119029 2024-02-29 20:46:59.368 2024-02-29 20:46:59.368 9000 TIP 444016 12122 6119050 2024-02-29 20:48:01.174 2024-02-29 20:48:01.174 200 FEE 444253 6777 6119051 2024-02-29 20:48:01.174 2024-02-29 20:48:01.174 1800 TIP 444253 19640 6119052 2024-02-29 20:48:03.907 2024-02-29 20:48:03.907 0 FEE 444249 19148 6119065 2024-02-29 20:48:39.885 2024-02-29 20:48:39.885 5700 FEE 444228 13169 6119066 2024-02-29 20:48:39.885 2024-02-29 20:48:39.885 51300 TIP 444228 18784 6119085 2024-02-29 20:51:04.232 2024-02-29 20:51:04.232 1000 FEE 444261 5759 6119099 2024-02-29 20:52:14.905 2024-02-29 20:52:14.905 0 FEE 444249 20245 6053638 2024-02-24 14:04:05.265 2024-02-24 14:04:05.265 1000 STREAM 141924 19329 6053745 2024-02-24 14:16:05.622 2024-02-24 14:16:05.622 1000 STREAM 141924 706 6053903 2024-02-24 14:26:05.769 2024-02-24 14:26:05.769 1000 STREAM 141924 1142 6054068 2024-02-24 14:38:05.845 2024-02-24 14:38:05.845 1000 STREAM 141924 12821 6054094 2024-02-24 14:40:05.854 2024-02-24 14:40:05.854 1000 STREAM 141924 676 6054132 2024-02-24 14:42:05.871 2024-02-24 14:42:05.871 1000 STREAM 141924 12245 6054177 2024-02-24 14:46:05.886 2024-02-24 14:46:05.886 1000 STREAM 141924 19541 6054222 2024-02-24 14:48:05.911 2024-02-24 14:48:05.911 1000 STREAM 141924 1825 6118512 2024-02-29 20:20:35.45 2024-02-29 20:20:35.45 29700 TIP 443794 6310 6118520 2024-02-29 20:20:50.95 2024-02-29 20:20:50.95 900 FEE 444168 21218 6118521 2024-02-29 20:20:50.95 2024-02-29 20:20:50.95 8100 TIP 444168 11275 6118526 2024-02-29 20:21:00.618 2024-02-29 20:21:00.618 1000 FEE 444161 1320 6118527 2024-02-29 20:21:00.618 2024-02-29 20:21:00.618 9000 TIP 444161 5590 6118553 2024-02-29 20:21:44.994 2024-02-29 20:21:44.994 1000 FEE 444150 19535 6118554 2024-02-29 20:21:44.994 2024-02-29 20:21:44.994 9000 TIP 444150 19553 6118575 2024-02-29 20:23:47.784 2024-02-29 20:23:47.784 0 FEE 444206 1836 6118603 2024-02-29 20:26:20.594 2024-02-29 20:26:20.594 27900 FEE 444168 1596 6118604 2024-02-29 20:26:20.594 2024-02-29 20:26:20.594 251100 TIP 444168 11298 6118617 2024-02-29 20:27:38.361 2024-02-29 20:27:38.361 7700 FEE 444208 17321 6118618 2024-02-29 20:27:38.361 2024-02-29 20:27:38.361 69300 TIP 444208 19952 6118655 2024-02-29 20:30:56.746 2024-02-29 20:30:56.746 1000 FEE 444221 19910 6118686 2024-02-29 20:31:57.956 2024-02-29 20:31:57.956 1000 FEE 444225 17690 6118690 2024-02-29 20:32:13.72 2024-02-29 20:32:13.72 3100 FEE 444223 21051 6118691 2024-02-29 20:32:13.72 2024-02-29 20:32:13.72 27900 TIP 444223 937 6118694 2024-02-29 20:32:16.765 2024-02-29 20:32:16.765 1000 FEE 444226 1472 6118702 2024-02-29 20:32:57.489 2024-02-29 20:32:57.489 1000 FEE 444194 16357 6118703 2024-02-29 20:32:57.489 2024-02-29 20:32:57.489 9000 TIP 444194 10693 6118743 2024-02-29 20:34:16.062 2024-02-29 20:34:16.062 100 FEE 444102 14122 6118744 2024-02-29 20:34:16.062 2024-02-29 20:34:16.062 900 TIP 444102 8380 6118767 2024-02-29 20:34:33.061 2024-02-29 20:34:33.061 1000 FEE 444223 18817 6118768 2024-02-29 20:34:33.061 2024-02-29 20:34:33.061 9000 TIP 444223 10013 6118778 2024-02-29 20:34:48.185 2024-02-29 20:34:48.185 1000 FEE 444187 647 6118779 2024-02-29 20:34:48.185 2024-02-29 20:34:48.185 9000 TIP 444187 16667 6118812 2024-02-29 20:35:26.291 2024-02-29 20:35:26.291 1000 FEE 444231 696 6118825 2024-02-29 20:36:36.685 2024-02-29 20:36:36.685 1000 FEE 444234 14705 6118828 2024-02-29 20:37:45.963 2024-02-29 20:37:45.963 1000 POLL 444078 5557 6118847 2024-02-29 20:38:54.743 2024-02-29 20:38:54.743 7700 FEE 444173 4128 6118848 2024-02-29 20:38:54.743 2024-02-29 20:38:54.743 69300 TIP 444173 703 6118849 2024-02-29 20:38:54.899 2024-02-29 20:38:54.899 7700 FEE 444173 17927 6118850 2024-02-29 20:38:54.899 2024-02-29 20:38:54.899 69300 TIP 444173 21042 6118853 2024-02-29 20:38:55.44 2024-02-29 20:38:55.44 23100 FEE 444173 10944 6118854 2024-02-29 20:38:55.44 2024-02-29 20:38:55.44 207900 TIP 444173 16282 6118855 2024-02-29 20:38:56.136 2024-02-29 20:38:56.136 7700 FEE 444173 8176 6118856 2024-02-29 20:38:56.136 2024-02-29 20:38:56.136 69300 TIP 444173 1602 6118883 2024-02-29 20:39:20.901 2024-02-29 20:39:20.901 2100 FEE 444098 21349 6118884 2024-02-29 20:39:20.901 2024-02-29 20:39:20.901 18900 TIP 444098 827 6118887 2024-02-29 20:39:23.081 2024-02-29 20:39:23.081 1000 FEE 443963 17157 6118888 2024-02-29 20:39:23.081 2024-02-29 20:39:23.081 9000 TIP 443963 649 6118921 2024-02-29 20:39:59.623 2024-02-29 20:39:59.623 100 FEE 442997 19096 6118922 2024-02-29 20:39:59.623 2024-02-29 20:39:59.623 900 TIP 442997 16348 6118930 2024-02-29 20:40:12.236 2024-02-29 20:40:12.236 1000 POLL 444165 20619 6118944 2024-02-29 20:41:26.695 2024-02-29 20:41:26.695 3200 FEE 443617 16747 6118945 2024-02-29 20:41:26.695 2024-02-29 20:41:26.695 28800 TIP 443617 10981 6118957 2024-02-29 20:41:55.7 2024-02-29 20:41:55.7 2100 FEE 443915 12265 6118958 2024-02-29 20:41:55.7 2024-02-29 20:41:55.7 18900 TIP 443915 19981 6118975 2024-02-29 20:42:58.735 2024-02-29 20:42:58.735 3200 FEE 444127 20201 6118976 2024-02-29 20:42:58.735 2024-02-29 20:42:58.735 28800 TIP 444127 19465 6119010 2024-02-29 20:44:47.303 2024-02-29 20:44:47.303 1000 FEE 444248 15139 6119093 2024-02-29 20:51:39.145 2024-02-29 20:51:39.145 2100 FEE 444176 9844 6119094 2024-02-29 20:51:39.145 2024-02-29 20:51:39.145 18900 TIP 444176 14941 6119095 2024-02-29 20:51:58.04 2024-02-29 20:51:58.04 0 FEE 444263 12808 6119105 2024-02-29 20:52:41.688 2024-02-29 20:52:41.688 2100 FEE 444232 17541 6119106 2024-02-29 20:52:41.688 2024-02-29 20:52:41.688 18900 TIP 444232 18178 6119129 2024-02-29 20:52:55.292 2024-02-29 20:52:55.292 2100 FEE 444203 2285 6119130 2024-02-29 20:52:55.292 2024-02-29 20:52:55.292 18900 TIP 444203 18314 6119184 2024-02-29 20:56:16.019 2024-02-29 20:56:16.019 0 FEE 444273 691 6119190 2024-02-29 20:56:54.938 2024-02-29 20:56:54.938 10000 FEE 443577 19890 6119191 2024-02-29 20:56:54.938 2024-02-29 20:56:54.938 90000 TIP 443577 21164 6119193 2024-02-29 20:57:14.524 2024-02-29 20:57:14.524 0 FEE 444272 18119 6119194 2024-02-29 20:57:25.553 2024-02-29 20:57:25.553 5000 FEE 444265 5359 6119195 2024-02-29 20:57:25.553 2024-02-29 20:57:25.553 45000 TIP 444265 9246 6119196 2024-02-29 20:57:32.976 2024-02-29 20:57:32.976 300 FEE 444168 2098 6119197 2024-02-29 20:57:32.976 2024-02-29 20:57:32.976 2700 TIP 444168 19557 6119217 2024-02-29 20:58:35.786 2024-02-29 20:58:35.786 1000 FEE 444277 16649 6119266 2024-02-29 21:02:22.811 2024-02-29 21:02:22.811 1000 FEE 444284 1632 6119267 2024-02-29 21:02:22.811 2024-02-29 21:02:22.811 9000 TIP 444284 21249 6119270 2024-02-29 21:02:23.347 2024-02-29 21:02:23.347 1000 FEE 444284 15115 6119271 2024-02-29 21:02:23.347 2024-02-29 21:02:23.347 9000 TIP 444284 18231 6119272 2024-02-29 21:02:25.903 2024-02-29 21:02:25.903 10000 FEE 444223 21296 6119273 2024-02-29 21:02:25.903 2024-02-29 21:02:25.903 90000 TIP 444223 9166 6119280 2024-02-29 21:02:55.853 2024-02-29 21:02:55.853 1000 FEE 444288 21047 6119281 2024-02-29 21:03:02.221 2024-02-29 21:03:02.221 2100 FEE 444253 16456 6119282 2024-02-29 21:03:02.221 2024-02-29 21:03:02.221 18900 TIP 444253 16667 6119290 2024-02-29 21:04:11.792 2024-02-29 21:04:11.792 2600 FEE 436763 8729 6119291 2024-02-29 21:04:11.792 2024-02-29 21:04:11.792 23400 TIP 436763 19352 6119294 2024-02-29 21:04:18.013 2024-02-29 21:04:18.013 500 FEE 444102 20660 6119295 2024-02-29 21:04:18.013 2024-02-29 21:04:18.013 4500 TIP 444102 20717 6119310 2024-02-29 21:04:19.877 2024-02-29 21:04:19.877 500 FEE 444102 20291 6119311 2024-02-29 21:04:19.877 2024-02-29 21:04:19.877 4500 TIP 444102 1720 6119330 2024-02-29 21:04:29.586 2024-02-29 21:04:29.586 100 FEE 444168 5036 6119331 2024-02-29 21:04:29.586 2024-02-29 21:04:29.586 900 TIP 444168 10270 6119336 2024-02-29 21:05:09.392 2024-02-29 21:05:09.392 500 FEE 444148 3353 6119337 2024-02-29 21:05:09.392 2024-02-29 21:05:09.392 4500 TIP 444148 15526 6119343 2024-02-29 21:05:35.178 2024-02-29 21:05:35.178 1000 POLL 444078 11240 6119350 2024-02-29 21:07:11.621 2024-02-29 21:07:11.621 0 FEE 444294 9552 6119371 2024-02-29 21:08:42.415 2024-02-29 21:08:42.415 6900 FEE 444295 9099 6119372 2024-02-29 21:08:42.415 2024-02-29 21:08:42.415 62100 TIP 444295 16456 6119380 2024-02-29 21:09:21.824 2024-02-29 21:09:21.824 0 FEE 444294 17091 6053646 2024-02-24 14:05:05.279 2024-02-24 14:05:05.279 1000 STREAM 141924 18583 6053655 2024-02-24 14:06:05.268 2024-02-24 14:06:05.268 1000 STREAM 141924 14357 6053666 2024-02-24 14:07:05.467 2024-02-24 14:07:05.467 1000 STREAM 141924 20588 6053704 2024-02-24 14:09:05.503 2024-02-24 14:09:05.503 1000 STREAM 141924 20586 6053721 2024-02-24 14:11:05.545 2024-02-24 14:11:05.545 1000 STREAM 141924 19952 6053729 2024-02-24 14:13:05.548 2024-02-24 14:13:05.548 1000 STREAM 141924 19976 6053734 2024-02-24 14:15:05.608 2024-02-24 14:15:05.608 1000 STREAM 141924 18528 6053772 2024-02-24 14:18:05.621 2024-02-24 14:18:05.621 1000 STREAM 141924 18658 6053797 2024-02-24 14:20:05.677 2024-02-24 14:20:05.677 1000 STREAM 141924 18363 6053816 2024-02-24 14:22:05.691 2024-02-24 14:22:05.691 1000 STREAM 141924 1465 6053867 2024-02-24 14:24:05.71 2024-02-24 14:24:05.71 1000 STREAM 141924 9353 6053938 2024-02-24 14:28:05.78 2024-02-24 14:28:05.78 1000 STREAM 141924 7773 6053951 2024-02-24 14:30:05.796 2024-02-24 14:30:05.796 1000 STREAM 141924 2326 6053963 2024-02-24 14:32:05.818 2024-02-24 14:32:05.818 1000 STREAM 141924 951 6053977 2024-02-24 14:34:05.833 2024-02-24 14:34:05.833 1000 STREAM 141924 20412 6053983 2024-02-24 14:36:05.831 2024-02-24 14:36:05.831 1000 STREAM 141924 20546 6054159 2024-02-24 14:44:05.865 2024-02-24 14:44:05.865 1000 STREAM 141924 21292 6054308 2024-02-24 14:52:05.936 2024-02-24 14:52:05.936 1000 STREAM 141924 2327 6118572 2024-02-29 20:23:18.599 2024-02-29 20:23:18.599 69300 TIP 444202 19907 6118574 2024-02-29 20:23:42.608 2024-02-29 20:23:42.608 1000 FEE 444207 12516 6118591 2024-02-29 20:26:00.189 2024-02-29 20:26:00.189 2100 FEE 444203 1692 6118592 2024-02-29 20:26:00.189 2024-02-29 20:26:00.189 18900 TIP 444203 9184 6118597 2024-02-29 20:26:08.521 2024-02-29 20:26:08.521 6400 FEE 444184 17109 6118598 2024-02-29 20:26:08.521 2024-02-29 20:26:08.521 57600 TIP 444184 17184 6118599 2024-02-29 20:26:12.668 2024-02-29 20:26:12.668 7700 FEE 444210 16176 6118600 2024-02-29 20:26:12.668 2024-02-29 20:26:12.668 69300 TIP 444210 18837 6118626 2024-02-29 20:27:52.479 2024-02-29 20:27:52.479 500 FEE 443799 9275 6118627 2024-02-29 20:27:52.479 2024-02-29 20:27:52.479 4500 TIP 443799 1611 6118630 2024-02-29 20:28:00.942 2024-02-29 20:28:00.942 1100 FEE 443861 9342 6118631 2024-02-29 20:28:00.942 2024-02-29 20:28:00.942 9900 TIP 443861 11240 6118639 2024-02-29 20:28:39.16 2024-02-29 20:28:39.16 5700 FEE 444097 21547 6118640 2024-02-29 20:28:39.16 2024-02-29 20:28:39.16 51300 TIP 444097 17638 6118643 2024-02-29 20:28:54.244 2024-02-29 20:28:54.244 500 FEE 444105 16816 6118644 2024-02-29 20:28:54.244 2024-02-29 20:28:54.244 4500 TIP 444105 10056 6118678 2024-02-29 20:31:42.499 2024-02-29 20:31:42.499 1000 FEE 444223 3504 6118687 2024-02-29 20:32:01.662 2024-02-29 20:32:01.662 5700 FEE 444221 5725 6118688 2024-02-29 20:32:01.662 2024-02-29 20:32:01.662 51300 TIP 444221 928 6118711 2024-02-29 20:33:14.633 2024-02-29 20:33:14.633 100 FEE 444185 19502 6118712 2024-02-29 20:33:14.633 2024-02-29 20:33:14.633 900 TIP 444185 1620 6118717 2024-02-29 20:33:29.308 2024-02-29 20:33:29.308 1000 FEE 444212 19005 6118718 2024-02-29 20:33:29.308 2024-02-29 20:33:29.308 9000 TIP 444212 21239 6118726 2024-02-29 20:33:43.333 2024-02-29 20:33:43.333 1000 FEE 444220 896 6118727 2024-02-29 20:33:43.333 2024-02-29 20:33:43.333 9000 TIP 444220 6030 6118737 2024-02-29 20:34:11.951 2024-02-29 20:34:11.951 2100 FEE 444168 16447 6118738 2024-02-29 20:34:11.951 2024-02-29 20:34:11.951 18900 TIP 444168 9476 6118784 2024-02-29 20:34:54.674 2024-02-29 20:34:54.674 1000 FEE 444215 20087 6118785 2024-02-29 20:34:54.674 2024-02-29 20:34:54.674 9000 TIP 444215 9809 6118790 2024-02-29 20:34:57.997 2024-02-29 20:34:57.997 1000 FEE 444214 21119 6118791 2024-02-29 20:34:57.997 2024-02-29 20:34:57.997 9000 TIP 444214 3506 6118797 2024-02-29 20:35:08.033 2024-02-29 20:35:08.033 1000 FEE 444209 19018 6118798 2024-02-29 20:35:08.033 2024-02-29 20:35:08.033 9000 TIP 444209 1705 6118821 2024-02-29 20:35:41.775 2024-02-29 20:35:41.775 1000 FEE 444232 19777 6118900 2024-02-29 20:39:37.352 2024-02-29 20:39:37.352 7700 FEE 444173 20964 6118901 2024-02-29 20:39:37.352 2024-02-29 20:39:37.352 69300 TIP 444173 19153 6118902 2024-02-29 20:39:37.465 2024-02-29 20:39:37.465 7700 FEE 444173 9290 6118903 2024-02-29 20:39:37.465 2024-02-29 20:39:37.465 69300 TIP 444173 19033 6118923 2024-02-29 20:40:00.723 2024-02-29 20:40:00.723 200 FEE 442997 692 6053679 2024-02-24 14:08:02.016 2024-02-24 14:08:02.016 1000 STREAM 141924 2961 6053724 2024-02-24 14:12:02.045 2024-02-24 14:12:02.045 1000 STREAM 141924 19151 6053733 2024-02-24 14:14:02.011 2024-02-24 14:14:02.011 1000 STREAM 141924 15697 6053805 2024-02-24 14:21:02.063 2024-02-24 14:21:02.063 1000 STREAM 141924 2748 6053834 2024-02-24 14:23:02.008 2024-02-24 14:23:02.008 1000 STREAM 141924 12049 6053894 2024-02-24 14:25:02.051 2024-02-24 14:25:02.051 1000 STREAM 141924 12160 6053925 2024-02-24 14:27:02.074 2024-02-24 14:27:02.074 1000 STREAM 141924 16259 6053945 2024-02-24 14:29:02.096 2024-02-24 14:29:02.096 1000 STREAM 141924 11789 6054116 2024-02-24 14:41:02.166 2024-02-24 14:41:02.166 1000 STREAM 141924 20757 6054163 2024-02-24 14:45:02.177 2024-02-24 14:45:02.177 1000 STREAM 141924 19812 6054196 2024-02-24 14:47:02.203 2024-02-24 14:47:02.203 1000 STREAM 141924 19296 6054396 2024-02-24 15:04:02.34 2024-02-24 15:04:02.34 1000 STREAM 141924 21437 6054415 2024-02-24 15:06:02.318 2024-02-24 15:06:02.318 1000 STREAM 141924 8729 6054485 2024-02-24 15:15:02.342 2024-02-24 15:15:02.342 1000 STREAM 141924 2703 6054503 2024-02-24 15:19:02.362 2024-02-24 15:19:02.362 1000 STREAM 141924 9348 6054527 2024-02-24 15:21:02.363 2024-02-24 15:21:02.363 1000 STREAM 141924 15271 6118649 2024-02-29 20:29:37.687 2024-02-29 20:29:37.687 5700 FEE 444078 17166 6118650 2024-02-29 20:29:37.687 2024-02-29 20:29:37.687 51300 TIP 444078 999 6118665 2024-02-29 20:31:38.581 2024-02-29 20:31:38.581 2500 FEE 443372 16679 6118666 2024-02-29 20:31:38.581 2024-02-29 20:31:38.581 22500 TIP 443372 713 6118669 2024-02-29 20:31:38.924 2024-02-29 20:31:38.924 2500 FEE 443372 18309 6118670 2024-02-29 20:31:38.924 2024-02-29 20:31:38.924 22500 TIP 443372 5293 6118673 2024-02-29 20:31:39.265 2024-02-29 20:31:39.265 2500 FEE 443372 21365 6118674 2024-02-29 20:31:39.265 2024-02-29 20:31:39.265 22500 TIP 443372 2327 6118695 2024-02-29 20:32:26.153 2024-02-29 20:32:26.153 1000 FEE 444227 12278 6118705 2024-02-29 20:33:06.181 2024-02-29 20:33:06.181 100 FEE 444176 17316 6118706 2024-02-29 20:33:06.181 2024-02-29 20:33:06.181 900 TIP 444176 14950 6118713 2024-02-29 20:33:16.435 2024-02-29 20:33:16.435 1000 FEE 444215 14774 6118714 2024-02-29 20:33:16.435 2024-02-29 20:33:16.435 9000 TIP 444215 15063 6118730 2024-02-29 20:34:01.969 2024-02-29 20:34:01.969 6900 FEE 444228 7659 6118731 2024-02-29 20:34:01.969 2024-02-29 20:34:01.969 62100 TIP 444228 17827 6118739 2024-02-29 20:34:12.787 2024-02-29 20:34:12.787 1000 FEE 444210 14213 6118740 2024-02-29 20:34:12.787 2024-02-29 20:34:12.787 9000 TIP 444210 8242 6118759 2024-02-29 20:34:25.018 2024-02-29 20:34:25.018 9000 FEE 444221 21040 6118760 2024-02-29 20:34:25.018 2024-02-29 20:34:25.018 81000 TIP 444221 16542 6118761 2024-02-29 20:34:27.491 2024-02-29 20:34:27.491 1000 FEE 444214 15858 6118762 2024-02-29 20:34:27.491 2024-02-29 20:34:27.491 9000 TIP 444214 5128 6118771 2024-02-29 20:34:38.751 2024-02-29 20:34:38.751 1000 FEE 444212 4984 6118772 2024-02-29 20:34:38.751 2024-02-29 20:34:38.751 9000 TIP 444212 20924 6118786 2024-02-29 20:34:56.145 2024-02-29 20:34:56.145 1000 FEE 444210 18904 6118787 2024-02-29 20:34:56.145 2024-02-29 20:34:56.145 9000 TIP 444210 19773 6118829 2024-02-29 20:37:58.158 2024-02-29 20:37:58.158 10000 FEE 444168 21506 6118830 2024-02-29 20:37:58.158 2024-02-29 20:37:58.158 90000 TIP 444168 766 6118836 2024-02-29 20:38:18.768 2024-02-29 20:38:18.768 10000 FEE 444236 20892 6118841 2024-02-29 20:38:54.364 2024-02-29 20:38:54.364 7700 FEE 444173 14552 6118842 2024-02-29 20:38:54.364 2024-02-29 20:38:54.364 69300 TIP 444173 19087 6118845 2024-02-29 20:38:54.705 2024-02-29 20:38:54.705 7700 FEE 444173 16965 6118846 2024-02-29 20:38:54.705 2024-02-29 20:38:54.705 69300 TIP 444173 14080 6118862 2024-02-29 20:39:01.04 2024-02-29 20:39:01.04 100 FEE 444107 5942 6118863 2024-02-29 20:39:01.04 2024-02-29 20:39:01.04 900 TIP 444107 19911 6118877 2024-02-29 20:39:13.101 2024-02-29 20:39:13.101 100 FEE 444218 18264 6118878 2024-02-29 20:39:13.101 2024-02-29 20:39:13.101 900 TIP 444218 854 6118881 2024-02-29 20:39:14.715 2024-02-29 20:39:14.715 1000 FEE 444117 4624 6118882 2024-02-29 20:39:14.715 2024-02-29 20:39:14.715 9000 TIP 444117 15925 6118892 2024-02-29 20:39:36.429 2024-02-29 20:39:36.429 7700 FEE 444173 17798 6118893 2024-02-29 20:39:36.429 2024-02-29 20:39:36.429 69300 TIP 444173 20904 6118927 2024-02-29 20:40:01.542 2024-02-29 20:40:01.542 1000 FEE 444240 1609 6118931 2024-02-29 20:40:16.126 2024-02-29 20:40:16.126 3200 FEE 442710 20852 6118932 2024-02-29 20:40:16.126 2024-02-29 20:40:16.126 28800 TIP 442710 929 6118949 2024-02-29 20:41:40.424 2024-02-29 20:41:40.424 1000 FEE 444242 9346 6118953 2024-02-29 20:41:53.268 2024-02-29 20:41:53.268 3200 FEE 443577 14503 6118954 2024-02-29 20:41:53.268 2024-02-29 20:41:53.268 28800 TIP 443577 15463 6118959 2024-02-29 20:41:59.507 2024-02-29 20:41:59.507 1000 FEE 444244 993 6118966 2024-02-29 20:42:17.351 2024-02-29 20:42:17.351 1000 POLL 444165 9844 6118969 2024-02-29 20:42:29.862 2024-02-29 20:42:29.862 200 FEE 444168 20481 6118970 2024-02-29 20:42:29.862 2024-02-29 20:42:29.862 1800 TIP 444168 18528 6118977 2024-02-29 20:42:59.404 2024-02-29 20:42:59.404 1000 FEE 444246 19572 6118985 2024-02-29 20:43:38.974 2024-02-29 20:43:38.974 2100 FEE 444114 1564 6118986 2024-02-29 20:43:38.974 2024-02-29 20:43:38.974 18900 TIP 444114 18945 6119008 2024-02-29 20:44:39.024 2024-02-29 20:44:39.024 1000 FEE 443921 16556 6119009 2024-02-29 20:44:39.024 2024-02-29 20:44:39.024 9000 TIP 443921 1130 6119036 2024-02-29 20:47:23.051 2024-02-29 20:47:23.051 1000 FEE 444011 2674 6119037 2024-02-29 20:47:23.051 2024-02-29 20:47:23.051 9000 TIP 444011 15139 6119038 2024-02-29 20:47:27.48 2024-02-29 20:47:27.48 1000 FEE 444252 21314 6119042 2024-02-29 20:47:47.409 2024-02-29 20:47:47.409 1000 FEE 443969 18363 6119043 2024-02-29 20:47:47.409 2024-02-29 20:47:47.409 9000 TIP 443969 7809 6119046 2024-02-29 20:48:00.75 2024-02-29 20:48:00.75 200 FEE 444253 16230 6119047 2024-02-29 20:48:00.75 2024-02-29 20:48:00.75 1800 TIP 444253 16670 6119068 2024-02-29 20:48:52.71 2024-02-29 20:48:52.71 1000 FEE 444256 7659 6119073 2024-02-29 20:49:30.65 2024-02-29 20:49:30.65 0 FEE 444256 19570 6119074 2024-02-29 20:49:36.764 2024-02-29 20:49:36.764 210000 FEE 444258 17183 6119075 2024-02-29 20:49:39.495 2024-02-29 20:49:39.495 0 FEE 444253 1044 6119076 2024-02-29 20:49:40.386 2024-02-29 20:49:40.386 500 FEE 444102 11443 6119077 2024-02-29 20:49:40.386 2024-02-29 20:49:40.386 4500 TIP 444102 18452 6119098 2024-02-29 20:52:14.624 2024-02-29 20:52:14.624 0 FEE 444263 19905 6119109 2024-02-29 20:52:43.831 2024-02-29 20:52:43.831 2100 FEE 444225 21138 6119110 2024-02-29 20:52:43.831 2024-02-29 20:52:43.831 18900 TIP 444225 20153 6119121 2024-02-29 20:52:51.115 2024-02-29 20:52:51.115 2100 FEE 444208 11164 6053689 2024-02-24 14:08:31.265 2024-02-24 14:08:31.265 1000 FEE 436958 4048 6053690 2024-02-24 14:08:31.265 2024-02-24 14:08:31.265 9000 TIP 436958 894 6053719 2024-02-24 14:11:05.431 2024-02-24 14:11:05.431 6900 FEE 437222 6421 6053720 2024-02-24 14:11:05.431 2024-02-24 14:11:05.431 62100 TIP 437222 21140 6053735 2024-02-24 14:15:36.992 2024-02-24 14:15:36.992 2100 FEE 437232 15806 6053736 2024-02-24 14:15:36.992 2024-02-24 14:15:36.992 18900 TIP 437232 12097 6053739 2024-02-24 14:15:59.739 2024-02-24 14:15:59.739 100 FEE 436750 13204 6053740 2024-02-24 14:15:59.739 2024-02-24 14:15:59.739 900 TIP 436750 19996 6053743 2024-02-24 14:16:00.085 2024-02-24 14:16:00.085 100 FEE 436750 15577 6053744 2024-02-24 14:16:00.085 2024-02-24 14:16:00.085 900 TIP 436750 1985 6053746 2024-02-24 14:16:06.514 2024-02-24 14:16:06.514 10000 FEE 437233 16876 6053753 2024-02-24 14:16:50.589 2024-02-24 14:16:50.589 2100 FEE 437205 15161 6053754 2024-02-24 14:16:50.589 2024-02-24 14:16:50.589 18900 TIP 437205 10280 6053759 2024-02-24 14:17:00.089 2024-02-24 14:17:00.089 2700 FEE 436826 20581 6053760 2024-02-24 14:17:00.089 2024-02-24 14:17:00.089 24300 TIP 436826 12736 6053776 2024-02-24 14:18:45.952 2024-02-24 14:18:45.952 2700 FEE 436752 16594 6053777 2024-02-24 14:18:45.952 2024-02-24 14:18:45.952 24300 TIP 436752 9611 6053778 2024-02-24 14:18:46.153 2024-02-24 14:18:46.153 2700 FEE 436752 19335 6053779 2024-02-24 14:18:46.153 2024-02-24 14:18:46.153 24300 TIP 436752 18678 6053780 2024-02-24 14:18:46.321 2024-02-24 14:18:46.321 2700 FEE 436752 10270 6053781 2024-02-24 14:18:46.321 2024-02-24 14:18:46.321 24300 TIP 436752 16842 6053796 2024-02-24 14:19:54.332 2024-02-24 14:19:54.332 1000 FEE 437240 20287 6053807 2024-02-24 14:21:34.764 2024-02-24 14:21:34.764 1000 FEE 437243 10549 6053813 2024-02-24 14:21:51.765 2024-02-24 14:21:51.765 5000 FEE 436973 672 6053814 2024-02-24 14:21:51.765 2024-02-24 14:21:51.765 45000 TIP 436973 10554 6053815 2024-02-24 14:21:57.822 2024-02-24 14:21:57.822 1000 FEE 437245 2832 6053842 2024-02-24 14:23:17.665 2024-02-24 14:23:17.665 100 FEE 437238 20306 6053843 2024-02-24 14:23:17.665 2024-02-24 14:23:17.665 900 TIP 437238 17710 6053844 2024-02-24 14:23:18.251 2024-02-24 14:23:18.251 100 FEE 437238 20911 6053845 2024-02-24 14:23:18.251 2024-02-24 14:23:18.251 900 TIP 437238 21323 6053859 2024-02-24 14:23:40.743 2024-02-24 14:23:40.743 0 FEE 437238 8870 6053880 2024-02-24 14:24:23.049 2024-02-24 14:24:23.049 100 FEE 436909 19126 6053881 2024-02-24 14:24:23.049 2024-02-24 14:24:23.049 900 TIP 436909 16149 6053882 2024-02-24 14:24:24.11 2024-02-24 14:24:24.11 100 FEE 436909 5746 6053883 2024-02-24 14:24:24.11 2024-02-24 14:24:24.11 900 TIP 436909 20301 6053887 2024-02-24 14:24:39.705 2024-02-24 14:24:39.705 1000 FEE 437257 4692 6053912 2024-02-24 14:26:38.033 2024-02-24 14:26:38.033 2100 FEE 437238 11240 6053913 2024-02-24 14:26:38.033 2024-02-24 14:26:38.033 18900 TIP 437238 6149 6053914 2024-02-24 14:26:39.674 2024-02-24 14:26:39.674 12200 FEE 437083 21620 6053915 2024-02-24 14:26:39.674 2024-02-24 14:26:39.674 109800 TIP 437083 5293 6053916 2024-02-24 14:26:48.047 2024-02-24 14:26:48.047 100000 FEE 437260 897 6053926 2024-02-24 14:27:06.034 2024-02-24 14:27:06.034 2800 FEE 437083 2577 6053927 2024-02-24 14:27:06.034 2024-02-24 14:27:06.034 25200 TIP 437083 21214 6053948 2024-02-24 14:29:14.846 2024-02-24 14:29:14.846 1000 FEE 437265 20987 6053965 2024-02-24 14:32:54.784 2024-02-24 14:32:54.784 0 FEE 437268 18517 6053971 2024-02-24 14:33:12.463 2024-02-24 14:33:12.463 5000 FEE 437248 9611 6053972 2024-02-24 14:33:12.463 2024-02-24 14:33:12.463 45000 TIP 437248 18528 6053973 2024-02-24 14:33:12.645 2024-02-24 14:33:12.645 5000 FEE 437248 1173 6053974 2024-02-24 14:33:12.645 2024-02-24 14:33:12.645 45000 TIP 437248 2460 6053981 2024-02-24 14:35:19.006 2024-02-24 14:35:19.006 7700 FEE 437270 12516 6053982 2024-02-24 14:35:19.006 2024-02-24 14:35:19.006 69300 TIP 437270 5069 6053990 2024-02-24 14:36:21.735 2024-02-24 14:36:21.735 1000 FEE 420213 11776 6053991 2024-02-24 14:36:21.735 2024-02-24 14:36:21.735 9000 TIP 420213 9820 6054049 2024-02-24 14:36:58.694 2024-02-24 14:36:58.694 1000 FEE 437238 19263 6054050 2024-02-24 14:36:58.694 2024-02-24 14:36:58.694 9000 TIP 437238 4763 6054062 2024-02-24 14:37:36.622 2024-02-24 14:37:36.622 1000 FEE 437146 1141 6054063 2024-02-24 14:37:36.622 2024-02-24 14:37:36.622 9000 TIP 437146 20340 6054089 2024-02-24 14:39:16.943 2024-02-24 14:39:16.943 4000 FEE 437276 5425 6054090 2024-02-24 14:39:16.943 2024-02-24 14:39:16.943 36000 TIP 437276 19417 6054119 2024-02-24 14:41:21.285 2024-02-24 14:41:21.285 1000 FEE 437284 1823 6054120 2024-02-24 14:41:35.311 2024-02-24 14:41:35.311 100000 FEE 437285 21349 6054164 2024-02-24 14:45:10.766 2024-02-24 14:45:10.766 2100 FEE 437250 5904 6054165 2024-02-24 14:45:10.766 2024-02-24 14:45:10.766 18900 TIP 437250 18772 6054189 2024-02-24 14:46:36.408 2024-02-24 14:46:36.408 90000 FEE 437276 19640 6054190 2024-02-24 14:46:36.408 2024-02-24 14:46:36.408 810000 TIP 437276 19837 6054199 2024-02-24 14:47:11.196 2024-02-24 14:47:11.196 1000 FEE 437298 14515 6054213 2024-02-24 14:47:56.507 2024-02-24 14:47:56.507 100 FEE 437246 15556 6054214 2024-02-24 14:47:56.507 2024-02-24 14:47:56.507 900 TIP 437246 7376 6054226 2024-02-24 14:48:19.7 2024-02-24 14:48:19.7 5100 FEE 437246 5978 6054227 2024-02-24 14:48:19.7 2024-02-24 14:48:19.7 45900 TIP 437246 15556 6054297 2024-02-24 14:50:56.488 2024-02-24 14:50:56.488 1000 FEE 437270 20152 6054298 2024-02-24 14:50:56.488 2024-02-24 14:50:56.488 9000 TIP 437270 1394 6054307 2024-02-24 14:51:57.945 2024-02-24 14:51:57.945 0 FEE 437312 4802 6054319 2024-02-24 14:54:03.6 2024-02-24 14:54:03.6 10000 FEE 437315 12261 6054332 2024-02-24 14:55:26.69 2024-02-24 14:55:26.69 500 FEE 436901 4175 6054333 2024-02-24 14:55:26.69 2024-02-24 14:55:26.69 4500 TIP 436901 12175 6054336 2024-02-24 14:55:28.043 2024-02-24 14:55:28.043 1000 FEE 437316 13204 6054342 2024-02-24 14:56:14.008 2024-02-24 14:56:14.008 10000 FEE 437316 21573 6054343 2024-02-24 14:56:14.008 2024-02-24 14:56:14.008 90000 TIP 437316 5578 6054346 2024-02-24 14:56:26.677 2024-02-24 14:56:26.677 0 FEE 437315 20663 6054349 2024-02-24 14:56:29.698 2024-02-24 14:56:29.698 1000 FEE 437318 1769 6054352 2024-02-24 14:56:47.623 2024-02-24 14:56:47.623 1000 FEE 437181 19446 6054353 2024-02-24 14:56:47.623 2024-02-24 14:56:47.623 9000 TIP 437181 9177 6054365 2024-02-24 14:59:04.856 2024-02-24 14:59:04.856 1000 FEE 437323 10668 6054366 2024-02-24 14:59:28.901 2024-02-24 14:59:28.901 1000 FEE 437324 1135 6054378 2024-02-24 15:02:04.327 2024-02-24 15:02:04.327 1000 FEE 437329 19038 6054399 2024-02-24 15:04:25.24 2024-02-24 15:04:25.24 1000 FEE 428268 16724 6054400 2024-02-24 15:04:25.24 2024-02-24 15:04:25.24 9000 TIP 428268 20751 6054429 2024-02-24 15:06:56.482 2024-02-24 15:06:56.482 10000 FEE 437332 16097 6054430 2024-02-24 15:06:56.482 2024-02-24 15:06:56.482 90000 TIP 437332 909 6054431 2024-02-24 15:07:01.437 2024-02-24 15:07:01.437 1000000 DONT_LIKE_THIS 437238 9290 6054435 2024-02-24 15:07:24.334 2024-02-24 15:07:24.334 6900 FEE 437203 4487 6054436 2024-02-24 15:07:24.334 2024-02-24 15:07:24.334 62100 TIP 437203 7583 6054449 2024-02-24 15:08:30.132 2024-02-24 15:08:30.132 1000 FEE 437344 642 6054454 2024-02-24 15:08:46.378 2024-02-24 15:08:46.378 1000 FEE 437345 769 6054467 2024-02-24 15:11:13.21 2024-02-24 15:11:13.21 9000 FEE 437146 18241 6054468 2024-02-24 15:11:13.21 2024-02-24 15:11:13.21 81000 TIP 437146 1585 6054473 2024-02-24 15:12:02.138 2024-02-24 15:12:02.138 1000 FEE 437348 4314 6054498 2024-02-24 15:17:42.19 2024-02-24 15:17:42.19 1000 FEE 437353 9517 6054504 2024-02-24 15:19:28.132 2024-02-24 15:19:28.132 1000 FEE 437355 21103 6054536 2024-02-24 15:21:28.582 2024-02-24 15:21:28.582 400 FEE 437359 6419 6054537 2024-02-24 15:21:28.582 2024-02-24 15:21:28.582 3600 TIP 437359 19005 6054559 2024-02-24 15:23:50.034 2024-02-24 15:23:50.034 200 FEE 437168 14080 6053730 2024-02-24 14:13:20.58 2024-02-24 14:13:20.58 0 FEE 437229 19848 6053741 2024-02-24 14:15:59.906 2024-02-24 14:15:59.906 100 FEE 436750 8926 6053742 2024-02-24 14:15:59.906 2024-02-24 14:15:59.906 900 TIP 436750 6160 6053784 2024-02-24 14:18:46.7 2024-02-24 14:18:46.7 2700 FEE 436752 20891 6053785 2024-02-24 14:18:46.7 2024-02-24 14:18:46.7 24300 TIP 436752 17046 6053795 2024-02-24 14:19:47.099 2024-02-24 14:19:47.099 1000 FEE 437239 8508 6053827 2024-02-24 14:22:27.842 2024-02-24 14:22:27.842 5000 FEE 437211 5527 6053828 2024-02-24 14:22:27.842 2024-02-24 14:22:27.842 45000 TIP 437211 13246 6053833 2024-02-24 14:23:00.431 2024-02-24 14:23:00.431 0 FEE 437238 4574 6053837 2024-02-24 14:23:05.495 2024-02-24 14:23:05.495 5000 FEE 431877 2829 6053838 2024-02-24 14:23:05.495 2024-02-24 14:23:05.495 45000 TIP 431877 18387 6053852 2024-02-24 14:23:21.659 2024-02-24 14:23:21.659 100 FEE 437238 18727 6053853 2024-02-24 14:23:21.659 2024-02-24 14:23:21.659 900 TIP 437238 3371 6053864 2024-02-24 14:24:03.322 2024-02-24 14:24:03.322 4000 FEE 437242 9982 6053865 2024-02-24 14:24:03.322 2024-02-24 14:24:03.322 36000 TIP 437242 21600 6053871 2024-02-24 14:24:14.078 2024-02-24 14:24:14.078 1000 FEE 437255 19813 6053919 2024-02-24 14:26:52.295 2024-02-24 14:26:52.295 2500 FEE 437246 19941 6053920 2024-02-24 14:26:52.295 2024-02-24 14:26:52.295 22500 TIP 437246 18468 6053934 2024-02-24 14:27:20.771 2024-02-24 14:27:20.771 2100 FEE 437233 1845 6053935 2024-02-24 14:27:20.771 2024-02-24 14:27:20.771 18900 TIP 437233 1120 6053939 2024-02-24 14:28:08.912 2024-02-24 14:28:08.912 1000 FEE 437263 20691 6053946 2024-02-24 14:29:04.638 2024-02-24 14:29:04.638 2100 FEE 437171 9159 6053947 2024-02-24 14:29:04.638 2024-02-24 14:29:04.638 18900 TIP 437171 18909 6053975 2024-02-24 14:33:47.538 2024-02-24 14:33:47.538 100000 FEE 437269 19018 6054009 2024-02-24 14:36:51.169 2024-02-24 14:36:51.169 1000 FEE 437218 20825 6054010 2024-02-24 14:36:51.169 2024-02-24 14:36:51.169 9000 TIP 437218 20812 6054031 2024-02-24 14:36:56.864 2024-02-24 14:36:56.864 1000 FEE 437233 3377 6054032 2024-02-24 14:36:56.864 2024-02-24 14:36:56.864 9000 TIP 437233 14939 6054037 2024-02-24 14:36:57.28 2024-02-24 14:36:57.28 10000 FEE 437233 14280 6054038 2024-02-24 14:36:57.28 2024-02-24 14:36:57.28 90000 TIP 437233 20110 6054070 2024-02-24 14:38:23.263 2024-02-24 14:38:23.263 1000 FEE 437277 20776 6054074 2024-02-24 14:38:53.453 2024-02-24 14:38:53.453 4000 FEE 437277 14169 6054075 2024-02-24 14:38:53.453 2024-02-24 14:38:53.453 36000 TIP 437277 20452 6054125 2024-02-24 14:41:48.545 2024-02-24 14:41:48.545 700 FEE 437274 18423 6054126 2024-02-24 14:41:48.545 2024-02-24 14:41:48.545 6300 TIP 437274 21238 6054128 2024-02-24 14:41:51.369 2024-02-24 14:41:51.369 2100 FEE 437282 11561 6054129 2024-02-24 14:41:51.369 2024-02-24 14:41:51.369 18900 TIP 437282 7119 6054133 2024-02-24 14:42:07.902 2024-02-24 14:42:07.902 4000 FEE 437280 811 6054134 2024-02-24 14:42:07.902 2024-02-24 14:42:07.902 36000 TIP 437280 17494 6054139 2024-02-24 14:42:20.351 2024-02-24 14:42:20.351 1000 POLL 436759 13042 6054158 2024-02-24 14:44:03.745 2024-02-24 14:44:03.745 1000 FEE 437292 21275 6054171 2024-02-24 14:45:56.5 2024-02-24 14:45:56.5 9000 FEE 437295 10013 6054191 2024-02-24 14:46:47.621 2024-02-24 14:46:47.621 10000 FEE 436841 19660 6054192 2024-02-24 14:46:47.621 2024-02-24 14:46:47.621 90000 TIP 436841 18452 6054215 2024-02-24 14:47:56.942 2024-02-24 14:47:56.942 100 FEE 437246 1316 6054216 2024-02-24 14:47:56.942 2024-02-24 14:47:56.942 900 TIP 437246 9833 6054287 2024-02-24 14:49:43.968 2024-02-24 14:49:43.968 33300 FEE 437293 2162 6054288 2024-02-24 14:49:43.968 2024-02-24 14:49:43.968 299700 TIP 437293 14731 6054289 2024-02-24 14:49:52.5 2024-02-24 14:49:52.5 1000 FEE 437309 16769 6054302 2024-02-24 14:51:43.722 2024-02-24 14:51:43.722 7700 FEE 437309 18539 6054303 2024-02-24 14:51:43.722 2024-02-24 14:51:43.722 69300 TIP 437309 11698 6054313 2024-02-24 14:53:44.358 2024-02-24 14:53:44.358 1000 FEE 437314 16284 6054339 2024-02-24 14:55:50.533 2024-02-24 14:55:50.533 0 FEE 437316 11898 6054356 2024-02-24 14:57:37.718 2024-02-24 14:57:37.718 100000 FEE 437320 749 6054376 2024-02-24 15:01:59.005 2024-02-24 15:01:59.005 1000 FEE 437328 20133 6054379 2024-02-24 15:02:10.474 2024-02-24 15:02:10.474 0 FEE 437328 11298 6054389 2024-02-24 15:03:24.924 2024-02-24 15:03:24.924 700 FEE 437327 20889 6054390 2024-02-24 15:03:24.924 2024-02-24 15:03:24.924 6300 TIP 437327 11075 6054391 2024-02-24 15:03:25.131 2024-02-24 15:03:25.131 1400 FEE 437327 4064 6054392 2024-02-24 15:03:25.131 2024-02-24 15:03:25.131 12600 TIP 437327 679 6054398 2024-02-24 15:04:23.273 2024-02-24 15:04:23.273 1000 FEE 437334 6310 6054403 2024-02-24 15:04:29.685 2024-02-24 15:04:29.685 7700 FEE 437238 19500 6054404 2024-02-24 15:04:29.685 2024-02-24 15:04:29.685 69300 TIP 437238 16410 6054411 2024-02-24 15:05:17.027 2024-02-24 15:05:17.027 700 FEE 437325 20205 6054412 2024-02-24 15:05:17.027 2024-02-24 15:05:17.027 6300 TIP 437325 15336 6054458 2024-02-24 15:10:16.451 2024-02-24 15:10:16.451 1000 FEE 437347 3353 6054475 2024-02-24 15:12:27.241 2024-02-24 15:12:27.241 1000 FEE 437349 20120 6054483 2024-02-24 15:13:17.371 2024-02-24 15:13:17.371 0 FEE 437350 18314 6054487 2024-02-24 15:15:50.398 2024-02-24 15:15:50.398 1000 FEE 437288 18731 6054488 2024-02-24 15:15:50.398 2024-02-24 15:15:50.398 9000 TIP 437288 20424 6054509 2024-02-24 15:20:01.185 2024-02-24 15:20:01.185 21000 DONT_LIKE_THIS 436875 21344 6054511 2024-02-24 15:20:11.96 2024-02-24 15:20:11.96 1000 FEE 437358 19094 6054514 2024-02-24 15:20:37.89 2024-02-24 15:20:37.89 1000 FEE 437352 1673 6054515 2024-02-24 15:20:37.89 2024-02-24 15:20:37.89 9000 TIP 437352 20133 6054532 2024-02-24 15:21:27.847 2024-02-24 15:21:27.847 200 FEE 437359 11698 6054533 2024-02-24 15:21:27.847 2024-02-24 15:21:27.847 1800 TIP 437359 2710 6054549 2024-02-24 15:23:48.565 2024-02-24 15:23:48.565 400 FEE 437168 20924 6054550 2024-02-24 15:23:48.565 2024-02-24 15:23:48.565 3600 TIP 437168 21334 6054551 2024-02-24 15:23:48.909 2024-02-24 15:23:48.909 200 FEE 437168 18139 6054552 2024-02-24 15:23:48.909 2024-02-24 15:23:48.909 1800 TIP 437168 18945 6054585 2024-02-24 15:29:22.276 2024-02-24 15:29:22.276 10000 FEE 437368 20539 6054625 2024-02-24 15:40:42.889 2024-02-24 15:40:42.889 1000 FEE 436591 9167 6054626 2024-02-24 15:40:42.889 2024-02-24 15:40:42.889 9000 TIP 436591 992 6054635 2024-02-24 15:40:48.113 2024-02-24 15:40:48.113 1000 FEE 436595 20922 6054636 2024-02-24 15:40:48.113 2024-02-24 15:40:48.113 9000 TIP 436595 21292 6054656 2024-02-24 15:41:15.84 2024-02-24 15:41:15.84 1000 FEE 436601 12483 6054657 2024-02-24 15:41:15.84 2024-02-24 15:41:15.84 9000 TIP 436601 14905 6054670 2024-02-24 15:42:50 2024-02-24 15:42:50 1000 FEE 437378 19235 6054728 2024-02-24 15:48:37.219 2024-02-24 15:48:37.219 1000 FEE 436764 13378 6053836 2024-02-24 14:23:05.072 2024-02-24 14:23:05.072 45000 TIP 431877 18291 6053854 2024-02-24 14:23:23.307 2024-02-24 14:23:23.307 1000 FEE 437251 721 6053862 2024-02-24 14:24:01.295 2024-02-24 14:24:01.295 2100 FEE 437238 13204 6053863 2024-02-24 14:24:01.295 2024-02-24 14:24:01.295 18900 TIP 437238 14255 6053876 2024-02-24 14:24:22.121 2024-02-24 14:24:22.121 100 FEE 436909 13204 6053877 2024-02-24 14:24:22.121 2024-02-24 14:24:22.121 900 TIP 436909 17592 6053892 2024-02-24 14:25:01.628 2024-02-24 14:25:01.628 100 FEE 437205 21361 6053893 2024-02-24 14:25:01.628 2024-02-24 14:25:01.628 900 TIP 437205 11776 6053906 2024-02-24 14:26:21.609 2024-02-24 14:26:21.609 7700 FEE 437031 14080 6053907 2024-02-24 14:26:21.609 2024-02-24 14:26:21.609 69300 TIP 437031 1142 6053921 2024-02-24 14:26:52.991 2024-02-24 14:26:52.991 2100 FEE 437205 20287 6053922 2024-02-24 14:26:52.991 2024-02-24 14:26:52.991 18900 TIP 437205 1733 6053932 2024-02-24 14:27:19.282 2024-02-24 14:27:19.282 10000 FEE 437184 20889 6053933 2024-02-24 14:27:19.282 2024-02-24 14:27:19.282 90000 TIP 437184 1136 6053940 2024-02-24 14:28:10.494 2024-02-24 14:28:10.494 5000 FEE 435971 18426 6053941 2024-02-24 14:28:10.494 2024-02-24 14:28:10.494 45000 TIP 435971 10493 6053943 2024-02-24 14:29:01.886 2024-02-24 14:29:01.886 2100 FEE 436953 18208 6053944 2024-02-24 14:29:01.886 2024-02-24 14:29:01.886 18900 TIP 436953 16633 6053978 2024-02-24 14:34:44.372 2024-02-24 14:34:44.372 1000 FEE 437271 20816 6054001 2024-02-24 14:36:50.091 2024-02-24 14:36:50.091 1000 FEE 437218 4487 6054002 2024-02-24 14:36:50.091 2024-02-24 14:36:50.091 9000 TIP 437218 20861 6054069 2024-02-24 14:38:13.155 2024-02-24 14:38:13.155 0 FEE 437271 663 6054071 2024-02-24 14:38:32.532 2024-02-24 14:38:32.532 0 FEE 437271 4378 6054097 2024-02-24 14:40:34.038 2024-02-24 14:40:34.038 1000 FEE 437281 20646 6054100 2024-02-24 14:40:50.311 2024-02-24 14:40:50.311 100000 FEE 437218 9796 6054101 2024-02-24 14:40:50.311 2024-02-24 14:40:50.311 900000 TIP 437218 21485 6054104 2024-02-24 14:40:50.935 2024-02-24 14:40:50.935 1000 FEE 437087 627 6054105 2024-02-24 14:40:50.935 2024-02-24 14:40:50.935 9000 TIP 437087 17727 6054110 2024-02-24 14:40:52.369 2024-02-24 14:40:52.369 1000 FEE 437087 20594 6054111 2024-02-24 14:40:52.369 2024-02-24 14:40:52.369 9000 TIP 437087 1094 6054117 2024-02-24 14:41:02.355 2024-02-24 14:41:02.355 1000 FEE 437282 7899 6054140 2024-02-24 14:42:27.846 2024-02-24 14:42:27.846 1000 FEE 437287 17331 6054161 2024-02-24 14:44:37.188 2024-02-24 14:44:37.188 0 FEE 437292 4304 6054162 2024-02-24 14:44:59.192 2024-02-24 14:44:59.192 0 FEE 437293 1425 6054168 2024-02-24 14:45:44.2 2024-02-24 14:45:44.2 4000 FEE 437287 10291 6054169 2024-02-24 14:45:44.2 2024-02-24 14:45:44.2 36000 TIP 437287 652 6054172 2024-02-24 14:45:57.231 2024-02-24 14:45:57.231 2100 FEE 437238 20185 6054173 2024-02-24 14:45:57.231 2024-02-24 14:45:57.231 18900 TIP 437238 7097 6054182 2024-02-24 14:46:28.18 2024-02-24 14:46:28.18 1000 FEE 437297 16950 6054183 2024-02-24 14:46:33.331 2024-02-24 14:46:33.331 100 FEE 437276 16347 6054184 2024-02-24 14:46:33.331 2024-02-24 14:46:33.331 900 TIP 437276 18816 6054185 2024-02-24 14:46:33.693 2024-02-24 14:46:33.693 900 FEE 437276 2232 6054186 2024-02-24 14:46:33.693 2024-02-24 14:46:33.693 8100 TIP 437276 19289 6054200 2024-02-24 14:47:12.667 2024-02-24 14:47:12.667 7700 FEE 437279 12175 6054201 2024-02-24 14:47:12.667 2024-02-24 14:47:12.667 69300 TIP 437279 14370 6054238 2024-02-24 14:48:30.677 2024-02-24 14:48:30.677 1000 FEE 437305 21498 6054241 2024-02-24 14:48:32.185 2024-02-24 14:48:32.185 2700 FEE 437222 18828 6054242 2024-02-24 14:48:32.185 2024-02-24 14:48:32.185 24300 TIP 437222 12930 6054245 2024-02-24 14:48:32.499 2024-02-24 14:48:32.499 2700 FEE 437222 18313 6054246 2024-02-24 14:48:32.499 2024-02-24 14:48:32.499 24300 TIP 437222 16769 6054255 2024-02-24 14:48:40.119 2024-02-24 14:48:40.119 6900 FEE 437233 4313 6054256 2024-02-24 14:48:40.119 2024-02-24 14:48:40.119 62100 TIP 437233 17124 6054257 2024-02-24 14:48:41.05 2024-02-24 14:48:41.05 1000 FEE 437306 15147 6054272 2024-02-24 14:49:03.871 2024-02-24 14:49:03.871 1000 FEE 437205 20973 6054273 2024-02-24 14:49:03.871 2024-02-24 14:49:03.871 9000 TIP 437205 11165 6054274 2024-02-24 14:49:04.037 2024-02-24 14:49:04.037 1000 FEE 437205 1495 6054275 2024-02-24 14:49:04.037 2024-02-24 14:49:04.037 9000 TIP 437205 6360 6054276 2024-02-24 14:49:18.142 2024-02-24 14:49:18.142 100 FEE 437181 10981 6054277 2024-02-24 14:49:18.142 2024-02-24 14:49:18.142 900 TIP 437181 8173 6054292 2024-02-24 14:50:06.223 2024-02-24 14:50:06.223 1000 FEE 437233 11491 6054293 2024-02-24 14:50:06.223 2024-02-24 14:50:06.223 9000 TIP 437233 18678 6054301 2024-02-24 14:51:24.466 2024-02-24 14:51:24.466 0 FEE 437308 20251 6054314 2024-02-24 14:53:45.62 2024-02-24 14:53:45.62 2100 FEE 437281 14267 6054315 2024-02-24 14:53:45.62 2024-02-24 14:53:45.62 18900 TIP 437281 2508 6054316 2024-02-24 14:53:46.164 2024-02-24 14:53:46.164 0 FEE 437312 798 6054328 2024-02-24 14:55:10.732 2024-02-24 14:55:10.732 1000 FEE 436556 18101 6054329 2024-02-24 14:55:10.732 2024-02-24 14:55:10.732 9000 TIP 436556 15180 6054355 2024-02-24 14:57:35.329 2024-02-24 14:57:35.329 1000 FEE 437319 20157 6054360 2024-02-24 14:58:23.961 2024-02-24 14:58:23.961 4000 FEE 437318 20581 6054361 2024-02-24 14:58:23.961 2024-02-24 14:58:23.961 36000 TIP 437318 2775 6053850 2024-02-24 14:23:20.917 2024-02-24 14:23:20.917 2100 FEE 437221 811 6053851 2024-02-24 14:23:20.917 2024-02-24 14:23:20.917 18900 TIP 437221 14906 6053890 2024-02-24 14:25:01.058 2024-02-24 14:25:01.058 100 FEE 437205 21088 6053891 2024-02-24 14:25:01.058 2024-02-24 14:25:01.058 900 TIP 437205 18174 6053904 2024-02-24 14:26:09.648 2024-02-24 14:26:09.648 10000 FEE 437083 18919 6053905 2024-02-24 14:26:09.648 2024-02-24 14:26:09.648 90000 TIP 437083 15732 6053923 2024-02-24 14:26:56.183 2024-02-24 14:26:56.183 1000 FEE 437261 16753 6053952 2024-02-24 14:30:06.179 2024-02-24 14:30:06.179 5000 FEE 436130 16532 6053953 2024-02-24 14:30:06.179 2024-02-24 14:30:06.179 45000 TIP 436130 8289 6053976 2024-02-24 14:34:00.466 2024-02-24 14:34:00.466 1000 FEE 437270 666 6053985 2024-02-24 14:36:09.292 2024-02-24 14:36:09.292 1000 FEE 437273 20245 6054011 2024-02-24 14:36:51.345 2024-02-24 14:36:51.345 1000 FEE 437218 16513 6054012 2024-02-24 14:36:51.345 2024-02-24 14:36:51.345 9000 TIP 437218 19886 6054015 2024-02-24 14:36:52.021 2024-02-24 14:36:52.021 1000 FEE 437218 17526 6054016 2024-02-24 14:36:52.021 2024-02-24 14:36:52.021 9000 TIP 437218 769 6054027 2024-02-24 14:36:56.503 2024-02-24 14:36:56.503 1000 FEE 437233 4118 6054028 2024-02-24 14:36:56.503 2024-02-24 14:36:56.503 9000 TIP 437233 16966 6054039 2024-02-24 14:36:57.373 2024-02-24 14:36:57.373 1000 FEE 437233 1145 6054040 2024-02-24 14:36:57.373 2024-02-24 14:36:57.373 9000 TIP 437233 20481 6054055 2024-02-24 14:36:59.285 2024-02-24 14:36:59.285 1000 FEE 437238 10693 6054056 2024-02-24 14:36:59.285 2024-02-24 14:36:59.285 9000 TIP 437238 17291 6054064 2024-02-24 14:37:57.482 2024-02-24 14:37:57.482 5400 FEE 437190 15484 6054065 2024-02-24 14:37:57.482 2024-02-24 14:37:57.482 48600 TIP 437190 1576 6054076 2024-02-24 14:38:59.639 2024-02-24 14:38:59.639 100000 FEE 437181 6382 6054077 2024-02-24 14:38:59.639 2024-02-24 14:38:59.639 900000 TIP 437181 12959 6054079 2024-02-24 14:39:03.022 2024-02-24 14:39:03.022 2100 FEE 436747 21214 6054080 2024-02-24 14:39:03.022 2024-02-24 14:39:03.022 18900 TIP 436747 14278 6054081 2024-02-24 14:39:11.594 2024-02-24 14:39:11.594 4000 FEE 437276 11314 6054082 2024-02-24 14:39:11.594 2024-02-24 14:39:11.594 36000 TIP 437276 20713 6054098 2024-02-24 14:40:48.65 2024-02-24 14:40:48.65 1000 FEE 427941 1814 6054099 2024-02-24 14:40:48.65 2024-02-24 14:40:48.65 9000 TIP 427941 16485 6054102 2024-02-24 14:40:50.313 2024-02-24 14:40:50.313 1000 FEE 437087 17713 6054103 2024-02-24 14:40:50.313 2024-02-24 14:40:50.313 9000 TIP 437087 2773 6054106 2024-02-24 14:40:51.725 2024-02-24 14:40:51.725 1000 FEE 437087 691 6054107 2024-02-24 14:40:51.725 2024-02-24 14:40:51.725 9000 TIP 437087 9669 6054114 2024-02-24 14:40:57.086 2024-02-24 14:40:57.086 2600 FEE 437245 3396 6054115 2024-02-24 14:40:57.086 2024-02-24 14:40:57.086 23400 TIP 437245 19007 6054135 2024-02-24 14:42:09.05 2024-02-24 14:42:09.05 4000 FEE 437280 12265 6054136 2024-02-24 14:42:09.05 2024-02-24 14:42:09.05 36000 TIP 437280 20642 6054141 2024-02-24 14:42:27.978 2024-02-24 14:42:27.978 1000 FEE 437288 12024 6054144 2024-02-24 14:42:42.515 2024-02-24 14:42:42.515 7100 FEE 436549 18819 6054145 2024-02-24 14:42:42.515 2024-02-24 14:42:42.515 63900 TIP 436549 1310 6054154 2024-02-24 14:43:19.056 2024-02-24 14:43:19.056 1000 FEE 437290 13782 6054155 2024-02-24 14:43:19.611 2024-02-24 14:43:19.611 1000 FEE 437291 20198 6054160 2024-02-24 14:44:34.099 2024-02-24 14:44:34.099 1000 FEE 437293 15213 6054187 2024-02-24 14:46:34.417 2024-02-24 14:46:34.417 9000 FEE 437276 20573 6054188 2024-02-24 14:46:34.417 2024-02-24 14:46:34.417 81000 TIP 437276 6515 6054193 2024-02-24 14:46:51.272 2024-02-24 14:46:51.272 10000 FEE 437297 19378 6054194 2024-02-24 14:46:51.272 2024-02-24 14:46:51.272 90000 TIP 437297 16126 6054195 2024-02-24 14:47:00.804 2024-02-24 14:47:00.804 0 FEE 437296 20646 6054197 2024-02-24 14:47:06.116 2024-02-24 14:47:06.116 11100 FEE 437296 20208 6054198 2024-02-24 14:47:06.116 2024-02-24 14:47:06.116 99900 TIP 437296 2111 6054207 2024-02-24 14:47:52.694 2024-02-24 14:47:52.694 6900 FEE 437246 964 6054208 2024-02-24 14:47:52.694 2024-02-24 14:47:52.694 62100 TIP 437246 1307 6053931 2024-02-24 14:27:15.463 2024-02-24 14:27:15.463 36000 TIP 437261 13097 6053936 2024-02-24 14:27:57.132 2024-02-24 14:27:57.132 10000 FEE 435972 1142 6053937 2024-02-24 14:27:57.132 2024-02-24 14:27:57.132 90000 TIP 435972 21624 6053967 2024-02-24 14:33:11.506 2024-02-24 14:33:11.506 5000 FEE 437209 16282 6053968 2024-02-24 14:33:11.506 2024-02-24 14:33:11.506 45000 TIP 437209 6030 6053986 2024-02-24 14:36:12.923 2024-02-24 14:36:12.923 1000 FEE 437274 20156 6053988 2024-02-24 14:36:18.397 2024-02-24 14:36:18.397 1000 FEE 420205 18995 6053989 2024-02-24 14:36:18.397 2024-02-24 14:36:18.397 9000 TIP 420205 5597 6054007 2024-02-24 14:36:51.041 2024-02-24 14:36:51.041 1000 FEE 437218 7818 6054008 2024-02-24 14:36:51.041 2024-02-24 14:36:51.041 9000 TIP 437218 20163 6054017 2024-02-24 14:36:52.585 2024-02-24 14:36:52.585 1000 FEE 437218 1316 6054018 2024-02-24 14:36:52.585 2024-02-24 14:36:52.585 9000 TIP 437218 17148 6054053 2024-02-24 14:36:59.081 2024-02-24 14:36:59.081 1000 FEE 437238 5160 6054054 2024-02-24 14:36:59.081 2024-02-24 14:36:59.081 9000 TIP 437238 19043 6054091 2024-02-24 14:39:25.775 2024-02-24 14:39:25.775 1000 FEE 437278 3729 6054127 2024-02-24 14:41:48.628 2024-02-24 14:41:48.628 1000 FEE 437286 10490 6054146 2024-02-24 14:42:50.771 2024-02-24 14:42:50.771 0 FEE 437287 6653 6054153 2024-02-24 14:43:17.141 2024-02-24 14:43:17.141 10000 FEE 437289 1429 6054175 2024-02-24 14:46:02.668 2024-02-24 14:46:02.668 100000 FEE 437290 10112 6054176 2024-02-24 14:46:02.668 2024-02-24 14:46:02.668 900000 TIP 437290 19836 6054180 2024-02-24 14:46:17.001 2024-02-24 14:46:17.001 100000 FEE 437081 15226 6054181 2024-02-24 14:46:17.001 2024-02-24 14:46:17.001 900000 TIP 437081 18829 6054202 2024-02-24 14:47:12.857 2024-02-24 14:47:12.857 7700 FEE 437279 5057 6054203 2024-02-24 14:47:12.857 2024-02-24 14:47:12.857 69300 TIP 437279 21472 6054217 2024-02-24 14:47:57.241 2024-02-24 14:47:57.241 100 FEE 437246 11670 6054218 2024-02-24 14:47:57.241 2024-02-24 14:47:57.241 900 TIP 437246 21469 6054224 2024-02-24 14:48:15.085 2024-02-24 14:48:15.085 10100 FEE 437246 17891 6054225 2024-02-24 14:48:15.085 2024-02-24 14:48:15.085 90900 TIP 437246 21058 6054228 2024-02-24 14:48:22.894 2024-02-24 14:48:22.894 100 FEE 437237 6335 6054229 2024-02-24 14:48:22.894 2024-02-24 14:48:22.894 900 TIP 437237 4048 6054249 2024-02-24 14:48:39.533 2024-02-24 14:48:39.533 6900 FEE 437233 11240 6054250 2024-02-24 14:48:39.533 2024-02-24 14:48:39.533 62100 TIP 437233 21402 6054251 2024-02-24 14:48:39.757 2024-02-24 14:48:39.757 6900 FEE 437233 7654 6054252 2024-02-24 14:48:39.757 2024-02-24 14:48:39.757 62100 TIP 437233 2188 6054262 2024-02-24 14:48:57.259 2024-02-24 14:48:57.259 900 FEE 437241 15115 6054263 2024-02-24 14:48:57.259 2024-02-24 14:48:57.259 8100 TIP 437241 21532 6054270 2024-02-24 14:49:03.68 2024-02-24 14:49:03.68 1000 FEE 437205 14465 6054271 2024-02-24 14:49:03.68 2024-02-24 14:49:03.68 9000 TIP 437205 19967 6054290 2024-02-24 14:49:59.152 2024-02-24 14:49:59.152 1000 FEE 437310 5829 6054300 2024-02-24 14:51:15.814 2024-02-24 14:51:15.814 0 FEE 437308 21386 6054306 2024-02-24 14:51:52.474 2024-02-24 14:51:52.474 1000 FEE 437312 5036 6054323 2024-02-24 14:54:57.227 2024-02-24 14:54:57.227 11100 FEE 437312 8423 6054324 2024-02-24 14:54:57.227 2024-02-24 14:54:57.227 99900 TIP 437312 11075 6054344 2024-02-24 14:56:23.126 2024-02-24 14:56:23.126 2100 FEE 437316 19322 6054345 2024-02-24 14:56:23.126 2024-02-24 14:56:23.126 18900 TIP 437316 4083 6054347 2024-02-24 14:56:27.175 2024-02-24 14:56:27.175 2100 FEE 437312 16939 6054348 2024-02-24 14:56:27.175 2024-02-24 14:56:27.175 18900 TIP 437312 2042 6054357 2024-02-24 14:57:52.146 2024-02-24 14:57:52.146 1000 FEE 437311 16178 6054358 2024-02-24 14:57:52.146 2024-02-24 14:57:52.146 9000 TIP 437311 4062 6054368 2024-02-24 15:00:32.634 2024-02-24 15:00:32.634 1000 FEE 436218 899 6054369 2024-02-24 15:00:32.634 2024-02-24 15:00:32.634 9000 TIP 436218 9438 6054374 2024-02-24 15:01:51.155 2024-02-24 15:01:51.155 4000 FEE 437326 7553 6054375 2024-02-24 15:01:51.155 2024-02-24 15:01:51.155 36000 TIP 437326 2329 6054380 2024-02-24 15:02:16.659 2024-02-24 15:02:16.659 1000 POLL 436759 18220 6054386 2024-02-24 15:02:58.377 2024-02-24 15:02:58.377 1000 FEE 437332 21588 6054417 2024-02-24 15:06:17.24 2024-02-24 15:06:17.24 1400 FEE 437331 13517 6054418 2024-02-24 15:06:17.24 2024-02-24 15:06:17.24 12600 TIP 437331 21040 6054433 2024-02-24 15:07:10.819 2024-02-24 15:07:10.819 100000 FEE 437339 10056 6054446 2024-02-24 15:07:50.932 2024-02-24 15:07:50.932 1000 FEE 437342 1603 6054459 2024-02-24 15:10:18.559 2024-02-24 15:10:18.559 0 FEE 437346 17517 6054469 2024-02-24 15:11:43.008 2024-02-24 15:11:43.008 100 FEE 437031 1650 6054470 2024-02-24 15:11:43.008 2024-02-24 15:11:43.008 900 TIP 437031 19471 6054478 2024-02-24 15:12:53.379 2024-02-24 15:12:53.379 1000 FEE 437319 16406 6054479 2024-02-24 15:12:53.379 2024-02-24 15:12:53.379 9000 TIP 437319 8998 6054482 2024-02-24 15:13:11.04 2024-02-24 15:13:11.04 0 FEE 437350 9084 6054494 2024-02-24 15:16:52.016 2024-02-24 15:16:52.016 10000 FEE 437238 15139 6054495 2024-02-24 15:16:52.016 2024-02-24 15:16:52.016 90000 TIP 437238 977 6054512 2024-02-24 15:20:31.048 2024-02-24 15:20:31.048 1000 FEE 437359 13843 6054518 2024-02-24 15:20:41.661 2024-02-24 15:20:41.661 2100 FEE 436806 19458 6054519 2024-02-24 15:20:41.661 2024-02-24 15:20:41.661 18900 TIP 436806 673 6054523 2024-02-24 15:20:55.426 2024-02-24 15:20:55.426 100 FEE 436769 9347 6054524 2024-02-24 15:20:55.426 2024-02-24 15:20:55.426 900 TIP 436769 19938 6054543 2024-02-24 15:23:48.06 2024-02-24 15:23:48.06 200 FEE 437168 14905 6054544 2024-02-24 15:23:48.06 2024-02-24 15:23:48.06 1800 TIP 437168 14015 6054553 2024-02-24 15:23:49.4 2024-02-24 15:23:49.4 200 FEE 437168 1823 6054554 2024-02-24 15:23:49.4 2024-02-24 15:23:49.4 1800 TIP 437168 21207 6054557 2024-02-24 15:23:49.719 2024-02-24 15:23:49.719 200 FEE 437168 16329 6054558 2024-02-24 15:23:49.719 2024-02-24 15:23:49.719 1800 TIP 437168 2390 6054567 2024-02-24 15:24:32.906 2024-02-24 15:24:32.906 1000 FEE 437363 19924 6054569 2024-02-24 15:25:24.386 2024-02-24 15:25:24.386 1000 FEE 437364 19812 6054575 2024-02-24 15:26:22.574 2024-02-24 15:26:22.574 1000 FEE 437343 19992 6054576 2024-02-24 15:26:22.574 2024-02-24 15:26:22.574 9000 TIP 437343 17602 6054582 2024-02-24 15:28:56.211 2024-02-24 15:28:56.211 1000 FEE 437366 7960 6054608 2024-02-24 15:39:38.95 2024-02-24 15:39:38.95 2100 FEE 437370 9863 6054609 2024-02-24 15:39:38.95 2024-02-24 15:39:38.95 18900 TIP 437370 19016 6054639 2024-02-24 15:40:50.135 2024-02-24 15:40:50.135 1000 FEE 436595 17798 6054640 2024-02-24 15:40:50.135 2024-02-24 15:40:50.135 9000 TIP 436595 19038 6054649 2024-02-24 15:40:56.101 2024-02-24 15:40:56.101 1000 FEE 436596 19663 6054650 2024-02-24 15:40:56.101 2024-02-24 15:40:56.101 9000 TIP 436596 8416 6054669 2024-02-24 15:42:10.953 2024-02-24 15:42:10.953 1000 FEE 437377 994 6054677 2024-02-24 15:43:26.253 2024-02-24 15:43:26.253 1000 FEE 436631 1244 6054678 2024-02-24 15:43:26.253 2024-02-24 15:43:26.253 9000 TIP 436631 2748 6054684 2024-02-24 15:44:03.314 2024-02-24 15:44:03.314 11000 FEE 437379 8416 6054695 2024-02-24 15:45:40.238 2024-02-24 15:45:40.238 1000 FEE 436633 16456 6053969 2024-02-24 14:33:11.802 2024-02-24 14:33:11.802 5000 FEE 437209 1890 6053970 2024-02-24 14:33:11.802 2024-02-24 14:33:11.802 45000 TIP 437209 20599 6053979 2024-02-24 14:34:53.333 2024-02-24 14:34:53.333 1000 FEE 437272 21395 6054019 2024-02-24 14:36:55.987 2024-02-24 14:36:55.987 1000 FEE 437233 11038 6054020 2024-02-24 14:36:55.987 2024-02-24 14:36:55.987 9000 TIP 437233 6136 6054025 2024-02-24 14:36:56.377 2024-02-24 14:36:56.377 1000 FEE 437276 11716 6054026 2024-02-24 14:36:56.377 2024-02-24 14:36:56.377 9000 TIP 437276 6384 6054085 2024-02-24 14:39:15.376 2024-02-24 14:39:15.376 4000 FEE 437276 19346 6054086 2024-02-24 14:39:15.376 2024-02-24 14:39:15.376 36000 TIP 437276 19506 6054087 2024-02-24 14:39:15.911 2024-02-24 14:39:15.911 4000 FEE 437276 21402 6054088 2024-02-24 14:39:15.911 2024-02-24 14:39:15.911 36000 TIP 437276 12562 6054092 2024-02-24 14:39:28.247 2024-02-24 14:39:28.247 1000 FEE 437279 1394 6054095 2024-02-24 14:40:12.219 2024-02-24 14:40:12.219 2100 FEE 437012 10549 6054096 2024-02-24 14:40:12.219 2024-02-24 14:40:12.219 18900 TIP 437012 8416 6054112 2024-02-24 14:40:55.217 2024-02-24 14:40:55.217 10000 FEE 437273 1723 6054113 2024-02-24 14:40:55.217 2024-02-24 14:40:55.217 90000 TIP 437273 7185 6054123 2024-02-24 14:41:48.149 2024-02-24 14:41:48.149 700 FEE 437274 17727 6054124 2024-02-24 14:41:48.149 2024-02-24 14:41:48.149 6300 TIP 437274 21332 6054142 2024-02-24 14:42:37.627 2024-02-24 14:42:37.627 7100 FEE 436596 2952 6054143 2024-02-24 14:42:37.627 2024-02-24 14:42:37.627 63900 TIP 436596 9985 6054147 2024-02-24 14:42:52.975 2024-02-24 14:42:52.975 7100 FEE 436453 4574 6054148 2024-02-24 14:42:52.975 2024-02-24 14:42:52.975 63900 TIP 436453 5057 6054149 2024-02-24 14:43:01.389 2024-02-24 14:43:01.389 400000 FEE 437218 623 6054150 2024-02-24 14:43:01.389 2024-02-24 14:43:01.389 3600000 TIP 437218 18930 6054152 2024-02-24 14:43:02.676 2024-02-24 14:43:02.676 0 FEE 437285 21083 6054156 2024-02-24 14:43:29.783 2024-02-24 14:43:29.783 20000 FEE 437238 19484 6054157 2024-02-24 14:43:29.783 2024-02-24 14:43:29.783 180000 TIP 437238 18344 6054166 2024-02-24 14:45:13.987 2024-02-24 14:45:13.987 2100 FEE 437254 18626 6054167 2024-02-24 14:45:13.987 2024-02-24 14:45:13.987 18900 TIP 437254 16788 6054174 2024-02-24 14:45:58.401 2024-02-24 14:45:58.401 1000 FEE 437296 1605 6054237 2024-02-24 14:48:30.028 2024-02-24 14:48:30.028 1000 FEE 437304 6602 6054239 2024-02-24 14:48:31.957 2024-02-24 14:48:31.957 2700 FEE 437222 2327 6054240 2024-02-24 14:48:31.957 2024-02-24 14:48:31.957 24300 TIP 437222 11967 6054247 2024-02-24 14:48:39.384 2024-02-24 14:48:39.384 6900 FEE 437233 6653 6054248 2024-02-24 14:48:39.384 2024-02-24 14:48:39.384 62100 TIP 437233 16808 6054268 2024-02-24 14:49:02.472 2024-02-24 14:49:02.472 1000 FEE 437307 762 6054280 2024-02-24 14:49:19.008 2024-02-24 14:49:19.008 900 FEE 437181 8954 6054281 2024-02-24 14:49:19.008 2024-02-24 14:49:19.008 8100 TIP 437181 17106 6054282 2024-02-24 14:49:20.026 2024-02-24 14:49:20.026 9000 FEE 437181 1401 6054283 2024-02-24 14:49:20.026 2024-02-24 14:49:20.026 81000 TIP 437181 4322 6054309 2024-02-24 14:52:21.513 2024-02-24 14:52:21.513 0 FEE 437312 16284 6054312 2024-02-24 14:53:05.924 2024-02-24 14:53:05.924 1000 FEE 437313 20257 6054322 2024-02-24 14:54:30.173 2024-02-24 14:54:30.173 0 FEE 437312 11621 6054384 2024-02-24 15:02:49.903 2024-02-24 15:02:49.903 0 FEE 437328 21624 6054401 2024-02-24 15:04:26.825 2024-02-24 15:04:26.825 1000 FEE 428323 12721 6054402 2024-02-24 15:04:26.825 2024-02-24 15:04:26.825 9000 TIP 428323 12265 6054405 2024-02-24 15:04:30.811 2024-02-24 15:04:30.811 1000 FEE 437335 19103 6054406 2024-02-24 15:04:49.93 2024-02-24 15:04:49.93 7100 FEE 437301 3400 6054407 2024-02-24 15:04:49.93 2024-02-24 15:04:49.93 63900 TIP 437301 886 6054463 2024-02-24 15:11:11.899 2024-02-24 15:11:11.899 100 FEE 437146 6594 6054464 2024-02-24 15:11:11.899 2024-02-24 15:11:11.899 900 TIP 437146 20623 6054471 2024-02-24 15:11:43.227 2024-02-24 15:11:43.227 900 FEE 437031 12277 6054472 2024-02-24 15:11:43.227 2024-02-24 15:11:43.227 8100 TIP 437031 3347 6054539 2024-02-24 15:22:28.258 2024-02-24 15:22:28.258 4000 FEE 437031 18392 6054540 2024-02-24 15:22:28.258 2024-02-24 15:22:28.258 36000 TIP 437031 17696 6054561 2024-02-24 15:23:53.416 2024-02-24 15:23:53.416 100 FEE 437168 1576 6054562 2024-02-24 15:23:53.416 2024-02-24 15:23:53.416 900 TIP 437168 6717 6054564 2024-02-24 15:24:07.548 2024-02-24 15:24:07.548 1000 FEE 436556 18714 6054565 2024-02-24 15:24:07.548 2024-02-24 15:24:07.548 9000 TIP 436556 9438 6054580 2024-02-24 15:27:38.299 2024-02-24 15:27:38.299 1000 FEE 437365 18626 6054595 2024-02-24 15:31:20.863 2024-02-24 15:31:20.863 1000 FEE 437077 6537 6054596 2024-02-24 15:31:20.863 2024-02-24 15:31:20.863 9000 TIP 437077 1493 6054597 2024-02-24 15:31:26.608 2024-02-24 15:31:26.608 1000 FEE 436811 21051 6054598 2024-02-24 15:31:26.608 2024-02-24 15:31:26.608 9000 TIP 436811 15536 6054619 2024-02-24 15:40:05.351 2024-02-24 15:40:05.351 1000 FEE 436734 11158 6054620 2024-02-24 15:40:05.351 2024-02-24 15:40:05.351 9000 TIP 436734 18446 6054621 2024-02-24 15:40:05.757 2024-02-24 15:40:05.757 1000 FEE 436734 19403 6054622 2024-02-24 15:40:05.757 2024-02-24 15:40:05.757 9000 TIP 436734 18101 6054629 2024-02-24 15:40:44.032 2024-02-24 15:40:44.032 1000 FEE 436591 2232 6054630 2024-02-24 15:40:44.032 2024-02-24 15:40:44.032 9000 TIP 436591 2000 6054709 2024-02-24 15:45:47.225 2024-02-24 15:45:47.225 1000 FEE 436644 9290 6054710 2024-02-24 15:45:47.225 2024-02-24 15:45:47.225 9000 TIP 436644 16284 6054736 2024-02-24 15:49:48.533 2024-02-24 15:49:48.533 2100 FEE 437218 1624 6054737 2024-02-24 15:49:48.533 2024-02-24 15:49:48.533 18900 TIP 437218 5791 6054739 2024-02-24 15:50:09.324 2024-02-24 15:50:09.324 1000 FEE 437042 19639 6054740 2024-02-24 15:50:09.324 2024-02-24 15:50:09.324 9000 TIP 437042 20981 6054760 2024-02-24 15:51:49.541 2024-02-24 15:51:49.541 0 FEE 437385 19660 6054761 2024-02-24 15:51:56.799 2024-02-24 15:51:56.799 1000 FEE 437386 5129 6054794 2024-02-24 15:53:06.408 2024-02-24 15:53:06.408 7700 FEE 437269 13782 6054795 2024-02-24 15:53:06.408 2024-02-24 15:53:06.408 69300 TIP 437269 6030 6054822 2024-02-24 15:54:19.176 2024-02-24 15:54:19.176 7700 FEE 437269 3686 6054823 2024-02-24 15:54:19.176 2024-02-24 15:54:19.176 69300 TIP 437269 12368 6054832 2024-02-24 15:54:19.983 2024-02-24 15:54:19.983 7700 FEE 437269 19652 6054833 2024-02-24 15:54:19.983 2024-02-24 15:54:19.983 69300 TIP 437269 9351 6054840 2024-02-24 15:54:20.439 2024-02-24 15:54:20.439 7700 FEE 437269 16301 6054841 2024-02-24 15:54:20.439 2024-02-24 15:54:20.439 69300 TIP 437269 19284 6054881 2024-02-24 15:56:03.129 2024-02-24 15:56:03.129 1000 FEE 437395 1823 6054895 2024-02-24 15:56:22.195 2024-02-24 15:56:22.195 6900 FEE 437356 7891 6054896 2024-02-24 15:56:22.195 2024-02-24 15:56:22.195 62100 TIP 437356 17201 6054919 2024-02-24 16:00:03.449 2024-02-24 16:00:03.449 10000 FEE 437269 20162 6054920 2024-02-24 16:00:03.449 2024-02-24 16:00:03.449 90000 TIP 437269 19821 6054925 2024-02-24 16:00:04.952 2024-02-24 16:00:04.952 1000 FEE 436677 977 6054926 2024-02-24 16:00:04.952 2024-02-24 16:00:04.952 9000 TIP 436677 10944 6054928 2024-02-24 16:00:05.396 2024-02-24 16:00:05.396 1000 FEE 436677 16970 6054929 2024-02-24 16:00:05.396 2024-02-24 16:00:05.396 9000 TIP 436677 20059 6054950 2024-02-24 16:00:31.864 2024-02-24 16:00:31.864 1000 FEE 437406 1960 6054957 2024-02-24 16:01:13.045 2024-02-24 16:01:13.045 6900 FEE 437399 1237 6054958 2024-02-24 16:01:13.045 2024-02-24 16:01:13.045 62100 TIP 437399 6058 6054963 2024-02-24 16:01:44.695 2024-02-24 16:01:44.695 4000 FEE 437409 21026 6054964 2024-02-24 16:01:44.695 2024-02-24 16:01:44.695 36000 TIP 437409 5499 6055037 2024-02-24 16:09:25.539 2024-02-24 16:09:25.539 1000 FEE 437417 5806 6055038 2024-02-24 16:09:30.814 2024-02-24 16:09:30.814 10000 FEE 437411 4014 6055039 2024-02-24 16:09:30.814 2024-02-24 16:09:30.814 90000 TIP 437411 12819 6055051 2024-02-24 16:11:59.513 2024-02-24 16:11:59.513 10000 FEE 437238 1585 6054045 2024-02-24 14:36:57.928 2024-02-24 14:36:57.928 1000 FEE 437233 1585 6054046 2024-02-24 14:36:57.928 2024-02-24 14:36:57.928 9000 TIP 437233 16816 6054047 2024-02-24 14:36:58.107 2024-02-24 14:36:58.107 1000 FEE 437233 10668 6054048 2024-02-24 14:36:58.107 2024-02-24 14:36:58.107 9000 TIP 437233 6499 6054051 2024-02-24 14:36:58.894 2024-02-24 14:36:58.894 1000 FEE 437238 9347 6054052 2024-02-24 14:36:58.894 2024-02-24 14:36:58.894 9000 TIP 437238 6137 6054057 2024-02-24 14:36:59.527 2024-02-24 14:36:59.527 1000 FEE 437238 16667 6054058 2024-02-24 14:36:59.527 2024-02-24 14:36:59.527 9000 TIP 437238 6653 6054072 2024-02-24 14:38:45.467 2024-02-24 14:38:45.467 2100 FEE 437222 17157 6054073 2024-02-24 14:38:45.467 2024-02-24 14:38:45.467 18900 TIP 437222 11898 6054083 2024-02-24 14:39:14.869 2024-02-24 14:39:14.869 4000 FEE 437276 18837 6054084 2024-02-24 14:39:14.869 2024-02-24 14:39:14.869 36000 TIP 437276 20327 6054170 2024-02-24 14:45:46.18 2024-02-24 14:45:46.18 1000 FEE 437294 4502 6054178 2024-02-24 14:46:06.683 2024-02-24 14:46:06.683 10000 FEE 437292 18321 6054179 2024-02-24 14:46:06.683 2024-02-24 14:46:06.683 90000 TIP 437292 20381 6054210 2024-02-24 14:47:55.671 2024-02-24 14:47:55.671 100 FEE 437246 18426 6054211 2024-02-24 14:47:55.671 2024-02-24 14:47:55.671 900 TIP 437246 18235 6054219 2024-02-24 14:47:57.743 2024-02-24 14:47:57.743 100 FEE 437246 659 6054220 2024-02-24 14:47:57.743 2024-02-24 14:47:57.743 900 TIP 437246 14370 6054232 2024-02-24 14:48:24.069 2024-02-24 14:48:24.069 9000 FEE 437237 4378 6054233 2024-02-24 14:48:24.069 2024-02-24 14:48:24.069 81000 TIP 437237 4074 6054234 2024-02-24 14:48:26.585 2024-02-24 14:48:26.585 4000 FEE 437299 17162 6054235 2024-02-24 14:48:26.585 2024-02-24 14:48:26.585 36000 TIP 437299 5425 6054258 2024-02-24 14:48:42.306 2024-02-24 14:48:42.306 6900 FEE 437233 13547 6054259 2024-02-24 14:48:42.306 2024-02-24 14:48:42.306 62100 TIP 437233 21386 6054284 2024-02-24 14:49:23.321 2024-02-24 14:49:23.321 1000 FEE 437087 19902 6054285 2024-02-24 14:49:23.321 2024-02-24 14:49:23.321 9000 TIP 437087 21014 6054334 2024-02-24 14:55:27.483 2024-02-24 14:55:27.483 500 FEE 436901 16988 6054335 2024-02-24 14:55:27.483 2024-02-24 14:55:27.483 4500 TIP 436901 685 6054337 2024-02-24 14:55:39.025 2024-02-24 14:55:39.025 500 FEE 437160 1433 6054338 2024-02-24 14:55:39.025 2024-02-24 14:55:39.025 4500 TIP 437160 17602 6054341 2024-02-24 14:56:09.579 2024-02-24 14:56:09.579 1000 FEE 437317 16532 6054371 2024-02-24 15:00:55.667 2024-02-24 15:00:55.667 1000 FEE 437326 2330 6054385 2024-02-24 15:02:51.065 2024-02-24 15:02:51.065 1000 FEE 437331 2327 6054397 2024-02-24 15:04:17.723 2024-02-24 15:04:17.723 10000 FEE 437333 12245 6054409 2024-02-24 15:05:16.785 2024-02-24 15:05:16.785 700 FEE 437325 9833 6054410 2024-02-24 15:05:16.785 2024-02-24 15:05:16.785 6300 TIP 437325 880 6054421 2024-02-24 15:06:35.147 2024-02-24 15:06:35.147 1000 FEE 437337 9345 6054426 2024-02-24 15:06:49.999 2024-02-24 15:06:49.999 9000 FEE 437233 21455 6054427 2024-02-24 15:06:49.999 2024-02-24 15:06:49.999 81000 TIP 437233 15239 6054437 2024-02-24 15:07:24.447 2024-02-24 15:07:24.447 6900 FEE 437203 21083 6054438 2024-02-24 15:07:24.447 2024-02-24 15:07:24.447 62100 TIP 437203 4259 6054439 2024-02-24 15:07:24.628 2024-02-24 15:07:24.628 6900 FEE 437203 11075 6054440 2024-02-24 15:07:24.628 2024-02-24 15:07:24.628 62100 TIP 437203 989 6054441 2024-02-24 15:07:24.778 2024-02-24 15:07:24.778 6900 FEE 437203 10638 6054442 2024-02-24 15:07:24.778 2024-02-24 15:07:24.778 62100 TIP 437203 5791 6054476 2024-02-24 15:12:53.058 2024-02-24 15:12:53.058 1000 FEE 437319 12346 6054477 2024-02-24 15:12:53.058 2024-02-24 15:12:53.058 9000 TIP 437319 2326 6054534 2024-02-24 15:21:28.216 2024-02-24 15:21:28.216 400 FEE 437359 1105 6054535 2024-02-24 15:21:28.216 2024-02-24 15:21:28.216 3600 TIP 437359 5597 6054542 2024-02-24 15:23:03.515 2024-02-24 15:23:03.515 1000 FEE 437361 642 6054593 2024-02-24 15:31:09.833 2024-02-24 15:31:09.833 100000 FEE 437370 12769 6054617 2024-02-24 15:40:04.962 2024-02-24 15:40:04.962 1000 FEE 436734 18680 6054618 2024-02-24 15:40:04.962 2024-02-24 15:40:04.962 9000 TIP 436734 9084 6054627 2024-02-24 15:40:43.577 2024-02-24 15:40:43.577 1000 FEE 436591 3990 6054628 2024-02-24 15:40:43.577 2024-02-24 15:40:43.577 9000 TIP 436591 20452 6054658 2024-02-24 15:41:16.104 2024-02-24 15:41:16.104 1000 FEE 436601 18832 6054659 2024-02-24 15:41:16.104 2024-02-24 15:41:16.104 9000 TIP 436601 12768 6054666 2024-02-24 15:41:29.096 2024-02-24 15:41:29.096 1000 FEE 437375 10586 6054681 2024-02-24 15:43:27.498 2024-02-24 15:43:27.498 1000 FEE 436631 20624 6054682 2024-02-24 15:43:27.498 2024-02-24 15:43:27.498 9000 TIP 436631 15938 6054687 2024-02-24 15:45:03.962 2024-02-24 15:45:03.962 1000 FEE 437381 5578 6054717 2024-02-24 15:47:10.901 2024-02-24 15:47:10.901 1000 FEE 437383 1064 6054720 2024-02-24 15:47:41.957 2024-02-24 15:47:41.957 1000 FEE 437384 8289 6054733 2024-02-24 15:49:33.325 2024-02-24 15:49:33.325 1000 FEE 437385 15510 6054749 2024-02-24 15:50:28.207 2024-02-24 15:50:28.207 2100 FEE 436943 20500 6054750 2024-02-24 15:50:28.207 2024-02-24 15:50:28.207 18900 TIP 436943 16754 6054751 2024-02-24 15:50:38.35 2024-02-24 15:50:38.35 2100 FEE 436942 2065 6054752 2024-02-24 15:50:38.35 2024-02-24 15:50:38.35 18900 TIP 436942 4062 6054770 2024-02-24 15:53:04.309 2024-02-24 15:53:04.309 7700 FEE 437269 4027 6054771 2024-02-24 15:53:04.309 2024-02-24 15:53:04.309 69300 TIP 437269 11527 6054772 2024-02-24 15:53:04.523 2024-02-24 15:53:04.523 7700 FEE 437269 6594 6054773 2024-02-24 15:53:04.523 2024-02-24 15:53:04.523 69300 TIP 437269 10719 6054778 2024-02-24 15:53:05.161 2024-02-24 15:53:05.161 7700 FEE 437269 11670 6054779 2024-02-24 15:53:05.161 2024-02-24 15:53:05.161 69300 TIP 437269 20687 6054816 2024-02-24 15:54:03.388 2024-02-24 15:54:03.388 500 FEE 437381 21343 6054817 2024-02-24 15:54:03.388 2024-02-24 15:54:03.388 4500 TIP 437381 9758 6054820 2024-02-24 15:54:16.108 2024-02-24 15:54:16.108 2100 FEE 437372 16858 6054821 2024-02-24 15:54:16.108 2024-02-24 15:54:16.108 18900 TIP 437372 18526 6054830 2024-02-24 15:54:19.872 2024-02-24 15:54:19.872 7700 FEE 437269 14905 6054831 2024-02-24 15:54:19.872 2024-02-24 15:54:19.872 69300 TIP 437269 17201 6054877 2024-02-24 15:55:15.785 2024-02-24 15:55:15.785 1000 FEE 437392 8376 6054883 2024-02-24 15:56:15.213 2024-02-24 15:56:15.213 1000 FEE 436899 3683 6054884 2024-02-24 15:56:15.213 2024-02-24 15:56:15.213 9000 TIP 436899 14267 6054889 2024-02-24 15:56:17.085 2024-02-24 15:56:17.085 1000 FEE 436899 20745 6054890 2024-02-24 15:56:17.085 2024-02-24 15:56:17.085 9000 TIP 436899 666 6054900 2024-02-24 15:57:07.128 2024-02-24 15:57:07.128 1000 FEE 437397 2176 6054912 2024-02-24 15:59:26.692 2024-02-24 15:59:26.692 500 FEE 436472 19664 6054913 2024-02-24 15:59:26.692 2024-02-24 15:59:26.692 4500 TIP 436472 2285 6054914 2024-02-24 15:59:26.972 2024-02-24 15:59:26.972 100000 FEE 437401 10096 6054927 2024-02-24 16:00:05.055 2024-02-24 16:00:05.055 100000 FEE 437403 19132 6054937 2024-02-24 16:00:12.78 2024-02-24 16:00:12.78 1000 FEE 436726 16355 6054938 2024-02-24 16:00:12.78 2024-02-24 16:00:12.78 9000 TIP 436726 894 6054943 2024-02-24 16:00:26.95 2024-02-24 16:00:26.95 1000 FEE 437405 16542 6054212 2024-02-24 14:47:56.132 2024-02-24 14:47:56.132 100000 FEE 437301 18051 6054221 2024-02-24 14:48:03.592 2024-02-24 14:48:03.592 0 FEE 437296 17519 6054223 2024-02-24 14:48:15.045 2024-02-24 14:48:15.045 1000 FEE 437302 11956 6054230 2024-02-24 14:48:23.18 2024-02-24 14:48:23.18 900 FEE 437237 21058 6054231 2024-02-24 14:48:23.18 2024-02-24 14:48:23.18 8100 TIP 437237 12024 6054253 2024-02-24 14:48:39.921 2024-02-24 14:48:39.921 6900 FEE 437233 17526 6054254 2024-02-24 14:48:39.921 2024-02-24 14:48:39.921 62100 TIP 437233 6268 6054260 2024-02-24 14:48:56.427 2024-02-24 14:48:56.427 100 FEE 437241 17446 6054261 2024-02-24 14:48:56.427 2024-02-24 14:48:56.427 900 TIP 437241 18314 6054264 2024-02-24 14:48:57.327 2024-02-24 14:48:57.327 9000 FEE 437241 9184 6054265 2024-02-24 14:48:57.327 2024-02-24 14:48:57.327 81000 TIP 437241 18601 6054266 2024-02-24 14:49:00.761 2024-02-24 14:49:00.761 2100 FEE 437300 15088 6054267 2024-02-24 14:49:00.761 2024-02-24 14:49:00.761 18900 TIP 437300 12965 6054286 2024-02-24 14:49:37.303 2024-02-24 14:49:37.303 1000 FEE 437308 19502 6054294 2024-02-24 14:50:53.05 2024-02-24 14:50:53.05 1000 FEE 437311 20602 6054295 2024-02-24 14:50:55.671 2024-02-24 14:50:55.671 1000 FEE 437270 2156 6054296 2024-02-24 14:50:55.671 2024-02-24 14:50:55.671 9000 TIP 437270 11275 6054304 2024-02-24 14:51:46.957 2024-02-24 14:51:46.957 7700 FEE 437311 13878 6054305 2024-02-24 14:51:46.957 2024-02-24 14:51:46.957 69300 TIP 437311 910 6054310 2024-02-24 14:53:00.452 2024-02-24 14:53:00.452 0 FEE 437312 686 6054317 2024-02-24 14:53:55.252 2024-02-24 14:53:55.252 6900 FEE 437308 10549 6054318 2024-02-24 14:53:55.252 2024-02-24 14:53:55.252 62100 TIP 437308 18392 6054321 2024-02-24 14:54:18.203 2024-02-24 14:54:18.203 0 FEE 437312 5306 6054326 2024-02-24 14:55:10.284 2024-02-24 14:55:10.284 500 FEE 436556 11776 6054327 2024-02-24 14:55:10.284 2024-02-24 14:55:10.284 4500 TIP 436556 21520 6054364 2024-02-24 14:59:04.569 2024-02-24 14:59:04.569 1000 FEE 437322 17209 6054387 2024-02-24 15:03:01.707 2024-02-24 15:03:01.707 0 FEE 437330 9863 6054394 2024-02-24 15:04:00.446 2024-02-24 15:04:00.446 1000000 FEE 436281 19770 6054395 2024-02-24 15:04:00.446 2024-02-24 15:04:00.446 9000000 TIP 436281 20251 6054413 2024-02-24 15:05:17.493 2024-02-24 15:05:17.493 700 FEE 437325 3717 6054414 2024-02-24 15:05:17.493 2024-02-24 15:05:17.493 6300 TIP 437325 19284 6054419 2024-02-24 15:06:17.42 2024-02-24 15:06:17.42 700 FEE 437331 18629 6054420 2024-02-24 15:06:17.42 2024-02-24 15:06:17.42 6300 TIP 437331 1631 6054424 2024-02-24 15:06:48.887 2024-02-24 15:06:48.887 900 FEE 437233 928 6054425 2024-02-24 15:06:48.887 2024-02-24 15:06:48.887 8100 TIP 437233 10094 6054443 2024-02-24 15:07:24.914 2024-02-24 15:07:24.914 6900 FEE 437203 20687 6054444 2024-02-24 15:07:24.914 2024-02-24 15:07:24.914 62100 TIP 437203 16679 6054486 2024-02-24 15:15:27.348 2024-02-24 15:15:27.348 1000 FEE 437351 660 6054490 2024-02-24 15:16:22.116 2024-02-24 15:16:22.116 1000 FEE 437348 19087 6054491 2024-02-24 15:16:22.116 2024-02-24 15:16:22.116 9000 TIP 437348 16966 6054501 2024-02-24 15:18:10.315 2024-02-24 15:18:10.315 1000 FEE 437344 19289 6054502 2024-02-24 15:18:10.315 2024-02-24 15:18:10.315 9000 TIP 437344 19890 6054505 2024-02-24 15:19:31.757 2024-02-24 15:19:31.757 1000 FEE 437356 1751 6054545 2024-02-24 15:23:48.094 2024-02-24 15:23:48.094 200 FEE 437168 1605 6054546 2024-02-24 15:23:48.094 2024-02-24 15:23:48.094 1800 TIP 437168 4238 6054566 2024-02-24 15:24:15.144 2024-02-24 15:24:15.144 1000 FEE 437362 21178 6054578 2024-02-24 15:27:36.643 2024-02-24 15:27:36.643 7100 FEE 437276 7659 6054579 2024-02-24 15:27:36.643 2024-02-24 15:27:36.643 63900 TIP 437276 6499 6054583 2024-02-24 15:29:00.364 2024-02-24 15:29:00.364 1000 FEE 437367 20745 6054594 2024-02-24 15:31:16.492 2024-02-24 15:31:16.492 1000 FEE 437371 18270 6054631 2024-02-24 15:40:44.58 2024-02-24 15:40:44.58 1000 FEE 436591 18235 6054632 2024-02-24 15:40:44.58 2024-02-24 15:40:44.58 9000 TIP 436591 18664 6054243 2024-02-24 14:48:32.321 2024-02-24 14:48:32.321 2700 FEE 437222 21413 6054244 2024-02-24 14:48:32.321 2024-02-24 14:48:32.321 24300 TIP 437222 2502 6054278 2024-02-24 14:49:18.483 2024-02-24 14:49:18.483 2100 FEE 437287 20788 6054279 2024-02-24 14:49:18.483 2024-02-24 14:49:18.483 18900 TIP 437287 21012 6054330 2024-02-24 14:55:11.117 2024-02-24 14:55:11.117 500 FEE 436556 16357 6054331 2024-02-24 14:55:11.117 2024-02-24 14:55:11.117 4500 TIP 436556 19462 6054350 2024-02-24 14:56:41.908 2024-02-24 14:56:41.908 1000 FEE 437233 21208 6054351 2024-02-24 14:56:41.908 2024-02-24 14:56:41.908 9000 TIP 437233 12057 6054373 2024-02-24 15:01:44.66 2024-02-24 15:01:44.66 1000 FEE 437327 16282 6054381 2024-02-24 15:02:19.029 2024-02-24 15:02:19.029 1000 FEE 437330 1647 6054382 2024-02-24 15:02:49.737 2024-02-24 15:02:49.737 2100 FEE 437183 1825 6054383 2024-02-24 15:02:49.737 2024-02-24 15:02:49.737 18900 TIP 437183 16355 6054393 2024-02-24 15:03:58.207 2024-02-24 15:03:58.207 0 FEE 437331 21491 6054422 2024-02-24 15:06:48.686 2024-02-24 15:06:48.686 100 FEE 437233 19572 6054423 2024-02-24 15:06:48.686 2024-02-24 15:06:48.686 900 TIP 437233 2342 6054428 2024-02-24 15:06:51.682 2024-02-24 15:06:51.682 100000 FEE 437338 20110 6054434 2024-02-24 15:07:11.184 2024-02-24 15:07:11.184 1000 FEE 437340 18714 6054445 2024-02-24 15:07:36.023 2024-02-24 15:07:36.023 1000 FEE 437341 2367 6054465 2024-02-24 15:11:12.104 2024-02-24 15:11:12.104 900 FEE 437146 21369 6054466 2024-02-24 15:11:12.104 2024-02-24 15:11:12.104 8100 TIP 437146 803 6054492 2024-02-24 15:16:47.427 2024-02-24 15:16:47.427 2100 FEE 436556 12930 6054493 2024-02-24 15:16:47.427 2024-02-24 15:16:47.427 18900 TIP 436556 19911 6054507 2024-02-24 15:19:50.636 2024-02-24 15:19:50.636 2100 FEE 436883 12291 6054508 2024-02-24 15:19:50.636 2024-02-24 15:19:50.636 18900 TIP 436883 20490 6054522 2024-02-24 15:20:53.329 2024-02-24 15:20:53.329 21000 DONT_LIKE_THIS 436876 20998 6054530 2024-02-24 15:21:12.198 2024-02-24 15:21:12.198 2100 FEE 437355 1354 6054531 2024-02-24 15:21:12.198 2024-02-24 15:21:12.198 18900 TIP 437355 18904 6054547 2024-02-24 15:23:48.33 2024-02-24 15:23:48.33 200 FEE 437168 1740 6054548 2024-02-24 15:23:48.33 2024-02-24 15:23:48.33 1800 TIP 437168 11996 6054572 2024-02-24 15:26:01.781 2024-02-24 15:26:01.781 100000 FEE 437269 4768 6054573 2024-02-24 15:26:01.781 2024-02-24 15:26:01.781 900000 TIP 437269 5852 6054587 2024-02-24 15:30:42.834 2024-02-24 15:30:42.834 1000 FEE 437369 15100 6054588 2024-02-24 15:30:44.756 2024-02-24 15:30:44.756 1000 FEE 437361 14651 6054589 2024-02-24 15:30:44.756 2024-02-24 15:30:44.756 9000 TIP 437361 21026 6054590 2024-02-24 15:30:45.174 2024-02-24 15:30:45.174 1000 FEE 437361 18556 6054591 2024-02-24 15:30:45.174 2024-02-24 15:30:45.174 9000 TIP 437361 19777 6054607 2024-02-24 15:39:24.956 2024-02-24 15:39:24.956 5000 FEE 437372 18518 6054613 2024-02-24 15:40:03.947 2024-02-24 15:40:03.947 1000 FEE 436734 886 6054614 2024-02-24 15:40:03.947 2024-02-24 15:40:03.947 9000 TIP 436734 15052 6054637 2024-02-24 15:40:49.452 2024-02-24 15:40:49.452 1000 FEE 436595 1261 6054638 2024-02-24 15:40:49.452 2024-02-24 15:40:49.452 9000 TIP 436595 1480 6054643 2024-02-24 15:40:51.284 2024-02-24 15:40:51.284 1000 FEE 436595 1092 6054644 2024-02-24 15:40:51.284 2024-02-24 15:40:51.284 9000 TIP 436595 1738 6054645 2024-02-24 15:40:55.328 2024-02-24 15:40:55.328 1000 FEE 436596 654 6054646 2024-02-24 15:40:55.328 2024-02-24 15:40:55.328 9000 TIP 436596 19259 6054660 2024-02-24 15:41:16.898 2024-02-24 15:41:16.898 1000 FEE 436601 21485 6054661 2024-02-24 15:41:16.898 2024-02-24 15:41:16.898 9000 TIP 436601 20614 6054673 2024-02-24 15:43:25.204 2024-02-24 15:43:25.204 1000 FEE 436631 17064 6054674 2024-02-24 15:43:25.204 2024-02-24 15:43:25.204 9000 TIP 436631 8284 6054688 2024-02-24 15:45:06.709 2024-02-24 15:45:06.709 100 FEE 437233 716 6054689 2024-02-24 15:45:06.709 2024-02-24 15:45:06.709 900 TIP 437233 13216 6054694 2024-02-24 15:45:36.165 2024-02-24 15:45:36.165 10000 FEE 437382 11075 6054705 2024-02-24 15:45:46.08 2024-02-24 15:45:46.08 1000 FEE 436644 2775 6054706 2024-02-24 15:45:46.08 2024-02-24 15:45:46.08 9000 TIP 436644 19660 6054707 2024-02-24 15:45:46.76 2024-02-24 15:45:46.76 1000 FEE 436644 718 6054708 2024-02-24 15:45:46.76 2024-02-24 15:45:46.76 9000 TIP 436644 5557 6054730 2024-02-24 15:48:37.645 2024-02-24 15:48:37.645 1000 FEE 436764 6430 6054731 2024-02-24 15:48:37.645 2024-02-24 15:48:37.645 9000 TIP 436764 9166 6054753 2024-02-24 15:50:38.967 2024-02-24 15:50:38.967 1000 FEE 436792 16513 6054754 2024-02-24 15:50:38.967 2024-02-24 15:50:38.967 9000 TIP 436792 19864 6054790 2024-02-24 15:53:05.958 2024-02-24 15:53:05.958 7700 FEE 437269 10519 6054791 2024-02-24 15:53:05.958 2024-02-24 15:53:05.958 69300 TIP 437269 10094 6054796 2024-02-24 15:53:06.455 2024-02-24 15:53:06.455 7700 FEE 437269 20776 6054797 2024-02-24 15:53:06.455 2024-02-24 15:53:06.455 69300 TIP 437269 19909 6054800 2024-02-24 15:53:14.702 2024-02-24 15:53:14.702 7700 FEE 437269 21064 6054801 2024-02-24 15:53:14.702 2024-02-24 15:53:14.702 69300 TIP 437269 11992 6054810 2024-02-24 15:53:45.55 2024-02-24 15:53:45.55 7700 FEE 437269 6058 6054811 2024-02-24 15:53:45.55 2024-02-24 15:53:45.55 69300 TIP 437269 9169 6054853 2024-02-24 15:54:49.034 2024-02-24 15:54:49.034 6900 FEE 437269 8541 6054854 2024-02-24 15:54:49.034 2024-02-24 15:54:49.034 62100 TIP 437269 20738 6054857 2024-02-24 15:54:49.494 2024-02-24 15:54:49.494 6900 FEE 437269 17535 6054858 2024-02-24 15:54:49.494 2024-02-24 15:54:49.494 62100 TIP 437269 797 6054861 2024-02-24 15:54:50.24 2024-02-24 15:54:50.24 13800 FEE 437269 20117 6054862 2024-02-24 15:54:50.24 2024-02-24 15:54:50.24 124200 TIP 437269 992 6054921 2024-02-24 16:00:03.858 2024-02-24 16:00:03.858 1000 FEE 436677 5852 6054922 2024-02-24 16:00:03.858 2024-02-24 16:00:03.858 9000 TIP 436677 14258 6054931 2024-02-24 16:00:10.633 2024-02-24 16:00:10.633 750700 FEE 437158 21021 6054932 2024-02-24 16:00:10.633 2024-02-24 16:00:10.633 6756300 TIP 437158 5522 6054935 2024-02-24 16:00:12.314 2024-02-24 16:00:12.314 1000 FEE 436726 13398 6054936 2024-02-24 16:00:12.314 2024-02-24 16:00:12.314 9000 TIP 436726 16424 6054946 2024-02-24 16:00:28.659 2024-02-24 16:00:28.659 2100 FEE 437362 18583 6054947 2024-02-24 16:00:28.659 2024-02-24 16:00:28.659 18900 TIP 437362 2757 6054965 2024-02-24 16:01:47.065 2024-02-24 16:01:47.065 4000 FEE 437408 2010 6054966 2024-02-24 16:01:47.065 2024-02-24 16:01:47.065 36000 TIP 437408 20840 6055014 2024-02-24 16:08:34.829 2024-02-24 16:08:34.829 1100 FEE 437047 16809 6055015 2024-02-24 16:08:34.829 2024-02-24 16:08:34.829 9900 TIP 437047 13348 6055024 2024-02-24 16:08:36.164 2024-02-24 16:08:36.164 1000 FEE 437414 12736 6055025 2024-02-24 16:08:36.164 2024-02-24 16:08:36.164 9000 TIP 437414 7682 6055028 2024-02-24 16:08:51.609 2024-02-24 16:08:51.609 4000 FEE 437416 3360 6055029 2024-02-24 16:08:51.609 2024-02-24 16:08:51.609 36000 TIP 437416 18809 6055059 2024-02-24 16:12:37.504 2024-02-24 16:12:37.504 1000 FEE 437421 2681 6055065 2024-02-24 16:13:06.441 2024-02-24 16:13:06.441 1000 FEE 437422 802 6055066 2024-02-24 16:13:16.01 2024-02-24 16:13:16.01 100 FEE 437408 9183 6055067 2024-02-24 16:13:16.01 2024-02-24 16:13:16.01 900 TIP 437408 18180 6055073 2024-02-24 16:13:47.102 2024-02-24 16:13:47.102 9000 FEE 437408 21405 6055074 2024-02-24 16:13:47.102 2024-02-24 16:13:47.102 81000 TIP 437408 1051 6055079 2024-02-24 16:14:32.028 2024-02-24 16:14:32.028 900 FEE 437269 17455 6055080 2024-02-24 16:14:32.028 2024-02-24 16:14:32.028 8100 TIP 437269 16230 6055165 2024-02-24 16:21:38.151 2024-02-24 16:21:38.151 1000 FEE 437390 633 6055166 2024-02-24 16:21:38.151 2024-02-24 16:21:38.151 9000 TIP 437390 11298 6055190 2024-02-24 16:23:43.259 2024-02-24 16:23:43.259 1000 FEE 437432 12609 6055207 2024-02-24 16:27:16.039 2024-02-24 16:27:16.039 100000 FEE 437436 8945 6055215 2024-02-24 16:27:26.89 2024-02-24 16:27:26.89 2100 FEE 437269 16124 6055216 2024-02-24 16:27:26.89 2024-02-24 16:27:26.89 18900 TIP 437269 17091 6055219 2024-02-24 16:27:29.818 2024-02-24 16:27:29.818 0 FEE 437432 708 6055236 2024-02-24 16:28:44.717 2024-02-24 16:28:44.717 4000 FEE 437437 20340 6054269 2024-02-24 14:49:03.155 2024-02-24 14:49:03.155 1000 STREAM 141924 20577 6118699 2024-02-29 20:32:50.84 2024-02-29 20:32:50.84 69300 TIP 444226 691 6118700 2024-02-29 20:32:56.955 2024-02-29 20:32:56.955 100 FEE 444184 9982 6118701 2024-02-29 20:32:56.955 2024-02-29 20:32:56.955 900 TIP 444184 3544 6118747 2024-02-29 20:34:19.288 2024-02-29 20:34:19.288 100 FEE 444099 17455 6118748 2024-02-29 20:34:19.288 2024-02-29 20:34:19.288 900 TIP 444099 1647 6118776 2024-02-29 20:34:47.219 2024-02-29 20:34:47.219 1000 FEE 444186 4345 6118777 2024-02-29 20:34:47.219 2024-02-29 20:34:47.219 9000 TIP 444186 15103 6118782 2024-02-29 20:34:52.273 2024-02-29 20:34:52.273 1000 FEE 444203 18232 6118783 2024-02-29 20:34:52.273 2024-02-29 20:34:52.273 9000 TIP 444203 16442 6118792 2024-02-29 20:35:01.605 2024-02-29 20:35:01.605 1000 FEE 444208 19902 6118793 2024-02-29 20:35:01.605 2024-02-29 20:35:01.605 9000 TIP 444208 12779 6118815 2024-02-29 20:35:28.066 2024-02-29 20:35:28.066 1000 FEE 444222 19806 6118816 2024-02-29 20:35:28.066 2024-02-29 20:35:28.066 9000 TIP 444222 21254 6118885 2024-02-29 20:39:22.221 2024-02-29 20:39:22.221 100 FEE 444136 19821 6118886 2024-02-29 20:39:22.221 2024-02-29 20:39:22.221 900 TIP 444136 20102 6118894 2024-02-29 20:39:36.641 2024-02-29 20:39:36.641 15400 FEE 444173 1124 6118895 2024-02-29 20:39:36.641 2024-02-29 20:39:36.641 138600 TIP 444173 5171 6118938 2024-02-29 20:41:19.491 2024-02-29 20:41:19.491 2100 FEE 444112 16998 6118939 2024-02-29 20:41:19.491 2024-02-29 20:41:19.491 18900 TIP 444112 20525 6118950 2024-02-29 20:41:43.956 2024-02-29 20:41:43.956 2600 FEE 443861 1465 6118951 2024-02-29 20:41:43.956 2024-02-29 20:41:43.956 23400 TIP 443861 12566 6118960 2024-02-29 20:42:01.416 2024-02-29 20:42:01.416 3200 FEE 442894 20969 6118961 2024-02-29 20:42:01.416 2024-02-29 20:42:01.416 28800 TIP 442894 21138 6118973 2024-02-29 20:42:48.313 2024-02-29 20:42:48.313 3200 FEE 444173 17568 6118974 2024-02-29 20:42:48.313 2024-02-29 20:42:48.313 28800 TIP 444173 4062 6118983 2024-02-29 20:43:24.255 2024-02-29 20:43:24.255 1000 FEE 443834 4831 6118984 2024-02-29 20:43:24.255 2024-02-29 20:43:24.255 9000 TIP 443834 2508 6119025 2024-02-29 20:46:30.957 2024-02-29 20:46:30.957 1600 FEE 444184 12561 6119026 2024-02-29 20:46:30.957 2024-02-29 20:46:30.957 14400 TIP 444184 21155 6119027 2024-02-29 20:46:46.706 2024-02-29 20:46:46.706 0 FEE 444249 10398 6119030 2024-02-29 20:47:01.456 2024-02-29 20:47:01.456 500 FEE 444168 17976 6119031 2024-02-29 20:47:01.456 2024-02-29 20:47:01.456 4500 TIP 444168 7960 6119039 2024-02-29 20:47:33.083 2024-02-29 20:47:33.083 10000 FEE 444253 1585 6119069 2024-02-29 20:48:57.947 2024-02-29 20:48:57.947 0 FEE 444253 12158 6119071 2024-02-29 20:49:15.53 2024-02-29 20:49:15.53 1000 POLL 444165 19282 6119082 2024-02-29 20:50:30.215 2024-02-29 20:50:30.215 0 FEE 444253 20156 6119090 2024-02-29 20:51:25.855 2024-02-29 20:51:25.855 1000 FEE 444263 20117 6119115 2024-02-29 20:52:45.993 2024-02-29 20:52:45.993 2100 FEE 444200 1741 6119116 2024-02-29 20:52:45.993 2024-02-29 20:52:45.993 18900 TIP 444200 692 6119125 2024-02-29 20:52:53.725 2024-02-29 20:52:53.725 2100 FEE 444210 21494 6119126 2024-02-29 20:52:53.725 2024-02-29 20:52:53.725 18900 TIP 444210 2039 6119131 2024-02-29 20:52:57.828 2024-02-29 20:52:57.828 2100 FEE 444226 14074 6119132 2024-02-29 20:52:57.828 2024-02-29 20:52:57.828 18900 TIP 444226 14950 6119138 2024-02-29 20:53:01.529 2024-02-29 20:53:01.529 2100 FEE 444228 21159 6119139 2024-02-29 20:53:01.529 2024-02-29 20:53:01.529 18900 TIP 444228 2508 6119149 2024-02-29 20:53:07.339 2024-02-29 20:53:07.339 2100 FEE 444261 15119 6119150 2024-02-29 20:53:07.339 2024-02-29 20:53:07.339 18900 TIP 444261 21042 6119151 2024-02-29 20:53:09.366 2024-02-29 20:53:09.366 2100 FEE 444223 630 6119152 2024-02-29 20:53:09.366 2024-02-29 20:53:09.366 18900 TIP 444223 20306 6119157 2024-02-29 20:53:44.293 2024-02-29 20:53:44.293 0 FEE 444266 1801 6119158 2024-02-29 20:53:44.953 2024-02-29 20:53:44.953 1000 FEE 444267 844 6119186 2024-02-29 20:56:41.049 2024-02-29 20:56:41.049 500 FEE 443861 17275 6119187 2024-02-29 20:56:41.049 2024-02-29 20:56:41.049 4500 TIP 443861 14247 6119188 2024-02-29 20:56:41.831 2024-02-29 20:56:41.831 1000 FEE 443861 10283 6119189 2024-02-29 20:56:41.831 2024-02-29 20:56:41.831 9000 TIP 443861 6310 6119229 2024-02-29 21:00:04.851 2024-02-29 21:00:04.851 1000 FEE 444281 2748 6119237 2024-02-29 21:00:55.467 2024-02-29 21:00:55.467 5700 FEE 444280 21619 6119238 2024-02-29 21:00:55.467 2024-02-29 21:00:55.467 51300 TIP 444280 16724 6119264 2024-02-29 21:02:22.626 2024-02-29 21:02:22.626 10000 FEE 444194 19809 6119265 2024-02-29 21:02:22.626 2024-02-29 21:02:22.626 90000 TIP 444194 20225 6119268 2024-02-29 21:02:23.057 2024-02-29 21:02:23.057 1000 FEE 444284 15103 6119269 2024-02-29 21:02:23.057 2024-02-29 21:02:23.057 9000 TIP 444284 4521 6119284 2024-02-29 21:03:09.219 2024-02-29 21:03:09.219 12800 FEE 444173 18830 6119285 2024-02-29 21:03:09.219 2024-02-29 21:03:09.219 115200 TIP 444173 6260 6119312 2024-02-29 21:04:20.038 2024-02-29 21:04:20.038 500 FEE 444102 21480 6119313 2024-02-29 21:04:20.038 2024-02-29 21:04:20.038 4500 TIP 444102 9517 6119318 2024-02-29 21:04:20.585 2024-02-29 21:04:20.585 500 FEE 444102 19976 6119319 2024-02-29 21:04:20.585 2024-02-29 21:04:20.585 4500 TIP 444102 20450 6119332 2024-02-29 21:04:57.813 2024-02-29 21:04:57.813 100000 FEE 444292 8713 6119345 2024-02-29 21:06:25.766 2024-02-29 21:06:25.766 1000 FEE 444294 16834 6119390 2024-02-29 21:11:02.86 2024-02-29 21:11:02.86 500 FEE 444179 15337 6119391 2024-02-29 21:11:02.86 2024-02-29 21:11:02.86 4500 TIP 444179 2285 6119392 2024-02-29 21:11:03.265 2024-02-29 21:11:03.265 500 FEE 444179 16447 6119393 2024-02-29 21:11:03.265 2024-02-29 21:11:03.265 4500 TIP 444179 12139 6119407 2024-02-29 21:11:05.083 2024-02-29 21:11:05.083 500 FEE 444179 12516 6119408 2024-02-29 21:11:05.083 2024-02-29 21:11:05.083 4500 TIP 444179 20267 6119415 2024-02-29 21:11:06.009 2024-02-29 21:11:06.009 500 FEE 444179 8998 6119416 2024-02-29 21:11:06.009 2024-02-29 21:11:06.009 4500 TIP 444179 12334 6119431 2024-02-29 21:11:08.49 2024-02-29 21:11:08.49 500 FEE 444179 20745 6119432 2024-02-29 21:11:08.49 2024-02-29 21:11:08.49 4500 TIP 444179 19142 6119433 2024-02-29 21:11:08.937 2024-02-29 21:11:08.937 500 FEE 444179 21591 6119434 2024-02-29 21:11:08.937 2024-02-29 21:11:08.937 4500 TIP 444179 17552 6119437 2024-02-29 21:11:33.21 2024-02-29 21:11:33.21 1000 FEE 444299 721 6119463 2024-02-29 21:17:01.159 2024-02-29 21:17:01.159 3300 FEE 444291 6191 6119464 2024-02-29 21:17:01.159 2024-02-29 21:17:01.159 29700 TIP 444291 11523 6119466 2024-02-29 21:17:30.777 2024-02-29 21:17:30.777 1000 FEE 444305 16816 6119475 2024-02-29 21:18:58.703 2024-02-29 21:18:58.703 1000 FEE 444307 20554 6119508 2024-02-29 21:25:36.048 2024-02-29 21:25:36.048 2500 FEE 444102 10530 6054291 2024-02-24 14:50:03.179 2024-02-24 14:50:03.179 1000 STREAM 141924 20704 6054299 2024-02-24 14:51:03.162 2024-02-24 14:51:03.162 1000 STREAM 141924 7903 6054325 2024-02-24 14:55:03.213 2024-02-24 14:55:03.213 1000 STREAM 141924 21314 6054354 2024-02-24 14:57:03.224 2024-02-24 14:57:03.224 1000 STREAM 141924 21398 6054367 2024-02-24 15:00:03.253 2024-02-24 15:00:03.253 1000 STREAM 141924 5293 6054372 2024-02-24 15:01:03.235 2024-02-24 15:01:03.235 1000 STREAM 141924 6164 6054447 2024-02-24 15:08:03.788 2024-02-24 15:08:03.788 1000 STREAM 141924 21422 6054455 2024-02-24 15:09:03.776 2024-02-24 15:09:03.776 1000 STREAM 141924 711 6054480 2024-02-24 15:13:04.028 2024-02-24 15:13:04.028 1000 STREAM 141924 18873 6054484 2024-02-24 15:14:04.087 2024-02-24 15:14:04.087 1000 STREAM 141924 12169 6054489 2024-02-24 15:16:02.099 2024-02-24 15:16:02.099 1000 STREAM 141924 19639 6054581 2024-02-24 15:28:02.304 2024-02-24 15:28:02.304 1000 STREAM 141924 18581 6054586 2024-02-24 15:30:02.345 2024-02-24 15:30:02.345 1000 STREAM 141924 21412 6054600 2024-02-24 15:33:02.335 2024-02-24 15:33:02.335 1000 STREAM 141924 963 6054601 2024-02-24 15:34:02.34 2024-02-24 15:34:02.34 1000 STREAM 141924 20642 6054604 2024-02-24 15:37:02.356 2024-02-24 15:37:02.356 1000 STREAM 141924 2123 6054668 2024-02-24 15:42:02.387 2024-02-24 15:42:02.387 1000 STREAM 141924 5703 6118749 2024-02-29 20:34:23.941 2024-02-29 20:34:23.941 100 FEE 444221 21207 6118750 2024-02-29 20:34:23.941 2024-02-29 20:34:23.941 900 TIP 444221 20327 6118755 2024-02-29 20:34:24.817 2024-02-29 20:34:24.817 100 FEE 444097 20596 6118756 2024-02-29 20:34:24.817 2024-02-29 20:34:24.817 900 TIP 444097 19839 6118769 2024-02-29 20:34:36.025 2024-02-29 20:34:36.025 1000 FEE 444194 2437 6118770 2024-02-29 20:34:36.025 2024-02-29 20:34:36.025 9000 TIP 444194 19403 6118799 2024-02-29 20:35:08.902 2024-02-29 20:35:08.902 1000 FEE 444185 18769 6118800 2024-02-29 20:35:08.902 2024-02-29 20:35:08.902 9000 TIP 444185 20245 6118801 2024-02-29 20:35:11.291 2024-02-29 20:35:11.291 1000 FEE 444200 617 6118802 2024-02-29 20:35:11.291 2024-02-29 20:35:11.291 9000 TIP 444200 20280 6118822 2024-02-29 20:35:43.059 2024-02-29 20:35:43.059 1000 FEE 444233 861 6118832 2024-02-29 20:38:05.51 2024-02-29 20:38:05.51 1000 FEE 444102 21453 6118833 2024-02-29 20:38:05.51 2024-02-29 20:38:05.51 9000 TIP 444102 17827 6118843 2024-02-29 20:38:54.529 2024-02-29 20:38:54.529 7700 FEE 444173 5527 6118844 2024-02-29 20:38:54.529 2024-02-29 20:38:54.529 69300 TIP 444173 6765 6118851 2024-02-29 20:38:55.148 2024-02-29 20:38:55.148 7700 FEE 444173 15833 6118852 2024-02-29 20:38:55.148 2024-02-29 20:38:55.148 69300 TIP 444173 12819 6118864 2024-02-29 20:39:02.38 2024-02-29 20:39:02.38 100 FEE 444130 18116 6118865 2024-02-29 20:39:02.38 2024-02-29 20:39:02.38 900 TIP 444130 19777 6118866 2024-02-29 20:39:02.915 2024-02-29 20:39:02.915 7700 FEE 444173 21520 6118867 2024-02-29 20:39:02.915 2024-02-29 20:39:02.915 69300 TIP 444173 14503 6118870 2024-02-29 20:39:03.08 2024-02-29 20:39:03.08 7700 FEE 444173 10060 6118871 2024-02-29 20:39:03.08 2024-02-29 20:39:03.08 69300 TIP 444173 16988 6118875 2024-02-29 20:39:09.368 2024-02-29 20:39:09.368 100 FEE 444233 19837 6118876 2024-02-29 20:39:09.368 2024-02-29 20:39:09.368 900 TIP 444233 18865 6118898 2024-02-29 20:39:37.243 2024-02-29 20:39:37.243 7700 FEE 444173 5017 6118899 2024-02-29 20:39:37.243 2024-02-29 20:39:37.243 69300 TIP 444173 16432 6118906 2024-02-29 20:39:37.851 2024-02-29 20:39:37.851 1000 FEE 443915 21063 6118907 2024-02-29 20:39:37.851 2024-02-29 20:39:37.851 9000 TIP 443915 5171 6118946 2024-02-29 20:41:31.395 2024-02-29 20:41:31.395 3100 FEE 444230 18626 6118947 2024-02-29 20:41:31.395 2024-02-29 20:41:31.395 27900 TIP 444230 20162 6118979 2024-02-29 20:43:12.615 2024-02-29 20:43:12.615 3200 FEE 444097 6327 6118980 2024-02-29 20:43:12.615 2024-02-29 20:43:12.615 28800 TIP 444097 17046 6118990 2024-02-29 20:43:53.797 2024-02-29 20:43:53.797 1000 FEE 444119 1519 6118991 2024-02-29 20:43:53.797 2024-02-29 20:43:53.797 9000 TIP 444119 20058 6118992 2024-02-29 20:43:56.835 2024-02-29 20:43:56.835 1000 FEE 443893 19087 6118993 2024-02-29 20:43:56.835 2024-02-29 20:43:56.835 9000 TIP 443893 928 6118998 2024-02-29 20:44:03.019 2024-02-29 20:44:03.019 1000 FEE 444180 2309 6118999 2024-02-29 20:44:03.019 2024-02-29 20:44:03.019 9000 TIP 444180 9551 6119016 2024-02-29 20:45:17.636 2024-02-29 20:45:17.636 6600 FEE 444244 21079 6119017 2024-02-29 20:45:17.636 2024-02-29 20:45:17.636 59400 TIP 444244 671 6119021 2024-02-29 20:46:09.512 2024-02-29 20:46:09.512 1000 FEE 444064 20267 6119022 2024-02-29 20:46:09.512 2024-02-29 20:46:09.512 9000 TIP 444064 1237 6119024 2024-02-29 20:46:22.938 2024-02-29 20:46:22.938 1000 FEE 444250 9655 6119044 2024-02-29 20:48:00.67 2024-02-29 20:48:00.67 200 FEE 444253 628 6119045 2024-02-29 20:48:00.67 2024-02-29 20:48:00.67 1800 TIP 444253 15100 6119059 2024-02-29 20:48:31.105 2024-02-29 20:48:31.105 2100 FEE 444165 14152 6119060 2024-02-29 20:48:31.105 2024-02-29 20:48:31.105 18900 TIP 444165 1044 6119061 2024-02-29 20:48:34.378 2024-02-29 20:48:34.378 2100 FEE 444192 9183 6119062 2024-02-29 20:48:34.378 2024-02-29 20:48:34.378 18900 TIP 444192 18363 6119067 2024-02-29 20:48:40.028 2024-02-29 20:48:40.028 1000 FEE 444255 19996 6119080 2024-02-29 20:50:08.236 2024-02-29 20:50:08.236 0 FEE 444249 18180 6119081 2024-02-29 20:50:15.112 2024-02-29 20:50:15.112 1000 FEE 444260 10591 6119086 2024-02-29 20:51:13.561 2024-02-29 20:51:13.561 1000 FEE 444262 19132 6119100 2024-02-29 20:52:17.298 2024-02-29 20:52:17.298 1000 FEE 444265 6310 6119101 2024-02-29 20:52:23.05 2024-02-29 20:52:23.05 10000 FEE 444162 15049 6119102 2024-02-29 20:52:23.05 2024-02-29 20:52:23.05 90000 TIP 444162 1060 6119103 2024-02-29 20:52:24.449 2024-02-29 20:52:24.449 1000 FEE 444193 13921 6119104 2024-02-29 20:52:24.449 2024-02-29 20:52:24.449 9000 TIP 444193 16309 6119113 2024-02-29 20:52:45.422 2024-02-29 20:52:45.422 2100 FEE 444211 4650 6119114 2024-02-29 20:52:45.422 2024-02-29 20:52:45.422 18900 TIP 444211 1038 6119123 2024-02-29 20:52:52.694 2024-02-29 20:52:52.694 2100 FEE 444214 20182 6119124 2024-02-29 20:52:52.694 2024-02-29 20:52:52.694 18900 TIP 444214 664 6119155 2024-02-29 20:53:14.151 2024-02-29 20:53:14.151 2100 FEE 444168 866 6119156 2024-02-29 20:53:14.151 2024-02-29 20:53:14.151 18900 TIP 444168 7998 6119166 2024-02-29 20:54:36.636 2024-02-29 20:54:36.636 1000 FEE 444268 18101 6119185 2024-02-29 20:56:32.309 2024-02-29 20:56:32.309 1000 FEE 444274 3461 6119201 2024-02-29 20:57:47.126 2024-02-29 20:57:47.126 1000 FEE 444184 17526 6119202 2024-02-29 20:57:47.126 2024-02-29 20:57:47.126 9000 TIP 444184 4763 6119208 2024-02-29 20:58:16.404 2024-02-29 20:58:16.404 1000 FEE 444213 6594 6119209 2024-02-29 20:58:16.404 2024-02-29 20:58:16.404 9000 TIP 444213 5597 6119214 2024-02-29 20:58:17.425 2024-02-29 20:58:17.425 1000 FEE 444213 2674 6119215 2024-02-29 20:58:17.425 2024-02-29 20:58:17.425 9000 TIP 444213 14650 6119239 2024-02-29 21:00:57.291 2024-02-29 21:00:57.291 1000 FEE 444284 19967 6119243 2024-02-29 21:01:14.953 2024-02-29 21:01:14.953 3100 FEE 444277 16706 6119244 2024-02-29 21:01:14.953 2024-02-29 21:01:14.953 27900 TIP 444277 2942 6119252 2024-02-29 21:01:21.001 2024-02-29 21:01:21.001 100000 FEE 444286 13100 6119253 2024-02-29 21:01:50.101 2024-02-29 21:01:50.101 2100 FEE 442710 19537 6119254 2024-02-29 21:01:50.101 2024-02-29 21:01:50.101 18900 TIP 442710 16447 6119276 2024-02-29 21:02:27.819 2024-02-29 21:02:27.819 1000 FEE 444287 16706 6119316 2024-02-29 21:04:20.398 2024-02-29 21:04:20.398 500 FEE 444102 19087 6119317 2024-02-29 21:04:20.398 2024-02-29 21:04:20.398 4500 TIP 444102 3683 6119342 2024-02-29 21:05:24.019 2024-02-29 21:05:24.019 10000 FEE 444293 9341 6119354 2024-02-29 21:07:36.276 2024-02-29 21:07:36.276 0 FEE 444294 2528 6119369 2024-02-29 21:08:31.446 2024-02-29 21:08:31.446 100 FEE 443593 4115 6054311 2024-02-24 14:53:03.179 2024-02-24 14:53:03.179 1000 STREAM 141924 20327 6054359 2024-02-24 14:58:05.216 2024-02-24 14:58:05.216 1000 STREAM 141924 19346 6054363 2024-02-24 14:59:03.235 2024-02-24 14:59:03.235 1000 STREAM 141924 18472 6054377 2024-02-24 15:02:03.226 2024-02-24 15:02:03.226 1000 STREAM 141924 2513 6054388 2024-02-24 15:03:03.77 2024-02-24 15:03:03.77 1000 STREAM 141924 7891 6054432 2024-02-24 15:07:03.79 2024-02-24 15:07:03.79 1000 STREAM 141924 5961 6054462 2024-02-24 15:11:01.824 2024-02-24 15:11:01.824 1000 STREAM 141924 14370 6054500 2024-02-24 15:18:02.141 2024-02-24 15:18:02.141 1000 STREAM 141924 11798 6054510 2024-02-24 15:20:02.266 2024-02-24 15:20:02.266 1000 STREAM 141924 9099 6054538 2024-02-24 15:22:02.256 2024-02-24 15:22:02.256 1000 STREAM 141924 21296 6054541 2024-02-24 15:23:02.268 2024-02-24 15:23:02.268 1000 STREAM 141924 777 6054563 2024-02-24 15:24:02.265 2024-02-24 15:24:02.265 1000 STREAM 141924 7558 6054568 2024-02-24 15:25:02.279 2024-02-24 15:25:02.279 1000 STREAM 141924 2576 6054574 2024-02-24 15:26:02.279 2024-02-24 15:26:02.279 1000 STREAM 141924 6149 6054577 2024-02-24 15:27:02.293 2024-02-24 15:27:02.293 1000 STREAM 141924 18040 6054584 2024-02-24 15:29:02.301 2024-02-24 15:29:02.301 1000 STREAM 141924 19335 6054592 2024-02-24 15:31:02.344 2024-02-24 15:31:02.344 1000 STREAM 141924 19566 6054599 2024-02-24 15:32:02.326 2024-02-24 15:32:02.326 1000 STREAM 141924 21573 6054602 2024-02-24 15:35:02.354 2024-02-24 15:35:02.354 1000 STREAM 141924 1823 6054603 2024-02-24 15:36:02.353 2024-02-24 15:36:02.353 1000 STREAM 141924 16145 6054605 2024-02-24 15:38:02.378 2024-02-24 15:38:02.378 1000 STREAM 141924 16284 6054606 2024-02-24 15:39:02.394 2024-02-24 15:39:02.394 1000 STREAM 141924 20993 6054612 2024-02-24 15:40:02.394 2024-02-24 15:40:02.394 1000 STREAM 141924 2162 6054655 2024-02-24 15:41:02.394 2024-02-24 15:41:02.394 1000 STREAM 141924 1740 6054671 2024-02-24 15:43:02.409 2024-02-24 15:43:02.409 1000 STREAM 141924 20993 6054683 2024-02-24 15:44:02.412 2024-02-24 15:44:02.412 1000 STREAM 141924 1741 6054686 2024-02-24 15:45:02.419 2024-02-24 15:45:02.419 1000 STREAM 141924 1534 6054715 2024-02-24 15:46:02.423 2024-02-24 15:46:02.423 1000 STREAM 141924 18640 6054716 2024-02-24 15:47:02.429 2024-02-24 15:47:02.429 1000 STREAM 141924 5175 6054721 2024-02-24 15:48:02.423 2024-02-24 15:48:02.423 1000 STREAM 141924 20812 6054732 2024-02-24 15:49:02.415 2024-02-24 15:49:02.415 1000 STREAM 141924 15617 6054905 2024-02-24 15:58:04.97 2024-02-24 15:58:04.97 1000 STREAM 141924 19449 6055518 2024-02-24 17:00:04.545 2024-02-24 17:00:04.545 1000 STREAM 141924 4322 6118796 2024-02-29 20:35:04.663 2024-02-29 20:35:04.663 1000 STREAM 141924 16679 6054320 2024-02-24 14:54:05.228 2024-02-24 14:54:05.228 1000 STREAM 141924 10490 6118813 2024-02-29 20:35:26.603 2024-02-29 20:35:26.603 1000 FEE 444228 15367 6118814 2024-02-29 20:35:26.603 2024-02-29 20:35:26.603 9000 TIP 444228 16929 6118817 2024-02-29 20:35:29.063 2024-02-29 20:35:29.063 1000 FEE 444225 1495 6118818 2024-02-29 20:35:29.063 2024-02-29 20:35:29.063 9000 TIP 444225 913 6118819 2024-02-29 20:35:29.88 2024-02-29 20:35:29.88 1000 FEE 444195 20555 6118820 2024-02-29 20:35:29.88 2024-02-29 20:35:29.88 9000 TIP 444195 992 6118834 2024-02-29 20:38:09.251 2024-02-29 20:38:09.251 1000 FEE 444153 15326 6118835 2024-02-29 20:38:09.251 2024-02-29 20:38:09.251 9000 TIP 444153 21455 6118861 2024-02-29 20:39:00.217 2024-02-29 20:39:00.217 1000 FEE 444237 8954 6118868 2024-02-29 20:39:02.929 2024-02-29 20:39:02.929 7700 FEE 444173 2674 6118869 2024-02-29 20:39:02.929 2024-02-29 20:39:02.929 69300 TIP 444173 1985 6118872 2024-02-29 20:39:03.206 2024-02-29 20:39:03.206 7700 FEE 444173 18368 6118873 2024-02-29 20:39:03.206 2024-02-29 20:39:03.206 69300 TIP 444173 15282 6118889 2024-02-29 20:39:34.714 2024-02-29 20:39:34.714 1000 FEE 444238 1007 6118914 2024-02-29 20:39:38.986 2024-02-29 20:39:38.986 1000 FEE 444102 19770 6118915 2024-02-29 20:39:38.986 2024-02-29 20:39:38.986 9000 TIP 444102 18138 6118916 2024-02-29 20:39:41.291 2024-02-29 20:39:41.291 32000 FEE 444168 4984 6118917 2024-02-29 20:39:41.291 2024-02-29 20:39:41.291 288000 TIP 444168 18219 6118918 2024-02-29 20:39:42.494 2024-02-29 20:39:42.494 1000 FEE 444078 17201 6118919 2024-02-29 20:39:42.494 2024-02-29 20:39:42.494 9000 TIP 444078 20066 6118963 2024-02-29 20:42:06.5 2024-02-29 20:42:06.5 1000 FEE 444245 16543 6118971 2024-02-29 20:42:42.481 2024-02-29 20:42:42.481 2100 FEE 444245 21575 6118972 2024-02-29 20:42:42.481 2024-02-29 20:42:42.481 18900 TIP 444245 21547 6118996 2024-02-29 20:44:02.264 2024-02-29 20:44:02.264 2500 FEE 444126 6555 6118997 2024-02-29 20:44:02.264 2024-02-29 20:44:02.264 22500 TIP 444126 18680 6119001 2024-02-29 20:44:07.829 2024-02-29 20:44:07.829 500 FEE 443915 928 6119002 2024-02-29 20:44:07.829 2024-02-29 20:44:07.829 4500 TIP 443915 18453 6119005 2024-02-29 20:44:20.454 2024-02-29 20:44:20.454 1000 FEE 444139 20523 6119006 2024-02-29 20:44:20.454 2024-02-29 20:44:20.454 9000 TIP 444139 1044 6119014 2024-02-29 20:45:17.207 2024-02-29 20:45:17.207 3300 FEE 444244 11153 6119015 2024-02-29 20:45:17.207 2024-02-29 20:45:17.207 29700 TIP 444244 13927 6119018 2024-02-29 20:45:46.294 2024-02-29 20:45:46.294 2100 FEE 443811 21063 6119019 2024-02-29 20:45:46.294 2024-02-29 20:45:46.294 18900 TIP 443811 16717 6119040 2024-02-29 20:47:44.626 2024-02-29 20:47:44.626 5700 FEE 444230 3396 6119041 2024-02-29 20:47:44.626 2024-02-29 20:47:44.626 51300 TIP 444230 18378 6119078 2024-02-29 20:49:52.001 2024-02-29 20:49:52.001 1000 FEE 444259 2264 6119088 2024-02-29 20:51:20 2024-02-29 20:51:20 2300 FEE 444258 21481 6119089 2024-02-29 20:51:20 2024-02-29 20:51:20 20700 TIP 444258 20826 6119107 2024-02-29 20:52:43.603 2024-02-29 20:52:43.603 2100 FEE 444195 1046 6119108 2024-02-29 20:52:43.603 2024-02-29 20:52:43.603 18900 TIP 444195 654 6119133 2024-02-29 20:52:57.928 2024-02-29 20:52:57.928 2100 FEE 444187 8498 6119134 2024-02-29 20:52:57.928 2024-02-29 20:52:57.928 18900 TIP 444187 17953 6119145 2024-02-29 20:53:06.294 2024-02-29 20:53:06.294 2100 FEE 444212 18896 6119146 2024-02-29 20:53:06.294 2024-02-29 20:53:06.294 18900 TIP 444212 10668 6119164 2024-02-29 20:54:23.166 2024-02-29 20:54:23.166 30000 FEE 444264 16230 6119165 2024-02-29 20:54:23.166 2024-02-29 20:54:23.166 270000 TIP 444264 20964 6119167 2024-02-29 20:54:47.912 2024-02-29 20:54:47.912 1000 FEE 444168 1352 6119168 2024-02-29 20:54:47.912 2024-02-29 20:54:47.912 9000 TIP 444168 20162 6119169 2024-02-29 20:54:49.614 2024-02-29 20:54:49.614 1000 FEE 444269 13798 6119170 2024-02-29 20:55:03.455 2024-02-29 20:55:03.455 1000 FEE 444270 15326 6119174 2024-02-29 20:55:17.789 2024-02-29 20:55:17.789 0 FEE 444256 20222 6119206 2024-02-29 20:58:16 2024-02-29 20:58:16 1000 FEE 444213 8133 6119207 2024-02-29 20:58:16 2024-02-29 20:58:16 9000 TIP 444213 722 6119216 2024-02-29 20:58:19.835 2024-02-29 20:58:19.835 1000 FEE 444276 17172 6119233 2024-02-29 21:00:49.024 2024-02-29 21:00:49.024 1100 FEE 444226 21275 6119234 2024-02-29 21:00:49.024 2024-02-29 21:00:49.024 9900 TIP 444226 3417 6119260 2024-02-29 21:02:22.007 2024-02-29 21:02:22.007 1000 FEE 444284 6765 6119261 2024-02-29 21:02:22.007 2024-02-29 21:02:22.007 9000 TIP 444284 9833 6119288 2024-02-29 21:04:03.195 2024-02-29 21:04:03.195 1000 FEE 444291 15806 6119298 2024-02-29 21:04:18.779 2024-02-29 21:04:18.779 1500 FEE 444102 17365 6119299 2024-02-29 21:04:18.779 2024-02-29 21:04:18.779 13500 TIP 444102 19572 6119308 2024-02-29 21:04:19.696 2024-02-29 21:04:19.696 500 FEE 444102 12057 6119309 2024-02-29 21:04:19.696 2024-02-29 21:04:19.696 4500 TIP 444102 20015 6119320 2024-02-29 21:04:20.789 2024-02-29 21:04:20.789 500 FEE 444102 19668 6119321 2024-02-29 21:04:20.789 2024-02-29 21:04:20.789 4500 TIP 444102 21247 6119355 2024-02-29 21:07:44.671 2024-02-29 21:07:44.671 0 FEE 444293 16954 6119365 2024-02-29 21:08:28.988 2024-02-29 21:08:28.988 100 FEE 442904 17797 6119366 2024-02-29 21:08:28.988 2024-02-29 21:08:28.988 900 TIP 442904 16357 6119373 2024-02-29 21:08:56.44 2024-02-29 21:08:56.44 1700 FEE 444272 21323 6119374 2024-02-29 21:08:56.44 2024-02-29 21:08:56.44 15300 TIP 444272 10096 6119399 2024-02-29 21:11:04.376 2024-02-29 21:11:04.376 500 FEE 444179 20539 6119400 2024-02-29 21:11:04.376 2024-02-29 21:11:04.376 4500 TIP 444179 14731 6119403 2024-02-29 21:11:04.722 2024-02-29 21:11:04.722 500 FEE 444179 19806 6119404 2024-02-29 21:11:04.722 2024-02-29 21:11:04.722 4500 TIP 444179 19018 6119417 2024-02-29 21:11:06.235 2024-02-29 21:11:06.235 500 FEE 444179 19535 6119418 2024-02-29 21:11:06.235 2024-02-29 21:11:06.235 4500 TIP 444179 644 6119458 2024-02-29 21:16:55.588 2024-02-29 21:16:55.588 1000 FEE 444304 19668 6119484 2024-02-29 21:19:17.038 2024-02-29 21:19:17.038 2100 FEE 444209 21344 6119485 2024-02-29 21:19:17.038 2024-02-29 21:19:17.038 18900 TIP 444209 18219 6119493 2024-02-29 21:21:42.415 2024-02-29 21:21:42.415 2100 FEE 444303 16406 6119494 2024-02-29 21:21:42.415 2024-02-29 21:21:42.415 18900 TIP 444303 11523 6119497 2024-02-29 21:21:53.114 2024-02-29 21:21:53.114 100 FEE 444284 19924 6119498 2024-02-29 21:21:53.114 2024-02-29 21:21:53.114 900 TIP 444284 9184 6119510 2024-02-29 21:25:36.477 2024-02-29 21:25:36.477 2500 FEE 444102 21514 6119511 2024-02-29 21:25:36.477 2024-02-29 21:25:36.477 22500 TIP 444102 20470 6119536 2024-02-29 21:28:37.175 2024-02-29 21:28:37.175 1000 FEE 444294 659 6119537 2024-02-29 21:28:37.175 2024-02-29 21:28:37.175 9000 TIP 444294 20614 6119559 2024-02-29 21:32:16.744 2024-02-29 21:32:16.744 1000 FEE 444313 994 6119566 2024-02-29 21:34:19.911 2024-02-29 21:34:19.911 3200 FEE 444173 687 6119567 2024-02-29 21:34:19.911 2024-02-29 21:34:19.911 28800 TIP 444173 18678 6119577 2024-02-29 21:38:33.992 2024-02-29 21:38:33.992 100 FEE 444102 21482 6119578 2024-02-29 21:38:33.992 2024-02-29 21:38:33.992 900 TIP 444102 20871 6119587 2024-02-29 21:38:35.352 2024-02-29 21:38:35.352 100 FEE 444102 1713 6119588 2024-02-29 21:38:35.352 2024-02-29 21:38:35.352 900 TIP 444102 1802 6119597 2024-02-29 21:38:36.51 2024-02-29 21:38:36.51 100 FEE 444102 19905 6119598 2024-02-29 21:38:36.51 2024-02-29 21:38:36.51 900 TIP 444102 20691 6119599 2024-02-29 21:38:42.01 2024-02-29 21:38:42.01 1000 FEE 444168 11522 6119600 2024-02-29 21:38:42.01 2024-02-29 21:38:42.01 9000 TIP 444168 20310 6119608 2024-02-29 21:40:19.107 2024-02-29 21:40:19.107 800 FEE 443878 20205 6119609 2024-02-29 21:40:19.107 2024-02-29 21:40:19.107 7200 TIP 443878 986 6119626 2024-02-29 21:42:15.804 2024-02-29 21:42:15.804 13000 FEE 443891 17513 6119627 2024-02-29 21:42:15.804 2024-02-29 21:42:15.804 117000 TIP 443891 10934 6119628 2024-02-29 21:42:21.674 2024-02-29 21:42:21.674 1000 FEE 444318 1180 6119641 2024-02-29 21:43:25.257 2024-02-29 21:43:25.257 10100 FEE 444168 19030 6119642 2024-02-29 21:43:25.257 2024-02-29 21:43:25.257 90900 TIP 444168 19284 6054340 2024-02-24 14:56:05.225 2024-02-24 14:56:05.225 1000 STREAM 141924 20775 6118924 2024-02-29 20:40:00.723 2024-02-29 20:40:00.723 1800 TIP 442997 19488 6054362 2024-02-24 14:59:00.801 2024-02-24 14:59:00.801 1000 FEE 437321 20073 6054370 2024-02-24 15:00:43.712 2024-02-24 15:00:43.712 1000 FEE 437325 5128 6054416 2024-02-24 15:06:03.097 2024-02-24 15:06:03.097 1000 FEE 437336 19541 6054448 2024-02-24 15:08:10.812 2024-02-24 15:08:10.812 1000 FEE 437343 15386 6054450 2024-02-24 15:08:40.352 2024-02-24 15:08:40.352 1000 FEE 437340 6471 6054451 2024-02-24 15:08:40.352 2024-02-24 15:08:40.352 9000 TIP 437340 20080 6054452 2024-02-24 15:08:40.396 2024-02-24 15:08:40.396 7700 FEE 437343 21614 6054453 2024-02-24 15:08:40.396 2024-02-24 15:08:40.396 69300 TIP 437343 2460 6054457 2024-02-24 15:10:11.663 2024-02-24 15:10:11.663 1000 FEE 437346 20564 6054460 2024-02-24 15:10:58.445 2024-02-24 15:10:58.445 4000 FEE 437334 20788 6054461 2024-02-24 15:10:58.445 2024-02-24 15:10:58.445 36000 TIP 437334 1006 6054481 2024-02-24 15:13:05.028 2024-02-24 15:13:05.028 1000 FEE 437350 5359 6054497 2024-02-24 15:17:39.825 2024-02-24 15:17:39.825 1000 FEE 437352 1960 6054499 2024-02-24 15:17:46.567 2024-02-24 15:17:46.567 1000 FEE 437354 21458 6054506 2024-02-24 15:19:45.692 2024-02-24 15:19:45.692 10000 FEE 437357 6578 6054513 2024-02-24 15:20:35.982 2024-02-24 15:20:35.982 1000 FEE 437360 2437 6054516 2024-02-24 15:20:39.242 2024-02-24 15:20:39.242 1000 FEE 437352 18526 6054517 2024-02-24 15:20:39.242 2024-02-24 15:20:39.242 9000 TIP 437352 21037 6054520 2024-02-24 15:20:48.992 2024-02-24 15:20:48.992 2100 FEE 437301 16789 6054521 2024-02-24 15:20:48.992 2024-02-24 15:20:48.992 18900 TIP 437301 2652 6054525 2024-02-24 15:20:57.828 2024-02-24 15:20:57.828 1000 FEE 436769 20376 6054526 2024-02-24 15:20:57.828 2024-02-24 15:20:57.828 9000 TIP 436769 15890 6054528 2024-02-24 15:21:05.899 2024-02-24 15:21:05.899 10000 FEE 436729 5522 6054529 2024-02-24 15:21:05.899 2024-02-24 15:21:05.899 90000 TIP 436729 19773 6054555 2024-02-24 15:23:49.453 2024-02-24 15:23:49.453 200 FEE 437168 12744 6054556 2024-02-24 15:23:49.453 2024-02-24 15:23:49.453 1800 TIP 437168 19403 6054610 2024-02-24 15:39:39.293 2024-02-24 15:39:39.293 1000 FEE 437373 20680 6054611 2024-02-24 15:40:00.268 2024-02-24 15:40:00.268 1000 FEE 437374 20614 6054615 2024-02-24 15:40:04.41 2024-02-24 15:40:04.41 1000 FEE 436734 629 6054616 2024-02-24 15:40:04.41 2024-02-24 15:40:04.41 9000 TIP 436734 17953 6054662 2024-02-24 15:41:17.685 2024-02-24 15:41:17.685 1000 FEE 436601 20376 6054663 2024-02-24 15:41:17.685 2024-02-24 15:41:17.685 9000 TIP 436601 20603 6054667 2024-02-24 15:41:52.796 2024-02-24 15:41:52.796 1000 FEE 437376 18177 6054672 2024-02-24 15:43:22.67 2024-02-24 15:43:22.67 0 FEE 437378 704 6054690 2024-02-24 15:45:24.237 2024-02-24 15:45:24.237 100 FEE 437233 704 6054691 2024-02-24 15:45:24.237 2024-02-24 15:45:24.237 900 TIP 437233 20205 6054734 2024-02-24 15:49:42.655 2024-02-24 15:49:42.655 2100 FEE 437291 1577 6054735 2024-02-24 15:49:42.655 2024-02-24 15:49:42.655 18900 TIP 437291 644 6054745 2024-02-24 15:50:24.378 2024-02-24 15:50:24.378 2100 FEE 437164 9350 6054746 2024-02-24 15:50:24.378 2024-02-24 15:50:24.378 18900 TIP 437164 20254 6054757 2024-02-24 15:50:39.585 2024-02-24 15:50:39.585 1000 FEE 436792 5694 6054758 2024-02-24 15:50:39.585 2024-02-24 15:50:39.585 9000 TIP 436792 2596 6054782 2024-02-24 15:53:05.417 2024-02-24 15:53:05.417 7700 FEE 437269 2639 6054783 2024-02-24 15:53:05.417 2024-02-24 15:53:05.417 69300 TIP 437269 21532 6054788 2024-02-24 15:53:05.885 2024-02-24 15:53:05.885 7700 FEE 437269 9335 6054789 2024-02-24 15:53:05.885 2024-02-24 15:53:05.885 69300 TIP 437269 16124 6054798 2024-02-24 15:53:10.301 2024-02-24 15:53:10.301 2100 FEE 437243 7992 6054799 2024-02-24 15:53:10.301 2024-02-24 15:53:10.301 18900 TIP 437243 18828 6054802 2024-02-24 15:53:14.827 2024-02-24 15:53:14.827 7700 FEE 437269 5637 6054803 2024-02-24 15:53:14.827 2024-02-24 15:53:14.827 69300 TIP 437269 21562 6054804 2024-02-24 15:53:15.129 2024-02-24 15:53:15.129 7700 FEE 437269 8541 6054805 2024-02-24 15:53:15.129 2024-02-24 15:53:15.129 69300 TIP 437269 13399 6054808 2024-02-24 15:53:15.316 2024-02-24 15:53:15.316 7700 FEE 437269 9921 6054809 2024-02-24 15:53:15.316 2024-02-24 15:53:15.316 69300 TIP 437269 17221 6054814 2024-02-24 15:54:03.311 2024-02-24 15:54:03.311 500 FEE 437381 14195 6054815 2024-02-24 15:54:03.311 2024-02-24 15:54:03.311 4500 TIP 437381 12422 6054826 2024-02-24 15:54:19.672 2024-02-24 15:54:19.672 7700 FEE 437269 12422 6054827 2024-02-24 15:54:19.672 2024-02-24 15:54:19.672 69300 TIP 437269 19839 6054849 2024-02-24 15:54:48.715 2024-02-24 15:54:48.715 6900 FEE 437269 14950 6054850 2024-02-24 15:54:48.715 2024-02-24 15:54:48.715 62100 TIP 437269 9844 6054851 2024-02-24 15:54:48.973 2024-02-24 15:54:48.973 6900 FEE 437269 629 6054852 2024-02-24 15:54:48.973 2024-02-24 15:54:48.973 62100 TIP 437269 16336 6054408 2024-02-24 15:05:02.124 2024-02-24 15:05:02.124 1000 STREAM 141924 736 6118929 2024-02-29 20:40:10.368 2024-02-29 20:40:10.368 1000 FEE 444241 18274 6118940 2024-02-29 20:41:26.522 2024-02-29 20:41:26.522 10000 FEE 444102 2233 6118941 2024-02-29 20:41:26.522 2024-02-29 20:41:26.522 90000 TIP 444102 7913 6118942 2024-02-29 20:41:26.642 2024-02-29 20:41:26.642 2100 FEE 444102 19103 6118943 2024-02-29 20:41:26.642 2024-02-29 20:41:26.642 18900 TIP 444102 5646 6118952 2024-02-29 20:41:45.372 2024-02-29 20:41:45.372 1000 FEE 444243 11288 6118981 2024-02-29 20:43:13.222 2024-02-29 20:43:13.222 1000 FEE 443712 21430 6118982 2024-02-29 20:43:13.222 2024-02-29 20:43:13.222 9000 TIP 443712 5701 6119048 2024-02-29 20:48:01.096 2024-02-29 20:48:01.096 200 FEE 444253 795 6119049 2024-02-29 20:48:01.096 2024-02-29 20:48:01.096 1800 TIP 444253 4250 6119054 2024-02-29 20:48:08.727 2024-02-29 20:48:08.727 2100 FEE 443989 16259 6119055 2024-02-29 20:48:08.727 2024-02-29 20:48:08.727 18900 TIP 443989 21291 6119056 2024-02-29 20:48:21.023 2024-02-29 20:48:21.023 2100 FEE 444253 19309 6119057 2024-02-29 20:48:21.023 2024-02-29 20:48:21.023 18900 TIP 444253 4633 6119063 2024-02-29 20:48:36.142 2024-02-29 20:48:36.142 2100 FEE 444242 21263 6119064 2024-02-29 20:48:36.142 2024-02-29 20:48:36.142 18900 TIP 444242 18243 6119083 2024-02-29 20:50:42.012 2024-02-29 20:50:42.012 0 FEE 444249 21422 6119087 2024-02-29 20:51:19.761 2024-02-29 20:51:19.761 0 FEE 444249 18359 6119091 2024-02-29 20:51:25.904 2024-02-29 20:51:25.904 2100 FEE 444230 15577 6119092 2024-02-29 20:51:25.904 2024-02-29 20:51:25.904 18900 TIP 444230 19848 6119097 2024-02-29 20:52:08.684 2024-02-29 20:52:08.684 1000 FEE 444264 16301 6119127 2024-02-29 20:52:54.876 2024-02-29 20:52:54.876 2100 FEE 444215 21281 6119128 2024-02-29 20:52:54.876 2024-02-29 20:52:54.876 18900 TIP 444215 4984 6119137 2024-02-29 20:52:59.596 2024-02-29 20:52:59.596 1000 FEE 444266 7675 6119140 2024-02-29 20:53:01.946 2024-02-29 20:53:01.946 2100 FEE 444184 13217 6119141 2024-02-29 20:53:01.946 2024-02-29 20:53:01.946 18900 TIP 444184 807 6119147 2024-02-29 20:53:07.132 2024-02-29 20:53:07.132 2100 FEE 444245 20597 6119148 2024-02-29 20:53:07.132 2024-02-29 20:53:07.132 18900 TIP 444245 21254 6119176 2024-02-29 20:55:23.576 2024-02-29 20:55:23.576 3100 FEE 444102 1620 6119177 2024-02-29 20:55:23.576 2024-02-29 20:55:23.576 27900 TIP 444102 12779 6119183 2024-02-29 20:56:08.76 2024-02-29 20:56:08.76 1000 FEE 444273 12930 6119212 2024-02-29 20:58:17.107 2024-02-29 20:58:17.107 1000 FEE 444213 20871 6119213 2024-02-29 20:58:17.107 2024-02-29 20:58:17.107 9000 TIP 444213 1130 6119226 2024-02-29 20:59:51.972 2024-02-29 20:59:51.972 0 FEE 444279 18995 6119232 2024-02-29 21:00:36.571 2024-02-29 21:00:36.571 0 FEE 444280 7989 6119235 2024-02-29 21:00:50.232 2024-02-29 21:00:50.232 5000 FEE 444278 630 6119236 2024-02-29 21:00:50.232 2024-02-29 21:00:50.232 45000 TIP 444278 9346 6119241 2024-02-29 21:01:05.566 2024-02-29 21:01:05.566 5000 FEE 444102 19773 6119242 2024-02-29 21:01:05.566 2024-02-29 21:01:05.566 45000 TIP 444102 20523 6119245 2024-02-29 21:01:18.818 2024-02-29 21:01:18.818 1000 FEE 444285 13622 6119246 2024-02-29 21:01:19.302 2024-02-29 21:01:19.302 500 FEE 423124 3544 6119247 2024-02-29 21:01:19.302 2024-02-29 21:01:19.302 4500 TIP 423124 20106 6119250 2024-02-29 21:01:20.251 2024-02-29 21:01:20.251 500 FEE 423124 16387 6119251 2024-02-29 21:01:20.251 2024-02-29 21:01:20.251 4500 TIP 423124 17707 6119279 2024-02-29 21:02:34.783 2024-02-29 21:02:34.783 0 FEE 444287 17707 6119287 2024-02-29 21:04:02.374 2024-02-29 21:04:02.374 1000 FEE 444290 16638 6119300 2024-02-29 21:04:18.973 2024-02-29 21:04:18.973 500 FEE 444102 16876 6119301 2024-02-29 21:04:18.973 2024-02-29 21:04:18.973 4500 TIP 444102 20680 6119306 2024-02-29 21:04:19.512 2024-02-29 21:04:19.512 500 FEE 444102 1090 6119307 2024-02-29 21:04:19.512 2024-02-29 21:04:19.512 4500 TIP 444102 2460 6119328 2024-02-29 21:04:21.883 2024-02-29 21:04:21.883 500 FEE 444102 6537 6119329 2024-02-29 21:04:21.883 2024-02-29 21:04:21.883 4500 TIP 444102 10862 6119333 2024-02-29 21:04:59.985 2024-02-29 21:04:59.985 2100 FEE 442848 886 6119334 2024-02-29 21:04:59.985 2024-02-29 21:04:59.985 18900 TIP 442848 5112 6119352 2024-02-29 21:07:30.026 2024-02-29 21:07:30.026 1000 FEE 444296 17291 6119353 2024-02-29 21:07:32.089 2024-02-29 21:07:32.089 1000 FEE 444297 17392 6119363 2024-02-29 21:08:12.453 2024-02-29 21:08:12.453 4200 FEE 443745 14247 6119364 2024-02-29 21:08:12.453 2024-02-29 21:08:12.453 37800 TIP 443745 19910 6119383 2024-02-29 21:10:24.026 2024-02-29 21:10:24.026 1700 FEE 444298 9107 6119384 2024-02-29 21:10:24.026 2024-02-29 21:10:24.026 15300 TIP 444298 13574 6119387 2024-02-29 21:10:50.592 2024-02-29 21:10:50.592 0 FEE 444294 12188 6119388 2024-02-29 21:11:02.566 2024-02-29 21:11:02.566 500 FEE 444179 21131 6119389 2024-02-29 21:11:02.566 2024-02-29 21:11:02.566 4500 TIP 444179 19576 6119396 2024-02-29 21:11:04.062 2024-02-29 21:11:04.062 500 FEE 444179 17157 6119397 2024-02-29 21:11:04.062 2024-02-29 21:11:04.062 4500 TIP 444179 811 6119411 2024-02-29 21:11:05.553 2024-02-29 21:11:05.553 500 FEE 444179 12160 6119412 2024-02-29 21:11:05.553 2024-02-29 21:11:05.553 4500 TIP 444179 8998 6119421 2024-02-29 21:11:06.742 2024-02-29 21:11:06.742 500 FEE 444179 18543 6119422 2024-02-29 21:11:06.742 2024-02-29 21:11:06.742 4500 TIP 444179 17526 6119423 2024-02-29 21:11:06.978 2024-02-29 21:11:06.978 500 FEE 444179 5455 6119424 2024-02-29 21:11:06.978 2024-02-29 21:11:06.978 4500 TIP 444179 18225 6119435 2024-02-29 21:11:15.886 2024-02-29 21:11:15.886 3500 FEE 444249 2735 6119436 2024-02-29 21:11:15.886 2024-02-29 21:11:15.886 31500 TIP 444249 4802 6119454 2024-02-29 21:16:45.059 2024-02-29 21:16:45.059 900 FEE 444296 16717 6119455 2024-02-29 21:16:45.059 2024-02-29 21:16:45.059 8100 TIP 444296 6310 6119467 2024-02-29 21:17:33.751 2024-02-29 21:17:33.751 1000 FEE 444306 19335 6054456 2024-02-24 15:10:02.405 2024-02-24 15:10:02.405 1000 STREAM 141924 6149 6054474 2024-02-24 15:12:02.336 2024-02-24 15:12:02.336 1000 STREAM 141924 10016 6054496 2024-02-24 15:17:02.347 2024-02-24 15:17:02.347 1000 STREAM 141924 17797 6118987 2024-02-29 20:43:49.578 2024-02-29 20:43:49.578 1000 FEE 443904 20026 6118988 2024-02-29 20:43:49.578 2024-02-29 20:43:49.578 9000 TIP 443904 21493 6118989 2024-02-29 20:43:52.394 2024-02-29 20:43:52.394 1000 FEE 444247 21208 6118994 2024-02-29 20:44:02.151 2024-02-29 20:44:02.151 2500 FEE 444126 960 6118995 2024-02-29 20:44:02.151 2024-02-29 20:44:02.151 22500 TIP 444126 699 6119007 2024-02-29 20:44:33.185 2024-02-29 20:44:33.185 1000 POLL 444078 21067 6119011 2024-02-29 20:45:01.541 2024-02-29 20:45:01.541 1000 FEE 444151 6003 6119012 2024-02-29 20:45:01.541 2024-02-29 20:45:01.541 9000 TIP 444151 1740 6119033 2024-02-29 20:47:08.407 2024-02-29 20:47:08.407 500 FEE 444168 11885 6119034 2024-02-29 20:47:08.407 2024-02-29 20:47:08.407 4500 TIP 444168 1726 6119035 2024-02-29 20:47:22.771 2024-02-29 20:47:22.771 1000 FEE 444251 16754 6119058 2024-02-29 20:48:25.034 2024-02-29 20:48:25.034 1000 FEE 444254 14651 6119072 2024-02-29 20:49:18.951 2024-02-29 20:49:18.951 1000 FEE 444257 15266 6119117 2024-02-29 20:52:46.689 2024-02-29 20:52:46.689 2100 FEE 444185 679 6119118 2024-02-29 20:52:46.689 2024-02-29 20:52:46.689 18900 TIP 444185 21103 6119143 2024-02-29 20:53:04.775 2024-02-29 20:53:04.775 2100 FEE 444194 21398 6119144 2024-02-29 20:53:04.775 2024-02-29 20:53:04.775 18900 TIP 444194 19633 6119172 2024-02-29 20:55:16.842 2024-02-29 20:55:16.842 1000 FEE 444168 5865 6119173 2024-02-29 20:55:16.842 2024-02-29 20:55:16.842 9000 TIP 444168 18896 6119180 2024-02-29 20:55:47.008 2024-02-29 20:55:47.008 1000 FEE 444272 18017 6119199 2024-02-29 20:57:35.085 2024-02-29 20:57:35.085 3100 FEE 444148 17535 6119200 2024-02-29 20:57:35.085 2024-02-29 20:57:35.085 27900 TIP 444148 5175 6119219 2024-02-29 20:59:17.605 2024-02-29 20:59:17.605 1000 FEE 444278 1584 6119225 2024-02-29 20:59:47.187 2024-02-29 20:59:47.187 1000 FEE 444280 8535 6119231 2024-02-29 21:00:06.193 2024-02-29 21:00:06.193 1000 FEE 444283 20500 6119248 2024-02-29 21:01:19.724 2024-02-29 21:01:19.724 500 FEE 423124 4128 6119249 2024-02-29 21:01:19.724 2024-02-29 21:01:19.724 4500 TIP 423124 18877 6119258 2024-02-29 21:02:04.995 2024-02-29 21:02:04.995 10000 FEE 444230 12368 6119259 2024-02-29 21:02:04.995 2024-02-29 21:02:04.995 90000 TIP 444230 965 6119262 2024-02-29 21:02:22.434 2024-02-29 21:02:22.434 1000 FEE 444284 4378 6119263 2024-02-29 21:02:22.434 2024-02-29 21:02:22.434 9000 TIP 444284 14247 6119277 2024-02-29 21:02:29.236 2024-02-29 21:02:29.236 12800 FEE 444253 4502 6119278 2024-02-29 21:02:29.236 2024-02-29 21:02:29.236 115200 TIP 444253 10862 6119292 2024-02-29 21:04:17.794 2024-02-29 21:04:17.794 500 FEE 444102 17094 6119293 2024-02-29 21:04:17.794 2024-02-29 21:04:17.794 4500 TIP 444102 14906 6119358 2024-02-29 21:08:01.754 2024-02-29 21:08:01.754 500 FEE 444078 15119 6119359 2024-02-29 21:08:01.754 2024-02-29 21:08:01.754 4500 TIP 444078 21400 6119405 2024-02-29 21:11:04.901 2024-02-29 21:11:04.901 500 FEE 444179 20623 6119406 2024-02-29 21:11:04.901 2024-02-29 21:11:04.901 4500 TIP 444179 859 6119449 2024-02-29 21:15:49.828 2024-02-29 21:15:49.828 1000 FEE 444302 19033 6119489 2024-02-29 21:21:11.192 2024-02-29 21:21:11.192 100 FEE 444244 21369 6119490 2024-02-29 21:21:11.192 2024-02-29 21:21:11.192 900 TIP 444244 21424 6119507 2024-02-29 21:25:26.469 2024-02-29 21:25:26.469 1000 FEE 444311 6499 6119545 2024-02-29 21:29:52.43 2024-02-29 21:29:52.43 1000 FEE 444310 20205 6119546 2024-02-29 21:29:52.43 2024-02-29 21:29:52.43 9000 TIP 444310 16353 6119563 2024-02-29 21:33:24.427 2024-02-29 21:33:24.427 1000 FEE 444264 18241 6119564 2024-02-29 21:33:24.427 2024-02-29 21:33:24.427 9000 TIP 444264 5806 6119606 2024-02-29 21:40:00.091 2024-02-29 21:40:00.091 100000 FEE 444315 14295 6119629 2024-02-29 21:42:35.703 2024-02-29 21:42:35.703 2100 FEE 444114 10668 6119630 2024-02-29 21:42:35.703 2024-02-29 21:42:35.703 18900 TIP 444114 20619 6119636 2024-02-29 21:42:46.296 2024-02-29 21:42:46.296 2100 FEE 444308 20218 6119637 2024-02-29 21:42:46.296 2024-02-29 21:42:46.296 18900 TIP 444308 14959 6119660 2024-02-29 21:47:39.786 2024-02-29 21:47:39.786 1000 FEE 444324 18819 6119672 2024-02-29 21:49:38.242 2024-02-29 21:49:38.242 1000 FEE 444327 19857 6119687 2024-02-29 21:53:38.855 2024-02-29 21:53:38.855 1000 FEE 444330 20619 6119692 2024-02-29 21:55:40.692 2024-02-29 21:55:40.692 2600 FEE 444011 900 6119693 2024-02-29 21:55:40.692 2024-02-29 21:55:40.692 23400 TIP 444011 19332 6119706 2024-02-29 21:57:33.124 2024-02-29 21:57:33.124 1000 FEE 444215 10484 6119707 2024-02-29 21:57:33.124 2024-02-29 21:57:33.124 9000 TIP 444215 9166 6119726 2024-02-29 22:00:47.328 2024-02-29 22:00:47.328 1000 FEE 444333 16633 6119739 2024-02-29 22:03:31.241 2024-02-29 22:03:31.241 2100 FEE 444209 20776 6119740 2024-02-29 22:03:31.241 2024-02-29 22:03:31.241 18900 TIP 444209 21329 6119741 2024-02-29 22:03:35.036 2024-02-29 22:03:35.036 2100 FEE 444176 16126 6119742 2024-02-29 22:03:35.036 2024-02-29 22:03:35.036 18900 TIP 444176 19174 6119749 2024-02-29 22:04:11.349 2024-02-29 22:04:11.349 1000 FEE 444338 1751 6119752 2024-02-29 22:04:44.083 2024-02-29 22:04:44.083 3000 FEE 444102 11527 6119753 2024-02-29 22:04:44.083 2024-02-29 22:04:44.083 27000 TIP 444102 19732 6119772 2024-02-29 22:07:32.075 2024-02-29 22:07:32.075 3000 FEE 443799 5557 6054560 2024-02-24 15:23:50.034 2024-02-24 15:23:50.034 1800 TIP 437168 8287 6054570 2024-02-24 15:25:27.882 2024-02-24 15:25:27.882 11100 FEE 437346 854 6054571 2024-02-24 15:25:27.882 2024-02-24 15:25:27.882 99900 TIP 437346 20433 6054623 2024-02-24 15:40:42.124 2024-02-24 15:40:42.124 10000 FEE 437370 16704 6054624 2024-02-24 15:40:42.124 2024-02-24 15:40:42.124 90000 TIP 437370 14472 6054633 2024-02-24 15:40:45.16 2024-02-24 15:40:45.16 1000 FEE 436591 1515 6054634 2024-02-24 15:40:45.16 2024-02-24 15:40:45.16 9000 TIP 436591 20683 6054641 2024-02-24 15:40:50.35 2024-02-24 15:40:50.35 1000 FEE 436595 9450 6054642 2024-02-24 15:40:50.35 2024-02-24 15:40:50.35 9000 TIP 436595 18051 6054664 2024-02-24 15:41:18.453 2024-02-24 15:41:18.453 1000 FEE 436601 1825 6054665 2024-02-24 15:41:18.453 2024-02-24 15:41:18.453 9000 TIP 436601 19848 6054675 2024-02-24 15:43:26.077 2024-02-24 15:43:26.077 1000 FEE 436631 20106 6054676 2024-02-24 15:43:26.077 2024-02-24 15:43:26.077 9000 TIP 436631 21212 6054679 2024-02-24 15:43:26.864 2024-02-24 15:43:26.864 1000 FEE 436631 900 6054680 2024-02-24 15:43:26.864 2024-02-24 15:43:26.864 9000 TIP 436631 2029 6054685 2024-02-24 15:44:47.139 2024-02-24 15:44:47.139 1000 FEE 437380 1326 6054692 2024-02-24 15:45:25.986 2024-02-24 15:45:25.986 1000 FEE 437372 15161 6054693 2024-02-24 15:45:25.986 2024-02-24 15:45:25.986 9000 TIP 437372 13217 6054697 2024-02-24 15:45:41.461 2024-02-24 15:45:41.461 1000 FEE 436633 19296 6054698 2024-02-24 15:45:41.461 2024-02-24 15:45:41.461 9000 TIP 436633 630 6054701 2024-02-24 15:45:42.972 2024-02-24 15:45:42.972 1000 FEE 436633 13216 6054702 2024-02-24 15:45:42.972 2024-02-24 15:45:42.972 9000 TIP 436633 622 6054703 2024-02-24 15:45:43.62 2024-02-24 15:45:43.62 1000 FEE 436633 17217 6054704 2024-02-24 15:45:43.62 2024-02-24 15:45:43.62 9000 TIP 436633 6041 6054711 2024-02-24 15:45:47.686 2024-02-24 15:45:47.686 1000 FEE 436644 20087 6054712 2024-02-24 15:45:47.686 2024-02-24 15:45:47.686 9000 TIP 436644 21058 6054724 2024-02-24 15:48:36.004 2024-02-24 15:48:36.004 1000 FEE 436764 18387 6054725 2024-02-24 15:48:36.004 2024-02-24 15:48:36.004 9000 TIP 436764 711 6054726 2024-02-24 15:48:36.666 2024-02-24 15:48:36.666 1000 FEE 436764 17011 6054727 2024-02-24 15:48:36.666 2024-02-24 15:48:36.666 9000 TIP 436764 1136 6054763 2024-02-24 15:52:43.89 2024-02-24 15:52:43.89 7700 FEE 437369 13903 6054764 2024-02-24 15:52:43.89 2024-02-24 15:52:43.89 69300 TIP 437369 21222 6054765 2024-02-24 15:52:44.927 2024-02-24 15:52:44.927 7700 FEE 437363 1094 6054766 2024-02-24 15:52:44.927 2024-02-24 15:52:44.927 69300 TIP 437363 12768 6054780 2024-02-24 15:53:05.205 2024-02-24 15:53:05.205 7700 FEE 437269 5160 6054781 2024-02-24 15:53:05.205 2024-02-24 15:53:05.205 69300 TIP 437269 17984 6054784 2024-02-24 15:53:05.488 2024-02-24 15:53:05.488 7700 FEE 437269 20187 6054785 2024-02-24 15:53:05.488 2024-02-24 15:53:05.488 69300 TIP 437269 21527 6054806 2024-02-24 15:53:15.188 2024-02-24 15:53:15.188 7700 FEE 437269 14472 6054807 2024-02-24 15:53:15.188 2024-02-24 15:53:15.188 69300 TIP 437269 20110 6054812 2024-02-24 15:54:01.765 2024-02-24 15:54:01.765 1000 FEE 437387 18311 6054828 2024-02-24 15:54:19.771 2024-02-24 15:54:19.771 7700 FEE 437269 6382 6054829 2024-02-24 15:54:19.771 2024-02-24 15:54:19.771 69300 TIP 437269 894 6054845 2024-02-24 15:54:45.061 2024-02-24 15:54:45.061 1000 FEE 437389 15843 6054891 2024-02-24 15:56:21.933 2024-02-24 15:56:21.933 6900 FEE 437356 16329 6054892 2024-02-24 15:56:21.933 2024-02-24 15:56:21.933 62100 TIP 437356 18243 6054897 2024-02-24 15:56:39.876 2024-02-24 15:56:39.876 21000 FEE 437396 10280 6054901 2024-02-24 15:57:09.669 2024-02-24 15:57:09.669 500 FEE 437395 12220 6054902 2024-02-24 15:57:09.669 2024-02-24 15:57:09.669 4500 TIP 437395 21329 6054908 2024-02-24 15:59:00.135 2024-02-24 15:59:00.135 0 FEE 437400 10469 6054951 2024-02-24 16:00:39.961 2024-02-24 16:00:39.961 1000 FEE 437407 13517 6054953 2024-02-24 16:01:04.409 2024-02-24 16:01:04.409 1000 FEE 437408 1628 6054954 2024-02-24 16:01:04.409 2024-02-24 16:01:04.409 9000 TIP 437408 9 6054978 2024-02-24 16:03:51.834 2024-02-24 16:03:51.834 1000 FEE 436722 9552 6054979 2024-02-24 16:03:51.834 2024-02-24 16:03:51.834 9000 TIP 436722 20778 6054990 2024-02-24 16:05:12.367 2024-02-24 16:05:12.367 6900 FEE 437411 15160 6054991 2024-02-24 16:05:12.367 2024-02-24 16:05:12.367 62100 TIP 437411 18727 6055005 2024-02-24 16:06:36.559 2024-02-24 16:06:36.559 1000 FEE 436331 12139 6055006 2024-02-24 16:06:36.559 2024-02-24 16:06:36.559 9000 TIP 436331 9611 6055022 2024-02-24 16:08:35.767 2024-02-24 16:08:35.767 1000 FEE 437414 11609 6055023 2024-02-24 16:08:35.767 2024-02-24 16:08:35.767 9000 TIP 437414 20094 6055053 2024-02-24 16:11:59.729 2024-02-24 16:11:59.729 5000 FEE 436977 5306 6055054 2024-02-24 16:11:59.729 2024-02-24 16:11:59.729 45000 TIP 436977 7185 6055090 2024-02-24 16:15:07.922 2024-02-24 16:15:07.922 1000 FEE 437190 20889 6055091 2024-02-24 16:15:07.922 2024-02-24 16:15:07.922 9000 TIP 437190 5809 6055110 2024-02-24 16:15:43.453 2024-02-24 16:15:43.453 1000 FEE 437425 18116 6055118 2024-02-24 16:16:44.596 2024-02-24 16:16:44.596 1000 FEE 437238 17172 6055119 2024-02-24 16:16:44.596 2024-02-24 16:16:44.596 9000 TIP 437238 9334 6055150 2024-02-24 16:20:04.841 2024-02-24 16:20:04.841 2100 FEE 437423 664 6055151 2024-02-24 16:20:04.841 2024-02-24 16:20:04.841 18900 TIP 437423 11158 6055167 2024-02-24 16:21:59.388 2024-02-24 16:21:59.388 10000 FEE 437276 694 6055168 2024-02-24 16:21:59.388 2024-02-24 16:21:59.388 90000 TIP 437276 16724 6055172 2024-02-24 16:22:11.937 2024-02-24 16:22:11.937 2100 FEE 437429 738 6055173 2024-02-24 16:22:11.937 2024-02-24 16:22:11.937 18900 TIP 437429 654 6055198 2024-02-24 16:25:58.586 2024-02-24 16:25:58.586 10000 FEE 437218 17800 6055199 2024-02-24 16:25:58.586 2024-02-24 16:25:58.586 90000 TIP 437218 20554 6055229 2024-02-24 16:28:20.396 2024-02-24 16:28:20.396 1000 FEE 437411 16769 6055230 2024-02-24 16:28:20.396 2024-02-24 16:28:20.396 9000 TIP 437411 19281 6055245 2024-02-24 16:30:37.641 2024-02-24 16:30:37.641 900 FEE 437370 10944 6055246 2024-02-24 16:30:37.641 2024-02-24 16:30:37.641 8100 TIP 437370 7960 6055248 2024-02-24 16:30:56.674 2024-02-24 16:30:56.674 1000 FEE 437441 2156 6055252 2024-02-24 16:31:20.706 2024-02-24 16:31:20.706 900 FEE 437403 8326 6055253 2024-02-24 16:31:20.706 2024-02-24 16:31:20.706 8100 TIP 437403 16653 6055260 2024-02-24 16:32:07.293 2024-02-24 16:32:07.293 900 FEE 437089 17217 6055261 2024-02-24 16:32:07.293 2024-02-24 16:32:07.293 8100 TIP 437089 18897 6055272 2024-02-24 16:32:33.848 2024-02-24 16:32:33.848 3300 FEE 437238 720 6055273 2024-02-24 16:32:33.848 2024-02-24 16:32:33.848 29700 TIP 437238 17552 6055282 2024-02-24 16:33:19.426 2024-02-24 16:33:19.426 100 FEE 436981 8448 6055283 2024-02-24 16:33:19.426 2024-02-24 16:33:19.426 900 TIP 436981 1718 6055314 2024-02-24 16:33:41.106 2024-02-24 16:33:41.106 1000 FEE 437327 16660 6055315 2024-02-24 16:33:41.106 2024-02-24 16:33:41.106 9000 TIP 437327 6260 6055322 2024-02-24 16:34:25.301 2024-02-24 16:34:25.301 1000 FEE 437381 21145 6055323 2024-02-24 16:34:25.301 2024-02-24 16:34:25.301 9000 TIP 437381 17014 6055327 2024-02-24 16:36:05.941 2024-02-24 16:36:05.941 1700 FEE 436740 19507 6055328 2024-02-24 16:36:05.941 2024-02-24 16:36:05.941 15300 TIP 436740 15690 6055335 2024-02-24 16:36:46.023 2024-02-24 16:36:46.023 1000 FEE 437446 19773 6054647 2024-02-24 15:40:55.968 2024-02-24 15:40:55.968 1000 FEE 436596 623 6054648 2024-02-24 15:40:55.968 2024-02-24 15:40:55.968 9000 TIP 436596 3411 6054651 2024-02-24 15:40:56.405 2024-02-24 15:40:56.405 1000 FEE 436596 11329 6054652 2024-02-24 15:40:56.405 2024-02-24 15:40:56.405 9000 TIP 436596 7185 6054653 2024-02-24 15:40:56.721 2024-02-24 15:40:56.721 1000 FEE 436596 20163 6054654 2024-02-24 15:40:56.721 2024-02-24 15:40:56.721 9000 TIP 436596 1745 6054713 2024-02-24 15:45:48.045 2024-02-24 15:45:48.045 1000 FEE 436644 9758 6054714 2024-02-24 15:45:48.045 2024-02-24 15:45:48.045 9000 TIP 436644 16649 6054741 2024-02-24 15:50:10.034 2024-02-24 15:50:10.034 1000 FEE 437042 1745 6054742 2024-02-24 15:50:10.034 2024-02-24 15:50:10.034 9000 TIP 437042 19488 6054768 2024-02-24 15:53:02.734 2024-02-24 15:53:02.734 7700 FEE 437269 9695 6054769 2024-02-24 15:53:02.734 2024-02-24 15:53:02.734 69300 TIP 437269 1002 6054774 2024-02-24 15:53:04.836 2024-02-24 15:53:04.836 7700 FEE 437269 736 6054775 2024-02-24 15:53:04.836 2024-02-24 15:53:04.836 69300 TIP 437269 680 6054824 2024-02-24 15:54:19.344 2024-02-24 15:54:19.344 7700 FEE 437269 1261 6054825 2024-02-24 15:54:19.344 2024-02-24 15:54:19.344 69300 TIP 437269 3409 6054834 2024-02-24 15:54:20.14 2024-02-24 15:54:20.14 7700 FEE 437269 19154 6054835 2024-02-24 15:54:20.14 2024-02-24 15:54:20.14 69300 TIP 437269 14404 6054836 2024-02-24 15:54:20.195 2024-02-24 15:54:20.195 7700 FEE 437269 20231 6054837 2024-02-24 15:54:20.195 2024-02-24 15:54:20.195 69300 TIP 437269 5661 6054846 2024-02-24 15:54:47.134 2024-02-24 15:54:47.134 1000 FEE 437390 2329 6054865 2024-02-24 15:54:51.322 2024-02-24 15:54:51.322 13800 FEE 437269 20825 6054866 2024-02-24 15:54:51.322 2024-02-24 15:54:51.322 124200 TIP 437269 16410 6054871 2024-02-24 15:54:52.402 2024-02-24 15:54:52.402 6900 FEE 437269 2293 6054872 2024-02-24 15:54:52.402 2024-02-24 15:54:52.402 62100 TIP 437269 651 6054876 2024-02-24 15:55:12.328 2024-02-24 15:55:12.328 1000 FEE 437391 18446 6054879 2024-02-24 15:55:30.677 2024-02-24 15:55:30.677 5000 FEE 437394 897 6054898 2024-02-24 15:56:44.758 2024-02-24 15:56:44.758 100000 DONT_LIKE_THIS 437372 21369 6054917 2024-02-24 16:00:03.324 2024-02-24 16:00:03.324 1000 FEE 436677 18923 6054918 2024-02-24 16:00:03.324 2024-02-24 16:00:03.324 9000 TIP 436677 20514 6054930 2024-02-24 16:00:05.611 2024-02-24 16:00:05.611 1000 FEE 437404 9200 6054962 2024-02-24 16:01:35.916 2024-02-24 16:01:35.916 1000 FEE 437410 17172 6054968 2024-02-24 16:02:31.939 2024-02-24 16:02:31.939 1000 FEE 437411 17827 6054973 2024-02-24 16:03:37.308 2024-02-24 16:03:37.308 1000 FEE 437413 13759 6054980 2024-02-24 16:03:52.162 2024-02-24 16:03:52.162 1000 FEE 436722 21320 6054981 2024-02-24 16:03:52.162 2024-02-24 16:03:52.162 9000 TIP 436722 896 6054992 2024-02-24 16:05:13.416 2024-02-24 16:05:13.416 6900 FEE 437411 19905 6054993 2024-02-24 16:05:13.416 2024-02-24 16:05:13.416 62100 TIP 437411 17148 6054998 2024-02-24 16:06:07.884 2024-02-24 16:06:07.884 400 FEE 437180 16059 6054999 2024-02-24 16:06:07.884 2024-02-24 16:06:07.884 3600 TIP 437180 749 6055000 2024-02-24 16:06:09.34 2024-02-24 16:06:09.34 400 FEE 437383 2829 6055001 2024-02-24 16:06:09.34 2024-02-24 16:06:09.34 3600 TIP 437383 20642 6055008 2024-02-24 16:07:19.896 2024-02-24 16:07:19.896 21800 FEE 437408 1567 6055009 2024-02-24 16:07:19.896 2024-02-24 16:07:19.896 196200 TIP 437408 8544 6055011 2024-02-24 16:08:13.076 2024-02-24 16:08:13.076 1000 FEE 437416 6393 6055012 2024-02-24 16:08:19.163 2024-02-24 16:08:19.163 2100 FEE 437407 10270 6055013 2024-02-24 16:08:19.163 2024-02-24 16:08:19.163 18900 TIP 437407 20306 6055016 2024-02-24 16:08:35.201 2024-02-24 16:08:35.201 1000 FEE 437414 1624 6055017 2024-02-24 16:08:35.201 2024-02-24 16:08:35.201 9000 TIP 437414 1495 6055062 2024-02-24 16:12:54.027 2024-02-24 16:12:54.027 21800 FEE 436837 21356 6055063 2024-02-24 16:12:54.027 2024-02-24 16:12:54.027 196200 TIP 436837 8945 6055092 2024-02-24 16:15:08.197 2024-02-24 16:15:08.197 1000 FEE 437190 12158 6055093 2024-02-24 16:15:08.197 2024-02-24 16:15:08.197 9000 TIP 437190 16754 6055096 2024-02-24 16:15:08.826 2024-02-24 16:15:08.826 1000 FEE 437190 13361 6055097 2024-02-24 16:15:08.826 2024-02-24 16:15:08.826 9000 TIP 437190 12606 6055098 2024-02-24 16:15:09.42 2024-02-24 16:15:09.42 1000 FEE 437190 20439 6055099 2024-02-24 16:15:09.42 2024-02-24 16:15:09.42 9000 TIP 437190 19458 6055104 2024-02-24 16:15:25.825 2024-02-24 16:15:25.825 1000 FEE 437424 1198 6055105 2024-02-24 16:15:25.825 2024-02-24 16:15:25.825 9000 TIP 437424 1495 6055115 2024-02-24 16:15:54.024 2024-02-24 16:15:54.024 1000 FEE 437426 11298 6055122 2024-02-24 16:16:45.76 2024-02-24 16:16:45.76 1000 FEE 437238 979 6055123 2024-02-24 16:16:45.76 2024-02-24 16:16:45.76 9000 TIP 437238 19148 6055124 2024-02-24 16:16:46.475 2024-02-24 16:16:46.475 1000 FEE 437238 15526 6055125 2024-02-24 16:16:46.475 2024-02-24 16:16:46.475 9000 TIP 437238 20606 6055139 2024-02-24 16:17:45.454 2024-02-24 16:17:45.454 1000 FEE 437427 19911 6055141 2024-02-24 16:18:01.126 2024-02-24 16:18:01.126 1000 FEE 437428 2046 6055146 2024-02-24 16:19:17.255 2024-02-24 16:19:17.255 1000 FEE 437429 20647 6055154 2024-02-24 16:20:30.829 2024-02-24 16:20:30.829 100 FEE 437387 21072 6055155 2024-02-24 16:20:30.829 2024-02-24 16:20:30.829 900 TIP 437387 16353 6055181 2024-02-24 16:23:14.916 2024-02-24 16:23:14.916 100 FEE 437364 976 6055182 2024-02-24 16:23:14.916 2024-02-24 16:23:14.916 900 TIP 437364 9367 6055205 2024-02-24 16:26:54.05 2024-02-24 16:26:54.05 1000 FEE 437435 21541 6055209 2024-02-24 16:27:25.949 2024-02-24 16:27:25.949 2100 FEE 437269 21222 6055210 2024-02-24 16:27:25.949 2024-02-24 16:27:25.949 18900 TIP 437269 4502 6055213 2024-02-24 16:27:26.661 2024-02-24 16:27:26.661 2100 FEE 437269 14195 6055214 2024-02-24 16:27:26.661 2024-02-24 16:27:26.661 18900 TIP 437269 16653 6055240 2024-02-24 16:29:26.757 2024-02-24 16:29:26.757 1000 FEE 437439 1519 6055247 2024-02-24 16:30:56.106 2024-02-24 16:30:56.106 0 FEE 437440 7418 6055250 2024-02-24 16:31:20.52 2024-02-24 16:31:20.52 100 FEE 437403 697 6055251 2024-02-24 16:31:20.52 2024-02-24 16:31:20.52 900 TIP 437403 17411 6055262 2024-02-24 16:32:24.781 2024-02-24 16:32:24.781 1000 FEE 437439 896 6055263 2024-02-24 16:32:24.781 2024-02-24 16:32:24.781 9000 TIP 437439 19852 6055274 2024-02-24 16:32:44.479 2024-02-24 16:32:44.479 100 FEE 437008 19857 6055275 2024-02-24 16:32:44.479 2024-02-24 16:32:44.479 900 TIP 437008 2681 6055308 2024-02-24 16:33:36.59 2024-02-24 16:33:36.59 900 FEE 437055 2361 6055309 2024-02-24 16:33:36.59 2024-02-24 16:33:36.59 8100 TIP 437055 10554 6055352 2024-02-24 16:38:00.089 2024-02-24 16:38:00.089 2100 FEE 437183 802 6054696 2024-02-24 15:45:40.238 2024-02-24 15:45:40.238 9000 TIP 436633 4768 6054699 2024-02-24 15:45:42.245 2024-02-24 15:45:42.245 1000 FEE 436633 18220 6054700 2024-02-24 15:45:42.245 2024-02-24 15:45:42.245 9000 TIP 436633 16301 6054718 2024-02-24 15:47:18.103 2024-02-24 15:47:18.103 100 FEE 436556 15858 6054719 2024-02-24 15:47:18.103 2024-02-24 15:47:18.103 900 TIP 436556 10352 6054722 2024-02-24 15:48:35.609 2024-02-24 15:48:35.609 1000 FEE 436764 17517 6054723 2024-02-24 15:48:35.609 2024-02-24 15:48:35.609 9000 TIP 436764 3360 6054747 2024-02-24 15:50:26.114 2024-02-24 15:50:26.114 2100 FEE 437157 20788 6054748 2024-02-24 15:50:26.114 2024-02-24 15:50:26.114 18900 TIP 437157 769 6054755 2024-02-24 15:50:39.063 2024-02-24 15:50:39.063 2100 FEE 436941 10728 6054756 2024-02-24 15:50:39.063 2024-02-24 15:50:39.063 18900 TIP 436941 21249 6054786 2024-02-24 15:53:05.688 2024-02-24 15:53:05.688 7700 FEE 437269 5758 6054787 2024-02-24 15:53:05.688 2024-02-24 15:53:05.688 69300 TIP 437269 20502 6054818 2024-02-24 15:54:03.708 2024-02-24 15:54:03.708 500 FEE 437381 859 6054819 2024-02-24 15:54:03.708 2024-02-24 15:54:03.708 4500 TIP 437381 1090 6054838 2024-02-24 15:54:20.328 2024-02-24 15:54:20.328 7700 FEE 437269 19198 6054839 2024-02-24 15:54:20.328 2024-02-24 15:54:20.328 69300 TIP 437269 20243 6054842 2024-02-24 15:54:20.548 2024-02-24 15:54:20.548 7700 FEE 437269 17221 6054843 2024-02-24 15:54:20.548 2024-02-24 15:54:20.548 69300 TIP 437269 21357 6054869 2024-02-24 15:54:52.228 2024-02-24 15:54:52.228 6900 FEE 437269 2722 6054870 2024-02-24 15:54:52.228 2024-02-24 15:54:52.228 62100 TIP 437269 16042 6054878 2024-02-24 15:55:30.092 2024-02-24 15:55:30.092 1000 FEE 437393 16706 6054893 2024-02-24 15:56:22.06 2024-02-24 15:56:22.06 6900 FEE 437356 2528 6054894 2024-02-24 15:56:22.06 2024-02-24 15:56:22.06 62100 TIP 437356 1505 6054903 2024-02-24 15:57:24.505 2024-02-24 15:57:24.505 69000 DONT_LIKE_THIS 437394 14791 6054906 2024-02-24 15:58:18.253 2024-02-24 15:58:18.253 1000 FEE 437399 17570 6054923 2024-02-24 16:00:04.426 2024-02-24 16:00:04.426 1000 FEE 436677 1970 6054924 2024-02-24 16:00:04.426 2024-02-24 16:00:04.426 9000 TIP 436677 5829 6054939 2024-02-24 16:00:13.139 2024-02-24 16:00:13.139 1000 FEE 436726 18704 6054940 2024-02-24 16:00:13.139 2024-02-24 16:00:13.139 9000 TIP 436726 5775 6054729 2024-02-24 15:48:37.219 2024-02-24 15:48:37.219 9000 TIP 436764 18114 6054743 2024-02-24 15:50:21.893 2024-02-24 15:50:21.893 2100 FEE 437166 19777 6054744 2024-02-24 15:50:21.893 2024-02-24 15:50:21.893 18900 TIP 437166 7998 6054776 2024-02-24 15:53:04.989 2024-02-24 15:53:04.989 7700 FEE 437269 18608 6054777 2024-02-24 15:53:04.989 2024-02-24 15:53:04.989 69300 TIP 437269 18784 6054792 2024-02-24 15:53:06.211 2024-02-24 15:53:06.211 7700 FEE 437269 20619 6054793 2024-02-24 15:53:06.211 2024-02-24 15:53:06.211 69300 TIP 437269 21412 6054844 2024-02-24 15:54:23.965 2024-02-24 15:54:23.965 1000 FEE 437388 14202 6054847 2024-02-24 15:54:48.544 2024-02-24 15:54:48.544 6900 FEE 437269 17927 6054848 2024-02-24 15:54:48.544 2024-02-24 15:54:48.544 62100 TIP 437269 2042 6054855 2024-02-24 15:54:49.171 2024-02-24 15:54:49.171 6900 FEE 437269 4167 6054856 2024-02-24 15:54:49.171 2024-02-24 15:54:49.171 62100 TIP 437269 17212 6054859 2024-02-24 15:54:49.646 2024-02-24 15:54:49.646 13800 FEE 437269 2734 6054860 2024-02-24 15:54:49.646 2024-02-24 15:54:49.646 124200 TIP 437269 11091 6054863 2024-02-24 15:54:51.072 2024-02-24 15:54:51.072 6900 FEE 437269 8423 6054864 2024-02-24 15:54:51.072 2024-02-24 15:54:51.072 62100 TIP 437269 20509 6054885 2024-02-24 15:56:15.812 2024-02-24 15:56:15.812 1000 FEE 436899 5449 6054886 2024-02-24 15:56:15.812 2024-02-24 15:56:15.812 9000 TIP 436899 21164 6054887 2024-02-24 15:56:17.058 2024-02-24 15:56:17.058 1000 FEE 436899 16717 6054888 2024-02-24 15:56:17.058 2024-02-24 15:56:17.058 9000 TIP 436899 21369 6054907 2024-02-24 15:58:43.571 2024-02-24 15:58:43.571 1000 FEE 437400 8287 6054915 2024-02-24 15:59:33.117 2024-02-24 15:59:33.117 1000 FEE 437402 2710 6054941 2024-02-24 16:00:14.618 2024-02-24 16:00:14.618 1000 FEE 436726 1802 6054942 2024-02-24 16:00:14.618 2024-02-24 16:00:14.618 9000 TIP 436726 10469 6054952 2024-02-24 16:00:57.44 2024-02-24 16:00:57.44 10000 FEE 437408 18270 6054976 2024-02-24 16:03:51.462 2024-02-24 16:03:51.462 1000 FEE 436722 20218 6054977 2024-02-24 16:03:51.462 2024-02-24 16:03:51.462 9000 TIP 436722 20683 6054982 2024-02-24 16:03:52.425 2024-02-24 16:03:52.425 1000 FEE 436722 1401 6054983 2024-02-24 16:03:52.425 2024-02-24 16:03:52.425 9000 TIP 436722 21506 6054985 2024-02-24 16:04:13.344 2024-02-24 16:04:13.344 2100 FEE 437412 5017 6054986 2024-02-24 16:04:13.344 2024-02-24 16:04:13.344 18900 TIP 437412 929 6054987 2024-02-24 16:04:31.171 2024-02-24 16:04:31.171 4000 FEE 437413 2285 6054988 2024-02-24 16:04:31.171 2024-02-24 16:04:31.171 36000 TIP 437413 5538 6055002 2024-02-24 16:06:17.231 2024-02-24 16:06:17.231 1000 FEE 437379 18525 6055003 2024-02-24 16:06:17.231 2024-02-24 16:06:17.231 9000 TIP 437379 1718 6055026 2024-02-24 16:08:43.12 2024-02-24 16:08:43.12 4000 FEE 437416 16230 6055027 2024-02-24 16:08:43.12 2024-02-24 16:08:43.12 36000 TIP 437416 2075 6055045 2024-02-24 16:11:00.446 2024-02-24 16:11:00.446 1000 FEE 422152 21159 6055046 2024-02-24 16:11:00.446 2024-02-24 16:11:00.446 9000 TIP 422152 19105 6055049 2024-02-24 16:11:48.496 2024-02-24 16:11:48.496 15000 FEE 436950 17953 6055050 2024-02-24 16:11:48.496 2024-02-24 16:11:48.496 135000 TIP 436950 992 6055071 2024-02-24 16:13:38.701 2024-02-24 16:13:38.701 2100 FEE 437421 13348 6055072 2024-02-24 16:13:38.701 2024-02-24 16:13:38.701 18900 TIP 437421 1650 6055076 2024-02-24 16:14:30.34 2024-02-24 16:14:30.34 1000 FEE 437424 21044 6055086 2024-02-24 16:15:07.013 2024-02-24 16:15:07.013 900000 FEE 436837 18919 6055087 2024-02-24 16:15:07.013 2024-02-24 16:15:07.013 8100000 TIP 436837 762 6055111 2024-02-24 16:15:49.285 2024-02-24 16:15:49.285 100 FEE 437205 10280 6055112 2024-02-24 16:15:49.285 2024-02-24 16:15:49.285 900 TIP 437205 14404 6055117 2024-02-24 16:16:38.915 2024-02-24 16:16:38.915 0 FEE 437424 11898 6055133 2024-02-24 16:17:09.061 2024-02-24 16:17:09.061 1000 FEE 437426 1817 6055134 2024-02-24 16:17:09.061 2024-02-24 16:17:09.061 9000 TIP 437426 1624 6055142 2024-02-24 16:18:02.132 2024-02-24 16:18:02.132 4000 FEE 437425 5791 6055143 2024-02-24 16:18:02.132 2024-02-24 16:18:02.132 36000 TIP 437425 19841 6055147 2024-02-24 16:19:41.583 2024-02-24 16:19:41.583 0 FEE 437429 16505 6055156 2024-02-24 16:20:49.681 2024-02-24 16:20:49.681 21800 FEE 437427 18865 6055157 2024-02-24 16:20:49.681 2024-02-24 16:20:49.681 196200 TIP 437427 1493 6055174 2024-02-24 16:22:28.028 2024-02-24 16:22:28.028 10000 FEE 437218 686 6055175 2024-02-24 16:22:28.028 2024-02-24 16:22:28.028 90000 TIP 437218 20201 6055179 2024-02-24 16:23:07.274 2024-02-24 16:23:07.274 2100 FEE 437190 19639 6055180 2024-02-24 16:23:07.274 2024-02-24 16:23:07.274 18900 TIP 437190 9290 6055183 2024-02-24 16:23:19.114 2024-02-24 16:23:19.114 1000 FEE 437431 12965 6055227 2024-02-24 16:28:19.893 2024-02-24 16:28:19.893 1000 FEE 437411 2101 6055228 2024-02-24 16:28:19.893 2024-02-24 16:28:19.893 9000 TIP 437411 9167 6055242 2024-02-24 16:30:05.685 2024-02-24 16:30:05.685 10000 FEE 437440 20776 6055264 2024-02-24 16:32:25.279 2024-02-24 16:32:25.279 1000 FEE 437439 19637 6055265 2024-02-24 16:32:25.279 2024-02-24 16:32:25.279 9000 TIP 437439 20871 6055280 2024-02-24 16:32:55.89 2024-02-24 16:32:55.89 1000 FEE 437443 1064 6055284 2024-02-24 16:33:19.646 2024-02-24 16:33:19.646 900 FEE 436981 5757 6055285 2024-02-24 16:33:19.646 2024-02-24 16:33:19.646 8100 TIP 436981 20337 6055292 2024-02-24 16:33:24.125 2024-02-24 16:33:24.125 1000 FEE 437396 18219 6055293 2024-02-24 16:33:24.125 2024-02-24 16:33:24.125 9000 TIP 437396 17042 6055298 2024-02-24 16:33:25.406 2024-02-24 16:33:25.406 1000 FEE 437396 19660 6055299 2024-02-24 16:33:25.406 2024-02-24 16:33:25.406 9000 TIP 437396 16214 6055300 2024-02-24 16:33:25.723 2024-02-24 16:33:25.723 1000 FEE 437396 15806 6055301 2024-02-24 16:33:25.723 2024-02-24 16:33:25.723 9000 TIP 437396 1723 6055317 2024-02-24 16:34:21.145 2024-02-24 16:34:21.145 1000 FEE 437444 20854 6055329 2024-02-24 16:36:11.343 2024-02-24 16:36:11.343 300 FEE 437269 9655 6055330 2024-02-24 16:36:11.343 2024-02-24 16:36:11.343 2700 TIP 437269 11516 6055331 2024-02-24 16:36:12.253 2024-02-24 16:36:12.253 300 FEE 437233 16042 6055332 2024-02-24 16:36:12.253 2024-02-24 16:36:12.253 2700 TIP 437233 21441 6055340 2024-02-24 16:36:58.829 2024-02-24 16:36:58.829 900 FEE 437429 1354 6055341 2024-02-24 16:36:58.829 2024-02-24 16:36:58.829 8100 TIP 437429 2681 6055345 2024-02-24 16:37:08.769 2024-02-24 16:37:08.769 1000 FEE 437447 1618 6055349 2024-02-24 16:37:38.194 2024-02-24 16:37:38.194 0 FEE 437447 18101 6055350 2024-02-24 16:37:59.992 2024-02-24 16:37:59.992 300 FEE 437002 2529 6055351 2024-02-24 16:37:59.992 2024-02-24 16:37:59.992 2700 TIP 437002 7899 6055369 2024-02-24 16:38:24.728 2024-02-24 16:38:24.728 2100 FEE 436967 20562 6055370 2024-02-24 16:38:24.728 2024-02-24 16:38:24.728 18900 TIP 436967 20353 6055383 2024-02-24 16:39:51.108 2024-02-24 16:39:51.108 100 FEE 437436 4958 6055384 2024-02-24 16:39:51.108 2024-02-24 16:39:51.108 900 TIP 437436 14503 6055391 2024-02-24 16:41:31.578 2024-02-24 16:41:31.578 1000 FEE 437269 4984 6055392 2024-02-24 16:41:31.578 2024-02-24 16:41:31.578 9000 TIP 437269 4115 6055393 2024-02-24 16:41:35.32 2024-02-24 16:41:35.32 1000 FEE 437452 13903 6054738 2024-02-24 15:50:02.576 2024-02-24 15:50:02.576 1000 STREAM 141924 2537 6054759 2024-02-24 15:51:02.546 2024-02-24 15:51:02.546 1000 STREAM 141924 20861 6054767 2024-02-24 15:53:02.544 2024-02-24 15:53:02.544 1000 STREAM 141924 14465 6054813 2024-02-24 15:54:02.553 2024-02-24 15:54:02.553 1000 STREAM 141924 1030 6054880 2024-02-24 15:56:02.561 2024-02-24 15:56:02.561 1000 STREAM 141924 11073 6054955 2024-02-24 16:01:04.615 2024-02-24 16:01:04.615 1000 STREAM 141924 1291 6054971 2024-02-24 16:03:02.605 2024-02-24 16:03:02.605 1000 STREAM 141924 19902 6054989 2024-02-24 16:05:02.614 2024-02-24 16:05:02.614 1000 STREAM 141924 21391 6055010 2024-02-24 16:08:02.619 2024-02-24 16:08:02.619 1000 STREAM 141924 759 6055040 2024-02-24 16:10:02.73 2024-02-24 16:10:02.73 1000 STREAM 141924 1354 6055047 2024-02-24 16:11:02.716 2024-02-24 16:11:02.716 1000 STREAM 141924 20973 6055055 2024-02-24 16:12:02.709 2024-02-24 16:12:02.709 1000 STREAM 141924 17891 6055116 2024-02-24 16:16:02.711 2024-02-24 16:16:02.711 1000 STREAM 141924 1505 6055169 2024-02-24 16:22:02.752 2024-02-24 16:22:02.752 1000 STREAM 141924 19905 6055192 2024-02-24 16:24:02.787 2024-02-24 16:24:02.787 1000 STREAM 141924 8926 6055197 2024-02-24 16:25:02.803 2024-02-24 16:25:02.803 1000 STREAM 141924 21003 6055281 2024-02-24 16:33:02.846 2024-02-24 16:33:02.846 1000 STREAM 141924 20892 6055316 2024-02-24 16:34:02.852 2024-02-24 16:34:02.852 1000 STREAM 141924 651 6055360 2024-02-24 16:38:02.909 2024-02-24 16:38:02.909 1000 STREAM 141924 20964 6055385 2024-02-24 16:40:02.908 2024-02-24 16:40:02.908 1000 STREAM 141924 4304 6055401 2024-02-24 16:43:02.946 2024-02-24 16:43:02.946 1000 STREAM 141924 12218 6055405 2024-02-24 16:44:02.948 2024-02-24 16:44:02.948 1000 STREAM 141924 1401 6055418 2024-02-24 16:45:02.945 2024-02-24 16:45:02.945 1000 STREAM 141924 7899 6055469 2024-02-24 16:50:03.073 2024-02-24 16:50:03.073 1000 STREAM 141924 21281 6055475 2024-02-24 16:51:03.005 2024-02-24 16:51:03.005 1000 STREAM 141924 14213 6055478 2024-02-24 16:53:02.997 2024-02-24 16:53:02.997 1000 STREAM 141924 696 6055495 2024-02-24 16:55:03.043 2024-02-24 16:55:03.043 1000 STREAM 141924 19663 6055522 2024-02-24 17:01:03.074 2024-02-24 17:01:03.074 1000 STREAM 141924 10519 6055556 2024-02-24 17:02:03.089 2024-02-24 17:02:03.089 1000 STREAM 141924 9177 6055601 2024-02-24 17:04:03.111 2024-02-24 17:04:03.111 1000 STREAM 141924 21374 6055620 2024-02-24 17:06:03.125 2024-02-24 17:06:03.125 1000 STREAM 141924 9290 6055630 2024-02-24 17:08:03.12 2024-02-24 17:08:03.12 1000 STREAM 141924 13763 6055648 2024-02-24 17:09:03.118 2024-02-24 17:09:03.118 1000 STREAM 141924 16042 6055677 2024-02-24 17:11:03.153 2024-02-24 17:11:03.153 1000 STREAM 141924 980 6055729 2024-02-24 17:14:03.19 2024-02-24 17:14:03.19 1000 STREAM 141924 16124 6055762 2024-02-24 17:17:03.218 2024-02-24 17:17:03.218 1000 STREAM 141924 698 6055779 2024-02-24 17:18:03.233 2024-02-24 17:18:03.233 1000 STREAM 141924 16354 6119111 2024-02-29 20:52:44.312 2024-02-29 20:52:44.312 2100 FEE 444190 2213 6119112 2024-02-29 20:52:44.312 2024-02-29 20:52:44.312 18900 TIP 444190 11314 6119119 2024-02-29 20:52:50.664 2024-02-29 20:52:50.664 2100 FEE 444209 630 6119120 2024-02-29 20:52:50.664 2024-02-29 20:52:50.664 18900 TIP 444209 19907 6119153 2024-02-29 20:53:10.367 2024-02-29 20:53:10.367 2100 FEE 444220 21413 6119154 2024-02-29 20:53:10.367 2024-02-29 20:53:10.367 18900 TIP 444220 686 6119162 2024-02-29 20:54:16.888 2024-02-29 20:54:16.888 500 FEE 444168 2773 6119163 2024-02-29 20:54:16.888 2024-02-29 20:54:16.888 4500 TIP 444168 7185 6119178 2024-02-29 20:55:24.553 2024-02-29 20:55:24.553 27900 FEE 444102 9366 6119179 2024-02-29 20:55:24.553 2024-02-29 20:55:24.553 251100 TIP 444102 21501 6119181 2024-02-29 20:55:54.024 2024-02-29 20:55:54.024 0 FEE 444270 16753 6119203 2024-02-29 20:57:51.199 2024-02-29 20:57:51.199 5000 DONT_LIKE_THIS 444168 2285 6119220 2024-02-29 20:59:32.213 2024-02-29 20:59:32.213 20000 FEE 444279 16842 6119221 2024-02-29 20:59:38.433 2024-02-29 20:59:38.433 5700 FEE 444279 6191 6119222 2024-02-29 20:59:38.433 2024-02-29 20:59:38.433 51300 TIP 444279 6700 6119223 2024-02-29 20:59:45.041 2024-02-29 20:59:45.041 3100 FEE 444153 21022 6119224 2024-02-29 20:59:45.041 2024-02-29 20:59:45.041 27900 TIP 444153 979 6119255 2024-02-29 21:01:57.627 2024-02-29 21:01:57.627 10000 FEE 444220 21019 6119256 2024-02-29 21:01:57.627 2024-02-29 21:01:57.627 90000 TIP 444220 18842 6119274 2024-02-29 21:02:26.915 2024-02-29 21:02:26.915 10000 FEE 444245 18351 6119275 2024-02-29 21:02:26.915 2024-02-29 21:02:26.915 90000 TIP 444245 17103 6119296 2024-02-29 21:04:18.253 2024-02-29 21:04:18.253 500 FEE 444102 2741 6119297 2024-02-29 21:04:18.253 2024-02-29 21:04:18.253 4500 TIP 444102 18169 6119302 2024-02-29 21:04:19.15 2024-02-29 21:04:19.15 500 FEE 444102 8535 6119303 2024-02-29 21:04:19.15 2024-02-29 21:04:19.15 4500 TIP 444102 2652 6119304 2024-02-29 21:04:19.326 2024-02-29 21:04:19.326 500 FEE 444102 699 6119305 2024-02-29 21:04:19.326 2024-02-29 21:04:19.326 4500 TIP 444102 12175 6119324 2024-02-29 21:04:21.506 2024-02-29 21:04:21.506 500 FEE 444102 1173 6119325 2024-02-29 21:04:21.506 2024-02-29 21:04:21.506 4500 TIP 444102 1624 6119326 2024-02-29 21:04:21.722 2024-02-29 21:04:21.722 500 FEE 444102 20901 6119327 2024-02-29 21:04:21.722 2024-02-29 21:04:21.722 4500 TIP 444102 10393 6119338 2024-02-29 21:05:16.481 2024-02-29 21:05:16.481 2600 FEE 436697 18180 6119339 2024-02-29 21:05:16.481 2024-02-29 21:05:16.481 23400 TIP 436697 18675 6119340 2024-02-29 21:05:18.264 2024-02-29 21:05:18.264 1000 FEE 444087 866 6119341 2024-02-29 21:05:18.264 2024-02-29 21:05:18.264 9000 TIP 444087 15103 6119348 2024-02-29 21:07:07.24 2024-02-29 21:07:07.24 500 FEE 443439 11164 6119349 2024-02-29 21:07:07.24 2024-02-29 21:07:07.24 4500 TIP 443439 9084 6119351 2024-02-29 21:07:12.363 2024-02-29 21:07:12.363 1000 FEE 444295 14045 6119356 2024-02-29 21:07:57.85 2024-02-29 21:07:57.85 1000 POLL 443745 5036 6119361 2024-02-29 21:08:06.18 2024-02-29 21:08:06.18 2100 FEE 442987 4831 6119362 2024-02-29 21:08:06.18 2024-02-29 21:08:06.18 18900 TIP 442987 19773 6119375 2024-02-29 21:08:56.691 2024-02-29 21:08:56.691 1700 FEE 444272 11395 6119376 2024-02-29 21:08:56.691 2024-02-29 21:08:56.691 15300 TIP 444272 1836 6119377 2024-02-29 21:08:56.883 2024-02-29 21:08:56.883 1700 FEE 444272 1273 6119378 2024-02-29 21:08:56.883 2024-02-29 21:08:56.883 15300 TIP 444272 1806 6119394 2024-02-29 21:11:03.658 2024-02-29 21:11:03.658 500 FEE 444179 18904 6119395 2024-02-29 21:11:03.658 2024-02-29 21:11:03.658 4500 TIP 444179 20812 6119425 2024-02-29 21:11:07.081 2024-02-29 21:11:07.081 500 FEE 444179 15488 6119426 2024-02-29 21:11:07.081 2024-02-29 21:11:07.081 4500 TIP 444179 5825 6119444 2024-02-29 21:14:14.055 2024-02-29 21:14:14.055 2100 FEE 443953 1490 6119445 2024-02-29 21:14:14.055 2024-02-29 21:14:14.055 18900 TIP 443953 20251 6119452 2024-02-29 21:16:44.796 2024-02-29 21:16:44.796 100 FEE 444296 16942 6119453 2024-02-29 21:16:44.796 2024-02-29 21:16:44.796 900 TIP 444296 663 6119469 2024-02-29 21:18:05.771 2024-02-29 21:18:05.771 10000 FEE 444168 6741 6119470 2024-02-29 21:18:05.771 2024-02-29 21:18:05.771 90000 TIP 444168 14376 6119478 2024-02-29 21:19:02.963 2024-02-29 21:19:02.963 2100 FEE 444187 21157 6119479 2024-02-29 21:19:02.963 2024-02-29 21:19:02.963 18900 TIP 444187 14202 6119480 2024-02-29 21:19:03.168 2024-02-29 21:19:03.168 1000 FEE 444308 10393 6119482 2024-02-29 21:19:12.562 2024-02-29 21:19:12.562 1000000 FEE 444173 9796 6119483 2024-02-29 21:19:12.562 2024-02-29 21:19:12.562 9000000 TIP 444173 6471 6119505 2024-02-29 21:24:55.221 2024-02-29 21:24:55.221 0 FEE 444310 16124 6119521 2024-02-29 21:26:36.527 2024-02-29 21:26:36.527 1000 FEE 444300 18372 6119522 2024-02-29 21:26:36.527 2024-02-29 21:26:36.527 9000 TIP 444300 19333 6054762 2024-02-24 15:52:02.566 2024-02-24 15:52:02.566 1000 STREAM 141924 4304 6119122 2024-02-29 20:52:51.115 2024-02-29 20:52:51.115 18900 TIP 444208 8926 6119135 2024-02-29 20:52:58.685 2024-02-29 20:52:58.685 2100 FEE 444186 5590 6119136 2024-02-29 20:52:58.685 2024-02-29 20:52:58.685 18900 TIP 444186 644 6119159 2024-02-29 20:53:56.195 2024-02-29 20:53:56.195 4200 FEE 444083 20180 6119160 2024-02-29 20:53:56.195 2024-02-29 20:53:56.195 37800 TIP 444083 6700 6119175 2024-02-29 20:55:20.349 2024-02-29 20:55:20.349 1000 FEE 444271 16830 6119198 2024-02-29 20:57:33.927 2024-02-29 20:57:33.927 1000 FEE 444275 5828 6119205 2024-02-29 20:58:15.73 2024-02-29 20:58:15.73 0 FEE 444275 15521 6119210 2024-02-29 20:58:16.827 2024-02-29 20:58:16.827 1000 FEE 444213 18231 6119211 2024-02-29 20:58:16.827 2024-02-29 20:58:16.827 9000 TIP 444213 21343 6119227 2024-02-29 20:59:58.4 2024-02-29 20:59:58.4 0 FEE 444280 10102 6119230 2024-02-29 21:00:05.829 2024-02-29 21:00:05.829 100000 FEE 444282 7986 6119286 2024-02-29 21:03:19.792 2024-02-29 21:03:19.792 1000 FEE 444289 15103 6119314 2024-02-29 21:04:20.242 2024-02-29 21:04:20.242 500 FEE 444102 1692 6119315 2024-02-29 21:04:20.242 2024-02-29 21:04:20.242 4500 TIP 444102 8498 6119322 2024-02-29 21:04:21.125 2024-02-29 21:04:21.125 1000 FEE 444102 18403 6119323 2024-02-29 21:04:21.125 2024-02-29 21:04:21.125 9000 TIP 444102 16442 6054867 2024-02-24 15:54:52.125 2024-02-24 15:54:52.125 6900 FEE 437269 1631 6054868 2024-02-24 15:54:52.125 2024-02-24 15:54:52.125 62100 TIP 437269 2519 6054874 2024-02-24 15:55:11.759 2024-02-24 15:55:11.759 4000 FEE 437388 980 6054875 2024-02-24 15:55:11.759 2024-02-24 15:55:11.759 36000 TIP 437388 656 6054882 2024-02-24 15:56:13.868 2024-02-24 15:56:13.868 0 FEE 437392 16296 6054904 2024-02-24 15:57:49.204 2024-02-24 15:57:49.204 1000 FEE 437398 19105 6054910 2024-02-24 15:59:06.564 2024-02-24 15:59:06.564 4000 FEE 437396 1483 6054911 2024-02-24 15:59:06.564 2024-02-24 15:59:06.564 36000 TIP 437396 17800 6054933 2024-02-24 16:00:11.242 2024-02-24 16:00:11.242 1000 FEE 436726 19929 6054934 2024-02-24 16:00:11.242 2024-02-24 16:00:11.242 9000 TIP 436726 19863 6054944 2024-02-24 16:00:27.834 2024-02-24 16:00:27.834 2100 FEE 437168 16432 6054945 2024-02-24 16:00:27.834 2024-02-24 16:00:27.834 18900 TIP 437168 15941 6054959 2024-02-24 16:01:16.619 2024-02-24 16:01:16.619 0 FEE 437405 19839 6054969 2024-02-24 16:02:56.071 2024-02-24 16:02:56.071 2100 FEE 437408 15200 6054970 2024-02-24 16:02:56.071 2024-02-24 16:02:56.071 18900 TIP 437408 18005 6054972 2024-02-24 16:03:10.638 2024-02-24 16:03:10.638 100000 FEE 437412 15147 6055018 2024-02-24 16:08:35.224 2024-02-24 16:08:35.224 1000 FEE 437414 7766 6055019 2024-02-24 16:08:35.224 2024-02-24 16:08:35.224 9000 TIP 437414 8168 6055030 2024-02-24 16:08:52.062 2024-02-24 16:08:52.062 4000 FEE 437416 11328 6055031 2024-02-24 16:08:52.062 2024-02-24 16:08:52.062 36000 TIP 437416 19795 6055032 2024-02-24 16:08:53.756 2024-02-24 16:08:53.756 1000 FEE 437410 18265 6055033 2024-02-24 16:08:53.756 2024-02-24 16:08:53.756 9000 TIP 437410 11621 6055056 2024-02-24 16:12:36.231 2024-02-24 16:12:36.231 1000 FEE 437420 762 6055057 2024-02-24 16:12:37.421 2024-02-24 16:12:37.421 2100 FEE 437034 19465 6055058 2024-02-24 16:12:37.421 2024-02-24 16:12:37.421 18900 TIP 437034 9378 6055102 2024-02-24 16:15:25.318 2024-02-24 16:15:25.318 1000 FEE 437424 2640 6055103 2024-02-24 16:15:25.318 2024-02-24 16:15:25.318 9000 TIP 437424 3706 6055129 2024-02-24 16:17:08.291 2024-02-24 16:17:08.291 1000 FEE 437426 999 6055130 2024-02-24 16:17:08.291 2024-02-24 16:17:08.291 9000 TIP 437426 2056 6055140 2024-02-24 16:17:51.17 2024-02-24 16:17:51.17 0 FEE 437424 21374 6055158 2024-02-24 16:20:57.908 2024-02-24 16:20:57.908 6900 FEE 437427 20090 6055159 2024-02-24 16:20:57.908 2024-02-24 16:20:57.908 62100 TIP 437427 21421 6055163 2024-02-24 16:21:24.417 2024-02-24 16:21:24.417 2100 FEE 437233 12609 6055164 2024-02-24 16:21:24.417 2024-02-24 16:21:24.417 18900 TIP 437233 21444 6055170 2024-02-24 16:22:10.811 2024-02-24 16:22:10.811 2100 FEE 437420 2741 6055171 2024-02-24 16:22:10.811 2024-02-24 16:22:10.811 18900 TIP 437420 2264 6055184 2024-02-24 16:23:21.24 2024-02-24 16:23:21.24 2100 FEE 437087 21157 6055185 2024-02-24 16:23:21.24 2024-02-24 16:23:21.24 18900 TIP 437087 16250 6055186 2024-02-24 16:23:25.021 2024-02-24 16:23:25.021 10000 FEE 437357 732 6055187 2024-02-24 16:23:25.021 2024-02-24 16:23:25.021 90000 TIP 437357 4076 6055188 2024-02-24 16:23:32.755 2024-02-24 16:23:32.755 10000 FEE 437328 12278 6055189 2024-02-24 16:23:32.755 2024-02-24 16:23:32.755 90000 TIP 437328 19016 6055208 2024-02-24 16:27:25.213 2024-02-24 16:27:25.213 1000 FEE 437437 2780 6055221 2024-02-24 16:27:49.419 2024-02-24 16:27:49.419 1000 FEE 430343 21588 6055222 2024-02-24 16:27:49.419 2024-02-24 16:27:49.419 9000 TIP 430343 11423 6055278 2024-02-24 16:32:48.479 2024-02-24 16:32:48.479 9000 FEE 437008 761 6055279 2024-02-24 16:32:48.479 2024-02-24 16:32:48.479 81000 TIP 437008 6164 6055312 2024-02-24 16:33:38.002 2024-02-24 16:33:38.002 900 FEE 437167 14260 6055313 2024-02-24 16:33:38.002 2024-02-24 16:33:38.002 8100 TIP 437167 20585 6055324 2024-02-24 16:34:27.042 2024-02-24 16:34:27.042 1000 FEE 437445 12930 6055336 2024-02-24 16:36:48.883 2024-02-24 16:36:48.883 100 FEE 437391 19576 6055337 2024-02-24 16:36:48.883 2024-02-24 16:36:48.883 900 TIP 437391 638 6055342 2024-02-24 16:36:59.408 2024-02-24 16:36:59.408 9000 FEE 437429 13198 6055343 2024-02-24 16:36:59.408 2024-02-24 16:36:59.408 81000 TIP 437429 4989 6055361 2024-02-24 16:38:06.133 2024-02-24 16:38:06.133 2100 FEE 436967 10112 6055362 2024-02-24 16:38:06.133 2024-02-24 16:38:06.133 18900 TIP 436967 12562 6055377 2024-02-24 16:39:01.913 2024-02-24 16:39:01.913 100 FEE 437176 18836 6055378 2024-02-24 16:39:01.913 2024-02-24 16:39:01.913 900 TIP 437176 1773 6055396 2024-02-24 16:41:57.233 2024-02-24 16:41:57.233 1000 FEE 437370 19966 6055397 2024-02-24 16:41:57.233 2024-02-24 16:41:57.233 9000 TIP 437370 19857 6055402 2024-02-24 16:43:29.079 2024-02-24 16:43:29.079 69000 FEE 437453 20680 6055406 2024-02-24 16:44:12.586 2024-02-24 16:44:12.586 1000 FEE 437158 9863 6055407 2024-02-24 16:44:12.586 2024-02-24 16:44:12.586 9000 TIP 437158 9183 6055432 2024-02-24 16:46:18.694 2024-02-24 16:46:18.694 2100 FEE 437445 17001 6055433 2024-02-24 16:46:18.694 2024-02-24 16:46:18.694 18900 TIP 437445 17030 6055465 2024-02-24 16:49:41.321 2024-02-24 16:49:41.321 1000 FEE 437457 20990 6055466 2024-02-24 16:49:41.321 2024-02-24 16:49:41.321 9000 TIP 437457 18453 6055485 2024-02-24 16:53:05.955 2024-02-24 16:53:05.955 100 FEE 437457 17201 6055486 2024-02-24 16:53:05.955 2024-02-24 16:53:05.955 900 TIP 437457 9363 6055503 2024-02-24 16:57:16.585 2024-02-24 16:57:16.585 0 FEE 437465 14515 6055509 2024-02-24 16:59:15.215 2024-02-24 16:59:15.215 10000 FEE 437469 18005 6055516 2024-02-24 16:59:52.442 2024-02-24 16:59:52.442 2100 FEE 437181 16442 6055517 2024-02-24 16:59:52.442 2024-02-24 16:59:52.442 18900 TIP 437181 2065 6055519 2024-02-24 17:00:06.225 2024-02-24 17:00:06.225 0 FEE 437465 19469 6055523 2024-02-24 17:01:09.402 2024-02-24 17:01:09.402 1000 FEE 437471 3409 6055524 2024-02-24 17:01:19.986 2024-02-24 17:01:19.986 900 FEE 437205 11760 6055525 2024-02-24 17:01:19.986 2024-02-24 17:01:19.986 8100 TIP 437205 880 6055534 2024-02-24 17:01:25.438 2024-02-24 17:01:25.438 5000 FEE 437362 19267 6055535 2024-02-24 17:01:25.438 2024-02-24 17:01:25.438 45000 TIP 437362 20998 6054873 2024-02-24 15:55:02.078 2024-02-24 15:55:02.078 1000 STREAM 141924 1836 6054909 2024-02-24 15:59:02.154 2024-02-24 15:59:02.154 1000 STREAM 141924 19235 6054899 2024-02-24 15:57:02.112 2024-02-24 15:57:02.112 1000 STREAM 141924 19857 6054916 2024-02-24 16:00:02.58 2024-02-24 16:00:02.58 1000 STREAM 141924 17710 6119240 2024-02-29 21:01:04.749 2024-02-29 21:01:04.749 1000 STREAM 141924 6058 6054948 2024-02-24 16:00:31.797 2024-02-24 16:00:31.797 77700 FEE 437294 4958 6054949 2024-02-24 16:00:31.797 2024-02-24 16:00:31.797 699300 TIP 437294 5597 6054956 2024-02-24 16:01:08.143 2024-02-24 16:01:08.143 1000 FEE 437409 21540 6054960 2024-02-24 16:01:21.268 2024-02-24 16:01:21.268 1000 FEE 437404 18626 6054961 2024-02-24 16:01:21.268 2024-02-24 16:01:21.268 9000 TIP 437404 1310 6054974 2024-02-24 16:03:51.059 2024-02-24 16:03:51.059 1000 FEE 436722 16879 6054975 2024-02-24 16:03:51.059 2024-02-24 16:03:51.059 9000 TIP 436722 704 6054994 2024-02-24 16:05:13.654 2024-02-24 16:05:13.654 6900 FEE 437411 20222 6054995 2024-02-24 16:05:13.654 2024-02-24 16:05:13.654 62100 TIP 437411 8037 6055020 2024-02-24 16:08:35.288 2024-02-24 16:08:35.288 1000 FEE 437414 13767 6055021 2024-02-24 16:08:35.288 2024-02-24 16:08:35.288 9000 TIP 437414 19506 6055034 2024-02-24 16:09:02 2024-02-24 16:09:02 1100 FEE 437023 1472 6055035 2024-02-24 16:09:02 2024-02-24 16:09:02 9900 TIP 437023 861 6055043 2024-02-24 16:10:46.609 2024-02-24 16:10:46.609 4000 FEE 437417 5825 6055044 2024-02-24 16:10:46.609 2024-02-24 16:10:46.609 36000 TIP 437417 18581 6055048 2024-02-24 16:11:15.082 2024-02-24 16:11:15.082 1000 FEE 437418 19546 6055060 2024-02-24 16:12:38.371 2024-02-24 16:12:38.371 2100 FEE 437026 13348 6055061 2024-02-24 16:12:38.371 2024-02-24 16:12:38.371 18900 TIP 437026 12346 6055070 2024-02-24 16:13:24.806 2024-02-24 16:13:24.806 1000 FEE 437423 21577 6055081 2024-02-24 16:14:32.507 2024-02-24 16:14:32.507 9000 FEE 437269 11967 6055082 2024-02-24 16:14:32.507 2024-02-24 16:14:32.507 81000 TIP 437269 13198 6055083 2024-02-24 16:14:33.233 2024-02-24 16:14:33.233 90000 FEE 437269 16536 6055084 2024-02-24 16:14:33.233 2024-02-24 16:14:33.233 810000 TIP 437269 1474 6055088 2024-02-24 16:15:07.825 2024-02-24 16:15:07.825 1000 FEE 437190 19806 6055089 2024-02-24 16:15:07.825 2024-02-24 16:15:07.825 9000 TIP 437190 16406 6055094 2024-02-24 16:15:08.338 2024-02-24 16:15:08.338 1000 FEE 437190 11516 6055095 2024-02-24 16:15:08.338 2024-02-24 16:15:08.338 9000 TIP 437190 19890 6055106 2024-02-24 16:15:26.283 2024-02-24 16:15:26.283 1000 FEE 437424 3342 6055107 2024-02-24 16:15:26.283 2024-02-24 16:15:26.283 9000 TIP 437424 7682 6055108 2024-02-24 16:15:26.778 2024-02-24 16:15:26.778 1000 FEE 437424 14258 6055109 2024-02-24 16:15:26.778 2024-02-24 16:15:26.778 9000 TIP 437424 18543 6055126 2024-02-24 16:16:47.041 2024-02-24 16:16:47.041 1000 FEE 437238 4076 6055127 2024-02-24 16:16:47.041 2024-02-24 16:16:47.041 9000 TIP 437238 19660 6055131 2024-02-24 16:17:08.591 2024-02-24 16:17:08.591 1000 FEE 437426 2330 6055132 2024-02-24 16:17:08.591 2024-02-24 16:17:08.591 9000 TIP 437426 17218 6055177 2024-02-24 16:23:04.901 2024-02-24 16:23:04.901 2100 FEE 437238 21042 6055178 2024-02-24 16:23:04.901 2024-02-24 16:23:04.901 18900 TIP 437238 8173 6055196 2024-02-24 16:24:31.839 2024-02-24 16:24:31.839 1000 FEE 437434 9796 6055201 2024-02-24 16:26:08.805 2024-02-24 16:26:08.805 10000 FEE 437269 20257 6055202 2024-02-24 16:26:08.805 2024-02-24 16:26:08.805 90000 TIP 437269 19943 6055203 2024-02-24 16:26:18.82 2024-02-24 16:26:18.82 4000 FEE 437431 5377 6055204 2024-02-24 16:26:18.82 2024-02-24 16:26:18.82 36000 TIP 437431 8926 6055220 2024-02-24 16:27:39.936 2024-02-24 16:27:39.936 0 FEE 437432 19322 6055235 2024-02-24 16:28:37.475 2024-02-24 16:28:37.475 0 FEE 437432 8287 6055243 2024-02-24 16:30:37.459 2024-02-24 16:30:37.459 100 FEE 437370 1745 6055244 2024-02-24 16:30:37.459 2024-02-24 16:30:37.459 900 TIP 437370 9307 6055256 2024-02-24 16:31:57.231 2024-02-24 16:31:57.231 1000 FEE 437442 17042 6055294 2024-02-24 16:33:24.524 2024-02-24 16:33:24.524 1000 FEE 437396 12268 6055295 2024-02-24 16:33:24.524 2024-02-24 16:33:24.524 9000 TIP 437396 9809 6055318 2024-02-24 16:34:21.486 2024-02-24 16:34:21.486 1000 FEE 437335 11522 6055319 2024-02-24 16:34:21.486 2024-02-24 16:34:21.486 9000 TIP 437335 12779 6055338 2024-02-24 16:36:58.58 2024-02-24 16:36:58.58 100 FEE 437429 19796 6055339 2024-02-24 16:36:58.58 2024-02-24 16:36:58.58 900 TIP 437429 20817 6055375 2024-02-24 16:38:56.767 2024-02-24 16:38:56.767 2100 FEE 437408 15521 6055376 2024-02-24 16:38:56.767 2024-02-24 16:38:56.767 18900 TIP 437408 17838 6055394 2024-02-24 16:41:39.37 2024-02-24 16:41:39.37 6900 FEE 437442 20647 6055395 2024-02-24 16:41:39.37 2024-02-24 16:41:39.37 62100 TIP 437442 20674 6055419 2024-02-24 16:45:10.769 2024-02-24 16:45:10.769 1000 FEE 437455 17365 6055421 2024-02-24 16:45:50.572 2024-02-24 16:45:50.572 1700 FEE 437162 673 6055422 2024-02-24 16:45:50.572 2024-02-24 16:45:50.572 15300 TIP 437162 7986 6055424 2024-02-24 16:46:15.519 2024-02-24 16:46:15.519 2100 FEE 437445 21063 6055425 2024-02-24 16:46:15.519 2024-02-24 16:46:15.519 18900 TIP 437445 18675 6055430 2024-02-24 16:46:17.604 2024-02-24 16:46:17.604 2100 FEE 437445 15226 6055431 2024-02-24 16:46:17.604 2024-02-24 16:46:17.604 18900 TIP 437445 13599 6055445 2024-02-24 16:47:51.739 2024-02-24 16:47:51.739 2100 FEE 437449 8569 6055446 2024-02-24 16:47:51.739 2024-02-24 16:47:51.739 18900 TIP 437449 20495 6055459 2024-02-24 16:49:26.522 2024-02-24 16:49:26.522 100 FEE 437457 17011 6055460 2024-02-24 16:49:26.522 2024-02-24 16:49:26.522 900 TIP 437457 13198 6055483 2024-02-24 16:53:05.63 2024-02-24 16:53:05.63 100 FEE 437457 18526 6055484 2024-02-24 16:53:05.63 2024-02-24 16:53:05.63 900 TIP 437457 19886 6055496 2024-02-24 16:55:09.97 2024-02-24 16:55:09.97 1700 FEE 437460 19292 6055497 2024-02-24 16:55:09.97 2024-02-24 16:55:09.97 15300 TIP 437460 9916 6055498 2024-02-24 16:55:38.948 2024-02-24 16:55:38.948 300 FEE 437462 19036 6055499 2024-02-24 16:55:38.948 2024-02-24 16:55:38.948 2700 TIP 437462 19961 6055536 2024-02-24 17:01:26.129 2024-02-24 17:01:26.129 5000 FEE 437406 19689 6055537 2024-02-24 17:01:26.129 2024-02-24 17:01:26.129 45000 TIP 437406 6471 6055554 2024-02-24 17:02:02.717 2024-02-24 17:02:02.717 1000 FEE 437459 5173 6055555 2024-02-24 17:02:02.717 2024-02-24 17:02:02.717 9000 TIP 437459 19992 6055567 2024-02-24 17:02:26.329 2024-02-24 17:02:26.329 69000 FEE 437474 9330 6055578 2024-02-24 17:02:59.144 2024-02-24 17:02:59.144 10000 FEE 437238 21589 6055579 2024-02-24 17:02:59.144 2024-02-24 17:02:59.144 90000 TIP 437238 16284 6055590 2024-02-24 17:03:02.055 2024-02-24 17:03:02.055 10000 FEE 437238 16351 6055591 2024-02-24 17:03:02.055 2024-02-24 17:03:02.055 90000 TIP 437238 19572 6055593 2024-02-24 17:03:02.681 2024-02-24 17:03:02.681 10000 FEE 437238 11999 6055594 2024-02-24 17:03:02.681 2024-02-24 17:03:02.681 90000 TIP 437238 10690 6055636 2024-02-24 17:08:41.093 2024-02-24 17:08:41.093 1000 FEE 437455 19488 6055637 2024-02-24 17:08:41.093 2024-02-24 17:08:41.093 9000 TIP 437455 1626 6055640 2024-02-24 17:08:41.812 2024-02-24 17:08:41.812 1000 FEE 437455 18072 6055641 2024-02-24 17:08:41.812 2024-02-24 17:08:41.812 9000 TIP 437455 14791 6055653 2024-02-24 17:09:40.367 2024-02-24 17:09:40.367 100 FEE 437457 21356 6055654 2024-02-24 17:09:40.367 2024-02-24 17:09:40.367 900 TIP 437457 9426 6055655 2024-02-24 17:09:40.635 2024-02-24 17:09:40.635 900 FEE 437457 14731 6055656 2024-02-24 17:09:40.635 2024-02-24 17:09:40.635 8100 TIP 437457 21624 6055712 2024-02-24 17:12:05.587 2024-02-24 17:12:05.587 10000 FEE 437490 18393 6055722 2024-02-24 17:13:06.912 2024-02-24 17:13:06.912 1000 FEE 437492 11648 6054967 2024-02-24 16:02:02.6 2024-02-24 16:02:02.6 1000 STREAM 141924 19524 6054984 2024-02-24 16:04:02.604 2024-02-24 16:04:02.604 1000 STREAM 141924 16680 6054997 2024-02-24 16:06:02.607 2024-02-24 16:06:02.607 1000 STREAM 141924 21062 6055007 2024-02-24 16:07:02.606 2024-02-24 16:07:02.606 1000 STREAM 141924 16004 6055036 2024-02-24 16:09:02.71 2024-02-24 16:09:02.71 1000 STREAM 141924 1352 6055085 2024-02-24 16:15:02.728 2024-02-24 16:15:02.728 1000 STREAM 141924 15560 6055128 2024-02-24 16:17:02.719 2024-02-24 16:17:02.719 1000 STREAM 141924 12139 6055144 2024-02-24 16:18:02.728 2024-02-24 16:18:02.728 1000 STREAM 141924 4118 6055145 2024-02-24 16:19:02.741 2024-02-24 16:19:02.741 1000 STREAM 141924 18832 6055149 2024-02-24 16:20:02.778 2024-02-24 16:20:02.778 1000 STREAM 141924 21523 6055160 2024-02-24 16:21:02.738 2024-02-24 16:21:02.738 1000 STREAM 141924 2326 6055176 2024-02-24 16:23:02.774 2024-02-24 16:23:02.774 1000 STREAM 141924 17162 6055200 2024-02-24 16:26:02.795 2024-02-24 16:26:02.795 1000 STREAM 141924 19557 6055206 2024-02-24 16:27:02.788 2024-02-24 16:27:02.788 1000 STREAM 141924 20710 6055223 2024-02-24 16:28:02.81 2024-02-24 16:28:02.81 1000 STREAM 141924 10280 6055249 2024-02-24 16:31:02.845 2024-02-24 16:31:02.845 1000 STREAM 141924 19096 6055257 2024-02-24 16:32:02.848 2024-02-24 16:32:02.848 1000 STREAM 141924 18368 6055325 2024-02-24 16:35:02.855 2024-02-24 16:35:02.855 1000 STREAM 141924 2232 6055326 2024-02-24 16:36:02.868 2024-02-24 16:36:02.868 1000 STREAM 141924 20381 6055344 2024-02-24 16:37:02.904 2024-02-24 16:37:02.904 1000 STREAM 141924 19967 6055379 2024-02-24 16:39:02.902 2024-02-24 16:39:02.902 1000 STREAM 141924 21342 6055388 2024-02-24 16:41:02.905 2024-02-24 16:41:02.905 1000 STREAM 141924 1985 6055400 2024-02-24 16:42:02.92 2024-02-24 16:42:02.92 1000 STREAM 141924 4391 6055423 2024-02-24 16:46:02.958 2024-02-24 16:46:02.958 1000 STREAM 141924 698 6055438 2024-02-24 16:47:02.959 2024-02-24 16:47:02.959 1000 STREAM 141924 12265 6055447 2024-02-24 16:48:02.986 2024-02-24 16:48:02.986 1000 STREAM 141924 21003 6055453 2024-02-24 16:49:02.994 2024-02-24 16:49:02.994 1000 STREAM 141924 18809 6055476 2024-02-24 16:52:03.009 2024-02-24 16:52:03.009 1000 STREAM 141924 17094 6055490 2024-02-24 16:54:03.028 2024-02-24 16:54:03.028 1000 STREAM 141924 12265 6055500 2024-02-24 16:56:03.034 2024-02-24 16:56:03.034 1000 STREAM 141924 2711 6055502 2024-02-24 16:57:03.044 2024-02-24 16:57:03.044 1000 STREAM 141924 19103 6055504 2024-02-24 16:58:03.062 2024-02-24 16:58:03.062 1000 STREAM 141924 8841 6055508 2024-02-24 16:59:03.091 2024-02-24 16:59:03.091 1000 STREAM 141924 11314 6055595 2024-02-24 17:03:03.104 2024-02-24 17:03:03.104 1000 STREAM 141924 5829 6055611 2024-02-24 17:05:03.121 2024-02-24 17:05:03.121 1000 STREAM 141924 2233 6055621 2024-02-24 17:07:03.12 2024-02-24 17:07:03.12 1000 STREAM 141924 16432 6055664 2024-02-24 17:10:03.139 2024-02-24 17:10:03.139 1000 STREAM 141924 19469 6055711 2024-02-24 17:12:03.176 2024-02-24 17:12:03.176 1000 STREAM 141924 882 6055721 2024-02-24 17:13:03.182 2024-02-24 17:13:03.182 1000 STREAM 141924 5708 6055734 2024-02-24 17:15:03.2 2024-02-24 17:15:03.2 1000 STREAM 141924 11678 6055743 2024-02-24 17:16:03.209 2024-02-24 17:16:03.209 1000 STREAM 141924 1326 6055783 2024-02-24 17:19:03.204 2024-02-24 17:19:03.204 1000 STREAM 141924 672 6055792 2024-02-24 17:20:03.247 2024-02-24 17:20:03.247 1000 STREAM 141924 10536 6055955 2024-02-24 17:35:03.337 2024-02-24 17:35:03.337 1000 STREAM 141924 5036 6056009 2024-02-24 17:38:03.371 2024-02-24 17:38:03.371 1000 STREAM 141924 21387 6056011 2024-02-24 17:39:03.377 2024-02-24 17:39:03.377 1000 STREAM 141924 715 6056012 2024-02-24 17:40:03.396 2024-02-24 17:40:03.396 1000 STREAM 141924 17517 6056014 2024-02-24 17:41:03.382 2024-02-24 17:41:03.382 1000 STREAM 141924 4118 6056019 2024-02-24 17:42:03.407 2024-02-24 17:42:03.407 1000 STREAM 141924 4102 6056289 2024-02-24 18:05:03.464 2024-02-24 18:05:03.464 1000 STREAM 141924 1307 6056321 2024-02-24 18:06:03.472 2024-02-24 18:06:03.472 1000 STREAM 141924 21064 6056345 2024-02-24 18:07:03.481 2024-02-24 18:07:03.481 1000 STREAM 141924 2620 6056364 2024-02-24 18:09:03.513 2024-02-24 18:09:03.513 1000 STREAM 141924 1618 6056409 2024-02-24 18:10:03.53 2024-02-24 18:10:03.53 1000 STREAM 141924 11996 6056411 2024-02-24 18:11:03.51 2024-02-24 18:11:03.51 1000 STREAM 141924 11798 6056419 2024-02-24 18:12:03.53 2024-02-24 18:12:03.53 1000 STREAM 141924 954 6056422 2024-02-24 18:13:03.543 2024-02-24 18:13:03.543 1000 STREAM 141924 19576 6056433 2024-02-24 18:15:03.568 2024-02-24 18:15:03.568 1000 STREAM 141924 15159 6056445 2024-02-24 18:17:03.541 2024-02-24 18:17:03.541 1000 STREAM 141924 9916 6056446 2024-02-24 18:18:03.536 2024-02-24 18:18:03.536 1000 STREAM 141924 5499 6056459 2024-02-24 18:19:03.535 2024-02-24 18:19:03.535 1000 STREAM 141924 1472 6056473 2024-02-24 18:22:03.545 2024-02-24 18:22:03.545 1000 STREAM 141924 2101 6119346 2024-02-29 21:06:41.847 2024-02-29 21:06:41.847 0 FEE 444294 5308 6119357 2024-02-29 21:08:00.438 2024-02-29 21:08:00.438 1000 FEE 444298 18199 6119367 2024-02-29 21:08:30.893 2024-02-29 21:08:30.893 1700 FEE 439315 6687 6119368 2024-02-29 21:08:30.893 2024-02-29 21:08:30.893 15300 TIP 439315 675 6119419 2024-02-29 21:11:06.385 2024-02-29 21:11:06.385 500 FEE 444179 15806 6119420 2024-02-29 21:11:06.385 2024-02-29 21:11:06.385 4500 TIP 444179 5455 6119438 2024-02-29 21:12:00.157 2024-02-29 21:12:00.157 1000 FEE 444300 15858 6119440 2024-02-29 21:12:47.072 2024-02-29 21:12:47.072 200000 FEE 444173 18608 6119441 2024-02-29 21:12:47.072 2024-02-29 21:12:47.072 1800000 TIP 444173 9184 6119448 2024-02-29 21:15:45.403 2024-02-29 21:15:45.403 1000 FEE 444301 21145 6119471 2024-02-29 21:18:38.342 2024-02-29 21:18:38.342 2100 FEE 444220 15148 6119472 2024-02-29 21:18:38.342 2024-02-29 21:18:38.342 18900 TIP 444220 16653 6119495 2024-02-29 21:21:45.416 2024-02-29 21:21:45.416 100 FEE 444259 12278 6119496 2024-02-29 21:21:45.416 2024-02-29 21:21:45.416 900 TIP 444259 19826 6119503 2024-02-29 21:24:44.06 2024-02-29 21:24:44.06 100 FEE 444278 18731 6119504 2024-02-29 21:24:44.06 2024-02-29 21:24:44.06 900 TIP 444278 12265 6119558 2024-02-29 21:32:07.453 2024-02-29 21:32:07.453 1000 FEE 444312 20045 6119572 2024-02-29 21:37:36.29 2024-02-29 21:37:36.29 800 FEE 443861 20023 6119573 2024-02-29 21:37:36.29 2024-02-29 21:37:36.29 7200 TIP 443861 16513 6119575 2024-02-29 21:38:27.399 2024-02-29 21:38:27.399 800 FEE 442848 18393 6119576 2024-02-29 21:38:27.399 2024-02-29 21:38:27.399 7200 TIP 442848 19458 6119579 2024-02-29 21:38:34.26 2024-02-29 21:38:34.26 100 FEE 444102 20276 6119580 2024-02-29 21:38:34.26 2024-02-29 21:38:34.26 900 TIP 444102 21090 6119583 2024-02-29 21:38:34.823 2024-02-29 21:38:34.823 100 FEE 444102 20143 6119584 2024-02-29 21:38:34.823 2024-02-29 21:38:34.823 900 TIP 444102 661 6119614 2024-02-29 21:40:37.052 2024-02-29 21:40:37.052 1000 FEE 444316 15938 6119633 2024-02-29 21:42:38.279 2024-02-29 21:42:38.279 1000 FEE 444319 1480 6119651 2024-02-29 21:44:34.349 2024-02-29 21:44:34.349 1000 FEE 444322 18557 6119657 2024-02-29 21:46:54.537 2024-02-29 21:46:54.537 2100 FEE 444102 10519 6119658 2024-02-29 21:46:54.537 2024-02-29 21:46:54.537 18900 TIP 444102 18264 6054996 2024-02-24 16:05:38.895 2024-02-24 16:05:38.895 1000 FEE 437414 7772 6055004 2024-02-24 16:06:36.4 2024-02-24 16:06:36.4 1000 FEE 437415 10469 6055041 2024-02-24 16:10:11.603 2024-02-24 16:10:11.603 1000 FEE 437370 8416 6055042 2024-02-24 16:10:11.603 2024-02-24 16:10:11.603 9000 TIP 437370 4378 6055068 2024-02-24 16:13:16.22 2024-02-24 16:13:16.22 900 FEE 437408 4225 6055069 2024-02-24 16:13:16.22 2024-02-24 16:13:16.22 8100 TIP 437408 19652 6055077 2024-02-24 16:14:31.871 2024-02-24 16:14:31.871 100 FEE 437269 828 6055078 2024-02-24 16:14:31.871 2024-02-24 16:14:31.871 900 TIP 437269 21373 6055113 2024-02-24 16:15:49.483 2024-02-24 16:15:49.483 900 FEE 437205 1389 6055114 2024-02-24 16:15:49.483 2024-02-24 16:15:49.483 8100 TIP 437205 21291 6055120 2024-02-24 16:16:45.291 2024-02-24 16:16:45.291 1000 FEE 437238 951 6055121 2024-02-24 16:16:45.291 2024-02-24 16:16:45.291 9000 TIP 437238 18072 6055137 2024-02-24 16:17:10.012 2024-02-24 16:17:10.012 1000 FEE 437426 12049 6055138 2024-02-24 16:17:10.012 2024-02-24 16:17:10.012 9000 TIP 437426 20738 6055152 2024-02-24 16:20:12.531 2024-02-24 16:20:12.531 21800 FEE 437420 2285 6055153 2024-02-24 16:20:12.531 2024-02-24 16:20:12.531 196200 TIP 437420 20218 6055193 2024-02-24 16:24:20.107 2024-02-24 16:24:20.107 0 FEE 437432 21547 6055225 2024-02-24 16:28:19.618 2024-02-24 16:28:19.618 1000 FEE 437411 5195 6055226 2024-02-24 16:28:19.618 2024-02-24 16:28:19.618 9000 TIP 437411 21402 6055231 2024-02-24 16:28:20.57 2024-02-24 16:28:20.57 1000 FEE 437411 8416 6055232 2024-02-24 16:28:20.57 2024-02-24 16:28:20.57 9000 TIP 437411 18877 6055233 2024-02-24 16:28:20.866 2024-02-24 16:28:20.866 1000 FEE 437411 827 6055234 2024-02-24 16:28:20.866 2024-02-24 16:28:20.866 9000 TIP 437411 12959 6055239 2024-02-24 16:29:03.042 2024-02-24 16:29:03.042 0 FEE 437432 1806 6055266 2024-02-24 16:32:25.74 2024-02-24 16:32:25.74 1000 FEE 437439 21339 6055267 2024-02-24 16:32:25.74 2024-02-24 16:32:25.74 9000 TIP 437439 16282 6055270 2024-02-24 16:32:26.646 2024-02-24 16:32:26.646 1000 FEE 437439 20980 6055271 2024-02-24 16:32:26.646 2024-02-24 16:32:26.646 9000 TIP 437439 4831 6055290 2024-02-24 16:33:23.701 2024-02-24 16:33:23.701 1000 FEE 437396 9418 6055291 2024-02-24 16:33:23.701 2024-02-24 16:33:23.701 9000 TIP 437396 8287 6055296 2024-02-24 16:33:24.992 2024-02-24 16:33:24.992 1000 FEE 437396 19581 6055297 2024-02-24 16:33:24.992 2024-02-24 16:33:24.992 9000 TIP 437396 19435 6055302 2024-02-24 16:33:26.304 2024-02-24 16:33:26.304 1000 FEE 437396 16753 6055303 2024-02-24 16:33:26.304 2024-02-24 16:33:26.304 9000 TIP 437396 18832 6055304 2024-02-24 16:33:26.396 2024-02-24 16:33:26.396 1000 FEE 437396 17415 6055305 2024-02-24 16:33:26.396 2024-02-24 16:33:26.396 9000 TIP 437396 1717 6055306 2024-02-24 16:33:36.455 2024-02-24 16:33:36.455 100 FEE 437055 18663 6055307 2024-02-24 16:33:36.455 2024-02-24 16:33:36.455 900 TIP 437055 14651 6055348 2024-02-24 16:37:31.902 2024-02-24 16:37:31.902 21000 FEE 437448 718 6055354 2024-02-24 16:38:00.38 2024-02-24 16:38:00.38 2100 FEE 437183 21091 6055355 2024-02-24 16:38:00.38 2024-02-24 16:38:00.38 18900 TIP 437183 21269 6055356 2024-02-24 16:38:00.455 2024-02-24 16:38:00.455 2100 FEE 437183 19030 6055357 2024-02-24 16:38:00.455 2024-02-24 16:38:00.455 18900 TIP 437183 20892 6055363 2024-02-24 16:38:06.342 2024-02-24 16:38:06.342 2100 FEE 436967 20596 6055364 2024-02-24 16:38:06.342 2024-02-24 16:38:06.342 18900 TIP 436967 10013 6055371 2024-02-24 16:38:33.575 2024-02-24 16:38:33.575 210000 FEE 436508 15094 6055372 2024-02-24 16:38:33.575 2024-02-24 16:38:33.575 1890000 TIP 436508 5160 6055380 2024-02-24 16:39:05.683 2024-02-24 16:39:05.683 1000 FEE 437449 18412 6055386 2024-02-24 16:40:17.54 2024-02-24 16:40:17.54 1000 FEE 437450 19995 6055417 2024-02-24 16:45:02.305 2024-02-24 16:45:02.305 21000 DONT_LIKE_THIS 437379 7899 6055437 2024-02-24 16:47:00.138 2024-02-24 16:47:00.138 0 FEE 437458 1483 6055441 2024-02-24 16:47:15.962 2024-02-24 16:47:15.962 300 FEE 437218 19813 6055442 2024-02-24 16:47:15.962 2024-02-24 16:47:15.962 2700 TIP 437218 20143 6055443 2024-02-24 16:47:26.217 2024-02-24 16:47:26.217 0 FEE 437457 1784 6055448 2024-02-24 16:48:12.216 2024-02-24 16:48:12.216 1000 FEE 437460 19660 6055455 2024-02-24 16:49:24.73 2024-02-24 16:49:24.73 100 FEE 437457 1803 6055456 2024-02-24 16:49:24.73 2024-02-24 16:49:24.73 900 TIP 437457 7185 6055501 2024-02-24 16:56:35.985 2024-02-24 16:56:35.985 1000 FEE 437467 2309 6055521 2024-02-24 17:00:30.863 2024-02-24 17:00:30.863 1000 FEE 437470 16355 6055563 2024-02-24 17:02:12.375 2024-02-24 17:02:12.375 1000 FEE 437458 10280 6055564 2024-02-24 17:02:12.375 2024-02-24 17:02:12.375 9000 TIP 437458 6268 6055580 2024-02-24 17:02:59.612 2024-02-24 17:02:59.612 10000 FEE 437238 7877 6055581 2024-02-24 17:02:59.612 2024-02-24 17:02:59.612 90000 TIP 437238 956 6055588 2024-02-24 17:03:01.578 2024-02-24 17:03:01.578 10000 FEE 437238 21469 6055589 2024-02-24 17:03:01.578 2024-02-24 17:03:01.578 90000 TIP 437238 21493 6055608 2024-02-24 17:04:56.002 2024-02-24 17:04:56.002 1000 FEE 437478 19652 6055619 2024-02-24 17:05:55.2 2024-02-24 17:05:55.2 1000 FEE 437479 19785 6055638 2024-02-24 17:08:41.42 2024-02-24 17:08:41.42 1000 FEE 437455 18526 6055639 2024-02-24 17:08:41.42 2024-02-24 17:08:41.42 9000 TIP 437455 3990 6055649 2024-02-24 17:09:20.464 2024-02-24 17:09:20.464 1000 FEE 437483 11417 6055657 2024-02-24 17:09:42.41 2024-02-24 17:09:42.41 1000 FEE 437484 15588 6055052 2024-02-24 16:11:59.513 2024-02-24 16:11:59.513 90000 TIP 437238 19148 6055100 2024-02-24 16:15:25.142 2024-02-24 16:15:25.142 1000 FEE 437424 7979 6055101 2024-02-24 16:15:25.142 2024-02-24 16:15:25.142 9000 TIP 437424 1208 6055135 2024-02-24 16:17:09.304 2024-02-24 16:17:09.304 1000 FEE 437426 16670 6055136 2024-02-24 16:17:09.304 2024-02-24 16:17:09.304 9000 TIP 437426 11698 6055148 2024-02-24 16:19:51.644 2024-02-24 16:19:51.644 1000 FEE 437430 20782 6055161 2024-02-24 16:21:19.268 2024-02-24 16:21:19.268 10000 FEE 437269 9329 6055162 2024-02-24 16:21:19.268 2024-02-24 16:21:19.268 90000 TIP 437269 20245 6055191 2024-02-24 16:23:47.907 2024-02-24 16:23:47.907 1000 FEE 437433 1162 6055194 2024-02-24 16:24:23.988 2024-02-24 16:24:23.988 1000 FEE 429227 11670 6055195 2024-02-24 16:24:23.988 2024-02-24 16:24:23.988 9000 TIP 429227 1577 6055211 2024-02-24 16:27:26.304 2024-02-24 16:27:26.304 2100 FEE 437269 16633 6055212 2024-02-24 16:27:26.304 2024-02-24 16:27:26.304 18900 TIP 437269 2757 6055217 2024-02-24 16:27:27.183 2024-02-24 16:27:27.183 2100 FEE 437269 10849 6055218 2024-02-24 16:27:27.183 2024-02-24 16:27:27.183 18900 TIP 437269 11678 6055224 2024-02-24 16:28:17.324 2024-02-24 16:28:17.324 1000 FEE 437438 19773 6055258 2024-02-24 16:32:07.108 2024-02-24 16:32:07.108 100 FEE 437089 7986 6055259 2024-02-24 16:32:07.108 2024-02-24 16:32:07.108 900 TIP 437089 1162 6055276 2024-02-24 16:32:44.668 2024-02-24 16:32:44.668 900 FEE 437008 6653 6055277 2024-02-24 16:32:44.668 2024-02-24 16:32:44.668 8100 TIP 437008 18426 6055288 2024-02-24 16:33:23.337 2024-02-24 16:33:23.337 1000 FEE 437396 11873 6055289 2024-02-24 16:33:23.337 2024-02-24 16:33:23.337 9000 TIP 437396 11498 6055310 2024-02-24 16:33:37.834 2024-02-24 16:33:37.834 100 FEE 437167 20276 6055311 2024-02-24 16:33:37.834 2024-02-24 16:33:37.834 900 TIP 437167 2525 6055320 2024-02-24 16:34:23.969 2024-02-24 16:34:23.969 1000 FEE 437430 20502 6055321 2024-02-24 16:34:23.969 2024-02-24 16:34:23.969 9000 TIP 437430 913 6055333 2024-02-24 16:36:12.91 2024-02-24 16:36:12.91 300 FEE 437276 5775 6055334 2024-02-24 16:36:12.91 2024-02-24 16:36:12.91 2700 TIP 437276 946 6055346 2024-02-24 16:37:15.847 2024-02-24 16:37:15.847 22200 FEE 437432 4776 6055347 2024-02-24 16:37:15.847 2024-02-24 16:37:15.847 199800 TIP 437432 19785 6055373 2024-02-24 16:38:53.467 2024-02-24 16:38:53.467 2100 FEE 437440 11862 6055374 2024-02-24 16:38:53.467 2024-02-24 16:38:53.467 18900 TIP 437440 1438 6055412 2024-02-24 16:44:31.023 2024-02-24 16:44:31.023 300 FEE 437054 16177 6055413 2024-02-24 16:44:31.023 2024-02-24 16:44:31.023 2700 TIP 437054 1316 6055415 2024-02-24 16:44:57.699 2024-02-24 16:44:57.699 2600 FEE 436082 16194 6055416 2024-02-24 16:44:57.699 2024-02-24 16:44:57.699 23400 TIP 436082 825 6055434 2024-02-24 16:46:27.748 2024-02-24 16:46:27.748 210000 FEE 437457 21523 6055454 2024-02-24 16:49:14.163 2024-02-24 16:49:14.163 1000 FEE 437461 2123 6055457 2024-02-24 16:49:24.853 2024-02-24 16:49:24.853 100 FEE 437457 14278 6055458 2024-02-24 16:49:24.853 2024-02-24 16:49:24.853 900 TIP 437457 1733 6055461 2024-02-24 16:49:26.547 2024-02-24 16:49:26.547 100 FEE 437457 21239 6055462 2024-02-24 16:49:26.547 2024-02-24 16:49:26.547 900 TIP 437457 722 6055463 2024-02-24 16:49:26.642 2024-02-24 16:49:26.642 100 FEE 437457 9352 6055464 2024-02-24 16:49:26.642 2024-02-24 16:49:26.642 900 TIP 437457 15367 6055477 2024-02-24 16:52:58.953 2024-02-24 16:52:58.953 10000 FEE 437463 10731 6055487 2024-02-24 16:53:06.498 2024-02-24 16:53:06.498 100 FEE 437457 20754 6055488 2024-02-24 16:53:06.498 2024-02-24 16:53:06.498 900 TIP 437457 2614 6055489 2024-02-24 16:53:43.363 2024-02-24 16:53:43.363 1000 FEE 437464 9426 6055493 2024-02-24 16:54:52.379 2024-02-24 16:54:52.379 300 FEE 437379 11898 6055494 2024-02-24 16:54:52.379 2024-02-24 16:54:52.379 2700 TIP 437379 4128 6055550 2024-02-24 17:02:01.881 2024-02-24 17:02:01.881 1000 FEE 437459 18865 6055551 2024-02-24 17:02:01.881 2024-02-24 17:02:01.881 9000 TIP 437459 20156 6055572 2024-02-24 17:02:57.592 2024-02-24 17:02:57.592 10000 FEE 437238 19537 6055573 2024-02-24 17:02:57.592 2024-02-24 17:02:57.592 90000 TIP 437238 5487 6055604 2024-02-24 17:04:11.266 2024-02-24 17:04:11.266 4000 FEE 437476 6749 6055605 2024-02-24 17:04:11.266 2024-02-24 17:04:11.266 36000 TIP 437476 12821 6055615 2024-02-24 17:05:25.677 2024-02-24 17:05:25.677 10000 FEE 437357 21057 6055616 2024-02-24 17:05:25.677 2024-02-24 17:05:25.677 90000 TIP 437357 759 6055628 2024-02-24 17:07:43.409 2024-02-24 17:07:43.409 3300 FEE 437367 1717 6055629 2024-02-24 17:07:43.409 2024-02-24 17:07:43.409 29700 TIP 437367 16424 6055646 2024-02-24 17:09:02.989 2024-02-24 17:09:02.989 2100 FEE 437474 2576 6055647 2024-02-24 17:09:02.989 2024-02-24 17:09:02.989 18900 TIP 437474 2075 6055662 2024-02-24 17:09:53.262 2024-02-24 17:09:53.262 900 FEE 437436 7659 6055663 2024-02-24 17:09:53.262 2024-02-24 17:09:53.262 8100 TIP 437436 11091 6055671 2024-02-24 17:10:51.657 2024-02-24 17:10:51.657 100 FEE 437176 18396 6055672 2024-02-24 17:10:51.657 2024-02-24 17:10:51.657 900 TIP 437176 1002 6055686 2024-02-24 17:11:24.166 2024-02-24 17:11:24.166 2100 FEE 437371 19138 6055687 2024-02-24 17:11:24.166 2024-02-24 17:11:24.166 18900 TIP 437371 15239 6055693 2024-02-24 17:11:50.152 2024-02-24 17:11:50.152 1000 FEE 437478 12024 6055694 2024-02-24 17:11:50.152 2024-02-24 17:11:50.152 9000 TIP 437478 1697 6055707 2024-02-24 17:11:58.069 2024-02-24 17:11:58.069 900 FEE 436839 4378 6055708 2024-02-24 17:11:58.069 2024-02-24 17:11:58.069 8100 TIP 436839 18351 6055716 2024-02-24 17:12:26.781 2024-02-24 17:12:26.781 1000 FEE 437491 5829 6055723 2024-02-24 17:13:10.531 2024-02-24 17:13:10.531 1000 FEE 437493 16424 6055735 2024-02-24 17:15:05.477 2024-02-24 17:15:05.477 0 FEE 437486 21323 6055740 2024-02-24 17:15:53.052 2024-02-24 17:15:53.052 0 FEE 437493 14791 6055746 2024-02-24 17:16:10.696 2024-02-24 17:16:10.696 2100 FEE 437375 13753 6055747 2024-02-24 17:16:10.696 2024-02-24 17:16:10.696 18900 TIP 437375 654 6055748 2024-02-24 17:16:11.253 2024-02-24 17:16:11.253 21000 DONT_LIKE_THIS 437494 16336 6055756 2024-02-24 17:16:33.048 2024-02-24 17:16:33.048 2000 FEE 437146 20502 6055757 2024-02-24 17:16:33.048 2024-02-24 17:16:33.048 18000 TIP 437146 21498 6055798 2024-02-24 17:20:19.778 2024-02-24 17:20:19.778 2100 FEE 437233 20980 6055799 2024-02-24 17:20:19.778 2024-02-24 17:20:19.778 18900 TIP 437233 18736 6055813 2024-02-24 17:20:52.118 2024-02-24 17:20:52.118 100000 FEE 437490 19806 6055814 2024-02-24 17:20:52.118 2024-02-24 17:20:52.118 900000 TIP 437490 2204 6055823 2024-02-24 17:21:20.87 2024-02-24 17:21:20.87 2100 FEE 437345 18673 6055824 2024-02-24 17:21:20.87 2024-02-24 17:21:20.87 18900 TIP 437345 4314 6055838 2024-02-24 17:23:56.102 2024-02-24 17:23:56.102 1000 FEE 437510 18664 6055841 2024-02-24 17:24:23.832 2024-02-24 17:24:23.832 2100 FEE 437463 1180 6055842 2024-02-24 17:24:23.832 2024-02-24 17:24:23.832 18900 TIP 437463 21555 6055859 2024-02-24 17:24:48.69 2024-02-24 17:24:48.69 1000 FEE 437472 11522 6055860 2024-02-24 17:24:48.69 2024-02-24 17:24:48.69 9000 TIP 437472 18270 6055866 2024-02-24 17:25:26.664 2024-02-24 17:25:26.664 0 FEE 437502 19286 6055875 2024-02-24 17:25:48.304 2024-02-24 17:25:48.304 1000 FEE 437472 2326 6055876 2024-02-24 17:25:48.304 2024-02-24 17:25:48.304 9000 TIP 437472 20646 6055881 2024-02-24 17:25:50.113 2024-02-24 17:25:50.113 1000 FEE 437472 14552 6055882 2024-02-24 17:25:50.113 2024-02-24 17:25:50.113 9000 TIP 437472 20990 6055921 2024-02-24 17:30:49.693 2024-02-24 17:30:49.693 1000 FEE 436197 6149 6055922 2024-02-24 17:30:49.693 2024-02-24 17:30:49.693 9000 TIP 436197 17944 6055928 2024-02-24 17:31:21.669 2024-02-24 17:31:21.669 700 FEE 437441 16276 6055929 2024-02-24 17:31:21.669 2024-02-24 17:31:21.669 6300 TIP 437441 14774 6055932 2024-02-24 17:31:23.397 2024-02-24 17:31:23.397 700 FEE 437441 4802 6055933 2024-02-24 17:31:23.397 2024-02-24 17:31:23.397 6300 TIP 437441 1012 6055064 2024-02-24 16:13:02.636 2024-02-24 16:13:02.636 1000 STREAM 141924 16267 6119370 2024-02-29 21:08:31.446 2024-02-29 21:08:31.446 900 TIP 443593 11091 6119385 2024-02-29 21:10:25.842 2024-02-29 21:10:25.842 1700 FEE 444298 5904 6119386 2024-02-29 21:10:25.842 2024-02-29 21:10:25.842 15300 TIP 444298 19910 6119413 2024-02-29 21:11:05.737 2024-02-29 21:11:05.737 500 FEE 444179 8508 6119414 2024-02-29 21:11:05.737 2024-02-29 21:11:05.737 4500 TIP 444179 721 6119427 2024-02-29 21:11:07.371 2024-02-29 21:11:07.371 500 FEE 444179 19888 6119428 2024-02-29 21:11:07.371 2024-02-29 21:11:07.371 4500 TIP 444179 3392 6119450 2024-02-29 21:15:59.062 2024-02-29 21:15:59.062 1000 FEE 444303 8289 6119456 2024-02-29 21:16:47.01 2024-02-29 21:16:47.01 9000 FEE 444296 16214 6119457 2024-02-29 21:16:47.01 2024-02-29 21:16:47.01 81000 TIP 444296 10731 6119459 2024-02-29 21:16:59.781 2024-02-29 21:16:59.781 3300 FEE 444291 11145 6119460 2024-02-29 21:16:59.781 2024-02-29 21:16:59.781 29700 TIP 444291 19909 6119461 2024-02-29 21:17:00.122 2024-02-29 21:17:00.122 3300 FEE 444291 8729 6119462 2024-02-29 21:17:00.122 2024-02-29 21:17:00.122 29700 TIP 444291 20133 6119491 2024-02-29 21:21:22.553 2024-02-29 21:21:22.553 100 FEE 444260 19615 6119492 2024-02-29 21:21:22.553 2024-02-29 21:21:22.553 900 TIP 444260 9339 6119502 2024-02-29 21:24:17.524 2024-02-29 21:24:17.524 1000 FEE 444310 13587 6119515 2024-02-29 21:26:34.136 2024-02-29 21:26:34.136 1000 FEE 444300 1092 6119516 2024-02-29 21:26:34.136 2024-02-29 21:26:34.136 9000 TIP 444300 5590 6119548 2024-02-29 21:30:36.09 2024-02-29 21:30:36.09 1000 FEE 444210 21427 6119549 2024-02-29 21:30:36.09 2024-02-29 21:30:36.09 9000 TIP 444210 795 6119569 2024-02-29 21:35:33.724 2024-02-29 21:35:33.724 1000 FEE 444314 20036 6119595 2024-02-29 21:38:36.378 2024-02-29 21:38:36.378 800 FEE 444220 635 6119596 2024-02-29 21:38:36.378 2024-02-29 21:38:36.378 7200 TIP 444220 21320 6119619 2024-02-29 21:41:37.734 2024-02-29 21:41:37.734 300 FEE 444156 6164 6119620 2024-02-29 21:41:37.734 2024-02-29 21:41:37.734 2700 TIP 444156 19911 6119623 2024-02-29 21:42:02.472 2024-02-29 21:42:02.472 2100 FEE 444112 5661 6119624 2024-02-29 21:42:02.472 2024-02-29 21:42:02.472 18900 TIP 444112 2390 6119646 2024-02-29 21:44:10.745 2024-02-29 21:44:10.745 1100 FEE 444317 11192 6119647 2024-02-29 21:44:10.745 2024-02-29 21:44:10.745 9900 TIP 444317 15549 6119675 2024-02-29 21:50:24.422 2024-02-29 21:50:24.422 0 FEE 444325 19863 6119684 2024-02-29 21:52:49.643 2024-02-29 21:52:49.643 2100 FEE 444292 12024 6119685 2024-02-29 21:52:49.643 2024-02-29 21:52:49.643 18900 TIP 444292 9921 6119717 2024-02-29 22:00:01.08 2024-02-29 22:00:01.08 1000 FEE 444289 2123 6119718 2024-02-29 22:00:01.08 2024-02-29 22:00:01.08 9000 TIP 444289 1175 6119738 2024-02-29 22:03:30.001 2024-02-29 22:03:30.001 1000 FEE 444336 20756 6119747 2024-02-29 22:04:09.948 2024-02-29 22:04:09.948 1000 FEE 444333 730 6119748 2024-02-29 22:04:09.948 2024-02-29 22:04:09.948 9000 TIP 444333 9334 6119801 2024-02-29 22:12:04.31 2024-02-29 22:12:04.31 3100 FEE 444340 16788 6119802 2024-02-29 22:12:04.31 2024-02-29 22:12:04.31 27900 TIP 444340 3717 6119829 2024-02-29 22:16:58.983 2024-02-29 22:16:58.983 100 FEE 443944 963 6119830 2024-02-29 22:16:58.983 2024-02-29 22:16:58.983 900 TIP 443944 16149 6119835 2024-02-29 22:17:37.706 2024-02-29 22:17:37.706 1000 FEE 444354 18745 6119883 2024-02-29 22:22:06.028 2024-02-29 22:22:06.028 0 FEE 444357 8168 6119889 2024-02-29 22:23:25.22 2024-02-29 22:23:25.22 100 FEE 444258 1733 6119890 2024-02-29 22:23:25.22 2024-02-29 22:23:25.22 900 TIP 444258 21612 6119910 2024-02-29 22:25:08.798 2024-02-29 22:25:08.798 0 FEE 444357 2776 6119913 2024-02-29 22:26:12.535 2024-02-29 22:26:12.535 5700 FEE 444359 19147 6119914 2024-02-29 22:26:12.535 2024-02-29 22:26:12.535 51300 TIP 444359 18837 6119915 2024-02-29 22:26:16.764 2024-02-29 22:26:16.764 1000 FEE 444364 4292 6119918 2024-02-29 22:26:21.278 2024-02-29 22:26:21.278 5700 FEE 444112 9036 6119919 2024-02-29 22:26:21.278 2024-02-29 22:26:21.278 51300 TIP 444112 16154 6119933 2024-02-29 22:28:30.157 2024-02-29 22:28:30.157 1100 FEE 443105 20430 6119934 2024-02-29 22:28:30.157 2024-02-29 22:28:30.157 9900 TIP 443105 12175 6119951 2024-02-29 22:31:28.034 2024-02-29 22:31:28.034 7700 FEE 443915 18359 6119952 2024-02-29 22:31:28.034 2024-02-29 22:31:28.034 69300 TIP 443915 9109 6119953 2024-02-29 22:31:28.179 2024-02-29 22:31:28.179 7700 FEE 443915 16410 6119954 2024-02-29 22:31:28.179 2024-02-29 22:31:28.179 69300 TIP 443915 16754 6119959 2024-02-29 22:31:28.775 2024-02-29 22:31:28.775 7700 FEE 443915 19930 6119960 2024-02-29 22:31:28.775 2024-02-29 22:31:28.775 69300 TIP 443915 20546 6119989 2024-02-29 22:33:21.018 2024-02-29 22:33:21.018 500 FEE 443272 17014 6119990 2024-02-29 22:33:21.018 2024-02-29 22:33:21.018 4500 TIP 443272 17568 6119995 2024-02-29 22:33:23.958 2024-02-29 22:33:23.958 500 FEE 443274 14950 6119996 2024-02-29 22:33:23.958 2024-02-29 22:33:23.958 4500 TIP 443274 10981 6119999 2024-02-29 22:33:27.362 2024-02-29 22:33:27.362 500 FEE 443745 9349 6120000 2024-02-29 22:33:27.362 2024-02-29 22:33:27.362 4500 TIP 443745 5694 6120003 2024-02-29 22:33:29.722 2024-02-29 22:33:29.722 500 FEE 443617 4459 6120004 2024-02-29 22:33:29.722 2024-02-29 22:33:29.722 4500 TIP 443617 7668 6120005 2024-02-29 22:33:30.774 2024-02-29 22:33:30.774 500 FEE 443577 19142 6120006 2024-02-29 22:33:30.774 2024-02-29 22:33:30.774 4500 TIP 443577 1609 6120011 2024-02-29 22:34:23.666 2024-02-29 22:34:23.666 0 FEE 444368 624 6120018 2024-02-29 22:35:05.137 2024-02-29 22:35:05.137 1000 FEE 444370 14663 6120028 2024-02-29 22:36:19.711 2024-02-29 22:36:19.711 1000 FEE 444359 18518 6120029 2024-02-29 22:36:19.711 2024-02-29 22:36:19.711 9000 TIP 444359 12921 6120062 2024-02-29 22:40:45.43 2024-02-29 22:40:45.43 5700 FEE 444365 646 6120063 2024-02-29 22:40:45.43 2024-02-29 22:40:45.43 51300 TIP 444365 20581 6120077 2024-02-29 22:42:19.46 2024-02-29 22:42:19.46 1100 FEE 444102 20137 6120078 2024-02-29 22:42:19.46 2024-02-29 22:42:19.46 9900 TIP 444102 1960 6120083 2024-02-29 22:45:00.312 2024-02-29 22:45:00.312 1000 FEE 444369 20826 6120084 2024-02-29 22:45:00.312 2024-02-29 22:45:00.312 9000 TIP 444369 10862 6120090 2024-02-29 22:45:07.085 2024-02-29 22:45:07.085 1000 FEE 444359 15148 6120091 2024-02-29 22:45:07.085 2024-02-29 22:45:07.085 9000 TIP 444359 9969 6120092 2024-02-29 22:45:07.243 2024-02-29 22:45:07.243 1000 FEE 444359 17411 6120093 2024-02-29 22:45:07.243 2024-02-29 22:45:07.243 9000 TIP 444359 20185 6120114 2024-02-29 22:47:30.305 2024-02-29 22:47:30.305 2100 FEE 444365 17741 6120115 2024-02-29 22:47:30.305 2024-02-29 22:47:30.305 18900 TIP 444365 18873 6120131 2024-02-29 22:48:42.875 2024-02-29 22:48:42.875 1000 FEE 443987 19087 6120132 2024-02-29 22:48:42.875 2024-02-29 22:48:42.875 9000 TIP 443987 21620 6120151 2024-02-29 22:50:46.862 2024-02-29 22:50:46.862 2100 FEE 444139 1628 6120152 2024-02-29 22:50:46.862 2024-02-29 22:50:46.862 18900 TIP 444139 19289 6120186 2024-02-29 22:55:03.226 2024-02-29 22:55:03.226 1000 POLL 444078 2749 6120198 2024-02-29 22:56:46.133 2024-02-29 22:56:46.133 3000 FEE 444378 20430 6120199 2024-02-29 22:56:46.133 2024-02-29 22:56:46.133 27000 TIP 444378 20201 6120210 2024-02-29 22:57:44.182 2024-02-29 22:57:44.182 10000 FEE 444387 20291 6120212 2024-02-29 22:58:10.584 2024-02-29 22:58:10.584 500 FEE 443781 19952 6120213 2024-02-29 22:58:10.584 2024-02-29 22:58:10.584 4500 TIP 443781 16950 6120231 2024-02-29 23:00:38.382 2024-02-29 23:00:38.382 1000 FEE 444179 15139 6120232 2024-02-29 23:00:38.382 2024-02-29 23:00:38.382 9000 TIP 444179 21159 6120241 2024-02-29 23:00:53.593 2024-02-29 23:00:53.593 1100 FEE 443483 5455 6055075 2024-02-24 16:14:02.652 2024-02-24 16:14:02.652 1000 STREAM 141924 1224 6119381 2024-02-29 21:10:04.805 2024-02-29 21:10:04.805 1000 STREAM 141924 638 6119442 2024-02-29 21:13:04.784 2024-02-29 21:13:04.784 1000 STREAM 141924 794 6055237 2024-02-24 16:28:44.717 2024-02-24 16:28:44.717 36000 TIP 437437 2681 6055254 2024-02-24 16:31:21.255 2024-02-24 16:31:21.255 9000 FEE 437403 6419 6055255 2024-02-24 16:31:21.255 2024-02-24 16:31:21.255 81000 TIP 437403 17212 6055268 2024-02-24 16:32:26.189 2024-02-24 16:32:26.189 1000 FEE 437439 617 6055269 2024-02-24 16:32:26.189 2024-02-24 16:32:26.189 9000 TIP 437439 15560 6055286 2024-02-24 16:33:22.857 2024-02-24 16:33:22.857 1000 FEE 437396 5961 6055287 2024-02-24 16:33:22.857 2024-02-24 16:33:22.857 9000 TIP 437396 733 6055414 2024-02-24 16:44:54.968 2024-02-24 16:44:54.968 210000 FEE 437454 17124 6055426 2024-02-24 16:46:16.392 2024-02-24 16:46:16.392 2100 FEE 437445 13854 6055427 2024-02-24 16:46:16.392 2024-02-24 16:46:16.392 18900 TIP 437445 14260 6055439 2024-02-24 16:47:04.332 2024-02-24 16:47:04.332 2100 FEE 437377 811 6055440 2024-02-24 16:47:04.332 2024-02-24 16:47:04.332 18900 TIP 437377 12122 6055444 2024-02-24 16:47:39.582 2024-02-24 16:47:39.582 0 FEE 437457 15094 6055451 2024-02-24 16:48:53.239 2024-02-24 16:48:53.239 1100 FEE 437238 10398 6055452 2024-02-24 16:48:53.239 2024-02-24 16:48:53.239 9900 TIP 437238 11329 6055481 2024-02-24 16:53:04.996 2024-02-24 16:53:04.996 100 FEE 437457 17106 6055482 2024-02-24 16:53:04.996 2024-02-24 16:53:04.996 900 TIP 437457 19890 6055492 2024-02-24 16:54:33.9 2024-02-24 16:54:33.9 1000 FEE 437466 19815 6055532 2024-02-24 17:01:25.208 2024-02-24 17:01:25.208 5000 FEE 437362 13921 6055533 2024-02-24 17:01:25.208 2024-02-24 17:01:25.208 45000 TIP 437362 19773 6055540 2024-02-24 17:01:31.65 2024-02-24 17:01:31.65 0 FEE 437465 7395 6055543 2024-02-24 17:01:40.24 2024-02-24 17:01:40.24 21000 FEE 437472 1584 6055544 2024-02-24 17:01:45.507 2024-02-24 17:01:45.507 1000 FEE 437473 919 6055552 2024-02-24 17:02:02.271 2024-02-24 17:02:02.271 1000 FEE 437459 5449 6055553 2024-02-24 17:02:02.271 2024-02-24 17:02:02.271 9000 TIP 437459 20655 6055602 2024-02-24 17:04:10.688 2024-02-24 17:04:10.688 4000 FEE 437476 20087 6055603 2024-02-24 17:04:10.688 2024-02-24 17:04:10.688 36000 TIP 437476 20647 6055631 2024-02-24 17:08:11.11 2024-02-24 17:08:11.11 0 FEE 437477 18675 6055651 2024-02-24 17:09:34.682 2024-02-24 17:09:34.682 2100 FEE 437467 795 6055652 2024-02-24 17:09:34.682 2024-02-24 17:09:34.682 18900 TIP 437467 16347 6055692 2024-02-24 17:11:46.158 2024-02-24 17:11:46.158 1000 FEE 437489 18169 6055705 2024-02-24 17:11:57.935 2024-02-24 17:11:57.935 100 FEE 436839 2502 6055706 2024-02-24 17:11:57.935 2024-02-24 17:11:57.935 900 TIP 436839 17690 6055744 2024-02-24 17:16:06.579 2024-02-24 17:16:06.579 2100 FEE 437450 20163 6055745 2024-02-24 17:16:06.579 2024-02-24 17:16:06.579 18900 TIP 437450 20080 6055752 2024-02-24 17:16:32.787 2024-02-24 17:16:32.787 2000 FEE 437146 12368 6055753 2024-02-24 17:16:32.787 2024-02-24 17:16:32.787 18000 TIP 437146 18372 6055754 2024-02-24 17:16:32.968 2024-02-24 17:16:32.968 2000 FEE 437146 1673 6055755 2024-02-24 17:16:32.968 2024-02-24 17:16:32.968 18000 TIP 437146 20439 6055782 2024-02-24 17:18:26.845 2024-02-24 17:18:26.845 1000 FEE 437500 21044 6055238 2024-02-24 16:29:02.741 2024-02-24 16:29:02.741 1000 STREAM 141924 12272 6055241 2024-02-24 16:30:02.776 2024-02-24 16:30:02.776 1000 STREAM 141924 7899 6055926 2024-02-24 17:31:03.211 2024-02-24 17:31:03.211 1000 STREAM 141924 5427 6055946 2024-02-24 17:32:03.213 2024-02-24 17:32:03.213 1000 STREAM 141924 20464 6119382 2024-02-29 21:10:21.141 2024-02-29 21:10:21.141 0 FEE 444294 6041 6119401 2024-02-29 21:11:04.55 2024-02-29 21:11:04.55 500 FEE 444179 19501 6119402 2024-02-29 21:11:04.55 2024-02-29 21:11:04.55 4500 TIP 444179 19322 6119409 2024-02-29 21:11:05.296 2024-02-29 21:11:05.296 500 FEE 444179 4304 6119410 2024-02-29 21:11:05.296 2024-02-29 21:11:05.296 4500 TIP 444179 20187 6119429 2024-02-29 21:11:08.197 2024-02-29 21:11:08.197 500 FEE 444179 5758 6119430 2024-02-29 21:11:08.197 2024-02-29 21:11:08.197 4500 TIP 444179 10536 6119446 2024-02-29 21:14:26.642 2024-02-29 21:14:26.642 0 FEE 444299 10398 6119476 2024-02-29 21:19:00.599 2024-02-29 21:19:00.599 2100 FEE 444186 9552 6119477 2024-02-29 21:19:00.599 2024-02-29 21:19:00.599 18900 TIP 444186 18663 6119486 2024-02-29 21:20:02.098 2024-02-29 21:20:02.098 1000 FEE 444309 20272 6119523 2024-02-29 21:26:37.178 2024-02-29 21:26:37.178 1000 FEE 444300 732 6119524 2024-02-29 21:26:37.178 2024-02-29 21:26:37.178 9000 TIP 444300 18615 6119538 2024-02-29 21:28:58.504 2024-02-29 21:28:58.504 1000 FEE 444258 19158 6119539 2024-02-29 21:28:58.504 2024-02-29 21:28:58.504 9000 TIP 444258 12268 6119550 2024-02-29 21:30:59.905 2024-02-29 21:30:59.905 2100 FEE 444310 10060 6119551 2024-02-29 21:30:59.905 2024-02-29 21:30:59.905 18900 TIP 444310 21042 6119581 2024-02-29 21:38:34.593 2024-02-29 21:38:34.593 100 FEE 444102 4973 6119582 2024-02-29 21:38:34.593 2024-02-29 21:38:34.593 900 TIP 444102 9433 6119585 2024-02-29 21:38:35.111 2024-02-29 21:38:35.111 100 FEE 444102 4238 6119586 2024-02-29 21:38:35.111 2024-02-29 21:38:35.111 900 TIP 444102 16839 6119591 2024-02-29 21:38:35.96 2024-02-29 21:38:35.96 100 FEE 444102 679 6119592 2024-02-29 21:38:35.96 2024-02-29 21:38:35.96 900 TIP 444102 6430 6119604 2024-02-29 21:39:32.284 2024-02-29 21:39:32.284 800 FEE 442965 1010 6119605 2024-02-29 21:39:32.284 2024-02-29 21:39:32.284 7200 TIP 442965 16341 6119610 2024-02-29 21:40:22.926 2024-02-29 21:40:22.926 1000 FEE 444173 16270 6119611 2024-02-29 21:40:22.926 2024-02-29 21:40:22.926 9000 TIP 444173 13378 6119612 2024-02-29 21:40:37.019 2024-02-29 21:40:37.019 6900 FEE 444310 2749 6119613 2024-02-29 21:40:37.019 2024-02-29 21:40:37.019 62100 TIP 444310 18774 6119631 2024-02-29 21:42:37.556 2024-02-29 21:42:37.556 2100 FEE 444112 19576 6119632 2024-02-29 21:42:37.556 2024-02-29 21:42:37.556 18900 TIP 444112 1620 6119634 2024-02-29 21:42:39.42 2024-02-29 21:42:39.42 2100 FEE 444308 17331 6119635 2024-02-29 21:42:39.42 2024-02-29 21:42:39.42 18900 TIP 444308 20573 6119638 2024-02-29 21:42:50.784 2024-02-29 21:42:50.784 0 FEE 444319 837 6119650 2024-02-29 21:44:27.36 2024-02-29 21:44:27.36 100000 FEE 444321 16270 6119655 2024-02-29 21:46:17.67 2024-02-29 21:46:17.67 6400 FEE 444168 18630 6055353 2024-02-24 16:38:00.089 2024-02-24 16:38:00.089 18900 TIP 437183 20562 6055365 2024-02-24 16:38:06.431 2024-02-24 16:38:06.431 2100 FEE 436967 21562 6055366 2024-02-24 16:38:06.431 2024-02-24 16:38:06.431 18900 TIP 436967 15617 6055381 2024-02-24 16:39:39.172 2024-02-24 16:39:39.172 100 FEE 437448 4059 6055382 2024-02-24 16:39:39.172 2024-02-24 16:39:39.172 900 TIP 437448 2773 6055410 2024-02-24 16:44:19.907 2024-02-24 16:44:19.907 4000 FEE 437443 18705 6055411 2024-02-24 16:44:19.907 2024-02-24 16:44:19.907 36000 TIP 437443 11698 6055420 2024-02-24 16:45:14.909 2024-02-24 16:45:14.909 1000 FEE 437456 14774 6055470 2024-02-24 16:50:05.701 2024-02-24 16:50:05.701 2100 FEE 437233 8360 6055471 2024-02-24 16:50:05.701 2024-02-24 16:50:05.701 18900 TIP 437233 5427 6055505 2024-02-24 16:58:11.797 2024-02-24 16:58:11.797 1000 FEE 437468 16329 6055514 2024-02-24 16:59:50.587 2024-02-24 16:59:50.587 2100 FEE 437276 18309 6055515 2024-02-24 16:59:50.587 2024-02-24 16:59:50.587 18900 TIP 437276 644 6055546 2024-02-24 17:02:00.931 2024-02-24 17:02:00.931 1000 FEE 437459 16839 6055547 2024-02-24 17:02:00.931 2024-02-24 17:02:00.931 9000 TIP 437459 15544 6055570 2024-02-24 17:02:57.101 2024-02-24 17:02:57.101 10000 FEE 437238 13782 6055571 2024-02-24 17:02:57.101 2024-02-24 17:02:57.101 90000 TIP 437238 16912 6055574 2024-02-24 17:02:58.543 2024-02-24 17:02:58.543 10000 FEE 437238 12139 6055575 2024-02-24 17:02:58.543 2024-02-24 17:02:58.543 90000 TIP 437238 13854 6055592 2024-02-24 17:03:02.401 2024-02-24 17:03:02.401 1000 FEE 437475 18378 6055596 2024-02-24 17:03:13.672 2024-02-24 17:03:13.672 1000 FEE 437476 21369 6055597 2024-02-24 17:03:28.368 2024-02-24 17:03:28.368 1000 FEE 437477 2224 6055599 2024-02-24 17:03:56.084 2024-02-24 17:03:56.084 363200 FEE 437464 1245 6055600 2024-02-24 17:03:56.084 2024-02-24 17:03:56.084 3268800 TIP 437464 18344 6055609 2024-02-24 17:04:58.765 2024-02-24 17:04:58.765 2100 FEE 437241 20452 6055610 2024-02-24 17:04:58.765 2024-02-24 17:04:58.765 18900 TIP 437241 2961 6055642 2024-02-24 17:08:42.154 2024-02-24 17:08:42.154 1000 FEE 437455 632 6055643 2024-02-24 17:08:42.154 2024-02-24 17:08:42.154 9000 TIP 437455 5293 6055660 2024-02-24 17:09:52.995 2024-02-24 17:09:52.995 100 FEE 437436 725 6055661 2024-02-24 17:09:52.995 2024-02-24 17:09:52.995 900 TIP 437436 11165 6055673 2024-02-24 17:10:51.808 2024-02-24 17:10:51.808 900 FEE 437176 4395 6055674 2024-02-24 17:10:51.808 2024-02-24 17:10:51.808 8100 TIP 437176 19841 6055675 2024-02-24 17:10:54.824 2024-02-24 17:10:54.824 9000 FEE 437176 10342 6055676 2024-02-24 17:10:54.824 2024-02-24 17:10:54.824 81000 TIP 437176 20881 6055678 2024-02-24 17:11:14.063 2024-02-24 17:11:14.063 1000 FEE 437487 18396 6055688 2024-02-24 17:11:31.938 2024-02-24 17:11:31.938 2100 FEE 437358 826 6055689 2024-02-24 17:11:31.938 2024-02-24 17:11:31.938 18900 TIP 437358 12272 6055727 2024-02-24 17:13:27.405 2024-02-24 17:13:27.405 900 FEE 437419 18524 6055728 2024-02-24 17:13:27.405 2024-02-24 17:13:27.405 8100 TIP 437419 12346 6055741 2024-02-24 17:15:57.343 2024-02-24 17:15:57.343 2100 FEE 437493 17526 6055742 2024-02-24 17:15:57.343 2024-02-24 17:15:57.343 18900 TIP 437493 899 6055787 2024-02-24 17:19:20.608 2024-02-24 17:19:20.608 700 FEE 437365 6798 6055788 2024-02-24 17:19:20.608 2024-02-24 17:19:20.608 6300 TIP 437365 10409 6055800 2024-02-24 17:20:21.796 2024-02-24 17:20:21.796 2100 FEE 437276 20452 6055801 2024-02-24 17:20:21.796 2024-02-24 17:20:21.796 18900 TIP 437276 1000 6055804 2024-02-24 17:20:29.341 2024-02-24 17:20:29.341 1000 FEE 437504 19189 6055805 2024-02-24 17:20:30.337 2024-02-24 17:20:30.337 2100 FEE 437403 18040 6055806 2024-02-24 17:20:30.337 2024-02-24 17:20:30.337 18900 TIP 437403 19193 6055819 2024-02-24 17:21:07.785 2024-02-24 17:21:07.785 1000 FEE 437507 20636 6055820 2024-02-24 17:21:08.668 2024-02-24 17:21:08.668 2100 FEE 437300 18543 6055821 2024-02-24 17:21:08.668 2024-02-24 17:21:08.668 18900 TIP 437300 5306 6055833 2024-02-24 17:23:44.602 2024-02-24 17:23:44.602 4000 FEE 437472 889 6055834 2024-02-24 17:23:44.602 2024-02-24 17:23:44.602 36000 TIP 437472 5708 6055835 2024-02-24 17:23:49.663 2024-02-24 17:23:49.663 1000 FEE 437509 9427 6055877 2024-02-24 17:25:48.764 2024-02-24 17:25:48.764 1000 FEE 437472 6578 6055878 2024-02-24 17:25:48.764 2024-02-24 17:25:48.764 9000 TIP 437472 17707 6055879 2024-02-24 17:25:49.423 2024-02-24 17:25:49.423 1000 FEE 437472 8133 6055880 2024-02-24 17:25:49.423 2024-02-24 17:25:49.423 9000 TIP 437472 21155 6055940 2024-02-24 17:31:46.972 2024-02-24 17:31:46.972 6900 FEE 437517 16717 6055941 2024-02-24 17:31:46.972 2024-02-24 17:31:46.972 62100 TIP 437517 21145 6055942 2024-02-24 17:31:47.679 2024-02-24 17:31:47.679 6900 FEE 437517 21332 6055943 2024-02-24 17:31:47.679 2024-02-24 17:31:47.679 62100 TIP 437517 16706 6055969 2024-02-24 17:35:51.542 2024-02-24 17:35:51.542 1000 FEE 437525 9366 6055973 2024-02-24 17:36:02.779 2024-02-24 17:36:02.779 100 FEE 437408 18679 6055974 2024-02-24 17:36:02.779 2024-02-24 17:36:02.779 900 TIP 437408 21357 6055979 2024-02-24 17:36:30.076 2024-02-24 17:36:30.076 700 FEE 437515 4043 6055980 2024-02-24 17:36:30.076 2024-02-24 17:36:30.076 6300 TIP 437515 14651 6055993 2024-02-24 17:36:41.659 2024-02-24 17:36:41.659 500 FEE 437446 1320 6055994 2024-02-24 17:36:41.659 2024-02-24 17:36:41.659 4500 TIP 437446 20704 6055997 2024-02-24 17:37:04.612 2024-02-24 17:37:04.612 100 FEE 437457 19044 6055998 2024-02-24 17:37:04.612 2024-02-24 17:37:04.612 900 TIP 437457 7376 6055999 2024-02-24 17:37:06.677 2024-02-24 17:37:06.677 5000 FEE 437514 1603 6056000 2024-02-24 17:37:06.677 2024-02-24 17:37:06.677 45000 TIP 437514 20073 6056017 2024-02-24 17:41:27.521 2024-02-24 17:41:27.521 100 FEE 437268 20555 6056018 2024-02-24 17:41:27.521 2024-02-24 17:41:27.521 900 TIP 437268 16250 6056022 2024-02-24 17:42:18.883 2024-02-24 17:42:18.883 6900 FEE 437454 5387 6056023 2024-02-24 17:42:18.883 2024-02-24 17:42:18.883 62100 TIP 437454 1495 6056040 2024-02-24 17:42:20.816 2024-02-24 17:42:20.816 6900 FEE 437454 13399 6056041 2024-02-24 17:42:20.816 2024-02-24 17:42:20.816 62100 TIP 437454 17714 6056054 2024-02-24 17:42:22.14 2024-02-24 17:42:22.14 6900 FEE 437454 15544 6056055 2024-02-24 17:42:22.14 2024-02-24 17:42:22.14 62100 TIP 437454 1751 6056082 2024-02-24 17:42:36.759 2024-02-24 17:42:36.759 6900 FEE 437454 7903 6056083 2024-02-24 17:42:36.759 2024-02-24 17:42:36.759 62100 TIP 437454 19809 6056096 2024-02-24 17:42:38.173 2024-02-24 17:42:38.173 6900 FEE 437454 18832 6056097 2024-02-24 17:42:38.173 2024-02-24 17:42:38.173 62100 TIP 437454 20272 6056098 2024-02-24 17:42:38.292 2024-02-24 17:42:38.292 6900 FEE 437454 20924 6056099 2024-02-24 17:42:38.292 2024-02-24 17:42:38.292 62100 TIP 437454 18119 6056100 2024-02-24 17:42:38.435 2024-02-24 17:42:38.435 6900 FEE 437454 14295 6056101 2024-02-24 17:42:38.435 2024-02-24 17:42:38.435 62100 TIP 437454 3371 6056102 2024-02-24 17:42:38.574 2024-02-24 17:42:38.574 6900 FEE 437454 5069 6056103 2024-02-24 17:42:38.574 2024-02-24 17:42:38.574 62100 TIP 437454 4570 6056105 2024-02-24 17:42:49.583 2024-02-24 17:42:49.583 21000 FEE 437533 18262 6056106 2024-02-24 17:43:01.349 2024-02-24 17:43:01.349 1000 FEE 437534 20811 6056108 2024-02-24 17:43:41.14 2024-02-24 17:43:41.14 1000 FEE 437535 989 6056114 2024-02-24 17:44:37.257 2024-02-24 17:44:37.257 1000 FEE 437533 21036 6056115 2024-02-24 17:44:37.257 2024-02-24 17:44:37.257 9000 TIP 437533 14225 6056147 2024-02-24 17:48:01.524 2024-02-24 17:48:01.524 1000 FEE 437542 5752 6056185 2024-02-24 17:53:24.51 2024-02-24 17:53:24.51 9000 FEE 437536 2724 6056186 2024-02-24 17:53:24.51 2024-02-24 17:53:24.51 81000 TIP 437536 21458 6055358 2024-02-24 16:38:01.389 2024-02-24 16:38:01.389 2100 FEE 437183 18678 6055359 2024-02-24 16:38:01.389 2024-02-24 16:38:01.389 18900 TIP 437183 15697 6055367 2024-02-24 16:38:07.594 2024-02-24 16:38:07.594 2100 FEE 436967 20129 6055368 2024-02-24 16:38:07.594 2024-02-24 16:38:07.594 18900 TIP 436967 21589 6055387 2024-02-24 16:40:44.379 2024-02-24 16:40:44.379 1000 FEE 437451 928 6055389 2024-02-24 16:41:30.165 2024-02-24 16:41:30.165 1000 FEE 437269 9362 6055390 2024-02-24 16:41:30.165 2024-02-24 16:41:30.165 9000 TIP 437269 14271 6055403 2024-02-24 16:43:30.769 2024-02-24 16:43:30.769 1000 FEE 437346 1959 6055404 2024-02-24 16:43:30.769 2024-02-24 16:43:30.769 9000 TIP 437346 18313 6055408 2024-02-24 16:44:13.716 2024-02-24 16:44:13.716 10000 FEE 433210 6310 6055409 2024-02-24 16:44:13.716 2024-02-24 16:44:13.716 90000 TIP 433210 5387 6055436 2024-02-24 16:46:57.371 2024-02-24 16:46:57.371 1000 FEE 437459 20129 6055491 2024-02-24 16:54:33.272 2024-02-24 16:54:33.272 1000 FEE 437465 12736 6055506 2024-02-24 16:58:17.805 2024-02-24 16:58:17.805 222200 FEE 437465 9450 6055507 2024-02-24 16:58:17.805 2024-02-24 16:58:17.805 1999800 TIP 437465 1003 6055512 2024-02-24 16:59:50.287 2024-02-24 16:59:50.287 2100 FEE 437233 6335 6055513 2024-02-24 16:59:50.287 2024-02-24 16:59:50.287 18900 TIP 437233 3371 6055526 2024-02-24 17:01:24.565 2024-02-24 17:01:24.565 5000 FEE 437362 14280 6055527 2024-02-24 17:01:24.565 2024-02-24 17:01:24.565 45000 TIP 437362 18472 6055528 2024-02-24 17:01:24.754 2024-02-24 17:01:24.754 5000 FEE 437362 21514 6055529 2024-02-24 17:01:24.754 2024-02-24 17:01:24.754 45000 TIP 437362 10944 6055565 2024-02-24 17:02:13.448 2024-02-24 17:02:13.448 1000 FEE 437458 21379 6055566 2024-02-24 17:02:13.448 2024-02-24 17:02:13.448 9000 TIP 437458 2529 6055617 2024-02-24 17:05:45.289 2024-02-24 17:05:45.289 2100 FEE 437427 19996 6055618 2024-02-24 17:05:45.289 2024-02-24 17:05:45.289 18900 TIP 437427 19572 6055622 2024-02-24 17:07:07.527 2024-02-24 17:07:07.527 1000 FEE 437480 16950 6055669 2024-02-24 17:10:29.839 2024-02-24 17:10:29.839 1000 FEE 437485 13406 6055670 2024-02-24 17:10:39.319 2024-02-24 17:10:39.319 1000 FEE 437486 21222 6055703 2024-02-24 17:11:52.865 2024-02-24 17:11:52.865 11100 FEE 437468 19375 6055704 2024-02-24 17:11:52.865 2024-02-24 17:11:52.865 99900 TIP 437468 18526 6055713 2024-02-24 17:12:26.114 2024-02-24 17:12:26.114 0 FEE 437486 9109 6055719 2024-02-24 17:12:30.581 2024-02-24 17:12:30.581 2000 FEE 437233 3518 6055720 2024-02-24 17:12:30.581 2024-02-24 17:12:30.581 18000 TIP 437233 631 6055726 2024-02-24 17:13:26.672 2024-02-24 17:13:26.672 0 FEE 437492 21332 6055730 2024-02-24 17:14:03.73 2024-02-24 17:14:03.73 0 FEE 437493 21503 6055736 2024-02-24 17:15:10.316 2024-02-24 17:15:10.316 1000 FEE 437495 20554 6055763 2024-02-24 17:17:13.953 2024-02-24 17:17:13.953 2100 FEE 437346 2213 6055764 2024-02-24 17:17:13.953 2024-02-24 17:17:13.953 18900 TIP 437346 20190 6055765 2024-02-24 17:17:16.452 2024-02-24 17:17:16.452 2600 FEE 437451 650 6055766 2024-02-24 17:17:16.452 2024-02-24 17:17:16.452 23400 TIP 437451 18016 6055774 2024-02-24 17:17:36.004 2024-02-24 17:17:36.004 5000 FEE 437238 12808 6055775 2024-02-24 17:17:36.004 2024-02-24 17:17:36.004 45000 TIP 437238 19243 6055776 2024-02-24 17:17:50.621 2024-02-24 17:17:50.621 1000 FEE 437498 13399 6055777 2024-02-24 17:17:54.991 2024-02-24 17:17:54.991 5000 FEE 437345 19151 6055778 2024-02-24 17:17:54.991 2024-02-24 17:17:54.991 45000 TIP 437345 19174 6055840 2024-02-24 17:24:05.993 2024-02-24 17:24:05.993 1000 FEE 437511 21044 6055854 2024-02-24 17:24:46.719 2024-02-24 17:24:46.719 1000 FEE 437512 20525 6055861 2024-02-24 17:24:49.315 2024-02-24 17:24:49.315 1000 FEE 437472 15213 6055862 2024-02-24 17:24:49.315 2024-02-24 17:24:49.315 9000 TIP 437472 19569 6055869 2024-02-24 17:25:46.053 2024-02-24 17:25:46.053 1000 FEE 437472 3411 6055870 2024-02-24 17:25:46.053 2024-02-24 17:25:46.053 9000 TIP 437472 20243 6055893 2024-02-24 17:26:35.204 2024-02-24 17:26:35.204 1000 FEE 437472 17209 6055894 2024-02-24 17:26:35.204 2024-02-24 17:26:35.204 9000 TIP 437472 20745 6055899 2024-02-24 17:26:37.984 2024-02-24 17:26:37.984 0 FEE 437513 19531 6055900 2024-02-24 17:26:47.443 2024-02-24 17:26:47.443 1000 POLL 437472 16753 6055944 2024-02-24 17:32:00.295 2024-02-24 17:32:00.295 4000 FEE 437514 20187 6055945 2024-02-24 17:32:00.295 2024-02-24 17:32:00.295 36000 TIP 437514 2724 6055957 2024-02-24 17:35:19.454 2024-02-24 17:35:19.454 0 FEE 437521 18667 6055958 2024-02-24 17:35:26.961 2024-02-24 17:35:26.961 500 FEE 437405 14552 6055959 2024-02-24 17:35:26.961 2024-02-24 17:35:26.961 4500 TIP 437405 19044 6055960 2024-02-24 17:35:27.118 2024-02-24 17:35:27.118 500 FEE 437405 20555 6055961 2024-02-24 17:35:27.118 2024-02-24 17:35:27.118 4500 TIP 437405 2703 6055978 2024-02-24 17:36:11.033 2024-02-24 17:36:11.033 1000 FEE 437527 18815 6055987 2024-02-24 17:36:41 2024-02-24 17:36:41 500 FEE 437446 657 6055988 2024-02-24 17:36:41 2024-02-24 17:36:41 4500 TIP 437446 2065 6056001 2024-02-24 17:37:20.901 2024-02-24 17:37:20.901 1000 FEE 437528 4395 6056013 2024-02-24 17:40:22.906 2024-02-24 17:40:22.906 120000 FEE 437531 18230 6056024 2024-02-24 17:42:19.062 2024-02-24 17:42:19.062 6900 FEE 437454 18667 6056025 2024-02-24 17:42:19.062 2024-02-24 17:42:19.062 62100 TIP 437454 10342 6056032 2024-02-24 17:42:19.645 2024-02-24 17:42:19.645 6900 FEE 437454 21138 6056033 2024-02-24 17:42:19.645 2024-02-24 17:42:19.645 62100 TIP 437454 16350 6056038 2024-02-24 17:42:20.678 2024-02-24 17:42:20.678 6900 FEE 437454 9348 6056039 2024-02-24 17:42:20.678 2024-02-24 17:42:20.678 62100 TIP 437454 19795 6056044 2024-02-24 17:42:21.16 2024-02-24 17:42:21.16 6900 FEE 437454 20062 6056045 2024-02-24 17:42:21.16 2024-02-24 17:42:21.16 62100 TIP 437454 20120 6056050 2024-02-24 17:42:21.798 2024-02-24 17:42:21.798 6900 FEE 437454 16410 6056051 2024-02-24 17:42:21.798 2024-02-24 17:42:21.798 62100 TIP 437454 20710 6056064 2024-02-24 17:42:34.593 2024-02-24 17:42:34.593 6900 FEE 437454 15060 6056065 2024-02-24 17:42:34.593 2024-02-24 17:42:34.593 62100 TIP 437454 19488 6056072 2024-02-24 17:42:35.371 2024-02-24 17:42:35.371 6900 FEE 437454 1705 6056073 2024-02-24 17:42:35.371 2024-02-24 17:42:35.371 62100 TIP 437454 19449 6056088 2024-02-24 17:42:37.106 2024-02-24 17:42:37.106 6900 FEE 437454 937 6056089 2024-02-24 17:42:37.106 2024-02-24 17:42:37.106 62100 TIP 437454 1505 6056090 2024-02-24 17:42:37.255 2024-02-24 17:42:37.255 6900 FEE 437454 12562 6056091 2024-02-24 17:42:37.255 2024-02-24 17:42:37.255 62100 TIP 437454 715 6056094 2024-02-24 17:42:38.013 2024-02-24 17:42:38.013 6900 FEE 437454 21022 6056095 2024-02-24 17:42:38.013 2024-02-24 17:42:38.013 62100 TIP 437454 1564 6056104 2024-02-24 17:42:43.412 2024-02-24 17:42:43.412 1000 FEE 437532 5758 6056128 2024-02-24 17:45:23.348 2024-02-24 17:45:23.348 1300 FEE 437263 2596 6056129 2024-02-24 17:45:23.348 2024-02-24 17:45:23.348 11700 TIP 437263 18635 6056140 2024-02-24 17:46:33.082 2024-02-24 17:46:33.082 10000 FEE 437539 992 6056151 2024-02-24 17:48:08.79 2024-02-24 17:48:08.79 100 FEE 437269 18116 6056152 2024-02-24 17:48:08.79 2024-02-24 17:48:08.79 900 TIP 437269 14381 6056153 2024-02-24 17:48:18.149 2024-02-24 17:48:18.149 2700 FEE 437269 15925 6056154 2024-02-24 17:48:18.149 2024-02-24 17:48:18.149 24300 TIP 437269 12769 6056155 2024-02-24 17:48:18.309 2024-02-24 17:48:18.309 2700 FEE 437269 21131 6056156 2024-02-24 17:48:18.309 2024-02-24 17:48:18.309 24300 TIP 437269 15474 6056173 2024-02-24 17:49:44.588 2024-02-24 17:49:44.588 1000 FEE 437543 5112 6056190 2024-02-24 17:54:07.189 2024-02-24 17:54:07.189 1000 FEE 437547 21485 6056200 2024-02-24 17:56:14.463 2024-02-24 17:56:14.463 2100 FEE 437233 18618 6056201 2024-02-24 17:56:14.463 2024-02-24 17:56:14.463 18900 TIP 437233 10771 6056202 2024-02-24 17:56:15.301 2024-02-24 17:56:15.301 2100 FEE 437276 15588 6056203 2024-02-24 17:56:15.301 2024-02-24 17:56:15.301 18900 TIP 437276 1576 6055398 2024-02-24 16:41:57.585 2024-02-24 16:41:57.585 1000 FEE 437370 19147 6055399 2024-02-24 16:41:57.585 2024-02-24 16:41:57.585 9000 TIP 437370 9433 6055428 2024-02-24 16:46:17.029 2024-02-24 16:46:17.029 2100 FEE 437445 21453 6055429 2024-02-24 16:46:17.029 2024-02-24 16:46:17.029 18900 TIP 437445 19795 6055435 2024-02-24 16:46:48.839 2024-02-24 16:46:48.839 1000 FEE 437458 15337 6055449 2024-02-24 16:48:23.187 2024-02-24 16:48:23.187 2100 FEE 437453 17602 6055450 2024-02-24 16:48:23.187 2024-02-24 16:48:23.187 18900 TIP 437453 20500 6055467 2024-02-24 16:49:53.165 2024-02-24 16:49:53.165 2100 FEE 437269 21482 6055468 2024-02-24 16:49:53.165 2024-02-24 16:49:53.165 18900 TIP 437269 19662 6055472 2024-02-24 16:50:45.768 2024-02-24 16:50:45.768 2100 FEE 437218 2639 6055473 2024-02-24 16:50:45.768 2024-02-24 16:50:45.768 18900 TIP 437218 11789 6055474 2024-02-24 16:50:52.34 2024-02-24 16:50:52.34 1000 FEE 437462 12507 6055479 2024-02-24 16:53:04.676 2024-02-24 16:53:04.676 100 FEE 437457 636 6055480 2024-02-24 16:53:04.676 2024-02-24 16:53:04.676 900 TIP 437457 19980 6055510 2024-02-24 16:59:48.196 2024-02-24 16:59:48.196 2100 FEE 437269 16988 6055511 2024-02-24 16:59:48.196 2024-02-24 16:59:48.196 18900 TIP 437269 12507 6055520 2024-02-24 17:00:13.08 2024-02-24 17:00:13.08 0 FEE 437465 15556 6055530 2024-02-24 17:01:24.973 2024-02-24 17:01:24.973 5000 FEE 437362 21033 6055531 2024-02-24 17:01:24.973 2024-02-24 17:01:24.973 45000 TIP 437362 1454 6055538 2024-02-24 17:01:26.713 2024-02-24 17:01:26.713 5000 FEE 437407 985 6055539 2024-02-24 17:01:26.713 2024-02-24 17:01:26.713 45000 TIP 437407 2285 6055541 2024-02-24 17:01:34.122 2024-02-24 17:01:34.122 2100 FEE 437218 20310 6055542 2024-02-24 17:01:34.122 2024-02-24 17:01:34.122 18900 TIP 437218 5293 6055545 2024-02-24 17:01:53.707 2024-02-24 17:01:53.707 0 FEE 437473 16149 6055548 2024-02-24 17:02:01.341 2024-02-24 17:02:01.341 1000 FEE 437459 19888 6055549 2024-02-24 17:02:01.341 2024-02-24 17:02:01.341 9000 TIP 437459 9809 6055559 2024-02-24 17:02:11.487 2024-02-24 17:02:11.487 1000 FEE 437458 18930 6055560 2024-02-24 17:02:11.487 2024-02-24 17:02:11.487 9000 TIP 437458 960 6055561 2024-02-24 17:02:11.975 2024-02-24 17:02:11.975 1000 FEE 437458 19615 6055562 2024-02-24 17:02:11.975 2024-02-24 17:02:11.975 9000 TIP 437458 5173 6055568 2024-02-24 17:02:56.501 2024-02-24 17:02:56.501 10000 FEE 437238 1320 6055569 2024-02-24 17:02:56.501 2024-02-24 17:02:56.501 90000 TIP 437238 2309 6055576 2024-02-24 17:02:58.858 2024-02-24 17:02:58.858 10000 FEE 437238 1773 6055577 2024-02-24 17:02:58.858 2024-02-24 17:02:58.858 90000 TIP 437238 13927 6055606 2024-02-24 17:04:32.373 2024-02-24 17:04:32.373 1100 FEE 437203 2703 6055607 2024-02-24 17:04:32.373 2024-02-24 17:04:32.373 9900 TIP 437203 6383 6055623 2024-02-24 17:07:15.103 2024-02-24 17:07:15.103 0 FEE 437480 19435 6055624 2024-02-24 17:07:20.236 2024-02-24 17:07:20.236 66600 FEE 437477 21430 6055625 2024-02-24 17:07:20.236 2024-02-24 17:07:20.236 599400 TIP 437477 19966 6055626 2024-02-24 17:07:32.403 2024-02-24 17:07:32.403 1700 FEE 437475 19462 6055627 2024-02-24 17:07:32.403 2024-02-24 17:07:32.403 15300 TIP 437475 1245 6055632 2024-02-24 17:08:34.202 2024-02-24 17:08:34.202 1000 FEE 437481 1495 6055635 2024-02-24 17:08:41.084 2024-02-24 17:08:41.084 10000 FEE 437482 10771 6055644 2024-02-24 17:08:57.075 2024-02-24 17:08:57.075 3300 FEE 437278 21418 6055557 2024-02-24 17:02:11.034 2024-02-24 17:02:11.034 1000 FEE 437458 1245 6055558 2024-02-24 17:02:11.034 2024-02-24 17:02:11.034 9000 TIP 437458 20110 6055582 2024-02-24 17:03:00.09 2024-02-24 17:03:00.09 10000 FEE 437238 21485 6055583 2024-02-24 17:03:00.09 2024-02-24 17:03:00.09 90000 TIP 437238 12268 6055584 2024-02-24 17:03:00.503 2024-02-24 17:03:00.503 10000 FEE 437238 3439 6055585 2024-02-24 17:03:00.503 2024-02-24 17:03:00.503 90000 TIP 437238 9166 6055586 2024-02-24 17:03:01.105 2024-02-24 17:03:01.105 10000 FEE 437238 2609 6055587 2024-02-24 17:03:01.105 2024-02-24 17:03:01.105 90000 TIP 437238 7558 6055598 2024-02-24 17:03:35.14 2024-02-24 17:03:35.14 1000 POLL 437472 19030 6055612 2024-02-24 17:05:10.554 2024-02-24 17:05:10.554 0 FEE 437468 20018 6055613 2024-02-24 17:05:17.853 2024-02-24 17:05:17.853 1100 FEE 437081 11523 6055614 2024-02-24 17:05:17.853 2024-02-24 17:05:17.853 9900 TIP 437081 19976 6055633 2024-02-24 17:08:40.716 2024-02-24 17:08:40.716 1000 FEE 437455 951 6055634 2024-02-24 17:08:40.716 2024-02-24 17:08:40.716 9000 TIP 437455 11776 6055683 2024-02-24 17:11:20.647 2024-02-24 17:11:20.647 3300 FEE 436556 4323 6055684 2024-02-24 17:11:20.647 2024-02-24 17:11:20.647 29700 TIP 436556 10668 6055690 2024-02-24 17:11:36.585 2024-02-24 17:11:36.585 2100 FEE 437482 20562 6055691 2024-02-24 17:11:36.585 2024-02-24 17:11:36.585 18900 TIP 437482 20751 6055699 2024-02-24 17:11:51.283 2024-02-24 17:11:51.283 1000 FEE 437478 2039 6055700 2024-02-24 17:11:51.283 2024-02-24 17:11:51.283 9000 TIP 437478 19615 6055701 2024-02-24 17:11:51.555 2024-02-24 17:11:51.555 1000 FEE 437478 16424 6055702 2024-02-24 17:11:51.555 2024-02-24 17:11:51.555 9000 TIP 437478 13927 6055717 2024-02-24 17:12:27.075 2024-02-24 17:12:27.075 900 FEE 436714 2514 6055718 2024-02-24 17:12:27.075 2024-02-24 17:12:27.075 8100 TIP 436714 15719 6055767 2024-02-24 17:17:16.512 2024-02-24 17:17:16.512 2100 FEE 437322 3439 6055768 2024-02-24 17:17:16.512 2024-02-24 17:17:16.512 18900 TIP 437322 9874 6055780 2024-02-24 17:18:15.112 2024-02-24 17:18:15.112 1000 POLL 437472 7668 6055793 2024-02-24 17:20:13.77 2024-02-24 17:20:13.77 2100 FEE 437238 5444 6055794 2024-02-24 17:20:13.77 2024-02-24 17:20:13.77 18900 TIP 437238 15703 6055802 2024-02-24 17:20:23.317 2024-02-24 17:20:23.317 2100 FEE 437408 5128 6055803 2024-02-24 17:20:23.317 2024-02-24 17:20:23.317 18900 TIP 437408 7869 6055807 2024-02-24 17:20:34.284 2024-02-24 17:20:34.284 2100 FEE 437370 21329 6055808 2024-02-24 17:20:34.284 2024-02-24 17:20:34.284 18900 TIP 437370 20084 6055857 2024-02-24 17:24:48.095 2024-02-24 17:24:48.095 1000 FEE 437472 2576 6055858 2024-02-24 17:24:48.095 2024-02-24 17:24:48.095 9000 TIP 437472 13169 6055890 2024-02-24 17:26:20.386 2024-02-24 17:26:20.386 1000 FEE 437513 15526 6055897 2024-02-24 17:26:37.143 2024-02-24 17:26:37.143 1000 FEE 437472 20018 6055898 2024-02-24 17:26:37.143 2024-02-24 17:26:37.143 9000 TIP 437472 1094 6055912 2024-02-24 17:28:30.642 2024-02-24 17:28:30.642 1000 FEE 437515 18664 6055913 2024-02-24 17:28:36.92 2024-02-24 17:28:36.92 1000 FEE 437516 706 6055918 2024-02-24 17:29:47.696 2024-02-24 17:29:47.696 1000 FEE 437517 20464 6055920 2024-02-24 17:30:37.753 2024-02-24 17:30:37.753 1000 FEE 437518 2098 6055925 2024-02-24 17:30:55.957 2024-02-24 17:30:55.957 0 FEE 437518 16706 6055936 2024-02-24 17:31:27.205 2024-02-24 17:31:27.205 1000 FEE 437519 20981 6055967 2024-02-24 17:35:49.535 2024-02-24 17:35:49.535 500 FEE 437430 10094 6055645 2024-02-24 17:08:57.075 2024-02-24 17:08:57.075 29700 TIP 437278 1652 6055650 2024-02-24 17:09:26.439 2024-02-24 17:09:26.439 100000 DONT_LIKE_THIS 437357 8713 6055658 2024-02-24 17:09:43.904 2024-02-24 17:09:43.904 2100 FEE 437385 3400 6055659 2024-02-24 17:09:43.904 2024-02-24 17:09:43.904 18900 TIP 437385 12721 6055679 2024-02-24 17:11:16.388 2024-02-24 17:11:16.388 2100 FEE 437422 664 6055680 2024-02-24 17:11:16.388 2024-02-24 17:11:16.388 18900 TIP 437422 20045 6055681 2024-02-24 17:11:16.592 2024-02-24 17:11:16.592 3300 FEE 436901 1224 6055682 2024-02-24 17:11:16.592 2024-02-24 17:11:16.592 29700 TIP 436901 20436 6055685 2024-02-24 17:11:22.856 2024-02-24 17:11:22.856 1000 FEE 437488 12220 6055709 2024-02-24 17:12:00.466 2024-02-24 17:12:00.466 9000 FEE 436839 20911 6055710 2024-02-24 17:12:00.466 2024-02-24 17:12:00.466 81000 TIP 436839 21249 6055731 2024-02-24 17:14:34.934 2024-02-24 17:14:34.934 21000 DONT_LIKE_THIS 437488 1051 6055733 2024-02-24 17:14:38.938 2024-02-24 17:14:38.938 0 FEE 437493 5500 6055737 2024-02-24 17:15:17.238 2024-02-24 17:15:17.238 3300 FEE 436750 673 6055738 2024-02-24 17:15:17.238 2024-02-24 17:15:17.238 29700 TIP 436750 9476 6055749 2024-02-24 17:16:19.016 2024-02-24 17:16:19.016 21000 DONT_LIKE_THIS 437491 20979 6055811 2024-02-24 17:20:38.013 2024-02-24 17:20:38.013 2100 FEE 437176 4474 6055812 2024-02-24 17:20:38.013 2024-02-24 17:20:38.013 18900 TIP 437176 18423 6055822 2024-02-24 17:21:20.243 2024-02-24 17:21:20.243 0 FEE 437505 14278 6055827 2024-02-24 17:22:02.63 2024-02-24 17:22:02.63 2100 FEE 437502 21044 6055828 2024-02-24 17:22:02.63 2024-02-24 17:22:02.63 18900 TIP 437502 21136 6055830 2024-02-24 17:22:13.502 2024-02-24 17:22:13.502 1000 FEE 437508 11423 6055846 2024-02-24 17:24:45.155 2024-02-24 17:24:45.155 1000 FEE 437472 700 6055847 2024-02-24 17:24:45.155 2024-02-24 17:24:45.155 9000 TIP 437472 13921 6055848 2024-02-24 17:24:45.674 2024-02-24 17:24:45.674 1000 FEE 437472 13055 6055849 2024-02-24 17:24:45.674 2024-02-24 17:24:45.674 9000 TIP 437472 10280 6055863 2024-02-24 17:24:50.741 2024-02-24 17:24:50.741 2100 FEE 437233 18231 6055864 2024-02-24 17:24:50.741 2024-02-24 17:24:50.741 18900 TIP 437233 21413 6055873 2024-02-24 17:25:48.211 2024-02-24 17:25:48.211 1000 FEE 437472 17392 6055874 2024-02-24 17:25:48.211 2024-02-24 17:25:48.211 9000 TIP 437472 11522 6055883 2024-02-24 17:25:50.78 2024-02-24 17:25:50.78 1000 FEE 437472 21228 6055884 2024-02-24 17:25:50.78 2024-02-24 17:25:50.78 9000 TIP 437472 1221 6055911 2024-02-24 17:28:23.929 2024-02-24 17:28:23.929 10000 FEE 437514 18667 6055927 2024-02-24 17:31:10.146 2024-02-24 17:31:10.146 0 FEE 437518 14657 6055934 2024-02-24 17:31:23.43 2024-02-24 17:31:23.43 700 FEE 437441 18909 6055935 2024-02-24 17:31:23.43 2024-02-24 17:31:23.43 6300 TIP 437441 2327 6055937 2024-02-24 17:31:45.296 2024-02-24 17:31:45.296 1000 FEE 437520 18533 6055938 2024-02-24 17:31:46.302 2024-02-24 17:31:46.302 6900 FEE 437517 12356 6055939 2024-02-24 17:31:46.302 2024-02-24 17:31:46.302 62100 TIP 437517 627 6055953 2024-02-24 17:34:55.863 2024-02-24 17:34:55.863 700 FEE 437353 18311 6055954 2024-02-24 17:34:55.863 2024-02-24 17:34:55.863 6300 TIP 437353 12175 6055965 2024-02-24 17:35:49.393 2024-02-24 17:35:49.393 500 FEE 437430 21455 6055966 2024-02-24 17:35:49.393 2024-02-24 17:35:49.393 4500 TIP 437430 2232 6055995 2024-02-24 17:36:51.187 2024-02-24 17:36:51.187 0 FEE 437521 5069 6056006 2024-02-24 17:37:39.434 2024-02-24 17:37:39.434 6900 FEE 437519 14260 6056007 2024-02-24 17:37:39.434 2024-02-24 17:37:39.434 62100 TIP 437519 10342 6056034 2024-02-24 17:42:20.471 2024-02-24 17:42:20.471 6900 FEE 437454 13878 6056035 2024-02-24 17:42:20.471 2024-02-24 17:42:20.471 62100 TIP 437454 19812 6056138 2024-02-24 17:46:03.731 2024-02-24 17:46:03.731 1000 FEE 437538 5444 6056144 2024-02-24 17:47:33.117 2024-02-24 17:47:33.117 210000 FEE 437541 2293 6056193 2024-02-24 17:54:50.767 2024-02-24 17:54:50.767 0 FEE 437547 1010 6056262 2024-02-24 18:03:40.662 2024-02-24 18:03:40.662 23100 FEE 437512 12483 6056263 2024-02-24 18:03:40.662 2024-02-24 18:03:40.662 207900 TIP 437512 12218 6056293 2024-02-24 18:05:33.262 2024-02-24 18:05:33.262 3300 FEE 437425 635 6056294 2024-02-24 18:05:33.262 2024-02-24 18:05:33.262 29700 TIP 437425 18170 6056313 2024-02-24 18:05:40.817 2024-02-24 18:05:40.817 100 FEE 437552 18941 6056314 2024-02-24 18:05:40.817 2024-02-24 18:05:40.817 900 TIP 437552 17519 6056315 2024-02-24 18:05:41.185 2024-02-24 18:05:41.185 100 FEE 437552 11996 6056316 2024-02-24 18:05:41.185 2024-02-24 18:05:41.185 900 TIP 437552 1773 6056365 2024-02-24 18:09:29.378 2024-02-24 18:09:29.378 500 FEE 437512 13878 6056366 2024-02-24 18:09:29.378 2024-02-24 18:09:29.378 4500 TIP 437512 19938 6056367 2024-02-24 18:09:29.53 2024-02-24 18:09:29.53 3300 FEE 437337 7899 6056368 2024-02-24 18:09:29.53 2024-02-24 18:09:29.53 29700 TIP 437337 19924 6056389 2024-02-24 18:09:32.736 2024-02-24 18:09:32.736 500 FEE 437233 21254 6056390 2024-02-24 18:09:32.736 2024-02-24 18:09:32.736 4500 TIP 437233 20023 6056420 2024-02-24 18:12:06.486 2024-02-24 18:12:06.486 1000 FEE 437562 3456 6056488 2024-02-24 18:26:47.588 2024-02-24 18:26:47.588 5000 FEE 389418 19527 6055665 2024-02-24 17:10:16.236 2024-02-24 17:10:16.236 100 FEE 437301 15088 6055666 2024-02-24 17:10:16.236 2024-02-24 17:10:16.236 900 TIP 437301 5701 6055667 2024-02-24 17:10:16.508 2024-02-24 17:10:16.508 900 FEE 437301 3506 6055668 2024-02-24 17:10:16.508 2024-02-24 17:10:16.508 8100 TIP 437301 5455 6055695 2024-02-24 17:11:50.549 2024-02-24 17:11:50.549 1000 FEE 437478 2710 6055696 2024-02-24 17:11:50.549 2024-02-24 17:11:50.549 9000 TIP 437478 21424 6055697 2024-02-24 17:11:50.929 2024-02-24 17:11:50.929 1000 FEE 437478 10519 6055698 2024-02-24 17:11:50.929 2024-02-24 17:11:50.929 9000 TIP 437478 10771 6055714 2024-02-24 17:12:26.74 2024-02-24 17:12:26.74 100 FEE 436714 1389 6055715 2024-02-24 17:12:26.74 2024-02-24 17:12:26.74 900 TIP 436714 4304 6055750 2024-02-24 17:16:29.435 2024-02-24 17:16:29.435 2100 FEE 437342 19403 6055751 2024-02-24 17:16:29.435 2024-02-24 17:16:29.435 18900 TIP 437342 6798 6055760 2024-02-24 17:16:54.979 2024-02-24 17:16:54.979 2100 FEE 437356 19796 6055761 2024-02-24 17:16:54.979 2024-02-24 17:16:54.979 18900 TIP 437356 7979 6055770 2024-02-24 17:17:23.91 2024-02-24 17:17:23.91 2100 FEE 437310 21588 6055771 2024-02-24 17:17:23.91 2024-02-24 17:17:23.91 18900 TIP 437310 16424 6055784 2024-02-24 17:19:06.968 2024-02-24 17:19:06.968 1000 FEE 437501 998 6055785 2024-02-24 17:19:13.366 2024-02-24 17:19:13.366 700 FEE 437338 15833 6055786 2024-02-24 17:19:13.366 2024-02-24 17:19:13.366 6300 TIP 437338 8376 6055816 2024-02-24 17:20:55.178 2024-02-24 17:20:55.178 1000 FEE 437506 1030 6055850 2024-02-24 17:24:46.214 2024-02-24 17:24:46.214 1000 FEE 437472 19506 6055851 2024-02-24 17:24:46.214 2024-02-24 17:24:46.214 9000 TIP 437472 20337 6055855 2024-02-24 17:24:47.397 2024-02-24 17:24:47.397 1000 FEE 437472 16788 6055856 2024-02-24 17:24:47.397 2024-02-24 17:24:47.397 9000 TIP 437472 10690 6055867 2024-02-24 17:25:44.594 2024-02-24 17:25:44.594 100000 FEE 437269 19292 6055868 2024-02-24 17:25:44.594 2024-02-24 17:25:44.594 900000 TIP 437269 2459 6055885 2024-02-24 17:25:51.388 2024-02-24 17:25:51.388 1000 FEE 437472 21395 6055886 2024-02-24 17:25:51.388 2024-02-24 17:25:51.388 9000 TIP 437472 1959 6055887 2024-02-24 17:26:00.756 2024-02-24 17:26:00.756 0 FEE 437506 18387 6055888 2024-02-24 17:26:01.534 2024-02-24 17:26:01.534 1000 POLL 437472 2151 6055895 2024-02-24 17:26:36.421 2024-02-24 17:26:36.421 2000 FEE 437472 18828 6055896 2024-02-24 17:26:36.421 2024-02-24 17:26:36.421 18000 TIP 437472 640 6055909 2024-02-24 17:28:12.31 2024-02-24 17:28:12.31 700 FEE 437441 19446 6055910 2024-02-24 17:28:12.31 2024-02-24 17:28:12.31 6300 TIP 437441 987 6055916 2024-02-24 17:29:37.639 2024-02-24 17:29:37.639 1000 FEE 437269 18751 6055917 2024-02-24 17:29:37.639 2024-02-24 17:29:37.639 9000 TIP 437269 20454 6055947 2024-02-24 17:32:09.45 2024-02-24 17:32:09.45 4000 FEE 437502 13878 6055948 2024-02-24 17:32:09.45 2024-02-24 17:32:09.45 36000 TIP 437502 20509 6055951 2024-02-24 17:34:09.489 2024-02-24 17:34:09.489 1000 FEE 437521 3544 6055962 2024-02-24 17:35:28.504 2024-02-24 17:35:28.504 1000 FEE 437405 19910 6055963 2024-02-24 17:35:28.504 2024-02-24 17:35:28.504 9000 TIP 437405 16193 6055976 2024-02-24 17:36:06.229 2024-02-24 17:36:06.229 1000 FEE 437493 19996 6055977 2024-02-24 17:36:06.229 2024-02-24 17:36:06.229 9000 TIP 437493 18068 6055991 2024-02-24 17:36:41.326 2024-02-24 17:36:41.326 500 FEE 437446 9758 6055992 2024-02-24 17:36:41.326 2024-02-24 17:36:41.326 4500 TIP 437446 17148 6056003 2024-02-24 17:37:34.984 2024-02-24 17:37:34.984 0 FEE 437529 19976 6056030 2024-02-24 17:42:19.522 2024-02-24 17:42:19.522 6900 FEE 437454 5637 6056031 2024-02-24 17:42:19.522 2024-02-24 17:42:19.522 62100 TIP 437454 12265 6056046 2024-02-24 17:42:21.284 2024-02-24 17:42:21.284 6900 FEE 437454 8037 6056047 2024-02-24 17:42:21.284 2024-02-24 17:42:21.284 62100 TIP 437454 12821 6056048 2024-02-24 17:42:21.408 2024-02-24 17:42:21.408 6900 FEE 437454 992 6056049 2024-02-24 17:42:21.408 2024-02-24 17:42:21.408 62100 TIP 437454 17014 6056056 2024-02-24 17:42:22.263 2024-02-24 17:42:22.263 6900 FEE 437454 7746 6056057 2024-02-24 17:42:22.263 2024-02-24 17:42:22.263 62100 TIP 437454 19890 6056066 2024-02-24 17:42:34.805 2024-02-24 17:42:34.805 6900 FEE 437454 9150 6056067 2024-02-24 17:42:34.805 2024-02-24 17:42:34.805 62100 TIP 437454 15273 6056070 2024-02-24 17:42:35.181 2024-02-24 17:42:35.181 6900 FEE 437454 667 6056071 2024-02-24 17:42:35.181 2024-02-24 17:42:35.181 62100 TIP 437454 20258 6056092 2024-02-24 17:42:37.681 2024-02-24 17:42:37.681 13800 FEE 437454 18667 6056093 2024-02-24 17:42:37.681 2024-02-24 17:42:37.681 124200 TIP 437454 4048 6056133 2024-02-24 17:45:51.304 2024-02-24 17:45:51.304 1000 FEE 437533 21482 6056134 2024-02-24 17:45:51.304 2024-02-24 17:45:51.304 9000 TIP 437533 16680 6056135 2024-02-24 17:45:54.076 2024-02-24 17:45:54.076 1000 FEE 437533 3683 6056136 2024-02-24 17:45:54.076 2024-02-24 17:45:54.076 9000 TIP 437533 14258 6056170 2024-02-24 17:48:56.652 2024-02-24 17:48:56.652 1000 FEE 436752 21104 6056171 2024-02-24 17:48:56.652 2024-02-24 17:48:56.652 9000 TIP 436752 13854 6056177 2024-02-24 17:50:48.764 2024-02-24 17:50:48.764 10000 FEE 437544 18359 6056183 2024-02-24 17:53:23.948 2024-02-24 17:53:23.948 900 FEE 437536 20225 6056184 2024-02-24 17:53:23.948 2024-02-24 17:53:23.948 8100 TIP 437536 14905 6056222 2024-02-24 17:56:27.268 2024-02-24 17:56:27.268 100000 FEE 437548 14037 6056239 2024-02-24 17:57:00.054 2024-02-24 17:57:00.054 6900 FEE 437541 8541 6056240 2024-02-24 17:57:00.054 2024-02-24 17:57:00.054 62100 TIP 437541 20280 6056247 2024-02-24 17:58:05.474 2024-02-24 17:58:05.474 1000 FEE 437549 11145 6056269 2024-02-24 18:04:18.351 2024-02-24 18:04:18.351 3300 FEE 437233 20573 6056270 2024-02-24 18:04:18.351 2024-02-24 18:04:18.351 29700 TIP 437233 3478 6056336 2024-02-24 18:06:34.268 2024-02-24 18:06:34.268 3300 FEE 436720 21563 6056337 2024-02-24 18:06:34.268 2024-02-24 18:06:34.268 29700 TIP 436720 20551 6056379 2024-02-24 18:09:30.395 2024-02-24 18:09:30.395 3300 FEE 437337 19320 6056380 2024-02-24 18:09:30.395 2024-02-24 18:09:30.395 29700 TIP 437337 21021 6056405 2024-02-24 18:09:34.487 2024-02-24 18:09:34.487 3300 FEE 437337 9551 6056406 2024-02-24 18:09:34.487 2024-02-24 18:09:34.487 29700 TIP 437337 18344 6056407 2024-02-24 18:09:35.011 2024-02-24 18:09:35.011 3300 FEE 437337 13782 6056408 2024-02-24 18:09:35.011 2024-02-24 18:09:35.011 29700 TIP 437337 993 6056442 2024-02-24 18:15:18.204 2024-02-24 18:15:18.204 500 FEE 437370 19759 6056443 2024-02-24 18:15:18.204 2024-02-24 18:15:18.204 4500 TIP 437370 20073 6056466 2024-02-24 18:19:31.105 2024-02-24 18:19:31.105 1000 FEE 437269 2577 6056467 2024-02-24 18:19:31.105 2024-02-24 18:19:31.105 9000 TIP 437269 19622 6056505 2024-02-24 18:28:33.99 2024-02-24 18:28:33.99 1000 FEE 437448 738 6056506 2024-02-24 18:28:33.99 2024-02-24 18:28:33.99 9000 TIP 437448 10094 6056507 2024-02-24 18:28:52.716 2024-02-24 18:28:52.716 100 FEE 437454 9366 6056508 2024-02-24 18:28:52.716 2024-02-24 18:28:52.716 900 TIP 437454 691 6056534 2024-02-24 18:31:13.202 2024-02-24 18:31:13.202 1000 FEE 437562 2176 6056535 2024-02-24 18:31:13.202 2024-02-24 18:31:13.202 9000 TIP 437562 1173 6056572 2024-02-24 18:35:33.982 2024-02-24 18:35:33.982 1000 FEE 437233 2213 6056573 2024-02-24 18:35:33.982 2024-02-24 18:35:33.982 9000 TIP 437233 15386 6056592 2024-02-24 18:36:17.355 2024-02-24 18:36:17.355 1000 FEE 437270 1094 6056593 2024-02-24 18:36:17.355 2024-02-24 18:36:17.355 9000 TIP 437270 20799 6056607 2024-02-24 18:37:34.372 2024-02-24 18:37:34.372 4200 FEE 437403 19105 6056608 2024-02-24 18:37:34.372 2024-02-24 18:37:34.372 37800 TIP 437403 18941 6056622 2024-02-24 18:38:57.966 2024-02-24 18:38:57.966 1000 FEE 383888 5703 6056623 2024-02-24 18:38:57.966 2024-02-24 18:38:57.966 9000 TIP 383888 21180 6056635 2024-02-24 18:39:01.218 2024-02-24 18:39:01.218 1000 FEE 383888 13046 6056636 2024-02-24 18:39:01.218 2024-02-24 18:39:01.218 9000 TIP 383888 11938 6056659 2024-02-24 18:40:53.967 2024-02-24 18:40:53.967 1000 FEE 437577 2309 6056662 2024-02-24 18:41:37.195 2024-02-24 18:41:37.195 1000 FEE 437579 19911 6056678 2024-02-24 18:42:48.676 2024-02-24 18:42:48.676 28800 FEE 437218 18314 6055724 2024-02-24 17:13:25.725 2024-02-24 17:13:25.725 100 FEE 437419 20775 6055725 2024-02-24 17:13:25.725 2024-02-24 17:13:25.725 900 TIP 437419 14688 6055732 2024-02-24 17:14:37.762 2024-02-24 17:14:37.762 1000 FEE 437494 19759 6055739 2024-02-24 17:15:25.514 2024-02-24 17:15:25.514 1000 FEE 437496 9335 6055758 2024-02-24 17:16:35.579 2024-02-24 17:16:35.579 2100 FEE 437337 11866 6055759 2024-02-24 17:16:35.579 2024-02-24 17:16:35.579 18900 TIP 437337 20687 6055769 2024-02-24 17:17:17.142 2024-02-24 17:17:17.142 1000 FEE 437497 18310 6055772 2024-02-24 17:17:28.743 2024-02-24 17:17:28.743 700 FEE 437333 17673 6055773 2024-02-24 17:17:28.743 2024-02-24 17:17:28.743 6300 TIP 437333 14905 6055781 2024-02-24 17:18:22.13 2024-02-24 17:18:22.13 1000 FEE 437499 9084 6055789 2024-02-24 17:19:26.356 2024-02-24 17:19:26.356 700 FEE 437376 720 6055790 2024-02-24 17:19:26.356 2024-02-24 17:19:26.356 6300 TIP 437376 2203 6055791 2024-02-24 17:19:46.923 2024-02-24 17:19:46.923 100000 FEE 437502 10611 6055795 2024-02-24 17:20:16.134 2024-02-24 17:20:16.134 1000 FEE 437503 19500 6055809 2024-02-24 17:20:34.688 2024-02-24 17:20:34.688 700 FEE 437441 21387 6055810 2024-02-24 17:20:34.688 2024-02-24 17:20:34.688 6300 TIP 437441 11329 6055815 2024-02-24 17:20:53.37 2024-02-24 17:20:53.37 1000 FEE 437505 17523 6055818 2024-02-24 17:21:05.135 2024-02-24 17:21:05.135 0 FEE 437502 8423 6055836 2024-02-24 17:23:53.755 2024-02-24 17:23:53.755 2100 FEE 437233 21343 6055837 2024-02-24 17:23:53.755 2024-02-24 17:23:53.755 18900 TIP 437233 19403 6055871 2024-02-24 17:25:46.666 2024-02-24 17:25:46.666 1000 FEE 437472 3304 6055872 2024-02-24 17:25:46.666 2024-02-24 17:25:46.666 9000 TIP 437472 21233 6055891 2024-02-24 17:26:34.802 2024-02-24 17:26:34.802 1000 FEE 437472 19087 6055892 2024-02-24 17:26:34.802 2024-02-24 17:26:34.802 9000 TIP 437472 649 6055902 2024-02-24 17:27:48.29 2024-02-24 17:27:48.29 10000 FEE 437502 713 6055903 2024-02-24 17:27:48.29 2024-02-24 17:27:48.29 90000 TIP 437502 19471 6055904 2024-02-24 17:27:57.743 2024-02-24 17:27:57.743 2600 FEE 437176 11417 6055905 2024-02-24 17:27:57.743 2024-02-24 17:27:57.743 23400 TIP 437176 12024 6055914 2024-02-24 17:28:45.628 2024-02-24 17:28:45.628 0 FEE 437516 726 6055923 2024-02-24 17:30:51.03 2024-02-24 17:30:51.03 4000 FEE 437489 5852 6055924 2024-02-24 17:30:51.03 2024-02-24 17:30:51.03 36000 TIP 437489 1488 6055930 2024-02-24 17:31:22.466 2024-02-24 17:31:22.466 700 FEE 437441 14818 6055931 2024-02-24 17:31:22.466 2024-02-24 17:31:22.466 6300 TIP 437441 1354 6055970 2024-02-24 17:35:51.719 2024-02-24 17:35:51.719 1000 FEE 437526 4173 6055981 2024-02-24 17:36:30.391 2024-02-24 17:36:30.391 700 FEE 437515 18679 6055982 2024-02-24 17:36:30.391 2024-02-24 17:36:30.391 6300 TIP 437515 5694 6055983 2024-02-24 17:36:30.495 2024-02-24 17:36:30.495 700 FEE 437515 5794 6055984 2024-02-24 17:36:30.495 2024-02-24 17:36:30.495 6300 TIP 437515 14906 6056010 2024-02-24 17:38:37.212 2024-02-24 17:38:37.212 21000 DONT_LIKE_THIS 437522 18314 6056015 2024-02-24 17:41:04.29 2024-02-24 17:41:04.29 4000 FEE 437531 20470 6056016 2024-02-24 17:41:04.29 2024-02-24 17:41:04.29 36000 TIP 437531 1773 6056020 2024-02-24 17:42:18.716 2024-02-24 17:42:18.716 6900 FEE 437454 21455 6056021 2024-02-24 17:42:18.716 2024-02-24 17:42:18.716 62100 TIP 437454 4035 6056026 2024-02-24 17:42:19.209 2024-02-24 17:42:19.209 6900 FEE 437454 3979 6056027 2024-02-24 17:42:19.209 2024-02-24 17:42:19.209 62100 TIP 437454 18829 6056052 2024-02-24 17:42:21.992 2024-02-24 17:42:21.992 6900 FEE 437454 636 6056053 2024-02-24 17:42:21.992 2024-02-24 17:42:21.992 62100 TIP 437454 16704 6056076 2024-02-24 17:42:36.412 2024-02-24 17:42:36.412 6900 FEE 437454 12097 6056077 2024-02-24 17:42:36.412 2024-02-24 17:42:36.412 62100 TIP 437454 19857 6056078 2024-02-24 17:42:36.439 2024-02-24 17:42:36.439 20700 FEE 437454 658 6056079 2024-02-24 17:42:36.439 2024-02-24 17:42:36.439 186300 TIP 437454 21131 6056116 2024-02-24 17:44:38.196 2024-02-24 17:44:38.196 1000 FEE 437533 16939 6056117 2024-02-24 17:44:38.196 2024-02-24 17:44:38.196 9000 TIP 437533 1162 6056122 2024-02-24 17:44:57.758 2024-02-24 17:44:57.758 1000 FEE 437536 21314 6056130 2024-02-24 17:45:38.899 2024-02-24 17:45:38.899 1000 FEE 437537 641 6056175 2024-02-24 17:50:10.497 2024-02-24 17:50:10.497 100 FEE 437531 10493 6056176 2024-02-24 17:50:10.497 2024-02-24 17:50:10.497 900 TIP 437531 3371 6056181 2024-02-24 17:53:23.762 2024-02-24 17:53:23.762 100 FEE 437536 1291 6056182 2024-02-24 17:53:23.762 2024-02-24 17:53:23.762 900 TIP 437536 21514 6056196 2024-02-24 17:56:13.055 2024-02-24 17:56:13.055 2100 FEE 437269 16679 6056197 2024-02-24 17:56:13.055 2024-02-24 17:56:13.055 18900 TIP 437269 12516 6056198 2024-02-24 17:56:14.367 2024-02-24 17:56:14.367 2100 FEE 437218 16145 6056199 2024-02-24 17:56:14.367 2024-02-24 17:56:14.367 18900 TIP 437218 21338 6056225 2024-02-24 17:56:32.998 2024-02-24 17:56:32.998 2100 FEE 437533 12561 6056226 2024-02-24 17:56:32.998 2024-02-24 17:56:32.998 18900 TIP 437533 8162 6056231 2024-02-24 17:56:48.066 2024-02-24 17:56:48.066 2100 FEE 437528 17148 6056232 2024-02-24 17:56:48.066 2024-02-24 17:56:48.066 18900 TIP 437528 11328 6056235 2024-02-24 17:56:49.376 2024-02-24 17:56:49.376 100 FEE 437502 708 6056236 2024-02-24 17:56:49.376 2024-02-24 17:56:49.376 900 TIP 437502 649 6056248 2024-02-24 17:58:18.18 2024-02-24 17:58:18.18 10000 FEE 437550 1180 6056258 2024-02-24 18:02:57.108 2024-02-24 18:02:57.108 7700 FEE 437509 19199 6056259 2024-02-24 18:02:57.108 2024-02-24 18:02:57.108 69300 TIP 437509 6310 6056273 2024-02-24 18:04:19.121 2024-02-24 18:04:19.121 3300 FEE 437269 21540 6056274 2024-02-24 18:04:19.121 2024-02-24 18:04:19.121 29700 TIP 437269 9159 6056303 2024-02-24 18:05:40.168 2024-02-24 18:05:40.168 100 FEE 437552 15594 6056304 2024-02-24 18:05:40.168 2024-02-24 18:05:40.168 900 TIP 437552 20073 6056311 2024-02-24 18:05:40.678 2024-02-24 18:05:40.678 100 FEE 437552 19154 6056312 2024-02-24 18:05:40.678 2024-02-24 18:05:40.678 900 TIP 437552 2213 6056334 2024-02-24 18:06:19.397 2024-02-24 18:06:19.397 0 FEE 437553 1652 6056343 2024-02-24 18:07:02.957 2024-02-24 18:07:02.957 3300 FEE 437524 1468 6056344 2024-02-24 18:07:02.957 2024-02-24 18:07:02.957 29700 TIP 437524 5828 6056351 2024-02-24 18:08:09.824 2024-02-24 18:08:09.824 0 FEE 437558 1060 6056355 2024-02-24 18:08:22.755 2024-02-24 18:08:22.755 3300 FEE 437526 775 6056356 2024-02-24 18:08:22.755 2024-02-24 18:08:22.755 29700 TIP 437526 9177 6056375 2024-02-24 18:09:30.16 2024-02-24 18:09:30.16 500 FEE 437512 11967 6056376 2024-02-24 18:09:30.16 2024-02-24 18:09:30.16 4500 TIP 437512 9820 6056381 2024-02-24 18:09:30.476 2024-02-24 18:09:30.476 500 FEE 437512 8985 6056382 2024-02-24 18:09:30.476 2024-02-24 18:09:30.476 4500 TIP 437512 1960 6056397 2024-02-24 18:09:33.47 2024-02-24 18:09:33.47 500 FEE 437233 660 6056398 2024-02-24 18:09:33.47 2024-02-24 18:09:33.47 4500 TIP 437233 11263 6056410 2024-02-24 18:10:20.177 2024-02-24 18:10:20.177 1000 FEE 437560 15491 6056434 2024-02-24 18:15:17.538 2024-02-24 18:15:17.538 500 FEE 437370 2162 6056435 2024-02-24 18:15:17.538 2024-02-24 18:15:17.538 4500 TIP 437370 4292 6056460 2024-02-24 18:19:30.393 2024-02-24 18:19:30.393 500 FEE 437269 7989 6056461 2024-02-24 18:19:30.393 2024-02-24 18:19:30.393 4500 TIP 437269 15063 6056462 2024-02-24 18:19:30.691 2024-02-24 18:19:30.691 500 FEE 437269 680 6056463 2024-02-24 18:19:30.691 2024-02-24 18:19:30.691 4500 TIP 437269 640 6056486 2024-02-24 18:26:19.965 2024-02-24 18:26:19.965 5000 FEE 388560 759 6056487 2024-02-24 18:26:19.965 2024-02-24 18:26:19.965 45000 TIP 388560 4391 6056588 2024-02-24 18:36:12.842 2024-02-24 18:36:12.842 1000 FEE 437512 9363 6056589 2024-02-24 18:36:12.842 2024-02-24 18:36:12.842 9000 TIP 437512 2061 6055796 2024-02-24 17:20:18.158 2024-02-24 17:20:18.158 2100 FEE 437269 9026 6055797 2024-02-24 17:20:18.158 2024-02-24 17:20:18.158 18900 TIP 437269 2577 6055825 2024-02-24 17:21:23.792 2024-02-24 17:21:23.792 2100 FEE 437362 1120 6055826 2024-02-24 17:21:23.792 2024-02-24 17:21:23.792 18900 TIP 437362 1740 6055831 2024-02-24 17:22:25.169 2024-02-24 17:22:25.169 0 FEE 437508 2022 6055843 2024-02-24 17:24:41.302 2024-02-24 17:24:41.302 1000 POLL 437472 3717 6055844 2024-02-24 17:24:44.61 2024-02-24 17:24:44.61 1000 FEE 437472 14381 6055845 2024-02-24 17:24:44.61 2024-02-24 17:24:44.61 9000 TIP 437472 5449 6055852 2024-02-24 17:24:46.694 2024-02-24 17:24:46.694 1000 FEE 437472 18344 6055853 2024-02-24 17:24:46.694 2024-02-24 17:24:46.694 9000 TIP 437472 4521 6055907 2024-02-24 17:28:11.425 2024-02-24 17:28:11.425 700 FEE 437441 20969 6055908 2024-02-24 17:28:11.425 2024-02-24 17:28:11.425 6300 TIP 437441 11789 6055956 2024-02-24 17:35:13.512 2024-02-24 17:35:13.512 1000 FEE 437523 4173 6055964 2024-02-24 17:35:43.413 2024-02-24 17:35:43.413 210000 FEE 437524 21334 6055989 2024-02-24 17:36:41.21 2024-02-24 17:36:41.21 500 FEE 437446 1567 6055990 2024-02-24 17:36:41.21 2024-02-24 17:36:41.21 4500 TIP 437446 13327 6056002 2024-02-24 17:37:21.534 2024-02-24 17:37:21.534 1000 FEE 437529 6594 6056028 2024-02-24 17:42:19.343 2024-02-24 17:42:19.343 6900 FEE 437454 732 6056029 2024-02-24 17:42:19.343 2024-02-24 17:42:19.343 62100 TIP 437454 17713 6056036 2024-02-24 17:42:20.517 2024-02-24 17:42:20.517 6900 FEE 437454 8726 6056037 2024-02-24 17:42:20.517 2024-02-24 17:42:20.517 62100 TIP 437454 13599 6056058 2024-02-24 17:42:22.43 2024-02-24 17:42:22.43 6900 FEE 437454 18409 6056059 2024-02-24 17:42:22.43 2024-02-24 17:42:22.43 62100 TIP 437454 18449 6056068 2024-02-24 17:42:35.036 2024-02-24 17:42:35.036 6900 FEE 437454 2718 6056069 2024-02-24 17:42:35.036 2024-02-24 17:42:35.036 62100 TIP 437454 1515 6056074 2024-02-24 17:42:35.535 2024-02-24 17:42:35.535 6900 FEE 437454 1845 6056075 2024-02-24 17:42:35.535 2024-02-24 17:42:35.535 62100 TIP 437454 6421 6056084 2024-02-24 17:42:36.861 2024-02-24 17:42:36.861 6900 FEE 437454 21539 6056085 2024-02-24 17:42:36.861 2024-02-24 17:42:36.861 62100 TIP 437454 678 6056109 2024-02-24 17:43:44.503 2024-02-24 17:43:44.503 10000 FEE 437502 627 6056110 2024-02-24 17:43:44.503 2024-02-24 17:43:44.503 90000 TIP 437502 17682 6056112 2024-02-24 17:44:36.492 2024-02-24 17:44:36.492 1000 FEE 437533 20744 6056113 2024-02-24 17:44:36.492 2024-02-24 17:44:36.492 9000 TIP 437533 18543 6056139 2024-02-24 17:46:09.574 2024-02-24 17:46:09.574 0 FEE 437538 1890 6056141 2024-02-24 17:46:41.818 2024-02-24 17:46:41.818 0 FEE 437538 6700 6056149 2024-02-24 17:48:06.808 2024-02-24 17:48:06.808 77700 FEE 437507 1326 6056150 2024-02-24 17:48:06.808 2024-02-24 17:48:06.808 699300 TIP 437507 5359 6056161 2024-02-24 17:48:19.686 2024-02-24 17:48:19.686 2700 FEE 437269 18865 6056162 2024-02-24 17:48:19.686 2024-02-24 17:48:19.686 24300 TIP 437269 20094 6056163 2024-02-24 17:48:19.693 2024-02-24 17:48:19.693 2700 FEE 437269 886 6056164 2024-02-24 17:48:19.693 2024-02-24 17:48:19.693 24300 TIP 437269 11967 6056229 2024-02-24 17:56:47.893 2024-02-24 17:56:47.893 2100 FEE 437528 14791 6056230 2024-02-24 17:56:47.893 2024-02-24 17:56:47.893 18900 TIP 437528 9844 6056233 2024-02-24 17:56:48.72 2024-02-24 17:56:48.72 2100 FEE 437528 732 6056234 2024-02-24 17:56:48.72 2024-02-24 17:56:48.72 18900 TIP 437528 21416 6056251 2024-02-24 18:00:37.528 2024-02-24 18:00:37.528 6400 FEE 437549 2529 6056252 2024-02-24 18:00:37.528 2024-02-24 18:00:37.528 57600 TIP 437549 669 6056255 2024-02-24 18:02:27.42 2024-02-24 18:02:27.42 7700 FEE 437454 8176 6056256 2024-02-24 18:02:27.42 2024-02-24 18:02:27.42 69300 TIP 437454 2710 6056261 2024-02-24 18:03:18.904 2024-02-24 18:03:18.904 1000 FEE 437552 20636 6056281 2024-02-24 18:04:45.294 2024-02-24 18:04:45.294 3300 FEE 437326 19148 6056282 2024-02-24 18:04:45.294 2024-02-24 18:04:45.294 29700 TIP 437326 21562 6056285 2024-02-24 18:04:52.276 2024-02-24 18:04:52.276 6600 FEE 437332 16353 6056286 2024-02-24 18:04:52.276 2024-02-24 18:04:52.276 59400 TIP 437332 17522 6056297 2024-02-24 18:05:39.701 2024-02-24 18:05:39.701 100 FEE 437552 4079 6056298 2024-02-24 18:05:39.701 2024-02-24 18:05:39.701 900 TIP 437552 897 6056305 2024-02-24 18:05:40.328 2024-02-24 18:05:40.328 100 FEE 437552 777 6056306 2024-02-24 18:05:40.328 2024-02-24 18:05:40.328 900 TIP 437552 1802 6056369 2024-02-24 18:09:29.573 2024-02-24 18:09:29.573 500 FEE 437512 644 6056370 2024-02-24 18:09:29.573 2024-02-24 18:09:29.573 4500 TIP 437512 19566 6056371 2024-02-24 18:09:29.931 2024-02-24 18:09:29.931 500 FEE 437512 19398 6056372 2024-02-24 18:09:29.931 2024-02-24 18:09:29.931 4500 TIP 437512 19668 6056414 2024-02-24 18:11:31.316 2024-02-24 18:11:31.316 900 FEE 437502 703 6056415 2024-02-24 18:11:31.316 2024-02-24 18:11:31.316 8100 TIP 437502 2309 6056416 2024-02-24 18:11:31.419 2024-02-24 18:11:31.419 11100 FEE 437326 13782 6056417 2024-02-24 18:11:31.419 2024-02-24 18:11:31.419 99900 TIP 437326 21365 6056418 2024-02-24 18:11:44.483 2024-02-24 18:11:44.483 1000 FEE 437561 4570 6056457 2024-02-24 18:18:45.854 2024-02-24 18:18:45.854 500 FEE 437408 1175 6056458 2024-02-24 18:18:45.854 2024-02-24 18:18:45.854 4500 TIP 437408 20106 6056464 2024-02-24 18:19:30.841 2024-02-24 18:19:30.841 500 FEE 437269 20479 6056465 2024-02-24 18:19:30.841 2024-02-24 18:19:30.841 4500 TIP 437269 15662 6056529 2024-02-24 18:30:16.788 2024-02-24 18:30:16.788 1000 FEE 437534 20594 6056530 2024-02-24 18:30:16.788 2024-02-24 18:30:16.788 9000 TIP 437534 15719 6056542 2024-02-24 18:31:35.288 2024-02-24 18:31:35.288 1000 FEE 437566 11516 6056548 2024-02-24 18:32:53.777 2024-02-24 18:32:53.777 1000 FEE 437567 17891 6056552 2024-02-24 18:33:11.878 2024-02-24 18:33:11.878 2100 FEE 437531 1751 6056553 2024-02-24 18:33:11.878 2024-02-24 18:33:11.878 18900 TIP 437531 5522 6056568 2024-02-24 18:35:16.814 2024-02-24 18:35:16.814 28800 FEE 437472 7682 6056569 2024-02-24 18:35:16.814 2024-02-24 18:35:16.814 259200 TIP 437472 17552 6056576 2024-02-24 18:35:38.409 2024-02-24 18:35:38.409 1000 FEE 437218 17148 6056577 2024-02-24 18:35:38.409 2024-02-24 18:35:38.409 9000 TIP 437218 13527 6056597 2024-02-24 18:36:55.502 2024-02-24 18:36:55.502 2000 FEE 383302 21398 6056598 2024-02-24 18:36:55.502 2024-02-24 18:36:55.502 18000 TIP 383302 21228 6056641 2024-02-24 18:39:51.629 2024-02-24 18:39:51.629 28800 FEE 437569 18306 6056642 2024-02-24 18:39:51.629 2024-02-24 18:39:51.629 259200 TIP 437569 9844 6056673 2024-02-24 18:42:08.991 2024-02-24 18:42:08.991 1000 FEE 437581 8506 6056685 2024-02-24 18:43:41.82 2024-02-24 18:43:41.82 1000 FEE 437584 7510 6056691 2024-02-24 18:44:48.783 2024-02-24 18:44:48.783 1000 FEE 437585 19848 6056693 2024-02-24 18:45:12.937 2024-02-24 18:45:12.937 1000 FEE 437586 9482 6056715 2024-02-24 18:48:30.041 2024-02-24 18:48:30.041 1000 FEE 437233 19995 6056716 2024-02-24 18:48:30.041 2024-02-24 18:48:30.041 9000 TIP 437233 21556 6056721 2024-02-24 18:48:43.709 2024-02-24 18:48:43.709 1000 FEE 437256 5776 6056722 2024-02-24 18:48:43.709 2024-02-24 18:48:43.709 9000 TIP 437256 9985 6056730 2024-02-24 18:49:29.01 2024-02-24 18:49:29.01 1000 FEE 437535 16097 6056731 2024-02-24 18:49:29.01 2024-02-24 18:49:29.01 9000 TIP 437535 691 6056738 2024-02-24 18:50:14.083 2024-02-24 18:50:14.083 1000 FEE 437326 21627 6056739 2024-02-24 18:50:14.083 2024-02-24 18:50:14.083 9000 TIP 437326 6777 6056784 2024-02-24 18:55:34.106 2024-02-24 18:55:34.106 1000 FEE 437593 12245 6056795 2024-02-24 18:56:59.704 2024-02-24 18:56:59.704 4000 FEE 437581 21627 6056796 2024-02-24 18:56:59.704 2024-02-24 18:56:59.704 36000 TIP 437581 21214 6056813 2024-02-24 18:57:54.588 2024-02-24 18:57:54.588 1000 FEE 437573 19267 6056814 2024-02-24 18:57:54.588 2024-02-24 18:57:54.588 9000 TIP 437573 20660 6056838 2024-02-24 19:00:06.461 2024-02-24 19:00:06.461 10000 FEE 437601 21083 6056839 2024-02-24 19:00:19.507 2024-02-24 19:00:19.507 1000 FEE 437602 6537 6056840 2024-02-24 19:00:22.346 2024-02-24 19:00:22.346 1000 FEE 437603 14669 6056845 2024-02-24 19:01:22.174 2024-02-24 19:01:22.174 0 FEE 437602 10608 6055817 2024-02-24 17:21:03.157 2024-02-24 17:21:03.157 1000 STREAM 141924 11450 6055832 2024-02-24 17:23:03.177 2024-02-24 17:23:03.177 1000 STREAM 141924 19103 6055865 2024-02-24 17:25:03.209 2024-02-24 17:25:03.209 1000 STREAM 141924 762 6055901 2024-02-24 17:27:03.221 2024-02-24 17:27:03.221 1000 STREAM 141924 8505 6119473 2024-02-29 21:18:41.461 2024-02-29 21:18:41.461 1100 FEE 444226 1273 6119474 2024-02-29 21:18:41.461 2024-02-29 21:18:41.461 9900 TIP 444226 7979 6119643 2024-02-29 21:43:47.481 2024-02-29 21:43:47.481 2100 FEE 444168 4322 6119644 2024-02-29 21:43:47.481 2024-02-29 21:43:47.481 18900 TIP 444168 20424 6119648 2024-02-29 21:44:25.811 2024-02-29 21:44:25.811 1000 FEE 444303 19322 6119649 2024-02-29 21:44:25.811 2024-02-29 21:44:25.811 9000 TIP 444303 21057 6119668 2024-02-29 21:49:18.024 2024-02-29 21:49:18.024 500 FEE 444325 16653 6119669 2024-02-29 21:49:18.024 2024-02-29 21:49:18.024 4500 TIP 444325 20812 6119677 2024-02-29 21:51:22.315 2024-02-29 21:51:22.315 0 FEE 444325 21262 6119701 2024-02-29 21:56:46.814 2024-02-29 21:56:46.814 1100 FEE 444325 7425 6119702 2024-02-29 21:56:46.814 2024-02-29 21:56:46.814 9900 TIP 444325 1647 6119715 2024-02-29 21:59:55.643 2024-02-29 21:59:55.643 1000 FEE 444289 20599 6119716 2024-02-29 21:59:55.643 2024-02-29 21:59:55.643 9000 TIP 444289 15336 6119737 2024-02-29 22:03:20.805 2024-02-29 22:03:20.805 1000 FEE 444335 9200 6119754 2024-02-29 22:04:59.564 2024-02-29 22:04:59.564 0 FEE 444336 9921 6119778 2024-02-29 22:09:00.843 2024-02-29 22:09:00.843 1000 FEE 444344 13132 6119780 2024-02-29 22:09:15.707 2024-02-29 22:09:15.707 0 FEE 444344 16594 6119790 2024-02-29 22:10:11.607 2024-02-29 22:10:11.607 0 FEE 444345 21393 6119811 2024-02-29 22:14:02.419 2024-02-29 22:14:02.419 2100 FEE 444318 18454 6119812 2024-02-29 22:14:02.419 2024-02-29 22:14:02.419 18900 TIP 444318 1145 6119832 2024-02-29 22:17:08.491 2024-02-29 22:17:08.491 1000 FEE 444353 11515 6119858 2024-02-29 22:20:21.556 2024-02-29 22:20:21.556 7700 FEE 444345 21514 6119859 2024-02-29 22:20:21.556 2024-02-29 22:20:21.556 69300 TIP 444345 20970 6119863 2024-02-29 22:20:49.062 2024-02-29 22:20:49.062 7700 FEE 444326 9365 6119864 2024-02-29 22:20:49.062 2024-02-29 22:20:49.062 69300 TIP 444326 1094 6119865 2024-02-29 22:20:49.302 2024-02-29 22:20:49.302 1000 FEE 444357 11750 6119870 2024-02-29 22:20:58.091 2024-02-29 22:20:58.091 100000 FEE 444358 19126 6119899 2024-02-29 22:24:06.904 2024-02-29 22:24:06.904 100 FEE 444231 19329 6119900 2024-02-29 22:24:06.904 2024-02-29 22:24:06.904 900 TIP 444231 10586 6119929 2024-02-29 22:28:11.772 2024-02-29 22:28:11.772 1100 FEE 443351 12808 6119930 2024-02-29 22:28:11.772 2024-02-29 22:28:11.772 9900 TIP 443351 1845 6119944 2024-02-29 22:31:12.127 2024-02-29 22:31:12.127 0 FEE 444366 21320 6119949 2024-02-29 22:31:28.008 2024-02-29 22:31:28.008 7700 FEE 443915 763 6119950 2024-02-29 22:31:28.008 2024-02-29 22:31:28.008 69300 TIP 443915 7891 6119973 2024-02-29 22:31:44.655 2024-02-29 22:31:44.655 7700 FEE 444365 16942 6119974 2024-02-29 22:31:44.655 2024-02-29 22:31:44.655 69300 TIP 444365 16808 6119983 2024-02-29 22:33:13.296 2024-02-29 22:33:13.296 100 FEE 443624 618 6119984 2024-02-29 22:33:13.296 2024-02-29 22:33:13.296 900 TIP 443624 1806 6120013 2024-02-29 22:34:56.403 2024-02-29 22:34:56.403 1100 FEE 443268 11158 6120014 2024-02-29 22:34:56.403 2024-02-29 22:34:56.403 9900 TIP 443268 21275 6120037 2024-02-29 22:37:53.014 2024-02-29 22:37:53.014 500 FEE 444220 4395 6120038 2024-02-29 22:37:53.014 2024-02-29 22:37:53.014 4500 TIP 444220 714 6120042 2024-02-29 22:38:09.942 2024-02-29 22:38:09.942 500 FEE 443861 686 6120043 2024-02-29 22:38:09.942 2024-02-29 22:38:09.942 4500 TIP 443861 21148 6120067 2024-02-29 22:40:51.708 2024-02-29 22:40:51.708 1000 FEE 444374 6537 6120072 2024-02-29 22:42:01.829 2024-02-29 22:42:01.829 800 FEE 443915 20981 6120073 2024-02-29 22:42:01.829 2024-02-29 22:42:01.829 7200 TIP 443915 18945 6120127 2024-02-29 22:48:22.465 2024-02-29 22:48:22.465 2100 FEE 441843 2832 6120128 2024-02-29 22:48:22.465 2024-02-29 22:48:22.465 18900 TIP 441843 16536 6120138 2024-02-29 22:49:16.713 2024-02-29 22:49:16.713 6900 FEE 444346 20906 6120139 2024-02-29 22:49:16.713 2024-02-29 22:49:16.713 62100 TIP 444346 675 6120168 2024-02-29 22:51:52.485 2024-02-29 22:51:52.485 20000 FEE 444173 910 6120169 2024-02-29 22:51:52.485 2024-02-29 22:51:52.485 180000 TIP 444173 5377 6120180 2024-02-29 22:53:39.226 2024-02-29 22:53:39.226 1000 FEE 444382 16149 6120228 2024-02-29 23:00:29.461 2024-02-29 23:00:29.461 1000 FEE 444390 18751 6120252 2024-02-29 23:01:47.617 2024-02-29 23:01:47.617 10000 FEE 443976 7809 6120253 2024-02-29 23:01:47.617 2024-02-29 23:01:47.617 90000 TIP 443976 14669 6120257 2024-02-29 23:01:58.26 2024-02-29 23:01:58.26 1000 FEE 444392 15594 6120266 2024-02-29 23:03:12.771 2024-02-29 23:03:12.771 300 FEE 443322 16809 6120267 2024-02-29 23:03:12.771 2024-02-29 23:03:12.771 2700 TIP 443322 19924 6120286 2024-02-29 23:04:25.548 2024-02-29 23:04:25.548 100 FEE 444386 2361 6120287 2024-02-29 23:04:25.548 2024-02-29 23:04:25.548 900 TIP 444386 889 6120292 2024-02-29 23:04:36.47 2024-02-29 23:04:36.47 1000 FEE 444394 6515 6120295 2024-02-29 23:05:39.388 2024-02-29 23:05:39.388 6900 FEE 443399 909 6120296 2024-02-29 23:05:39.388 2024-02-29 23:05:39.388 62100 TIP 443399 900 6120315 2024-02-29 23:10:04.652 2024-02-29 23:10:04.652 1000 FEE 444056 2224 6120316 2024-02-29 23:10:04.652 2024-02-29 23:10:04.652 9000 TIP 444056 18170 6120322 2024-02-29 23:10:26.772 2024-02-29 23:10:26.772 100 FEE 444365 2010 6120323 2024-02-29 23:10:26.772 2024-02-29 23:10:26.772 900 TIP 444365 5761 6120336 2024-02-29 23:11:30.029 2024-02-29 23:11:30.029 1000 FEE 444364 16809 6120337 2024-02-29 23:11:30.029 2024-02-29 23:11:30.029 9000 TIP 444364 20588 6120338 2024-02-29 23:11:45.102 2024-02-29 23:11:45.102 100 FEE 444384 15213 6120339 2024-02-29 23:11:45.102 2024-02-29 23:11:45.102 900 TIP 444384 1959 6120348 2024-02-29 23:12:39.765 2024-02-29 23:12:39.765 1000 FEE 444402 20470 6120358 2024-02-29 23:13:10.935 2024-02-29 23:13:10.935 100 FEE 444341 6229 6120359 2024-02-29 23:13:10.935 2024-02-29 23:13:10.935 900 TIP 444341 11938 6120416 2024-02-29 23:27:51.493 2024-02-29 23:27:51.493 100 FEE 444220 21242 6120417 2024-02-29 23:27:51.493 2024-02-29 23:27:51.493 900 TIP 444220 19346 6120458 2024-02-29 23:38:30.768 2024-02-29 23:38:30.768 5000 FEE 444188 4035 6120459 2024-02-29 23:38:30.768 2024-02-29 23:38:30.768 45000 TIP 444188 20026 6120489 2024-02-29 23:49:09.224 2024-02-29 23:49:09.224 300 FEE 443861 21332 6120490 2024-02-29 23:49:09.224 2024-02-29 23:49:09.224 2700 TIP 443861 21501 6120498 2024-02-29 23:51:46.148 2024-02-29 23:51:46.148 1000 FEE 444421 20059 6120519 2024-02-29 23:54:41.897 2024-02-29 23:54:41.897 1000 FEE 444425 1120 6120529 2024-02-29 23:56:21.284 2024-02-29 23:56:21.284 7700 FEE 444376 17827 6120530 2024-02-29 23:56:21.284 2024-02-29 23:56:21.284 69300 TIP 444376 13553 6120554 2024-02-29 23:59:54.816 2024-02-29 23:59:54.816 100 FEE 444408 16309 6120555 2024-02-29 23:59:54.816 2024-02-29 23:59:54.816 900 TIP 444408 20066 6120572 2024-03-01 00:07:26.375 2024-03-01 00:07:26.375 1000 FEE 444435 18751 6120609 2024-03-01 00:15:51.044 2024-03-01 00:15:51.044 10000 FEE 444338 7989 6120610 2024-03-01 00:15:51.044 2024-03-01 00:15:51.044 90000 TIP 444338 18124 6120633 2024-03-01 00:19:19.062 2024-03-01 00:19:19.062 300 FEE 443934 19930 6120634 2024-03-01 00:19:19.062 2024-03-01 00:19:19.062 2700 TIP 443934 10096 6120639 2024-03-01 00:19:19.735 2024-03-01 00:19:19.735 300 FEE 443934 20825 6120640 2024-03-01 00:19:19.735 2024-03-01 00:19:19.735 2700 TIP 443934 11516 6120641 2024-03-01 00:19:19.972 2024-03-01 00:19:19.972 300 FEE 443934 4323 6055829 2024-02-24 17:22:03.167 2024-02-24 17:22:03.167 1000 STREAM 141924 4415 6055839 2024-02-24 17:24:03.189 2024-02-24 17:24:03.189 1000 STREAM 141924 17217 6055889 2024-02-24 17:26:03.185 2024-02-24 17:26:03.185 1000 STREAM 141924 20539 6055906 2024-02-24 17:28:03.217 2024-02-24 17:28:03.217 1000 STREAM 141924 18380 6055915 2024-02-24 17:29:03.228 2024-02-24 17:29:03.228 1000 STREAM 141924 8059 6055919 2024-02-24 17:30:03.248 2024-02-24 17:30:03.248 1000 STREAM 141924 14376 6119509 2024-02-29 21:25:36.048 2024-02-29 21:25:36.048 22500 TIP 444102 21344 6119512 2024-02-29 21:25:37.086 2024-02-29 21:25:37.086 2500 FEE 444102 20738 6119513 2024-02-29 21:25:37.086 2024-02-29 21:25:37.086 22500 TIP 444102 20555 6119517 2024-02-29 21:26:34.867 2024-02-29 21:26:34.867 1000 FEE 444300 20554 6119518 2024-02-29 21:26:34.867 2024-02-29 21:26:34.867 9000 TIP 444300 21212 6119519 2024-02-29 21:26:35.948 2024-02-29 21:26:35.948 1000 FEE 444300 18392 6119520 2024-02-29 21:26:35.948 2024-02-29 21:26:35.948 9000 TIP 444300 9906 6119527 2024-02-29 21:27:43.81 2024-02-29 21:27:43.81 1700 FEE 444311 652 6119528 2024-02-29 21:27:43.81 2024-02-29 21:27:43.81 15300 TIP 444311 16387 6119534 2024-02-29 21:28:19.577 2024-02-29 21:28:19.577 1000 FEE 444173 19837 6119535 2024-02-29 21:28:19.577 2024-02-29 21:28:19.577 9000 TIP 444173 1012 6119541 2024-02-29 21:29:16.865 2024-02-29 21:29:16.865 1000 FEE 444283 18678 6119542 2024-02-29 21:29:16.865 2024-02-29 21:29:16.865 9000 TIP 444283 1195 6119555 2024-02-29 21:32:01.533 2024-02-29 21:32:01.533 1000 FEE 444292 9167 6119556 2024-02-29 21:32:01.533 2024-02-29 21:32:01.533 9000 TIP 444292 21022 6119615 2024-02-29 21:40:57.375 2024-02-29 21:40:57.375 2100 FEE 444087 782 6119616 2024-02-29 21:40:57.375 2024-02-29 21:40:57.375 18900 TIP 444087 16867 6119618 2024-02-29 21:41:20.126 2024-02-29 21:41:20.126 1000 FEE 444317 910 6119621 2024-02-29 21:41:48.665 2024-02-29 21:41:48.665 300 FEE 444156 20287 6119622 2024-02-29 21:41:48.665 2024-02-29 21:41:48.665 2700 TIP 444156 5500 6119639 2024-02-29 21:42:51.98 2024-02-29 21:42:51.98 1000 FEE 444320 15662 6119662 2024-02-29 21:48:15.335 2024-02-29 21:48:15.335 1000 FEE 444325 1039 6119670 2024-02-29 21:49:19.855 2024-02-29 21:49:19.855 500 FEE 444325 16867 6119671 2024-02-29 21:49:19.855 2024-02-29 21:49:19.855 4500 TIP 444325 4323 6119674 2024-02-29 21:50:10.069 2024-02-29 21:50:10.069 0 FEE 444325 1488 6119697 2024-02-29 21:56:10.941 2024-02-29 21:56:10.941 4000 FEE 444168 6573 6119698 2024-02-29 21:56:10.941 2024-02-29 21:56:10.941 36000 TIP 444168 759 6119731 2024-02-29 22:02:07.503 2024-02-29 22:02:07.503 1000 FEE 444334 9084 6119732 2024-02-29 22:02:14.568 2024-02-29 22:02:14.568 700 FEE 444168 20811 6119733 2024-02-29 22:02:14.568 2024-02-29 22:02:14.568 6300 TIP 444168 2711 6119785 2024-02-29 22:10:01.296 2024-02-29 22:10:01.296 1000 FEE 444339 18344 6119786 2024-02-29 22:10:01.296 2024-02-29 22:10:01.296 9000 TIP 444339 1310 6119799 2024-02-29 22:12:02.392 2024-02-29 22:12:02.392 3100 FEE 444332 16177 6119800 2024-02-29 22:12:02.392 2024-02-29 22:12:02.392 27900 TIP 444332 17011 6119804 2024-02-29 22:12:28.146 2024-02-29 22:12:28.146 1000 FEE 444348 4074 6119816 2024-02-29 22:14:29.809 2024-02-29 22:14:29.809 1000 FEE 444350 12334 6119825 2024-02-29 22:16:00.74 2024-02-29 22:16:00.74 1000 FEE 444352 20706 6119839 2024-02-29 22:18:45.357 2024-02-29 22:18:45.357 100 FEE 444173 2525 6119840 2024-02-29 22:18:45.357 2024-02-29 22:18:45.357 900 TIP 444173 20802 6119849 2024-02-29 22:19:42.307 2024-02-29 22:19:42.307 100 FEE 443787 7553 6119850 2024-02-29 22:19:42.307 2024-02-29 22:19:42.307 900 TIP 443787 18368 6119854 2024-02-29 22:20:19.319 2024-02-29 22:20:19.319 7700 FEE 444345 15336 6119855 2024-02-29 22:20:19.319 2024-02-29 22:20:19.319 69300 TIP 444345 635 6119878 2024-02-29 22:21:44.831 2024-02-29 22:21:44.831 10000 FEE 444359 14295 6119880 2024-02-29 22:21:50.108 2024-02-29 22:21:50.108 2100 FEE 443272 4654 6119881 2024-02-29 22:21:50.108 2024-02-29 22:21:50.108 18900 TIP 443272 730 6119887 2024-02-29 22:22:38.244 2024-02-29 22:22:38.244 0 FEE 444357 18865 6119903 2024-02-29 22:24:44.251 2024-02-29 22:24:44.251 1000 FEE 444102 998 6119904 2024-02-29 22:24:44.251 2024-02-29 22:24:44.251 9000 TIP 444102 4166 6119945 2024-02-29 22:31:27.589 2024-02-29 22:31:27.589 7700 FEE 443915 21349 6119946 2024-02-29 22:31:27.589 2024-02-29 22:31:27.589 69300 TIP 443915 18403 6119957 2024-02-29 22:31:28.73 2024-02-29 22:31:28.73 5000 FEE 444338 17953 6119958 2024-02-29 22:31:28.73 2024-02-29 22:31:28.73 45000 TIP 444338 627 6119969 2024-02-29 22:31:44.356 2024-02-29 22:31:44.356 7700 FEE 444365 21395 6119970 2024-02-29 22:31:44.356 2024-02-29 22:31:44.356 69300 TIP 444365 4076 6119985 2024-02-29 22:33:17.046 2024-02-29 22:33:17.046 500 FEE 444168 17411 6119986 2024-02-29 22:33:17.046 2024-02-29 22:33:17.046 4500 TIP 444168 7760 6120008 2024-02-29 22:34:03.089 2024-02-29 22:34:03.089 100 FEE 443449 21033 6120009 2024-02-29 22:34:03.089 2024-02-29 22:34:03.089 900 TIP 443449 8133 6120025 2024-02-29 22:36:07.422 2024-02-29 22:36:07.422 1000 FEE 444372 9552 6120030 2024-02-29 22:36:20.033 2024-02-29 22:36:20.033 1000 FEE 444359 3377 6120031 2024-02-29 22:36:20.033 2024-02-29 22:36:20.033 9000 TIP 444359 1740 6120044 2024-02-29 22:38:26.597 2024-02-29 22:38:26.597 500 FEE 443514 759 6120045 2024-02-29 22:38:26.597 2024-02-29 22:38:26.597 4500 TIP 443514 20504 6120052 2024-02-29 22:38:50.67 2024-02-29 22:38:50.67 500 FEE 443611 10690 6120053 2024-02-29 22:38:50.67 2024-02-29 22:38:50.67 4500 TIP 443611 20778 6120059 2024-02-29 22:39:06.644 2024-02-29 22:39:06.644 500 FEE 443616 20370 6120060 2024-02-29 22:39:06.644 2024-02-29 22:39:06.644 4500 TIP 443616 7966 6120081 2024-02-29 22:45:00.187 2024-02-29 22:45:00.187 1000 FEE 444369 12738 6120082 2024-02-29 22:45:00.187 2024-02-29 22:45:00.187 9000 TIP 444369 5359 6120103 2024-02-29 22:46:06.63 2024-02-29 22:46:06.63 2100 FEE 444293 15843 6120104 2024-02-29 22:46:06.63 2024-02-29 22:46:06.63 18900 TIP 444293 13587 6120121 2024-02-29 22:48:07.023 2024-02-29 22:48:07.023 500 FEE 444173 14990 6120122 2024-02-29 22:48:07.023 2024-02-29 22:48:07.023 4500 TIP 444173 21493 6120123 2024-02-29 22:48:14.352 2024-02-29 22:48:14.352 500 FEE 444078 18679 6120124 2024-02-29 22:48:14.352 2024-02-29 22:48:14.352 4500 TIP 444078 2596 6120125 2024-02-29 22:48:14.675 2024-02-29 22:48:14.675 500 FEE 443915 20775 6120126 2024-02-29 22:48:14.675 2024-02-29 22:48:14.675 4500 TIP 443915 652 6120155 2024-02-29 22:51:01.229 2024-02-29 22:51:01.229 2100 FEE 444304 9354 6120156 2024-02-29 22:51:01.229 2024-02-29 22:51:01.229 18900 TIP 444304 16250 6120181 2024-02-29 22:54:02.4 2024-02-29 22:54:02.4 1000 FEE 444383 1030 6120219 2024-02-29 22:59:30.071 2024-02-29 22:59:30.071 1100 FEE 443548 20889 6120220 2024-02-29 22:59:30.071 2024-02-29 22:59:30.071 9900 TIP 443548 12160 6120246 2024-02-29 23:01:33.138 2024-02-29 23:01:33.138 1000 FEE 443834 17291 6120247 2024-02-29 23:01:33.138 2024-02-29 23:01:33.138 9000 TIP 443834 12808 6120270 2024-02-29 23:03:24.938 2024-02-29 23:03:24.938 300 FEE 443327 20776 6120271 2024-02-29 23:03:24.938 2024-02-29 23:03:24.938 2700 TIP 443327 4768 6120274 2024-02-29 23:03:45.536 2024-02-29 23:03:45.536 4200 FEE 443683 21430 6120275 2024-02-29 23:03:45.536 2024-02-29 23:03:45.536 37800 TIP 443683 1726 6120284 2024-02-29 23:04:25.366 2024-02-29 23:04:25.366 100 FEE 444386 9494 6120285 2024-02-29 23:04:25.366 2024-02-29 23:04:25.366 900 TIP 444386 19121 6120293 2024-02-29 23:04:40.611 2024-02-29 23:04:40.611 1000 FEE 444395 19689 6120317 2024-02-29 23:10:05.118 2024-02-29 23:10:05.118 1000 FEE 444056 20660 6055949 2024-02-24 17:33:03.218 2024-02-24 17:33:03.218 1000 STREAM 141924 7989 6119526 2024-02-29 21:27:05.046 2024-02-29 21:27:05.046 0 FEE 444310 1012 6119529 2024-02-29 21:27:44.025 2024-02-29 21:27:44.025 1700 FEE 444311 15147 6119530 2024-02-29 21:27:44.025 2024-02-29 21:27:44.025 15300 TIP 444311 14795 6119531 2024-02-29 21:27:44.252 2024-02-29 21:27:44.252 1700 FEE 444311 954 6119532 2024-02-29 21:27:44.252 2024-02-29 21:27:44.252 15300 TIP 444311 7998 6119543 2024-02-29 21:29:18.553 2024-02-29 21:29:18.553 2100 FEE 444173 18680 6119544 2024-02-29 21:29:18.553 2024-02-29 21:29:18.553 18900 TIP 444173 20642 6119552 2024-02-29 21:31:04.339 2024-02-29 21:31:04.339 2100 FEE 444258 21148 6119553 2024-02-29 21:31:04.339 2024-02-29 21:31:04.339 18900 TIP 444258 19813 6119560 2024-02-29 21:32:21.602 2024-02-29 21:32:21.602 1000 FEE 444286 2056 6119561 2024-02-29 21:32:21.602 2024-02-29 21:32:21.602 9000 TIP 444286 11670 6119589 2024-02-29 21:38:35.666 2024-02-29 21:38:35.666 100 FEE 444102 18994 6119590 2024-02-29 21:38:35.666 2024-02-29 21:38:35.666 900 TIP 444102 6749 6119593 2024-02-29 21:38:36.282 2024-02-29 21:38:36.282 100 FEE 444102 21062 6119594 2024-02-29 21:38:36.282 2024-02-29 21:38:36.282 900 TIP 444102 8729 6119602 2024-02-29 21:39:12.758 2024-02-29 21:39:12.758 800 FEE 443679 1609 6119603 2024-02-29 21:39:12.758 2024-02-29 21:39:12.758 7200 TIP 443679 16839 6119664 2024-02-29 21:48:23.42 2024-02-29 21:48:23.42 2600 FEE 443904 5425 6119665 2024-02-29 21:48:23.42 2024-02-29 21:48:23.42 23400 TIP 443904 19570 6119666 2024-02-29 21:49:01.142 2024-02-29 21:49:01.142 0 FEE 444325 9364 6119678 2024-02-29 21:51:29.841 2024-02-29 21:51:29.841 1000 FEE 444328 656 6119699 2024-02-29 21:56:40.897 2024-02-29 21:56:40.897 1100 FEE 444325 20436 6119700 2024-02-29 21:56:40.897 2024-02-29 21:56:40.897 9900 TIP 444325 21457 6119723 2024-02-29 22:00:02.051 2024-02-29 22:00:02.051 1000 FEE 444289 10469 6119724 2024-02-29 22:00:02.051 2024-02-29 22:00:02.051 9000 TIP 444289 844 6119734 2024-02-29 22:02:25.838 2024-02-29 22:02:25.838 2100 FEE 444168 18452 6119735 2024-02-29 22:02:25.838 2024-02-29 22:02:25.838 18900 TIP 444168 1224 6119745 2024-02-29 22:04:09.672 2024-02-29 22:04:09.672 1000 FEE 444333 5495 6119746 2024-02-29 22:04:09.672 2024-02-29 22:04:09.672 9000 TIP 444333 1784 6119756 2024-02-29 22:05:51.315 2024-02-29 22:05:51.315 5700 FEE 444337 946 6119757 2024-02-29 22:05:51.315 2024-02-29 22:05:51.315 51300 TIP 444337 2844 6119759 2024-02-29 22:06:06.906 2024-02-29 22:06:06.906 1000 FEE 444339 18511 6119767 2024-02-29 22:07:09.891 2024-02-29 22:07:09.891 2100 FEE 444163 21248 6119768 2024-02-29 22:07:09.891 2024-02-29 22:07:09.891 18900 TIP 444163 14650 6119782 2024-02-29 22:09:54.923 2024-02-29 22:09:54.923 0 FEE 444344 20452 6119792 2024-02-29 22:10:20.374 2024-02-29 22:10:20.374 3000 FEE 443836 3990 6119793 2024-02-29 22:10:20.374 2024-02-29 22:10:20.374 27000 TIP 443836 649 6119795 2024-02-29 22:10:48.852 2024-02-29 22:10:48.852 0 FEE 444345 17094 6119809 2024-02-29 22:13:44.025 2024-02-29 22:13:44.025 1100 FEE 443439 21400 6119810 2024-02-29 22:13:44.025 2024-02-29 22:13:44.025 9900 TIP 443439 21343 6119847 2024-02-29 22:19:39.387 2024-02-29 22:19:39.387 2100 FEE 444015 2773 6119848 2024-02-29 22:19:39.387 2024-02-29 22:19:39.387 18900 TIP 444015 18314 6119852 2024-02-29 22:20:09.053 2024-02-29 22:20:09.053 10000 FEE 443583 21048 6119853 2024-02-29 22:20:09.053 2024-02-29 22:20:09.053 90000 TIP 443583 9290 6119876 2024-02-29 22:21:38.575 2024-02-29 22:21:38.575 7700 FEE 444323 9159 6119877 2024-02-29 22:21:38.575 2024-02-29 22:21:38.575 69300 TIP 444323 2596 6119884 2024-02-29 22:22:30.277 2024-02-29 22:22:30.277 2100 FEE 444064 659 6119885 2024-02-29 22:22:30.277 2024-02-29 22:22:30.277 18900 TIP 444064 18311 6119896 2024-02-29 22:23:33.414 2024-02-29 22:23:33.414 300 FEE 444253 13365 6119897 2024-02-29 22:23:33.414 2024-02-29 22:23:33.414 2700 TIP 444253 20162 6119961 2024-02-29 22:31:30.235 2024-02-29 22:31:30.235 7700 FEE 443915 21208 6119962 2024-02-29 22:31:30.235 2024-02-29 22:31:30.235 69300 TIP 443915 16532 6119963 2024-02-29 22:31:30.262 2024-02-29 22:31:30.262 7700 FEE 443915 20987 6119964 2024-02-29 22:31:30.262 2024-02-29 22:31:30.262 69300 TIP 443915 5779 6119965 2024-02-29 22:31:44.104 2024-02-29 22:31:44.104 7700 FEE 444365 14795 6119966 2024-02-29 22:31:44.104 2024-02-29 22:31:44.104 69300 TIP 444365 5538 6119993 2024-02-29 22:33:22.57 2024-02-29 22:33:22.57 500 FEE 443545 9 6119994 2024-02-29 22:33:22.57 2024-02-29 22:33:22.57 4500 TIP 443545 17944 6120022 2024-02-29 22:35:49.04 2024-02-29 22:35:49.04 500 FEE 444220 5359 6120023 2024-02-29 22:35:49.04 2024-02-29 22:35:49.04 4500 TIP 444220 9331 6120050 2024-02-29 22:38:50.404 2024-02-29 22:38:50.404 500 FEE 443611 15474 6120051 2024-02-29 22:38:50.404 2024-02-29 22:38:50.404 4500 TIP 443611 19773 6120065 2024-02-29 22:40:51.323 2024-02-29 22:40:51.323 5700 FEE 443431 16341 6120066 2024-02-29 22:40:51.323 2024-02-29 22:40:51.323 51300 TIP 443431 15536 6120075 2024-02-29 22:42:11.511 2024-02-29 22:42:11.511 800 FEE 443577 826 6120076 2024-02-29 22:42:11.511 2024-02-29 22:42:11.511 7200 TIP 443577 21275 6120109 2024-02-29 22:46:19.772 2024-02-29 22:46:19.772 100 FEE 444206 13076 6120110 2024-02-29 22:46:19.772 2024-02-29 22:46:19.772 900 TIP 444206 1213 6120116 2024-02-29 22:47:39.887 2024-02-29 22:47:39.887 10000 FEE 444173 21386 6120117 2024-02-29 22:47:39.887 2024-02-29 22:47:39.887 90000 TIP 444173 5746 6120129 2024-02-29 22:48:23.134 2024-02-29 22:48:23.134 2100 FEE 441843 21320 6120130 2024-02-29 22:48:23.134 2024-02-29 22:48:23.134 18900 TIP 441843 5590 6120141 2024-02-29 22:50:19.517 2024-02-29 22:50:19.517 1000 FEE 444378 9036 6120145 2024-02-29 22:50:44.395 2024-02-29 22:50:44.395 2100 FEE 444139 714 6120146 2024-02-29 22:50:44.395 2024-02-29 22:50:44.395 18900 TIP 444139 19463 6120147 2024-02-29 22:50:45.036 2024-02-29 22:50:45.036 2100 FEE 444139 2016 6120148 2024-02-29 22:50:45.036 2024-02-29 22:50:45.036 18900 TIP 444139 21520 6120166 2024-02-29 22:51:21.239 2024-02-29 22:51:21.239 1000 FEE 444224 2734 6120167 2024-02-29 22:51:21.239 2024-02-29 22:51:21.239 9000 TIP 444224 8713 6120177 2024-02-29 22:52:51.083 2024-02-29 22:52:51.083 1000 FEE 444380 10719 6120179 2024-02-29 22:53:30.677 2024-02-29 22:53:30.677 1000 FEE 444381 20243 6120195 2024-02-29 22:56:08.281 2024-02-29 22:56:08.281 1100 FEE 444338 1114 6120196 2024-02-29 22:56:08.281 2024-02-29 22:56:08.281 9900 TIP 444338 1738 6120208 2024-02-29 22:57:13.957 2024-02-29 22:57:13.957 1000 FEE 444249 20825 6120209 2024-02-29 22:57:13.957 2024-02-29 22:57:13.957 9000 TIP 444249 19924 6120250 2024-02-29 23:01:43.244 2024-02-29 23:01:43.244 6900 FEE 444110 13361 6120251 2024-02-29 23:01:43.244 2024-02-29 23:01:43.244 62100 TIP 444110 18932 6120254 2024-02-29 23:01:48.22 2024-02-29 23:01:48.22 1000 FEE 444051 10342 6120255 2024-02-29 23:01:48.22 2024-02-29 23:01:48.22 9000 TIP 444051 705 6120272 2024-02-29 23:03:32.417 2024-02-29 23:03:32.417 300 FEE 443599 2528 6120273 2024-02-29 23:03:32.417 2024-02-29 23:03:32.417 2700 TIP 443599 20452 6120276 2024-02-29 23:03:50.251 2024-02-29 23:03:50.251 1000 FEE 443062 13544 6120277 2024-02-29 23:03:50.251 2024-02-29 23:03:50.251 9000 TIP 443062 21441 6120279 2024-02-29 23:04:05.647 2024-02-29 23:04:05.647 1000 FEE 444393 20754 6120299 2024-02-29 23:06:19.567 2024-02-29 23:06:19.567 1000 FEE 444389 1729 6120300 2024-02-29 23:06:19.567 2024-02-29 23:06:19.567 9000 TIP 444389 16879 6120347 2024-02-29 23:12:31.269 2024-02-29 23:12:31.269 1000 FEE 444401 20073 6120360 2024-02-29 23:13:19.184 2024-02-29 23:13:19.184 1000 FEE 444061 1273 6120361 2024-02-29 23:13:19.184 2024-02-29 23:13:19.184 9000 TIP 444061 20022 6120364 2024-02-29 23:13:39.706 2024-02-29 23:13:39.706 1000 FEE 443755 1478 6120365 2024-02-29 23:13:39.706 2024-02-29 23:13:39.706 9000 TIP 443755 12736 6120422 2024-02-29 23:28:38.231 2024-02-29 23:28:38.231 100 FEE 308388 13759 6120423 2024-02-29 23:28:38.231 2024-02-29 23:28:38.231 900 TIP 308388 15326 6055950 2024-02-24 17:34:03.347 2024-02-24 17:34:03.347 1000 STREAM 141924 14202 6055975 2024-02-24 17:36:03.339 2024-02-24 17:36:03.339 1000 STREAM 141924 746 6055996 2024-02-24 17:37:03.381 2024-02-24 17:37:03.381 1000 STREAM 141924 2460 6119540 2024-02-29 21:29:04.455 2024-02-29 21:29:04.455 1000 STREAM 141924 20433 6119547 2024-02-29 21:30:04.444 2024-02-29 21:30:04.444 1000 STREAM 141924 678 6119554 2024-02-29 21:31:04.426 2024-02-29 21:31:04.426 1000 STREAM 141924 2674 6119557 2024-02-29 21:32:04.427 2024-02-29 21:32:04.427 1000 STREAM 141924 5520 6119574 2024-02-29 21:38:04.442 2024-02-29 21:38:04.442 1000 STREAM 141924 19890 6119654 2024-02-29 21:46:04.534 2024-02-29 21:46:04.534 1000 STREAM 141924 19806 6119659 2024-02-29 21:47:04.543 2024-02-29 21:47:04.543 1000 STREAM 141924 18626 6119667 2024-02-29 21:49:04.537 2024-02-29 21:49:04.537 1000 STREAM 141924 18828 6119673 2024-02-29 21:50:04.543 2024-02-29 21:50:04.543 1000 STREAM 141924 2101 6119676 2024-02-29 21:51:04.535 2024-02-29 21:51:04.535 1000 STREAM 141924 10096 6119686 2024-02-29 21:53:04.543 2024-02-29 21:53:04.543 1000 STREAM 141924 19296 6119758 2024-02-29 22:06:04.611 2024-02-29 22:06:04.611 1000 STREAM 141924 2576 6055952 2024-02-24 17:34:40.09 2024-02-24 17:34:40.09 1000 FEE 437522 722 6055971 2024-02-24 17:36:02.168 2024-02-24 17:36:02.168 1000 FEE 437526 974 6055972 2024-02-24 17:36:02.168 2024-02-24 17:36:02.168 9000 TIP 437526 1801 6055985 2024-02-24 17:36:35.233 2024-02-24 17:36:35.233 10000 FEE 437513 19569 6055986 2024-02-24 17:36:35.233 2024-02-24 17:36:35.233 90000 TIP 437513 21090 6056008 2024-02-24 17:37:40.526 2024-02-24 17:37:40.526 1000 FEE 437530 15337 6056042 2024-02-24 17:42:20.968 2024-02-24 17:42:20.968 6900 FEE 437454 20642 6056043 2024-02-24 17:42:20.968 2024-02-24 17:42:20.968 62100 TIP 437454 5646 6056062 2024-02-24 17:42:34.463 2024-02-24 17:42:34.463 6900 FEE 437454 18675 6056063 2024-02-24 17:42:34.463 2024-02-24 17:42:34.463 62100 TIP 437454 11498 6056118 2024-02-24 17:44:40.107 2024-02-24 17:44:40.107 1000 FEE 437533 14465 6056119 2024-02-24 17:44:40.107 2024-02-24 17:44:40.107 9000 TIP 437533 17091 6056124 2024-02-24 17:45:22.187 2024-02-24 17:45:22.187 1300 FEE 437194 14545 6056125 2024-02-24 17:45:22.187 2024-02-24 17:45:22.187 11700 TIP 437194 18359 6056126 2024-02-24 17:45:22.554 2024-02-24 17:45:22.554 1300 FEE 437230 18816 6056127 2024-02-24 17:45:22.554 2024-02-24 17:45:22.554 11700 TIP 437230 9426 6056157 2024-02-24 17:48:18.514 2024-02-24 17:48:18.514 2700 FEE 437269 21037 6056158 2024-02-24 17:48:18.514 2024-02-24 17:48:18.514 24300 TIP 437269 21482 6056188 2024-02-24 17:53:55.774 2024-02-24 17:53:55.774 1000 FEE 437546 11423 6056204 2024-02-24 17:56:16.058 2024-02-24 17:56:16.058 2100 FEE 437408 4079 6056205 2024-02-24 17:56:16.058 2024-02-24 17:56:16.058 18900 TIP 437408 1773 6056210 2024-02-24 17:56:20.098 2024-02-24 17:56:20.098 2100 FEE 437472 20713 6056211 2024-02-24 17:56:20.098 2024-02-24 17:56:20.098 18900 TIP 437472 21271 6056214 2024-02-24 17:56:22.5 2024-02-24 17:56:22.5 2100 FEE 437190 18449 6056215 2024-02-24 17:56:22.5 2024-02-24 17:56:22.5 18900 TIP 437190 9184 6056237 2024-02-24 17:56:49.42 2024-02-24 17:56:49.42 2100 FEE 437528 19488 6056238 2024-02-24 17:56:49.42 2024-02-24 17:56:49.42 18900 TIP 437528 9329 6056242 2024-02-24 17:57:05.525 2024-02-24 17:57:05.525 6900 FEE 437524 663 6056243 2024-02-24 17:57:05.525 2024-02-24 17:57:05.525 62100 TIP 437524 685 6056257 2024-02-24 18:02:40.185 2024-02-24 18:02:40.185 1000 FEE 437551 2711 6056275 2024-02-24 18:04:31.643 2024-02-24 18:04:31.643 3300 FEE 437238 20280 6056276 2024-02-24 18:04:31.643 2024-02-24 18:04:31.643 29700 TIP 437238 5112 6056287 2024-02-24 18:04:53.891 2024-02-24 18:04:53.891 3300 FEE 437332 1352 6056288 2024-02-24 18:04:53.891 2024-02-24 18:04:53.891 29700 TIP 437332 20143 6056295 2024-02-24 18:05:38.234 2024-02-24 18:05:38.234 10000 FEE 437552 20963 6056296 2024-02-24 18:05:38.234 2024-02-24 18:05:38.234 90000 TIP 437552 21067 6056299 2024-02-24 18:05:39.852 2024-02-24 18:05:39.852 100 FEE 437552 7847 6056300 2024-02-24 18:05:39.852 2024-02-24 18:05:39.852 900 TIP 437552 11164 6056301 2024-02-24 18:05:40.01 2024-02-24 18:05:40.01 100 FEE 437552 14774 6056302 2024-02-24 18:05:40.01 2024-02-24 18:05:40.01 900 TIP 437552 928 6056317 2024-02-24 18:05:41.491 2024-02-24 18:05:41.491 100 FEE 437552 11430 6056318 2024-02-24 18:05:41.491 2024-02-24 18:05:41.491 900 TIP 437552 19637 6056319 2024-02-24 18:05:41.837 2024-02-24 18:05:41.837 100 FEE 437552 720 6056320 2024-02-24 18:05:41.837 2024-02-24 18:05:41.837 900 TIP 437552 20972 6056322 2024-02-24 18:06:05.363 2024-02-24 18:06:05.363 1000 FEE 437554 9177 6056324 2024-02-24 18:06:12.732 2024-02-24 18:06:12.732 3300 FEE 437276 14271 6056325 2024-02-24 18:06:12.732 2024-02-24 18:06:12.732 29700 TIP 437276 768 6056328 2024-02-24 18:06:15.476 2024-02-24 18:06:15.476 3300 FEE 437190 20326 6056329 2024-02-24 18:06:15.476 2024-02-24 18:06:15.476 29700 TIP 437190 1577 6056335 2024-02-24 18:06:26.131 2024-02-24 18:06:26.131 1000 FEE 437555 18280 6056341 2024-02-24 18:07:01.746 2024-02-24 18:07:01.746 3300 FEE 437524 17046 6056342 2024-02-24 18:07:01.746 2024-02-24 18:07:01.746 29700 TIP 437524 777 6056346 2024-02-24 18:07:03.52 2024-02-24 18:07:03.52 3300 FEE 437524 10591 6056347 2024-02-24 18:07:03.52 2024-02-24 18:07:03.52 29700 TIP 437524 4079 6056373 2024-02-24 18:09:30.076 2024-02-24 18:09:30.076 500 FEE 437512 12562 6056374 2024-02-24 18:09:30.076 2024-02-24 18:09:30.076 4500 TIP 437512 16270 6056377 2024-02-24 18:09:30.308 2024-02-24 18:09:30.308 500 FEE 437512 21547 6056378 2024-02-24 18:09:30.308 2024-02-24 18:09:30.308 4500 TIP 437512 19153 6056387 2024-02-24 18:09:32.509 2024-02-24 18:09:32.509 500 FEE 437233 11423 6056388 2024-02-24 18:09:32.509 2024-02-24 18:09:32.509 4500 TIP 437233 3729 6056421 2024-02-24 18:12:14.852 2024-02-24 18:12:14.852 1000 FEE 437563 10608 6056453 2024-02-24 18:18:42.305 2024-02-24 18:18:42.305 500 FEE 437417 20647 6056454 2024-02-24 18:18:42.305 2024-02-24 18:18:42.305 4500 TIP 437417 18680 6056455 2024-02-24 18:18:45.696 2024-02-24 18:18:45.696 500 FEE 437408 20613 6056456 2024-02-24 18:18:45.696 2024-02-24 18:18:45.696 4500 TIP 437408 20452 6056468 2024-02-24 18:20:00.752 2024-02-24 18:20:00.752 100 FEE 437235 17953 6056469 2024-02-24 18:20:00.752 2024-02-24 18:20:00.752 900 TIP 437235 18199 6056493 2024-02-24 18:27:40.753 2024-02-24 18:27:40.753 1000 FEE 437565 17817 6056514 2024-02-24 18:29:32 2024-02-24 18:29:32 3400 FEE 437403 18736 6056515 2024-02-24 18:29:32 2024-02-24 18:29:32 30600 TIP 437403 5003 6056516 2024-02-24 18:29:50.552 2024-02-24 18:29:50.552 10000 FEE 437550 20036 6056517 2024-02-24 18:29:50.552 2024-02-24 18:29:50.552 90000 TIP 437550 2460 6056540 2024-02-24 18:31:23.672 2024-02-24 18:31:23.672 78000 FEE 437562 19417 6056541 2024-02-24 18:31:23.672 2024-02-24 18:31:23.672 702000 TIP 437562 6361 6056580 2024-02-24 18:35:41.911 2024-02-24 18:35:41.911 1000 FEE 437181 21352 6056581 2024-02-24 18:35:41.911 2024-02-24 18:35:41.911 9000 TIP 437181 13216 6056585 2024-02-24 18:36:06.602 2024-02-24 18:36:06.602 1000 FEE 437545 19459 6056586 2024-02-24 18:36:06.602 2024-02-24 18:36:06.602 9000 TIP 437545 10490 6056595 2024-02-24 18:36:42.54 2024-02-24 18:36:42.54 1000 FEE 437411 7766 6056596 2024-02-24 18:36:42.54 2024-02-24 18:36:42.54 9000 TIP 437411 15560 6056604 2024-02-24 18:37:24.127 2024-02-24 18:37:24.127 1000 FEE 437571 9517 6056605 2024-02-24 18:37:24.325 2024-02-24 18:37:24.325 100000 FEE 383302 19332 6056606 2024-02-24 18:37:24.325 2024-02-24 18:37:24.325 900000 TIP 383302 1814 6056614 2024-02-24 18:38:35.444 2024-02-24 18:38:35.444 1000 FEE 383309 20433 6056615 2024-02-24 18:38:35.444 2024-02-24 18:38:35.444 9000 TIP 383309 1515 6056616 2024-02-24 18:38:35.692 2024-02-24 18:38:35.692 1000 FEE 383309 1534 6056617 2024-02-24 18:38:35.692 2024-02-24 18:38:35.692 9000 TIP 383309 6202 6056620 2024-02-24 18:38:57.721 2024-02-24 18:38:57.721 1000 FEE 383888 1705 6056621 2024-02-24 18:38:57.721 2024-02-24 18:38:57.721 9000 TIP 383888 18659 6056639 2024-02-24 18:39:50.705 2024-02-24 18:39:50.705 3200 FEE 437569 2151 6056640 2024-02-24 18:39:50.705 2024-02-24 18:39:50.705 28800 TIP 437569 12708 6056653 2024-02-24 18:40:50.337 2024-02-24 18:40:50.337 1000 FEE 383506 20287 6056654 2024-02-24 18:40:50.337 2024-02-24 18:40:50.337 9000 TIP 383506 20964 6056660 2024-02-24 18:40:59.927 2024-02-24 18:40:59.927 1000 FEE 437578 18402 6056671 2024-02-24 18:42:00.634 2024-02-24 18:42:00.634 1000 FEE 437580 10519 6056713 2024-02-24 18:48:29.493 2024-02-24 18:48:29.493 1000 FEE 437337 7960 6056714 2024-02-24 18:48:29.493 2024-02-24 18:48:29.493 9000 TIP 437337 16847 6056717 2024-02-24 18:48:30.842 2024-02-24 18:48:30.842 1000 FEE 437408 21222 6056718 2024-02-24 18:48:30.842 2024-02-24 18:48:30.842 9000 TIP 437408 21539 6056732 2024-02-24 18:49:43.061 2024-02-24 18:49:43.061 1000 FEE 437197 2508 6056733 2024-02-24 18:49:43.061 2024-02-24 18:49:43.061 9000 TIP 437197 989 6055968 2024-02-24 17:35:49.535 2024-02-24 17:35:49.535 4500 TIP 437430 10549 6056004 2024-02-24 17:37:36.852 2024-02-24 17:37:36.852 10000 FEE 437506 2829 6056005 2024-02-24 17:37:36.852 2024-02-24 17:37:36.852 90000 TIP 437506 12951 6056060 2024-02-24 17:42:22.548 2024-02-24 17:42:22.548 6900 FEE 437454 2711 6056061 2024-02-24 17:42:22.548 2024-02-24 17:42:22.548 62100 TIP 437454 880 6056080 2024-02-24 17:42:36.45 2024-02-24 17:42:36.45 6900 FEE 437454 8289 6056081 2024-02-24 17:42:36.45 2024-02-24 17:42:36.45 62100 TIP 437454 12158 6056086 2024-02-24 17:42:36.964 2024-02-24 17:42:36.964 6900 FEE 437454 10490 6056087 2024-02-24 17:42:36.964 2024-02-24 17:42:36.964 62100 TIP 437454 21180 6056120 2024-02-24 17:44:41.593 2024-02-24 17:44:41.593 1000 FEE 437533 21021 6056121 2024-02-24 17:44:41.593 2024-02-24 17:44:41.593 9000 TIP 437533 16513 6056131 2024-02-24 17:45:50.609 2024-02-24 17:45:50.609 1000 FEE 437533 18909 6056132 2024-02-24 17:45:50.609 2024-02-24 17:45:50.609 9000 TIP 437533 998 6056143 2024-02-24 17:47:32.078 2024-02-24 17:47:32.078 1000 FEE 437540 21444 6056145 2024-02-24 17:47:50.585 2024-02-24 17:47:50.585 100 FEE 437233 1221 6056146 2024-02-24 17:47:50.585 2024-02-24 17:47:50.585 900 TIP 437233 1489 6056159 2024-02-24 17:48:18.72 2024-02-24 17:48:18.72 2700 FEE 437269 10493 6056160 2024-02-24 17:48:18.72 2024-02-24 17:48:18.72 24300 TIP 437269 15326 6056165 2024-02-24 17:48:21.545 2024-02-24 17:48:21.545 2700 FEE 437269 646 6056166 2024-02-24 17:48:21.545 2024-02-24 17:48:21.545 24300 TIP 437269 17109 6056167 2024-02-24 17:48:21.904 2024-02-24 17:48:21.904 0 FEE 437531 3439 6056168 2024-02-24 17:48:29.123 2024-02-24 17:48:29.123 2100 FEE 437454 18241 6056169 2024-02-24 17:48:29.123 2024-02-24 17:48:29.123 18900 TIP 437454 15732 6056187 2024-02-24 17:53:33.211 2024-02-24 17:53:33.211 1000 FEE 437545 16309 6056191 2024-02-24 17:54:30.559 2024-02-24 17:54:30.559 2100 FEE 437531 20299 6056192 2024-02-24 17:54:30.559 2024-02-24 17:54:30.559 18900 TIP 437531 1673 6056206 2024-02-24 17:56:18.025 2024-02-24 17:56:18.025 2100 FEE 437454 19815 6056207 2024-02-24 17:56:18.025 2024-02-24 17:56:18.025 18900 TIP 437454 21012 6056208 2024-02-24 17:56:18.655 2024-02-24 17:56:18.655 2100 FEE 437238 18357 6056209 2024-02-24 17:56:18.655 2024-02-24 17:56:18.655 18900 TIP 437238 18836 6056216 2024-02-24 17:56:23.619 2024-02-24 17:56:23.619 2100 FEE 437502 6594 6056217 2024-02-24 17:56:23.619 2024-02-24 17:56:23.619 18900 TIP 437502 1060 6056220 2024-02-24 17:56:25.228 2024-02-24 17:56:25.228 2100 FEE 437403 20776 6056221 2024-02-24 17:56:25.228 2024-02-24 17:56:25.228 18900 TIP 437403 21413 6056223 2024-02-24 17:56:27.308 2024-02-24 17:56:27.308 2100 FEE 437370 4819 6056224 2024-02-24 17:56:27.308 2024-02-24 17:56:27.308 18900 TIP 437370 4259 6056227 2024-02-24 17:56:47.28 2024-02-24 17:56:47.28 2100 FEE 437528 17183 6056228 2024-02-24 17:56:47.28 2024-02-24 17:56:47.28 18900 TIP 437528 20715 6056244 2024-02-24 17:57:33.24 2024-02-24 17:57:33.24 4000 FEE 437539 20619 6056245 2024-02-24 17:57:33.24 2024-02-24 17:57:33.24 36000 TIP 437539 8916 6056264 2024-02-24 18:04:01.383 2024-02-24 18:04:01.383 1000 FEE 437553 16270 6056266 2024-02-24 18:04:17.712 2024-02-24 18:04:17.712 0 FEE 437553 20381 6056267 2024-02-24 18:04:17.932 2024-02-24 18:04:17.932 3300 FEE 437233 16830 6056268 2024-02-24 18:04:17.932 2024-02-24 18:04:17.932 29700 TIP 437233 17494 6056271 2024-02-24 18:04:18.819 2024-02-24 18:04:18.819 3300 FEE 437269 2529 6056272 2024-02-24 18:04:18.819 2024-02-24 18:04:18.819 29700 TIP 437269 4768 6056290 2024-02-24 18:05:09.048 2024-02-24 18:05:09.048 0 FEE 437553 9336 6056291 2024-02-24 18:05:32.559 2024-02-24 18:05:32.559 3300 FEE 437425 10638 6056292 2024-02-24 18:05:32.559 2024-02-24 18:05:32.559 29700 TIP 437425 8289 6056330 2024-02-24 18:06:18.975 2024-02-24 18:06:18.975 3300 FEE 437454 21463 6056331 2024-02-24 18:06:18.975 2024-02-24 18:06:18.975 29700 TIP 437454 21342 6056332 2024-02-24 18:06:19.346 2024-02-24 18:06:19.346 3300 FEE 437454 13046 6056333 2024-02-24 18:06:19.346 2024-02-24 18:06:19.346 29700 TIP 437454 1784 6056338 2024-02-24 18:06:38.594 2024-02-24 18:06:38.594 3300 FEE 437502 994 6056339 2024-02-24 18:06:38.594 2024-02-24 18:06:38.594 29700 TIP 437502 940 6056352 2024-02-24 18:08:12.171 2024-02-24 18:08:12.171 3300 FEE 437526 8376 6056353 2024-02-24 18:08:12.171 2024-02-24 18:08:12.171 29700 TIP 437526 17798 6056354 2024-02-24 18:08:19.885 2024-02-24 18:08:19.885 0 FEE 437558 9307 6056357 2024-02-24 18:08:24.067 2024-02-24 18:08:24.067 3300 FEE 437526 20563 6056358 2024-02-24 18:08:24.067 2024-02-24 18:08:24.067 29700 TIP 437526 15556 6056363 2024-02-24 18:09:00.709 2024-02-24 18:09:00.709 1000 FEE 437559 10056 6056383 2024-02-24 18:09:30.678 2024-02-24 18:09:30.678 500 FEE 437512 5703 6056384 2024-02-24 18:09:30.678 2024-02-24 18:09:30.678 4500 TIP 437512 19902 6056393 2024-02-24 18:09:33.019 2024-02-24 18:09:33.019 500 FEE 437233 27 6056394 2024-02-24 18:09:33.019 2024-02-24 18:09:33.019 4500 TIP 437233 13204 6056403 2024-02-24 18:09:34.055 2024-02-24 18:09:34.055 1000 FEE 437233 16562 6056404 2024-02-24 18:09:34.055 2024-02-24 18:09:34.055 9000 TIP 437233 10693 6056412 2024-02-24 18:11:30.484 2024-02-24 18:11:30.484 100 FEE 437502 2213 6056413 2024-02-24 18:11:30.484 2024-02-24 18:11:30.484 900 TIP 437502 19494 6056423 2024-02-24 18:13:28.049 2024-02-24 18:13:28.049 0 FEE 437561 20911 6056426 2024-02-24 18:14:02.628 2024-02-24 18:14:02.628 500 FEE 437495 9330 6056427 2024-02-24 18:14:02.628 2024-02-24 18:14:02.628 4500 TIP 437495 8074 6056431 2024-02-24 18:14:56.045 2024-02-24 18:14:56.045 500 FEE 437454 19471 6056432 2024-02-24 18:14:56.045 2024-02-24 18:14:56.045 4500 TIP 437454 13216 6056438 2024-02-24 18:15:17.861 2024-02-24 18:15:17.861 500 FEE 437370 18904 6056439 2024-02-24 18:15:17.861 2024-02-24 18:15:17.861 4500 TIP 437370 21361 6056440 2024-02-24 18:15:18.053 2024-02-24 18:15:18.053 500 FEE 437370 7654 6056441 2024-02-24 18:15:18.053 2024-02-24 18:15:18.053 4500 TIP 437370 18209 6056449 2024-02-24 18:18:39.13 2024-02-24 18:18:39.13 500 FEE 437425 16649 6056450 2024-02-24 18:18:39.13 2024-02-24 18:18:39.13 4500 TIP 437425 18819 6056451 2024-02-24 18:18:42.014 2024-02-24 18:18:42.014 500 FEE 437417 9820 6056452 2024-02-24 18:18:42.014 2024-02-24 18:18:42.014 4500 TIP 437417 3440 6056471 2024-02-24 18:20:56.95 2024-02-24 18:20:56.95 1000 FEE 437564 17041 6056482 2024-02-24 18:26:05.563 2024-02-24 18:26:05.563 5000 FEE 388609 5708 6056483 2024-02-24 18:26:05.563 2024-02-24 18:26:05.563 45000 TIP 388609 19640 6056494 2024-02-24 18:27:48.051 2024-02-24 18:27:48.051 3200 FEE 436950 20837 6056495 2024-02-24 18:27:48.051 2024-02-24 18:27:48.051 28800 TIP 436950 17050 6056503 2024-02-24 18:28:14.476 2024-02-24 18:28:14.476 1000 FEE 437472 18815 6056504 2024-02-24 18:28:14.476 2024-02-24 18:28:14.476 9000 TIP 437472 17953 6056512 2024-02-24 18:29:28.313 2024-02-24 18:29:28.313 3400 FEE 437403 19158 6056513 2024-02-24 18:29:28.313 2024-02-24 18:29:28.313 30600 TIP 437403 715 6056518 2024-02-24 18:30:00.253 2024-02-24 18:30:00.253 1000 FEE 437233 987 6056519 2024-02-24 18:30:00.253 2024-02-24 18:30:00.253 9000 TIP 437233 9246 6056561 2024-02-24 18:34:39.688 2024-02-24 18:34:39.688 10000 FEE 437238 14169 6056562 2024-02-24 18:34:39.688 2024-02-24 18:34:39.688 90000 TIP 437238 18529 6056566 2024-02-24 18:35:16.155 2024-02-24 18:35:16.155 3200 FEE 437472 12736 6056567 2024-02-24 18:35:16.155 2024-02-24 18:35:16.155 28800 TIP 437472 4388 6056587 2024-02-24 18:36:09.641 2024-02-24 18:36:09.641 1000 POLL 437472 15703 6056107 2024-02-24 17:43:03.153 2024-02-24 17:43:03.153 1000 STREAM 141924 20717 6056111 2024-02-24 17:44:03.172 2024-02-24 17:44:03.172 1000 STREAM 141924 1472 6056123 2024-02-24 17:45:03.188 2024-02-24 17:45:03.188 1000 STREAM 141924 19613 6056148 2024-02-24 17:48:03.311 2024-02-24 17:48:03.311 1000 STREAM 141924 14465 6056174 2024-02-24 17:50:03.328 2024-02-24 17:50:03.328 1000 STREAM 141924 13198 6056178 2024-02-24 17:51:03.332 2024-02-24 17:51:03.332 1000 STREAM 141924 16424 6056179 2024-02-24 17:52:03.363 2024-02-24 17:52:03.363 1000 STREAM 141924 13204 6056180 2024-02-24 17:53:03.372 2024-02-24 17:53:03.372 1000 STREAM 141924 8284 6056189 2024-02-24 17:54:03.377 2024-02-24 17:54:03.377 1000 STREAM 141924 20439 6056194 2024-02-24 17:55:03.385 2024-02-24 17:55:03.385 1000 STREAM 141924 19930 6056195 2024-02-24 17:56:03.379 2024-02-24 17:56:03.379 1000 STREAM 141924 21067 6056241 2024-02-24 17:57:03.393 2024-02-24 17:57:03.393 1000 STREAM 141924 17741 6056137 2024-02-24 17:46:03.19 2024-02-24 17:46:03.19 1000 STREAM 141924 5809 6056142 2024-02-24 17:47:03.317 2024-02-24 17:47:03.317 1000 STREAM 141924 4819 6056172 2024-02-24 17:49:03.315 2024-02-24 17:49:03.315 1000 STREAM 141924 16355 6056250 2024-02-24 18:00:03.431 2024-02-24 18:00:03.431 1000 STREAM 141924 19403 6056475 2024-02-24 18:24:01.931 2024-02-24 18:24:01.931 1000 STREAM 141924 18664 6119571 2024-02-29 21:37:04.944 2024-02-29 21:37:04.944 1000 STREAM 141924 8245 6119696 2024-02-29 21:56:05.103 2024-02-29 21:56:05.103 1000 STREAM 141924 16347 6119709 2024-02-29 21:59:05.115 2024-02-29 21:59:05.115 1000 STREAM 141924 5578 6119743 2024-02-29 22:04:05.152 2024-02-29 22:04:05.152 1000 STREAM 141924 9844 6119787 2024-02-29 22:10:05.158 2024-02-29 22:10:05.158 1000 STREAM 141924 10934 6119805 2024-02-29 22:13:05.159 2024-02-29 22:13:05.159 1000 STREAM 141924 17392 6119815 2024-02-29 22:14:05.166 2024-02-29 22:14:05.166 1000 STREAM 141924 14080 6119821 2024-02-29 22:15:05.165 2024-02-29 22:15:05.165 1000 STREAM 141924 20514 6056212 2024-02-24 17:56:20.626 2024-02-24 17:56:20.626 2100 FEE 437181 17209 6056213 2024-02-24 17:56:20.626 2024-02-24 17:56:20.626 18900 TIP 437181 15180 6056218 2024-02-24 17:56:24.267 2024-02-24 17:56:24.267 2100 FEE 437146 20657 6056219 2024-02-24 17:56:24.267 2024-02-24 17:56:24.267 18900 TIP 437146 13365 6056277 2024-02-24 18:04:32.331 2024-02-24 18:04:32.331 3300 FEE 437238 20555 6056278 2024-02-24 18:04:32.331 2024-02-24 18:04:32.331 29700 TIP 437238 19664 6056283 2024-02-24 18:04:45.751 2024-02-24 18:04:45.751 3300 FEE 437326 2075 6056284 2024-02-24 18:04:45.751 2024-02-24 18:04:45.751 29700 TIP 437326 18829 6056309 2024-02-24 18:05:40.618 2024-02-24 18:05:40.618 100 FEE 437552 19941 6056310 2024-02-24 18:05:40.618 2024-02-24 18:05:40.618 900 TIP 437552 14795 6056323 2024-02-24 18:06:08.427 2024-02-24 18:06:08.427 0 FEE 437553 18660 6056326 2024-02-24 18:06:14.868 2024-02-24 18:06:14.868 3300 FEE 437190 11866 6056327 2024-02-24 18:06:14.868 2024-02-24 18:06:14.868 29700 TIP 437190 19346 6056348 2024-02-24 18:07:33.253 2024-02-24 18:07:33.253 1000 FEE 437557 17570 6056359 2024-02-24 18:08:30.394 2024-02-24 18:08:30.394 9000 FEE 437526 15544 6056360 2024-02-24 18:08:30.394 2024-02-24 18:08:30.394 81000 TIP 437526 19537 6056395 2024-02-24 18:09:33.258 2024-02-24 18:09:33.258 500 FEE 437233 20036 6056396 2024-02-24 18:09:33.258 2024-02-24 18:09:33.258 4500 TIP 437233 4059 6056399 2024-02-24 18:09:33.565 2024-02-24 18:09:33.565 500 FEE 437233 21451 6056400 2024-02-24 18:09:33.565 2024-02-24 18:09:33.565 4500 TIP 437233 837 6056424 2024-02-24 18:14:02.467 2024-02-24 18:14:02.467 500 FEE 437495 1320 6056425 2024-02-24 18:14:02.467 2024-02-24 18:14:02.467 4500 TIP 437495 20577 6056479 2024-02-24 18:25:14.61 2024-02-24 18:25:14.61 10000 FEE 437562 4958 6056246 2024-02-24 17:58:03.396 2024-02-24 17:58:03.396 1000 STREAM 141924 2710 6056249 2024-02-24 17:59:03.401 2024-02-24 17:59:03.401 1000 STREAM 141924 12368 6056253 2024-02-24 18:01:03.413 2024-02-24 18:01:03.413 1000 STREAM 141924 20267 6056254 2024-02-24 18:02:03.412 2024-02-24 18:02:03.412 1000 STREAM 141924 2724 6056260 2024-02-24 18:03:03.42 2024-02-24 18:03:03.42 1000 STREAM 141924 16670 6056265 2024-02-24 18:04:03.426 2024-02-24 18:04:03.426 1000 STREAM 141924 2576 6119653 2024-02-29 21:45:44.2 2024-02-29 21:45:44.2 1000 FEE 444323 18454 6119663 2024-02-29 21:48:18.857 2024-02-29 21:48:18.857 1000 FEE 444326 15806 6119681 2024-02-29 21:52:13.924 2024-02-29 21:52:13.924 12800 FEE 444168 4035 6119682 2024-02-29 21:52:13.924 2024-02-29 21:52:13.924 115200 TIP 444168 5306 6119690 2024-02-29 21:55:08.425 2024-02-29 21:55:08.425 0 FEE 444329 19890 6119727 2024-02-29 22:00:49.733 2024-02-29 22:00:49.733 10100 FEE 444102 4076 6119728 2024-02-29 22:00:49.733 2024-02-29 22:00:49.733 90900 TIP 444102 2195 6119765 2024-02-29 22:07:05.802 2024-02-29 22:07:05.802 2100 FEE 443935 14045 6119766 2024-02-29 22:07:05.802 2024-02-29 22:07:05.802 18900 TIP 443935 21400 6119794 2024-02-29 22:10:46.431 2024-02-29 22:10:46.431 1000 FEE 444347 20015 6119806 2024-02-29 22:13:16.475 2024-02-29 22:13:16.475 1000 FEE 444344 11670 6119807 2024-02-29 22:13:16.475 2024-02-29 22:13:16.475 9000 TIP 444344 18264 6119817 2024-02-29 22:14:33.911 2024-02-29 22:14:33.911 1000 FEE 444348 21012 6119818 2024-02-29 22:14:33.911 2024-02-29 22:14:33.911 9000 TIP 444348 18473 6119862 2024-02-29 22:20:28.33 2024-02-29 22:20:28.33 15000 FEE 444356 16230 6119866 2024-02-29 22:20:52.523 2024-02-29 22:20:52.523 7700 FEE 444288 11458 6119867 2024-02-29 22:20:52.523 2024-02-29 22:20:52.523 69300 TIP 444288 692 6119871 2024-02-29 22:21:01.447 2024-02-29 22:21:01.447 7700 FEE 444327 11956 6119872 2024-02-29 22:21:01.447 2024-02-29 22:21:01.447 69300 TIP 444327 17710 6119874 2024-02-29 22:21:38.476 2024-02-29 22:21:38.476 7700 FEE 444323 6149 6119875 2024-02-29 22:21:38.476 2024-02-29 22:21:38.476 69300 TIP 444323 2402 6119886 2024-02-29 22:22:34.595 2024-02-29 22:22:34.595 1000 FEE 444361 8508 6119905 2024-02-29 22:25:02.548 2024-02-29 22:25:02.548 10000 FEE 444173 2652 6119906 2024-02-29 22:25:02.548 2024-02-29 22:25:02.548 90000 TIP 444173 644 6119925 2024-02-29 22:27:55.908 2024-02-29 22:27:55.908 1000 FEE 444367 1505 6119936 2024-02-29 22:29:16.934 2024-02-29 22:29:16.934 10000 FEE 444366 9758 6119937 2024-02-29 22:29:16.934 2024-02-29 22:29:16.934 90000 TIP 444366 21048 6119971 2024-02-29 22:31:44.628 2024-02-29 22:31:44.628 7700 FEE 444365 16267 6119972 2024-02-29 22:31:44.628 2024-02-29 22:31:44.628 69300 TIP 444365 17226 6119975 2024-02-29 22:31:45.284 2024-02-29 22:31:45.284 7700 FEE 444365 21427 6119976 2024-02-29 22:31:45.284 2024-02-29 22:31:45.284 69300 TIP 444365 12946 6119977 2024-02-29 22:31:45.434 2024-02-29 22:31:45.434 7700 FEE 444365 16456 6119978 2024-02-29 22:31:45.434 2024-02-29 22:31:45.434 69300 TIP 444365 902 6119987 2024-02-29 22:33:19.474 2024-02-29 22:33:19.474 500 FEE 443799 1493 6119988 2024-02-29 22:33:19.474 2024-02-29 22:33:19.474 4500 TIP 443799 1628 6119997 2024-02-29 22:33:24.777 2024-02-29 22:33:24.777 500 FEE 442820 15271 6119998 2024-02-29 22:33:24.777 2024-02-29 22:33:24.777 4500 TIP 442820 20964 6120012 2024-02-29 22:34:38.441 2024-02-29 22:34:38.441 100000 FEE 444369 18581 6120070 2024-02-29 22:41:59.947 2024-02-29 22:41:59.947 500 FEE 444292 9276 6120071 2024-02-29 22:41:59.947 2024-02-29 22:41:59.947 4500 TIP 444292 8176 6120085 2024-02-29 22:45:02.428 2024-02-29 22:45:02.428 1000 FEE 444369 4167 6120086 2024-02-29 22:45:02.428 2024-02-29 22:45:02.428 9000 TIP 444369 7376 6120096 2024-02-29 22:45:07.901 2024-02-29 22:45:07.901 1000 FEE 444359 1198 6120097 2024-02-29 22:45:07.901 2024-02-29 22:45:07.901 9000 TIP 444359 18169 6120098 2024-02-29 22:45:08.122 2024-02-29 22:45:08.122 1000 FEE 444359 6310 6120099 2024-02-29 22:45:08.122 2024-02-29 22:45:08.122 9000 TIP 444359 712 6120111 2024-02-29 22:46:45.122 2024-02-29 22:46:45.122 1000 FEE 444376 746 6120113 2024-02-29 22:47:26.2 2024-02-29 22:47:26.2 1000 FEE 444377 18231 6120133 2024-02-29 22:48:55.046 2024-02-29 22:48:55.046 500 FEE 444073 1773 6120134 2024-02-29 22:48:55.046 2024-02-29 22:48:55.046 4500 TIP 444073 18511 6120143 2024-02-29 22:50:40.924 2024-02-29 22:50:40.924 6900 FEE 443836 7913 6120144 2024-02-29 22:50:40.924 2024-02-29 22:50:40.924 62100 TIP 443836 19005 6120159 2024-02-29 22:51:02.273 2024-02-29 22:51:02.273 2100 FEE 444304 15719 6120160 2024-02-29 22:51:02.273 2024-02-29 22:51:02.273 18900 TIP 444304 9335 6120161 2024-02-29 22:51:02.871 2024-02-29 22:51:02.871 2100 FEE 444304 12769 6120162 2024-02-29 22:51:02.871 2024-02-29 22:51:02.871 18900 TIP 444304 16788 6120163 2024-02-29 22:51:03.091 2024-02-29 22:51:03.091 2100 FEE 444304 1773 6120164 2024-02-29 22:51:03.091 2024-02-29 22:51:03.091 18900 TIP 444304 2749 6120173 2024-02-29 22:52:11.753 2024-02-29 22:52:11.753 1000 FEE 443861 4167 6120174 2024-02-29 22:52:11.753 2024-02-29 22:52:11.753 9000 TIP 443861 8664 6120190 2024-02-29 22:55:22.025 2024-02-29 22:55:22.025 1000 FEE 444078 18265 6120191 2024-02-29 22:55:22.025 2024-02-29 22:55:22.025 9000 TIP 444078 17415 6120197 2024-02-29 22:56:31.074 2024-02-29 22:56:31.074 1000 FEE 444385 20972 6120200 2024-02-29 22:56:54.48 2024-02-29 22:56:54.48 1000 FEE 444386 642 6120204 2024-02-29 22:57:12.443 2024-02-29 22:57:12.443 1000 FEE 444249 1833 6120205 2024-02-29 22:57:12.443 2024-02-29 22:57:12.443 9000 TIP 444249 1136 6120206 2024-02-29 22:57:13.176 2024-02-29 22:57:13.176 1000 FEE 444249 18637 6120207 2024-02-29 22:57:13.176 2024-02-29 22:57:13.176 9000 TIP 444249 18727 6120225 2024-02-29 23:00:04.889 2024-02-29 23:00:04.889 100000 FEE 444388 18402 6120237 2024-02-29 23:00:39.722 2024-02-29 23:00:39.722 300 FEE 443557 11275 6120238 2024-02-29 23:00:39.722 2024-02-29 23:00:39.722 2700 TIP 443557 1195 6120280 2024-02-29 23:04:24.998 2024-02-29 23:04:24.998 100 FEE 444386 17209 6120281 2024-02-29 23:04:24.998 2024-02-29 23:04:24.998 900 TIP 444386 11760 6120288 2024-02-29 23:04:26.222 2024-02-29 23:04:26.222 100 FEE 444386 16667 6120289 2024-02-29 23:04:26.222 2024-02-29 23:04:26.222 900 TIP 444386 16879 6120305 2024-02-29 23:07:57.862 2024-02-29 23:07:57.862 6900 FEE 443399 9845 6120306 2024-02-29 23:07:57.862 2024-02-29 23:07:57.862 62100 TIP 443399 1652 6120326 2024-02-29 23:10:44.79 2024-02-29 23:10:44.79 6900 FEE 444255 1286 6120327 2024-02-29 23:10:44.79 2024-02-29 23:10:44.79 62100 TIP 444255 12139 6120342 2024-02-29 23:11:47.023 2024-02-29 23:11:47.023 9000 FEE 444384 2844 6120343 2024-02-29 23:11:47.023 2024-02-29 23:11:47.023 81000 TIP 444384 13878 6120351 2024-02-29 23:12:47.04 2024-02-29 23:12:47.04 1000 FEE 443942 16354 6120352 2024-02-29 23:12:47.04 2024-02-29 23:12:47.04 9000 TIP 443942 716 6120371 2024-02-29 23:14:49.364 2024-02-29 23:14:49.364 1000 FEE 444403 8729 6120390 2024-02-29 23:19:53.141 2024-02-29 23:19:53.141 1000 FEE 444210 11498 6120391 2024-02-29 23:19:53.141 2024-02-29 23:19:53.141 9000 TIP 444210 12744 6120393 2024-02-29 23:20:46.558 2024-02-29 23:20:46.558 1000 FEE 444406 704 6120401 2024-02-29 23:23:34.03 2024-02-29 23:23:34.03 100000 FEE 444408 854 6120418 2024-02-29 23:27:51.951 2024-02-29 23:27:51.951 100 FEE 444208 6191 6120419 2024-02-29 23:27:51.951 2024-02-29 23:27:51.951 900 TIP 444208 21453 6120505 2024-02-29 23:52:36.629 2024-02-29 23:52:36.629 3300 FEE 444278 886 6120506 2024-02-29 23:52:36.629 2024-02-29 23:52:36.629 29700 TIP 444278 11458 6120513 2024-02-29 23:52:44.26 2024-02-29 23:52:44.26 3300 FEE 444390 703 6120514 2024-02-29 23:52:44.26 2024-02-29 23:52:44.26 29700 TIP 444390 697 6120531 2024-02-29 23:56:50.18 2024-02-29 23:56:50.18 2600 FEE 443712 685 6120532 2024-02-29 23:56:50.18 2024-02-29 23:56:50.18 23400 TIP 443712 17046 6056279 2024-02-24 18:04:32.625 2024-02-24 18:04:32.625 3300 FEE 437238 2123 6056280 2024-02-24 18:04:32.625 2024-02-24 18:04:32.625 29700 TIP 437238 20409 6056340 2024-02-24 18:07:00.262 2024-02-24 18:07:00.262 1000 FEE 437556 18116 6056349 2024-02-24 18:07:59.55 2024-02-24 18:07:59.55 1000 FEE 437558 671 6056361 2024-02-24 18:08:35.864 2024-02-24 18:08:35.864 3300 FEE 437493 701 6056362 2024-02-24 18:08:35.864 2024-02-24 18:08:35.864 29700 TIP 437493 6749 6056385 2024-02-24 18:09:30.839 2024-02-24 18:09:30.839 500 FEE 437512 19854 6056386 2024-02-24 18:09:30.839 2024-02-24 18:09:30.839 4500 TIP 437512 917 6056391 2024-02-24 18:09:32.852 2024-02-24 18:09:32.852 500 FEE 437233 10469 6056392 2024-02-24 18:09:32.852 2024-02-24 18:09:32.852 4500 TIP 437233 15474 6056401 2024-02-24 18:09:33.715 2024-02-24 18:09:33.715 500 FEE 437233 18454 6056402 2024-02-24 18:09:33.715 2024-02-24 18:09:33.715 4500 TIP 437233 21573 6056429 2024-02-24 18:14:16.3 2024-02-24 18:14:16.3 500 FEE 437313 18539 6056430 2024-02-24 18:14:16.3 2024-02-24 18:14:16.3 4500 TIP 437313 8168 6056436 2024-02-24 18:15:17.71 2024-02-24 18:15:17.71 500 FEE 437370 17183 6056437 2024-02-24 18:15:17.71 2024-02-24 18:15:17.71 4500 TIP 437370 18426 6056447 2024-02-24 18:18:38.589 2024-02-24 18:18:38.589 500 FEE 437425 19842 6056448 2024-02-24 18:18:38.589 2024-02-24 18:18:38.589 4500 TIP 437425 21067 6056476 2024-02-24 18:24:44.104 2024-02-24 18:24:44.104 21100 FEE 437269 20970 6056477 2024-02-24 18:24:44.104 2024-02-24 18:24:44.104 189900 TIP 437269 20018 6056484 2024-02-24 18:26:15.118 2024-02-24 18:26:15.118 3200 FEE 434516 19322 6056485 2024-02-24 18:26:15.118 2024-02-24 18:26:15.118 28800 TIP 434516 4378 6056532 2024-02-24 18:31:12.445 2024-02-24 18:31:12.445 1000 FEE 437562 16536 6056533 2024-02-24 18:31:12.445 2024-02-24 18:31:12.445 9000 TIP 437562 9611 6056538 2024-02-24 18:31:15.696 2024-02-24 18:31:15.696 4000 FEE 437554 1124 6056539 2024-02-24 18:31:15.696 2024-02-24 18:31:15.696 36000 TIP 437554 11821 6056543 2024-02-24 18:31:46.354 2024-02-24 18:31:46.354 4000 FEE 437531 640 6056544 2024-02-24 18:31:46.354 2024-02-24 18:31:46.354 36000 TIP 437531 17541 6056563 2024-02-24 18:34:40.638 2024-02-24 18:34:40.638 1000 FEE 437568 20058 6056564 2024-02-24 18:35:00.716 2024-02-24 18:35:00.716 1000 FEE 437569 20691 6056599 2024-02-24 18:36:59.125 2024-02-24 18:36:59.125 78000 FEE 383302 9167 6056600 2024-02-24 18:36:59.125 2024-02-24 18:36:59.125 702000 TIP 383302 14905 6056602 2024-02-24 18:37:04.336 2024-02-24 18:37:04.336 4200 FEE 437269 776 6056603 2024-02-24 18:37:04.336 2024-02-24 18:37:04.336 37800 TIP 437269 20586 6056643 2024-02-24 18:39:59.419 2024-02-24 18:39:59.419 0 FEE 437574 21453 6056647 2024-02-24 18:40:07.405 2024-02-24 18:40:07.405 9900 FEE 437558 18336 6056648 2024-02-24 18:40:07.405 2024-02-24 18:40:07.405 89100 TIP 437558 1609 6056711 2024-02-24 18:48:29.423 2024-02-24 18:48:29.423 1000 FEE 437454 14074 6056712 2024-02-24 18:48:29.423 2024-02-24 18:48:29.423 9000 TIP 437454 20581 6056719 2024-02-24 18:48:32.606 2024-02-24 18:48:32.606 1000 FEE 437218 20412 6056720 2024-02-24 18:48:32.606 2024-02-24 18:48:32.606 9000 TIP 437218 19535 6056723 2024-02-24 18:48:44.3 2024-02-24 18:48:44.3 1000 FEE 437256 3353 6056724 2024-02-24 18:48:44.3 2024-02-24 18:48:44.3 9000 TIP 437256 2151 6056727 2024-02-24 18:48:47.302 2024-02-24 18:48:47.302 1000 FEE 437420 5757 6056728 2024-02-24 18:48:47.302 2024-02-24 18:48:47.302 9000 TIP 437420 21451 6056749 2024-02-24 18:51:42.34 2024-02-24 18:51:42.34 1000 FEE 437568 18923 6056750 2024-02-24 18:51:42.34 2024-02-24 18:51:42.34 9000 TIP 437568 3656 6056753 2024-02-24 18:51:43.426 2024-02-24 18:51:43.426 1000 FEE 437568 14168 6056754 2024-02-24 18:51:43.426 2024-02-24 18:51:43.426 9000 TIP 437568 18199 6056755 2024-02-24 18:51:43.852 2024-02-24 18:51:43.852 1000 FEE 437568 997 6056756 2024-02-24 18:51:43.852 2024-02-24 18:51:43.852 9000 TIP 437568 20080 6056759 2024-02-24 18:52:04.473 2024-02-24 18:52:04.473 1000 FEE 437565 937 6056760 2024-02-24 18:52:04.473 2024-02-24 18:52:04.473 9000 TIP 437565 9367 6056779 2024-02-24 18:54:34.862 2024-02-24 18:54:34.862 10000 FEE 437505 18241 6056780 2024-02-24 18:54:34.862 2024-02-24 18:54:34.862 90000 TIP 437505 15577 6056787 2024-02-24 18:56:06.019 2024-02-24 18:56:06.019 3300 FEE 432554 20490 6056788 2024-02-24 18:56:06.019 2024-02-24 18:56:06.019 29700 TIP 432554 15728 6056791 2024-02-24 18:56:17.919 2024-02-24 18:56:17.919 1000 FEE 437594 18930 6056800 2024-02-24 18:57:33.671 2024-02-24 18:57:33.671 1000 FEE 437502 20220 6056801 2024-02-24 18:57:33.671 2024-02-24 18:57:33.671 9000 TIP 437502 18116 6056846 2024-02-24 19:01:26.572 2024-02-24 19:01:26.572 50000 FEE 435517 16194 6056847 2024-02-24 19:01:26.572 2024-02-24 19:01:26.572 450000 TIP 435517 11523 6056903 2024-02-24 19:12:38.754 2024-02-24 19:12:38.754 10000 FEE 437612 713 6056910 2024-02-24 19:14:22.018 2024-02-24 19:14:22.018 1000 FEE 437454 20738 6056911 2024-02-24 19:14:22.018 2024-02-24 19:14:22.018 9000 TIP 437454 739 6056969 2024-02-24 19:18:41.988 2024-02-24 19:18:41.988 1000 FEE 437619 19151 6056991 2024-02-24 19:20:30.13 2024-02-24 19:20:30.13 0 FEE 437618 1273 6056998 2024-02-24 19:23:30.436 2024-02-24 19:23:30.436 1000 FEE 437607 634 6056999 2024-02-24 19:23:30.436 2024-02-24 19:23:30.436 9000 TIP 437607 11522 6057006 2024-02-24 19:25:04.337 2024-02-24 19:25:04.337 0 FEE 437626 1394 6057008 2024-02-24 19:25:27.962 2024-02-24 19:25:27.962 1000 FEE 437627 13249 6057035 2024-02-24 19:29:12.024 2024-02-24 19:29:12.024 17000 FEE 437631 2681 6057041 2024-02-24 19:30:00.578 2024-02-24 19:30:00.578 1000 FEE 437611 19259 6057042 2024-02-24 19:30:00.578 2024-02-24 19:30:00.578 9000 TIP 437611 685 6057044 2024-02-24 19:30:14.572 2024-02-24 19:30:14.572 1000 FEE 437287 20744 6057045 2024-02-24 19:30:14.572 2024-02-24 19:30:14.572 9000 TIP 437287 17891 6057048 2024-02-24 19:31:05.352 2024-02-24 19:31:05.352 2100 FEE 437531 16406 6057049 2024-02-24 19:31:05.352 2024-02-24 19:31:05.352 18900 TIP 437531 5500 6057088 2024-02-24 19:33:18.788 2024-02-24 19:33:18.788 1000 FEE 436491 17331 6057089 2024-02-24 19:33:18.788 2024-02-24 19:33:18.788 9000 TIP 436491 18473 6057110 2024-02-24 19:38:25.34 2024-02-24 19:38:25.34 1000 FEE 437403 3347 6057111 2024-02-24 19:38:25.34 2024-02-24 19:38:25.34 9000 TIP 437403 16270 6057116 2024-02-24 19:39:01.239 2024-02-24 19:39:01.239 1000 FEE 437502 1650 6057117 2024-02-24 19:39:01.239 2024-02-24 19:39:01.239 9000 TIP 437502 10530 6057140 2024-02-24 19:40:36.5 2024-02-24 19:40:36.5 2100 FEE 437631 974 6057141 2024-02-24 19:40:36.5 2024-02-24 19:40:36.5 18900 TIP 437631 20603 6057146 2024-02-24 19:41:04.531 2024-02-24 19:41:04.531 2100 FEE 437601 16670 6057147 2024-02-24 19:41:04.531 2024-02-24 19:41:04.531 18900 TIP 437601 5775 6057163 2024-02-24 19:43:59.588 2024-02-24 19:43:59.588 1000 FEE 437531 9916 6057164 2024-02-24 19:43:59.588 2024-02-24 19:43:59.588 9000 TIP 437531 13781 6057185 2024-02-24 19:45:09.391 2024-02-24 19:45:09.391 100 FEE 437539 670 6057186 2024-02-24 19:45:09.391 2024-02-24 19:45:09.391 900 TIP 437539 19980 6057201 2024-02-24 19:46:07.631 2024-02-24 19:46:07.631 1000 FEE 201598 18956 6057202 2024-02-24 19:46:07.631 2024-02-24 19:46:07.631 9000 TIP 201598 1505 6057203 2024-02-24 19:46:07.829 2024-02-24 19:46:07.829 1000 FEE 201598 14472 6057204 2024-02-24 19:46:07.829 2024-02-24 19:46:07.829 9000 TIP 201598 5791 6057229 2024-02-24 19:46:42.212 2024-02-24 19:46:42.212 900 FEE 437615 12057 6057230 2024-02-24 19:46:42.212 2024-02-24 19:46:42.212 8100 TIP 437615 848 6057237 2024-02-24 19:47:02.097 2024-02-24 19:47:02.097 9000 FEE 437594 8080 6057238 2024-02-24 19:47:02.097 2024-02-24 19:47:02.097 81000 TIP 437594 2367 6057246 2024-02-24 19:47:47.972 2024-02-24 19:47:47.972 9000 FEE 437454 20710 6057247 2024-02-24 19:47:47.972 2024-02-24 19:47:47.972 81000 TIP 437454 13878 6057248 2024-02-24 19:47:49.764 2024-02-24 19:47:49.764 90000 FEE 437611 712 6057249 2024-02-24 19:47:49.764 2024-02-24 19:47:49.764 810000 TIP 437611 20084 6057250 2024-02-24 19:47:52.962 2024-02-24 19:47:52.962 90000 FEE 437233 1142 6057251 2024-02-24 19:47:52.962 2024-02-24 19:47:52.962 810000 TIP 437233 16250 6056350 2024-02-24 18:08:03.488 2024-02-24 18:08:03.488 1000 STREAM 141924 21060 6056428 2024-02-24 18:14:03.532 2024-02-24 18:14:03.532 1000 STREAM 141924 7675 6056444 2024-02-24 18:16:03.515 2024-02-24 18:16:03.515 1000 STREAM 141924 679 6056470 2024-02-24 18:20:03.537 2024-02-24 18:20:03.537 1000 STREAM 141924 13878 6056472 2024-02-24 18:21:03.553 2024-02-24 18:21:03.553 1000 STREAM 141924 18387 6056474 2024-02-24 18:23:03.542 2024-02-24 18:23:03.542 1000 STREAM 141924 11458 6056478 2024-02-24 18:25:03.549 2024-02-24 18:25:03.549 1000 STREAM 141924 1120 6119656 2024-02-29 21:46:17.67 2024-02-29 21:46:17.67 57600 TIP 444168 19888 6119679 2024-02-29 21:51:49.328 2024-02-29 21:51:49.328 0 FEE 444325 19284 6119683 2024-02-29 21:52:41.553 2024-02-29 21:52:41.553 1000 FEE 444329 14080 6119694 2024-02-29 21:56:01.734 2024-02-29 21:56:01.734 1000 FEE 444327 1729 6119695 2024-02-29 21:56:01.734 2024-02-29 21:56:01.734 9000 TIP 444327 18363 6119703 2024-02-29 21:56:51.717 2024-02-29 21:56:51.717 1000 FEE 444173 1007 6119704 2024-02-29 21:56:51.717 2024-02-29 21:56:51.717 9000 TIP 444173 7847 6119710 2024-02-29 21:59:38.135 2024-02-29 21:59:38.135 1000 FEE 444332 21057 6119711 2024-02-29 21:59:49.179 2024-02-29 21:59:49.179 5700 FEE 444330 20523 6119712 2024-02-29 21:59:49.179 2024-02-29 21:59:49.179 51300 TIP 444330 18402 6119713 2024-02-29 21:59:55.253 2024-02-29 21:59:55.253 1000 FEE 444289 7425 6119714 2024-02-29 21:59:55.253 2024-02-29 21:59:55.253 9000 TIP 444289 19938 6119744 2024-02-29 22:04:05.382 2024-02-29 22:04:05.382 1000 FEE 444337 20117 6119750 2024-02-29 22:04:37.113 2024-02-29 22:04:37.113 1000 FEE 444096 8176 6119751 2024-02-29 22:04:37.113 2024-02-29 22:04:37.113 9000 TIP 444096 20852 6119760 2024-02-29 22:06:13.489 2024-02-29 22:06:13.489 1000 FEE 444340 1261 6119763 2024-02-29 22:06:59.95 2024-02-29 22:06:59.95 1000 FEE 444341 16929 6119771 2024-02-29 22:07:29.321 2024-02-29 22:07:29.321 1000 FEE 444342 17714 6119776 2024-02-29 22:08:34.171 2024-02-29 22:08:34.171 2100 FEE 444230 1697 6119777 2024-02-29 22:08:34.171 2024-02-29 22:08:34.171 18900 TIP 444230 21051 6119822 2024-02-29 22:15:33.844 2024-02-29 22:15:33.844 1000 FEE 444351 19848 6119823 2024-02-29 22:15:38.076 2024-02-29 22:15:38.076 100 FEE 239323 18690 6119824 2024-02-29 22:15:38.076 2024-02-29 22:15:38.076 900 TIP 239323 21148 6119827 2024-02-29 22:16:10.12 2024-02-29 22:16:10.12 100 FEE 239292 21482 6119828 2024-02-29 22:16:10.12 2024-02-29 22:16:10.12 900 TIP 239292 5387 6119833 2024-02-29 22:17:31.625 2024-02-29 22:17:31.625 100 FEE 444078 11999 6119834 2024-02-29 22:17:31.625 2024-02-29 22:17:31.625 900 TIP 444078 3360 6119846 2024-02-29 22:19:37.116 2024-02-29 22:19:37.116 1000 FEE 444355 19796 6119891 2024-02-29 22:23:25.442 2024-02-29 22:23:25.442 900 FEE 444258 705 6119892 2024-02-29 22:23:25.442 2024-02-29 22:23:25.442 8100 TIP 444258 16230 6119908 2024-02-29 22:25:08.575 2024-02-29 22:25:08.575 100 FEE 443823 17148 6119909 2024-02-29 22:25:08.575 2024-02-29 22:25:08.575 900 TIP 443823 15196 6119916 2024-02-29 22:26:18.803 2024-02-29 22:26:18.803 5700 FEE 444353 11678 6119917 2024-02-29 22:26:18.803 2024-02-29 22:26:18.803 51300 TIP 444353 697 6119923 2024-02-29 22:27:03.953 2024-02-29 22:27:03.953 1000 FEE 444366 20272 6119955 2024-02-29 22:31:28.487 2024-02-29 22:31:28.487 7700 FEE 443915 20826 6119956 2024-02-29 22:31:28.487 2024-02-29 22:31:28.487 69300 TIP 443915 18351 6119967 2024-02-29 22:31:44.19 2024-02-29 22:31:44.19 7700 FEE 444365 21466 6119968 2024-02-29 22:31:44.19 2024-02-29 22:31:44.19 69300 TIP 444365 18460 6120021 2024-02-29 22:35:32.54 2024-02-29 22:35:32.54 1000 FEE 444371 21603 6120054 2024-02-29 22:39:01.874 2024-02-29 22:39:01.874 3000 FEE 443712 15594 6120055 2024-02-29 22:39:01.874 2024-02-29 22:39:01.874 27000 TIP 443712 16660 6120064 2024-02-29 22:40:47.175 2024-02-29 22:40:47.175 1000 FEE 444373 15045 6120087 2024-02-29 22:45:03.05 2024-02-29 22:45:03.05 2000 FEE 444369 16912 6120088 2024-02-29 22:45:03.05 2024-02-29 22:45:03.05 18000 TIP 444369 1785 6120094 2024-02-29 22:45:07.636 2024-02-29 22:45:07.636 1000 FEE 444359 10490 6120095 2024-02-29 22:45:07.636 2024-02-29 22:45:07.636 9000 TIP 444359 1960 6120105 2024-02-29 22:46:10.233 2024-02-29 22:46:10.233 100 FEE 438880 650 6120106 2024-02-29 22:46:10.233 2024-02-29 22:46:10.233 900 TIP 438880 13406 6120157 2024-02-29 22:51:01.682 2024-02-29 22:51:01.682 2100 FEE 444304 20023 6120158 2024-02-29 22:51:01.682 2024-02-29 22:51:01.682 18900 TIP 444304 1718 6120171 2024-02-29 22:52:11.126 2024-02-29 22:52:11.126 1000 FEE 443861 18526 6120172 2024-02-29 22:52:11.126 2024-02-29 22:52:11.126 9000 TIP 443861 1647 6120175 2024-02-29 22:52:12.375 2024-02-29 22:52:12.375 1000 FEE 443861 19524 6120176 2024-02-29 22:52:12.375 2024-02-29 22:52:12.375 9000 TIP 443861 986 6120183 2024-02-29 22:54:48.531 2024-02-29 22:54:48.531 100000 FEE 444384 1244 6120216 2024-02-29 22:58:49.828 2024-02-29 22:58:49.828 500 FEE 443902 15521 6120217 2024-02-29 22:58:49.828 2024-02-29 22:58:49.828 4500 TIP 443902 20891 6120221 2024-02-29 22:59:57.926 2024-02-29 22:59:57.926 500 FEE 443971 4654 6120222 2024-02-29 22:59:57.926 2024-02-29 22:59:57.926 4500 TIP 443971 20897 6120229 2024-02-29 23:00:31.813 2024-02-29 23:00:31.813 300 FEE 443557 5557 6120230 2024-02-29 23:00:31.813 2024-02-29 23:00:31.813 2700 TIP 443557 17237 6120263 2024-02-29 23:02:50.108 2024-02-29 23:02:50.108 800 FEE 444356 711 6120264 2024-02-29 23:02:50.108 2024-02-29 23:02:50.108 7200 TIP 444356 18873 6120301 2024-02-29 23:06:55.856 2024-02-29 23:06:55.856 200 FEE 444078 20301 6056480 2024-02-24 18:25:14.61 2024-02-24 18:25:14.61 90000 TIP 437562 696 6056490 2024-02-24 18:26:51.638 2024-02-24 18:26:51.638 5000 FEE 388984 713 6056491 2024-02-24 18:26:51.638 2024-02-24 18:26:51.638 45000 TIP 388984 19417 6056498 2024-02-24 18:27:58.729 2024-02-24 18:27:58.729 1000 FEE 437550 2576 6056499 2024-02-24 18:27:58.729 2024-02-24 18:27:58.729 9000 TIP 437550 15577 6056520 2024-02-24 18:30:02.387 2024-02-24 18:30:02.387 1000 FEE 437276 10693 6056521 2024-02-24 18:30:02.387 2024-02-24 18:30:02.387 9000 TIP 437276 13517 6056527 2024-02-24 18:30:15.609 2024-02-24 18:30:15.609 1000 FEE 437238 19403 6056528 2024-02-24 18:30:15.609 2024-02-24 18:30:15.609 9000 TIP 437238 15491 6056536 2024-02-24 18:31:14.215 2024-02-24 18:31:14.215 1000 FEE 437562 20015 6056537 2024-02-24 18:31:14.215 2024-02-24 18:31:14.215 9000 TIP 437562 1394 6056582 2024-02-24 18:35:53.538 2024-02-24 18:35:53.538 1000 FEE 437516 5128 6056583 2024-02-24 18:35:53.538 2024-02-24 18:35:53.538 9000 TIP 437516 9275 6056609 2024-02-24 18:37:39.555 2024-02-24 18:37:39.555 0 FEE 437571 683 6056611 2024-02-24 18:38:22.033 2024-02-24 18:38:22.033 1000 FEE 437572 18473 6056626 2024-02-24 18:38:58.326 2024-02-24 18:38:58.326 1000 FEE 383888 16309 6056627 2024-02-24 18:38:58.326 2024-02-24 18:38:58.326 9000 TIP 383888 21540 6056632 2024-02-24 18:39:00.817 2024-02-24 18:39:00.817 1000 FEE 437573 12245 6056649 2024-02-24 18:40:34.653 2024-02-24 18:40:34.653 1000 FEE 437575 1122 6056657 2024-02-24 18:40:51.343 2024-02-24 18:40:51.343 1000 FEE 383506 21386 6056658 2024-02-24 18:40:51.343 2024-02-24 18:40:51.343 9000 TIP 383506 21386 6056674 2024-02-24 18:42:43.42 2024-02-24 18:42:43.42 3200 FEE 437287 15386 6056675 2024-02-24 18:42:43.42 2024-02-24 18:42:43.42 28800 TIP 437287 18743 6056680 2024-02-24 18:42:58.469 2024-02-24 18:42:58.469 1000 FEE 436837 1505 6056681 2024-02-24 18:42:58.469 2024-02-24 18:42:58.469 9000 TIP 436837 19843 6056689 2024-02-24 18:44:12.608 2024-02-24 18:44:12.608 1000 FEE 437502 7553 6056690 2024-02-24 18:44:12.608 2024-02-24 18:44:12.608 9000 TIP 437502 5377 6056698 2024-02-24 18:45:28.242 2024-02-24 18:45:28.242 7700 FEE 437561 21242 6056699 2024-02-24 18:45:28.242 2024-02-24 18:45:28.242 69300 TIP 437561 9276 6056700 2024-02-24 18:45:45.047 2024-02-24 18:45:45.047 1000 FEE 437587 15690 6056702 2024-02-24 18:46:40.493 2024-02-24 18:46:40.493 100 FEE 437584 2780 6056703 2024-02-24 18:46:40.493 2024-02-24 18:46:40.493 900 TIP 437584 2576 6056709 2024-02-24 18:48:28.756 2024-02-24 18:48:28.756 1000 FEE 437269 17570 6056710 2024-02-24 18:48:28.756 2024-02-24 18:48:28.756 9000 TIP 437269 13903 6056742 2024-02-24 18:50:46.474 2024-02-24 18:50:46.474 100000 FEE 432135 7960 6056743 2024-02-24 18:50:46.474 2024-02-24 18:50:46.474 900000 TIP 432135 17722 6056774 2024-02-24 18:54:04.939 2024-02-24 18:54:04.939 0 FEE 436777 17602 6056785 2024-02-24 18:55:58.137 2024-02-24 18:55:58.137 0 FEE 436777 20564 6056805 2024-02-24 18:57:34.086 2024-02-24 18:57:34.086 1000 FEE 437502 20602 6056806 2024-02-24 18:57:34.086 2024-02-24 18:57:34.086 9000 TIP 437502 6533 6056822 2024-02-24 18:59:02 2024-02-24 18:59:02 0 FEE 437598 19815 6056824 2024-02-24 18:59:42.704 2024-02-24 18:59:42.704 1000 FEE 436894 7668 6056825 2024-02-24 18:59:42.704 2024-02-24 18:59:42.704 9000 TIP 436894 14688 6056826 2024-02-24 18:59:43.011 2024-02-24 18:59:43.011 10000 DONT_LIKE_THIS 437587 19346 6056842 2024-02-24 19:00:57.893 2024-02-24 19:00:57.893 1000 POLL 436759 10280 6056856 2024-02-24 19:01:31.841 2024-02-24 19:01:31.841 1000 FEE 437276 19537 6056857 2024-02-24 19:01:31.841 2024-02-24 19:01:31.841 9000 TIP 437276 18815 6056865 2024-02-24 19:01:54.563 2024-02-24 19:01:54.563 2500 FEE 437596 20090 6056866 2024-02-24 19:01:54.563 2024-02-24 19:01:54.563 22500 TIP 437596 9833 6056878 2024-02-24 19:04:56.911 2024-02-24 19:04:56.911 1000 FEE 437607 18731 6056882 2024-02-24 19:05:58.297 2024-02-24 19:05:58.297 1000 FEE 437403 21424 6056883 2024-02-24 19:05:58.297 2024-02-24 19:05:58.297 9000 TIP 437403 1298 6056899 2024-02-24 19:12:12.717 2024-02-24 19:12:12.717 1000 FEE 437610 16282 6056918 2024-02-24 19:14:25.881 2024-02-24 19:14:25.881 1000 FEE 437403 17541 6056919 2024-02-24 19:14:25.881 2024-02-24 19:14:25.881 9000 TIP 437403 20306 6056924 2024-02-24 19:14:45.519 2024-02-24 19:14:45.519 1000 FEE 437504 16350 6056925 2024-02-24 19:14:45.519 2024-02-24 19:14:45.519 9000 TIP 437504 20102 6056961 2024-02-24 19:17:53.361 2024-02-24 19:17:53.361 1000 FEE 437618 15115 6056966 2024-02-24 19:17:57.924 2024-02-24 19:17:57.924 12300 FEE 437598 11314 6056967 2024-02-24 19:17:57.924 2024-02-24 19:17:57.924 110700 TIP 437598 21624 6056975 2024-02-24 19:19:05.238 2024-02-24 19:19:05.238 1000 FEE 437620 5499 6056976 2024-02-24 19:19:07.573 2024-02-24 19:19:07.573 1000 FEE 437561 624 6056977 2024-02-24 19:19:07.573 2024-02-24 19:19:07.573 9000 TIP 437561 18387 6056983 2024-02-24 19:19:56.337 2024-02-24 19:19:56.337 1000 FEE 437495 16788 6056984 2024-02-24 19:19:56.337 2024-02-24 19:19:56.337 9000 TIP 437495 679 6057003 2024-02-24 19:24:04.906 2024-02-24 19:24:04.906 1000 FEE 437626 987 6057038 2024-02-24 19:29:49.941 2024-02-24 19:29:49.941 1000 FEE 437632 20646 6057050 2024-02-24 19:31:05.711 2024-02-24 19:31:05.711 4200 FEE 437531 21103 6057051 2024-02-24 19:31:05.711 2024-02-24 19:31:05.711 37800 TIP 437531 18517 6057056 2024-02-24 19:31:41.905 2024-02-24 19:31:41.905 700 FEE 437625 681 6057057 2024-02-24 19:31:41.905 2024-02-24 19:31:41.905 6300 TIP 437625 8326 6057101 2024-02-24 19:36:49.418 2024-02-24 19:36:49.418 0 FEE 437635 11144 6057112 2024-02-24 19:38:30.984 2024-02-24 19:38:30.984 1000 FEE 437454 20841 6057113 2024-02-24 19:38:30.984 2024-02-24 19:38:30.984 9000 TIP 437454 6268 6057148 2024-02-24 19:41:35.691 2024-02-24 19:41:35.691 2100 FEE 437550 20514 6057149 2024-02-24 19:41:35.691 2024-02-24 19:41:35.691 18900 TIP 437550 2327 6057161 2024-02-24 19:43:58.148 2024-02-24 19:43:58.148 1000 FEE 437531 3304 6057162 2024-02-24 19:43:58.148 2024-02-24 19:43:58.148 9000 TIP 437531 14959 6057175 2024-02-24 19:44:23.701 2024-02-24 19:44:23.701 0 FEE 437640 21254 6057211 2024-02-24 19:46:08.603 2024-02-24 19:46:08.603 1000 FEE 201598 21387 6057212 2024-02-24 19:46:08.603 2024-02-24 19:46:08.603 9000 TIP 201598 18313 6057221 2024-02-24 19:46:19.14 2024-02-24 19:46:19.14 1000 FEE 201722 9366 6057222 2024-02-24 19:46:19.14 2024-02-24 19:46:19.14 9000 TIP 201722 1720 6057257 2024-02-24 19:48:06.239 2024-02-24 19:48:06.239 900 FEE 437218 658 6057258 2024-02-24 19:48:06.239 2024-02-24 19:48:06.239 8100 TIP 437218 18675 6057270 2024-02-24 19:49:17.842 2024-02-24 19:49:17.842 90000 FEE 436759 13398 6057271 2024-02-24 19:49:17.842 2024-02-24 19:49:17.842 810000 TIP 436759 11885 6057289 2024-02-24 19:53:05.399 2024-02-24 19:53:05.399 10000 FEE 437642 992 6057297 2024-02-24 19:54:36.469 2024-02-24 19:54:36.469 2100 FEE 437181 17094 6057298 2024-02-24 19:54:36.469 2024-02-24 19:54:36.469 18900 TIP 437181 7583 6057300 2024-02-24 19:55:19.542 2024-02-24 19:55:19.542 1100 FEE 437269 5904 6057301 2024-02-24 19:55:19.542 2024-02-24 19:55:19.542 9900 TIP 437269 3729 6057320 2024-02-24 19:55:21.742 2024-02-24 19:55:21.742 1100 FEE 437611 21116 6057321 2024-02-24 19:55:21.742 2024-02-24 19:55:21.742 9900 TIP 437611 713 6057328 2024-02-24 19:55:22.776 2024-02-24 19:55:22.776 1100 FEE 437454 19941 6057329 2024-02-24 19:55:22.776 2024-02-24 19:55:22.776 9900 TIP 437454 21627 6057350 2024-02-24 19:56:28.31 2024-02-24 19:56:28.31 1000 FEE 437642 21003 6057351 2024-02-24 19:56:28.31 2024-02-24 19:56:28.31 9000 TIP 437642 768 6057377 2024-02-24 20:04:31.38 2024-02-24 20:04:31.38 3000 FEE 437646 671 6057378 2024-02-24 20:04:31.38 2024-02-24 20:04:31.38 27000 TIP 437646 1007 6056481 2024-02-24 18:26:02.825 2024-02-24 18:26:02.825 1000 STREAM 141924 6578 6056547 2024-02-24 18:32:02.839 2024-02-24 18:32:02.839 1000 STREAM 141924 9345 6119689 2024-02-29 21:55:05.113 2024-02-29 21:55:05.113 1000 STREAM 141924 21522 6119705 2024-02-29 21:57:05.117 2024-02-29 21:57:05.117 1000 STREAM 141924 21343 6119708 2024-02-29 21:58:05.124 2024-02-29 21:58:05.124 1000 STREAM 141924 16259 6119725 2024-02-29 22:00:05.127 2024-02-29 22:00:05.127 1000 STREAM 141924 14195 6119729 2024-02-29 22:01:05.123 2024-02-29 22:01:05.123 1000 STREAM 141924 19770 6119730 2024-02-29 22:02:05.135 2024-02-29 22:02:05.135 1000 STREAM 141924 9920 6119736 2024-02-29 22:03:05.135 2024-02-29 22:03:05.135 1000 STREAM 141924 9365 6119755 2024-02-29 22:05:05.145 2024-02-29 22:05:05.145 1000 STREAM 141924 1474 6119764 2024-02-29 22:07:05.149 2024-02-29 22:07:05.149 1000 STREAM 141924 20964 6119775 2024-02-29 22:08:05.149 2024-02-29 22:08:05.149 1000 STREAM 141924 715 6119779 2024-02-29 22:09:05.185 2024-02-29 22:09:05.185 1000 STREAM 141924 7992 6119798 2024-02-29 22:11:05.172 2024-02-29 22:11:05.172 1000 STREAM 141924 20619 6119803 2024-02-29 22:12:05.159 2024-02-29 22:12:05.159 1000 STREAM 141924 18232 6119851 2024-02-29 22:20:05.179 2024-02-29 22:20:05.179 1000 STREAM 141924 16942 6119888 2024-02-29 22:23:05.181 2024-02-29 22:23:05.181 1000 STREAM 141924 2123 6119898 2024-02-29 22:24:05.182 2024-02-29 22:24:05.182 1000 STREAM 141924 19322 6119907 2024-02-29 22:25:05.188 2024-02-29 22:25:05.188 1000 STREAM 141924 19531 6120061 2024-02-29 22:40:05.296 2024-02-29 22:40:05.296 1000 STREAM 141924 15063 6120178 2024-02-29 22:53:05.331 2024-02-29 22:53:05.331 1000 STREAM 141924 19759 6056489 2024-02-24 18:26:47.588 2024-02-24 18:26:47.588 45000 TIP 389418 17446 6056496 2024-02-24 18:27:49.134 2024-02-24 18:27:49.134 28800 FEE 436950 692 6056497 2024-02-24 18:27:49.134 2024-02-24 18:27:49.134 259200 TIP 436950 2748 6056501 2024-02-24 18:28:05.381 2024-02-24 18:28:05.381 1000 FEE 437539 21228 6056502 2024-02-24 18:28:05.381 2024-02-24 18:28:05.381 9000 TIP 437539 17226 6056509 2024-02-24 18:28:52.876 2024-02-24 18:28:52.876 900 FEE 437454 9159 6056510 2024-02-24 18:28:52.876 2024-02-24 18:28:52.876 8100 TIP 437454 27 6056523 2024-02-24 18:30:05.355 2024-02-24 18:30:05.355 1000 FEE 437181 5775 6056524 2024-02-24 18:30:05.355 2024-02-24 18:30:05.355 9000 TIP 437181 21421 6056525 2024-02-24 18:30:13.86 2024-02-24 18:30:13.86 1000 FEE 437545 18528 6056526 2024-02-24 18:30:13.86 2024-02-24 18:30:13.86 9000 TIP 437545 688 6056545 2024-02-24 18:31:47.572 2024-02-24 18:31:47.572 4000 FEE 437531 16679 6056546 2024-02-24 18:31:47.572 2024-02-24 18:31:47.572 36000 TIP 437531 876 6056550 2024-02-24 18:33:11.793 2024-02-24 18:33:11.793 2100 FEE 437531 16867 6056551 2024-02-24 18:33:11.793 2024-02-24 18:33:11.793 18900 TIP 437531 1401 6056554 2024-02-24 18:33:12.167 2024-02-24 18:33:12.167 2100 FEE 437531 616 6056555 2024-02-24 18:33:12.167 2024-02-24 18:33:12.167 18900 TIP 437531 1003 6056556 2024-02-24 18:33:12.213 2024-02-24 18:33:12.213 2100 FEE 437531 21418 6056557 2024-02-24 18:33:12.213 2024-02-24 18:33:12.213 18900 TIP 437531 18828 6056558 2024-02-24 18:33:31.467 2024-02-24 18:33:31.467 4000 FEE 437567 20730 6056559 2024-02-24 18:33:31.467 2024-02-24 18:33:31.467 36000 TIP 437567 20153 6056570 2024-02-24 18:35:26.15 2024-02-24 18:35:26.15 1000 FEE 437269 21323 6056571 2024-02-24 18:35:26.15 2024-02-24 18:35:26.15 9000 TIP 437269 7983 6056574 2024-02-24 18:35:35.883 2024-02-24 18:35:35.883 1000 FEE 437454 18017 6056575 2024-02-24 18:35:35.883 2024-02-24 18:35:35.883 9000 TIP 437454 20781 6056578 2024-02-24 18:35:40.507 2024-02-24 18:35:40.507 1000 FEE 437276 20257 6056579 2024-02-24 18:35:40.507 2024-02-24 18:35:40.507 9000 TIP 437276 9418 6056618 2024-02-24 18:38:55.397 2024-02-24 18:38:55.397 1000 FEE 383888 13763 6056619 2024-02-24 18:38:55.397 2024-02-24 18:38:55.397 9000 TIP 383888 20243 6056624 2024-02-24 18:38:58.196 2024-02-24 18:38:58.196 1000 FEE 383888 18040 6056625 2024-02-24 18:38:58.196 2024-02-24 18:38:58.196 9000 TIP 383888 18449 6056630 2024-02-24 18:39:00.802 2024-02-24 18:39:00.802 1000 FEE 383888 18231 6056631 2024-02-24 18:39:00.802 2024-02-24 18:39:00.802 9000 TIP 383888 1718 6056665 2024-02-24 18:41:57.549 2024-02-24 18:41:57.549 1300 FEE 437539 1173 6056666 2024-02-24 18:41:57.549 2024-02-24 18:41:57.549 11700 TIP 437539 985 6056725 2024-02-24 18:48:44.622 2024-02-24 18:48:44.622 1000 FEE 437256 770 6056726 2024-02-24 18:48:44.622 2024-02-24 18:48:44.622 9000 TIP 437256 17722 6056736 2024-02-24 18:49:59.116 2024-02-24 18:49:59.116 1000 FEE 437589 9246 6056745 2024-02-24 18:51:33.841 2024-02-24 18:51:33.841 2100 FEE 437454 11898 6056746 2024-02-24 18:51:33.841 2024-02-24 18:51:33.841 18900 TIP 437454 19826 6056747 2024-02-24 18:51:41.82 2024-02-24 18:51:41.82 1000 FEE 437568 632 6056748 2024-02-24 18:51:41.82 2024-02-24 18:51:41.82 9000 TIP 437568 6421 6056815 2024-02-24 18:57:54.968 2024-02-24 18:57:54.968 1000 FEE 437573 16684 6056816 2024-02-24 18:57:54.968 2024-02-24 18:57:54.968 9000 TIP 437573 1060 6056848 2024-02-24 19:01:26.712 2024-02-24 19:01:26.712 1000 FEE 437269 19732 6056849 2024-02-24 19:01:26.712 2024-02-24 19:01:26.712 9000 TIP 437269 13782 6056850 2024-02-24 19:01:27.067 2024-02-24 19:01:27.067 1000 FEE 437233 16406 6056851 2024-02-24 19:01:27.067 2024-02-24 19:01:27.067 9000 TIP 437233 1571 6056860 2024-02-24 19:01:46.378 2024-02-24 19:01:46.378 50000 FEE 428941 11328 6056861 2024-02-24 19:01:46.378 2024-02-24 19:01:46.378 450000 TIP 428941 16808 6056864 2024-02-24 19:01:52.272 2024-02-24 19:01:52.272 1000 FEE 437604 21585 6056870 2024-02-24 19:02:23.361 2024-02-24 19:02:23.361 1000 FEE 437605 1480 6056876 2024-02-24 19:04:53.949 2024-02-24 19:04:53.949 1000 FEE 437050 11164 6056877 2024-02-24 19:04:53.949 2024-02-24 19:04:53.949 9000 TIP 437050 14472 6056895 2024-02-24 19:11:27.056 2024-02-24 19:11:27.056 3200 FEE 437597 1326 6056896 2024-02-24 19:11:27.056 2024-02-24 19:11:27.056 28800 TIP 437597 21062 6056900 2024-02-24 19:12:24.975 2024-02-24 19:12:24.975 1000000 FEE 437611 5538 6056901 2024-02-24 19:12:24.975 2024-02-24 19:12:24.975 25000000 BOOST 437611 12483 6056941 2024-02-24 19:15:40.503 2024-02-24 19:15:40.503 1000 FEE 437616 1472 6056951 2024-02-24 19:16:29.961 2024-02-24 19:16:29.961 1000 FEE 437617 18828 6056970 2024-02-24 19:18:43.866 2024-02-24 19:18:43.866 1000 FEE 437512 21627 6056971 2024-02-24 19:18:43.866 2024-02-24 19:18:43.866 9000 TIP 437512 660 6056982 2024-02-24 19:19:54.432 2024-02-24 19:19:54.432 1000 FEE 437621 20080 6057004 2024-02-24 19:24:44.576 2024-02-24 19:24:44.576 0 FEE 437626 4763 6057007 2024-02-24 19:25:23.519 2024-02-24 19:25:23.519 0 FEE 437626 13204 6057009 2024-02-24 19:25:38.277 2024-02-24 19:25:38.277 0 FEE 437626 11897 6057014 2024-02-24 19:27:51.052 2024-02-24 19:27:51.052 1000 FEE 437269 17147 6057015 2024-02-24 19:27:51.052 2024-02-24 19:27:51.052 9000 TIP 437269 1605 6057022 2024-02-24 19:28:00.291 2024-02-24 19:28:00.291 1000 FEE 437181 21600 6057023 2024-02-24 19:28:00.291 2024-02-24 19:28:00.291 9000 TIP 437181 18736 6057032 2024-02-24 19:29:01.453 2024-02-24 19:29:01.453 1000 FEE 437411 814 6057033 2024-02-24 19:29:01.453 2024-02-24 19:29:01.453 9000 TIP 437411 18994 6057060 2024-02-24 19:31:42.523 2024-02-24 19:31:42.523 700 FEE 437625 1090 6057061 2024-02-24 19:31:42.523 2024-02-24 19:31:42.523 6300 TIP 437625 3440 6057067 2024-02-24 19:32:15.074 2024-02-24 19:32:15.074 1000 FEE 437622 16879 6057068 2024-02-24 19:32:15.074 2024-02-24 19:32:15.074 9000 TIP 437622 10862 6057083 2024-02-24 19:32:59.364 2024-02-24 19:32:59.364 15400 FEE 437611 20006 6057084 2024-02-24 19:32:59.364 2024-02-24 19:32:59.364 138600 TIP 437611 20502 6057122 2024-02-24 19:39:02.586 2024-02-24 19:39:02.586 1000 FEE 437502 7966 6057123 2024-02-24 19:39:02.586 2024-02-24 19:39:02.586 9000 TIP 437502 10944 6057127 2024-02-24 19:40:03.505 2024-02-24 19:40:03.505 1000 FEE 437403 16954 6057128 2024-02-24 19:40:03.505 2024-02-24 19:40:03.505 9000 TIP 437403 16754 6057136 2024-02-24 19:40:24.272 2024-02-24 19:40:24.272 10000 FEE 437531 2577 6057137 2024-02-24 19:40:24.272 2024-02-24 19:40:24.272 90000 TIP 437531 20680 6057150 2024-02-24 19:41:59.193 2024-02-24 19:41:59.193 0 FEE 437635 674 6057157 2024-02-24 19:43:04.795 2024-02-24 19:43:04.795 1000 FEE 437482 1577 6057158 2024-02-24 19:43:04.795 2024-02-24 19:43:04.795 9000 TIP 437482 19996 6057166 2024-02-24 19:44:02.314 2024-02-24 19:44:02.314 100 FEE 437611 761 6057167 2024-02-24 19:44:02.314 2024-02-24 19:44:02.314 900 TIP 437611 866 6057168 2024-02-24 19:44:02.527 2024-02-24 19:44:02.527 900 FEE 437611 20434 6057169 2024-02-24 19:44:02.527 2024-02-24 19:44:02.527 8100 TIP 437611 20481 6057180 2024-02-24 19:44:33.731 2024-02-24 19:44:33.731 9000 FEE 437531 4076 6057181 2024-02-24 19:44:33.731 2024-02-24 19:44:33.731 81000 TIP 437531 21413 6057193 2024-02-24 19:46:06.877 2024-02-24 19:46:06.877 1000 FEE 201598 5171 6057194 2024-02-24 19:46:06.877 2024-02-24 19:46:06.877 9000 TIP 201598 7760 6057231 2024-02-24 19:46:51.511 2024-02-24 19:46:51.511 11100 FEE 437630 20624 6057232 2024-02-24 19:46:51.511 2024-02-24 19:46:51.511 99900 TIP 437630 11329 6057252 2024-02-24 19:47:53.62 2024-02-24 19:47:53.62 90000 FEE 437403 18454 6057253 2024-02-24 19:47:53.62 2024-02-24 19:47:53.62 810000 TIP 437403 759 6057274 2024-02-24 19:49:56.415 2024-02-24 19:49:56.415 21000 DONT_LIKE_THIS 437616 11789 6056492 2024-02-24 18:27:03.476 2024-02-24 18:27:03.476 1000 STREAM 141924 20231 6056644 2024-02-24 18:40:03.048 2024-02-24 18:40:03.048 1000 STREAM 141924 18449 6056683 2024-02-24 18:43:03.055 2024-02-24 18:43:03.055 1000 STREAM 141924 18231 6056686 2024-02-24 18:44:03.047 2024-02-24 18:44:03.047 1000 STREAM 141924 16788 6056692 2024-02-24 18:45:03.051 2024-02-24 18:45:03.051 1000 STREAM 141924 14152 6056706 2024-02-24 18:47:03.065 2024-02-24 18:47:03.065 1000 STREAM 141924 11829 6056758 2024-02-24 18:52:03.098 2024-02-24 18:52:03.098 1000 STREAM 141924 5961 6056783 2024-02-24 18:55:03.112 2024-02-24 18:55:03.112 1000 STREAM 141924 12175 6056887 2024-02-24 19:08:03.694 2024-02-24 19:08:03.694 1000 STREAM 141924 19322 6056890 2024-02-24 19:11:03.721 2024-02-24 19:11:03.721 1000 STREAM 141924 5703 6119691 2024-02-29 21:55:37.855 2024-02-29 21:55:37.855 1000 FEE 444331 17494 6119719 2024-02-29 22:00:01.723 2024-02-29 22:00:01.723 1000 FEE 444289 16432 6119720 2024-02-29 22:00:01.723 2024-02-29 22:00:01.723 9000 TIP 444289 20168 6119721 2024-02-29 22:00:02.051 2024-02-29 22:00:02.051 2100 FEE 444191 20479 6119722 2024-02-29 22:00:02.051 2024-02-29 22:00:02.051 18900 TIP 444191 1802 6119761 2024-02-29 22:06:55.413 2024-02-29 22:06:55.413 2100 FEE 444304 21619 6119762 2024-02-29 22:06:55.413 2024-02-29 22:06:55.413 18900 TIP 444304 7760 6119769 2024-02-29 22:07:14.888 2024-02-29 22:07:14.888 2100 FEE 444021 16653 6119770 2024-02-29 22:07:14.888 2024-02-29 22:07:14.888 18900 TIP 444021 626 6119783 2024-02-29 22:10:00.675 2024-02-29 22:10:00.675 1000 FEE 444339 10056 6119784 2024-02-29 22:10:00.675 2024-02-29 22:10:00.675 9000 TIP 444339 5829 6119813 2024-02-29 22:14:03.291 2024-02-29 22:14:03.291 100 FEE 442899 1626 6119814 2024-02-29 22:14:03.291 2024-02-29 22:14:03.291 900 TIP 442899 11999 6119868 2024-02-29 22:20:56.707 2024-02-29 22:20:56.707 7700 FEE 444247 5829 6119869 2024-02-29 22:20:56.707 2024-02-29 22:20:56.707 69300 TIP 444247 14280 6119894 2024-02-29 22:23:31.308 2024-02-29 22:23:31.308 2100 FEE 444046 21119 6119895 2024-02-29 22:23:31.308 2024-02-29 22:23:31.308 18900 TIP 444046 19638 6119920 2024-02-29 22:26:33.498 2024-02-29 22:26:33.498 1700 FEE 444236 2367 6119921 2024-02-29 22:26:33.498 2024-02-29 22:26:33.498 15300 TIP 444236 4802 6119940 2024-02-29 22:29:52.569 2024-02-29 22:29:52.569 1100 FEE 443410 18154 6119941 2024-02-29 22:29:52.569 2024-02-29 22:29:52.569 9900 TIP 443410 2735 6120001 2024-02-29 22:33:29.414 2024-02-29 22:33:29.414 500 FEE 443712 17682 6120002 2024-02-29 22:33:29.414 2024-02-29 22:33:29.414 4500 TIP 443712 11522 6120015 2024-02-29 22:34:56.837 2024-02-29 22:34:56.837 1100 FEE 443268 20715 6120016 2024-02-29 22:34:56.837 2024-02-29 22:34:56.837 9900 TIP 443268 17166 6120026 2024-02-29 22:36:10.04 2024-02-29 22:36:10.04 5700 FEE 444371 3709 6120027 2024-02-29 22:36:10.04 2024-02-29 22:36:10.04 51300 TIP 444371 7966 6120032 2024-02-29 22:36:20.802 2024-02-29 22:36:20.802 1000 FEE 444359 18219 6120033 2024-02-29 22:36:20.802 2024-02-29 22:36:20.802 9000 TIP 444359 17365 6120035 2024-02-29 22:37:47.505 2024-02-29 22:37:47.505 100 FEE 153738 10586 6120036 2024-02-29 22:37:47.505 2024-02-29 22:37:47.505 900 TIP 153738 15719 6120057 2024-02-29 22:39:06.274 2024-02-29 22:39:06.274 500 FEE 443616 18524 6120058 2024-02-29 22:39:06.274 2024-02-29 22:39:06.274 4500 TIP 443616 21079 6120100 2024-02-29 22:45:52.295 2024-02-29 22:45:52.295 10000 FEE 444365 19810 6120101 2024-02-29 22:45:52.295 2024-02-29 22:45:52.295 90000 TIP 444365 9426 6120107 2024-02-29 22:46:15.638 2024-02-29 22:46:15.638 100 FEE 438795 2513 6120108 2024-02-29 22:46:15.638 2024-02-29 22:46:15.638 900 TIP 438795 19909 6120149 2024-02-29 22:50:45.927 2024-02-29 22:50:45.927 2100 FEE 444139 20981 6120150 2024-02-29 22:50:45.927 2024-02-29 22:50:45.927 18900 TIP 444139 17050 6120188 2024-02-29 22:55:21.554 2024-02-29 22:55:21.554 1000 FEE 444078 20376 6120189 2024-02-29 22:55:21.554 2024-02-29 22:55:21.554 9000 TIP 444078 19142 6120223 2024-02-29 23:00:02.322 2024-02-29 23:00:02.322 500 FEE 443993 3304 6120224 2024-02-29 23:00:02.322 2024-02-29 23:00:02.322 4500 TIP 443993 18641 6120227 2024-02-29 23:00:05.383 2024-02-29 23:00:05.383 1000 FEE 444389 4415 6120233 2024-02-29 23:00:39.056 2024-02-29 23:00:39.056 1000 FEE 444179 8423 6120234 2024-02-29 23:00:39.056 2024-02-29 23:00:39.056 9000 TIP 444179 19189 6120235 2024-02-29 23:00:39.661 2024-02-29 23:00:39.661 1000 FEE 444179 11678 6120236 2024-02-29 23:00:39.661 2024-02-29 23:00:39.661 9000 TIP 444179 4798 6120256 2024-02-29 23:01:52.387 2024-02-29 23:01:52.387 1000 FEE 444391 1985 6120258 2024-02-29 23:02:01.834 2024-02-29 23:02:01.834 6900 FEE 444097 18199 6120259 2024-02-29 23:02:01.834 2024-02-29 23:02:01.834 62100 TIP 444097 20599 6120290 2024-02-29 23:04:32.937 2024-02-29 23:04:32.937 1100 FEE 443483 20090 6120291 2024-02-29 23:04:32.937 2024-02-29 23:04:32.937 9900 TIP 443483 14260 6120308 2024-02-29 23:08:09.922 2024-02-29 23:08:09.922 2500 FEE 444168 1480 6120309 2024-02-29 23:08:09.922 2024-02-29 23:08:09.922 22500 TIP 444168 629 6120324 2024-02-29 23:10:26.894 2024-02-29 23:10:26.894 900 FEE 444365 2101 6120325 2024-02-29 23:10:26.894 2024-02-29 23:10:26.894 8100 TIP 444365 19043 6120331 2024-02-29 23:11:14.847 2024-02-29 23:11:14.847 1000 FEE 444398 16834 6120366 2024-02-29 23:13:49.886 2024-02-29 23:13:49.886 1000 FEE 443734 7587 6120367 2024-02-29 23:13:49.886 2024-02-29 23:13:49.886 9000 TIP 443734 8045 6120381 2024-02-29 23:17:22.027 2024-02-29 23:17:22.027 5000 FEE 443105 4538 6120382 2024-02-29 23:17:22.027 2024-02-29 23:17:22.027 45000 TIP 443105 5455 6120402 2024-02-29 23:23:46.088 2024-02-29 23:23:46.088 1000 FEE 444409 1959 6120414 2024-02-29 23:27:10.216 2024-02-29 23:27:10.216 100 FEE 444168 16649 6120415 2024-02-29 23:27:10.216 2024-02-29 23:27:10.216 900 TIP 444168 19322 6120425 2024-02-29 23:29:17.603 2024-02-29 23:29:17.603 1100 FEE 443379 20454 6120426 2024-02-29 23:29:17.603 2024-02-29 23:29:17.603 9900 TIP 443379 16387 6120443 2024-02-29 23:35:28.7 2024-02-29 23:35:28.7 2100 FEE 444258 7989 6120444 2024-02-29 23:35:28.7 2024-02-29 23:35:28.7 18900 TIP 444258 13169 6120464 2024-02-29 23:40:01.465 2024-02-29 23:40:01.465 21000 FEE 444392 20272 6120465 2024-02-29 23:40:01.465 2024-02-29 23:40:01.465 189000 TIP 444392 3360 6120474 2024-02-29 23:45:57.77 2024-02-29 23:45:57.77 1000 FEE 444418 866 6120515 2024-02-29 23:52:48.866 2024-02-29 23:52:48.866 1000 FEE 444423 20280 6120520 2024-02-29 23:54:51.049 2024-02-29 23:54:51.049 1000 FEE 444426 902 6120525 2024-02-29 23:56:15.719 2024-02-29 23:56:15.719 7700 FEE 444401 10554 6120526 2024-02-29 23:56:15.719 2024-02-29 23:56:15.719 69300 TIP 444401 3400 6120543 2024-02-29 23:58:18.902 2024-02-29 23:58:18.902 1000 FEE 444431 679 6120544 2024-02-29 23:58:25.033 2024-02-29 23:58:25.033 500 FEE 444077 11938 6120545 2024-02-29 23:58:25.033 2024-02-29 23:58:25.033 4500 TIP 444077 16351 6120551 2024-02-29 23:59:17.988 2024-02-29 23:59:17.988 10000 FEE 444173 20738 6120552 2024-02-29 23:59:17.988 2024-02-29 23:59:17.988 90000 TIP 444173 5757 6120553 2024-02-29 23:59:44.199 2024-02-29 23:59:44.199 1000 FEE 444432 16505 6056500 2024-02-24 18:28:02.829 2024-02-24 18:28:02.829 1000 STREAM 141924 7773 6056522 2024-02-24 18:30:02.834 2024-02-24 18:30:02.834 1000 STREAM 141924 889 6056610 2024-02-24 18:38:03.405 2024-02-24 18:38:03.405 1000 STREAM 141924 4474 6119773 2024-02-29 22:07:32.075 2024-02-29 22:07:32.075 27000 TIP 443799 1039 6119774 2024-02-29 22:07:50.648 2024-02-29 22:07:50.648 1000 FEE 444343 4118 6119781 2024-02-29 22:09:35.773 2024-02-29 22:09:35.773 1000 FEE 444345 21446 6119788 2024-02-29 22:10:08.078 2024-02-29 22:10:08.078 3100 FEE 444299 10771 6119789 2024-02-29 22:10:08.078 2024-02-29 22:10:08.078 27900 TIP 444299 2525 6119791 2024-02-29 22:10:18.409 2024-02-29 22:10:18.409 1000 FEE 444346 18076 6119796 2024-02-29 22:10:50.334 2024-02-29 22:10:50.334 2100 FEE 443799 5003 6119797 2024-02-29 22:10:50.334 2024-02-29 22:10:50.334 18900 TIP 443799 638 6119808 2024-02-29 22:13:19.367 2024-02-29 22:13:19.367 1000 FEE 444349 1970 6119819 2024-02-29 22:14:33.964 2024-02-29 22:14:33.964 1000 FEE 444348 10013 6119820 2024-02-29 22:14:33.964 2024-02-29 22:14:33.964 9000 TIP 444348 16284 6119836 2024-02-29 22:17:43.585 2024-02-29 22:17:43.585 3000 FEE 444139 16830 6119837 2024-02-29 22:17:43.585 2024-02-29 22:17:43.585 27000 TIP 444139 20514 6119841 2024-02-29 22:19:02.587 2024-02-29 22:19:02.587 100 FEE 443527 8074 6119842 2024-02-29 22:19:02.587 2024-02-29 22:19:02.587 900 TIP 443527 18076 6119843 2024-02-29 22:19:03.847 2024-02-29 22:19:03.847 100 FEE 443983 18994 6119844 2024-02-29 22:19:03.847 2024-02-29 22:19:03.847 900 TIP 443983 21441 6119856 2024-02-29 22:20:19.771 2024-02-29 22:20:19.771 7700 FEE 444345 16309 6119857 2024-02-29 22:20:19.771 2024-02-29 22:20:19.771 69300 TIP 444345 8535 6119860 2024-02-29 22:20:23.111 2024-02-29 22:20:23.111 3000 FEE 443919 11443 6119861 2024-02-29 22:20:23.111 2024-02-29 22:20:23.111 27000 TIP 443919 694 6119879 2024-02-29 22:21:48.315 2024-02-29 22:21:48.315 1000 FEE 444360 9494 6119893 2024-02-29 22:23:25.838 2024-02-29 22:23:25.838 1000 FEE 444362 4062 6119901 2024-02-29 22:24:41.761 2024-02-29 22:24:41.761 500 FEE 444274 18209 6119902 2024-02-29 22:24:41.761 2024-02-29 22:24:41.761 4500 TIP 444274 18169 6119911 2024-02-29 22:25:18.243 2024-02-29 22:25:18.243 100000 FEE 444363 2829 6119922 2024-02-29 22:26:46.44 2024-02-29 22:26:46.44 100000 FEE 444365 17514 6119927 2024-02-29 22:28:06.584 2024-02-29 22:28:06.584 1100 FEE 443351 12024 6119928 2024-02-29 22:28:06.584 2024-02-29 22:28:06.584 9900 TIP 443351 14663 6119931 2024-02-29 22:28:21.799 2024-02-29 22:28:21.799 1100 FEE 443443 20586 6119932 2024-02-29 22:28:21.799 2024-02-29 22:28:21.799 9900 TIP 443443 9364 6119938 2024-02-29 22:29:41.108 2024-02-29 22:29:41.108 1100 FEE 444362 15732 6119939 2024-02-29 22:29:41.108 2024-02-29 22:29:41.108 9900 TIP 444362 21498 6119947 2024-02-29 22:31:27.742 2024-02-29 22:31:27.742 7700 FEE 443915 19826 6119948 2024-02-29 22:31:27.742 2024-02-29 22:31:27.742 69300 TIP 443915 17592 6119979 2024-02-29 22:31:58.557 2024-02-29 22:31:58.557 100 FEE 443583 8168 6119980 2024-02-29 22:31:58.557 2024-02-29 22:31:58.557 900 TIP 443583 21044 6119991 2024-02-29 22:33:21.679 2024-02-29 22:33:21.679 500 FEE 443583 1567 6119992 2024-02-29 22:33:21.679 2024-02-29 22:33:21.679 4500 TIP 443583 3683 6120007 2024-02-29 22:33:40.736 2024-02-29 22:33:40.736 1000 FEE 444368 5806 6120019 2024-02-29 22:35:28.344 2024-02-29 22:35:28.344 2100 FEE 444359 2508 6120020 2024-02-29 22:35:28.344 2024-02-29 22:35:28.344 18900 TIP 444359 16834 6120040 2024-02-29 22:38:08.583 2024-02-29 22:38:08.583 500 FEE 443861 1626 6120041 2024-02-29 22:38:08.583 2024-02-29 22:38:08.583 4500 TIP 443861 20264 6120046 2024-02-29 22:38:27.09 2024-02-29 22:38:27.09 500 FEE 443514 19967 6120047 2024-02-29 22:38:27.09 2024-02-29 22:38:27.09 4500 TIP 443514 16348 6120048 2024-02-29 22:38:30.652 2024-02-29 22:38:30.652 5000 FEE 443799 21481 6120049 2024-02-29 22:38:30.652 2024-02-29 22:38:30.652 45000 TIP 443799 5069 6120069 2024-02-29 22:41:19.506 2024-02-29 22:41:19.506 1000 FEE 444375 1652 6120119 2024-02-29 22:48:05.734 2024-02-29 22:48:05.734 500 FEE 444102 21070 6120120 2024-02-29 22:48:05.734 2024-02-29 22:48:05.734 4500 TIP 444102 18909 6120136 2024-02-29 22:49:12.23 2024-02-29 22:49:12.23 300 FEE 443957 10493 6120137 2024-02-29 22:49:12.23 2024-02-29 22:49:12.23 2700 TIP 443957 19638 6120142 2024-02-29 22:50:33.017 2024-02-29 22:50:33.017 100000 FEE 444379 20129 6120153 2024-02-29 22:51:00.63 2024-02-29 22:51:00.63 2100 FEE 444304 20663 6120154 2024-02-29 22:51:00.63 2024-02-29 22:51:00.63 18900 TIP 444304 10409 6120184 2024-02-29 22:54:55.895 2024-02-29 22:54:55.895 6900 FEE 444208 7998 6120185 2024-02-29 22:54:55.895 2024-02-29 22:54:55.895 62100 TIP 444208 10944 6120192 2024-02-29 22:55:22.329 2024-02-29 22:55:22.329 1000 FEE 444078 7877 6120193 2024-02-29 22:55:22.329 2024-02-29 22:55:22.329 9000 TIP 444078 15243 6120201 2024-02-29 22:57:02.604 2024-02-29 22:57:02.604 5700 FEE 444258 1985 6120202 2024-02-29 22:57:02.604 2024-02-29 22:57:02.604 51300 TIP 444258 15843 6120214 2024-02-29 22:58:26.798 2024-02-29 22:58:26.798 500 FEE 443894 20841 6120215 2024-02-29 22:58:26.798 2024-02-29 22:58:26.798 4500 TIP 443894 20619 6120239 2024-02-29 23:00:42.148 2024-02-29 23:00:42.148 2100 FEE 444026 16970 6120240 2024-02-29 23:00:42.148 2024-02-29 23:00:42.148 18900 TIP 444026 15617 6120244 2024-02-29 23:01:32.497 2024-02-29 23:01:32.497 1000 FEE 443834 1468 6120245 2024-02-29 23:01:32.497 2024-02-29 23:01:32.497 9000 TIP 443834 5942 6120261 2024-02-29 23:02:42.364 2024-02-29 23:02:42.364 1000 FEE 440218 18460 6120262 2024-02-29 23:02:42.364 2024-02-29 23:02:42.364 9000 TIP 440218 1465 6120282 2024-02-29 23:04:25.21 2024-02-29 23:04:25.21 100 FEE 444386 994 6120283 2024-02-29 23:04:25.21 2024-02-29 23:04:25.21 900 TIP 444386 21140 6120304 2024-02-29 23:07:52.531 2024-02-29 23:07:52.531 1000 FEE 444397 986 6120313 2024-02-29 23:10:04.096 2024-02-29 23:10:04.096 1000 FEE 444056 9992 6120314 2024-02-29 23:10:04.096 2024-02-29 23:10:04.096 9000 TIP 444056 21247 6120320 2024-02-29 23:10:21.159 2024-02-29 23:10:21.159 1000 FEE 444258 14941 6120321 2024-02-29 23:10:21.159 2024-02-29 23:10:21.159 9000 TIP 444258 18704 6120355 2024-02-29 23:12:59.196 2024-02-29 23:12:59.196 100 FEE 444168 9496 6120356 2024-02-29 23:12:59.196 2024-02-29 23:12:59.196 900 TIP 444168 21228 6120373 2024-02-29 23:15:39.57 2024-02-29 23:15:39.57 1000 FEE 444404 7654 6120384 2024-02-29 23:18:35.952 2024-02-29 23:18:35.952 1000 FEE 444405 17050 6056511 2024-02-24 18:29:03.28 2024-02-24 18:29:03.28 1000 STREAM 141924 16059 6056560 2024-02-24 18:34:03.354 2024-02-24 18:34:03.354 1000 STREAM 141924 19857 6056565 2024-02-24 18:35:03.369 2024-02-24 18:35:03.369 1000 STREAM 141924 5703 6119826 2024-02-29 22:16:05.165 2024-02-29 22:16:05.165 1000 STREAM 141924 13076 6119873 2024-02-29 22:21:05.172 2024-02-29 22:21:05.172 1000 STREAM 141924 16670 6119882 2024-02-29 22:22:05.176 2024-02-29 22:22:05.176 1000 STREAM 141924 4570 6056531 2024-02-24 18:31:03.31 2024-02-24 18:31:03.31 1000 STREAM 141924 20084 6056549 2024-02-24 18:33:03.341 2024-02-24 18:33:03.341 1000 STREAM 141924 9353 6056584 2024-02-24 18:36:03.369 2024-02-24 18:36:03.369 1000 STREAM 141924 623 6056601 2024-02-24 18:37:03.389 2024-02-24 18:37:03.389 1000 STREAM 141924 16670 6056819 2024-02-24 18:58:03.543 2024-02-24 18:58:03.543 1000 STREAM 141924 21494 6056823 2024-02-24 18:59:03.566 2024-02-24 18:59:03.566 1000 STREAM 141924 20156 6056871 2024-02-24 19:03:03.616 2024-02-24 19:03:03.616 1000 STREAM 141924 9450 6056879 2024-02-24 19:05:03.68 2024-02-24 19:05:03.68 1000 STREAM 141924 20599 6119912 2024-02-29 22:26:04.721 2024-02-29 22:26:04.721 1000 STREAM 141924 712 6056590 2024-02-24 18:36:14.239 2024-02-24 18:36:14.239 2100 FEE 437502 17797 6056591 2024-02-24 18:36:14.239 2024-02-24 18:36:14.239 18900 TIP 437502 18735 6056594 2024-02-24 18:36:35.084 2024-02-24 18:36:35.084 7000 FEE 437570 17570 6056638 2024-02-24 18:39:49.31 2024-02-24 18:39:49.31 1000 FEE 437574 16842 6056645 2024-02-24 18:40:03.437 2024-02-24 18:40:03.437 100 FEE 437558 16939 6056646 2024-02-24 18:40:03.437 2024-02-24 18:40:03.437 900 TIP 437558 1047 6056650 2024-02-24 18:40:47.589 2024-02-24 18:40:47.589 1000 FEE 383506 20613 6056651 2024-02-24 18:40:47.589 2024-02-24 18:40:47.589 9000 TIP 383506 20636 6056663 2024-02-24 18:41:57.307 2024-02-24 18:41:57.307 1300 FEE 437539 8095 6056664 2024-02-24 18:41:57.307 2024-02-24 18:41:57.307 11700 TIP 437539 2576 6056667 2024-02-24 18:41:57.76 2024-02-24 18:41:57.76 1300 FEE 437539 2829 6056668 2024-02-24 18:41:57.76 2024-02-24 18:41:57.76 11700 TIP 437539 8095 6056676 2024-02-24 18:42:48.175 2024-02-24 18:42:48.175 3200 FEE 437218 17682 6056677 2024-02-24 18:42:48.175 2024-02-24 18:42:48.175 28800 TIP 437218 21344 6056684 2024-02-24 18:43:41.034 2024-02-24 18:43:41.034 100000 FEE 437583 17148 6056694 2024-02-24 18:45:15.47 2024-02-24 18:45:15.47 7700 FEE 437582 5500 6056695 2024-02-24 18:45:15.47 2024-02-24 18:45:15.47 69300 TIP 437582 9920 6056765 2024-02-24 18:52:05.715 2024-02-24 18:52:05.715 1000 FEE 437565 16717 6056766 2024-02-24 18:52:05.715 2024-02-24 18:52:05.715 9000 TIP 437565 15100 6056781 2024-02-24 18:54:37.33 2024-02-24 18:54:37.33 0 FEE 436777 19843 6056789 2024-02-24 18:56:08.426 2024-02-24 18:56:08.426 3300 FEE 437516 16513 6056790 2024-02-24 18:56:08.426 2024-02-24 18:56:08.426 29700 TIP 437516 4538 6056817 2024-02-24 18:57:56.007 2024-02-24 18:57:56.007 1000 FEE 437573 1632 6056818 2024-02-24 18:57:56.007 2024-02-24 18:57:56.007 9000 TIP 437573 1145 6056827 2024-02-24 18:59:43.094 2024-02-24 18:59:43.094 1000 FEE 436894 18717 6056828 2024-02-24 18:59:43.094 2024-02-24 18:59:43.094 9000 TIP 436894 3456 6056833 2024-02-24 18:59:44.327 2024-02-24 18:59:44.327 1000 FEE 436894 620 6056834 2024-02-24 18:59:44.327 2024-02-24 18:59:44.327 9000 TIP 436894 8242 6056916 2024-02-24 19:14:24.318 2024-02-24 19:14:24.318 1000 FEE 437218 4958 6056917 2024-02-24 19:14:24.318 2024-02-24 19:14:24.318 9000 TIP 437218 19890 6056934 2024-02-24 19:15:26.879 2024-02-24 19:15:26.879 1000 FEE 437584 21159 6056935 2024-02-24 19:15:26.879 2024-02-24 19:15:26.879 9000 TIP 437584 19142 6056944 2024-02-24 19:16:03.329 2024-02-24 19:16:03.329 1000 FEE 437518 20272 6056945 2024-02-24 19:16:03.329 2024-02-24 19:16:03.329 9000 TIP 437518 18380 6056947 2024-02-24 19:16:16.695 2024-02-24 19:16:16.695 1000 FEE 437181 20245 6056948 2024-02-24 19:16:16.695 2024-02-24 19:16:16.695 9000 TIP 437181 18904 6056952 2024-02-24 19:16:37.419 2024-02-24 19:16:37.419 100 FEE 437524 17227 6056953 2024-02-24 19:16:37.419 2024-02-24 19:16:37.419 900 TIP 437524 20987 6056987 2024-02-24 19:19:58.787 2024-02-24 19:19:58.787 0 FEE 437618 10530 6056995 2024-02-24 19:21:32.993 2024-02-24 19:21:32.993 1000 FEE 437623 13246 6057013 2024-02-24 19:27:48.375 2024-02-24 19:27:48.375 1000 FEE 437628 2583 6057020 2024-02-24 19:27:58.231 2024-02-24 19:27:58.231 1000 FEE 437276 21040 6057021 2024-02-24 19:27:58.231 2024-02-24 19:27:58.231 9000 TIP 437276 16387 6057028 2024-02-24 19:28:17.166 2024-02-24 19:28:17.166 1000 FEE 437629 6300 6057031 2024-02-24 19:28:21.749 2024-02-24 19:28:21.749 0 FEE 437626 6688 6057039 2024-02-24 19:29:50.203 2024-02-24 19:29:50.203 4200 FEE 437611 4538 6057040 2024-02-24 19:29:50.203 2024-02-24 19:29:50.203 37800 TIP 437611 18529 6057052 2024-02-24 19:31:09.002 2024-02-24 19:31:09.002 2100 FEE 437531 16442 6057053 2024-02-24 19:31:09.002 2024-02-24 19:31:09.002 18900 TIP 437531 13517 6057065 2024-02-24 19:32:14.577 2024-02-24 19:32:14.577 1000 FEE 437622 12368 6057066 2024-02-24 19:32:14.577 2024-02-24 19:32:14.577 9000 TIP 437622 19732 6057069 2024-02-24 19:32:15.739 2024-02-24 19:32:15.739 1000 FEE 437622 999 6057070 2024-02-24 19:32:15.739 2024-02-24 19:32:15.739 9000 TIP 437622 10469 6057081 2024-02-24 19:32:58.71 2024-02-24 19:32:58.71 7700 FEE 437611 5637 6057082 2024-02-24 19:32:58.71 2024-02-24 19:32:58.71 69300 TIP 437611 2718 6057100 2024-02-24 19:36:30.493 2024-02-24 19:36:30.493 1000 FEE 437635 8423 6057107 2024-02-24 19:38:05.757 2024-02-24 19:38:05.757 0 FEE 437635 10981 6057120 2024-02-24 19:39:02.231 2024-02-24 19:39:02.231 1000 FEE 437502 736 6057121 2024-02-24 19:39:02.231 2024-02-24 19:39:02.231 9000 TIP 437502 20680 6057142 2024-02-24 19:40:52.761 2024-02-24 19:40:52.761 10000 FEE 437626 19930 6057143 2024-02-24 19:40:52.761 2024-02-24 19:40:52.761 90000 TIP 437626 21421 6057183 2024-02-24 19:45:08.641 2024-02-24 19:45:08.641 78000 FEE 435834 768 6057184 2024-02-24 19:45:08.641 2024-02-24 19:45:08.641 702000 TIP 435834 7510 6057207 2024-02-24 19:46:08.209 2024-02-24 19:46:08.209 1000 FEE 201598 20500 6057208 2024-02-24 19:46:08.209 2024-02-24 19:46:08.209 9000 TIP 201598 16296 6057213 2024-02-24 19:46:08.677 2024-02-24 19:46:08.677 1000 FEE 201598 21058 6057214 2024-02-24 19:46:08.677 2024-02-24 19:46:08.677 9000 TIP 201598 19966 6057217 2024-02-24 19:46:11.563 2024-02-24 19:46:11.563 2000 FEE 201779 8648 6057218 2024-02-24 19:46:11.563 2024-02-24 19:46:11.563 18000 TIP 201779 695 6057242 2024-02-24 19:47:12.323 2024-02-24 19:47:12.323 900 FEE 437583 16329 6057243 2024-02-24 19:47:12.323 2024-02-24 19:47:12.323 8100 TIP 437583 20782 6057259 2024-02-24 19:48:20.113 2024-02-24 19:48:20.113 100 FEE 437514 11458 6057260 2024-02-24 19:48:20.113 2024-02-24 19:48:20.113 900 TIP 437514 1352 6057261 2024-02-24 19:48:20.463 2024-02-24 19:48:20.463 900 FEE 437514 12169 6057262 2024-02-24 19:48:20.463 2024-02-24 19:48:20.463 8100 TIP 437514 2776 6057265 2024-02-24 19:48:54.911 2024-02-24 19:48:54.911 900 FEE 437612 19282 6057266 2024-02-24 19:48:54.911 2024-02-24 19:48:54.911 8100 TIP 437612 14669 6057302 2024-02-24 19:55:19.7 2024-02-24 19:55:19.7 1100 FEE 437269 14308 6057303 2024-02-24 19:55:19.7 2024-02-24 19:55:19.7 9900 TIP 437269 19507 6057348 2024-02-24 19:55:38.359 2024-02-24 19:55:38.359 100000 FEE 437643 21485 6057361 2024-02-24 20:02:37.162 2024-02-24 20:02:37.162 1000 FEE 437611 20106 6057362 2024-02-24 20:02:37.162 2024-02-24 20:02:37.162 9000 TIP 437611 19843 6057386 2024-02-24 20:06:42.075 2024-02-24 20:06:42.075 2100 FEE 437646 889 6057387 2024-02-24 20:06:42.075 2024-02-24 20:06:42.075 18900 TIP 437646 11776 6057390 2024-02-24 20:06:48.476 2024-02-24 20:06:48.476 2100 FEE 437646 17541 6057391 2024-02-24 20:06:48.476 2024-02-24 20:06:48.476 18900 TIP 437646 21455 6057406 2024-02-24 20:13:12.129 2024-02-24 20:13:12.129 5000 FEE 437643 2232 6057407 2024-02-24 20:13:12.129 2024-02-24 20:13:12.129 45000 TIP 437643 16348 6057420 2024-02-24 20:15:50.598 2024-02-24 20:15:50.598 1000 FEE 437651 14941 6057427 2024-02-24 20:17:15.042 2024-02-24 20:17:15.042 0 FEE 437650 11144 6057438 2024-02-24 20:19:02.529 2024-02-24 20:19:02.529 6900 FEE 437502 16542 6057439 2024-02-24 20:19:02.529 2024-02-24 20:19:02.529 62100 TIP 437502 5791 6057467 2024-02-24 20:19:51.48 2024-02-24 20:19:51.48 5100 FEE 437640 965 6057468 2024-02-24 20:19:51.48 2024-02-24 20:19:51.48 45900 TIP 437640 16939 6057472 2024-02-24 20:21:14.347 2024-02-24 20:21:14.347 2100 FEE 437649 10063 6056612 2024-02-24 18:38:35.362 2024-02-24 18:38:35.362 1000 FEE 383309 21214 6056613 2024-02-24 18:38:35.362 2024-02-24 18:38:35.362 9000 TIP 383309 1717 6056628 2024-02-24 18:39:00.529 2024-02-24 18:39:00.529 1000 FEE 383888 11621 6056629 2024-02-24 18:39:00.529 2024-02-24 18:39:00.529 9000 TIP 383888 16684 6056633 2024-02-24 18:39:01.05 2024-02-24 18:39:01.05 1000 FEE 383888 18359 6056634 2024-02-24 18:39:01.05 2024-02-24 18:39:01.05 9000 TIP 383888 4084 6056652 2024-02-24 18:40:49.566 2024-02-24 18:40:49.566 10000 FEE 437576 20182 6056655 2024-02-24 18:40:50.802 2024-02-24 18:40:50.802 1000 FEE 383506 866 6056656 2024-02-24 18:40:50.802 2024-02-24 18:40:50.802 9000 TIP 383506 13398 6056669 2024-02-24 18:41:58.281 2024-02-24 18:41:58.281 1300 FEE 437539 993 6056670 2024-02-24 18:41:58.281 2024-02-24 18:41:58.281 11700 TIP 437539 4521 6056687 2024-02-24 18:44:07.847 2024-02-24 18:44:07.847 1000 FEE 437233 2789 6056688 2024-02-24 18:44:07.847 2024-02-24 18:44:07.847 9000 TIP 437233 964 6056696 2024-02-24 18:45:16.91 2024-02-24 18:45:16.91 7700 FEE 437582 4391 6056697 2024-02-24 18:45:16.91 2024-02-24 18:45:16.91 69300 TIP 437582 12609 6056769 2024-02-24 18:52:59.038 2024-02-24 18:52:59.038 1000 FEE 437591 7869 6056777 2024-02-24 18:54:26.527 2024-02-24 18:54:26.527 1000 FEE 437535 697 6056778 2024-02-24 18:54:26.527 2024-02-24 18:54:26.527 9000 TIP 437535 1286 6056793 2024-02-24 18:56:45.792 2024-02-24 18:56:45.792 100000 FEE 437593 1692 6056794 2024-02-24 18:56:45.792 2024-02-24 18:56:45.792 900000 TIP 437593 20555 6056798 2024-02-24 18:57:33.505 2024-02-24 18:57:33.505 1000 FEE 437502 18409 6056799 2024-02-24 18:57:33.505 2024-02-24 18:57:33.505 9000 TIP 437502 16356 6056802 2024-02-24 18:57:33.861 2024-02-24 18:57:33.861 1000 FEE 437502 12334 6056803 2024-02-24 18:57:33.861 2024-02-24 18:57:33.861 9000 TIP 437502 21527 6056804 2024-02-24 18:57:33.902 2024-02-24 18:57:33.902 1000 FEE 437596 21342 6056809 2024-02-24 18:57:53.863 2024-02-24 18:57:53.863 1000 FEE 437573 694 6056810 2024-02-24 18:57:53.863 2024-02-24 18:57:53.863 9000 TIP 437573 20969 6056811 2024-02-24 18:57:54.226 2024-02-24 18:57:54.226 1000 FEE 437573 14255 6056812 2024-02-24 18:57:54.226 2024-02-24 18:57:54.226 9000 TIP 437573 5703 6056821 2024-02-24 18:58:54.037 2024-02-24 18:58:54.037 1000 FEE 437598 16948 6056841 2024-02-24 19:00:56.416 2024-02-24 19:00:56.416 0 FEE 437602 16354 6056843 2024-02-24 19:01:03.197 2024-02-24 19:01:03.197 0 FEE 437602 2734 6056854 2024-02-24 19:01:30.105 2024-02-24 19:01:30.105 50000 FEE 434807 16788 6056855 2024-02-24 19:01:30.105 2024-02-24 19:01:30.105 450000 TIP 434807 9438 6056872 2024-02-24 19:03:40.608 2024-02-24 19:03:40.608 1000 FEE 437606 7899 6056885 2024-02-24 19:06:51.184 2024-02-24 19:06:51.184 100000 FEE 437608 17172 6056912 2024-02-24 19:14:23.182 2024-02-24 19:14:23.182 1000 FEE 437408 9426 6056913 2024-02-24 19:14:23.182 2024-02-24 19:14:23.182 9000 TIP 437408 12218 6056914 2024-02-24 19:14:23.592 2024-02-24 19:14:23.592 1000 FEE 437501 3396 6056915 2024-02-24 19:14:23.592 2024-02-24 19:14:23.592 9000 TIP 437501 6003 6056931 2024-02-24 19:15:17.059 2024-02-24 19:15:17.059 1000 FEE 437420 18731 6056932 2024-02-24 19:15:17.059 2024-02-24 19:15:17.059 9000 TIP 437420 9356 6056938 2024-02-24 19:15:28.706 2024-02-24 19:15:28.706 1000 FEE 437615 17209 6056949 2024-02-24 19:16:18.904 2024-02-24 19:16:18.904 1000 FEE 437524 9335 6056950 2024-02-24 19:16:18.904 2024-02-24 19:16:18.904 9000 TIP 437524 15588 6056959 2024-02-24 19:17:23.548 2024-02-24 19:17:23.548 0 FEE 437611 13143 6056980 2024-02-24 19:19:38.642 2024-02-24 19:19:38.642 2100 FEE 437575 9844 6056981 2024-02-24 19:19:38.642 2024-02-24 19:19:38.642 18900 TIP 437575 19398 6056985 2024-02-24 19:19:56.832 2024-02-24 19:19:56.832 1000 FEE 437495 20858 6056986 2024-02-24 19:19:56.832 2024-02-24 19:19:56.832 9000 TIP 437495 5425 6056988 2024-02-24 19:19:58.858 2024-02-24 19:19:58.858 1000 FEE 437622 21208 6057000 2024-02-24 19:23:42.611 2024-02-24 19:23:42.611 1000 FEE 437624 7960 6057016 2024-02-24 19:27:52.575 2024-02-24 19:27:52.575 1000 FEE 437454 5293 6057017 2024-02-24 19:27:52.575 2024-02-24 19:27:52.575 9000 TIP 437454 10016 6057165 2024-02-24 19:44:01.817 2024-02-24 19:44:01.817 1000 FEE 437640 6688 6057173 2024-02-24 19:44:10.946 2024-02-24 19:44:10.946 107000 FEE 437531 720 6057174 2024-02-24 19:44:10.946 2024-02-24 19:44:10.946 963000 TIP 437531 16230 6057178 2024-02-24 19:44:33.083 2024-02-24 19:44:33.083 900 FEE 437531 14195 6057179 2024-02-24 19:44:33.083 2024-02-24 19:44:33.083 8100 TIP 437531 6741 6057199 2024-02-24 19:46:07.422 2024-02-24 19:46:07.422 1000 FEE 201598 10849 6057200 2024-02-24 19:46:07.422 2024-02-24 19:46:07.422 9000 TIP 201598 13046 6057283 2024-02-24 19:51:41.263 2024-02-24 19:51:41.263 2100 FEE 437594 2264 6057284 2024-02-24 19:51:41.263 2024-02-24 19:51:41.263 18900 TIP 437594 4250 6057310 2024-02-24 19:55:20.689 2024-02-24 19:55:20.689 1100 FEE 437269 1970 6057311 2024-02-24 19:55:20.689 2024-02-24 19:55:20.689 9900 TIP 437269 2710 6057338 2024-02-24 19:55:36.94 2024-02-24 19:55:36.94 1100 FEE 437238 717 6057339 2024-02-24 19:55:36.94 2024-02-24 19:55:36.94 9900 TIP 437238 20744 6057344 2024-02-24 19:55:37.448 2024-02-24 19:55:37.448 1100 FEE 437238 16724 6057345 2024-02-24 19:55:37.448 2024-02-24 19:55:37.448 9900 TIP 437238 14370 6057356 2024-02-24 19:59:43.02 2024-02-24 19:59:43.02 100000 FEE 437645 19537 6057360 2024-02-24 20:02:21.407 2024-02-24 20:02:21.407 69000 FEE 437646 21033 6057365 2024-02-24 20:02:38.334 2024-02-24 20:02:38.334 1000 FEE 437611 2614 6057366 2024-02-24 20:02:38.334 2024-02-24 20:02:38.334 9000 TIP 437611 16717 6057371 2024-02-24 20:02:59.528 2024-02-24 20:02:59.528 1000 FEE 437408 2711 6057372 2024-02-24 20:02:59.528 2024-02-24 20:02:59.528 9000 TIP 437408 10519 6057381 2024-02-24 20:04:55.542 2024-02-24 20:04:55.542 1000 FEE 437647 6798 6057408 2024-02-24 20:13:29.91 2024-02-24 20:13:29.91 10000 FEE 437531 1030 6057409 2024-02-24 20:13:29.91 2024-02-24 20:13:29.91 90000 TIP 437531 19557 6057418 2024-02-24 20:15:36.537 2024-02-24 20:15:36.537 100 FEE 437403 19531 6057419 2024-02-24 20:15:36.537 2024-02-24 20:15:36.537 900 TIP 437403 2322 6057422 2024-02-24 20:16:09.631 2024-02-24 20:16:09.631 2100 FEE 437611 16456 6057423 2024-02-24 20:16:09.631 2024-02-24 20:16:09.631 18900 TIP 437611 20756 6057433 2024-02-24 20:18:44.141 2024-02-24 20:18:44.141 10000 FEE 437654 11829 6057447 2024-02-24 20:19:06.694 2024-02-24 20:19:06.694 6900 FEE 437611 12744 6057448 2024-02-24 20:19:06.694 2024-02-24 20:19:06.694 62100 TIP 437611 18873 6057455 2024-02-24 20:19:07.421 2024-02-24 20:19:07.421 6900 FEE 437611 27 6057456 2024-02-24 20:19:07.421 2024-02-24 20:19:07.421 62100 TIP 437611 7986 6057485 2024-02-24 20:26:01.683 2024-02-24 20:26:01.683 1000 FEE 437658 5904 6057486 2024-02-24 20:26:01.683 2024-02-24 20:26:01.683 9000 TIP 437658 14705 6057487 2024-02-24 20:26:02.061 2024-02-24 20:26:02.061 1000 FEE 437658 21148 6057488 2024-02-24 20:26:02.061 2024-02-24 20:26:02.061 9000 TIP 437658 19118 6057513 2024-02-24 20:28:00.279 2024-02-24 20:28:00.279 900 FEE 437493 17592 6057514 2024-02-24 20:28:00.279 2024-02-24 20:28:00.279 8100 TIP 437493 3411 6057517 2024-02-24 20:29:29.641 2024-02-24 20:29:29.641 1000 FEE 437661 7746 6056637 2024-02-24 18:39:03.012 2024-02-24 18:39:03.012 1000 STREAM 141924 9333 6056661 2024-02-24 18:41:03.037 2024-02-24 18:41:03.037 1000 STREAM 141924 20555 6056672 2024-02-24 18:42:03.052 2024-02-24 18:42:03.052 1000 STREAM 141924 5728 6056701 2024-02-24 18:46:03.053 2024-02-24 18:46:03.053 1000 STREAM 141924 11885 6056708 2024-02-24 18:48:03.078 2024-02-24 18:48:03.078 1000 STREAM 141924 20738 6056729 2024-02-24 18:49:03.089 2024-02-24 18:49:03.089 1000 STREAM 141924 7125 6056737 2024-02-24 18:50:03.111 2024-02-24 18:50:03.111 1000 STREAM 141924 2710 6056744 2024-02-24 18:51:03.09 2024-02-24 18:51:03.09 1000 STREAM 141924 21222 6056770 2024-02-24 18:53:03.111 2024-02-24 18:53:03.111 1000 STREAM 141924 2000 6056773 2024-02-24 18:54:03.105 2024-02-24 18:54:03.105 1000 STREAM 141924 7558 6056786 2024-02-24 18:56:03.125 2024-02-24 18:56:03.125 1000 STREAM 141924 16809 6119926 2024-02-29 22:28:04.769 2024-02-29 22:28:04.769 1000 STREAM 141924 19500 6056679 2024-02-24 18:42:48.676 2024-02-24 18:42:48.676 259200 TIP 437218 1010 6056682 2024-02-24 18:43:02.724 2024-02-24 18:43:02.724 1000 FEE 437582 19021 6056704 2024-02-24 18:46:40.906 2024-02-24 18:46:40.906 900 FEE 437584 1425 6056705 2024-02-24 18:46:40.906 2024-02-24 18:46:40.906 8100 TIP 437584 16284 6056707 2024-02-24 18:47:29.263 2024-02-24 18:47:29.263 1000 FEE 437588 664 6056734 2024-02-24 18:49:57.677 2024-02-24 18:49:57.677 1000 FEE 437050 1454 6056735 2024-02-24 18:49:57.677 2024-02-24 18:49:57.677 9000 TIP 437050 3396 6056740 2024-02-24 18:50:26.516 2024-02-24 18:50:26.516 1000 FEE 437404 6058 6056741 2024-02-24 18:50:26.516 2024-02-24 18:50:26.516 9000 TIP 437404 20701 6056751 2024-02-24 18:51:42.994 2024-02-24 18:51:42.994 1000 FEE 437568 18830 6056752 2024-02-24 18:51:42.994 2024-02-24 18:51:42.994 9000 TIP 437568 1720 6056763 2024-02-24 18:52:05.33 2024-02-24 18:52:05.33 1000 FEE 437565 699 6056764 2024-02-24 18:52:05.33 2024-02-24 18:52:05.33 9000 TIP 437565 859 6056775 2024-02-24 18:54:15.277 2024-02-24 18:54:15.277 1000 FEE 437556 15146 6056776 2024-02-24 18:54:15.277 2024-02-24 18:54:15.277 9000 TIP 437556 16724 6056807 2024-02-24 18:57:34.272 2024-02-24 18:57:34.272 1000 FEE 437502 1712 6056808 2024-02-24 18:57:34.272 2024-02-24 18:57:34.272 9000 TIP 437502 18984 6056829 2024-02-24 18:59:43.503 2024-02-24 18:59:43.503 1000 FEE 436894 15159 6056830 2024-02-24 18:59:43.503 2024-02-24 18:59:43.503 9000 TIP 436894 9816 6056831 2024-02-24 18:59:43.935 2024-02-24 18:59:43.935 1000 FEE 436894 1090 6056832 2024-02-24 18:59:43.935 2024-02-24 18:59:43.935 9000 TIP 436894 20980 6056836 2024-02-24 19:00:04.756 2024-02-24 19:00:04.756 100000 FEE 437599 1803 6056891 2024-02-24 19:11:03.77 2024-02-24 19:11:03.77 3200 FEE 437590 8459 6056892 2024-02-24 19:11:03.77 2024-02-24 19:11:03.77 28800 TIP 437590 21463 6056897 2024-02-24 19:11:32.837 2024-02-24 19:11:32.837 21000 DONT_LIKE_THIS 437587 6717 6056902 2024-02-24 19:12:32.296 2024-02-24 19:12:32.296 0 FEE 437611 20811 6056908 2024-02-24 19:14:05.591 2024-02-24 19:14:05.591 1000 FEE 437500 7587 6056909 2024-02-24 19:14:05.591 2024-02-24 19:14:05.591 9000 TIP 437500 16965 6056920 2024-02-24 19:14:27.975 2024-02-24 19:14:27.975 1000 FEE 437238 8289 6056921 2024-02-24 19:14:27.975 2024-02-24 19:14:27.975 9000 TIP 437238 2780 6056922 2024-02-24 19:14:40.495 2024-02-24 19:14:40.495 1000 FEE 437516 17976 6056923 2024-02-24 19:14:40.495 2024-02-24 19:14:40.495 9000 TIP 437516 7125 6056933 2024-02-24 19:15:23.987 2024-02-24 19:15:23.987 1000 FEE 437614 8080 6056954 2024-02-24 19:16:38.571 2024-02-24 19:16:38.571 100000 DONT_LIKE_THIS 437583 5942 6056978 2024-02-24 19:19:08.031 2024-02-24 19:19:08.031 1000 FEE 437561 4079 6056979 2024-02-24 19:19:08.031 2024-02-24 19:19:08.031 9000 TIP 437561 1221 6057024 2024-02-24 19:28:00.859 2024-02-24 19:28:00.859 0 FEE 437626 16706 6057046 2024-02-24 19:30:52.176 2024-02-24 19:30:52.176 100000 FEE 437633 1130 6057054 2024-02-24 19:31:11.485 2024-02-24 19:31:11.485 2100 FEE 437631 20775 6057055 2024-02-24 19:31:11.485 2024-02-24 19:31:11.485 18900 TIP 437631 11866 6057090 2024-02-24 19:33:27.357 2024-02-24 19:33:27.357 10000 FEE 437634 13622 6057098 2024-02-24 19:36:10.84 2024-02-24 19:36:10.84 10000 FEE 437531 795 6057099 2024-02-24 19:36:10.84 2024-02-24 19:36:10.84 90000 TIP 437531 19484 6057103 2024-02-24 19:37:13.877 2024-02-24 19:37:13.877 10000 FEE 437618 11329 6057104 2024-02-24 19:37:13.877 2024-02-24 19:37:13.877 90000 TIP 437618 8045 6057114 2024-02-24 19:39:00.615 2024-02-24 19:39:00.615 1000 FEE 437502 15662 6057115 2024-02-24 19:39:00.615 2024-02-24 19:39:00.615 9000 TIP 437502 2264 6057118 2024-02-24 19:39:01.915 2024-02-24 19:39:01.915 1000 FEE 437502 11443 6057119 2024-02-24 19:39:01.915 2024-02-24 19:39:01.915 9000 TIP 437502 18008 6057130 2024-02-24 19:40:10.318 2024-02-24 19:40:10.318 1000 FEE 437404 19633 6057131 2024-02-24 19:40:10.318 2024-02-24 19:40:10.318 9000 TIP 437404 12774 6057152 2024-02-24 19:42:53.728 2024-02-24 19:42:53.728 1000 FEE 437524 9354 6057153 2024-02-24 19:42:53.728 2024-02-24 19:42:53.728 9000 TIP 437524 8541 6057154 2024-02-24 19:43:00.133 2024-02-24 19:43:00.133 100000 FEE 437611 699 6057155 2024-02-24 19:43:00.133 2024-02-24 19:43:00.133 900000 TIP 437611 11477 6057159 2024-02-24 19:43:09.891 2024-02-24 19:43:09.891 4000 FEE 437612 19463 6057160 2024-02-24 19:43:09.891 2024-02-24 19:43:09.891 36000 TIP 437612 4259 6057215 2024-02-24 19:46:11.291 2024-02-24 19:46:11.291 1000 FEE 201779 825 6057216 2024-02-24 19:46:11.291 2024-02-24 19:46:11.291 9000 TIP 201779 20500 6057219 2024-02-24 19:46:18.939 2024-02-24 19:46:18.939 1000 FEE 201722 10698 6057220 2024-02-24 19:46:18.939 2024-02-24 19:46:18.939 9000 TIP 201722 17707 6057227 2024-02-24 19:46:42.021 2024-02-24 19:46:42.021 100 FEE 437615 16440 6057228 2024-02-24 19:46:42.021 2024-02-24 19:46:42.021 900 TIP 437615 762 6057240 2024-02-24 19:47:12.114 2024-02-24 19:47:12.114 100 FEE 437583 9921 6057241 2024-02-24 19:47:12.114 2024-02-24 19:47:12.114 900 TIP 437583 1505 6057244 2024-02-24 19:47:46.036 2024-02-24 19:47:46.036 90000 FEE 437408 9820 6057245 2024-02-24 19:47:46.036 2024-02-24 19:47:46.036 810000 TIP 437408 989 6057255 2024-02-24 19:48:06.108 2024-02-24 19:48:06.108 100 FEE 437218 4633 6057256 2024-02-24 19:48:06.108 2024-02-24 19:48:06.108 900 TIP 437218 6202 6057290 2024-02-24 19:53:38.356 2024-02-24 19:53:38.356 2100 FEE 436729 2065 6057291 2024-02-24 19:53:38.356 2024-02-24 19:53:38.356 18900 TIP 436729 17523 6057334 2024-02-24 19:55:23.644 2024-02-24 19:55:23.644 1100 FEE 437218 18101 6057335 2024-02-24 19:55:23.644 2024-02-24 19:55:23.644 9900 TIP 437218 20577 6057396 2024-02-24 20:10:04.127 2024-02-24 20:10:04.127 1000 FEE 437648 8796 6057401 2024-02-24 20:12:28.995 2024-02-24 20:12:28.995 4200 FEE 434038 18208 6057402 2024-02-24 20:12:28.995 2024-02-24 20:12:28.995 37800 TIP 434038 1209 6057432 2024-02-24 20:18:32.809 2024-02-24 20:18:32.809 10000 FEE 437653 12721 6057434 2024-02-24 20:19:02.208 2024-02-24 20:19:02.208 6900 FEE 437502 9335 6057435 2024-02-24 20:19:02.208 2024-02-24 20:19:02.208 62100 TIP 437502 19333 6057440 2024-02-24 20:19:02.675 2024-02-24 20:19:02.675 6900 FEE 437502 20551 6057441 2024-02-24 20:19:02.675 2024-02-24 20:19:02.675 62100 TIP 437502 3990 6057445 2024-02-24 20:19:06.511 2024-02-24 20:19:06.511 6900 FEE 437611 626 6057446 2024-02-24 20:19:06.511 2024-02-24 20:19:06.511 62100 TIP 437611 21063 6057494 2024-02-24 20:26:44.277 2024-02-24 20:26:44.277 2600 FEE 437531 9307 6057495 2024-02-24 20:26:44.277 2024-02-24 20:26:44.277 23400 TIP 437531 7978 6057502 2024-02-24 20:26:52.324 2024-02-24 20:26:52.324 1000 FEE 437659 900 6057509 2024-02-24 20:27:54.931 2024-02-24 20:27:54.931 900 FEE 437589 21492 6057510 2024-02-24 20:27:54.931 2024-02-24 20:27:54.931 8100 TIP 437589 5661 6057518 2024-02-24 20:29:41.271 2024-02-24 20:29:41.271 10000 FEE 437662 8916 6057524 2024-02-24 20:29:59.209 2024-02-24 20:29:59.209 1000 FEE 437662 18453 6057525 2024-02-24 20:29:59.209 2024-02-24 20:29:59.209 9000 TIP 437662 10519 6057551 2024-02-24 20:31:49.589 2024-02-24 20:31:49.589 10000 FEE 437269 8985 6057552 2024-02-24 20:31:49.589 2024-02-24 20:31:49.589 90000 TIP 437269 16004 6057562 2024-02-24 20:33:39.511 2024-02-24 20:33:39.511 0 FEE 437661 21522 6057572 2024-02-24 20:35:11.904 2024-02-24 20:35:11.904 6900 FEE 437659 5791 6057573 2024-02-24 20:35:11.904 2024-02-24 20:35:11.904 62100 TIP 437659 6191 6057574 2024-02-24 20:35:27.477 2024-02-24 20:35:27.477 100000 FEE 437666 1960 6057580 2024-02-24 20:37:39.792 2024-02-24 20:37:39.792 2000 FEE 437530 19394 6056757 2024-02-24 18:52:02.68 2024-02-24 18:52:02.68 1000 FEE 437590 657 6056761 2024-02-24 18:52:04.812 2024-02-24 18:52:04.812 1000 FEE 437565 20201 6056762 2024-02-24 18:52:04.812 2024-02-24 18:52:04.812 9000 TIP 437565 20817 6056767 2024-02-24 18:52:06.122 2024-02-24 18:52:06.122 1000 FEE 437565 1552 6056768 2024-02-24 18:52:06.122 2024-02-24 18:52:06.122 9000 TIP 437565 19857 6056771 2024-02-24 18:53:57.125 2024-02-24 18:53:57.125 1000 FEE 436720 1136 6056772 2024-02-24 18:53:57.125 2024-02-24 18:53:57.125 9000 TIP 436720 2123 6056782 2024-02-24 18:54:51.78 2024-02-24 18:54:51.78 1000 FEE 437592 12368 6056792 2024-02-24 18:56:31.039 2024-02-24 18:56:31.039 10000 FEE 437595 17411 6056820 2024-02-24 18:58:53.852 2024-02-24 18:58:53.852 1000 FEE 437597 2780 6056837 2024-02-24 19:00:05.178 2024-02-24 19:00:05.178 1000 FEE 437600 18772 6056852 2024-02-24 19:01:28.933 2024-02-24 19:01:28.933 1000 FEE 437218 8498 6056853 2024-02-24 19:01:28.933 2024-02-24 19:01:28.933 9000 TIP 437218 19033 6056862 2024-02-24 19:01:49.15 2024-02-24 19:01:49.15 1000 FEE 437545 18625 6056863 2024-02-24 19:01:49.15 2024-02-24 19:01:49.15 9000 TIP 437545 9863 6056868 2024-02-24 19:02:10.506 2024-02-24 19:02:10.506 1000 FEE 437411 2437 6056869 2024-02-24 19:02:10.506 2024-02-24 19:02:10.506 9000 TIP 437411 17321 6056880 2024-02-24 19:05:30.013 2024-02-24 19:05:30.013 1000 FEE 437326 20409 6056881 2024-02-24 19:05:30.013 2024-02-24 19:05:30.013 9000 TIP 437326 1624 6056905 2024-02-24 19:13:04.747 2024-02-24 19:13:04.747 1000 FEE 437613 16536 6056906 2024-02-24 19:13:38.291 2024-02-24 19:13:38.291 0 FEE 437611 12911 6056926 2024-02-24 19:14:53.971 2024-02-24 19:14:53.971 1000 FEE 437270 722 6056927 2024-02-24 19:14:53.971 2024-02-24 19:14:53.971 9000 TIP 437270 11698 6056928 2024-02-24 19:15:05.347 2024-02-24 19:15:05.347 1000 FEE 437535 12819 6056929 2024-02-24 19:15:05.347 2024-02-24 19:15:05.347 9000 TIP 437535 1836 6056936 2024-02-24 19:15:27.542 2024-02-24 19:15:27.542 1000 FEE 437584 802 6056937 2024-02-24 19:15:27.542 2024-02-24 19:15:27.542 9000 TIP 437584 19033 6056939 2024-02-24 19:15:34.158 2024-02-24 19:15:34.158 1000 FEE 437050 9611 6056940 2024-02-24 19:15:34.158 2024-02-24 19:15:34.158 9000 TIP 437050 6700 6056960 2024-02-24 19:17:36.372 2024-02-24 19:17:36.372 0 FEE 437611 17602 6056964 2024-02-24 19:17:55.748 2024-02-24 19:17:55.748 2100 FEE 437611 20788 6056965 2024-02-24 19:17:55.748 2024-02-24 19:17:55.748 18900 TIP 437611 20981 6057001 2024-02-24 19:23:50.851 2024-02-24 19:23:50.851 1000 FEE 437625 20901 6057018 2024-02-24 19:27:52.968 2024-02-24 19:27:52.968 1000 FEE 437233 21506 6057019 2024-02-24 19:27:52.968 2024-02-24 19:27:52.968 9000 TIP 437233 27 6057029 2024-02-24 19:28:19.564 2024-02-24 19:28:19.564 1000 FEE 437050 20922 6057030 2024-02-24 19:28:19.564 2024-02-24 19:28:19.564 9000 TIP 437050 16670 6057036 2024-02-24 19:29:28.698 2024-02-24 19:29:28.698 1000 FEE 437404 21413 6057037 2024-02-24 19:29:28.698 2024-02-24 19:29:28.698 9000 TIP 437404 17041 6057063 2024-02-24 19:32:14.126 2024-02-24 19:32:14.126 1000 FEE 437622 12744 6057064 2024-02-24 19:32:14.126 2024-02-24 19:32:14.126 9000 TIP 437622 704 6057071 2024-02-24 19:32:16.268 2024-02-24 19:32:16.268 1000 FEE 437622 13216 6057072 2024-02-24 19:32:16.268 2024-02-24 19:32:16.268 9000 TIP 437622 4102 6057075 2024-02-24 19:32:32.821 2024-02-24 19:32:32.821 100000 FEE 437632 15159 6057076 2024-02-24 19:32:32.821 2024-02-24 19:32:32.821 900000 TIP 437632 19488 6057077 2024-02-24 19:32:58.459 2024-02-24 19:32:58.459 7700 FEE 437611 13921 6057078 2024-02-24 19:32:58.459 2024-02-24 19:32:58.459 69300 TIP 437611 4225 6057079 2024-02-24 19:32:58.577 2024-02-24 19:32:58.577 7700 FEE 437611 11075 6057080 2024-02-24 19:32:58.577 2024-02-24 19:32:58.577 69300 TIP 437611 20109 6057085 2024-02-24 19:33:03.656 2024-02-24 19:33:03.656 100000 FEE 437615 18454 6057086 2024-02-24 19:33:03.656 2024-02-24 19:33:03.656 900000 TIP 437615 9341 6057095 2024-02-24 19:36:03.938 2024-02-24 19:36:03.938 2100 FEE 437543 5794 6057096 2024-02-24 19:36:03.938 2024-02-24 19:36:03.938 18900 TIP 437543 11760 6057133 2024-02-24 19:40:19.961 2024-02-24 19:40:19.961 500 FEE 437610 8287 6057134 2024-02-24 19:40:19.961 2024-02-24 19:40:19.961 4500 TIP 437610 15196 6057135 2024-02-24 19:40:23.345 2024-02-24 19:40:23.345 1000 FEE 437638 20897 6057170 2024-02-24 19:44:03.346 2024-02-24 19:44:03.346 9000 FEE 437611 1549 6057171 2024-02-24 19:44:03.346 2024-02-24 19:44:03.346 81000 TIP 437611 9758 6057187 2024-02-24 19:45:09.631 2024-02-24 19:45:09.631 900 FEE 437539 19462 6057188 2024-02-24 19:45:09.631 2024-02-24 19:45:09.631 8100 TIP 437539 9334 6057189 2024-02-24 19:45:20.816 2024-02-24 19:45:20.816 9000 FEE 437539 18877 6057190 2024-02-24 19:45:20.816 2024-02-24 19:45:20.816 81000 TIP 437539 1175 6057191 2024-02-24 19:45:39.578 2024-02-24 19:45:39.578 1000 FEE 437641 20560 6057223 2024-02-24 19:46:19.356 2024-02-24 19:46:19.356 1000 FEE 201722 4059 6057224 2024-02-24 19:46:19.356 2024-02-24 19:46:19.356 9000 TIP 201722 19537 6057225 2024-02-24 19:46:19.466 2024-02-24 19:46:19.466 1000 FEE 201722 19910 6057226 2024-02-24 19:46:19.466 2024-02-24 19:46:19.466 9000 TIP 201722 4048 6057233 2024-02-24 19:47:01.468 2024-02-24 19:47:01.468 100 FEE 437594 14370 6057234 2024-02-24 19:47:01.468 2024-02-24 19:47:01.468 900 TIP 437594 1620 6057235 2024-02-24 19:47:01.641 2024-02-24 19:47:01.641 900 FEE 437594 18271 6057236 2024-02-24 19:47:01.641 2024-02-24 19:47:01.641 8100 TIP 437594 20613 6057268 2024-02-24 19:49:08.058 2024-02-24 19:49:08.058 9000 FEE 437612 16485 6057269 2024-02-24 19:49:08.058 2024-02-24 19:49:08.058 81000 TIP 437612 21391 6057278 2024-02-24 19:50:15.337 2024-02-24 19:50:15.337 900 FEE 437588 5752 6057279 2024-02-24 19:50:15.337 2024-02-24 19:50:15.337 8100 TIP 437588 4304 6057285 2024-02-24 19:51:43.588 2024-02-24 19:51:43.588 2100 FEE 437605 19537 6057286 2024-02-24 19:51:43.588 2024-02-24 19:51:43.588 18900 TIP 437605 9796 6057295 2024-02-24 19:54:18.48 2024-02-24 19:54:18.48 2100 FEE 437531 9355 6057296 2024-02-24 19:54:18.48 2024-02-24 19:54:18.48 18900 TIP 437531 5425 6057316 2024-02-24 19:55:21.397 2024-02-24 19:55:21.397 1100 FEE 437611 13574 6057317 2024-02-24 19:55:21.397 2024-02-24 19:55:21.397 9900 TIP 437611 21614 6057355 2024-02-24 19:59:22.774 2024-02-24 19:59:22.774 1000 FEE 437644 21379 6057367 2024-02-24 20:02:38.979 2024-02-24 20:02:38.979 1000 FEE 437611 10291 6057368 2024-02-24 20:02:38.979 2024-02-24 20:02:38.979 9000 TIP 437611 18306 6057369 2024-02-24 20:02:39.528 2024-02-24 20:02:39.528 1000 FEE 437611 3304 6057370 2024-02-24 20:02:39.528 2024-02-24 20:02:39.528 9000 TIP 437611 628 6057411 2024-02-24 20:14:12.696 2024-02-24 20:14:12.696 10000 FEE 437648 1571 6057412 2024-02-24 20:14:12.696 2024-02-24 20:14:12.696 90000 TIP 437648 5425 6057413 2024-02-24 20:14:27.109 2024-02-24 20:14:27.109 5000 FEE 437240 21395 6057414 2024-02-24 20:14:27.109 2024-02-24 20:14:27.109 45000 TIP 437240 20811 6057417 2024-02-24 20:15:18.061 2024-02-24 20:15:18.061 1000 FEE 437650 9356 6057436 2024-02-24 20:19:02.345 2024-02-24 20:19:02.345 6900 FEE 437502 5487 6057437 2024-02-24 20:19:02.345 2024-02-24 20:19:02.345 62100 TIP 437502 10342 6057479 2024-02-24 20:22:56.11 2024-02-24 20:22:56.11 1000 FEE 437658 8985 6057504 2024-02-24 20:27:38.716 2024-02-24 20:27:38.716 1000 FEE 437660 18219 6057505 2024-02-24 20:27:52.588 2024-02-24 20:27:52.588 4200 FEE 436752 1624 6057506 2024-02-24 20:27:52.588 2024-02-24 20:27:52.588 37800 TIP 436752 17535 6057532 2024-02-24 20:29:59.917 2024-02-24 20:29:59.917 1000 FEE 437662 3371 6057533 2024-02-24 20:29:59.917 2024-02-24 20:29:59.917 9000 TIP 437662 15088 6057538 2024-02-24 20:30:00.493 2024-02-24 20:30:00.493 1000 FEE 437662 1751 6057539 2024-02-24 20:30:00.493 2024-02-24 20:30:00.493 9000 TIP 437662 15732 6057570 2024-02-24 20:35:11.734 2024-02-24 20:35:11.734 6900 FEE 437659 15146 6057571 2024-02-24 20:35:11.734 2024-02-24 20:35:11.734 62100 TIP 437659 18865 6057578 2024-02-24 20:37:17.118 2024-02-24 20:37:17.118 10000 FEE 437524 6700 6056797 2024-02-24 18:57:03.702 2024-02-24 18:57:03.702 1000 STREAM 141924 6327 6119935 2024-02-29 22:29:04.735 2024-02-29 22:29:04.735 1000 STREAM 141924 15094 6119943 2024-02-29 22:31:04.702 2024-02-29 22:31:04.702 1000 STREAM 141924 20514 6120034 2024-02-29 22:37:04.759 2024-02-29 22:37:04.759 1000 STREAM 141924 620 6120039 2024-02-29 22:38:04.747 2024-02-29 22:38:04.747 1000 STREAM 141924 4624 6120056 2024-02-29 22:39:04.757 2024-02-29 22:39:04.757 1000 STREAM 141924 21079 6120068 2024-02-29 22:41:04.745 2024-02-29 22:41:04.745 1000 STREAM 141924 18705 6120074 2024-02-29 22:42:04.755 2024-02-29 22:42:04.755 1000 STREAM 141924 18842 6120080 2024-02-29 22:44:04.767 2024-02-29 22:44:04.767 1000 STREAM 141924 5809 6120118 2024-02-29 22:48:04.793 2024-02-29 22:48:04.793 1000 STREAM 141924 10728 6120135 2024-02-29 22:49:04.793 2024-02-29 22:49:04.793 1000 STREAM 141924 1617 6056835 2024-02-24 19:00:03.634 2024-02-24 19:00:03.634 1000 STREAM 141924 656 6056844 2024-02-24 19:01:03.6 2024-02-24 19:01:03.6 1000 STREAM 141924 21424 6056867 2024-02-24 19:02:03.618 2024-02-24 19:02:03.618 1000 STREAM 141924 1733 6056873 2024-02-24 19:04:03.629 2024-02-24 19:04:03.629 1000 STREAM 141924 21157 6056884 2024-02-24 19:06:03.697 2024-02-24 19:06:03.697 1000 STREAM 141924 649 6056898 2024-02-24 19:12:03.734 2024-02-24 19:12:03.734 1000 STREAM 141924 20137 6056907 2024-02-24 19:14:03.731 2024-02-24 19:14:03.731 1000 STREAM 141924 16956 6056930 2024-02-24 19:15:05.733 2024-02-24 19:15:05.733 1000 STREAM 141924 12821 6056946 2024-02-24 19:16:03.737 2024-02-24 19:16:03.737 1000 STREAM 141924 20102 6056968 2024-02-24 19:18:03.755 2024-02-24 19:18:03.755 1000 STREAM 141924 21514 6056974 2024-02-24 19:19:03.771 2024-02-24 19:19:03.771 1000 STREAM 141924 775 6056994 2024-02-24 19:21:03.771 2024-02-24 19:21:03.771 1000 STREAM 141924 1658 6057005 2024-02-24 19:25:03.789 2024-02-24 19:25:03.789 1000 STREAM 141924 20245 6057012 2024-02-24 19:27:03.798 2024-02-24 19:27:03.798 1000 STREAM 141924 861 6057025 2024-02-24 19:28:03.8 2024-02-24 19:28:03.8 1000 STREAM 141924 895 6057034 2024-02-24 19:29:03.82 2024-02-24 19:29:03.82 1000 STREAM 141924 687 6057043 2024-02-24 19:30:03.814 2024-02-24 19:30:03.814 1000 STREAM 141924 21271 6057047 2024-02-24 19:31:03.824 2024-02-24 19:31:03.824 1000 STREAM 141924 18321 6057062 2024-02-24 19:32:03.829 2024-02-24 19:32:03.829 1000 STREAM 141924 15075 6057087 2024-02-24 19:33:03.856 2024-02-24 19:33:03.856 1000 STREAM 141924 16329 6057094 2024-02-24 19:35:03.854 2024-02-24 19:35:03.854 1000 STREAM 141924 3456 6057102 2024-02-24 19:37:03.944 2024-02-24 19:37:03.944 1000 STREAM 141924 913 6057145 2024-02-24 19:41:03.965 2024-02-24 19:41:03.965 1000 STREAM 141924 14278 6057156 2024-02-24 19:43:03.976 2024-02-24 19:43:03.976 1000 STREAM 141924 999 6057172 2024-02-24 19:44:03.991 2024-02-24 19:44:03.991 1000 STREAM 141924 9276 6057182 2024-02-24 19:45:03.988 2024-02-24 19:45:03.988 1000 STREAM 141924 15938 6057239 2024-02-24 19:47:04.002 2024-02-24 19:47:04.002 1000 STREAM 141924 7960 6057267 2024-02-24 19:49:04.028 2024-02-24 19:49:04.028 1000 STREAM 141924 6499 6057287 2024-02-24 19:52:04.036 2024-02-24 19:52:04.036 1000 STREAM 141924 18472 6057288 2024-02-24 19:53:04.033 2024-02-24 19:53:04.033 1000 STREAM 141924 20264 6057353 2024-02-24 19:58:04.05 2024-02-24 19:58:04.05 1000 STREAM 141924 16724 6057354 2024-02-24 19:59:04.064 2024-02-24 19:59:04.064 1000 STREAM 141924 13133 6120102 2024-02-29 22:46:06.201 2024-02-29 22:46:06.201 1000 STREAM 141924 21480 6056858 2024-02-24 19:01:34.216 2024-02-24 19:01:34.216 1000 FEE 437181 18243 6056859 2024-02-24 19:01:34.216 2024-02-24 19:01:34.216 9000 TIP 437181 780 6056874 2024-02-24 19:04:36.024 2024-02-24 19:04:36.024 1000 FEE 437535 19732 6056875 2024-02-24 19:04:36.024 2024-02-24 19:04:36.024 9000 TIP 437535 2285 6056893 2024-02-24 19:11:18.199 2024-02-24 19:11:18.199 2100 FEE 437605 21166 6056894 2024-02-24 19:11:18.199 2024-02-24 19:11:18.199 18900 TIP 437605 18446 6056942 2024-02-24 19:15:53.188 2024-02-24 19:15:53.188 1000 FEE 437600 17552 6056943 2024-02-24 19:15:53.188 2024-02-24 19:15:53.188 9000 TIP 437600 20588 6056955 2024-02-24 19:16:47.912 2024-02-24 19:16:47.912 0 FEE 437611 20581 6056956 2024-02-24 19:17:02.643 2024-02-24 19:17:02.643 100 FEE 437613 2264 6056957 2024-02-24 19:17:02.643 2024-02-24 19:17:02.643 900 TIP 437613 6526 6056962 2024-02-24 19:17:55.471 2024-02-24 19:17:55.471 2100 FEE 437611 1198 6056963 2024-02-24 19:17:55.471 2024-02-24 19:17:55.471 18900 TIP 437611 21620 6056972 2024-02-24 19:18:44.374 2024-02-24 19:18:44.374 1000 FEE 437512 11165 6056973 2024-02-24 19:18:44.374 2024-02-24 19:18:44.374 9000 TIP 437512 19660 6056990 2024-02-24 19:20:13.836 2024-02-24 19:20:13.836 0 FEE 437618 20258 6056992 2024-02-24 19:20:35.822 2024-02-24 19:20:35.822 12800 FEE 437403 18500 6056993 2024-02-24 19:20:35.822 2024-02-24 19:20:35.822 115200 TIP 437403 16348 6057011 2024-02-24 19:26:53.085 2024-02-24 19:26:53.085 0 FEE 437626 7916 6057026 2024-02-24 19:28:05.298 2024-02-24 19:28:05.298 1000 FEE 437535 644 6057027 2024-02-24 19:28:05.298 2024-02-24 19:28:05.298 9000 TIP 437535 19690 6057058 2024-02-24 19:31:42.157 2024-02-24 19:31:42.157 700 FEE 437625 14271 6057059 2024-02-24 19:31:42.157 2024-02-24 19:31:42.157 6300 TIP 437625 7583 6057073 2024-02-24 19:32:31.525 2024-02-24 19:32:31.525 22200 FEE 437611 16178 6057074 2024-02-24 19:32:31.525 2024-02-24 19:32:31.525 199800 TIP 437611 4238 6057091 2024-02-24 19:33:28.076 2024-02-24 19:33:28.076 2000 FEE 437611 730 6057092 2024-02-24 19:33:28.076 2024-02-24 19:33:28.076 18000 TIP 437611 20717 6057105 2024-02-24 19:37:44.099 2024-02-24 19:37:44.099 1000 FEE 437636 4084 6057108 2024-02-24 19:38:22.213 2024-02-24 19:38:22.213 1000 FEE 437454 19484 6057109 2024-02-24 19:38:22.213 2024-02-24 19:38:22.213 9000 TIP 437454 3440 6057125 2024-02-24 19:39:06.897 2024-02-24 19:39:06.897 1000 FEE 437569 2098 6057126 2024-02-24 19:39:06.897 2024-02-24 19:39:06.897 9000 TIP 437569 19848 6057132 2024-02-24 19:40:16.764 2024-02-24 19:40:16.764 1000 FEE 437637 2088 6057138 2024-02-24 19:40:27.271 2024-02-24 19:40:27.271 2100 FEE 437634 21356 6057139 2024-02-24 19:40:27.271 2024-02-24 19:40:27.271 18900 TIP 437634 1141 6057144 2024-02-24 19:41:01.51 2024-02-24 19:41:01.51 1000 FEE 437639 1175 6057176 2024-02-24 19:44:32.896 2024-02-24 19:44:32.896 100 FEE 437531 2232 6057177 2024-02-24 19:44:32.896 2024-02-24 19:44:32.896 900 TIP 437531 10469 6057195 2024-02-24 19:46:07.057 2024-02-24 19:46:07.057 1000 FEE 201598 12277 6057196 2024-02-24 19:46:07.057 2024-02-24 19:46:07.057 9000 TIP 201598 12265 6057197 2024-02-24 19:46:07.19 2024-02-24 19:46:07.19 1000 FEE 201598 1320 6057198 2024-02-24 19:46:07.19 2024-02-24 19:46:07.19 9000 TIP 201598 6137 6057205 2024-02-24 19:46:07.962 2024-02-24 19:46:07.962 1000 FEE 201598 11789 6057206 2024-02-24 19:46:07.962 2024-02-24 19:46:07.962 9000 TIP 201598 16513 6057209 2024-02-24 19:46:08.327 2024-02-24 19:46:08.327 1000 FEE 201598 7992 6057210 2024-02-24 19:46:08.327 2024-02-24 19:46:08.327 9000 TIP 201598 1845 6057263 2024-02-24 19:48:54.722 2024-02-24 19:48:54.722 100 FEE 437612 3304 6057264 2024-02-24 19:48:54.722 2024-02-24 19:48:54.722 900 TIP 437612 859 6057276 2024-02-24 19:50:15.243 2024-02-24 19:50:15.243 100 FEE 437588 11942 6057277 2024-02-24 19:50:15.243 2024-02-24 19:50:15.243 900 TIP 437588 20299 6057280 2024-02-24 19:50:15.812 2024-02-24 19:50:15.812 9000 FEE 437588 699 6057281 2024-02-24 19:50:15.812 2024-02-24 19:50:15.812 81000 TIP 437588 2703 6057292 2024-02-24 19:53:48.506 2024-02-24 19:53:48.506 2100 FEE 437408 660 6057293 2024-02-24 19:53:48.506 2024-02-24 19:53:48.506 18900 TIP 437408 4378 6057314 2024-02-24 19:55:21.136 2024-02-24 19:55:21.136 1100 FEE 437611 1772 6057315 2024-02-24 19:55:21.136 2024-02-24 19:55:21.136 9900 TIP 437611 21600 6057322 2024-02-24 19:55:22.145 2024-02-24 19:55:22.145 1100 FEE 437454 1488 6057323 2024-02-24 19:55:22.145 2024-02-24 19:55:22.145 9900 TIP 437454 19329 6057373 2024-02-24 20:02:59.795 2024-02-24 20:02:59.795 1000 FEE 437408 18372 6057374 2024-02-24 20:02:59.795 2024-02-24 20:02:59.795 9000 TIP 437408 4989 6057459 2024-02-24 20:19:39.952 2024-02-24 20:19:39.952 1000 FEE 437516 20861 6057460 2024-02-24 20:19:39.952 2024-02-24 20:19:39.952 9000 TIP 437516 2832 6057461 2024-02-24 20:19:50.165 2024-02-24 20:19:50.165 6900 FEE 437646 4831 6057462 2024-02-24 20:19:50.165 2024-02-24 20:19:50.165 62100 TIP 437646 5825 6057463 2024-02-24 20:19:50.452 2024-02-24 20:19:50.452 6900 FEE 437646 2748 6057464 2024-02-24 20:19:50.452 2024-02-24 20:19:50.452 62100 TIP 437646 782 6057469 2024-02-24 20:20:01.642 2024-02-24 20:20:01.642 1000 FEE 437655 9183 6057476 2024-02-24 20:21:58.306 2024-02-24 20:21:58.306 1000 FEE 437656 3518 6057483 2024-02-24 20:26:01.269 2024-02-24 20:26:01.269 1000 FEE 437658 9336 6057484 2024-02-24 20:26:01.269 2024-02-24 20:26:01.269 9000 TIP 437658 629 6057491 2024-02-24 20:26:02.771 2024-02-24 20:26:02.771 1000 FEE 437658 6419 6057492 2024-02-24 20:26:02.771 2024-02-24 20:26:02.771 9000 TIP 437658 780 6057507 2024-02-24 20:27:54.786 2024-02-24 20:27:54.786 100 FEE 437589 18637 6057508 2024-02-24 20:27:54.786 2024-02-24 20:27:54.786 900 TIP 437589 2741 6057522 2024-02-24 20:29:59.179 2024-02-24 20:29:59.179 1000 FEE 437662 21422 6057523 2024-02-24 20:29:59.179 2024-02-24 20:29:59.179 9000 TIP 437662 6700 6057591 2024-02-24 20:40:30.738 2024-02-24 20:40:30.738 2100 FEE 437626 18114 6057592 2024-02-24 20:40:30.738 2024-02-24 20:40:30.738 18900 TIP 437626 16556 6057632 2024-02-24 20:49:11.577 2024-02-24 20:49:11.577 1000 FEE 437675 9353 6057645 2024-02-24 20:51:42.24 2024-02-24 20:51:42.24 1000 FEE 437427 19033 6057646 2024-02-24 20:51:42.24 2024-02-24 20:51:42.24 9000 TIP 437427 19103 6057651 2024-02-24 20:52:28.267 2024-02-24 20:52:28.267 4000 FEE 437611 17014 6057652 2024-02-24 20:52:28.267 2024-02-24 20:52:28.267 36000 TIP 437611 21222 6057657 2024-02-24 20:52:31.53 2024-02-24 20:52:31.53 1000 FEE 437662 21402 6057658 2024-02-24 20:52:31.53 2024-02-24 20:52:31.53 9000 TIP 437662 20674 6057667 2024-02-24 20:52:37.618 2024-02-24 20:52:37.618 4000 FEE 437524 5387 6057668 2024-02-24 20:52:37.618 2024-02-24 20:52:37.618 36000 TIP 437524 19446 6057669 2024-02-24 20:52:37.872 2024-02-24 20:52:37.872 0 FEE 437678 732 6057679 2024-02-24 20:53:27.592 2024-02-24 20:53:27.592 1000 FEE 437673 652 6057680 2024-02-24 20:53:27.592 2024-02-24 20:53:27.592 9000 TIP 437673 21159 6057681 2024-02-24 20:53:40.415 2024-02-24 20:53:40.415 0 FEE 437678 7395 6057702 2024-02-24 20:59:39.13 2024-02-24 20:59:39.13 1000 FEE 437686 20972 6056886 2024-02-24 19:07:03.678 2024-02-24 19:07:03.678 1000 STREAM 141924 2829 6056888 2024-02-24 19:09:03.708 2024-02-24 19:09:03.708 1000 STREAM 141924 811 6056889 2024-02-24 19:10:03.737 2024-02-24 19:10:03.737 1000 STREAM 141924 21342 6120140 2024-02-29 22:50:05.014 2024-02-29 22:50:05.014 1000 STREAM 141924 1647 6120165 2024-02-29 22:51:05.005 2024-02-29 22:51:05.005 1000 STREAM 141924 18336 6120182 2024-02-29 22:54:05.018 2024-02-29 22:54:05.018 1000 STREAM 141924 6041 6120187 2024-02-29 22:55:05.043 2024-02-29 22:55:05.043 1000 STREAM 141924 6310 6120218 2024-02-29 22:59:05.091 2024-02-29 22:59:05.091 1000 STREAM 141924 2711 6120260 2024-02-29 23:02:05.097 2024-02-29 23:02:05.097 1000 STREAM 141924 17321 6120297 2024-02-29 23:06:05.128 2024-02-29 23:06:05.128 1000 STREAM 141924 20646 6120303 2024-02-29 23:07:05.131 2024-02-29 23:07:05.131 1000 STREAM 141924 21033 6120310 2024-02-29 23:09:05.109 2024-02-29 23:09:05.109 1000 STREAM 141924 2529 6120319 2024-02-29 23:10:05.183 2024-02-29 23:10:05.183 1000 STREAM 141924 20340 6120328 2024-02-29 23:11:05.137 2024-02-29 23:11:05.137 1000 STREAM 141924 15728 6056904 2024-02-24 19:13:03.732 2024-02-24 19:13:03.732 1000 STREAM 141924 10554 6056958 2024-02-24 19:17:03.755 2024-02-24 19:17:03.755 1000 STREAM 141924 16532 6056989 2024-02-24 19:20:03.768 2024-02-24 19:20:03.768 1000 STREAM 141924 20434 6056996 2024-02-24 19:22:03.779 2024-02-24 19:22:03.779 1000 STREAM 141924 17116 6056997 2024-02-24 19:23:03.789 2024-02-24 19:23:03.789 1000 STREAM 141924 21194 6057002 2024-02-24 19:24:03.787 2024-02-24 19:24:03.787 1000 STREAM 141924 2232 6057010 2024-02-24 19:26:03.807 2024-02-24 19:26:03.807 1000 STREAM 141924 2614 6057093 2024-02-24 19:34:03.844 2024-02-24 19:34:03.844 1000 STREAM 141924 1733 6057097 2024-02-24 19:36:03.955 2024-02-24 19:36:03.955 1000 STREAM 141924 7899 6057129 2024-02-24 19:40:03.964 2024-02-24 19:40:03.964 1000 STREAM 141924 19902 6057151 2024-02-24 19:42:03.97 2024-02-24 19:42:03.97 1000 STREAM 141924 21239 6057192 2024-02-24 19:46:04.001 2024-02-24 19:46:04.001 1000 STREAM 141924 769 6057254 2024-02-24 19:48:04.012 2024-02-24 19:48:04.012 1000 STREAM 141924 11938 6057275 2024-02-24 19:50:04.088 2024-02-24 19:50:04.088 1000 STREAM 141924 4415 6057282 2024-02-24 19:51:04.022 2024-02-24 19:51:04.022 1000 STREAM 141924 19446 6057294 2024-02-24 19:54:04.037 2024-02-24 19:54:04.037 1000 STREAM 141924 14503 6057299 2024-02-24 19:55:04.033 2024-02-24 19:55:04.033 1000 STREAM 141924 10554 6057349 2024-02-24 19:56:04.044 2024-02-24 19:56:04.044 1000 STREAM 141924 15326 6057352 2024-02-24 19:57:04.043 2024-02-24 19:57:04.043 1000 STREAM 141924 1094 6057357 2024-02-24 20:00:04.075 2024-02-24 20:00:04.075 1000 STREAM 141924 20129 6057358 2024-02-24 20:01:04.081 2024-02-24 20:01:04.081 1000 STREAM 141924 4763 6120170 2024-02-29 22:52:05 2024-02-29 22:52:05 1000 STREAM 141924 5779 6120194 2024-02-29 22:56:05.044 2024-02-29 22:56:05.044 1000 STREAM 141924 19142 6120203 2024-02-29 22:57:05.083 2024-02-29 22:57:05.083 1000 STREAM 141924 12334 6120211 2024-02-29 22:58:05.066 2024-02-29 22:58:05.066 1000 STREAM 141924 708 6120226 2024-02-29 23:00:05.178 2024-02-29 23:00:05.178 1000 STREAM 141924 986 6120265 2024-02-29 23:03:05.104 2024-02-29 23:03:05.104 1000 STREAM 141924 8985 6120278 2024-02-29 23:04:05.11 2024-02-29 23:04:05.11 1000 STREAM 141924 16950 6120294 2024-02-29 23:05:05.114 2024-02-29 23:05:05.114 1000 STREAM 141924 15806 6120307 2024-02-29 23:08:05.159 2024-02-29 23:08:05.159 1000 STREAM 141924 2123 6057106 2024-02-24 19:38:04.428 2024-02-24 19:38:04.428 1000 STREAM 141924 16834 6057124 2024-02-24 19:39:04.42 2024-02-24 19:39:04.42 1000 STREAM 141924 20129 6120242 2024-02-29 23:00:53.593 2024-02-29 23:00:53.593 9900 TIP 443483 2029 6120248 2024-02-29 23:01:33.765 2024-02-29 23:01:33.765 1000 FEE 443834 1833 6120249 2024-02-29 23:01:33.765 2024-02-29 23:01:33.765 9000 TIP 443834 19930 6120268 2024-02-29 23:03:17.597 2024-02-29 23:03:17.597 300 FEE 443312 19566 6120269 2024-02-29 23:03:17.597 2024-02-29 23:03:17.597 2700 TIP 443312 716 6120298 2024-02-29 23:06:12.693 2024-02-29 23:06:12.693 1000 FEE 444396 3506 6120349 2024-02-29 23:12:46.537 2024-02-29 23:12:46.537 2000 FEE 443942 1733 6120350 2024-02-29 23:12:46.537 2024-02-29 23:12:46.537 18000 TIP 443942 1429 6120376 2024-02-29 23:16:27.882 2024-02-29 23:16:27.882 300 FEE 444359 17827 6120377 2024-02-29 23:16:27.882 2024-02-29 23:16:27.882 2700 TIP 444359 5293 6120386 2024-02-29 23:19:51.747 2024-02-29 23:19:51.747 1000 FEE 444210 20776 6120387 2024-02-29 23:19:51.747 2024-02-29 23:19:51.747 9000 TIP 444210 1603 6120394 2024-02-29 23:20:51.559 2024-02-29 23:20:51.559 10000 FEE 444407 19322 6120405 2024-02-29 23:24:44.231 2024-02-29 23:24:44.231 0 FEE 444406 17201 6120410 2024-02-29 23:26:31.596 2024-02-29 23:26:31.596 1000 FEE 444411 1465 6120428 2024-02-29 23:30:34.316 2024-02-29 23:30:34.316 1100 FEE 444408 8242 6120429 2024-02-29 23:30:34.316 2024-02-29 23:30:34.316 9900 TIP 444408 1773 6120445 2024-02-29 23:35:38.89 2024-02-29 23:35:38.89 10000 FEE 444173 21343 6120446 2024-02-29 23:35:38.89 2024-02-29 23:35:38.89 90000 TIP 444173 5703 6120450 2024-02-29 23:36:21.51 2024-02-29 23:36:21.51 1000 FEE 444415 10398 6120511 2024-02-29 23:52:41.208 2024-02-29 23:52:41.208 3300 FEE 444372 18403 6120512 2024-02-29 23:52:41.208 2024-02-29 23:52:41.208 29700 TIP 444372 11220 6120559 2024-03-01 00:00:26.876 2024-03-01 00:00:26.876 100000 FEE 444433 1825 6120582 2024-03-01 00:08:20.836 2024-03-01 00:08:20.836 5000 FEE 444102 1429 6120583 2024-03-01 00:08:20.836 2024-03-01 00:08:20.836 45000 TIP 444102 21064 6120613 2024-03-01 00:16:58.767 2024-03-01 00:16:58.767 2100 FEE 443585 20187 6120614 2024-03-01 00:16:58.767 2024-03-01 00:16:58.767 18900 TIP 443585 5557 6120670 2024-03-01 00:24:10.758 2024-03-01 00:24:10.758 20000 FEE 444450 8916 6120675 2024-03-01 00:25:11.668 2024-03-01 00:25:11.668 10000 FEE 444173 20272 6120676 2024-03-01 00:25:11.668 2024-03-01 00:25:11.668 90000 TIP 444173 3717 6120688 2024-03-01 00:29:05.089 2024-03-01 00:29:05.089 500 FEE 443983 12736 6120689 2024-03-01 00:29:05.089 2024-03-01 00:29:05.089 4500 TIP 443983 2844 6120692 2024-03-01 00:29:13.081 2024-03-01 00:29:13.081 1000 FEE 444365 11430 6120693 2024-03-01 00:29:13.081 2024-03-01 00:29:13.081 9000 TIP 444365 18837 6120697 2024-03-01 00:30:44.505 2024-03-01 00:30:44.505 500 FEE 444369 21233 6120698 2024-03-01 00:30:44.505 2024-03-01 00:30:44.505 4500 TIP 444369 19622 6120709 2024-03-01 00:34:31.963 2024-03-01 00:34:31.963 100 FEE 444421 18680 6120710 2024-03-01 00:34:31.963 2024-03-01 00:34:31.963 900 TIP 444421 5661 6120746 2024-03-01 00:46:45.753 2024-03-01 00:46:45.753 1000 FEE 444460 1697 6120758 2024-03-01 00:52:43.369 2024-03-01 00:52:43.369 21000 FEE 444461 946 6120766 2024-03-01 00:56:26.536 2024-03-01 00:56:26.536 100 FEE 444462 17014 6120767 2024-03-01 00:56:26.536 2024-03-01 00:56:26.536 900 TIP 444462 9863 6120768 2024-03-01 00:56:49.813 2024-03-01 00:56:49.813 100 FEE 444458 17984 6120769 2024-03-01 00:56:49.813 2024-03-01 00:56:49.813 900 TIP 444458 20218 6120802 2024-03-01 01:02:42.053 2024-03-01 01:02:42.053 20000 FEE 444469 20555 6120811 2024-03-01 01:05:27 2024-03-01 01:05:27 2600 FEE 444464 20409 6120812 2024-03-01 01:05:27 2024-03-01 01:05:27 23400 TIP 444464 18409 6120846 2024-03-01 01:11:29.698 2024-03-01 01:11:29.698 1000 FEE 444210 17446 6120847 2024-03-01 01:11:29.698 2024-03-01 01:11:29.698 9000 TIP 444210 3377 6120865 2024-03-01 01:15:11.197 2024-03-01 01:15:11.197 1000 FEE 444472 14295 6120880 2024-03-01 01:20:03.687 2024-03-01 01:20:03.687 1000 FEE 444475 15063 6120913 2024-03-01 01:29:08.375 2024-03-01 01:29:08.375 1000 FEE 444482 12291 6120959 2024-03-01 01:54:46.533 2024-03-01 01:54:46.533 2100 FEE 444230 780 6120960 2024-03-01 01:54:46.533 2024-03-01 01:54:46.533 18900 TIP 444230 17217 6120965 2024-03-01 01:56:22.339 2024-03-01 01:56:22.339 1000 FEE 444440 11776 6120966 2024-03-01 01:56:22.339 2024-03-01 01:56:22.339 9000 TIP 444440 18230 6120973 2024-03-01 01:57:28.174 2024-03-01 01:57:28.174 1000 FEE 444492 9275 6120984 2024-03-01 02:00:05.585 2024-03-01 02:00:05.585 1000 FEE 444494 20353 6120986 2024-03-01 02:01:04.391 2024-03-01 02:01:04.391 1000 FEE 444495 2329 6121017 2024-03-01 02:17:06.455 2024-03-01 02:17:06.455 6900 FEE 444486 828 6121018 2024-03-01 02:17:06.455 2024-03-01 02:17:06.455 62100 TIP 444486 1571 6121019 2024-03-01 02:17:12.783 2024-03-01 02:17:12.783 2300 FEE 444486 18543 6121020 2024-03-01 02:17:12.783 2024-03-01 02:17:12.783 20700 TIP 444486 11263 6121021 2024-03-01 02:17:22.905 2024-03-01 02:17:22.905 1000 FEE 444365 20963 6121022 2024-03-01 02:17:22.905 2024-03-01 02:17:22.905 9000 TIP 444365 20730 6121078 2024-03-01 02:31:24.091 2024-03-01 02:31:24.091 2100 FEE 444365 18714 6121079 2024-03-01 02:31:24.091 2024-03-01 02:31:24.091 18900 TIP 444365 21338 6121080 2024-03-01 02:31:24.729 2024-03-01 02:31:24.729 2100 FEE 444102 882 6121081 2024-03-01 02:31:24.729 2024-03-01 02:31:24.729 18900 TIP 444102 8998 6121138 2024-03-01 02:52:32.594 2024-03-01 02:52:32.594 1000 FEE 444513 11515 6121152 2024-03-01 02:57:05.642 2024-03-01 02:57:05.642 2100 FEE 444465 11164 6121153 2024-03-01 02:57:05.642 2024-03-01 02:57:05.642 18900 TIP 444465 11153 6121207 2024-03-01 03:08:39.385 2024-03-01 03:08:39.385 100 FEE 444365 12268 6121208 2024-03-01 03:08:39.385 2024-03-01 03:08:39.385 900 TIP 444365 12222 6121209 2024-03-01 03:09:00.844 2024-03-01 03:09:00.844 100 FEE 444358 7746 6121210 2024-03-01 03:09:00.844 2024-03-01 03:09:00.844 900 TIP 444358 1740 6121236 2024-03-01 03:17:05.556 2024-03-01 03:17:05.556 100 FEE 444465 14376 6121237 2024-03-01 03:17:05.556 2024-03-01 03:17:05.556 900 TIP 444465 16296 6121249 2024-03-01 03:23:29.396 2024-03-01 03:23:29.396 1000 FEE 444524 17209 6121262 2024-03-01 03:29:59.219 2024-03-01 03:29:59.219 1000 FEE 444530 6229 6121336 2024-03-01 03:49:15.466 2024-03-01 03:49:15.466 1000 FEE 444538 19007 6121347 2024-03-01 03:53:04.782 2024-03-01 03:53:04.782 2800 FEE 444519 15351 6121348 2024-03-01 03:53:04.782 2024-03-01 03:53:04.782 25200 TIP 444519 859 6121365 2024-03-01 03:59:31.656 2024-03-01 03:59:31.656 1000 FEE 444545 18270 6121380 2024-03-01 04:01:58.992 2024-03-01 04:01:58.992 1000 FEE 444173 4225 6121381 2024-03-01 04:01:58.992 2024-03-01 04:01:58.992 9000 TIP 444173 1814 6121382 2024-03-01 04:01:59.267 2024-03-01 04:01:59.267 1000 FEE 444173 10821 6121383 2024-03-01 04:01:59.267 2024-03-01 04:01:59.267 9000 TIP 444173 9421 6057272 2024-02-24 19:49:23.133 2024-02-24 19:49:23.133 90000 FEE 436197 5129 6057273 2024-02-24 19:49:23.133 2024-02-24 19:49:23.133 810000 TIP 436197 20704 6057304 2024-02-24 19:55:20.158 2024-02-24 19:55:20.158 2200 FEE 437269 19281 6057305 2024-02-24 19:55:20.158 2024-02-24 19:55:20.158 19800 TIP 437269 980 6057336 2024-02-24 19:55:36.781 2024-02-24 19:55:36.781 1100 FEE 437238 18673 6057337 2024-02-24 19:55:36.781 2024-02-24 19:55:36.781 9900 TIP 437238 19417 6057342 2024-02-24 19:55:37.289 2024-02-24 19:55:37.289 1100 FEE 437238 20452 6057343 2024-02-24 19:55:37.289 2024-02-24 19:55:37.289 9900 TIP 437238 10979 6057346 2024-02-24 19:55:37.559 2024-02-24 19:55:37.559 1100 FEE 437238 14515 6057347 2024-02-24 19:55:37.559 2024-02-24 19:55:37.559 9900 TIP 437238 13246 6057384 2024-02-24 20:06:41.064 2024-02-24 20:06:41.064 2100 FEE 437646 7395 6057385 2024-02-24 20:06:41.064 2024-02-24 20:06:41.064 18900 TIP 437646 19281 6057442 2024-02-24 20:19:02.759 2024-02-24 20:19:02.759 6900 FEE 437502 18170 6057443 2024-02-24 20:19:02.759 2024-02-24 20:19:02.759 62100 TIP 437502 5519 6057449 2024-02-24 20:19:07.135 2024-02-24 20:19:07.135 6900 FEE 437611 654 6057450 2024-02-24 20:19:07.135 2024-02-24 20:19:07.135 62100 TIP 437611 12024 6057451 2024-02-24 20:19:07.154 2024-02-24 20:19:07.154 6900 FEE 437611 2088 6057452 2024-02-24 20:19:07.154 2024-02-24 20:19:07.154 62100 TIP 437611 4763 6057496 2024-02-24 20:26:51.576 2024-02-24 20:26:51.576 100 FEE 437655 12072 6057497 2024-02-24 20:26:51.576 2024-02-24 20:26:51.576 900 TIP 437655 1352 6057498 2024-02-24 20:26:51.903 2024-02-24 20:26:51.903 900 FEE 437655 1401 6057499 2024-02-24 20:26:51.903 2024-02-24 20:26:51.903 8100 TIP 437655 15941 6057500 2024-02-24 20:26:52.31 2024-02-24 20:26:52.31 9000 FEE 437655 13169 6057501 2024-02-24 20:26:52.31 2024-02-24 20:26:52.31 81000 TIP 437655 2016 6057519 2024-02-24 20:29:48.397 2024-02-24 20:29:48.397 10000 FEE 437611 18736 6057520 2024-02-24 20:29:48.397 2024-02-24 20:29:48.397 90000 TIP 437611 16424 6057521 2024-02-24 20:29:50.377 2024-02-24 20:29:50.377 1000 FEE 437663 19121 6057528 2024-02-24 20:29:59.55 2024-02-24 20:29:59.55 1000 FEE 437662 17050 6057529 2024-02-24 20:29:59.55 2024-02-24 20:29:59.55 9000 TIP 437662 20816 6057540 2024-02-24 20:30:01.03 2024-02-24 20:30:01.03 1000 FEE 437662 5069 6057541 2024-02-24 20:30:01.03 2024-02-24 20:30:01.03 9000 TIP 437662 11144 6057549 2024-02-24 20:31:49.257 2024-02-24 20:31:49.257 10000 FEE 437269 16267 6057550 2024-02-24 20:31:49.257 2024-02-24 20:31:49.257 90000 TIP 437269 15560 6057555 2024-02-24 20:31:50.554 2024-02-24 20:31:50.554 10000 FEE 437269 21269 6057556 2024-02-24 20:31:50.554 2024-02-24 20:31:50.554 90000 TIP 437269 21427 6057558 2024-02-24 20:32:31.463 2024-02-24 20:32:31.463 2000 FEE 437512 16178 6057559 2024-02-24 20:32:31.463 2024-02-24 20:32:31.463 18000 TIP 437512 12368 6057565 2024-02-24 20:35:03.661 2024-02-24 20:35:03.661 2000 FEE 437512 963 6057566 2024-02-24 20:35:03.661 2024-02-24 20:35:03.661 18000 TIP 437512 21131 6057596 2024-02-24 20:41:41.984 2024-02-24 20:41:41.984 100 FEE 437653 1142 6057597 2024-02-24 20:41:41.984 2024-02-24 20:41:41.984 900 TIP 437653 2437 6057639 2024-02-24 20:50:08.877 2024-02-24 20:50:08.877 4000 FEE 437662 18274 6057640 2024-02-24 20:50:08.877 2024-02-24 20:50:08.877 36000 TIP 437662 21371 6057665 2024-02-24 20:52:37.252 2024-02-24 20:52:37.252 4000 FEE 437541 18119 6057666 2024-02-24 20:52:37.252 2024-02-24 20:52:37.252 36000 TIP 437541 17741 6057306 2024-02-24 19:55:20.188 2024-02-24 19:55:20.188 1100 FEE 437269 18359 6057307 2024-02-24 19:55:20.188 2024-02-24 19:55:20.188 9900 TIP 437269 19987 6057308 2024-02-24 19:55:20.644 2024-02-24 19:55:20.644 1100 FEE 437269 20811 6057309 2024-02-24 19:55:20.644 2024-02-24 19:55:20.644 9900 TIP 437269 21254 6057312 2024-02-24 19:55:21.004 2024-02-24 19:55:21.004 1100 FEE 437611 17109 6057313 2024-02-24 19:55:21.004 2024-02-24 19:55:21.004 9900 TIP 437611 6003 6057318 2024-02-24 19:55:21.59 2024-02-24 19:55:21.59 1100 FEE 437611 11164 6057319 2024-02-24 19:55:21.59 2024-02-24 19:55:21.59 9900 TIP 437611 14905 6057324 2024-02-24 19:55:22.324 2024-02-24 19:55:22.324 1100 FEE 437454 1046 6057325 2024-02-24 19:55:22.324 2024-02-24 19:55:22.324 9900 TIP 437454 18539 6057326 2024-02-24 19:55:22.579 2024-02-24 19:55:22.579 1100 FEE 437454 1426 6057327 2024-02-24 19:55:22.579 2024-02-24 19:55:22.579 9900 TIP 437454 9169 6057330 2024-02-24 19:55:23.185 2024-02-24 19:55:23.185 1100 FEE 437218 20781 6057331 2024-02-24 19:55:23.185 2024-02-24 19:55:23.185 9900 TIP 437218 21060 6057332 2024-02-24 19:55:23.338 2024-02-24 19:55:23.338 1100 FEE 437218 21079 6057333 2024-02-24 19:55:23.338 2024-02-24 19:55:23.338 9900 TIP 437218 10611 6057340 2024-02-24 19:55:37.15 2024-02-24 19:55:37.15 1100 FEE 437238 7877 6057341 2024-02-24 19:55:37.15 2024-02-24 19:55:37.15 9900 TIP 437238 21060 6057363 2024-02-24 20:02:37.741 2024-02-24 20:02:37.741 1000 FEE 437611 18177 6057364 2024-02-24 20:02:37.741 2024-02-24 20:02:37.741 9000 TIP 437611 8535 6057388 2024-02-24 20:06:47.231 2024-02-24 20:06:47.231 2100 FEE 437646 17046 6057389 2024-02-24 20:06:47.231 2024-02-24 20:06:47.231 18900 TIP 437646 17690 6057403 2024-02-24 20:12:29.21 2024-02-24 20:12:29.21 2100 FEE 434038 5500 6057404 2024-02-24 20:12:29.21 2024-02-24 20:12:29.21 18900 TIP 434038 8870 6057424 2024-02-24 20:16:43.642 2024-02-24 20:16:43.642 500 FEE 437630 21578 6057425 2024-02-24 20:16:43.642 2024-02-24 20:16:43.642 4500 TIP 437630 20657 6057453 2024-02-24 20:19:07.29 2024-02-24 20:19:07.29 6900 FEE 437611 19034 6057454 2024-02-24 20:19:07.29 2024-02-24 20:19:07.29 62100 TIP 437611 10342 6057465 2024-02-24 20:19:50.981 2024-02-24 20:19:50.981 6900 FEE 437646 910 6057466 2024-02-24 20:19:50.981 2024-02-24 20:19:50.981 62100 TIP 437646 19826 6057511 2024-02-24 20:28:00.122 2024-02-24 20:28:00.122 100 FEE 437493 18533 6057512 2024-02-24 20:28:00.122 2024-02-24 20:28:00.122 900 TIP 437493 1438 6057530 2024-02-24 20:29:59.84 2024-02-24 20:29:59.84 1000 FEE 437662 13055 6057531 2024-02-24 20:29:59.84 2024-02-24 20:29:59.84 9000 TIP 437662 5942 6057534 2024-02-24 20:30:00.097 2024-02-24 20:30:00.097 1000 FEE 437662 15146 6057535 2024-02-24 20:30:00.097 2024-02-24 20:30:00.097 9000 TIP 437662 16598 6057545 2024-02-24 20:31:08.783 2024-02-24 20:31:08.783 2000 FEE 437502 19199 6057546 2024-02-24 20:31:08.783 2024-02-24 20:31:08.783 18000 TIP 437502 3990 6057560 2024-02-24 20:32:42.726 2024-02-24 20:32:42.726 1000 FEE 437664 14909 6057564 2024-02-24 20:35:00.911 2024-02-24 20:35:00.911 1000 FEE 437665 21159 6057589 2024-02-24 20:40:17.83 2024-02-24 20:40:17.83 2100 FEE 437640 977 6057590 2024-02-24 20:40:17.83 2024-02-24 20:40:17.83 18900 TIP 437640 7891 6057598 2024-02-24 20:41:47.961 2024-02-24 20:41:47.961 100 FEE 437653 3683 6057599 2024-02-24 20:41:47.961 2024-02-24 20:41:47.961 900 TIP 437653 20669 6057601 2024-02-24 20:41:57.72 2024-02-24 20:41:57.72 100 FEE 437502 20198 6057602 2024-02-24 20:41:57.72 2024-02-24 20:41:57.72 900 TIP 437502 2330 6057603 2024-02-24 20:41:59.043 2024-02-24 20:41:59.043 10000 FEE 437642 1802 6057604 2024-02-24 20:41:59.043 2024-02-24 20:41:59.043 90000 TIP 437642 15544 6057608 2024-02-24 20:43:21.09 2024-02-24 20:43:21.09 100 FEE 437605 20922 6057609 2024-02-24 20:43:21.09 2024-02-24 20:43:21.09 900 TIP 437605 20681 6057611 2024-02-24 20:44:20.638 2024-02-24 20:44:20.638 1000 FEE 437671 11898 6057648 2024-02-24 20:52:26.903 2024-02-24 20:52:26.903 1000 FEE 437678 854 6057682 2024-02-24 20:53:54.653 2024-02-24 20:53:54.653 100 FEE 437555 7682 6057683 2024-02-24 20:53:54.653 2024-02-24 20:53:54.653 900 TIP 437555 16543 6057729 2024-02-24 21:02:58.107 2024-02-24 21:02:58.107 1000 FEE 437691 1478 6057731 2024-02-24 21:03:14.821 2024-02-24 21:03:14.821 100 FEE 436840 7760 6057732 2024-02-24 21:03:14.821 2024-02-24 21:03:14.821 900 TIP 436840 19403 6057737 2024-02-24 21:03:33.297 2024-02-24 21:03:33.297 1000 FEE 437693 19036 6057758 2024-02-24 21:10:02.631 2024-02-24 21:10:02.631 0 FEE 437692 14122 6057762 2024-02-24 21:11:41.579 2024-02-24 21:11:41.579 1000 FEE 437695 20084 6057775 2024-02-24 21:12:46.093 2024-02-24 21:12:46.093 500 FEE 437516 16350 6057776 2024-02-24 21:12:46.093 2024-02-24 21:12:46.093 4500 TIP 437516 9331 6057804 2024-02-24 21:15:17.717 2024-02-24 21:15:17.717 500 FEE 437454 7558 6057805 2024-02-24 21:15:17.717 2024-02-24 21:15:17.717 4500 TIP 437454 2773 6057816 2024-02-24 21:15:23.618 2024-02-24 21:15:23.618 500 FEE 437646 21612 6057817 2024-02-24 21:15:23.618 2024-02-24 21:15:23.618 4500 TIP 437646 1729 6057818 2024-02-24 21:15:24.727 2024-02-24 21:15:24.727 500 FEE 437531 7960 6057819 2024-02-24 21:15:24.727 2024-02-24 21:15:24.727 4500 TIP 437531 1712 6057838 2024-02-24 21:18:14.729 2024-02-24 21:18:14.729 500 FEE 437238 15351 6057839 2024-02-24 21:18:14.729 2024-02-24 21:18:14.729 4500 TIP 437238 5499 6057871 2024-02-24 21:33:12.618 2024-02-24 21:33:12.618 2100 FEE 437611 20454 6057872 2024-02-24 21:33:12.618 2024-02-24 21:33:12.618 18900 TIP 437611 10549 6057895 2024-02-24 21:34:51.664 2024-02-24 21:34:51.664 10000 FEE 437226 12769 6057896 2024-02-24 21:34:51.664 2024-02-24 21:34:51.664 90000 TIP 437226 9331 6057907 2024-02-24 21:36:16.241 2024-02-24 21:36:16.241 300 FEE 237616 16267 6057908 2024-02-24 21:36:16.241 2024-02-24 21:36:16.241 2700 TIP 237616 6700 6057359 2024-02-24 20:02:03.019 2024-02-24 20:02:03.019 1000 STREAM 141924 15408 6057392 2024-02-24 20:07:03.093 2024-02-24 20:07:03.093 1000 STREAM 141924 16354 6057393 2024-02-24 20:08:03.084 2024-02-24 20:08:03.084 1000 STREAM 141924 20222 6057395 2024-02-24 20:10:03.122 2024-02-24 20:10:03.122 1000 STREAM 141924 12566 6057405 2024-02-24 20:13:03.104 2024-02-24 20:13:03.104 1000 STREAM 141924 1605 6057410 2024-02-24 20:14:03.13 2024-02-24 20:14:03.13 1000 STREAM 141924 11862 6057416 2024-02-24 20:15:03.127 2024-02-24 20:15:03.127 1000 STREAM 141924 2718 6057471 2024-02-24 20:21:03.18 2024-02-24 20:21:03.18 1000 STREAM 141924 4798 6057478 2024-02-24 20:22:03.197 2024-02-24 20:22:03.197 1000 STREAM 141924 667 6057482 2024-02-24 20:25:03.215 2024-02-24 20:25:03.215 1000 STREAM 141924 20717 6057515 2024-02-24 20:28:03.586 2024-02-24 20:28:03.586 1000 STREAM 141924 5500 6057516 2024-02-24 20:29:03.59 2024-02-24 20:29:03.59 1000 STREAM 141924 1480 6057544 2024-02-24 20:31:03.707 2024-02-24 20:31:03.707 1000 STREAM 141924 4768 6120243 2024-02-29 23:01:05.364 2024-02-29 23:01:05.364 1000 STREAM 141924 21453 6057375 2024-02-24 20:03:03.044 2024-02-24 20:03:03.044 1000 STREAM 141924 19852 6057376 2024-02-24 20:04:03.04 2024-02-24 20:04:03.04 1000 STREAM 141924 20901 6057382 2024-02-24 20:05:03.086 2024-02-24 20:05:03.086 1000 STREAM 141924 19034 6057383 2024-02-24 20:06:03.085 2024-02-24 20:06:03.085 1000 STREAM 141924 5825 6057394 2024-02-24 20:09:03.085 2024-02-24 20:09:03.085 1000 STREAM 141924 9107 6057399 2024-02-24 20:11:03.099 2024-02-24 20:11:03.099 1000 STREAM 141924 10398 6057400 2024-02-24 20:12:03.099 2024-02-24 20:12:03.099 1000 STREAM 141924 9833 6057421 2024-02-24 20:16:03.174 2024-02-24 20:16:03.174 1000 STREAM 141924 18170 6057426 2024-02-24 20:17:03.164 2024-02-24 20:17:03.164 1000 STREAM 141924 15890 6057431 2024-02-24 20:18:03.168 2024-02-24 20:18:03.168 1000 STREAM 141924 9427 6057444 2024-02-24 20:19:03.17 2024-02-24 20:19:03.17 1000 STREAM 141924 19235 6057470 2024-02-24 20:20:03.206 2024-02-24 20:20:03.206 1000 STREAM 141924 19309 6057480 2024-02-24 20:23:03.2 2024-02-24 20:23:03.2 1000 STREAM 141924 18448 6057481 2024-02-24 20:24:03.213 2024-02-24 20:24:03.213 1000 STREAM 141924 16406 6057493 2024-02-24 20:26:03.224 2024-02-24 20:26:03.224 1000 STREAM 141924 9758 6057503 2024-02-24 20:27:03.578 2024-02-24 20:27:03.578 1000 STREAM 141924 9084 6057542 2024-02-24 20:30:03.71 2024-02-24 20:30:03.71 1000 STREAM 141924 7877 6057557 2024-02-24 20:32:03.714 2024-02-24 20:32:03.714 1000 STREAM 141924 17976 6057563 2024-02-24 20:34:03.89 2024-02-24 20:34:03.89 1000 STREAM 141924 10719 6120302 2024-02-29 23:06:55.856 2024-02-29 23:06:55.856 1800 TIP 444078 21138 6120311 2024-02-29 23:09:43.901 2024-02-29 23:09:43.901 3100 FEE 444351 9099 6120312 2024-02-29 23:09:43.901 2024-02-29 23:09:43.901 27900 TIP 444351 11395 6120344 2024-02-29 23:11:56.608 2024-02-29 23:11:56.608 1000 FEE 444399 21422 6120346 2024-02-29 23:12:16.622 2024-02-29 23:12:16.622 1000 FEE 444400 10608 6120375 2024-02-29 23:16:19.417 2024-02-29 23:16:19.417 0 FEE 444404 686 6120379 2024-02-29 23:17:16.655 2024-02-29 23:17:16.655 2800 FEE 443572 10719 6120380 2024-02-29 23:17:16.655 2024-02-29 23:17:16.655 25200 TIP 443572 20745 6120398 2024-02-29 23:23:04.947 2024-02-29 23:23:04.947 2800 FEE 224260 19494 6120399 2024-02-29 23:23:04.947 2024-02-29 23:23:04.947 25200 TIP 224260 20102 6120403 2024-02-29 23:24:04.34 2024-02-29 23:24:04.34 1000 FEE 444410 14202 6120411 2024-02-29 23:26:53.228 2024-02-29 23:26:53.228 4200 FEE 444398 16808 6120412 2024-02-29 23:26:53.228 2024-02-29 23:26:53.228 37800 TIP 444398 16052 6120435 2024-02-29 23:33:24.975 2024-02-29 23:33:24.975 3100 FEE 444412 15463 6120436 2024-02-29 23:33:24.975 2024-02-29 23:33:24.975 27900 TIP 444412 7674 6120447 2024-02-29 23:35:39.988 2024-02-29 23:35:39.988 1000 FEE 444413 6777 6120448 2024-02-29 23:35:53.989 2024-02-29 23:35:53.989 100000 FEE 444414 21063 6120455 2024-02-29 23:37:16.421 2024-02-29 23:37:16.421 2800 FEE 444408 21248 6120456 2024-02-29 23:37:16.421 2024-02-29 23:37:16.421 25200 TIP 444408 18169 6120468 2024-02-29 23:41:55.184 2024-02-29 23:41:55.184 0 FEE 444414 749 6120477 2024-02-29 23:46:05.853 2024-02-29 23:46:05.853 2600 FEE 444290 21369 6120478 2024-02-29 23:46:05.853 2024-02-29 23:46:05.853 23400 TIP 444290 16442 6120491 2024-02-29 23:49:09.455 2024-02-29 23:49:09.455 300 FEE 443861 18309 6120492 2024-02-29 23:49:09.455 2024-02-29 23:49:09.455 2700 TIP 443861 5904 6120493 2024-02-29 23:49:24.369 2024-02-29 23:49:24.369 300 FEE 443354 684 6120494 2024-02-29 23:49:24.369 2024-02-29 23:49:24.369 2700 TIP 443354 716 6120534 2024-02-29 23:57:06.37 2024-02-29 23:57:06.37 1000 FEE 444429 21547 6120535 2024-02-29 23:57:25.864 2024-02-29 23:57:25.864 1000 FEE 444430 14370 6120546 2024-02-29 23:58:39.494 2024-02-29 23:58:39.494 500 FEE 444378 15624 6120547 2024-02-29 23:58:39.494 2024-02-29 23:58:39.494 4500 TIP 444378 7674 6120568 2024-03-01 00:07:05.919 2024-03-01 00:07:05.919 2100 FEE 444413 1983 6120569 2024-03-01 00:07:05.919 2024-03-01 00:07:05.919 18900 TIP 444413 20963 6120575 2024-03-01 00:07:30.256 2024-03-01 00:07:30.256 5000 FEE 444168 13927 6120576 2024-03-01 00:07:30.256 2024-03-01 00:07:30.256 45000 TIP 444168 20826 6120593 2024-03-01 00:11:29.691 2024-03-01 00:11:29.691 2100 FEE 444417 20162 6120594 2024-03-01 00:11:29.691 2024-03-01 00:11:29.691 18900 TIP 444417 20972 6120612 2024-03-01 00:16:26.642 2024-03-01 00:16:26.642 1000 FEE 444444 672 6120637 2024-03-01 00:19:19.507 2024-03-01 00:19:19.507 300 FEE 443934 803 6120638 2024-03-01 00:19:19.507 2024-03-01 00:19:19.507 2700 TIP 443934 12959 6120735 2024-03-01 00:43:39.66 2024-03-01 00:43:39.66 500 FEE 444365 9517 6120736 2024-03-01 00:43:39.66 2024-03-01 00:43:39.66 4500 TIP 444365 16954 6120740 2024-03-01 00:44:18.626 2024-03-01 00:44:18.626 100 FEE 444431 1060 6120741 2024-03-01 00:44:18.626 2024-03-01 00:44:18.626 900 TIP 444431 7395 6120773 2024-03-01 00:57:13.142 2024-03-01 00:57:13.142 100 FEE 444454 14267 6120774 2024-03-01 00:57:13.142 2024-03-01 00:57:13.142 900 TIP 444454 21591 6120792 2024-03-01 01:00:45.808 2024-03-01 01:00:45.808 1000 FEE 442571 8713 6120793 2024-03-01 01:00:45.808 2024-03-01 01:00:45.808 9000 TIP 442571 14959 6120796 2024-03-01 01:00:48.593 2024-03-01 01:00:48.593 2100 FEE 443877 10821 6120797 2024-03-01 01:00:48.593 2024-03-01 01:00:48.593 18900 TIP 443877 20276 6120821 2024-03-01 01:08:58.585 2024-03-01 01:08:58.585 2600 FEE 444444 19843 6120822 2024-03-01 01:08:58.585 2024-03-01 01:08:58.585 23400 TIP 444444 21058 6120826 2024-03-01 01:09:21.247 2024-03-01 01:09:21.247 2600 FEE 444396 17147 6120827 2024-03-01 01:09:21.247 2024-03-01 01:09:21.247 23400 TIP 444396 20619 6120853 2024-03-01 01:12:04.007 2024-03-01 01:12:04.007 1000 FEE 444226 14705 6120854 2024-03-01 01:12:04.007 2024-03-01 01:12:04.007 9000 TIP 444226 17727 6120857 2024-03-01 01:14:03.825 2024-03-01 01:14:03.825 1000 FEE 444440 2722 6120858 2024-03-01 01:14:03.825 2024-03-01 01:14:03.825 9000 TIP 444440 8985 6120866 2024-03-01 01:15:15.924 2024-03-01 01:15:15.924 1000 FEE 444473 3360 6120886 2024-03-01 01:22:47.911 2024-03-01 01:22:47.911 0 FEE 444476 15139 6120900 2024-03-01 01:24:23.242 2024-03-01 01:24:23.242 1000 FEE 444479 5175 6120919 2024-03-01 01:31:00.348 2024-03-01 01:31:00.348 1000 FEE 444168 9332 6120920 2024-03-01 01:31:00.348 2024-03-01 01:31:00.348 9000 TIP 444168 21166 6120925 2024-03-01 01:32:02.716 2024-03-01 01:32:02.716 1000 FEE 444485 20691 6120943 2024-03-01 01:42:11.163 2024-03-01 01:42:11.163 0 FEE 444489 2525 6120949 2024-03-01 01:45:07.687 2024-03-01 01:45:07.687 0 FEE 444489 19094 6121005 2024-03-01 02:09:34.47 2024-03-01 02:09:34.47 100000 FEE 444496 5725 6121071 2024-03-01 02:30:25.384 2024-03-01 02:30:25.384 2100 FEE 443837 21466 6121072 2024-03-01 02:30:25.384 2024-03-01 02:30:25.384 18900 TIP 443837 14169 6121074 2024-03-01 02:30:42.906 2024-03-01 02:30:42.906 2100 FEE 414271 15213 6121075 2024-03-01 02:30:42.906 2024-03-01 02:30:42.906 18900 TIP 414271 20280 6057379 2024-02-24 20:04:47.579 2024-02-24 20:04:47.579 3000 FEE 437637 5779 6057380 2024-02-24 20:04:47.579 2024-02-24 20:04:47.579 27000 TIP 437637 5578 6057397 2024-02-24 20:10:44.618 2024-02-24 20:10:44.618 10000 FEE 437502 15049 6057398 2024-02-24 20:10:44.618 2024-02-24 20:10:44.618 90000 TIP 437502 15088 6057415 2024-02-24 20:14:46.709 2024-02-24 20:14:46.709 1000 FEE 437649 21249 6057428 2024-02-24 20:17:55.401 2024-02-24 20:17:55.401 1000 FEE 437652 9758 6057429 2024-02-24 20:18:01.332 2024-02-24 20:18:01.332 10000 FEE 437611 18359 6057430 2024-02-24 20:18:01.332 2024-02-24 20:18:01.332 90000 TIP 437611 1092 6057457 2024-02-24 20:19:07.631 2024-02-24 20:19:07.631 6900 FEE 437611 1549 6057458 2024-02-24 20:19:07.631 2024-02-24 20:19:07.631 62100 TIP 437611 19806 6057474 2024-02-24 20:21:36.792 2024-02-24 20:21:36.792 22200 FEE 437294 10862 6057475 2024-02-24 20:21:36.792 2024-02-24 20:21:36.792 199800 TIP 437294 15336 6057477 2024-02-24 20:22:01.372 2024-02-24 20:22:01.372 1000 FEE 437657 19151 6057489 2024-02-24 20:26:02.44 2024-02-24 20:26:02.44 1000 FEE 437658 4035 6057490 2024-02-24 20:26:02.44 2024-02-24 20:26:02.44 9000 TIP 437658 20963 6057536 2024-02-24 20:30:00.287 2024-02-24 20:30:00.287 1000 FEE 437662 15488 6057537 2024-02-24 20:30:00.287 2024-02-24 20:30:00.287 9000 TIP 437662 2042 6057543 2024-02-24 20:30:28.406 2024-02-24 20:30:28.406 0 FEE 437661 20854 6057547 2024-02-24 20:31:48.701 2024-02-24 20:31:48.701 10000 FEE 437269 20225 6057548 2024-02-24 20:31:48.701 2024-02-24 20:31:48.701 90000 TIP 437269 10728 6057553 2024-02-24 20:31:50.002 2024-02-24 20:31:50.002 10000 FEE 437269 17321 6057554 2024-02-24 20:31:50.002 2024-02-24 20:31:50.002 90000 TIP 437269 1845 6057568 2024-02-24 20:35:11.596 2024-02-24 20:35:11.596 6900 FEE 437659 9863 6057569 2024-02-24 20:35:11.596 2024-02-24 20:35:11.596 62100 TIP 437659 16296 6057584 2024-02-24 20:39:58.134 2024-02-24 20:39:58.134 100 FEE 437427 8380 6057585 2024-02-24 20:39:58.134 2024-02-24 20:39:58.134 900 TIP 437427 760 6057613 2024-02-24 20:45:05.862 2024-02-24 20:45:05.862 1000 FEE 437672 14122 6057614 2024-02-24 20:45:18.843 2024-02-24 20:45:18.843 0 FEE 437668 20381 6057620 2024-02-24 20:46:18.887 2024-02-24 20:46:18.887 2000 FEE 437539 1428 6057621 2024-02-24 20:46:18.887 2024-02-24 20:46:18.887 18000 TIP 437539 6160 6057630 2024-02-24 20:49:05.33 2024-02-24 20:49:05.33 1000 FEE 437531 1650 6057631 2024-02-24 20:49:05.33 2024-02-24 20:49:05.33 9000 TIP 437531 17517 6057649 2024-02-24 20:52:28.111 2024-02-24 20:52:28.111 4000 FEE 437269 18448 6057650 2024-02-24 20:52:28.111 2024-02-24 20:52:28.111 36000 TIP 437269 1316 6057653 2024-02-24 20:52:28.789 2024-02-24 20:52:28.789 4000 FEE 437454 1512 6057654 2024-02-24 20:52:28.789 2024-02-24 20:52:28.789 36000 TIP 437454 1745 6057670 2024-02-24 20:52:53.716 2024-02-24 20:52:53.716 4000 FEE 437673 19572 6057671 2024-02-24 20:52:53.716 2024-02-24 20:52:53.716 36000 TIP 437673 1245 6057473 2024-02-24 20:21:14.347 2024-02-24 20:21:14.347 18900 TIP 437649 7766 6057593 2024-02-24 20:40:31.926 2024-02-24 20:40:31.926 1000 FEE 437668 12422 6057595 2024-02-24 20:41:13.244 2024-02-24 20:41:13.244 0 FEE 437668 7847 6057615 2024-02-24 20:45:26.684 2024-02-24 20:45:26.684 100 FEE 437670 15488 6057616 2024-02-24 20:45:26.684 2024-02-24 20:45:26.684 900 TIP 437670 4048 6057644 2024-02-24 20:51:35.377 2024-02-24 20:51:35.377 1000 FEE 437677 12738 6057655 2024-02-24 20:52:29.858 2024-02-24 20:52:29.858 1000 FEE 436720 11621 6057656 2024-02-24 20:52:29.858 2024-02-24 20:52:29.858 9000 TIP 436720 2652 6057659 2024-02-24 20:52:32.541 2024-02-24 20:52:32.541 1000 FEE 437653 18101 6057660 2024-02-24 20:52:32.541 2024-02-24 20:52:32.541 9000 TIP 437653 2829 6057676 2024-02-24 20:53:25.223 2024-02-24 20:53:25.223 1000 FEE 437680 2042 6057685 2024-02-24 20:54:09.739 2024-02-24 20:54:09.739 1000 FEE 437681 674 6057692 2024-02-24 20:57:08.628 2024-02-24 20:57:08.628 1000 FEE 437634 17183 6057693 2024-02-24 20:57:08.628 2024-02-24 20:57:08.628 9000 TIP 437634 21589 6057695 2024-02-24 20:58:21.87 2024-02-24 20:58:21.87 1000 FEE 437683 12097 6057700 2024-02-24 20:59:09.612 2024-02-24 20:59:09.612 100 FEE 436837 686 6057701 2024-02-24 20:59:09.612 2024-02-24 20:59:09.612 900 TIP 436837 18517 6057706 2024-02-24 21:00:37.245 2024-02-24 21:00:37.245 2000 FEE 437403 6229 6057707 2024-02-24 21:00:37.245 2024-02-24 21:00:37.245 18000 TIP 437403 14295 6057727 2024-02-24 21:02:57.865 2024-02-24 21:02:57.865 100 FEE 436864 18269 6057728 2024-02-24 21:02:57.865 2024-02-24 21:02:57.865 900 TIP 436864 4083 6057753 2024-02-24 21:08:11.896 2024-02-24 21:08:11.896 0 FEE 437692 6229 6057763 2024-02-24 21:11:47.63 2024-02-24 21:11:47.63 0 FEE 437692 5779 6057799 2024-02-24 21:14:52.962 2024-02-24 21:14:52.962 500 FEE 437050 16276 6057800 2024-02-24 21:14:52.962 2024-02-24 21:14:52.962 4500 TIP 437050 16282 6057808 2024-02-24 21:15:18.54 2024-02-24 21:15:18.54 500 FEE 437233 20287 6057809 2024-02-24 21:15:18.54 2024-02-24 21:15:18.54 4500 TIP 437233 19690 6057812 2024-02-24 21:15:20.242 2024-02-24 21:15:20.242 500 FEE 437218 18310 6057813 2024-02-24 21:15:20.242 2024-02-24 21:15:20.242 4500 TIP 437218 19826 6057826 2024-02-24 21:16:13.472 2024-02-24 21:16:13.472 1000 FEE 437699 18403 6057831 2024-02-24 21:17:29.825 2024-02-24 21:17:29.825 500 FEE 437420 21057 6057832 2024-02-24 21:17:29.825 2024-02-24 21:17:29.825 4500 TIP 437420 18751 6057835 2024-02-24 21:17:53.678 2024-02-24 21:17:53.678 500 FEE 437181 17976 6057836 2024-02-24 21:17:53.678 2024-02-24 21:17:53.678 4500 TIP 437181 20180 6057848 2024-02-24 21:24:28.848 2024-02-24 21:24:28.848 1000 FEE 437611 2065 6057849 2024-02-24 21:24:28.848 2024-02-24 21:24:28.848 9000 TIP 437611 664 6057859 2024-02-24 21:29:10.041 2024-02-24 21:29:10.041 1000 FEE 437701 18511 6057878 2024-02-24 21:33:35.055 2024-02-24 21:33:35.055 2100 FEE 437612 6749 6057879 2024-02-24 21:33:35.055 2024-02-24 21:33:35.055 18900 TIP 437612 2188 6057880 2024-02-24 21:33:42.166 2024-02-24 21:33:42.166 2100 FEE 437524 739 6057881 2024-02-24 21:33:42.166 2024-02-24 21:33:42.166 18900 TIP 437524 9353 6057900 2024-02-24 21:35:06.274 2024-02-24 21:35:06.274 2100 FEE 437673 4238 6057901 2024-02-24 21:35:06.274 2024-02-24 21:35:06.274 18900 TIP 437673 20163 6057960 2024-02-24 21:40:18.586 2024-02-24 21:40:18.586 300 FEE 237552 13246 6057961 2024-02-24 21:40:18.586 2024-02-24 21:40:18.586 2700 TIP 237552 21287 6057966 2024-02-24 21:40:19.296 2024-02-24 21:40:19.296 300 FEE 237552 19005 6057967 2024-02-24 21:40:19.296 2024-02-24 21:40:19.296 2700 TIP 237552 20327 6058012 2024-02-24 21:44:31.769 2024-02-24 21:44:31.769 300 FEE 437638 9758 6058013 2024-02-24 21:44:31.769 2024-02-24 21:44:31.769 2700 TIP 437638 18819 6058086 2024-02-24 21:50:44.761 2024-02-24 21:50:44.761 3300 FEE 437529 1135 6058087 2024-02-24 21:50:44.761 2024-02-24 21:50:44.761 29700 TIP 437529 20825 6058088 2024-02-24 21:50:45.772 2024-02-24 21:50:45.772 3300 FEE 437529 18784 6058089 2024-02-24 21:50:45.772 2024-02-24 21:50:45.772 29700 TIP 437529 17291 6058111 2024-02-24 21:52:05.304 2024-02-24 21:52:05.304 9000 FEE 437700 11288 6058112 2024-02-24 21:52:05.304 2024-02-24 21:52:05.304 81000 TIP 437700 9026 6057526 2024-02-24 20:29:59.381 2024-02-24 20:29:59.381 1000 FEE 437662 17526 6057527 2024-02-24 20:29:59.381 2024-02-24 20:29:59.381 9000 TIP 437662 2402 6057575 2024-02-24 20:35:52.797 2024-02-24 20:35:52.797 69000 DONT_LIKE_THIS 437595 9494 6057600 2024-02-24 20:41:52.85 2024-02-24 20:41:52.85 21000 FEE 437669 17673 6057606 2024-02-24 20:43:04.135 2024-02-24 20:43:04.135 100000 FEE 437670 19795 6057626 2024-02-24 20:48:37.575 2024-02-24 20:48:37.575 1000 FEE 437235 3213 6057627 2024-02-24 20:48:37.575 2024-02-24 20:48:37.575 9000 TIP 437235 2741 6057642 2024-02-24 20:51:25.758 2024-02-24 20:51:25.758 66600 FEE 437635 20636 6057643 2024-02-24 20:51:25.758 2024-02-24 20:51:25.758 599400 TIP 437635 18310 6057672 2024-02-24 20:53:00.637 2024-02-24 20:53:00.637 1000 FEE 437679 2537 6057677 2024-02-24 20:53:26.841 2024-02-24 20:53:26.841 1000 FEE 437673 1130 6057678 2024-02-24 20:53:26.841 2024-02-24 20:53:26.841 9000 TIP 437673 21503 6057704 2024-02-24 21:00:37.039 2024-02-24 21:00:37.039 2000 FEE 437403 2718 6057705 2024-02-24 21:00:37.039 2024-02-24 21:00:37.039 18000 TIP 437403 12422 6057708 2024-02-24 21:00:37.44 2024-02-24 21:00:37.44 2000 FEE 437403 11018 6057709 2024-02-24 21:00:37.44 2024-02-24 21:00:37.44 18000 TIP 437403 18008 6057722 2024-02-24 21:02:06.069 2024-02-24 21:02:06.069 21800 FEE 437685 635 6057723 2024-02-24 21:02:06.069 2024-02-24 21:02:06.069 196200 TIP 437685 628 6057725 2024-02-24 21:02:43.36 2024-02-24 21:02:43.36 100 FEE 436870 12483 6057726 2024-02-24 21:02:43.36 2024-02-24 21:02:43.36 900 TIP 436870 16667 6057735 2024-02-24 21:03:20.006 2024-02-24 21:03:20.006 0 FEE 437689 5791 6057764 2024-02-24 21:11:55.766 2024-02-24 21:11:55.766 0 FEE 437692 16954 6057773 2024-02-24 21:12:32.926 2024-02-24 21:12:32.926 0 FEE 437692 19773 6057787 2024-02-24 21:13:28.257 2024-02-24 21:13:28.257 1000 FEE 437697 10469 6057793 2024-02-24 21:14:27.105 2024-02-24 21:14:27.105 500 FEE 437287 17103 6057794 2024-02-24 21:14:27.105 2024-02-24 21:14:27.105 4500 TIP 437287 10056 6057828 2024-02-24 21:17:11.412 2024-02-24 21:17:11.412 100000 FEE 437700 11862 6057850 2024-02-24 21:24:35.174 2024-02-24 21:24:35.174 1000 FEE 437502 21393 6057851 2024-02-24 21:24:35.174 2024-02-24 21:24:35.174 9000 TIP 437502 2711 6057854 2024-02-24 21:26:18.753 2024-02-24 21:26:18.753 10000 FEE 437512 9426 6057855 2024-02-24 21:26:18.753 2024-02-24 21:26:18.753 90000 TIP 437512 21332 6057868 2024-02-24 21:33:03.199 2024-02-24 21:33:03.199 3000 FEE 437427 21242 6057869 2024-02-24 21:33:03.199 2024-02-24 21:33:03.199 27000 TIP 437427 19557 6057887 2024-02-24 21:34:32.371 2024-02-24 21:34:32.371 1000 FEE 437634 18008 6057888 2024-02-24 21:34:32.371 2024-02-24 21:34:32.371 9000 TIP 437634 3411 6057923 2024-02-24 21:36:29.923 2024-02-24 21:36:29.923 2100 FEE 437646 1605 6057924 2024-02-24 21:36:29.923 2024-02-24 21:36:29.923 18900 TIP 437646 1806 6057931 2024-02-24 21:36:40.094 2024-02-24 21:36:40.094 2100 FEE 437524 7966 6057932 2024-02-24 21:36:40.094 2024-02-24 21:36:40.094 18900 TIP 437524 11798 6057964 2024-02-24 21:40:19.146 2024-02-24 21:40:19.146 300 FEE 237552 17275 6057965 2024-02-24 21:40:19.146 2024-02-24 21:40:19.146 2700 TIP 237552 946 6057974 2024-02-24 21:40:45.76 2024-02-24 21:40:45.76 1000 FEE 437697 6749 6057975 2024-02-24 21:40:45.76 2024-02-24 21:40:45.76 9000 TIP 437697 20858 6057998 2024-02-24 21:44:29.861 2024-02-24 21:44:29.861 300 FEE 437638 14247 6057999 2024-02-24 21:44:29.861 2024-02-24 21:44:29.861 2700 TIP 437638 3544 6058019 2024-02-24 21:44:56.522 2024-02-24 21:44:56.522 300 FEE 437587 21514 6058020 2024-02-24 21:44:56.522 2024-02-24 21:44:56.522 2700 TIP 437587 686 6058031 2024-02-24 21:44:57.668 2024-02-24 21:44:57.668 300 FEE 437587 20073 6058032 2024-02-24 21:44:57.668 2024-02-24 21:44:57.668 2700 TIP 437587 19018 6058048 2024-02-24 21:46:42.24 2024-02-24 21:46:42.24 1000 FEE 437607 8508 6058049 2024-02-24 21:46:42.24 2024-02-24 21:46:42.24 9000 TIP 437607 3745 6058052 2024-02-24 21:46:55.95 2024-02-24 21:46:55.95 1000 FEE 437681 11378 6058053 2024-02-24 21:46:55.95 2024-02-24 21:46:55.95 9000 TIP 437681 10311 6058055 2024-02-24 21:47:17.332 2024-02-24 21:47:17.332 1000 FEE 437512 5449 6058056 2024-02-24 21:47:17.332 2024-02-24 21:47:17.332 9000 TIP 437512 18629 6058071 2024-02-24 21:49:56.82 2024-02-24 21:49:56.82 3300 FEE 437457 1624 6058072 2024-02-24 21:49:56.82 2024-02-24 21:49:56.82 29700 TIP 437457 9844 6058104 2024-02-24 21:52:01.308 2024-02-24 21:52:01.308 100 FEE 437700 20906 6058105 2024-02-24 21:52:01.308 2024-02-24 21:52:01.308 900 TIP 437700 8242 6058113 2024-02-24 21:52:28.258 2024-02-24 21:52:28.258 1000 DONT_LIKE_THIS 437616 16124 6058128 2024-02-24 21:54:18.879 2024-02-24 21:54:18.879 2000 FEE 437621 18291 6058129 2024-02-24 21:54:18.879 2024-02-24 21:54:18.879 18000 TIP 437621 5036 6058130 2024-02-24 21:54:22.388 2024-02-24 21:54:22.388 10000 FEE 437169 5497 6058131 2024-02-24 21:54:22.388 2024-02-24 21:54:22.388 90000 TIP 437169 14037 6058136 2024-02-24 21:54:27.624 2024-02-24 21:54:27.624 9000 FEE 437682 19174 6058137 2024-02-24 21:54:27.624 2024-02-24 21:54:27.624 81000 TIP 437682 1577 6058171 2024-02-24 21:56:50.781 2024-02-24 21:56:50.781 100 FEE 437670 19118 6058172 2024-02-24 21:56:50.781 2024-02-24 21:56:50.781 900 TIP 437670 10102 6058187 2024-02-24 21:58:32.331 2024-02-24 21:58:32.331 1000 FEE 437719 15100 6058190 2024-02-24 21:58:58.403 2024-02-24 21:58:58.403 2000 FEE 437705 17042 6058191 2024-02-24 21:58:58.403 2024-02-24 21:58:58.403 18000 TIP 437705 17275 6058194 2024-02-24 22:00:41.798 2024-02-24 22:00:41.798 1000 FEE 437612 16485 6058195 2024-02-24 22:00:41.798 2024-02-24 22:00:41.798 9000 TIP 437612 9366 6058200 2024-02-24 22:01:40.108 2024-02-24 22:01:40.108 1000 FEE 437720 7760 6058201 2024-02-24 22:01:40.108 2024-02-24 22:01:40.108 9000 TIP 437720 19690 6058222 2024-02-24 22:08:46.699 2024-02-24 22:08:46.699 2100 FEE 437454 3706 6058223 2024-02-24 22:08:46.699 2024-02-24 22:08:46.699 18900 TIP 437454 10102 6058225 2024-02-24 22:09:47.573 2024-02-24 22:09:47.573 1000 FEE 437722 20450 6058226 2024-02-24 22:09:51.082 2024-02-24 22:09:51.082 3000 FEE 437713 20264 6058227 2024-02-24 22:09:51.082 2024-02-24 22:09:51.082 27000 TIP 437713 663 6058241 2024-02-24 22:13:53.46 2024-02-24 22:13:53.46 2100 FEE 437629 16680 6058242 2024-02-24 22:13:53.46 2024-02-24 22:13:53.46 18900 TIP 437629 18387 6058265 2024-02-24 22:16:39.136 2024-02-24 22:16:39.136 4000 FEE 437512 19471 6058266 2024-02-24 22:16:39.136 2024-02-24 22:16:39.136 36000 TIP 437512 722 6058308 2024-02-24 22:24:51.877 2024-02-24 22:24:51.877 2100 FEE 437384 14795 6058309 2024-02-24 22:24:51.877 2024-02-24 22:24:51.877 18900 TIP 437384 1003 6058327 2024-02-24 22:33:05.083 2024-02-24 22:33:05.083 4200 FEE 437545 617 6058328 2024-02-24 22:33:05.083 2024-02-24 22:33:05.083 37800 TIP 437545 8037 6058358 2024-02-24 22:41:47.199 2024-02-24 22:41:47.199 2100 FEE 437720 20106 6058359 2024-02-24 22:41:47.199 2024-02-24 22:41:47.199 18900 TIP 437720 17710 6058403 2024-02-24 22:48:16.671 2024-02-24 22:48:16.671 2100 FEE 436720 16842 6058404 2024-02-24 22:48:16.671 2024-02-24 22:48:16.671 18900 TIP 436720 20220 6058405 2024-02-24 22:48:20.356 2024-02-24 22:48:20.356 2100 FEE 437565 7418 6058406 2024-02-24 22:48:20.356 2024-02-24 22:48:20.356 18900 TIP 437565 6335 6058407 2024-02-24 22:48:21.798 2024-02-24 22:48:21.798 2100 FEE 437590 807 6058408 2024-02-24 22:48:21.798 2024-02-24 22:48:21.798 18900 TIP 437590 3706 6058415 2024-02-24 22:49:19.547 2024-02-24 22:49:19.547 1000 FEE 437741 976 6058419 2024-02-24 22:50:19.977 2024-02-24 22:50:19.977 1000 FEE 437744 960 6058439 2024-02-24 22:52:17.708 2024-02-24 22:52:17.708 1000 FEE 437739 12606 6058440 2024-02-24 22:52:17.708 2024-02-24 22:52:17.708 9000 TIP 437739 9084 6058447 2024-02-24 22:52:36.639 2024-02-24 22:52:36.639 1000 FEE 437746 21620 6058449 2024-02-24 22:53:20.868 2024-02-24 22:53:20.868 500 FEE 437608 20058 6058450 2024-02-24 22:53:20.868 2024-02-24 22:53:20.868 4500 TIP 437608 692 6058457 2024-02-24 22:53:47.762 2024-02-24 22:53:47.762 1000 FEE 437741 21233 6058458 2024-02-24 22:53:47.762 2024-02-24 22:53:47.762 9000 TIP 437741 1985 6057561 2024-02-24 20:33:04.396 2024-02-24 20:33:04.396 1000 STREAM 141924 21263 6057567 2024-02-24 20:35:04.4 2024-02-24 20:35:04.4 1000 STREAM 141924 19263 6057588 2024-02-24 20:40:04.429 2024-02-24 20:40:04.429 1000 STREAM 141924 9916 6057594 2024-02-24 20:41:04.439 2024-02-24 20:41:04.439 1000 STREAM 141924 9362 6057605 2024-02-24 20:42:04.443 2024-02-24 20:42:04.443 1000 STREAM 141924 11515 6057607 2024-02-24 20:43:04.473 2024-02-24 20:43:04.473 1000 STREAM 141924 19103 6057610 2024-02-24 20:44:04.464 2024-02-24 20:44:04.464 1000 STREAM 141924 3642 6057612 2024-02-24 20:45:04.461 2024-02-24 20:45:04.461 1000 STREAM 141924 1552 6057622 2024-02-24 20:47:04.49 2024-02-24 20:47:04.49 1000 STREAM 141924 15560 6057623 2024-02-24 20:48:04.486 2024-02-24 20:48:04.486 1000 STREAM 141924 6717 6057629 2024-02-24 20:49:04.5 2024-02-24 20:49:04.5 1000 STREAM 141924 8385 6057641 2024-02-24 20:51:04.526 2024-02-24 20:51:04.526 1000 STREAM 141924 19909 6057647 2024-02-24 20:52:04.545 2024-02-24 20:52:04.545 1000 STREAM 141924 7877 6057674 2024-02-24 20:53:04.546 2024-02-24 20:53:04.546 1000 STREAM 141924 21033 6057684 2024-02-24 20:54:04.562 2024-02-24 20:54:04.562 1000 STREAM 141924 761 6057686 2024-02-24 20:55:04.585 2024-02-24 20:55:04.585 1000 STREAM 141924 21228 6057730 2024-02-24 21:03:04.652 2024-02-24 21:03:04.652 1000 STREAM 141924 20376 6057743 2024-02-24 21:04:04.649 2024-02-24 21:04:04.649 1000 STREAM 141924 20647 6120318 2024-02-29 23:10:05.118 2024-02-29 23:10:05.118 9000 TIP 444056 717 6120329 2024-02-29 23:11:07.828 2024-02-29 23:11:07.828 1000 FEE 444379 2460 6120330 2024-02-29 23:11:07.828 2024-02-29 23:11:07.828 9000 TIP 444379 11716 6120332 2024-02-29 23:11:22.225 2024-02-29 23:11:22.225 6900 FEE 444168 1650 6120333 2024-02-29 23:11:22.225 2024-02-29 23:11:22.225 62100 TIP 444168 2674 6120334 2024-02-29 23:11:29.697 2024-02-29 23:11:29.697 20000 FEE 444356 19378 6120335 2024-02-29 23:11:29.697 2024-02-29 23:11:29.697 180000 TIP 444356 13246 6120340 2024-02-29 23:11:45.324 2024-02-29 23:11:45.324 900 FEE 444384 10393 6120341 2024-02-29 23:11:45.324 2024-02-29 23:11:45.324 8100 TIP 444384 19463 6120353 2024-02-29 23:12:47.517 2024-02-29 23:12:47.517 1000 FEE 443942 14213 6120354 2024-02-29 23:12:47.517 2024-02-29 23:12:47.517 9000 TIP 443942 20495 6120362 2024-02-29 23:13:26.882 2024-02-29 23:13:26.882 1000 FEE 443923 20979 6120363 2024-02-29 23:13:26.882 2024-02-29 23:13:26.882 9000 TIP 443923 21067 6120368 2024-02-29 23:13:59.466 2024-02-29 23:13:59.466 2800 FEE 444065 8870 6120369 2024-02-29 23:13:59.466 2024-02-29 23:13:59.466 25200 TIP 444065 18904 6120396 2024-02-29 23:21:36.786 2024-02-29 23:21:36.786 0 FEE 444406 18476 6120407 2024-02-29 23:25:36.649 2024-02-29 23:25:36.649 10000 FEE 444015 9036 6120408 2024-02-29 23:25:36.649 2024-02-29 23:25:36.649 90000 TIP 444015 19458 6120439 2024-02-29 23:35:20.803 2024-02-29 23:35:20.803 2100 FEE 444173 1465 6120440 2024-02-29 23:35:20.803 2024-02-29 23:35:20.803 18900 TIP 444173 20272 6120441 2024-02-29 23:35:24.731 2024-02-29 23:35:24.731 2100 FEE 444365 19511 6120442 2024-02-29 23:35:24.731 2024-02-29 23:35:24.731 18900 TIP 444365 1273 6120451 2024-02-29 23:36:23.458 2024-02-29 23:36:23.458 1000 FEE 444416 21527 6120470 2024-02-29 23:42:39.332 2024-02-29 23:42:39.332 1000 POLL 444078 21417 6120480 2024-02-29 23:47:18.246 2024-02-29 23:47:18.246 1000 FEE 444420 19512 6120538 2024-02-29 23:57:59.107 2024-02-29 23:57:59.107 500 FEE 444306 11999 6120539 2024-02-29 23:57:59.107 2024-02-29 23:57:59.107 4500 TIP 444306 2016 6120548 2024-02-29 23:58:51.472 2024-02-29 23:58:51.472 500 FEE 444346 18625 6120549 2024-02-29 23:58:51.472 2024-02-29 23:58:51.472 4500 TIP 444346 19126 6120556 2024-03-01 00:00:01.685 2024-03-01 00:00:01.685 9900 FEE 444408 20073 6120557 2024-03-01 00:00:01.685 2024-03-01 00:00:01.685 89100 TIP 444408 10393 6120570 2024-03-01 00:07:08.761 2024-03-01 00:07:08.761 2100 FEE 444338 18309 6120571 2024-03-01 00:07:08.761 2024-03-01 00:07:08.761 18900 TIP 444338 20087 6120577 2024-03-01 00:07:33.864 2024-03-01 00:07:33.864 1000 FEE 444436 12175 6120605 2024-03-01 00:15:22.624 2024-03-01 00:15:22.624 3100 FEE 444436 2088 6120606 2024-03-01 00:15:22.624 2024-03-01 00:15:22.624 27900 TIP 444436 21402 6120607 2024-03-01 00:15:49.384 2024-03-01 00:15:49.384 2100 FEE 443660 9336 6120608 2024-03-01 00:15:49.384 2024-03-01 00:15:49.384 18900 TIP 443660 20225 6120635 2024-03-01 00:19:19.286 2024-03-01 00:19:19.286 300 FEE 443934 20424 6120636 2024-03-01 00:19:19.286 2024-03-01 00:19:19.286 2700 TIP 443934 20066 6120643 2024-03-01 00:19:20.206 2024-03-01 00:19:20.206 300 FEE 443934 12024 6120644 2024-03-01 00:19:20.206 2024-03-01 00:19:20.206 2700 TIP 443934 13042 6120679 2024-03-01 00:25:12.043 2024-03-01 00:25:12.043 10000 FEE 444173 8998 6120680 2024-03-01 00:25:12.043 2024-03-01 00:25:12.043 90000 TIP 444173 8648 6120705 2024-03-01 00:33:35.834 2024-03-01 00:33:35.834 2100 FEE 444168 11716 6120706 2024-03-01 00:33:35.834 2024-03-01 00:33:35.834 18900 TIP 444168 13097 6120737 2024-03-01 00:43:46.496 2024-03-01 00:43:46.496 500 FEE 444173 20245 6120738 2024-03-01 00:43:46.496 2024-03-01 00:43:46.496 4500 TIP 444173 6393 6120744 2024-03-01 00:45:34.103 2024-03-01 00:45:34.103 1000 FEE 444459 11698 6120759 2024-03-01 00:52:53.23 2024-03-01 00:52:53.23 210000 FEE 444462 21248 6120785 2024-03-01 00:59:46.037 2024-03-01 00:59:46.037 100000 FEE 444467 21131 6120848 2024-03-01 01:11:29.878 2024-03-01 01:11:29.878 1000 FEE 444210 17162 6120849 2024-03-01 01:11:29.878 2024-03-01 01:11:29.878 9000 TIP 444210 2111 6120873 2024-03-01 01:18:42.861 2024-03-01 01:18:42.861 5700 FEE 444384 19286 6120874 2024-03-01 01:18:42.861 2024-03-01 01:18:42.861 51300 TIP 444384 20377 6120875 2024-03-01 01:18:58.788 2024-03-01 01:18:58.788 2500 FEE 443915 10280 6120876 2024-03-01 01:18:58.788 2024-03-01 01:18:58.788 22500 TIP 443915 21501 6120889 2024-03-01 01:23:27.137 2024-03-01 01:23:27.137 1000 FEE 444478 10311 6120894 2024-03-01 01:23:35.498 2024-03-01 01:23:35.498 10000 FEE 443799 14213 6120895 2024-03-01 01:23:35.498 2024-03-01 01:23:35.498 90000 TIP 443799 685 6120906 2024-03-01 01:25:29.721 2024-03-01 01:25:29.721 8300 FEE 443799 15833 6120907 2024-03-01 01:25:29.721 2024-03-01 01:25:29.721 74700 TIP 443799 848 6120916 2024-03-01 01:30:31.863 2024-03-01 01:30:31.863 1000 FEE 444483 6687 6120917 2024-03-01 01:31:00.18 2024-03-01 01:31:00.18 1000 FEE 444168 2029 6120918 2024-03-01 01:31:00.18 2024-03-01 01:31:00.18 9000 TIP 444168 14941 6120924 2024-03-01 01:31:27.833 2024-03-01 01:31:27.833 1000 FEE 444484 20205 6120930 2024-03-01 01:35:06.771 2024-03-01 01:35:06.771 1000 FEE 444486 16329 6120941 2024-03-01 01:41:07.249 2024-03-01 01:41:07.249 1000 FEE 444490 10342 6121000 2024-03-01 02:06:56.525 2024-03-01 02:06:56.525 5700 FEE 444434 18862 6121001 2024-03-01 02:06:56.525 2024-03-01 02:06:56.525 51300 TIP 444434 8664 6121030 2024-03-01 02:17:38.685 2024-03-01 02:17:38.685 2100 FEE 444168 13100 6121031 2024-03-01 02:17:38.685 2024-03-01 02:17:38.685 18900 TIP 444168 19154 6121049 2024-03-01 02:25:48.205 2024-03-01 02:25:48.205 1000 FEE 443915 642 6121050 2024-03-01 02:25:48.205 2024-03-01 02:25:48.205 9000 TIP 443915 19815 6121062 2024-03-01 02:28:38.729 2024-03-01 02:28:38.729 1000 FEE 444502 4084 6121069 2024-03-01 02:30:20.155 2024-03-01 02:30:20.155 2100 FEE 444373 8508 6121070 2024-03-01 02:30:20.155 2024-03-01 02:30:20.155 18900 TIP 444373 16942 6121122 2024-03-01 02:49:06.425 2024-03-01 02:49:06.425 100 FEE 444471 11458 6121123 2024-03-01 02:49:06.425 2024-03-01 02:49:06.425 900 TIP 444471 20495 6121136 2024-03-01 02:52:19.478 2024-03-01 02:52:19.478 100 FEE 444443 19961 6121137 2024-03-01 02:52:19.478 2024-03-01 02:52:19.478 900 TIP 444443 2256 6121148 2024-03-01 02:57:04.187 2024-03-01 02:57:04.187 2100 FEE 444465 8385 6057576 2024-02-24 20:36:04.404 2024-02-24 20:36:04.404 1000 STREAM 141924 19906 6057577 2024-02-24 20:37:04.406 2024-02-24 20:37:04.406 1000 STREAM 141924 11862 6057582 2024-02-24 20:38:04.422 2024-02-24 20:38:04.422 1000 STREAM 141924 5961 6057583 2024-02-24 20:39:04.414 2024-02-24 20:39:04.414 1000 STREAM 141924 15858 6057619 2024-02-24 20:46:04.47 2024-02-24 20:46:04.47 1000 STREAM 141924 19005 6057687 2024-02-24 20:56:04.593 2024-02-24 20:56:04.593 1000 STREAM 141924 8173 6057691 2024-02-24 20:57:04.594 2024-02-24 20:57:04.594 1000 STREAM 141924 5701 6057694 2024-02-24 20:58:04.618 2024-02-24 20:58:04.618 1000 STREAM 141924 19527 6057698 2024-02-24 20:59:04.617 2024-02-24 20:59:04.617 1000 STREAM 141924 1142 6057703 2024-02-24 21:00:04.622 2024-02-24 21:00:04.622 1000 STREAM 141924 21455 6057716 2024-02-24 21:01:04.622 2024-02-24 21:01:04.622 1000 STREAM 141924 18865 6057721 2024-02-24 21:02:04.627 2024-02-24 21:02:04.627 1000 STREAM 141924 21275 6120345 2024-02-29 23:12:05.009 2024-02-29 23:12:05.009 1000 STREAM 141924 8004 6120374 2024-02-29 23:16:05.017 2024-02-29 23:16:05.017 1000 STREAM 141924 1007 6120378 2024-02-29 23:17:05.131 2024-02-29 23:17:05.131 1000 STREAM 141924 20412 6120392 2024-02-29 23:20:05.06 2024-02-29 23:20:05.06 1000 STREAM 141924 20655 6120400 2024-02-29 23:23:05.075 2024-02-29 23:23:05.075 1000 STREAM 141924 15060 6120421 2024-02-29 23:28:05.072 2024-02-29 23:28:05.072 1000 STREAM 141924 2774 6120432 2024-02-29 23:31:05.089 2024-02-29 23:31:05.089 1000 STREAM 141924 5809 6057579 2024-02-24 20:37:17.118 2024-02-24 20:37:17.118 90000 TIP 437524 1726 6057586 2024-02-24 20:39:58.693 2024-02-24 20:39:58.693 100 FEE 437427 15367 6057587 2024-02-24 20:39:58.693 2024-02-24 20:39:58.693 900 TIP 437427 19398 6057636 2024-02-24 20:49:51.991 2024-02-24 20:49:51.991 1000 FEE 437502 18452 6057637 2024-02-24 20:49:51.991 2024-02-24 20:49:51.991 9000 TIP 437502 19322 6057661 2024-02-24 20:52:34.747 2024-02-24 20:52:34.747 4000 FEE 437403 21547 6057662 2024-02-24 20:52:34.747 2024-02-24 20:52:34.747 36000 TIP 437403 20222 6057696 2024-02-24 20:58:29.064 2024-02-24 20:58:29.064 1000 FEE 437684 18526 6057712 2024-02-24 21:00:43.6 2024-02-24 21:00:43.6 2000 FEE 437403 2681 6057713 2024-02-24 21:00:43.6 2024-02-24 21:00:43.6 18000 TIP 437403 21218 6057717 2024-02-24 21:01:08.323 2024-02-24 21:01:08.323 0 FEE 437685 5195 6057720 2024-02-24 21:02:01.2 2024-02-24 21:02:01.2 1000 FEE 437689 1628 6057733 2024-02-24 21:03:18.872 2024-02-24 21:03:18.872 6900 FEE 437687 20109 6057734 2024-02-24 21:03:18.872 2024-02-24 21:03:18.872 62100 TIP 437687 1603 6057739 2024-02-24 21:03:39.31 2024-02-24 21:03:39.31 3200 FEE 437636 1352 6057740 2024-02-24 21:03:39.31 2024-02-24 21:03:39.31 28800 TIP 437636 18743 6057741 2024-02-24 21:04:03.204 2024-02-24 21:04:03.204 100000 FEE 437276 4378 6057742 2024-02-24 21:04:03.204 2024-02-24 21:04:03.204 900000 TIP 437276 20306 6057747 2024-02-24 21:06:29.409 2024-02-24 21:06:29.409 100 FEE 437382 18641 6057748 2024-02-24 21:06:29.409 2024-02-24 21:06:29.409 900 TIP 437382 11996 6057754 2024-02-24 21:08:20.995 2024-02-24 21:08:20.995 0 FEE 437692 11897 6057770 2024-02-24 21:12:19.45 2024-02-24 21:12:19.45 0 FEE 437692 13622 6057771 2024-02-24 21:12:24.723 2024-02-24 21:12:24.723 500 FEE 437611 2042 6057772 2024-02-24 21:12:24.723 2024-02-24 21:12:24.723 4500 TIP 437611 17797 6057774 2024-02-24 21:12:38.969 2024-02-24 21:12:38.969 0 FEE 437692 20990 6057782 2024-02-24 21:13:06.342 2024-02-24 21:13:06.342 12800 FEE 437689 9348 6057783 2024-02-24 21:13:06.342 2024-02-24 21:13:06.342 115200 TIP 437689 9355 6057874 2024-02-24 21:33:19.979 2024-02-24 21:33:19.979 2100 FEE 437646 15624 6057875 2024-02-24 21:33:19.979 2024-02-24 21:33:19.979 18900 TIP 437646 16351 6057893 2024-02-24 21:34:49.06 2024-02-24 21:34:49.06 2100 FEE 437609 3683 6057894 2024-02-24 21:34:49.06 2024-02-24 21:34:49.06 18900 TIP 437609 18618 6057915 2024-02-24 21:36:17.581 2024-02-24 21:36:17.581 300 FEE 237616 6798 6057916 2024-02-24 21:36:17.581 2024-02-24 21:36:17.581 2700 TIP 237616 1603 6057935 2024-02-24 21:36:43.835 2024-02-24 21:36:43.835 2100 FEE 437687 14267 6057936 2024-02-24 21:36:43.835 2024-02-24 21:36:43.835 18900 TIP 437687 16354 6057942 2024-02-24 21:37:33.562 2024-02-24 21:37:33.562 2100 FEE 437535 19689 6057943 2024-02-24 21:37:33.562 2024-02-24 21:37:33.562 18900 TIP 437535 12175 6057952 2024-02-24 21:40:11.439 2024-02-24 21:40:11.439 2100 FEE 437665 750 6057953 2024-02-24 21:40:11.439 2024-02-24 21:40:11.439 18900 TIP 437665 730 6057954 2024-02-24 21:40:12.838 2024-02-24 21:40:12.838 2100 FEE 437619 21271 6057955 2024-02-24 21:40:12.838 2024-02-24 21:40:12.838 18900 TIP 437619 1474 6057988 2024-02-24 21:44:29.071 2024-02-24 21:44:29.071 300 FEE 437638 21026 6057989 2024-02-24 21:44:29.071 2024-02-24 21:44:29.071 2700 TIP 437638 14267 6057994 2024-02-24 21:44:29.65 2024-02-24 21:44:29.65 300 FEE 437638 768 6057995 2024-02-24 21:44:29.65 2024-02-24 21:44:29.65 2700 TIP 437638 18393 6058004 2024-02-24 21:44:30.541 2024-02-24 21:44:30.541 300 FEE 437638 642 6058005 2024-02-24 21:44:30.541 2024-02-24 21:44:30.541 2700 TIP 437638 20436 6058008 2024-02-24 21:44:30.864 2024-02-24 21:44:30.864 300 FEE 437638 16347 6058009 2024-02-24 21:44:30.864 2024-02-24 21:44:30.864 2700 TIP 437638 7979 6058010 2024-02-24 21:44:31.161 2024-02-24 21:44:31.161 300 FEE 437638 15119 6058011 2024-02-24 21:44:31.161 2024-02-24 21:44:31.161 2700 TIP 437638 20198 6058057 2024-02-24 21:47:20.41 2024-02-24 21:47:20.41 1000 FEE 437233 12516 6058058 2024-02-24 21:47:20.41 2024-02-24 21:47:20.41 9000 TIP 437233 9307 6058096 2024-02-24 21:51:36.721 2024-02-24 21:51:36.721 10000 FEE 437674 10731 6058097 2024-02-24 21:51:36.721 2024-02-24 21:51:36.721 90000 TIP 437674 11165 6058102 2024-02-24 21:51:54.847 2024-02-24 21:51:54.847 2600 FEE 437682 1352 6058103 2024-02-24 21:51:54.847 2024-02-24 21:51:54.847 23400 TIP 437682 18897 6058106 2024-02-24 21:52:01.485 2024-02-24 21:52:01.485 900 FEE 437700 21157 6058107 2024-02-24 21:52:01.485 2024-02-24 21:52:01.485 8100 TIP 437700 20340 6058138 2024-02-24 21:54:33.152 2024-02-24 21:54:33.152 100 FEE 437684 15337 6058139 2024-02-24 21:54:33.152 2024-02-24 21:54:33.152 900 TIP 437684 19821 6057581 2024-02-24 20:37:39.792 2024-02-24 20:37:39.792 18000 TIP 437530 19158 6057617 2024-02-24 20:45:51.936 2024-02-24 20:45:51.936 100 FEE 437611 5527 6057618 2024-02-24 20:45:51.936 2024-02-24 20:45:51.936 900 TIP 437611 9261 6057624 2024-02-24 20:48:25.917 2024-02-24 20:48:25.917 1000 FEE 437650 8385 6057625 2024-02-24 20:48:25.917 2024-02-24 20:48:25.917 9000 TIP 437650 6765 6057628 2024-02-24 20:49:03.722 2024-02-24 20:49:03.722 1000 FEE 437674 20906 6057633 2024-02-24 20:49:17.395 2024-02-24 20:49:17.395 2000 FEE 437670 2328 6057634 2024-02-24 20:49:17.395 2024-02-24 20:49:17.395 18000 TIP 437670 1310 6057635 2024-02-24 20:49:26.296 2024-02-24 20:49:26.296 1000 FEE 437676 18517 6057663 2024-02-24 20:52:35.079 2024-02-24 20:52:35.079 4000 FEE 437646 16839 6057664 2024-02-24 20:52:35.079 2024-02-24 20:52:35.079 36000 TIP 437646 19821 6057688 2024-02-24 20:56:09.719 2024-02-24 20:56:09.719 1000 FEE 437682 2543 6057699 2024-02-24 20:59:09.283 2024-02-24 20:59:09.283 1000 POLL 436759 20280 6057718 2024-02-24 21:01:36.638 2024-02-24 21:01:36.638 210000 FEE 437687 20066 6057738 2024-02-24 21:03:36.395 2024-02-24 21:03:36.395 0 FEE 437692 16154 6057788 2024-02-24 21:13:31.807 2024-02-24 21:13:31.807 10000 FEE 437691 16747 6057789 2024-02-24 21:13:31.807 2024-02-24 21:13:31.807 90000 TIP 437691 19601 6057790 2024-02-24 21:13:42.26 2024-02-24 21:13:42.26 500 FEE 437535 7818 6057791 2024-02-24 21:13:42.26 2024-02-24 21:13:42.26 4500 TIP 437535 8287 6057795 2024-02-24 21:14:36.769 2024-02-24 21:14:36.769 500 FEE 437404 20751 6057796 2024-02-24 21:14:36.769 2024-02-24 21:14:36.769 4500 TIP 437404 19527 6057797 2024-02-24 21:14:39.472 2024-02-24 21:14:39.472 500 FEE 437626 1237 6057798 2024-02-24 21:14:39.472 2024-02-24 21:14:39.472 4500 TIP 437626 10016 6057866 2024-02-24 21:32:52.515 2024-02-24 21:32:52.515 3000 FEE 437408 656 6057867 2024-02-24 21:32:52.515 2024-02-24 21:32:52.515 27000 TIP 437408 21400 6057891 2024-02-24 21:34:33.83 2024-02-24 21:34:33.83 1000 FEE 437634 17014 6057892 2024-02-24 21:34:33.83 2024-02-24 21:34:33.83 9000 TIP 437634 1628 6057909 2024-02-24 21:36:16.756 2024-02-24 21:36:16.756 300 FEE 237616 21334 6057910 2024-02-24 21:36:16.756 2024-02-24 21:36:16.756 2700 TIP 237616 7960 6057917 2024-02-24 21:36:17.959 2024-02-24 21:36:17.959 300 FEE 237616 18270 6057918 2024-02-24 21:36:17.959 2024-02-24 21:36:17.959 2700 TIP 237616 21563 6057921 2024-02-24 21:36:27.348 2024-02-24 21:36:27.348 2100 FEE 437611 616 6057922 2024-02-24 21:36:27.348 2024-02-24 21:36:27.348 18900 TIP 437611 3456 6057927 2024-02-24 21:36:38.48 2024-02-24 21:36:38.48 2100 FEE 437472 21040 6057928 2024-02-24 21:36:38.48 2024-02-24 21:36:38.48 18900 TIP 437472 15938 6057937 2024-02-24 21:36:49.748 2024-02-24 21:36:49.748 2100 FEE 437662 9843 6057938 2024-02-24 21:36:49.748 2024-02-24 21:36:49.748 18900 TIP 437662 20109 6057940 2024-02-24 21:37:23.015 2024-02-24 21:37:23.015 2100 FEE 437502 1114 6057941 2024-02-24 21:37:23.015 2024-02-24 21:37:23.015 18900 TIP 437502 9342 6057968 2024-02-24 21:40:19.527 2024-02-24 21:40:19.527 300 FEE 237552 20179 6057969 2024-02-24 21:40:19.527 2024-02-24 21:40:19.527 2700 TIP 237552 2775 6057981 2024-02-24 21:42:06.05 2024-02-24 21:42:06.05 1000 FEE 437708 2162 6058006 2024-02-24 21:44:30.69 2024-02-24 21:44:30.69 300 FEE 437638 21624 6058007 2024-02-24 21:44:30.69 2024-02-24 21:44:30.69 2700 TIP 437638 19531 6058023 2024-02-24 21:44:56.864 2024-02-24 21:44:56.864 300 FEE 437587 12220 6058024 2024-02-24 21:44:56.864 2024-02-24 21:44:56.864 2700 TIP 437587 5036 6058025 2024-02-24 21:44:57.039 2024-02-24 21:44:57.039 300 FEE 437587 5775 6058026 2024-02-24 21:44:57.039 2024-02-24 21:44:57.039 2700 TIP 437587 5171 6058027 2024-02-24 21:44:57.082 2024-02-24 21:44:57.082 2500 FEE 437235 5557 6058028 2024-02-24 21:44:57.082 2024-02-24 21:44:57.082 22500 TIP 437235 21619 6058029 2024-02-24 21:44:57.229 2024-02-24 21:44:57.229 300 FEE 437587 2195 6058030 2024-02-24 21:44:57.229 2024-02-24 21:44:57.229 2700 TIP 437587 20646 6058040 2024-02-24 21:45:51.082 2024-02-24 21:45:51.082 1000 FEE 437712 5852 6058050 2024-02-24 21:46:54.546 2024-02-24 21:46:54.546 2100 FEE 437495 18448 6058051 2024-02-24 21:46:54.546 2024-02-24 21:46:54.546 18900 TIP 437495 5425 6058059 2024-02-24 21:47:45.877 2024-02-24 21:47:45.877 1000 FEE 437701 17148 6058060 2024-02-24 21:47:45.877 2024-02-24 21:47:45.877 9000 TIP 437701 2724 6058061 2024-02-24 21:47:46.342 2024-02-24 21:47:46.342 1000 FEE 437665 21624 6058062 2024-02-24 21:47:46.342 2024-02-24 21:47:46.342 9000 TIP 437665 21469 6058073 2024-02-24 21:49:57.719 2024-02-24 21:49:57.719 3300 FEE 437457 1785 6058074 2024-02-24 21:49:57.719 2024-02-24 21:49:57.719 29700 TIP 437457 624 6058116 2024-02-24 21:52:55.915 2024-02-24 21:52:55.915 100 FEE 437685 20613 6058117 2024-02-24 21:52:55.915 2024-02-24 21:52:55.915 900 TIP 437685 20276 6058134 2024-02-24 21:54:26.842 2024-02-24 21:54:26.842 900 FEE 437682 19938 6058135 2024-02-24 21:54:26.842 2024-02-24 21:54:26.842 8100 TIP 437682 19153 6058155 2024-02-24 21:55:20.767 2024-02-24 21:55:20.767 900 FEE 437662 18837 6058156 2024-02-24 21:55:20.767 2024-02-24 21:55:20.767 8100 TIP 437662 17602 6057638 2024-02-24 20:50:04.86 2024-02-24 20:50:04.86 1000 STREAM 141924 20370 6057842 2024-02-24 21:19:04.692 2024-02-24 21:19:04.692 1000 STREAM 141924 3979 6057843 2024-02-24 21:20:04.726 2024-02-24 21:20:04.726 1000 STREAM 141924 985 6057845 2024-02-24 21:22:04.72 2024-02-24 21:22:04.72 1000 STREAM 141924 18525 6057846 2024-02-24 21:23:04.727 2024-02-24 21:23:04.727 1000 STREAM 141924 8916 6057847 2024-02-24 21:24:04.738 2024-02-24 21:24:04.738 1000 STREAM 141924 13216 6057853 2024-02-24 21:26:04.757 2024-02-24 21:26:04.757 1000 STREAM 141924 19096 6057856 2024-02-24 21:27:04.768 2024-02-24 21:27:04.768 1000 STREAM 141924 1493 6057857 2024-02-24 21:28:04.782 2024-02-24 21:28:04.782 1000 STREAM 141924 10944 6057860 2024-02-24 21:30:04.817 2024-02-24 21:30:04.817 1000 STREAM 141924 733 6057861 2024-02-24 21:31:04.812 2024-02-24 21:31:04.812 1000 STREAM 141924 13753 6057862 2024-02-24 21:32:04.83 2024-02-24 21:32:04.83 1000 STREAM 141924 10102 6057870 2024-02-24 21:33:04.823 2024-02-24 21:33:04.823 1000 STREAM 141924 21556 6057886 2024-02-24 21:34:04.832 2024-02-24 21:34:04.832 1000 STREAM 141924 5308 6057948 2024-02-24 21:39:04.898 2024-02-24 21:39:04.898 1000 STREAM 141924 18170 6057980 2024-02-24 21:42:04.914 2024-02-24 21:42:04.914 1000 STREAM 141924 8648 6057984 2024-02-24 21:43:04.937 2024-02-24 21:43:04.937 1000 STREAM 141924 16653 6120372 2024-02-29 23:15:05.419 2024-02-29 23:15:05.419 1000 STREAM 141924 17183 6057673 2024-02-24 20:53:02.793 2024-02-24 20:53:02.793 0 FEE 437678 20090 6057689 2024-02-24 20:56:16.694 2024-02-24 20:56:16.694 5000 FEE 437611 2162 6057690 2024-02-24 20:56:16.694 2024-02-24 20:56:16.694 45000 TIP 437611 14074 6057724 2024-02-24 21:02:17.581 2024-02-24 21:02:17.581 10000 FEE 437690 15938 6057760 2024-02-24 21:11:16.641 2024-02-24 21:11:16.641 10100 FEE 437502 19148 6057761 2024-02-24 21:11:16.641 2024-02-24 21:11:16.641 90900 TIP 437502 19511 6057806 2024-02-24 21:15:17.742 2024-02-24 21:15:17.742 10100 FEE 437539 8095 6057807 2024-02-24 21:15:17.742 2024-02-24 21:15:17.742 90900 TIP 437539 17209 6057814 2024-02-24 21:15:21.096 2024-02-24 21:15:21.096 500 FEE 437403 16956 6057815 2024-02-24 21:15:21.096 2024-02-24 21:15:21.096 4500 TIP 437403 8926 6057822 2024-02-24 21:15:47.375 2024-02-24 21:15:47.375 1000 FEE 437698 20636 6057829 2024-02-24 21:17:19.305 2024-02-24 21:17:19.305 500 FEE 437276 895 6057830 2024-02-24 21:17:19.305 2024-02-24 21:17:19.305 4500 TIP 437276 9426 6057873 2024-02-24 21:33:14.787 2024-02-24 21:33:14.787 1000 FEE 437703 5661 6057902 2024-02-24 21:35:25.316 2024-02-24 21:35:25.316 1000 FEE 437704 21400 6057929 2024-02-24 21:36:39.167 2024-02-24 21:36:39.167 2100 FEE 437612 13378 6057930 2024-02-24 21:36:39.167 2024-02-24 21:36:39.167 18900 TIP 437612 1136 6057933 2024-02-24 21:36:42.019 2024-02-24 21:36:42.019 2100 FEE 437541 876 6057934 2024-02-24 21:36:42.019 2024-02-24 21:36:42.019 18900 TIP 437541 1705 6057946 2024-02-24 21:38:22.86 2024-02-24 21:38:22.86 2100 FEE 436733 21090 6057947 2024-02-24 21:38:22.86 2024-02-24 21:38:22.86 18900 TIP 436733 11158 6057950 2024-02-24 21:40:10.173 2024-02-24 21:40:10.173 2100 FEE 437701 21455 6057951 2024-02-24 21:40:10.173 2024-02-24 21:40:10.173 18900 TIP 437701 1090 6057958 2024-02-24 21:40:18.357 2024-02-24 21:40:18.357 300 FEE 237552 5160 6057959 2024-02-24 21:40:18.357 2024-02-24 21:40:18.357 2700 TIP 237552 17106 6057962 2024-02-24 21:40:18.754 2024-02-24 21:40:18.754 300 FEE 237552 18556 6057963 2024-02-24 21:40:18.754 2024-02-24 21:40:18.754 2700 TIP 237552 21578 6057990 2024-02-24 21:44:29.19 2024-02-24 21:44:29.19 300 FEE 437638 19126 6057991 2024-02-24 21:44:29.19 2024-02-24 21:44:29.19 2700 TIP 437638 5173 6057992 2024-02-24 21:44:29.368 2024-02-24 21:44:29.368 300 FEE 437638 1326 6057993 2024-02-24 21:44:29.368 2024-02-24 21:44:29.368 2700 TIP 437638 19664 6057996 2024-02-24 21:44:29.684 2024-02-24 21:44:29.684 300 FEE 437638 21014 6057997 2024-02-24 21:44:29.684 2024-02-24 21:44:29.684 2700 TIP 437638 1319 6058000 2024-02-24 21:44:30 2024-02-24 21:44:30 300 FEE 437638 6393 6058001 2024-02-24 21:44:30 2024-02-24 21:44:30 2700 TIP 437638 1602 6058014 2024-02-24 21:44:43.49 2024-02-24 21:44:43.49 2500 FEE 437351 18518 6058015 2024-02-24 21:44:43.49 2024-02-24 21:44:43.49 22500 TIP 437351 681 6058016 2024-02-24 21:44:50.491 2024-02-24 21:44:50.491 1000 FEE 437709 8416 6058037 2024-02-24 21:45:12.461 2024-02-24 21:45:12.461 1000 FEE 437707 2502 6058038 2024-02-24 21:45:12.461 2024-02-24 21:45:12.461 9000 TIP 437707 4958 6058066 2024-02-24 21:49:42.401 2024-02-24 21:49:42.401 100000 FEE 437714 14959 6058067 2024-02-24 21:49:54.503 2024-02-24 21:49:54.503 3300 FEE 437653 21469 6058068 2024-02-24 21:49:54.503 2024-02-24 21:49:54.503 29700 TIP 437653 16212 6058078 2024-02-24 21:50:10.55 2024-02-24 21:50:10.55 3300 FEE 437181 635 6058079 2024-02-24 21:50:10.55 2024-02-24 21:50:10.55 29700 TIP 437181 14950 6058090 2024-02-24 21:50:57.433 2024-02-24 21:50:57.433 3000 FEE 437702 1806 6058091 2024-02-24 21:50:57.433 2024-02-24 21:50:57.433 27000 TIP 437702 4459 6058108 2024-02-24 21:52:02.586 2024-02-24 21:52:02.586 2600 FEE 437676 20555 6058109 2024-02-24 21:52:02.586 2024-02-24 21:52:02.586 23400 TIP 437676 18393 6058114 2024-02-24 21:52:30.225 2024-02-24 21:52:30.225 1000 FEE 437716 19502 6058118 2024-02-24 21:52:56.108 2024-02-24 21:52:56.108 900 FEE 437685 15243 6058119 2024-02-24 21:52:56.108 2024-02-24 21:52:56.108 8100 TIP 437685 19878 6058120 2024-02-24 21:52:56.786 2024-02-24 21:52:56.786 2100 FEE 437539 21494 6058121 2024-02-24 21:52:56.786 2024-02-24 21:52:56.786 18900 TIP 437539 9427 6058122 2024-02-24 21:52:56.969 2024-02-24 21:52:56.969 9000 FEE 437685 13599 6058123 2024-02-24 21:52:56.969 2024-02-24 21:52:56.969 81000 TIP 437685 9290 6058126 2024-02-24 21:54:05.034 2024-02-24 21:54:05.034 2100 FEE 437218 4304 6058127 2024-02-24 21:54:05.034 2024-02-24 21:54:05.034 18900 TIP 437218 1310 6058144 2024-02-24 21:54:47.037 2024-02-24 21:54:47.037 100 FEE 437524 16876 6058145 2024-02-24 21:54:47.037 2024-02-24 21:54:47.037 900 TIP 437524 9362 6058148 2024-02-24 21:54:48.174 2024-02-24 21:54:48.174 9000 FEE 437524 19296 6058149 2024-02-24 21:54:48.174 2024-02-24 21:54:48.174 81000 TIP 437524 16942 6058173 2024-02-24 21:56:50.977 2024-02-24 21:56:50.977 900 FEE 437670 20981 6058174 2024-02-24 21:56:50.977 2024-02-24 21:56:50.977 8100 TIP 437670 15146 6058203 2024-02-24 22:02:19.236 2024-02-24 22:02:19.236 6900 FEE 437720 8506 6058204 2024-02-24 22:02:19.236 2024-02-24 22:02:19.236 62100 TIP 437720 2734 6058214 2024-02-24 22:04:28.936 2024-02-24 22:04:28.936 2100 FEE 437715 9906 6058215 2024-02-24 22:04:28.936 2024-02-24 22:04:28.936 18900 TIP 437715 1141 6058228 2024-02-24 22:09:55.504 2024-02-24 22:09:55.504 3000 FEE 437675 2285 6058229 2024-02-24 22:09:55.504 2024-02-24 22:09:55.504 27000 TIP 437675 16649 6058243 2024-02-24 22:13:57.358 2024-02-24 22:13:57.358 2100 FEE 437524 15147 6058244 2024-02-24 22:13:57.358 2024-02-24 22:13:57.358 18900 TIP 437524 3656 6058259 2024-02-24 22:16:25.589 2024-02-24 22:16:25.589 2100 FEE 437502 20099 6058260 2024-02-24 22:16:25.589 2024-02-24 22:16:25.589 18900 TIP 437502 8506 6057675 2024-02-24 20:53:11.203 2024-02-24 20:53:11.203 0 FEE 437678 21412 6057697 2024-02-24 20:58:46.739 2024-02-24 20:58:46.739 1000 FEE 437685 15463 6057736 2024-02-24 21:03:25.962 2024-02-24 21:03:25.962 1000 FEE 437692 6777 6057749 2024-02-24 21:06:34.761 2024-02-24 21:06:34.761 100 FEE 437372 9354 6057750 2024-02-24 21:06:34.761 2024-02-24 21:06:34.761 900 TIP 437372 12102 6057765 2024-02-24 21:12:01.606 2024-02-24 21:12:01.606 500 FEE 437674 15243 6057766 2024-02-24 21:12:01.606 2024-02-24 21:12:01.606 4500 TIP 437674 12821 6057780 2024-02-24 21:13:03.146 2024-02-24 21:13:03.146 500 FEE 437545 21222 6057781 2024-02-24 21:13:03.146 2024-02-24 21:13:03.146 4500 TIP 437545 5758 6057784 2024-02-24 21:13:14.644 2024-02-24 21:13:14.644 500 FEE 437512 19878 6057785 2024-02-24 21:13:14.644 2024-02-24 21:13:14.644 4500 TIP 437512 19512 6057824 2024-02-24 21:16:07.422 2024-02-24 21:16:07.422 2100 FEE 437637 20751 6057825 2024-02-24 21:16:07.422 2024-02-24 21:16:07.422 18900 TIP 437637 19941 6057833 2024-02-24 21:17:45.782 2024-02-24 21:17:45.782 500 FEE 437197 9845 6057834 2024-02-24 21:17:45.782 2024-02-24 21:17:45.782 4500 TIP 437197 15484 6057876 2024-02-24 21:33:28.722 2024-02-24 21:33:28.722 2100 FEE 437531 15549 6057877 2024-02-24 21:33:28.722 2024-02-24 21:33:28.722 18900 TIP 437531 2151 6057956 2024-02-24 21:40:18.161 2024-02-24 21:40:18.161 300 FEE 237552 18170 6057957 2024-02-24 21:40:18.161 2024-02-24 21:40:18.161 2700 TIP 237552 14376 6057976 2024-02-24 21:40:46.183 2024-02-24 21:40:46.183 1000 FEE 437697 7119 6057977 2024-02-24 21:40:46.183 2024-02-24 21:40:46.183 9000 TIP 437697 21365 6057982 2024-02-24 21:42:09.159 2024-02-24 21:42:09.159 2100 FEE 437502 11165 6057983 2024-02-24 21:42:09.159 2024-02-24 21:42:09.159 18900 TIP 437502 9421 6057986 2024-02-24 21:44:28.86 2024-02-24 21:44:28.86 300 FEE 437638 21343 6057987 2024-02-24 21:44:28.86 2024-02-24 21:44:28.86 2700 TIP 437638 14818 6058002 2024-02-24 21:44:30.215 2024-02-24 21:44:30.215 300 FEE 437638 1814 6058003 2024-02-24 21:44:30.215 2024-02-24 21:44:30.215 2700 TIP 437638 14267 6058039 2024-02-24 21:45:43.723 2024-02-24 21:45:43.723 1000 FEE 437711 1650 6058041 2024-02-24 21:45:54.095 2024-02-24 21:45:54.095 7100 FEE 436760 16154 6058042 2024-02-24 21:45:54.095 2024-02-24 21:45:54.095 63900 TIP 436760 4064 6058075 2024-02-24 21:50:00.302 2024-02-24 21:50:00.302 3300 FEE 437408 11999 6058076 2024-02-24 21:50:00.302 2024-02-24 21:50:00.302 29700 TIP 437408 16356 6058095 2024-02-24 21:51:29.734 2024-02-24 21:51:29.734 1000 FEE 437715 18468 6058098 2024-02-24 21:51:41.569 2024-02-24 21:51:41.569 10000 FEE 437684 19907 6058099 2024-02-24 21:51:41.569 2024-02-24 21:51:41.569 90000 TIP 437684 16769 6058100 2024-02-24 21:51:46.999 2024-02-24 21:51:46.999 2600 FEE 437683 15474 6058101 2024-02-24 21:51:46.999 2024-02-24 21:51:46.999 23400 TIP 437683 13854 6058146 2024-02-24 21:54:47.197 2024-02-24 21:54:47.197 900 FEE 437524 1512 6058147 2024-02-24 21:54:47.197 2024-02-24 21:54:47.197 8100 TIP 437524 5637 6058210 2024-02-24 22:04:17.936 2024-02-24 22:04:17.936 2100 FEE 437721 616 6058211 2024-02-24 22:04:17.936 2024-02-24 22:04:17.936 18900 TIP 437721 21166 6058233 2024-02-24 22:12:20.495 2024-02-24 22:12:20.495 10000 FEE 437238 2519 6058234 2024-02-24 22:12:20.495 2024-02-24 22:12:20.495 90000 TIP 437238 14910 6058240 2024-02-24 22:13:26.228 2024-02-24 22:13:26.228 210000 FEE 437723 20577 6058263 2024-02-24 22:16:37.238 2024-02-24 22:16:37.238 2100 FEE 437714 14657 6058264 2024-02-24 22:16:37.238 2024-02-24 22:16:37.238 18900 TIP 437714 18816 6058267 2024-02-24 22:16:43.904 2024-02-24 22:16:43.904 4000 FEE 437665 20179 6058268 2024-02-24 22:16:43.904 2024-02-24 22:16:43.904 36000 TIP 437665 12708 6058275 2024-02-24 22:17:02.194 2024-02-24 22:17:02.194 8000 FEE 437710 21044 6058276 2024-02-24 22:17:02.194 2024-02-24 22:17:02.194 72000 TIP 437710 11328 6058298 2024-02-24 22:21:08.992 2024-02-24 22:21:08.992 1000 FEE 437726 15858 6058299 2024-02-24 22:21:08.992 2024-02-24 22:21:08.992 9000 TIP 437726 12265 6058332 2024-02-24 22:35:24.202 2024-02-24 22:35:24.202 3000 FEE 437720 12422 6058333 2024-02-24 22:35:24.202 2024-02-24 22:35:24.202 27000 TIP 437720 10608 6058340 2024-02-24 22:38:50.146 2024-02-24 22:38:50.146 1000 FEE 437723 15491 6058341 2024-02-24 22:38:50.146 2024-02-24 22:38:50.146 9000 TIP 437723 17602 6058343 2024-02-24 22:39:37.468 2024-02-24 22:39:37.468 21000 FEE 437732 5112 6058344 2024-02-24 22:40:00.237 2024-02-24 22:40:00.237 1000 FEE 437733 663 6058354 2024-02-24 22:41:33.76 2024-02-24 22:41:33.76 300 FEE 437386 2513 6058355 2024-02-24 22:41:33.76 2024-02-24 22:41:33.76 2700 TIP 437386 13378 6058390 2024-02-24 22:47:39.577 2024-02-24 22:47:39.577 300 FEE 437736 6515 6058391 2024-02-24 22:47:39.577 2024-02-24 22:47:39.577 2700 TIP 437736 805 6058410 2024-02-24 22:48:36.647 2024-02-24 22:48:36.647 2100 FEE 437714 21472 6058411 2024-02-24 22:48:36.647 2024-02-24 22:48:36.647 18900 TIP 437714 18072 6058422 2024-02-24 22:50:58.926 2024-02-24 22:50:58.926 21000 FEE 437720 714 6058423 2024-02-24 22:50:58.926 2024-02-24 22:50:58.926 189000 TIP 437720 15806 6058429 2024-02-24 22:51:19.976 2024-02-24 22:51:19.976 1000 FEE 437740 15060 6058430 2024-02-24 22:51:19.976 2024-02-24 22:51:19.976 9000 TIP 437740 3213 6058433 2024-02-24 22:51:20.737 2024-02-24 22:51:20.737 1000 FEE 437740 17514 6058434 2024-02-24 22:51:20.737 2024-02-24 22:51:20.737 9000 TIP 437740 12609 6058445 2024-02-24 22:52:18.845 2024-02-24 22:52:18.845 1000 FEE 437739 20912 6058446 2024-02-24 22:52:18.845 2024-02-24 22:52:18.845 9000 TIP 437739 19488 6058471 2024-02-24 22:54:37.186 2024-02-24 22:54:37.186 2100 FEE 437634 20811 6058472 2024-02-24 22:54:37.186 2024-02-24 22:54:37.186 18900 TIP 437634 720 6058475 2024-02-24 22:54:45.162 2024-02-24 22:54:45.162 4000 FEE 437720 11819 6058476 2024-02-24 22:54:45.162 2024-02-24 22:54:45.162 36000 TIP 437720 12821 6058481 2024-02-24 22:54:54.019 2024-02-24 22:54:54.019 4000 FEE 437654 18241 6058482 2024-02-24 22:54:54.019 2024-02-24 22:54:54.019 36000 TIP 437654 16754 6058488 2024-02-24 22:55:39.553 2024-02-24 22:55:39.553 2100 FEE 437605 20157 6058489 2024-02-24 22:55:39.553 2024-02-24 22:55:39.553 18900 TIP 437605 16214 6058498 2024-02-24 22:57:08.422 2024-02-24 22:57:08.422 6400 FEE 437720 13878 6058499 2024-02-24 22:57:08.422 2024-02-24 22:57:08.422 57600 TIP 437720 21463 6058513 2024-02-24 23:00:11.69 2024-02-24 23:00:11.69 5000 FEE 437611 10270 6058514 2024-02-24 23:00:11.69 2024-02-24 23:00:11.69 45000 TIP 437611 917 6058552 2024-02-24 23:10:07.834 2024-02-24 23:10:07.834 6900 FEE 437738 1505 6058553 2024-02-24 23:10:07.834 2024-02-24 23:10:07.834 62100 TIP 437738 1173 6058575 2024-02-24 23:12:00.177 2024-02-24 23:12:00.177 6900 FEE 437752 1105 6058576 2024-02-24 23:12:00.177 2024-02-24 23:12:00.177 62100 TIP 437752 17517 6058641 2024-02-24 23:29:05 2024-02-24 23:29:05 1000 FEE 437714 17184 6058642 2024-02-24 23:29:05 2024-02-24 23:29:05 9000 TIP 437714 20704 6058660 2024-02-24 23:35:01.227 2024-02-24 23:35:01.227 400 FEE 437743 18453 6058661 2024-02-24 23:35:01.227 2024-02-24 23:35:01.227 3600 TIP 437743 11527 6058699 2024-02-24 23:41:43.48 2024-02-24 23:41:43.48 1000 FEE 437767 19961 6058722 2024-02-24 23:48:02.86 2024-02-24 23:48:02.86 1000 FEE 437770 13361 6058726 2024-02-24 23:49:08.351 2024-02-24 23:49:08.351 2100 FEE 429534 17148 6058727 2024-02-24 23:49:08.351 2024-02-24 23:49:08.351 18900 TIP 429534 1881 6058730 2024-02-24 23:49:52.53 2024-02-24 23:49:52.53 1000 FEE 437771 21060 6058736 2024-02-24 23:50:45.743 2024-02-24 23:50:45.743 1000 FEE 437772 18630 6058804 2024-02-25 00:06:39.004 2024-02-25 00:06:39.004 1000 FEE 437777 18170 6058805 2024-02-25 00:06:39.004 2024-02-25 00:06:39.004 9000 TIP 437777 21480 6058823 2024-02-25 00:10:20.393 2024-02-25 00:10:20.393 1000 FEE 437704 16966 6058824 2024-02-25 00:10:20.393 2024-02-25 00:10:20.393 9000 TIP 437704 4989 6057710 2024-02-24 21:00:43.361 2024-02-24 21:00:43.361 2000 FEE 437403 9992 6057711 2024-02-24 21:00:43.361 2024-02-24 21:00:43.361 18000 TIP 437403 17162 6057714 2024-02-24 21:00:43.829 2024-02-24 21:00:43.829 2000 FEE 437403 2293 6057715 2024-02-24 21:00:43.829 2024-02-24 21:00:43.829 18000 TIP 437403 1745 6057719 2024-02-24 21:01:40.636 2024-02-24 21:01:40.636 1000 FEE 437688 2328 6057745 2024-02-24 21:05:40.568 2024-02-24 21:05:40.568 1000 FEE 437694 698 6057756 2024-02-24 21:09:34.675 2024-02-24 21:09:34.675 0 FEE 437692 2335 6057768 2024-02-24 21:12:05.928 2024-02-24 21:12:05.928 500 FEE 437674 965 6057769 2024-02-24 21:12:05.928 2024-02-24 21:12:05.928 4500 TIP 437674 15088 6057777 2024-02-24 21:12:59.158 2024-02-24 21:12:59.158 10000 FEE 437695 5661 6057778 2024-02-24 21:12:59.158 2024-02-24 21:12:59.158 90000 TIP 437695 13132 6057786 2024-02-24 21:13:15.504 2024-02-24 21:13:15.504 69000 FEE 437696 14267 6057802 2024-02-24 21:15:16.918 2024-02-24 21:15:16.918 500 FEE 437269 19346 6057803 2024-02-24 21:15:16.918 2024-02-24 21:15:16.918 4500 TIP 437269 20775 6057810 2024-02-24 21:15:19.402 2024-02-24 21:15:19.402 500 FEE 437502 15200 6057811 2024-02-24 21:15:19.402 2024-02-24 21:15:19.402 4500 TIP 437502 19909 6057820 2024-02-24 21:15:30.078 2024-02-24 21:15:30.078 7100 FEE 437670 1738 6057821 2024-02-24 21:15:30.078 2024-02-24 21:15:30.078 63900 TIP 437670 5449 6057840 2024-02-24 21:18:20.033 2024-02-24 21:18:20.033 500 FEE 436720 649 6057841 2024-02-24 21:18:20.033 2024-02-24 21:18:20.033 4500 TIP 436720 1135 6057863 2024-02-24 21:32:05.557 2024-02-24 21:32:05.557 1000 FEE 437702 10693 6057864 2024-02-24 21:32:27.023 2024-02-24 21:32:27.023 1000 FEE 437673 861 6057865 2024-02-24 21:32:27.023 2024-02-24 21:32:27.023 9000 TIP 437673 19043 6057882 2024-02-24 21:33:44.565 2024-02-24 21:33:44.565 2100 FEE 437541 20788 6057883 2024-02-24 21:33:44.565 2024-02-24 21:33:44.565 18900 TIP 437541 21222 6057884 2024-02-24 21:33:46.252 2024-02-24 21:33:46.252 2100 FEE 437472 647 6057885 2024-02-24 21:33:46.252 2024-02-24 21:33:46.252 18900 TIP 437472 2065 6057889 2024-02-24 21:34:33.047 2024-02-24 21:34:33.047 1000 FEE 437634 5085 6057890 2024-02-24 21:34:33.047 2024-02-24 21:34:33.047 9000 TIP 437634 11523 6057897 2024-02-24 21:34:57.183 2024-02-24 21:34:57.183 2100 FEE 437696 650 6057898 2024-02-24 21:34:57.183 2024-02-24 21:34:57.183 18900 TIP 437696 1890 6057904 2024-02-24 21:36:09.781 2024-02-24 21:36:09.781 2100 FEE 437696 20674 6057905 2024-02-24 21:36:09.781 2024-02-24 21:36:09.781 18900 TIP 437696 20340 6057906 2024-02-24 21:36:12.874 2024-02-24 21:36:12.874 1000 FEE 437705 4014 6057913 2024-02-24 21:36:17.208 2024-02-24 21:36:17.208 300 FEE 237616 19031 6057914 2024-02-24 21:36:17.208 2024-02-24 21:36:17.208 2700 TIP 237616 21532 6057919 2024-02-24 21:36:18.471 2024-02-24 21:36:18.471 300 FEE 237616 1737 6057920 2024-02-24 21:36:18.471 2024-02-24 21:36:18.471 2700 TIP 237616 7583 6057972 2024-02-24 21:40:45.257 2024-02-24 21:40:45.257 2000 FEE 437697 17275 6057973 2024-02-24 21:40:45.257 2024-02-24 21:40:45.257 18000 TIP 437697 20602 6058017 2024-02-24 21:44:56.363 2024-02-24 21:44:56.363 300 FEE 437587 20663 6058018 2024-02-24 21:44:56.363 2024-02-24 21:44:56.363 2700 TIP 437587 8998 6058021 2024-02-24 21:44:56.698 2024-02-24 21:44:56.698 300 FEE 437587 13753 6058022 2024-02-24 21:44:56.698 2024-02-24 21:44:56.698 2700 TIP 437587 6384 6058035 2024-02-24 21:45:11.793 2024-02-24 21:45:11.793 1000 FEE 437707 20087 6058036 2024-02-24 21:45:11.793 2024-02-24 21:45:11.793 9000 TIP 437707 21155 6058044 2024-02-24 21:46:17.619 2024-02-24 21:46:17.619 2100 FEE 437512 16660 6058045 2024-02-24 21:46:17.619 2024-02-24 21:46:17.619 18900 TIP 437512 759 6058046 2024-02-24 21:46:39.835 2024-02-24 21:46:39.835 1000 FEE 437539 18892 6058047 2024-02-24 21:46:39.835 2024-02-24 21:46:39.835 9000 TIP 437539 5173 6058065 2024-02-24 21:49:34.396 2024-02-24 21:49:34.396 1000 FEE 437713 20157 6058069 2024-02-24 21:49:54.599 2024-02-24 21:49:54.599 3300 FEE 437653 17172 6058070 2024-02-24 21:49:54.599 2024-02-24 21:49:54.599 29700 TIP 437653 20110 6058080 2024-02-24 21:50:11.43 2024-02-24 21:50:11.43 3300 FEE 437181 20816 6058081 2024-02-24 21:50:11.43 2024-02-24 21:50:11.43 29700 TIP 437181 13767 6058084 2024-02-24 21:50:43.269 2024-02-24 21:50:43.269 3300 FEE 437519 621 6058085 2024-02-24 21:50:43.269 2024-02-24 21:50:43.269 29700 TIP 437519 18262 6058093 2024-02-24 21:51:19.315 2024-02-24 21:51:19.315 2100 FEE 437244 18704 6058094 2024-02-24 21:51:19.315 2024-02-24 21:51:19.315 18900 TIP 437244 15624 6058115 2024-02-24 21:52:32.008 2024-02-24 21:52:32.008 1000 FEE 437717 6041 6058140 2024-02-24 21:54:33.321 2024-02-24 21:54:33.321 900 FEE 437684 7673 6058141 2024-02-24 21:54:33.321 2024-02-24 21:54:33.321 8100 TIP 437684 3353 6058153 2024-02-24 21:55:20.568 2024-02-24 21:55:20.568 100 FEE 437662 9331 6058154 2024-02-24 21:55:20.568 2024-02-24 21:55:20.568 900 TIP 437662 2735 6058157 2024-02-24 21:55:22.226 2024-02-24 21:55:22.226 100 FEE 437653 18731 6058158 2024-02-24 21:55:22.226 2024-02-24 21:55:22.226 900 TIP 437653 9036 6058159 2024-02-24 21:55:22.436 2024-02-24 21:55:22.436 900 FEE 437653 18989 6058160 2024-02-24 21:55:22.436 2024-02-24 21:55:22.436 8100 TIP 437653 7847 6058161 2024-02-24 21:55:31.121 2024-02-24 21:55:31.121 100 FEE 437654 18396 6058162 2024-02-24 21:55:31.121 2024-02-24 21:55:31.121 900 TIP 437654 2829 6058178 2024-02-24 21:57:38.296 2024-02-24 21:57:38.296 900 FEE 437716 929 6058179 2024-02-24 21:57:38.296 2024-02-24 21:57:38.296 8100 TIP 437716 18230 6058182 2024-02-24 21:57:40.02 2024-02-24 21:57:40.02 900 FEE 437714 20881 6058183 2024-02-24 21:57:40.02 2024-02-24 21:57:40.02 8100 TIP 437714 7682 6058336 2024-02-24 22:37:15.526 2024-02-24 22:37:15.526 100000 FEE 437731 10409 6058364 2024-02-24 22:43:17.433 2024-02-24 22:43:17.433 1000 FEE 437735 763 6058371 2024-02-24 22:44:09.625 2024-02-24 22:44:09.625 1000 FEE 437734 11164 6058372 2024-02-24 22:44:09.625 2024-02-24 22:44:09.625 9000 TIP 437734 21588 6058377 2024-02-24 22:44:10.661 2024-02-24 22:44:10.661 1000 FEE 437734 21387 6058378 2024-02-24 22:44:10.661 2024-02-24 22:44:10.661 9000 TIP 437734 848 6058392 2024-02-24 22:47:42.524 2024-02-24 22:47:42.524 10000 FEE 437720 7395 6058393 2024-02-24 22:47:42.524 2024-02-24 22:47:42.524 90000 TIP 437720 16276 6058425 2024-02-24 22:51:17.673 2024-02-24 22:51:17.673 1000 FEE 437740 11866 6058426 2024-02-24 22:51:17.673 2024-02-24 22:51:17.673 9000 TIP 437740 10638 6058436 2024-02-24 22:52:07.918 2024-02-24 22:52:07.918 1000 FEE 437745 19322 6058506 2024-02-24 22:58:50.577 2024-02-24 22:58:50.577 2100 FEE 437654 18743 6058507 2024-02-24 22:58:50.577 2024-02-24 22:58:50.577 18900 TIP 437654 19501 6058522 2024-02-24 23:03:01.223 2024-02-24 23:03:01.223 1000 FEE 437753 8080 6058536 2024-02-24 23:04:48.979 2024-02-24 23:04:48.979 1000 FEE 437756 4502 6058554 2024-02-24 23:10:08.05 2024-02-24 23:10:08.05 6900 FEE 437738 11829 6058555 2024-02-24 23:10:08.05 2024-02-24 23:10:08.05 62100 TIP 437738 5661 6058556 2024-02-24 23:10:08.204 2024-02-24 23:10:08.204 6900 FEE 437738 10013 6058557 2024-02-24 23:10:08.204 2024-02-24 23:10:08.204 62100 TIP 437738 2162 6058562 2024-02-24 23:10:10.123 2024-02-24 23:10:10.123 6900 FEE 437738 18330 6058563 2024-02-24 23:10:10.123 2024-02-24 23:10:10.123 62100 TIP 437738 12097 6058564 2024-02-24 23:10:10.316 2024-02-24 23:10:10.316 6900 FEE 437738 12483 6058565 2024-02-24 23:10:10.316 2024-02-24 23:10:10.316 62100 TIP 437738 19174 6058582 2024-02-24 23:12:20.83 2024-02-24 23:12:20.83 2100 FEE 437560 7869 6058583 2024-02-24 23:12:20.83 2024-02-24 23:12:20.83 18900 TIP 437560 2502 6058592 2024-02-24 23:18:05.089 2024-02-24 23:18:05.089 2100 FEE 433123 21026 6058593 2024-02-24 23:18:05.089 2024-02-24 23:18:05.089 18900 TIP 433123 16193 6058621 2024-02-24 23:25:57.684 2024-02-24 23:25:57.684 6900 FEE 437761 5425 6058622 2024-02-24 23:25:57.684 2024-02-24 23:25:57.684 62100 TIP 437761 8004 6057744 2024-02-24 21:05:04.472 2024-02-24 21:05:04.472 1000 STREAM 141924 7553 6057752 2024-02-24 21:08:02.513 2024-02-24 21:08:02.513 1000 STREAM 141924 18736 6057755 2024-02-24 21:09:02.533 2024-02-24 21:09:02.533 1000 STREAM 141924 21371 6057759 2024-02-24 21:11:02.528 2024-02-24 21:11:02.528 1000 STREAM 141924 836 6057779 2024-02-24 21:13:02.564 2024-02-24 21:13:02.564 1000 STREAM 141924 899 6057801 2024-02-24 21:15:02.543 2024-02-24 21:15:02.543 1000 STREAM 141924 18892 6057823 2024-02-24 21:16:02.542 2024-02-24 21:16:02.542 1000 STREAM 141924 18663 6120388 2024-02-29 23:19:52.439 2024-02-29 23:19:52.439 1000 FEE 444210 4474 6120389 2024-02-29 23:19:52.439 2024-02-29 23:19:52.439 9000 TIP 444210 21063 6120420 2024-02-29 23:27:53.838 2024-02-29 23:27:53.838 1000 FEE 444412 9833 6120430 2024-02-29 23:30:37.307 2024-02-29 23:30:37.307 10000 FEE 444206 670 6120431 2024-02-29 23:30:37.307 2024-02-29 23:30:37.307 90000 TIP 444206 19156 6120460 2024-02-29 23:38:51.264 2024-02-29 23:38:51.264 5000 FEE 444189 1010 6120461 2024-02-29 23:38:51.264 2024-02-29 23:38:51.264 45000 TIP 444189 5195 6120475 2024-02-29 23:46:01.015 2024-02-29 23:46:01.015 1000 FEE 444419 13599 6120483 2024-02-29 23:49:07.924 2024-02-29 23:49:07.924 300 FEE 443861 19546 6120484 2024-02-29 23:49:07.924 2024-02-29 23:49:07.924 2700 TIP 443861 19966 6120485 2024-02-29 23:49:08.75 2024-02-29 23:49:08.75 300 FEE 443861 11750 6120486 2024-02-29 23:49:08.75 2024-02-29 23:49:08.75 2700 TIP 443861 18625 6120487 2024-02-29 23:49:09.007 2024-02-29 23:49:09.007 300 FEE 443861 1030 6120488 2024-02-29 23:49:09.007 2024-02-29 23:49:09.007 2700 TIP 443861 1733 6120496 2024-02-29 23:50:29.697 2024-02-29 23:50:29.697 0 FEE 444419 9307 6120501 2024-02-29 23:52:32.213 2024-02-29 23:52:32.213 3300 FEE 444259 21624 6120502 2024-02-29 23:52:32.213 2024-02-29 23:52:32.213 29700 TIP 444259 10007 6120507 2024-02-29 23:52:38.144 2024-02-29 23:52:38.144 3300 FEE 444284 2327 6120508 2024-02-29 23:52:38.144 2024-02-29 23:52:38.144 29700 TIP 444284 7992 6120527 2024-02-29 23:56:16.915 2024-02-29 23:56:16.915 7700 FEE 444411 11956 6120528 2024-02-29 23:56:16.915 2024-02-29 23:56:16.915 69300 TIP 444411 16970 6120580 2024-03-01 00:08:20.468 2024-03-01 00:08:20.468 5000 FEE 444102 20564 6120581 2024-03-01 00:08:20.468 2024-03-01 00:08:20.468 45000 TIP 444102 9200 6120585 2024-03-01 00:08:51.688 2024-03-01 00:08:51.688 5000 FEE 443336 18230 6120586 2024-03-01 00:08:51.688 2024-03-01 00:08:51.688 45000 TIP 443336 6653 6120589 2024-03-01 00:09:05.425 2024-03-01 00:09:05.425 1000 FEE 444440 12930 6120596 2024-03-01 00:12:11.77 2024-03-01 00:12:11.77 1000 FEE 444442 21466 6120600 2024-03-01 00:13:17.277 2024-03-01 00:13:17.277 20000 FEE 444443 17673 6120619 2024-03-01 00:17:00.431 2024-03-01 00:17:00.431 2100 FEE 443585 1175 6120620 2024-03-01 00:17:00.431 2024-03-01 00:17:00.431 18900 TIP 443585 17011 6120625 2024-03-01 00:18:49.118 2024-03-01 00:18:49.118 1000 FEE 444445 20616 6120657 2024-03-01 00:20:33.686 2024-03-01 00:20:33.686 2100 FEE 443169 17212 6120658 2024-03-01 00:20:33.686 2024-03-01 00:20:33.686 18900 TIP 443169 3518 6120660 2024-03-01 00:20:43.407 2024-03-01 00:20:43.407 1000 FEE 444448 18219 6120661 2024-03-01 00:20:54.248 2024-03-01 00:20:54.248 1000 FEE 444408 16769 6120662 2024-03-01 00:20:54.248 2024-03-01 00:20:54.248 9000 TIP 444408 3990 6120665 2024-03-01 00:22:22.32 2024-03-01 00:22:22.32 2100 FEE 443217 21342 6120666 2024-03-01 00:22:22.32 2024-03-01 00:22:22.32 18900 TIP 443217 15147 6120682 2024-03-01 00:26:17.882 2024-03-01 00:26:17.882 1000 FEE 444168 16149 6120683 2024-03-01 00:26:17.882 2024-03-01 00:26:17.882 9000 TIP 444168 21541 6120712 2024-03-01 00:35:55.606 2024-03-01 00:35:55.606 100 FEE 444440 19118 6120713 2024-03-01 00:35:55.606 2024-03-01 00:35:55.606 900 TIP 444440 989 6120723 2024-03-01 00:40:11.971 2024-03-01 00:40:11.971 2100 FEE 444365 19126 6120724 2024-03-01 00:40:11.971 2024-03-01 00:40:11.971 18900 TIP 444365 20490 6120749 2024-03-01 00:48:06.792 2024-03-01 00:48:06.792 500 FEE 444365 21037 6120750 2024-03-01 00:48:06.792 2024-03-01 00:48:06.792 4500 TIP 444365 21451 6120764 2024-03-01 00:55:18.298 2024-03-01 00:55:18.298 1000 FEE 444464 1012 6120787 2024-03-01 01:00:32.404 2024-03-01 01:00:32.404 1000 FEE 444468 18989 6120798 2024-03-01 01:00:48.668 2024-03-01 01:00:48.668 1000 FEE 442571 21222 6120799 2024-03-01 01:00:48.668 2024-03-01 01:00:48.668 9000 TIP 442571 2022 6120819 2024-03-01 01:08:52.104 2024-03-01 01:08:52.104 2600 FEE 444455 14074 6120820 2024-03-01 01:08:52.104 2024-03-01 01:08:52.104 23400 TIP 444455 1718 6120823 2024-03-01 01:09:01.219 2024-03-01 01:09:01.219 2600 FEE 444416 1130 6120824 2024-03-01 01:09:01.219 2024-03-01 01:09:01.219 23400 TIP 444416 726 6120838 2024-03-01 01:11:19.85 2024-03-01 01:11:19.85 1000 FEE 444194 1426 6120839 2024-03-01 01:11:19.85 2024-03-01 01:11:19.85 9000 TIP 444194 1046 6120856 2024-03-01 01:13:55.102 2024-03-01 01:13:55.102 100000 FEE 444471 19795 6120868 2024-03-01 01:16:00.557 2024-03-01 01:16:00.557 1000 FEE 444397 3400 6120869 2024-03-01 01:16:00.557 2024-03-01 01:16:00.557 9000 TIP 444397 3656 6120897 2024-03-01 01:23:45.893 2024-03-01 01:23:45.893 2100 FEE 443528 19533 6120898 2024-03-01 01:23:45.893 2024-03-01 01:23:45.893 18900 TIP 443528 8713 6120901 2024-03-01 01:24:46.217 2024-03-01 01:24:46.217 1000 FEE 444480 629 6120902 2024-03-01 01:24:51.62 2024-03-01 01:24:51.62 1000 POLL 444078 1316 6120915 2024-03-01 01:30:19.386 2024-03-01 01:30:19.386 0 FEE 444477 19809 6120921 2024-03-01 01:31:00.831 2024-03-01 01:31:00.831 3000 FEE 444168 19235 6120922 2024-03-01 01:31:00.831 2024-03-01 01:31:00.831 27000 TIP 444168 21427 6120971 2024-03-01 01:57:07.625 2024-03-01 01:57:07.625 2500 FEE 443580 20585 6120972 2024-03-01 01:57:07.625 2024-03-01 01:57:07.625 22500 TIP 443580 11288 6120993 2024-03-01 02:05:43.482 2024-03-01 02:05:43.482 10000 FEE 444049 917 6120994 2024-03-01 02:05:43.482 2024-03-01 02:05:43.482 90000 TIP 444049 20084 6121024 2024-03-01 02:17:37.239 2024-03-01 02:17:37.239 2100 FEE 444168 18423 6121025 2024-03-01 02:17:37.239 2024-03-01 02:17:37.239 18900 TIP 444168 12976 6121032 2024-03-01 02:17:39.21 2024-03-01 02:17:39.21 2100 FEE 444168 2224 6121033 2024-03-01 02:17:39.21 2024-03-01 02:17:39.21 18900 TIP 444168 21263 6121041 2024-03-01 02:23:21.816 2024-03-01 02:23:21.816 5700 FEE 444462 19857 6121042 2024-03-01 02:23:21.816 2024-03-01 02:23:21.816 51300 TIP 444462 2502 6121089 2024-03-01 02:32:16.104 2024-03-01 02:32:16.104 50000 FEE 444506 1825 6121094 2024-03-01 02:35:01.186 2024-03-01 02:35:01.186 10000 FEE 444071 1584 6121095 2024-03-01 02:35:01.186 2024-03-01 02:35:01.186 90000 TIP 444071 10063 6121120 2024-03-01 02:48:32.439 2024-03-01 02:48:32.439 1000 FEE 444509 18705 6121131 2024-03-01 02:51:35.356 2024-03-01 02:51:35.356 100 FEE 444510 14080 6121132 2024-03-01 02:51:35.356 2024-03-01 02:51:35.356 900 TIP 444510 12946 6121135 2024-03-01 02:52:11.515 2024-03-01 02:52:11.515 1000 FEE 444512 9337 6121180 2024-03-01 03:05:34.501 2024-03-01 03:05:34.501 1000 FEE 444344 736 6121181 2024-03-01 03:05:34.501 2024-03-01 03:05:34.501 9000 TIP 444344 6335 6121193 2024-03-01 03:06:52.042 2024-03-01 03:06:52.042 2700 FEE 444102 1433 6121194 2024-03-01 03:06:52.042 2024-03-01 03:06:52.042 24300 TIP 444102 21207 6121232 2024-03-01 03:15:46.906 2024-03-01 03:15:46.906 100 FEE 444506 21026 6121233 2024-03-01 03:15:46.906 2024-03-01 03:15:46.906 900 TIP 444506 7587 6121246 2024-03-01 03:22:08.639 2024-03-01 03:22:08.639 100 FEE 444519 21323 6121247 2024-03-01 03:22:08.639 2024-03-01 03:22:08.639 900 TIP 444519 17001 6121261 2024-03-01 03:29:41.957 2024-03-01 03:29:41.957 1000 FEE 444529 630 6121297 2024-03-01 03:40:04.87 2024-03-01 03:40:04.87 1000 FEE 444536 4459 6121300 2024-03-01 03:40:16.318 2024-03-01 03:40:16.318 2100 FEE 443091 21463 6121301 2024-03-01 03:40:16.318 2024-03-01 03:40:16.318 18900 TIP 443091 20430 6121306 2024-03-01 03:40:18.572 2024-03-01 03:40:18.572 100 FEE 444532 9346 6057746 2024-02-24 21:06:04.489 2024-02-24 21:06:04.489 1000 STREAM 141924 19961 6057751 2024-02-24 21:07:04.506 2024-02-24 21:07:04.506 1000 STREAM 141924 20970 6057757 2024-02-24 21:10:02.549 2024-02-24 21:10:02.549 1000 STREAM 141924 1307 6057767 2024-02-24 21:12:02.541 2024-02-24 21:12:02.541 1000 STREAM 141924 17237 6057792 2024-02-24 21:14:02.531 2024-02-24 21:14:02.531 1000 STREAM 141924 16052 6057827 2024-02-24 21:17:02.548 2024-02-24 21:17:02.548 1000 STREAM 141924 629 6120433 2024-02-29 23:32:02.424 2024-02-29 23:32:02.424 1000 STREAM 141924 739 6120466 2024-02-29 23:40:02.502 2024-02-29 23:40:02.502 1000 STREAM 141924 1733 6120467 2024-02-29 23:41:02.451 2024-02-29 23:41:02.451 1000 STREAM 141924 8544 6120469 2024-02-29 23:42:02.454 2024-02-29 23:42:02.454 1000 STREAM 141924 14906 6120472 2024-02-29 23:44:02.476 2024-02-29 23:44:02.476 1000 STREAM 141924 16594 6120476 2024-02-29 23:46:02.482 2024-02-29 23:46:02.482 1000 STREAM 141924 20087 6120479 2024-02-29 23:47:02.492 2024-02-29 23:47:02.492 1000 STREAM 141924 8498 6120481 2024-02-29 23:48:02.516 2024-02-29 23:48:02.516 1000 STREAM 141924 886 6120495 2024-02-29 23:50:02.54 2024-02-29 23:50:02.54 1000 STREAM 141924 12951 6120518 2024-02-29 23:54:02.547 2024-02-29 23:54:02.547 1000 STREAM 141924 16754 6120521 2024-02-29 23:55:02.561 2024-02-29 23:55:02.561 1000 STREAM 141924 11698 6120524 2024-02-29 23:56:02.558 2024-02-29 23:56:02.558 1000 STREAM 141924 17095 6120565 2024-03-01 00:05:02.736 2024-03-01 00:05:02.736 1000 STREAM 141924 2609 6120623 2024-03-01 00:17:02.88 2024-03-01 00:17:02.88 1000 STREAM 141924 19403 6120624 2024-03-01 00:18:02.878 2024-03-01 00:18:02.878 1000 STREAM 141924 20597 6120626 2024-03-01 00:19:02.888 2024-03-01 00:19:02.888 1000 STREAM 141924 19501 6120651 2024-03-01 00:20:02.917 2024-03-01 00:20:02.917 1000 STREAM 141924 20660 6120686 2024-03-01 00:28:02.928 2024-03-01 00:28:02.928 1000 STREAM 141924 10094 6120687 2024-03-01 00:29:02.915 2024-03-01 00:29:02.915 1000 STREAM 141924 10469 6120696 2024-03-01 00:30:02.911 2024-03-01 00:30:02.911 1000 STREAM 141924 11164 6120703 2024-03-01 00:32:02.912 2024-03-01 00:32:02.912 1000 STREAM 141924 17513 6120711 2024-03-01 00:35:02.965 2024-03-01 00:35:02.965 1000 STREAM 141924 16988 6057837 2024-02-24 21:18:04.691 2024-02-24 21:18:04.691 1000 STREAM 141924 20454 6057844 2024-02-24 21:21:04.738 2024-02-24 21:21:04.738 1000 STREAM 141924 19281 6057852 2024-02-24 21:25:04.747 2024-02-24 21:25:04.747 1000 STREAM 141924 6360 6057858 2024-02-24 21:29:04.78 2024-02-24 21:29:04.78 1000 STREAM 141924 19105 6057899 2024-02-24 21:35:04.84 2024-02-24 21:35:04.84 1000 STREAM 141924 1389 6057903 2024-02-24 21:36:04.851 2024-02-24 21:36:04.851 1000 STREAM 141924 4474 6057939 2024-02-24 21:37:04.87 2024-02-24 21:37:04.87 1000 STREAM 141924 21062 6057945 2024-02-24 21:38:04.877 2024-02-24 21:38:04.877 1000 STREAM 141924 15226 6057949 2024-02-24 21:40:04.917 2024-02-24 21:40:04.917 1000 STREAM 141924 18772 6057978 2024-02-24 21:41:04.906 2024-02-24 21:41:04.906 1000 STREAM 141924 5942 6057985 2024-02-24 21:44:04.937 2024-02-24 21:44:04.937 1000 STREAM 141924 19105 6120434 2024-02-29 23:33:05.259 2024-02-29 23:33:05.259 1000 STREAM 141924 16665 6120437 2024-02-29 23:34:05.237 2024-02-29 23:34:05.237 1000 STREAM 141924 16353 6120438 2024-02-29 23:35:05.268 2024-02-29 23:35:05.268 1000 STREAM 141924 16309 6120533 2024-02-29 23:57:05.402 2024-02-29 23:57:05.402 1000 STREAM 141924 18745 6120540 2024-02-29 23:58:03.396 2024-02-29 23:58:03.396 1000 STREAM 141924 4388 6120550 2024-02-29 23:59:03.403 2024-02-29 23:59:03.403 1000 STREAM 141924 18208 6120561 2024-03-01 00:01:03.408 2024-03-01 00:01:03.408 1000 STREAM 141924 20137 6120564 2024-03-01 00:04:03.415 2024-03-01 00:04:03.415 1000 STREAM 141924 17212 6120588 2024-03-01 00:09:03.453 2024-03-01 00:09:03.453 1000 STREAM 141924 2829 6120590 2024-03-01 00:10:03.508 2024-03-01 00:10:03.508 1000 STREAM 141924 2749 6120597 2024-03-01 00:13:03.49 2024-03-01 00:13:03.49 1000 STREAM 141924 14950 6120664 2024-03-01 00:22:03.598 2024-03-01 00:22:03.598 1000 STREAM 141924 20353 6120668 2024-03-01 00:23:03.599 2024-03-01 00:23:03.599 1000 STREAM 141924 18667 6120669 2024-03-01 00:24:03.622 2024-03-01 00:24:03.622 1000 STREAM 141924 21070 6120685 2024-03-01 00:27:03.63 2024-03-01 00:27:03.63 1000 STREAM 141924 11992 6120700 2024-03-01 00:31:03.657 2024-03-01 00:31:03.657 1000 STREAM 141924 18448 6120722 2024-03-01 00:40:03.799 2024-03-01 00:40:03.799 1000 STREAM 141924 2513 6120734 2024-03-01 00:43:01.821 2024-03-01 00:43:01.821 1000 STREAM 141924 21458 6057911 2024-02-24 21:36:17.076 2024-02-24 21:36:17.076 300 FEE 237616 21605 6057912 2024-02-24 21:36:17.076 2024-02-24 21:36:17.076 2700 TIP 237616 1628 6057925 2024-02-24 21:36:35.192 2024-02-24 21:36:35.192 2100 FEE 437539 16970 6057926 2024-02-24 21:36:35.192 2024-02-24 21:36:35.192 18900 TIP 437539 21600 6057944 2024-02-24 21:37:55.856 2024-02-24 21:37:55.856 1000 FEE 437706 9982 6057970 2024-02-24 21:40:44.283 2024-02-24 21:40:44.283 1000 FEE 437697 20802 6057971 2024-02-24 21:40:44.283 2024-02-24 21:40:44.283 9000 TIP 437697 18507 6057979 2024-02-24 21:41:39.302 2024-02-24 21:41:39.302 1000 FEE 437707 20852 6058034 2024-02-24 21:45:07.066 2024-02-24 21:45:07.066 1000 FEE 437710 19142 6058082 2024-02-24 21:50:41.399 2024-02-24 21:50:41.399 3300 FEE 437517 20636 6058083 2024-02-24 21:50:41.399 2024-02-24 21:50:41.399 29700 TIP 437517 20614 6058132 2024-02-24 21:54:26.653 2024-02-24 21:54:26.653 100 FEE 437682 2460 6058033 2024-02-24 21:45:04.946 2024-02-24 21:45:04.946 1000 STREAM 141924 685 6058054 2024-02-24 21:47:04.936 2024-02-24 21:47:04.936 1000 STREAM 141924 21159 6058063 2024-02-24 21:48:04.929 2024-02-24 21:48:04.929 1000 STREAM 141924 684 6058077 2024-02-24 21:50:04.94 2024-02-24 21:50:04.94 1000 STREAM 141924 19198 6058124 2024-02-24 21:53:04.973 2024-02-24 21:53:04.973 1000 STREAM 141924 13198 6058152 2024-02-24 21:55:04.997 2024-02-24 21:55:04.997 1000 STREAM 141924 9844 6058175 2024-02-24 21:57:05.035 2024-02-24 21:57:05.035 1000 STREAM 141924 16788 6058192 2024-02-24 21:59:05.049 2024-02-24 21:59:05.049 1000 STREAM 141924 19121 6058193 2024-02-24 22:00:05.06 2024-02-24 22:00:05.06 1000 STREAM 141924 21332 6058208 2024-02-24 22:03:05.078 2024-02-24 22:03:05.078 1000 STREAM 141924 13216 6058218 2024-02-24 22:05:05.095 2024-02-24 22:05:05.095 1000 STREAM 141924 1008 6058219 2024-02-24 22:06:05.101 2024-02-24 22:06:05.101 1000 STREAM 141924 20450 6058221 2024-02-24 22:08:05.115 2024-02-24 22:08:05.115 1000 STREAM 141924 20706 6058245 2024-02-24 22:14:05.153 2024-02-24 22:14:05.153 1000 STREAM 141924 739 6058250 2024-02-24 22:15:05.162 2024-02-24 22:15:05.162 1000 STREAM 141924 12708 6058256 2024-02-24 22:16:05.164 2024-02-24 22:16:05.164 1000 STREAM 141924 19553 6058277 2024-02-24 22:17:05.203 2024-02-24 22:17:05.203 1000 STREAM 141924 5171 6058291 2024-02-24 22:19:05.187 2024-02-24 22:19:05.187 1000 STREAM 141924 20812 6058303 2024-02-24 22:22:05.206 2024-02-24 22:22:05.206 1000 STREAM 141924 19284 6058304 2024-02-24 22:23:05.22 2024-02-24 22:23:05.22 1000 STREAM 141924 1319 6058305 2024-02-24 22:24:05.21 2024-02-24 22:24:05.21 1000 STREAM 141924 21291 6058310 2024-02-24 22:25:05.221 2024-02-24 22:25:05.221 1000 STREAM 141924 8080 6058313 2024-02-24 22:27:05.221 2024-02-24 22:27:05.221 1000 STREAM 141924 894 6058315 2024-02-24 22:28:05.226 2024-02-24 22:28:05.226 1000 STREAM 141924 19854 6058323 2024-02-24 22:31:05.256 2024-02-24 22:31:05.256 1000 STREAM 141924 20137 6058324 2024-02-24 22:32:05.271 2024-02-24 22:32:05.271 1000 STREAM 141924 11522 6058329 2024-02-24 22:33:05.272 2024-02-24 22:33:05.272 1000 STREAM 141924 825 6058330 2024-02-24 22:34:03.291 2024-02-24 22:34:03.291 1000 STREAM 141924 9169 6120449 2024-02-29 23:36:05.301 2024-02-29 23:36:05.301 1000 STREAM 141924 1488 6120452 2024-02-29 23:37:05.285 2024-02-29 23:37:05.285 1000 STREAM 141924 19668 6120457 2024-02-29 23:38:05.308 2024-02-29 23:38:05.308 1000 STREAM 141924 13599 6120462 2024-02-29 23:39:05.315 2024-02-29 23:39:05.315 1000 STREAM 141924 3709 6058043 2024-02-24 21:46:04.933 2024-02-24 21:46:04.933 1000 STREAM 141924 2042 6058064 2024-02-24 21:49:04.936 2024-02-24 21:49:04.936 1000 STREAM 141924 19465 6058092 2024-02-24 21:51:04.945 2024-02-24 21:51:04.945 1000 STREAM 141924 15409 6058110 2024-02-24 21:52:04.971 2024-02-24 21:52:04.971 1000 STREAM 141924 15594 6058125 2024-02-24 21:54:04.983 2024-02-24 21:54:04.983 1000 STREAM 141924 11515 6058186 2024-02-24 21:58:05.053 2024-02-24 21:58:05.053 1000 STREAM 141924 15536 6058198 2024-02-24 22:01:05.067 2024-02-24 22:01:05.067 1000 STREAM 141924 17568 6058202 2024-02-24 22:02:05.08 2024-02-24 22:02:05.08 1000 STREAM 141924 4776 6058209 2024-02-24 22:04:05.089 2024-02-24 22:04:05.089 1000 STREAM 141924 7583 6058230 2024-02-24 22:10:05.149 2024-02-24 22:10:05.149 1000 STREAM 141924 21292 6058231 2024-02-24 22:11:05.154 2024-02-24 22:11:05.154 1000 STREAM 141924 21079 6058232 2024-02-24 22:12:05.144 2024-02-24 22:12:05.144 1000 STREAM 141924 14663 6058239 2024-02-24 22:13:05.145 2024-02-24 22:13:05.145 1000 STREAM 141924 4118 6058288 2024-02-24 22:18:05.187 2024-02-24 22:18:05.187 1000 STREAM 141924 19524 6058293 2024-02-24 22:20:05.201 2024-02-24 22:20:05.201 1000 STREAM 141924 6537 6058297 2024-02-24 22:21:05.197 2024-02-24 22:21:05.197 1000 STREAM 141924 19572 6058311 2024-02-24 22:26:05.216 2024-02-24 22:26:05.216 1000 STREAM 141924 12368 6058318 2024-02-24 22:29:05.235 2024-02-24 22:29:05.235 1000 STREAM 141924 19502 6058319 2024-02-24 22:30:05.244 2024-02-24 22:30:05.244 1000 STREAM 141924 4173 6120453 2024-02-29 23:37:13.424 2024-02-29 23:37:13.424 2800 FEE 444408 21061 6120454 2024-02-29 23:37:13.424 2024-02-29 23:37:13.424 25200 TIP 444408 2232 6120463 2024-02-29 23:39:41.3 2024-02-29 23:39:41.3 1000 FEE 444417 2722 6120500 2024-02-29 23:52:13.524 2024-02-29 23:52:13.524 1000 FEE 444422 1145 6120503 2024-02-29 23:52:33.834 2024-02-29 23:52:33.834 3300 FEE 444260 14247 6120504 2024-02-29 23:52:33.834 2024-02-29 23:52:33.834 29700 TIP 444260 2347 6120509 2024-02-29 23:52:40.509 2024-02-29 23:52:40.509 3300 FEE 444367 21437 6120510 2024-02-29 23:52:40.509 2024-02-29 23:52:40.509 29700 TIP 444367 10469 6120517 2024-02-29 23:53:16.489 2024-02-29 23:53:16.489 1000 FEE 444424 1726 6120522 2024-02-29 23:55:04.905 2024-02-29 23:55:04.905 1000 FEE 444427 21104 6120523 2024-02-29 23:55:12.248 2024-02-29 23:55:12.248 100000 FEE 444428 15488 6120536 2024-02-29 23:57:30.963 2024-02-29 23:57:30.963 500 FEE 444382 20251 6120537 2024-02-29 23:57:30.963 2024-02-29 23:57:30.963 4500 TIP 444382 1483 6120541 2024-02-29 23:58:08.827 2024-02-29 23:58:08.827 500 FEE 444116 11298 6120542 2024-02-29 23:58:08.827 2024-02-29 23:58:08.827 4500 TIP 444116 11862 6120591 2024-03-01 00:10:53.503 2024-03-01 00:10:53.503 1000 FEE 444441 1577 6120615 2024-03-01 00:16:59.545 2024-03-01 00:16:59.545 2100 FEE 443585 688 6120616 2024-03-01 00:16:59.545 2024-03-01 00:16:59.545 18900 TIP 443585 5444 6120617 2024-03-01 00:17:00.096 2024-03-01 00:17:00.096 2100 FEE 443585 18040 6120618 2024-03-01 00:17:00.096 2024-03-01 00:17:00.096 18900 TIP 443585 12160 6120629 2024-03-01 00:19:18.592 2024-03-01 00:19:18.592 300 FEE 443934 20168 6120630 2024-03-01 00:19:18.592 2024-03-01 00:19:18.592 2700 TIP 443934 13517 6120631 2024-03-01 00:19:18.819 2024-03-01 00:19:18.819 300 FEE 443934 8535 6120632 2024-03-01 00:19:18.819 2024-03-01 00:19:18.819 2700 TIP 443934 1726 6120649 2024-03-01 00:19:20.876 2024-03-01 00:19:20.876 300 FEE 443934 1454 6120650 2024-03-01 00:19:20.876 2024-03-01 00:19:20.876 2700 TIP 443934 8926 6120659 2024-03-01 00:20:41.018 2024-03-01 00:20:41.018 1000 FEE 444447 17976 6120667 2024-03-01 00:22:54.935 2024-03-01 00:22:54.935 100000 FEE 444449 2596 6120699 2024-03-01 00:30:52.726 2024-03-01 00:30:52.726 1000 FEE 444453 14357 6120719 2024-03-01 00:38:42.066 2024-03-01 00:38:42.066 2100 FEE 444434 1632 6120720 2024-03-01 00:38:42.066 2024-03-01 00:38:42.066 18900 TIP 444434 16879 6120732 2024-03-01 00:42:41.912 2024-03-01 00:42:41.912 11700 FEE 444414 1310 6120733 2024-03-01 00:42:41.912 2024-03-01 00:42:41.912 105300 TIP 444414 20642 6120756 2024-03-01 00:51:54.917 2024-03-01 00:51:54.917 1000 POLL 444449 19660 6120761 2024-03-01 00:53:45.297 2024-03-01 00:53:45.297 1000 FEE 444463 19583 6120777 2024-03-01 00:57:44.838 2024-03-01 00:57:44.838 100000 FEE 444465 1493 6120778 2024-03-01 00:57:53.438 2024-03-01 00:57:53.438 10000 FEE 444168 18449 6120779 2024-03-01 00:57:53.438 2024-03-01 00:57:53.438 90000 TIP 444168 19662 6120805 2024-03-01 01:04:16.802 2024-03-01 01:04:16.802 10000 FEE 442926 6578 6120806 2024-03-01 01:04:16.802 2024-03-01 01:04:16.802 90000 TIP 442926 5449 6120807 2024-03-01 01:05:00.506 2024-03-01 01:05:00.506 1000 DONT_LIKE_THIS 443887 15732 6120809 2024-03-01 01:05:24.894 2024-03-01 01:05:24.894 2600 FEE 444456 985 6120810 2024-03-01 01:05:24.894 2024-03-01 01:05:24.894 23400 TIP 444456 21523 6120815 2024-03-01 01:08:00.76 2024-03-01 01:08:00.76 10000 FEE 444462 5359 6120816 2024-03-01 01:08:00.76 2024-03-01 01:08:00.76 90000 TIP 444462 8726 6120829 2024-03-01 01:10:16.79 2024-03-01 01:10:16.79 1100 FEE 444470 21493 6120830 2024-03-01 01:10:16.79 2024-03-01 01:10:16.79 9900 TIP 444470 20596 6120831 2024-03-01 01:10:36.07 2024-03-01 01:10:36.07 2100 FEE 443561 18717 6120832 2024-03-01 01:10:36.07 2024-03-01 01:10:36.07 18900 TIP 443561 20143 6120840 2024-03-01 01:11:20.033 2024-03-01 01:11:20.033 1000 FEE 444194 12744 6120841 2024-03-01 01:11:20.033 2024-03-01 01:11:20.033 9000 TIP 444194 17514 6120892 2024-03-01 01:23:28.694 2024-03-01 01:23:28.694 1700 FEE 444434 19553 6120893 2024-03-01 01:23:28.694 2024-03-01 01:23:28.694 15300 TIP 444434 20776 6058133 2024-02-24 21:54:26.653 2024-02-24 21:54:26.653 900 TIP 437682 1454 6058188 2024-02-24 21:58:47.108 2024-02-24 21:58:47.108 2000 FEE 437687 6260 6058189 2024-02-24 21:58:47.108 2024-02-24 21:58:47.108 18000 TIP 437687 7668 6058196 2024-02-24 22:00:41.95 2024-02-24 22:00:41.95 1000 FEE 437612 937 6058197 2024-02-24 22:00:41.95 2024-02-24 22:00:41.95 9000 TIP 437612 14213 6058199 2024-02-24 22:01:27.502 2024-02-24 22:01:27.502 100000 FEE 437720 12024 6058205 2024-02-24 22:02:36.586 2024-02-24 22:02:36.586 21100 FEE 437720 634 6058206 2024-02-24 22:02:36.586 2024-02-24 22:02:36.586 189900 TIP 437720 21242 6058253 2024-02-24 22:15:07.273 2024-02-24 22:15:07.273 1000 FEE 437718 9166 6058254 2024-02-24 22:15:07.273 2024-02-24 22:15:07.273 9000 TIP 437718 20409 6058257 2024-02-24 22:16:24.596 2024-02-24 22:16:24.596 2100 FEE 437454 9275 6058258 2024-02-24 22:16:24.596 2024-02-24 22:16:24.596 18900 TIP 437454 1720 6058271 2024-02-24 22:17:01.865 2024-02-24 22:17:01.865 2100 FEE 437654 2577 6058272 2024-02-24 22:17:01.865 2024-02-24 22:17:01.865 18900 TIP 437654 20993 6058289 2024-02-24 22:18:47.064 2024-02-24 22:18:47.064 2200 FEE 437258 19463 6058290 2024-02-24 22:18:47.064 2024-02-24 22:18:47.064 19800 TIP 437258 17147 6058312 2024-02-24 22:27:02.733 2024-02-24 22:27:02.733 1000 FEE 437728 13587 6058322 2024-02-24 22:30:25.899 2024-02-24 22:30:25.899 1000 FEE 437730 9844 6058352 2024-02-24 22:41:24.327 2024-02-24 22:41:24.327 500 FEE 437720 7916 6058353 2024-02-24 22:41:24.327 2024-02-24 22:41:24.327 4500 TIP 437720 20182 6058365 2024-02-24 22:43:41.326 2024-02-24 22:43:41.326 2100 FEE 437723 9921 6058366 2024-02-24 22:43:41.326 2024-02-24 22:43:41.326 18900 TIP 437723 5590 6058368 2024-02-24 22:43:52.87 2024-02-24 22:43:52.87 100000 FEE 437732 16653 6058369 2024-02-24 22:43:52.87 2024-02-24 22:43:52.87 900000 TIP 437732 20163 6058398 2024-02-24 22:48:02.438 2024-02-24 22:48:02.438 2100 FEE 437720 20616 6058399 2024-02-24 22:48:02.438 2024-02-24 22:48:02.438 18900 TIP 437720 10693 6058401 2024-02-24 22:48:09.009 2024-02-24 22:48:09.009 2100 FEE 437418 21352 6058402 2024-02-24 22:48:09.009 2024-02-24 22:48:09.009 18900 TIP 437418 19511 6058412 2024-02-24 22:48:37.956 2024-02-24 22:48:37.956 2100 FEE 437472 21145 6058413 2024-02-24 22:48:37.956 2024-02-24 22:48:37.956 18900 TIP 437472 13767 6058427 2024-02-24 22:51:17.809 2024-02-24 22:51:17.809 1000 FEE 437740 2652 6058428 2024-02-24 22:51:17.809 2024-02-24 22:51:17.809 9000 TIP 437740 17050 6058441 2024-02-24 22:52:18.27 2024-02-24 22:52:18.27 1000 FEE 437739 18675 6058442 2024-02-24 22:52:18.27 2024-02-24 22:52:18.27 9000 TIP 437739 19995 6058465 2024-02-24 22:53:57.263 2024-02-24 22:53:57.263 2100 FEE 437667 20257 6058466 2024-02-24 22:53:57.263 2024-02-24 22:53:57.263 18900 TIP 437667 8535 6058493 2024-02-24 22:56:56.586 2024-02-24 22:56:56.586 4000 FEE 437703 21116 6058494 2024-02-24 22:56:56.586 2024-02-24 22:56:56.586 36000 TIP 437703 12188 6058502 2024-02-24 22:57:41.545 2024-02-24 22:57:41.545 1000 FEE 437750 3656 6058537 2024-02-24 23:04:51.222 2024-02-24 23:04:51.222 100000 FEE 437757 699 6058539 2024-02-24 23:05:17.243 2024-02-24 23:05:17.243 2100 FEE 437748 16309 6058540 2024-02-24 23:05:17.243 2024-02-24 23:05:17.243 18900 TIP 437748 16998 6058569 2024-02-24 23:11:59.074 2024-02-24 23:11:59.074 6900 FEE 437752 11866 6058570 2024-02-24 23:11:59.074 2024-02-24 23:11:59.074 62100 TIP 437752 11038 6058577 2024-02-24 23:12:00.786 2024-02-24 23:12:00.786 6900 FEE 437752 705 6058578 2024-02-24 23:12:00.786 2024-02-24 23:12:00.786 62100 TIP 437752 20180 6058618 2024-02-24 23:25:10.816 2024-02-24 23:25:10.816 1000 FEE 437761 667 6058645 2024-02-24 23:29:47.098 2024-02-24 23:29:47.098 1000 FEE 437502 2543 6058646 2024-02-24 23:29:47.098 2024-02-24 23:29:47.098 9000 TIP 437502 17984 6058647 2024-02-24 23:29:57.083 2024-02-24 23:29:57.083 4200 FEE 437744 5752 6058648 2024-02-24 23:29:57.083 2024-02-24 23:29:57.083 37800 TIP 437744 3342 6058664 2024-02-24 23:35:02.092 2024-02-24 23:35:02.092 400 FEE 437705 899 6058665 2024-02-24 23:35:02.092 2024-02-24 23:35:02.092 3600 TIP 437705 18310 6058673 2024-02-24 23:35:11.441 2024-02-24 23:35:11.441 400 FEE 436948 8287 6058674 2024-02-24 23:35:11.441 2024-02-24 23:35:11.441 3600 TIP 436948 18068 6058683 2024-02-24 23:37:04.657 2024-02-24 23:37:04.657 6900 FEE 437763 21612 6058684 2024-02-24 23:37:04.657 2024-02-24 23:37:04.657 62100 TIP 437763 20998 6058723 2024-02-24 23:48:44.942 2024-02-24 23:48:44.942 1000 POLL 437472 4115 6058745 2024-02-24 23:53:39.24 2024-02-24 23:53:39.24 33700 FEE 437295 1465 6058746 2024-02-24 23:53:39.24 2024-02-24 23:53:39.24 303300 TIP 437295 1173 6058766 2024-02-24 23:59:24.971 2024-02-24 23:59:24.971 9000 FEE 437723 19403 6058767 2024-02-24 23:59:24.971 2024-02-24 23:59:24.971 81000 TIP 437723 1038 6058772 2024-02-25 00:01:35.17 2024-02-25 00:01:35.17 7700 FEE 437771 20080 6058773 2024-02-25 00:01:35.17 2024-02-25 00:01:35.17 69300 TIP 437771 20642 6058797 2024-02-25 00:06:10.528 2024-02-25 00:06:10.528 1000 FEE 437778 13527 6058819 2024-02-25 00:10:16.978 2024-02-25 00:10:16.978 1000 FEE 437673 2285 6058820 2024-02-25 00:10:16.978 2024-02-25 00:10:16.978 9000 TIP 437673 10283 6058841 2024-02-25 00:13:04.265 2024-02-25 00:13:04.265 1000 FEE 430253 8998 6058842 2024-02-25 00:13:04.265 2024-02-25 00:13:04.265 9000 TIP 430253 1605 6058845 2024-02-25 00:13:14.164 2024-02-25 00:13:14.164 1000 FEE 430148 1394 6058846 2024-02-25 00:13:14.164 2024-02-25 00:13:14.164 9000 TIP 430148 18601 6058865 2024-02-25 00:20:19.643 2024-02-25 00:20:19.643 10000 FEE 437744 5359 6058866 2024-02-25 00:20:19.643 2024-02-25 00:20:19.643 90000 TIP 437744 16270 6058872 2024-02-25 00:21:17.227 2024-02-25 00:21:17.227 10000 FEE 437774 21398 6058873 2024-02-25 00:21:17.227 2024-02-25 00:21:17.227 90000 TIP 437774 18663 6058874 2024-02-25 00:21:34.833 2024-02-25 00:21:34.833 1000 FEE 437682 19909 6058875 2024-02-25 00:21:34.833 2024-02-25 00:21:34.833 9000 TIP 437682 17109 6058882 2024-02-25 00:21:35.653 2024-02-25 00:21:35.653 1000 FEE 437682 4259 6058883 2024-02-25 00:21:35.653 2024-02-25 00:21:35.653 9000 TIP 437682 876 6058905 2024-02-25 00:22:31.476 2024-02-25 00:22:31.476 1000 FEE 437787 20470 6058917 2024-02-25 00:24:33.624 2024-02-25 00:24:33.624 6900 FEE 437437 9982 6058918 2024-02-25 00:24:33.624 2024-02-25 00:24:33.624 62100 TIP 437437 21145 6058926 2024-02-25 00:27:03.126 2024-02-25 00:27:03.126 1000 FEE 437793 3686 6058955 2024-02-25 00:34:00.651 2024-02-25 00:34:00.651 300 FEE 437752 5487 6058956 2024-02-25 00:34:00.651 2024-02-25 00:34:00.651 2700 TIP 437752 20669 6058959 2024-02-25 00:34:01.112 2024-02-25 00:34:01.112 300 FEE 437752 20464 6058960 2024-02-25 00:34:01.112 2024-02-25 00:34:01.112 2700 TIP 437752 664 6058980 2024-02-25 00:34:02.824 2024-02-25 00:34:02.824 300 FEE 437752 21207 6058981 2024-02-25 00:34:02.824 2024-02-25 00:34:02.824 2700 TIP 437752 8095 6059000 2024-02-25 00:34:54.644 2024-02-25 00:34:54.644 300 FEE 437723 18941 6059001 2024-02-25 00:34:54.644 2024-02-25 00:34:54.644 2700 TIP 437723 16809 6059033 2024-02-25 00:40:05.544 2024-02-25 00:40:05.544 1000 FEE 437801 688 6059049 2024-02-25 00:42:51.928 2024-02-25 00:42:51.928 1000 FEE 437803 20596 6059052 2024-02-25 00:42:59.61 2024-02-25 00:42:59.61 2600 FEE 436752 15491 6059053 2024-02-25 00:42:59.61 2024-02-25 00:42:59.61 23400 TIP 436752 21344 6059056 2024-02-25 00:43:28.478 2024-02-25 00:43:28.478 10000 FEE 437783 11522 6059057 2024-02-25 00:43:28.478 2024-02-25 00:43:28.478 90000 TIP 437783 18517 6059074 2024-02-25 00:47:02.65 2024-02-25 00:47:02.65 2100 FEE 437755 20817 6059075 2024-02-25 00:47:02.65 2024-02-25 00:47:02.65 18900 TIP 437755 17707 6059097 2024-02-25 00:51:03.874 2024-02-25 00:51:03.874 0 FEE 437810 6136 6059098 2024-02-25 00:51:05.879 2024-02-25 00:51:05.879 1000 FEE 437811 14552 6059103 2024-02-25 00:51:25.443 2024-02-25 00:51:25.443 0 FEE 437810 11798 6059121 2024-02-25 00:56:05.455 2024-02-25 00:56:05.455 0 FEE 437812 1718 6059133 2024-02-25 00:56:36.922 2024-02-25 00:56:36.922 100 FEE 437502 17106 6059134 2024-02-25 00:56:36.922 2024-02-25 00:56:36.922 900 TIP 437502 14910 6059135 2024-02-25 00:56:37.134 2024-02-25 00:56:37.134 100 FEE 437502 17817 6058142 2024-02-24 21:54:33.648 2024-02-24 21:54:33.648 9000 FEE 437684 18359 6058143 2024-02-24 21:54:33.648 2024-02-24 21:54:33.648 81000 TIP 437684 1733 6058150 2024-02-24 21:55:02.961 2024-02-24 21:55:02.961 2100 FEE 436683 4167 6058151 2024-02-24 21:55:02.961 2024-02-24 21:55:02.961 18900 TIP 436683 2774 6058170 2024-02-24 21:56:19.25 2024-02-24 21:56:19.25 1000 FEE 437718 8472 6058176 2024-02-24 21:57:38.099 2024-02-24 21:57:38.099 100 FEE 437716 4225 6058177 2024-02-24 21:57:38.099 2024-02-24 21:57:38.099 900 TIP 437716 16769 6058180 2024-02-24 21:57:39.843 2024-02-24 21:57:39.843 100 FEE 437714 17316 6058181 2024-02-24 21:57:39.843 2024-02-24 21:57:39.843 900 TIP 437714 17331 6058184 2024-02-24 21:57:47.571 2024-02-24 21:57:47.571 9000 FEE 437714 667 6058185 2024-02-24 21:57:47.571 2024-02-24 21:57:47.571 81000 TIP 437714 19902 6058212 2024-02-24 22:04:27.383 2024-02-24 22:04:27.383 2100 FEE 437715 5057 6058213 2024-02-24 22:04:27.383 2024-02-24 22:04:27.383 18900 TIP 437715 17064 6058255 2024-02-24 22:15:23.209 2024-02-24 22:15:23.209 1000 FEE 437724 7979 6058269 2024-02-24 22:16:43.948 2024-02-24 22:16:43.948 2100 FEE 437720 20647 6058270 2024-02-24 22:16:43.948 2024-02-24 22:16:43.948 18900 TIP 437720 17103 6058278 2024-02-24 22:17:06.448 2024-02-24 22:17:06.448 4000 FEE 437619 17455 6058279 2024-02-24 22:17:06.448 2024-02-24 22:17:06.448 36000 TIP 437619 708 6058280 2024-02-24 22:17:07.297 2024-02-24 22:17:07.297 4000 FEE 437710 18409 6058281 2024-02-24 22:17:07.297 2024-02-24 22:17:07.297 36000 TIP 437710 20581 6058284 2024-02-24 22:17:52.157 2024-02-24 22:17:52.157 4000 FEE 437620 1741 6058285 2024-02-24 22:17:52.157 2024-02-24 22:17:52.157 36000 TIP 437620 21172 6058294 2024-02-24 22:20:15.716 2024-02-24 22:20:15.716 1000 FEE 437726 20614 6058295 2024-02-24 22:20:20.209 2024-02-24 22:20:20.209 4000 FEE 437662 15858 6058296 2024-02-24 22:20:20.209 2024-02-24 22:20:20.209 36000 TIP 437662 18476 6058300 2024-02-24 22:21:09.454 2024-02-24 22:21:09.454 1000 FEE 437726 6137 6058301 2024-02-24 22:21:09.454 2024-02-24 22:21:09.454 9000 TIP 437726 19785 6058306 2024-02-24 22:24:38.173 2024-02-24 22:24:38.173 2100 FEE 437380 19267 6058307 2024-02-24 22:24:38.173 2024-02-24 22:24:38.173 18900 TIP 437380 13798 6058338 2024-02-24 22:38:23.957 2024-02-24 22:38:23.957 3200 FEE 437708 15100 6058339 2024-02-24 22:38:23.957 2024-02-24 22:38:23.957 28800 TIP 437708 18608 6058356 2024-02-24 22:41:43.707 2024-02-24 22:41:43.707 300 FEE 435118 16848 6058357 2024-02-24 22:41:43.707 2024-02-24 22:41:43.707 2700 TIP 435118 19398 6058361 2024-02-24 22:42:20.345 2024-02-24 22:42:20.345 2100 FEE 437662 9337 6058362 2024-02-24 22:42:20.345 2024-02-24 22:42:20.345 18900 TIP 437662 20613 6058373 2024-02-24 22:44:09.776 2024-02-24 22:44:09.776 1000 FEE 437734 16289 6058374 2024-02-24 22:44:09.776 2024-02-24 22:44:09.776 9000 TIP 437734 6777 6058382 2024-02-24 22:45:14.411 2024-02-24 22:45:14.411 1000 FEE 437737 17800 6058386 2024-02-24 22:47:36.993 2024-02-24 22:47:36.993 2100 FEE 437653 1745 6058387 2024-02-24 22:47:36.993 2024-02-24 22:47:36.993 18900 TIP 437653 4633 6058395 2024-02-24 22:47:53.573 2024-02-24 22:47:53.573 2100 FEE 437611 21612 6058396 2024-02-24 22:47:53.573 2024-02-24 22:47:53.573 18900 TIP 437611 8287 6058397 2024-02-24 22:47:59.803 2024-02-24 22:47:59.803 1000 FEE 437740 20117 6058443 2024-02-24 22:52:18.62 2024-02-24 22:52:18.62 1000 FEE 437739 3360 6058444 2024-02-24 22:52:18.62 2024-02-24 22:52:18.62 9000 TIP 437739 18772 6058459 2024-02-24 22:53:48.007 2024-02-24 22:53:48.007 1000 FEE 437741 12976 6058460 2024-02-24 22:53:48.007 2024-02-24 22:53:48.007 9000 TIP 437741 19193 6058163 2024-02-24 21:55:31.358 2024-02-24 21:55:31.358 900 FEE 437654 674 6058164 2024-02-24 21:55:31.358 2024-02-24 21:55:31.358 8100 TIP 437654 16594 6058168 2024-02-24 21:56:16.956 2024-02-24 21:56:16.956 2100 FEE 435847 10611 6058169 2024-02-24 21:56:16.956 2024-02-24 21:56:16.956 18900 TIP 435847 15526 6058207 2024-02-24 22:02:57.807 2024-02-24 22:02:57.807 69000 FEE 437721 2224 6058216 2024-02-24 22:04:36.399 2024-02-24 22:04:36.399 2100 FEE 437714 5444 6058217 2024-02-24 22:04:36.399 2024-02-24 22:04:36.399 18900 TIP 437714 5359 6058246 2024-02-24 22:14:14.529 2024-02-24 22:14:14.529 7700 FEE 437712 18423 6058247 2024-02-24 22:14:14.529 2024-02-24 22:14:14.529 69300 TIP 437712 19533 6058282 2024-02-24 22:17:08.013 2024-02-24 22:17:08.013 4000 FEE 437712 20663 6058283 2024-02-24 22:17:08.013 2024-02-24 22:17:08.013 36000 TIP 437712 631 6058325 2024-02-24 22:33:01.27 2024-02-24 22:33:01.27 4200 FEE 437454 18311 6058326 2024-02-24 22:33:01.27 2024-02-24 22:33:01.27 37800 TIP 437454 1602 6058346 2024-02-24 22:40:28.998 2024-02-24 22:40:28.998 2100 FEE 437723 826 6058347 2024-02-24 22:40:28.998 2024-02-24 22:40:28.998 18900 TIP 437723 3409 6058350 2024-02-24 22:41:16.357 2024-02-24 22:41:16.357 300 FEE 437402 4989 6058351 2024-02-24 22:41:16.357 2024-02-24 22:41:16.357 2700 TIP 437402 20137 6058367 2024-02-24 22:43:42.061 2024-02-24 22:43:42.061 10000 FEE 437736 20059 6058379 2024-02-24 22:44:11.098 2024-02-24 22:44:11.098 1000 FEE 437734 9354 6058380 2024-02-24 22:44:11.098 2024-02-24 22:44:11.098 9000 TIP 437734 21413 6058409 2024-02-24 22:48:32.491 2024-02-24 22:48:32.491 1000 POLL 437472 3504 6058417 2024-02-24 22:49:53.618 2024-02-24 22:49:53.618 1000 FEE 437743 9843 6058431 2024-02-24 22:51:20.368 2024-02-24 22:51:20.368 1000 FEE 437740 9336 6058432 2024-02-24 22:51:20.368 2024-02-24 22:51:20.368 9000 TIP 437740 20577 6058452 2024-02-24 22:53:42.959 2024-02-24 22:53:42.959 1000 FEE 437748 766 6058453 2024-02-24 22:53:45.349 2024-02-24 22:53:45.349 2100 FEE 437670 21405 6058454 2024-02-24 22:53:45.349 2024-02-24 22:53:45.349 18900 TIP 437670 827 6058467 2024-02-24 22:53:59 2024-02-24 22:53:59 1100 FEE 437723 3656 6058468 2024-02-24 22:53:59 2024-02-24 22:53:59 9900 TIP 437723 5646 6058486 2024-02-24 22:55:18.729 2024-02-24 22:55:18.729 10000 FEE 435328 18511 6058487 2024-02-24 22:55:18.729 2024-02-24 22:55:18.729 90000 TIP 435328 1624 6058516 2024-02-24 23:01:59.955 2024-02-24 23:01:59.955 1000 FEE 437752 20562 6058541 2024-02-24 23:05:59.797 2024-02-24 23:05:59.797 2100 FEE 437732 4292 6058542 2024-02-24 23:05:59.797 2024-02-24 23:05:59.797 18900 TIP 437732 12334 6058549 2024-02-24 23:09:48.85 2024-02-24 23:09:48.85 3200 FEE 437754 15728 6058550 2024-02-24 23:09:48.85 2024-02-24 23:09:48.85 28800 TIP 437754 7125 6058568 2024-02-24 23:11:52.5 2024-02-24 23:11:52.5 1000 FEE 437759 1135 6058584 2024-02-24 23:12:57.713 2024-02-24 23:12:57.713 2100 FEE 437526 21562 6058585 2024-02-24 23:12:57.713 2024-02-24 23:12:57.713 18900 TIP 437526 18076 6058598 2024-02-24 23:21:24.037 2024-02-24 23:21:24.037 3300 FEE 437672 18051 6058599 2024-02-24 23:21:24.037 2024-02-24 23:21:24.037 29700 TIP 437672 20993 6058605 2024-02-24 23:22:57.933 2024-02-24 23:22:57.933 2100 FEE 433085 6136 6058606 2024-02-24 23:22:57.933 2024-02-24 23:22:57.933 18900 TIP 433085 782 6058619 2024-02-24 23:25:57.522 2024-02-24 23:25:57.522 6900 FEE 437761 10586 6058620 2024-02-24 23:25:57.522 2024-02-24 23:25:57.522 62100 TIP 437761 3709 6058626 2024-02-24 23:26:28.511 2024-02-24 23:26:28.511 10000 FEE 437762 16387 6058630 2024-02-24 23:27:19.007 2024-02-24 23:27:19.007 3300 FEE 437738 21424 6058631 2024-02-24 23:27:19.007 2024-02-24 23:27:19.007 29700 TIP 437738 17166 6058633 2024-02-24 23:28:08.285 2024-02-24 23:28:08.285 100 FEE 437737 1433 6058634 2024-02-24 23:28:08.285 2024-02-24 23:28:08.285 900 TIP 437737 1803 6058679 2024-02-24 23:37:04.326 2024-02-24 23:37:04.326 6900 FEE 437763 20660 6058680 2024-02-24 23:37:04.326 2024-02-24 23:37:04.326 62100 TIP 437763 11395 6058752 2024-02-24 23:56:24.034 2024-02-24 23:56:24.034 0 FEE 437774 18402 6058789 2024-02-25 00:03:37.287 2024-02-25 00:03:37.287 1000 FEE 437777 18309 6058798 2024-02-25 00:06:17.516 2024-02-25 00:06:17.516 100000 FEE 437427 19863 6058799 2024-02-25 00:06:17.516 2024-02-25 00:06:17.516 900000 TIP 437427 19488 6058825 2024-02-25 00:10:21.497 2024-02-25 00:10:21.497 1000 FEE 437680 13042 6058826 2024-02-25 00:10:21.497 2024-02-25 00:10:21.497 9000 TIP 437680 1609 6058856 2024-02-25 00:16:51.244 2024-02-25 00:16:51.244 7700 FEE 437723 11750 6058857 2024-02-25 00:16:51.244 2024-02-25 00:16:51.244 69300 TIP 437723 13169 6058864 2024-02-25 00:20:13.71 2024-02-25 00:20:13.71 1000 FEE 437784 21222 6058868 2024-02-25 00:21:10.684 2024-02-25 00:21:10.684 1000 FEE 437785 1723 6058880 2024-02-25 00:21:35.428 2024-02-25 00:21:35.428 1000 FEE 437682 11091 6058881 2024-02-25 00:21:35.428 2024-02-25 00:21:35.428 9000 TIP 437682 780 6058902 2024-02-25 00:21:39.259 2024-02-25 00:21:39.259 1000 FEE 437682 15732 6058903 2024-02-25 00:21:39.259 2024-02-25 00:21:39.259 9000 TIP 437682 21458 6058916 2024-02-25 00:24:26.519 2024-02-25 00:24:26.519 1000 FEE 437790 15103 6058935 2024-02-25 00:29:34.145 2024-02-25 00:29:34.145 6900 FEE 437242 15697 6058936 2024-02-25 00:29:34.145 2024-02-25 00:29:34.145 62100 TIP 437242 20710 6058953 2024-02-25 00:34:00.442 2024-02-25 00:34:00.442 300 FEE 437752 6687 6058954 2024-02-25 00:34:00.442 2024-02-25 00:34:00.442 2700 TIP 437752 4048 6058977 2024-02-25 00:34:02.621 2024-02-25 00:34:02.621 300 FEE 437752 12139 6058978 2024-02-25 00:34:02.621 2024-02-25 00:34:02.621 2700 TIP 437752 700 6058988 2024-02-25 00:34:03.637 2024-02-25 00:34:03.637 300 FEE 437752 14271 6058989 2024-02-25 00:34:03.637 2024-02-25 00:34:03.637 2700 TIP 437752 19886 6059004 2024-02-25 00:34:55.245 2024-02-25 00:34:55.245 300 FEE 437723 16284 6059005 2024-02-25 00:34:55.245 2024-02-25 00:34:55.245 2700 TIP 437723 19638 6059022 2024-02-25 00:34:57.587 2024-02-25 00:34:57.587 300 FEE 437723 656 6059023 2024-02-25 00:34:57.587 2024-02-25 00:34:57.587 2700 TIP 437723 21391 6059036 2024-02-25 00:40:38.81 2024-02-25 00:40:38.81 1000 FEE 437723 1092 6059037 2024-02-25 00:40:38.81 2024-02-25 00:40:38.81 9000 TIP 437723 1478 6059041 2024-02-25 00:41:33.069 2024-02-25 00:41:33.069 3200 FEE 437769 9335 6059042 2024-02-25 00:41:33.069 2024-02-25 00:41:33.069 28800 TIP 437769 19857 6059058 2024-02-25 00:43:35.568 2024-02-25 00:43:35.568 100000 FEE 437805 18829 6059102 2024-02-25 00:51:16.842 2024-02-25 00:51:16.842 0 FEE 437811 20143 6059104 2024-02-25 00:51:37.826 2024-02-25 00:51:37.826 0 FEE 437810 19570 6059108 2024-02-25 00:52:12.416 2024-02-25 00:52:12.416 0 FEE 437810 8796 6059109 2024-02-25 00:52:37.551 2024-02-25 00:52:37.551 0 FEE 437810 21361 6059118 2024-02-25 00:55:24.644 2024-02-25 00:55:24.644 100000 FEE 328872 9362 6059119 2024-02-25 00:55:24.644 2024-02-25 00:55:24.644 900000 TIP 328872 10096 6059131 2024-02-25 00:56:36.675 2024-02-25 00:56:36.675 100 FEE 437502 8726 6059132 2024-02-25 00:56:36.675 2024-02-25 00:56:36.675 900 TIP 437502 5497 6059151 2024-02-25 00:56:38.923 2024-02-25 00:56:38.923 100 FEE 437502 20106 6059152 2024-02-25 00:56:38.923 2024-02-25 00:56:38.923 900 TIP 437502 20157 6059157 2024-02-25 00:56:39.361 2024-02-25 00:56:39.361 100 FEE 437502 14037 6059158 2024-02-25 00:56:39.361 2024-02-25 00:56:39.361 900 TIP 437502 14909 6059165 2024-02-25 00:57:31.819 2024-02-25 00:57:31.819 210000 FEE 437817 18842 6059169 2024-02-25 00:58:07.226 2024-02-25 00:58:07.226 0 FEE 437816 20246 6059189 2024-02-25 00:59:26.617 2024-02-25 00:59:26.617 6900 FEE 437817 9351 6058165 2024-02-24 21:56:04.505 2024-02-24 21:56:04.505 9000 FEE 437654 895 6058166 2024-02-24 21:56:04.505 2024-02-24 21:56:04.505 81000 TIP 437654 16954 6058235 2024-02-24 22:12:27.535 2024-02-24 22:12:27.535 2100 FEE 437502 9496 6058236 2024-02-24 22:12:27.535 2024-02-24 22:12:27.535 18900 TIP 437502 2195 6058237 2024-02-24 22:12:34.159 2024-02-24 22:12:34.159 2100 FEE 437700 1705 6058238 2024-02-24 22:12:34.159 2024-02-24 22:12:34.159 18900 TIP 437700 15282 6058248 2024-02-24 22:14:37.92 2024-02-24 22:14:37.92 500 FEE 437620 4692 6058249 2024-02-24 22:14:37.92 2024-02-24 22:14:37.92 4500 TIP 437620 1471 6058251 2024-02-24 22:15:05.832 2024-02-24 22:15:05.832 1000 FEE 437718 18557 6058252 2024-02-24 22:15:05.832 2024-02-24 22:15:05.832 9000 TIP 437718 15938 6058273 2024-02-24 22:17:02.067 2024-02-24 22:17:02.067 4000 FEE 437707 6268 6058274 2024-02-24 22:17:02.067 2024-02-24 22:17:02.067 36000 TIP 437707 20642 6058286 2024-02-24 22:17:54.991 2024-02-24 22:17:54.991 4000 FEE 437270 20854 6058287 2024-02-24 22:17:54.991 2024-02-24 22:17:54.991 36000 TIP 437270 5828 6058302 2024-02-24 22:21:26.894 2024-02-24 22:21:26.894 10000 FEE 437727 18076 6058349 2024-02-24 22:41:11.488 2024-02-24 22:41:11.488 1000 FEE 437734 16948 6058388 2024-02-24 22:47:38.162 2024-02-24 22:47:38.162 300 FEE 437735 6383 6058389 2024-02-24 22:47:38.162 2024-02-24 22:47:38.162 2700 TIP 437735 19601 6058394 2024-02-24 22:47:51.044 2024-02-24 22:47:51.044 1000 FEE 437739 11621 6058451 2024-02-24 22:53:41.017 2024-02-24 22:53:41.017 1000 FEE 437747 4459 6058455 2024-02-24 22:53:46.549 2024-02-24 22:53:46.549 1000 FEE 437741 20220 6058456 2024-02-24 22:53:46.549 2024-02-24 22:53:46.549 9000 TIP 437741 2460 6058479 2024-02-24 22:54:50.583 2024-02-24 22:54:50.583 4000 FEE 437687 9109 6058480 2024-02-24 22:54:50.583 2024-02-24 22:54:50.583 36000 TIP 437687 16267 6058484 2024-02-24 22:55:17.159 2024-02-24 22:55:17.159 2100 FEE 437583 6419 6058485 2024-02-24 22:55:17.159 2024-02-24 22:55:17.159 18900 TIP 437583 7659 6058490 2024-02-24 22:55:43.587 2024-02-24 22:55:43.587 2100 FEE 437686 21493 6058491 2024-02-24 22:55:43.587 2024-02-24 22:55:43.587 18900 TIP 437686 11275 6058517 2024-02-24 23:02:02.61 2024-02-24 23:02:02.61 2100 FEE 437568 7682 6058518 2024-02-24 23:02:02.61 2024-02-24 23:02:02.61 18900 TIP 437568 11609 6058526 2024-02-24 23:03:06.887 2024-02-24 23:03:06.887 5000 FEE 437533 18264 6058527 2024-02-24 23:03:06.887 2024-02-24 23:03:06.887 45000 TIP 437533 17513 6058535 2024-02-24 23:04:36.902 2024-02-24 23:04:36.902 0 FEE 437752 20825 6058546 2024-02-24 23:08:11.576 2024-02-24 23:08:11.576 2100 FEE 437736 811 6058547 2024-02-24 23:08:11.576 2024-02-24 23:08:11.576 18900 TIP 437736 13517 6058558 2024-02-24 23:10:08.415 2024-02-24 23:10:08.415 6900 FEE 437738 11158 6058559 2024-02-24 23:10:08.415 2024-02-24 23:10:08.415 62100 TIP 437738 20904 6058560 2024-02-24 23:10:09.321 2024-02-24 23:10:09.321 6900 FEE 437738 1064 6058561 2024-02-24 23:10:09.321 2024-02-24 23:10:09.321 62100 TIP 437738 1272 6058573 2024-02-24 23:11:59.44 2024-02-24 23:11:59.44 6900 FEE 437752 10283 6058574 2024-02-24 23:11:59.44 2024-02-24 23:11:59.44 62100 TIP 437752 2459 6058601 2024-02-24 23:22:23.156 2024-02-24 23:22:23.156 4200 FEE 436560 20710 6058602 2024-02-24 23:22:23.156 2024-02-24 23:22:23.156 37800 TIP 436560 18735 6058608 2024-02-24 23:23:12.895 2024-02-24 23:23:12.895 300 FEE 437758 899 6058609 2024-02-24 23:23:12.895 2024-02-24 23:23:12.895 2700 TIP 437758 13921 6058635 2024-02-24 23:28:08.471 2024-02-24 23:28:08.471 900 FEE 437737 1000 6058636 2024-02-24 23:28:08.471 2024-02-24 23:28:08.471 8100 TIP 437737 21387 6058637 2024-02-24 23:28:09.072 2024-02-24 23:28:09.072 9000 FEE 437737 3439 6058638 2024-02-24 23:28:09.072 2024-02-24 23:28:09.072 81000 TIP 437737 21416 6058643 2024-02-24 23:29:10.422 2024-02-24 23:29:10.422 10000 FEE 434317 20555 6058644 2024-02-24 23:29:10.422 2024-02-24 23:29:10.422 90000 TIP 434317 6573 6058651 2024-02-24 23:30:35.448 2024-02-24 23:30:35.448 3300 FEE 437602 633 6058652 2024-02-24 23:30:35.448 2024-02-24 23:30:35.448 29700 TIP 437602 706 6058653 2024-02-24 23:30:35.934 2024-02-24 23:30:35.934 2100 FEE 437752 17741 6058654 2024-02-24 23:30:35.934 2024-02-24 23:30:35.934 18900 TIP 437752 2460 6058758 2024-02-24 23:59:06.923 2024-02-24 23:59:06.923 900 FEE 437775 19848 6058759 2024-02-24 23:59:06.923 2024-02-24 23:59:06.923 8100 TIP 437775 20858 6058806 2024-02-25 00:06:42.116 2024-02-25 00:06:42.116 26800 FEE 436816 6268 6058807 2024-02-25 00:06:42.116 2024-02-25 00:06:42.116 241200 TIP 436816 9347 6058815 2024-02-25 00:09:29.569 2024-02-25 00:09:29.569 1000 FEE 437779 18220 6058830 2024-02-25 00:10:56.668 2024-02-25 00:10:56.668 100 FEE 437781 21547 6058831 2024-02-25 00:10:56.668 2024-02-25 00:10:56.668 900 TIP 437781 13547 6058843 2024-02-25 00:13:07.236 2024-02-25 00:13:07.236 1000 FEE 429731 651 6058844 2024-02-25 00:13:07.236 2024-02-25 00:13:07.236 9000 TIP 429731 19005 6058847 2024-02-25 00:13:18.663 2024-02-25 00:13:18.663 1000 FEE 430034 18264 6058848 2024-02-25 00:13:18.663 2024-02-25 00:13:18.663 9000 TIP 430034 19615 6058858 2024-02-25 00:16:52.033 2024-02-25 00:16:52.033 7700 FEE 437723 7553 6058859 2024-02-25 00:16:52.033 2024-02-25 00:16:52.033 69300 TIP 437723 736 6058886 2024-02-25 00:21:36.518 2024-02-25 00:21:36.518 1000 FEE 437682 19843 6058887 2024-02-25 00:21:36.518 2024-02-25 00:21:36.518 9000 TIP 437682 2224 6058896 2024-02-25 00:21:37.894 2024-02-25 00:21:37.894 1000 FEE 437682 4059 6058897 2024-02-25 00:21:37.894 2024-02-25 00:21:37.894 9000 TIP 437682 16149 6058906 2024-02-25 00:22:32.742 2024-02-25 00:22:32.742 10000 FEE 437767 616 6058907 2024-02-25 00:22:32.742 2024-02-25 00:22:32.742 90000 TIP 437767 17147 6058949 2024-02-25 00:32:04.702 2024-02-25 00:32:04.702 6900 FEE 437064 11458 6058950 2024-02-25 00:32:04.702 2024-02-25 00:32:04.702 62100 TIP 437064 16970 6058952 2024-02-25 00:33:05.883 2024-02-25 00:33:05.883 1000 FEE 437799 11314 6058982 2024-02-25 00:34:03.032 2024-02-25 00:34:03.032 300 FEE 437752 2529 6058983 2024-02-25 00:34:03.032 2024-02-25 00:34:03.032 2700 TIP 437752 14370 6058984 2024-02-25 00:34:03.261 2024-02-25 00:34:03.261 300 FEE 437752 20272 6058985 2024-02-25 00:34:03.261 2024-02-25 00:34:03.261 2700 TIP 437752 19038 6058167 2024-02-24 21:56:05.066 2024-02-24 21:56:05.066 1000 STREAM 141924 21057 6120471 2024-02-29 23:43:02.465 2024-02-29 23:43:02.465 1000 STREAM 141924 11430 6120473 2024-02-29 23:45:02.48 2024-02-29 23:45:02.48 1000 STREAM 141924 21455 6120482 2024-02-29 23:49:02.515 2024-02-29 23:49:02.515 1000 STREAM 141924 15196 6120497 2024-02-29 23:51:02.537 2024-02-29 23:51:02.537 1000 STREAM 141924 12102 6120499 2024-02-29 23:52:02.546 2024-02-29 23:52:02.546 1000 STREAM 141924 16406 6120558 2024-03-01 00:00:02.761 2024-03-01 00:00:02.761 1000 STREAM 141924 18468 6058220 2024-02-24 22:07:05.234 2024-02-24 22:07:05.234 1000 STREAM 141924 15488 6058224 2024-02-24 22:09:05.258 2024-02-24 22:09:05.258 1000 STREAM 141924 9655 6058331 2024-02-24 22:35:03.356 2024-02-24 22:35:03.356 1000 STREAM 141924 19690 6058335 2024-02-24 22:37:05.345 2024-02-24 22:37:05.345 1000 STREAM 141924 20301 6058342 2024-02-24 22:39:05.36 2024-02-24 22:39:05.36 1000 STREAM 141924 5171 6058348 2024-02-24 22:41:05.357 2024-02-24 22:41:05.357 1000 STREAM 141924 628 6058360 2024-02-24 22:42:05.362 2024-02-24 22:42:05.362 1000 STREAM 141924 782 6058363 2024-02-24 22:43:05.393 2024-02-24 22:43:05.393 1000 STREAM 141924 13622 6120516 2024-02-29 23:53:05.376 2024-02-29 23:53:05.376 1000 STREAM 141924 15049 6120562 2024-03-01 00:02:03.423 2024-03-01 00:02:03.423 1000 STREAM 141924 20156 6120563 2024-03-01 00:03:03.401 2024-03-01 00:03:03.401 1000 STREAM 141924 4538 6120566 2024-03-01 00:06:03.432 2024-03-01 00:06:03.432 1000 STREAM 141924 21254 6120567 2024-03-01 00:07:03.44 2024-03-01 00:07:03.44 1000 STREAM 141924 21329 6120578 2024-03-01 00:08:03.445 2024-03-01 00:08:03.445 1000 STREAM 141924 21218 6120592 2024-03-01 00:11:03.507 2024-03-01 00:11:03.507 1000 STREAM 141924 1468 6120595 2024-03-01 00:12:03.475 2024-03-01 00:12:03.475 1000 STREAM 141924 9351 6120603 2024-03-01 00:14:03.5 2024-03-01 00:14:03.5 1000 STREAM 141924 18817 6120604 2024-03-01 00:15:03.511 2024-03-01 00:15:03.511 1000 STREAM 141924 20377 6120611 2024-03-01 00:16:03.517 2024-03-01 00:16:03.517 1000 STREAM 141924 12606 6058261 2024-02-24 22:16:29.995 2024-02-24 22:16:29.995 2100 FEE 437662 20198 6058262 2024-02-24 22:16:29.995 2024-02-24 22:16:29.995 18900 TIP 437662 6041 6058292 2024-02-24 22:19:18.095 2024-02-24 22:19:18.095 1000 FEE 437725 20560 6058314 2024-02-24 22:27:19.096 2024-02-24 22:27:19.096 1000 FEE 437729 6555 6058316 2024-02-24 22:28:48.865 2024-02-24 22:28:48.865 7100 FEE 437629 11523 6058317 2024-02-24 22:28:48.865 2024-02-24 22:28:48.865 63900 TIP 437629 14472 6058320 2024-02-24 22:30:17.712 2024-02-24 22:30:17.712 2100 FEE 437687 14785 6058321 2024-02-24 22:30:17.712 2024-02-24 22:30:17.712 18900 TIP 437687 670 6058375 2024-02-24 22:44:10.342 2024-02-24 22:44:10.342 1000 FEE 437734 8506 6058376 2024-02-24 22:44:10.342 2024-02-24 22:44:10.342 9000 TIP 437734 17116 6058385 2024-02-24 22:47:17.618 2024-02-24 22:47:17.618 1000 FEE 437738 9276 6058416 2024-02-24 22:49:22.55 2024-02-24 22:49:22.55 10000 FEE 437742 2773 6058420 2024-02-24 22:50:24.633 2024-02-24 22:50:24.633 2100 FEE 437696 16424 6058421 2024-02-24 22:50:24.633 2024-02-24 22:50:24.633 18900 TIP 437696 21303 6058437 2024-02-24 22:52:17.603 2024-02-24 22:52:17.603 1000 FEE 437739 5160 6058438 2024-02-24 22:52:17.603 2024-02-24 22:52:17.603 9000 TIP 437739 7553 6058470 2024-02-24 22:54:23.271 2024-02-24 22:54:23.271 1000 FEE 437749 2075 6058533 2024-02-24 23:04:16.195 2024-02-24 23:04:16.195 5000 FEE 437745 21393 6058534 2024-02-24 23:04:16.195 2024-02-24 23:04:16.195 45000 TIP 437745 4415 6058567 2024-02-24 23:11:21.453 2024-02-24 23:11:21.453 1000 FEE 437758 11678 6058571 2024-02-24 23:11:59.22 2024-02-24 23:11:59.22 6900 FEE 437752 13046 6058572 2024-02-24 23:11:59.22 2024-02-24 23:11:59.22 62100 TIP 437752 5557 6058610 2024-02-24 23:23:46.338 2024-02-24 23:23:46.338 3300 FEE 437723 16633 6058611 2024-02-24 23:23:46.338 2024-02-24 23:23:46.338 29700 TIP 437723 1720 6058685 2024-02-24 23:37:06.06 2024-02-24 23:37:06.06 6900 FEE 437762 12169 6058686 2024-02-24 23:37:06.06 2024-02-24 23:37:06.06 62100 TIP 437762 19459 6058700 2024-02-24 23:41:55.957 2024-02-24 23:41:55.957 10000 FEE 437720 19546 6058701 2024-02-24 23:41:55.957 2024-02-24 23:41:55.957 90000 TIP 437720 8269 6058724 2024-02-24 23:48:59.065 2024-02-24 23:48:59.065 0 FEE 437770 17392 6058738 2024-02-24 23:51:34.379 2024-02-24 23:51:34.379 2100 FEE 437737 8037 6058739 2024-02-24 23:51:34.379 2024-02-24 23:51:34.379 18900 TIP 437737 20683 6058743 2024-02-24 23:52:06.53 2024-02-24 23:52:06.53 1000 FEE 437773 20504 6058750 2024-02-24 23:55:25.805 2024-02-24 23:55:25.805 1000000 FEE 437775 19446 6058774 2024-02-25 00:01:35.437 2024-02-25 00:01:35.437 7700 FEE 437771 7978 6058775 2024-02-25 00:01:35.437 2024-02-25 00:01:35.437 69300 TIP 437771 8505 6058776 2024-02-25 00:01:35.75 2024-02-25 00:01:35.75 7700 FEE 437771 20981 6058777 2024-02-25 00:01:35.75 2024-02-25 00:01:35.75 69300 TIP 437771 631 6058813 2024-02-25 00:09:10.432 2024-02-25 00:09:10.432 10000 FEE 437716 5578 6058814 2024-02-25 00:09:10.432 2024-02-25 00:09:10.432 90000 TIP 437716 17209 6058869 2024-02-25 00:21:14.888 2024-02-25 00:21:14.888 2100 FEE 437654 19795 6058870 2024-02-25 00:21:14.888 2024-02-25 00:21:14.888 18900 TIP 437654 8045 6058871 2024-02-25 00:21:15.296 2024-02-25 00:21:15.296 1000 FEE 437786 21374 6058876 2024-02-25 00:21:35.046 2024-02-25 00:21:35.046 1000 FEE 437682 7185 6058334 2024-02-24 22:36:05.343 2024-02-24 22:36:05.343 1000 STREAM 141924 1244 6058337 2024-02-24 22:38:05.363 2024-02-24 22:38:05.363 1000 STREAM 141924 8726 6058345 2024-02-24 22:40:05.382 2024-02-24 22:40:05.382 1000 STREAM 141924 4076 6120560 2024-03-01 00:00:53.955 2024-03-01 00:00:53.955 50000 FEE 444434 10611 6120573 2024-03-01 00:07:30.055 2024-03-01 00:07:30.055 5000 FEE 444168 20816 6120574 2024-03-01 00:07:30.055 2024-03-01 00:07:30.055 45000 TIP 444168 21605 6120584 2024-03-01 00:08:50.129 2024-03-01 00:08:50.129 1000 FEE 444438 20979 6120587 2024-03-01 00:09:02.263 2024-03-01 00:09:02.263 1000 FEE 444439 14906 6120598 2024-03-01 00:13:11.696 2024-03-01 00:13:11.696 2100 FEE 444434 19633 6120599 2024-03-01 00:13:11.696 2024-03-01 00:13:11.696 18900 TIP 444434 16178 6120627 2024-03-01 00:19:18.242 2024-03-01 00:19:18.242 300 FEE 443934 1712 6120628 2024-03-01 00:19:18.242 2024-03-01 00:19:18.242 2700 TIP 443934 8385 6120645 2024-03-01 00:19:20.449 2024-03-01 00:19:20.449 300 FEE 443934 715 6120646 2024-03-01 00:19:20.449 2024-03-01 00:19:20.449 2700 TIP 443934 2111 6120677 2024-03-01 00:25:11.85 2024-03-01 00:25:11.85 10000 FEE 444173 17184 6120678 2024-03-01 00:25:11.85 2024-03-01 00:25:11.85 90000 TIP 444173 837 6120701 2024-03-01 00:32:01.099 2024-03-01 00:32:01.099 100 FEE 444390 9099 6120702 2024-03-01 00:32:01.099 2024-03-01 00:32:01.099 900 TIP 444390 20023 6120727 2024-03-01 00:41:12.112 2024-03-01 00:41:12.112 1000 FEE 444456 8376 6120730 2024-03-01 00:41:27.985 2024-03-01 00:41:27.985 100000 FEE 444457 634 6120751 2024-03-01 00:48:07.346 2024-03-01 00:48:07.346 500 FEE 444365 9529 6120752 2024-03-01 00:48:07.346 2024-03-01 00:48:07.346 4500 TIP 444365 652 6120783 2024-03-01 00:58:49.099 2024-03-01 00:58:49.099 1000 FEE 444466 2022 6120788 2024-03-01 01:00:43.964 2024-03-01 01:00:43.964 1000 FEE 442582 11164 6120789 2024-03-01 01:00:43.964 2024-03-01 01:00:43.964 9000 TIP 442582 5776 6120790 2024-03-01 01:00:44.313 2024-03-01 01:00:44.313 100000 FEE 444087 15806 6120791 2024-03-01 01:00:44.313 2024-03-01 01:00:44.313 900000 TIP 444087 1465 6120833 2024-03-01 01:10:37.575 2024-03-01 01:10:37.575 2100 FEE 443561 1426 6120834 2024-03-01 01:10:37.575 2024-03-01 01:10:37.575 18900 TIP 443561 17673 6120844 2024-03-01 01:11:29.526 2024-03-01 01:11:29.526 1000 FEE 444210 20619 6120845 2024-03-01 01:11:29.526 2024-03-01 01:11:29.526 9000 TIP 444210 14669 6120860 2024-03-01 01:14:13.06 2024-03-01 01:14:13.06 1000 FEE 444415 21481 6120861 2024-03-01 01:14:13.06 2024-03-01 01:14:13.06 9000 TIP 444415 19335 6120862 2024-03-01 01:14:41.299 2024-03-01 01:14:41.299 11700 FEE 444434 20306 6120863 2024-03-01 01:14:41.299 2024-03-01 01:14:41.299 105300 TIP 444434 16788 6120890 2024-03-01 01:23:28.494 2024-03-01 01:23:28.494 1700 FEE 444434 854 6120891 2024-03-01 01:23:28.494 2024-03-01 01:23:28.494 15300 TIP 444434 20190 6120896 2024-03-01 01:23:37.212 2024-03-01 01:23:37.212 0 FEE 444476 3213 6120967 2024-03-01 01:56:52.478 2024-03-01 01:56:52.478 1000 FEE 444491 882 6120979 2024-03-01 01:58:51.745 2024-03-01 01:58:51.745 1000 FEE 444384 19531 6120980 2024-03-01 01:58:51.745 2024-03-01 01:58:51.745 9000 TIP 444384 5578 6120983 2024-03-01 02:00:04.636 2024-03-01 02:00:04.636 100000 FEE 444493 6202 6121028 2024-03-01 02:17:38.227 2024-03-01 02:17:38.227 2100 FEE 444168 20299 6121029 2024-03-01 02:17:38.227 2024-03-01 02:17:38.227 18900 TIP 444168 21051 6121045 2024-03-01 02:25:47.872 2024-03-01 02:25:47.872 1000 FEE 443915 5978 6121046 2024-03-01 02:25:47.872 2024-03-01 02:25:47.872 9000 TIP 443915 17082 6121047 2024-03-01 02:25:48.037 2024-03-01 02:25:48.037 1000 FEE 443915 16004 6121048 2024-03-01 02:25:48.037 2024-03-01 02:25:48.037 9000 TIP 443915 18068 6121051 2024-03-01 02:25:48.39 2024-03-01 02:25:48.39 1000 FEE 443915 5637 6121052 2024-03-01 02:25:48.39 2024-03-01 02:25:48.39 9000 TIP 443915 14731 6121057 2024-03-01 02:27:06.213 2024-03-01 02:27:06.213 1000 FEE 444268 18658 6121058 2024-03-01 02:27:06.213 2024-03-01 02:27:06.213 9000 TIP 444268 16176 6121059 2024-03-01 02:27:27.673 2024-03-01 02:27:27.673 2000 FEE 444493 7558 6121060 2024-03-01 02:27:27.673 2024-03-01 02:27:27.673 18000 TIP 444493 17172 6121063 2024-03-01 02:28:44.581 2024-03-01 02:28:44.581 2100 FEE 444471 993 6121064 2024-03-01 02:28:44.581 2024-03-01 02:28:44.581 18900 TIP 444471 684 6121082 2024-03-01 02:31:27.959 2024-03-01 02:31:27.959 2100 FEE 444384 19852 6121083 2024-03-01 02:31:27.959 2024-03-01 02:31:27.959 18900 TIP 444384 21424 6121092 2024-03-01 02:34:21.669 2024-03-01 02:34:21.669 10000 FEE 444102 20257 6121093 2024-03-01 02:34:21.669 2024-03-01 02:34:21.669 90000 TIP 444102 19329 6121099 2024-03-01 02:36:42.56 2024-03-01 02:36:42.56 10000 FEE 443787 21275 6121100 2024-03-01 02:36:42.56 2024-03-01 02:36:42.56 90000 TIP 443787 11263 6121106 2024-03-01 02:40:10.188 2024-03-01 02:40:10.188 10000 FEE 443611 18139 6121107 2024-03-01 02:40:10.188 2024-03-01 02:40:10.188 90000 TIP 443611 8569 6121124 2024-03-01 02:49:14.267 2024-03-01 02:49:14.267 100 FEE 444469 680 6121125 2024-03-01 02:49:14.267 2024-03-01 02:49:14.267 900 TIP 444469 15521 6121164 2024-03-01 03:00:32.343 2024-03-01 03:00:32.343 2700 FEE 443984 2010 6121165 2024-03-01 03:00:32.343 2024-03-01 03:00:32.343 24300 TIP 443984 14278 6121173 2024-03-01 03:04:36.549 2024-03-01 03:04:36.549 100 FEE 444437 14818 6121174 2024-03-01 03:04:36.549 2024-03-01 03:04:36.549 900 TIP 444437 17696 6121189 2024-03-01 03:06:51.658 2024-03-01 03:06:51.658 2700 FEE 444102 16970 6121190 2024-03-01 03:06:51.658 2024-03-01 03:06:51.658 24300 TIP 444102 1244 6121195 2024-03-01 03:06:52.257 2024-03-01 03:06:52.257 2700 FEE 444102 21070 6121196 2024-03-01 03:06:52.257 2024-03-01 03:06:52.257 24300 TIP 444102 10112 6121204 2024-03-01 03:08:04.855 2024-03-01 03:08:04.855 21000 FEE 444519 2583 6121205 2024-03-01 03:08:21.306 2024-03-01 03:08:21.306 100 FEE 444384 1426 6121206 2024-03-01 03:08:21.306 2024-03-01 03:08:21.306 900 TIP 444384 18517 6121238 2024-03-01 03:17:22.728 2024-03-01 03:17:22.728 1000 FEE 444523 6300 6121289 2024-03-01 03:35:24.034 2024-03-01 03:35:24.034 100 FEE 444528 11621 6121290 2024-03-01 03:35:24.034 2024-03-01 03:35:24.034 900 TIP 444528 17741 6121302 2024-03-01 03:40:16.565 2024-03-01 03:40:16.565 100 FEE 444532 19007 6121303 2024-03-01 03:40:16.565 2024-03-01 03:40:16.565 900 TIP 444532 7418 6121310 2024-03-01 03:40:21.31 2024-03-01 03:40:21.31 100 FEE 444532 891 6121311 2024-03-01 03:40:21.31 2024-03-01 03:40:21.31 900 TIP 444532 19842 6121333 2024-03-01 03:48:54.391 2024-03-01 03:48:54.391 300 FEE 444457 20120 6058370 2024-02-24 22:44:05.816 2024-02-24 22:44:05.816 1000 STREAM 141924 8796 6058381 2024-02-24 22:45:05.804 2024-02-24 22:45:05.804 1000 STREAM 141924 13782 6058384 2024-02-24 22:47:05.837 2024-02-24 22:47:05.837 1000 STREAM 141924 646 6058418 2024-02-24 22:50:05.908 2024-02-24 22:50:05.908 1000 STREAM 141924 10007 6058483 2024-02-24 22:55:05.917 2024-02-24 22:55:05.917 1000 STREAM 141924 9920 6058492 2024-02-24 22:56:05.927 2024-02-24 22:56:05.927 1000 STREAM 141924 7668 6058497 2024-02-24 22:57:03.94 2024-02-24 22:57:03.94 1000 STREAM 141924 1000 6120579 2024-03-01 00:08:06.402 2024-03-01 00:08:06.402 1000 FEE 444437 1439 6120601 2024-03-01 00:13:35 2024-03-01 00:13:35 800 FEE 443794 5308 6120602 2024-03-01 00:13:35 2024-03-01 00:13:35 7200 TIP 443794 21578 6120621 2024-03-01 00:17:00.705 2024-03-01 00:17:00.705 2100 FEE 443585 18526 6120622 2024-03-01 00:17:00.705 2024-03-01 00:17:00.705 18900 TIP 443585 18243 6120652 2024-03-01 00:20:09.175 2024-03-01 00:20:09.175 1000 FEE 444446 19030 6058383 2024-02-24 22:46:05.823 2024-02-24 22:46:05.823 1000 STREAM 141924 2022 6058400 2024-02-24 22:48:05.855 2024-02-24 22:48:05.855 1000 STREAM 141924 16351 6058414 2024-02-24 22:49:05.871 2024-02-24 22:49:05.871 1000 STREAM 141924 831 6058424 2024-02-24 22:51:05.892 2024-02-24 22:51:05.892 1000 STREAM 141924 7869 6058435 2024-02-24 22:52:05.887 2024-02-24 22:52:05.887 1000 STREAM 141924 9921 6058448 2024-02-24 22:53:05.891 2024-02-24 22:53:05.891 1000 STREAM 141924 776 6058469 2024-02-24 22:54:05.904 2024-02-24 22:54:05.904 1000 STREAM 141924 776 6058687 2024-02-24 23:38:06.224 2024-02-24 23:38:06.224 1000 STREAM 141924 4084 6058689 2024-02-24 23:39:04.229 2024-02-24 23:39:04.229 1000 STREAM 141924 20972 6058695 2024-02-24 23:40:06.294 2024-02-24 23:40:06.294 1000 STREAM 141924 1617 6120642 2024-03-01 00:19:19.972 2024-03-01 00:19:19.972 2700 TIP 443934 1319 6120647 2024-03-01 00:19:20.645 2024-03-01 00:19:20.645 300 FEE 443934 11220 6120648 2024-03-01 00:19:20.645 2024-03-01 00:19:20.645 2700 TIP 443934 1092 6120653 2024-03-01 00:20:11.774 2024-03-01 00:20:11.774 2100 FEE 444408 19463 6120654 2024-03-01 00:20:11.774 2024-03-01 00:20:11.774 18900 TIP 444408 18330 6120671 2024-03-01 00:24:11.41 2024-03-01 00:24:11.41 3100 FEE 444448 12265 6120672 2024-03-01 00:24:11.41 2024-03-01 00:24:11.41 27900 TIP 444448 18862 6120694 2024-03-01 00:29:17.987 2024-03-01 00:29:17.987 1000 FEE 444384 21421 6120695 2024-03-01 00:29:17.987 2024-03-01 00:29:17.987 9000 TIP 444384 12245 6058461 2024-02-24 22:53:48.256 2024-02-24 22:53:48.256 1000 FEE 437741 20454 6058462 2024-02-24 22:53:48.256 2024-02-24 22:53:48.256 9000 TIP 437741 21386 6058463 2024-02-24 22:53:48.652 2024-02-24 22:53:48.652 1000 FEE 437741 20889 6058464 2024-02-24 22:53:48.652 2024-02-24 22:53:48.652 9000 TIP 437741 20881 6058473 2024-02-24 22:54:39.186 2024-02-24 22:54:39.186 4000 FEE 437732 18101 6058474 2024-02-24 22:54:39.186 2024-02-24 22:54:39.186 36000 TIP 437732 9150 6058495 2024-02-24 22:57:00.053 2024-02-24 22:57:00.053 5000 FEE 437731 18005 6058496 2024-02-24 22:57:00.053 2024-02-24 22:57:00.053 45000 TIP 437731 20152 6058509 2024-02-24 22:59:57.904 2024-02-24 22:59:57.904 100000 FEE 437751 20904 6058520 2024-02-24 23:02:20.38 2024-02-24 23:02:20.38 1100 FEE 437738 12268 6058521 2024-02-24 23:02:20.38 2024-02-24 23:02:20.38 9900 TIP 437738 17157 6058528 2024-02-24 23:03:07.099 2024-02-24 23:03:07.099 5000 FEE 437533 21091 6058529 2024-02-24 23:03:07.099 2024-02-24 23:03:07.099 45000 TIP 437533 20642 6058580 2024-02-24 23:12:10.058 2024-02-24 23:12:10.058 2100 FEE 437687 9843 6058581 2024-02-24 23:12:10.058 2024-02-24 23:12:10.058 18900 TIP 437687 16177 6058628 2024-02-24 23:27:16.268 2024-02-24 23:27:16.268 3300 FEE 437752 2431 6058629 2024-02-24 23:27:16.268 2024-02-24 23:27:16.268 29700 TIP 437752 19777 6058656 2024-02-24 23:31:05.281 2024-02-24 23:31:05.281 1000 FEE 437765 2543 6058675 2024-02-24 23:35:14.109 2024-02-24 23:35:14.109 400 FEE 436919 20573 6058676 2024-02-24 23:35:14.109 2024-02-24 23:35:14.109 3600 TIP 436919 5425 6058690 2024-02-24 23:39:10.888 2024-02-24 23:39:10.888 0 FEE 437766 5497 6058707 2024-02-24 23:45:42.886 2024-02-24 23:45:42.886 1000 DONT_LIKE_THIS 437238 2711 6058711 2024-02-24 23:47:10.655 2024-02-24 23:47:10.655 2100 FEE 437514 19841 6058712 2024-02-24 23:47:10.655 2024-02-24 23:47:10.655 18900 TIP 437514 21164 6058715 2024-02-24 23:47:23.1 2024-02-24 23:47:23.1 2100 FEE 437769 1692 6058716 2024-02-24 23:47:23.1 2024-02-24 23:47:23.1 18900 TIP 437769 27 6058732 2024-02-24 23:50:24.927 2024-02-24 23:50:24.927 2100 FEE 430647 894 6058733 2024-02-24 23:50:24.927 2024-02-24 23:50:24.927 18900 TIP 430647 6310 6058748 2024-02-24 23:54:53.634 2024-02-24 23:54:53.634 1000 FEE 437774 827 6058477 2024-02-24 22:54:48.377 2024-02-24 22:54:48.377 4000 FEE 437714 633 6058478 2024-02-24 22:54:48.377 2024-02-24 22:54:48.377 36000 TIP 437714 5757 6058500 2024-02-24 22:57:36.999 2024-02-24 22:57:36.999 2100 FEE 437723 1505 6058501 2024-02-24 22:57:36.999 2024-02-24 22:57:36.999 18900 TIP 437723 10849 6058503 2024-02-24 22:58:05.134 2024-02-24 22:58:05.134 6400 FEE 437670 8954 6058504 2024-02-24 22:58:05.134 2024-02-24 22:58:05.134 57600 TIP 437670 21062 6058510 2024-02-24 23:00:03.723 2024-02-24 23:00:03.723 5000 FEE 437674 10731 6058511 2024-02-24 23:00:03.723 2024-02-24 23:00:03.723 45000 TIP 437674 2431 6058524 2024-02-24 23:03:06.653 2024-02-24 23:03:06.653 5000 FEE 437533 15052 6058525 2024-02-24 23:03:06.653 2024-02-24 23:03:06.653 45000 TIP 437533 4989 6058530 2024-02-24 23:03:10.937 2024-02-24 23:03:10.937 1000 FEE 437754 13399 6058531 2024-02-24 23:03:37.809 2024-02-24 23:03:37.809 1000 FEE 437755 1433 6058588 2024-02-24 23:14:11.795 2024-02-24 23:14:11.795 1000 FEE 437760 2330 6058603 2024-02-24 23:22:34.294 2024-02-24 23:22:34.294 4200 FEE 436603 12921 6058604 2024-02-24 23:22:34.294 2024-02-24 23:22:34.294 37800 TIP 436603 15226 6058613 2024-02-24 23:24:47.454 2024-02-24 23:24:47.454 2100 FEE 437759 17001 6058614 2024-02-24 23:24:47.454 2024-02-24 23:24:47.454 18900 TIP 437759 900 6058616 2024-02-24 23:25:06.473 2024-02-24 23:25:06.473 2100 FEE 437760 4768 6058617 2024-02-24 23:25:06.473 2024-02-24 23:25:06.473 18900 TIP 437760 759 6058639 2024-02-24 23:28:50.922 2024-02-24 23:28:50.922 1000 FEE 437763 4115 6058650 2024-02-24 23:30:33.947 2024-02-24 23:30:33.947 1000 FEE 437764 9354 6058662 2024-02-24 23:35:01.53 2024-02-24 23:35:01.53 400 FEE 437719 12368 6058663 2024-02-24 23:35:01.53 2024-02-24 23:35:01.53 3600 TIP 437719 18608 6058667 2024-02-24 23:35:04.197 2024-02-24 23:35:04.197 400 FEE 437140 14213 6058668 2024-02-24 23:35:04.197 2024-02-24 23:35:04.197 3600 TIP 437140 9362 6058688 2024-02-24 23:38:56.646 2024-02-24 23:38:56.646 1000 FEE 437766 20647 6058709 2024-02-24 23:46:05.19 2024-02-24 23:46:05.19 10000 FEE 437769 1584 6058713 2024-02-24 23:47:14.21 2024-02-24 23:47:14.21 2100 FEE 437370 9482 6058714 2024-02-24 23:47:14.21 2024-02-24 23:47:14.21 18900 TIP 437370 20745 6058717 2024-02-24 23:47:52.017 2024-02-24 23:47:52.017 2100 FEE 437769 6573 6058718 2024-02-24 23:47:52.017 2024-02-24 23:47:52.017 18900 TIP 437769 19633 6058719 2024-02-24 23:48:00.057 2024-02-24 23:48:00.057 2100 FEE 437720 9 6058720 2024-02-24 23:48:00.057 2024-02-24 23:48:00.057 18900 TIP 437720 9183 6058734 2024-02-24 23:50:28.258 2024-02-24 23:50:28.258 2100 FEE 437457 837 6058735 2024-02-24 23:50:28.258 2024-02-24 23:50:28.258 18900 TIP 437457 5112 6058756 2024-02-24 23:59:06.729 2024-02-24 23:59:06.729 100 FEE 437775 12721 6058757 2024-02-24 23:59:06.729 2024-02-24 23:59:06.729 900 TIP 437775 17227 6058762 2024-02-24 23:59:24.167 2024-02-24 23:59:24.167 100 FEE 437723 20775 6058763 2024-02-24 23:59:24.167 2024-02-24 23:59:24.167 900 TIP 437723 21571 6058778 2024-02-25 00:01:36.014 2024-02-25 00:01:36.014 7700 FEE 437771 20624 6058779 2024-02-25 00:01:36.014 2024-02-25 00:01:36.014 69300 TIP 437771 8998 6058780 2024-02-25 00:01:58.417 2024-02-25 00:01:58.417 25600 FEE 437737 13361 6058781 2024-02-25 00:01:58.417 2024-02-25 00:01:58.417 230400 TIP 437737 9355 6058791 2024-02-25 00:04:05.962 2024-02-25 00:04:05.962 10000 FEE 436819 20911 6058792 2024-02-25 00:04:05.962 2024-02-25 00:04:05.962 90000 TIP 436819 13553 6058793 2024-02-25 00:04:20.162 2024-02-25 00:04:20.162 250000 FEE 436816 19910 6058794 2024-02-25 00:04:20.162 2024-02-25 00:04:20.162 2250000 TIP 436816 20198 6058821 2024-02-25 00:10:19.539 2024-02-25 00:10:19.539 1000 FEE 437702 20479 6058822 2024-02-25 00:10:19.539 2024-02-25 00:10:19.539 9000 TIP 437702 19967 6058832 2024-02-25 00:10:57.203 2024-02-25 00:10:57.203 900 FEE 437781 9916 6058833 2024-02-25 00:10:57.203 2024-02-25 00:10:57.203 8100 TIP 437781 7185 6058853 2024-02-25 00:16:27.529 2024-02-25 00:16:27.529 1000 FEE 437783 18243 6058854 2024-02-25 00:16:29.675 2024-02-25 00:16:29.675 500 FEE 434331 11395 6058855 2024-02-25 00:16:29.675 2024-02-25 00:16:29.675 4500 TIP 434331 9426 6058888 2024-02-25 00:21:36.702 2024-02-25 00:21:36.702 1000 FEE 437682 20781 6058889 2024-02-25 00:21:36.702 2024-02-25 00:21:36.702 9000 TIP 437682 889 6058894 2024-02-25 00:21:37.198 2024-02-25 00:21:37.198 1000 FEE 437682 5565 6058895 2024-02-25 00:21:37.198 2024-02-25 00:21:37.198 9000 TIP 437682 928 6058912 2024-02-25 00:23:49.745 2024-02-25 00:23:49.745 1000 FEE 437789 2016 6058913 2024-02-25 00:24:00.898 2024-02-25 00:24:00.898 6900 FEE 437302 2528 6058914 2024-02-25 00:24:00.898 2024-02-25 00:24:00.898 62100 TIP 437302 20674 6058927 2024-02-25 00:27:17.059 2024-02-25 00:27:17.059 6900 FEE 437020 15282 6058928 2024-02-25 00:27:17.059 2024-02-25 00:27:17.059 62100 TIP 437020 10586 6058940 2024-02-25 00:30:54.34 2024-02-25 00:30:54.34 10000 FEE 437611 8664 6058941 2024-02-25 00:30:54.34 2024-02-25 00:30:54.34 90000 TIP 437611 19557 6058967 2024-02-25 00:34:01.518 2024-02-25 00:34:01.518 6900 FEE 437771 19770 6058968 2024-02-25 00:34:01.518 2024-02-25 00:34:01.518 62100 TIP 437771 13798 6058971 2024-02-25 00:34:01.786 2024-02-25 00:34:01.786 300 FEE 437752 18511 6058972 2024-02-25 00:34:01.786 2024-02-25 00:34:01.786 2700 TIP 437752 18945 6059008 2024-02-25 00:34:55.804 2024-02-25 00:34:55.804 300 FEE 437723 12779 6059009 2024-02-25 00:34:55.804 2024-02-25 00:34:55.804 2700 TIP 437723 5195 6059010 2024-02-25 00:34:56.06 2024-02-25 00:34:56.06 300 FEE 437723 16176 6059011 2024-02-25 00:34:56.06 2024-02-25 00:34:56.06 2700 TIP 437723 11220 6059062 2024-02-25 00:45:14.536 2024-02-25 00:45:14.536 4000 FEE 437805 6749 6059063 2024-02-25 00:45:14.536 2024-02-25 00:45:14.536 36000 TIP 437805 640 6059099 2024-02-25 00:51:10.41 2024-02-25 00:51:10.41 2100 FEE 437681 1970 6059100 2024-02-25 00:51:10.41 2024-02-25 00:51:10.41 18900 TIP 437681 19581 6059111 2024-02-25 00:53:09.759 2024-02-25 00:53:09.759 2100 FEE 437723 6137 6059112 2024-02-25 00:53:09.759 2024-02-25 00:53:09.759 18900 TIP 437723 8472 6059155 2024-02-25 00:56:39.211 2024-02-25 00:56:39.211 11100 FEE 437720 16154 6059156 2024-02-25 00:56:39.211 2024-02-25 00:56:39.211 99900 TIP 437720 1733 6059173 2024-02-25 00:58:31.767 2024-02-25 00:58:31.767 6900 FEE 437814 8729 6059174 2024-02-25 00:58:31.767 2024-02-25 00:58:31.767 62100 TIP 437814 954 6059197 2024-02-25 00:59:42.315 2024-02-25 00:59:42.315 1000 FEE 437820 21514 6059201 2024-02-25 01:00:10.213 2024-02-25 01:00:10.213 10000 FEE 437821 20156 6058505 2024-02-24 22:58:05.872 2024-02-24 22:58:05.872 1000 STREAM 141924 10554 6058515 2024-02-24 23:01:03.894 2024-02-24 23:01:03.894 1000 STREAM 141924 18837 6058519 2024-02-24 23:02:05.889 2024-02-24 23:02:05.889 1000 STREAM 141924 14357 6058523 2024-02-24 23:03:03.906 2024-02-24 23:03:03.906 1000 STREAM 141924 19036 6058532 2024-02-24 23:04:05.901 2024-02-24 23:04:05.901 1000 STREAM 141924 2061 6058538 2024-02-24 23:05:03.906 2024-02-24 23:05:03.906 1000 STREAM 141924 10283 6058543 2024-02-24 23:06:05.921 2024-02-24 23:06:05.921 1000 STREAM 141924 19333 6058544 2024-02-24 23:07:03.914 2024-02-24 23:07:03.914 1000 STREAM 141924 16649 6058548 2024-02-24 23:09:03.921 2024-02-24 23:09:03.921 1000 STREAM 141924 14280 6058566 2024-02-24 23:11:03.936 2024-02-24 23:11:03.936 1000 STREAM 141924 5387 6058590 2024-02-24 23:16:06 2024-02-24 23:16:06 1000 STREAM 141924 16348 6058594 2024-02-24 23:18:06.016 2024-02-24 23:18:06.016 1000 STREAM 141924 716 6058595 2024-02-24 23:19:04.03 2024-02-24 23:19:04.03 1000 STREAM 141924 8162 6058597 2024-02-24 23:21:04.016 2024-02-24 23:21:04.016 1000 STREAM 141924 13927 6058612 2024-02-24 23:24:06.052 2024-02-24 23:24:06.052 1000 STREAM 141924 21527 6058627 2024-02-24 23:27:04.083 2024-02-24 23:27:04.083 1000 STREAM 141924 891 6058649 2024-02-24 23:30:06.135 2024-02-24 23:30:06.135 1000 STREAM 141924 5449 6058658 2024-02-24 23:33:04.154 2024-02-24 23:33:04.154 1000 STREAM 141924 11145 6058659 2024-02-24 23:34:06.16 2024-02-24 23:34:06.16 1000 STREAM 141924 10393 6058666 2024-02-24 23:35:04.169 2024-02-24 23:35:04.169 1000 STREAM 141924 630 6058737 2024-02-24 23:51:06.169 2024-02-24 23:51:06.169 1000 STREAM 141924 20897 6058751 2024-02-24 23:56:04.182 2024-02-24 23:56:04.182 1000 STREAM 141924 4345 6120655 2024-03-01 00:20:29.837 2024-03-01 00:20:29.837 2100 FEE 444417 6383 6120656 2024-03-01 00:20:29.837 2024-03-01 00:20:29.837 18900 TIP 444417 14247 6120673 2024-03-01 00:24:47.3 2024-03-01 00:24:47.3 1000 FEE 444451 16145 6120684 2024-03-01 00:26:22.481 2024-03-01 00:26:22.481 10000 FEE 444452 9433 6120690 2024-03-01 00:29:08.69 2024-03-01 00:29:08.69 1000 FEE 444379 16354 6120691 2024-03-01 00:29:08.69 2024-03-01 00:29:08.69 9000 TIP 444379 776 6120742 2024-03-01 00:44:54.617 2024-03-01 00:44:54.617 10000 FEE 444458 1519 6120770 2024-03-01 00:56:58.382 2024-03-01 00:56:58.382 100 FEE 444457 1814 6120771 2024-03-01 00:56:58.382 2024-03-01 00:56:58.382 900 TIP 444457 21624 6120794 2024-03-01 01:00:47.438 2024-03-01 01:00:47.438 1000 FEE 442571 19637 6120795 2024-03-01 01:00:47.438 2024-03-01 01:00:47.438 9000 TIP 442571 6765 6120818 2024-03-01 01:08:29.111 2024-03-01 01:08:29.111 1000 FEE 444470 1010 6120878 2024-03-01 01:19:30.974 2024-03-01 01:19:30.974 0 FEE 444471 13547 6120884 2024-03-01 01:22:25.199 2024-03-01 01:22:25.199 300 FEE 444448 20811 6120885 2024-03-01 01:22:25.199 2024-03-01 01:22:25.199 2700 TIP 444448 20208 6120888 2024-03-01 01:23:17.108 2024-03-01 01:23:17.108 1000 FEE 444477 14122 6120931 2024-03-01 01:35:51.266 2024-03-01 01:35:51.266 1000 FEE 444487 20490 6120944 2024-03-01 01:42:41.036 2024-03-01 01:42:41.036 0 FEE 444489 18956 6120968 2024-03-01 01:56:58.876 2024-03-01 01:56:58.876 5000 FEE 444168 1567 6120969 2024-03-01 01:56:58.876 2024-03-01 01:56:58.876 45000 TIP 444168 8059 6120975 2024-03-01 01:58:39.624 2024-03-01 01:58:39.624 500 FEE 434097 3478 6120976 2024-03-01 01:58:39.624 2024-03-01 01:58:39.624 4500 TIP 434097 2776 6120977 2024-03-01 01:58:43.069 2024-03-01 01:58:43.069 10000 FEE 434097 21605 6120978 2024-03-01 01:58:43.069 2024-03-01 01:58:43.069 90000 TIP 434097 5806 6120998 2024-03-01 02:06:18.945 2024-03-01 02:06:18.945 10000 FEE 443598 20619 6120999 2024-03-01 02:06:18.945 2024-03-01 02:06:18.945 90000 TIP 443598 1490 6121038 2024-03-01 02:21:48.173 2024-03-01 02:21:48.173 1000 POLL 444449 4118 6121084 2024-03-01 02:31:31.559 2024-03-01 02:31:31.559 2100 FEE 444434 2042 6121085 2024-03-01 02:31:31.559 2024-03-01 02:31:31.559 18900 TIP 444434 19796 6121097 2024-03-01 02:35:41.932 2024-03-01 02:35:41.932 1000 FEE 444508 13599 6121126 2024-03-01 02:49:18.446 2024-03-01 02:49:18.446 100 FEE 444467 16176 6121127 2024-03-01 02:49:18.446 2024-03-01 02:49:18.446 900 TIP 444467 13587 6121129 2024-03-01 02:50:50.841 2024-03-01 02:50:50.841 1000 FEE 444510 14791 6121156 2024-03-01 02:58:11.313 2024-03-01 02:58:11.313 2600 FEE 444489 21571 6121157 2024-03-01 02:58:11.313 2024-03-01 02:58:11.313 23400 TIP 444489 17710 6121166 2024-03-01 03:00:38.264 2024-03-01 03:00:38.264 1000 FEE 444517 3729 6121229 2024-03-01 03:15:22.054 2024-03-01 03:15:22.054 10000 FEE 444098 1773 6121230 2024-03-01 03:15:22.054 2024-03-01 03:15:22.054 90000 TIP 444098 1105 6121285 2024-03-01 03:34:17.877 2024-03-01 03:34:17.877 100000 FEE 444534 15337 6121323 2024-03-01 03:45:32.037 2024-03-01 03:45:32.037 2100 FEE 444525 1806 6121324 2024-03-01 03:45:32.037 2024-03-01 03:45:32.037 18900 TIP 444525 8926 6121327 2024-03-01 03:47:23.587 2024-03-01 03:47:23.587 5000 FEE 444003 8173 6121328 2024-03-01 03:47:23.587 2024-03-01 03:47:23.587 45000 TIP 444003 913 6121344 2024-03-01 03:52:45.246 2024-03-01 03:52:45.246 1000 FEE 444539 18220 6121351 2024-03-01 03:54:28.548 2024-03-01 03:54:28.548 100 FEE 444537 985 6121352 2024-03-01 03:54:28.548 2024-03-01 03:54:28.548 900 TIP 444537 13553 6121369 2024-03-01 04:00:05.104 2024-03-01 04:00:05.104 1000 FEE 444382 18005 6121370 2024-03-01 04:00:05.104 2024-03-01 04:00:05.104 9000 TIP 444382 3304 6121430 2024-03-01 04:13:35.719 2024-03-01 04:13:35.719 1000 FEE 444148 674 6121431 2024-03-01 04:13:35.719 2024-03-01 04:13:35.719 9000 TIP 444148 18507 6121459 2024-03-01 04:16:25.06 2024-03-01 04:16:25.06 500 FEE 443712 19815 6121460 2024-03-01 04:16:25.06 2024-03-01 04:16:25.06 4500 TIP 443712 8870 6121473 2024-03-01 04:16:33.982 2024-03-01 04:16:33.982 1000 FEE 444550 7891 6121486 2024-03-01 04:16:48.295 2024-03-01 04:16:48.295 500 FEE 444376 21386 6121487 2024-03-01 04:16:48.295 2024-03-01 04:16:48.295 4500 TIP 444376 20730 6121494 2024-03-01 04:16:55.135 2024-03-01 04:16:55.135 500 FEE 444376 18243 6121495 2024-03-01 04:16:55.135 2024-03-01 04:16:55.135 4500 TIP 444376 20973 6121530 2024-03-01 04:18:13.389 2024-03-01 04:18:13.389 500 FEE 443430 18618 6121531 2024-03-01 04:18:13.389 2024-03-01 04:18:13.389 4500 TIP 443430 623 6121565 2024-03-01 04:19:49.747 2024-03-01 04:19:49.747 90000 FEE 443272 21037 6121566 2024-03-01 04:19:49.747 2024-03-01 04:19:49.747 810000 TIP 443272 7877 6121599 2024-03-01 04:22:24.435 2024-03-01 04:22:24.435 1000 FEE 443799 8544 6121600 2024-03-01 04:22:24.435 2024-03-01 04:22:24.435 9000 TIP 443799 20849 6121605 2024-03-01 04:22:30.224 2024-03-01 04:22:30.224 1000 FEE 443583 19770 6121606 2024-03-01 04:22:30.224 2024-03-01 04:22:30.224 9000 TIP 443583 1658 6121626 2024-03-01 04:24:53.19 2024-03-01 04:24:53.19 1000 FEE 444365 11328 6058508 2024-02-24 22:59:03.873 2024-02-24 22:59:03.873 1000 STREAM 141924 2749 6058512 2024-02-24 23:00:05.945 2024-02-24 23:00:05.945 1000 STREAM 141924 4175 6058545 2024-02-24 23:08:05.919 2024-02-24 23:08:05.919 1000 STREAM 141924 15594 6058551 2024-02-24 23:10:05.94 2024-02-24 23:10:05.94 1000 STREAM 141924 16357 6058579 2024-02-24 23:12:05.927 2024-02-24 23:12:05.927 1000 STREAM 141924 20812 6058586 2024-02-24 23:13:03.947 2024-02-24 23:13:03.947 1000 STREAM 141924 20993 6058587 2024-02-24 23:14:05.976 2024-02-24 23:14:05.976 1000 STREAM 141924 13798 6058589 2024-02-24 23:15:03.986 2024-02-24 23:15:03.986 1000 STREAM 141924 7998 6058591 2024-02-24 23:17:03.996 2024-02-24 23:17:03.996 1000 STREAM 141924 9171 6058596 2024-02-24 23:20:06.082 2024-02-24 23:20:06.082 1000 STREAM 141924 9183 6058600 2024-02-24 23:22:06.029 2024-02-24 23:22:06.029 1000 STREAM 141924 10549 6058607 2024-02-24 23:23:04.056 2024-02-24 23:23:04.056 1000 STREAM 141924 21514 6058615 2024-02-24 23:25:04.091 2024-02-24 23:25:04.091 1000 STREAM 141924 18269 6058625 2024-02-24 23:26:06.082 2024-02-24 23:26:06.082 1000 STREAM 141924 1512 6058632 2024-02-24 23:28:06.108 2024-02-24 23:28:06.108 1000 STREAM 141924 913 6058640 2024-02-24 23:29:04.111 2024-02-24 23:29:04.111 1000 STREAM 141924 17455 6058655 2024-02-24 23:31:04.129 2024-02-24 23:31:04.129 1000 STREAM 141924 20858 6058657 2024-02-24 23:32:06.141 2024-02-24 23:32:06.141 1000 STREAM 141924 20745 6120663 2024-03-01 00:21:03.58 2024-03-01 00:21:03.58 1000 STREAM 141924 9843 6120674 2024-03-01 00:25:03.634 2024-03-01 00:25:03.634 1000 STREAM 141924 4819 6120681 2024-03-01 00:26:03.615 2024-03-01 00:26:03.615 1000 STREAM 141924 712 6120716 2024-03-01 00:38:03.787 2024-03-01 00:38:03.787 1000 STREAM 141924 9169 6120721 2024-03-01 00:39:01.774 2024-03-01 00:39:01.774 1000 STREAM 141924 11938 6120726 2024-03-01 00:41:01.807 2024-03-01 00:41:01.807 1000 STREAM 141924 5085 6120731 2024-03-01 00:42:03.809 2024-03-01 00:42:03.809 1000 STREAM 141924 14168 6058623 2024-02-24 23:25:59.011 2024-02-24 23:25:59.011 6900 FEE 437761 998 6058624 2024-02-24 23:25:59.011 2024-02-24 23:25:59.011 62100 TIP 437761 2342 6058669 2024-02-24 23:35:09.473 2024-02-24 23:35:09.473 400 FEE 436966 20990 6058670 2024-02-24 23:35:09.473 2024-02-24 23:35:09.473 3600 TIP 436966 21521 6058671 2024-02-24 23:35:10.125 2024-02-24 23:35:10.125 400 FEE 436952 21057 6058672 2024-02-24 23:35:10.125 2024-02-24 23:35:10.125 3600 TIP 436952 9920 6058681 2024-02-24 23:37:04.556 2024-02-24 23:37:04.556 6900 FEE 437763 18068 6058682 2024-02-24 23:37:04.556 2024-02-24 23:37:04.556 62100 TIP 437763 9350 6058691 2024-02-24 23:39:23.08 2024-02-24 23:39:23.08 6900 FEE 437763 15697 6058692 2024-02-24 23:39:23.08 2024-02-24 23:39:23.08 62100 TIP 437763 9337 6058693 2024-02-24 23:39:23.223 2024-02-24 23:39:23.223 6900 FEE 437763 5538 6058694 2024-02-24 23:39:23.223 2024-02-24 23:39:23.223 62100 TIP 437763 18101 6058696 2024-02-24 23:40:42.496 2024-02-24 23:40:42.496 2100 FEE 437766 19465 6058697 2024-02-24 23:40:42.496 2024-02-24 23:40:42.496 18900 TIP 437766 11821 6058703 2024-02-24 23:42:12.426 2024-02-24 23:42:12.426 1000 FEE 437768 19378 6058728 2024-02-24 23:49:42.233 2024-02-24 23:49:42.233 2100 FEE 430023 12744 6058729 2024-02-24 23:49:42.233 2024-02-24 23:49:42.233 18900 TIP 430023 20276 6058740 2024-02-24 23:51:34.976 2024-02-24 23:51:34.976 6900 FEE 437510 679 6058741 2024-02-24 23:51:34.976 2024-02-24 23:51:34.976 62100 TIP 437510 19533 6058760 2024-02-24 23:59:09.762 2024-02-24 23:59:09.762 9000 FEE 437775 5017 6058761 2024-02-24 23:59:09.762 2024-02-24 23:59:09.762 81000 TIP 437775 21421 6058764 2024-02-24 23:59:24.317 2024-02-24 23:59:24.317 900 FEE 437723 12930 6058765 2024-02-24 23:59:24.317 2024-02-24 23:59:24.317 8100 TIP 437723 14990 6058783 2024-02-25 00:02:04.269 2024-02-25 00:02:04.269 6900 FEE 437725 696 6058784 2024-02-25 00:02:04.269 2024-02-25 00:02:04.269 62100 TIP 437725 4313 6058788 2024-02-25 00:03:04.017 2024-02-25 00:03:04.017 1000 FEE 437776 1145 6058800 2024-02-25 00:06:32.273 2024-02-25 00:06:32.273 1000 FEE 437719 18241 6058801 2024-02-25 00:06:32.273 2024-02-25 00:06:32.273 9000 TIP 437719 19735 6058810 2024-02-25 00:08:52.92 2024-02-25 00:08:52.92 100 FEE 437403 21563 6058811 2024-02-25 00:08:52.92 2024-02-25 00:08:52.92 900 TIP 437403 10934 6058816 2024-02-25 00:09:49.801 2024-02-25 00:09:49.801 1000 FEE 437780 20066 6058836 2024-02-25 00:12:32.403 2024-02-25 00:12:32.403 1000 FEE 429629 11443 6058837 2024-02-25 00:12:32.403 2024-02-25 00:12:32.403 9000 TIP 429629 16456 6058851 2024-02-25 00:15:17.305 2024-02-25 00:15:17.305 0 FEE 437781 16879 6058898 2024-02-25 00:21:38.069 2024-02-25 00:21:38.069 1000 FEE 437682 18774 6058899 2024-02-25 00:21:38.069 2024-02-25 00:21:38.069 9000 TIP 437682 21180 6058923 2024-02-25 00:26:13.118 2024-02-25 00:26:13.118 6900 FEE 437082 8544 6058924 2024-02-25 00:26:13.118 2024-02-25 00:26:13.118 62100 TIP 437082 11670 6058930 2024-02-25 00:28:32.196 2024-02-25 00:28:32.196 1000 FEE 437794 1737 6058931 2024-02-25 00:28:53.54 2024-02-25 00:28:53.54 10000 FEE 437774 15409 6058932 2024-02-25 00:28:53.54 2024-02-25 00:28:53.54 90000 TIP 437774 19852 6058969 2024-02-25 00:34:01.562 2024-02-25 00:34:01.562 300 FEE 437752 20257 6058970 2024-02-25 00:34:01.562 2024-02-25 00:34:01.562 2700 TIP 437752 1515 6058973 2024-02-25 00:34:01.989 2024-02-25 00:34:01.989 300 FEE 437752 18930 6058974 2024-02-25 00:34:01.989 2024-02-25 00:34:01.989 2700 TIP 437752 1585 6058986 2024-02-25 00:34:03.446 2024-02-25 00:34:03.446 300 FEE 437752 17713 6058987 2024-02-25 00:34:03.446 2024-02-25 00:34:03.446 2700 TIP 437752 21401 6058996 2024-02-25 00:34:54.068 2024-02-25 00:34:54.068 300 FEE 437723 11992 6058997 2024-02-25 00:34:54.068 2024-02-25 00:34:54.068 2700 TIP 437723 19961 6059002 2024-02-25 00:34:54.94 2024-02-25 00:34:54.94 300 FEE 437723 14449 6059003 2024-02-25 00:34:54.94 2024-02-25 00:34:54.94 2700 TIP 437723 1650 6059020 2024-02-25 00:34:57.377 2024-02-25 00:34:57.377 300 FEE 437723 14045 6059021 2024-02-25 00:34:57.377 2024-02-25 00:34:57.377 2700 TIP 437723 19174 6059066 2024-02-25 00:45:55.464 2024-02-25 00:45:55.464 1000 FEE 437807 626 6059085 2024-02-25 00:48:27.847 2024-02-25 00:48:27.847 10000 FEE 437808 18923 6059123 2024-02-25 00:56:27.768 2024-02-25 00:56:27.768 2100 FEE 437769 11075 6059124 2024-02-25 00:56:27.768 2024-02-25 00:56:27.768 18900 TIP 437769 14941 6059143 2024-02-25 00:56:38.011 2024-02-25 00:56:38.011 100 FEE 437502 12272 6059144 2024-02-25 00:56:38.011 2024-02-25 00:56:38.011 900 TIP 437502 4126 6059147 2024-02-25 00:56:38.488 2024-02-25 00:56:38.488 100 FEE 437502 711 6059148 2024-02-25 00:56:38.488 2024-02-25 00:56:38.488 900 TIP 437502 20603 6059159 2024-02-25 00:56:39.636 2024-02-25 00:56:39.636 100 FEE 437502 14225 6059160 2024-02-25 00:56:39.636 2024-02-25 00:56:39.636 900 TIP 437502 1468 6059178 2024-02-25 00:59:08.982 2024-02-25 00:59:08.982 2500 FEE 437804 1003 6059179 2024-02-25 00:59:08.982 2024-02-25 00:59:08.982 22500 TIP 437804 9099 6059182 2024-02-25 00:59:19.849 2024-02-25 00:59:19.849 2500 FEE 437804 20066 6059183 2024-02-25 00:59:19.849 2024-02-25 00:59:19.849 22500 TIP 437804 17552 6059191 2024-02-25 00:59:26.873 2024-02-25 00:59:26.873 13800 FEE 437817 9494 6059192 2024-02-25 00:59:26.873 2024-02-25 00:59:26.873 124200 TIP 437817 6602 6059193 2024-02-25 00:59:28.561 2024-02-25 00:59:28.561 6900 FEE 437817 20162 6059194 2024-02-25 00:59:28.561 2024-02-25 00:59:28.561 62100 TIP 437817 18862 6059207 2024-02-25 01:02:19.992 2024-02-25 01:02:19.992 1000 FEE 437800 16769 6059208 2024-02-25 01:02:19.992 2024-02-25 01:02:19.992 9000 TIP 437800 5519 6059235 2024-02-25 01:06:42.48 2024-02-25 01:06:42.48 4000 FEE 437775 21139 6059236 2024-02-25 01:06:42.48 2024-02-25 01:06:42.48 36000 TIP 437775 18076 6059254 2024-02-25 01:07:57.996 2024-02-25 01:07:57.996 2100 FEE 437785 18664 6059255 2024-02-25 01:07:57.996 2024-02-25 01:07:57.996 18900 TIP 437785 21040 6059263 2024-02-25 01:10:08.124 2024-02-25 01:10:08.124 28800 FEE 437775 16966 6059264 2024-02-25 01:10:08.124 2024-02-25 01:10:08.124 259200 TIP 437775 2010 6059319 2024-02-25 01:29:30.051 2024-02-25 01:29:30.051 300 FEE 437800 19488 6059320 2024-02-25 01:29:30.051 2024-02-25 01:29:30.051 2700 TIP 437800 6717 6059373 2024-02-25 01:38:18.65 2024-02-25 01:38:18.65 2100 FEE 437817 20817 6059374 2024-02-25 01:38:18.65 2024-02-25 01:38:18.65 18900 TIP 437817 6419 6059400 2024-02-25 01:45:56.906 2024-02-25 01:45:56.906 6900 FEE 437723 20837 6059401 2024-02-25 01:45:56.906 2024-02-25 01:45:56.906 62100 TIP 437723 10849 6059414 2024-02-25 01:48:01.716 2024-02-25 01:48:01.716 1000 FEE 437850 2735 6059418 2024-02-25 01:48:45.82 2024-02-25 01:48:45.82 2000 FEE 437758 14247 6059419 2024-02-25 01:48:45.82 2024-02-25 01:48:45.82 18000 TIP 437758 1605 6059432 2024-02-25 01:49:21.896 2024-02-25 01:49:21.896 1000 FEE 437792 18243 6059433 2024-02-25 01:49:21.896 2024-02-25 01:49:21.896 9000 TIP 437792 20156 6059436 2024-02-25 01:49:22.986 2024-02-25 01:49:22.986 1000 FEE 437792 20452 6059437 2024-02-25 01:49:22.986 2024-02-25 01:49:22.986 9000 TIP 437792 18008 6059446 2024-02-25 01:49:30.623 2024-02-25 01:49:30.623 1000 FEE 437756 19296 6059447 2024-02-25 01:49:30.623 2024-02-25 01:49:30.623 9000 TIP 437756 6430 6059462 2024-02-25 01:55:46.352 2024-02-25 01:55:46.352 2100 FEE 437817 2724 6059463 2024-02-25 01:55:46.352 2024-02-25 01:55:46.352 18900 TIP 437817 797 6059468 2024-02-25 01:55:47.687 2024-02-25 01:55:47.687 2100 FEE 437817 2749 6059469 2024-02-25 01:55:47.687 2024-02-25 01:55:47.687 18900 TIP 437817 21418 6059495 2024-02-25 02:01:36.474 2024-02-25 02:01:36.474 6900 FEE 437852 14990 6058677 2024-02-24 23:36:06.244 2024-02-24 23:36:06.244 1000 STREAM 141924 8037 6058678 2024-02-24 23:37:04.237 2024-02-24 23:37:04.237 1000 STREAM 141924 17221 6058698 2024-02-24 23:41:04.244 2024-02-24 23:41:04.244 1000 STREAM 141924 1224 6058744 2024-02-24 23:53:06.341 2024-02-24 23:53:06.341 1000 STREAM 141924 16230 6058749 2024-02-24 23:55:02.34 2024-02-24 23:55:02.34 1000 STREAM 141924 1352 6120704 2024-03-01 00:33:02.922 2024-03-01 00:33:02.922 1000 STREAM 141924 2013 6120707 2024-03-01 00:34:02.922 2024-03-01 00:34:02.922 1000 STREAM 141924 11314 6120714 2024-03-01 00:36:02.928 2024-03-01 00:36:02.928 1000 STREAM 141924 5522 6120715 2024-03-01 00:37:02.93 2024-03-01 00:37:02.93 1000 STREAM 141924 18637 6120747 2024-03-01 00:47:03.02 2024-03-01 00:47:03.02 1000 STREAM 141924 7760 6120763 2024-03-01 00:55:03.081 2024-03-01 00:55:03.081 1000 STREAM 141924 18470 6120772 2024-03-01 00:57:03.096 2024-03-01 00:57:03.096 1000 STREAM 141924 20715 6058702 2024-02-24 23:42:05.638 2024-02-24 23:42:05.638 1000 STREAM 141924 1519 6058721 2024-02-24 23:48:02.167 2024-02-24 23:48:02.167 1000 STREAM 141924 19030 6058755 2024-02-24 23:59:02.212 2024-02-24 23:59:02.212 1000 STREAM 141924 4292 6058769 2024-02-25 00:01:02.269 2024-02-25 00:01:02.269 1000 STREAM 141924 2776 6120708 2024-03-01 00:34:21.735 2024-03-01 00:34:21.735 20000 FEE 444454 15549 6120717 2024-03-01 00:38:41.865 2024-03-01 00:38:41.865 3100 FEE 444453 12609 6120718 2024-03-01 00:38:41.865 2024-03-01 00:38:41.865 27900 TIP 444453 2162 6120725 2024-03-01 00:40:39.243 2024-03-01 00:40:39.243 1000 FEE 444455 960 6120728 2024-03-01 00:41:17.83 2024-03-01 00:41:17.83 2500 FEE 444419 11395 6120729 2024-03-01 00:41:17.83 2024-03-01 00:41:17.83 22500 TIP 444419 14774 6120775 2024-03-01 00:57:36.83 2024-03-01 00:57:36.83 100 FEE 444452 7675 6120776 2024-03-01 00:57:36.83 2024-03-01 00:57:36.83 900 TIP 444452 4395 6120781 2024-03-01 00:58:29.966 2024-03-01 00:58:29.966 1000 FEE 442677 19952 6120782 2024-03-01 00:58:29.966 2024-03-01 00:58:29.966 9000 TIP 442677 2335 6120836 2024-03-01 01:11:19.674 2024-03-01 01:11:19.674 1000 FEE 444194 20180 6120837 2024-03-01 01:11:19.674 2024-03-01 01:11:19.674 9000 TIP 444194 4798 6120842 2024-03-01 01:11:29.393 2024-03-01 01:11:29.393 1000 FEE 444210 4059 6120843 2024-03-01 01:11:29.393 2024-03-01 01:11:29.393 9000 TIP 444210 16301 6120850 2024-03-01 01:12:03.823 2024-03-01 01:12:03.823 1000 FEE 444226 15890 6120851 2024-03-01 01:12:03.823 2024-03-01 01:12:03.823 9000 TIP 444226 19333 6120867 2024-03-01 01:15:53.093 2024-03-01 01:15:53.093 1000 FEE 444474 21412 6120883 2024-03-01 01:22:19.238 2024-03-01 01:22:19.238 1000 FEE 444476 19502 6120904 2024-03-01 01:25:18.531 2024-03-01 01:25:18.531 2500 FEE 444102 20841 6120905 2024-03-01 01:25:18.531 2024-03-01 01:25:18.531 22500 TIP 444102 20891 6120909 2024-03-01 01:26:39.898 2024-03-01 01:26:39.898 1000 FEE 444481 827 6120933 2024-03-01 01:36:23.124 2024-03-01 01:36:23.124 0 FEE 444486 9347 6120947 2024-03-01 01:44:32.386 2024-03-01 01:44:32.386 0 FEE 444489 19126 6120991 2024-03-01 02:05:29.997 2024-03-01 02:05:29.997 10000 FEE 443614 2061 6120992 2024-03-01 02:05:29.997 2024-03-01 02:05:29.997 90000 TIP 443614 2528 6120996 2024-03-01 02:06:04.477 2024-03-01 02:06:04.477 10000 FEE 443688 9242 6120997 2024-03-01 02:06:04.477 2024-03-01 02:06:04.477 90000 TIP 443688 16042 6121016 2024-03-01 02:17:03.463 2024-03-01 02:17:03.463 1000 FEE 444497 19815 6121026 2024-03-01 02:17:37.713 2024-03-01 02:17:37.713 2100 FEE 444168 19995 6121027 2024-03-01 02:17:37.713 2024-03-01 02:17:37.713 18900 TIP 444168 715 6121053 2024-03-01 02:25:48.554 2024-03-01 02:25:48.554 1000 FEE 443915 705 6121054 2024-03-01 02:25:48.554 2024-03-01 02:25:48.554 9000 TIP 443915 13132 6121066 2024-03-01 02:29:59.376 2024-03-01 02:29:59.376 10000 FEE 443810 17673 6121067 2024-03-01 02:29:59.376 2024-03-01 02:29:59.376 90000 TIP 443810 641 6121073 2024-03-01 02:30:36.731 2024-03-01 02:30:36.731 1000 FEE 444504 2734 6121077 2024-03-01 02:31:11.959 2024-03-01 02:31:11.959 1000 FEE 444505 17001 6121086 2024-03-01 02:31:32.084 2024-03-01 02:31:32.084 2100 FEE 444258 20904 6121087 2024-03-01 02:31:32.084 2024-03-01 02:31:32.084 18900 TIP 444258 20208 6121102 2024-03-01 02:37:51.111 2024-03-01 02:37:51.111 100000 DONT_LIKE_THIS 444496 739 6121140 2024-03-01 02:53:35.271 2024-03-01 02:53:35.271 1000 FEE 444514 11798 6121169 2024-03-01 03:02:08.64 2024-03-01 03:02:08.64 100 FEE 444407 13575 6121170 2024-03-01 03:02:08.64 2024-03-01 03:02:08.64 900 TIP 444407 21047 6121197 2024-03-01 03:06:52.461 2024-03-01 03:06:52.461 2700 FEE 444102 1801 6121198 2024-03-01 03:06:52.461 2024-03-01 03:06:52.461 24300 TIP 444102 21609 6121220 2024-03-01 03:11:57.064 2024-03-01 03:11:57.064 10000 FEE 423526 18269 6121221 2024-03-01 03:11:57.064 2024-03-01 03:11:57.064 90000 TIP 423526 18994 6121227 2024-03-01 03:14:24.059 2024-03-01 03:14:24.059 100000 FEE 444522 21140 6121231 2024-03-01 03:15:22.341 2024-03-01 03:15:22.341 1000 POLL 444078 2722 6121266 2024-03-01 03:30:42.218 2024-03-01 03:30:42.218 1000 FEE 444434 20502 6121267 2024-03-01 03:30:42.218 2024-03-01 03:30:42.218 9000 TIP 444434 14906 6121268 2024-03-01 03:30:44.384 2024-03-01 03:30:44.384 1000 FEE 444434 2347 6121269 2024-03-01 03:30:44.384 2024-03-01 03:30:44.384 9000 TIP 444434 21248 6121316 2024-03-01 03:42:51.49 2024-03-01 03:42:51.49 4200 FEE 444102 12744 6121317 2024-03-01 03:42:51.49 2024-03-01 03:42:51.49 37800 TIP 444102 4079 6121330 2024-03-01 03:47:54.2 2024-03-01 03:47:54.2 300 FEE 444365 20026 6121331 2024-03-01 03:47:54.2 2024-03-01 03:47:54.2 2700 TIP 444365 8423 6121376 2024-03-01 04:01:58.593 2024-03-01 04:01:58.593 1000 FEE 444173 9276 6121377 2024-03-01 04:01:58.593 2024-03-01 04:01:58.593 9000 TIP 444173 20381 6121378 2024-03-01 04:01:58.762 2024-03-01 04:01:58.762 1000 FEE 444173 20897 6121379 2024-03-01 04:01:58.762 2024-03-01 04:01:58.762 9000 TIP 444173 6136 6121443 2024-03-01 04:16:17.37 2024-03-01 04:16:17.37 100 FEE 444462 4173 6121444 2024-03-01 04:16:17.37 2024-03-01 04:16:17.37 900 TIP 444462 11821 6121455 2024-03-01 04:16:23.88 2024-03-01 04:16:23.88 500 FEE 443545 20603 6121456 2024-03-01 04:16:23.88 2024-03-01 04:16:23.88 4500 TIP 443545 759 6121465 2024-03-01 04:16:27.933 2024-03-01 04:16:27.933 500 FEE 444102 14731 6121466 2024-03-01 04:16:27.933 2024-03-01 04:16:27.933 4500 TIP 444102 19537 6121478 2024-03-01 04:16:46.032 2024-03-01 04:16:46.032 900 FEE 444522 18309 6121479 2024-03-01 04:16:46.032 2024-03-01 04:16:46.032 8100 TIP 444522 19398 6121506 2024-03-01 04:17:01.601 2024-03-01 04:17:01.601 500 FEE 444376 19938 6121507 2024-03-01 04:17:01.601 2024-03-01 04:17:01.601 4500 TIP 444376 13781 6121523 2024-03-01 04:17:28.528 2024-03-01 04:17:28.528 9000 FEE 444388 20059 6121524 2024-03-01 04:17:28.528 2024-03-01 04:17:28.528 81000 TIP 444388 20310 6121534 2024-03-01 04:18:31.687 2024-03-01 04:18:31.687 500 FEE 444179 20299 6121535 2024-03-01 04:18:31.687 2024-03-01 04:18:31.687 4500 TIP 444179 683 6121538 2024-03-01 04:18:54.044 2024-03-01 04:18:54.044 500 FEE 444083 3504 6121539 2024-03-01 04:18:54.044 2024-03-01 04:18:54.044 4500 TIP 444083 4084 6121551 2024-03-01 04:19:08.748 2024-03-01 04:19:08.748 100 FEE 444498 20555 6121552 2024-03-01 04:19:08.748 2024-03-01 04:19:08.748 900 TIP 444498 19583 6121553 2024-03-01 04:19:09.911 2024-03-01 04:19:09.911 100 FEE 444498 2614 6121554 2024-03-01 04:19:09.911 2024-03-01 04:19:09.911 900 TIP 444498 1038 6121567 2024-03-01 04:19:51.939 2024-03-01 04:19:51.939 2100 FEE 444519 954 6121568 2024-03-01 04:19:51.939 2024-03-01 04:19:51.939 18900 TIP 444519 21357 6121572 2024-03-01 04:20:01.97 2024-03-01 04:20:01.97 90000 FEE 443712 21612 6121573 2024-03-01 04:20:01.97 2024-03-01 04:20:01.97 810000 TIP 443712 16704 6121613 2024-03-01 04:23:34.574 2024-03-01 04:23:34.574 1000 FEE 444179 16296 6121614 2024-03-01 04:23:34.574 2024-03-01 04:23:34.574 9000 TIP 444179 19848 6121615 2024-03-01 04:23:55.437 2024-03-01 04:23:55.437 1000 FEE 443625 17693 6121616 2024-03-01 04:23:55.437 2024-03-01 04:23:55.437 9000 TIP 443625 1003 6121620 2024-03-01 04:24:06.749 2024-03-01 04:24:06.749 9000 FEE 444522 16665 6121621 2024-03-01 04:24:06.749 2024-03-01 04:24:06.749 81000 TIP 444522 1552 6121664 2024-03-01 04:37:16.451 2024-03-01 04:37:16.451 900 FEE 444475 19332 6121665 2024-03-01 04:37:16.451 2024-03-01 04:37:16.451 8100 TIP 444475 14669 6121683 2024-03-01 04:39:22.153 2024-03-01 04:39:22.153 1000 FEE 443799 21178 6121684 2024-03-01 04:39:22.153 2024-03-01 04:39:22.153 9000 TIP 443799 11885 6121756 2024-03-01 04:53:13.779 2024-03-01 04:53:13.779 1700 FEE 444561 19943 6121757 2024-03-01 04:53:13.779 2024-03-01 04:53:13.779 15300 TIP 444561 20812 6121787 2024-03-01 04:56:31.004 2024-03-01 04:56:31.004 1000 FEE 444376 21339 6121788 2024-03-01 04:56:31.004 2024-03-01 04:56:31.004 9000 TIP 444376 16848 6121836 2024-03-01 05:05:19.224 2024-03-01 05:05:19.224 1000 FEE 444365 20117 6121837 2024-03-01 05:05:19.224 2024-03-01 05:05:19.224 9000 TIP 444365 1631 6121838 2024-03-01 05:05:32.355 2024-03-01 05:05:32.355 1000 FEE 443625 1394 6058704 2024-02-24 23:43:03.958 2024-02-24 23:43:03.958 1000 STREAM 141924 13216 6058705 2024-02-24 23:44:02.001 2024-02-24 23:44:02.001 1000 STREAM 141924 18269 6058706 2024-02-24 23:45:04 2024-02-24 23:45:04 1000 STREAM 141924 20681 6058731 2024-02-24 23:50:04.778 2024-02-24 23:50:04.778 1000 STREAM 141924 19938 6058742 2024-02-24 23:52:05.223 2024-02-24 23:52:05.223 1000 STREAM 141924 20889 6058747 2024-02-24 23:54:05.214 2024-02-24 23:54:05.214 1000 STREAM 141924 20231 6058753 2024-02-24 23:57:03.451 2024-02-24 23:57:03.451 1000 STREAM 141924 21033 6058754 2024-02-24 23:58:03.448 2024-02-24 23:58:03.448 1000 STREAM 141924 19193 6058808 2024-02-25 00:07:03.616 2024-02-25 00:07:03.616 1000 STREAM 141924 1603 6058834 2024-02-25 00:11:04.148 2024-02-25 00:11:04.148 1000 STREAM 141924 2338 6058835 2024-02-25 00:12:02.146 2024-02-25 00:12:02.146 1000 STREAM 141924 9969 6058860 2024-02-25 00:17:02.209 2024-02-25 00:17:02.209 1000 STREAM 141924 18280 6058862 2024-02-25 00:19:02.22 2024-02-25 00:19:02.22 1000 STREAM 141924 814 6058867 2024-02-25 00:21:02.228 2024-02-25 00:21:02.228 1000 STREAM 141924 7978 6058922 2024-02-25 00:26:02.261 2024-02-25 00:26:02.261 1000 STREAM 141924 9421 6058929 2024-02-25 00:28:02.255 2024-02-25 00:28:02.255 1000 STREAM 141924 20840 6059067 2024-02-25 00:46:01.82 2024-02-25 00:46:01.82 1000 STREAM 141924 3396 6059239 2024-02-25 01:07:02.322 2024-02-25 01:07:02.322 1000 STREAM 141924 21136 6059287 2024-02-25 01:19:02.97 2024-02-25 01:19:02.97 1000 STREAM 141924 15719 6059288 2024-02-25 01:20:03.004 2024-02-25 01:20:03.004 1000 STREAM 141924 9159 6059296 2024-02-25 01:24:02.427 2024-02-25 01:24:02.427 1000 STREAM 141924 1468 6059334 2024-02-25 01:31:02.774 2024-02-25 01:31:02.774 1000 STREAM 141924 1092 6059335 2024-02-25 01:32:02.906 2024-02-25 01:32:02.906 1000 STREAM 141924 6749 6059341 2024-02-25 01:34:02.932 2024-02-25 01:34:02.932 1000 STREAM 141924 20246 6059344 2024-02-25 01:35:02.972 2024-02-25 01:35:02.972 1000 STREAM 141924 9276 6059412 2024-02-25 01:47:02.681 2024-02-25 01:47:02.681 1000 STREAM 141924 658 6059415 2024-02-25 01:48:03.08 2024-02-25 01:48:03.08 1000 STREAM 141924 16665 6059459 2024-02-25 01:54:03.093 2024-02-25 01:54:03.093 1000 STREAM 141924 725 6059481 2024-02-25 01:58:02.569 2024-02-25 01:58:02.569 1000 STREAM 141924 20581 6059538 2024-02-25 02:11:02.563 2024-02-25 02:11:02.563 1000 STREAM 141924 19639 6059588 2024-02-25 02:21:03.304 2024-02-25 02:21:03.304 1000 STREAM 141924 5828 6059596 2024-02-25 02:25:02.669 2024-02-25 02:25:02.669 1000 STREAM 141924 19661 6059952 2024-02-25 03:08:03.283 2024-02-25 03:08:03.283 1000 STREAM 141924 2029 6059961 2024-02-25 03:11:03.315 2024-02-25 03:11:03.315 1000 STREAM 141924 19156 6059962 2024-02-25 03:12:03.343 2024-02-25 03:12:03.343 1000 STREAM 141924 761 6059967 2024-02-25 03:13:03.333 2024-02-25 03:13:03.333 1000 STREAM 141924 14247 6059972 2024-02-25 03:14:03.357 2024-02-25 03:14:03.357 1000 STREAM 141924 678 6059980 2024-02-25 03:17:03.648 2024-02-25 03:17:03.648 1000 STREAM 141924 654 6059981 2024-02-25 03:18:03.655 2024-02-25 03:18:03.655 1000 STREAM 141924 12779 6059989 2024-02-25 03:22:03.577 2024-02-25 03:22:03.577 1000 STREAM 141924 1738 6060033 2024-02-25 03:32:03.696 2024-02-25 03:32:03.696 1000 STREAM 141924 20208 6060049 2024-02-25 03:36:02.742 2024-02-25 03:36:02.742 1000 STREAM 141924 21091 6060053 2024-02-25 03:37:02.795 2024-02-25 03:37:02.795 1000 STREAM 141924 671 6060070 2024-02-25 03:42:03.045 2024-02-25 03:42:03.045 1000 STREAM 141924 2264 6060075 2024-02-25 03:43:03.036 2024-02-25 03:43:03.036 1000 STREAM 141924 16348 6060078 2024-02-25 03:46:03.864 2024-02-25 03:46:03.864 1000 STREAM 141924 12769 6060117 2024-02-25 03:57:03.736 2024-02-25 03:57:03.736 1000 STREAM 141924 976 6060196 2024-02-25 04:12:04.291 2024-02-25 04:12:04.291 1000 STREAM 141924 20340 6060197 2024-02-25 04:13:04.305 2024-02-25 04:13:04.305 1000 STREAM 141924 12272 6060263 2024-02-25 04:21:03.717 2024-02-25 04:21:03.717 1000 STREAM 141924 10102 6060264 2024-02-25 04:22:03.728 2024-02-25 04:22:03.728 1000 STREAM 141924 20757 6060266 2024-02-25 04:23:03.728 2024-02-25 04:23:03.728 1000 STREAM 141924 3683 6060270 2024-02-25 04:24:04.983 2024-02-25 04:24:04.983 1000 STREAM 141924 6300 6060299 2024-02-25 04:35:04.652 2024-02-25 04:35:04.652 1000 STREAM 141924 749 6060320 2024-02-25 04:36:04.655 2024-02-25 04:36:04.655 1000 STREAM 141924 7986 6060323 2024-02-25 04:37:04.655 2024-02-25 04:37:04.655 1000 STREAM 141924 21573 6060324 2024-02-25 04:38:04.668 2024-02-25 04:38:04.668 1000 STREAM 141924 897 6060326 2024-02-25 04:39:04.682 2024-02-25 04:39:04.682 1000 STREAM 141924 2335 6060343 2024-02-25 04:49:05.105 2024-02-25 04:49:05.105 1000 STREAM 141924 20892 6060352 2024-02-25 04:52:03.883 2024-02-25 04:52:03.883 1000 STREAM 141924 6041 6060355 2024-02-25 04:54:04.355 2024-02-25 04:54:04.355 1000 STREAM 141924 9355 6060356 2024-02-25 04:55:04.369 2024-02-25 04:55:04.369 1000 STREAM 141924 12024 6060359 2024-02-25 04:56:04.713 2024-02-25 04:56:04.713 1000 STREAM 141924 18177 6060361 2024-02-25 04:58:03.872 2024-02-25 04:58:03.872 1000 STREAM 141924 19907 6060362 2024-02-25 04:59:03.87 2024-02-25 04:59:03.87 1000 STREAM 141924 5978 6060366 2024-02-25 05:01:04.854 2024-02-25 05:01:04.854 1000 STREAM 141924 1493 6060375 2024-02-25 05:06:04.526 2024-02-25 05:06:04.526 1000 STREAM 141924 19138 6060379 2024-02-25 05:09:05.167 2024-02-25 05:09:05.167 1000 STREAM 141924 21292 6060385 2024-02-25 05:11:05.135 2024-02-25 05:11:05.135 1000 STREAM 141924 18336 6060386 2024-02-25 05:12:03.136 2024-02-25 05:12:03.136 1000 STREAM 141924 2508 6060394 2024-02-25 05:14:03.144 2024-02-25 05:14:03.144 1000 STREAM 141924 16653 6060399 2024-02-25 05:15:05.168 2024-02-25 05:15:05.168 1000 STREAM 141924 674 6060403 2024-02-25 05:18:03.185 2024-02-25 05:18:03.185 1000 STREAM 141924 8505 6060424 2024-02-25 05:19:05.214 2024-02-25 05:19:05.214 1000 STREAM 141924 1603 6060426 2024-02-25 05:21:03.217 2024-02-25 05:21:03.217 1000 STREAM 141924 14213 6060427 2024-02-25 05:22:03.225 2024-02-25 05:22:03.225 1000 STREAM 141924 9365 6060432 2024-02-25 05:23:05.245 2024-02-25 05:23:05.245 1000 STREAM 141924 16858 6060449 2024-02-25 05:27:05.302 2024-02-25 05:27:05.302 1000 STREAM 141924 15239 6060450 2024-02-25 05:28:03.296 2024-02-25 05:28:03.296 1000 STREAM 141924 18180 6060454 2024-02-25 05:30:03.332 2024-02-25 05:30:03.332 1000 STREAM 141924 5752 6060455 2024-02-25 05:31:03.323 2024-02-25 05:31:03.323 1000 STREAM 141924 6136 6060457 2024-02-25 05:33:05.349 2024-02-25 05:33:05.349 1000 STREAM 141924 2724 6060462 2024-02-25 05:36:03.369 2024-02-25 05:36:03.369 1000 STREAM 141924 9669 6060465 2024-02-25 05:37:03.377 2024-02-25 05:37:03.377 1000 STREAM 141924 9346 6060467 2024-02-25 05:39:03.393 2024-02-25 05:39:03.393 1000 STREAM 141924 20663 6060469 2024-02-25 05:41:03.409 2024-02-25 05:41:03.409 1000 STREAM 141924 9177 6060472 2024-02-25 05:43:03.434 2024-02-25 05:43:03.434 1000 STREAM 141924 5036 6060477 2024-02-25 05:48:03.511 2024-02-25 05:48:03.511 1000 STREAM 141924 11263 6060479 2024-02-25 05:50:03.548 2024-02-25 05:50:03.548 1000 STREAM 141924 9348 6060480 2024-02-25 05:51:03.546 2024-02-25 05:51:03.546 1000 STREAM 141924 2162 6060481 2024-02-25 05:52:03.555 2024-02-25 05:52:03.555 1000 STREAM 141924 1489 6060483 2024-02-25 05:53:03.558 2024-02-25 05:53:03.558 1000 STREAM 141924 8385 6060504 2024-02-25 05:57:03.625 2024-02-25 05:57:03.625 1000 STREAM 141924 2583 6120739 2024-03-01 00:44:03.789 2024-03-01 00:44:03.789 1000 STREAM 141924 18518 6120748 2024-03-01 00:48:03.811 2024-03-01 00:48:03.811 1000 STREAM 141924 1495 6120780 2024-03-01 00:58:01.857 2024-03-01 00:58:01.857 1000 STREAM 141924 9517 6120786 2024-03-01 01:00:01.881 2024-03-01 01:00:01.881 1000 STREAM 141924 7418 6120803 2024-03-01 01:03:01.877 2024-03-01 01:03:01.877 1000 STREAM 141924 21386 6120813 2024-03-01 01:06:03.896 2024-03-01 01:06:03.896 1000 STREAM 141924 11395 6120814 2024-03-01 01:07:01.898 2024-03-01 01:07:01.898 1000 STREAM 141924 14267 6120817 2024-03-01 01:08:03.896 2024-03-01 01:08:03.896 1000 STREAM 141924 8472 6120828 2024-03-01 01:10:03.915 2024-03-01 01:10:03.915 1000 STREAM 141924 21547 6120852 2024-03-01 01:12:03.926 2024-03-01 01:12:03.926 1000 STREAM 141924 4538 6120855 2024-03-01 01:13:03.934 2024-03-01 01:13:03.934 1000 STREAM 141924 1272 6058708 2024-02-24 23:46:02.004 2024-02-24 23:46:02.004 1000 STREAM 141924 1122 6058725 2024-02-24 23:49:04.789 2024-02-24 23:49:04.789 1000 STREAM 141924 1320 6058768 2024-02-25 00:00:03.514 2024-02-25 00:00:03.514 1000 STREAM 141924 17091 6058782 2024-02-25 00:02:03.499 2024-02-25 00:02:03.499 1000 STREAM 141924 1433 6058787 2024-02-25 00:03:03.576 2024-02-25 00:03:03.576 1000 STREAM 141924 6749 6058790 2024-02-25 00:04:03.599 2024-02-25 00:04:03.599 1000 STREAM 141924 12744 6058795 2024-02-25 00:05:03.615 2024-02-25 00:05:03.615 1000 STREAM 141924 21044 6058840 2024-02-25 00:13:04.164 2024-02-25 00:13:04.164 1000 STREAM 141924 12819 6058850 2024-02-25 00:15:02.192 2024-02-25 00:15:02.192 1000 STREAM 141924 15052 6058904 2024-02-25 00:22:04.241 2024-02-25 00:22:04.241 1000 STREAM 141924 21320 6058915 2024-02-25 00:24:02.247 2024-02-25 00:24:02.247 1000 STREAM 141924 3377 6120743 2024-03-01 00:45:03.789 2024-03-01 00:45:03.789 1000 STREAM 141924 2256 6120753 2024-03-01 00:49:03.817 2024-03-01 00:49:03.817 1000 STREAM 141924 21482 6120760 2024-03-01 00:53:03.866 2024-03-01 00:53:03.866 1000 STREAM 141924 14939 6120762 2024-03-01 00:54:01.846 2024-03-01 00:54:01.846 1000 STREAM 141924 2724 6120765 2024-03-01 00:56:01.85 2024-03-01 00:56:01.85 1000 STREAM 141924 18220 6120804 2024-03-01 01:04:03.902 2024-03-01 01:04:03.902 1000 STREAM 141924 14906 6120808 2024-03-01 01:05:01.898 2024-03-01 01:05:01.898 1000 STREAM 141924 11477 6120825 2024-03-01 01:09:01.914 2024-03-01 01:09:01.914 1000 STREAM 141924 16282 6120859 2024-03-01 01:14:03.937 2024-03-01 01:14:03.937 1000 STREAM 141924 20687 6120864 2024-03-01 01:15:03.935 2024-03-01 01:15:03.935 1000 STREAM 141924 21451 6120872 2024-03-01 01:18:03.95 2024-03-01 01:18:03.95 1000 STREAM 141924 9184 6120877 2024-03-01 01:19:03.964 2024-03-01 01:19:03.964 1000 STREAM 141924 7827 6120911 2024-03-01 01:28:04.009 2024-03-01 01:28:04.009 1000 STREAM 141924 20901 6120948 2024-03-01 01:45:02.111 2024-03-01 01:45:02.111 1000 STREAM 141924 12368 6120954 2024-03-01 01:50:02.152 2024-03-01 01:50:02.152 1000 STREAM 141924 16267 6120956 2024-03-01 01:52:02.133 2024-03-01 01:52:02.133 1000 STREAM 141924 14688 6120957 2024-03-01 01:53:02.258 2024-03-01 01:53:02.258 1000 STREAM 141924 18396 6120964 2024-03-01 01:56:02.281 2024-03-01 01:56:02.281 1000 STREAM 141924 1120 6120970 2024-03-01 01:57:02.286 2024-03-01 01:57:02.286 1000 STREAM 141924 20881 6120982 2024-03-01 02:00:02.322 2024-03-01 02:00:02.322 1000 STREAM 141924 4175 6120987 2024-03-01 02:02:02.336 2024-03-01 02:02:02.336 1000 STREAM 141924 8648 6120995 2024-03-01 02:06:02.364 2024-03-01 02:06:02.364 1000 STREAM 141924 16670 6121002 2024-03-01 02:07:02.467 2024-03-01 02:07:02.467 1000 STREAM 141924 19732 6121003 2024-03-01 02:08:02.463 2024-03-01 02:08:02.463 1000 STREAM 141924 9345 6121004 2024-03-01 02:09:02.463 2024-03-01 02:09:02.463 1000 STREAM 141924 11477 6121009 2024-03-01 02:13:02.472 2024-03-01 02:13:02.472 1000 STREAM 141924 10409 6121012 2024-03-01 02:16:02.561 2024-03-01 02:16:02.561 1000 STREAM 141924 1723 6121034 2024-03-01 02:18:02.581 2024-03-01 02:18:02.581 1000 STREAM 141924 7913 6121040 2024-03-01 02:23:02.904 2024-03-01 02:23:02.904 1000 STREAM 141924 3396 6121076 2024-03-01 02:31:02.971 2024-03-01 02:31:02.971 1000 STREAM 141924 15060 6121088 2024-03-01 02:32:02.978 2024-03-01 02:32:02.978 1000 STREAM 141924 21228 6121103 2024-03-01 02:38:02.985 2024-03-01 02:38:02.985 1000 STREAM 141924 2444 6121109 2024-03-01 02:42:03.026 2024-03-01 02:42:03.026 1000 STREAM 141924 5520 6121111 2024-03-01 02:44:03.043 2024-03-01 02:44:03.043 1000 STREAM 141924 21207 6121139 2024-03-01 02:53:03.116 2024-03-01 02:53:03.116 1000 STREAM 141924 1208 6121145 2024-03-01 02:57:03.141 2024-03-01 02:57:03.141 1000 STREAM 141924 803 6058710 2024-02-24 23:47:04.93 2024-02-24 23:47:04.93 1000 STREAM 141924 5776 6120745 2024-03-01 00:46:03.018 2024-03-01 00:46:03.018 1000 STREAM 141924 10007 6120755 2024-03-01 00:51:03.042 2024-03-01 00:51:03.042 1000 STREAM 141924 18235 6120784 2024-03-01 00:59:03.112 2024-03-01 00:59:03.112 1000 STREAM 141924 19652 6120800 2024-03-01 01:01:03.133 2024-03-01 01:01:03.133 1000 STREAM 141924 2735 6120801 2024-03-01 01:02:03.155 2024-03-01 01:02:03.155 1000 STREAM 141924 3461 6120870 2024-03-01 01:16:03.208 2024-03-01 01:16:03.208 1000 STREAM 141924 16355 6120879 2024-03-01 01:20:03.242 2024-03-01 01:20:03.242 1000 STREAM 141924 18220 6120881 2024-03-01 01:21:03.237 2024-03-01 01:21:03.237 1000 STREAM 141924 1474 6120882 2024-03-01 01:22:03.239 2024-03-01 01:22:03.239 1000 STREAM 141924 940 6120899 2024-03-01 01:24:03.269 2024-03-01 01:24:03.269 1000 STREAM 141924 20220 6120912 2024-03-01 01:29:03.298 2024-03-01 01:29:03.298 1000 STREAM 141924 17817 6120914 2024-03-01 01:30:03.307 2024-03-01 01:30:03.307 1000 STREAM 141924 17707 6120926 2024-03-01 01:32:03.337 2024-03-01 01:32:03.337 1000 STREAM 141924 17953 6120928 2024-03-01 01:34:03.362 2024-03-01 01:34:03.362 1000 STREAM 141924 9333 6120936 2024-03-01 01:38:03.393 2024-03-01 01:38:03.393 1000 STREAM 141924 21036 6120945 2024-03-01 01:43:03.407 2024-03-01 01:43:03.407 1000 STREAM 141924 18630 6058770 2024-02-25 00:01:34.947 2024-02-25 00:01:34.947 7700 FEE 437771 6384 6058771 2024-02-25 00:01:34.947 2024-02-25 00:01:34.947 69300 TIP 437771 2232 6058785 2024-02-25 00:02:25.883 2024-02-25 00:02:25.883 23300 FEE 436797 21458 6058786 2024-02-25 00:02:25.883 2024-02-25 00:02:25.883 209700 TIP 436797 17513 6058802 2024-02-25 00:06:33.904 2024-02-25 00:06:33.904 1000 FEE 437705 20546 6058803 2024-02-25 00:06:33.904 2024-02-25 00:06:33.904 9000 TIP 437705 738 6058817 2024-02-25 00:09:51.913 2024-02-25 00:09:51.913 1000 FEE 437781 18209 6058827 2024-02-25 00:10:22.255 2024-02-25 00:10:22.255 1000 FEE 437679 2431 6058828 2024-02-25 00:10:22.255 2024-02-25 00:10:22.255 9000 TIP 437679 699 6058829 2024-02-25 00:10:37.872 2024-02-25 00:10:37.872 1000 FEE 437782 20964 6058884 2024-02-25 00:21:36.064 2024-02-25 00:21:36.064 1000 FEE 437682 1092 6058885 2024-02-25 00:21:36.064 2024-02-25 00:21:36.064 9000 TIP 437682 18313 6058909 2024-02-25 00:23:15.282 2024-02-25 00:23:15.282 1000 FEE 437788 17217 6058921 2024-02-25 00:25:31.385 2024-02-25 00:25:31.385 1000 FEE 437792 18769 6058937 2024-02-25 00:29:36.209 2024-02-25 00:29:36.209 1000 FEE 437769 2444 6058938 2024-02-25 00:29:36.209 2024-02-25 00:29:36.209 9000 TIP 437769 699 6058943 2024-02-25 00:31:18.342 2024-02-25 00:31:18.342 1000 FEE 437796 19309 6058944 2024-02-25 00:31:25.589 2024-02-25 00:31:25.589 4000 FEE 437790 4378 6058945 2024-02-25 00:31:25.589 2024-02-25 00:31:25.589 36000 TIP 437790 20258 6058947 2024-02-25 00:31:50.738 2024-02-25 00:31:50.738 1000 FEE 437798 20504 6058957 2024-02-25 00:34:00.925 2024-02-25 00:34:00.925 300 FEE 437752 21401 6058958 2024-02-25 00:34:00.925 2024-02-25 00:34:00.925 2700 TIP 437752 21148 6058990 2024-02-25 00:34:03.882 2024-02-25 00:34:03.882 300 FEE 437752 5175 6058991 2024-02-25 00:34:03.882 2024-02-25 00:34:03.882 2700 TIP 437752 678 6058994 2024-02-25 00:34:53.75 2024-02-25 00:34:53.75 300 FEE 437723 18330 6058995 2024-02-25 00:34:53.75 2024-02-25 00:34:53.75 2700 TIP 437723 14909 6059016 2024-02-25 00:34:56.895 2024-02-25 00:34:56.895 300 FEE 437723 18494 6059017 2024-02-25 00:34:56.895 2024-02-25 00:34:56.895 2700 TIP 437723 894 6059018 2024-02-25 00:34:57.124 2024-02-25 00:34:57.124 300 FEE 437723 12072 6059019 2024-02-25 00:34:57.124 2024-02-25 00:34:57.124 2700 TIP 437723 19943 6059045 2024-02-25 00:41:44.173 2024-02-25 00:41:44.173 1000 FEE 437802 14385 6059061 2024-02-25 00:45:12.488 2024-02-25 00:45:12.488 1000 FEE 437806 20108 6059072 2024-02-25 00:46:37.594 2024-02-25 00:46:37.594 2100 FEE 437807 21091 6059073 2024-02-25 00:46:37.594 2024-02-25 00:46:37.594 18900 TIP 437807 20073 6059086 2024-02-25 00:48:31.192 2024-02-25 00:48:31.192 12800 FEE 161752 4118 6059087 2024-02-25 00:48:31.192 2024-02-25 00:48:31.192 115200 TIP 161752 19662 6059089 2024-02-25 00:48:57.651 2024-02-25 00:48:57.651 2100 FEE 437769 5557 6059090 2024-02-25 00:48:57.651 2024-02-25 00:48:57.651 18900 TIP 437769 27 6059101 2024-02-25 00:51:13.998 2024-02-25 00:51:13.998 0 FEE 437810 20911 6059113 2024-02-25 00:53:31.443 2024-02-25 00:53:31.443 0 FEE 437810 12160 6059122 2024-02-25 00:56:18.641 2024-02-25 00:56:18.641 1000 FEE 437814 1320 6059149 2024-02-25 00:56:38.745 2024-02-25 00:56:38.745 100 FEE 437502 21577 6059150 2024-02-25 00:56:38.745 2024-02-25 00:56:38.745 900 TIP 437502 940 6059163 2024-02-25 00:57:09.991 2024-02-25 00:57:09.991 1000 FEE 437816 13854 6059203 2024-02-25 01:01:09.349 2024-02-25 01:01:09.349 1000 FEE 437822 9 6059218 2024-02-25 01:03:18.82 2024-02-25 01:03:18.82 1000 FEE 437823 6202 6059225 2024-02-25 01:06:12.274 2024-02-25 01:06:12.274 4000 FEE 437821 21417 6059226 2024-02-25 01:06:12.274 2024-02-25 01:06:12.274 36000 TIP 437821 2390 6059240 2024-02-25 01:07:05.612 2024-02-25 01:07:05.612 2100 FEE 437720 5017 6059241 2024-02-25 01:07:05.612 2024-02-25 01:07:05.612 18900 TIP 437720 20163 6059242 2024-02-25 01:07:19.429 2024-02-25 01:07:19.429 3200 FEE 437723 10586 6059243 2024-02-25 01:07:19.429 2024-02-25 01:07:19.429 28800 TIP 437723 1652 6059286 2024-02-25 01:18:09.832 2024-02-25 01:18:09.832 1000 FEE 437830 14169 6059297 2024-02-25 01:24:42.525 2024-02-25 01:24:42.525 1000 FEE 437800 20669 6059298 2024-02-25 01:24:42.525 2024-02-25 01:24:42.525 9000 TIP 437800 5708 6059304 2024-02-25 01:27:50.636 2024-02-25 01:27:50.636 2000 FEE 433114 21480 6059305 2024-02-25 01:27:50.636 2024-02-25 01:27:50.636 18000 TIP 433114 10519 6059339 2024-02-25 01:33:32 2024-02-25 01:33:32 400 FEE 437777 21400 6059340 2024-02-25 01:33:32 2024-02-25 01:33:32 3600 TIP 437777 1236 6059342 2024-02-25 01:34:06.445 2024-02-25 01:34:06.445 1000 FEE 437836 19153 6059362 2024-02-25 01:37:32.27 2024-02-25 01:37:32.27 2100 FEE 437832 8400 6059363 2024-02-25 01:37:32.27 2024-02-25 01:37:32.27 18900 TIP 437832 2077 6059368 2024-02-25 01:37:46.735 2024-02-25 01:37:46.735 2100 FEE 437775 14465 6059369 2024-02-25 01:37:46.735 2024-02-25 01:37:46.735 18900 TIP 437775 698 6059413 2024-02-25 01:47:11.237 2024-02-25 01:47:11.237 10000 FEE 437848 18735 6059427 2024-02-25 01:49:10.876 2024-02-25 01:49:10.876 1000 FEE 437851 20302 6059428 2024-02-25 01:49:20.911 2024-02-25 01:49:20.911 1000 FEE 437792 19886 6059429 2024-02-25 01:49:20.911 2024-02-25 01:49:20.911 9000 TIP 437792 1175 6059440 2024-02-25 01:49:29.236 2024-02-25 01:49:29.236 1000 FEE 437756 10273 6059441 2024-02-25 01:49:29.236 2024-02-25 01:49:29.236 9000 TIP 437756 13399 6059452 2024-02-25 01:52:32.9 2024-02-25 01:52:32.9 2100 FEE 437670 19398 6059453 2024-02-25 01:52:32.9 2024-02-25 01:52:32.9 18900 TIP 437670 9844 6059454 2024-02-25 01:52:38.671 2024-02-25 01:52:38.671 1000 FEE 437853 17446 6059466 2024-02-25 01:55:47.276 2024-02-25 01:55:47.276 2100 FEE 437817 6160 6059467 2024-02-25 01:55:47.276 2024-02-25 01:55:47.276 18900 TIP 437817 14688 6059499 2024-02-25 02:01:49.779 2024-02-25 02:01:49.779 6900 FEE 437819 16355 6059500 2024-02-25 02:01:49.779 2024-02-25 02:01:49.779 62100 TIP 437819 14152 6059505 2024-02-25 02:01:59.183 2024-02-25 02:01:59.183 6900 FEE 437854 20990 6059506 2024-02-25 02:01:59.183 2024-02-25 02:01:59.183 62100 TIP 437854 19018 6059512 2024-02-25 02:02:21.529 2024-02-25 02:02:21.529 1000 FEE 437859 7877 6059517 2024-02-25 02:03:08.535 2024-02-25 02:03:08.535 1000 FEE 437812 12976 6059518 2024-02-25 02:03:08.535 2024-02-25 02:03:08.535 9000 TIP 437812 20906 6059531 2024-02-25 02:08:29.515 2024-02-25 02:08:29.515 100000 FEE 437864 21148 6059575 2024-02-25 02:16:56.09 2024-02-25 02:16:56.09 1000 FEE 437771 14080 6059576 2024-02-25 02:16:56.09 2024-02-25 02:16:56.09 9000 TIP 437771 13174 6059586 2024-02-25 02:20:48.949 2024-02-25 02:20:48.949 10000 FEE 437869 836 6059626 2024-02-25 02:32:18.949 2024-02-25 02:32:18.949 1000 FEE 437878 9833 6059627 2024-02-25 02:32:41.468 2024-02-25 02:32:41.468 1000 FEE 437879 15594 6059628 2024-02-25 02:32:44.419 2024-02-25 02:32:44.419 1000 FEE 437611 1519 6059629 2024-02-25 02:32:44.419 2024-02-25 02:32:44.419 9000 TIP 437611 17162 6059636 2024-02-25 02:32:45.54 2024-02-25 02:32:45.54 1000 FEE 437611 825 6059637 2024-02-25 02:32:45.54 2024-02-25 02:32:45.54 9000 TIP 437611 14503 6059653 2024-02-25 02:35:31.517 2024-02-25 02:35:31.517 9000 FEE 437798 7966 6059654 2024-02-25 02:35:31.517 2024-02-25 02:35:31.517 81000 TIP 437798 5661 6059715 2024-02-25 02:43:21.622 2024-02-25 02:43:21.622 1000 FEE 437884 19021 6059723 2024-02-25 02:46:00.991 2024-02-25 02:46:00.991 1000 FEE 437853 2088 6059724 2024-02-25 02:46:00.991 2024-02-25 02:46:00.991 9000 TIP 437853 21413 6059764 2024-02-25 02:55:21.969 2024-02-25 02:55:21.969 3300 FEE 437723 20811 6059765 2024-02-25 02:55:21.969 2024-02-25 02:55:21.969 29700 TIP 437723 21485 6059796 2024-02-25 02:57:47.788 2024-02-25 02:57:47.788 1000 FEE 437895 19018 6059813 2024-02-25 03:00:10.448 2024-02-25 03:00:10.448 100 FEE 437893 16097 6059814 2024-02-25 03:00:10.448 2024-02-25 03:00:10.448 900 TIP 437893 27 6059838 2024-02-25 03:00:32.567 2024-02-25 03:00:32.567 2100 FEE 437218 15521 6058796 2024-02-25 00:06:02.449 2024-02-25 00:06:02.449 1000 STREAM 141924 14906 6058809 2024-02-25 00:08:02.443 2024-02-25 00:08:02.443 1000 STREAM 141924 18745 6058818 2024-02-25 00:10:02.483 2024-02-25 00:10:02.483 1000 STREAM 141924 15544 6058849 2024-02-25 00:14:02.512 2024-02-25 00:14:02.512 1000 STREAM 141924 963 6058852 2024-02-25 00:16:02.521 2024-02-25 00:16:02.521 1000 STREAM 141924 19458 6058861 2024-02-25 00:18:02.533 2024-02-25 00:18:02.533 1000 STREAM 141924 20117 6058863 2024-02-25 00:20:02.572 2024-02-25 00:20:02.572 1000 STREAM 141924 21338 6058942 2024-02-25 00:31:02.628 2024-02-25 00:31:02.628 1000 STREAM 141924 15160 6058951 2024-02-25 00:33:02.638 2024-02-25 00:33:02.638 1000 STREAM 141924 8508 6059024 2024-02-25 00:35:02.656 2024-02-25 00:35:02.656 1000 STREAM 141924 18930 6059025 2024-02-25 00:36:02.668 2024-02-25 00:36:02.668 1000 STREAM 141924 8726 6059027 2024-02-25 00:37:02.678 2024-02-25 00:37:02.678 1000 STREAM 141924 14774 6059031 2024-02-25 00:39:02.688 2024-02-25 00:39:02.688 1000 STREAM 141924 20299 6059038 2024-02-25 00:41:02.717 2024-02-25 00:41:02.717 1000 STREAM 141924 21620 6120754 2024-03-01 00:50:01.915 2024-03-01 00:50:01.915 1000 STREAM 141924 20326 6120757 2024-03-01 00:52:01.898 2024-03-01 00:52:01.898 1000 STREAM 141924 18076 6058812 2024-02-25 00:09:02.469 2024-02-25 00:09:02.469 1000 STREAM 141924 16649 6120835 2024-03-01 01:11:02.551 2024-03-01 01:11:02.551 1000 STREAM 141924 20291 6120985 2024-03-01 02:01:03.208 2024-03-01 02:01:03.208 1000 STREAM 141924 769 6121010 2024-03-01 02:14:03.292 2024-03-01 02:14:03.292 1000 STREAM 141924 20619 6121228 2024-03-01 03:15:03.723 2024-03-01 03:15:03.723 1000 STREAM 141924 21003 6121235 2024-03-01 03:17:03.716 2024-03-01 03:17:03.716 1000 STREAM 141924 21178 6121239 2024-03-01 03:18:03.72 2024-03-01 03:18:03.72 1000 STREAM 141924 19417 6058838 2024-02-25 00:12:34.28 2024-02-25 00:12:34.28 1000 FEE 437772 12278 6058839 2024-02-25 00:12:34.28 2024-02-25 00:12:34.28 9000 TIP 437772 19842 6058892 2024-02-25 00:21:37.033 2024-02-25 00:21:37.033 1000 FEE 437682 16447 6058893 2024-02-25 00:21:37.033 2024-02-25 00:21:37.033 9000 TIP 437682 17522 6058900 2024-02-25 00:21:38.239 2024-02-25 00:21:38.239 1000 FEE 437682 6310 6058901 2024-02-25 00:21:38.239 2024-02-25 00:21:38.239 9000 TIP 437682 14503 6058934 2024-02-25 00:29:18.283 2024-02-25 00:29:18.283 1000 FEE 437795 919 6058961 2024-02-25 00:34:01.26 2024-02-25 00:34:01.26 6900 FEE 437771 21421 6058962 2024-02-25 00:34:01.26 2024-02-25 00:34:01.26 62100 TIP 437771 19031 6058963 2024-02-25 00:34:01.341 2024-02-25 00:34:01.341 300 FEE 437752 21247 6058964 2024-02-25 00:34:01.341 2024-02-25 00:34:01.341 2700 TIP 437752 18769 6059006 2024-02-25 00:34:55.534 2024-02-25 00:34:55.534 300 FEE 437723 14255 6059007 2024-02-25 00:34:55.534 2024-02-25 00:34:55.534 2700 TIP 437723 1785 6059014 2024-02-25 00:34:56.598 2024-02-25 00:34:56.598 300 FEE 437723 1985 6059015 2024-02-25 00:34:56.598 2024-02-25 00:34:56.598 2700 TIP 437723 12483 6059034 2024-02-25 00:40:26.842 2024-02-25 00:40:26.842 4000 FEE 437769 20094 6059035 2024-02-25 00:40:26.842 2024-02-25 00:40:26.842 36000 TIP 437769 6310 6059039 2024-02-25 00:41:10.311 2024-02-25 00:41:10.311 3200 FEE 437793 9 6059040 2024-02-25 00:41:10.311 2024-02-25 00:41:10.311 28800 TIP 437793 20717 6059043 2024-02-25 00:41:34.137 2024-02-25 00:41:34.137 28800 FEE 437769 21019 6059044 2024-02-25 00:41:34.137 2024-02-25 00:41:34.137 259200 TIP 437769 621 6059047 2024-02-25 00:42:08.977 2024-02-25 00:42:08.977 6900 FEE 436550 20110 6059048 2024-02-25 00:42:08.977 2024-02-25 00:42:08.977 62100 TIP 436550 1817 6059055 2024-02-25 00:43:19.158 2024-02-25 00:43:19.158 1000 FEE 437804 19826 6059064 2024-02-25 00:45:27.889 2024-02-25 00:45:27.889 2100 FEE 437795 9796 6059065 2024-02-25 00:45:27.889 2024-02-25 00:45:27.889 18900 TIP 437795 21588 6059070 2024-02-25 00:46:35.643 2024-02-25 00:46:35.643 2100 FEE 437646 21064 6059071 2024-02-25 00:46:35.643 2024-02-25 00:46:35.643 18900 TIP 437646 18494 6059082 2024-02-25 00:48:10.557 2024-02-25 00:48:10.557 21000 DONT_LIKE_THIS 437705 6003 6059088 2024-02-25 00:48:32.52 2024-02-25 00:48:32.52 1000 FEE 437809 2233 6059092 2024-02-25 00:49:53.948 2024-02-25 00:49:53.948 2100 FEE 437767 17523 6059093 2024-02-25 00:49:53.948 2024-02-25 00:49:53.948 18900 TIP 437767 20691 6059105 2024-02-25 00:51:46.537 2024-02-25 00:51:46.537 0 FEE 437810 3377 6059125 2024-02-25 00:56:35.264 2024-02-25 00:56:35.264 100 FEE 437502 5752 6059126 2024-02-25 00:56:35.264 2024-02-25 00:56:35.264 900 TIP 437502 21338 6059161 2024-02-25 00:56:47.115 2024-02-25 00:56:47.115 1000 FEE 437815 5597 6059209 2024-02-25 01:02:46.526 2024-02-25 01:02:46.526 1000 FEE 437714 17124 6059210 2024-02-25 01:02:46.526 2024-02-25 01:02:46.526 9000 TIP 437714 797 6059227 2024-02-25 01:06:19.683 2024-02-25 01:06:19.683 4000 FEE 437824 12265 6059228 2024-02-25 01:06:19.683 2024-02-25 01:06:19.683 36000 TIP 437824 19633 6059229 2024-02-25 01:06:25.257 2024-02-25 01:06:25.257 2100 FEE 437435 19500 6059230 2024-02-25 01:06:25.257 2024-02-25 01:06:25.257 18900 TIP 437435 16834 6059248 2024-02-25 01:07:50.025 2024-02-25 01:07:50.025 2100 FEE 437801 4624 6059249 2024-02-25 01:07:50.025 2024-02-25 01:07:50.025 18900 TIP 437801 7673 6059250 2024-02-25 01:07:50.587 2024-02-25 01:07:50.587 3200 FEE 437762 13547 6059251 2024-02-25 01:07:50.587 2024-02-25 01:07:50.587 28800 TIP 437762 21062 6059252 2024-02-25 01:07:55.087 2024-02-25 01:07:55.087 2100 FEE 437788 17201 6059253 2024-02-25 01:07:55.087 2024-02-25 01:07:55.087 18900 TIP 437788 21361 6059265 2024-02-25 01:10:42.306 2024-02-25 01:10:42.306 3300 FEE 437826 19836 6059266 2024-02-25 01:10:42.306 2024-02-25 01:10:42.306 29700 TIP 437826 15690 6059294 2024-02-25 01:23:42.821 2024-02-25 01:23:42.821 1000 FEE 437831 21208 6059323 2024-02-25 01:29:30.456 2024-02-25 01:29:30.456 300 FEE 437800 21079 6059324 2024-02-25 01:29:30.456 2024-02-25 01:29:30.456 2700 TIP 437800 17638 6059358 2024-02-25 01:37:14.449 2024-02-25 01:37:14.449 2100 FEE 437800 20660 6059359 2024-02-25 01:37:14.449 2024-02-25 01:37:14.449 18900 TIP 437800 15544 6059366 2024-02-25 01:37:45.274 2024-02-25 01:37:45.274 2100 FEE 437775 8059 6059367 2024-02-25 01:37:45.274 2024-02-25 01:37:45.274 18900 TIP 437775 14202 6059371 2024-02-25 01:38:12.865 2024-02-25 01:38:12.865 2100 FEE 437775 18745 6059372 2024-02-25 01:38:12.865 2024-02-25 01:38:12.865 18900 TIP 437775 13931 6059380 2024-02-25 01:41:18.094 2024-02-25 01:41:18.094 2100 FEE 437836 1428 6059381 2024-02-25 01:41:18.094 2024-02-25 01:41:18.094 18900 TIP 437836 21136 6059382 2024-02-25 01:41:44.723 2024-02-25 01:41:44.723 2100 FEE 437760 21451 6059383 2024-02-25 01:41:44.723 2024-02-25 01:41:44.723 18900 TIP 437760 20231 6059388 2024-02-25 01:43:04.192 2024-02-25 01:43:04.192 1000 FEE 437842 18896 6059398 2024-02-25 01:45:24.285 2024-02-25 01:45:24.285 1000 FEE 437845 16998 6059416 2024-02-25 01:48:08.54 2024-02-25 01:48:08.54 1000 FEE 437225 1010 6059417 2024-02-25 01:48:08.54 2024-02-25 01:48:08.54 9000 TIP 437225 18930 6059420 2024-02-25 01:48:48.936 2024-02-25 01:48:48.936 1000 FEE 437758 14465 6059421 2024-02-25 01:48:48.936 2024-02-25 01:48:48.936 9000 TIP 437758 2609 6059479 2024-02-25 01:58:02.014 2024-02-25 01:58:02.014 6900 FEE 437795 19524 6059480 2024-02-25 01:58:02.014 2024-02-25 01:58:02.014 62100 TIP 437795 20998 6059550 2024-02-25 02:13:07.027 2024-02-25 02:13:07.027 1000 FEE 437817 8916 6059551 2024-02-25 02:13:07.027 2024-02-25 02:13:07.027 9000 TIP 437817 17001 6059592 2024-02-25 02:23:47.125 2024-02-25 02:23:47.125 1000 FEE 437872 1740 6059604 2024-02-25 02:28:13.314 2024-02-25 02:28:13.314 1000 FEE 437873 18357 6059706 2024-02-25 02:41:21.795 2024-02-25 02:41:21.795 500 FEE 437827 17415 6059707 2024-02-25 02:41:21.795 2024-02-25 02:41:21.795 4500 TIP 437827 7966 6059733 2024-02-25 02:48:20.593 2024-02-25 02:48:20.593 2500 FEE 437865 1611 6059734 2024-02-25 02:48:20.593 2024-02-25 02:48:20.593 22500 TIP 437865 21421 6059748 2024-02-25 02:50:07.677 2024-02-25 02:50:07.677 10100 FEE 437775 12606 6059749 2024-02-25 02:50:07.677 2024-02-25 02:50:07.677 90900 TIP 437775 1224 6059755 2024-02-25 02:53:43.464 2024-02-25 02:53:43.464 2500 FEE 437831 760 6059756 2024-02-25 02:53:43.464 2024-02-25 02:53:43.464 22500 TIP 437831 17891 6059776 2024-02-25 02:55:52.098 2024-02-25 02:55:52.098 3300 FEE 437817 18453 6059777 2024-02-25 02:55:52.098 2024-02-25 02:55:52.098 29700 TIP 437817 861 6059785 2024-02-25 02:56:08.914 2024-02-25 02:56:08.914 3300 FEE 437560 10493 6059786 2024-02-25 02:56:08.914 2024-02-25 02:56:08.914 29700 TIP 437560 5425 6059793 2024-02-25 02:57:25.673 2024-02-25 02:57:25.673 700 FEE 437492 6335 6059794 2024-02-25 02:57:25.673 2024-02-25 02:57:25.673 6300 TIP 437492 21019 6059798 2024-02-25 02:58:18.731 2024-02-25 02:58:18.731 2100 FEE 437723 14791 6059799 2024-02-25 02:58:18.731 2024-02-25 02:58:18.731 18900 TIP 437723 19005 6059818 2024-02-25 03:00:12.99 2024-02-25 03:00:12.99 9000 FEE 437893 854 6059819 2024-02-25 03:00:12.99 2024-02-25 03:00:12.99 81000 TIP 437893 19094 6059832 2024-02-25 03:00:30.59 2024-02-25 03:00:30.59 2100 FEE 437454 13327 6059833 2024-02-25 03:00:30.59 2024-02-25 03:00:30.59 18900 TIP 437454 21588 6058877 2024-02-25 00:21:35.046 2024-02-25 00:21:35.046 9000 TIP 437682 11776 6058878 2024-02-25 00:21:35.244 2024-02-25 00:21:35.244 1000 FEE 437682 20892 6058879 2024-02-25 00:21:35.244 2024-02-25 00:21:35.244 9000 TIP 437682 1697 6058890 2024-02-25 00:21:36.881 2024-02-25 00:21:36.881 1000 FEE 437682 681 6058891 2024-02-25 00:21:36.881 2024-02-25 00:21:36.881 9000 TIP 437682 17218 6058910 2024-02-25 00:23:20.838 2024-02-25 00:23:20.838 10000 FEE 437779 27 6058911 2024-02-25 00:23:20.838 2024-02-25 00:23:20.838 90000 TIP 437779 9351 6058920 2024-02-25 00:25:22.558 2024-02-25 00:25:22.558 1000 FEE 437791 9844 6058946 2024-02-25 00:31:40.309 2024-02-25 00:31:40.309 1000 FEE 437797 18829 6058965 2024-02-25 00:34:01.374 2024-02-25 00:34:01.374 6900 FEE 437771 14950 6058966 2024-02-25 00:34:01.374 2024-02-25 00:34:01.374 62100 TIP 437771 18313 6058975 2024-02-25 00:34:02.387 2024-02-25 00:34:02.387 300 FEE 437752 18945 6058976 2024-02-25 00:34:02.387 2024-02-25 00:34:02.387 2700 TIP 437752 20245 6058992 2024-02-25 00:34:04.479 2024-02-25 00:34:04.479 300 FEE 437752 14774 6058993 2024-02-25 00:34:04.479 2024-02-25 00:34:04.479 2700 TIP 437752 1618 6058998 2024-02-25 00:34:54.356 2024-02-25 00:34:54.356 300 FEE 437723 18291 6058999 2024-02-25 00:34:54.356 2024-02-25 00:34:54.356 2700 TIP 437723 622 6059012 2024-02-25 00:34:56.372 2024-02-25 00:34:56.372 300 FEE 437723 19105 6059013 2024-02-25 00:34:56.372 2024-02-25 00:34:56.372 2700 TIP 437723 17172 6059026 2024-02-25 00:36:52.957 2024-02-25 00:36:52.957 1000 FEE 437800 20802 6059050 2024-02-25 00:42:57.304 2024-02-25 00:42:57.304 4000 FEE 437539 3342 6059051 2024-02-25 00:42:57.304 2024-02-25 00:42:57.304 36000 TIP 437539 19995 6059077 2024-02-25 00:47:12.709 2024-02-25 00:47:12.709 100000 FEE 147331 16679 6059078 2024-02-25 00:47:12.709 2024-02-25 00:47:12.709 900000 TIP 147331 18995 6059079 2024-02-25 00:47:42.372 2024-02-25 00:47:42.372 2100 FEE 437775 19906 6059080 2024-02-25 00:47:42.372 2024-02-25 00:47:42.372 18900 TIP 437775 8242 6059083 2024-02-25 00:48:27.425 2024-02-25 00:48:27.425 2100 FEE 437654 21042 6059084 2024-02-25 00:48:27.425 2024-02-25 00:48:27.425 18900 TIP 437654 6419 6059095 2024-02-25 00:50:19.467 2024-02-25 00:50:19.467 1000 FEE 437810 21104 6059106 2024-02-25 00:52:00.621 2024-02-25 00:52:00.621 0 FEE 437810 15577 6059139 2024-02-25 00:56:37.591 2024-02-25 00:56:37.591 100 FEE 437502 2844 6059140 2024-02-25 00:56:37.591 2024-02-25 00:56:37.591 900 TIP 437502 5069 6059141 2024-02-25 00:56:37.824 2024-02-25 00:56:37.824 100 FEE 437502 20560 6059142 2024-02-25 00:56:37.824 2024-02-25 00:56:37.824 900 TIP 437502 14905 6059153 2024-02-25 00:56:39.13 2024-02-25 00:56:39.13 100 FEE 437502 7675 6059154 2024-02-25 00:56:39.13 2024-02-25 00:56:39.13 900 TIP 437502 12976 6059180 2024-02-25 00:59:09.188 2024-02-25 00:59:09.188 2500 FEE 437804 20817 6059181 2024-02-25 00:59:09.188 2024-02-25 00:59:09.188 22500 TIP 437804 2328 6059184 2024-02-25 00:59:20.484 2024-02-25 00:59:20.484 1000 FEE 437819 1823 6059185 2024-02-25 00:59:26.231 2024-02-25 00:59:26.231 6900 FEE 437817 21292 6059186 2024-02-25 00:59:26.231 2024-02-25 00:59:26.231 62100 TIP 437817 7395 6059187 2024-02-25 00:59:26.447 2024-02-25 00:59:26.447 6900 FEE 437817 16816 6059188 2024-02-25 00:59:26.447 2024-02-25 00:59:26.447 62100 TIP 437817 664 6059195 2024-02-25 00:59:38.201 2024-02-25 00:59:38.201 1000 FEE 437738 13767 6059196 2024-02-25 00:59:38.201 2024-02-25 00:59:38.201 9000 TIP 437738 20564 6059198 2024-02-25 00:59:54.013 2024-02-25 00:59:54.013 1000 FEE 437761 8162 6059199 2024-02-25 00:59:54.013 2024-02-25 00:59:54.013 9000 TIP 437761 21386 6059211 2024-02-25 01:02:58.272 2024-02-25 01:02:58.272 2500 FEE 437820 8448 6059212 2024-02-25 01:02:58.272 2024-02-25 01:02:58.272 22500 TIP 437820 6360 6059213 2024-02-25 01:02:59.429 2024-02-25 01:02:59.429 2500 FEE 437820 7998 6059214 2024-02-25 01:02:59.429 2024-02-25 01:02:59.429 22500 TIP 437820 14280 6059275 2024-02-25 01:13:35.516 2024-02-25 01:13:35.516 21000 FEE 437828 1195 6059313 2024-02-25 01:29:29.405 2024-02-25 01:29:29.405 300 FEE 437800 17109 6059314 2024-02-25 01:29:29.405 2024-02-25 01:29:29.405 2700 TIP 437800 1713 6059325 2024-02-25 01:29:30.704 2024-02-25 01:29:30.704 300 FEE 437800 11329 6059326 2024-02-25 01:29:30.704 2024-02-25 01:29:30.704 2700 TIP 437800 2264 6059330 2024-02-25 01:30:27.569 2024-02-25 01:30:27.569 1000 FEE 437834 21214 6059351 2024-02-25 01:36:39.272 2024-02-25 01:36:39.272 2100 FEE 437269 1488 6059352 2024-02-25 01:36:39.272 2024-02-25 01:36:39.272 18900 TIP 437269 20218 6059353 2024-02-25 01:36:39.907 2024-02-25 01:36:39.907 2100 FEE 437269 17218 6059354 2024-02-25 01:36:39.907 2024-02-25 01:36:39.907 18900 TIP 437269 1221 6059389 2024-02-25 01:44:01.21 2024-02-25 01:44:01.21 6900 FEE 437836 15703 6059390 2024-02-25 01:44:01.21 2024-02-25 01:44:01.21 62100 TIP 437836 828 6059392 2024-02-25 01:44:19.958 2024-02-25 01:44:19.958 2100 FEE 437454 4570 6059393 2024-02-25 01:44:19.958 2024-02-25 01:44:19.958 18900 TIP 437454 1401 6059395 2024-02-25 01:44:58.089 2024-02-25 01:44:58.089 6900 FEE 437771 8472 6059396 2024-02-25 01:44:58.089 2024-02-25 01:44:58.089 62100 TIP 437771 21070 6059409 2024-02-25 01:46:10.553 2024-02-25 01:46:10.553 2100 FEE 437672 19018 6059410 2024-02-25 01:46:10.553 2024-02-25 01:46:10.553 18900 TIP 437672 2123 6059448 2024-02-25 01:49:39.582 2024-02-25 01:49:39.582 1000 FEE 437852 19465 6059464 2024-02-25 01:55:46.875 2024-02-25 01:55:46.875 2100 FEE 437817 19902 6059465 2024-02-25 01:55:46.875 2024-02-25 01:55:46.875 18900 TIP 437817 19837 6059475 2024-02-25 01:56:52.468 2024-02-25 01:56:52.468 10000 FEE 437843 1712 6059476 2024-02-25 01:56:52.468 2024-02-25 01:56:52.468 90000 TIP 437843 14376 6059478 2024-02-25 01:57:36.656 2024-02-25 01:57:36.656 1000 FEE 437856 21136 6059486 2024-02-25 02:01:08.812 2024-02-25 02:01:08.812 6900 FEE 437807 15337 6059487 2024-02-25 02:01:08.812 2024-02-25 02:01:08.812 62100 TIP 437807 2111 6059523 2024-02-25 02:04:20.114 2024-02-25 02:04:20.114 2500 FEE 437723 2039 6059524 2024-02-25 02:04:20.114 2024-02-25 02:04:20.114 22500 TIP 437723 5825 6059542 2024-02-25 02:11:33.047 2024-02-25 02:11:33.047 2500 FEE 437269 3686 6059543 2024-02-25 02:11:33.047 2024-02-25 02:11:33.047 22500 TIP 437269 20691 6059545 2024-02-25 02:12:16.879 2024-02-25 02:12:16.879 2100 FEE 437738 673 6059546 2024-02-25 02:12:16.879 2024-02-25 02:12:16.879 18900 TIP 437738 732 6059579 2024-02-25 02:18:50.523 2024-02-25 02:18:50.523 1000 FEE 437868 9342 6059581 2024-02-25 02:19:54.107 2024-02-25 02:19:54.107 1000 FEE 437762 20904 6059582 2024-02-25 02:19:54.107 2024-02-25 02:19:54.107 9000 TIP 437762 10283 6059583 2024-02-25 02:19:55.617 2024-02-25 02:19:55.617 1000 FEE 437442 8284 6059584 2024-02-25 02:19:55.617 2024-02-25 02:19:55.617 9000 TIP 437442 20616 6059597 2024-02-25 02:25:27.906 2024-02-25 02:25:27.906 2100 FEE 437817 18472 6059598 2024-02-25 02:25:27.906 2024-02-25 02:25:27.906 18900 TIP 437817 16847 6059605 2024-02-25 02:28:15.149 2024-02-25 02:28:15.149 1000 FEE 437408 15239 6059606 2024-02-25 02:28:15.149 2024-02-25 02:28:15.149 9000 TIP 437408 13076 6058908 2024-02-25 00:23:03.034 2024-02-25 00:23:03.034 1000 STREAM 141924 18336 6058919 2024-02-25 00:25:03.024 2024-02-25 00:25:03.024 1000 STREAM 141924 736 6058925 2024-02-25 00:27:03.037 2024-02-25 00:27:03.037 1000 STREAM 141924 7425 6120871 2024-03-01 01:17:03.217 2024-03-01 01:17:03.217 1000 STREAM 141924 9611 6120887 2024-03-01 01:23:03.249 2024-03-01 01:23:03.249 1000 STREAM 141924 16336 6120908 2024-03-01 01:26:03.272 2024-03-01 01:26:03.272 1000 STREAM 141924 21457 6120910 2024-03-01 01:27:03.282 2024-03-01 01:27:03.282 1000 STREAM 141924 13198 6120923 2024-03-01 01:31:03.31 2024-03-01 01:31:03.31 1000 STREAM 141924 19943 6120927 2024-03-01 01:33:03.346 2024-03-01 01:33:03.346 1000 STREAM 141924 20291 6120929 2024-03-01 01:35:03.356 2024-03-01 01:35:03.356 1000 STREAM 141924 11714 6120932 2024-03-01 01:36:03.377 2024-03-01 01:36:03.377 1000 STREAM 141924 913 6120934 2024-03-01 01:37:03.38 2024-03-01 01:37:03.38 1000 STREAM 141924 15161 6120937 2024-03-01 01:39:03.362 2024-03-01 01:39:03.362 1000 STREAM 141924 18500 6120938 2024-03-01 01:40:03.375 2024-03-01 01:40:03.375 1000 STREAM 141924 672 6120940 2024-03-01 01:41:03.385 2024-03-01 01:41:03.385 1000 STREAM 141924 20022 6120942 2024-03-01 01:42:03.393 2024-03-01 01:42:03.393 1000 STREAM 141924 14959 6120946 2024-03-01 01:44:03.414 2024-03-01 01:44:03.414 1000 STREAM 141924 6537 6120951 2024-03-01 01:47:03.409 2024-03-01 01:47:03.409 1000 STREAM 141924 20871 6058933 2024-02-25 00:29:02.644 2024-02-25 00:29:02.644 1000 STREAM 141924 9336 6058939 2024-02-25 00:30:02.64 2024-02-25 00:30:02.64 1000 STREAM 141924 5825 6058948 2024-02-25 00:32:02.629 2024-02-25 00:32:02.629 1000 STREAM 141924 16214 6058979 2024-02-25 00:34:02.638 2024-02-25 00:34:02.638 1000 STREAM 141924 8945 6059028 2024-02-25 00:38:02.667 2024-02-25 00:38:02.667 1000 STREAM 141924 7376 6059032 2024-02-25 00:40:02.737 2024-02-25 00:40:02.737 1000 STREAM 141924 18705 6120903 2024-03-01 01:25:03.997 2024-03-01 01:25:03.997 1000 STREAM 141924 8423 6059029 2024-02-25 00:38:20.889 2024-02-25 00:38:20.889 2600 FEE 437661 18449 6059030 2024-02-25 00:38:20.889 2024-02-25 00:38:20.889 23400 TIP 437661 632 6059068 2024-02-25 00:46:17.104 2024-02-25 00:46:17.104 2100 FEE 437761 635 6059069 2024-02-25 00:46:17.104 2024-02-25 00:46:17.104 18900 TIP 437761 19852 6059115 2024-02-25 00:54:13.397 2024-02-25 00:54:13.397 1000 FEE 437812 9363 6059117 2024-02-25 00:55:12.284 2024-02-25 00:55:12.284 1000 FEE 437813 4076 6059127 2024-02-25 00:56:35.736 2024-02-25 00:56:35.736 200 FEE 437502 3396 6059128 2024-02-25 00:56:35.736 2024-02-25 00:56:35.736 1800 TIP 437502 794 6059129 2024-02-25 00:56:36.428 2024-02-25 00:56:36.428 100 FEE 437502 21207 6059130 2024-02-25 00:56:36.428 2024-02-25 00:56:36.428 900 TIP 437502 19138 6059137 2024-02-25 00:56:37.352 2024-02-25 00:56:37.352 100 FEE 437502 7766 6059138 2024-02-25 00:56:37.352 2024-02-25 00:56:37.352 900 TIP 437502 20881 6059166 2024-02-25 00:57:36.669 2024-02-25 00:57:36.669 1000 FEE 437723 19132 6059167 2024-02-25 00:57:36.669 2024-02-25 00:57:36.669 9000 TIP 437723 8416 6059170 2024-02-25 00:58:15.201 2024-02-25 00:58:15.201 1000 FEE 437812 20299 6059171 2024-02-25 00:58:15.201 2024-02-25 00:58:15.201 9000 TIP 437812 21172 6059222 2024-02-25 01:05:04.846 2024-02-25 01:05:04.846 2100 FEE 437686 17050 6059223 2024-02-25 01:05:04.846 2024-02-25 01:05:04.846 18900 TIP 437686 20106 6059237 2024-02-25 01:06:53.09 2024-02-25 01:06:53.09 2100 FEE 437723 1354 6059238 2024-02-25 01:06:53.09 2024-02-25 01:06:53.09 18900 TIP 437723 19842 6059258 2024-02-25 01:08:53.334 2024-02-25 01:08:53.334 1000 FEE 437826 18679 6059311 2024-02-25 01:29:29.192 2024-02-25 01:29:29.192 300 FEE 437800 9843 6059312 2024-02-25 01:29:29.192 2024-02-25 01:29:29.192 2700 TIP 437800 19905 6059321 2024-02-25 01:29:30.256 2024-02-25 01:29:30.256 300 FEE 437800 18271 6059322 2024-02-25 01:29:30.256 2024-02-25 01:29:30.256 2700 TIP 437800 7746 6059327 2024-02-25 01:29:30.928 2024-02-25 01:29:30.928 300 FEE 437800 17116 6059328 2024-02-25 01:29:30.928 2024-02-25 01:29:30.928 2700 TIP 437800 16939 6059331 2024-02-25 01:30:41.066 2024-02-25 01:30:41.066 100 FEE 437794 629 6059332 2024-02-25 01:30:41.066 2024-02-25 01:30:41.066 900 TIP 437794 20889 6059333 2024-02-25 01:30:59.01 2024-02-25 01:30:59.01 21000 FEE 437835 20922 6059347 2024-02-25 01:36:21.369 2024-02-25 01:36:21.369 2100 FEE 437516 21406 6059348 2024-02-25 01:36:21.369 2024-02-25 01:36:21.369 18900 TIP 437516 2844 6059355 2024-02-25 01:36:41.991 2024-02-25 01:36:41.991 2100 FEE 437269 1291 6059356 2024-02-25 01:36:41.991 2024-02-25 01:36:41.991 18900 TIP 437269 20603 6059385 2024-02-25 01:42:13.774 2024-02-25 01:42:13.774 2100 FEE 437816 9184 6059386 2024-02-25 01:42:13.774 2024-02-25 01:42:13.774 18900 TIP 437816 20523 6059424 2024-02-25 01:48:49.853 2024-02-25 01:48:49.853 1000 FEE 437758 1047 6059425 2024-02-25 01:48:49.853 2024-02-25 01:48:49.853 9000 TIP 437758 20799 6059434 2024-02-25 01:49:22.503 2024-02-25 01:49:22.503 1000 FEE 437792 9329 6059435 2024-02-25 01:49:22.503 2024-02-25 01:49:22.503 9000 TIP 437792 20897 6059457 2024-02-25 01:52:48.129 2024-02-25 01:52:48.129 1000 FEE 437854 18072 6059460 2024-02-25 01:54:36.46 2024-02-25 01:54:36.46 1000 FEE 437855 17494 6059519 2024-02-25 02:03:18.004 2024-02-25 02:03:18.004 1000 FEE 437861 20861 6059525 2024-02-25 02:05:00.334 2024-02-25 02:05:00.334 10000 FEE 437862 9863 6059536 2024-02-25 02:10:58.847 2024-02-25 02:10:58.847 2100 FEE 437853 18923 6059537 2024-02-25 02:10:58.847 2024-02-25 02:10:58.847 18900 TIP 437853 18072 6059561 2024-02-25 02:14:33.923 2024-02-25 02:14:33.923 1000 FEE 437760 19502 6059046 2024-02-25 00:42:02.136 2024-02-25 00:42:02.136 1000 STREAM 141924 15326 6059096 2024-02-25 00:51:02.1 2024-02-25 00:51:02.1 1000 STREAM 141924 15160 6059110 2024-02-25 00:53:02.112 2024-02-25 00:53:02.112 1000 STREAM 141924 992 6059116 2024-02-25 00:55:02.14 2024-02-25 00:55:02.14 1000 STREAM 141924 21503 6059221 2024-02-25 01:05:02.449 2024-02-25 01:05:02.449 1000 STREAM 141924 1310 6059281 2024-02-25 01:16:02.598 2024-02-25 01:16:02.598 1000 STREAM 141924 12738 6059292 2024-02-25 01:22:02.493 2024-02-25 01:22:02.493 1000 STREAM 141924 19924 6059516 2024-02-25 02:03:02.73 2024-02-25 02:03:02.73 1000 STREAM 141924 16485 6059522 2024-02-25 02:04:02.735 2024-02-25 02:04:02.735 1000 STREAM 141924 20704 6059599 2024-02-25 02:26:03.274 2024-02-25 02:26:03.274 1000 STREAM 141924 21412 6059602 2024-02-25 02:27:03.273 2024-02-25 02:27:03.273 1000 STREAM 141924 1471 6059620 2024-02-25 02:31:02.969 2024-02-25 02:31:02.969 1000 STREAM 141924 17331 6120935 2024-03-01 01:37:44.007 2024-03-01 01:37:44.007 1000 FEE 444489 678 6120939 2024-03-01 01:40:54.339 2024-03-01 01:40:54.339 0 FEE 444489 9365 6120962 2024-03-01 01:55:55.648 2024-03-01 01:55:55.648 1000 FEE 444168 5590 6120963 2024-03-01 01:55:55.648 2024-03-01 01:55:55.648 9000 TIP 444168 19976 6121013 2024-03-01 02:16:26.125 2024-03-01 02:16:26.125 3300 FEE 444168 4958 6121014 2024-03-01 02:16:26.125 2024-03-01 02:16:26.125 29700 TIP 444168 4487 6121023 2024-03-01 02:17:24.073 2024-03-01 02:17:24.073 1000 FEE 444498 19148 6121112 2024-03-01 02:44:12.799 2024-03-01 02:44:12.799 7700 FEE 444475 15351 6121113 2024-03-01 02:44:12.799 2024-03-01 02:44:12.799 69300 TIP 444475 5701 6121143 2024-03-01 02:55:40.698 2024-03-01 02:55:40.698 1000 FEE 444515 5173 6121146 2024-03-01 02:57:04.004 2024-03-01 02:57:04.004 2100 FEE 444465 20811 6121147 2024-03-01 02:57:04.004 2024-03-01 02:57:04.004 18900 TIP 444465 617 6121150 2024-03-01 02:57:05.356 2024-03-01 02:57:05.356 2100 FEE 444465 794 6121151 2024-03-01 02:57:05.356 2024-03-01 02:57:05.356 18900 TIP 444465 19096 6121155 2024-03-01 02:58:04.66 2024-03-01 02:58:04.66 1000 FEE 444516 21612 6121178 2024-03-01 03:05:18.844 2024-03-01 03:05:18.844 10000 FEE 444173 6499 6121179 2024-03-01 03:05:18.844 2024-03-01 03:05:18.844 90000 TIP 444173 8287 6121187 2024-03-01 03:06:51.47 2024-03-01 03:06:51.47 2700 FEE 444102 11458 6121188 2024-03-01 03:06:51.47 2024-03-01 03:06:51.47 24300 TIP 444102 4459 6121202 2024-03-01 03:07:52.717 2024-03-01 03:07:52.717 1000 FEE 444518 8729 6121213 2024-03-01 03:10:27.879 2024-03-01 03:10:27.879 2700 FEE 443712 10944 6121214 2024-03-01 03:10:27.879 2024-03-01 03:10:27.879 24300 TIP 443712 19105 6121215 2024-03-01 03:10:28.095 2024-03-01 03:10:28.095 5400 FEE 443712 9796 6121216 2024-03-01 03:10:28.095 2024-03-01 03:10:28.095 48600 TIP 443712 21485 6121224 2024-03-01 03:13:24.146 2024-03-01 03:13:24.146 1000 FEE 444520 17157 6121225 2024-03-01 03:13:36.262 2024-03-01 03:13:36.262 1000 FEE 444521 2735 6121254 2024-03-01 03:26:00.067 2024-03-01 03:26:00.067 1000 FEE 444527 19906 6121260 2024-03-01 03:29:06.715 2024-03-01 03:29:06.715 1000 POLL 444078 1039 6121277 2024-03-01 03:32:32.03 2024-03-01 03:32:32.03 300 FEE 444400 3377 6121278 2024-03-01 03:32:32.03 2024-03-01 03:32:32.03 2700 TIP 444400 2703 6121280 2024-03-01 03:33:19.861 2024-03-01 03:33:19.861 1000 FEE 444532 18524 6121281 2024-03-01 03:33:35.868 2024-03-01 03:33:35.868 1000 FEE 444533 18378 6121308 2024-03-01 03:40:19.888 2024-03-01 03:40:19.888 100 FEE 444532 1602 6121309 2024-03-01 03:40:19.888 2024-03-01 03:40:19.888 900 TIP 444532 13327 6121357 2024-03-01 03:57:23.352 2024-03-01 03:57:23.352 1000 FEE 444365 1221 6121358 2024-03-01 03:57:23.352 2024-03-01 03:57:23.352 9000 TIP 444365 13046 6121359 2024-03-01 03:57:43.03 2024-03-01 03:57:43.03 1000 FEE 444486 10698 6121360 2024-03-01 03:57:43.03 2024-03-01 03:57:43.03 9000 TIP 444486 5791 6121402 2024-03-01 04:12:05.999 2024-03-01 04:12:05.999 1000 FEE 444168 1224 6121403 2024-03-01 04:12:05.999 2024-03-01 04:12:05.999 9000 TIP 444168 2016 6121404 2024-03-01 04:12:07.116 2024-03-01 04:12:07.116 1000 FEE 443799 12289 6121405 2024-03-01 04:12:07.116 2024-03-01 04:12:07.116 9000 TIP 443799 13587 6121438 2024-03-01 04:15:38.358 2024-03-01 04:15:38.358 9000 FEE 444538 18930 6121439 2024-03-01 04:15:38.358 2024-03-01 04:15:38.358 81000 TIP 444538 7877 6121476 2024-03-01 04:16:45.826 2024-03-01 04:16:45.826 100 FEE 444522 18380 6121477 2024-03-01 04:16:45.826 2024-03-01 04:16:45.826 900 TIP 444522 19905 6121519 2024-03-01 04:17:26.279 2024-03-01 04:17:26.279 100 FEE 444388 17321 6121520 2024-03-01 04:17:26.279 2024-03-01 04:17:26.279 900 TIP 444388 17316 6121521 2024-03-01 04:17:26.458 2024-03-01 04:17:26.458 900 FEE 444388 19987 6121522 2024-03-01 04:17:26.458 2024-03-01 04:17:26.458 8100 TIP 444388 16193 6121528 2024-03-01 04:18:06.233 2024-03-01 04:18:06.233 500 FEE 443616 18635 6121529 2024-03-01 04:18:06.233 2024-03-01 04:18:06.233 4500 TIP 443616 1425 6121569 2024-03-01 04:19:52.54 2024-03-01 04:19:52.54 9000 FEE 443617 21522 6121570 2024-03-01 04:19:52.54 2024-03-01 04:19:52.54 81000 TIP 443617 13378 6121610 2024-03-01 04:23:13.721 2024-03-01 04:23:13.721 1000 FEE 444552 1647 6121649 2024-03-01 04:34:42.554 2024-03-01 04:34:42.554 1000 FEE 444555 9845 6121656 2024-03-01 04:36:38.828 2024-03-01 04:36:38.828 1000 FEE 444556 19662 6121660 2024-03-01 04:37:15.593 2024-03-01 04:37:15.593 10000 FEE 444102 5499 6121661 2024-03-01 04:37:15.593 2024-03-01 04:37:15.593 90000 TIP 444102 5694 6121698 2024-03-01 04:40:26.31 2024-03-01 04:40:26.31 1000 FEE 444376 4322 6121699 2024-03-01 04:40:26.31 2024-03-01 04:40:26.31 9000 TIP 444376 18637 6121732 2024-03-01 04:50:30.226 2024-03-01 04:50:30.226 1000 FEE 444168 18154 6121733 2024-03-01 04:50:30.226 2024-03-01 04:50:30.226 9000 TIP 444168 902 6121738 2024-03-01 04:51:32.409 2024-03-01 04:51:32.409 1000 FEE 444563 9844 6121748 2024-03-01 04:53:11.519 2024-03-01 04:53:11.519 1700 FEE 444561 18678 6121749 2024-03-01 04:53:11.519 2024-03-01 04:53:11.519 15300 TIP 444561 5175 6121752 2024-03-01 04:53:13.077 2024-03-01 04:53:13.077 1700 FEE 444561 11430 6121753 2024-03-01 04:53:13.077 2024-03-01 04:53:13.077 15300 TIP 444561 15577 6121761 2024-03-01 04:54:05.03 2024-03-01 04:54:05.03 1000 FEE 443617 6300 6121762 2024-03-01 04:54:05.03 2024-03-01 04:54:05.03 9000 TIP 443617 8168 6121815 2024-03-01 05:02:14.894 2024-03-01 05:02:14.894 800 FEE 443816 15833 6121816 2024-03-01 05:02:14.894 2024-03-01 05:02:14.894 7200 TIP 443816 10342 6121826 2024-03-01 05:05:06.183 2024-03-01 05:05:06.183 1000 FEE 444168 21571 6121827 2024-03-01 05:05:06.183 2024-03-01 05:05:06.183 9000 TIP 444168 19839 6121879 2024-03-01 05:19:08.655 2024-03-01 05:19:08.655 1000 FEE 444575 15690 6121884 2024-03-01 05:21:50.277 2024-03-01 05:21:50.277 1000 FEE 444576 722 6121900 2024-03-01 05:28:23.776 2024-03-01 05:28:23.776 1000 FEE 443729 12566 6059054 2024-02-25 00:43:02.681 2024-02-25 00:43:02.681 1000 STREAM 141924 6137 6059059 2024-02-25 00:44:01.808 2024-02-25 00:44:01.808 1000 STREAM 141924 11999 6059081 2024-02-25 00:48:02.179 2024-02-25 00:48:02.179 1000 STREAM 141924 19044 6059259 2024-02-25 01:09:02.316 2024-02-25 01:09:02.316 1000 STREAM 141924 10690 6059285 2024-02-25 01:18:02.711 2024-02-25 01:18:02.711 1000 STREAM 141924 12278 6059336 2024-02-25 01:33:02.914 2024-02-25 01:33:02.914 1000 STREAM 141924 14015 6059370 2024-02-25 01:38:02.663 2024-02-25 01:38:02.663 1000 STREAM 141924 18945 6059375 2024-02-25 01:39:02.828 2024-02-25 01:39:02.828 1000 STREAM 141924 9354 6059483 2024-02-25 01:59:02.574 2024-02-25 01:59:02.574 1000 STREAM 141924 16341 6059533 2024-02-25 02:10:03.152 2024-02-25 02:10:03.152 1000 STREAM 141924 6741 6059570 2024-02-25 02:16:02.804 2024-02-25 02:16:02.804 1000 STREAM 141924 19094 6059578 2024-02-25 02:18:03.302 2024-02-25 02:18:03.302 1000 STREAM 141924 18232 6059580 2024-02-25 02:19:03.3 2024-02-25 02:19:03.3 1000 STREAM 141924 2674 6059585 2024-02-25 02:20:03.341 2024-02-25 02:20:03.341 1000 STREAM 141924 19911 6059789 2024-02-25 02:57:03.521 2024-02-25 02:57:03.521 1000 STREAM 141924 8664 6059885 2024-02-25 03:05:03.551 2024-02-25 03:05:03.551 1000 STREAM 141924 12261 6059895 2024-02-25 03:06:03.559 2024-02-25 03:06:03.559 1000 STREAM 141924 21079 6059957 2024-02-25 03:09:03.317 2024-02-25 03:09:03.317 1000 STREAM 141924 13361 6059959 2024-02-25 03:10:03.353 2024-02-25 03:10:03.353 1000 STREAM 141924 10536 6059977 2024-02-25 03:15:03.604 2024-02-25 03:15:03.604 1000 STREAM 141924 10102 6059978 2024-02-25 03:16:03.642 2024-02-25 03:16:03.642 1000 STREAM 141924 1803 6060048 2024-02-25 03:35:02.739 2024-02-25 03:35:02.739 1000 STREAM 141924 18736 6060056 2024-02-25 03:38:02.737 2024-02-25 03:38:02.737 1000 STREAM 141924 12566 6060062 2024-02-25 03:40:02.925 2024-02-25 03:40:02.925 1000 STREAM 141924 20504 6060076 2024-02-25 03:44:03.29 2024-02-25 03:44:03.29 1000 STREAM 141924 11263 6060077 2024-02-25 03:45:03.862 2024-02-25 03:45:03.862 1000 STREAM 141924 21424 6060115 2024-02-25 03:56:03.721 2024-02-25 03:56:03.721 1000 STREAM 141924 17693 6060190 2024-02-25 04:08:04.552 2024-02-25 04:08:04.552 1000 STREAM 141924 21033 6060198 2024-02-25 04:14:04.816 2024-02-25 04:14:04.816 1000 STREAM 141924 6515 6060278 2024-02-25 04:29:03.509 2024-02-25 04:29:03.509 1000 STREAM 141924 21070 6060335 2024-02-25 04:44:04.168 2024-02-25 04:44:04.168 1000 STREAM 141924 712 6060342 2024-02-25 04:48:05.112 2024-02-25 04:48:05.112 1000 STREAM 141924 795 6060345 2024-02-25 04:50:03.911 2024-02-25 04:50:03.911 1000 STREAM 141924 13327 6060350 2024-02-25 04:51:03.862 2024-02-25 04:51:03.862 1000 STREAM 141924 16447 6060354 2024-02-25 04:53:03.873 2024-02-25 04:53:03.873 1000 STREAM 141924 14169 6060363 2024-02-25 05:00:04.038 2024-02-25 05:00:04.038 1000 STREAM 141924 9906 6060376 2024-02-25 05:07:04.83 2024-02-25 05:07:04.83 1000 STREAM 141924 15588 6060378 2024-02-25 05:08:02.187 2024-02-25 05:08:02.187 1000 STREAM 141924 5829 6060384 2024-02-25 05:10:03.141 2024-02-25 05:10:03.141 1000 STREAM 141924 3304 6060391 2024-02-25 05:13:05.133 2024-02-25 05:13:05.133 1000 STREAM 141924 21379 6060400 2024-02-25 05:16:03.166 2024-02-25 05:16:03.166 1000 STREAM 141924 1571 6060402 2024-02-25 05:17:05.188 2024-02-25 05:17:05.188 1000 STREAM 141924 937 6060425 2024-02-25 05:20:03.235 2024-02-25 05:20:03.235 1000 STREAM 141924 19569 6060443 2024-02-25 05:24:03.239 2024-02-25 05:24:03.239 1000 STREAM 141924 18314 6060447 2024-02-25 05:25:03.262 2024-02-25 05:25:03.262 1000 STREAM 141924 1213 6060448 2024-02-25 05:26:03.279 2024-02-25 05:26:03.279 1000 STREAM 141924 19527 6060451 2024-02-25 05:29:05.317 2024-02-25 05:29:05.317 1000 STREAM 141924 9275 6060456 2024-02-25 05:32:03.337 2024-02-25 05:32:03.337 1000 STREAM 141924 11999 6060460 2024-02-25 05:34:03.348 2024-02-25 05:34:03.348 1000 STREAM 141924 16432 6060461 2024-02-25 05:35:05.367 2024-02-25 05:35:05.367 1000 STREAM 141924 11329 6060466 2024-02-25 05:38:03.374 2024-02-25 05:38:03.374 1000 STREAM 141924 21418 6060468 2024-02-25 05:40:03.424 2024-02-25 05:40:03.424 1000 STREAM 141924 2101 6060471 2024-02-25 05:42:03.412 2024-02-25 05:42:03.412 1000 STREAM 141924 16355 6060473 2024-02-25 05:44:03.446 2024-02-25 05:44:03.446 1000 STREAM 141924 16667 6060474 2024-02-25 05:45:03.473 2024-02-25 05:45:03.473 1000 STREAM 141924 1428 6060475 2024-02-25 05:46:03.482 2024-02-25 05:46:03.482 1000 STREAM 141924 21427 6059060 2024-02-25 00:45:02.697 2024-02-25 00:45:02.697 1000 STREAM 141924 17984 6059094 2024-02-25 00:50:02.092 2024-02-25 00:50:02.092 1000 STREAM 141924 18828 6059107 2024-02-25 00:52:02.109 2024-02-25 00:52:02.109 1000 STREAM 141924 12222 6059114 2024-02-25 00:54:02.132 2024-02-25 00:54:02.132 1000 STREAM 141924 635 6059120 2024-02-25 00:56:02.336 2024-02-25 00:56:02.336 1000 STREAM 141924 21457 6059291 2024-02-25 01:21:03.172 2024-02-25 01:21:03.172 1000 STREAM 141924 4624 6059303 2024-02-25 01:27:02.384 2024-02-25 01:27:02.384 1000 STREAM 141924 19507 6059357 2024-02-25 01:37:02.707 2024-02-25 01:37:02.707 1000 STREAM 141924 11498 6059450 2024-02-25 01:51:02.802 2024-02-25 01:51:02.802 1000 STREAM 141924 11164 6059451 2024-02-25 01:52:02.801 2024-02-25 01:52:02.801 1000 STREAM 141924 19581 6059458 2024-02-25 01:53:02.87 2024-02-25 01:53:02.87 1000 STREAM 141924 5160 6059526 2024-02-25 02:05:02.771 2024-02-25 02:05:02.771 1000 STREAM 141924 19843 6059527 2024-02-25 02:06:02.748 2024-02-25 02:06:02.748 1000 STREAM 141924 14939 6059577 2024-02-25 02:17:03.106 2024-02-25 02:17:03.106 1000 STREAM 141924 1433 6059746 2024-02-25 02:50:03.224 2024-02-25 02:50:03.224 1000 STREAM 141924 15060 6059759 2024-02-25 02:55:03.252 2024-02-25 02:55:03.252 1000 STREAM 141924 21040 6120950 2024-03-01 01:46:02.504 2024-03-01 01:46:02.504 1000 STREAM 141924 19320 6120953 2024-03-01 01:49:02.53 2024-03-01 01:49:02.53 1000 STREAM 141924 20646 6120955 2024-03-01 01:51:02.588 2024-03-01 01:51:02.588 1000 STREAM 141924 2326 6059076 2024-02-25 00:47:02.791 2024-02-25 00:47:02.791 1000 STREAM 141924 9339 6059091 2024-02-25 00:49:02.801 2024-02-25 00:49:02.801 1000 STREAM 141924 9290 6059168 2024-02-25 00:58:02.864 2024-02-25 00:58:02.864 1000 STREAM 141924 6030 6059175 2024-02-25 00:59:02.892 2024-02-25 00:59:02.892 1000 STREAM 141924 1046 6059136 2024-02-25 00:56:37.134 2024-02-25 00:56:37.134 900 TIP 437502 15662 6059145 2024-02-25 00:56:38.305 2024-02-25 00:56:38.305 100 FEE 437502 11967 6059146 2024-02-25 00:56:38.305 2024-02-25 00:56:38.305 900 TIP 437502 20066 6059164 2024-02-25 00:57:20.781 2024-02-25 00:57:20.781 0 FEE 437816 19500 6059172 2024-02-25 00:58:30.355 2024-02-25 00:58:30.355 1000 FEE 437818 16355 6059176 2024-02-25 00:59:08.789 2024-02-25 00:59:08.789 2500 FEE 437804 5703 6059177 2024-02-25 00:59:08.789 2024-02-25 00:59:08.789 22500 TIP 437804 18640 6059205 2024-02-25 01:02:17.308 2024-02-25 01:02:17.308 10100 FEE 437723 1291 6059206 2024-02-25 01:02:17.308 2024-02-25 01:02:17.308 90900 TIP 437723 802 6059220 2024-02-25 01:04:59.115 2024-02-25 01:04:59.115 1000 FEE 437824 678 6059231 2024-02-25 01:06:33.323 2024-02-25 01:06:33.323 10300 FEE 437238 18154 6059232 2024-02-25 01:06:33.323 2024-02-25 01:06:33.323 92700 TIP 437238 16970 6059257 2024-02-25 01:08:25.671 2024-02-25 01:08:25.671 1000 FEE 437825 5069 6059270 2024-02-25 01:12:44.284 2024-02-25 01:12:44.284 3300 FEE 437815 20817 6059271 2024-02-25 01:12:44.284 2024-02-25 01:12:44.284 29700 TIP 437815 11956 6059272 2024-02-25 01:12:50.545 2024-02-25 01:12:50.545 3300 FEE 437672 21589 6059273 2024-02-25 01:12:50.545 2024-02-25 01:12:50.545 29700 TIP 437672 18557 6059278 2024-02-25 01:15:16.38 2024-02-25 01:15:16.38 6900 FEE 437642 21501 6059279 2024-02-25 01:15:16.38 2024-02-25 01:15:16.38 62100 TIP 437642 16387 6059280 2024-02-25 01:15:26.901 2024-02-25 01:15:26.901 100000 FEE 437829 19458 6059283 2024-02-25 01:17:39.063 2024-02-25 01:17:39.063 10000 FEE 435847 685 6059284 2024-02-25 01:17:39.063 2024-02-25 01:17:39.063 90000 TIP 435847 15409 6059295 2024-02-25 01:23:59.225 2024-02-25 01:23:59.225 1000 FEE 437832 844 6059308 2024-02-25 01:29:27.599 2024-02-25 01:29:27.599 1000 FEE 437833 2537 6059309 2024-02-25 01:29:28.978 2024-02-25 01:29:28.978 300 FEE 437800 5160 6059310 2024-02-25 01:29:28.978 2024-02-25 01:29:28.978 2700 TIP 437800 18618 6059345 2024-02-25 01:35:33.167 2024-02-25 01:35:33.167 10000 FEE 437838 9350 6059360 2024-02-25 01:37:14.732 2024-02-25 01:37:14.732 2100 FEE 437800 11378 6059361 2024-02-25 01:37:14.732 2024-02-25 01:37:14.732 18900 TIP 437800 19878 6059394 2024-02-25 01:44:21.431 2024-02-25 01:44:21.431 1000 FEE 437843 624 6059399 2024-02-25 01:45:46.251 2024-02-25 01:45:46.251 1000 FEE 437846 18453 6059402 2024-02-25 01:45:58.201 2024-02-25 01:45:58.201 2100 FEE 437700 21421 6059403 2024-02-25 01:45:58.201 2024-02-25 01:45:58.201 18900 TIP 437700 2098 6059407 2024-02-25 01:46:10.352 2024-02-25 01:46:10.352 2100 FEE 437672 6419 6059408 2024-02-25 01:46:10.352 2024-02-25 01:46:10.352 18900 TIP 437672 6777 6059444 2024-02-25 01:49:30.239 2024-02-25 01:49:30.239 1000 FEE 437756 18641 6059445 2024-02-25 01:49:30.239 2024-02-25 01:49:30.239 9000 TIP 437756 19511 6059482 2024-02-25 01:58:31.849 2024-02-25 01:58:31.849 1000 FEE 437857 21624 6059488 2024-02-25 02:01:13.02 2024-02-25 02:01:13.02 6900 FEE 437852 1429 6059489 2024-02-25 02:01:13.02 2024-02-25 02:01:13.02 62100 TIP 437852 2576 6059492 2024-02-25 02:01:13.852 2024-02-25 02:01:13.852 6900 FEE 437852 17514 6059493 2024-02-25 02:01:13.852 2024-02-25 02:01:13.852 62100 TIP 437852 12516 6059494 2024-02-25 02:01:34.969 2024-02-25 02:01:34.969 1000 FEE 437858 2711 6059501 2024-02-25 02:01:49.966 2024-02-25 02:01:49.966 6900 FEE 437819 14267 6059502 2024-02-25 02:01:49.966 2024-02-25 02:01:49.966 62100 TIP 437819 2789 6059503 2024-02-25 02:01:59.047 2024-02-25 02:01:59.047 6900 FEE 437854 11498 6059504 2024-02-25 02:01:59.047 2024-02-25 02:01:59.047 62100 TIP 437854 10608 6059513 2024-02-25 02:02:44.996 2024-02-25 02:02:44.996 6900 FEE 437806 2196 6059514 2024-02-25 02:02:44.996 2024-02-25 02:02:44.996 62100 TIP 437806 18230 6059529 2024-02-25 02:07:49.5 2024-02-25 02:07:49.5 21000 FEE 437863 20412 6059540 2024-02-25 02:11:07.88 2024-02-25 02:11:07.88 2100 FEE 437831 19770 6059541 2024-02-25 02:11:07.88 2024-02-25 02:11:07.88 18900 TIP 437831 8080 6059587 2024-02-25 02:20:54.944 2024-02-25 02:20:54.944 1000 FEE 437870 5904 6059615 2024-02-25 02:29:14.683 2024-02-25 02:29:14.683 0 FEE 437873 1221 6059623 2024-02-25 02:31:40.243 2024-02-25 02:31:40.243 1000 FEE 437810 16042 6059624 2024-02-25 02:31:40.243 2024-02-25 02:31:40.243 9000 TIP 437810 1030 6059651 2024-02-25 02:35:30.852 2024-02-25 02:35:30.852 900 FEE 437798 20594 6059652 2024-02-25 02:35:30.852 2024-02-25 02:35:30.852 8100 TIP 437798 8998 6059655 2024-02-25 02:35:35.286 2024-02-25 02:35:35.286 100 FEE 437791 19506 6059656 2024-02-25 02:35:35.286 2024-02-25 02:35:35.286 900 TIP 437791 12769 6059664 2024-02-25 02:36:54.613 2024-02-25 02:36:54.613 1000 FEE 437880 21573 6059686 2024-02-25 02:38:29.739 2024-02-25 02:38:29.739 9000 FEE 437881 9333 6059687 2024-02-25 02:38:29.739 2024-02-25 02:38:29.739 81000 TIP 437881 697 6059710 2024-02-25 02:41:48.368 2024-02-25 02:41:48.368 360000 FEE 437502 20220 6059711 2024-02-25 02:41:48.368 2024-02-25 02:41:48.368 3240000 TIP 437502 21314 6059712 2024-02-25 02:41:49.958 2024-02-25 02:41:49.958 1000 FEE 437883 17541 6059716 2024-02-25 02:44:01.459 2024-02-25 02:44:01.459 1000 FEE 437800 700 6059717 2024-02-25 02:44:01.459 2024-02-25 02:44:01.459 9000 TIP 437800 20963 6059721 2024-02-25 02:45:51.508 2024-02-25 02:45:51.508 1000 FEE 437832 16442 6059722 2024-02-25 02:45:51.508 2024-02-25 02:45:51.508 9000 TIP 437832 2233 6059738 2024-02-25 02:49:40.632 2024-02-25 02:49:40.632 6900 FEE 437884 20205 6059739 2024-02-25 02:49:40.632 2024-02-25 02:49:40.632 62100 TIP 437884 5829 6059740 2024-02-25 02:49:52.269 2024-02-25 02:49:52.269 6900 FEE 437880 854 6059741 2024-02-25 02:49:52.269 2024-02-25 02:49:52.269 62100 TIP 437880 15119 6059753 2024-02-25 02:53:01.491 2024-02-25 02:53:01.491 100000 FEE 437890 780 6059783 2024-02-25 02:56:07.25 2024-02-25 02:56:07.25 3300 FEE 437560 16638 6059784 2024-02-25 02:56:07.25 2024-02-25 02:56:07.25 29700 TIP 437560 17106 6059803 2024-02-25 02:59:02.967 2024-02-25 02:59:02.967 100 FEE 437888 21296 6059804 2024-02-25 02:59:02.967 2024-02-25 02:59:02.967 900 TIP 437888 15925 6059812 2024-02-25 03:00:05.59 2024-02-25 03:00:05.59 1000 FEE 437898 4378 6059826 2024-02-25 03:00:28.12 2024-02-25 03:00:28.12 2100 FEE 437775 20706 6059827 2024-02-25 03:00:28.12 2024-02-25 03:00:28.12 18900 TIP 437775 19848 6059830 2024-02-25 03:00:29.615 2024-02-25 03:00:29.615 2100 FEE 437269 18904 6059831 2024-02-25 03:00:29.615 2024-02-25 03:00:29.615 18900 TIP 437269 10821 6059834 2024-02-25 03:00:31.459 2024-02-25 03:00:31.459 2100 FEE 437233 15556 6059835 2024-02-25 03:00:31.459 2024-02-25 03:00:31.459 18900 TIP 437233 21523 6059870 2024-02-25 03:01:48.021 2024-02-25 03:01:48.021 1000 FEE 437901 4074 6059872 2024-02-25 03:02:29.055 2024-02-25 03:02:29.055 500 FEE 437502 9339 6059873 2024-02-25 03:02:29.055 2024-02-25 03:02:29.055 4500 TIP 437502 1426 6059889 2024-02-25 03:05:40.673 2024-02-25 03:05:40.673 10000 FEE 194867 18774 6059890 2024-02-25 03:05:40.673 2024-02-25 03:05:40.673 90000 TIP 194867 1960 6059891 2024-02-25 03:05:57.73 2024-02-25 03:05:57.73 1000 FEE 437628 13553 6059892 2024-02-25 03:05:57.73 2024-02-25 03:05:57.73 9000 TIP 437628 20564 6059914 2024-02-25 03:07:47.887 2024-02-25 03:07:47.887 2100 FEE 437720 12808 6059915 2024-02-25 03:07:47.887 2024-02-25 03:07:47.887 18900 TIP 437720 21361 6059918 2024-02-25 03:07:48.356 2024-02-25 03:07:48.356 2100 FEE 437720 5036 6059919 2024-02-25 03:07:48.356 2024-02-25 03:07:48.356 18900 TIP 437720 4487 6059934 2024-02-25 03:07:52.169 2024-02-25 03:07:52.169 2100 FEE 437611 976 6059935 2024-02-25 03:07:52.169 2024-02-25 03:07:52.169 18900 TIP 437611 13249 6059940 2024-02-25 03:07:52.745 2024-02-25 03:07:52.745 2100 FEE 437611 17519 6059162 2024-02-25 00:57:02.888 2024-02-25 00:57:02.888 1000 STREAM 141924 10519 6059202 2024-02-25 01:01:02.911 2024-02-25 01:01:02.911 1000 STREAM 141924 19930 6059256 2024-02-25 01:08:02.948 2024-02-25 01:08:02.948 1000 STREAM 141924 21356 6059260 2024-02-25 01:10:03.017 2024-02-25 01:10:03.017 1000 STREAM 141924 18372 6059274 2024-02-25 01:13:03.01 2024-02-25 01:13:03.01 1000 STREAM 141924 21620 6059277 2024-02-25 01:15:03.035 2024-02-25 01:15:03.035 1000 STREAM 141924 5387 6059301 2024-02-25 01:25:03.112 2024-02-25 01:25:03.112 1000 STREAM 141924 2525 6059329 2024-02-25 01:30:03.178 2024-02-25 01:30:03.178 1000 STREAM 141924 2741 6120952 2024-03-01 01:48:02.115 2024-03-01 01:48:02.115 1000 STREAM 141924 21254 6120958 2024-03-01 01:54:02.279 2024-03-01 01:54:02.279 1000 STREAM 141924 13854 6120961 2024-03-01 01:55:02.275 2024-03-01 01:55:02.275 1000 STREAM 141924 4415 6120974 2024-03-01 01:58:02.293 2024-03-01 01:58:02.293 1000 STREAM 141924 1094 6120981 2024-03-01 01:59:02.306 2024-03-01 01:59:02.306 1000 STREAM 141924 14731 6120988 2024-03-01 02:03:02.348 2024-03-01 02:03:02.348 1000 STREAM 141924 18507 6120989 2024-03-01 02:04:02.352 2024-03-01 02:04:02.352 1000 STREAM 141924 19320 6120990 2024-03-01 02:05:02.352 2024-03-01 02:05:02.352 1000 STREAM 141924 10398 6121006 2024-03-01 02:10:02.491 2024-03-01 02:10:02.491 1000 STREAM 141924 12049 6121007 2024-03-01 02:11:02.48 2024-03-01 02:11:02.48 1000 STREAM 141924 20276 6121008 2024-03-01 02:12:02.474 2024-03-01 02:12:02.474 1000 STREAM 141924 10698 6121036 2024-03-01 02:20:02.599 2024-03-01 02:20:02.599 1000 STREAM 141924 16679 6121055 2024-03-01 02:26:02.913 2024-03-01 02:26:02.913 1000 STREAM 141924 8287 6121061 2024-03-01 02:28:02.935 2024-03-01 02:28:02.935 1000 STREAM 141924 8037 6121090 2024-03-01 02:33:02.983 2024-03-01 02:33:02.983 1000 STREAM 141924 1620 6121098 2024-03-01 02:36:02.985 2024-03-01 02:36:02.985 1000 STREAM 141924 12218 6121105 2024-03-01 02:40:03.027 2024-03-01 02:40:03.027 1000 STREAM 141924 9496 6121116 2024-03-01 02:45:03.059 2024-03-01 02:45:03.059 1000 STREAM 141924 18169 6121118 2024-03-01 02:47:03.088 2024-03-01 02:47:03.088 1000 STREAM 141924 17517 6121121 2024-03-01 02:49:03.099 2024-03-01 02:49:03.099 1000 STREAM 141924 19689 6121130 2024-03-01 02:51:03.105 2024-03-01 02:51:03.105 1000 STREAM 141924 15213 6121142 2024-03-01 02:55:03.124 2024-03-01 02:55:03.124 1000 STREAM 141924 18402 6059190 2024-02-25 00:59:26.617 2024-02-25 00:59:26.617 62100 TIP 437817 20495 6059216 2024-02-25 01:03:08.692 2024-02-25 01:03:08.692 2500 FEE 437611 13903 6059217 2024-02-25 01:03:08.692 2024-02-25 01:03:08.692 22500 TIP 437611 3729 6059244 2024-02-25 01:07:21.101 2024-02-25 01:07:21.101 28800 FEE 437723 8385 6059245 2024-02-25 01:07:21.101 2024-02-25 01:07:21.101 259200 TIP 437723 20276 6059246 2024-02-25 01:07:35.526 2024-02-25 01:07:35.526 3200 FEE 437761 20964 6059247 2024-02-25 01:07:35.526 2024-02-25 01:07:35.526 28800 TIP 437761 2330 6059261 2024-02-25 01:10:06.702 2024-02-25 01:10:06.702 3200 FEE 437775 18629 6059262 2024-02-25 01:10:06.702 2024-02-25 01:10:06.702 28800 TIP 437775 9450 6059337 2024-02-25 01:33:31.547 2024-02-25 01:33:31.547 400 FEE 437780 9529 6059338 2024-02-25 01:33:31.547 2024-02-25 01:33:31.547 3600 TIP 437780 997 6059376 2024-02-25 01:39:15.514 2024-02-25 01:39:15.514 2100 FEE 437769 21614 6059377 2024-02-25 01:39:15.514 2024-02-25 01:39:15.514 18900 TIP 437769 5538 6059405 2024-02-25 01:46:03.452 2024-02-25 01:46:03.452 2100 FEE 437700 9275 6059406 2024-02-25 01:46:03.452 2024-02-25 01:46:03.452 18900 TIP 437700 17221 6059411 2024-02-25 01:47:02.404 2024-02-25 01:47:02.404 1000 FEE 437847 20597 6059430 2024-02-25 01:49:21.489 2024-02-25 01:49:21.489 1000 FEE 437792 17103 6059431 2024-02-25 01:49:21.489 2024-02-25 01:49:21.489 9000 TIP 437792 20993 6059473 2024-02-25 01:56:30.486 2024-02-25 01:56:30.486 10000 FEE 437630 15732 6059474 2024-02-25 01:56:30.486 2024-02-25 01:56:30.486 90000 TIP 437630 20852 6059490 2024-02-25 02:01:13.239 2024-02-25 02:01:13.239 6900 FEE 437852 2829 6059491 2024-02-25 02:01:13.239 2024-02-25 02:01:13.239 62100 TIP 437852 20646 6059497 2024-02-25 02:01:37.246 2024-02-25 02:01:37.246 6900 FEE 437852 21344 6059498 2024-02-25 02:01:37.246 2024-02-25 02:01:37.246 62100 TIP 437852 726 6059515 2024-02-25 02:03:02.075 2024-02-25 02:03:02.075 1000 FEE 437860 11938 6059534 2024-02-25 02:10:40.068 2024-02-25 02:10:40.068 2100 FEE 437723 20299 6059535 2024-02-25 02:10:40.068 2024-02-25 02:10:40.068 18900 TIP 437723 1213 6059552 2024-02-25 02:13:10.373 2024-02-25 02:13:10.373 1000 FEE 437775 21180 6059553 2024-02-25 02:13:10.373 2024-02-25 02:13:10.373 9000 TIP 437775 1272 6059573 2024-02-25 02:16:29.235 2024-02-25 02:16:29.235 1000 FEE 437763 20841 6059574 2024-02-25 02:16:29.235 2024-02-25 02:16:29.235 9000 TIP 437763 18170 6059600 2024-02-25 02:26:23.897 2024-02-25 02:26:23.897 1000 FEE 437495 21214 6059601 2024-02-25 02:26:23.897 2024-02-25 02:26:23.897 9000 TIP 437495 12261 6059611 2024-02-25 02:29:08.733 2024-02-25 02:29:08.733 1000 FEE 437874 13767 6059612 2024-02-25 02:29:08.733 2024-02-25 02:29:08.733 9000 TIP 437874 7668 6059617 2024-02-25 02:29:32.277 2024-02-25 02:29:32.277 1000 FEE 437876 19812 6059630 2024-02-25 02:32:44.572 2024-02-25 02:32:44.572 1000 FEE 437611 21503 6059631 2024-02-25 02:32:44.572 2024-02-25 02:32:44.572 9000 TIP 437611 18368 6059644 2024-02-25 02:34:10.495 2024-02-25 02:34:10.495 1000 FEE 437821 20924 6059645 2024-02-25 02:34:10.495 2024-02-25 02:34:10.495 9000 TIP 437821 18235 6059674 2024-02-25 02:37:16.945 2024-02-25 02:37:16.945 900 FEE 437769 21369 6059675 2024-02-25 02:37:16.945 2024-02-25 02:37:16.945 8100 TIP 437769 2431 6059677 2024-02-25 02:38:08.314 2024-02-25 02:38:08.314 100 FEE 437863 636 6059678 2024-02-25 02:38:08.314 2024-02-25 02:38:08.314 900 TIP 437863 9992 6059684 2024-02-25 02:38:28.265 2024-02-25 02:38:28.265 1000 FEE 437881 4304 6059685 2024-02-25 02:38:28.265 2024-02-25 02:38:28.265 9000 TIP 437881 21091 6059691 2024-02-25 02:39:38.903 2024-02-25 02:39:38.903 1000 FEE 437882 6148 6059726 2024-02-25 02:46:04.978 2024-02-25 02:46:04.978 1000 FEE 437831 6393 6059727 2024-02-25 02:46:04.978 2024-02-25 02:46:04.978 9000 TIP 437831 685 6059729 2024-02-25 02:47:27.13 2024-02-25 02:47:27.13 100000 FEE 437886 2703 6059730 2024-02-25 02:47:30.13 2024-02-25 02:47:30.13 2100 FEE 434729 18101 6059731 2024-02-25 02:47:30.13 2024-02-25 02:47:30.13 18900 TIP 434729 4083 6059787 2024-02-25 02:56:14.666 2024-02-25 02:56:14.666 1200 FEE 437560 2640 6059788 2024-02-25 02:56:14.666 2024-02-25 02:56:14.666 10800 TIP 437560 9169 6059869 2024-02-25 03:01:44.015 2024-02-25 03:01:44.015 100000 FEE 437900 15075 6121011 2024-03-01 02:15:02.916 2024-03-01 02:15:02.916 1000 STREAM 141924 6136 6121091 2024-03-01 02:34:03.144 2024-03-01 02:34:03.144 1000 STREAM 141924 21482 6121101 2024-03-01 02:37:03.165 2024-03-01 02:37:03.165 1000 STREAM 141924 1044 6121108 2024-03-01 02:41:03.23 2024-03-01 02:41:03.23 1000 STREAM 141924 21166 6121110 2024-03-01 02:43:03.259 2024-03-01 02:43:03.259 1000 STREAM 141924 16124 6121117 2024-03-01 02:46:03.29 2024-03-01 02:46:03.29 1000 STREAM 141924 17415 6121119 2024-03-01 02:48:03.314 2024-03-01 02:48:03.314 1000 STREAM 141924 19332 6121144 2024-03-01 02:56:03.444 2024-03-01 02:56:03.444 1000 STREAM 141924 664 6121154 2024-03-01 02:58:03.5 2024-03-01 02:58:03.5 1000 STREAM 141924 18837 6121201 2024-03-01 03:07:03.625 2024-03-01 03:07:03.625 1000 STREAM 141924 17162 6121223 2024-03-01 03:13:03.736 2024-03-01 03:13:03.736 1000 STREAM 141924 10342 6121243 2024-03-01 03:20:02.455 2024-03-01 03:20:02.455 1000 STREAM 141924 2961 6121245 2024-03-01 03:22:02.454 2024-03-01 03:22:02.454 1000 STREAM 141924 20562 6121250 2024-03-01 03:24:02.485 2024-03-01 03:24:02.485 1000 STREAM 141924 20481 6121255 2024-03-01 03:26:02.489 2024-03-01 03:26:02.489 1000 STREAM 141924 15556 6121256 2024-03-01 03:27:02.486 2024-03-01 03:27:02.486 1000 STREAM 141924 20022 6121263 2024-03-01 03:30:02.561 2024-03-01 03:30:02.561 1000 STREAM 141924 1105 6121286 2024-03-01 03:35:02.553 2024-03-01 03:35:02.553 1000 STREAM 141924 2774 6121294 2024-03-01 03:39:02.583 2024-03-01 03:39:02.583 1000 STREAM 141924 20340 6121296 2024-03-01 03:40:02.61 2024-03-01 03:40:02.61 1000 STREAM 141924 18264 6121315 2024-03-01 03:42:02.647 2024-03-01 03:42:02.647 1000 STREAM 141924 7983 6121318 2024-03-01 03:43:02.662 2024-03-01 03:43:02.662 1000 STREAM 141924 684 6121319 2024-03-01 03:44:02.678 2024-03-01 03:44:02.678 1000 STREAM 141924 19259 6121326 2024-03-01 03:47:02.723 2024-03-01 03:47:02.723 1000 STREAM 141924 1605 6121332 2024-03-01 03:48:02.712 2024-03-01 03:48:02.712 1000 STREAM 141924 21556 6121346 2024-03-01 03:53:02.833 2024-03-01 03:53:02.833 1000 STREAM 141924 844 6121350 2024-03-01 03:54:02.849 2024-03-01 03:54:02.849 1000 STREAM 141924 1549 6121361 2024-03-01 03:58:02.876 2024-03-01 03:58:02.876 1000 STREAM 141924 12169 6121368 2024-03-01 04:00:02.918 2024-03-01 04:00:02.918 1000 STREAM 141924 2508 6121375 2024-03-01 04:01:02.899 2024-03-01 04:01:02.899 1000 STREAM 141924 17710 6121386 2024-03-01 04:02:02.877 2024-03-01 04:02:02.877 1000 STREAM 141924 16532 6121387 2024-03-01 04:03:02.861 2024-03-01 04:03:02.861 1000 STREAM 141924 7992 6121388 2024-03-01 04:04:02.888 2024-03-01 04:04:02.888 1000 STREAM 141924 4487 6121393 2024-03-01 04:08:02.916 2024-03-01 04:08:02.916 1000 STREAM 141924 18119 6121397 2024-03-01 04:11:02.937 2024-03-01 04:11:02.937 1000 STREAM 141924 3396 6121425 2024-03-01 04:13:02.932 2024-03-01 04:13:02.932 1000 STREAM 141924 9347 6121508 2024-03-01 04:17:03.04 2024-03-01 04:17:03.04 1000 STREAM 141924 10849 6121544 2024-03-01 04:19:02.987 2024-03-01 04:19:02.987 1000 STREAM 141924 14503 6121609 2024-03-01 04:23:03.015 2024-03-01 04:23:03.015 1000 STREAM 141924 17953 6059200 2024-02-25 01:00:02.905 2024-02-25 01:00:02.905 1000 STREAM 141924 13781 6059204 2024-02-25 01:02:02.918 2024-02-25 01:02:02.918 1000 STREAM 141924 20523 6059215 2024-02-25 01:03:02.911 2024-02-25 01:03:02.911 1000 STREAM 141924 18679 6059219 2024-02-25 01:04:02.936 2024-02-25 01:04:02.936 1000 STREAM 141924 21532 6059224 2024-02-25 01:06:02.957 2024-02-25 01:06:02.957 1000 STREAM 141924 4768 6059267 2024-02-25 01:11:02.986 2024-02-25 01:11:02.986 1000 STREAM 141924 6700 6059268 2024-02-25 01:12:02.993 2024-02-25 01:12:02.993 1000 STREAM 141924 14195 6059276 2024-02-25 01:14:03.034 2024-02-25 01:14:03.034 1000 STREAM 141924 18330 6059282 2024-02-25 01:17:03.036 2024-02-25 01:17:03.036 1000 STREAM 141924 9427 6121015 2024-03-01 02:17:02.931 2024-03-01 02:17:02.931 1000 STREAM 141924 17218 6121035 2024-03-01 02:19:02.971 2024-03-01 02:19:02.971 1000 STREAM 141924 20825 6121037 2024-03-01 02:21:02.99 2024-03-01 02:21:02.99 1000 STREAM 141924 15409 6121039 2024-03-01 02:22:03.039 2024-03-01 02:22:03.039 1000 STREAM 141924 19094 6121043 2024-03-01 02:24:03.03 2024-03-01 02:24:03.03 1000 STREAM 141924 19193 6121044 2024-03-01 02:25:03.045 2024-03-01 02:25:03.045 1000 STREAM 141924 760 6121056 2024-03-01 02:27:03.064 2024-03-01 02:27:03.064 1000 STREAM 141924 11776 6121065 2024-03-01 02:29:03.098 2024-03-01 02:29:03.098 1000 STREAM 141924 19235 6121068 2024-03-01 02:30:03.129 2024-03-01 02:30:03.129 1000 STREAM 141924 7185 6121096 2024-03-01 02:35:03.14 2024-03-01 02:35:03.14 1000 STREAM 141924 20376 6121104 2024-03-01 02:39:03.193 2024-03-01 02:39:03.193 1000 STREAM 141924 5694 6121128 2024-03-01 02:50:03.396 2024-03-01 02:50:03.396 1000 STREAM 141924 3213 6121134 2024-03-01 02:52:03.383 2024-03-01 02:52:03.383 1000 STREAM 141924 11789 6121141 2024-03-01 02:54:03.418 2024-03-01 02:54:03.418 1000 STREAM 141924 13547 6121162 2024-03-01 02:59:03.493 2024-03-01 02:59:03.493 1000 STREAM 141924 8162 6121163 2024-03-01 03:00:03.549 2024-03-01 03:00:03.549 1000 STREAM 141924 20754 6121167 2024-03-01 03:01:03.519 2024-03-01 03:01:03.519 1000 STREAM 141924 11144 6121168 2024-03-01 03:02:03.535 2024-03-01 03:02:03.535 1000 STREAM 141924 19909 6121171 2024-03-01 03:03:03.559 2024-03-01 03:03:03.559 1000 STREAM 141924 2431 6121172 2024-03-01 03:04:03.582 2024-03-01 03:04:03.582 1000 STREAM 141924 20058 6121175 2024-03-01 03:05:03.582 2024-03-01 03:05:03.582 1000 STREAM 141924 15159 6121182 2024-03-01 03:06:03.619 2024-03-01 03:06:03.619 1000 STREAM 141924 20663 6121203 2024-03-01 03:08:03.657 2024-03-01 03:08:03.657 1000 STREAM 141924 9345 6121211 2024-03-01 03:09:03.668 2024-03-01 03:09:03.668 1000 STREAM 141924 14260 6121212 2024-03-01 03:10:03.72 2024-03-01 03:10:03.72 1000 STREAM 141924 18784 6121219 2024-03-01 03:11:03.722 2024-03-01 03:11:03.722 1000 STREAM 141924 16848 6121222 2024-03-01 03:12:03.727 2024-03-01 03:12:03.727 1000 STREAM 141924 15367 6121252 2024-03-01 03:25:02.473 2024-03-01 03:25:02.473 1000 STREAM 141924 11164 6121258 2024-03-01 03:28:02.519 2024-03-01 03:28:02.519 1000 STREAM 141924 2525 6121259 2024-03-01 03:29:02.506 2024-03-01 03:29:02.506 1000 STREAM 141924 985 6121270 2024-03-01 03:31:02.541 2024-03-01 03:31:02.541 1000 STREAM 141924 4654 6121276 2024-03-01 03:32:02.553 2024-03-01 03:32:02.553 1000 STREAM 141924 18174 6121279 2024-03-01 03:33:02.544 2024-03-01 03:33:02.544 1000 STREAM 141924 20554 6121284 2024-03-01 03:34:02.54 2024-03-01 03:34:02.54 1000 STREAM 141924 16097 6121291 2024-03-01 03:36:02.572 2024-03-01 03:36:02.572 1000 STREAM 141924 21430 6121292 2024-03-01 03:37:02.579 2024-03-01 03:37:02.579 1000 STREAM 141924 18005 6121293 2024-03-01 03:38:02.561 2024-03-01 03:38:02.561 1000 STREAM 141924 1000 6121320 2024-03-01 03:45:02.719 2024-03-01 03:45:02.719 1000 STREAM 141924 18517 6121325 2024-03-01 03:46:02.702 2024-03-01 03:46:02.702 1000 STREAM 141924 1114 6121335 2024-03-01 03:49:02.749 2024-03-01 03:49:02.749 1000 STREAM 141924 12744 6121339 2024-03-01 03:50:02.804 2024-03-01 03:50:02.804 1000 STREAM 141924 13527 6121340 2024-03-01 03:51:02.767 2024-03-01 03:51:02.767 1000 STREAM 141924 716 6121343 2024-03-01 03:52:02.82 2024-03-01 03:52:02.82 1000 STREAM 141924 15094 6121353 2024-03-01 03:55:02.836 2024-03-01 03:55:02.836 1000 STREAM 141924 19886 6121354 2024-03-01 03:56:02.885 2024-03-01 03:56:02.885 1000 STREAM 141924 1474 6121355 2024-03-01 03:57:02.874 2024-03-01 03:57:02.874 1000 STREAM 141924 18232 6121363 2024-03-01 03:59:02.886 2024-03-01 03:59:02.886 1000 STREAM 141924 4323 6121389 2024-03-01 04:05:02.892 2024-03-01 04:05:02.892 1000 STREAM 141924 1567 6121391 2024-03-01 04:06:02.885 2024-03-01 04:06:02.885 1000 STREAM 141924 2773 6121392 2024-03-01 04:07:02.871 2024-03-01 04:07:02.871 1000 STREAM 141924 9036 6121394 2024-03-01 04:09:02.908 2024-03-01 04:09:02.908 1000 STREAM 141924 13365 6121395 2024-03-01 04:10:02.961 2024-03-01 04:10:02.961 1000 STREAM 141924 14465 6121401 2024-03-01 04:12:02.936 2024-03-01 04:12:02.936 1000 STREAM 141924 12160 6121432 2024-03-01 04:14:02.942 2024-03-01 04:14:02.942 1000 STREAM 141924 21207 6121433 2024-03-01 04:15:02.97 2024-03-01 04:15:02.97 1000 STREAM 141924 1472 6121442 2024-03-01 04:16:02.994 2024-03-01 04:16:02.994 1000 STREAM 141924 17523 6121527 2024-03-01 04:18:02.983 2024-03-01 04:18:02.983 1000 STREAM 141924 7966 6121574 2024-03-01 04:20:02.995 2024-03-01 04:20:02.995 1000 STREAM 141924 4831 6121589 2024-03-01 04:21:03.011 2024-03-01 04:21:03.011 1000 STREAM 141924 6260 6121594 2024-03-01 04:22:03.013 2024-03-01 04:22:03.013 1000 STREAM 141924 20287 6121619 2024-03-01 04:24:03.012 2024-03-01 04:24:03.012 1000 STREAM 141924 16329 6121630 2024-03-01 04:26:03.017 2024-03-01 04:26:03.017 1000 STREAM 141924 1060 6121634 2024-03-01 04:28:03.021 2024-03-01 04:28:03.021 1000 STREAM 141924 688 6121638 2024-03-01 04:31:03.018 2024-03-01 04:31:03.018 1000 STREAM 141924 20504 6121644 2024-03-01 04:33:03.037 2024-03-01 04:33:03.037 1000 STREAM 141924 19637 6121646 2024-03-01 04:34:03.034 2024-03-01 04:34:03.034 1000 STREAM 141924 20106 6121657 2024-03-01 04:37:03.056 2024-03-01 04:37:03.056 1000 STREAM 141924 12951 6121681 2024-03-01 04:38:03.057 2024-03-01 04:38:03.057 1000 STREAM 141924 12965 6121682 2024-03-01 04:39:07.365 2024-03-01 04:39:07.365 1000 STREAM 141924 7978 6121693 2024-03-01 04:40:03.413 2024-03-01 04:40:03.413 1000 STREAM 141924 15408 6121708 2024-03-01 04:41:03.36 2024-03-01 04:41:03.36 1000 STREAM 141924 21042 6121721 2024-03-01 04:45:03.396 2024-03-01 04:45:03.396 1000 STREAM 141924 633 6121730 2024-03-01 04:49:03.439 2024-03-01 04:49:03.439 1000 STREAM 141924 629 6121731 2024-03-01 04:50:03.485 2024-03-01 04:50:03.485 1000 STREAM 141924 14169 6121740 2024-03-01 04:52:03.476 2024-03-01 04:52:03.476 1000 STREAM 141924 20657 6121745 2024-03-01 04:53:03.488 2024-03-01 04:53:03.488 1000 STREAM 141924 19848 6121810 2024-03-01 05:00:03.617 2024-03-01 05:00:03.617 1000 STREAM 141924 15491 6121812 2024-03-01 05:02:03.591 2024-03-01 05:02:03.591 1000 STREAM 141924 7891 6121823 2024-03-01 05:03:03.602 2024-03-01 05:03:03.602 1000 STREAM 141924 20897 6059233 2024-02-25 01:06:39.612 2024-02-25 01:06:39.612 4000 FEE 437817 9845 6059234 2024-02-25 01:06:39.612 2024-02-25 01:06:39.612 36000 TIP 437817 19322 6059269 2024-02-25 01:12:27.324 2024-02-25 01:12:27.324 1000 FEE 437827 13527 6059289 2024-02-25 01:20:33.684 2024-02-25 01:20:33.684 6900 FEE 436935 9552 6059290 2024-02-25 01:20:33.684 2024-02-25 01:20:33.684 62100 TIP 436935 12278 6059299 2024-02-25 01:24:42.563 2024-02-25 01:24:42.563 1000 FEE 437812 19117 6059300 2024-02-25 01:24:42.563 2024-02-25 01:24:42.563 9000 TIP 437812 3411 6059315 2024-02-25 01:29:29.642 2024-02-25 01:29:29.642 300 FEE 437800 12951 6059316 2024-02-25 01:29:29.642 2024-02-25 01:29:29.642 2700 TIP 437800 11314 6059317 2024-02-25 01:29:29.829 2024-02-25 01:29:29.829 300 FEE 437800 16536 6059318 2024-02-25 01:29:29.829 2024-02-25 01:29:29.829 2700 TIP 437800 18923 6059343 2024-02-25 01:35:01.556 2024-02-25 01:35:01.556 1000 FEE 437837 803 6059349 2024-02-25 01:36:34.125 2024-02-25 01:36:34.125 2100 FEE 437602 11491 6059350 2024-02-25 01:36:34.125 2024-02-25 01:36:34.125 18900 TIP 437602 623 6059364 2024-02-25 01:37:32.932 2024-02-25 01:37:32.932 2100 FEE 437832 18528 6059365 2024-02-25 01:37:32.932 2024-02-25 01:37:32.932 18900 TIP 437832 16660 6059422 2024-02-25 01:48:49.439 2024-02-25 01:48:49.439 1000 FEE 437758 882 6059423 2024-02-25 01:48:49.439 2024-02-25 01:48:49.439 9000 TIP 437758 20066 6059438 2024-02-25 01:49:28.724 2024-02-25 01:49:28.724 1000 FEE 437756 12122 6059439 2024-02-25 01:49:28.724 2024-02-25 01:49:28.724 9000 TIP 437756 1472 6059442 2024-02-25 01:49:29.732 2024-02-25 01:49:29.732 1000 FEE 437756 1092 6059443 2024-02-25 01:49:29.732 2024-02-25 01:49:29.732 9000 TIP 437756 17714 6059455 2024-02-25 01:52:47.48 2024-02-25 01:52:47.48 10000 FEE 437269 19153 6059456 2024-02-25 01:52:47.48 2024-02-25 01:52:47.48 90000 TIP 437269 1401 6059470 2024-02-25 01:55:47.893 2024-02-25 01:55:47.893 2100 FEE 437817 14472 6059471 2024-02-25 01:55:47.893 2024-02-25 01:55:47.893 18900 TIP 437817 3642 6059507 2024-02-25 02:01:59.338 2024-02-25 02:01:59.338 6900 FEE 437854 21155 6059508 2024-02-25 02:01:59.338 2024-02-25 02:01:59.338 62100 TIP 437854 18231 6059509 2024-02-25 02:02:00.387 2024-02-25 02:02:00.387 6900 FEE 437854 20614 6059510 2024-02-25 02:02:00.387 2024-02-25 02:02:00.387 62100 TIP 437854 1652 6059559 2024-02-25 02:14:14.643 2024-02-25 02:14:14.643 1000 FEE 437752 8376 6059560 2024-02-25 02:14:14.643 2024-02-25 02:14:14.643 9000 TIP 437752 20479 6059567 2024-02-25 02:15:26.16 2024-02-25 02:15:26.16 1000 FEE 437738 844 6059568 2024-02-25 02:15:26.16 2024-02-25 02:15:26.16 9000 TIP 437738 21329 6059607 2024-02-25 02:28:19.268 2024-02-25 02:28:19.268 1000 FEE 437874 4292 6059608 2024-02-25 02:28:35.235 2024-02-25 02:28:35.235 1000 FEE 437770 9438 6059609 2024-02-25 02:28:35.235 2024-02-25 02:28:35.235 9000 TIP 437770 21453 6059670 2024-02-25 02:37:10.417 2024-02-25 02:37:10.417 900 FEE 437807 6384 6059671 2024-02-25 02:37:10.417 2024-02-25 02:37:10.417 8100 TIP 437807 5171 6059683 2024-02-25 02:38:15.813 2024-02-25 02:38:15.813 1000 FEE 437881 20129 6059744 2024-02-25 02:49:52.525 2024-02-25 02:49:52.525 6900 FEE 437880 19848 6059745 2024-02-25 02:49:52.525 2024-02-25 02:49:52.525 62100 TIP 437880 697 6059766 2024-02-25 02:55:22.235 2024-02-25 02:55:22.235 3300 FEE 437723 9705 6059767 2024-02-25 02:55:22.235 2024-02-25 02:55:22.235 29700 TIP 437723 20168 6059770 2024-02-25 02:55:27.284 2024-02-25 02:55:27.284 3300 FEE 437769 5809 6059771 2024-02-25 02:55:27.284 2024-02-25 02:55:27.284 29700 TIP 437769 8376 6059800 2024-02-25 02:58:31.507 2024-02-25 02:58:31.507 1700 FEE 437891 16816 6059801 2024-02-25 02:58:31.507 2024-02-25 02:58:31.507 15300 TIP 437891 18188 6059808 2024-02-25 02:59:09.688 2024-02-25 02:59:09.688 100 FEE 437891 19506 6059809 2024-02-25 02:59:09.688 2024-02-25 02:59:09.688 900 TIP 437891 2061 6059815 2024-02-25 03:00:11.968 2024-02-25 03:00:11.968 1000 FEE 437899 16124 6059820 2024-02-25 03:00:26.235 2024-02-25 03:00:26.235 2100 FEE 437723 2329 6059821 2024-02-25 03:00:26.235 2024-02-25 03:00:26.235 18900 TIP 437723 2775 6059822 2024-02-25 03:00:26.695 2024-02-25 03:00:26.695 2100 FEE 437720 632 6059823 2024-02-25 03:00:26.695 2024-02-25 03:00:26.695 18900 TIP 437720 2061 6059840 2024-02-25 03:00:33.118 2024-02-25 03:00:33.118 2100 FEE 437769 14939 6059841 2024-02-25 03:00:33.118 2024-02-25 03:00:33.118 18900 TIP 437769 14037 6059858 2024-02-25 03:00:38.55 2024-02-25 03:00:38.55 2100 FEE 437276 20245 6059293 2024-02-25 01:23:03.096 2024-02-25 01:23:03.096 1000 STREAM 141924 16839 6059302 2024-02-25 01:26:03.135 2024-02-25 01:26:03.135 1000 STREAM 141924 683 6059306 2024-02-25 01:28:03.15 2024-02-25 01:28:03.15 1000 STREAM 141924 4415 6059307 2024-02-25 01:29:03.133 2024-02-25 01:29:03.133 1000 STREAM 141924 20481 6059378 2024-02-25 01:40:03.197 2024-02-25 01:40:03.197 1000 STREAM 141924 19007 6059387 2024-02-25 01:43:03.2 2024-02-25 01:43:03.2 1000 STREAM 141924 21012 6059404 2024-02-25 01:46:03.21 2024-02-25 01:46:03.21 1000 STREAM 141924 1705 6059449 2024-02-25 01:50:03.23 2024-02-25 01:50:03.23 1000 STREAM 141924 17050 6059461 2024-02-25 01:55:03.246 2024-02-25 01:55:03.246 1000 STREAM 141924 9796 6059472 2024-02-25 01:56:03.236 2024-02-25 01:56:03.236 1000 STREAM 141924 10728 6059477 2024-02-25 01:57:03.246 2024-02-25 01:57:03.246 1000 STREAM 141924 5520 6059485 2024-02-25 02:01:03.288 2024-02-25 02:01:03.288 1000 STREAM 141924 20454 6059511 2024-02-25 02:02:03.278 2024-02-25 02:02:03.278 1000 STREAM 141924 7869 6059563 2024-02-25 02:15:03.324 2024-02-25 02:15:03.324 1000 STREAM 141924 20479 6059591 2024-02-25 02:23:03.367 2024-02-25 02:23:03.367 1000 STREAM 141924 16788 6059603 2024-02-25 02:28:03.352 2024-02-25 02:28:03.352 1000 STREAM 141924 16440 6059638 2024-02-25 02:33:03.375 2024-02-25 02:33:03.375 1000 STREAM 141924 12268 6059659 2024-02-25 02:36:03.388 2024-02-25 02:36:03.388 1000 STREAM 141924 18017 6059665 2024-02-25 02:37:03.397 2024-02-25 02:37:03.397 1000 STREAM 141924 4083 6059676 2024-02-25 02:38:03.413 2024-02-25 02:38:03.413 1000 STREAM 141924 14404 6059688 2024-02-25 02:39:03.433 2024-02-25 02:39:03.433 1000 STREAM 141924 886 6059694 2024-02-25 02:40:03.458 2024-02-25 02:40:03.458 1000 STREAM 141924 1272 6059701 2024-02-25 02:41:03.445 2024-02-25 02:41:03.445 1000 STREAM 141924 18472 6059714 2024-02-25 02:43:03.473 2024-02-25 02:43:03.473 1000 STREAM 141924 18393 6059754 2024-02-25 02:53:03.65 2024-02-25 02:53:03.65 1000 STREAM 141924 13132 6059797 2024-02-25 02:58:03.695 2024-02-25 02:58:03.695 1000 STREAM 141924 17162 6059868 2024-02-25 03:01:03.704 2024-02-25 03:01:03.704 1000 STREAM 141924 17227 6059871 2024-02-25 03:02:03.701 2024-02-25 03:02:03.701 1000 STREAM 141924 4027 6121114 2024-03-01 02:44:14.04 2024-03-01 02:44:14.04 7700 FEE 444475 18727 6121115 2024-03-01 02:44:14.04 2024-03-01 02:44:14.04 69300 TIP 444475 16282 6121133 2024-03-01 02:51:56.991 2024-03-01 02:51:56.991 10000 FEE 444511 1471 6121158 2024-03-01 02:58:39.054 2024-03-01 02:58:39.054 2600 FEE 444483 18543 6121159 2024-03-01 02:58:39.054 2024-03-01 02:58:39.054 23400 TIP 444483 622 6121183 2024-03-01 03:06:46.851 2024-03-01 03:06:46.851 100 FEE 444303 20156 6121184 2024-03-01 03:06:46.851 2024-03-01 03:06:46.851 900 TIP 444303 13204 6121185 2024-03-01 03:06:51.282 2024-03-01 03:06:51.282 2700 FEE 444102 20301 6121186 2024-03-01 03:06:51.282 2024-03-01 03:06:51.282 24300 TIP 444102 10273 6121191 2024-03-01 03:06:51.872 2024-03-01 03:06:51.872 2700 FEE 444102 11165 6121192 2024-03-01 03:06:51.872 2024-03-01 03:06:51.872 24300 TIP 444102 8796 6121199 2024-03-01 03:06:58.816 2024-03-01 03:06:58.816 70000 FEE 444102 19633 6121200 2024-03-01 03:06:58.816 2024-03-01 03:06:58.816 630000 TIP 444102 10668 6121217 2024-03-01 03:10:29.211 2024-03-01 03:10:29.211 2700 FEE 443712 4633 6121218 2024-03-01 03:10:29.211 2024-03-01 03:10:29.211 24300 TIP 443712 17091 6121253 2024-03-01 03:25:24.356 2024-03-01 03:25:24.356 5000 FEE 444526 6602 6121257 2024-03-01 03:27:56.102 2024-03-01 03:27:56.102 1000 FEE 444528 14295 6121264 2024-03-01 03:30:12.665 2024-03-01 03:30:12.665 10100 FEE 444526 15337 6121265 2024-03-01 03:30:12.665 2024-03-01 03:30:12.665 90900 TIP 444526 19417 6121272 2024-03-01 03:31:44.93 2024-03-01 03:31:44.93 700 FEE 444370 21180 6121273 2024-03-01 03:31:44.93 2024-03-01 03:31:44.93 6300 TIP 444370 19512 6121274 2024-03-01 03:31:52.856 2024-03-01 03:31:52.856 700 FEE 444505 6383 6121275 2024-03-01 03:31:52.856 2024-03-01 03:31:52.856 6300 TIP 444505 1468 6121282 2024-03-01 03:33:38.662 2024-03-01 03:33:38.662 10100 FEE 444506 17183 6121283 2024-03-01 03:33:38.662 2024-03-01 03:33:38.662 90900 TIP 444506 13517 6121287 2024-03-01 03:35:02.915 2024-03-01 03:35:02.915 100 FEE 444526 954 6121288 2024-03-01 03:35:02.915 2024-03-01 03:35:02.915 900 TIP 444526 5308 6121295 2024-03-01 03:39:04.588 2024-03-01 03:39:04.588 1000 FEE 444535 951 6121356 2024-03-01 03:57:11.023 2024-03-01 03:57:11.023 1000 FEE 444542 19154 6121398 2024-03-01 04:11:17.501 2024-03-01 04:11:17.501 10000 FEE 444548 760 6121410 2024-03-01 04:12:09.582 2024-03-01 04:12:09.582 1000 FEE 444549 12561 6121421 2024-03-01 04:12:44.877 2024-03-01 04:12:44.877 1000 FEE 444376 766 6121422 2024-03-01 04:12:44.877 2024-03-01 04:12:44.877 9000 TIP 444376 12277 6121423 2024-03-01 04:12:45.713 2024-03-01 04:12:45.713 1000 FEE 444376 21178 6121424 2024-03-01 04:12:45.713 2024-03-01 04:12:45.713 9000 TIP 444376 8713 6121428 2024-03-01 04:13:14.766 2024-03-01 04:13:14.766 1000 FEE 444486 5791 6121429 2024-03-01 04:13:14.766 2024-03-01 04:13:14.766 9000 TIP 444486 18714 6121436 2024-03-01 04:15:36.814 2024-03-01 04:15:36.814 900 FEE 444538 19615 6121437 2024-03-01 04:15:36.814 2024-03-01 04:15:36.814 8100 TIP 444538 9339 6121445 2024-03-01 04:16:17.524 2024-03-01 04:16:17.524 900 FEE 444462 16769 6121446 2024-03-01 04:16:17.524 2024-03-01 04:16:17.524 8100 TIP 444462 18280 6121471 2024-03-01 04:16:33.789 2024-03-01 04:16:33.789 900 FEE 444471 21180 6121472 2024-03-01 04:16:33.789 2024-03-01 04:16:33.789 8100 TIP 444471 3544 6121480 2024-03-01 04:16:46.087 2024-03-01 04:16:46.087 500 FEE 444376 8376 6121481 2024-03-01 04:16:46.087 2024-03-01 04:16:46.087 4500 TIP 444376 18865 6121498 2024-03-01 04:16:57.063 2024-03-01 04:16:57.063 500 FEE 444376 15336 6121499 2024-03-01 04:16:57.063 2024-03-01 04:16:57.063 4500 TIP 444376 16754 6121504 2024-03-01 04:17:00.523 2024-03-01 04:17:00.523 500 FEE 444376 1389 6121505 2024-03-01 04:17:00.523 2024-03-01 04:17:00.523 4500 TIP 444376 20911 6121517 2024-03-01 04:17:23.694 2024-03-01 04:17:23.694 500 FEE 443861 1983 6121518 2024-03-01 04:17:23.694 2024-03-01 04:17:23.694 4500 TIP 443861 17321 6121525 2024-03-01 04:17:56.049 2024-03-01 04:17:56.049 500 FEE 443514 21091 6121526 2024-03-01 04:17:56.049 2024-03-01 04:17:56.049 4500 TIP 443514 21343 6121540 2024-03-01 04:18:58.167 2024-03-01 04:18:58.167 500 FEE 444083 6555 6121541 2024-03-01 04:18:58.167 2024-03-01 04:18:58.167 4500 TIP 444083 4570 6121559 2024-03-01 04:19:33.605 2024-03-01 04:19:33.605 900 FEE 443617 20563 6121560 2024-03-01 04:19:33.605 2024-03-01 04:19:33.605 8100 TIP 443617 1512 6121579 2024-03-01 04:20:22.636 2024-03-01 04:20:22.636 100 FEE 443794 19812 6121580 2024-03-01 04:20:22.636 2024-03-01 04:20:22.636 900 TIP 443794 11450 6121590 2024-03-01 04:21:14.244 2024-03-01 04:21:14.244 2100 FEE 444546 17541 6121591 2024-03-01 04:21:14.244 2024-03-01 04:21:14.244 18900 TIP 444546 20022 6121611 2024-03-01 04:23:14.983 2024-03-01 04:23:14.983 1000 FEE 443514 15488 6121612 2024-03-01 04:23:14.983 2024-03-01 04:23:14.983 9000 TIP 443514 14489 6121622 2024-03-01 04:24:14.866 2024-03-01 04:24:14.866 1000 FEE 444083 18904 6121623 2024-03-01 04:24:14.866 2024-03-01 04:24:14.866 9000 TIP 444083 20802 6121629 2024-03-01 04:25:08.706 2024-03-01 04:25:08.706 1000 FEE 444553 14791 6121642 2024-03-01 04:32:46.978 2024-03-01 04:32:46.978 2100 FEE 444102 15271 6121643 2024-03-01 04:32:46.978 2024-03-01 04:32:46.978 18900 TIP 444102 16660 6121696 2024-03-01 04:40:25.807 2024-03-01 04:40:25.807 1000 FEE 444376 1002 6059346 2024-02-25 01:36:03.19 2024-02-25 01:36:03.19 1000 STREAM 141924 688 6059379 2024-02-25 01:41:03.212 2024-02-25 01:41:03.212 1000 STREAM 141924 775 6059384 2024-02-25 01:42:03.205 2024-02-25 01:42:03.205 1000 STREAM 141924 6798 6059391 2024-02-25 01:44:03.207 2024-02-25 01:44:03.207 1000 STREAM 141924 5759 6059397 2024-02-25 01:45:03.198 2024-02-25 01:45:03.198 1000 STREAM 141924 19094 6059426 2024-02-25 01:49:03.224 2024-02-25 01:49:03.224 1000 STREAM 141924 18524 6059484 2024-02-25 02:00:03.245 2024-02-25 02:00:03.245 1000 STREAM 141924 16447 6121149 2024-03-01 02:57:04.187 2024-03-01 02:57:04.187 18900 TIP 444465 20754 6121160 2024-03-01 02:58:53.728 2024-03-01 02:58:53.728 100 FEE 444414 2724 6121161 2024-03-01 02:58:53.728 2024-03-01 02:58:53.728 900 TIP 444414 20523 6121176 2024-03-01 03:05:04.782 2024-03-01 03:05:04.782 100 FEE 444325 17710 6121177 2024-03-01 03:05:04.782 2024-03-01 03:05:04.782 900 TIP 444325 2016 6121241 2024-03-01 03:19:57.682 2024-03-01 03:19:57.682 100 FEE 444522 20059 6121242 2024-03-01 03:19:57.682 2024-03-01 03:19:57.682 900 TIP 444522 20525 6121251 2024-03-01 03:24:37.892 2024-03-01 03:24:37.892 1000 FEE 444525 13854 6121271 2024-03-01 03:31:23.436 2024-03-01 03:31:23.436 1000 FEE 444531 18380 6121298 2024-03-01 03:40:09.937 2024-03-01 03:40:09.937 1700 FEE 444522 20586 6121299 2024-03-01 03:40:09.937 2024-03-01 03:40:09.937 15300 TIP 444522 13042 6121304 2024-03-01 03:40:16.946 2024-03-01 03:40:16.946 100 FEE 444532 20594 6121305 2024-03-01 03:40:16.946 2024-03-01 03:40:16.946 900 TIP 444532 8954 6121321 2024-03-01 03:45:21.198 2024-03-01 03:45:21.198 10800 FEE 1620 14152 6121322 2024-03-01 03:45:21.198 2024-03-01 03:45:21.198 97200 TIP 1620 4175 6121329 2024-03-01 03:47:45.2 2024-03-01 03:47:45.2 69000 FEE 444537 5746 6121349 2024-03-01 03:53:49.106 2024-03-01 03:53:49.106 10000 FEE 444541 20701 6121408 2024-03-01 04:12:08.864 2024-03-01 04:12:08.864 1000 FEE 443545 985 6121409 2024-03-01 04:12:08.864 2024-03-01 04:12:08.864 9000 TIP 443545 15697 6121411 2024-03-01 04:12:09.982 2024-03-01 04:12:09.982 1000 FEE 443274 15624 6121412 2024-03-01 04:12:09.982 2024-03-01 04:12:09.982 9000 TIP 443274 21398 6121434 2024-03-01 04:15:36.662 2024-03-01 04:15:36.662 100 FEE 444538 2748 6121435 2024-03-01 04:15:36.662 2024-03-01 04:15:36.662 900 TIP 444538 20596 6121440 2024-03-01 04:15:46.016 2024-03-01 04:15:46.016 100 FEE 444540 20276 6121441 2024-03-01 04:15:46.016 2024-03-01 04:15:46.016 900 TIP 444540 2681 6121449 2024-03-01 04:16:20.29 2024-03-01 04:16:20.29 500 FEE 444168 20717 6121450 2024-03-01 04:16:20.29 2024-03-01 04:16:20.29 4500 TIP 444168 5487 6121451 2024-03-01 04:16:21.643 2024-03-01 04:16:21.643 500 FEE 443799 19661 6121452 2024-03-01 04:16:21.643 2024-03-01 04:16:21.643 4500 TIP 443799 1039 6121457 2024-03-01 04:16:24.287 2024-03-01 04:16:24.287 500 FEE 443274 19907 6121458 2024-03-01 04:16:24.287 2024-03-01 04:16:24.287 4500 TIP 443274 19292 6121461 2024-03-01 04:16:26.251 2024-03-01 04:16:26.251 500 FEE 443745 5359 6121462 2024-03-01 04:16:26.251 2024-03-01 04:16:26.251 4500 TIP 443745 4076 6121463 2024-03-01 04:16:27.053 2024-03-01 04:16:27.053 500 FEE 443583 7899 6121464 2024-03-01 04:16:27.053 2024-03-01 04:16:27.053 4500 TIP 443583 656 6121490 2024-03-01 04:16:50.415 2024-03-01 04:16:50.415 500 FEE 444376 16704 6121491 2024-03-01 04:16:50.415 2024-03-01 04:16:50.415 4500 TIP 444376 889 6121496 2024-03-01 04:16:56.08 2024-03-01 04:16:56.08 500 FEE 444376 762 6121497 2024-03-01 04:16:56.08 2024-03-01 04:16:56.08 4500 TIP 444376 14731 6121515 2024-03-01 04:17:21.622 2024-03-01 04:17:21.622 9000 FEE 444407 18396 6121516 2024-03-01 04:17:21.622 2024-03-01 04:17:21.622 81000 TIP 444407 13132 6121545 2024-03-01 04:19:06.673 2024-03-01 04:19:06.673 100 FEE 444498 826 6121546 2024-03-01 04:19:06.673 2024-03-01 04:19:06.673 900 TIP 444498 17094 6121555 2024-03-01 04:19:29.897 2024-03-01 04:19:29.897 9000 FEE 444365 20573 6121556 2024-03-01 04:19:29.897 2024-03-01 04:19:29.897 81000 TIP 444365 964 6121557 2024-03-01 04:19:33.414 2024-03-01 04:19:33.414 100 FEE 443617 644 6121558 2024-03-01 04:19:33.414 2024-03-01 04:19:33.414 900 TIP 443617 15200 6121597 2024-03-01 04:22:23.037 2024-03-01 04:22:23.037 1000 FEE 444168 1454 6121598 2024-03-01 04:22:23.037 2024-03-01 04:22:23.037 9000 TIP 444168 9844 6121601 2024-03-01 04:22:26.61 2024-03-01 04:22:26.61 1000 FEE 443545 19151 6121602 2024-03-01 04:22:26.61 2024-03-01 04:22:26.61 9000 TIP 443545 21044 6121624 2024-03-01 04:24:26.976 2024-03-01 04:24:26.976 1000 FEE 444148 20802 6121625 2024-03-01 04:24:26.976 2024-03-01 04:24:26.976 9000 TIP 444148 7389 6121668 2024-03-01 04:37:21.548 2024-03-01 04:37:21.548 1000000 FEE 444102 19795 6121669 2024-03-01 04:37:21.548 2024-03-01 04:37:21.548 9000000 TIP 444102 1624 6121702 2024-03-01 04:40:27.624 2024-03-01 04:40:27.624 1000 FEE 444376 9517 6121703 2024-03-01 04:40:27.624 2024-03-01 04:40:27.624 9000 TIP 444376 16410 6121706 2024-03-01 04:40:29.646 2024-03-01 04:40:29.646 1000 FEE 444376 2204 6121707 2024-03-01 04:40:29.646 2024-03-01 04:40:29.646 9000 TIP 444376 21067 6121716 2024-03-01 04:43:53.474 2024-03-01 04:43:53.474 1000 FEE 443616 15159 6121717 2024-03-01 04:43:53.474 2024-03-01 04:43:53.474 9000 TIP 443616 6136 6121728 2024-03-01 04:48:46.799 2024-03-01 04:48:46.799 9000 FEE 444561 17082 6121729 2024-03-01 04:48:46.799 2024-03-01 04:48:46.799 81000 TIP 444561 14045 6121767 2024-03-01 04:54:12.628 2024-03-01 04:54:12.628 1000 FEE 444102 11885 6121768 2024-03-01 04:54:12.628 2024-03-01 04:54:12.628 9000 TIP 444102 7979 6121783 2024-03-01 04:56:29.013 2024-03-01 04:56:29.013 1000 FEE 444376 12808 6121784 2024-03-01 04:56:29.013 2024-03-01 04:56:29.013 9000 TIP 444376 678 6121785 2024-03-01 04:56:29.71 2024-03-01 04:56:29.71 1000 FEE 444376 4059 6121786 2024-03-01 04:56:29.71 2024-03-01 04:56:29.71 9000 TIP 444376 16717 6121789 2024-03-01 04:56:32.282 2024-03-01 04:56:32.282 2000 FEE 444376 20018 6121790 2024-03-01 04:56:32.282 2024-03-01 04:56:32.282 18000 TIP 444376 19018 6121817 2024-03-01 05:02:19.015 2024-03-01 05:02:19.015 800 FEE 443545 2224 6121818 2024-03-01 05:02:19.015 2024-03-01 05:02:19.015 7200 TIP 443545 15159 6121819 2024-03-01 05:02:19.181 2024-03-01 05:02:19.181 800 FEE 443545 19770 6121820 2024-03-01 05:02:19.181 2024-03-01 05:02:19.181 7200 TIP 443545 10056 6121821 2024-03-01 05:02:31.824 2024-03-01 05:02:31.824 800 FEE 443808 4624 6121822 2024-03-01 05:02:31.824 2024-03-01 05:02:31.824 7200 TIP 443808 18830 6121857 2024-03-01 05:10:06.744 2024-03-01 05:10:06.744 3300 FEE 444523 11314 6121858 2024-03-01 05:10:06.744 2024-03-01 05:10:06.744 29700 TIP 444523 17541 6121862 2024-03-01 05:11:34.096 2024-03-01 05:11:34.096 21000 FEE 444570 9418 6121880 2024-03-01 05:19:38.453 2024-03-01 05:19:38.453 21000 FEE 444561 18311 6121881 2024-03-01 05:19:38.453 2024-03-01 05:19:38.453 189000 TIP 444561 15843 6121898 2024-03-01 05:27:22.362 2024-03-01 05:27:22.362 1000 FEE 444580 20841 6121931 2024-03-01 05:32:55.238 2024-03-01 05:32:55.238 10000 FEE 443593 4074 6121932 2024-03-01 05:32:55.238 2024-03-01 05:32:55.238 90000 TIP 443593 4323 6121934 2024-03-01 05:33:30.662 2024-03-01 05:33:30.662 100 FEE 444384 20546 6121935 2024-03-01 05:33:30.662 2024-03-01 05:33:30.662 900 TIP 444384 11527 6121973 2024-03-01 05:45:51.878 2024-03-01 05:45:51.878 10000 FEE 444571 12334 6121974 2024-03-01 05:45:51.878 2024-03-01 05:45:51.878 90000 TIP 444571 6327 6121982 2024-03-01 05:48:26.833 2024-03-01 05:48:26.833 0 FEE 444595 15556 6121996 2024-03-01 05:55:32.721 2024-03-01 05:55:32.721 0 FEE 444597 18494 6059496 2024-02-25 02:01:36.474 2024-02-25 02:01:36.474 62100 TIP 437852 9833 6059520 2024-02-25 02:03:41.821 2024-02-25 02:03:41.821 6900 FEE 437846 6526 6059521 2024-02-25 02:03:41.821 2024-02-25 02:03:41.821 62100 TIP 437846 10311 6059539 2024-02-25 02:11:05.928 2024-02-25 02:11:05.928 1000 FEE 437865 6030 6059547 2024-02-25 02:12:59.593 2024-02-25 02:12:59.593 1000 FEE 437723 21201 6059548 2024-02-25 02:12:59.593 2024-02-25 02:12:59.593 9000 TIP 437723 21498 6059554 2024-02-25 02:13:26.524 2024-02-25 02:13:26.524 2100 FEE 437817 16193 6059555 2024-02-25 02:13:26.524 2024-02-25 02:13:26.524 18900 TIP 437817 18919 6059556 2024-02-25 02:13:28.601 2024-02-25 02:13:28.601 1000 FEE 437800 19929 6059557 2024-02-25 02:13:28.601 2024-02-25 02:13:28.601 9000 TIP 437800 21136 6059564 2024-02-25 02:15:06.595 2024-02-25 02:15:06.595 1000 FEE 437866 18357 6059569 2024-02-25 02:15:58.635 2024-02-25 02:15:58.635 1000 FEE 437867 15200 6059619 2024-02-25 02:30:12.259 2024-02-25 02:30:12.259 1000 FEE 437877 20778 6059621 2024-02-25 02:31:33.768 2024-02-25 02:31:33.768 1000 FEE 437629 880 6059622 2024-02-25 02:31:33.768 2024-02-25 02:31:33.768 9000 TIP 437629 5129 6059632 2024-02-25 02:32:44.787 2024-02-25 02:32:44.787 1000 FEE 437611 18581 6059633 2024-02-25 02:32:44.787 2024-02-25 02:32:44.787 9000 TIP 437611 21180 6059657 2024-02-25 02:35:36.231 2024-02-25 02:35:36.231 9900 FEE 437791 7097 6059658 2024-02-25 02:35:36.231 2024-02-25 02:35:36.231 89100 TIP 437791 15063 6059660 2024-02-25 02:36:33.824 2024-02-25 02:36:33.824 100 FEE 437817 701 6059661 2024-02-25 02:36:33.824 2024-02-25 02:36:33.824 900 TIP 437817 20182 6059662 2024-02-25 02:36:34.129 2024-02-25 02:36:34.129 900 FEE 437817 7558 6059663 2024-02-25 02:36:34.129 2024-02-25 02:36:34.129 8100 TIP 437817 1806 6059672 2024-02-25 02:37:16.694 2024-02-25 02:37:16.694 100 FEE 437769 12097 6059673 2024-02-25 02:37:16.694 2024-02-25 02:37:16.694 900 TIP 437769 17541 6059692 2024-02-25 02:39:58.09 2024-02-25 02:39:58.09 1000 FEE 437714 20871 6059693 2024-02-25 02:39:58.09 2024-02-25 02:39:58.09 9000 TIP 437714 19154 6059697 2024-02-25 02:40:28.599 2024-02-25 02:40:28.599 36000 FEE 437670 5701 6059698 2024-02-25 02:40:28.599 2024-02-25 02:40:28.599 324000 TIP 437670 7673 6059702 2024-02-25 02:41:11.222 2024-02-25 02:41:11.222 10000 FEE 437700 18269 6059703 2024-02-25 02:41:11.222 2024-02-25 02:41:11.222 90000 TIP 437700 15243 6059708 2024-02-25 02:41:46.849 2024-02-25 02:41:46.849 40000 FEE 437502 21393 6059709 2024-02-25 02:41:46.849 2024-02-25 02:41:46.849 360000 TIP 437502 6421 6059720 2024-02-25 02:45:44.326 2024-02-25 02:45:44.326 1000 FEE 437885 1726 6059735 2024-02-25 02:48:49.822 2024-02-25 02:48:49.822 10000 FEE 437883 5293 6059736 2024-02-25 02:48:49.822 2024-02-25 02:48:49.822 90000 TIP 437883 7827 6059742 2024-02-25 02:49:52.415 2024-02-25 02:49:52.415 6900 FEE 437880 14255 6059743 2024-02-25 02:49:52.415 2024-02-25 02:49:52.415 62100 TIP 437880 683 6059760 2024-02-25 02:55:13.128 2024-02-25 02:55:13.128 3300 FEE 437720 685 6059761 2024-02-25 02:55:13.128 2024-02-25 02:55:13.128 29700 TIP 437720 20849 6059772 2024-02-25 02:55:27.493 2024-02-25 02:55:27.493 3300 FEE 437769 20254 6059773 2024-02-25 02:55:27.493 2024-02-25 02:55:27.493 29700 TIP 437769 21048 6059780 2024-02-25 02:55:54.68 2024-02-25 02:55:54.68 3300 FEE 437611 9107 6059781 2024-02-25 02:55:54.68 2024-02-25 02:55:54.68 29700 TIP 437611 6777 6059791 2024-02-25 02:57:18.548 2024-02-25 02:57:18.548 1700 FEE 437570 2326 6059792 2024-02-25 02:57:18.548 2024-02-25 02:57:18.548 15300 TIP 437570 18476 6059802 2024-02-25 02:58:53.724 2024-02-25 02:58:53.724 1000 FEE 437896 960 6059828 2024-02-25 03:00:28.744 2024-02-25 03:00:28.744 2100 FEE 437611 12808 6059829 2024-02-25 03:00:28.744 2024-02-25 03:00:28.744 18900 TIP 437611 3504 6059836 2024-02-25 03:00:31.952 2024-02-25 03:00:31.952 2100 FEE 437502 1584 6059837 2024-02-25 03:00:31.952 2024-02-25 03:00:31.952 18900 TIP 437502 5527 6059852 2024-02-25 03:00:37.284 2024-02-25 03:00:37.284 2100 FEE 437181 21527 6059853 2024-02-25 03:00:37.284 2024-02-25 03:00:37.284 18900 TIP 437181 14663 6059860 2024-02-25 03:00:39.978 2024-02-25 03:00:39.978 2100 FEE 437403 16270 6059861 2024-02-25 03:00:39.978 2024-02-25 03:00:39.978 18900 TIP 437403 21334 6059887 2024-02-25 03:05:28.625 2024-02-25 03:05:28.625 1000 FEE 194867 19044 6059888 2024-02-25 03:05:28.625 2024-02-25 03:05:28.625 9000 TIP 194867 8664 6059936 2024-02-25 03:07:52.351 2024-02-25 03:07:52.351 2100 FEE 437611 3706 6059937 2024-02-25 03:07:52.351 2024-02-25 03:07:52.351 18900 TIP 437611 9171 6059965 2024-02-25 03:12:06.031 2024-02-25 03:12:06.031 2100 FEE 437872 12774 6059966 2024-02-25 03:12:06.031 2024-02-25 03:12:06.031 18900 TIP 437872 628 6059968 2024-02-25 03:13:41.57 2024-02-25 03:13:41.57 2500 FEE 437765 13198 6059969 2024-02-25 03:13:41.57 2024-02-25 03:13:41.57 22500 TIP 437765 15213 6060004 2024-02-25 03:26:25.785 2024-02-25 03:26:25.785 1000 FEE 437918 19888 6060007 2024-02-25 03:26:27.53 2024-02-25 03:26:27.53 1000 FEE 437891 18704 6060008 2024-02-25 03:26:27.53 2024-02-25 03:26:27.53 9000 TIP 437891 16633 6060036 2024-02-25 03:32:49.273 2024-02-25 03:32:49.273 2100 FEE 437867 18232 6060037 2024-02-25 03:32:49.273 2024-02-25 03:32:49.273 18900 TIP 437867 7395 6060046 2024-02-25 03:34:41.729 2024-02-25 03:34:41.729 1000 FEE 437922 17116 6060057 2024-02-25 03:38:42.491 2024-02-25 03:38:42.491 1000 FEE 437924 16296 6060104 2024-02-25 03:51:14.334 2024-02-25 03:51:14.334 1000 FEE 437926 16633 6060112 2024-02-25 03:55:22.269 2024-02-25 03:55:22.269 2100 FEE 437723 9078 6060113 2024-02-25 03:55:22.269 2024-02-25 03:55:22.269 18900 TIP 437723 12507 6060129 2024-02-25 03:58:20.883 2024-02-25 03:58:20.883 1000 FEE 437932 16176 6060133 2024-02-25 03:58:48.338 2024-02-25 03:58:48.338 1000 FEE 437933 9351 6060151 2024-02-25 04:01:24.039 2024-02-25 04:01:24.039 1000 FEE 437884 8173 6060152 2024-02-25 04:01:24.039 2024-02-25 04:01:24.039 9000 TIP 437884 21296 6060179 2024-02-25 04:06:52.458 2024-02-25 04:06:52.458 4000 FEE 437775 10280 6060180 2024-02-25 04:06:52.458 2024-02-25 04:06:52.458 36000 TIP 437775 20479 6060182 2024-02-25 04:07:09.136 2024-02-25 04:07:09.136 2000 FEE 433319 19929 6060183 2024-02-25 04:07:09.136 2024-02-25 04:07:09.136 18000 TIP 433319 7425 6060209 2024-02-25 04:16:39.958 2024-02-25 04:16:39.958 500 FEE 437611 15594 6060210 2024-02-25 04:16:39.958 2024-02-25 04:16:39.958 4500 TIP 437611 20963 6060241 2024-02-25 04:18:48.898 2024-02-25 04:18:48.898 500 FEE 437684 8726 6060242 2024-02-25 04:18:48.898 2024-02-25 04:18:48.898 4500 TIP 437684 928 6060289 2024-02-25 04:32:31.624 2024-02-25 04:32:31.624 1000 FEE 437944 16347 6060293 2024-02-25 04:33:29.223 2024-02-25 04:33:29.223 1000 FEE 437945 7675 6060297 2024-02-25 04:34:49.833 2024-02-25 04:34:49.833 4200 FEE 437531 21406 6060298 2024-02-25 04:34:49.833 2024-02-25 04:34:49.833 37800 TIP 437531 18235 6060310 2024-02-25 04:35:51.857 2024-02-25 04:35:51.857 1000 FEE 437946 21620 6060311 2024-02-25 04:35:51.857 2024-02-25 04:35:51.857 9000 TIP 437946 5752 6060344 2024-02-25 04:49:53.426 2024-02-25 04:49:53.426 1000 FEE 437952 14959 6060364 2024-02-25 05:00:04.687 2024-02-25 05:00:04.687 100000 FEE 437955 16684 6060418 2024-02-25 05:18:19.575 2024-02-25 05:18:19.575 100 FEE 437769 19566 6060419 2024-02-25 05:18:19.575 2024-02-25 05:18:19.575 900 TIP 437769 12768 6060458 2024-02-25 05:33:47.962 2024-02-25 05:33:47.962 200 FEE 437817 8498 6060459 2024-02-25 05:33:47.962 2024-02-25 05:33:47.962 1800 TIP 437817 1209 6060463 2024-02-25 05:36:34.525 2024-02-25 05:36:34.525 1000 FEE 437877 18402 6060464 2024-02-25 05:36:34.525 2024-02-25 05:36:34.525 9000 TIP 437877 21042 6060498 2024-02-25 05:54:46.417 2024-02-25 05:54:46.417 800 FEE 437775 16212 6060499 2024-02-25 05:54:46.417 2024-02-25 05:54:46.417 7200 TIP 437775 825 6059528 2024-02-25 02:07:02.153 2024-02-25 02:07:02.153 1000 STREAM 141924 2718 6059532 2024-02-25 02:09:02.163 2024-02-25 02:09:02.163 1000 STREAM 141924 9874 6121226 2024-03-01 03:14:03.72 2024-03-01 03:14:03.72 1000 STREAM 141924 17953 6121234 2024-03-01 03:16:03.711 2024-03-01 03:16:03.711 1000 STREAM 141924 17519 6121240 2024-03-01 03:19:03.728 2024-03-01 03:19:03.728 1000 STREAM 141924 21262 6121244 2024-03-01 03:21:03.735 2024-03-01 03:21:03.735 1000 STREAM 141924 3990 6121248 2024-03-01 03:23:03.728 2024-03-01 03:23:03.728 1000 STREAM 141924 725 6121312 2024-03-01 03:41:03.912 2024-03-01 03:41:03.912 1000 STREAM 141924 13574 6059530 2024-02-25 02:08:03.296 2024-02-25 02:08:03.296 1000 STREAM 141924 12959 6059544 2024-02-25 02:12:03.3 2024-02-25 02:12:03.3 1000 STREAM 141924 15536 6059549 2024-02-25 02:13:03.307 2024-02-25 02:13:03.307 1000 STREAM 141924 19148 6059558 2024-02-25 02:14:03.322 2024-02-25 02:14:03.322 1000 STREAM 141924 10554 6121307 2024-03-01 03:40:18.572 2024-03-01 03:40:18.572 900 TIP 444532 9482 6121313 2024-03-01 03:41:59.698 2024-03-01 03:41:59.698 2100 FEE 444524 8985 6121314 2024-03-01 03:41:59.698 2024-03-01 03:41:59.698 18900 TIP 444524 1326 6121362 2024-03-01 03:58:43.095 2024-03-01 03:58:43.095 1000 FEE 444543 5519 6121364 2024-03-01 03:59:29.3 2024-03-01 03:59:29.3 1000 FEE 444544 16665 6121371 2024-03-01 04:00:15.568 2024-03-01 04:00:15.568 1000 FEE 444306 1142 6121372 2024-03-01 04:00:15.568 2024-03-01 04:00:15.568 9000 TIP 444306 762 6121390 2024-03-01 04:05:54.646 2024-03-01 04:05:54.646 1000 FEE 444546 667 6121399 2024-03-01 04:11:24.424 2024-03-01 04:11:24.424 100 FEE 444307 19813 6121400 2024-03-01 04:11:24.424 2024-03-01 04:11:24.424 900 TIP 444307 16633 6121406 2024-03-01 04:12:07.978 2024-03-01 04:12:07.978 1000 FEE 443272 19857 6121407 2024-03-01 04:12:07.978 2024-03-01 04:12:07.978 9000 TIP 443272 1468 6121415 2024-03-01 04:12:35.218 2024-03-01 04:12:35.218 1000 FEE 444220 940 6121416 2024-03-01 04:12:35.218 2024-03-01 04:12:35.218 9000 TIP 444220 13781 6121419 2024-03-01 04:12:44.216 2024-03-01 04:12:44.216 1000 FEE 444376 929 6121420 2024-03-01 04:12:44.216 2024-03-01 04:12:44.216 9000 TIP 444376 795 6121467 2024-03-01 04:16:28.928 2024-03-01 04:16:28.928 500 FEE 443915 1162 6121468 2024-03-01 04:16:28.928 2024-03-01 04:16:28.928 4500 TIP 443915 20852 6121482 2024-03-01 04:16:46.789 2024-03-01 04:16:46.789 500 FEE 444376 1881 6121483 2024-03-01 04:16:46.789 2024-03-01 04:16:46.789 4500 TIP 444376 21453 6121488 2024-03-01 04:16:50.233 2024-03-01 04:16:50.233 500 FEE 444376 12561 6121489 2024-03-01 04:16:50.233 2024-03-01 04:16:50.233 4500 TIP 444376 18336 6121502 2024-03-01 04:16:59.481 2024-03-01 04:16:59.481 500 FEE 444376 20546 6121503 2024-03-01 04:16:59.481 2024-03-01 04:16:59.481 4500 TIP 444376 15336 6121532 2024-03-01 04:18:29.705 2024-03-01 04:18:29.705 500 FEE 444064 1307 6121533 2024-03-01 04:18:29.705 2024-03-01 04:18:29.705 4500 TIP 444064 15060 6121547 2024-03-01 04:19:06.829 2024-03-01 04:19:06.829 100 FEE 444498 6765 6121548 2024-03-01 04:19:06.829 2024-03-01 04:19:06.829 900 TIP 444498 4304 6121561 2024-03-01 04:19:44.72 2024-03-01 04:19:44.72 90000 FEE 443577 660 6121562 2024-03-01 04:19:44.72 2024-03-01 04:19:44.72 810000 TIP 443577 1489 6121581 2024-03-01 04:20:22.803 2024-03-01 04:20:22.803 900 FEE 443794 4415 6121582 2024-03-01 04:20:22.803 2024-03-01 04:20:22.803 8100 TIP 443794 14465 6121583 2024-03-01 04:20:23.303 2024-03-01 04:20:23.303 9000 FEE 443794 8242 6121584 2024-03-01 04:20:23.303 2024-03-01 04:20:23.303 81000 TIP 443794 822 6121585 2024-03-01 04:20:39.468 2024-03-01 04:20:39.468 9000 FEE 443179 4313 6121586 2024-03-01 04:20:39.468 2024-03-01 04:20:39.468 81000 TIP 443179 3656 6121592 2024-03-01 04:21:39.916 2024-03-01 04:21:39.916 2100 FEE 444550 21612 6121593 2024-03-01 04:21:39.916 2024-03-01 04:21:39.916 18900 TIP 444550 3409 6121595 2024-03-01 04:22:10.661 2024-03-01 04:22:10.661 2100 FEE 444497 16536 6121596 2024-03-01 04:22:10.661 2024-03-01 04:22:10.661 18900 TIP 444497 9169 6121603 2024-03-01 04:22:28.184 2024-03-01 04:22:28.184 1000 FEE 443274 623 6121604 2024-03-01 04:22:28.184 2024-03-01 04:22:28.184 9000 TIP 443274 712 6121635 2024-03-01 04:28:45.753 2024-03-01 04:28:45.753 20000 FEE 444554 1320 6121670 2024-03-01 04:37:23.817 2024-03-01 04:37:23.817 100 FEE 444435 20157 6121671 2024-03-01 04:37:23.817 2024-03-01 04:37:23.817 900 TIP 444435 6471 6121678 2024-03-01 04:37:40.439 2024-03-01 04:37:40.439 1000 FEE 444557 7395 6121685 2024-03-01 04:39:23.307 2024-03-01 04:39:23.307 1000 FEE 443712 17331 6121686 2024-03-01 04:39:23.307 2024-03-01 04:39:23.307 9000 TIP 443712 14015 6121687 2024-03-01 04:39:24.333 2024-03-01 04:39:24.333 1000 FEE 443617 20479 6121688 2024-03-01 04:39:24.333 2024-03-01 04:39:24.333 9000 TIP 443617 19976 6121700 2024-03-01 04:40:27.113 2024-03-01 04:40:27.113 1000 FEE 444376 13931 6121701 2024-03-01 04:40:27.113 2024-03-01 04:40:27.113 9000 TIP 444376 20647 6121719 2024-03-01 04:44:31.687 2024-03-01 04:44:31.687 1000 FEE 443430 12122 6121720 2024-03-01 04:44:31.687 2024-03-01 04:44:31.687 9000 TIP 443430 19777 6121734 2024-03-01 04:50:37.676 2024-03-01 04:50:37.676 100000 FEE 444562 20745 6121746 2024-03-01 04:53:11.32 2024-03-01 04:53:11.32 1700 FEE 444561 19198 6121747 2024-03-01 04:53:11.32 2024-03-01 04:53:11.32 15300 TIP 444561 12808 6121794 2024-03-01 04:58:33.845 2024-03-01 04:58:33.845 10100 FEE 444536 19118 6121795 2024-03-01 04:58:33.845 2024-03-01 04:58:33.845 90900 TIP 444536 11430 6121874 2024-03-01 05:17:15.457 2024-03-01 05:17:15.457 2800 FEE 214296 1472 6121875 2024-03-01 05:17:15.457 2024-03-01 05:17:15.457 25200 TIP 214296 12289 6121876 2024-03-01 05:17:33.109 2024-03-01 05:17:33.109 1000 FEE 444574 1307 6121917 2024-03-01 05:30:07.822 2024-03-01 05:30:07.822 2700 FEE 443372 20180 6121918 2024-03-01 05:30:07.822 2024-03-01 05:30:07.822 24300 TIP 443372 18291 6121940 2024-03-01 05:34:24.465 2024-03-01 05:34:24.465 20000 FEE 444586 1488 6121941 2024-03-01 05:35:04.022 2024-03-01 05:35:04.022 2100 FEE 444586 1658 6121942 2024-03-01 05:35:04.022 2024-03-01 05:35:04.022 18900 TIP 444586 3506 6121953 2024-03-01 05:38:21.096 2024-03-01 05:38:21.096 1000 FEE 444589 19500 6122028 2024-03-01 06:02:45.425 2024-03-01 06:02:45.425 1000 FEE 444598 9833 6059562 2024-02-25 02:14:33.923 2024-02-25 02:14:33.923 9000 TIP 437760 17030 6059565 2024-02-25 02:15:12.756 2024-02-25 02:15:12.756 1000 FEE 437761 18363 6059566 2024-02-25 02:15:12.756 2024-02-25 02:15:12.756 9000 TIP 437761 18116 6059571 2024-02-25 02:16:05.735 2024-02-25 02:16:05.735 1000 FEE 437856 17494 6059572 2024-02-25 02:16:05.735 2024-02-25 02:16:05.735 9000 TIP 437856 20337 6059589 2024-02-25 02:21:34.043 2024-02-25 02:21:34.043 1000 FEE 437871 2609 6059594 2024-02-25 02:24:39.819 2024-02-25 02:24:39.819 1000 FEE 437524 6327 6059595 2024-02-25 02:24:39.819 2024-02-25 02:24:39.819 9000 TIP 437524 714 6059646 2024-02-25 02:34:12.603 2024-02-25 02:34:12.603 1000 FEE 437821 14731 6059647 2024-02-25 02:34:12.603 2024-02-25 02:34:12.603 9000 TIP 437821 13753 6059649 2024-02-25 02:35:30.663 2024-02-25 02:35:30.663 100 FEE 437798 16440 6059650 2024-02-25 02:35:30.663 2024-02-25 02:35:30.663 900 TIP 437798 20826 6059668 2024-02-25 02:37:10.182 2024-02-25 02:37:10.182 100 FEE 437807 5500 6059669 2024-02-25 02:37:10.182 2024-02-25 02:37:10.182 900 TIP 437807 775 6059681 2024-02-25 02:38:08.749 2024-02-25 02:38:08.749 9000 FEE 437863 777 6059682 2024-02-25 02:38:08.749 2024-02-25 02:38:08.749 81000 TIP 437863 16950 6059689 2024-02-25 02:39:08.172 2024-02-25 02:39:08.172 6900 FEE 437866 20102 6059690 2024-02-25 02:39:08.172 2024-02-25 02:39:08.172 62100 TIP 437866 20254 6059695 2024-02-25 02:40:28.235 2024-02-25 02:40:28.235 4000 FEE 437670 16513 6059696 2024-02-25 02:40:28.235 2024-02-25 02:40:28.235 36000 TIP 437670 1845 6059751 2024-02-25 02:51:14.694 2024-02-25 02:51:14.694 1000 FEE 437889 20264 6059758 2024-02-25 02:54:50.518 2024-02-25 02:54:50.518 1000 FEE 437892 4115 6059762 2024-02-25 02:55:19.605 2024-02-25 02:55:19.605 1100 FEE 437720 21603 6059763 2024-02-25 02:55:19.605 2024-02-25 02:55:19.605 9900 TIP 437720 18219 6059768 2024-02-25 02:55:22.406 2024-02-25 02:55:22.406 3300 FEE 437723 12265 6059769 2024-02-25 02:55:22.406 2024-02-25 02:55:22.406 29700 TIP 437723 14906 6059774 2024-02-25 02:55:27.706 2024-02-25 02:55:27.706 3300 FEE 437769 844 6059775 2024-02-25 02:55:27.706 2024-02-25 02:55:27.706 29700 TIP 437769 17082 6059778 2024-02-25 02:55:54.312 2024-02-25 02:55:54.312 3300 FEE 437611 1090 6059779 2024-02-25 02:55:54.312 2024-02-25 02:55:54.312 29700 TIP 437611 20987 6059790 2024-02-25 02:57:17.022 2024-02-25 02:57:17.022 10000 FEE 437893 15544 6059811 2024-02-25 03:00:05.187 2024-02-25 03:00:05.187 100000 FEE 437897 9655 6059816 2024-02-25 03:00:12.351 2024-02-25 03:00:12.351 900 FEE 437893 5703 6059817 2024-02-25 03:00:12.351 2024-02-25 03:00:12.351 8100 TIP 437893 658 6059842 2024-02-25 03:00:34.731 2024-02-25 03:00:34.731 2100 FEE 437408 20306 6059843 2024-02-25 03:00:34.731 2024-02-25 03:00:34.731 18900 TIP 437408 9290 6059856 2024-02-25 03:00:38.157 2024-02-25 03:00:38.157 2100 FEE 437646 21398 6059857 2024-02-25 03:00:38.157 2024-02-25 03:00:38.157 18900 TIP 437646 15273 6059866 2024-02-25 03:01:00.792 2024-02-25 03:01:00.792 4000 FEE 437893 18817 6059867 2024-02-25 03:01:00.792 2024-02-25 03:01:00.792 36000 TIP 437893 15703 6059878 2024-02-25 03:03:23.329 2024-02-25 03:03:23.329 1000 FEE 437903 17041 6059880 2024-02-25 03:03:42.63 2024-02-25 03:03:42.63 1000 FEE 437905 1478 6059893 2024-02-25 03:05:58.647 2024-02-25 03:05:58.647 1000 FEE 437628 16485 6059894 2024-02-25 03:05:58.647 2024-02-25 03:05:58.647 9000 TIP 437628 21387 6059896 2024-02-25 03:06:42.099 2024-02-25 03:06:42.099 2500 FEE 437894 5387 6059897 2024-02-25 03:06:42.099 2024-02-25 03:06:42.099 22500 TIP 437894 10342 6059963 2024-02-25 03:12:05.051 2024-02-25 03:12:05.051 2100 FEE 437860 20424 6059964 2024-02-25 03:12:05.051 2024-02-25 03:12:05.051 18900 TIP 437860 16052 6059973 2024-02-25 03:14:22.384 2024-02-25 03:14:22.384 2100 FEE 437863 13575 6059974 2024-02-25 03:14:22.384 2024-02-25 03:14:22.384 18900 TIP 437863 681 6060010 2024-02-25 03:27:16.692 2024-02-25 03:27:16.692 1000 FEE 437919 5557 6060031 2024-02-25 03:31:38.947 2024-02-25 03:31:38.947 3000 FEE 437795 19907 6060032 2024-02-25 03:31:38.947 2024-02-25 03:31:38.947 27000 TIP 437795 16355 6060059 2024-02-25 03:39:08.009 2024-02-25 03:39:08.009 1000 FEE 437925 19142 6060068 2024-02-25 03:41:24.547 2024-02-25 03:41:24.547 1000 FEE 437269 16357 6060069 2024-02-25 03:41:24.547 2024-02-25 03:41:24.547 9000 TIP 437269 623 6060081 2024-02-25 03:46:55.798 2024-02-25 03:46:55.798 3000 FEE 437831 4102 6060082 2024-02-25 03:46:55.798 2024-02-25 03:46:55.798 27000 TIP 437831 7583 6060087 2024-02-25 03:50:53.666 2024-02-25 03:50:53.666 400 FEE 437615 11165 6060088 2024-02-25 03:50:53.666 2024-02-25 03:50:53.666 3600 TIP 437615 17201 6060093 2024-02-25 03:50:54.2 2024-02-25 03:50:54.2 200 FEE 437615 18321 6060094 2024-02-25 03:50:54.2 2024-02-25 03:50:54.2 1800 TIP 437615 1602 6060099 2024-02-25 03:50:54.752 2024-02-25 03:50:54.752 200 FEE 437615 2718 6060100 2024-02-25 03:50:54.752 2024-02-25 03:50:54.752 1800 TIP 437615 15536 6060161 2024-02-25 04:05:09.852 2024-02-25 04:05:09.852 6900 FEE 437937 16229 6060162 2024-02-25 04:05:09.852 2024-02-25 04:05:09.852 62100 TIP 437937 19929 6060163 2024-02-25 04:05:24.93 2024-02-25 04:05:24.93 1000 FEE 437938 19005 6060169 2024-02-25 04:06:39.593 2024-02-25 04:06:39.593 2000 FEE 437817 5293 6060170 2024-02-25 04:06:39.593 2024-02-25 04:06:39.593 18000 TIP 437817 20904 6060175 2024-02-25 04:06:51.541 2024-02-25 04:06:51.541 2000 FEE 437775 1785 6060176 2024-02-25 04:06:51.541 2024-02-25 04:06:51.541 18000 TIP 437775 2206 6060194 2024-02-25 04:11:52.487 2024-02-25 04:11:52.487 10100 FEE 437919 1389 6060195 2024-02-25 04:11:52.487 2024-02-25 04:11:52.487 90900 TIP 437919 21599 6060203 2024-02-25 04:16:34.742 2024-02-25 04:16:34.742 500 FEE 437269 725 6060204 2024-02-25 04:16:34.742 2024-02-25 04:16:34.742 4500 TIP 437269 14370 6060211 2024-02-25 04:16:42.489 2024-02-25 04:16:42.489 500 FEE 437276 9348 6060212 2024-02-25 04:16:42.489 2024-02-25 04:16:42.489 4500 TIP 437276 16456 6060245 2024-02-25 04:19:01.452 2024-02-25 04:19:01.452 500 FEE 437545 12272 6060246 2024-02-25 04:19:01.452 2024-02-25 04:19:01.452 4500 TIP 437545 14651 6060259 2024-02-25 04:20:30.646 2024-02-25 04:20:30.646 500 FEE 437404 8176 6060260 2024-02-25 04:20:30.646 2024-02-25 04:20:30.646 4500 TIP 437404 18735 6060265 2024-02-25 04:22:22.427 2024-02-25 04:22:22.427 1000 FEE 437940 21178 6060281 2024-02-25 04:30:42.325 2024-02-25 04:30:42.325 1900 FEE 437825 5377 6060282 2024-02-25 04:30:42.325 2024-02-25 04:30:42.325 17100 TIP 437825 10469 6060283 2024-02-25 04:30:43.525 2024-02-25 04:30:43.525 3300 FEE 437367 18735 6060284 2024-02-25 04:30:43.525 2024-02-25 04:30:43.525 29700 TIP 437367 1326 6060348 2024-02-25 04:50:48.25 2024-02-25 04:50:48.25 300 FEE 437705 12736 6060349 2024-02-25 04:50:48.25 2024-02-25 04:50:48.25 2700 TIP 437705 616 6060392 2024-02-25 05:13:15.925 2024-02-25 05:13:15.925 100 FEE 437886 16704 6060393 2024-02-25 05:13:15.925 2024-02-25 05:13:15.925 900 TIP 437886 21249 6060401 2024-02-25 05:16:51.047 2024-02-25 05:16:51.047 1000 FEE 437958 10469 6060404 2024-02-25 05:18:13.628 2024-02-25 05:18:13.628 1000 FEE 437826 19151 6060405 2024-02-25 05:18:13.628 2024-02-25 05:18:13.628 9000 TIP 437826 11314 6060412 2024-02-25 05:18:18.224 2024-02-25 05:18:18.224 100 FEE 437769 12188 6060413 2024-02-25 05:18:18.224 2024-02-25 05:18:18.224 900 TIP 437769 5759 6060414 2024-02-25 05:18:18.673 2024-02-25 05:18:18.673 100 FEE 437769 622 6060415 2024-02-25 05:18:18.673 2024-02-25 05:18:18.673 900 TIP 437769 18402 6060416 2024-02-25 05:18:19.082 2024-02-25 05:18:19.082 100 FEE 437769 797 6060417 2024-02-25 05:18:19.082 2024-02-25 05:18:19.082 900 TIP 437769 11298 6060444 2024-02-25 05:24:06.272 2024-02-25 05:24:06.272 21000 FEE 437959 19375 6060508 2024-02-25 06:00:35.894 2024-02-25 06:00:35.894 120000 FEE 437963 646 6060516 2024-02-25 06:04:34.536 2024-02-25 06:04:34.536 21000 FEE 437965 16456 6060582 2024-02-25 06:28:42.291 2024-02-25 06:28:42.291 800 FEE 437893 21620 6059590 2024-02-25 02:22:03.366 2024-02-25 02:22:03.366 1000 STREAM 141924 750 6059610 2024-02-25 02:29:03.383 2024-02-25 02:29:03.383 1000 STREAM 141924 16858 6059618 2024-02-25 02:30:03.406 2024-02-25 02:30:03.406 1000 STREAM 141924 9494 6059625 2024-02-25 02:32:03.383 2024-02-25 02:32:03.383 1000 STREAM 141924 19484 6059639 2024-02-25 02:34:03.384 2024-02-25 02:34:03.384 1000 STREAM 141924 1438 6059648 2024-02-25 02:35:03.39 2024-02-25 02:35:03.39 1000 STREAM 141924 1060 6059713 2024-02-25 02:42:03.464 2024-02-25 02:42:03.464 1000 STREAM 141924 917 6059718 2024-02-25 02:44:03.47 2024-02-25 02:44:03.47 1000 STREAM 141924 19907 6121334 2024-03-01 03:48:54.391 2024-03-01 03:48:54.391 2700 TIP 444457 11873 6121337 2024-03-01 03:49:45.609 2024-03-01 03:49:45.609 10000 FEE 444499 10393 6121338 2024-03-01 03:49:45.609 2024-03-01 03:49:45.609 90000 TIP 444499 20623 6121341 2024-03-01 03:51:56.865 2024-03-01 03:51:56.865 5000 FEE 443790 9482 6121342 2024-03-01 03:51:56.865 2024-03-01 03:51:56.865 45000 TIP 443790 14705 6121345 2024-03-01 03:53:02.584 2024-03-01 03:53:02.584 1000 FEE 444540 19813 6121366 2024-03-01 03:59:55.845 2024-03-01 03:59:55.845 1000 FEE 444378 659 6121367 2024-03-01 03:59:55.845 2024-03-01 03:59:55.845 9000 TIP 444378 18363 6121373 2024-03-01 04:00:58.378 2024-03-01 04:00:58.378 5700 FEE 444541 669 6121374 2024-03-01 04:00:58.378 2024-03-01 04:00:58.378 51300 TIP 444541 18896 6121417 2024-03-01 04:12:43.618 2024-03-01 04:12:43.618 1000 FEE 444376 9036 6121418 2024-03-01 04:12:43.618 2024-03-01 04:12:43.618 9000 TIP 444376 3439 6121426 2024-03-01 04:13:11.627 2024-03-01 04:13:11.627 1000 FEE 444365 20291 6121427 2024-03-01 04:13:11.627 2024-03-01 04:13:11.627 9000 TIP 444365 7979 6121447 2024-03-01 04:16:19.925 2024-03-01 04:16:19.925 9000 FEE 444462 20272 6121448 2024-03-01 04:16:19.925 2024-03-01 04:16:19.925 81000 TIP 444462 9333 6121484 2024-03-01 04:16:47.593 2024-03-01 04:16:47.593 500 FEE 444376 2326 6121485 2024-03-01 04:16:47.593 2024-03-01 04:16:47.593 4500 TIP 444376 10536 6121492 2024-03-01 04:16:54.273 2024-03-01 04:16:54.273 500 FEE 444376 16267 6121493 2024-03-01 04:16:54.273 2024-03-01 04:16:54.273 4500 TIP 444376 19174 6121511 2024-03-01 04:17:20.306 2024-03-01 04:17:20.306 100 FEE 444407 9418 6121512 2024-03-01 04:17:20.306 2024-03-01 04:17:20.306 900 TIP 444407 9796 6121513 2024-03-01 04:17:20.466 2024-03-01 04:17:20.466 900 FEE 444407 21575 6121514 2024-03-01 04:17:20.466 2024-03-01 04:17:20.466 8100 TIP 444407 1549 6121542 2024-03-01 04:18:58.626 2024-03-01 04:18:58.626 500 FEE 444296 1845 6121543 2024-03-01 04:18:58.626 2024-03-01 04:18:58.626 4500 TIP 444296 17727 6121563 2024-03-01 04:19:49.633 2024-03-01 04:19:49.633 2100 FEE 444540 8506 6121564 2024-03-01 04:19:49.633 2024-03-01 04:19:49.633 18900 TIP 444540 12356 6121571 2024-03-01 04:19:57.486 2024-03-01 04:19:57.486 1000 FEE 444551 20023 6121577 2024-03-01 04:20:09.393 2024-03-01 04:20:09.393 90000 FEE 444365 9339 6121578 2024-03-01 04:20:09.393 2024-03-01 04:20:09.393 810000 TIP 444365 18393 6121587 2024-03-01 04:20:44.55 2024-03-01 04:20:44.55 90000 FEE 442065 1620 6121588 2024-03-01 04:20:44.55 2024-03-01 04:20:44.55 810000 TIP 442065 12507 6121607 2024-03-01 04:22:43.449 2024-03-01 04:22:43.449 10000 FEE 444529 21342 6121608 2024-03-01 04:22:43.449 2024-03-01 04:22:43.449 90000 TIP 444529 16753 6121617 2024-03-01 04:23:59.786 2024-03-01 04:23:59.786 1000 FEE 444522 1726 6121618 2024-03-01 04:23:59.786 2024-03-01 04:23:59.786 9000 TIP 444522 15843 6121631 2024-03-01 04:26:45.358 2024-03-01 04:26:45.358 2100 FEE 444168 21254 6121632 2024-03-01 04:26:45.358 2024-03-01 04:26:45.358 18900 TIP 444168 7773 6121651 2024-03-01 04:35:03.215 2024-03-01 04:35:03.215 2500 FEE 444428 5746 6121652 2024-03-01 04:35:03.215 2024-03-01 04:35:03.215 22500 TIP 444428 12346 6121653 2024-03-01 04:35:44.383 2024-03-01 04:35:44.383 100 FEE 444554 21303 6121654 2024-03-01 04:35:44.383 2024-03-01 04:35:44.383 900 TIP 444554 5829 6121676 2024-03-01 04:37:39.386 2024-03-01 04:37:39.386 100 FEE 444471 2056 6121677 2024-03-01 04:37:39.386 2024-03-01 04:37:39.386 900 TIP 444471 16998 6121689 2024-03-01 04:39:26.1 2024-03-01 04:39:26.1 1000 FEE 443745 1244 6121690 2024-03-01 04:39:26.1 2024-03-01 04:39:26.1 9000 TIP 443745 12278 6121691 2024-03-01 04:39:27.581 2024-03-01 04:39:27.581 1000 FEE 443583 19967 6121692 2024-03-01 04:39:27.581 2024-03-01 04:39:27.581 9000 TIP 443583 4487 6121736 2024-03-01 04:50:57.171 2024-03-01 04:50:57.171 0 FEE 444562 21178 6121759 2024-03-01 04:54:03.706 2024-03-01 04:54:03.706 1000 FEE 443545 10398 6121760 2024-03-01 04:54:03.706 2024-03-01 04:54:03.706 9000 TIP 443545 1585 6121776 2024-03-01 04:55:25.066 2024-03-01 04:55:25.066 1000 FEE 443514 16410 6121777 2024-03-01 04:55:25.066 2024-03-01 04:55:25.066 9000 TIP 443514 1737 6121778 2024-03-01 04:55:54.323 2024-03-01 04:55:54.323 1000 FEE 443861 11443 6121779 2024-03-01 04:55:54.323 2024-03-01 04:55:54.323 9000 TIP 443861 17172 6121781 2024-03-01 04:56:27.846 2024-03-01 04:56:27.846 1000 FEE 444376 20614 6121782 2024-03-01 04:56:27.846 2024-03-01 04:56:27.846 9000 TIP 444376 20479 6121808 2024-03-01 04:59:22.462 2024-03-01 04:59:22.462 0 FEE 444567 1136 6121813 2024-03-01 05:02:14.661 2024-03-01 05:02:14.661 800 FEE 443816 19888 6121814 2024-03-01 05:02:14.661 2024-03-01 05:02:14.661 7200 TIP 443816 660 6121830 2024-03-01 05:05:07.402 2024-03-01 05:05:07.402 1000 FEE 443272 6777 6121831 2024-03-01 05:05:07.402 2024-03-01 05:05:07.402 9000 TIP 443272 14295 6121859 2024-03-01 05:10:06.993 2024-03-01 05:10:06.993 3300 FEE 444523 16830 6121860 2024-03-01 05:10:06.993 2024-03-01 05:10:06.993 29700 TIP 444523 11423 6121905 2024-03-01 05:29:22.104 2024-03-01 05:29:22.104 900 FEE 443799 21263 6121906 2024-03-01 05:29:22.104 2024-03-01 05:29:22.104 8100 TIP 443799 15049 6121912 2024-03-01 05:30:05.352 2024-03-01 05:30:05.352 1000 FEE 444581 20099 6121913 2024-03-01 05:30:07.397 2024-03-01 05:30:07.397 2700 FEE 443372 12821 6121914 2024-03-01 05:30:07.397 2024-03-01 05:30:07.397 24300 TIP 443372 2075 6121937 2024-03-01 05:34:13.566 2024-03-01 05:34:13.566 1000 POLL 444078 5904 6121970 2024-03-01 05:44:16.042 2024-03-01 05:44:16.042 1000 FEE 444592 14080 6122000 2024-03-01 05:58:14.199 2024-03-01 05:58:14.199 3300 FEE 444597 680 6122001 2024-03-01 05:58:14.199 2024-03-01 05:58:14.199 29700 TIP 444597 19601 6122026 2024-03-01 06:02:41.503 2024-03-01 06:02:41.503 500 FEE 444015 16830 6059593 2024-02-25 02:24:02.249 2024-02-25 02:24:02.249 1000 STREAM 141924 16341 6121384 2024-03-01 04:01:59.455 2024-03-01 04:01:59.455 1000 FEE 444173 18751 6121385 2024-03-01 04:01:59.455 2024-03-01 04:01:59.455 9000 TIP 444173 18705 6121396 2024-03-01 04:10:08.518 2024-03-01 04:10:08.518 1000 FEE 444547 5825 6121413 2024-03-01 04:12:33.651 2024-03-01 04:12:33.651 1000 FEE 444208 18310 6121414 2024-03-01 04:12:33.651 2024-03-01 04:12:33.651 9000 TIP 444208 18426 6121453 2024-03-01 04:16:22.513 2024-03-01 04:16:22.513 500 FEE 443272 1298 6121454 2024-03-01 04:16:22.513 2024-03-01 04:16:22.513 4500 TIP 443272 21609 6121469 2024-03-01 04:16:33.624 2024-03-01 04:16:33.624 100 FEE 444471 13517 6121470 2024-03-01 04:16:33.624 2024-03-01 04:16:33.624 900 TIP 444471 12744 6121474 2024-03-01 04:16:40.675 2024-03-01 04:16:40.675 500 FEE 444475 10554 6121475 2024-03-01 04:16:40.675 2024-03-01 04:16:40.675 4500 TIP 444475 1673 6121500 2024-03-01 04:16:58.253 2024-03-01 04:16:58.253 500 FEE 444376 919 6121501 2024-03-01 04:16:58.253 2024-03-01 04:16:58.253 4500 TIP 444376 18784 6121509 2024-03-01 04:17:04.92 2024-03-01 04:17:04.92 2100 FEE 444522 20802 6121510 2024-03-01 04:17:04.92 2024-03-01 04:17:04.92 18900 TIP 444522 17891 6121536 2024-03-01 04:18:32.523 2024-03-01 04:18:32.523 1000 FEE 444447 1618 6121537 2024-03-01 04:18:32.523 2024-03-01 04:18:32.523 9000 TIP 444447 7869 6121549 2024-03-01 04:19:07.623 2024-03-01 04:19:07.623 100 FEE 444498 956 6121550 2024-03-01 04:19:07.623 2024-03-01 04:19:07.623 900 TIP 444498 18368 6121575 2024-03-01 04:20:07.125 2024-03-01 04:20:07.125 90000 FEE 443799 12289 6121576 2024-03-01 04:20:07.125 2024-03-01 04:20:07.125 810000 TIP 443799 18663 6121645 2024-03-01 04:33:24.703 2024-03-01 04:33:24.703 1000 POLL 444078 15536 6121647 2024-03-01 04:34:27.832 2024-03-01 04:34:27.832 5700 FEE 444522 886 6121648 2024-03-01 04:34:27.832 2024-03-01 04:34:27.832 51300 TIP 444522 19770 6121658 2024-03-01 04:37:03.406 2024-03-01 04:37:03.406 2100 FEE 444522 12072 6121659 2024-03-01 04:37:03.406 2024-03-01 04:37:03.406 18900 TIP 444522 18220 6121662 2024-03-01 04:37:16.242 2024-03-01 04:37:16.242 100 FEE 444475 21216 6121663 2024-03-01 04:37:16.242 2024-03-01 04:37:16.242 900 TIP 444475 691 6121674 2024-03-01 04:37:32.294 2024-03-01 04:37:32.294 100 FEE 444519 12245 6121675 2024-03-01 04:37:32.294 2024-03-01 04:37:32.294 900 TIP 444519 5701 6121679 2024-03-01 04:37:50.639 2024-03-01 04:37:50.639 100 FEE 444467 20153 6121680 2024-03-01 04:37:50.639 2024-03-01 04:37:50.639 900 TIP 444467 15762 6121724 2024-03-01 04:47:26.365 2024-03-01 04:47:26.365 17000 FEE 444561 946 6121726 2024-03-01 04:48:46.315 2024-03-01 04:48:46.315 1000 FEE 444561 10063 6121727 2024-03-01 04:48:46.315 2024-03-01 04:48:46.315 9000 TIP 444561 21140 6121735 2024-03-01 04:50:50.645 2024-03-01 04:50:50.645 0 FEE 444562 8074 6121754 2024-03-01 04:53:13.597 2024-03-01 04:53:13.597 1700 FEE 444561 16124 6121755 2024-03-01 04:53:13.597 2024-03-01 04:53:13.597 15300 TIP 444561 16879 6121763 2024-03-01 04:54:06.174 2024-03-01 04:54:06.174 1000 FEE 443274 18679 6121764 2024-03-01 04:54:06.174 2024-03-01 04:54:06.174 9000 TIP 443274 16998 6121765 2024-03-01 04:54:10.524 2024-03-01 04:54:10.524 1000 FEE 443745 16867 6121766 2024-03-01 04:54:10.524 2024-03-01 04:54:10.524 9000 TIP 443745 16653 6121769 2024-03-01 04:54:12.799 2024-03-01 04:54:12.799 1000 FEE 444365 1515 6121770 2024-03-01 04:54:12.799 2024-03-01 04:54:12.799 9000 TIP 444365 4167 6121773 2024-03-01 04:54:57.19 2024-03-01 04:54:57.19 1000 FEE 443611 14280 6121774 2024-03-01 04:54:57.19 2024-03-01 04:54:57.19 9000 TIP 443611 5646 6121791 2024-03-01 04:56:32.947 2024-03-01 04:56:32.947 1000 FEE 444565 1602 6121796 2024-03-01 04:58:38.976 2024-03-01 04:58:38.976 100000 FEE 444566 798 6121797 2024-03-01 04:58:58.985 2024-03-01 04:58:58.985 10000 FEE 444567 20906 6121800 2024-03-01 04:59:18.845 2024-03-01 04:59:18.845 800 FEE 444365 21418 6121801 2024-03-01 04:59:18.845 2024-03-01 04:59:18.845 7200 TIP 444365 20970 6121809 2024-03-01 04:59:44.076 2024-03-01 04:59:44.076 1000 FEE 444569 13921 6121828 2024-03-01 05:05:06.55 2024-03-01 05:05:06.55 1000 FEE 443799 19198 6121829 2024-03-01 05:05:06.55 2024-03-01 05:05:06.55 9000 TIP 443799 1745 6121840 2024-03-01 05:05:50.79 2024-03-01 05:05:50.79 700 FEE 444564 11164 6121841 2024-03-01 05:05:50.79 2024-03-01 05:05:50.79 6300 TIP 444564 15510 6121845 2024-03-01 05:06:22.324 2024-03-01 05:06:22.324 1000 FEE 444179 959 6121846 2024-03-01 05:06:22.324 2024-03-01 05:06:22.324 9000 TIP 444179 18862 6121855 2024-03-01 05:10:06.494 2024-03-01 05:10:06.494 3300 FEE 444523 1008 6121856 2024-03-01 05:10:06.494 2024-03-01 05:10:06.494 29700 TIP 444523 18270 6121896 2024-03-01 05:26:31.49 2024-03-01 05:26:31.49 1000 FEE 444579 10549 6121907 2024-03-01 05:29:23.579 2024-03-01 05:29:23.579 2100 FEE 444168 2528 6121908 2024-03-01 05:29:23.579 2024-03-01 05:29:23.579 18900 TIP 444168 7891 6121915 2024-03-01 05:30:07.597 2024-03-01 05:30:07.597 2700 FEE 443372 1316 6121916 2024-03-01 05:30:07.597 2024-03-01 05:30:07.597 24300 TIP 443372 18473 6121921 2024-03-01 05:30:08.246 2024-03-01 05:30:08.246 2700 FEE 443372 21379 6121922 2024-03-01 05:30:08.246 2024-03-01 05:30:08.246 24300 TIP 443372 7583 6121925 2024-03-01 05:30:25.468 2024-03-01 05:30:25.468 1000 FEE 444582 5455 6121961 2024-03-01 05:40:07.784 2024-03-01 05:40:07.784 500 FEE 444384 20713 6121962 2024-03-01 05:40:07.784 2024-03-01 05:40:07.784 4500 TIP 444384 16966 6121963 2024-03-01 05:40:17.434 2024-03-01 05:40:17.434 500 FEE 444258 2022 6121964 2024-03-01 05:40:17.434 2024-03-01 05:40:17.434 4500 TIP 444258 14258 6122003 2024-03-01 05:59:55.627 2024-03-01 05:59:55.627 5000 FEE 444102 16954 6122004 2024-03-01 05:59:55.627 2024-03-01 05:59:55.627 45000 TIP 444102 11714 6122016 2024-03-01 06:02:05.157 2024-03-01 06:02:05.157 500 FEE 444274 18357 6122017 2024-03-01 06:02:05.157 2024-03-01 06:02:05.157 4500 TIP 444274 14950 6122022 2024-03-01 06:02:29.54 2024-03-01 06:02:29.54 2100 FEE 444561 20981 6122023 2024-03-01 06:02:29.54 2024-03-01 06:02:29.54 18900 TIP 444561 10469 6122062 2024-03-01 06:04:41.872 2024-03-01 06:04:41.872 1000 FEE 444603 675 6122076 2024-03-01 06:07:53.143 2024-03-01 06:07:53.143 2100 FEE 444577 2402 6122077 2024-03-01 06:07:53.143 2024-03-01 06:07:53.143 18900 TIP 444577 20291 6122078 2024-03-01 06:07:58.548 2024-03-01 06:07:58.548 10000 FEE 444561 18177 6122079 2024-03-01 06:07:58.548 2024-03-01 06:07:58.548 90000 TIP 444561 2075 6122121 2024-03-01 06:17:37.56 2024-03-01 06:17:37.56 1000 FEE 444610 20353 6122142 2024-03-01 06:23:49.295 2024-03-01 06:23:49.295 500 FEE 444109 5538 6122143 2024-03-01 06:23:49.295 2024-03-01 06:23:49.295 4500 TIP 444109 17682 6122169 2024-03-01 06:28:35.3 2024-03-01 06:28:35.3 2100 FEE 444478 16276 6122170 2024-03-01 06:28:35.3 2024-03-01 06:28:35.3 18900 TIP 444478 705 6122180 2024-03-01 06:30:46.618 2024-03-01 06:30:46.618 800 FEE 443712 11956 6122181 2024-03-01 06:30:46.618 2024-03-01 06:30:46.618 7200 TIP 443712 15115 6059613 2024-02-25 02:29:09.26 2024-02-25 02:29:09.26 1000 FEE 437874 10519 6059614 2024-02-25 02:29:09.26 2024-02-25 02:29:09.26 9000 TIP 437874 4313 6059616 2024-02-25 02:29:30.196 2024-02-25 02:29:30.196 1000 FEE 437875 19193 6059634 2024-02-25 02:32:45.125 2024-02-25 02:32:45.125 1000 FEE 437611 14990 6059635 2024-02-25 02:32:45.125 2024-02-25 02:32:45.125 9000 TIP 437611 18178 6059640 2024-02-25 02:34:09.821 2024-02-25 02:34:09.821 1000 FEE 437821 1658 6059641 2024-02-25 02:34:09.821 2024-02-25 02:34:09.821 9000 TIP 437821 17392 6059642 2024-02-25 02:34:10.06 2024-02-25 02:34:10.06 1000 FEE 437821 17570 6059643 2024-02-25 02:34:10.06 2024-02-25 02:34:10.06 9000 TIP 437821 11561 6059666 2024-02-25 02:37:06.38 2024-02-25 02:37:06.38 1000 FEE 437869 15063 6059667 2024-02-25 02:37:06.38 2024-02-25 02:37:06.38 9000 TIP 437869 18511 6059679 2024-02-25 02:38:08.551 2024-02-25 02:38:08.551 900 FEE 437863 10690 6059680 2024-02-25 02:38:08.551 2024-02-25 02:38:08.551 8100 TIP 437863 20254 6059699 2024-02-25 02:40:29.105 2024-02-25 02:40:29.105 360000 FEE 437670 5425 6059700 2024-02-25 02:40:29.105 2024-02-25 02:40:29.105 3240000 TIP 437670 21402 6059704 2024-02-25 02:41:21.569 2024-02-25 02:41:21.569 500 FEE 437827 8508 6059705 2024-02-25 02:41:21.569 2024-02-25 02:41:21.569 4500 TIP 437827 4692 6059747 2024-02-25 02:50:03.718 2024-02-25 02:50:03.718 1000 FEE 437887 19967 6059795 2024-02-25 02:57:47.1 2024-02-25 02:57:47.1 1000 FEE 437894 18865 6059806 2024-02-25 02:59:05.111 2024-02-25 02:59:05.111 900 FEE 437888 4391 6059807 2024-02-25 02:59:05.111 2024-02-25 02:59:05.111 8100 TIP 437888 20257 6059824 2024-02-25 03:00:27.031 2024-02-25 03:00:27.031 2100 FEE 437817 642 6059825 2024-02-25 03:00:27.031 2024-02-25 03:00:27.031 18900 TIP 437817 19996 6059882 2024-02-25 03:04:00.448 2024-02-25 03:04:00.448 1000 FEE 437907 9335 6059898 2024-02-25 03:06:59.854 2024-02-25 03:06:59.854 1000 FEE 437910 20220 6060079 2024-02-25 03:46:13.773 2024-02-25 03:46:13.773 3000 FEE 437832 19138 6060080 2024-02-25 03:46:13.773 2024-02-25 03:46:13.773 27000 TIP 437832 6578 6060095 2024-02-25 03:50:54.451 2024-02-25 03:50:54.451 200 FEE 437615 628 6060096 2024-02-25 03:50:54.451 2024-02-25 03:50:54.451 1800 TIP 437615 18751 6060114 2024-02-25 03:55:54.339 2024-02-25 03:55:54.339 1000 FEE 437930 17713 6060148 2024-02-25 04:00:42.657 2024-02-25 04:00:42.657 1000 FEE 437880 19905 6060149 2024-02-25 04:00:42.657 2024-02-25 04:00:42.657 9000 TIP 437880 16769 6060159 2024-02-25 04:05:09.115 2024-02-25 04:05:09.115 6900 FEE 437937 3717 6060160 2024-02-25 04:05:09.115 2024-02-25 04:05:09.115 62100 TIP 437937 20430 6060217 2024-02-25 04:16:43.785 2024-02-25 04:16:43.785 500 FEE 437502 21480 6060218 2024-02-25 04:16:43.785 2024-02-25 04:16:43.785 4500 TIP 437502 20581 6060219 2024-02-25 04:16:44.716 2024-02-25 04:16:44.716 500 FEE 437723 19435 6060220 2024-02-25 04:16:44.716 2024-02-25 04:16:44.716 4500 TIP 437723 19843 6060239 2024-02-25 04:18:29.807 2024-02-25 04:18:29.807 500 FEE 437287 15560 6060240 2024-02-25 04:18:29.807 2024-02-25 04:18:29.807 4500 TIP 437287 1733 6060382 2024-02-25 05:09:28.897 2024-02-25 05:09:28.897 1000 FEE 437670 782 6060383 2024-02-25 05:09:28.897 2024-02-25 05:09:28.897 9000 TIP 437670 10519 6060408 2024-02-25 05:18:15.226 2024-02-25 05:18:15.226 1000 FEE 437762 5761 6060409 2024-02-25 05:18:15.226 2024-02-25 05:18:15.226 9000 TIP 437762 13177 6060439 2024-02-25 05:23:55.505 2024-02-25 05:23:55.505 2100 FEE 437923 16950 6060440 2024-02-25 05:23:55.505 2024-02-25 05:23:55.505 18900 TIP 437923 20539 6060488 2024-02-25 05:54:39.103 2024-02-25 05:54:39.103 800 FEE 437775 15336 6060489 2024-02-25 05:54:39.103 2024-02-25 05:54:39.103 7200 TIP 437775 11165 6060490 2024-02-25 05:54:39.283 2024-02-25 05:54:39.283 800 FEE 437775 2206 6060491 2024-02-25 05:54:39.283 2024-02-25 05:54:39.283 7200 TIP 437775 21269 6060494 2024-02-25 05:54:46.07 2024-02-25 05:54:46.07 800 FEE 437775 13246 6060495 2024-02-25 05:54:46.07 2024-02-25 05:54:46.07 7200 TIP 437775 21091 6060513 2024-02-25 06:03:50.875 2024-02-25 06:03:50.875 1000 FEE 437963 19449 6060514 2024-02-25 06:03:50.875 2024-02-25 06:03:50.875 9000 TIP 437963 9427 6060519 2024-02-25 06:04:57.771 2024-02-25 06:04:57.771 10000 FEE 437720 16998 6060520 2024-02-25 06:04:57.771 2024-02-25 06:04:57.771 90000 TIP 437720 9099 6060562 2024-02-25 06:26:07.134 2024-02-25 06:26:07.134 800 FEE 437893 21145 6060563 2024-02-25 06:26:07.134 2024-02-25 06:26:07.134 7200 TIP 437893 18139 6060566 2024-02-25 06:26:08.57 2024-02-25 06:26:08.57 7100 FEE 437945 18830 6060567 2024-02-25 06:26:08.57 2024-02-25 06:26:08.57 63900 TIP 437945 13517 6060568 2024-02-25 06:26:09.505 2024-02-25 06:26:09.505 800 FEE 437893 20337 6060569 2024-02-25 06:26:09.505 2024-02-25 06:26:09.505 7200 TIP 437893 14669 6060594 2024-02-25 06:32:31.111 2024-02-25 06:32:31.111 7700 FEE 437631 1000 6060595 2024-02-25 06:32:31.111 2024-02-25 06:32:31.111 69300 TIP 437631 1773 6060596 2024-02-25 06:32:31.374 2024-02-25 06:32:31.374 15400 FEE 437631 9330 6060597 2024-02-25 06:32:31.374 2024-02-25 06:32:31.374 138600 TIP 437631 10849 6060606 2024-02-25 06:32:34.245 2024-02-25 06:32:34.245 7700 FEE 437631 1505 6060607 2024-02-25 06:32:34.245 2024-02-25 06:32:34.245 69300 TIP 437631 761 6060638 2024-02-25 06:37:29.309 2024-02-25 06:37:29.309 900 FEE 437946 1576 6060639 2024-02-25 06:37:29.309 2024-02-25 06:37:29.309 8100 TIP 437946 18919 6060640 2024-02-25 06:37:31.398 2024-02-25 06:37:31.398 100 FEE 437947 9166 6060641 2024-02-25 06:37:31.398 2024-02-25 06:37:31.398 900 TIP 437947 7992 6060685 2024-02-25 06:45:13.26 2024-02-25 06:45:13.26 800 FEE 437670 14122 6060686 2024-02-25 06:45:13.26 2024-02-25 06:45:13.26 7200 TIP 437670 18470 6060687 2024-02-25 06:45:13.443 2024-02-25 06:45:13.443 800 FEE 437670 787 6060688 2024-02-25 06:45:13.443 2024-02-25 06:45:13.443 7200 TIP 437670 13987 6060703 2024-02-25 06:45:34.363 2024-02-25 06:45:34.363 800 FEE 437675 11609 6060704 2024-02-25 06:45:34.363 2024-02-25 06:45:34.363 7200 TIP 437675 15703 6060711 2024-02-25 06:48:49.063 2024-02-25 06:48:49.063 1000 FEE 437978 9099 6060715 2024-02-25 06:49:09.569 2024-02-25 06:49:09.569 1000 FEE 437979 20745 6060723 2024-02-25 06:53:07.285 2024-02-25 06:53:07.285 1000 FEE 437981 20254 6060724 2024-02-25 06:53:33.125 2024-02-25 06:53:33.125 2100 FEE 437966 18225 6060725 2024-02-25 06:53:33.125 2024-02-25 06:53:33.125 18900 TIP 437966 20168 6060753 2024-02-25 07:01:51.761 2024-02-25 07:01:51.761 1000 FEE 437972 1585 6060754 2024-02-25 07:01:51.761 2024-02-25 07:01:51.761 9000 TIP 437972 18241 6060778 2024-02-25 07:02:51.454 2024-02-25 07:02:51.454 1000 FEE 437986 900 6060795 2024-02-25 07:08:46.434 2024-02-25 07:08:46.434 0 FEE 437991 787 6060797 2024-02-25 07:09:29.536 2024-02-25 07:09:29.536 10000 FEE 437993 10638 6060809 2024-02-25 07:13:00.143 2024-02-25 07:13:00.143 69000 FEE 437995 18837 6059719 2024-02-25 02:45:02.44 2024-02-25 02:45:02.44 1000 STREAM 141924 11263 6059725 2024-02-25 02:46:02.421 2024-02-25 02:46:02.421 1000 STREAM 141924 17321 6059728 2024-02-25 02:47:02.418 2024-02-25 02:47:02.418 1000 STREAM 141924 1064 6059750 2024-02-25 02:51:02.47 2024-02-25 02:51:02.47 1000 STREAM 141924 20701 6059752 2024-02-25 02:52:02.46 2024-02-25 02:52:02.46 1000 STREAM 141924 15045 6059883 2024-02-25 03:04:02.525 2024-02-25 03:04:02.525 1000 STREAM 141924 21492 6060058 2024-02-25 03:39:02.733 2024-02-25 03:39:02.733 1000 STREAM 141924 766 6060225 2024-02-25 04:17:04.992 2024-02-25 04:17:04.992 1000 STREAM 141924 18637 6121627 2024-03-01 04:24:53.19 2024-03-01 04:24:53.19 9000 TIP 444365 14545 6121639 2024-03-01 04:31:50.129 2024-03-01 04:31:50.129 2100 FEE 444552 18830 6121640 2024-03-01 04:31:50.129 2024-03-01 04:31:50.129 18900 TIP 444552 17976 6121666 2024-03-01 04:37:16.824 2024-03-01 04:37:16.824 100 FEE 444537 20015 6121667 2024-03-01 04:37:16.824 2024-03-01 04:37:16.824 900 TIP 444537 16998 6121672 2024-03-01 04:37:24.822 2024-03-01 04:37:24.822 900 FEE 444435 11862 6121673 2024-03-01 04:37:24.822 2024-03-01 04:37:24.822 8100 TIP 444435 646 6121694 2024-03-01 04:40:22.2 2024-03-01 04:40:22.2 1000 FEE 444208 9183 6121695 2024-03-01 04:40:22.2 2024-03-01 04:40:22.2 9000 TIP 444208 2774 6121710 2024-03-01 04:42:18.9 2024-03-01 04:42:18.9 1000 FEE 444558 17050 6121711 2024-03-01 04:42:59.126 2024-03-01 04:42:59.126 1000 FEE 444559 20201 6121741 2024-03-01 04:52:54.103 2024-03-01 04:52:54.103 1700 FEE 444542 678 6121742 2024-03-01 04:52:54.103 2024-03-01 04:52:54.103 15300 TIP 444542 1468 6121743 2024-03-01 04:52:55.49 2024-03-01 04:52:55.49 1700 FEE 444524 673 6121744 2024-03-01 04:52:55.49 2024-03-01 04:52:55.49 15300 TIP 444524 1833 6121799 2024-03-01 04:59:14.071 2024-03-01 04:59:14.071 1000 FEE 444568 18525 6121802 2024-03-01 04:59:19.36 2024-03-01 04:59:19.36 800 FEE 444365 5708 6121803 2024-03-01 04:59:19.36 2024-03-01 04:59:19.36 7200 TIP 444365 2342 6121806 2024-03-01 04:59:20.864 2024-03-01 04:59:20.864 800 FEE 444365 9336 6121807 2024-03-01 04:59:20.864 2024-03-01 04:59:20.864 7200 TIP 444365 1751 6121832 2024-03-01 05:05:13.265 2024-03-01 05:05:13.265 1000 FEE 443745 21627 6121833 2024-03-01 05:05:13.265 2024-03-01 05:05:13.265 9000 TIP 443745 18507 6121834 2024-03-01 05:05:17.848 2024-03-01 05:05:17.848 1000 FEE 443274 18177 6121835 2024-03-01 05:05:17.848 2024-03-01 05:05:17.848 9000 TIP 443274 12291 6121843 2024-03-01 05:06:06.661 2024-03-01 05:06:06.661 1000 FEE 443616 18919 6121844 2024-03-01 05:06:06.661 2024-03-01 05:06:06.661 9000 TIP 443616 2029 6121848 2024-03-01 05:07:45.308 2024-03-01 05:07:45.308 1000 FEE 443611 18494 6121849 2024-03-01 05:07:45.308 2024-03-01 05:07:45.308 9000 TIP 443611 20182 6121864 2024-03-01 05:12:56.968 2024-03-01 05:12:56.968 2100 FEE 444562 15088 6121865 2024-03-01 05:12:56.968 2024-03-01 05:12:56.968 18900 TIP 444562 21369 6121887 2024-03-01 05:22:41.752 2024-03-01 05:22:41.752 1000 FEE 444578 19263 6121909 2024-03-01 05:29:23.841 2024-03-01 05:29:23.841 2100 FEE 444168 19570 6121910 2024-03-01 05:29:23.841 2024-03-01 05:29:23.841 18900 TIP 444168 13177 6121923 2024-03-01 05:30:08.814 2024-03-01 05:30:08.814 2700 FEE 443372 6310 6121924 2024-03-01 05:30:08.814 2024-03-01 05:30:08.814 24300 TIP 443372 20812 6121929 2024-03-01 05:31:07.195 2024-03-01 05:31:07.195 1000 FEE 444584 17030 6121938 2024-03-01 05:34:17.421 2024-03-01 05:34:17.421 100 FEE 444098 17673 6121939 2024-03-01 05:34:17.421 2024-03-01 05:34:17.421 900 TIP 444098 794 6121983 2024-03-01 05:48:31.721 2024-03-01 05:48:31.721 2100 FEE 444462 11999 6121984 2024-03-01 05:48:31.721 2024-03-01 05:48:31.721 18900 TIP 444462 5746 6122042 2024-03-01 06:03:01.629 2024-03-01 06:03:01.629 5000 FEE 444525 21248 6122043 2024-03-01 06:03:01.629 2024-03-01 06:03:01.629 45000 TIP 444525 11789 6122051 2024-03-01 06:03:58.34 2024-03-01 06:03:58.34 800 FEE 444522 21599 6122052 2024-03-01 06:03:58.34 2024-03-01 06:03:58.34 7200 TIP 444522 18468 6122057 2024-03-01 06:04:09.095 2024-03-01 06:04:09.095 800 FEE 444552 18472 6122058 2024-03-01 06:04:09.095 2024-03-01 06:04:09.095 7200 TIP 444552 12946 6122074 2024-03-01 06:07:23.508 2024-03-01 06:07:23.508 10000 FEE 444586 4128 6122075 2024-03-01 06:07:23.508 2024-03-01 06:07:23.508 90000 TIP 444586 16954 6122085 2024-03-01 06:08:52.395 2024-03-01 06:08:52.395 100000 FEE 444606 16598 6122091 2024-03-01 06:11:16.653 2024-03-01 06:11:16.653 100 FEE 444586 1803 6122092 2024-03-01 06:11:16.653 2024-03-01 06:11:16.653 900 TIP 444586 21422 6122114 2024-03-01 06:17:02.547 2024-03-01 06:17:02.547 100 FEE 444606 21214 6122115 2024-03-01 06:17:02.547 2024-03-01 06:17:02.547 900 TIP 444606 15386 6122133 2024-03-01 06:23:08.276 2024-03-01 06:23:08.276 1000 FEE 444601 21072 6122134 2024-03-01 06:23:08.276 2024-03-01 06:23:08.276 9000 TIP 444601 6421 6122137 2024-03-01 06:23:21.319 2024-03-01 06:23:21.319 1000 FEE 444614 15536 6122161 2024-03-01 06:28:03.268 2024-03-01 06:28:03.268 0 FEE 444614 16126 6122228 2024-03-01 06:43:27.026 2024-03-01 06:43:27.026 300 FEE 148464 2844 6122229 2024-03-01 06:43:27.026 2024-03-01 06:43:27.026 2700 TIP 148464 10719 6122270 2024-03-01 06:43:30.997 2024-03-01 06:43:30.997 300 FEE 148464 16267 6122271 2024-03-01 06:43:30.997 2024-03-01 06:43:30.997 2700 TIP 148464 9169 6122278 2024-03-01 06:43:31.995 2024-03-01 06:43:31.995 300 FEE 148464 19398 6122279 2024-03-01 06:43:31.995 2024-03-01 06:43:31.995 2700 TIP 148464 19531 6122314 2024-03-01 06:46:14.801 2024-03-01 06:46:14.801 100 FEE 444475 795 6122315 2024-03-01 06:46:14.801 2024-03-01 06:46:14.801 900 TIP 444475 21090 6122317 2024-03-01 06:47:01.609 2024-03-01 06:47:01.609 1000 FEE 444629 20523 6122319 2024-03-01 06:47:56.584 2024-03-01 06:47:56.584 2100 FEE 444168 5495 6122320 2024-03-01 06:47:56.584 2024-03-01 06:47:56.584 18900 TIP 444168 20602 6122321 2024-03-01 06:47:57.005 2024-03-01 06:47:57.005 2100 FEE 444168 7877 6122322 2024-03-01 06:47:57.005 2024-03-01 06:47:57.005 18900 TIP 444168 2583 6122348 2024-03-01 06:49:47.963 2024-03-01 06:49:47.963 2500 FEE 444625 21254 6122349 2024-03-01 06:49:47.963 2024-03-01 06:49:47.963 22500 TIP 444625 17217 6122361 2024-03-01 06:50:59.223 2024-03-01 06:50:59.223 2100 FEE 443528 12139 6122362 2024-03-01 06:50:59.223 2024-03-01 06:50:59.223 18900 TIP 443528 19121 6122368 2024-03-01 06:52:00.952 2024-03-01 06:52:00.952 2100 FEE 443880 14152 6122369 2024-03-01 06:52:00.952 2024-03-01 06:52:00.952 18900 TIP 443880 1505 6122395 2024-03-01 07:00:45.692 2024-03-01 07:00:45.692 1000 FEE 444637 15938 6122396 2024-03-01 07:00:49.37 2024-03-01 07:00:49.37 1000 FEE 444607 9367 6122397 2024-03-01 07:00:49.37 2024-03-01 07:00:49.37 9000 TIP 444607 20788 6122410 2024-03-01 07:04:47.257 2024-03-01 07:04:47.257 800 FEE 328872 2188 6122411 2024-03-01 07:04:47.257 2024-03-01 07:04:47.257 7200 TIP 328872 19381 6122426 2024-03-01 07:07:40.234 2024-03-01 07:07:40.234 100 FEE 444638 7847 6122427 2024-03-01 07:07:40.234 2024-03-01 07:07:40.234 900 TIP 444638 1272 6122430 2024-03-01 07:08:17.181 2024-03-01 07:08:17.181 1000 FEE 444646 7983 6122447 2024-03-01 07:16:15.062 2024-03-01 07:16:15.062 0 FEE 444649 12562 6122469 2024-03-01 07:25:40.161 2024-03-01 07:25:40.161 100000 FEE 444652 20710 6122490 2024-03-01 07:32:51.216 2024-03-01 07:32:51.216 100 FEE 444554 18380 6122491 2024-03-01 07:32:51.216 2024-03-01 07:32:51.216 900 TIP 444554 19087 6059732 2024-02-25 02:48:03.212 2024-02-25 02:48:03.212 1000 STREAM 141924 1180 6059737 2024-02-25 02:49:03.218 2024-02-25 02:49:03.218 1000 STREAM 141924 15386 6059757 2024-02-25 02:54:03.212 2024-02-25 02:54:03.212 1000 STREAM 141924 18393 6059782 2024-02-25 02:56:03.234 2024-02-25 02:56:03.234 1000 STREAM 141924 17944 6059899 2024-02-25 03:07:03.447 2024-02-25 03:07:03.447 1000 STREAM 141924 686 6060022 2024-02-25 03:30:03.823 2024-02-25 03:30:03.823 1000 STREAM 141924 20594 6060038 2024-02-25 03:33:02.628 2024-02-25 03:33:02.628 1000 STREAM 141924 2022 6060083 2024-02-25 03:47:03.379 2024-02-25 03:47:03.379 1000 STREAM 141924 7903 6060085 2024-02-25 03:49:03.907 2024-02-25 03:49:03.907 1000 STREAM 141924 9352 6060086 2024-02-25 03:50:03.951 2024-02-25 03:50:03.951 1000 STREAM 141924 775 6060103 2024-02-25 03:51:04.031 2024-02-25 03:51:04.031 1000 STREAM 141924 15060 6060124 2024-02-25 03:58:03.57 2024-02-25 03:58:03.57 1000 STREAM 141924 15858 6060136 2024-02-25 03:59:03.57 2024-02-25 03:59:03.57 1000 STREAM 141924 1631 6060153 2024-02-25 04:02:04.128 2024-02-25 04:02:04.128 1000 STREAM 141924 18412 6060155 2024-02-25 04:03:04.157 2024-02-25 04:03:04.157 1000 STREAM 141924 1046 6060157 2024-02-25 04:04:04.77 2024-02-25 04:04:04.77 1000 STREAM 141924 10063 6060166 2024-02-25 04:06:04.691 2024-02-25 04:06:04.691 1000 STREAM 141924 20006 6060181 2024-02-25 04:07:04.718 2024-02-25 04:07:04.718 1000 STREAM 141924 21624 6060200 2024-02-25 04:15:04.986 2024-02-25 04:15:04.986 1000 STREAM 141924 19622 6060279 2024-02-25 04:30:04.259 2024-02-25 04:30:04.259 1000 STREAM 141924 10102 6060288 2024-02-25 04:32:04.374 2024-02-25 04:32:04.374 1000 STREAM 141924 11516 6060337 2024-02-25 04:45:04.278 2024-02-25 04:45:04.278 1000 STREAM 141924 19193 6060341 2024-02-25 04:47:04.921 2024-02-25 04:47:04.921 1000 STREAM 141924 1394 6060367 2024-02-25 05:02:03.976 2024-02-25 05:02:03.976 1000 STREAM 141924 7818 6060373 2024-02-25 05:04:04 2024-02-25 05:04:04 1000 STREAM 141924 7766 6060374 2024-02-25 05:05:04.025 2024-02-25 05:05:04.025 1000 STREAM 141924 18836 6121628 2024-03-01 04:25:03.017 2024-03-01 04:25:03.017 1000 STREAM 141924 10007 6121633 2024-03-01 04:27:03.041 2024-03-01 04:27:03.041 1000 STREAM 141924 21254 6121636 2024-03-01 04:29:03.026 2024-03-01 04:29:03.026 1000 STREAM 141924 21281 6121637 2024-03-01 04:30:03.074 2024-03-01 04:30:03.074 1000 STREAM 141924 19121 6121641 2024-03-01 04:32:03.03 2024-03-01 04:32:03.03 1000 STREAM 141924 9916 6121650 2024-03-01 04:35:03.034 2024-03-01 04:35:03.034 1000 STREAM 141924 20129 6121655 2024-03-01 04:36:03.027 2024-03-01 04:36:03.027 1000 STREAM 141924 12774 6121737 2024-03-01 04:51:03.471 2024-03-01 04:51:03.471 1000 STREAM 141924 20788 6121758 2024-03-01 04:54:03.524 2024-03-01 04:54:03.524 1000 STREAM 141924 14271 6121775 2024-03-01 04:55:03.52 2024-03-01 04:55:03.52 1000 STREAM 141924 18525 6121780 2024-03-01 04:56:03.555 2024-03-01 04:56:03.555 1000 STREAM 141924 18704 6121824 2024-03-01 05:04:03.611 2024-03-01 05:04:03.611 1000 STREAM 141924 11798 6121847 2024-03-01 05:07:03.649 2024-03-01 05:07:03.649 1000 STREAM 141924 13798 6121863 2024-03-01 05:12:03.717 2024-03-01 05:12:03.717 1000 STREAM 141924 19117 6121866 2024-03-01 05:13:03.741 2024-03-01 05:13:03.741 1000 STREAM 141924 10591 6121882 2024-03-01 05:20:03.853 2024-03-01 05:20:03.853 1000 STREAM 141924 1571 6121930 2024-03-01 05:32:03.98 2024-03-01 05:32:03.98 1000 STREAM 141924 16788 6121933 2024-03-01 05:33:03.973 2024-03-01 05:33:03.973 1000 STREAM 141924 21492 6121960 2024-03-01 05:40:04.15 2024-03-01 05:40:04.15 1000 STREAM 141924 16660 6121967 2024-03-01 05:42:04.142 2024-03-01 05:42:04.142 1000 STREAM 141924 20066 6121969 2024-03-01 05:44:04.192 2024-03-01 05:44:04.192 1000 STREAM 141924 2437 6122318 2024-03-01 06:47:02.717 2024-03-01 06:47:02.717 1000 STREAM 141924 19864 6122370 2024-03-01 06:52:02.741 2024-03-01 06:52:02.741 1000 STREAM 141924 20439 6122376 2024-03-01 06:54:02.747 2024-03-01 06:54:02.747 1000 STREAM 141924 17392 6122385 2024-03-01 06:56:02.768 2024-03-01 06:56:02.768 1000 STREAM 141924 11873 6122470 2024-03-01 07:26:05.228 2024-03-01 07:26:05.228 1000 STREAM 141924 20337 6059805 2024-02-25 02:59:03.684 2024-02-25 02:59:03.684 1000 STREAM 141924 18690 6059810 2024-02-25 03:00:03.732 2024-02-25 03:00:03.732 1000 STREAM 141924 9150 6059877 2024-02-25 03:03:03.712 2024-02-25 03:03:03.712 1000 STREAM 141924 4989 6059984 2024-02-25 03:20:03.999 2024-02-25 03:20:03.999 1000 STREAM 141924 20756 6059998 2024-02-25 03:24:03.971 2024-02-25 03:24:03.971 1000 STREAM 141924 797 6059999 2024-02-25 03:25:03.979 2024-02-25 03:25:03.979 1000 STREAM 141924 18169 6060001 2024-02-25 03:26:03.997 2024-02-25 03:26:03.997 1000 STREAM 141924 16571 6060009 2024-02-25 03:27:04.011 2024-02-25 03:27:04.011 1000 STREAM 141924 15833 6121697 2024-03-01 04:40:25.807 2024-03-01 04:40:25.807 9000 TIP 444376 5128 6121704 2024-03-01 04:40:28.421 2024-03-01 04:40:28.421 1000 FEE 444376 19995 6121705 2024-03-01 04:40:28.421 2024-03-01 04:40:28.421 9000 TIP 444376 16842 6121713 2024-03-01 04:43:06.183 2024-03-01 04:43:06.183 1000 FEE 443514 9107 6121714 2024-03-01 04:43:06.183 2024-03-01 04:43:06.183 9000 TIP 443514 9 6121715 2024-03-01 04:43:31.892 2024-03-01 04:43:31.892 1000 FEE 444560 8570 6121739 2024-03-01 04:51:35.056 2024-03-01 04:51:35.056 1000 FEE 444564 12072 6121750 2024-03-01 04:53:12.872 2024-03-01 04:53:12.872 1700 FEE 444561 20326 6121751 2024-03-01 04:53:12.872 2024-03-01 04:53:12.872 15300 TIP 444561 21233 6121771 2024-03-01 04:54:29.821 2024-03-01 04:54:29.821 1000 FEE 444179 4027 6121772 2024-03-01 04:54:29.821 2024-03-01 04:54:29.821 9000 TIP 444179 21208 6121804 2024-03-01 04:59:20.041 2024-03-01 04:59:20.041 800 FEE 444365 21469 6121805 2024-03-01 04:59:20.041 2024-03-01 04:59:20.041 7200 TIP 444365 21070 6121869 2024-03-01 05:15:16.934 2024-03-01 05:15:16.934 1000 FEE 444571 18412 6121893 2024-03-01 05:25:07.099 2024-03-01 05:25:07.099 10000 FEE 444575 18269 6121894 2024-03-01 05:25:07.099 2024-03-01 05:25:07.099 90000 TIP 444575 18667 6121944 2024-03-01 05:35:11.402 2024-03-01 05:35:11.402 2100 FEE 444562 1472 6121945 2024-03-01 05:35:11.402 2024-03-01 05:35:11.402 18900 TIP 444562 844 6121950 2024-03-01 05:36:31.198 2024-03-01 05:36:31.198 1000 FEE 444588 5195 6121955 2024-03-01 05:39:24.005 2024-03-01 05:39:24.005 1000 FEE 444590 2519 6121956 2024-03-01 05:39:49.373 2024-03-01 05:39:49.373 500 FEE 444462 659 6121957 2024-03-01 05:39:49.373 2024-03-01 05:39:49.373 4500 TIP 444462 9331 6121971 2024-03-01 05:44:55.243 2024-03-01 05:44:55.243 1000 FEE 444593 16259 6121981 2024-03-01 05:48:08.86 2024-03-01 05:48:08.86 1000 FEE 444595 4624 6121986 2024-03-01 05:49:24.254 2024-03-01 05:49:24.254 1000 FEE 444596 4395 6121995 2024-03-01 05:55:07.284 2024-03-01 05:55:07.284 1000000 FEE 444597 5590 6122081 2024-03-01 06:08:20.064 2024-03-01 06:08:20.064 2100 FEE 444541 15119 6122082 2024-03-01 06:08:20.064 2024-03-01 06:08:20.064 18900 TIP 444541 14152 6122099 2024-03-01 06:13:28.092 2024-03-01 06:13:28.092 1000 FEE 444607 3461 6122119 2024-03-01 06:17:10.214 2024-03-01 06:17:10.214 100 FEE 443399 6191 6122120 2024-03-01 06:17:10.214 2024-03-01 06:17:10.214 900 TIP 443399 20464 6122144 2024-03-01 06:23:49.472 2024-03-01 06:23:49.472 500 FEE 444109 5500 6122145 2024-03-01 06:23:49.472 2024-03-01 06:23:49.472 4500 TIP 444109 13903 6122146 2024-03-01 06:23:53.165 2024-03-01 06:23:53.165 300 FEE 444558 730 6122147 2024-03-01 06:23:53.165 2024-03-01 06:23:53.165 2700 TIP 444558 10519 6122167 2024-03-01 06:28:30.255 2024-03-01 06:28:30.255 2100 FEE 444533 19906 6122168 2024-03-01 06:28:30.255 2024-03-01 06:28:30.255 18900 TIP 444533 8400 6122173 2024-03-01 06:28:40.797 2024-03-01 06:28:40.797 2100 FEE 444425 19005 6122174 2024-03-01 06:28:40.797 2024-03-01 06:28:40.797 18900 TIP 444425 19981 6122177 2024-03-01 06:30:36.365 2024-03-01 06:30:36.365 0 FEE 444614 19842 6122204 2024-03-01 06:36:23.587 2024-03-01 06:36:23.587 1500 FEE 444540 14959 6122205 2024-03-01 06:36:23.587 2024-03-01 06:36:23.587 13500 TIP 444540 21201 6122218 2024-03-01 06:42:12.275 2024-03-01 06:42:12.275 1000 FEE 444626 19138 6122219 2024-03-01 06:42:24.11 2024-03-01 06:42:24.11 500 FEE 440484 21481 6122220 2024-03-01 06:42:24.11 2024-03-01 06:42:24.11 4500 TIP 440484 20433 6122226 2024-03-01 06:43:15.423 2024-03-01 06:43:15.423 500 FEE 442591 5809 6122227 2024-03-01 06:43:15.423 2024-03-01 06:43:15.423 4500 TIP 442591 4650 6122230 2024-03-01 06:43:27.087 2024-03-01 06:43:27.087 300 FEE 148464 3342 6122231 2024-03-01 06:43:27.087 2024-03-01 06:43:27.087 2700 TIP 148464 7891 6122248 2024-03-01 06:43:28.755 2024-03-01 06:43:28.755 300 FEE 148464 9809 6122249 2024-03-01 06:43:28.755 2024-03-01 06:43:28.755 2700 TIP 148464 5828 6122272 2024-03-01 06:43:31.171 2024-03-01 06:43:31.171 300 FEE 148464 18169 6122273 2024-03-01 06:43:31.171 2024-03-01 06:43:31.171 2700 TIP 148464 9916 6122286 2024-03-01 06:43:32.701 2024-03-01 06:43:32.701 300 FEE 148464 18659 6122287 2024-03-01 06:43:32.701 2024-03-01 06:43:32.701 2700 TIP 148464 11423 6122288 2024-03-01 06:43:32.82 2024-03-01 06:43:32.82 300 FEE 148464 19462 6122289 2024-03-01 06:43:32.82 2024-03-01 06:43:32.82 2700 TIP 148464 802 6122294 2024-03-01 06:43:33.322 2024-03-01 06:43:33.322 300 FEE 148464 2681 6122295 2024-03-01 06:43:33.322 2024-03-01 06:43:33.322 2700 TIP 148464 6419 6122296 2024-03-01 06:43:33.505 2024-03-01 06:43:33.505 300 FEE 148464 9150 6122297 2024-03-01 06:43:33.505 2024-03-01 06:43:33.505 2700 TIP 148464 12959 6122298 2024-03-01 06:43:33.742 2024-03-01 06:43:33.742 300 FEE 148464 13143 6122299 2024-03-01 06:43:33.742 2024-03-01 06:43:33.742 2700 TIP 148464 1673 6122309 2024-03-01 06:44:23.879 2024-03-01 06:44:23.879 500 FEE 444146 17592 6122310 2024-03-01 06:44:23.879 2024-03-01 06:44:23.879 4500 TIP 444146 685 6122334 2024-03-01 06:49:16.601 2024-03-01 06:49:16.601 2100 FEE 444586 6430 6122335 2024-03-01 06:49:16.601 2024-03-01 06:49:16.601 18900 TIP 444586 14037 6122336 2024-03-01 06:49:18.4 2024-03-01 06:49:18.4 2100 FEE 444597 20110 6122337 2024-03-01 06:49:18.4 2024-03-01 06:49:18.4 18900 TIP 444597 777 6122346 2024-03-01 06:49:33.633 2024-03-01 06:49:33.633 2100 FEE 444609 10638 6122347 2024-03-01 06:49:33.633 2024-03-01 06:49:33.633 18900 TIP 444609 15052 6122354 2024-03-01 06:50:34.111 2024-03-01 06:50:34.111 1000 FEE 444632 20554 6122366 2024-03-01 06:51:59.537 2024-03-01 06:51:59.537 2100 FEE 443877 19189 6122367 2024-03-01 06:51:59.537 2024-03-01 06:51:59.537 18900 TIP 443877 17710 6122383 2024-03-01 06:54:50.442 2024-03-01 06:54:50.442 21000 FEE 444633 20299 6122405 2024-03-01 07:03:02.548 2024-03-01 07:03:02.548 1000 FEE 444642 20911 6122482 2024-03-01 07:29:07.841 2024-03-01 07:29:07.841 100 FEE 444651 663 6122483 2024-03-01 07:29:07.841 2024-03-01 07:29:07.841 900 TIP 444651 17535 6122548 2024-03-01 07:55:26.215 2024-03-01 07:55:26.215 1000 FEE 444659 12024 6122562 2024-03-01 08:04:48.92 2024-03-01 08:04:48.92 100000 FEE 444662 17171 6122588 2024-03-01 08:10:09.786 2024-03-01 08:10:09.786 1000 FEE 444584 1425 6122589 2024-03-01 08:10:09.786 2024-03-01 08:10:09.786 9000 TIP 444584 18989 6122616 2024-03-01 08:16:56.675 2024-03-01 08:16:56.675 1000 FEE 444662 21498 6122617 2024-03-01 08:16:56.675 2024-03-01 08:16:56.675 9000 TIP 444662 641 6122641 2024-03-01 08:28:45.5 2024-03-01 08:28:45.5 2800 FEE 444360 12516 6122642 2024-03-01 08:28:45.5 2024-03-01 08:28:45.5 25200 TIP 444360 1631 6122655 2024-03-01 08:30:39.885 2024-03-01 08:30:39.885 125000 FEE 444671 2188 6122676 2024-03-01 08:38:42.809 2024-03-01 08:38:42.809 800 FEE 444365 8385 6122677 2024-03-01 08:38:42.809 2024-03-01 08:38:42.809 7200 TIP 444365 17041 6122701 2024-03-01 08:50:21.376 2024-03-01 08:50:21.376 100 FEE 444168 21603 6122702 2024-03-01 08:50:21.376 2024-03-01 08:50:21.376 900 TIP 444168 13174 6122703 2024-03-01 08:50:21.898 2024-03-01 08:50:21.898 100 FEE 444168 9529 6122704 2024-03-01 08:50:21.898 2024-03-01 08:50:21.898 900 TIP 444168 4027 6122730 2024-03-01 09:00:39.13 2024-03-01 09:00:39.13 1000 FEE 444680 13927 6059839 2024-02-25 03:00:32.567 2024-02-25 03:00:32.567 18900 TIP 437218 929 6059848 2024-02-25 03:00:36.103 2024-02-25 03:00:36.103 300 FEE 437723 8289 6059849 2024-02-25 03:00:36.103 2024-02-25 03:00:36.103 2700 TIP 437723 20871 6059850 2024-02-25 03:00:36.376 2024-02-25 03:00:36.376 2100 FEE 437714 889 6059851 2024-02-25 03:00:36.376 2024-02-25 03:00:36.376 18900 TIP 437714 19663 6059876 2024-02-25 03:02:59.479 2024-02-25 03:02:59.479 1000 FEE 437902 21091 6059922 2024-02-25 03:07:48.908 2024-02-25 03:07:48.908 2100 FEE 437720 1092 6059923 2024-02-25 03:07:48.908 2024-02-25 03:07:48.908 18900 TIP 437720 21061 6059930 2024-02-25 03:07:51.799 2024-02-25 03:07:51.799 2100 FEE 437611 5499 6059931 2024-02-25 03:07:51.799 2024-02-25 03:07:51.799 18900 TIP 437611 17953 6059938 2024-02-25 03:07:52.635 2024-02-25 03:07:52.635 2100 FEE 437611 5487 6059939 2024-02-25 03:07:52.635 2024-02-25 03:07:52.635 18900 TIP 437611 16250 6059944 2024-02-25 03:07:53.145 2024-02-25 03:07:53.145 2100 FEE 437611 21090 6059945 2024-02-25 03:07:53.145 2024-02-25 03:07:53.145 18900 TIP 437611 18225 6059955 2024-02-25 03:09:03.168 2024-02-25 03:09:03.168 50000 FEE 368174 12736 6059956 2024-02-25 03:09:03.168 2024-02-25 03:09:03.168 450000 TIP 368174 20892 6059994 2024-02-25 03:23:32.315 2024-02-25 03:23:32.315 2100 FEE 437800 4048 6059995 2024-02-25 03:23:32.315 2024-02-25 03:23:32.315 18900 TIP 437800 6419 6060011 2024-02-25 03:27:27.662 2024-02-25 03:27:27.662 1000 FEE 437920 3342 6060020 2024-02-25 03:29:56.786 2024-02-25 03:29:56.786 10000 FEE 413007 27 6060021 2024-02-25 03:29:56.786 2024-02-25 03:29:56.786 90000 TIP 413007 20117 6060039 2024-02-25 03:33:24.512 2024-02-25 03:33:24.512 2100 FEE 437843 8080 6060040 2024-02-25 03:33:24.512 2024-02-25 03:33:24.512 18900 TIP 437843 21605 6060060 2024-02-25 03:39:33.168 2024-02-25 03:39:33.168 1000 FEE 437611 10536 6060061 2024-02-25 03:39:33.168 2024-02-25 03:39:33.168 9000 TIP 437611 21271 6060066 2024-02-25 03:41:20.959 2024-02-25 03:41:20.959 1000 FEE 437269 18930 6060067 2024-02-25 03:41:20.959 2024-02-25 03:41:20.959 9000 TIP 437269 681 6060073 2024-02-25 03:42:59.411 2024-02-25 03:42:59.411 4000 FEE 437863 21287 6060074 2024-02-25 03:42:59.411 2024-02-25 03:42:59.411 36000 TIP 437863 21178 6060106 2024-02-25 03:51:41.186 2024-02-25 03:51:41.186 100000 FEE 437928 6749 6060127 2024-02-25 03:58:17.901 2024-02-25 03:58:17.901 1000 FEE 437705 17291 6060128 2024-02-25 03:58:17.901 2024-02-25 03:58:17.901 9000 TIP 437705 21072 6060137 2024-02-25 03:59:10.806 2024-02-25 03:59:10.806 2100 FEE 437482 698 6060138 2024-02-25 03:59:10.806 2024-02-25 03:59:10.806 18900 TIP 437482 16842 6060146 2024-02-25 04:00:07.851 2024-02-25 04:00:07.851 3000 FEE 437723 697 6060147 2024-02-25 04:00:07.851 2024-02-25 04:00:07.851 27000 TIP 437723 21263 6060164 2024-02-25 04:05:26.618 2024-02-25 04:05:26.618 6900 FEE 437936 9169 6060165 2024-02-25 04:05:26.618 2024-02-25 04:05:26.618 62100 TIP 437936 2829 6060188 2024-02-25 04:07:10.917 2024-02-25 04:07:10.917 2000 FEE 433472 19286 6060189 2024-02-25 04:07:10.917 2024-02-25 04:07:10.917 18000 TIP 433472 1208 6060226 2024-02-25 04:17:38.123 2024-02-25 04:17:38.123 500 FEE 437516 3717 6060227 2024-02-25 04:17:38.123 2024-02-25 04:17:38.123 4500 TIP 437516 19449 6060243 2024-02-25 04:18:49.872 2024-02-25 04:18:49.872 500 FEE 437682 5112 6060244 2024-02-25 04:18:49.872 2024-02-25 04:18:49.872 4500 TIP 437682 20901 6060248 2024-02-25 04:19:11.599 2024-02-25 04:19:11.599 500 FEE 437197 14705 6060249 2024-02-25 04:19:11.599 2024-02-25 04:19:11.599 4500 TIP 437197 16355 6060254 2024-02-25 04:19:46.205 2024-02-25 04:19:46.205 400 FEE 437934 21201 6060255 2024-02-25 04:19:46.205 2024-02-25 04:19:46.205 3600 TIP 437934 10270 6060280 2024-02-25 04:30:35.481 2024-02-25 04:30:35.481 1000 FEE 437943 19806 6060305 2024-02-25 04:35:39.632 2024-02-25 04:35:39.632 9000 FEE 437900 11698 6060306 2024-02-25 04:35:39.632 2024-02-25 04:35:39.632 81000 TIP 437900 12272 6060307 2024-02-25 04:35:43.364 2024-02-25 04:35:43.364 3200 FEE 437837 2596 6060308 2024-02-25 04:35:43.364 2024-02-25 04:35:43.364 28800 TIP 437837 17944 6060316 2024-02-25 04:35:52.817 2024-02-25 04:35:52.817 3200 FEE 436935 21269 6060317 2024-02-25 04:35:52.817 2024-02-25 04:35:52.817 28800 TIP 436935 16633 6060332 2024-02-25 04:43:01.275 2024-02-25 04:43:01.275 2100 FEE 437852 15549 6060333 2024-02-25 04:43:01.275 2024-02-25 04:43:01.275 18900 TIP 437852 714 6060351 2024-02-25 04:51:07.001 2024-02-25 04:51:07.001 21000 FEE 437953 647 6060368 2024-02-25 05:02:08.42 2024-02-25 05:02:08.42 1000 FEE 437893 19021 6060369 2024-02-25 05:02:08.42 2024-02-25 05:02:08.42 9000 TIP 437893 3990 6060377 2024-02-25 05:07:12.437 2024-02-25 05:07:12.437 21000 FEE 437957 21222 6060380 2024-02-25 05:09:23.896 2024-02-25 05:09:23.896 1000 FEE 437713 763 6060381 2024-02-25 05:09:23.896 2024-02-25 05:09:23.896 9000 TIP 437713 777 6060422 2024-02-25 05:18:21.244 2024-02-25 05:18:21.244 300 FEE 437769 9982 6060423 2024-02-25 05:18:21.244 2024-02-25 05:18:21.244 2700 TIP 437769 18680 6060486 2024-02-25 05:54:38.957 2024-02-25 05:54:38.957 800 FEE 437775 5728 6060487 2024-02-25 05:54:38.957 2024-02-25 05:54:38.957 7200 TIP 437775 9332 6060541 2024-02-25 06:14:51.465 2024-02-25 06:14:51.465 1000 FEE 437968 14489 6060543 2024-02-25 06:15:28.87 2024-02-25 06:15:28.87 1000 FEE 437969 9351 6060544 2024-02-25 06:15:31.938 2024-02-25 06:15:31.938 100 FEE 435223 15526 6060545 2024-02-25 06:15:31.938 2024-02-25 06:15:31.938 900 TIP 435223 13599 6060547 2024-02-25 06:16:31.939 2024-02-25 06:16:31.939 1000 FEE 437970 928 6060598 2024-02-25 06:32:33.418 2024-02-25 06:32:33.418 7700 FEE 437631 1802 6060599 2024-02-25 06:32:33.418 2024-02-25 06:32:33.418 69300 TIP 437631 1237 6060608 2024-02-25 06:32:34.41 2024-02-25 06:32:34.41 7700 FEE 437631 8059 6060609 2024-02-25 06:32:34.41 2024-02-25 06:32:34.41 69300 TIP 437631 993 6060624 2024-02-25 06:33:06.047 2024-02-25 06:33:06.047 7700 FEE 437631 17526 6060625 2024-02-25 06:33:06.047 2024-02-25 06:33:06.047 69300 TIP 437631 18330 6060628 2024-02-25 06:35:07.983 2024-02-25 06:35:07.983 800 FEE 437966 19581 6060629 2024-02-25 06:35:07.983 2024-02-25 06:35:07.983 7200 TIP 437966 11760 6060648 2024-02-25 06:37:42.347 2024-02-25 06:37:42.347 9000 FEE 437955 678 6060649 2024-02-25 06:37:42.347 2024-02-25 06:37:42.347 81000 TIP 437955 15060 6060650 2024-02-25 06:37:59.758 2024-02-25 06:37:59.758 2000 FEE 437801 16667 6060651 2024-02-25 06:37:59.758 2024-02-25 06:37:59.758 18000 TIP 437801 1571 6060655 2024-02-25 06:38:27.682 2024-02-25 06:38:27.682 900 FEE 437966 10771 6060656 2024-02-25 06:38:27.682 2024-02-25 06:38:27.682 8100 TIP 437966 876 6060659 2024-02-25 06:38:34.151 2024-02-25 06:38:34.151 100 FEE 437965 12561 6060660 2024-02-25 06:38:34.151 2024-02-25 06:38:34.151 900 TIP 437965 624 6060674 2024-02-25 06:41:57.957 2024-02-25 06:41:57.957 800 FEE 437731 9363 6060675 2024-02-25 06:41:57.957 2024-02-25 06:41:57.957 7200 TIP 437731 19864 6060691 2024-02-25 06:45:17.665 2024-02-25 06:45:17.665 800 FEE 437713 5057 6060692 2024-02-25 06:45:17.665 2024-02-25 06:45:17.665 7200 TIP 437713 946 6060720 2024-02-25 06:51:40.411 2024-02-25 06:51:40.411 1000 FEE 437980 15243 6060743 2024-02-25 07:00:05.024 2024-02-25 07:00:05.024 1000 FEE 437985 716 6060745 2024-02-25 07:01:10.351 2024-02-25 07:01:10.351 6900 FEE 437190 2640 6060746 2024-02-25 07:01:10.351 2024-02-25 07:01:10.351 62100 TIP 437190 16839 6060755 2024-02-25 07:01:52.013 2024-02-25 07:01:52.013 1000 FEE 437972 20109 6060756 2024-02-25 07:01:52.013 2024-02-25 07:01:52.013 9000 TIP 437972 18180 6060770 2024-02-25 07:02:42.172 2024-02-25 07:02:42.172 1000 FEE 437982 19199 6059844 2024-02-25 03:00:35.274 2024-02-25 03:00:35.274 2100 FEE 437863 726 6059845 2024-02-25 03:00:35.274 2024-02-25 03:00:35.274 18900 TIP 437863 8423 6059846 2024-02-25 03:00:35.736 2024-02-25 03:00:35.736 2100 FEE 437863 20744 6059847 2024-02-25 03:00:35.736 2024-02-25 03:00:35.736 18900 TIP 437863 3506 6059854 2024-02-25 03:00:37.756 2024-02-25 03:00:37.756 2100 FEE 436720 18076 6059855 2024-02-25 03:00:37.756 2024-02-25 03:00:37.756 18900 TIP 436720 981 6059864 2024-02-25 03:00:40.69 2024-02-25 03:00:40.69 2100 FEE 437238 3396 6059865 2024-02-25 03:00:40.69 2024-02-25 03:00:40.69 18900 TIP 437238 17708 6059874 2024-02-25 03:02:29.177 2024-02-25 03:02:29.177 500 FEE 437502 708 6059875 2024-02-25 03:02:29.177 2024-02-25 03:02:29.177 4500 TIP 437502 10393 6059884 2024-02-25 03:04:05.327 2024-02-25 03:04:05.327 1000 FEE 437908 1626 6059924 2024-02-25 03:07:49.993 2024-02-25 03:07:49.993 2100 FEE 437723 666 6059925 2024-02-25 03:07:49.993 2024-02-25 03:07:49.993 18900 TIP 437723 18314 6059926 2024-02-25 03:07:50.253 2024-02-25 03:07:50.253 2100 FEE 437723 844 6059927 2024-02-25 03:07:50.253 2024-02-25 03:07:50.253 18900 TIP 437723 20614 6059932 2024-02-25 03:07:52.014 2024-02-25 03:07:52.014 2100 FEE 437611 19524 6059933 2024-02-25 03:07:52.014 2024-02-25 03:07:52.014 18900 TIP 437611 5757 6059960 2024-02-25 03:10:38.664 2024-02-25 03:10:38.664 10000 FEE 437912 17046 6059987 2024-02-25 03:20:46.131 2024-02-25 03:20:46.131 1000 FEE 437914 18378 6059990 2024-02-25 03:22:20.687 2024-02-25 03:22:20.687 1000 FEE 437915 20450 6059991 2024-02-25 03:22:38.508 2024-02-25 03:22:38.508 1000 FEE 437916 11165 6060000 2024-02-25 03:26:02.241 2024-02-25 03:26:02.241 1000 FEE 437917 974 6060025 2024-02-25 03:30:13.813 2024-02-25 03:30:13.813 1000 FEE 437921 20376 6060044 2024-02-25 03:34:03.946 2024-02-25 03:34:03.946 2100 FEE 437871 7395 6060045 2024-02-25 03:34:03.946 2024-02-25 03:34:03.946 18900 TIP 437871 5752 6060050 2024-02-25 03:36:15.687 2024-02-25 03:36:15.687 1000 FEE 437817 1577 6060051 2024-02-25 03:36:15.687 2024-02-25 03:36:15.687 9000 TIP 437817 20717 6060089 2024-02-25 03:50:53.905 2024-02-25 03:50:53.905 400 FEE 437615 16998 6060090 2024-02-25 03:50:53.905 2024-02-25 03:50:53.905 3600 TIP 437615 1425 6060118 2024-02-25 03:57:05.077 2024-02-25 03:57:05.077 1000 FEE 437911 9333 6060119 2024-02-25 03:57:05.077 2024-02-25 03:57:05.077 9000 TIP 437911 21233 6060132 2024-02-25 03:58:32.292 2024-02-25 03:58:32.292 0 FEE 437930 20577 6060143 2024-02-25 03:59:38.517 2024-02-25 03:59:38.517 1000 FEE 437934 14909 6060215 2024-02-25 04:16:42.966 2024-02-25 04:16:42.966 500 FEE 437181 6268 6060216 2024-02-25 04:16:42.966 2024-02-25 04:16:42.966 4500 TIP 437181 20826 6060250 2024-02-25 04:19:27.107 2024-02-25 04:19:27.107 500 FEE 437420 12976 6060251 2024-02-25 04:19:27.107 2024-02-25 04:19:27.107 4500 TIP 437420 18660 6060252 2024-02-25 04:19:40.955 2024-02-25 04:19:40.955 500 FEE 437535 4126 6060253 2024-02-25 04:19:40.955 2024-02-25 04:19:40.955 4500 TIP 437535 2543 6060273 2024-02-25 04:26:43.435 2024-02-25 04:26:43.435 1300 FEE 437546 19502 6060274 2024-02-25 04:26:43.435 2024-02-25 04:26:43.435 11700 TIP 437546 20849 6060300 2024-02-25 04:35:06.996 2024-02-25 04:35:06.996 1000 FEE 437946 3683 6060322 2024-02-25 04:36:48.557 2024-02-25 04:36:48.557 1000 FEE 437949 7903 6060395 2024-02-25 05:14:49.17 2024-02-25 05:14:49.17 6900 FEE 437895 20816 6060396 2024-02-25 05:14:49.17 2024-02-25 05:14:49.17 62100 TIP 437895 12566 6060397 2024-02-25 05:14:52.825 2024-02-25 05:14:52.825 6900 FEE 437932 20276 6060398 2024-02-25 05:14:52.825 2024-02-25 05:14:52.825 62100 TIP 437932 20646 6060406 2024-02-25 05:18:14.95 2024-02-25 05:18:14.95 1000 FEE 437762 15521 6060407 2024-02-25 05:18:14.95 2024-02-25 05:18:14.95 9000 TIP 437762 1803 6060435 2024-02-25 05:23:31.368 2024-02-25 05:23:31.368 100 FEE 437953 20326 6060436 2024-02-25 05:23:31.368 2024-02-25 05:23:31.368 900 TIP 437953 5527 6060445 2024-02-25 05:24:19.86 2024-02-25 05:24:19.86 2100 FEE 437953 17291 6060446 2024-02-25 05:24:19.86 2024-02-25 05:24:19.86 18900 TIP 437953 17953 6060482 2024-02-25 05:52:09.293 2024-02-25 05:52:09.293 100000 FEE 437961 10469 6060485 2024-02-25 05:54:35.747 2024-02-25 05:54:35.747 1000 FEE 437962 11153 6060527 2024-02-25 06:06:27.504 2024-02-25 06:06:27.504 800 FEE 437911 787 6060528 2024-02-25 06:06:27.504 2024-02-25 06:06:27.504 7200 TIP 437911 5069 6060529 2024-02-25 06:06:27.661 2024-02-25 06:06:27.661 800 FEE 437911 19905 6060530 2024-02-25 06:06:27.661 2024-02-25 06:06:27.661 7200 TIP 437911 21349 6060572 2024-02-25 06:26:32.687 2024-02-25 06:26:32.687 7100 FEE 437967 21585 6060573 2024-02-25 06:26:32.687 2024-02-25 06:26:32.687 63900 TIP 437967 11450 6060580 2024-02-25 06:28:42.143 2024-02-25 06:28:42.143 800 FEE 437893 21247 6060581 2024-02-25 06:28:42.143 2024-02-25 06:28:42.143 7200 TIP 437893 10818 6060611 2024-02-25 06:33:00.583 2024-02-25 06:33:00.583 800 FEE 437276 19843 6060612 2024-02-25 06:33:00.583 2024-02-25 06:33:00.583 7200 TIP 437276 17221 6060617 2024-02-25 06:33:03.884 2024-02-25 06:33:03.884 7700 FEE 437631 8245 6060618 2024-02-25 06:33:03.884 2024-02-25 06:33:03.884 69300 TIP 437631 19021 6059859 2024-02-25 03:00:38.55 2024-02-25 03:00:38.55 18900 TIP 437276 1273 6059862 2024-02-25 03:00:40.362 2024-02-25 03:00:40.362 2100 FEE 437687 20129 6059863 2024-02-25 03:00:40.362 2024-02-25 03:00:40.362 18900 TIP 437687 17953 6059906 2024-02-25 03:07:47.062 2024-02-25 03:07:47.062 2100 FEE 437720 18472 6059907 2024-02-25 03:07:47.062 2024-02-25 03:07:47.062 18900 TIP 437720 19848 6059910 2024-02-25 03:07:47.475 2024-02-25 03:07:47.475 2100 FEE 437720 18923 6059911 2024-02-25 03:07:47.475 2024-02-25 03:07:47.475 18900 TIP 437720 21164 6059916 2024-02-25 03:07:48.105 2024-02-25 03:07:48.105 2100 FEE 437720 21603 6059917 2024-02-25 03:07:48.105 2024-02-25 03:07:48.105 18900 TIP 437720 14489 6059920 2024-02-25 03:07:48.681 2024-02-25 03:07:48.681 2100 FEE 437720 19821 6059921 2024-02-25 03:07:48.681 2024-02-25 03:07:48.681 18900 TIP 437720 21104 6059928 2024-02-25 03:07:51.674 2024-02-25 03:07:51.674 2100 FEE 437611 13759 6059929 2024-02-25 03:07:51.674 2024-02-25 03:07:51.674 18900 TIP 437611 18101 6059946 2024-02-25 03:07:53.323 2024-02-25 03:07:53.323 2100 FEE 437611 20337 6059947 2024-02-25 03:07:53.323 2024-02-25 03:07:53.323 18900 TIP 437611 634 6059953 2024-02-25 03:08:03.916 2024-02-25 03:08:03.916 2100 FEE 437269 18169 6059954 2024-02-25 03:08:03.916 2024-02-25 03:08:03.916 18900 TIP 437269 15588 6059982 2024-02-25 03:18:13.562 2024-02-25 03:18:13.562 1000 FEE 437913 8380 6059985 2024-02-25 03:20:41.091 2024-02-25 03:20:41.091 2100 FEE 437654 18448 6059986 2024-02-25 03:20:41.091 2024-02-25 03:20:41.091 18900 TIP 437654 21627 6059993 2024-02-25 03:23:04.547 2024-02-25 03:23:04.547 0 FEE 139939 18452 6060005 2024-02-25 03:26:27.277 2024-02-25 03:26:27.277 2000 FEE 437891 12368 6060006 2024-02-25 03:26:27.277 2024-02-25 03:26:27.277 18000 TIP 437891 626 6060016 2024-02-25 03:29:33.487 2024-02-25 03:29:33.487 1000 FEE 437442 5776 6060017 2024-02-25 03:29:33.487 2024-02-25 03:29:33.487 9000 TIP 437442 18909 6060023 2024-02-25 03:30:04.268 2024-02-25 03:30:04.268 200 FEE 437912 20613 6060024 2024-02-25 03:30:04.268 2024-02-25 03:30:04.268 1800 TIP 437912 19007 6060029 2024-02-25 03:31:26.675 2024-02-25 03:31:26.675 2100 FEE 437817 5776 6060030 2024-02-25 03:31:26.675 2024-02-25 03:31:26.675 18900 TIP 437817 18507 6060041 2024-02-25 03:33:27.284 2024-02-25 03:33:27.284 2100 FEE 437856 20840 6060042 2024-02-25 03:33:27.284 2024-02-25 03:33:27.284 18900 TIP 437856 1549 6060052 2024-02-25 03:36:57.105 2024-02-25 03:36:57.105 0 FEE 437922 6003 6060063 2024-02-25 03:40:22.831 2024-02-25 03:40:22.831 10000 FEE 437923 19378 6060064 2024-02-25 03:40:22.831 2024-02-25 03:40:22.831 90000 TIP 437923 679 6060091 2024-02-25 03:50:54.16 2024-02-25 03:50:54.16 200 FEE 437615 960 6060092 2024-02-25 03:50:54.16 2024-02-25 03:50:54.16 1800 TIP 437615 12808 6060097 2024-02-25 03:50:54.704 2024-02-25 03:50:54.704 200 FEE 437615 2543 6060098 2024-02-25 03:50:54.704 2024-02-25 03:50:54.704 1800 TIP 437615 17727 6060110 2024-02-25 03:54:24.722 2024-02-25 03:54:24.722 1000 FEE 437929 16004 6060116 2024-02-25 03:56:40.916 2024-02-25 03:56:40.916 1000 FEE 437931 1224 6060120 2024-02-25 03:57:20.582 2024-02-25 03:57:20.582 1000 FEE 437875 627 6060121 2024-02-25 03:57:20.582 2024-02-25 03:57:20.582 9000 TIP 437875 4059 6060141 2024-02-25 03:59:37.649 2024-02-25 03:59:37.649 3000 FEE 437826 1605 6060142 2024-02-25 03:59:37.649 2024-02-25 03:59:37.649 27000 TIP 437826 9364 6060145 2024-02-25 04:00:05.048 2024-02-25 04:00:05.048 1000 FEE 437935 2734 6060154 2024-02-25 04:02:10.347 2024-02-25 04:02:10.347 1000 FEE 437936 1817 6060213 2024-02-25 04:16:42.849 2024-02-25 04:16:42.849 500 FEE 437454 17106 6060214 2024-02-25 04:16:42.849 2024-02-25 04:16:42.849 4500 TIP 437454 19506 6060228 2024-02-25 04:17:46.911 2024-02-25 04:17:46.911 100 FEE 437927 19156 6060229 2024-02-25 04:17:46.911 2024-02-25 04:17:46.911 900 TIP 437927 18817 6060237 2024-02-25 04:18:08.013 2024-02-25 04:18:08.013 500 FEE 437512 18664 6060238 2024-02-25 04:18:08.013 2024-02-25 04:18:08.013 4500 TIP 437512 19961 6060291 2024-02-25 04:33:19.749 2024-02-25 04:33:19.749 3200 FEE 437859 1836 6060292 2024-02-25 04:33:19.749 2024-02-25 04:33:19.749 28800 TIP 437859 12976 6060303 2024-02-25 04:35:38.769 2024-02-25 04:35:38.769 900 FEE 437900 20687 6060304 2024-02-25 04:35:38.769 2024-02-25 04:35:38.769 8100 TIP 437900 9552 6060312 2024-02-25 04:35:51.909 2024-02-25 04:35:51.909 1000 FEE 437946 7891 6060313 2024-02-25 04:35:51.909 2024-02-25 04:35:51.909 9000 TIP 437946 18941 6060321 2024-02-25 04:36:44.068 2024-02-25 04:36:44.068 1000 FEE 437948 13097 6060330 2024-02-25 04:42:16.614 2024-02-25 04:42:16.614 2100 FEE 437944 5806 6060331 2024-02-25 04:42:16.614 2024-02-25 04:42:16.614 18900 TIP 437944 876 6060336 2024-02-25 04:44:35.173 2024-02-25 04:44:35.173 1000 FEE 437951 20744 6060357 2024-02-25 04:56:02.572 2024-02-25 04:56:02.572 2500 FEE 437863 18784 6060358 2024-02-25 04:56:02.572 2024-02-25 04:56:02.572 22500 TIP 437863 9450 6060420 2024-02-25 05:18:20.026 2024-02-25 05:18:20.026 100 FEE 437769 20861 6060421 2024-02-25 05:18:20.026 2024-02-25 05:18:20.026 900 TIP 437769 19174 6060470 2024-02-25 05:41:04.915 2024-02-25 05:41:04.915 1000 FEE 437960 11898 6060512 2024-02-25 06:03:46.816 2024-02-25 06:03:46.816 1000 FEE 437964 627 6060523 2024-02-25 06:06:11.909 2024-02-25 06:06:11.909 800 FEE 437945 20205 6060524 2024-02-25 06:06:11.909 2024-02-25 06:06:11.909 7200 TIP 437945 21577 6060531 2024-02-25 06:06:59.091 2024-02-25 06:06:59.091 100000 FEE 437966 21503 6060602 2024-02-25 06:32:33.834 2024-02-25 06:32:33.834 7700 FEE 437631 19094 6060603 2024-02-25 06:32:33.834 2024-02-25 06:32:33.834 69300 TIP 437631 19044 6060636 2024-02-25 06:37:29.066 2024-02-25 06:37:29.066 100 FEE 437946 9333 6060637 2024-02-25 06:37:29.066 2024-02-25 06:37:29.066 900 TIP 437946 15200 6060644 2024-02-25 06:37:41.509 2024-02-25 06:37:41.509 100 FEE 437955 3360 6060645 2024-02-25 06:37:41.509 2024-02-25 06:37:41.509 900 TIP 437955 18051 6060699 2024-02-25 06:45:27.488 2024-02-25 06:45:27.488 800 FEE 437722 18989 6060700 2024-02-25 06:45:27.488 2024-02-25 06:45:27.488 7200 TIP 437722 20291 6060701 2024-02-25 06:45:34.138 2024-02-25 06:45:34.138 800 FEE 437675 13361 6060702 2024-02-25 06:45:34.138 2024-02-25 06:45:34.138 7200 TIP 437675 20106 6060709 2024-02-25 06:48:44.717 2024-02-25 06:48:44.717 6900 FEE 437872 985 6060710 2024-02-25 06:48:44.717 2024-02-25 06:48:44.717 62100 TIP 437872 738 6060729 2024-02-25 06:54:24.732 2024-02-25 06:54:24.732 1000 FEE 437982 18313 6060757 2024-02-25 07:01:52.658 2024-02-25 07:01:52.658 1000 FEE 437972 4314 6060758 2024-02-25 07:01:52.658 2024-02-25 07:01:52.658 9000 TIP 437972 6360 6060765 2024-02-25 07:01:54.035 2024-02-25 07:01:54.035 1000 FEE 437972 627 6060766 2024-02-25 07:01:54.035 2024-02-25 07:01:54.035 9000 TIP 437972 13927 6060783 2024-02-25 07:04:49.459 2024-02-25 07:04:49.459 6900 FEE 437828 836 6060784 2024-02-25 07:04:49.459 2024-02-25 07:04:49.459 62100 TIP 437828 2529 6060798 2024-02-25 07:09:45.367 2024-02-25 07:09:45.367 1000 FEE 436750 998 6060799 2024-02-25 07:09:45.367 2024-02-25 07:09:45.367 9000 TIP 436750 20452 6060823 2024-02-25 07:19:58.301 2024-02-25 07:19:58.301 10000 FEE 435944 2347 6060824 2024-02-25 07:19:58.301 2024-02-25 07:19:58.301 90000 TIP 435944 16660 6060887 2024-02-25 07:56:04.08 2024-02-25 07:56:04.08 2100 FEE 437995 7553 6060888 2024-02-25 07:56:04.08 2024-02-25 07:56:04.08 18900 TIP 437995 16126 6060899 2024-02-25 08:00:05.042 2024-02-25 08:00:05.042 1000 FEE 438003 18476 6060907 2024-02-25 08:05:37.279 2024-02-25 08:05:37.279 1000 FEE 437516 20623 6060908 2024-02-25 08:05:37.279 2024-02-25 08:05:37.279 9000 TIP 437516 18470 6060922 2024-02-25 08:08:17.788 2024-02-25 08:08:17.788 1000 FEE 438006 18170 6060923 2024-02-25 08:08:17.788 2024-02-25 08:08:17.788 9000 TIP 438006 21019 6060926 2024-02-25 08:08:38.582 2024-02-25 08:08:38.582 1000 FEE 437936 21061 6060927 2024-02-25 08:08:38.582 2024-02-25 08:08:38.582 9000 TIP 437936 2437 6060932 2024-02-25 08:08:50.82 2024-02-25 08:08:50.82 1000 FEE 436611 18673 6060933 2024-02-25 08:08:50.82 2024-02-25 08:08:50.82 9000 TIP 436611 1585 6059879 2024-02-25 03:03:28.255 2024-02-25 03:03:28.255 1000 FEE 437904 10519 6059881 2024-02-25 03:03:49.46 2024-02-25 03:03:49.46 1000 FEE 437906 7746 6059886 2024-02-25 03:05:26.309 2024-02-25 03:05:26.309 10000 FEE 437909 19199 6059900 2024-02-25 03:07:11.418 2024-02-25 03:07:11.418 1000 FEE 194132 6777 6059901 2024-02-25 03:07:11.418 2024-02-25 03:07:11.418 9000 TIP 194132 21427 6059902 2024-02-25 03:07:30.345 2024-02-25 03:07:30.345 10000 FEE 194782 16966 6059903 2024-02-25 03:07:30.345 2024-02-25 03:07:30.345 90000 TIP 194782 9329 6059904 2024-02-25 03:07:46.818 2024-02-25 03:07:46.818 2100 FEE 437720 2347 6059905 2024-02-25 03:07:46.818 2024-02-25 03:07:46.818 18900 TIP 437720 8472 6059908 2024-02-25 03:07:47.265 2024-02-25 03:07:47.265 2100 FEE 437720 20376 6059909 2024-02-25 03:07:47.265 2024-02-25 03:07:47.265 18900 TIP 437720 17722 6059912 2024-02-25 03:07:47.679 2024-02-25 03:07:47.679 2100 FEE 437720 18641 6059913 2024-02-25 03:07:47.679 2024-02-25 03:07:47.679 18900 TIP 437720 9362 6059950 2024-02-25 03:07:59.152 2024-02-25 03:07:59.152 2100 FEE 437817 19235 6059951 2024-02-25 03:07:59.152 2024-02-25 03:07:59.152 18900 TIP 437817 17011 6059958 2024-02-25 03:09:32.022 2024-02-25 03:09:32.022 1000 FEE 437911 14267 6059975 2024-02-25 03:14:23.041 2024-02-25 03:14:23.041 2100 FEE 437863 16154 6059976 2024-02-25 03:14:23.041 2024-02-25 03:14:23.041 18900 TIP 437863 6310 6059996 2024-02-25 03:24:01.719 2024-02-25 03:24:01.719 2100 FEE 437831 2711 6059997 2024-02-25 03:24:01.719 2024-02-25 03:24:01.719 18900 TIP 437831 1092 6060002 2024-02-25 03:26:06.094 2024-02-25 03:26:06.094 4200 FEE 437502 19142 6060003 2024-02-25 03:26:06.094 2024-02-25 03:26:06.094 37800 TIP 437502 9982 6060018 2024-02-25 03:29:55.418 2024-02-25 03:29:55.418 10000 FEE 413007 20120 6060019 2024-02-25 03:29:55.418 2024-02-25 03:29:55.418 90000 TIP 413007 8448 6060034 2024-02-25 03:32:46.586 2024-02-25 03:32:46.586 1000 FEE 437427 896 6060035 2024-02-25 03:32:46.586 2024-02-25 03:32:46.586 9000 TIP 437427 2213 6060047 2024-02-25 03:34:44.885 2024-02-25 03:34:44.885 100000 FEE 437923 21480 6060071 2024-02-25 03:42:56.398 2024-02-25 03:42:56.398 4000 FEE 437723 21003 6060072 2024-02-25 03:42:56.398 2024-02-25 03:42:56.398 36000 TIP 437723 656 6060101 2024-02-25 03:50:56.017 2024-02-25 03:50:56.017 200 FEE 437615 14905 6060102 2024-02-25 03:50:56.017 2024-02-25 03:50:56.017 1800 TIP 437615 4079 6060122 2024-02-25 03:57:26.381 2024-02-25 03:57:26.381 3000 FEE 437531 11498 6060123 2024-02-25 03:57:26.381 2024-02-25 03:57:26.381 27000 TIP 437531 2204 6060130 2024-02-25 03:58:22.796 2024-02-25 03:58:22.796 1000 FEE 437777 20599 6060131 2024-02-25 03:58:22.796 2024-02-25 03:58:22.796 9000 TIP 437777 738 6060167 2024-02-25 04:06:37.9 2024-02-25 04:06:37.9 4000 FEE 437723 12422 6060168 2024-02-25 04:06:37.9 2024-02-25 04:06:37.9 36000 TIP 437723 20433 6060171 2024-02-25 04:06:39.76 2024-02-25 04:06:39.76 2000 FEE 437817 9421 6060172 2024-02-25 04:06:39.76 2024-02-25 04:06:39.76 18000 TIP 437817 16097 6060173 2024-02-25 04:06:39.897 2024-02-25 04:06:39.897 2000 FEE 437817 21455 6060174 2024-02-25 04:06:39.897 2024-02-25 04:06:39.897 18000 TIP 437817 8284 6060199 2024-02-25 04:14:15.262 2024-02-25 04:14:15.262 33000 DONT_LIKE_THIS 437931 17690 6060201 2024-02-25 04:15:47.241 2024-02-25 04:15:47.241 1000 FEE 437939 21563 6060205 2024-02-25 04:16:36.139 2024-02-25 04:16:36.139 500 FEE 437233 21201 6060206 2024-02-25 04:16:36.139 2024-02-25 04:16:36.139 4500 TIP 437233 20963 6060207 2024-02-25 04:16:39.176 2024-02-25 04:16:39.176 500 FEE 437218 775 6060208 2024-02-25 04:16:39.176 2024-02-25 04:16:39.176 4500 TIP 437218 21145 6060230 2024-02-25 04:17:51.652 2024-02-25 04:17:51.652 100 FEE 437923 6688 6060231 2024-02-25 04:17:51.652 2024-02-25 04:17:51.652 900 TIP 437923 7960 6060232 2024-02-25 04:17:58.877 2024-02-25 04:17:58.877 100 FEE 437909 21239 6060233 2024-02-25 04:17:58.877 2024-02-25 04:17:58.877 900 TIP 437909 18877 6060257 2024-02-25 04:20:20 2024-02-25 04:20:20 500 FEE 437752 19286 6060258 2024-02-25 04:20:20 2024-02-25 04:20:20 4500 TIP 437752 12268 6060261 2024-02-25 04:21:01.825 2024-02-25 04:21:01.825 500 FEE 437737 19633 6060262 2024-02-25 04:21:01.825 2024-02-25 04:21:01.825 4500 TIP 437737 20436 6060267 2024-02-25 04:23:13.427 2024-02-25 04:23:13.427 1000 FEE 437941 8448 6060268 2024-02-25 04:23:58.759 2024-02-25 04:23:58.759 10000 FEE 383294 763 6060269 2024-02-25 04:23:58.759 2024-02-25 04:23:58.759 90000 TIP 383294 9242 6060285 2024-02-25 04:30:44.246 2024-02-25 04:30:44.246 3300 FEE 437367 12097 6060286 2024-02-25 04:30:44.246 2024-02-25 04:30:44.246 29700 TIP 437367 11873 6060301 2024-02-25 04:35:38.542 2024-02-25 04:35:38.542 100 FEE 437900 6741 6060302 2024-02-25 04:35:38.542 2024-02-25 04:35:38.542 900 TIP 437900 14376 6060309 2024-02-25 04:35:45.705 2024-02-25 04:35:45.705 1000 FEE 437947 5069 6060314 2024-02-25 04:35:52.332 2024-02-25 04:35:52.332 1000 FEE 437946 1717 6060315 2024-02-25 04:35:52.332 2024-02-25 04:35:52.332 9000 TIP 437946 2609 6060325 2024-02-25 04:38:42.526 2024-02-25 04:38:42.526 1000 FEE 437950 20257 6060353 2024-02-25 04:52:54.458 2024-02-25 04:52:54.458 1000 FEE 437954 7913 6060365 2024-02-25 05:00:05.253 2024-02-25 05:00:05.253 1000 FEE 437956 1401 6059941 2024-02-25 03:07:52.745 2024-02-25 03:07:52.745 18900 TIP 437611 13575 6059942 2024-02-25 03:07:52.944 2024-02-25 03:07:52.944 2100 FEE 437611 956 6059943 2024-02-25 03:07:52.944 2024-02-25 03:07:52.944 18900 TIP 437611 15474 6059948 2024-02-25 03:07:53.595 2024-02-25 03:07:53.595 2100 FEE 437611 6335 6059949 2024-02-25 03:07:53.595 2024-02-25 03:07:53.595 18900 TIP 437611 4128 6059970 2024-02-25 03:13:41.872 2024-02-25 03:13:41.872 2100 FEE 437893 12769 6059971 2024-02-25 03:13:41.872 2024-02-25 03:13:41.872 18900 TIP 437893 21437 6059979 2024-02-25 03:16:51.52 2024-02-25 03:16:51.52 0 FEE 324726 14045 6060013 2024-02-25 03:28:22.805 2024-02-25 03:28:22.805 500 FEE 437887 19640 6060014 2024-02-25 03:28:22.805 2024-02-25 03:28:22.805 4500 TIP 437887 20157 6060026 2024-02-25 03:30:52.05 2024-02-25 03:30:52.05 2100 FEE 437269 3440 6060027 2024-02-25 03:30:52.05 2024-02-25 03:30:52.05 18900 TIP 437269 18989 6060054 2024-02-25 03:37:53.542 2024-02-25 03:37:53.542 2100 FEE 436860 8870 6060055 2024-02-25 03:37:53.542 2024-02-25 03:37:53.542 18900 TIP 436860 7746 6060105 2024-02-25 03:51:20.235 2024-02-25 03:51:20.235 10000 FEE 437927 16341 6060125 2024-02-25 03:58:12.206 2024-02-25 03:58:12.206 1000 FEE 437687 19346 6060126 2024-02-25 03:58:12.206 2024-02-25 03:58:12.206 9000 TIP 437687 18828 6060134 2024-02-25 03:58:53.156 2024-02-25 03:58:53.156 10000 FEE 437929 844 6060135 2024-02-25 03:58:53.156 2024-02-25 03:58:53.156 90000 TIP 437929 6361 6060139 2024-02-25 03:59:12.277 2024-02-25 03:59:12.277 3000 FEE 437761 2039 6060140 2024-02-25 03:59:12.277 2024-02-25 03:59:12.277 27000 TIP 437761 7659 6060156 2024-02-25 04:03:07.645 2024-02-25 04:03:07.645 1000 FEE 437937 3411 6060177 2024-02-25 04:06:51.74 2024-02-25 04:06:51.74 2000 FEE 437775 11956 6060178 2024-02-25 04:06:51.74 2024-02-25 04:06:51.74 18000 TIP 437775 5809 6060184 2024-02-25 04:07:09.61 2024-02-25 04:07:09.61 2000 FEE 433319 8074 6060185 2024-02-25 04:07:09.61 2024-02-25 04:07:09.61 18000 TIP 433319 16665 6060186 2024-02-25 04:07:10.808 2024-02-25 04:07:10.808 2000 FEE 433472 21296 6060187 2024-02-25 04:07:10.808 2024-02-25 04:07:10.808 18000 TIP 433472 10311 6060221 2024-02-25 04:16:45.413 2024-02-25 04:16:45.413 500 FEE 437403 8713 6060222 2024-02-25 04:16:45.413 2024-02-25 04:16:45.413 4500 TIP 437403 10352 6060223 2024-02-25 04:16:46.476 2024-02-25 04:16:46.476 500 FEE 437720 1632 6060224 2024-02-25 04:16:46.476 2024-02-25 04:16:46.476 4500 TIP 437720 9796 6060234 2024-02-25 04:18:04.748 2024-02-25 04:18:04.748 100 FEE 437897 18543 6060235 2024-02-25 04:18:04.748 2024-02-25 04:18:04.748 900 TIP 437897 18154 6060275 2024-02-25 04:26:52.163 2024-02-25 04:26:52.163 1000 FEE 437942 633 6060295 2024-02-25 04:34:37.326 2024-02-25 04:34:37.326 1000 FEE 437781 21466 6060296 2024-02-25 04:34:37.326 2024-02-25 04:34:37.326 9000 TIP 437781 17046 6060318 2024-02-25 04:35:53.796 2024-02-25 04:35:53.796 28800 FEE 436935 1389 6060319 2024-02-25 04:35:53.796 2024-02-25 04:35:53.796 259200 TIP 436935 21389 6060338 2024-02-25 04:46:02.521 2024-02-25 04:46:02.521 2100 FEE 437846 5565 6060339 2024-02-25 04:46:02.521 2024-02-25 04:46:02.521 18900 TIP 437846 19890 6060346 2024-02-25 04:50:20.136 2024-02-25 04:50:20.136 1000 FEE 437611 19640 6060347 2024-02-25 04:50:20.136 2024-02-25 04:50:20.136 9000 TIP 437611 12930 6060387 2024-02-25 05:12:34.112 2024-02-25 05:12:34.112 2100 FEE 437893 17517 6060388 2024-02-25 05:12:34.112 2024-02-25 05:12:34.112 18900 TIP 437893 730 6060410 2024-02-25 05:18:15.341 2024-02-25 05:18:15.341 1000 FEE 437762 787 6060411 2024-02-25 05:18:15.341 2024-02-25 05:18:15.341 9000 TIP 437762 12268 6060430 2024-02-25 05:22:41.944 2024-02-25 05:22:41.944 100 FEE 437957 2832 6060431 2024-02-25 05:22:41.944 2024-02-25 05:22:41.944 900 TIP 437957 4048 6060492 2024-02-25 05:54:39.483 2024-02-25 05:54:39.483 800 FEE 437775 20745 6060493 2024-02-25 05:54:39.483 2024-02-25 05:54:39.483 7200 TIP 437775 13574 6060500 2024-02-25 05:54:46.609 2024-02-25 05:54:46.609 800 FEE 437775 20337 6060501 2024-02-25 05:54:46.609 2024-02-25 05:54:46.609 7200 TIP 437775 18919 6060517 2024-02-25 06:04:48.403 2024-02-25 06:04:48.403 1100 FEE 437893 19281 6059983 2024-02-25 03:19:03.309 2024-02-25 03:19:03.309 1000 STREAM 141924 17411 6060012 2024-02-25 03:28:03.798 2024-02-25 03:28:03.798 1000 STREAM 141924 1352 6060015 2024-02-25 03:29:03.809 2024-02-25 03:29:03.809 1000 STREAM 141924 17184 6060028 2024-02-25 03:31:03.814 2024-02-25 03:31:03.814 1000 STREAM 141924 12808 6121709 2024-03-01 04:42:04.428 2024-03-01 04:42:04.428 1000 STREAM 141924 19465 6059988 2024-02-25 03:21:03.895 2024-02-25 03:21:03.895 1000 STREAM 141924 624 6059992 2024-02-25 03:23:03.965 2024-02-25 03:23:03.965 1000 STREAM 141924 14503 6121712 2024-03-01 04:43:04.441 2024-03-01 04:43:04.441 1000 STREAM 141924 11298 6121722 2024-03-01 04:46:04.446 2024-03-01 04:46:04.446 1000 STREAM 141924 1495 6121725 2024-03-01 04:48:04.473 2024-03-01 04:48:04.473 1000 STREAM 141924 10862 6121975 2024-03-01 05:46:02.993 2024-03-01 05:46:02.993 1000 STREAM 141924 3304 6121988 2024-03-01 05:51:03.056 2024-03-01 05:51:03.056 1000 STREAM 141924 20222 6121993 2024-03-01 05:54:03.09 2024-03-01 05:54:03.09 1000 STREAM 141924 16350 6121994 2024-03-01 05:55:03.117 2024-03-01 05:55:03.117 1000 STREAM 141924 17166 6122005 2024-03-01 06:00:03.202 2024-03-01 06:00:03.202 1000 STREAM 141924 19158 6122006 2024-03-01 06:01:03.484 2024-03-01 06:01:03.484 1000 STREAM 141924 18423 6122063 2024-03-01 06:05:03.321 2024-03-01 06:05:03.321 1000 STREAM 141924 9242 6122064 2024-03-01 06:06:03.321 2024-03-01 06:06:03.321 1000 STREAM 141924 12946 6122086 2024-03-01 06:09:03.343 2024-03-01 06:09:03.343 1000 STREAM 141924 16753 6122090 2024-03-01 06:11:03.347 2024-03-01 06:11:03.347 1000 STREAM 141924 20555 6122098 2024-03-01 06:13:03.357 2024-03-01 06:13:03.357 1000 STREAM 141924 16456 6122108 2024-03-01 06:15:03.379 2024-03-01 06:15:03.379 1000 STREAM 141924 1044 6122110 2024-03-01 06:16:03.367 2024-03-01 06:16:03.367 1000 STREAM 141924 18274 6122129 2024-03-01 06:21:03.384 2024-03-01 06:21:03.384 1000 STREAM 141924 1803 6060043 2024-02-25 03:34:02.718 2024-02-25 03:34:02.718 1000 STREAM 141924 13782 6060247 2024-02-25 04:19:05.006 2024-02-25 04:19:05.006 1000 STREAM 141924 1733 6121718 2024-03-01 04:44:04.425 2024-03-01 04:44:04.425 1000 STREAM 141924 803 6121723 2024-03-01 04:47:04.44 2024-03-01 04:47:04.44 1000 STREAM 141924 19153 6060065 2024-02-25 03:41:04.276 2024-02-25 03:41:04.276 1000 STREAM 141924 5978 6060193 2024-02-25 04:11:02.943 2024-02-25 04:11:02.943 1000 STREAM 141924 900 6060236 2024-02-25 04:18:05.049 2024-02-25 04:18:05.049 1000 STREAM 141924 15161 6121792 2024-03-01 04:57:04.492 2024-03-01 04:57:04.492 1000 STREAM 141924 9341 6121793 2024-03-01 04:58:04.48 2024-03-01 04:58:04.48 1000 STREAM 141924 13781 6060084 2024-02-25 03:48:03.382 2024-02-25 03:48:03.382 1000 STREAM 141924 16354 6060107 2024-02-25 03:52:03.571 2024-02-25 03:52:03.571 1000 STREAM 141924 2748 6060108 2024-02-25 03:53:03.577 2024-02-25 03:53:03.577 1000 STREAM 141924 11996 6060109 2024-02-25 03:54:03.589 2024-02-25 03:54:03.589 1000 STREAM 141924 18209 6060144 2024-02-25 04:00:03.774 2024-02-25 04:00:03.774 1000 STREAM 141924 10016 6060150 2024-02-25 04:01:04.116 2024-02-25 04:01:04.116 1000 STREAM 141924 19527 6060158 2024-02-25 04:05:04.703 2024-02-25 04:05:04.703 1000 STREAM 141924 21413 6060191 2024-02-25 04:09:04.121 2024-02-25 04:09:04.121 1000 STREAM 141924 642 6060256 2024-02-25 04:20:03.916 2024-02-25 04:20:03.916 1000 STREAM 141924 760 6060271 2024-02-25 04:25:04.311 2024-02-25 04:25:04.311 1000 STREAM 141924 21371 6060277 2024-02-25 04:28:03.732 2024-02-25 04:28:03.732 1000 STREAM 141924 10668 6060287 2024-02-25 04:31:04.368 2024-02-25 04:31:04.368 1000 STREAM 141924 19633 6060290 2024-02-25 04:33:04.371 2024-02-25 04:33:04.371 1000 STREAM 141924 5809 6060294 2024-02-25 04:34:04.376 2024-02-25 04:34:04.376 1000 STREAM 141924 12265 6060327 2024-02-25 04:40:04.466 2024-02-25 04:40:04.466 1000 STREAM 141924 4345 6060328 2024-02-25 04:41:04.467 2024-02-25 04:41:04.467 1000 STREAM 141924 20106 6060329 2024-02-25 04:42:02.472 2024-02-25 04:42:02.472 1000 STREAM 141924 6777 6060334 2024-02-25 04:43:02.489 2024-02-25 04:43:02.489 1000 STREAM 141924 19601 6060340 2024-02-25 04:46:04.279 2024-02-25 04:46:04.279 1000 STREAM 141924 993 6060360 2024-02-25 04:57:03.92 2024-02-25 04:57:03.92 1000 STREAM 141924 4175 6060372 2024-02-25 05:03:03.986 2024-02-25 05:03:03.986 1000 STREAM 141924 10398 6121798 2024-03-01 04:59:04.483 2024-03-01 04:59:04.483 1000 STREAM 141924 15409 6121811 2024-03-01 05:01:04.498 2024-03-01 05:01:04.498 1000 STREAM 141924 16176 6121852 2024-03-01 05:08:04.52 2024-03-01 05:08:04.52 1000 STREAM 141924 13553 6121936 2024-03-01 05:34:04.585 2024-03-01 05:34:04.585 1000 STREAM 141924 2525 6060111 2024-02-25 03:55:02.733 2024-02-25 03:55:02.733 1000 STREAM 141924 18842 6121825 2024-03-01 05:05:03.643 2024-03-01 05:05:03.643 1000 STREAM 141924 15147 6121842 2024-03-01 05:06:03.644 2024-03-01 05:06:03.644 1000 STREAM 141924 4378 6121853 2024-03-01 05:09:03.67 2024-03-01 05:09:03.67 1000 STREAM 141924 739 6121854 2024-03-01 05:10:03.725 2024-03-01 05:10:03.725 1000 STREAM 141924 6164 6121861 2024-03-01 05:11:03.718 2024-03-01 05:11:03.718 1000 STREAM 141924 6360 6121867 2024-03-01 05:14:03.745 2024-03-01 05:14:03.745 1000 STREAM 141924 11590 6121868 2024-03-01 05:15:03.747 2024-03-01 05:15:03.747 1000 STREAM 141924 641 6121870 2024-03-01 05:16:03.75 2024-03-01 05:16:03.75 1000 STREAM 141924 13204 6121873 2024-03-01 05:17:03.771 2024-03-01 05:17:03.771 1000 STREAM 141924 5758 6121877 2024-03-01 05:18:03.773 2024-03-01 05:18:03.773 1000 STREAM 141924 21323 6121878 2024-03-01 05:19:03.788 2024-03-01 05:19:03.788 1000 STREAM 141924 5865 6121883 2024-03-01 05:21:03.829 2024-03-01 05:21:03.829 1000 STREAM 141924 17124 6121885 2024-03-01 05:22:03.853 2024-03-01 05:22:03.853 1000 STREAM 141924 16177 6121888 2024-03-01 05:23:03.867 2024-03-01 05:23:03.867 1000 STREAM 141924 6136 6121891 2024-03-01 05:24:03.88 2024-03-01 05:24:03.88 1000 STREAM 141924 20871 6121892 2024-03-01 05:25:03.915 2024-03-01 05:25:03.915 1000 STREAM 141924 27 6121895 2024-03-01 05:26:03.961 2024-03-01 05:26:03.961 1000 STREAM 141924 19572 6121897 2024-03-01 05:27:03.974 2024-03-01 05:27:03.974 1000 STREAM 141924 19043 6121899 2024-03-01 05:28:03.931 2024-03-01 05:28:03.931 1000 STREAM 141924 6268 6121904 2024-03-01 05:29:03.946 2024-03-01 05:29:03.946 1000 STREAM 141924 3656 6121911 2024-03-01 05:30:03.98 2024-03-01 05:30:03.98 1000 STREAM 141924 19512 6121928 2024-03-01 05:31:03.976 2024-03-01 05:31:03.976 1000 STREAM 141924 8360 6121943 2024-03-01 05:35:04.032 2024-03-01 05:35:04.032 1000 STREAM 141924 11678 6121948 2024-03-01 05:36:04.05 2024-03-01 05:36:04.05 1000 STREAM 141924 20094 6121951 2024-03-01 05:37:04.074 2024-03-01 05:37:04.074 1000 STREAM 141924 739 6121952 2024-03-01 05:38:04.089 2024-03-01 05:38:04.089 1000 STREAM 141924 19469 6121954 2024-03-01 05:39:04.107 2024-03-01 05:39:04.107 1000 STREAM 141924 21003 6121966 2024-03-01 05:41:04.151 2024-03-01 05:41:04.151 1000 STREAM 141924 10821 6121968 2024-03-01 05:43:04.172 2024-03-01 05:43:04.172 1000 STREAM 141924 20596 6121972 2024-03-01 05:45:04.208 2024-03-01 05:45:04.208 1000 STREAM 141924 1712 6060192 2024-02-25 04:10:02.981 2024-02-25 04:10:02.981 1000 STREAM 141924 18344 6121839 2024-03-01 05:05:32.355 2024-03-01 05:05:32.355 9000 TIP 443625 798 6121850 2024-03-01 05:08:00.347 2024-03-01 05:08:00.347 1000 FEE 443627 16633 6121851 2024-03-01 05:08:00.347 2024-03-01 05:08:00.347 9000 TIP 443627 21212 6121871 2024-03-01 05:16:07.851 2024-03-01 05:16:07.851 100000 FEE 444572 21361 6121872 2024-03-01 05:17:00.296 2024-03-01 05:17:00.296 1000 FEE 444573 2224 6121886 2024-03-01 05:22:29.014 2024-03-01 05:22:29.014 1000 FEE 444577 20129 6121889 2024-03-01 05:23:27.238 2024-03-01 05:23:27.238 21000 FEE 444530 20973 6121890 2024-03-01 05:23:27.238 2024-03-01 05:23:27.238 189000 TIP 444530 10484 6121926 2024-03-01 05:30:53.97 2024-03-01 05:30:53.97 0 FEE 444582 5036 6121927 2024-03-01 05:31:02.383 2024-03-01 05:31:02.383 1000 FEE 444583 679 6121958 2024-03-01 05:39:58.295 2024-03-01 05:39:58.295 500 FEE 444522 5427 6121959 2024-03-01 05:39:58.295 2024-03-01 05:39:58.295 4500 TIP 444522 4345 6121965 2024-03-01 05:40:46.098 2024-03-01 05:40:46.098 1000 FEE 444591 19118 6121976 2024-03-01 05:46:20.168 2024-03-01 05:46:20.168 1000 FEE 444594 21012 6122007 2024-03-01 06:01:28.34 2024-03-01 06:01:28.34 500 FEE 444558 917 6122008 2024-03-01 06:01:28.34 2024-03-01 06:01:28.34 4500 TIP 444558 8360 6122011 2024-03-01 06:01:52.639 2024-03-01 06:01:52.639 2100 FEE 444553 12768 6122012 2024-03-01 06:01:52.639 2024-03-01 06:01:52.639 18900 TIP 444553 1060 6122013 2024-03-01 06:01:55.313 2024-03-01 06:01:55.313 1000 FEE 444567 1465 6122014 2024-03-01 06:01:55.313 2024-03-01 06:01:55.313 9000 TIP 444567 20220 6122018 2024-03-01 06:02:20.362 2024-03-01 06:02:20.362 500 FEE 443794 20490 6122019 2024-03-01 06:02:20.362 2024-03-01 06:02:20.362 4500 TIP 443794 5487 6122046 2024-03-01 06:03:46.144 2024-03-01 06:03:46.144 1000 FEE 444601 15938 6122047 2024-03-01 06:03:57.745 2024-03-01 06:03:57.745 800 FEE 444522 1124 6122048 2024-03-01 06:03:57.745 2024-03-01 06:03:57.745 7200 TIP 444522 1737 6122053 2024-03-01 06:03:58.791 2024-03-01 06:03:58.791 1000 POLL 444597 19615 6122066 2024-03-01 06:06:55.808 2024-03-01 06:06:55.808 100 FEE 444509 11776 6122067 2024-03-01 06:06:55.808 2024-03-01 06:06:55.808 900 TIP 444509 917 6122107 2024-03-01 06:14:50.754 2024-03-01 06:14:50.754 1000 FEE 444608 18828 6122128 2024-03-01 06:20:14.556 2024-03-01 06:20:14.556 1000 FEE 444612 14260 6122135 2024-03-01 06:23:18.433 2024-03-01 06:23:18.433 1000 FEE 444600 18387 6122136 2024-03-01 06:23:18.433 2024-03-01 06:23:18.433 9000 TIP 444600 651 6122152 2024-03-01 06:24:36.478 2024-03-01 06:24:36.478 1000 FEE 444615 10007 6122159 2024-03-01 06:27:19.669 2024-03-01 06:27:19.669 1000 POLL 444078 16670 6122165 2024-03-01 06:28:26.165 2024-03-01 06:28:26.165 2100 FEE 444591 19281 6122166 2024-03-01 06:28:26.165 2024-03-01 06:28:26.165 18900 TIP 444591 5359 6122171 2024-03-01 06:28:38.466 2024-03-01 06:28:38.466 2100 FEE 444459 5444 6122172 2024-03-01 06:28:38.466 2024-03-01 06:28:38.466 18900 TIP 444459 19148 6122182 2024-03-01 06:30:46.786 2024-03-01 06:30:46.786 800 FEE 443712 1740 6122183 2024-03-01 06:30:46.786 2024-03-01 06:30:46.786 7200 TIP 443712 2322 6122186 2024-03-01 06:31:10.926 2024-03-01 06:31:10.926 1000 FEE 444541 656 6122187 2024-03-01 06:31:10.926 2024-03-01 06:31:10.926 9000 TIP 444541 13348 6122200 2024-03-01 06:35:27.579 2024-03-01 06:35:27.579 1000 FEE 444621 1983 6122214 2024-03-01 06:39:44.657 2024-03-01 06:39:44.657 1000 FEE 444625 20854 6122232 2024-03-01 06:43:27.223 2024-03-01 06:43:27.223 300 FEE 148464 20058 6122233 2024-03-01 06:43:27.223 2024-03-01 06:43:27.223 2700 TIP 148464 7510 6122234 2024-03-01 06:43:27.379 2024-03-01 06:43:27.379 300 FEE 148464 18330 6122235 2024-03-01 06:43:27.379 2024-03-01 06:43:27.379 2700 TIP 148464 18897 6122246 2024-03-01 06:43:28.475 2024-03-01 06:43:28.475 300 FEE 148464 2748 6122247 2024-03-01 06:43:28.475 2024-03-01 06:43:28.475 2700 TIP 148464 15094 6122254 2024-03-01 06:43:29.43 2024-03-01 06:43:29.43 300 FEE 148464 20452 6122255 2024-03-01 06:43:29.43 2024-03-01 06:43:29.43 2700 TIP 148464 18008 6122260 2024-03-01 06:43:29.758 2024-03-01 06:43:29.758 300 FEE 148464 13076 6122261 2024-03-01 06:43:29.758 2024-03-01 06:43:29.758 2700 TIP 148464 993 6122266 2024-03-01 06:43:30.322 2024-03-01 06:43:30.322 300 FEE 148464 720 6122267 2024-03-01 06:43:30.322 2024-03-01 06:43:30.322 2700 TIP 148464 946 6122274 2024-03-01 06:43:31.721 2024-03-01 06:43:31.721 900 FEE 148464 21088 6122275 2024-03-01 06:43:31.721 2024-03-01 06:43:31.721 8100 TIP 148464 9166 6122284 2024-03-01 06:43:32.573 2024-03-01 06:43:32.573 300 FEE 148464 13781 6122285 2024-03-01 06:43:32.573 2024-03-01 06:43:32.573 2700 TIP 148464 8448 6122300 2024-03-01 06:43:33.933 2024-03-01 06:43:33.933 300 FEE 148464 989 6122301 2024-03-01 06:43:33.933 2024-03-01 06:43:33.933 2700 TIP 148464 1465 6122304 2024-03-01 06:43:34.807 2024-03-01 06:43:34.807 300 FEE 148464 13927 6122305 2024-03-01 06:43:34.807 2024-03-01 06:43:34.807 2700 TIP 148464 15556 6122323 2024-03-01 06:47:57.716 2024-03-01 06:47:57.716 2100 FEE 444168 18704 6122324 2024-03-01 06:47:57.716 2024-03-01 06:47:57.716 18900 TIP 444168 20525 6122332 2024-03-01 06:49:12.253 2024-03-01 06:49:12.253 2100 FEE 444606 17050 6122333 2024-03-01 06:49:12.253 2024-03-01 06:49:12.253 18900 TIP 444606 9874 6122338 2024-03-01 06:49:28.434 2024-03-01 06:49:28.434 2100 FEE 444619 2176 6122339 2024-03-01 06:49:28.434 2024-03-01 06:49:28.434 18900 TIP 444619 10549 6122379 2024-03-01 06:54:47.888 2024-03-01 06:54:47.888 800 FEE 328872 21088 6122380 2024-03-01 06:54:47.888 2024-03-01 06:54:47.888 7200 TIP 328872 1130 6122381 2024-03-01 06:54:48.077 2024-03-01 06:54:48.077 800 FEE 328872 9476 6122382 2024-03-01 06:54:48.077 2024-03-01 06:54:48.077 7200 TIP 328872 16653 6122418 2024-03-01 07:04:49.315 2024-03-01 07:04:49.315 800 FEE 328872 20555 6122419 2024-03-01 07:04:49.315 2024-03-01 07:04:49.315 7200 TIP 328872 2773 6122424 2024-03-01 07:06:57.536 2024-03-01 07:06:57.536 1000 FEE 444644 20412 6122431 2024-03-01 07:08:46.618 2024-03-01 07:08:46.618 100 FEE 444631 13574 6122432 2024-03-01 07:08:46.618 2024-03-01 07:08:46.618 900 TIP 444631 9339 6122527 2024-03-01 07:46:39.505 2024-03-01 07:46:39.505 100 FEE 444623 17568 6122528 2024-03-01 07:46:39.505 2024-03-01 07:46:39.505 900 TIP 444623 9551 6122575 2024-03-01 08:07:22.454 2024-03-01 08:07:22.454 7700 FEE 444628 5069 6122576 2024-03-01 08:07:22.454 2024-03-01 08:07:22.454 69300 TIP 444628 1628 6122577 2024-03-01 08:07:52.095 2024-03-01 08:07:52.095 500 FEE 444592 10112 6122578 2024-03-01 08:07:52.095 2024-03-01 08:07:52.095 4500 TIP 444592 21400 6122585 2024-03-01 08:09:51.524 2024-03-01 08:09:51.524 100 FEE 444662 11522 6122586 2024-03-01 08:09:51.524 2024-03-01 08:09:51.524 900 TIP 444662 18448 6122590 2024-03-01 08:10:35.789 2024-03-01 08:10:35.789 1000 FEE 437099 5500 6122591 2024-03-01 08:10:35.789 2024-03-01 08:10:35.789 9000 TIP 437099 2016 6122608 2024-03-01 08:15:08.533 2024-03-01 08:15:08.533 1000 POLL 444597 18517 6122612 2024-03-01 08:16:56.336 2024-03-01 08:16:56.336 1000 FEE 444662 18114 6122613 2024-03-01 08:16:56.336 2024-03-01 08:16:56.336 9000 TIP 444662 10096 6122626 2024-03-01 08:21:57.213 2024-03-01 08:21:57.213 1000 FEE 444667 16633 6122643 2024-03-01 08:29:01.082 2024-03-01 08:29:01.082 100000 FEE 442399 12268 6122644 2024-03-01 08:29:01.082 2024-03-01 08:29:01.082 900000 TIP 442399 1737 6122715 2024-03-01 08:52:24.562 2024-03-01 08:52:24.562 0 FEE 202423 18076 6122717 2024-03-01 08:53:28.449 2024-03-01 08:53:28.449 1000 FEE 444678 624 6122743 2024-03-01 09:04:41.244 2024-03-01 09:04:41.244 2100 FEE 444365 15732 6122744 2024-03-01 09:04:41.244 2024-03-01 09:04:41.244 18900 TIP 444365 6741 6122756 2024-03-01 09:09:12.72 2024-03-01 09:09:12.72 1000 FEE 444661 12272 6122757 2024-03-01 09:09:12.72 2024-03-01 09:09:12.72 9000 TIP 444661 16912 6122774 2024-03-01 09:15:00.618 2024-03-01 09:15:00.618 2800 FEE 260178 1094 6122775 2024-03-01 09:15:00.618 2024-03-01 09:15:00.618 25200 TIP 260178 21238 6060202 2024-02-25 04:16:05.041 2024-02-25 04:16:05.041 1000 STREAM 141924 658 6060272 2024-02-25 04:26:03.135 2024-02-25 04:26:03.135 1000 STREAM 141924 20881 6121901 2024-03-01 05:28:23.776 2024-03-01 05:28:23.776 9000 TIP 443729 8287 6121902 2024-03-01 05:28:23.942 2024-03-01 05:28:23.942 1000 FEE 443729 17526 6121903 2024-03-01 05:28:23.942 2024-03-01 05:28:23.942 9000 TIP 443729 1729 6121919 2024-03-01 05:30:07.99 2024-03-01 05:30:07.99 2700 FEE 443372 15326 6121920 2024-03-01 05:30:07.99 2024-03-01 05:30:07.99 24300 TIP 443372 5495 6121946 2024-03-01 05:35:37.796 2024-03-01 05:35:37.796 2100 FEE 444581 19652 6121947 2024-03-01 05:35:37.796 2024-03-01 05:35:37.796 18900 TIP 444581 9177 6121949 2024-03-01 05:36:17.993 2024-03-01 05:36:17.993 1000 FEE 444587 20642 6121977 2024-03-01 05:46:39.206 2024-03-01 05:46:39.206 2100 FEE 444173 12222 6121978 2024-03-01 05:46:39.206 2024-03-01 05:46:39.206 18900 TIP 444173 994 6121989 2024-03-01 05:51:22.75 2024-03-01 05:51:22.75 10000 FEE 444586 4118 6121990 2024-03-01 05:51:22.75 2024-03-01 05:51:22.75 90000 TIP 444586 18705 6122009 2024-03-01 06:01:35.396 2024-03-01 06:01:35.396 500 FEE 444569 2963 6122010 2024-03-01 06:01:35.396 2024-03-01 06:01:35.396 4500 TIP 444569 1564 6122020 2024-03-01 06:02:26.859 2024-03-01 06:02:26.859 500 FEE 444561 2151 6122021 2024-03-01 06:02:26.859 2024-03-01 06:02:26.859 4500 TIP 444561 10280 6122031 2024-03-01 06:02:48.514 2024-03-01 06:02:48.514 1000 FEE 444599 4459 6122032 2024-03-01 06:02:50.027 2024-03-01 06:02:50.027 800 FEE 444522 13987 6122033 2024-03-01 06:02:50.027 2024-03-01 06:02:50.027 7200 TIP 444522 1534 6122034 2024-03-01 06:02:50.206 2024-03-01 06:02:50.206 800 FEE 444522 9982 6122035 2024-03-01 06:02:50.206 2024-03-01 06:02:50.206 7200 TIP 444522 10484 6122036 2024-03-01 06:02:50.4 2024-03-01 06:02:50.4 800 FEE 444522 7891 6122037 2024-03-01 06:02:50.4 2024-03-01 06:02:50.4 7200 TIP 444522 8569 6122038 2024-03-01 06:03:01.073 2024-03-01 06:03:01.073 500 FEE 443951 16193 6122039 2024-03-01 06:03:01.073 2024-03-01 06:03:01.073 4500 TIP 443951 5036 6122073 2024-03-01 06:07:09.54 2024-03-01 06:07:09.54 1000 FEE 444605 18923 6122083 2024-03-01 06:08:35.976 2024-03-01 06:08:35.976 10000 FEE 444522 7773 6122084 2024-03-01 06:08:35.976 2024-03-01 06:08:35.976 90000 TIP 444522 9342 6122100 2024-03-01 06:13:45.118 2024-03-01 06:13:45.118 100 FEE 444581 694 6122101 2024-03-01 06:13:45.118 2024-03-01 06:13:45.118 900 TIP 444581 2757 6122117 2024-03-01 06:17:06.019 2024-03-01 06:17:06.019 100 FEE 444597 19759 6122118 2024-03-01 06:17:06.019 2024-03-01 06:17:06.019 900 TIP 444597 20657 6122138 2024-03-01 06:23:23.38 2024-03-01 06:23:23.38 1000 FEE 444598 18896 6122139 2024-03-01 06:23:23.38 2024-03-01 06:23:23.38 9000 TIP 444598 4166 6122151 2024-03-01 06:24:17.336 2024-03-01 06:24:17.336 0 FEE 444614 17696 6122209 2024-03-01 06:36:51.732 2024-03-01 06:36:51.732 100 FEE 444619 2402 6122210 2024-03-01 06:36:51.732 2024-03-01 06:36:51.732 900 TIP 444619 13132 6122240 2024-03-01 06:43:27.942 2024-03-01 06:43:27.942 300 FEE 148464 16867 6122241 2024-03-01 06:43:27.942 2024-03-01 06:43:27.942 2700 TIP 148464 5758 6122242 2024-03-01 06:43:28.184 2024-03-01 06:43:28.184 300 FEE 148464 16353 6122243 2024-03-01 06:43:28.184 2024-03-01 06:43:28.184 2700 TIP 148464 1493 6122252 2024-03-01 06:43:29.02 2024-03-01 06:43:29.02 300 FEE 148464 19462 6122253 2024-03-01 06:43:29.02 2024-03-01 06:43:29.02 2700 TIP 148464 704 6122302 2024-03-01 06:43:34.003 2024-03-01 06:43:34.003 300 FEE 148464 9 6122303 2024-03-01 06:43:34.003 2024-03-01 06:43:34.003 2700 TIP 148464 19815 6122392 2024-03-01 06:59:55.717 2024-03-01 06:59:55.717 1000 FEE 444635 6765 6122409 2024-03-01 07:04:40.665 2024-03-01 07:04:40.665 1000 FEE 444643 20680 6122416 2024-03-01 07:04:48.488 2024-03-01 07:04:48.488 800 FEE 328872 19329 6122417 2024-03-01 07:04:48.488 2024-03-01 07:04:48.488 7200 TIP 328872 20258 6122428 2024-03-01 07:08:03.037 2024-03-01 07:08:03.037 1000 FEE 444645 2402 6122448 2024-03-01 07:16:40.445 2024-03-01 07:16:40.445 1000 FEE 444650 20891 6122459 2024-03-01 07:20:57.462 2024-03-01 07:20:57.462 400 FEE 444648 736 6122460 2024-03-01 07:20:57.462 2024-03-01 07:20:57.462 3600 TIP 444648 14663 6122579 2024-03-01 08:07:53.33 2024-03-01 08:07:53.33 500 FEE 444592 6777 6122580 2024-03-01 08:07:53.33 2024-03-01 08:07:53.33 4500 TIP 444592 712 6122604 2024-03-01 08:13:32.334 2024-03-01 08:13:32.334 100 FEE 444627 17446 6122605 2024-03-01 08:13:32.334 2024-03-01 08:13:32.334 900 TIP 444627 11561 6122610 2024-03-01 08:16:56.179 2024-03-01 08:16:56.179 1000 FEE 444662 18830 6122611 2024-03-01 08:16:56.179 2024-03-01 08:16:56.179 9000 TIP 444662 16351 6122635 2024-03-01 08:27:57.518 2024-03-01 08:27:57.518 2100 FEE 442313 2961 6122636 2024-03-01 08:27:57.518 2024-03-01 08:27:57.518 18900 TIP 442313 17227 6122674 2024-03-01 08:38:41.957 2024-03-01 08:38:41.957 100 FEE 444671 646 6122675 2024-03-01 08:38:41.957 2024-03-01 08:38:41.957 900 TIP 444671 21466 6122713 2024-03-01 08:51:55.012 2024-03-01 08:51:55.012 0 FEE 202423 17827 6122722 2024-03-01 08:57:29.113 2024-03-01 08:57:29.113 700 FEE 444677 5725 6122723 2024-03-01 08:57:29.113 2024-03-01 08:57:29.113 6300 TIP 444677 720 6122733 2024-03-01 09:02:06.767 2024-03-01 09:02:06.767 1000 FEE 444681 20990 6122786 2024-03-01 09:19:21.455 2024-03-01 09:19:21.455 4200 FEE 444465 16950 6122787 2024-03-01 09:19:21.455 2024-03-01 09:19:21.455 37800 TIP 444465 20377 6122811 2024-03-01 09:27:33.071 2024-03-01 09:27:33.071 1000 FEE 444679 20306 6122812 2024-03-01 09:27:33.071 2024-03-01 09:27:33.071 9000 TIP 444679 17722 6122825 2024-03-01 09:27:38.093 2024-03-01 09:27:38.093 1000 FEE 444656 10273 6122826 2024-03-01 09:27:38.093 2024-03-01 09:27:38.093 9000 TIP 444656 20511 6122848 2024-03-01 09:27:44.804 2024-03-01 09:27:44.804 1000 FEE 444597 21003 6122849 2024-03-01 09:27:44.804 2024-03-01 09:27:44.804 9000 TIP 444597 20251 6122863 2024-03-01 09:33:45.879 2024-03-01 09:33:45.879 0 FEE 444688 13843 6122906 2024-03-01 09:49:36.754 2024-03-01 09:49:36.754 1000 FEE 444693 10094 6122925 2024-03-01 09:53:35.41 2024-03-01 09:53:35.41 10000 FEE 444428 21373 6122926 2024-03-01 09:53:35.41 2024-03-01 09:53:35.41 90000 TIP 444428 1208 6122930 2024-03-01 09:55:05.448 2024-03-01 09:55:05.448 1000 FEE 444697 16839 6060276 2024-02-25 04:27:03.127 2024-02-25 04:27:03.127 1000 STREAM 141924 11527 6121979 2024-03-01 05:47:03.014 2024-03-01 05:47:03.014 1000 STREAM 141924 909 6121980 2024-03-01 05:48:03.02 2024-03-01 05:48:03.02 1000 STREAM 141924 18731 6121985 2024-03-01 05:49:03.04 2024-03-01 05:49:03.04 1000 STREAM 141924 1723 6121987 2024-03-01 05:50:03.069 2024-03-01 05:50:03.069 1000 STREAM 141924 18731 6121991 2024-03-01 05:52:03.071 2024-03-01 05:52:03.071 1000 STREAM 141924 6578 6121992 2024-03-01 05:53:03.079 2024-03-01 05:53:03.079 1000 STREAM 141924 21164 6121998 2024-03-01 05:57:03.125 2024-03-01 05:57:03.125 1000 STREAM 141924 19967 6121999 2024-03-01 05:58:03.136 2024-03-01 05:58:03.136 1000 STREAM 141924 9494 6122002 2024-03-01 05:59:03.15 2024-03-01 05:59:03.15 1000 STREAM 141924 20163 6122015 2024-03-01 06:02:03.323 2024-03-01 06:02:03.323 1000 STREAM 141924 795 6122044 2024-03-01 06:03:03.314 2024-03-01 06:03:03.314 1000 STREAM 141924 1584 6122054 2024-03-01 06:04:03.319 2024-03-01 06:04:03.319 1000 STREAM 141924 11829 6122072 2024-03-01 06:07:03.327 2024-03-01 06:07:03.327 1000 STREAM 141924 708 6122080 2024-03-01 06:08:03.332 2024-03-01 06:08:03.332 1000 STREAM 141924 18930 6122087 2024-03-01 06:10:03.358 2024-03-01 06:10:03.358 1000 STREAM 141924 20231 6122106 2024-03-01 06:14:03.36 2024-03-01 06:14:03.36 1000 STREAM 141924 12356 6060370 2024-02-25 05:02:09.079 2024-02-25 05:02:09.079 9000 FEE 437893 8162 6060371 2024-02-25 05:02:09.079 2024-02-25 05:02:09.079 81000 TIP 437893 20738 6060389 2024-02-25 05:12:45.603 2024-02-25 05:12:45.603 6900 FEE 437935 18330 6060390 2024-02-25 05:12:45.603 2024-02-25 05:12:45.603 62100 TIP 437935 998 6060428 2024-02-25 05:22:22.907 2024-02-25 05:22:22.907 2100 FEE 437895 10393 6060429 2024-02-25 05:22:22.907 2024-02-25 05:22:22.907 18900 TIP 437895 3411 6060433 2024-02-25 05:23:24.906 2024-02-25 05:23:24.906 100 FEE 437955 8998 6060434 2024-02-25 05:23:24.906 2024-02-25 05:23:24.906 900 TIP 437955 11992 6060437 2024-02-25 05:23:32.266 2024-02-25 05:23:32.266 2100 FEE 437909 20816 6060438 2024-02-25 05:23:32.266 2024-02-25 05:23:32.266 18900 TIP 437909 21072 6060441 2024-02-25 05:24:01.564 2024-02-25 05:24:01.564 2100 FEE 437957 12774 6060442 2024-02-25 05:24:01.564 2024-02-25 05:24:01.564 18900 TIP 437957 4173 6060452 2024-02-25 05:29:59.021 2024-02-25 05:29:59.021 100 FEE 437817 9476 6060453 2024-02-25 05:29:59.021 2024-02-25 05:29:59.021 900 TIP 437817 16357 6060496 2024-02-25 05:54:46.234 2024-02-25 05:54:46.234 800 FEE 437775 13599 6060497 2024-02-25 05:54:46.234 2024-02-25 05:54:46.234 7200 TIP 437775 21413 6060560 2024-02-25 06:26:06.953 2024-02-25 06:26:06.953 800 FEE 437893 19036 6060561 2024-02-25 06:26:06.953 2024-02-25 06:26:06.953 7200 TIP 437893 15239 6060570 2024-02-25 06:26:20.792 2024-02-25 06:26:20.792 100 FEE 437966 19690 6060571 2024-02-25 06:26:20.792 2024-02-25 06:26:20.792 900 TIP 437966 13987 6060574 2024-02-25 06:26:45.522 2024-02-25 06:26:45.522 1000 FEE 437971 4395 6060589 2024-02-25 06:29:27.332 2024-02-25 06:29:27.332 800 FEE 437971 14657 6060590 2024-02-25 06:29:27.332 2024-02-25 06:29:27.332 7200 TIP 437971 21063 6060661 2024-02-25 06:38:34.231 2024-02-25 06:38:34.231 900 FEE 437965 21037 6060662 2024-02-25 06:38:34.231 2024-02-25 06:38:34.231 8100 TIP 437965 17106 6060667 2024-02-25 06:41:19.89 2024-02-25 06:41:19.89 1000 FEE 437975 1401 6060681 2024-02-25 06:43:58.65 2024-02-25 06:43:58.65 2100 FEE 437966 16988 6060682 2024-02-25 06:43:58.65 2024-02-25 06:43:58.65 18900 TIP 437966 7682 6060726 2024-02-25 06:53:37.017 2024-02-25 06:53:37.017 6900 FEE 437681 20778 6060727 2024-02-25 06:53:37.017 2024-02-25 06:53:37.017 62100 TIP 437681 13046 6060759 2024-02-25 07:01:52.833 2024-02-25 07:01:52.833 1000 FEE 437972 1130 6060760 2024-02-25 07:01:52.833 2024-02-25 07:01:52.833 9000 TIP 437972 19615 6060772 2024-02-25 07:02:42.36 2024-02-25 07:02:42.36 1000 FEE 437982 1705 6060773 2024-02-25 07:02:42.36 2024-02-25 07:02:42.36 9000 TIP 437982 4126 6060776 2024-02-25 07:02:47.848 2024-02-25 07:02:47.848 1000 FEE 437982 19463 6060777 2024-02-25 07:02:47.848 2024-02-25 07:02:47.848 9000 TIP 437982 20254 6060791 2024-02-25 07:07:59.35 2024-02-25 07:07:59.35 0 FEE 437991 4395 6060803 2024-02-25 07:10:44.57 2024-02-25 07:10:44.57 2100 FEE 437736 2195 6060804 2024-02-25 07:10:44.57 2024-02-25 07:10:44.57 18900 TIP 437736 3506 6060805 2024-02-25 07:10:56.59 2024-02-25 07:10:56.59 0 FEE 437991 12291 6060842 2024-02-25 07:29:05.709 2024-02-25 07:29:05.709 2100 FEE 437966 12721 6060843 2024-02-25 07:29:05.709 2024-02-25 07:29:05.709 18900 TIP 437966 763 6060898 2024-02-25 08:00:04.625 2024-02-25 08:00:04.625 100000 FEE 438002 1505 6060902 2024-02-25 08:02:09.253 2024-02-25 08:02:09.253 125000 FEE 438004 4574 6060903 2024-02-25 08:02:44.554 2024-02-25 08:02:44.554 1000 FEE 438005 27 6060917 2024-02-25 08:06:58.722 2024-02-25 08:06:58.722 1000 FEE 437976 16788 6060918 2024-02-25 08:06:58.722 2024-02-25 08:06:58.722 9000 TIP 437976 20156 6061001 2024-02-25 08:11:12.944 2024-02-25 08:11:12.944 1000 FEE 437917 1401 6061002 2024-02-25 08:11:12.944 2024-02-25 08:11:12.944 9000 TIP 437917 20327 6061019 2024-02-25 08:11:23.364 2024-02-25 08:11:23.364 1000 FEE 437524 15762 6061020 2024-02-25 08:11:23.364 2024-02-25 08:11:23.364 9000 TIP 437524 5791 6061050 2024-02-25 08:14:30.09 2024-02-25 08:14:30.09 1000 FEE 437932 6749 6061051 2024-02-25 08:14:30.09 2024-02-25 08:14:30.09 9000 TIP 437932 14959 6061055 2024-02-25 08:15:16.129 2024-02-25 08:15:16.129 1000 FEE 437812 17455 6061056 2024-02-25 08:15:16.129 2024-02-25 08:15:16.129 9000 TIP 437812 17827 6061072 2024-02-25 08:22:35.402 2024-02-25 08:22:35.402 1000 FEE 437895 16789 6061073 2024-02-25 08:22:35.402 2024-02-25 08:22:35.402 9000 TIP 437895 21371 6061118 2024-02-25 08:33:50.247 2024-02-25 08:33:50.247 1000 FEE 438022 13547 6061150 2024-02-25 08:47:40.812 2024-02-25 08:47:40.812 500 FEE 437981 2789 6061151 2024-02-25 08:47:40.812 2024-02-25 08:47:40.812 4500 TIP 437981 4175 6061158 2024-02-25 08:48:41.724 2024-02-25 08:48:41.724 0 FEE 383547 20436 6061160 2024-02-25 08:49:18.681 2024-02-25 08:49:18.681 500 FEE 437629 19906 6061161 2024-02-25 08:49:18.681 2024-02-25 08:49:18.681 4500 TIP 437629 19663 6061173 2024-02-25 08:50:38.396 2024-02-25 08:50:38.396 2100 FEE 437996 19138 6061174 2024-02-25 08:50:38.396 2024-02-25 08:50:38.396 18900 TIP 437996 5003 6061199 2024-02-25 08:56:13.697 2024-02-25 08:56:13.697 2100 FEE 437890 8726 6061200 2024-02-25 08:56:13.697 2024-02-25 08:56:13.697 18900 TIP 437890 20152 6061201 2024-02-25 08:56:24.302 2024-02-25 08:56:24.302 2100 FEE 437886 894 6061202 2024-02-25 08:56:24.302 2024-02-25 08:56:24.302 18900 TIP 437886 19843 6061233 2024-02-25 09:07:41.851 2024-02-25 09:07:41.851 1000 FEE 438037 688 6061236 2024-02-25 09:08:05.802 2024-02-25 09:08:05.802 100 FEE 437769 7899 6061237 2024-02-25 09:08:05.802 2024-02-25 09:08:05.802 900 TIP 437769 16653 6061238 2024-02-25 09:08:36.978 2024-02-25 09:08:36.978 100000 FEE 438039 19322 6061243 2024-02-25 09:10:59.58 2024-02-25 09:10:59.58 100 FEE 436750 10693 6061244 2024-02-25 09:10:59.58 2024-02-25 09:10:59.58 900 TIP 436750 16789 6061252 2024-02-25 09:15:21.024 2024-02-25 09:15:21.024 1000 FEE 438003 19292 6061253 2024-02-25 09:15:21.024 2024-02-25 09:15:21.024 9000 TIP 438003 6229 6061261 2024-02-25 09:19:24.141 2024-02-25 09:19:24.141 1000 FEE 438041 21022 6061266 2024-02-25 09:21:47.067 2024-02-25 09:21:47.067 1000 FEE 437981 19034 6061267 2024-02-25 09:21:47.067 2024-02-25 09:21:47.067 9000 TIP 437981 5427 6061292 2024-02-25 09:34:47.436 2024-02-25 09:34:47.436 200 FEE 437996 10611 6061293 2024-02-25 09:34:47.436 2024-02-25 09:34:47.436 1800 TIP 437996 17708 6061306 2024-02-25 09:37:43.231 2024-02-25 09:37:43.231 1000 FEE 438048 16848 6061335 2024-02-25 09:51:05.926 2024-02-25 09:51:05.926 2100 FEE 438051 9482 6061336 2024-02-25 09:51:05.926 2024-02-25 09:51:05.926 18900 TIP 438051 4115 6061354 2024-02-25 09:55:51.117 2024-02-25 09:55:51.117 2100 FEE 436176 18679 6061355 2024-02-25 09:55:51.117 2024-02-25 09:55:51.117 18900 TIP 436176 15536 6061396 2024-02-25 10:06:58.923 2024-02-25 10:06:58.923 2100 FEE 437863 19469 6061397 2024-02-25 10:06:58.923 2024-02-25 10:06:58.923 18900 TIP 437863 20299 6061407 2024-02-25 10:07:40.016 2024-02-25 10:07:40.016 2100 FEE 438028 21501 6061408 2024-02-25 10:07:40.016 2024-02-25 10:07:40.016 18900 TIP 438028 807 6061409 2024-02-25 10:07:47.095 2024-02-25 10:07:47.095 2100 FEE 438004 10096 6061410 2024-02-25 10:07:47.095 2024-02-25 10:07:47.095 18900 TIP 438004 1003 6061430 2024-02-25 10:10:08.355 2024-02-25 10:10:08.355 3000 FEE 437611 1039 6061431 2024-02-25 10:10:08.355 2024-02-25 10:10:08.355 27000 TIP 437611 2335 6061445 2024-02-25 10:12:13.082 2024-02-25 10:12:13.082 2100 FEE 437714 11698 6061446 2024-02-25 10:12:13.082 2024-02-25 10:12:13.082 18900 TIP 437714 20377 6061448 2024-02-25 10:12:34.609 2024-02-25 10:12:34.609 1000 FEE 438063 21599 6061454 2024-02-25 10:13:44.559 2024-02-25 10:13:44.559 1000 FEE 438066 12774 6061458 2024-02-25 10:14:18.634 2024-02-25 10:14:18.634 2100 FEE 437533 1092 6061459 2024-02-25 10:14:18.634 2024-02-25 10:14:18.634 18900 TIP 437533 1209 6061470 2024-02-25 10:14:55.927 2024-02-25 10:14:55.927 1000 FEE 438067 19890 6060476 2024-02-25 05:47:03.487 2024-02-25 05:47:03.487 1000 STREAM 141924 20998 6060478 2024-02-25 05:49:03.52 2024-02-25 05:49:03.52 1000 STREAM 141924 1060 6060484 2024-02-25 05:54:03.564 2024-02-25 05:54:03.564 1000 STREAM 141924 647 6060502 2024-02-25 05:55:03.587 2024-02-25 05:55:03.587 1000 STREAM 141924 19633 6060503 2024-02-25 05:56:03.609 2024-02-25 05:56:03.609 1000 STREAM 141924 2029 6060505 2024-02-25 05:58:03.649 2024-02-25 05:58:03.649 1000 STREAM 141924 16341 6060506 2024-02-25 05:59:03.659 2024-02-25 05:59:03.659 1000 STREAM 141924 13198 6060507 2024-02-25 06:00:03.693 2024-02-25 06:00:03.693 1000 STREAM 141924 18629 6060510 2024-02-25 06:02:03.699 2024-02-25 06:02:03.699 1000 STREAM 141924 17817 6121997 2024-03-01 05:56:04.699 2024-03-01 05:56:04.699 1000 STREAM 141924 4763 6060509 2024-02-25 06:01:04.181 2024-02-25 06:01:04.181 1000 STREAM 141924 20924 6122024 2024-03-01 06:02:38.419 2024-03-01 06:02:38.419 2100 FEE 444548 18321 6122025 2024-03-01 06:02:38.419 2024-03-01 06:02:38.419 18900 TIP 444548 5171 6122065 2024-03-01 06:06:25.085 2024-03-01 06:06:25.085 1000 FEE 444604 19813 6122093 2024-03-01 06:11:23.208 2024-03-01 06:11:23.208 100 FEE 444572 2519 6122094 2024-03-01 06:11:23.208 2024-03-01 06:11:23.208 900 TIP 444572 16594 6122095 2024-03-01 06:11:34.783 2024-03-01 06:11:34.783 100 FEE 444567 20987 6122096 2024-03-01 06:11:34.783 2024-03-01 06:11:34.783 900 TIP 444567 629 6122102 2024-03-01 06:13:45.235 2024-03-01 06:13:45.235 900 FEE 444581 3371 6122103 2024-03-01 06:13:45.235 2024-03-01 06:13:45.235 8100 TIP 444581 16653 6122140 2024-03-01 06:23:47.477 2024-03-01 06:23:47.477 300 FEE 444569 20470 6122141 2024-03-01 06:23:47.477 2024-03-01 06:23:47.477 2700 TIP 444569 657 6122149 2024-03-01 06:24:15.08 2024-03-01 06:24:15.08 1000 FEE 442313 21292 6122150 2024-03-01 06:24:15.08 2024-03-01 06:24:15.08 9000 TIP 442313 9345 6122157 2024-03-01 06:26:41.268 2024-03-01 06:26:41.268 1000 FEE 444616 16336 6122162 2024-03-01 06:28:21.066 2024-03-01 06:28:21.066 1000 FEE 444617 1244 6122178 2024-03-01 06:30:38.465 2024-03-01 06:30:38.465 10000 FEE 444168 6229 6122179 2024-03-01 06:30:38.465 2024-03-01 06:30:38.465 90000 TIP 444168 20901 6122197 2024-03-01 06:33:22.22 2024-03-01 06:33:22.22 1000 FEE 444620 16194 6122201 2024-03-01 06:36:01.008 2024-03-01 06:36:01.008 1000 FEE 444622 1647 6122221 2024-03-01 06:42:25.516 2024-03-01 06:42:25.516 100 FEE 444562 657 6122222 2024-03-01 06:42:25.516 2024-03-01 06:42:25.516 900 TIP 444562 1319 6122244 2024-03-01 06:43:28.383 2024-03-01 06:43:28.383 300 FEE 148464 17095 6122245 2024-03-01 06:43:28.383 2024-03-01 06:43:28.383 2700 TIP 148464 20490 6122262 2024-03-01 06:43:30.033 2024-03-01 06:43:30.033 300 FEE 148464 16594 6122263 2024-03-01 06:43:30.033 2024-03-01 06:43:30.033 2700 TIP 148464 5557 6122264 2024-03-01 06:43:30.098 2024-03-01 06:43:30.098 300 FEE 148464 630 6122265 2024-03-01 06:43:30.098 2024-03-01 06:43:30.098 2700 TIP 148464 889 6122280 2024-03-01 06:43:32.058 2024-03-01 06:43:32.058 300 FEE 148464 16939 6122281 2024-03-01 06:43:32.058 2024-03-01 06:43:32.058 2700 TIP 148464 21498 6122316 2024-03-01 06:46:53.664 2024-03-01 06:46:53.664 17000 FEE 444628 1729 6122329 2024-03-01 06:48:40.46 2024-03-01 06:48:40.46 2100 FEE 444625 9433 6122330 2024-03-01 06:48:40.46 2024-03-01 06:48:40.46 18900 TIP 444625 20073 6122344 2024-03-01 06:49:31.669 2024-03-01 06:49:31.669 2500 FEE 444619 1605 6122345 2024-03-01 06:49:31.669 2024-03-01 06:49:31.669 22500 TIP 444619 19541 6122359 2024-03-01 06:50:41.13 2024-03-01 06:50:41.13 2100 FEE 444434 624 6122360 2024-03-01 06:50:41.13 2024-03-01 06:50:41.13 18900 TIP 444434 16665 6122398 2024-03-01 07:00:50.485 2024-03-01 07:00:50.485 100000 FEE 444638 12368 6122401 2024-03-01 07:01:46.586 2024-03-01 07:01:46.586 10000 FEE 444640 21389 6122414 2024-03-01 07:04:47.661 2024-03-01 07:04:47.661 800 FEE 328872 13217 6122415 2024-03-01 07:04:47.661 2024-03-01 07:04:47.661 7200 TIP 328872 3417 6122472 2024-03-01 07:27:26.322 2024-03-01 07:27:26.322 2800 FEE 440324 16998 6122473 2024-03-01 07:27:26.322 2024-03-01 07:27:26.322 25200 TIP 440324 18454 6122507 2024-03-01 07:41:43.273 2024-03-01 07:41:43.273 1000 POLL 444449 5069 6122521 2024-03-01 07:45:43.73 2024-03-01 07:45:43.73 100 FEE 444541 20852 6122522 2024-03-01 07:45:43.73 2024-03-01 07:45:43.73 900 TIP 444541 21338 6122529 2024-03-01 07:46:46.065 2024-03-01 07:46:46.065 120000 FEE 444657 21332 6122538 2024-03-01 07:51:01.938 2024-03-01 07:51:01.938 1000 FEE 444658 3706 6122557 2024-03-01 08:00:12.864 2024-03-01 08:00:12.864 0 FEE 444659 12268 6122566 2024-03-01 08:05:50.342 2024-03-01 08:05:50.342 0 FEE 444662 21522 6122614 2024-03-01 08:16:56.489 2024-03-01 08:16:56.489 1000 FEE 444662 21036 6122615 2024-03-01 08:16:56.489 2024-03-01 08:16:56.489 9000 TIP 444662 16336 6122646 2024-03-01 08:29:20.716 2024-03-01 08:29:20.716 1000 FEE 444669 4304 6122695 2024-03-01 08:50:19.137 2024-03-01 08:50:19.137 100 FEE 444168 16229 6122696 2024-03-01 08:50:19.137 2024-03-01 08:50:19.137 900 TIP 444168 14449 6122705 2024-03-01 08:50:22.389 2024-03-01 08:50:22.389 100 FEE 444168 18372 6122706 2024-03-01 08:50:22.389 2024-03-01 08:50:22.389 900 TIP 444168 18897 6122728 2024-03-01 08:59:20.917 2024-03-01 08:59:20.917 100000 FEE 444679 6202 6122735 2024-03-01 09:03:17.494 2024-03-01 09:03:17.494 2100 FEE 444441 5519 6122736 2024-03-01 09:03:17.494 2024-03-01 09:03:17.494 18900 TIP 444441 17944 6122750 2024-03-01 09:05:39.77 2024-03-01 09:05:39.77 500 FEE 444664 8287 6122751 2024-03-01 09:05:39.77 2024-03-01 09:05:39.77 4500 TIP 444664 679 6122815 2024-03-01 09:27:34.072 2024-03-01 09:27:34.072 1000 FEE 444674 12911 6122816 2024-03-01 09:27:34.072 2024-03-01 09:27:34.072 9000 TIP 444674 4102 6122827 2024-03-01 09:27:38.883 2024-03-01 09:27:38.883 1000 FEE 444648 692 6122828 2024-03-01 09:27:38.883 2024-03-01 09:27:38.883 9000 TIP 444648 13348 6122860 2024-03-01 09:31:48.452 2024-03-01 09:31:48.452 1000 FEE 444688 17321 6122933 2024-03-01 09:55:20.449 2024-03-01 09:55:20.449 2100 FEE 444102 13575 6122934 2024-03-01 09:55:20.449 2024-03-01 09:55:20.449 18900 TIP 444102 13903 6122956 2024-03-01 09:56:39.384 2024-03-01 09:56:39.384 100000 FEE 444698 11328 6122965 2024-03-01 09:58:00.864 2024-03-01 09:58:00.864 69000 FEE 444700 20998 6122968 2024-03-01 09:58:20.507 2024-03-01 09:58:20.507 1000 FEE 444701 18809 6122972 2024-03-01 10:00:05.696 2024-03-01 10:00:05.696 1000 FEE 444703 16447 6122993 2024-03-01 10:04:51.669 2024-03-01 10:04:51.669 100 FEE 444522 1162 6122994 2024-03-01 10:04:51.669 2024-03-01 10:04:51.669 900 TIP 444522 5487 6123001 2024-03-01 10:04:53.409 2024-03-01 10:04:53.409 100 FEE 444522 21292 6123002 2024-03-01 10:04:53.409 2024-03-01 10:04:53.409 900 TIP 444522 11240 6123018 2024-03-01 10:06:59.626 2024-03-01 10:06:59.626 100000 FEE 444707 5728 6123022 2024-03-01 10:07:17.813 2024-03-01 10:07:17.813 100 FEE 444700 15094 6123023 2024-03-01 10:07:17.813 2024-03-01 10:07:17.813 900 TIP 444700 16839 6123053 2024-03-01 10:11:39.23 2024-03-01 10:11:39.23 2100 FEE 444698 8245 6123054 2024-03-01 10:11:39.23 2024-03-01 10:11:39.23 18900 TIP 444698 15521 6123082 2024-03-01 10:15:25.533 2024-03-01 10:15:25.533 1000 FEE 444716 11192 6123090 2024-03-01 10:16:57.008 2024-03-01 10:16:57.008 2100 FEE 444704 16670 6123091 2024-03-01 10:16:57.008 2024-03-01 10:16:57.008 18900 TIP 444704 12175 6123101 2024-03-01 10:18:39.861 2024-03-01 10:18:39.861 2100 FEE 444717 1571 6123102 2024-03-01 10:18:39.861 2024-03-01 10:18:39.861 18900 TIP 444717 6383 6123113 2024-03-01 10:20:40.076 2024-03-01 10:20:40.076 100 FEE 444718 1236 6123114 2024-03-01 10:20:40.076 2024-03-01 10:20:40.076 900 TIP 444718 15063 6123125 2024-03-01 10:21:28.598 2024-03-01 10:21:28.598 1000 FEE 443701 4177 6123126 2024-03-01 10:21:28.598 2024-03-01 10:21:28.598 9000 TIP 443701 17741 6123138 2024-03-01 10:22:05.717 2024-03-01 10:22:05.717 100 FEE 444715 7966 6123139 2024-03-01 10:22:05.717 2024-03-01 10:22:05.717 900 TIP 444715 1801 6123140 2024-03-01 10:22:11.781 2024-03-01 10:22:11.781 100 FEE 444714 5694 6123141 2024-03-01 10:22:11.781 2024-03-01 10:22:11.781 900 TIP 444714 8544 6123154 2024-03-01 10:23:14.813 2024-03-01 10:23:14.813 100 FEE 444716 18330 6060511 2024-02-25 06:03:03.739 2024-02-25 06:03:03.739 1000 STREAM 141924 15941 6060522 2024-02-25 06:06:03.778 2024-02-25 06:06:03.778 1000 STREAM 141924 21116 6060532 2024-02-25 06:07:03.785 2024-02-25 06:07:03.785 1000 STREAM 141924 20208 6060537 2024-02-25 06:11:03.807 2024-02-25 06:11:03.807 1000 STREAM 141924 686 6060539 2024-02-25 06:13:03.827 2024-02-25 06:13:03.827 1000 STREAM 141924 19309 6060540 2024-02-25 06:14:03.822 2024-02-25 06:14:03.822 1000 STREAM 141924 1800 6060542 2024-02-25 06:15:03.851 2024-02-25 06:15:03.851 1000 STREAM 141924 9345 6060548 2024-02-25 06:17:03.844 2024-02-25 06:17:03.844 1000 STREAM 141924 2734 6060549 2024-02-25 06:18:03.855 2024-02-25 06:18:03.855 1000 STREAM 141924 11523 6060550 2024-02-25 06:19:03.859 2024-02-25 06:19:03.859 1000 STREAM 141924 6687 6060733 2024-02-25 06:55:04 2024-02-25 06:55:04 1000 STREAM 141924 1141 6122027 2024-03-01 06:02:41.503 2024-03-01 06:02:41.503 4500 TIP 444015 13843 6122029 2024-03-01 06:02:46.828 2024-03-01 06:02:46.828 500 FEE 443593 15728 6122030 2024-03-01 06:02:46.828 2024-03-01 06:02:46.828 4500 TIP 443593 12334 6122040 2024-03-01 06:03:01.389 2024-03-01 06:03:01.389 5000 FEE 444525 20470 6122041 2024-03-01 06:03:01.389 2024-03-01 06:03:01.389 45000 TIP 444525 826 6122045 2024-03-01 06:03:12.345 2024-03-01 06:03:12.345 1000 FEE 444600 1286 6122049 2024-03-01 06:03:57.93 2024-03-01 06:03:57.93 800 FEE 444522 1439 6122050 2024-03-01 06:03:57.93 2024-03-01 06:03:57.93 7200 TIP 444522 7903 6122059 2024-03-01 06:04:11.65 2024-03-01 06:04:11.65 1000 FEE 444602 17519 6122070 2024-03-01 06:07:02.427 2024-03-01 06:07:02.427 2100 FEE 444597 3990 6122071 2024-03-01 06:07:02.427 2024-03-01 06:07:02.427 18900 TIP 444597 18630 6122088 2024-03-01 06:10:55.729 2024-03-01 06:10:55.729 1000 FEE 444606 679 6122089 2024-03-01 06:10:55.729 2024-03-01 06:10:55.729 9000 TIP 444606 12507 6122112 2024-03-01 06:16:58.052 2024-03-01 06:16:58.052 100 FEE 444609 19138 6122113 2024-03-01 06:16:58.052 2024-03-01 06:16:58.052 900 TIP 444609 5425 6122124 2024-03-01 06:19:50.226 2024-03-01 06:19:50.226 2100 FEE 444606 4831 6122125 2024-03-01 06:19:50.226 2024-03-01 06:19:50.226 18900 TIP 444606 15843 6122131 2024-03-01 06:22:40.246 2024-03-01 06:22:40.246 1000 FEE 444613 8173 6122153 2024-03-01 06:25:01.367 2024-03-01 06:25:01.367 1000 FEE 444564 3709 6122154 2024-03-01 06:25:01.367 2024-03-01 06:25:01.367 9000 TIP 444564 9985 6122163 2024-03-01 06:28:23.288 2024-03-01 06:28:23.288 2100 FEE 444584 19263 6122164 2024-03-01 06:28:23.288 2024-03-01 06:28:23.288 18900 TIP 444584 5759 6122185 2024-03-01 06:31:05.523 2024-03-01 06:31:05.523 1000 FEE 444618 20433 6122196 2024-03-01 06:33:16.773 2024-03-01 06:33:16.773 10000 FEE 444619 20889 6122203 2024-03-01 06:36:16.261 2024-03-01 06:36:16.261 1000 FEE 444623 21344 6122223 2024-03-01 06:42:48.514 2024-03-01 06:42:48.514 500 FEE 440592 21051 6122224 2024-03-01 06:42:48.514 2024-03-01 06:42:48.514 4500 TIP 440592 1751 6122236 2024-03-01 06:43:27.693 2024-03-01 06:43:27.693 300 FEE 148464 16145 6122237 2024-03-01 06:43:27.693 2024-03-01 06:43:27.693 2700 TIP 148464 11091 6122306 2024-03-01 06:43:59.751 2024-03-01 06:43:59.751 500 FEE 444296 977 6122307 2024-03-01 06:43:59.751 2024-03-01 06:43:59.751 4500 TIP 444296 14267 6122328 2024-03-01 06:48:32.5 2024-03-01 06:48:32.5 1000 FEE 444630 1173 6122340 2024-03-01 06:49:29.527 2024-03-01 06:49:29.527 2500 FEE 444619 12122 6122341 2024-03-01 06:49:29.527 2024-03-01 06:49:29.527 22500 TIP 444619 12122 6122355 2024-03-01 06:50:37.953 2024-03-01 06:50:37.953 2100 FEE 444384 2444 6122356 2024-03-01 06:50:37.953 2024-03-01 06:50:37.953 18900 TIP 444384 20208 6122357 2024-03-01 06:50:40.49 2024-03-01 06:50:40.49 2100 FEE 444462 629 6122358 2024-03-01 06:50:40.49 2024-03-01 06:50:40.49 18900 TIP 444462 13046 6122364 2024-03-01 06:51:15.183 2024-03-01 06:51:15.183 2100 FEE 443561 4984 6122365 2024-03-01 06:51:15.183 2024-03-01 06:51:15.183 18900 TIP 443561 21164 6122377 2024-03-01 06:54:47.715 2024-03-01 06:54:47.715 800 FEE 328872 3347 6122378 2024-03-01 06:54:47.715 2024-03-01 06:54:47.715 7200 TIP 328872 21493 6122390 2024-03-01 06:59:05.516 2024-03-01 06:59:05.516 1100 FEE 444609 18837 6122391 2024-03-01 06:59:05.516 2024-03-01 06:59:05.516 9900 TIP 444609 622 6122394 2024-03-01 07:00:36.076 2024-03-01 07:00:36.076 1000 FEE 444636 15833 6122400 2024-03-01 07:01:07.543 2024-03-01 07:01:07.543 1000 FEE 444639 19462 6122403 2024-03-01 07:02:22.333 2024-03-01 07:02:22.333 1000 FEE 444641 19941 6122407 2024-03-01 07:04:20.472 2024-03-01 07:04:20.472 100 FEE 444640 667 6122408 2024-03-01 07:04:20.472 2024-03-01 07:04:20.472 900 TIP 444640 3656 6122422 2024-03-01 07:06:21.781 2024-03-01 07:06:21.781 500 FEE 444127 5377 6122423 2024-03-01 07:06:21.781 2024-03-01 07:06:21.781 4500 TIP 444127 19841 6122444 2024-03-01 07:14:16.83 2024-03-01 07:14:16.83 1000 FEE 444649 20972 6122456 2024-03-01 07:20:16.943 2024-03-01 07:20:16.943 500 FEE 444648 18735 6122457 2024-03-01 07:20:16.943 2024-03-01 07:20:16.943 4500 TIP 444648 20564 6122458 2024-03-01 07:20:24.197 2024-03-01 07:20:24.197 0 FEE 383547 18336 6122478 2024-03-01 07:27:43.725 2024-03-01 07:27:43.725 2800 FEE 440324 15049 6122479 2024-03-01 07:27:43.725 2024-03-01 07:27:43.725 25200 TIP 440324 1488 6060515 2024-02-25 06:04:03.765 2024-02-25 06:04:03.765 1000 STREAM 141924 16230 6060521 2024-02-25 06:05:03.776 2024-02-25 06:05:03.776 1000 STREAM 141924 2402 6060534 2024-02-25 06:08:03.8 2024-02-25 06:08:03.8 1000 STREAM 141924 21453 6060535 2024-02-25 06:09:03.801 2024-02-25 06:09:03.801 1000 STREAM 141924 20129 6060536 2024-02-25 06:10:03.806 2024-02-25 06:10:03.806 1000 STREAM 141924 9331 6060538 2024-02-25 06:12:03.813 2024-02-25 06:12:03.813 1000 STREAM 141924 19938 6060546 2024-02-25 06:16:03.848 2024-02-25 06:16:03.848 1000 STREAM 141924 721 6122055 2024-03-01 06:04:08.902 2024-03-01 06:04:08.902 800 FEE 444552 8664 6122056 2024-03-01 06:04:08.902 2024-03-01 06:04:08.902 7200 TIP 444552 15367 6122060 2024-03-01 06:04:18.209 2024-03-01 06:04:18.209 500 FEE 443179 2543 6122061 2024-03-01 06:04:18.209 2024-03-01 06:04:18.209 4500 TIP 443179 4391 6122068 2024-03-01 06:06:59.105 2024-03-01 06:06:59.105 100 FEE 444511 18169 6122069 2024-03-01 06:06:59.105 2024-03-01 06:06:59.105 900 TIP 444511 15594 6122104 2024-03-01 06:13:54.314 2024-03-01 06:13:54.314 100 FEE 444570 21287 6122105 2024-03-01 06:13:54.314 2024-03-01 06:13:54.314 900 TIP 444570 12265 6122109 2024-03-01 06:15:26.157 2024-03-01 06:15:26.157 0 FEE 444608 14074 6122111 2024-03-01 06:16:35.971 2024-03-01 06:16:35.971 100000 FEE 444609 20023 6122126 2024-03-01 06:19:53.721 2024-03-01 06:19:53.721 1000 FEE 444611 9 6122188 2024-03-01 06:31:28.043 2024-03-01 06:31:28.043 100 FEE 444168 4014 6122189 2024-03-01 06:31:28.043 2024-03-01 06:31:28.043 900 TIP 444168 11967 6122191 2024-03-01 06:32:15.852 2024-03-01 06:32:15.852 800 FEE 444609 10693 6122192 2024-03-01 06:32:15.852 2024-03-01 06:32:15.852 7200 TIP 444609 5499 6122193 2024-03-01 06:32:19.725 2024-03-01 06:32:19.725 800 FEE 444609 9845 6122194 2024-03-01 06:32:19.725 2024-03-01 06:32:19.725 7200 TIP 444609 20812 6122206 2024-03-01 06:36:28.189 2024-03-01 06:36:28.189 1500 FEE 444519 14669 6122207 2024-03-01 06:36:28.189 2024-03-01 06:36:28.189 13500 TIP 444519 19153 6122250 2024-03-01 06:43:28.961 2024-03-01 06:43:28.961 300 FEE 148464 5377 6122251 2024-03-01 06:43:28.961 2024-03-01 06:43:28.961 2700 TIP 148464 21116 6122282 2024-03-01 06:43:32.355 2024-03-01 06:43:32.355 300 FEE 148464 19826 6122283 2024-03-01 06:43:32.355 2024-03-01 06:43:32.355 2700 TIP 148464 11417 6122325 2024-03-01 06:47:57.937 2024-03-01 06:47:57.937 2100 FEE 444168 16970 6122326 2024-03-01 06:47:57.937 2024-03-01 06:47:57.937 18900 TIP 444168 20168 6122350 2024-03-01 06:49:55.086 2024-03-01 06:49:55.086 100000 FEE 444631 16594 6122371 2024-03-01 06:52:44.128 2024-03-01 06:52:44.128 2100 FEE 444631 5538 6122372 2024-03-01 06:52:44.128 2024-03-01 06:52:44.128 18900 TIP 444631 19016 6122388 2024-03-01 06:58:56.994 2024-03-01 06:58:56.994 1000 FEE 444634 1490 6122440 2024-03-01 07:12:47.342 2024-03-01 07:12:47.342 21000 FEE 444647 638 6122443 2024-03-01 07:14:10.269 2024-03-01 07:14:10.269 10000 FEE 444648 6594 6122463 2024-03-01 07:22:16.77 2024-03-01 07:22:16.77 100 FEE 444630 12072 6122464 2024-03-01 07:22:16.77 2024-03-01 07:22:16.77 900 TIP 444630 2596 6122474 2024-03-01 07:27:30.243 2024-03-01 07:27:30.243 2800 FEE 440324 19096 6122475 2024-03-01 07:27:30.243 2024-03-01 07:27:30.243 25200 TIP 440324 1493 6122519 2024-03-01 07:45:25.126 2024-03-01 07:45:25.126 1000 FEE 444602 2459 6122520 2024-03-01 07:45:25.126 2024-03-01 07:45:25.126 9000 TIP 444602 4014 6122542 2024-03-01 07:53:43.393 2024-03-01 07:53:43.393 6400 FEE 444648 20744 6122543 2024-03-01 07:53:43.393 2024-03-01 07:53:43.393 57600 TIP 444648 1046 6122556 2024-03-01 08:00:05.772 2024-03-01 08:00:05.772 1000 FEE 444661 6616 6122592 2024-03-01 08:10:58.4 2024-03-01 08:10:58.4 1000 FEE 444664 9184 6122596 2024-03-01 08:11:10.049 2024-03-01 08:11:10.049 0 FEE 444664 10112 6122597 2024-03-01 08:11:26.952 2024-03-01 08:11:26.952 1000 FEE 437990 13198 6122598 2024-03-01 08:11:26.952 2024-03-01 08:11:26.952 9000 TIP 437990 21042 6122628 2024-03-01 08:23:02.594 2024-03-01 08:23:02.594 1000 FEE 444496 21136 6122629 2024-03-01 08:23:02.594 2024-03-01 08:23:02.594 9000 TIP 444496 21212 6122640 2024-03-01 08:28:28.654 2024-03-01 08:28:28.654 1000 FEE 444668 6471 6122659 2024-03-01 08:31:04.927 2024-03-01 08:31:04.927 2800 FEE 444166 16282 6122660 2024-03-01 08:31:04.927 2024-03-01 08:31:04.927 25200 TIP 444166 4313 6122664 2024-03-01 08:31:45.621 2024-03-01 08:31:45.621 2800 FEE 443553 8841 6122665 2024-03-01 08:31:45.621 2024-03-01 08:31:45.621 25200 TIP 443553 12272 6122699 2024-03-01 08:50:19.902 2024-03-01 08:50:19.902 100 FEE 444168 15521 6122700 2024-03-01 08:50:19.902 2024-03-01 08:50:19.902 900 TIP 444168 21605 6122707 2024-03-01 08:50:22.888 2024-03-01 08:50:22.888 100 FEE 444168 16042 6122708 2024-03-01 08:50:22.888 2024-03-01 08:50:22.888 900 TIP 444168 18264 6122709 2024-03-01 08:50:23.311 2024-03-01 08:50:23.311 100 FEE 444168 679 6122710 2024-03-01 08:50:23.311 2024-03-01 08:50:23.311 900 TIP 444168 11417 6122724 2024-03-01 08:57:29.651 2024-03-01 08:57:29.651 700 FEE 444677 20674 6122725 2024-03-01 08:57:29.651 2024-03-01 08:57:29.651 6300 TIP 444677 19639 6122763 2024-03-01 09:12:08.953 2024-03-01 09:12:08.953 1000 FEE 444683 12261 6122788 2024-03-01 09:19:55.291 2024-03-01 09:19:55.291 2100 FEE 444570 13361 6122789 2024-03-01 09:19:55.291 2024-03-01 09:19:55.291 18900 TIP 444570 11516 6122799 2024-03-01 09:21:17.007 2024-03-01 09:21:17.007 2100 FEE 442416 2780 6122800 2024-03-01 09:21:17.007 2024-03-01 09:21:17.007 18900 TIP 442416 11967 6122801 2024-03-01 09:21:18.198 2024-03-01 09:21:18.198 2100 FEE 442416 3544 6122802 2024-03-01 09:21:18.198 2024-03-01 09:21:18.198 18900 TIP 442416 3683 6122813 2024-03-01 09:27:33.666 2024-03-01 09:27:33.666 1000 FEE 444677 836 6122814 2024-03-01 09:27:33.666 2024-03-01 09:27:33.666 9000 TIP 444677 1175 6122819 2024-03-01 09:27:35.077 2024-03-01 09:27:35.077 1000 FEE 444660 16193 6122820 2024-03-01 09:27:35.077 2024-03-01 09:27:35.077 9000 TIP 444660 1836 6122835 2024-03-01 09:27:40.889 2024-03-01 09:27:40.889 1000 FEE 444638 11443 6122836 2024-03-01 09:27:40.889 2024-03-01 09:27:40.889 9000 TIP 444638 11561 6122841 2024-03-01 09:27:42.595 2024-03-01 09:27:42.595 1000 FEE 444631 803 6122842 2024-03-01 09:27:42.595 2024-03-01 09:27:42.595 9000 TIP 444631 16440 6122843 2024-03-01 09:27:42.937 2024-03-01 09:27:42.937 10000 FEE 444687 9551 6122844 2024-03-01 09:27:43.207 2024-03-01 09:27:43.207 1000 FEE 444609 18837 6122845 2024-03-01 09:27:43.207 2024-03-01 09:27:43.207 9000 TIP 444609 1564 6122870 2024-03-01 09:37:05.839 2024-03-01 09:37:05.839 100 FEE 313773 20066 6122871 2024-03-01 09:37:05.839 2024-03-01 09:37:05.839 900 TIP 313773 10063 6122888 2024-03-01 09:45:13.218 2024-03-01 09:45:13.218 200 FEE 438670 21620 6122889 2024-03-01 09:45:13.218 2024-03-01 09:45:13.218 1800 TIP 438670 18403 6122892 2024-03-01 09:45:14.865 2024-03-01 09:45:14.865 200 FEE 438670 20606 6122893 2024-03-01 09:45:14.865 2024-03-01 09:45:14.865 1800 TIP 438670 20258 6122898 2024-03-01 09:45:38.64 2024-03-01 09:45:38.64 0 FEE 444692 624 6122931 2024-03-01 09:55:19.571 2024-03-01 09:55:19.571 2100 FEE 444168 18068 6122932 2024-03-01 09:55:19.571 2024-03-01 09:55:19.571 18900 TIP 444168 20657 6122947 2024-03-01 09:55:45.24 2024-03-01 09:55:45.24 100000 FEE 437035 2718 6122948 2024-03-01 09:55:45.24 2024-03-01 09:55:45.24 900000 TIP 437035 18351 6122961 2024-03-01 09:57:05.256 2024-03-01 09:57:05.256 1000 FEE 444102 21136 6122962 2024-03-01 09:57:05.256 2024-03-01 09:57:05.256 9000 TIP 444102 676 6122963 2024-03-01 09:57:10.136 2024-03-01 09:57:10.136 1000 FEE 443274 4027 6122964 2024-03-01 09:57:10.136 2024-03-01 09:57:10.136 9000 TIP 443274 20430 6123010 2024-03-01 10:06:52.405 2024-03-01 10:06:52.405 100 FEE 444700 2734 6123011 2024-03-01 10:06:52.405 2024-03-01 10:06:52.405 900 TIP 444700 16929 6123012 2024-03-01 10:06:52.627 2024-03-01 10:06:52.627 100 FEE 444700 10536 6123013 2024-03-01 10:06:52.627 2024-03-01 10:06:52.627 900 TIP 444700 21083 6123045 2024-03-01 10:10:26.887 2024-03-01 10:10:26.887 5700 FEE 444662 6499 6123046 2024-03-01 10:10:26.887 2024-03-01 10:10:26.887 51300 TIP 444662 5175 6060518 2024-02-25 06:04:48.403 2024-02-25 06:04:48.403 9900 TIP 437893 5806 6060525 2024-02-25 06:06:12.127 2024-02-25 06:06:12.127 800 FEE 437945 17891 6060526 2024-02-25 06:06:12.127 2024-02-25 06:06:12.127 7200 TIP 437945 21599 6060551 2024-02-25 06:19:26.296 2024-02-25 06:19:26.296 10000 FEE 437611 21072 6060552 2024-02-25 06:19:26.296 2024-02-25 06:19:26.296 90000 TIP 437611 17693 6060564 2024-02-25 06:26:07.336 2024-02-25 06:26:07.336 800 FEE 437893 6594 6060565 2024-02-25 06:26:07.336 2024-02-25 06:26:07.336 7200 TIP 437893 11288 6060575 2024-02-25 06:26:57.02 2024-02-25 06:26:57.02 100 FEE 437965 4624 6060576 2024-02-25 06:26:57.02 2024-02-25 06:26:57.02 900 TIP 437965 1650 6060579 2024-02-25 06:28:27.516 2024-02-25 06:28:27.516 1000 FEE 437972 21019 6060585 2024-02-25 06:29:22.215 2024-02-25 06:29:22.215 2100 FEE 437589 19096 6060586 2024-02-25 06:29:22.215 2024-02-25 06:29:22.215 18900 TIP 437589 19633 6060600 2024-02-25 06:32:33.711 2024-02-25 06:32:33.711 7700 FEE 437631 909 6060601 2024-02-25 06:32:33.711 2024-02-25 06:32:33.711 69300 TIP 437631 11288 6060622 2024-02-25 06:33:04.951 2024-02-25 06:33:04.951 7700 FEE 437631 4059 6060623 2024-02-25 06:33:04.951 2024-02-25 06:33:04.951 69300 TIP 437631 18452 6060642 2024-02-25 06:37:31.651 2024-02-25 06:37:31.651 900 FEE 437947 17673 6060643 2024-02-25 06:37:31.651 2024-02-25 06:37:31.651 8100 TIP 437947 16126 6060653 2024-02-25 06:38:27.262 2024-02-25 06:38:27.262 100 FEE 437966 21422 6060654 2024-02-25 06:38:27.262 2024-02-25 06:38:27.262 900 TIP 437966 4048 6060695 2024-02-25 06:45:18.038 2024-02-25 06:45:18.038 800 FEE 437713 756 6060696 2024-02-25 06:45:18.038 2024-02-25 06:45:18.038 7200 TIP 437713 9916 6060712 2024-02-25 06:48:57.393 2024-02-25 06:48:57.393 6900 FEE 437958 5160 6060713 2024-02-25 06:48:57.393 2024-02-25 06:48:57.393 62100 TIP 437958 9200 6060742 2024-02-25 07:00:04.499 2024-02-25 07:00:04.499 100000 FEE 437984 659 6060768 2024-02-25 07:02:40.772 2024-02-25 07:02:40.772 1000 FEE 437982 18836 6060769 2024-02-25 07:02:40.772 2024-02-25 07:02:40.772 9000 TIP 437982 1596 6060782 2024-02-25 07:04:43.656 2024-02-25 07:04:43.656 1000 FEE 437988 9552 6060787 2024-02-25 07:05:20.284 2024-02-25 07:05:20.284 1000 FEE 437990 21371 6060793 2024-02-25 07:08:12.6 2024-02-25 07:08:12.6 21000 FEE 437992 18526 6060818 2024-02-25 07:16:32.648 2024-02-25 07:16:32.648 1000 FEE 437769 16536 6060819 2024-02-25 07:16:32.648 2024-02-25 07:16:32.648 9000 TIP 437769 18017 6060828 2024-02-25 07:21:00.442 2024-02-25 07:21:00.442 1000 FEE 437042 19622 6060829 2024-02-25 07:21:00.442 2024-02-25 07:21:00.442 9000 TIP 437042 1628 6060839 2024-02-25 07:28:18.014 2024-02-25 07:28:18.014 2100 FEE 437955 12097 6060840 2024-02-25 07:28:18.014 2024-02-25 07:28:18.014 18900 TIP 437955 1354 6060856 2024-02-25 07:39:29.421 2024-02-25 07:39:29.421 1000 FEE 437999 21037 6060884 2024-02-25 07:55:58.212 2024-02-25 07:55:58.212 2100 FEE 437996 18984 6060885 2024-02-25 07:55:58.212 2024-02-25 07:55:58.212 18900 TIP 437996 20153 6060924 2024-02-25 08:08:25.519 2024-02-25 08:08:25.519 2100 FEE 437966 19471 6060925 2024-02-25 08:08:25.519 2024-02-25 08:08:25.519 18900 TIP 437966 19284 6060934 2024-02-25 08:08:51.458 2024-02-25 08:08:51.458 1000 FEE 436440 5499 6060935 2024-02-25 08:08:51.458 2024-02-25 08:08:51.458 9000 TIP 436440 11873 6060942 2024-02-25 08:08:54.783 2024-02-25 08:08:54.783 1000 FEE 434722 16356 6060943 2024-02-25 08:08:54.783 2024-02-25 08:08:54.783 9000 TIP 434722 2773 6060951 2024-02-25 08:09:21.985 2024-02-25 08:09:21.985 1000 FEE 437800 4048 6060952 2024-02-25 08:09:21.985 2024-02-25 08:09:21.985 9000 TIP 437800 15337 6061003 2024-02-25 08:11:14.167 2024-02-25 08:11:14.167 1000 FEE 437850 4035 6061004 2024-02-25 08:11:14.167 2024-02-25 08:11:14.167 9000 TIP 437850 19449 6061005 2024-02-25 08:11:16.482 2024-02-25 08:11:16.482 1000 FEE 437276 4035 6061006 2024-02-25 08:11:16.482 2024-02-25 08:11:16.482 9000 TIP 437276 4798 6061015 2024-02-25 08:11:20.184 2024-02-25 08:11:20.184 1000 FEE 437714 5129 6061016 2024-02-25 08:11:20.184 2024-02-25 08:11:20.184 9000 TIP 437714 6688 6061021 2024-02-25 08:11:23.573 2024-02-25 08:11:23.573 1000 FEE 437408 635 6061022 2024-02-25 08:11:23.573 2024-02-25 08:11:23.573 9000 TIP 437408 15226 6061052 2024-02-25 08:14:36.449 2024-02-25 08:14:36.449 0 FEE 438008 805 6061060 2024-02-25 08:17:13.495 2024-02-25 08:17:13.495 1000 FEE 437726 641 6061061 2024-02-25 08:17:13.495 2024-02-25 08:17:13.495 9000 TIP 437726 19640 6061076 2024-02-25 08:23:16.249 2024-02-25 08:23:16.249 1000 FEE 437846 18154 6061077 2024-02-25 08:23:16.249 2024-02-25 08:23:16.249 9000 TIP 437846 20450 6061105 2024-02-25 08:29:11.17 2024-02-25 08:29:11.17 1000 FEE 438019 21238 6061110 2024-02-25 08:31:55.326 2024-02-25 08:31:55.326 10000 FEE 437893 686 6061111 2024-02-25 08:31:55.326 2024-02-25 08:31:55.326 90000 TIP 437893 20573 6061113 2024-02-25 08:32:37.867 2024-02-25 08:32:37.867 1000 FEE 438020 3377 6061169 2024-02-25 08:50:24.472 2024-02-25 08:50:24.472 2100 FEE 438002 780 6061170 2024-02-25 08:50:24.472 2024-02-25 08:50:24.472 18900 TIP 438002 20479 6061228 2024-02-25 09:06:39.605 2024-02-25 09:06:39.605 100 FEE 437992 20084 6061229 2024-02-25 09:06:39.605 2024-02-25 09:06:39.605 900 TIP 437992 14247 6061239 2024-02-25 09:09:02.12 2024-02-25 09:09:02.12 2100 FEE 437100 16858 6061240 2024-02-25 09:09:02.12 2024-02-25 09:09:02.12 18900 TIP 437100 11498 6061264 2024-02-25 09:21:08.87 2024-02-25 09:21:08.87 1000 FEE 437966 11275 6061265 2024-02-25 09:21:08.87 2024-02-25 09:21:08.87 9000 TIP 437966 19446 6061285 2024-02-25 09:32:55.53 2024-02-25 09:32:55.53 1000 FEE 438042 675 6061305 2024-02-25 09:37:21.628 2024-02-25 09:37:21.628 1000 FEE 438047 21494 6061309 2024-02-25 09:38:13.505 2024-02-25 09:38:13.505 0 FEE 438049 21040 6061328 2024-02-25 09:45:24.649 2024-02-25 09:45:24.649 100000 FEE 438051 718 6061384 2024-02-25 10:06:34.088 2024-02-25 10:06:34.088 2100 FEE 437965 1474 6061385 2024-02-25 10:06:34.088 2024-02-25 10:06:34.088 18900 TIP 437965 6136 6061386 2024-02-25 10:06:34.627 2024-02-25 10:06:34.627 2100 FEE 437992 2328 6061387 2024-02-25 10:06:34.627 2024-02-25 10:06:34.627 18900 TIP 437992 12024 6061398 2024-02-25 10:07:01.694 2024-02-25 10:07:01.694 2100 FEE 437840 1114 6061399 2024-02-25 10:07:01.694 2024-02-25 10:07:01.694 18900 TIP 437840 15806 6061400 2024-02-25 10:07:02.389 2024-02-25 10:07:02.389 2100 FEE 437835 5779 6061401 2024-02-25 10:07:02.389 2024-02-25 10:07:02.389 18900 TIP 437835 17166 6061426 2024-02-25 10:09:07.56 2024-02-25 10:09:07.56 1000 FEE 438060 4035 6061437 2024-02-25 10:10:39.062 2024-02-25 10:10:39.062 2100 FEE 437888 8045 6061438 2024-02-25 10:10:39.062 2024-02-25 10:10:39.062 18900 TIP 437888 670 6061440 2024-02-25 10:11:34.752 2024-02-25 10:11:34.752 2100 FEE 437835 15938 6061441 2024-02-25 10:11:34.752 2024-02-25 10:11:34.752 18900 TIP 437835 704 6061451 2024-02-25 10:13:05.218 2024-02-25 10:13:05.218 2100 FEE 437817 20551 6061452 2024-02-25 10:13:05.218 2024-02-25 10:13:05.218 18900 TIP 437817 12346 6061455 2024-02-25 10:13:50.975 2024-02-25 10:13:50.975 2100 FEE 437670 3411 6061456 2024-02-25 10:13:50.975 2024-02-25 10:13:50.975 18900 TIP 437670 7760 6061464 2024-02-25 10:14:25.112 2024-02-25 10:14:25.112 2100 FEE 437653 979 6061465 2024-02-25 10:14:25.112 2024-02-25 10:14:25.112 18900 TIP 437653 1221 6061468 2024-02-25 10:14:44.284 2024-02-25 10:14:44.284 100 FEE 436720 19289 6061469 2024-02-25 10:14:44.284 2024-02-25 10:14:44.284 900 TIP 436720 14939 6061480 2024-02-25 10:18:00.495 2024-02-25 10:18:00.495 0 FEE 438069 21547 6061510 2024-02-25 10:26:14.876 2024-02-25 10:26:14.876 2100 FEE 436093 18468 6061511 2024-02-25 10:26:14.876 2024-02-25 10:26:14.876 18900 TIP 436093 21421 6061573 2024-02-25 10:39:34.572 2024-02-25 10:39:34.572 2100 FEE 438002 10934 6061574 2024-02-25 10:39:34.572 2024-02-25 10:39:34.572 18900 TIP 438002 12965 6061576 2024-02-25 10:40:47.153 2024-02-25 10:40:47.153 0 FEE 438076 6419 6061609 2024-02-25 10:54:30.221 2024-02-25 10:54:30.221 1000 FEE 438089 11821 6061656 2024-02-25 11:12:45.396 2024-02-25 11:12:45.396 4000 FEE 438088 891 6060533 2024-02-25 06:07:57.801 2024-02-25 06:07:57.801 1000 FEE 437967 5085 6060553 2024-02-25 06:20:04.372 2024-02-25 06:20:04.372 1000 STREAM 141924 678 6060555 2024-02-25 06:22:04.33 2024-02-25 06:22:04.33 1000 STREAM 141924 20246 6060556 2024-02-25 06:23:04.345 2024-02-25 06:23:04.345 1000 STREAM 141924 20006 6060557 2024-02-25 06:24:04.362 2024-02-25 06:24:04.362 1000 STREAM 141924 1576 6060559 2024-02-25 06:26:04.384 2024-02-25 06:26:04.384 1000 STREAM 141924 1195 6122097 2024-03-01 06:12:04.705 2024-03-01 06:12:04.705 1000 STREAM 141924 10352 6060554 2024-02-25 06:21:04.329 2024-02-25 06:21:04.329 1000 STREAM 141924 5942 6060558 2024-02-25 06:25:04.361 2024-02-25 06:25:04.361 1000 STREAM 141924 650 6060593 2024-02-25 06:32:04.495 2024-02-25 06:32:04.495 1000 STREAM 141924 6499 6060626 2024-02-25 06:34:04.51 2024-02-25 06:34:04.51 1000 STREAM 141924 17953 6122116 2024-03-01 06:17:03.372 2024-03-01 06:17:03.372 1000 STREAM 141924 1512 6122122 2024-03-01 06:18:03.376 2024-03-01 06:18:03.376 1000 STREAM 141924 7913 6122123 2024-03-01 06:19:03.376 2024-03-01 06:19:03.376 1000 STREAM 141924 642 6122127 2024-03-01 06:20:03.406 2024-03-01 06:20:03.406 1000 STREAM 141924 762 6122130 2024-03-01 06:22:03.387 2024-03-01 06:22:03.387 1000 STREAM 141924 985 6122132 2024-03-01 06:23:03.399 2024-03-01 06:23:03.399 1000 STREAM 141924 21061 6060577 2024-02-25 06:27:02.994 2024-02-25 06:27:02.994 1000 STREAM 141924 18518 6060578 2024-02-25 06:28:02.975 2024-02-25 06:28:02.975 1000 STREAM 141924 16350 6060592 2024-02-25 06:31:02.98 2024-02-25 06:31:02.98 1000 STREAM 141924 2098 6060635 2024-02-25 06:37:03.066 2024-02-25 06:37:03.066 1000 STREAM 141924 19570 6060665 2024-02-25 06:40:03.113 2024-02-25 06:40:03.113 1000 STREAM 141924 18454 6060718 2024-02-25 06:50:03.132 2024-02-25 06:50:03.132 1000 STREAM 141924 5809 6060719 2024-02-25 06:51:03.123 2024-02-25 06:51:03.123 1000 STREAM 141924 9099 6060722 2024-02-25 06:53:03.123 2024-02-25 06:53:03.123 1000 STREAM 141924 9150 6060779 2024-02-25 07:03:03.408 2024-02-25 07:03:03.408 1000 STREAM 141924 2000 6122148 2024-03-01 06:24:03.098 2024-03-01 06:24:03.098 1000 STREAM 141924 18945 6122155 2024-03-01 06:25:03.119 2024-03-01 06:25:03.119 1000 STREAM 141924 18271 6122160 2024-03-01 06:28:03.117 2024-03-01 06:28:03.117 1000 STREAM 141924 8448 6122190 2024-03-01 06:32:03.169 2024-03-01 06:32:03.169 1000 STREAM 141924 20817 6122195 2024-03-01 06:33:03.19 2024-03-01 06:33:03.19 1000 STREAM 141924 2757 6122199 2024-03-01 06:35:03.215 2024-03-01 06:35:03.215 1000 STREAM 141924 19660 6122211 2024-03-01 06:37:03.207 2024-03-01 06:37:03.207 1000 STREAM 141924 20799 6122212 2024-03-01 06:38:03.215 2024-03-01 06:38:03.215 1000 STREAM 141924 17446 6122213 2024-03-01 06:39:03.224 2024-03-01 06:39:03.224 1000 STREAM 141924 16505 6122217 2024-03-01 06:42:03.244 2024-03-01 06:42:03.244 1000 STREAM 141924 20272 6122313 2024-03-01 06:46:03.45 2024-03-01 06:46:03.45 1000 STREAM 141924 17592 6122327 2024-03-01 06:48:05.532 2024-03-01 06:48:05.532 1000 STREAM 141924 5809 6122331 2024-03-01 06:49:03.539 2024-03-01 06:49:03.539 1000 STREAM 141924 21609 6122384 2024-03-01 06:55:03.558 2024-03-01 06:55:03.558 1000 STREAM 141924 725 6122389 2024-03-01 06:59:03.591 2024-03-01 06:59:03.591 1000 STREAM 141924 9517 6060583 2024-02-25 06:28:42.291 2024-02-25 06:28:42.291 7200 TIP 437893 5003 6060587 2024-02-25 06:29:27.207 2024-02-25 06:29:27.207 800 FEE 437971 10342 6060588 2024-02-25 06:29:27.207 2024-02-25 06:29:27.207 7200 TIP 437971 16956 6060615 2024-02-25 06:33:00.919 2024-02-25 06:33:00.919 800 FEE 437276 1429 6060616 2024-02-25 06:33:00.919 2024-02-25 06:33:00.919 7200 TIP 437276 12245 6060630 2024-02-25 06:35:08.773 2024-02-25 06:35:08.773 800 FEE 437966 5175 6060631 2024-02-25 06:35:08.773 2024-02-25 06:35:08.773 7200 TIP 437966 17091 6060632 2024-02-25 06:35:11.497 2024-02-25 06:35:11.497 800 FEE 437970 11091 6060633 2024-02-25 06:35:11.497 2024-02-25 06:35:11.497 7200 TIP 437970 1039 6060657 2024-02-25 06:38:28.154 2024-02-25 06:38:28.154 9000 FEE 437966 9982 6060658 2024-02-25 06:38:28.154 2024-02-25 06:38:28.154 81000 TIP 437966 20577 6060668 2024-02-25 06:41:41.093 2024-02-25 06:41:41.093 6900 FEE 437868 16301 6060669 2024-02-25 06:41:41.093 2024-02-25 06:41:41.093 62100 TIP 437868 21139 6060672 2024-02-25 06:41:57.311 2024-02-25 06:41:57.311 800 FEE 437731 16679 6060673 2024-02-25 06:41:57.311 2024-02-25 06:41:57.311 7200 TIP 437731 20251 6060732 2024-02-25 06:54:42.988 2024-02-25 06:54:42.988 100000 DONT_LIKE_THIS 437839 19459 6060801 2024-02-25 07:10:27.039 2024-02-25 07:10:27.039 2100 FEE 437732 2088 6060802 2024-02-25 07:10:27.039 2024-02-25 07:10:27.039 18900 TIP 437732 8569 6060827 2024-02-25 07:20:53.706 2024-02-25 07:20:53.706 1000 FEE 437997 1136 6060836 2024-02-25 07:26:35.475 2024-02-25 07:26:35.475 1000 FEE 437998 21514 6060889 2024-02-25 07:56:06.568 2024-02-25 07:56:06.568 5000 FEE 437723 8841 6060890 2024-02-25 07:56:06.568 2024-02-25 07:56:06.568 45000 TIP 437723 20710 6060911 2024-02-25 08:06:03.448 2024-02-25 08:06:03.448 1000 FEE 437839 17944 6060912 2024-02-25 08:06:03.448 2024-02-25 08:06:03.448 9000 TIP 437839 16282 6060915 2024-02-25 08:06:58.648 2024-02-25 08:06:58.648 5000 FEE 437937 16942 6060916 2024-02-25 08:06:58.648 2024-02-25 08:06:58.648 45000 TIP 437937 16267 6060961 2024-02-25 08:09:38.087 2024-02-25 08:09:38.087 1000 FEE 437955 10342 6060962 2024-02-25 08:09:38.087 2024-02-25 08:09:38.087 9000 TIP 437955 21578 6060995 2024-02-25 08:11:07.071 2024-02-25 08:11:07.071 1000 FEE 437815 18265 6060996 2024-02-25 08:11:07.071 2024-02-25 08:11:07.071 9000 TIP 437815 18372 6061023 2024-02-25 08:11:23.837 2024-02-25 08:11:23.837 1000 FEE 437531 10611 6061024 2024-02-25 08:11:23.837 2024-02-25 08:11:23.837 9000 TIP 437531 713 6060584 2024-02-25 06:29:02.983 2024-02-25 06:29:02.983 1000 STREAM 141924 19929 6060591 2024-02-25 06:30:03.01 2024-02-25 06:30:03.01 1000 STREAM 141924 16956 6060627 2024-02-25 06:35:03.071 2024-02-25 06:35:03.071 1000 STREAM 141924 16348 6060634 2024-02-25 06:36:03.053 2024-02-25 06:36:03.053 1000 STREAM 141924 5565 6060652 2024-02-25 06:38:03.069 2024-02-25 06:38:03.069 1000 STREAM 141924 16351 6060663 2024-02-25 06:39:03.079 2024-02-25 06:39:03.079 1000 STREAM 141924 7891 6060604 2024-02-25 06:32:34.053 2024-02-25 06:32:34.053 7700 FEE 437631 13399 6060605 2024-02-25 06:32:34.053 2024-02-25 06:32:34.053 69300 TIP 437631 15925 6060610 2024-02-25 06:32:59.36 2024-02-25 06:32:59.36 1000 FEE 437973 11417 6060613 2024-02-25 06:33:00.746 2024-02-25 06:33:00.746 800 FEE 437276 19446 6060614 2024-02-25 06:33:00.746 2024-02-25 06:33:00.746 7200 TIP 437276 18736 6060646 2024-02-25 06:37:41.722 2024-02-25 06:37:41.722 900 FEE 437955 17082 6060647 2024-02-25 06:37:41.722 2024-02-25 06:37:41.722 8100 TIP 437955 3400 6060664 2024-02-25 06:39:23.639 2024-02-25 06:39:23.639 1000 FEE 437974 1012 6060678 2024-02-25 06:43:29.201 2024-02-25 06:43:29.201 1000 FEE 437976 2224 6060679 2024-02-25 06:43:52.442 2024-02-25 06:43:52.442 6900 FEE 437861 5112 6060680 2024-02-25 06:43:52.442 2024-02-25 06:43:52.442 62100 TIP 437861 20157 6060689 2024-02-25 06:45:14.162 2024-02-25 06:45:14.162 800 FEE 437670 19103 6060690 2024-02-25 06:45:14.162 2024-02-25 06:45:14.162 7200 TIP 437670 18309 6060693 2024-02-25 06:45:17.836 2024-02-25 06:45:17.836 800 FEE 437713 12097 6060694 2024-02-25 06:45:17.836 2024-02-25 06:45:17.836 7200 TIP 437713 732 6060697 2024-02-25 06:45:27.338 2024-02-25 06:45:27.338 800 FEE 437722 5758 6060698 2024-02-25 06:45:27.338 2024-02-25 06:45:27.338 7200 TIP 437722 9036 6060716 2024-02-25 06:49:23.671 2024-02-25 06:49:23.671 200 FEE 437539 1823 6060717 2024-02-25 06:49:23.671 2024-02-25 06:49:23.671 1800 TIP 437539 10060 6060738 2024-02-25 06:58:43.814 2024-02-25 06:58:43.814 10100 FEE 437981 20495 6060739 2024-02-25 06:58:43.814 2024-02-25 06:58:43.814 90900 TIP 437981 981 6060747 2024-02-25 07:01:49.581 2024-02-25 07:01:49.581 1000 FEE 437972 2789 6060748 2024-02-25 07:01:49.581 2024-02-25 07:01:49.581 9000 TIP 437972 2757 6060749 2024-02-25 07:01:49.717 2024-02-25 07:01:49.717 1000 FEE 437972 10668 6060750 2024-02-25 07:01:49.717 2024-02-25 07:01:49.717 9000 TIP 437972 15180 6060751 2024-02-25 07:01:50.154 2024-02-25 07:01:50.154 1000 FEE 437972 8713 6060752 2024-02-25 07:01:50.154 2024-02-25 07:01:50.154 9000 TIP 437972 18076 6060763 2024-02-25 07:01:53.929 2024-02-25 07:01:53.929 1000 FEE 437972 638 6060764 2024-02-25 07:01:53.929 2024-02-25 07:01:53.929 9000 TIP 437972 15088 6060781 2024-02-25 07:04:27.399 2024-02-25 07:04:27.399 1000 FEE 437987 20251 6060786 2024-02-25 07:05:09.309 2024-02-25 07:05:09.309 1000 FEE 437989 960 6060845 2024-02-25 07:30:27.992 2024-02-25 07:30:27.992 1600 FEE 437670 616 6060846 2024-02-25 07:30:27.992 2024-02-25 07:30:27.992 14400 TIP 437670 21263 6060878 2024-02-25 07:52:53.284 2024-02-25 07:52:53.284 700 FEE 437681 20264 6060879 2024-02-25 07:52:53.284 2024-02-25 07:52:53.284 6300 TIP 437681 21060 6060881 2024-02-25 07:53:48.842 2024-02-25 07:53:48.842 1000 FEE 438000 8416 6060949 2024-02-25 08:09:16.352 2024-02-25 08:09:16.352 1000 FEE 437516 10944 6060950 2024-02-25 08:09:16.352 2024-02-25 08:09:16.352 9000 TIP 437516 20299 6060957 2024-02-25 08:09:35.593 2024-02-25 08:09:35.593 1000 FEE 437269 9342 6060958 2024-02-25 08:09:35.593 2024-02-25 08:09:35.593 9000 TIP 437269 688 6060977 2024-02-25 08:09:58.564 2024-02-25 08:09:58.564 1000 FEE 437863 20258 6060978 2024-02-25 08:09:58.564 2024-02-25 08:09:58.564 9000 TIP 437863 20015 6060981 2024-02-25 08:09:59.175 2024-02-25 08:09:59.175 1000 FEE 437775 7986 6060982 2024-02-25 08:09:59.175 2024-02-25 08:09:59.175 9000 TIP 437775 21178 6061011 2024-02-25 08:11:19.481 2024-02-25 08:11:19.481 1000 FEE 437646 749 6061012 2024-02-25 08:11:19.481 2024-02-25 08:11:19.481 9000 TIP 437646 15060 6061017 2024-02-25 08:11:20.476 2024-02-25 08:11:20.476 1000 FEE 437965 1030 6061018 2024-02-25 08:11:20.476 2024-02-25 08:11:20.476 9000 TIP 437965 3456 6061041 2024-02-25 08:13:17.632 2024-02-25 08:13:17.632 1000 FEE 437991 20062 6061042 2024-02-25 08:13:17.632 2024-02-25 08:13:17.632 9000 TIP 437991 17172 6061043 2024-02-25 08:13:27.618 2024-02-25 08:13:27.618 42000 FEE 437531 19905 6061044 2024-02-25 08:13:27.618 2024-02-25 08:13:27.618 378000 TIP 437531 986 6061049 2024-02-25 08:14:18.552 2024-02-25 08:14:18.552 0 FEE 438008 19785 6061063 2024-02-25 08:18:21.828 2024-02-25 08:18:21.828 1000 FEE 437977 20642 6061064 2024-02-25 08:18:21.828 2024-02-25 08:18:21.828 9000 TIP 437977 2176 6061067 2024-02-25 08:20:20.878 2024-02-25 08:20:20.878 1000 FEE 438012 10979 6061085 2024-02-25 08:24:03.992 2024-02-25 08:24:03.992 1000 FEE 438017 10536 6061103 2024-02-25 08:28:57.228 2024-02-25 08:28:57.228 1000 FEE 438018 20479 6061132 2024-02-25 08:41:03.583 2024-02-25 08:41:03.583 1000 FEE 438025 15978 6061143 2024-02-25 08:46:33.053 2024-02-25 08:46:33.053 500 FEE 437966 14950 6061144 2024-02-25 08:46:33.053 2024-02-25 08:46:33.053 4500 TIP 437966 18518 6061167 2024-02-25 08:50:15.827 2024-02-25 08:50:15.827 2100 FEE 438004 19156 6061168 2024-02-25 08:50:15.827 2024-02-25 08:50:15.827 18900 TIP 438004 11760 6061184 2024-02-25 08:52:18.23 2024-02-25 08:52:18.23 2100 FEE 438030 20560 6061185 2024-02-25 08:52:18.23 2024-02-25 08:52:18.23 18900 TIP 438030 6136 6061217 2024-02-25 09:00:04.842 2024-02-25 09:00:04.842 100000 FEE 438034 13927 6061218 2024-02-25 09:00:05.249 2024-02-25 09:00:05.249 1000 FEE 438035 21424 6061234 2024-02-25 09:08:02.651 2024-02-25 09:08:02.651 1000 FEE 438038 2232 6061289 2024-02-25 09:33:51.44 2024-02-25 09:33:51.44 1000 FEE 438043 977 6061297 2024-02-25 09:35:08.193 2024-02-25 09:35:08.193 1000 FEE 438045 13763 6061298 2024-02-25 09:35:23.789 2024-02-25 09:35:23.789 0 FEE 438045 19663 6061300 2024-02-25 09:35:45.469 2024-02-25 09:35:45.469 3300 FEE 437809 21164 6061301 2024-02-25 09:35:45.469 2024-02-25 09:35:45.469 29700 TIP 437809 9166 6061322 2024-02-25 09:42:36.289 2024-02-25 09:42:36.289 10000 FEE 438050 1603 6061348 2024-02-25 09:53:28.349 2024-02-25 09:53:28.349 2100 FEE 435767 19105 6061349 2024-02-25 09:53:28.349 2024-02-25 09:53:28.349 18900 TIP 435767 20299 6061362 2024-02-25 09:57:40.007 2024-02-25 09:57:40.007 1100 FEE 437761 21332 6061363 2024-02-25 09:57:40.007 2024-02-25 09:57:40.007 9900 TIP 437761 20904 6061372 2024-02-25 10:01:37.927 2024-02-25 10:01:37.927 1100 FEE 437762 1291 6061373 2024-02-25 10:01:37.927 2024-02-25 10:01:37.927 9900 TIP 437762 21424 6061416 2024-02-25 10:08:28.902 2024-02-25 10:08:28.902 2100 FEE 437946 1468 6061417 2024-02-25 10:08:28.902 2024-02-25 10:08:28.902 18900 TIP 437946 1631 6061442 2024-02-25 10:11:39.141 2024-02-25 10:11:39.141 2100 FEE 437840 10013 6061443 2024-02-25 10:11:39.141 2024-02-25 10:11:39.141 18900 TIP 437840 13547 6061475 2024-02-25 10:17:27.747 2024-02-25 10:17:27.747 2100 FEE 437617 9611 6061476 2024-02-25 10:17:27.747 2024-02-25 10:17:27.747 18900 TIP 437617 16670 6061496 2024-02-25 10:21:55.668 2024-02-25 10:21:55.668 2100 FEE 436895 17570 6061497 2024-02-25 10:21:55.668 2024-02-25 10:21:55.668 18900 TIP 436895 7185 6061544 2024-02-25 10:33:47.528 2024-02-25 10:33:47.528 2100 FEE 438077 1180 6061545 2024-02-25 10:33:47.528 2024-02-25 10:33:47.528 18900 TIP 438077 18262 6061563 2024-02-25 10:37:09.65 2024-02-25 10:37:09.65 5000 FEE 438073 18518 6061564 2024-02-25 10:37:09.65 2024-02-25 10:37:09.65 45000 TIP 438073 20577 6061598 2024-02-25 10:49:59.849 2024-02-25 10:49:59.849 1000 FEE 438085 11298 6061606 2024-02-25 10:52:48.658 2024-02-25 10:52:48.658 120000 FEE 438088 20647 6061623 2024-02-25 11:00:05.186 2024-02-25 11:00:05.186 100000 FEE 438094 20246 6061643 2024-02-25 11:06:34.03 2024-02-25 11:06:34.03 1000 FEE 438098 21275 6061695 2024-02-25 11:22:46.117 2024-02-25 11:22:46.117 1000 FEE 438113 16867 6061705 2024-02-25 11:24:17.874 2024-02-25 11:24:17.874 1000 FEE 438092 4776 6061706 2024-02-25 11:24:17.874 2024-02-25 11:24:17.874 9000 TIP 438092 20133 6061724 2024-02-25 11:27:33.842 2024-02-25 11:27:33.842 1000 FEE 438120 1291 6061725 2024-02-25 11:27:34.51 2024-02-25 11:27:34.51 1000 FEE 438121 889 6060619 2024-02-25 06:33:04.347 2024-02-25 06:33:04.347 7700 FEE 437631 13517 6060620 2024-02-25 06:33:04.347 2024-02-25 06:33:04.347 69300 TIP 437631 18524 6060670 2024-02-25 06:41:56.996 2024-02-25 06:41:56.996 800 FEE 437731 15160 6060671 2024-02-25 06:41:56.996 2024-02-25 06:41:56.996 7200 TIP 437731 17415 6060706 2024-02-25 06:46:27.427 2024-02-25 06:46:27.427 1000 FEE 437977 18984 6060730 2024-02-25 06:54:30.036 2024-02-25 06:54:30.036 6900 FEE 437539 14168 6060731 2024-02-25 06:54:30.036 2024-02-25 06:54:30.036 62100 TIP 437539 19292 6060737 2024-02-25 06:58:16.769 2024-02-25 06:58:16.769 1000 FEE 437983 5377 6060761 2024-02-25 07:01:52.958 2024-02-25 07:01:52.958 1000 FEE 437972 9985 6060762 2024-02-25 07:01:52.958 2024-02-25 07:01:52.958 9000 TIP 437972 20129 6122156 2024-03-01 06:26:05.119 2024-03-01 06:26:05.119 1000 STREAM 141924 5565 6122158 2024-03-01 06:27:03.124 2024-03-01 06:27:03.124 1000 STREAM 141924 18351 6122175 2024-03-01 06:29:03.115 2024-03-01 06:29:03.115 1000 STREAM 141924 17166 6122176 2024-03-01 06:30:05.143 2024-03-01 06:30:05.143 1000 STREAM 141924 708 6122184 2024-03-01 06:31:03.143 2024-03-01 06:31:03.143 1000 STREAM 141924 19785 6122202 2024-03-01 06:36:03.192 2024-03-01 06:36:03.192 1000 STREAM 141924 10519 6122216 2024-03-01 06:41:03.241 2024-03-01 06:41:03.241 1000 STREAM 141924 12049 6122308 2024-03-01 06:44:03.445 2024-03-01 06:44:03.445 1000 STREAM 141924 5758 6122363 2024-03-01 06:51:03.548 2024-03-01 06:51:03.548 1000 STREAM 141924 21494 6122375 2024-03-01 06:53:05.549 2024-03-01 06:53:05.549 1000 STREAM 141924 640 6122386 2024-03-01 06:57:03.567 2024-03-01 06:57:03.567 1000 STREAM 141924 15103 6122402 2024-03-01 07:02:03.584 2024-03-01 07:02:03.584 1000 STREAM 141924 19034 6122406 2024-03-01 07:04:03.62 2024-03-01 07:04:03.62 1000 STREAM 141924 21424 6060621 2024-02-25 06:33:04.505 2024-02-25 06:33:04.505 1000 STREAM 141924 11523 6060721 2024-02-25 06:52:04.82 2024-02-25 06:52:04.82 1000 STREAM 141924 15049 6122198 2024-03-01 06:34:01.619 2024-03-01 06:34:01.619 1000 STREAM 141924 979 6122225 2024-03-01 06:43:01.675 2024-03-01 06:43:01.675 1000 STREAM 141924 5828 6060666 2024-02-25 06:41:03.08 2024-02-25 06:41:03.08 1000 STREAM 141924 2101 6060677 2024-02-25 06:43:03.096 2024-02-25 06:43:03.096 1000 STREAM 141924 20979 6060684 2024-02-25 06:45:03.121 2024-02-25 06:45:03.121 1000 STREAM 141924 18270 6060705 2024-02-25 06:46:03.124 2024-02-25 06:46:03.124 1000 STREAM 141924 1836 6060707 2024-02-25 06:47:03.11 2024-02-25 06:47:03.11 1000 STREAM 141924 7668 6060728 2024-02-25 06:54:03.132 2024-02-25 06:54:03.132 1000 STREAM 141924 5725 6060734 2024-02-25 06:56:03.365 2024-02-25 06:56:03.365 1000 STREAM 141924 1983 6060735 2024-02-25 06:57:03.369 2024-02-25 06:57:03.369 1000 STREAM 141924 19459 6060736 2024-02-25 06:58:03.386 2024-02-25 06:58:03.386 1000 STREAM 141924 18357 6060780 2024-02-25 07:04:03.41 2024-02-25 07:04:03.41 1000 STREAM 141924 2151 6060807 2024-02-25 07:11:03.503 2024-02-25 07:11:03.503 1000 STREAM 141924 19668 6060676 2024-02-25 06:42:03.098 2024-02-25 06:42:03.098 1000 STREAM 141924 20738 6060683 2024-02-25 06:44:03.104 2024-02-25 06:44:03.104 1000 STREAM 141924 21541 6060767 2024-02-25 07:02:03.412 2024-02-25 07:02:03.412 1000 STREAM 141924 18449 6060788 2024-02-25 07:06:03.433 2024-02-25 07:06:03.433 1000 STREAM 141924 715 6060900 2024-02-25 08:01:05.703 2024-02-25 08:01:05.703 1000 STREAM 141924 14688 6060901 2024-02-25 08:02:01.689 2024-02-25 08:02:01.689 1000 STREAM 141924 11091 6060906 2024-02-25 08:05:05.69 2024-02-25 08:05:05.69 1000 STREAM 141924 15139 6060913 2024-02-25 08:06:05.69 2024-02-25 08:06:05.69 1000 STREAM 141924 999 6060921 2024-02-25 08:08:05.717 2024-02-25 08:08:05.717 1000 STREAM 141924 2780 6060983 2024-02-25 08:10:05.728 2024-02-25 08:10:05.728 1000 STREAM 141924 16351 6061136 2024-02-25 08:43:05.347 2024-02-25 08:43:05.347 1000 STREAM 141924 6041 6122208 2024-03-01 06:36:37.285 2024-03-01 06:36:37.285 1000 FEE 444624 1489 6122238 2024-03-01 06:43:27.875 2024-03-01 06:43:27.875 300 FEE 148464 20376 6060708 2024-02-25 06:48:04.745 2024-02-25 06:48:04.745 1000 STREAM 141924 15890 6060714 2024-02-25 06:49:04.762 2024-02-25 06:49:04.762 1000 STREAM 141924 2537 6122215 2024-03-01 06:40:02.763 2024-03-01 06:40:02.763 1000 STREAM 141924 4654 6122312 2024-03-01 06:45:02.71 2024-03-01 06:45:02.71 1000 STREAM 141924 20129 6122351 2024-03-01 06:50:02.737 2024-03-01 06:50:02.737 1000 STREAM 141924 6360 6060740 2024-02-25 06:59:03.382 2024-02-25 06:59:03.382 1000 STREAM 141924 16706 6060741 2024-02-25 07:00:03.408 2024-02-25 07:00:03.408 1000 STREAM 141924 1723 6060744 2024-02-25 07:01:03.395 2024-02-25 07:01:03.395 1000 STREAM 141924 21157 6060785 2024-02-25 07:05:03.443 2024-02-25 07:05:03.443 1000 STREAM 141924 20581 6060789 2024-02-25 07:07:03.445 2024-02-25 07:07:03.445 1000 STREAM 141924 9611 6060792 2024-02-25 07:08:03.444 2024-02-25 07:08:03.444 1000 STREAM 141924 15213 6060796 2024-02-25 07:09:03.445 2024-02-25 07:09:03.445 1000 STREAM 141924 9347 6122239 2024-03-01 06:43:27.875 2024-03-01 06:43:27.875 2700 TIP 148464 16193 6122256 2024-03-01 06:43:29.478 2024-03-01 06:43:29.478 300 FEE 148464 15094 6122257 2024-03-01 06:43:29.478 2024-03-01 06:43:29.478 2700 TIP 148464 6191 6122258 2024-03-01 06:43:29.694 2024-03-01 06:43:29.694 300 FEE 148464 8506 6122259 2024-03-01 06:43:29.694 2024-03-01 06:43:29.694 2700 TIP 148464 21498 6122268 2024-03-01 06:43:30.814 2024-03-01 06:43:30.814 300 FEE 148464 17172 6122269 2024-03-01 06:43:30.814 2024-03-01 06:43:30.814 2700 TIP 148464 12507 6122276 2024-03-01 06:43:31.786 2024-03-01 06:43:31.786 300 FEE 148464 17237 6122277 2024-03-01 06:43:31.786 2024-03-01 06:43:31.786 2700 TIP 148464 21064 6122290 2024-03-01 06:43:32.952 2024-03-01 06:43:32.952 300 FEE 148464 1624 6122291 2024-03-01 06:43:32.952 2024-03-01 06:43:32.952 2700 TIP 148464 9036 6122292 2024-03-01 06:43:33.147 2024-03-01 06:43:33.147 300 FEE 148464 19148 6122293 2024-03-01 06:43:33.147 2024-03-01 06:43:33.147 2700 TIP 148464 3709 6122311 2024-03-01 06:44:43.375 2024-03-01 06:44:43.375 1000 FEE 444627 1823 6122342 2024-03-01 06:49:29.686 2024-03-01 06:49:29.686 2100 FEE 444628 19138 6122343 2024-03-01 06:49:29.686 2024-03-01 06:49:29.686 18900 TIP 444628 5701 6122352 2024-03-01 06:50:29.368 2024-03-01 06:50:29.368 2100 FEE 444561 10719 6122353 2024-03-01 06:50:29.368 2024-03-01 06:50:29.368 18900 TIP 444561 712 6122373 2024-03-01 06:52:49.673 2024-03-01 06:52:49.673 2100 FEE 444572 20546 6122374 2024-03-01 06:52:49.673 2024-03-01 06:52:49.673 18900 TIP 444572 20969 6122412 2024-03-01 07:04:47.449 2024-03-01 07:04:47.449 800 FEE 328872 21026 6122413 2024-03-01 07:04:47.449 2024-03-01 07:04:47.449 7200 TIP 328872 10728 6122434 2024-03-01 07:09:31.066 2024-03-01 07:09:31.066 1000 POLL 444597 19668 6122436 2024-03-01 07:10:45.882 2024-03-01 07:10:45.882 2100 FEE 444168 4079 6122437 2024-03-01 07:10:45.882 2024-03-01 07:10:45.882 18900 TIP 444168 19284 6122450 2024-03-01 07:17:04.472 2024-03-01 07:17:04.472 1000 POLL 444078 963 6122452 2024-03-01 07:18:55.275 2024-03-01 07:18:55.275 2100 FEE 444205 20180 6122453 2024-03-01 07:18:55.275 2024-03-01 07:18:55.275 18900 TIP 444205 21374 6122466 2024-03-01 07:23:25.49 2024-03-01 07:23:25.49 21000 FEE 444651 9261 6122476 2024-03-01 07:27:31.193 2024-03-01 07:27:31.193 2800 FEE 440324 11716 6122477 2024-03-01 07:27:31.193 2024-03-01 07:27:31.193 25200 TIP 440324 18351 6122487 2024-03-01 07:31:13.523 2024-03-01 07:31:13.523 100 FEE 444644 19158 6122488 2024-03-01 07:31:13.523 2024-03-01 07:31:13.523 900 TIP 444644 690 6122500 2024-03-01 07:39:14.899 2024-03-01 07:39:14.899 100 FEE 444523 8376 6122501 2024-03-01 07:39:14.899 2024-03-01 07:39:14.899 900 TIP 444523 2203 6122515 2024-03-01 07:44:51.523 2024-03-01 07:44:51.523 1000 FEE 444655 10591 6122517 2024-03-01 07:45:22.936 2024-03-01 07:45:22.936 100 FEE 444518 1652 6122518 2024-03-01 07:45:22.936 2024-03-01 07:45:22.936 900 TIP 444518 15115 6122555 2024-03-01 08:00:04.982 2024-03-01 08:00:04.982 100000 FEE 444660 825 6122583 2024-03-01 08:09:07.146 2024-03-01 08:09:07.146 1000 FEE 444524 20470 6122584 2024-03-01 08:09:07.146 2024-03-01 08:09:07.146 9000 TIP 444524 5865 6122638 2024-03-01 08:28:04.133 2024-03-01 08:28:04.133 100000 FEE 442313 828 6122639 2024-03-01 08:28:04.133 2024-03-01 08:28:04.133 900000 TIP 442313 8380 6122682 2024-03-01 08:40:14.58 2024-03-01 08:40:14.58 100000 FEE 444674 18393 6122693 2024-03-01 08:49:49.217 2024-03-01 08:49:49.217 100000 FEE 444677 4538 6122737 2024-03-01 09:03:23.447 2024-03-01 09:03:23.447 2100 FEE 444441 673 6122738 2024-03-01 09:03:23.447 2024-03-01 09:03:23.447 18900 TIP 444441 694 6122739 2024-03-01 09:03:23.641 2024-03-01 09:03:23.641 2100 FEE 444441 21406 6122740 2024-03-01 09:03:23.641 2024-03-01 09:03:23.641 18900 TIP 444441 15075 6122745 2024-03-01 09:04:41.411 2024-03-01 09:04:41.411 2100 FEE 444365 19572 6122746 2024-03-01 09:04:41.411 2024-03-01 09:04:41.411 18900 TIP 444365 715 6122747 2024-03-01 09:04:59.332 2024-03-01 09:04:59.332 2100 FEE 444422 861 6122748 2024-03-01 09:04:59.332 2024-03-01 09:04:59.332 18900 TIP 444422 2285 6122766 2024-03-01 09:12:24.778 2024-03-01 09:12:24.778 1000 FEE 444677 6616 6122767 2024-03-01 09:12:24.778 2024-03-01 09:12:24.778 9000 TIP 444677 9330 6122769 2024-03-01 09:13:04.446 2024-03-01 09:13:04.446 500 FEE 444168 20066 6122770 2024-03-01 09:13:04.446 2024-03-01 09:13:04.446 4500 TIP 444168 9363 6122829 2024-03-01 09:27:39.271 2024-03-01 09:27:39.271 1000 FEE 444651 8133 6122830 2024-03-01 09:27:39.271 2024-03-01 09:27:39.271 9000 TIP 444651 21506 6122876 2024-03-01 09:40:18.768 2024-03-01 09:40:18.768 1000 FEE 444687 19663 6122877 2024-03-01 09:40:18.768 2024-03-01 09:40:18.768 9000 TIP 444687 3686 6122883 2024-03-01 09:42:43.275 2024-03-01 09:42:43.275 1000 FEE 444692 20715 6122916 2024-03-01 09:50:47.499 2024-03-01 09:50:47.499 15000 FEE 444694 19836 6122927 2024-03-01 09:54:03.114 2024-03-01 09:54:03.114 10000 FEE 444696 17042 6122935 2024-03-01 09:55:21.769 2024-03-01 09:55:21.769 1000 FEE 444694 21178 6122936 2024-03-01 09:55:21.769 2024-03-01 09:55:21.769 9000 TIP 444694 2577 6122939 2024-03-01 09:55:23.785 2024-03-01 09:55:23.785 2100 FEE 444561 21430 6122940 2024-03-01 09:55:23.785 2024-03-01 09:55:23.785 18900 TIP 444561 19158 6122952 2024-03-01 09:56:07.098 2024-03-01 09:56:07.098 21000 FEE 442416 4650 6122953 2024-03-01 09:56:07.098 2024-03-01 09:56:07.098 189000 TIP 442416 17526 6122991 2024-03-01 10:04:51.16 2024-03-01 10:04:51.16 100 FEE 444522 3990 6122992 2024-03-01 10:04:51.16 2024-03-01 10:04:51.16 900 TIP 444522 21140 6123030 2024-03-01 10:07:18.959 2024-03-01 10:07:18.959 100 FEE 444700 20825 6123031 2024-03-01 10:07:18.959 2024-03-01 10:07:18.959 900 TIP 444700 1471 6123032 2024-03-01 10:07:27.821 2024-03-01 10:07:27.821 100000 FEE 444710 11516 6123036 2024-03-01 10:08:32.82 2024-03-01 10:08:32.82 1000 FEE 444711 16594 6123043 2024-03-01 10:10:14.184 2024-03-01 10:10:14.184 5700 FEE 444689 17944 6123044 2024-03-01 10:10:14.184 2024-03-01 10:10:14.184 51300 TIP 444689 21361 6123048 2024-03-01 10:11:15.271 2024-03-01 10:11:15.271 2100 FEE 444710 20738 6123049 2024-03-01 10:11:15.271 2024-03-01 10:11:15.271 18900 TIP 444710 13767 6123059 2024-03-01 10:12:02.616 2024-03-01 10:12:02.616 2100 FEE 444689 1697 6123060 2024-03-01 10:12:02.616 2024-03-01 10:12:02.616 18900 TIP 444689 21088 6123064 2024-03-01 10:12:21.839 2024-03-01 10:12:21.839 2100 FEE 444677 18264 6123065 2024-03-01 10:12:21.839 2024-03-01 10:12:21.839 18900 TIP 444677 8168 6123087 2024-03-01 10:16:18.08 2024-03-01 10:16:18.08 69000 FEE 444718 15226 6123098 2024-03-01 10:18:14.502 2024-03-01 10:18:14.502 1000 FEE 444721 4989 6123121 2024-03-01 10:21:22.651 2024-03-01 10:21:22.651 100 FEE 444698 16059 6123122 2024-03-01 10:21:22.651 2024-03-01 10:21:22.651 900 TIP 444698 1433 6123156 2024-03-01 10:23:15.129 2024-03-01 10:23:15.129 100 FEE 444716 21062 6123157 2024-03-01 10:23:15.129 2024-03-01 10:23:15.129 900 TIP 444716 17976 6123173 2024-03-01 10:24:27.186 2024-03-01 10:24:27.186 100 FEE 444723 19005 6123174 2024-03-01 10:24:27.186 2024-03-01 10:24:27.186 900 TIP 444723 15858 6123221 2024-03-01 10:26:33.657 2024-03-01 10:26:33.657 1000 FEE 443645 19662 6123222 2024-03-01 10:26:33.657 2024-03-01 10:26:33.657 9000 TIP 443645 16301 6123240 2024-03-01 10:27:48.808 2024-03-01 10:27:48.808 1000 FEE 443861 18454 6123241 2024-03-01 10:27:48.808 2024-03-01 10:27:48.808 9000 TIP 443861 660 6123244 2024-03-01 10:27:52.328 2024-03-01 10:27:52.328 1000 FEE 444061 16633 6123245 2024-03-01 10:27:52.328 2024-03-01 10:27:52.328 9000 TIP 444061 13143 6060771 2024-02-25 07:02:42.172 2024-02-25 07:02:42.172 9000 TIP 437982 19512 6060774 2024-02-25 07:02:47.743 2024-02-25 07:02:47.743 1000 FEE 437982 769 6060775 2024-02-25 07:02:47.743 2024-02-25 07:02:47.743 9000 TIP 437982 13927 6060790 2024-02-25 07:07:40.48 2024-02-25 07:07:40.48 1000 FEE 437991 725 6060813 2024-02-25 07:15:48.829 2024-02-25 07:15:48.829 1000 FEE 437992 5036 6060814 2024-02-25 07:15:48.829 2024-02-25 07:15:48.829 9000 TIP 437992 19484 6060874 2024-02-25 07:52:46.274 2024-02-25 07:52:46.274 700 FEE 437681 13544 6060875 2024-02-25 07:52:46.274 2024-02-25 07:52:46.274 6300 TIP 437681 2703 6060891 2024-02-25 07:56:09.205 2024-02-25 07:56:09.205 2100 FEE 437993 4345 6060892 2024-02-25 07:56:09.205 2024-02-25 07:56:09.205 18900 TIP 437993 4521 6060930 2024-02-25 08:08:48.241 2024-02-25 08:08:48.241 1000 FEE 438001 2151 6060931 2024-02-25 08:08:48.241 2024-02-25 08:08:48.241 9000 TIP 438001 2293 6060944 2024-02-25 08:08:55.029 2024-02-25 08:08:55.029 1000 FEE 435642 21578 6060945 2024-02-25 08:08:55.029 2024-02-25 08:08:55.029 9000 TIP 435642 10102 6060946 2024-02-25 08:09:01.707 2024-02-25 08:09:01.707 1000 FEE 437269 2652 6060947 2024-02-25 08:09:01.707 2024-02-25 08:09:01.707 9000 TIP 437269 859 6060967 2024-02-25 08:09:38.85 2024-02-25 08:09:38.85 1000 FEE 437966 21166 6060968 2024-02-25 08:09:38.85 2024-02-25 08:09:38.85 9000 TIP 437966 8535 6060975 2024-02-25 08:09:57.872 2024-02-25 08:09:57.872 1000 FEE 437502 27 6060976 2024-02-25 08:09:57.872 2024-02-25 08:09:57.872 9000 TIP 437502 2528 6060993 2024-02-25 08:11:06.722 2024-02-25 08:11:06.722 1000 FEE 437535 703 6060994 2024-02-25 08:11:06.722 2024-02-25 08:11:06.722 9000 TIP 437535 19961 6061026 2024-02-25 08:11:33.637 2024-02-25 08:11:33.637 1000 FEE 437832 1298 6061027 2024-02-25 08:11:33.637 2024-02-25 08:11:33.637 9000 TIP 437832 16942 6061046 2024-02-25 08:14:08.613 2024-02-25 08:14:08.613 1000 FEE 438010 11450 6061083 2024-02-25 08:24:02.36 2024-02-25 08:24:02.36 1000 FEE 437775 20964 6061084 2024-02-25 08:24:02.36 2024-02-25 08:24:02.36 9000 TIP 437775 1221 6061087 2024-02-25 08:24:13.153 2024-02-25 08:24:13.153 1000 FEE 437974 19174 6061088 2024-02-25 08:24:13.153 2024-02-25 08:24:13.153 9000 TIP 437974 19469 6061099 2024-02-25 08:26:46.959 2024-02-25 08:26:46.959 1000 FEE 437026 17147 6061100 2024-02-25 08:26:46.959 2024-02-25 08:26:46.959 9000 TIP 437026 5776 6061121 2024-02-25 08:35:26.148 2024-02-25 08:35:26.148 1000 FEE 438023 20514 6061131 2024-02-25 08:40:25.547 2024-02-25 08:40:25.547 10000 FEE 438024 17103 6061139 2024-02-25 08:44:37.598 2024-02-25 08:44:37.598 1000 FEE 437996 19156 6061140 2024-02-25 08:44:37.598 2024-02-25 08:44:37.598 9000 TIP 437996 15719 6061156 2024-02-25 08:48:11.151 2024-02-25 08:48:11.151 3000 FEE 437891 18774 6061157 2024-02-25 08:48:11.151 2024-02-25 08:48:11.151 27000 TIP 437891 1094 6061180 2024-02-25 08:51:23.742 2024-02-25 08:51:23.742 2100 FEE 437946 16594 6061181 2024-02-25 08:51:23.742 2024-02-25 08:51:23.742 18900 TIP 437946 12779 6061257 2024-02-25 09:16:51.023 2024-02-25 09:16:51.023 21000 FEE 438040 7583 6061323 2024-02-25 09:42:43.852 2024-02-25 09:42:43.852 2100 FEE 437965 16724 6061324 2024-02-25 09:42:43.852 2024-02-25 09:42:43.852 18900 TIP 437965 17042 6061341 2024-02-25 09:52:44.774 2024-02-25 09:52:44.774 100 FEE 437863 21556 6061342 2024-02-25 09:52:44.774 2024-02-25 09:52:44.774 900 TIP 437863 21588 6061390 2024-02-25 10:06:42.03 2024-02-25 10:06:42.03 2100 FEE 437957 17275 6061391 2024-02-25 10:06:42.03 2024-02-25 10:06:42.03 18900 TIP 437957 9517 6061411 2024-02-25 10:07:53.819 2024-02-25 10:07:53.819 2100 FEE 437996 18956 6061412 2024-02-25 10:07:53.819 2024-02-25 10:07:53.819 18900 TIP 437996 21398 6061419 2024-02-25 10:08:47.677 2024-02-25 10:08:47.677 2100 FEE 437912 2748 6061420 2024-02-25 10:08:47.677 2024-02-25 10:08:47.677 18900 TIP 437912 17415 6061453 2024-02-25 10:13:36.314 2024-02-25 10:13:36.314 125000 FEE 438065 21509 6061466 2024-02-25 10:14:27.504 2024-02-25 10:14:27.504 2100 FEE 437583 14267 6061467 2024-02-25 10:14:27.504 2024-02-25 10:14:27.504 18900 TIP 437583 18311 6061472 2024-02-25 10:15:56.266 2024-02-25 10:15:56.266 1000 FEE 438068 725 6061490 2024-02-25 10:19:50.263 2024-02-25 10:19:50.263 1100 FEE 437935 1090 6061491 2024-02-25 10:19:50.263 2024-02-25 10:19:50.263 9900 TIP 437935 18199 6061517 2024-02-25 10:28:07.568 2024-02-25 10:28:07.568 2100 FEE 438071 16178 6061518 2024-02-25 10:28:07.568 2024-02-25 10:28:07.568 18900 TIP 438071 18336 6061520 2024-02-25 10:29:44.392 2024-02-25 10:29:44.392 2100 FEE 438057 11789 6061521 2024-02-25 10:29:44.392 2024-02-25 10:29:44.392 18900 TIP 438057 4984 6061522 2024-02-25 10:29:52.352 2024-02-25 10:29:52.352 2100 FEE 438051 21589 6061523 2024-02-25 10:29:52.352 2024-02-25 10:29:52.352 18900 TIP 438051 17212 6061525 2024-02-25 10:30:19.746 2024-02-25 10:30:19.746 2100 FEE 437403 17183 6061526 2024-02-25 10:30:19.746 2024-02-25 10:30:19.746 18900 TIP 437403 691 6061541 2024-02-25 10:33:02.456 2024-02-25 10:33:02.456 1000 FEE 438077 4487 6061548 2024-02-25 10:34:00.043 2024-02-25 10:34:00.043 10000 FEE 438065 21271 6061549 2024-02-25 10:34:00.043 2024-02-25 10:34:00.043 90000 TIP 438065 1354 6061556 2024-02-25 10:35:44.996 2024-02-25 10:35:44.996 1000 FEE 438031 674 6061557 2024-02-25 10:35:44.996 2024-02-25 10:35:44.996 9000 TIP 438031 9669 6061571 2024-02-25 10:39:33.582 2024-02-25 10:39:33.582 2100 FEE 438001 19465 6061572 2024-02-25 10:39:33.582 2024-02-25 10:39:33.582 18900 TIP 438001 19839 6061582 2024-02-25 10:41:57.79 2024-02-25 10:41:57.79 1000 FEE 438081 1237 6061602 2024-02-25 10:51:05.838 2024-02-25 10:51:05.838 10000 FEE 437034 837 6061603 2024-02-25 10:51:05.838 2024-02-25 10:51:05.838 90000 TIP 437034 19435 6061613 2024-02-25 10:55:59.114 2024-02-25 10:55:59.114 1000 FEE 438091 16594 6061625 2024-02-25 11:00:23.608 2024-02-25 11:00:23.608 0 FEE 438092 17944 6061639 2024-02-25 11:05:00.551 2024-02-25 11:05:00.551 0 FEE 438096 5828 6060794 2024-02-25 07:08:39.857 2024-02-25 07:08:39.857 0 FEE 437992 10668 6060806 2024-02-25 07:11:03.173 2024-02-25 07:11:03.173 1000 FEE 437994 20710 6060866 2024-02-25 07:47:00.637 2024-02-25 07:47:00.637 100 FEE 437611 5758 6060867 2024-02-25 07:47:00.637 2024-02-25 07:47:00.637 900 TIP 437611 954 6060909 2024-02-25 08:05:46.935 2024-02-25 08:05:46.935 1000 FEE 437596 5961 6060910 2024-02-25 08:05:46.935 2024-02-25 08:05:46.935 9000 TIP 437596 13931 6060940 2024-02-25 08:08:53.159 2024-02-25 08:08:53.159 1000 FEE 435697 4763 6060941 2024-02-25 08:08:53.159 2024-02-25 08:08:53.159 9000 TIP 435697 1825 6060955 2024-02-25 08:09:34.243 2024-02-25 08:09:34.243 1000 FEE 437664 21417 6060956 2024-02-25 08:09:34.243 2024-02-25 08:09:34.243 9000 TIP 437664 7675 6060963 2024-02-25 08:09:38.392 2024-02-25 08:09:38.392 1000 FEE 437893 16970 6060964 2024-02-25 08:09:38.392 2024-02-25 08:09:38.392 9000 TIP 437893 8037 6060965 2024-02-25 08:09:38.686 2024-02-25 08:09:38.686 1000 FEE 437723 994 6060966 2024-02-25 08:09:38.686 2024-02-25 08:09:38.686 9000 TIP 437723 21463 6060971 2024-02-25 08:09:51.975 2024-02-25 08:09:51.975 1000 FEE 437970 866 6060972 2024-02-25 08:09:51.975 2024-02-25 08:09:51.975 9000 TIP 437970 18402 6060979 2024-02-25 08:09:58.87 2024-02-25 08:09:58.87 1000 FEE 437454 2016 6060980 2024-02-25 08:09:58.87 2024-02-25 08:09:58.87 9000 TIP 437454 20841 6061071 2024-02-25 08:22:16.587 2024-02-25 08:22:16.587 1000 FEE 438014 9920 6061081 2024-02-25 08:23:55.068 2024-02-25 08:23:55.068 1000 FEE 437814 681 6061082 2024-02-25 08:23:55.068 2024-02-25 08:23:55.068 9000 TIP 437814 20603 6061097 2024-02-25 08:26:03.525 2024-02-25 08:26:03.525 1000 FEE 437999 4395 6061098 2024-02-25 08:26:03.525 2024-02-25 08:26:03.525 9000 TIP 437999 17218 6061114 2024-02-25 08:32:53.776 2024-02-25 08:32:53.776 1000 FEE 438021 660 6061128 2024-02-25 08:39:46.17 2024-02-25 08:39:46.17 100 FEE 437863 7772 6061129 2024-02-25 08:39:46.17 2024-02-25 08:39:46.17 900 TIP 437863 9551 6061134 2024-02-25 08:41:49.604 2024-02-25 08:41:49.604 1000 FEE 438026 6798 6061138 2024-02-25 08:44:34.614 2024-02-25 08:44:34.614 1000 FEE 438027 1571 6061148 2024-02-25 08:47:15.127 2024-02-25 08:47:15.127 21000 FEE 438028 9982 6061152 2024-02-25 08:47:41.644 2024-02-25 08:47:41.644 500 FEE 437970 20597 6061153 2024-02-25 08:47:41.644 2024-02-25 08:47:41.644 4500 TIP 437970 18829 6061154 2024-02-25 08:47:53.9 2024-02-25 08:47:53.9 0 FEE 438029 7558 6061193 2024-02-25 08:54:35.442 2024-02-25 08:54:35.442 2100 FEE 437998 15941 6061194 2024-02-25 08:54:35.442 2024-02-25 08:54:35.442 18900 TIP 437998 909 6061197 2024-02-25 08:56:03.496 2024-02-25 08:56:03.496 2100 FEE 437900 8269 6061198 2024-02-25 08:56:03.496 2024-02-25 08:56:03.496 18900 TIP 437900 20897 6061203 2024-02-25 08:56:48.21 2024-02-25 08:56:48.21 2100 FEE 437883 9275 6061204 2024-02-25 08:56:48.21 2024-02-25 08:56:48.21 18900 TIP 437883 6137 6061254 2024-02-25 09:15:24.348 2024-02-25 09:15:24.348 1000 FEE 437985 21332 6061255 2024-02-25 09:15:24.348 2024-02-25 09:15:24.348 9000 TIP 437985 1577 6061319 2024-02-25 09:41:31.566 2024-02-25 09:41:31.566 2100 FEE 409647 6260 6061320 2024-02-25 09:41:31.566 2024-02-25 09:41:31.566 18900 TIP 409647 1401 6061359 2024-02-25 09:56:41.893 2024-02-25 09:56:41.893 1100 FEE 437764 5112 6061360 2024-02-25 09:56:41.893 2024-02-25 09:56:41.893 9900 TIP 437764 3396 6061367 2024-02-25 10:00:04.399 2024-02-25 10:00:04.399 100000 FEE 438057 19941 6061374 2024-02-25 10:01:50.289 2024-02-25 10:01:50.289 300 FEE 437826 759 6061375 2024-02-25 10:01:50.289 2024-02-25 10:01:50.289 2700 TIP 437826 18678 6061427 2024-02-25 10:09:10.517 2024-02-25 10:09:10.517 2100 FEE 437888 19126 6061428 2024-02-25 10:09:10.517 2024-02-25 10:09:10.517 18900 TIP 437888 18500 6061433 2024-02-25 10:10:36.824 2024-02-25 10:10:36.824 100 FEE 437269 18690 6061434 2024-02-25 10:10:36.824 2024-02-25 10:10:36.824 900 TIP 437269 2963 6061482 2024-02-25 10:18:31.825 2024-02-25 10:18:31.825 2100 FEE 437615 18016 6061483 2024-02-25 10:18:31.825 2024-02-25 10:18:31.825 18900 TIP 437615 11491 6061551 2024-02-25 10:34:30.799 2024-02-25 10:34:30.799 10000 FEE 437730 21281 6061552 2024-02-25 10:34:30.799 2024-02-25 10:34:30.799 90000 TIP 437730 13177 6061554 2024-02-25 10:35:42.923 2024-02-25 10:35:42.923 1000 FEE 438031 18637 6061555 2024-02-25 10:35:42.923 2024-02-25 10:35:42.923 9000 TIP 438031 14278 6061588 2024-02-25 10:45:19.333 2024-02-25 10:45:19.333 1000 FEE 438083 15588 6061594 2024-02-25 10:48:31.174 2024-02-25 10:48:31.174 21000 FEE 438084 19637 6061610 2024-02-25 10:54:42.483 2024-02-25 10:54:42.483 1000 FEE 438090 20560 6061626 2024-02-25 11:01:02.936 2024-02-25 11:01:02.936 0 FEE 438092 17030 6061631 2024-02-25 11:02:15.081 2024-02-25 11:02:15.081 1000 FEE 438096 2330 6061650 2024-02-25 11:10:55.282 2024-02-25 11:10:55.282 1000 FEE 438100 16956 6061653 2024-02-25 11:11:36.617 2024-02-25 11:11:36.617 2100 FEE 438094 8133 6061654 2024-02-25 11:11:36.617 2024-02-25 11:11:36.617 18900 TIP 438094 1319 6061666 2024-02-25 11:13:31.739 2024-02-25 11:13:31.739 4000 FEE 437963 20187 6061667 2024-02-25 11:13:31.739 2024-02-25 11:13:31.739 36000 TIP 437963 18230 6061683 2024-02-25 11:16:27.516 2024-02-25 11:16:27.516 1000 FEE 438107 3409 6061701 2024-02-25 11:23:46.712 2024-02-25 11:23:46.712 0 FEE 175083 18412 6061712 2024-02-25 11:25:03.609 2024-02-25 11:25:03.609 10000 FEE 438092 10771 6061713 2024-02-25 11:25:03.609 2024-02-25 11:25:03.609 90000 TIP 438092 19952 6061715 2024-02-25 11:25:09.558 2024-02-25 11:25:09.558 2100 FEE 438017 19837 6061716 2024-02-25 11:25:09.558 2024-02-25 11:25:09.558 18900 TIP 438017 1094 6061764 2024-02-25 11:36:01.821 2024-02-25 11:36:01.821 1000 FEE 438099 17690 6061765 2024-02-25 11:36:01.821 2024-02-25 11:36:01.821 9000 TIP 438099 20881 6061780 2024-02-25 11:37:19.637 2024-02-25 11:37:19.637 2100 FEE 438064 4118 6061781 2024-02-25 11:37:19.637 2024-02-25 11:37:19.637 18900 TIP 438064 15941 6060800 2024-02-25 07:10:04.073 2024-02-25 07:10:04.073 1000 STREAM 141924 15510 6060810 2024-02-25 07:13:04.08 2024-02-25 07:13:04.08 1000 STREAM 141924 622 6060820 2024-02-25 07:17:04.113 2024-02-25 07:17:04.113 1000 STREAM 141924 19289 6060821 2024-02-25 07:18:04.11 2024-02-25 07:18:04.11 1000 STREAM 141924 21373 6060825 2024-02-25 07:20:04.129 2024-02-25 07:20:04.129 1000 STREAM 141924 18072 6060830 2024-02-25 07:21:04.138 2024-02-25 07:21:04.138 1000 STREAM 141924 15617 6060832 2024-02-25 07:23:04.131 2024-02-25 07:23:04.131 1000 STREAM 141924 21589 6060833 2024-02-25 07:24:04.121 2024-02-25 07:24:04.121 1000 STREAM 141924 6741 6060838 2024-02-25 07:28:04.149 2024-02-25 07:28:04.149 1000 STREAM 141924 13574 6060841 2024-02-25 07:29:04.152 2024-02-25 07:29:04.152 1000 STREAM 141924 3392 6060844 2024-02-25 07:30:04.167 2024-02-25 07:30:04.167 1000 STREAM 141924 1162 6060849 2024-02-25 07:33:04.182 2024-02-25 07:33:04.182 1000 STREAM 141924 1401 6060851 2024-02-25 07:35:04.179 2024-02-25 07:35:04.179 1000 STREAM 141924 828 6060853 2024-02-25 07:37:04.195 2024-02-25 07:37:04.195 1000 STREAM 141924 16816 6060854 2024-02-25 07:38:04.187 2024-02-25 07:38:04.187 1000 STREAM 141924 8289 6122387 2024-03-01 06:58:01.803 2024-03-01 06:58:01.803 1000 STREAM 141924 9985 6122442 2024-03-01 07:14:01.943 2024-03-01 07:14:01.943 1000 STREAM 141924 18231 6122454 2024-03-01 07:19:01.979 2024-03-01 07:19:01.979 1000 STREAM 141924 18208 6122480 2024-03-01 07:28:02.089 2024-03-01 07:28:02.089 1000 STREAM 141924 18311 6122485 2024-03-01 07:30:02.163 2024-03-01 07:30:02.163 1000 STREAM 141924 10280 6122495 2024-03-01 07:36:02.296 2024-03-01 07:36:02.296 1000 STREAM 141924 21061 6122498 2024-03-01 07:38:02.305 2024-03-01 07:38:02.305 1000 STREAM 141924 17673 6122514 2024-03-01 07:44:02.317 2024-03-01 07:44:02.317 1000 STREAM 141924 16867 6122537 2024-03-01 07:50:02.418 2024-03-01 07:50:02.418 1000 STREAM 141924 10280 6122546 2024-03-01 07:54:02.382 2024-03-01 07:54:02.382 1000 STREAM 141924 21021 6122549 2024-03-01 07:56:02.36 2024-03-01 07:56:02.36 1000 STREAM 141924 12769 6122552 2024-03-01 07:58:02.363 2024-03-01 07:58:02.363 1000 STREAM 141924 2513 6122553 2024-03-01 07:59:02.378 2024-03-01 07:59:02.378 1000 STREAM 141924 16847 6122554 2024-03-01 08:00:02.498 2024-03-01 08:00:02.498 1000 STREAM 141924 16830 6060808 2024-02-25 07:12:04.069 2024-02-25 07:12:04.069 1000 STREAM 141924 1723 6060811 2024-02-25 07:14:04.087 2024-02-25 07:14:04.087 1000 STREAM 141924 2748 6060812 2024-02-25 07:15:04.095 2024-02-25 07:15:04.095 1000 STREAM 141924 15226 6060815 2024-02-25 07:16:04.099 2024-02-25 07:16:04.099 1000 STREAM 141924 21194 6060822 2024-02-25 07:19:04.121 2024-02-25 07:19:04.121 1000 STREAM 141924 17116 6060834 2024-02-25 07:25:04.122 2024-02-25 07:25:04.122 1000 STREAM 141924 13622 6060837 2024-02-25 07:27:04.136 2024-02-25 07:27:04.136 1000 STREAM 141924 20546 6060847 2024-02-25 07:31:04.159 2024-02-25 07:31:04.159 1000 STREAM 141924 9426 6060848 2024-02-25 07:32:04.173 2024-02-25 07:32:04.173 1000 STREAM 141924 19557 6060852 2024-02-25 07:36:04.182 2024-02-25 07:36:04.182 1000 STREAM 141924 17523 6061054 2024-02-25 08:15:04.504 2024-02-25 08:15:04.504 1000 STREAM 141924 1490 6061059 2024-02-25 08:17:04.493 2024-02-25 08:17:04.493 1000 STREAM 141924 20979 6122393 2024-03-01 07:00:01.9 2024-03-01 07:00:01.9 1000 STREAM 141924 13527 6122399 2024-03-01 07:01:01.82 2024-03-01 07:01:01.82 1000 STREAM 141924 20717 6122404 2024-03-01 07:03:01.839 2024-03-01 07:03:01.839 1000 STREAM 141924 19502 6122425 2024-03-01 07:07:01.875 2024-03-01 07:07:01.875 1000 STREAM 141924 1673 6122435 2024-03-01 07:10:01.937 2024-03-01 07:10:01.937 1000 STREAM 141924 17148 6122438 2024-03-01 07:11:01.921 2024-03-01 07:11:01.921 1000 STREAM 141924 8841 6122441 2024-03-01 07:13:01.944 2024-03-01 07:13:01.944 1000 STREAM 141924 3304 6122446 2024-03-01 07:16:01.957 2024-03-01 07:16:01.957 1000 STREAM 141924 16259 6122462 2024-03-01 07:22:01.993 2024-03-01 07:22:01.993 1000 STREAM 141924 9494 6122468 2024-03-01 07:25:02.034 2024-03-01 07:25:02.034 1000 STREAM 141924 15617 6122492 2024-03-01 07:33:02.221 2024-03-01 07:33:02.221 1000 STREAM 141924 21242 6122493 2024-03-01 07:34:02.275 2024-03-01 07:34:02.275 1000 STREAM 141924 21387 6122494 2024-03-01 07:35:02.284 2024-03-01 07:35:02.284 1000 STREAM 141924 19553 6122496 2024-03-01 07:37:02.293 2024-03-01 07:37:02.293 1000 STREAM 141924 17708 6122499 2024-03-01 07:39:02.313 2024-03-01 07:39:02.313 1000 STREAM 141924 20563 6122504 2024-03-01 07:40:02.316 2024-03-01 07:40:02.316 1000 STREAM 141924 20581 6122506 2024-03-01 07:41:02.317 2024-03-01 07:41:02.317 1000 STREAM 141924 1175 6122508 2024-03-01 07:42:02.316 2024-03-01 07:42:02.316 1000 STREAM 141924 18629 6122511 2024-03-01 07:43:02.331 2024-03-01 07:43:02.331 1000 STREAM 141924 7553 6060816 2024-02-25 07:16:08.84 2024-02-25 07:16:08.84 1000 FEE 437963 5171 6060817 2024-02-25 07:16:08.84 2024-02-25 07:16:08.84 9000 TIP 437963 9844 6060826 2024-02-25 07:20:15.66 2024-02-25 07:20:15.66 690000 FEE 437996 16879 6060861 2024-02-25 07:43:57.391 2024-02-25 07:43:57.391 3000 FEE 437996 9356 6060862 2024-02-25 07:43:57.391 2024-02-25 07:43:57.391 27000 TIP 437996 7992 6060876 2024-02-25 07:52:53.132 2024-02-25 07:52:53.132 700 FEE 437681 859 6060877 2024-02-25 07:52:53.132 2024-02-25 07:52:53.132 6300 TIP 437681 7772 6060893 2024-02-25 07:56:55.251 2024-02-25 07:56:55.251 21000 FEE 438001 21051 6060914 2024-02-25 08:06:51.281 2024-02-25 08:06:51.281 1000 FEE 438006 15588 6060920 2024-02-25 08:07:55.359 2024-02-25 08:07:55.359 1000 FEE 438007 19966 6060928 2024-02-25 08:08:47.242 2024-02-25 08:08:47.242 1000 FEE 438001 18663 6060929 2024-02-25 08:08:47.242 2024-02-25 08:08:47.242 9000 TIP 438001 3411 6060936 2024-02-25 08:08:51.762 2024-02-25 08:08:51.762 1000 FEE 436385 7510 6060937 2024-02-25 08:08:51.762 2024-02-25 08:08:51.762 9000 TIP 436385 20993 6060953 2024-02-25 08:09:31.401 2024-02-25 08:09:31.401 1000 FEE 437602 11714 6060954 2024-02-25 08:09:31.401 2024-02-25 08:09:31.401 9000 TIP 437602 620 6060959 2024-02-25 08:09:37.794 2024-02-25 08:09:37.794 1000 FEE 437817 1534 6060960 2024-02-25 08:09:37.794 2024-02-25 08:09:37.794 9000 TIP 437817 1705 6060973 2024-02-25 08:09:55.011 2024-02-25 08:09:55.011 1000 FEE 437966 928 6060974 2024-02-25 08:09:55.011 2024-02-25 08:09:55.011 9000 TIP 437966 9242 6060984 2024-02-25 08:10:18.761 2024-02-25 08:10:18.761 1000 FEE 437700 19640 6060985 2024-02-25 08:10:18.761 2024-02-25 08:10:18.761 9000 TIP 437700 2718 6060986 2024-02-25 08:10:19.603 2024-02-25 08:10:19.603 1000 FEE 437827 7913 6060987 2024-02-25 08:10:19.603 2024-02-25 08:10:19.603 9000 TIP 437827 5825 6060988 2024-02-25 08:11:03.872 2024-02-25 08:11:03.872 1000 FEE 437672 9339 6060989 2024-02-25 08:11:03.872 2024-02-25 08:11:03.872 9000 TIP 437672 3706 6060997 2024-02-25 08:11:07.509 2024-02-25 08:11:07.509 1000 FEE 437672 1959 6060998 2024-02-25 08:11:07.509 2024-02-25 08:11:07.509 9000 TIP 437672 9529 6061007 2024-02-25 08:11:16.899 2024-02-25 08:11:16.899 1000 FEE 437720 13927 6061008 2024-02-25 08:11:16.899 2024-02-25 08:11:16.899 9000 TIP 437720 2046 6061025 2024-02-25 08:11:27.258 2024-02-25 08:11:27.258 1000 FEE 438008 13587 6061070 2024-02-25 08:22:14.828 2024-02-25 08:22:14.828 1000 FEE 438013 21444 6061089 2024-02-25 08:24:29.988 2024-02-25 08:24:29.988 1000 FEE 437925 5306 6061090 2024-02-25 08:24:29.988 2024-02-25 08:24:29.988 9000 TIP 437925 18932 6061092 2024-02-25 08:25:12.131 2024-02-25 08:25:12.131 1000 FEE 437901 15703 6061093 2024-02-25 08:25:12.131 2024-02-25 08:25:12.131 9000 TIP 437901 21540 6061094 2024-02-25 08:25:22.24 2024-02-25 08:25:22.24 1000 FEE 438005 4074 6061095 2024-02-25 08:25:22.24 2024-02-25 08:25:22.24 9000 TIP 438005 11165 6061207 2024-02-25 08:58:56.534 2024-02-25 08:58:56.534 21000 FEE 438032 21406 6061212 2024-02-25 08:59:54.043 2024-02-25 08:59:54.043 100 FEE 437820 18138 6061213 2024-02-25 08:59:54.043 2024-02-25 08:59:54.043 900 TIP 437820 7587 6061214 2024-02-25 08:59:55.952 2024-02-25 08:59:55.952 100 FEE 437817 21019 6061215 2024-02-25 08:59:55.952 2024-02-25 08:59:55.952 900 TIP 437817 8162 6061250 2024-02-25 09:15:19.996 2024-02-25 09:15:19.996 1000 FEE 438035 10056 6061251 2024-02-25 09:15:19.996 2024-02-25 09:15:19.996 9000 TIP 438035 9669 6061275 2024-02-25 09:28:30.543 2024-02-25 09:28:30.543 500 FEE 437752 19930 6061276 2024-02-25 09:28:30.543 2024-02-25 09:28:30.543 4500 TIP 437752 12368 6061294 2024-02-25 09:34:50.901 2024-02-25 09:34:50.901 100 FEE 437996 7916 6061295 2024-02-25 09:34:50.901 2024-02-25 09:34:50.901 900 TIP 437996 1401 6061303 2024-02-25 09:36:13.962 2024-02-25 09:36:13.962 1000 FEE 438046 826 6061311 2024-02-25 09:39:05.591 2024-02-25 09:39:05.591 11100 FEE 437410 21343 6061312 2024-02-25 09:39:05.591 2024-02-25 09:39:05.591 99900 TIP 437410 14785 6061313 2024-02-25 09:39:31.466 2024-02-25 09:39:31.466 2100 FEE 437190 8796 6061314 2024-02-25 09:39:31.466 2024-02-25 09:39:31.466 18900 TIP 437190 9969 6061346 2024-02-25 09:53:24.101 2024-02-25 09:53:24.101 2100 FEE 435856 11091 6061347 2024-02-25 09:53:24.101 2024-02-25 09:53:24.101 18900 TIP 435856 1195 6061351 2024-02-25 09:54:14.123 2024-02-25 09:54:14.123 1000 FEE 438055 20963 6061377 2024-02-25 10:02:04.705 2024-02-25 10:02:04.705 2000 DONT_LIKE_THIS 437870 20588 6061394 2024-02-25 10:06:53.502 2024-02-25 10:06:53.502 2100 FEE 437903 14308 6061395 2024-02-25 10:06:53.502 2024-02-25 10:06:53.502 18900 TIP 437903 2681 6061405 2024-02-25 10:07:29.329 2024-02-25 10:07:29.329 2100 FEE 438040 19118 6061406 2024-02-25 10:07:29.329 2024-02-25 10:07:29.329 18900 TIP 438040 11018 6061421 2024-02-25 10:08:58.127 2024-02-25 10:08:58.127 2100 FEE 437927 669 6061422 2024-02-25 10:08:58.127 2024-02-25 10:08:58.127 18900 TIP 437927 21578 6061432 2024-02-25 10:10:28.181 2024-02-25 10:10:28.181 1000 FEE 438061 19570 6061447 2024-02-25 10:12:15.831 2024-02-25 10:12:15.831 1000 FEE 438062 15510 6061449 2024-02-25 10:12:55.142 2024-02-25 10:12:55.142 1000 FEE 438064 6653 6061460 2024-02-25 10:14:20.232 2024-02-25 10:14:20.232 2100 FEE 437457 20892 6061461 2024-02-25 10:14:20.232 2024-02-25 10:14:20.232 18900 TIP 437457 9349 6061489 2024-02-25 10:19:35.332 2024-02-25 10:19:35.332 1000 FEE 438070 15213 6061527 2024-02-25 10:30:26.592 2024-02-25 10:30:26.592 1000 FEE 438075 4459 6061532 2024-02-25 10:30:39.84 2024-02-25 10:30:39.84 2100 FEE 437723 16309 6061533 2024-02-25 10:30:39.84 2024-02-25 10:30:39.84 18900 TIP 437723 16387 6061534 2024-02-25 10:30:45.151 2024-02-25 10:30:45.151 1100 FEE 438067 7986 6061535 2024-02-25 10:30:45.151 2024-02-25 10:30:45.151 9900 TIP 438067 8176 6061543 2024-02-25 10:33:18.47 2024-02-25 10:33:18.47 1000 FEE 438078 9347 6061546 2024-02-25 10:33:54.218 2024-02-25 10:33:54.218 2500 FEE 437253 18241 6061547 2024-02-25 10:33:54.218 2024-02-25 10:33:54.218 22500 TIP 437253 15484 6061561 2024-02-25 10:36:57.253 2024-02-25 10:36:57.253 1000 FEE 438079 2330 6061596 2024-02-25 10:49:21.951 2024-02-25 10:49:21.951 6900 FEE 438037 684 6061597 2024-02-25 10:49:21.951 2024-02-25 10:49:21.951 62100 TIP 438037 2151 6061612 2024-02-25 10:55:07.419 2024-02-25 10:55:07.419 0 FEE 438089 1006 6061617 2024-02-25 10:58:35.987 2024-02-25 10:58:35.987 100000 FEE 438092 13327 6061619 2024-02-25 10:59:16.125 2024-02-25 10:59:16.125 0 FEE 438092 21247 6061634 2024-02-25 11:02:56.092 2024-02-25 11:02:56.092 0 FEE 438096 5597 6061660 2024-02-25 11:12:58.447 2024-02-25 11:12:58.447 4000 FEE 438039 16633 6061661 2024-02-25 11:12:58.447 2024-02-25 11:12:58.447 36000 TIP 438039 11498 6061672 2024-02-25 11:14:49.004 2024-02-25 11:14:49.004 4000 FEE 438065 1426 6061673 2024-02-25 11:14:49.004 2024-02-25 11:14:49.004 36000 TIP 438065 11776 6061686 2024-02-25 11:18:31.887 2024-02-25 11:18:31.887 1000 FEE 438108 18454 6061710 2024-02-25 11:24:56.251 2024-02-25 11:24:56.251 2100 FEE 438106 9275 6061711 2024-02-25 11:24:56.251 2024-02-25 11:24:56.251 18900 TIP 438106 9036 6061741 2024-02-25 11:33:59.974 2024-02-25 11:33:59.974 0 FEE 438124 20045 6060831 2024-02-25 07:22:03.558 2024-02-25 07:22:03.558 1000 STREAM 141924 18016 6060835 2024-02-25 07:26:03.582 2024-02-25 07:26:03.582 1000 STREAM 141924 12049 6122420 2024-03-01 07:05:03.723 2024-03-01 07:05:03.723 1000 STREAM 141924 18449 6122421 2024-03-01 07:06:03.692 2024-03-01 07:06:03.692 1000 STREAM 141924 11458 6122433 2024-03-01 07:09:03.702 2024-03-01 07:09:03.702 1000 STREAM 141924 11590 6122445 2024-03-01 07:15:03.726 2024-03-01 07:15:03.726 1000 STREAM 141924 20546 6122449 2024-03-01 07:17:03.734 2024-03-01 07:17:03.734 1000 STREAM 141924 14168 6122451 2024-03-01 07:18:03.718 2024-03-01 07:18:03.718 1000 STREAM 141924 2342 6122461 2024-03-01 07:21:03.732 2024-03-01 07:21:03.732 1000 STREAM 141924 21352 6122465 2024-03-01 07:23:03.758 2024-03-01 07:23:03.758 1000 STREAM 141924 1007 6122486 2024-03-01 07:31:03.81 2024-03-01 07:31:03.81 1000 STREAM 141924 780 6060850 2024-02-25 07:34:03.627 2024-02-25 07:34:03.627 1000 STREAM 141924 20257 6060883 2024-02-25 07:55:03.734 2024-02-25 07:55:03.734 1000 STREAM 141924 7903 6060886 2024-02-25 07:56:03.736 2024-02-25 07:56:03.736 1000 STREAM 141924 17513 6060896 2024-02-25 07:59:03.766 2024-02-25 07:59:03.766 1000 STREAM 141924 1605 6122429 2024-03-01 07:08:03.692 2024-03-01 07:08:03.692 1000 STREAM 141924 722 6122439 2024-03-01 07:12:03.709 2024-03-01 07:12:03.709 1000 STREAM 141924 19863 6122455 2024-03-01 07:20:03.786 2024-03-01 07:20:03.786 1000 STREAM 141924 14278 6122467 2024-03-01 07:24:03.762 2024-03-01 07:24:03.762 1000 STREAM 141924 756 6122471 2024-03-01 07:27:03.778 2024-03-01 07:27:03.778 1000 STREAM 141924 16505 6122481 2024-03-01 07:29:03.782 2024-03-01 07:29:03.782 1000 STREAM 141924 13547 6060855 2024-02-25 07:39:03.707 2024-02-25 07:39:03.707 1000 STREAM 141924 6164 6060857 2024-02-25 07:40:03.76 2024-02-25 07:40:03.76 1000 STREAM 141924 20470 6060858 2024-02-25 07:41:03.752 2024-02-25 07:41:03.752 1000 STREAM 141924 4084 6060859 2024-02-25 07:42:03.731 2024-02-25 07:42:03.731 1000 STREAM 141924 8541 6060860 2024-02-25 07:43:03.758 2024-02-25 07:43:03.758 1000 STREAM 141924 19941 6060863 2024-02-25 07:44:03.777 2024-02-25 07:44:03.777 1000 STREAM 141924 2188 6060868 2024-02-25 07:47:03.836 2024-02-25 07:47:03.836 1000 STREAM 141924 8360 6122484 2024-03-01 07:29:35.655 2024-03-01 07:29:35.655 1000 FEE 444653 17455 6122509 2024-03-01 07:42:04.163 2024-03-01 07:42:04.163 100 FEE 444509 7992 6122510 2024-03-01 07:42:04.163 2024-03-01 07:42:04.163 900 TIP 444509 20562 6122526 2024-03-01 07:46:16.211 2024-03-01 07:46:16.211 100000 FEE 444656 5825 6122533 2024-03-01 07:47:28.053 2024-03-01 07:47:28.053 100 FEE 444242 17095 6122534 2024-03-01 07:47:28.053 2024-03-01 07:47:28.053 900 TIP 444242 6653 6122550 2024-03-01 07:56:46.975 2024-03-01 07:56:46.975 0 FEE 444659 21140 6122563 2024-03-01 08:04:50.393 2024-03-01 08:04:50.393 2800 FEE 444514 13759 6122564 2024-03-01 08:04:50.393 2024-03-01 08:04:50.393 25200 TIP 444514 20776 6122568 2024-03-01 08:06:13.657 2024-03-01 08:06:13.657 0 FEE 444662 4074 6122569 2024-03-01 08:06:22.338 2024-03-01 08:06:22.338 2100 FEE 444662 18679 6122570 2024-03-01 08:06:22.338 2024-03-01 08:06:22.338 18900 TIP 444662 7760 6122594 2024-03-01 08:11:03.917 2024-03-01 08:11:03.917 1000 FEE 437461 5694 6122595 2024-03-01 08:11:03.917 2024-03-01 08:11:03.917 9000 TIP 437461 16289 6122599 2024-03-01 08:11:28.768 2024-03-01 08:11:28.768 1000 FEE 444665 19837 6122600 2024-03-01 08:11:51.357 2024-03-01 08:11:51.357 1000 FEE 438056 20179 6122601 2024-03-01 08:11:51.357 2024-03-01 08:11:51.357 9000 TIP 438056 2639 6122650 2024-03-01 08:30:04.417 2024-03-01 08:30:04.417 2800 FEE 444426 20560 6122651 2024-03-01 08:30:04.417 2024-03-01 08:30:04.417 25200 TIP 444426 27 6122652 2024-03-01 08:30:05.045 2024-03-01 08:30:05.045 2800 FEE 444426 21242 6122653 2024-03-01 08:30:05.045 2024-03-01 08:30:05.045 25200 TIP 444426 7125 6122654 2024-03-01 08:30:36.789 2024-03-01 08:30:36.789 1000 FEE 444670 19911 6122657 2024-03-01 08:31:04.284 2024-03-01 08:31:04.284 2800 FEE 444166 13574 6122658 2024-03-01 08:31:04.284 2024-03-01 08:31:04.284 25200 TIP 444166 18836 6122661 2024-03-01 08:31:16.859 2024-03-01 08:31:16.859 1000 FEE 444672 20509 6122662 2024-03-01 08:31:44.524 2024-03-01 08:31:44.524 2800 FEE 443553 733 6122663 2024-03-01 08:31:44.524 2024-03-01 08:31:44.524 25200 TIP 443553 16660 6122667 2024-03-01 08:32:13.248 2024-03-01 08:32:13.248 1000 FEE 444673 17291 6122742 2024-03-01 09:04:28.054 2024-03-01 09:04:28.054 1000 FEE 444682 7978 6122782 2024-03-01 09:19:20.36 2024-03-01 09:19:20.36 4200 FEE 444465 18919 6122783 2024-03-01 09:19:20.36 2024-03-01 09:19:20.36 37800 TIP 444465 1605 6122823 2024-03-01 09:27:36.798 2024-03-01 09:27:36.798 1000 FEE 444652 861 6122824 2024-03-01 09:27:36.798 2024-03-01 09:27:36.798 9000 TIP 444652 19622 6122837 2024-03-01 09:27:41.778 2024-03-01 09:27:41.778 1000 FEE 444633 1773 6122838 2024-03-01 09:27:41.778 2024-03-01 09:27:41.778 9000 TIP 444633 18393 6122839 2024-03-01 09:27:42.23 2024-03-01 09:27:42.23 1000 FEE 444628 770 6122840 2024-03-01 09:27:42.23 2024-03-01 09:27:42.23 9000 TIP 444628 18518 6122846 2024-03-01 09:27:43.612 2024-03-01 09:27:43.612 1000 FEE 444619 20225 6122847 2024-03-01 09:27:43.612 2024-03-01 09:27:43.612 9000 TIP 444619 18170 6122856 2024-03-01 09:30:00.657 2024-03-01 09:30:00.657 2100 FEE 444687 21242 6122857 2024-03-01 09:30:00.657 2024-03-01 09:30:00.657 18900 TIP 444687 6499 6122887 2024-03-01 09:45:08.409 2024-03-01 09:45:08.409 0 FEE 444692 16808 6122903 2024-03-01 09:48:52.538 2024-03-01 09:48:52.538 2100 FEE 444534 17201 6122904 2024-03-01 09:48:52.538 2024-03-01 09:48:52.538 18900 TIP 444534 20599 6122911 2024-03-01 09:50:02.377 2024-03-01 09:50:02.377 1000 FEE 444064 6688 6122912 2024-03-01 09:50:02.377 2024-03-01 09:50:02.377 9000 TIP 444064 5449 6122914 2024-03-01 09:50:46.085 2024-03-01 09:50:46.085 1000 FEE 444416 6700 6122915 2024-03-01 09:50:46.085 2024-03-01 09:50:46.085 9000 TIP 444416 18101 6122922 2024-03-01 09:52:39.384 2024-03-01 09:52:39.384 1000 FEE 444016 17041 6122923 2024-03-01 09:52:39.384 2024-03-01 09:52:39.384 9000 TIP 444016 18330 6122975 2024-03-01 10:02:49.932 2024-03-01 10:02:49.932 1000 FEE 444704 18280 6122988 2024-03-01 10:04:35.841 2024-03-01 10:04:35.841 1000 FEE 444705 20606 6122995 2024-03-01 10:04:51.993 2024-03-01 10:04:51.993 100 FEE 444522 16145 6122996 2024-03-01 10:04:51.993 2024-03-01 10:04:51.993 900 TIP 444522 16353 6123003 2024-03-01 10:04:53.811 2024-03-01 10:04:53.811 100 FEE 444522 6335 6123004 2024-03-01 10:04:53.811 2024-03-01 10:04:53.811 900 TIP 444522 20272 6123016 2024-03-01 10:06:53.075 2024-03-01 10:06:53.075 100 FEE 444700 11527 6123017 2024-03-01 10:06:53.075 2024-03-01 10:06:53.075 900 TIP 444700 19043 6123026 2024-03-01 10:07:18.202 2024-03-01 10:07:18.202 100 FEE 444700 20299 6123027 2024-03-01 10:07:18.202 2024-03-01 10:07:18.202 900 TIP 444700 15100 6123080 2024-03-01 10:15:07.182 2024-03-01 10:15:07.182 2100 FEE 444561 17162 6123081 2024-03-01 10:15:07.182 2024-03-01 10:15:07.182 18900 TIP 444561 16667 6123085 2024-03-01 10:16:13.798 2024-03-01 10:16:13.798 2100 FEE 444717 674 6123086 2024-03-01 10:16:13.798 2024-03-01 10:16:13.798 18900 TIP 444717 12222 6123095 2024-03-01 10:17:52.441 2024-03-01 10:17:52.441 2100 FEE 444669 1261 6123096 2024-03-01 10:17:52.441 2024-03-01 10:17:52.441 18900 TIP 444669 19640 6123118 2024-03-01 10:21:02.743 2024-03-01 10:21:02.743 100 FEE 444707 21453 6123119 2024-03-01 10:21:02.743 2024-03-01 10:21:02.743 900 TIP 444707 21342 6123133 2024-03-01 10:21:58.509 2024-03-01 10:21:58.509 100 FEE 444720 19810 6060864 2024-02-25 07:45:03.694 2024-02-25 07:45:03.694 1000 STREAM 141924 19484 6060865 2024-02-25 07:46:03.695 2024-02-25 07:46:03.695 1000 STREAM 141924 19732 6060870 2024-02-25 07:49:03.698 2024-02-25 07:49:03.698 1000 STREAM 141924 19535 6060871 2024-02-25 07:50:03.696 2024-02-25 07:50:03.696 1000 STREAM 141924 18452 6060872 2024-02-25 07:51:03.703 2024-02-25 07:51:03.703 1000 STREAM 141924 6765 6060873 2024-02-25 07:52:03.712 2024-02-25 07:52:03.712 1000 STREAM 141924 16789 6060880 2024-02-25 07:53:03.726 2024-02-25 07:53:03.726 1000 STREAM 141924 17984 6060882 2024-02-25 07:54:03.72 2024-02-25 07:54:03.72 1000 STREAM 141924 17109 6060894 2024-02-25 07:57:03.754 2024-02-25 07:57:03.754 1000 STREAM 141924 12334 6060895 2024-02-25 07:58:03.773 2024-02-25 07:58:03.773 1000 STREAM 141924 19488 6060897 2024-02-25 08:00:03.85 2024-02-25 08:00:03.85 1000 STREAM 141924 20218 6122489 2024-03-01 07:32:03.359 2024-03-01 07:32:03.359 1000 STREAM 141924 21320 6122516 2024-03-01 07:45:03.615 2024-03-01 07:45:03.615 1000 STREAM 141924 5129 6122535 2024-03-01 07:48:03.59 2024-03-01 07:48:03.59 1000 STREAM 141924 20646 6122539 2024-03-01 07:51:03.678 2024-03-01 07:51:03.678 1000 STREAM 141924 16485 6122541 2024-03-01 07:53:03.675 2024-03-01 07:53:03.675 1000 STREAM 141924 726 6122558 2024-03-01 08:01:03.787 2024-03-01 08:01:03.787 1000 STREAM 141924 19038 6122559 2024-03-01 08:02:03.803 2024-03-01 08:02:03.803 1000 STREAM 141924 12422 6122560 2024-03-01 08:03:03.814 2024-03-01 08:03:03.814 1000 STREAM 141924 15544 6122561 2024-03-01 08:04:03.821 2024-03-01 08:04:03.821 1000 STREAM 141924 11329 6122565 2024-03-01 08:05:03.862 2024-03-01 08:05:03.862 1000 STREAM 141924 19557 6122567 2024-03-01 08:06:03.85 2024-03-01 08:06:03.85 1000 STREAM 141924 18402 6122574 2024-03-01 08:07:03.856 2024-03-01 08:07:03.856 1000 STREAM 141924 21088 6122603 2024-03-01 08:13:03.915 2024-03-01 08:13:03.915 1000 STREAM 141924 17124 6122726 2024-03-01 08:58:04.458 2024-03-01 08:58:04.458 1000 STREAM 141924 18470 6122732 2024-03-01 09:02:04.514 2024-03-01 09:02:04.514 1000 STREAM 141924 20776 6122762 2024-03-01 09:12:04.714 2024-03-01 09:12:04.714 1000 STREAM 141924 2342 6122781 2024-03-01 09:19:04.807 2024-03-01 09:19:04.807 1000 STREAM 141924 10096 6123462 2024-03-01 10:45:04.505 2024-03-01 10:45:04.505 1000 STREAM 141924 21527 6123491 2024-03-01 10:51:04.615 2024-03-01 10:51:04.615 1000 STREAM 141924 4574 6060869 2024-02-25 07:48:03.842 2024-02-25 07:48:03.842 1000 STREAM 141924 4574 6061058 2024-02-25 08:16:06.03 2024-02-25 08:16:06.03 1000 STREAM 141924 21430 6061062 2024-02-25 08:18:06.036 2024-02-25 08:18:06.036 1000 STREAM 141924 18402 6061069 2024-02-25 08:22:06.094 2024-02-25 08:22:06.094 1000 STREAM 141924 21430 6061119 2024-02-25 08:34:02.331 2024-02-25 08:34:02.331 1000 STREAM 141924 1740 6061122 2024-02-25 08:36:02.356 2024-02-25 08:36:02.356 1000 STREAM 141924 19910 6061124 2024-02-25 08:38:02.385 2024-02-25 08:38:02.385 1000 STREAM 141924 18517 6061137 2024-02-25 08:44:02.63 2024-02-25 08:44:02.63 1000 STREAM 141924 5293 6061141 2024-02-25 08:45:02.658 2024-02-25 08:45:02.658 1000 STREAM 141924 1000 6061166 2024-02-25 08:50:02.737 2024-02-25 08:50:02.737 1000 STREAM 141924 20980 6061179 2024-02-25 08:51:02.733 2024-02-25 08:51:02.733 1000 STREAM 141924 20901 6061186 2024-02-25 08:53:02.744 2024-02-25 08:53:02.744 1000 STREAM 141924 897 6061189 2024-02-25 08:54:02.758 2024-02-25 08:54:02.758 1000 STREAM 141924 19576 6061205 2024-02-25 08:57:02.797 2024-02-25 08:57:02.797 1000 STREAM 141924 21262 6061219 2024-02-25 09:01:02.883 2024-02-25 09:01:02.883 1000 STREAM 141924 15703 6061223 2024-02-25 09:05:02.944 2024-02-25 09:05:02.944 1000 STREAM 141924 900 6061227 2024-02-25 09:06:02.961 2024-02-25 09:06:02.961 1000 STREAM 141924 15094 6061245 2024-02-25 09:11:02.986 2024-02-25 09:11:02.986 1000 STREAM 141924 7869 6061249 2024-02-25 09:15:03.027 2024-02-25 09:15:03.027 1000 STREAM 141924 20717 6061262 2024-02-25 09:20:03.067 2024-02-25 09:20:03.067 1000 STREAM 141924 14688 6061268 2024-02-25 09:22:03.083 2024-02-25 09:22:03.083 1000 STREAM 141924 4378 6061269 2024-02-25 09:23:03.077 2024-02-25 09:23:03.077 1000 STREAM 141924 21119 6061270 2024-02-25 09:24:03.075 2024-02-25 09:24:03.075 1000 STREAM 141924 9366 6061272 2024-02-25 09:26:03.098 2024-02-25 09:26:03.098 1000 STREAM 141924 18629 6061274 2024-02-25 09:28:03.109 2024-02-25 09:28:03.109 1000 STREAM 141924 20775 6061282 2024-02-25 09:30:03.16 2024-02-25 09:30:03.16 1000 STREAM 141924 21532 6061283 2024-02-25 09:31:03.136 2024-02-25 09:31:03.136 1000 STREAM 141924 13076 6061288 2024-02-25 09:33:03.143 2024-02-25 09:33:03.143 1000 STREAM 141924 21463 6061296 2024-02-25 09:35:03.169 2024-02-25 09:35:03.169 1000 STREAM 141924 20022 6061304 2024-02-25 09:37:03.194 2024-02-25 09:37:03.194 1000 STREAM 141924 20599 6061308 2024-02-25 09:38:03.2 2024-02-25 09:38:03.2 1000 STREAM 141924 19826 6061310 2024-02-25 09:39:03.21 2024-02-25 09:39:03.21 1000 STREAM 141924 19417 6061329 2024-02-25 09:46:03.267 2024-02-25 09:46:03.267 1000 STREAM 141924 16536 6122497 2024-03-01 07:37:56.576 2024-03-01 07:37:56.576 1000 FEE 444654 4798 6122502 2024-03-01 07:39:44.836 2024-03-01 07:39:44.836 100 FEE 444567 19689 6122503 2024-03-01 07:39:44.836 2024-03-01 07:39:44.836 900 TIP 444567 19398 6122505 2024-03-01 07:40:19.757 2024-03-01 07:40:19.757 0 FEE 444654 19660 6122512 2024-03-01 07:43:25.891 2024-03-01 07:43:25.891 100 FEE 444382 21166 6122513 2024-03-01 07:43:25.891 2024-03-01 07:43:25.891 900 TIP 444382 18426 6122523 2024-03-01 07:45:49.139 2024-03-01 07:45:49.139 100 FEE 444618 21248 6122524 2024-03-01 07:45:49.139 2024-03-01 07:45:49.139 900 TIP 444618 4304 6122530 2024-03-01 07:47:00.04 2024-03-01 07:47:00.04 100 FEE 444076 18658 6122531 2024-03-01 07:47:00.04 2024-03-01 07:47:00.04 900 TIP 444076 6136 6122544 2024-03-01 07:53:48.932 2024-03-01 07:53:48.932 100 FEE 444656 2543 6122545 2024-03-01 07:53:48.932 2024-03-01 07:53:48.932 900 TIP 444656 2196 6122571 2024-03-01 08:06:30.108 2024-03-01 08:06:30.108 1000 FEE 444663 8287 6122572 2024-03-01 08:07:01.892 2024-03-01 08:07:01.892 2100 FEE 444429 19087 6122573 2024-03-01 08:07:01.892 2024-03-01 08:07:01.892 18900 TIP 444429 18470 6122619 2024-03-01 08:17:31.923 2024-03-01 08:17:31.923 1000 FEE 444666 848 6122623 2024-03-01 08:20:14.347 2024-03-01 08:20:14.347 1000 FEE 444572 19289 6122624 2024-03-01 08:20:14.347 2024-03-01 08:20:14.347 9000 TIP 444572 1208 6122647 2024-03-01 08:29:46.218 2024-03-01 08:29:46.218 2800 FEE 444360 14152 6122648 2024-03-01 08:29:46.218 2024-03-01 08:29:46.218 25200 TIP 444360 1489 6122678 2024-03-01 08:38:52.27 2024-03-01 08:38:52.27 800 FEE 444102 19976 6122679 2024-03-01 08:38:52.27 2024-03-01 08:38:52.27 7200 TIP 444102 20106 6122689 2024-03-01 08:46:39.161 2024-03-01 08:46:39.161 1000 FEE 444676 20904 6122697 2024-03-01 08:50:19.546 2024-03-01 08:50:19.546 100 FEE 444168 1198 6122698 2024-03-01 08:50:19.546 2024-03-01 08:50:19.546 900 TIP 444168 4776 6122711 2024-03-01 08:50:46.863 2024-03-01 08:50:46.863 0 FEE 202423 690 6122758 2024-03-01 09:09:13.381 2024-03-01 09:09:13.381 1000 FEE 444661 16194 6122759 2024-03-01 09:09:13.381 2024-03-01 09:09:13.381 9000 TIP 444661 2709 6122764 2024-03-01 09:12:20.063 2024-03-01 09:12:20.063 1000 FEE 444679 21033 6122765 2024-03-01 09:12:20.063 2024-03-01 09:12:20.063 9000 TIP 444679 15544 6122771 2024-03-01 09:13:19.194 2024-03-01 09:13:19.194 500 FEE 444102 19909 6122772 2024-03-01 09:13:19.194 2024-03-01 09:13:19.194 4500 TIP 444102 979 6122790 2024-03-01 09:19:55.323 2024-03-01 09:19:55.323 2100 FEE 444570 2596 6122791 2024-03-01 09:19:55.323 2024-03-01 09:19:55.323 18900 TIP 444570 9655 6122817 2024-03-01 09:27:34.498 2024-03-01 09:27:34.498 1000 FEE 444671 18180 6122818 2024-03-01 09:27:34.498 2024-03-01 09:27:34.498 9000 TIP 444671 4776 6122821 2024-03-01 09:27:35.752 2024-03-01 09:27:35.752 1000 FEE 444657 664 6122822 2024-03-01 09:27:35.752 2024-03-01 09:27:35.752 9000 TIP 444657 9347 6122833 2024-03-01 09:27:40.375 2024-03-01 09:27:40.375 1000 FEE 444640 1596 6122834 2024-03-01 09:27:40.375 2024-03-01 09:27:40.375 9000 TIP 444640 11760 6122850 2024-03-01 09:27:45.238 2024-03-01 09:27:45.238 1000 FEE 444606 21287 6122851 2024-03-01 09:27:45.238 2024-03-01 09:27:45.238 9000 TIP 444606 3642 6122865 2024-03-01 09:34:04.432 2024-03-01 09:34:04.432 12100 FEE 444365 18640 6122866 2024-03-01 09:34:04.432 2024-03-01 09:34:04.432 108900 TIP 444365 19795 6122890 2024-03-01 09:45:13.929 2024-03-01 09:45:13.929 200 FEE 438670 20624 6122891 2024-03-01 09:45:13.929 2024-03-01 09:45:13.929 1800 TIP 438670 7654 6122896 2024-03-01 09:45:15.815 2024-03-01 09:45:15.815 200 FEE 438670 15159 6122897 2024-03-01 09:45:15.815 2024-03-01 09:45:15.815 1800 TIP 438670 20208 6122945 2024-03-01 09:55:28.855 2024-03-01 09:55:28.855 2100 FEE 443915 844 6122946 2024-03-01 09:55:28.855 2024-03-01 09:55:28.855 18900 TIP 443915 19156 6122970 2024-03-01 10:00:04.926 2024-03-01 10:00:04.926 100000 FEE 444702 1769 6122981 2024-03-01 10:03:54.346 2024-03-01 10:03:54.346 1000 FEE 444700 6700 6122982 2024-03-01 10:03:54.346 2024-03-01 10:03:54.346 9000 TIP 444700 2596 6123040 2024-03-01 10:09:52.727 2024-03-01 10:09:52.727 2100 FEE 444707 977 6060904 2024-02-25 08:03:05.693 2024-02-25 08:03:05.693 1000 STREAM 141924 19132 6060905 2024-02-25 08:04:05.69 2024-02-25 08:04:05.69 1000 STREAM 141924 2844 6060919 2024-02-25 08:07:05.703 2024-02-25 08:07:05.703 1000 STREAM 141924 12965 6060948 2024-02-25 08:09:05.714 2024-02-25 08:09:05.714 1000 STREAM 141924 1175 6060992 2024-02-25 08:11:05.727 2024-02-25 08:11:05.727 1000 STREAM 141924 2537 6061032 2024-02-25 08:12:05.732 2024-02-25 08:12:05.732 1000 STREAM 141924 8289 6122525 2024-03-01 07:46:03.571 2024-03-01 07:46:03.571 1000 STREAM 141924 14122 6122532 2024-03-01 07:47:03.578 2024-03-01 07:47:03.578 1000 STREAM 141924 19660 6122536 2024-03-01 07:49:03.608 2024-03-01 07:49:03.608 1000 STREAM 141924 2844 6122581 2024-03-01 08:08:03.88 2024-03-01 08:08:03.88 1000 STREAM 141924 18667 6122582 2024-03-01 08:09:03.872 2024-03-01 08:09:03.872 1000 STREAM 141924 18351 6122587 2024-03-01 08:10:03.92 2024-03-01 08:10:03.92 1000 STREAM 141924 17392 6122593 2024-03-01 08:11:03.909 2024-03-01 08:11:03.909 1000 STREAM 141924 14669 6122602 2024-03-01 08:12:03.901 2024-03-01 08:12:03.901 1000 STREAM 141924 11073 6122721 2024-03-01 08:57:04.44 2024-03-01 08:57:04.44 1000 STREAM 141924 16250 6122773 2024-03-01 09:14:04.743 2024-03-01 09:14:04.743 1000 STREAM 141924 2514 6123439 2024-03-01 10:41:04.414 2024-03-01 10:41:04.414 1000 STREAM 141924 5036 6123678 2024-03-01 11:09:04.773 2024-03-01 11:09:04.773 1000 STREAM 141924 825 6123695 2024-03-01 11:11:04.815 2024-03-01 11:11:04.815 1000 STREAM 141924 20849 6123703 2024-03-01 11:12:04.802 2024-03-01 11:12:04.802 1000 STREAM 141924 919 6123755 2024-03-01 11:15:04.862 2024-03-01 11:15:04.862 1000 STREAM 141924 18984 6123772 2024-03-01 11:17:04.892 2024-03-01 11:17:04.892 1000 STREAM 141924 6164 6123776 2024-03-01 11:18:04.899 2024-03-01 11:18:04.899 1000 STREAM 141924 5728 6123782 2024-03-01 11:19:04.893 2024-03-01 11:19:04.893 1000 STREAM 141924 12911 6123787 2024-03-01 11:20:04.89 2024-03-01 11:20:04.89 1000 STREAM 141924 17227 6060938 2024-02-25 08:08:52.111 2024-02-25 08:08:52.111 1000 FEE 436007 646 6060939 2024-02-25 08:08:52.111 2024-02-25 08:08:52.111 9000 TIP 436007 10096 6060969 2024-02-25 08:09:51.613 2024-02-25 08:09:51.613 1000 FEE 437973 19967 6060970 2024-02-25 08:09:51.613 2024-02-25 08:09:51.613 9000 TIP 437973 18208 6060990 2024-02-25 08:11:04.849 2024-02-25 08:11:04.849 1000 FEE 437900 9809 6060991 2024-02-25 08:11:04.849 2024-02-25 08:11:04.849 9000 TIP 437900 20840 6060999 2024-02-25 08:11:09.218 2024-02-25 08:11:09.218 1000 FEE 437555 2065 6061000 2024-02-25 08:11:09.218 2024-02-25 08:11:09.218 9000 TIP 437555 20713 6061009 2024-02-25 08:11:17.199 2024-02-25 08:11:17.199 1000 FEE 437233 15858 6061010 2024-02-25 08:11:17.199 2024-02-25 08:11:17.199 9000 TIP 437233 16145 6061013 2024-02-25 08:11:19.877 2024-02-25 08:11:19.877 1000 FEE 437769 9611 6061014 2024-02-25 08:11:19.877 2024-02-25 08:11:19.877 9000 TIP 437769 12516 6061028 2024-02-25 08:11:34.953 2024-02-25 08:11:34.953 1000 FEE 437832 17091 6061029 2024-02-25 08:11:34.953 2024-02-25 08:11:34.953 9000 TIP 437832 19459 6061030 2024-02-25 08:11:58.62 2024-02-25 08:11:58.62 1000 FEE 437919 17800 6061031 2024-02-25 08:11:58.62 2024-02-25 08:11:58.62 9000 TIP 437919 18832 6061033 2024-02-25 08:12:24.268 2024-02-25 08:12:24.268 100 FEE 438001 20251 6061034 2024-02-25 08:12:24.268 2024-02-25 08:12:24.268 900 TIP 438001 10862 6061035 2024-02-25 08:12:25.779 2024-02-25 08:12:25.779 1000 FEE 437886 985 6061036 2024-02-25 08:12:25.779 2024-02-25 08:12:25.779 9000 TIP 437886 20084 6061108 2024-02-25 08:31:11.507 2024-02-25 08:31:11.507 500 FEE 437827 20616 6061109 2024-02-25 08:31:11.507 2024-02-25 08:31:11.507 4500 TIP 437827 20623 6061115 2024-02-25 08:33:04.641 2024-02-25 08:33:04.641 500 FEE 437672 3353 6061116 2024-02-25 08:33:04.641 2024-02-25 08:33:04.641 4500 TIP 437672 13544 6061126 2024-02-25 08:39:34.593 2024-02-25 08:39:34.593 100 FEE 437817 19941 6061127 2024-02-25 08:39:34.593 2024-02-25 08:39:34.593 900 TIP 437817 21014 6061145 2024-02-25 08:46:33.775 2024-02-25 08:46:33.775 500 FEE 437966 3478 6061146 2024-02-25 08:46:33.775 2024-02-25 08:46:33.775 4500 TIP 437966 20730 6061175 2024-02-25 08:50:44.381 2024-02-25 08:50:44.381 2100 FEE 437995 7553 6061176 2024-02-25 08:50:44.381 2024-02-25 08:50:44.381 18900 TIP 437995 14472 6061177 2024-02-25 08:50:49.718 2024-02-25 08:50:49.718 2100 FEE 437992 2224 6061178 2024-02-25 08:50:49.718 2024-02-25 08:50:49.718 18900 TIP 437992 2832 6061182 2024-02-25 08:51:27.523 2024-02-25 08:51:27.523 1000 FEE 438030 16966 6061187 2024-02-25 08:53:52.703 2024-02-25 08:53:52.703 2100 FEE 438017 11523 6061188 2024-02-25 08:53:52.703 2024-02-25 08:53:52.703 18900 TIP 438017 5129 6061190 2024-02-25 08:54:10.78 2024-02-25 08:54:10.78 1000 FEE 438031 18274 6061225 2024-02-25 09:05:35.095 2024-02-25 09:05:35.095 1100 FEE 438033 1814 6061226 2024-02-25 09:05:35.095 2024-02-25 09:05:35.095 9900 TIP 438033 14785 6061277 2024-02-25 09:28:30.716 2024-02-25 09:28:30.716 500 FEE 437752 21138 6061278 2024-02-25 09:28:30.716 2024-02-25 09:28:30.716 4500 TIP 437752 1712 6061279 2024-02-25 09:28:31.381 2024-02-25 09:28:31.381 500 FEE 437752 20251 6061280 2024-02-25 09:28:31.381 2024-02-25 09:28:31.381 4500 TIP 437752 16769 6061317 2024-02-25 09:41:11.649 2024-02-25 09:41:11.649 2100 FEE 437981 9242 6061318 2024-02-25 09:41:11.649 2024-02-25 09:41:11.649 18900 TIP 437981 6798 6061337 2024-02-25 09:51:19.444 2024-02-25 09:51:19.444 1000 FEE 438052 16571 6061339 2024-02-25 09:51:48.932 2024-02-25 09:51:48.932 1000 FEE 438054 4322 6061369 2024-02-25 10:00:05.841 2024-02-25 10:00:05.841 2100 FEE 437721 4238 6061370 2024-02-25 10:00:05.841 2024-02-25 10:00:05.841 18900 TIP 437721 19292 6061378 2024-02-25 10:02:43.036 2024-02-25 10:02:43.036 1000 FEE 438058 2206 6061379 2024-02-25 10:02:43.036 2024-02-25 10:02:43.036 9000 TIP 438058 18005 6061388 2024-02-25 10:06:37.978 2024-02-25 10:06:37.978 2100 FEE 438032 12561 6061389 2024-02-25 10:06:37.978 2024-02-25 10:06:37.978 18900 TIP 438032 9433 6061392 2024-02-25 10:06:45.156 2024-02-25 10:06:45.156 2100 FEE 437953 13753 6061393 2024-02-25 10:06:45.156 2024-02-25 10:06:45.156 18900 TIP 437953 21344 6061403 2024-02-25 10:07:03.389 2024-02-25 10:07:03.389 2100 FEE 437828 21539 6061404 2024-02-25 10:07:03.389 2024-02-25 10:07:03.389 18900 TIP 437828 21609 6061418 2024-02-25 10:08:40.326 2024-02-25 10:08:40.326 1000 FEE 438059 5752 6061435 2024-02-25 10:10:38.11 2024-02-25 10:10:38.11 2100 FEE 437888 15409 6061436 2024-02-25 10:10:38.11 2024-02-25 10:10:38.11 18900 TIP 437888 1729 6061477 2024-02-25 10:17:31.612 2024-02-25 10:17:31.612 1000 FEE 438069 19488 6061486 2024-02-25 10:18:58.226 2024-02-25 10:18:58.226 1000 FEE 437800 17682 6061487 2024-02-25 10:18:58.226 2024-02-25 10:18:58.226 9000 TIP 437800 1650 6061499 2024-02-25 10:22:09.556 2024-02-25 10:22:09.556 2100 FEE 438065 9349 6061500 2024-02-25 10:22:09.556 2024-02-25 10:22:09.556 18900 TIP 438065 4624 6061513 2024-02-25 10:27:29.322 2024-02-25 10:27:29.322 2100 FEE 435985 18473 6061514 2024-02-25 10:27:29.322 2024-02-25 10:27:29.322 18900 TIP 435985 20511 6061537 2024-02-25 10:31:33.975 2024-02-25 10:31:33.975 2500 FEE 437469 20624 6061538 2024-02-25 10:31:33.975 2024-02-25 10:31:33.975 22500 TIP 437469 19034 6061559 2024-02-25 10:36:38.9 2024-02-25 10:36:38.9 100 FEE 438047 19507 6061560 2024-02-25 10:36:38.9 2024-02-25 10:36:38.9 900 TIP 438047 12057 6061580 2024-02-25 10:41:17.245 2024-02-25 10:41:17.245 0 FEE 438076 17522 6061591 2024-02-25 10:47:41.669 2024-02-25 10:47:41.669 3000 FEE 437322 1060 6061592 2024-02-25 10:47:41.669 2024-02-25 10:47:41.669 27000 TIP 437322 629 6061600 2024-02-25 10:50:58.879 2024-02-25 10:50:58.879 1000 FEE 438086 20143 6061632 2024-02-25 11:02:33.6 2024-02-25 11:02:33.6 5000 FEE 438083 7746 6061633 2024-02-25 11:02:33.6 2024-02-25 11:02:33.6 45000 TIP 438083 19815 6061637 2024-02-25 11:04:06.816 2024-02-25 11:04:06.816 0 FEE 438096 21481 6061670 2024-02-25 11:14:45.2 2024-02-25 11:14:45.2 4000 FEE 437966 4238 6061671 2024-02-25 11:14:45.2 2024-02-25 11:14:45.2 36000 TIP 437966 9695 6061687 2024-02-25 11:18:52.134 2024-02-25 11:18:52.134 100000 FEE 438109 20133 6061689 2024-02-25 11:19:53.279 2024-02-25 11:19:53.279 1000 FEE 438110 18230 6061717 2024-02-25 11:25:49.903 2024-02-25 11:25:49.903 1000 FEE 438115 17592 6061719 2024-02-25 11:25:52.676 2024-02-25 11:25:52.676 1000 FEE 438117 5809 6061745 2024-02-25 11:34:17.333 2024-02-25 11:34:17.333 2100 FEE 438086 20504 6061746 2024-02-25 11:34:17.333 2024-02-25 11:34:17.333 18900 TIP 438086 20826 6061757 2024-02-25 11:35:50.641 2024-02-25 11:35:50.641 1000 FEE 438130 20153 6061760 2024-02-25 11:35:58.688 2024-02-25 11:35:58.688 1000 FEE 438096 13198 6061761 2024-02-25 11:35:58.688 2024-02-25 11:35:58.688 9000 TIP 438096 780 6061797 2024-02-25 11:42:00.792 2024-02-25 11:42:00.792 4000 FEE 438092 21320 6061798 2024-02-25 11:42:00.792 2024-02-25 11:42:00.792 36000 TIP 438092 14080 6061803 2024-02-25 11:43:10.076 2024-02-25 11:43:10.076 1000 FEE 438138 632 6061806 2024-02-25 11:43:52.405 2024-02-25 11:43:52.405 1000 FEE 438141 11165 6061819 2024-02-25 11:46:24.122 2024-02-25 11:46:24.122 0 FEE 438139 18637 6061841 2024-02-25 11:49:19.135 2024-02-25 11:49:19.135 1000 FEE 438109 20614 6061842 2024-02-25 11:49:19.135 2024-02-25 11:49:19.135 9000 TIP 438109 657 6061843 2024-02-25 11:49:19.415 2024-02-25 11:49:19.415 1000 FEE 438106 976 6061844 2024-02-25 11:49:19.415 2024-02-25 11:49:19.415 9000 TIP 438106 18678 6061857 2024-02-25 11:49:26.19 2024-02-25 11:49:26.19 1000 FEE 438051 20849 6061858 2024-02-25 11:49:26.19 2024-02-25 11:49:26.19 9000 TIP 438051 3656 6061861 2024-02-25 11:49:39.389 2024-02-25 11:49:39.389 1000 FEE 433460 777 6061037 2024-02-25 08:12:30.394 2024-02-25 08:12:30.394 100 FEE 438004 1047 6061038 2024-02-25 08:12:30.394 2024-02-25 08:12:30.394 900 TIP 438004 12951 6061039 2024-02-25 08:12:57.281 2024-02-25 08:12:57.281 1000 FEE 438009 20412 6061047 2024-02-25 08:14:15.597 2024-02-25 08:14:15.597 1000 FEE 437935 21090 6061048 2024-02-25 08:14:15.597 2024-02-25 08:14:15.597 9000 TIP 437935 1326 6061053 2024-02-25 08:14:56.121 2024-02-25 08:14:56.121 0 FEE 438008 19118 6061057 2024-02-25 08:15:45.151 2024-02-25 08:15:45.151 1000 FEE 438011 663 6061075 2024-02-25 08:23:09.648 2024-02-25 08:23:09.648 1000 FEE 438015 9337 6061078 2024-02-25 08:23:39.291 2024-02-25 08:23:39.291 1000 FEE 438016 9026 6061079 2024-02-25 08:23:44.623 2024-02-25 08:23:44.623 1000 FEE 437819 21058 6061080 2024-02-25 08:23:44.623 2024-02-25 08:23:44.623 9000 TIP 437819 12736 6061149 2024-02-25 08:47:37.905 2024-02-25 08:47:37.905 1000 FEE 438029 11158 6061162 2024-02-25 08:49:48.683 2024-02-25 08:49:48.683 500 FEE 437580 657 6061163 2024-02-25 08:49:48.683 2024-02-25 08:49:48.683 4500 TIP 437580 6515 6061164 2024-02-25 08:49:59.965 2024-02-25 08:49:59.965 500 FEE 436093 16842 6061165 2024-02-25 08:49:59.965 2024-02-25 08:49:59.965 4500 TIP 436093 19103 6061171 2024-02-25 08:50:35.162 2024-02-25 08:50:35.162 2100 FEE 438001 2577 6061172 2024-02-25 08:50:35.162 2024-02-25 08:50:35.162 18900 TIP 438001 16353 6061191 2024-02-25 08:54:29.599 2024-02-25 08:54:29.599 200 FEE 437893 16598 6061192 2024-02-25 08:54:29.599 2024-02-25 08:54:29.599 1800 TIP 437893 18313 6061208 2024-02-25 08:58:56.595 2024-02-25 08:58:56.595 1000 FEE 438033 12774 6061209 2024-02-25 08:59:02.088 2024-02-25 08:59:02.088 2100 FEE 436566 21373 6061210 2024-02-25 08:59:02.088 2024-02-25 08:59:02.088 18900 TIP 436566 694 6061224 2024-02-25 09:05:23.024 2024-02-25 09:05:23.024 10000 FEE 438036 7916 6061231 2024-02-25 09:07:21.935 2024-02-25 09:07:21.935 2100 FEE 438004 670 6061232 2024-02-25 09:07:21.935 2024-02-25 09:07:21.935 18900 TIP 438004 4650 6061286 2024-02-25 09:33:00.578 2024-02-25 09:33:00.578 11100 FEE 437698 3417 6061287 2024-02-25 09:33:00.578 2024-02-25 09:33:00.578 99900 TIP 437698 15662 6061291 2024-02-25 09:34:30.926 2024-02-25 09:34:30.926 10000 FEE 438044 17690 6061299 2024-02-25 09:35:35.89 2024-02-25 09:35:35.89 0 FEE 438045 5377 6061307 2024-02-25 09:37:56.713 2024-02-25 09:37:56.713 1000 FEE 438049 21352 6061338 2024-02-25 09:51:37.298 2024-02-25 09:51:37.298 100000 FEE 438053 19037 6061344 2024-02-25 09:53:11.82 2024-02-25 09:53:11.82 2100 FEE 435663 11670 6061345 2024-02-25 09:53:11.82 2024-02-25 09:53:11.82 18900 TIP 435663 10519 6061353 2024-02-25 09:55:36.467 2024-02-25 09:55:36.467 1000 FEE 438056 3544 6061356 2024-02-25 09:56:03.825 2024-02-25 09:56:03.825 100 FEE 437966 21263 6061357 2024-02-25 09:56:03.825 2024-02-25 09:56:03.825 900 TIP 437966 14795 6061368 2024-02-25 10:00:04.884 2024-02-25 10:00:04.884 1000 FEE 438058 18945 6061414 2024-02-25 10:08:06.267 2024-02-25 10:08:06.267 2100 FEE 437966 13931 6061415 2024-02-25 10:08:06.267 2024-02-25 10:08:06.267 18900 TIP 437966 18663 6061423 2024-02-25 10:09:03.198 2024-02-25 10:09:03.198 2100 FEE 437891 21532 6061424 2024-02-25 10:09:03.198 2024-02-25 10:09:03.198 18900 TIP 437891 14941 6061462 2024-02-25 10:14:24.128 2024-02-25 10:14:24.128 2100 FEE 437301 16355 6061463 2024-02-25 10:14:24.128 2024-02-25 10:14:24.128 18900 TIP 437301 17046 6061495 2024-02-25 10:21:13.661 2024-02-25 10:21:13.661 1000 FEE 438072 699 6061508 2024-02-25 10:25:50.194 2024-02-25 10:25:50.194 1000 FEE 438073 17001 6061528 2024-02-25 10:30:28.437 2024-02-25 10:30:28.437 2100 FEE 437190 18837 6061529 2024-02-25 10:30:28.437 2024-02-25 10:30:28.437 18900 TIP 437190 1039 6061530 2024-02-25 10:30:36.037 2024-02-25 10:30:36.037 2500 FEE 437909 13204 6061531 2024-02-25 10:30:36.037 2024-02-25 10:30:36.037 22500 TIP 437909 18169 6061539 2024-02-25 10:31:44.945 2024-02-25 10:31:44.945 1000 FEE 438076 18909 6061567 2024-02-25 10:37:22.006 2024-02-25 10:37:22.006 10000 FEE 438065 2402 6061568 2024-02-25 10:37:22.006 2024-02-25 10:37:22.006 90000 TIP 438065 10484 6061624 2024-02-25 11:00:05.632 2024-02-25 11:00:05.632 1000 FEE 438095 18659 6061628 2024-02-25 11:01:55.84 2024-02-25 11:01:55.84 5000 FEE 438075 7960 6061629 2024-02-25 11:01:55.84 2024-02-25 11:01:55.84 45000 TIP 438075 8985 6061668 2024-02-25 11:13:53.153 2024-02-25 11:13:53.153 1000 FEE 438103 959 6061703 2024-02-25 11:24:16.765 2024-02-25 11:24:16.765 1000 FEE 438109 14515 6061704 2024-02-25 11:24:16.765 2024-02-25 11:24:16.765 9000 TIP 438109 1428 6061707 2024-02-25 11:24:38.649 2024-02-25 11:24:38.649 1000 FEE 438114 5752 6061708 2024-02-25 11:24:41.759 2024-02-25 11:24:41.759 1100 FEE 437817 8459 6061709 2024-02-25 11:24:41.759 2024-02-25 11:24:41.759 9900 TIP 437817 1145 6061733 2024-02-25 11:30:00.847 2024-02-25 11:30:00.847 1000 FEE 438123 8729 6061739 2024-02-25 11:32:26.889 2024-02-25 11:32:26.889 0 FEE 438124 6533 6061748 2024-02-25 11:34:58.724 2024-02-25 11:34:58.724 1000 FEE 438126 14278 6061758 2024-02-25 11:35:51.577 2024-02-25 11:35:51.577 100000 FEE 438131 5003 6061762 2024-02-25 11:35:59.045 2024-02-25 11:35:59.045 1000 FEE 438096 13843 6061763 2024-02-25 11:35:59.045 2024-02-25 11:35:59.045 9000 TIP 438096 5519 6061778 2024-02-25 11:37:13.827 2024-02-25 11:37:13.827 1100 FEE 437760 21371 6061779 2024-02-25 11:37:13.827 2024-02-25 11:37:13.827 9900 TIP 437760 20376 6061833 2024-02-25 11:49:18.117 2024-02-25 11:49:18.117 1000 FEE 438134 15088 6061834 2024-02-25 11:49:18.117 2024-02-25 11:49:18.117 9000 TIP 438134 21254 6061837 2024-02-25 11:49:18.816 2024-02-25 11:49:18.816 1000 FEE 438122 9365 6061838 2024-02-25 11:49:18.816 2024-02-25 11:49:18.816 9000 TIP 438122 3342 6061853 2024-02-25 11:49:24.743 2024-02-25 11:49:24.743 1000 FEE 438057 18828 6061854 2024-02-25 11:49:24.743 2024-02-25 11:49:24.743 9000 TIP 438057 717 6061855 2024-02-25 11:49:25.188 2024-02-25 11:49:25.188 1000 FEE 438053 16387 6061856 2024-02-25 11:49:25.188 2024-02-25 11:49:25.188 9000 TIP 438053 5173 6061869 2024-02-25 11:49:55.265 2024-02-25 11:49:55.265 100000 FEE 438146 616 6061880 2024-02-25 11:51:58.018 2024-02-25 11:51:58.018 4000 FEE 438135 19500 6061881 2024-02-25 11:51:58.018 2024-02-25 11:51:58.018 36000 TIP 438135 19147 6061904 2024-02-25 11:54:34.806 2024-02-25 11:54:34.806 2500 FEE 437769 733 6061905 2024-02-25 11:54:34.806 2024-02-25 11:54:34.806 22500 TIP 437769 676 6061922 2024-02-25 11:58:58.578 2024-02-25 11:58:58.578 1000 FEE 414472 1773 6061923 2024-02-25 11:58:58.578 2024-02-25 11:58:58.578 9000 TIP 414472 2519 6061951 2024-02-25 12:00:53.845 2024-02-25 12:00:53.845 1000 FEE 438157 18068 6061961 2024-02-25 12:02:17.509 2024-02-25 12:02:17.509 4200 FEE 438041 16912 6061962 2024-02-25 12:02:17.509 2024-02-25 12:02:17.509 37800 TIP 438041 5852 6061040 2024-02-25 08:13:06.028 2024-02-25 08:13:06.028 1000 STREAM 141924 1673 6061045 2024-02-25 08:14:06.024 2024-02-25 08:14:06.024 1000 STREAM 141924 17011 6061066 2024-02-25 08:20:06.093 2024-02-25 08:20:06.093 1000 STREAM 141924 641 6061096 2024-02-25 08:26:02.174 2024-02-25 08:26:02.174 1000 STREAM 141924 9982 6061102 2024-02-25 08:28:02.227 2024-02-25 08:28:02.227 1000 STREAM 141924 17109 6061106 2024-02-25 08:30:02.278 2024-02-25 08:30:02.278 1000 STREAM 141924 11443 6061142 2024-02-25 08:46:02.677 2024-02-25 08:46:02.677 1000 STREAM 141924 2195 6061147 2024-02-25 08:47:02.694 2024-02-25 08:47:02.694 1000 STREAM 141924 18114 6061155 2024-02-25 08:48:02.704 2024-02-25 08:48:02.704 1000 STREAM 141924 19638 6061159 2024-02-25 08:49:02.71 2024-02-25 08:49:02.71 1000 STREAM 141924 10063 6061183 2024-02-25 08:52:02.706 2024-02-25 08:52:02.706 1000 STREAM 141924 14472 6061195 2024-02-25 08:55:02.76 2024-02-25 08:55:02.76 1000 STREAM 141924 3709 6061196 2024-02-25 08:56:02.781 2024-02-25 08:56:02.781 1000 STREAM 141924 20987 6061206 2024-02-25 08:58:02.803 2024-02-25 08:58:02.803 1000 STREAM 141924 2735 6061211 2024-02-25 08:59:02.827 2024-02-25 08:59:02.827 1000 STREAM 141924 2749 6061216 2024-02-25 09:00:02.872 2024-02-25 09:00:02.872 1000 STREAM 141924 15662 6061220 2024-02-25 09:02:02.886 2024-02-25 09:02:02.886 1000 STREAM 141924 21271 6061221 2024-02-25 09:03:02.912 2024-02-25 09:03:02.912 1000 STREAM 141924 1092 6061222 2024-02-25 09:04:02.92 2024-02-25 09:04:02.92 1000 STREAM 141924 11648 6061230 2024-02-25 09:07:02.931 2024-02-25 09:07:02.931 1000 STREAM 141924 17682 6061235 2024-02-25 09:08:02.967 2024-02-25 09:08:02.967 1000 STREAM 141924 13174 6061241 2024-02-25 09:09:02.963 2024-02-25 09:09:02.963 1000 STREAM 141924 21062 6061242 2024-02-25 09:10:02.985 2024-02-25 09:10:02.985 1000 STREAM 141924 14552 6061246 2024-02-25 09:12:02.983 2024-02-25 09:12:02.983 1000 STREAM 141924 14255 6061247 2024-02-25 09:13:03.023 2024-02-25 09:13:03.023 1000 STREAM 141924 11298 6061248 2024-02-25 09:14:03.019 2024-02-25 09:14:03.019 1000 STREAM 141924 16536 6061256 2024-02-25 09:16:03.039 2024-02-25 09:16:03.039 1000 STREAM 141924 16177 6061258 2024-02-25 09:17:03.061 2024-02-25 09:17:03.061 1000 STREAM 141924 9329 6061259 2024-02-25 09:18:03.052 2024-02-25 09:18:03.052 1000 STREAM 141924 17727 6061260 2024-02-25 09:19:03.097 2024-02-25 09:19:03.097 1000 STREAM 141924 2514 6061263 2024-02-25 09:21:03.07 2024-02-25 09:21:03.07 1000 STREAM 141924 6499 6061271 2024-02-25 09:25:03.09 2024-02-25 09:25:03.09 1000 STREAM 141924 5703 6061273 2024-02-25 09:27:03.1 2024-02-25 09:27:03.1 1000 STREAM 141924 12930 6061281 2024-02-25 09:29:03.118 2024-02-25 09:29:03.118 1000 STREAM 141924 10690 6061284 2024-02-25 09:32:03.148 2024-02-25 09:32:03.148 1000 STREAM 141924 1471 6061290 2024-02-25 09:34:03.148 2024-02-25 09:34:03.148 1000 STREAM 141924 13759 6061302 2024-02-25 09:36:03.177 2024-02-25 09:36:03.177 1000 STREAM 141924 16754 6061315 2024-02-25 09:40:03.231 2024-02-25 09:40:03.231 1000 STREAM 141924 14472 6061316 2024-02-25 09:41:03.214 2024-02-25 09:41:03.214 1000 STREAM 141924 18460 6061321 2024-02-25 09:42:03.224 2024-02-25 09:42:03.224 1000 STREAM 141924 9364 6061325 2024-02-25 09:43:03.229 2024-02-25 09:43:03.229 1000 STREAM 141924 631 6061327 2024-02-25 09:45:03.256 2024-02-25 09:45:03.256 1000 STREAM 141924 9200 6061330 2024-02-25 09:47:03.282 2024-02-25 09:47:03.282 1000 STREAM 141924 9366 6061343 2024-02-25 09:53:03.288 2024-02-25 09:53:03.288 1000 STREAM 141924 21263 6061350 2024-02-25 09:54:03.304 2024-02-25 09:54:03.304 1000 STREAM 141924 21140 6061352 2024-02-25 09:55:03.304 2024-02-25 09:55:03.304 1000 STREAM 141924 8998 6122540 2024-03-01 07:52:02.377 2024-03-01 07:52:02.377 1000 STREAM 141924 1817 6122547 2024-03-01 07:55:02.357 2024-03-01 07:55:02.357 1000 STREAM 141924 15588 6122551 2024-03-01 07:57:02.365 2024-03-01 07:57:02.365 1000 STREAM 141924 11423 6061065 2024-02-25 08:19:04.489 2024-02-25 08:19:04.489 1000 STREAM 141924 21491 6061074 2024-02-25 08:23:04.906 2024-02-25 08:23:04.906 1000 STREAM 141924 10359 6061086 2024-02-25 08:24:04.9 2024-02-25 08:24:04.9 1000 STREAM 141924 19857 6061101 2024-02-25 08:27:04.922 2024-02-25 08:27:04.922 1000 STREAM 141924 20663 6061104 2024-02-25 08:29:04.925 2024-02-25 08:29:04.925 1000 STREAM 141924 20811 6061112 2024-02-25 08:32:04.966 2024-02-25 08:32:04.966 1000 STREAM 141924 27 6061120 2024-02-25 08:35:04.982 2024-02-25 08:35:04.982 1000 STREAM 141924 7960 6122606 2024-03-01 08:14:02.741 2024-03-01 08:14:02.741 1000 STREAM 141924 10342 6122607 2024-03-01 08:15:02.805 2024-03-01 08:15:02.805 1000 STREAM 141924 5500 6122609 2024-03-01 08:16:02.785 2024-03-01 08:16:02.785 1000 STREAM 141924 5708 6122620 2024-03-01 08:18:02.798 2024-03-01 08:18:02.798 1000 STREAM 141924 2576 6122621 2024-03-01 08:19:02.807 2024-03-01 08:19:02.807 1000 STREAM 141924 18310 6122625 2024-03-01 08:21:02.805 2024-03-01 08:21:02.805 1000 STREAM 141924 20218 6122630 2024-03-01 08:23:02.815 2024-03-01 08:23:02.815 1000 STREAM 141924 14545 6122645 2024-03-01 08:29:02.843 2024-03-01 08:29:02.843 1000 STREAM 141924 20439 6122649 2024-03-01 08:30:02.854 2024-03-01 08:30:02.854 1000 STREAM 141924 14195 6122656 2024-03-01 08:31:02.851 2024-03-01 08:31:02.851 1000 STREAM 141924 21352 6122884 2024-03-01 09:43:03.91 2024-03-01 09:43:03.91 1000 STREAM 141924 16842 6123162 2024-03-01 10:24:04.336 2024-03-01 10:24:04.336 1000 STREAM 141924 658 6123357 2024-03-01 10:31:04.63 2024-03-01 10:31:04.63 1000 STREAM 141924 19449 6123387 2024-03-01 10:34:04.646 2024-03-01 10:34:04.646 1000 STREAM 141924 18816 6123803 2024-03-01 11:23:05.19 2024-03-01 11:23:05.19 1000 STREAM 141924 2013 6123811 2024-03-01 11:25:05.193 2024-03-01 11:25:05.193 1000 STREAM 141924 12072 6123816 2024-03-01 11:26:05.197 2024-03-01 11:26:05.197 1000 STREAM 141924 2789 6123833 2024-03-01 11:27:05.206 2024-03-01 11:27:05.206 1000 STREAM 141924 15180 6123840 2024-03-01 11:28:05.201 2024-03-01 11:28:05.201 1000 STREAM 141924 15408 6123884 2024-03-01 11:34:05.233 2024-03-01 11:34:05.233 1000 STREAM 141924 18208 6123888 2024-03-01 11:36:05.23 2024-03-01 11:36:05.23 1000 STREAM 141924 5578 6123889 2024-03-01 11:37:05.228 2024-03-01 11:37:05.228 1000 STREAM 141924 11866 6123901 2024-03-01 11:40:05.261 2024-03-01 11:40:05.261 1000 STREAM 141924 21520 6123904 2024-03-01 11:41:05.256 2024-03-01 11:41:05.256 1000 STREAM 141924 11075 6123923 2024-03-01 11:44:05.268 2024-03-01 11:44:05.268 1000 STREAM 141924 10944 6123943 2024-03-01 11:48:05.335 2024-03-01 11:48:05.335 1000 STREAM 141924 2342 6123961 2024-03-01 11:49:05.341 2024-03-01 11:49:05.341 1000 STREAM 141924 12721 6061068 2024-02-25 08:21:04.486 2024-02-25 08:21:04.486 1000 STREAM 141924 2832 6061091 2024-02-25 08:25:04.905 2024-02-25 08:25:04.905 1000 STREAM 141924 17602 6061107 2024-02-25 08:31:04.935 2024-02-25 08:31:04.935 1000 STREAM 141924 8037 6061117 2024-02-25 08:33:04.972 2024-02-25 08:33:04.972 1000 STREAM 141924 13763 6061125 2024-02-25 08:39:05.6 2024-02-25 08:39:05.6 1000 STREAM 141924 20588 6122618 2024-03-01 08:17:02.799 2024-03-01 08:17:02.799 1000 STREAM 141924 18679 6122622 2024-03-01 08:20:02.829 2024-03-01 08:20:02.829 1000 STREAM 141924 16847 6122627 2024-03-01 08:22:02.808 2024-03-01 08:22:02.808 1000 STREAM 141924 19652 6122632 2024-03-01 08:25:02.819 2024-03-01 08:25:02.819 1000 STREAM 141924 20623 6122633 2024-03-01 08:26:02.821 2024-03-01 08:26:02.821 1000 STREAM 141924 12821 6122666 2024-03-01 08:32:02.854 2024-03-01 08:32:02.854 1000 STREAM 141924 20564 6122668 2024-03-01 08:33:02.864 2024-03-01 08:33:02.864 1000 STREAM 141924 13327 6122670 2024-03-01 08:35:02.872 2024-03-01 08:35:02.872 1000 STREAM 141924 21233 6122681 2024-03-01 08:40:02.911 2024-03-01 08:40:02.911 1000 STREAM 141924 9611 6061123 2024-02-25 08:37:05.338 2024-02-25 08:37:05.338 1000 STREAM 141924 977 6061130 2024-02-25 08:40:05.353 2024-02-25 08:40:05.353 1000 STREAM 141924 5791 6061133 2024-02-25 08:41:05.348 2024-02-25 08:41:05.348 1000 STREAM 141924 19284 6061135 2024-02-25 08:42:05.352 2024-02-25 08:42:05.352 1000 STREAM 141924 5978 6122631 2024-03-01 08:24:02.249 2024-03-01 08:24:02.249 1000 STREAM 141924 9167 6122634 2024-03-01 08:27:02.274 2024-03-01 08:27:02.274 1000 STREAM 141924 7553 6061326 2024-02-25 09:44:03.231 2024-02-25 09:44:03.231 1000 STREAM 141924 6361 6061340 2024-02-25 09:52:03.26 2024-02-25 09:52:03.26 1000 STREAM 141924 19469 6061488 2024-02-25 10:19:05.525 2024-02-25 10:19:05.525 1000 STREAM 141924 14941 6122637 2024-03-01 08:28:02.278 2024-03-01 08:28:02.278 1000 STREAM 141924 5129 6122960 2024-03-01 09:57:05.179 2024-03-01 09:57:05.179 1000 STREAM 141924 1823 6122969 2024-03-01 09:59:05.207 2024-03-01 09:59:05.207 1000 STREAM 141924 9517 6122971 2024-03-01 10:00:05.291 2024-03-01 10:00:05.291 1000 STREAM 141924 7772 6122983 2024-03-01 10:04:05.387 2024-03-01 10:04:05.387 1000 STREAM 141924 5359 6123005 2024-03-01 10:05:05.371 2024-03-01 10:05:05.371 1000 STREAM 141924 6360 6123006 2024-03-01 10:06:05.365 2024-03-01 10:06:05.365 1000 STREAM 141924 16571 6123019 2024-03-01 10:07:05.371 2024-03-01 10:07:05.371 1000 STREAM 141924 762 6123047 2024-03-01 10:11:05.384 2024-03-01 10:11:05.384 1000 STREAM 141924 18178 6123526 2024-03-01 10:56:06.078 2024-03-01 10:56:06.078 1000 STREAM 141924 980 6123557 2024-03-01 10:59:06.086 2024-03-01 10:59:06.086 1000 STREAM 141924 2775 6123573 2024-03-01 11:01:06.089 2024-03-01 11:01:06.089 1000 STREAM 141924 19320 6061331 2024-02-25 09:48:03.247 2024-02-25 09:48:03.247 1000 STREAM 141924 8168 6061332 2024-02-25 09:49:03.249 2024-02-25 09:49:03.249 1000 STREAM 141924 1603 6061333 2024-02-25 09:50:03.249 2024-02-25 09:50:03.249 1000 STREAM 141924 16638 6061334 2024-02-25 09:51:03.249 2024-02-25 09:51:03.249 1000 STREAM 141924 21405 6122669 2024-03-01 08:34:02.409 2024-03-01 08:34:02.409 1000 STREAM 141924 624 6122672 2024-03-01 08:37:02.476 2024-03-01 08:37:02.476 1000 STREAM 141924 7891 6122686 2024-03-01 08:44:02.787 2024-03-01 08:44:02.787 1000 STREAM 141924 21214 6122688 2024-03-01 08:46:02.821 2024-03-01 08:46:02.821 1000 STREAM 141924 1602 6122691 2024-03-01 08:48:02.858 2024-03-01 08:48:02.858 1000 STREAM 141924 19924 6122692 2024-03-01 08:49:02.834 2024-03-01 08:49:02.834 1000 STREAM 141924 6741 6122694 2024-03-01 08:50:02.866 2024-03-01 08:50:02.866 1000 STREAM 141924 14213 6122716 2024-03-01 08:53:02.859 2024-03-01 08:53:02.859 1000 STREAM 141924 21180 6122718 2024-03-01 08:54:02.866 2024-03-01 08:54:02.866 1000 STREAM 141924 14910 6122727 2024-03-01 08:59:03.138 2024-03-01 08:59:03.138 1000 STREAM 141924 21228 6122731 2024-03-01 09:01:03.218 2024-03-01 09:01:03.218 1000 STREAM 141924 733 6122749 2024-03-01 09:05:03.253 2024-03-01 09:05:03.253 1000 STREAM 141924 21527 6122755 2024-03-01 09:09:03.249 2024-03-01 09:09:03.249 1000 STREAM 141924 10094 6061358 2024-02-25 09:56:05.56 2024-02-25 09:56:05.56 1000 STREAM 141924 5904 6122671 2024-03-01 08:36:02.456 2024-03-01 08:36:02.456 1000 STREAM 141924 999 6122673 2024-03-01 08:38:02.489 2024-03-01 08:38:02.489 1000 STREAM 141924 12160 6122680 2024-03-01 08:39:02.513 2024-03-01 08:39:02.513 1000 STREAM 141924 19030 6122683 2024-03-01 08:41:02.762 2024-03-01 08:41:02.762 1000 STREAM 141924 20852 6122684 2024-03-01 08:42:02.778 2024-03-01 08:42:02.778 1000 STREAM 141924 20015 6122685 2024-03-01 08:43:02.787 2024-03-01 08:43:02.787 1000 STREAM 141924 5565 6122687 2024-03-01 08:45:02.809 2024-03-01 08:45:02.809 1000 STREAM 141924 18468 6122690 2024-03-01 08:47:02.821 2024-03-01 08:47:02.821 1000 STREAM 141924 20826 6122712 2024-03-01 08:51:02.849 2024-03-01 08:51:02.849 1000 STREAM 141924 1490 6122714 2024-03-01 08:52:02.852 2024-03-01 08:52:02.852 1000 STREAM 141924 17693 6122719 2024-03-01 08:55:02.875 2024-03-01 08:55:02.875 1000 STREAM 141924 18068 6122720 2024-03-01 08:56:02.886 2024-03-01 08:56:02.886 1000 STREAM 141924 4474 6061361 2024-02-25 09:57:03.242 2024-02-25 09:57:03.242 1000 STREAM 141924 11491 6061366 2024-02-25 10:00:03.276 2024-02-25 10:00:03.276 1000 STREAM 141924 8173 6061381 2024-02-25 10:04:03.245 2024-02-25 10:04:03.245 1000 STREAM 141924 20264 6061383 2024-02-25 10:06:03.257 2024-02-25 10:06:03.257 1000 STREAM 141924 21603 6061402 2024-02-25 10:07:03.262 2024-02-25 10:07:03.262 1000 STREAM 141924 7989 6061413 2024-02-25 10:08:03.257 2024-02-25 10:08:03.257 1000 STREAM 141924 981 6061429 2024-02-25 10:10:03.271 2024-02-25 10:10:03.271 1000 STREAM 141924 18114 6061439 2024-02-25 10:11:03.285 2024-02-25 10:11:03.285 1000 STREAM 141924 19286 6061450 2024-02-25 10:13:03.31 2024-02-25 10:13:03.31 1000 STREAM 141924 18008 6061457 2024-02-25 10:14:03.293 2024-02-25 10:14:03.293 1000 STREAM 141924 20062 6061474 2024-02-25 10:17:03.306 2024-02-25 10:17:03.306 1000 STREAM 141924 1959 6061506 2024-02-25 10:24:06.725 2024-02-25 10:24:06.725 1000 STREAM 141924 1209 6061507 2024-02-25 10:25:06.74 2024-02-25 10:25:06.74 1000 STREAM 141924 11522 6061509 2024-02-25 10:26:06.774 2024-02-25 10:26:06.774 1000 STREAM 141924 21323 6061512 2024-02-25 10:27:06.751 2024-02-25 10:27:06.751 1000 STREAM 141924 21119 6061519 2024-02-25 10:29:07.787 2024-02-25 10:29:07.787 1000 STREAM 141924 9329 6061540 2024-02-25 10:32:04.241 2024-02-25 10:32:04.241 1000 STREAM 141924 21201 6061550 2024-02-25 10:34:04.444 2024-02-25 10:34:04.444 1000 STREAM 141924 18533 6061553 2024-02-25 10:35:04.468 2024-02-25 10:35:04.468 1000 STREAM 141924 4167 6061562 2024-02-25 10:37:04.463 2024-02-25 10:37:04.463 1000 STREAM 141924 13406 6061569 2024-02-25 10:38:04.467 2024-02-25 10:38:04.467 1000 STREAM 141924 2832 6061570 2024-02-25 10:39:04.488 2024-02-25 10:39:04.488 1000 STREAM 141924 20424 6061575 2024-02-25 10:40:04.501 2024-02-25 10:40:04.501 1000 STREAM 141924 19770 6061584 2024-02-25 10:43:04.517 2024-02-25 10:43:04.517 1000 STREAM 141924 12736 6061587 2024-02-25 10:45:04.54 2024-02-25 10:45:04.54 1000 STREAM 141924 21131 6061590 2024-02-25 10:47:04.564 2024-02-25 10:47:04.564 1000 STREAM 141924 20891 6061593 2024-02-25 10:48:04.568 2024-02-25 10:48:04.568 1000 STREAM 141924 21332 6061599 2024-02-25 10:50:04.578 2024-02-25 10:50:04.578 1000 STREAM 141924 19243 6061601 2024-02-25 10:51:04.585 2024-02-25 10:51:04.585 1000 STREAM 141924 19462 6061607 2024-02-25 10:53:04.596 2024-02-25 10:53:04.596 1000 STREAM 141924 998 6061608 2024-02-25 10:54:04.604 2024-02-25 10:54:04.604 1000 STREAM 141924 2293 6061611 2024-02-25 10:55:04.619 2024-02-25 10:55:04.619 1000 STREAM 141924 11477 6061614 2024-02-25 10:56:04.628 2024-02-25 10:56:04.628 1000 STREAM 141924 21481 6061615 2024-02-25 10:57:04.636 2024-02-25 10:57:04.636 1000 STREAM 141924 5527 6061616 2024-02-25 10:58:04.643 2024-02-25 10:58:04.643 1000 STREAM 141924 9276 6061618 2024-02-25 10:59:04.648 2024-02-25 10:59:04.648 1000 STREAM 141924 4083 6061622 2024-02-25 11:00:04.716 2024-02-25 11:00:04.716 1000 STREAM 141924 9438 6061627 2024-02-25 11:01:04.667 2024-02-25 11:01:04.667 1000 STREAM 141924 9378 6061635 2024-02-25 11:03:04.698 2024-02-25 11:03:04.698 1000 STREAM 141924 13781 6061640 2024-02-25 11:05:04.702 2024-02-25 11:05:04.702 1000 STREAM 141924 20701 6061642 2024-02-25 11:06:04.717 2024-02-25 11:06:04.717 1000 STREAM 141924 21571 6061644 2024-02-25 11:07:04.72 2024-02-25 11:07:04.72 1000 STREAM 141924 16097 6061649 2024-02-25 11:10:04.777 2024-02-25 11:10:04.777 1000 STREAM 141924 20272 6061669 2024-02-25 11:14:07.75 2024-02-25 11:14:07.75 1000 STREAM 141924 20646 6061676 2024-02-25 11:15:05.777 2024-02-25 11:15:05.777 1000 STREAM 141924 19333 6061681 2024-02-25 11:16:03.779 2024-02-25 11:16:03.779 1000 STREAM 141924 18220 6061688 2024-02-25 11:19:05.827 2024-02-25 11:19:05.827 1000 STREAM 141924 1198 6061692 2024-02-25 11:21:05.845 2024-02-25 11:21:05.845 1000 STREAM 141924 919 6061693 2024-02-25 11:22:03.847 2024-02-25 11:22:03.847 1000 STREAM 141924 20871 6061364 2024-02-25 09:58:05.242 2024-02-25 09:58:05.242 1000 STREAM 141924 20562 6061365 2024-02-25 09:59:03.239 2024-02-25 09:59:03.239 1000 STREAM 141924 19193 6061371 2024-02-25 10:01:03.241 2024-02-25 10:01:03.241 1000 STREAM 141924 649 6061376 2024-02-25 10:02:03.246 2024-02-25 10:02:03.246 1000 STREAM 141924 946 6061380 2024-02-25 10:03:03.245 2024-02-25 10:03:03.245 1000 STREAM 141924 16289 6061382 2024-02-25 10:05:03.257 2024-02-25 10:05:03.257 1000 STREAM 141924 2681 6061425 2024-02-25 10:09:03.266 2024-02-25 10:09:03.266 1000 STREAM 141924 15213 6061444 2024-02-25 10:12:03.285 2024-02-25 10:12:03.285 1000 STREAM 141924 21614 6061471 2024-02-25 10:15:03.299 2024-02-25 10:15:03.299 1000 STREAM 141924 16653 6061473 2024-02-25 10:16:03.303 2024-02-25 10:16:03.303 1000 STREAM 141924 17707 6061501 2024-02-25 10:23:06.699 2024-02-25 10:23:06.699 1000 STREAM 141924 1286 6061524 2024-02-25 10:30:04.226 2024-02-25 10:30:04.226 1000 STREAM 141924 1298 6061536 2024-02-25 10:31:04.231 2024-02-25 10:31:04.231 1000 STREAM 141924 680 6061542 2024-02-25 10:33:04.443 2024-02-25 10:33:04.443 1000 STREAM 141924 20616 6061558 2024-02-25 10:36:04.461 2024-02-25 10:36:04.461 1000 STREAM 141924 14260 6061577 2024-02-25 10:41:04.506 2024-02-25 10:41:04.506 1000 STREAM 141924 16350 6061583 2024-02-25 10:42:04.505 2024-02-25 10:42:04.505 1000 STREAM 141924 658 6061586 2024-02-25 10:44:04.521 2024-02-25 10:44:04.521 1000 STREAM 141924 21482 6061589 2024-02-25 10:46:04.548 2024-02-25 10:46:04.548 1000 STREAM 141924 6741 6061595 2024-02-25 10:49:04.563 2024-02-25 10:49:04.563 1000 STREAM 141924 8423 6061605 2024-02-25 10:52:04.584 2024-02-25 10:52:04.584 1000 STREAM 141924 16830 6061630 2024-02-25 11:02:04.684 2024-02-25 11:02:04.684 1000 STREAM 141924 14857 6061636 2024-02-25 11:04:04.692 2024-02-25 11:04:04.692 1000 STREAM 141924 21455 6061646 2024-02-25 11:08:04.73 2024-02-25 11:08:04.73 1000 STREAM 141924 20099 6061647 2024-02-25 11:09:04.744 2024-02-25 11:09:04.744 1000 STREAM 141924 8954 6061651 2024-02-25 11:11:04.768 2024-02-25 11:11:04.768 1000 STREAM 141924 19911 6061655 2024-02-25 11:12:04.774 2024-02-25 11:12:04.774 1000 STREAM 141924 16289 6061662 2024-02-25 11:13:04.779 2024-02-25 11:13:04.779 1000 STREAM 141924 9482 6061684 2024-02-25 11:17:05.807 2024-02-25 11:17:05.807 1000 STREAM 141924 640 6061685 2024-02-25 11:18:03.81 2024-02-25 11:18:03.81 1000 STREAM 141924 4079 6061690 2024-02-25 11:20:03.847 2024-02-25 11:20:03.847 1000 STREAM 141924 1740 6061698 2024-02-25 11:23:05.859 2024-02-25 11:23:05.859 1000 STREAM 141924 1985 6061702 2024-02-25 11:24:03.863 2024-02-25 11:24:03.863 1000 STREAM 141924 20614 6061723 2024-02-25 11:27:05.877 2024-02-25 11:27:05.877 1000 STREAM 141924 16942 6061729 2024-02-25 11:29:05.884 2024-02-25 11:29:05.884 1000 STREAM 141924 11714 6061736 2024-02-25 11:31:05.907 2024-02-25 11:31:05.907 1000 STREAM 141924 20026 6061749 2024-02-25 11:35:05.959 2024-02-25 11:35:05.959 1000 STREAM 141924 4014 6061794 2024-02-25 11:40:06.029 2024-02-25 11:40:06.029 1000 STREAM 141924 11075 6122729 2024-03-01 09:00:03.225 2024-03-01 09:00:03.225 1000 STREAM 141924 1673 6122734 2024-03-01 09:03:03.224 2024-03-01 09:03:03.224 1000 STREAM 141924 2123 6122741 2024-03-01 09:04:03.235 2024-03-01 09:04:03.235 1000 STREAM 141924 638 6122752 2024-03-01 09:06:03.244 2024-03-01 09:06:03.244 1000 STREAM 141924 20817 6122753 2024-03-01 09:07:03.254 2024-03-01 09:07:03.254 1000 STREAM 141924 1881 6122754 2024-03-01 09:08:03.258 2024-03-01 09:08:03.258 1000 STREAM 141924 13903 6122768 2024-03-01 09:13:03.443 2024-03-01 09:13:03.443 1000 STREAM 141924 20026 6061478 2024-02-25 10:17:41.282 2024-02-25 10:17:41.282 2100 FEE 437632 2402 6061479 2024-02-25 10:17:41.282 2024-02-25 10:17:41.282 18900 TIP 437632 20998 6061484 2024-02-25 10:18:50.413 2024-02-25 10:18:50.413 2100 FEE 437617 20854 6061485 2024-02-25 10:18:50.413 2024-02-25 10:18:50.413 18900 TIP 437617 18314 6061494 2024-02-25 10:21:06.605 2024-02-25 10:21:06.605 1000 FEE 438071 16387 6061502 2024-02-25 10:23:47.869 2024-02-25 10:23:47.869 1000 FEE 438065 17415 6061503 2024-02-25 10:23:47.869 2024-02-25 10:23:47.869 9000 TIP 438065 2022 6061504 2024-02-25 10:23:48.048 2024-02-25 10:23:48.048 1000 FEE 438065 3461 6061505 2024-02-25 10:23:48.048 2024-02-25 10:23:48.048 9000 TIP 438065 20377 6061515 2024-02-25 10:27:34.414 2024-02-25 10:27:34.414 1000 FEE 438074 9166 6061565 2024-02-25 10:37:14.966 2024-02-25 10:37:14.966 10000 FEE 437992 9354 6061566 2024-02-25 10:37:14.966 2024-02-25 10:37:14.966 90000 TIP 437992 19987 6061578 2024-02-25 10:41:06.841 2024-02-25 10:41:06.841 10000 FEE 437840 12265 6061579 2024-02-25 10:41:06.841 2024-02-25 10:41:06.841 90000 TIP 437840 762 6061581 2024-02-25 10:41:32.375 2024-02-25 10:41:32.375 1000 FEE 438080 18727 6061585 2024-02-25 10:43:15.666 2024-02-25 10:43:15.666 1000 FEE 438082 12291 6061604 2024-02-25 10:51:14.691 2024-02-25 10:51:14.691 100000 FEE 438087 19924 6061620 2024-02-25 10:59:55.003 2024-02-25 10:59:55.003 4200 FEE 437970 695 6061621 2024-02-25 10:59:55.003 2024-02-25 10:59:55.003 37800 TIP 437970 3990 6061638 2024-02-25 11:04:39.106 2024-02-25 11:04:39.106 0 FEE 438096 7125 6061645 2024-02-25 11:07:41.228 2024-02-25 11:07:41.228 10000 FEE 438099 5779 6061648 2024-02-25 11:09:09.254 2024-02-25 11:09:09.254 0 FEE 438099 21303 6061652 2024-02-25 11:11:28.385 2024-02-25 11:11:28.385 1000 FEE 438101 16250 6061682 2024-02-25 11:16:24.339 2024-02-25 11:16:24.339 69000 FEE 438106 17722 6061700 2024-02-25 11:23:22.047 2024-02-25 11:23:22.047 0 FEE 438112 3506 6061721 2024-02-25 11:26:43.055 2024-02-25 11:26:43.055 10000 FEE 438118 16350 6061726 2024-02-25 11:27:55.885 2024-02-25 11:27:55.885 1000 FEE 438115 19773 6061727 2024-02-25 11:27:55.885 2024-02-25 11:27:55.885 9000 TIP 438115 5752 6061735 2024-02-25 11:30:49.95 2024-02-25 11:30:49.95 1000 FEE 438124 1489 6061756 2024-02-25 11:35:41.007 2024-02-25 11:35:41.007 1000 FEE 438129 21481 6061813 2024-02-25 11:45:19.483 2024-02-25 11:45:19.483 1000 FEE 437234 2061 6061814 2024-02-25 11:45:19.483 2024-02-25 11:45:19.483 9000 TIP 437234 20267 6061829 2024-02-25 11:49:17.405 2024-02-25 11:49:17.405 1000 FEE 438145 16097 6061830 2024-02-25 11:49:17.405 2024-02-25 11:49:17.405 9000 TIP 438145 21578 6061859 2024-02-25 11:49:26.487 2024-02-25 11:49:26.487 1000 FEE 438050 8242 6061860 2024-02-25 11:49:26.487 2024-02-25 11:49:26.487 9000 TIP 438050 1326 6061896 2024-02-25 11:53:45.057 2024-02-25 11:53:45.057 2100 FEE 438150 18101 6061897 2024-02-25 11:53:45.057 2024-02-25 11:53:45.057 18900 TIP 438150 17722 6061901 2024-02-25 11:54:26.143 2024-02-25 11:54:26.143 4200 FEE 438088 3213 6061902 2024-02-25 11:54:26.143 2024-02-25 11:54:26.143 37800 TIP 438088 919 6061903 2024-02-25 11:54:27.037 2024-02-25 11:54:27.037 0 FEE 438152 16954 6061917 2024-02-25 11:56:45.559 2024-02-25 11:56:45.559 10000 FEE 438155 20881 6061925 2024-02-25 11:59:02.65 2024-02-25 11:59:02.65 1000 FEE 437961 17392 6061926 2024-02-25 11:59:02.65 2024-02-25 11:59:02.65 9000 TIP 437961 9348 6061958 2024-02-25 12:02:02.794 2024-02-25 12:02:02.794 2100 FEE 438159 21349 6061959 2024-02-25 12:02:02.794 2024-02-25 12:02:02.794 18900 TIP 438159 16542 6061979 2024-02-25 12:06:37.826 2024-02-25 12:06:37.826 45000 FEE 436335 7986 6061980 2024-02-25 12:06:37.826 2024-02-25 12:06:37.826 405000 TIP 436335 17891 6061994 2024-02-25 12:07:49.058 2024-02-25 12:07:49.058 21000 FEE 438165 1495 6061995 2024-02-25 12:07:53.525 2024-02-25 12:07:53.525 1000 FEE 438166 21072 6062033 2024-02-25 12:13:40.127 2024-02-25 12:13:40.127 0 FEE 438168 1720 6062044 2024-02-25 12:15:52.974 2024-02-25 12:15:52.974 0 FEE 438168 1552 6062055 2024-02-25 12:18:39.091 2024-02-25 12:18:39.091 1100 FEE 438163 2293 6062056 2024-02-25 12:18:39.091 2024-02-25 12:18:39.091 9900 TIP 438163 15115 6062061 2024-02-25 12:18:44.311 2024-02-25 12:18:44.311 0 FEE 438168 8926 6062065 2024-02-25 12:18:55.668 2024-02-25 12:18:55.668 0 FEE 438168 21292 6062076 2024-02-25 12:21:08.065 2024-02-25 12:21:08.065 1000 FEE 437611 13553 6062077 2024-02-25 12:21:08.065 2024-02-25 12:21:08.065 9000 TIP 437611 16212 6062092 2024-02-25 12:22:22.915 2024-02-25 12:22:22.915 2100 FEE 438088 17030 6062093 2024-02-25 12:22:22.915 2024-02-25 12:22:22.915 18900 TIP 438088 2832 6062190 2024-02-25 12:34:29.128 2024-02-25 12:34:29.128 1000 FEE 438186 10549 6062193 2024-02-25 12:34:53.596 2024-02-25 12:34:53.596 5000 FEE 437723 19378 6062194 2024-02-25 12:34:53.596 2024-02-25 12:34:53.596 45000 TIP 437723 21527 6062203 2024-02-25 12:36:20.375 2024-02-25 12:36:20.375 1000 FEE 438187 12609 6062214 2024-02-25 12:36:32.146 2024-02-25 12:36:32.146 100 FEE 437276 19795 6062215 2024-02-25 12:36:32.146 2024-02-25 12:36:32.146 900 TIP 437276 16848 6062216 2024-02-25 12:36:33.015 2024-02-25 12:36:33.015 100 FEE 437276 6160 6062217 2024-02-25 12:36:33.015 2024-02-25 12:36:33.015 900 TIP 437276 6058 6062223 2024-02-25 12:38:18.229 2024-02-25 12:38:18.229 100 FEE 438188 9330 6062224 2024-02-25 12:38:18.229 2024-02-25 12:38:18.229 900 TIP 438188 6030 6062240 2024-02-25 12:45:05.759 2024-02-25 12:45:05.759 100000 FEE 438189 16704 6062272 2024-02-25 12:46:27.273 2024-02-25 12:46:27.273 1000 FEE 438164 20825 6062273 2024-02-25 12:46:27.273 2024-02-25 12:46:27.273 9000 TIP 438164 11829 6062289 2024-02-25 12:47:35.663 2024-02-25 12:47:35.663 5000 FEE 437966 21047 6062290 2024-02-25 12:47:35.663 2024-02-25 12:47:35.663 45000 TIP 437966 21194 6061481 2024-02-25 10:18:03.494 2024-02-25 10:18:03.494 1000 STREAM 141924 18402 6061492 2024-02-25 10:20:03.453 2024-02-25 10:20:03.453 1000 STREAM 141924 9099 6061493 2024-02-25 10:21:03.481 2024-02-25 10:21:03.481 1000 STREAM 141924 21303 6061498 2024-02-25 10:22:03.489 2024-02-25 10:22:03.489 1000 STREAM 141924 13763 6122760 2024-03-01 09:10:03.261 2024-03-01 09:10:03.261 1000 STREAM 141924 20205 6122761 2024-03-01 09:11:03.269 2024-03-01 09:11:03.269 1000 STREAM 141924 20680 6122780 2024-03-01 09:18:03.51 2024-03-01 09:18:03.51 1000 STREAM 141924 19469 6122794 2024-03-01 09:20:03.536 2024-03-01 09:20:03.536 1000 STREAM 141924 12821 6122803 2024-03-01 09:22:03.544 2024-03-01 09:22:03.544 1000 STREAM 141924 7558 6122804 2024-03-01 09:23:03.551 2024-03-01 09:23:03.551 1000 STREAM 141924 6700 6122805 2024-03-01 09:24:03.558 2024-03-01 09:24:03.558 1000 STREAM 141924 20264 6122808 2024-03-01 09:27:03.58 2024-03-01 09:27:03.58 1000 STREAM 141924 13599 6122852 2024-03-01 09:28:03.589 2024-03-01 09:28:03.589 1000 STREAM 141924 15159 6122855 2024-03-01 09:29:03.604 2024-03-01 09:29:03.604 1000 STREAM 141924 794 6122859 2024-03-01 09:31:03.61 2024-03-01 09:31:03.61 1000 STREAM 141924 700 6122861 2024-03-01 09:32:03.62 2024-03-01 09:32:03.62 1000 STREAM 141924 7746 6122862 2024-03-01 09:33:03.623 2024-03-01 09:33:03.623 1000 STREAM 141924 1729 6122867 2024-03-01 09:35:03.637 2024-03-01 09:35:03.637 1000 STREAM 141924 886 6122869 2024-03-01 09:37:03.752 2024-03-01 09:37:03.752 1000 STREAM 141924 19394 6122872 2024-03-01 09:38:03.761 2024-03-01 09:38:03.761 1000 STREAM 141924 12721 6122885 2024-03-01 09:44:03.86 2024-03-01 09:44:03.86 1000 STREAM 141924 2528 6122886 2024-03-01 09:45:03.863 2024-03-01 09:45:03.863 1000 STREAM 141924 17526 6122899 2024-03-01 09:46:03.871 2024-03-01 09:46:03.871 1000 STREAM 141924 16194 6122902 2024-03-01 09:48:03.956 2024-03-01 09:48:03.956 1000 STREAM 141924 12976 6122918 2024-03-01 09:52:03.924 2024-03-01 09:52:03.924 1000 STREAM 141924 8416 6122924 2024-03-01 09:53:03.933 2024-03-01 09:53:03.933 1000 STREAM 141924 9334 6122974 2024-03-01 10:02:04.046 2024-03-01 10:02:04.046 1000 STREAM 141924 8508 6123033 2024-03-01 10:08:04.074 2024-03-01 10:08:04.074 1000 STREAM 141924 8570 6123042 2024-03-01 10:10:04.102 2024-03-01 10:10:04.102 1000 STREAM 141924 739 6123070 2024-03-01 10:13:04.125 2024-03-01 10:13:04.125 1000 STREAM 141924 1273 6123076 2024-03-01 10:14:04.133 2024-03-01 10:14:04.133 1000 STREAM 141924 21624 6123084 2024-03-01 10:16:04.26 2024-03-01 10:16:04.26 1000 STREAM 141924 1611 6123092 2024-03-01 10:17:04.277 2024-03-01 10:17:04.277 1000 STREAM 141924 633 6123097 2024-03-01 10:18:04.282 2024-03-01 10:18:04.282 1000 STREAM 141924 1890 6061516 2024-02-25 10:28:05.891 2024-02-25 10:28:05.891 1000 STREAM 141924 9362 6122776 2024-03-01 09:15:03.479 2024-03-01 09:15:03.479 1000 STREAM 141924 2681 6122778 2024-03-01 09:16:03.491 2024-03-01 09:16:03.491 1000 STREAM 141924 20084 6122779 2024-03-01 09:17:03.51 2024-03-01 09:17:03.51 1000 STREAM 141924 16816 6122796 2024-03-01 09:21:03.539 2024-03-01 09:21:03.539 1000 STREAM 141924 4989 6122806 2024-03-01 09:25:03.558 2024-03-01 09:25:03.558 1000 STREAM 141924 13587 6122807 2024-03-01 09:26:03.572 2024-03-01 09:26:03.572 1000 STREAM 141924 13132 6122858 2024-03-01 09:30:03.643 2024-03-01 09:30:03.643 1000 STREAM 141924 21057 6122864 2024-03-01 09:34:03.631 2024-03-01 09:34:03.631 1000 STREAM 141924 2508 6122868 2024-03-01 09:36:03.737 2024-03-01 09:36:03.737 1000 STREAM 141924 1718 6122874 2024-03-01 09:39:03.754 2024-03-01 09:39:03.754 1000 STREAM 141924 18581 6122875 2024-03-01 09:40:03.796 2024-03-01 09:40:03.796 1000 STREAM 141924 18076 6122900 2024-03-01 09:47:03.926 2024-03-01 09:47:03.926 1000 STREAM 141924 1141 6122905 2024-03-01 09:49:03.94 2024-03-01 09:49:03.94 1000 STREAM 141924 21180 6122913 2024-03-01 09:50:03.929 2024-03-01 09:50:03.929 1000 STREAM 141924 20904 6122917 2024-03-01 09:51:03.926 2024-03-01 09:51:03.926 1000 STREAM 141924 19836 6122928 2024-03-01 09:54:03.931 2024-03-01 09:54:03.931 1000 STREAM 141924 14651 6122929 2024-03-01 09:55:03.938 2024-03-01 09:55:03.938 1000 STREAM 141924 9353 6122951 2024-03-01 09:56:03.943 2024-03-01 09:56:03.943 1000 STREAM 141924 11328 6122966 2024-03-01 09:58:04.046 2024-03-01 09:58:04.046 1000 STREAM 141924 14910 6122976 2024-03-01 10:03:04.057 2024-03-01 10:03:04.057 1000 STREAM 141924 10554 6123103 2024-03-01 10:19:04.316 2024-03-01 10:19:04.316 1000 STREAM 141924 18472 6123426 2024-03-01 10:37:04.785 2024-03-01 10:37:04.785 1000 STREAM 141924 20624 6123435 2024-03-01 10:39:04.797 2024-03-01 10:39:04.797 1000 STREAM 141924 21334 6123479 2024-03-01 10:48:04.926 2024-03-01 10:48:04.926 1000 STREAM 141924 3440 6123524 2024-03-01 10:55:04.986 2024-03-01 10:55:04.986 1000 STREAM 141924 19976 6123598 2024-03-01 11:03:05.082 2024-03-01 11:03:05.082 1000 STREAM 141924 670 6061641 2024-02-25 11:05:40.688 2024-02-25 11:05:40.688 1000 FEE 438097 17030 6061658 2024-02-25 11:12:51.116 2024-02-25 11:12:51.116 4000 FEE 438044 6360 6061659 2024-02-25 11:12:51.116 2024-02-25 11:12:51.116 36000 TIP 438044 20430 6061664 2024-02-25 11:13:18.763 2024-02-25 11:13:18.763 4000 FEE 437986 20243 6061665 2024-02-25 11:13:18.763 2024-02-25 11:13:18.763 36000 TIP 437986 19296 6061674 2024-02-25 11:14:52.508 2024-02-25 11:14:52.508 21000 FEE 438065 1471 6061675 2024-02-25 11:14:52.508 2024-02-25 11:14:52.508 189000 TIP 438065 630 6061677 2024-02-25 11:15:29.623 2024-02-25 11:15:29.623 1000 FEE 438104 19381 6061679 2024-02-25 11:15:44.239 2024-02-25 11:15:44.239 3000 FEE 438077 2293 6061680 2024-02-25 11:15:44.239 2024-02-25 11:15:44.239 27000 TIP 438077 11240 6061691 2024-02-25 11:20:15.657 2024-02-25 11:20:15.657 1000 FEE 438111 1817 6061694 2024-02-25 11:22:44.511 2024-02-25 11:22:44.511 1000 FEE 438112 21422 6061722 2024-02-25 11:26:52.971 2024-02-25 11:26:52.971 1000 FEE 438119 18815 6061730 2024-02-25 11:29:26.014 2024-02-25 11:29:26.014 10000 FEE 438122 1468 6061771 2024-02-25 11:36:05.409 2024-02-25 11:36:05.409 1000 FEE 438114 5703 6061772 2024-02-25 11:36:05.409 2024-02-25 11:36:05.409 9000 TIP 438114 4763 6061782 2024-02-25 11:37:26.602 2024-02-25 11:37:26.602 900 FEE 437760 21036 6061783 2024-02-25 11:37:26.602 2024-02-25 11:37:26.602 8100 TIP 437760 19929 6061787 2024-02-25 11:38:40.485 2024-02-25 11:38:40.485 1100 FEE 437861 17713 6061788 2024-02-25 11:38:40.485 2024-02-25 11:38:40.485 9900 TIP 437861 6749 6061789 2024-02-25 11:39:00.432 2024-02-25 11:39:00.432 1000 FEE 438135 770 6061793 2024-02-25 11:39:36.422 2024-02-25 11:39:36.422 1000 FEE 438136 20090 6061795 2024-02-25 11:40:54.083 2024-02-25 11:40:54.083 1000 FEE 438137 14688 6061805 2024-02-25 11:43:35.474 2024-02-25 11:43:35.474 1000 FEE 438140 13927 6061820 2024-02-25 11:46:42.855 2024-02-25 11:46:42.855 1000 FEE 438143 18169 6061847 2024-02-25 11:49:23.627 2024-02-25 11:49:23.627 1000 FEE 438088 21088 6061848 2024-02-25 11:49:23.627 2024-02-25 11:49:23.627 9000 TIP 438088 15617 6061870 2024-02-25 11:50:00.162 2024-02-25 11:50:00.162 1000 FEE 438135 21498 6061871 2024-02-25 11:50:00.162 2024-02-25 11:50:00.162 9000 TIP 438135 21057 6061888 2024-02-25 11:52:10.898 2024-02-25 11:52:10.898 4000 FEE 438132 13622 6061889 2024-02-25 11:52:10.898 2024-02-25 11:52:10.898 36000 TIP 438132 21292 6061931 2024-02-25 11:59:29.929 2024-02-25 11:59:29.929 1000 FEE 430916 7992 6061932 2024-02-25 11:59:29.929 2024-02-25 11:59:29.929 9000 TIP 430916 13782 6061949 2024-02-25 12:00:45.536 2024-02-25 12:00:45.536 5000 FEE 438133 19267 6061950 2024-02-25 12:00:45.536 2024-02-25 12:00:45.536 45000 TIP 438133 11498 6061964 2024-02-25 12:02:43.102 2024-02-25 12:02:43.102 1000 FEE 438162 12368 6061969 2024-02-25 12:04:34.463 2024-02-25 12:04:34.463 1100 FEE 438005 5904 6061970 2024-02-25 12:04:34.463 2024-02-25 12:04:34.463 9900 TIP 438005 616 6061973 2024-02-25 12:05:15.599 2024-02-25 12:05:15.599 1000 FEE 438164 12158 6062005 2024-02-25 12:09:58.511 2024-02-25 12:09:58.511 1000 FEE 438148 9916 6062006 2024-02-25 12:09:58.511 2024-02-25 12:09:58.511 9000 TIP 438148 1985 6062019 2024-02-25 12:11:38.54 2024-02-25 12:11:38.54 4200 FEE 437269 9348 6062020 2024-02-25 12:11:38.54 2024-02-25 12:11:38.54 37800 TIP 437269 5590 6062021 2024-02-25 12:11:43.984 2024-02-25 12:11:43.984 4200 FEE 438065 20858 6062022 2024-02-25 12:11:43.984 2024-02-25 12:11:43.984 37800 TIP 438065 698 6062023 2024-02-25 12:12:01.798 2024-02-25 12:12:01.798 0 FEE 438165 2961 6062028 2024-02-25 12:12:55.224 2024-02-25 12:12:55.224 0 FEE 438168 19569 6062032 2024-02-25 12:13:31.592 2024-02-25 12:13:31.592 1000 FEE 438172 17602 6062046 2024-02-25 12:17:01.497 2024-02-25 12:17:01.497 0 FEE 438168 14385 6062078 2024-02-25 12:21:10.897 2024-02-25 12:21:10.897 1000 FEE 437966 21612 6062079 2024-02-25 12:21:10.897 2024-02-25 12:21:10.897 9000 TIP 437966 9906 6062080 2024-02-25 12:21:15.146 2024-02-25 12:21:15.146 4200 FEE 435869 19795 6062081 2024-02-25 12:21:15.146 2024-02-25 12:21:15.146 37800 TIP 435869 21386 6062110 2024-02-25 12:24:33.399 2024-02-25 12:24:33.399 1000 FEE 438180 21342 6062126 2024-02-25 12:25:09.547 2024-02-25 12:25:09.547 500 FEE 438165 6327 6062127 2024-02-25 12:25:09.547 2024-02-25 12:25:09.547 4500 TIP 438165 3440 6062154 2024-02-25 12:29:15.381 2024-02-25 12:29:15.381 5000 FEE 437937 1162 6062155 2024-02-25 12:29:15.381 2024-02-25 12:29:15.381 45000 TIP 437937 1030 6062169 2024-02-25 12:32:25.674 2024-02-25 12:32:25.674 10000 FEE 437880 19463 6062170 2024-02-25 12:32:25.674 2024-02-25 12:32:25.674 90000 TIP 437880 11670 6062171 2024-02-25 12:32:26.362 2024-02-25 12:32:26.362 5000 FEE 437880 18772 6062172 2024-02-25 12:32:26.362 2024-02-25 12:32:26.362 45000 TIP 437880 21494 6062177 2024-02-25 12:32:27.49 2024-02-25 12:32:27.49 5000 FEE 437880 20225 6062178 2024-02-25 12:32:27.49 2024-02-25 12:32:27.49 45000 TIP 437880 896 6062186 2024-02-25 12:34:06.629 2024-02-25 12:34:06.629 5000 FEE 437936 17201 6062187 2024-02-25 12:34:06.629 2024-02-25 12:34:06.629 45000 TIP 437936 19770 6062254 2024-02-25 12:45:47.676 2024-02-25 12:45:47.676 2100 FEE 438146 20799 6062255 2024-02-25 12:45:47.676 2024-02-25 12:45:47.676 18900 TIP 438146 19837 6062256 2024-02-25 12:45:53.605 2024-02-25 12:45:53.605 10000 FEE 438191 7903 6062266 2024-02-25 12:46:14.997 2024-02-25 12:46:14.997 2100 FEE 438088 11378 6062267 2024-02-25 12:46:14.997 2024-02-25 12:46:14.997 18900 TIP 438088 5757 6062281 2024-02-25 12:47:22.613 2024-02-25 12:47:22.613 2100 FEE 438185 2029 6062282 2024-02-25 12:47:22.613 2024-02-25 12:47:22.613 18900 TIP 438185 5175 6061657 2024-02-25 11:12:45.396 2024-02-25 11:12:45.396 36000 TIP 438088 10981 6061663 2024-02-25 11:13:15.351 2024-02-25 11:13:15.351 1000 FEE 438102 12160 6061678 2024-02-25 11:15:41.923 2024-02-25 11:15:41.923 1000 FEE 438105 18743 6061696 2024-02-25 11:22:51.216 2024-02-25 11:22:51.216 10000 FEE 438051 15463 6061697 2024-02-25 11:22:51.216 2024-02-25 11:22:51.216 90000 TIP 438051 9364 6061699 2024-02-25 11:23:07.455 2024-02-25 11:23:07.455 0 FEE 438112 1389 6061718 2024-02-25 11:25:51.858 2024-02-25 11:25:51.858 1000 FEE 438116 3342 6061731 2024-02-25 11:29:54.236 2024-02-25 11:29:54.236 2100 FEE 438109 5293 6061732 2024-02-25 11:29:54.236 2024-02-25 11:29:54.236 18900 TIP 438109 20452 6061738 2024-02-25 11:32:03.23 2024-02-25 11:32:03.23 0 FEE 438124 20854 6061742 2024-02-25 11:34:01.958 2024-02-25 11:34:01.958 1000 FEE 438095 18409 6061743 2024-02-25 11:34:01.958 2024-02-25 11:34:01.958 9000 TIP 438095 13931 6061755 2024-02-25 11:35:23.406 2024-02-25 11:35:23.406 1000 FEE 438128 17741 6061791 2024-02-25 11:39:11.73 2024-02-25 11:39:11.73 2100 FEE 438132 5904 6061792 2024-02-25 11:39:11.73 2024-02-25 11:39:11.73 18900 TIP 438132 18138 6061804 2024-02-25 11:43:24.971 2024-02-25 11:43:24.971 1000 FEE 438139 5694 6061810 2024-02-25 11:45:01.042 2024-02-25 11:45:01.042 4000 FEE 438131 18892 6061811 2024-02-25 11:45:01.042 2024-02-25 11:45:01.042 36000 TIP 438131 9169 6061815 2024-02-25 11:45:25.173 2024-02-25 11:45:25.173 4000 FEE 438133 18673 6061816 2024-02-25 11:45:25.173 2024-02-25 11:45:25.173 36000 TIP 438133 9330 6061886 2024-02-25 11:52:10.372 2024-02-25 11:52:10.372 4000 FEE 438132 15196 6061887 2024-02-25 11:52:10.372 2024-02-25 11:52:10.372 36000 TIP 438132 822 6061927 2024-02-25 11:59:28.091 2024-02-25 11:59:28.091 1000 FEE 431267 20156 6061928 2024-02-25 11:59:28.091 2024-02-25 11:59:28.091 9000 TIP 431267 1505 6061933 2024-02-25 11:59:31.071 2024-02-25 11:59:31.071 1000 FEE 431848 20754 6061934 2024-02-25 11:59:31.071 2024-02-25 11:59:31.071 9000 TIP 431848 16638 6061941 2024-02-25 11:59:43.773 2024-02-25 11:59:43.773 4000 FEE 438155 1567 6061942 2024-02-25 11:59:43.773 2024-02-25 11:59:43.773 36000 TIP 438155 837 6061971 2024-02-25 12:05:01.283 2024-02-25 12:05:01.283 1000 FEE 438163 12175 6061977 2024-02-25 12:06:33.338 2024-02-25 12:06:33.338 5000 FEE 436335 1120 6061978 2024-02-25 12:06:33.338 2024-02-25 12:06:33.338 45000 TIP 436335 19533 6061982 2024-02-25 12:07:06.177 2024-02-25 12:07:06.177 1000 FEE 438150 14959 6061983 2024-02-25 12:07:06.177 2024-02-25 12:07:06.177 9000 TIP 438150 12278 6061996 2024-02-25 12:07:59.595 2024-02-25 12:07:59.595 1000 FEE 438157 6137 6061997 2024-02-25 12:07:59.595 2024-02-25 12:07:59.595 9000 TIP 438157 18351 6062018 2024-02-25 12:11:17.33 2024-02-25 12:11:17.33 0 FEE 438168 866 6062030 2024-02-25 12:13:18.522 2024-02-25 12:13:18.522 1000 FEE 438065 11091 6062031 2024-02-25 12:13:18.522 2024-02-25 12:13:18.522 9000 TIP 438065 21400 6062036 2024-02-25 12:13:53.141 2024-02-25 12:13:53.141 100 FEE 438146 20301 6062037 2024-02-25 12:13:53.141 2024-02-25 12:13:53.141 900 TIP 438146 13143 6062059 2024-02-25 12:18:40.214 2024-02-25 12:18:40.214 1100 FEE 438163 18923 6062060 2024-02-25 12:18:40.214 2024-02-25 12:18:40.214 9900 TIP 438163 15408 6062067 2024-02-25 12:19:10.837 2024-02-25 12:19:10.837 1100 FEE 438065 13517 6062068 2024-02-25 12:19:10.837 2024-02-25 12:19:10.837 9900 TIP 438065 3683 6062082 2024-02-25 12:21:36.76 2024-02-25 12:21:36.76 500 FEE 438051 8245 6062083 2024-02-25 12:21:36.76 2024-02-25 12:21:36.76 4500 TIP 438051 17693 6062088 2024-02-25 12:22:10.17 2024-02-25 12:22:10.17 1000 FEE 438178 17710 6062089 2024-02-25 12:22:15.611 2024-02-25 12:22:15.611 0 FEE 438178 13076 6062096 2024-02-25 12:22:23.298 2024-02-25 12:22:23.298 2100 FEE 438088 15762 6062097 2024-02-25 12:22:23.298 2024-02-25 12:22:23.298 18900 TIP 438088 9796 6062102 2024-02-25 12:22:27.251 2024-02-25 12:22:27.251 2100 FEE 438088 1198 6062103 2024-02-25 12:22:27.251 2024-02-25 12:22:27.251 18900 TIP 438088 17682 6062128 2024-02-25 12:25:16.607 2024-02-25 12:25:16.607 10000 FEE 438065 9036 6062129 2024-02-25 12:25:16.607 2024-02-25 12:25:16.607 90000 TIP 438065 6688 6062144 2024-02-25 12:26:41.022 2024-02-25 12:26:41.022 2100 FEE 438085 9843 6062145 2024-02-25 12:26:41.022 2024-02-25 12:26:41.022 18900 TIP 438085 20495 6062148 2024-02-25 12:28:12.901 2024-02-25 12:28:12.901 100 FEE 438181 18040 6062149 2024-02-25 12:28:12.901 2024-02-25 12:28:12.901 900 TIP 438181 21208 6062150 2024-02-25 12:28:29.208 2024-02-25 12:28:29.208 1000 FEE 438184 1983 6062173 2024-02-25 12:32:26.575 2024-02-25 12:32:26.575 5000 FEE 437880 6229 6062174 2024-02-25 12:32:26.575 2024-02-25 12:32:26.575 45000 TIP 437880 7809 6062175 2024-02-25 12:32:26.707 2024-02-25 12:32:26.707 5000 FEE 437880 811 6062176 2024-02-25 12:32:26.707 2024-02-25 12:32:26.707 45000 TIP 437880 18116 6062180 2024-02-25 12:33:14.124 2024-02-25 12:33:14.124 1000 FEE 438185 19546 6062276 2024-02-25 12:46:55.283 2024-02-25 12:46:55.283 0 FEE 438191 19902 6062295 2024-02-25 12:47:37.359 2024-02-25 12:47:37.359 2100 FEE 438156 2961 6062296 2024-02-25 12:47:37.359 2024-02-25 12:47:37.359 18900 TIP 438156 20439 6062319 2024-02-25 12:50:11.065 2024-02-25 12:50:11.065 5000 FEE 438185 19096 6062320 2024-02-25 12:50:11.065 2024-02-25 12:50:11.065 45000 TIP 438185 1603 6062326 2024-02-25 12:50:48.402 2024-02-25 12:50:48.402 1000 FEE 438197 13921 6062368 2024-02-25 12:57:47.58 2024-02-25 12:57:47.58 2100 FEE 437531 19906 6062369 2024-02-25 12:57:47.58 2024-02-25 12:57:47.58 18900 TIP 437531 5293 6062386 2024-02-25 12:58:28.775 2024-02-25 12:58:28.775 5000 FEE 437700 15239 6062387 2024-02-25 12:58:28.775 2024-02-25 12:58:28.775 45000 TIP 437700 16350 6062405 2024-02-25 13:00:35.729 2024-02-25 13:00:35.729 100 FEE 438202 20157 6062406 2024-02-25 13:00:35.729 2024-02-25 13:00:35.729 900 TIP 438202 2000 6062427 2024-02-25 13:04:38.488 2024-02-25 13:04:38.488 100 FEE 438146 1519 6062428 2024-02-25 13:04:38.488 2024-02-25 13:04:38.488 900 TIP 438146 16769 6062447 2024-02-25 13:09:07.098 2024-02-25 13:09:07.098 2100 FEE 437966 6310 6062448 2024-02-25 13:09:07.098 2024-02-25 13:09:07.098 18900 TIP 437966 20190 6062452 2024-02-25 13:09:58.391 2024-02-25 13:09:58.391 1100 FEE 437817 667 6062453 2024-02-25 13:09:58.391 2024-02-25 13:09:58.391 9900 TIP 437817 18313 6062457 2024-02-25 13:11:49.913 2024-02-25 13:11:49.913 1000 FEE 438213 18269 6062470 2024-02-25 13:13:25.139 2024-02-25 13:13:25.139 1000 FEE 438215 876 6062476 2024-02-25 13:14:25.587 2024-02-25 13:14:25.587 1000 FEE 438217 807 6062482 2024-02-25 13:14:44.271 2024-02-25 13:14:44.271 5000 FEE 437812 20555 6062483 2024-02-25 13:14:44.271 2024-02-25 13:14:44.271 45000 TIP 437812 17927 6062498 2024-02-25 13:17:37.743 2024-02-25 13:17:37.743 1000 FEE 438222 681 6062512 2024-02-25 13:19:00.902 2024-02-25 13:19:00.902 100 FEE 438157 19929 6061714 2024-02-25 11:25:05.863 2024-02-25 11:25:05.863 1000 STREAM 141924 19329 6061720 2024-02-25 11:26:03.869 2024-02-25 11:26:03.869 1000 STREAM 141924 21139 6061740 2024-02-25 11:33:05.931 2024-02-25 11:33:05.931 1000 STREAM 141924 20218 6061777 2024-02-25 11:37:05.976 2024-02-25 11:37:05.976 1000 STREAM 141924 21591 6061824 2024-02-25 11:49:06.044 2024-02-25 11:49:06.044 1000 STREAM 141924 20280 6062136 2024-02-25 12:26:02.366 2024-02-25 12:26:02.366 1000 STREAM 141924 19966 6062146 2024-02-25 12:27:02.371 2024-02-25 12:27:02.371 1000 STREAM 141924 18306 6062147 2024-02-25 12:28:02.387 2024-02-25 12:28:02.387 1000 STREAM 141924 1310 6062153 2024-02-25 12:29:02.383 2024-02-25 12:29:02.383 1000 STREAM 141924 18243 6062162 2024-02-25 12:30:02.414 2024-02-25 12:30:02.414 1000 STREAM 141924 937 6062165 2024-02-25 12:31:02.388 2024-02-25 12:31:02.388 1000 STREAM 141924 9843 6062183 2024-02-25 12:34:02.418 2024-02-25 12:34:02.418 1000 STREAM 141924 15239 6062202 2024-02-25 12:36:02.431 2024-02-25 12:36:02.431 1000 STREAM 141924 17798 6122777 2024-03-01 09:15:36.462 2024-03-01 09:15:36.462 1000 FEE 444684 21398 6122784 2024-03-01 09:19:20.404 2024-03-01 09:19:20.404 2100 FEE 444465 21320 6122785 2024-03-01 09:19:20.404 2024-03-01 09:19:20.404 18900 TIP 444465 12507 6122809 2024-03-01 09:27:26.082 2024-03-01 09:27:26.082 1000 FEE 443919 4059 6122810 2024-03-01 09:27:26.082 2024-03-01 09:27:26.082 9000 TIP 443919 13046 6122879 2024-03-01 09:41:31.146 2024-03-01 09:41:31.146 98000 FEE 444690 10530 6122880 2024-03-01 09:41:46.822 2024-03-01 09:41:46.822 0 FEE 444690 807 6122901 2024-03-01 09:47:55.257 2024-03-01 09:47:55.257 0 FEE 444692 17494 6122943 2024-03-01 09:55:26.706 2024-03-01 09:55:26.706 2100 FEE 444173 6260 6122944 2024-03-01 09:55:26.706 2024-03-01 09:55:26.706 18900 TIP 444173 2203 6122954 2024-03-01 09:56:29.67 2024-03-01 09:56:29.67 6000 FEE 438987 10944 6122955 2024-03-01 09:56:29.67 2024-03-01 09:56:29.67 54000 TIP 438987 618 6123014 2024-03-01 10:06:52.838 2024-03-01 10:06:52.838 100 FEE 444700 9159 6123015 2024-03-01 10:06:52.838 2024-03-01 10:06:52.838 900 TIP 444700 986 6123021 2024-03-01 10:07:15.481 2024-03-01 10:07:15.481 1000 FEE 444709 4313 6123071 2024-03-01 10:13:14.83 2024-03-01 10:13:14.83 1000 FEE 444713 9341 6123104 2024-03-01 10:19:37.496 2024-03-01 10:19:37.496 0 FEE 444716 11038 6123111 2024-03-01 10:20:29.724 2024-03-01 10:20:29.724 100 FEE 444715 5775 6123112 2024-03-01 10:20:29.724 2024-03-01 10:20:29.724 900 TIP 444715 17109 6123142 2024-03-01 10:22:19.703 2024-03-01 10:22:19.703 100 FEE 444710 19281 6123143 2024-03-01 10:22:19.703 2024-03-01 10:22:19.703 900 TIP 444710 1008 6123167 2024-03-01 10:24:26.357 2024-03-01 10:24:26.357 100 FEE 444723 20623 6123168 2024-03-01 10:24:26.357 2024-03-01 10:24:26.357 900 TIP 444723 4831 6123175 2024-03-01 10:24:27.211 2024-03-01 10:24:27.211 500 FEE 444666 18280 6123176 2024-03-01 10:24:27.211 2024-03-01 10:24:27.211 4500 TIP 444666 16638 6123185 2024-03-01 10:24:37.605 2024-03-01 10:24:37.605 1000 FEE 444168 913 6123186 2024-03-01 10:24:37.605 2024-03-01 10:24:37.605 9000 TIP 444168 20657 6123187 2024-03-01 10:24:37.826 2024-03-01 10:24:37.826 1000 FEE 444168 701 6123188 2024-03-01 10:24:37.826 2024-03-01 10:24:37.826 9000 TIP 444168 7992 6123191 2024-03-01 10:24:38.277 2024-03-01 10:24:38.277 1000 FEE 444168 5444 6123192 2024-03-01 10:24:38.277 2024-03-01 10:24:38.277 9000 TIP 444168 19987 6123208 2024-03-01 10:25:10.68 2024-03-01 10:25:10.68 100000 FEE 444730 21269 6123217 2024-03-01 10:26:32.037 2024-03-01 10:26:32.037 1000 FEE 443660 2195 6123218 2024-03-01 10:26:32.037 2024-03-01 10:26:32.037 9000 TIP 443660 16912 6123223 2024-03-01 10:26:34.844 2024-03-01 10:26:34.844 1000 FEE 443624 5590 6123224 2024-03-01 10:26:34.844 2024-03-01 10:26:34.844 9000 TIP 443624 1692 6123232 2024-03-01 10:27:21.59 2024-03-01 10:27:21.59 1000 FEE 444179 21356 6123233 2024-03-01 10:27:21.59 2024-03-01 10:27:21.59 9000 TIP 444179 19795 6123252 2024-03-01 10:27:59.872 2024-03-01 10:27:59.872 5700 FEE 444714 946 6123253 2024-03-01 10:27:59.872 2024-03-01 10:27:59.872 51300 TIP 444714 20500 6123263 2024-03-01 10:28:14.305 2024-03-01 10:28:14.305 1000 FEE 444497 7960 6123264 2024-03-01 10:28:14.305 2024-03-01 10:28:14.305 9000 TIP 444497 9529 6123269 2024-03-01 10:28:17.159 2024-03-01 10:28:17.159 1000 FEE 444664 20901 6123270 2024-03-01 10:28:17.159 2024-03-01 10:28:17.159 9000 TIP 444664 5825 6123288 2024-03-01 10:29:53.667 2024-03-01 10:29:53.667 1000 FEE 444220 19976 6123289 2024-03-01 10:29:53.667 2024-03-01 10:29:53.667 9000 TIP 444220 1195 6123290 2024-03-01 10:29:56.748 2024-03-01 10:29:56.748 1000 FEE 444245 20087 6123291 2024-03-01 10:29:56.748 2024-03-01 10:29:56.748 9000 TIP 444245 7376 6123300 2024-03-01 10:30:01.705 2024-03-01 10:30:01.705 1000 FEE 444210 11164 6123301 2024-03-01 10:30:01.705 2024-03-01 10:30:01.705 9000 TIP 444210 21614 6123305 2024-03-01 10:30:09.106 2024-03-01 10:30:09.106 1000 FEE 444327 5961 6123306 2024-03-01 10:30:09.106 2024-03-01 10:30:09.106 9000 TIP 444327 16296 6123311 2024-03-01 10:30:22.239 2024-03-01 10:30:22.239 1000 FEE 444730 21405 6123312 2024-03-01 10:30:22.239 2024-03-01 10:30:22.239 9000 TIP 444730 17171 6123353 2024-03-01 10:30:40.484 2024-03-01 10:30:40.484 1000 FEE 444687 18667 6123354 2024-03-01 10:30:40.484 2024-03-01 10:30:40.484 9000 TIP 444687 17984 6123385 2024-03-01 10:33:05.059 2024-03-01 10:33:05.059 1000 FEE 444735 20781 6123389 2024-03-01 10:34:11.781 2024-03-01 10:34:11.781 1000 FEE 444689 663 6123390 2024-03-01 10:34:11.781 2024-03-01 10:34:11.781 9000 TIP 444689 711 6123410 2024-03-01 10:35:17.153 2024-03-01 10:35:17.153 0 FEE 444735 18101 6123413 2024-03-01 10:35:56.624 2024-03-01 10:35:56.624 50000 FEE 444238 2741 6123414 2024-03-01 10:35:56.624 2024-03-01 10:35:56.624 450000 TIP 444238 20642 6123415 2024-03-01 10:35:57.662 2024-03-01 10:35:57.662 200 FEE 444687 5637 6123416 2024-03-01 10:35:57.662 2024-03-01 10:35:57.662 1800 TIP 444687 10728 6123451 2024-03-01 10:43:09.291 2024-03-01 10:43:09.291 1000 FEE 444748 1245 6123492 2024-03-01 10:51:10.887 2024-03-01 10:51:10.887 7600 FEE 444756 18208 6123493 2024-03-01 10:51:10.887 2024-03-01 10:51:10.887 68400 TIP 444756 20182 6123534 2024-03-01 10:57:15.513 2024-03-01 10:57:15.513 6900 FEE 443926 18919 6123535 2024-03-01 10:57:15.513 2024-03-01 10:57:15.513 62100 TIP 443926 5761 6123537 2024-03-01 10:58:12.186 2024-03-01 10:58:12.186 1000 FEE 444755 4048 6123538 2024-03-01 10:58:12.186 2024-03-01 10:58:12.186 9000 TIP 444755 6515 6123547 2024-03-01 10:58:28.426 2024-03-01 10:58:28.426 1000 FEE 444739 876 6123548 2024-03-01 10:58:28.426 2024-03-01 10:58:28.426 9000 TIP 444739 1737 6123567 2024-03-01 11:00:34.93 2024-03-01 11:00:34.93 2100 FEE 444662 19403 6123568 2024-03-01 11:00:34.93 2024-03-01 11:00:34.93 18900 TIP 444662 19263 6123569 2024-03-01 11:00:45.219 2024-03-01 11:00:45.219 2100 FEE 444771 5160 6123570 2024-03-01 11:00:45.219 2024-03-01 11:00:45.219 18900 TIP 444771 13921 6123583 2024-03-01 11:02:08.456 2024-03-01 11:02:08.456 1600 FEE 444771 19138 6123584 2024-03-01 11:02:08.456 2024-03-01 11:02:08.456 14400 TIP 444771 20433 6123587 2024-03-01 11:02:12.265 2024-03-01 11:02:12.265 1000 FEE 444777 21119 6123615 2024-03-01 11:04:17.267 2024-03-01 11:04:17.267 2100 FEE 443723 1718 6123616 2024-03-01 11:04:17.267 2024-03-01 11:04:17.267 18900 TIP 443723 1142 6123640 2024-03-01 11:06:17.946 2024-03-01 11:06:17.946 1000 FEE 444792 18994 6123645 2024-03-01 11:06:32.589 2024-03-01 11:06:32.589 7600 FEE 444775 658 6123646 2024-03-01 11:06:32.589 2024-03-01 11:06:32.589 68400 TIP 444775 866 6123666 2024-03-01 11:07:08.268 2024-03-01 11:07:08.268 1000 FEE 444794 21262 6123674 2024-03-01 11:07:34.763 2024-03-01 11:07:34.763 1000 FEE 444796 10719 6123683 2024-03-01 11:09:52.266 2024-03-01 11:09:52.266 1000 FEE 444799 1549 6123700 2024-03-01 11:11:38.02 2024-03-01 11:11:38.02 0 FEE 444803 4973 6061728 2024-02-25 11:28:02.248 2024-02-25 11:28:02.248 1000 STREAM 141924 635 6061737 2024-02-25 11:32:02.268 2024-02-25 11:32:02.268 1000 STREAM 141924 700 6061744 2024-02-25 11:34:02.289 2024-02-25 11:34:02.289 1000 STREAM 141924 19777 6061790 2024-02-25 11:39:02.309 2024-02-25 11:39:02.309 1000 STREAM 141924 18679 6061796 2024-02-25 11:41:02.366 2024-02-25 11:41:02.366 1000 STREAM 141924 9348 6061799 2024-02-25 11:42:02.376 2024-02-25 11:42:02.376 1000 STREAM 141924 633 6061807 2024-02-25 11:44:02.42 2024-02-25 11:44:02.42 1000 STREAM 141924 632 6061818 2024-02-25 11:46:02.423 2024-02-25 11:46:02.423 1000 STREAM 141924 2652 6061822 2024-02-25 11:48:02.432 2024-02-25 11:48:02.432 1000 STREAM 141924 14376 6061895 2024-02-25 11:53:02.445 2024-02-25 11:53:02.445 1000 STREAM 141924 9920 6061898 2024-02-25 11:54:02.45 2024-02-25 11:54:02.45 1000 STREAM 141924 20190 6061921 2024-02-25 11:58:02.47 2024-02-25 11:58:02.47 1000 STREAM 141924 4459 6061947 2024-02-25 12:00:02.499 2024-02-25 12:00:02.499 1000 STREAM 141924 2232 6061965 2024-02-25 12:03:02.513 2024-02-25 12:03:02.513 1000 STREAM 141924 647 6062000 2024-02-25 12:08:02.606 2024-02-25 12:08:02.606 1000 STREAM 141924 20979 6062001 2024-02-25 12:09:02.627 2024-02-25 12:09:02.627 1000 STREAM 141924 19929 6062016 2024-02-25 12:11:02.608 2024-02-25 12:11:02.608 1000 STREAM 141924 19403 6062024 2024-02-25 12:12:02.629 2024-02-25 12:12:02.629 1000 STREAM 141924 12268 6062029 2024-02-25 12:13:02.637 2024-02-25 12:13:02.637 1000 STREAM 141924 1960 6062047 2024-02-25 12:17:02.731 2024-02-25 12:17:02.731 1000 STREAM 141924 12261 6062066 2024-02-25 12:19:02.724 2024-02-25 12:19:02.724 1000 STREAM 141924 20715 6062075 2024-02-25 12:21:02.755 2024-02-25 12:21:02.755 1000 STREAM 141924 1489 6062085 2024-02-25 12:22:02.759 2024-02-25 12:22:02.759 1000 STREAM 141924 20450 6062107 2024-02-25 12:23:02.779 2024-02-25 12:23:02.779 1000 STREAM 141924 20980 6062603 2024-02-25 13:34:03.506 2024-02-25 13:34:03.506 1000 STREAM 141924 21148 6062607 2024-02-25 13:36:03.519 2024-02-25 13:36:03.519 1000 STREAM 141924 10398 6062608 2024-02-25 13:37:03.527 2024-02-25 13:37:03.527 1000 STREAM 141924 19987 6062628 2024-02-25 13:41:03.546 2024-02-25 13:41:03.546 1000 STREAM 141924 8284 6062634 2024-02-25 13:42:03.557 2024-02-25 13:42:03.557 1000 STREAM 141924 9084 6063044 2024-02-25 14:30:03.99 2024-02-25 14:30:03.99 1000 STREAM 141924 9695 6063049 2024-02-25 14:31:03.957 2024-02-25 14:31:03.957 1000 STREAM 141924 10342 6063056 2024-02-25 14:33:03.996 2024-02-25 14:33:03.996 1000 STREAM 141924 8284 6063073 2024-02-25 14:37:04.023 2024-02-25 14:37:04.023 1000 STREAM 141924 20972 6063080 2024-02-25 14:39:04.034 2024-02-25 14:39:04.034 1000 STREAM 141924 896 6063081 2024-02-25 14:40:04.07 2024-02-25 14:40:04.07 1000 STREAM 141924 17817 6063109 2024-02-25 14:43:04.071 2024-02-25 14:43:04.071 1000 STREAM 141924 2326 6063132 2024-02-25 14:47:04.057 2024-02-25 14:47:04.057 1000 STREAM 141924 20137 6063135 2024-02-25 14:48:04.085 2024-02-25 14:48:04.085 1000 STREAM 141924 18449 6063140 2024-02-25 14:49:04.091 2024-02-25 14:49:04.091 1000 STREAM 141924 1141 6063171 2024-02-25 14:50:04.122 2024-02-25 14:50:04.122 1000 STREAM 141924 678 6063188 2024-02-25 14:52:04.115 2024-02-25 14:52:04.115 1000 STREAM 141924 9242 6063194 2024-02-25 14:53:04.138 2024-02-25 14:53:04.138 1000 STREAM 141924 21180 6063224 2024-02-25 14:55:04.187 2024-02-25 14:55:04.187 1000 STREAM 141924 6148 6063234 2024-02-25 14:57:04.174 2024-02-25 14:57:04.174 1000 STREAM 141924 20500 6063265 2024-02-25 14:59:04.191 2024-02-25 14:59:04.191 1000 STREAM 141924 19938 6063289 2024-02-25 15:00:04.247 2024-02-25 15:00:04.247 1000 STREAM 141924 21070 6063303 2024-02-25 15:01:04.185 2024-02-25 15:01:04.185 1000 STREAM 141924 20436 6122792 2024-03-01 09:19:56.151 2024-03-01 09:19:56.151 2100 FEE 444570 16354 6122793 2024-03-01 09:19:56.151 2024-03-01 09:19:56.151 18900 TIP 444570 18892 6122795 2024-03-01 09:20:47.139 2024-03-01 09:20:47.139 1000 FEE 444685 2123 6122797 2024-03-01 09:21:16.727 2024-03-01 09:21:16.727 2100 FEE 442416 20424 6122798 2024-03-01 09:21:16.727 2024-03-01 09:21:16.727 18900 TIP 442416 8498 6122831 2024-03-01 09:27:39.853 2024-03-01 09:27:39.853 1000 FEE 444647 21379 6122832 2024-03-01 09:27:39.853 2024-03-01 09:27:39.853 9000 TIP 444647 2525 6122853 2024-03-01 09:28:44.668 2024-03-01 09:28:44.668 1000 FEE 444168 837 6122854 2024-03-01 09:28:44.668 2024-03-01 09:28:44.668 9000 TIP 444168 19980 6122873 2024-03-01 09:38:41.882 2024-03-01 09:38:41.882 100000 FEE 444689 19524 6122882 2024-03-01 09:42:37.468 2024-03-01 09:42:37.468 10000 FEE 444691 11430 6122894 2024-03-01 09:45:15.135 2024-03-01 09:45:15.135 200 FEE 438670 16282 6122895 2024-03-01 09:45:15.135 2024-03-01 09:45:15.135 1800 TIP 438670 20299 6122907 2024-03-01 09:49:45.214 2024-03-01 09:49:45.214 1000 FEE 444179 20781 6122908 2024-03-01 09:49:45.214 2024-03-01 09:49:45.214 9000 TIP 444179 18625 6122909 2024-03-01 09:49:55.008 2024-03-01 09:49:55.008 1000 FEE 444691 11443 6122910 2024-03-01 09:49:55.008 2024-03-01 09:49:55.008 9000 TIP 444691 9494 6122919 2024-03-01 09:52:09.303 2024-03-01 09:52:09.303 10000 FEE 444428 1352 6122920 2024-03-01 09:52:09.303 2024-03-01 09:52:09.303 90000 TIP 444428 20222 6122921 2024-03-01 09:52:37.356 2024-03-01 09:52:37.356 100000 FEE 444695 5112 6122937 2024-03-01 09:55:22.178 2024-03-01 09:55:22.178 2100 FEE 444365 14260 6122938 2024-03-01 09:55:22.178 2024-03-01 09:55:22.178 18900 TIP 444365 2722 6122941 2024-03-01 09:55:25.187 2024-03-01 09:55:25.187 2100 FEE 444522 21178 6122942 2024-03-01 09:55:25.187 2024-03-01 09:55:25.187 18900 TIP 444522 14909 6122957 2024-03-01 09:56:46.314 2024-03-01 09:56:46.314 600 FEE 436212 20143 6122958 2024-03-01 09:56:46.314 2024-03-01 09:56:46.314 5400 TIP 436212 21371 6122959 2024-03-01 09:57:00.201 2024-03-01 09:57:00.201 1000 FEE 444699 8004 6122967 2024-03-01 09:58:06.758 2024-03-01 09:58:06.758 1000 POLL 444078 19843 6122986 2024-03-01 10:04:30.151 2024-03-01 10:04:30.151 5700 FEE 444554 9362 6122987 2024-03-01 10:04:30.151 2024-03-01 10:04:30.151 51300 TIP 444554 5757 6122997 2024-03-01 10:04:52.474 2024-03-01 10:04:52.474 100 FEE 444522 2444 6122998 2024-03-01 10:04:52.474 2024-03-01 10:04:52.474 900 TIP 444522 2942 6123007 2024-03-01 10:06:23.958 2024-03-01 10:06:23.958 1000 FEE 444706 21514 6123024 2024-03-01 10:07:17.982 2024-03-01 10:07:17.982 100 FEE 444700 946 6123025 2024-03-01 10:07:17.982 2024-03-01 10:07:17.982 900 TIP 444700 20745 6123050 2024-03-01 10:11:23.063 2024-03-01 10:11:23.063 2100 FEE 444707 629 6123051 2024-03-01 10:11:23.063 2024-03-01 10:11:23.063 18900 TIP 444707 1723 6123066 2024-03-01 10:12:35.26 2024-03-01 10:12:35.26 2100 FEE 444662 708 6123067 2024-03-01 10:12:35.26 2024-03-01 10:12:35.26 18900 TIP 444662 6310 6123068 2024-03-01 10:12:45.839 2024-03-01 10:12:45.839 2100 FEE 444657 16809 6123069 2024-03-01 10:12:45.839 2024-03-01 10:12:45.839 18900 TIP 444657 20436 6123072 2024-03-01 10:13:31.308 2024-03-01 10:13:31.308 20000 FEE 444714 9758 6123073 2024-03-01 10:13:42.907 2024-03-01 10:13:42.907 15000 FEE 444715 19622 6123088 2024-03-01 10:16:44.696 2024-03-01 10:16:44.696 2100 FEE 444708 6030 6123089 2024-03-01 10:16:44.696 2024-03-01 10:16:44.696 18900 TIP 444708 5703 6123094 2024-03-01 10:17:47.639 2024-03-01 10:17:47.639 21000 FEE 444720 11314 6123110 2024-03-01 10:20:29.43 2024-03-01 10:20:29.43 1000 FEE 444722 16301 6123152 2024-03-01 10:23:14.588 2024-03-01 10:23:14.588 100 FEE 444716 20781 6061734 2024-02-25 11:30:02.288 2024-02-25 11:30:02.288 1000 STREAM 141924 630 6061766 2024-02-25 11:36:02.309 2024-02-25 11:36:02.309 1000 STREAM 141924 9421 6061786 2024-02-25 11:38:02.322 2024-02-25 11:38:02.322 1000 STREAM 141924 9378 6061802 2024-02-25 11:43:02.397 2024-02-25 11:43:02.397 1000 STREAM 141924 14278 6061812 2024-02-25 11:45:02.433 2024-02-25 11:45:02.433 1000 STREAM 141924 14465 6061821 2024-02-25 11:47:02.429 2024-02-25 11:47:02.429 1000 STREAM 141924 1959 6061878 2024-02-25 11:51:02.452 2024-02-25 11:51:02.452 1000 STREAM 141924 20481 6061883 2024-02-25 11:52:02.459 2024-02-25 11:52:02.459 1000 STREAM 141924 18344 6061907 2024-02-25 11:55:02.448 2024-02-25 11:55:02.448 1000 STREAM 141924 13987 6061915 2024-02-25 11:56:02.45 2024-02-25 11:56:02.45 1000 STREAM 141924 17727 6061918 2024-02-25 11:57:02.457 2024-02-25 11:57:02.457 1000 STREAM 141924 16788 6061924 2024-02-25 11:59:02.483 2024-02-25 11:59:02.483 1000 STREAM 141924 19403 6061952 2024-02-25 12:01:02.509 2024-02-25 12:01:02.509 1000 STREAM 141924 8498 6061957 2024-02-25 12:02:02.489 2024-02-25 12:02:02.489 1000 STREAM 141924 16706 6061966 2024-02-25 12:04:02.53 2024-02-25 12:04:02.53 1000 STREAM 141924 17365 6061972 2024-02-25 12:05:02.563 2024-02-25 12:05:02.563 1000 STREAM 141924 20434 6061976 2024-02-25 12:06:02.565 2024-02-25 12:06:02.565 1000 STREAM 141924 14939 6061981 2024-02-25 12:07:02.592 2024-02-25 12:07:02.592 1000 STREAM 141924 11967 6062009 2024-02-25 12:10:02.643 2024-02-25 12:10:02.643 1000 STREAM 141924 929 6062041 2024-02-25 12:14:02.655 2024-02-25 12:14:02.655 1000 STREAM 141924 18314 6062042 2024-02-25 12:15:02.68 2024-02-25 12:15:02.68 1000 STREAM 141924 2039 6062045 2024-02-25 12:16:02.698 2024-02-25 12:16:02.698 1000 STREAM 141924 1985 6062049 2024-02-25 12:18:02.723 2024-02-25 12:18:02.723 1000 STREAM 141924 17513 6062070 2024-02-25 12:20:02.779 2024-02-25 12:20:02.779 1000 STREAM 141924 18517 6062108 2024-02-25 12:24:02.791 2024-02-25 12:24:02.791 1000 STREAM 141924 21155 6062121 2024-02-25 12:25:02.805 2024-02-25 12:25:02.805 1000 STREAM 141924 2232 6122878 2024-03-01 09:41:03.882 2024-03-01 09:41:03.882 1000 STREAM 141924 20436 6122881 2024-03-01 09:42:03.882 2024-03-01 09:42:03.882 1000 STREAM 141924 21469 6123105 2024-03-01 10:20:04.338 2024-03-01 10:20:04.338 1000 STREAM 141924 18984 6123120 2024-03-01 10:21:04.319 2024-03-01 10:21:04.319 1000 STREAM 141924 19995 6123137 2024-03-01 10:22:04.321 2024-03-01 10:22:04.321 1000 STREAM 141924 21033 6123149 2024-03-01 10:23:04.33 2024-03-01 10:23:04.33 1000 STREAM 141924 4059 6123206 2024-03-01 10:25:04.352 2024-03-01 10:25:04.352 1000 STREAM 141924 21249 6123216 2024-03-01 10:26:04.37 2024-03-01 10:26:04.37 1000 STREAM 141924 20906 6123231 2024-03-01 10:27:04.372 2024-03-01 10:27:04.372 1000 STREAM 141924 11515 6123302 2024-03-01 10:30:04.654 2024-03-01 10:30:04.654 1000 STREAM 141924 663 6123382 2024-03-01 10:32:04.636 2024-03-01 10:32:04.636 1000 STREAM 141924 17927 6123384 2024-03-01 10:33:04.65 2024-03-01 10:33:04.65 1000 STREAM 141924 15544 6123442 2024-03-01 10:42:04.868 2024-03-01 10:42:04.868 1000 STREAM 141924 3686 6123450 2024-03-01 10:43:04.88 2024-03-01 10:43:04.88 1000 STREAM 141924 1740 6061747 2024-02-25 11:34:51.712 2024-02-25 11:34:51.712 1000 FEE 438125 17042 6061750 2024-02-25 11:35:09.848 2024-02-25 11:35:09.848 900 FEE 437764 4059 6061751 2024-02-25 11:35:09.848 2024-02-25 11:35:09.848 8100 TIP 437764 21248 6061752 2024-02-25 11:35:09.907 2024-02-25 11:35:09.907 2100 FEE 438096 9350 6061753 2024-02-25 11:35:09.907 2024-02-25 11:35:09.907 18900 TIP 438096 9290 6061754 2024-02-25 11:35:10.853 2024-02-25 11:35:10.853 1000 FEE 438127 19303 6061784 2024-02-25 11:37:48.996 2024-02-25 11:37:48.996 100000 FEE 438134 20179 6061839 2024-02-25 11:49:18.881 2024-02-25 11:49:18.881 1000 FEE 438118 4102 6061840 2024-02-25 11:49:18.881 2024-02-25 11:49:18.881 9000 TIP 438118 16355 6061845 2024-02-25 11:49:20.903 2024-02-25 11:49:20.903 1000 FEE 438094 7869 6061846 2024-02-25 11:49:20.903 2024-02-25 11:49:20.903 9000 TIP 438094 21303 6061867 2024-02-25 11:49:40.524 2024-02-25 11:49:40.524 1000 FEE 430770 21453 6061868 2024-02-25 11:49:40.524 2024-02-25 11:49:40.524 9000 TIP 430770 18423 6061872 2024-02-25 11:50:00.474 2024-02-25 11:50:00.474 1000 FEE 438135 13046 6061873 2024-02-25 11:50:00.474 2024-02-25 11:50:00.474 9000 TIP 438135 15148 6061882 2024-02-25 11:51:59.441 2024-02-25 11:51:59.441 1000 FEE 438149 15925 6061906 2024-02-25 11:54:37.153 2024-02-25 11:54:37.153 0 FEE 438152 919 6061908 2024-02-25 11:55:11.8 2024-02-25 11:55:11.8 1000 FEE 438153 10398 6061909 2024-02-25 11:55:27.703 2024-02-25 11:55:27.703 1000 FEE 438102 21573 6061910 2024-02-25 11:55:27.703 2024-02-25 11:55:27.703 9000 TIP 438102 21413 6061939 2024-02-25 11:59:33.5 2024-02-25 11:59:33.5 1000 FEE 431088 13782 6061940 2024-02-25 11:59:33.5 2024-02-25 11:59:33.5 9000 TIP 431088 13327 6061956 2024-02-25 12:01:41.267 2024-02-25 12:01:41.267 0 FEE 438159 21208 6061960 2024-02-25 12:02:08.056 2024-02-25 12:02:08.056 0 FEE 438159 848 6061967 2024-02-25 12:04:29.177 2024-02-25 12:04:29.177 5000 FEE 436281 2775 6061968 2024-02-25 12:04:29.177 2024-02-25 12:04:29.177 45000 TIP 436281 1120 6061986 2024-02-25 12:07:09.625 2024-02-25 12:07:09.625 1000 FEE 438152 21332 6061987 2024-02-25 12:07:09.625 2024-02-25 12:07:09.625 9000 TIP 438152 1474 6061988 2024-02-25 12:07:19.243 2024-02-25 12:07:19.243 2100 FEE 436298 19335 6061989 2024-02-25 12:07:19.243 2024-02-25 12:07:19.243 18900 TIP 436298 20087 6061998 2024-02-25 12:08:00.481 2024-02-25 12:08:00.481 1000 FEE 438157 18626 6061999 2024-02-25 12:08:00.481 2024-02-25 12:08:00.481 9000 TIP 438157 10291 6062002 2024-02-25 12:09:45.339 2024-02-25 12:09:45.339 1000 FEE 438167 679 6062003 2024-02-25 12:09:52.83 2024-02-25 12:09:52.83 10000 FEE 438168 2039 6062010 2024-02-25 12:10:27.959 2024-02-25 12:10:27.959 1000 FEE 438149 20778 6062011 2024-02-25 12:10:27.959 2024-02-25 12:10:27.959 9000 TIP 438149 17124 6062012 2024-02-25 12:10:28.922 2024-02-25 12:10:28.922 1000 FEE 438149 20619 6062013 2024-02-25 12:10:28.922 2024-02-25 12:10:28.922 9000 TIP 438149 10060 6062014 2024-02-25 12:10:37.86 2024-02-25 12:10:37.86 0 FEE 438168 8535 6062048 2024-02-25 12:17:52.078 2024-02-25 12:17:52.078 0 FEE 438168 20412 6062057 2024-02-25 12:18:39.519 2024-02-25 12:18:39.519 1100 FEE 438163 21003 6062058 2024-02-25 12:18:39.519 2024-02-25 12:18:39.519 9900 TIP 438163 15180 6062062 2024-02-25 12:18:51.453 2024-02-25 12:18:51.453 4200 FEE 435847 4292 6062063 2024-02-25 12:18:51.453 2024-02-25 12:18:51.453 37800 TIP 435847 1647 6062084 2024-02-25 12:21:56.246 2024-02-25 12:21:56.246 0 FEE 438175 20906 6062086 2024-02-25 12:22:09.739 2024-02-25 12:22:09.739 10000 FEE 438168 17157 6062087 2024-02-25 12:22:09.739 2024-02-25 12:22:09.739 90000 TIP 438168 21416 6062105 2024-02-25 12:22:40.247 2024-02-25 12:22:40.247 2100 FEE 438177 16354 6062106 2024-02-25 12:22:40.247 2024-02-25 12:22:40.247 18900 TIP 438177 12289 6062111 2024-02-25 12:24:47.582 2024-02-25 12:24:47.582 200 FEE 438088 714 6062112 2024-02-25 12:24:47.582 2024-02-25 12:24:47.582 1800 TIP 438088 11515 6062119 2024-02-25 12:24:52.09 2024-02-25 12:24:52.09 200 FEE 438088 4378 6062120 2024-02-25 12:24:52.09 2024-02-25 12:24:52.09 1800 TIP 438088 669 6062134 2024-02-25 12:25:56.206 2024-02-25 12:25:56.206 1000 FEE 438065 20897 6062135 2024-02-25 12:25:56.206 2024-02-25 12:25:56.206 9000 TIP 438065 4059 6062141 2024-02-25 12:26:31.16 2024-02-25 12:26:31.16 4200 FEE 438088 16954 6062142 2024-02-25 12:26:31.16 2024-02-25 12:26:31.16 37800 TIP 438088 1244 6062158 2024-02-25 12:29:17.729 2024-02-25 12:29:17.729 5000 FEE 438006 14791 6062159 2024-02-25 12:29:17.729 2024-02-25 12:29:17.729 45000 TIP 438006 1064 6062160 2024-02-25 12:29:18.164 2024-02-25 12:29:18.164 5000 FEE 438006 18511 6062161 2024-02-25 12:29:18.164 2024-02-25 12:29:18.164 45000 TIP 438006 5661 6062184 2024-02-25 12:34:06.297 2024-02-25 12:34:06.297 5000 FEE 437936 21446 6062185 2024-02-25 12:34:06.297 2024-02-25 12:34:06.297 45000 TIP 437936 20434 6062196 2024-02-25 12:35:26.488 2024-02-25 12:35:26.488 5000 FEE 438092 837 6062197 2024-02-25 12:35:26.488 2024-02-25 12:35:26.488 45000 TIP 438092 12175 6062206 2024-02-25 12:36:30.425 2024-02-25 12:36:30.425 100 FEE 437276 17602 6062207 2024-02-25 12:36:30.425 2024-02-25 12:36:30.425 900 TIP 437276 2709 6062227 2024-02-25 12:38:50.123 2024-02-25 12:38:50.123 10000 FEE 438065 18380 6062228 2024-02-25 12:38:50.123 2024-02-25 12:38:50.123 90000 TIP 438065 16154 6062257 2024-02-25 12:45:53.882 2024-02-25 12:45:53.882 2100 FEE 438145 18262 6062258 2024-02-25 12:45:53.882 2024-02-25 12:45:53.882 18900 TIP 438145 18956 6062277 2024-02-25 12:46:55.327 2024-02-25 12:46:55.327 2100 FEE 438186 1823 6062278 2024-02-25 12:46:55.327 2024-02-25 12:46:55.327 18900 TIP 438186 10060 6062285 2024-02-25 12:47:30.587 2024-02-25 12:47:30.587 2100 FEE 438168 8569 6062286 2024-02-25 12:47:30.587 2024-02-25 12:47:30.587 18900 TIP 438168 16988 6062297 2024-02-25 12:47:44.921 2024-02-25 12:47:44.921 2100 FEE 438133 17714 6062298 2024-02-25 12:47:44.921 2024-02-25 12:47:44.921 18900 TIP 438133 15052 6062299 2024-02-25 12:47:57.549 2024-02-25 12:47:57.549 2100 FEE 438099 20370 6062300 2024-02-25 12:47:57.549 2024-02-25 12:47:57.549 18900 TIP 438099 21491 6062307 2024-02-25 12:48:28.763 2024-02-25 12:48:28.763 2100 FEE 438135 5085 6062308 2024-02-25 12:48:28.763 2024-02-25 12:48:28.763 18900 TIP 438135 19583 6062336 2024-02-25 12:51:14.337 2024-02-25 12:51:14.337 10000 FEE 438198 16747 6062340 2024-02-25 12:53:41.416 2024-02-25 12:53:41.416 100 FEE 438193 5129 6062341 2024-02-25 12:53:41.416 2024-02-25 12:53:41.416 900 TIP 438193 10731 6062347 2024-02-25 12:54:16.629 2024-02-25 12:54:16.629 1000 FEE 438189 20106 6062348 2024-02-25 12:54:16.629 2024-02-25 12:54:16.629 9000 TIP 438189 11561 6062364 2024-02-25 12:57:47.195 2024-02-25 12:57:47.195 2100 FEE 437531 20153 6062365 2024-02-25 12:57:47.195 2024-02-25 12:57:47.195 18900 TIP 437531 12024 6062388 2024-02-25 12:58:34.869 2024-02-25 12:58:34.869 5000 FEE 438166 19524 6062389 2024-02-25 12:58:34.869 2024-02-25 12:58:34.869 45000 TIP 438166 17106 6062402 2024-02-25 13:00:21.857 2024-02-25 13:00:21.857 100 FEE 438065 7978 6062403 2024-02-25 13:00:21.857 2024-02-25 13:00:21.857 900 TIP 438065 2335 6062407 2024-02-25 13:00:44.309 2024-02-25 13:00:44.309 100 FEE 438189 9496 6062408 2024-02-25 13:00:44.309 2024-02-25 13:00:44.309 900 TIP 438189 15049 6062425 2024-02-25 13:04:14.946 2024-02-25 13:04:14.946 100 FEE 438145 1352 6062426 2024-02-25 13:04:14.946 2024-02-25 13:04:14.946 900 TIP 438145 2029 6062430 2024-02-25 13:05:06.479 2024-02-25 13:05:06.479 2100 FEE 438202 18310 6062431 2024-02-25 13:05:06.479 2024-02-25 13:05:06.479 18900 TIP 438202 21178 6062449 2024-02-25 13:09:15.407 2024-02-25 13:09:15.407 2100 FEE 438202 20646 6062450 2024-02-25 13:09:15.407 2024-02-25 13:09:15.407 18900 TIP 438202 1489 6062451 2024-02-25 13:09:52.57 2024-02-25 13:09:52.57 1000 FEE 438211 20433 6061759 2024-02-25 11:35:53.124 2024-02-25 11:35:53.124 1000 FEE 438132 19103 6061767 2024-02-25 11:36:04.347 2024-02-25 11:36:04.347 1000 FEE 438099 20551 6061768 2024-02-25 11:36:04.347 2024-02-25 11:36:04.347 9000 TIP 438099 20646 6061769 2024-02-25 11:36:05.062 2024-02-25 11:36:05.062 1000 FEE 438114 9177 6061770 2024-02-25 11:36:05.062 2024-02-25 11:36:05.062 9000 TIP 438114 9167 6061773 2024-02-25 11:36:20.677 2024-02-25 11:36:20.677 1000 FEE 438133 15833 6061774 2024-02-25 11:36:49.32 2024-02-25 11:36:49.32 1000 FEE 438121 19848 6061775 2024-02-25 11:36:49.32 2024-02-25 11:36:49.32 9000 TIP 438121 17798 6061776 2024-02-25 11:37:01.3 2024-02-25 11:37:01.3 0 FEE 438133 13406 6061785 2024-02-25 11:38:01.755 2024-02-25 11:38:01.755 0 FEE 438124 13553 6061800 2024-02-25 11:42:44.4 2024-02-25 11:42:44.4 1000 FEE 436136 12277 6061801 2024-02-25 11:42:44.4 2024-02-25 11:42:44.4 9000 TIP 436136 6300 6061823 2024-02-25 11:49:03.192 2024-02-25 11:49:03.192 100000 FEE 438145 18314 6061827 2024-02-25 11:49:13.509 2024-02-25 11:49:13.509 1000 FEE 438092 18409 6061828 2024-02-25 11:49:13.509 2024-02-25 11:49:13.509 9000 TIP 438092 20509 6061863 2024-02-25 11:49:39.725 2024-02-25 11:49:39.725 1000 FEE 435926 19282 6061864 2024-02-25 11:49:39.725 2024-02-25 11:49:39.725 9000 TIP 435926 1209 6061876 2024-02-25 11:50:28.161 2024-02-25 11:50:28.161 1000 FEE 438146 20614 6061877 2024-02-25 11:50:28.161 2024-02-25 11:50:28.161 9000 TIP 438146 5175 6061879 2024-02-25 11:51:08.673 2024-02-25 11:51:08.673 1000 FEE 438148 13599 6061894 2024-02-25 11:52:53.168 2024-02-25 11:52:53.168 1000 FEE 438150 16042 6061900 2024-02-25 11:54:11.612 2024-02-25 11:54:11.612 1000 FEE 438152 1114 6061913 2024-02-25 11:55:47.631 2024-02-25 11:55:47.631 1000 FEE 433784 8287 6061914 2024-02-25 11:55:47.631 2024-02-25 11:55:47.631 9000 TIP 433784 18680 6061929 2024-02-25 11:59:29.546 2024-02-25 11:59:29.546 1000 FEE 432607 794 6061930 2024-02-25 11:59:29.546 2024-02-25 11:59:29.546 9000 TIP 432607 12921 6061937 2024-02-25 11:59:32.691 2024-02-25 11:59:32.691 1000 FEE 431867 672 6061938 2024-02-25 11:59:32.691 2024-02-25 11:59:32.691 9000 TIP 431867 18068 6061948 2024-02-25 12:00:42.411 2024-02-25 12:00:42.411 1000 FEE 438156 16942 6061953 2024-02-25 12:01:14.099 2024-02-25 12:01:14.099 1000 FEE 438158 633 6061954 2024-02-25 12:01:23.675 2024-02-25 12:01:23.675 1000 FEE 438159 13622 6061955 2024-02-25 12:01:31.963 2024-02-25 12:01:31.963 1000 FEE 438160 632 6061974 2024-02-25 12:05:29.16 2024-02-25 12:05:29.16 21100 FEE 438065 11275 6061975 2024-02-25 12:05:29.16 2024-02-25 12:05:29.16 189900 TIP 438065 21263 6061984 2024-02-25 12:07:09.265 2024-02-25 12:07:09.265 1000 FEE 438151 19153 6061985 2024-02-25 12:07:09.265 2024-02-25 12:07:09.265 9000 TIP 438151 1224 6062053 2024-02-25 12:18:21.076 2024-02-25 12:18:21.076 4200 FEE 436669 21532 6062054 2024-02-25 12:18:21.076 2024-02-25 12:18:21.076 37800 TIP 436669 21455 6062064 2024-02-25 12:18:55.194 2024-02-25 12:18:55.194 1000 FEE 438174 6202 6062069 2024-02-25 12:20:01.841 2024-02-25 12:20:01.841 1000 FEE 438175 6777 6062071 2024-02-25 12:20:06.307 2024-02-25 12:20:06.307 1000 FEE 438176 1272 6062117 2024-02-25 12:24:48.923 2024-02-25 12:24:48.923 200 FEE 438088 21441 6062118 2024-02-25 12:24:48.923 2024-02-25 12:24:48.923 1800 TIP 438088 14465 6062130 2024-02-25 12:25:22.276 2024-02-25 12:25:22.276 10000 FEE 438092 4059 6062131 2024-02-25 12:25:22.276 2024-02-25 12:25:22.276 90000 TIP 438092 12744 6062137 2024-02-25 12:26:30.612 2024-02-25 12:26:30.612 2100 FEE 438088 10690 6062138 2024-02-25 12:26:30.612 2024-02-25 12:26:30.612 18900 TIP 438088 10112 6062156 2024-02-25 12:29:15.581 2024-02-25 12:29:15.581 5000 FEE 437937 706 6062157 2024-02-25 12:29:15.581 2024-02-25 12:29:15.581 45000 TIP 437937 18989 6062167 2024-02-25 12:32:25.296 2024-02-25 12:32:25.296 5000 FEE 437880 1697 6062168 2024-02-25 12:32:25.296 2024-02-25 12:32:25.296 45000 TIP 437880 21249 6062237 2024-02-25 12:44:48.296 2024-02-25 12:44:48.296 4000 FEE 438188 14122 6062238 2024-02-25 12:44:48.296 2024-02-25 12:44:48.296 36000 TIP 438188 20573 6062243 2024-02-25 12:45:11.522 2024-02-25 12:45:11.522 1000 FEE 437720 15488 6062244 2024-02-25 12:45:11.522 2024-02-25 12:45:11.522 9000 TIP 437720 5173 6062245 2024-02-25 12:45:12.506 2024-02-25 12:45:12.506 1000 FEE 437720 21040 6062246 2024-02-25 12:45:12.506 2024-02-25 12:45:12.506 9000 TIP 437720 17673 6062268 2024-02-25 12:46:20.264 2024-02-25 12:46:20.264 2100 FEE 438087 7772 6062269 2024-02-25 12:46:20.264 2024-02-25 12:46:20.264 18900 TIP 438087 1564 6062280 2024-02-25 12:47:18.608 2024-02-25 12:47:18.608 50000 DONT_LIKE_THIS 438129 6717 6062283 2024-02-25 12:47:26.508 2024-02-25 12:47:26.508 2100 FEE 438159 782 6062284 2024-02-25 12:47:26.508 2024-02-25 12:47:26.508 18900 TIP 438159 17217 6062339 2024-02-25 12:53:03.638 2024-02-25 12:53:03.638 1000 FEE 438199 19795 6062374 2024-02-25 12:58:13.735 2024-02-25 12:58:13.735 5000 FEE 437700 7675 6062375 2024-02-25 12:58:13.735 2024-02-25 12:58:13.735 45000 TIP 437700 12946 6062384 2024-02-25 12:58:28.576 2024-02-25 12:58:28.576 5000 FEE 437700 19661 6062385 2024-02-25 12:58:28.576 2024-02-25 12:58:28.576 45000 TIP 437700 18984 6062411 2024-02-25 13:01:48.333 2024-02-25 13:01:48.333 4000 FEE 438202 1180 6062412 2024-02-25 13:01:48.333 2024-02-25 13:01:48.333 36000 TIP 438202 20110 6062439 2024-02-25 13:08:24.723 2024-02-25 13:08:24.723 1000 POLL 438202 1576 6062472 2024-02-25 13:13:50.47 2024-02-25 13:13:50.47 0 FEE 438212 5003 6062497 2024-02-25 13:17:32.641 2024-02-25 13:17:32.641 1000 FEE 438221 6383 6062503 2024-02-25 13:18:02.561 2024-02-25 13:18:02.561 1000 FEE 438225 21591 6062509 2024-02-25 13:18:51.232 2024-02-25 13:18:51.232 100 FEE 438167 13398 6062510 2024-02-25 13:18:51.232 2024-02-25 13:18:51.232 900 TIP 438167 14941 6062519 2024-02-25 13:19:45.253 2024-02-25 13:19:45.253 5000 FEE 438202 21395 6062520 2024-02-25 13:19:45.253 2024-02-25 13:19:45.253 45000 TIP 438202 21138 6062536 2024-02-25 13:21:19.662 2024-02-25 13:21:19.662 100 FEE 438156 7119 6062537 2024-02-25 13:21:19.662 2024-02-25 13:21:19.662 900 TIP 438156 1394 6062550 2024-02-25 13:25:56.534 2024-02-25 13:25:56.534 1000 FEE 438230 18774 6062555 2024-02-25 13:26:45.358 2024-02-25 13:26:45.358 100000 FEE 438232 636 6062560 2024-02-25 13:27:08.016 2024-02-25 13:27:08.016 1000 FEE 438233 2111 6062572 2024-02-25 13:28:52.124 2024-02-25 13:28:52.124 1000 FEE 438234 19189 6062590 2024-02-25 13:32:58.147 2024-02-25 13:32:58.147 77700 FEE 438235 18528 6062591 2024-02-25 13:32:58.147 2024-02-25 13:32:58.147 699300 TIP 438235 2735 6062593 2024-02-25 13:32:59.532 2024-02-25 13:32:59.532 2100 FEE 438232 20106 6062594 2024-02-25 13:32:59.532 2024-02-25 13:32:59.532 18900 TIP 438232 1237 6062609 2024-02-25 13:37:09.568 2024-02-25 13:37:09.568 4000 FEE 438189 19854 6062610 2024-02-25 13:37:09.568 2024-02-25 13:37:09.568 36000 TIP 438189 21509 6062622 2024-02-25 13:40:13.524 2024-02-25 13:40:13.524 25000 FEE 419513 20036 6062623 2024-02-25 13:40:13.524 2024-02-25 13:40:13.524 225000 TIP 419513 16556 6062626 2024-02-25 13:40:42.01 2024-02-25 13:40:42.01 12800 FEE 418261 2961 6062627 2024-02-25 13:40:42.01 2024-02-25 13:40:42.01 115200 TIP 418261 20434 6062636 2024-02-25 13:42:37.622 2024-02-25 13:42:37.622 1000 FEE 438246 10519 6062647 2024-02-25 13:46:11.836 2024-02-25 13:46:11.836 1000 FEE 438250 5746 6062653 2024-02-25 13:48:41.772 2024-02-25 13:48:41.772 1000 FEE 438253 20906 6062676 2024-02-25 13:51:13.313 2024-02-25 13:51:13.313 2100 FEE 438092 641 6062677 2024-02-25 13:51:13.313 2024-02-25 13:51:13.313 18900 TIP 438092 20560 6062682 2024-02-25 13:51:25.956 2024-02-25 13:51:25.956 2100 FEE 438133 15282 6062683 2024-02-25 13:51:25.956 2024-02-25 13:51:25.956 18900 TIP 438133 7553 6062694 2024-02-25 13:52:27.509 2024-02-25 13:52:27.509 1100 FEE 438198 14152 6062695 2024-02-25 13:52:27.509 2024-02-25 13:52:27.509 9900 TIP 438198 11378 6062696 2024-02-25 13:52:53.644 2024-02-25 13:52:53.644 3100 FEE 438232 8059 6061808 2024-02-25 11:44:51.785 2024-02-25 11:44:51.785 5000 FEE 438044 18310 6061809 2024-02-25 11:44:51.785 2024-02-25 11:44:51.785 45000 TIP 438044 9611 6061817 2024-02-25 11:45:26.512 2024-02-25 11:45:26.512 100000 FEE 438142 17708 6061825 2024-02-25 11:49:12.958 2024-02-25 11:49:12.958 1000 FEE 437611 15978 6061826 2024-02-25 11:49:12.958 2024-02-25 11:49:12.958 9000 TIP 437611 13574 6061831 2024-02-25 11:49:17.778 2024-02-25 11:49:17.778 1000 FEE 438142 21556 6061832 2024-02-25 11:49:17.778 2024-02-25 11:49:17.778 9000 TIP 438142 1142 6061835 2024-02-25 11:49:18.399 2024-02-25 11:49:18.399 1000 FEE 438131 19878 6061836 2024-02-25 11:49:18.399 2024-02-25 11:49:18.399 9000 TIP 438131 21400 6061849 2024-02-25 11:49:23.847 2024-02-25 11:49:23.847 1000 FEE 438087 20901 6061850 2024-02-25 11:49:23.847 2024-02-25 11:49:23.847 9000 TIP 438087 9348 6061851 2024-02-25 11:49:24.221 2024-02-25 11:49:24.221 1000 FEE 438084 18919 6061852 2024-02-25 11:49:24.221 2024-02-25 11:49:24.221 9000 TIP 438084 18877 6061865 2024-02-25 11:49:40.298 2024-02-25 11:49:40.298 1000 FEE 430607 20479 6061866 2024-02-25 11:49:40.298 2024-02-25 11:49:40.298 9000 TIP 430607 11220 6061875 2024-02-25 11:50:11.003 2024-02-25 11:50:11.003 1000 FEE 438147 1105 6061892 2024-02-25 11:52:12.287 2024-02-25 11:52:12.287 4000 FEE 438135 9337 6061893 2024-02-25 11:52:12.287 2024-02-25 11:52:12.287 36000 TIP 438135 9669 6061899 2024-02-25 11:54:08.28 2024-02-25 11:54:08.28 1000 FEE 438151 14489 6061911 2024-02-25 11:55:33.446 2024-02-25 11:55:33.446 1000 FEE 438123 17365 6061912 2024-02-25 11:55:33.446 2024-02-25 11:55:33.446 9000 TIP 438123 21058 6061935 2024-02-25 11:59:31.605 2024-02-25 11:59:31.605 1000 FEE 431919 14472 6061936 2024-02-25 11:59:31.605 2024-02-25 11:59:31.605 9000 TIP 431919 12768 6061943 2024-02-25 11:59:55.313 2024-02-25 11:59:55.313 4000 FEE 438152 1577 6061944 2024-02-25 11:59:55.313 2024-02-25 11:59:55.313 36000 TIP 438152 17050 6061945 2024-02-25 11:59:56.258 2024-02-25 11:59:56.258 4000 FEE 438151 16649 6061946 2024-02-25 11:59:56.258 2024-02-25 11:59:56.258 36000 TIP 438151 17124 6062015 2024-02-25 12:10:40.829 2024-02-25 12:10:40.829 1000 FEE 438169 19524 6062017 2024-02-25 12:11:07.215 2024-02-25 12:11:07.215 1000 FEE 438170 2735 6062040 2024-02-25 12:14:02.464 2024-02-25 12:14:02.464 0 FEE 438168 12516 6062043 2024-02-25 12:15:15.776 2024-02-25 12:15:15.776 0 FEE 438168 13927 6062050 2024-02-25 12:18:08.945 2024-02-25 12:18:08.945 4200 FEE 436954 2773 6062051 2024-02-25 12:18:08.945 2024-02-25 12:18:08.945 37800 TIP 436954 14941 6062074 2024-02-25 12:20:50.281 2024-02-25 12:20:50.281 1000 FEE 438177 21400 6062094 2024-02-25 12:22:23.222 2024-02-25 12:22:23.222 2100 FEE 438088 20778 6062095 2024-02-25 12:22:23.222 2024-02-25 12:22:23.222 18900 TIP 438088 1221 6062124 2024-02-25 12:25:05.428 2024-02-25 12:25:05.428 10000 FEE 438146 17690 6062125 2024-02-25 12:25:05.428 2024-02-25 12:25:05.428 90000 TIP 438146 9159 6062132 2024-02-25 12:25:23.512 2024-02-25 12:25:23.512 1000 FEE 438181 13348 6062133 2024-02-25 12:25:36.023 2024-02-25 12:25:36.023 21000 FEE 438182 15049 6062143 2024-02-25 12:26:34.959 2024-02-25 12:26:34.959 1000 FEE 438183 18072 6062151 2024-02-25 12:28:41.292 2024-02-25 12:28:41.292 100 FEE 438182 686 6062152 2024-02-25 12:28:41.292 2024-02-25 12:28:41.292 900 TIP 438182 17713 6062163 2024-02-25 12:30:02.86 2024-02-25 12:30:02.86 2000 FEE 437929 2514 6062164 2024-02-25 12:30:02.86 2024-02-25 12:30:02.86 18000 TIP 437929 671 6062191 2024-02-25 12:34:53.103 2024-02-25 12:34:53.103 5000 FEE 437723 15075 6062192 2024-02-25 12:34:53.103 2024-02-25 12:34:53.103 45000 TIP 437723 1549 6062200 2024-02-25 12:35:26.951 2024-02-25 12:35:26.951 5000 FEE 438092 3353 6062201 2024-02-25 12:35:26.951 2024-02-25 12:35:26.951 45000 TIP 438092 9341 6062212 2024-02-25 12:36:31.708 2024-02-25 12:36:31.708 100 FEE 437276 9353 6062213 2024-02-25 12:36:31.708 2024-02-25 12:36:31.708 900 TIP 437276 13878 6062219 2024-02-25 12:37:21.097 2024-02-25 12:37:21.097 10000 FEE 438188 17713 6062225 2024-02-25 12:38:31.591 2024-02-25 12:38:31.591 100 FEE 438131 6798 6062226 2024-02-25 12:38:31.591 2024-02-25 12:38:31.591 900 TIP 438131 21356 6062250 2024-02-25 12:45:32.799 2024-02-25 12:45:32.799 2100 FEE 438189 20990 6062251 2024-02-25 12:45:32.799 2024-02-25 12:45:32.799 18900 TIP 438189 15103 6062259 2024-02-25 12:46:01.338 2024-02-25 12:46:01.338 10000 FEE 431661 13544 6062260 2024-02-25 12:46:01.338 2024-02-25 12:46:01.338 90000 TIP 431661 11956 6062264 2024-02-25 12:46:09.457 2024-02-25 12:46:09.457 2100 FEE 438092 13327 6062265 2024-02-25 12:46:09.457 2024-02-25 12:46:09.457 18900 TIP 438092 4345 6062287 2024-02-25 12:47:33.515 2024-02-25 12:47:33.515 2100 FEE 438175 20660 6062288 2024-02-25 12:47:33.515 2024-02-25 12:47:33.515 18900 TIP 438175 4798 6062302 2024-02-25 12:48:10.191 2024-02-25 12:48:10.191 100000 FEE 438192 981 6062304 2024-02-25 12:48:19.097 2024-02-25 12:48:19.097 2100 FEE 438096 1236 6062305 2024-02-25 12:48:19.097 2024-02-25 12:48:19.097 18900 TIP 438096 10311 6062321 2024-02-25 12:50:25.281 2024-02-25 12:50:25.281 5000 FEE 438159 1658 6062322 2024-02-25 12:50:25.281 2024-02-25 12:50:25.281 45000 TIP 438159 18809 6062360 2024-02-25 12:57:04.981 2024-02-25 12:57:04.981 1100 FEE 437720 7587 6062361 2024-02-25 12:57:04.981 2024-02-25 12:57:04.981 9900 TIP 437720 17184 6062366 2024-02-25 12:57:47.385 2024-02-25 12:57:47.385 2100 FEE 437531 10719 6062367 2024-02-25 12:57:47.385 2024-02-25 12:57:47.385 18900 TIP 437531 2718 6062397 2024-02-25 13:00:04.072 2024-02-25 13:00:04.072 1000 POLL 438202 19484 6062417 2024-02-25 13:03:55.751 2024-02-25 13:03:55.751 1000 FEE 438210 20717 6062433 2024-02-25 13:06:08.857 2024-02-25 13:06:08.857 1000 FEE 438142 8245 6062434 2024-02-25 13:06:08.857 2024-02-25 13:06:08.857 9000 TIP 438142 21520 6062442 2024-02-25 13:08:55.658 2024-02-25 13:08:55.658 1100 FEE 437502 14905 6062443 2024-02-25 13:08:55.658 2024-02-25 13:08:55.658 9900 TIP 437502 3409 6062475 2024-02-25 13:14:18.922 2024-02-25 13:14:18.922 100000 FEE 438216 18363 6062479 2024-02-25 13:14:31.917 2024-02-25 13:14:31.917 0 FEE 438212 21539 6062488 2024-02-25 13:15:04.862 2024-02-25 13:15:04.862 0 FEE 438211 1983 6062489 2024-02-25 13:15:18.43 2024-02-25 13:15:18.43 4000 FEE 438214 20084 6062490 2024-02-25 13:15:18.43 2024-02-25 13:15:18.43 36000 TIP 438214 5538 6062491 2024-02-25 13:15:18.915 2024-02-25 13:15:18.915 4000 FEE 438214 18877 6062492 2024-02-25 13:15:18.915 2024-02-25 13:15:18.915 36000 TIP 438214 6310 6062496 2024-02-25 13:17:20.417 2024-02-25 13:17:20.417 1000 FEE 438220 9337 6062526 2024-02-25 13:21:17.019 2024-02-25 13:21:17.019 100 FEE 438156 10484 6062527 2024-02-25 13:21:17.019 2024-02-25 13:21:17.019 900 TIP 438156 14515 6062558 2024-02-25 13:27:03.707 2024-02-25 13:27:03.707 1000 FEE 438231 15549 6062559 2024-02-25 13:27:03.707 2024-02-25 13:27:03.707 9000 TIP 438231 9290 6062563 2024-02-25 13:27:10.421 2024-02-25 13:27:10.421 2100 FEE 438188 8162 6062564 2024-02-25 13:27:10.421 2024-02-25 13:27:10.421 18900 TIP 438188 3411 6062570 2024-02-25 13:28:34.972 2024-02-25 13:28:34.972 2100 FEE 438065 21374 6062571 2024-02-25 13:28:34.972 2024-02-25 13:28:34.972 18900 TIP 438065 21369 6062584 2024-02-25 13:31:36.603 2024-02-25 13:31:36.603 2100 FEE 438118 18378 6062585 2024-02-25 13:31:36.603 2024-02-25 13:31:36.603 18900 TIP 438118 4391 6062640 2024-02-25 13:44:19.664 2024-02-25 13:44:19.664 1000 FEE 438248 20433 6062674 2024-02-25 13:50:56.404 2024-02-25 13:50:56.404 125000 FEE 438256 675 6062700 2024-02-25 13:52:57.755 2024-02-25 13:52:57.755 3100 FEE 438235 16270 6061862 2024-02-25 11:49:39.389 2024-02-25 11:49:39.389 9000 TIP 433460 3990 6061884 2024-02-25 11:52:07.494 2024-02-25 11:52:07.494 2100 FEE 438147 16667 6061885 2024-02-25 11:52:07.494 2024-02-25 11:52:07.494 18900 TIP 438147 8284 6061890 2024-02-25 11:52:11.909 2024-02-25 11:52:11.909 4000 FEE 438135 18380 6061891 2024-02-25 11:52:11.909 2024-02-25 11:52:11.909 36000 TIP 438135 12959 6061916 2024-02-25 11:56:10.929 2024-02-25 11:56:10.929 1000 FEE 438154 18608 6061919 2024-02-25 11:57:30.932 2024-02-25 11:57:30.932 2100 FEE 438056 19494 6061920 2024-02-25 11:57:30.932 2024-02-25 11:57:30.932 18900 TIP 438056 19506 6061963 2024-02-25 12:02:26.079 2024-02-25 12:02:26.079 1000 FEE 438161 16432 6061992 2024-02-25 12:07:40.47 2024-02-25 12:07:40.47 1000 FEE 438156 686 6061993 2024-02-25 12:07:40.47 2024-02-25 12:07:40.47 9000 TIP 438156 13042 6062026 2024-02-25 12:12:14.621 2024-02-25 12:12:14.621 0 FEE 438168 2724 6062027 2024-02-25 12:12:45.176 2024-02-25 12:12:45.176 1000 FEE 438171 20825 6062034 2024-02-25 12:13:50.625 2024-02-25 12:13:50.625 4200 FEE 437966 925 6062035 2024-02-25 12:13:50.625 2024-02-25 12:13:50.625 37800 TIP 437966 617 6062072 2024-02-25 12:20:16.846 2024-02-25 12:20:16.846 4200 FEE 437833 6749 6062073 2024-02-25 12:20:16.846 2024-02-25 12:20:16.846 37800 TIP 437833 21466 6062098 2024-02-25 12:22:24.501 2024-02-25 12:22:24.501 2100 FEE 438088 1720 6062099 2024-02-25 12:22:24.501 2024-02-25 12:22:24.501 18900 TIP 438088 2000 6062104 2024-02-25 12:22:33.148 2024-02-25 12:22:33.148 0 FEE 438178 1012 6062109 2024-02-25 12:24:17.692 2024-02-25 12:24:17.692 1000 FEE 438179 2016 6062113 2024-02-25 12:24:47.691 2024-02-25 12:24:47.691 200 FEE 438088 10490 6062114 2024-02-25 12:24:47.691 2024-02-25 12:24:47.691 1800 TIP 438088 717 6062115 2024-02-25 12:24:47.975 2024-02-25 12:24:47.975 200 FEE 438088 14990 6062116 2024-02-25 12:24:47.975 2024-02-25 12:24:47.975 1800 TIP 438088 20998 6062181 2024-02-25 12:33:21.105 2024-02-25 12:33:21.105 5000 FEE 437977 9334 6062182 2024-02-25 12:33:21.105 2024-02-25 12:33:21.105 45000 TIP 437977 13406 6062198 2024-02-25 12:35:26.781 2024-02-25 12:35:26.781 5000 FEE 438092 16276 6062199 2024-02-25 12:35:26.781 2024-02-25 12:35:26.781 45000 TIP 438092 10393 6062204 2024-02-25 12:36:30.121 2024-02-25 12:36:30.121 100 FEE 437276 20272 6062205 2024-02-25 12:36:30.121 2024-02-25 12:36:30.121 900 TIP 437276 18387 6062208 2024-02-25 12:36:31.008 2024-02-25 12:36:31.008 100 FEE 437276 14213 6062209 2024-02-25 12:36:31.008 2024-02-25 12:36:31.008 900 TIP 437276 15697 6062241 2024-02-25 12:45:11.223 2024-02-25 12:45:11.223 1000 FEE 437720 21342 6062242 2024-02-25 12:45:11.223 2024-02-25 12:45:11.223 9000 TIP 437720 21369 6062262 2024-02-25 12:46:06.759 2024-02-25 12:46:06.759 2100 FEE 438094 9351 6062263 2024-02-25 12:46:06.759 2024-02-25 12:46:06.759 18900 TIP 438094 15115 6062303 2024-02-25 12:48:17.987 2024-02-25 12:48:17.987 100000 FEE 438193 1047 6062313 2024-02-25 12:49:21.5 2024-02-25 12:49:21.5 2100 FEE 438044 1429 6062314 2024-02-25 12:49:21.5 2024-02-25 12:49:21.5 18900 TIP 438044 6030 6062325 2024-02-25 12:50:43.198 2024-02-25 12:50:43.198 1000 FEE 438196 21514 6062350 2024-02-25 12:55:49.746 2024-02-25 12:55:49.746 1000 FEE 438200 805 6122949 2024-03-01 09:55:57.901 2024-03-01 09:55:57.901 78900 FEE 436195 6058 6122950 2024-03-01 09:55:57.901 2024-03-01 09:55:57.901 710100 TIP 436195 18930 6122977 2024-03-01 10:03:09.344 2024-03-01 10:03:09.344 5700 FEE 444657 3518 6122978 2024-03-01 10:03:09.344 2024-03-01 10:03:09.344 51300 TIP 444657 11527 6122979 2024-03-01 10:03:41.384 2024-03-01 10:03:41.384 5700 FEE 444586 9378 6122980 2024-03-01 10:03:41.384 2024-03-01 10:03:41.384 51300 TIP 444586 19500 6122984 2024-03-01 10:04:15.438 2024-03-01 10:04:15.438 5700 FEE 444581 21022 6122985 2024-03-01 10:04:15.438 2024-03-01 10:04:15.438 51300 TIP 444581 9916 6122989 2024-03-01 10:04:50.677 2024-03-01 10:04:50.677 100 FEE 444522 3377 6122990 2024-03-01 10:04:50.677 2024-03-01 10:04:50.677 900 TIP 444522 5129 6122999 2024-03-01 10:04:52.935 2024-03-01 10:04:52.935 100 FEE 444522 10393 6123000 2024-03-01 10:04:52.935 2024-03-01 10:04:52.935 900 TIP 444522 17064 6123008 2024-03-01 10:06:52.219 2024-03-01 10:06:52.219 100 FEE 444700 16329 6123009 2024-03-01 10:06:52.219 2024-03-01 10:06:52.219 900 TIP 444700 14489 6123020 2024-03-01 10:07:14.379 2024-03-01 10:07:14.379 1000 FEE 444708 9552 6123028 2024-03-01 10:07:18.436 2024-03-01 10:07:18.436 100 FEE 444700 1567 6123029 2024-03-01 10:07:18.436 2024-03-01 10:07:18.436 900 TIP 444700 17331 6123034 2024-03-01 10:08:30.427 2024-03-01 10:08:30.427 5700 FEE 444698 7869 6123035 2024-03-01 10:08:30.427 2024-03-01 10:08:30.427 51300 TIP 444698 18690 6123037 2024-03-01 10:08:53.143 2024-03-01 10:08:53.143 5700 FEE 444695 15075 6123038 2024-03-01 10:08:53.143 2024-03-01 10:08:53.143 51300 TIP 444695 20781 6123052 2024-03-01 10:11:36.267 2024-03-01 10:11:36.267 1000 FEE 444712 8074 6123055 2024-03-01 10:11:47.656 2024-03-01 10:11:47.656 2100 FEE 444696 19329 6123056 2024-03-01 10:11:47.656 2024-03-01 10:11:47.656 18900 TIP 444696 18269 6123057 2024-03-01 10:11:53.275 2024-03-01 10:11:53.275 2100 FEE 444695 9078 6123058 2024-03-01 10:11:53.275 2024-03-01 10:11:53.275 18900 TIP 444695 14404 6123127 2024-03-01 10:21:29.193 2024-03-01 10:21:29.193 1000 FEE 443430 10728 6123128 2024-03-01 10:21:29.193 2024-03-01 10:21:29.193 9000 TIP 443430 6327 6123129 2024-03-01 10:21:30.222 2024-03-01 10:21:30.222 100 FEE 444695 11829 6123130 2024-03-01 10:21:30.222 2024-03-01 10:21:30.222 900 TIP 444695 18897 6123200 2024-03-01 10:24:56.017 2024-03-01 10:24:56.017 200 FEE 444718 18321 6123201 2024-03-01 10:24:56.017 2024-03-01 10:24:56.017 1800 TIP 444718 2543 6123255 2024-03-01 10:28:12.352 2024-03-01 10:28:12.352 1000 FEE 444365 782 6123256 2024-03-01 10:28:12.352 2024-03-01 10:28:12.352 9000 TIP 444365 4083 6123276 2024-03-01 10:29:19.007 2024-03-01 10:29:19.007 1000 FEE 444230 21334 6123277 2024-03-01 10:29:19.007 2024-03-01 10:29:19.007 9000 TIP 444230 19378 6123278 2024-03-01 10:29:19.862 2024-03-01 10:29:19.862 1000 FEE 444731 929 6123279 2024-03-01 10:29:42.6 2024-03-01 10:29:42.6 0 FEE 444731 17714 6061874 2024-02-25 11:50:04.051 2024-02-25 11:50:04.051 1000 STREAM 141924 19980 6122973 2024-03-01 10:01:05.189 2024-03-01 10:01:05.189 1000 STREAM 141924 1236 6123039 2024-03-01 10:09:05.39 2024-03-01 10:09:05.39 1000 STREAM 141924 21575 6123061 2024-03-01 10:12:05.388 2024-03-01 10:12:05.388 1000 STREAM 141924 763 6123079 2024-03-01 10:15:05.403 2024-03-01 10:15:05.403 1000 STREAM 141924 19732 6123254 2024-03-01 10:28:05.426 2024-03-01 10:28:05.426 1000 STREAM 141924 13398 6123275 2024-03-01 10:29:05.434 2024-03-01 10:29:05.434 1000 STREAM 141924 2204 6123536 2024-03-01 10:58:06.081 2024-03-01 10:58:06.081 1000 STREAM 141924 19292 6061990 2024-02-25 12:07:39.769 2024-02-25 12:07:39.769 1000 FEE 438156 2010 6061991 2024-02-25 12:07:39.769 2024-02-25 12:07:39.769 9000 TIP 438156 2774 6062004 2024-02-25 12:09:56.242 2024-02-25 12:09:56.242 0 FEE 438167 11819 6062007 2024-02-25 12:09:58.744 2024-02-25 12:09:58.744 1000 FEE 438148 649 6062008 2024-02-25 12:09:58.744 2024-02-25 12:09:58.744 9000 TIP 438148 2151 6062025 2024-02-25 12:12:03.522 2024-02-25 12:12:03.522 0 FEE 438168 21022 6062038 2024-02-25 12:13:57.703 2024-02-25 12:13:57.703 100 FEE 438145 18896 6062039 2024-02-25 12:13:57.703 2024-02-25 12:13:57.703 900 TIP 438145 21164 6062052 2024-02-25 12:18:18.549 2024-02-25 12:18:18.549 1000 FEE 438173 12368 6062090 2024-02-25 12:22:19.369 2024-02-25 12:22:19.369 11100 FEE 438175 19320 6062091 2024-02-25 12:22:19.369 2024-02-25 12:22:19.369 99900 TIP 438175 18745 6062100 2024-02-25 12:22:24.694 2024-02-25 12:22:24.694 2100 FEE 438088 2347 6062101 2024-02-25 12:22:24.694 2024-02-25 12:22:24.694 18900 TIP 438088 20106 6062122 2024-02-25 12:25:04.944 2024-02-25 12:25:04.944 200 FEE 438088 20514 6062123 2024-02-25 12:25:04.944 2024-02-25 12:25:04.944 1800 TIP 438088 20436 6062139 2024-02-25 12:26:30.692 2024-02-25 12:26:30.692 2100 FEE 438088 2342 6062140 2024-02-25 12:26:30.692 2024-02-25 12:26:30.692 18900 TIP 438088 19259 6062188 2024-02-25 12:34:06.807 2024-02-25 12:34:06.807 5000 FEE 437936 19511 6062189 2024-02-25 12:34:06.807 2024-02-25 12:34:06.807 45000 TIP 437936 3353 6062210 2024-02-25 12:36:31.35 2024-02-25 12:36:31.35 100 FEE 437276 2681 6062211 2024-02-25 12:36:31.35 2024-02-25 12:36:31.35 900 TIP 437276 704 6062220 2024-02-25 12:37:24.608 2024-02-25 12:37:24.608 100 FEE 438184 13782 6062221 2024-02-25 12:37:24.608 2024-02-25 12:37:24.608 900 TIP 438184 5017 6062234 2024-02-25 12:43:53.447 2024-02-25 12:43:53.447 10000 FEE 438087 6149 6062235 2024-02-25 12:43:53.447 2024-02-25 12:43:53.447 90000 TIP 438087 9336 6062248 2024-02-25 12:45:32.652 2024-02-25 12:45:32.652 2100 FEE 438189 14503 6062249 2024-02-25 12:45:32.652 2024-02-25 12:45:32.652 18900 TIP 438189 20969 6062252 2024-02-25 12:45:42.44 2024-02-25 12:45:42.44 2100 FEE 438188 18448 6062253 2024-02-25 12:45:42.44 2024-02-25 12:45:42.44 18900 TIP 438188 7553 6062270 2024-02-25 12:46:24.465 2024-02-25 12:46:24.465 2100 FEE 438065 12976 6062271 2024-02-25 12:46:24.465 2024-02-25 12:46:24.465 18900 TIP 438065 1489 6062274 2024-02-25 12:46:43.281 2024-02-25 12:46:43.281 2100 FEE 438109 1717 6062275 2024-02-25 12:46:43.281 2024-02-25 12:46:43.281 18900 TIP 438109 20190 6062291 2024-02-25 12:47:35.884 2024-02-25 12:47:35.884 5000 FEE 437966 15052 6062292 2024-02-25 12:47:35.884 2024-02-25 12:47:35.884 45000 TIP 437966 8570 6062332 2024-02-25 12:51:13.603 2024-02-25 12:51:13.603 5000 FEE 438135 12188 6062333 2024-02-25 12:51:13.603 2024-02-25 12:51:13.603 45000 TIP 438135 1549 6062355 2024-02-25 12:57:03.941 2024-02-25 12:57:03.941 1000 FEE 438201 14465 6062358 2024-02-25 12:57:04.794 2024-02-25 12:57:04.794 1100 FEE 437720 10342 6062359 2024-02-25 12:57:04.794 2024-02-25 12:57:04.794 9900 TIP 437720 8176 6062404 2024-02-25 13:00:30.13 2024-02-25 13:00:30.13 1000 FEE 438206 21494 6062415 2024-02-25 13:03:45.98 2024-02-25 13:03:45.98 1000 FEE 438208 18842 6062416 2024-02-25 13:03:53.689 2024-02-25 13:03:53.689 10000 FEE 438209 738 6062421 2024-02-25 13:04:06.345 2024-02-25 13:04:06.345 4000 FEE 438209 5775 6062422 2024-02-25 13:04:06.345 2024-02-25 13:04:06.345 36000 TIP 438209 10013 6062455 2024-02-25 13:10:59.5 2024-02-25 13:10:59.5 1000 FEE 438212 6594 6062471 2024-02-25 13:13:41.465 2024-02-25 13:13:41.465 0 FEE 438212 4395 6062511 2024-02-25 13:18:55.733 2024-02-25 13:18:55.733 1000 POLL 438202 1712 6062515 2024-02-25 13:19:17.116 2024-02-25 13:19:17.116 30000 FEE 438198 661 6062516 2024-02-25 13:19:17.116 2024-02-25 13:19:17.116 270000 TIP 438198 10393 6062524 2024-02-25 13:21:05.339 2024-02-25 13:21:05.339 100 FEE 438149 2528 6062525 2024-02-25 13:21:05.339 2024-02-25 13:21:05.339 900 TIP 438149 1769 6062552 2024-02-25 13:26:11.374 2024-02-25 13:26:11.374 10000 FEE 438216 1480 6062553 2024-02-25 13:26:11.374 2024-02-25 13:26:11.374 90000 TIP 438216 18265 6062565 2024-02-25 13:27:36.969 2024-02-25 13:27:36.969 0 FEE 438227 628 6062569 2024-02-25 13:28:11.404 2024-02-25 13:28:11.404 0 FEE 438227 16929 6062587 2024-02-25 13:32:33.369 2024-02-25 13:32:33.369 1000 FEE 438238 2101 6062596 2024-02-25 13:33:07.329 2024-02-25 13:33:07.329 2100 FEE 438229 20757 6062597 2024-02-25 13:33:07.329 2024-02-25 13:33:07.329 18900 TIP 438229 8569 6062641 2024-02-25 13:44:33.788 2024-02-25 13:44:33.788 2100 FEE 438202 14278 6062642 2024-02-25 13:44:33.788 2024-02-25 13:44:33.788 18900 TIP 438202 16485 6062644 2024-02-25 13:45:06.908 2024-02-25 13:45:06.908 1000 POLL 438202 20990 6062649 2024-02-25 13:46:57.81 2024-02-25 13:46:57.81 3100 FEE 438218 10668 6062650 2024-02-25 13:46:57.81 2024-02-25 13:46:57.81 27900 TIP 438218 16350 6062669 2024-02-25 13:50:46.489 2024-02-25 13:50:46.489 2100 FEE 433502 1802 6062670 2024-02-25 13:50:46.489 2024-02-25 13:50:46.489 18900 TIP 433502 21067 6062671 2024-02-25 13:50:49.17 2024-02-25 13:50:49.17 2100 FEE 430953 19094 6062672 2024-02-25 13:50:49.17 2024-02-25 13:50:49.17 18900 TIP 430953 18473 6062707 2024-02-25 13:54:22.607 2024-02-25 13:54:22.607 1000 FEE 438258 16571 6062716 2024-02-25 13:54:40.618 2024-02-25 13:54:40.618 2100 FEE 438186 7119 6062717 2024-02-25 13:54:40.618 2024-02-25 13:54:40.618 18900 TIP 438186 16485 6062722 2024-02-25 13:54:58.778 2024-02-25 13:54:58.778 97000 FEE 438259 763 6062747 2024-02-25 13:56:55.453 2024-02-25 13:56:55.453 1000 FEE 438264 5377 6062754 2024-02-25 13:57:32.297 2024-02-25 13:57:32.297 1000 FEE 438266 1784 6062166 2024-02-25 12:32:02.406 2024-02-25 12:32:02.406 1000 STREAM 141924 20450 6062179 2024-02-25 12:33:02.415 2024-02-25 12:33:02.415 1000 STREAM 141924 11192 6062195 2024-02-25 12:35:02.448 2024-02-25 12:35:02.448 1000 STREAM 141924 20623 6062392 2024-02-25 12:59:02.825 2024-02-25 12:59:02.825 1000 STREAM 141924 9365 6062413 2024-02-25 13:02:02.85 2024-02-25 13:02:02.85 1000 STREAM 141924 8074 6062414 2024-02-25 13:03:02.865 2024-02-25 13:03:02.865 1000 STREAM 141924 1596 6123041 2024-03-01 10:09:52.727 2024-03-01 10:09:52.727 18900 TIP 444707 1712 6123062 2024-03-01 10:12:11.238 2024-03-01 10:12:11.238 2100 FEE 444687 20183 6123063 2024-03-01 10:12:11.238 2024-03-01 10:12:11.238 18900 TIP 444687 19854 6123074 2024-03-01 10:13:54.295 2024-03-01 10:13:54.295 1100 FEE 444495 19581 6123075 2024-03-01 10:13:54.295 2024-03-01 10:13:54.295 9900 TIP 444495 14370 6123077 2024-03-01 10:14:28.277 2024-03-01 10:14:28.277 1000 FEE 444710 19660 6123078 2024-03-01 10:14:28.277 2024-03-01 10:14:28.277 9000 TIP 444710 2709 6123093 2024-03-01 10:17:38.307 2024-03-01 10:17:38.307 1000 FEE 444719 6526 6123116 2024-03-01 10:20:48.576 2024-03-01 10:20:48.576 100 FEE 444720 6229 6123117 2024-03-01 10:20:48.576 2024-03-01 10:20:48.576 900 TIP 444720 11220 6123147 2024-03-01 10:22:40.033 2024-03-01 10:22:40.033 100 FEE 444700 3717 6123148 2024-03-01 10:22:40.033 2024-03-01 10:22:40.033 900 TIP 444700 7558 6123150 2024-03-01 10:23:14.368 2024-03-01 10:23:14.368 100 FEE 444716 3656 6123151 2024-03-01 10:23:14.368 2024-03-01 10:23:14.368 900 TIP 444716 16440 6123179 2024-03-01 10:24:31.414 2024-03-01 10:24:31.414 500 FEE 444602 9378 6123180 2024-03-01 10:24:31.414 2024-03-01 10:24:31.414 4500 TIP 444602 3979 6123183 2024-03-01 10:24:37.395 2024-03-01 10:24:37.395 1000 FEE 444168 6471 6123184 2024-03-01 10:24:37.395 2024-03-01 10:24:37.395 9000 TIP 444168 17184 6123202 2024-03-01 10:24:56.405 2024-03-01 10:24:56.405 100 FEE 444718 6515 6123203 2024-03-01 10:24:56.405 2024-03-01 10:24:56.405 900 TIP 444718 11621 6123215 2024-03-01 10:25:52.141 2024-03-01 10:25:52.141 0 FEE 444729 20036 6123225 2024-03-01 10:26:35.432 2024-03-01 10:26:35.432 1000 FEE 443723 2444 6123226 2024-03-01 10:26:35.432 2024-03-01 10:26:35.432 9000 TIP 443723 20979 6123246 2024-03-01 10:27:52.854 2024-03-01 10:27:52.854 100 FEE 444697 19398 6123247 2024-03-01 10:27:52.854 2024-03-01 10:27:52.854 900 TIP 444697 4415 6123248 2024-03-01 10:27:53.995 2024-03-01 10:27:53.995 1000 FEE 444584 15336 6123249 2024-03-01 10:27:53.995 2024-03-01 10:27:53.995 9000 TIP 444584 19151 6123265 2024-03-01 10:28:14.991 2024-03-01 10:28:14.991 1000 FEE 444440 11073 6123266 2024-03-01 10:28:14.991 2024-03-01 10:28:14.991 9000 TIP 444440 19796 6123280 2024-03-01 10:29:44.829 2024-03-01 10:29:44.829 1000 FEE 444168 16633 6123281 2024-03-01 10:29:44.829 2024-03-01 10:29:44.829 9000 TIP 444168 1490 6123282 2024-03-01 10:29:46.359 2024-03-01 10:29:46.359 1000 FEE 444475 2342 6123283 2024-03-01 10:29:46.359 2024-03-01 10:29:46.359 9000 TIP 444475 6384 6123286 2024-03-01 10:29:52.659 2024-03-01 10:29:52.659 1000 FEE 444208 19929 6123287 2024-03-01 10:29:52.659 2024-03-01 10:29:52.659 9000 TIP 444208 15526 6123294 2024-03-01 10:29:57.953 2024-03-01 10:29:57.953 1000 FEE 444323 8448 6123295 2024-03-01 10:29:57.953 2024-03-01 10:29:57.953 9000 TIP 444323 16670 6123337 2024-03-01 10:30:33.507 2024-03-01 10:30:33.507 1000 FEE 444698 11670 6123338 2024-03-01 10:30:33.507 2024-03-01 10:30:33.507 9000 TIP 444698 19633 6123364 2024-03-01 10:31:14.936 2024-03-01 10:31:14.936 1000 FEE 444689 15556 6123365 2024-03-01 10:31:14.936 2024-03-01 10:31:14.936 9000 TIP 444689 14731 6123366 2024-03-01 10:31:15.105 2024-03-01 10:31:15.105 1000 FEE 444689 18533 6123367 2024-03-01 10:31:15.105 2024-03-01 10:31:15.105 9000 TIP 444689 16848 6123374 2024-03-01 10:31:15.772 2024-03-01 10:31:15.772 1000 FEE 444689 15491 6123375 2024-03-01 10:31:15.772 2024-03-01 10:31:15.772 9000 TIP 444689 20327 6123417 2024-03-01 10:35:58.766 2024-03-01 10:35:58.766 50000 FEE 444238 18452 6123418 2024-03-01 10:35:58.766 2024-03-01 10:35:58.766 450000 TIP 444238 21463 6123422 2024-03-01 10:36:32.148 2024-03-01 10:36:32.148 1000 FEE 444740 20291 6123431 2024-03-01 10:38:44.154 2024-03-01 10:38:44.154 2100 FEE 444730 654 6123432 2024-03-01 10:38:44.154 2024-03-01 10:38:44.154 18900 TIP 444730 697 6123433 2024-03-01 10:38:48.845 2024-03-01 10:38:48.845 2100 FEE 444720 9816 6123434 2024-03-01 10:38:48.845 2024-03-01 10:38:48.845 18900 TIP 444720 632 6123452 2024-03-01 10:43:11.026 2024-03-01 10:43:11.026 6900 FEE 444741 19378 6123453 2024-03-01 10:43:11.026 2024-03-01 10:43:11.026 62100 TIP 444741 9350 6123460 2024-03-01 10:45:02.394 2024-03-01 10:45:02.394 200 FEE 444746 4128 6123461 2024-03-01 10:45:02.394 2024-03-01 10:45:02.394 1800 TIP 444746 19459 6123469 2024-03-01 10:46:17.005 2024-03-01 10:46:17.005 1000 FEE 444718 897 6123470 2024-03-01 10:46:17.005 2024-03-01 10:46:17.005 9000 TIP 444718 673 6123485 2024-03-01 10:50:22.394 2024-03-01 10:50:22.394 1000 FEE 444756 2111 6123507 2024-03-01 10:52:52.487 2024-03-01 10:52:52.487 0 FEE 444757 19581 6123513 2024-03-01 10:53:37.441 2024-03-01 10:53:37.441 1000 FEE 444761 681 6123530 2024-03-01 10:56:49.233 2024-03-01 10:56:49.233 1000 FEE 444767 5160 6123549 2024-03-01 10:58:36.343 2024-03-01 10:58:36.343 1000 FEE 444768 1512 6123599 2024-03-01 11:03:16.279 2024-03-01 11:03:16.279 1000 FEE 444782 18731 6123621 2024-03-01 11:04:28.245 2024-03-01 11:04:28.245 100 FEE 444725 19839 6123622 2024-03-01 11:04:28.245 2024-03-01 11:04:28.245 900 TIP 444725 7869 6123625 2024-03-01 11:04:57.897 2024-03-01 11:04:57.897 1000 FEE 444786 7869 6123631 2024-03-01 11:05:33.286 2024-03-01 11:05:33.286 0 FEE 444788 18556 6123681 2024-03-01 11:09:35.258 2024-03-01 11:09:35.258 1000 FEE 444597 9342 6123682 2024-03-01 11:09:35.258 2024-03-01 11:09:35.258 9000 TIP 444597 2402 6123698 2024-03-01 11:11:34.06 2024-03-01 11:11:34.06 7600 FEE 444796 1493 6123699 2024-03-01 11:11:34.06 2024-03-01 11:11:34.06 68400 TIP 444796 19976 6123711 2024-03-01 11:12:52.885 2024-03-01 11:12:52.885 1000 FEE 444703 18557 6123712 2024-03-01 11:12:52.885 2024-03-01 11:12:52.885 9000 TIP 444703 2513 6123723 2024-03-01 11:13:04.428 2024-03-01 11:13:04.428 2100 FEE 444789 20377 6123724 2024-03-01 11:13:04.428 2024-03-01 11:13:04.428 18900 TIP 444789 20370 6123728 2024-03-01 11:13:19.64 2024-03-01 11:13:19.64 10000 FEE 444746 10586 6123729 2024-03-01 11:13:19.64 2024-03-01 11:13:19.64 90000 TIP 444746 17798 6123730 2024-03-01 11:13:19.729 2024-03-01 11:13:19.729 1000 FEE 444771 1845 6123731 2024-03-01 11:13:19.729 2024-03-01 11:13:19.729 9000 TIP 444771 20603 6123751 2024-03-01 11:14:16.649 2024-03-01 11:14:16.649 0 FEE 444791 21040 6123777 2024-03-01 11:18:05.61 2024-03-01 11:18:05.61 0 FEE 444814 1310 6123783 2024-03-01 11:19:06.853 2024-03-01 11:19:06.853 2100 FEE 444814 2614 6123784 2024-03-01 11:19:06.853 2024-03-01 11:19:06.853 18900 TIP 444814 2338 6123786 2024-03-01 11:19:48.476 2024-03-01 11:19:48.476 0 FEE 444801 19842 6123810 2024-03-01 11:25:01.316 2024-03-01 11:25:01.316 10000 FEE 444826 9275 6123831 2024-03-01 11:27:04.146 2024-03-01 11:27:04.146 3300 FEE 444794 989 6123832 2024-03-01 11:27:04.146 2024-03-01 11:27:04.146 29700 TIP 444794 17331 6123837 2024-03-01 11:27:44.645 2024-03-01 11:27:44.645 7600 FEE 444826 18528 6123838 2024-03-01 11:27:44.645 2024-03-01 11:27:44.645 68400 TIP 444826 5557 6123852 2024-03-01 11:29:11.108 2024-03-01 11:29:11.108 1000 FEE 444838 699 6123869 2024-03-01 11:30:12.094 2024-03-01 11:30:12.094 27900 FEE 260178 20560 6123870 2024-03-01 11:30:12.094 2024-03-01 11:30:12.094 251100 TIP 260178 20156 6123874 2024-03-01 11:31:08.161 2024-03-01 11:31:08.161 25000 FEE 444755 18076 6062218 2024-02-25 12:37:02.904 2024-02-25 12:37:02.904 1000 STREAM 141924 21357 6062230 2024-02-25 12:40:02.941 2024-02-25 12:40:02.941 1000 STREAM 141924 8400 6062232 2024-02-25 12:42:02.948 2024-02-25 12:42:02.948 1000 STREAM 141924 5597 6062236 2024-02-25 12:44:02.968 2024-02-25 12:44:02.968 1000 STREAM 141924 19826 6062239 2024-02-25 12:45:02.982 2024-02-25 12:45:02.982 1000 STREAM 141924 666 6062261 2024-02-25 12:46:03.01 2024-02-25 12:46:03.01 1000 STREAM 141924 17817 6062279 2024-02-25 12:47:03.002 2024-02-25 12:47:03.002 1000 STREAM 141924 15243 6123083 2024-03-01 10:15:30.825 2024-03-01 10:15:30.825 69000 FEE 444717 1577 6123099 2024-03-01 10:18:18.183 2024-03-01 10:18:18.183 2100 FEE 444706 18877 6123100 2024-03-01 10:18:18.183 2024-03-01 10:18:18.183 18900 TIP 444706 798 6123106 2024-03-01 10:20:07.557 2024-03-01 10:20:07.557 2100 FEE 444713 18533 6123107 2024-03-01 10:20:07.557 2024-03-01 10:20:07.557 18900 TIP 444713 7418 6123108 2024-03-01 10:20:13.753 2024-03-01 10:20:13.753 10000 FEE 444173 19581 6123109 2024-03-01 10:20:13.753 2024-03-01 10:20:13.753 90000 TIP 444173 9816 6123115 2024-03-01 10:20:46.225 2024-03-01 10:20:46.225 1000 FEE 444723 738 6123123 2024-03-01 10:21:27.191 2024-03-01 10:21:27.191 1000 FEE 443274 5961 6123124 2024-03-01 10:21:27.191 2024-03-01 10:21:27.191 9000 TIP 443274 20018 6123131 2024-03-01 10:21:39.738 2024-03-01 10:21:39.738 1000 FEE 444724 15100 6123132 2024-03-01 10:21:52.061 2024-03-01 10:21:52.061 0 FEE 444722 16667 6123135 2024-03-01 10:22:01.075 2024-03-01 10:22:01.075 100 FEE 444718 21556 6123136 2024-03-01 10:22:01.075 2024-03-01 10:22:01.075 900 TIP 444718 21361 6123160 2024-03-01 10:23:23.242 2024-03-01 10:23:23.242 10000 FEE 444726 15045 6123171 2024-03-01 10:24:26.829 2024-03-01 10:24:26.829 100 FEE 444723 7185 6123172 2024-03-01 10:24:26.829 2024-03-01 10:24:26.829 900 TIP 444723 19943 6123177 2024-03-01 10:24:28.445 2024-03-01 10:24:28.445 100 FEE 444723 20674 6123178 2024-03-01 10:24:28.445 2024-03-01 10:24:28.445 900 TIP 444723 18473 6123193 2024-03-01 10:24:38.543 2024-03-01 10:24:38.543 1000 FEE 444168 9367 6123194 2024-03-01 10:24:38.543 2024-03-01 10:24:38.543 9000 TIP 444168 7119 6123197 2024-03-01 10:24:38.944 2024-03-01 10:24:38.944 1000 FEE 444168 16816 6123198 2024-03-01 10:24:38.944 2024-03-01 10:24:38.944 9000 TIP 444168 1105 6123204 2024-03-01 10:24:56.879 2024-03-01 10:24:56.879 100 FEE 444718 20153 6123205 2024-03-01 10:24:56.879 2024-03-01 10:24:56.879 900 TIP 444718 20563 6123219 2024-03-01 10:26:32.791 2024-03-01 10:26:32.791 1000 FEE 443611 19930 6123220 2024-03-01 10:26:32.791 2024-03-01 10:26:32.791 9000 TIP 443611 630 6123234 2024-03-01 10:27:22.987 2024-03-01 10:27:22.987 1000 FEE 443712 19500 6123235 2024-03-01 10:27:22.987 2024-03-01 10:27:22.987 9000 TIP 443712 18690 6123259 2024-03-01 10:28:12.799 2024-03-01 10:28:12.799 1000 FEE 444365 16442 6123260 2024-03-01 10:28:12.799 2024-03-01 10:28:12.799 9000 TIP 444365 20775 6123267 2024-03-01 10:28:15.722 2024-03-01 10:28:15.722 1000 FEE 444415 18357 6123268 2024-03-01 10:28:15.722 2024-03-01 10:28:15.722 9000 TIP 444415 19773 6123309 2024-03-01 10:30:10.432 2024-03-01 10:30:10.432 1000 FEE 444247 636 6123310 2024-03-01 10:30:10.432 2024-03-01 10:30:10.432 9000 TIP 444247 794 6123324 2024-03-01 10:30:28.626 2024-03-01 10:30:28.626 1000 FEE 444715 15049 6123325 2024-03-01 10:30:28.626 2024-03-01 10:30:28.626 9000 TIP 444715 15594 6123327 2024-03-01 10:30:30.347 2024-03-01 10:30:30.347 1000 FEE 444714 9366 6123328 2024-03-01 10:30:30.347 2024-03-01 10:30:30.347 9000 TIP 444714 15226 6123339 2024-03-01 10:30:34.236 2024-03-01 10:30:34.236 1000 FEE 444696 4487 6123340 2024-03-01 10:30:34.236 2024-03-01 10:30:34.236 9000 TIP 444696 20327 6123376 2024-03-01 10:31:15.966 2024-03-01 10:31:15.966 1000 FEE 444689 20646 6123377 2024-03-01 10:31:15.966 2024-03-01 10:31:15.966 9000 TIP 444689 18219 6123383 2024-03-01 10:32:07.443 2024-03-01 10:32:07.443 1000 FEE 444734 21145 6062222 2024-02-25 12:38:02.92 2024-02-25 12:38:02.92 1000 STREAM 141924 3304 6062229 2024-02-25 12:39:02.922 2024-02-25 12:39:02.922 1000 STREAM 141924 21072 6062231 2024-02-25 12:41:02.944 2024-02-25 12:41:02.944 1000 STREAM 141924 18663 6062233 2024-02-25 12:43:02.965 2024-02-25 12:43:02.965 1000 STREAM 141924 15160 6062301 2024-02-25 12:48:03.026 2024-02-25 12:48:03.026 1000 STREAM 141924 21238 6062429 2024-02-25 13:05:03.134 2024-02-25 13:05:03.134 1000 STREAM 141924 8400 6062432 2024-02-25 13:06:03.137 2024-02-25 13:06:03.137 1000 STREAM 141924 19537 6062435 2024-02-25 13:07:03.15 2024-02-25 13:07:03.15 1000 STREAM 141924 13921 6062438 2024-02-25 13:08:03.186 2024-02-25 13:08:03.186 1000 STREAM 141924 16341 6062454 2024-02-25 13:10:03.185 2024-02-25 13:10:03.185 1000 STREAM 141924 1769 6062456 2024-02-25 13:11:03.208 2024-02-25 13:11:03.208 1000 STREAM 141924 18736 6062466 2024-02-25 13:13:03.226 2024-02-25 13:13:03.226 1000 STREAM 141924 10283 6123134 2024-03-01 10:21:58.509 2024-03-01 10:21:58.509 900 TIP 444720 17713 6123144 2024-03-01 10:22:27.271 2024-03-01 10:22:27.271 100 FEE 444707 4259 6123145 2024-03-01 10:22:27.271 2024-03-01 10:22:27.271 900 TIP 444707 1030 6123146 2024-03-01 10:22:36.714 2024-03-01 10:22:36.714 210000 FEE 444725 12959 6123195 2024-03-01 10:24:38.75 2024-03-01 10:24:38.75 1000 FEE 444168 1454 6123196 2024-03-01 10:24:38.75 2024-03-01 10:24:38.75 9000 TIP 444168 21242 6123227 2024-03-01 10:26:36.06 2024-03-01 10:26:36.06 1000 FEE 443656 4323 6123228 2024-03-01 10:26:36.06 2024-03-01 10:26:36.06 9000 TIP 443656 21249 6123236 2024-03-01 10:27:46.089 2024-03-01 10:27:46.089 1000 FEE 443799 18114 6123237 2024-03-01 10:27:46.089 2024-03-01 10:27:46.089 9000 TIP 443799 13854 6123250 2024-03-01 10:27:58.515 2024-03-01 10:27:58.515 1000 FEE 444533 3409 6123251 2024-03-01 10:27:58.515 2024-03-01 10:27:58.515 9000 TIP 444533 998 6123261 2024-03-01 10:28:13.69 2024-03-01 10:28:13.69 1000 FEE 444486 1310 6123262 2024-03-01 10:28:13.69 2024-03-01 10:28:13.69 9000 TIP 444486 15282 6123271 2024-03-01 10:28:17.715 2024-03-01 10:28:17.715 100 FEE 444727 11263 6123272 2024-03-01 10:28:17.715 2024-03-01 10:28:17.715 900 TIP 444727 18177 6123284 2024-03-01 10:29:47.296 2024-03-01 10:29:47.296 1000 FEE 444646 11999 6123285 2024-03-01 10:29:47.296 2024-03-01 10:29:47.296 9000 TIP 444646 21157 6123292 2024-03-01 10:29:56.88 2024-03-01 10:29:56.88 1000 FEE 444194 18494 6123293 2024-03-01 10:29:56.88 2024-03-01 10:29:56.88 9000 TIP 444194 4166 6123393 2024-03-01 10:34:15.157 2024-03-01 10:34:15.157 1000 FEE 444726 2013 6123394 2024-03-01 10:34:15.157 2024-03-01 10:34:15.157 9000 TIP 444726 10519 6123464 2024-03-01 10:45:26.935 2024-03-01 10:45:26.935 2100 FEE 444747 2529 6123465 2024-03-01 10:45:26.935 2024-03-01 10:45:26.935 18900 TIP 444747 6616 6123506 2024-03-01 10:52:43.078 2024-03-01 10:52:43.078 1000 FEE 444760 21062 6123518 2024-03-01 10:54:09.637 2024-03-01 10:54:09.637 1000 FEE 444763 16598 6123527 2024-03-01 10:56:22.579 2024-03-01 10:56:22.579 1000 FEE 444755 18731 6123528 2024-03-01 10:56:22.579 2024-03-01 10:56:22.579 9000 TIP 444755 8870 6123545 2024-03-01 10:58:25.57 2024-03-01 10:58:25.57 800 FEE 444755 19810 6123546 2024-03-01 10:58:25.57 2024-03-01 10:58:25.57 7200 TIP 444755 20778 6123555 2024-03-01 10:59:02.156 2024-03-01 10:59:02.156 2100 FEE 444755 18581 6123556 2024-03-01 10:59:02.156 2024-03-01 10:59:02.156 18900 TIP 444755 717 6123558 2024-03-01 10:59:11.555 2024-03-01 10:59:11.555 6900 FEE 444177 21373 6123559 2024-03-01 10:59:11.555 2024-03-01 10:59:11.555 62100 TIP 444177 19810 6123575 2024-03-01 11:01:22.652 2024-03-01 11:01:22.652 10000 FEE 444773 20301 6123577 2024-03-01 11:01:28.758 2024-03-01 11:01:28.758 1000 FEE 444775 7979 6123585 2024-03-01 11:02:09.194 2024-03-01 11:02:09.194 2100 FEE 444771 16970 6123586 2024-03-01 11:02:09.194 2024-03-01 11:02:09.194 18900 TIP 444771 8796 6123594 2024-03-01 11:02:38.347 2024-03-01 11:02:38.347 1000 FEE 444780 14465 6123617 2024-03-01 11:04:24.675 2024-03-01 11:04:24.675 1000 FEE 444725 20562 6123618 2024-03-01 11:04:24.675 2024-03-01 11:04:24.675 9000 TIP 444725 641 6123641 2024-03-01 11:06:30.691 2024-03-01 11:06:30.691 7600 FEE 444780 685 6123642 2024-03-01 11:06:30.691 2024-03-01 11:06:30.691 68400 TIP 444780 9482 6123649 2024-03-01 11:06:40.009 2024-03-01 11:06:40.009 1000 FEE 444793 21612 6123653 2024-03-01 11:06:59.373 2024-03-01 11:06:59.373 1000 FEE 444746 16788 6123654 2024-03-01 11:06:59.373 2024-03-01 11:06:59.373 9000 TIP 444746 9427 6123655 2024-03-01 11:07:00.51 2024-03-01 11:07:00.51 1000 FEE 444739 19198 6123656 2024-03-01 11:07:00.51 2024-03-01 11:07:00.51 9000 TIP 444739 1718 6123692 2024-03-01 11:10:48.69 2024-03-01 11:10:48.69 10000 FEE 444802 6327 6123693 2024-03-01 11:10:49.518 2024-03-01 11:10:49.518 10000 FEE 444803 630 6123706 2024-03-01 11:12:48.023 2024-03-01 11:12:48.023 1000 FEE 444717 2773 6123707 2024-03-01 11:12:48.023 2024-03-01 11:12:48.023 9000 TIP 444717 15282 6123709 2024-03-01 11:12:52.362 2024-03-01 11:12:52.362 1000 FEE 444703 2780 6123710 2024-03-01 11:12:52.362 2024-03-01 11:12:52.362 9000 TIP 444703 15063 6123726 2024-03-01 11:13:17.509 2024-03-01 11:13:17.509 2100 FEE 444797 21361 6123727 2024-03-01 11:13:17.509 2024-03-01 11:13:17.509 18900 TIP 444797 616 6123757 2024-03-01 11:15:22.596 2024-03-01 11:15:22.596 1000 FEE 444812 19148 6123760 2024-03-01 11:16:10.522 2024-03-01 11:16:10.522 7600 FEE 444811 16149 6123761 2024-03-01 11:16:10.522 2024-03-01 11:16:10.522 68400 TIP 444811 1352 6062293 2024-02-25 12:47:36.565 2024-02-25 12:47:36.565 5000 FEE 437966 3400 6062294 2024-02-25 12:47:36.565 2024-02-25 12:47:36.565 45000 TIP 437966 1620 6062306 2024-02-25 12:48:27.751 2024-02-25 12:48:27.751 0 FEE 438191 19320 6062312 2024-02-25 12:49:12.638 2024-02-25 12:49:12.638 1000 FEE 438194 2502 6062317 2024-02-25 12:50:10.383 2024-02-25 12:50:10.383 5000 FEE 438185 1705 6062318 2024-02-25 12:50:10.383 2024-02-25 12:50:10.383 45000 TIP 438185 17184 6062323 2024-02-25 12:50:42.946 2024-02-25 12:50:42.946 5000 FEE 438156 837 6062324 2024-02-25 12:50:42.946 2024-02-25 12:50:42.946 45000 TIP 438156 19613 6062330 2024-02-25 12:51:12.656 2024-02-25 12:51:12.656 5000 FEE 438132 2596 6062331 2024-02-25 12:51:12.656 2024-02-25 12:51:12.656 45000 TIP 438132 3990 6062334 2024-02-25 12:51:13.861 2024-02-25 12:51:13.861 5000 FEE 438135 17690 6062335 2024-02-25 12:51:13.861 2024-02-25 12:51:13.861 45000 TIP 438135 18448 6062352 2024-02-25 12:56:11.716 2024-02-25 12:56:11.716 1100 FEE 438199 18784 6062353 2024-02-25 12:56:11.716 2024-02-25 12:56:11.716 9900 TIP 438199 12819 6062378 2024-02-25 12:58:14.236 2024-02-25 12:58:14.236 5000 FEE 437700 9427 6062379 2024-02-25 12:58:14.236 2024-02-25 12:58:14.236 45000 TIP 437700 2963 6062394 2024-02-25 12:59:52.639 2024-02-25 12:59:52.639 1000 FEE 438202 1618 6062395 2024-02-25 12:59:52.639 2024-02-25 12:59:52.639 9000 TIP 438202 8045 6062399 2024-02-25 13:00:04.949 2024-02-25 13:00:04.949 1000 FEE 438205 13843 6062463 2024-02-25 13:12:20.926 2024-02-25 13:12:20.926 10000 FEE 432920 13398 6062464 2024-02-25 13:12:20.926 2024-02-25 13:12:20.926 90000 TIP 432920 9705 6062484 2024-02-25 13:14:56.001 2024-02-25 13:14:56.001 1000 FEE 438218 7847 6062485 2024-02-25 13:14:58.506 2024-02-25 13:14:58.506 1000 FEE 438209 20963 6062486 2024-02-25 13:14:58.506 2024-02-25 13:14:58.506 9000 TIP 438209 18452 6062502 2024-02-25 13:17:50.406 2024-02-25 13:17:50.406 1000 FEE 438224 19581 6062505 2024-02-25 13:18:28.382 2024-02-25 13:18:28.382 1100 FEE 438131 21291 6062506 2024-02-25 13:18:28.382 2024-02-25 13:18:28.382 9900 TIP 438131 1712 6062507 2024-02-25 13:18:47.495 2024-02-25 13:18:47.495 100 FEE 438148 18368 6062508 2024-02-25 13:18:47.495 2024-02-25 13:18:47.495 900 TIP 438148 11450 6062522 2024-02-25 13:20:56.025 2024-02-25 13:20:56.025 1000 FEE 438226 999 6062532 2024-02-25 13:21:18.544 2024-02-25 13:21:18.544 100 FEE 438156 886 6062533 2024-02-25 13:21:18.544 2024-02-25 13:21:18.544 900 TIP 438156 20788 6062540 2024-02-25 13:21:21.165 2024-02-25 13:21:21.165 100 FEE 438156 9354 6062541 2024-02-25 13:21:21.165 2024-02-25 13:21:21.165 900 TIP 438156 2681 6062574 2024-02-25 13:29:03.148 2024-02-25 13:29:03.148 1000 FEE 438235 9378 6062575 2024-02-25 13:29:24.241 2024-02-25 13:29:24.241 1000 FEE 438205 628 6062576 2024-02-25 13:29:24.241 2024-02-25 13:29:24.241 9000 TIP 438205 19286 6062588 2024-02-25 13:32:51.25 2024-02-25 13:32:51.25 2500 FEE 438104 15560 6062589 2024-02-25 13:32:51.25 2024-02-25 13:32:51.25 22500 TIP 438104 11776 6062601 2024-02-25 13:34:02.117 2024-02-25 13:34:02.117 2500 FEE 438125 9833 6062602 2024-02-25 13:34:02.117 2024-02-25 13:34:02.117 22500 TIP 438125 760 6062614 2024-02-25 13:38:17.066 2024-02-25 13:38:17.066 1000 FEE 438242 18819 6062632 2024-02-25 13:41:51.347 2024-02-25 13:41:51.347 1100 FEE 438238 21140 6062633 2024-02-25 13:41:51.347 2024-02-25 13:41:51.347 9900 TIP 438238 18270 6062648 2024-02-25 13:46:23.744 2024-02-25 13:46:23.744 1000 FEE 438251 21061 6062678 2024-02-25 13:51:14.208 2024-02-25 13:51:14.208 2100 FEE 438088 19987 6062679 2024-02-25 13:51:14.208 2024-02-25 13:51:14.208 18900 TIP 438088 21214 6062680 2024-02-25 13:51:24.8 2024-02-25 13:51:24.8 2100 FEE 438156 13767 6062681 2024-02-25 13:51:24.8 2024-02-25 13:51:24.8 18900 TIP 438156 4048 6062686 2024-02-25 13:51:32.653 2024-02-25 13:51:32.653 2100 FEE 438168 16684 6062687 2024-02-25 13:51:32.653 2024-02-25 13:51:32.653 18900 TIP 438168 20599 6062703 2024-02-25 13:53:40.052 2024-02-25 13:53:40.052 1000 FEE 438257 20781 6062765 2024-02-25 13:57:49.959 2024-02-25 13:57:49.959 2100 FEE 438126 20614 6062766 2024-02-25 13:57:49.959 2024-02-25 13:57:49.959 18900 TIP 438126 18680 6062798 2024-02-25 13:59:54.166 2024-02-25 13:59:54.166 2000 FEE 438232 18511 6062799 2024-02-25 13:59:54.166 2024-02-25 13:59:54.166 18000 TIP 438232 21374 6062804 2024-02-25 14:00:03.661 2024-02-25 14:00:03.661 2000 FEE 438209 976 6062805 2024-02-25 14:00:03.661 2024-02-25 14:00:03.661 18000 TIP 438209 4084 6062810 2024-02-25 14:02:31.547 2024-02-25 14:02:31.547 0 FEE 438270 9261 6062811 2024-02-25 14:02:31.729 2024-02-25 14:02:31.729 1000 FEE 438271 19929 6062815 2024-02-25 14:03:35.992 2024-02-25 14:03:35.992 1000 FEE 438272 21296 6062824 2024-02-25 14:04:00.9 2024-02-25 14:04:00.9 2100 FEE 438088 17639 6062825 2024-02-25 14:04:00.9 2024-02-25 14:04:00.9 18900 TIP 438088 886 6062858 2024-02-25 14:06:17.037 2024-02-25 14:06:17.037 2100 FEE 438137 1490 6062859 2024-02-25 14:06:17.037 2024-02-25 14:06:17.037 18900 TIP 438137 13763 6062878 2024-02-25 14:10:05.78 2024-02-25 14:10:05.78 1000 FEE 438283 5758 6062895 2024-02-25 14:13:32.519 2024-02-25 14:13:32.519 2100 FEE 438251 20891 6062896 2024-02-25 14:13:32.519 2024-02-25 14:13:32.519 18900 TIP 438251 20023 6062309 2024-02-25 12:48:46.449 2024-02-25 12:48:46.449 10000 FEE 438065 19147 6062310 2024-02-25 12:48:46.449 2024-02-25 12:48:46.449 90000 TIP 438065 1273 6062315 2024-02-25 12:49:34.776 2024-02-25 12:49:34.776 1000 FEE 438195 9843 6062328 2024-02-25 12:51:12.006 2024-02-25 12:51:12.006 5000 FEE 438132 19902 6062329 2024-02-25 12:51:12.006 2024-02-25 12:51:12.006 45000 TIP 438132 17535 6062342 2024-02-25 12:53:51.362 2024-02-25 12:53:51.362 100 FEE 438192 20539 6062343 2024-02-25 12:53:51.362 2024-02-25 12:53:51.362 900 TIP 438192 2000 6062345 2024-02-25 12:54:15.481 2024-02-25 12:54:15.481 1000 FEE 438193 9345 6062346 2024-02-25 12:54:15.481 2024-02-25 12:54:15.481 9000 TIP 438193 795 6062376 2024-02-25 12:58:14.069 2024-02-25 12:58:14.069 5000 FEE 437700 12808 6062377 2024-02-25 12:58:14.069 2024-02-25 12:58:14.069 45000 TIP 437700 19576 6062380 2024-02-25 12:58:27.111 2024-02-25 12:58:27.111 5000 FEE 437700 1286 6062381 2024-02-25 12:58:27.111 2024-02-25 12:58:27.111 45000 TIP 437700 1245 6062400 2024-02-25 13:00:08.22 2024-02-25 13:00:08.22 1000 FEE 438202 15719 6062401 2024-02-25 13:00:08.22 2024-02-25 13:00:08.22 9000 TIP 438202 18909 6062419 2024-02-25 13:04:05.615 2024-02-25 13:04:05.615 500 FEE 438138 8841 6062420 2024-02-25 13:04:05.615 2024-02-25 13:04:05.615 4500 TIP 438138 11820 6062423 2024-02-25 13:04:07.839 2024-02-25 13:04:07.839 500 FEE 438138 18904 6062424 2024-02-25 13:04:07.839 2024-02-25 13:04:07.839 4500 TIP 438138 18667 6062436 2024-02-25 13:07:34.054 2024-02-25 13:07:34.054 100 FEE 438204 17741 6062437 2024-02-25 13:07:34.054 2024-02-25 13:07:34.054 900 TIP 438204 20816 6062469 2024-02-25 13:13:20.589 2024-02-25 13:13:20.589 1000 FEE 438214 4064 6062477 2024-02-25 13:14:25.637 2024-02-25 13:14:25.637 5000 FEE 438008 7827 6062478 2024-02-25 13:14:25.637 2024-02-25 13:14:25.637 45000 TIP 438008 1773 6062480 2024-02-25 13:14:43.331 2024-02-25 13:14:43.331 5000 FEE 438014 10818 6062481 2024-02-25 13:14:43.331 2024-02-25 13:14:43.331 45000 TIP 438014 13553 6062494 2024-02-25 13:16:11.853 2024-02-25 13:16:11.853 1000 FEE 438219 19154 6062538 2024-02-25 13:21:20.867 2024-02-25 13:21:20.867 100 FEE 438156 16348 6062539 2024-02-25 13:21:20.867 2024-02-25 13:21:20.867 900 TIP 438156 20563 6062554 2024-02-25 13:26:16.26 2024-02-25 13:26:16.26 10000 FEE 438231 12122 6062556 2024-02-25 13:26:56.785 2024-02-25 13:26:56.785 0 FEE 438227 1195 6062581 2024-02-25 13:30:50.649 2024-02-25 13:30:50.649 10000 FEE 438236 6687 6062598 2024-02-25 13:33:10.017 2024-02-25 13:33:10.017 2100 FEE 438216 20998 6062599 2024-02-25 13:33:10.017 2024-02-25 13:33:10.017 18900 TIP 438216 1039 6062600 2024-02-25 13:33:36.9 2024-02-25 13:33:36.9 1000 FEE 438240 11144 6062611 2024-02-25 13:37:58.34 2024-02-25 13:37:58.34 4000 FEE 438231 20430 6062612 2024-02-25 13:37:58.34 2024-02-25 13:37:58.34 36000 TIP 438231 2111 6062624 2024-02-25 13:40:17.675 2024-02-25 13:40:17.675 10000 FEE 438088 848 6062625 2024-02-25 13:40:17.675 2024-02-25 13:40:17.675 90000 TIP 438088 1122 6062638 2024-02-25 13:43:06.595 2024-02-25 13:43:06.595 1000 FEE 438247 9992 6062645 2024-02-25 13:45:11.532 2024-02-25 13:45:11.532 100000 FEE 438249 20681 6062655 2024-02-25 13:49:08.026 2024-02-25 13:49:08.026 2100 FEE 438232 7913 6062656 2024-02-25 13:49:08.026 2024-02-25 13:49:08.026 18900 TIP 438232 19158 6062657 2024-02-25 13:49:14.405 2024-02-25 13:49:14.405 2100 FEE 438235 20439 6062658 2024-02-25 13:49:14.405 2024-02-25 13:49:14.405 18900 TIP 438235 1310 6062665 2024-02-25 13:50:36.861 2024-02-25 13:50:36.861 2100 FEE 434810 1632 6062666 2024-02-25 13:50:36.861 2024-02-25 13:50:36.861 18900 TIP 434810 21349 6062673 2024-02-25 13:50:50.595 2024-02-25 13:50:50.595 1000 FEE 438255 15337 6062712 2024-02-25 13:54:38.71 2024-02-25 13:54:38.71 2100 FEE 438220 782 6062713 2024-02-25 13:54:38.71 2024-02-25 13:54:38.71 18900 TIP 438220 11621 6062772 2024-02-25 13:58:21.083 2024-02-25 13:58:21.083 2100 FEE 437974 19007 6062773 2024-02-25 13:58:21.083 2024-02-25 13:58:21.083 18900 TIP 437974 10056 6062835 2024-02-25 14:04:07.999 2024-02-25 14:04:07.999 2100 FEE 438189 9982 6062836 2024-02-25 14:04:07.999 2024-02-25 14:04:07.999 18900 TIP 438189 6578 6062839 2024-02-25 14:04:10.958 2024-02-25 14:04:10.958 1000 FEE 438273 15060 6062842 2024-02-25 14:04:12.665 2024-02-25 14:04:12.665 2100 FEE 437775 9816 6062843 2024-02-25 14:04:12.665 2024-02-25 14:04:12.665 18900 TIP 437775 13042 6062846 2024-02-25 14:04:15.474 2024-02-25 14:04:15.474 2100 FEE 438231 20861 6062847 2024-02-25 14:04:15.474 2024-02-25 14:04:15.474 18900 TIP 438231 19284 6062862 2024-02-25 14:07:28.178 2024-02-25 14:07:28.178 0 FEE 438274 17001 6062882 2024-02-25 14:10:51.46 2024-02-25 14:10:51.46 0 FEE 438274 750 6062886 2024-02-25 14:11:10.133 2024-02-25 14:11:10.133 12800 FEE 438167 21343 6062887 2024-02-25 14:11:10.133 2024-02-25 14:11:10.133 115200 TIP 438167 4014 6062899 2024-02-25 14:13:38.396 2024-02-25 14:13:38.396 0 FEE 438285 21180 6062906 2024-02-25 14:15:13.218 2024-02-25 14:15:13.218 2100 FEE 438245 15588 6062907 2024-02-25 14:15:13.218 2024-02-25 14:15:13.218 18900 TIP 438245 20026 6062908 2024-02-25 14:15:13.383 2024-02-25 14:15:13.383 10000 FEE 438264 14385 6062909 2024-02-25 14:15:13.383 2024-02-25 14:15:13.383 90000 TIP 438264 21506 6062920 2024-02-25 14:16:04.075 2024-02-25 14:16:04.075 1000 FEE 438289 12222 6062934 2024-02-25 14:17:01.971 2024-02-25 14:17:01.971 10000 FEE 438291 21338 6062958 2024-02-25 14:17:32.415 2024-02-25 14:17:32.415 10000 FEE 438069 4958 6062959 2024-02-25 14:17:32.415 2024-02-25 14:17:32.415 90000 TIP 438069 703 6062975 2024-02-25 14:18:14.424 2024-02-25 14:18:14.424 1000 FEE 438156 657 6062976 2024-02-25 14:18:14.424 2024-02-25 14:18:14.424 9000 TIP 438156 2596 6063009 2024-02-25 14:22:37.436 2024-02-25 14:22:37.436 2100 FEE 437771 647 6063010 2024-02-25 14:22:37.436 2024-02-25 14:22:37.436 18900 TIP 437771 21208 6063058 2024-02-25 14:33:43.485 2024-02-25 14:33:43.485 1000 FEE 438310 882 6063059 2024-02-25 14:33:48.007 2024-02-25 14:33:48.007 6900 FEE 438201 13547 6063060 2024-02-25 14:33:48.007 2024-02-25 14:33:48.007 62100 TIP 438201 16267 6063076 2024-02-25 14:37:58.161 2024-02-25 14:37:58.161 0 FEE 438310 13217 6063091 2024-02-25 14:40:55.888 2024-02-25 14:40:55.888 6900 FEE 438209 5306 6063092 2024-02-25 14:40:55.888 2024-02-25 14:40:55.888 62100 TIP 438209 19826 6063107 2024-02-25 14:42:33.372 2024-02-25 14:42:33.372 1100 FEE 438306 19037 6063108 2024-02-25 14:42:33.372 2024-02-25 14:42:33.372 9900 TIP 438306 2390 6063115 2024-02-25 14:43:59.013 2024-02-25 14:43:59.013 4000 FEE 437114 15409 6062311 2024-02-25 12:49:02.698 2024-02-25 12:49:02.698 1000 STREAM 141924 21472 6062316 2024-02-25 12:50:02.711 2024-02-25 12:50:02.711 1000 STREAM 141924 11491 6062337 2024-02-25 12:52:02.694 2024-02-25 12:52:02.694 1000 STREAM 141924 1002 6062344 2024-02-25 12:54:02.697 2024-02-25 12:54:02.697 1000 STREAM 141924 18208 6062351 2024-02-25 12:56:02.714 2024-02-25 12:56:02.714 1000 STREAM 141924 1800 6062460 2024-02-25 13:12:04.884 2024-02-25 13:12:04.884 1000 STREAM 141924 1814 6123153 2024-03-01 10:23:14.588 2024-03-01 10:23:14.588 900 TIP 444716 19535 6123163 2024-03-01 10:24:06.372 2024-03-01 10:24:06.372 500 FEE 444608 8648 6123164 2024-03-01 10:24:06.372 2024-03-01 10:24:06.372 4500 TIP 444608 8080 6123165 2024-03-01 10:24:09.574 2024-03-01 10:24:09.574 500 FEE 444620 2088 6123166 2024-03-01 10:24:09.574 2024-03-01 10:24:09.574 4500 TIP 444620 20495 6123181 2024-03-01 10:24:37.146 2024-03-01 10:24:37.146 3000 FEE 444168 21349 6123182 2024-03-01 10:24:37.146 2024-03-01 10:24:37.146 27000 TIP 444168 20185 6123209 2024-03-01 10:25:47.789 2024-03-01 10:25:47.789 1000 FEE 444522 8004 6123210 2024-03-01 10:25:47.789 2024-03-01 10:25:47.789 9000 TIP 444522 16357 6123211 2024-03-01 10:25:48.839 2024-03-01 10:25:48.839 1000 FEE 444552 2000 6123212 2024-03-01 10:25:48.839 2024-03-01 10:25:48.839 9000 TIP 444552 11885 6123213 2024-03-01 10:25:49.582 2024-03-01 10:25:49.582 1000 FEE 444605 2088 6123214 2024-03-01 10:25:49.582 2024-03-01 10:25:49.582 9000 TIP 444605 20597 6123238 2024-03-01 10:27:47.609 2024-03-01 10:27:47.609 1000 FEE 443799 15978 6123239 2024-03-01 10:27:47.609 2024-03-01 10:27:47.609 9000 TIP 443799 16633 6123296 2024-03-01 10:29:58.575 2024-03-01 10:29:58.575 1000 FEE 444401 16348 6123297 2024-03-01 10:29:58.575 2024-03-01 10:29:58.575 9000 TIP 444401 9364 6123307 2024-03-01 10:30:09.866 2024-03-01 10:30:09.866 1000 FEE 444288 11714 6123308 2024-03-01 10:30:09.866 2024-03-01 10:30:09.866 9000 TIP 444288 14818 6123329 2024-03-01 10:30:30.925 2024-03-01 10:30:30.925 1000 FEE 444710 18680 6123330 2024-03-01 10:30:30.925 2024-03-01 10:30:30.925 9000 TIP 444710 20187 6123335 2024-03-01 10:30:32.927 2024-03-01 10:30:32.927 1000 FEE 444700 20624 6123336 2024-03-01 10:30:32.927 2024-03-01 10:30:32.927 9000 TIP 444700 16747 6123343 2024-03-01 10:30:36.179 2024-03-01 10:30:36.179 1000 FEE 444695 18736 6123344 2024-03-01 10:30:36.179 2024-03-01 10:30:36.179 9000 TIP 444695 5725 6123347 2024-03-01 10:30:37.731 2024-03-01 10:30:37.731 1000 FEE 444690 14515 6123348 2024-03-01 10:30:37.731 2024-03-01 10:30:37.731 9000 TIP 444690 16939 6123351 2024-03-01 10:30:39.216 2024-03-01 10:30:39.216 1000 FEE 444689 16808 6123352 2024-03-01 10:30:39.216 2024-03-01 10:30:39.216 9000 TIP 444689 16879 6123372 2024-03-01 10:31:15.592 2024-03-01 10:31:15.592 1000 FEE 444689 19813 6123373 2024-03-01 10:31:15.592 2024-03-01 10:31:15.592 9000 TIP 444689 20087 6123380 2024-03-01 10:31:29.488 2024-03-01 10:31:29.488 2100 FEE 444730 17392 6123381 2024-03-01 10:31:29.488 2024-03-01 10:31:29.488 18900 TIP 444730 18618 6123386 2024-03-01 10:33:42.625 2024-03-01 10:33:42.625 0 FEE 444735 19333 6123391 2024-03-01 10:34:14.967 2024-03-01 10:34:14.967 1000 FEE 444726 21178 6123392 2024-03-01 10:34:14.967 2024-03-01 10:34:14.967 9000 TIP 444726 11145 6123403 2024-03-01 10:34:29.004 2024-03-01 10:34:29.004 100 FEE 444718 8095 6123404 2024-03-01 10:34:29.004 2024-03-01 10:34:29.004 900 TIP 444718 8945 6123408 2024-03-01 10:34:57.341 2024-03-01 10:34:57.341 0 FEE 444735 18784 6123447 2024-03-01 10:42:35.502 2024-03-01 10:42:35.502 1000 FEE 444745 19810 6123449 2024-03-01 10:42:59.487 2024-03-01 10:42:59.487 1000 FEE 444747 4076 6123456 2024-03-01 10:44:24.873 2024-03-01 10:44:24.873 1000 FEE 444749 10728 6123458 2024-03-01 10:44:45.582 2024-03-01 10:44:45.582 800 FEE 444739 17638 6123459 2024-03-01 10:44:45.582 2024-03-01 10:44:45.582 7200 TIP 444739 17827 6123466 2024-03-01 10:46:03.045 2024-03-01 10:46:03.045 100 FEE 444739 18313 6123467 2024-03-01 10:46:03.045 2024-03-01 10:46:03.045 900 TIP 444739 10519 6123511 2024-03-01 10:53:20.71 2024-03-01 10:53:20.71 0 FEE 444760 3706 6123520 2024-03-01 10:54:21.532 2024-03-01 10:54:21.532 6900 FEE 443285 6421 6123521 2024-03-01 10:54:21.532 2024-03-01 10:54:21.532 62100 TIP 443285 21498 6123539 2024-03-01 10:58:15.041 2024-03-01 10:58:15.041 1000 FEE 444755 1394 6123540 2024-03-01 10:58:15.041 2024-03-01 10:58:15.041 9000 TIP 444755 21274 6123541 2024-03-01 10:58:17.547 2024-03-01 10:58:17.547 100 FEE 444755 17891 6123542 2024-03-01 10:58:17.547 2024-03-01 10:58:17.547 900 TIP 444755 1120 6123560 2024-03-01 10:59:19.327 2024-03-01 10:59:19.327 2100 FEE 444730 8037 6123561 2024-03-01 10:59:19.327 2024-03-01 10:59:19.327 18900 TIP 444730 19533 6123563 2024-03-01 11:00:09.716 2024-03-01 11:00:09.716 1000 FEE 444771 1584 6123565 2024-03-01 11:00:22.879 2024-03-01 11:00:22.879 0 FEE 444771 8945 6123566 2024-03-01 11:00:32.644 2024-03-01 11:00:32.644 0 FEE 444771 19732 6123588 2024-03-01 11:02:14.176 2024-03-01 11:02:14.176 1000 FEE 444778 4027 6123589 2024-03-01 11:02:15.089 2024-03-01 11:02:15.089 2100 FEE 444759 1209 6123590 2024-03-01 11:02:15.089 2024-03-01 11:02:15.089 18900 TIP 444759 14669 6123600 2024-03-01 11:03:25.556 2024-03-01 11:03:25.556 0 FEE 444771 2832 6123613 2024-03-01 11:04:16.79 2024-03-01 11:04:16.79 2100 FEE 443723 1401 6123614 2024-03-01 11:04:16.79 2024-03-01 11:04:16.79 18900 TIP 443723 11458 6123638 2024-03-01 11:06:04.06 2024-03-01 11:06:04.06 1000 FEE 444791 19570 6123661 2024-03-01 11:07:03.522 2024-03-01 11:07:03.522 1000 FEE 444694 18640 6123662 2024-03-01 11:07:03.522 2024-03-01 11:07:03.522 9000 TIP 444694 2961 6123686 2024-03-01 11:10:20.636 2024-03-01 11:10:20.636 1000 FEE 444801 7583 6123687 2024-03-01 11:10:30.68 2024-03-01 11:10:30.68 0 FEE 444797 4345 6123688 2024-03-01 11:10:43.305 2024-03-01 11:10:43.305 1000 FEE 444731 19639 6123689 2024-03-01 11:10:43.305 2024-03-01 11:10:43.305 9000 TIP 444731 14404 6123690 2024-03-01 11:10:44.032 2024-03-01 11:10:44.032 1000 FEE 444731 15196 6123691 2024-03-01 11:10:44.032 2024-03-01 11:10:44.032 9000 TIP 444731 6164 6123701 2024-03-01 11:12:01.314 2024-03-01 11:12:01.314 1000 FEE 444806 16212 6123717 2024-03-01 11:12:58.318 2024-03-01 11:12:58.318 1000 FEE 444702 3377 6123718 2024-03-01 11:12:58.318 2024-03-01 11:12:58.318 9000 TIP 444702 10490 6123738 2024-03-01 11:13:23.058 2024-03-01 11:13:23.058 1000 FEE 444775 21178 6123739 2024-03-01 11:13:23.058 2024-03-01 11:13:23.058 9000 TIP 444775 14857 6123744 2024-03-01 11:13:29.807 2024-03-01 11:13:29.807 1000 FEE 444690 18219 6123745 2024-03-01 11:13:29.807 2024-03-01 11:13:29.807 9000 TIP 444690 20018 6123762 2024-03-01 11:16:14.306 2024-03-01 11:16:14.306 3200 FEE 444789 8569 6123763 2024-03-01 11:16:14.306 2024-03-01 11:16:14.306 28800 TIP 444789 5495 6123770 2024-03-01 11:17:03.911 2024-03-01 11:17:03.911 7600 FEE 444813 10096 6123771 2024-03-01 11:17:03.911 2024-03-01 11:17:03.911 68400 TIP 444813 9355 6123773 2024-03-01 11:17:38.597 2024-03-01 11:17:38.597 1000 FEE 444814 1162 6123774 2024-03-01 11:17:43.369 2024-03-01 11:17:43.369 1100 FEE 444718 2322 6123775 2024-03-01 11:17:43.369 2024-03-01 11:17:43.369 9900 TIP 444718 16353 6123791 2024-03-01 11:20:25.293 2024-03-01 11:20:25.293 1000 FEE 444818 11999 6123822 2024-03-01 11:26:32.794 2024-03-01 11:26:32.794 1000 FEE 444828 5057 6123825 2024-03-01 11:26:51.321 2024-03-01 11:26:51.321 1000 FEE 444829 15484 6123841 2024-03-01 11:28:07.216 2024-03-01 11:28:07.216 1000 FEE 444834 746 6123855 2024-03-01 11:29:12.901 2024-03-01 11:29:12.901 3100 FEE 224285 14818 6123856 2024-03-01 11:29:12.901 2024-03-01 11:29:12.901 27900 TIP 224285 21365 6123866 2024-03-01 11:30:05.703 2024-03-01 11:30:05.703 0 FEE 444839 5794 6062327 2024-02-25 12:51:02.695 2024-02-25 12:51:02.695 1000 STREAM 141924 16598 6062338 2024-02-25 12:53:02.699 2024-02-25 12:53:02.699 1000 STREAM 141924 12774 6062349 2024-02-25 12:55:02.71 2024-02-25 12:55:02.71 1000 STREAM 141924 954 6062354 2024-02-25 12:57:02.706 2024-02-25 12:57:02.706 1000 STREAM 141924 2502 6123155 2024-03-01 10:23:14.813 2024-03-01 10:23:14.813 900 TIP 444716 4259 6123158 2024-03-01 10:23:15.578 2024-03-01 10:23:15.578 100 FEE 444716 21620 6123159 2024-03-01 10:23:15.578 2024-03-01 10:23:15.578 900 TIP 444716 3717 6123161 2024-03-01 10:23:34.115 2024-03-01 10:23:34.115 1000 FEE 444727 12139 6123169 2024-03-01 10:24:26.587 2024-03-01 10:24:26.587 100 FEE 444723 5725 6123170 2024-03-01 10:24:26.587 2024-03-01 10:24:26.587 900 TIP 444723 17838 6123189 2024-03-01 10:24:38.059 2024-03-01 10:24:38.059 1000 FEE 444168 11942 6123190 2024-03-01 10:24:38.059 2024-03-01 10:24:38.059 9000 TIP 444168 9171 6123199 2024-03-01 10:24:52.43 2024-03-01 10:24:52.43 1000 FEE 444728 18393 6123207 2024-03-01 10:25:05.021 2024-03-01 10:25:05.021 1000 FEE 444729 16178 6123229 2024-03-01 10:26:37.442 2024-03-01 10:26:37.442 1000 FEE 443583 17741 6123230 2024-03-01 10:26:37.442 2024-03-01 10:26:37.442 9000 TIP 443583 20546 6123242 2024-03-01 10:27:50.519 2024-03-01 10:27:50.519 1000 FEE 443923 20706 6123243 2024-03-01 10:27:50.519 2024-03-01 10:27:50.519 9000 TIP 443923 721 6123273 2024-03-01 10:28:18.679 2024-03-01 10:28:18.679 1000 FEE 444422 8360 6123274 2024-03-01 10:28:18.679 2024-03-01 10:28:18.679 9000 TIP 444422 20816 6123298 2024-03-01 10:30:00.209 2024-03-01 10:30:00.209 1000 FEE 444376 1298 6123299 2024-03-01 10:30:00.209 2024-03-01 10:30:00.209 9000 TIP 444376 2013 6123313 2024-03-01 10:30:22.464 2024-03-01 10:30:22.464 1000 FEE 444732 9290 6123316 2024-03-01 10:30:24.698 2024-03-01 10:30:24.698 1000 FEE 444725 9307 6123317 2024-03-01 10:30:24.698 2024-03-01 10:30:24.698 9000 TIP 444725 1389 6123318 2024-03-01 10:30:25.171 2024-03-01 10:30:25.171 1000 FEE 444720 6361 6123319 2024-03-01 10:30:25.171 2024-03-01 10:30:25.171 9000 TIP 444720 20663 6123322 2024-03-01 10:30:27.636 2024-03-01 10:30:27.636 1000 FEE 444717 19905 6123323 2024-03-01 10:30:27.636 2024-03-01 10:30:27.636 9000 TIP 444717 2329 6123326 2024-03-01 10:30:28.884 2024-03-01 10:30:28.884 1000 FEE 444733 1823 6123331 2024-03-01 10:30:31.696 2024-03-01 10:30:31.696 1000 FEE 444707 11165 6123332 2024-03-01 10:30:31.696 2024-03-01 10:30:31.696 9000 TIP 444707 20110 6123333 2024-03-01 10:30:32.241 2024-03-01 10:30:32.241 1000 FEE 444702 21463 6123334 2024-03-01 10:30:32.241 2024-03-01 10:30:32.241 9000 TIP 444702 3706 6123341 2024-03-01 10:30:35.746 2024-03-01 10:30:35.746 1000 FEE 444694 718 6123342 2024-03-01 10:30:35.746 2024-03-01 10:30:35.746 9000 TIP 444694 19863 6123349 2024-03-01 10:30:38.118 2024-03-01 10:30:38.118 1000 FEE 444718 1817 6123350 2024-03-01 10:30:38.118 2024-03-01 10:30:38.118 9000 TIP 444718 19583 6123358 2024-03-01 10:31:14.448 2024-03-01 10:31:14.448 1000 FEE 444689 20454 6123359 2024-03-01 10:31:14.448 2024-03-01 10:31:14.448 9000 TIP 444689 21391 6123362 2024-03-01 10:31:14.766 2024-03-01 10:31:14.766 1000 FEE 444689 3377 6123363 2024-03-01 10:31:14.766 2024-03-01 10:31:14.766 9000 TIP 444689 7773 6123370 2024-03-01 10:31:15.444 2024-03-01 10:31:15.444 1000 FEE 444689 16965 6123371 2024-03-01 10:31:15.444 2024-03-01 10:31:15.444 9000 TIP 444689 1261 6123401 2024-03-01 10:34:28.408 2024-03-01 10:34:28.408 100 FEE 444718 2326 6123402 2024-03-01 10:34:28.408 2024-03-01 10:34:28.408 900 TIP 444718 18016 6123411 2024-03-01 10:35:42.221 2024-03-01 10:35:42.221 1000 FEE 444718 19663 6123412 2024-03-01 10:35:42.221 2024-03-01 10:35:42.221 9000 TIP 444718 7682 6123424 2024-03-01 10:36:59.523 2024-03-01 10:36:59.523 10000 FEE 440521 20738 6123425 2024-03-01 10:36:59.523 2024-03-01 10:36:59.523 90000 TIP 440521 14449 6123430 2024-03-01 10:38:31.767 2024-03-01 10:38:31.767 0 FEE 444741 17237 6123476 2024-03-01 10:46:42.131 2024-03-01 10:46:42.131 1000 FEE 444753 14080 6123483 2024-03-01 10:50:19.227 2024-03-01 10:50:19.227 1100 FEE 444743 17064 6123484 2024-03-01 10:50:19.227 2024-03-01 10:50:19.227 9900 TIP 444743 18892 6123494 2024-03-01 10:51:17.549 2024-03-01 10:51:17.549 1000 FEE 444758 19142 6123495 2024-03-01 10:51:19.569 2024-03-01 10:51:19.569 0 FEE 444757 17517 6123499 2024-03-01 10:51:44.274 2024-03-01 10:51:44.274 0 FEE 444757 18941 6123501 2024-03-01 10:52:01.36 2024-03-01 10:52:01.36 2000 FEE 444738 17798 6123502 2024-03-01 10:52:01.36 2024-03-01 10:52:01.36 18000 TIP 444738 19096 6123519 2024-03-01 10:54:13.688 2024-03-01 10:54:13.688 1000 FEE 444764 19909 6123522 2024-03-01 10:55:04.703 2024-03-01 10:55:04.703 10000 FEE 444696 21589 6123523 2024-03-01 10:55:04.703 2024-03-01 10:55:04.703 90000 TIP 444696 20090 6123525 2024-03-01 10:55:48.963 2024-03-01 10:55:48.963 1000 FEE 444765 15978 6123529 2024-03-01 10:56:30.227 2024-03-01 10:56:30.227 10000 FEE 444766 19154 6123543 2024-03-01 10:58:18.774 2024-03-01 10:58:18.774 10000 FEE 444583 9843 6123544 2024-03-01 10:58:18.774 2024-03-01 10:58:18.774 90000 TIP 444583 19566 6123564 2024-03-01 11:00:11.954 2024-03-01 11:00:11.954 1000 FEE 444772 12779 6123571 2024-03-01 11:01:00.66 2024-03-01 11:01:00.66 2100 FEE 444735 2431 6123572 2024-03-01 11:01:00.66 2024-03-01 11:01:00.66 18900 TIP 444735 19930 6123574 2024-03-01 11:01:06.365 2024-03-01 11:01:06.365 0 FEE 444771 2773 6123592 2024-03-01 11:02:38.008 2024-03-01 11:02:38.008 2100 FEE 444762 11866 6062356 2024-02-25 12:57:04.742 2024-02-25 12:57:04.742 1100 FEE 437720 699 6062357 2024-02-25 12:57:04.742 2024-02-25 12:57:04.742 9900 TIP 437720 21430 6062362 2024-02-25 12:57:05.229 2024-02-25 12:57:05.229 1100 FEE 437720 19689 6062363 2024-02-25 12:57:05.229 2024-02-25 12:57:05.229 9900 TIP 437720 18629 6062370 2024-02-25 12:57:47.763 2024-02-25 12:57:47.763 2100 FEE 437531 11609 6062371 2024-02-25 12:57:47.763 2024-02-25 12:57:47.763 18900 TIP 437531 697 6062372 2024-02-25 12:57:48.766 2024-02-25 12:57:48.766 100000 FEE 438202 11515 6062382 2024-02-25 12:58:28.296 2024-02-25 12:58:28.296 5000 FEE 437700 27 6062383 2024-02-25 12:58:28.296 2024-02-25 12:58:28.296 45000 TIP 437700 3461 6062390 2024-02-25 12:58:35.97 2024-02-25 12:58:35.97 5000 FEE 438197 2402 6062391 2024-02-25 12:58:35.97 2024-02-25 12:58:35.97 45000 TIP 438197 8498 6062393 2024-02-25 12:59:21.348 2024-02-25 12:59:21.348 1000 FEE 438203 19038 6062398 2024-02-25 13:00:04.558 2024-02-25 13:00:04.558 100000 FEE 438204 8360 6062409 2024-02-25 13:00:57.653 2024-02-25 13:00:57.653 1000 FEE 438207 716 6062440 2024-02-25 13:08:35.234 2024-02-25 13:08:35.234 1100 FEE 438202 9863 6062441 2024-02-25 13:08:35.234 2024-02-25 13:08:35.234 9900 TIP 438202 21387 6062444 2024-02-25 13:08:56.469 2024-02-25 13:08:56.469 2100 FEE 438092 18154 6062445 2024-02-25 13:08:56.469 2024-02-25 13:08:56.469 18900 TIP 438092 19843 6062458 2024-02-25 13:11:54.523 2024-02-25 13:11:54.523 2100 FEE 438153 18772 6062459 2024-02-25 13:11:54.523 2024-02-25 13:11:54.523 18900 TIP 438153 17365 6062461 2024-02-25 13:12:20.427 2024-02-25 13:12:20.427 100 FEE 438209 2039 6062462 2024-02-25 13:12:20.427 2024-02-25 13:12:20.427 900 TIP 438209 18116 6062465 2024-02-25 13:12:41.921 2024-02-25 13:12:41.921 1000 POLL 438202 21051 6062467 2024-02-25 13:13:20.311 2024-02-25 13:13:20.311 1100 FEE 438065 9669 6062468 2024-02-25 13:13:20.311 2024-02-25 13:13:20.311 9900 TIP 438065 14774 6062474 2024-02-25 13:14:18.613 2024-02-25 13:14:18.613 1000 POLL 438202 16842 6062500 2024-02-25 13:17:47.193 2024-02-25 13:17:47.193 1100 FEE 438065 18526 6062501 2024-02-25 13:17:47.193 2024-02-25 13:17:47.193 9900 TIP 438065 5752 6062528 2024-02-25 13:21:17.955 2024-02-25 13:21:17.955 100 FEE 438156 4570 6062529 2024-02-25 13:21:17.955 2024-02-25 13:21:17.955 900 TIP 438156 5057 6062534 2024-02-25 13:21:18.781 2024-02-25 13:21:18.781 100 FEE 438156 9985 6062535 2024-02-25 13:21:18.781 2024-02-25 13:21:18.781 900 TIP 438156 20267 6062605 2024-02-25 13:35:33.536 2024-02-25 13:35:33.536 1000 FEE 438232 1801 6062606 2024-02-25 13:35:33.536 2024-02-25 13:35:33.536 9000 TIP 438232 14308 6062635 2024-02-25 13:42:12.48 2024-02-25 13:42:12.48 1000 FEE 438245 2596 6062688 2024-02-25 13:51:34 2024-02-25 13:51:34 2100 FEE 438159 20642 6062689 2024-02-25 13:51:34 2024-02-25 13:51:34 18900 TIP 438159 21472 6062704 2024-02-25 13:53:53.89 2024-02-25 13:53:53.89 2100 FEE 438242 20691 6062705 2024-02-25 13:53:53.89 2024-02-25 13:53:53.89 18900 TIP 438242 2577 6062723 2024-02-25 13:55:01.249 2024-02-25 13:55:01.249 1000 FEE 438260 21520 6062724 2024-02-25 13:55:01.44 2024-02-25 13:55:01.44 2100 FEE 438099 21222 6062725 2024-02-25 13:55:01.44 2024-02-25 13:55:01.44 18900 TIP 438099 11798 6062732 2024-02-25 13:55:18.743 2024-02-25 13:55:18.743 2100 FEE 438249 664 6062733 2024-02-25 13:55:18.743 2024-02-25 13:55:18.743 18900 TIP 438249 1092 6062740 2024-02-25 13:56:19.665 2024-02-25 13:56:19.665 1000 FEE 438263 20143 6062749 2024-02-25 13:57:08.599 2024-02-25 13:57:08.599 1000 FEE 438265 9450 6062757 2024-02-25 13:57:40.702 2024-02-25 13:57:40.702 1000 FEE 438267 19494 6062763 2024-02-25 13:57:49.224 2024-02-25 13:57:49.224 2100 FEE 438070 10484 6062764 2024-02-25 13:57:49.224 2024-02-25 13:57:49.224 18900 TIP 438070 8004 6062791 2024-02-25 13:59:32.47 2024-02-25 13:59:32.47 1000 FEE 438268 7998 6062792 2024-02-25 13:59:41.57 2024-02-25 13:59:41.57 2000 FEE 438065 20225 6062793 2024-02-25 13:59:41.57 2024-02-25 13:59:41.57 18000 TIP 438065 21481 6062814 2024-02-25 14:03:03.869 2024-02-25 14:03:03.869 0 FEE 438271 4502 6062827 2024-02-25 14:04:04.608 2024-02-25 14:04:04.608 2100 FEE 438232 9352 6062828 2024-02-25 14:04:04.608 2024-02-25 14:04:04.608 18900 TIP 438232 733 6062853 2024-02-25 14:05:21.637 2024-02-25 14:05:21.637 1100 FEE 438051 12169 6062854 2024-02-25 14:05:21.637 2024-02-25 14:05:21.637 9900 TIP 438051 672 6062866 2024-02-25 14:08:01.934 2024-02-25 14:08:01.934 0 FEE 438274 19471 6062869 2024-02-25 14:08:13.825 2024-02-25 14:08:13.825 0 FEE 438274 21614 6062884 2024-02-25 14:11:05.061 2024-02-25 14:11:05.061 2100 FEE 438273 11821 6062885 2024-02-25 14:11:05.061 2024-02-25 14:11:05.061 18900 TIP 438273 20562 6062888 2024-02-25 14:11:14.521 2024-02-25 14:11:14.521 0 FEE 438283 14258 6062905 2024-02-25 14:15:06.364 2024-02-25 14:15:06.364 1000 FEE 438287 5449 6062910 2024-02-25 14:15:18.637 2024-02-25 14:15:18.637 1000 FEE 438232 21070 6062911 2024-02-25 14:15:18.637 2024-02-25 14:15:18.637 9000 TIP 438232 18199 6062924 2024-02-25 14:16:34.024 2024-02-25 14:16:34.024 4000 FEE 438287 1135 6062925 2024-02-25 14:16:34.024 2024-02-25 14:16:34.024 36000 TIP 438287 18525 6062928 2024-02-25 14:16:55.699 2024-02-25 14:16:55.699 1000 FEE 438275 16789 6062929 2024-02-25 14:16:55.699 2024-02-25 14:16:55.699 9000 TIP 438275 16097 6062944 2024-02-25 14:17:17.094 2024-02-25 14:17:17.094 6900 FEE 438232 18311 6062945 2024-02-25 14:17:17.094 2024-02-25 14:17:17.094 62100 TIP 438232 20906 6062950 2024-02-25 14:17:17.751 2024-02-25 14:17:17.751 6900 FEE 438232 1141 6062951 2024-02-25 14:17:17.751 2024-02-25 14:17:17.751 62100 TIP 438232 899 6062953 2024-02-25 14:17:29.524 2024-02-25 14:17:29.524 1000 FEE 438257 21172 6062954 2024-02-25 14:17:29.524 2024-02-25 14:17:29.524 9000 TIP 438257 19502 6062974 2024-02-25 14:18:11.959 2024-02-25 14:18:11.959 1000 FEE 438294 16942 6062986 2024-02-25 14:18:51.309 2024-02-25 14:18:51.309 1000 FEE 437720 17331 6062987 2024-02-25 14:18:51.309 2024-02-25 14:18:51.309 9000 TIP 437720 11075 6062988 2024-02-25 14:18:51.772 2024-02-25 14:18:51.772 12800 FEE 437880 14795 6062989 2024-02-25 14:18:51.772 2024-02-25 14:18:51.772 115200 TIP 437880 20110 6063014 2024-02-25 14:22:55.242 2024-02-25 14:22:55.242 10000 FEE 438300 19235 6063045 2024-02-25 14:30:17.967 2024-02-25 14:30:17.967 21000 FEE 438306 21275 6063061 2024-02-25 14:33:58.828 2024-02-25 14:33:58.828 0 FEE 438310 664 6063063 2024-02-25 14:34:20.009 2024-02-25 14:34:20.009 0 FEE 438310 7097 6063085 2024-02-25 14:40:55.384 2024-02-25 14:40:55.384 6900 FEE 438209 8416 6063086 2024-02-25 14:40:55.384 2024-02-25 14:40:55.384 62100 TIP 438209 19193 6063105 2024-02-25 14:41:47.391 2024-02-25 14:41:47.391 1000 FEE 438313 20066 6063110 2024-02-25 14:43:05.064 2024-02-25 14:43:05.064 6900 FEE 438069 14941 6063111 2024-02-25 14:43:05.064 2024-02-25 14:43:05.064 62100 TIP 438069 1585 6063112 2024-02-25 14:43:41.071 2024-02-25 14:43:41.071 6900 FEE 438124 1626 6063113 2024-02-25 14:43:41.071 2024-02-25 14:43:41.071 62100 TIP 438124 21139 6063133 2024-02-25 14:47:28.339 2024-02-25 14:47:28.339 0 FEE 438318 20514 6063138 2024-02-25 14:48:43.539 2024-02-25 14:48:43.539 1000 FEE 438320 11862 6063142 2024-02-25 14:49:16.593 2024-02-25 14:49:16.593 6900 FEE 438065 2098 6063143 2024-02-25 14:49:16.593 2024-02-25 14:49:16.593 62100 TIP 438065 20904 6063146 2024-02-25 14:49:16.927 2024-02-25 14:49:16.927 6900 FEE 438065 999 6063147 2024-02-25 14:49:16.927 2024-02-25 14:49:16.927 62100 TIP 438065 19943 6063148 2024-02-25 14:49:17.059 2024-02-25 14:49:17.059 6900 FEE 438065 20912 6063149 2024-02-25 14:49:17.059 2024-02-25 14:49:17.059 62100 TIP 438065 15213 6063172 2024-02-25 14:50:08.484 2024-02-25 14:50:08.484 1100 FEE 438283 1705 6063173 2024-02-25 14:50:08.484 2024-02-25 14:50:08.484 9900 TIP 438283 12769 6063196 2024-02-25 14:53:11.561 2024-02-25 14:53:11.561 100 FEE 438232 854 6062373 2024-02-25 12:58:02.803 2024-02-25 12:58:02.803 1000 STREAM 141924 20454 6062396 2024-02-25 13:00:02.885 2024-02-25 13:00:02.885 1000 STREAM 141924 18180 6062410 2024-02-25 13:01:02.859 2024-02-25 13:01:02.859 1000 STREAM 141924 16447 6062514 2024-02-25 13:19:02.892 2024-02-25 13:19:02.892 1000 STREAM 141924 2016 6062523 2024-02-25 13:21:02.912 2024-02-25 13:21:02.912 1000 STREAM 141924 20554 6062546 2024-02-25 13:23:02.916 2024-02-25 13:23:02.916 1000 STREAM 141924 6327 6062547 2024-02-25 13:24:02.924 2024-02-25 13:24:02.924 1000 STREAM 141924 19557 6062573 2024-02-25 13:29:02.951 2024-02-25 13:29:02.951 1000 STREAM 141924 17094 6062583 2024-02-25 13:31:02.958 2024-02-25 13:31:02.958 1000 STREAM 141924 17116 6123257 2024-03-01 10:28:12.61 2024-03-01 10:28:12.61 1000 FEE 444365 7847 6123258 2024-03-01 10:28:12.61 2024-03-01 10:28:12.61 9000 TIP 444365 12245 6123314 2024-03-01 10:30:22.906 2024-03-01 10:30:22.906 1000 FEE 444726 19531 6123315 2024-03-01 10:30:22.906 2024-03-01 10:30:22.906 9000 TIP 444726 15367 6123320 2024-03-01 10:30:25.664 2024-03-01 10:30:25.664 1000 FEE 444718 9356 6123321 2024-03-01 10:30:25.664 2024-03-01 10:30:25.664 9000 TIP 444718 891 6123355 2024-03-01 10:31:00.05 2024-03-01 10:31:00.05 200 FEE 444730 20970 6123356 2024-03-01 10:31:00.05 2024-03-01 10:31:00.05 1800 TIP 444730 11018 6123360 2024-03-01 10:31:14.601 2024-03-01 10:31:14.601 1000 FEE 444689 1705 6123361 2024-03-01 10:31:14.601 2024-03-01 10:31:14.601 9000 TIP 444689 18472 6123368 2024-03-01 10:31:15.27 2024-03-01 10:31:15.27 1000 FEE 444689 5387 6123369 2024-03-01 10:31:15.27 2024-03-01 10:31:15.27 9000 TIP 444689 21374 6123378 2024-03-01 10:31:25.022 2024-03-01 10:31:25.022 1000 FEE 444720 8664 6123379 2024-03-01 10:31:25.022 2024-03-01 10:31:25.022 9000 TIP 444720 19690 6123397 2024-03-01 10:34:27.879 2024-03-01 10:34:27.879 100 FEE 444718 5171 6123398 2024-03-01 10:34:27.879 2024-03-01 10:34:27.879 900 TIP 444718 20439 6123405 2024-03-01 10:34:35.537 2024-03-01 10:34:35.537 100 FEE 439332 8954 6123406 2024-03-01 10:34:35.537 2024-03-01 10:34:35.537 900 TIP 439332 2437 6123420 2024-03-01 10:36:11.15 2024-03-01 10:36:11.15 10000 FEE 440521 19286 6123421 2024-03-01 10:36:11.15 2024-03-01 10:36:11.15 90000 TIP 440521 9347 6123427 2024-03-01 10:37:05.989 2024-03-01 10:37:05.989 1000 FEE 444742 21303 6123437 2024-03-01 10:40:13.693 2024-03-01 10:40:13.693 10000 FEE 444730 1478 6123438 2024-03-01 10:40:13.693 2024-03-01 10:40:13.693 90000 TIP 444730 19394 6123443 2024-03-01 10:42:08.599 2024-03-01 10:42:08.599 6900 FEE 443571 1438 6123444 2024-03-01 10:42:08.599 2024-03-01 10:42:08.599 62100 TIP 443571 13076 6123445 2024-03-01 10:42:17.309 2024-03-01 10:42:17.309 5700 FEE 444739 18372 6123446 2024-03-01 10:42:17.309 2024-03-01 10:42:17.309 51300 TIP 444739 4570 6123448 2024-03-01 10:42:42.106 2024-03-01 10:42:42.106 15000 FEE 444746 9366 6062418 2024-02-25 13:04:03.124 2024-02-25 13:04:03.124 1000 STREAM 141924 9333 6062446 2024-02-25 13:09:03.193 2024-02-25 13:09:03.193 1000 STREAM 141924 13599 6123303 2024-03-01 10:30:08.441 2024-03-01 10:30:08.441 1000 FEE 444186 16485 6123304 2024-03-01 10:30:08.441 2024-03-01 10:30:08.441 9000 TIP 444186 17927 6123345 2024-03-01 10:30:36.948 2024-03-01 10:30:36.948 1000 FEE 444691 2065 6123346 2024-03-01 10:30:36.948 2024-03-01 10:30:36.948 9000 TIP 444691 5694 6123388 2024-03-01 10:34:07.546 2024-03-01 10:34:07.546 1000 FEE 444736 17109 6123395 2024-03-01 10:34:17.872 2024-03-01 10:34:17.872 1000 FEE 444737 4074 6123396 2024-03-01 10:34:21.663 2024-03-01 10:34:21.663 1000 FEE 444738 11164 6123399 2024-03-01 10:34:28.122 2024-03-01 10:34:28.122 100 FEE 444718 14376 6123400 2024-03-01 10:34:28.122 2024-03-01 10:34:28.122 900 TIP 444718 18678 6123428 2024-03-01 10:37:39.255 2024-03-01 10:37:39.255 0 FEE 444735 2022 6123440 2024-03-01 10:41:37.211 2024-03-01 10:41:37.211 1000 FEE 444743 18314 6123441 2024-03-01 10:42:03.652 2024-03-01 10:42:03.652 1000 FEE 444744 5427 6123454 2024-03-01 10:43:47.002 2024-03-01 10:43:47.002 0 FEE 444737 3371 6123474 2024-03-01 10:46:25.31 2024-03-01 10:46:25.31 12100 FEE 223053 11996 6123475 2024-03-01 10:46:25.31 2024-03-01 10:46:25.31 108900 TIP 223053 12072 6123478 2024-03-01 10:47:26.341 2024-03-01 10:47:26.341 10000 FEE 444754 21249 6123486 2024-03-01 10:50:27.727 2024-03-01 10:50:27.727 1000 FEE 444757 21242 6123487 2024-03-01 10:50:29.863 2024-03-01 10:50:29.863 1600 FEE 444750 16660 6123488 2024-03-01 10:50:29.863 2024-03-01 10:50:29.863 14400 TIP 444750 16042 6123509 2024-03-01 10:53:12.424 2024-03-01 10:53:12.424 6900 FEE 443514 1817 6123510 2024-03-01 10:53:12.424 2024-03-01 10:53:12.424 62100 TIP 443514 11378 6123552 2024-03-01 10:58:43.387 2024-03-01 10:58:43.387 6900 FEE 444159 12738 6123553 2024-03-01 10:58:43.387 2024-03-01 10:58:43.387 62100 TIP 444159 11866 6123578 2024-03-01 11:01:46.952 2024-03-01 11:01:46.952 0 FEE 444771 19905 6123579 2024-03-01 11:01:47.779 2024-03-01 11:01:47.779 1000 FEE 444776 8729 6123591 2024-03-01 11:02:29.883 2024-03-01 11:02:29.883 1000 FEE 444779 12160 6123643 2024-03-01 11:06:31.92 2024-03-01 11:06:31.92 7600 FEE 444771 715 6123644 2024-03-01 11:06:31.92 2024-03-01 11:06:31.92 68400 TIP 444771 16789 6123659 2024-03-01 11:07:02.589 2024-03-01 11:07:02.589 1000 FEE 444707 16194 6123660 2024-03-01 11:07:02.589 2024-03-01 11:07:02.589 9000 TIP 444707 21155 6123663 2024-03-01 11:07:04.56 2024-03-01 11:07:04.56 1000 FEE 444648 10273 6123664 2024-03-01 11:07:04.56 2024-03-01 11:07:04.56 9000 TIP 444648 1401 6123667 2024-03-01 11:07:08.734 2024-03-01 11:07:08.734 1000 FEE 444662 17042 6123668 2024-03-01 11:07:08.734 2024-03-01 11:07:08.734 9000 TIP 444662 18241 6123694 2024-03-01 11:10:54.554 2024-03-01 11:10:54.554 100000 FEE 444804 21457 6123704 2024-03-01 11:12:20.619 2024-03-01 11:12:20.619 10000 FEE 444754 9427 6123705 2024-03-01 11:12:20.619 2024-03-01 11:12:20.619 90000 TIP 444754 899 6123713 2024-03-01 11:12:56.953 2024-03-01 11:12:56.953 1000 FEE 444660 18543 6123714 2024-03-01 11:12:56.953 2024-03-01 11:12:56.953 9000 TIP 444660 1245 6123758 2024-03-01 11:16:03.557 2024-03-01 11:16:03.557 1000 FEE 444813 18208 6123778 2024-03-01 11:18:53.333 2024-03-01 11:18:53.333 1000 FEE 444815 18412 6123797 2024-03-01 11:21:34.362 2024-03-01 11:21:34.362 1000 FEE 444821 20245 6062473 2024-02-25 13:14:02.807 2024-02-25 13:14:02.807 1000 STREAM 141924 9355 6062487 2024-02-25 13:15:02.847 2024-02-25 13:15:02.847 1000 STREAM 141924 2335 6062493 2024-02-25 13:16:02.892 2024-02-25 13:16:02.892 1000 STREAM 141924 4323 6062495 2024-02-25 13:17:02.896 2024-02-25 13:17:02.896 1000 STREAM 141924 16706 6062504 2024-02-25 13:18:02.907 2024-02-25 13:18:02.907 1000 STREAM 141924 16406 6062521 2024-02-25 13:20:02.902 2024-02-25 13:20:02.902 1000 STREAM 141924 9177 6062544 2024-02-25 13:22:02.919 2024-02-25 13:22:02.919 1000 STREAM 141924 13927 6062549 2024-02-25 13:25:02.932 2024-02-25 13:25:02.932 1000 STREAM 141924 20143 6062551 2024-02-25 13:26:02.946 2024-02-25 13:26:02.946 1000 STREAM 141924 1713 6062557 2024-02-25 13:27:02.953 2024-02-25 13:27:02.953 1000 STREAM 141924 18829 6062568 2024-02-25 13:28:02.975 2024-02-25 13:28:02.975 1000 STREAM 141924 1611 6062577 2024-02-25 13:30:02.984 2024-02-25 13:30:02.984 1000 STREAM 141924 6700 6123407 2024-03-01 10:34:49.574 2024-03-01 10:34:49.574 10000 FEE 444739 18269 6123423 2024-03-01 10:36:51.893 2024-03-01 10:36:51.893 1000 FEE 444741 21063 6123457 2024-03-01 10:44:34.902 2024-03-01 10:44:34.902 1000 FEE 444750 21062 6123463 2024-03-01 10:45:22.802 2024-03-01 10:45:22.802 1000 FEE 444751 2327 6123481 2024-03-01 10:49:59.197 2024-03-01 10:49:59.197 100000 FEE 444755 21339 6123498 2024-03-01 10:51:39.885 2024-03-01 10:51:39.885 1000 FEE 444759 827 6123504 2024-03-01 10:52:21.615 2024-03-01 10:52:21.615 0 FEE 444757 1726 6123505 2024-03-01 10:52:40.923 2024-03-01 10:52:40.923 0 FEE 444757 21303 6123514 2024-03-01 10:53:50.469 2024-03-01 10:53:50.469 6900 FEE 443857 21540 6123515 2024-03-01 10:53:50.469 2024-03-01 10:53:50.469 62100 TIP 443857 17710 6123516 2024-03-01 10:53:55.424 2024-03-01 10:53:55.424 1000 FEE 444762 19151 6123531 2024-03-01 10:57:00.893 2024-03-01 10:57:00.893 7600 FEE 444746 900 6123532 2024-03-01 10:57:00.893 2024-03-01 10:57:00.893 68400 TIP 444746 18664 6123576 2024-03-01 11:01:24.919 2024-03-01 11:01:24.919 100000 FEE 444774 1208 6123603 2024-03-01 11:03:50.441 2024-03-01 11:03:50.441 1000 FEE 444783 21044 6123606 2024-03-01 11:04:12.578 2024-03-01 11:04:12.578 1000 FEE 444785 8926 6123607 2024-03-01 11:04:15.394 2024-03-01 11:04:15.394 2100 FEE 443723 14990 6123608 2024-03-01 11:04:15.394 2024-03-01 11:04:15.394 18900 TIP 443723 16194 6123624 2024-03-01 11:04:49.337 2024-03-01 11:04:49.337 0 FEE 444785 1692 6123626 2024-03-01 11:05:01.201 2024-03-01 11:05:01.201 1000 FEE 444787 2718 6123628 2024-03-01 11:05:11.16 2024-03-01 11:05:11.16 3200 FEE 444780 19637 6123629 2024-03-01 11:05:11.16 2024-03-01 11:05:11.16 28800 TIP 444780 12289 6123635 2024-03-01 11:05:52.82 2024-03-01 11:05:52.82 1000 FEE 444773 12334 6123636 2024-03-01 11:05:52.82 2024-03-01 11:05:52.82 9000 TIP 444773 928 6123650 2024-03-01 11:06:58.333 2024-03-01 11:06:58.333 1000 FEE 444790 20133 6123651 2024-03-01 11:06:58.333 2024-03-01 11:06:58.333 9000 TIP 444790 21274 6123652 2024-03-01 11:06:59.057 2024-03-01 11:06:59.057 0 FEE 444791 1175 6123671 2024-03-01 11:07:29.698 2024-03-01 11:07:29.698 1000 FEE 444795 1286 6123672 2024-03-01 11:07:30.802 2024-03-01 11:07:30.802 1000 FEE 444771 21138 6123673 2024-03-01 11:07:30.802 2024-03-01 11:07:30.802 9000 TIP 444771 7960 6123675 2024-03-01 11:07:50.117 2024-03-01 11:07:50.117 1000 FEE 444522 15556 6123676 2024-03-01 11:07:50.117 2024-03-01 11:07:50.117 9000 TIP 444522 21070 6123679 2024-03-01 11:09:09.837 2024-03-01 11:09:09.837 1000 FEE 444797 9352 6123685 2024-03-01 11:10:10.37 2024-03-01 11:10:10.37 100000 FEE 444800 2780 6123708 2024-03-01 11:12:50.431 2024-03-01 11:12:50.431 10000 FEE 444808 5578 6123719 2024-03-01 11:12:58.98 2024-03-01 11:12:58.98 1000 FEE 444702 8570 6123720 2024-03-01 11:12:58.98 2024-03-01 11:12:58.98 9000 TIP 444702 1245 6123742 2024-03-01 11:13:27.848 2024-03-01 11:13:27.848 2100 FEE 444807 18904 6123743 2024-03-01 11:13:27.848 2024-03-01 11:13:27.848 18900 TIP 444807 2749 6123749 2024-03-01 11:14:02.363 2024-03-01 11:14:02.363 0 FEE 444803 19987 6123753 2024-03-01 11:15:01.182 2024-03-01 11:15:01.182 2100 FEE 444809 10311 6123754 2024-03-01 11:15:01.182 2024-03-01 11:15:01.182 18900 TIP 444809 12072 6123766 2024-03-01 11:16:23.403 2024-03-01 11:16:23.403 1100 FEE 444759 20781 6123767 2024-03-01 11:16:23.403 2024-03-01 11:16:23.403 9900 TIP 444759 21591 6123779 2024-03-01 11:18:56.562 2024-03-01 11:18:56.562 1100 FEE 444784 21532 6123780 2024-03-01 11:18:56.562 2024-03-01 11:18:56.562 9900 TIP 444784 20299 6123788 2024-03-01 11:20:10.511 2024-03-01 11:20:10.511 1000 FEE 444817 13903 6123789 2024-03-01 11:20:20.212 2024-03-01 11:20:20.212 2100 FEE 444816 8037 6123790 2024-03-01 11:20:20.212 2024-03-01 11:20:20.212 18900 TIP 444816 21356 6123795 2024-03-01 11:20:51.404 2024-03-01 11:20:51.404 1000 FEE 444820 19153 6123867 2024-03-01 11:30:11.479 2024-03-01 11:30:11.479 3100 FEE 260178 21048 6123868 2024-03-01 11:30:11.479 2024-03-01 11:30:11.479 27900 TIP 260178 675 6123871 2024-03-01 11:30:32.236 2024-03-01 11:30:32.236 1000 FEE 444840 3440 6123955 2024-03-01 11:48:39.113 2024-03-01 11:48:39.113 2100 FEE 444842 641 6123956 2024-03-01 11:48:39.113 2024-03-01 11:48:39.113 18900 TIP 444842 701 6124000 2024-03-01 11:53:10.564 2024-03-01 11:53:10.564 1000 FEE 444863 20706 6124001 2024-03-01 11:53:14.812 2024-03-01 11:53:14.812 1000 FEE 444864 1261 6124024 2024-03-01 11:54:17.882 2024-03-01 11:54:17.882 0 FEE 444859 14990 6124027 2024-03-01 11:54:47.955 2024-03-01 11:54:47.955 1000 FEE 444867 20858 6124028 2024-03-01 11:54:49.489 2024-03-01 11:54:49.489 2100 FEE 444815 2022 6124029 2024-03-01 11:54:49.489 2024-03-01 11:54:49.489 18900 TIP 444815 17535 6124040 2024-03-01 11:56:32.074 2024-03-01 11:56:32.074 200 FEE 443490 814 6124041 2024-03-01 11:56:32.074 2024-03-01 11:56:32.074 1800 TIP 443490 685 6124061 2024-03-01 11:58:35.36 2024-03-01 11:58:35.36 100000 FEE 444874 18892 6124079 2024-03-01 12:01:43.387 2024-03-01 12:01:43.387 500 FEE 444168 21262 6124080 2024-03-01 12:01:43.387 2024-03-01 12:01:43.387 4500 TIP 444168 11648 6124090 2024-03-01 12:03:45.692 2024-03-01 12:03:45.692 1000 FEE 444848 20663 6124091 2024-03-01 12:03:45.692 2024-03-01 12:03:45.692 9000 TIP 444848 21083 6124101 2024-03-01 12:05:16.327 2024-03-01 12:05:16.327 1700 FEE 444755 21406 6124102 2024-03-01 12:05:16.327 2024-03-01 12:05:16.327 15300 TIP 444755 6430 6124113 2024-03-01 12:05:23.758 2024-03-01 12:05:23.758 1700 FEE 444842 15351 6124114 2024-03-01 12:05:23.758 2024-03-01 12:05:23.758 15300 TIP 444842 15594 6124115 2024-03-01 12:05:23.943 2024-03-01 12:05:23.943 1700 FEE 444842 20045 6124116 2024-03-01 12:05:23.943 2024-03-01 12:05:23.943 15300 TIP 444842 16126 6124121 2024-03-01 12:05:35.57 2024-03-01 12:05:35.57 1700 FEE 444755 14385 6124122 2024-03-01 12:05:35.57 2024-03-01 12:05:35.57 15300 TIP 444755 19810 6124128 2024-03-01 12:06:54.641 2024-03-01 12:06:54.641 1000 FEE 444887 4768 6124161 2024-03-01 12:12:24.153 2024-03-01 12:12:24.153 3400 FEE 444561 19284 6124162 2024-03-01 12:12:24.153 2024-03-01 12:12:24.153 30600 TIP 444561 7809 6124176 2024-03-01 12:13:43.071 2024-03-01 12:13:43.071 1000 FEE 444687 2056 6124177 2024-03-01 12:13:43.071 2024-03-01 12:13:43.071 9000 TIP 444687 18154 6124209 2024-03-01 12:21:03.941 2024-03-01 12:21:03.941 7700 FEE 444823 9517 6124210 2024-03-01 12:21:03.941 2024-03-01 12:21:03.941 69300 TIP 444823 9494 6062499 2024-02-25 13:17:37.955 2024-02-25 13:17:37.955 1000 FEE 438223 12222 6062517 2024-02-25 13:19:27.865 2024-02-25 13:19:27.865 4000 FEE 438224 16598 6062518 2024-02-25 13:19:27.865 2024-02-25 13:19:27.865 36000 TIP 438224 17218 6062545 2024-02-25 13:22:27.574 2024-02-25 13:22:27.574 1000 FEE 438227 5519 6062548 2024-02-25 13:24:37.422 2024-02-25 13:24:37.422 1000 FEE 438228 21522 6062566 2024-02-25 13:27:56.062 2024-02-25 13:27:56.062 4000 FEE 438232 768 6062567 2024-02-25 13:27:56.062 2024-02-25 13:27:56.062 36000 TIP 438232 1673 6062578 2024-02-25 13:30:18.045 2024-02-25 13:30:18.045 0 FEE 438235 21136 6062579 2024-02-25 13:30:33.528 2024-02-25 13:30:33.528 2100 FEE 438232 16124 6062580 2024-02-25 13:30:33.528 2024-02-25 13:30:33.528 18900 TIP 438232 8326 6062592 2024-02-25 13:32:59.328 2024-02-25 13:32:59.328 1000 FEE 438239 20514 6062617 2024-02-25 13:39:49.526 2024-02-25 13:39:49.526 800 FEE 438243 8287 6062618 2024-02-25 13:39:49.526 2024-02-25 13:39:49.526 7200 TIP 438243 726 6062619 2024-02-25 13:39:49.773 2024-02-25 13:39:49.773 800 FEE 438243 19857 6062620 2024-02-25 13:39:49.773 2024-02-25 13:39:49.773 7200 TIP 438243 4173 6062629 2024-02-25 13:41:03.653 2024-02-25 13:41:03.653 1000 FEE 438244 12265 6062663 2024-02-25 13:50:28.57 2024-02-25 13:50:28.57 2100 FEE 438189 8506 6062664 2024-02-25 13:50:28.57 2024-02-25 13:50:28.57 18900 TIP 438189 18017 6062667 2024-02-25 13:50:37.386 2024-02-25 13:50:37.386 2100 FEE 434814 16329 6062668 2024-02-25 13:50:37.386 2024-02-25 13:50:37.386 18900 TIP 434814 1618 6062714 2024-02-25 13:54:39.99 2024-02-25 13:54:39.99 2100 FEE 438201 12821 6062715 2024-02-25 13:54:39.99 2024-02-25 13:54:39.99 18900 TIP 438201 14705 6062720 2024-02-25 13:54:51.001 2024-02-25 13:54:51.001 2100 FEE 438178 1584 6062721 2024-02-25 13:54:51.001 2024-02-25 13:54:51.001 18900 TIP 438178 8400 6062729 2024-02-25 13:55:03.928 2024-02-25 13:55:03.928 2100 FEE 438096 635 6062730 2024-02-25 13:55:03.928 2024-02-25 13:55:03.928 18900 TIP 438096 4650 6062742 2024-02-25 13:56:42.462 2024-02-25 13:56:42.462 2100 FEE 438262 15147 6062743 2024-02-25 13:56:42.462 2024-02-25 13:56:42.462 18900 TIP 438262 17046 6062758 2024-02-25 13:57:42.534 2024-02-25 13:57:42.534 0 FEE 438261 12566 6062771 2024-02-25 13:58:19.765 2024-02-25 13:58:19.765 0 FEE 438261 10393 6062774 2024-02-25 13:58:39.779 2024-02-25 13:58:39.779 2100 FEE 437943 19033 6062775 2024-02-25 13:58:39.779 2024-02-25 13:58:39.779 18900 TIP 437943 622 6062801 2024-02-25 14:00:03.092 2024-02-25 14:00:03.092 2000 FEE 438209 21228 6062802 2024-02-25 14:00:03.092 2024-02-25 14:00:03.092 18000 TIP 438209 7673 6062807 2024-02-25 14:01:31.544 2024-02-25 14:01:31.544 1000 FEE 438269 9331 6062829 2024-02-25 14:04:05.84 2024-02-25 14:04:05.84 2100 FEE 437611 6533 6062830 2024-02-25 14:04:05.84 2024-02-25 14:04:05.84 18900 TIP 437611 825 6062868 2024-02-25 14:08:03.905 2024-02-25 14:08:03.905 100000 FEE 438278 2162 6062876 2024-02-25 14:09:22.423 2024-02-25 14:09:22.423 10000 FEE 438282 18909 6062879 2024-02-25 14:10:06.605 2024-02-25 14:10:06.605 1000 FEE 438284 5761 6062881 2024-02-25 14:10:27.873 2024-02-25 14:10:27.873 1000000 DONT_LIKE_THIS 438191 2459 6062912 2024-02-25 14:15:20.743 2024-02-25 14:15:20.743 5000 FEE 438276 16042 6062913 2024-02-25 14:15:20.743 2024-02-25 14:15:20.743 45000 TIP 438276 2039 6062914 2024-02-25 14:15:21.161 2024-02-25 14:15:21.161 2100 FEE 438255 16912 6062915 2024-02-25 14:15:21.161 2024-02-25 14:15:21.161 18900 TIP 438255 994 6062932 2024-02-25 14:17:00.972 2024-02-25 14:17:00.972 1000 FEE 438065 17030 6062933 2024-02-25 14:17:00.972 2024-02-25 14:17:00.972 9000 TIP 438065 4304 6062935 2024-02-25 14:17:03.055 2024-02-25 14:17:03.055 4000 FEE 438255 6602 6062936 2024-02-25 14:17:03.055 2024-02-25 14:17:03.055 36000 TIP 438255 21155 6062948 2024-02-25 14:17:17.602 2024-02-25 14:17:17.602 6900 FEE 438232 2724 6062949 2024-02-25 14:17:17.602 2024-02-25 14:17:17.602 62100 TIP 438232 2710 6062955 2024-02-25 14:17:31.917 2024-02-25 14:17:31.917 1000 FEE 438242 10112 6062956 2024-02-25 14:17:31.917 2024-02-25 14:17:31.917 9000 TIP 438242 5752 6062969 2024-02-25 14:17:57.718 2024-02-25 14:17:57.718 1000 FEE 438201 17526 6062970 2024-02-25 14:17:57.718 2024-02-25 14:17:57.718 9000 TIP 438201 12911 6062972 2024-02-25 14:18:06.264 2024-02-25 14:18:06.264 1000 FEE 438186 17708 6062973 2024-02-25 14:18:06.264 2024-02-25 14:18:06.264 9000 TIP 438186 9346 6062984 2024-02-25 14:18:50.114 2024-02-25 14:18:50.114 1000 FEE 437966 9347 6062985 2024-02-25 14:18:50.114 2024-02-25 14:18:50.114 9000 TIP 437966 618 6062993 2024-02-25 14:19:28.818 2024-02-25 14:19:28.818 1000 FEE 438295 4574 6062513 2024-02-25 13:19:00.902 2024-02-25 13:19:00.902 900 TIP 438157 5069 6062530 2024-02-25 13:21:18.162 2024-02-25 13:21:18.162 100 FEE 438156 946 6062531 2024-02-25 13:21:18.162 2024-02-25 13:21:18.162 900 TIP 438156 8505 6062542 2024-02-25 13:21:21.974 2024-02-25 13:21:21.974 100 FEE 438156 2703 6062543 2024-02-25 13:21:21.974 2024-02-25 13:21:21.974 900 TIP 438156 6687 6062561 2024-02-25 13:27:09.339 2024-02-25 13:27:09.339 2100 FEE 438188 15488 6062562 2024-02-25 13:27:09.339 2024-02-25 13:27:09.339 18900 TIP 438188 18232 6062582 2024-02-25 13:30:54.856 2024-02-25 13:30:54.856 1000 FEE 438237 18673 6062616 2024-02-25 13:39:08.289 2024-02-25 13:39:08.289 100000 FEE 438243 956 6062630 2024-02-25 13:41:24.852 2024-02-25 13:41:24.852 10000 FEE 418596 19857 6062631 2024-02-25 13:41:24.852 2024-02-25 13:41:24.852 90000 TIP 418596 19033 6062660 2024-02-25 13:50:12.281 2024-02-25 13:50:12.281 1000 FEE 438254 940 6062661 2024-02-25 13:50:24.886 2024-02-25 13:50:24.886 2100 FEE 438240 20715 6062662 2024-02-25 13:50:24.886 2024-02-25 13:50:24.886 18900 TIP 438240 13759 6062684 2024-02-25 13:51:27.424 2024-02-25 13:51:27.424 2100 FEE 438148 9969 6062685 2024-02-25 13:51:27.424 2024-02-25 13:51:27.424 18900 TIP 438148 20073 6062690 2024-02-25 13:51:36.777 2024-02-25 13:51:36.777 2100 FEE 438185 19282 6062691 2024-02-25 13:51:36.777 2024-02-25 13:51:36.777 18900 TIP 438185 21344 6062692 2024-02-25 13:51:51.864 2024-02-25 13:51:51.864 0 FEE 438256 10013 6062710 2024-02-25 13:54:36.779 2024-02-25 13:54:36.779 2100 FEE 438222 1673 6062711 2024-02-25 13:54:36.779 2024-02-25 13:54:36.779 18900 TIP 438222 20163 6062718 2024-02-25 13:54:47.808 2024-02-25 13:54:47.808 2100 FEE 438175 13132 6062719 2024-02-25 13:54:47.808 2024-02-25 13:54:47.808 18900 TIP 438175 8796 6062726 2024-02-25 13:55:02.133 2024-02-25 13:55:02.133 2100 FEE 438114 19886 6062727 2024-02-25 13:55:02.133 2024-02-25 13:55:02.133 18900 TIP 438114 1602 6062731 2024-02-25 13:55:11.919 2024-02-25 13:55:11.919 1000 FEE 438261 20924 6062737 2024-02-25 13:56:11.601 2024-02-25 13:56:11.601 1000 FEE 438254 7674 6062738 2024-02-25 13:56:11.601 2024-02-25 13:56:11.601 9000 TIP 438254 16442 6062739 2024-02-25 13:56:18.236 2024-02-25 13:56:18.236 1000 FEE 438262 9365 6062741 2024-02-25 13:56:28.301 2024-02-25 13:56:28.301 0 FEE 438261 6555 6062746 2024-02-25 13:56:51.795 2024-02-25 13:56:51.795 0 FEE 438262 19640 6062752 2024-02-25 13:57:12.293 2024-02-25 13:57:12.293 2100 FEE 438253 11423 6062753 2024-02-25 13:57:12.293 2024-02-25 13:57:12.293 18900 TIP 438253 8242 6062759 2024-02-25 13:57:43.835 2024-02-25 13:57:43.835 1000 FEE 438247 21395 6062760 2024-02-25 13:57:43.835 2024-02-25 13:57:43.835 9000 TIP 438247 11378 6062769 2024-02-25 13:58:08.12 2024-02-25 13:58:08.12 2100 FEE 438016 19613 6062770 2024-02-25 13:58:08.12 2024-02-25 13:58:08.12 18900 TIP 438016 15226 6062787 2024-02-25 13:59:14.49 2024-02-25 13:59:14.49 1000 FEE 435328 12736 6062788 2024-02-25 13:59:14.49 2024-02-25 13:59:14.49 9000 TIP 435328 20502 6062816 2024-02-25 14:03:54.572 2024-02-25 14:03:54.572 2100 FEE 438065 17291 6062817 2024-02-25 14:03:54.572 2024-02-25 14:03:54.572 18900 TIP 438065 770 6062860 2024-02-25 14:06:35.118 2024-02-25 14:06:35.118 1000 FEE 438276 7185 6062865 2024-02-25 14:07:42.221 2024-02-25 14:07:42.221 1000 FEE 438277 749 6062871 2024-02-25 14:08:55.171 2024-02-25 14:08:55.171 1000 FEE 438280 19770 6062875 2024-02-25 14:09:05.655 2024-02-25 14:09:05.655 1000 FEE 438281 861 6062890 2024-02-25 14:12:42.094 2024-02-25 14:12:42.094 1000 FEE 438285 18664 6062891 2024-02-25 14:12:54.211 2024-02-25 14:12:54.211 2100 FEE 438143 732 6062892 2024-02-25 14:12:54.211 2024-02-25 14:12:54.211 18900 TIP 438143 11967 6062902 2024-02-25 14:13:57.168 2024-02-25 14:13:57.168 0 FEE 438285 19507 6062917 2024-02-25 14:15:45.062 2024-02-25 14:15:45.062 1000 FEE 438188 20243 6062918 2024-02-25 14:15:45.062 2024-02-25 14:15:45.062 9000 TIP 438188 18660 6062921 2024-02-25 14:16:18.564 2024-02-25 14:16:18.564 1000 FEE 438282 20713 6062922 2024-02-25 14:16:18.564 2024-02-25 14:16:18.564 9000 TIP 438282 19151 6062938 2024-02-25 14:17:07.407 2024-02-25 14:17:07.407 4000 FEE 438286 11275 6062939 2024-02-25 14:17:07.407 2024-02-25 14:17:07.407 36000 TIP 438286 1298 6062960 2024-02-25 14:17:36.254 2024-02-25 14:17:36.254 1000 FEE 438258 1647 6062961 2024-02-25 14:17:36.254 2024-02-25 14:17:36.254 9000 TIP 438258 4989 6062967 2024-02-25 14:17:53.525 2024-02-25 14:17:53.525 1000 FEE 438220 21323 6062968 2024-02-25 14:17:53.525 2024-02-25 14:17:53.525 9000 TIP 438220 16440 6062980 2024-02-25 14:18:35.487 2024-02-25 14:18:35.487 1000 FEE 438277 814 6062981 2024-02-25 14:18:35.487 2024-02-25 14:18:35.487 9000 TIP 438277 20577 6062982 2024-02-25 14:18:48.182 2024-02-25 14:18:48.182 1000 FEE 438231 13547 6062983 2024-02-25 14:18:48.182 2024-02-25 14:18:48.182 9000 TIP 438231 19320 6062994 2024-02-25 14:19:37.827 2024-02-25 14:19:37.827 1000 FEE 438296 20892 6063001 2024-02-25 14:22:02.898 2024-02-25 14:22:02.898 2100 FEE 437893 7983 6063002 2024-02-25 14:22:02.898 2024-02-25 14:22:02.898 18900 TIP 437893 2639 6063029 2024-02-25 14:26:04.064 2024-02-25 14:26:04.064 25000 FEE 437771 1493 6063030 2024-02-25 14:26:04.064 2024-02-25 14:26:04.064 225000 TIP 437771 18068 6063040 2024-02-25 14:29:19.428 2024-02-25 14:29:19.428 1100 FEE 438288 19007 6063041 2024-02-25 14:29:19.428 2024-02-25 14:29:19.428 9900 TIP 438288 21541 6063051 2024-02-25 14:31:46.509 2024-02-25 14:31:46.509 0 FEE 438304 11263 6063070 2024-02-25 14:36:14.902 2024-02-25 14:36:14.902 0 FEE 438310 20370 6063072 2024-02-25 14:36:44.437 2024-02-25 14:36:44.437 0 FEE 438310 14267 6063101 2024-02-25 14:40:56.833 2024-02-25 14:40:56.833 6900 FEE 438209 749 6063102 2024-02-25 14:40:56.833 2024-02-25 14:40:56.833 62100 TIP 438209 19843 6063120 2024-02-25 14:44:25.714 2024-02-25 14:44:25.714 1000 FEE 438315 8080 6063139 2024-02-25 14:48:55.44 2024-02-25 14:48:55.44 0 FEE 438320 10469 6063164 2024-02-25 14:49:47.535 2024-02-25 14:49:47.535 1000 FEE 438321 666 6063167 2024-02-25 14:49:52.313 2024-02-25 14:49:52.313 1100 FEE 438209 16145 6063168 2024-02-25 14:49:52.313 2024-02-25 14:49:52.313 9900 TIP 438209 18368 6063184 2024-02-25 14:51:57.847 2024-02-25 14:51:57.847 1100 FEE 438226 18269 6063185 2024-02-25 14:51:57.847 2024-02-25 14:51:57.847 9900 TIP 438226 18154 6063191 2024-02-25 14:52:52.362 2024-02-25 14:52:52.362 500 FEE 438232 21413 6063192 2024-02-25 14:52:52.362 2024-02-25 14:52:52.362 4500 TIP 438232 20156 6063193 2024-02-25 14:52:56.504 2024-02-25 14:52:56.504 0 FEE 438320 1817 6063198 2024-02-25 14:53:21.301 2024-02-25 14:53:21.301 1000 FEE 438324 20560 6063208 2024-02-25 14:54:21.112 2024-02-25 14:54:21.112 900 FEE 438171 20059 6063209 2024-02-25 14:54:21.112 2024-02-25 14:54:21.112 8100 TIP 438171 780 6063210 2024-02-25 14:54:21.158 2024-02-25 14:54:21.158 9000 FEE 438171 10484 6063211 2024-02-25 14:54:21.158 2024-02-25 14:54:21.158 81000 TIP 438171 16267 6063218 2024-02-25 14:54:53.852 2024-02-25 14:54:53.852 9000 FEE 438092 9695 6063219 2024-02-25 14:54:53.852 2024-02-25 14:54:53.852 81000 TIP 438092 17552 6063233 2024-02-25 14:56:25.722 2024-02-25 14:56:25.722 0 FEE 438325 2098 6063235 2024-02-25 14:57:15.533 2024-02-25 14:57:15.533 1000 FEE 438319 21603 6063236 2024-02-25 14:57:15.533 2024-02-25 14:57:15.533 9000 TIP 438319 17172 6063238 2024-02-25 14:58:01.983 2024-02-25 14:58:01.983 1000 FEE 438329 20603 6063244 2024-02-25 14:58:12.168 2024-02-25 14:58:12.168 4000 FEE 438328 19267 6063245 2024-02-25 14:58:12.168 2024-02-25 14:58:12.168 36000 TIP 438328 19537 6063246 2024-02-25 14:58:17.369 2024-02-25 14:58:17.369 9000 FEE 438065 20701 6063247 2024-02-25 14:58:17.369 2024-02-25 14:58:17.369 81000 TIP 438065 1272 6063273 2024-02-25 14:59:25.564 2024-02-25 14:59:25.564 10000 FEE 438332 17798 6063278 2024-02-25 14:59:36.936 2024-02-25 14:59:36.936 900 FEE 438209 10342 6063279 2024-02-25 14:59:36.936 2024-02-25 14:59:36.936 8100 TIP 438209 16876 6063283 2024-02-25 14:59:47.502 2024-02-25 14:59:47.502 900 FEE 438202 10934 6063284 2024-02-25 14:59:47.502 2024-02-25 14:59:47.502 8100 TIP 438202 3396 6063315 2024-02-25 15:01:35.84 2024-02-25 15:01:35.84 4000 FEE 438332 16939 6062586 2024-02-25 13:32:03.538 2024-02-25 13:32:03.538 1000 STREAM 141924 17690 6062604 2024-02-25 13:35:03.501 2024-02-25 13:35:03.501 1000 STREAM 141924 10393 6062613 2024-02-25 13:38:03.553 2024-02-25 13:38:03.553 1000 STREAM 141924 14152 6062615 2024-02-25 13:39:03.549 2024-02-25 13:39:03.549 1000 STREAM 141924 20825 6062621 2024-02-25 13:40:03.574 2024-02-25 13:40:03.574 1000 STREAM 141924 19815 6062637 2024-02-25 13:43:03.537 2024-02-25 13:43:03.537 1000 STREAM 141924 19773 6123409 2024-03-01 10:35:04.78 2024-03-01 10:35:04.78 1000 STREAM 141924 1617 6123419 2024-03-01 10:36:06.788 2024-03-01 10:36:06.788 1000 STREAM 141924 634 6123429 2024-03-01 10:38:04.789 2024-03-01 10:38:04.789 1000 STREAM 141924 697 6123436 2024-03-01 10:40:04.836 2024-03-01 10:40:04.836 1000 STREAM 141924 18904 6123455 2024-03-01 10:44:06.909 2024-03-01 10:44:06.909 1000 STREAM 141924 10060 6123468 2024-03-01 10:46:04.936 2024-03-01 10:46:04.936 1000 STREAM 141924 17321 6123477 2024-03-01 10:47:04.917 2024-03-01 10:47:04.917 1000 STREAM 141924 739 6123480 2024-03-01 10:49:04.948 2024-03-01 10:49:04.948 1000 STREAM 141924 8242 6123482 2024-03-01 10:50:04.97 2024-03-01 10:50:04.97 1000 STREAM 141924 21155 6123503 2024-03-01 10:52:04.958 2024-03-01 10:52:04.958 1000 STREAM 141924 16178 6123508 2024-03-01 10:53:04.971 2024-03-01 10:53:04.971 1000 STREAM 141924 16556 6123517 2024-03-01 10:54:04.977 2024-03-01 10:54:04.977 1000 STREAM 141924 909 6123533 2024-03-01 10:57:05.026 2024-03-01 10:57:05.026 1000 STREAM 141924 2942 6123562 2024-03-01 11:00:05.097 2024-03-01 11:00:05.097 1000 STREAM 141924 1298 6123582 2024-03-01 11:02:05.059 2024-03-01 11:02:05.059 1000 STREAM 141924 4035 6123604 2024-03-01 11:04:05.092 2024-03-01 11:04:05.092 1000 STREAM 141924 9517 6123910 2024-03-01 11:42:03.673 2024-03-01 11:42:03.673 1000 STREAM 141924 19138 6124123 2024-03-01 12:06:03.799 2024-03-01 12:06:03.799 1000 STREAM 141924 20190 6124159 2024-03-01 12:12:01.804 2024-03-01 12:12:01.804 1000 STREAM 141924 18690 6124219 2024-03-01 12:22:01.863 2024-03-01 12:22:01.863 1000 STREAM 141924 7992 6062595 2024-02-25 13:33:03.967 2024-02-25 13:33:03.967 1000 STREAM 141924 12368 6062646 2024-02-25 13:46:03.549 2024-02-25 13:46:03.549 1000 STREAM 141924 15200 6062693 2024-02-25 13:52:03.549 2024-02-25 13:52:03.549 1000 STREAM 141924 20183 6062702 2024-02-25 13:53:03.581 2024-02-25 13:53:03.581 1000 STREAM 141924 2748 6062728 2024-02-25 13:55:03.576 2024-02-25 13:55:03.576 1000 STREAM 141924 15833 6123471 2024-03-01 10:46:21.253 2024-03-01 10:46:21.253 5700 FEE 444751 20439 6123472 2024-03-01 10:46:21.253 2024-03-01 10:46:21.253 51300 TIP 444751 19581 6123473 2024-03-01 10:46:23.343 2024-03-01 10:46:23.343 1000 FEE 444752 19030 6123489 2024-03-01 10:50:38.085 2024-03-01 10:50:38.085 22200 FEE 222527 18529 6123490 2024-03-01 10:50:38.085 2024-03-01 10:50:38.085 199800 TIP 222527 21541 6123496 2024-03-01 10:51:20.508 2024-03-01 10:51:20.508 7600 FEE 444755 5387 6123497 2024-03-01 10:51:20.508 2024-03-01 10:51:20.508 68400 TIP 444755 1224 6123500 2024-03-01 10:51:54.03 2024-03-01 10:51:54.03 0 FEE 444757 2256 6123512 2024-03-01 10:53:25.408 2024-03-01 10:53:25.408 0 FEE 444757 20778 6123550 2024-03-01 10:58:38.86 2024-03-01 10:58:38.86 1000 FEE 444730 959 6123551 2024-03-01 10:58:38.86 2024-03-01 10:58:38.86 9000 TIP 444730 8506 6123554 2024-03-01 10:58:59.678 2024-03-01 10:58:59.678 1000 FEE 444769 3456 6123580 2024-03-01 11:01:52.272 2024-03-01 11:01:52.272 2100 FEE 444738 7992 6123581 2024-03-01 11:01:52.272 2024-03-01 11:01:52.272 18900 TIP 444738 16229 6123601 2024-03-01 11:03:30.647 2024-03-01 11:03:30.647 500 FEE 444740 11091 6123602 2024-03-01 11:03:30.647 2024-03-01 11:03:30.647 4500 TIP 444740 18678 6123605 2024-03-01 11:04:06.193 2024-03-01 11:04:06.193 1000 FEE 444784 16250 6123609 2024-03-01 11:04:15.907 2024-03-01 11:04:15.907 2100 FEE 443723 15239 6123610 2024-03-01 11:04:15.907 2024-03-01 11:04:15.907 18900 TIP 443723 19462 6123611 2024-03-01 11:04:16.364 2024-03-01 11:04:16.364 2100 FEE 443723 5173 6123612 2024-03-01 11:04:16.364 2024-03-01 11:04:16.364 18900 TIP 443723 9200 6123623 2024-03-01 11:04:43.084 2024-03-01 11:04:43.084 0 FEE 444785 658 6123632 2024-03-01 11:05:43.396 2024-03-01 11:05:43.396 1000 FEE 444781 14295 6123633 2024-03-01 11:05:43.396 2024-03-01 11:05:43.396 9000 TIP 444781 20156 6123637 2024-03-01 11:05:57.647 2024-03-01 11:05:57.647 100000 FEE 444790 12169 6123647 2024-03-01 11:06:36.874 2024-03-01 11:06:36.874 7600 FEE 444782 16505 6123648 2024-03-01 11:06:36.874 2024-03-01 11:06:36.874 68400 TIP 444782 16809 6123669 2024-03-01 11:07:25.912 2024-03-01 11:07:25.912 1600 FEE 444785 2529 6123670 2024-03-01 11:07:25.912 2024-03-01 11:07:25.912 14400 TIP 444785 20015 6123696 2024-03-01 11:11:06.271 2024-03-01 11:11:06.271 1000 FEE 444805 12609 6123732 2024-03-01 11:13:19.787 2024-03-01 11:13:19.787 10000 FEE 444746 21421 6123733 2024-03-01 11:13:19.787 2024-03-01 11:13:19.787 90000 TIP 444746 5195 6123748 2024-03-01 11:13:50.916 2024-03-01 11:13:50.916 1000 FEE 444809 2508 6123752 2024-03-01 11:14:38.839 2024-03-01 11:14:38.839 1000 FEE 444810 12368 6123785 2024-03-01 11:19:30.137 2024-03-01 11:19:30.137 0 FEE 444814 15594 6123792 2024-03-01 11:20:33.147 2024-03-01 11:20:33.147 1000 FEE 444819 18945 6123819 2024-03-01 11:26:17.258 2024-03-01 11:26:17.258 1000 FEE 444779 2328 6123820 2024-03-01 11:26:17.258 2024-03-01 11:26:17.258 9000 TIP 444779 21281 6123842 2024-03-01 11:28:20.213 2024-03-01 11:28:20.213 1000 FEE 444835 895 6123857 2024-03-01 11:29:13.019 2024-03-01 11:29:13.019 1000 FEE 444801 18311 6123858 2024-03-01 11:29:13.019 2024-03-01 11:29:13.019 9000 TIP 444801 20577 6123860 2024-03-01 11:29:36.603 2024-03-01 11:29:36.603 10000 FEE 444739 9350 6123861 2024-03-01 11:29:36.603 2024-03-01 11:29:36.603 90000 TIP 444739 20861 6123864 2024-03-01 11:30:00.499 2024-03-01 11:30:00.499 0 FEE 444832 1745 6123876 2024-03-01 11:31:55.199 2024-03-01 11:31:55.199 0 FEE 444839 8841 6123882 2024-03-01 11:33:19.429 2024-03-01 11:33:19.429 1000 FEE 444841 654 6123935 2024-03-01 11:47:40.304 2024-03-01 11:47:40.304 5000 FEE 443593 17693 6062639 2024-02-25 13:44:03.558 2024-02-25 13:44:03.558 1000 STREAM 141924 16842 6062736 2024-02-25 13:56:03.6 2024-02-25 13:56:03.6 1000 STREAM 141924 10273 6062768 2024-02-25 13:58:03.609 2024-02-25 13:58:03.609 1000 STREAM 141924 10554 6123593 2024-03-01 11:02:38.008 2024-03-01 11:02:38.008 18900 TIP 444762 21057 6123595 2024-03-01 11:02:44.416 2024-03-01 11:02:44.416 3300 FEE 444775 17602 6123596 2024-03-01 11:02:44.416 2024-03-01 11:02:44.416 29700 TIP 444775 7766 6123597 2024-03-01 11:03:04.542 2024-03-01 11:03:04.542 1000 FEE 444781 5175 6123619 2024-03-01 11:04:25.4 2024-03-01 11:04:25.4 1000 FEE 444725 21386 6123620 2024-03-01 11:04:25.4 2024-03-01 11:04:25.4 9000 TIP 444725 8289 6123630 2024-03-01 11:05:23.913 2024-03-01 11:05:23.913 1000 FEE 444788 18378 6123634 2024-03-01 11:05:46.213 2024-03-01 11:05:46.213 1000 FEE 444789 18392 6123657 2024-03-01 11:07:01.617 2024-03-01 11:07:01.617 1000 FEE 444715 18124 6123658 2024-03-01 11:07:01.617 2024-03-01 11:07:01.617 9000 TIP 444715 4043 6123680 2024-03-01 11:09:27.837 2024-03-01 11:09:27.837 1000 FEE 444798 19841 6123697 2024-03-01 11:11:07.284 2024-03-01 11:11:07.284 0 FEE 444797 8459 6123715 2024-03-01 11:12:57.283 2024-03-01 11:12:57.283 1000 FEE 444660 12024 6123716 2024-03-01 11:12:57.283 2024-03-01 11:12:57.283 9000 TIP 444660 18378 6123721 2024-03-01 11:12:59.506 2024-03-01 11:12:59.506 7600 FEE 444807 16353 6123722 2024-03-01 11:12:59.506 2024-03-01 11:12:59.506 68400 TIP 444807 8162 6123740 2024-03-01 11:13:24.247 2024-03-01 11:13:24.247 1000 FEE 444775 20599 6123741 2024-03-01 11:13:24.247 2024-03-01 11:13:24.247 9000 TIP 444775 18409 6123756 2024-03-01 11:15:20.787 2024-03-01 11:15:20.787 1000 FEE 444811 19557 6123802 2024-03-01 11:22:48.036 2024-03-01 11:22:48.036 1000 FEE 444823 696 6123804 2024-03-01 11:23:17.563 2024-03-01 11:23:17.563 7600 FEE 444707 21320 6123805 2024-03-01 11:23:17.563 2024-03-01 11:23:17.563 68400 TIP 444707 19512 6123814 2024-03-01 11:26:02.343 2024-03-01 11:26:02.343 1000 FEE 444776 15271 6123815 2024-03-01 11:26:02.343 2024-03-01 11:26:02.343 9000 TIP 444776 749 6123828 2024-03-01 11:26:59.42 2024-03-01 11:26:59.42 1000 FEE 444831 21506 6123839 2024-03-01 11:27:58.963 2024-03-01 11:27:58.963 1000 FEE 444833 9476 6123847 2024-03-01 11:28:29.796 2024-03-01 11:28:29.796 6400 FEE 444831 16284 6123848 2024-03-01 11:28:29.796 2024-03-01 11:28:29.796 57600 TIP 444831 12057 6123853 2024-03-01 11:29:12.827 2024-03-01 11:29:12.827 7600 FEE 444802 18809 6123854 2024-03-01 11:29:12.827 2024-03-01 11:29:12.827 68400 TIP 444802 20717 6123879 2024-03-01 11:32:54.61 2024-03-01 11:32:54.61 0 FEE 444839 11698 6123895 2024-03-01 11:38:43.978 2024-03-01 11:38:43.978 2100 FEE 443390 18219 6123896 2024-03-01 11:38:43.978 2024-03-01 11:38:43.978 18900 TIP 443390 17091 6123907 2024-03-01 11:41:28.439 2024-03-01 11:41:28.439 0 FEE 444848 21627 6123944 2024-03-01 11:48:09.237 2024-03-01 11:48:09.237 1000 FEE 444849 19126 6123945 2024-03-01 11:48:09.237 2024-03-01 11:48:09.237 9000 TIP 444849 9355 6123954 2024-03-01 11:48:19.193 2024-03-01 11:48:19.193 0 FEE 444855 13399 6123969 2024-03-01 11:50:43.25 2024-03-01 11:50:43.25 2100 FEE 444822 20596 6123970 2024-03-01 11:50:43.25 2024-03-01 11:50:43.25 18900 TIP 444822 2206 6123983 2024-03-01 11:52:02.824 2024-03-01 11:52:02.824 200 FEE 444790 20152 6123984 2024-03-01 11:52:02.824 2024-03-01 11:52:02.824 1800 TIP 444790 18705 6123986 2024-03-01 11:52:11.382 2024-03-01 11:52:11.382 1000 FEE 444862 16679 6123990 2024-03-01 11:52:28.82 2024-03-01 11:52:28.82 100 FEE 444773 18393 6123991 2024-03-01 11:52:28.82 2024-03-01 11:52:28.82 900 TIP 444773 17415 6124002 2024-03-01 11:53:26.042 2024-03-01 11:53:26.042 2100 FEE 444856 20586 6124003 2024-03-01 11:53:26.042 2024-03-01 11:53:26.042 18900 TIP 444856 12808 6124004 2024-03-01 11:53:27.201 2024-03-01 11:53:27.201 200 FEE 444746 21218 6124005 2024-03-01 11:53:27.201 2024-03-01 11:53:27.201 1800 TIP 444746 1692 6124006 2024-03-01 11:53:30.01 2024-03-01 11:53:30.01 0 FEE 444859 1244 6124048 2024-03-01 11:57:24.467 2024-03-01 11:57:24.467 200 FEE 444739 18608 6124049 2024-03-01 11:57:24.467 2024-03-01 11:57:24.467 1800 TIP 444739 5694 6124054 2024-03-01 11:57:56.9 2024-03-01 11:57:56.9 1000 FEE 444848 628 6124055 2024-03-01 11:57:56.9 2024-03-01 11:57:56.9 9000 TIP 444848 18138 6124065 2024-03-01 11:58:48.3 2024-03-01 11:58:48.3 0 FEE 444872 16276 6124067 2024-03-01 11:59:32.08 2024-03-01 11:59:32.08 1600 FEE 444707 21393 6124068 2024-03-01 11:59:32.08 2024-03-01 11:59:32.08 14400 TIP 444707 9150 6124081 2024-03-01 12:01:46.712 2024-03-01 12:01:46.712 100000 FEE 444561 7772 6124082 2024-03-01 12:01:46.712 2024-03-01 12:01:46.712 900000 TIP 444561 13544 6124086 2024-03-01 12:02:53.503 2024-03-01 12:02:53.503 1000 FEE 444879 5828 6124105 2024-03-01 12:05:16.662 2024-03-01 12:05:16.662 1700 FEE 444755 17714 6124106 2024-03-01 12:05:16.662 2024-03-01 12:05:16.662 15300 TIP 444755 21458 6124124 2024-03-01 12:06:12.642 2024-03-01 12:06:12.642 2100 FEE 443777 1705 6124125 2024-03-01 12:06:12.642 2024-03-01 12:06:12.642 18900 TIP 443777 14990 6124130 2024-03-01 12:07:12.61 2024-03-01 12:07:12.61 0 FEE 444880 2444 6124145 2024-03-01 12:08:50.717 2024-03-01 12:08:50.717 1000 FEE 444890 14688 6124153 2024-03-01 12:09:57.298 2024-03-01 12:09:57.298 0 FEE 444888 16532 6124160 2024-03-01 12:12:17.497 2024-03-01 12:12:17.497 1000 FEE 444893 16230 6124163 2024-03-01 12:12:42.726 2024-03-01 12:12:42.726 1000 FEE 444894 660 6124186 2024-03-01 12:14:44.087 2024-03-01 12:14:44.087 10000 FEE 444755 18660 6124187 2024-03-01 12:14:44.087 2024-03-01 12:14:44.087 90000 TIP 444755 11417 6124188 2024-03-01 12:15:00.238 2024-03-01 12:15:00.238 1000 FEE 444900 21493 6124191 2024-03-01 12:16:04.892 2024-03-01 12:16:04.892 1000 FEE 444901 18816 6124201 2024-03-01 12:19:35.42 2024-03-01 12:19:35.42 20000 FEE 444874 18177 6124202 2024-03-01 12:19:35.42 2024-03-01 12:19:35.42 180000 TIP 444874 8168 6124207 2024-03-01 12:20:43.491 2024-03-01 12:20:43.491 100000 FEE 444907 5112 6124236 2024-03-01 12:26:26.349 2024-03-01 12:26:26.349 10000 FEE 444902 16052 6124237 2024-03-01 12:26:26.349 2024-03-01 12:26:26.349 90000 TIP 444902 13249 6124255 2024-03-01 12:26:43.857 2024-03-01 12:26:43.857 300 FEE 444842 20377 6124256 2024-03-01 12:26:43.857 2024-03-01 12:26:43.857 2700 TIP 444842 2293 6124263 2024-03-01 12:26:44.405 2024-03-01 12:26:44.405 300 FEE 444842 9276 6124264 2024-03-01 12:26:44.405 2024-03-01 12:26:44.405 2700 TIP 444842 11678 6124271 2024-03-01 12:26:45.149 2024-03-01 12:26:45.149 300 FEE 444842 21501 6124272 2024-03-01 12:26:45.149 2024-03-01 12:26:45.149 2700 TIP 444842 1673 6124300 2024-03-01 12:27:35.741 2024-03-01 12:27:35.741 2100 FEE 444917 19813 6124301 2024-03-01 12:27:35.741 2024-03-01 12:27:35.741 18900 TIP 444917 1745 6124369 2024-03-01 12:28:51.054 2024-03-01 12:28:51.054 2100 FEE 444817 18995 6124370 2024-03-01 12:28:51.054 2024-03-01 12:28:51.054 18900 TIP 444817 11866 6124379 2024-03-01 12:28:57.312 2024-03-01 12:28:57.312 2100 FEE 444820 21472 6124380 2024-03-01 12:28:57.312 2024-03-01 12:28:57.312 18900 TIP 444820 716 6124406 2024-03-01 12:29:48.317 2024-03-01 12:29:48.317 2800 FEE 444739 16649 6124407 2024-03-01 12:29:48.317 2024-03-01 12:29:48.317 25200 TIP 444739 19335 6062643 2024-02-25 13:45:03.545 2024-02-25 13:45:03.545 1000 STREAM 141924 7979 6123627 2024-03-01 11:05:04.799 2024-03-01 11:05:04.799 1000 STREAM 141924 19966 6123639 2024-03-01 11:06:04.798 2024-03-01 11:06:04.798 1000 STREAM 141924 1244 6123665 2024-03-01 11:07:04.788 2024-03-01 11:07:04.788 1000 STREAM 141924 20636 6123677 2024-03-01 11:08:04.759 2024-03-01 11:08:04.759 1000 STREAM 141924 12422 6123684 2024-03-01 11:10:04.838 2024-03-01 11:10:04.838 1000 STREAM 141924 16876 6123725 2024-03-01 11:13:04.84 2024-03-01 11:13:04.84 1000 STREAM 141924 1465 6123759 2024-03-01 11:16:04.916 2024-03-01 11:16:04.916 1000 STREAM 141924 3360 6123796 2024-03-01 11:21:04.888 2024-03-01 11:21:04.888 1000 STREAM 141924 7818 6123800 2024-03-01 11:22:04.881 2024-03-01 11:22:04.881 1000 STREAM 141924 19267 6123808 2024-03-01 11:24:04.909 2024-03-01 11:24:04.909 1000 STREAM 141924 15925 6123971 2024-03-01 11:51:05.078 2024-03-01 11:51:05.078 1000 STREAM 141924 21603 6124023 2024-03-01 11:54:05.101 2024-03-01 11:54:05.101 1000 STREAM 141924 9450 6124039 2024-03-01 11:56:05.125 2024-03-01 11:56:05.125 1000 STREAM 141924 21563 6062651 2024-02-25 13:47:03.419 2024-02-25 13:47:03.419 1000 STREAM 141924 14669 6062652 2024-02-25 13:48:03.535 2024-02-25 13:48:03.535 1000 STREAM 141924 19759 6062654 2024-02-25 13:49:03.561 2024-02-25 13:49:03.561 1000 STREAM 141924 9705 6062659 2024-02-25 13:50:03.538 2024-02-25 13:50:03.538 1000 STREAM 141924 16848 6062675 2024-02-25 13:51:03.574 2024-02-25 13:51:03.574 1000 STREAM 141924 2098 6062706 2024-02-25 13:54:03.57 2024-02-25 13:54:03.57 1000 STREAM 141924 15703 6123702 2024-03-01 11:12:03.182 2024-03-01 11:12:03.182 1000 FEE 444807 2347 6123734 2024-03-01 11:13:19.952 2024-03-01 11:13:19.952 10000 FEE 444746 15367 6123735 2024-03-01 11:13:19.952 2024-03-01 11:13:19.952 90000 TIP 444746 16351 6123736 2024-03-01 11:13:20.598 2024-03-01 11:13:20.598 1000 FEE 444771 5828 6123737 2024-03-01 11:13:20.598 2024-03-01 11:13:20.598 9000 TIP 444771 6160 6123746 2024-03-01 11:13:48.255 2024-03-01 11:13:48.255 100 FEE 444707 21262 6123747 2024-03-01 11:13:48.255 2024-03-01 11:13:48.255 900 TIP 444707 9844 6123764 2024-03-01 11:16:21.275 2024-03-01 11:16:21.275 1100 FEE 444738 4973 6123765 2024-03-01 11:16:21.275 2024-03-01 11:16:21.275 9900 TIP 444738 19531 6123768 2024-03-01 11:17:00.815 2024-03-01 11:17:00.815 1100 FEE 444735 20066 6123769 2024-03-01 11:17:00.815 2024-03-01 11:17:00.815 9900 TIP 444735 10554 6123781 2024-03-01 11:18:58.401 2024-03-01 11:18:58.401 1000 FEE 444816 1784 6123793 2024-03-01 11:20:50.808 2024-03-01 11:20:50.808 6900 FEE 444801 698 6123794 2024-03-01 11:20:50.808 2024-03-01 11:20:50.808 62100 TIP 444801 20993 6123798 2024-03-01 11:21:56.743 2024-03-01 11:21:56.743 1600 FEE 444817 711 6123799 2024-03-01 11:21:56.743 2024-03-01 11:21:56.743 14400 TIP 444817 14195 6123801 2024-03-01 11:22:07.809 2024-03-01 11:22:07.809 1000 FEE 444822 14308 6123807 2024-03-01 11:23:59.405 2024-03-01 11:23:59.405 100000 FEE 444824 11897 6123809 2024-03-01 11:24:05.71 2024-03-01 11:24:05.71 1000 FEE 444825 17184 6123821 2024-03-01 11:26:24.216 2024-03-01 11:26:24.216 1000 FEE 444827 18511 6123823 2024-03-01 11:26:38.102 2024-03-01 11:26:38.102 1000 FEE 444791 20220 6123824 2024-03-01 11:26:38.102 2024-03-01 11:26:38.102 9000 TIP 444791 7418 6123826 2024-03-01 11:26:57.439 2024-03-01 11:26:57.439 2100 FEE 444821 2077 6123827 2024-03-01 11:26:57.439 2024-03-01 11:26:57.439 18900 TIP 444821 14651 6123829 2024-03-01 11:27:03.341 2024-03-01 11:27:03.341 3100 FEE 444673 9906 6123830 2024-03-01 11:27:03.341 2024-03-01 11:27:03.341 27900 TIP 444673 19941 6123836 2024-03-01 11:27:42.837 2024-03-01 11:27:42.837 1000 FEE 444832 14195 6123845 2024-03-01 11:28:22.64 2024-03-01 11:28:22.64 27900 FEE 444755 11716 6123846 2024-03-01 11:28:22.64 2024-03-01 11:28:22.64 251100 TIP 444755 3461 6123849 2024-03-01 11:28:48.979 2024-03-01 11:28:48.979 1000 FEE 444836 16809 6123851 2024-03-01 11:29:07.827 2024-03-01 11:29:07.827 1000 FEE 444837 1692 6123862 2024-03-01 11:29:38.296 2024-03-01 11:29:38.296 1000 FEE 444839 20430 6123872 2024-03-01 11:30:43.489 2024-03-01 11:30:43.489 0 FEE 444839 8505 6123883 2024-03-01 11:33:34.765 2024-03-01 11:33:34.765 1000 FEE 444842 886 6123898 2024-03-01 11:39:19.476 2024-03-01 11:39:19.476 100000 FEE 444848 13042 6123913 2024-03-01 11:42:22.215 2024-03-01 11:42:22.215 21000 FEE 444848 14280 6123914 2024-03-01 11:42:22.215 2024-03-01 11:42:22.215 189000 TIP 444848 19836 6123929 2024-03-01 11:47:15.797 2024-03-01 11:47:15.797 1000 FEE 444746 7916 6123930 2024-03-01 11:47:15.797 2024-03-01 11:47:15.797 9000 TIP 444746 21057 6123939 2024-03-01 11:48:00.867 2024-03-01 11:48:00.867 2100 FEE 444755 18269 6123940 2024-03-01 11:48:00.867 2024-03-01 11:48:00.867 18900 TIP 444755 16680 6123946 2024-03-01 11:48:12.468 2024-03-01 11:48:12.468 1000 FEE 444849 13781 6123947 2024-03-01 11:48:12.468 2024-03-01 11:48:12.468 9000 TIP 444849 19126 6123974 2024-03-01 11:51:39.355 2024-03-01 11:51:39.355 1000 FEE 444860 21343 6123982 2024-03-01 11:52:00.512 2024-03-01 11:52:00.512 0 FEE 444859 706 6124013 2024-03-01 11:53:40.141 2024-03-01 11:53:40.141 2100 FEE 444739 18314 6124014 2024-03-01 11:53:40.141 2024-03-01 11:53:40.141 18900 TIP 444739 21612 6124022 2024-03-01 11:54:03.383 2024-03-01 11:54:03.383 0 FEE 444859 18402 6124033 2024-03-01 11:55:02.808 2024-03-01 11:55:02.808 0 FEE 444859 19938 6124035 2024-03-01 11:55:39.596 2024-03-01 11:55:39.596 400 FEE 444852 15336 6124036 2024-03-01 11:55:39.596 2024-03-01 11:55:39.596 3600 TIP 444852 20597 6124038 2024-03-01 11:55:56.97 2024-03-01 11:55:56.97 1000 FEE 444870 2039 6124050 2024-03-01 11:57:34.962 2024-03-01 11:57:34.962 100 FEE 444754 18470 6124051 2024-03-01 11:57:34.962 2024-03-01 11:57:34.962 900 TIP 444754 14122 6124052 2024-03-01 11:57:44.928 2024-03-01 11:57:44.928 1000 FEE 444852 9356 6124053 2024-03-01 11:57:44.928 2024-03-01 11:57:44.928 9000 TIP 444852 13398 6124069 2024-03-01 12:00:01.921 2024-03-01 12:00:01.921 0 FEE 444872 9336 6124076 2024-03-01 12:01:37.046 2024-03-01 12:01:37.046 1000 FEE 444878 17109 6124131 2024-03-01 12:07:17.836 2024-03-01 12:07:17.836 1000 FEE 444888 19378 6124169 2024-03-01 12:13:08.378 2024-03-01 12:13:08.378 1000 FEE 444896 15139 6124194 2024-03-01 12:18:03.153 2024-03-01 12:18:03.153 1000 FEE 444902 1845 6124233 2024-03-01 12:26:16.236 2024-03-01 12:26:16.236 1000 FEE 444915 10554 6124234 2024-03-01 12:26:26.194 2024-03-01 12:26:26.194 2100 FEE 444522 9348 6124235 2024-03-01 12:26:26.194 2024-03-01 12:26:26.194 18900 TIP 444522 19096 6124238 2024-03-01 12:26:35.901 2024-03-01 12:26:35.901 2100 FEE 443919 10484 6124239 2024-03-01 12:26:35.901 2024-03-01 12:26:35.901 18900 TIP 443919 10771 6124249 2024-03-01 12:26:43.304 2024-03-01 12:26:43.304 300 FEE 444842 11992 6124250 2024-03-01 12:26:43.304 2024-03-01 12:26:43.304 2700 TIP 444842 17411 6124253 2024-03-01 12:26:43.661 2024-03-01 12:26:43.661 300 FEE 444842 620 6124254 2024-03-01 12:26:43.661 2024-03-01 12:26:43.661 2700 TIP 444842 15243 6124279 2024-03-01 12:26:46.083 2024-03-01 12:26:46.083 1000 FEE 444917 937 6124297 2024-03-01 12:27:27.305 2024-03-01 12:27:27.305 1000 FEE 444918 697 6124314 2024-03-01 12:28:04.177 2024-03-01 12:28:04.177 2100 FEE 444848 15588 6124315 2024-03-01 12:28:04.177 2024-03-01 12:28:04.177 18900 TIP 444848 15200 6062697 2024-02-25 13:52:53.644 2024-02-25 13:52:53.644 27900 TIP 438232 20560 6062698 2024-02-25 13:52:54.883 2024-02-25 13:52:54.883 27900 FEE 438232 19864 6062699 2024-02-25 13:52:54.883 2024-02-25 13:52:54.883 251100 TIP 438232 20026 6062734 2024-02-25 13:55:19.413 2024-02-25 13:55:19.413 2100 FEE 438259 10352 6062735 2024-02-25 13:55:19.413 2024-02-25 13:55:19.413 18900 TIP 438259 18119 6062744 2024-02-25 13:56:47.575 2024-02-25 13:56:47.575 10000 FEE 438211 21057 6062745 2024-02-25 13:56:47.575 2024-02-25 13:56:47.575 90000 TIP 438211 21296 6062750 2024-02-25 13:57:11.944 2024-02-25 13:57:11.944 2100 FEE 438253 3392 6062751 2024-02-25 13:57:11.944 2024-02-25 13:57:11.944 18900 TIP 438253 19795 6062755 2024-02-25 13:57:36.195 2024-02-25 13:57:36.195 2100 FEE 438263 1785 6062756 2024-02-25 13:57:36.195 2024-02-25 13:57:36.195 18900 TIP 438263 9421 6062761 2024-02-25 13:57:44.259 2024-02-25 13:57:44.259 1000 FEE 438247 1881 6062762 2024-02-25 13:57:44.259 2024-02-25 13:57:44.259 9000 TIP 438247 696 6062776 2024-02-25 13:58:43.47 2024-02-25 13:58:43.47 1000 FEE 438256 20267 6062777 2024-02-25 13:58:43.47 2024-02-25 13:58:43.47 9000 TIP 438256 2322 6062783 2024-02-25 13:59:13.899 2024-02-25 13:59:13.899 1000 FEE 435328 2776 6062784 2024-02-25 13:59:13.899 2024-02-25 13:59:13.899 9000 TIP 435328 21057 6062789 2024-02-25 13:59:19.73 2024-02-25 13:59:19.73 2000 FEE 436765 9354 6062790 2024-02-25 13:59:19.73 2024-02-25 13:59:19.73 18000 TIP 436765 5359 6062794 2024-02-25 13:59:42.143 2024-02-25 13:59:42.143 2000 FEE 438065 633 6062795 2024-02-25 13:59:42.143 2024-02-25 13:59:42.143 18000 TIP 438065 15094 6062800 2024-02-25 13:59:59.682 2024-02-25 13:59:59.682 0 FEE 438268 21329 6062808 2024-02-25 14:01:40.132 2024-02-25 14:01:40.132 1000 FEE 438270 20490 6062812 2024-02-25 14:02:51.751 2024-02-25 14:02:51.751 0 FEE 438271 9482 6062848 2024-02-25 14:04:16.509 2024-02-25 14:04:16.509 2100 FEE 438198 2741 6062849 2024-02-25 14:04:16.509 2024-02-25 14:04:16.509 18900 TIP 438198 16879 6062856 2024-02-25 14:06:04.853 2024-02-25 14:06:04.853 1000 FEE 438274 19640 6062857 2024-02-25 14:06:10.197 2024-02-25 14:06:10.197 1000 FEE 438275 18815 6062870 2024-02-25 14:08:30.261 2024-02-25 14:08:30.261 100000 FEE 438279 21048 6062880 2024-02-25 14:10:12.177 2024-02-25 14:10:12.177 0 FEE 438274 730 6062897 2024-02-25 14:13:37.169 2024-02-25 14:13:37.169 2100 FEE 437433 7983 6062898 2024-02-25 14:13:37.169 2024-02-25 14:13:37.169 18900 TIP 437433 676 6062900 2024-02-25 14:13:41.805 2024-02-25 14:13:41.805 10000 FEE 438231 7395 6062901 2024-02-25 14:13:41.805 2024-02-25 14:13:41.805 90000 TIP 438231 20624 6062916 2024-02-25 14:15:31.605 2024-02-25 14:15:31.605 1000 FEE 438288 17291 6062926 2024-02-25 14:16:40.048 2024-02-25 14:16:40.048 4000 FEE 438282 18640 6062927 2024-02-25 14:16:40.048 2024-02-25 14:16:40.048 36000 TIP 438282 782 6062962 2024-02-25 14:17:42.026 2024-02-25 14:17:42.026 1000 FEE 438293 21239 6062965 2024-02-25 14:17:46.901 2024-02-25 14:17:46.901 1000 FEE 438222 9362 6062966 2024-02-25 14:17:46.901 2024-02-25 14:17:46.901 9000 TIP 438222 14385 6062977 2024-02-25 14:18:19.6 2024-02-25 14:18:19.6 1000 FEE 438202 12422 6062978 2024-02-25 14:18:19.6 2024-02-25 14:18:19.6 9000 TIP 438202 4570 6063005 2024-02-25 14:22:18.429 2024-02-25 14:22:18.429 2100 FEE 437714 19864 6063006 2024-02-25 14:22:18.429 2024-02-25 14:22:18.429 18900 TIP 437714 20840 6063016 2024-02-25 14:23:16.582 2024-02-25 14:23:16.582 10000 FEE 438124 5487 6063017 2024-02-25 14:23:16.582 2024-02-25 14:23:16.582 90000 TIP 438124 15408 6063039 2024-02-25 14:29:13.309 2024-02-25 14:29:13.309 1000 FEE 438303 11515 6063053 2024-02-25 14:32:20.156 2024-02-25 14:32:20.156 1000 FEE 438308 3706 6063064 2024-02-25 14:34:56.837 2024-02-25 14:34:56.837 0 FEE 438310 12218 6063068 2024-02-25 14:35:58.739 2024-02-25 14:35:58.739 0 FEE 438310 21389 6063075 2024-02-25 14:37:42.133 2024-02-25 14:37:42.133 0 FEE 438310 19813 6063089 2024-02-25 14:40:55.772 2024-02-25 14:40:55.772 6900 FEE 438209 9992 6063090 2024-02-25 14:40:55.772 2024-02-25 14:40:55.772 62100 TIP 438209 19888 6063104 2024-02-25 14:41:41.414 2024-02-25 14:41:41.414 1000 FEE 438312 18945 6063127 2024-02-25 14:45:07.132 2024-02-25 14:45:07.132 210000 FEE 438317 17201 6063129 2024-02-25 14:46:36.523 2024-02-25 14:46:36.523 100 FEE 436493 659 6063130 2024-02-25 14:46:36.523 2024-02-25 14:46:36.523 900 TIP 436493 6419 6063152 2024-02-25 14:49:17.733 2024-02-25 14:49:17.733 6900 FEE 438065 5978 6063153 2024-02-25 14:49:17.733 2024-02-25 14:49:17.733 62100 TIP 438065 15617 6063154 2024-02-25 14:49:17.92 2024-02-25 14:49:17.92 6900 FEE 438065 20208 6063155 2024-02-25 14:49:17.92 2024-02-25 14:49:17.92 62100 TIP 438065 2460 6063169 2024-02-25 14:49:56.449 2024-02-25 14:49:56.449 1100 FEE 438211 1039 6063170 2024-02-25 14:49:56.449 2024-02-25 14:49:56.449 9900 TIP 438211 21334 6063174 2024-02-25 14:50:33.414 2024-02-25 14:50:33.414 1100 FEE 438264 12946 6063175 2024-02-25 14:50:33.414 2024-02-25 14:50:33.414 9900 TIP 438264 16177 6063190 2024-02-25 14:52:48.192 2024-02-25 14:52:48.192 1000 FEE 438322 16341 6063200 2024-02-25 14:53:49.99 2024-02-25 14:53:49.99 10000 FEE 438325 16442 6063229 2024-02-25 14:55:22.655 2024-02-25 14:55:22.655 1000 FEE 438261 18271 6063230 2024-02-25 14:55:22.655 2024-02-25 14:55:22.655 9000 TIP 438261 19638 6062701 2024-02-25 13:52:57.755 2024-02-25 13:52:57.755 27900 TIP 438235 3371 6062708 2024-02-25 13:54:36.024 2024-02-25 13:54:36.024 2100 FEE 438230 19263 6062709 2024-02-25 13:54:36.024 2024-02-25 13:54:36.024 18900 TIP 438230 19282 6062785 2024-02-25 13:59:14.352 2024-02-25 13:59:14.352 1000 FEE 435328 1471 6062786 2024-02-25 13:59:14.352 2024-02-25 13:59:14.352 9000 TIP 435328 15337 6062818 2024-02-25 14:03:55.385 2024-02-25 14:03:55.385 2100 FEE 438202 21521 6062819 2024-02-25 14:03:55.385 2024-02-25 14:03:55.385 18900 TIP 438202 18188 6062820 2024-02-25 14:03:56.194 2024-02-25 14:03:56.194 2100 FEE 438092 18219 6062821 2024-02-25 14:03:56.194 2024-02-25 14:03:56.194 18900 TIP 438092 18830 6062833 2024-02-25 14:04:06.715 2024-02-25 14:04:06.715 2100 FEE 437966 19007 6062834 2024-02-25 14:04:06.715 2024-02-25 14:04:06.715 18900 TIP 437966 21480 6062840 2024-02-25 14:04:11.928 2024-02-25 14:04:11.928 2100 FEE 438109 15146 6062841 2024-02-25 14:04:11.928 2024-02-25 14:04:11.928 18900 TIP 438109 3304 6062850 2024-02-25 14:04:58.886 2024-02-25 14:04:58.886 2100 FEE 438120 8242 6062851 2024-02-25 14:04:58.886 2024-02-25 14:04:58.886 18900 TIP 438120 15719 6062872 2024-02-25 14:08:59.278 2024-02-25 14:08:59.278 1100 FEE 437670 688 6062873 2024-02-25 14:08:59.278 2024-02-25 14:08:59.278 9900 TIP 437670 725 6062894 2024-02-25 14:13:30.918 2024-02-25 14:13:30.918 1000 FEE 438286 11395 6062923 2024-02-25 14:16:21.061 2024-02-25 14:16:21.061 1000 FEE 438290 8385 6062952 2024-02-25 14:17:24.945 2024-02-25 14:17:24.945 1000 FEE 438292 9843 6062957 2024-02-25 14:17:32.403 2024-02-25 14:17:32.403 0 FEE 438283 4322 6062979 2024-02-25 14:18:28.852 2024-02-25 14:18:28.852 1000 POLL 438202 12562 6062996 2024-02-25 14:20:43.268 2024-02-25 14:20:43.268 1000 FEE 438297 7960 6063007 2024-02-25 14:22:22.808 2024-02-25 14:22:22.808 1000 FEE 438298 9906 6063032 2024-02-25 14:27:13.474 2024-02-25 14:27:13.474 1000 FEE 438301 20891 6063033 2024-02-25 14:27:46.307 2024-02-25 14:27:46.307 0 FEE 438301 17514 6063035 2024-02-25 14:28:45.61 2024-02-25 14:28:45.61 1000 FEE 438302 2328 6063042 2024-02-25 14:29:28.953 2024-02-25 14:29:28.953 1000 FEE 438304 3683 6063087 2024-02-25 14:40:55.601 2024-02-25 14:40:55.601 6900 FEE 438209 20623 6063088 2024-02-25 14:40:55.601 2024-02-25 14:40:55.601 62100 TIP 438209 20433 6063123 2024-02-25 14:44:47.939 2024-02-25 14:44:47.939 1000 FEE 438316 5175 6063141 2024-02-25 14:49:11.703 2024-02-25 14:49:11.703 0 FEE 438320 5387 6063144 2024-02-25 14:49:16.725 2024-02-25 14:49:16.725 6900 FEE 438065 11999 6063145 2024-02-25 14:49:16.725 2024-02-25 14:49:16.725 62100 TIP 438065 13574 6063156 2024-02-25 14:49:18.406 2024-02-25 14:49:18.406 6900 FEE 438065 635 6063157 2024-02-25 14:49:18.406 2024-02-25 14:49:18.406 62100 TIP 438065 18468 6063158 2024-02-25 14:49:18.583 2024-02-25 14:49:18.583 6900 FEE 438065 12736 6063159 2024-02-25 14:49:18.583 2024-02-25 14:49:18.583 62100 TIP 438065 21314 6063176 2024-02-25 14:50:45.891 2024-02-25 14:50:45.891 1100 FEE 438261 670 6063177 2024-02-25 14:50:45.891 2024-02-25 14:50:45.891 9900 TIP 438261 16259 6063180 2024-02-25 14:51:32.221 2024-02-25 14:51:32.221 2500 FEE 438287 13177 6063181 2024-02-25 14:51:32.221 2024-02-25 14:51:32.221 22500 TIP 438287 1723 6063189 2024-02-25 14:52:14.395 2024-02-25 14:52:14.395 0 FEE 438320 20525 6063206 2024-02-25 14:54:20.946 2024-02-25 14:54:20.946 1000 FEE 438298 14552 6063207 2024-02-25 14:54:20.946 2024-02-25 14:54:20.946 9000 TIP 438298 899 6063225 2024-02-25 14:55:10.904 2024-02-25 14:55:10.904 500 FEE 438325 1717 6063226 2024-02-25 14:55:10.904 2024-02-25 14:55:10.904 4500 TIP 438325 20970 6063240 2024-02-25 14:58:06.949 2024-02-25 14:58:06.949 100 FEE 438065 929 6063241 2024-02-25 14:58:06.949 2024-02-25 14:58:06.949 900 TIP 438065 703 6063242 2024-02-25 14:58:07.171 2024-02-25 14:58:07.171 900 FEE 438065 16178 6063243 2024-02-25 14:58:07.171 2024-02-25 14:58:07.171 8100 TIP 438065 8380 6063254 2024-02-25 14:58:41.657 2024-02-25 14:58:41.657 1000 FEE 438315 3409 6062748 2024-02-25 13:57:03.609 2024-02-25 13:57:03.609 1000 STREAM 141924 2075 6062778 2024-02-25 13:59:03.628 2024-02-25 13:59:03.628 1000 STREAM 141924 1567 6062919 2024-02-25 14:16:03.743 2024-02-25 14:16:03.743 1000 STREAM 141924 19506 6062971 2024-02-25 14:18:03.771 2024-02-25 14:18:03.771 1000 STREAM 141924 9705 6063015 2024-02-25 14:23:03.826 2024-02-25 14:23:03.826 1000 STREAM 141924 1244 6063027 2024-02-25 14:25:03.874 2024-02-25 14:25:03.874 1000 STREAM 141924 746 6062767 2024-02-25 13:57:56.268 2024-02-25 13:57:56.268 1000 POLL 438202 9341 6062779 2024-02-25 13:59:13.514 2024-02-25 13:59:13.514 1000 FEE 435328 21271 6062780 2024-02-25 13:59:13.514 2024-02-25 13:59:13.514 9000 TIP 435328 20799 6062781 2024-02-25 13:59:13.712 2024-02-25 13:59:13.712 1000 FEE 435328 11018 6062782 2024-02-25 13:59:13.712 2024-02-25 13:59:13.712 9000 TIP 435328 10591 6062796 2024-02-25 13:59:50.141 2024-02-25 13:59:50.141 2000 FEE 438092 8505 6062797 2024-02-25 13:59:50.141 2024-02-25 13:59:50.141 18000 TIP 438092 18660 6062822 2024-02-25 14:03:57.632 2024-02-25 14:03:57.632 2100 FEE 437723 20546 6062823 2024-02-25 14:03:57.632 2024-02-25 14:03:57.632 18900 TIP 437723 3400 6062831 2024-02-25 14:04:06.291 2024-02-25 14:04:06.291 2100 FEE 437720 10094 6062832 2024-02-25 14:04:06.291 2024-02-25 14:04:06.291 18900 TIP 437720 9992 6062837 2024-02-25 14:04:10.463 2024-02-25 14:04:10.463 2100 FEE 438209 8448 6062838 2024-02-25 14:04:10.463 2024-02-25 14:04:10.463 18900 TIP 438209 20624 6062844 2024-02-25 14:04:14.59 2024-02-25 14:04:14.59 2100 FEE 438188 21014 6062845 2024-02-25 14:04:14.59 2024-02-25 14:04:14.59 18900 TIP 438188 20430 6062863 2024-02-25 14:07:28.44 2024-02-25 14:07:28.44 1100 FEE 437713 11648 6062864 2024-02-25 14:07:28.44 2024-02-25 14:07:28.44 9900 TIP 437713 21451 6062940 2024-02-25 14:17:11.943 2024-02-25 14:17:11.943 1000 FEE 438088 17526 6062941 2024-02-25 14:17:11.943 2024-02-25 14:17:11.943 9000 TIP 438088 2056 6062942 2024-02-25 14:17:16.569 2024-02-25 14:17:16.569 6900 FEE 438232 10549 6062943 2024-02-25 14:17:16.569 2024-02-25 14:17:16.569 62100 TIP 438232 19121 6063008 2024-02-25 14:22:33.737 2024-02-25 14:22:33.737 0 FEE 438298 21287 6063011 2024-02-25 14:22:43.574 2024-02-25 14:22:43.574 1000 FEE 438299 6777 6063012 2024-02-25 14:22:45.056 2024-02-25 14:22:45.056 2100 FEE 437880 15213 6063013 2024-02-25 14:22:45.056 2024-02-25 14:22:45.056 18900 TIP 437880 19494 6063025 2024-02-25 14:24:41.261 2024-02-25 14:24:41.261 1000 FEE 437997 20502 6063026 2024-02-25 14:24:41.261 2024-02-25 14:24:41.261 9000 TIP 437997 9450 6063066 2024-02-25 14:35:04.894 2024-02-25 14:35:04.894 0 FEE 438310 2961 6063082 2024-02-25 14:40:47.255 2024-02-25 14:40:47.255 1000 FEE 438311 5646 6063083 2024-02-25 14:40:55.265 2024-02-25 14:40:55.265 6900 FEE 438209 18392 6063084 2024-02-25 14:40:55.265 2024-02-25 14:40:55.265 62100 TIP 438209 2309 6063093 2024-02-25 14:40:56.066 2024-02-25 14:40:56.066 6900 FEE 438209 17147 6063094 2024-02-25 14:40:56.066 2024-02-25 14:40:56.066 62100 TIP 438209 20802 6063097 2024-02-25 14:40:56.476 2024-02-25 14:40:56.476 6900 FEE 438209 21493 6063098 2024-02-25 14:40:56.476 2024-02-25 14:40:56.476 62100 TIP 438209 2098 6063099 2024-02-25 14:40:56.738 2024-02-25 14:40:56.738 6900 FEE 438209 20560 6063100 2024-02-25 14:40:56.738 2024-02-25 14:40:56.738 62100 TIP 438209 12158 6063121 2024-02-25 14:44:26.779 2024-02-25 14:44:26.779 4000 FEE 438303 623 6063122 2024-02-25 14:44:26.779 2024-02-25 14:44:26.779 36000 TIP 438303 10668 6063124 2024-02-25 14:44:49.329 2024-02-25 14:44:49.329 1100 FEE 438303 5829 6063125 2024-02-25 14:44:49.329 2024-02-25 14:44:49.329 9900 TIP 438303 6602 6063136 2024-02-25 14:48:21.125 2024-02-25 14:48:21.125 100 FEE 436593 20434 6063137 2024-02-25 14:48:21.125 2024-02-25 14:48:21.125 900 TIP 436593 17041 6063160 2024-02-25 14:49:19.115 2024-02-25 14:49:19.115 6900 FEE 438065 2309 6063161 2024-02-25 14:49:19.115 2024-02-25 14:49:19.115 62100 TIP 438065 919 6063162 2024-02-25 14:49:19.259 2024-02-25 14:49:19.259 6900 FEE 438065 3392 6063163 2024-02-25 14:49:19.259 2024-02-25 14:49:19.259 62100 TIP 438065 9476 6063182 2024-02-25 14:51:48.816 2024-02-25 14:51:48.816 2500 FEE 438308 17050 6063183 2024-02-25 14:51:48.816 2024-02-25 14:51:48.816 22500 TIP 438308 9517 6063186 2024-02-25 14:52:01.269 2024-02-25 14:52:01.269 1100 FEE 438221 7847 6063187 2024-02-25 14:52:01.269 2024-02-25 14:52:01.269 9900 TIP 438221 8376 6063202 2024-02-25 14:54:09.56 2024-02-25 14:54:09.56 1000 FEE 438326 19576 6063212 2024-02-25 14:54:43.072 2024-02-25 14:54:43.072 90000 FEE 438171 1803 6063213 2024-02-25 14:54:43.072 2024-02-25 14:54:43.072 810000 TIP 438171 1433 6063228 2024-02-25 14:55:20.267 2024-02-25 14:55:20.267 0 FEE 438326 11018 6063231 2024-02-25 14:55:38.198 2024-02-25 14:55:38.198 10000 FEE 438328 848 6063263 2024-02-25 14:59:04.157 2024-02-25 14:59:04.157 9000 FEE 438261 5487 6063264 2024-02-25 14:59:04.157 2024-02-25 14:59:04.157 81000 TIP 438261 20636 6063290 2024-02-25 15:00:04.936 2024-02-25 15:00:04.936 100000 FEE 438334 20691 6063307 2024-02-25 15:01:24.206 2024-02-25 15:01:24.206 100 FEE 438075 14122 6063308 2024-02-25 15:01:24.206 2024-02-25 15:01:24.206 900 TIP 438075 20208 6063318 2024-02-25 15:02:09.332 2024-02-25 15:02:09.332 1000 FEE 438337 2329 6063321 2024-02-25 15:02:12.997 2024-02-25 15:02:12.997 900 FEE 438325 6526 6063322 2024-02-25 15:02:12.997 2024-02-25 15:02:12.997 8100 TIP 438325 10490 6063323 2024-02-25 15:02:14.279 2024-02-25 15:02:14.279 9000 FEE 438325 19569 6063324 2024-02-25 15:02:14.279 2024-02-25 15:02:14.279 81000 TIP 438325 11458 6063327 2024-02-25 15:02:23.631 2024-02-25 15:02:23.631 100 FEE 438328 1519 6063328 2024-02-25 15:02:23.631 2024-02-25 15:02:23.631 900 TIP 438328 19689 6063343 2024-02-25 15:03:22.75 2024-02-25 15:03:22.75 900 FEE 438192 2596 6063344 2024-02-25 15:03:22.75 2024-02-25 15:03:22.75 8100 TIP 438192 11862 6063361 2024-02-25 15:05:22.879 2024-02-25 15:05:22.879 1000 FEE 438345 21417 6063370 2024-02-25 15:06:09.532 2024-02-25 15:06:09.532 10000 FEE 438347 2176 6063374 2024-02-25 15:06:39.979 2024-02-25 15:06:39.979 1000 POLL 438325 20922 6063376 2024-02-25 15:07:16.683 2024-02-25 15:07:16.683 1000 FEE 438348 4167 6063382 2024-02-25 15:07:49.905 2024-02-25 15:07:49.905 100 FEE 438001 1740 6063383 2024-02-25 15:07:49.905 2024-02-25 15:07:49.905 900 TIP 438001 8648 6063384 2024-02-25 15:07:50.129 2024-02-25 15:07:50.129 900 FEE 438001 5978 6063385 2024-02-25 15:07:50.129 2024-02-25 15:07:50.129 8100 TIP 438001 1326 6063390 2024-02-25 15:07:57.882 2024-02-25 15:07:57.882 1000 FEE 438349 20302 6063422 2024-02-25 15:11:42.278 2024-02-25 15:11:42.278 1000 FEE 438065 1692 6063423 2024-02-25 15:11:42.278 2024-02-25 15:11:42.278 9000 TIP 438065 17522 6063430 2024-02-25 15:12:07.137 2024-02-25 15:12:07.137 100000 DONT_LIKE_THIS 437979 18311 6063450 2024-02-25 15:14:24.259 2024-02-25 15:14:24.259 900 FEE 438122 18449 6063451 2024-02-25 15:14:24.259 2024-02-25 15:14:24.259 8100 TIP 438122 18640 6063459 2024-02-25 15:14:45.266 2024-02-25 15:14:45.266 300 FEE 436935 21207 6063460 2024-02-25 15:14:45.266 2024-02-25 15:14:45.266 2700 TIP 436935 15119 6063483 2024-02-25 15:15:31.106 2024-02-25 15:15:31.106 6900 FEE 438092 2326 6063484 2024-02-25 15:15:31.106 2024-02-25 15:15:31.106 62100 TIP 438092 21400 6063509 2024-02-25 15:15:34.874 2024-02-25 15:15:34.874 6900 FEE 438092 3461 6063510 2024-02-25 15:15:34.874 2024-02-25 15:15:34.874 62100 TIP 438092 16660 6063537 2024-02-25 15:17:57.393 2024-02-25 15:17:57.393 2500 FEE 438065 14449 6063538 2024-02-25 15:17:57.393 2024-02-25 15:17:57.393 22500 TIP 438065 21406 6063540 2024-02-25 15:18:03.184 2024-02-25 15:18:03.184 2500 FEE 438209 13198 6062803 2024-02-25 14:00:03.572 2024-02-25 14:00:03.572 1000 STREAM 141924 18472 6062806 2024-02-25 14:01:03.545 2024-02-25 14:01:03.545 1000 STREAM 141924 16950 6062877 2024-02-25 14:10:03.631 2024-02-25 14:10:03.631 1000 STREAM 141924 20257 6062893 2024-02-25 14:13:03.635 2024-02-25 14:13:03.635 1000 STREAM 141924 2963 6062903 2024-02-25 14:14:03.636 2024-02-25 14:14:03.636 1000 STREAM 141924 866 6062904 2024-02-25 14:15:03.665 2024-02-25 14:15:03.665 1000 STREAM 141924 6526 6062992 2024-02-25 14:19:02.827 2024-02-25 14:19:02.827 1000 STREAM 141924 3506 6062995 2024-02-25 14:20:02.884 2024-02-25 14:20:02.884 1000 STREAM 141924 4624 6062997 2024-02-25 14:21:02.86 2024-02-25 14:21:02.86 1000 STREAM 141924 2620 6123750 2024-03-01 11:14:05.157 2024-03-01 11:14:05.157 1000 STREAM 141924 9336 6062809 2024-02-25 14:02:03.557 2024-02-25 14:02:03.557 1000 STREAM 141924 633 6062813 2024-02-25 14:03:03.588 2024-02-25 14:03:03.588 1000 STREAM 141924 1000 6062826 2024-02-25 14:04:03.589 2024-02-25 14:04:03.589 1000 STREAM 141924 21079 6062852 2024-02-25 14:05:03.601 2024-02-25 14:05:03.601 1000 STREAM 141924 20381 6062855 2024-02-25 14:06:03.602 2024-02-25 14:06:03.602 1000 STREAM 141924 5578 6062861 2024-02-25 14:07:03.612 2024-02-25 14:07:03.612 1000 STREAM 141924 20299 6062867 2024-02-25 14:08:03.608 2024-02-25 14:08:03.608 1000 STREAM 141924 977 6062874 2024-02-25 14:09:03.622 2024-02-25 14:09:03.622 1000 STREAM 141924 18280 6062883 2024-02-25 14:11:03.632 2024-02-25 14:11:03.632 1000 STREAM 141924 11798 6062889 2024-02-25 14:12:03.629 2024-02-25 14:12:03.629 1000 STREAM 141924 20680 6063000 2024-02-25 14:22:02.853 2024-02-25 14:22:02.853 1000 STREAM 141924 17708 6063024 2024-02-25 14:24:02.966 2024-02-25 14:24:02.966 1000 STREAM 141924 15243 6063034 2024-02-25 14:28:03.154 2024-02-25 14:28:03.154 1000 STREAM 141924 1273 6123806 2024-03-01 11:23:55.433 2024-03-01 11:23:55.433 1000 POLL 444597 704 6123812 2024-03-01 11:25:32.899 2024-03-01 11:25:32.899 10000 FEE 444671 21062 6123813 2024-03-01 11:25:32.899 2024-03-01 11:25:32.899 90000 TIP 444671 2502 6123817 2024-03-01 11:26:14.694 2024-03-01 11:26:14.694 1000 FEE 444777 12507 6123818 2024-03-01 11:26:14.694 2024-03-01 11:26:14.694 9000 TIP 444777 618 6123834 2024-03-01 11:27:12.089 2024-03-01 11:27:12.089 1000 FEE 444803 5776 6123835 2024-03-01 11:27:12.089 2024-03-01 11:27:12.089 9000 TIP 444803 18378 6123859 2024-03-01 11:29:20.503 2024-03-01 11:29:20.503 0 FEE 444836 1576 6123878 2024-03-01 11:32:13.263 2024-03-01 11:32:13.263 0 FEE 444839 9334 6123887 2024-03-01 11:35:42.506 2024-03-01 11:35:42.506 1000 FEE 444844 20646 6123890 2024-03-01 11:37:42.194 2024-03-01 11:37:42.194 1000 FEE 444845 8287 6123902 2024-03-01 11:40:40.078 2024-03-01 11:40:40.078 0 FEE 444848 1224 6123912 2024-03-01 11:42:17.081 2024-03-01 11:42:17.081 100000 FEE 444852 11956 6123916 2024-03-01 11:43:12.412 2024-03-01 11:43:12.412 1000 FEE 444853 21214 6123927 2024-03-01 11:46:59.845 2024-03-01 11:46:59.845 1000 FEE 444855 18476 6123933 2024-03-01 11:47:19.305 2024-03-01 11:47:19.305 3300 FEE 444854 17513 6123934 2024-03-01 11:47:19.305 2024-03-01 11:47:19.305 29700 TIP 444854 1823 6123950 2024-03-01 11:48:12.97 2024-03-01 11:48:12.97 1000 FEE 444849 17976 6123951 2024-03-01 11:48:12.97 2024-03-01 11:48:12.97 9000 TIP 444849 7587 6123973 2024-03-01 11:51:34.355 2024-03-01 11:51:34.355 1000 FEE 444859 21424 6123979 2024-03-01 11:51:48.021 2024-03-01 11:51:48.021 1000 FEE 444802 17046 6123980 2024-03-01 11:51:48.021 2024-03-01 11:51:48.021 9000 TIP 444802 6616 6123989 2024-03-01 11:52:19.256 2024-03-01 11:52:19.256 0 FEE 444859 11091 6123995 2024-03-01 11:52:59.75 2024-03-01 11:52:59.75 7600 FEE 444852 4831 6123996 2024-03-01 11:52:59.75 2024-03-01 11:52:59.75 68400 TIP 444852 20904 6123998 2024-03-01 11:53:08.043 2024-03-01 11:53:08.043 7600 FEE 444848 17522 6123999 2024-03-01 11:53:08.043 2024-03-01 11:53:08.043 68400 TIP 444848 11240 6124011 2024-03-01 11:53:38.233 2024-03-01 11:53:38.233 2100 FEE 444755 2724 6124012 2024-03-01 11:53:38.233 2024-03-01 11:53:38.233 18900 TIP 444755 2576 6124025 2024-03-01 11:54:25.478 2024-03-01 11:54:25.478 1000 FEE 444866 7418 6124072 2024-03-01 12:00:05.856 2024-03-01 12:00:05.856 1000 FEE 444877 20701 6124084 2024-03-01 12:02:23.945 2024-03-01 12:02:23.945 500 FEE 444475 20502 6124085 2024-03-01 12:02:23.945 2024-03-01 12:02:23.945 4500 TIP 444475 20606 6124092 2024-03-01 12:03:50.473 2024-03-01 12:03:50.473 1000 FEE 444880 19332 6124099 2024-03-01 12:04:49.452 2024-03-01 12:04:49.452 1000 FEE 444884 2437 6124134 2024-03-01 12:07:26.278 2024-03-01 12:07:26.278 1100 FEE 444862 7827 6124135 2024-03-01 12:07:26.278 2024-03-01 12:07:26.278 9900 TIP 444862 21481 6124143 2024-03-01 12:08:35.491 2024-03-01 12:08:35.491 1000 FEE 444889 16097 6124152 2024-03-01 12:09:53.32 2024-03-01 12:09:53.32 1000 FEE 444891 2529 6124158 2024-03-01 12:11:48.164 2024-03-01 12:11:48.164 100000 FEE 444892 14267 6124167 2024-03-01 12:12:59.979 2024-03-01 12:12:59.979 1000 FEE 444895 16336 6124174 2024-03-01 12:13:40.374 2024-03-01 12:13:40.374 1000 FEE 444561 21427 6124175 2024-03-01 12:13:40.374 2024-03-01 12:13:40.374 9000 TIP 444561 7989 6124178 2024-03-01 12:13:44.151 2024-03-01 12:13:44.151 1000 FEE 444698 10771 6124179 2024-03-01 12:13:44.151 2024-03-01 12:13:44.151 9000 TIP 444698 3371 6124200 2024-03-01 12:19:30.658 2024-03-01 12:19:30.658 1000 FEE 444905 14552 6124204 2024-03-01 12:19:56.804 2024-03-01 12:19:56.804 2100 FEE 444894 20906 6124205 2024-03-01 12:19:56.804 2024-03-01 12:19:56.804 18900 TIP 444894 919 6124221 2024-03-01 12:22:25.491 2024-03-01 12:22:25.491 10000 FEE 444911 18460 6124259 2024-03-01 12:26:44.218 2024-03-01 12:26:44.218 300 FEE 444842 18174 6124260 2024-03-01 12:26:44.218 2024-03-01 12:26:44.218 2700 TIP 444842 9364 6124277 2024-03-01 12:26:45.638 2024-03-01 12:26:45.638 300 FEE 444842 18637 6124278 2024-03-01 12:26:45.638 2024-03-01 12:26:45.638 2700 TIP 444842 8506 6124287 2024-03-01 12:27:12.441 2024-03-01 12:27:12.441 7600 FEE 444915 21180 6124288 2024-03-01 12:27:12.441 2024-03-01 12:27:12.441 68400 TIP 444915 17673 6124289 2024-03-01 12:27:15.846 2024-03-01 12:27:15.846 2100 FEE 444874 699 6124290 2024-03-01 12:27:15.846 2024-03-01 12:27:15.846 18900 TIP 444874 11515 6124295 2024-03-01 12:27:22.198 2024-03-01 12:27:22.198 2100 FEE 444802 19036 6124296 2024-03-01 12:27:22.198 2024-03-01 12:27:22.198 18900 TIP 444802 21577 6124306 2024-03-01 12:27:49.476 2024-03-01 12:27:49.476 2100 FEE 444892 20084 6124307 2024-03-01 12:27:49.476 2024-03-01 12:27:49.476 18900 TIP 444892 15409 6124316 2024-03-01 12:28:04.62 2024-03-01 12:28:04.62 2100 FEE 444911 20504 6124317 2024-03-01 12:28:04.62 2024-03-01 12:28:04.62 18900 TIP 444911 19512 6124367 2024-03-01 12:28:50.187 2024-03-01 12:28:50.187 2100 FEE 444807 16858 6124368 2024-03-01 12:28:50.187 2024-03-01 12:28:50.187 18900 TIP 444807 6515 6124387 2024-03-01 12:29:01.331 2024-03-01 12:29:01.331 2100 FEE 444787 13097 6124388 2024-03-01 12:29:01.331 2024-03-01 12:29:01.331 18900 TIP 444787 17411 6124404 2024-03-01 12:29:45.053 2024-03-01 12:29:45.053 1000 FEE 444842 9026 6124405 2024-03-01 12:29:45.053 2024-03-01 12:29:45.053 9000 TIP 444842 19639 6124428 2024-03-01 12:32:02.76 2024-03-01 12:32:02.76 2100 FEE 444921 18188 6124429 2024-03-01 12:32:02.76 2024-03-01 12:32:02.76 18900 TIP 444921 17157 6124433 2024-03-01 12:32:15.848 2024-03-01 12:32:15.848 2100 FEE 444883 11698 6124434 2024-03-01 12:32:15.848 2024-03-01 12:32:15.848 18900 TIP 444883 713 6124437 2024-03-01 12:32:36.408 2024-03-01 12:32:36.408 0 FEE 444922 20562 6124461 2024-03-01 12:36:24.234 2024-03-01 12:36:24.234 100000 FEE 444845 13361 6124462 2024-03-01 12:36:24.234 2024-03-01 12:36:24.234 900000 TIP 444845 20706 6062930 2024-02-25 14:17:00.936 2024-02-25 14:17:00.936 4000 FEE 438288 20775 6062931 2024-02-25 14:17:00.936 2024-02-25 14:17:00.936 36000 TIP 438288 17183 6062946 2024-02-25 14:17:17.435 2024-02-25 14:17:17.435 6900 FEE 438232 11423 6062947 2024-02-25 14:17:17.435 2024-02-25 14:17:17.435 62100 TIP 438232 18892 6062963 2024-02-25 14:17:45.007 2024-02-25 14:17:45.007 1000 FEE 438230 21090 6062964 2024-02-25 14:17:45.007 2024-02-25 14:17:45.007 9000 TIP 438230 13406 6062990 2024-02-25 14:18:58.312 2024-02-25 14:18:58.312 2000 FEE 437723 17891 6062991 2024-02-25 14:18:58.312 2024-02-25 14:18:58.312 18000 TIP 437723 19154 6062998 2024-02-25 14:21:21.202 2024-02-25 14:21:21.202 2100 FEE 438232 891 6062999 2024-02-25 14:21:21.202 2024-02-25 14:21:21.202 18900 TIP 438232 20998 6063003 2024-02-25 14:22:10.162 2024-02-25 14:22:10.162 2100 FEE 437646 15488 6063004 2024-02-25 14:22:10.162 2024-02-25 14:22:10.162 18900 TIP 437646 705 6063018 2024-02-25 14:23:21.982 2024-02-25 14:23:21.982 2100 FEE 437593 17331 6063019 2024-02-25 14:23:21.982 2024-02-25 14:23:21.982 18900 TIP 437593 18735 6063020 2024-02-25 14:23:33.568 2024-02-25 14:23:33.568 15000 FEE 438124 20788 6063021 2024-02-25 14:23:33.568 2024-02-25 14:23:33.568 135000 TIP 438124 19284 6063022 2024-02-25 14:23:53.788 2024-02-25 14:23:53.788 2100 FEE 437685 699 6063023 2024-02-25 14:23:53.788 2024-02-25 14:23:53.788 18900 TIP 437685 18956 6063036 2024-02-25 14:28:51.328 2024-02-25 14:28:51.328 10000 FEE 438289 2203 6063037 2024-02-25 14:28:51.328 2024-02-25 14:28:51.328 90000 TIP 438289 8535 6063046 2024-02-25 14:30:25.015 2024-02-25 14:30:25.015 12800 FEE 438202 10007 6063047 2024-02-25 14:30:25.015 2024-02-25 14:30:25.015 115200 TIP 438202 11075 6063048 2024-02-25 14:31:02.601 2024-02-25 14:31:02.601 1000 FEE 438307 1012 6063074 2024-02-25 14:37:35.771 2024-02-25 14:37:35.771 0 FEE 438310 20554 6063095 2024-02-25 14:40:56.318 2024-02-25 14:40:56.318 6900 FEE 438209 12158 6063096 2024-02-25 14:40:56.318 2024-02-25 14:40:56.318 62100 TIP 438209 20481 6063203 2024-02-25 14:54:10.8 2024-02-25 14:54:10.8 10000 FEE 438327 20267 6063222 2024-02-25 14:54:59.458 2024-02-25 14:54:59.458 0 FEE 438326 20225 6063227 2024-02-25 14:55:13.589 2024-02-25 14:55:13.589 0 FEE 438326 21591 6063270 2024-02-25 14:59:10.056 2024-02-25 14:59:10.056 9000 FEE 438211 1047 6063271 2024-02-25 14:59:10.056 2024-02-25 14:59:10.056 81000 TIP 438211 16670 6063281 2024-02-25 14:59:47.471 2024-02-25 14:59:47.471 100 FEE 438202 8448 6063282 2024-02-25 14:59:47.471 2024-02-25 14:59:47.471 900 TIP 438202 6499 6063293 2024-02-25 15:00:05.733 2024-02-25 15:00:05.733 200 FEE 438299 20434 6063294 2024-02-25 15:00:05.733 2024-02-25 15:00:05.733 1800 TIP 438299 18309 6063309 2024-02-25 15:01:24.464 2024-02-25 15:01:24.464 100 FEE 438075 18583 6063310 2024-02-25 15:01:24.464 2024-02-25 15:01:24.464 900 TIP 438075 15094 6063355 2024-02-25 15:04:54.057 2024-02-25 15:04:54.057 1000 FEE 438344 20018 6063362 2024-02-25 15:05:31.106 2024-02-25 15:05:31.106 9000 FEE 437984 12188 6063363 2024-02-25 15:05:31.106 2024-02-25 15:05:31.106 81000 TIP 437984 769 6063365 2024-02-25 15:05:48.592 2024-02-25 15:05:48.592 100 FEE 437995 13216 6063366 2024-02-25 15:05:48.592 2024-02-25 15:05:48.592 900 TIP 437995 17891 6063388 2024-02-25 15:07:57.399 2024-02-25 15:07:57.399 900 FEE 438002 20525 6063389 2024-02-25 15:07:57.399 2024-02-25 15:07:57.399 8100 TIP 438002 19638 6063401 2024-02-25 15:09:38.462 2024-02-25 15:09:38.462 100 FEE 438044 2162 6063402 2024-02-25 15:09:38.462 2024-02-25 15:09:38.462 900 TIP 438044 8326 6063413 2024-02-25 15:10:16.534 2024-02-25 15:10:16.534 300 FEE 437775 4831 6063414 2024-02-25 15:10:16.534 2024-02-25 15:10:16.534 2700 TIP 437775 21422 6063434 2024-02-25 15:12:36.223 2024-02-25 15:12:36.223 100000 DONT_LIKE_THIS 437170 18124 6063442 2024-02-25 15:13:47.805 2024-02-25 15:13:47.805 1000 FEE 438354 9356 6063446 2024-02-25 15:14:22.791 2024-02-25 15:14:22.791 900 FEE 438141 19309 6063447 2024-02-25 15:14:22.791 2024-02-25 15:14:22.791 8100 TIP 438141 9845 6063448 2024-02-25 15:14:24.051 2024-02-25 15:14:24.051 100 FEE 438122 20663 6063449 2024-02-25 15:14:24.051 2024-02-25 15:14:24.051 900 TIP 438122 21453 6063469 2024-02-25 15:14:59.533 2024-02-25 15:14:59.533 900 FEE 438198 20129 6063470 2024-02-25 15:14:59.533 2024-02-25 15:14:59.533 8100 TIP 438198 11527 6063477 2024-02-25 15:15:26.148 2024-02-25 15:15:26.148 3400 FEE 438231 19981 6063478 2024-02-25 15:15:26.148 2024-02-25 15:15:26.148 30600 TIP 438231 19689 6063515 2024-02-25 15:15:39.202 2024-02-25 15:15:39.202 10000 DONT_LIKE_THIS 438216 768 6063532 2024-02-25 15:17:16.503 2024-02-25 15:17:16.503 100000 DONT_LIKE_THIS 438234 11498 6063533 2024-02-25 15:17:27.91 2024-02-25 15:17:27.91 2100 FEE 438325 18016 6063534 2024-02-25 15:17:27.91 2024-02-25 15:17:27.91 18900 TIP 438325 882 6063551 2024-02-25 15:18:43.492 2024-02-25 15:18:43.492 2100 FEE 438092 683 6063552 2024-02-25 15:18:43.492 2024-02-25 15:18:43.492 18900 TIP 438092 17984 6063559 2024-02-25 15:19:00.187 2024-02-25 15:19:00.187 900 FEE 438250 4768 6063560 2024-02-25 15:19:00.187 2024-02-25 15:19:00.187 8100 TIP 438250 20687 6063574 2024-02-25 15:22:44.321 2024-02-25 15:22:44.321 1000 FEE 434256 2525 6063575 2024-02-25 15:22:44.321 2024-02-25 15:22:44.321 9000 TIP 434256 5497 6063594 2024-02-25 15:25:41.35 2024-02-25 15:25:41.35 21000 FEE 438363 19943 6063603 2024-02-25 15:26:41.187 2024-02-25 15:26:41.187 3400 FEE 438231 2961 6063604 2024-02-25 15:26:41.187 2024-02-25 15:26:41.187 30600 TIP 438231 15088 6063607 2024-02-25 15:26:58.559 2024-02-25 15:26:58.559 3400 FEE 438245 1741 6063608 2024-02-25 15:26:58.559 2024-02-25 15:26:58.559 30600 TIP 438245 18473 6063615 2024-02-25 15:28:43.607 2024-02-25 15:28:43.607 2500 FEE 438279 19449 6063616 2024-02-25 15:28:43.607 2024-02-25 15:28:43.607 22500 TIP 438279 7425 6063618 2024-02-25 15:29:16.66 2024-02-25 15:29:16.66 1000 FEE 438365 763 6063625 2024-02-25 15:31:41.507 2024-02-25 15:31:41.507 1100 FEE 438361 19843 6063626 2024-02-25 15:31:41.507 2024-02-25 15:31:41.507 9900 TIP 438361 12261 6063646 2024-02-25 15:33:50.935 2024-02-25 15:33:50.935 100 FEE 438206 20523 6063647 2024-02-25 15:33:50.935 2024-02-25 15:33:50.935 900 TIP 438206 5195 6063649 2024-02-25 15:34:17.66 2024-02-25 15:34:17.66 1000 FEE 64293 10519 6063650 2024-02-25 15:34:17.66 2024-02-25 15:34:17.66 9000 TIP 64293 4035 6063665 2024-02-25 15:37:50.828 2024-02-25 15:37:50.828 1000 FEE 438365 2776 6063666 2024-02-25 15:37:50.828 2024-02-25 15:37:50.828 9000 TIP 438365 1389 6063670 2024-02-25 15:38:32.696 2024-02-25 15:38:32.696 4000 FEE 438261 11498 6063671 2024-02-25 15:38:32.696 2024-02-25 15:38:32.696 36000 TIP 438261 12289 6063675 2024-02-25 15:39:05.497 2024-02-25 15:39:05.497 6900 FEE 438317 5377 6063676 2024-02-25 15:39:05.497 2024-02-25 15:39:05.497 62100 TIP 438317 16178 6063679 2024-02-25 15:39:05.713 2024-02-25 15:39:05.713 6900 FEE 438317 18517 6063680 2024-02-25 15:39:05.713 2024-02-25 15:39:05.713 62100 TIP 438317 647 6063683 2024-02-25 15:39:06.169 2024-02-25 15:39:06.169 6900 FEE 438317 20871 6063684 2024-02-25 15:39:06.169 2024-02-25 15:39:06.169 62100 TIP 438317 20891 6063687 2024-02-25 15:39:06.29 2024-02-25 15:39:06.29 6900 FEE 438317 10530 6063688 2024-02-25 15:39:06.29 2024-02-25 15:39:06.29 62100 TIP 438317 5160 6063697 2024-02-25 15:39:06.911 2024-02-25 15:39:06.911 6900 FEE 438317 20424 6063698 2024-02-25 15:39:06.911 2024-02-25 15:39:06.911 62100 TIP 438317 1122 6063711 2024-02-25 15:39:09.578 2024-02-25 15:39:09.578 6900 FEE 438317 17237 6063712 2024-02-25 15:39:09.578 2024-02-25 15:39:09.578 62100 TIP 438317 2233 6063727 2024-02-25 15:39:12.653 2024-02-25 15:39:12.653 6900 FEE 438317 16387 6063728 2024-02-25 15:39:12.653 2024-02-25 15:39:12.653 62100 TIP 438317 2774 6063744 2024-02-25 15:39:23.66 2024-02-25 15:39:23.66 4000 FEE 438264 21506 6063745 2024-02-25 15:39:23.66 2024-02-25 15:39:23.66 36000 TIP 438264 14385 6063775 2024-02-25 15:42:32.846 2024-02-25 15:42:32.846 9000 FEE 438345 5590 6063776 2024-02-25 15:42:32.846 2024-02-25 15:42:32.846 81000 TIP 438345 12272 6062937 2024-02-25 14:17:03.782 2024-02-25 14:17:03.782 1000 STREAM 141924 18830 6123843 2024-03-01 11:28:21.579 2024-03-01 11:28:21.579 3100 FEE 444755 12606 6123844 2024-03-01 11:28:21.579 2024-03-01 11:28:21.579 27900 TIP 444755 3440 6123863 2024-03-01 11:29:42.492 2024-03-01 11:29:42.492 0 FEE 444832 1576 6123881 2024-03-01 11:33:18.757 2024-03-01 11:33:18.757 0 FEE 444839 20291 6123894 2024-03-01 11:38:39.719 2024-03-01 11:38:39.719 0 FEE 444845 19546 6123900 2024-03-01 11:39:57.607 2024-03-01 11:39:57.607 0 FEE 444847 21563 6123905 2024-03-01 11:41:05.925 2024-03-01 11:41:05.925 1000 FEE 444755 19292 6123906 2024-03-01 11:41:05.925 2024-03-01 11:41:05.925 9000 TIP 444755 20904 6123908 2024-03-01 11:41:33.17 2024-03-01 11:41:33.17 1000 FEE 444847 6526 6123909 2024-03-01 11:41:33.17 2024-03-01 11:41:33.17 9000 TIP 444847 9421 6123917 2024-03-01 11:43:16.875 2024-03-01 11:43:16.875 7600 FEE 444842 616 6123918 2024-03-01 11:43:16.875 2024-03-01 11:43:16.875 68400 TIP 444842 14959 6123921 2024-03-01 11:43:56.522 2024-03-01 11:43:56.522 9000 FEE 444847 4798 6123922 2024-03-01 11:43:56.522 2024-03-01 11:43:56.522 81000 TIP 444847 16665 6123941 2024-03-01 11:48:01.323 2024-03-01 11:48:01.323 2100 FEE 444707 19267 6123942 2024-03-01 11:48:01.323 2024-03-01 11:48:01.323 18900 TIP 444707 11789 6123975 2024-03-01 11:51:39.951 2024-03-01 11:51:39.951 11100 FEE 444845 9290 6123976 2024-03-01 11:51:39.951 2024-03-01 11:51:39.951 99900 TIP 444845 5852 6063028 2024-02-25 14:26:03.869 2024-02-25 14:26:03.869 1000 STREAM 141924 13527 6063031 2024-02-25 14:27:03.9 2024-02-25 14:27:03.9 1000 STREAM 141924 2256 6123850 2024-03-01 11:29:05.202 2024-03-01 11:29:05.202 1000 STREAM 141924 18188 6123865 2024-03-01 11:30:05.225 2024-03-01 11:30:05.225 1000 STREAM 141924 20642 6123873 2024-03-01 11:31:05.216 2024-03-01 11:31:05.216 1000 STREAM 141924 2213 6123877 2024-03-01 11:32:05.212 2024-03-01 11:32:05.212 1000 STREAM 141924 9362 6123880 2024-03-01 11:33:05.213 2024-03-01 11:33:05.213 1000 STREAM 141924 16912 6123886 2024-03-01 11:35:05.232 2024-03-01 11:35:05.232 1000 STREAM 141924 18392 6123892 2024-03-01 11:38:05.237 2024-03-01 11:38:05.237 1000 STREAM 141924 18919 6123897 2024-03-01 11:39:05.25 2024-03-01 11:39:05.25 1000 STREAM 141924 2703 6123915 2024-03-01 11:43:05.264 2024-03-01 11:43:05.264 1000 STREAM 141924 19857 6123924 2024-03-01 11:45:05.31 2024-03-01 11:45:05.31 1000 STREAM 141924 12175 6123997 2024-03-01 11:53:05.361 2024-03-01 11:53:05.361 1000 STREAM 141924 3478 6124071 2024-03-01 12:00:05.381 2024-03-01 12:00:05.381 1000 STREAM 141924 17696 6124100 2024-03-01 12:05:05.395 2024-03-01 12:05:05.395 1000 STREAM 141924 21588 6124148 2024-03-01 12:09:05.417 2024-03-01 12:09:05.417 1000 STREAM 141924 21424 6124168 2024-03-01 12:13:05.536 2024-03-01 12:13:05.536 1000 STREAM 141924 20757 6124192 2024-03-01 12:17:05.61 2024-03-01 12:17:05.61 1000 STREAM 141924 701 6124193 2024-03-01 12:18:01.609 2024-03-01 12:18:01.609 1000 STREAM 141924 2203 6124227 2024-03-01 12:23:05.671 2024-03-01 12:23:05.671 1000 STREAM 141924 3353 6124230 2024-03-01 12:25:05.692 2024-03-01 12:25:05.692 1000 STREAM 141924 4225 6124232 2024-03-01 12:26:03.705 2024-03-01 12:26:03.705 1000 STREAM 141924 7773 6124286 2024-03-01 12:27:05.705 2024-03-01 12:27:05.705 1000 STREAM 141924 21458 6124414 2024-03-01 12:31:05.715 2024-03-01 12:31:05.715 1000 STREAM 141924 746 6124430 2024-03-01 12:32:03.721 2024-03-01 12:32:03.721 1000 STREAM 141924 15336 6124439 2024-03-01 12:33:05.716 2024-03-01 12:33:05.716 1000 STREAM 141924 5359 6124457 2024-03-01 12:35:05.715 2024-03-01 12:35:05.715 1000 STREAM 141924 15594 6124465 2024-03-01 12:37:05.724 2024-03-01 12:37:05.724 1000 STREAM 141924 6148 6124473 2024-03-01 12:38:03.72 2024-03-01 12:38:03.72 1000 STREAM 141924 9916 6124506 2024-03-01 12:40:05.762 2024-03-01 12:40:05.762 1000 STREAM 141924 3717 6124508 2024-03-01 12:41:03.732 2024-03-01 12:41:03.732 1000 STREAM 141924 16562 6124521 2024-03-01 12:43:01.734 2024-03-01 12:43:01.734 1000 STREAM 141924 946 6124582 2024-03-01 12:49:03.768 2024-03-01 12:49:03.768 1000 STREAM 141924 15063 6124586 2024-03-01 12:51:03.779 2024-03-01 12:51:03.779 1000 STREAM 141924 9331 6124664 2024-03-01 12:54:05.815 2024-03-01 12:54:05.815 1000 STREAM 141924 1825 6124674 2024-03-01 12:56:05.81 2024-03-01 12:56:05.81 1000 STREAM 141924 620 6124688 2024-03-01 12:58:05.826 2024-03-01 12:58:05.826 1000 STREAM 141924 12911 6063038 2024-02-25 14:29:03.971 2024-02-25 14:29:03.971 1000 STREAM 141924 20409 6063052 2024-02-25 14:32:03.973 2024-02-25 14:32:03.973 1000 STREAM 141924 14910 6063062 2024-02-25 14:34:03.996 2024-02-25 14:34:03.996 1000 STREAM 141924 9347 6063065 2024-02-25 14:35:04.004 2024-02-25 14:35:04.004 1000 STREAM 141924 12721 6063069 2024-02-25 14:36:04.013 2024-02-25 14:36:04.013 1000 STREAM 141924 19570 6063077 2024-02-25 14:38:04.031 2024-02-25 14:38:04.031 1000 STREAM 141924 3353 6063103 2024-02-25 14:41:04.064 2024-02-25 14:41:04.064 1000 STREAM 141924 759 6063106 2024-02-25 14:42:04.063 2024-02-25 14:42:04.063 1000 STREAM 141924 13527 6063119 2024-02-25 14:44:04.079 2024-02-25 14:44:04.079 1000 STREAM 141924 18658 6063126 2024-02-25 14:45:04.078 2024-02-25 14:45:04.078 1000 STREAM 141924 16284 6063128 2024-02-25 14:46:04.068 2024-02-25 14:46:04.068 1000 STREAM 141924 20152 6063178 2024-02-25 14:51:04.126 2024-02-25 14:51:04.126 1000 STREAM 141924 21287 6063201 2024-02-25 14:54:04.164 2024-02-25 14:54:04.164 1000 STREAM 141924 2513 6063232 2024-02-25 14:56:04.208 2024-02-25 14:56:04.208 1000 STREAM 141924 1741 6063239 2024-02-25 14:58:04.185 2024-02-25 14:58:04.185 1000 STREAM 141924 21446 6063317 2024-02-25 15:02:04.213 2024-02-25 15:02:04.213 1000 STREAM 141924 17124 6063339 2024-02-25 15:03:04.223 2024-02-25 15:03:04.223 1000 STREAM 141924 20776 6123875 2024-03-01 11:31:08.161 2024-03-01 11:31:08.161 225000 TIP 444755 10690 6123885 2024-03-01 11:34:40.582 2024-03-01 11:34:40.582 1000 FEE 444843 13100 6123893 2024-03-01 11:38:21.206 2024-03-01 11:38:21.206 1000 FEE 444847 11516 6123911 2024-03-01 11:42:12.589 2024-03-01 11:42:12.589 1000 FEE 444851 17976 6123919 2024-03-01 11:43:19.107 2024-03-01 11:43:19.107 0 FEE 444847 14260 6123920 2024-03-01 11:43:38.341 2024-03-01 11:43:38.341 0 FEE 368845 19286 6123931 2024-03-01 11:47:18.366 2024-03-01 11:47:18.366 1000 FEE 444843 1120 6123932 2024-03-01 11:47:18.366 2024-03-01 11:47:18.366 9000 TIP 444843 17172 6123972 2024-03-01 11:51:15.755 2024-03-01 11:51:15.755 1000 FEE 444858 19553 6123977 2024-03-01 11:51:41.836 2024-03-01 11:51:41.836 2100 FEE 444803 16267 6123978 2024-03-01 11:51:41.836 2024-03-01 11:51:41.836 18900 TIP 444803 11716 6123992 2024-03-01 11:52:42.383 2024-03-01 11:52:42.383 10000 FEE 444859 21352 6123993 2024-03-01 11:52:42.383 2024-03-01 11:52:42.383 90000 TIP 444859 1577 6123994 2024-03-01 11:52:45.898 2024-03-01 11:52:45.898 0 FEE 444859 15239 6124007 2024-03-01 11:53:34.975 2024-03-01 11:53:34.975 200 FEE 444755 699 6124008 2024-03-01 11:53:34.975 2024-03-01 11:53:34.975 1800 TIP 444755 2961 6124009 2024-03-01 11:53:37.428 2024-03-01 11:53:37.428 2100 FEE 444707 18309 6124010 2024-03-01 11:53:37.428 2024-03-01 11:53:37.428 18900 TIP 444707 17124 6124015 2024-03-01 11:53:40.614 2024-03-01 11:53:40.614 2100 FEE 444662 21585 6124016 2024-03-01 11:53:40.614 2024-03-01 11:53:40.614 18900 TIP 444662 4502 6124017 2024-03-01 11:53:43.536 2024-03-01 11:53:43.536 2100 FEE 444746 6300 6124018 2024-03-01 11:53:43.536 2024-03-01 11:53:43.536 18900 TIP 444746 11561 6124037 2024-03-01 11:55:44.772 2024-03-01 11:55:44.772 1000 FEE 444869 20901 6124042 2024-03-01 11:56:36.825 2024-03-01 11:56:36.825 1000 FEE 444872 726 6124045 2024-03-01 11:56:49.335 2024-03-01 11:56:49.335 1100 FEE 444864 11716 6124046 2024-03-01 11:56:49.335 2024-03-01 11:56:49.335 9900 TIP 444864 14688 6124059 2024-03-01 11:58:33.195 2024-03-01 11:58:33.195 10000 FEE 444689 15588 6124060 2024-03-01 11:58:33.195 2024-03-01 11:58:33.195 90000 TIP 444689 7583 6124062 2024-03-01 11:58:41.157 2024-03-01 11:58:41.157 1000 FEE 444875 20706 6124063 2024-03-01 11:58:46.978 2024-03-01 11:58:46.978 1000 FEE 444718 5978 6124064 2024-03-01 11:58:46.978 2024-03-01 11:58:46.978 9000 TIP 444718 7654 6124073 2024-03-01 12:01:00.736 2024-03-01 12:01:00.736 1000 FEE 444864 18359 6124074 2024-03-01 12:01:00.736 2024-03-01 12:01:00.736 9000 TIP 444864 1741 6124088 2024-03-01 12:03:35.926 2024-03-01 12:03:35.926 4200 FEE 444105 16432 6124089 2024-03-01 12:03:35.926 2024-03-01 12:03:35.926 37800 TIP 444105 16406 6124098 2024-03-01 12:04:44.579 2024-03-01 12:04:44.579 100000 FEE 444883 21395 6124103 2024-03-01 12:05:16.469 2024-03-01 12:05:16.469 1700 FEE 444755 21060 6124104 2024-03-01 12:05:16.469 2024-03-01 12:05:16.469 15300 TIP 444755 20436 6124111 2024-03-01 12:05:17.181 2024-03-01 12:05:17.181 1700 FEE 444755 20588 6063043 2024-02-25 14:29:39.997 2024-02-25 14:29:39.997 1000 FEE 438305 1046 6063050 2024-02-25 14:31:15.266 2024-02-25 14:31:15.266 0 FEE 438304 798 6063054 2024-02-25 14:32:23.743 2024-02-25 14:32:23.743 2100 FEE 438296 21271 6063055 2024-02-25 14:32:23.743 2024-02-25 14:32:23.743 18900 TIP 438296 17494 6063057 2024-02-25 14:33:25.335 2024-02-25 14:33:25.335 1000 FEE 438309 2328 6063067 2024-02-25 14:35:14.238 2024-02-25 14:35:14.238 0 FEE 438310 940 6063071 2024-02-25 14:36:36.971 2024-02-25 14:36:36.971 0 FEE 438310 20972 6063078 2024-02-25 14:38:34.134 2024-02-25 14:38:34.134 4000 FEE 438308 18209 6063079 2024-02-25 14:38:34.134 2024-02-25 14:38:34.134 36000 TIP 438308 1000 6063114 2024-02-25 14:43:46.538 2024-02-25 14:43:46.538 10000 FEE 438314 15890 6063117 2024-02-25 14:44:00.055 2024-02-25 14:44:00.055 1000 FEE 438232 6003 6063118 2024-02-25 14:44:00.055 2024-02-25 14:44:00.055 9000 TIP 438232 11458 6063131 2024-02-25 14:46:37.48 2024-02-25 14:46:37.48 1000 FEE 438318 13553 6063150 2024-02-25 14:49:17.528 2024-02-25 14:49:17.528 6900 FEE 438065 8870 6063151 2024-02-25 14:49:17.528 2024-02-25 14:49:17.528 62100 TIP 438065 19576 6063165 2024-02-25 14:49:50.749 2024-02-25 14:49:50.749 3000 FEE 438243 11298 6063166 2024-02-25 14:49:50.749 2024-02-25 14:49:50.749 27000 TIP 438243 10112 6063179 2024-02-25 14:51:15.249 2024-02-25 14:51:15.249 0 FEE 438320 9183 6063195 2024-02-25 14:53:07.974 2024-02-25 14:53:07.974 1000 FEE 438323 2652 6063223 2024-02-25 14:55:00.403 2024-02-25 14:55:00.403 0 FEE 438325 18311 6063248 2024-02-25 14:58:21.179 2024-02-25 14:58:21.179 4000 FEE 438325 14795 6063249 2024-02-25 14:58:21.179 2024-02-25 14:58:21.179 36000 TIP 438325 9496 6063261 2024-02-25 14:59:04.043 2024-02-25 14:59:04.043 900 FEE 438261 661 6063262 2024-02-25 14:59:04.043 2024-02-25 14:59:04.043 8100 TIP 438261 18664 6063268 2024-02-25 14:59:09.638 2024-02-25 14:59:09.638 900 FEE 438211 21262 6063269 2024-02-25 14:59:09.638 2024-02-25 14:59:09.638 8100 TIP 438211 8360 6063272 2024-02-25 14:59:21.888 2024-02-25 14:59:21.888 1000 FEE 438331 21014 6063291 2024-02-25 15:00:05.201 2024-02-25 15:00:05.201 1000 FEE 438335 11819 6063292 2024-02-25 15:00:05.381 2024-02-25 15:00:05.381 1000 FEE 438336 12265 6063300 2024-02-25 15:00:36.985 2024-02-25 15:00:36.985 900 FEE 438188 5752 6063301 2024-02-25 15:00:36.985 2024-02-25 15:00:36.985 8100 TIP 438188 17602 6063305 2024-02-25 15:01:22.776 2024-02-25 15:01:22.776 100 FEE 438075 18446 6063306 2024-02-25 15:01:22.776 2024-02-25 15:01:22.776 900 TIP 438075 16912 6063311 2024-02-25 15:01:24.742 2024-02-25 15:01:24.742 100 FEE 438075 986 6063312 2024-02-25 15:01:24.742 2024-02-25 15:01:24.742 900 TIP 438075 6555 6063331 2024-02-25 15:02:44.521 2024-02-25 15:02:44.521 10000 FEE 438339 20757 6063340 2024-02-25 15:03:04.775 2024-02-25 15:03:04.775 1000 FEE 438342 6717 6063351 2024-02-25 15:04:45.92 2024-02-25 15:04:45.92 100 FEE 437984 10862 6063352 2024-02-25 15:04:45.92 2024-02-25 15:04:45.92 900 TIP 437984 3439 6063386 2024-02-25 15:07:54.476 2024-02-25 15:07:54.476 100 FEE 438002 20439 6063387 2024-02-25 15:07:54.476 2024-02-25 15:07:54.476 900 TIP 438002 8506 6063406 2024-02-25 15:09:50.76 2024-02-25 15:09:50.76 9000 FEE 438044 18731 6063407 2024-02-25 15:09:50.76 2024-02-25 15:09:50.76 81000 TIP 438044 712 6063409 2024-02-25 15:10:16.051 2024-02-25 15:10:16.051 100 FEE 438051 18124 6063410 2024-02-25 15:10:16.051 2024-02-25 15:10:16.051 900 TIP 438051 19952 6063419 2024-02-25 15:11:14.918 2024-02-25 15:11:14.918 2100 FEE 438065 3456 6063420 2024-02-25 15:11:14.918 2024-02-25 15:11:14.918 18900 TIP 438065 19907 6063421 2024-02-25 15:11:17.824 2024-02-25 15:11:17.824 1000000 DONT_LIKE_THIS 438087 19952 6063427 2024-02-25 15:11:56.548 2024-02-25 15:11:56.548 10000 FEE 438084 12609 6063428 2024-02-25 15:11:56.548 2024-02-25 15:11:56.548 90000 TIP 438084 2776 6063431 2024-02-25 15:12:20.972 2024-02-25 15:12:20.972 100000 DONT_LIKE_THIS 437974 3360 6063437 2024-02-25 15:13:09.187 2024-02-25 15:13:09.187 1000 FEE 438242 19637 6063438 2024-02-25 15:13:09.187 2024-02-25 15:13:09.187 9000 TIP 438242 7983 6063439 2024-02-25 15:13:10.316 2024-02-25 15:13:10.316 2500 FEE 438295 2328 6063440 2024-02-25 15:13:10.316 2024-02-25 15:13:10.316 22500 TIP 438295 9920 6063444 2024-02-25 15:14:22.033 2024-02-25 15:14:22.033 100 FEE 438141 14278 6063445 2024-02-25 15:14:22.033 2024-02-25 15:14:22.033 900 TIP 438141 19021 6063493 2024-02-25 15:15:33.419 2024-02-25 15:15:33.419 6900 FEE 438092 2347 6063494 2024-02-25 15:15:33.419 2024-02-25 15:15:33.419 62100 TIP 438092 3304 6063501 2024-02-25 15:15:34.108 2024-02-25 15:15:34.108 6900 FEE 438092 2188 6063502 2024-02-25 15:15:34.108 2024-02-25 15:15:34.108 62100 TIP 438092 2757 6063523 2024-02-25 15:16:12.566 2024-02-25 15:16:12.566 2100 FEE 438272 11443 6063524 2024-02-25 15:16:12.566 2024-02-25 15:16:12.566 18900 TIP 438272 20603 6063553 2024-02-25 15:18:45.461 2024-02-25 15:18:45.461 2100 FEE 438325 20963 6063554 2024-02-25 15:18:45.461 2024-02-25 15:18:45.461 18900 TIP 438325 4059 6063576 2024-02-25 15:22:54.806 2024-02-25 15:22:54.806 3500 FEE 438065 20243 6063577 2024-02-25 15:22:54.806 2024-02-25 15:22:54.806 31500 TIP 438065 19886 6063597 2024-02-25 15:26:01.921 2024-02-25 15:26:01.921 3400 FEE 436683 18076 6063598 2024-02-25 15:26:01.921 2024-02-25 15:26:01.921 30600 TIP 436683 963 6063624 2024-02-25 15:31:38.493 2024-02-25 15:31:38.493 21000 FEE 438367 5519 6063634 2024-02-25 15:32:49.713 2024-02-25 15:32:49.713 1000 FEE 438303 3478 6063635 2024-02-25 15:32:49.713 2024-02-25 15:32:49.713 9000 TIP 438303 16769 6063637 2024-02-25 15:33:35.427 2024-02-25 15:33:35.427 100 FEE 438325 1512 6063638 2024-02-25 15:33:35.427 2024-02-25 15:33:35.427 900 TIP 438325 9494 6063639 2024-02-25 15:33:45.605 2024-02-25 15:33:45.605 1000 FEE 438369 797 6063651 2024-02-25 15:34:30.839 2024-02-25 15:34:30.839 1000 FEE 438370 14959 6063657 2024-02-25 15:35:53.866 2024-02-25 15:35:53.866 7700 FEE 437269 889 6063658 2024-02-25 15:35:53.866 2024-02-25 15:35:53.866 69300 TIP 437269 652 6063681 2024-02-25 15:39:05.918 2024-02-25 15:39:05.918 6900 FEE 438317 18177 6063116 2024-02-25 14:43:59.013 2024-02-25 14:43:59.013 36000 TIP 437114 2188 6063134 2024-02-25 14:47:52.868 2024-02-25 14:47:52.868 21000 FEE 438319 2961 6063216 2024-02-25 14:54:52.728 2024-02-25 14:54:52.728 900 FEE 438092 882 6063217 2024-02-25 14:54:52.728 2024-02-25 14:54:52.728 8100 TIP 438092 5129 6063250 2024-02-25 14:58:33.672 2024-02-25 14:58:33.672 1000 FEE 438303 19821 6063251 2024-02-25 14:58:33.672 2024-02-25 14:58:33.672 9000 TIP 438303 19637 6063258 2024-02-25 14:59:00.39 2024-02-25 14:59:00.39 1000 FEE 438330 2757 6063266 2024-02-25 14:59:09.403 2024-02-25 14:59:09.403 100 FEE 438211 1039 6063267 2024-02-25 14:59:09.403 2024-02-25 14:59:09.403 900 TIP 438211 5776 6063295 2024-02-25 15:00:06.777 2024-02-25 15:00:06.777 200 FEE 438299 1712 6063296 2024-02-25 15:00:06.777 2024-02-25 15:00:06.777 1800 TIP 438299 21480 6063304 2024-02-25 15:01:14.876 2024-02-25 15:01:14.876 0 FEE 438335 20152 6063329 2024-02-25 15:02:37.503 2024-02-25 15:02:37.503 0 FEE 438337 913 6063378 2024-02-25 15:07:34.367 2024-02-25 15:07:34.367 100 FEE 438004 6537 6063379 2024-02-25 15:07:34.367 2024-02-25 15:07:34.367 900 TIP 438004 16432 6063392 2024-02-25 15:08:02.927 2024-02-25 15:08:02.927 0 FEE 438337 20120 6063394 2024-02-25 15:08:08.272 2024-02-25 15:08:08.272 1000 DONT_LIKE_THIS 438001 1474 6063403 2024-02-25 15:09:38.657 2024-02-25 15:09:38.657 900 FEE 438044 20586 6063404 2024-02-25 15:09:38.657 2024-02-25 15:09:38.657 8100 TIP 438044 2583 6063426 2024-02-25 15:11:54.104 2024-02-25 15:11:54.104 10000 DONT_LIKE_THIS 438031 11091 6063481 2024-02-25 15:15:30.944 2024-02-25 15:15:30.944 6900 FEE 438092 19809 6063482 2024-02-25 15:15:30.944 2024-02-25 15:15:30.944 62100 TIP 438092 4027 6063487 2024-02-25 15:15:31.435 2024-02-25 15:15:31.435 6900 FEE 438092 12738 6063488 2024-02-25 15:15:31.435 2024-02-25 15:15:31.435 62100 TIP 438092 3717 6063497 2024-02-25 15:15:33.759 2024-02-25 15:15:33.759 6900 FEE 438092 19537 6063498 2024-02-25 15:15:33.759 2024-02-25 15:15:33.759 62100 TIP 438092 20892 6063513 2024-02-25 15:15:35.281 2024-02-25 15:15:35.281 6900 FEE 438092 1124 6063514 2024-02-25 15:15:35.281 2024-02-25 15:15:35.281 62100 TIP 438092 20881 6063518 2024-02-25 15:15:49.375 2024-02-25 15:15:49.375 100 FEE 438236 18363 6063519 2024-02-25 15:15:49.375 2024-02-25 15:15:49.375 900 TIP 438236 17541 6063527 2024-02-25 15:16:23.839 2024-02-25 15:16:23.839 100000 DONT_LIKE_THIS 438244 10554 6063562 2024-02-25 15:19:16.409 2024-02-25 15:19:16.409 9000 FEE 438236 5852 6063563 2024-02-25 15:19:16.409 2024-02-25 15:19:16.409 81000 TIP 438236 2077 6063571 2024-02-25 15:20:34.307 2024-02-25 15:20:34.307 1000 POLL 438202 19153 6063579 2024-02-25 15:23:03.851 2024-02-25 15:23:03.851 10000 FEE 438361 10094 6063585 2024-02-25 15:23:56.225 2024-02-25 15:23:56.225 1000 FEE 438362 6300 6063589 2024-02-25 15:24:28.906 2024-02-25 15:24:28.906 1000 FEE 438356 19121 6063590 2024-02-25 15:24:28.906 2024-02-25 15:24:28.906 9000 TIP 438356 716 6063595 2024-02-25 15:25:52.09 2024-02-25 15:25:52.09 2500 FEE 438344 2722 6063596 2024-02-25 15:25:52.09 2024-02-25 15:25:52.09 22500 TIP 438344 14080 6063613 2024-02-25 15:28:33.726 2024-02-25 15:28:33.726 3400 FEE 437062 19033 6063614 2024-02-25 15:28:33.726 2024-02-25 15:28:33.726 30600 TIP 437062 18743 6063629 2024-02-25 15:32:10.981 2024-02-25 15:32:10.981 1000 FEE 438336 9335 6063630 2024-02-25 15:32:10.981 2024-02-25 15:32:10.981 9000 TIP 438336 18690 6063653 2024-02-25 15:35:23.641 2024-02-25 15:35:23.641 2500 FEE 438356 20825 6063654 2024-02-25 15:35:23.641 2024-02-25 15:35:23.641 22500 TIP 438356 2285 6063662 2024-02-25 15:37:35.936 2024-02-25 15:37:35.936 1000 FEE 436158 20924 6063663 2024-02-25 15:37:35.936 2024-02-25 15:37:35.936 9000 TIP 436158 20205 6063673 2024-02-25 15:39:05.22 2024-02-25 15:39:05.22 6900 FEE 438317 20106 6063674 2024-02-25 15:39:05.22 2024-02-25 15:39:05.22 62100 TIP 438317 21401 6063721 2024-02-25 15:39:10.236 2024-02-25 15:39:10.236 6900 FEE 438317 18736 6063722 2024-02-25 15:39:10.236 2024-02-25 15:39:10.236 62100 TIP 438317 18618 6063764 2024-02-25 15:41:30.072 2024-02-25 15:41:30.072 2100 FEE 438370 5527 6063765 2024-02-25 15:41:30.072 2024-02-25 15:41:30.072 18900 TIP 438370 16788 6063766 2024-02-25 15:41:44.887 2024-02-25 15:41:44.887 1000 FEE 438378 15491 6063771 2024-02-25 15:42:30.948 2024-02-25 15:42:30.948 100 FEE 438345 8416 6063772 2024-02-25 15:42:30.948 2024-02-25 15:42:30.948 900 TIP 438345 14941 6063792 2024-02-25 15:45:35.097 2024-02-25 15:45:35.097 1000 POLL 438325 21155 6063831 2024-02-25 15:54:27.878 2024-02-25 15:54:27.878 100000 FEE 438388 18448 6063841 2024-02-25 15:55:50.017 2024-02-25 15:55:50.017 1000 FEE 437982 1468 6063842 2024-02-25 15:55:50.017 2024-02-25 15:55:50.017 9000 TIP 437982 11378 6063864 2024-02-25 15:58:05.073 2024-02-25 15:58:05.073 10000 FEE 438118 17226 6063865 2024-02-25 15:58:05.073 2024-02-25 15:58:05.073 90000 TIP 438118 19890 6063869 2024-02-25 15:59:44.334 2024-02-25 15:59:44.334 0 FEE 438395 19333 6063898 2024-02-25 16:07:16.299 2024-02-25 16:07:16.299 1000 FEE 438404 8472 6063917 2024-02-25 16:08:59.619 2024-02-25 16:08:59.619 500 FEE 437771 9167 6063918 2024-02-25 16:08:59.619 2024-02-25 16:08:59.619 4500 TIP 437771 18529 6063919 2024-02-25 16:09:01.277 2024-02-25 16:09:01.277 2100 FEE 438317 20143 6063920 2024-02-25 16:09:01.277 2024-02-25 16:09:01.277 18900 TIP 438317 16950 6063922 2024-02-25 16:09:04.553 2024-02-25 16:09:04.553 2100 FEE 438198 18387 6063923 2024-02-25 16:09:04.553 2024-02-25 16:09:04.553 18900 TIP 438198 5519 6063976 2024-02-25 16:12:44.188 2024-02-25 16:12:44.188 100000 FEE 438065 17798 6063977 2024-02-25 16:12:44.188 2024-02-25 16:12:44.188 900000 TIP 438065 8506 6064011 2024-02-25 16:15:12.824 2024-02-25 16:15:12.824 4000 FEE 438405 16649 6064012 2024-02-25 16:15:12.824 2024-02-25 16:15:12.824 36000 TIP 438405 3400 6064047 2024-02-25 16:20:34.477 2024-02-25 16:20:34.477 1600 FEE 437817 3518 6064048 2024-02-25 16:20:34.477 2024-02-25 16:20:34.477 14400 TIP 437817 11670 6064084 2024-02-25 16:26:04.058 2024-02-25 16:26:04.058 1000 FEE 438290 6260 6064085 2024-02-25 16:26:04.058 2024-02-25 16:26:04.058 9000 TIP 438290 11898 6064115 2024-02-25 16:28:20.849 2024-02-25 16:28:20.849 1000 FEE 438419 1650 6064116 2024-02-25 16:28:31.236 2024-02-25 16:28:31.236 1000 POLL 438202 14959 6064117 2024-02-25 16:28:36.494 2024-02-25 16:28:36.494 1000 POLL 438325 7979 6064128 2024-02-25 16:29:10.239 2024-02-25 16:29:10.239 1000 FEE 437994 9331 6064129 2024-02-25 16:29:10.239 2024-02-25 16:29:10.239 9000 TIP 437994 2256 6064132 2024-02-25 16:29:10.96 2024-02-25 16:29:10.96 1000 FEE 437994 5590 6064133 2024-02-25 16:29:10.96 2024-02-25 16:29:10.96 9000 TIP 437994 11866 6064134 2024-02-25 16:29:12.265 2024-02-25 16:29:12.265 100 FEE 438358 21292 6064135 2024-02-25 16:29:12.265 2024-02-25 16:29:12.265 900 TIP 438358 17976 6064136 2024-02-25 16:29:12.452 2024-02-25 16:29:12.452 900 FEE 438358 1549 6064137 2024-02-25 16:29:12.452 2024-02-25 16:29:12.452 8100 TIP 438358 17209 6064143 2024-02-25 16:29:29.262 2024-02-25 16:29:29.262 900 FEE 438372 2525 6064144 2024-02-25 16:29:29.262 2024-02-25 16:29:29.262 8100 TIP 438372 616 6064153 2024-02-25 16:29:45.161 2024-02-25 16:29:45.161 2100 FEE 438351 2709 6064154 2024-02-25 16:29:45.161 2024-02-25 16:29:45.161 18900 TIP 438351 19322 6064183 2024-02-25 16:30:56.263 2024-02-25 16:30:56.263 100 FEE 438389 694 6064184 2024-02-25 16:30:56.263 2024-02-25 16:30:56.263 900 TIP 438389 5519 6064190 2024-02-25 16:31:03.51 2024-02-25 16:31:03.51 0 FEE 438419 960 6063197 2024-02-25 14:53:11.561 2024-02-25 14:53:11.561 900 TIP 438232 21090 6063199 2024-02-25 14:53:47.731 2024-02-25 14:53:47.731 0 FEE 438322 3392 6063204 2024-02-25 14:54:19.662 2024-02-25 14:54:19.662 100 FEE 438171 769 6063205 2024-02-25 14:54:19.662 2024-02-25 14:54:19.662 900 TIP 438171 20597 6063214 2024-02-25 14:54:52.508 2024-02-25 14:54:52.508 100 FEE 438092 14910 6063215 2024-02-25 14:54:52.508 2024-02-25 14:54:52.508 900 TIP 438092 21481 6063220 2024-02-25 14:54:58.922 2024-02-25 14:54:58.922 90000 FEE 438092 3396 6063221 2024-02-25 14:54:58.922 2024-02-25 14:54:58.922 810000 TIP 438092 16536 6063237 2024-02-25 14:57:48.73 2024-02-25 14:57:48.73 1000000 DONT_LIKE_THIS 438232 19235 6063252 2024-02-25 14:58:40.075 2024-02-25 14:58:40.075 1000 FEE 438316 18008 6063253 2024-02-25 14:58:40.075 2024-02-25 14:58:40.075 9000 TIP 438316 13055 6063256 2024-02-25 14:58:51.517 2024-02-25 14:58:51.517 2100 FEE 438201 21140 6063257 2024-02-25 14:58:51.517 2024-02-25 14:58:51.517 18900 TIP 438201 20674 6063287 2024-02-25 14:59:57.931 2024-02-25 14:59:57.931 200 FEE 438299 18829 6063288 2024-02-25 14:59:57.931 2024-02-25 14:59:57.931 1800 TIP 438299 12160 6063297 2024-02-25 15:00:34.866 2024-02-25 15:00:34.866 0 FEE 438326 18357 6063313 2024-02-25 15:01:25.128 2024-02-25 15:01:25.128 100 FEE 438075 20788 6063314 2024-02-25 15:01:25.128 2024-02-25 15:01:25.128 900 TIP 438075 9307 6063332 2024-02-25 15:02:44.756 2024-02-25 15:02:44.756 1000 FEE 438340 19826 6063337 2024-02-25 15:02:53.649 2024-02-25 15:02:53.649 0 FEE 438337 6537 6063338 2024-02-25 15:03:00.456 2024-02-25 15:03:00.456 1000 FEE 438341 4570 6063341 2024-02-25 15:03:22.517 2024-02-25 15:03:22.517 100 FEE 438192 2213 6063342 2024-02-25 15:03:22.517 2024-02-25 15:03:22.517 900 TIP 438192 19500 6063380 2024-02-25 15:07:34.528 2024-02-25 15:07:34.528 900 FEE 438004 20490 6063381 2024-02-25 15:07:34.528 2024-02-25 15:07:34.528 8100 TIP 438004 9200 6063405 2024-02-25 15:09:48.674 2024-02-25 15:09:48.674 0 FEE 438337 1718 6063424 2024-02-25 15:11:44.12 2024-02-25 15:11:44.12 1000 FEE 438065 1429 6063425 2024-02-25 15:11:44.12 2024-02-25 15:11:44.12 9000 TIP 438065 672 6063432 2024-02-25 15:12:22.655 2024-02-25 15:12:22.655 2100 FEE 438345 15337 6063433 2024-02-25 15:12:22.655 2024-02-25 15:12:22.655 18900 TIP 438345 21562 6063456 2024-02-25 15:14:42.635 2024-02-25 15:14:42.635 10000 FEE 438356 21332 6063461 2024-02-25 15:14:46.499 2024-02-25 15:14:46.499 4000 FEE 438343 18180 6063462 2024-02-25 15:14:46.499 2024-02-25 15:14:46.499 36000 TIP 438343 15159 6063479 2024-02-25 15:15:27.176 2024-02-25 15:15:27.176 3400 FEE 438231 2519 6063480 2024-02-25 15:15:27.176 2024-02-25 15:15:27.176 30600 TIP 438231 4173 6063528 2024-02-25 15:16:39.436 2024-02-25 15:16:39.436 100000 DONT_LIKE_THIS 438241 4292 6063536 2024-02-25 15:17:50.777 2024-02-25 15:17:50.777 10000 FEE 438358 2508 6063542 2024-02-25 15:18:06.427 2024-02-25 15:18:06.427 2500 FEE 438092 17001 6063543 2024-02-25 15:18:06.427 2024-02-25 15:18:06.427 22500 TIP 438092 4238 6063544 2024-02-25 15:18:08.337 2024-02-25 15:18:08.337 100000 DONT_LIKE_THIS 437839 16351 6063583 2024-02-25 15:23:29.964 2024-02-25 15:23:29.964 3400 FEE 436683 21541 6063584 2024-02-25 15:23:29.964 2024-02-25 15:23:29.964 30600 TIP 436683 20110 6063591 2024-02-25 15:24:29.436 2024-02-25 15:24:29.436 9000 FEE 438356 18539 6063592 2024-02-25 15:24:29.436 2024-02-25 15:24:29.436 81000 TIP 438356 19812 6063600 2024-02-25 15:26:27.122 2024-02-25 15:26:27.122 1000 FEE 438364 2335 6063620 2024-02-25 15:30:05.738 2024-02-25 15:30:05.738 1000 FEE 438366 15594 6063621 2024-02-25 15:30:49.052 2024-02-25 15:30:49.052 10000 FEE 438015 20687 6063622 2024-02-25 15:30:49.052 2024-02-25 15:30:49.052 90000 TIP 438015 683 6063628 2024-02-25 15:32:10.272 2024-02-25 15:32:10.272 0 FEE 438367 19142 6063631 2024-02-25 15:32:11.793 2024-02-25 15:32:11.793 1000 FEE 438334 21062 6063632 2024-02-25 15:32:11.793 2024-02-25 15:32:11.793 9000 TIP 438334 679 6063633 2024-02-25 15:32:47.722 2024-02-25 15:32:47.722 1000 FEE 438368 18243 6063664 2024-02-25 15:37:49.833 2024-02-25 15:37:49.833 100000 FEE 438372 18608 6063255 2024-02-25 14:58:41.657 2024-02-25 14:58:41.657 9000 TIP 438315 3979 6063276 2024-02-25 14:59:36.707 2024-02-25 14:59:36.707 100 FEE 438209 5809 6063277 2024-02-25 14:59:36.707 2024-02-25 14:59:36.707 900 TIP 438209 10771 6063285 2024-02-25 14:59:48.162 2024-02-25 14:59:48.162 9000 FEE 438202 3377 6063286 2024-02-25 14:59:48.162 2024-02-25 14:59:48.162 81000 TIP 438202 20327 6063298 2024-02-25 15:00:36.324 2024-02-25 15:00:36.324 100 FEE 438188 634 6063299 2024-02-25 15:00:36.324 2024-02-25 15:00:36.324 900 TIP 438188 17602 6063302 2024-02-25 15:01:00.836 2024-02-25 15:01:00.836 0 FEE 438326 2502 6063330 2024-02-25 15:02:44.483 2024-02-25 15:02:44.483 1000 FEE 438338 19857 6063345 2024-02-25 15:03:25.08 2024-02-25 15:03:25.08 9000 FEE 438192 10638 6063346 2024-02-25 15:03:25.08 2024-02-25 15:03:25.08 81000 TIP 438192 698 6063349 2024-02-25 15:04:14.868 2024-02-25 15:04:14.868 1000 FEE 438299 15474 6063350 2024-02-25 15:04:14.868 2024-02-25 15:04:14.868 9000 TIP 438299 2065 6063353 2024-02-25 15:04:46.091 2024-02-25 15:04:46.091 900 FEE 437984 770 6063354 2024-02-25 15:04:46.091 2024-02-25 15:04:46.091 8100 TIP 437984 715 6063364 2024-02-25 15:05:41.135 2024-02-25 15:05:41.135 1000 FEE 438346 910 6063367 2024-02-25 15:05:48.781 2024-02-25 15:05:48.781 900 FEE 437995 21481 6063368 2024-02-25 15:05:48.781 2024-02-25 15:05:48.781 8100 TIP 437995 21361 6063371 2024-02-25 15:06:13.385 2024-02-25 15:06:13.385 1000 POLL 438202 9166 6063377 2024-02-25 15:07:24.264 2024-02-25 15:07:24.264 0 FEE 438347 704 6063393 2024-02-25 15:08:07.806 2024-02-25 15:08:07.806 0 FEE 438347 18784 6063395 2024-02-25 15:08:57.934 2024-02-25 15:08:57.934 0 FEE 438337 20744 6063397 2024-02-25 15:09:16.43 2024-02-25 15:09:16.43 100 FEE 438039 2256 6063398 2024-02-25 15:09:16.43 2024-02-25 15:09:16.43 900 TIP 438039 16788 6063399 2024-02-25 15:09:16.669 2024-02-25 15:09:16.669 900 FEE 438039 17094 6063400 2024-02-25 15:09:16.669 2024-02-25 15:09:16.669 8100 TIP 438039 14705 6063453 2024-02-25 15:14:39.77 2024-02-25 15:14:39.77 0 FEE 438353 19930 6063454 2024-02-25 15:14:39.955 2024-02-25 15:14:39.955 1000 FEE 438134 20912 6063455 2024-02-25 15:14:39.955 2024-02-25 15:14:39.955 9000 TIP 438134 4166 6063463 2024-02-25 15:14:52.87 2024-02-25 15:14:52.87 7100 FEE 438192 21019 6063464 2024-02-25 15:14:52.87 2024-02-25 15:14:52.87 63900 TIP 438192 21389 6063471 2024-02-25 15:15:01.991 2024-02-25 15:15:01.991 9000 FEE 438198 8926 6063472 2024-02-25 15:15:01.991 2024-02-25 15:15:01.991 81000 TIP 438198 21079 6063485 2024-02-25 15:15:31.277 2024-02-25 15:15:31.277 6900 FEE 438092 16653 6063486 2024-02-25 15:15:31.277 2024-02-25 15:15:31.277 62100 TIP 438092 5377 6063489 2024-02-25 15:15:31.627 2024-02-25 15:15:31.627 6900 FEE 438092 1291 6063490 2024-02-25 15:15:31.627 2024-02-25 15:15:31.627 62100 TIP 438092 21605 6063495 2024-02-25 15:15:33.586 2024-02-25 15:15:33.586 6900 FEE 438092 16948 6063496 2024-02-25 15:15:33.586 2024-02-25 15:15:33.586 62100 TIP 438092 17291 6063503 2024-02-25 15:15:34.32 2024-02-25 15:15:34.32 6900 FEE 438092 18660 6063504 2024-02-25 15:15:34.32 2024-02-25 15:15:34.32 62100 TIP 438092 20754 6063511 2024-02-25 15:15:35.064 2024-02-25 15:15:35.064 6900 FEE 438092 1480 6063512 2024-02-25 15:15:35.064 2024-02-25 15:15:35.064 62100 TIP 438092 16259 6063516 2024-02-25 15:15:46.232 2024-02-25 15:15:46.232 5000 FEE 438345 19381 6063517 2024-02-25 15:15:46.232 2024-02-25 15:15:46.232 45000 TIP 438345 19638 6063530 2024-02-25 15:17:00.313 2024-02-25 15:17:00.313 100000 DONT_LIKE_THIS 438237 2039 6063546 2024-02-25 15:18:15.042 2024-02-25 15:18:15.042 1000 FEE 438359 20602 6063549 2024-02-25 15:18:42.913 2024-02-25 15:18:42.913 2100 FEE 438209 3417 6063550 2024-02-25 15:18:42.913 2024-02-25 15:18:42.913 18900 TIP 438209 7986 6063564 2024-02-25 15:19:31.541 2024-02-25 15:19:31.541 2500 FEE 438235 6688 6063565 2024-02-25 15:19:31.541 2024-02-25 15:19:31.541 22500 TIP 438235 12744 6063568 2024-02-25 15:20:27.992 2024-02-25 15:20:27.992 10000 FEE 438092 9353 6063569 2024-02-25 15:20:27.992 2024-02-25 15:20:27.992 90000 TIP 438092 18680 6063570 2024-02-25 15:20:34.235 2024-02-25 15:20:34.235 0 FEE 93211 16424 6063580 2024-02-25 15:23:20.701 2024-02-25 15:23:20.701 1000 POLL 438202 19841 6063581 2024-02-25 15:23:27.985 2024-02-25 15:23:27.985 2100 FEE 438304 12160 6063582 2024-02-25 15:23:27.985 2024-02-25 15:23:27.985 18900 TIP 438304 3729 6063640 2024-02-25 15:33:47.165 2024-02-25 15:33:47.165 1000 FEE 438274 9354 6063641 2024-02-25 15:33:47.165 2024-02-25 15:33:47.165 9000 TIP 438274 9433 6063667 2024-02-25 15:37:58.94 2024-02-25 15:37:58.94 1000 FEE 438373 12769 6063669 2024-02-25 15:38:20.098 2024-02-25 15:38:20.098 1000 FEE 438374 3683 6063691 2024-02-25 15:39:06.546 2024-02-25 15:39:06.546 6900 FEE 438317 20539 6063692 2024-02-25 15:39:06.546 2024-02-25 15:39:06.546 62100 TIP 438317 21021 6063717 2024-02-25 15:39:09.986 2024-02-25 15:39:09.986 6900 FEE 438317 4388 6063718 2024-02-25 15:39:09.986 2024-02-25 15:39:09.986 62100 TIP 438317 16594 6063723 2024-02-25 15:39:12.275 2024-02-25 15:39:12.275 6900 FEE 438317 18472 6063724 2024-02-25 15:39:12.275 2024-02-25 15:39:12.275 62100 TIP 438317 15200 6063725 2024-02-25 15:39:12.432 2024-02-25 15:39:12.432 6900 FEE 438317 21060 6063726 2024-02-25 15:39:12.432 2024-02-25 15:39:12.432 62100 TIP 438317 2724 6063729 2024-02-25 15:39:12.954 2024-02-25 15:39:12.954 6900 FEE 438317 20554 6063730 2024-02-25 15:39:12.954 2024-02-25 15:39:12.954 62100 TIP 438317 1236 6063739 2024-02-25 15:39:15.414 2024-02-25 15:39:15.414 6900 FEE 438317 20187 6063740 2024-02-25 15:39:15.414 2024-02-25 15:39:15.414 62100 TIP 438317 15732 6063750 2024-02-25 15:40:52.443 2024-02-25 15:40:52.443 2100 FEE 438306 11515 6063259 2024-02-25 14:59:02.546 2024-02-25 14:59:02.546 100 FEE 438261 17221 6063260 2024-02-25 14:59:02.546 2024-02-25 14:59:02.546 900 TIP 438261 1628 6063274 2024-02-25 14:59:31.072 2024-02-25 14:59:31.072 10000 FEE 438201 18040 6063275 2024-02-25 14:59:31.072 2024-02-25 14:59:31.072 90000 TIP 438201 18139 6063280 2024-02-25 14:59:43.507 2024-02-25 14:59:43.507 1000 FEE 438333 20852 6063319 2024-02-25 15:02:12.628 2024-02-25 15:02:12.628 100 FEE 438325 12921 6063320 2024-02-25 15:02:12.628 2024-02-25 15:02:12.628 900 TIP 438325 20674 6063356 2024-02-25 15:04:58.247 2024-02-25 15:04:58.247 10000 FEE 438319 13763 6063357 2024-02-25 15:04:58.247 2024-02-25 15:04:58.247 90000 TIP 438319 7668 6063358 2024-02-25 15:04:59.111 2024-02-25 15:04:59.111 2100 FEE 438324 4014 6063359 2024-02-25 15:04:59.111 2024-02-25 15:04:59.111 18900 TIP 438324 5637 6063415 2024-02-25 15:10:50.388 2024-02-25 15:10:50.388 2100 FEE 437983 21614 6063416 2024-02-25 15:10:50.388 2024-02-25 15:10:50.388 18900 TIP 437983 18274 6063467 2024-02-25 15:14:59.368 2024-02-25 15:14:59.368 100 FEE 438198 17157 6063468 2024-02-25 15:14:59.368 2024-02-25 15:14:59.368 900 TIP 438198 19732 6063474 2024-02-25 15:15:22.304 2024-02-25 15:15:22.304 1000 FEE 438357 715 6063475 2024-02-25 15:15:25.987 2024-02-25 15:15:25.987 3400 FEE 438231 17722 6063476 2024-02-25 15:15:25.987 2024-02-25 15:15:25.987 30600 TIP 438231 14705 6063520 2024-02-25 15:15:49.766 2024-02-25 15:15:49.766 900 FEE 438236 17221 6063521 2024-02-25 15:15:49.766 2024-02-25 15:15:49.766 8100 TIP 438236 9529 6063525 2024-02-25 15:16:16.096 2024-02-25 15:16:16.096 2100 FEE 438267 5746 6063526 2024-02-25 15:16:16.096 2024-02-25 15:16:16.096 18900 TIP 438267 5455 6063529 2024-02-25 15:16:46.45 2024-02-25 15:16:46.45 100000 DONT_LIKE_THIS 438239 14080 6063547 2024-02-25 15:18:31.997 2024-02-25 15:18:31.997 2100 FEE 438065 5387 6063548 2024-02-25 15:18:31.997 2024-02-25 15:18:31.997 18900 TIP 438065 21418 6063557 2024-02-25 15:18:59.991 2024-02-25 15:18:59.991 100 FEE 438250 21416 6063558 2024-02-25 15:18:59.991 2024-02-25 15:18:59.991 900 TIP 438250 21424 6063601 2024-02-25 15:26:39.984 2024-02-25 15:26:39.984 500 FEE 438352 910 6063602 2024-02-25 15:26:39.984 2024-02-25 15:26:39.984 4500 TIP 438352 14045 6063610 2024-02-25 15:27:43.102 2024-02-25 15:27:43.102 7700 FEE 438116 1236 6063611 2024-02-25 15:27:43.102 2024-02-25 15:27:43.102 69300 TIP 438116 15063 6063644 2024-02-25 15:33:48.912 2024-02-25 15:33:48.912 1000 FEE 438274 16336 6063645 2024-02-25 15:33:48.912 2024-02-25 15:33:48.912 9000 TIP 438274 980 6063699 2024-02-25 15:39:07.14 2024-02-25 15:39:07.14 6900 FEE 438317 14545 6063700 2024-02-25 15:39:07.14 2024-02-25 15:39:07.14 62100 TIP 438317 18984 6063701 2024-02-25 15:39:07.292 2024-02-25 15:39:07.292 6900 FEE 438317 20267 6063702 2024-02-25 15:39:07.292 2024-02-25 15:39:07.292 62100 TIP 438317 7773 6063703 2024-02-25 15:39:07.449 2024-02-25 15:39:07.449 6900 FEE 438317 16839 6063704 2024-02-25 15:39:07.449 2024-02-25 15:39:07.449 62100 TIP 438317 12102 6063705 2024-02-25 15:39:07.697 2024-02-25 15:39:07.697 13800 FEE 438317 8162 6063706 2024-02-25 15:39:07.697 2024-02-25 15:39:07.697 124200 TIP 438317 18660 6063709 2024-02-25 15:39:09.471 2024-02-25 15:39:09.471 6900 FEE 438317 2609 6063710 2024-02-25 15:39:09.471 2024-02-25 15:39:09.471 62100 TIP 438317 6300 6063715 2024-02-25 15:39:09.846 2024-02-25 15:39:09.846 6900 FEE 438317 1800 6063716 2024-02-25 15:39:09.846 2024-02-25 15:39:09.846 62100 TIP 438317 836 6063719 2024-02-25 15:39:10.123 2024-02-25 15:39:10.123 6900 FEE 438317 18769 6063720 2024-02-25 15:39:10.123 2024-02-25 15:39:10.123 62100 TIP 438317 16816 6063733 2024-02-25 15:39:13.772 2024-02-25 15:39:13.772 6900 FEE 438317 17696 6063734 2024-02-25 15:39:13.772 2024-02-25 15:39:13.772 62100 TIP 438317 21287 6063737 2024-02-25 15:39:14.622 2024-02-25 15:39:14.622 6900 FEE 438317 8541 6063738 2024-02-25 15:39:14.622 2024-02-25 15:39:14.622 62100 TIP 438317 20376 6063747 2024-02-25 15:40:17.479 2024-02-25 15:40:17.479 1000 FEE 438376 12930 6063786 2024-02-25 15:43:53.983 2024-02-25 15:43:53.983 0 FEE 438380 797 6063807 2024-02-25 15:46:28.986 2024-02-25 15:46:28.986 1100 FEE 438345 16594 6063808 2024-02-25 15:46:28.986 2024-02-25 15:46:28.986 9900 TIP 438345 19663 6063836 2024-02-25 15:55:11.501 2024-02-25 15:55:11.501 1000 FEE 438381 18727 6063837 2024-02-25 15:55:11.501 2024-02-25 15:55:11.501 9000 TIP 438381 4322 6063871 2024-02-25 16:00:04.618 2024-02-25 16:00:04.618 100000 FEE 438398 11750 6063875 2024-02-25 16:00:52.994 2024-02-25 16:00:52.994 0 FEE 438397 16562 6063900 2024-02-25 16:08:02.956 2024-02-25 16:08:02.956 2100 FEE 438401 9705 6063901 2024-02-25 16:08:02.956 2024-02-25 16:08:02.956 18900 TIP 438401 21057 6063908 2024-02-25 16:08:14.878 2024-02-25 16:08:14.878 1000 FEE 438390 18680 6063909 2024-02-25 16:08:14.878 2024-02-25 16:08:14.878 9000 TIP 438390 21520 6063912 2024-02-25 16:08:39.7 2024-02-25 16:08:39.7 10000 FEE 438406 2098 6063927 2024-02-25 16:09:51.975 2024-02-25 16:09:51.975 0 FEE 438407 16350 6063942 2024-02-25 16:10:32.669 2024-02-25 16:10:32.669 2700 FEE 438261 21430 6063943 2024-02-25 16:10:32.669 2024-02-25 16:10:32.669 24300 TIP 438261 19132 6063944 2024-02-25 16:10:32.817 2024-02-25 16:10:32.817 2700 FEE 438261 19992 6063945 2024-02-25 16:10:32.817 2024-02-25 16:10:32.817 24300 TIP 438261 16194 6063946 2024-02-25 16:10:33 2024-02-25 16:10:33 2700 FEE 438261 18170 6063947 2024-02-25 16:10:33 2024-02-25 16:10:33 24300 TIP 438261 17797 6063950 2024-02-25 16:10:33.357 2024-02-25 16:10:33.357 2700 FEE 438261 16816 6063951 2024-02-25 16:10:33.357 2024-02-25 16:10:33.357 24300 TIP 438261 4304 6063970 2024-02-25 16:11:29.99 2024-02-25 16:11:29.99 0 FEE 438407 1426 6063978 2024-02-25 16:13:01.628 2024-02-25 16:13:01.628 11100 FEE 438405 17103 6063979 2024-02-25 16:13:01.628 2024-02-25 16:13:01.628 99900 TIP 438405 11798 6063991 2024-02-25 16:13:41.892 2024-02-25 16:13:41.892 2700 FEE 438218 6471 6063316 2024-02-25 15:01:35.84 2024-02-25 15:01:35.84 36000 TIP 438332 5069 6063325 2024-02-25 15:02:20.885 2024-02-25 15:02:20.885 90000 FEE 438325 3504 6063326 2024-02-25 15:02:20.885 2024-02-25 15:02:20.885 810000 TIP 438325 16406 6063333 2024-02-25 15:02:45.848 2024-02-25 15:02:45.848 1000 FEE 438303 19494 6063334 2024-02-25 15:02:45.848 2024-02-25 15:02:45.848 9000 TIP 438303 12024 6063335 2024-02-25 15:02:45.885 2024-02-25 15:02:45.885 1000 FEE 438303 899 6063336 2024-02-25 15:02:45.885 2024-02-25 15:02:45.885 9000 TIP 438303 1162 6063347 2024-02-25 15:03:54.237 2024-02-25 15:03:54.237 1000 FEE 438343 19446 6063372 2024-02-25 15:06:27.395 2024-02-25 15:06:27.395 1000 FEE 438332 18714 6063373 2024-02-25 15:06:27.395 2024-02-25 15:06:27.395 9000 TIP 438332 1245 6063411 2024-02-25 15:10:16.239 2024-02-25 15:10:16.239 900 FEE 438051 17237 6063412 2024-02-25 15:10:16.239 2024-02-25 15:10:16.239 8100 TIP 438051 10342 6063417 2024-02-25 15:11:00.15 2024-02-25 15:11:00.15 1000 FEE 438350 5829 6063435 2024-02-25 15:12:46.669 2024-02-25 15:12:46.669 1000 FEE 438352 9418 6063441 2024-02-25 15:13:39.76 2024-02-25 15:13:39.76 1000 FEE 438353 1286 6063452 2024-02-25 15:14:38.238 2024-02-25 15:14:38.238 1000 FEE 438355 15045 6063457 2024-02-25 15:14:44.565 2024-02-25 15:14:44.565 300 FEE 436935 16879 6063458 2024-02-25 15:14:44.565 2024-02-25 15:14:44.565 2700 TIP 436935 14731 6063465 2024-02-25 15:14:54.447 2024-02-25 15:14:54.447 4000 FEE 438356 19174 6063466 2024-02-25 15:14:54.447 2024-02-25 15:14:54.447 36000 TIP 438356 20889 6063491 2024-02-25 15:15:32.012 2024-02-25 15:15:32.012 13800 FEE 438092 1515 6063492 2024-02-25 15:15:32.012 2024-02-25 15:15:32.012 124200 TIP 438092 2022 6063499 2024-02-25 15:15:33.928 2024-02-25 15:15:33.928 6900 FEE 438092 11038 6063500 2024-02-25 15:15:33.928 2024-02-25 15:15:33.928 62100 TIP 438092 18641 6063505 2024-02-25 15:15:34.455 2024-02-25 15:15:34.455 6900 FEE 438092 7809 6063506 2024-02-25 15:15:34.455 2024-02-25 15:15:34.455 62100 TIP 438092 2508 6063507 2024-02-25 15:15:34.604 2024-02-25 15:15:34.604 6900 FEE 438092 1737 6063508 2024-02-25 15:15:34.604 2024-02-25 15:15:34.604 62100 TIP 438092 20222 6063535 2024-02-25 15:17:30.344 2024-02-25 15:17:30.344 100000 DONT_LIKE_THIS 438229 16178 6063545 2024-02-25 15:18:09.736 2024-02-25 15:18:09.736 1000 POLL 438202 3504 6063555 2024-02-25 15:18:45.632 2024-02-25 15:18:45.632 2100 FEE 438325 2703 6063556 2024-02-25 15:18:45.632 2024-02-25 15:18:45.632 18900 TIP 438325 21103 6063567 2024-02-25 15:20:26.69 2024-02-25 15:20:26.69 21000 FEE 438360 6030 6063586 2024-02-25 15:23:57.508 2024-02-25 15:23:57.508 3400 FEE 436683 1718 6063587 2024-02-25 15:23:57.508 2024-02-25 15:23:57.508 30600 TIP 436683 12821 6063605 2024-02-25 15:26:45.567 2024-02-25 15:26:45.567 2500 FEE 438119 20464 6063606 2024-02-25 15:26:45.567 2024-02-25 15:26:45.567 22500 TIP 438119 20871 6063661 2024-02-25 15:37:24.545 2024-02-25 15:37:24.545 1000 FEE 438371 1769 6063695 2024-02-25 15:39:06.776 2024-02-25 15:39:06.776 6900 FEE 438317 3304 6063696 2024-02-25 15:39:06.776 2024-02-25 15:39:06.776 62100 TIP 438317 980 6063797 2024-02-25 15:46:21.132 2024-02-25 15:46:21.132 1000 FEE 438044 16789 6063798 2024-02-25 15:46:21.132 2024-02-25 15:46:21.132 9000 TIP 438044 18626 6063799 2024-02-25 15:46:21.892 2024-02-25 15:46:21.892 1000 FEE 438044 811 6063800 2024-02-25 15:46:21.892 2024-02-25 15:46:21.892 9000 TIP 438044 19929 6063809 2024-02-25 15:46:33.365 2024-02-25 15:46:33.365 1100 FEE 438339 21344 6063810 2024-02-25 15:46:33.365 2024-02-25 15:46:33.365 9900 TIP 438339 20713 6063817 2024-02-25 15:50:32.566 2024-02-25 15:50:32.566 100000 FEE 438384 1162 6063826 2024-02-25 15:53:18.327 2024-02-25 15:53:18.327 21000 FEE 438386 15103 6063827 2024-02-25 15:53:56.605 2024-02-25 15:53:56.605 3300 FEE 438209 7818 6063828 2024-02-25 15:53:56.605 2024-02-25 15:53:56.605 29700 TIP 438209 17798 6063833 2024-02-25 15:54:51.444 2024-02-25 15:54:51.444 100000 FEE 438390 20551 6063844 2024-02-25 15:56:01.232 2024-02-25 15:56:01.232 2100 FEE 438209 21254 6063845 2024-02-25 15:56:01.232 2024-02-25 15:56:01.232 18900 TIP 438209 994 6123891 2024-03-01 11:37:53.95 2024-03-01 11:37:53.95 1000 FEE 444846 2322 6123899 2024-03-01 11:39:23.547 2024-03-01 11:39:23.547 1000 FEE 444849 663 6123903 2024-03-01 11:40:59.543 2024-03-01 11:40:59.543 0 FEE 444847 12708 6123925 2024-03-01 11:45:47.188 2024-03-01 11:45:47.188 1000 FEE 444854 13903 6123948 2024-03-01 11:48:12.813 2024-03-01 11:48:12.813 1000 FEE 444849 19888 6123949 2024-03-01 11:48:12.813 2024-03-01 11:48:12.813 9000 TIP 444849 777 6123962 2024-03-01 11:49:19.717 2024-03-01 11:49:19.717 2100 FEE 444832 2151 6123963 2024-03-01 11:49:19.717 2024-03-01 11:49:19.717 18900 TIP 444832 15526 6123964 2024-03-01 11:50:01.333 2024-03-01 11:50:01.333 1000 FEE 444856 13574 6123968 2024-03-01 11:50:41.214 2024-03-01 11:50:41.214 1000 FEE 444857 17237 6123981 2024-03-01 11:51:55.157 2024-03-01 11:51:55.157 0 FEE 444859 17673 6124030 2024-03-01 11:54:51.347 2024-03-01 11:54:51.347 10000 FEE 444841 749 6124031 2024-03-01 11:54:51.347 2024-03-01 11:54:51.347 90000 TIP 444841 4126 6124057 2024-03-01 11:58:13.017 2024-03-01 11:58:13.017 1000 FEE 444802 21212 6124058 2024-03-01 11:58:13.017 2024-03-01 11:58:13.017 9000 TIP 444802 3377 6124094 2024-03-01 12:04:05.018 2024-03-01 12:04:05.018 1000 FEE 444881 11144 6124095 2024-03-01 12:04:06.827 2024-03-01 12:04:06.827 1000 FEE 444882 20502 6124096 2024-03-01 12:04:23.647 2024-03-01 12:04:23.647 10000 FEE 444858 20509 6124097 2024-03-01 12:04:23.647 2024-03-01 12:04:23.647 90000 TIP 444858 11145 6124107 2024-03-01 12:05:16.859 2024-03-01 12:05:16.859 1700 FEE 444755 12911 6124108 2024-03-01 12:05:16.859 2024-03-01 12:05:16.859 15300 TIP 444755 7389 6124109 2024-03-01 12:05:16.992 2024-03-01 12:05:16.992 1700 FEE 444755 4314 6124110 2024-03-01 12:05:16.992 2024-03-01 12:05:16.992 15300 TIP 444755 21540 6124126 2024-03-01 12:06:17.22 2024-03-01 12:06:17.22 1000 FEE 444885 18265 6124137 2024-03-01 12:07:45.245 2024-03-01 12:07:45.245 0 FEE 444888 14045 6124198 2024-03-01 12:19:21.878 2024-03-01 12:19:21.878 6300 FEE 443545 21356 6124199 2024-03-01 12:19:21.878 2024-03-01 12:19:21.878 56700 TIP 443545 4059 6124203 2024-03-01 12:19:41.503 2024-03-01 12:19:41.503 1000 FEE 444906 687 6124215 2024-03-01 12:21:53.068 2024-03-01 12:21:53.068 2100 FEE 444773 2942 6124216 2024-03-01 12:21:53.068 2024-03-01 12:21:53.068 18900 TIP 444773 1483 6124220 2024-03-01 12:22:17.222 2024-03-01 12:22:17.222 10000 FEE 444910 20102 6124223 2024-03-01 12:22:32.083 2024-03-01 12:22:32.083 2100 FEE 444906 9611 6124224 2024-03-01 12:22:32.083 2024-03-01 12:22:32.083 18900 TIP 444906 4973 6124225 2024-03-01 12:22:35.538 2024-03-01 12:22:35.538 1000 FEE 444911 16336 6124226 2024-03-01 12:22:35.538 2024-03-01 12:22:35.538 9000 TIP 444911 15147 6124261 2024-03-01 12:26:44.298 2024-03-01 12:26:44.298 2100 FEE 444730 20871 6124262 2024-03-01 12:26:44.298 2024-03-01 12:26:44.298 18900 TIP 444730 5757 6124312 2024-03-01 12:28:03.069 2024-03-01 12:28:03.069 69000 FEE 444919 14370 6124324 2024-03-01 12:28:23.396 2024-03-01 12:28:23.396 45000 FEE 444755 2195 6124325 2024-03-01 12:28:23.396 2024-03-01 12:28:23.396 405000 TIP 444755 20280 6124328 2024-03-01 12:28:26.794 2024-03-01 12:28:26.794 800 FEE 444911 6616 6124329 2024-03-01 12:28:26.794 2024-03-01 12:28:26.794 7200 TIP 444911 20117 6124346 2024-03-01 12:28:39.717 2024-03-01 12:28:39.717 2100 FEE 444818 15226 6124347 2024-03-01 12:28:39.717 2024-03-01 12:28:39.717 18900 TIP 444818 861 6124350 2024-03-01 12:28:41.96 2024-03-01 12:28:41.96 1000 FEE 444920 5761 6124353 2024-03-01 12:28:42.436 2024-03-01 12:28:42.436 2100 FEE 444798 17082 6124354 2024-03-01 12:28:42.436 2024-03-01 12:28:42.436 18900 TIP 444798 11515 6124410 2024-03-01 12:30:21.799 2024-03-01 12:30:21.799 1000 FEE 444920 20087 6124411 2024-03-01 12:30:21.799 2024-03-01 12:30:21.799 9000 TIP 444920 20546 6124416 2024-03-01 12:31:20.042 2024-03-01 12:31:20.042 0 FEE 444922 21274 6124420 2024-03-01 12:31:53.384 2024-03-01 12:31:53.384 2100 FEE 444755 670 6124421 2024-03-01 12:31:53.384 2024-03-01 12:31:53.384 18900 TIP 444755 18472 6124435 2024-03-01 12:32:17.855 2024-03-01 12:32:17.855 21000 FEE 444845 9365 6063348 2024-02-25 15:04:03.866 2024-02-25 15:04:03.866 1000 STREAM 141924 3400 6063369 2024-02-25 15:06:03.881 2024-02-25 15:06:03.881 1000 STREAM 141924 959 6063375 2024-02-25 15:07:03.89 2024-02-25 15:07:03.89 1000 STREAM 141924 14472 6063396 2024-02-25 15:09:03.889 2024-02-25 15:09:03.889 1000 STREAM 141924 21303 6063408 2024-02-25 15:10:01.909 2024-02-25 15:10:01.909 1000 STREAM 141924 9349 6063566 2024-02-25 15:20:02.447 2024-02-25 15:20:02.447 1000 STREAM 141924 16442 6063609 2024-02-25 15:27:03.785 2024-02-25 15:27:03.785 1000 STREAM 141924 9078 6063612 2024-02-25 15:28:03.794 2024-02-25 15:28:03.794 1000 STREAM 141924 5597 6063617 2024-02-25 15:29:03.803 2024-02-25 15:29:03.803 1000 STREAM 141924 19639 6063627 2024-02-25 15:32:03.84 2024-02-25 15:32:03.84 1000 STREAM 141924 17514 6063636 2024-02-25 15:33:03.855 2024-02-25 15:33:03.855 1000 STREAM 141924 14271 6063648 2024-02-25 15:34:03.882 2024-02-25 15:34:03.882 1000 STREAM 141924 18220 6063660 2024-02-25 15:37:03.907 2024-02-25 15:37:03.907 1000 STREAM 141924 16966 6063668 2024-02-25 15:38:03.941 2024-02-25 15:38:03.941 1000 STREAM 141924 13132 6063672 2024-02-25 15:39:03.93 2024-02-25 15:39:03.93 1000 STREAM 141924 20663 6063746 2024-02-25 15:40:03.985 2024-02-25 15:40:03.985 1000 STREAM 141924 21624 6063762 2024-02-25 15:41:03.971 2024-02-25 15:41:03.971 1000 STREAM 141924 20026 6063770 2024-02-25 15:42:03.981 2024-02-25 15:42:03.981 1000 STREAM 141924 12222 6063811 2024-02-25 15:47:04.395 2024-02-25 15:47:04.395 1000 STREAM 141924 16214 6063812 2024-02-25 15:48:04.414 2024-02-25 15:48:04.414 1000 STREAM 141924 1064 6063814 2024-02-25 15:49:04.417 2024-02-25 15:49:04.417 1000 STREAM 141924 1611 6063834 2024-02-25 15:55:04.487 2024-02-25 15:55:04.487 1000 STREAM 141924 2789 6063846 2024-02-25 15:56:04.429 2024-02-25 15:56:04.429 1000 STREAM 141924 5904 6063870 2024-02-25 16:00:03.063 2024-02-25 16:00:03.063 1000 STREAM 141924 9183 6063890 2024-02-25 16:05:04.13 2024-02-25 16:05:04.13 1000 STREAM 141924 21391 6063894 2024-02-25 16:06:04.125 2024-02-25 16:06:04.125 1000 STREAM 141924 627 6063902 2024-02-25 16:08:04.698 2024-02-25 16:08:04.698 1000 STREAM 141924 4292 6123926 2024-03-01 11:46:03.68 2024-03-01 11:46:03.68 1000 STREAM 141924 21406 6063360 2024-02-25 15:05:03.865 2024-02-25 15:05:03.865 1000 STREAM 141924 21262 6063418 2024-02-25 15:11:03.896 2024-02-25 15:11:03.896 1000 STREAM 141924 20681 6063429 2024-02-25 15:12:01.893 2024-02-25 15:12:01.893 1000 STREAM 141924 4798 6063436 2024-02-25 15:13:03.895 2024-02-25 15:13:03.895 1000 STREAM 141924 2206 6063443 2024-02-25 15:14:02.432 2024-02-25 15:14:02.432 1000 STREAM 141924 20090 6063522 2024-02-25 15:16:02.443 2024-02-25 15:16:02.443 1000 STREAM 141924 4391 6063539 2024-02-25 15:18:02.439 2024-02-25 15:18:02.439 1000 STREAM 141924 658 6063573 2024-02-25 15:22:03.101 2024-02-25 15:22:03.101 1000 STREAM 141924 3729 6063578 2024-02-25 15:23:03.104 2024-02-25 15:23:03.104 1000 STREAM 141924 2749 6063619 2024-02-25 15:30:03.844 2024-02-25 15:30:03.844 1000 STREAM 141924 21343 6063623 2024-02-25 15:31:03.833 2024-02-25 15:31:03.833 1000 STREAM 141924 10981 6063652 2024-02-25 15:35:03.917 2024-02-25 15:35:03.917 1000 STREAM 141924 763 6063659 2024-02-25 15:36:03.881 2024-02-25 15:36:03.881 1000 STREAM 141924 10591 6063780 2024-02-25 15:43:03.989 2024-02-25 15:43:03.989 1000 STREAM 141924 7674 6063796 2024-02-25 15:46:04.396 2024-02-25 15:46:04.396 1000 STREAM 141924 11885 6063815 2024-02-25 15:50:04.466 2024-02-25 15:50:04.466 1000 STREAM 141924 17535 6063896 2024-02-25 16:07:04.685 2024-02-25 16:07:04.685 1000 STREAM 141924 11776 6064195 2024-02-25 16:32:04.87 2024-02-25 16:32:04.87 1000 STREAM 141924 21022 6064197 2024-02-25 16:33:03.403 2024-02-25 16:33:03.403 1000 STREAM 141924 2514 6123928 2024-03-01 11:47:05.009 2024-03-01 11:47:05.009 1000 STREAM 141924 18704 6123965 2024-03-01 11:50:05.108 2024-03-01 11:50:05.108 1000 STREAM 141924 21573 6123985 2024-03-01 11:52:05.086 2024-03-01 11:52:05.086 1000 STREAM 141924 20970 6124034 2024-03-01 11:55:05.106 2024-03-01 11:55:05.106 1000 STREAM 141924 9354 6124047 2024-03-01 11:57:05.137 2024-03-01 11:57:05.137 1000 STREAM 141924 18784 6063391 2024-02-25 15:08:02.688 2024-02-25 15:08:02.688 1000 STREAM 141924 14376 6063588 2024-02-25 15:24:03.732 2024-02-25 15:24:03.732 1000 STREAM 141924 1145 6063473 2024-02-25 15:15:04.32 2024-02-25 15:15:04.32 1000 STREAM 141924 18040 6063531 2024-02-25 15:17:04.318 2024-02-25 15:17:04.318 1000 STREAM 141924 9843 6063561 2024-02-25 15:19:04.324 2024-02-25 15:19:04.324 1000 STREAM 141924 7125 6123936 2024-03-01 11:47:40.304 2024-03-01 11:47:40.304 45000 TIP 443593 20646 6123937 2024-03-01 11:47:46.89 2024-03-01 11:47:46.89 10000 FEE 444755 17050 6123938 2024-03-01 11:47:46.89 2024-03-01 11:47:46.89 90000 TIP 444755 2347 6123952 2024-03-01 11:48:13.618 2024-03-01 11:48:13.618 1000 FEE 444849 7425 6123953 2024-03-01 11:48:13.618 2024-03-01 11:48:13.618 9000 TIP 444849 4388 6123957 2024-03-01 11:48:47.049 2024-03-01 11:48:47.049 2100 FEE 444746 9655 6123958 2024-03-01 11:48:47.049 2024-03-01 11:48:47.049 18900 TIP 444746 3729 6123959 2024-03-01 11:48:53.903 2024-03-01 11:48:53.903 2100 FEE 444739 17046 6123960 2024-03-01 11:48:53.903 2024-03-01 11:48:53.903 18900 TIP 444739 16543 6123966 2024-03-01 11:50:16.909 2024-03-01 11:50:16.909 5000 FEE 444739 17275 6123967 2024-03-01 11:50:16.909 2024-03-01 11:50:16.909 45000 TIP 444739 9921 6123987 2024-03-01 11:52:14.166 2024-03-01 11:52:14.166 2100 FEE 444791 19174 6123988 2024-03-01 11:52:14.166 2024-03-01 11:52:14.166 18900 TIP 444791 5852 6124019 2024-03-01 11:53:44.594 2024-03-01 11:53:44.594 2100 FEE 444522 17064 6124020 2024-03-01 11:53:44.594 2024-03-01 11:53:44.594 18900 TIP 444522 3745 6124026 2024-03-01 11:54:40.727 2024-03-01 11:54:40.727 0 FEE 444859 21418 6124032 2024-03-01 11:54:51.875 2024-03-01 11:54:51.875 0 FEE 444859 1773 6124077 2024-03-01 12:01:42.607 2024-03-01 12:01:42.607 500 FEE 444168 19837 6124078 2024-03-01 12:01:42.607 2024-03-01 12:01:42.607 4500 TIP 444168 11670 6124127 2024-03-01 12:06:38.835 2024-03-01 12:06:38.835 1000 FEE 444886 6327 6124132 2024-03-01 12:07:20.388 2024-03-01 12:07:20.388 2100 FEE 444884 7978 6124133 2024-03-01 12:07:20.388 2024-03-01 12:07:20.388 18900 TIP 444884 899 6124139 2024-03-01 12:08:04.06 2024-03-01 12:08:04.06 3300 FEE 444778 19773 6124140 2024-03-01 12:08:04.06 2024-03-01 12:08:04.06 29700 TIP 444778 15978 6124146 2024-03-01 12:08:54.262 2024-03-01 12:08:54.262 2100 FEE 444834 698 6124147 2024-03-01 12:08:54.262 2024-03-01 12:08:54.262 18900 TIP 444834 20187 6124155 2024-03-01 12:10:51.834 2024-03-01 12:10:51.834 2100 FEE 444889 10731 6124156 2024-03-01 12:10:51.834 2024-03-01 12:10:51.834 18900 TIP 444889 9427 6124180 2024-03-01 12:13:45.087 2024-03-01 12:13:45.087 1000 FEE 444714 19613 6124181 2024-03-01 12:13:45.087 2024-03-01 12:13:45.087 9000 TIP 444714 18994 6124183 2024-03-01 12:13:58.647 2024-03-01 12:13:58.647 1000 FEE 444898 9992 6124229 2024-03-01 12:25:05.455 2024-03-01 12:25:05.455 1000 FEE 444913 18601 6124257 2024-03-01 12:26:44.017 2024-03-01 12:26:44.017 300 FEE 444842 632 6124258 2024-03-01 12:26:44.017 2024-03-01 12:26:44.017 2700 TIP 444842 1044 6124265 2024-03-01 12:26:44.576 2024-03-01 12:26:44.576 300 FEE 444842 954 6124266 2024-03-01 12:26:44.576 2024-03-01 12:26:44.576 2700 TIP 444842 21036 6124267 2024-03-01 12:26:44.805 2024-03-01 12:26:44.805 300 FEE 444842 20713 6124268 2024-03-01 12:26:44.805 2024-03-01 12:26:44.805 2700 TIP 444842 20015 6124273 2024-03-01 12:26:45.332 2024-03-01 12:26:45.332 300 FEE 444842 16594 6124274 2024-03-01 12:26:45.332 2024-03-01 12:26:45.332 2700 TIP 444842 1483 6124280 2024-03-01 12:26:52.098 2024-03-01 12:26:52.098 2100 FEE 444671 1316 6124281 2024-03-01 12:26:52.098 2024-03-01 12:26:52.098 18900 TIP 444671 18188 6124302 2024-03-01 12:27:42.06 2024-03-01 12:27:42.06 1600 FEE 444907 20663 6124303 2024-03-01 12:27:42.06 2024-03-01 12:27:42.06 14400 TIP 444907 19286 6124326 2024-03-01 12:28:25.868 2024-03-01 12:28:25.868 2100 FEE 444913 10771 6124327 2024-03-01 12:28:25.868 2024-03-01 12:28:25.868 18900 TIP 444913 17411 6124340 2024-03-01 12:28:36.256 2024-03-01 12:28:36.256 2100 FEE 444819 5794 6124341 2024-03-01 12:28:36.256 2024-03-01 12:28:36.256 18900 TIP 444819 630 6124342 2024-03-01 12:28:38.863 2024-03-01 12:28:38.863 2100 FEE 444801 10060 6124343 2024-03-01 12:28:38.863 2024-03-01 12:28:38.863 18900 TIP 444801 21274 6124348 2024-03-01 12:28:41.547 2024-03-01 12:28:41.547 2100 FEE 444821 963 6124349 2024-03-01 12:28:41.547 2024-03-01 12:28:41.547 18900 TIP 444821 18751 6124361 2024-03-01 12:28:45.453 2024-03-01 12:28:45.453 2100 FEE 444813 1003 6124362 2024-03-01 12:28:45.453 2024-03-01 12:28:45.453 18900 TIP 444813 4984 6124392 2024-03-01 12:29:06.481 2024-03-01 12:29:06.481 2100 FEE 444782 17714 6124393 2024-03-01 12:29:06.481 2024-03-01 12:29:06.481 18900 TIP 444782 642 6124400 2024-03-01 12:29:12.606 2024-03-01 12:29:12.606 800 FEE 444919 16284 6124401 2024-03-01 12:29:12.606 2024-03-01 12:29:12.606 7200 TIP 444919 15147 6124402 2024-03-01 12:29:44.771 2024-03-01 12:29:44.771 100 FEE 444739 11298 6124403 2024-03-01 12:29:44.771 2024-03-01 12:29:44.771 900 TIP 444739 9331 6124413 2024-03-01 12:30:36.785 2024-03-01 12:30:36.785 100000 FEE 444921 11263 6124419 2024-03-01 12:31:36.858 2024-03-01 12:31:36.858 1000 FEE 444923 19031 6124471 2024-03-01 12:37:54.59 2024-03-01 12:37:54.59 2100 FEE 444926 660 6124472 2024-03-01 12:37:54.59 2024-03-01 12:37:54.59 18900 TIP 444926 630 6124475 2024-03-01 12:38:18.814 2024-03-01 12:38:18.814 100 FEE 444907 3342 6124476 2024-03-01 12:38:18.814 2024-03-01 12:38:18.814 900 TIP 444907 16004 6124498 2024-03-01 12:39:58.809 2024-03-01 12:39:58.809 200 FEE 444771 20778 6124499 2024-03-01 12:39:58.809 2024-03-01 12:39:58.809 1800 TIP 444771 1064 6124507 2024-03-01 12:40:06.1 2024-03-01 12:40:06.1 0 FEE 444929 671 6124517 2024-03-01 12:42:15.805 2024-03-01 12:42:15.805 0 FEE 444929 925 6124518 2024-03-01 12:42:30.268 2024-03-01 12:42:30.268 0 FEE 444929 14795 6124537 2024-03-01 12:44:17.007 2024-03-01 12:44:17.007 100 FEE 444852 776 6124538 2024-03-01 12:44:17.007 2024-03-01 12:44:17.007 900 TIP 444852 1105 6124545 2024-03-01 12:44:44.311 2024-03-01 12:44:44.311 100 FEE 444790 1394 6124546 2024-03-01 12:44:44.311 2024-03-01 12:44:44.311 900 TIP 444790 16356 6124556 2024-03-01 12:45:13.349 2024-03-01 12:45:13.349 1000 FEE 444926 16354 6124557 2024-03-01 12:45:13.349 2024-03-01 12:45:13.349 9000 TIP 444926 21563 6124612 2024-03-01 12:52:23.885 2024-03-01 12:52:23.885 1000 FEE 444806 2832 6124613 2024-03-01 12:52:23.885 2024-03-01 12:52:23.885 9000 TIP 444806 7510 6124630 2024-03-01 12:52:58.844 2024-03-01 12:52:58.844 1000 FEE 444931 7809 6124631 2024-03-01 12:52:58.844 2024-03-01 12:52:58.844 9000 TIP 444931 15941 6124641 2024-03-01 12:53:10.66 2024-03-01 12:53:10.66 1000 FEE 444896 19449 6124642 2024-03-01 12:53:10.66 2024-03-01 12:53:10.66 9000 TIP 444896 27 6124647 2024-03-01 12:53:21.604 2024-03-01 12:53:21.604 1000 FEE 444874 20546 6124648 2024-03-01 12:53:21.604 2024-03-01 12:53:21.604 9000 TIP 444874 2681 6124675 2024-03-01 12:56:40.937 2024-03-01 12:56:40.937 1000 FEE 444938 5455 6124676 2024-03-01 12:56:43.634 2024-03-01 12:56:43.634 1000 FEE 444939 18731 6124716 2024-03-01 13:03:49.143 2024-03-01 13:03:49.143 1000 FEE 444949 7916 6124741 2024-03-01 13:05:17.952 2024-03-01 13:05:17.952 10000 FEE 444952 20922 6124774 2024-03-01 13:06:36.082 2024-03-01 13:06:36.082 100 FEE 444597 6030 6124775 2024-03-01 13:06:36.082 2024-03-01 13:06:36.082 900 TIP 444597 19910 6124781 2024-03-01 13:07:10.356 2024-03-01 13:07:10.356 100 FEE 444619 15719 6124782 2024-03-01 13:07:10.356 2024-03-01 13:07:10.356 900 TIP 444619 2022 6124787 2024-03-01 13:07:41.398 2024-03-01 13:07:41.398 100 FEE 444647 17217 6063541 2024-02-25 15:18:03.184 2024-02-25 15:18:03.184 22500 TIP 438209 18932 6063642 2024-02-25 15:33:47.631 2024-02-25 15:33:47.631 1000 FEE 438274 19512 6063643 2024-02-25 15:33:47.631 2024-02-25 15:33:47.631 9000 TIP 438274 21201 6063655 2024-02-25 15:35:37.204 2024-02-25 15:35:37.204 2500 FEE 438325 1802 6063656 2024-02-25 15:35:37.204 2024-02-25 15:35:37.204 22500 TIP 438325 21402 6063713 2024-02-25 15:39:09.691 2024-02-25 15:39:09.691 6900 FEE 438317 18873 6063714 2024-02-25 15:39:09.691 2024-02-25 15:39:09.691 62100 TIP 438317 21406 6063735 2024-02-25 15:39:14.336 2024-02-25 15:39:14.336 6900 FEE 438317 11621 6063736 2024-02-25 15:39:14.336 2024-02-25 15:39:14.336 62100 TIP 438317 21047 6063742 2024-02-25 15:39:15.815 2024-02-25 15:39:15.815 6900 FEE 438317 20588 6063743 2024-02-25 15:39:15.815 2024-02-25 15:39:15.815 62100 TIP 438317 16230 6063748 2024-02-25 15:40:44.721 2024-02-25 15:40:44.721 2100 FEE 435847 21062 6063749 2024-02-25 15:40:44.721 2024-02-25 15:40:44.721 18900 TIP 435847 11430 6063756 2024-02-25 15:40:56.257 2024-02-25 15:40:56.257 1000 FEE 438092 1273 6063757 2024-02-25 15:40:56.257 2024-02-25 15:40:56.257 9000 TIP 438092 9159 6063763 2024-02-25 15:41:25.694 2024-02-25 15:41:25.694 1000 FEE 438377 1389 6063781 2024-02-25 15:43:07.686 2024-02-25 15:43:07.686 100000 FEE 438379 19640 6063783 2024-02-25 15:43:16.891 2024-02-25 15:43:16.891 1000 POLL 438325 17944 6063784 2024-02-25 15:43:24.226 2024-02-25 15:43:24.226 2100 FEE 437833 19459 6063785 2024-02-25 15:43:24.226 2024-02-25 15:43:24.226 18900 TIP 437833 9551 6063791 2024-02-25 15:45:32.195 2024-02-25 15:45:32.195 1000 POLL 438202 8360 6063801 2024-02-25 15:46:22.132 2024-02-25 15:46:22.132 1000 FEE 438044 909 6063802 2024-02-25 15:46:22.132 2024-02-25 15:46:22.132 9000 TIP 438044 2101 6063816 2024-02-25 15:50:22.627 2024-02-25 15:50:22.627 10000 FEE 438383 17331 6063819 2024-02-25 15:51:48.573 2024-02-25 15:51:48.573 3300 FEE 438231 15843 6063820 2024-02-25 15:51:48.573 2024-02-25 15:51:48.573 29700 TIP 438231 3709 6063830 2024-02-25 15:54:16.371 2024-02-25 15:54:16.371 1000 FEE 438387 17513 6063847 2024-02-25 15:56:14.29 2024-02-25 15:56:14.29 0 FEE 438387 769 6063848 2024-02-25 15:56:28.528 2024-02-25 15:56:28.528 100000 FEE 438393 20560 6063852 2024-02-25 15:57:05.051 2024-02-25 15:57:05.051 0 FEE 438387 18453 6063853 2024-02-25 15:57:05.273 2024-02-25 15:57:05.273 0 FEE 438390 19037 6063929 2024-02-25 16:10:04.762 2024-02-25 16:10:04.762 400 FEE 438373 17984 6063930 2024-02-25 16:10:04.762 2024-02-25 16:10:04.762 3600 TIP 438373 6515 6063934 2024-02-25 16:10:31.882 2024-02-25 16:10:31.882 2700 FEE 438261 9863 6063935 2024-02-25 16:10:31.882 2024-02-25 16:10:31.882 24300 TIP 438261 11263 6063960 2024-02-25 16:10:54.376 2024-02-25 16:10:54.376 2700 FEE 438221 20970 6063961 2024-02-25 16:10:54.376 2024-02-25 16:10:54.376 24300 TIP 438221 20906 6063962 2024-02-25 16:10:54.514 2024-02-25 16:10:54.514 2700 FEE 438221 21424 6063963 2024-02-25 16:10:54.514 2024-02-25 16:10:54.514 24300 TIP 438221 9552 6063969 2024-02-25 16:11:05.495 2024-02-25 16:11:05.495 0 FEE 438407 706 6063973 2024-02-25 16:11:57.76 2024-02-25 16:11:57.76 17000 FEE 438409 2195 6063975 2024-02-25 16:12:38.581 2024-02-25 16:12:38.581 1000 FEE 438410 6260 6063980 2024-02-25 16:13:04.185 2024-02-25 16:13:04.185 1000 FEE 438411 4763 6063984 2024-02-25 16:13:30.456 2024-02-25 16:13:30.456 0 FEE 438410 2537 6063993 2024-02-25 16:13:41.99 2024-02-25 16:13:41.99 2700 FEE 438218 20681 6063994 2024-02-25 16:13:41.99 2024-02-25 16:13:41.99 24300 TIP 438218 20433 6064000 2024-02-25 16:14:32.551 2024-02-25 16:14:32.551 1600 FEE 438065 1030 6064001 2024-02-25 16:14:32.551 2024-02-25 16:14:32.551 14400 TIP 438065 21061 6064019 2024-02-25 16:15:37.712 2024-02-25 16:15:37.712 2100 FEE 438201 19759 6064020 2024-02-25 16:15:37.712 2024-02-25 16:15:37.712 18900 TIP 438201 20963 6064022 2024-02-25 16:16:22.823 2024-02-25 16:16:22.823 1600 FEE 438092 19576 6064023 2024-02-25 16:16:22.823 2024-02-25 16:16:22.823 14400 TIP 438092 13903 6064031 2024-02-25 16:17:59.932 2024-02-25 16:17:59.932 1000 POLL 438325 2293 6064041 2024-02-25 16:19:17.654 2024-02-25 16:19:17.654 2100 FEE 438405 5557 6064042 2024-02-25 16:19:17.654 2024-02-25 16:19:17.654 18900 TIP 438405 17541 6064062 2024-02-25 16:24:26.765 2024-02-25 16:24:26.765 2500 FEE 438348 11897 6064063 2024-02-25 16:24:26.765 2024-02-25 16:24:26.765 22500 TIP 438348 15703 6064066 2024-02-25 16:24:30.347 2024-02-25 16:24:30.347 2500 FEE 438010 14080 6064067 2024-02-25 16:24:30.347 2024-02-25 16:24:30.347 22500 TIP 438010 21503 6064068 2024-02-25 16:24:31.348 2024-02-25 16:24:31.348 2500 FEE 438348 732 6064069 2024-02-25 16:24:31.348 2024-02-25 16:24:31.348 22500 TIP 438348 19668 6064078 2024-02-25 16:26:02.156 2024-02-25 16:26:02.156 1000 FEE 438290 19732 6064079 2024-02-25 16:26:02.156 2024-02-25 16:26:02.156 9000 TIP 438290 634 6064093 2024-02-25 16:26:54.403 2024-02-25 16:26:54.403 100 FEE 438405 20826 6064094 2024-02-25 16:26:54.403 2024-02-25 16:26:54.403 900 TIP 438405 21139 6064130 2024-02-25 16:29:10.698 2024-02-25 16:29:10.698 1000 FEE 437994 21532 6064131 2024-02-25 16:29:10.698 2024-02-25 16:29:10.698 9000 TIP 437994 18518 6064155 2024-02-25 16:29:51.738 2024-02-25 16:29:51.738 100 FEE 438352 9183 6064156 2024-02-25 16:29:51.738 2024-02-25 16:29:51.738 900 TIP 438352 1090 6064159 2024-02-25 16:30:02.592 2024-02-25 16:30:02.592 900 FEE 438388 657 6064160 2024-02-25 16:30:02.592 2024-02-25 16:30:02.592 8100 TIP 438388 10007 6064166 2024-02-25 16:30:32.463 2024-02-25 16:30:32.463 1000 FEE 437995 13246 6064167 2024-02-25 16:30:32.463 2024-02-25 16:30:32.463 9000 TIP 437995 20106 6064172 2024-02-25 16:30:33.104 2024-02-25 16:30:33.104 0 FEE 438419 1326 6063572 2024-02-25 15:21:03.948 2024-02-25 15:21:03.948 1000 STREAM 141924 11897 6124021 2024-03-01 11:53:49.547 2024-03-01 11:53:49.547 1000 FEE 444865 19462 6124043 2024-03-01 11:56:45.76 2024-03-01 11:56:45.76 200 FEE 443377 19661 6124044 2024-03-01 11:56:45.76 2024-03-01 11:56:45.76 1800 TIP 443377 19652 6124070 2024-03-01 12:00:04.682 2024-03-01 12:00:04.682 100000 FEE 444876 15925 6124141 2024-03-01 12:08:09.761 2024-03-01 12:08:09.761 6900 FEE 444778 21303 6124142 2024-03-01 12:08:09.761 2024-03-01 12:08:09.761 62100 TIP 444778 5069 6124151 2024-03-01 12:09:22.687 2024-03-01 12:09:22.687 0 FEE 444888 9669 6124166 2024-03-01 12:12:57.311 2024-03-01 12:12:57.311 0 FEE 444894 2029 6124185 2024-03-01 12:14:31.219 2024-03-01 12:14:31.219 10000 FEE 444899 19148 6124195 2024-03-01 12:18:57.612 2024-03-01 12:18:57.612 1000 FEE 444903 9346 6063593 2024-02-25 15:25:03.742 2024-02-25 15:25:03.742 1000 STREAM 141924 19435 6063599 2024-02-25 15:26:03.747 2024-02-25 15:26:03.747 1000 STREAM 141924 2111 6124056 2024-03-01 11:58:05.147 2024-03-01 11:58:05.147 1000 STREAM 141924 19569 6124514 2024-03-01 12:42:05.513 2024-03-01 12:42:05.513 1000 STREAM 141924 18409 6124555 2024-03-01 12:45:05.544 2024-03-01 12:45:05.544 1000 STREAM 141924 940 6063677 2024-02-25 15:39:05.582 2024-02-25 15:39:05.582 6900 FEE 438317 10934 6063678 2024-02-25 15:39:05.582 2024-02-25 15:39:05.582 62100 TIP 438317 13399 6063707 2024-02-25 15:39:09.288 2024-02-25 15:39:09.288 6900 FEE 438317 20849 6063708 2024-02-25 15:39:09.288 2024-02-25 15:39:09.288 62100 TIP 438317 19633 6063731 2024-02-25 15:39:13.395 2024-02-25 15:39:13.395 6900 FEE 438317 18601 6063732 2024-02-25 15:39:13.395 2024-02-25 15:39:13.395 62100 TIP 438317 6555 6063769 2024-02-25 15:42:02.23 2024-02-25 15:42:02.23 1000 POLL 438325 18403 6063838 2024-02-25 15:55:24.388 2024-02-25 15:55:24.388 10000 FEE 438392 17014 6063866 2024-02-25 15:58:06.23 2024-02-25 15:58:06.23 1000 FEE 438395 21386 6063872 2024-02-25 16:00:05.068 2024-02-25 16:00:05.068 1000 FEE 438399 7583 6063888 2024-02-25 16:04:59.595 2024-02-25 16:04:59.595 2100 FEE 438202 21208 6063889 2024-02-25 16:04:59.595 2024-02-25 16:04:59.595 18900 TIP 438202 11967 6063891 2024-02-25 16:05:06.173 2024-02-25 16:05:06.173 2100 FEE 438209 2013 6063892 2024-02-25 16:05:06.173 2024-02-25 16:05:06.173 18900 TIP 438209 18731 6063897 2024-02-25 16:07:13.046 2024-02-25 16:07:13.046 1000 FEE 438403 17411 6063899 2024-02-25 16:07:50.638 2024-02-25 16:07:50.638 0 FEE 438403 651 6063907 2024-02-25 16:08:13.028 2024-02-25 16:08:13.028 420000 FEE 438405 16124 6063910 2024-02-25 16:08:28.761 2024-02-25 16:08:28.761 2100 FEE 438325 20137 6063911 2024-02-25 16:08:28.761 2024-02-25 16:08:28.761 18900 TIP 438325 2285 6063948 2024-02-25 16:10:33.187 2024-02-25 16:10:33.187 2700 FEE 438261 7989 6063949 2024-02-25 16:10:33.187 2024-02-25 16:10:33.187 24300 TIP 438261 956 6064009 2024-02-25 16:15:10.589 2024-02-25 16:15:10.589 2100 FEE 438222 21457 6064010 2024-02-25 16:15:10.589 2024-02-25 16:15:10.589 18900 TIP 438222 17209 6064024 2024-02-25 16:16:53.125 2024-02-25 16:16:53.125 2100 FEE 438384 15063 6064025 2024-02-25 16:16:53.125 2024-02-25 16:16:53.125 18900 TIP 438384 694 6064104 2024-02-25 16:27:18.699 2024-02-25 16:27:18.699 36000 FEE 438209 16988 6064105 2024-02-25 16:27:18.699 2024-02-25 16:27:18.699 324000 TIP 438209 9874 6064122 2024-02-25 16:28:58.597 2024-02-25 16:28:58.597 0 FEE 438419 20036 6064124 2024-02-25 16:29:09.265 2024-02-25 16:29:09.265 1000 FEE 437994 18529 6064125 2024-02-25 16:29:09.265 2024-02-25 16:29:09.265 9000 TIP 437994 12516 6064140 2024-02-25 16:29:15.941 2024-02-25 16:29:15.941 0 FEE 438419 21022 6064151 2024-02-25 16:29:44.034 2024-02-25 16:29:44.034 9000 FEE 438367 925 6064152 2024-02-25 16:29:44.034 2024-02-25 16:29:44.034 81000 TIP 438367 763 6064170 2024-02-25 16:30:32.878 2024-02-25 16:30:32.878 1000 FEE 437995 16355 6064171 2024-02-25 16:30:32.878 2024-02-25 16:30:32.878 9000 TIP 437995 1261 6064185 2024-02-25 16:30:56.457 2024-02-25 16:30:56.457 900 FEE 438389 15719 6064186 2024-02-25 16:30:56.457 2024-02-25 16:30:56.457 8100 TIP 438389 780 6064212 2024-02-25 16:36:30.593 2024-02-25 16:36:30.593 1000 FEE 438423 18310 6064225 2024-02-25 16:36:41.747 2024-02-25 16:36:41.747 1000 FEE 438390 16250 6064226 2024-02-25 16:36:41.747 2024-02-25 16:36:41.747 9000 TIP 438390 2963 6064234 2024-02-25 16:37:10.465 2024-02-25 16:37:10.465 1000 FEE 438424 20922 6064238 2024-02-25 16:37:53.038 2024-02-25 16:37:53.038 1000 POLL 438414 14213 6064243 2024-02-25 16:38:14.938 2024-02-25 16:38:14.938 300 FEE 438067 11561 6064244 2024-02-25 16:38:14.938 2024-02-25 16:38:14.938 2700 TIP 438067 18625 6064246 2024-02-25 16:38:53.057 2024-02-25 16:38:53.057 1600 FEE 438198 9809 6064247 2024-02-25 16:38:53.057 2024-02-25 16:38:53.057 14400 TIP 438198 8916 6064275 2024-02-25 16:43:08.221 2024-02-25 16:43:08.221 1000 FEE 438407 10063 6064276 2024-02-25 16:43:08.221 2024-02-25 16:43:08.221 9000 TIP 438407 18528 6064315 2024-02-25 16:47:31.661 2024-02-25 16:47:31.661 6900 FEE 438396 14225 6064316 2024-02-25 16:47:31.661 2024-02-25 16:47:31.661 62100 TIP 438396 20073 6064320 2024-02-25 16:47:39.998 2024-02-25 16:47:39.998 6900 FEE 438425 12606 6064321 2024-02-25 16:47:39.998 2024-02-25 16:47:39.998 62100 TIP 438425 1173 6064337 2024-02-25 16:51:31.712 2024-02-25 16:51:31.712 1000 FEE 438436 959 6064350 2024-02-25 16:51:51.563 2024-02-25 16:51:51.563 2100 FEE 438065 2519 6064351 2024-02-25 16:51:51.563 2024-02-25 16:51:51.563 18900 TIP 438065 15624 6064358 2024-02-25 16:52:24.565 2024-02-25 16:52:24.565 1000 FEE 438065 18731 6064359 2024-02-25 16:52:24.565 2024-02-25 16:52:24.565 9000 TIP 438065 21458 6064384 2024-02-25 16:52:39.679 2024-02-25 16:52:39.679 1000 FEE 438065 10112 6064385 2024-02-25 16:52:39.679 2024-02-25 16:52:39.679 9000 TIP 438065 18673 6064426 2024-02-25 16:54:42.524 2024-02-25 16:54:42.524 2100 FEE 438236 15925 6064427 2024-02-25 16:54:42.524 2024-02-25 16:54:42.524 18900 TIP 438236 5036 6064432 2024-02-25 16:54:52.961 2024-02-25 16:54:52.961 1600 FEE 437700 19398 6064433 2024-02-25 16:54:52.961 2024-02-25 16:54:52.961 14400 TIP 437700 18460 6064468 2024-02-25 16:57:37.633 2024-02-25 16:57:37.633 2100 FEE 438414 18309 6064469 2024-02-25 16:57:37.633 2024-02-25 16:57:37.633 18900 TIP 438414 4831 6064472 2024-02-25 16:57:50.431 2024-02-25 16:57:50.431 2100 FEE 438390 992 6064473 2024-02-25 16:57:50.431 2024-02-25 16:57:50.431 18900 TIP 438390 21562 6063682 2024-02-25 15:39:05.918 2024-02-25 15:39:05.918 62100 TIP 438317 21453 6063685 2024-02-25 15:39:06.198 2024-02-25 15:39:06.198 6900 FEE 438317 18659 6063686 2024-02-25 15:39:06.198 2024-02-25 15:39:06.198 62100 TIP 438317 4059 6063689 2024-02-25 15:39:06.407 2024-02-25 15:39:06.407 6900 FEE 438317 20781 6063690 2024-02-25 15:39:06.407 2024-02-25 15:39:06.407 62100 TIP 438317 19759 6063693 2024-02-25 15:39:06.701 2024-02-25 15:39:06.701 6900 FEE 438317 8508 6063694 2024-02-25 15:39:06.701 2024-02-25 15:39:06.701 62100 TIP 438317 14990 6063741 2024-02-25 15:39:15.624 2024-02-25 15:39:15.624 1000 FEE 438375 13987 6063754 2024-02-25 15:40:55.791 2024-02-25 15:40:55.791 1000 FEE 438092 910 6063755 2024-02-25 15:40:55.791 2024-02-25 15:40:55.791 9000 TIP 438092 6700 6063758 2024-02-25 15:40:56.468 2024-02-25 15:40:56.468 1000 FEE 438092 4378 6063759 2024-02-25 15:40:56.468 2024-02-25 15:40:56.468 9000 TIP 438092 3371 6063760 2024-02-25 15:40:57.06 2024-02-25 15:40:57.06 1000 FEE 438092 21296 6063761 2024-02-25 15:40:57.06 2024-02-25 15:40:57.06 9000 TIP 438092 17827 6063767 2024-02-25 15:41:59.402 2024-02-25 15:41:59.402 2100 FEE 438340 9337 6063768 2024-02-25 15:41:59.402 2024-02-25 15:41:59.402 18900 TIP 438340 16442 6063779 2024-02-25 15:42:40.289 2024-02-25 15:42:40.289 0 FEE 438378 20434 6063782 2024-02-25 15:43:13.444 2024-02-25 15:43:13.444 21000 FEE 438380 20993 6063824 2024-02-25 15:52:26.662 2024-02-25 15:52:26.662 1000 FEE 438385 20624 6063832 2024-02-25 15:54:40.86 2024-02-25 15:54:40.86 100000 FEE 438389 638 6063854 2024-02-25 15:57:41.608 2024-02-25 15:57:41.608 6900 FEE 438393 14688 6063855 2024-02-25 15:57:41.608 2024-02-25 15:57:41.608 62100 TIP 438393 16571 6063858 2024-02-25 15:57:41.869 2024-02-25 15:57:41.869 6900 FEE 438393 19193 6063859 2024-02-25 15:57:41.869 2024-02-25 15:57:41.869 62100 TIP 438393 3342 6063860 2024-02-25 15:57:55.046 2024-02-25 15:57:55.046 500 FEE 438391 19132 6063861 2024-02-25 15:57:55.046 2024-02-25 15:57:55.046 4500 TIP 438391 6058 6063868 2024-02-25 15:59:43.109 2024-02-25 15:59:43.109 100000 FEE 438396 9169 6063905 2024-02-25 16:08:11.943 2024-02-25 16:08:11.943 1600 FEE 436485 627 6063906 2024-02-25 16:08:11.943 2024-02-25 16:08:11.943 14400 TIP 436485 718 6063915 2024-02-25 16:08:51.163 2024-02-25 16:08:51.163 2100 FEE 438192 900 6063916 2024-02-25 16:08:51.163 2024-02-25 16:08:51.163 18900 TIP 438192 1658 6063925 2024-02-25 16:09:39.678 2024-02-25 16:09:39.678 2100 FEE 438393 803 6063926 2024-02-25 16:09:39.678 2024-02-25 16:09:39.678 18900 TIP 438393 9109 6063936 2024-02-25 16:10:32.074 2024-02-25 16:10:32.074 2700 FEE 438261 13361 6063937 2024-02-25 16:10:32.074 2024-02-25 16:10:32.074 24300 TIP 438261 675 6063940 2024-02-25 16:10:32.482 2024-02-25 16:10:32.482 2700 FEE 438261 7119 6063941 2024-02-25 16:10:32.482 2024-02-25 16:10:32.482 24300 TIP 438261 13327 6063958 2024-02-25 16:10:54.135 2024-02-25 16:10:54.135 2700 FEE 438221 19033 6063959 2024-02-25 16:10:54.135 2024-02-25 16:10:54.135 24300 TIP 438221 15526 6063966 2024-02-25 16:11:00.967 2024-02-25 16:11:00.967 1000 FEE 438405 16571 6063967 2024-02-25 16:11:00.967 2024-02-25 16:11:00.967 9000 TIP 438405 19952 6063982 2024-02-25 16:13:09.077 2024-02-25 16:13:09.077 11100 FEE 438405 15239 6063983 2024-02-25 16:13:09.077 2024-02-25 16:13:09.077 99900 TIP 438405 16387 6063987 2024-02-25 16:13:41.47 2024-02-25 16:13:41.47 2700 FEE 438218 14260 6063988 2024-02-25 16:13:41.47 2024-02-25 16:13:41.47 24300 TIP 438218 1000 6064026 2024-02-25 16:16:55.901 2024-02-25 16:16:55.901 2100 FEE 438363 19839 6064027 2024-02-25 16:16:55.901 2024-02-25 16:16:55.901 18900 TIP 438363 16406 6064073 2024-02-25 16:25:21.962 2024-02-25 16:25:21.962 1600 FEE 437646 12507 6064074 2024-02-25 16:25:21.962 2024-02-25 16:25:21.962 14400 TIP 437646 1439 6064088 2024-02-25 16:26:30.612 2024-02-25 16:26:30.612 1600 FEE 438317 18403 6064089 2024-02-25 16:26:30.612 2024-02-25 16:26:30.612 14400 TIP 438317 9329 6064090 2024-02-25 16:26:32.268 2024-02-25 16:26:32.268 1000 FEE 438417 9969 6064092 2024-02-25 16:26:39.067 2024-02-25 16:26:39.067 0 FEE 438417 837 6064112 2024-02-25 16:28:01.193 2024-02-25 16:28:01.193 90000 FEE 438414 1596 6064113 2024-02-25 16:28:01.193 2024-02-25 16:28:01.193 810000 TIP 438414 3360 6064164 2024-02-25 16:30:31.955 2024-02-25 16:30:31.955 1000 FEE 437995 1632 6064165 2024-02-25 16:30:31.955 2024-02-25 16:30:31.955 9000 TIP 437995 20205 6064173 2024-02-25 16:30:33.376 2024-02-25 16:30:33.376 1000 FEE 437995 4692 6064174 2024-02-25 16:30:33.376 2024-02-25 16:30:33.376 9000 TIP 437995 4322 6064191 2024-02-25 16:31:27.426 2024-02-25 16:31:27.426 10000 FEE 438380 16536 6064192 2024-02-25 16:31:27.426 2024-02-25 16:31:27.426 90000 TIP 438380 20563 6064208 2024-02-25 16:36:04.981 2024-02-25 16:36:04.981 6400 FEE 438390 20504 6064209 2024-02-25 16:36:04.981 2024-02-25 16:36:04.981 57600 TIP 438390 19038 6064210 2024-02-25 16:36:21.845 2024-02-25 16:36:21.845 6400 FEE 438051 17797 6064211 2024-02-25 16:36:21.845 2024-02-25 16:36:21.845 57600 TIP 438051 20972 6064215 2024-02-25 16:36:38.959 2024-02-25 16:36:38.959 1000 FEE 438390 11165 6064216 2024-02-25 16:36:38.959 2024-02-25 16:36:38.959 9000 TIP 438390 27 6064217 2024-02-25 16:36:39.269 2024-02-25 16:36:39.269 1000 FEE 438390 1224 6064218 2024-02-25 16:36:39.269 2024-02-25 16:36:39.269 9000 TIP 438390 19267 6064223 2024-02-25 16:36:41.293 2024-02-25 16:36:41.293 1000 FEE 438390 1620 6064224 2024-02-25 16:36:41.293 2024-02-25 16:36:41.293 9000 TIP 438390 9166 6064242 2024-02-25 16:38:07.977 2024-02-25 16:38:07.977 1000 FEE 438427 1320 6064249 2024-02-25 16:39:38.471 2024-02-25 16:39:38.471 1000 POLL 438414 20327 6064264 2024-02-25 16:41:50.668 2024-02-25 16:41:50.668 1000 FEE 438429 12976 6064342 2024-02-25 16:51:37.065 2024-02-25 16:51:37.065 1000 FEE 438065 2361 6064343 2024-02-25 16:51:37.065 2024-02-25 16:51:37.065 9000 TIP 438065 14074 6064360 2024-02-25 16:52:24.761 2024-02-25 16:52:24.761 1000 FEE 438065 6202 6064361 2024-02-25 16:52:24.761 2024-02-25 16:52:24.761 9000 TIP 438065 17713 6064370 2024-02-25 16:52:25.73 2024-02-25 16:52:25.73 1000 FEE 438065 8080 6064371 2024-02-25 16:52:25.73 2024-02-25 16:52:25.73 9000 TIP 438065 13931 6064376 2024-02-25 16:52:28.902 2024-02-25 16:52:28.902 1000 FEE 438065 684 6064377 2024-02-25 16:52:28.902 2024-02-25 16:52:28.902 9000 TIP 438065 17535 6064430 2024-02-25 16:54:52.89 2024-02-25 16:54:52.89 2100 FEE 438192 17722 6064431 2024-02-25 16:54:52.89 2024-02-25 16:54:52.89 18900 TIP 438192 1571 6063751 2024-02-25 15:40:52.443 2024-02-25 15:40:52.443 18900 TIP 438306 19886 6063752 2024-02-25 15:40:55.442 2024-02-25 15:40:55.442 1000 FEE 438092 19888 6063753 2024-02-25 15:40:55.442 2024-02-25 15:40:55.442 9000 TIP 438092 8648 6063773 2024-02-25 15:42:31.137 2024-02-25 15:42:31.137 900 FEE 438345 1145 6063774 2024-02-25 15:42:31.137 2024-02-25 15:42:31.137 8100 TIP 438345 21139 6063777 2024-02-25 15:42:39.664 2024-02-25 15:42:39.664 2100 FEE 435892 20087 6063778 2024-02-25 15:42:39.664 2024-02-25 15:42:39.664 18900 TIP 435892 21178 6063788 2024-02-25 15:44:15.1 2024-02-25 15:44:15.1 100 FEE 438339 18380 6063789 2024-02-25 15:44:15.1 2024-02-25 15:44:15.1 900 TIP 438339 2065 6063803 2024-02-25 15:46:22.369 2024-02-25 15:46:22.369 1000 FEE 438044 18635 6063804 2024-02-25 15:46:22.369 2024-02-25 15:46:22.369 9000 TIP 438044 9351 6063805 2024-02-25 15:46:22.565 2024-02-25 15:46:22.565 1000 FEE 438044 708 6063806 2024-02-25 15:46:22.565 2024-02-25 15:46:22.565 9000 TIP 438044 17201 6063813 2024-02-25 15:48:45.407 2024-02-25 15:48:45.407 1000 FEE 438382 17817 6063822 2024-02-25 15:52:16.461 2024-02-25 15:52:16.461 3300 FEE 438301 21051 6063823 2024-02-25 15:52:16.461 2024-02-25 15:52:16.461 29700 TIP 438301 3400 6063839 2024-02-25 15:55:47.329 2024-02-25 15:55:47.329 2100 FEE 438305 11477 6063840 2024-02-25 15:55:47.329 2024-02-25 15:55:47.329 18900 TIP 438305 21239 6063877 2024-02-25 16:01:37.041 2024-02-25 16:01:37.041 10000 FEE 414256 2338 6063878 2024-02-25 16:01:37.041 2024-02-25 16:01:37.041 90000 TIP 414256 1354 6063882 2024-02-25 16:02:13.568 2024-02-25 16:02:13.568 1000 FEE 438400 15119 6063886 2024-02-25 16:04:29.233 2024-02-25 16:04:29.233 2500 FEE 438394 15049 6063887 2024-02-25 16:04:29.233 2024-02-25 16:04:29.233 22500 TIP 438394 6229 6063895 2024-02-25 16:06:05.503 2024-02-25 16:06:05.503 1000 FEE 438402 11298 6063952 2024-02-25 16:10:33.602 2024-02-25 16:10:33.602 2700 FEE 438261 9183 6063953 2024-02-25 16:10:33.602 2024-02-25 16:10:33.602 24300 TIP 438261 4391 6063954 2024-02-25 16:10:36.039 2024-02-25 16:10:36.039 2500 FEE 438369 20745 6063955 2024-02-25 16:10:36.039 2024-02-25 16:10:36.039 22500 TIP 438369 9356 6063956 2024-02-25 16:10:53.901 2024-02-25 16:10:53.901 2700 FEE 438221 20817 6063957 2024-02-25 16:10:53.901 2024-02-25 16:10:53.901 24300 TIP 438221 17568 6063964 2024-02-25 16:10:54.75 2024-02-25 16:10:54.75 2700 FEE 438221 7966 6063965 2024-02-25 16:10:54.75 2024-02-25 16:10:54.75 24300 TIP 438221 2735 6063985 2024-02-25 16:13:41.298 2024-02-25 16:13:41.298 2700 FEE 438218 11516 6063986 2024-02-25 16:13:41.298 2024-02-25 16:13:41.298 24300 TIP 438218 2710 6063995 2024-02-25 16:14:04.026 2024-02-25 16:14:04.026 100 FEE 438209 21063 6063996 2024-02-25 16:14:04.026 2024-02-25 16:14:04.026 900 TIP 438209 16341 6064004 2024-02-25 16:15:01.327 2024-02-25 16:15:01.327 2100 FEE 438242 21589 6064005 2024-02-25 16:15:01.327 2024-02-25 16:15:01.327 18900 TIP 438242 9843 6064017 2024-02-25 16:15:26.94 2024-02-25 16:15:26.94 4000 FEE 438405 17517 6064018 2024-02-25 16:15:26.94 2024-02-25 16:15:26.94 36000 TIP 438405 21021 6064033 2024-02-25 16:18:04.044 2024-02-25 16:18:04.044 3200 FEE 437720 16301 6064034 2024-02-25 16:18:04.044 2024-02-25 16:18:04.044 28800 TIP 437720 730 6064035 2024-02-25 16:18:38.077 2024-02-25 16:18:38.077 1600 FEE 438202 8472 6064036 2024-02-25 16:18:38.077 2024-02-25 16:18:38.077 14400 TIP 438202 1495 6064058 2024-02-25 16:24:15.08 2024-02-25 16:24:15.08 10000 FEE 438415 1425 6064059 2024-02-25 16:24:15.08 2024-02-25 16:24:15.08 90000 TIP 438415 16354 6064080 2024-02-25 16:26:02.746 2024-02-25 16:26:02.746 1000 FEE 438290 20168 6064081 2024-02-25 16:26:02.746 2024-02-25 16:26:02.746 9000 TIP 438290 11145 6064087 2024-02-25 16:26:08.353 2024-02-25 16:26:08.353 1000 POLL 438202 725 6064099 2024-02-25 16:26:58.317 2024-02-25 16:26:58.317 90000 FEE 438405 1326 6064100 2024-02-25 16:26:58.317 2024-02-25 16:26:58.317 810000 TIP 438405 20153 6064141 2024-02-25 16:29:29.071 2024-02-25 16:29:29.071 100 FEE 438372 19417 6064142 2024-02-25 16:29:29.071 2024-02-25 16:29:29.071 900 TIP 438372 21577 6064147 2024-02-25 16:29:42.842 2024-02-25 16:29:42.842 100 FEE 438367 20500 6064148 2024-02-25 16:29:42.842 2024-02-25 16:29:42.842 900 TIP 438367 16598 6064157 2024-02-25 16:30:02.422 2024-02-25 16:30:02.422 100 FEE 438388 2013 6064158 2024-02-25 16:30:02.422 2024-02-25 16:30:02.422 900 TIP 438388 8045 6064177 2024-02-25 16:30:35.648 2024-02-25 16:30:35.648 1000 FEE 437996 21291 6064178 2024-02-25 16:30:35.648 2024-02-25 16:30:35.648 9000 TIP 437996 15577 6064196 2024-02-25 16:32:45.578 2024-02-25 16:32:45.578 100000 FEE 438420 19995 6064241 2024-02-25 16:38:04.659 2024-02-25 16:38:04.659 1000 FEE 438426 21573 6064257 2024-02-25 16:41:14.784 2024-02-25 16:41:14.784 10000 FEE 438405 3400 6064258 2024-02-25 16:41:14.784 2024-02-25 16:41:14.784 90000 TIP 438405 3717 6064263 2024-02-25 16:41:35.624 2024-02-25 16:41:35.624 1000 POLL 438325 2508 6064272 2024-02-25 16:42:58.126 2024-02-25 16:42:58.126 0 FEE 438426 3461 6064287 2024-02-25 16:43:42.579 2024-02-25 16:43:42.579 1000 FEE 438405 7389 6064288 2024-02-25 16:43:42.579 2024-02-25 16:43:42.579 9000 TIP 438405 17147 6064308 2024-02-25 16:45:45.017 2024-02-25 16:45:45.017 1000 POLL 438414 13327 6064330 2024-02-25 16:51:03.276 2024-02-25 16:51:03.276 3300 FEE 438390 21254 6064331 2024-02-25 16:51:03.276 2024-02-25 16:51:03.276 29700 TIP 438390 1549 6064344 2024-02-25 16:51:37.292 2024-02-25 16:51:37.292 1000 FEE 438065 17227 6064345 2024-02-25 16:51:37.292 2024-02-25 16:51:37.292 9000 TIP 438065 19494 6064355 2024-02-25 16:52:23.124 2024-02-25 16:52:23.124 1000 FEE 438437 21119 6064368 2024-02-25 16:52:25.535 2024-02-25 16:52:25.535 1000 FEE 438065 1046 6064369 2024-02-25 16:52:25.535 2024-02-25 16:52:25.535 9000 TIP 438065 5661 6064389 2024-02-25 16:53:31.007 2024-02-25 16:53:31.007 1600 FEE 437615 9350 6064390 2024-02-25 16:53:31.007 2024-02-25 16:53:31.007 14400 TIP 437615 21040 6064414 2024-02-25 16:54:16.934 2024-02-25 16:54:16.934 2100 FEE 438367 21064 6064415 2024-02-25 16:54:16.934 2024-02-25 16:54:16.934 18900 TIP 438367 14663 6064420 2024-02-25 16:54:29.054 2024-02-25 16:54:29.054 1600 FEE 437512 8664 6064421 2024-02-25 16:54:29.054 2024-02-25 16:54:29.054 14400 TIP 437512 20157 6064450 2024-02-25 16:56:28.351 2024-02-25 16:56:28.351 100000 FEE 438438 2327 6064455 2024-02-25 16:56:34.66 2024-02-25 16:56:34.66 6900 FEE 438325 17494 6064456 2024-02-25 16:56:34.66 2024-02-25 16:56:34.66 62100 TIP 438325 1465 6064465 2024-02-25 16:57:00.229 2024-02-25 16:57:00.229 1000 FEE 438439 16124 6064492 2024-02-25 17:00:48.186 2024-02-25 17:00:48.186 300 FEE 438414 836 6064493 2024-02-25 17:00:48.186 2024-02-25 17:00:48.186 2700 TIP 438414 19570 6064519 2024-02-25 17:05:45.36 2024-02-25 17:05:45.36 21300 FEE 438379 18309 6064520 2024-02-25 17:05:45.36 2024-02-25 17:05:45.36 191700 TIP 438379 14225 6064527 2024-02-25 17:06:19.983 2024-02-25 17:06:19.983 5000 FEE 438427 11862 6064528 2024-02-25 17:06:19.983 2024-02-25 17:06:19.983 45000 TIP 438427 17944 6064529 2024-02-25 17:06:23.503 2024-02-25 17:06:23.503 1000 FEE 438390 19394 6064530 2024-02-25 17:06:23.503 2024-02-25 17:06:23.503 9000 TIP 438390 21441 6064554 2024-02-25 17:11:42.781 2024-02-25 17:11:42.781 1000 FEE 438450 17455 6064573 2024-02-25 17:14:36.24 2024-02-25 17:14:36.24 10100 FEE 438023 5597 6064574 2024-02-25 17:14:36.24 2024-02-25 17:14:36.24 90900 TIP 438023 5425 6063787 2024-02-25 15:44:03.704 2024-02-25 15:44:03.704 1000 STREAM 141924 9450 6063790 2024-02-25 15:45:03.716 2024-02-25 15:45:03.716 1000 STREAM 141924 19199 6063821 2024-02-25 15:52:04.104 2024-02-25 15:52:04.104 1000 STREAM 141924 19886 6063867 2024-02-25 15:59:04.331 2024-02-25 15:59:04.331 1000 STREAM 141924 5565 6063883 2024-02-25 16:03:03.438 2024-02-25 16:03:03.438 1000 STREAM 141924 959 6063884 2024-02-25 16:04:03.439 2024-02-25 16:04:03.439 1000 STREAM 141924 8998 6063921 2024-02-25 16:09:03.151 2024-02-25 16:09:03.151 1000 STREAM 141924 17713 6064101 2024-02-25 16:27:03.26 2024-02-25 16:27:03.26 1000 STREAM 141924 2000 6124066 2024-03-01 11:59:05.398 2024-03-01 11:59:05.398 1000 STREAM 141924 9820 6124075 2024-03-01 12:01:01.379 2024-03-01 12:01:01.379 1000 STREAM 141924 14669 6124087 2024-03-01 12:03:05.376 2024-03-01 12:03:05.376 1000 STREAM 141924 5775 6124129 2024-03-01 12:07:05.394 2024-03-01 12:07:05.394 1000 STREAM 141924 8162 6124154 2024-03-01 12:10:03.551 2024-03-01 12:10:03.551 1000 STREAM 141924 19501 6124157 2024-03-01 12:11:05.546 2024-03-01 12:11:05.546 1000 STREAM 141924 632 6124189 2024-03-01 12:15:05.567 2024-03-01 12:15:05.567 1000 STREAM 141924 11458 6124190 2024-03-01 12:16:03.606 2024-03-01 12:16:03.606 1000 STREAM 141924 16350 6124197 2024-03-01 12:19:05.617 2024-03-01 12:19:05.617 1000 STREAM 141924 1773 6124206 2024-03-01 12:20:03.662 2024-03-01 12:20:03.662 1000 STREAM 141924 18517 6124211 2024-03-01 12:21:05.631 2024-03-01 12:21:05.631 1000 STREAM 141924 18180 6124228 2024-03-01 12:24:03.688 2024-03-01 12:24:03.688 1000 STREAM 141924 18017 6124313 2024-03-01 12:28:03.706 2024-03-01 12:28:03.706 1000 STREAM 141924 20108 6124391 2024-03-01 12:29:05.703 2024-03-01 12:29:05.703 1000 STREAM 141924 4173 6124409 2024-03-01 12:30:03.732 2024-03-01 12:30:03.732 1000 STREAM 141924 5425 6124446 2024-03-01 12:34:03.717 2024-03-01 12:34:03.717 1000 STREAM 141924 20434 6124459 2024-03-01 12:36:03.72 2024-03-01 12:36:03.72 1000 STREAM 141924 9517 6124486 2024-03-01 12:39:05.736 2024-03-01 12:39:05.736 1000 STREAM 141924 2206 6124527 2024-03-01 12:44:03.742 2024-03-01 12:44:03.742 1000 STREAM 141924 14370 6124558 2024-03-01 12:46:01.75 2024-03-01 12:46:01.75 1000 STREAM 141924 11498 6124574 2024-03-01 12:47:03.758 2024-03-01 12:47:03.758 1000 STREAM 141924 16649 6124576 2024-03-01 12:48:05.773 2024-03-01 12:48:05.773 1000 STREAM 141924 17091 6124583 2024-03-01 12:50:05.794 2024-03-01 12:50:05.794 1000 STREAM 141924 1617 6124595 2024-03-01 12:52:05.813 2024-03-01 12:52:05.813 1000 STREAM 141924 18119 6063793 2024-02-25 15:45:35.733 2024-02-25 15:45:35.733 1000 FEE 438381 775 6063794 2024-02-25 15:45:59.119 2024-02-25 15:45:59.119 1000 FEE 438378 15100 6063795 2024-02-25 15:45:59.119 2024-02-25 15:45:59.119 9000 TIP 438378 20287 6063835 2024-02-25 15:55:07.155 2024-02-25 15:55:07.155 1000 FEE 438391 671 6063843 2024-02-25 15:55:54.126 2024-02-25 15:55:54.126 0 FEE 438390 6164 6063849 2024-02-25 15:56:58.886 2024-02-25 15:56:58.886 2100 FEE 438380 15094 6063850 2024-02-25 15:56:58.886 2024-02-25 15:56:58.886 18900 TIP 438380 15624 6063885 2024-02-25 16:04:28.525 2024-02-25 16:04:28.525 1000 FEE 438401 16485 6063893 2024-02-25 16:05:08.83 2024-02-25 16:05:08.83 1000 POLL 438202 19259 6063913 2024-02-25 16:08:40.072 2024-02-25 16:08:40.072 2100 FEE 438232 20353 6063914 2024-02-25 16:08:40.072 2024-02-25 16:08:40.072 18900 TIP 438232 7818 6063933 2024-02-25 16:10:28.73 2024-02-25 16:10:28.73 1000 FEE 438408 9356 6063938 2024-02-25 16:10:32.287 2024-02-25 16:10:32.287 2700 FEE 438261 7654 6063939 2024-02-25 16:10:32.287 2024-02-25 16:10:32.287 24300 TIP 438261 20972 6063989 2024-02-25 16:13:41.649 2024-02-25 16:13:41.649 2700 FEE 438218 17042 6063990 2024-02-25 16:13:41.649 2024-02-25 16:13:41.649 24300 TIP 438218 16747 6064029 2024-02-25 16:17:50.481 2024-02-25 16:17:50.481 1600 FEE 437723 14545 6064030 2024-02-25 16:17:50.481 2024-02-25 16:17:50.481 14400 TIP 437723 15488 6064040 2024-02-25 16:19:06.428 2024-02-25 16:19:06.428 1000 FEE 438412 19512 6064043 2024-02-25 16:19:22.488 2024-02-25 16:19:22.488 2100 FEE 438236 1490 6064044 2024-02-25 16:19:22.488 2024-02-25 16:19:22.488 18900 TIP 438236 18306 6064046 2024-02-25 16:20:33.41 2024-02-25 16:20:33.41 10000 FEE 438413 827 6064051 2024-02-25 16:22:44.186 2024-02-25 16:22:44.186 7000 FEE 438414 12245 6064055 2024-02-25 16:23:59.133 2024-02-25 16:23:59.133 1600 FEE 437966 1713 6064056 2024-02-25 16:23:59.133 2024-02-25 16:23:59.133 14400 TIP 437966 21334 6064064 2024-02-25 16:24:30.097 2024-02-25 16:24:30.097 2500 FEE 438010 20109 6064065 2024-02-25 16:24:30.097 2024-02-25 16:24:30.097 22500 TIP 438010 20066 6064106 2024-02-25 16:27:38.72 2024-02-25 16:27:38.72 100 FEE 438414 19907 6064107 2024-02-25 16:27:38.72 2024-02-25 16:27:38.72 900 TIP 438414 963 6064108 2024-02-25 16:27:38.892 2024-02-25 16:27:38.892 900 FEE 438414 711 6064109 2024-02-25 16:27:38.892 2024-02-25 16:27:38.892 8100 TIP 438414 798 6064126 2024-02-25 16:29:09.718 2024-02-25 16:29:09.718 1000 FEE 437994 1549 6064127 2024-02-25 16:29:09.718 2024-02-25 16:29:09.718 9000 TIP 437994 1814 6064138 2024-02-25 16:29:13.361 2024-02-25 16:29:13.361 9000 FEE 438358 636 6064139 2024-02-25 16:29:13.361 2024-02-25 16:29:13.361 81000 TIP 438358 14168 6064145 2024-02-25 16:29:30.223 2024-02-25 16:29:30.223 9000 FEE 438372 1985 6064146 2024-02-25 16:29:30.223 2024-02-25 16:29:30.223 81000 TIP 438372 18271 6064168 2024-02-25 16:30:32.56 2024-02-25 16:30:32.56 10000 FEE 438386 13378 6064169 2024-02-25 16:30:32.56 2024-02-25 16:30:32.56 90000 TIP 438386 20901 6064175 2024-02-25 16:30:33.723 2024-02-25 16:30:33.723 1000 FEE 437995 11018 6064176 2024-02-25 16:30:33.723 2024-02-25 16:30:33.723 9000 TIP 437995 10719 6064198 2024-02-25 16:33:14.596 2024-02-25 16:33:14.596 1000 FEE 438414 1652 6064199 2024-02-25 16:33:14.596 2024-02-25 16:33:14.596 9000 TIP 438414 4102 6064236 2024-02-25 16:37:45.212 2024-02-25 16:37:45.212 3200 FEE 438376 797 6064237 2024-02-25 16:37:45.212 2024-02-25 16:37:45.212 28800 TIP 438376 19502 6064250 2024-02-25 16:39:54.555 2024-02-25 16:39:54.555 1000 FEE 438428 21091 6064255 2024-02-25 16:41:10.065 2024-02-25 16:41:10.065 10000 FEE 438397 1471 6064256 2024-02-25 16:41:10.065 2024-02-25 16:41:10.065 90000 TIP 438397 20687 6064273 2024-02-25 16:43:00.124 2024-02-25 16:43:00.124 1000 FEE 438431 701 6064285 2024-02-25 16:43:42.07 2024-02-25 16:43:42.07 1000 FEE 438405 17321 6064286 2024-02-25 16:43:42.07 2024-02-25 16:43:42.07 9000 TIP 438405 21212 6064289 2024-02-25 16:43:43.013 2024-02-25 16:43:43.013 1000 FEE 438405 1741 6064290 2024-02-25 16:43:43.013 2024-02-25 16:43:43.013 9000 TIP 438405 667 6064291 2024-02-25 16:43:43.508 2024-02-25 16:43:43.508 1000 FEE 438405 5791 6064292 2024-02-25 16:43:43.508 2024-02-25 16:43:43.508 9000 TIP 438405 4633 6064297 2024-02-25 16:43:46.814 2024-02-25 16:43:46.814 1000 FEE 438405 15075 6064298 2024-02-25 16:43:46.814 2024-02-25 16:43:46.814 9000 TIP 438405 21091 6064299 2024-02-25 16:43:47.385 2024-02-25 16:43:47.385 1000 FEE 438405 9036 6064300 2024-02-25 16:43:47.385 2024-02-25 16:43:47.385 9000 TIP 438405 21207 6064305 2024-02-25 16:45:26.737 2024-02-25 16:45:26.737 1000 FEE 438432 663 6064323 2024-02-25 16:48:43.538 2024-02-25 16:48:43.538 100 FEE 438065 18664 6064324 2024-02-25 16:48:43.538 2024-02-25 16:48:43.538 900 TIP 438065 4027 6064329 2024-02-25 16:50:57.846 2024-02-25 16:50:57.846 1000 FEE 438435 11898 6064362 2024-02-25 16:52:24.966 2024-02-25 16:52:24.966 1000 FEE 438065 20109 6064363 2024-02-25 16:52:24.966 2024-02-25 16:52:24.966 9000 TIP 438065 20647 6064448 2024-02-25 16:56:17.383 2024-02-25 16:56:17.383 800 FEE 437738 11621 6064449 2024-02-25 16:56:17.383 2024-02-25 16:56:17.383 7200 TIP 437738 20245 6064491 2024-02-25 17:00:33.244 2024-02-25 17:00:33.244 1000 FEE 438441 1394 6064495 2024-02-25 17:01:42.417 2024-02-25 17:01:42.417 1000 POLL 438414 21036 6064559 2024-02-25 17:13:09.648 2024-02-25 17:13:09.648 2500 FEE 438444 6260 6064560 2024-02-25 17:13:09.648 2024-02-25 17:13:09.648 22500 TIP 438444 20452 6064567 2024-02-25 17:14:06.344 2024-02-25 17:14:06.344 10100 FEE 438030 19156 6064568 2024-02-25 17:14:06.344 2024-02-25 17:14:06.344 90900 TIP 438030 11942 6064586 2024-02-25 17:19:03.118 2024-02-25 17:19:03.118 1000 FEE 438453 9655 6064599 2024-02-25 17:21:19.98 2024-02-25 17:21:19.98 100 FEE 438453 20922 6064600 2024-02-25 17:21:19.98 2024-02-25 17:21:19.98 900 TIP 438453 17838 6064603 2024-02-25 17:21:20.631 2024-02-25 17:21:20.631 9000 FEE 438453 1008 6064604 2024-02-25 17:21:20.631 2024-02-25 17:21:20.631 81000 TIP 438453 20222 6064638 2024-02-25 17:24:16.166 2024-02-25 17:24:16.166 1000 FEE 438461 10016 6064667 2024-02-25 17:25:20.638 2024-02-25 17:25:20.638 1000 FEE 438462 19286 6064668 2024-02-25 17:25:20.638 2024-02-25 17:25:20.638 9000 TIP 438462 13782 6064678 2024-02-25 17:28:13.599 2024-02-25 17:28:13.599 1000 FEE 438467 11144 6063818 2024-02-25 15:51:04.082 2024-02-25 15:51:04.082 1000 STREAM 141924 9843 6063825 2024-02-25 15:53:04.111 2024-02-25 15:53:04.111 1000 STREAM 141924 1658 6063829 2024-02-25 15:54:04.152 2024-02-25 15:54:04.152 1000 STREAM 141924 15146 6063851 2024-02-25 15:57:03.972 2024-02-25 15:57:03.972 1000 STREAM 141924 1480 6063863 2024-02-25 15:58:04.315 2024-02-25 15:58:04.315 1000 STREAM 141924 21451 6063876 2024-02-25 16:01:03.43 2024-02-25 16:01:03.43 1000 STREAM 141924 11590 6063881 2024-02-25 16:02:03.426 2024-02-25 16:02:03.426 1000 STREAM 141924 8245 6063974 2024-02-25 16:12:03.168 2024-02-25 16:12:03.168 1000 STREAM 141924 21047 6064006 2024-02-25 16:15:03.204 2024-02-25 16:15:03.204 1000 STREAM 141924 17041 6064032 2024-02-25 16:18:03.193 2024-02-25 16:18:03.193 1000 STREAM 141924 1970 6064049 2024-02-25 16:21:03.206 2024-02-25 16:21:03.206 1000 STREAM 141924 1618 6064057 2024-02-25 16:24:03.221 2024-02-25 16:24:03.221 1000 STREAM 141924 9109 6064189 2024-02-25 16:31:03.261 2024-02-25 16:31:03.261 1000 STREAM 141924 19038 6064301 2024-02-25 16:44:04.504 2024-02-25 16:44:04.504 1000 STREAM 141924 4474 6124083 2024-03-01 12:02:03.761 2024-03-01 12:02:03.761 1000 STREAM 141924 1817 6124093 2024-03-01 12:04:03.769 2024-03-01 12:04:03.769 1000 STREAM 141924 18351 6124138 2024-03-01 12:08:03.796 2024-03-01 12:08:03.796 1000 STREAM 141924 2773 6124184 2024-03-01 12:14:01.816 2024-03-01 12:14:01.816 1000 STREAM 141924 16193 6063856 2024-02-25 15:57:41.716 2024-02-25 15:57:41.716 6900 FEE 438393 776 6063857 2024-02-25 15:57:41.716 2024-02-25 15:57:41.716 62100 TIP 438393 8841 6063862 2024-02-25 15:57:56.67 2024-02-25 15:57:56.67 1000 FEE 438394 21387 6063873 2024-02-25 16:00:07.078 2024-02-25 16:00:07.078 5000 FEE 438375 8544 6063874 2024-02-25 16:00:07.078 2024-02-25 16:00:07.078 45000 TIP 438375 9171 6063879 2024-02-25 16:01:37.074 2024-02-25 16:01:37.074 10000 FEE 368933 4173 6063880 2024-02-25 16:01:37.074 2024-02-25 16:01:37.074 90000 TIP 368933 3347 6063903 2024-02-25 16:08:07.084 2024-02-25 16:08:07.084 10000 FEE 438403 9336 6063904 2024-02-25 16:08:07.084 2024-02-25 16:08:07.084 90000 TIP 438403 636 6063924 2024-02-25 16:09:12.497 2024-02-25 16:09:12.497 1000 FEE 438407 13903 6063931 2024-02-25 16:10:09.429 2024-02-25 16:10:09.429 10000 FEE 438092 2681 6063932 2024-02-25 16:10:09.429 2024-02-25 16:10:09.429 90000 TIP 438092 11515 6063971 2024-02-25 16:11:51.633 2024-02-25 16:11:51.633 3200 FEE 437611 20258 6063972 2024-02-25 16:11:51.633 2024-02-25 16:11:51.633 28800 TIP 437611 21051 6064002 2024-02-25 16:14:56.196 2024-02-25 16:14:56.196 2100 FEE 438257 776 6064003 2024-02-25 16:14:56.196 2024-02-25 16:14:56.196 18900 TIP 438257 21523 6064007 2024-02-25 16:15:08.66 2024-02-25 16:15:08.66 2100 FEE 438230 658 6064008 2024-02-25 16:15:08.66 2024-02-25 16:15:08.66 18900 TIP 438230 2327 6064013 2024-02-25 16:15:26.227 2024-02-25 16:15:26.227 4000 FEE 438405 17392 6064014 2024-02-25 16:15:26.227 2024-02-25 16:15:26.227 36000 TIP 438405 20603 6064015 2024-02-25 16:15:26.606 2024-02-25 16:15:26.606 4000 FEE 438405 659 6064016 2024-02-25 16:15:26.606 2024-02-25 16:15:26.606 36000 TIP 438405 11158 6064053 2024-02-25 16:22:57.185 2024-02-25 16:22:57.185 0 FEE 438414 18008 6064060 2024-02-25 16:24:26.515 2024-02-25 16:24:26.515 2500 FEE 438348 21562 6064061 2024-02-25 16:24:26.515 2024-02-25 16:24:26.515 22500 TIP 438348 20500 6064070 2024-02-25 16:24:39.948 2024-02-25 16:24:39.948 1600 FEE 438325 9354 6064071 2024-02-25 16:24:39.948 2024-02-25 16:24:39.948 14400 TIP 438325 21103 6064076 2024-02-25 16:26:01.119 2024-02-25 16:26:01.119 1000 FEE 438290 14791 6064077 2024-02-25 16:26:01.119 2024-02-25 16:26:01.119 9000 TIP 438290 16954 6064082 2024-02-25 16:26:03.576 2024-02-25 16:26:03.576 1000 FEE 438290 14404 6064083 2024-02-25 16:26:03.576 2024-02-25 16:26:03.576 9000 TIP 438290 18984 6064091 2024-02-25 16:26:33.274 2024-02-25 16:26:33.274 1000 FEE 438418 18832 6064095 2024-02-25 16:26:54.562 2024-02-25 16:26:54.562 900 FEE 438405 630 6064096 2024-02-25 16:26:54.562 2024-02-25 16:26:54.562 8100 TIP 438405 2620 6064110 2024-02-25 16:27:56.69 2024-02-25 16:27:56.69 9000 FEE 438414 6421 6064111 2024-02-25 16:27:56.69 2024-02-25 16:27:56.69 81000 TIP 438414 4014 6064118 2024-02-25 16:28:53.224 2024-02-25 16:28:53.224 1000 FEE 438390 21303 6064119 2024-02-25 16:28:53.224 2024-02-25 16:28:53.224 9000 TIP 438390 9482 6064149 2024-02-25 16:29:43.018 2024-02-25 16:29:43.018 900 FEE 438367 21563 6064150 2024-02-25 16:29:43.018 2024-02-25 16:29:43.018 8100 TIP 438367 18274 6064161 2024-02-25 16:30:03.451 2024-02-25 16:30:03.451 9000 FEE 438388 17446 6064162 2024-02-25 16:30:03.451 2024-02-25 16:30:03.451 81000 TIP 438388 4459 6064187 2024-02-25 16:30:57.093 2024-02-25 16:30:57.093 9000 FEE 438389 11395 6064188 2024-02-25 16:30:57.093 2024-02-25 16:30:57.093 81000 TIP 438389 20168 6064193 2024-02-25 16:32:00.908 2024-02-25 16:32:00.908 1100 FEE 438067 7818 6064194 2024-02-25 16:32:00.908 2024-02-25 16:32:00.908 9900 TIP 438067 13100 6064219 2024-02-25 16:36:39.771 2024-02-25 16:36:39.771 1000 FEE 438390 19537 6064220 2024-02-25 16:36:39.771 2024-02-25 16:36:39.771 9000 TIP 438390 669 6064227 2024-02-25 16:36:42.265 2024-02-25 16:36:42.265 1000 FEE 438390 19770 6064228 2024-02-25 16:36:42.265 2024-02-25 16:36:42.265 9000 TIP 438390 3377 6064239 2024-02-25 16:37:56.625 2024-02-25 16:37:56.625 1000 POLL 438202 16954 6064245 2024-02-25 16:38:33.389 2024-02-25 16:38:33.389 1000 POLL 438202 14308 6064253 2024-02-25 16:41:09.934 2024-02-25 16:41:09.934 1600 FEE 438405 14939 6064254 2024-02-25 16:41:09.934 2024-02-25 16:41:09.934 14400 TIP 438405 21466 6064259 2024-02-25 16:41:27.632 2024-02-25 16:41:27.632 1000 FEE 438379 21547 6064260 2024-02-25 16:41:27.632 2024-02-25 16:41:27.632 9000 TIP 438379 913 6064269 2024-02-25 16:42:01.011 2024-02-25 16:42:01.011 0 FEE 438426 13132 6064277 2024-02-25 16:43:08.622 2024-02-25 16:43:08.622 1000 FEE 438407 21547 6064278 2024-02-25 16:43:08.622 2024-02-25 16:43:08.622 9000 TIP 438407 10112 6064281 2024-02-25 16:43:41.033 2024-02-25 16:43:41.033 1000 FEE 438405 20201 6064282 2024-02-25 16:43:41.033 2024-02-25 16:43:41.033 9000 TIP 438405 17046 6064302 2024-02-25 16:44:26.501 2024-02-25 16:44:26.501 4000 FEE 438414 1094 6064303 2024-02-25 16:44:26.501 2024-02-25 16:44:26.501 36000 TIP 438414 21424 6064306 2024-02-25 16:45:30.973 2024-02-25 16:45:30.973 800 FEE 438303 1162 6064307 2024-02-25 16:45:30.973 2024-02-25 16:45:30.973 7200 TIP 438303 15161 6064309 2024-02-25 16:45:52.408 2024-02-25 16:45:52.408 0 FEE 438426 11621 6064338 2024-02-25 16:51:36.631 2024-02-25 16:51:36.631 1000 FEE 438065 13246 6064339 2024-02-25 16:51:36.631 2024-02-25 16:51:36.631 9000 TIP 438065 6382 6064340 2024-02-25 16:51:36.863 2024-02-25 16:51:36.863 1000 FEE 438065 20586 6064341 2024-02-25 16:51:36.863 2024-02-25 16:51:36.863 9000 TIP 438065 6202 6064380 2024-02-25 16:52:29.334 2024-02-25 16:52:29.334 1000 FEE 438065 20251 6064381 2024-02-25 16:52:29.334 2024-02-25 16:52:29.334 9000 TIP 438065 8376 6064391 2024-02-25 16:53:33.053 2024-02-25 16:53:33.053 13800 FEE 438414 21040 6064392 2024-02-25 16:53:33.053 2024-02-25 16:53:33.053 124200 TIP 438414 16754 6064397 2024-02-25 16:53:33.539 2024-02-25 16:53:33.539 6900 FEE 438414 15577 6064398 2024-02-25 16:53:33.539 2024-02-25 16:53:33.539 62100 TIP 438414 15978 6064416 2024-02-25 16:54:22.879 2024-02-25 16:54:22.879 2100 FEE 438231 21194 6064417 2024-02-25 16:54:22.879 2024-02-25 16:54:22.879 18900 TIP 438231 622 6064439 2024-02-25 16:55:25.292 2024-02-25 16:55:25.292 1600 FEE 437593 20817 6064440 2024-02-25 16:55:25.292 2024-02-25 16:55:25.292 14400 TIP 437593 19566 6064441 2024-02-25 16:55:44.273 2024-02-25 16:55:44.273 800 FEE 437632 19132 6064442 2024-02-25 16:55:44.273 2024-02-25 16:55:44.273 7200 TIP 437632 10690 6064453 2024-02-25 16:56:34.52 2024-02-25 16:56:34.52 6900 FEE 438325 16178 6064454 2024-02-25 16:56:34.52 2024-02-25 16:56:34.52 62100 TIP 438325 828 6064459 2024-02-25 16:56:35.137 2024-02-25 16:56:35.137 6900 FEE 438325 21042 6064460 2024-02-25 16:56:35.137 2024-02-25 16:56:35.137 62100 TIP 438325 20998 6064474 2024-02-25 16:57:54.898 2024-02-25 16:57:54.898 2100 FEE 438388 18357 6064475 2024-02-25 16:57:54.898 2024-02-25 16:57:54.898 18900 TIP 438388 19637 6064486 2024-02-25 16:59:43.599 2024-02-25 16:59:43.599 1000 POLL 438414 956 6064488 2024-02-25 16:59:51.201 2024-02-25 16:59:51.201 1000 FEE 438362 4819 6064489 2024-02-25 16:59:51.201 2024-02-25 16:59:51.201 9000 TIP 438362 12721 6064498 2024-02-25 17:03:17.085 2024-02-25 17:03:17.085 1000 FEE 438442 2065 6064507 2024-02-25 17:05:07.65 2024-02-25 17:05:07.65 1000 FEE 438438 19668 6064508 2024-02-25 17:05:07.65 2024-02-25 17:05:07.65 9000 TIP 438438 678 6064531 2024-02-25 17:06:24.026 2024-02-25 17:06:24.026 4000 FEE 438146 21349 6064532 2024-02-25 17:06:24.026 2024-02-25 17:06:24.026 36000 TIP 438146 9482 6064548 2024-02-25 17:11:31.818 2024-02-25 17:11:31.818 10100 FEE 438195 21291 6064549 2024-02-25 17:11:31.818 2024-02-25 17:11:31.818 90900 TIP 438195 12169 6064564 2024-02-25 17:14:02.056 2024-02-25 17:14:02.056 10100 FEE 438054 889 6064565 2024-02-25 17:14:02.056 2024-02-25 17:14:02.056 90900 TIP 438054 17109 6064582 2024-02-25 17:16:54.879 2024-02-25 17:16:54.879 100000 FEE 438452 5746 6063928 2024-02-25 16:10:04.719 2024-02-25 16:10:04.719 1000 STREAM 141924 16789 6063981 2024-02-25 16:13:04.727 2024-02-25 16:13:04.727 1000 STREAM 141924 21627 6063997 2024-02-25 16:14:04.724 2024-02-25 16:14:04.724 1000 STREAM 141924 16542 6064039 2024-02-25 16:19:04.793 2024-02-25 16:19:04.793 1000 STREAM 141924 17411 6064045 2024-02-25 16:20:04.88 2024-02-25 16:20:04.88 1000 STREAM 141924 20353 6064072 2024-02-25 16:25:04.821 2024-02-25 16:25:04.821 1000 STREAM 141924 20858 6124112 2024-03-01 12:05:17.181 2024-03-01 12:05:17.181 15300 TIP 444755 18116 6124117 2024-03-01 12:05:35.252 2024-03-01 12:05:35.252 1700 FEE 444755 18615 6124118 2024-03-01 12:05:35.252 2024-03-01 12:05:35.252 15300 TIP 444755 685 6124119 2024-03-01 12:05:35.441 2024-03-01 12:05:35.441 1700 FEE 444755 15544 6124120 2024-03-01 12:05:35.441 2024-03-01 12:05:35.441 15300 TIP 444755 798 6124136 2024-03-01 12:07:37.688 2024-03-01 12:07:37.688 0 FEE 444888 9921 6124144 2024-03-01 12:08:43.869 2024-03-01 12:08:43.869 0 FEE 444888 16769 6124149 2024-03-01 12:09:17.319 2024-03-01 12:09:17.319 2000 FEE 444755 21194 6124150 2024-03-01 12:09:17.319 2024-03-01 12:09:17.319 18000 TIP 444755 14271 6124164 2024-03-01 12:12:56.042 2024-03-01 12:12:56.042 200 FEE 444892 21083 6124165 2024-03-01 12:12:56.042 2024-03-01 12:12:56.042 1800 TIP 444892 19813 6124170 2024-03-01 12:13:29.723 2024-03-01 12:13:29.723 1000 FEE 444689 9242 6124171 2024-03-01 12:13:29.723 2024-03-01 12:13:29.723 9000 TIP 444689 19638 6124172 2024-03-01 12:13:38.618 2024-03-01 12:13:38.618 1000 FEE 444671 9099 6124173 2024-03-01 12:13:38.618 2024-03-01 12:13:38.618 9000 TIP 444671 2328 6124182 2024-03-01 12:13:47.571 2024-03-01 12:13:47.571 1000 FEE 444897 2176 6124208 2024-03-01 12:20:53.793 2024-03-01 12:20:53.793 1000 FEE 444908 979 6124212 2024-03-01 12:21:16.337 2024-03-01 12:21:16.337 2100 FEE 444755 15386 6124213 2024-03-01 12:21:16.337 2024-03-01 12:21:16.337 18900 TIP 444755 16154 6124214 2024-03-01 12:21:51.361 2024-03-01 12:21:51.361 1000 FEE 444909 11145 6124217 2024-03-01 12:21:55.4 2024-03-01 12:21:55.4 2100 FEE 444901 19660 6124218 2024-03-01 12:21:55.4 2024-03-01 12:21:55.4 18900 TIP 444901 2151 6124282 2024-03-01 12:26:55.008 2024-03-01 12:26:55.008 2100 FEE 444695 3979 6124283 2024-03-01 12:26:55.008 2024-03-01 12:26:55.008 18900 TIP 444695 18829 6124293 2024-03-01 12:27:19.246 2024-03-01 12:27:19.246 3000 FEE 444911 19435 6124294 2024-03-01 12:27:19.246 2024-03-01 12:27:19.246 27000 TIP 444911 1658 6124298 2024-03-01 12:27:27.95 2024-03-01 12:27:27.95 2100 FEE 444848 20301 6124299 2024-03-01 12:27:27.95 2024-03-01 12:27:27.95 18900 TIP 444848 20979 6124310 2024-03-01 12:27:55.007 2024-03-01 12:27:55.007 2100 FEE 444915 21373 6124311 2024-03-01 12:27:55.007 2024-03-01 12:27:55.007 18900 TIP 444915 5809 6124344 2024-03-01 12:28:39.204 2024-03-01 12:28:39.204 2100 FEE 444810 20564 6124345 2024-03-01 12:28:39.204 2024-03-01 12:28:39.204 18900 TIP 444810 15337 6124355 2024-03-01 12:28:43.411 2024-03-01 12:28:43.411 2100 FEE 444914 15367 6124356 2024-03-01 12:28:43.411 2024-03-01 12:28:43.411 18900 TIP 444914 1310 6124359 2024-03-01 12:28:44.916 2024-03-01 12:28:44.916 2100 FEE 444789 2361 6124360 2024-03-01 12:28:44.916 2024-03-01 12:28:44.916 18900 TIP 444789 7992 6124373 2024-03-01 12:28:53.261 2024-03-01 12:28:53.261 2100 FEE 444809 18678 6063968 2024-02-25 16:11:04.714 2024-02-25 16:11:04.714 1000 STREAM 141924 16176 6064021 2024-02-25 16:16:04.745 2024-02-25 16:16:04.745 1000 STREAM 141924 20301 6064028 2024-02-25 16:17:04.763 2024-02-25 16:17:04.763 1000 STREAM 141924 14657 6064050 2024-02-25 16:22:04.82 2024-02-25 16:22:04.82 1000 STREAM 141924 18904 6064054 2024-02-25 16:23:04.804 2024-02-25 16:23:04.804 1000 STREAM 141924 721 6064086 2024-02-25 16:26:04.827 2024-02-25 16:26:04.827 1000 STREAM 141924 21042 6064201 2024-02-25 16:34:04.901 2024-02-25 16:34:04.901 1000 STREAM 141924 16347 6064233 2024-02-25 16:37:04.927 2024-02-25 16:37:04.927 1000 STREAM 141924 8926 6065008 2024-02-25 17:57:03.685 2024-02-25 17:57:03.685 1000 STREAM 141924 21503 6065065 2024-02-25 18:00:03.748 2024-02-25 18:00:03.748 1000 STREAM 141924 21416 6065081 2024-02-25 18:02:03.769 2024-02-25 18:02:03.769 1000 STREAM 141924 19484 6065131 2024-02-25 18:06:03.807 2024-02-25 18:06:03.807 1000 STREAM 141924 641 6065136 2024-02-25 18:08:03.834 2024-02-25 18:08:03.834 1000 STREAM 141924 2156 6124196 2024-03-01 12:19:04.653 2024-03-01 12:19:04.653 1000 FEE 444904 13398 6124269 2024-03-01 12:26:44.959 2024-03-01 12:26:44.959 300 FEE 444842 14472 6124270 2024-03-01 12:26:44.959 2024-03-01 12:26:44.959 2700 TIP 444842 13076 6124284 2024-03-01 12:27:05.545 2024-03-01 12:27:05.545 2100 FEE 444899 17535 6124285 2024-03-01 12:27:05.545 2024-03-01 12:27:05.545 18900 TIP 444899 20490 6124338 2024-03-01 12:28:35.481 2024-03-01 12:28:35.481 2100 FEE 444859 20738 6124339 2024-03-01 12:28:35.481 2024-03-01 12:28:35.481 18900 TIP 444859 19121 6124371 2024-03-01 12:28:51.262 2024-03-01 12:28:51.262 2100 FEE 444816 18989 6124372 2024-03-01 12:28:51.262 2024-03-01 12:28:51.262 18900 TIP 444816 20811 6124377 2024-03-01 12:28:55.042 2024-03-01 12:28:55.042 2100 FEE 444814 634 6124378 2024-03-01 12:28:55.042 2024-03-01 12:28:55.042 18900 TIP 444814 5865 6124385 2024-03-01 12:28:59.405 2024-03-01 12:28:59.405 2100 FEE 444780 12721 6124386 2024-03-01 12:28:59.405 2024-03-01 12:28:59.405 18900 TIP 444780 19664 6124389 2024-03-01 12:29:02.568 2024-03-01 12:29:02.568 2100 FEE 444771 1244 6124390 2024-03-01 12:29:02.568 2024-03-01 12:29:02.568 18900 TIP 444771 18528 6124394 2024-03-01 12:29:07.088 2024-03-01 12:29:07.088 2100 FEE 444785 10273 6124395 2024-03-01 12:29:07.088 2024-03-01 12:29:07.088 18900 TIP 444785 15146 6124396 2024-03-01 12:29:07.817 2024-03-01 12:29:07.817 2100 FEE 444794 18705 6124397 2024-03-01 12:29:07.817 2024-03-01 12:29:07.817 18900 TIP 444794 19961 6124398 2024-03-01 12:29:08.515 2024-03-01 12:29:08.515 2100 FEE 444831 2056 6124399 2024-03-01 12:29:08.515 2024-03-01 12:29:08.515 18900 TIP 444831 925 6124441 2024-03-01 12:33:07.156 2024-03-01 12:33:07.156 0 FEE 444922 18626 6124470 2024-03-01 12:37:32.525 2024-03-01 12:37:32.525 1000 FEE 444928 20680 6124480 2024-03-01 12:38:43.18 2024-03-01 12:38:43.18 100 FEE 444918 21472 6124481 2024-03-01 12:38:43.18 2024-03-01 12:38:43.18 900 TIP 444918 20073 6124509 2024-03-01 12:41:18.817 2024-03-01 12:41:18.817 10000 FEE 444930 16513 6124528 2024-03-01 12:44:06.227 2024-03-01 12:44:06.227 1000 FEE 444933 1737 6124610 2024-03-01 12:52:23.583 2024-03-01 12:52:23.583 1000 FEE 444808 17116 6124611 2024-03-01 12:52:23.583 2024-03-01 12:52:23.583 9000 TIP 444808 5003 6124614 2024-03-01 12:52:24.175 2024-03-01 12:52:24.175 1000 FEE 444764 15337 6124615 2024-03-01 12:52:24.175 2024-03-01 12:52:24.175 9000 TIP 444764 12139 6124620 2024-03-01 12:52:25.043 2024-03-01 12:52:25.043 1000 FEE 444808 20775 6124621 2024-03-01 12:52:25.043 2024-03-01 12:52:25.043 9000 TIP 444808 661 6124626 2024-03-01 12:52:27.071 2024-03-01 12:52:27.071 1000 FEE 444755 16351 6124627 2024-03-01 12:52:27.071 2024-03-01 12:52:27.071 9000 TIP 444755 14278 6124628 2024-03-01 12:52:27.168 2024-03-01 12:52:27.168 1000 FEE 444755 16059 6124629 2024-03-01 12:52:27.168 2024-03-01 12:52:27.168 9000 TIP 444755 9809 6124649 2024-03-01 12:53:21.726 2024-03-01 12:53:21.726 1000 FEE 444874 2961 6124650 2024-03-01 12:53:21.726 2024-03-01 12:53:21.726 9000 TIP 444874 899 6124657 2024-03-01 12:53:30.718 2024-03-01 12:53:30.718 2100 FEE 444597 18784 6124658 2024-03-01 12:53:30.718 2024-03-01 12:53:30.718 18900 TIP 444597 17696 6124681 2024-03-01 12:57:18.28 2024-03-01 12:57:18.28 7600 FEE 444648 1584 6124682 2024-03-01 12:57:18.28 2024-03-01 12:57:18.28 68400 TIP 444648 8448 6124686 2024-03-01 12:57:50.416 2024-03-01 12:57:50.416 7600 FEE 444921 4984 6124687 2024-03-01 12:57:50.416 2024-03-01 12:57:50.416 68400 TIP 444921 620 6124721 2024-03-01 13:04:13.954 2024-03-01 13:04:13.954 7600 FEE 444874 1046 6124722 2024-03-01 13:04:13.954 2024-03-01 13:04:13.954 68400 TIP 444874 15624 6124723 2024-03-01 13:04:18.437 2024-03-01 13:04:18.437 100 FEE 444911 1209 6124724 2024-03-01 13:04:18.437 2024-03-01 13:04:18.437 900 TIP 444911 7119 6124729 2024-03-01 13:04:33.344 2024-03-01 13:04:33.344 100 FEE 444695 20117 6124730 2024-03-01 13:04:33.344 2024-03-01 13:04:33.344 900 TIP 444695 14295 6124755 2024-03-01 13:05:47.98 2024-03-01 13:05:47.98 1000 FEE 444561 12959 6124756 2024-03-01 13:05:47.98 2024-03-01 13:05:47.98 9000 TIP 444561 759 6124776 2024-03-01 13:06:36.31 2024-03-01 13:06:36.31 900 FEE 444597 19843 6124777 2024-03-01 13:06:36.31 2024-03-01 13:06:36.31 8100 TIP 444597 4167 6124800 2024-03-01 13:09:14.384 2024-03-01 13:09:14.384 100 FEE 444656 807 6124801 2024-03-01 13:09:14.384 2024-03-01 13:09:14.384 900 TIP 444656 7376 6124818 2024-03-01 13:10:45.588 2024-03-01 13:10:45.588 100 FEE 444496 795 6124819 2024-03-01 13:10:45.588 2024-03-01 13:10:45.588 900 TIP 444496 20816 6124834 2024-03-01 13:12:15.356 2024-03-01 13:12:15.356 100 FEE 444896 2327 6124835 2024-03-01 13:12:15.356 2024-03-01 13:12:15.356 900 TIP 444896 21164 6124836 2024-03-01 13:12:26.985 2024-03-01 13:12:26.985 100 FEE 444702 5487 6124837 2024-03-01 13:12:26.985 2024-03-01 13:12:26.985 900 TIP 444702 18393 6124900 2024-03-01 13:17:41.142 2024-03-01 13:17:41.142 100 FEE 444802 14278 6124901 2024-03-01 13:17:41.142 2024-03-01 13:17:41.142 900 TIP 444802 11760 6124918 2024-03-01 13:20:56.145 2024-03-01 13:20:56.145 7600 FEE 444958 13198 6124919 2024-03-01 13:20:56.145 2024-03-01 13:20:56.145 68400 TIP 444958 19837 6124928 2024-03-01 13:21:25.906 2024-03-01 13:21:25.906 1000 FEE 444964 21401 6124941 2024-03-01 13:22:41.644 2024-03-01 13:22:41.644 900 FEE 444948 1602 6124942 2024-03-01 13:22:41.644 2024-03-01 13:22:41.644 8100 TIP 444948 8796 6124974 2024-03-01 13:23:41.209 2024-03-01 13:23:41.209 1100 FEE 444852 9833 6124975 2024-03-01 13:23:41.209 2024-03-01 13:23:41.209 9900 TIP 444852 10393 6124978 2024-03-01 13:23:41.505 2024-03-01 13:23:41.505 1100 FEE 444852 13327 6124979 2024-03-01 13:23:41.505 2024-03-01 13:23:41.505 9900 TIP 444852 1631 6124996 2024-03-01 13:24:21.861 2024-03-01 13:24:21.861 900 FEE 444682 18473 6124997 2024-03-01 13:24:21.861 2024-03-01 13:24:21.861 8100 TIP 444682 20852 6125014 2024-03-01 13:26:11.446 2024-03-01 13:26:11.446 100 FEE 444561 21357 6125015 2024-03-01 13:26:11.446 2024-03-01 13:26:11.446 900 TIP 444561 2502 6125020 2024-03-01 13:26:55.835 2024-03-01 13:26:55.835 5000 FEE 444755 1585 6125021 2024-03-01 13:26:55.835 2024-03-01 13:26:55.835 45000 TIP 444755 8004 6125056 2024-03-01 13:33:06.519 2024-03-01 13:33:06.519 100 FEE 444744 12708 6125057 2024-03-01 13:33:06.519 2024-03-01 13:33:06.519 900 TIP 444744 21437 6125058 2024-03-01 13:33:13.731 2024-03-01 13:33:13.731 1000 FEE 444975 4391 6063992 2024-02-25 16:13:41.892 2024-02-25 16:13:41.892 24300 TIP 438218 17209 6063998 2024-02-25 16:14:12.361 2024-02-25 16:14:12.361 2100 FEE 438352 9290 6063999 2024-02-25 16:14:12.361 2024-02-25 16:14:12.361 18900 TIP 438352 21506 6064037 2024-02-25 16:18:41.493 2024-02-25 16:18:41.493 2100 FEE 438303 19158 6064038 2024-02-25 16:18:41.493 2024-02-25 16:18:41.493 18900 TIP 438303 21271 6064052 2024-02-25 16:22:46.427 2024-02-25 16:22:46.427 1000 FEE 438415 12566 6064075 2024-02-25 16:25:48.787 2024-02-25 16:25:48.787 1000 FEE 438416 2508 6064097 2024-02-25 16:26:55.28 2024-02-25 16:26:55.28 9000 FEE 438405 13042 6064098 2024-02-25 16:26:55.28 2024-02-25 16:26:55.28 81000 TIP 438405 19303 6064102 2024-02-25 16:27:18.456 2024-02-25 16:27:18.456 4000 FEE 438209 1114 6064103 2024-02-25 16:27:18.456 2024-02-25 16:27:18.456 36000 TIP 438209 21194 6064120 2024-02-25 16:28:54.5 2024-02-25 16:28:54.5 9000 FEE 438390 10638 6064121 2024-02-25 16:28:54.5 2024-02-25 16:28:54.5 81000 TIP 438390 21609 6064202 2024-02-25 16:34:29.751 2024-02-25 16:34:29.751 10000 FEE 438422 20190 6064205 2024-02-25 16:34:55.006 2024-02-25 16:34:55.006 1000 POLL 438414 627 6064265 2024-02-25 16:41:52.73 2024-02-25 16:41:52.73 1600 FEE 438414 17797 6064266 2024-02-25 16:41:52.73 2024-02-25 16:41:52.73 14400 TIP 438414 965 6064267 2024-02-25 16:41:59.617 2024-02-25 16:41:59.617 10000 FEE 438414 9099 6064268 2024-02-25 16:41:59.617 2024-02-25 16:41:59.617 90000 TIP 438414 18690 6064271 2024-02-25 16:42:55.479 2024-02-25 16:42:55.479 1000 FEE 438430 4570 6064279 2024-02-25 16:43:09.052 2024-02-25 16:43:09.052 1000 FEE 438407 17522 6064280 2024-02-25 16:43:09.052 2024-02-25 16:43:09.052 9000 TIP 438407 652 6064283 2024-02-25 16:43:41.551 2024-02-25 16:43:41.551 1000 FEE 438405 2576 6064284 2024-02-25 16:43:41.551 2024-02-25 16:43:41.551 9000 TIP 438405 1713 6064293 2024-02-25 16:43:46.146 2024-02-25 16:43:46.146 1000 FEE 438405 18225 6064294 2024-02-25 16:43:46.146 2024-02-25 16:43:46.146 9000 TIP 438405 5961 6064328 2024-02-25 16:50:23.644 2024-02-25 16:50:23.644 1000 FEE 438434 787 6064333 2024-02-25 16:51:16.654 2024-02-25 16:51:16.654 800 FEE 437771 20523 6064334 2024-02-25 16:51:16.654 2024-02-25 16:51:16.654 7200 TIP 437771 8729 6064352 2024-02-25 16:51:51.625 2024-02-25 16:51:51.625 10000 FEE 438382 18727 6064353 2024-02-25 16:51:51.625 2024-02-25 16:51:51.625 90000 TIP 438382 12561 6064393 2024-02-25 16:53:33.227 2024-02-25 16:53:33.227 6900 FEE 438414 18306 6064394 2024-02-25 16:53:33.227 2024-02-25 16:53:33.227 62100 TIP 438414 15521 6064408 2024-02-25 16:54:12.979 2024-02-25 16:54:12.979 2100 FEE 438389 20220 6064409 2024-02-25 16:54:12.979 2024-02-25 16:54:12.979 18900 TIP 438389 8505 6064410 2024-02-25 16:54:14.918 2024-02-25 16:54:14.918 2100 FEE 438388 1286 6064411 2024-02-25 16:54:14.918 2024-02-25 16:54:14.918 18900 TIP 438388 8176 6064412 2024-02-25 16:54:15.73 2024-02-25 16:54:15.73 2100 FEE 438372 2609 6064413 2024-02-25 16:54:15.73 2024-02-25 16:54:15.73 18900 TIP 438372 19843 6064457 2024-02-25 16:56:34.93 2024-02-25 16:56:34.93 6900 FEE 438325 20852 6064458 2024-02-25 16:56:34.93 2024-02-25 16:56:34.93 62100 TIP 438325 20120 6064463 2024-02-25 16:56:53.634 2024-02-25 16:56:53.634 5000 FEE 438426 11942 6064464 2024-02-25 16:56:53.634 2024-02-25 16:56:53.634 45000 TIP 438426 6310 6064470 2024-02-25 16:57:48.185 2024-02-25 16:57:48.185 2100 FEE 438389 21172 6064471 2024-02-25 16:57:48.185 2024-02-25 16:57:48.185 18900 TIP 438389 17838 6064483 2024-02-25 16:58:21.267 2024-02-25 16:58:21.267 2100 FEE 438430 10719 6064484 2024-02-25 16:58:21.267 2024-02-25 16:58:21.267 18900 TIP 438430 19320 6064501 2024-02-25 17:03:30.091 2024-02-25 17:03:30.091 10000 FEE 438443 6383 6064517 2024-02-25 17:05:38.687 2024-02-25 17:05:38.687 100000 FEE 438379 16456 6064518 2024-02-25 17:05:38.687 2024-02-25 17:05:38.687 900000 TIP 438379 16177 6064541 2024-02-25 17:09:27.321 2024-02-25 17:09:27.321 1000 FEE 438448 12561 6064545 2024-02-25 17:11:14.182 2024-02-25 17:11:14.182 100000 FEE 438405 9816 6064546 2024-02-25 17:11:14.182 2024-02-25 17:11:14.182 900000 TIP 438405 20280 6064550 2024-02-25 17:11:37.079 2024-02-25 17:11:37.079 10000 FEE 331942 13204 6064551 2024-02-25 17:11:37.079 2024-02-25 17:11:37.079 90000 TIP 331942 3506 6064561 2024-02-25 17:13:53.929 2024-02-25 17:13:53.929 1000 FEE 438447 9364 6064562 2024-02-25 17:13:53.929 2024-02-25 17:13:53.929 9000 TIP 438447 21480 6064584 2024-02-25 17:17:15.728 2024-02-25 17:17:15.728 1000 POLL 438414 18819 6064590 2024-02-25 17:19:42.645 2024-02-25 17:19:42.645 1000 POLL 438414 1433 6064597 2024-02-25 17:21:04.518 2024-02-25 17:21:04.518 1000 FEE 438456 2514 6064621 2024-02-25 17:22:35.684 2024-02-25 17:22:35.684 100 FEE 436151 21140 6064622 2024-02-25 17:22:35.684 2024-02-25 17:22:35.684 900 TIP 436151 7913 6064632 2024-02-25 17:23:24.794 2024-02-25 17:23:24.794 10100 FEE 438325 6700 6064633 2024-02-25 17:23:24.794 2024-02-25 17:23:24.794 90900 TIP 438325 9 6064649 2024-02-25 17:24:36.238 2024-02-25 17:24:36.238 2100 FEE 379804 1002 6064650 2024-02-25 17:24:36.238 2024-02-25 17:24:36.238 18900 TIP 379804 20464 6064653 2024-02-25 17:24:37.605 2024-02-25 17:24:37.605 2100 FEE 379804 16126 6064654 2024-02-25 17:24:37.605 2024-02-25 17:24:37.605 18900 TIP 379804 14045 6064675 2024-02-25 17:27:36.336 2024-02-25 17:27:36.336 3300 FEE 438414 21373 6064676 2024-02-25 17:27:36.336 2024-02-25 17:27:36.336 29700 TIP 438414 18675 6064704 2024-02-25 17:31:39.438 2024-02-25 17:31:39.438 10100 FEE 438471 19888 6064705 2024-02-25 17:31:39.438 2024-02-25 17:31:39.438 90900 TIP 438471 18816 6064716 2024-02-25 17:32:01.081 2024-02-25 17:32:01.081 2100 FEE 438319 999 6064717 2024-02-25 17:32:01.081 2024-02-25 17:32:01.081 18900 TIP 438319 20663 6064745 2024-02-25 17:35:36.446 2024-02-25 17:35:36.446 1000 FEE 438477 13046 6064750 2024-02-25 17:36:20.815 2024-02-25 17:36:20.815 1000 FEE 438478 5173 6064767 2024-02-25 17:39:11.962 2024-02-25 17:39:11.962 100000 DONT_LIKE_THIS 438479 5527 6064815 2024-02-25 17:42:45.253 2024-02-25 17:42:45.253 2100 FEE 438390 633 6064816 2024-02-25 17:42:45.253 2024-02-25 17:42:45.253 18900 TIP 438390 2431 6064820 2024-02-25 17:43:52.528 2024-02-25 17:43:52.528 21000 DONT_LIKE_THIS 438409 21563 6064825 2024-02-25 17:44:35.413 2024-02-25 17:44:35.413 1000 FEE 438489 2322 6064833 2024-02-25 17:45:13.953 2024-02-25 17:45:13.953 2000 FEE 438487 691 6064834 2024-02-25 17:45:13.953 2024-02-25 17:45:13.953 18000 TIP 438487 12708 6064849 2024-02-25 17:45:41.399 2024-02-25 17:45:41.399 0 FEE 438488 4459 6064863 2024-02-25 17:45:57.767 2024-02-25 17:45:57.767 1000 FEE 438487 18862 6064864 2024-02-25 17:45:57.767 2024-02-25 17:45:57.767 9000 TIP 438487 15160 6064867 2024-02-25 17:46:08.397 2024-02-25 17:46:08.397 1000 FEE 438486 733 6064868 2024-02-25 17:46:08.397 2024-02-25 17:46:08.397 9000 TIP 438486 5499 6064870 2024-02-25 17:46:10.967 2024-02-25 17:46:10.967 100000 FEE 438494 16542 6064873 2024-02-25 17:46:32.948 2024-02-25 17:46:32.948 1000 FEE 438487 9496 6064874 2024-02-25 17:46:32.948 2024-02-25 17:46:32.948 9000 TIP 438487 20183 6064903 2024-02-25 17:49:16.592 2024-02-25 17:49:16.592 4000 FEE 438317 6717 6064904 2024-02-25 17:49:16.592 2024-02-25 17:49:16.592 36000 TIP 438317 21391 6064922 2024-02-25 17:49:39.597 2024-02-25 17:49:39.597 100 FEE 438372 9845 6064923 2024-02-25 17:49:39.597 2024-02-25 17:49:39.597 900 TIP 438372 1007 6064928 2024-02-25 17:50:18.122 2024-02-25 17:50:18.122 1000 FEE 438487 21166 6064929 2024-02-25 17:50:18.122 2024-02-25 17:50:18.122 9000 TIP 438487 17693 6064934 2024-02-25 17:50:19.799 2024-02-25 17:50:19.799 1000 FEE 438487 1960 6064935 2024-02-25 17:50:19.799 2024-02-25 17:50:19.799 9000 TIP 438487 18678 6064955 2024-02-25 17:52:22.676 2024-02-25 17:52:22.676 1000 FEE 437723 20084 6064956 2024-02-25 17:52:22.676 2024-02-25 17:52:22.676 9000 TIP 437723 16289 6064987 2024-02-25 17:55:16.357 2024-02-25 17:55:16.357 1000 FEE 438401 17147 6064988 2024-02-25 17:55:16.357 2024-02-25 17:55:16.357 9000 TIP 438401 16867 6065003 2024-02-25 17:56:43.47 2024-02-25 17:56:43.47 0 FEE 438507 8998 6065004 2024-02-25 17:56:48.062 2024-02-25 17:56:48.062 1000 FEE 438083 15045 6065005 2024-02-25 17:56:48.062 2024-02-25 17:56:48.062 9000 TIP 438083 15544 6064114 2024-02-25 16:28:04.868 2024-02-25 16:28:04.868 1000 STREAM 141924 15115 6064123 2024-02-25 16:29:04.848 2024-02-25 16:29:04.848 1000 STREAM 141924 18169 6064163 2024-02-25 16:30:04.865 2024-02-25 16:30:04.865 1000 STREAM 141924 19911 6064206 2024-02-25 16:35:03.409 2024-02-25 16:35:03.409 1000 STREAM 141924 2361 6064207 2024-02-25 16:36:03.43 2024-02-25 16:36:03.43 1000 STREAM 141924 909 6124222 2024-03-01 12:22:27.445 2024-03-01 12:22:27.445 1000 FEE 444912 1519 6124231 2024-03-01 12:25:06.707 2024-03-01 12:25:06.707 1000 FEE 444914 21180 6124240 2024-03-01 12:26:38.739 2024-03-01 12:26:38.739 1000 FEE 444916 21164 6124241 2024-03-01 12:26:42.108 2024-03-01 12:26:42.108 300 FEE 444842 15266 6124242 2024-03-01 12:26:42.108 2024-03-01 12:26:42.108 2700 TIP 444842 20973 6124243 2024-03-01 12:26:42.345 2024-03-01 12:26:42.345 2100 FEE 444714 854 6124244 2024-03-01 12:26:42.345 2024-03-01 12:26:42.345 18900 TIP 444714 18219 6124245 2024-03-01 12:26:42.68 2024-03-01 12:26:42.68 900 FEE 444842 18615 6124246 2024-03-01 12:26:42.68 2024-03-01 12:26:42.68 8100 TIP 444842 7675 6124247 2024-03-01 12:26:42.96 2024-03-01 12:26:42.96 300 FEE 444842 3411 6124248 2024-03-01 12:26:42.96 2024-03-01 12:26:42.96 2700 TIP 444842 19981 6124251 2024-03-01 12:26:43.485 2024-03-01 12:26:43.485 300 FEE 444842 21342 6124252 2024-03-01 12:26:43.485 2024-03-01 12:26:43.485 2700 TIP 444842 18815 6124275 2024-03-01 12:26:45.486 2024-03-01 12:26:45.486 300 FEE 444842 19976 6124276 2024-03-01 12:26:45.486 2024-03-01 12:26:45.486 2700 TIP 444842 21216 6124291 2024-03-01 12:27:17.906 2024-03-01 12:27:17.906 2100 FEE 444852 19566 6124292 2024-03-01 12:27:17.906 2024-03-01 12:27:17.906 18900 TIP 444852 929 6124304 2024-03-01 12:27:49.109 2024-03-01 12:27:49.109 2100 FEE 444899 21262 6124305 2024-03-01 12:27:49.109 2024-03-01 12:27:49.109 18900 TIP 444899 15409 6124308 2024-03-01 12:27:54.495 2024-03-01 12:27:54.495 2100 FEE 444902 16965 6124309 2024-03-01 12:27:54.495 2024-03-01 12:27:54.495 18900 TIP 444902 18313 6124318 2024-03-01 12:28:12.973 2024-03-01 12:28:12.973 2100 FEE 444826 5694 6124319 2024-03-01 12:28:12.973 2024-03-01 12:28:12.973 18900 TIP 444826 21079 6124320 2024-03-01 12:28:14.489 2024-03-01 12:28:14.489 2100 FEE 444911 21329 6124321 2024-03-01 12:28:14.489 2024-03-01 12:28:14.489 18900 TIP 444911 19773 6124332 2024-03-01 12:28:29.154 2024-03-01 12:28:29.154 2100 FEE 444847 4798 6124333 2024-03-01 12:28:29.154 2024-03-01 12:28:29.154 18900 TIP 444847 766 6124351 2024-03-01 12:28:41.982 2024-03-01 12:28:41.982 2100 FEE 444829 882 6124352 2024-03-01 12:28:41.982 2024-03-01 12:28:41.982 18900 TIP 444829 6310 6124363 2024-03-01 12:28:47.161 2024-03-01 12:28:47.161 2100 FEE 444795 1468 6124364 2024-03-01 12:28:47.161 2024-03-01 12:28:47.161 18900 TIP 444795 12738 6124375 2024-03-01 12:28:53.86 2024-03-01 12:28:53.86 2100 FEE 444811 1801 6124376 2024-03-01 12:28:53.86 2024-03-01 12:28:53.86 18900 TIP 444811 20704 6124383 2024-03-01 12:28:59.017 2024-03-01 12:28:59.017 2100 FEE 444775 979 6124384 2024-03-01 12:28:59.017 2024-03-01 12:28:59.017 18900 TIP 444775 19976 6124431 2024-03-01 12:32:12.636 2024-03-01 12:32:12.636 2100 FEE 444910 17001 6124432 2024-03-01 12:32:12.636 2024-03-01 12:32:12.636 18900 TIP 444910 8289 6124455 2024-03-01 12:34:55.369 2024-03-01 12:34:55.369 100 FEE 444884 3396 6124456 2024-03-01 12:34:55.369 2024-03-01 12:34:55.369 900 TIP 444884 21249 6124474 2024-03-01 12:38:16.752 2024-03-01 12:38:16.752 0 FEE 444927 11491 6124515 2024-03-01 12:42:06.325 2024-03-01 12:42:06.325 1000 FEE 444930 19795 6124516 2024-03-01 12:42:06.325 2024-03-01 12:42:06.325 9000 TIP 444930 999 6124543 2024-03-01 12:44:37.86 2024-03-01 12:44:37.86 100 FEE 444802 9843 6124544 2024-03-01 12:44:37.86 2024-03-01 12:44:37.86 900 TIP 444802 5455 6124565 2024-03-01 12:46:30.854 2024-03-01 12:46:30.854 2000 FEE 444921 21386 6124566 2024-03-01 12:46:30.854 2024-03-01 12:46:30.854 18000 TIP 444921 9 6124571 2024-03-01 12:46:36.833 2024-03-01 12:46:36.833 6900 FEE 444852 10821 6124572 2024-03-01 12:46:36.833 2024-03-01 12:46:36.833 62100 TIP 444852 19158 6124593 2024-03-01 12:52:01.163 2024-03-01 12:52:01.163 1000 FEE 444755 21493 6124594 2024-03-01 12:52:01.163 2024-03-01 12:52:01.163 9000 TIP 444755 9099 6124602 2024-03-01 12:52:21.267 2024-03-01 12:52:21.267 1000 FEE 444916 1010 6124603 2024-03-01 12:52:21.267 2024-03-01 12:52:21.267 9000 TIP 444916 9450 6124616 2024-03-01 12:52:24.436 2024-03-01 12:52:24.436 1000 FEE 444764 19282 6124617 2024-03-01 12:52:24.436 2024-03-01 12:52:24.436 9000 TIP 444764 18817 6124618 2024-03-01 12:52:24.81 2024-03-01 12:52:24.81 1000 FEE 444806 16176 6124619 2024-03-01 12:52:24.81 2024-03-01 12:52:24.81 9000 TIP 444806 18494 6124655 2024-03-01 12:53:30.709 2024-03-01 12:53:30.709 1000 FEE 443272 5195 6124656 2024-03-01 12:53:30.709 2024-03-01 12:53:30.709 9000 TIP 443272 10493 6124670 2024-03-01 12:55:44.634 2024-03-01 12:55:44.634 800 FEE 444921 1585 6124671 2024-03-01 12:55:44.634 2024-03-01 12:55:44.634 7200 TIP 444921 18368 6124672 2024-03-01 12:56:00.439 2024-03-01 12:56:00.439 800 FEE 444930 2176 6124673 2024-03-01 12:56:00.439 2024-03-01 12:56:00.439 7200 TIP 444930 1697 6124694 2024-03-01 12:59:51.995 2024-03-01 12:59:51.995 1000 FEE 444944 5017 6124715 2024-03-01 13:03:29.184 2024-03-01 13:03:29.184 0 FEE 444947 4166 6124744 2024-03-01 13:05:33.991 2024-03-01 13:05:33.991 1000 FEE 444953 21208 6124753 2024-03-01 13:05:47.408 2024-03-01 13:05:47.408 1000 FEE 444561 13763 6124754 2024-03-01 13:05:47.408 2024-03-01 13:05:47.408 9000 TIP 444561 16649 6124765 2024-03-01 13:05:53.764 2024-03-01 13:05:53.764 900 FEE 444638 4074 6124766 2024-03-01 13:05:53.764 2024-03-01 13:05:53.764 8100 TIP 444638 644 6124798 2024-03-01 13:09:06.588 2024-03-01 13:09:06.588 9000 FEE 444652 18731 6124799 2024-03-01 13:09:06.588 2024-03-01 13:09:06.588 81000 TIP 444652 14074 6124806 2024-03-01 13:09:25.445 2024-03-01 13:09:25.445 27900 FEE 444930 20153 6124807 2024-03-01 13:09:25.445 2024-03-01 13:09:25.445 251100 TIP 444930 21588 6124829 2024-03-01 13:12:03.375 2024-03-01 13:12:03.375 1000 FEE 444957 21624 6124832 2024-03-01 13:12:12.316 2024-03-01 13:12:12.316 100 FEE 444905 14225 6124833 2024-03-01 13:12:12.316 2024-03-01 13:12:12.316 900 TIP 444905 7809 6124840 2024-03-01 13:12:34.75 2024-03-01 13:12:34.75 10000 FEE 444958 726 6124841 2024-03-01 13:12:40.327 2024-03-01 13:12:40.327 1000 FEE 444959 16753 6124861 2024-03-01 13:14:02.276 2024-03-01 13:14:02.276 100 FEE 444883 822 6124862 2024-03-01 13:14:02.276 2024-03-01 13:14:02.276 900 TIP 444883 17124 6124886 2024-03-01 13:16:25.986 2024-03-01 13:16:25.986 2100 FEE 444950 16724 6124887 2024-03-01 13:16:25.986 2024-03-01 13:16:25.986 18900 TIP 444950 6136 6124889 2024-03-01 13:17:29.831 2024-03-01 13:17:29.831 10000 FEE 444962 2773 6124896 2024-03-01 13:17:36.994 2024-03-01 13:17:36.994 100 FEE 444695 15213 6124897 2024-03-01 13:17:36.994 2024-03-01 13:17:36.994 900 TIP 444695 782 6124909 2024-03-01 13:20:12.623 2024-03-01 13:20:12.623 2200 FEE 444755 19836 6124910 2024-03-01 13:20:12.623 2024-03-01 13:20:12.623 19800 TIP 444755 21472 6124915 2024-03-01 13:20:49.483 2024-03-01 13:20:49.483 2200 FEE 444755 21417 6124916 2024-03-01 13:20:49.483 2024-03-01 13:20:49.483 19800 TIP 444755 4062 6124933 2024-03-01 13:22:16.316 2024-03-01 13:22:16.316 1100 FEE 444911 21262 6124934 2024-03-01 13:22:16.316 2024-03-01 13:22:16.316 9900 TIP 444911 14705 6124952 2024-03-01 13:23:23.372 2024-03-01 13:23:23.372 5000 FEE 444928 18177 6124953 2024-03-01 13:23:23.372 2024-03-01 13:23:23.372 45000 TIP 444928 3342 6124985 2024-03-01 13:24:10.253 2024-03-01 13:24:10.253 1000 FEE 444966 1881 6125018 2024-03-01 13:26:20.549 2024-03-01 13:26:20.549 9000 FEE 444561 19096 6125019 2024-03-01 13:26:20.549 2024-03-01 13:26:20.549 81000 TIP 444561 9364 6125036 2024-03-01 13:30:04.949 2024-03-01 13:30:04.949 1000 FEE 444970 18154 6125046 2024-03-01 13:33:00.024 2024-03-01 13:33:00.024 1000 FEE 444974 17797 6125050 2024-03-01 13:33:05.385 2024-03-01 13:33:05.385 100 FEE 444744 20588 6064179 2024-02-25 16:30:35.997 2024-02-25 16:30:35.997 1000 FEE 437996 20854 6064180 2024-02-25 16:30:35.997 2024-02-25 16:30:35.997 9000 TIP 437996 19943 6064181 2024-02-25 16:30:36.794 2024-02-25 16:30:36.794 2000 FEE 437996 15978 6064182 2024-02-25 16:30:36.794 2024-02-25 16:30:36.794 18000 TIP 437996 5455 6064203 2024-02-25 16:34:30.501 2024-02-25 16:34:30.501 100000 FEE 438416 18500 6064204 2024-02-25 16:34:30.501 2024-02-25 16:34:30.501 900000 TIP 438416 2347 6064213 2024-02-25 16:36:38.639 2024-02-25 16:36:38.639 1000 FEE 438390 6160 6064214 2024-02-25 16:36:38.639 2024-02-25 16:36:38.639 9000 TIP 438390 1307 6064229 2024-02-25 16:36:42.816 2024-02-25 16:36:42.816 1000 FEE 438390 18403 6064230 2024-02-25 16:36:42.816 2024-02-25 16:36:42.816 9000 TIP 438390 1624 6064231 2024-02-25 16:36:43.387 2024-02-25 16:36:43.387 1000 FEE 438390 21228 6064232 2024-02-25 16:36:43.387 2024-02-25 16:36:43.387 9000 TIP 438390 17570 6064261 2024-02-25 16:41:28.16 2024-02-25 16:41:28.16 1000 FEE 438379 11144 6064262 2024-02-25 16:41:28.16 2024-02-25 16:41:28.16 9000 TIP 438379 11145 6064312 2024-02-25 16:47:28.78 2024-02-25 16:47:28.78 1000 POLL 438414 2832 6064317 2024-02-25 16:47:31.832 2024-02-25 16:47:31.832 6900 FEE 438396 3377 6064318 2024-02-25 16:47:31.832 2024-02-25 16:47:31.832 62100 TIP 438396 5003 6064319 2024-02-25 16:47:35.336 2024-02-25 16:47:35.336 1000 FEE 438433 11263 6064356 2024-02-25 16:52:24.364 2024-02-25 16:52:24.364 1000 FEE 438065 1272 6064357 2024-02-25 16:52:24.364 2024-02-25 16:52:24.364 9000 TIP 438065 1472 6064382 2024-02-25 16:52:39.469 2024-02-25 16:52:39.469 1000 FEE 438065 7877 6064383 2024-02-25 16:52:39.469 2024-02-25 16:52:39.469 9000 TIP 438065 9916 6064399 2024-02-25 16:53:51.764 2024-02-25 16:53:51.764 800 FEE 437880 13097 6064400 2024-02-25 16:53:51.764 2024-02-25 16:53:51.764 7200 TIP 437880 5746 6064418 2024-02-25 16:54:23.555 2024-02-25 16:54:23.555 2100 FEE 438358 9335 6064419 2024-02-25 16:54:23.555 2024-02-25 16:54:23.555 18900 TIP 438358 18472 6064422 2024-02-25 16:54:36.563 2024-02-25 16:54:36.563 800 FEE 438211 15617 6064423 2024-02-25 16:54:36.563 2024-02-25 16:54:36.563 7200 TIP 438211 17095 6064424 2024-02-25 16:54:39.105 2024-02-25 16:54:39.105 2100 FEE 438188 17710 6064425 2024-02-25 16:54:39.105 2024-02-25 16:54:39.105 18900 TIP 438188 10273 6064428 2024-02-25 16:54:45.007 2024-02-25 16:54:45.007 2100 FEE 438243 6335 6064429 2024-02-25 16:54:45.007 2024-02-25 16:54:45.007 18900 TIP 438243 20655 6064445 2024-02-25 16:55:56.506 2024-02-25 16:55:56.506 800 FEE 437490 20562 6064446 2024-02-25 16:55:56.506 2024-02-25 16:55:56.506 7200 TIP 437490 11165 6064481 2024-02-25 16:58:07.672 2024-02-25 16:58:07.672 2100 FEE 438367 16724 6064482 2024-02-25 16:58:07.672 2024-02-25 16:58:07.672 18900 TIP 438367 11263 6064514 2024-02-25 17:05:28.71 2024-02-25 17:05:28.71 9000 FEE 438317 706 6064515 2024-02-25 17:05:28.71 2024-02-25 17:05:28.71 81000 TIP 438317 18454 6064540 2024-02-25 17:09:16.835 2024-02-25 17:09:16.835 1000 POLL 438414 5779 6064552 2024-02-25 17:11:40.084 2024-02-25 17:11:40.084 500 FEE 438414 673 6064553 2024-02-25 17:11:40.084 2024-02-25 17:11:40.084 4500 TIP 438414 1617 6064571 2024-02-25 17:14:35.774 2024-02-25 17:14:35.774 10100 FEE 438027 21563 6064572 2024-02-25 17:14:35.774 2024-02-25 17:14:35.774 90900 TIP 438027 891 6064575 2024-02-25 17:14:46.957 2024-02-25 17:14:46.957 10100 FEE 438171 1439 6064576 2024-02-25 17:14:46.957 2024-02-25 17:14:46.957 90900 TIP 438171 15049 6064595 2024-02-25 17:20:59.97 2024-02-25 17:20:59.97 1000 FEE 438455 21417 6064605 2024-02-25 17:21:21.793 2024-02-25 17:21:21.793 100 FEE 438416 18468 6064606 2024-02-25 17:21:21.793 2024-02-25 17:21:21.793 900 TIP 438416 20245 6064607 2024-02-25 17:21:21.963 2024-02-25 17:21:21.963 900 FEE 438416 2293 6064608 2024-02-25 17:21:21.963 2024-02-25 17:21:21.963 8100 TIP 438416 658 6064613 2024-02-25 17:21:41.758 2024-02-25 17:21:41.758 4000 FEE 438453 20802 6064614 2024-02-25 17:21:41.758 2024-02-25 17:21:41.758 36000 TIP 438453 15474 6064618 2024-02-25 17:22:14.788 2024-02-25 17:22:14.788 1000 FEE 438457 4624 6064631 2024-02-25 17:23:19.096 2024-02-25 17:23:19.096 1000 FEE 438459 718 6064665 2024-02-25 17:25:03.119 2024-02-25 17:25:03.119 1000 FEE 438465 21014 6064669 2024-02-25 17:25:35.667 2024-02-25 17:25:35.667 3300 FEE 438179 2773 6064670 2024-02-25 17:25:35.667 2024-02-25 17:25:35.667 29700 TIP 438179 20523 6064679 2024-02-25 17:28:27.003 2024-02-25 17:28:27.003 1000 FEE 438468 18873 6064702 2024-02-25 17:31:32.16 2024-02-25 17:31:32.16 4000 FEE 438471 16876 6064703 2024-02-25 17:31:32.16 2024-02-25 17:31:32.16 36000 TIP 438471 19637 6064723 2024-02-25 17:32:08.488 2024-02-25 17:32:08.488 9000 FEE 438451 20713 6064724 2024-02-25 17:32:08.488 2024-02-25 17:32:08.488 81000 TIP 438451 5637 6064725 2024-02-25 17:32:59.741 2024-02-25 17:32:59.741 1000 FEE 438473 14905 6064751 2024-02-25 17:36:26.186 2024-02-25 17:36:26.186 100 FEE 438449 17227 6064752 2024-02-25 17:36:26.186 2024-02-25 17:36:26.186 900 TIP 438449 18177 6064756 2024-02-25 17:38:20.396 2024-02-25 17:38:20.396 300 FEE 438259 20563 6064757 2024-02-25 17:38:20.396 2024-02-25 17:38:20.396 2700 TIP 438259 16284 6064760 2024-02-25 17:38:59.469 2024-02-25 17:38:59.469 0 FEE 438480 3439 6064761 2024-02-25 17:39:04.323 2024-02-25 17:39:04.323 500 FEE 326364 19494 6064762 2024-02-25 17:39:04.323 2024-02-25 17:39:04.323 4500 TIP 326364 18392 6064765 2024-02-25 17:39:10.539 2024-02-25 17:39:10.539 1000 FEE 438483 18363 6064774 2024-02-25 17:39:31.73 2024-02-25 17:39:31.73 1000 FEE 438479 16717 6064775 2024-02-25 17:39:31.73 2024-02-25 17:39:31.73 9000 TIP 438479 8726 6064782 2024-02-25 17:40:29.582 2024-02-25 17:40:29.582 2100 FEE 438211 15336 6064783 2024-02-25 17:40:29.582 2024-02-25 17:40:29.582 18900 TIP 438211 11992 6064786 2024-02-25 17:40:32.275 2024-02-25 17:40:32.275 2100 FEE 438209 17030 6064787 2024-02-25 17:40:32.275 2024-02-25 17:40:32.275 18900 TIP 438209 21070 6064792 2024-02-25 17:40:39.341 2024-02-25 17:40:39.341 300 FEE 436814 673 6064793 2024-02-25 17:40:39.341 2024-02-25 17:40:39.341 2700 TIP 436814 1236 6064817 2024-02-25 17:42:58.909 2024-02-25 17:42:58.909 0 FEE 438486 1845 6064835 2024-02-25 17:45:14.535 2024-02-25 17:45:14.535 1000 FEE 438487 11192 6064836 2024-02-25 17:45:14.535 2024-02-25 17:45:14.535 9000 TIP 438487 21589 6064839 2024-02-25 17:45:15.755 2024-02-25 17:45:15.755 1000 FEE 438487 20551 6064840 2024-02-25 17:45:15.755 2024-02-25 17:45:15.755 9000 TIP 438487 21332 6064848 2024-02-25 17:45:33.957 2024-02-25 17:45:33.957 1000 FEE 438491 17522 6064850 2024-02-25 17:45:47.328 2024-02-25 17:45:47.328 0 FEE 438488 6555 6064859 2024-02-25 17:45:55.875 2024-02-25 17:45:55.875 2000 FEE 438487 5444 6064860 2024-02-25 17:45:55.875 2024-02-25 17:45:55.875 18000 TIP 438487 20588 6064869 2024-02-25 17:46:10.483 2024-02-25 17:46:10.483 1000 FEE 438493 8326 6064899 2024-02-25 17:48:42.273 2024-02-25 17:48:42.273 0 FEE 438488 2029 6064900 2024-02-25 17:49:00.711 2024-02-25 17:49:00.711 1000 FEE 438498 19494 6064918 2024-02-25 17:49:35.698 2024-02-25 17:49:35.698 4000 FEE 438367 19126 6064200 2024-02-25 16:33:40.903 2024-02-25 16:33:40.903 1000 FEE 438421 889 6064221 2024-02-25 16:36:40.301 2024-02-25 16:36:40.301 1000 FEE 438390 21492 6064222 2024-02-25 16:36:40.301 2024-02-25 16:36:40.301 9000 TIP 438390 18291 6064235 2024-02-25 16:37:37.022 2024-02-25 16:37:37.022 1000 FEE 438425 19193 6064295 2024-02-25 16:43:46.502 2024-02-25 16:43:46.502 1000 FEE 438405 999 6064296 2024-02-25 16:43:46.502 2024-02-25 16:43:46.502 9000 TIP 438405 17050 6064313 2024-02-25 16:47:31.52 2024-02-25 16:47:31.52 6900 FEE 438396 8570 6064314 2024-02-25 16:47:31.52 2024-02-25 16:47:31.52 62100 TIP 438396 9200 6064326 2024-02-25 16:49:43.588 2024-02-25 16:49:43.588 1000 POLL 438325 16704 6064335 2024-02-25 16:51:24.772 2024-02-25 16:51:24.772 2100 FEE 438390 882 6064336 2024-02-25 16:51:24.772 2024-02-25 16:51:24.772 18900 TIP 438390 12277 6064346 2024-02-25 16:51:39.372 2024-02-25 16:51:39.372 1000 FEE 438065 2703 6064347 2024-02-25 16:51:39.372 2024-02-25 16:51:39.372 9000 TIP 438065 17011 6064348 2024-02-25 16:51:40.179 2024-02-25 16:51:40.179 450000 FEE 438414 5757 6064349 2024-02-25 16:51:40.179 2024-02-25 16:51:40.179 4050000 TIP 438414 14260 6064364 2024-02-25 16:52:25.166 2024-02-25 16:52:25.166 1000 FEE 438065 7978 6064365 2024-02-25 16:52:25.166 2024-02-25 16:52:25.166 9000 TIP 438065 4624 6064366 2024-02-25 16:52:25.368 2024-02-25 16:52:25.368 1000 FEE 438065 2285 6064367 2024-02-25 16:52:25.368 2024-02-25 16:52:25.368 9000 TIP 438065 7827 6064372 2024-02-25 16:52:25.896 2024-02-25 16:52:25.896 1000 FEE 438065 11073 6064373 2024-02-25 16:52:25.896 2024-02-25 16:52:25.896 9000 TIP 438065 1769 6064374 2024-02-25 16:52:28.713 2024-02-25 16:52:28.713 1000 FEE 438065 2322 6064375 2024-02-25 16:52:28.713 2024-02-25 16:52:28.713 9000 TIP 438065 9695 6064378 2024-02-25 16:52:29.061 2024-02-25 16:52:29.061 1000 FEE 438065 18941 6064379 2024-02-25 16:52:29.061 2024-02-25 16:52:29.061 9000 TIP 438065 18626 6064387 2024-02-25 16:53:05.61 2024-02-25 16:53:05.61 1600 FEE 437605 20490 6064388 2024-02-25 16:53:05.61 2024-02-25 16:53:05.61 14400 TIP 437605 2042 6064395 2024-02-25 16:53:33.401 2024-02-25 16:53:33.401 6900 FEE 438414 18357 6064396 2024-02-25 16:53:33.401 2024-02-25 16:53:33.401 62100 TIP 438414 18378 6064402 2024-02-25 16:54:06.707 2024-02-25 16:54:06.707 2100 FEE 438198 13406 6064403 2024-02-25 16:54:06.707 2024-02-25 16:54:06.707 18900 TIP 438198 636 6064404 2024-02-25 16:54:08.084 2024-02-25 16:54:08.084 800 FEE 438124 1495 6064405 2024-02-25 16:54:08.084 2024-02-25 16:54:08.084 7200 TIP 438124 18040 6064406 2024-02-25 16:54:12.86 2024-02-25 16:54:12.86 2100 FEE 438390 2776 6064407 2024-02-25 16:54:12.86 2024-02-25 16:54:12.86 18900 TIP 438390 14449 6064435 2024-02-25 16:55:04.422 2024-02-25 16:55:04.422 800 FEE 438261 15146 6064436 2024-02-25 16:55:04.422 2024-02-25 16:55:04.422 7200 TIP 438261 656 6064443 2024-02-25 16:55:54.487 2024-02-25 16:55:54.487 2100 FEE 438397 19943 6064240 2024-02-25 16:38:03.685 2024-02-25 16:38:03.685 1000 STREAM 141924 18690 6064252 2024-02-25 16:41:03.711 2024-02-25 16:41:03.711 1000 STREAM 141924 20511 6064274 2024-02-25 16:43:03.716 2024-02-25 16:43:03.716 1000 STREAM 141924 14545 6064310 2024-02-25 16:46:03.734 2024-02-25 16:46:03.734 1000 STREAM 141924 827 6064332 2024-02-25 16:51:03.803 2024-02-25 16:51:03.803 1000 STREAM 141924 17696 6064386 2024-02-25 16:53:03.828 2024-02-25 16:53:03.828 1000 STREAM 141924 21338 6064434 2024-02-25 16:55:03.831 2024-02-25 16:55:03.831 1000 STREAM 141924 21624 6064466 2024-02-25 16:57:03.869 2024-02-25 16:57:03.869 1000 STREAM 141924 19533 6064478 2024-02-25 16:58:03.87 2024-02-25 16:58:03.87 1000 STREAM 141924 9275 6064490 2024-02-25 17:00:03.923 2024-02-25 17:00:03.923 1000 STREAM 141924 19500 6064494 2024-02-25 17:01:03.888 2024-02-25 17:01:03.888 1000 STREAM 141924 1515 6064496 2024-02-25 17:02:03.903 2024-02-25 17:02:03.903 1000 STREAM 141924 1801 6064536 2024-02-25 17:07:03.936 2024-02-25 17:07:03.936 1000 STREAM 141924 766 6064538 2024-02-25 17:08:03.932 2024-02-25 17:08:03.932 1000 STREAM 141924 11477 6064539 2024-02-25 17:09:03.95 2024-02-25 17:09:03.95 1000 STREAM 141924 3506 6064542 2024-02-25 17:10:03.952 2024-02-25 17:10:03.952 1000 STREAM 141924 21492 6064543 2024-02-25 17:11:03.94 2024-02-25 17:11:03.94 1000 STREAM 141924 16357 6064557 2024-02-25 17:12:03.944 2024-02-25 17:12:03.944 1000 STREAM 141924 725 6124322 2024-03-01 12:28:23.283 2024-03-01 12:28:23.283 5000 FEE 444755 19469 6124323 2024-03-01 12:28:23.283 2024-03-01 12:28:23.283 45000 TIP 444755 15282 6124330 2024-03-01 12:28:27.98 2024-03-01 12:28:27.98 2100 FEE 444875 17106 6124331 2024-03-01 12:28:27.98 2024-03-01 12:28:27.98 18900 TIP 444875 12609 6124334 2024-03-01 12:28:30.766 2024-03-01 12:28:30.766 2100 FEE 444854 20687 6124335 2024-03-01 12:28:30.766 2024-03-01 12:28:30.766 18900 TIP 444854 3642 6124336 2024-03-01 12:28:33.457 2024-03-01 12:28:33.457 2100 FEE 444845 17226 6124337 2024-03-01 12:28:33.457 2024-03-01 12:28:33.457 18900 TIP 444845 19910 6124357 2024-03-01 12:28:44.311 2024-03-01 12:28:44.311 2100 FEE 444796 16485 6124358 2024-03-01 12:28:44.311 2024-03-01 12:28:44.311 18900 TIP 444796 21472 6124365 2024-03-01 12:28:47.532 2024-03-01 12:28:47.532 2100 FEE 444797 7760 6124366 2024-03-01 12:28:47.532 2024-03-01 12:28:47.532 18900 TIP 444797 17976 6124422 2024-03-01 12:31:54.817 2024-03-01 12:31:54.817 7600 FEE 444919 16816 6124423 2024-03-01 12:31:54.817 2024-03-01 12:31:54.817 68400 TIP 444919 989 6124424 2024-03-01 12:31:55.225 2024-03-01 12:31:55.225 2100 FEE 444854 10291 6124425 2024-03-01 12:31:55.225 2024-03-01 12:31:55.225 18900 TIP 444854 13517 6124444 2024-03-01 12:33:23.726 2024-03-01 12:33:23.726 100 FEE 444739 16270 6124445 2024-03-01 12:33:23.726 2024-03-01 12:33:23.726 900 TIP 444739 21332 6124453 2024-03-01 12:34:50.369 2024-03-01 12:34:50.369 100 FEE 444889 16684 6124454 2024-03-01 12:34:50.369 2024-03-01 12:34:50.369 900 TIP 444889 10102 6124458 2024-03-01 12:35:13.13 2024-03-01 12:35:13.13 1000 FEE 444926 14308 6124466 2024-03-01 12:37:14.94 2024-03-01 12:37:14.94 100 FEE 444919 746 6124467 2024-03-01 12:37:14.94 2024-03-01 12:37:14.94 900 TIP 444919 9339 6124487 2024-03-01 12:39:39.492 2024-03-01 12:39:39.492 0 FEE 444929 21291 6124500 2024-03-01 12:39:58.85 2024-03-01 12:39:58.85 200 FEE 444771 9332 6124501 2024-03-01 12:39:58.85 2024-03-01 12:39:58.85 1800 TIP 444771 10359 6124513 2024-03-01 12:41:46.433 2024-03-01 12:41:46.433 0 FEE 444929 4322 6124551 2024-03-01 12:44:57.088 2024-03-01 12:44:57.088 7600 FEE 444933 19507 6124552 2024-03-01 12:44:57.088 2024-03-01 12:44:57.088 68400 TIP 444933 15063 6124563 2024-03-01 12:46:30.646 2024-03-01 12:46:30.646 2000 FEE 444921 3706 6124564 2024-03-01 12:46:30.646 2024-03-01 12:46:30.646 18000 TIP 444921 20205 6124575 2024-03-01 12:47:12.808 2024-03-01 12:47:12.808 1000 FEE 444935 20564 6124587 2024-03-01 12:51:54.312 2024-03-01 12:51:54.312 1000 FEE 444671 14669 6124588 2024-03-01 12:51:54.312 2024-03-01 12:51:54.312 9000 TIP 444671 7587 6124589 2024-03-01 12:51:54.481 2024-03-01 12:51:54.481 1000 FEE 444671 11750 6124590 2024-03-01 12:51:54.481 2024-03-01 12:51:54.481 9000 TIP 444671 4084 6124591 2024-03-01 12:51:54.638 2024-03-01 12:51:54.638 1000 FEE 444671 16848 6124592 2024-03-01 12:51:54.638 2024-03-01 12:51:54.638 9000 TIP 444671 2844 6124598 2024-03-01 12:52:21.009 2024-03-01 12:52:21.009 1000 FEE 444916 1718 6124599 2024-03-01 12:52:21.009 2024-03-01 12:52:21.009 9000 TIP 444916 3504 6124606 2024-03-01 12:52:22.989 2024-03-01 12:52:22.989 1000 FEE 444895 4014 6124607 2024-03-01 12:52:22.989 2024-03-01 12:52:22.989 9000 TIP 444895 17639 6124624 2024-03-01 12:52:25.531 2024-03-01 12:52:25.531 1000 FEE 444895 4126 6124625 2024-03-01 12:52:25.531 2024-03-01 12:52:25.531 9000 TIP 444895 940 6124645 2024-03-01 12:53:21.416 2024-03-01 12:53:21.416 1000 FEE 444874 7558 6124646 2024-03-01 12:53:21.416 2024-03-01 12:53:21.416 9000 TIP 444874 12278 6124651 2024-03-01 12:53:21.858 2024-03-01 12:53:21.858 1000 FEE 444874 18615 6124652 2024-03-01 12:53:21.858 2024-03-01 12:53:21.858 9000 TIP 444874 14910 6124666 2024-03-01 12:55:25.547 2024-03-01 12:55:25.547 3100 FEE 444739 4079 6124667 2024-03-01 12:55:25.547 2024-03-01 12:55:25.547 27900 TIP 444739 13599 6124690 2024-03-01 12:59:02.392 2024-03-01 12:59:02.392 1000 FEE 444943 4819 6124692 2024-03-01 12:59:06.735 2024-03-01 12:59:06.735 2100 FEE 444941 9184 6124693 2024-03-01 12:59:06.735 2024-03-01 12:59:06.735 18900 TIP 444941 19346 6124709 2024-03-01 13:02:49.162 2024-03-01 13:02:49.162 100000 FEE 444948 21609 6124718 2024-03-01 13:04:08.034 2024-03-01 13:04:08.034 7600 FEE 444948 21164 6124719 2024-03-01 13:04:08.034 2024-03-01 13:04:08.034 68400 TIP 444948 20412 6124735 2024-03-01 13:04:36.063 2024-03-01 13:04:36.063 100 FEE 444948 9350 6124736 2024-03-01 13:04:36.063 2024-03-01 13:04:36.063 900 TIP 444948 14552 6124745 2024-03-01 13:05:36.574 2024-03-01 13:05:36.574 1000 FEE 444616 848 6124746 2024-03-01 13:05:36.574 2024-03-01 13:05:36.574 9000 TIP 444616 14122 6124747 2024-03-01 13:05:37.275 2024-03-01 13:05:37.275 1000 FEE 444616 11515 6124748 2024-03-01 13:05:37.275 2024-03-01 13:05:37.275 9000 TIP 444616 5444 6124749 2024-03-01 13:05:38.088 2024-03-01 13:05:38.088 1000 FEE 444616 2529 6064248 2024-02-25 16:39:03.674 2024-02-25 16:39:03.674 1000 STREAM 141924 16965 6064251 2024-02-25 16:40:03.718 2024-02-25 16:40:03.718 1000 STREAM 141924 2335 6064270 2024-02-25 16:42:03.707 2024-02-25 16:42:03.707 1000 STREAM 141924 2776 6064304 2024-02-25 16:45:03.717 2024-02-25 16:45:03.717 1000 STREAM 141924 20655 6064311 2024-02-25 16:47:03.746 2024-02-25 16:47:03.746 1000 STREAM 141924 9307 6064322 2024-02-25 16:48:03.757 2024-02-25 16:48:03.757 1000 STREAM 141924 14705 6064325 2024-02-25 16:49:03.764 2024-02-25 16:49:03.764 1000 STREAM 141924 13132 6064327 2024-02-25 16:50:03.806 2024-02-25 16:50:03.806 1000 STREAM 141924 17708 6064354 2024-02-25 16:52:03.809 2024-02-25 16:52:03.809 1000 STREAM 141924 2724 6064401 2024-02-25 16:54:03.827 2024-02-25 16:54:03.827 1000 STREAM 141924 20993 6064447 2024-02-25 16:56:03.849 2024-02-25 16:56:03.849 1000 STREAM 141924 19943 6064485 2024-02-25 16:59:03.875 2024-02-25 16:59:03.875 1000 STREAM 141924 13517 6064437 2024-02-25 16:55:15.948 2024-02-25 16:55:15.948 800 FEE 437752 18235 6064438 2024-02-25 16:55:15.948 2024-02-25 16:55:15.948 7200 TIP 437752 8269 6064461 2024-02-25 16:56:40.374 2024-02-25 16:56:40.374 800 FEE 437685 20754 6064462 2024-02-25 16:56:40.374 2024-02-25 16:56:40.374 7200 TIP 437685 4304 6064467 2024-02-25 16:57:33.321 2024-02-25 16:57:33.321 0 FEE 438438 6335 6064476 2024-02-25 16:58:01.42 2024-02-25 16:58:01.42 2100 FEE 438372 21239 6064477 2024-02-25 16:58:01.42 2024-02-25 16:58:01.42 18900 TIP 438372 11798 6064479 2024-02-25 16:58:04.927 2024-02-25 16:58:04.927 2100 FEE 438358 19663 6064480 2024-02-25 16:58:04.927 2024-02-25 16:58:04.927 18900 TIP 438358 18543 6064510 2024-02-25 17:05:28.169 2024-02-25 17:05:28.169 100 FEE 438317 16717 6064511 2024-02-25 17:05:28.169 2024-02-25 17:05:28.169 900 TIP 438317 18717 6064524 2024-02-25 17:06:11.074 2024-02-25 17:06:11.074 4000 FEE 438216 1114 6064525 2024-02-25 17:06:11.074 2024-02-25 17:06:11.074 36000 TIP 438216 20655 6064535 2024-02-25 17:06:41.506 2024-02-25 17:06:41.506 100000 FEE 438447 10849 6064544 2024-02-25 17:11:09.51 2024-02-25 17:11:09.51 1000 POLL 438414 20642 6064547 2024-02-25 17:11:20.95 2024-02-25 17:11:20.95 10000 FEE 438449 21509 6064588 2024-02-25 17:19:21.169 2024-02-25 17:19:21.169 0 FEE 438453 19976 6064592 2024-02-25 17:20:21.471 2024-02-25 17:20:21.471 1000 FEE 438454 19121 6064601 2024-02-25 17:21:20.148 2024-02-25 17:21:20.148 900 FEE 438453 672 6064602 2024-02-25 17:21:20.148 2024-02-25 17:21:20.148 8100 TIP 438453 1094 6064627 2024-02-25 17:22:36.181 2024-02-25 17:22:36.181 100 FEE 436151 17513 6064628 2024-02-25 17:22:36.181 2024-02-25 17:22:36.181 900 TIP 436151 1090 6064636 2024-02-25 17:24:01.341 2024-02-25 17:24:01.341 1000 FEE 438460 17227 6064640 2024-02-25 17:24:21.551 2024-02-25 17:24:21.551 1000 FEE 438462 21563 6064643 2024-02-25 17:24:29.06 2024-02-25 17:24:29.06 21800 FEE 438453 659 6064644 2024-02-25 17:24:29.06 2024-02-25 17:24:29.06 196200 TIP 438453 20840 6064647 2024-02-25 17:24:30.586 2024-02-25 17:24:30.586 900 FEE 438352 703 6064648 2024-02-25 17:24:30.586 2024-02-25 17:24:30.586 8100 TIP 438352 3506 6064682 2024-02-25 17:29:20.698 2024-02-25 17:29:20.698 0 FEE 438469 894 6064715 2024-02-25 17:32:00.15 2024-02-25 17:32:00.15 0 FEE 438469 16354 6064721 2024-02-25 17:32:06.94 2024-02-25 17:32:06.94 900 FEE 438451 20606 6064722 2024-02-25 17:32:06.94 2024-02-25 17:32:06.94 8100 TIP 438451 21444 6064749 2024-02-25 17:36:12.424 2024-02-25 17:36:12.424 1000 POLL 438325 667 6064759 2024-02-25 17:38:55.215 2024-02-25 17:38:55.215 1000 FEE 438481 20500 6064764 2024-02-25 17:39:05.945 2024-02-25 17:39:05.945 1000 FEE 438482 20183 6064773 2024-02-25 17:39:24.855 2024-02-25 17:39:24.855 1000 POLL 438202 9354 6064780 2024-02-25 17:40:28.856 2024-02-25 17:40:28.856 100000 FEE 260178 20924 6064781 2024-02-25 17:40:28.856 2024-02-25 17:40:28.856 900000 TIP 260178 11073 6064794 2024-02-25 17:40:42.005 2024-02-25 17:40:42.005 100 FEE 438397 19843 6064795 2024-02-25 17:40:42.005 2024-02-25 17:40:42.005 900 TIP 438397 6533 6064829 2024-02-25 17:45:12.296 2024-02-25 17:45:12.296 1000 FEE 438487 9346 6064830 2024-02-25 17:45:12.296 2024-02-25 17:45:12.296 9000 TIP 438487 4538 6064871 2024-02-25 17:46:21.884 2024-02-25 17:46:21.884 0 FEE 438488 20826 6064885 2024-02-25 17:46:38.738 2024-02-25 17:46:38.738 1000 FEE 438495 8870 6064911 2024-02-25 17:49:26.103 2024-02-25 17:49:26.103 4000 FEE 438198 16816 6064912 2024-02-25 17:49:26.103 2024-02-25 17:49:26.103 36000 TIP 438198 2674 6064925 2024-02-25 17:50:06.47 2024-02-25 17:50:06.47 0 FEE 438498 1647 6064930 2024-02-25 17:50:18.637 2024-02-25 17:50:18.637 1000 FEE 438487 10409 6064931 2024-02-25 17:50:18.637 2024-02-25 17:50:18.637 9000 TIP 438487 1130 6064943 2024-02-25 17:50:27.902 2024-02-25 17:50:27.902 1000 FEE 438487 20799 6064944 2024-02-25 17:50:27.902 2024-02-25 17:50:27.902 9000 TIP 438487 6688 6064949 2024-02-25 17:51:42.216 2024-02-25 17:51:42.216 210000 FEE 438501 1584 6064953 2024-02-25 17:52:20.77 2024-02-25 17:52:20.77 1000 FEE 437723 9341 6064954 2024-02-25 17:52:20.77 2024-02-25 17:52:20.77 9000 TIP 437723 5387 6064959 2024-02-25 17:52:23.983 2024-02-25 17:52:23.983 1000 FEE 437723 17455 6064960 2024-02-25 17:52:23.983 2024-02-25 17:52:23.983 9000 TIP 437723 2502 6064980 2024-02-25 17:54:12.687 2024-02-25 17:54:12.687 4000 FEE 438389 21412 6064981 2024-02-25 17:54:12.687 2024-02-25 17:54:12.687 36000 TIP 438389 20906 6064982 2024-02-25 17:54:13.106 2024-02-25 17:54:13.106 36000 FEE 438389 882 6064983 2024-02-25 17:54:13.106 2024-02-25 17:54:13.106 324000 TIP 438389 20143 6064991 2024-02-25 17:55:17.664 2024-02-25 17:55:17.664 900 FEE 438505 5085 6064992 2024-02-25 17:55:17.664 2024-02-25 17:55:17.664 8100 TIP 438505 20479 6065041 2024-02-25 17:58:27.555 2024-02-25 17:58:27.555 1000 FEE 438509 15510 6065066 2024-02-25 18:00:04.755 2024-02-25 18:00:04.755 100000 FEE 438511 16059 6065067 2024-02-25 18:00:04.96 2024-02-25 18:00:04.96 1000 FEE 438512 20788 6065068 2024-02-25 18:00:05.121 2024-02-25 18:00:05.121 1000 FEE 438513 18816 6065069 2024-02-25 18:00:24.878 2024-02-25 18:00:24.878 300 FEE 438508 13246 6065070 2024-02-25 18:00:24.878 2024-02-25 18:00:24.878 2700 TIP 438508 19888 6065076 2024-02-25 18:01:11.137 2024-02-25 18:01:11.137 700 FEE 438494 19890 6065077 2024-02-25 18:01:11.137 2024-02-25 18:01:11.137 6300 TIP 438494 685 6065082 2024-02-25 18:02:19.96 2024-02-25 18:02:19.96 0 FEE 438507 2367 6065083 2024-02-25 18:02:20.208 2024-02-25 18:02:20.208 1000 POLL 438325 20539 6065090 2024-02-25 18:03:51.219 2024-02-25 18:03:51.219 1000 FEE 438508 5746 6065091 2024-02-25 18:03:51.219 2024-02-25 18:03:51.219 9000 TIP 438508 10493 6065098 2024-02-25 18:03:57.817 2024-02-25 18:03:57.817 1000 FEE 438514 814 6065099 2024-02-25 18:03:57.817 2024-02-25 18:03:57.817 9000 TIP 438514 5865 6065115 2024-02-25 18:04:19.006 2024-02-25 18:04:19.006 1000 FEE 438512 11527 6065116 2024-02-25 18:04:19.006 2024-02-25 18:04:19.006 9000 TIP 438512 2195 6065122 2024-02-25 18:04:32.567 2024-02-25 18:04:32.567 4000 FEE 438514 21352 6065123 2024-02-25 18:04:32.567 2024-02-25 18:04:32.567 36000 TIP 438514 10283 6065130 2024-02-25 18:05:59.382 2024-02-25 18:05:59.382 100000 FEE 438519 21494 6065155 2024-02-25 18:10:52.829 2024-02-25 18:10:52.829 300 FEE 438137 18507 6065156 2024-02-25 18:10:52.829 2024-02-25 18:10:52.829 2700 TIP 438137 626 6065180 2024-02-25 18:13:04.397 2024-02-25 18:13:04.397 1000 FEE 437605 775 6065181 2024-02-25 18:13:04.397 2024-02-25 18:13:04.397 9000 TIP 437605 9362 6065182 2024-02-25 18:13:04.591 2024-02-25 18:13:04.591 1000 FEE 437605 5701 6065183 2024-02-25 18:13:04.591 2024-02-25 18:13:04.591 9000 TIP 437605 15100 6065224 2024-02-25 18:15:16.291 2024-02-25 18:15:16.291 0 FEE 438527 14213 6065227 2024-02-25 18:16:13.186 2024-02-25 18:16:13.186 2100 FEE 438423 16660 6065228 2024-02-25 18:16:13.186 2024-02-25 18:16:13.186 18900 TIP 438423 2016 6065232 2024-02-25 18:17:48.095 2024-02-25 18:17:48.095 1000 FEE 438536 4166 6065234 2024-02-25 18:18:22.626 2024-02-25 18:18:22.626 0 FEE 438536 6594 6065241 2024-02-25 18:18:52.825 2024-02-25 18:18:52.825 9000 FEE 438517 1142 6065242 2024-02-25 18:18:52.825 2024-02-25 18:18:52.825 81000 TIP 438517 6578 6065243 2024-02-25 18:18:54.909 2024-02-25 18:18:54.909 100 FEE 438507 21249 6065244 2024-02-25 18:18:54.909 2024-02-25 18:18:54.909 900 TIP 438507 20613 6064444 2024-02-25 16:55:54.487 2024-02-25 16:55:54.487 18900 TIP 438397 21263 6064451 2024-02-25 16:56:34.192 2024-02-25 16:56:34.192 6900 FEE 438325 20623 6064452 2024-02-25 16:56:34.192 2024-02-25 16:56:34.192 62100 TIP 438325 886 6064499 2024-02-25 17:03:19.862 2024-02-25 17:03:19.862 4000 FEE 438438 19117 6064500 2024-02-25 17:03:19.862 2024-02-25 17:03:19.862 36000 TIP 438438 14255 6064505 2024-02-25 17:05:06.807 2024-02-25 17:05:06.807 1000 FEE 438443 20657 6064506 2024-02-25 17:05:06.807 2024-02-25 17:05:06.807 9000 TIP 438443 20377 6064509 2024-02-25 17:05:09.815 2024-02-25 17:05:09.815 1000 FEE 438444 17237 6064526 2024-02-25 17:06:11.995 2024-02-25 17:06:11.995 1000 FEE 438446 12049 6064569 2024-02-25 17:14:31.73 2024-02-25 17:14:31.73 10100 FEE 438078 20849 6064570 2024-02-25 17:14:31.73 2024-02-25 17:14:31.73 90900 TIP 438078 20969 6064661 2024-02-25 17:24:49.517 2024-02-25 17:24:49.517 1000 FEE 438463 11942 6064690 2024-02-25 17:30:03.765 2024-02-25 17:30:03.765 4000 FEE 438468 18313 6064691 2024-02-25 17:30:03.765 2024-02-25 17:30:03.765 36000 TIP 438468 4570 6064699 2024-02-25 17:30:52.236 2024-02-25 17:30:52.236 4000 FEE 438468 15367 6064700 2024-02-25 17:30:52.236 2024-02-25 17:30:52.236 36000 TIP 438468 687 6064769 2024-02-25 17:39:20.236 2024-02-25 17:39:20.236 2100 FEE 438416 19637 6064770 2024-02-25 17:39:20.236 2024-02-25 17:39:20.236 18900 TIP 438416 2681 6064777 2024-02-25 17:40:08.409 2024-02-25 17:40:08.409 0 FEE 438480 17673 6064790 2024-02-25 17:40:35.501 2024-02-25 17:40:35.501 900 FEE 438444 19332 6064791 2024-02-25 17:40:35.501 2024-02-25 17:40:35.501 8100 TIP 438444 21254 6064814 2024-02-25 17:42:42.746 2024-02-25 17:42:42.746 210000 FEE 438486 2519 6064818 2024-02-25 17:43:03.073 2024-02-25 17:43:03.073 21000 FEE 438487 12422 6064853 2024-02-25 17:45:53.943 2024-02-25 17:45:53.943 1000 FEE 438487 1142 6064854 2024-02-25 17:45:53.943 2024-02-25 17:45:53.943 9000 TIP 438487 10280 6064875 2024-02-25 17:46:33.624 2024-02-25 17:46:33.624 1000 FEE 438487 673 6064876 2024-02-25 17:46:33.624 2024-02-25 17:46:33.624 9000 TIP 438487 8535 6064879 2024-02-25 17:46:35.217 2024-02-25 17:46:35.217 1000 FEE 438487 19031 6064880 2024-02-25 17:46:35.217 2024-02-25 17:46:35.217 9000 TIP 438487 5449 6064883 2024-02-25 17:46:36.683 2024-02-25 17:46:36.683 1000 FEE 438487 1221 6064884 2024-02-25 17:46:36.683 2024-02-25 17:46:36.683 9000 TIP 438487 18426 6064891 2024-02-25 17:47:46.091 2024-02-25 17:47:46.091 0 FEE 438488 19570 6064893 2024-02-25 17:48:14.718 2024-02-25 17:48:14.718 100 FEE 438325 937 6064894 2024-02-25 17:48:14.718 2024-02-25 17:48:14.718 900 TIP 438325 6594 6064905 2024-02-25 17:49:19.796 2024-02-25 17:49:19.796 100 FEE 438389 18923 6064906 2024-02-25 17:49:19.796 2024-02-25 17:49:19.796 900 TIP 438389 5761 6064917 2024-02-25 17:49:34.728 2024-02-25 17:49:34.728 0 FEE 438488 1817 6064926 2024-02-25 17:50:17.509 2024-02-25 17:50:17.509 1000 FEE 438487 1712 6064927 2024-02-25 17:50:17.509 2024-02-25 17:50:17.509 9000 TIP 438487 21207 6064945 2024-02-25 17:50:37.879 2024-02-25 17:50:37.879 1000 FEE 438500 6687 6064957 2024-02-25 17:52:23.36 2024-02-25 17:52:23.36 1000 FEE 437723 965 6064958 2024-02-25 17:52:23.36 2024-02-25 17:52:23.36 9000 TIP 437723 4027 6064963 2024-02-25 17:52:29.475 2024-02-25 17:52:29.475 2100 FEE 438487 14657 6064964 2024-02-25 17:52:29.475 2024-02-25 17:52:29.475 18900 TIP 438487 688 6064968 2024-02-25 17:52:48.409 2024-02-25 17:52:48.409 1000 FEE 438503 10849 6064969 2024-02-25 17:52:58.485 2024-02-25 17:52:58.485 11000 FEE 438504 2780 6064971 2024-02-25 17:53:22.622 2024-02-25 17:53:22.622 1000 POLL 438325 12769 6064993 2024-02-25 17:55:23.544 2024-02-25 17:55:23.544 9000 FEE 438505 18731 6064994 2024-02-25 17:55:23.544 2024-02-25 17:55:23.544 81000 TIP 438505 21155 6065006 2024-02-25 17:56:54.802 2024-02-25 17:56:54.802 1000 FEE 438075 2232 6065007 2024-02-25 17:56:54.802 2024-02-25 17:56:54.802 9000 TIP 438075 19284 6065026 2024-02-25 17:57:53.376 2024-02-25 17:57:53.376 0 FEE 438507 18344 6065050 2024-02-25 17:58:40.639 2024-02-25 17:58:40.639 1000 FEE 438414 18446 6065051 2024-02-25 17:58:40.639 2024-02-25 17:58:40.639 9000 TIP 438414 20129 6065084 2024-02-25 18:02:52.641 2024-02-25 18:02:52.641 0 FEE 438507 9334 6065104 2024-02-25 18:03:59.207 2024-02-25 18:03:59.207 1000 FEE 438514 9695 6065105 2024-02-25 18:03:59.207 2024-02-25 18:03:59.207 9000 TIP 438514 17082 6065137 2024-02-25 18:08:27.795 2024-02-25 18:08:27.795 100 FEE 438065 1401 6065138 2024-02-25 18:08:27.795 2024-02-25 18:08:27.795 900 TIP 438065 761 6065158 2024-02-25 18:11:27.196 2024-02-25 18:11:27.196 1000 FEE 438416 658 6065159 2024-02-25 18:11:27.196 2024-02-25 18:11:27.196 9000 TIP 438416 5703 6065165 2024-02-25 18:12:08.409 2024-02-25 18:12:08.409 1000 FEE 438345 21040 6065166 2024-02-25 18:12:08.409 2024-02-25 18:12:08.409 9000 TIP 438345 15858 6065169 2024-02-25 18:12:50.103 2024-02-25 18:12:50.103 1000 FEE 438209 6191 6065170 2024-02-25 18:12:50.103 2024-02-25 18:12:50.103 9000 TIP 438209 21571 6065215 2024-02-25 18:13:31.638 2024-02-25 18:13:31.638 0 FEE 438527 18452 6065252 2024-02-25 18:19:35.967 2024-02-25 18:19:35.967 1000 FEE 437616 16230 6065253 2024-02-25 18:19:35.967 2024-02-25 18:19:35.967 9000 TIP 437616 9334 6065254 2024-02-25 18:19:36.139 2024-02-25 18:19:36.139 1000 FEE 437616 5661 6065255 2024-02-25 18:19:36.139 2024-02-25 18:19:36.139 9000 TIP 437616 21216 6065265 2024-02-25 18:20:04.666 2024-02-25 18:20:04.666 10000 FEE 438537 5703 6065331 2024-02-25 18:24:41.545 2024-02-25 18:24:41.545 500 FEE 438073 17707 6065332 2024-02-25 18:24:41.545 2024-02-25 18:24:41.545 4500 TIP 438073 19535 6065340 2024-02-25 18:25:13.202 2024-02-25 18:25:13.202 1000 FEE 438543 18008 6064487 2024-02-25 16:59:43.964 2024-02-25 16:59:43.964 1000 FEE 438440 17690 6064503 2024-02-25 17:04:41.563 2024-02-25 17:04:41.563 1000 POLL 438325 19096 6064512 2024-02-25 17:05:28.342 2024-02-25 17:05:28.342 900 FEE 438317 20254 6064513 2024-02-25 17:05:28.342 2024-02-25 17:05:28.342 8100 TIP 438317 13198 6064516 2024-02-25 17:05:31.449 2024-02-25 17:05:31.449 1000 FEE 438445 5694 6064521 2024-02-25 17:05:47.964 2024-02-25 17:05:47.964 100 FEE 438379 5128 6064522 2024-02-25 17:05:47.964 2024-02-25 17:05:47.964 900 TIP 438379 19843 6064533 2024-02-25 17:06:35.376 2024-02-25 17:06:35.376 2500 FEE 438427 18932 6064534 2024-02-25 17:06:35.376 2024-02-25 17:06:35.376 22500 TIP 438427 17217 6064537 2024-02-25 17:07:09.009 2024-02-25 17:07:09.009 0 FEE 438445 21603 6064555 2024-02-25 17:12:00.78 2024-02-25 17:12:00.78 100000 FEE 437218 17116 6064556 2024-02-25 17:12:00.78 2024-02-25 17:12:00.78 900000 TIP 437218 641 6064563 2024-02-25 17:13:58.021 2024-02-25 17:13:58.021 1000 POLL 438414 20254 6064579 2024-02-25 17:16:14.831 2024-02-25 17:16:14.831 4000 FEE 438395 12422 6064580 2024-02-25 17:16:14.831 2024-02-25 17:16:14.831 36000 TIP 438395 9026 6064589 2024-02-25 17:19:34.885 2024-02-25 17:19:34.885 0 FEE 438453 16747 6064596 2024-02-25 17:21:03.887 2024-02-25 17:21:03.887 1000 POLL 438325 21427 6064619 2024-02-25 17:22:35.572 2024-02-25 17:22:35.572 100 FEE 438220 19576 6064620 2024-02-25 17:22:35.572 2024-02-25 17:22:35.572 900 TIP 438220 18528 6064625 2024-02-25 17:22:35.879 2024-02-25 17:22:35.879 100 FEE 436151 2614 6064626 2024-02-25 17:22:35.879 2024-02-25 17:22:35.879 900 TIP 436151 2519 6064639 2024-02-25 17:24:19.909 2024-02-25 17:24:19.909 0 FEE 438460 5173 6064641 2024-02-25 17:24:25.448 2024-02-25 17:24:25.448 10100 FEE 438065 13169 6064642 2024-02-25 17:24:25.448 2024-02-25 17:24:25.448 90900 TIP 438065 15833 6064645 2024-02-25 17:24:30.429 2024-02-25 17:24:30.429 100 FEE 438352 3353 6064646 2024-02-25 17:24:30.429 2024-02-25 17:24:30.429 900 TIP 438352 21540 6064651 2024-02-25 17:24:36.395 2024-02-25 17:24:36.395 2100 FEE 379804 7877 6064652 2024-02-25 17:24:36.395 2024-02-25 17:24:36.395 18900 TIP 379804 14552 6064657 2024-02-25 17:24:38.745 2024-02-25 17:24:38.745 2100 FEE 379804 11145 6064658 2024-02-25 17:24:38.745 2024-02-25 17:24:38.745 18900 TIP 379804 9758 6064672 2024-02-25 17:26:57.334 2024-02-25 17:26:57.334 1000 FEE 438466 19292 6064693 2024-02-25 17:30:09.007 2024-02-25 17:30:09.007 4000 FEE 438465 7847 6064694 2024-02-25 17:30:09.007 2024-02-25 17:30:09.007 36000 TIP 438465 19929 6064708 2024-02-25 17:31:52.864 2024-02-25 17:31:52.864 1000 POLL 438202 15833 6064719 2024-02-25 17:32:06.572 2024-02-25 17:32:06.572 100 FEE 438451 10608 6064720 2024-02-25 17:32:06.572 2024-02-25 17:32:06.572 900 TIP 438451 18865 6064731 2024-02-25 17:34:22.907 2024-02-25 17:34:22.907 100 FEE 438201 8095 6064732 2024-02-25 17:34:22.907 2024-02-25 17:34:22.907 900 TIP 438201 20306 6064739 2024-02-25 17:34:59.946 2024-02-25 17:34:59.946 1000 FEE 438438 13927 6064740 2024-02-25 17:34:59.946 2024-02-25 17:34:59.946 9000 TIP 438438 13931 6064754 2024-02-25 17:37:47.254 2024-02-25 17:37:47.254 10000 FEE 438479 20642 6064784 2024-02-25 17:40:30.545 2024-02-25 17:40:30.545 4000 FEE 438480 7760 6064785 2024-02-25 17:40:30.545 2024-02-25 17:40:30.545 36000 TIP 438480 5694 6064796 2024-02-25 17:40:42.19 2024-02-25 17:40:42.19 900 FEE 438397 2390 6064797 2024-02-25 17:40:42.19 2024-02-25 17:40:42.19 8100 TIP 438397 12289 6064803 2024-02-25 17:41:37.104 2024-02-25 17:41:37.104 1000 POLL 438202 2711 6064812 2024-02-25 17:42:40.622 2024-02-25 17:42:40.622 100 FEE 438414 20133 6064813 2024-02-25 17:42:40.622 2024-02-25 17:42:40.622 900 TIP 438414 18241 6064824 2024-02-25 17:44:30.918 2024-02-25 17:44:30.918 1000 FEE 438488 20424 6064847 2024-02-25 17:45:23.748 2024-02-25 17:45:23.748 1000 FEE 438490 12261 6064872 2024-02-25 17:46:26.825 2024-02-25 17:46:26.825 1000 POLL 438325 11967 6064897 2024-02-25 17:48:32.413 2024-02-25 17:48:32.413 100 FEE 438209 15806 6064898 2024-02-25 17:48:32.413 2024-02-25 17:48:32.413 900 TIP 438209 5017 6064901 2024-02-25 17:49:04.815 2024-02-25 17:49:04.815 0 FEE 438488 10934 6064909 2024-02-25 17:49:21.707 2024-02-25 17:49:21.707 4000 FEE 438389 20376 6064910 2024-02-25 17:49:21.707 2024-02-25 17:49:21.707 36000 TIP 438389 2773 6064932 2024-02-25 17:50:19.296 2024-02-25 17:50:19.296 1000 FEE 438487 13378 6064933 2024-02-25 17:50:19.296 2024-02-25 17:50:19.296 9000 TIP 438487 21026 6064940 2024-02-25 17:50:24.606 2024-02-25 17:50:24.606 1000 FEE 438499 13143 6065009 2024-02-25 17:57:09.499 2024-02-25 17:57:09.499 1000 FEE 438069 661 6065010 2024-02-25 17:57:09.499 2024-02-25 17:57:09.499 9000 TIP 438069 9345 6065016 2024-02-25 17:57:44.749 2024-02-25 17:57:44.749 2100 FEE 438507 1472 6065017 2024-02-25 17:57:44.749 2024-02-25 17:57:44.749 18900 TIP 438507 5173 6065018 2024-02-25 17:57:44.949 2024-02-25 17:57:44.949 2100 FEE 438507 19289 6065019 2024-02-25 17:57:44.949 2024-02-25 17:57:44.949 18900 TIP 438507 16942 6065046 2024-02-25 17:58:36.858 2024-02-25 17:58:36.858 1000 FEE 438405 17722 6064497 2024-02-25 17:03:03.911 2024-02-25 17:03:03.911 1000 STREAM 141924 10283 6064502 2024-02-25 17:04:03.929 2024-02-25 17:04:03.929 1000 STREAM 141924 17494 6064504 2024-02-25 17:05:03.956 2024-02-25 17:05:03.956 1000 STREAM 141924 15941 6064523 2024-02-25 17:06:03.942 2024-02-25 17:06:03.942 1000 STREAM 141924 19282 6124374 2024-03-01 12:28:53.261 2024-03-01 12:28:53.261 18900 TIP 444809 1425 6124381 2024-03-01 12:28:57.498 2024-03-01 12:28:57.498 2100 FEE 444918 21437 6124382 2024-03-01 12:28:57.498 2024-03-01 12:28:57.498 18900 TIP 444918 10016 6124415 2024-03-01 12:31:11.013 2024-03-01 12:31:11.013 1000 FEE 444922 3717 6124426 2024-03-01 12:32:00.778 2024-03-01 12:32:00.778 2100 FEE 444855 5806 6124427 2024-03-01 12:32:00.778 2024-03-01 12:32:00.778 18900 TIP 444855 635 6124449 2024-03-01 12:34:28.433 2024-03-01 12:34:28.433 1700 FEE 444911 21242 6124450 2024-03-01 12:34:28.433 2024-03-01 12:34:28.433 15300 TIP 444911 14280 6124468 2024-03-01 12:37:28.121 2024-03-01 12:37:28.121 100 FEE 444910 2285 6124469 2024-03-01 12:37:28.121 2024-03-01 12:37:28.121 900 TIP 444910 19841 6124494 2024-03-01 12:39:58.321 2024-03-01 12:39:58.321 400 FEE 444771 1723 6124495 2024-03-01 12:39:58.321 2024-03-01 12:39:58.321 3600 TIP 444771 19785 6124511 2024-03-01 12:41:43.724 2024-03-01 12:41:43.724 10100 FEE 444842 18735 6124512 2024-03-01 12:41:43.724 2024-03-01 12:41:43.724 90900 TIP 444842 19809 6124523 2024-03-01 12:43:47.755 2024-03-01 12:43:47.755 6900 FEE 444874 19243 6124524 2024-03-01 12:43:47.755 2024-03-01 12:43:47.755 62100 TIP 444874 5173 6124533 2024-03-01 12:44:13.564 2024-03-01 12:44:13.564 100 FEE 444874 880 6124534 2024-03-01 12:44:13.564 2024-03-01 12:44:13.564 900 TIP 444874 21612 6124535 2024-03-01 12:44:15.326 2024-03-01 12:44:15.326 2100 FEE 444926 19507 6124536 2024-03-01 12:44:15.326 2024-03-01 12:44:15.326 18900 TIP 444926 18177 6124539 2024-03-01 12:44:19.361 2024-03-01 12:44:19.361 100 FEE 444921 2460 6124540 2024-03-01 12:44:19.361 2024-03-01 12:44:19.361 900 TIP 444921 12268 6124559 2024-03-01 12:46:23.473 2024-03-01 12:46:23.473 6900 FEE 444755 8535 6124560 2024-03-01 12:46:23.473 2024-03-01 12:46:23.473 62100 TIP 444755 17517 6124577 2024-03-01 12:48:21.275 2024-03-01 12:48:21.275 1000 FEE 444936 19976 6124578 2024-03-01 12:48:40.931 2024-03-01 12:48:40.931 1000 FEE 444874 12057 6124579 2024-03-01 12:48:40.931 2024-03-01 12:48:40.931 9000 TIP 444874 18828 6124580 2024-03-01 12:48:56.263 2024-03-01 12:48:56.263 1000 FEE 444935 1320 6124581 2024-03-01 12:48:56.263 2024-03-01 12:48:56.263 9000 TIP 444935 8998 6124604 2024-03-01 12:52:21.438 2024-03-01 12:52:21.438 1000 FEE 444916 17639 6124605 2024-03-01 12:52:21.438 2024-03-01 12:52:21.438 9000 TIP 444916 9183 6124622 2024-03-01 12:52:25.317 2024-03-01 12:52:25.317 1000 FEE 444866 633 6124623 2024-03-01 12:52:25.317 2024-03-01 12:52:25.317 9000 TIP 444866 20581 6124635 2024-03-01 12:53:09.503 2024-03-01 12:53:09.503 2000 FEE 444929 11153 6124636 2024-03-01 12:53:09.503 2024-03-01 12:53:09.503 18000 TIP 444929 1319 6124637 2024-03-01 12:53:10.043 2024-03-01 12:53:10.043 1000 FEE 444905 2514 6124638 2024-03-01 12:53:10.043 2024-03-01 12:53:10.043 9000 TIP 444905 621 6124663 2024-03-01 12:54:02.049 2024-03-01 12:54:02.049 1000 FEE 444937 9347 6124698 2024-03-01 13:00:14.89 2024-03-01 13:00:14.89 1000 FEE 444945 19506 6124702 2024-03-01 13:00:52.849 2024-03-01 13:00:52.849 3100 FEE 444896 10728 6124703 2024-03-01 13:00:52.849 2024-03-01 13:00:52.849 27900 TIP 444896 5904 6124725 2024-03-01 13:04:20.994 2024-03-01 13:04:20.994 900 FEE 444911 3709 6124726 2024-03-01 13:04:20.994 2024-03-01 13:04:20.994 8100 TIP 444911 15588 6124733 2024-03-01 13:04:34.751 2024-03-01 13:04:34.751 9000 FEE 444695 10063 6124734 2024-03-01 13:04:34.751 2024-03-01 13:04:34.751 81000 TIP 444695 659 6124740 2024-03-01 13:05:15.67 2024-03-01 13:05:15.67 1000 FEE 444951 19981 6124759 2024-03-01 13:05:48.533 2024-03-01 13:05:48.533 1000 FEE 444561 19622 6124760 2024-03-01 13:05:48.533 2024-03-01 13:05:48.533 9000 TIP 444561 3371 6124785 2024-03-01 13:07:36.031 2024-03-01 13:07:36.031 7600 FEE 444952 876 6124786 2024-03-01 13:07:36.031 2024-03-01 13:07:36.031 68400 TIP 444952 16717 6124789 2024-03-01 13:07:41.906 2024-03-01 13:07:41.906 900 FEE 444647 8242 6124790 2024-03-01 13:07:41.906 2024-03-01 13:07:41.906 8100 TIP 444647 721 6124795 2024-03-01 13:08:58.945 2024-03-01 13:08:58.945 900 FEE 444652 21036 6124796 2024-03-01 13:08:58.945 2024-03-01 13:08:58.945 8100 TIP 444652 10273 6124804 2024-03-01 13:09:24.58 2024-03-01 13:09:24.58 3100 FEE 444930 8074 6124805 2024-03-01 13:09:24.58 2024-03-01 13:09:24.58 27900 TIP 444930 4259 6124820 2024-03-01 13:10:52.505 2024-03-01 13:10:52.505 1000 FEE 444956 20220 6124844 2024-03-01 13:12:48.377 2024-03-01 13:12:48.377 900 FEE 444715 20811 6124845 2024-03-01 13:12:48.377 2024-03-01 13:12:48.377 8100 TIP 444715 1960 6064558 2024-02-25 17:13:04.704 2024-02-25 17:13:04.704 1000 STREAM 141924 21585 6064577 2024-02-25 17:15:04.905 2024-02-25 17:15:04.905 1000 STREAM 141924 20564 6064587 2024-02-25 17:19:04.931 2024-02-25 17:19:04.931 1000 STREAM 141924 20539 6064591 2024-02-25 17:20:04.986 2024-02-25 17:20:04.986 1000 STREAM 141924 8535 6064598 2024-02-25 17:21:04.957 2024-02-25 17:21:04.957 1000 STREAM 141924 18865 6064617 2024-02-25 17:22:04.964 2024-02-25 17:22:04.964 1000 STREAM 141924 19189 6064637 2024-02-25 17:24:04.982 2024-02-25 17:24:04.982 1000 STREAM 141924 21469 6064666 2024-02-25 17:25:04.983 2024-02-25 17:25:04.983 1000 STREAM 141924 1489 6064677 2024-02-25 17:28:05.011 2024-02-25 17:28:05.011 1000 STREAM 141924 11670 6064692 2024-02-25 17:30:05.091 2024-02-25 17:30:05.091 1000 STREAM 141924 17183 6064701 2024-02-25 17:31:05.027 2024-02-25 17:31:05.027 1000 STREAM 141924 6148 6064718 2024-02-25 17:32:05.035 2024-02-25 17:32:05.035 1000 STREAM 141924 18735 6064741 2024-02-25 17:35:05.105 2024-02-25 17:35:05.105 1000 STREAM 141924 3304 6064748 2024-02-25 17:36:05.115 2024-02-25 17:36:05.115 1000 STREAM 141924 4415 6064755 2024-02-25 17:38:05.129 2024-02-25 17:38:05.129 1000 STREAM 141924 1650 6064763 2024-02-25 17:39:05.144 2024-02-25 17:39:05.144 1000 STREAM 141924 1465 6064776 2024-02-25 17:40:05.217 2024-02-25 17:40:05.217 1000 STREAM 141924 20168 6064804 2024-02-25 17:42:05.151 2024-02-25 17:42:05.151 1000 STREAM 141924 20816 6064826 2024-02-25 17:45:05.209 2024-02-25 17:45:05.209 1000 STREAM 141924 3461 6064889 2024-02-25 17:47:05.215 2024-02-25 17:47:05.215 1000 STREAM 141924 9335 6064892 2024-02-25 17:48:05.224 2024-02-25 17:48:05.224 1000 STREAM 141924 18528 6064948 2024-02-25 17:51:03.427 2024-02-25 17:51:03.427 1000 STREAM 141924 19943 6064970 2024-02-25 17:53:05.438 2024-02-25 17:53:05.438 1000 STREAM 141924 12768 6065057 2024-02-25 17:59:03.473 2024-02-25 17:59:03.473 1000 STREAM 141924 8380 6065272 2024-02-25 18:21:04.375 2024-02-25 18:21:04.375 1000 STREAM 141924 20687 6065478 2024-02-25 18:41:06.142 2024-02-25 18:41:06.142 1000 STREAM 141924 19511 6065485 2024-02-25 18:42:06.146 2024-02-25 18:42:06.146 1000 STREAM 141924 19243 6065493 2024-02-25 18:46:06.168 2024-02-25 18:46:06.168 1000 STREAM 141924 18865 6124408 2024-03-01 12:29:52.593 2024-03-01 12:29:52.593 0 FEE 444911 12768 6124412 2024-03-01 12:30:26.003 2024-03-01 12:30:26.003 0 FEE 444911 679 6124417 2024-03-01 12:31:35.398 2024-03-01 12:31:35.398 3300 FEE 444904 16571 6124418 2024-03-01 12:31:35.398 2024-03-01 12:31:35.398 29700 TIP 444904 3642 6124442 2024-03-01 12:33:22.354 2024-03-01 12:33:22.354 100 FEE 444739 732 6124443 2024-03-01 12:33:22.354 2024-03-01 12:33:22.354 900 TIP 444739 7891 6124447 2024-03-01 12:34:24.749 2024-03-01 12:34:24.749 5000 FEE 444924 20577 6124448 2024-03-01 12:34:24.749 2024-03-01 12:34:24.749 45000 TIP 444924 9906 6124490 2024-03-01 12:39:58.026 2024-03-01 12:39:58.026 1000 FEE 434723 13854 6124491 2024-03-01 12:39:58.026 2024-03-01 12:39:58.026 9000 TIP 434723 760 6124496 2024-03-01 12:39:58.573 2024-03-01 12:39:58.573 400 FEE 444771 5173 6124497 2024-03-01 12:39:58.573 2024-03-01 12:39:58.573 3600 TIP 444771 18321 6124502 2024-03-01 12:39:59.045 2024-03-01 12:39:59.045 200 FEE 444771 2232 6124503 2024-03-01 12:39:59.045 2024-03-01 12:39:59.045 1800 TIP 444771 5757 6124504 2024-03-01 12:39:59.294 2024-03-01 12:39:59.294 200 FEE 444771 5759 6124505 2024-03-01 12:39:59.294 2024-03-01 12:39:59.294 1800 TIP 444771 19138 6124510 2024-03-01 12:41:32.903 2024-03-01 12:41:32.903 21000 DONT_LIKE_THIS 444755 10469 6124520 2024-03-01 12:42:57.397 2024-03-01 12:42:57.397 0 FEE 444929 20059 6124525 2024-03-01 12:43:49.192 2024-03-01 12:43:49.192 200 FEE 444930 2652 6124526 2024-03-01 12:43:49.192 2024-03-01 12:43:49.192 1800 TIP 444930 2774 6124569 2024-03-01 12:46:36.639 2024-03-01 12:46:36.639 6900 FEE 444852 18539 6124570 2024-03-01 12:46:36.639 2024-03-01 12:46:36.639 62100 TIP 444852 19142 6124573 2024-03-01 12:46:55.406 2024-03-01 12:46:55.406 1000 FEE 444934 20663 6124596 2024-03-01 12:52:18.262 2024-03-01 12:52:18.262 1000 FEE 444842 19863 6124597 2024-03-01 12:52:18.262 2024-03-01 12:52:18.262 9000 TIP 444842 13575 6124600 2024-03-01 12:52:21.125 2024-03-01 12:52:21.125 1000 FEE 444916 13361 6124601 2024-03-01 12:52:21.125 2024-03-01 12:52:21.125 9000 TIP 444916 6741 6124632 2024-03-01 12:52:58.997 2024-03-01 12:52:58.997 1000 FEE 444931 21155 6124633 2024-03-01 12:52:58.997 2024-03-01 12:52:58.997 9000 TIP 444931 11328 6124653 2024-03-01 12:53:22.01 2024-03-01 12:53:22.01 1000 FEE 444874 4819 6124654 2024-03-01 12:53:22.01 2024-03-01 12:53:22.01 9000 TIP 444874 6164 6124683 2024-03-01 12:57:22.752 2024-03-01 12:57:22.752 7600 FEE 444619 18101 6124684 2024-03-01 12:57:22.752 2024-03-01 12:57:22.752 68400 TIP 444619 20624 6124685 2024-03-01 12:57:32.969 2024-03-01 12:57:32.969 1000 FEE 444941 746 6124695 2024-03-01 12:59:56.011 2024-03-01 12:59:56.011 10000 FEE 444937 16276 6124696 2024-03-01 12:59:56.011 2024-03-01 12:59:56.011 90000 TIP 444937 18454 6124699 2024-03-01 13:00:15.06 2024-03-01 13:00:15.06 1000 FEE 444946 19309 6124700 2024-03-01 13:00:19.088 2024-03-01 13:00:19.088 4200 FEE 444939 20964 6124701 2024-03-01 13:00:19.088 2024-03-01 13:00:19.088 37800 TIP 444939 18995 6124707 2024-03-01 13:02:38.732 2024-03-01 13:02:38.732 7600 FEE 444946 11898 6124708 2024-03-01 13:02:38.732 2024-03-01 13:02:38.732 68400 TIP 444946 9078 6124711 2024-03-01 13:03:14.466 2024-03-01 13:03:14.466 100 FEE 444802 9177 6124712 2024-03-01 13:03:14.466 2024-03-01 13:03:14.466 900 TIP 444802 2156 6124713 2024-03-01 13:03:14.631 2024-03-01 13:03:14.631 900 FEE 444802 13517 6124714 2024-03-01 13:03:14.631 2024-03-01 13:03:14.631 8100 TIP 444802 18336 6124727 2024-03-01 13:04:24.412 2024-03-01 13:04:24.412 9000 FEE 444911 17570 6064566 2024-02-25 17:14:04.909 2024-02-25 17:14:04.909 1000 STREAM 141924 17183 6064578 2024-02-25 17:16:04.92 2024-02-25 17:16:04.92 1000 STREAM 141924 20683 6064583 2024-02-25 17:17:05.064 2024-02-25 17:17:05.064 1000 STREAM 141924 20596 6064585 2024-02-25 17:18:04.942 2024-02-25 17:18:04.942 1000 STREAM 141924 15351 6064630 2024-02-25 17:23:04.961 2024-02-25 17:23:04.961 1000 STREAM 141924 18068 6064671 2024-02-25 17:26:04.982 2024-02-25 17:26:04.982 1000 STREAM 141924 21503 6064673 2024-02-25 17:27:04.986 2024-02-25 17:27:04.986 1000 STREAM 141924 4763 6064680 2024-02-25 17:29:05.026 2024-02-25 17:29:05.026 1000 STREAM 141924 4459 6064726 2024-02-25 17:33:05.092 2024-02-25 17:33:05.092 1000 STREAM 141924 1626 6064727 2024-02-25 17:34:05.088 2024-02-25 17:34:05.088 1000 STREAM 141924 917 6064753 2024-02-25 17:37:05.124 2024-02-25 17:37:05.124 1000 STREAM 141924 21012 6064798 2024-02-25 17:41:05.158 2024-02-25 17:41:05.158 1000 STREAM 141924 10270 6064819 2024-02-25 17:43:05.162 2024-02-25 17:43:05.162 1000 STREAM 141924 19553 6064866 2024-02-25 17:46:05.209 2024-02-25 17:46:05.209 1000 STREAM 141924 21148 6064902 2024-02-25 17:49:05.24 2024-02-25 17:49:05.24 1000 STREAM 141924 19839 6064924 2024-02-25 17:50:05.446 2024-02-25 17:50:05.446 1000 STREAM 141924 19905 6064950 2024-02-25 17:52:05.417 2024-02-25 17:52:05.417 1000 STREAM 141924 7960 6064976 2024-02-25 17:54:03.427 2024-02-25 17:54:03.427 1000 STREAM 141924 12744 6064986 2024-02-25 17:55:05.446 2024-02-25 17:55:05.446 1000 STREAM 141924 1605 6065000 2024-02-25 17:56:05.425 2024-02-25 17:56:05.425 1000 STREAM 141924 1136 6124436 2024-03-01 12:32:17.855 2024-03-01 12:32:17.855 189000 TIP 444845 21012 6124438 2024-03-01 12:33:05.657 2024-03-01 12:33:05.657 1000 FEE 444924 19281 6124440 2024-03-01 12:33:05.839 2024-03-01 12:33:05.839 1000 FEE 444925 2780 6124451 2024-03-01 12:34:28.616 2024-03-01 12:34:28.616 1700 FEE 444911 16948 6124452 2024-03-01 12:34:28.616 2024-03-01 12:34:28.616 15300 TIP 444911 20922 6124460 2024-03-01 12:36:19.26 2024-03-01 12:36:19.26 1000 FEE 444927 17148 6124463 2024-03-01 12:37:00.967 2024-03-01 12:37:00.967 100 FEE 444921 19924 6124464 2024-03-01 12:37:00.967 2024-03-01 12:37:00.967 900 TIP 444921 15100 6124478 2024-03-01 12:38:38.346 2024-03-01 12:38:38.346 100 FEE 444914 6003 6124479 2024-03-01 12:38:38.346 2024-03-01 12:38:38.346 900 TIP 444914 20924 6064581 2024-02-25 17:16:28.213 2024-02-25 17:16:28.213 100000 FEE 438451 20454 6064611 2024-02-25 17:21:38.378 2024-02-25 17:21:38.378 100 FEE 438452 16571 6064612 2024-02-25 17:21:38.378 2024-02-25 17:21:38.378 900 TIP 438452 1173 6064615 2024-02-25 17:21:57.333 2024-02-25 17:21:57.333 100 FEE 438451 11885 6064616 2024-02-25 17:21:57.333 2024-02-25 17:21:57.333 900 TIP 438451 18016 6064629 2024-02-25 17:22:50.3 2024-02-25 17:22:50.3 1000 FEE 438458 19864 6064634 2024-02-25 17:23:44.667 2024-02-25 17:23:44.667 2500 FEE 438443 20452 6064635 2024-02-25 17:23:44.667 2024-02-25 17:23:44.667 22500 TIP 438443 21014 6064683 2024-02-25 17:29:37.513 2024-02-25 17:29:37.513 5000 FEE 438065 652 6064684 2024-02-25 17:29:37.513 2024-02-25 17:29:37.513 45000 TIP 438065 21062 6064685 2024-02-25 17:29:56.33 2024-02-25 17:29:56.33 1000 FEE 438470 21164 6064688 2024-02-25 17:29:59.057 2024-02-25 17:29:59.057 2700 FEE 438467 19263 6064593 2024-02-25 17:20:56.151 2024-02-25 17:20:56.151 100 FEE 438390 9290 6064594 2024-02-25 17:20:56.151 2024-02-25 17:20:56.151 900 TIP 438390 989 6064609 2024-02-25 17:21:22.569 2024-02-25 17:21:22.569 9000 FEE 438416 2709 6064610 2024-02-25 17:21:22.569 2024-02-25 17:21:22.569 81000 TIP 438416 16665 6064623 2024-02-25 17:22:35.738 2024-02-25 17:22:35.738 900 FEE 438220 2328 6064624 2024-02-25 17:22:35.738 2024-02-25 17:22:35.738 8100 TIP 438220 18392 6064655 2024-02-25 17:24:37.761 2024-02-25 17:24:37.761 2100 FEE 379804 913 6064656 2024-02-25 17:24:37.761 2024-02-25 17:24:37.761 18900 TIP 379804 20454 6064659 2024-02-25 17:24:40.204 2024-02-25 17:24:40.204 2100 FEE 379804 2460 6064660 2024-02-25 17:24:40.204 2024-02-25 17:24:40.204 18900 TIP 379804 19199 6064662 2024-02-25 17:24:50.272 2024-02-25 17:24:50.272 1000 FEE 438464 18663 6064663 2024-02-25 17:25:01.965 2024-02-25 17:25:01.965 4000 FEE 438451 1428 6064664 2024-02-25 17:25:01.965 2024-02-25 17:25:01.965 36000 TIP 438451 964 6064674 2024-02-25 17:27:30.783 2024-02-25 17:27:30.783 1000 POLL 438414 14271 6064681 2024-02-25 17:29:09.924 2024-02-25 17:29:09.924 1000 FEE 438469 9494 6064686 2024-02-25 17:29:58.208 2024-02-25 17:29:58.208 12800 FEE 438416 964 6064687 2024-02-25 17:29:58.208 2024-02-25 17:29:58.208 115200 TIP 438416 14225 6064695 2024-02-25 17:30:16.439 2024-02-25 17:30:16.439 1000 FEE 438471 721 6064706 2024-02-25 17:31:40.68 2024-02-25 17:31:40.68 2100 FEE 438386 8945 6064707 2024-02-25 17:31:40.68 2024-02-25 17:31:40.68 18900 TIP 438386 11516 6064711 2024-02-25 17:31:56.071 2024-02-25 17:31:56.071 2100 FEE 438356 17690 6064712 2024-02-25 17:31:56.071 2024-02-25 17:31:56.071 18900 TIP 438356 6602 6064729 2024-02-25 17:34:17.543 2024-02-25 17:34:17.543 1100 FEE 259937 16284 6064730 2024-02-25 17:34:17.543 2024-02-25 17:34:17.543 9900 TIP 259937 2775 6064766 2024-02-25 17:39:11.56 2024-02-25 17:39:11.56 1000 FEE 438484 692 6064768 2024-02-25 17:39:12.559 2024-02-25 17:39:12.559 1000 POLL 438325 15703 6064771 2024-02-25 17:39:23.896 2024-02-25 17:39:23.896 10000 FEE 438405 9242 6064772 2024-02-25 17:39:23.896 2024-02-25 17:39:23.896 90000 TIP 438405 18178 6064810 2024-02-25 17:42:35.559 2024-02-25 17:42:35.559 100 FEE 438405 21458 6064811 2024-02-25 17:42:35.559 2024-02-25 17:42:35.559 900 TIP 438405 10519 6064841 2024-02-25 17:45:16.397 2024-02-25 17:45:16.397 1000 FEE 438487 17275 6064842 2024-02-25 17:45:16.397 2024-02-25 17:45:16.397 9000 TIP 438487 27 6064861 2024-02-25 17:45:57.365 2024-02-25 17:45:57.365 1000 FEE 438487 18291 6064862 2024-02-25 17:45:57.365 2024-02-25 17:45:57.365 9000 TIP 438487 956 6064877 2024-02-25 17:46:34.337 2024-02-25 17:46:34.337 1000 FEE 438487 13177 6064878 2024-02-25 17:46:34.337 2024-02-25 17:46:34.337 9000 TIP 438487 21614 6064881 2024-02-25 17:46:35.981 2024-02-25 17:46:35.981 1000 FEE 438487 1064 6064882 2024-02-25 17:46:35.981 2024-02-25 17:46:35.981 9000 TIP 438487 12265 6064895 2024-02-25 17:48:16.88 2024-02-25 17:48:16.88 100 FEE 438325 2042 6064896 2024-02-25 17:48:16.88 2024-02-25 17:48:16.88 900 TIP 438325 2224 6064915 2024-02-25 17:49:34.362 2024-02-25 17:49:34.362 4000 FEE 438358 20287 6064916 2024-02-25 17:49:34.362 2024-02-25 17:49:34.362 36000 TIP 438358 16769 6064947 2024-02-25 17:51:01.522 2024-02-25 17:51:01.522 1000 POLL 438414 780 6064978 2024-02-25 17:54:11.663 2024-02-25 17:54:11.663 4000 FEE 438423 20509 6064979 2024-02-25 17:54:11.663 2024-02-25 17:54:11.663 36000 TIP 438423 16229 6064984 2024-02-25 17:54:33.5 2024-02-25 17:54:33.5 1000 FEE 438506 649 6064989 2024-02-25 17:55:17.277 2024-02-25 17:55:17.277 100 FEE 438505 17827 6064990 2024-02-25 17:55:17.277 2024-02-25 17:55:17.277 900 TIP 438505 2674 6064998 2024-02-25 17:56:04.205 2024-02-25 17:56:04.205 4000 FEE 438487 21116 6064999 2024-02-25 17:56:04.205 2024-02-25 17:56:04.205 36000 TIP 438487 6300 6065001 2024-02-25 17:56:26.285 2024-02-25 17:56:26.285 2800 FEE 438065 10270 6065002 2024-02-25 17:56:26.285 2024-02-25 17:56:26.285 25200 TIP 438065 1046 6065020 2024-02-25 17:57:45.171 2024-02-25 17:57:45.171 2100 FEE 438507 19815 6065021 2024-02-25 17:57:45.171 2024-02-25 17:57:45.171 18900 TIP 438507 9833 6065031 2024-02-25 17:58:21.802 2024-02-25 17:58:21.802 4000 FEE 438487 994 6065032 2024-02-25 17:58:21.802 2024-02-25 17:58:21.802 36000 TIP 438487 21216 6065035 2024-02-25 17:58:22.29 2024-02-25 17:58:22.29 4000 FEE 438487 4802 6065036 2024-02-25 17:58:22.29 2024-02-25 17:58:22.29 36000 TIP 438487 1002 6065037 2024-02-25 17:58:22.351 2024-02-25 17:58:22.351 12800 FEE 438462 9346 6065038 2024-02-25 17:58:22.351 2024-02-25 17:58:22.351 115200 TIP 438462 629 6065063 2024-02-25 17:59:49.542 2024-02-25 17:59:49.542 100 FEE 436566 18727 6065064 2024-02-25 17:59:49.542 2024-02-25 17:59:49.542 900 TIP 436566 18664 6065094 2024-02-25 18:03:52.183 2024-02-25 18:03:52.183 1000 FEE 438508 19346 6065095 2024-02-25 18:03:52.183 2024-02-25 18:03:52.183 9000 TIP 438508 695 6065096 2024-02-25 18:03:52.707 2024-02-25 18:03:52.707 1000 FEE 438508 20066 6065097 2024-02-25 18:03:52.707 2024-02-25 18:03:52.707 9000 TIP 438508 20980 6065102 2024-02-25 18:03:58.757 2024-02-25 18:03:58.757 1000 FEE 438514 768 6065103 2024-02-25 18:03:58.757 2024-02-25 18:03:58.757 9000 TIP 438514 14818 6065118 2024-02-25 18:04:19.241 2024-02-25 18:04:19.241 1000 FEE 438512 9337 6065119 2024-02-25 18:04:19.241 2024-02-25 18:04:19.241 9000 TIP 438512 20596 6065124 2024-02-25 18:04:52.973 2024-02-25 18:04:52.973 4000 FEE 438510 20555 6065125 2024-02-25 18:04:52.973 2024-02-25 18:04:52.973 36000 TIP 438510 9426 6065129 2024-02-25 18:05:48.413 2024-02-25 18:05:48.413 1000 FEE 438518 8095 6065150 2024-02-25 18:10:06.913 2024-02-25 18:10:06.913 0 FEE 438523 4819 6065154 2024-02-25 18:10:46.256 2024-02-25 18:10:46.256 1000 FEE 438525 14213 6065167 2024-02-25 18:12:27.947 2024-02-25 18:12:27.947 1000 FEE 438393 15474 6065168 2024-02-25 18:12:27.947 2024-02-25 18:12:27.947 9000 TIP 438393 13169 6065189 2024-02-25 18:13:05.178 2024-02-25 18:13:05.178 1000 FEE 437605 10979 6065190 2024-02-25 18:13:05.178 2024-02-25 18:13:05.178 9000 TIP 437605 21472 6065197 2024-02-25 18:13:06.019 2024-02-25 18:13:06.019 1000 FEE 437605 14990 6065198 2024-02-25 18:13:06.019 2024-02-25 18:13:06.019 9000 TIP 437605 18494 6065203 2024-02-25 18:13:06.744 2024-02-25 18:13:06.744 1000 FEE 437605 10608 6065204 2024-02-25 18:13:06.744 2024-02-25 18:13:06.744 9000 TIP 437605 21503 6065209 2024-02-25 18:13:19.386 2024-02-25 18:13:19.386 2100 FEE 438451 1571 6065210 2024-02-25 18:13:19.386 2024-02-25 18:13:19.386 18900 TIP 438451 17095 6065214 2024-02-25 18:13:28.73 2024-02-25 18:13:28.73 1000 FEE 438530 15196 6065230 2024-02-25 18:17:44.58 2024-02-25 18:17:44.58 100000 FEE 438534 19924 6065256 2024-02-25 18:19:36.301 2024-02-25 18:19:36.301 1000 FEE 437616 21296 6065257 2024-02-25 18:19:36.301 2024-02-25 18:19:36.301 9000 TIP 437616 14258 6065269 2024-02-25 18:20:34.058 2024-02-25 18:20:34.058 10000 FEE 438518 7916 6065270 2024-02-25 18:20:34.058 2024-02-25 18:20:34.058 90000 TIP 438518 20681 6065276 2024-02-25 18:21:11.731 2024-02-25 18:21:11.731 2100 FEE 438474 2942 6065277 2024-02-25 18:21:11.731 2024-02-25 18:21:11.731 18900 TIP 438474 1439 6065295 2024-02-25 18:22:40.983 2024-02-25 18:22:40.983 500 FEE 438325 3400 6065296 2024-02-25 18:22:40.983 2024-02-25 18:22:40.983 4500 TIP 438325 10818 6065316 2024-02-25 18:23:25.156 2024-02-25 18:23:25.156 500 FEE 438451 18139 6065317 2024-02-25 18:23:25.156 2024-02-25 18:23:25.156 4500 TIP 438451 11527 6065356 2024-02-25 18:26:07.267 2024-02-25 18:26:07.267 1000 FEE 438523 19583 6065357 2024-02-25 18:26:07.267 2024-02-25 18:26:07.267 9000 TIP 438523 627 6065384 2024-02-25 18:26:53.612 2024-02-25 18:26:53.612 100 FEE 438543 21104 6065385 2024-02-25 18:26:53.612 2024-02-25 18:26:53.612 900 TIP 438543 2773 6065395 2024-02-25 18:27:38.558 2024-02-25 18:27:38.558 2800 FEE 438542 9969 6065396 2024-02-25 18:27:38.558 2024-02-25 18:27:38.558 25200 TIP 438542 12566 6065404 2024-02-25 18:28:46.482 2024-02-25 18:28:46.482 1000 FEE 438168 2338 6064689 2024-02-25 17:29:59.057 2024-02-25 17:29:59.057 24300 TIP 438467 5017 6064737 2024-02-25 17:34:29.78 2024-02-25 17:34:29.78 900 FEE 438310 1316 6064738 2024-02-25 17:34:29.78 2024-02-25 17:34:29.78 8100 TIP 438310 15978 6064742 2024-02-25 17:35:08.26 2024-02-25 17:35:08.26 1000 FEE 438476 21494 6064743 2024-02-25 17:35:30.665 2024-02-25 17:35:30.665 2100 FEE 438444 1291 6064744 2024-02-25 17:35:30.665 2024-02-25 17:35:30.665 18900 TIP 438444 10056 6064746 2024-02-25 17:35:41.146 2024-02-25 17:35:41.146 4000 FEE 438439 12268 6064747 2024-02-25 17:35:41.146 2024-02-25 17:35:41.146 36000 TIP 438439 769 6064758 2024-02-25 17:38:23.173 2024-02-25 17:38:23.173 1000 FEE 438480 21138 6064778 2024-02-25 17:40:13.696 2024-02-25 17:40:13.696 1000 FEE 438325 21104 6064779 2024-02-25 17:40:13.696 2024-02-25 17:40:13.696 9000 TIP 438325 629 6064788 2024-02-25 17:40:34.988 2024-02-25 17:40:34.988 100 FEE 438444 16543 6064789 2024-02-25 17:40:34.988 2024-02-25 17:40:34.988 900 TIP 438444 733 6064806 2024-02-25 17:42:17.114 2024-02-25 17:42:17.114 2100 FEE 438434 1720 6064807 2024-02-25 17:42:17.114 2024-02-25 17:42:17.114 18900 TIP 438434 13177 6064808 2024-02-25 17:42:29.266 2024-02-25 17:42:29.266 2100 FEE 438414 20980 6064809 2024-02-25 17:42:29.266 2024-02-25 17:42:29.266 18900 TIP 438414 16858 6064827 2024-02-25 17:45:11.729 2024-02-25 17:45:11.729 1000 FEE 438487 4624 6064828 2024-02-25 17:45:11.729 2024-02-25 17:45:11.729 9000 TIP 438487 959 6064831 2024-02-25 17:45:12.874 2024-02-25 17:45:12.874 1000 FEE 438487 9348 6064832 2024-02-25 17:45:12.874 2024-02-25 17:45:12.874 9000 TIP 438487 974 6064843 2024-02-25 17:45:17.856 2024-02-25 17:45:17.856 1000 FEE 438487 19292 6064844 2024-02-25 17:45:17.856 2024-02-25 17:45:17.856 9000 TIP 438487 17446 6064907 2024-02-25 17:49:20.736 2024-02-25 17:49:20.736 100 FEE 438389 9695 6064908 2024-02-25 17:49:20.736 2024-02-25 17:49:20.736 900 TIP 438389 18199 6064920 2024-02-25 17:49:37.566 2024-02-25 17:49:37.566 4000 FEE 438388 10102 6064921 2024-02-25 17:49:37.566 2024-02-25 17:49:37.566 36000 TIP 438388 5171 6064936 2024-02-25 17:50:20.615 2024-02-25 17:50:20.615 1000 FEE 438487 14278 6064937 2024-02-25 17:50:20.615 2024-02-25 17:50:20.615 9000 TIP 438487 20904 6064951 2024-02-25 17:52:18.33 2024-02-25 17:52:18.33 1000 FEE 438414 803 6064952 2024-02-25 17:52:18.33 2024-02-25 17:52:18.33 9000 TIP 438414 7674 6064961 2024-02-25 17:52:24.357 2024-02-25 17:52:24.357 1000 FEE 437723 19812 6064962 2024-02-25 17:52:24.357 2024-02-25 17:52:24.357 9000 TIP 437723 16357 6064995 2024-02-25 17:55:24.102 2024-02-25 17:55:24.102 4000 FEE 438504 14404 6064996 2024-02-25 17:55:24.102 2024-02-25 17:55:24.102 36000 TIP 438504 16259 6064997 2024-02-25 17:55:56.82 2024-02-25 17:55:56.82 1000 FEE 438507 5455 6065014 2024-02-25 17:57:39.676 2024-02-25 17:57:39.676 1000 FEE 437752 10280 6065015 2024-02-25 17:57:39.676 2024-02-25 17:57:39.676 9000 TIP 437752 20073 6065029 2024-02-25 17:58:21.423 2024-02-25 17:58:21.423 4000 FEE 438487 10352 6065030 2024-02-25 17:58:21.423 2024-02-25 17:58:21.423 36000 TIP 438487 2016 6065052 2024-02-25 17:58:42.867 2024-02-25 17:58:42.867 1000 FEE 438317 5069 6065053 2024-02-25 17:58:42.867 2024-02-25 17:58:42.867 9000 TIP 438317 21145 6065055 2024-02-25 17:59:01.635 2024-02-25 17:59:01.635 100 FEE 438482 18494 6065056 2024-02-25 17:59:01.635 2024-02-25 17:59:01.635 900 TIP 438482 3439 6065058 2024-02-25 17:59:37.915 2024-02-25 17:59:37.915 0 FEE 438507 17148 6065059 2024-02-25 17:59:45.088 2024-02-25 17:59:45.088 100 FEE 436626 11862 6065060 2024-02-25 17:59:45.088 2024-02-25 17:59:45.088 900 TIP 436626 18832 6065074 2024-02-25 18:00:56.501 2024-02-25 18:00:56.501 0 FEE 438507 18452 6065117 2024-02-25 18:04:19.094 2024-02-25 18:04:19.094 1000 FEE 438517 19967 6065143 2024-02-25 18:09:25.064 2024-02-25 18:09:25.064 1000 FEE 438522 20073 6065175 2024-02-25 18:12:53.537 2024-02-25 18:12:53.537 1000 FEE 438092 11158 6065176 2024-02-25 18:12:53.537 2024-02-25 18:12:53.537 9000 TIP 438092 5703 6065177 2024-02-25 18:13:04.287 2024-02-25 18:13:04.287 1000 FEE 437605 19021 6065178 2024-02-25 18:13:04.287 2024-02-25 18:13:04.287 9000 TIP 437605 9332 6065201 2024-02-25 18:13:06.569 2024-02-25 18:13:06.569 1000 FEE 437605 9184 6065202 2024-02-25 18:13:06.569 2024-02-25 18:13:06.569 9000 TIP 437605 12708 6065211 2024-02-25 18:13:25.419 2024-02-25 18:13:25.419 3000 FEE 437951 20525 6065212 2024-02-25 18:13:25.419 2024-02-25 18:13:25.419 27000 TIP 437951 15526 6065278 2024-02-25 18:21:22.696 2024-02-25 18:21:22.696 0 FEE 438536 21287 6065291 2024-02-25 18:22:38.681 2024-02-25 18:22:38.681 500 FEE 438414 20669 6065292 2024-02-25 18:22:38.681 2024-02-25 18:22:38.681 4500 TIP 438414 19546 6065293 2024-02-25 18:22:39.916 2024-02-25 18:22:39.916 500 FEE 438092 688 6065294 2024-02-25 18:22:39.916 2024-02-25 18:22:39.916 4500 TIP 438092 913 6065309 2024-02-25 18:22:58.068 2024-02-25 18:22:58.068 1000 FEE 438541 20964 6065319 2024-02-25 18:23:26.894 2024-02-25 18:23:26.894 500 FEE 438372 861 6065320 2024-02-25 18:23:26.894 2024-02-25 18:23:26.894 4500 TIP 438372 17568 6065323 2024-02-25 18:23:30.797 2024-02-25 18:23:30.797 500 FEE 438367 18423 6065324 2024-02-25 18:23:30.797 2024-02-25 18:23:30.797 4500 TIP 438367 14906 6065348 2024-02-25 18:26:05.066 2024-02-25 18:26:05.066 1000 FEE 438523 20799 6065349 2024-02-25 18:26:05.066 2024-02-25 18:26:05.066 9000 TIP 438523 14015 6065350 2024-02-25 18:26:05.733 2024-02-25 18:26:05.733 1000 FEE 438494 13133 6065351 2024-02-25 18:26:05.733 2024-02-25 18:26:05.733 9000 TIP 438494 659 6065360 2024-02-25 18:26:07.803 2024-02-25 18:26:07.803 1000 FEE 438523 19668 6065361 2024-02-25 18:26:07.803 2024-02-25 18:26:07.803 9000 TIP 438523 1785 6065362 2024-02-25 18:26:14.123 2024-02-25 18:26:14.123 500 FEE 438434 1833 6065363 2024-02-25 18:26:14.123 2024-02-25 18:26:14.123 4500 TIP 438434 2710 6065375 2024-02-25 18:26:33.96 2024-02-25 18:26:33.96 100 FEE 438389 21079 6065376 2024-02-25 18:26:33.96 2024-02-25 18:26:33.96 900 TIP 438389 18409 6065377 2024-02-25 18:26:37.807 2024-02-25 18:26:37.807 500 FEE 438393 19773 6065378 2024-02-25 18:26:37.807 2024-02-25 18:26:37.807 4500 TIP 438393 15386 6065388 2024-02-25 18:27:01.452 2024-02-25 18:27:01.452 1000 FEE 438547 12268 6065411 2024-02-25 18:30:34.518 2024-02-25 18:30:34.518 1000 FEE 438099 811 6065412 2024-02-25 18:30:34.518 2024-02-25 18:30:34.518 9000 TIP 438099 897 6065419 2024-02-25 18:33:29.239 2024-02-25 18:33:29.239 1000 FEE 438534 1692 6065420 2024-02-25 18:33:29.239 2024-02-25 18:33:29.239 9000 TIP 438534 18816 6065422 2024-02-25 18:34:35.476 2024-02-25 18:34:35.476 100 FEE 438548 997 6065423 2024-02-25 18:34:35.476 2024-02-25 18:34:35.476 900 TIP 438548 11967 6065449 2024-02-25 18:37:23.192 2024-02-25 18:37:23.192 1000 FEE 438209 16633 6065450 2024-02-25 18:37:23.192 2024-02-25 18:37:23.192 9000 TIP 438209 17106 6065491 2024-02-25 18:46:01.841 2024-02-25 18:46:01.841 700 FEE 438500 20222 6065492 2024-02-25 18:46:01.841 2024-02-25 18:46:01.841 6300 TIP 438500 19622 6065499 2024-02-25 18:46:57.276 2024-02-25 18:46:57.276 1000 POLL 438325 20198 6065512 2024-02-25 18:50:54.565 2024-02-25 18:50:54.565 1000 FEE 438564 17109 6065535 2024-02-25 18:56:04.983 2024-02-25 18:56:04.983 1000 FEE 438567 12222 6065569 2024-02-25 18:59:55.246 2024-02-25 18:59:55.246 100 FEE 438524 16842 6065570 2024-02-25 18:59:55.246 2024-02-25 18:59:55.246 900 TIP 438524 5306 6065587 2024-02-25 19:01:21.47 2024-02-25 19:01:21.47 10000 FEE 438573 16353 6064696 2024-02-25 17:30:27.681 2024-02-25 17:30:27.681 2100 FEE 438442 19332 6064697 2024-02-25 17:30:27.681 2024-02-25 17:30:27.681 18900 TIP 438442 5746 6064698 2024-02-25 17:30:49.462 2024-02-25 17:30:49.462 1000 FEE 438472 20897 6064709 2024-02-25 17:31:54.015 2024-02-25 17:31:54.015 2100 FEE 438361 20901 6064710 2024-02-25 17:31:54.015 2024-02-25 17:31:54.015 18900 TIP 438361 5746 6064713 2024-02-25 17:31:58.164 2024-02-25 17:31:58.164 2100 FEE 438332 3304 6064714 2024-02-25 17:31:58.164 2024-02-25 17:31:58.164 18900 TIP 438332 16970 6064728 2024-02-25 17:34:05.189 2024-02-25 17:34:05.189 1000 FEE 438474 19981 6064733 2024-02-25 17:34:23.085 2024-02-25 17:34:23.085 900 FEE 438201 12951 6064734 2024-02-25 17:34:23.085 2024-02-25 17:34:23.085 8100 TIP 438201 844 6064735 2024-02-25 17:34:29.583 2024-02-25 17:34:29.583 100 FEE 438310 6164 6064736 2024-02-25 17:34:29.583 2024-02-25 17:34:29.583 900 TIP 438310 19924 6064799 2024-02-25 17:41:06.042 2024-02-25 17:41:06.042 2100 FEE 438451 19151 6064800 2024-02-25 17:41:06.042 2024-02-25 17:41:06.042 18900 TIP 438451 5825 6064801 2024-02-25 17:41:19.968 2024-02-25 17:41:19.968 2100 FEE 438372 5306 6064802 2024-02-25 17:41:19.968 2024-02-25 17:41:19.968 18900 TIP 438372 18751 6064805 2024-02-25 17:42:08.752 2024-02-25 17:42:08.752 1000 FEE 438485 15938 6064822 2024-02-25 17:44:13.583 2024-02-25 17:44:13.583 2800 FEE 438469 21014 6064823 2024-02-25 17:44:13.583 2024-02-25 17:44:13.583 25200 TIP 438469 21090 6064837 2024-02-25 17:45:15.312 2024-02-25 17:45:15.312 1000 FEE 438487 21051 6064838 2024-02-25 17:45:15.312 2024-02-25 17:45:15.312 9000 TIP 438487 12736 6064845 2024-02-25 17:45:22.09 2024-02-25 17:45:22.09 1000 FEE 438487 4126 6064846 2024-02-25 17:45:22.09 2024-02-25 17:45:22.09 9000 TIP 438487 14906 6064851 2024-02-25 17:45:53.36 2024-02-25 17:45:53.36 1000 FEE 438487 16684 6064852 2024-02-25 17:45:53.36 2024-02-25 17:45:53.36 9000 TIP 438487 1576 6064855 2024-02-25 17:45:54.349 2024-02-25 17:45:54.349 1000 FEE 438487 18468 6064856 2024-02-25 17:45:54.349 2024-02-25 17:45:54.349 9000 TIP 438487 19987 6064857 2024-02-25 17:45:55.009 2024-02-25 17:45:55.009 1000 FEE 438487 10530 6064858 2024-02-25 17:45:55.009 2024-02-25 17:45:55.009 9000 TIP 438487 837 6064865 2024-02-25 17:46:04.469 2024-02-25 17:46:04.469 1000 FEE 438492 1038 6064886 2024-02-25 17:47:04.543 2024-02-25 17:47:04.543 1000 FEE 438496 10554 6064887 2024-02-25 17:47:04.639 2024-02-25 17:47:04.639 100 FEE 438494 21539 6064888 2024-02-25 17:47:04.639 2024-02-25 17:47:04.639 900 TIP 438494 6533 6064890 2024-02-25 17:47:11.786 2024-02-25 17:47:11.786 1000 FEE 438497 7989 6064913 2024-02-25 17:49:31.047 2024-02-25 17:49:31.047 4000 FEE 438372 4115 6064914 2024-02-25 17:49:31.047 2024-02-25 17:49:31.047 36000 TIP 438372 13587 6064972 2024-02-25 17:53:46.546 2024-02-25 17:53:46.546 1000 FEE 438426 21578 6064973 2024-02-25 17:53:46.546 2024-02-25 17:53:46.546 9000 TIP 438426 3304 6064985 2024-02-25 17:54:38.15 2024-02-25 17:54:38.15 10000 DONT_LIKE_THIS 437145 2065 6065011 2024-02-25 17:57:21.126 2024-02-25 17:57:21.126 0 FEE 438507 12218 6065024 2024-02-25 17:57:45.629 2024-02-25 17:57:45.629 2100 FEE 438507 11898 6065025 2024-02-25 17:57:45.629 2024-02-25 17:57:45.629 18900 TIP 438507 21281 6065033 2024-02-25 17:58:22.008 2024-02-25 17:58:22.008 4000 FEE 438487 19174 6065034 2024-02-25 17:58:22.008 2024-02-25 17:58:22.008 36000 TIP 438487 1039 6065042 2024-02-25 17:58:28.567 2024-02-25 17:58:28.567 5000 FEE 438455 19924 6065043 2024-02-25 17:58:28.567 2024-02-25 17:58:28.567 45000 TIP 438455 3656 6065044 2024-02-25 17:58:34.798 2024-02-25 17:58:34.798 1000 FEE 438305 17827 6065045 2024-02-25 17:58:34.798 2024-02-25 17:58:34.798 9000 TIP 438305 1047 6065085 2024-02-25 18:03:00.443 2024-02-25 18:03:00.443 7000 FEE 438516 4059 6065086 2024-02-25 18:03:00.491 2024-02-25 18:03:00.491 0 FEE 438507 21494 6065092 2024-02-25 18:03:51.701 2024-02-25 18:03:51.701 1000 FEE 438508 15925 6065093 2024-02-25 18:03:51.701 2024-02-25 18:03:51.701 9000 TIP 438508 5825 6064821 2024-02-25 17:44:03.264 2024-02-25 17:44:03.264 1000 STREAM 141924 2583 6124477 2024-03-01 12:38:36.479 2024-03-01 12:38:36.479 1000 FEE 444929 1208 6124482 2024-03-01 12:38:49.765 2024-03-01 12:38:49.765 2100 FEE 444755 8459 6124483 2024-03-01 12:38:49.765 2024-03-01 12:38:49.765 18900 TIP 444755 18932 6124492 2024-03-01 12:39:58.044 2024-03-01 12:39:58.044 200 FEE 444771 1983 6124493 2024-03-01 12:39:58.044 2024-03-01 12:39:58.044 1800 TIP 444771 9362 6124529 2024-03-01 12:44:07.832 2024-03-01 12:44:07.832 100 FEE 444892 12278 6124530 2024-03-01 12:44:07.832 2024-03-01 12:44:07.832 900 TIP 444892 16704 6124547 2024-03-01 12:44:49.598 2024-03-01 12:44:49.598 100 FEE 444921 21296 6124548 2024-03-01 12:44:49.598 2024-03-01 12:44:49.598 900 TIP 444921 19332 6124549 2024-03-01 12:44:54.551 2024-03-01 12:44:54.551 100 FEE 444907 2195 6124550 2024-03-01 12:44:54.551 2024-03-01 12:44:54.551 900 TIP 444907 20775 6124553 2024-03-01 12:44:59.115 2024-03-01 12:44:59.115 10000 FEE 444500 3706 6124554 2024-03-01 12:44:59.115 2024-03-01 12:44:59.115 90000 TIP 444500 9200 6124561 2024-03-01 12:46:30.46 2024-03-01 12:46:30.46 2000 FEE 444921 21194 6124562 2024-03-01 12:46:30.46 2024-03-01 12:46:30.46 18000 TIP 444921 18630 6124584 2024-03-01 12:50:19.12 2024-03-01 12:50:19.12 8500 FEE 444739 20642 6124585 2024-03-01 12:50:19.12 2024-03-01 12:50:19.12 76500 TIP 444739 19640 6124639 2024-03-01 12:53:10.296 2024-03-01 12:53:10.296 1000 FEE 444905 5759 6124640 2024-03-01 12:53:10.296 2024-03-01 12:53:10.296 9000 TIP 444905 21563 6124659 2024-03-01 12:53:30.856 2024-03-01 12:53:30.856 1000 FEE 443272 1741 6124660 2024-03-01 12:53:30.856 2024-03-01 12:53:30.856 9000 TIP 443272 17166 6124661 2024-03-01 12:53:48.643 2024-03-01 12:53:48.643 2100 FEE 444754 17690 6124662 2024-03-01 12:53:48.643 2024-03-01 12:53:48.643 18900 TIP 444754 1493 6124668 2024-03-01 12:55:26.983 2024-03-01 12:55:26.983 27900 FEE 444739 14202 6124669 2024-03-01 12:55:26.983 2024-03-01 12:55:26.983 251100 TIP 444739 1319 6124706 2024-03-01 13:02:28.657 2024-03-01 13:02:28.657 1000 FEE 444947 695 6124731 2024-03-01 13:04:33.551 2024-03-01 13:04:33.551 900 FEE 444695 1534 6124732 2024-03-01 13:04:33.551 2024-03-01 13:04:33.551 8100 TIP 444695 11491 6124737 2024-03-01 13:04:44.505 2024-03-01 13:04:44.505 90000 FEE 444695 12261 6124738 2024-03-01 13:04:44.505 2024-03-01 13:04:44.505 810000 TIP 444695 17682 6124763 2024-03-01 13:05:53.511 2024-03-01 13:05:53.511 100 FEE 444638 1122 6124764 2024-03-01 13:05:53.511 2024-03-01 13:05:53.511 900 TIP 444638 5495 6124769 2024-03-01 13:05:55.319 2024-03-01 13:05:55.319 9000 FEE 444638 18630 6124770 2024-03-01 13:05:55.319 2024-03-01 13:05:55.319 81000 TIP 444638 17984 6124778 2024-03-01 13:06:40.651 2024-03-01 13:06:40.651 9000 FEE 444597 4654 6124779 2024-03-01 13:06:40.651 2024-03-01 13:06:40.651 81000 TIP 444597 20573 6124783 2024-03-01 13:07:10.592 2024-03-01 13:07:10.592 900 FEE 444619 3360 6124784 2024-03-01 13:07:10.592 2024-03-01 13:07:10.592 8100 TIP 444619 19668 6124811 2024-03-01 13:10:04.161 2024-03-01 13:10:04.161 1000 FEE 444955 16336 6124814 2024-03-01 13:10:36.475 2024-03-01 13:10:36.475 100 FEE 444694 4958 6124815 2024-03-01 13:10:36.475 2024-03-01 13:10:36.475 900 TIP 444694 20264 6124857 2024-03-01 13:13:40.337 2024-03-01 13:13:40.337 2100 FEE 444921 2309 6124858 2024-03-01 13:13:40.337 2024-03-01 13:13:40.337 18900 TIP 444921 20837 6124859 2024-03-01 13:14:00.516 2024-03-01 13:14:00.516 1000 FEE 444960 3342 6124882 2024-03-01 13:15:59.464 2024-03-01 13:15:59.464 1000 FEE 444953 6260 6124883 2024-03-01 13:15:59.464 2024-03-01 13:15:59.464 9000 TIP 444953 18717 6124894 2024-03-01 13:17:35.632 2024-03-01 13:17:35.632 100 FEE 444695 16282 6124895 2024-03-01 13:17:35.632 2024-03-01 13:17:35.632 900 TIP 444695 19465 6124898 2024-03-01 13:17:39.599 2024-03-01 13:17:39.599 500 FEE 444842 6573 6124899 2024-03-01 13:17:39.599 2024-03-01 13:17:39.599 4500 TIP 444842 9820 6124923 2024-03-01 13:21:04.706 2024-03-01 13:21:04.706 2200 FEE 444519 2710 6124924 2024-03-01 13:21:04.706 2024-03-01 13:21:04.706 19800 TIP 444519 807 6124925 2024-03-01 13:21:04.858 2024-03-01 13:21:04.858 1100 FEE 444519 2459 6124926 2024-03-01 13:21:04.858 2024-03-01 13:21:04.858 9900 TIP 444519 21556 6124964 2024-03-01 13:23:37.39 2024-03-01 13:23:37.39 1100 FEE 444739 19329 6124965 2024-03-01 13:23:37.39 2024-03-01 13:23:37.39 9900 TIP 444739 1030 6124976 2024-03-01 13:23:41.475 2024-03-01 13:23:41.475 1100 FEE 444852 10291 6124977 2024-03-01 13:23:41.475 2024-03-01 13:23:41.475 9900 TIP 444852 713 6124994 2024-03-01 13:24:21.651 2024-03-01 13:24:21.651 100 FEE 444682 19906 6124995 2024-03-01 13:24:21.651 2024-03-01 13:24:21.651 900 TIP 444682 9200 6124998 2024-03-01 13:24:23.392 2024-03-01 13:24:23.392 9000 FEE 444682 762 6124999 2024-03-01 13:24:23.392 2024-03-01 13:24:23.392 81000 TIP 444682 1751 6125042 2024-03-01 13:31:59.547 2024-03-01 13:31:59.547 500 FEE 444739 9107 6125043 2024-03-01 13:31:59.547 2024-03-01 13:31:59.547 4500 TIP 444739 11153 6125066 2024-03-01 13:33:55.107 2024-03-01 13:33:55.107 7700 FEE 444958 1454 6125067 2024-03-01 13:33:55.107 2024-03-01 13:33:55.107 69300 TIP 444958 10484 6125077 2024-03-01 13:34:05.212 2024-03-01 13:34:05.212 2100 FEE 444962 616 6125078 2024-03-01 13:34:05.212 2024-03-01 13:34:05.212 18900 TIP 444962 21022 6125099 2024-03-01 13:34:21.585 2024-03-01 13:34:21.585 6900 FEE 444950 646 6125100 2024-03-01 13:34:21.585 2024-03-01 13:34:21.585 62100 TIP 444950 11516 6125145 2024-03-01 13:35:18.104 2024-03-01 13:35:18.104 6900 FEE 444950 19506 6125146 2024-03-01 13:35:18.104 2024-03-01 13:35:18.104 62100 TIP 444950 21157 6125147 2024-03-01 13:35:18.7 2024-03-01 13:35:18.7 1000 FEE 444978 2444 6125149 2024-03-01 13:35:38.097 2024-03-01 13:35:38.097 7700 FEE 444930 1596 6064919 2024-02-25 17:49:35.698 2024-02-25 17:49:35.698 36000 TIP 438367 19886 6064938 2024-02-25 17:50:22.061 2024-02-25 17:50:22.061 1000 FEE 438487 2614 6064939 2024-02-25 17:50:22.061 2024-02-25 17:50:22.061 9000 TIP 438487 20015 6064941 2024-02-25 17:50:26.439 2024-02-25 17:50:26.439 1000 FEE 438487 8870 6064942 2024-02-25 17:50:26.439 2024-02-25 17:50:26.439 9000 TIP 438487 10096 6064946 2024-02-25 17:50:41.238 2024-02-25 17:50:41.238 1000 POLL 438202 18817 6064965 2024-02-25 17:52:37.071 2024-02-25 17:52:37.071 2100 FEE 438441 20156 6064966 2024-02-25 17:52:37.071 2024-02-25 17:52:37.071 18900 TIP 438441 658 6064967 2024-02-25 17:52:37.472 2024-02-25 17:52:37.472 1000 FEE 438502 8037 6064974 2024-02-25 17:53:51.719 2024-02-25 17:53:51.719 1000 FEE 438445 8998 6064975 2024-02-25 17:53:51.719 2024-02-25 17:53:51.719 9000 TIP 438445 1970 6064977 2024-02-25 17:54:09.089 2024-02-25 17:54:09.089 1000 FEE 438505 4776 6065028 2024-02-25 17:58:19.314 2024-02-25 17:58:19.314 1000 FEE 438508 2832 6065039 2024-02-25 17:58:25.045 2024-02-25 17:58:25.045 10000 FEE 438464 1008 6065040 2024-02-25 17:58:25.045 2024-02-25 17:58:25.045 90000 TIP 438464 20495 6065106 2024-02-25 18:04:00.34 2024-02-25 18:04:00.34 1000 FEE 438514 10398 6065107 2024-02-25 18:04:00.34 2024-02-25 18:04:00.34 9000 TIP 438514 2342 6065109 2024-02-25 18:04:17.514 2024-02-25 18:04:17.514 1000 FEE 438512 20058 6065110 2024-02-25 18:04:17.514 2024-02-25 18:04:17.514 9000 TIP 438512 21599 6065120 2024-02-25 18:04:31.149 2024-02-25 18:04:31.149 4000 FEE 438514 16194 6065121 2024-02-25 18:04:31.149 2024-02-25 18:04:31.149 36000 TIP 438514 16341 6065127 2024-02-25 18:05:10.115 2024-02-25 18:05:10.115 4000 FEE 438455 1310 6065128 2024-02-25 18:05:10.115 2024-02-25 18:05:10.115 36000 TIP 438455 17209 6065133 2024-02-25 18:07:13.091 2024-02-25 18:07:13.091 1000 FEE 438520 18359 6065134 2024-02-25 18:07:36.628 2024-02-25 18:07:36.628 10000 FEE 438232 18270 6065135 2024-02-25 18:07:36.628 2024-02-25 18:07:36.628 90000 TIP 438232 20500 6065184 2024-02-25 18:13:04.795 2024-02-25 18:13:04.795 1000 FEE 437605 2111 6065185 2024-02-25 18:13:04.795 2024-02-25 18:13:04.795 9000 TIP 437605 14404 6065187 2024-02-25 18:13:04.965 2024-02-25 18:13:04.965 1000 FEE 437605 20687 6065188 2024-02-25 18:13:04.965 2024-02-25 18:13:04.965 9000 TIP 437605 11523 6065191 2024-02-25 18:13:05.388 2024-02-25 18:13:05.388 1000 FEE 437605 654 6065192 2024-02-25 18:13:05.388 2024-02-25 18:13:05.388 9000 TIP 437605 3392 6065193 2024-02-25 18:13:05.6 2024-02-25 18:13:05.6 1000 FEE 437605 5160 6065194 2024-02-25 18:13:05.6 2024-02-25 18:13:05.6 9000 TIP 437605 18180 6065205 2024-02-25 18:13:08.144 2024-02-25 18:13:08.144 2100 FEE 438494 19537 6065206 2024-02-25 18:13:08.144 2024-02-25 18:13:08.144 18900 TIP 438494 7899 6065216 2024-02-25 18:13:47.846 2024-02-25 18:13:47.846 3000 FEE 437747 19661 6065217 2024-02-25 18:13:47.846 2024-02-25 18:13:47.846 27000 TIP 437747 14663 6065220 2024-02-25 18:14:25.866 2024-02-25 18:14:25.866 1000 FEE 438532 18051 6065222 2024-02-25 18:15:08.536 2024-02-25 18:15:08.536 2100 FEE 438522 5455 6065223 2024-02-25 18:15:08.536 2024-02-25 18:15:08.536 18900 TIP 438522 1737 6065262 2024-02-25 18:19:54.765 2024-02-25 18:19:54.765 9000 FEE 438185 1705 6065263 2024-02-25 18:19:54.765 2024-02-25 18:19:54.765 81000 TIP 438185 4692 6065301 2024-02-25 18:22:44.811 2024-02-25 18:22:44.811 500 FEE 438209 18231 6065302 2024-02-25 18:22:44.811 2024-02-25 18:22:44.811 4500 TIP 438209 5725 6065310 2024-02-25 18:22:59.5 2024-02-25 18:22:59.5 1000 POLL 438414 21501 6065367 2024-02-25 18:26:33.192 2024-02-25 18:26:33.192 1000 FEE 438389 10016 6065368 2024-02-25 18:26:33.192 2024-02-25 18:26:33.192 9000 TIP 438389 1631 6065371 2024-02-25 18:26:33.583 2024-02-25 18:26:33.583 100 FEE 438389 18264 6065372 2024-02-25 18:26:33.583 2024-02-25 18:26:33.583 900 TIP 438389 2773 6065373 2024-02-25 18:26:33.759 2024-02-25 18:26:33.759 100 FEE 438389 10063 6065374 2024-02-25 18:26:33.759 2024-02-25 18:26:33.759 900 TIP 438389 882 6065379 2024-02-25 18:26:38.038 2024-02-25 18:26:38.038 500 FEE 438393 18402 6065380 2024-02-25 18:26:38.038 2024-02-25 18:26:38.038 4500 TIP 438393 16706 6065381 2024-02-25 18:26:38.443 2024-02-25 18:26:38.443 512000 FEE 438545 15049 6065383 2024-02-25 18:26:47.664 2024-02-25 18:26:47.664 1000 FEE 438546 776 6065424 2024-02-25 18:34:35.658 2024-02-25 18:34:35.658 900 FEE 438548 5746 6065425 2024-02-25 18:34:35.658 2024-02-25 18:34:35.658 8100 TIP 438548 16296 6065430 2024-02-25 18:35:05.072 2024-02-25 18:35:05.072 300 FEE 437238 17148 6065431 2024-02-25 18:35:05.072 2024-02-25 18:35:05.072 2700 TIP 437238 16309 6065434 2024-02-25 18:36:56.894 2024-02-25 18:36:56.894 1000 FEE 438451 19535 6065435 2024-02-25 18:36:56.894 2024-02-25 18:36:56.894 9000 TIP 438451 14045 6065453 2024-02-25 18:37:48.098 2024-02-25 18:37:48.098 1000 FEE 438434 11590 6065012 2024-02-25 17:57:31.92 2024-02-25 17:57:31.92 1000 FEE 438068 1515 6065013 2024-02-25 17:57:31.92 2024-02-25 17:57:31.92 9000 TIP 438068 9329 6065022 2024-02-25 17:57:45.39 2024-02-25 17:57:45.39 2100 FEE 438507 8037 6065023 2024-02-25 17:57:45.39 2024-02-25 17:57:45.39 18900 TIP 438507 21588 6065078 2024-02-25 18:01:17.375 2024-02-25 18:01:17.375 0 FEE 438507 16912 6065079 2024-02-25 18:01:41.177 2024-02-25 18:01:41.177 1000 FEE 438514 21424 6065113 2024-02-25 18:04:18.42 2024-02-25 18:04:18.42 1000 FEE 438512 15408 6065114 2024-02-25 18:04:18.42 2024-02-25 18:04:18.42 9000 TIP 438512 680 6065139 2024-02-25 18:09:04.19 2024-02-25 18:09:04.19 1000 FEE 438521 1628 6065140 2024-02-25 18:09:04.458 2024-02-25 18:09:04.458 100 FEE 438487 14651 6065141 2024-02-25 18:09:04.458 2024-02-25 18:09:04.458 900 TIP 438487 1571 6065162 2024-02-25 18:11:55.207 2024-02-25 18:11:55.207 1000 FEE 438526 2640 6065213 2024-02-25 18:13:27.398 2024-02-25 18:13:27.398 0 FEE 438527 21482 6065273 2024-02-25 18:21:09.197 2024-02-25 18:21:09.197 1000 FEE 438540 15160 6065289 2024-02-25 18:22:37.857 2024-02-25 18:22:37.857 500 FEE 438405 9348 6065290 2024-02-25 18:22:37.857 2024-02-25 18:22:37.857 4500 TIP 438405 19796 6065307 2024-02-25 18:22:54.93 2024-02-25 18:22:54.93 500 FEE 438198 16267 6065308 2024-02-25 18:22:54.93 2024-02-25 18:22:54.93 4500 TIP 438198 17030 6065311 2024-02-25 18:22:59.991 2024-02-25 18:22:59.991 500 FEE 438389 21238 6065312 2024-02-25 18:22:59.991 2024-02-25 18:22:59.991 4500 TIP 438389 4166 6065335 2024-02-25 18:25:07.056 2024-02-25 18:25:07.056 500 FEE 438416 768 6065336 2024-02-25 18:25:07.056 2024-02-25 18:25:07.056 4500 TIP 438416 9796 6065343 2024-02-25 18:25:52.626 2024-02-25 18:25:52.626 100 FEE 438506 19096 6065344 2024-02-25 18:25:52.626 2024-02-25 18:25:52.626 900 TIP 438506 14074 6065369 2024-02-25 18:26:33.21 2024-02-25 18:26:33.21 100 FEE 438389 21406 6065370 2024-02-25 18:26:33.21 2024-02-25 18:26:33.21 900 TIP 438389 13753 6065382 2024-02-25 18:26:40.455 2024-02-25 18:26:40.455 0 FEE 438544 7587 6065386 2024-02-25 18:26:54.128 2024-02-25 18:26:54.128 4000 FEE 438544 4650 6065387 2024-02-25 18:26:54.128 2024-02-25 18:26:54.128 36000 TIP 438544 1800 6065399 2024-02-25 18:28:37.145 2024-02-25 18:28:37.145 1000 FEE 438549 14271 6065451 2024-02-25 18:37:32.798 2024-02-25 18:37:32.798 1000 FEE 438416 19952 6065452 2024-02-25 18:37:32.798 2024-02-25 18:37:32.798 9000 TIP 438416 794 6065466 2024-02-25 18:38:59.332 2024-02-25 18:38:59.332 9000 FEE 438519 8448 6065467 2024-02-25 18:38:59.332 2024-02-25 18:38:59.332 81000 TIP 438519 19469 6065472 2024-02-25 18:39:37.232 2024-02-25 18:39:37.232 300 FEE 436709 15806 6065473 2024-02-25 18:39:37.232 2024-02-25 18:39:37.232 2700 TIP 436709 1465 6065474 2024-02-25 18:39:44.547 2024-02-25 18:39:44.547 1000 POLL 438325 2724 6065480 2024-02-25 18:41:18.582 2024-02-25 18:41:18.582 1000 FEE 438557 20691 6065481 2024-02-25 18:41:29.999 2024-02-25 18:41:29.999 16900 FEE 438527 15052 6065482 2024-02-25 18:41:29.999 2024-02-25 18:41:29.999 152100 TIP 438527 18862 6065495 2024-02-25 18:46:26.448 2024-02-25 18:46:26.448 300 FEE 438489 1567 6065496 2024-02-25 18:46:26.448 2024-02-25 18:46:26.448 2700 TIP 438489 1784 6065500 2024-02-25 18:47:01.512 2024-02-25 18:47:01.512 1000 FEE 438561 4776 6065502 2024-02-25 18:47:33.71 2024-02-25 18:47:33.71 300 FEE 438558 5085 6065503 2024-02-25 18:47:33.71 2024-02-25 18:47:33.71 2700 TIP 438558 21014 6065515 2024-02-25 18:52:16.159 2024-02-25 18:52:16.159 1000 POLL 438325 20514 6065524 2024-02-25 18:53:30.161 2024-02-25 18:53:30.161 2100 FEE 438219 1825 6065525 2024-02-25 18:53:30.161 2024-02-25 18:53:30.161 18900 TIP 438219 20701 6065547 2024-02-25 18:57:42.402 2024-02-25 18:57:42.402 200 FEE 438533 20745 6065548 2024-02-25 18:57:42.402 2024-02-25 18:57:42.402 1800 TIP 438533 13517 6065551 2024-02-25 18:57:46.036 2024-02-25 18:57:46.036 1000 FEE 438570 1162 6065556 2024-02-25 18:58:52.938 2024-02-25 18:58:52.938 1000 FEE 438397 17011 6065557 2024-02-25 18:58:52.938 2024-02-25 18:58:52.938 9000 TIP 438397 19524 6065565 2024-02-25 18:59:53.825 2024-02-25 18:59:53.825 500 FEE 438440 16542 6065566 2024-02-25 18:59:53.825 2024-02-25 18:59:53.825 4500 TIP 438440 20509 6065641 2024-02-25 19:10:05.859 2024-02-25 19:10:05.859 1000 FEE 438580 642 6065644 2024-02-25 19:10:28.576 2024-02-25 19:10:28.576 0 FEE 438580 18330 6065650 2024-02-25 19:13:28.619 2024-02-25 19:13:28.619 0 FEE 438582 9476 6065664 2024-02-25 19:13:44.075 2024-02-25 19:13:44.075 100 FEE 438546 9 6065665 2024-02-25 19:13:44.075 2024-02-25 19:13:44.075 900 TIP 438546 721 6065711 2024-02-25 19:18:51.758 2024-02-25 19:18:51.758 6900 FEE 438556 9992 6065712 2024-02-25 19:18:51.758 2024-02-25 19:18:51.758 62100 TIP 438556 666 6065716 2024-02-25 19:19:22.83 2024-02-25 19:19:22.83 1000 FEE 438584 20168 6065737 2024-02-25 19:23:14.863 2024-02-25 19:23:14.863 2100 FEE 438552 5806 6065738 2024-02-25 19:23:14.863 2024-02-25 19:23:14.863 18900 TIP 438552 21386 6065740 2024-02-25 19:23:15.747 2024-02-25 19:23:15.747 2100 FEE 438552 18270 6065741 2024-02-25 19:23:15.747 2024-02-25 19:23:15.747 18900 TIP 438552 2285 6065744 2024-02-25 19:23:52.154 2024-02-25 19:23:52.154 1000 POLL 438325 21338 6065766 2024-02-25 19:24:49.365 2024-02-25 19:24:49.365 10000 FEE 438198 20490 6065767 2024-02-25 19:24:49.365 2024-02-25 19:24:49.365 90000 TIP 438198 15075 6065773 2024-02-25 19:26:16.591 2024-02-25 19:26:16.591 1000 POLL 438414 18453 6065780 2024-02-25 19:28:02.701 2024-02-25 19:28:02.701 6900 FEE 438504 21446 6065781 2024-02-25 19:28:02.701 2024-02-25 19:28:02.701 62100 TIP 438504 16789 6065789 2024-02-25 19:28:11.63 2024-02-25 19:28:11.63 6900 FEE 438504 20162 6065790 2024-02-25 19:28:11.63 2024-02-25 19:28:11.63 62100 TIP 438504 18659 6065817 2024-02-25 19:32:48.736 2024-02-25 19:32:48.736 5000 FEE 438440 19662 6065818 2024-02-25 19:32:48.736 2024-02-25 19:32:48.736 45000 TIP 438440 1425 6065821 2024-02-25 19:33:56.251 2024-02-25 19:33:56.251 1000 FEE 438325 20436 6065822 2024-02-25 19:33:56.251 2024-02-25 19:33:56.251 9000 TIP 438325 3342 6065828 2024-02-25 19:34:20.518 2024-02-25 19:34:20.518 1000 POLL 438325 17494 6065835 2024-02-25 19:36:25.671 2024-02-25 19:36:25.671 2100 FEE 438504 13987 6065836 2024-02-25 19:36:25.671 2024-02-25 19:36:25.671 18900 TIP 438504 9331 6065903 2024-02-25 19:37:50.697 2024-02-25 19:37:50.697 1000 FEE 438367 12291 6065904 2024-02-25 19:37:50.697 2024-02-25 19:37:50.697 9000 TIP 438367 20062 6065911 2024-02-25 19:37:51.538 2024-02-25 19:37:51.538 1000 FEE 438367 9551 6065912 2024-02-25 19:37:51.538 2024-02-25 19:37:51.538 9000 TIP 438367 7425 6065917 2024-02-25 19:37:52.096 2024-02-25 19:37:52.096 100 FEE 438438 5173 6065918 2024-02-25 19:37:52.096 2024-02-25 19:37:52.096 900 TIP 438438 5557 6065947 2024-02-25 19:38:28.844 2024-02-25 19:38:28.844 10000 FEE 438588 2577 6065948 2024-02-25 19:38:28.844 2024-02-25 19:38:28.844 90000 TIP 438588 20299 6065960 2024-02-25 19:43:01.326 2024-02-25 19:43:01.326 1000 FEE 438596 2525 6065961 2024-02-25 19:43:01.326 2024-02-25 19:43:01.326 9000 TIP 438596 18904 6065984 2024-02-25 19:47:05.023 2024-02-25 19:47:05.023 1000 FEE 438596 8841 6065985 2024-02-25 19:47:05.023 2024-02-25 19:47:05.023 9000 TIP 438596 21116 6065999 2024-02-25 19:48:33.871 2024-02-25 19:48:33.871 2100 FEE 438414 12057 6066000 2024-02-25 19:48:33.871 2024-02-25 19:48:33.871 18900 TIP 438414 20258 6066001 2024-02-25 19:48:34.659 2024-02-25 19:48:34.659 2100 FEE 438405 19533 6066002 2024-02-25 19:48:34.659 2024-02-25 19:48:34.659 18900 TIP 438405 7773 6066023 2024-02-25 19:48:57.178 2024-02-25 19:48:57.178 2100 FEE 438372 717 6066024 2024-02-25 19:48:57.178 2024-02-25 19:48:57.178 18900 TIP 438372 19471 6066067 2024-02-25 19:54:49.872 2024-02-25 19:54:49.872 1000 FEE 438474 16950 6066068 2024-02-25 19:54:49.872 2024-02-25 19:54:49.872 9000 TIP 438474 1060 6066069 2024-02-25 19:54:50.035 2024-02-25 19:54:50.035 1000 FEE 438474 19007 6066070 2024-02-25 19:54:50.035 2024-02-25 19:54:50.035 9000 TIP 438474 946 6066104 2024-02-25 20:01:58.931 2024-02-25 20:01:58.931 1000 POLL 438202 11714 6065027 2024-02-25 17:58:04.724 2024-02-25 17:58:04.724 1000 STREAM 141924 20179 6065075 2024-02-25 18:01:04.762 2024-02-25 18:01:04.762 1000 STREAM 141924 617 6065126 2024-02-25 18:05:04.808 2024-02-25 18:05:04.808 1000 STREAM 141924 12220 6065132 2024-02-25 18:07:04.807 2024-02-25 18:07:04.807 1000 STREAM 141924 20243 6065142 2024-02-25 18:09:04.824 2024-02-25 18:09:04.824 1000 STREAM 141924 18387 6065186 2024-02-25 18:13:04.855 2024-02-25 18:13:04.855 1000 STREAM 141924 946 6065233 2024-02-25 18:18:02.102 2024-02-25 18:18:02.102 1000 STREAM 141924 18119 6065315 2024-02-25 18:23:02.134 2024-02-25 18:23:02.134 1000 STREAM 141924 20504 6124484 2024-03-01 12:39:04.242 2024-03-01 12:39:04.242 200 FEE 444874 732 6124485 2024-03-01 12:39:04.242 2024-03-01 12:39:04.242 1800 TIP 444874 19126 6124488 2024-03-01 12:39:57.793 2024-03-01 12:39:57.793 200 FEE 444771 14950 6124489 2024-03-01 12:39:57.793 2024-03-01 12:39:57.793 1800 TIP 444771 21079 6124519 2024-03-01 12:42:53.156 2024-03-01 12:42:53.156 1000 FEE 444931 17693 6124522 2024-03-01 12:43:46.356 2024-03-01 12:43:46.356 10000 FEE 444932 20108 6124531 2024-03-01 12:44:13.199 2024-03-01 12:44:13.199 2100 FEE 444911 5112 6124532 2024-03-01 12:44:13.199 2024-03-01 12:44:13.199 18900 TIP 444911 19189 6124541 2024-03-01 12:44:31.232 2024-03-01 12:44:31.232 100 FEE 444824 14552 6124542 2024-03-01 12:44:31.232 2024-03-01 12:44:31.232 900 TIP 444824 3717 6124567 2024-03-01 12:46:31.324 2024-03-01 12:46:31.324 2000 FEE 444921 2942 6124568 2024-03-01 12:46:31.324 2024-03-01 12:46:31.324 18000 TIP 444921 5500 6124608 2024-03-01 12:52:23.284 2024-03-01 12:52:23.284 1000 FEE 444866 699 6124609 2024-03-01 12:52:23.284 2024-03-01 12:52:23.284 9000 TIP 444866 20231 6124643 2024-03-01 12:53:10.795 2024-03-01 12:53:10.795 1000 FEE 444896 21303 6124644 2024-03-01 12:53:10.795 2024-03-01 12:53:10.795 9000 TIP 444896 21357 6124678 2024-03-01 12:57:13.172 2024-03-01 12:57:13.172 7600 FEE 444930 11515 6124679 2024-03-01 12:57:13.172 2024-03-01 12:57:13.172 68400 TIP 444930 21361 6124680 2024-03-01 12:57:15.806 2024-03-01 12:57:15.806 1000 FEE 444940 1180 6124689 2024-03-01 12:58:08.456 2024-03-01 12:58:08.456 1000 FEE 444942 10060 6124720 2024-03-01 13:04:10.537 2024-03-01 13:04:10.537 210000 FEE 444950 7983 6124772 2024-03-01 13:06:35.647 2024-03-01 13:06:35.647 4200 FEE 444662 5455 6124773 2024-03-01 13:06:35.647 2024-03-01 13:06:35.647 37800 TIP 444662 10554 6124791 2024-03-01 13:07:53.599 2024-03-01 13:07:53.599 1000 FEE 444954 14247 6124793 2024-03-01 13:08:58.33 2024-03-01 13:08:58.33 100 FEE 444652 20129 6124794 2024-03-01 13:08:58.33 2024-03-01 13:08:58.33 900 TIP 444652 8459 6124808 2024-03-01 13:09:35.81 2024-03-01 13:09:35.81 100 FEE 444755 15408 6124809 2024-03-01 13:09:35.81 2024-03-01 13:09:35.81 900 TIP 444755 896 6124821 2024-03-01 13:10:58.352 2024-03-01 13:10:58.352 9000 FEE 444694 19854 6124822 2024-03-01 13:10:58.352 2024-03-01 13:10:58.352 81000 TIP 444694 1720 6124863 2024-03-01 13:14:03.098 2024-03-01 13:14:03.098 900 FEE 444883 18243 6124864 2024-03-01 13:14:03.098 2024-03-01 13:14:03.098 8100 TIP 444883 2718 6124907 2024-03-01 13:20:12.35 2024-03-01 13:20:12.35 1100 FEE 444755 10981 6124908 2024-03-01 13:20:12.35 2024-03-01 13:20:12.35 9900 TIP 444755 8385 6124946 2024-03-01 13:23:04.466 2024-03-01 13:23:04.466 100 FEE 444802 19735 6124947 2024-03-01 13:23:04.466 2024-03-01 13:23:04.466 900 TIP 444802 20434 6124966 2024-03-01 13:23:37.413 2024-03-01 13:23:37.413 1100 FEE 444739 2952 6124967 2024-03-01 13:23:37.413 2024-03-01 13:23:37.413 9900 TIP 444739 9171 6124982 2024-03-01 13:23:42.027 2024-03-01 13:23:42.027 1100 FEE 444695 5828 6124983 2024-03-01 13:23:42.027 2024-03-01 13:23:42.027 9900 TIP 444695 9433 6124986 2024-03-01 13:24:11.24 2024-03-01 13:24:11.24 1000 FEE 444926 10270 6124987 2024-03-01 13:24:11.24 2024-03-01 13:24:11.24 9000 TIP 444926 993 6124992 2024-03-01 13:24:16.094 2024-03-01 13:24:16.094 1000 FEE 444926 8284 6124993 2024-03-01 13:24:16.094 2024-03-01 13:24:16.094 9000 TIP 444926 15843 6125002 2024-03-01 13:24:37.602 2024-03-01 13:24:37.602 90000 FEE 444682 20660 6125003 2024-03-01 13:24:37.602 2024-03-01 13:24:37.602 810000 TIP 444682 1003 6125005 2024-03-01 13:25:13.026 2024-03-01 13:25:13.026 1000 FEE 444739 17109 6125006 2024-03-01 13:25:13.026 2024-03-01 13:25:13.026 9000 TIP 444739 21091 6125011 2024-03-01 13:25:58.568 2024-03-01 13:25:58.568 9000 FEE 444878 1571 6125012 2024-03-01 13:25:58.568 2024-03-01 13:25:58.568 81000 TIP 444878 11073 6125028 2024-03-01 13:28:16.011 2024-03-01 13:28:16.011 5000 FEE 444852 15408 6125029 2024-03-01 13:28:16.011 2024-03-01 13:28:16.011 45000 TIP 444852 15161 6125033 2024-03-01 13:29:52.236 2024-03-01 13:29:52.236 1600 FEE 444968 18930 6125034 2024-03-01 13:29:52.236 2024-03-01 13:29:52.236 14400 TIP 444968 684 6125037 2024-03-01 13:30:49.497 2024-03-01 13:30:49.497 1000 FEE 444971 3353 6125068 2024-03-01 13:33:58.734 2024-03-01 13:33:58.734 500 FEE 444852 9334 6125069 2024-03-01 13:33:58.734 2024-03-01 13:33:58.734 4500 TIP 444852 21138 6125081 2024-03-01 13:34:11.608 2024-03-01 13:34:11.608 2100 FEE 444956 762 6125082 2024-03-01 13:34:11.608 2024-03-01 13:34:11.608 18900 TIP 444956 20674 6125087 2024-03-01 13:34:20.009 2024-03-01 13:34:20.009 6900 FEE 444950 10283 6125088 2024-03-01 13:34:20.009 2024-03-01 13:34:20.009 62100 TIP 444950 989 6125089 2024-03-01 13:34:20.126 2024-03-01 13:34:20.126 6900 FEE 444950 20301 6125090 2024-03-01 13:34:20.126 2024-03-01 13:34:20.126 62100 TIP 444950 8448 6125107 2024-03-01 13:34:22.388 2024-03-01 13:34:22.388 6900 FEE 444950 17172 6125108 2024-03-01 13:34:22.388 2024-03-01 13:34:22.388 62100 TIP 444950 15617 6125109 2024-03-01 13:34:22.421 2024-03-01 13:34:22.421 6900 FEE 444950 1652 6125110 2024-03-01 13:34:22.421 2024-03-01 13:34:22.421 62100 TIP 444950 5759 6125121 2024-03-01 13:34:23.992 2024-03-01 13:34:23.992 6900 FEE 444950 13878 6125122 2024-03-01 13:34:23.992 2024-03-01 13:34:23.992 62100 TIP 444950 17226 6125129 2024-03-01 13:34:25.464 2024-03-01 13:34:25.464 6900 FEE 444950 20981 6125130 2024-03-01 13:34:25.464 2024-03-01 13:34:25.464 62100 TIP 444950 16816 6125133 2024-03-01 13:34:40.764 2024-03-01 13:34:40.764 1000 FEE 444848 21148 6125134 2024-03-01 13:34:40.764 2024-03-01 13:34:40.764 9000 TIP 444848 20756 6125148 2024-03-01 13:35:32.252 2024-03-01 13:35:32.252 1000 FEE 444979 11750 6125153 2024-03-01 13:35:45.985 2024-03-01 13:35:45.985 1000 FEE 444921 17455 6125154 2024-03-01 13:35:45.985 2024-03-01 13:35:45.985 9000 TIP 444921 20267 6125198 2024-03-01 13:35:54.708 2024-03-01 13:35:54.708 7700 FEE 444911 859 6125199 2024-03-01 13:35:54.708 2024-03-01 13:35:54.708 69300 TIP 444911 946 6125204 2024-03-01 13:35:55.052 2024-03-01 13:35:55.052 7700 FEE 444911 18680 6125205 2024-03-01 13:35:55.052 2024-03-01 13:35:55.052 69300 TIP 444911 20674 6125235 2024-03-01 13:36:15.542 2024-03-01 13:36:15.542 7700 FEE 444910 19138 6125236 2024-03-01 13:36:15.542 2024-03-01 13:36:15.542 69300 TIP 444910 17237 6125244 2024-03-01 13:36:26.686 2024-03-01 13:36:26.686 7700 FEE 444910 714 6125245 2024-03-01 13:36:26.686 2024-03-01 13:36:26.686 69300 TIP 444910 8541 6125248 2024-03-01 13:36:26.971 2024-03-01 13:36:26.971 7700 FEE 444910 21437 6125249 2024-03-01 13:36:26.971 2024-03-01 13:36:26.971 69300 TIP 444910 16336 6125260 2024-03-01 13:36:49.61 2024-03-01 13:36:49.61 15400 FEE 444739 17275 6125261 2024-03-01 13:36:49.61 2024-03-01 13:36:49.61 138600 TIP 444739 19852 6125262 2024-03-01 13:36:49.953 2024-03-01 13:36:49.953 7700 FEE 444739 6749 6125263 2024-03-01 13:36:49.953 2024-03-01 13:36:49.953 69300 TIP 444739 9341 6125288 2024-03-01 13:38:21.449 2024-03-01 13:38:21.449 0 FEE 444979 20715 6125291 2024-03-01 13:38:28.479 2024-03-01 13:38:28.479 7700 FEE 444557 9331 6125292 2024-03-01 13:38:28.479 2024-03-01 13:38:28.479 69300 TIP 444557 20023 6125330 2024-03-01 13:40:53.919 2024-03-01 13:40:53.919 7600 FEE 444980 9331 6125331 2024-03-01 13:40:53.919 2024-03-01 13:40:53.919 68400 TIP 444980 1142 6065047 2024-02-25 17:58:36.858 2024-02-25 17:58:36.858 9000 TIP 438405 2774 6065048 2024-02-25 17:58:40.618 2024-02-25 17:58:40.618 1000 FEE 438325 21139 6065049 2024-02-25 17:58:40.618 2024-02-25 17:58:40.618 9000 TIP 438325 21072 6065054 2024-02-25 17:58:48.877 2024-02-25 17:58:48.877 1000 FEE 438510 3417 6065061 2024-02-25 17:59:49.091 2024-02-25 17:59:49.091 4000 FEE 438507 21571 6065062 2024-02-25 17:59:49.091 2024-02-25 17:59:49.091 36000 TIP 438507 15978 6065071 2024-02-25 18:00:30.641 2024-02-25 18:00:30.641 300 FEE 437994 20326 6065072 2024-02-25 18:00:30.641 2024-02-25 18:00:30.641 2700 TIP 437994 16456 6065073 2024-02-25 18:00:41.788 2024-02-25 18:00:41.788 0 FEE 438507 2703 6065080 2024-02-25 18:01:53.082 2024-02-25 18:01:53.082 1000 FEE 438515 17050 6065088 2024-02-25 18:03:50.624 2024-02-25 18:03:50.624 1000 FEE 438508 9356 6065089 2024-02-25 18:03:50.624 2024-02-25 18:03:50.624 9000 TIP 438508 6594 6065144 2024-02-25 18:09:26.153 2024-02-25 18:09:26.153 300 FEE 438520 16214 6065145 2024-02-25 18:09:26.153 2024-02-25 18:09:26.153 2700 TIP 438520 16356 6065163 2024-02-25 18:11:59.423 2024-02-25 18:11:59.423 1000 FEE 438527 1488 6065171 2024-02-25 18:12:52.919 2024-02-25 18:12:52.919 4000 FEE 438524 1438 6065172 2024-02-25 18:12:52.919 2024-02-25 18:12:52.919 36000 TIP 438524 12768 6065173 2024-02-25 18:12:53.346 2024-02-25 18:12:53.346 2100 FEE 438519 2335 6065174 2024-02-25 18:12:53.346 2024-02-25 18:12:53.346 18900 TIP 438519 9330 6065179 2024-02-25 18:13:04.343 2024-02-25 18:13:04.343 1000 FEE 438529 1354 6065199 2024-02-25 18:13:06.081 2024-02-25 18:13:06.081 3000 FEE 437987 13767 6065200 2024-02-25 18:13:06.081 2024-02-25 18:13:06.081 27000 TIP 437987 1007 6065226 2024-02-25 18:16:04.69 2024-02-25 18:16:04.69 1000 FEE 438533 19878 6065235 2024-02-25 18:18:43.566 2024-02-25 18:18:43.566 2100 FEE 438487 17535 6065236 2024-02-25 18:18:43.566 2024-02-25 18:18:43.566 18900 TIP 438487 17166 6065248 2024-02-25 18:19:35.657 2024-02-25 18:19:35.657 1000 FEE 437616 20409 6065249 2024-02-25 18:19:35.657 2024-02-25 18:19:35.657 9000 TIP 437616 4958 6065281 2024-02-25 18:21:39.722 2024-02-25 18:21:39.722 0 FEE 438534 4062 6065297 2024-02-25 18:22:42.653 2024-02-25 18:22:42.653 4000 FEE 438536 14258 6065298 2024-02-25 18:22:42.653 2024-02-25 18:22:42.653 36000 TIP 438536 1692 6065303 2024-02-25 18:22:46.108 2024-02-25 18:22:46.108 500 FEE 438202 6741 6065304 2024-02-25 18:22:46.108 2024-02-25 18:22:46.108 4500 TIP 438202 9026 6065305 2024-02-25 18:22:47.008 2024-02-25 18:22:47.008 100 FEE 438484 9364 6065306 2024-02-25 18:22:47.008 2024-02-25 18:22:47.008 900 TIP 438484 11820 6065318 2024-02-25 18:23:25.215 2024-02-25 18:23:25.215 1000 FEE 438542 20109 6065321 2024-02-25 18:23:30.021 2024-02-25 18:23:30.021 500 FEE 438388 16754 6065322 2024-02-25 18:23:30.021 2024-02-25 18:23:30.021 4500 TIP 438388 2596 6065327 2024-02-25 18:24:01.145 2024-02-25 18:24:01.145 1700 FEE 438451 18533 6065328 2024-02-25 18:24:01.145 2024-02-25 18:24:01.145 15300 TIP 438451 21540 6065330 2024-02-25 18:24:26.15 2024-02-25 18:24:26.15 0 FEE 438542 21072 6065333 2024-02-25 18:24:43.352 2024-02-25 18:24:43.352 500 FEE 438073 14370 6065334 2024-02-25 18:24:43.352 2024-02-25 18:24:43.352 4500 TIP 438073 16788 6065345 2024-02-25 18:26:02.639 2024-02-25 18:26:02.639 1000 FEE 438519 6526 6065346 2024-02-25 18:26:02.639 2024-02-25 18:26:02.639 9000 TIP 438519 1465 6065394 2024-02-25 18:27:21.265 2024-02-25 18:27:21.265 0 FEE 438546 19235 6065400 2024-02-25 18:28:40.34 2024-02-25 18:28:40.34 300 FEE 437720 20987 6065401 2024-02-25 18:28:40.34 2024-02-25 18:28:40.34 2700 TIP 437720 20562 6065416 2024-02-25 18:31:05.587 2024-02-25 18:31:05.587 11000 FEE 438551 17218 6065426 2024-02-25 18:34:36.27 2024-02-25 18:34:36.27 9000 FEE 438548 1726 6065427 2024-02-25 18:34:36.27 2024-02-25 18:34:36.27 81000 TIP 438548 1692 6065458 2024-02-25 18:38:16.623 2024-02-25 18:38:16.623 1000 FEE 438345 1845 6065459 2024-02-25 18:38:16.623 2024-02-25 18:38:16.623 9000 TIP 438345 18280 6065470 2024-02-25 18:39:34.5 2024-02-25 18:39:34.5 10000 FEE 438325 17166 6065471 2024-02-25 18:39:34.5 2024-02-25 18:39:34.5 90000 TIP 438325 21356 6065486 2024-02-25 18:42:24.79 2024-02-25 18:42:24.79 1000 FEE 438558 20117 6065517 2024-02-25 18:53:06.112 2024-02-25 18:53:06.112 100 FEE 433123 2528 6065518 2024-02-25 18:53:06.112 2024-02-25 18:53:06.112 900 TIP 433123 4958 6065522 2024-02-25 18:53:29.065 2024-02-25 18:53:29.065 100 FEE 434705 13767 6065523 2024-02-25 18:53:29.065 2024-02-25 18:53:29.065 900 TIP 434705 15243 6065536 2024-02-25 18:56:14.955 2024-02-25 18:56:14.955 1000 POLL 438325 16259 6065542 2024-02-25 18:57:40.012 2024-02-25 18:57:40.012 1000 FEE 438569 20745 6065543 2024-02-25 18:57:40.524 2024-02-25 18:57:40.524 200 FEE 438533 7510 6065544 2024-02-25 18:57:40.524 2024-02-25 18:57:40.524 1800 TIP 438533 21072 6065572 2024-02-25 19:00:05.003 2024-02-25 19:00:05.003 1000 FEE 438572 17226 6065597 2024-02-25 19:03:55.259 2024-02-25 19:03:55.259 1000 FEE 438575 8506 6065599 2024-02-25 19:04:22.18 2024-02-25 19:04:22.18 500 FEE 438359 16284 6065600 2024-02-25 19:04:22.18 2024-02-25 19:04:22.18 4500 TIP 438359 8074 6065603 2024-02-25 19:04:45.473 2024-02-25 19:04:45.473 2100 FEE 438451 1626 6065604 2024-02-25 19:04:45.473 2024-02-25 19:04:45.473 18900 TIP 438451 910 6065610 2024-02-25 19:06:32.59 2024-02-25 19:06:32.59 2100 FEE 438504 7583 6065611 2024-02-25 19:06:32.59 2024-02-25 19:06:32.59 18900 TIP 438504 9418 6065621 2024-02-25 19:08:00.436 2024-02-25 19:08:00.436 2100 FEE 438574 10698 6065622 2024-02-25 19:08:00.436 2024-02-25 19:08:00.436 18900 TIP 438574 12272 6065627 2024-02-25 19:08:20.801 2024-02-25 19:08:20.801 2100 FEE 438486 5557 6065628 2024-02-25 19:08:20.801 2024-02-25 19:08:20.801 18900 TIP 438486 16485 6065634 2024-02-25 19:09:24.532 2024-02-25 19:09:24.532 2100 FEE 438452 18704 6065635 2024-02-25 19:09:24.532 2024-02-25 19:09:24.532 18900 TIP 438452 7185 6065642 2024-02-25 19:10:15.529 2024-02-25 19:10:15.529 0 FEE 438580 2537 6065652 2024-02-25 19:13:42.416 2024-02-25 19:13:42.416 100 FEE 438546 21042 6065653 2024-02-25 19:13:42.416 2024-02-25 19:13:42.416 900 TIP 438546 21539 6065662 2024-02-25 19:13:43.707 2024-02-25 19:13:43.707 100 FEE 438546 17984 6065663 2024-02-25 19:13:43.707 2024-02-25 19:13:43.707 900 TIP 438546 20655 6065668 2024-02-25 19:13:45.048 2024-02-25 19:13:45.048 100 FEE 438546 5761 6065669 2024-02-25 19:13:45.048 2024-02-25 19:13:45.048 900 TIP 438546 18865 6065684 2024-02-25 19:17:29.583 2024-02-25 19:17:29.583 700 FEE 438405 17050 6065685 2024-02-25 19:17:29.583 2024-02-25 19:17:29.583 6300 TIP 438405 15273 6065689 2024-02-25 19:18:11.609 2024-02-25 19:18:11.609 6900 FEE 438486 19773 6065690 2024-02-25 19:18:11.609 2024-02-25 19:18:11.609 62100 TIP 438486 2710 6065705 2024-02-25 19:18:47.454 2024-02-25 19:18:47.454 6900 FEE 438467 16356 6065706 2024-02-25 19:18:47.454 2024-02-25 19:18:47.454 62100 TIP 438467 14663 6065722 2024-02-25 19:20:59.103 2024-02-25 19:20:59.103 1000 FEE 438586 1712 6065724 2024-02-25 19:22:01.979 2024-02-25 19:22:01.979 2100 FEE 438519 21627 6065725 2024-02-25 19:22:01.979 2024-02-25 19:22:01.979 18900 TIP 438519 9796 6065087 2024-02-25 18:03:04.787 2024-02-25 18:03:04.787 1000 STREAM 141924 11609 6065157 2024-02-25 18:11:04.841 2024-02-25 18:11:04.841 1000 STREAM 141924 8269 6065264 2024-02-25 18:20:02.127 2024-02-25 18:20:02.127 1000 STREAM 141924 1773 6124634 2024-03-01 12:53:03.615 2024-03-01 12:53:03.615 1000 STREAM 141924 20080 6124665 2024-03-01 12:55:03.66 2024-03-01 12:55:03.66 1000 STREAM 141924 6268 6124691 2024-03-01 12:59:03.698 2024-03-01 12:59:03.698 1000 STREAM 141924 9366 6124704 2024-03-01 13:01:01.729 2024-03-01 13:01:01.729 1000 STREAM 141924 10094 6124848 2024-03-01 13:13:05.846 2024-03-01 13:13:05.846 1000 STREAM 141924 880 6124984 2024-03-01 13:24:05.909 2024-03-01 13:24:05.909 1000 STREAM 141924 20109 6125030 2024-03-01 13:29:03.955 2024-03-01 13:29:03.955 1000 STREAM 141924 4059 6125038 2024-03-01 13:31:03.977 2024-03-01 13:31:03.977 1000 STREAM 141924 19282 6125295 2024-03-01 13:39:04.035 2024-03-01 13:39:04.035 1000 STREAM 141924 762 6125372 2024-03-01 13:44:02.078 2024-03-01 13:44:02.078 1000 STREAM 141924 19557 6125405 2024-03-01 13:48:04.108 2024-03-01 13:48:04.108 1000 STREAM 141924 9345 6125411 2024-03-01 13:50:04.197 2024-03-01 13:50:04.197 1000 STREAM 141924 18393 6125487 2024-03-01 13:57:02.156 2024-03-01 13:57:02.156 1000 STREAM 141924 13361 6125622 2024-03-01 14:01:02.175 2024-03-01 14:01:02.175 1000 STREAM 141924 696 6125647 2024-03-01 14:03:02.184 2024-03-01 14:03:02.184 1000 STREAM 141924 19105 6125654 2024-03-01 14:05:02.22 2024-03-01 14:05:02.22 1000 STREAM 141924 16848 6125758 2024-03-01 14:15:04.276 2024-03-01 14:15:04.276 1000 STREAM 141924 4043 6125766 2024-03-01 14:16:02.283 2024-03-01 14:16:02.283 1000 STREAM 141924 20663 6125785 2024-03-01 14:18:02.275 2024-03-01 14:18:02.275 1000 STREAM 141924 794 6125822 2024-03-01 14:22:02.346 2024-03-01 14:22:02.346 1000 STREAM 141924 16912 6125831 2024-03-01 14:24:02.366 2024-03-01 14:24:02.366 1000 STREAM 141924 1983 6125852 2024-03-01 14:28:02.428 2024-03-01 14:28:02.428 1000 STREAM 141924 9969 6125858 2024-03-01 14:29:04.608 2024-03-01 14:29:04.608 1000 STREAM 141924 686 6125912 2024-03-01 14:37:04.515 2024-03-01 14:37:04.515 1000 STREAM 141924 20179 6125929 2024-03-01 14:39:02.5 2024-03-01 14:39:02.5 1000 STREAM 141924 18076 6125943 2024-03-01 14:40:04.573 2024-03-01 14:40:04.573 1000 STREAM 141924 14785 6125957 2024-03-01 14:41:04.533 2024-03-01 14:41:04.533 1000 STREAM 141924 16649 6126038 2024-03-01 14:49:04.566 2024-03-01 14:49:04.566 1000 STREAM 141924 12516 6126049 2024-03-01 14:50:02.596 2024-03-01 14:50:02.596 1000 STREAM 141924 9334 6126053 2024-03-01 14:51:02.585 2024-03-01 14:51:02.585 1000 STREAM 141924 775 6126063 2024-03-01 14:52:04.59 2024-03-01 14:52:04.59 1000 STREAM 141924 2776 6126072 2024-03-01 14:53:04.594 2024-03-01 14:53:04.594 1000 STREAM 141924 7960 6126096 2024-03-01 14:56:04.629 2024-03-01 14:56:04.629 1000 STREAM 141924 19031 6126125 2024-03-01 14:58:04.629 2024-03-01 14:58:04.629 1000 STREAM 141924 1729 6126148 2024-03-01 15:02:02.63 2024-03-01 15:02:02.63 1000 STREAM 141924 640 6126164 2024-03-01 15:03:02.648 2024-03-01 15:03:02.648 1000 STREAM 141924 19320 6065100 2024-02-25 18:03:58.201 2024-02-25 18:03:58.201 1000 FEE 438514 20906 6065101 2024-02-25 18:03:58.201 2024-02-25 18:03:58.201 9000 TIP 438514 20756 6065111 2024-02-25 18:04:17.985 2024-02-25 18:04:17.985 1000 FEE 438512 11164 6065112 2024-02-25 18:04:17.985 2024-02-25 18:04:17.985 9000 TIP 438512 21201 6065146 2024-02-25 18:09:33.245 2024-02-25 18:09:33.245 100 FEE 438519 21269 6065147 2024-02-25 18:09:33.245 2024-02-25 18:09:33.245 900 TIP 438519 2703 6065148 2024-02-25 18:09:44.653 2024-02-25 18:09:44.653 1000 FEE 438523 716 6065151 2024-02-25 18:10:30.266 2024-02-25 18:10:30.266 10000 FEE 438524 1044 6065152 2024-02-25 18:10:39.044 2024-02-25 18:10:39.044 1000 FEE 438065 20754 6065153 2024-02-25 18:10:39.044 2024-02-25 18:10:39.044 9000 TIP 438065 14791 6065160 2024-02-25 18:11:36.305 2024-02-25 18:11:36.305 1000 FEE 438434 7773 6065161 2024-02-25 18:11:36.305 2024-02-25 18:11:36.305 9000 TIP 438434 12278 6065108 2024-02-25 18:04:03.795 2024-02-25 18:04:03.795 1000 STREAM 141924 20554 6065164 2024-02-25 18:12:03.883 2024-02-25 18:12:03.883 1000 STREAM 141924 21571 6065221 2024-02-25 18:15:05.923 2024-02-25 18:15:05.923 1000 STREAM 141924 21514 6124677 2024-03-01 12:57:03.673 2024-03-01 12:57:03.673 1000 STREAM 141924 3656 6124697 2024-03-01 13:00:05.761 2024-03-01 13:00:05.761 1000 STREAM 141924 21463 6124710 2024-03-01 13:03:03.727 2024-03-01 13:03:03.727 1000 STREAM 141924 21159 6124771 2024-03-01 13:06:03.779 2024-03-01 13:06:03.779 1000 STREAM 141924 1000 6124792 2024-03-01 13:08:03.791 2024-03-01 13:08:03.791 1000 STREAM 141924 16789 6124810 2024-03-01 13:10:03.846 2024-03-01 13:10:03.846 1000 STREAM 141924 16789 6124884 2024-03-01 13:16:03.841 2024-03-01 13:16:03.841 1000 STREAM 141924 11329 6124903 2024-03-01 13:19:03.853 2024-03-01 13:19:03.853 1000 STREAM 141924 16966 6124929 2024-03-01 13:22:03.895 2024-03-01 13:22:03.895 1000 STREAM 141924 21119 6124945 2024-03-01 13:23:03.96 2024-03-01 13:23:03.96 1000 STREAM 141924 2577 6125013 2024-03-01 13:26:03.949 2024-03-01 13:26:03.949 1000 STREAM 141924 1105 6125023 2024-03-01 13:27:05.939 2024-03-01 13:27:05.939 1000 STREAM 141924 12959 6125044 2024-03-01 13:32:02.009 2024-03-01 13:32:02.009 1000 STREAM 141924 18368 6125076 2024-03-01 13:34:04.002 2024-03-01 13:34:04.002 1000 STREAM 141924 6717 6125285 2024-03-01 13:37:04.029 2024-03-01 13:37:04.029 1000 STREAM 141924 929 6125332 2024-03-01 13:41:04.062 2024-03-01 13:41:04.062 1000 STREAM 141924 1145 6125351 2024-03-01 13:42:02.059 2024-03-01 13:42:02.059 1000 STREAM 141924 15045 6125377 2024-03-01 13:45:02.081 2024-03-01 13:45:02.081 1000 STREAM 141924 11450 6125387 2024-03-01 13:46:04.064 2024-03-01 13:46:04.064 1000 STREAM 141924 13348 6125428 2024-03-01 13:51:02.132 2024-03-01 13:51:02.132 1000 STREAM 141924 4079 6125432 2024-03-01 13:52:04.148 2024-03-01 13:52:04.148 1000 STREAM 141924 18068 6125446 2024-03-01 13:54:04.181 2024-03-01 13:54:04.181 1000 STREAM 141924 5759 6125453 2024-03-01 13:55:02.16 2024-03-01 13:55:02.16 1000 STREAM 141924 21485 6125589 2024-03-01 13:59:02.212 2024-03-01 13:59:02.212 1000 STREAM 141924 21119 6125650 2024-03-01 14:04:04.199 2024-03-01 14:04:04.199 1000 STREAM 141924 19864 6125660 2024-03-01 14:07:02.222 2024-03-01 14:07:02.222 1000 STREAM 141924 16848 6125684 2024-03-01 14:09:02.239 2024-03-01 14:09:02.239 1000 STREAM 141924 20276 6125709 2024-03-01 14:11:02.245 2024-03-01 14:11:02.245 1000 STREAM 141924 769 6125745 2024-03-01 14:14:02.279 2024-03-01 14:14:02.279 1000 STREAM 141924 18311 6125774 2024-03-01 14:17:04.282 2024-03-01 14:17:04.282 1000 STREAM 141924 9353 6125796 2024-03-01 14:20:02.357 2024-03-01 14:20:02.357 1000 STREAM 141924 14404 6125806 2024-03-01 14:21:04.349 2024-03-01 14:21:04.349 1000 STREAM 141924 2459 6125835 2024-03-01 14:25:04.383 2024-03-01 14:25:04.383 1000 STREAM 141924 18816 6125841 2024-03-01 14:26:02.394 2024-03-01 14:26:02.394 1000 STREAM 141924 7899 6125863 2024-03-01 14:30:02.47 2024-03-01 14:30:02.47 1000 STREAM 141924 632 6125881 2024-03-01 14:32:02.469 2024-03-01 14:32:02.469 1000 STREAM 141924 2326 6125891 2024-03-01 14:34:02.51 2024-03-01 14:34:02.51 1000 STREAM 141924 18704 6125907 2024-03-01 14:36:02.528 2024-03-01 14:36:02.528 1000 STREAM 141924 8472 6125972 2024-03-01 14:42:04.55 2024-03-01 14:42:04.55 1000 STREAM 141924 1094 6125977 2024-03-01 14:43:04.552 2024-03-01 14:43:04.552 1000 STREAM 141924 844 6126030 2024-03-01 14:48:04.577 2024-03-01 14:48:04.577 1000 STREAM 141924 16126 6126083 2024-03-01 14:54:04.611 2024-03-01 14:54:04.611 1000 STREAM 141924 1008 6126086 2024-03-01 14:55:04.609 2024-03-01 14:55:04.609 1000 STREAM 141924 20022 6126123 2024-03-01 14:57:04.618 2024-03-01 14:57:04.618 1000 STREAM 141924 16842 6126146 2024-03-01 15:01:04.623 2024-03-01 15:01:04.623 1000 STREAM 141924 18663 6065149 2024-02-25 18:10:03.598 2024-02-25 18:10:03.598 1000 STREAM 141924 725 6065225 2024-02-25 18:16:04.375 2024-02-25 18:16:04.375 1000 STREAM 141924 10981 6065229 2024-02-25 18:17:04.361 2024-02-25 18:17:04.361 1000 STREAM 141924 17212 6065329 2024-02-25 18:24:06.864 2024-02-25 18:24:06.864 1000 STREAM 141924 20479 6124705 2024-03-01 13:02:02.152 2024-03-01 13:02:02.152 1000 STREAM 141924 20381 6124717 2024-03-01 13:04:02.172 2024-03-01 13:04:02.172 1000 STREAM 141924 15337 6124823 2024-03-01 13:11:06.213 2024-03-01 13:11:06.213 1000 STREAM 141924 15521 6124902 2024-03-01 13:18:02.241 2024-03-01 13:18:02.241 1000 STREAM 141924 5825 6125004 2024-03-01 13:25:02.304 2024-03-01 13:25:02.304 1000 STREAM 141924 10273 6125035 2024-03-01 13:30:02.363 2024-03-01 13:30:02.363 1000 STREAM 141924 7903 6125308 2024-03-01 13:40:02.417 2024-03-01 13:40:02.417 1000 STREAM 141924 18743 6125358 2024-03-01 13:43:02.368 2024-03-01 13:43:02.368 1000 STREAM 141924 3745 6125399 2024-03-01 13:47:02.388 2024-03-01 13:47:02.388 1000 STREAM 141924 21022 6125438 2024-03-01 13:53:02.396 2024-03-01 13:53:02.396 1000 STREAM 141924 695 6125476 2024-03-01 13:56:02.404 2024-03-01 13:56:02.404 1000 STREAM 141924 10591 6125613 2024-03-01 14:00:02.48 2024-03-01 14:00:02.48 1000 STREAM 141924 5425 6125641 2024-03-01 14:02:02.431 2024-03-01 14:02:02.431 1000 STREAM 141924 12049 6125677 2024-03-01 14:08:02.475 2024-03-01 14:08:02.475 1000 STREAM 141924 19581 6125716 2024-03-01 14:12:02.508 2024-03-01 14:12:02.508 1000 STREAM 141924 17673 6125729 2024-03-01 14:13:02.526 2024-03-01 14:13:02.526 1000 STREAM 141924 4502 6125788 2024-03-01 14:19:02.588 2024-03-01 14:19:02.588 1000 STREAM 141924 2233 6125846 2024-03-01 14:27:02.642 2024-03-01 14:27:02.642 1000 STREAM 141924 2577 6125898 2024-03-01 14:35:02.693 2024-03-01 14:35:02.693 1000 STREAM 141924 12169 6125913 2024-03-01 14:38:02.713 2024-03-01 14:38:02.713 1000 STREAM 141924 5829 6125982 2024-03-01 14:44:02.853 2024-03-01 14:44:02.853 1000 STREAM 141924 17365 6125987 2024-03-01 14:45:02.844 2024-03-01 14:45:02.844 1000 STREAM 141924 21541 6125998 2024-03-01 14:46:02.846 2024-03-01 14:46:02.846 1000 STREAM 141924 20504 6126143 2024-03-01 15:00:02.986 2024-03-01 15:00:02.986 1000 STREAM 141924 16788 6065195 2024-02-25 18:13:05.824 2024-02-25 18:13:05.824 1000 FEE 437605 20412 6065196 2024-02-25 18:13:05.824 2024-02-25 18:13:05.824 9000 TIP 437605 725 6065207 2024-02-25 18:13:17.272 2024-02-25 18:13:17.272 10000 FEE 438232 19263 6065208 2024-02-25 18:13:17.272 2024-02-25 18:13:17.272 90000 TIP 438232 1585 6065218 2024-02-25 18:13:50.352 2024-02-25 18:13:50.352 1000 FEE 438531 2156 6065231 2024-02-25 18:17:45.34 2024-02-25 18:17:45.34 1000 FEE 438535 17714 6065237 2024-02-25 18:18:48.192 2024-02-25 18:18:48.192 100 FEE 438517 711 6065238 2024-02-25 18:18:48.192 2024-02-25 18:18:48.192 900 TIP 438517 20495 6065239 2024-02-25 18:18:48.447 2024-02-25 18:18:48.447 900 FEE 438517 632 6065240 2024-02-25 18:18:48.447 2024-02-25 18:18:48.447 8100 TIP 438517 16447 6065245 2024-02-25 18:18:55.654 2024-02-25 18:18:55.654 900 FEE 438507 9820 6065246 2024-02-25 18:18:55.654 2024-02-25 18:18:55.654 8100 TIP 438507 20585 6065250 2024-02-25 18:19:35.805 2024-02-25 18:19:35.805 1000 FEE 437616 5779 6065251 2024-02-25 18:19:35.805 2024-02-25 18:19:35.805 9000 TIP 437616 19967 6065266 2024-02-25 18:20:05.412 2024-02-25 18:20:05.412 2100 FEE 437533 21413 6065267 2024-02-25 18:20:05.412 2024-02-25 18:20:05.412 18900 TIP 437533 20310 6065268 2024-02-25 18:20:08.039 2024-02-25 18:20:08.039 1000 FEE 438538 1647 6065279 2024-02-25 18:21:31.843 2024-02-25 18:21:31.843 2100 FEE 438451 9350 6065280 2024-02-25 18:21:31.843 2024-02-25 18:21:31.843 18900 TIP 438451 20594 6065283 2024-02-25 18:22:23.266 2024-02-25 18:22:23.266 2100 FEE 438438 15239 6065284 2024-02-25 18:22:23.266 2024-02-25 18:22:23.266 18900 TIP 438438 15273 6065285 2024-02-25 18:22:36.238 2024-02-25 18:22:36.238 500 FEE 438065 17714 6065286 2024-02-25 18:22:36.238 2024-02-25 18:22:36.238 4500 TIP 438065 19809 6065337 2024-02-25 18:25:08.063 2024-02-25 18:25:08.063 500 FEE 438416 807 6065338 2024-02-25 18:25:08.063 2024-02-25 18:25:08.063 4500 TIP 438416 17800 6065352 2024-02-25 18:26:06.655 2024-02-25 18:26:06.655 1000 FEE 438523 9796 6065353 2024-02-25 18:26:06.655 2024-02-25 18:26:06.655 9000 TIP 438523 18667 6065364 2024-02-25 18:26:29.199 2024-02-25 18:26:29.199 1000 FEE 438544 19848 6065390 2024-02-25 18:27:12.837 2024-02-25 18:27:12.837 90000 FEE 438518 20276 6065391 2024-02-25 18:27:12.837 2024-02-25 18:27:12.837 810000 TIP 438518 12220 6065392 2024-02-25 18:27:18.135 2024-02-25 18:27:18.135 10000 FEE 438542 9171 6065393 2024-02-25 18:27:18.135 2024-02-25 18:27:18.135 90000 TIP 438542 5499 6065413 2024-02-25 18:30:49.668 2024-02-25 18:30:49.668 1000 FEE 438096 20990 6065414 2024-02-25 18:30:49.668 2024-02-25 18:30:49.668 9000 TIP 438096 7913 6065436 2024-02-25 18:36:58.238 2024-02-25 18:36:58.238 1000 FEE 438389 15213 6065437 2024-02-25 18:36:58.238 2024-02-25 18:36:58.238 9000 TIP 438389 1298 6065462 2024-02-25 18:38:42.889 2024-02-25 18:38:42.889 1000 FEE 438073 21262 6065463 2024-02-25 18:38:42.889 2024-02-25 18:38:42.889 9000 TIP 438073 5565 6065497 2024-02-25 18:46:57.069 2024-02-25 18:46:57.069 10000 FEE 438451 1814 6065498 2024-02-25 18:46:57.069 2024-02-25 18:46:57.069 90000 TIP 438451 12911 6065526 2024-02-25 18:53:51.412 2024-02-25 18:53:51.412 0 FEE 438565 959 6065571 2024-02-25 19:00:04.585 2024-02-25 19:00:04.585 100000 FEE 438571 20704 6065578 2024-02-25 19:00:16.096 2024-02-25 19:00:16.096 2200 FEE 438451 20717 6065579 2024-02-25 19:00:16.096 2024-02-25 19:00:16.096 19800 TIP 438451 19394 6065590 2024-02-25 19:01:44.367 2024-02-25 19:01:44.367 6900 FEE 437286 20179 6065591 2024-02-25 19:01:44.367 2024-02-25 19:01:44.367 62100 TIP 437286 21060 6065670 2024-02-25 19:13:45.491 2024-02-25 19:13:45.491 100 FEE 438546 11038 6065671 2024-02-25 19:13:45.491 2024-02-25 19:13:45.491 900 TIP 438546 4474 6065691 2024-02-25 19:18:12.453 2024-02-25 19:18:12.453 6900 FEE 438486 666 6065692 2024-02-25 19:18:12.453 2024-02-25 19:18:12.453 62100 TIP 438486 21585 6065695 2024-02-25 19:18:45.544 2024-02-25 19:18:45.544 6900 FEE 438467 15941 6065696 2024-02-25 19:18:45.544 2024-02-25 19:18:45.544 62100 TIP 438467 19286 6065719 2024-02-25 19:20:29.576 2024-02-25 19:20:29.576 5000 FEE 438388 19471 6065720 2024-02-25 19:20:29.576 2024-02-25 19:20:29.576 45000 TIP 438388 12346 6065730 2024-02-25 19:23:07.315 2024-02-25 19:23:07.315 1000 FEE 438587 20973 6065761 2024-02-25 19:24:09.528 2024-02-25 19:24:09.528 500 FEE 438567 19303 6065762 2024-02-25 19:24:09.528 2024-02-25 19:24:09.528 4500 TIP 438567 2056 6065763 2024-02-25 19:24:09.718 2024-02-25 19:24:09.718 500 FEE 438567 2528 6065764 2024-02-25 19:24:09.718 2024-02-25 19:24:09.718 4500 TIP 438567 20981 6124728 2024-03-01 13:04:24.412 2024-03-01 13:04:24.412 81000 TIP 444911 11561 6124742 2024-03-01 13:05:19.112 2024-03-01 13:05:19.112 4200 FEE 444949 822 6124743 2024-03-01 13:05:19.112 2024-03-01 13:05:19.112 37800 TIP 444949 994 6124751 2024-03-01 13:05:42.665 2024-03-01 13:05:42.665 1000 FEE 444616 16753 6124752 2024-03-01 13:05:42.665 2024-03-01 13:05:42.665 9000 TIP 444616 8729 6124761 2024-03-01 13:05:53.165 2024-03-01 13:05:53.165 3100 FEE 444874 3461 6124762 2024-03-01 13:05:53.165 2024-03-01 13:05:53.165 27900 TIP 444874 15336 6124767 2024-03-01 13:05:55.129 2024-03-01 13:05:55.129 27900 FEE 444874 19322 6124768 2024-03-01 13:05:55.129 2024-03-01 13:05:55.129 251100 TIP 444874 20585 6124812 2024-03-01 13:10:22.763 2024-03-01 13:10:22.763 100 FEE 444930 9969 6124813 2024-03-01 13:10:22.763 2024-03-01 13:10:22.763 900 TIP 444930 13076 6065219 2024-02-25 18:14:04.602 2024-02-25 18:14:04.602 1000 STREAM 141924 2256 6065247 2024-02-25 18:19:04.621 2024-02-25 18:19:04.621 1000 STREAM 141924 16296 6065282 2024-02-25 18:22:04.638 2024-02-25 18:22:04.638 1000 STREAM 141924 6030 6065347 2024-02-25 18:26:04.687 2024-02-25 18:26:04.687 1000 STREAM 141924 17817 6065389 2024-02-25 18:27:04.674 2024-02-25 18:27:04.674 1000 STREAM 141924 14545 6065397 2024-02-25 18:28:04.693 2024-02-25 18:28:04.693 1000 STREAM 141924 2431 6065408 2024-02-25 18:29:04.725 2024-02-25 18:29:04.725 1000 STREAM 141924 20619 6065410 2024-02-25 18:30:04.7 2024-02-25 18:30:04.7 1000 STREAM 141924 20208 6065415 2024-02-25 18:31:04.729 2024-02-25 18:31:04.729 1000 STREAM 141924 11491 6065418 2024-02-25 18:33:04.737 2024-02-25 18:33:04.737 1000 STREAM 141924 19888 6065421 2024-02-25 18:34:04.755 2024-02-25 18:34:04.755 1000 STREAM 141924 5538 6065429 2024-02-25 18:35:04.912 2024-02-25 18:35:04.912 1000 STREAM 141924 706 6065468 2024-02-25 18:39:04.79 2024-02-25 18:39:04.79 1000 STREAM 141924 2402 6065475 2024-02-25 18:40:02.796 2024-02-25 18:40:02.796 1000 STREAM 141924 8498 6124739 2024-03-01 13:05:01.921 2024-03-01 13:05:01.921 1000 STREAM 141924 16336 6124780 2024-03-01 13:07:01.904 2024-03-01 13:07:01.904 1000 STREAM 141924 627 6124860 2024-03-01 13:14:01.933 2024-03-01 13:14:01.933 1000 STREAM 141924 19886 6124875 2024-03-01 13:15:01.95 2024-03-01 13:15:01.95 1000 STREAM 141924 21064 6124906 2024-03-01 13:20:02.209 2024-03-01 13:20:02.209 1000 STREAM 141924 19622 6065258 2024-02-25 18:19:54.231 2024-02-25 18:19:54.231 100 FEE 438185 13327 6065259 2024-02-25 18:19:54.231 2024-02-25 18:19:54.231 900 TIP 438185 2046 6065260 2024-02-25 18:19:54.388 2024-02-25 18:19:54.388 900 FEE 438185 16842 6065261 2024-02-25 18:19:54.388 2024-02-25 18:19:54.388 8100 TIP 438185 20993 6065271 2024-02-25 18:20:53.986 2024-02-25 18:20:53.986 1000 FEE 438539 16754 6065274 2024-02-25 18:21:10.806 2024-02-25 18:21:10.806 2100 FEE 438448 1051 6065275 2024-02-25 18:21:10.806 2024-02-25 18:21:10.806 18900 TIP 438448 20636 6065287 2024-02-25 18:22:36.249 2024-02-25 18:22:36.249 2100 FEE 438397 13575 6065288 2024-02-25 18:22:36.249 2024-02-25 18:22:36.249 18900 TIP 438397 8535 6065299 2024-02-25 18:22:43.39 2024-02-25 18:22:43.39 500 FEE 438317 17162 6065300 2024-02-25 18:22:43.39 2024-02-25 18:22:43.39 4500 TIP 438317 5175 6065313 2024-02-25 18:23:00.927 2024-02-25 18:23:00.927 500 FEE 438390 21222 6065314 2024-02-25 18:23:00.927 2024-02-25 18:23:00.927 4500 TIP 438390 621 6065325 2024-02-25 18:23:31.559 2024-02-25 18:23:31.559 500 FEE 438358 3544 6065326 2024-02-25 18:23:31.559 2024-02-25 18:23:31.559 4500 TIP 438358 20018 6065358 2024-02-25 18:26:07.518 2024-02-25 18:26:07.518 1000 FEE 438523 886 6065359 2024-02-25 18:26:07.518 2024-02-25 18:26:07.518 9000 TIP 438523 18717 6065365 2024-02-25 18:26:30.06 2024-02-25 18:26:30.06 1000 FEE 438345 20744 6065366 2024-02-25 18:26:30.06 2024-02-25 18:26:30.06 9000 TIP 438345 10981 6065398 2024-02-25 18:28:21.916 2024-02-25 18:28:21.916 1000 FEE 438548 766 6065406 2024-02-25 18:28:48.346 2024-02-25 18:28:48.346 1000 FEE 438227 1488 6065407 2024-02-25 18:28:48.346 2024-02-25 18:28:48.346 9000 TIP 438227 1626 6065409 2024-02-25 18:29:50.247 2024-02-25 18:29:50.247 1000 FEE 438550 21422 6065428 2024-02-25 18:35:00.723 2024-02-25 18:35:00.723 1000 FEE 438552 18116 6065433 2024-02-25 18:36:10.149 2024-02-25 18:36:10.149 1000 FEE 438553 628 6065438 2024-02-25 18:36:58.553 2024-02-25 18:36:58.553 1000 FEE 438389 18470 6065439 2024-02-25 18:36:58.553 2024-02-25 18:36:58.553 9000 TIP 438389 9378 6065441 2024-02-25 18:37:10.099 2024-02-25 18:37:10.099 1000 FEE 438065 14258 6065442 2024-02-25 18:37:10.099 2024-02-25 18:37:10.099 9000 TIP 438065 20302 6065464 2024-02-25 18:38:57.567 2024-02-25 18:38:57.567 1000 FEE 438519 9107 6065465 2024-02-25 18:38:57.567 2024-02-25 18:38:57.567 9000 TIP 438519 19469 6065483 2024-02-25 18:42:00.527 2024-02-25 18:42:00.527 1700 FEE 436508 8059 6065484 2024-02-25 18:42:00.527 2024-02-25 18:42:00.527 15300 TIP 436508 20706 6065507 2024-02-25 18:48:50.939 2024-02-25 18:48:50.939 1000 FEE 438562 14037 6065509 2024-02-25 18:49:11.505 2024-02-25 18:49:11.505 1000 FEE 438563 9246 6065511 2024-02-25 18:50:31.998 2024-02-25 18:50:31.998 1000 POLL 438202 19640 6065528 2024-02-25 18:54:05.803 2024-02-25 18:54:05.803 2100 FEE 438065 20981 6065529 2024-02-25 18:54:05.803 2024-02-25 18:54:05.803 18900 TIP 438065 12921 6065530 2024-02-25 18:54:59.99 2024-02-25 18:54:59.99 100 FEE 433042 10493 6065531 2024-02-25 18:54:59.99 2024-02-25 18:54:59.99 900 TIP 433042 9246 6065559 2024-02-25 18:59:27.338 2024-02-25 18:59:27.338 4000 FEE 438570 21589 6065560 2024-02-25 18:59:27.338 2024-02-25 18:59:27.338 36000 TIP 438570 21619 6065563 2024-02-25 18:59:39.189 2024-02-25 18:59:39.189 10000 FEE 438459 18608 6065564 2024-02-25 18:59:39.189 2024-02-25 18:59:39.189 90000 TIP 438459 12821 6065588 2024-02-25 19:01:35.27 2024-02-25 19:01:35.27 6900 FEE 437303 17275 6065589 2024-02-25 19:01:35.27 2024-02-25 19:01:35.27 62100 TIP 437303 21201 6065609 2024-02-25 19:06:25.671 2024-02-25 19:06:25.671 1000 FEE 438576 18736 6065612 2024-02-25 19:06:35.221 2024-02-25 19:06:35.221 1000 FEE 438577 2639 6065629 2024-02-25 19:08:33.464 2024-02-25 19:08:33.464 5000 FEE 438404 5449 6065630 2024-02-25 19:08:33.464 2024-02-25 19:08:33.464 45000 TIP 438404 18608 6065645 2024-02-25 19:11:00.405 2024-02-25 19:11:00.405 1000 POLL 438325 807 6065649 2024-02-25 19:13:12.158 2024-02-25 19:13:12.158 1000 FEE 438582 6537 6065654 2024-02-25 19:13:42.614 2024-02-25 19:13:42.614 100 FEE 438546 18524 6065655 2024-02-25 19:13:42.614 2024-02-25 19:13:42.614 900 TIP 438546 19320 6065717 2024-02-25 19:19:31.357 2024-02-25 19:19:31.357 1000 FEE 438585 3729 6065727 2024-02-25 19:22:45.118 2024-02-25 19:22:45.118 5000 FEE 438317 4973 6065728 2024-02-25 19:22:45.118 2024-02-25 19:22:45.118 45000 TIP 438317 19484 6065753 2024-02-25 19:24:00.399 2024-02-25 19:24:00.399 1100 FEE 438414 4083 6065754 2024-02-25 19:24:00.399 2024-02-25 19:24:00.399 9900 TIP 438414 18717 6065770 2024-02-25 19:25:51.585 2024-02-25 19:25:51.585 800 FEE 438451 17953 6065771 2024-02-25 19:25:51.585 2024-02-25 19:25:51.585 7200 TIP 438451 18769 6065814 2024-02-25 19:31:18.121 2024-02-25 19:31:18.121 10000 FEE 438592 8569 6065877 2024-02-25 19:37:47.926 2024-02-25 19:37:47.926 1000 FEE 438367 5728 6065878 2024-02-25 19:37:47.926 2024-02-25 19:37:47.926 9000 TIP 438367 18392 6065885 2024-02-25 19:37:48.705 2024-02-25 19:37:48.705 1000 FEE 438367 9275 6065886 2024-02-25 19:37:48.705 2024-02-25 19:37:48.705 9000 TIP 438367 1298 6065895 2024-02-25 19:37:49.833 2024-02-25 19:37:49.833 1000 FEE 438367 1090 6065339 2024-02-25 18:25:08.645 2024-02-25 18:25:08.645 1000 STREAM 141924 18659 6065417 2024-02-25 18:32:04.724 2024-02-25 18:32:04.724 1000 STREAM 141924 18470 6065489 2024-02-25 18:45:04.84 2024-02-25 18:45:04.84 1000 STREAM 141924 17541 6065501 2024-02-25 18:47:04.827 2024-02-25 18:47:04.827 1000 STREAM 141924 10611 6065504 2024-02-25 18:48:04.843 2024-02-25 18:48:04.843 1000 STREAM 141924 19329 6065510 2024-02-25 18:50:04.872 2024-02-25 18:50:04.872 1000 STREAM 141924 1620 6065513 2024-02-25 18:51:04.885 2024-02-25 18:51:04.885 1000 STREAM 141924 1729 6065516 2024-02-25 18:53:04.869 2024-02-25 18:53:04.869 1000 STREAM 141924 1632 6065527 2024-02-25 18:54:04.876 2024-02-25 18:54:04.876 1000 STREAM 141924 6687 6065538 2024-02-25 18:57:04.885 2024-02-25 18:57:04.885 1000 STREAM 141924 21522 6065553 2024-02-25 18:58:04.873 2024-02-25 18:58:04.873 1000 STREAM 141924 18731 6065558 2024-02-25 18:59:04.891 2024-02-25 18:59:04.891 1000 STREAM 141924 12368 6065592 2024-02-25 19:02:02.9 2024-02-25 19:02:02.9 1000 STREAM 141924 10359 6065596 2024-02-25 19:03:04.909 2024-02-25 19:03:04.909 1000 STREAM 141924 889 6065608 2024-02-25 19:06:02.916 2024-02-25 19:06:02.916 1000 STREAM 141924 7425 6065647 2024-02-25 19:12:02.942 2024-02-25 19:12:02.942 1000 STREAM 141924 19043 6065672 2024-02-25 19:14:02.959 2024-02-25 19:14:02.959 1000 STREAM 141924 11018 6065675 2024-02-25 19:15:02.956 2024-02-25 19:15:02.956 1000 STREAM 141924 18262 6065679 2024-02-25 19:17:02.956 2024-02-25 19:17:02.956 1000 STREAM 141924 18270 6065718 2024-02-25 19:20:04.978 2024-02-25 19:20:04.978 1000 STREAM 141924 13547 6065729 2024-02-25 19:23:05.004 2024-02-25 19:23:05.004 1000 STREAM 141924 2390 6065776 2024-02-25 19:27:05.055 2024-02-25 19:27:05.055 1000 STREAM 141924 18380 6124750 2024-03-01 13:05:38.088 2024-03-01 13:05:38.088 9000 TIP 444616 19785 6124757 2024-03-01 13:05:48.095 2024-03-01 13:05:48.095 3100 FEE 444943 5828 6124758 2024-03-01 13:05:48.095 2024-03-01 13:05:48.095 27900 TIP 444943 5036 6124830 2024-03-01 13:12:10.542 2024-03-01 13:12:10.542 100 FEE 444929 5725 6124831 2024-03-01 13:12:10.542 2024-03-01 13:12:10.542 900 TIP 444929 1471 6124849 2024-03-01 13:13:29.275 2024-03-01 13:13:29.275 2100 FEE 444948 7809 6124850 2024-03-01 13:13:29.275 2024-03-01 13:13:29.275 18900 TIP 444948 20073 6124855 2024-03-01 13:13:38.473 2024-03-01 13:13:38.473 900 FEE 444755 18507 6124856 2024-03-01 13:13:38.473 2024-03-01 13:13:38.473 8100 TIP 444755 9349 6124869 2024-03-01 13:14:11.21 2024-03-01 13:14:11.21 2100 FEE 444874 627 6124870 2024-03-01 13:14:11.21 2024-03-01 13:14:11.21 18900 TIP 444874 16788 6124878 2024-03-01 13:15:17.908 2024-03-01 13:15:17.908 100 FEE 444896 776 6124879 2024-03-01 13:15:17.908 2024-03-01 13:15:17.908 900 TIP 444896 19777 6124885 2024-03-01 13:16:16.876 2024-03-01 13:16:16.876 1000 FEE 444961 7119 6124890 2024-03-01 13:17:33.793 2024-03-01 13:17:33.793 100 FEE 444695 4984 6124891 2024-03-01 13:17:33.793 2024-03-01 13:17:33.793 900 TIP 444695 21070 6124904 2024-03-01 13:19:47.953 2024-03-01 13:19:47.953 1000 FEE 444948 12606 6124905 2024-03-01 13:19:47.953 2024-03-01 13:19:47.953 9000 TIP 444948 7766 6124927 2024-03-01 13:21:09.163 2024-03-01 13:21:09.163 1000 FEE 444963 15139 6124958 2024-03-01 13:23:33.471 2024-03-01 13:23:33.471 5000 FEE 444928 21492 6124959 2024-03-01 13:23:33.471 2024-03-01 13:23:33.471 45000 TIP 444928 20897 6124990 2024-03-01 13:24:12.666 2024-03-01 13:24:12.666 1000 FEE 444926 21600 6124991 2024-03-01 13:24:12.666 2024-03-01 13:24:12.666 9000 TIP 444926 21469 6125054 2024-03-01 13:33:06.234 2024-03-01 13:33:06.234 100 FEE 444744 19044 6125055 2024-03-01 13:33:06.234 2024-03-01 13:33:06.234 900 TIP 444744 11423 6125059 2024-03-01 13:33:48.506 2024-03-01 13:33:48.506 7700 FEE 444968 651 6125060 2024-03-01 13:33:48.506 2024-03-01 13:33:48.506 69300 TIP 444968 987 6125061 2024-03-01 13:33:48.8 2024-03-01 13:33:48.8 7700 FEE 444968 13798 6125062 2024-03-01 13:33:48.8 2024-03-01 13:33:48.8 69300 TIP 444968 16848 6125079 2024-03-01 13:34:08.712 2024-03-01 13:34:08.712 7700 FEE 444874 11165 6125080 2024-03-01 13:34:08.712 2024-03-01 13:34:08.712 69300 TIP 444874 16543 6125105 2024-03-01 13:34:22.095 2024-03-01 13:34:22.095 6900 FEE 444950 9332 6125106 2024-03-01 13:34:22.095 2024-03-01 13:34:22.095 62100 TIP 444950 2583 6125123 2024-03-01 13:34:25.041 2024-03-01 13:34:25.041 6900 FEE 444950 854 6125124 2024-03-01 13:34:25.041 2024-03-01 13:34:25.041 62100 TIP 444950 21401 6125165 2024-03-01 13:35:47.908 2024-03-01 13:35:47.908 7700 FEE 444921 20573 6125166 2024-03-01 13:35:47.908 2024-03-01 13:35:47.908 69300 TIP 444921 15588 6125186 2024-03-01 13:35:53.814 2024-03-01 13:35:53.814 7700 FEE 444911 6537 6125187 2024-03-01 13:35:53.814 2024-03-01 13:35:53.814 69300 TIP 444911 979 6125190 2024-03-01 13:35:53.862 2024-03-01 13:35:53.862 7700 FEE 444911 2328 6125191 2024-03-01 13:35:53.862 2024-03-01 13:35:53.862 69300 TIP 444911 8448 6125202 2024-03-01 13:35:54.894 2024-03-01 13:35:54.894 7700 FEE 444911 20889 6125203 2024-03-01 13:35:54.894 2024-03-01 13:35:54.894 69300 TIP 444911 5806 6065341 2024-02-25 18:25:51.833 2024-02-25 18:25:51.833 1000 FEE 438535 19815 6065342 2024-02-25 18:25:51.833 2024-02-25 18:25:51.833 9000 TIP 438535 21398 6065354 2024-02-25 18:26:06.87 2024-02-25 18:26:06.87 1000 FEE 438451 16351 6065355 2024-02-25 18:26:06.87 2024-02-25 18:26:06.87 9000 TIP 438451 18138 6065402 2024-02-25 18:28:45.228 2024-02-25 18:28:45.228 1000 FEE 438159 985 6065403 2024-02-25 18:28:45.228 2024-02-25 18:28:45.228 9000 TIP 438159 19494 6065443 2024-02-25 18:37:14.484 2024-02-25 18:37:14.484 1000 FEE 438092 993 6065444 2024-02-25 18:37:14.484 2024-02-25 18:37:14.484 9000 TIP 438092 9036 6065447 2024-02-25 18:37:20.924 2024-02-25 18:37:20.924 1000 FEE 438325 13348 6065448 2024-02-25 18:37:20.924 2024-02-25 18:37:20.924 9000 TIP 438325 18008 6065469 2024-02-25 18:39:10.161 2024-02-25 18:39:10.161 1000 FEE 438554 19524 6065540 2024-02-25 18:57:38.729 2024-02-25 18:57:38.729 200 FEE 438533 19661 6065541 2024-02-25 18:57:38.729 2024-02-25 18:57:38.729 1800 TIP 438533 14906 6065552 2024-02-25 18:57:53.868 2024-02-25 18:57:53.868 1000 POLL 438325 12291 6065580 2024-02-25 19:00:17.709 2024-02-25 19:00:17.709 1100 FEE 438451 18409 6065581 2024-02-25 19:00:17.709 2024-02-25 19:00:17.709 9900 TIP 438451 21164 6065584 2024-02-25 19:00:17.916 2024-02-25 19:00:17.916 1100 FEE 438451 21334 6065585 2024-02-25 19:00:17.916 2024-02-25 19:00:17.916 9900 TIP 438451 15560 6124788 2024-03-01 13:07:41.398 2024-03-01 13:07:41.398 900 TIP 444647 21571 6124802 2024-03-01 13:09:14.526 2024-03-01 13:09:14.526 900 FEE 444656 1213 6124803 2024-03-01 13:09:14.526 2024-03-01 13:09:14.526 8100 TIP 444656 17227 6124816 2024-03-01 13:10:39.039 2024-03-01 13:10:39.039 900 FEE 444694 18679 6124817 2024-03-01 13:10:39.039 2024-03-01 13:10:39.039 8100 TIP 444694 5069 6124826 2024-03-01 13:11:30.746 2024-03-01 13:11:30.746 2100 FEE 444956 6327 6124827 2024-03-01 13:11:30.746 2024-03-01 13:11:30.746 18900 TIP 444956 19435 6124842 2024-03-01 13:12:48.187 2024-03-01 13:12:48.187 100 FEE 444715 20251 6124843 2024-03-01 13:12:48.187 2024-03-01 13:12:48.187 900 TIP 444715 18837 6124846 2024-03-01 13:12:53.275 2024-03-01 13:12:53.275 9000 FEE 444715 1552 6124847 2024-03-01 13:12:53.275 2024-03-01 13:12:53.275 81000 TIP 444715 1060 6124853 2024-03-01 13:13:38.251 2024-03-01 13:13:38.251 100 FEE 444755 882 6124854 2024-03-01 13:13:38.251 2024-03-01 13:13:38.251 900 TIP 444755 19806 6124876 2024-03-01 13:15:04.383 2024-03-01 13:15:04.383 2100 FEE 444933 19193 6124877 2024-03-01 13:15:04.383 2024-03-01 13:15:04.383 18900 TIP 444933 19583 6124954 2024-03-01 13:23:23.65 2024-03-01 13:23:23.65 5000 FEE 444928 11897 6124955 2024-03-01 13:23:23.65 2024-03-01 13:23:23.65 45000 TIP 444928 14650 6124956 2024-03-01 13:23:25.35 2024-03-01 13:23:25.35 3100 FEE 444960 16194 6124957 2024-03-01 13:23:25.35 2024-03-01 13:23:25.35 27900 TIP 444960 6594 6124960 2024-03-01 13:23:36.49 2024-03-01 13:23:36.49 1100 FEE 444874 14037 6124961 2024-03-01 13:23:36.49 2024-03-01 13:23:36.49 9900 TIP 444874 701 6124988 2024-03-01 13:24:11.934 2024-03-01 13:24:11.934 1000 FEE 444926 18735 6124989 2024-03-01 13:24:11.934 2024-03-01 13:24:11.934 9000 TIP 444926 18731 6125016 2024-03-01 13:26:11.693 2024-03-01 13:26:11.693 900 FEE 444561 19689 6125017 2024-03-01 13:26:11.693 2024-03-01 13:26:11.693 8100 TIP 444561 20225 6125032 2024-03-01 13:29:20.426 2024-03-01 13:29:20.426 0 FEE 444969 8541 6125052 2024-03-01 13:33:05.6 2024-03-01 13:33:05.6 100 FEE 444744 965 6125053 2024-03-01 13:33:05.6 2024-03-01 13:33:05.6 900 TIP 444744 21356 6125097 2024-03-01 13:34:20.863 2024-03-01 13:34:20.863 6900 FEE 444950 5522 6125098 2024-03-01 13:34:20.863 2024-03-01 13:34:20.863 62100 TIP 444950 4084 6125103 2024-03-01 13:34:21.966 2024-03-01 13:34:21.966 6900 FEE 444950 12356 6125104 2024-03-01 13:34:21.966 2024-03-01 13:34:21.966 62100 TIP 444950 20680 6125111 2024-03-01 13:34:23.155 2024-03-01 13:34:23.155 6900 FEE 444950 21466 6125112 2024-03-01 13:34:23.155 2024-03-01 13:34:23.155 62100 TIP 444950 12139 6125115 2024-03-01 13:34:23.497 2024-03-01 13:34:23.497 6900 FEE 444950 756 6125116 2024-03-01 13:34:23.497 2024-03-01 13:34:23.497 62100 TIP 444950 992 6125117 2024-03-01 13:34:23.685 2024-03-01 13:34:23.685 6900 FEE 444950 1120 6125118 2024-03-01 13:34:23.685 2024-03-01 13:34:23.685 62100 TIP 444950 18180 6065405 2024-02-25 18:28:46.482 2024-02-25 18:28:46.482 9000 TIP 438168 6160 6065445 2024-02-25 18:37:16.535 2024-02-25 18:37:16.535 1000 FEE 437723 16948 6065446 2024-02-25 18:37:16.535 2024-02-25 18:37:16.535 9000 TIP 437723 7510 6065505 2024-02-25 18:48:34.112 2024-02-25 18:48:34.112 300 FEE 438490 2264 6065506 2024-02-25 18:48:34.112 2024-02-25 18:48:34.112 2700 TIP 438490 11992 6065537 2024-02-25 18:56:32.232 2024-02-25 18:56:32.232 1000 FEE 438568 6421 6065539 2024-02-25 18:57:12.545 2024-02-25 18:57:12.545 1000 POLL 438202 19494 6065554 2024-02-25 18:58:51.046 2024-02-25 18:58:51.046 1000 FEE 438444 6148 6065555 2024-02-25 18:58:51.046 2024-02-25 18:58:51.046 9000 TIP 438444 19995 6065561 2024-02-25 18:59:35.393 2024-02-25 18:59:35.393 100 FEE 438551 18460 6065562 2024-02-25 18:59:35.393 2024-02-25 18:59:35.393 900 TIP 438551 977 6065574 2024-02-25 19:00:15.576 2024-02-25 19:00:15.576 1100 FEE 438451 1745 6065575 2024-02-25 19:00:15.576 2024-02-25 19:00:15.576 9900 TIP 438451 16809 6065576 2024-02-25 19:00:15.644 2024-02-25 19:00:15.644 1100 FEE 438451 14651 6065577 2024-02-25 19:00:15.644 2024-02-25 19:00:15.644 9900 TIP 438451 1603 6065582 2024-02-25 19:00:17.792 2024-02-25 19:00:17.792 1100 FEE 438451 21343 6065583 2024-02-25 19:00:17.792 2024-02-25 19:00:17.792 9900 TIP 438451 19773 6065624 2024-02-25 19:08:09.603 2024-02-25 19:08:09.603 1000 FEE 438579 5449 6065625 2024-02-25 19:08:13.85 2024-02-25 19:08:13.85 2100 FEE 438568 16230 6065626 2024-02-25 19:08:13.85 2024-02-25 19:08:13.85 18900 TIP 438568 6041 6065632 2024-02-25 19:09:17.476 2024-02-25 19:09:17.476 2100 FEE 438487 19689 6065633 2024-02-25 19:09:17.476 2024-02-25 19:09:17.476 18900 TIP 438487 18533 6065682 2024-02-25 19:17:25.096 2024-02-25 19:17:25.096 777700 FEE 438429 21208 6065683 2024-02-25 19:17:25.096 2024-02-25 19:17:25.096 6999300 TIP 438429 12609 6065699 2024-02-25 19:18:46.21 2024-02-25 19:18:46.21 6900 FEE 438467 4958 6065700 2024-02-25 19:18:46.21 2024-02-25 19:18:46.21 62100 TIP 438467 1626 6065713 2024-02-25 19:18:51.906 2024-02-25 19:18:51.906 6900 FEE 438556 20153 6065714 2024-02-25 19:18:51.906 2024-02-25 19:18:51.906 62100 TIP 438556 18220 6065721 2024-02-25 19:20:31.686 2024-02-25 19:20:31.686 0 FEE 169365 17953 6065745 2024-02-25 19:23:52.613 2024-02-25 19:23:52.613 2100 FEE 438587 2061 6065746 2024-02-25 19:23:52.613 2024-02-25 19:23:52.613 18900 TIP 438587 20636 6065757 2024-02-25 19:24:00.735 2024-02-25 19:24:00.735 1100 FEE 438414 18448 6065758 2024-02-25 19:24:00.735 2024-02-25 19:24:00.735 9900 TIP 438414 12346 6065765 2024-02-25 19:24:17.495 2024-02-25 19:24:17.495 0 FEE 438588 20036 6065792 2024-02-25 19:28:13.298 2024-02-25 19:28:13.298 6900 FEE 438504 891 6065793 2024-02-25 19:28:13.298 2024-02-25 19:28:13.298 62100 TIP 438504 20854 6065796 2024-02-25 19:28:28.109 2024-02-25 19:28:28.109 0 FEE 438588 14202 6065799 2024-02-25 19:29:06.103 2024-02-25 19:29:06.103 1000 FEE 438590 1002 6065810 2024-02-25 19:29:44.975 2024-02-25 19:29:44.975 1000 FEE 438325 18601 6065811 2024-02-25 19:29:44.975 2024-02-25 19:29:44.975 9000 TIP 438325 19813 6065816 2024-02-25 19:32:06.323 2024-02-25 19:32:06.323 1000 POLL 438325 18291 6065829 2024-02-25 19:34:28.95 2024-02-25 19:34:28.95 1000 POLL 438325 1493 6065837 2024-02-25 19:36:32.156 2024-02-25 19:36:32.156 2100 FEE 438486 8544 6065838 2024-02-25 19:36:32.156 2024-02-25 19:36:32.156 18900 TIP 438486 20218 6065840 2024-02-25 19:36:42.79 2024-02-25 19:36:42.79 1000 FEE 438594 711 6065857 2024-02-25 19:37:26.767 2024-02-25 19:37:26.767 1000 FEE 438092 20326 6065858 2024-02-25 19:37:26.767 2024-02-25 19:37:26.767 9000 TIP 438092 19193 6065865 2024-02-25 19:37:35.554 2024-02-25 19:37:35.554 100 FEE 438583 19796 6065866 2024-02-25 19:37:35.554 2024-02-25 19:37:35.554 900 TIP 438583 827 6065870 2024-02-25 19:37:36.623 2024-02-25 19:37:36.623 9000 FEE 438583 18235 6065871 2024-02-25 19:37:36.623 2024-02-25 19:37:36.623 81000 TIP 438583 18557 6065883 2024-02-25 19:37:48.547 2024-02-25 19:37:48.547 1000 FEE 438367 20450 6065884 2024-02-25 19:37:48.547 2024-02-25 19:37:48.547 9000 TIP 438367 1505 6065891 2024-02-25 19:37:49.315 2024-02-25 19:37:49.315 1000 FEE 438367 21058 6065892 2024-02-25 19:37:49.315 2024-02-25 19:37:49.315 9000 TIP 438367 16665 6065899 2024-02-25 19:37:50.225 2024-02-25 19:37:50.225 1000 FEE 438367 17050 6065900 2024-02-25 19:37:50.225 2024-02-25 19:37:50.225 9000 TIP 438367 19967 6065913 2024-02-25 19:37:51.796 2024-02-25 19:37:51.796 1000 FEE 438367 620 6065914 2024-02-25 19:37:51.796 2024-02-25 19:37:51.796 9000 TIP 438367 9433 6065943 2024-02-25 19:37:54.368 2024-02-25 19:37:54.368 1000 FEE 438367 9184 6065944 2024-02-25 19:37:54.368 2024-02-25 19:37:54.368 9000 TIP 438367 7766 6065967 2024-02-25 19:43:12.494 2024-02-25 19:43:12.494 1000 FEE 438596 20812 6065432 2024-02-25 18:36:04.551 2024-02-25 18:36:04.551 1000 STREAM 141924 17166 6065440 2024-02-25 18:37:04.569 2024-02-25 18:37:04.569 1000 STREAM 141924 777 6065457 2024-02-25 18:38:04.613 2024-02-25 18:38:04.613 1000 STREAM 141924 16571 6065487 2024-02-25 18:43:06.168 2024-02-25 18:43:06.168 1000 STREAM 141924 686 6065488 2024-02-25 18:44:06.149 2024-02-25 18:44:06.149 1000 STREAM 141924 20291 6124797 2024-03-01 13:09:06.2 2024-03-01 13:09:06.2 1000 STREAM 141924 16753 6124828 2024-03-01 13:12:02.208 2024-03-01 13:12:02.208 1000 STREAM 141924 15337 6124888 2024-03-01 13:17:02.245 2024-03-01 13:17:02.245 1000 STREAM 141924 19142 6125027 2024-03-01 13:28:02.309 2024-03-01 13:28:02.309 1000 STREAM 141924 4115 6125047 2024-03-01 13:33:02.335 2024-03-01 13:33:02.335 1000 STREAM 141924 21416 6125135 2024-03-01 13:35:02.337 2024-03-01 13:35:02.337 1000 STREAM 141924 18423 6125218 2024-03-01 13:36:02.338 2024-03-01 13:36:02.338 1000 STREAM 141924 11240 6125287 2024-03-01 13:38:02.348 2024-03-01 13:38:02.348 1000 STREAM 141924 1307 6125406 2024-03-01 13:49:02.381 2024-03-01 13:49:02.381 1000 STREAM 141924 10291 6125537 2024-03-01 13:58:02.42 2024-03-01 13:58:02.42 1000 STREAM 141924 6653 6125658 2024-03-01 14:06:02.469 2024-03-01 14:06:02.469 1000 STREAM 141924 21371 6125689 2024-03-01 14:10:02.521 2024-03-01 14:10:02.521 1000 STREAM 141924 17041 6065454 2024-02-25 18:37:48.098 2024-02-25 18:37:48.098 9000 TIP 438434 5565 6065455 2024-02-25 18:37:49.5 2024-02-25 18:37:49.5 1000 FEE 438469 15762 6065456 2024-02-25 18:37:49.5 2024-02-25 18:37:49.5 9000 TIP 438469 8269 6065460 2024-02-25 18:38:34.207 2024-02-25 18:38:34.207 1000 FEE 438393 889 6065461 2024-02-25 18:38:34.207 2024-02-25 18:38:34.207 9000 TIP 438393 20495 6065476 2024-02-25 18:40:12.019 2024-02-25 18:40:12.019 100000 FEE 438451 12768 6065477 2024-02-25 18:40:12.019 2024-02-25 18:40:12.019 900000 TIP 438451 2039 6065479 2024-02-25 18:41:06.477 2024-02-25 18:41:06.477 1000 FEE 438556 10519 6065490 2024-02-25 18:45:50.664 2024-02-25 18:45:50.664 1000 FEE 438559 7675 6065494 2024-02-25 18:46:25.387 2024-02-25 18:46:25.387 1000 FEE 438560 4831 6065519 2024-02-25 18:53:13.237 2024-02-25 18:53:13.237 4000 FEE 438560 636 6065520 2024-02-25 18:53:13.237 2024-02-25 18:53:13.237 36000 TIP 438560 20782 6065521 2024-02-25 18:53:24.545 2024-02-25 18:53:24.545 1000 FEE 438565 17517 6065533 2024-02-25 18:55:21.533 2024-02-25 18:55:21.533 1000 FEE 438566 4177 6065545 2024-02-25 18:57:41.072 2024-02-25 18:57:41.072 200 FEE 438533 658 6065546 2024-02-25 18:57:41.072 2024-02-25 18:57:41.072 1800 TIP 438533 21248 6065549 2024-02-25 18:57:42.496 2024-02-25 18:57:42.496 200 FEE 438533 16485 6065550 2024-02-25 18:57:42.496 2024-02-25 18:57:42.496 1800 TIP 438533 6136 6065567 2024-02-25 18:59:53.958 2024-02-25 18:59:53.958 500 FEE 438440 10934 6065568 2024-02-25 18:59:53.958 2024-02-25 18:59:53.958 4500 TIP 438440 21090 6065613 2024-02-25 19:06:42.103 2024-02-25 19:06:42.103 1000 FEE 438578 777 6065614 2024-02-25 19:06:51.903 2024-02-25 19:06:51.903 2100 FEE 438494 11275 6065615 2024-02-25 19:06:51.903 2024-02-25 19:06:51.903 18900 TIP 438494 18601 6065636 2024-02-25 19:09:33.269 2024-02-25 19:09:33.269 2100 FEE 438447 15732 6065637 2024-02-25 19:09:33.269 2024-02-25 19:09:33.269 18900 TIP 438447 18641 6065651 2024-02-25 19:13:41.671 2024-02-25 19:13:41.671 0 FEE 438582 10291 6065658 2024-02-25 19:13:42.971 2024-02-25 19:13:42.971 100 FEE 438546 19044 6065659 2024-02-25 19:13:42.971 2024-02-25 19:13:42.971 900 TIP 438546 919 6065673 2024-02-25 19:14:13.776 2024-02-25 19:14:13.776 0 FEE 438582 19572 6065674 2024-02-25 19:14:43.859 2024-02-25 19:14:43.859 21000 FEE 438583 19507 6065693 2024-02-25 19:18:25.009 2024-02-25 19:18:25.009 1000 FEE 438572 667 6065694 2024-02-25 19:18:25.009 2024-02-25 19:18:25.009 9000 TIP 438572 2710 6065707 2024-02-25 19:18:51.468 2024-02-25 19:18:51.468 6900 FEE 438556 848 6065708 2024-02-25 19:18:51.468 2024-02-25 19:18:51.468 62100 TIP 438556 4958 6065709 2024-02-25 19:18:51.608 2024-02-25 19:18:51.608 6900 FEE 438556 12277 6065710 2024-02-25 19:18:51.608 2024-02-25 19:18:51.608 62100 TIP 438556 16670 6065747 2024-02-25 19:23:57.796 2024-02-25 19:23:57.796 1100 FEE 438405 16276 6065748 2024-02-25 19:23:57.796 2024-02-25 19:23:57.796 9900 TIP 438405 674 6065777 2024-02-25 19:27:26.163 2024-02-25 19:27:26.163 0 FEE 438588 3706 6065778 2024-02-25 19:28:02.328 2024-02-25 19:28:02.328 6900 FEE 438504 12808 6065779 2024-02-25 19:28:02.328 2024-02-25 19:28:02.328 62100 TIP 438504 18068 6065782 2024-02-25 19:28:02.84 2024-02-25 19:28:02.84 6900 FEE 438504 20812 6065783 2024-02-25 19:28:02.84 2024-02-25 19:28:02.84 62100 TIP 438504 9551 6065794 2024-02-25 19:28:13.786 2024-02-25 19:28:13.786 6900 FEE 438504 715 6065795 2024-02-25 19:28:13.786 2024-02-25 19:28:13.786 62100 TIP 438504 986 6065808 2024-02-25 19:29:44.359 2024-02-25 19:29:44.359 1000 FEE 438317 859 6065809 2024-02-25 19:29:44.359 2024-02-25 19:29:44.359 9000 TIP 438317 626 6065831 2024-02-25 19:35:23.523 2024-02-25 19:35:23.523 1600 FEE 438504 16355 6065832 2024-02-25 19:35:23.523 2024-02-25 19:35:23.523 14400 TIP 438504 628 6065845 2024-02-25 19:37:09.17 2024-02-25 19:37:09.17 900 FEE 438571 12965 6065846 2024-02-25 19:37:09.17 2024-02-25 19:37:09.17 8100 TIP 438571 2620 6065853 2024-02-25 19:37:24.71 2024-02-25 19:37:24.71 1000 FEE 438390 712 6065854 2024-02-25 19:37:24.71 2024-02-25 19:37:24.71 9000 TIP 438390 17064 6065873 2024-02-25 19:37:47.53 2024-02-25 19:37:47.53 1000 FEE 438367 11038 6065874 2024-02-25 19:37:47.53 2024-02-25 19:37:47.53 9000 TIP 438367 18745 6065907 2024-02-25 19:37:51.148 2024-02-25 19:37:51.148 1000 FEE 438367 15526 6065908 2024-02-25 19:37:51.148 2024-02-25 19:37:51.148 9000 TIP 438367 9150 6065921 2024-02-25 19:37:52.261 2024-02-25 19:37:52.261 900 FEE 438438 20222 6065922 2024-02-25 19:37:52.261 2024-02-25 19:37:52.261 8100 TIP 438438 7989 6065923 2024-02-25 19:37:52.423 2024-02-25 19:37:52.423 1000 FEE 438367 1705 6065924 2024-02-25 19:37:52.423 2024-02-25 19:37:52.423 9000 TIP 438367 8287 6065931 2024-02-25 19:37:53.185 2024-02-25 19:37:53.185 1000 FEE 438367 9427 6065932 2024-02-25 19:37:53.185 2024-02-25 19:37:53.185 9000 TIP 438367 18372 6065937 2024-02-25 19:37:53.675 2024-02-25 19:37:53.675 1000 FEE 438367 656 6065938 2024-02-25 19:37:53.675 2024-02-25 19:37:53.675 9000 TIP 438367 19153 6065941 2024-02-25 19:37:54.123 2024-02-25 19:37:54.123 1000 FEE 438367 10731 6065942 2024-02-25 19:37:54.123 2024-02-25 19:37:54.123 9000 TIP 438367 20251 6065951 2024-02-25 19:40:02.946 2024-02-25 19:40:02.946 1000 FEE 438107 712 6065952 2024-02-25 19:40:02.946 2024-02-25 19:40:02.946 9000 TIP 438107 1652 6066050 2024-02-25 19:54:08.66 2024-02-25 19:54:08.66 1000 FEE 438602 2046 6066055 2024-02-25 19:54:25.4 2024-02-25 19:54:25.4 100 FEE 435869 19533 6066056 2024-02-25 19:54:25.4 2024-02-25 19:54:25.4 900 TIP 435869 21506 6066057 2024-02-25 19:54:48.834 2024-02-25 19:54:48.834 1000 FEE 438474 21482 6066058 2024-02-25 19:54:48.834 2024-02-25 19:54:48.834 9000 TIP 438474 19966 6066089 2024-02-25 19:58:58.944 2024-02-25 19:58:58.944 5000 FEE 438509 17095 6066090 2024-02-25 19:58:58.944 2024-02-25 19:58:58.944 45000 TIP 438509 1960 6066109 2024-02-25 20:03:19.985 2024-02-25 20:03:19.985 1000 FEE 438605 8570 6066110 2024-02-25 20:03:19.985 2024-02-25 20:03:19.985 9000 TIP 438605 4225 6066132 2024-02-25 20:05:49.463 2024-02-25 20:05:49.463 7700 FEE 438414 19910 6066133 2024-02-25 20:05:49.463 2024-02-25 20:05:49.463 69300 TIP 438414 1272 6066152 2024-02-25 20:05:54.16 2024-02-25 20:05:54.16 7700 FEE 438317 19553 6066153 2024-02-25 20:05:54.16 2024-02-25 20:05:54.16 69300 TIP 438317 20376 6066164 2024-02-25 20:06:06.013 2024-02-25 20:06:06.013 7700 FEE 438092 19105 6066165 2024-02-25 20:06:06.013 2024-02-25 20:06:06.013 69300 TIP 438092 9809 6066192 2024-02-25 20:06:14.495 2024-02-25 20:06:14.495 7700 FEE 438451 831 6066193 2024-02-25 20:06:14.495 2024-02-25 20:06:14.495 69300 TIP 438451 19622 6066198 2024-02-25 20:06:17.545 2024-02-25 20:06:17.545 7700 FEE 438405 21619 6065508 2024-02-25 18:49:04.835 2024-02-25 18:49:04.835 1000 STREAM 141924 17147 6065514 2024-02-25 18:52:04.961 2024-02-25 18:52:04.961 1000 STREAM 141924 2741 6065532 2024-02-25 18:55:02.883 2024-02-25 18:55:02.883 1000 STREAM 141924 20080 6065534 2024-02-25 18:56:02.887 2024-02-25 18:56:02.887 1000 STREAM 141924 1806 6065598 2024-02-25 19:04:02.913 2024-02-25 19:04:02.913 1000 STREAM 141924 9184 6065623 2024-02-25 19:08:02.931 2024-02-25 19:08:02.931 1000 STREAM 141924 21061 6065631 2024-02-25 19:09:02.957 2024-02-25 19:09:02.957 1000 STREAM 141924 21061 6065646 2024-02-25 19:11:02.97 2024-02-25 19:11:02.97 1000 STREAM 141924 20470 6065678 2024-02-25 19:16:02.945 2024-02-25 19:16:02.945 1000 STREAM 141924 9494 6065688 2024-02-25 19:18:05.075 2024-02-25 19:18:05.075 1000 STREAM 141924 11942 6065715 2024-02-25 19:19:04.978 2024-02-25 19:19:04.978 1000 STREAM 141924 19546 6065723 2024-02-25 19:21:05.024 2024-02-25 19:21:05.024 1000 STREAM 141924 17817 6065726 2024-02-25 19:22:04.984 2024-02-25 19:22:04.984 1000 STREAM 141924 21019 6065760 2024-02-25 19:24:04.999 2024-02-25 19:24:04.999 1000 STREAM 141924 21157 6124824 2024-03-01 13:11:17.026 2024-03-01 13:11:17.026 100 FEE 444696 20745 6124825 2024-03-01 13:11:17.026 2024-03-01 13:11:17.026 900 TIP 444696 1425 6124838 2024-03-01 13:12:27.792 2024-03-01 13:12:27.792 900 FEE 444702 12245 6124839 2024-03-01 13:12:27.792 2024-03-01 13:12:27.792 8100 TIP 444702 2741 6124851 2024-03-01 13:13:36.295 2024-03-01 13:13:36.295 2100 FEE 444921 16536 6124852 2024-03-01 13:13:36.295 2024-03-01 13:13:36.295 18900 TIP 444921 3729 6124873 2024-03-01 13:14:20.171 2024-03-01 13:14:20.171 900 FEE 444907 12245 6124874 2024-03-01 13:14:20.171 2024-03-01 13:14:20.171 8100 TIP 444907 20185 6124911 2024-03-01 13:20:46.926 2024-03-01 13:20:46.926 5000 FEE 444824 20573 6124912 2024-03-01 13:20:46.926 2024-03-01 13:20:46.926 45000 TIP 444824 19902 6124913 2024-03-01 13:20:49.034 2024-03-01 13:20:49.034 1100 FEE 444755 7847 6124914 2024-03-01 13:20:49.034 2024-03-01 13:20:49.034 9900 TIP 444755 18396 6124931 2024-03-01 13:22:16.283 2024-03-01 13:22:16.283 1100 FEE 444911 5757 6124932 2024-03-01 13:22:16.283 2024-03-01 13:22:16.283 9900 TIP 444911 2010 6124939 2024-03-01 13:22:41.484 2024-03-01 13:22:41.484 100 FEE 444948 3409 6124940 2024-03-01 13:22:41.484 2024-03-01 13:22:41.484 900 TIP 444948 16329 6124943 2024-03-01 13:23:03.368 2024-03-01 13:23:03.368 100 FEE 444802 17365 6124944 2024-03-01 13:23:03.368 2024-03-01 13:23:03.368 900 TIP 444802 18321 6124950 2024-03-01 13:23:23.043 2024-03-01 13:23:23.043 5000 FEE 444928 21166 6124951 2024-03-01 13:23:23.043 2024-03-01 13:23:23.043 45000 TIP 444928 19243 6124972 2024-03-01 13:23:38.862 2024-03-01 13:23:38.862 1100 FEE 444707 20756 6124973 2024-03-01 13:23:38.862 2024-03-01 13:23:38.862 9900 TIP 444707 21090 6125009 2024-03-01 13:25:57.712 2024-03-01 13:25:57.712 900 FEE 444878 21172 6125010 2024-03-01 13:25:57.712 2024-03-01 13:25:57.712 8100 TIP 444878 7583 6125022 2024-03-01 13:26:58.447 2024-03-01 13:26:58.447 100000 DONT_LIKE_THIS 444848 5578 6125024 2024-03-01 13:27:15.13 2024-03-01 13:27:15.13 100000 DONT_LIKE_THIS 444746 631 6125025 2024-03-01 13:27:40.128 2024-03-01 13:27:40.128 1000 FEE 444967 814 6125039 2024-03-01 13:31:54.759 2024-03-01 13:31:54.759 500 FEE 444755 9992 6125040 2024-03-01 13:31:54.759 2024-03-01 13:31:54.759 4500 TIP 444755 20137 6125045 2024-03-01 13:32:44.007 2024-03-01 13:32:44.007 100000 FEE 444973 19570 6125070 2024-03-01 13:34:03.036 2024-03-01 13:34:03.036 7700 FEE 444950 4984 6125071 2024-03-01 13:34:03.036 2024-03-01 13:34:03.036 69300 TIP 444950 10719 6125083 2024-03-01 13:34:19.748 2024-03-01 13:34:19.748 6900 FEE 444950 19118 6125084 2024-03-01 13:34:19.748 2024-03-01 13:34:19.748 62100 TIP 444950 13406 6125131 2024-03-01 13:34:25.562 2024-03-01 13:34:25.562 6900 FEE 444950 15239 6125132 2024-03-01 13:34:25.562 2024-03-01 13:34:25.562 62100 TIP 444950 2620 6125136 2024-03-01 13:35:14.879 2024-03-01 13:35:14.879 1000 FEE 444977 21539 6125137 2024-03-01 13:35:17.612 2024-03-01 13:35:17.612 6900 FEE 444950 1890 6125138 2024-03-01 13:35:17.612 2024-03-01 13:35:17.612 62100 TIP 444950 14950 6125139 2024-03-01 13:35:17.734 2024-03-01 13:35:17.734 6900 FEE 444950 21612 6125140 2024-03-01 13:35:17.734 2024-03-01 13:35:17.734 62100 TIP 444950 20581 6125159 2024-03-01 13:35:47.233 2024-03-01 13:35:47.233 7700 FEE 444921 14941 6125160 2024-03-01 13:35:47.233 2024-03-01 13:35:47.233 69300 TIP 444921 19843 6125167 2024-03-01 13:35:48.048 2024-03-01 13:35:48.048 7700 FEE 444921 14650 6125168 2024-03-01 13:35:48.048 2024-03-01 13:35:48.048 69300 TIP 444921 17722 6125177 2024-03-01 13:35:52.696 2024-03-01 13:35:52.696 420000 FEE 444980 15549 6125196 2024-03-01 13:35:54.519 2024-03-01 13:35:54.519 7700 FEE 444911 5160 6125197 2024-03-01 13:35:54.519 2024-03-01 13:35:54.519 69300 TIP 444911 16177 6125200 2024-03-01 13:35:54.864 2024-03-01 13:35:54.864 7700 FEE 444911 16176 6125201 2024-03-01 13:35:54.864 2024-03-01 13:35:54.864 69300 TIP 444911 2431 6125214 2024-03-01 13:35:55.632 2024-03-01 13:35:55.632 7700 FEE 444911 10096 6125215 2024-03-01 13:35:55.632 2024-03-01 13:35:55.632 69300 TIP 444911 8380 6125216 2024-03-01 13:35:55.741 2024-03-01 13:35:55.741 7700 FEE 444911 6578 6125217 2024-03-01 13:35:55.741 2024-03-01 13:35:55.741 69300 TIP 444911 1007 6125225 2024-03-01 13:36:04.727 2024-03-01 13:36:04.727 1000 FEE 444980 20775 6125226 2024-03-01 13:36:04.727 2024-03-01 13:36:04.727 9000 TIP 444980 12356 6125233 2024-03-01 13:36:07.476 2024-03-01 13:36:07.476 1000 FEE 444980 21131 6125234 2024-03-01 13:36:07.476 2024-03-01 13:36:07.476 9000 TIP 444980 10311 6125264 2024-03-01 13:36:51.062 2024-03-01 13:36:51.062 7700 FEE 444755 8245 6125265 2024-03-01 13:36:51.062 2024-03-01 13:36:51.062 69300 TIP 444755 20889 6125278 2024-03-01 13:36:52.274 2024-03-01 13:36:52.274 7700 FEE 444755 20500 6125279 2024-03-01 13:36:52.274 2024-03-01 13:36:52.274 69300 TIP 444755 5538 6125282 2024-03-01 13:36:52.839 2024-03-01 13:36:52.839 1000 FEE 444980 13100 6125283 2024-03-01 13:36:52.839 2024-03-01 13:36:52.839 9000 TIP 444980 20981 6125296 2024-03-01 13:39:44.528 2024-03-01 13:39:44.528 2700 FEE 444911 19329 6125297 2024-03-01 13:39:44.528 2024-03-01 13:39:44.528 24300 TIP 444911 16970 6125302 2024-03-01 13:39:45.071 2024-03-01 13:39:45.071 2700 FEE 444911 19976 6125303 2024-03-01 13:39:45.071 2024-03-01 13:39:45.071 24300 TIP 444911 18446 6125319 2024-03-01 13:40:07.163 2024-03-01 13:40:07.163 2700 FEE 444707 21057 6125320 2024-03-01 13:40:07.163 2024-03-01 13:40:07.163 24300 TIP 444707 13204 6125367 2024-03-01 13:43:55.112 2024-03-01 13:43:55.112 7700 FEE 444982 18829 6125368 2024-03-01 13:43:55.112 2024-03-01 13:43:55.112 69300 TIP 444982 18526 6125407 2024-03-01 13:49:24.404 2024-03-01 13:49:24.404 2700 FEE 444950 17513 6125408 2024-03-01 13:49:24.404 2024-03-01 13:49:24.404 24300 TIP 444950 17321 6125412 2024-03-01 13:50:09.174 2024-03-01 13:50:09.174 200 FEE 444948 1772 6125413 2024-03-01 13:50:09.174 2024-03-01 13:50:09.174 1800 TIP 444948 12175 6125416 2024-03-01 13:50:25.756 2024-03-01 13:50:25.756 7700 FEE 444796 18994 6125417 2024-03-01 13:50:25.756 2024-03-01 13:50:25.756 69300 TIP 444796 18368 6125435 2024-03-01 13:52:09.009 2024-03-01 13:52:09.009 1000 FEE 444993 19615 6125458 2024-03-01 13:55:26.517 2024-03-01 13:55:26.517 100 FEE 444968 17082 6125459 2024-03-01 13:55:26.517 2024-03-01 13:55:26.517 900 TIP 444968 16309 6125462 2024-03-01 13:55:35.058 2024-03-01 13:55:35.058 100 FEE 444965 21418 6125463 2024-03-01 13:55:35.058 2024-03-01 13:55:35.058 900 TIP 444965 21374 6125472 2024-03-01 13:55:51.002 2024-03-01 13:55:51.002 2700 FEE 444962 11885 6125473 2024-03-01 13:55:51.002 2024-03-01 13:55:51.002 24300 TIP 444962 16753 6125486 2024-03-01 13:56:51.705 2024-03-01 13:56:51.705 77000 DONT_LIKE_THIS 444993 2844 6125493 2024-03-01 13:57:28.801 2024-03-01 13:57:28.801 1700 FEE 444998 20084 6125494 2024-03-01 13:57:28.801 2024-03-01 13:57:28.801 15300 TIP 444998 1712 6125520 2024-03-01 13:57:34.939 2024-03-01 13:57:34.939 7700 FEE 444980 15728 6125521 2024-03-01 13:57:34.939 2024-03-01 13:57:34.939 69300 TIP 444980 21262 6125543 2024-03-01 13:58:24.353 2024-03-01 13:58:24.353 7700 FEE 444987 844 6125544 2024-03-01 13:58:24.353 2024-03-01 13:58:24.353 69300 TIP 444987 5359 6065573 2024-02-25 19:00:05.336 2024-02-25 19:00:05.336 1000 STREAM 141924 3213 6065605 2024-02-25 19:05:05.52 2024-02-25 19:05:05.52 1000 STREAM 141924 5646 6065618 2024-02-25 19:07:05.534 2024-02-25 19:07:05.534 1000 STREAM 141924 1803 6065648 2024-02-25 19:13:05.603 2024-02-25 19:13:05.603 1000 STREAM 141924 21138 6124865 2024-03-01 13:14:04.819 2024-03-01 13:14:04.819 2100 FEE 444957 21222 6124866 2024-03-01 13:14:04.819 2024-03-01 13:14:04.819 18900 TIP 444957 19484 6124867 2024-03-01 13:14:08.569 2024-03-01 13:14:08.569 200 FEE 444950 2748 6124868 2024-03-01 13:14:08.569 2024-03-01 13:14:08.569 1800 TIP 444950 3439 6124871 2024-03-01 13:14:19.139 2024-03-01 13:14:19.139 100 FEE 444907 5495 6124872 2024-03-01 13:14:19.139 2024-03-01 13:14:19.139 900 TIP 444907 18409 6124880 2024-03-01 13:15:20.925 2024-03-01 13:15:20.925 2800 FEE 444896 21103 6124881 2024-03-01 13:15:20.925 2024-03-01 13:15:20.925 25200 TIP 444896 3213 6124892 2024-03-01 13:17:34.437 2024-03-01 13:17:34.437 1000 FEE 444755 21119 6124893 2024-03-01 13:17:34.437 2024-03-01 13:17:34.437 9000 TIP 444755 17392 6124917 2024-03-01 13:20:52.312 2024-03-01 13:20:52.312 1000 POLL 444597 10063 6124921 2024-03-01 13:21:04.435 2024-03-01 13:21:04.435 1100 FEE 444519 16447 6124922 2024-03-01 13:21:04.435 2024-03-01 13:21:04.435 9900 TIP 444519 11789 6124930 2024-03-01 13:22:13.869 2024-03-01 13:22:13.869 100000 FEE 444965 10981 6124935 2024-03-01 13:22:16.504 2024-03-01 13:22:16.504 1100 FEE 444911 15978 6124936 2024-03-01 13:22:16.504 2024-03-01 13:22:16.504 9900 TIP 444911 2776 6124937 2024-03-01 13:22:16.629 2024-03-01 13:22:16.629 1100 FEE 444911 18583 6124938 2024-03-01 13:22:16.629 2024-03-01 13:22:16.629 9900 TIP 444911 1741 6124948 2024-03-01 13:23:22.288 2024-03-01 13:23:22.288 5000 FEE 444928 18659 6124949 2024-03-01 13:23:22.288 2024-03-01 13:23:22.288 45000 TIP 444928 9438 6124962 2024-03-01 13:23:36.499 2024-03-01 13:23:36.499 2200 FEE 444874 6136 6124963 2024-03-01 13:23:36.499 2024-03-01 13:23:36.499 19800 TIP 444874 9026 6124968 2024-03-01 13:23:37.591 2024-03-01 13:23:37.591 1100 FEE 444739 5661 6124969 2024-03-01 13:23:37.591 2024-03-01 13:23:37.591 9900 TIP 444739 9438 6124970 2024-03-01 13:23:38.791 2024-03-01 13:23:38.791 1100 FEE 444707 19911 6124971 2024-03-01 13:23:38.791 2024-03-01 13:23:38.791 9900 TIP 444707 21249 6124980 2024-03-01 13:23:41.998 2024-03-01 13:23:41.998 1100 FEE 444695 899 6124981 2024-03-01 13:23:41.998 2024-03-01 13:23:41.998 9900 TIP 444695 656 6125000 2024-03-01 13:24:29.657 2024-03-01 13:24:29.657 9000 FEE 444471 2437 6125001 2024-03-01 13:24:29.657 2024-03-01 13:24:29.657 81000 TIP 444471 1433 6125007 2024-03-01 13:25:57.425 2024-03-01 13:25:57.425 100 FEE 444878 20162 6125008 2024-03-01 13:25:57.425 2024-03-01 13:25:57.425 900 TIP 444878 10094 6125026 2024-03-01 13:27:55.887 2024-03-01 13:27:55.887 97000 FEE 444968 19284 6125031 2024-03-01 13:29:15.898 2024-03-01 13:29:15.898 1000 FEE 444969 956 6125041 2024-03-01 13:31:57.288 2024-03-01 13:31:57.288 1000 FEE 444972 9816 6125048 2024-03-01 13:33:04.668 2024-03-01 13:33:04.668 100 FEE 444744 16250 6125049 2024-03-01 13:33:04.668 2024-03-01 13:33:04.668 900 TIP 444744 21481 6125155 2024-03-01 13:35:46.802 2024-03-01 13:35:46.802 3200 FEE 444961 2402 6125156 2024-03-01 13:35:46.802 2024-03-01 13:35:46.802 28800 TIP 444961 2329 6125178 2024-03-01 13:35:53.309 2024-03-01 13:35:53.309 7700 FEE 444911 5758 6125179 2024-03-01 13:35:53.309 2024-03-01 13:35:53.309 69300 TIP 444911 10112 6125231 2024-03-01 13:36:07.146 2024-03-01 13:36:07.146 1000 FEE 444980 20713 6125232 2024-03-01 13:36:07.146 2024-03-01 13:36:07.146 9000 TIP 444980 1286 6125258 2024-03-01 13:36:47.61 2024-03-01 13:36:47.61 1000 FEE 444950 1010 6125259 2024-03-01 13:36:47.61 2024-03-01 13:36:47.61 9000 TIP 444950 889 6125268 2024-03-01 13:36:51.487 2024-03-01 13:36:51.487 15400 FEE 444755 14258 6125269 2024-03-01 13:36:51.487 2024-03-01 13:36:51.487 138600 TIP 444755 8400 6125289 2024-03-01 13:38:28.241 2024-03-01 13:38:28.241 7700 FEE 444557 17166 6125290 2024-03-01 13:38:28.241 2024-03-01 13:38:28.241 69300 TIP 444557 21503 6125300 2024-03-01 13:39:44.901 2024-03-01 13:39:44.901 2700 FEE 444911 13076 6125301 2024-03-01 13:39:44.901 2024-03-01 13:39:44.901 24300 TIP 444911 5520 6125317 2024-03-01 13:40:06.952 2024-03-01 13:40:06.952 2700 FEE 444707 18393 6125318 2024-03-01 13:40:06.952 2024-03-01 13:40:06.952 24300 TIP 444707 831 6125325 2024-03-01 13:40:07.709 2024-03-01 13:40:07.709 2700 FEE 444707 20881 6125326 2024-03-01 13:40:07.709 2024-03-01 13:40:07.709 24300 TIP 444707 3411 6125337 2024-03-01 13:41:33.505 2024-03-01 13:41:33.505 7700 FEE 444933 6741 6125338 2024-03-01 13:41:33.505 2024-03-01 13:41:33.505 69300 TIP 444933 1576 6125343 2024-03-01 13:41:44.028 2024-03-01 13:41:44.028 3100 FEE 444972 10818 6125344 2024-03-01 13:41:44.028 2024-03-01 13:41:44.028 27900 TIP 444972 15271 6125356 2024-03-01 13:42:16.281 2024-03-01 13:42:16.281 7700 FEE 444939 2543 6125357 2024-03-01 13:42:16.281 2024-03-01 13:42:16.281 69300 TIP 444939 4831 6125378 2024-03-01 13:45:10.738 2024-03-01 13:45:10.738 500 FEE 444755 21026 6125379 2024-03-01 13:45:10.738 2024-03-01 13:45:10.738 4500 TIP 444755 19506 6125383 2024-03-01 13:45:48.995 2024-03-01 13:45:48.995 1100 FEE 444689 9874 6125384 2024-03-01 13:45:48.995 2024-03-01 13:45:48.995 9900 TIP 444689 1692 6125388 2024-03-01 13:46:07.857 2024-03-01 13:46:07.857 1600 FEE 444911 8506 6125389 2024-03-01 13:46:07.857 2024-03-01 13:46:07.857 14400 TIP 444911 20102 6065586 2024-02-25 19:01:05.465 2024-02-25 19:01:05.465 1000 STREAM 141924 8726 6065640 2024-02-25 19:10:05.573 2024-02-25 19:10:05.573 1000 STREAM 141924 1130 6065768 2024-02-25 19:25:03.539 2024-02-25 19:25:03.539 1000 STREAM 141924 15196 6124920 2024-03-01 13:21:02.161 2024-03-01 13:21:02.161 1000 STREAM 141924 17226 6065593 2024-02-25 19:02:13.856 2024-02-25 19:02:13.856 4000 FEE 438519 19909 6065594 2024-02-25 19:02:13.856 2024-02-25 19:02:13.856 36000 TIP 438519 4102 6065616 2024-02-25 19:07:00.836 2024-02-25 19:07:00.836 2100 FEE 438524 8004 6065617 2024-02-25 19:07:00.836 2024-02-25 19:07:00.836 18900 TIP 438524 17166 6065643 2024-02-25 19:10:27.195 2024-02-25 19:10:27.195 1000 FEE 438581 16667 6065660 2024-02-25 19:13:43.157 2024-02-25 19:13:43.157 100 FEE 438546 21413 6065661 2024-02-25 19:13:43.157 2024-02-25 19:13:43.157 900 TIP 438546 1836 6065676 2024-02-25 19:15:16.915 2024-02-25 19:15:16.915 10000 FEE 438189 6537 6065677 2024-02-25 19:15:16.915 2024-02-25 19:15:16.915 90000 TIP 438189 18016 6065680 2024-02-25 19:17:22.502 2024-02-25 19:17:22.502 300 FEE 438405 2046 6065681 2024-02-25 19:17:22.502 2024-02-25 19:17:22.502 2700 TIP 438405 5495 6065686 2024-02-25 19:17:54.84 2024-02-25 19:17:54.84 5000 FEE 438451 21614 6065687 2024-02-25 19:17:54.84 2024-02-25 19:17:54.84 45000 TIP 438451 20523 6065697 2024-02-25 19:18:45.714 2024-02-25 19:18:45.714 6900 FEE 438467 1626 6065698 2024-02-25 19:18:45.714 2024-02-25 19:18:45.714 62100 TIP 438467 5708 6065701 2024-02-25 19:18:46.611 2024-02-25 19:18:46.611 6900 FEE 438467 2010 6065702 2024-02-25 19:18:46.611 2024-02-25 19:18:46.611 62100 TIP 438467 19662 6065739 2024-02-25 19:23:15.063 2024-02-25 19:23:15.063 1000 POLL 438414 21003 6065769 2024-02-25 19:25:32.161 2024-02-25 19:25:32.161 1000 FEE 438589 9796 6125051 2024-03-01 13:33:05.385 2024-03-01 13:33:05.385 900 TIP 444744 19910 6125063 2024-03-01 13:33:49.108 2024-03-01 13:33:49.108 1000 FEE 444976 20744 6125072 2024-03-01 13:34:03.201 2024-03-01 13:34:03.201 7700 FEE 444950 20539 6125073 2024-03-01 13:34:03.201 2024-03-01 13:34:03.201 69300 TIP 444950 4973 6125085 2024-03-01 13:34:19.89 2024-03-01 13:34:19.89 6900 FEE 444950 19785 6125086 2024-03-01 13:34:19.89 2024-03-01 13:34:19.89 62100 TIP 444950 20272 6125091 2024-03-01 13:34:20.256 2024-03-01 13:34:20.256 6900 FEE 444950 15147 6125092 2024-03-01 13:34:20.256 2024-03-01 13:34:20.256 62100 TIP 444950 1090 6125101 2024-03-01 13:34:21.782 2024-03-01 13:34:21.782 6900 FEE 444950 19189 6125102 2024-03-01 13:34:21.782 2024-03-01 13:34:21.782 62100 TIP 444950 21369 6125125 2024-03-01 13:34:25.181 2024-03-01 13:34:25.181 6900 FEE 444950 676 6125126 2024-03-01 13:34:25.181 2024-03-01 13:34:25.181 62100 TIP 444950 20577 6125127 2024-03-01 13:34:25.346 2024-03-01 13:34:25.346 6900 FEE 444950 10549 6125128 2024-03-01 13:34:25.346 2024-03-01 13:34:25.346 62100 TIP 444950 17513 6125161 2024-03-01 13:35:47.355 2024-03-01 13:35:47.355 7700 FEE 444921 11609 6125162 2024-03-01 13:35:47.355 2024-03-01 13:35:47.355 69300 TIP 444921 12245 6125163 2024-03-01 13:35:47.523 2024-03-01 13:35:47.523 7700 FEE 444921 666 6125164 2024-03-01 13:35:47.523 2024-03-01 13:35:47.523 69300 TIP 444921 2508 6125169 2024-03-01 13:35:48.341 2024-03-01 13:35:48.341 7700 FEE 444921 4538 6125170 2024-03-01 13:35:48.341 2024-03-01 13:35:48.341 69300 TIP 444921 21062 6125171 2024-03-01 13:35:48.57 2024-03-01 13:35:48.57 15400 FEE 444921 670 6125172 2024-03-01 13:35:48.57 2024-03-01 13:35:48.57 138600 TIP 444921 11263 6125182 2024-03-01 13:35:53.513 2024-03-01 13:35:53.513 7700 FEE 444911 18225 6125183 2024-03-01 13:35:53.513 2024-03-01 13:35:53.513 69300 TIP 444911 16424 6125194 2024-03-01 13:35:54.339 2024-03-01 13:35:54.339 15400 FEE 444911 13927 6125195 2024-03-01 13:35:54.339 2024-03-01 13:35:54.339 138600 TIP 444911 20710 6125206 2024-03-01 13:35:55.159 2024-03-01 13:35:55.159 7700 FEE 444911 2000 6125207 2024-03-01 13:35:55.159 2024-03-01 13:35:55.159 69300 TIP 444911 1221 6125223 2024-03-01 13:36:04.591 2024-03-01 13:36:04.591 1000 FEE 444980 9346 6125224 2024-03-01 13:36:04.591 2024-03-01 13:36:04.591 9000 TIP 444980 12169 6125229 2024-03-01 13:36:07.125 2024-03-01 13:36:07.125 3000 FEE 444980 16267 6125230 2024-03-01 13:36:07.125 2024-03-01 13:36:07.125 27000 TIP 444980 18581 6125256 2024-03-01 13:36:29.505 2024-03-01 13:36:29.505 2100 FEE 444896 798 6125257 2024-03-01 13:36:29.505 2024-03-01 13:36:29.505 18900 TIP 444896 20157 6125266 2024-03-01 13:36:51.194 2024-03-01 13:36:51.194 7700 FEE 444755 15925 6125267 2024-03-01 13:36:51.194 2024-03-01 13:36:51.194 69300 TIP 444755 10490 6125315 2024-03-01 13:40:06.802 2024-03-01 13:40:06.802 2700 FEE 444707 21061 6125316 2024-03-01 13:40:06.802 2024-03-01 13:40:06.802 24300 TIP 444707 18819 6125341 2024-03-01 13:41:41.373 2024-03-01 13:41:41.373 7700 FEE 444939 11678 6125342 2024-03-01 13:41:41.373 2024-03-01 13:41:41.373 69300 TIP 444939 2577 6125345 2024-03-01 13:41:48.361 2024-03-01 13:41:48.361 7700 FEE 444939 19615 6125346 2024-03-01 13:41:48.361 2024-03-01 13:41:48.361 69300 TIP 444939 18995 6125442 2024-03-01 13:53:30.883 2024-03-01 13:53:30.883 200 FEE 444965 18169 6125443 2024-03-01 13:53:30.883 2024-03-01 13:53:30.883 1800 TIP 444965 21155 6125456 2024-03-01 13:55:22.829 2024-03-01 13:55:22.829 100 FEE 444980 20106 6125457 2024-03-01 13:55:22.829 2024-03-01 13:55:22.829 900 TIP 444980 20751 6125468 2024-03-01 13:55:50.759 2024-03-01 13:55:50.759 2700 FEE 444962 8176 6125469 2024-03-01 13:55:50.759 2024-03-01 13:55:50.759 24300 TIP 444962 1051 6125481 2024-03-01 13:56:28.261 2024-03-01 13:56:28.261 100000 FEE 445000 3400 6125531 2024-03-01 13:57:52.356 2024-03-01 13:57:52.356 10000 FEE 445000 16052 6125532 2024-03-01 13:57:52.356 2024-03-01 13:57:52.356 90000 TIP 445000 20087 6125547 2024-03-01 13:58:24.523 2024-03-01 13:58:24.523 7700 FEE 444987 12334 6125548 2024-03-01 13:58:24.523 2024-03-01 13:58:24.523 69300 TIP 444987 10530 6125555 2024-03-01 13:58:30.12 2024-03-01 13:58:30.12 7700 FEE 444980 647 6125556 2024-03-01 13:58:30.12 2024-03-01 13:58:30.12 69300 TIP 444980 9109 6125580 2024-03-01 13:58:48.635 2024-03-01 13:58:48.635 0 FEE 445003 11999 6125592 2024-03-01 13:59:34.943 2024-03-01 13:59:34.943 1000 FEE 445005 20987 6125605 2024-03-01 13:59:53.08 2024-03-01 13:59:53.08 300 FEE 444950 21391 6125606 2024-03-01 13:59:53.08 2024-03-01 13:59:53.08 2700 TIP 444950 2576 6125618 2024-03-01 14:00:30.495 2024-03-01 14:00:30.495 27900 FEE 444911 9874 6125619 2024-03-01 14:00:30.495 2024-03-01 14:00:30.495 251100 TIP 444911 18321 6125625 2024-03-01 14:01:26.743 2024-03-01 14:01:26.743 6900 FEE 445002 15588 6125626 2024-03-01 14:01:26.743 2024-03-01 14:01:26.743 62100 TIP 445002 21492 6125637 2024-03-01 14:01:55.468 2024-03-01 14:01:55.468 27900 FEE 444950 20087 6125638 2024-03-01 14:01:55.468 2024-03-01 14:01:55.468 251100 TIP 444950 12368 6125644 2024-03-01 14:02:42.815 2024-03-01 14:02:42.815 1000 FEE 445011 5794 6125655 2024-03-01 14:05:31.388 2024-03-01 14:05:31.388 1000 FEE 445017 18659 6125664 2024-03-01 14:07:22.368 2024-03-01 14:07:22.368 5000 FEE 444151 18615 6125665 2024-03-01 14:07:22.368 2024-03-01 14:07:22.368 45000 TIP 444151 5519 6125690 2024-03-01 14:10:07.244 2024-03-01 14:10:07.244 0 FEE 445016 2000 6125705 2024-03-01 14:10:41.12 2024-03-01 14:10:41.12 7700 FEE 445016 21437 6125706 2024-03-01 14:10:41.12 2024-03-01 14:10:41.12 69300 TIP 445016 16769 6125746 2024-03-01 14:14:14.643 2024-03-01 14:14:14.643 2100 FEE 444921 16124 6125747 2024-03-01 14:14:14.643 2024-03-01 14:14:14.643 18900 TIP 444921 14950 6125759 2024-03-01 14:15:21.524 2024-03-01 14:15:21.524 1000 FEE 445033 20799 6125807 2024-03-01 14:21:04.399 2024-03-01 14:21:04.399 100 FEE 445003 10549 6125808 2024-03-01 14:21:04.399 2024-03-01 14:21:04.399 900 TIP 445003 11590 6125828 2024-03-01 14:23:36.095 2024-03-01 14:23:36.095 100000 FEE 445055 12738 6065595 2024-02-25 19:03:04.598 2024-02-25 19:03:04.598 10000 FEE 438574 16753 6065601 2024-02-25 19:04:22.304 2024-02-25 19:04:22.304 500 FEE 438359 9159 6065602 2024-02-25 19:04:22.304 2024-02-25 19:04:22.304 4500 TIP 438359 19329 6065606 2024-02-25 19:05:57.377 2024-02-25 19:05:57.377 2100 FEE 419144 20660 6065607 2024-02-25 19:05:57.377 2024-02-25 19:05:57.377 18900 TIP 419144 15273 6065619 2024-02-25 19:07:16.672 2024-02-25 19:07:16.672 2100 FEE 438519 15115 6065620 2024-02-25 19:07:16.672 2024-02-25 19:07:16.672 18900 TIP 438519 1571 6065638 2024-02-25 19:09:36.503 2024-02-25 19:09:36.503 2100 FEE 438479 5387 6065639 2024-02-25 19:09:36.503 2024-02-25 19:09:36.503 18900 TIP 438479 15052 6065656 2024-02-25 19:13:42.859 2024-02-25 19:13:42.859 100 FEE 438546 7766 6065657 2024-02-25 19:13:42.859 2024-02-25 19:13:42.859 900 TIP 438546 14295 6065666 2024-02-25 19:13:44.415 2024-02-25 19:13:44.415 100 FEE 438546 1489 6065667 2024-02-25 19:13:44.415 2024-02-25 19:13:44.415 900 TIP 438546 5728 6065703 2024-02-25 19:18:47.204 2024-02-25 19:18:47.204 6900 FEE 438467 770 6065704 2024-02-25 19:18:47.204 2024-02-25 19:18:47.204 62100 TIP 438467 11477 6065733 2024-02-25 19:23:12.644 2024-02-25 19:23:12.644 2100 FEE 438534 1712 6065734 2024-02-25 19:23:12.644 2024-02-25 19:23:12.644 18900 TIP 438534 20157 6065735 2024-02-25 19:23:14.332 2024-02-25 19:23:14.332 2100 FEE 438552 2029 6065736 2024-02-25 19:23:14.332 2024-02-25 19:23:14.332 18900 TIP 438552 6335 6065742 2024-02-25 19:23:37.792 2024-02-25 19:23:37.792 1600 FEE 438583 20704 6065743 2024-02-25 19:23:37.792 2024-02-25 19:23:37.792 14400 TIP 438583 14169 6065749 2024-02-25 19:23:58.179 2024-02-25 19:23:58.179 1100 FEE 438405 9261 6065750 2024-02-25 19:23:58.179 2024-02-25 19:23:58.179 9900 TIP 438405 16956 6065755 2024-02-25 19:24:00.569 2024-02-25 19:24:00.569 1100 FEE 438414 1046 6065756 2024-02-25 19:24:00.569 2024-02-25 19:24:00.569 9900 TIP 438414 21413 6065785 2024-02-25 19:28:11.037 2024-02-25 19:28:11.037 6900 FEE 438504 19668 6065786 2024-02-25 19:28:11.037 2024-02-25 19:28:11.037 62100 TIP 438504 21254 6065800 2024-02-25 19:29:14.926 2024-02-25 19:29:14.926 1000 FEE 438591 9366 6065804 2024-02-25 19:29:33.5 2024-02-25 19:29:33.5 500 FEE 438325 20585 6065805 2024-02-25 19:29:33.5 2024-02-25 19:29:33.5 4500 TIP 438325 20602 6065823 2024-02-25 19:33:56.442 2024-02-25 19:33:56.442 1000 FEE 438325 13169 6065824 2024-02-25 19:33:56.442 2024-02-25 19:33:56.442 9000 TIP 438325 1245 6065833 2024-02-25 19:35:50.722 2024-02-25 19:35:50.722 1000 FEE 438593 14941 6065839 2024-02-25 19:36:37.424 2024-02-25 19:36:37.424 1000 POLL 438325 11798 6065851 2024-02-25 19:37:24.149 2024-02-25 19:37:24.149 1000 FEE 438389 20062 6065852 2024-02-25 19:37:24.149 2024-02-25 19:37:24.149 9000 TIP 438389 18873 6065867 2024-02-25 19:37:35.752 2024-02-25 19:37:35.752 900 FEE 438583 18072 6065868 2024-02-25 19:37:35.752 2024-02-25 19:37:35.752 8100 TIP 438583 20509 6065879 2024-02-25 19:37:48.031 2024-02-25 19:37:48.031 1000 FEE 438367 667 6065880 2024-02-25 19:37:48.031 2024-02-25 19:37:48.031 9000 TIP 438367 8133 6065933 2024-02-25 19:37:53.268 2024-02-25 19:37:53.268 1000 FEE 438367 18984 6065934 2024-02-25 19:37:53.268 2024-02-25 19:37:53.268 9000 TIP 438367 12774 6065955 2024-02-25 19:40:49.122 2024-02-25 19:40:49.122 10000 FEE 438596 1429 6065958 2024-02-25 19:41:58.306 2024-02-25 19:41:58.306 1000 FEE 438597 910 6065979 2024-02-25 19:46:40.631 2024-02-25 19:46:40.631 10000 FEE 430478 1136 6065980 2024-02-25 19:46:40.631 2024-02-25 19:46:40.631 90000 TIP 430478 10818 6065981 2024-02-25 19:46:49.234 2024-02-25 19:46:49.234 2100 FEE 438486 794 6065982 2024-02-25 19:46:49.234 2024-02-25 19:46:49.234 18900 TIP 438486 1814 6066007 2024-02-25 19:48:41.101 2024-02-25 19:48:41.101 2100 FEE 438438 9816 6066008 2024-02-25 19:48:41.101 2024-02-25 19:48:41.101 18900 TIP 438438 9353 6066013 2024-02-25 19:48:47.847 2024-02-25 19:48:47.847 2100 FEE 438390 9099 6066014 2024-02-25 19:48:47.847 2024-02-25 19:48:47.847 18900 TIP 438390 21338 6066015 2024-02-25 19:48:48.441 2024-02-25 19:48:48.441 2100 FEE 438519 18199 6066016 2024-02-25 19:48:48.441 2024-02-25 19:48:48.441 18900 TIP 438519 12265 6066019 2024-02-25 19:48:53.763 2024-02-25 19:48:53.763 2100 FEE 438388 5865 6066020 2024-02-25 19:48:53.763 2024-02-25 19:48:53.763 18900 TIP 438388 20220 6066038 2024-02-25 19:51:46.454 2024-02-25 19:51:46.454 1000 FEE 438601 998 6066061 2024-02-25 19:54:49.308 2024-02-25 19:54:49.308 1000 FEE 438474 4474 6066062 2024-02-25 19:54:49.308 2024-02-25 19:54:49.308 9000 TIP 438474 4048 6066095 2024-02-25 20:00:18.28 2024-02-25 20:00:18.28 1000 FEE 438606 18357 6066103 2024-02-25 20:01:29.089 2024-02-25 20:01:29.089 0 FEE 438606 17690 6066124 2024-02-25 20:05:48.833 2024-02-25 20:05:48.833 7700 FEE 438414 21451 6066125 2024-02-25 20:05:48.833 2024-02-25 20:05:48.833 69300 TIP 438414 2437 6066128 2024-02-25 20:05:49.253 2024-02-25 20:05:49.253 7700 FEE 438414 14906 6066129 2024-02-25 20:05:49.253 2024-02-25 20:05:49.253 69300 TIP 438414 20881 6066144 2024-02-25 20:05:52.116 2024-02-25 20:05:52.116 7700 FEE 438325 17050 6066145 2024-02-25 20:05:52.116 2024-02-25 20:05:52.116 69300 TIP 438325 19907 6066170 2024-02-25 20:06:07.051 2024-02-25 20:06:07.051 7700 FEE 438092 19511 6066171 2024-02-25 20:06:07.051 2024-02-25 20:06:07.051 69300 TIP 438092 8242 6066178 2024-02-25 20:06:13.616 2024-02-25 20:06:13.616 15400 FEE 438451 7418 6066179 2024-02-25 20:06:13.616 2024-02-25 20:06:13.616 138600 TIP 438451 21600 6066182 2024-02-25 20:06:13.945 2024-02-25 20:06:13.945 7700 FEE 438451 12562 6066183 2024-02-25 20:06:13.945 2024-02-25 20:06:13.945 69300 TIP 438451 19810 6066186 2024-02-25 20:06:14.271 2024-02-25 20:06:14.271 7700 FEE 438451 19943 6066187 2024-02-25 20:06:14.271 2024-02-25 20:06:14.271 69300 TIP 438451 19735 6066208 2024-02-25 20:06:18.122 2024-02-25 20:06:18.122 7700 FEE 438405 20102 6066209 2024-02-25 20:06:18.122 2024-02-25 20:06:18.122 69300 TIP 438405 3745 6066210 2024-02-25 20:06:18.495 2024-02-25 20:06:18.495 7700 FEE 438405 3353 6066211 2024-02-25 20:06:18.495 2024-02-25 20:06:18.495 69300 TIP 438405 18448 6066224 2024-02-25 20:07:31.828 2024-02-25 20:07:31.828 2100 FEE 438405 19759 6066225 2024-02-25 20:07:31.828 2024-02-25 20:07:31.828 18900 TIP 438405 1352 6066243 2024-02-25 20:08:17.624 2024-02-25 20:08:17.624 1000 FEE 438092 2711 6066244 2024-02-25 20:08:17.624 2024-02-25 20:08:17.624 9000 TIP 438092 11819 6066249 2024-02-25 20:08:20.384 2024-02-25 20:08:20.384 2100 FEE 438592 16788 6066250 2024-02-25 20:08:20.384 2024-02-25 20:08:20.384 18900 TIP 438592 7553 6066257 2024-02-25 20:08:29.069 2024-02-25 20:08:29.069 10000 FEE 436373 11750 6066258 2024-02-25 20:08:29.069 2024-02-25 20:08:29.069 90000 TIP 436373 18815 6066263 2024-02-25 20:08:50.976 2024-02-25 20:08:50.976 5000 FEE 438389 2335 6066264 2024-02-25 20:08:50.976 2024-02-25 20:08:50.976 45000 TIP 438389 11523 6066363 2024-02-25 20:18:18.917 2024-02-25 20:18:18.917 4000 FEE 438588 16942 6066364 2024-02-25 20:18:18.917 2024-02-25 20:18:18.917 36000 TIP 438588 21248 6066368 2024-02-25 20:18:24.037 2024-02-25 20:18:24.037 5000 FEE 438611 11298 6066369 2024-02-25 20:18:24.037 2024-02-25 20:18:24.037 45000 TIP 438611 17392 6066378 2024-02-25 20:20:05.516 2024-02-25 20:20:05.516 2100 FEE 438451 5703 6066379 2024-02-25 20:20:05.516 2024-02-25 20:20:05.516 18900 TIP 438451 10359 6066419 2024-02-25 20:21:43.566 2024-02-25 20:21:43.566 2100 FEE 438389 3439 6066420 2024-02-25 20:21:43.566 2024-02-25 20:21:43.566 18900 TIP 438389 680 6066439 2024-02-25 20:21:51.796 2024-02-25 20:21:51.796 2100 FEE 438405 21444 6066440 2024-02-25 20:21:51.796 2024-02-25 20:21:51.796 18900 TIP 438405 2652 6065731 2024-02-25 19:23:11.37 2024-02-25 19:23:11.37 2100 FEE 438534 16638 6065732 2024-02-25 19:23:11.37 2024-02-25 19:23:11.37 18900 TIP 438534 16348 6065751 2024-02-25 19:24:00.192 2024-02-25 19:24:00.192 1100 FEE 438414 20340 6065752 2024-02-25 19:24:00.192 2024-02-25 19:24:00.192 9900 TIP 438414 21222 6065759 2024-02-25 19:24:02.423 2024-02-25 19:24:02.423 1000 FEE 438588 12946 6065774 2024-02-25 19:26:25.659 2024-02-25 19:26:25.659 100 FEE 438414 18232 6065775 2024-02-25 19:26:25.659 2024-02-25 19:26:25.659 900 TIP 438414 13575 6065826 2024-02-25 19:34:08.947 2024-02-25 19:34:08.947 1000 FEE 438499 8954 6065827 2024-02-25 19:34:08.947 2024-02-25 19:34:08.947 9000 TIP 438499 17891 6065861 2024-02-25 19:37:27.555 2024-02-25 19:37:27.555 1000 FEE 438209 9985 6065862 2024-02-25 19:37:27.555 2024-02-25 19:37:27.555 9000 TIP 438209 10638 6065872 2024-02-25 19:37:43.776 2024-02-25 19:37:43.776 1000 FEE 438595 14255 6065893 2024-02-25 19:37:49.591 2024-02-25 19:37:49.591 1000 FEE 438367 19583 6065894 2024-02-25 19:37:49.591 2024-02-25 19:37:49.591 9000 TIP 438367 18629 6065905 2024-02-25 19:37:50.924 2024-02-25 19:37:50.924 1000 FEE 438367 5637 6065906 2024-02-25 19:37:50.924 2024-02-25 19:37:50.924 9000 TIP 438367 2335 6065919 2024-02-25 19:37:52.247 2024-02-25 19:37:52.247 1000 FEE 438367 8095 6065920 2024-02-25 19:37:52.247 2024-02-25 19:37:52.247 9000 TIP 438367 16356 6065929 2024-02-25 19:37:52.9 2024-02-25 19:37:52.9 1000 FEE 438367 18494 6065930 2024-02-25 19:37:52.9 2024-02-25 19:37:52.9 9000 TIP 438367 7395 6065950 2024-02-25 19:39:41.317 2024-02-25 19:39:41.317 1000 POLL 438325 9355 6065957 2024-02-25 19:41:27.362 2024-02-25 19:41:27.362 0 FEE 438596 4166 6065988 2024-02-25 19:47:06.642 2024-02-25 19:47:06.642 1000 FEE 438596 21588 6065989 2024-02-25 19:47:06.642 2024-02-25 19:47:06.642 9000 TIP 438596 18919 6066028 2024-02-25 19:49:54.146 2024-02-25 19:49:54.146 2100 FEE 438531 21296 6066029 2024-02-25 19:49:54.146 2024-02-25 19:49:54.146 18900 TIP 438531 10849 6066034 2024-02-25 19:50:03.485 2024-02-25 19:50:03.485 100 FEE 7139 7395 6066035 2024-02-25 19:50:03.485 2024-02-25 19:50:03.485 900 TIP 7139 2264 6066039 2024-02-25 19:51:49.84 2024-02-25 19:51:49.84 2100 FEE 438537 5701 6066040 2024-02-25 19:51:49.84 2024-02-25 19:51:49.84 18900 TIP 438537 9355 6066044 2024-02-25 19:52:59.803 2024-02-25 19:52:59.803 1000 FEE 438405 12072 6066045 2024-02-25 19:52:59.803 2024-02-25 19:52:59.803 9000 TIP 438405 675 6066059 2024-02-25 19:54:49.045 2024-02-25 19:54:49.045 1000 FEE 438474 1425 6066060 2024-02-25 19:54:49.045 2024-02-25 19:54:49.045 9000 TIP 438474 1609 6066116 2024-02-25 20:04:52.436 2024-02-25 20:04:52.436 0 FEE 438608 20624 6066126 2024-02-25 20:05:48.944 2024-02-25 20:05:48.944 7700 FEE 438414 1051 6066127 2024-02-25 20:05:48.944 2024-02-25 20:05:48.944 69300 TIP 438414 11898 6066134 2024-02-25 20:05:51.488 2024-02-25 20:05:51.488 7700 FEE 438325 14489 6066135 2024-02-25 20:05:51.488 2024-02-25 20:05:51.488 69300 TIP 438325 21416 6066161 2024-02-25 20:06:03.592 2024-02-25 20:06:03.592 7700 FEE 438202 2077 6066162 2024-02-25 20:06:03.592 2024-02-25 20:06:03.592 69300 TIP 438202 19446 6066176 2024-02-25 20:06:07.393 2024-02-25 20:06:07.393 7700 FEE 438092 12245 6066177 2024-02-25 20:06:07.393 2024-02-25 20:06:07.393 69300 TIP 438092 16879 6066196 2024-02-25 20:06:14.708 2024-02-25 20:06:14.708 7700 FEE 438451 1006 6066197 2024-02-25 20:06:14.708 2024-02-25 20:06:14.708 69300 TIP 438451 21373 6066214 2024-02-25 20:06:18.694 2024-02-25 20:06:18.694 7700 FEE 438405 699 6066215 2024-02-25 20:06:18.694 2024-02-25 20:06:18.694 69300 TIP 438405 12278 6066216 2024-02-25 20:06:18.811 2024-02-25 20:06:18.811 7700 FEE 438405 19541 6066217 2024-02-25 20:06:18.811 2024-02-25 20:06:18.811 69300 TIP 438405 15045 6066218 2024-02-25 20:07:02.535 2024-02-25 20:07:02.535 7700 FEE 438416 11458 6066219 2024-02-25 20:07:02.535 2024-02-25 20:07:02.535 69300 TIP 438416 18525 6066221 2024-02-25 20:07:08.311 2024-02-25 20:07:08.311 1000 FEE 438610 21214 6066229 2024-02-25 20:07:45.62 2024-02-25 20:07:45.62 1000 FEE 438612 18453 6066247 2024-02-25 20:08:19.584 2024-02-25 20:08:19.584 2100 FEE 438583 21323 6066248 2024-02-25 20:08:19.584 2024-02-25 20:08:19.584 18900 TIP 438583 20337 6066251 2024-02-25 20:08:21.85 2024-02-25 20:08:21.85 2100 FEE 438571 18351 6066252 2024-02-25 20:08:21.85 2024-02-25 20:08:21.85 18900 TIP 438571 18769 6066259 2024-02-25 20:08:45.79 2024-02-25 20:08:45.79 2500 FEE 436349 9335 6066260 2024-02-25 20:08:45.79 2024-02-25 20:08:45.79 22500 TIP 436349 8360 6066273 2024-02-25 20:09:49.738 2024-02-25 20:09:49.738 1000 FEE 438616 16341 6066283 2024-02-25 20:11:23.728 2024-02-25 20:11:23.728 2100 FEE 438613 20606 6066284 2024-02-25 20:11:23.728 2024-02-25 20:11:23.728 18900 TIP 438613 11450 6066331 2024-02-25 20:12:22.028 2024-02-25 20:12:22.028 7700 FEE 438583 17030 6066332 2024-02-25 20:12:22.028 2024-02-25 20:12:22.028 69300 TIP 438583 16145 6066335 2024-02-25 20:12:22.26 2024-02-25 20:12:22.26 7700 FEE 438583 5500 6066336 2024-02-25 20:12:22.26 2024-02-25 20:12:22.26 69300 TIP 438583 20108 6066384 2024-02-25 20:20:06.198 2024-02-25 20:20:06.198 2100 FEE 438451 7675 6066385 2024-02-25 20:20:06.198 2024-02-25 20:20:06.198 18900 TIP 438451 10280 6066397 2024-02-25 20:21:24.481 2024-02-25 20:21:24.481 2100 FEE 438414 2528 6066398 2024-02-25 20:21:24.481 2024-02-25 20:21:24.481 18900 TIP 438414 16355 6066433 2024-02-25 20:21:51.137 2024-02-25 20:21:51.137 2100 FEE 438405 20717 6066434 2024-02-25 20:21:51.137 2024-02-25 20:21:51.137 18900 TIP 438405 19352 6066447 2024-02-25 20:21:56.269 2024-02-25 20:21:56.269 2100 FEE 438405 8326 6066448 2024-02-25 20:21:56.269 2024-02-25 20:21:56.269 18900 TIP 438405 7903 6066462 2024-02-25 20:25:13.441 2024-02-25 20:25:13.441 1000 FEE 438625 4989 6066467 2024-02-25 20:25:54.282 2024-02-25 20:25:54.282 900 FEE 438619 10728 6066468 2024-02-25 20:25:54.282 2024-02-25 20:25:54.282 8100 TIP 438619 18784 6066491 2024-02-25 20:31:01.197 2024-02-25 20:31:01.197 3300 FEE 438451 11967 6065772 2024-02-25 19:26:04.097 2024-02-25 19:26:04.097 1000 STREAM 141924 2774 6065784 2024-02-25 19:28:04.121 2024-02-25 19:28:04.121 1000 STREAM 141924 4624 6065798 2024-02-25 19:29:04.118 2024-02-25 19:29:04.118 1000 STREAM 141924 8916 6065813 2024-02-25 19:31:04.161 2024-02-25 19:31:04.161 1000 STREAM 141924 2101 6065825 2024-02-25 19:34:04.341 2024-02-25 19:34:04.341 1000 STREAM 141924 4259 6065842 2024-02-25 19:37:04.415 2024-02-25 19:37:04.415 1000 STREAM 141924 19857 6065945 2024-02-25 19:38:04.413 2024-02-25 19:38:04.413 1000 STREAM 141924 20614 6065949 2024-02-25 19:39:04.403 2024-02-25 19:39:04.403 1000 STREAM 141924 15139 6065953 2024-02-25 19:40:04.451 2024-02-25 19:40:04.451 1000 STREAM 141924 700 6065956 2024-02-25 19:41:04.428 2024-02-25 19:41:04.428 1000 STREAM 141924 19992 6065959 2024-02-25 19:42:04.446 2024-02-25 19:42:04.446 1000 STREAM 141924 18154 6065962 2024-02-25 19:43:04.468 2024-02-25 19:43:04.468 1000 STREAM 141924 16706 6065971 2024-02-25 19:44:04.492 2024-02-25 19:44:04.492 1000 STREAM 141924 4819 6065975 2024-02-25 19:46:04.533 2024-02-25 19:46:04.533 1000 STREAM 141924 13987 6065983 2024-02-25 19:47:04.519 2024-02-25 19:47:04.519 1000 STREAM 141924 20109 6065998 2024-02-25 19:48:04.525 2024-02-25 19:48:04.525 1000 STREAM 141924 1626 6066037 2024-02-25 19:51:04.575 2024-02-25 19:51:04.575 1000 STREAM 141924 17927 6066041 2024-02-25 19:52:04.593 2024-02-25 19:52:04.593 1000 STREAM 141924 18380 6125064 2024-03-01 13:33:50.451 2024-03-01 13:33:50.451 7700 FEE 444968 4819 6125065 2024-03-01 13:33:50.451 2024-03-01 13:33:50.451 69300 TIP 444968 20691 6125074 2024-03-01 13:34:03.268 2024-03-01 13:34:03.268 7700 FEE 444950 814 6125075 2024-03-01 13:34:03.268 2024-03-01 13:34:03.268 69300 TIP 444950 10060 6125093 2024-03-01 13:34:20.505 2024-03-01 13:34:20.505 6900 FEE 444950 20573 6125094 2024-03-01 13:34:20.505 2024-03-01 13:34:20.505 62100 TIP 444950 7760 6125095 2024-03-01 13:34:20.681 2024-03-01 13:34:20.681 6900 FEE 444950 10016 6125096 2024-03-01 13:34:20.681 2024-03-01 13:34:20.681 62100 TIP 444950 19030 6125113 2024-03-01 13:34:23.316 2024-03-01 13:34:23.316 6900 FEE 444950 5557 6125114 2024-03-01 13:34:23.316 2024-03-01 13:34:23.316 62100 TIP 444950 15100 6125141 2024-03-01 13:35:17.858 2024-03-01 13:35:17.858 6900 FEE 444950 9833 6125142 2024-03-01 13:35:17.858 2024-03-01 13:35:17.858 62100 TIP 444950 657 6125151 2024-03-01 13:35:38.252 2024-03-01 13:35:38.252 7700 FEE 444930 19852 6125152 2024-03-01 13:35:38.252 2024-03-01 13:35:38.252 69300 TIP 444930 676 6125157 2024-03-01 13:35:47.19 2024-03-01 13:35:47.19 7700 FEE 444921 7877 6125158 2024-03-01 13:35:47.19 2024-03-01 13:35:47.19 69300 TIP 444921 14037 6125173 2024-03-01 13:35:48.634 2024-03-01 13:35:48.634 7700 FEE 444921 14950 6125174 2024-03-01 13:35:48.634 2024-03-01 13:35:48.634 69300 TIP 444921 1745 6125212 2024-03-01 13:35:55.58 2024-03-01 13:35:55.58 7700 FEE 444911 2224 6125213 2024-03-01 13:35:55.58 2024-03-01 13:35:55.58 69300 TIP 444911 21172 6125238 2024-03-01 13:36:15.982 2024-03-01 13:36:15.982 7700 FEE 444910 1483 6125239 2024-03-01 13:36:15.982 2024-03-01 13:36:15.982 69300 TIP 444910 976 6125240 2024-03-01 13:36:20.235 2024-03-01 13:36:20.235 2100 FEE 444874 11819 6125241 2024-03-01 13:36:20.235 2024-03-01 13:36:20.235 18900 TIP 444874 913 6125250 2024-03-01 13:36:27.031 2024-03-01 13:36:27.031 7700 FEE 444910 15243 6125251 2024-03-01 13:36:27.031 2024-03-01 13:36:27.031 69300 TIP 444910 19449 6125272 2024-03-01 13:36:51.798 2024-03-01 13:36:51.798 7700 FEE 444755 3342 6125273 2024-03-01 13:36:51.798 2024-03-01 13:36:51.798 69300 TIP 444755 19193 6125276 2024-03-01 13:36:52.139 2024-03-01 13:36:52.139 7700 FEE 444755 18658 6125277 2024-03-01 13:36:52.139 2024-03-01 13:36:52.139 69300 TIP 444755 12946 6125280 2024-03-01 13:36:52.481 2024-03-01 13:36:52.481 7700 FEE 444755 2224 6125281 2024-03-01 13:36:52.481 2024-03-01 13:36:52.481 69300 TIP 444755 8095 6125284 2024-03-01 13:36:54.174 2024-03-01 13:36:54.174 1000 FEE 444982 623 6125298 2024-03-01 13:39:44.698 2024-03-01 13:39:44.698 2700 FEE 444911 18473 6125299 2024-03-01 13:39:44.698 2024-03-01 13:39:44.698 24300 TIP 444911 2844 6125321 2024-03-01 13:40:07.339 2024-03-01 13:40:07.339 2700 FEE 444707 703 6125322 2024-03-01 13:40:07.339 2024-03-01 13:40:07.339 24300 TIP 444707 11073 6125327 2024-03-01 13:40:14.168 2024-03-01 13:40:14.168 3200 FEE 444980 6555 6125328 2024-03-01 13:40:14.168 2024-03-01 13:40:14.168 28800 TIP 444980 6393 6125333 2024-03-01 13:41:32.456 2024-03-01 13:41:32.456 7700 FEE 444933 12261 6125334 2024-03-01 13:41:32.456 2024-03-01 13:41:32.456 69300 TIP 444933 5495 6125339 2024-03-01 13:41:39.095 2024-03-01 13:41:39.095 7700 FEE 444939 20972 6125340 2024-03-01 13:41:39.095 2024-03-01 13:41:39.095 69300 TIP 444939 7389 6125349 2024-03-01 13:42:00.966 2024-03-01 13:42:00.966 7700 FEE 444949 18368 6125350 2024-03-01 13:42:00.966 2024-03-01 13:42:00.966 69300 TIP 444949 21155 6125371 2024-03-01 13:43:57.983 2024-03-01 13:43:57.983 1000 FEE 444985 1617 6125380 2024-03-01 13:45:11.469 2024-03-01 13:45:11.469 1100 FEE 444921 20775 6125381 2024-03-01 13:45:11.469 2024-03-01 13:45:11.469 9900 TIP 444921 21157 6125402 2024-03-01 13:47:32.777 2024-03-01 13:47:32.777 1000 FEE 444988 16670 6125425 2024-03-01 13:50:53.035 2024-03-01 13:50:53.035 1000 FEE 444990 4225 6125429 2024-03-01 13:51:06.154 2024-03-01 13:51:06.154 1000 FEE 444991 6687 6125431 2024-03-01 13:52:03.474 2024-03-01 13:52:03.474 0 FEE 444992 21620 6125447 2024-03-01 13:54:17.811 2024-03-01 13:54:17.811 1000 FEE 444996 21498 6125448 2024-03-01 13:54:29.029 2024-03-01 13:54:29.029 1000 FEE 444997 16270 6125474 2024-03-01 13:55:58.208 2024-03-01 13:55:58.208 100 FEE 444958 20306 6125475 2024-03-01 13:55:58.208 2024-03-01 13:55:58.208 900 TIP 444958 8326 6125479 2024-03-01 13:56:11.811 2024-03-01 13:56:11.811 100000 FEE 444998 20185 6125484 2024-03-01 13:56:40.25 2024-03-01 13:56:40.25 7700 FEE 444907 2614 6125485 2024-03-01 13:56:40.25 2024-03-01 13:56:40.25 69300 TIP 444907 12261 6125488 2024-03-01 13:57:12.621 2024-03-01 13:57:12.621 1000 FEE 444998 686 6125489 2024-03-01 13:57:12.621 2024-03-01 13:57:12.621 9000 TIP 444998 1571 6125524 2024-03-01 13:57:35.108 2024-03-01 13:57:35.108 7700 FEE 444980 19199 6125525 2024-03-01 13:57:35.108 2024-03-01 13:57:35.108 69300 TIP 444980 4074 6125539 2024-03-01 13:58:19.728 2024-03-01 13:58:19.728 7600 FEE 444998 19524 6125540 2024-03-01 13:58:19.728 2024-03-01 13:58:19.728 68400 TIP 444998 6616 6125564 2024-03-01 13:58:38.527 2024-03-01 13:58:38.527 1700 FEE 444998 14503 6125565 2024-03-01 13:58:38.527 2024-03-01 13:58:38.527 15300 TIP 444998 17741 6125566 2024-03-01 13:58:38.702 2024-03-01 13:58:38.702 1700 FEE 444998 644 6125567 2024-03-01 13:58:38.702 2024-03-01 13:58:38.702 15300 TIP 444998 1465 6125576 2024-03-01 13:58:40.738 2024-03-01 13:58:40.738 7600 FEE 444910 9920 6125577 2024-03-01 13:58:40.738 2024-03-01 13:58:40.738 68400 TIP 444910 16633 6125583 2024-03-01 13:58:53.541 2024-03-01 13:58:53.541 1000 FEE 444910 979 6125584 2024-03-01 13:58:53.541 2024-03-01 13:58:53.541 9000 TIP 444910 18380 6125590 2024-03-01 13:59:07.057 2024-03-01 13:59:07.057 7600 FEE 444981 19615 6125591 2024-03-01 13:59:07.057 2024-03-01 13:59:07.057 68400 TIP 444981 17707 6125593 2024-03-01 13:59:47.992 2024-03-01 13:59:47.992 1000 FEE 445006 7766 6125607 2024-03-01 13:59:53.245 2024-03-01 13:59:53.245 300 FEE 444950 19976 6125608 2024-03-01 13:59:53.245 2024-03-01 13:59:53.245 2700 TIP 444950 21573 6125616 2024-03-01 14:00:30.024 2024-03-01 14:00:30.024 3100 FEE 444911 16194 6125617 2024-03-01 14:00:30.024 2024-03-01 14:00:30.024 27900 TIP 444911 20481 6125620 2024-03-01 14:00:50.407 2024-03-01 14:00:50.407 2100 FEE 445003 631 6125621 2024-03-01 14:00:50.407 2024-03-01 14:00:50.407 18900 TIP 445003 10981 6125645 2024-03-01 14:02:51.25 2024-03-01 14:02:51.25 1000 FEE 445012 19309 6125648 2024-03-01 14:03:03.886 2024-03-01 14:03:03.886 1000 FEE 445014 19615 6125653 2024-03-01 14:04:47.343 2024-03-01 14:04:47.343 1000 FEE 445016 19566 6125667 2024-03-01 14:07:34.311 2024-03-01 14:07:34.311 1000 FEE 445016 1720 6125668 2024-03-01 14:07:34.311 2024-03-01 14:07:34.311 9000 TIP 445016 6058 6065787 2024-02-25 19:28:11.461 2024-02-25 19:28:11.461 6900 FEE 438504 859 6065788 2024-02-25 19:28:11.461 2024-02-25 19:28:11.461 62100 TIP 438504 18392 6065791 2024-02-25 19:28:12.878 2024-02-25 19:28:12.878 0 FEE 438588 19952 6065797 2024-02-25 19:28:53.419 2024-02-25 19:28:53.419 0 FEE 438588 20198 6065803 2024-02-25 19:29:24.239 2024-02-25 19:29:24.239 0 FEE 438590 5499 6065806 2024-02-25 19:29:33.685 2024-02-25 19:29:33.685 500 FEE 438325 16301 6065807 2024-02-25 19:29:33.685 2024-02-25 19:29:33.685 4500 TIP 438325 21344 6065841 2024-02-25 19:36:58.592 2024-02-25 19:36:58.592 0 FEE 438594 1047 6065855 2024-02-25 19:37:26.666 2024-02-25 19:37:26.666 100 FEE 438574 21292 6065856 2024-02-25 19:37:26.666 2024-02-25 19:37:26.666 900 TIP 438574 704 6065859 2024-02-25 19:37:26.857 2024-02-25 19:37:26.857 900 FEE 438574 18409 6065860 2024-02-25 19:37:26.857 2024-02-25 19:37:26.857 8100 TIP 438574 11590 6065869 2024-02-25 19:37:35.915 2024-02-25 19:37:35.915 1000 POLL 438202 1426 6065881 2024-02-25 19:37:48.325 2024-02-25 19:37:48.325 1000 FEE 438367 21037 6065882 2024-02-25 19:37:48.325 2024-02-25 19:37:48.325 9000 TIP 438367 18517 6065889 2024-02-25 19:37:49.187 2024-02-25 19:37:49.187 1000 FEE 438367 21062 6065890 2024-02-25 19:37:49.187 2024-02-25 19:37:49.187 9000 TIP 438367 8385 6065901 2024-02-25 19:37:50.408 2024-02-25 19:37:50.408 1000 FEE 438367 18306 6065902 2024-02-25 19:37:50.408 2024-02-25 19:37:50.408 9000 TIP 438367 6360 6065925 2024-02-25 19:37:52.677 2024-02-25 19:37:52.677 1000 FEE 438367 10586 6065926 2024-02-25 19:37:52.677 2024-02-25 19:37:52.677 9000 TIP 438367 10393 6065935 2024-02-25 19:37:53.478 2024-02-25 19:37:53.478 1000 FEE 438367 21254 6065936 2024-02-25 19:37:53.478 2024-02-25 19:37:53.478 9000 TIP 438367 15060 6065954 2024-02-25 19:40:04.652 2024-02-25 19:40:04.652 1000 POLL 438325 21233 6066030 2024-02-25 19:50:02.456 2024-02-25 19:50:02.456 1700 FEE 438590 11590 6066031 2024-02-25 19:50:02.456 2024-02-25 19:50:02.456 15300 TIP 438590 18314 6066051 2024-02-25 19:54:20.216 2024-02-25 19:54:20.216 100 FEE 435847 2322 6066052 2024-02-25 19:54:20.216 2024-02-25 19:54:20.216 900 TIP 435847 13204 6066072 2024-02-25 19:56:03.787 2024-02-25 19:56:03.787 1000 FEE 438603 21463 6066099 2024-02-25 20:01:08.466 2024-02-25 20:01:08.466 1700 FEE 438602 21506 6066100 2024-02-25 20:01:08.466 2024-02-25 20:01:08.466 15300 TIP 438602 7558 6066101 2024-02-25 20:01:12.455 2024-02-25 20:01:12.455 1700 FEE 438601 17157 6066102 2024-02-25 20:01:12.455 2024-02-25 20:01:12.455 15300 TIP 438601 20782 6066120 2024-02-25 20:05:28.676 2024-02-25 20:05:28.676 2100 FEE 438372 8664 6066121 2024-02-25 20:05:28.676 2024-02-25 20:05:28.676 18900 TIP 438372 12708 6066122 2024-02-25 20:05:48.734 2024-02-25 20:05:48.734 7700 FEE 438414 12272 6066123 2024-02-25 20:05:48.734 2024-02-25 20:05:48.734 69300 TIP 438414 20245 6066148 2024-02-25 20:05:52.262 2024-02-25 20:05:52.262 7700 FEE 438325 9169 6066149 2024-02-25 20:05:52.262 2024-02-25 20:05:52.262 69300 TIP 438325 19987 6066150 2024-02-25 20:05:52.382 2024-02-25 20:05:52.382 7700 FEE 438325 7425 6066151 2024-02-25 20:05:52.382 2024-02-25 20:05:52.382 69300 TIP 438325 14785 6066154 2024-02-25 20:05:54.252 2024-02-25 20:05:54.252 7700 FEE 438317 1472 6066155 2024-02-25 20:05:54.252 2024-02-25 20:05:54.252 69300 TIP 438317 18896 6066184 2024-02-25 20:06:14.041 2024-02-25 20:06:14.041 7700 FEE 438451 13169 6066185 2024-02-25 20:06:14.041 2024-02-25 20:06:14.041 69300 TIP 438451 654 6066212 2024-02-25 20:06:18.595 2024-02-25 20:06:18.595 7700 FEE 438405 620 6066213 2024-02-25 20:06:18.595 2024-02-25 20:06:18.595 69300 TIP 438405 19281 6066237 2024-02-25 20:08:16.644 2024-02-25 20:08:16.644 1000 FEE 438092 9330 6066238 2024-02-25 20:08:16.644 2024-02-25 20:08:16.644 9000 TIP 438092 18330 6066277 2024-02-25 20:10:56.627 2024-02-25 20:10:56.627 0 FEE 438617 1237 6066357 2024-02-25 20:17:31.591 2024-02-25 20:17:31.591 1000 FEE 438516 6164 6066358 2024-02-25 20:17:31.591 2024-02-25 20:17:31.591 9000 TIP 438516 13133 6066382 2024-02-25 20:20:06.057 2024-02-25 20:20:06.057 2100 FEE 438451 16149 6066383 2024-02-25 20:20:06.057 2024-02-25 20:20:06.057 18900 TIP 438451 20015 6066386 2024-02-25 20:20:06.414 2024-02-25 20:20:06.414 2100 FEE 438451 3409 6066387 2024-02-25 20:20:06.414 2024-02-25 20:20:06.414 18900 TIP 438451 9611 6066399 2024-02-25 20:21:31.346 2024-02-25 20:21:31.346 2100 FEE 438390 13076 6066400 2024-02-25 20:21:31.346 2024-02-25 20:21:31.346 18900 TIP 438390 11443 6066403 2024-02-25 20:21:31.735 2024-02-25 20:21:31.735 2100 FEE 438390 632 6066404 2024-02-25 20:21:31.735 2024-02-25 20:21:31.735 18900 TIP 438390 6268 6066405 2024-02-25 20:21:32.194 2024-02-25 20:21:32.194 4200 FEE 438390 17568 6066406 2024-02-25 20:21:32.194 2024-02-25 20:21:32.194 37800 TIP 438390 756 6066409 2024-02-25 20:21:33.769 2024-02-25 20:21:33.769 2100 FEE 438390 19796 6066410 2024-02-25 20:21:33.769 2024-02-25 20:21:33.769 18900 TIP 438390 19034 6066417 2024-02-25 20:21:43.361 2024-02-25 20:21:43.361 2100 FEE 438389 20655 6066418 2024-02-25 20:21:43.361 2024-02-25 20:21:43.361 18900 TIP 438389 18678 6066435 2024-02-25 20:21:51.334 2024-02-25 20:21:51.334 2100 FEE 438405 699 6066436 2024-02-25 20:21:51.334 2024-02-25 20:21:51.334 18900 TIP 438405 1505 6066490 2024-02-25 20:30:07.21 2024-02-25 20:30:07.21 1000 FEE 438627 1705 6066505 2024-02-25 20:31:07.824 2024-02-25 20:31:07.824 6600 FEE 438325 1737 6066506 2024-02-25 20:31:07.824 2024-02-25 20:31:07.824 59400 TIP 438325 21413 6066511 2024-02-25 20:32:10.115 2024-02-25 20:32:10.115 3300 FEE 438440 13204 6066512 2024-02-25 20:32:10.115 2024-02-25 20:32:10.115 29700 TIP 438440 1310 6066537 2024-02-25 20:32:53.589 2024-02-25 20:32:53.589 3300 FEE 438404 17041 6066538 2024-02-25 20:32:53.589 2024-02-25 20:32:53.589 29700 TIP 438404 21352 6066539 2024-02-25 20:33:02.729 2024-02-25 20:33:02.729 1000 FEE 438442 919 6066540 2024-02-25 20:33:02.729 2024-02-25 20:33:02.729 9000 TIP 438442 880 6066543 2024-02-25 20:33:18.57 2024-02-25 20:33:18.57 6600 FEE 438467 739 6066544 2024-02-25 20:33:18.57 2024-02-25 20:33:18.57 59400 TIP 438467 15386 6066572 2024-02-25 20:34:01.709 2024-02-25 20:34:01.709 1000 FEE 438630 1237 6066588 2024-02-25 20:35:02.844 2024-02-25 20:35:02.844 100000 FEE 438631 1784 6066672 2024-02-25 20:42:30.978 2024-02-25 20:42:30.978 1000 FEE 438634 19335 6066673 2024-02-25 20:42:30.978 2024-02-25 20:42:30.978 9000 TIP 438634 6382 6066674 2024-02-25 20:42:31.123 2024-02-25 20:42:31.123 1000 FEE 438634 672 6066675 2024-02-25 20:42:31.123 2024-02-25 20:42:31.123 9000 TIP 438634 19352 6066686 2024-02-25 20:46:58.457 2024-02-25 20:46:58.457 3300 FEE 438603 21166 6066687 2024-02-25 20:46:58.457 2024-02-25 20:46:58.457 29700 TIP 438603 3347 6066755 2024-02-25 20:53:30.435 2024-02-25 20:53:30.435 2100 FEE 438546 20998 6066756 2024-02-25 20:53:30.435 2024-02-25 20:53:30.435 18900 TIP 438546 18745 6066760 2024-02-25 20:55:44.347 2024-02-25 20:55:44.347 1000 FEE 438647 20439 6066761 2024-02-25 20:55:44.623 2024-02-25 20:55:44.623 10000 FEE 438597 18615 6066762 2024-02-25 20:55:44.623 2024-02-25 20:55:44.623 90000 TIP 438597 21352 6066780 2024-02-25 20:58:05.014 2024-02-25 20:58:05.014 200 FEE 438651 21334 6066781 2024-02-25 20:58:05.014 2024-02-25 20:58:05.014 1800 TIP 438651 4102 6066782 2024-02-25 20:58:09.749 2024-02-25 20:58:09.749 1000 FEE 438651 6260 6066783 2024-02-25 20:58:09.749 2024-02-25 20:58:09.749 9000 TIP 438651 20168 6066798 2024-02-25 20:59:59.202 2024-02-25 20:59:59.202 2100 FEE 438413 18727 6066799 2024-02-25 20:59:59.202 2024-02-25 20:59:59.202 18900 TIP 438413 8074 6066808 2024-02-25 21:01:19.912 2024-02-25 21:01:19.912 1000 FEE 438656 20264 6066824 2024-02-25 21:07:02.051 2024-02-25 21:07:02.051 1000 FEE 438663 20642 6066828 2024-02-25 21:07:05.577 2024-02-25 21:07:05.577 1000 FEE 438451 21491 6066829 2024-02-25 21:07:05.577 2024-02-25 21:07:05.577 9000 TIP 438451 16970 6066848 2024-02-25 21:09:25.674 2024-02-25 21:09:25.674 900 FEE 438663 19690 6066849 2024-02-25 21:09:25.674 2024-02-25 21:09:25.674 8100 TIP 438663 7659 6066858 2024-02-25 21:09:31.402 2024-02-25 21:09:31.402 100 FEE 438642 2390 6066859 2024-02-25 21:09:31.402 2024-02-25 21:09:31.402 900 TIP 438642 12057 6065801 2024-02-25 19:29:16.275 2024-02-25 19:29:16.275 1000 FEE 438584 701 6065802 2024-02-25 19:29:16.275 2024-02-25 19:29:16.275 9000 TIP 438584 18543 6065819 2024-02-25 19:32:57.271 2024-02-25 19:32:57.271 1000 POLL 438414 16571 6065843 2024-02-25 19:37:08.981 2024-02-25 19:37:08.981 100 FEE 438571 18635 6065844 2024-02-25 19:37:08.981 2024-02-25 19:37:08.981 900 TIP 438571 18892 6065847 2024-02-25 19:37:13.825 2024-02-25 19:37:13.825 100 FEE 438404 14688 6065848 2024-02-25 19:37:13.825 2024-02-25 19:37:13.825 900 TIP 438404 17162 6065849 2024-02-25 19:37:22.295 2024-02-25 19:37:22.295 100 FEE 438378 8569 6065850 2024-02-25 19:37:22.295 2024-02-25 19:37:22.295 900 TIP 438378 910 6065863 2024-02-25 19:37:29.592 2024-02-25 19:37:29.592 1000 FEE 438202 8400 6065864 2024-02-25 19:37:29.592 2024-02-25 19:37:29.592 9000 TIP 438202 16353 6065875 2024-02-25 19:37:47.898 2024-02-25 19:37:47.898 1000 FEE 438367 2709 6065876 2024-02-25 19:37:47.898 2024-02-25 19:37:47.898 9000 TIP 438367 13544 6065887 2024-02-25 19:37:48.94 2024-02-25 19:37:48.94 1000 FEE 438367 15484 6065888 2024-02-25 19:37:48.94 2024-02-25 19:37:48.94 9000 TIP 438367 21412 6065897 2024-02-25 19:37:50.055 2024-02-25 19:37:50.055 1000 FEE 438367 959 6065898 2024-02-25 19:37:50.055 2024-02-25 19:37:50.055 9000 TIP 438367 19967 6065927 2024-02-25 19:37:52.709 2024-02-25 19:37:52.709 9000 FEE 438438 20970 6065928 2024-02-25 19:37:52.709 2024-02-25 19:37:52.709 81000 TIP 438438 18271 6065939 2024-02-25 19:37:53.922 2024-02-25 19:37:53.922 1000 FEE 438367 20778 6065940 2024-02-25 19:37:53.922 2024-02-25 19:37:53.922 9000 TIP 438367 20018 6065946 2024-02-25 19:38:27.927 2024-02-25 19:38:27.927 0 FEE 438595 9342 6065963 2024-02-25 19:43:08.275 2024-02-25 19:43:08.275 1000 FEE 438596 15159 6065964 2024-02-25 19:43:08.275 2024-02-25 19:43:08.275 9000 TIP 438596 13622 6065965 2024-02-25 19:43:10.984 2024-02-25 19:43:10.984 1000 FEE 438596 656 6065966 2024-02-25 19:43:10.984 2024-02-25 19:43:10.984 9000 TIP 438596 6578 6065969 2024-02-25 19:43:13.365 2024-02-25 19:43:13.365 1000 FEE 438596 10536 6065970 2024-02-25 19:43:13.365 2024-02-25 19:43:13.365 9000 TIP 438596 18309 6065973 2024-02-25 19:45:37.587 2024-02-25 19:45:37.587 10000 FEE 430492 9336 6065974 2024-02-25 19:45:37.587 2024-02-25 19:45:37.587 90000 TIP 430492 10409 6065986 2024-02-25 19:47:05.688 2024-02-25 19:47:05.688 1000 FEE 438596 1697 6065987 2024-02-25 19:47:05.688 2024-02-25 19:47:05.688 9000 TIP 438596 9084 6065995 2024-02-25 19:47:37.331 2024-02-25 19:47:37.331 100 FEE 438358 21371 6065996 2024-02-25 19:47:37.331 2024-02-25 19:47:37.331 900 TIP 438358 18751 6066005 2024-02-25 19:48:38.92 2024-02-25 19:48:38.92 2100 FEE 438325 2162 6066006 2024-02-25 19:48:38.92 2024-02-25 19:48:38.92 18900 TIP 438325 20412 6066009 2024-02-25 19:48:42.115 2024-02-25 19:48:42.115 2100 FEE 438504 18114 6066010 2024-02-25 19:48:42.115 2024-02-25 19:48:42.115 18900 TIP 438504 1237 6066011 2024-02-25 19:48:45.711 2024-02-25 19:48:45.711 2100 FEE 438317 19905 6066012 2024-02-25 19:48:45.711 2024-02-25 19:48:45.711 18900 TIP 438317 19284 6066021 2024-02-25 19:48:55.525 2024-02-25 19:48:55.525 2100 FEE 438486 4633 6066022 2024-02-25 19:48:55.525 2024-02-25 19:48:55.525 18900 TIP 438486 18581 6066032 2024-02-25 19:50:02.567 2024-02-25 19:50:02.567 100 FEE 113473 1890 6066033 2024-02-25 19:50:02.567 2024-02-25 19:50:02.567 900 TIP 113473 1307 6066081 2024-02-25 19:58:58.229 2024-02-25 19:58:58.229 5000 FEE 438509 7119 6066082 2024-02-25 19:58:58.229 2024-02-25 19:58:58.229 45000 TIP 438509 18241 6066087 2024-02-25 19:58:58.757 2024-02-25 19:58:58.757 5000 FEE 438509 19036 6066088 2024-02-25 19:58:58.757 2024-02-25 19:58:58.757 45000 TIP 438509 21044 6066092 2024-02-25 19:59:13.989 2024-02-25 19:59:13.989 2100 FEE 438220 19987 6066093 2024-02-25 19:59:13.989 2024-02-25 19:59:13.989 18900 TIP 438220 21422 6066096 2024-02-25 20:01:03.368 2024-02-25 20:01:03.368 300 FEE 438602 20254 6066097 2024-02-25 20:01:03.368 2024-02-25 20:01:03.368 2700 TIP 438602 19352 6066113 2024-02-25 20:04:12.997 2024-02-25 20:04:12.997 100000 FEE 435135 787 6066114 2024-02-25 20:04:12.997 2024-02-25 20:04:12.997 900000 TIP 435135 1617 6066158 2024-02-25 20:05:54.562 2024-02-25 20:05:54.562 1000 FEE 438609 19581 6066159 2024-02-25 20:06:03.567 2024-02-25 20:06:03.567 7700 FEE 438202 20231 6066160 2024-02-25 20:06:03.567 2024-02-25 20:06:03.567 69300 TIP 438202 679 6066168 2024-02-25 20:06:06.203 2024-02-25 20:06:06.203 7700 FEE 438092 21365 6066169 2024-02-25 20:06:06.203 2024-02-25 20:06:06.203 69300 TIP 438092 9333 6066194 2024-02-25 20:06:14.588 2024-02-25 20:06:14.588 7700 FEE 438451 20120 6066195 2024-02-25 20:06:14.588 2024-02-25 20:06:14.588 69300 TIP 438451 1209 6066200 2024-02-25 20:06:17.689 2024-02-25 20:06:17.689 7700 FEE 438405 7766 6066201 2024-02-25 20:06:17.689 2024-02-25 20:06:17.689 69300 TIP 438405 909 6066269 2024-02-25 20:09:08.124 2024-02-25 20:09:08.124 1000 FEE 438614 10270 6066309 2024-02-25 20:12:19.835 2024-02-25 20:12:19.835 7700 FEE 438583 822 6066310 2024-02-25 20:12:19.835 2024-02-25 20:12:19.835 69300 TIP 438583 6419 6066313 2024-02-25 20:12:20.406 2024-02-25 20:12:20.406 15400 FEE 438583 9551 6066314 2024-02-25 20:12:20.406 2024-02-25 20:12:20.406 138600 TIP 438583 21612 6066323 2024-02-25 20:12:21.406 2024-02-25 20:12:21.406 7700 FEE 438583 18525 6066324 2024-02-25 20:12:21.406 2024-02-25 20:12:21.406 69300 TIP 438583 19815 6066327 2024-02-25 20:12:21.602 2024-02-25 20:12:21.602 7700 FEE 438583 15536 6066328 2024-02-25 20:12:21.602 2024-02-25 20:12:21.602 69300 TIP 438583 1740 6066337 2024-02-25 20:12:22.454 2024-02-25 20:12:22.454 7700 FEE 438583 15213 6066338 2024-02-25 20:12:22.454 2024-02-25 20:12:22.454 69300 TIP 438583 16212 6066366 2024-02-25 20:18:21.896 2024-02-25 20:18:21.896 1700 FEE 438619 2703 6066367 2024-02-25 20:18:21.896 2024-02-25 20:18:21.896 15300 TIP 438619 9367 6066401 2024-02-25 20:21:31.538 2024-02-25 20:21:31.538 2100 FEE 438390 15858 6066402 2024-02-25 20:21:31.538 2024-02-25 20:21:31.538 18900 TIP 438390 20837 6066415 2024-02-25 20:21:43.181 2024-02-25 20:21:43.181 2100 FEE 438389 19352 6066416 2024-02-25 20:21:43.181 2024-02-25 20:21:43.181 18900 TIP 438389 670 6066425 2024-02-25 20:21:45.298 2024-02-25 20:21:45.298 2100 FEE 437720 13781 6066426 2024-02-25 20:21:45.298 2024-02-25 20:21:45.298 18900 TIP 437720 18051 6066457 2024-02-25 20:23:50.045 2024-02-25 20:23:50.045 800 FEE 438209 4378 6066458 2024-02-25 20:23:50.045 2024-02-25 20:23:50.045 7200 TIP 438209 18017 6066509 2024-02-25 20:32:09.631 2024-02-25 20:32:09.631 3300 FEE 438440 2583 6066510 2024-02-25 20:32:09.631 2024-02-25 20:32:09.631 29700 TIP 438440 21239 6066529 2024-02-25 20:32:43.477 2024-02-25 20:32:43.477 3300 FEE 438359 16356 6066530 2024-02-25 20:32:43.477 2024-02-25 20:32:43.477 29700 TIP 438359 21612 6066547 2024-02-25 20:33:19.215 2024-02-25 20:33:19.215 3300 FEE 438467 2322 6066548 2024-02-25 20:33:19.215 2024-02-25 20:33:19.215 29700 TIP 438467 16042 6066651 2024-02-25 20:39:13.265 2024-02-25 20:39:13.265 3300 FEE 438232 18500 6066652 2024-02-25 20:39:13.265 2024-02-25 20:39:13.265 29700 TIP 438232 929 6066655 2024-02-25 20:39:13.939 2024-02-25 20:39:13.939 3300 FEE 438232 13216 6066656 2024-02-25 20:39:13.939 2024-02-25 20:39:13.939 29700 TIP 438232 9363 6065812 2024-02-25 19:30:04.172 2024-02-25 19:30:04.172 1000 STREAM 141924 18231 6065815 2024-02-25 19:32:04.176 2024-02-25 19:32:04.176 1000 STREAM 141924 19403 6065820 2024-02-25 19:33:04.191 2024-02-25 19:33:04.191 1000 STREAM 141924 9367 6065830 2024-02-25 19:35:04.354 2024-02-25 19:35:04.354 1000 STREAM 141924 2844 6065834 2024-02-25 19:36:04.401 2024-02-25 19:36:04.401 1000 STREAM 141924 16410 6065972 2024-02-25 19:45:04.508 2024-02-25 19:45:04.508 1000 STREAM 141924 11714 6066025 2024-02-25 19:49:04.712 2024-02-25 19:49:04.712 1000 STREAM 141924 4819 6066036 2024-02-25 19:50:04.656 2024-02-25 19:50:04.656 1000 STREAM 141924 2285 6066046 2024-02-25 19:53:04.6 2024-02-25 19:53:04.6 1000 STREAM 141924 21402 6066049 2024-02-25 19:54:04.633 2024-02-25 19:54:04.633 1000 STREAM 141924 5806 6066071 2024-02-25 19:55:04.667 2024-02-25 19:55:04.667 1000 STREAM 141924 861 6066073 2024-02-25 19:56:04.64 2024-02-25 19:56:04.64 1000 STREAM 141924 19821 6066074 2024-02-25 19:57:04.653 2024-02-25 19:57:04.653 1000 STREAM 141924 17011 6066075 2024-02-25 19:58:04.651 2024-02-25 19:58:04.651 1000 STREAM 141924 6700 6066268 2024-02-25 20:09:04.572 2024-02-25 20:09:04.572 1000 STREAM 141924 16177 6066275 2024-02-25 20:10:04.586 2024-02-25 20:10:04.586 1000 STREAM 141924 21357 6066296 2024-02-25 20:12:04.61 2024-02-25 20:12:04.61 1000 STREAM 141924 21214 6066348 2024-02-25 20:14:04.64 2024-02-25 20:14:04.64 1000 STREAM 141924 6653 6066355 2024-02-25 20:17:04.692 2024-02-25 20:17:04.692 1000 STREAM 141924 733 6066377 2024-02-25 20:20:04.765 2024-02-25 20:20:04.765 1000 STREAM 141924 16229 6066396 2024-02-25 20:21:04.76 2024-02-25 20:21:04.76 1000 STREAM 141924 775 6125119 2024-03-01 13:34:23.834 2024-03-01 13:34:23.834 6900 FEE 444950 3347 6125120 2024-03-01 13:34:23.834 2024-03-01 13:34:23.834 62100 TIP 444950 20180 6125143 2024-03-01 13:35:18.006 2024-03-01 13:35:18.006 6900 FEE 444950 12422 6125144 2024-03-01 13:35:18.006 2024-03-01 13:35:18.006 62100 TIP 444950 3478 6125175 2024-03-01 13:35:48.853 2024-03-01 13:35:48.853 7700 FEE 444921 19320 6125176 2024-03-01 13:35:48.853 2024-03-01 13:35:48.853 69300 TIP 444921 9517 6125188 2024-03-01 13:35:53.843 2024-03-01 13:35:53.843 7700 FEE 444911 7773 6125189 2024-03-01 13:35:53.843 2024-03-01 13:35:53.843 69300 TIP 444911 698 6125221 2024-03-01 13:36:04.364 2024-03-01 13:36:04.364 1000 FEE 444980 21334 6125222 2024-03-01 13:36:04.364 2024-03-01 13:36:04.364 9000 TIP 444980 13143 6125242 2024-03-01 13:36:26.572 2024-03-01 13:36:26.572 7700 FEE 444910 18837 6125243 2024-03-01 13:36:26.572 2024-03-01 13:36:26.572 69300 TIP 444910 20377 6125274 2024-03-01 13:36:52.021 2024-03-01 13:36:52.021 7700 FEE 444755 1130 6125275 2024-03-01 13:36:52.021 2024-03-01 13:36:52.021 69300 TIP 444755 989 6125306 2024-03-01 13:39:45.485 2024-03-01 13:39:45.485 2700 FEE 444911 20981 6125307 2024-03-01 13:39:45.485 2024-03-01 13:39:45.485 24300 TIP 444911 1438 6125323 2024-03-01 13:40:07.587 2024-03-01 13:40:07.587 2700 FEE 444707 18321 6125324 2024-03-01 13:40:07.587 2024-03-01 13:40:07.587 24300 TIP 444707 1291 6125329 2024-03-01 13:40:18.014 2024-03-01 13:40:18.014 1000 FEE 444983 714 6125352 2024-03-01 13:42:06.58 2024-03-01 13:42:06.58 7700 FEE 444952 20185 6125353 2024-03-01 13:42:06.58 2024-03-01 13:42:06.58 69300 TIP 444952 18051 6125363 2024-03-01 13:43:18.198 2024-03-01 13:43:18.198 2100 FEE 444754 2749 6125364 2024-03-01 13:43:18.198 2024-03-01 13:43:18.198 18900 TIP 444754 5057 6125369 2024-03-01 13:43:55.245 2024-03-01 13:43:55.245 7700 FEE 444982 6229 6125370 2024-03-01 13:43:55.245 2024-03-01 13:43:55.245 69300 TIP 444982 16259 6125375 2024-03-01 13:44:50.231 2024-03-01 13:44:50.231 1100 FEE 444874 19018 6125376 2024-03-01 13:44:50.231 2024-03-01 13:44:50.231 9900 TIP 444874 794 6125409 2024-03-01 13:49:32.073 2024-03-01 13:49:32.073 21800 FEE 444950 4173 6125410 2024-03-01 13:49:32.073 2024-03-01 13:49:32.073 196200 TIP 444950 10273 6125421 2024-03-01 13:50:45.178 2024-03-01 13:50:45.178 1700 FEE 444987 7983 6125422 2024-03-01 13:50:45.178 2024-03-01 13:50:45.178 15300 TIP 444987 8059 6125436 2024-03-01 13:52:29.734 2024-03-01 13:52:29.734 3200 FEE 444845 6688 6125437 2024-03-01 13:52:29.734 2024-03-01 13:52:29.734 28800 TIP 444845 732 6125445 2024-03-01 13:53:59.705 2024-03-01 13:53:59.705 0 FEE 444994 9906 6125503 2024-03-01 13:57:30.057 2024-03-01 13:57:30.057 1700 FEE 444998 18264 6125504 2024-03-01 13:57:30.057 2024-03-01 13:57:30.057 15300 TIP 444998 1326 6125511 2024-03-01 13:57:32.848 2024-03-01 13:57:32.848 7700 FEE 444980 6717 6065896 2024-02-25 19:37:49.833 2024-02-25 19:37:49.833 9000 TIP 438367 19462 6065909 2024-02-25 19:37:51.272 2024-02-25 19:37:51.272 1000 FEE 438367 21344 6065910 2024-02-25 19:37:51.272 2024-02-25 19:37:51.272 9000 TIP 438367 768 6065915 2024-02-25 19:37:51.993 2024-02-25 19:37:51.993 1000 FEE 438367 2437 6065916 2024-02-25 19:37:51.993 2024-02-25 19:37:51.993 9000 TIP 438367 1105 6065976 2024-02-25 19:46:08.791 2024-02-25 19:46:08.791 10000 FEE 430264 1825 6065977 2024-02-25 19:46:08.791 2024-02-25 19:46:08.791 90000 TIP 430264 15159 6065978 2024-02-25 19:46:39.01 2024-02-25 19:46:39.01 1000 FEE 438598 993 6065990 2024-02-25 19:47:08.218 2024-02-25 19:47:08.218 1000 FEE 438596 6041 6065991 2024-02-25 19:47:08.218 2024-02-25 19:47:08.218 9000 TIP 438596 13759 6065992 2024-02-25 19:47:10.293 2024-02-25 19:47:10.293 1000 FEE 438596 16097 6065993 2024-02-25 19:47:10.293 2024-02-25 19:47:10.293 9000 TIP 438596 13587 6065994 2024-02-25 19:47:12.526 2024-02-25 19:47:12.526 1000 FEE 438599 15577 6066003 2024-02-25 19:48:36.262 2024-02-25 19:48:36.262 2100 FEE 438451 20434 6066004 2024-02-25 19:48:36.262 2024-02-25 19:48:36.262 18900 TIP 438451 20179 6066042 2024-02-25 19:52:59.611 2024-02-25 19:52:59.611 1000 FEE 438405 21201 6066043 2024-02-25 19:52:59.611 2024-02-25 19:52:59.611 9000 TIP 438405 16296 6066047 2024-02-25 19:53:09.31 2024-02-25 19:53:09.31 10000 FEE 437062 9874 6066048 2024-02-25 19:53:09.31 2024-02-25 19:53:09.31 90000 TIP 437062 11417 6066063 2024-02-25 19:54:49.62 2024-02-25 19:54:49.62 1000 FEE 438474 20310 6066064 2024-02-25 19:54:49.62 2024-02-25 19:54:49.62 9000 TIP 438474 16929 6066065 2024-02-25 19:54:49.633 2024-02-25 19:54:49.633 1000 FEE 438474 4819 6066066 2024-02-25 19:54:49.633 2024-02-25 19:54:49.633 9000 TIP 438474 21349 6066076 2024-02-25 19:58:18.194 2024-02-25 19:58:18.194 10000 FEE 438605 12738 6066079 2024-02-25 19:58:44.962 2024-02-25 19:58:44.962 100 FEE 438593 21040 6066080 2024-02-25 19:58:44.962 2024-02-25 19:58:44.962 900 TIP 438593 16432 6066085 2024-02-25 19:58:58.586 2024-02-25 19:58:58.586 5000 FEE 438509 14795 6066086 2024-02-25 19:58:58.586 2024-02-25 19:58:58.586 45000 TIP 438509 21064 6066106 2024-02-25 20:02:10.606 2024-02-25 20:02:10.606 100000 FEE 435046 13927 6066107 2024-02-25 20:02:10.606 2024-02-25 20:02:10.606 900000 TIP 435046 11275 6066111 2024-02-25 20:03:59.911 2024-02-25 20:03:59.911 120000 FEE 438607 20881 6066140 2024-02-25 20:05:51.895 2024-02-25 20:05:51.895 7700 FEE 438325 21263 6066141 2024-02-25 20:05:51.895 2024-02-25 20:05:51.895 69300 TIP 438325 17001 6066142 2024-02-25 20:05:51.928 2024-02-25 20:05:51.928 7700 FEE 438325 21393 6066143 2024-02-25 20:05:51.928 2024-02-25 20:05:51.928 69300 TIP 438325 16178 6066146 2024-02-25 20:05:52.248 2024-02-25 20:05:52.248 7700 FEE 438325 9349 6066147 2024-02-25 20:05:52.248 2024-02-25 20:05:52.248 69300 TIP 438325 15491 6066190 2024-02-25 20:06:14.402 2024-02-25 20:06:14.402 7700 FEE 438451 2000 6066191 2024-02-25 20:06:14.402 2024-02-25 20:06:14.402 69300 TIP 438451 1003 6066202 2024-02-25 20:06:17.796 2024-02-25 20:06:17.796 7700 FEE 438405 17797 6066203 2024-02-25 20:06:17.796 2024-02-25 20:06:17.796 69300 TIP 438405 20190 6066239 2024-02-25 20:08:16.979 2024-02-25 20:08:16.979 1000 FEE 438092 20594 6066240 2024-02-25 20:08:16.979 2024-02-25 20:08:16.979 9000 TIP 438092 12097 6066241 2024-02-25 20:08:17.329 2024-02-25 20:08:17.329 1000 FEE 438092 6229 6066242 2024-02-25 20:08:17.329 2024-02-25 20:08:17.329 9000 TIP 438092 18679 6066253 2024-02-25 20:08:24.199 2024-02-25 20:08:24.199 2100 FEE 438534 17109 6066254 2024-02-25 20:08:24.199 2024-02-25 20:08:24.199 18900 TIP 438534 715 6065968 2024-02-25 19:43:12.494 2024-02-25 19:43:12.494 9000 TIP 438596 1772 6065997 2024-02-25 19:48:00.354 2024-02-25 19:48:00.354 1000 FEE 438600 16717 6066017 2024-02-25 19:48:49.831 2024-02-25 19:48:49.831 2100 FEE 438389 5590 6066018 2024-02-25 19:48:49.831 2024-02-25 19:48:49.831 18900 TIP 438389 775 6066026 2024-02-25 19:49:28.381 2024-02-25 19:49:28.381 2100 FEE 438596 19303 6066027 2024-02-25 19:49:28.381 2024-02-25 19:49:28.381 18900 TIP 438596 20059 6066053 2024-02-25 19:54:22.894 2024-02-25 19:54:22.894 100 FEE 437833 9171 6066054 2024-02-25 19:54:22.894 2024-02-25 19:54:22.894 900 TIP 437833 679 6066077 2024-02-25 19:58:42.735 2024-02-25 19:58:42.735 100 FEE 438593 21036 6066078 2024-02-25 19:58:42.735 2024-02-25 19:58:42.735 900 TIP 438593 6191 6066083 2024-02-25 19:58:58.421 2024-02-25 19:58:58.421 5000 FEE 438509 16456 6066084 2024-02-25 19:58:58.421 2024-02-25 19:58:58.421 45000 TIP 438509 1567 6066115 2024-02-25 20:04:35.615 2024-02-25 20:04:35.615 1000 FEE 438608 10270 6066130 2024-02-25 20:05:49.42 2024-02-25 20:05:49.42 7700 FEE 438414 21401 6066131 2024-02-25 20:05:49.42 2024-02-25 20:05:49.42 69300 TIP 438414 18528 6066136 2024-02-25 20:05:51.592 2024-02-25 20:05:51.592 7700 FEE 438325 683 6066137 2024-02-25 20:05:51.592 2024-02-25 20:05:51.592 69300 TIP 438325 20969 6066138 2024-02-25 20:05:51.855 2024-02-25 20:05:51.855 7700 FEE 438325 1673 6066139 2024-02-25 20:05:51.855 2024-02-25 20:05:51.855 69300 TIP 438325 14202 6066166 2024-02-25 20:06:06.064 2024-02-25 20:06:06.064 7700 FEE 438092 703 6066167 2024-02-25 20:06:06.064 2024-02-25 20:06:06.064 69300 TIP 438092 8535 6066180 2024-02-25 20:06:13.876 2024-02-25 20:06:13.876 7700 FEE 438451 17218 6066181 2024-02-25 20:06:13.876 2024-02-25 20:06:13.876 69300 TIP 438451 19462 6066188 2024-02-25 20:06:14.294 2024-02-25 20:06:14.294 7700 FEE 438451 21352 6066189 2024-02-25 20:06:14.294 2024-02-25 20:06:14.294 69300 TIP 438451 8245 6066226 2024-02-25 20:07:33.137 2024-02-25 20:07:33.137 100000 FEE 438611 16309 6066235 2024-02-25 20:08:16.327 2024-02-25 20:08:16.327 2100 FEE 438607 20302 6066236 2024-02-25 20:08:16.327 2024-02-25 20:08:16.327 18900 TIP 438607 21387 6066265 2024-02-25 20:09:00.25 2024-02-25 20:09:00.25 2100 FEE 438486 1718 6066266 2024-02-25 20:09:00.25 2024-02-25 20:09:00.25 18900 TIP 438486 18640 6066276 2024-02-25 20:10:13.447 2024-02-25 20:10:13.447 0 FEE 438617 15271 6066278 2024-02-25 20:11:00.356 2024-02-25 20:11:00.356 2100 FEE 438603 4487 6066279 2024-02-25 20:11:00.356 2024-02-25 20:11:00.356 18900 TIP 438603 2056 6066292 2024-02-25 20:12:03.736 2024-02-25 20:12:03.736 1000 FEE 438065 1114 6066293 2024-02-25 20:12:03.736 2024-02-25 20:12:03.736 9000 TIP 438065 13599 6066303 2024-02-25 20:12:18.845 2024-02-25 20:12:18.845 30800 FEE 438583 861 6066304 2024-02-25 20:12:18.845 2024-02-25 20:12:18.845 277200 TIP 438583 18330 6066305 2024-02-25 20:12:19.62 2024-02-25 20:12:19.62 7700 FEE 438583 12057 6066306 2024-02-25 20:12:19.62 2024-02-25 20:12:19.62 69300 TIP 438583 20090 6066315 2024-02-25 20:12:20.626 2024-02-25 20:12:20.626 7700 FEE 438583 16665 6066316 2024-02-25 20:12:20.626 2024-02-25 20:12:20.626 69300 TIP 438583 15273 6125150 2024-03-01 13:35:38.097 2024-03-01 13:35:38.097 69300 TIP 444930 18829 6125180 2024-03-01 13:35:53.408 2024-03-01 13:35:53.408 7700 FEE 444911 20187 6125181 2024-03-01 13:35:53.408 2024-03-01 13:35:53.408 69300 TIP 444911 882 6125184 2024-03-01 13:35:53.529 2024-03-01 13:35:53.529 1600 FEE 444977 9611 6125185 2024-03-01 13:35:53.529 2024-03-01 13:35:53.529 14400 TIP 444977 18832 6125192 2024-03-01 13:35:53.958 2024-03-01 13:35:53.958 7700 FEE 444911 20802 6125193 2024-03-01 13:35:53.958 2024-03-01 13:35:53.958 69300 TIP 444911 9366 6125208 2024-03-01 13:35:55.272 2024-03-01 13:35:55.272 7700 FEE 444911 18040 6125209 2024-03-01 13:35:55.272 2024-03-01 13:35:55.272 69300 TIP 444911 16842 6125210 2024-03-01 13:35:55.391 2024-03-01 13:35:55.391 7700 FEE 444911 15213 6125211 2024-03-01 13:35:55.391 2024-03-01 13:35:55.391 69300 TIP 444911 20245 6125219 2024-03-01 13:36:04.108 2024-03-01 13:36:04.108 1000 FEE 444980 16212 6125220 2024-03-01 13:36:04.108 2024-03-01 13:36:04.108 9000 TIP 444980 18116 6125246 2024-03-01 13:36:26.894 2024-03-01 13:36:26.894 7700 FEE 444910 17046 6125247 2024-03-01 13:36:26.894 2024-03-01 13:36:26.894 69300 TIP 444910 21605 6125311 2024-03-01 13:40:06.381 2024-03-01 13:40:06.381 2700 FEE 444707 7966 6125312 2024-03-01 13:40:06.381 2024-03-01 13:40:06.381 24300 TIP 444707 15243 6125335 2024-03-01 13:41:32.687 2024-03-01 13:41:32.687 15400 FEE 444933 12951 6125336 2024-03-01 13:41:32.687 2024-03-01 13:41:32.687 138600 TIP 444933 1389 6125359 2024-03-01 13:43:05.287 2024-03-01 13:43:05.287 77000 DONT_LIKE_THIS 444707 900 6125360 2024-03-01 13:43:09.945 2024-03-01 13:43:09.945 1000 FEE 444984 825 6125361 2024-03-01 13:43:13.847 2024-03-01 13:43:13.847 1000 FEE 444713 1803 6125362 2024-03-01 13:43:13.847 2024-03-01 13:43:13.847 9000 TIP 444713 16442 6125392 2024-03-01 13:46:26.713 2024-03-01 13:46:26.713 1000 FEE 444328 21532 6125393 2024-03-01 13:46:26.713 2024-03-01 13:46:26.713 9000 TIP 444328 14669 6125395 2024-03-01 13:46:42.142 2024-03-01 13:46:42.142 1600 FEE 444926 17116 6125396 2024-03-01 13:46:42.142 2024-03-01 13:46:42.142 14400 TIP 444926 13406 6125403 2024-03-01 13:47:45.27 2024-03-01 13:47:45.27 1600 FEE 444847 20990 6125404 2024-03-01 13:47:45.27 2024-03-01 13:47:45.27 14400 TIP 444847 5306 6125418 2024-03-01 13:50:44.469 2024-03-01 13:50:44.469 1000 FEE 444989 1389 6125419 2024-03-01 13:50:45.047 2024-03-01 13:50:45.047 1700 FEE 444987 18116 6125420 2024-03-01 13:50:45.047 2024-03-01 13:50:45.047 15300 TIP 444987 16351 6125423 2024-03-01 13:50:45.358 2024-03-01 13:50:45.358 1700 FEE 444987 11821 6125424 2024-03-01 13:50:45.358 2024-03-01 13:50:45.358 15300 TIP 444987 6300 6125433 2024-03-01 13:52:06.046 2024-03-01 13:52:06.046 6900 FEE 444911 2525 6125434 2024-03-01 13:52:06.046 2024-03-01 13:52:06.046 62100 TIP 444911 4459 6125439 2024-03-01 13:53:11.945 2024-03-01 13:53:11.945 700 FEE 444934 7903 6125440 2024-03-01 13:53:11.945 2024-03-01 13:53:11.945 6300 TIP 444934 20276 6125441 2024-03-01 13:53:28.054 2024-03-01 13:53:28.054 1000 FEE 444994 14705 6125449 2024-03-01 13:54:48.387 2024-03-01 13:54:48.387 100 FEE 444968 4391 6125450 2024-03-01 13:54:48.387 2024-03-01 13:54:48.387 900 TIP 444968 5057 6125454 2024-03-01 13:55:21.311 2024-03-01 13:55:21.311 100 FEE 444981 16929 6125455 2024-03-01 13:55:21.311 2024-03-01 13:55:21.311 900 TIP 444981 782 6125460 2024-03-01 13:55:29.692 2024-03-01 13:55:29.692 100 FEE 444973 2328 6125461 2024-03-01 13:55:29.692 2024-03-01 13:55:29.692 900 TIP 444973 17523 6125464 2024-03-01 13:55:39.641 2024-03-01 13:55:39.641 100 FEE 444962 19576 6125465 2024-03-01 13:55:39.641 2024-03-01 13:55:39.641 900 TIP 444962 21090 6125480 2024-03-01 13:56:17.732 2024-03-01 13:56:17.732 1000 FEE 444999 17602 6125491 2024-03-01 13:57:20.631 2024-03-01 13:57:20.631 9000 FEE 444998 17171 6125492 2024-03-01 13:57:20.631 2024-03-01 13:57:20.631 81000 TIP 444998 4323 6125497 2024-03-01 13:57:29.164 2024-03-01 13:57:29.164 1700 FEE 444998 21352 6125498 2024-03-01 13:57:29.164 2024-03-01 13:57:29.164 15300 TIP 444998 695 6125501 2024-03-01 13:57:29.467 2024-03-01 13:57:29.467 1700 FEE 444998 20511 6125502 2024-03-01 13:57:29.467 2024-03-01 13:57:29.467 15300 TIP 444998 5757 6125526 2024-03-01 13:57:35.227 2024-03-01 13:57:35.227 7700 FEE 444980 21357 6125527 2024-03-01 13:57:35.227 2024-03-01 13:57:35.227 69300 TIP 444980 7097 6125533 2024-03-01 13:57:58.466 2024-03-01 13:57:58.466 10000 FEE 444927 4768 6066091 2024-02-25 19:59:04.669 2024-02-25 19:59:04.669 1000 STREAM 141924 13527 6125227 2024-03-01 13:36:07.066 2024-03-01 13:36:07.066 2000 FEE 444980 5761 6125228 2024-03-01 13:36:07.066 2024-03-01 13:36:07.066 18000 TIP 444980 18446 6125237 2024-03-01 13:36:15.874 2024-03-01 13:36:15.874 10000 FEE 444981 7558 6125252 2024-03-01 13:36:27.152 2024-03-01 13:36:27.152 7700 FEE 444910 1326 6125253 2024-03-01 13:36:27.152 2024-03-01 13:36:27.152 69300 TIP 444910 802 6125254 2024-03-01 13:36:27.377 2024-03-01 13:36:27.377 7700 FEE 444910 2098 6125255 2024-03-01 13:36:27.377 2024-03-01 13:36:27.377 69300 TIP 444910 11938 6125270 2024-03-01 13:36:51.686 2024-03-01 13:36:51.686 7700 FEE 444755 17514 6125271 2024-03-01 13:36:51.686 2024-03-01 13:36:51.686 69300 TIP 444755 20564 6125286 2024-03-01 13:37:40.33 2024-03-01 13:37:40.33 83000 DONT_LIKE_THIS 444874 20080 6125293 2024-03-01 13:38:56.859 2024-03-01 13:38:56.859 7700 FEE 444800 11145 6125294 2024-03-01 13:38:56.859 2024-03-01 13:38:56.859 69300 TIP 444800 20745 6125304 2024-03-01 13:39:45.273 2024-03-01 13:39:45.273 2700 FEE 444911 21254 6125305 2024-03-01 13:39:45.273 2024-03-01 13:39:45.273 24300 TIP 444911 2576 6125309 2024-03-01 13:40:06.172 2024-03-01 13:40:06.172 2700 FEE 444707 16410 6125310 2024-03-01 13:40:06.172 2024-03-01 13:40:06.172 24300 TIP 444707 20272 6125313 2024-03-01 13:40:06.57 2024-03-01 13:40:06.57 2700 FEE 444707 21222 6125314 2024-03-01 13:40:06.57 2024-03-01 13:40:06.57 24300 TIP 444707 919 6125354 2024-03-01 13:42:16.046 2024-03-01 13:42:16.046 7700 FEE 444939 21603 6125355 2024-03-01 13:42:16.046 2024-03-01 13:42:16.046 69300 TIP 444939 20500 6125373 2024-03-01 13:44:24.637 2024-03-01 13:44:24.637 1100 FEE 444929 14449 6125374 2024-03-01 13:44:24.637 2024-03-01 13:44:24.637 9900 TIP 444929 21589 6125382 2024-03-01 13:45:22.468 2024-03-01 13:45:22.468 1000 FEE 444986 2775 6125385 2024-03-01 13:45:50.04 2024-03-01 13:45:50.04 1600 FEE 444755 15160 6125386 2024-03-01 13:45:50.04 2024-03-01 13:45:50.04 14400 TIP 444755 4314 6125390 2024-03-01 13:46:15.773 2024-03-01 13:46:15.773 100 FEE 444980 1740 6125391 2024-03-01 13:46:15.773 2024-03-01 13:46:15.773 900 TIP 444980 4776 6125400 2024-03-01 13:47:20.817 2024-03-01 13:47:20.817 100 FEE 444962 9476 6125401 2024-03-01 13:47:20.817 2024-03-01 13:47:20.817 900 TIP 444962 18897 6125426 2024-03-01 13:50:57.96 2024-03-01 13:50:57.96 2100 FEE 444984 20302 6125427 2024-03-01 13:50:57.96 2024-03-01 13:50:57.96 18900 TIP 444984 11873 6125490 2024-03-01 13:57:15.734 2024-03-01 13:57:15.734 1000 FEE 445001 626 6125499 2024-03-01 13:57:29.31 2024-03-01 13:57:29.31 1700 FEE 444998 4074 6125500 2024-03-01 13:57:29.31 2024-03-01 13:57:29.31 15300 TIP 444998 14202 6125507 2024-03-01 13:57:32.157 2024-03-01 13:57:32.157 7700 FEE 444980 15115 6125508 2024-03-01 13:57:32.157 2024-03-01 13:57:32.157 69300 TIP 444980 679 6125515 2024-03-01 13:57:33.078 2024-03-01 13:57:33.078 1000 FEE 445002 9809 6125528 2024-03-01 13:57:44.204 2024-03-01 13:57:44.204 10000 FEE 444992 18626 6125529 2024-03-01 13:57:44.204 2024-03-01 13:57:44.204 90000 TIP 444992 15094 6125545 2024-03-01 13:58:24.419 2024-03-01 13:58:24.419 7700 FEE 444987 1552 6125546 2024-03-01 13:58:24.419 2024-03-01 13:58:24.419 69300 TIP 444987 9026 6125595 2024-03-01 13:59:51.849 2024-03-01 13:59:51.849 300 FEE 444950 21609 6125596 2024-03-01 13:59:51.849 2024-03-01 13:59:51.849 2700 TIP 444950 19943 6125603 2024-03-01 13:59:52.864 2024-03-01 13:59:52.864 300 FEE 444950 16965 6125604 2024-03-01 13:59:52.864 2024-03-01 13:59:52.864 2700 TIP 444950 20504 6125609 2024-03-01 13:59:54.756 2024-03-01 13:59:54.756 300 FEE 444950 11798 6125610 2024-03-01 13:59:54.756 2024-03-01 13:59:54.756 2700 TIP 444950 11956 6125611 2024-03-01 13:59:58.812 2024-03-01 13:59:58.812 3200 FEE 444995 18016 6125612 2024-03-01 13:59:58.812 2024-03-01 13:59:58.812 28800 TIP 444995 21159 6125635 2024-03-01 14:01:54.881 2024-03-01 14:01:54.881 3100 FEE 444950 17708 6125636 2024-03-01 14:01:54.881 2024-03-01 14:01:54.881 27900 TIP 444950 14552 6125649 2024-03-01 14:03:55.313 2024-03-01 14:03:55.313 1000 FEE 445015 20073 6125659 2024-03-01 14:06:39.126 2024-03-01 14:06:39.126 1000 FEE 445018 20756 6125695 2024-03-01 14:10:19.118 2024-03-01 14:10:19.118 10000 FEE 444950 19690 6125696 2024-03-01 14:10:19.118 2024-03-01 14:10:19.118 90000 TIP 444950 2942 6125710 2024-03-01 14:11:31.269 2024-03-01 14:11:31.269 1000 FEE 445025 654 6125711 2024-03-01 14:11:42.615 2024-03-01 14:11:42.615 21000 DONT_LIKE_THIS 444968 777 6125726 2024-03-01 14:12:49.268 2024-03-01 14:12:49.268 7700 FEE 445003 17602 6125727 2024-03-01 14:12:49.268 2024-03-01 14:12:49.268 69300 TIP 445003 16259 6125740 2024-03-01 14:13:18.134 2024-03-01 14:13:18.134 7700 FEE 444915 19943 6125741 2024-03-01 14:13:18.134 2024-03-01 14:13:18.134 69300 TIP 444915 5175 6125743 2024-03-01 14:13:43.101 2024-03-01 14:13:43.101 22200 FEE 444998 21585 6125744 2024-03-01 14:13:43.101 2024-03-01 14:13:43.101 199800 TIP 444998 732 6125749 2024-03-01 14:14:28.225 2024-03-01 14:14:28.225 1000 FEE 445032 20251 6125772 2024-03-01 14:16:50.857 2024-03-01 14:16:50.857 100 FEE 444939 15351 6125773 2024-03-01 14:16:50.857 2024-03-01 14:16:50.857 900 TIP 444939 8870 6125801 2024-03-01 14:20:38.094 2024-03-01 14:20:38.094 2100 FEE 445017 16970 6125802 2024-03-01 14:20:38.094 2024-03-01 14:20:38.094 18900 TIP 445017 5725 6125866 2024-03-01 14:30:17.946 2024-03-01 14:30:17.946 4200 FEE 444957 10493 6125867 2024-03-01 14:30:17.946 2024-03-01 14:30:17.946 37800 TIP 444957 17707 6125871 2024-03-01 14:31:16 2024-03-01 14:31:16 3300 FEE 444684 749 6125872 2024-03-01 14:31:16 2024-03-01 14:31:16 29700 TIP 444684 13878 6125894 2024-03-01 14:34:33.026 2024-03-01 14:34:33.026 20000 FEE 444998 8360 6125895 2024-03-01 14:34:33.026 2024-03-01 14:34:33.026 180000 TIP 444998 1552 6125910 2024-03-01 14:36:35.706 2024-03-01 14:36:35.706 1000 FEE 445071 11885 6125938 2024-03-01 14:39:50.877 2024-03-01 14:39:50.877 1000 FEE 445076 18473 6125950 2024-03-01 14:40:26.795 2024-03-01 14:40:26.795 1000 FEE 444849 951 6125951 2024-03-01 14:40:26.795 2024-03-01 14:40:26.795 9000 TIP 444849 19843 6125962 2024-03-01 14:41:45.486 2024-03-01 14:41:45.486 1000 FEE 444958 14015 6125963 2024-03-01 14:41:45.486 2024-03-01 14:41:45.486 9000 TIP 444958 16598 6125970 2024-03-01 14:41:54.085 2024-03-01 14:41:54.085 9000 FEE 444998 9969 6125971 2024-03-01 14:41:54.085 2024-03-01 14:41:54.085 81000 TIP 444998 16747 6125986 2024-03-01 14:44:58.254 2024-03-01 14:44:58.254 100000 FEE 445080 20891 6125989 2024-03-01 14:45:47.737 2024-03-01 14:45:47.737 1000 FEE 445082 985 6126021 2024-03-01 14:47:22.078 2024-03-01 14:47:22.078 100 FEE 445050 16276 6126022 2024-03-01 14:47:22.078 2024-03-01 14:47:22.078 900 TIP 445050 19961 6066094 2024-02-25 20:00:04.897 2024-02-25 20:00:04.897 1000 STREAM 141924 1983 6066105 2024-02-25 20:02:05.044 2024-02-25 20:02:05.044 1000 STREAM 141924 2213 6066112 2024-02-25 20:04:04.881 2024-02-25 20:04:04.881 1000 STREAM 141924 21612 6066117 2024-02-25 20:05:04.885 2024-02-25 20:05:04.885 1000 STREAM 141924 632 6066163 2024-02-25 20:06:04.892 2024-02-25 20:06:04.892 1000 STREAM 141924 21091 6066220 2024-02-25 20:07:04.899 2024-02-25 20:07:04.899 1000 STREAM 141924 9874 6066230 2024-02-25 20:08:04.919 2024-02-25 20:08:04.919 1000 STREAM 141924 18829 6066280 2024-02-25 20:11:04.964 2024-02-25 20:11:04.964 1000 STREAM 141924 2724 6066452 2024-02-25 20:23:07.002 2024-02-25 20:23:07.002 1000 STREAM 141924 4802 6066483 2024-02-25 20:28:03.016 2024-02-25 20:28:03.016 1000 STREAM 141924 17226 6125347 2024-03-01 13:41:59.211 2024-03-01 13:41:59.211 7700 FEE 444946 13782 6125348 2024-03-01 13:41:59.211 2024-03-01 13:41:59.211 69300 TIP 444946 4074 6125365 2024-03-01 13:43:54.626 2024-03-01 13:43:54.626 7700 FEE 444982 20120 6125366 2024-03-01 13:43:54.626 2024-03-01 13:43:54.626 69300 TIP 444982 21019 6125394 2024-03-01 13:46:39.437 2024-03-01 13:46:39.437 1000 FEE 444987 5828 6125414 2024-03-01 13:50:17.271 2024-03-01 13:50:17.271 2100 FEE 444981 2285 6125415 2024-03-01 13:50:17.271 2024-03-01 13:50:17.271 18900 TIP 444981 20133 6125444 2024-03-01 13:53:38.365 2024-03-01 13:53:38.365 1000 FEE 444995 11678 6125505 2024-03-01 13:57:30.335 2024-03-01 13:57:30.335 1700 FEE 444998 7587 6125506 2024-03-01 13:57:30.335 2024-03-01 13:57:30.335 15300 TIP 444998 746 6125509 2024-03-01 13:57:32.596 2024-03-01 13:57:32.596 7700 FEE 444980 658 6125510 2024-03-01 13:57:32.596 2024-03-01 13:57:32.596 69300 TIP 444980 10359 6125513 2024-03-01 13:57:32.971 2024-03-01 13:57:32.971 7700 FEE 444980 9364 6125514 2024-03-01 13:57:32.971 2024-03-01 13:57:32.971 69300 TIP 444980 11091 6125530 2024-03-01 13:57:50.73 2024-03-01 13:57:50.73 10000 FEE 445003 12057 6125538 2024-03-01 13:58:08.454 2024-03-01 13:58:08.454 1000 FEE 445004 21067 6125549 2024-03-01 13:58:25.611 2024-03-01 13:58:25.611 7700 FEE 444987 19488 6125550 2024-03-01 13:58:25.611 2024-03-01 13:58:25.611 69300 TIP 444987 8423 6125553 2024-03-01 13:58:28.315 2024-03-01 13:58:28.315 7700 FEE 444999 12562 6125554 2024-03-01 13:58:28.315 2024-03-01 13:58:28.315 69300 TIP 444999 9177 6125561 2024-03-01 13:58:33.876 2024-03-01 13:58:33.876 0 FEE 445003 17714 6125562 2024-03-01 13:58:35.01 2024-03-01 13:58:35.01 7600 FEE 444950 746 6125563 2024-03-01 13:58:35.01 2024-03-01 13:58:35.01 68400 TIP 444950 18219 6125568 2024-03-01 13:58:38.844 2024-03-01 13:58:38.844 1700 FEE 444998 20073 6125569 2024-03-01 13:58:38.844 2024-03-01 13:58:38.844 15300 TIP 444998 6777 6125570 2024-03-01 13:58:39.006 2024-03-01 13:58:39.006 1700 FEE 444998 20710 6125571 2024-03-01 13:58:39.006 2024-03-01 13:58:39.006 15300 TIP 444998 9845 6125578 2024-03-01 13:58:44.159 2024-03-01 13:58:44.159 7600 FEE 444968 21040 6125579 2024-03-01 13:58:44.159 2024-03-01 13:58:44.159 68400 TIP 444968 19034 6125594 2024-03-01 13:59:48.365 2024-03-01 13:59:48.365 1000 FEE 445007 18556 6125678 2024-03-01 14:08:30.045 2024-03-01 14:08:30.045 1700 FEE 445003 2734 6125679 2024-03-01 14:08:30.045 2024-03-01 14:08:30.045 15300 TIP 445003 690 6125691 2024-03-01 14:10:11.923 2024-03-01 14:10:11.923 2100 FEE 444911 18403 6125692 2024-03-01 14:10:11.923 2024-03-01 14:10:11.923 18900 TIP 444911 16177 6125693 2024-03-01 14:10:15.122 2024-03-01 14:10:15.122 7700 FEE 445021 5527 6125694 2024-03-01 14:10:15.122 2024-03-01 14:10:15.122 69300 TIP 445021 736 6125698 2024-03-01 14:10:32.955 2024-03-01 14:10:32.955 7700 FEE 445014 7587 6125699 2024-03-01 14:10:32.955 2024-03-01 14:10:32.955 69300 TIP 445014 7675 6125701 2024-03-01 14:10:34.004 2024-03-01 14:10:34.004 7700 FEE 445019 20757 6125702 2024-03-01 14:10:34.004 2024-03-01 14:10:34.004 69300 TIP 445019 1571 6125712 2024-03-01 14:11:55.816 2024-03-01 14:11:55.816 2100 FEE 444958 1480 6125713 2024-03-01 14:11:55.816 2024-03-01 14:11:55.816 18900 TIP 444958 21480 6125714 2024-03-01 14:11:56.706 2024-03-01 14:11:56.706 5100 FEE 445024 14267 6125715 2024-03-01 14:11:56.706 2024-03-01 14:11:56.706 45900 TIP 445024 3504 6125734 2024-03-01 14:13:14.962 2024-03-01 14:13:14.962 7700 FEE 444902 656 6125735 2024-03-01 14:13:14.962 2024-03-01 14:13:14.962 69300 TIP 444902 20433 6125792 2024-03-01 14:19:39.126 2024-03-01 14:19:39.126 1000 FEE 444998 18309 6125793 2024-03-01 14:19:39.126 2024-03-01 14:19:39.126 9000 TIP 444998 10484 6125797 2024-03-01 14:20:24.111 2024-03-01 14:20:24.111 2100 FEE 445007 17147 6125798 2024-03-01 14:20:24.111 2024-03-01 14:20:24.111 18900 TIP 445007 13987 6125811 2024-03-01 14:21:06.127 2024-03-01 14:21:06.127 9000 FEE 444980 13365 6125812 2024-03-01 14:21:06.127 2024-03-01 14:21:06.127 81000 TIP 444980 19546 6125829 2024-03-01 14:23:36.853 2024-03-01 14:23:36.853 1000 FEE 445056 17291 6125855 2024-03-01 14:28:39.48 2024-03-01 14:28:39.48 5000 FEE 444950 2088 6125856 2024-03-01 14:28:39.48 2024-03-01 14:28:39.48 45000 TIP 444950 20581 6125875 2024-03-01 14:31:41.738 2024-03-01 14:31:41.738 1700 FEE 445062 20264 6125876 2024-03-01 14:31:41.738 2024-03-01 14:31:41.738 15300 TIP 445062 12566 6125911 2024-03-01 14:36:43.249 2024-03-01 14:36:43.249 1000 FEE 445072 2596 6125983 2024-03-01 14:44:07.429 2024-03-01 14:44:07.429 1000 FEE 445078 15266 6125984 2024-03-01 14:44:58.2 2024-03-01 14:44:58.2 100 FEE 444755 692 6125985 2024-03-01 14:44:58.2 2024-03-01 14:44:58.2 900 TIP 444755 5761 6125990 2024-03-01 14:45:50.788 2024-03-01 14:45:50.788 1000 FEE 445040 21614 6125991 2024-03-01 14:45:50.788 2024-03-01 14:45:50.788 9000 TIP 445040 1705 6125992 2024-03-01 14:45:51.148 2024-03-01 14:45:51.148 1000 FEE 445040 6268 6125993 2024-03-01 14:45:51.148 2024-03-01 14:45:51.148 9000 TIP 445040 11395 6125994 2024-03-01 14:45:51.357 2024-03-01 14:45:51.357 100 FEE 445019 21441 6125995 2024-03-01 14:45:51.357 2024-03-01 14:45:51.357 900 TIP 445019 21064 6126007 2024-03-01 14:46:57.438 2024-03-01 14:46:57.438 1000 FEE 445079 18556 6126008 2024-03-01 14:46:57.438 2024-03-01 14:46:57.438 9000 TIP 445079 16357 6126010 2024-03-01 14:47:00.986 2024-03-01 14:47:00.986 100 FEE 445056 21194 6126011 2024-03-01 14:47:00.986 2024-03-01 14:47:00.986 900 TIP 445056 5129 6066098 2024-02-25 20:01:04.879 2024-02-25 20:01:04.879 1000 STREAM 141924 8544 6066108 2024-02-25 20:03:04.881 2024-02-25 20:03:04.881 1000 STREAM 141924 5306 6125397 2024-03-01 13:46:45.482 2024-03-01 13:46:45.482 100000 FEE 444980 21412 6125398 2024-03-01 13:46:45.482 2024-03-01 13:46:45.482 900000 TIP 444980 7913 6125430 2024-03-01 13:51:54.039 2024-03-01 13:51:54.039 1000 FEE 444992 739 6125451 2024-03-01 13:54:56.214 2024-03-01 13:54:56.214 7600 FEE 444997 18629 6125452 2024-03-01 13:54:56.214 2024-03-01 13:54:56.214 68400 TIP 444997 1298 6125466 2024-03-01 13:55:50.615 2024-03-01 13:55:50.615 2700 FEE 444962 17541 6125467 2024-03-01 13:55:50.615 2024-03-01 13:55:50.615 24300 TIP 444962 18714 6125470 2024-03-01 13:55:50.98 2024-03-01 13:55:50.98 100 FEE 444948 21571 6125471 2024-03-01 13:55:50.98 2024-03-01 13:55:50.98 900 TIP 444948 713 6125477 2024-03-01 13:56:07.319 2024-03-01 13:56:07.319 100 FEE 444910 18626 6125478 2024-03-01 13:56:07.319 2024-03-01 13:56:07.319 900 TIP 444910 18774 6125482 2024-03-01 13:56:30.417 2024-03-01 13:56:30.417 2100 FEE 444968 14295 6125483 2024-03-01 13:56:30.417 2024-03-01 13:56:30.417 18900 TIP 444968 2952 6125495 2024-03-01 13:57:29.053 2024-03-01 13:57:29.053 1700 FEE 444998 8648 6125496 2024-03-01 13:57:29.053 2024-03-01 13:57:29.053 15300 TIP 444998 19417 6125516 2024-03-01 13:57:33.572 2024-03-01 13:57:33.572 15400 FEE 444980 20185 6125517 2024-03-01 13:57:33.572 2024-03-01 13:57:33.572 138600 TIP 444980 21072 6125518 2024-03-01 13:57:34.73 2024-03-01 13:57:34.73 7700 FEE 444980 19446 6125519 2024-03-01 13:57:34.73 2024-03-01 13:57:34.73 69300 TIP 444980 21207 6125557 2024-03-01 13:58:30.144 2024-03-01 13:58:30.144 7700 FEE 444980 9874 6125558 2024-03-01 13:58:30.144 2024-03-01 13:58:30.144 69300 TIP 444980 17094 6125559 2024-03-01 13:58:30.241 2024-03-01 13:58:30.241 7700 FEE 444980 18873 6125560 2024-03-01 13:58:30.241 2024-03-01 13:58:30.241 69300 TIP 444980 19043 6125587 2024-03-01 13:58:59.305 2024-03-01 13:58:59.305 1000 FEE 444907 19462 6125588 2024-03-01 13:58:59.305 2024-03-01 13:58:59.305 9000 TIP 444907 19785 6125601 2024-03-01 13:59:52.57 2024-03-01 13:59:52.57 300 FEE 444950 3411 6125602 2024-03-01 13:59:52.57 2024-03-01 13:59:52.57 2700 TIP 444950 19911 6125651 2024-03-01 14:04:11.65 2024-03-01 14:04:11.65 3100 FEE 445012 9 6125652 2024-03-01 14:04:11.65 2024-03-01 14:04:11.65 27900 TIP 445012 2213 6125656 2024-03-01 14:05:54.596 2024-03-01 14:05:54.596 1000 FEE 444664 15180 6125657 2024-03-01 14:05:54.596 2024-03-01 14:05:54.596 9000 TIP 444664 17568 6125703 2024-03-01 14:10:35.26 2024-03-01 14:10:35.26 10000 FEE 444980 11240 6125704 2024-03-01 14:10:35.26 2024-03-01 14:10:35.26 90000 TIP 444980 4474 6125707 2024-03-01 14:10:54.445 2024-03-01 14:10:54.445 2100 FEE 445008 9354 6125708 2024-03-01 14:10:54.445 2024-03-01 14:10:54.445 18900 TIP 445008 17109 6125738 2024-03-01 14:13:17.581 2024-03-01 14:13:17.581 7700 FEE 444915 18372 6125739 2024-03-01 14:13:17.581 2024-03-01 14:13:17.581 69300 TIP 444915 4487 6125752 2024-03-01 14:14:36.663 2024-03-01 14:14:36.663 500 FEE 445005 18241 6125753 2024-03-01 14:14:36.663 2024-03-01 14:14:36.663 4500 TIP 445005 1141 6125754 2024-03-01 14:14:47.279 2024-03-01 14:14:47.279 1700 FEE 445027 17722 6125755 2024-03-01 14:14:47.279 2024-03-01 14:14:47.279 15300 TIP 445027 11288 6125768 2024-03-01 14:16:22.254 2024-03-01 14:16:22.254 1000 FEE 445037 11956 6125775 2024-03-01 14:17:15.083 2024-03-01 14:17:15.083 1000 FEE 445040 21067 6125776 2024-03-01 14:17:22.629 2024-03-01 14:17:22.629 3100 FEE 445029 12289 6125777 2024-03-01 14:17:22.629 2024-03-01 14:17:22.629 27900 TIP 445029 20381 6125787 2024-03-01 14:18:52.162 2024-03-01 14:18:52.162 1000 FEE 445044 21422 6125886 2024-03-01 14:33:08.32 2024-03-01 14:33:08.32 1000 FEE 445065 17827 6125903 2024-03-01 14:35:27.164 2024-03-01 14:35:27.164 1000 FEE 445069 18994 6125927 2024-03-01 14:38:51.6 2024-03-01 14:38:51.6 3400 FEE 444911 4831 6125928 2024-03-01 14:38:51.6 2024-03-01 14:38:51.6 30600 TIP 444911 20015 6125939 2024-03-01 14:40:02.939 2024-03-01 14:40:02.939 1000 FEE 445074 16336 6125940 2024-03-01 14:40:02.939 2024-03-01 14:40:02.939 9000 TIP 445074 4487 6125941 2024-03-01 14:40:03.763 2024-03-01 14:40:03.763 2100 FEE 445073 18380 6125942 2024-03-01 14:40:03.763 2024-03-01 14:40:03.763 18900 TIP 445073 20647 6125948 2024-03-01 14:40:23.831 2024-03-01 14:40:23.831 1000 FEE 444881 18500 6125949 2024-03-01 14:40:23.831 2024-03-01 14:40:23.831 9000 TIP 444881 16126 6125956 2024-03-01 14:40:51.202 2024-03-01 14:40:51.202 0 FEE 445076 998 6125975 2024-03-01 14:42:09.723 2024-03-01 14:42:09.723 900 FEE 444968 9159 6125976 2024-03-01 14:42:09.723 2024-03-01 14:42:09.723 8100 TIP 444968 16357 6126023 2024-03-01 14:47:28.464 2024-03-01 14:47:28.464 100 FEE 445048 6777 6126024 2024-03-01 14:47:28.464 2024-03-01 14:47:28.464 900 TIP 445048 19193 6126039 2024-03-01 14:49:15.556 2024-03-01 14:49:15.556 1000 FEE 445087 18909 6126056 2024-03-01 14:51:09.337 2024-03-01 14:51:09.337 7600 FEE 445080 976 6126057 2024-03-01 14:51:09.337 2024-03-01 14:51:09.337 68400 TIP 445080 19852 6126081 2024-03-01 14:53:43.091 2024-03-01 14:53:43.091 1700 FEE 445077 946 6126082 2024-03-01 14:53:43.091 2024-03-01 14:53:43.091 15300 TIP 445077 18932 6126109 2024-03-01 14:56:24.653 2024-03-01 14:56:24.653 2100 FEE 444755 13903 6126110 2024-03-01 14:56:24.653 2024-03-01 14:56:24.653 18900 TIP 444755 7818 6126111 2024-03-01 14:56:25.036 2024-03-01 14:56:25.036 2100 FEE 444755 631 6126112 2024-03-01 14:56:25.036 2024-03-01 14:56:25.036 18900 TIP 444755 15491 6126120 2024-03-01 14:56:54.199 2024-03-01 14:56:54.199 1700 FEE 445096 18769 6126121 2024-03-01 14:56:54.199 2024-03-01 14:56:54.199 15300 TIP 445096 18539 6126128 2024-03-01 14:58:32.758 2024-03-01 14:58:32.758 7600 FEE 445096 13246 6126129 2024-03-01 14:58:32.758 2024-03-01 14:58:32.758 68400 TIP 445096 21157 6126142 2024-03-01 14:59:37.698 2024-03-01 14:59:37.698 1000 FEE 445103 9342 6126147 2024-03-01 15:01:24.204 2024-03-01 15:01:24.204 1000 FEE 445104 18909 6126151 2024-03-01 15:02:21.343 2024-03-01 15:02:21.343 1000 FEE 444947 21140 6126152 2024-03-01 15:02:21.343 2024-03-01 15:02:21.343 9000 TIP 444947 4378 6126154 2024-03-01 15:02:35.089 2024-03-01 15:02:35.089 1000 FEE 445096 20022 6126155 2024-03-01 15:02:35.089 2024-03-01 15:02:35.089 9000 TIP 445096 15200 6066118 2024-02-25 20:05:22.978 2024-02-25 20:05:22.978 2100 FEE 438202 4958 6066119 2024-02-25 20:05:22.978 2024-02-25 20:05:22.978 18900 TIP 438202 1801 6066156 2024-02-25 20:05:54.407 2024-02-25 20:05:54.407 7700 FEE 438317 16442 6066157 2024-02-25 20:05:54.407 2024-02-25 20:05:54.407 69300 TIP 438317 21012 6066172 2024-02-25 20:06:07.09 2024-02-25 20:06:07.09 7700 FEE 438092 19033 6066173 2024-02-25 20:06:07.09 2024-02-25 20:06:07.09 69300 TIP 438092 19121 6066174 2024-02-25 20:06:07.224 2024-02-25 20:06:07.224 7700 FEE 438092 8269 6066175 2024-02-25 20:06:07.224 2024-02-25 20:06:07.224 69300 TIP 438092 4692 6066206 2024-02-25 20:06:18.07 2024-02-25 20:06:18.07 7700 FEE 438405 9476 6066207 2024-02-25 20:06:18.07 2024-02-25 20:06:18.07 69300 TIP 438405 2444 6066231 2024-02-25 20:08:14.418 2024-02-25 20:08:14.418 1000 FEE 438092 21349 6066232 2024-02-25 20:08:14.418 2024-02-25 20:08:14.418 9000 TIP 438092 13169 6066261 2024-02-25 20:08:50.384 2024-02-25 20:08:50.384 2100 FEE 438325 19036 6066262 2024-02-25 20:08:50.384 2024-02-25 20:08:50.384 18900 TIP 438325 18309 6066267 2024-02-25 20:09:00.878 2024-02-25 20:09:00.878 1000 FEE 438613 732 6066281 2024-02-25 20:11:12.621 2024-02-25 20:11:12.621 1000 FEE 438618 16126 6066290 2024-02-25 20:12:03.402 2024-02-25 20:12:03.402 1000 FEE 438065 16965 6066291 2024-02-25 20:12:03.402 2024-02-25 20:12:03.402 9000 TIP 438065 5942 6066294 2024-02-25 20:12:03.909 2024-02-25 20:12:03.909 1000 FEE 438065 2459 6066295 2024-02-25 20:12:03.909 2024-02-25 20:12:03.909 9000 TIP 438065 19668 6066297 2024-02-25 20:12:18.188 2024-02-25 20:12:18.188 7700 FEE 438583 669 6066298 2024-02-25 20:12:18.188 2024-02-25 20:12:18.188 69300 TIP 438583 11670 6066299 2024-02-25 20:12:18.26 2024-02-25 20:12:18.26 7700 FEE 438583 2042 6066300 2024-02-25 20:12:18.26 2024-02-25 20:12:18.26 69300 TIP 438583 803 6066311 2024-02-25 20:12:19.97 2024-02-25 20:12:19.97 15400 FEE 438583 4763 6066312 2024-02-25 20:12:19.97 2024-02-25 20:12:19.97 138600 TIP 438583 2322 6066317 2024-02-25 20:12:20.758 2024-02-25 20:12:20.758 7700 FEE 438583 9307 6066318 2024-02-25 20:12:20.758 2024-02-25 20:12:20.758 69300 TIP 438583 2722 6066325 2024-02-25 20:12:21.455 2024-02-25 20:12:21.455 7700 FEE 438583 15063 6066326 2024-02-25 20:12:21.455 2024-02-25 20:12:21.455 69300 TIP 438583 15409 6066329 2024-02-25 20:12:21.929 2024-02-25 20:12:21.929 7700 FEE 438583 20500 6066330 2024-02-25 20:12:21.929 2024-02-25 20:12:21.929 69300 TIP 438583 5306 6066333 2024-02-25 20:12:22.144 2024-02-25 20:12:22.144 7700 FEE 438583 21262 6066334 2024-02-25 20:12:22.144 2024-02-25 20:12:22.144 69300 TIP 438583 14905 6066339 2024-02-25 20:12:22.985 2024-02-25 20:12:22.985 7700 FEE 438583 18528 6066340 2024-02-25 20:12:22.985 2024-02-25 20:12:22.985 69300 TIP 438583 15617 6066341 2024-02-25 20:12:23.233 2024-02-25 20:12:23.233 15400 FEE 438583 9552 6066342 2024-02-25 20:12:23.233 2024-02-25 20:12:23.233 138600 TIP 438583 3506 6066345 2024-02-25 20:12:47.273 2024-02-25 20:12:47.273 1000 POLL 438414 669 6066347 2024-02-25 20:13:57.608 2024-02-25 20:13:57.608 0 FEE 438617 17209 6066351 2024-02-25 20:16:55.298 2024-02-25 20:16:55.298 4000 FEE 438607 20185 6066352 2024-02-25 20:16:55.298 2024-02-25 20:16:55.298 36000 TIP 438607 19981 6066370 2024-02-25 20:18:55.52 2024-02-25 20:18:55.52 2100 FEE 438486 14731 6066371 2024-02-25 20:18:55.52 2024-02-25 20:18:55.52 18900 TIP 438486 1039 6066380 2024-02-25 20:20:05.779 2024-02-25 20:20:05.779 2100 FEE 438451 2576 6066381 2024-02-25 20:20:05.779 2024-02-25 20:20:05.779 18900 TIP 438451 19527 6066392 2024-02-25 20:20:36.132 2024-02-25 20:20:36.132 2100 FEE 438414 16789 6066393 2024-02-25 20:20:36.132 2024-02-25 20:20:36.132 18900 TIP 438414 1836 6066423 2024-02-25 20:21:44.869 2024-02-25 20:21:44.869 1000 FEE 438623 2123 6066424 2024-02-25 20:21:44.869 2024-02-25 20:21:44.869 9000 TIP 438623 20892 6066459 2024-02-25 20:23:50.715 2024-02-25 20:23:50.715 10000 FEE 438624 20713 6066465 2024-02-25 20:25:54.092 2024-02-25 20:25:54.092 100 FEE 438619 5694 6066466 2024-02-25 20:25:54.092 2024-02-25 20:25:54.092 900 TIP 438619 21395 6066486 2024-02-25 20:28:39.937 2024-02-25 20:28:39.937 10000 FEE 437672 17710 6066487 2024-02-25 20:28:39.937 2024-02-25 20:28:39.937 90000 TIP 437672 18235 6066533 2024-02-25 20:32:47.674 2024-02-25 20:32:47.674 3300 FEE 438401 5425 6066534 2024-02-25 20:32:47.674 2024-02-25 20:32:47.674 29700 TIP 438401 12721 6066549 2024-02-25 20:33:19.799 2024-02-25 20:33:19.799 1000 FEE 438594 895 6066550 2024-02-25 20:33:19.799 2024-02-25 20:33:19.799 9000 TIP 438594 11522 6066551 2024-02-25 20:33:22.755 2024-02-25 20:33:22.755 1000 FEE 438535 1624 6066552 2024-02-25 20:33:22.755 2024-02-25 20:33:22.755 9000 TIP 438535 6515 6066553 2024-02-25 20:33:23.966 2024-02-25 20:33:23.966 5900 FEE 438467 21036 6066554 2024-02-25 20:33:23.966 2024-02-25 20:33:23.966 53100 TIP 438467 13781 6066557 2024-02-25 20:33:31.378 2024-02-25 20:33:31.378 3300 FEE 438317 1105 6066558 2024-02-25 20:33:31.378 2024-02-25 20:33:31.378 29700 TIP 438317 638 6066561 2024-02-25 20:33:33.316 2024-02-25 20:33:33.316 3300 FEE 438390 9421 6066562 2024-02-25 20:33:33.316 2024-02-25 20:33:33.316 29700 TIP 438390 632 6066586 2024-02-25 20:34:57.893 2024-02-25 20:34:57.893 100 FEE 438607 5904 6066587 2024-02-25 20:34:57.893 2024-02-25 20:34:57.893 900 TIP 438607 2614 6066596 2024-02-25 20:36:37.411 2024-02-25 20:36:37.411 1000 FEE 438402 15762 6066597 2024-02-25 20:36:37.411 2024-02-25 20:36:37.411 9000 TIP 438402 14906 6066613 2024-02-25 20:38:21.956 2024-02-25 20:38:21.956 1000 FEE 438621 9335 6066614 2024-02-25 20:38:21.956 2024-02-25 20:38:21.956 9000 TIP 438621 2773 6066640 2024-02-25 20:38:38.002 2024-02-25 20:38:38.002 1000 FEE 438486 19087 6066641 2024-02-25 20:38:38.002 2024-02-25 20:38:38.002 9000 TIP 438486 12072 6066644 2024-02-25 20:38:39.605 2024-02-25 20:38:39.605 3300 FEE 438423 726 6066645 2024-02-25 20:38:39.605 2024-02-25 20:38:39.605 29700 TIP 438423 2780 6066677 2024-02-25 20:42:36.027 2024-02-25 20:42:36.027 1100 FEE 438546 9363 6066678 2024-02-25 20:42:36.027 2024-02-25 20:42:36.027 9900 TIP 438546 21361 6066682 2024-02-25 20:45:49.723 2024-02-25 20:45:49.723 2100 FEE 438587 19333 6066683 2024-02-25 20:45:49.723 2024-02-25 20:45:49.723 18900 TIP 438587 13921 6066698 2024-02-25 20:47:04.314 2024-02-25 20:47:04.314 3300 FEE 438604 17984 6066699 2024-02-25 20:47:04.314 2024-02-25 20:47:04.314 29700 TIP 438604 11018 6066701 2024-02-25 20:47:19.224 2024-02-25 20:47:19.224 1000 FEE 438637 4035 6066713 2024-02-25 20:48:54.926 2024-02-25 20:48:54.926 10800 FEE 438474 8242 6066714 2024-02-25 20:48:54.926 2024-02-25 20:48:54.926 97200 TIP 438474 18680 6066715 2024-02-25 20:48:59.315 2024-02-25 20:48:59.315 3300 FEE 438448 15180 6066716 2024-02-25 20:48:59.315 2024-02-25 20:48:59.315 29700 TIP 438448 2709 6066199 2024-02-25 20:06:17.545 2024-02-25 20:06:17.545 69300 TIP 438405 4059 6066204 2024-02-25 20:06:17.909 2024-02-25 20:06:17.909 7700 FEE 438405 1012 6066205 2024-02-25 20:06:17.909 2024-02-25 20:06:17.909 69300 TIP 438405 11967 6066222 2024-02-25 20:07:11.405 2024-02-25 20:07:11.405 300 FEE 438557 16848 6066223 2024-02-25 20:07:11.405 2024-02-25 20:07:11.405 2700 TIP 438557 9982 6066227 2024-02-25 20:07:41.298 2024-02-25 20:07:41.298 2100 FEE 438611 18539 6066228 2024-02-25 20:07:41.298 2024-02-25 20:07:41.298 18900 TIP 438611 18731 6066233 2024-02-25 20:08:15.684 2024-02-25 20:08:15.684 2100 FEE 438605 13767 6066234 2024-02-25 20:08:15.684 2024-02-25 20:08:15.684 18900 TIP 438605 18680 6066245 2024-02-25 20:08:17.747 2024-02-25 20:08:17.747 2100 FEE 438596 12606 6066246 2024-02-25 20:08:17.747 2024-02-25 20:08:17.747 18900 TIP 438596 16816 6066270 2024-02-25 20:09:16.111 2024-02-25 20:09:16.111 2100 FEE 438487 11417 6066271 2024-02-25 20:09:16.111 2024-02-25 20:09:16.111 18900 TIP 438487 9874 6066272 2024-02-25 20:09:37.337 2024-02-25 20:09:37.337 1000 FEE 438615 16660 6066274 2024-02-25 20:10:00.735 2024-02-25 20:10:00.735 1000 FEE 438617 19154 6066282 2024-02-25 20:11:17.567 2024-02-25 20:11:17.567 0 FEE 438617 15180 6066285 2024-02-25 20:11:59.939 2024-02-25 20:11:59.939 0 FEE 438617 2013 6066286 2024-02-25 20:12:02.872 2024-02-25 20:12:02.872 1000 FEE 438065 19843 6066287 2024-02-25 20:12:02.872 2024-02-25 20:12:02.872 9000 TIP 438065 21303 6066288 2024-02-25 20:12:03.137 2024-02-25 20:12:03.137 1000 FEE 438065 6058 6066289 2024-02-25 20:12:03.137 2024-02-25 20:12:03.137 9000 TIP 438065 20811 6066301 2024-02-25 20:12:18.364 2024-02-25 20:12:18.364 7700 FEE 438583 9438 6066302 2024-02-25 20:12:18.364 2024-02-25 20:12:18.364 69300 TIP 438583 11942 6066361 2024-02-25 20:17:59.735 2024-02-25 20:17:59.735 1000 FEE 438620 15858 6066365 2024-02-25 20:18:21.177 2024-02-25 20:18:21.177 1000 FEE 438621 15617 6066374 2024-02-25 20:19:43.228 2024-02-25 20:19:43.228 1000 FEE 438623 13406 6066413 2024-02-25 20:21:43.031 2024-02-25 20:21:43.031 2100 FEE 438389 18663 6066414 2024-02-25 20:21:43.031 2024-02-25 20:21:43.031 18900 TIP 438389 2620 6066421 2024-02-25 20:21:43.804 2024-02-25 20:21:43.804 2100 FEE 438389 3392 6066422 2024-02-25 20:21:43.804 2024-02-25 20:21:43.804 18900 TIP 438389 8284 6066429 2024-02-25 20:21:46.391 2024-02-25 20:21:46.391 2100 FEE 437720 3729 6066430 2024-02-25 20:21:46.391 2024-02-25 20:21:46.391 18900 TIP 437720 1577 6066437 2024-02-25 20:21:51.532 2024-02-25 20:21:51.532 2100 FEE 438405 1051 6066438 2024-02-25 20:21:51.532 2024-02-25 20:21:51.532 18900 TIP 438405 2329 6066445 2024-02-25 20:21:55.195 2024-02-25 20:21:55.195 2100 FEE 438405 13174 6066446 2024-02-25 20:21:55.195 2024-02-25 20:21:55.195 18900 TIP 438405 882 6066450 2024-02-25 20:22:28.991 2024-02-25 20:22:28.991 100 FEE 438444 16879 6066451 2024-02-25 20:22:28.991 2024-02-25 20:22:28.991 900 TIP 438444 18630 6066453 2024-02-25 20:23:13.646 2024-02-25 20:23:13.646 1000 FEE 438444 19459 6066454 2024-02-25 20:23:13.646 2024-02-25 20:23:13.646 9000 TIP 438444 2741 6066463 2024-02-25 20:25:15.726 2024-02-25 20:25:15.726 1000 FEE 438626 16665 6066503 2024-02-25 20:31:07.523 2024-02-25 20:31:07.523 3300 FEE 438325 6003 6066504 2024-02-25 20:31:07.523 2024-02-25 20:31:07.523 29700 TIP 438325 1038 6066507 2024-02-25 20:31:57.797 2024-02-25 20:31:57.797 1000 POLL 438325 15978 6066522 2024-02-25 20:32:30.277 2024-02-25 20:32:30.277 1000 POLL 438325 20450 6066535 2024-02-25 20:32:53.251 2024-02-25 20:32:53.251 3300 FEE 438404 21532 6066536 2024-02-25 20:32:53.251 2024-02-25 20:32:53.251 29700 TIP 438404 8037 6066545 2024-02-25 20:33:18.83 2024-02-25 20:33:18.83 100 FEE 438605 19857 6066546 2024-02-25 20:33:18.83 2024-02-25 20:33:18.83 900 TIP 438605 13927 6066571 2024-02-25 20:33:51.123 2024-02-25 20:33:51.123 100000 FEE 438629 15536 6066576 2024-02-25 20:34:14.04 2024-02-25 20:34:14.04 100 FEE 438388 18378 6066577 2024-02-25 20:34:14.04 2024-02-25 20:34:14.04 900 TIP 438388 21208 6066578 2024-02-25 20:34:24.902 2024-02-25 20:34:24.902 1000 FEE 438621 19640 6066579 2024-02-25 20:34:24.902 2024-02-25 20:34:24.902 9000 TIP 438621 16149 6066598 2024-02-25 20:36:49.193 2024-02-25 20:36:49.193 1000 FEE 438632 16998 6066602 2024-02-25 20:37:35.251 2024-02-25 20:37:35.251 2100 FEE 438611 2614 6066603 2024-02-25 20:37:35.251 2024-02-25 20:37:35.251 18900 TIP 438611 2338 6066607 2024-02-25 20:38:20.243 2024-02-25 20:38:20.243 1000 FEE 438621 622 6066608 2024-02-25 20:38:20.243 2024-02-25 20:38:20.243 9000 TIP 438621 11798 6066609 2024-02-25 20:38:20.556 2024-02-25 20:38:20.556 3300 FEE 438389 18336 6066610 2024-02-25 20:38:20.556 2024-02-25 20:38:20.556 29700 TIP 438389 16267 6066611 2024-02-25 20:38:21.809 2024-02-25 20:38:21.809 1000 FEE 438621 17365 6066612 2024-02-25 20:38:21.809 2024-02-25 20:38:21.809 9000 TIP 438621 17124 6066617 2024-02-25 20:38:26.486 2024-02-25 20:38:26.486 1000 FEE 438633 17714 6066626 2024-02-25 20:38:31.995 2024-02-25 20:38:31.995 1000 FEE 438624 11798 6066627 2024-02-25 20:38:31.995 2024-02-25 20:38:31.995 9000 TIP 438624 4059 6066632 2024-02-25 20:38:32.932 2024-02-25 20:38:32.932 1000 FEE 438624 21365 6066633 2024-02-25 20:38:32.932 2024-02-25 20:38:32.932 9000 TIP 438624 17218 6066653 2024-02-25 20:39:13.805 2024-02-25 20:39:13.805 3300 FEE 438232 1488 6066654 2024-02-25 20:39:13.805 2024-02-25 20:39:13.805 29700 TIP 438232 7979 6066666 2024-02-25 20:42:05.877 2024-02-25 20:42:05.877 2600 FEE 438065 11992 6066667 2024-02-25 20:42:05.877 2024-02-25 20:42:05.877 23400 TIP 438065 19289 6066694 2024-02-25 20:47:02.588 2024-02-25 20:47:02.588 3300 FEE 438604 9078 6066695 2024-02-25 20:47:02.588 2024-02-25 20:47:02.588 29700 TIP 438604 18941 6066711 2024-02-25 20:48:41.516 2024-02-25 20:48:41.516 100 FEE 438604 13399 6066712 2024-02-25 20:48:41.516 2024-02-25 20:48:41.516 900 TIP 438604 19905 6066717 2024-02-25 20:48:59.966 2024-02-25 20:48:59.966 3300 FEE 438448 20614 6066718 2024-02-25 20:48:59.966 2024-02-25 20:48:59.966 29700 TIP 438448 1141 6066737 2024-02-25 20:50:20.038 2024-02-25 20:50:20.038 2500 FEE 438621 18989 6066738 2024-02-25 20:50:20.038 2024-02-25 20:50:20.038 22500 TIP 438621 18557 6066766 2024-02-25 20:56:57.333 2024-02-25 20:56:57.333 1000 FEE 438648 17639 6066784 2024-02-25 20:58:19.991 2024-02-25 20:58:19.991 1000 FEE 438325 14941 6066785 2024-02-25 20:58:19.991 2024-02-25 20:58:19.991 9000 TIP 438325 18919 6066792 2024-02-25 20:59:29.797 2024-02-25 20:59:29.797 1000 POLL 438414 7668 6066810 2024-02-25 21:01:57.172 2024-02-25 21:01:57.172 4000 FEE 438653 974 6066811 2024-02-25 21:01:57.172 2024-02-25 21:01:57.172 36000 TIP 438653 1175 6066830 2024-02-25 21:07:40.039 2024-02-25 21:07:40.039 4000 FEE 438660 20187 6066831 2024-02-25 21:07:40.039 2024-02-25 21:07:40.039 36000 TIP 438660 21393 6066841 2024-02-25 21:09:05.939 2024-02-25 21:09:05.939 1000 POLL 438414 7809 6066860 2024-02-25 21:09:31.565 2024-02-25 21:09:31.565 900 FEE 438642 18262 6066861 2024-02-25 21:09:31.565 2024-02-25 21:09:31.565 8100 TIP 438642 8729 6066866 2024-02-25 21:09:51.726 2024-02-25 21:09:51.726 100 FEE 438649 15690 6066867 2024-02-25 21:09:51.726 2024-02-25 21:09:51.726 900 TIP 438649 17602 6066891 2024-02-25 21:10:50.749 2024-02-25 21:10:50.749 100 FEE 438605 3745 6066892 2024-02-25 21:10:50.749 2024-02-25 21:10:50.749 900 TIP 438605 954 6066899 2024-02-25 21:11:03.371 2024-02-25 21:11:03.371 900 FEE 438596 21148 6066900 2024-02-25 21:11:03.371 2024-02-25 21:11:03.371 8100 TIP 438596 8133 6066923 2024-02-25 21:13:05.879 2024-02-25 21:13:05.879 2100 FEE 438603 18897 6066924 2024-02-25 21:13:05.879 2024-02-25 21:13:05.879 18900 TIP 438603 15100 6066930 2024-02-25 21:14:04.873 2024-02-25 21:14:04.873 2100 FEE 438461 14449 6066931 2024-02-25 21:14:04.873 2024-02-25 21:14:04.873 18900 TIP 438461 12220 6066934 2024-02-25 21:14:26.324 2024-02-25 21:14:26.324 2100 FEE 438351 1002 6066935 2024-02-25 21:14:26.324 2024-02-25 21:14:26.324 18900 TIP 438351 3518 6066962 2024-02-25 21:16:04.516 2024-02-25 21:16:04.516 6900 FEE 438451 802 6066963 2024-02-25 21:16:04.516 2024-02-25 21:16:04.516 62100 TIP 438451 12289 6066255 2024-02-25 20:08:27.949 2024-02-25 20:08:27.949 2100 FEE 438516 16341 6066256 2024-02-25 20:08:27.949 2024-02-25 20:08:27.949 18900 TIP 438516 649 6066307 2024-02-25 20:12:19.667 2024-02-25 20:12:19.667 15400 FEE 438583 21506 6066308 2024-02-25 20:12:19.667 2024-02-25 20:12:19.667 138600 TIP 438583 2703 6066319 2024-02-25 20:12:20.884 2024-02-25 20:12:20.884 7700 FEE 438583 21155 6066320 2024-02-25 20:12:20.884 2024-02-25 20:12:20.884 69300 TIP 438583 5487 6066321 2024-02-25 20:12:21.208 2024-02-25 20:12:21.208 7700 FEE 438583 15732 6066322 2024-02-25 20:12:21.208 2024-02-25 20:12:21.208 69300 TIP 438583 642 6066343 2024-02-25 20:12:35.039 2024-02-25 20:12:35.039 7700 FEE 438486 20980 6066344 2024-02-25 20:12:35.039 2024-02-25 20:12:35.039 69300 TIP 438486 15147 6066353 2024-02-25 20:16:58.336 2024-02-25 20:16:58.336 4000 FEE 438596 10311 6066354 2024-02-25 20:16:58.336 2024-02-25 20:16:58.336 36000 TIP 438596 9349 6066356 2024-02-25 20:17:29.43 2024-02-25 20:17:29.43 1000 FEE 438619 19494 6066359 2024-02-25 20:17:31.776 2024-02-25 20:17:31.776 1000 FEE 438516 777 6066360 2024-02-25 20:17:31.776 2024-02-25 20:17:31.776 9000 TIP 438516 6616 6066372 2024-02-25 20:19:03.938 2024-02-25 20:19:03.938 1000 FEE 438622 2285 6066388 2024-02-25 20:20:09.583 2024-02-25 20:20:09.583 2100 FEE 438325 1611 6066389 2024-02-25 20:20:09.583 2024-02-25 20:20:09.583 18900 TIP 438325 16594 6066394 2024-02-25 20:20:37.489 2024-02-25 20:20:37.489 2100 FEE 438414 15100 6066395 2024-02-25 20:20:37.489 2024-02-25 20:20:37.489 18900 TIP 438414 19463 6066407 2024-02-25 20:21:33.393 2024-02-25 20:21:33.393 2100 FEE 438390 17696 6066408 2024-02-25 20:21:33.393 2024-02-25 20:21:33.393 18900 TIP 438390 14705 6066427 2024-02-25 20:21:45.6 2024-02-25 20:21:45.6 3800 FEE 438397 21051 6066428 2024-02-25 20:21:45.6 2024-02-25 20:21:45.6 34200 TIP 438397 12911 6066431 2024-02-25 20:21:50.921 2024-02-25 20:21:50.921 2100 FEE 438405 997 6066432 2024-02-25 20:21:50.921 2024-02-25 20:21:50.921 18900 TIP 438405 4167 6066474 2024-02-25 20:26:15.378 2024-02-25 20:26:15.378 900 FEE 438621 2196 6066475 2024-02-25 20:26:15.378 2024-02-25 20:26:15.378 8100 TIP 438621 837 6066476 2024-02-25 20:26:15.844 2024-02-25 20:26:15.844 9000 FEE 438621 2151 6066477 2024-02-25 20:26:15.844 2024-02-25 20:26:15.844 81000 TIP 438621 16816 6066481 2024-02-25 20:27:16.188 2024-02-25 20:27:16.188 800 FEE 438624 7772 6066482 2024-02-25 20:27:16.188 2024-02-25 20:27:16.188 7200 TIP 438624 616 6066484 2024-02-25 20:28:35.3 2024-02-25 20:28:35.3 10000 FEE 437850 2330 6066485 2024-02-25 20:28:35.3 2024-02-25 20:28:35.3 90000 TIP 437850 3706 6066519 2024-02-25 20:32:20.165 2024-02-25 20:32:20.165 3300 FEE 438345 700 6066520 2024-02-25 20:32:20.165 2024-02-25 20:32:20.165 29700 TIP 438345 20495 6066521 2024-02-25 20:32:24.108 2024-02-25 20:32:24.108 1000 POLL 438325 18124 6066523 2024-02-25 20:32:33.263 2024-02-25 20:32:33.263 3300 FEE 438582 14650 6066524 2024-02-25 20:32:33.263 2024-02-25 20:32:33.263 29700 TIP 438582 14195 6066567 2024-02-25 20:33:49.949 2024-02-25 20:33:49.949 3300 FEE 438209 19263 6066568 2024-02-25 20:33:49.949 2024-02-25 20:33:49.949 29700 TIP 438209 956 6066569 2024-02-25 20:33:50.147 2024-02-25 20:33:50.147 3300 FEE 438209 9275 6066570 2024-02-25 20:33:50.147 2024-02-25 20:33:50.147 29700 TIP 438209 5449 6066580 2024-02-25 20:34:39.663 2024-02-25 20:34:39.663 1000 FEE 438444 5487 6066581 2024-02-25 20:34:39.663 2024-02-25 20:34:39.663 9000 TIP 438444 10934 6066624 2024-02-25 20:38:31.914 2024-02-25 20:38:31.914 1000 FEE 438624 638 6066625 2024-02-25 20:38:31.914 2024-02-25 20:38:31.914 9000 TIP 438624 21228 6066628 2024-02-25 20:38:32.461 2024-02-25 20:38:32.461 1000 FEE 438624 20208 6066629 2024-02-25 20:38:32.461 2024-02-25 20:38:32.461 9000 TIP 438624 21498 6066636 2024-02-25 20:38:33.249 2024-02-25 20:38:33.249 1000 FEE 438624 19966 6066637 2024-02-25 20:38:33.249 2024-02-25 20:38:33.249 9000 TIP 438624 2327 6066659 2024-02-25 20:40:39.27 2024-02-25 20:40:39.27 1000 FEE 438634 8541 6066688 2024-02-25 20:47:00.673 2024-02-25 20:47:00.673 3300 FEE 438604 17148 6066689 2024-02-25 20:47:00.673 2024-02-25 20:47:00.673 29700 TIP 438604 9354 6066692 2024-02-25 20:47:01.479 2024-02-25 20:47:01.479 3300 FEE 438604 19906 6066693 2024-02-25 20:47:01.479 2024-02-25 20:47:01.479 29700 TIP 438604 20185 6066719 2024-02-25 20:49:01.398 2024-02-25 20:49:01.398 3300 FEE 438448 692 6066720 2024-02-25 20:49:01.398 2024-02-25 20:49:01.398 29700 TIP 438448 8541 6066728 2024-02-25 20:49:08.245 2024-02-25 20:49:08.245 6600 FEE 438461 15762 6066729 2024-02-25 20:49:08.245 2024-02-25 20:49:08.245 59400 TIP 438461 811 6066745 2024-02-25 20:50:54.538 2024-02-25 20:50:54.538 3000 FEE 438317 9482 6066746 2024-02-25 20:50:54.538 2024-02-25 20:50:54.538 27000 TIP 438317 12422 6066751 2024-02-25 20:52:09.623 2024-02-25 20:52:09.623 4000 FEE 438644 1286 6066752 2024-02-25 20:52:09.623 2024-02-25 20:52:09.623 36000 TIP 438644 3656 6066754 2024-02-25 20:53:26.362 2024-02-25 20:53:26.362 0 FEE 438640 21395 6066757 2024-02-25 20:53:56.309 2024-02-25 20:53:56.309 1000 FEE 438646 795 6066800 2024-02-25 21:00:04.635 2024-02-25 21:00:04.635 100000 FEE 438654 4802 6066814 2024-02-25 21:03:26.267 2024-02-25 21:03:26.267 1000 FEE 438658 8544 6066842 2024-02-25 21:09:23.643 2024-02-25 21:09:23.643 100 FEE 438634 3642 6066843 2024-02-25 21:09:23.643 2024-02-25 21:09:23.643 900 TIP 438634 19770 6066852 2024-02-25 21:09:27.721 2024-02-25 21:09:27.721 900 FEE 438650 1291 6066853 2024-02-25 21:09:27.721 2024-02-25 21:09:27.721 8100 TIP 438650 7425 6066856 2024-02-25 21:09:29.803 2024-02-25 21:09:29.803 900 FEE 438647 15147 6066857 2024-02-25 21:09:29.803 2024-02-25 21:09:29.803 8100 TIP 438647 19121 6066870 2024-02-25 21:09:52.51 2024-02-25 21:09:52.51 1000 FEE 438665 20246 6066874 2024-02-25 21:10:09.576 2024-02-25 21:10:09.576 1000 FEE 438666 9421 6066887 2024-02-25 21:10:36.067 2024-02-25 21:10:36.067 100 FEE 438624 981 6066888 2024-02-25 21:10:36.067 2024-02-25 21:10:36.067 900 TIP 438624 17103 6066915 2024-02-25 21:12:18.569 2024-02-25 21:12:18.569 2100 FEE 438514 8726 6066916 2024-02-25 21:12:18.569 2024-02-25 21:12:18.569 18900 TIP 438514 20889 6066920 2024-02-25 21:13:02.98 2024-02-25 21:13:02.98 2100 FEE 438405 16250 6066921 2024-02-25 21:13:02.98 2024-02-25 21:13:02.98 18900 TIP 438405 6229 6066932 2024-02-25 21:14:17.876 2024-02-25 21:14:17.876 400 FEE 438609 21491 6066933 2024-02-25 21:14:17.876 2024-02-25 21:14:17.876 3600 TIP 438609 5377 6066952 2024-02-25 21:16:03.701 2024-02-25 21:16:03.701 6900 FEE 438451 17392 6066953 2024-02-25 21:16:03.701 2024-02-25 21:16:03.701 62100 TIP 438451 16194 6066956 2024-02-25 21:16:03.997 2024-02-25 21:16:03.997 6900 FEE 438451 11145 6066957 2024-02-25 21:16:03.997 2024-02-25 21:16:03.997 62100 TIP 438451 6688 6066958 2024-02-25 21:16:04.28 2024-02-25 21:16:04.28 6900 FEE 438451 18745 6066959 2024-02-25 21:16:04.28 2024-02-25 21:16:04.28 62100 TIP 438451 16276 6066960 2024-02-25 21:16:04.413 2024-02-25 21:16:04.413 6900 FEE 438451 1626 6066961 2024-02-25 21:16:04.413 2024-02-25 21:16:04.413 62100 TIP 438451 18208 6066976 2024-02-25 21:16:09.402 2024-02-25 21:16:09.402 6900 FEE 438583 1224 6066977 2024-02-25 21:16:09.402 2024-02-25 21:16:09.402 62100 TIP 438583 15282 6066988 2024-02-25 21:17:14.72 2024-02-25 21:17:14.72 1000 FEE 438397 19815 6066989 2024-02-25 21:17:14.72 2024-02-25 21:17:14.72 9000 TIP 438397 7668 6066990 2024-02-25 21:17:15.174 2024-02-25 21:17:15.174 1000 FEE 438397 2748 6066991 2024-02-25 21:17:15.174 2024-02-25 21:17:15.174 9000 TIP 438397 4989 6066346 2024-02-25 20:13:04.618 2024-02-25 20:13:04.618 1000 STREAM 141924 19938 6066349 2024-02-25 20:15:04.685 2024-02-25 20:15:04.685 1000 STREAM 141924 11776 6066350 2024-02-25 20:16:04.685 2024-02-25 20:16:04.685 1000 STREAM 141924 14074 6066362 2024-02-25 20:18:04.714 2024-02-25 20:18:04.714 1000 STREAM 141924 20987 6066373 2024-02-25 20:19:04.712 2024-02-25 20:19:04.712 1000 STREAM 141924 1352 6066449 2024-02-25 20:22:04.721 2024-02-25 20:22:04.721 1000 STREAM 141924 8162 6066748 2024-02-25 20:51:03.502 2024-02-25 20:51:03.502 1000 STREAM 141924 19785 6066750 2024-02-25 20:52:03.508 2024-02-25 20:52:03.508 1000 STREAM 141924 12158 6066753 2024-02-25 20:53:03.526 2024-02-25 20:53:03.526 1000 STREAM 141924 18919 6066758 2024-02-25 20:54:03.534 2024-02-25 20:54:03.534 1000 STREAM 141924 6421 6066767 2024-02-25 20:57:03.529 2024-02-25 20:57:03.529 1000 STREAM 141924 8535 6125512 2024-03-01 13:57:32.848 2024-03-01 13:57:32.848 69300 TIP 444980 20302 6125522 2024-03-01 13:57:35.071 2024-03-01 13:57:35.071 7700 FEE 444980 20655 6125523 2024-03-01 13:57:35.071 2024-03-01 13:57:35.071 69300 TIP 444980 15336 6125535 2024-03-01 13:58:01.957 2024-03-01 13:58:01.957 3100 FEE 444990 9242 6125536 2024-03-01 13:58:01.957 2024-03-01 13:58:01.957 27900 TIP 444990 18892 6125599 2024-03-01 13:59:52.336 2024-03-01 13:59:52.336 300 FEE 444950 21451 6125600 2024-03-01 13:59:52.336 2024-03-01 13:59:52.336 2700 TIP 444950 9669 6125614 2024-03-01 14:00:04.786 2024-03-01 14:00:04.786 100000 FEE 445008 8176 6125627 2024-03-01 14:01:28.139 2024-03-01 14:01:28.139 6400 FEE 444998 7986 6125628 2024-03-01 14:01:28.139 2024-03-01 14:01:28.139 57600 TIP 444998 21463 6125631 2024-03-01 14:01:44.489 2024-03-01 14:01:44.489 2000 FEE 444393 21424 6125632 2024-03-01 14:01:44.489 2024-03-01 14:01:44.489 18000 TIP 444393 21342 6125643 2024-03-01 14:02:20.179 2024-03-01 14:02:20.179 1000 FEE 445010 21148 6125646 2024-03-01 14:02:52.966 2024-03-01 14:02:52.966 1000 FEE 445013 21620 6125669 2024-03-01 14:07:34.5 2024-03-01 14:07:34.5 1000 FEE 445016 19569 6125670 2024-03-01 14:07:34.5 2024-03-01 14:07:34.5 9000 TIP 445016 18208 6125673 2024-03-01 14:07:48.008 2024-03-01 14:07:48.008 1000 FEE 445016 20137 6125674 2024-03-01 14:07:48.008 2024-03-01 14:07:48.008 9000 TIP 445016 749 6125682 2024-03-01 14:08:37.787 2024-03-01 14:08:37.787 1000 FEE 445021 21247 6125685 2024-03-01 14:09:13.892 2024-03-01 14:09:13.892 500 FEE 444802 14472 6125686 2024-03-01 14:09:13.892 2024-03-01 14:09:13.892 4500 TIP 444802 17673 6125719 2024-03-01 14:12:05.613 2024-03-01 14:12:05.613 2100 FEE 444998 1352 6125720 2024-03-01 14:12:05.613 2024-03-01 14:12:05.613 18900 TIP 444998 12779 6125730 2024-03-01 14:13:02.73 2024-03-01 14:13:02.73 1000 FEE 445025 17682 6125731 2024-03-01 14:13:02.73 2024-03-01 14:13:02.73 9000 TIP 445025 678 6125736 2024-03-01 14:13:16.813 2024-03-01 14:13:16.813 7700 FEE 444915 19837 6125737 2024-03-01 14:13:16.813 2024-03-01 14:13:16.813 69300 TIP 444915 11590 6125742 2024-03-01 14:13:35.65 2024-03-01 14:13:35.65 1000 FEE 445030 16282 6125778 2024-03-01 14:17:32.786 2024-03-01 14:17:32.786 5000 FEE 444966 12721 6125779 2024-03-01 14:17:32.786 2024-03-01 14:17:32.786 45000 TIP 444966 7891 6125782 2024-03-01 14:17:34.784 2024-03-01 14:17:34.784 1000 FEE 445041 20776 6066375 2024-02-25 20:20:04.289 2024-02-25 20:20:04.289 4000 FEE 438588 9916 6066376 2024-02-25 20:20:04.289 2024-02-25 20:20:04.289 36000 TIP 438588 18507 6066390 2024-02-25 20:20:22.658 2024-02-25 20:20:22.658 2100 FEE 438414 2734 6066391 2024-02-25 20:20:22.658 2024-02-25 20:20:22.658 18900 TIP 438414 16176 6066411 2024-02-25 20:21:42.775 2024-02-25 20:21:42.775 2100 FEE 438389 4984 6066412 2024-02-25 20:21:42.775 2024-02-25 20:21:42.775 18900 TIP 438389 2264 6066443 2024-02-25 20:21:54.618 2024-02-25 20:21:54.618 2100 FEE 438405 10490 6066444 2024-02-25 20:21:54.618 2024-02-25 20:21:54.618 18900 TIP 438405 16754 6066464 2024-02-25 20:25:50.861 2024-02-25 20:25:50.861 1000 POLL 438325 6798 6066469 2024-02-25 20:25:54.77 2024-02-25 20:25:54.77 9000 FEE 438619 964 6066441 2024-02-25 20:21:52.12 2024-02-25 20:21:52.12 2100 FEE 438405 17984 6066442 2024-02-25 20:21:52.12 2024-02-25 20:21:52.12 18900 TIP 438405 14045 6066455 2024-02-25 20:23:19.705 2024-02-25 20:23:19.705 1000 FEE 438621 896 6066456 2024-02-25 20:23:19.705 2024-02-25 20:23:19.705 9000 TIP 438621 20906 6066495 2024-02-25 20:31:01.865 2024-02-25 20:31:01.865 3300 FEE 438451 18658 6066496 2024-02-25 20:31:01.865 2024-02-25 20:31:01.865 29700 TIP 438451 2583 6066513 2024-02-25 20:32:10.563 2024-02-25 20:32:10.563 3300 FEE 438440 18526 6066514 2024-02-25 20:32:10.563 2024-02-25 20:32:10.563 29700 TIP 438440 5500 6066517 2024-02-25 20:32:19.679 2024-02-25 20:32:19.679 3300 FEE 438345 19263 6066518 2024-02-25 20:32:19.679 2024-02-25 20:32:19.679 29700 TIP 438345 21228 6066542 2024-02-25 20:33:18.419 2024-02-25 20:33:18.419 1000 FEE 438628 18641 6066584 2024-02-25 20:34:55.321 2024-02-25 20:34:55.321 4000 FEE 438611 20015 6066585 2024-02-25 20:34:55.321 2024-02-25 20:34:55.321 36000 TIP 438611 10013 6066590 2024-02-25 20:35:17.674 2024-02-25 20:35:17.674 3400 FEE 438377 5057 6066591 2024-02-25 20:35:17.674 2024-02-25 20:35:17.674 30600 TIP 438377 20267 6066593 2024-02-25 20:36:11.462 2024-02-25 20:36:11.462 0 FEE 438630 19909 6066460 2024-02-25 20:24:05.236 2024-02-25 20:24:05.236 1000 STREAM 141924 12289 6066471 2024-02-25 20:26:05.225 2024-02-25 20:26:05.225 1000 STREAM 141924 7983 6066488 2024-02-25 20:29:05.257 2024-02-25 20:29:05.257 1000 STREAM 141924 21339 6066502 2024-02-25 20:31:05.29 2024-02-25 20:31:05.29 1000 STREAM 141924 11498 6066573 2024-02-25 20:34:05.363 2024-02-25 20:34:05.363 1000 STREAM 141924 21103 6125534 2024-03-01 13:57:58.466 2024-03-01 13:57:58.466 90000 TIP 444927 16660 6125541 2024-03-01 13:58:24.105 2024-03-01 13:58:24.105 7700 FEE 444987 5794 6125542 2024-03-01 13:58:24.105 2024-03-01 13:58:24.105 69300 TIP 444987 18816 6125574 2024-03-01 13:58:40 2024-03-01 13:58:40 1700 FEE 444998 10096 6125575 2024-03-01 13:58:40 2024-03-01 13:58:40 15300 TIP 444998 21242 6125615 2024-03-01 14:00:05.459 2024-03-01 14:00:05.459 1000 FEE 445009 12561 6125633 2024-03-01 14:01:45.39 2024-03-01 14:01:45.39 2100 FEE 444930 16336 6125634 2024-03-01 14:01:45.39 2024-03-01 14:01:45.39 18900 TIP 444930 21391 6125662 2024-03-01 14:07:17.581 2024-03-01 14:07:17.581 7600 FEE 445013 20245 6125663 2024-03-01 14:07:17.581 2024-03-01 14:07:17.581 68400 TIP 445013 17570 6125700 2024-03-01 14:10:33.169 2024-03-01 14:10:33.169 1000 FEE 445024 1175 6125750 2024-03-01 14:14:34.51 2024-03-01 14:14:34.51 2100 FEE 444980 16513 6125751 2024-03-01 14:14:34.51 2024-03-01 14:14:34.51 18900 TIP 444980 1454 6125756 2024-03-01 14:14:47.544 2024-03-01 14:14:47.544 1700 FEE 445027 21019 6125757 2024-03-01 14:14:47.544 2024-03-01 14:14:47.544 15300 TIP 445027 8926 6125765 2024-03-01 14:15:59.451 2024-03-01 14:15:59.451 1000 FEE 445035 6041 6125767 2024-03-01 14:16:05.494 2024-03-01 14:16:05.494 1000 FEE 445036 21562 6125769 2024-03-01 14:16:30.92 2024-03-01 14:16:30.92 1000 FEE 445038 21164 6125780 2024-03-01 14:17:34.559 2024-03-01 14:17:34.559 5000 FEE 444976 4521 6125781 2024-03-01 14:17:34.559 2024-03-01 14:17:34.559 45000 TIP 444976 670 6125784 2024-03-01 14:17:44.833 2024-03-01 14:17:44.833 1000 FEE 445042 19531 6125791 2024-03-01 14:19:32.276 2024-03-01 14:19:32.276 0 FEE 445035 6499 6066461 2024-02-25 20:25:05.225 2024-02-25 20:25:05.225 1000 STREAM 141924 18309 6066480 2024-02-25 20:27:05.227 2024-02-25 20:27:05.227 1000 STREAM 141924 2529 6066489 2024-02-25 20:30:05.33 2024-02-25 20:30:05.33 1000 STREAM 141924 9290 6066541 2024-02-25 20:33:05.324 2024-02-25 20:33:05.324 1000 STREAM 141924 8037 6125551 2024-03-01 13:58:26.647 2024-03-01 13:58:26.647 15400 FEE 444999 17944 6125552 2024-03-01 13:58:26.647 2024-03-01 13:58:26.647 138600 TIP 444999 13361 6125572 2024-03-01 13:58:39.842 2024-03-01 13:58:39.842 1700 FEE 444998 19096 6125573 2024-03-01 13:58:39.842 2024-03-01 13:58:39.842 15300 TIP 444998 20802 6125581 2024-03-01 13:58:49.419 2024-03-01 13:58:49.419 1000 FEE 444921 1692 6125582 2024-03-01 13:58:49.419 2024-03-01 13:58:49.419 9000 TIP 444921 6300 6125585 2024-03-01 13:58:56.306 2024-03-01 13:58:56.306 1000 FEE 444948 714 6125586 2024-03-01 13:58:56.306 2024-03-01 13:58:56.306 9000 TIP 444948 20717 6125597 2024-03-01 13:59:52.088 2024-03-01 13:59:52.088 300 FEE 444950 18101 6125598 2024-03-01 13:59:52.088 2024-03-01 13:59:52.088 2700 TIP 444950 9921 6125623 2024-03-01 14:01:26.634 2024-03-01 14:01:26.634 6900 FEE 445002 6471 6125624 2024-03-01 14:01:26.634 2024-03-01 14:01:26.634 62100 TIP 445002 11819 6125629 2024-03-01 14:01:41.843 2024-03-01 14:01:41.843 1000 FEE 444998 12097 6125630 2024-03-01 14:01:41.843 2024-03-01 14:01:41.843 9000 TIP 444998 695 6125639 2024-03-01 14:01:57.291 2024-03-01 14:01:57.291 2100 FEE 444957 18663 6125640 2024-03-01 14:01:57.291 2024-03-01 14:01:57.291 18900 TIP 444957 20243 6125642 2024-03-01 14:02:05.726 2024-03-01 14:02:05.726 0 FEE 445002 8726 6125661 2024-03-01 14:07:17.238 2024-03-01 14:07:17.238 1000 FEE 445019 18336 6125666 2024-03-01 14:07:32.243 2024-03-01 14:07:32.243 1000 FEE 445020 17838 6125671 2024-03-01 14:07:35.076 2024-03-01 14:07:35.076 1000 FEE 445016 15890 6125672 2024-03-01 14:07:35.076 2024-03-01 14:07:35.076 9000 TIP 445016 18180 6125687 2024-03-01 14:09:16.568 2024-03-01 14:09:16.568 500 FEE 444802 20775 6125688 2024-03-01 14:09:16.568 2024-03-01 14:09:16.568 4500 TIP 444802 17109 6125724 2024-03-01 14:12:36.834 2024-03-01 14:12:36.834 1000 FEE 445027 21514 6125725 2024-03-01 14:12:44.825 2024-03-01 14:12:44.825 1000 FEE 445028 11395 6125728 2024-03-01 14:12:57.055 2024-03-01 14:12:57.055 1000 FEE 445029 16042 6125748 2024-03-01 14:14:15.224 2024-03-01 14:14:15.224 1000 FEE 445031 3504 6125760 2024-03-01 14:15:33.441 2024-03-01 14:15:33.441 1000 FEE 445034 9529 6125763 2024-03-01 14:15:57.206 2024-03-01 14:15:57.206 100 FEE 444911 9184 6125764 2024-03-01 14:15:57.206 2024-03-01 14:15:57.206 900 TIP 444911 698 6125770 2024-03-01 14:16:31.5 2024-03-01 14:16:31.5 0 FEE 445035 2576 6125794 2024-03-01 14:19:41.835 2024-03-01 14:19:41.835 0 FEE 445035 20291 6125805 2024-03-01 14:20:57.44 2024-03-01 14:20:57.44 1000 FEE 445048 5057 6125809 2024-03-01 14:21:06.097 2024-03-01 14:21:06.097 1000 FEE 444980 15588 6125810 2024-03-01 14:21:06.097 2024-03-01 14:21:06.097 9000 TIP 444980 19502 6125817 2024-03-01 14:21:26.882 2024-03-01 14:21:26.882 1000 FEE 445049 18051 6125819 2024-03-01 14:21:43.214 2024-03-01 14:21:43.214 0 FEE 445035 13931 6125823 2024-03-01 14:22:08.334 2024-03-01 14:22:08.334 1000 FEE 445051 713 6125824 2024-03-01 14:22:26.914 2024-03-01 14:22:26.914 1000 FEE 445052 17639 6125827 2024-03-01 14:23:29.096 2024-03-01 14:23:29.096 1000 FEE 445054 1471 6125853 2024-03-01 14:28:36.766 2024-03-01 14:28:36.766 10800 FEE 445016 16351 6125854 2024-03-01 14:28:36.766 2024-03-01 14:28:36.766 97200 TIP 445016 694 6125857 2024-03-01 14:28:51.326 2024-03-01 14:28:51.326 1000 FEE 445062 20706 6125861 2024-03-01 14:29:12.991 2024-03-01 14:29:12.991 5000 FEE 445015 4313 6125862 2024-03-01 14:29:12.991 2024-03-01 14:29:12.991 45000 TIP 445015 2773 6125882 2024-03-01 14:32:42.957 2024-03-01 14:32:42.957 1000 POLL 444597 14795 6125887 2024-03-01 14:33:23.58 2024-03-01 14:33:23.58 10000 FEE 445037 981 6125888 2024-03-01 14:33:23.58 2024-03-01 14:33:23.58 90000 TIP 445037 16350 6125892 2024-03-01 14:34:10.921 2024-03-01 14:34:10.921 0 FEE 445066 21291 6125896 2024-03-01 14:35:02.137 2024-03-01 14:35:02.137 2100 FEE 444880 19810 6125897 2024-03-01 14:35:02.137 2024-03-01 14:35:02.137 18900 TIP 444880 4059 6125936 2024-03-01 14:39:49.33 2024-03-01 14:39:49.33 132500 FEE 445075 891 6125937 2024-03-01 14:39:49.33 2024-03-01 14:39:49.33 1192500 TIP 445075 18615 6125954 2024-03-01 14:40:38.214 2024-03-01 14:40:38.214 1000 FEE 444839 18311 6125955 2024-03-01 14:40:38.214 2024-03-01 14:40:38.214 9000 TIP 444839 1105 6125978 2024-03-01 14:43:37.162 2024-03-01 14:43:37.162 100000 FEE 445077 14990 6125979 2024-03-01 14:43:39.586 2024-03-01 14:43:39.586 0 FEE 445074 10693 6126001 2024-03-01 14:46:21.868 2024-03-01 14:46:21.868 0 FEE 445078 1881 6126002 2024-03-01 14:46:42.993 2024-03-01 14:46:42.993 100 FEE 445034 18994 6126003 2024-03-01 14:46:42.993 2024-03-01 14:46:42.993 900 TIP 445034 4292 6126004 2024-03-01 14:46:46.123 2024-03-01 14:46:46.123 100000 FEE 445083 831 6126009 2024-03-01 14:47:00.289 2024-03-01 14:47:00.289 1000 FEE 445084 671 6126027 2024-03-01 14:47:39.365 2024-03-01 14:47:39.365 1000 FEE 445085 5497 6126031 2024-03-01 14:48:18.618 2024-03-01 14:48:18.618 1000 FEE 445085 5809 6126032 2024-03-01 14:48:18.618 2024-03-01 14:48:18.618 9000 TIP 445085 2042 6126050 2024-03-01 14:50:10.883 2024-03-01 14:50:10.883 1000 FEE 445089 11716 6126073 2024-03-01 14:53:09.23 2024-03-01 14:53:09.23 1000 FEE 445092 630 6126074 2024-03-01 14:53:09.23 2024-03-01 14:53:09.23 9000 TIP 445092 17050 6126089 2024-03-01 14:55:12.344 2024-03-01 14:55:12.344 2100 FEE 445073 15119 6126090 2024-03-01 14:55:12.344 2024-03-01 14:55:12.344 18900 TIP 445073 15536 6126094 2024-03-01 14:55:47.084 2024-03-01 14:55:47.084 1000 FEE 445097 16753 6126107 2024-03-01 14:56:16.598 2024-03-01 14:56:16.598 2100 FEE 445076 19446 6126108 2024-03-01 14:56:16.598 2024-03-01 14:56:16.598 18900 TIP 445076 1564 6126124 2024-03-01 14:57:59.652 2024-03-01 14:57:59.652 1000 FEE 445101 11678 6126149 2024-03-01 15:02:16.837 2024-03-01 15:02:16.837 1600 FEE 445096 15243 6126150 2024-03-01 15:02:16.837 2024-03-01 15:02:16.837 14400 TIP 445096 21292 6126162 2024-03-01 15:02:49.59 2024-03-01 15:02:49.59 2100 FEE 445104 15063 6126163 2024-03-01 15:02:49.59 2024-03-01 15:02:49.59 18900 TIP 445104 19417 6066470 2024-02-25 20:25:54.77 2024-02-25 20:25:54.77 81000 TIP 438619 6003 6066472 2024-02-25 20:26:15.287 2024-02-25 20:26:15.287 100 FEE 438621 19378 6066473 2024-02-25 20:26:15.287 2024-02-25 20:26:15.287 900 TIP 438621 21131 6066478 2024-02-25 20:26:23.788 2024-02-25 20:26:23.788 2100 FEE 438440 20099 6066479 2024-02-25 20:26:23.788 2024-02-25 20:26:23.788 18900 TIP 438440 646 6066497 2024-02-25 20:31:02.263 2024-02-25 20:31:02.263 3300 FEE 438451 21287 6066498 2024-02-25 20:31:02.263 2024-02-25 20:31:02.263 29700 TIP 438451 21274 6066499 2024-02-25 20:31:03.581 2024-02-25 20:31:03.581 32000 DONT_LIKE_THIS 437131 6578 6066500 2024-02-25 20:31:04.867 2024-02-25 20:31:04.867 3300 FEE 438414 20546 6066501 2024-02-25 20:31:04.867 2024-02-25 20:31:04.867 29700 TIP 438414 14651 6066525 2024-02-25 20:32:33.581 2024-02-25 20:32:33.581 3300 FEE 438582 17838 6066526 2024-02-25 20:32:33.581 2024-02-25 20:32:33.581 29700 TIP 438582 14959 6066527 2024-02-25 20:32:43.396 2024-02-25 20:32:43.396 3300 FEE 438359 1425 6066528 2024-02-25 20:32:43.396 2024-02-25 20:32:43.396 29700 TIP 438359 2329 6066555 2024-02-25 20:33:31.312 2024-02-25 20:33:31.312 3300 FEE 438317 2832 6066556 2024-02-25 20:33:31.312 2024-02-25 20:33:31.312 29700 TIP 438317 17570 6066559 2024-02-25 20:33:32.836 2024-02-25 20:33:32.836 3300 FEE 438390 9378 6066560 2024-02-25 20:33:32.836 2024-02-25 20:33:32.836 29700 TIP 438390 19996 6066563 2024-02-25 20:33:35.471 2024-02-25 20:33:35.471 1000 FEE 438438 19533 6066564 2024-02-25 20:33:35.471 2024-02-25 20:33:35.471 9000 TIP 438438 21371 6066582 2024-02-25 20:34:44.152 2024-02-25 20:34:44.152 10000 FEE 436806 705 6066583 2024-02-25 20:34:44.152 2024-02-25 20:34:44.152 90000 TIP 436806 21485 6066604 2024-02-25 20:37:55.935 2024-02-25 20:37:55.935 21000 FEE 438607 20299 6066605 2024-02-25 20:37:55.935 2024-02-25 20:37:55.935 189000 TIP 438607 19638 6066615 2024-02-25 20:38:23.473 2024-02-25 20:38:23.473 3300 FEE 438389 19243 6066616 2024-02-25 20:38:23.473 2024-02-25 20:38:23.473 29700 TIP 438389 16956 6066618 2024-02-25 20:38:31.269 2024-02-25 20:38:31.269 1000 FEE 438624 7899 6066619 2024-02-25 20:38:31.269 2024-02-25 20:38:31.269 9000 TIP 438624 1712 6066648 2024-02-25 20:38:47.628 2024-02-25 20:38:47.628 10500 FEE 438423 980 6066649 2024-02-25 20:38:47.628 2024-02-25 20:38:47.628 94500 TIP 438423 18452 6066696 2024-02-25 20:47:03.662 2024-02-25 20:47:03.662 3300 FEE 438604 15139 6066697 2024-02-25 20:47:03.662 2024-02-25 20:47:03.662 29700 TIP 438604 20817 6066703 2024-02-25 20:48:06.9 2024-02-25 20:48:06.9 1000 FEE 438638 6361 6066730 2024-02-25 20:49:08.468 2024-02-25 20:49:08.468 3300 FEE 438461 11992 6066731 2024-02-25 20:49:08.468 2024-02-25 20:49:08.468 29700 TIP 438461 16717 6066732 2024-02-25 20:49:44.778 2024-02-25 20:49:44.778 500 FEE 438592 1064 6066733 2024-02-25 20:49:44.778 2024-02-25 20:49:44.778 4500 TIP 438592 16754 6066773 2024-02-25 20:57:46.791 2024-02-25 20:57:46.791 1000 FEE 438650 19524 6066774 2024-02-25 20:57:53.962 2024-02-25 20:57:53.962 100000 FEE 438651 11430 6066795 2024-02-25 20:59:39.282 2024-02-25 20:59:39.282 1000 FEE 438486 17710 6066796 2024-02-25 20:59:39.282 2024-02-25 20:59:39.282 9000 TIP 438486 20551 6066805 2024-02-25 21:00:56.71 2024-02-25 21:00:56.71 800 FEE 438598 19796 6066806 2024-02-25 21:00:56.71 2024-02-25 21:00:56.71 7200 TIP 438598 4763 6066820 2024-02-25 21:06:44.535 2024-02-25 21:06:44.535 10000 FEE 438657 5758 6066821 2024-02-25 21:06:44.535 2024-02-25 21:06:44.535 90000 TIP 438657 19863 6066823 2024-02-25 21:06:58.2 2024-02-25 21:06:58.2 1000 FEE 438662 4345 6066838 2024-02-25 21:08:49.139 2024-02-25 21:08:49.139 9000 FEE 438631 14857 6066839 2024-02-25 21:08:49.139 2024-02-25 21:08:49.139 81000 TIP 438631 10280 6066868 2024-02-25 21:09:51.964 2024-02-25 21:09:51.964 900 FEE 438649 21520 6066869 2024-02-25 21:09:51.964 2024-02-25 21:09:51.964 8100 TIP 438649 3478 6066917 2024-02-25 21:12:25.982 2024-02-25 21:12:25.982 2100 FEE 438325 5520 6066918 2024-02-25 21:12:25.982 2024-02-25 21:12:25.982 18900 TIP 438325 13177 6066940 2024-02-25 21:14:58.509 2024-02-25 21:14:58.509 2100 FEE 438559 19815 6066941 2024-02-25 21:14:58.509 2024-02-25 21:14:58.509 18900 TIP 438559 20642 6066964 2024-02-25 21:16:08.656 2024-02-25 21:16:08.656 6900 FEE 438583 1512 6066965 2024-02-25 21:16:08.656 2024-02-25 21:16:08.656 62100 TIP 438583 13132 6066992 2024-02-25 21:17:15.305 2024-02-25 21:17:15.305 1000 FEE 438397 20973 6066993 2024-02-25 21:17:15.305 2024-02-25 21:17:15.305 9000 TIP 438397 3729 6066994 2024-02-25 21:17:15.52 2024-02-25 21:17:15.52 1000 FEE 438397 11378 6066995 2024-02-25 21:17:15.52 2024-02-25 21:17:15.52 9000 TIP 438397 9307 6067000 2024-02-25 21:17:47.265 2024-02-25 21:17:47.265 1000 POLL 438325 18629 6067003 2024-02-25 21:19:08.361 2024-02-25 21:19:08.361 200 FEE 438367 14959 6067004 2024-02-25 21:19:08.361 2024-02-25 21:19:08.361 1800 TIP 438367 20597 6067005 2024-02-25 21:19:16.65 2024-02-25 21:19:16.65 4000 FEE 438667 9336 6067006 2024-02-25 21:19:16.65 2024-02-25 21:19:16.65 36000 TIP 438667 12261 6067012 2024-02-25 21:20:57.406 2024-02-25 21:20:57.406 4000 FEE 438651 1008 6067013 2024-02-25 21:20:57.406 2024-02-25 21:20:57.406 36000 TIP 438651 1624 6067033 2024-02-25 21:22:47.937 2024-02-25 21:22:47.937 1000 FEE 438583 17708 6067034 2024-02-25 21:22:47.937 2024-02-25 21:22:47.937 9000 TIP 438583 11992 6067047 2024-02-25 21:23:10.916 2024-02-25 21:23:10.916 15400 FEE 438670 10016 6067048 2024-02-25 21:23:10.916 2024-02-25 21:23:10.916 138600 TIP 438670 21033 6067051 2024-02-25 21:23:11.817 2024-02-25 21:23:11.817 7700 FEE 438670 2519 6067052 2024-02-25 21:23:11.817 2024-02-25 21:23:11.817 69300 TIP 438670 2749 6067071 2024-02-25 21:23:35.403 2024-02-25 21:23:35.403 7700 FEE 438634 18306 6067072 2024-02-25 21:23:35.403 2024-02-25 21:23:35.403 69300 TIP 438634 720 6067091 2024-02-25 21:24:56.03 2024-02-25 21:24:56.03 1000 FEE 438630 4487 6067092 2024-02-25 21:24:56.03 2024-02-25 21:24:56.03 9000 TIP 438630 12289 6067100 2024-02-25 21:25:32.374 2024-02-25 21:25:32.374 2100 FEE 438451 807 6067101 2024-02-25 21:25:32.374 2024-02-25 21:25:32.374 18900 TIP 438451 13903 6067106 2024-02-25 21:25:35.2 2024-02-25 21:25:35.2 2100 FEE 438405 19531 6067107 2024-02-25 21:25:35.2 2024-02-25 21:25:35.2 18900 TIP 438405 9906 6067202 2024-02-25 21:32:18.437 2024-02-25 21:32:18.437 5000 FEE 438188 17944 6067203 2024-02-25 21:32:18.437 2024-02-25 21:32:18.437 45000 TIP 438188 21303 6067217 2024-02-25 21:33:12.098 2024-02-25 21:33:12.098 1100 FEE 438414 16809 6067218 2024-02-25 21:33:12.098 2024-02-25 21:33:12.098 9900 TIP 438414 6058 6067253 2024-02-25 21:37:56.152 2024-02-25 21:37:56.152 2100 FEE 435944 9494 6067254 2024-02-25 21:37:56.152 2024-02-25 21:37:56.152 18900 TIP 435944 1478 6067255 2024-02-25 21:37:56.426 2024-02-25 21:37:56.426 2100 FEE 435944 7869 6067256 2024-02-25 21:37:56.426 2024-02-25 21:37:56.426 18900 TIP 435944 807 6067267 2024-02-25 21:39:27.502 2024-02-25 21:39:27.502 10100 FEE 438622 21349 6067268 2024-02-25 21:39:27.502 2024-02-25 21:39:27.502 90900 TIP 438622 9844 6067275 2024-02-25 21:39:36.597 2024-02-25 21:39:36.597 1000 FEE 438651 1468 6067276 2024-02-25 21:39:36.597 2024-02-25 21:39:36.597 9000 TIP 438651 20424 6067319 2024-02-25 21:46:57.671 2024-02-25 21:46:57.671 1000 FEE 438685 21603 6067327 2024-02-25 21:47:18.142 2024-02-25 21:47:18.142 1000 FEE 438646 16839 6067328 2024-02-25 21:47:18.142 2024-02-25 21:47:18.142 9000 TIP 438646 21247 6067339 2024-02-25 21:47:25.381 2024-02-25 21:47:25.381 1000000 DONT_LIKE_THIS 438668 5825 6067347 2024-02-25 21:48:20.302 2024-02-25 21:48:20.302 2700 FEE 438611 16410 6067348 2024-02-25 21:48:20.302 2024-02-25 21:48:20.302 24300 TIP 438611 20616 6067361 2024-02-25 21:50:33.104 2024-02-25 21:50:33.104 10000 FEE 438685 20782 6067362 2024-02-25 21:50:33.104 2024-02-25 21:50:33.104 90000 TIP 438685 21371 6066492 2024-02-25 20:31:01.197 2024-02-25 20:31:01.197 29700 TIP 438451 8385 6066493 2024-02-25 20:31:01.529 2024-02-25 20:31:01.529 3300 FEE 438451 20162 6066494 2024-02-25 20:31:01.529 2024-02-25 20:31:01.529 29700 TIP 438451 15484 6066515 2024-02-25 20:32:17.005 2024-02-25 20:32:17.005 3300 FEE 438345 617 6066516 2024-02-25 20:32:17.005 2024-02-25 20:32:17.005 29700 TIP 438345 642 6066531 2024-02-25 20:32:43.642 2024-02-25 20:32:43.642 3300 FEE 438359 14168 6066532 2024-02-25 20:32:43.642 2024-02-25 20:32:43.642 29700 TIP 438359 20812 6066565 2024-02-25 20:33:49.909 2024-02-25 20:33:49.909 3300 FEE 438209 5425 6066566 2024-02-25 20:33:49.909 2024-02-25 20:33:49.909 29700 TIP 438209 16270 6066574 2024-02-25 20:34:11.325 2024-02-25 20:34:11.325 4000 FEE 438624 18336 6066575 2024-02-25 20:34:11.325 2024-02-25 20:34:11.325 36000 TIP 438624 21201 6066594 2024-02-25 20:36:36.994 2024-02-25 20:36:36.994 10000 FEE 437359 4238 6066595 2024-02-25 20:36:36.994 2024-02-25 20:36:36.994 90000 TIP 437359 17682 6066620 2024-02-25 20:38:31.448 2024-02-25 20:38:31.448 1000 FEE 438624 16867 6066621 2024-02-25 20:38:31.448 2024-02-25 20:38:31.448 9000 TIP 438624 9758 6066670 2024-02-25 20:42:30.816 2024-02-25 20:42:30.816 1000 FEE 438634 986 6066671 2024-02-25 20:42:30.816 2024-02-25 20:42:30.816 9000 TIP 438634 20616 6066707 2024-02-25 20:48:34.773 2024-02-25 20:48:34.773 3300 FEE 438631 18072 6066708 2024-02-25 20:48:34.773 2024-02-25 20:48:34.773 29700 TIP 438631 14381 6066709 2024-02-25 20:48:35.058 2024-02-25 20:48:35.058 3300 FEE 438631 21417 6066710 2024-02-25 20:48:35.058 2024-02-25 20:48:35.058 29700 TIP 438631 18344 6066723 2024-02-25 20:49:03.143 2024-02-25 20:49:03.143 3300 FEE 438448 8059 6066724 2024-02-25 20:49:03.143 2024-02-25 20:49:03.143 29700 TIP 438448 14381 6066747 2024-02-25 20:51:03.09 2024-02-25 20:51:03.09 1000 FEE 438643 769 6066763 2024-02-25 20:55:56.774 2024-02-25 20:55:56.774 1000 FEE 438634 16424 6066764 2024-02-25 20:55:56.774 2024-02-25 20:55:56.774 9000 TIP 438634 1534 6066768 2024-02-25 20:57:18.897 2024-02-25 20:57:18.897 2100 FEE 438634 19857 6066769 2024-02-25 20:57:18.897 2024-02-25 20:57:18.897 18900 TIP 438634 18637 6066797 2024-02-25 20:59:52.988 2024-02-25 20:59:52.988 1000 FEE 438653 18673 6066815 2024-02-25 21:03:26.484 2024-02-25 21:03:26.484 100000 FEE 438659 19638 6066835 2024-02-25 21:08:47.21 2024-02-25 21:08:47.21 900 FEE 438631 1512 6066836 2024-02-25 21:08:47.21 2024-02-25 21:08:47.21 8100 TIP 438631 16956 6066854 2024-02-25 21:09:29.65 2024-02-25 21:09:29.65 100 FEE 438647 20099 6066855 2024-02-25 21:09:29.65 2024-02-25 21:09:29.65 900 TIP 438647 11992 6066862 2024-02-25 21:09:33.286 2024-02-25 21:09:33.286 100 FEE 438635 18932 6066863 2024-02-25 21:09:33.286 2024-02-25 21:09:33.286 900 TIP 438635 21254 6066881 2024-02-25 21:10:18.683 2024-02-25 21:10:18.683 9000 FEE 438651 2338 6066882 2024-02-25 21:10:18.683 2024-02-25 21:10:18.683 81000 TIP 438651 21527 6066897 2024-02-25 21:11:03.184 2024-02-25 21:11:03.184 100 FEE 438596 2774 6066898 2024-02-25 21:11:03.184 2024-02-25 21:11:03.184 900 TIP 438596 9517 6066906 2024-02-25 21:11:49.992 2024-02-25 21:11:49.992 10000 FEE 438487 21563 6066907 2024-02-25 21:11:49.992 2024-02-25 21:11:49.992 90000 TIP 438487 9833 6066938 2024-02-25 21:14:46.656 2024-02-25 21:14:46.656 2100 FEE 438538 19864 6066939 2024-02-25 21:14:46.656 2024-02-25 21:14:46.656 18900 TIP 438538 18904 6066942 2024-02-25 21:15:04.644 2024-02-25 21:15:04.644 10000 FEE 438065 15556 6066943 2024-02-25 21:15:04.644 2024-02-25 21:15:04.644 90000 TIP 438065 3990 6066950 2024-02-25 21:16:03.623 2024-02-25 21:16:03.623 6900 FEE 438451 19462 6066951 2024-02-25 21:16:03.623 2024-02-25 21:16:03.623 62100 TIP 438451 4989 6066966 2024-02-25 21:16:08.78 2024-02-25 21:16:08.78 6900 FEE 438583 9307 6066967 2024-02-25 21:16:08.78 2024-02-25 21:16:08.78 62100 TIP 438583 1552 6066972 2024-02-25 21:16:09.158 2024-02-25 21:16:09.158 6900 FEE 438583 6383 6066973 2024-02-25 21:16:09.158 2024-02-25 21:16:09.158 62100 TIP 438583 19322 6066984 2024-02-25 21:16:54.619 2024-02-25 21:16:54.619 1000 FEE 438668 18291 6067008 2024-02-25 21:20:44.86 2024-02-25 21:20:44.86 4000 FEE 438583 17103 6067009 2024-02-25 21:20:44.86 2024-02-25 21:20:44.86 36000 TIP 438583 19690 6067049 2024-02-25 21:23:11.04 2024-02-25 21:23:11.04 7700 FEE 438670 2460 6067050 2024-02-25 21:23:11.04 2024-02-25 21:23:11.04 69300 TIP 438670 19541 6067083 2024-02-25 21:24:53.804 2024-02-25 21:24:53.804 1000 FEE 438630 19458 6067084 2024-02-25 21:24:53.804 2024-02-25 21:24:53.804 9000 TIP 438630 1740 6067096 2024-02-25 21:25:07.465 2024-02-25 21:25:07.465 2100 FEE 438667 12965 6067097 2024-02-25 21:25:07.465 2024-02-25 21:25:07.465 18900 TIP 438667 8648 6067104 2024-02-25 21:25:33.827 2024-02-25 21:25:33.827 2100 FEE 438414 16876 6067105 2024-02-25 21:25:33.827 2024-02-25 21:25:33.827 18900 TIP 438414 9342 6067114 2024-02-25 21:25:38.259 2024-02-25 21:25:38.259 2100 FEE 438486 18930 6067115 2024-02-25 21:25:38.259 2024-02-25 21:25:38.259 18900 TIP 438486 21320 6067130 2024-02-25 21:25:44.276 2024-02-25 21:25:44.276 2100 FEE 438389 20179 6067131 2024-02-25 21:25:44.276 2024-02-25 21:25:44.276 18900 TIP 438389 14795 6067146 2024-02-25 21:27:00.597 2024-02-25 21:27:00.597 800 FEE 438670 21138 6067147 2024-02-25 21:27:00.597 2024-02-25 21:27:00.597 7200 TIP 438670 15588 6067149 2024-02-25 21:27:29.2 2024-02-25 21:27:29.2 2100 FEE 438605 18832 6067150 2024-02-25 21:27:29.2 2024-02-25 21:27:29.2 18900 TIP 438605 12356 6067187 2024-02-25 21:30:06.814 2024-02-25 21:30:06.814 1000 POLL 438202 5160 6067193 2024-02-25 21:30:38.14 2024-02-25 21:30:38.14 1000 POLL 438325 13246 6067194 2024-02-25 21:30:45.337 2024-02-25 21:30:45.337 2100 FEE 438382 7558 6067195 2024-02-25 21:30:45.337 2024-02-25 21:30:45.337 18900 TIP 438382 20564 6067214 2024-02-25 21:33:05.347 2024-02-25 21:33:05.347 1100 FEE 438607 4027 6067215 2024-02-25 21:33:05.347 2024-02-25 21:33:05.347 9900 TIP 438607 2444 6067228 2024-02-25 21:35:36.706 2024-02-25 21:35:36.706 10100 FEE 438451 18533 6067229 2024-02-25 21:35:36.706 2024-02-25 21:35:36.706 90900 TIP 438451 14731 6067232 2024-02-25 21:35:43.986 2024-02-25 21:35:43.986 2100 FEE 435944 999 6067233 2024-02-25 21:35:43.986 2024-02-25 21:35:43.986 18900 TIP 435944 1626 6067243 2024-02-25 21:36:57.801 2024-02-25 21:36:57.801 1000 FEE 438677 21589 6067263 2024-02-25 21:37:57.478 2024-02-25 21:37:57.478 2100 FEE 435944 20439 6067264 2024-02-25 21:37:57.478 2024-02-25 21:37:57.478 18900 TIP 435944 19966 6067279 2024-02-25 21:39:46.102 2024-02-25 21:39:46.102 2700 FEE 438657 5775 6067280 2024-02-25 21:39:46.102 2024-02-25 21:39:46.102 24300 TIP 438657 650 6067283 2024-02-25 21:39:56.426 2024-02-25 21:39:56.426 21800 FEE 438588 17014 6067284 2024-02-25 21:39:56.426 2024-02-25 21:39:56.426 196200 TIP 438588 20099 6067292 2024-02-25 21:41:52.016 2024-02-25 21:41:52.016 3300 FEE 438605 1141 6067293 2024-02-25 21:41:52.016 2024-02-25 21:41:52.016 29700 TIP 438605 13198 6067298 2024-02-25 21:43:56.689 2024-02-25 21:43:56.689 1000 FEE 438679 20687 6067302 2024-02-25 21:44:29.899 2024-02-25 21:44:29.899 2100 FEE 438607 21612 6067303 2024-02-25 21:44:29.899 2024-02-25 21:44:29.899 18900 TIP 438607 721 6067304 2024-02-25 21:44:38.023 2024-02-25 21:44:38.023 1000 FEE 438682 4128 6067309 2024-02-25 21:44:45.699 2024-02-25 21:44:45.699 2700 FEE 438507 1652 6067310 2024-02-25 21:44:45.699 2024-02-25 21:44:45.699 24300 TIP 438507 8360 6067322 2024-02-25 21:47:12.475 2024-02-25 21:47:12.475 0 FEE 438685 14074 6067325 2024-02-25 21:47:17.924 2024-02-25 21:47:17.924 1000 FEE 438646 698 6067326 2024-02-25 21:47:17.924 2024-02-25 21:47:17.924 9000 TIP 438646 16348 6066508 2024-02-25 20:32:03.067 2024-02-25 20:32:03.067 1000 STREAM 141924 10690 6066944 2024-02-25 21:15:05.398 2024-02-25 21:15:05.398 1000 STREAM 141924 20979 6125675 2024-03-01 14:07:48.187 2024-03-01 14:07:48.187 1000 FEE 445016 3417 6125676 2024-03-01 14:07:48.187 2024-03-01 14:07:48.187 9000 TIP 445016 18311 6125680 2024-03-01 14:08:31.194 2024-03-01 14:08:31.194 3400 FEE 445003 633 6125681 2024-03-01 14:08:31.194 2024-03-01 14:08:31.194 30600 TIP 445003 3456 6125683 2024-03-01 14:08:44.854 2024-03-01 14:08:44.854 1000 FEE 445022 11938 6125697 2024-03-01 14:10:32.427 2024-03-01 14:10:32.427 1000 FEE 445023 9026 6125717 2024-03-01 14:12:03.194 2024-03-01 14:12:03.194 10000 FEE 444998 14774 6125718 2024-03-01 14:12:03.194 2024-03-01 14:12:03.194 90000 TIP 444998 21338 6125721 2024-03-01 14:12:09.008 2024-03-01 14:12:09.008 1000 FEE 445026 21481 6125722 2024-03-01 14:12:32.191 2024-03-01 14:12:32.191 10000 FEE 444921 9482 6125723 2024-03-01 14:12:32.191 2024-03-01 14:12:32.191 90000 TIP 444921 2508 6125732 2024-03-01 14:13:05.745 2024-03-01 14:13:05.745 10000 FEE 444998 9183 6125733 2024-03-01 14:13:05.745 2024-03-01 14:13:05.745 90000 TIP 444998 19857 6125761 2024-03-01 14:15:38.848 2024-03-01 14:15:38.848 2100 FEE 444950 3409 6125762 2024-03-01 14:15:38.848 2024-03-01 14:15:38.848 18900 TIP 444950 17673 6125771 2024-03-01 14:16:46.94 2024-03-01 14:16:46.94 1000 FEE 445039 18615 6125783 2024-03-01 14:17:39.79 2024-03-01 14:17:39.79 0 FEE 445035 8664 6125786 2024-03-01 14:18:42.401 2024-03-01 14:18:42.401 1000 FEE 445043 1145 6125789 2024-03-01 14:19:02.867 2024-03-01 14:19:02.867 1000 FEE 445045 21274 6125815 2024-03-01 14:21:24.49 2024-03-01 14:21:24.49 100 FEE 445005 18280 6125816 2024-03-01 14:21:24.49 2024-03-01 14:21:24.49 900 TIP 445005 3342 6125836 2024-03-01 14:25:14.185 2024-03-01 14:25:14.185 1000 FEE 445058 20523 6125837 2024-03-01 14:25:52.616 2024-03-01 14:25:52.616 2100 FEE 445053 4521 6125838 2024-03-01 14:25:52.616 2024-03-01 14:25:52.616 18900 TIP 445053 10608 6125839 2024-03-01 14:25:55.044 2024-03-01 14:25:55.044 1000 FEE 445059 18932 6125864 2024-03-01 14:30:11.654 2024-03-01 14:30:11.654 3000 FEE 444998 14818 6125865 2024-03-01 14:30:11.654 2024-03-01 14:30:11.654 27000 TIP 444998 16653 6125893 2024-03-01 14:34:31.293 2024-03-01 14:34:31.293 1000 FEE 445068 21019 6125901 2024-03-01 14:35:21.98 2024-03-01 14:35:21.98 3300 FEE 444968 667 6125902 2024-03-01 14:35:21.98 2024-03-01 14:35:21.98 29700 TIP 444968 18232 6125904 2024-03-01 14:35:32.649 2024-03-01 14:35:32.649 1000 FEE 445070 20788 6125947 2024-03-01 14:40:21.694 2024-03-01 14:40:21.694 0 FEE 445076 7675 6125964 2024-03-01 14:41:48.729 2024-03-01 14:41:48.729 90000 FEE 444980 9418 6125965 2024-03-01 14:41:48.729 2024-03-01 14:41:48.729 810000 TIP 444980 20291 6126005 2024-03-01 14:46:52.303 2024-03-01 14:46:52.303 100 FEE 445065 17526 6126006 2024-03-01 14:46:52.303 2024-03-01 14:46:52.303 900 TIP 445065 913 6126013 2024-03-01 14:47:09.274 2024-03-01 14:47:09.274 100 FEE 445052 21338 6126014 2024-03-01 14:47:09.274 2024-03-01 14:47:09.274 900 TIP 445052 1620 6126066 2024-03-01 14:53:03.412 2024-03-01 14:53:03.412 1700 FEE 445077 14080 6126067 2024-03-01 14:53:03.412 2024-03-01 14:53:03.412 15300 TIP 445077 1741 6126092 2024-03-01 14:55:26.506 2024-03-01 14:55:26.506 1000 FEE 445095 1584 6126093 2024-03-01 14:55:46.095 2024-03-01 14:55:46.095 100000 FEE 445096 19154 6126095 2024-03-01 14:55:57.422 2024-03-01 14:55:57.422 1000 FEE 445098 10280 6126116 2024-03-01 14:56:53.052 2024-03-01 14:56:53.052 1700 FEE 445096 733 6126117 2024-03-01 14:56:53.052 2024-03-01 14:56:53.052 15300 TIP 445096 2674 6126122 2024-03-01 14:57:02.829 2024-03-01 14:57:02.829 1000 FEE 445100 12566 6126126 2024-03-01 14:58:28.243 2024-03-01 14:58:28.243 3100 FEE 445098 1833 6126127 2024-03-01 14:58:28.243 2024-03-01 14:58:28.243 27900 TIP 445098 16638 6126136 2024-03-01 14:59:22.263 2024-03-01 14:59:22.263 10000 FEE 444462 6749 6126137 2024-03-01 14:59:22.263 2024-03-01 14:59:22.263 90000 TIP 444462 886 6126144 2024-03-01 15:00:46.316 2024-03-01 15:00:46.316 800 FEE 445097 18243 6126145 2024-03-01 15:00:46.316 2024-03-01 15:00:46.316 7200 TIP 445097 20058 6066589 2024-02-25 20:35:05.429 2024-02-25 20:35:05.429 1000 STREAM 141924 6798 6066601 2024-02-25 20:37:05.393 2024-02-25 20:37:05.393 1000 STREAM 141924 1784 6066606 2024-02-25 20:38:05.395 2024-02-25 20:38:05.395 1000 STREAM 141924 3353 6066650 2024-02-25 20:39:05.413 2024-02-25 20:39:05.413 1000 STREAM 141924 20710 6066660 2024-02-25 20:41:05.421 2024-02-25 20:41:05.421 1000 STREAM 141924 16842 6066665 2024-02-25 20:42:05.407 2024-02-25 20:42:05.407 1000 STREAM 141924 1985 6066679 2024-02-25 20:43:05.394 2024-02-25 20:43:05.394 1000 STREAM 141924 8713 6066680 2024-02-25 20:44:05.413 2024-02-25 20:44:05.413 1000 STREAM 141924 20683 6066684 2024-02-25 20:46:05.434 2024-02-25 20:46:05.434 1000 STREAM 141924 20964 6066727 2024-02-25 20:49:05.453 2024-02-25 20:49:05.453 1000 STREAM 141924 17183 6125790 2024-03-01 14:19:15.468 2024-03-01 14:19:15.468 1000 FEE 445046 1046 6125795 2024-03-01 14:19:55.973 2024-03-01 14:19:55.973 1000 FEE 445047 21254 6125799 2024-03-01 14:20:32.552 2024-03-01 14:20:32.552 2100 FEE 445039 798 6125800 2024-03-01 14:20:32.552 2024-03-01 14:20:32.552 18900 TIP 445039 20022 6125813 2024-03-01 14:21:23.458 2024-03-01 14:21:23.458 500 FEE 445046 11165 6125814 2024-03-01 14:21:23.458 2024-03-01 14:21:23.458 4500 TIP 445046 18769 6125818 2024-03-01 14:21:36.753 2024-03-01 14:21:36.753 10000 FEE 445050 9261 6125820 2024-03-01 14:21:46.66 2024-03-01 14:21:46.66 3100 FEE 445049 618 6125821 2024-03-01 14:21:46.66 2024-03-01 14:21:46.66 27900 TIP 445049 14489 6125825 2024-03-01 14:22:28.71 2024-03-01 14:22:28.71 1000 FEE 445053 19126 6125833 2024-03-01 14:24:16.684 2024-03-01 14:24:16.684 100 FEE 444963 20551 6125834 2024-03-01 14:24:16.684 2024-03-01 14:24:16.684 900 TIP 444963 14909 6125842 2024-03-01 14:26:07.298 2024-03-01 14:26:07.298 3200 FEE 445015 1320 6125843 2024-03-01 14:26:07.298 2024-03-01 14:26:07.298 28800 TIP 445015 20849 6125847 2024-03-01 14:27:22.279 2024-03-01 14:27:22.279 800 FEE 445044 10981 6125848 2024-03-01 14:27:22.279 2024-03-01 14:27:22.279 7200 TIP 445044 716 6125850 2024-03-01 14:27:33.309 2024-03-01 14:27:33.309 5000 FEE 444911 19995 6125851 2024-03-01 14:27:33.309 2024-03-01 14:27:33.309 45000 TIP 444911 19284 6125859 2024-03-01 14:29:07.737 2024-03-01 14:29:07.737 3300 FEE 444911 19320 6125860 2024-03-01 14:29:07.737 2024-03-01 14:29:07.737 29700 TIP 444911 717 6066592 2024-02-25 20:36:05.403 2024-02-25 20:36:05.403 1000 STREAM 141924 11956 6066658 2024-02-25 20:40:05.418 2024-02-25 20:40:05.418 1000 STREAM 141924 1800 6066681 2024-02-25 20:45:05.412 2024-02-25 20:45:05.412 1000 STREAM 141924 18378 6066700 2024-02-25 20:47:05.43 2024-02-25 20:47:05.43 1000 STREAM 141924 20267 6066702 2024-02-25 20:48:05.437 2024-02-25 20:48:05.437 1000 STREAM 141924 9809 6066736 2024-02-25 20:50:05.472 2024-02-25 20:50:05.472 1000 STREAM 141924 5495 6125803 2024-03-01 14:20:55.189 2024-03-01 14:20:55.189 100 FEE 445008 18543 6125804 2024-03-01 14:20:55.189 2024-03-01 14:20:55.189 900 TIP 445008 15196 6125830 2024-03-01 14:23:46.917 2024-03-01 14:23:46.917 1000 FEE 445057 5852 6125832 2024-03-01 14:24:10.291 2024-03-01 14:24:10.291 1000 POLL 444597 1319 6125877 2024-03-01 14:31:42.973 2024-03-01 14:31:42.973 1700 FEE 445058 20854 6125878 2024-03-01 14:31:42.973 2024-03-01 14:31:42.973 15300 TIP 445058 11678 6125883 2024-03-01 14:32:57.881 2024-03-01 14:32:57.881 21000 FEE 445063 4487 6125889 2024-03-01 14:33:59.303 2024-03-01 14:33:59.303 1000 FEE 445066 9426 6125919 2024-03-01 14:38:46.058 2024-03-01 14:38:46.058 1700 FEE 445057 6419 6125920 2024-03-01 14:38:46.058 2024-03-01 14:38:46.058 15300 TIP 445057 929 6125921 2024-03-01 14:38:46.231 2024-03-01 14:38:46.231 1700 FEE 445057 715 6125922 2024-03-01 14:38:46.231 2024-03-01 14:38:46.231 15300 TIP 445057 10016 6125925 2024-03-01 14:38:50.867 2024-03-01 14:38:50.867 3400 FEE 444911 18311 6125926 2024-03-01 14:38:50.867 2024-03-01 14:38:50.867 30600 TIP 444911 18449 6125930 2024-03-01 14:39:05.409 2024-03-01 14:39:05.409 1000 FEE 445074 891 6125934 2024-03-01 14:39:35.48 2024-03-01 14:39:35.48 1700 FEE 445054 9107 6125935 2024-03-01 14:39:35.48 2024-03-01 14:39:35.48 15300 TIP 445054 628 6125980 2024-03-01 14:44:00.973 2024-03-01 14:44:00.973 7600 FEE 445077 16059 6125981 2024-03-01 14:44:00.973 2024-03-01 14:44:00.973 68400 TIP 445077 9084 6125988 2024-03-01 14:45:39.031 2024-03-01 14:45:39.031 1000 FEE 445081 17106 6125999 2024-03-01 14:46:12.263 2024-03-01 14:46:12.263 100 FEE 445057 20464 6126000 2024-03-01 14:46:12.263 2024-03-01 14:46:12.263 900 TIP 445057 5752 6126019 2024-03-01 14:47:21.229 2024-03-01 14:47:21.229 7600 FEE 445081 4798 6126020 2024-03-01 14:47:21.229 2024-03-01 14:47:21.229 68400 TIP 445081 17218 6126025 2024-03-01 14:47:39.004 2024-03-01 14:47:39.004 1600 FEE 445077 1890 6126026 2024-03-01 14:47:39.004 2024-03-01 14:47:39.004 14400 TIP 445077 13544 6126033 2024-03-01 14:48:23.548 2024-03-01 14:48:23.548 1000 FEE 445086 4798 6126036 2024-03-01 14:48:25.169 2024-03-01 14:48:25.169 100 FEE 176370 18517 6126037 2024-03-01 14:48:25.169 2024-03-01 14:48:25.169 900 TIP 176370 21578 6126043 2024-03-01 14:49:38.213 2024-03-01 14:49:38.213 1600 FEE 445085 21540 6126044 2024-03-01 14:49:38.213 2024-03-01 14:49:38.213 14400 TIP 445085 19615 6126058 2024-03-01 14:51:35.409 2024-03-01 14:51:35.409 100 FEE 445088 16848 6126059 2024-03-01 14:51:35.409 2024-03-01 14:51:35.409 900 TIP 445088 8173 6126087 2024-03-01 14:55:12.03 2024-03-01 14:55:12.03 2100 FEE 445073 3461 6126088 2024-03-01 14:55:12.03 2024-03-01 14:55:12.03 18900 TIP 445073 1823 6126099 2024-03-01 14:56:13.345 2024-03-01 14:56:13.345 2100 FEE 445010 18608 6126100 2024-03-01 14:56:13.345 2024-03-01 14:56:13.345 18900 TIP 445010 13587 6126101 2024-03-01 14:56:13.676 2024-03-01 14:56:13.676 2100 FEE 445033 795 6126102 2024-03-01 14:56:13.676 2024-03-01 14:56:13.676 18900 TIP 445033 1000 6126105 2024-03-01 14:56:16.212 2024-03-01 14:56:16.212 2100 FEE 445061 20272 6126106 2024-03-01 14:56:16.212 2024-03-01 14:56:16.212 18900 TIP 445061 21619 6126118 2024-03-01 14:56:53.207 2024-03-01 14:56:53.207 1700 FEE 445096 690 6126119 2024-03-01 14:56:53.207 2024-03-01 14:56:53.207 15300 TIP 445096 20706 6066599 2024-02-25 20:37:05.271 2024-02-25 20:37:05.271 4000 FEE 438605 21575 6066600 2024-02-25 20:37:05.271 2024-02-25 20:37:05.271 36000 TIP 438605 20412 6066622 2024-02-25 20:38:31.657 2024-02-25 20:38:31.657 1000 FEE 438624 4059 6066623 2024-02-25 20:38:31.657 2024-02-25 20:38:31.657 9000 TIP 438624 5961 6066630 2024-02-25 20:38:32.681 2024-02-25 20:38:32.681 1000 FEE 438624 18626 6066631 2024-02-25 20:38:32.681 2024-02-25 20:38:32.681 9000 TIP 438624 9348 6066634 2024-02-25 20:38:33.073 2024-02-25 20:38:33.073 1000 FEE 438624 3439 6066635 2024-02-25 20:38:33.073 2024-02-25 20:38:33.073 9000 TIP 438624 6741 6066638 2024-02-25 20:38:37.415 2024-02-25 20:38:37.415 1000 FEE 438486 647 6066639 2024-02-25 20:38:37.415 2024-02-25 20:38:37.415 9000 TIP 438486 775 6066642 2024-02-25 20:38:38.49 2024-02-25 20:38:38.49 1000 FEE 438486 706 6066643 2024-02-25 20:38:38.49 2024-02-25 20:38:38.49 9000 TIP 438486 18690 6066646 2024-02-25 20:38:39.674 2024-02-25 20:38:39.674 10000 FEE 438607 21119 6066647 2024-02-25 20:38:39.674 2024-02-25 20:38:39.674 90000 TIP 438607 13782 6066657 2024-02-25 20:40:01.592 2024-02-25 20:40:01.592 1000 POLL 438325 20022 6066661 2024-02-25 20:41:40.532 2024-02-25 20:41:40.532 1000 FEE 438367 2444 6066662 2024-02-25 20:41:40.532 2024-02-25 20:41:40.532 9000 TIP 438367 15594 6066663 2024-02-25 20:41:41.797 2024-02-25 20:41:41.797 1000 FEE 438367 14202 6066664 2024-02-25 20:41:41.797 2024-02-25 20:41:41.797 9000 TIP 438367 21417 6066676 2024-02-25 20:42:31.832 2024-02-25 20:42:31.832 1000 FEE 438635 21373 6066685 2024-02-25 20:46:41.263 2024-02-25 20:46:41.263 1000 FEE 438636 21424 6066721 2024-02-25 20:49:02.561 2024-02-25 20:49:02.561 3300 FEE 438448 1221 6066668 2024-02-25 20:42:30.648 2024-02-25 20:42:30.648 1000 FEE 438634 8541 6066669 2024-02-25 20:42:30.648 2024-02-25 20:42:30.648 9000 TIP 438634 17321 6066690 2024-02-25 20:47:00.847 2024-02-25 20:47:00.847 3300 FEE 438604 18664 6066691 2024-02-25 20:47:00.847 2024-02-25 20:47:00.847 29700 TIP 438604 11885 6066704 2024-02-25 20:48:23.976 2024-02-25 20:48:23.976 1000 FEE 438639 7668 6066705 2024-02-25 20:48:34.177 2024-02-25 20:48:34.177 3300 FEE 438631 621 6066706 2024-02-25 20:48:34.177 2024-02-25 20:48:34.177 29700 TIP 438631 21070 6066725 2024-02-25 20:49:04.237 2024-02-25 20:49:04.237 3300 FEE 438448 7983 6066726 2024-02-25 20:49:04.237 2024-02-25 20:49:04.237 29700 TIP 438448 7766 6066749 2024-02-25 20:51:32.967 2024-02-25 20:51:32.967 1000 FEE 438644 2583 6066770 2024-02-25 20:57:41.293 2024-02-25 20:57:41.293 100000 FEE 438649 20616 6066771 2024-02-25 20:57:42.487 2024-02-25 20:57:42.487 2100 FEE 438637 1833 6066772 2024-02-25 20:57:42.487 2024-02-25 20:57:42.487 18900 TIP 438637 946 6066786 2024-02-25 20:58:21.703 2024-02-25 20:58:21.703 1000 FEE 438583 18372 6066787 2024-02-25 20:58:21.703 2024-02-25 20:58:21.703 9000 TIP 438583 3990 6066788 2024-02-25 20:58:28.395 2024-02-25 20:58:28.395 1000 FEE 438652 17568 6066793 2024-02-25 20:59:37.736 2024-02-25 20:59:37.736 2100 FEE 438469 13921 6066794 2024-02-25 20:59:37.736 2024-02-25 20:59:37.736 18900 TIP 438469 16848 6066803 2024-02-25 21:00:50.443 2024-02-25 21:00:50.443 1600 FEE 438492 15890 6066804 2024-02-25 21:00:50.443 2024-02-25 21:00:50.443 14400 TIP 438492 18678 6066809 2024-02-25 21:01:30.886 2024-02-25 21:01:30.886 1000 FEE 438657 18005 6066833 2024-02-25 21:08:47.01 2024-02-25 21:08:47.01 100 FEE 438631 671 6066834 2024-02-25 21:08:47.01 2024-02-25 21:08:47.01 900 TIP 438631 725 6066837 2024-02-25 21:08:48.059 2024-02-25 21:08:48.059 1000 FEE 438664 9276 6066844 2024-02-25 21:09:23.831 2024-02-25 21:09:23.831 900 FEE 438634 15491 6066845 2024-02-25 21:09:23.831 2024-02-25 21:09:23.831 8100 TIP 438634 1673 6066850 2024-02-25 21:09:27.558 2024-02-25 21:09:27.558 100 FEE 438650 15549 6066851 2024-02-25 21:09:27.558 2024-02-25 21:09:27.558 900 TIP 438650 1007 6066871 2024-02-25 21:09:52.551 2024-02-25 21:09:52.551 9000 FEE 438649 679 6066872 2024-02-25 21:09:52.551 2024-02-25 21:09:52.551 81000 TIP 438649 17275 6066875 2024-02-25 21:10:17.029 2024-02-25 21:10:17.029 100 FEE 438651 12930 6066876 2024-02-25 21:10:17.029 2024-02-25 21:10:17.029 900 TIP 438651 20781 6066904 2024-02-25 21:11:49.6 2024-02-25 21:11:49.6 10000 FEE 438619 1195 6066905 2024-02-25 21:11:49.6 2024-02-25 21:11:49.6 90000 TIP 438619 4322 6066911 2024-02-25 21:12:06.869 2024-02-25 21:12:06.869 10000 FEE 438512 7389 6066912 2024-02-25 21:12:06.869 2024-02-25 21:12:06.869 90000 TIP 438512 623 6066927 2024-02-25 21:14:03.974 2024-02-25 21:14:03.974 2100 FEE 438448 17082 6066928 2024-02-25 21:14:03.974 2024-02-25 21:14:03.974 18900 TIP 438448 19888 6066945 2024-02-25 21:15:08.963 2024-02-25 21:15:08.963 2100 FEE 438317 3371 6066946 2024-02-25 21:15:08.963 2024-02-25 21:15:08.963 18900 TIP 438317 13046 6066954 2024-02-25 21:16:03.8 2024-02-25 21:16:03.8 6900 FEE 438451 16176 6066955 2024-02-25 21:16:03.8 2024-02-25 21:16:03.8 62100 TIP 438451 5487 6067014 2024-02-25 21:20:58.934 2024-02-25 21:20:58.934 4000 FEE 438649 683 6067015 2024-02-25 21:20:58.934 2024-02-25 21:20:58.934 36000 TIP 438649 20602 6067023 2024-02-25 21:22:45.468 2024-02-25 21:22:45.468 1000 FEE 438583 16432 6067024 2024-02-25 21:22:45.468 2024-02-25 21:22:45.468 9000 TIP 438583 18511 6067029 2024-02-25 21:22:46.993 2024-02-25 21:22:46.993 7700 FEE 438670 3342 6067030 2024-02-25 21:22:46.993 2024-02-25 21:22:46.993 69300 TIP 438670 17221 6067053 2024-02-25 21:23:11.825 2024-02-25 21:23:11.825 7700 FEE 438670 10393 6067054 2024-02-25 21:23:11.825 2024-02-25 21:23:11.825 69300 TIP 438670 698 6067059 2024-02-25 21:23:12.156 2024-02-25 21:23:12.156 7700 FEE 438670 20564 6067060 2024-02-25 21:23:12.156 2024-02-25 21:23:12.156 69300 TIP 438670 5776 6067063 2024-02-25 21:23:12.504 2024-02-25 21:23:12.504 7700 FEE 438670 20581 6067064 2024-02-25 21:23:12.504 2024-02-25 21:23:12.504 69300 TIP 438670 8544 6067067 2024-02-25 21:23:12.716 2024-02-25 21:23:12.716 7700 FEE 438670 16097 6067068 2024-02-25 21:23:12.716 2024-02-25 21:23:12.716 69300 TIP 438670 14295 6067069 2024-02-25 21:23:12.858 2024-02-25 21:23:12.858 7700 FEE 438670 6594 6067070 2024-02-25 21:23:12.858 2024-02-25 21:23:12.858 69300 TIP 438670 20381 6067089 2024-02-25 21:24:55.416 2024-02-25 21:24:55.416 1000 FEE 438630 11288 6067090 2024-02-25 21:24:55.416 2024-02-25 21:24:55.416 9000 TIP 438630 19854 6067102 2024-02-25 21:25:32.842 2024-02-25 21:25:32.842 2100 FEE 438583 5387 6067103 2024-02-25 21:25:32.842 2024-02-25 21:25:32.842 18900 TIP 438583 5701 6067112 2024-02-25 21:25:37.388 2024-02-25 21:25:37.388 2100 FEE 438065 2513 6067113 2024-02-25 21:25:37.388 2024-02-25 21:25:37.388 18900 TIP 438065 15890 6067122 2024-02-25 21:25:41.085 2024-02-25 21:25:41.085 2100 FEE 438092 12272 6067123 2024-02-25 21:25:41.085 2024-02-25 21:25:41.085 18900 TIP 438092 20614 6067126 2024-02-25 21:25:42.761 2024-02-25 21:25:42.761 2100 FEE 438596 1705 6067127 2024-02-25 21:25:42.761 2024-02-25 21:25:42.761 18900 TIP 438596 20381 6067138 2024-02-25 21:25:47.234 2024-02-25 21:25:47.234 2100 FEE 438487 18664 6067139 2024-02-25 21:25:47.234 2024-02-25 21:25:47.234 18900 TIP 438487 18539 6067167 2024-02-25 21:28:56.499 2024-02-25 21:28:56.499 2100 FEE 438317 10818 6067168 2024-02-25 21:28:56.499 2024-02-25 21:28:56.499 18900 TIP 438317 4831 6067172 2024-02-25 21:29:22.285 2024-02-25 21:29:22.285 2100 FEE 438465 1769 6067173 2024-02-25 21:29:22.285 2024-02-25 21:29:22.285 18900 TIP 438465 14939 6067178 2024-02-25 21:29:24.699 2024-02-25 21:29:24.699 2100 FEE 438390 20745 6067179 2024-02-25 21:29:24.699 2024-02-25 21:29:24.699 18900 TIP 438390 21401 6067206 2024-02-25 21:32:21.109 2024-02-25 21:32:21.109 100 FEE 438668 4173 6067207 2024-02-25 21:32:21.109 2024-02-25 21:32:21.109 900 TIP 438668 14037 6067222 2024-02-25 21:33:54.331 2024-02-25 21:33:54.331 2100 FEE 438454 954 6067223 2024-02-25 21:33:54.331 2024-02-25 21:33:54.331 18900 TIP 438454 14370 6067257 2024-02-25 21:37:56.718 2024-02-25 21:37:56.718 2100 FEE 435944 19394 6067258 2024-02-25 21:37:56.718 2024-02-25 21:37:56.718 18900 TIP 435944 664 6067261 2024-02-25 21:37:57.169 2024-02-25 21:37:57.169 2100 FEE 435944 13903 6067262 2024-02-25 21:37:57.169 2024-02-25 21:37:57.169 18900 TIP 435944 11522 6067271 2024-02-25 21:39:34.801 2024-02-25 21:39:34.801 1000 FEE 438651 1814 6067272 2024-02-25 21:39:34.801 2024-02-25 21:39:34.801 9000 TIP 438651 11862 6067273 2024-02-25 21:39:34.885 2024-02-25 21:39:34.885 1000 FEE 438651 17172 6067274 2024-02-25 21:39:34.885 2024-02-25 21:39:34.885 9000 TIP 438651 15510 6067294 2024-02-25 21:41:54.646 2024-02-25 21:41:54.646 3300 FEE 438443 21455 6067295 2024-02-25 21:41:54.646 2024-02-25 21:41:54.646 29700 TIP 438443 21514 6067329 2024-02-25 21:47:18.414 2024-02-25 21:47:18.414 1000 FEE 438646 711 6067330 2024-02-25 21:47:18.414 2024-02-25 21:47:18.414 9000 TIP 438646 18169 6067386 2024-02-25 21:57:12.235 2024-02-25 21:57:12.235 0 FEE 438692 19148 6067391 2024-02-25 21:57:53.636 2024-02-25 21:57:53.636 800 FEE 438416 6148 6067392 2024-02-25 21:57:53.636 2024-02-25 21:57:53.636 7200 TIP 438416 8508 6067425 2024-02-25 22:02:27.324 2024-02-25 22:02:27.324 2100 FEE 438649 20090 6067426 2024-02-25 22:02:27.324 2024-02-25 22:02:27.324 18900 TIP 438649 20179 6067439 2024-02-25 22:03:10.954 2024-02-25 22:03:10.954 1000 FEE 438704 12779 6067450 2024-02-25 22:04:04.143 2024-02-25 22:04:04.143 1300 FEE 438349 5557 6067451 2024-02-25 22:04:04.143 2024-02-25 22:04:04.143 11700 TIP 438349 9339 6067480 2024-02-25 22:07:38.571 2024-02-25 22:07:38.571 2500 FEE 437922 2390 6067481 2024-02-25 22:07:38.571 2024-02-25 22:07:38.571 22500 TIP 437922 20852 6067500 2024-02-25 22:07:40.561 2024-02-25 22:07:40.561 2500 FEE 437922 12346 6067501 2024-02-25 22:07:40.561 2024-02-25 22:07:40.561 22500 TIP 437922 21022 6066722 2024-02-25 20:49:02.561 2024-02-25 20:49:02.561 29700 TIP 438448 11275 6066741 2024-02-25 20:50:44.567 2024-02-25 20:50:44.567 4000 FEE 438634 19147 6066742 2024-02-25 20:50:44.567 2024-02-25 20:50:44.567 36000 TIP 438634 15690 6066744 2024-02-25 20:50:51.081 2024-02-25 20:50:51.081 1000 FEE 438642 671 6066775 2024-02-25 20:57:54.546 2024-02-25 20:57:54.546 2100 FEE 438624 2195 6066776 2024-02-25 20:57:54.546 2024-02-25 20:57:54.546 18900 TIP 438624 17568 6066818 2024-02-25 21:05:52.664 2024-02-25 21:05:52.664 10000 FEE 438660 2335 6066826 2024-02-25 21:07:05.351 2024-02-25 21:07:05.351 1000 FEE 438634 14122 6066827 2024-02-25 21:07:05.351 2024-02-25 21:07:05.351 9000 TIP 438634 5779 6066846 2024-02-25 21:09:25.525 2024-02-25 21:09:25.525 100 FEE 438663 14950 6066847 2024-02-25 21:09:25.525 2024-02-25 21:09:25.525 900 TIP 438663 18583 6066864 2024-02-25 21:09:33.451 2024-02-25 21:09:33.451 900 FEE 438635 2022 6066865 2024-02-25 21:09:33.451 2024-02-25 21:09:33.451 8100 TIP 438635 21400 6066879 2024-02-25 21:10:17.326 2024-02-25 21:10:17.326 900 FEE 438651 19886 6066880 2024-02-25 21:10:17.326 2024-02-25 21:10:17.326 8100 TIP 438651 8505 6066889 2024-02-25 21:10:36.245 2024-02-25 21:10:36.245 900 FEE 438624 1985 6066890 2024-02-25 21:10:36.245 2024-02-25 21:10:36.245 8100 TIP 438624 18306 6066893 2024-02-25 21:10:50.931 2024-02-25 21:10:50.931 900 FEE 438605 17513 6066894 2024-02-25 21:10:50.931 2024-02-25 21:10:50.931 8100 TIP 438605 895 6066913 2024-02-25 21:12:17.927 2024-02-25 21:12:17.927 2100 FEE 438508 21577 6066914 2024-02-25 21:12:17.927 2024-02-25 21:12:17.927 18900 TIP 438508 1726 6066936 2024-02-25 21:14:32.22 2024-02-25 21:14:32.22 2100 FEE 438393 2537 6066937 2024-02-25 21:14:32.22 2024-02-25 21:14:32.22 18900 TIP 438393 11038 6066974 2024-02-25 21:16:09.289 2024-02-25 21:16:09.289 6900 FEE 438583 20251 6066975 2024-02-25 21:16:09.289 2024-02-25 21:16:09.289 62100 TIP 438583 964 6066978 2024-02-25 21:16:26.015 2024-02-25 21:16:26.015 1000 FEE 438397 2724 6066979 2024-02-25 21:16:26.015 2024-02-25 21:16:26.015 9000 TIP 438397 7185 6066986 2024-02-25 21:17:14.094 2024-02-25 21:17:14.094 1000 FEE 438397 16212 6066987 2024-02-25 21:17:14.094 2024-02-25 21:17:14.094 9000 TIP 438397 1605 6067045 2024-02-25 21:23:10.767 2024-02-25 21:23:10.767 7700 FEE 438670 10591 6067046 2024-02-25 21:23:10.767 2024-02-25 21:23:10.767 69300 TIP 438670 620 6067055 2024-02-25 21:23:11.945 2024-02-25 21:23:11.945 7700 FEE 438670 21262 6067056 2024-02-25 21:23:11.945 2024-02-25 21:23:11.945 69300 TIP 438670 627 6067061 2024-02-25 21:23:12.337 2024-02-25 21:23:12.337 7700 FEE 438670 21556 6067062 2024-02-25 21:23:12.337 2024-02-25 21:23:12.337 69300 TIP 438670 18016 6067078 2024-02-25 21:24:24.052 2024-02-25 21:24:24.052 1000 FEE 438671 1784 6067093 2024-02-25 21:25:04.69 2024-02-25 21:25:04.69 2100 FEE 438649 16282 6067094 2024-02-25 21:25:04.69 2024-02-25 21:25:04.69 18900 TIP 438649 20817 6067134 2024-02-25 21:25:45.748 2024-02-25 21:25:45.748 2100 FEE 438624 18930 6067135 2024-02-25 21:25:45.748 2024-02-25 21:25:45.748 18900 TIP 438624 12139 6067136 2024-02-25 21:25:46.081 2024-02-25 21:25:46.081 2100 FEE 438202 1647 6067137 2024-02-25 21:25:46.081 2024-02-25 21:25:46.081 18900 TIP 438202 19449 6067156 2024-02-25 21:28:13.783 2024-02-25 21:28:13.783 2100 FEE 438637 15408 6067157 2024-02-25 21:28:13.783 2024-02-25 21:28:13.783 18900 TIP 438637 19417 6067180 2024-02-25 21:29:25.19 2024-02-25 21:29:25.19 2100 FEE 438390 12220 6067181 2024-02-25 21:29:25.19 2024-02-25 21:29:25.19 18900 TIP 438390 2195 6067182 2024-02-25 21:30:00.454 2024-02-25 21:30:00.454 100 FEE 438587 733 6067183 2024-02-25 21:30:00.454 2024-02-25 21:30:00.454 900 TIP 438587 9992 6067238 2024-02-25 21:35:44.541 2024-02-25 21:35:44.541 2100 FEE 435944 20715 6067239 2024-02-25 21:35:44.541 2024-02-25 21:35:44.541 18900 TIP 435944 20597 6067247 2024-02-25 21:37:54.86 2024-02-25 21:37:54.86 4200 FEE 435944 19806 6067248 2024-02-25 21:37:54.86 2024-02-25 21:37:54.86 37800 TIP 435944 21072 6067269 2024-02-25 21:39:34.579 2024-02-25 21:39:34.579 1000 FEE 438651 9844 6067270 2024-02-25 21:39:34.579 2024-02-25 21:39:34.579 9000 TIP 438651 7992 6067317 2024-02-25 21:46:54.787 2024-02-25 21:46:54.787 1000 FEE 438683 14278 6067323 2024-02-25 21:47:17.294 2024-02-25 21:47:17.294 1000 FEE 438646 21493 6067324 2024-02-25 21:47:17.294 2024-02-25 21:47:17.294 9000 TIP 438646 9171 6067335 2024-02-25 21:47:18.976 2024-02-25 21:47:18.976 1000 FEE 438646 19826 6067336 2024-02-25 21:47:18.976 2024-02-25 21:47:18.976 9000 TIP 438646 2577 6067345 2024-02-25 21:48:20.092 2024-02-25 21:48:20.092 2700 FEE 438611 9362 6067346 2024-02-25 21:48:20.092 2024-02-25 21:48:20.092 24300 TIP 438611 14152 6067358 2024-02-25 21:49:50.317 2024-02-25 21:49:50.317 21200 FEE 438687 12160 6067359 2024-02-25 21:49:50.317 2024-02-25 21:49:50.317 190800 TIP 438687 20861 6067377 2024-02-25 21:54:55.055 2024-02-25 21:54:55.055 10100 FEE 438397 630 6067378 2024-02-25 21:54:55.055 2024-02-25 21:54:55.055 90900 TIP 438397 11561 6067396 2024-02-25 21:58:52.32 2024-02-25 21:58:52.32 10000 FEE 438694 19854 6067422 2024-02-25 22:02:19.68 2024-02-25 22:02:19.68 1000 FEE 438701 16042 6067442 2024-02-25 22:03:30.055 2024-02-25 22:03:30.055 100000 FEE 438705 4048 6067456 2024-02-25 22:05:04.479 2024-02-25 22:05:04.479 4000 FEE 438702 6360 6067457 2024-02-25 22:05:04.479 2024-02-25 22:05:04.479 36000 TIP 438702 21609 6067458 2024-02-25 22:05:17.671 2024-02-25 22:05:17.671 2100 FEE 438221 6003 6067459 2024-02-25 22:05:17.671 2024-02-25 22:05:17.671 18900 TIP 438221 20972 6067476 2024-02-25 22:07:37.936 2024-02-25 22:07:37.936 2500 FEE 437922 19284 6067477 2024-02-25 22:07:37.936 2024-02-25 22:07:37.936 22500 TIP 437922 4624 6067484 2024-02-25 22:07:38.954 2024-02-25 22:07:38.954 2500 FEE 437922 21238 6067485 2024-02-25 22:07:38.954 2024-02-25 22:07:38.954 22500 TIP 437922 11750 6067496 2024-02-25 22:07:40.134 2024-02-25 22:07:40.134 2500 FEE 437922 992 6067497 2024-02-25 22:07:40.134 2024-02-25 22:07:40.134 22500 TIP 437922 650 6067514 2024-02-25 22:09:12.02 2024-02-25 22:09:12.02 1000 FEE 438709 17798 6067532 2024-02-25 22:14:05.447 2024-02-25 22:14:05.447 7700 FEE 438467 15728 6067533 2024-02-25 22:14:05.447 2024-02-25 22:14:05.447 69300 TIP 438467 9426 6067536 2024-02-25 22:16:03.956 2024-02-25 22:16:03.956 0 FEE 438712 18526 6067549 2024-02-25 22:18:30.548 2024-02-25 22:18:30.548 10000 FEE 438710 8162 6067550 2024-02-25 22:18:30.548 2024-02-25 22:18:30.548 90000 TIP 438710 15196 6067557 2024-02-25 22:20:29.305 2024-02-25 22:20:29.305 3300 FEE 438651 21239 6067558 2024-02-25 22:20:29.305 2024-02-25 22:20:29.305 29700 TIP 438651 18016 6067573 2024-02-25 22:22:15.246 2024-02-25 22:22:15.246 2500 FEE 437284 15510 6067574 2024-02-25 22:22:15.246 2024-02-25 22:22:15.246 22500 TIP 437284 5522 6067588 2024-02-25 22:28:21.876 2024-02-25 22:28:21.876 10000 FEE 438718 9705 6067598 2024-02-25 22:33:02.034 2024-02-25 22:33:02.034 1100 FEE 438515 14688 6067599 2024-02-25 22:33:02.034 2024-02-25 22:33:02.034 9900 TIP 438515 826 6067620 2024-02-25 22:37:47.445 2024-02-25 22:37:47.445 4000 FEE 438719 16259 6067621 2024-02-25 22:37:47.445 2024-02-25 22:37:47.445 36000 TIP 438719 16769 6067635 2024-02-25 22:38:49.845 2024-02-25 22:38:49.845 9000 FEE 438691 994 6067636 2024-02-25 22:38:49.845 2024-02-25 22:38:49.845 81000 TIP 438691 2718 6067654 2024-02-25 22:40:10.408 2024-02-25 22:40:10.408 90000 FEE 438202 19924 6067655 2024-02-25 22:40:10.408 2024-02-25 22:40:10.408 810000 TIP 438202 21275 6067699 2024-02-25 22:46:06.106 2024-02-25 22:46:06.106 1000 FEE 438697 1439 6067700 2024-02-25 22:46:06.106 2024-02-25 22:46:06.106 9000 TIP 438697 8998 6067713 2024-02-25 22:46:21.305 2024-02-25 22:46:21.305 1000 FEE 438057 650 6067714 2024-02-25 22:46:21.305 2024-02-25 22:46:21.305 9000 TIP 438057 6515 6066734 2024-02-25 20:49:58.034 2024-02-25 20:49:58.034 1000 FEE 438624 15703 6066735 2024-02-25 20:49:58.034 2024-02-25 20:49:58.034 9000 TIP 438624 7773 6066739 2024-02-25 20:50:20.531 2024-02-25 20:50:20.531 2500 FEE 438621 1180 6066740 2024-02-25 20:50:20.531 2024-02-25 20:50:20.531 22500 TIP 438621 1483 6066743 2024-02-25 20:50:48.01 2024-02-25 20:50:48.01 1000 FEE 438641 18476 6066777 2024-02-25 20:57:55.255 2024-02-25 20:57:55.255 2100 FEE 438629 836 6066778 2024-02-25 20:57:55.255 2024-02-25 20:57:55.255 18900 TIP 438629 20018 6066790 2024-02-25 20:59:23.871 2024-02-25 20:59:23.871 2100 FEE 438414 17221 6066791 2024-02-25 20:59:23.871 2024-02-25 20:59:23.871 18900 TIP 438414 9844 6066802 2024-02-25 21:00:04.982 2024-02-25 21:00:04.982 1000 FEE 438655 19888 6066822 2024-02-25 21:06:45.633 2024-02-25 21:06:45.633 1000 FEE 438661 1319 6066883 2024-02-25 21:10:23.749 2024-02-25 21:10:23.749 100 FEE 438660 8505 6066884 2024-02-25 21:10:23.749 2024-02-25 21:10:23.749 900 TIP 438660 21589 6066885 2024-02-25 21:10:23.92 2024-02-25 21:10:23.92 900 FEE 438660 21019 6066886 2024-02-25 21:10:23.92 2024-02-25 21:10:23.92 8100 TIP 438660 1105 6066895 2024-02-25 21:10:51.874 2024-02-25 21:10:51.874 9000 FEE 438605 837 6066896 2024-02-25 21:10:51.874 2024-02-25 21:10:51.874 81000 TIP 438605 659 6066909 2024-02-25 21:12:04.112 2024-02-25 21:12:04.112 10000 FEE 438516 20554 6066910 2024-02-25 21:12:04.112 2024-02-25 21:12:04.112 90000 TIP 438516 761 6066919 2024-02-25 21:12:54.96 2024-02-25 21:12:54.96 10000 FEE 438667 14258 6066968 2024-02-25 21:16:08.907 2024-02-25 21:16:08.907 6900 FEE 438583 1652 6066969 2024-02-25 21:16:08.907 2024-02-25 21:16:08.907 62100 TIP 438583 20137 6066970 2024-02-25 21:16:09.021 2024-02-25 21:16:09.021 6900 FEE 438583 917 6066971 2024-02-25 21:16:09.021 2024-02-25 21:16:09.021 62100 TIP 438583 5746 6066980 2024-02-25 21:16:26.982 2024-02-25 21:16:26.982 1000 FEE 438397 11153 6066981 2024-02-25 21:16:26.982 2024-02-25 21:16:26.982 9000 TIP 438397 21539 6066996 2024-02-25 21:17:16.112 2024-02-25 21:17:16.112 1000 FEE 438397 5173 6066997 2024-02-25 21:17:16.112 2024-02-25 21:17:16.112 9000 TIP 438397 17411 6067010 2024-02-25 21:20:51.606 2024-02-25 21:20:51.606 4000 FEE 438486 9367 6067011 2024-02-25 21:20:51.606 2024-02-25 21:20:51.606 36000 TIP 438486 671 6067017 2024-02-25 21:21:21.119 2024-02-25 21:21:21.119 100000 FEE 438670 18378 6067031 2024-02-25 21:22:47.383 2024-02-25 21:22:47.383 1000 FEE 438583 11430 6067032 2024-02-25 21:22:47.383 2024-02-25 21:22:47.383 9000 TIP 438583 20302 6067037 2024-02-25 21:22:51.933 2024-02-25 21:22:51.933 0 FEE 438670 9809 6067079 2024-02-25 21:24:24.161 2024-02-25 21:24:24.161 2100 FEE 438522 9421 6067080 2024-02-25 21:24:24.161 2024-02-25 21:24:24.161 18900 TIP 438522 5519 6067116 2024-02-25 21:25:38.864 2024-02-25 21:25:38.864 2100 FEE 438605 7877 6067117 2024-02-25 21:25:38.864 2024-02-25 21:25:38.864 18900 TIP 438605 17513 6067118 2024-02-25 21:25:39.22 2024-02-25 21:25:39.22 2100 FEE 438390 642 6067119 2024-02-25 21:25:39.22 2024-02-25 21:25:39.22 18900 TIP 438390 2583 6067124 2024-02-25 21:25:42.437 2024-02-25 21:25:42.437 2100 FEE 438209 18828 6067125 2024-02-25 21:25:42.437 2024-02-25 21:25:42.437 18900 TIP 438209 2347 6067143 2024-02-25 21:26:58.555 2024-02-25 21:26:58.555 0 FEE 438670 2609 6067174 2024-02-25 21:29:23.306 2024-02-25 21:29:23.306 2100 FEE 438560 5829 6067175 2024-02-25 21:29:23.306 2024-02-25 21:29:23.306 18900 TIP 438560 21387 6067188 2024-02-25 21:30:23.3 2024-02-25 21:30:23.3 100 FEE 438535 18630 6067189 2024-02-25 21:30:23.3 2024-02-25 21:30:23.3 900 TIP 438535 21218 6067212 2024-02-25 21:32:56.539 2024-02-25 21:32:56.539 2100 FEE 438388 17638 6067213 2024-02-25 21:32:56.539 2024-02-25 21:32:56.539 18900 TIP 438388 13169 6067219 2024-02-25 21:33:36.902 2024-02-25 21:33:36.902 1000 FEE 438676 16309 6067220 2024-02-25 21:33:45.824 2024-02-25 21:33:45.824 2100 FEE 438608 7960 6067221 2024-02-25 21:33:45.824 2024-02-25 21:33:45.824 18900 TIP 438608 2098 6067281 2024-02-25 21:39:46.25 2024-02-25 21:39:46.25 2700 FEE 438657 16059 6067282 2024-02-25 21:39:46.25 2024-02-25 21:39:46.25 24300 TIP 438657 20715 6067285 2024-02-25 21:39:58.892 2024-02-25 21:39:58.892 2700 FEE 438517 20744 6067286 2024-02-25 21:39:58.892 2024-02-25 21:39:58.892 24300 TIP 438517 6471 6067288 2024-02-25 21:40:24.92 2024-02-25 21:40:24.92 21800 FEE 438507 1141 6067289 2024-02-25 21:40:24.92 2024-02-25 21:40:24.92 196200 TIP 438507 19810 6067318 2024-02-25 21:46:56.217 2024-02-25 21:46:56.217 1000 FEE 438684 10668 6067333 2024-02-25 21:47:18.695 2024-02-25 21:47:18.695 1000 FEE 438646 17693 6067334 2024-02-25 21:47:18.695 2024-02-25 21:47:18.695 9000 TIP 438646 9426 6067353 2024-02-25 21:48:26.349 2024-02-25 21:48:26.349 1000 FEE 438688 13574 6067363 2024-02-25 21:50:37.988 2024-02-25 21:50:37.988 4000 FEE 438685 2519 6067364 2024-02-25 21:50:37.988 2024-02-25 21:50:37.988 36000 TIP 438685 21356 6067380 2024-02-25 21:55:48.628 2024-02-25 21:55:48.628 21000 FEE 438691 20120 6067384 2024-02-25 21:56:38.515 2024-02-25 21:56:38.515 0 FEE 438692 9276 6067399 2024-02-25 21:59:03.24 2024-02-25 21:59:03.24 1000 FEE 438696 16447 6067427 2024-02-25 22:02:31.206 2024-02-25 22:02:31.206 2100 FEE 438624 8162 6067428 2024-02-25 22:02:31.206 2024-02-25 22:02:31.206 18900 TIP 438624 21063 6067429 2024-02-25 22:02:41.118 2024-02-25 22:02:41.118 4000 FEE 438696 18372 6067430 2024-02-25 22:02:41.118 2024-02-25 22:02:41.118 36000 TIP 438696 18402 6067434 2024-02-25 22:02:58.598 2024-02-25 22:02:58.598 1000 POLL 438202 15938 6067452 2024-02-25 22:04:42.716 2024-02-25 22:04:42.716 0 FEE 438702 21472 6067475 2024-02-25 22:07:31.806 2024-02-25 22:07:31.806 1000 FEE 438707 14168 6067502 2024-02-25 22:07:40.768 2024-02-25 22:07:40.768 2500 FEE 437922 2098 6067503 2024-02-25 22:07:40.768 2024-02-25 22:07:40.768 22500 TIP 437922 1571 6067526 2024-02-25 22:11:20.495 2024-02-25 22:11:20.495 1000 FEE 438711 14295 6067538 2024-02-25 22:16:54.104 2024-02-25 22:16:54.104 3300 FEE 438451 16842 6067539 2024-02-25 22:16:54.104 2024-02-25 22:16:54.104 29700 TIP 438451 14280 6067543 2024-02-25 22:17:30.743 2024-02-25 22:17:30.743 3300 FEE 438405 1438 6067544 2024-02-25 22:17:30.743 2024-02-25 22:17:30.743 29700 TIP 438405 3506 6067554 2024-02-25 22:19:11.841 2024-02-25 22:19:11.841 0 FEE 438713 6030 6067555 2024-02-25 22:19:24.366 2024-02-25 22:19:24.366 0 FEE 438713 6382 6067559 2024-02-25 22:20:41.036 2024-02-25 22:20:41.036 3300 FEE 438065 3478 6067560 2024-02-25 22:20:41.036 2024-02-25 22:20:41.036 29700 TIP 438065 16348 6067566 2024-02-25 22:21:46.738 2024-02-25 22:21:46.738 1000 FEE 438714 11158 6067571 2024-02-25 22:22:14.812 2024-02-25 22:22:14.812 2500 FEE 437284 10591 6067572 2024-02-25 22:22:14.812 2024-02-25 22:22:14.812 22500 TIP 437284 10102 6067601 2024-02-25 22:33:09.831 2024-02-25 22:33:09.831 1100 FEE 438515 7583 6067602 2024-02-25 22:33:09.831 2024-02-25 22:33:09.831 9900 TIP 438515 20717 6067625 2024-02-25 22:38:03.338 2024-02-25 22:38:03.338 2100 FEE 438607 19622 6067626 2024-02-25 22:38:03.338 2024-02-25 22:38:03.338 18900 TIP 438607 20585 6067637 2024-02-25 22:39:02.053 2024-02-25 22:39:02.053 1000 FEE 438721 8945 6067647 2024-02-25 22:39:51.315 2024-02-25 22:39:51.315 2100 FEE 438630 20691 6067648 2024-02-25 22:39:51.315 2024-02-25 22:39:51.315 18900 TIP 438630 706 6067662 2024-02-25 22:40:32.266 2024-02-25 22:40:32.266 9000 FEE 438209 10818 6067663 2024-02-25 22:40:32.266 2024-02-25 22:40:32.266 81000 TIP 438209 21371 6067666 2024-02-25 22:40:39.38 2024-02-25 22:40:39.38 90000 FEE 438390 4819 6067667 2024-02-25 22:40:39.38 2024-02-25 22:40:39.38 810000 TIP 438390 20646 6067682 2024-02-25 22:42:13.425 2024-02-25 22:42:13.425 1000 FEE 438722 19501 6067688 2024-02-25 22:45:02.528 2024-02-25 22:45:02.528 100 FEE 438649 8173 6067689 2024-02-25 22:45:02.528 2024-02-25 22:45:02.528 900 TIP 438649 1008 6067701 2024-02-25 22:46:12.159 2024-02-25 22:46:12.159 1000 FEE 438334 17091 6067702 2024-02-25 22:46:12.159 2024-02-25 22:46:12.159 9000 TIP 438334 15510 6067709 2024-02-25 22:46:12.761 2024-02-25 22:46:12.761 1000 FEE 438334 19458 6067710 2024-02-25 22:46:12.761 2024-02-25 22:46:12.761 9000 TIP 438334 19810 6066759 2024-02-25 20:55:03.515 2024-02-25 20:55:03.515 1000 STREAM 141924 19375 6066765 2024-02-25 20:56:03.526 2024-02-25 20:56:03.526 1000 STREAM 141924 1245 6066779 2024-02-25 20:58:03.551 2024-02-25 20:58:03.551 1000 STREAM 141924 1576 6066819 2024-02-25 21:06:03.966 2024-02-25 21:06:03.966 1000 STREAM 141924 16769 6066832 2024-02-25 21:08:03.964 2024-02-25 21:08:03.964 1000 STREAM 141924 21458 6066901 2024-02-25 21:11:04.007 2024-02-25 21:11:04.007 1000 STREAM 141924 20691 6066908 2024-02-25 21:12:04.024 2024-02-25 21:12:04.024 1000 STREAM 141924 9365 6066922 2024-02-25 21:13:03.998 2024-02-25 21:13:03.998 1000 STREAM 141924 17741 6067007 2024-02-25 21:20:02.951 2024-02-25 21:20:02.951 1000 STREAM 141924 16177 6067073 2024-02-25 21:24:05.168 2024-02-25 21:24:05.168 1000 STREAM 141924 16998 6067201 2024-02-25 21:32:03.493 2024-02-25 21:32:03.493 1000 STREAM 141924 1631 6125826 2024-03-01 14:23:02.607 2024-03-01 14:23:02.607 1000 STREAM 141924 21040 6125870 2024-03-01 14:31:02.668 2024-03-01 14:31:02.668 1000 STREAM 141924 9378 6125884 2024-03-01 14:33:02.692 2024-03-01 14:33:02.692 1000 STREAM 141924 13348 6066789 2024-02-25 20:59:04.876 2024-02-25 20:59:04.876 1000 STREAM 141924 987 6066807 2024-02-25 21:01:04.88 2024-02-25 21:01:04.88 1000 STREAM 141924 738 6066985 2024-02-25 21:17:03.194 2024-02-25 21:17:03.194 1000 STREAM 141924 11158 6067001 2024-02-25 21:18:03.199 2024-02-25 21:18:03.199 1000 STREAM 141924 16839 6067002 2024-02-25 21:19:03.207 2024-02-25 21:19:03.207 1000 STREAM 141924 19105 6067095 2024-02-25 21:25:04.715 2024-02-25 21:25:04.715 1000 STREAM 141924 15336 6067142 2024-02-25 21:26:04.716 2024-02-25 21:26:04.716 1000 STREAM 141924 21090 6067155 2024-02-25 21:28:04.73 2024-02-25 21:28:04.73 1000 STREAM 141924 5746 6067184 2024-02-25 21:30:04.748 2024-02-25 21:30:04.748 1000 STREAM 141924 7809 6067299 2024-02-25 21:44:03.049 2024-02-25 21:44:03.049 1000 STREAM 141924 1122 6067315 2024-02-25 21:45:03.047 2024-02-25 21:45:03.047 1000 STREAM 141924 13217 6067316 2024-02-25 21:46:03.049 2024-02-25 21:46:03.049 1000 STREAM 141924 1733 6067320 2024-02-25 21:47:03.069 2024-02-25 21:47:03.069 1000 STREAM 141924 18862 6067341 2024-02-25 21:48:03.079 2024-02-25 21:48:03.079 1000 STREAM 141924 16965 6067473 2024-02-25 22:07:03.934 2024-02-25 22:07:03.934 1000 STREAM 141924 5520 6067513 2024-02-25 22:09:01.954 2024-02-25 22:09:01.954 1000 STREAM 141924 18784 6067525 2024-02-25 22:11:01.985 2024-02-25 22:11:01.985 1000 STREAM 141924 20377 6067528 2024-02-25 22:13:01.973 2024-02-25 22:13:01.973 1000 STREAM 141924 6499 6067537 2024-02-25 22:16:03.997 2024-02-25 22:16:03.997 1000 STREAM 141924 5522 6067545 2024-02-25 22:18:01.996 2024-02-25 22:18:01.996 1000 STREAM 141924 20090 6067553 2024-02-25 22:19:03.997 2024-02-25 22:19:03.997 1000 STREAM 141924 18828 6067587 2024-02-25 22:28:02.035 2024-02-25 22:28:02.035 1000 STREAM 141924 1490 6067595 2024-02-25 22:32:02.066 2024-02-25 22:32:02.066 1000 STREAM 141924 636 6067605 2024-02-25 22:34:02.073 2024-02-25 22:34:02.073 1000 STREAM 141924 19878 6067624 2024-02-25 22:38:02.095 2024-02-25 22:38:02.095 1000 STREAM 141924 15488 6067649 2024-02-25 22:40:02.169 2024-02-25 22:40:02.169 1000 STREAM 141924 4984 6066801 2024-02-25 21:00:04.901 2024-02-25 21:00:04.901 1000 STREAM 141924 16543 6066812 2024-02-25 21:02:04.891 2024-02-25 21:02:04.891 1000 STREAM 141924 21393 6066813 2024-02-25 21:03:04.887 2024-02-25 21:03:04.887 1000 STREAM 141924 19661 6066816 2024-02-25 21:04:05.031 2024-02-25 21:04:05.031 1000 STREAM 141924 5825 6066817 2024-02-25 21:05:05.039 2024-02-25 21:05:05.039 1000 STREAM 141924 1890 6066949 2024-02-25 21:16:03.171 2024-02-25 21:16:03.171 1000 STREAM 141924 15196 6067016 2024-02-25 21:21:03.21 2024-02-25 21:21:03.21 1000 STREAM 141924 1618 6067040 2024-02-25 21:23:04.704 2024-02-25 21:23:04.704 1000 STREAM 141924 5809 6067148 2024-02-25 21:27:04.722 2024-02-25 21:27:04.722 1000 STREAM 141924 8713 6067171 2024-02-25 21:29:04.731 2024-02-25 21:29:04.731 1000 STREAM 141924 18453 6067226 2024-02-25 21:34:05.557 2024-02-25 21:34:05.557 1000 STREAM 141924 4502 6067227 2024-02-25 21:35:03.578 2024-02-25 21:35:03.578 1000 STREAM 141924 8945 6067240 2024-02-25 21:36:05.613 2024-02-25 21:36:05.613 1000 STREAM 141924 19785 6067265 2024-02-25 21:38:02.943 2024-02-25 21:38:02.943 1000 STREAM 141924 20642 6067287 2024-02-25 21:40:02.953 2024-02-25 21:40:02.953 1000 STREAM 141924 13399 6067291 2024-02-25 21:41:02.964 2024-02-25 21:41:02.964 1000 STREAM 141924 12921 6067296 2024-02-25 21:42:02.98 2024-02-25 21:42:02.98 1000 STREAM 141924 20816 6067297 2024-02-25 21:43:03.011 2024-02-25 21:43:03.011 1000 STREAM 141924 715 6067357 2024-02-25 21:49:03.086 2024-02-25 21:49:03.086 1000 STREAM 141924 5522 6067369 2024-02-25 21:51:03.121 2024-02-25 21:51:03.121 1000 STREAM 141924 19501 6125840 2024-03-01 14:26:00.261 2024-03-01 14:26:00.261 1000 FEE 445060 20182 6125844 2024-03-01 14:26:34.773 2024-03-01 14:26:34.773 1600 FEE 445042 889 6125845 2024-03-01 14:26:34.773 2024-03-01 14:26:34.773 14400 TIP 445042 16052 6125849 2024-03-01 14:27:29.862 2024-03-01 14:27:29.862 10000 FEE 445061 17221 6125873 2024-03-01 14:31:41.564 2024-03-01 14:31:41.564 1700 FEE 445062 6149 6125874 2024-03-01 14:31:41.564 2024-03-01 14:31:41.564 15300 TIP 445062 1352 6125879 2024-03-01 14:31:43.135 2024-03-01 14:31:43.135 1700 FEE 445058 21172 6125880 2024-03-01 14:31:43.135 2024-03-01 14:31:43.135 15300 TIP 445058 21062 6125885 2024-03-01 14:33:07.064 2024-03-01 14:33:07.064 1000 FEE 445064 2609 6125890 2024-03-01 14:34:00.74 2024-03-01 14:34:00.74 1000 FEE 445067 4250 6125905 2024-03-01 14:35:40.37 2024-03-01 14:35:40.37 7600 FEE 445053 3745 6125906 2024-03-01 14:35:40.37 2024-03-01 14:35:40.37 68400 TIP 445053 7675 6125916 2024-03-01 14:38:17.079 2024-03-01 14:38:17.079 1000 FEE 445003 19103 6125917 2024-03-01 14:38:17.079 2024-03-01 14:38:17.079 9000 TIP 445003 11298 6125918 2024-03-01 14:38:25.069 2024-03-01 14:38:25.069 210000 FEE 445073 18392 6125931 2024-03-01 14:39:28.304 2024-03-01 14:39:28.304 10000 FEE 445075 1307 6125932 2024-03-01 14:39:35.307 2024-03-01 14:39:35.307 1700 FEE 445054 19094 6125933 2024-03-01 14:39:35.307 2024-03-01 14:39:35.307 15300 TIP 445054 18265 6125952 2024-03-01 14:40:36.323 2024-03-01 14:40:36.323 1000 FEE 444837 21421 6125953 2024-03-01 14:40:36.323 2024-03-01 14:40:36.323 9000 TIP 444837 782 6125960 2024-03-01 14:41:25.642 2024-03-01 14:41:25.642 1000 FEE 444998 19459 6125961 2024-03-01 14:41:25.642 2024-03-01 14:41:25.642 9000 TIP 444998 18270 6125973 2024-03-01 14:42:09.533 2024-03-01 14:42:09.533 100 FEE 444968 14381 6125974 2024-03-01 14:42:09.533 2024-03-01 14:42:09.533 900 TIP 444968 19842 6126015 2024-03-01 14:47:15.306 2024-03-01 14:47:15.306 100 FEE 445051 18321 6126016 2024-03-01 14:47:15.306 2024-03-01 14:47:15.306 900 TIP 445051 3400 6126034 2024-03-01 14:48:24.814 2024-03-01 14:48:24.814 100 FEE 445036 19007 6126035 2024-03-01 14:48:24.814 2024-03-01 14:48:24.814 900 TIP 445036 766 6126040 2024-03-01 14:49:19.8 2024-03-01 14:49:19.8 100 FEE 445011 669 6126041 2024-03-01 14:49:19.8 2024-03-01 14:49:19.8 900 TIP 445011 16562 6126045 2024-03-01 14:49:46.263 2024-03-01 14:49:46.263 7700 FEE 445077 17014 6126046 2024-03-01 14:49:46.263 2024-03-01 14:49:46.263 69300 TIP 445077 1609 6126051 2024-03-01 14:50:49.097 2024-03-01 14:50:49.097 1000 FEE 445090 9150 6126068 2024-03-01 14:53:03.539 2024-03-01 14:53:03.539 1700 FEE 445077 1209 6126069 2024-03-01 14:53:03.539 2024-03-01 14:53:03.539 15300 TIP 445077 17091 6126075 2024-03-01 14:53:16.423 2024-03-01 14:53:16.423 1000 FEE 445087 17321 6126076 2024-03-01 14:53:16.423 2024-03-01 14:53:16.423 9000 TIP 445087 16432 6126079 2024-03-01 14:53:24.898 2024-03-01 14:53:24.898 1000 FEE 444931 1135 6126080 2024-03-01 14:53:24.898 2024-03-01 14:53:24.898 9000 TIP 444931 11609 6126103 2024-03-01 14:56:14.111 2024-03-01 14:56:14.111 2100 FEE 445060 21453 6126104 2024-03-01 14:56:14.111 2024-03-01 14:56:14.111 18900 TIP 445060 15160 6126140 2024-03-01 14:59:22.882 2024-03-01 14:59:22.882 27900 FEE 445077 1576 6126141 2024-03-01 14:59:22.882 2024-03-01 14:59:22.882 251100 TIP 445077 19806 6066825 2024-02-25 21:07:03.973 2024-02-25 21:07:03.973 1000 STREAM 141924 19289 6066840 2024-02-25 21:09:03.985 2024-02-25 21:09:03.985 1000 STREAM 141924 17838 6066873 2024-02-25 21:10:04.031 2024-02-25 21:10:04.031 1000 STREAM 141924 13921 6066929 2024-02-25 21:14:04.008 2024-02-25 21:14:04.008 1000 STREAM 141924 18454 6067020 2024-02-25 21:22:02.957 2024-02-25 21:22:02.957 1000 STREAM 141924 17171 6125868 2024-03-01 14:30:27.845 2024-03-01 14:30:27.845 10000 FEE 444973 684 6125869 2024-03-01 14:30:27.845 2024-03-01 14:30:27.845 90000 TIP 444973 20756 6125899 2024-03-01 14:35:07.803 2024-03-01 14:35:07.803 7600 FEE 445053 16347 6125900 2024-03-01 14:35:07.803 2024-03-01 14:35:07.803 68400 TIP 445053 9496 6125908 2024-03-01 14:36:13.03 2024-03-01 14:36:13.03 2100 FEE 445023 17639 6125909 2024-03-01 14:36:13.03 2024-03-01 14:36:13.03 18900 TIP 445023 11263 6125914 2024-03-01 14:38:11.829 2024-03-01 14:38:11.829 1000 FEE 444968 2022 6125915 2024-03-01 14:38:11.829 2024-03-01 14:38:11.829 9000 TIP 444968 8541 6125923 2024-03-01 14:38:50.093 2024-03-01 14:38:50.093 3400 FEE 444911 699 6125924 2024-03-01 14:38:50.093 2024-03-01 14:38:50.093 30600 TIP 444911 21239 6125944 2024-03-01 14:40:06.059 2024-03-01 14:40:06.059 0 FEE 445076 21400 6125945 2024-03-01 14:40:15.44 2024-03-01 14:40:15.44 1000 FEE 444858 18769 6125946 2024-03-01 14:40:15.44 2024-03-01 14:40:15.44 9000 TIP 444858 19151 6125958 2024-03-01 14:41:17.063 2024-03-01 14:41:17.063 3200 FEE 445075 1738 6125959 2024-03-01 14:41:17.063 2024-03-01 14:41:17.063 28800 TIP 445075 19333 6125966 2024-03-01 14:41:51.652 2024-03-01 14:41:51.652 1000 FEE 444998 13076 6125967 2024-03-01 14:41:51.652 2024-03-01 14:41:51.652 9000 TIP 444998 5497 6125968 2024-03-01 14:41:52.293 2024-03-01 14:41:52.293 10000 FEE 445034 20745 6125969 2024-03-01 14:41:52.293 2024-03-01 14:41:52.293 90000 TIP 445034 20511 6125996 2024-03-01 14:45:51.662 2024-03-01 14:45:51.662 1000 FEE 445040 11609 6125997 2024-03-01 14:45:51.662 2024-03-01 14:45:51.662 9000 TIP 445040 12272 6126052 2024-03-01 14:51:00.175 2024-03-01 14:51:00.175 1000 FEE 445091 657 6126061 2024-03-01 14:52:01.641 2024-03-01 14:52:01.641 1000 FEE 444896 18344 6126062 2024-03-01 14:52:01.641 2024-03-01 14:52:01.641 9000 TIP 444896 20680 6126065 2024-03-01 14:53:00.875 2024-03-01 14:53:00.875 1000 FEE 445094 17927 6126077 2024-03-01 14:53:23.495 2024-03-01 14:53:23.495 300 FEE 445088 18306 6126078 2024-03-01 14:53:23.495 2024-03-01 14:53:23.495 2700 TIP 445088 17041 6126091 2024-03-01 14:55:19.884 2024-03-01 14:55:19.884 77000 DONT_LIKE_THIS 445067 761 6126114 2024-03-01 14:56:52.933 2024-03-01 14:56:52.933 1700 FEE 445096 2196 6126115 2024-03-01 14:56:52.933 2024-03-01 14:56:52.933 15300 TIP 445096 1723 6126131 2024-03-01 14:59:00.144 2024-03-01 14:59:00.144 7700 FEE 445100 1038 6126132 2024-03-01 14:59:00.144 2024-03-01 14:59:00.144 69300 TIP 445100 18815 6126138 2024-03-01 14:59:22.746 2024-03-01 14:59:22.746 3100 FEE 445077 19961 6126139 2024-03-01 14:59:22.746 2024-03-01 14:59:22.746 27900 TIP 445077 632 6126153 2024-03-01 15:02:23.094 2024-03-01 15:02:23.094 1000 FEE 445105 7818 6066902 2024-02-25 21:11:09.983 2024-02-25 21:11:09.983 9000 FEE 438596 12808 6066903 2024-02-25 21:11:09.983 2024-02-25 21:11:09.983 81000 TIP 438596 750 6066925 2024-02-25 21:13:06.572 2024-02-25 21:13:06.572 2100 FEE 438604 19488 6066926 2024-02-25 21:13:06.572 2024-02-25 21:13:06.572 18900 TIP 438604 10530 6066947 2024-02-25 21:15:12.05 2024-02-25 21:15:12.05 2100 FEE 438317 14202 6066948 2024-02-25 21:15:12.05 2024-02-25 21:15:12.05 18900 TIP 438317 20560 6066998 2024-02-25 21:17:16.906 2024-02-25 21:17:16.906 1000 FEE 438397 6164 6066999 2024-02-25 21:17:16.906 2024-02-25 21:17:16.906 9000 TIP 438397 21481 6067021 2024-02-25 21:22:38.328 2024-02-25 21:22:38.328 0 FEE 438670 20454 6067057 2024-02-25 21:23:12.053 2024-02-25 21:23:12.053 7700 FEE 438670 13587 6067058 2024-02-25 21:23:12.053 2024-02-25 21:23:12.053 69300 TIP 438670 13927 6067076 2024-02-25 21:24:09.683 2024-02-25 21:24:09.683 2100 FEE 438660 18829 6067077 2024-02-25 21:24:09.683 2024-02-25 21:24:09.683 18900 TIP 438660 9992 6067085 2024-02-25 21:24:54.303 2024-02-25 21:24:54.303 1000 FEE 438630 21506 6067086 2024-02-25 21:24:54.303 2024-02-25 21:24:54.303 9000 TIP 438630 12821 6067087 2024-02-25 21:24:54.881 2024-02-25 21:24:54.881 1000 FEE 438630 11164 6067088 2024-02-25 21:24:54.881 2024-02-25 21:24:54.881 9000 TIP 438630 4128 6067110 2024-02-25 21:25:36.958 2024-02-25 21:25:36.958 2100 FEE 438317 4167 6067111 2024-02-25 21:25:36.958 2024-02-25 21:25:36.958 18900 TIP 438317 5293 6067144 2024-02-25 21:27:00.116 2024-02-25 21:27:00.116 4000 FEE 438670 17226 6067145 2024-02-25 21:27:00.116 2024-02-25 21:27:00.116 36000 TIP 438670 8269 6067153 2024-02-25 21:27:36.269 2024-02-25 21:27:36.269 2100 FEE 438605 676 6067154 2024-02-25 21:27:36.269 2024-02-25 21:27:36.269 18900 TIP 438605 21575 6067160 2024-02-25 21:28:19.446 2024-02-25 21:28:19.446 2100 FEE 438653 15890 6067161 2024-02-25 21:28:19.446 2024-02-25 21:28:19.446 18900 TIP 438653 11523 6067162 2024-02-25 21:28:20.523 2024-02-25 21:28:20.523 2100 FEE 438637 16059 6067163 2024-02-25 21:28:20.523 2024-02-25 21:28:20.523 18900 TIP 438637 19759 6067166 2024-02-25 21:28:44.567 2024-02-25 21:28:44.567 15000 FEE 438674 9833 6067169 2024-02-25 21:28:58.979 2024-02-25 21:28:58.979 2100 FEE 438317 18372 6067170 2024-02-25 21:28:58.979 2024-02-25 21:28:58.979 18900 TIP 438317 1064 6067185 2024-02-25 21:30:05.699 2024-02-25 21:30:05.699 7700 FEE 438629 4177 6067186 2024-02-25 21:30:05.699 2024-02-25 21:30:05.699 69300 TIP 438629 12278 6067197 2024-02-25 21:31:15.857 2024-02-25 21:31:15.857 1000 POLL 438325 5175 6067200 2024-02-25 21:31:34.503 2024-02-25 21:31:34.503 1000 FEE 438675 20243 6067208 2024-02-25 21:32:54.898 2024-02-25 21:32:54.898 2100 FEE 438388 16354 6067209 2024-02-25 21:32:54.898 2024-02-25 21:32:54.898 18900 TIP 438388 647 6067210 2024-02-25 21:32:56.359 2024-02-25 21:32:56.359 2100 FEE 438388 5590 6067211 2024-02-25 21:32:56.359 2024-02-25 21:32:56.359 18900 TIP 438388 6687 6067234 2024-02-25 21:35:44.198 2024-02-25 21:35:44.198 2100 FEE 435944 2075 6067235 2024-02-25 21:35:44.198 2024-02-25 21:35:44.198 18900 TIP 435944 13854 6067236 2024-02-25 21:35:44.388 2024-02-25 21:35:44.388 2100 FEE 435944 1567 6067237 2024-02-25 21:35:44.388 2024-02-25 21:35:44.388 18900 TIP 435944 1800 6067245 2024-02-25 21:37:42.438 2024-02-25 21:37:42.438 100 FEE 438575 5759 6067246 2024-02-25 21:37:42.438 2024-02-25 21:37:42.438 900 TIP 438575 16542 6067251 2024-02-25 21:37:55.941 2024-02-25 21:37:55.941 2100 FEE 435944 18873 6067252 2024-02-25 21:37:55.941 2024-02-25 21:37:55.941 18900 TIP 435944 630 6067277 2024-02-25 21:39:42.37 2024-02-25 21:39:42.37 2700 FEE 438672 5500 6067278 2024-02-25 21:39:42.37 2024-02-25 21:39:42.37 24300 TIP 438672 19259 6067300 2024-02-25 21:44:12.929 2024-02-25 21:44:12.929 1000 FEE 438680 3717 6067311 2024-02-25 21:44:46.198 2024-02-25 21:44:46.198 2700 FEE 438507 4763 6067312 2024-02-25 21:44:46.198 2024-02-25 21:44:46.198 24300 TIP 438507 2151 6067313 2024-02-25 21:44:46.648 2024-02-25 21:44:46.648 2700 FEE 438507 21480 6067314 2024-02-25 21:44:46.648 2024-02-25 21:44:46.648 24300 TIP 438507 763 6067340 2024-02-25 21:47:38.764 2024-02-25 21:47:38.764 1000 FEE 438686 21103 6066982 2024-02-25 21:16:27.845 2024-02-25 21:16:27.845 1000 FEE 438397 9341 6066983 2024-02-25 21:16:27.845 2024-02-25 21:16:27.845 9000 TIP 438397 17713 6067038 2024-02-25 21:22:55.437 2024-02-25 21:22:55.437 100 FEE 438405 21540 6067039 2024-02-25 21:22:55.437 2024-02-25 21:22:55.437 900 TIP 438405 9655 6067043 2024-02-25 21:23:10.63 2024-02-25 21:23:10.63 7700 FEE 438670 18690 6067044 2024-02-25 21:23:10.63 2024-02-25 21:23:10.63 69300 TIP 438670 18815 6067065 2024-02-25 21:23:12.608 2024-02-25 21:23:12.608 7700 FEE 438670 700 6067066 2024-02-25 21:23:12.608 2024-02-25 21:23:12.608 69300 TIP 438670 913 6067081 2024-02-25 21:24:48.144 2024-02-25 21:24:48.144 2100 FEE 438670 21365 6067082 2024-02-25 21:24:48.144 2024-02-25 21:24:48.144 18900 TIP 438670 20646 6067099 2024-02-25 21:25:17.637 2024-02-25 21:25:17.637 1000 FEE 438672 10771 6067132 2024-02-25 21:25:44.578 2024-02-25 21:25:44.578 2100 FEE 438438 2703 6067133 2024-02-25 21:25:44.578 2024-02-25 21:25:44.578 18900 TIP 438438 20647 6067158 2024-02-25 21:28:14.548 2024-02-25 21:28:14.548 2100 FEE 438637 20701 6067159 2024-02-25 21:28:14.548 2024-02-25 21:28:14.548 18900 TIP 438637 4064 6067164 2024-02-25 21:28:21.071 2024-02-25 21:28:21.071 2100 FEE 438637 21455 6067165 2024-02-25 21:28:21.071 2024-02-25 21:28:21.071 18900 TIP 438637 1740 6067176 2024-02-25 21:29:24.135 2024-02-25 21:29:24.135 100 FEE 438471 13517 6067177 2024-02-25 21:29:24.135 2024-02-25 21:29:24.135 900 TIP 438471 9276 6067192 2024-02-25 21:30:36.923 2024-02-25 21:30:36.923 1000 POLL 438414 21619 6067198 2024-02-25 21:31:22.933 2024-02-25 21:31:22.933 5000 FEE 438325 20892 6067199 2024-02-25 21:31:22.933 2024-02-25 21:31:22.933 45000 TIP 438325 10283 6067241 2024-02-25 21:36:34.761 2024-02-25 21:36:34.761 100 FEE 438569 11798 6067242 2024-02-25 21:36:34.761 2024-02-25 21:36:34.761 900 TIP 438569 21600 6067249 2024-02-25 21:37:55.521 2024-02-25 21:37:55.521 2100 FEE 435944 20153 6067250 2024-02-25 21:37:55.521 2024-02-25 21:37:55.521 18900 TIP 435944 1208 6067290 2024-02-25 21:40:40.745 2024-02-25 21:40:40.745 1000 FEE 438678 7979 6067342 2024-02-25 21:48:07.707 2024-02-25 21:48:07.707 100000 FEE 438687 21571 6067343 2024-02-25 21:48:19.874 2024-02-25 21:48:19.874 2700 FEE 438611 827 6067344 2024-02-25 21:48:19.874 2024-02-25 21:48:19.874 24300 TIP 438611 7760 6067349 2024-02-25 21:48:20.468 2024-02-25 21:48:20.468 2700 FEE 438611 19126 6067350 2024-02-25 21:48:20.468 2024-02-25 21:48:20.468 24300 TIP 438611 13544 6067382 2024-02-25 21:56:15.713 2024-02-25 21:56:15.713 1000 FEE 438692 16126 6067402 2024-02-25 21:59:27.828 2024-02-25 21:59:27.828 700 FEE 438467 2330 6067403 2024-02-25 21:59:27.828 2024-02-25 21:59:27.828 6300 TIP 438467 21323 6067415 2024-02-25 22:01:51.506 2024-02-25 22:01:51.506 2100 FEE 438611 15103 6067416 2024-02-25 22:01:51.506 2024-02-25 22:01:51.506 18900 TIP 438611 4259 6067423 2024-02-25 22:02:22.793 2024-02-25 22:02:22.793 4000 FEE 438699 8416 6067424 2024-02-25 22:02:22.793 2024-02-25 22:02:22.793 36000 TIP 438699 691 6067431 2024-02-25 22:02:50.485 2024-02-25 22:02:50.485 1000 FEE 438702 11698 6067443 2024-02-25 22:03:39.47 2024-02-25 22:03:39.47 2100 FEE 438209 2741 6067444 2024-02-25 22:03:39.47 2024-02-25 22:03:39.47 18900 TIP 438209 10698 6067460 2024-02-25 22:05:31.321 2024-02-25 22:05:31.321 0 FEE 438702 8926 6067468 2024-02-25 22:06:45.866 2024-02-25 22:06:45.866 2100 FEE 438621 9427 6067018 2024-02-25 21:21:37.859 2024-02-25 21:21:37.859 1000 FEE 438670 11298 6067019 2024-02-25 21:21:37.859 2024-02-25 21:21:37.859 9000 TIP 438670 21332 6067022 2024-02-25 21:22:41.436 2024-02-25 21:22:41.436 1000 POLL 438202 631 6067025 2024-02-25 21:22:45.98 2024-02-25 21:22:45.98 1000 FEE 438583 20163 6067026 2024-02-25 21:22:45.98 2024-02-25 21:22:45.98 9000 TIP 438583 18837 6067027 2024-02-25 21:22:46.704 2024-02-25 21:22:46.704 1000 FEE 438583 5387 6067028 2024-02-25 21:22:46.704 2024-02-25 21:22:46.704 9000 TIP 438583 794 6067035 2024-02-25 21:22:49.565 2024-02-25 21:22:49.565 7700 FEE 438670 782 6067036 2024-02-25 21:22:49.565 2024-02-25 21:22:49.565 69300 TIP 438670 18809 6067041 2024-02-25 21:23:10.366 2024-02-25 21:23:10.366 7700 FEE 438670 10056 6067042 2024-02-25 21:23:10.366 2024-02-25 21:23:10.366 69300 TIP 438670 10291 6067074 2024-02-25 21:24:07.103 2024-02-25 21:24:07.103 2100 FEE 438651 9336 6067075 2024-02-25 21:24:07.103 2024-02-25 21:24:07.103 18900 TIP 438651 17183 6067098 2024-02-25 21:25:12.672 2024-02-25 21:25:12.672 0 FEE 438670 20861 6067108 2024-02-25 21:25:36.2 2024-02-25 21:25:36.2 2100 FEE 438325 859 6067109 2024-02-25 21:25:36.2 2024-02-25 21:25:36.2 18900 TIP 438325 19036 6067120 2024-02-25 21:25:40.778 2024-02-25 21:25:40.778 2100 FEE 438519 21527 6067121 2024-02-25 21:25:40.778 2024-02-25 21:25:40.778 18900 TIP 438519 19735 6067128 2024-02-25 21:25:43.077 2024-02-25 21:25:43.077 2100 FEE 438611 18040 6067129 2024-02-25 21:25:43.077 2024-02-25 21:25:43.077 18900 TIP 438611 8508 6067140 2024-02-25 21:25:47.548 2024-02-25 21:25:47.548 2100 FEE 438651 18068 6067141 2024-02-25 21:25:47.548 2024-02-25 21:25:47.548 18900 TIP 438651 21119 6067151 2024-02-25 21:27:30.369 2024-02-25 21:27:30.369 2100 FEE 438605 21472 6067152 2024-02-25 21:27:30.369 2024-02-25 21:27:30.369 18900 TIP 438605 658 6067190 2024-02-25 21:30:33.788 2024-02-25 21:30:33.788 2500 FEE 438668 8385 6067191 2024-02-25 21:30:33.788 2024-02-25 21:30:33.788 22500 TIP 438668 18842 6067204 2024-02-25 21:32:19.556 2024-02-25 21:32:19.556 5000 FEE 438188 7119 6067205 2024-02-25 21:32:19.556 2024-02-25 21:32:19.556 45000 TIP 438188 11091 6067224 2024-02-25 21:33:56.835 2024-02-25 21:33:56.835 2100 FEE 438454 3642 6067225 2024-02-25 21:33:56.835 2024-02-25 21:33:56.835 18900 TIP 438454 9921 6067230 2024-02-25 21:35:43.831 2024-02-25 21:35:43.831 2100 FEE 435944 16970 6067231 2024-02-25 21:35:43.831 2024-02-25 21:35:43.831 18900 TIP 435944 10608 6067259 2024-02-25 21:37:56.924 2024-02-25 21:37:56.924 2100 FEE 435944 6136 6067260 2024-02-25 21:37:56.924 2024-02-25 21:37:56.924 18900 TIP 435944 18837 6067301 2024-02-25 21:44:23.333 2024-02-25 21:44:23.333 1000 FEE 438681 12606 6067305 2024-02-25 21:44:43.931 2024-02-25 21:44:43.931 2700 FEE 438507 20090 6067306 2024-02-25 21:44:43.931 2024-02-25 21:44:43.931 24300 TIP 438507 9336 6067307 2024-02-25 21:44:44.925 2024-02-25 21:44:44.925 2700 FEE 438507 20302 6067308 2024-02-25 21:44:44.925 2024-02-25 21:44:44.925 24300 TIP 438507 20906 6067321 2024-02-25 21:47:05.634 2024-02-25 21:47:05.634 1000000 DONT_LIKE_THIS 438397 8985 6067337 2024-02-25 21:47:19.093 2024-02-25 21:47:19.093 1000 FEE 438646 18270 6067338 2024-02-25 21:47:19.093 2024-02-25 21:47:19.093 9000 TIP 438646 1006 6067354 2024-02-25 21:48:40.463 2024-02-25 21:48:40.463 2700 FEE 438611 13527 6067355 2024-02-25 21:48:40.463 2024-02-25 21:48:40.463 24300 TIP 438611 20816 6067365 2024-02-25 21:50:38.824 2024-02-25 21:50:38.824 4000 FEE 438685 1596 6067366 2024-02-25 21:50:38.824 2024-02-25 21:50:38.824 36000 TIP 438685 15266 6067371 2024-02-25 21:52:55.087 2024-02-25 21:52:55.087 1000 FEE 438690 1631 6067410 2024-02-25 22:01:21.971 2024-02-25 22:01:21.971 1300 FEE 438605 6260 6067411 2024-02-25 22:01:21.971 2024-02-25 22:01:21.971 11700 TIP 438605 19147 6067436 2024-02-25 22:03:02.077 2024-02-25 22:03:02.077 10000 FEE 438682 18751 6067437 2024-02-25 22:03:02.077 2024-02-25 22:03:02.077 90000 TIP 438682 703 6067440 2024-02-25 22:03:27.167 2024-02-25 22:03:27.167 4000 FEE 438692 11516 6067441 2024-02-25 22:03:27.167 2024-02-25 22:03:27.167 36000 TIP 438692 21091 6067445 2024-02-25 22:04:00.248 2024-02-25 22:04:00.248 4000 FEE 438682 20525 6067446 2024-02-25 22:04:00.248 2024-02-25 22:04:00.248 36000 TIP 438682 17523 6067478 2024-02-25 22:07:38.377 2024-02-25 22:07:38.377 2500 FEE 437922 20778 6067479 2024-02-25 22:07:38.377 2024-02-25 22:07:38.377 22500 TIP 437922 1316 6067196 2024-02-25 21:31:05.451 2024-02-25 21:31:05.451 1000 STREAM 141924 19488 6126012 2024-03-01 14:47:03.165 2024-03-01 14:47:03.165 1000 STREAM 141924 2213 6126133 2024-03-01 14:59:03.181 2024-03-01 14:59:03.181 1000 STREAM 141924 777 6067216 2024-02-25 21:33:05.828 2024-02-25 21:33:05.828 1000 STREAM 141924 20102 6067686 2024-02-25 22:43:02.661 2024-02-25 22:43:02.661 1000 STREAM 141924 19966 6067721 2024-02-25 22:47:02.697 2024-02-25 22:47:02.697 1000 STREAM 141924 6148 6067746 2024-02-25 22:55:02.783 2024-02-25 22:55:02.783 1000 STREAM 141924 21624 6126017 2024-03-01 14:47:20.213 2024-03-01 14:47:20.213 7600 FEE 445081 20691 6126018 2024-03-01 14:47:20.213 2024-03-01 14:47:20.213 68400 TIP 445081 1090 6126028 2024-03-01 14:47:43.574 2024-03-01 14:47:43.574 100 FEE 445047 2016 6126029 2024-03-01 14:47:43.574 2024-03-01 14:47:43.574 900 TIP 445047 21216 6126054 2024-03-01 14:51:03.071 2024-03-01 14:51:03.071 2100 FEE 445080 20602 6126055 2024-03-01 14:51:03.071 2024-03-01 14:51:03.071 18900 TIP 445080 2718 6126060 2024-03-01 14:51:47.551 2024-03-01 14:51:47.551 1000 FEE 445092 21523 6126084 2024-03-01 14:54:39.714 2024-03-01 14:54:39.714 3000 FEE 445082 18494 6126085 2024-03-01 14:54:39.714 2024-03-01 14:54:39.714 27000 TIP 445082 1801 6126097 2024-03-01 14:56:09.175 2024-03-01 14:56:09.175 3100 FEE 445089 18452 6126098 2024-03-01 14:56:09.175 2024-03-01 14:56:09.175 27900 TIP 445089 18321 6126113 2024-03-01 14:56:29.788 2024-03-01 14:56:29.788 1000 FEE 445099 20058 6126130 2024-03-01 14:58:54.999 2024-03-01 14:58:54.999 1000 FEE 445102 21238 6126156 2024-03-01 15:02:36.43 2024-03-01 15:02:36.43 9000 FEE 445096 910 6126157 2024-03-01 15:02:36.43 2024-03-01 15:02:36.43 81000 TIP 445096 4798 6067244 2024-02-25 21:37:03.907 2024-02-25 21:37:03.907 1000 STREAM 141924 5308 6067266 2024-02-25 21:39:03.886 2024-02-25 21:39:03.886 1000 STREAM 141924 17172 6126042 2024-03-01 14:49:27.191 2024-03-01 14:49:27.191 1000 FEE 445088 18409 6126047 2024-03-01 14:49:46.342 2024-03-01 14:49:46.342 7700 FEE 445077 2335 6126048 2024-03-01 14:49:46.342 2024-03-01 14:49:46.342 69300 TIP 445077 12291 6126064 2024-03-01 14:52:43.895 2024-03-01 14:52:43.895 15000 FEE 445093 7877 6126070 2024-03-01 14:53:04.129 2024-03-01 14:53:04.129 1700 FEE 445077 20717 6126071 2024-03-01 14:53:04.129 2024-03-01 14:53:04.129 15300 TIP 445077 19943 6126134 2024-03-01 14:59:03.732 2024-03-01 14:59:03.732 10000 FEE 444720 21040 6126135 2024-03-01 14:59:03.732 2024-03-01 14:59:03.732 90000 TIP 444720 15833 6126158 2024-03-01 15:02:37.989 2024-03-01 15:02:37.989 90000 FEE 445096 16355 6126159 2024-03-01 15:02:37.989 2024-03-01 15:02:37.989 810000 TIP 445096 657 6126160 2024-03-01 15:02:45.583 2024-03-01 15:02:45.583 1000 FEE 444945 3642 6126161 2024-03-01 15:02:45.583 2024-03-01 15:02:45.583 9000 TIP 444945 20464 6067331 2024-02-25 21:47:18.545 2024-02-25 21:47:18.545 1000 FEE 438646 18265 6067332 2024-02-25 21:47:18.545 2024-02-25 21:47:18.545 9000 TIP 438646 20231 6067351 2024-02-25 21:48:20.627 2024-02-25 21:48:20.627 2700 FEE 438611 6765 6067352 2024-02-25 21:48:20.627 2024-02-25 21:48:20.627 24300 TIP 438611 894 6067373 2024-02-25 21:53:48.398 2024-02-25 21:53:48.398 1000000 DONT_LIKE_THIS 438546 20430 6067389 2024-02-25 21:57:46.382 2024-02-25 21:57:46.382 1000 FEE 438691 15697 6067390 2024-02-25 21:57:46.382 2024-02-25 21:57:46.382 9000 TIP 438691 1814 6067405 2024-02-25 22:00:04.38 2024-02-25 22:00:04.38 100000 FEE 438697 15282 6067407 2024-02-25 22:00:47.871 2024-02-25 22:00:47.871 1000 FEE 438699 16956 6067409 2024-02-25 22:01:21.123 2024-02-25 22:01:21.123 1000 FEE 438700 21136 6067412 2024-02-25 22:01:42.709 2024-02-25 22:01:42.709 0 FEE 438700 6573 6067413 2024-02-25 22:01:45.872 2024-02-25 22:01:45.872 2100 FEE 438670 10719 6067414 2024-02-25 22:01:45.872 2024-02-25 22:01:45.872 18900 TIP 438670 10519 6067466 2024-02-25 22:06:45.082 2024-02-25 22:06:45.082 2100 FEE 438621 12049 6067467 2024-02-25 22:06:45.082 2024-02-25 22:06:45.082 18900 TIP 438621 21194 6067494 2024-02-25 22:07:39.95 2024-02-25 22:07:39.95 2500 FEE 437922 5455 6067495 2024-02-25 22:07:39.95 2024-02-25 22:07:39.95 22500 TIP 437922 6777 6067510 2024-02-25 22:08:34.018 2024-02-25 22:08:34.018 1100 FEE 438651 16769 6067511 2024-02-25 22:08:34.018 2024-02-25 22:08:34.018 9900 TIP 438651 11516 6067524 2024-02-25 22:10:56.545 2024-02-25 22:10:56.545 0 FEE 438710 9336 6067535 2024-02-25 22:15:31.797 2024-02-25 22:15:31.797 1000 FEE 438712 17212 6067547 2024-02-25 22:18:28.757 2024-02-25 22:18:28.757 3300 FEE 438710 14278 6067548 2024-02-25 22:18:28.757 2024-02-25 22:18:28.757 29700 TIP 438710 11423 6067575 2024-02-25 22:22:17.532 2024-02-25 22:22:17.532 2500 FEE 437284 21207 6067576 2024-02-25 22:22:17.532 2024-02-25 22:22:17.532 22500 TIP 437284 1603 6067606 2024-02-25 22:34:16.477 2024-02-25 22:34:16.477 2100 FEE 438670 9418 6067607 2024-02-25 22:34:16.477 2024-02-25 22:34:16.477 18900 TIP 438670 9342 6067618 2024-02-25 22:37:46.317 2024-02-25 22:37:46.317 4000 FEE 438719 6393 6067619 2024-02-25 22:37:46.317 2024-02-25 22:37:46.317 36000 TIP 438719 9177 6067652 2024-02-25 22:40:07.739 2024-02-25 22:40:07.739 90000 FEE 438065 10280 6067653 2024-02-25 22:40:07.739 2024-02-25 22:40:07.739 810000 TIP 438065 21401 6067676 2024-02-25 22:40:59.376 2024-02-25 22:40:59.376 90000 FEE 437723 8059 6067677 2024-02-25 22:40:59.376 2024-02-25 22:40:59.376 810000 TIP 437723 21480 6067683 2024-02-25 22:42:22.334 2024-02-25 22:42:22.334 10000 FEE 438649 21019 6067684 2024-02-25 22:42:22.334 2024-02-25 22:42:22.334 90000 TIP 438649 713 6067685 2024-02-25 22:42:53.701 2024-02-25 22:42:53.701 0 FEE 438722 17171 6067695 2024-02-25 22:46:05.82 2024-02-25 22:46:05.82 1000 FEE 438697 12057 6067696 2024-02-25 22:46:05.82 2024-02-25 22:46:05.82 9000 TIP 438697 15617 6067733 2024-02-25 22:51:04.692 2024-02-25 22:51:04.692 10000 FEE 438515 18836 6067734 2024-02-25 22:51:04.692 2024-02-25 22:51:04.692 90000 TIP 438515 17183 6067740 2024-02-25 22:53:51.628 2024-02-25 22:53:51.628 1000 FEE 438669 9 6067741 2024-02-25 22:53:51.628 2024-02-25 22:53:51.628 9000 TIP 438669 19463 6067764 2024-02-25 23:02:15.902 2024-02-25 23:02:15.902 1000 FEE 438729 21180 6067783 2024-02-25 23:06:26.907 2024-02-25 23:06:26.907 10800 FEE 438340 1751 6067784 2024-02-25 23:06:26.907 2024-02-25 23:06:26.907 97200 TIP 438340 831 6067826 2024-02-25 23:23:16.56 2024-02-25 23:23:16.56 3300 FEE 438691 1959 6067827 2024-02-25 23:23:16.56 2024-02-25 23:23:16.56 29700 TIP 438691 4035 6067877 2024-02-25 23:36:32.094 2024-02-25 23:36:32.094 1000 FEE 438651 8074 6067878 2024-02-25 23:36:32.094 2024-02-25 23:36:32.094 9000 TIP 438651 20370 6067888 2024-02-25 23:38:00.133 2024-02-25 23:38:00.133 100 FEE 438740 17041 6067889 2024-02-25 23:38:00.133 2024-02-25 23:38:00.133 900 TIP 438740 18680 6067913 2024-02-25 23:45:06.495 2024-02-25 23:45:06.495 1000 FEE 438744 20904 6067921 2024-02-25 23:46:09.012 2024-02-25 23:46:09.012 2600 FEE 438495 8998 6067922 2024-02-25 23:46:09.012 2024-02-25 23:46:09.012 23400 TIP 438495 1519 6067939 2024-02-25 23:48:16.981 2024-02-25 23:48:16.981 1000 FEE 438749 20225 6067970 2024-02-25 23:53:36.077 2024-02-25 23:53:36.077 1000 FEE 438754 994 6068000 2024-02-25 23:56:54.966 2024-02-25 23:56:54.966 300 FEE 438749 5865 6068001 2024-02-25 23:56:54.966 2024-02-25 23:56:54.966 2700 TIP 438749 19243 6068002 2024-02-25 23:56:55.222 2024-02-25 23:56:55.222 300 FEE 438749 16059 6068003 2024-02-25 23:56:55.222 2024-02-25 23:56:55.222 2700 TIP 438749 16347 6068024 2024-02-25 23:56:59.787 2024-02-25 23:56:59.787 300 FEE 438749 20781 6068025 2024-02-25 23:56:59.787 2024-02-25 23:56:59.787 2700 TIP 438749 5978 6068048 2024-02-25 23:58:23.73 2024-02-25 23:58:23.73 300 FEE 438651 15146 6068049 2024-02-25 23:58:23.73 2024-02-25 23:58:23.73 2700 TIP 438651 19263 6068080 2024-02-25 23:58:27.138 2024-02-25 23:58:27.138 300 FEE 438651 20854 6068081 2024-02-25 23:58:27.138 2024-02-25 23:58:27.138 2700 TIP 438651 16649 6068082 2024-02-25 23:58:27.359 2024-02-25 23:58:27.359 300 FEE 438651 7983 6068083 2024-02-25 23:58:27.359 2024-02-25 23:58:27.359 2700 TIP 438651 20110 6068122 2024-02-26 00:03:10.238 2024-02-26 00:03:10.238 4000 FEE 437550 11590 6068123 2024-02-26 00:03:10.238 2024-02-26 00:03:10.238 36000 TIP 437550 19193 6068141 2024-02-26 00:05:47.044 2024-02-26 00:05:47.044 27900 FEE 438596 10352 6068142 2024-02-26 00:05:47.044 2024-02-26 00:05:47.044 251100 TIP 438596 16571 6068163 2024-02-26 00:13:00.383 2024-02-26 00:13:00.383 7700 FEE 438649 10519 6068164 2024-02-26 00:13:00.383 2024-02-26 00:13:00.383 69300 TIP 438649 19773 6068167 2024-02-26 00:13:00.566 2024-02-26 00:13:00.566 7700 FEE 438649 21393 6068168 2024-02-26 00:13:00.566 2024-02-26 00:13:00.566 69300 TIP 438649 17106 6068198 2024-02-26 00:17:36.772 2024-02-26 00:17:36.772 1000 FEE 438766 15408 6068202 2024-02-26 00:18:24.639 2024-02-26 00:18:24.639 3100 FEE 438451 18784 6068203 2024-02-26 00:18:24.639 2024-02-26 00:18:24.639 27900 TIP 438451 11821 6068222 2024-02-26 00:18:44.486 2024-02-26 00:18:44.486 7700 FEE 438651 5725 6068223 2024-02-26 00:18:44.486 2024-02-26 00:18:44.486 69300 TIP 438651 14791 6068239 2024-02-26 00:22:03.943 2024-02-26 00:22:03.943 3100 FEE 438637 9167 6068240 2024-02-26 00:22:03.943 2024-02-26 00:22:03.943 27900 TIP 438637 980 6068242 2024-02-26 00:23:34.21 2024-02-26 00:23:34.21 10000 FEE 438770 7558 6068253 2024-02-26 00:27:35.232 2024-02-26 00:27:35.232 1000 FEE 438761 902 6068254 2024-02-26 00:27:35.232 2024-02-26 00:27:35.232 9000 TIP 438761 10273 6068267 2024-02-26 00:29:30.178 2024-02-26 00:29:30.178 1000 FEE 438774 633 6068268 2024-02-26 00:29:40.47 2024-02-26 00:29:40.47 1000 FEE 438649 9346 6068269 2024-02-26 00:29:40.47 2024-02-26 00:29:40.47 9000 TIP 438649 11561 6068270 2024-02-26 00:29:53.889 2024-02-26 00:29:53.889 3100 FEE 438404 19235 6068271 2024-02-26 00:29:53.889 2024-02-26 00:29:53.889 27900 TIP 438404 16410 6068272 2024-02-26 00:29:54.867 2024-02-26 00:29:54.867 27900 FEE 438404 3642 6068273 2024-02-26 00:29:54.867 2024-02-26 00:29:54.867 251100 TIP 438404 1800 6068284 2024-02-26 00:32:29.62 2024-02-26 00:32:29.62 10000 FEE 438753 20577 6068285 2024-02-26 00:32:29.62 2024-02-26 00:32:29.62 90000 TIP 438753 18311 6068308 2024-02-26 00:43:45.376 2024-02-26 00:43:45.376 1000 FEE 438783 1801 6068315 2024-02-26 00:45:42.038 2024-02-26 00:45:42.038 4200 FEE 438651 16830 6068316 2024-02-26 00:45:42.038 2024-02-26 00:45:42.038 37800 TIP 438651 16789 6068334 2024-02-26 00:51:56.044 2024-02-26 00:51:56.044 400 FEE 438785 21400 6068335 2024-02-26 00:51:56.044 2024-02-26 00:51:56.044 3600 TIP 438785 11523 6068365 2024-02-26 01:04:11.217 2024-02-26 01:04:11.217 300 FEE 438651 2029 6068366 2024-02-26 01:04:11.217 2024-02-26 01:04:11.217 2700 TIP 438651 21491 6068410 2024-02-26 01:14:16.438 2024-02-26 01:14:16.438 2700 FEE 438738 21577 6068411 2024-02-26 01:14:16.438 2024-02-26 01:14:16.438 24300 TIP 438738 18460 6068424 2024-02-26 01:14:33.141 2024-02-26 01:14:33.141 2700 FEE 438727 7978 6068425 2024-02-26 01:14:33.141 2024-02-26 01:14:33.141 24300 TIP 438727 725 6067356 2024-02-25 21:48:51.632 2024-02-25 21:48:51.632 1000 FEE 438689 20157 6067367 2024-02-25 21:50:39.249 2024-02-25 21:50:39.249 4000 FEE 438685 21395 6067368 2024-02-25 21:50:39.249 2024-02-25 21:50:39.249 36000 TIP 438685 18336 6067387 2024-02-25 21:57:34.987 2024-02-25 21:57:34.987 800 FEE 438438 5775 6067388 2024-02-25 21:57:34.987 2024-02-25 21:57:34.987 7200 TIP 438438 5746 6067406 2024-02-25 22:00:04.715 2024-02-25 22:00:04.715 1000 FEE 438698 20710 6067417 2024-02-25 22:01:59.306 2024-02-25 22:01:59.306 2100 FEE 438596 18392 6067418 2024-02-25 22:01:59.306 2024-02-25 22:01:59.306 18900 TIP 438596 2061 6067438 2024-02-25 22:03:06.164 2024-02-25 22:03:06.164 1000 FEE 438703 2519 6067453 2024-02-25 22:04:55.68 2024-02-25 22:04:55.68 2100 FEE 438261 13622 6067454 2024-02-25 22:04:55.68 2024-02-25 22:04:55.68 18900 TIP 438261 9345 6067465 2024-02-25 22:06:29.186 2024-02-25 22:06:29.186 0 FEE 438702 1221 6067472 2024-02-25 22:06:53.562 2024-02-25 22:06:53.562 0 FEE 438702 642 6067482 2024-02-25 22:07:38.752 2024-02-25 22:07:38.752 2500 FEE 437922 9275 6067483 2024-02-25 22:07:38.752 2024-02-25 22:07:38.752 22500 TIP 437922 21612 6067486 2024-02-25 22:07:39.192 2024-02-25 22:07:39.192 2500 FEE 437922 6360 6067487 2024-02-25 22:07:39.192 2024-02-25 22:07:39.192 22500 TIP 437922 18220 6067490 2024-02-25 22:07:39.548 2024-02-25 22:07:39.548 2500 FEE 437922 20326 6067491 2024-02-25 22:07:39.548 2024-02-25 22:07:39.548 22500 TIP 437922 11862 6067521 2024-02-25 22:10:14.136 2024-02-25 22:10:14.136 3300 FEE 438471 17227 6067522 2024-02-25 22:10:14.136 2024-02-25 22:10:14.136 29700 TIP 438471 18528 6067580 2024-02-25 22:23:52.847 2024-02-25 22:23:52.847 10000 FEE 438065 4083 6067581 2024-02-25 22:23:52.847 2024-02-25 22:23:52.847 90000 TIP 438065 3342 6067596 2024-02-25 22:33:01.753 2024-02-25 22:33:01.753 1100 FEE 438515 21585 6067597 2024-02-25 22:33:01.753 2024-02-25 22:33:01.753 9900 TIP 438515 10944 6067610 2024-02-25 22:36:30.491 2024-02-25 22:36:30.491 2100 FEE 438451 18533 6067611 2024-02-25 22:36:30.491 2024-02-25 22:36:30.491 18900 TIP 438451 2514 6067617 2024-02-25 22:37:42.553 2024-02-25 22:37:42.553 1000 FEE 438720 17157 6067629 2024-02-25 22:38:42.326 2024-02-25 22:38:42.326 900 FEE 438694 19773 6067630 2024-02-25 22:38:42.326 2024-02-25 22:38:42.326 8100 TIP 438694 7818 6067633 2024-02-25 22:38:49.083 2024-02-25 22:38:49.083 900 FEE 438691 6202 6067634 2024-02-25 22:38:49.083 2024-02-25 22:38:49.083 8100 TIP 438691 20205 6067639 2024-02-25 22:39:21.989 2024-02-25 22:39:21.989 100 FEE 438718 14909 6067640 2024-02-25 22:39:21.989 2024-02-25 22:39:21.989 900 TIP 438718 844 6067643 2024-02-25 22:39:26.887 2024-02-25 22:39:26.887 100 FEE 438687 20291 6067644 2024-02-25 22:39:26.887 2024-02-25 22:39:26.887 900 TIP 438687 2614 6067656 2024-02-25 22:40:12.831 2024-02-25 22:40:12.831 90000 FEE 438438 10771 6067657 2024-02-25 22:40:12.831 2024-02-25 22:40:12.831 810000 TIP 438438 20205 6067658 2024-02-25 22:40:25.469 2024-02-25 22:40:25.469 100 FEE 438607 21627 6067659 2024-02-25 22:40:25.469 2024-02-25 22:40:25.469 900 TIP 438607 21492 6067664 2024-02-25 22:40:33.196 2024-02-25 22:40:33.196 90000 FEE 438209 21386 6067665 2024-02-25 22:40:33.196 2024-02-25 22:40:33.196 810000 TIP 438209 1552 6067674 2024-02-25 22:40:53.723 2024-02-25 22:40:53.723 9000 FEE 438397 2502 6067675 2024-02-25 22:40:53.723 2024-02-25 22:40:53.723 81000 TIP 438397 14906 6067679 2024-02-25 22:41:18.415 2024-02-25 22:41:18.415 90000 FEE 438649 19435 6067680 2024-02-25 22:41:18.415 2024-02-25 22:41:18.415 810000 TIP 438649 6058 6067693 2024-02-25 22:46:05.636 2024-02-25 22:46:05.636 1000 FEE 438697 1135 6067694 2024-02-25 22:46:05.636 2024-02-25 22:46:05.636 9000 TIP 438697 11073 6067697 2024-02-25 22:46:05.965 2024-02-25 22:46:05.965 1000 FEE 438697 19992 6067698 2024-02-25 22:46:05.965 2024-02-25 22:46:05.965 9000 TIP 438697 894 6067744 2024-02-25 22:54:47.172 2024-02-25 22:54:47.172 1000 FEE 438728 19007 6067751 2024-02-25 22:57:06.562 2024-02-25 22:57:06.562 2500 FEE 438728 21242 6067752 2024-02-25 22:57:06.562 2024-02-25 22:57:06.562 22500 TIP 438728 19581 6067767 2024-02-25 23:03:36.773 2024-02-25 23:03:36.773 10800 FEE 438474 4173 6067768 2024-02-25 23:03:36.773 2024-02-25 23:03:36.773 97200 TIP 438474 11996 6067780 2024-02-25 23:05:26.214 2024-02-25 23:05:26.214 100 FEE 438623 19465 6067781 2024-02-25 23:05:26.214 2024-02-25 23:05:26.214 900 TIP 438623 2431 6067834 2024-02-25 23:26:13.127 2024-02-25 23:26:13.127 500 FEE 438414 20272 6067835 2024-02-25 23:26:13.127 2024-02-25 23:26:13.127 4500 TIP 438414 21026 6067836 2024-02-25 23:26:13.432 2024-02-25 23:26:13.432 500 FEE 438414 2609 6067837 2024-02-25 23:26:13.432 2024-02-25 23:26:13.432 4500 TIP 438414 11714 6067838 2024-02-25 23:26:16.315 2024-02-25 23:26:16.315 500 FEE 438414 18368 6067839 2024-02-25 23:26:16.315 2024-02-25 23:26:16.315 4500 TIP 438414 5527 6067863 2024-02-25 23:32:17.608 2024-02-25 23:32:17.608 1000 FEE 438209 21207 6067864 2024-02-25 23:32:17.608 2024-02-25 23:32:17.608 9000 TIP 438209 11621 6067866 2024-02-25 23:33:38.867 2024-02-25 23:33:38.867 5000 FEE 438583 15484 6067867 2024-02-25 23:33:38.867 2024-02-25 23:33:38.867 45000 TIP 438583 705 6067871 2024-02-25 23:34:31.259 2024-02-25 23:34:31.259 1000 FEE 438738 21413 6067872 2024-02-25 23:35:01.179 2024-02-25 23:35:01.179 1000 FEE 438739 4074 6067880 2024-02-25 23:37:59.015 2024-02-25 23:37:59.015 100 FEE 438740 19810 6067881 2024-02-25 23:37:59.015 2024-02-25 23:37:59.015 900 TIP 438740 1030 6067920 2024-02-25 23:46:07.782 2024-02-25 23:46:07.782 21000 FEE 438746 20924 6067941 2024-02-25 23:48:39.102 2024-02-25 23:48:39.102 1600 FEE 438604 19930 6067942 2024-02-25 23:48:39.102 2024-02-25 23:48:39.102 14400 TIP 438604 7979 6067951 2024-02-25 23:50:11.619 2024-02-25 23:50:11.619 4000 FEE 438747 4043 6067952 2024-02-25 23:50:11.619 2024-02-25 23:50:11.619 36000 TIP 438747 1605 6067960 2024-02-25 23:52:32.886 2024-02-25 23:52:32.886 2100 FEE 438752 18941 6067961 2024-02-25 23:52:32.886 2024-02-25 23:52:32.886 18900 TIP 438752 5752 6067962 2024-02-25 23:52:37.817 2024-02-25 23:52:37.817 2100 FEE 438745 913 6067963 2024-02-25 23:52:37.817 2024-02-25 23:52:37.817 18900 TIP 438745 2195 6067972 2024-02-25 23:54:03.197 2024-02-25 23:54:03.197 1000 FEE 438755 940 6067988 2024-02-25 23:56:34.938 2024-02-25 23:56:34.938 600 FEE 438749 20987 6067989 2024-02-25 23:56:34.938 2024-02-25 23:56:34.938 5400 TIP 438749 13399 6068014 2024-02-25 23:56:56.275 2024-02-25 23:56:56.275 300 FEE 438749 20979 6068015 2024-02-25 23:56:56.275 2024-02-25 23:56:56.275 2700 TIP 438749 770 6068038 2024-02-25 23:57:01.154 2024-02-25 23:57:01.154 300 FEE 438749 21485 6068039 2024-02-25 23:57:01.154 2024-02-25 23:57:01.154 2700 TIP 438749 12808 6068040 2024-02-25 23:57:01.305 2024-02-25 23:57:01.305 300 FEE 438749 21402 6068041 2024-02-25 23:57:01.305 2024-02-25 23:57:01.305 2700 TIP 438749 21238 6068054 2024-02-25 23:58:24.37 2024-02-25 23:58:24.37 300 FEE 438651 16145 6068055 2024-02-25 23:58:24.37 2024-02-25 23:58:24.37 2700 TIP 438651 21357 6068107 2024-02-26 00:00:58.257 2024-02-26 00:00:58.257 6900 FEE 438742 18280 6068108 2024-02-26 00:00:58.257 2024-02-26 00:00:58.257 62100 TIP 438742 16879 6068112 2024-02-26 00:01:17.154 2024-02-26 00:01:17.154 1000 FEE 438759 4989 6068134 2024-02-26 00:04:57.474 2024-02-26 00:04:57.474 100 FEE 438649 7869 6068135 2024-02-26 00:04:57.474 2024-02-26 00:04:57.474 900 TIP 438649 18956 6068165 2024-02-26 00:13:00.454 2024-02-26 00:13:00.454 7700 FEE 438649 2596 6068166 2024-02-26 00:13:00.454 2024-02-26 00:13:00.454 69300 TIP 438649 11417 6068173 2024-02-26 00:13:00.897 2024-02-26 00:13:00.897 7700 FEE 438649 18368 6068174 2024-02-26 00:13:00.897 2024-02-26 00:13:00.897 69300 TIP 438649 15588 6068175 2024-02-26 00:13:01.005 2024-02-26 00:13:01.005 7700 FEE 438649 8926 6068176 2024-02-26 00:13:01.005 2024-02-26 00:13:01.005 69300 TIP 438649 21539 6068179 2024-02-26 00:13:01.234 2024-02-26 00:13:01.234 7700 FEE 438649 16789 6068180 2024-02-26 00:13:01.234 2024-02-26 00:13:01.234 69300 TIP 438649 12122 6068183 2024-02-26 00:13:02.652 2024-02-26 00:13:02.652 7700 FEE 438649 20585 6068184 2024-02-26 00:13:02.652 2024-02-26 00:13:02.652 69300 TIP 438649 15697 6067360 2024-02-25 21:50:03.983 2024-02-25 21:50:03.983 1000 STREAM 141924 9354 6067370 2024-02-25 21:52:03.963 2024-02-25 21:52:03.963 1000 STREAM 141924 4378 6067381 2024-02-25 21:56:01.996 2024-02-25 21:56:01.996 1000 STREAM 141924 19118 6067404 2024-02-25 22:00:02.089 2024-02-25 22:00:02.089 1000 STREAM 141924 18309 6067408 2024-02-25 22:01:04.032 2024-02-25 22:01:04.032 1000 STREAM 141924 11820 6067435 2024-02-25 22:03:02.053 2024-02-25 22:03:02.053 1000 STREAM 141924 19346 6067449 2024-02-25 22:04:04.064 2024-02-25 22:04:04.064 1000 STREAM 141924 646 6067372 2024-02-25 21:53:03.965 2024-02-25 21:53:03.965 1000 STREAM 141924 4798 6067376 2024-02-25 21:54:01.98 2024-02-25 21:54:01.98 1000 STREAM 141924 18232 6067379 2024-02-25 21:55:03.98 2024-02-25 21:55:03.98 1000 STREAM 141924 19633 6067763 2024-02-25 23:02:02.589 2024-02-25 23:02:02.589 1000 STREAM 141924 20646 6067775 2024-02-25 23:05:02.624 2024-02-25 23:05:02.624 1000 STREAM 141924 15938 6067782 2024-02-25 23:06:06.626 2024-02-25 23:06:06.626 1000 STREAM 141924 6148 6067787 2024-02-25 23:07:02.638 2024-02-25 23:07:02.638 1000 STREAM 141924 18528 6067791 2024-02-25 23:08:04.653 2024-02-25 23:08:04.653 1000 STREAM 141924 798 6067793 2024-02-25 23:10:04.7 2024-02-25 23:10:04.7 1000 STREAM 141924 21458 6067799 2024-02-25 23:13:02.684 2024-02-25 23:13:02.684 1000 STREAM 141924 18452 6067815 2024-02-25 23:17:02.701 2024-02-25 23:17:02.701 1000 STREAM 141924 1960 6067816 2024-02-25 23:18:02.703 2024-02-25 23:18:02.703 1000 STREAM 141924 1006 6067818 2024-02-25 23:20:02.704 2024-02-25 23:20:02.704 1000 STREAM 141924 15367 6067821 2024-02-25 23:23:02.71 2024-02-25 23:23:02.71 1000 STREAM 141924 919 6067833 2024-02-25 23:26:02.725 2024-02-25 23:26:02.725 1000 STREAM 141924 766 6067850 2024-02-25 23:28:02.744 2024-02-25 23:28:02.744 1000 STREAM 141924 20837 6067861 2024-02-25 23:31:02.764 2024-02-25 23:31:02.764 1000 STREAM 141924 19967 6067862 2024-02-25 23:32:04.778 2024-02-25 23:32:04.778 1000 STREAM 141924 20904 6067870 2024-02-25 23:34:02.81 2024-02-25 23:34:02.81 1000 STREAM 141924 15510 6067873 2024-02-25 23:35:02.801 2024-02-25 23:35:02.801 1000 STREAM 141924 20302 6067874 2024-02-25 23:36:02.818 2024-02-25 23:36:02.818 1000 STREAM 141924 18310 6067374 2024-02-25 21:53:52.482 2024-02-25 21:53:52.482 1000 FEE 438687 2444 6067375 2024-02-25 21:53:52.482 2024-02-25 21:53:52.482 9000 TIP 438687 21555 6067383 2024-02-25 21:56:26.388 2024-02-25 21:56:26.388 1000 FEE 438693 20280 6067394 2024-02-25 21:58:14.523 2024-02-25 21:58:14.523 800 FEE 438453 5828 6067395 2024-02-25 21:58:14.523 2024-02-25 21:58:14.523 7200 TIP 438453 16309 6067397 2024-02-25 21:58:58.078 2024-02-25 21:58:58.078 100000 FEE 438695 2711 6067400 2024-02-25 21:59:11.583 2024-02-25 21:59:11.583 10000 FEE 438604 12976 6067401 2024-02-25 21:59:11.583 2024-02-25 21:59:11.583 90000 TIP 438604 20840 6067420 2024-02-25 22:02:07.768 2024-02-25 22:02:07.768 2100 FEE 438651 21480 6067421 2024-02-25 22:02:07.768 2024-02-25 22:02:07.768 18900 TIP 438651 17172 6067432 2024-02-25 22:02:56.09 2024-02-25 22:02:56.09 100000 FEE 438397 20781 6067433 2024-02-25 22:02:56.09 2024-02-25 22:02:56.09 900000 TIP 438397 12708 6067447 2024-02-25 22:04:00.826 2024-02-25 22:04:00.826 2100 FEE 438211 6573 6067448 2024-02-25 22:04:00.826 2024-02-25 22:04:00.826 18900 TIP 438211 15703 6067461 2024-02-25 22:05:33.014 2024-02-25 22:05:33.014 2100 FEE 64293 21498 6067462 2024-02-25 22:05:33.014 2024-02-25 22:05:33.014 18900 TIP 64293 4128 6067464 2024-02-25 22:06:10.019 2024-02-25 22:06:10.019 0 FEE 438702 9992 6067506 2024-02-25 22:07:41.537 2024-02-25 22:07:41.537 2500 FEE 437922 18051 6067507 2024-02-25 22:07:41.537 2024-02-25 22:07:41.537 22500 TIP 437922 20208 6067512 2024-02-25 22:08:49.768 2024-02-25 22:08:49.768 0 FEE 438707 16154 6067515 2024-02-25 22:09:30.892 2024-02-25 22:09:30.892 3300 FEE 438438 16267 6067516 2024-02-25 22:09:30.892 2024-02-25 22:09:30.892 29700 TIP 438438 3396 6067517 2024-02-25 22:09:48.309 2024-02-25 22:09:48.309 3300 FEE 438546 19381 6067518 2024-02-25 22:09:48.309 2024-02-25 22:09:48.309 29700 TIP 438546 18380 6067523 2024-02-25 22:10:23.136 2024-02-25 22:10:23.136 0 FEE 438710 11240 6067546 2024-02-25 22:18:07.828 2024-02-25 22:18:07.828 1000 FEE 438713 697 6067568 2024-02-25 22:22:03.148 2024-02-25 22:22:03.148 1000 FEE 438715 9350 6067577 2024-02-25 22:22:19.281 2024-02-25 22:22:19.281 1000 FEE 438716 4521 6067590 2024-02-25 22:29:28.541 2024-02-25 22:29:28.541 1000 FEE 438719 15594 6067591 2024-02-25 22:29:37.399 2024-02-25 22:29:37.399 2100 FEE 438713 19841 6067592 2024-02-25 22:29:37.399 2024-02-25 22:29:37.399 18900 TIP 438713 8423 6067603 2024-02-25 22:33:17.192 2024-02-25 22:33:17.192 200 FEE 438515 960 6067604 2024-02-25 22:33:17.192 2024-02-25 22:33:17.192 1800 TIP 438515 20647 6067613 2024-02-25 22:37:20.778 2024-02-25 22:37:20.778 2100 FEE 438414 20979 6067614 2024-02-25 22:37:20.778 2024-02-25 22:37:20.778 18900 TIP 438414 20710 6067641 2024-02-25 22:39:22.169 2024-02-25 22:39:22.169 900 FEE 438718 20302 6067642 2024-02-25 22:39:22.169 2024-02-25 22:39:22.169 8100 TIP 438718 18392 6067650 2024-02-25 22:40:04.011 2024-02-25 22:40:04.011 90000 FEE 438317 16948 6067651 2024-02-25 22:40:04.011 2024-02-25 22:40:04.011 810000 TIP 438317 721 6067668 2024-02-25 22:40:40.195 2024-02-25 22:40:40.195 90000 FEE 438389 8004 6067669 2024-02-25 22:40:40.195 2024-02-25 22:40:40.195 810000 TIP 438389 4115 6067705 2024-02-25 22:46:12.478 2024-02-25 22:46:12.478 1000 FEE 438334 19309 6067706 2024-02-25 22:46:12.478 2024-02-25 22:46:12.478 9000 TIP 438334 730 6067711 2024-02-25 22:46:21.166 2024-02-25 22:46:21.166 1000 FEE 438057 1122 6067712 2024-02-25 22:46:21.166 2024-02-25 22:46:21.166 9000 TIP 438057 1741 6067788 2024-02-25 23:07:27.096 2024-02-25 23:07:27.096 1000 FEE 438733 2710 6067795 2024-02-25 23:11:45.765 2024-02-25 23:11:45.765 1000 FEE 438734 18817 6067798 2024-02-25 23:12:39.943 2024-02-25 23:12:39.943 0 FEE 438735 21338 6067851 2024-02-25 23:28:39.495 2024-02-25 23:28:39.495 1000 POLL 438414 919 6067929 2024-02-25 23:46:38.086 2024-02-25 23:46:38.086 1000 FEE 438747 16176 6067933 2024-02-25 23:47:59.853 2024-02-25 23:47:59.853 1000 FEE 438748 2722 6067940 2024-02-25 23:48:27.437 2024-02-25 23:48:27.437 1000 FEE 438750 18116 6067949 2024-02-25 23:50:09.814 2024-02-25 23:50:09.814 4000 FEE 438747 18243 6067950 2024-02-25 23:50:09.814 2024-02-25 23:50:09.814 36000 TIP 438747 15556 6067966 2024-02-25 23:52:51.81 2024-02-25 23:52:51.81 10000 FEE 438753 21287 6067974 2024-02-25 23:55:34.951 2024-02-25 23:55:34.951 10000 FEE 438756 5308 6067977 2024-02-25 23:55:59.243 2024-02-25 23:55:59.243 27900 FEE 438405 1319 6067978 2024-02-25 23:55:59.243 2024-02-25 23:55:59.243 251100 TIP 438405 16809 6067984 2024-02-25 23:56:34.42 2024-02-25 23:56:34.42 300 FEE 438749 19322 6067985 2024-02-25 23:56:34.42 2024-02-25 23:56:34.42 2700 TIP 438749 2022 6067992 2024-02-25 23:56:35.807 2024-02-25 23:56:35.807 300 FEE 438749 16970 6067993 2024-02-25 23:56:35.807 2024-02-25 23:56:35.807 2700 TIP 438749 20730 6067998 2024-02-25 23:56:54.775 2024-02-25 23:56:54.775 300 FEE 438749 17568 6067999 2024-02-25 23:56:54.775 2024-02-25 23:56:54.775 2700 TIP 438749 2335 6068010 2024-02-25 23:56:56.002 2024-02-25 23:56:56.002 300 FEE 438749 11153 6068011 2024-02-25 23:56:56.002 2024-02-25 23:56:56.002 2700 TIP 438749 680 6068020 2024-02-25 23:56:59.402 2024-02-25 23:56:59.402 300 FEE 438749 803 6068021 2024-02-25 23:56:59.402 2024-02-25 23:56:59.402 2700 TIP 438749 1426 6068022 2024-02-25 23:56:59.716 2024-02-25 23:56:59.716 300 FEE 438749 19531 6068023 2024-02-25 23:56:59.716 2024-02-25 23:56:59.716 2700 TIP 438749 837 6068044 2024-02-25 23:58:18.523 2024-02-25 23:58:18.523 1000 FEE 438271 2502 6068045 2024-02-25 23:58:18.523 2024-02-25 23:58:18.523 9000 TIP 438271 19501 6068050 2024-02-25 23:58:23.938 2024-02-25 23:58:23.938 300 FEE 438651 2046 6068051 2024-02-25 23:58:23.938 2024-02-25 23:58:23.938 2700 TIP 438651 21026 6068068 2024-02-25 23:58:25.814 2024-02-25 23:58:25.814 300 FEE 438651 20681 6068069 2024-02-25 23:58:25.814 2024-02-25 23:58:25.814 2700 TIP 438651 18829 6068074 2024-02-25 23:58:26.475 2024-02-25 23:58:26.475 300 FEE 438651 21451 6068075 2024-02-25 23:58:26.475 2024-02-25 23:58:26.475 2700 TIP 438651 670 6068086 2024-02-25 23:58:27.89 2024-02-25 23:58:27.89 300 FEE 438651 2844 6068087 2024-02-25 23:58:27.89 2024-02-25 23:58:27.89 2700 TIP 438651 1773 6068099 2024-02-25 23:58:48.586 2024-02-25 23:58:48.586 1000 FEE 438325 19878 6068100 2024-02-25 23:58:48.586 2024-02-25 23:58:48.586 9000 TIP 438325 1198 6068106 2024-02-26 00:00:34.436 2024-02-26 00:00:34.436 210000 FEE 438758 725 6068124 2024-02-26 00:03:13.345 2024-02-26 00:03:13.345 279000 FEE 438405 20099 6068125 2024-02-26 00:03:13.345 2024-02-26 00:03:13.345 2511000 TIP 438405 20816 6068136 2024-02-26 00:04:57.505 2024-02-26 00:04:57.505 100 FEE 438649 12483 6068137 2024-02-26 00:04:57.505 2024-02-26 00:04:57.505 900 TIP 438649 16988 6068145 2024-02-26 00:08:00.421 2024-02-26 00:08:00.421 1000 FEE 438762 635 6067385 2024-02-25 21:57:03.196 2024-02-25 21:57:03.196 1000 STREAM 141924 13055 6067393 2024-02-25 21:58:03.197 2024-02-25 21:58:03.197 1000 STREAM 141924 630 6067398 2024-02-25 21:59:03.217 2024-02-25 21:59:03.217 1000 STREAM 141924 1652 6067419 2024-02-25 22:02:03.23 2024-02-25 22:02:03.23 1000 STREAM 141924 21469 6067527 2024-02-25 22:12:03.519 2024-02-25 22:12:03.519 1000 STREAM 141924 12346 6067565 2024-02-25 22:21:03.596 2024-02-25 22:21:03.596 1000 STREAM 141924 670 6067578 2024-02-25 22:23:03.603 2024-02-25 22:23:03.603 1000 STREAM 141924 10484 6067586 2024-02-25 22:27:03.614 2024-02-25 22:27:03.614 1000 STREAM 141924 656 6067589 2024-02-25 22:29:03.632 2024-02-25 22:29:03.632 1000 STREAM 141924 21275 6067594 2024-02-25 22:31:03.645 2024-02-25 22:31:03.645 1000 STREAM 141924 16954 6067600 2024-02-25 22:33:03.667 2024-02-25 22:33:03.667 1000 STREAM 141924 20291 6067608 2024-02-25 22:35:03.704 2024-02-25 22:35:03.704 1000 STREAM 141924 7389 6067612 2024-02-25 22:37:03.678 2024-02-25 22:37:03.678 1000 STREAM 141924 12218 6067678 2024-02-25 22:41:03.686 2024-02-25 22:41:03.686 1000 STREAM 141924 20495 6067690 2024-02-25 22:45:03.74 2024-02-25 22:45:03.74 1000 STREAM 141924 18271 6067736 2024-02-25 22:53:03.802 2024-02-25 22:53:03.802 1000 STREAM 141924 21417 6067765 2024-02-25 23:03:04.588 2024-02-25 23:03:04.588 1000 STREAM 141924 5961 6067770 2024-02-25 23:04:02.585 2024-02-25 23:04:02.585 1000 STREAM 141924 1658 6067455 2024-02-25 22:05:01.918 2024-02-25 22:05:01.918 1000 STREAM 141924 2963 6067463 2024-02-25 22:06:03.935 2024-02-25 22:06:03.935 1000 STREAM 141924 20120 6067509 2024-02-25 22:08:03.959 2024-02-25 22:08:03.959 1000 STREAM 141924 21058 6067520 2024-02-25 22:10:03.976 2024-02-25 22:10:03.976 1000 STREAM 141924 18727 6067531 2024-02-25 22:14:03.981 2024-02-25 22:14:03.981 1000 STREAM 141924 16954 6067534 2024-02-25 22:15:01.989 2024-02-25 22:15:01.989 1000 STREAM 141924 1044 6067556 2024-02-25 22:20:02.015 2024-02-25 22:20:02.015 1000 STREAM 141924 9982 6067567 2024-02-25 22:22:02.01 2024-02-25 22:22:02.01 1000 STREAM 141924 19158 6067582 2024-02-25 22:24:02.034 2024-02-25 22:24:02.034 1000 STREAM 141924 694 6067585 2024-02-25 22:26:02.014 2024-02-25 22:26:02.014 1000 STREAM 141924 19930 6067593 2024-02-25 22:30:02.06 2024-02-25 22:30:02.06 1000 STREAM 141924 13174 6067609 2024-02-25 22:36:02.098 2024-02-25 22:36:02.098 1000 STREAM 141924 14202 6067730 2024-02-25 22:50:02.239 2024-02-25 22:50:02.239 1000 STREAM 141924 21466 6067742 2024-02-25 22:54:02.208 2024-02-25 22:54:02.208 1000 STREAM 141924 19524 6067747 2024-02-25 22:56:02.245 2024-02-25 22:56:02.245 1000 STREAM 141924 1208 6067750 2024-02-25 22:57:04.27 2024-02-25 22:57:04.27 1000 STREAM 141924 21140 6067469 2024-02-25 22:06:45.866 2024-02-25 22:06:45.866 18900 TIP 438621 15200 6067470 2024-02-25 22:06:47.49 2024-02-25 22:06:47.49 2100 FEE 438621 4768 6067471 2024-02-25 22:06:47.49 2024-02-25 22:06:47.49 18900 TIP 438621 13378 6067474 2024-02-25 22:07:26.872 2024-02-25 22:07:26.872 1000 FEE 438706 19854 6067492 2024-02-25 22:07:39.733 2024-02-25 22:07:39.733 2500 FEE 437922 6191 6067493 2024-02-25 22:07:39.733 2024-02-25 22:07:39.733 22500 TIP 437922 20198 6067504 2024-02-25 22:07:41.004 2024-02-25 22:07:41.004 2500 FEE 437922 16912 6067505 2024-02-25 22:07:41.004 2024-02-25 22:07:41.004 22500 TIP 437922 18815 6067508 2024-02-25 22:08:01.26 2024-02-25 22:08:01.26 1000 FEE 438708 6148 6067540 2024-02-25 22:16:56.303 2024-02-25 22:16:56.303 3300 FEE 438467 17446 6067541 2024-02-25 22:16:56.303 2024-02-25 22:16:56.303 29700 TIP 438467 17221 6067563 2024-02-25 22:20:53.246 2024-02-25 22:20:53.246 3300 FEE 438073 7979 6067564 2024-02-25 22:20:53.246 2024-02-25 22:20:53.246 29700 TIP 438073 4459 6067569 2024-02-25 22:22:14.612 2024-02-25 22:22:14.612 2500 FEE 437284 17710 6067570 2024-02-25 22:22:14.612 2024-02-25 22:22:14.612 22500 TIP 437284 20023 6067615 2024-02-25 22:37:29.011 2024-02-25 22:37:29.011 2100 FEE 438671 1044 6067616 2024-02-25 22:37:29.011 2024-02-25 22:37:29.011 18900 TIP 438671 992 6067670 2024-02-25 22:40:42.035 2024-02-25 22:40:42.035 90000 FEE 438198 21352 6067671 2024-02-25 22:40:42.035 2024-02-25 22:40:42.035 810000 TIP 438198 12708 6067672 2024-02-25 22:40:44.24 2024-02-25 22:40:44.24 90000 FEE 438388 14015 6067673 2024-02-25 22:40:44.24 2024-02-25 22:40:44.24 810000 TIP 438388 5761 6067717 2024-02-25 22:46:21.62 2024-02-25 22:46:21.62 1000 FEE 438057 13921 6067718 2024-02-25 22:46:21.62 2024-02-25 22:46:21.62 9000 TIP 438057 3990 6067731 2024-02-25 22:50:58.521 2024-02-25 22:50:58.521 10000 FEE 438725 1729 6067738 2024-02-25 22:53:50.164 2024-02-25 22:53:50.164 1000 FEE 438669 1717 6067739 2024-02-25 22:53:50.164 2024-02-25 22:53:50.164 9000 TIP 438669 11760 6067748 2024-02-25 22:56:49.839 2024-02-25 22:56:49.839 1000 FEE 438666 2213 6067749 2024-02-25 22:56:49.839 2024-02-25 22:56:49.839 9000 TIP 438666 21402 6067805 2024-02-25 23:16:34.613 2024-02-25 23:16:34.613 900 FEE 438730 21619 6067806 2024-02-25 23:16:34.613 2024-02-25 23:16:34.613 8100 TIP 438730 5942 6067807 2024-02-25 23:16:35.2 2024-02-25 23:16:35.2 9000 FEE 438730 18017 6067808 2024-02-25 23:16:35.2 2024-02-25 23:16:35.2 81000 TIP 438730 18842 6067813 2024-02-25 23:16:48.968 2024-02-25 23:16:48.968 9000 FEE 438700 21014 6067814 2024-02-25 23:16:48.968 2024-02-25 23:16:48.968 81000 TIP 438700 12774 6067822 2024-02-25 23:23:15.552 2024-02-25 23:23:15.552 3300 FEE 438691 14472 6067823 2024-02-25 23:23:15.552 2024-02-25 23:23:15.552 29700 TIP 438691 11075 6067847 2024-02-25 23:26:59.249 2024-02-25 23:26:59.249 500 FEE 438486 992 6067848 2024-02-25 23:26:59.249 2024-02-25 23:26:59.249 4500 TIP 438486 18995 6067859 2024-02-25 23:31:00.699 2024-02-25 23:31:00.699 3300 FEE 438737 16847 6067860 2024-02-25 23:31:00.699 2024-02-25 23:31:00.699 29700 TIP 438737 2123 6067903 2024-02-25 23:40:22.161 2024-02-25 23:40:22.161 1000 FEE 438741 987 6067935 2024-02-25 23:48:09.997 2024-02-25 23:48:09.997 2000 FEE 438746 1198 6067936 2024-02-25 23:48:09.997 2024-02-25 23:48:09.997 18000 TIP 438746 3709 6067953 2024-02-25 23:50:31.32 2024-02-25 23:50:31.32 100 FEE 438433 797 6067954 2024-02-25 23:50:31.32 2024-02-25 23:50:31.32 900 TIP 438433 18678 6067958 2024-02-25 23:52:25.679 2024-02-25 23:52:25.679 100 FEE 438651 17226 6067959 2024-02-25 23:52:25.679 2024-02-25 23:52:25.679 900 TIP 438651 11153 6067975 2024-02-25 23:55:58.186 2024-02-25 23:55:58.186 3100 FEE 438405 19375 6067976 2024-02-25 23:55:58.186 2024-02-25 23:55:58.186 27900 TIP 438405 623 6068016 2024-02-25 23:56:56.461 2024-02-25 23:56:56.461 300 FEE 438749 19281 6068017 2024-02-25 23:56:56.461 2024-02-25 23:56:56.461 2700 TIP 438749 13365 6068028 2024-02-25 23:57:00.151 2024-02-25 23:57:00.151 300 FEE 438749 21271 6068029 2024-02-25 23:57:00.151 2024-02-25 23:57:00.151 2700 TIP 438749 770 6068032 2024-02-25 23:57:00.502 2024-02-25 23:57:00.502 300 FEE 438749 19848 6068033 2024-02-25 23:57:00.502 2024-02-25 23:57:00.502 2700 TIP 438749 2101 6068036 2024-02-25 23:57:00.874 2024-02-25 23:57:00.874 300 FEE 438749 8945 6068037 2024-02-25 23:57:00.874 2024-02-25 23:57:00.874 2700 TIP 438749 15510 6068072 2024-02-25 23:58:26.225 2024-02-25 23:58:26.225 300 FEE 438651 688 6068073 2024-02-25 23:58:26.225 2024-02-25 23:58:26.225 2700 TIP 438651 17331 6068096 2024-02-25 23:58:32.381 2024-02-25 23:58:32.381 100000 FEE 438757 16842 6068097 2024-02-25 23:58:47.698 2024-02-25 23:58:47.698 1000 FEE 438651 4118 6068098 2024-02-25 23:58:47.698 2024-02-25 23:58:47.698 9000 TIP 438651 3213 6068109 2024-02-26 00:00:59.508 2024-02-26 00:00:59.508 6900 FEE 438743 16341 6068110 2024-02-26 00:00:59.508 2024-02-26 00:00:59.508 62100 TIP 438743 2188 6068116 2024-02-26 00:02:48.816 2024-02-26 00:02:48.816 1000 FEE 438393 15624 6068117 2024-02-26 00:02:48.816 2024-02-26 00:02:48.816 9000 TIP 438393 630 6068120 2024-02-26 00:02:53.964 2024-02-26 00:02:53.964 1000 FEE 438760 17166 6068126 2024-02-26 00:03:31.853 2024-02-26 00:03:31.853 1000 FEE 438595 18664 6068127 2024-02-26 00:03:31.853 2024-02-26 00:03:31.853 9000 TIP 438595 9669 6068133 2024-02-26 00:04:54.347 2024-02-26 00:04:54.347 1000 FEE 438761 2061 6068139 2024-02-26 00:05:45.823 2024-02-26 00:05:45.823 3100 FEE 438596 1584 6068140 2024-02-26 00:05:45.823 2024-02-26 00:05:45.823 27900 TIP 438596 18842 6068149 2024-02-26 00:08:33.711 2024-02-26 00:08:33.711 100000 FEE 438763 8541 6068169 2024-02-26 00:13:00.671 2024-02-26 00:13:00.671 7700 FEE 438649 1472 6068170 2024-02-26 00:13:00.671 2024-02-26 00:13:00.671 69300 TIP 438649 10693 6068234 2024-02-26 00:20:09.415 2024-02-26 00:20:09.415 27900 FEE 438605 19096 6068235 2024-02-26 00:20:09.415 2024-02-26 00:20:09.415 251100 TIP 438605 18923 6068259 2024-02-26 00:28:21.331 2024-02-26 00:28:21.331 27900 FEE 438325 13759 6068260 2024-02-26 00:28:21.331 2024-02-26 00:28:21.331 251100 TIP 438325 21064 6068281 2024-02-26 00:31:21.83 2024-02-26 00:31:21.83 100000 FEE 438397 21493 6068282 2024-02-26 00:31:21.83 2024-02-26 00:31:21.83 900000 TIP 438397 18500 6068318 2024-02-26 00:45:59.267 2024-02-26 00:45:59.267 1000 FEE 438788 9353 6068325 2024-02-26 00:46:30.367 2024-02-26 00:46:30.367 1000 FEE 438789 20980 6068329 2024-02-26 00:48:13.095 2024-02-26 00:48:13.095 1000 FEE 438790 21003 6068380 2024-02-26 01:05:32.873 2024-02-26 01:05:32.873 21800 FEE 438702 9352 6068381 2024-02-26 01:05:32.873 2024-02-26 01:05:32.873 196200 TIP 438702 15978 6068386 2024-02-26 01:07:10.744 2024-02-26 01:07:10.744 1000 FEE 438634 18387 6068387 2024-02-26 01:07:10.744 2024-02-26 01:07:10.744 9000 TIP 438634 16839 6068407 2024-02-26 01:14:13.836 2024-02-26 01:14:13.836 1000 POLL 438325 7418 6068448 2024-02-26 01:16:37.756 2024-02-26 01:16:37.756 2700 FEE 438605 19005 6068449 2024-02-26 01:16:37.756 2024-02-26 01:16:37.756 24300 TIP 438605 16649 6068450 2024-02-26 01:16:37.929 2024-02-26 01:16:37.929 2700 FEE 438605 2039 6068451 2024-02-26 01:16:37.929 2024-02-26 01:16:37.929 24300 TIP 438605 15719 6068455 2024-02-26 01:17:10.788 2024-02-26 01:17:10.788 2700 FEE 438651 738 6068456 2024-02-26 01:17:10.788 2024-02-26 01:17:10.788 24300 TIP 438651 678 6068462 2024-02-26 01:18:27.951 2024-02-26 01:18:27.951 1000 POLL 438772 9342 6068467 2024-02-26 01:20:38.963 2024-02-26 01:20:38.963 3100 FEE 438486 11328 6068468 2024-02-26 01:20:38.963 2024-02-26 01:20:38.963 27900 TIP 438486 16296 6068479 2024-02-26 01:22:53.999 2024-02-26 01:22:53.999 500 FEE 438451 19576 6068480 2024-02-26 01:22:53.999 2024-02-26 01:22:53.999 4500 TIP 438451 16948 6068495 2024-02-26 01:23:02.025 2024-02-26 01:23:02.025 500 FEE 438649 5175 6068496 2024-02-26 01:23:02.025 2024-02-26 01:23:02.025 4500 TIP 438649 21012 6068501 2024-02-26 01:23:06.954 2024-02-26 01:23:06.954 500 FEE 438651 18680 6067488 2024-02-25 22:07:39.331 2024-02-25 22:07:39.331 2500 FEE 437922 718 6067489 2024-02-25 22:07:39.331 2024-02-25 22:07:39.331 22500 TIP 437922 9758 6067498 2024-02-25 22:07:40.336 2024-02-25 22:07:40.336 2500 FEE 437922 6471 6067499 2024-02-25 22:07:40.336 2024-02-25 22:07:40.336 22500 TIP 437922 20062 6067529 2024-02-25 22:14:03.429 2024-02-25 22:14:03.429 7700 FEE 438467 652 6067530 2024-02-25 22:14:03.429 2024-02-25 22:14:03.429 69300 TIP 438467 17275 6067551 2024-02-25 22:18:53.719 2024-02-25 22:18:53.719 4000 FEE 438709 6148 6067552 2024-02-25 22:18:53.719 2024-02-25 22:18:53.719 36000 TIP 438709 16912 6067579 2024-02-25 22:23:30.235 2024-02-25 22:23:30.235 0 FEE 438715 5175 6067583 2024-02-25 22:24:14.673 2024-02-25 22:24:14.673 1000 FEE 438717 1552 6067645 2024-02-25 22:39:27.066 2024-02-25 22:39:27.066 900 FEE 438687 19016 6067646 2024-02-25 22:39:27.066 2024-02-25 22:39:27.066 8100 TIP 438687 13406 6067660 2024-02-25 22:40:25.57 2024-02-25 22:40:25.57 900 FEE 438607 2075 6067661 2024-02-25 22:40:25.57 2024-02-25 22:40:25.57 8100 TIP 438607 17639 6067722 2024-02-25 22:47:16.137 2024-02-25 22:47:16.137 1000 POLL 438325 16842 6067743 2024-02-25 22:54:27.243 2024-02-25 22:54:27.243 1000 FEE 438727 15690 6067785 2024-02-25 23:07:01.14 2024-02-25 23:07:01.14 1000 FEE 438583 640 6067786 2024-02-25 23:07:01.14 2024-02-25 23:07:01.14 9000 TIP 438583 9552 6067789 2024-02-25 23:07:51.396 2024-02-25 23:07:51.396 10800 FEE 438305 12606 6067790 2024-02-25 23:07:51.396 2024-02-25 23:07:51.396 97200 TIP 438305 3353 6067797 2024-02-25 23:12:31.776 2024-02-25 23:12:31.776 100000 FEE 438735 1576 6067811 2024-02-25 23:16:48.431 2024-02-25 23:16:48.431 900 FEE 438700 7654 6067812 2024-02-25 23:16:48.431 2024-02-25 23:16:48.431 8100 TIP 438700 5806 6067829 2024-02-25 23:24:31.346 2024-02-25 23:24:31.346 2100 FEE 438724 16754 6067830 2024-02-25 23:24:31.346 2024-02-25 23:24:31.346 18900 TIP 438724 2614 6067832 2024-02-25 23:25:24.381 2024-02-25 23:25:24.381 21000 FEE 438736 21555 6067840 2024-02-25 23:26:16.552 2024-02-25 23:26:16.552 1000 FEE 438414 21040 6067841 2024-02-25 23:26:16.552 2024-02-25 23:26:16.552 9000 TIP 438414 20287 6067845 2024-02-25 23:26:58.915 2024-02-25 23:26:58.915 500 FEE 438486 15115 6067846 2024-02-25 23:26:58.915 2024-02-25 23:26:58.915 4500 TIP 438486 9695 6067855 2024-02-25 23:28:52.365 2024-02-25 23:28:52.365 2100 FEE 438414 21627 6067856 2024-02-25 23:28:52.365 2024-02-25 23:28:52.365 18900 TIP 438414 12965 6067868 2024-02-25 23:33:53.916 2024-02-25 23:33:53.916 4000 FEE 438737 19018 6067869 2024-02-25 23:33:53.916 2024-02-25 23:33:53.916 36000 TIP 438737 959 6067875 2024-02-25 23:36:08.2 2024-02-25 23:36:08.2 1000 POLL 438325 634 6067876 2024-02-25 23:36:28.85 2024-02-25 23:36:28.85 1000 FEE 438740 1785 6067895 2024-02-25 23:38:12.396 2024-02-25 23:38:12.396 1000 FEE 438559 19398 6067896 2024-02-25 23:38:12.396 2024-02-25 23:38:12.396 9000 TIP 438559 21072 6067898 2024-02-25 23:39:26.996 2024-02-25 23:39:26.996 2100 FEE 438737 19484 6067899 2024-02-25 23:39:26.996 2024-02-25 23:39:26.996 18900 TIP 438737 14791 6067904 2024-02-25 23:40:58.666 2024-02-25 23:40:58.666 1000 FEE 438742 13042 6067909 2024-02-25 23:44:12.315 2024-02-25 23:44:12.315 1000 FEE 438092 3717 6067910 2024-02-25 23:44:12.315 2024-02-25 23:44:12.315 9000 TIP 438092 2151 6067914 2024-02-25 23:45:11.446 2024-02-25 23:45:11.446 1000 FEE 438641 1705 6067915 2024-02-25 23:45:11.446 2024-02-25 23:45:11.446 9000 TIP 438641 1124 6067916 2024-02-25 23:45:33.614 2024-02-25 23:45:33.614 1000 FEE 438745 7425 6067994 2024-02-25 23:56:36.168 2024-02-25 23:56:36.168 600 FEE 438749 6229 6067995 2024-02-25 23:56:36.168 2024-02-25 23:56:36.168 5400 TIP 438749 19664 6067996 2024-02-25 23:56:36.562 2024-02-25 23:56:36.562 300 FEE 438749 18529 6067997 2024-02-25 23:56:36.562 2024-02-25 23:56:36.562 2700 TIP 438749 12139 6068056 2024-02-25 23:58:24.539 2024-02-25 23:58:24.539 300 FEE 438651 18896 6068057 2024-02-25 23:58:24.539 2024-02-25 23:58:24.539 2700 TIP 438651 1650 6068058 2024-02-25 23:58:24.739 2024-02-25 23:58:24.739 300 FEE 438651 6383 6068059 2024-02-25 23:58:24.739 2024-02-25 23:58:24.739 2700 TIP 438651 5825 6068062 2024-02-25 23:58:25.18 2024-02-25 23:58:25.18 300 FEE 438651 9350 6068063 2024-02-25 23:58:25.18 2024-02-25 23:58:25.18 2700 TIP 438651 9669 6068064 2024-02-25 23:58:25.393 2024-02-25 23:58:25.393 300 FEE 438651 19976 6068065 2024-02-25 23:58:25.393 2024-02-25 23:58:25.393 2700 TIP 438651 20837 6068070 2024-02-25 23:58:26.043 2024-02-25 23:58:26.043 300 FEE 438651 704 6068071 2024-02-25 23:58:26.043 2024-02-25 23:58:26.043 2700 TIP 438651 10469 6068102 2024-02-25 23:59:34.544 2024-02-25 23:59:34.544 2100 FEE 438746 1438 6068103 2024-02-25 23:59:34.544 2024-02-25 23:59:34.544 18900 TIP 438746 5160 6068104 2024-02-25 23:59:34.589 2024-02-25 23:59:34.589 1000 POLL 438325 21373 6068157 2024-02-26 00:12:47.917 2024-02-26 00:12:47.917 1000 FEE 438758 20058 6068158 2024-02-26 00:12:47.917 2024-02-26 00:12:47.917 9000 TIP 438758 5003 6068161 2024-02-26 00:13:00.354 2024-02-26 00:13:00.354 7700 FEE 438649 5085 6068162 2024-02-26 00:13:00.354 2024-02-26 00:13:00.354 69300 TIP 438649 2326 6068171 2024-02-26 00:13:00.836 2024-02-26 00:13:00.836 7700 FEE 438649 20110 6068172 2024-02-26 00:13:00.836 2024-02-26 00:13:00.836 69300 TIP 438649 14941 6068194 2024-02-26 00:17:02.802 2024-02-26 00:17:02.802 1000 FEE 438765 21178 6068199 2024-02-26 00:17:53.086 2024-02-26 00:17:53.086 1000 FEE 438758 19105 6068200 2024-02-26 00:17:53.086 2024-02-26 00:17:53.086 9000 TIP 438758 8664 6068204 2024-02-26 00:18:26.164 2024-02-26 00:18:26.164 27900 FEE 438451 20964 6068205 2024-02-26 00:18:26.164 2024-02-26 00:18:26.164 251100 TIP 438451 18989 6068208 2024-02-26 00:18:42.904 2024-02-26 00:18:42.904 7700 FEE 438651 20738 6068209 2024-02-26 00:18:42.904 2024-02-26 00:18:42.904 69300 TIP 438651 10469 6068214 2024-02-26 00:18:43.442 2024-02-26 00:18:43.442 7700 FEE 438651 1692 6068215 2024-02-26 00:18:43.442 2024-02-26 00:18:43.442 69300 TIP 438651 4574 6068246 2024-02-26 00:24:37.432 2024-02-26 00:24:37.432 1000 FEE 438771 13406 6068263 2024-02-26 00:29:08.118 2024-02-26 00:29:08.118 2100 FEE 438649 2329 6068264 2024-02-26 00:29:08.118 2024-02-26 00:29:08.118 18900 TIP 438649 21207 6068322 2024-02-26 00:46:03.943 2024-02-26 00:46:03.943 0 FEE 438784 963 6068331 2024-02-26 00:49:23.396 2024-02-26 00:49:23.396 1000 POLL 438325 21361 6068359 2024-02-26 01:04:10.735 2024-02-26 01:04:10.735 300 FEE 438651 20299 6068360 2024-02-26 01:04:10.735 2024-02-26 01:04:10.735 2700 TIP 438651 15843 6068373 2024-02-26 01:04:12.338 2024-02-26 01:04:12.338 300 FEE 438651 811 6068374 2024-02-26 01:04:12.338 2024-02-26 01:04:12.338 2700 TIP 438651 654 6068375 2024-02-26 01:04:12.391 2024-02-26 01:04:12.391 300 FEE 438651 19033 6068376 2024-02-26 01:04:12.391 2024-02-26 01:04:12.391 2700 TIP 438651 20120 6068390 2024-02-26 01:07:31.341 2024-02-26 01:07:31.341 2700 FEE 438691 3409 6068391 2024-02-26 01:07:31.341 2024-02-26 01:07:31.341 24300 TIP 438691 15147 6068392 2024-02-26 01:07:31.468 2024-02-26 01:07:31.468 2700 FEE 438691 21387 6068393 2024-02-26 01:07:31.468 2024-02-26 01:07:31.468 24300 TIP 438691 20481 6068398 2024-02-26 01:10:23.133 2024-02-26 01:10:23.133 100000 FEE 438794 20058 6068403 2024-02-26 01:12:55.306 2024-02-26 01:12:55.306 1000 FEE 438796 1394 6068412 2024-02-26 01:14:16.639 2024-02-26 01:14:16.639 2700 FEE 438738 21509 6068413 2024-02-26 01:14:16.639 2024-02-26 01:14:16.639 24300 TIP 438738 20433 6067519 2024-02-25 22:09:52.056 2024-02-25 22:09:52.056 1000 FEE 438710 18994 6067561 2024-02-25 22:20:44.179 2024-02-25 22:20:44.179 4000 FEE 386717 19987 6067562 2024-02-25 22:20:44.179 2024-02-25 22:20:44.179 36000 TIP 386717 1352 6067622 2024-02-25 22:37:48.635 2024-02-25 22:37:48.635 4000 FEE 438719 9331 6067623 2024-02-25 22:37:48.635 2024-02-25 22:37:48.635 36000 TIP 438719 713 6067627 2024-02-25 22:38:42.158 2024-02-25 22:38:42.158 100 FEE 438694 20852 6067628 2024-02-25 22:38:42.158 2024-02-25 22:38:42.158 900 TIP 438694 5129 6067631 2024-02-25 22:38:48.998 2024-02-25 22:38:48.998 100 FEE 438691 761 6067632 2024-02-25 22:38:48.998 2024-02-25 22:38:48.998 900 TIP 438691 20291 6067692 2024-02-25 22:46:02.92 2024-02-25 22:46:02.92 1000 FEE 438723 20577 6067703 2024-02-25 22:46:12.312 2024-02-25 22:46:12.312 1000 FEE 438334 14045 6067704 2024-02-25 22:46:12.312 2024-02-25 22:46:12.312 9000 TIP 438334 5809 6067707 2024-02-25 22:46:12.626 2024-02-25 22:46:12.626 1000 FEE 438334 20152 6067708 2024-02-25 22:46:12.626 2024-02-25 22:46:12.626 9000 TIP 438334 18784 6067727 2024-02-25 22:49:46.951 2024-02-25 22:49:46.951 1000 FEE 438724 690 6067728 2024-02-25 22:49:52.647 2024-02-25 22:49:52.647 30000 FEE 438718 18659 6067729 2024-02-25 22:49:52.647 2024-02-25 22:49:52.647 270000 TIP 438718 17514 6067769 2024-02-25 23:03:46.818 2024-02-25 23:03:46.818 1000 FEE 438730 20730 6067774 2024-02-25 23:04:53.325 2024-02-25 23:04:53.325 1000 FEE 438732 17708 6067778 2024-02-25 23:05:24.67 2024-02-25 23:05:24.67 100 FEE 438499 14663 6067779 2024-02-25 23:05:24.67 2024-02-25 23:05:24.67 900 TIP 438499 7674 6067803 2024-02-25 23:16:34.199 2024-02-25 23:16:34.199 100 FEE 438730 3518 6067804 2024-02-25 23:16:34.199 2024-02-25 23:16:34.199 900 TIP 438730 9476 6067842 2024-02-25 23:26:16.83 2024-02-25 23:26:16.83 500 FEE 438414 12072 6067843 2024-02-25 23:26:16.83 2024-02-25 23:26:16.83 4500 TIP 438414 13406 6067844 2024-02-25 23:26:20.338 2024-02-25 23:26:20.338 1000 POLL 438414 17570 6067884 2024-02-25 23:37:59.615 2024-02-25 23:37:59.615 100 FEE 438740 21444 6067885 2024-02-25 23:37:59.615 2024-02-25 23:37:59.615 900 TIP 438740 2342 6067886 2024-02-25 23:37:59.841 2024-02-25 23:37:59.841 100 FEE 438740 2338 6067887 2024-02-25 23:37:59.841 2024-02-25 23:37:59.841 900 TIP 438740 3506 6067925 2024-02-25 23:46:23.029 2024-02-25 23:46:23.029 2600 FEE 438469 759 6067926 2024-02-25 23:46:23.029 2024-02-25 23:46:23.029 23400 TIP 438469 9809 6067927 2024-02-25 23:46:27.806 2024-02-25 23:46:27.806 2600 FEE 438434 8713 6067928 2024-02-25 23:46:27.806 2024-02-25 23:46:27.806 23400 TIP 438434 19652 6067937 2024-02-25 23:48:10.536 2024-02-25 23:48:10.536 2000 FEE 438746 2075 6067938 2024-02-25 23:48:10.536 2024-02-25 23:48:10.536 18000 TIP 438746 19463 6067968 2024-02-25 23:53:27.847 2024-02-25 23:53:27.847 1000 FEE 438737 712 6067969 2024-02-25 23:53:27.847 2024-02-25 23:53:27.847 9000 TIP 438737 19147 6067982 2024-02-25 23:56:34.231 2024-02-25 23:56:34.231 300 FEE 438749 9169 6067983 2024-02-25 23:56:34.231 2024-02-25 23:56:34.231 2700 TIP 438749 19812 6067990 2024-02-25 23:56:35.621 2024-02-25 23:56:35.621 300 FEE 438749 21254 6067991 2024-02-25 23:56:35.621 2024-02-25 23:56:35.621 2700 TIP 438749 15549 6068004 2024-02-25 23:56:55.41 2024-02-25 23:56:55.41 300 FEE 438749 12562 6068005 2024-02-25 23:56:55.41 2024-02-25 23:56:55.41 2700 TIP 438749 4487 6068006 2024-02-25 23:56:55.591 2024-02-25 23:56:55.591 300 FEE 438749 9109 6068007 2024-02-25 23:56:55.591 2024-02-25 23:56:55.591 2700 TIP 438749 21357 6068012 2024-02-25 23:56:56.17 2024-02-25 23:56:56.17 300 FEE 438749 15147 6068013 2024-02-25 23:56:56.17 2024-02-25 23:56:56.17 2700 TIP 438749 3656 6068018 2024-02-25 23:56:59.231 2024-02-25 23:56:59.231 300 FEE 438749 17183 6068019 2024-02-25 23:56:59.231 2024-02-25 23:56:59.231 2700 TIP 438749 9159 6068052 2024-02-25 23:58:24.138 2024-02-25 23:58:24.138 300 FEE 438651 21083 6068053 2024-02-25 23:58:24.138 2024-02-25 23:58:24.138 2700 TIP 438651 7827 6068066 2024-02-25 23:58:25.589 2024-02-25 23:58:25.589 300 FEE 438651 11670 6068067 2024-02-25 23:58:25.589 2024-02-25 23:58:25.589 2700 TIP 438651 18313 6068076 2024-02-25 23:58:26.687 2024-02-25 23:58:26.687 300 FEE 438651 5978 6068077 2024-02-25 23:58:26.687 2024-02-25 23:58:26.687 2700 TIP 438651 6749 6068078 2024-02-25 23:58:26.895 2024-02-25 23:58:26.895 300 FEE 438651 9166 6068079 2024-02-25 23:58:26.895 2024-02-25 23:58:26.895 2700 TIP 438651 4650 6068129 2024-02-26 00:04:04.812 2024-02-26 00:04:04.812 3100 FEE 438487 4177 6068130 2024-02-26 00:04:04.812 2024-02-26 00:04:04.812 27900 TIP 438487 8289 6068131 2024-02-26 00:04:05.696 2024-02-26 00:04:05.696 27900 FEE 438487 19320 6068132 2024-02-26 00:04:05.696 2024-02-26 00:04:05.696 251100 TIP 438487 782 6068147 2024-02-26 00:08:04.444 2024-02-26 00:08:04.444 1000 FEE 438065 20109 6068148 2024-02-26 00:08:04.444 2024-02-26 00:08:04.444 9000 TIP 438065 2757 6068151 2024-02-26 00:09:44.528 2024-02-26 00:09:44.528 11000 FEE 438764 16284 6068159 2024-02-26 00:12:59.973 2024-02-26 00:12:59.973 7700 FEE 438649 7674 6068160 2024-02-26 00:12:59.973 2024-02-26 00:12:59.973 69300 TIP 438649 16753 6068188 2024-02-26 00:13:27.096 2024-02-26 00:13:27.096 0 FEE 438762 1039 6068196 2024-02-26 00:17:25.877 2024-02-26 00:17:25.877 1000 FEE 438764 2620 6068197 2024-02-26 00:17:25.877 2024-02-26 00:17:25.877 9000 TIP 438764 797 6068216 2024-02-26 00:18:43.731 2024-02-26 00:18:43.731 15400 FEE 438651 1717 6068217 2024-02-26 00:18:43.731 2024-02-26 00:18:43.731 138600 TIP 438651 13076 6068257 2024-02-26 00:28:20.617 2024-02-26 00:28:20.617 3100 FEE 438325 960 6068258 2024-02-26 00:28:20.617 2024-02-26 00:28:20.617 27900 TIP 438325 21064 6068279 2024-02-26 00:31:11.76 2024-02-26 00:31:11.76 1000 FEE 438776 20892 6068280 2024-02-26 00:31:21.489 2024-02-26 00:31:21.489 1000 FEE 438777 19890 6068294 2024-02-26 00:35:01.85 2024-02-26 00:35:01.85 1000 FEE 438779 1320 6068314 2024-02-26 00:45:41.756 2024-02-26 00:45:41.756 1000 FEE 438786 17494 6068317 2024-02-26 00:45:55.247 2024-02-26 00:45:55.247 1000 FEE 438787 8287 6068400 2024-02-26 01:11:46.691 2024-02-26 01:11:46.691 1000 POLL 438794 20840 6068405 2024-02-26 01:13:10.226 2024-02-26 01:13:10.226 100000 FEE 438797 19021 6068422 2024-02-26 01:14:21.035 2024-02-26 01:14:21.035 2700 FEE 438765 1483 6068423 2024-02-26 01:14:21.035 2024-02-26 01:14:21.035 24300 TIP 438765 1769 6068472 2024-02-26 01:21:10.207 2024-02-26 01:21:10.207 3100 FEE 438691 5791 6068473 2024-02-26 01:21:10.207 2024-02-26 01:21:10.207 27900 TIP 438691 680 6068536 2024-02-26 01:25:40.271 2024-02-26 01:25:40.271 27900 FEE 438393 21369 6068537 2024-02-26 01:25:40.271 2024-02-26 01:25:40.271 251100 TIP 438393 20073 6068539 2024-02-26 01:26:03.969 2024-02-26 01:26:03.969 1000 FEE 438803 5703 6068543 2024-02-26 01:27:31.11 2024-02-26 01:27:31.11 100000 FEE 438806 628 6068544 2024-02-26 01:27:32.551 2024-02-26 01:27:32.551 1000 FEE 438405 17455 6068545 2024-02-26 01:27:32.551 2024-02-26 01:27:32.551 9000 TIP 438405 1316 6068552 2024-02-26 01:27:38.749 2024-02-26 01:27:38.749 1000 FEE 438202 19471 6068553 2024-02-26 01:27:38.749 2024-02-26 01:27:38.749 9000 TIP 438202 13587 6068571 2024-02-26 01:28:40.051 2024-02-26 01:28:40.051 7700 FEE 438737 11996 6068572 2024-02-26 01:28:40.051 2024-02-26 01:28:40.051 69300 TIP 438737 2681 6068592 2024-02-26 01:33:32.224 2024-02-26 01:33:32.224 100000 FEE 438808 19938 6068603 2024-02-26 01:37:27.066 2024-02-26 01:37:27.066 1000 FEE 438583 4102 6068604 2024-02-26 01:37:27.066 2024-02-26 01:37:27.066 9000 TIP 438583 19007 6068626 2024-02-26 01:41:33.343 2024-02-26 01:41:33.343 100 FEE 438804 631 6067542 2024-02-25 22:17:03.569 2024-02-25 22:17:03.569 1000 STREAM 141924 21523 6067584 2024-02-25 22:25:03.607 2024-02-25 22:25:03.607 1000 STREAM 141924 8729 6067638 2024-02-25 22:39:03.697 2024-02-25 22:39:03.697 1000 STREAM 141924 9450 6067726 2024-02-25 22:49:03.737 2024-02-25 22:49:03.737 1000 STREAM 141924 12779 6067735 2024-02-25 22:52:03.798 2024-02-25 22:52:03.798 1000 STREAM 141924 2347 6067681 2024-02-25 22:42:02.161 2024-02-25 22:42:02.161 1000 STREAM 141924 17030 6067687 2024-02-25 22:44:02.187 2024-02-25 22:44:02.187 1000 STREAM 141924 13132 6067691 2024-02-25 22:46:02.187 2024-02-25 22:46:02.187 1000 STREAM 141924 20133 6067725 2024-02-25 22:48:02.223 2024-02-25 22:48:02.223 1000 STREAM 141924 19524 6067732 2024-02-25 22:51:04.204 2024-02-25 22:51:04.204 1000 STREAM 141924 19557 6067715 2024-02-25 22:46:21.456 2024-02-25 22:46:21.456 1000 FEE 438057 6687 6067716 2024-02-25 22:46:21.456 2024-02-25 22:46:21.456 9000 TIP 438057 18608 6067723 2024-02-25 22:47:37.783 2024-02-25 22:47:37.783 2100 FEE 438532 8472 6067724 2024-02-25 22:47:37.783 2024-02-25 22:47:37.783 18900 TIP 438532 5708 6067759 2024-02-25 23:01:34.904 2024-02-25 23:01:34.904 2100 FEE 438727 2188 6067760 2024-02-25 23:01:34.904 2024-02-25 23:01:34.904 18900 TIP 438727 680 6067761 2024-02-25 23:01:57.836 2024-02-25 23:01:57.836 10800 FEE 438554 19533 6067762 2024-02-25 23:01:57.836 2024-02-25 23:01:57.836 97200 TIP 438554 19553 6067771 2024-02-25 23:04:16.824 2024-02-25 23:04:16.824 1000 FEE 438731 21413 6067772 2024-02-25 23:04:33.455 2024-02-25 23:04:33.455 10800 FEE 438538 18829 6067773 2024-02-25 23:04:33.455 2024-02-25 23:04:33.455 97200 TIP 438538 21303 6067809 2024-02-25 23:16:48.204 2024-02-25 23:16:48.204 100 FEE 438700 1618 6067810 2024-02-25 23:16:48.204 2024-02-25 23:16:48.204 900 TIP 438700 6383 6067853 2024-02-25 23:28:43.964 2024-02-25 23:28:43.964 2100 FEE 438469 1474 6067854 2024-02-25 23:28:43.964 2024-02-25 23:28:43.964 18900 TIP 438469 7903 6067882 2024-02-25 23:37:59.374 2024-02-25 23:37:59.374 100 FEE 438740 14651 6067883 2024-02-25 23:37:59.374 2024-02-25 23:37:59.374 900 TIP 438740 4175 6067892 2024-02-25 23:38:01.372 2024-02-25 23:38:01.372 100 FEE 438740 6058 6067893 2024-02-25 23:38:01.372 2024-02-25 23:38:01.372 900 TIP 438740 19267 6067900 2024-02-25 23:39:28.659 2024-02-25 23:39:28.659 2100 FEE 438734 18704 6067901 2024-02-25 23:39:28.659 2024-02-25 23:39:28.659 18900 TIP 438734 21412 6067917 2024-02-25 23:46:01.566 2024-02-25 23:46:01.566 2600 FEE 438489 21274 6067918 2024-02-25 23:46:01.566 2024-02-25 23:46:01.566 23400 TIP 438489 9364 6067923 2024-02-25 23:46:15.061 2024-02-25 23:46:15.061 10000 FEE 438500 18525 6067924 2024-02-25 23:46:15.061 2024-02-25 23:46:15.061 90000 TIP 438500 1624 6067930 2024-02-25 23:46:39.89 2024-02-25 23:46:39.89 1000 FEE 438718 17030 6067931 2024-02-25 23:46:39.89 2024-02-25 23:46:39.89 9000 TIP 438718 21014 6068008 2024-02-25 23:56:55.772 2024-02-25 23:56:55.772 300 FEE 438749 16954 6068009 2024-02-25 23:56:55.772 2024-02-25 23:56:55.772 2700 TIP 438749 14657 6068026 2024-02-25 23:56:59.946 2024-02-25 23:56:59.946 300 FEE 438749 1286 6068027 2024-02-25 23:56:59.946 2024-02-25 23:56:59.946 2700 TIP 438749 1007 6068046 2024-02-25 23:58:23.552 2024-02-25 23:58:23.552 300 FEE 438651 15536 6068047 2024-02-25 23:58:23.552 2024-02-25 23:58:23.552 2700 TIP 438651 12965 6068088 2024-02-25 23:58:28.017 2024-02-25 23:58:28.017 300 FEE 438651 20979 6068089 2024-02-25 23:58:28.017 2024-02-25 23:58:28.017 2700 TIP 438651 18468 6068090 2024-02-25 23:58:28.215 2024-02-25 23:58:28.215 300 FEE 438651 9351 6068091 2024-02-25 23:58:28.215 2024-02-25 23:58:28.215 2700 TIP 438651 618 6068092 2024-02-25 23:58:28.455 2024-02-25 23:58:28.455 300 FEE 438651 11862 6068093 2024-02-25 23:58:28.455 2024-02-25 23:58:28.455 2700 TIP 438651 21044 6068094 2024-02-25 23:58:28.656 2024-02-25 23:58:28.656 300 FEE 438651 6041 6068095 2024-02-25 23:58:28.656 2024-02-25 23:58:28.656 2700 TIP 438651 4079 6068113 2024-02-26 00:01:43.588 2024-02-26 00:01:43.588 1000 FEE 438691 6393 6068114 2024-02-26 00:01:43.588 2024-02-26 00:01:43.588 9000 TIP 438691 2328 6068153 2024-02-26 00:10:53.813 2024-02-26 00:10:53.813 1600 FEE 438649 20163 6068154 2024-02-26 00:10:53.813 2024-02-26 00:10:53.813 14400 TIP 438649 8459 6068181 2024-02-26 00:13:01.431 2024-02-26 00:13:01.431 15400 FEE 438649 9159 6068182 2024-02-26 00:13:01.431 2024-02-26 00:13:01.431 138600 TIP 438649 20525 6068218 2024-02-26 00:18:43.964 2024-02-26 00:18:43.964 15400 FEE 438651 20495 6068219 2024-02-26 00:18:43.964 2024-02-26 00:18:43.964 138600 TIP 438651 16270 6068224 2024-02-26 00:18:44.676 2024-02-26 00:18:44.676 7700 FEE 438651 1692 6068225 2024-02-26 00:18:44.676 2024-02-26 00:18:44.676 69300 TIP 438651 1800 6068251 2024-02-26 00:26:53.247 2024-02-26 00:26:53.247 10000 FEE 438772 8448 6068336 2024-02-26 00:51:56.407 2024-02-26 00:51:56.407 400 FEE 438785 4776 6068337 2024-02-26 00:51:56.407 2024-02-26 00:51:56.407 3600 TIP 438785 21047 6068347 2024-02-26 00:59:32.782 2024-02-26 00:59:32.782 3100 FEE 438737 11527 6068348 2024-02-26 00:59:32.782 2024-02-26 00:59:32.782 27900 TIP 438737 18351 6068349 2024-02-26 00:59:33.448 2024-02-26 00:59:33.448 27900 FEE 438737 18452 6068350 2024-02-26 00:59:33.448 2024-02-26 00:59:33.448 251100 TIP 438737 19809 6068356 2024-02-26 01:03:30.556 2024-02-26 01:03:30.556 21800 FEE 438692 1723 6068357 2024-02-26 01:03:30.556 2024-02-26 01:03:30.556 196200 TIP 438692 8004 6068367 2024-02-26 01:04:11.562 2024-02-26 01:04:11.562 300 FEE 438651 7818 6068368 2024-02-26 01:04:11.562 2024-02-26 01:04:11.562 2700 TIP 438651 21619 6068416 2024-02-26 01:14:20.5 2024-02-26 01:14:20.5 2700 FEE 438765 16193 6068417 2024-02-26 01:14:20.5 2024-02-26 01:14:20.5 24300 TIP 438765 14376 6068418 2024-02-26 01:14:20.689 2024-02-26 01:14:20.689 2700 FEE 438765 1825 6068419 2024-02-26 01:14:20.689 2024-02-26 01:14:20.689 24300 TIP 438765 5519 6068434 2024-02-26 01:14:55.05 2024-02-26 01:14:55.05 4000 FEE 438718 633 6068435 2024-02-26 01:14:55.05 2024-02-26 01:14:55.05 36000 TIP 438718 15526 6068444 2024-02-26 01:16:37.405 2024-02-26 01:16:37.405 2700 FEE 438605 10728 6068445 2024-02-26 01:16:37.405 2024-02-26 01:16:37.405 24300 TIP 438605 17116 6068466 2024-02-26 01:20:34.29 2024-02-26 01:20:34.29 1000 FEE 438800 13042 6068481 2024-02-26 01:22:54.819 2024-02-26 01:22:54.819 500 FEE 438065 1890 6068482 2024-02-26 01:22:54.819 2024-02-26 01:22:54.819 4500 TIP 438065 12278 6068498 2024-02-26 01:23:04.097 2024-02-26 01:23:04.097 1000 FEE 438801 12024 6068499 2024-02-26 01:23:04.45 2024-02-26 01:23:04.45 500 FEE 438209 1692 6068500 2024-02-26 01:23:04.45 2024-02-26 01:23:04.45 4500 TIP 438209 20922 6068510 2024-02-26 01:23:17.752 2024-02-26 01:23:17.752 500 FEE 438416 848 6068511 2024-02-26 01:23:17.752 2024-02-26 01:23:17.752 4500 TIP 438416 5495 6068516 2024-02-26 01:23:36.426 2024-02-26 01:23:36.426 500 FEE 438073 19857 6068517 2024-02-26 01:23:36.426 2024-02-26 01:23:36.426 4500 TIP 438073 17415 6068518 2024-02-26 01:23:36.657 2024-02-26 01:23:36.657 500 FEE 438073 6533 6068519 2024-02-26 01:23:36.657 2024-02-26 01:23:36.657 4500 TIP 438073 4304 6068554 2024-02-26 01:27:49.008 2024-02-26 01:27:49.008 1000 FEE 438467 12819 6068555 2024-02-26 01:27:49.008 2024-02-26 01:27:49.008 9000 TIP 438467 4035 6068563 2024-02-26 01:28:06.551 2024-02-26 01:28:06.551 7700 FEE 438771 16513 6068564 2024-02-26 01:28:06.551 2024-02-26 01:28:06.551 69300 TIP 438771 19848 6068573 2024-02-26 01:28:41.076 2024-02-26 01:28:41.076 7700 FEE 438737 1136 6068574 2024-02-26 01:28:41.076 2024-02-26 01:28:41.076 69300 TIP 438737 14357 6068620 2024-02-26 01:40:03.796 2024-02-26 01:40:03.796 1000 FEE 438809 763 6068647 2024-02-26 01:44:39.634 2024-02-26 01:44:39.634 1000 FEE 438416 19848 6068648 2024-02-26 01:44:39.634 2024-02-26 01:44:39.634 9000 TIP 438416 1173 6068649 2024-02-26 01:44:53.456 2024-02-26 01:44:53.456 1000 FEE 438073 13217 6068650 2024-02-26 01:44:53.456 2024-02-26 01:44:53.456 9000 TIP 438073 18313 6068669 2024-02-26 01:49:58.65 2024-02-26 01:49:58.65 10000 FEE 438808 5825 6068670 2024-02-26 01:49:58.65 2024-02-26 01:49:58.65 90000 TIP 438808 20157 6068678 2024-02-26 01:52:54.848 2024-02-26 01:52:54.848 2100 FEE 438812 19639 6068679 2024-02-26 01:52:54.848 2024-02-26 01:52:54.848 18900 TIP 438812 14169 6068686 2024-02-26 01:58:04.738 2024-02-26 01:58:04.738 21000 FEE 438813 5779 6068728 2024-02-26 02:12:44.309 2024-02-26 02:12:44.309 1100 FEE 438065 940 6068729 2024-02-26 02:12:44.309 2024-02-26 02:12:44.309 9900 TIP 438065 828 6068731 2024-02-26 02:13:56.853 2024-02-26 02:13:56.853 1100 FEE 438753 5565 6068732 2024-02-26 02:13:56.853 2024-02-26 02:13:56.853 9900 TIP 438753 21208 6068775 2024-02-26 02:27:01.672 2024-02-26 02:27:01.672 100 FEE 438796 16284 6068776 2024-02-26 02:27:01.672 2024-02-26 02:27:01.672 900 TIP 438796 797 6068786 2024-02-26 02:27:08.889 2024-02-26 02:27:08.889 900 FEE 438765 21418 6067719 2024-02-25 22:46:21.769 2024-02-25 22:46:21.769 1000 FEE 438057 623 6067720 2024-02-25 22:46:21.769 2024-02-25 22:46:21.769 9000 TIP 438057 16126 6067737 2024-02-25 22:53:10.451 2024-02-25 22:53:10.451 1000 FEE 438726 1726 6067745 2024-02-25 22:54:57.914 2024-02-25 22:54:57.914 0 FEE 438728 902 6067756 2024-02-25 23:00:34.998 2024-02-25 23:00:34.998 500 FEE 438722 5495 6067757 2024-02-25 23:00:34.998 2024-02-25 23:00:34.998 4500 TIP 438722 21556 6067766 2024-02-25 23:03:29.726 2024-02-25 23:03:29.726 1000 POLL 438202 4259 6067776 2024-02-25 23:05:12.938 2024-02-25 23:05:12.938 1000 FEE 438486 16942 6067777 2024-02-25 23:05:12.938 2024-02-25 23:05:12.938 9000 TIP 438486 11885 6067824 2024-02-25 23:23:16.161 2024-02-25 23:23:16.161 3300 FEE 438691 701 6067825 2024-02-25 23:23:16.161 2024-02-25 23:23:16.161 29700 TIP 438691 4084 6067852 2024-02-25 23:28:41.504 2024-02-25 23:28:41.504 10000 FEE 438737 12609 6067890 2024-02-25 23:38:00.52 2024-02-25 23:38:00.52 100 FEE 438740 5171 6067891 2024-02-25 23:38:00.52 2024-02-25 23:38:00.52 900 TIP 438740 16259 6067911 2024-02-25 23:44:24.074 2024-02-25 23:44:24.074 1000 FEE 438743 20205 6067944 2024-02-25 23:49:10.159 2024-02-25 23:49:10.159 1000 FEE 438751 15833 6067945 2024-02-25 23:49:20.096 2024-02-25 23:49:20.096 200 FEE 437775 1307 6067946 2024-02-25 23:49:20.096 2024-02-25 23:49:20.096 1800 TIP 437775 12819 6067947 2024-02-25 23:49:26.745 2024-02-25 23:49:26.745 0 FEE 438751 18225 6067955 2024-02-25 23:50:33.792 2024-02-25 23:50:33.792 1000 FEE 438752 6573 6067964 2024-02-25 23:52:39.625 2024-02-25 23:52:39.625 2100 FEE 438691 13878 6067965 2024-02-25 23:52:39.625 2024-02-25 23:52:39.625 18900 TIP 438691 20062 6067980 2024-02-25 23:56:34.062 2024-02-25 23:56:34.062 300 FEE 438749 20897 6067981 2024-02-25 23:56:34.062 2024-02-25 23:56:34.062 2700 TIP 438749 5003 6067986 2024-02-25 23:56:34.824 2024-02-25 23:56:34.824 300 FEE 438749 14385 6067987 2024-02-25 23:56:34.824 2024-02-25 23:56:34.824 2700 TIP 438749 2101 6068030 2024-02-25 23:57:00.323 2024-02-25 23:57:00.323 300 FEE 438749 15978 6068031 2024-02-25 23:57:00.323 2024-02-25 23:57:00.323 2700 TIP 438749 19034 6068034 2024-02-25 23:57:00.704 2024-02-25 23:57:00.704 300 FEE 438749 814 6068035 2024-02-25 23:57:00.704 2024-02-25 23:57:00.704 2700 TIP 438749 18180 6068060 2024-02-25 23:58:24.957 2024-02-25 23:58:24.957 300 FEE 438651 1173 6068061 2024-02-25 23:58:24.957 2024-02-25 23:58:24.957 2700 TIP 438651 6741 6068084 2024-02-25 23:58:27.64 2024-02-25 23:58:27.64 300 FEE 438651 19198 6068085 2024-02-25 23:58:27.64 2024-02-25 23:58:27.64 2700 TIP 438651 13854 6068118 2024-02-26 00:02:51.939 2024-02-26 00:02:51.939 4000 FEE 438756 658 6068119 2024-02-26 00:02:51.939 2024-02-26 00:02:51.939 36000 TIP 438756 16270 6068177 2024-02-26 00:13:01.121 2024-02-26 00:13:01.121 7700 FEE 438649 18817 6068178 2024-02-26 00:13:01.121 2024-02-26 00:13:01.121 69300 TIP 438649 15049 6068206 2024-02-26 00:18:42.747 2024-02-26 00:18:42.747 7700 FEE 438651 811 6068207 2024-02-26 00:18:42.747 2024-02-26 00:18:42.747 69300 TIP 438651 18736 6068212 2024-02-26 00:18:43.208 2024-02-26 00:18:43.208 7700 FEE 438651 20854 6068213 2024-02-26 00:18:43.208 2024-02-26 00:18:43.208 69300 TIP 438651 17827 6068220 2024-02-26 00:18:44.26 2024-02-26 00:18:44.26 7700 FEE 438651 13599 6068221 2024-02-26 00:18:44.26 2024-02-26 00:18:44.26 69300 TIP 438651 5961 6068226 2024-02-26 00:18:44.793 2024-02-26 00:18:44.793 7700 FEE 438651 17209 6068227 2024-02-26 00:18:44.793 2024-02-26 00:18:44.793 69300 TIP 438651 9863 6068244 2024-02-26 00:24:17.661 2024-02-26 00:24:17.661 10000 FEE 438361 636 6068245 2024-02-26 00:24:17.661 2024-02-26 00:24:17.661 90000 TIP 438361 2620 6068248 2024-02-26 00:25:55.733 2024-02-26 00:25:55.733 10000 FEE 438763 805 6068249 2024-02-26 00:25:55.733 2024-02-26 00:25:55.733 90000 TIP 438763 20854 6068255 2024-02-26 00:27:38.851 2024-02-26 00:27:38.851 1000 FEE 438773 12139 6068291 2024-02-26 00:34:22.583 2024-02-26 00:34:22.583 40000 FEE 433895 16351 6068292 2024-02-26 00:34:22.583 2024-02-26 00:34:22.583 360000 TIP 433895 19663 6068302 2024-02-26 00:39:34.047 2024-02-26 00:39:34.047 1000 POLL 438414 13931 6068306 2024-02-26 00:42:34.723 2024-02-26 00:42:34.723 1000 FEE 438782 21441 6068310 2024-02-26 00:44:25.236 2024-02-26 00:44:25.236 1000 POLL 438414 2963 6068311 2024-02-26 00:44:26.964 2024-02-26 00:44:26.964 1000 FEE 438784 16706 6068323 2024-02-26 00:46:09.791 2024-02-26 00:46:09.791 4200 FEE 438776 5794 6068324 2024-02-26 00:46:09.791 2024-02-26 00:46:09.791 37800 TIP 438776 17217 6068363 2024-02-26 01:04:10.998 2024-02-26 01:04:10.998 300 FEE 438651 16004 6068364 2024-02-26 01:04:10.998 2024-02-26 01:04:10.998 2700 TIP 438651 18641 6068377 2024-02-26 01:04:49.919 2024-02-26 01:04:49.919 21800 FEE 438760 5725 6068378 2024-02-26 01:04:49.919 2024-02-26 01:04:49.919 196200 TIP 438760 2061 6068430 2024-02-26 01:14:37.86 2024-02-26 01:14:37.86 2700 FEE 438630 19398 6068431 2024-02-26 01:14:37.86 2024-02-26 01:14:37.86 24300 TIP 438630 20450 6068446 2024-02-26 01:16:37.581 2024-02-26 01:16:37.581 2700 FEE 438605 1817 6068447 2024-02-26 01:16:37.581 2024-02-26 01:16:37.581 24300 TIP 438605 8269 6068452 2024-02-26 01:16:38.067 2024-02-26 01:16:38.067 2700 FEE 438605 5173 6068453 2024-02-26 01:16:38.067 2024-02-26 01:16:38.067 24300 TIP 438605 19403 6068477 2024-02-26 01:22:52.995 2024-02-26 01:22:52.995 500 FEE 438405 21491 6068478 2024-02-26 01:22:52.995 2024-02-26 01:22:52.995 4500 TIP 438405 2525 6068503 2024-02-26 01:23:07.914 2024-02-26 01:23:07.914 500 FEE 437966 21062 6068504 2024-02-26 01:23:07.914 2024-02-26 01:23:07.914 4500 TIP 437966 4984 6068508 2024-02-26 01:23:17.337 2024-02-26 01:23:17.337 500 FEE 438416 876 6068509 2024-02-26 01:23:17.337 2024-02-26 01:23:17.337 4500 TIP 438416 672 6068520 2024-02-26 01:23:47.815 2024-02-26 01:23:47.815 500 FEE 438434 640 6068521 2024-02-26 01:23:47.815 2024-02-26 01:23:47.815 4500 TIP 438434 19661 6068533 2024-02-26 01:25:37.23 2024-02-26 01:25:37.23 0 FEE 438303 12779 6068534 2024-02-26 01:25:37.485 2024-02-26 01:25:37.485 3100 FEE 438393 13987 6068535 2024-02-26 01:25:37.485 2024-02-26 01:25:37.485 27900 TIP 438393 20287 6068565 2024-02-26 01:28:08.245 2024-02-26 01:28:08.245 7700 FEE 438789 15115 6068566 2024-02-26 01:28:08.245 2024-02-26 01:28:08.245 69300 TIP 438789 19902 6068612 2024-02-26 01:38:53.415 2024-02-26 01:38:53.415 1000 FEE 438345 18772 6068613 2024-02-26 01:38:53.415 2024-02-26 01:38:53.415 9000 TIP 438345 2789 6068621 2024-02-26 01:40:17.969 2024-02-26 01:40:17.969 1000 FEE 438209 19864 6068622 2024-02-26 01:40:17.969 2024-02-26 01:40:17.969 9000 TIP 438209 2519 6068625 2024-02-26 01:41:28.476 2024-02-26 01:41:28.476 1000 FEE 438810 763 6068689 2024-02-26 01:58:33.305 2024-02-26 01:58:33.305 1000 FEE 438794 13781 6068690 2024-02-26 01:58:33.305 2024-02-26 01:58:33.305 9000 TIP 438794 20599 6068692 2024-02-26 01:59:36.187 2024-02-26 01:59:36.187 2100 FEE 438746 7395 6068693 2024-02-26 01:59:36.187 2024-02-26 01:59:36.187 18900 TIP 438746 15075 6068698 2024-02-26 02:01:44.467 2024-02-26 02:01:44.467 2100 FEE 438737 19512 6068699 2024-02-26 02:01:44.467 2024-02-26 02:01:44.467 18900 TIP 438737 18941 6068713 2024-02-26 02:07:10.892 2024-02-26 02:07:10.892 9000 FEE 438813 629 6068714 2024-02-26 02:07:10.892 2024-02-26 02:07:10.892 81000 TIP 438813 14503 6068718 2024-02-26 02:08:45.662 2024-02-26 02:08:45.662 100 FEE 438737 1890 6068719 2024-02-26 02:08:45.662 2024-02-26 02:08:45.662 900 TIP 438737 624 6068723 2024-02-26 02:09:27.441 2024-02-26 02:09:27.441 1100 FEE 438583 9036 6068724 2024-02-26 02:09:27.441 2024-02-26 02:09:27.441 9900 TIP 438583 8423 6068751 2024-02-26 02:21:08.361 2024-02-26 02:21:08.361 800 FEE 438529 5776 6068752 2024-02-26 02:21:08.361 2024-02-26 02:21:08.361 7200 TIP 438529 11996 6068782 2024-02-26 02:27:07.203 2024-02-26 02:27:07.203 10000 FEE 438737 11515 6068783 2024-02-26 02:27:07.203 2024-02-26 02:27:07.203 90000 TIP 438737 17218 6068839 2024-02-26 02:30:23.066 2024-02-26 02:30:23.066 9000 FEE 438814 17094 6067753 2024-02-25 22:58:04.568 2024-02-25 22:58:04.568 1000 STREAM 141924 20450 6067754 2024-02-25 22:59:02.576 2024-02-25 22:59:02.576 1000 STREAM 141924 14381 6067755 2024-02-25 23:00:04.64 2024-02-25 23:00:04.64 1000 STREAM 141924 20094 6067758 2024-02-25 23:01:02.576 2024-02-25 23:01:02.576 1000 STREAM 141924 17183 6067792 2024-02-25 23:09:02.666 2024-02-25 23:09:02.666 1000 STREAM 141924 13042 6067794 2024-02-25 23:11:02.668 2024-02-25 23:11:02.668 1000 STREAM 141924 18583 6067800 2024-02-25 23:14:04.685 2024-02-25 23:14:04.685 1000 STREAM 141924 21334 6067801 2024-02-25 23:15:02.696 2024-02-25 23:15:02.696 1000 STREAM 141924 4079 6067802 2024-02-25 23:16:02.69 2024-02-25 23:16:02.69 1000 STREAM 141924 19036 6067817 2024-02-25 23:19:02.711 2024-02-25 23:19:02.711 1000 STREAM 141924 891 6067819 2024-02-25 23:21:02.704 2024-02-25 23:21:02.704 1000 STREAM 141924 17184 6067820 2024-02-25 23:22:02.702 2024-02-25 23:22:02.702 1000 STREAM 141924 1959 6067828 2024-02-25 23:24:02.705 2024-02-25 23:24:02.705 1000 STREAM 141924 4819 6067831 2024-02-25 23:25:02.728 2024-02-25 23:25:02.728 1000 STREAM 141924 688 6067849 2024-02-25 23:27:02.745 2024-02-25 23:27:02.745 1000 STREAM 141924 6688 6067857 2024-02-25 23:29:04.755 2024-02-25 23:29:04.755 1000 STREAM 141924 21379 6067858 2024-02-25 23:30:02.773 2024-02-25 23:30:02.773 1000 STREAM 141924 4259 6067865 2024-02-25 23:33:02.784 2024-02-25 23:33:02.784 1000 STREAM 141924 18529 6068111 2024-02-26 00:01:02.982 2024-02-26 00:01:02.982 1000 STREAM 141924 20717 6068128 2024-02-26 00:04:03.025 2024-02-26 00:04:03.025 1000 STREAM 141924 10862 6068150 2024-02-26 00:09:03.086 2024-02-26 00:09:03.086 1000 STREAM 141924 20182 6068156 2024-02-26 00:12:03.117 2024-02-26 00:12:03.117 1000 STREAM 141924 7916 6068187 2024-02-26 00:13:03.12 2024-02-26 00:13:03.12 1000 STREAM 141924 9655 6068189 2024-02-26 00:14:03.125 2024-02-26 00:14:03.125 1000 STREAM 141924 9985 6068192 2024-02-26 00:15:03.137 2024-02-26 00:15:03.137 1000 STREAM 141924 20133 6068193 2024-02-26 00:16:03.135 2024-02-26 00:16:03.135 1000 STREAM 141924 777 6068201 2024-02-26 00:18:03.158 2024-02-26 00:18:03.158 1000 STREAM 141924 18909 6068230 2024-02-26 00:19:03.139 2024-02-26 00:19:03.139 1000 STREAM 141924 20560 6068231 2024-02-26 00:20:03.172 2024-02-26 00:20:03.172 1000 STREAM 141924 19553 6068237 2024-02-26 00:21:03.146 2024-02-26 00:21:03.146 1000 STREAM 141924 672 6068238 2024-02-26 00:22:03.15 2024-02-26 00:22:03.15 1000 STREAM 141924 14080 6068243 2024-02-26 00:24:03.164 2024-02-26 00:24:03.164 1000 STREAM 141924 18525 6068250 2024-02-26 00:26:03.178 2024-02-26 00:26:03.178 1000 STREAM 141924 9476 6068262 2024-02-26 00:29:03.193 2024-02-26 00:29:03.193 1000 STREAM 141924 827 6068274 2024-02-26 00:30:03.235 2024-02-26 00:30:03.235 1000 STREAM 141924 1959 6068288 2024-02-26 00:34:03.205 2024-02-26 00:34:03.205 1000 STREAM 141924 19292 6068295 2024-02-26 00:35:03.224 2024-02-26 00:35:03.224 1000 STREAM 141924 16848 6068296 2024-02-26 00:36:03.22 2024-02-26 00:36:03.22 1000 STREAM 141924 15052 6068298 2024-02-26 00:37:03.234 2024-02-26 00:37:03.234 1000 STREAM 141924 8360 6068299 2024-02-26 00:38:03.246 2024-02-26 00:38:03.246 1000 STREAM 141924 19346 6068304 2024-02-26 00:41:03.279 2024-02-26 00:41:03.279 1000 STREAM 141924 11450 6068305 2024-02-26 00:42:03.284 2024-02-26 00:42:03.284 1000 STREAM 141924 632 6068307 2024-02-26 00:43:03.305 2024-02-26 00:43:03.305 1000 STREAM 141924 20109 6068321 2024-02-26 00:46:03.332 2024-02-26 00:46:03.332 1000 STREAM 141924 16124 6068330 2024-02-26 00:49:03.354 2024-02-26 00:49:03.354 1000 STREAM 141924 13927 6068339 2024-02-26 00:52:03.404 2024-02-26 00:52:03.404 1000 STREAM 141924 1472 6068340 2024-02-26 00:53:03.401 2024-02-26 00:53:03.401 1000 STREAM 141924 11395 6068343 2024-02-26 00:56:03.422 2024-02-26 00:56:03.422 1000 STREAM 141924 4048 6068346 2024-02-26 00:59:03.465 2024-02-26 00:59:03.465 1000 STREAM 141924 16789 6068351 2024-02-26 01:00:03.523 2024-02-26 01:00:03.523 1000 STREAM 141924 673 6068353 2024-02-26 01:02:03.498 2024-02-26 01:02:03.498 1000 STREAM 141924 16456 6068379 2024-02-26 01:05:03.521 2024-02-26 01:05:03.521 1000 STREAM 141924 19352 6068384 2024-02-26 01:06:03.529 2024-02-26 01:06:03.529 1000 STREAM 141924 15941 6068399 2024-02-26 01:11:03.571 2024-02-26 01:11:03.571 1000 STREAM 141924 16753 6068406 2024-02-26 01:14:03.593 2024-02-26 01:14:03.593 1000 STREAM 141924 20554 6068441 2024-02-26 01:16:03.615 2024-02-26 01:16:03.615 1000 STREAM 141924 9365 6068454 2024-02-26 01:17:03.619 2024-02-26 01:17:03.619 1000 STREAM 141924 2061 6067796 2024-02-25 23:12:04.804 2024-02-25 23:12:04.804 1000 STREAM 141924 11378 6067879 2024-02-25 23:37:04.495 2024-02-25 23:37:04.495 1000 STREAM 141924 1584 6067902 2024-02-25 23:40:04.557 2024-02-25 23:40:04.557 1000 STREAM 141924 882 6067905 2024-02-25 23:41:02.511 2024-02-25 23:41:02.511 1000 STREAM 141924 766 6067906 2024-02-25 23:42:02.513 2024-02-25 23:42:02.513 1000 STREAM 141924 5758 6067907 2024-02-25 23:43:04.516 2024-02-25 23:43:04.516 1000 STREAM 141924 19640 6067908 2024-02-25 23:44:02.515 2024-02-25 23:44:02.515 1000 STREAM 141924 20979 6067919 2024-02-25 23:46:04.523 2024-02-25 23:46:04.523 1000 STREAM 141924 5904 6067934 2024-02-25 23:48:04.533 2024-02-25 23:48:04.533 1000 STREAM 141924 994 6067943 2024-02-25 23:49:02.536 2024-02-25 23:49:02.536 1000 STREAM 141924 6137 6067956 2024-02-25 23:51:02.555 2024-02-25 23:51:02.555 1000 STREAM 141924 940 6067957 2024-02-25 23:52:02.555 2024-02-25 23:52:02.555 1000 STREAM 141924 664 6067979 2024-02-25 23:56:02.577 2024-02-25 23:56:02.577 1000 STREAM 141924 1162 6068042 2024-02-25 23:57:02.575 2024-02-25 23:57:02.575 1000 STREAM 141924 19286 6068043 2024-02-25 23:58:02.572 2024-02-25 23:58:02.572 1000 STREAM 141924 913 6068101 2024-02-25 23:59:02.583 2024-02-25 23:59:02.583 1000 STREAM 141924 5128 6067894 2024-02-25 23:38:02.496 2024-02-25 23:38:02.496 1000 STREAM 141924 4391 6067897 2024-02-25 23:39:02.506 2024-02-25 23:39:02.506 1000 STREAM 141924 8385 6067912 2024-02-25 23:45:02.521 2024-02-25 23:45:02.521 1000 STREAM 141924 21026 6067932 2024-02-25 23:47:02.523 2024-02-25 23:47:02.523 1000 STREAM 141924 20117 6067948 2024-02-25 23:50:04.539 2024-02-25 23:50:04.539 1000 STREAM 141924 19601 6067967 2024-02-25 23:53:02.577 2024-02-25 23:53:02.577 1000 STREAM 141924 19690 6067971 2024-02-25 23:54:02.564 2024-02-25 23:54:02.564 1000 STREAM 141924 21275 6067973 2024-02-25 23:55:02.565 2024-02-25 23:55:02.565 1000 STREAM 141924 16194 6068105 2024-02-26 00:00:03.047 2024-02-26 00:00:03.047 1000 STREAM 141924 777 6068115 2024-02-26 00:02:02.997 2024-02-26 00:02:02.997 1000 STREAM 141924 15463 6068121 2024-02-26 00:03:03.013 2024-02-26 00:03:03.013 1000 STREAM 141924 13759 6068138 2024-02-26 00:05:03.031 2024-02-26 00:05:03.031 1000 STREAM 141924 21612 6068143 2024-02-26 00:06:03.042 2024-02-26 00:06:03.042 1000 STREAM 141924 21091 6068144 2024-02-26 00:07:03.029 2024-02-26 00:07:03.029 1000 STREAM 141924 18941 6068146 2024-02-26 00:08:03.071 2024-02-26 00:08:03.071 1000 STREAM 141924 18177 6068152 2024-02-26 00:10:03.134 2024-02-26 00:10:03.134 1000 STREAM 141924 15159 6068195 2024-02-26 00:17:03.128 2024-02-26 00:17:03.128 1000 STREAM 141924 1008 6068241 2024-02-26 00:23:03.161 2024-02-26 00:23:03.161 1000 STREAM 141924 14650 6068247 2024-02-26 00:25:03.156 2024-02-26 00:25:03.156 1000 STREAM 141924 712 6068252 2024-02-26 00:27:03.193 2024-02-26 00:27:03.193 1000 STREAM 141924 928 6068256 2024-02-26 00:28:03.201 2024-02-26 00:28:03.201 1000 STREAM 141924 21061 6068276 2024-02-26 00:31:03.205 2024-02-26 00:31:03.205 1000 STREAM 141924 658 6068283 2024-02-26 00:32:03.206 2024-02-26 00:32:03.206 1000 STREAM 141924 17707 6068286 2024-02-26 00:33:03.21 2024-02-26 00:33:03.21 1000 STREAM 141924 19030 6068301 2024-02-26 00:39:03.258 2024-02-26 00:39:03.258 1000 STREAM 141924 14791 6068303 2024-02-26 00:40:03.267 2024-02-26 00:40:03.267 1000 STREAM 141924 9246 6068309 2024-02-26 00:44:03.32 2024-02-26 00:44:03.32 1000 STREAM 141924 21019 6068313 2024-02-26 00:45:03.311 2024-02-26 00:45:03.311 1000 STREAM 141924 5293 6068327 2024-02-26 00:47:03.327 2024-02-26 00:47:03.327 1000 STREAM 141924 9529 6068328 2024-02-26 00:48:03.329 2024-02-26 00:48:03.329 1000 STREAM 141924 9349 6068332 2024-02-26 00:50:03.398 2024-02-26 00:50:03.398 1000 STREAM 141924 13553 6068333 2024-02-26 00:51:03.375 2024-02-26 00:51:03.375 1000 STREAM 141924 16177 6068341 2024-02-26 00:54:03.415 2024-02-26 00:54:03.415 1000 STREAM 141924 19981 6068342 2024-02-26 00:55:03.424 2024-02-26 00:55:03.424 1000 STREAM 141924 16998 6068344 2024-02-26 00:57:03.444 2024-02-26 00:57:03.444 1000 STREAM 141924 1650 6068345 2024-02-26 00:58:03.451 2024-02-26 00:58:03.451 1000 STREAM 141924 18745 6068352 2024-02-26 01:01:03.498 2024-02-26 01:01:03.498 1000 STREAM 141924 12291 6068355 2024-02-26 01:03:03.502 2024-02-26 01:03:03.502 1000 STREAM 141924 20201 6068358 2024-02-26 01:04:03.516 2024-02-26 01:04:03.516 1000 STREAM 141924 19189 6068385 2024-02-26 01:07:03.544 2024-02-26 01:07:03.544 1000 STREAM 141924 18736 6068395 2024-02-26 01:09:03.559 2024-02-26 01:09:03.559 1000 STREAM 141924 19378 6068438 2024-02-26 01:15:03.594 2024-02-26 01:15:03.594 1000 STREAM 141924 19837 6068588 2024-02-26 01:30:03.74 2024-02-26 01:30:03.74 1000 STREAM 141924 10591 6068590 2024-02-26 01:32:03.704 2024-02-26 01:32:03.704 1000 STREAM 141924 18396 6068594 2024-02-26 01:35:03.716 2024-02-26 01:35:03.716 1000 STREAM 141924 3717 6068614 2024-02-26 01:39:03.755 2024-02-26 01:39:03.755 1000 STREAM 141924 16808 6068619 2024-02-26 01:40:03.77 2024-02-26 01:40:03.77 1000 STREAM 141924 12808 6068624 2024-02-26 01:41:03.764 2024-02-26 01:41:03.764 1000 STREAM 141924 12959 6068635 2024-02-26 01:43:03.801 2024-02-26 01:43:03.801 1000 STREAM 141924 19886 6068636 2024-02-26 01:44:03.798 2024-02-26 01:44:03.798 1000 STREAM 141924 917 6068651 2024-02-26 01:45:03.816 2024-02-26 01:45:03.816 1000 STREAM 141924 15139 6068658 2024-02-26 01:46:03.816 2024-02-26 01:46:03.816 1000 STREAM 141924 18941 6068659 2024-02-26 01:47:03.838 2024-02-26 01:47:03.838 1000 STREAM 141924 15386 6068664 2024-02-26 01:48:03.82 2024-02-26 01:48:03.82 1000 STREAM 141924 14959 6068668 2024-02-26 01:49:03.826 2024-02-26 01:49:03.826 1000 STREAM 141924 17042 6068671 2024-02-26 01:50:03.873 2024-02-26 01:50:03.873 1000 STREAM 141924 12139 6068672 2024-02-26 01:51:03.843 2024-02-26 01:51:03.843 1000 STREAM 141924 6030 6068673 2024-02-26 01:52:03.842 2024-02-26 01:52:03.842 1000 STREAM 141924 20022 6068681 2024-02-26 01:54:03.857 2024-02-26 01:54:03.857 1000 STREAM 141924 18101 6068682 2024-02-26 01:55:03.866 2024-02-26 01:55:03.866 1000 STREAM 141924 19569 6068683 2024-02-26 01:56:03.868 2024-02-26 01:56:03.868 1000 STREAM 141924 20243 6068684 2024-02-26 01:57:03.886 2024-02-26 01:57:03.886 1000 STREAM 141924 21371 6068685 2024-02-26 01:58:03.889 2024-02-26 01:58:03.889 1000 STREAM 141924 1817 6068691 2024-02-26 01:59:03.893 2024-02-26 01:59:03.893 1000 STREAM 141924 8074 6068694 2024-02-26 02:00:03.976 2024-02-26 02:00:03.976 1000 STREAM 141924 4048 6068697 2024-02-26 02:01:03.905 2024-02-26 02:01:03.905 1000 STREAM 141924 6741 6068706 2024-02-26 02:04:03.917 2024-02-26 02:04:03.917 1000 STREAM 141924 703 6068722 2024-02-26 02:09:03.96 2024-02-26 02:09:03.96 1000 STREAM 141924 19637 6068726 2024-02-26 02:11:03.972 2024-02-26 02:11:03.972 1000 STREAM 141924 19773 6068734 2024-02-26 02:15:04.008 2024-02-26 02:15:04.008 1000 STREAM 141924 5809 6068739 2024-02-26 02:17:04.016 2024-02-26 02:17:04.016 1000 STREAM 141924 7425 6068748 2024-02-26 02:21:04.039 2024-02-26 02:21:04.039 1000 STREAM 141924 848 6068753 2024-02-26 02:22:04.039 2024-02-26 02:22:04.039 1000 STREAM 141924 19888 6068761 2024-02-26 02:24:04.057 2024-02-26 02:24:04.057 1000 STREAM 141924 9339 6068764 2024-02-26 02:25:04.068 2024-02-26 02:25:04.068 1000 STREAM 141924 976 6068781 2024-02-26 02:27:04.096 2024-02-26 02:27:04.096 1000 STREAM 141924 5809 6068796 2024-02-26 02:28:04.098 2024-02-26 02:28:04.098 1000 STREAM 141924 825 6068805 2024-02-26 02:29:04.097 2024-02-26 02:29:04.097 1000 STREAM 141924 642 6068846 2024-02-26 02:34:04.152 2024-02-26 02:34:04.152 1000 STREAM 141924 12218 6068847 2024-02-26 02:35:04.161 2024-02-26 02:35:04.161 1000 STREAM 141924 1114 6068848 2024-02-26 02:36:04.174 2024-02-26 02:36:04.174 1000 STREAM 141924 9809 6068852 2024-02-26 02:37:04.183 2024-02-26 02:37:04.183 1000 STREAM 141924 21391 6068854 2024-02-26 02:38:04.179 2024-02-26 02:38:04.179 1000 STREAM 141924 21365 6068858 2024-02-26 02:39:04.183 2024-02-26 02:39:04.183 1000 STREAM 141924 9356 6068979 2024-02-26 03:01:04.356 2024-02-26 03:01:04.356 1000 STREAM 141924 17797 6068992 2024-02-26 03:03:04.363 2024-02-26 03:03:04.363 1000 STREAM 141924 18452 6069011 2024-02-26 03:05:04.428 2024-02-26 03:05:04.428 1000 STREAM 141924 21609 6069065 2024-02-26 03:08:04.405 2024-02-26 03:08:04.405 1000 STREAM 141924 21014 6068155 2024-02-26 00:11:03.318 2024-02-26 00:11:03.318 1000 STREAM 141924 9758 6068185 2024-02-26 00:13:02.812 2024-02-26 00:13:02.812 7700 FEE 438649 20614 6068186 2024-02-26 00:13:02.812 2024-02-26 00:13:02.812 69300 TIP 438649 7827 6068210 2024-02-26 00:18:43.075 2024-02-26 00:18:43.075 7700 FEE 438651 1729 6068211 2024-02-26 00:18:43.075 2024-02-26 00:18:43.075 69300 TIP 438651 1221 6068232 2024-02-26 00:20:08.343 2024-02-26 00:20:08.343 3100 FEE 438605 16788 6068233 2024-02-26 00:20:08.343 2024-02-26 00:20:08.343 27900 TIP 438605 1039 6068236 2024-02-26 00:20:57.964 2024-02-26 00:20:57.964 1000 FEE 438769 14376 6068261 2024-02-26 00:28:47.157 2024-02-26 00:28:47.157 1000 POLL 438325 18842 6068275 2024-02-26 00:30:43.647 2024-02-26 00:30:43.647 1000 FEE 438775 4059 6068287 2024-02-26 00:33:34.17 2024-02-26 00:33:34.17 10000 FEE 438778 16665 6068293 2024-02-26 00:34:32.648 2024-02-26 00:34:32.648 32000 DONT_LIKE_THIS 438743 19806 6068326 2024-02-26 00:46:48.296 2024-02-26 00:46:48.296 1000 POLL 438772 6191 6068354 2024-02-26 01:02:35.851 2024-02-26 01:02:35.851 1000 FEE 438792 13931 6068361 2024-02-26 01:04:10.943 2024-02-26 01:04:10.943 300 FEE 438651 1772 6068362 2024-02-26 01:04:10.943 2024-02-26 01:04:10.943 2700 TIP 438651 2703 6068382 2024-02-26 01:05:47.899 2024-02-26 01:05:47.899 2700 FEE 438690 21063 6068383 2024-02-26 01:05:47.899 2024-02-26 01:05:47.899 24300 TIP 438690 13100 6068388 2024-02-26 01:07:31.162 2024-02-26 01:07:31.162 2700 FEE 438691 646 6068389 2024-02-26 01:07:31.162 2024-02-26 01:07:31.162 24300 TIP 438691 10586 6068414 2024-02-26 01:14:17.185 2024-02-26 01:14:17.185 2700 FEE 438738 20018 6068415 2024-02-26 01:14:17.185 2024-02-26 01:14:17.185 24300 TIP 438738 20222 6068432 2024-02-26 01:14:40.762 2024-02-26 01:14:40.762 4000 FEE 438794 19795 6068433 2024-02-26 01:14:40.762 2024-02-26 01:14:40.762 36000 TIP 438794 12049 6068483 2024-02-26 01:22:55.747 2024-02-26 01:22:55.747 500 FEE 438414 1236 6068484 2024-02-26 01:22:55.747 2024-02-26 01:22:55.747 4500 TIP 438414 16912 6068491 2024-02-26 01:22:59.372 2024-02-26 01:22:59.372 500 FEE 438583 14774 6068492 2024-02-26 01:22:59.372 2024-02-26 01:22:59.372 4500 TIP 438583 16301 6068505 2024-02-26 01:23:09.499 2024-02-26 01:23:09.499 500 FEE 438605 17147 6068506 2024-02-26 01:23:09.499 2024-02-26 01:23:09.499 4500 TIP 438605 17172 6068514 2024-02-26 01:23:30.06 2024-02-26 01:23:30.06 500 FEE 438467 12744 6068515 2024-02-26 01:23:30.06 2024-02-26 01:23:30.06 4500 TIP 438467 14247 6068526 2024-02-26 01:24:02.189 2024-02-26 01:24:02.189 1000 POLL 438794 6499 6068546 2024-02-26 01:27:34.027 2024-02-26 01:27:34.027 1000 FEE 438065 16406 6068547 2024-02-26 01:27:34.027 2024-02-26 01:27:34.027 9000 TIP 438065 20891 6068548 2024-02-26 01:27:35.615 2024-02-26 01:27:35.615 1000 FEE 438325 18403 6068549 2024-02-26 01:27:35.615 2024-02-26 01:27:35.615 9000 TIP 438325 2204 6068561 2024-02-26 01:28:04.343 2024-02-26 01:28:04.343 7700 FEE 438769 21539 6068562 2024-02-26 01:28:04.343 2024-02-26 01:28:04.343 69300 TIP 438769 21088 6068567 2024-02-26 01:28:34.507 2024-02-26 01:28:34.507 1000 FEE 438671 15474 6068568 2024-02-26 01:28:34.507 2024-02-26 01:28:34.507 9000 TIP 438671 13763 6068569 2024-02-26 01:28:39.993 2024-02-26 01:28:39.993 15400 FEE 438737 21547 6068570 2024-02-26 01:28:39.993 2024-02-26 01:28:39.993 138600 TIP 438737 18231 6068601 2024-02-26 01:37:24.027 2024-02-26 01:37:24.027 1000 FEE 438092 5701 6068602 2024-02-26 01:37:24.027 2024-02-26 01:37:24.027 9000 TIP 438092 2773 6068632 2024-02-26 01:42:42.89 2024-02-26 01:42:42.89 1000 POLL 438325 18995 6068695 2024-02-26 02:00:04.583 2024-02-26 02:00:04.583 100000 FEE 438814 16176 6068696 2024-02-26 02:00:05.034 2024-02-26 02:00:05.034 1000 FEE 438815 15941 6068700 2024-02-26 02:01:56.304 2024-02-26 02:01:56.304 2100 FEE 438691 20272 6068701 2024-02-26 02:01:56.304 2024-02-26 02:01:56.304 18900 TIP 438691 16594 6068735 2024-02-26 02:15:46.449 2024-02-26 02:15:46.449 1000 POLL 438202 19930 6068746 2024-02-26 02:19:39.745 2024-02-26 02:19:39.745 1000 FEE 438817 5565 6068757 2024-02-26 02:23:33.063 2024-02-26 02:23:33.063 1100 FEE 438725 16284 6068758 2024-02-26 02:23:33.063 2024-02-26 02:23:33.063 9900 TIP 438725 17455 6068759 2024-02-26 02:23:47.211 2024-02-26 02:23:47.211 1100 FEE 438236 900 6068760 2024-02-26 02:23:47.211 2024-02-26 02:23:47.211 9900 TIP 438236 3377 6068762 2024-02-26 02:24:16.856 2024-02-26 02:24:16.856 1100 FEE 436839 2674 6068763 2024-02-26 02:24:16.856 2024-02-26 02:24:16.856 9900 TIP 436839 20182 6068766 2024-02-26 02:26:05.919 2024-02-26 02:26:05.919 100 FEE 438806 763 6068767 2024-02-26 02:26:05.919 2024-02-26 02:26:05.919 900 TIP 438806 18923 6068772 2024-02-26 02:26:44.71 2024-02-26 02:26:44.71 1000 FEE 437858 1047 6068773 2024-02-26 02:26:44.71 2024-02-26 02:26:44.71 9000 TIP 437858 21389 6068790 2024-02-26 02:27:46.574 2024-02-26 02:27:46.574 100 FEE 438737 18678 6068791 2024-02-26 02:27:46.574 2024-02-26 02:27:46.574 900 TIP 438737 998 6068794 2024-02-26 02:27:47.518 2024-02-26 02:27:47.518 9000 FEE 438737 21514 6068795 2024-02-26 02:27:47.518 2024-02-26 02:27:47.518 81000 TIP 438737 21172 6068801 2024-02-26 02:28:51.899 2024-02-26 02:28:51.899 100 FEE 438814 21491 6068802 2024-02-26 02:28:51.899 2024-02-26 02:28:51.899 900 TIP 438814 1814 6068866 2024-02-26 02:39:42.389 2024-02-26 02:39:42.389 1000 FEE 438794 17237 6068867 2024-02-26 02:39:42.389 2024-02-26 02:39:42.389 9000 TIP 438794 20564 6068868 2024-02-26 02:39:42.559 2024-02-26 02:39:42.559 1000 FEE 438794 16706 6068869 2024-02-26 02:39:42.559 2024-02-26 02:39:42.559 9000 TIP 438794 6765 6068884 2024-02-26 02:41:18.759 2024-02-26 02:41:18.759 1000 FEE 438823 1584 6068885 2024-02-26 02:41:20.468 2024-02-26 02:41:20.468 1000 FEE 438824 20326 6068886 2024-02-26 02:41:22.888 2024-02-26 02:41:22.888 2100 FEE 438794 13398 6068887 2024-02-26 02:41:22.888 2024-02-26 02:41:22.888 18900 TIP 438794 3392 6068890 2024-02-26 02:41:29.911 2024-02-26 02:41:29.911 2100 FEE 438735 21591 6068891 2024-02-26 02:41:29.911 2024-02-26 02:41:29.911 18900 TIP 438735 13587 6068920 2024-02-26 02:42:42.2 2024-02-26 02:42:42.2 1000 FEE 438826 6335 6068927 2024-02-26 02:45:19.001 2024-02-26 02:45:19.001 1000 FEE 438405 10493 6068928 2024-02-26 02:45:19.001 2024-02-26 02:45:19.001 9000 TIP 438405 1401 6068959 2024-02-26 02:59:07.199 2024-02-26 02:59:07.199 1000 FEE 438830 18743 6068965 2024-02-26 02:59:50.332 2024-02-26 02:59:50.332 4000 FEE 438753 19886 6068966 2024-02-26 02:59:50.332 2024-02-26 02:59:50.332 36000 TIP 438753 11263 6068970 2024-02-26 03:00:20.887 2024-02-26 03:00:20.887 1000 POLL 438325 5377 6068975 2024-02-26 03:00:36.944 2024-02-26 03:00:36.944 6900 FEE 438802 6555 6068976 2024-02-26 03:00:36.944 2024-02-26 03:00:36.944 62100 TIP 438802 12561 6068982 2024-02-26 03:01:20.957 2024-02-26 03:01:20.957 0 FEE 139939 960 6069054 2024-02-26 03:07:16.25 2024-02-26 03:07:16.25 2000 FEE 438694 21369 6069055 2024-02-26 03:07:16.25 2024-02-26 03:07:16.25 18000 TIP 438694 14385 6069058 2024-02-26 03:07:18.464 2024-02-26 03:07:18.464 2000 FEE 438694 20504 6069059 2024-02-26 03:07:18.464 2024-02-26 03:07:18.464 18000 TIP 438694 616 6069074 2024-02-26 03:10:02.859 2024-02-26 03:10:02.859 6900 FEE 438651 2206 6069075 2024-02-26 03:10:02.859 2024-02-26 03:10:02.859 62100 TIP 438651 959 6069085 2024-02-26 03:11:30.478 2024-02-26 03:11:30.478 3000 FEE 438651 19570 6068190 2024-02-26 00:14:09.548 2024-02-26 00:14:09.548 1600 FEE 438758 11288 6068191 2024-02-26 00:14:09.548 2024-02-26 00:14:09.548 14400 TIP 438758 2098 6068228 2024-02-26 00:18:44.868 2024-02-26 00:18:44.868 7700 FEE 438651 16176 6068229 2024-02-26 00:18:44.868 2024-02-26 00:18:44.868 69300 TIP 438651 626 6068265 2024-02-26 00:29:18.37 2024-02-26 00:29:18.37 3100 FEE 438458 19987 6068266 2024-02-26 00:29:18.37 2024-02-26 00:29:18.37 27900 TIP 438458 9844 6068277 2024-02-26 00:31:06.832 2024-02-26 00:31:06.832 10000 FEE 438646 1596 6068278 2024-02-26 00:31:06.832 2024-02-26 00:31:06.832 90000 TIP 438646 17106 6068289 2024-02-26 00:34:04.928 2024-02-26 00:34:04.928 10000 FEE 433895 1512 6068290 2024-02-26 00:34:04.928 2024-02-26 00:34:04.928 90000 TIP 433895 21369 6068297 2024-02-26 00:36:07.658 2024-02-26 00:36:07.658 21000 FEE 438780 4388 6068300 2024-02-26 00:38:13.053 2024-02-26 00:38:13.053 100000 FEE 438781 16212 6068312 2024-02-26 00:44:32.569 2024-02-26 00:44:32.569 1000 FEE 438785 9552 6068319 2024-02-26 00:46:02.407 2024-02-26 00:46:02.407 4200 FEE 438779 21547 6068320 2024-02-26 00:46:02.407 2024-02-26 00:46:02.407 37800 TIP 438779 19243 6068338 2024-02-26 00:52:02.834 2024-02-26 00:52:02.834 1000 FEE 438791 5590 6068369 2024-02-26 01:04:11.97 2024-02-26 01:04:11.97 300 FEE 438651 20655 6068370 2024-02-26 01:04:11.97 2024-02-26 01:04:11.97 2700 TIP 438651 9863 6068371 2024-02-26 01:04:12.142 2024-02-26 01:04:12.142 300 FEE 438651 16684 6068372 2024-02-26 01:04:12.142 2024-02-26 01:04:12.142 2700 TIP 438651 18344 6068397 2024-02-26 01:10:08.799 2024-02-26 01:10:08.799 1000 FEE 438793 9342 6068402 2024-02-26 01:12:19.652 2024-02-26 01:12:19.652 1000 FEE 438795 16834 6068408 2024-02-26 01:14:16.243 2024-02-26 01:14:16.243 2700 FEE 438738 18291 6068409 2024-02-26 01:14:16.243 2024-02-26 01:14:16.243 24300 TIP 438738 19329 6068420 2024-02-26 01:14:20.864 2024-02-26 01:14:20.864 2700 FEE 438765 14705 6068421 2024-02-26 01:14:20.864 2024-02-26 01:14:20.864 24300 TIP 438765 21249 6068426 2024-02-26 01:14:37.016 2024-02-26 01:14:37.016 2700 FEE 438630 1429 6068427 2024-02-26 01:14:37.016 2024-02-26 01:14:37.016 24300 TIP 438630 7773 6068487 2024-02-26 01:22:57.399 2024-02-26 01:22:57.399 500 FEE 438092 1401 6068488 2024-02-26 01:22:57.399 2024-02-26 01:22:57.399 4500 TIP 438092 1236 6068489 2024-02-26 01:22:58.319 2024-02-26 01:22:58.319 500 FEE 438317 8059 6068394 2024-02-26 01:08:03.356 2024-02-26 01:08:03.356 1000 STREAM 141924 21374 6068396 2024-02-26 01:10:02.884 2024-02-26 01:10:02.884 1000 STREAM 141924 1394 6068461 2024-02-26 01:18:03.317 2024-02-26 01:18:03.317 1000 STREAM 141924 5829 6068401 2024-02-26 01:12:02.835 2024-02-26 01:12:02.835 1000 STREAM 141924 13622 6068404 2024-02-26 01:13:02.896 2024-02-26 01:13:02.896 1000 STREAM 141924 20655 6068464 2024-02-26 01:19:03.346 2024-02-26 01:19:03.346 1000 STREAM 141924 15624 6068428 2024-02-26 01:14:37.445 2024-02-26 01:14:37.445 2700 FEE 438630 11942 6068429 2024-02-26 01:14:37.445 2024-02-26 01:14:37.445 24300 TIP 438630 21503 6068440 2024-02-26 01:15:34.365 2024-02-26 01:15:34.365 0 FEE 438796 11263 6068457 2024-02-26 01:17:10.972 2024-02-26 01:17:10.972 2700 FEE 438651 9109 6068458 2024-02-26 01:17:10.972 2024-02-26 01:17:10.972 24300 TIP 438651 18630 6068459 2024-02-26 01:17:11.134 2024-02-26 01:17:11.134 2700 FEE 438651 12808 6068460 2024-02-26 01:17:11.134 2024-02-26 01:17:11.134 24300 TIP 438651 12422 6068463 2024-02-26 01:18:38.887 2024-02-26 01:18:38.887 1000 FEE 438799 19189 6068485 2024-02-26 01:22:56.635 2024-02-26 01:22:56.635 500 FEE 438325 17415 6068486 2024-02-26 01:22:56.635 2024-02-26 01:22:56.635 4500 TIP 438325 9551 6068556 2024-02-26 01:27:52.284 2024-02-26 01:27:52.284 7700 FEE 438770 1718 6068557 2024-02-26 01:27:52.284 2024-02-26 01:27:52.284 69300 TIP 438770 19863 6068558 2024-02-26 01:28:02.997 2024-02-26 01:28:02.997 1000 FEE 438434 18640 6068559 2024-02-26 01:28:02.997 2024-02-26 01:28:02.997 9000 TIP 438434 2013 6068577 2024-02-26 01:28:48.169 2024-02-26 01:28:48.169 1000 FEE 438722 16556 6068578 2024-02-26 01:28:48.169 2024-02-26 01:28:48.169 9000 TIP 438722 5069 6068583 2024-02-26 01:29:07.935 2024-02-26 01:29:07.935 1000 FEE 438209 8168 6068584 2024-02-26 01:29:07.935 2024-02-26 01:29:07.935 9000 TIP 438209 13143 6068617 2024-02-26 01:39:54.869 2024-02-26 01:39:54.869 1000 FEE 438382 16660 6068618 2024-02-26 01:39:54.869 2024-02-26 01:39:54.869 9000 TIP 438382 6300 6068645 2024-02-26 01:44:18.918 2024-02-26 01:44:18.918 1000 FEE 438583 18517 6068646 2024-02-26 01:44:18.918 2024-02-26 01:44:18.918 9000 TIP 438583 18743 6068662 2024-02-26 01:47:22.504 2024-02-26 01:47:22.504 2100 FEE 438746 10771 6068663 2024-02-26 01:47:22.504 2024-02-26 01:47:22.504 18900 TIP 438746 14045 6068768 2024-02-26 02:26:06.108 2024-02-26 02:26:06.108 900 FEE 438806 19864 6068769 2024-02-26 02:26:06.108 2024-02-26 02:26:06.108 8100 TIP 438806 20152 6068784 2024-02-26 02:27:08.684 2024-02-26 02:27:08.684 100 FEE 438765 14280 6068785 2024-02-26 02:27:08.684 2024-02-26 02:27:08.684 900 TIP 438765 6777 6068788 2024-02-26 02:27:19.489 2024-02-26 02:27:19.489 10000 FEE 438651 17976 6068789 2024-02-26 02:27:19.489 2024-02-26 02:27:19.489 90000 TIP 438651 11590 6068797 2024-02-26 02:28:19.177 2024-02-26 02:28:19.177 100 FEE 438231 5036 6068798 2024-02-26 02:28:19.177 2024-02-26 02:28:19.177 900 TIP 438231 10934 6068806 2024-02-26 02:29:04.157 2024-02-26 02:29:04.157 1000 FEE 438819 2013 6068814 2024-02-26 02:29:32.42 2024-02-26 02:29:32.42 100 FEE 438735 19836 6068815 2024-02-26 02:29:32.42 2024-02-26 02:29:32.42 900 TIP 438735 4322 6068822 2024-02-26 02:29:48.727 2024-02-26 02:29:48.727 90000 FEE 438737 21332 6068823 2024-02-26 02:29:48.727 2024-02-26 02:29:48.727 810000 TIP 438737 21421 6068826 2024-02-26 02:29:55.315 2024-02-26 02:29:55.315 900 FEE 438758 2328 6068827 2024-02-26 02:29:55.315 2024-02-26 02:29:55.315 8100 TIP 438758 20754 6068436 2024-02-26 01:14:56.83 2024-02-26 01:14:56.83 4000 FEE 438691 12102 6068437 2024-02-26 01:14:56.83 2024-02-26 01:14:56.83 36000 TIP 438691 21164 6068439 2024-02-26 01:15:07.842 2024-02-26 01:15:07.842 100000 FEE 438798 8726 6068442 2024-02-26 01:16:13.787 2024-02-26 01:16:13.787 2500 FEE 438793 20998 6068443 2024-02-26 01:16:13.787 2024-02-26 01:16:13.787 22500 TIP 438793 16653 6068469 2024-02-26 01:20:39.669 2024-02-26 01:20:39.669 27900 FEE 438486 2156 6068470 2024-02-26 01:20:39.669 2024-02-26 01:20:39.669 251100 TIP 438486 20022 6068474 2024-02-26 01:21:10.959 2024-02-26 01:21:10.959 27900 FEE 438691 5495 6068475 2024-02-26 01:21:10.959 2024-02-26 01:21:10.959 251100 TIP 438691 9874 6068493 2024-02-26 01:23:01.057 2024-02-26 01:23:01.057 500 FEE 438202 1823 6068494 2024-02-26 01:23:01.057 2024-02-26 01:23:01.057 4500 TIP 438202 2075 6068507 2024-02-26 01:23:11.662 2024-02-26 01:23:11.662 1000 FEE 438802 16357 6068522 2024-02-26 01:23:47.956 2024-02-26 01:23:47.956 500 FEE 438469 2735 6068523 2024-02-26 01:23:47.956 2024-02-26 01:23:47.956 4500 TIP 438469 16680 6068524 2024-02-26 01:24:01.534 2024-02-26 01:24:01.534 500 FEE 438345 21242 6068525 2024-02-26 01:24:01.534 2024-02-26 01:24:01.534 4500 TIP 438345 738 6068579 2024-02-26 01:28:59.83 2024-02-26 01:28:59.83 1000 FEE 438731 6327 6068580 2024-02-26 01:28:59.83 2024-02-26 01:28:59.83 9000 TIP 438731 19569 6068597 2024-02-26 01:37:19.564 2024-02-26 01:37:19.564 1000 FEE 438451 2402 6068598 2024-02-26 01:37:19.564 2024-02-26 01:37:19.564 9000 TIP 438451 20276 6068605 2024-02-26 01:37:31.971 2024-02-26 01:37:31.971 1000 FEE 438649 21242 6068606 2024-02-26 01:37:31.971 2024-02-26 01:37:31.971 9000 TIP 438649 9336 6068608 2024-02-26 01:38:05.216 2024-02-26 01:38:05.216 1000 FEE 438416 2789 6068609 2024-02-26 01:38:05.216 2024-02-26 01:38:05.216 9000 TIP 438416 732 6068615 2024-02-26 01:39:34.335 2024-02-26 01:39:34.335 1000 FEE 438393 1769 6068616 2024-02-26 01:39:34.335 2024-02-26 01:39:34.335 9000 TIP 438393 15147 6068623 2024-02-26 01:40:18.022 2024-02-26 01:40:18.022 1000 POLL 438325 929 6068633 2024-02-26 01:43:02.81 2024-02-26 01:43:02.81 2100 FEE 438325 21563 6068634 2024-02-26 01:43:02.81 2024-02-26 01:43:02.81 18900 TIP 438325 16808 6068639 2024-02-26 01:44:15.282 2024-02-26 01:44:15.282 1000 FEE 438737 766 6068640 2024-02-26 01:44:15.282 2024-02-26 01:44:15.282 9000 TIP 438737 20691 6068641 2024-02-26 01:44:16.37 2024-02-26 01:44:16.37 1000 FEE 438651 18678 6068642 2024-02-26 01:44:16.37 2024-02-26 01:44:16.37 9000 TIP 438651 21119 6068656 2024-02-26 01:46:03.191 2024-02-26 01:46:03.191 1000 FEE 438393 14545 6068657 2024-02-26 01:46:03.191 2024-02-26 01:46:03.191 9000 TIP 438393 1620 6068665 2024-02-26 01:48:24.274 2024-02-26 01:48:24.274 2100 FEE 438714 5752 6068666 2024-02-26 01:48:24.274 2024-02-26 01:48:24.274 18900 TIP 438714 20377 6068741 2024-02-26 02:18:25.702 2024-02-26 02:18:25.702 1100 FEE 436720 17321 6068742 2024-02-26 02:18:25.702 2024-02-26 02:18:25.702 9900 TIP 436720 899 6068792 2024-02-26 02:27:47.046 2024-02-26 02:27:47.046 900 FEE 438737 16665 6068793 2024-02-26 02:27:47.046 2024-02-26 02:27:47.046 8100 TIP 438737 21291 6068807 2024-02-26 02:29:17.86 2024-02-26 02:29:17.86 0 FEE 438818 21540 6068808 2024-02-26 02:29:22.731 2024-02-26 02:29:22.731 100 FEE 438725 1090 6068809 2024-02-26 02:29:22.731 2024-02-26 02:29:22.731 900 TIP 438725 18473 6068818 2024-02-26 02:29:33.125 2024-02-26 02:29:33.125 9000 FEE 438735 18637 6068819 2024-02-26 02:29:33.125 2024-02-26 02:29:33.125 81000 TIP 438735 6361 6068828 2024-02-26 02:29:55.816 2024-02-26 02:29:55.816 9000 FEE 438758 9307 6068829 2024-02-26 02:29:55.816 2024-02-26 02:29:55.816 81000 TIP 438758 8242 6068843 2024-02-26 02:32:25.682 2024-02-26 02:32:25.682 500 FEE 438722 17639 6068844 2024-02-26 02:32:25.682 2024-02-26 02:32:25.682 4500 TIP 438722 21451 6068870 2024-02-26 02:39:42.793 2024-02-26 02:39:42.793 1000 FEE 438794 19117 6068871 2024-02-26 02:39:42.793 2024-02-26 02:39:42.793 9000 TIP 438794 17639 6068877 2024-02-26 02:40:04.091 2024-02-26 02:40:04.091 1000 FEE 438794 20257 6068878 2024-02-26 02:40:04.091 2024-02-26 02:40:04.091 9000 TIP 438794 8985 6068896 2024-02-26 02:41:33.623 2024-02-26 02:41:33.623 100 FEE 438822 17523 6068897 2024-02-26 02:41:33.623 2024-02-26 02:41:33.623 900 TIP 438822 18745 6068900 2024-02-26 02:41:34.807 2024-02-26 02:41:34.807 2100 FEE 438758 2460 6068901 2024-02-26 02:41:34.807 2024-02-26 02:41:34.807 18900 TIP 438758 859 6068902 2024-02-26 02:41:35.049 2024-02-26 02:41:35.049 100 FEE 438822 630 6068903 2024-02-26 02:41:35.049 2024-02-26 02:41:35.049 900 TIP 438822 20026 6068941 2024-02-26 02:53:53.105 2024-02-26 02:53:53.105 10000 FEE 438828 20596 6068942 2024-02-26 02:53:53.105 2024-02-26 02:53:53.105 90000 TIP 438828 16536 6068953 2024-02-26 02:57:24.673 2024-02-26 02:57:24.673 1000 FEE 438829 8080 6068971 2024-02-26 03:00:36.604 2024-02-26 03:00:36.604 6900 FEE 438802 5904 6068972 2024-02-26 03:00:36.604 2024-02-26 03:00:36.604 62100 TIP 438802 16789 6068991 2024-02-26 03:02:56.017 2024-02-26 03:02:56.017 0 FEE 438831 20222 6068993 2024-02-26 03:03:13.942 2024-02-26 03:03:13.942 1000 FEE 438834 21412 6068996 2024-02-26 03:03:24.522 2024-02-26 03:03:24.522 0 FEE 438834 1286 6069028 2024-02-26 03:06:45.424 2024-02-26 03:06:45.424 300 FEE 438737 1354 6069029 2024-02-26 03:06:45.424 2024-02-26 03:06:45.424 2700 TIP 438737 20080 6069038 2024-02-26 03:06:46.4 2024-02-26 03:06:46.4 300 FEE 438737 20981 6069039 2024-02-26 03:06:46.4 2024-02-26 03:06:46.4 2700 TIP 438737 3656 6069042 2024-02-26 03:06:46.833 2024-02-26 03:06:46.833 300 FEE 438737 9426 6069043 2024-02-26 03:06:46.833 2024-02-26 03:06:46.833 2700 TIP 438737 21571 6069048 2024-02-26 03:06:49.622 2024-02-26 03:06:49.622 0 FEE 438835 18114 6069061 2024-02-26 03:07:38.23 2024-02-26 03:07:38.23 10000 FEE 438833 11789 6069062 2024-02-26 03:07:38.23 2024-02-26 03:07:38.23 90000 TIP 438833 19638 6069063 2024-02-26 03:07:38.56 2024-02-26 03:07:38.56 100000 FEE 438837 2773 6069068 2024-02-26 03:09:44.505 2024-02-26 03:09:44.505 3000 FEE 438834 19909 6069069 2024-02-26 03:09:44.505 2024-02-26 03:09:44.505 27000 TIP 438834 17513 6069070 2024-02-26 03:09:50.751 2024-02-26 03:09:50.751 2100 FEE 438390 21119 6069071 2024-02-26 03:09:50.751 2024-02-26 03:09:50.751 18900 TIP 438390 21451 6069093 2024-02-26 03:14:12.103 2024-02-26 03:14:12.103 0 FEE 438841 20756 6069103 2024-02-26 03:19:23.135 2024-02-26 03:19:23.135 2100 FEE 438725 9356 6069104 2024-02-26 03:19:23.135 2024-02-26 03:19:23.135 18900 TIP 438725 3642 6069106 2024-02-26 03:19:48.06 2024-02-26 03:19:48.06 6900 FEE 438843 2256 6069107 2024-02-26 03:19:48.06 2024-02-26 03:19:48.06 62100 TIP 438843 17568 6069108 2024-02-26 03:19:48.973 2024-02-26 03:19:48.973 13800 FEE 438843 19952 6069109 2024-02-26 03:19:48.973 2024-02-26 03:19:48.973 124200 TIP 438843 17682 6069111 2024-02-26 03:20:11.368 2024-02-26 03:20:11.368 1000 FEE 438737 15119 6069112 2024-02-26 03:20:11.368 2024-02-26 03:20:11.368 9000 TIP 438737 4014 6069134 2024-02-26 03:25:10.951 2024-02-26 03:25:10.951 6900 FEE 438847 16410 6069135 2024-02-26 03:25:10.951 2024-02-26 03:25:10.951 62100 TIP 438847 21051 6069150 2024-02-26 03:26:53.319 2024-02-26 03:26:53.319 1000 FEE 438853 16097 6068465 2024-02-26 01:20:03.333 2024-02-26 01:20:03.333 1000 STREAM 141924 21233 6068471 2024-02-26 01:21:03.302 2024-02-26 01:21:03.302 1000 STREAM 141924 18243 6068476 2024-02-26 01:22:03.304 2024-02-26 01:22:03.304 1000 STREAM 141924 18269 6068497 2024-02-26 01:23:03.311 2024-02-26 01:23:03.311 1000 STREAM 141924 769 6068529 2024-02-26 01:24:03.327 2024-02-26 01:24:03.327 1000 STREAM 141924 4819 6068530 2024-02-26 01:25:03.333 2024-02-26 01:25:03.333 1000 STREAM 141924 18310 6068490 2024-02-26 01:22:58.319 2024-02-26 01:22:58.319 4500 TIP 438317 4323 6068512 2024-02-26 01:23:29.8 2024-02-26 01:23:29.8 500 FEE 438467 11091 6068513 2024-02-26 01:23:29.8 2024-02-26 01:23:29.8 4500 TIP 438467 16684 6068527 2024-02-26 01:24:02.78 2024-02-26 01:24:02.78 500 FEE 438345 16442 6068528 2024-02-26 01:24:02.78 2024-02-26 01:24:02.78 4500 TIP 438345 848 6068531 2024-02-26 01:25:11.729 2024-02-26 01:25:11.729 1100 FEE 438670 20182 6068532 2024-02-26 01:25:11.729 2024-02-26 01:25:11.729 9900 TIP 438670 19030 6068540 2024-02-26 01:26:17.256 2024-02-26 01:26:17.256 1000 FEE 438804 9833 6068542 2024-02-26 01:27:27.748 2024-02-26 01:27:27.748 1000 FEE 438805 16250 6068550 2024-02-26 01:27:37.011 2024-02-26 01:27:37.011 1000 FEE 438317 16442 6068551 2024-02-26 01:27:37.011 2024-02-26 01:27:37.011 9000 TIP 438317 1740 6068582 2024-02-26 01:29:07.283 2024-02-26 01:29:07.283 1000 FEE 438807 16442 6068585 2024-02-26 01:29:08.684 2024-02-26 01:29:08.684 10000 FEE 438797 5829 6068586 2024-02-26 01:29:08.684 2024-02-26 01:29:08.684 90000 TIP 438797 1620 6068587 2024-02-26 01:29:17.424 2024-02-26 01:29:17.424 0 FEE 438303 19661 6068599 2024-02-26 01:37:21.334 2024-02-26 01:37:21.334 1000 FEE 438414 19446 6068600 2024-02-26 01:37:21.334 2024-02-26 01:37:21.334 9000 TIP 438414 1105 6068610 2024-02-26 01:38:25.565 2024-02-26 01:38:25.565 1000 FEE 438073 705 6068611 2024-02-26 01:38:25.565 2024-02-26 01:38:25.565 9000 TIP 438073 19153 6068628 2024-02-26 01:41:33.942 2024-02-26 01:41:33.942 100 FEE 438804 2151 6068629 2024-02-26 01:41:33.942 2024-02-26 01:41:33.942 900 TIP 438804 19332 6068631 2024-02-26 01:42:34.192 2024-02-26 01:42:34.192 1000 FEE 438811 10668 6068667 2024-02-26 01:48:52.979 2024-02-26 01:48:52.979 10000 FEE 438812 1465 6068674 2024-02-26 01:52:46.899 2024-02-26 01:52:46.899 2100 FEE 438797 21263 6068675 2024-02-26 01:52:46.899 2024-02-26 01:52:46.899 18900 TIP 438797 3396 6068687 2024-02-26 01:58:28.43 2024-02-26 01:58:28.43 2100 FEE 438780 1173 6068688 2024-02-26 01:58:28.43 2024-02-26 01:58:28.43 18900 TIP 438780 649 6068716 2024-02-26 02:08:45.52 2024-02-26 02:08:45.52 100 FEE 438737 3729 6068717 2024-02-26 02:08:45.52 2024-02-26 02:08:45.52 900 TIP 438737 14990 6068720 2024-02-26 02:08:56.291 2024-02-26 02:08:56.291 1100 FEE 438810 21506 6068721 2024-02-26 02:08:56.291 2024-02-26 02:08:56.291 9900 TIP 438810 19500 6068744 2024-02-26 02:19:16.202 2024-02-26 02:19:16.202 10000 FEE 438649 21458 6068745 2024-02-26 02:19:16.202 2024-02-26 02:19:16.202 90000 TIP 438649 21600 6068749 2024-02-26 02:21:08.188 2024-02-26 02:21:08.188 800 FEE 438529 16704 6068750 2024-02-26 02:21:08.188 2024-02-26 02:21:08.188 7200 TIP 438529 2123 6068774 2024-02-26 02:26:44.939 2024-02-26 02:26:44.939 1000 FEE 438818 650 6068816 2024-02-26 02:29:32.628 2024-02-26 02:29:32.628 900 FEE 438735 18387 6068817 2024-02-26 02:29:32.628 2024-02-26 02:29:32.628 8100 TIP 438735 19332 6068837 2024-02-26 02:30:09.664 2024-02-26 02:30:09.664 90000 FEE 438794 718 6068838 2024-02-26 02:30:09.664 2024-02-26 02:30:09.664 810000 TIP 438794 11153 6068851 2024-02-26 02:36:16.688 2024-02-26 02:36:16.688 1000 FEE 438820 6382 6068857 2024-02-26 02:39:04.08 2024-02-26 02:39:04.08 1000 DONT_LIKE_THIS 438737 18956 6068888 2024-02-26 02:41:29.589 2024-02-26 02:41:29.589 100 FEE 438822 21603 6068889 2024-02-26 02:41:29.589 2024-02-26 02:41:29.589 900 TIP 438822 19909 6068906 2024-02-26 02:41:36.089 2024-02-26 02:41:36.089 100 FEE 438822 21332 6068907 2024-02-26 02:41:36.089 2024-02-26 02:41:36.089 900 TIP 438822 1007 6068908 2024-02-26 02:41:36.639 2024-02-26 02:41:36.639 100 FEE 438822 1772 6068909 2024-02-26 02:41:36.639 2024-02-26 02:41:36.639 900 TIP 438822 18368 6068914 2024-02-26 02:41:50.391 2024-02-26 02:41:50.391 2100 FEE 438814 1881 6068915 2024-02-26 02:41:50.391 2024-02-26 02:41:50.391 18900 TIP 438814 12566 6068917 2024-02-26 02:42:25.31 2024-02-26 02:42:25.31 1000 FEE 438825 19638 6068980 2024-02-26 03:01:05.384 2024-02-26 03:01:05.384 0 FEE 438831 11240 6068984 2024-02-26 03:01:24.398 2024-02-26 03:01:24.398 6900 FEE 438769 7510 6068985 2024-02-26 03:01:24.398 2024-02-26 03:01:24.398 62100 TIP 438769 2681 6069030 2024-02-26 03:06:45.589 2024-02-26 03:06:45.589 300 FEE 438737 8059 6069031 2024-02-26 03:06:45.589 2024-02-26 03:06:45.589 2700 TIP 438737 14267 6069036 2024-02-26 03:06:46.203 2024-02-26 03:06:46.203 300 FEE 438737 19637 6069037 2024-02-26 03:06:46.203 2024-02-26 03:06:46.203 2700 TIP 438737 16939 6069046 2024-02-26 03:06:47.313 2024-02-26 03:06:47.313 300 FEE 438737 946 6069047 2024-02-26 03:06:47.313 2024-02-26 03:06:47.313 2700 TIP 438737 9 6069082 2024-02-26 03:10:51.335 2024-02-26 03:10:51.335 0 FEE 438840 4059 6069105 2024-02-26 03:19:37.992 2024-02-26 03:19:37.992 0 FEE 438844 19980 6069139 2024-02-26 03:25:20.357 2024-02-26 03:25:20.357 6900 FEE 438845 2233 6069140 2024-02-26 03:25:20.357 2024-02-26 03:25:20.357 62100 TIP 438845 19507 6069145 2024-02-26 03:26:29.737 2024-02-26 03:26:29.737 6900 FEE 438845 5852 6069146 2024-02-26 03:26:29.737 2024-02-26 03:26:29.737 62100 TIP 438845 14169 6069172 2024-02-26 03:27:58.79 2024-02-26 03:27:58.79 1000 FEE 438848 8287 6069173 2024-02-26 03:27:58.79 2024-02-26 03:27:58.79 9000 TIP 438848 4238 6069195 2024-02-26 03:31:59.91 2024-02-26 03:31:59.91 6900 FEE 438794 20143 6069196 2024-02-26 03:31:59.91 2024-02-26 03:31:59.91 62100 TIP 438794 20812 6069208 2024-02-26 03:37:50.694 2024-02-26 03:37:50.694 700 FEE 438658 20180 6069209 2024-02-26 03:37:50.694 2024-02-26 03:37:50.694 6300 TIP 438658 9246 6069217 2024-02-26 03:38:41.89 2024-02-26 03:38:41.89 1000 FEE 438858 21624 6069248 2024-02-26 03:49:51.879 2024-02-26 03:49:51.879 1000 FEE 438864 18608 6069287 2024-02-26 04:01:12.284 2024-02-26 04:01:12.284 1000 FEE 438843 20594 6069288 2024-02-26 04:01:12.284 2024-02-26 04:01:12.284 9000 TIP 438843 18817 6069295 2024-02-26 04:07:56.983 2024-02-26 04:07:56.983 1000 FEE 438872 859 6069302 2024-02-26 04:09:53.822 2024-02-26 04:09:53.822 300 FEE 438797 1729 6069303 2024-02-26 04:09:53.822 2024-02-26 04:09:53.822 2700 TIP 438797 14650 6069355 2024-02-26 04:23:54.111 2024-02-26 04:23:54.111 1000 FEE 438876 21136 6069380 2024-02-26 04:27:48.919 2024-02-26 04:27:48.919 2100 FEE 438738 12911 6069381 2024-02-26 04:27:48.919 2024-02-26 04:27:48.919 18900 TIP 438738 5455 6069382 2024-02-26 04:27:49.06 2024-02-26 04:27:49.06 1000 POLL 438414 981 6069397 2024-02-26 04:34:05.429 2024-02-26 04:34:05.429 1000 FEE 438881 5003 6069406 2024-02-26 04:38:28.626 2024-02-26 04:38:28.626 6900 FEE 435928 14280 6069407 2024-02-26 04:38:28.626 2024-02-26 04:38:28.626 62100 TIP 435928 7668 6069408 2024-02-26 04:38:28.917 2024-02-26 04:38:28.917 6900 FEE 435928 20267 6069409 2024-02-26 04:38:28.917 2024-02-26 04:38:28.917 62100 TIP 435928 13574 6069410 2024-02-26 04:38:29.085 2024-02-26 04:38:29.085 6900 FEE 435928 15843 6069411 2024-02-26 04:38:29.085 2024-02-26 04:38:29.085 62100 TIP 435928 19527 6069414 2024-02-26 04:38:29.39 2024-02-26 04:38:29.39 6900 FEE 435928 21357 6069415 2024-02-26 04:38:29.39 2024-02-26 04:38:29.39 62100 TIP 435928 16653 6069440 2024-02-26 04:38:45.763 2024-02-26 04:38:45.763 6900 FEE 438789 16282 6069441 2024-02-26 04:38:45.763 2024-02-26 04:38:45.763 62100 TIP 438789 20251 6069474 2024-02-26 04:38:53.556 2024-02-26 04:38:53.556 6900 FEE 438847 1881 6069475 2024-02-26 04:38:53.556 2024-02-26 04:38:53.556 62100 TIP 438847 20022 6069476 2024-02-26 04:38:53.72 2024-02-26 04:38:53.72 6900 FEE 438847 14258 6069477 2024-02-26 04:38:53.72 2024-02-26 04:38:53.72 62100 TIP 438847 4487 6069497 2024-02-26 04:45:46.628 2024-02-26 04:45:46.628 1000 FEE 438885 2224 6069505 2024-02-26 04:47:34.193 2024-02-26 04:47:34.193 2100 FEE 438794 21064 6069506 2024-02-26 04:47:34.193 2024-02-26 04:47:34.193 18900 TIP 438794 6555 6069520 2024-02-26 04:50:00.284 2024-02-26 04:50:00.284 1000 FEE 438890 9169 6068502 2024-02-26 01:23:06.954 2024-02-26 01:23:06.954 4500 TIP 438651 16042 6068575 2024-02-26 01:28:41.704 2024-02-26 01:28:41.704 7700 FEE 438737 8535 6068576 2024-02-26 01:28:41.704 2024-02-26 01:28:41.704 69300 TIP 438737 15544 6068637 2024-02-26 01:44:11.334 2024-02-26 01:44:11.334 1000 FEE 438649 1983 6068638 2024-02-26 01:44:11.334 2024-02-26 01:44:11.334 9000 TIP 438649 6191 6068643 2024-02-26 01:44:18.142 2024-02-26 01:44:18.142 1000 FEE 438451 21361 6068644 2024-02-26 01:44:18.142 2024-02-26 01:44:18.142 9000 TIP 438451 1985 6068652 2024-02-26 01:45:22.269 2024-02-26 01:45:22.269 1000 FEE 438434 1130 6068653 2024-02-26 01:45:22.269 2024-02-26 01:45:22.269 9000 TIP 438434 15526 6068702 2024-02-26 02:02:00.139 2024-02-26 02:02:00.139 2100 FEE 438718 14225 6068703 2024-02-26 02:02:00.139 2024-02-26 02:02:00.139 18900 TIP 438718 18330 6068709 2024-02-26 02:06:48.108 2024-02-26 02:06:48.108 97000 FEE 438816 946 6068711 2024-02-26 02:07:10.245 2024-02-26 02:07:10.245 1000 FEE 438813 19156 6068712 2024-02-26 02:07:10.245 2024-02-26 02:07:10.245 9000 TIP 438813 19848 6068737 2024-02-26 02:16:19.432 2024-02-26 02:16:19.432 1100 FEE 437723 20581 6068738 2024-02-26 02:16:19.432 2024-02-26 02:16:19.432 9900 TIP 437723 798 6068755 2024-02-26 02:23:14.743 2024-02-26 02:23:14.743 10000 FEE 438736 4076 6068756 2024-02-26 02:23:14.743 2024-02-26 02:23:14.743 90000 TIP 438736 12368 6068777 2024-02-26 02:27:01.84 2024-02-26 02:27:01.84 900 FEE 438796 2077 6068778 2024-02-26 02:27:01.84 2024-02-26 02:27:01.84 8100 TIP 438796 20554 6068779 2024-02-26 02:27:02.257 2024-02-26 02:27:02.257 9000 FEE 438796 746 6068780 2024-02-26 02:27:02.257 2024-02-26 02:27:02.257 81000 TIP 438796 19524 6068824 2024-02-26 02:29:55.123 2024-02-26 02:29:55.123 100 FEE 438758 8289 6068825 2024-02-26 02:29:55.123 2024-02-26 02:29:55.123 900 TIP 438758 21083 6068849 2024-02-26 02:36:16.265 2024-02-26 02:36:16.265 10000 FEE 438813 21263 6068850 2024-02-26 02:36:16.265 2024-02-26 02:36:16.265 90000 TIP 438813 18836 6068853 2024-02-26 02:37:45.601 2024-02-26 02:37:45.601 1000 POLL 438414 17741 6068880 2024-02-26 02:40:17.153 2024-02-26 02:40:17.153 1000 POLL 438794 19189 6068892 2024-02-26 02:41:31.673 2024-02-26 02:41:31.673 100 FEE 438822 1213 6068893 2024-02-26 02:41:31.673 2024-02-26 02:41:31.673 900 TIP 438822 18930 6068894 2024-02-26 02:41:33.081 2024-02-26 02:41:33.081 100 FEE 438822 17713 6068895 2024-02-26 02:41:33.081 2024-02-26 02:41:33.081 900 TIP 438822 16753 6068898 2024-02-26 02:41:34.465 2024-02-26 02:41:34.465 100 FEE 438822 19961 6068899 2024-02-26 02:41:34.465 2024-02-26 02:41:34.465 900 TIP 438822 14950 6068951 2024-02-26 02:57:10.022 2024-02-26 02:57:10.022 2500 FEE 433123 11298 6068952 2024-02-26 02:57:10.022 2024-02-26 02:57:10.022 22500 TIP 433123 19572 6068977 2024-02-26 03:00:41.072 2024-02-26 03:00:41.072 6900 FEE 438789 6136 6068978 2024-02-26 03:00:41.072 2024-02-26 03:00:41.072 62100 TIP 438789 20840 6068981 2024-02-26 03:01:18.714 2024-02-26 03:01:18.714 1000 FEE 438832 1800 6068997 2024-02-26 03:03:31.158 2024-02-26 03:03:31.158 100000 FEE 438621 21003 6068998 2024-02-26 03:03:31.158 2024-02-26 03:03:31.158 900000 TIP 438621 19622 6069016 2024-02-26 03:05:05.308 2024-02-26 03:05:05.308 1000 FEE 438829 19147 6069017 2024-02-26 03:05:05.308 2024-02-26 03:05:05.308 9000 TIP 438829 629 6069018 2024-02-26 03:05:05.449 2024-02-26 03:05:05.449 1000 FEE 438829 4819 6069019 2024-02-26 03:05:05.449 2024-02-26 03:05:05.449 9000 TIP 438829 15180 6069034 2024-02-26 03:06:45.97 2024-02-26 03:06:45.97 300 FEE 438737 21058 6069035 2024-02-26 03:06:45.97 2024-02-26 03:06:45.97 2700 TIP 438737 15336 6069040 2024-02-26 03:06:46.591 2024-02-26 03:06:46.591 300 FEE 438737 21457 6069041 2024-02-26 03:06:46.591 2024-02-26 03:06:46.591 2700 TIP 438737 13169 6069064 2024-02-26 03:07:49.92 2024-02-26 03:07:49.92 0 FEE 438836 17291 6069079 2024-02-26 03:10:28.349 2024-02-26 03:10:28.349 1000 FEE 438839 19930 6069089 2024-02-26 03:12:51.185 2024-02-26 03:12:51.185 1000 POLL 438325 20619 6069120 2024-02-26 03:23:25.525 2024-02-26 03:23:25.525 1000 POLL 438325 3347 6069154 2024-02-26 03:27:11.201 2024-02-26 03:27:11.201 1000 FEE 438753 15049 6069155 2024-02-26 03:27:11.201 2024-02-26 03:27:11.201 9000 TIP 438753 623 6069166 2024-02-26 03:27:54.961 2024-02-26 03:27:54.961 1000 FEE 438851 880 6069167 2024-02-26 03:27:54.961 2024-02-26 03:27:54.961 9000 TIP 438851 14857 6069187 2024-02-26 03:29:13.842 2024-02-26 03:29:13.842 10000 FEE 437863 701 6069188 2024-02-26 03:29:13.842 2024-02-26 03:29:13.842 90000 TIP 437863 11820 6069191 2024-02-26 03:30:13.738 2024-02-26 03:30:13.738 1000 POLL 438325 2543 6069206 2024-02-26 03:36:28.097 2024-02-26 03:36:28.097 100000 DONT_LIKE_THIS 438743 18995 6069232 2024-02-26 03:42:50.322 2024-02-26 03:42:50.322 1000 FEE 438861 5725 6069253 2024-02-26 03:51:32.727 2024-02-26 03:51:32.727 100 FEE 438649 11716 6069254 2024-02-26 03:51:32.727 2024-02-26 03:51:32.727 900 TIP 438649 15577 6069263 2024-02-26 03:53:43.59 2024-02-26 03:53:43.59 0 FEE 438865 2402 6069316 2024-02-26 04:11:55.039 2024-02-26 04:11:55.039 1000 FEE 438873 16442 6069320 2024-02-26 04:12:48.416 2024-02-26 04:12:48.416 6900 FEE 438871 19735 6069321 2024-02-26 04:12:48.416 2024-02-26 04:12:48.416 62100 TIP 438871 19449 6069334 2024-02-26 04:17:46.999 2024-02-26 04:17:46.999 1000 POLL 438794 20980 6069363 2024-02-26 04:25:17.447 2024-02-26 04:25:17.447 6900 FEE 438874 20058 6069364 2024-02-26 04:25:17.447 2024-02-26 04:25:17.447 62100 TIP 438874 946 6069394 2024-02-26 04:33:10.798 2024-02-26 04:33:10.798 2100 FEE 438876 20117 6069395 2024-02-26 04:33:10.798 2024-02-26 04:33:10.798 18900 TIP 438876 11522 6069404 2024-02-26 04:38:28.159 2024-02-26 04:38:28.159 13800 FEE 435928 21019 6069405 2024-02-26 04:38:28.159 2024-02-26 04:38:28.159 124200 TIP 435928 19640 6069452 2024-02-26 04:38:46.672 2024-02-26 04:38:46.672 6900 FEE 438789 9275 6069453 2024-02-26 04:38:46.672 2024-02-26 04:38:46.672 62100 TIP 438789 19156 6069460 2024-02-26 04:38:51.93 2024-02-26 04:38:51.93 6900 FEE 438847 16679 6069461 2024-02-26 04:38:51.93 2024-02-26 04:38:51.93 62100 TIP 438847 17321 6069466 2024-02-26 04:38:52.417 2024-02-26 04:38:52.417 6900 FEE 438847 9362 6069467 2024-02-26 04:38:52.417 2024-02-26 04:38:52.417 62100 TIP 438847 762 6069501 2024-02-26 04:46:37.544 2024-02-26 04:46:37.544 1000 POLL 438794 2056 6069508 2024-02-26 04:48:04.974 2024-02-26 04:48:04.974 1000 FEE 438886 18472 6069554 2024-02-26 05:10:28.783 2024-02-26 05:10:28.783 4200 FEE 438814 9 6069555 2024-02-26 05:10:28.783 2024-02-26 05:10:28.783 37800 TIP 438814 21343 6069609 2024-02-26 05:29:41.005 2024-02-26 05:29:41.005 1100 FEE 438812 21296 6069610 2024-02-26 05:29:41.005 2024-02-26 05:29:41.005 9900 TIP 438812 18336 6069612 2024-02-26 05:30:52.79 2024-02-26 05:30:52.79 100 FEE 438896 17030 6068538 2024-02-26 01:26:03.347 2024-02-26 01:26:03.347 1000 STREAM 141924 1120 6068541 2024-02-26 01:27:03.728 2024-02-26 01:27:03.728 1000 STREAM 141924 21292 6068560 2024-02-26 01:28:03.683 2024-02-26 01:28:03.683 1000 STREAM 141924 5728 6068581 2024-02-26 01:29:03.709 2024-02-26 01:29:03.709 1000 STREAM 141924 5175 6068589 2024-02-26 01:31:03.693 2024-02-26 01:31:03.693 1000 STREAM 141924 21509 6068591 2024-02-26 01:33:03.711 2024-02-26 01:33:03.711 1000 STREAM 141924 17741 6068593 2024-02-26 01:34:03.713 2024-02-26 01:34:03.713 1000 STREAM 141924 19281 6068595 2024-02-26 01:36:03.719 2024-02-26 01:36:03.719 1000 STREAM 141924 675 6068596 2024-02-26 01:37:03.737 2024-02-26 01:37:03.737 1000 STREAM 141924 15045 6068607 2024-02-26 01:38:03.743 2024-02-26 01:38:03.743 1000 STREAM 141924 13763 6068630 2024-02-26 01:42:03.78 2024-02-26 01:42:03.78 1000 STREAM 141924 8870 6068680 2024-02-26 01:53:03.861 2024-02-26 01:53:03.861 1000 STREAM 141924 20904 6068704 2024-02-26 02:02:03.917 2024-02-26 02:02:03.917 1000 STREAM 141924 1658 6068705 2024-02-26 02:03:03.918 2024-02-26 02:03:03.918 1000 STREAM 141924 1823 6068707 2024-02-26 02:05:03.924 2024-02-26 02:05:03.924 1000 STREAM 141924 3456 6068708 2024-02-26 02:06:03.937 2024-02-26 02:06:03.937 1000 STREAM 141924 7746 6068710 2024-02-26 02:07:03.945 2024-02-26 02:07:03.945 1000 STREAM 141924 18402 6068715 2024-02-26 02:08:03.933 2024-02-26 02:08:03.933 1000 STREAM 141924 18877 6068725 2024-02-26 02:10:03.996 2024-02-26 02:10:03.996 1000 STREAM 141924 20066 6068727 2024-02-26 02:12:03.979 2024-02-26 02:12:03.979 1000 STREAM 141924 21329 6068730 2024-02-26 02:13:03.989 2024-02-26 02:13:03.989 1000 STREAM 141924 18680 6068733 2024-02-26 02:14:03.995 2024-02-26 02:14:03.995 1000 STREAM 141924 1425 6068736 2024-02-26 02:16:04.011 2024-02-26 02:16:04.011 1000 STREAM 141924 21422 6068740 2024-02-26 02:18:04.048 2024-02-26 02:18:04.048 1000 STREAM 141924 5195 6068743 2024-02-26 02:19:04.024 2024-02-26 02:19:04.024 1000 STREAM 141924 10490 6068747 2024-02-26 02:20:04.038 2024-02-26 02:20:04.038 1000 STREAM 141924 1007 6068754 2024-02-26 02:23:04.065 2024-02-26 02:23:04.065 1000 STREAM 141924 11516 6068765 2024-02-26 02:26:04.072 2024-02-26 02:26:04.072 1000 STREAM 141924 21148 6068830 2024-02-26 02:30:04.157 2024-02-26 02:30:04.157 1000 STREAM 141924 4654 6068841 2024-02-26 02:31:04.125 2024-02-26 02:31:04.125 1000 STREAM 141924 13361 6068842 2024-02-26 02:32:04.125 2024-02-26 02:32:04.125 1000 STREAM 141924 15925 6068845 2024-02-26 02:33:04.125 2024-02-26 02:33:04.125 1000 STREAM 141924 18241 6068879 2024-02-26 02:40:04.212 2024-02-26 02:40:04.212 1000 STREAM 141924 7773 6068627 2024-02-26 01:41:33.343 2024-02-26 01:41:33.343 900 TIP 438804 5449 6068654 2024-02-26 01:45:40.806 2024-02-26 01:45:40.806 1000 FEE 438345 2342 6068655 2024-02-26 01:45:40.806 2024-02-26 01:45:40.806 9000 TIP 438345 21430 6068660 2024-02-26 01:47:14.399 2024-02-26 01:47:14.399 2100 FEE 438780 713 6068661 2024-02-26 01:47:14.399 2024-02-26 01:47:14.399 18900 TIP 438780 20993 6068676 2024-02-26 01:52:49.79 2024-02-26 01:52:49.79 2100 FEE 438808 9341 6068677 2024-02-26 01:52:49.79 2024-02-26 01:52:49.79 18900 TIP 438808 20452 6068770 2024-02-26 02:26:07.479 2024-02-26 02:26:07.479 9000 FEE 438806 999 6068771 2024-02-26 02:26:07.479 2024-02-26 02:26:07.479 81000 TIP 438806 1802 6068799 2024-02-26 02:28:19.371 2024-02-26 02:28:19.371 900 FEE 438231 14045 6068800 2024-02-26 02:28:19.371 2024-02-26 02:28:19.371 8100 TIP 438231 19096 6068810 2024-02-26 02:29:22.929 2024-02-26 02:29:22.929 900 FEE 438725 18832 6068811 2024-02-26 02:29:22.929 2024-02-26 02:29:22.929 8100 TIP 438725 9171 6068812 2024-02-26 02:29:31.252 2024-02-26 02:29:31.252 1100 FEE 438479 909 6068813 2024-02-26 02:29:31.252 2024-02-26 02:29:31.252 9900 TIP 438479 13246 6068820 2024-02-26 02:29:38.772 2024-02-26 02:29:38.772 90000 FEE 438735 21451 6068821 2024-02-26 02:29:38.772 2024-02-26 02:29:38.772 810000 TIP 438735 5703 6068831 2024-02-26 02:30:07.074 2024-02-26 02:30:07.074 100 FEE 438794 2460 6068832 2024-02-26 02:30:07.074 2024-02-26 02:30:07.074 900 TIP 438794 21453 6068833 2024-02-26 02:30:07.286 2024-02-26 02:30:07.286 900 FEE 438794 8416 6068834 2024-02-26 02:30:07.286 2024-02-26 02:30:07.286 8100 TIP 438794 14074 6068835 2024-02-26 02:30:07.8 2024-02-26 02:30:07.8 9000 FEE 438794 20687 6068836 2024-02-26 02:30:07.8 2024-02-26 02:30:07.8 81000 TIP 438794 7989 6068864 2024-02-26 02:39:42.125 2024-02-26 02:39:42.125 1000 FEE 438794 20272 6068865 2024-02-26 02:39:42.125 2024-02-26 02:39:42.125 9000 TIP 438794 3709 6068874 2024-02-26 02:39:43.234 2024-02-26 02:39:43.234 1000 FEE 438794 880 6068875 2024-02-26 02:39:43.234 2024-02-26 02:39:43.234 9000 TIP 438794 14906 6068923 2024-02-26 02:44:00.978 2024-02-26 02:44:00.978 1000 FEE 438202 14376 6068924 2024-02-26 02:44:00.978 2024-02-26 02:44:00.978 9000 TIP 438202 900 6068929 2024-02-26 02:45:30.417 2024-02-26 02:45:30.417 1000 FEE 438826 14650 6068930 2024-02-26 02:45:30.417 2024-02-26 02:45:30.417 9000 TIP 438826 876 6068954 2024-02-26 02:57:41.047 2024-02-26 02:57:41.047 2500 FEE 434705 19735 6068955 2024-02-26 02:57:41.047 2024-02-26 02:57:41.047 22500 TIP 434705 21062 6068960 2024-02-26 02:59:17.74 2024-02-26 02:59:17.74 1000 FEE 438831 15697 6068963 2024-02-26 02:59:41.403 2024-02-26 02:59:41.403 4000 FEE 438735 10409 6068964 2024-02-26 02:59:41.403 2024-02-26 02:59:41.403 36000 TIP 438735 17014 6068988 2024-02-26 03:01:27.577 2024-02-26 03:01:27.577 0 FEE 139939 827 6068994 2024-02-26 03:03:17.18 2024-02-26 03:03:17.18 6900 FEE 438832 2776 6068995 2024-02-26 03:03:17.18 2024-02-26 03:03:17.18 62100 TIP 438832 9982 6069003 2024-02-26 03:05:02.606 2024-02-26 03:05:02.606 1000 FEE 438829 21365 6069004 2024-02-26 03:05:02.606 2024-02-26 03:05:02.606 9000 TIP 438829 4798 6069014 2024-02-26 03:05:05.153 2024-02-26 03:05:05.153 1000 FEE 438829 5703 6069015 2024-02-26 03:05:05.153 2024-02-26 03:05:05.153 9000 TIP 438829 7675 6069026 2024-02-26 03:06:45.162 2024-02-26 03:06:45.162 300 FEE 438737 14267 6069027 2024-02-26 03:06:45.162 2024-02-26 03:06:45.162 2700 TIP 438737 20981 6069050 2024-02-26 03:07:15.579 2024-02-26 03:07:15.579 2000 FEE 438694 18188 6069051 2024-02-26 03:07:15.579 2024-02-26 03:07:15.579 18000 TIP 438694 8269 6069077 2024-02-26 03:10:21.948 2024-02-26 03:10:21.948 3000 FEE 438743 19785 6069078 2024-02-26 03:10:21.948 2024-02-26 03:10:21.948 27000 TIP 438743 20778 6069084 2024-02-26 03:11:28.352 2024-02-26 03:11:28.352 0 FEE 438840 21036 6069102 2024-02-26 03:19:14.755 2024-02-26 03:19:14.755 1000 FEE 438844 11821 6069115 2024-02-26 03:20:37.235 2024-02-26 03:20:37.235 0 FEE 438844 4323 6069123 2024-02-26 03:24:05.699 2024-02-26 03:24:05.699 0 FEE 438845 18264 6069136 2024-02-26 03:25:13.056 2024-02-26 03:25:13.056 6900 FEE 438847 11075 6069137 2024-02-26 03:25:13.056 2024-02-26 03:25:13.056 62100 TIP 438847 13843 6069170 2024-02-26 03:27:55.619 2024-02-26 03:27:55.619 1000 FEE 438851 20026 6069171 2024-02-26 03:27:55.619 2024-02-26 03:27:55.619 9000 TIP 438851 17800 6069183 2024-02-26 03:28:05.899 2024-02-26 03:28:05.899 1000 FEE 438848 669 6069184 2024-02-26 03:28:05.899 2024-02-26 03:28:05.899 9000 TIP 438848 4459 6069212 2024-02-26 03:37:57.05 2024-02-26 03:37:57.05 700 FEE 438729 9356 6069213 2024-02-26 03:37:57.05 2024-02-26 03:37:57.05 6300 TIP 438729 16356 6069221 2024-02-26 03:39:14.145 2024-02-26 03:39:14.145 2100 FEE 438847 5557 6069222 2024-02-26 03:39:14.145 2024-02-26 03:39:14.145 18900 TIP 438847 15060 6069244 2024-02-26 03:48:26.832 2024-02-26 03:48:26.832 1000 FEE 438863 6058 6069245 2024-02-26 03:49:02.794 2024-02-26 03:49:02.794 6900 FEE 438863 20022 6069246 2024-02-26 03:49:02.794 2024-02-26 03:49:02.794 62100 TIP 438863 21591 6069250 2024-02-26 03:50:28.713 2024-02-26 03:50:28.713 1000 FEE 438735 20706 6069251 2024-02-26 03:50:28.713 2024-02-26 03:50:28.713 9000 TIP 438735 828 6069269 2024-02-26 03:56:32.765 2024-02-26 03:56:32.765 100000 FEE 438866 21444 6069318 2024-02-26 04:12:15.603 2024-02-26 04:12:15.603 1000 FEE 438758 12744 6069319 2024-02-26 04:12:15.603 2024-02-26 04:12:15.603 9000 TIP 438758 18051 6069328 2024-02-26 04:14:36.256 2024-02-26 04:14:36.256 300 FEE 438758 14295 6069329 2024-02-26 04:14:36.256 2024-02-26 04:14:36.256 2700 TIP 438758 21571 6069339 2024-02-26 04:19:35.628 2024-02-26 04:19:35.628 1000 POLL 438794 14669 6069384 2024-02-26 04:28:41.641 2024-02-26 04:28:41.641 1000 FEE 438880 21563 6069385 2024-02-26 04:28:55.029 2024-02-26 04:28:55.029 1000 FEE 438414 18225 6069386 2024-02-26 04:28:55.029 2024-02-26 04:28:55.029 9000 TIP 438414 20964 6069388 2024-02-26 04:29:43.105 2024-02-26 04:29:43.105 2100 FEE 438065 18743 6069389 2024-02-26 04:29:43.105 2024-02-26 04:29:43.105 18900 TIP 438065 11450 6068787 2024-02-26 02:27:08.889 2024-02-26 02:27:08.889 8100 TIP 438765 13878 6068803 2024-02-26 02:28:52.564 2024-02-26 02:28:52.564 900 FEE 438814 12507 6068804 2024-02-26 02:28:52.564 2024-02-26 02:28:52.564 8100 TIP 438814 1983 6068933 2024-02-26 02:47:56.297 2024-02-26 02:47:56.297 1000 FEE 438827 19929 6068944 2024-02-26 02:54:14.889 2024-02-26 02:54:14.889 1000 FEE 438444 20715 6068945 2024-02-26 02:54:14.889 2024-02-26 02:54:14.889 9000 TIP 438444 19938 6068957 2024-02-26 02:58:41.209 2024-02-26 02:58:41.209 0 FEE 438829 15408 6069009 2024-02-26 03:05:03.096 2024-02-26 03:05:03.096 1000 FEE 438829 11220 6069010 2024-02-26 03:05:03.096 2024-02-26 03:05:03.096 9000 TIP 438829 12483 6069012 2024-02-26 03:05:04.992 2024-02-26 03:05:04.992 1000 FEE 438829 5828 6069013 2024-02-26 03:05:04.992 2024-02-26 03:05:04.992 9000 TIP 438829 18556 6069052 2024-02-26 03:07:16.032 2024-02-26 03:07:16.032 2000 FEE 438694 21393 6069053 2024-02-26 03:07:16.032 2024-02-26 03:07:16.032 18000 TIP 438694 15049 6069081 2024-02-26 03:10:41.162 2024-02-26 03:10:41.162 0 FEE 438840 3456 6069087 2024-02-26 03:11:37.627 2024-02-26 03:11:37.627 0 FEE 438840 17639 6069091 2024-02-26 03:13:21.119 2024-02-26 03:13:21.119 1000 FEE 438841 14213 6069113 2024-02-26 03:20:11.523 2024-02-26 03:20:11.523 1000 FEE 438737 4474 6069114 2024-02-26 03:20:11.523 2024-02-26 03:20:11.523 9000 TIP 438737 2942 6069121 2024-02-26 03:24:00.843 2024-02-26 03:24:00.843 1000 FEE 438846 19796 6069124 2024-02-26 03:24:22.083 2024-02-26 03:24:22.083 1000 FEE 438758 1733 6069125 2024-02-26 03:24:22.083 2024-02-26 03:24:22.083 9000 TIP 438758 18995 6069126 2024-02-26 03:24:22.174 2024-02-26 03:24:22.174 1000 FEE 438758 20757 6069127 2024-02-26 03:24:22.174 2024-02-26 03:24:22.174 9000 TIP 438758 794 6069144 2024-02-26 03:26:27.519 2024-02-26 03:26:27.519 1000 FEE 438851 20246 6069148 2024-02-26 03:26:51.209 2024-02-26 03:26:51.209 10000 FEE 438846 1465 6069149 2024-02-26 03:26:51.209 2024-02-26 03:26:51.209 90000 TIP 438846 1010 6069152 2024-02-26 03:27:11.039 2024-02-26 03:27:11.039 1000 FEE 438753 21262 6069153 2024-02-26 03:27:11.039 2024-02-26 03:27:11.039 9000 TIP 438753 20376 6069189 2024-02-26 03:29:48.994 2024-02-26 03:29:48.994 1000 FEE 438856 9438 6069197 2024-02-26 03:32:00.065 2024-02-26 03:32:00.065 6900 FEE 438794 19502 6069198 2024-02-26 03:32:00.065 2024-02-26 03:32:00.065 62100 TIP 438794 1652 6069210 2024-02-26 03:37:51.668 2024-02-26 03:37:51.668 1000 POLL 438794 12708 6069211 2024-02-26 03:37:54.186 2024-02-26 03:37:54.186 100000 FEE 438857 16848 6069218 2024-02-26 03:38:51.513 2024-02-26 03:38:51.513 2100 FEE 438758 17106 6069219 2024-02-26 03:38:51.513 2024-02-26 03:38:51.513 18900 TIP 438758 1803 6069226 2024-02-26 03:40:59.777 2024-02-26 03:40:59.777 21000 FEE 438859 14271 6069228 2024-02-26 03:41:26.261 2024-02-26 03:41:26.261 300 FEE 438764 9992 6069229 2024-02-26 03:41:26.261 2024-02-26 03:41:26.261 2700 TIP 438764 14785 6069230 2024-02-26 03:41:52.039 2024-02-26 03:41:52.039 100000 FEE 438860 20058 6069272 2024-02-26 03:58:30.199 2024-02-26 03:58:30.199 3500 FEE 438689 15806 6069273 2024-02-26 03:58:30.199 2024-02-26 03:58:30.199 31500 TIP 438689 19007 6069278 2024-02-26 03:59:58.547 2024-02-26 03:59:58.547 1000 FEE 438868 21021 6069327 2024-02-26 04:14:27.202 2024-02-26 04:14:27.202 1000 FEE 438875 756 6069356 2024-02-26 04:23:55.131 2024-02-26 04:23:55.131 1000 FEE 438877 17411 6069402 2024-02-26 04:38:27.688 2024-02-26 04:38:27.688 13800 FEE 435928 9150 6069403 2024-02-26 04:38:27.688 2024-02-26 04:38:27.688 124200 TIP 435928 2188 6069430 2024-02-26 04:38:44.965 2024-02-26 04:38:44.965 6900 FEE 438789 12566 6069431 2024-02-26 04:38:44.965 2024-02-26 04:38:44.965 62100 TIP 438789 964 6069450 2024-02-26 04:38:46.59 2024-02-26 04:38:46.59 6900 FEE 438789 633 6069451 2024-02-26 04:38:46.59 2024-02-26 04:38:46.59 62100 TIP 438789 8162 6069485 2024-02-26 04:40:21.119 2024-02-26 04:40:21.119 0 FEE 438882 17237 6069495 2024-02-26 04:44:34.076 2024-02-26 04:44:34.076 1000 FEE 438884 21060 6069513 2024-02-26 04:49:18.041 2024-02-26 04:49:18.041 1000 FEE 438888 4538 6069515 2024-02-26 04:49:23.053 2024-02-26 04:49:23.053 11100 FEE 438887 20231 6069516 2024-02-26 04:49:23.053 2024-02-26 04:49:23.053 99900 TIP 438887 16665 6069517 2024-02-26 04:49:37.93 2024-02-26 04:49:37.93 1000 FEE 438889 16176 6068840 2024-02-26 02:30:23.066 2024-02-26 02:30:23.066 81000 TIP 438814 19857 6068855 2024-02-26 02:38:25.458 2024-02-26 02:38:25.458 1000 FEE 438821 15890 6068860 2024-02-26 02:39:41.727 2024-02-26 02:39:41.727 1000 FEE 438794 9355 6068861 2024-02-26 02:39:41.727 2024-02-26 02:39:41.727 9000 TIP 438794 3400 6068904 2024-02-26 02:41:35.593 2024-02-26 02:41:35.593 100 FEE 438822 12562 6068905 2024-02-26 02:41:35.593 2024-02-26 02:41:35.593 900 TIP 438822 16387 6068910 2024-02-26 02:41:37.181 2024-02-26 02:41:37.181 100 FEE 438822 10096 6068911 2024-02-26 02:41:37.181 2024-02-26 02:41:37.181 900 TIP 438822 3656 6068912 2024-02-26 02:41:43.356 2024-02-26 02:41:43.356 2100 FEE 438753 1180 6068913 2024-02-26 02:41:43.356 2024-02-26 02:41:43.356 18900 TIP 438753 9476 6068918 2024-02-26 02:42:36.894 2024-02-26 02:42:36.894 2100 FEE 438813 18528 6068919 2024-02-26 02:42:36.894 2024-02-26 02:42:36.894 18900 TIP 438813 5112 6068922 2024-02-26 02:43:51.662 2024-02-26 02:43:51.662 1000 POLL 438202 6578 6068939 2024-02-26 02:52:41.63 2024-02-26 02:52:41.63 1000 FEE 438828 2709 6068946 2024-02-26 02:54:31.27 2024-02-26 02:54:31.27 1000 FEE 438621 766 6068947 2024-02-26 02:54:31.27 2024-02-26 02:54:31.27 9000 TIP 438621 3371 6068967 2024-02-26 02:59:57.054 2024-02-26 02:59:57.054 4000 FEE 438814 18068 6068968 2024-02-26 02:59:57.054 2024-02-26 02:59:57.054 36000 TIP 438814 10270 6068986 2024-02-26 03:01:25.004 2024-02-26 03:01:25.004 6900 FEE 438770 17827 6068987 2024-02-26 03:01:25.004 2024-02-26 03:01:25.004 62100 TIP 438770 3456 6068989 2024-02-26 03:01:54.099 2024-02-26 03:01:54.099 1000 DONT_LIKE_THIS 438389 18423 6069001 2024-02-26 03:05:02.442 2024-02-26 03:05:02.442 1000 FEE 438829 4076 6069002 2024-02-26 03:05:02.442 2024-02-26 03:05:02.442 9000 TIP 438829 14939 6069020 2024-02-26 03:05:06.694 2024-02-26 03:05:06.694 1000 FEE 438829 16145 6069021 2024-02-26 03:05:06.694 2024-02-26 03:05:06.694 9000 TIP 438829 8541 6069056 2024-02-26 03:07:16.798 2024-02-26 03:07:16.798 2000 FEE 438694 18909 6069057 2024-02-26 03:07:16.798 2024-02-26 03:07:16.798 18000 TIP 438694 20623 6069067 2024-02-26 03:09:26.526 2024-02-26 03:09:26.526 1000 FEE 438838 15243 6069072 2024-02-26 03:10:02.183 2024-02-26 03:10:02.183 6900 FEE 438651 21401 6069073 2024-02-26 03:10:02.183 2024-02-26 03:10:02.183 62100 TIP 438651 15719 6069080 2024-02-26 03:10:33.025 2024-02-26 03:10:33.025 1000 FEE 438840 20133 6069101 2024-02-26 03:19:11.58 2024-02-26 03:19:11.58 1000 FEE 438843 9669 6069130 2024-02-26 03:24:55.359 2024-02-26 03:24:55.359 1000 FEE 438848 5003 6069193 2024-02-26 03:31:59.548 2024-02-26 03:31:59.548 6900 FEE 438794 20179 6069194 2024-02-26 03:31:59.548 2024-02-26 03:31:59.548 62100 TIP 438794 20106 6069223 2024-02-26 03:39:41.557 2024-02-26 03:39:41.557 1000 FEE 438737 18116 6069224 2024-02-26 03:39:41.557 2024-02-26 03:39:41.557 9000 TIP 438737 12057 6069266 2024-02-26 03:55:11.125 2024-02-26 03:55:11.125 300 FEE 438816 14503 6069267 2024-02-26 03:55:11.125 2024-02-26 03:55:11.125 2700 TIP 438816 4118 6069296 2024-02-26 04:07:58.803 2024-02-26 04:07:58.803 1000 FEE 438868 9695 6069297 2024-02-26 04:07:58.803 2024-02-26 04:07:58.803 9000 TIP 438868 5377 6069323 2024-02-26 04:13:04.2 2024-02-26 04:13:04.2 1000 FEE 438874 19016 6069332 2024-02-26 04:16:06.167 2024-02-26 04:16:06.167 1000 POLL 438794 13547 6069340 2024-02-26 04:19:37.804 2024-02-26 04:19:37.804 0 FEE 438874 14195 6069342 2024-02-26 04:20:12.317 2024-02-26 04:20:12.317 7100 FEE 438259 21395 6069343 2024-02-26 04:20:12.317 2024-02-26 04:20:12.317 63900 TIP 438259 1286 6069349 2024-02-26 04:22:03.026 2024-02-26 04:22:03.026 3000 FEE 438065 9969 6069350 2024-02-26 04:22:03.026 2024-02-26 04:22:03.026 27000 TIP 438065 1720 6069369 2024-02-26 04:25:47.109 2024-02-26 04:25:47.109 2100 FEE 438827 4128 6069370 2024-02-26 04:25:47.109 2024-02-26 04:25:47.109 18900 TIP 438827 6749 6069376 2024-02-26 04:27:12.344 2024-02-26 04:27:12.344 2100 FEE 438765 21047 6069377 2024-02-26 04:27:12.344 2024-02-26 04:27:12.344 18900 TIP 438765 13553 6069438 2024-02-26 04:38:45.599 2024-02-26 04:38:45.599 6900 FEE 438789 6360 6069439 2024-02-26 04:38:45.599 2024-02-26 04:38:45.599 62100 TIP 438789 18402 6069446 2024-02-26 04:38:46.283 2024-02-26 04:38:46.283 6900 FEE 438789 1552 6069447 2024-02-26 04:38:46.283 2024-02-26 04:38:46.283 62100 TIP 438789 5637 6069456 2024-02-26 04:38:51.647 2024-02-26 04:38:51.647 6900 FEE 438847 18271 6069457 2024-02-26 04:38:51.647 2024-02-26 04:38:51.647 62100 TIP 438847 18274 6069458 2024-02-26 04:38:51.812 2024-02-26 04:38:51.812 6900 FEE 438847 1245 6069459 2024-02-26 04:38:51.812 2024-02-26 04:38:51.812 62100 TIP 438847 21057 6069468 2024-02-26 04:38:52.61 2024-02-26 04:38:52.61 6900 FEE 438847 10359 6069469 2024-02-26 04:38:52.61 2024-02-26 04:38:52.61 62100 TIP 438847 10554 6069489 2024-02-26 04:42:17.31 2024-02-26 04:42:17.31 1000 FEE 438874 17116 6069490 2024-02-26 04:42:17.31 2024-02-26 04:42:17.31 9000 TIP 438874 929 6069512 2024-02-26 04:49:12.638 2024-02-26 04:49:12.638 10000 FEE 438887 18679 6069564 2024-02-26 05:15:30.669 2024-02-26 05:15:30.669 1500 FEE 438780 17722 6069565 2024-02-26 05:15:30.669 2024-02-26 05:15:30.669 13500 TIP 438780 20624 6069581 2024-02-26 05:20:05.206 2024-02-26 05:20:05.206 0 FEE 438897 4126 6069617 2024-02-26 05:32:16.341 2024-02-26 05:32:16.341 1000 FEE 438900 16230 6069651 2024-02-26 05:48:11.904 2024-02-26 05:48:11.904 2100 FEE 438773 20891 6069652 2024-02-26 05:48:11.904 2024-02-26 05:48:11.904 18900 TIP 438773 2232 6069659 2024-02-26 05:51:08.285 2024-02-26 05:51:08.285 1000 POLL 438325 20434 6069682 2024-02-26 06:01:46.343 2024-02-26 06:01:46.343 1000 FEE 438804 12222 6069683 2024-02-26 06:01:46.343 2024-02-26 06:01:46.343 9000 TIP 438804 17184 6069690 2024-02-26 06:02:59.502 2024-02-26 06:02:59.502 6600 FEE 438737 20624 6069691 2024-02-26 06:02:59.502 2024-02-26 06:02:59.502 59400 TIP 438737 18178 6069699 2024-02-26 06:03:26.294 2024-02-26 06:03:26.294 1000 FEE 438915 626 6069747 2024-02-26 06:25:40.376 2024-02-26 06:25:40.376 800 FEE 438893 19576 6069748 2024-02-26 06:25:40.376 2024-02-26 06:25:40.376 7200 TIP 438893 13042 6069810 2024-02-26 06:58:50.015 2024-02-26 06:58:50.015 1000 FEE 438928 2459 6069824 2024-02-26 07:06:54.073 2024-02-26 07:06:54.073 2100 FEE 438880 11866 6069825 2024-02-26 07:06:54.073 2024-02-26 07:06:54.073 18900 TIP 438880 18280 6069864 2024-02-26 07:21:15.61 2024-02-26 07:21:15.61 2100 FEE 438414 19263 6069865 2024-02-26 07:21:15.61 2024-02-26 07:21:15.61 18900 TIP 438414 2832 6069866 2024-02-26 07:21:16.618 2024-02-26 07:21:16.618 2100 FEE 438649 15282 6069867 2024-02-26 07:21:16.618 2024-02-26 07:21:16.618 18900 TIP 438649 1836 6069868 2024-02-26 07:21:17.472 2024-02-26 07:21:17.472 2100 FEE 438649 19394 6069869 2024-02-26 07:21:17.472 2024-02-26 07:21:17.472 18900 TIP 438649 20245 6069872 2024-02-26 07:21:19.835 2024-02-26 07:21:19.835 2100 FEE 438691 16456 6069873 2024-02-26 07:21:19.835 2024-02-26 07:21:19.835 18900 TIP 438691 8376 6068856 2024-02-26 02:38:39.473 2024-02-26 02:38:39.473 0 FEE 438820 4035 6068859 2024-02-26 02:39:14.003 2024-02-26 02:39:14.003 1000 FEE 438822 16193 6068862 2024-02-26 02:39:41.915 2024-02-26 02:39:41.915 1000 FEE 438794 20436 6068863 2024-02-26 02:39:41.915 2024-02-26 02:39:41.915 9000 TIP 438794 19848 6068872 2024-02-26 02:39:42.978 2024-02-26 02:39:42.978 1000 FEE 438794 4084 6068873 2024-02-26 02:39:42.978 2024-02-26 02:39:42.978 9000 TIP 438794 2508 6068876 2024-02-26 02:40:03.995 2024-02-26 02:40:03.995 1000 POLL 438794 5306 6068881 2024-02-26 02:40:52.648 2024-02-26 02:40:52.648 1000 FEE 438092 5160 6068882 2024-02-26 02:40:52.648 2024-02-26 02:40:52.648 9000 TIP 438092 19837 6068961 2024-02-26 02:59:41.082 2024-02-26 02:59:41.082 4000 FEE 438758 1603 6068962 2024-02-26 02:59:41.082 2024-02-26 02:59:41.082 36000 TIP 438758 3729 6068973 2024-02-26 03:00:36.765 2024-02-26 03:00:36.765 6900 FEE 438802 9796 6068974 2024-02-26 03:00:36.765 2024-02-26 03:00:36.765 62100 TIP 438802 13204 6068983 2024-02-26 03:01:23.666 2024-02-26 03:01:23.666 1000 FEE 438833 20120 6069000 2024-02-26 03:04:53.935 2024-02-26 03:04:53.935 1000 FEE 438835 13843 6069005 2024-02-26 03:05:02.763 2024-02-26 03:05:02.763 1000 FEE 438829 20560 6069006 2024-02-26 03:05:02.763 2024-02-26 03:05:02.763 9000 TIP 438829 14774 6069007 2024-02-26 03:05:02.934 2024-02-26 03:05:02.934 1000 FEE 438829 12566 6069008 2024-02-26 03:05:02.934 2024-02-26 03:05:02.934 9000 TIP 438829 7877 6069023 2024-02-26 03:06:11.046 2024-02-26 03:06:11.046 0 FEE 438835 828 6069024 2024-02-26 03:06:44.952 2024-02-26 03:06:44.952 300 FEE 438737 21214 6069025 2024-02-26 03:06:44.952 2024-02-26 03:06:44.952 2700 TIP 438737 8926 6069032 2024-02-26 03:06:45.785 2024-02-26 03:06:45.785 300 FEE 438737 21159 6069033 2024-02-26 03:06:45.785 2024-02-26 03:06:45.785 2700 TIP 438737 7376 6069044 2024-02-26 03:06:47.097 2024-02-26 03:06:47.097 300 FEE 438737 5499 6069045 2024-02-26 03:06:47.097 2024-02-26 03:06:47.097 2700 TIP 438737 634 6069060 2024-02-26 03:07:31.806 2024-02-26 03:07:31.806 1000 FEE 438836 19394 6069099 2024-02-26 03:18:59.564 2024-02-26 03:18:59.564 1000 FEE 438842 18815 6069128 2024-02-26 03:24:34.538 2024-02-26 03:24:34.538 0 FEE 438846 9450 6069132 2024-02-26 03:25:10.598 2024-02-26 03:25:10.598 6900 FEE 438847 19943 6069133 2024-02-26 03:25:10.598 2024-02-26 03:25:10.598 62100 TIP 438847 1213 6069141 2024-02-26 03:25:20.517 2024-02-26 03:25:20.517 6900 FEE 438845 1244 6069142 2024-02-26 03:25:20.517 2024-02-26 03:25:20.517 62100 TIP 438845 19639 6069147 2024-02-26 03:26:47.643 2024-02-26 03:26:47.643 1000 FEE 438852 622 6069159 2024-02-26 03:27:26.896 2024-02-26 03:27:26.896 10000 FEE 438746 20817 6069160 2024-02-26 03:27:26.896 2024-02-26 03:27:26.896 90000 TIP 438746 15938 6069168 2024-02-26 03:27:55.234 2024-02-26 03:27:55.234 1000 FEE 438851 6430 6069169 2024-02-26 03:27:55.234 2024-02-26 03:27:55.234 9000 TIP 438851 9758 6069185 2024-02-26 03:28:34.178 2024-02-26 03:28:34.178 269000 DONT_LIKE_THIS 438743 21342 6069255 2024-02-26 03:51:50.421 2024-02-26 03:51:50.421 700 FEE 438784 11443 6069256 2024-02-26 03:51:50.421 2024-02-26 03:51:50.421 6300 TIP 438784 21494 6069274 2024-02-26 03:58:45.602 2024-02-26 03:58:45.602 1000 FEE 438867 16097 6069280 2024-02-26 04:00:04.968 2024-02-26 04:00:04.968 100000 FEE 438869 8954 6069281 2024-02-26 04:00:05.425 2024-02-26 04:00:05.425 1000 FEE 438870 18675 6069300 2024-02-26 04:09:08.826 2024-02-26 04:09:08.826 1000 FEE 438451 20636 6069301 2024-02-26 04:09:08.826 2024-02-26 04:09:08.826 9000 TIP 438451 9078 6069306 2024-02-26 04:10:01.109 2024-02-26 04:10:01.109 1000 FEE 438847 21088 6069307 2024-02-26 04:10:01.109 2024-02-26 04:10:01.109 9000 TIP 438847 13903 6069310 2024-02-26 04:10:25.814 2024-02-26 04:10:25.814 1000 POLL 438794 13133 6069326 2024-02-26 04:14:27.132 2024-02-26 04:14:27.132 1000 POLL 438794 1060 6069345 2024-02-26 04:22:02.722 2024-02-26 04:22:02.722 3000 FEE 438065 2176 6069346 2024-02-26 04:22:02.722 2024-02-26 04:22:02.722 27000 TIP 438065 11527 6069352 2024-02-26 04:22:40.003 2024-02-26 04:22:40.003 2100 FEE 438486 21455 6069353 2024-02-26 04:22:40.003 2024-02-26 04:22:40.003 18900 TIP 438486 21614 6069361 2024-02-26 04:25:16.535 2024-02-26 04:25:16.535 6900 FEE 438874 19174 6069362 2024-02-26 04:25:16.535 2024-02-26 04:25:16.535 62100 TIP 438874 1438 6069371 2024-02-26 04:25:53.951 2024-02-26 04:25:53.951 1000 FEE 438879 732 6069378 2024-02-26 04:27:14.51 2024-02-26 04:27:14.51 2100 FEE 438796 19484 6069379 2024-02-26 04:27:14.51 2024-02-26 04:27:14.51 18900 TIP 438796 19668 6069412 2024-02-26 04:38:29.24 2024-02-26 04:38:29.24 6900 FEE 435928 21401 6069413 2024-02-26 04:38:29.24 2024-02-26 04:38:29.24 62100 TIP 435928 18932 6069416 2024-02-26 04:38:40.939 2024-02-26 04:38:40.939 6900 FEE 438789 19286 6069417 2024-02-26 04:38:40.939 2024-02-26 04:38:40.939 62100 TIP 438789 2609 6069418 2024-02-26 04:38:41.081 2024-02-26 04:38:41.081 6900 FEE 438789 16214 6069419 2024-02-26 04:38:41.081 2024-02-26 04:38:41.081 62100 TIP 438789 21401 6069422 2024-02-26 04:38:41.413 2024-02-26 04:38:41.413 6900 FEE 438789 1959 6069423 2024-02-26 04:38:41.413 2024-02-26 04:38:41.413 62100 TIP 438789 2309 6069424 2024-02-26 04:38:41.704 2024-02-26 04:38:41.704 6900 FEE 438789 20108 6069425 2024-02-26 04:38:41.704 2024-02-26 04:38:41.704 62100 TIP 438789 897 6069428 2024-02-26 04:38:44.806 2024-02-26 04:38:44.806 6900 FEE 438789 732 6069429 2024-02-26 04:38:44.806 2024-02-26 04:38:44.806 62100 TIP 438789 9363 6069434 2024-02-26 04:38:45.306 2024-02-26 04:38:45.306 6900 FEE 438789 19507 6069435 2024-02-26 04:38:45.306 2024-02-26 04:38:45.306 62100 TIP 438789 1772 6069436 2024-02-26 04:38:45.448 2024-02-26 04:38:45.448 6900 FEE 438789 1468 6069437 2024-02-26 04:38:45.448 2024-02-26 04:38:45.448 62100 TIP 438789 6393 6069454 2024-02-26 04:38:51.509 2024-02-26 04:38:51.509 6900 FEE 438847 16842 6069455 2024-02-26 04:38:51.509 2024-02-26 04:38:51.509 62100 TIP 438847 17212 6069478 2024-02-26 04:38:53.862 2024-02-26 04:38:53.862 6900 FEE 438847 19375 6069479 2024-02-26 04:38:53.862 2024-02-26 04:38:53.862 62100 TIP 438847 20603 6069483 2024-02-26 04:39:14.338 2024-02-26 04:39:14.338 1000 FEE 438882 761 6069491 2024-02-26 04:42:37.394 2024-02-26 04:42:37.394 1000 FEE 438832 2652 6069492 2024-02-26 04:42:37.394 2024-02-26 04:42:37.394 9000 TIP 438832 12422 6069509 2024-02-26 04:48:12.256 2024-02-26 04:48:12.256 2100 FEE 438843 19852 6069510 2024-02-26 04:48:12.256 2024-02-26 04:48:12.256 18900 TIP 438843 1472 6069544 2024-02-26 05:07:50.599 2024-02-26 05:07:50.599 100 FEE 438887 8544 6069545 2024-02-26 05:07:50.599 2024-02-26 05:07:50.599 900 TIP 438887 13398 6069561 2024-02-26 05:13:55.733 2024-02-26 05:13:55.733 1000 POLL 438794 19502 6069572 2024-02-26 05:17:29.2 2024-02-26 05:17:29.2 1000 FEE 438896 21614 6069575 2024-02-26 05:18:03.915 2024-02-26 05:18:03.915 10000 FEE 437021 11621 6069576 2024-02-26 05:18:03.915 2024-02-26 05:18:03.915 90000 TIP 437021 18525 6069579 2024-02-26 05:19:11.968 2024-02-26 05:19:11.968 1000 FEE 438897 2776 6069584 2024-02-26 05:20:31.244 2024-02-26 05:20:31.244 0 FEE 438897 9167 6069602 2024-02-26 05:29:23.702 2024-02-26 05:29:23.702 100 FEE 438781 8095 6069603 2024-02-26 05:29:23.702 2024-02-26 05:29:23.702 900 TIP 438781 16998 6069604 2024-02-26 05:29:24.316 2024-02-26 05:29:24.316 100 FEE 438878 688 6069605 2024-02-26 05:29:24.316 2024-02-26 05:29:24.316 900 TIP 438878 18601 6069627 2024-02-26 05:36:42.554 2024-02-26 05:36:42.554 1000 FEE 438904 18368 6069631 2024-02-26 05:38:46.469 2024-02-26 05:38:46.469 1000 POLL 438772 4074 6069644 2024-02-26 05:45:13.62 2024-02-26 05:45:13.62 2500 FEE 438873 708 6069645 2024-02-26 05:45:13.62 2024-02-26 05:45:13.62 22500 TIP 438873 20963 6069674 2024-02-26 06:00:05.284 2024-02-26 06:00:05.284 1000 FEE 438913 7583 6069676 2024-02-26 06:01:27.232 2024-02-26 06:01:27.232 1000 FEE 438737 16355 6068883 2024-02-26 02:41:03.673 2024-02-26 02:41:03.673 1000 STREAM 141924 671 6068916 2024-02-26 02:42:03.68 2024-02-26 02:42:03.68 1000 STREAM 141924 19906 6068921 2024-02-26 02:43:03.696 2024-02-26 02:43:03.696 1000 STREAM 141924 20436 6068925 2024-02-26 02:44:03.747 2024-02-26 02:44:03.747 1000 STREAM 141924 5171 6068926 2024-02-26 02:45:03.717 2024-02-26 02:45:03.717 1000 STREAM 141924 15463 6068931 2024-02-26 02:46:03.706 2024-02-26 02:46:03.706 1000 STREAM 141924 6499 6068932 2024-02-26 02:47:03.709 2024-02-26 02:47:03.709 1000 STREAM 141924 13843 6068934 2024-02-26 02:48:03.733 2024-02-26 02:48:03.733 1000 STREAM 141924 13348 6068936 2024-02-26 02:50:03.745 2024-02-26 02:50:03.745 1000 STREAM 141924 20624 6068937 2024-02-26 02:51:03.752 2024-02-26 02:51:03.752 1000 STREAM 141924 3990 6068956 2024-02-26 02:58:04.286 2024-02-26 02:58:04.286 1000 STREAM 141924 20599 6068958 2024-02-26 02:59:04.306 2024-02-26 02:59:04.306 1000 STREAM 141924 5761 6068935 2024-02-26 02:49:03.736 2024-02-26 02:49:03.736 1000 STREAM 141924 2543 6068938 2024-02-26 02:52:03.76 2024-02-26 02:52:03.76 1000 STREAM 141924 7989 6068940 2024-02-26 02:53:03.761 2024-02-26 02:53:03.761 1000 STREAM 141924 9329 6068943 2024-02-26 02:54:03.761 2024-02-26 02:54:03.761 1000 STREAM 141924 20660 6068948 2024-02-26 02:55:03.771 2024-02-26 02:55:03.771 1000 STREAM 141924 4802 6068949 2024-02-26 02:56:03.785 2024-02-26 02:56:03.785 1000 STREAM 141924 19759 6068950 2024-02-26 02:57:03.773 2024-02-26 02:57:03.773 1000 STREAM 141924 10102 6068969 2024-02-26 03:00:04.416 2024-02-26 03:00:04.416 1000 STREAM 141924 19806 6068990 2024-02-26 03:02:04.353 2024-02-26 03:02:04.353 1000 STREAM 141924 19403 6068999 2024-02-26 03:04:04.367 2024-02-26 03:04:04.367 1000 STREAM 141924 14015 6069022 2024-02-26 03:06:04.392 2024-02-26 03:06:04.392 1000 STREAM 141924 14552 6069049 2024-02-26 03:07:04.381 2024-02-26 03:07:04.381 1000 STREAM 141924 17541 6069066 2024-02-26 03:09:04.398 2024-02-26 03:09:04.398 1000 STREAM 141924 14785 6069083 2024-02-26 03:11:04.406 2024-02-26 03:11:04.406 1000 STREAM 141924 18526 6069076 2024-02-26 03:10:03.868 2024-02-26 03:10:03.868 1000 STREAM 141924 9843 6069088 2024-02-26 03:12:04.319 2024-02-26 03:12:04.319 1000 STREAM 141924 13076 6069095 2024-02-26 03:15:04.372 2024-02-26 03:15:04.372 1000 STREAM 141924 11819 6069097 2024-02-26 03:17:04.367 2024-02-26 03:17:04.367 1000 STREAM 141924 17976 6069098 2024-02-26 03:18:04.373 2024-02-26 03:18:04.373 1000 STREAM 141924 13574 6069131 2024-02-26 03:25:03.104 2024-02-26 03:25:03.104 1000 STREAM 141924 1652 6069143 2024-02-26 03:26:03.096 2024-02-26 03:26:03.096 1000 STREAM 141924 1224 6069182 2024-02-26 03:28:03.114 2024-02-26 03:28:03.114 1000 STREAM 141924 9992 6069190 2024-02-26 03:30:03.118 2024-02-26 03:30:03.118 1000 STREAM 141924 19531 6069199 2024-02-26 03:32:03.143 2024-02-26 03:32:03.143 1000 STREAM 141924 9353 6069200 2024-02-26 03:33:03.135 2024-02-26 03:33:03.135 1000 STREAM 141924 21427 6069203 2024-02-26 03:34:03.144 2024-02-26 03:34:03.144 1000 STREAM 141924 1626 6069204 2024-02-26 03:35:03.159 2024-02-26 03:35:03.159 1000 STREAM 141924 776 6069220 2024-02-26 03:39:03.206 2024-02-26 03:39:03.206 1000 STREAM 141924 19601 6069227 2024-02-26 03:41:03.193 2024-02-26 03:41:03.193 1000 STREAM 141924 3990 6069234 2024-02-26 03:44:03.211 2024-02-26 03:44:03.211 1000 STREAM 141924 15510 6069237 2024-02-26 03:46:03.211 2024-02-26 03:46:03.211 1000 STREAM 141924 20058 6069247 2024-02-26 03:49:03.215 2024-02-26 03:49:03.215 1000 STREAM 141924 3353 6069252 2024-02-26 03:51:03.224 2024-02-26 03:51:03.224 1000 STREAM 141924 6310 6069265 2024-02-26 03:55:03.824 2024-02-26 03:55:03.824 1000 STREAM 141924 7998 6069270 2024-02-26 03:57:03.872 2024-02-26 03:57:03.872 1000 STREAM 141924 8926 6069271 2024-02-26 03:58:03.887 2024-02-26 03:58:03.887 1000 STREAM 141924 1618 6069279 2024-02-26 04:00:03.91 2024-02-26 04:00:03.91 1000 STREAM 141924 21352 6069283 2024-02-26 04:01:03.879 2024-02-26 04:01:03.879 1000 STREAM 141924 19507 6069298 2024-02-26 04:08:03.925 2024-02-26 04:08:03.925 1000 STREAM 141924 7983 6069308 2024-02-26 04:10:03.949 2024-02-26 04:10:03.949 1000 STREAM 141924 2010 6069322 2024-02-26 04:13:03.957 2024-02-26 04:13:03.957 1000 STREAM 141924 15200 6069325 2024-02-26 04:14:03.967 2024-02-26 04:14:03.967 1000 STREAM 141924 19259 6069086 2024-02-26 03:11:30.478 2024-02-26 03:11:30.478 27000 TIP 438651 1135 6069094 2024-02-26 03:14:42.943 2024-02-26 03:14:42.943 0 FEE 438841 14357 6069119 2024-02-26 03:23:24.388 2024-02-26 03:23:24.388 1000 FEE 438845 16809 6069129 2024-02-26 03:24:50.656 2024-02-26 03:24:50.656 1000 FEE 438847 618 6069138 2024-02-26 03:25:13.184 2024-02-26 03:25:13.184 10000 FEE 438850 691 6069156 2024-02-26 03:27:11.339 2024-02-26 03:27:11.339 1000 FEE 438753 14552 6069157 2024-02-26 03:27:11.339 2024-02-26 03:27:11.339 9000 TIP 438753 19151 6069158 2024-02-26 03:27:11.826 2024-02-26 03:27:11.826 1000 FEE 438854 19622 6069161 2024-02-26 03:27:38.745 2024-02-26 03:27:38.745 1000 FEE 438855 17392 6069164 2024-02-26 03:27:54.627 2024-02-26 03:27:54.627 1000 FEE 438851 21323 6069165 2024-02-26 03:27:54.627 2024-02-26 03:27:54.627 9000 TIP 438851 4014 6069174 2024-02-26 03:27:59.033 2024-02-26 03:27:59.033 1000 FEE 438848 21249 6069175 2024-02-26 03:27:59.033 2024-02-26 03:27:59.033 9000 TIP 438848 5036 6069178 2024-02-26 03:27:59.528 2024-02-26 03:27:59.528 1000 FEE 438848 21242 6069179 2024-02-26 03:27:59.528 2024-02-26 03:27:59.528 9000 TIP 438848 21391 6069214 2024-02-26 03:37:57.662 2024-02-26 03:37:57.662 2100 FEE 438794 19961 6069215 2024-02-26 03:37:57.662 2024-02-26 03:37:57.662 18900 TIP 438794 19463 6069238 2024-02-26 03:46:42.067 2024-02-26 03:46:42.067 2000 FEE 438836 20179 6069239 2024-02-26 03:46:42.067 2024-02-26 03:46:42.067 18000 TIP 438836 5829 6069240 2024-02-26 03:46:42.694 2024-02-26 03:46:42.694 1000 FEE 438836 10398 6069241 2024-02-26 03:46:42.694 2024-02-26 03:46:42.694 9000 TIP 438836 1609 6069259 2024-02-26 03:52:20.454 2024-02-26 03:52:20.454 1000 FEE 438794 20525 6069260 2024-02-26 03:52:20.454 2024-02-26 03:52:20.454 9000 TIP 438794 10549 6069262 2024-02-26 03:53:18.955 2024-02-26 03:53:18.955 1000 FEE 438865 18815 6069284 2024-02-26 04:01:07.739 2024-02-26 04:01:07.739 1000 FEE 438871 811 6069304 2024-02-26 04:10:00.739 2024-02-26 04:10:00.739 3000 FEE 438852 8168 6069305 2024-02-26 04:10:00.739 2024-02-26 04:10:00.739 27000 TIP 438852 13931 6069309 2024-02-26 04:10:11.093 2024-02-26 04:10:11.093 1000 POLL 438794 2639 6069311 2024-02-26 04:10:34.328 2024-02-26 04:10:34.328 10100 FEE 438794 12768 6069312 2024-02-26 04:10:34.328 2024-02-26 04:10:34.328 90900 TIP 438794 16769 6069324 2024-02-26 04:13:56.424 2024-02-26 04:13:56.424 1000 POLL 438794 3342 6069347 2024-02-26 04:22:02.878 2024-02-26 04:22:02.878 3000 FEE 438065 18476 6069348 2024-02-26 04:22:02.878 2024-02-26 04:22:02.878 27000 TIP 438065 1122 6069359 2024-02-26 04:24:55.995 2024-02-26 04:24:55.995 0 FEE 438876 964 6069367 2024-02-26 04:25:23.586 2024-02-26 04:25:23.586 900 FEE 438859 18897 6069368 2024-02-26 04:25:23.586 2024-02-26 04:25:23.586 8100 TIP 438859 632 6069372 2024-02-26 04:25:58.053 2024-02-26 04:25:58.053 2100 FEE 438823 17237 6069373 2024-02-26 04:25:58.053 2024-02-26 04:25:58.053 18900 TIP 438823 14122 6069420 2024-02-26 04:38:41.232 2024-02-26 04:38:41.232 6900 FEE 438789 18932 6069421 2024-02-26 04:38:41.232 2024-02-26 04:38:41.232 62100 TIP 438789 19016 6069432 2024-02-26 04:38:45.133 2024-02-26 04:38:45.133 6900 FEE 438789 11378 6069433 2024-02-26 04:38:45.133 2024-02-26 04:38:45.133 62100 TIP 438789 733 6069448 2024-02-26 04:38:46.43 2024-02-26 04:38:46.43 6900 FEE 438789 10094 6069449 2024-02-26 04:38:46.43 2024-02-26 04:38:46.43 62100 TIP 438789 20990 6069462 2024-02-26 04:38:52.106 2024-02-26 04:38:52.106 6900 FEE 438847 18235 6069463 2024-02-26 04:38:52.106 2024-02-26 04:38:52.106 62100 TIP 438847 4819 6069470 2024-02-26 04:38:52.752 2024-02-26 04:38:52.752 6900 FEE 438847 762 6069471 2024-02-26 04:38:52.752 2024-02-26 04:38:52.752 62100 TIP 438847 18774 6069472 2024-02-26 04:38:52.895 2024-02-26 04:38:52.895 6900 FEE 438847 15526 6069473 2024-02-26 04:38:52.895 2024-02-26 04:38:52.895 62100 TIP 438847 19459 6069514 2024-02-26 04:49:22.647 2024-02-26 04:49:22.647 1000 POLL 438794 9242 6069518 2024-02-26 04:49:50.583 2024-02-26 04:49:50.583 2100 FEE 438813 27 6069519 2024-02-26 04:49:50.583 2024-02-26 04:49:50.583 18900 TIP 438813 8284 6069549 2024-02-26 05:08:25.001 2024-02-26 05:08:25.001 100 FEE 438866 20922 6069550 2024-02-26 05:08:25.001 2024-02-26 05:08:25.001 900 TIP 438866 1010 6069556 2024-02-26 05:10:31.349 2024-02-26 05:10:31.349 4200 FEE 438814 11776 6069557 2024-02-26 05:10:31.349 2024-02-26 05:10:31.349 37800 TIP 438814 16194 6069568 2024-02-26 05:16:09.353 2024-02-26 05:16:09.353 1000 FEE 438895 11621 6069590 2024-02-26 05:25:14.688 2024-02-26 05:25:14.688 100 FEE 438864 4259 6069591 2024-02-26 05:25:14.688 2024-02-26 05:25:14.688 900 TIP 438864 9378 6069597 2024-02-26 05:28:53.936 2024-02-26 05:28:53.936 100 FEE 438798 9350 6069598 2024-02-26 05:28:53.936 2024-02-26 05:28:53.936 900 TIP 438798 1105 6069599 2024-02-26 05:29:00.273 2024-02-26 05:29:00.273 100 FEE 438797 964 6069600 2024-02-26 05:29:00.273 2024-02-26 05:29:00.273 900 TIP 438797 21437 6069630 2024-02-26 05:38:22.272 2024-02-26 05:38:22.272 1000 FEE 438905 1298 6069678 2024-02-26 06:01:37.986 2024-02-26 06:01:37.986 1000 FEE 438793 4345 6069679 2024-02-26 06:01:37.986 2024-02-26 06:01:37.986 9000 TIP 438793 2609 6069684 2024-02-26 06:02:01.386 2024-02-26 06:02:01.386 1000 FEE 438810 21072 6069685 2024-02-26 06:02:01.386 2024-02-26 06:02:01.386 9000 TIP 438810 1039 6069705 2024-02-26 06:04:19.44 2024-02-26 06:04:19.44 1000 FEE 438405 20182 6069706 2024-02-26 06:04:19.44 2024-02-26 06:04:19.44 9000 TIP 438405 14045 6069716 2024-02-26 06:08:01.657 2024-02-26 06:08:01.657 3300 FEE 438845 12965 6069717 2024-02-26 06:08:01.657 2024-02-26 06:08:01.657 29700 TIP 438845 925 6069738 2024-02-26 06:23:23.809 2024-02-26 06:23:23.809 800 FEE 438798 17797 6069739 2024-02-26 06:23:23.809 2024-02-26 06:23:23.809 7200 TIP 438798 636 6069740 2024-02-26 06:23:23.966 2024-02-26 06:23:23.966 800 FEE 438798 1433 6069741 2024-02-26 06:23:23.966 2024-02-26 06:23:23.966 7200 TIP 438798 979 6069779 2024-02-26 06:42:39.224 2024-02-26 06:42:39.224 1000 FEE 438923 2513 6069787 2024-02-26 06:47:37.165 2024-02-26 06:47:37.165 3800 FEE 438524 10728 6069788 2024-02-26 06:47:37.165 2024-02-26 06:47:37.165 34200 TIP 438524 20852 6069793 2024-02-26 06:49:18.578 2024-02-26 06:49:18.578 1000 FEE 438924 722 6069807 2024-02-26 06:57:25.265 2024-02-26 06:57:25.265 1000 FEE 438825 768 6069808 2024-02-26 06:57:25.265 2024-02-26 06:57:25.265 9000 TIP 438825 15463 6069820 2024-02-26 07:03:59.357 2024-02-26 07:03:59.357 1000 POLL 438794 19507 6069888 2024-02-26 07:25:55.682 2024-02-26 07:25:55.682 69000 FEE 438936 11038 6069090 2024-02-26 03:13:04.355 2024-02-26 03:13:04.355 1000 STREAM 141924 20881 6069092 2024-02-26 03:14:04.361 2024-02-26 03:14:04.361 1000 STREAM 141924 1209 6069096 2024-02-26 03:16:04.389 2024-02-26 03:16:04.389 1000 STREAM 141924 701 6069100 2024-02-26 03:19:04.389 2024-02-26 03:19:04.389 1000 STREAM 141924 2502 6069122 2024-02-26 03:24:03.099 2024-02-26 03:24:03.099 1000 STREAM 141924 769 6069151 2024-02-26 03:27:03.124 2024-02-26 03:27:03.124 1000 STREAM 141924 7654 6069186 2024-02-26 03:29:03.115 2024-02-26 03:29:03.115 1000 STREAM 141924 20596 6069207 2024-02-26 03:37:03.147 2024-02-26 03:37:03.147 1000 STREAM 141924 20006 6069225 2024-02-26 03:40:03.203 2024-02-26 03:40:03.203 1000 STREAM 141924 16351 6069231 2024-02-26 03:42:03.211 2024-02-26 03:42:03.211 1000 STREAM 141924 5703 6069233 2024-02-26 03:43:03.223 2024-02-26 03:43:03.223 1000 STREAM 141924 640 6069236 2024-02-26 03:45:03.218 2024-02-26 03:45:03.218 1000 STREAM 141924 19105 6069242 2024-02-26 03:47:03.216 2024-02-26 03:47:03.216 1000 STREAM 141924 13759 6069243 2024-02-26 03:48:03.219 2024-02-26 03:48:03.219 1000 STREAM 141924 17673 6069249 2024-02-26 03:50:03.222 2024-02-26 03:50:03.222 1000 STREAM 141924 8505 6069257 2024-02-26 03:52:03.223 2024-02-26 03:52:03.223 1000 STREAM 141924 16724 6069261 2024-02-26 03:53:03.814 2024-02-26 03:53:03.814 1000 STREAM 141924 19583 6069264 2024-02-26 03:54:03.812 2024-02-26 03:54:03.812 1000 STREAM 141924 18472 6069268 2024-02-26 03:56:03.84 2024-02-26 03:56:03.84 1000 STREAM 141924 20073 6069275 2024-02-26 03:59:03.864 2024-02-26 03:59:03.864 1000 STREAM 141924 6268 6069289 2024-02-26 04:02:03.894 2024-02-26 04:02:03.894 1000 STREAM 141924 21292 6069290 2024-02-26 04:03:03.895 2024-02-26 04:03:03.895 1000 STREAM 141924 1008 6069291 2024-02-26 04:04:03.908 2024-02-26 04:04:03.908 1000 STREAM 141924 8498 6069292 2024-02-26 04:05:03.908 2024-02-26 04:05:03.908 1000 STREAM 141924 17217 6069293 2024-02-26 04:06:03.917 2024-02-26 04:06:03.917 1000 STREAM 141924 18040 6069294 2024-02-26 04:07:03.923 2024-02-26 04:07:03.923 1000 STREAM 141924 20892 6069299 2024-02-26 04:09:03.945 2024-02-26 04:09:03.945 1000 STREAM 141924 1605 6069313 2024-02-26 04:11:03.943 2024-02-26 04:11:03.943 1000 STREAM 141924 7389 6069317 2024-02-26 04:12:03.945 2024-02-26 04:12:03.945 1000 STREAM 141924 19570 6069330 2024-02-26 04:15:03.974 2024-02-26 04:15:03.974 1000 STREAM 141924 831 6069331 2024-02-26 04:16:03.982 2024-02-26 04:16:03.982 1000 STREAM 141924 18815 6069110 2024-02-26 03:20:04.487 2024-02-26 03:20:04.487 1000 STREAM 141924 19664 6069117 2024-02-26 03:22:04.493 2024-02-26 03:22:04.493 1000 STREAM 141924 9354 6069118 2024-02-26 03:23:04.49 2024-02-26 03:23:04.49 1000 STREAM 141924 21619 6069116 2024-02-26 03:21:04.29 2024-02-26 03:21:04.29 1000 STREAM 141924 17030 6069162 2024-02-26 03:27:54.42 2024-02-26 03:27:54.42 1000 FEE 438851 19263 6069163 2024-02-26 03:27:54.42 2024-02-26 03:27:54.42 9000 TIP 438851 18452 6069176 2024-02-26 03:27:59.246 2024-02-26 03:27:59.246 1000 FEE 438848 9378 6069177 2024-02-26 03:27:59.246 2024-02-26 03:27:59.246 9000 TIP 438848 1737 6069180 2024-02-26 03:27:59.924 2024-02-26 03:27:59.924 1000 FEE 438848 20381 6069181 2024-02-26 03:27:59.924 2024-02-26 03:27:59.924 9000 TIP 438848 16097 6069201 2024-02-26 03:33:27.896 2024-02-26 03:33:27.896 2500 FEE 438842 17316 6069202 2024-02-26 03:33:27.896 2024-02-26 03:33:27.896 22500 TIP 438842 897 6069235 2024-02-26 03:44:43.344 2024-02-26 03:44:43.344 1000 FEE 438862 18101 6069258 2024-02-26 03:52:16.229 2024-02-26 03:52:16.229 0 FEE 438864 17183 6069276 2024-02-26 03:59:46.834 2024-02-26 03:59:46.834 4200 FEE 438830 9833 6069277 2024-02-26 03:59:46.834 2024-02-26 03:59:46.834 37800 TIP 438830 21178 6069282 2024-02-26 04:00:54.272 2024-02-26 04:00:54.272 1000 POLL 438794 4064 6069285 2024-02-26 04:01:09.918 2024-02-26 04:01:09.918 1000 FEE 438865 16424 6069286 2024-02-26 04:01:09.918 2024-02-26 04:01:09.918 9000 TIP 438865 12562 6069314 2024-02-26 04:11:21.59 2024-02-26 04:11:21.59 3000 FEE 438065 18892 6069315 2024-02-26 04:11:21.59 2024-02-26 04:11:21.59 27000 TIP 438065 1567 6069335 2024-02-26 04:17:56.317 2024-02-26 04:17:56.317 2600 FEE 438794 15226 6069336 2024-02-26 04:17:56.317 2024-02-26 04:17:56.317 23400 TIP 438794 14357 6069358 2024-02-26 04:24:19.438 2024-02-26 04:24:19.438 1000 FEE 438878 19289 6069365 2024-02-26 04:25:23.237 2024-02-26 04:25:23.237 100 FEE 438859 5425 6069366 2024-02-26 04:25:23.237 2024-02-26 04:25:23.237 900 TIP 438859 730 6069426 2024-02-26 04:38:41.735 2024-02-26 04:38:41.735 6900 FEE 438789 21072 6069427 2024-02-26 04:38:41.735 2024-02-26 04:38:41.735 62100 TIP 438789 16809 6069464 2024-02-26 04:38:52.257 2024-02-26 04:38:52.257 6900 FEE 438847 9796 6069465 2024-02-26 04:38:52.257 2024-02-26 04:38:52.257 62100 TIP 438847 9874 6069502 2024-02-26 04:46:44.499 2024-02-26 04:46:44.499 1000 FEE 438846 16912 6069503 2024-02-26 04:46:44.499 2024-02-26 04:46:44.499 9000 TIP 438846 1718 6069525 2024-02-26 04:51:07.495 2024-02-26 04:51:07.495 10000 FEE 438893 16988 6069566 2024-02-26 05:15:58.631 2024-02-26 05:15:58.631 1000 POLL 438772 15762 6069592 2024-02-26 05:25:31.643 2024-02-26 05:25:31.643 100 FEE 438858 18539 6069593 2024-02-26 05:25:31.643 2024-02-26 05:25:31.643 900 TIP 438858 1620 6069618 2024-02-26 05:32:21.799 2024-02-26 05:32:21.799 1000 FEE 438901 21620 6069640 2024-02-26 05:44:52.352 2024-02-26 05:44:52.352 1000 FEE 438907 1326 6069710 2024-02-26 06:07:09.884 2024-02-26 06:07:09.884 1000 FEE 438405 9184 6069711 2024-02-26 06:07:09.884 2024-02-26 06:07:09.884 9000 TIP 438405 7966 6069725 2024-02-26 06:14:00.866 2024-02-26 06:14:00.866 1000 FEE 438917 7869 6069785 2024-02-26 06:46:10.193 2024-02-26 06:46:10.193 0 FEE 438923 1030 6069798 2024-02-26 06:51:23.779 2024-02-26 06:51:23.779 2100 FEE 438735 19570 6069799 2024-02-26 06:51:23.779 2024-02-26 06:51:23.779 18900 TIP 438735 2256 6069813 2024-02-26 07:00:06.384 2024-02-26 07:00:06.384 100000 FEE 438929 18705 6069814 2024-02-26 07:00:06.837 2024-02-26 07:00:06.837 1000 FEE 438930 626 6069815 2024-02-26 07:00:42.265 2024-02-26 07:00:42.265 10000 FEE 438916 21180 6069816 2024-02-26 07:00:42.265 2024-02-26 07:00:42.265 90000 TIP 438916 20706 6069852 2024-02-26 07:20:39.913 2024-02-26 07:20:39.913 100 FEE 438794 2330 6069853 2024-02-26 07:20:39.913 2024-02-26 07:20:39.913 900 TIP 438794 13599 6069858 2024-02-26 07:21:12.514 2024-02-26 07:21:12.514 2100 FEE 438737 20490 6069859 2024-02-26 07:21:12.514 2024-02-26 07:21:12.514 18900 TIP 438737 963 6069916 2024-02-26 07:33:11.325 2024-02-26 07:33:11.325 100 FEE 415384 21104 6069917 2024-02-26 07:33:11.325 2024-02-26 07:33:11.325 900 TIP 415384 2444 6069944 2024-02-26 07:39:06.809 2024-02-26 07:39:06.809 100 FEE 438942 15941 6069945 2024-02-26 07:39:06.809 2024-02-26 07:39:06.809 900 TIP 438942 17041 6069962 2024-02-26 07:42:17.757 2024-02-26 07:42:17.757 2100 FEE 438933 4014 6069963 2024-02-26 07:42:17.757 2024-02-26 07:42:17.757 18900 TIP 438933 5173 6069966 2024-02-26 07:42:36.739 2024-02-26 07:42:36.739 2100 FEE 438922 20062 6069967 2024-02-26 07:42:36.739 2024-02-26 07:42:36.739 18900 TIP 438922 18705 6070002 2024-02-26 07:49:39.873 2024-02-26 07:49:39.873 1000 FEE 438963 1626 6070005 2024-02-26 07:50:42.297 2024-02-26 07:50:42.297 2100 FEE 438944 4035 6070006 2024-02-26 07:50:42.297 2024-02-26 07:50:42.297 18900 TIP 438944 4973 6070045 2024-02-26 08:02:00.225 2024-02-26 08:02:00.225 100 FEE 438938 7966 6070046 2024-02-26 08:02:00.225 2024-02-26 08:02:00.225 900 TIP 438938 1145 6070060 2024-02-26 08:03:47.131 2024-02-26 08:03:47.131 5000 FEE 438471 9421 6070061 2024-02-26 08:03:47.131 2024-02-26 08:03:47.131 45000 TIP 438471 18460 6070110 2024-02-26 08:16:54.138 2024-02-26 08:16:54.138 1000 FEE 438940 7869 6070111 2024-02-26 08:16:54.138 2024-02-26 08:16:54.138 9000 TIP 438940 7119 6070116 2024-02-26 08:18:39.441 2024-02-26 08:18:39.441 1000 FEE 438981 1489 6070140 2024-02-26 08:33:20.221 2024-02-26 08:33:20.221 2100 FEE 438649 21072 6070141 2024-02-26 08:33:20.221 2024-02-26 08:33:20.221 18900 TIP 438649 14258 6070142 2024-02-26 08:33:35.324 2024-02-26 08:33:35.324 2100 FEE 438966 11240 6070143 2024-02-26 08:33:35.324 2024-02-26 08:33:35.324 18900 TIP 438966 14074 6070183 2024-02-26 08:45:17.199 2024-02-26 08:45:17.199 10000 FEE 438973 20964 6070184 2024-02-26 08:45:17.199 2024-02-26 08:45:17.199 90000 TIP 438973 11018 6070196 2024-02-26 08:53:00.467 2024-02-26 08:53:00.467 0 FEE 438987 18524 6070205 2024-02-26 08:54:43.955 2024-02-26 08:54:43.955 800 FEE 438933 981 6070206 2024-02-26 08:54:43.955 2024-02-26 08:54:43.955 7200 TIP 438933 6360 6070225 2024-02-26 09:00:28.904 2024-02-26 09:00:28.904 1000 FEE 438988 11866 6070232 2024-02-26 09:01:49.612 2024-02-26 09:01:49.612 1000 FEE 438990 2829 6070239 2024-02-26 09:03:40.846 2024-02-26 09:03:40.846 10000 FEE 438794 6300 6070240 2024-02-26 09:03:40.846 2024-02-26 09:03:40.846 90000 TIP 438794 21064 6070263 2024-02-26 09:17:14.536 2024-02-26 09:17:14.536 0 FEE 438993 12268 6070280 2024-02-26 09:25:10.407 2024-02-26 09:25:10.407 21000 FEE 438997 828 6070281 2024-02-26 09:25:50.337 2024-02-26 09:25:50.337 0 FEE 383547 8360 6070299 2024-02-26 09:33:16.07 2024-02-26 09:33:16.07 1000 FEE 439000 9275 6070383 2024-02-26 09:45:31.308 2024-02-26 09:45:31.308 1000 FEE 438971 19570 6070384 2024-02-26 09:45:31.308 2024-02-26 09:45:31.308 9000 TIP 438971 20108 6070394 2024-02-26 09:45:36.404 2024-02-26 09:45:36.404 1000 FEE 439012 20744 6070396 2024-02-26 09:45:48.956 2024-02-26 09:45:48.956 1000 FEE 438434 2232 6070397 2024-02-26 09:45:48.956 2024-02-26 09:45:48.956 9000 TIP 438434 13763 6070423 2024-02-26 09:46:25.805 2024-02-26 09:46:25.805 1000 FEE 438829 21437 6070424 2024-02-26 09:46:25.805 2024-02-26 09:46:25.805 9000 TIP 438829 14255 6070437 2024-02-26 09:46:55.186 2024-02-26 09:46:55.186 1000 FEE 438211 5387 6070438 2024-02-26 09:46:55.186 2024-02-26 09:46:55.186 9000 TIP 438211 17552 6070472 2024-02-26 09:47:40.108 2024-02-26 09:47:40.108 1000 FEE 64063 2224 6070473 2024-02-26 09:47:40.108 2024-02-26 09:47:40.108 9000 TIP 64063 1307 6070476 2024-02-26 09:47:41.319 2024-02-26 09:47:41.319 1000 FEE 64096 5359 6070477 2024-02-26 09:47:41.319 2024-02-26 09:47:41.319 9000 TIP 64096 20854 6070524 2024-02-26 09:54:09.637 2024-02-26 09:54:09.637 1000 FEE 439016 13927 6070540 2024-02-26 09:57:34.427 2024-02-26 09:57:34.427 1000 FEE 439020 11164 6070553 2024-02-26 09:58:36.161 2024-02-26 09:58:36.161 100 FEE 439009 749 6070554 2024-02-26 09:58:36.161 2024-02-26 09:58:36.161 900 TIP 439009 1291 6070556 2024-02-26 09:59:41.14 2024-02-26 09:59:41.14 100 FEE 438946 20302 6070557 2024-02-26 09:59:41.14 2024-02-26 09:59:41.14 900 TIP 438946 16432 6070560 2024-02-26 09:59:42.441 2024-02-26 09:59:42.441 100 FEE 438946 18956 6070561 2024-02-26 09:59:42.441 2024-02-26 09:59:42.441 900 TIP 438946 1426 6070562 2024-02-26 09:59:52.671 2024-02-26 09:59:52.671 2100 FEE 438816 2088 6069192 2024-02-26 03:31:04.514 2024-02-26 03:31:04.514 1000 STREAM 141924 13348 6069205 2024-02-26 03:36:04.54 2024-02-26 03:36:04.54 1000 STREAM 141924 14503 6069216 2024-02-26 03:38:04.552 2024-02-26 03:38:04.552 1000 STREAM 141924 2724 6069333 2024-02-26 04:17:03.807 2024-02-26 04:17:03.807 1000 STREAM 141924 18177 6069338 2024-02-26 04:19:03.846 2024-02-26 04:19:03.846 1000 STREAM 141924 19117 6069341 2024-02-26 04:20:03.881 2024-02-26 04:20:03.881 1000 STREAM 141924 2519 6069354 2024-02-26 04:23:03.916 2024-02-26 04:23:03.916 1000 STREAM 141924 11522 6069357 2024-02-26 04:24:03.932 2024-02-26 04:24:03.932 1000 STREAM 141924 20220 6069360 2024-02-26 04:25:03.95 2024-02-26 04:25:03.95 1000 STREAM 141924 21214 6069375 2024-02-26 04:27:03.988 2024-02-26 04:27:03.988 1000 STREAM 141924 18581 6069383 2024-02-26 04:28:04.007 2024-02-26 04:28:04.007 1000 STREAM 141924 14857 6069387 2024-02-26 04:29:04.026 2024-02-26 04:29:04.026 1000 STREAM 141924 684 6069337 2024-02-26 04:18:03.832 2024-02-26 04:18:03.832 1000 STREAM 141924 21026 6069344 2024-02-26 04:21:03.879 2024-02-26 04:21:03.879 1000 STREAM 141924 15474 6069351 2024-02-26 04:22:03.895 2024-02-26 04:22:03.895 1000 STREAM 141924 1603 6069390 2024-02-26 04:30:04.054 2024-02-26 04:30:04.054 1000 STREAM 141924 21242 6069391 2024-02-26 04:31:04.069 2024-02-26 04:31:04.069 1000 STREAM 141924 4502 6069392 2024-02-26 04:32:04.088 2024-02-26 04:32:04.088 1000 STREAM 141924 13527 6069374 2024-02-26 04:26:04.441 2024-02-26 04:26:04.441 1000 STREAM 141924 16270 6069398 2024-02-26 04:35:04.608 2024-02-26 04:35:04.608 1000 STREAM 141924 825 6069482 2024-02-26 04:39:04.641 2024-02-26 04:39:04.641 1000 STREAM 141924 5449 6069393 2024-02-26 04:33:04.128 2024-02-26 04:33:04.128 1000 STREAM 141924 6653 6069396 2024-02-26 04:34:04.118 2024-02-26 04:34:04.118 1000 STREAM 141924 15160 6069399 2024-02-26 04:36:04.139 2024-02-26 04:36:04.139 1000 STREAM 141924 836 6069400 2024-02-26 04:37:04.138 2024-02-26 04:37:04.138 1000 STREAM 141924 21481 6069401 2024-02-26 04:38:04.151 2024-02-26 04:38:04.151 1000 STREAM 141924 2367 6069493 2024-02-26 04:43:04.209 2024-02-26 04:43:04.209 1000 STREAM 141924 19243 6069504 2024-02-26 04:47:04.238 2024-02-26 04:47:04.238 1000 STREAM 141924 20757 6069507 2024-02-26 04:48:04.238 2024-02-26 04:48:04.238 1000 STREAM 141924 13174 6069511 2024-02-26 04:49:04.242 2024-02-26 04:49:04.242 1000 STREAM 141924 1738 6069521 2024-02-26 04:50:04.285 2024-02-26 04:50:04.285 1000 STREAM 141924 7418 6069527 2024-02-26 04:53:04.265 2024-02-26 04:53:04.265 1000 STREAM 141924 20646 6069528 2024-02-26 04:54:04.268 2024-02-26 04:54:04.268 1000 STREAM 141924 6573 6069529 2024-02-26 04:55:04.277 2024-02-26 04:55:04.277 1000 STREAM 141924 694 6069530 2024-02-26 04:56:04.287 2024-02-26 04:56:04.287 1000 STREAM 141924 13133 6069533 2024-02-26 04:59:04.323 2024-02-26 04:59:04.323 1000 STREAM 141924 19394 6069534 2024-02-26 05:00:04.369 2024-02-26 05:00:04.369 1000 STREAM 141924 14857 6069535 2024-02-26 05:01:04.302 2024-02-26 05:01:04.302 1000 STREAM 141924 21201 6069536 2024-02-26 05:02:04.312 2024-02-26 05:02:04.312 1000 STREAM 141924 19553 6069537 2024-02-26 05:03:04.313 2024-02-26 05:03:04.313 1000 STREAM 141924 3392 6069538 2024-02-26 05:04:04.318 2024-02-26 05:04:04.318 1000 STREAM 141924 21430 6069540 2024-02-26 05:06:04.319 2024-02-26 05:06:04.319 1000 STREAM 141924 18989 6069541 2024-02-26 05:07:04.321 2024-02-26 05:07:04.321 1000 STREAM 141924 1825 6069551 2024-02-26 05:09:04.345 2024-02-26 05:09:04.345 1000 STREAM 141924 5128 6069558 2024-02-26 05:11:04.364 2024-02-26 05:11:04.364 1000 STREAM 141924 14260 6069562 2024-02-26 05:14:04.354 2024-02-26 05:14:04.354 1000 STREAM 141924 2444 6069563 2024-02-26 05:15:04.359 2024-02-26 05:15:04.359 1000 STREAM 141924 1120 6069580 2024-02-26 05:20:04.384 2024-02-26 05:20:04.384 1000 STREAM 141924 17710 6069586 2024-02-26 05:22:04.388 2024-02-26 05:22:04.388 1000 STREAM 141924 12169 6069587 2024-02-26 05:23:04.407 2024-02-26 05:23:04.407 1000 STREAM 141924 19156 6069596 2024-02-26 05:28:04.466 2024-02-26 05:28:04.466 1000 STREAM 141924 2338 6069614 2024-02-26 05:31:04.481 2024-02-26 05:31:04.481 1000 STREAM 141924 5794 6069621 2024-02-26 05:33:04.496 2024-02-26 05:33:04.496 1000 STREAM 141924 2204 6069623 2024-02-26 05:34:04.514 2024-02-26 05:34:04.514 1000 STREAM 141924 3213 6069626 2024-02-26 05:36:04.525 2024-02-26 05:36:04.525 1000 STREAM 141924 654 6069635 2024-02-26 05:41:04.568 2024-02-26 05:41:04.568 1000 STREAM 141924 8569 6069636 2024-02-26 05:42:04.579 2024-02-26 05:42:04.579 1000 STREAM 141924 9845 6069637 2024-02-26 05:43:04.59 2024-02-26 05:43:04.59 1000 STREAM 141924 17217 6069649 2024-02-26 05:48:04.654 2024-02-26 05:48:04.654 1000 STREAM 141924 4259 6069442 2024-02-26 04:38:45.933 2024-02-26 04:38:45.933 6900 FEE 438789 1823 6069443 2024-02-26 04:38:45.933 2024-02-26 04:38:45.933 62100 TIP 438789 628 6069444 2024-02-26 04:38:46.097 2024-02-26 04:38:46.097 6900 FEE 438789 909 6069445 2024-02-26 04:38:46.097 2024-02-26 04:38:46.097 62100 TIP 438789 2342 6069480 2024-02-26 04:38:54.139 2024-02-26 04:38:54.139 6900 FEE 438847 8045 6069481 2024-02-26 04:38:54.139 2024-02-26 04:38:54.139 62100 TIP 438847 21247 6069488 2024-02-26 04:42:13.486 2024-02-26 04:42:13.486 1000 FEE 438883 2206 6069499 2024-02-26 04:46:09.966 2024-02-26 04:46:09.966 1000 FEE 438794 13854 6069500 2024-02-26 04:46:09.966 2024-02-26 04:46:09.966 9000 TIP 438794 11798 6069553 2024-02-26 05:10:25.878 2024-02-26 05:10:25.878 1000 FEE 438894 1175 6069569 2024-02-26 05:16:36.758 2024-02-26 05:16:36.758 10000 FEE 436000 20099 6069570 2024-02-26 05:16:36.758 2024-02-26 05:16:36.758 90000 TIP 436000 4059 6069582 2024-02-26 05:20:30.362 2024-02-26 05:20:30.362 100 FEE 438802 17030 6069583 2024-02-26 05:20:30.362 2024-02-26 05:20:30.362 900 TIP 438802 6003 6069608 2024-02-26 05:29:37.415 2024-02-26 05:29:37.415 1000 FEE 438898 803 6069615 2024-02-26 05:31:10.481 2024-02-26 05:31:10.481 1000 FEE 438899 21003 6069619 2024-02-26 05:32:49.36 2024-02-26 05:32:49.36 2100000 FEE 429380 928 6069620 2024-02-26 05:32:49.36 2024-02-26 05:32:49.36 18900000 TIP 429380 10530 6069638 2024-02-26 05:43:36.08 2024-02-26 05:43:36.08 1000 POLL 438202 1490 6069646 2024-02-26 05:45:44.21 2024-02-26 05:45:44.21 1000 POLL 438772 10493 6069654 2024-02-26 05:50:00.023 2024-02-26 05:50:00.023 1000 FEE 438909 13553 6069665 2024-02-26 05:56:33.949 2024-02-26 05:56:33.949 100000 FEE 438910 9366 6069680 2024-02-26 06:01:41.039 2024-02-26 06:01:41.039 1000 FEE 438740 18264 6069681 2024-02-26 06:01:41.039 2024-02-26 06:01:41.039 9000 TIP 438740 12368 6069692 2024-02-26 06:03:00.648 2024-02-26 06:03:00.648 1000 FEE 438779 16267 6069693 2024-02-26 06:03:00.648 2024-02-26 06:03:00.648 9000 TIP 438779 19661 6069695 2024-02-26 06:03:22.577 2024-02-26 06:03:22.577 3300 FEE 438848 6164 6069696 2024-02-26 06:03:22.577 2024-02-26 06:03:22.577 29700 TIP 438848 2056 6069742 2024-02-26 06:23:54.148 2024-02-26 06:23:54.148 2100 FEE 438895 5746 6069743 2024-02-26 06:23:54.148 2024-02-26 06:23:54.148 18900 TIP 438895 19941 6069772 2024-02-26 06:38:23.123 2024-02-26 06:38:23.123 2100 FEE 438874 12024 6069773 2024-02-26 06:38:23.123 2024-02-26 06:38:23.123 18900 TIP 438874 670 6069783 2024-02-26 06:45:28.777 2024-02-26 06:45:28.777 1000 POLL 438794 4538 6069795 2024-02-26 06:50:11.101 2024-02-26 06:50:11.101 1000 FEE 438925 18836 6069835 2024-02-26 07:09:10.527 2024-02-26 07:09:10.527 1000 FEE 438931 21547 6069840 2024-02-26 07:12:49.485 2024-02-26 07:12:49.485 1000 POLL 438794 19435 6069854 2024-02-26 07:20:40.945 2024-02-26 07:20:40.945 100 FEE 438794 20563 6069855 2024-02-26 07:20:40.945 2024-02-26 07:20:40.945 900 TIP 438794 4304 6069880 2024-02-26 07:21:23.996 2024-02-26 07:21:23.996 2100 FEE 438735 14906 6069881 2024-02-26 07:21:23.996 2024-02-26 07:21:23.996 18900 TIP 438735 16653 6069883 2024-02-26 07:22:14.021 2024-02-26 07:22:14.021 1000 FEE 438935 11328 6069894 2024-02-26 07:26:40.394 2024-02-26 07:26:40.394 0 FEE 438935 825 6069903 2024-02-26 07:31:43.894 2024-02-26 07:31:43.894 120000 FEE 438937 5522 6069908 2024-02-26 07:32:33.814 2024-02-26 07:32:33.814 1000 POLL 438794 2741 6069912 2024-02-26 07:33:07.982 2024-02-26 07:33:07.982 100 FEE 415409 16769 6069913 2024-02-26 07:33:07.982 2024-02-26 07:33:07.982 900 TIP 415409 2961 6069914 2024-02-26 07:33:09.214 2024-02-26 07:33:09.214 100 FEE 415386 18114 6069915 2024-02-26 07:33:09.214 2024-02-26 07:33:09.214 900 TIP 415386 18675 6069937 2024-02-26 07:37:42.937 2024-02-26 07:37:42.937 100 FEE 438842 919 6069938 2024-02-26 07:37:42.937 2024-02-26 07:37:42.937 900 TIP 438842 10112 6069950 2024-02-26 07:40:01.412 2024-02-26 07:40:01.412 1000 FEE 438953 5809 6069979 2024-02-26 07:44:53.888 2024-02-26 07:44:53.888 1000 FEE 438874 13767 6069980 2024-02-26 07:44:53.888 2024-02-26 07:44:53.888 9000 TIP 438874 20073 6069995 2024-02-26 07:47:27.937 2024-02-26 07:47:27.937 21000 FEE 438959 21514 6070007 2024-02-26 07:50:51.353 2024-02-26 07:50:51.353 2100 FEE 438943 16839 6070008 2024-02-26 07:50:51.353 2024-02-26 07:50:51.353 18900 TIP 438943 2513 6070022 2024-02-26 07:54:29.411 2024-02-26 07:54:29.411 100100 FEE 438065 2741 6070023 2024-02-26 07:54:29.411 2024-02-26 07:54:29.411 900900 TIP 438065 2347 6070079 2024-02-26 08:08:25.577 2024-02-26 08:08:25.577 2100 FEE 438751 6688 6070080 2024-02-26 08:08:25.577 2024-02-26 08:08:25.577 18900 TIP 438751 656 6070082 2024-02-26 08:09:28.97 2024-02-26 08:09:28.97 1000000 FEE 438975 21469 6070085 2024-02-26 08:10:40.174 2024-02-26 08:10:40.174 1000 FEE 438967 20434 6070086 2024-02-26 08:10:40.174 2024-02-26 08:10:40.174 9000 TIP 438967 16485 6070127 2024-02-26 08:26:05.757 2024-02-26 08:26:05.757 21000 FEE 438982 19773 6070134 2024-02-26 08:31:49.409 2024-02-26 08:31:49.409 3000 FEE 438973 703 6070135 2024-02-26 08:31:49.409 2024-02-26 08:31:49.409 27000 TIP 438973 11018 6070170 2024-02-26 08:42:59.29 2024-02-26 08:42:59.29 800 FEE 438794 18330 6070171 2024-02-26 08:42:59.29 2024-02-26 08:42:59.29 7200 TIP 438794 16556 6070178 2024-02-26 08:44:41.293 2024-02-26 08:44:41.293 800 FEE 438737 21164 6070179 2024-02-26 08:44:41.293 2024-02-26 08:44:41.293 7200 TIP 438737 980 6070201 2024-02-26 08:54:00.167 2024-02-26 08:54:00.167 0 FEE 438987 12951 6070214 2024-02-26 08:57:42.031 2024-02-26 08:57:42.031 1000 FEE 438970 3347 6070215 2024-02-26 08:57:42.031 2024-02-26 08:57:42.031 9000 TIP 438970 21233 6070216 2024-02-26 08:57:45.704 2024-02-26 08:57:45.704 100 FEE 438983 10060 6070217 2024-02-26 08:57:45.704 2024-02-26 08:57:45.704 900 TIP 438983 2342 6070258 2024-02-26 09:15:34.726 2024-02-26 09:15:34.726 1000 FEE 438994 690 6070276 2024-02-26 09:23:57.684 2024-02-26 09:23:57.684 1100 FEE 438993 17838 6070277 2024-02-26 09:23:57.684 2024-02-26 09:23:57.684 9900 TIP 438993 10311 6070295 2024-02-26 09:30:06.209 2024-02-26 09:30:06.209 1000 FEE 438999 5758 6070310 2024-02-26 09:34:24.146 2024-02-26 09:34:24.146 2500 FEE 438917 1488 6070311 2024-02-26 09:34:24.146 2024-02-26 09:34:24.146 22500 TIP 438917 16532 6070316 2024-02-26 09:34:25.695 2024-02-26 09:34:25.695 2500 FEE 438917 9099 6070317 2024-02-26 09:34:25.695 2024-02-26 09:34:25.695 22500 TIP 438917 21329 6070322 2024-02-26 09:36:16.932 2024-02-26 09:36:16.932 1000 FEE 438936 2390 6070323 2024-02-26 09:36:16.932 2024-02-26 09:36:16.932 9000 TIP 438936 9349 6070352 2024-02-26 09:44:48.226 2024-02-26 09:44:48.226 1000 FEE 439010 12422 6070362 2024-02-26 09:45:16.113 2024-02-26 09:45:16.113 1000 FEE 438794 21509 6070363 2024-02-26 09:45:16.113 2024-02-26 09:45:16.113 9000 TIP 438794 16556 6070367 2024-02-26 09:45:20.889 2024-02-26 09:45:20.889 1000 FEE 438814 2327 6070368 2024-02-26 09:45:20.889 2024-02-26 09:45:20.889 9000 TIP 438814 4692 6070373 2024-02-26 09:45:22.845 2024-02-26 09:45:22.845 1000 FEE 438486 14795 6070374 2024-02-26 09:45:22.845 2024-02-26 09:45:22.845 9000 TIP 438486 18625 6070386 2024-02-26 09:45:31.932 2024-02-26 09:45:31.932 1000 FEE 438724 21051 6070387 2024-02-26 09:45:31.932 2024-02-26 09:45:31.932 9000 TIP 438724 782 6070388 2024-02-26 09:45:32.95 2024-02-26 09:45:32.95 1000 FEE 438718 15243 6070389 2024-02-26 09:45:32.95 2024-02-26 09:45:32.95 9000 TIP 438718 16124 6070400 2024-02-26 09:45:58.844 2024-02-26 09:45:58.844 1000 FEE 438469 21201 6069484 2024-02-26 04:40:04.199 2024-02-26 04:40:04.199 1000 STREAM 141924 9242 6069486 2024-02-26 04:41:04.191 2024-02-26 04:41:04.191 1000 STREAM 141924 17221 6069487 2024-02-26 04:42:04.196 2024-02-26 04:42:04.196 1000 STREAM 141924 17221 6069494 2024-02-26 04:44:04.209 2024-02-26 04:44:04.209 1000 STREAM 141924 20636 6069496 2024-02-26 04:45:04.222 2024-02-26 04:45:04.222 1000 STREAM 141924 6749 6069498 2024-02-26 04:46:04.248 2024-02-26 04:46:04.248 1000 STREAM 141924 15226 6069524 2024-02-26 04:51:04.25 2024-02-26 04:51:04.25 1000 STREAM 141924 663 6069526 2024-02-26 04:52:04.254 2024-02-26 04:52:04.254 1000 STREAM 141924 16270 6069531 2024-02-26 04:57:04.294 2024-02-26 04:57:04.294 1000 STREAM 141924 6202 6069532 2024-02-26 04:58:04.3 2024-02-26 04:58:04.3 1000 STREAM 141924 15049 6069539 2024-02-26 05:05:04.323 2024-02-26 05:05:04.323 1000 STREAM 141924 1740 6069548 2024-02-26 05:08:04.336 2024-02-26 05:08:04.336 1000 STREAM 141924 19044 6069552 2024-02-26 05:10:04.347 2024-02-26 05:10:04.347 1000 STREAM 141924 14663 6069559 2024-02-26 05:12:04.34 2024-02-26 05:12:04.34 1000 STREAM 141924 16357 6069560 2024-02-26 05:13:04.343 2024-02-26 05:13:04.343 1000 STREAM 141924 3518 6069567 2024-02-26 05:16:04.365 2024-02-26 05:16:04.365 1000 STREAM 141924 18449 6069571 2024-02-26 05:17:04.375 2024-02-26 05:17:04.375 1000 STREAM 141924 9246 6069577 2024-02-26 05:18:04.38 2024-02-26 05:18:04.38 1000 STREAM 141924 5776 6069578 2024-02-26 05:19:04.381 2024-02-26 05:19:04.381 1000 STREAM 141924 5527 6069585 2024-02-26 05:21:04.4 2024-02-26 05:21:04.4 1000 STREAM 141924 16296 6069588 2024-02-26 05:24:04.415 2024-02-26 05:24:04.415 1000 STREAM 141924 828 6069594 2024-02-26 05:26:04.438 2024-02-26 05:26:04.438 1000 STREAM 141924 18877 6069595 2024-02-26 05:27:04.451 2024-02-26 05:27:04.451 1000 STREAM 141924 16126 6069601 2024-02-26 05:29:04.464 2024-02-26 05:29:04.464 1000 STREAM 141924 21033 6069611 2024-02-26 05:30:04.486 2024-02-26 05:30:04.486 1000 STREAM 141924 1495 6069625 2024-02-26 05:35:04.521 2024-02-26 05:35:04.521 1000 STREAM 141924 20616 6069628 2024-02-26 05:37:04.533 2024-02-26 05:37:04.533 1000 STREAM 141924 16809 6069629 2024-02-26 05:38:04.536 2024-02-26 05:38:04.536 1000 STREAM 141924 666 6069632 2024-02-26 05:39:04.544 2024-02-26 05:39:04.544 1000 STREAM 141924 6229 6069634 2024-02-26 05:40:04.562 2024-02-26 05:40:04.562 1000 STREAM 141924 4391 6069653 2024-02-26 05:49:04.67 2024-02-26 05:49:04.67 1000 STREAM 141924 20133 6069666 2024-02-26 05:57:04.753 2024-02-26 05:57:04.753 1000 STREAM 141924 19036 6069694 2024-02-26 06:03:04.787 2024-02-26 06:03:04.787 1000 STREAM 141924 20904 6069719 2024-02-26 06:09:04.825 2024-02-26 06:09:04.825 1000 STREAM 141924 17838 6069522 2024-02-26 04:50:26.141 2024-02-26 04:50:26.141 1000 FEE 438891 1751 6069523 2024-02-26 04:50:46.861 2024-02-26 04:50:46.861 1000 FEE 438892 20655 6069542 2024-02-26 05:07:38.878 2024-02-26 05:07:38.878 100 FEE 438893 1745 6069543 2024-02-26 05:07:38.878 2024-02-26 05:07:38.878 900 TIP 438893 21194 6069573 2024-02-26 05:18:01.636 2024-02-26 05:18:01.636 10000 FEE 436796 18984 6069574 2024-02-26 05:18:01.636 2024-02-26 05:18:01.636 90000 TIP 436796 19938 6069622 2024-02-26 05:33:54.226 2024-02-26 05:33:54.226 1000 FEE 438902 19494 6069633 2024-02-26 05:39:33.986 2024-02-26 05:39:33.986 1000000 FEE 438906 2577 6069650 2024-02-26 05:48:08.058 2024-02-26 05:48:08.058 1000 FEE 438908 19759 6069671 2024-02-26 06:00:00.552 2024-02-26 06:00:00.552 1000 FEE 438911 1162 6069687 2024-02-26 06:02:42.32 2024-02-26 06:02:42.32 1000 FEE 438914 1064 6069697 2024-02-26 06:03:23.433 2024-02-26 06:03:23.433 3300 FEE 438848 19826 6069698 2024-02-26 06:03:23.433 2024-02-26 06:03:23.433 29700 TIP 438848 18265 6069703 2024-02-26 06:04:17.254 2024-02-26 06:04:17.254 1000 FEE 438799 21291 6069704 2024-02-26 06:04:17.254 2024-02-26 06:04:17.254 9000 TIP 438799 11516 6069737 2024-02-26 06:23:21.302 2024-02-26 06:23:21.302 1000 FEE 438919 1512 6069746 2024-02-26 06:25:38.046 2024-02-26 06:25:38.046 1000 FEE 438920 4459 6069763 2024-02-26 06:36:56.49 2024-02-26 06:36:56.49 2100 FEE 438843 4225 6069764 2024-02-26 06:36:56.49 2024-02-26 06:36:56.49 18900 TIP 438843 19839 6069767 2024-02-26 06:38:01.835 2024-02-26 06:38:01.835 1000 FEE 438801 1505 6069768 2024-02-26 06:38:01.835 2024-02-26 06:38:01.835 9000 TIP 438801 18909 6069777 2024-02-26 06:41:28.292 2024-02-26 06:41:28.292 100000 DONT_LIKE_THIS 438916 19533 6069800 2024-02-26 06:51:31.881 2024-02-26 06:51:31.881 1000 FEE 438927 20006 6069844 2024-02-26 07:15:50.882 2024-02-26 07:15:50.882 21000 FEE 438932 18040 6069856 2024-02-26 07:21:02.697 2024-02-26 07:21:02.697 1000 FEE 438934 2640 6069860 2024-02-26 07:21:13.257 2024-02-26 07:21:13.257 2100 FEE 438794 2583 6069861 2024-02-26 07:21:13.257 2024-02-26 07:21:13.257 18900 TIP 438794 19976 6069862 2024-02-26 07:21:14.366 2024-02-26 07:21:14.366 2100 FEE 438651 13767 6069863 2024-02-26 07:21:14.366 2024-02-26 07:21:14.366 18900 TIP 438651 5444 6069878 2024-02-26 07:21:23.319 2024-02-26 07:21:23.319 2100 FEE 438605 11498 6069879 2024-02-26 07:21:23.319 2024-02-26 07:21:23.319 18900 TIP 438605 21291 6069900 2024-02-26 07:30:28.042 2024-02-26 07:30:28.042 1000 POLL 438794 2514 6069923 2024-02-26 07:35:17.811 2024-02-26 07:35:17.811 1000 FEE 438944 20858 6069934 2024-02-26 07:37:15.179 2024-02-26 07:37:15.179 100 FEE 438824 12779 6069935 2024-02-26 07:37:15.179 2024-02-26 07:37:15.179 900 TIP 438824 20554 6069939 2024-02-26 07:37:54.606 2024-02-26 07:37:54.606 1000 FEE 438948 21103 6069942 2024-02-26 07:39:02.346 2024-02-26 07:39:02.346 1000 FEE 438950 1007 6069956 2024-02-26 07:40:40.526 2024-02-26 07:40:40.526 1000 POLL 438794 18984 6069964 2024-02-26 07:42:35.2 2024-02-26 07:42:35.2 2100 FEE 438916 21021 6069965 2024-02-26 07:42:35.2 2024-02-26 07:42:35.2 18900 TIP 438916 17157 6069969 2024-02-26 07:43:09.359 2024-02-26 07:43:09.359 1000 FEE 438955 18403 6069976 2024-02-26 07:44:31.532 2024-02-26 07:44:31.532 1000 FEE 438957 18819 6069977 2024-02-26 07:44:52.962 2024-02-26 07:44:52.962 2100 FEE 438860 3729 6069978 2024-02-26 07:44:52.962 2024-02-26 07:44:52.962 18900 TIP 438860 2010 6069984 2024-02-26 07:45:08.86 2024-02-26 07:45:08.86 2100 FEE 438837 18453 6069985 2024-02-26 07:45:08.86 2024-02-26 07:45:08.86 18900 TIP 438837 14247 6069986 2024-02-26 07:45:14.557 2024-02-26 07:45:14.557 2100 FEE 438938 7659 6069987 2024-02-26 07:45:14.557 2024-02-26 07:45:14.557 18900 TIP 438938 21139 6069992 2024-02-26 07:45:49.602 2024-02-26 07:45:49.602 10000 FEE 438958 16769 6069997 2024-02-26 07:47:35.25 2024-02-26 07:47:35.25 1000 FEE 438960 634 6070016 2024-02-26 07:53:30.922 2024-02-26 07:53:30.922 2100 FEE 438902 17727 6070017 2024-02-26 07:53:30.922 2024-02-26 07:53:30.922 18900 TIP 438902 18930 6070027 2024-02-26 07:55:39.869 2024-02-26 07:55:39.869 2100 FEE 438959 21148 6070028 2024-02-26 07:55:39.869 2024-02-26 07:55:39.869 18900 TIP 438959 641 6070049 2024-02-26 08:02:05.457 2024-02-26 08:02:05.457 100 FEE 438937 14785 6070050 2024-02-26 08:02:05.457 2024-02-26 08:02:05.457 900 TIP 438937 6419 6070101 2024-02-26 08:13:52.453 2024-02-26 08:13:52.453 1000 FEE 438978 2529 6070107 2024-02-26 08:16:06.187 2024-02-26 08:16:06.187 1000 FEE 438980 21040 6070155 2024-02-26 08:37:05.506 2024-02-26 08:37:05.506 2100 FEE 438975 3504 6070156 2024-02-26 08:37:05.506 2024-02-26 08:37:05.506 18900 TIP 438975 16954 6070185 2024-02-26 08:45:20.381 2024-02-26 08:45:20.381 1000 FEE 438986 13133 6070193 2024-02-26 08:51:00.571 2024-02-26 08:51:00.571 21000 FEE 438987 17331 6070197 2024-02-26 08:53:02.525 2024-02-26 08:53:02.525 800 FEE 438937 18468 6070198 2024-02-26 08:53:02.525 2024-02-26 08:53:02.525 7200 TIP 438937 19809 6070203 2024-02-26 08:54:24.96 2024-02-26 08:54:24.96 2100 FEE 278801 2724 6070204 2024-02-26 08:54:24.96 2024-02-26 08:54:24.96 18900 TIP 278801 1959 6070234 2024-02-26 09:02:12.073 2024-02-26 09:02:12.073 0 FEE 438989 705 6070271 2024-02-26 09:20:04.88 2024-02-26 09:20:04.88 1000 FEE 438996 9992 6070288 2024-02-26 09:28:34.106 2024-02-26 09:28:34.106 0 FEE 438997 13782 6070360 2024-02-26 09:45:14.905 2024-02-26 09:45:14.905 1000 FEE 438651 9242 6070361 2024-02-26 09:45:14.905 2024-02-26 09:45:14.905 9000 TIP 438651 21342 6070377 2024-02-26 09:45:23.75 2024-02-26 09:45:23.75 1000 FEE 438735 20596 6070378 2024-02-26 09:45:23.75 2024-02-26 09:45:23.75 9000 TIP 438735 2749 6070381 2024-02-26 09:45:26.291 2024-02-26 09:45:26.291 1000 FEE 438691 928 6070382 2024-02-26 09:45:26.291 2024-02-26 09:45:26.291 9000 TIP 438691 14489 6070429 2024-02-26 09:46:27.696 2024-02-26 09:46:27.696 1000 FEE 438838 19462 6070430 2024-02-26 09:46:27.696 2024-02-26 09:46:27.696 9000 TIP 438838 3642 6070450 2024-02-26 09:47:08.214 2024-02-26 09:47:08.214 1000 FEE 438395 20993 6070451 2024-02-26 09:47:08.214 2024-02-26 09:47:08.214 9000 TIP 438395 20179 6070460 2024-02-26 09:47:18.698 2024-02-26 09:47:18.698 1000 FEE 438214 21520 6070461 2024-02-26 09:47:18.698 2024-02-26 09:47:18.698 9000 TIP 438214 5828 6070474 2024-02-26 09:47:40.636 2024-02-26 09:47:40.636 1000 FEE 64254 5904 6070475 2024-02-26 09:47:40.636 2024-02-26 09:47:40.636 9000 TIP 64254 14939 6070484 2024-02-26 09:47:58.347 2024-02-26 09:47:58.347 1000 FEE 438626 19458 6070485 2024-02-26 09:47:58.347 2024-02-26 09:47:58.347 9000 TIP 438626 18556 6070498 2024-02-26 09:50:41.098 2024-02-26 09:50:41.098 1000 FEE 439011 17741 6070499 2024-02-26 09:50:41.098 2024-02-26 09:50:41.098 9000 TIP 439011 2195 6070515 2024-02-26 09:53:03.193 2024-02-26 09:53:03.193 100 FEE 439011 18678 6070516 2024-02-26 09:53:03.193 2024-02-26 09:53:03.193 900 TIP 439011 9352 6070525 2024-02-26 09:54:23.227 2024-02-26 09:54:23.227 0 FEE 439016 5425 6070566 2024-02-26 09:59:53.856 2024-02-26 09:59:53.856 100 FEE 438936 21349 6070567 2024-02-26 09:59:53.856 2024-02-26 09:59:53.856 900 TIP 438936 16717 6070576 2024-02-26 10:00:05.056 2024-02-26 10:00:05.056 1000 FEE 439023 9107 6070577 2024-02-26 10:00:43.914 2024-02-26 10:00:43.914 10000 FEE 439024 21446 6070597 2024-02-26 10:04:33.647 2024-02-26 10:04:33.647 1000 FEE 439028 4345 6070601 2024-02-26 10:04:53.189 2024-02-26 10:04:53.189 0 FEE 439028 8570 6070606 2024-02-26 10:07:11.083 2024-02-26 10:07:11.083 2100 FEE 439028 7913 6070607 2024-02-26 10:07:11.083 2024-02-26 10:07:11.083 18900 TIP 439028 16998 6070626 2024-02-26 10:09:38.639 2024-02-26 10:09:38.639 2000 FEE 439033 21090 6070627 2024-02-26 10:09:38.639 2024-02-26 10:09:38.639 18000 TIP 439033 2328 6070634 2024-02-26 10:10:18.821 2024-02-26 10:10:18.821 2100 FEE 439016 20778 6070635 2024-02-26 10:10:18.821 2024-02-26 10:10:18.821 18900 TIP 439016 2156 6070636 2024-02-26 10:10:33.316 2024-02-26 10:10:33.316 1000 FEE 439037 20302 6070715 2024-02-26 10:24:44.795 2024-02-26 10:24:44.795 1000 FEE 439051 9482 6069546 2024-02-26 05:08:00.899 2024-02-26 05:08:00.899 100 FEE 438869 14650 6069547 2024-02-26 05:08:00.899 2024-02-26 05:08:00.899 900 TIP 438869 15226 6069606 2024-02-26 05:29:29.043 2024-02-26 05:29:29.043 100 FEE 438794 20059 6069607 2024-02-26 05:29:29.043 2024-02-26 05:29:29.043 900 TIP 438794 7877 6069624 2024-02-26 05:34:34.075 2024-02-26 05:34:34.075 1000 FEE 438903 21412 6069641 2024-02-26 05:44:57.161 2024-02-26 05:44:57.161 2100 FEE 438777 5129 6069642 2024-02-26 05:44:57.161 2024-02-26 05:44:57.161 18900 TIP 438777 9476 6069668 2024-02-26 05:58:42.963 2024-02-26 05:58:42.963 100 FEE 438893 17331 6069669 2024-02-26 05:58:42.963 2024-02-26 05:58:42.963 900 TIP 438893 18625 6069673 2024-02-26 06:00:04.78 2024-02-26 06:00:04.78 100000 FEE 438912 20454 6069702 2024-02-26 06:04:07.787 2024-02-26 06:04:07.787 0 FEE 438910 19096 6069714 2024-02-26 06:07:44.691 2024-02-26 06:07:44.691 3300 FEE 438847 14785 6069715 2024-02-26 06:07:44.691 2024-02-26 06:07:44.691 29700 TIP 438847 997 6069729 2024-02-26 06:16:34.031 2024-02-26 06:16:34.031 1000 FEE 438918 19500 6069766 2024-02-26 06:38:00.329 2024-02-26 06:38:00.329 10000 FEE 438922 18154 6069790 2024-02-26 06:48:47.415 2024-02-26 06:48:47.415 2100 FEE 438649 18629 6069791 2024-02-26 06:48:47.415 2024-02-26 06:48:47.415 18900 TIP 438649 18539 6069830 2024-02-26 07:08:27.72 2024-02-26 07:08:27.72 1000 FEE 438913 20243 6069831 2024-02-26 07:08:27.72 2024-02-26 07:08:27.72 9000 TIP 438913 20881 6069918 2024-02-26 07:33:46.173 2024-02-26 07:33:46.173 1000 FEE 438941 15474 6069924 2024-02-26 07:35:32.325 2024-02-26 07:35:32.325 100 FEE 438889 9084 6069925 2024-02-26 07:35:32.325 2024-02-26 07:35:32.325 900 TIP 438889 1046 6069926 2024-02-26 07:35:37.658 2024-02-26 07:35:37.658 10000 FEE 438922 15282 6069927 2024-02-26 07:35:37.658 2024-02-26 07:35:37.658 90000 TIP 438922 9844 6069936 2024-02-26 07:37:20.792 2024-02-26 07:37:20.792 1000 FEE 438947 20179 6069947 2024-02-26 07:39:33.257 2024-02-26 07:39:33.257 1000 FEE 438952 671 6069948 2024-02-26 07:39:33.559 2024-02-26 07:39:33.559 100 FEE 438940 16939 6069949 2024-02-26 07:39:33.559 2024-02-26 07:39:33.559 900 TIP 438940 18264 6069958 2024-02-26 07:41:18.01 2024-02-26 07:41:18.01 1000 FEE 438954 4250 6069971 2024-02-26 07:43:14.626 2024-02-26 07:43:14.626 100 FEE 438919 5129 6069972 2024-02-26 07:43:14.626 2024-02-26 07:43:14.626 900 TIP 438919 20117 6069974 2024-02-26 07:44:09.042 2024-02-26 07:44:09.042 10000 FEE 438956 1352 6069975 2024-02-26 07:44:09.042 2024-02-26 07:44:09.042 90000 TIP 438956 5829 6069981 2024-02-26 07:44:54.843 2024-02-26 07:44:54.843 1000 FEE 438874 1092 6069982 2024-02-26 07:44:54.843 2024-02-26 07:44:54.843 9000 TIP 438874 2620 6069990 2024-02-26 07:45:29.508 2024-02-26 07:45:29.508 2100 FEE 438936 4062 6069991 2024-02-26 07:45:29.508 2024-02-26 07:45:29.508 18900 TIP 438936 18995 6069998 2024-02-26 07:48:00.234 2024-02-26 07:48:00.234 1000 FEE 438961 977 6070004 2024-02-26 07:50:37.217 2024-02-26 07:50:37.217 1000 FEE 438964 21212 6070034 2024-02-26 08:00:05.128 2024-02-26 08:00:05.128 100000 FEE 438966 21320 6070042 2024-02-26 08:01:52.847 2024-02-26 08:01:52.847 100 FEE 438956 21148 6070043 2024-02-26 08:01:52.847 2024-02-26 08:01:52.847 900 TIP 438956 634 6070056 2024-02-26 08:03:06.379 2024-02-26 08:03:06.379 5000 FEE 438390 6653 6070057 2024-02-26 08:03:06.379 2024-02-26 08:03:06.379 45000 TIP 438390 5499 6070071 2024-02-26 08:07:56.651 2024-02-26 08:07:56.651 2500 FEE 438794 12175 6070072 2024-02-26 08:07:56.651 2024-02-26 08:07:56.651 22500 TIP 438794 18533 6070083 2024-02-26 08:10:00.231 2024-02-26 08:10:00.231 1000 FEE 438976 7983 6070108 2024-02-26 08:16:07.867 2024-02-26 08:16:07.867 2100 FEE 438978 21228 6070109 2024-02-26 08:16:07.867 2024-02-26 08:16:07.867 18900 TIP 438978 1425 6070118 2024-02-26 08:19:36.183 2024-02-26 08:19:36.183 2100 FEE 438107 7668 6070119 2024-02-26 08:19:36.183 2024-02-26 08:19:36.183 18900 TIP 438107 9843 6070158 2024-02-26 08:37:23.889 2024-02-26 08:37:23.889 2100 FEE 438910 16847 6070159 2024-02-26 08:37:23.889 2024-02-26 08:37:23.889 18900 TIP 438910 12507 6070173 2024-02-26 08:43:09.347 2024-02-26 08:43:09.347 1100 FEE 438936 16948 6070174 2024-02-26 08:43:09.347 2024-02-26 08:43:09.347 9900 TIP 438936 2203 6070238 2024-02-26 09:03:39.247 2024-02-26 09:03:39.247 0 FEE 438991 4304 6070253 2024-02-26 09:14:33.395 2024-02-26 09:14:33.395 21000 FEE 438992 2961 6070254 2024-02-26 09:14:49.135 2024-02-26 09:14:49.135 1000 FEE 438993 21357 6070324 2024-02-26 09:36:19.201 2024-02-26 09:36:19.201 3000 FEE 439002 1354 6070325 2024-02-26 09:36:19.201 2024-02-26 09:36:19.201 27000 TIP 439002 2203 6070326 2024-02-26 09:36:27.071 2024-02-26 09:36:27.071 1000 FEE 437474 2652 6070327 2024-02-26 09:36:27.071 2024-02-26 09:36:27.071 9000 TIP 437474 18357 6070329 2024-02-26 09:37:30.543 2024-02-26 09:37:30.543 1000 FEE 438995 9450 6070330 2024-02-26 09:37:30.543 2024-02-26 09:37:30.543 9000 TIP 438995 13798 6070349 2024-02-26 09:43:59.173 2024-02-26 09:43:59.173 1000 FEE 439008 3683 6070392 2024-02-26 09:45:35.254 2024-02-26 09:45:35.254 1000 FEE 438748 18311 6070393 2024-02-26 09:45:35.254 2024-02-26 09:45:35.254 9000 TIP 438748 18114 6070405 2024-02-26 09:46:05.722 2024-02-26 09:46:05.722 1000 FEE 438469 16336 6070406 2024-02-26 09:46:05.722 2024-02-26 09:46:05.722 9000 TIP 438469 14688 6070407 2024-02-26 09:46:19.149 2024-02-26 09:46:19.149 1000 FEE 438794 16442 6070408 2024-02-26 09:46:19.149 2024-02-26 09:46:19.149 9000 TIP 438794 2942 6070409 2024-02-26 09:46:19.247 2024-02-26 09:46:19.247 1000 FEE 438931 8841 6070410 2024-02-26 09:46:19.247 2024-02-26 09:46:19.247 9000 TIP 438931 11956 6070411 2024-02-26 09:46:20.122 2024-02-26 09:46:20.122 1000 FEE 438940 9329 6070412 2024-02-26 09:46:20.122 2024-02-26 09:46:20.122 9000 TIP 438940 17519 6070452 2024-02-26 09:47:13.111 2024-02-26 09:47:13.111 1000 FEE 438408 1737 6070453 2024-02-26 09:47:13.111 2024-02-26 09:47:13.111 9000 TIP 438408 18769 6070454 2024-02-26 09:47:13.909 2024-02-26 09:47:13.909 1000 FEE 438456 16562 6070455 2024-02-26 09:47:13.909 2024-02-26 09:47:13.909 9000 TIP 438456 937 6070456 2024-02-26 09:47:16.37 2024-02-26 09:47:16.37 1000 FEE 438415 21577 6070457 2024-02-26 09:47:16.37 2024-02-26 09:47:16.37 9000 TIP 438415 17184 6070458 2024-02-26 09:47:16.989 2024-02-26 09:47:16.989 1000 FEE 438410 19878 6070459 2024-02-26 09:47:16.989 2024-02-26 09:47:16.989 9000 TIP 438410 6419 6070462 2024-02-26 09:47:19.865 2024-02-26 09:47:19.865 1000 FEE 438218 1047 6070463 2024-02-26 09:47:19.865 2024-02-26 09:47:19.865 9000 TIP 438218 1800 6069589 2024-02-26 05:25:05.242 2024-02-26 05:25:05.242 1000 STREAM 141924 18230 6069613 2024-02-26 05:30:52.79 2024-02-26 05:30:52.79 900 TIP 438896 10273 6069655 2024-02-26 05:50:03.903 2024-02-26 05:50:03.903 2100 FEE 438699 2748 6069656 2024-02-26 05:50:03.903 2024-02-26 05:50:03.903 18900 TIP 438699 9107 6069688 2024-02-26 06:02:52.153 2024-02-26 06:02:52.153 1000 FEE 438833 10849 6069689 2024-02-26 06:02:52.153 2024-02-26 06:02:52.153 9000 TIP 438833 7119 6069700 2024-02-26 06:03:51.569 2024-02-26 06:03:51.569 1000 POLL 438772 12736 6069759 2024-02-26 06:34:36.22 2024-02-26 06:34:36.22 2100 FEE 438884 14669 6069760 2024-02-26 06:34:36.22 2024-02-26 06:34:36.22 18900 TIP 438884 11956 6069770 2024-02-26 06:38:21.303 2024-02-26 06:38:21.303 2100 FEE 438863 2829 6069771 2024-02-26 06:38:21.303 2024-02-26 06:38:21.303 18900 TIP 438863 18533 6069796 2024-02-26 06:50:46.593 2024-02-26 06:50:46.593 1000 FEE 438926 5757 6069832 2024-02-26 07:08:28.799 2024-02-26 07:08:28.799 1000 FEE 438930 19924 6069833 2024-02-26 07:08:28.799 2024-02-26 07:08:28.799 9000 TIP 438930 4692 6069848 2024-02-26 07:17:31.046 2024-02-26 07:17:31.046 0 FEE 438932 15146 6069870 2024-02-26 07:21:18.492 2024-02-26 07:21:18.492 2100 FEE 438583 21369 6069871 2024-02-26 07:21:18.492 2024-02-26 07:21:18.492 18900 TIP 438583 16998 6069874 2024-02-26 07:21:21.529 2024-02-26 07:21:21.529 2100 FEE 438814 6393 6069875 2024-02-26 07:21:21.529 2024-02-26 07:21:21.529 18900 TIP 438814 16717 6069876 2024-02-26 07:21:22.753 2024-02-26 07:21:22.753 2100 FEE 438758 703 6069877 2024-02-26 07:21:22.753 2024-02-26 07:21:22.753 18900 TIP 438758 2176 6069901 2024-02-26 07:30:44.373 2024-02-26 07:30:44.373 0 FEE 438935 2709 6069906 2024-02-26 07:32:10.238 2024-02-26 07:32:10.238 1000 FEE 438939 17091 6069907 2024-02-26 07:32:19.147 2024-02-26 07:32:19.147 1000 FEE 438940 11561 6069928 2024-02-26 07:35:51.11 2024-02-26 07:35:51.11 2100 FEE 438763 21343 6069929 2024-02-26 07:35:51.11 2024-02-26 07:35:51.11 18900 TIP 438763 19333 6069931 2024-02-26 07:36:25.452 2024-02-26 07:36:25.452 1000 FEE 438945 21140 6069970 2024-02-26 07:43:12.503 2024-02-26 07:43:12.503 100000 FEE 438956 1209 6070018 2024-02-26 07:53:59.029 2024-02-26 07:53:59.029 0 FEE 71841 19905 6070036 2024-02-26 08:00:46.465 2024-02-26 08:00:46.465 1000 FEE 438968 17568 6070038 2024-02-26 08:01:10.207 2024-02-26 08:01:10.207 100 FEE 438933 4692 6070039 2024-02-26 08:01:10.207 2024-02-26 08:01:10.207 900 TIP 438933 20310 6070073 2024-02-26 08:07:58.243 2024-02-26 08:07:58.243 2500 FEE 438794 13622 6070074 2024-02-26 08:07:58.243 2024-02-26 08:07:58.243 22500 TIP 438794 1960 6070078 2024-02-26 08:08:09.43 2024-02-26 08:08:09.43 1000 FEE 438974 16145 6070092 2024-02-26 08:12:37.908 2024-02-26 08:12:37.908 100 FEE 438947 14381 6070093 2024-02-26 08:12:37.908 2024-02-26 08:12:37.908 900 TIP 438947 10490 6070098 2024-02-26 08:12:39.147 2024-02-26 08:12:39.147 100 FEE 438947 20660 6070099 2024-02-26 08:12:39.147 2024-02-26 08:12:39.147 900 TIP 438947 3642 6070103 2024-02-26 08:14:44.972 2024-02-26 08:14:44.972 1000 FEE 438979 16350 6070144 2024-02-26 08:33:45.974 2024-02-26 08:33:45.974 2100 FEE 438749 18265 6070145 2024-02-26 08:33:45.974 2024-02-26 08:33:45.974 18900 TIP 438749 16929 6070157 2024-02-26 08:37:20.395 2024-02-26 08:37:20.395 1000 FEE 438984 18387 6070160 2024-02-26 08:37:40.302 2024-02-26 08:37:40.302 1600 FEE 438800 18815 6070161 2024-02-26 08:37:40.302 2024-02-26 08:37:40.302 14400 TIP 438800 21083 6070166 2024-02-26 08:39:59.55 2024-02-26 08:39:59.55 10000 FEE 438985 19500 6070175 2024-02-26 08:43:14.506 2024-02-26 08:43:14.506 1600 FEE 438973 16145 6070176 2024-02-26 08:43:14.506 2024-02-26 08:43:14.506 14400 TIP 438973 14990 6070259 2024-02-26 09:15:51.374 2024-02-26 09:15:51.374 1000 FEE 438995 21021 6070306 2024-02-26 09:34:23.823 2024-02-26 09:34:23.823 2500 FEE 438917 15052 6070307 2024-02-26 09:34:23.823 2024-02-26 09:34:23.823 22500 TIP 438917 20153 6070312 2024-02-26 09:34:24.447 2024-02-26 09:34:24.447 5000 FEE 438917 5499 6070313 2024-02-26 09:34:24.447 2024-02-26 09:34:24.447 45000 TIP 438917 9333 6070334 2024-02-26 09:39:06.775 2024-02-26 09:39:06.775 100000 FEE 439005 12272 6070335 2024-02-26 09:39:37.907 2024-02-26 09:39:37.907 0 FEE 439005 20454 6070340 2024-02-26 09:41:12.86 2024-02-26 09:41:12.86 0 FEE 439005 10668 6070341 2024-02-26 09:41:50.471 2024-02-26 09:41:50.471 1000 FEE 438906 16282 6070342 2024-02-26 09:41:50.471 2024-02-26 09:41:50.471 9000 TIP 438906 5499 6070351 2024-02-26 09:44:15.245 2024-02-26 09:44:15.245 1000 FEE 439009 680 6070385 2024-02-26 09:45:31.481 2024-02-26 09:45:31.481 1000 FEE 439011 7979 6070413 2024-02-26 09:46:20.901 2024-02-26 09:46:20.901 1000 FEE 438943 954 6070414 2024-02-26 09:46:20.901 2024-02-26 09:46:20.901 9000 TIP 438943 2773 6070439 2024-02-26 09:46:58.074 2024-02-26 09:46:58.074 1000 FEE 438261 1124 6070440 2024-02-26 09:46:58.074 2024-02-26 09:46:58.074 9000 TIP 438261 15544 6070448 2024-02-26 09:47:06.577 2024-02-26 09:47:06.577 1000 FEE 438375 13798 6070449 2024-02-26 09:47:06.577 2024-02-26 09:47:06.577 9000 TIP 438375 5661 6070490 2024-02-26 09:48:01.982 2024-02-26 09:48:01.982 1000 FEE 439013 18865 6070507 2024-02-26 09:51:33.148 2024-02-26 09:51:33.148 1100 FEE 439009 21457 6070508 2024-02-26 09:51:33.148 2024-02-26 09:51:33.148 9900 TIP 439009 17984 6070513 2024-02-26 09:52:50.54 2024-02-26 09:52:50.54 1000 FEE 438973 21491 6070514 2024-02-26 09:52:50.54 2024-02-26 09:52:50.54 9000 TIP 438973 14905 6070518 2024-02-26 09:53:45.104 2024-02-26 09:53:45.104 1000 FEE 439015 15925 6070519 2024-02-26 09:53:50.369 2024-02-26 09:53:50.369 2500 FEE 438996 9353 6070520 2024-02-26 09:53:50.369 2024-02-26 09:53:50.369 22500 TIP 438996 20636 6070549 2024-02-26 09:58:12.323 2024-02-26 09:58:12.323 100 FEE 438995 17106 6070550 2024-02-26 09:58:12.323 2024-02-26 09:58:12.323 900 TIP 438995 19151 6070572 2024-02-26 09:59:54.942 2024-02-26 09:59:54.942 100 FEE 438936 21155 6070573 2024-02-26 09:59:54.942 2024-02-26 09:59:54.942 900 TIP 438936 20911 6070596 2024-02-26 10:04:24.903 2024-02-26 10:04:24.903 1000 FEE 439027 891 6070611 2024-02-26 10:07:54.13 2024-02-26 10:07:54.13 2100 FEE 438996 1006 6070612 2024-02-26 10:07:54.13 2024-02-26 10:07:54.13 18900 TIP 438996 3456 6070614 2024-02-26 10:08:11.061 2024-02-26 10:08:11.061 1000 FEE 439033 19852 6070653 2024-02-26 10:12:57.338 2024-02-26 10:12:57.338 1000 FEE 439040 21387 6070666 2024-02-26 10:14:47.637 2024-02-26 10:14:47.637 2100 FEE 438993 1652 6070667 2024-02-26 10:14:47.637 2024-02-26 10:14:47.637 18900 TIP 438993 701 6070679 2024-02-26 10:16:02.091 2024-02-26 10:16:02.091 1000 FEE 439029 20218 6070680 2024-02-26 10:16:02.091 2024-02-26 10:16:02.091 9000 TIP 439029 18396 6070702 2024-02-26 10:22:05.341 2024-02-26 10:22:05.341 2100 FEE 439043 2075 6070703 2024-02-26 10:22:05.341 2024-02-26 10:22:05.341 18900 TIP 439043 7978 6070704 2024-02-26 10:22:32.045 2024-02-26 10:22:32.045 0 FEE 439048 19333 6070711 2024-02-26 10:24:12.34 2024-02-26 10:24:12.34 1100 FEE 439041 21296 6070712 2024-02-26 10:24:12.34 2024-02-26 10:24:12.34 9900 TIP 439041 19322 6070747 2024-02-26 10:35:16.363 2024-02-26 10:35:16.363 1000 FEE 439059 21463 6070768 2024-02-26 10:39:30.832 2024-02-26 10:39:30.832 1000 FEE 439065 17976 6070774 2024-02-26 10:40:14.844 2024-02-26 10:40:14.844 2100 FEE 439062 21400 6070775 2024-02-26 10:40:14.844 2024-02-26 10:40:14.844 18900 TIP 439062 20812 6070776 2024-02-26 10:40:15.416 2024-02-26 10:40:15.416 4000 FEE 439051 10549 6070777 2024-02-26 10:40:15.416 2024-02-26 10:40:15.416 36000 TIP 439051 16355 6070778 2024-02-26 10:40:55.843 2024-02-26 10:40:55.843 1000 FEE 439068 642 6070791 2024-02-26 10:43:35.687 2024-02-26 10:43:35.687 1000 FEE 439072 2734 6070805 2024-02-26 10:48:20.962 2024-02-26 10:48:20.962 0 FEE 439075 20897 6070839 2024-02-26 10:57:43.099 2024-02-26 10:57:43.099 1000 FEE 438092 21571 6070840 2024-02-26 10:57:43.099 2024-02-26 10:57:43.099 9000 TIP 438092 7998 6070845 2024-02-26 10:57:44.53 2024-02-26 10:57:44.53 1000 FEE 438092 20624 6070846 2024-02-26 10:57:44.53 2024-02-26 10:57:44.53 9000 TIP 438092 12291 6070902 2024-02-26 11:14:13.408 2024-02-26 11:14:13.408 100 FEE 439080 1135 6069616 2024-02-26 05:32:04.722 2024-02-26 05:32:04.722 1000 STREAM 141924 1006 6069639 2024-02-26 05:44:04.806 2024-02-26 05:44:04.806 1000 STREAM 141924 844 6069647 2024-02-26 05:46:04.808 2024-02-26 05:46:04.808 1000 STREAM 141924 13076 6069664 2024-02-26 05:56:04.883 2024-02-26 05:56:04.883 1000 STREAM 141924 657 6069667 2024-02-26 05:58:04.897 2024-02-26 05:58:04.897 1000 STREAM 141924 20555 6069675 2024-02-26 06:01:05.387 2024-02-26 06:01:05.387 1000 STREAM 141924 2529 6069701 2024-02-26 06:04:05.422 2024-02-26 06:04:05.422 1000 STREAM 141924 15139 6069722 2024-02-26 06:12:05.52 2024-02-26 06:12:05.52 1000 STREAM 141924 678 6069643 2024-02-26 05:45:04.805 2024-02-26 05:45:04.805 1000 STREAM 141924 794 6069648 2024-02-26 05:47:04.81 2024-02-26 05:47:04.81 1000 STREAM 141924 5904 6069657 2024-02-26 05:50:04.864 2024-02-26 05:50:04.864 1000 STREAM 141924 18280 6069658 2024-02-26 05:51:04.843 2024-02-26 05:51:04.843 1000 STREAM 141924 21338 6069660 2024-02-26 05:52:04.858 2024-02-26 05:52:04.858 1000 STREAM 141924 13198 6069661 2024-02-26 05:53:04.863 2024-02-26 05:53:04.863 1000 STREAM 141924 20287 6069663 2024-02-26 05:55:04.879 2024-02-26 05:55:04.879 1000 STREAM 141924 11328 6069670 2024-02-26 05:59:04.897 2024-02-26 05:59:04.897 1000 STREAM 141924 18629 6069686 2024-02-26 06:02:05.406 2024-02-26 06:02:05.406 1000 STREAM 141924 1488 6069707 2024-02-26 06:05:05.432 2024-02-26 06:05:05.432 1000 STREAM 141924 16329 6069708 2024-02-26 06:06:05.445 2024-02-26 06:06:05.445 1000 STREAM 141924 19930 6069721 2024-02-26 06:11:05.51 2024-02-26 06:11:05.51 1000 STREAM 141924 18828 6069723 2024-02-26 06:13:05.536 2024-02-26 06:13:05.536 1000 STREAM 141924 1092 6069726 2024-02-26 06:14:05.555 2024-02-26 06:14:05.555 1000 STREAM 141924 8648 6069727 2024-02-26 06:15:05.583 2024-02-26 06:15:05.583 1000 STREAM 141924 21314 6069662 2024-02-26 05:54:04.732 2024-02-26 05:54:04.732 1000 STREAM 141924 9167 6069672 2024-02-26 06:00:04.777 2024-02-26 06:00:04.777 1000 STREAM 141924 18819 6069709 2024-02-26 06:07:04.816 2024-02-26 06:07:04.816 1000 STREAM 141924 19570 6069718 2024-02-26 06:08:04.818 2024-02-26 06:08:04.818 1000 STREAM 141924 7891 6069720 2024-02-26 06:10:04.855 2024-02-26 06:10:04.855 1000 STREAM 141924 21424 6069677 2024-02-26 06:01:27.232 2024-02-26 06:01:27.232 9000 TIP 438737 621 6069712 2024-02-26 06:07:43.042 2024-02-26 06:07:43.042 1000 FEE 438416 4064 6069713 2024-02-26 06:07:43.042 2024-02-26 06:07:43.042 9000 TIP 438416 9355 6069724 2024-02-26 06:13:13.653 2024-02-26 06:13:13.653 10000 FEE 438916 21048 6069758 2024-02-26 06:34:31.959 2024-02-26 06:34:31.959 1000 FEE 438921 16789 6069827 2024-02-26 07:07:06.18 2024-02-26 07:07:06.18 2100 FEE 438795 21332 6069828 2024-02-26 07:07:06.18 2024-02-26 07:07:06.18 18900 TIP 438795 12277 6069839 2024-02-26 07:12:07.442 2024-02-26 07:12:07.442 1000 POLL 438414 5036 6069846 2024-02-26 07:16:14.002 2024-02-26 07:16:14.002 100000 FEE 438933 1480 6069885 2024-02-26 07:23:30.442 2024-02-26 07:23:30.442 0 FEE 438935 18678 6069895 2024-02-26 07:26:45.824 2024-02-26 07:26:45.824 1000 POLL 438794 8385 6069920 2024-02-26 07:34:37.347 2024-02-26 07:34:37.347 1000 FEE 438942 2039 6069946 2024-02-26 07:39:18.313 2024-02-26 07:39:18.313 1000 FEE 438951 1493 6069952 2024-02-26 07:40:06.402 2024-02-26 07:40:06.402 4000 FEE 438931 6688 6069953 2024-02-26 07:40:06.402 2024-02-26 07:40:06.402 36000 TIP 438931 20412 6069954 2024-02-26 07:40:12.339 2024-02-26 07:40:12.339 4000 FEE 438943 20180 6069955 2024-02-26 07:40:12.339 2024-02-26 07:40:12.339 36000 TIP 438943 17602 6069959 2024-02-26 07:41:47.943 2024-02-26 07:41:47.943 100 FEE 438944 1060 6069960 2024-02-26 07:41:47.943 2024-02-26 07:41:47.943 900 TIP 438944 16653 6069988 2024-02-26 07:45:20.714 2024-02-26 07:45:20.714 2100 FEE 438946 698 6069989 2024-02-26 07:45:20.714 2024-02-26 07:45:20.714 18900 TIP 438946 15536 6069996 2024-02-26 07:47:28.002 2024-02-26 07:47:28.002 1000 POLL 438414 10818 6070000 2024-02-26 07:48:12.097 2024-02-26 07:48:12.097 1000 FEE 438962 17091 6070019 2024-02-26 07:54:00.693 2024-02-26 07:54:00.693 2100 FEE 438956 20464 6070020 2024-02-26 07:54:00.693 2024-02-26 07:54:00.693 18900 TIP 438956 20973 6070035 2024-02-26 08:00:05.512 2024-02-26 08:00:05.512 1000 FEE 438967 20745 6070040 2024-02-26 08:01:19.37 2024-02-26 08:01:19.37 100 FEE 438922 15367 6070041 2024-02-26 08:01:19.37 2024-02-26 08:01:19.37 900 TIP 438922 16097 6070051 2024-02-26 08:02:41.671 2024-02-26 08:02:41.671 5000 FEE 438651 20243 6070052 2024-02-26 08:02:41.671 2024-02-26 08:02:41.671 45000 TIP 438651 19633 6070054 2024-02-26 08:03:00.331 2024-02-26 08:03:00.331 1000 FEE 438972 13177 6070063 2024-02-26 08:04:06.89 2024-02-26 08:04:06.89 5000 FEE 438480 3417 6070064 2024-02-26 08:04:06.89 2024-02-26 08:04:06.89 45000 TIP 438480 19005 6070065 2024-02-26 08:04:21.951 2024-02-26 08:04:21.951 100000 FEE 438973 20094 6070069 2024-02-26 08:07:44.759 2024-02-26 08:07:44.759 2100 FEE 438973 20327 6070070 2024-02-26 08:07:44.759 2024-02-26 08:07:44.759 18900 TIP 438973 19910 6070090 2024-02-26 08:12:37.598 2024-02-26 08:12:37.598 100 FEE 438947 21357 6070091 2024-02-26 08:12:37.598 2024-02-26 08:12:37.598 900 TIP 438947 9337 6070112 2024-02-26 08:16:57.504 2024-02-26 08:16:57.504 2100 FEE 438977 4650 6070113 2024-02-26 08:16:57.504 2024-02-26 08:16:57.504 18900 TIP 438977 11714 6070180 2024-02-26 08:44:45.379 2024-02-26 08:44:45.379 800 FEE 438651 811 6070181 2024-02-26 08:44:45.379 2024-02-26 08:44:45.379 7200 TIP 438651 6030 6070208 2024-02-26 08:55:07.127 2024-02-26 08:55:07.127 1600 FEE 438797 21148 6070209 2024-02-26 08:55:07.127 2024-02-26 08:55:07.127 14400 TIP 438797 8945 6070219 2024-02-26 08:58:10.363 2024-02-26 08:58:10.363 100 FEE 438987 20897 6070220 2024-02-26 08:58:10.363 2024-02-26 08:58:10.363 900 TIP 438987 18995 6070226 2024-02-26 09:00:43.382 2024-02-26 09:00:43.382 2500 FEE 438737 18330 6070227 2024-02-26 09:00:43.382 2024-02-26 09:00:43.382 22500 TIP 438737 13622 6070231 2024-02-26 09:01:38.799 2024-02-26 09:01:38.799 1000 FEE 438989 21498 6070235 2024-02-26 09:02:39.107 2024-02-26 09:02:39.107 1000 POLL 438325 5759 6070236 2024-02-26 09:02:40.132 2024-02-26 09:02:40.132 10000 FEE 438991 16353 6070241 2024-02-26 09:03:54.696 2024-02-26 09:03:54.696 0 FEE 438991 776 6070285 2024-02-26 09:27:18.003 2024-02-26 09:27:18.003 1000 FEE 438106 19652 6070286 2024-02-26 09:27:18.003 2024-02-26 09:27:18.003 9000 TIP 438106 9364 6070300 2024-02-26 09:33:20.727 2024-02-26 09:33:20.727 21000 FEE 438975 21274 6070301 2024-02-26 09:33:20.727 2024-02-26 09:33:20.727 189000 TIP 438975 21222 6070305 2024-02-26 09:34:20.605 2024-02-26 09:34:20.605 1000 FEE 439001 10690 6070308 2024-02-26 09:34:24.101 2024-02-26 09:34:24.101 2500 FEE 438917 19967 6070309 2024-02-26 09:34:24.101 2024-02-26 09:34:24.101 22500 TIP 438917 15491 6070314 2024-02-26 09:34:25.578 2024-02-26 09:34:25.578 5000 FEE 438917 12097 6070315 2024-02-26 09:34:25.578 2024-02-26 09:34:25.578 45000 TIP 438917 21275 6070345 2024-02-26 09:42:41.919 2024-02-26 09:42:41.919 3000 FEE 438973 21207 6070346 2024-02-26 09:42:41.919 2024-02-26 09:42:41.919 27000 TIP 438973 12721 6070371 2024-02-26 09:45:21.849 2024-02-26 09:45:21.849 1000 FEE 438202 12721 6070372 2024-02-26 09:45:21.849 2024-02-26 09:45:21.849 9000 TIP 438202 1740 6070395 2024-02-26 09:45:45.526 2024-02-26 09:45:45.526 1000 POLL 438414 8360 6070398 2024-02-26 09:45:58.142 2024-02-26 09:45:58.142 1000 FEE 438752 10398 6070399 2024-02-26 09:45:58.142 2024-02-26 09:45:58.142 9000 TIP 438752 3686 6070421 2024-02-26 09:46:24.648 2024-02-26 09:46:24.648 1000 FEE 438852 20778 6070422 2024-02-26 09:46:24.648 2024-02-26 09:46:24.648 9000 TIP 438852 11999 6070496 2024-02-26 09:50:34.927 2024-02-26 09:50:34.927 1000 FEE 439005 1425 6070497 2024-02-26 09:50:34.927 2024-02-26 09:50:34.927 9000 TIP 439005 3353 6070511 2024-02-26 09:52:36.931 2024-02-26 09:52:36.931 2500 FEE 438874 1488 6070512 2024-02-26 09:52:36.931 2024-02-26 09:52:36.931 22500 TIP 438874 656 6070521 2024-02-26 09:53:54.985 2024-02-26 09:53:54.985 1000 FEE 439012 18199 6070522 2024-02-26 09:53:54.985 2024-02-26 09:53:54.985 9000 TIP 439012 16456 6070542 2024-02-26 09:58:07.247 2024-02-26 09:58:07.247 1000 FEE 439021 685 6070558 2024-02-26 09:59:41.712 2024-02-26 09:59:41.712 200 FEE 438946 1142 6070559 2024-02-26 09:59:41.712 2024-02-26 09:59:41.712 1800 TIP 438946 17116 6070590 2024-02-26 10:03:19.097 2024-02-26 10:03:19.097 10000 FEE 439026 10490 6070672 2024-02-26 10:15:19.509 2024-02-26 10:15:19.509 2100 FEE 439020 18524 6070673 2024-02-26 10:15:19.509 2024-02-26 10:15:19.509 18900 TIP 439020 18659 6070688 2024-02-26 10:17:37.034 2024-02-26 10:17:37.034 2100 FEE 439009 18264 6070689 2024-02-26 10:17:37.034 2024-02-26 10:17:37.034 18900 TIP 439009 15594 6070699 2024-02-26 10:21:29.798 2024-02-26 10:21:29.798 1000 FEE 439049 11220 6070720 2024-02-26 10:26:36.484 2024-02-26 10:26:36.484 1000 FEE 439052 19154 6070744 2024-02-26 10:35:02.228 2024-02-26 10:35:02.228 1000 FEE 439032 1162 6070745 2024-02-26 10:35:02.228 2024-02-26 10:35:02.228 9000 TIP 439032 13055 6070753 2024-02-26 10:37:02.402 2024-02-26 10:37:02.402 1000 FEE 439061 2508 6070754 2024-02-26 10:37:28.389 2024-02-26 10:37:28.389 1000 FEE 439062 640 6070764 2024-02-26 10:38:25.882 2024-02-26 10:38:25.882 1000 FEE 439064 15159 6070772 2024-02-26 10:39:59.862 2024-02-26 10:39:59.862 1000 FEE 439067 21506 6070780 2024-02-26 10:41:10.05 2024-02-26 10:41:10.05 1000 FEE 439069 19941 6070781 2024-02-26 10:41:16.138 2024-02-26 10:41:16.138 1000 FEE 439070 2710 6070787 2024-02-26 10:42:14.53 2024-02-26 10:42:14.53 1000 FEE 439071 15938 6070802 2024-02-26 10:47:22.979 2024-02-26 10:47:22.979 1000 FEE 439075 6688 6070807 2024-02-26 10:48:50.308 2024-02-26 10:48:50.308 1000 FEE 439038 18231 6070808 2024-02-26 10:48:50.308 2024-02-26 10:48:50.308 9000 TIP 439038 21395 6070817 2024-02-26 10:53:34.867 2024-02-26 10:53:34.867 1000 POLL 438794 21091 6070855 2024-02-26 10:59:44.889 2024-02-26 10:59:44.889 210000 FEE 439080 5171 6070860 2024-02-26 11:00:45.703 2024-02-26 11:00:45.703 1600 FEE 439080 15843 6070861 2024-02-26 11:00:45.703 2024-02-26 11:00:45.703 14400 TIP 439080 1120 6070882 2024-02-26 11:08:38.627 2024-02-26 11:08:38.627 1000 FEE 438915 11527 6070883 2024-02-26 11:08:38.627 2024-02-26 11:08:38.627 9000 TIP 438915 20970 6070887 2024-02-26 11:10:07.16 2024-02-26 11:10:07.16 11100 FEE 439088 630 6069728 2024-02-26 06:16:04.866 2024-02-26 06:16:04.866 1000 STREAM 141924 642 6069730 2024-02-26 06:17:04.87 2024-02-26 06:17:04.87 1000 STREAM 141924 10490 6069744 2024-02-26 06:24:02.887 2024-02-26 06:24:02.887 1000 STREAM 141924 14080 6069752 2024-02-26 06:29:02.886 2024-02-26 06:29:02.886 1000 STREAM 141924 1773 6069753 2024-02-26 06:30:02.916 2024-02-26 06:30:02.916 1000 STREAM 141924 16667 6069754 2024-02-26 06:31:02.913 2024-02-26 06:31:02.913 1000 STREAM 141924 2844 6069755 2024-02-26 06:32:02.931 2024-02-26 06:32:02.931 1000 STREAM 141924 9418 6069756 2024-02-26 06:33:02.943 2024-02-26 06:33:02.943 1000 STREAM 141924 6393 6069761 2024-02-26 06:35:02.963 2024-02-26 06:35:02.963 1000 STREAM 141924 5057 6069762 2024-02-26 06:36:02.982 2024-02-26 06:36:02.982 1000 STREAM 141924 15577 6069765 2024-02-26 06:37:02.991 2024-02-26 06:37:02.991 1000 STREAM 141924 17316 6069769 2024-02-26 06:38:02.986 2024-02-26 06:38:02.986 1000 STREAM 141924 18314 6069776 2024-02-26 06:41:03.02 2024-02-26 06:41:03.02 1000 STREAM 141924 21588 6069780 2024-02-26 06:43:03.03 2024-02-26 06:43:03.03 1000 STREAM 141924 8729 6069781 2024-02-26 06:44:03.03 2024-02-26 06:44:03.03 1000 STREAM 141924 20436 6069782 2024-02-26 06:45:03.032 2024-02-26 06:45:03.032 1000 STREAM 141924 15488 6069784 2024-02-26 06:46:03.129 2024-02-26 06:46:03.129 1000 STREAM 141924 8729 6069786 2024-02-26 06:47:03.142 2024-02-26 06:47:03.142 1000 STREAM 141924 1319 6069792 2024-02-26 06:49:03.146 2024-02-26 06:49:03.146 1000 STREAM 141924 16350 6069802 2024-02-26 06:53:03.161 2024-02-26 06:53:03.161 1000 STREAM 141924 2459 6069803 2024-02-26 06:54:03.501 2024-02-26 06:54:03.501 1000 STREAM 141924 1881 6069804 2024-02-26 06:55:03.509 2024-02-26 06:55:03.509 1000 STREAM 141924 680 6069805 2024-02-26 06:56:03.517 2024-02-26 06:56:03.517 1000 STREAM 141924 1162 6069806 2024-02-26 06:57:03.511 2024-02-26 06:57:03.511 1000 STREAM 141924 2338 6069731 2024-02-26 06:18:02.351 2024-02-26 06:18:02.351 1000 STREAM 141924 2952 6069732 2024-02-26 06:19:02.317 2024-02-26 06:19:02.317 1000 STREAM 141924 21395 6069733 2024-02-26 06:20:02.361 2024-02-26 06:20:02.361 1000 STREAM 141924 5746 6069922 2024-02-26 07:35:02.781 2024-02-26 07:35:02.781 1000 STREAM 141924 7682 6069943 2024-02-26 07:39:02.803 2024-02-26 07:39:02.803 1000 STREAM 141924 21416 6069951 2024-02-26 07:40:02.845 2024-02-26 07:40:02.845 1000 STREAM 141924 795 6069957 2024-02-26 07:41:02.829 2024-02-26 07:41:02.829 1000 STREAM 141924 19813 6069961 2024-02-26 07:42:02.854 2024-02-26 07:42:02.854 1000 STREAM 141924 706 6069968 2024-02-26 07:43:02.863 2024-02-26 07:43:02.863 1000 STREAM 141924 3456 6069983 2024-02-26 07:45:02.853 2024-02-26 07:45:02.853 1000 STREAM 141924 20018 6069994 2024-02-26 07:47:02.872 2024-02-26 07:47:02.872 1000 STREAM 141924 19043 6070024 2024-02-26 07:55:02.908 2024-02-26 07:55:02.908 1000 STREAM 141924 15337 6070029 2024-02-26 07:56:02.915 2024-02-26 07:56:02.915 1000 STREAM 141924 20646 6070030 2024-02-26 07:57:02.924 2024-02-26 07:57:02.924 1000 STREAM 141924 687 6070032 2024-02-26 07:59:02.927 2024-02-26 07:59:02.927 1000 STREAM 141924 6777 6070033 2024-02-26 08:00:02.976 2024-02-26 08:00:02.976 1000 STREAM 141924 770 6069734 2024-02-26 06:21:02.325 2024-02-26 06:21:02.325 1000 STREAM 141924 20606 6069735 2024-02-26 06:22:05.668 2024-02-26 06:22:05.668 1000 STREAM 141924 1209 6069736 2024-02-26 06:23:05.653 2024-02-26 06:23:05.653 1000 STREAM 141924 18452 6069757 2024-02-26 06:34:05.772 2024-02-26 06:34:05.772 1000 STREAM 141924 14255 6069745 2024-02-26 06:25:02.87 2024-02-26 06:25:02.87 1000 STREAM 141924 11885 6069749 2024-02-26 06:26:02.873 2024-02-26 06:26:02.873 1000 STREAM 141924 17171 6069750 2024-02-26 06:27:02.873 2024-02-26 06:27:02.873 1000 STREAM 141924 997 6069751 2024-02-26 06:28:02.875 2024-02-26 06:28:02.875 1000 STREAM 141924 8133 6069774 2024-02-26 06:39:02.994 2024-02-26 06:39:02.994 1000 STREAM 141924 16505 6069775 2024-02-26 06:40:03.053 2024-02-26 06:40:03.053 1000 STREAM 141924 19132 6069778 2024-02-26 06:42:03.026 2024-02-26 06:42:03.026 1000 STREAM 141924 18828 6069789 2024-02-26 06:48:03.137 2024-02-26 06:48:03.137 1000 STREAM 141924 6160 6069794 2024-02-26 06:50:05.193 2024-02-26 06:50:05.193 1000 STREAM 141924 20291 6069797 2024-02-26 06:51:03.161 2024-02-26 06:51:03.161 1000 STREAM 141924 13753 6069801 2024-02-26 06:52:03.16 2024-02-26 06:52:03.16 1000 STREAM 141924 3400 6069809 2024-02-26 06:58:03.52 2024-02-26 06:58:03.52 1000 STREAM 141924 9551 6069851 2024-02-26 07:20:03.482 2024-02-26 07:20:03.482 1000 STREAM 141924 19992 6069882 2024-02-26 07:22:03.488 2024-02-26 07:22:03.488 1000 STREAM 141924 1723 6069897 2024-02-26 07:28:03.485 2024-02-26 07:28:03.485 1000 STREAM 141924 21194 6069811 2024-02-26 06:59:03.598 2024-02-26 06:59:03.598 1000 STREAM 141924 8416 6069812 2024-02-26 07:00:03.636 2024-02-26 07:00:03.636 1000 STREAM 141924 14785 6069818 2024-02-26 07:02:03.631 2024-02-26 07:02:03.631 1000 STREAM 141924 10007 6069836 2024-02-26 07:10:03.66 2024-02-26 07:10:03.66 1000 STREAM 141924 21457 6069837 2024-02-26 07:11:03.655 2024-02-26 07:11:03.655 1000 STREAM 141924 11873 6069838 2024-02-26 07:12:03.676 2024-02-26 07:12:03.676 1000 STREAM 141924 697 6069841 2024-02-26 07:13:03.66 2024-02-26 07:13:03.66 1000 STREAM 141924 20841 6069817 2024-02-26 07:01:03.774 2024-02-26 07:01:03.774 1000 STREAM 141924 9354 6069819 2024-02-26 07:03:03.637 2024-02-26 07:03:03.637 1000 STREAM 141924 16867 6069821 2024-02-26 07:04:03.631 2024-02-26 07:04:03.631 1000 STREAM 141924 13076 6069822 2024-02-26 07:05:03.656 2024-02-26 07:05:03.656 1000 STREAM 141924 17221 6069823 2024-02-26 07:06:03.653 2024-02-26 07:06:03.653 1000 STREAM 141924 8726 6069826 2024-02-26 07:07:03.656 2024-02-26 07:07:03.656 1000 STREAM 141924 11621 6069829 2024-02-26 07:08:03.66 2024-02-26 07:08:03.66 1000 STREAM 141924 16848 6069834 2024-02-26 07:09:03.667 2024-02-26 07:09:03.667 1000 STREAM 141924 16680 6069842 2024-02-26 07:14:03.679 2024-02-26 07:14:03.679 1000 STREAM 141924 2361 6069843 2024-02-26 07:15:03.417 2024-02-26 07:15:03.417 1000 STREAM 141924 20231 6069845 2024-02-26 07:16:03.426 2024-02-26 07:16:03.426 1000 STREAM 141924 5708 6069847 2024-02-26 07:17:03.445 2024-02-26 07:17:03.445 1000 STREAM 141924 2508 6069849 2024-02-26 07:18:03.453 2024-02-26 07:18:03.453 1000 STREAM 141924 16193 6069850 2024-02-26 07:19:03.46 2024-02-26 07:19:03.46 1000 STREAM 141924 19566 6069857 2024-02-26 07:21:03.471 2024-02-26 07:21:03.471 1000 STREAM 141924 8508 6069884 2024-02-26 07:23:03.491 2024-02-26 07:23:03.491 1000 STREAM 141924 2196 6069886 2024-02-26 07:24:03.471 2024-02-26 07:24:03.471 1000 STREAM 141924 20554 6069887 2024-02-26 07:25:03.488 2024-02-26 07:25:03.488 1000 STREAM 141924 13204 6069889 2024-02-26 07:26:03.483 2024-02-26 07:26:03.483 1000 STREAM 141924 9551 6069896 2024-02-26 07:27:03.49 2024-02-26 07:27:03.49 1000 STREAM 141924 12516 6069898 2024-02-26 07:29:03.501 2024-02-26 07:29:03.501 1000 STREAM 141924 19286 6069899 2024-02-26 07:30:03.514 2024-02-26 07:30:03.514 1000 STREAM 141924 12169 6070104 2024-02-26 08:15:04.015 2024-02-26 08:15:04.015 1000 STREAM 141924 10698 6070106 2024-02-26 08:16:04.018 2024-02-26 08:16:04.018 1000 STREAM 141924 5779 6070115 2024-02-26 08:18:04.047 2024-02-26 08:18:04.047 1000 STREAM 141924 4521 6070117 2024-02-26 08:19:04.073 2024-02-26 08:19:04.073 1000 STREAM 141924 15463 6070120 2024-02-26 08:20:04.099 2024-02-26 08:20:04.099 1000 STREAM 141924 14381 6070121 2024-02-26 08:21:04.062 2024-02-26 08:21:04.062 1000 STREAM 141924 20080 6070123 2024-02-26 08:23:04.077 2024-02-26 08:23:04.077 1000 STREAM 141924 17184 6070124 2024-02-26 08:24:04.087 2024-02-26 08:24:04.087 1000 STREAM 141924 795 6070125 2024-02-26 08:25:04.085 2024-02-26 08:25:04.085 1000 STREAM 141924 5036 6070126 2024-02-26 08:26:04.093 2024-02-26 08:26:04.093 1000 STREAM 141924 8168 6070146 2024-02-26 08:34:04.137 2024-02-26 08:34:04.137 1000 STREAM 141924 21269 6070149 2024-02-26 08:35:04.14 2024-02-26 08:35:04.14 1000 STREAM 141924 19929 6070152 2024-02-26 08:36:04.148 2024-02-26 08:36:04.148 1000 STREAM 141924 6798 6070162 2024-02-26 08:38:04.154 2024-02-26 08:38:04.154 1000 STREAM 141924 18743 6069890 2024-02-26 07:26:14.493 2024-02-26 07:26:14.493 1000 FEE 438202 21389 6069891 2024-02-26 07:26:14.493 2024-02-26 07:26:14.493 9000 TIP 438202 1272 6069892 2024-02-26 07:26:22.828 2024-02-26 07:26:22.828 10000 FEE 438933 11609 6069893 2024-02-26 07:26:22.828 2024-02-26 07:26:22.828 90000 TIP 438933 19952 6069904 2024-02-26 07:31:51.623 2024-02-26 07:31:51.623 125000 FEE 438938 15180 6069910 2024-02-26 07:33:06.982 2024-02-26 07:33:06.982 100 FEE 415714 7989 6069911 2024-02-26 07:33:06.982 2024-02-26 07:33:06.982 900 TIP 415714 1751 6070013 2024-02-26 07:52:15.392 2024-02-26 07:52:15.392 2100 FEE 438931 19153 6070014 2024-02-26 07:52:15.392 2024-02-26 07:52:15.392 18900 TIP 438931 10549 6070025 2024-02-26 07:55:33.489 2024-02-26 07:55:33.489 1000 FEE 438649 981 6070026 2024-02-26 07:55:33.489 2024-02-26 07:55:33.489 9000 TIP 438649 16950 6070044 2024-02-26 08:01:55.236 2024-02-26 08:01:55.236 1000 FEE 438969 19664 6070053 2024-02-26 08:02:43.606 2024-02-26 08:02:43.606 1000 FEE 438971 2710 6070089 2024-02-26 08:12:33.061 2024-02-26 08:12:33.061 1000 FEE 438977 17568 6070094 2024-02-26 08:12:38.166 2024-02-26 08:12:38.166 100 FEE 438947 21422 6070095 2024-02-26 08:12:38.166 2024-02-26 08:12:38.166 900 TIP 438947 9347 6070096 2024-02-26 08:12:38.499 2024-02-26 08:12:38.499 100 FEE 438947 15521 6070097 2024-02-26 08:12:38.499 2024-02-26 08:12:38.499 900 TIP 438947 11443 6070105 2024-02-26 08:15:09.097 2024-02-26 08:15:09.097 0 FEE 438978 6136 6070130 2024-02-26 08:28:57.462 2024-02-26 08:28:57.462 1000 POLL 438202 17011 6070137 2024-02-26 08:32:39.162 2024-02-26 08:32:39.162 2100 FEE 438973 21588 6070138 2024-02-26 08:32:39.162 2024-02-26 08:32:39.162 18900 TIP 438973 8380 6070150 2024-02-26 08:35:04.615 2024-02-26 08:35:04.615 2100 FEE 438971 13169 6070151 2024-02-26 08:35:04.615 2024-02-26 08:35:04.615 18900 TIP 438971 18310 6070163 2024-02-26 08:38:37.79 2024-02-26 08:38:37.79 1600 FEE 438861 21588 6070164 2024-02-26 08:38:37.79 2024-02-26 08:38:37.79 14400 TIP 438861 19471 6070187 2024-02-26 08:46:53.177 2024-02-26 08:46:53.177 1600 FEE 438946 19839 6070188 2024-02-26 08:46:53.177 2024-02-26 08:46:53.177 14400 TIP 438946 1135 6070229 2024-02-26 09:01:08.33 2024-02-26 09:01:08.33 1000 FEE 438956 16289 6070230 2024-02-26 09:01:08.33 2024-02-26 09:01:08.33 9000 TIP 438956 16942 6070264 2024-02-26 09:17:23.563 2024-02-26 09:17:23.563 0 FEE 438993 19690 6070269 2024-02-26 09:19:39.021 2024-02-26 09:19:39.021 0 FEE 438993 4225 6070274 2024-02-26 09:22:05.672 2024-02-26 09:22:05.672 0 FEE 438995 9342 6070284 2024-02-26 09:27:15.402 2024-02-26 09:27:15.402 1000 FEE 438998 20099 6070302 2024-02-26 09:33:44.722 2024-02-26 09:33:44.722 900 FEE 438993 17976 6070303 2024-02-26 09:33:44.722 2024-02-26 09:33:44.722 8100 TIP 438993 15732 6070319 2024-02-26 09:35:25.331 2024-02-26 09:35:25.331 21000 FEE 439002 19996 6070336 2024-02-26 09:39:41.545 2024-02-26 09:39:41.545 1000 FEE 437453 2514 6070337 2024-02-26 09:39:41.545 2024-02-26 09:39:41.545 9000 TIP 437453 2502 6070348 2024-02-26 09:43:29.799 2024-02-26 09:43:29.799 1000 FEE 439007 16638 6070354 2024-02-26 09:45:10.573 2024-02-26 09:45:10.573 1000 FEE 438583 18660 6070355 2024-02-26 09:45:10.573 2024-02-26 09:45:10.573 9000 TIP 438583 712 6070356 2024-02-26 09:45:11.354 2024-02-26 09:45:11.354 1000 FEE 438414 7847 6070357 2024-02-26 09:45:11.354 2024-02-26 09:45:11.354 9000 TIP 438414 17217 6070358 2024-02-26 09:45:14.066 2024-02-26 09:45:14.066 1000 FEE 438451 18608 6070359 2024-02-26 09:45:14.066 2024-02-26 09:45:14.066 9000 TIP 438451 18423 6070364 2024-02-26 09:45:17.87 2024-02-26 09:45:17.87 1000 FEE 438737 19570 6070365 2024-02-26 09:45:17.87 2024-02-26 09:45:17.87 9000 TIP 438737 19259 6070369 2024-02-26 09:45:21.36 2024-02-26 09:45:21.36 1000 FEE 438605 18518 6070370 2024-02-26 09:45:21.36 2024-02-26 09:45:21.36 9000 TIP 438605 20433 6070379 2024-02-26 09:45:24.16 2024-02-26 09:45:24.16 1000 FEE 438209 20430 6070380 2024-02-26 09:45:24.16 2024-02-26 09:45:24.16 9000 TIP 438209 19148 6070390 2024-02-26 09:45:34.599 2024-02-26 09:45:34.599 1000 FEE 438754 4173 6070391 2024-02-26 09:45:34.599 2024-02-26 09:45:34.599 9000 TIP 438754 18068 6070403 2024-02-26 09:46:05.535 2024-02-26 09:46:05.535 1000 FEE 438469 19121 6070404 2024-02-26 09:46:05.535 2024-02-26 09:46:05.535 9000 TIP 438469 16097 6070415 2024-02-26 09:46:21.536 2024-02-26 09:46:21.536 1000 FEE 438953 17710 6070416 2024-02-26 09:46:21.536 2024-02-26 09:46:21.536 9000 TIP 438953 15060 6070431 2024-02-26 09:46:29.128 2024-02-26 09:46:29.128 1000 FEE 438942 19043 6070432 2024-02-26 09:46:29.128 2024-02-26 09:46:29.128 9000 TIP 438942 20660 6070433 2024-02-26 09:46:29.756 2024-02-26 09:46:29.756 1000 FEE 438864 17392 6070434 2024-02-26 09:46:29.756 2024-02-26 09:46:29.756 9000 TIP 438864 19557 6070435 2024-02-26 09:46:30.482 2024-02-26 09:46:30.482 1000 FEE 438858 1478 6070436 2024-02-26 09:46:30.482 2024-02-26 09:46:30.482 9000 TIP 438858 19462 6070444 2024-02-26 09:47:03.94 2024-02-26 09:47:03.94 1000 FEE 438270 20683 6070445 2024-02-26 09:47:03.94 2024-02-26 09:47:03.94 9000 TIP 438270 21242 6070486 2024-02-26 09:47:58.845 2024-02-26 09:47:58.845 1000 FEE 438566 889 6070487 2024-02-26 09:47:58.845 2024-02-26 09:47:58.845 9000 TIP 438566 1195 6070488 2024-02-26 09:48:00.339 2024-02-26 09:48:00.339 1000 FEE 438481 15326 6070489 2024-02-26 09:48:00.339 2024-02-26 09:48:00.339 9000 TIP 438481 16876 6070491 2024-02-26 09:48:03.164 2024-02-26 09:48:03.164 1000 FEE 438496 16842 6070492 2024-02-26 09:48:03.164 2024-02-26 09:48:03.164 9000 TIP 438496 1772 6070527 2024-02-26 09:54:36.398 2024-02-26 09:54:36.398 1000 FEE 439015 10469 6070528 2024-02-26 09:54:36.398 2024-02-26 09:54:36.398 9000 TIP 439015 8505 6070536 2024-02-26 09:55:57.414 2024-02-26 09:55:57.414 1000 FEE 439018 12959 6070551 2024-02-26 09:58:35.691 2024-02-26 09:58:35.691 100 FEE 439009 7978 6070552 2024-02-26 09:58:35.691 2024-02-26 09:58:35.691 900 TIP 439009 1273 6070584 2024-02-26 10:01:48.058 2024-02-26 10:01:48.058 2500 FEE 438908 20560 6070585 2024-02-26 10:01:48.058 2024-02-26 10:01:48.058 22500 TIP 438908 2722 6070610 2024-02-26 10:07:51.805 2024-02-26 10:07:51.805 1000 FEE 439032 811 6070630 2024-02-26 10:09:56.677 2024-02-26 10:09:56.677 1000 FEE 439036 7185 6070649 2024-02-26 10:12:36.833 2024-02-26 10:12:36.833 4000 FEE 439026 2459 6070650 2024-02-26 10:12:36.833 2024-02-26 10:12:36.833 36000 TIP 439026 8004 6069902 2024-02-26 07:31:02.439 2024-02-26 07:31:02.439 1000 STREAM 141924 18476 6069905 2024-02-26 07:32:02.435 2024-02-26 07:32:02.435 1000 STREAM 141924 1609 6069909 2024-02-26 07:33:02.448 2024-02-26 07:33:02.448 1000 STREAM 141924 20464 6069919 2024-02-26 07:34:02.461 2024-02-26 07:34:02.461 1000 STREAM 141924 9159 6069921 2024-02-26 07:34:42.947 2024-02-26 07:34:42.947 1000 FEE 438943 9341 6069932 2024-02-26 07:36:50.571 2024-02-26 07:36:50.571 69000 FEE 438946 14169 6069941 2024-02-26 07:38:39.628 2024-02-26 07:38:39.628 1000 FEE 438949 992 6070010 2024-02-26 07:51:39.011 2024-02-26 07:51:39.011 2100 FEE 438940 1602 6070011 2024-02-26 07:51:39.011 2024-02-26 07:51:39.011 18900 TIP 438940 19506 6070048 2024-02-26 08:02:03.159 2024-02-26 08:02:03.159 100000 FEE 438970 14818 6070058 2024-02-26 08:03:24.82 2024-02-26 08:03:24.82 5000 FEE 438546 18507 6070059 2024-02-26 08:03:24.82 2024-02-26 08:03:24.82 45000 TIP 438546 1291 6070075 2024-02-26 08:07:58.379 2024-02-26 08:07:58.379 2500 FEE 438794 20080 6070076 2024-02-26 08:07:58.379 2024-02-26 08:07:58.379 22500 TIP 438794 18138 6070147 2024-02-26 08:34:43.477 2024-02-26 08:34:43.477 1600 FEE 438877 20514 6070148 2024-02-26 08:34:43.477 2024-02-26 08:34:43.477 14400 TIP 438877 18468 6070153 2024-02-26 08:36:08.036 2024-02-26 08:36:08.036 1000 FEE 438983 649 6070200 2024-02-26 08:53:08.123 2024-02-26 08:53:08.123 1000 POLL 438414 5701 6070212 2024-02-26 08:57:27.737 2024-02-26 08:57:27.737 100 FEE 438975 3478 6070213 2024-02-26 08:57:27.737 2024-02-26 08:57:27.737 900 TIP 438975 17218 6070221 2024-02-26 08:58:38.211 2024-02-26 08:58:38.211 100 FEE 438985 15408 6070222 2024-02-26 08:58:38.211 2024-02-26 08:58:38.211 900 TIP 438985 1567 6070256 2024-02-26 09:15:12.15 2024-02-26 09:15:12.15 1000 FEE 438827 667 6070257 2024-02-26 09:15:12.15 2024-02-26 09:15:12.15 9000 TIP 438827 7185 6070261 2024-02-26 09:16:44.359 2024-02-26 09:16:44.359 0 FEE 438993 18040 6070265 2024-02-26 09:17:41.724 2024-02-26 09:17:41.724 1000 FEE 438946 1307 6070266 2024-02-26 09:17:41.724 2024-02-26 09:17:41.724 9000 TIP 438946 2322 6070289 2024-02-26 09:28:52.093 2024-02-26 09:28:52.093 2100 FEE 438649 21012 6070290 2024-02-26 09:28:52.093 2024-02-26 09:28:52.093 18900 TIP 438649 13399 6070291 2024-02-26 09:29:00.078 2024-02-26 09:29:00.078 3000 FEE 438983 20701 6070292 2024-02-26 09:29:00.078 2024-02-26 09:29:00.078 27000 TIP 438983 11590 6070320 2024-02-26 09:36:02.533 2024-02-26 09:36:02.533 1000 FEE 439003 671 6070332 2024-02-26 09:38:53.455 2024-02-26 09:38:53.455 1000 FEE 439004 17221 6070344 2024-02-26 09:42:10.013 2024-02-26 09:42:10.013 1000 FEE 439006 20258 6070366 2024-02-26 09:45:19.017 2024-02-26 09:45:19.017 0 FEE 439009 20963 6070375 2024-02-26 09:45:23.348 2024-02-26 09:45:23.348 1000 FEE 438758 16329 6070376 2024-02-26 09:45:23.348 2024-02-26 09:45:23.348 9000 TIP 438758 12483 6070441 2024-02-26 09:47:02.648 2024-02-26 09:47:02.648 1000 FEE 438264 1723 6070442 2024-02-26 09:47:02.648 2024-02-26 09:47:02.648 9000 TIP 438264 1970 6070446 2024-02-26 09:47:05.174 2024-02-26 09:47:05.174 1000 FEE 438285 1745 6070447 2024-02-26 09:47:05.174 2024-02-26 09:47:05.174 9000 TIP 438285 19031 6070464 2024-02-26 09:47:20.89 2024-02-26 09:47:20.89 1000 FEE 438221 706 6070465 2024-02-26 09:47:20.89 2024-02-26 09:47:20.89 9000 TIP 438221 807 6070470 2024-02-26 09:47:34.515 2024-02-26 09:47:34.515 1000 FEE 64302 1959 6070471 2024-02-26 09:47:34.515 2024-02-26 09:47:34.515 9000 TIP 64302 11192 6070482 2024-02-26 09:47:56.91 2024-02-26 09:47:56.91 1000 FEE 438665 7773 6070483 2024-02-26 09:47:56.91 2024-02-26 09:47:56.91 9000 TIP 438665 636 6070502 2024-02-26 09:50:42.975 2024-02-26 09:50:42.975 1000 FEE 439011 9078 6070503 2024-02-26 09:50:42.975 2024-02-26 09:50:42.975 9000 TIP 439011 20980 6070505 2024-02-26 09:51:08.421 2024-02-26 09:51:08.421 0 FEE 439007 8796 6070526 2024-02-26 09:54:29.252 2024-02-26 09:54:29.252 1000 FEE 439017 1465 6070534 2024-02-26 09:55:08.417 2024-02-26 09:55:08.417 10000 FEE 438451 1483 6070535 2024-02-26 09:55:08.417 2024-02-26 09:55:08.417 90000 TIP 438451 17570 6070537 2024-02-26 09:56:00.447 2024-02-26 09:56:00.447 1000 FEE 439019 15833 6070545 2024-02-26 09:58:10.215 2024-02-26 09:58:10.215 100 FEE 438993 11992 6070546 2024-02-26 09:58:10.215 2024-02-26 09:58:10.215 900 TIP 438993 624 6070568 2024-02-26 09:59:54.231 2024-02-26 09:59:54.231 100 FEE 438936 1000 6070569 2024-02-26 09:59:54.231 2024-02-26 09:59:54.231 900 TIP 438936 12278 6070575 2024-02-26 10:00:04.54 2024-02-26 10:00:04.54 100000 FEE 439022 13398 6070581 2024-02-26 10:01:30.738 2024-02-26 10:01:30.738 1000 FEE 439025 10270 6070582 2024-02-26 10:01:44.727 2024-02-26 10:01:44.727 2500 FEE 438897 13927 6070583 2024-02-26 10:01:44.727 2024-02-26 10:01:44.727 22500 TIP 438897 20090 6070593 2024-02-26 10:03:30.458 2024-02-26 10:03:30.458 2500 FEE 438106 16950 6070594 2024-02-26 10:03:30.458 2024-02-26 10:03:30.458 22500 TIP 438106 20376 6070598 2024-02-26 10:04:36.225 2024-02-26 10:04:36.225 1000 DONT_LIKE_THIS 438973 19557 6070604 2024-02-26 10:06:28.359 2024-02-26 10:06:28.359 120000 FEE 439029 19826 6070615 2024-02-26 10:08:18.868 2024-02-26 10:08:18.868 1000 FEE 439034 9476 6070628 2024-02-26 10:09:46.701 2024-02-26 10:09:46.701 1000 FEE 439034 7553 6070629 2024-02-26 10:09:46.701 2024-02-26 10:09:46.701 9000 TIP 439034 18368 6070669 2024-02-26 10:15:17.375 2024-02-26 10:15:17.375 1000 FEE 439042 20370 6070674 2024-02-26 10:15:20.674 2024-02-26 10:15:20.674 2100 FEE 439000 14552 6070675 2024-02-26 10:15:20.674 2024-02-26 10:15:20.674 18900 TIP 439000 654 6070690 2024-02-26 10:17:44.055 2024-02-26 10:17:44.055 10000 FEE 439045 9450 6070725 2024-02-26 10:28:58.144 2024-02-26 10:28:58.144 0 FEE 439053 19378 6070756 2024-02-26 10:37:51.897 2024-02-26 10:37:51.897 2800 FEE 438596 15549 6070757 2024-02-26 10:37:51.897 2024-02-26 10:37:51.897 25200 TIP 438596 20246 6070762 2024-02-26 10:38:23.778 2024-02-26 10:38:23.778 1000 FEE 439036 16355 6070763 2024-02-26 10:38:23.778 2024-02-26 10:38:23.778 9000 TIP 439036 21451 6070818 2024-02-26 10:53:42.392 2024-02-26 10:53:42.392 100 FEE 438983 19759 6070819 2024-02-26 10:53:42.392 2024-02-26 10:53:42.392 900 TIP 438983 18618 6070833 2024-02-26 10:56:04.518 2024-02-26 10:56:04.518 100 FEE 438933 17519 6070834 2024-02-26 10:56:04.518 2024-02-26 10:56:04.518 900 TIP 438933 9418 6070838 2024-02-26 10:57:06.665 2024-02-26 10:57:06.665 1000 FEE 439079 21620 6070843 2024-02-26 10:57:44.093 2024-02-26 10:57:44.093 1000 FEE 438092 12965 6070844 2024-02-26 10:57:44.093 2024-02-26 10:57:44.093 9000 TIP 438092 652 6070849 2024-02-26 10:57:45.824 2024-02-26 10:57:45.824 1000 FEE 438092 20163 6070850 2024-02-26 10:57:45.824 2024-02-26 10:57:45.824 9000 TIP 438092 16154 6070863 2024-02-26 11:02:01.168 2024-02-26 11:02:01.168 1000 FEE 439085 12808 6070879 2024-02-26 11:07:27.124 2024-02-26 11:07:27.124 1000 FEE 439089 20511 6070880 2024-02-26 11:07:39.336 2024-02-26 11:07:39.336 1000 FEE 439090 9816 6070933 2024-02-26 11:20:26.822 2024-02-26 11:20:26.822 0 FEE 439096 20710 6070940 2024-02-26 11:21:04.585 2024-02-26 11:21:04.585 100 FEE 438970 4083 6070941 2024-02-26 11:21:04.585 2024-02-26 11:21:04.585 900 TIP 438970 8926 6070944 2024-02-26 11:21:05.46 2024-02-26 11:21:05.46 100 FEE 438970 16424 6070945 2024-02-26 11:21:05.46 2024-02-26 11:21:05.46 900 TIP 438970 8242 6070956 2024-02-26 11:21:11.375 2024-02-26 11:21:11.375 100 FEE 438970 15052 6070957 2024-02-26 11:21:11.375 2024-02-26 11:21:11.375 900 TIP 438970 21481 6070982 2024-02-26 11:21:23.943 2024-02-26 11:21:23.943 100 FEE 438970 21417 6070983 2024-02-26 11:21:23.943 2024-02-26 11:21:23.943 900 TIP 438970 19668 6070990 2024-02-26 11:21:28.141 2024-02-26 11:21:28.141 100 FEE 439068 794 6070991 2024-02-26 11:21:28.141 2024-02-26 11:21:28.141 900 TIP 439068 12334 6070999 2024-02-26 11:23:15.331 2024-02-26 11:23:15.331 0 FEE 439101 21514 6071036 2024-02-26 11:26:43.862 2024-02-26 11:26:43.862 0 FEE 439101 9969 6071045 2024-02-26 11:28:53.026 2024-02-26 11:28:53.026 0 FEE 439109 4763 6071046 2024-02-26 11:28:59.905 2024-02-26 11:28:59.905 1000 FEE 438929 13798 6071047 2024-02-26 11:28:59.905 2024-02-26 11:28:59.905 9000 TIP 438929 1713 6071064 2024-02-26 11:31:17.282 2024-02-26 11:31:17.282 1000 FEE 438746 21395 6069930 2024-02-26 07:36:02.785 2024-02-26 07:36:02.785 1000 STREAM 141924 17094 6069933 2024-02-26 07:37:02.787 2024-02-26 07:37:02.787 1000 STREAM 141924 1006 6069940 2024-02-26 07:38:02.785 2024-02-26 07:38:02.785 1000 STREAM 141924 1806 6069973 2024-02-26 07:44:02.852 2024-02-26 07:44:02.852 1000 STREAM 141924 1122 6069993 2024-02-26 07:46:02.863 2024-02-26 07:46:02.863 1000 STREAM 141924 2204 6069999 2024-02-26 07:48:02.894 2024-02-26 07:48:02.894 1000 STREAM 141924 7558 6070015 2024-02-26 07:53:02.893 2024-02-26 07:53:02.893 1000 STREAM 141924 20901 6070021 2024-02-26 07:54:02.902 2024-02-26 07:54:02.902 1000 STREAM 141924 19660 6070031 2024-02-26 07:58:02.93 2024-02-26 07:58:02.93 1000 STREAM 141924 4062 6070001 2024-02-26 07:49:02.834 2024-02-26 07:49:02.834 1000 STREAM 141924 11798 6070003 2024-02-26 07:50:02.84 2024-02-26 07:50:02.84 1000 STREAM 141924 11750 6070012 2024-02-26 07:52:02.847 2024-02-26 07:52:02.847 1000 STREAM 141924 17953 6070009 2024-02-26 07:51:02.854 2024-02-26 07:51:02.854 1000 STREAM 141924 18313 6070037 2024-02-26 08:01:02.956 2024-02-26 08:01:02.956 1000 STREAM 141924 1836 6070055 2024-02-26 08:03:02.966 2024-02-26 08:03:02.966 1000 STREAM 141924 20109 6070066 2024-02-26 08:05:02.985 2024-02-26 08:05:02.985 1000 STREAM 141924 18243 6070067 2024-02-26 08:06:02.992 2024-02-26 08:06:02.992 1000 STREAM 141924 19458 6070088 2024-02-26 08:12:05.066 2024-02-26 08:12:05.066 1000 STREAM 141924 5758 6070100 2024-02-26 08:13:05.06 2024-02-26 08:13:05.06 1000 STREAM 141924 21571 6070047 2024-02-26 08:02:02.953 2024-02-26 08:02:02.953 1000 STREAM 141924 6430 6070062 2024-02-26 08:04:02.977 2024-02-26 08:04:02.977 1000 STREAM 141924 20730 6070068 2024-02-26 08:07:02.998 2024-02-26 08:07:02.998 1000 STREAM 141924 9450 6070081 2024-02-26 08:09:05.028 2024-02-26 08:09:05.028 1000 STREAM 141924 16532 6070084 2024-02-26 08:10:05.049 2024-02-26 08:10:05.049 1000 STREAM 141924 18830 6070087 2024-02-26 08:11:05.052 2024-02-26 08:11:05.052 1000 STREAM 141924 19809 6070102 2024-02-26 08:14:05.089 2024-02-26 08:14:05.089 1000 STREAM 141924 19500 6070509 2024-02-26 09:52:02.087 2024-02-26 09:52:02.087 1000 STREAM 141924 787 6070523 2024-02-26 09:54:02.107 2024-02-26 09:54:02.107 1000 STREAM 141924 19638 6070539 2024-02-26 09:57:02.142 2024-02-26 09:57:02.142 1000 STREAM 141924 18351 6070578 2024-02-26 10:01:02.157 2024-02-26 10:01:02.157 1000 STREAM 141924 20881 6070613 2024-02-26 10:08:02.187 2024-02-26 10:08:02.187 1000 STREAM 141924 15063 6070693 2024-02-26 10:19:02.291 2024-02-26 10:19:02.291 1000 STREAM 141924 3506 6070695 2024-02-26 10:20:02.294 2024-02-26 10:20:02.294 1000 STREAM 141924 1489 6070698 2024-02-26 10:21:02.309 2024-02-26 10:21:02.309 1000 STREAM 141924 2347 6070701 2024-02-26 10:22:02.315 2024-02-26 10:22:02.315 1000 STREAM 141924 1425 6070709 2024-02-26 10:23:02.329 2024-02-26 10:23:02.329 1000 STREAM 141924 19322 6070710 2024-02-26 10:24:02.337 2024-02-26 10:24:02.337 1000 STREAM 141924 8506 6070716 2024-02-26 10:25:02.354 2024-02-26 10:25:02.354 1000 STREAM 141924 20182 6070719 2024-02-26 10:26:02.359 2024-02-26 10:26:02.359 1000 STREAM 141924 19809 6070721 2024-02-26 10:27:02.373 2024-02-26 10:27:02.373 1000 STREAM 141924 10273 6070726 2024-02-26 10:29:02.408 2024-02-26 10:29:02.408 1000 STREAM 141924 20776 6070727 2024-02-26 10:30:02.42 2024-02-26 10:30:02.42 1000 STREAM 141924 8570 6070736 2024-02-26 10:32:02.439 2024-02-26 10:32:02.439 1000 STREAM 141924 2101 6070739 2024-02-26 10:33:02.452 2024-02-26 10:33:02.452 1000 STREAM 141924 5761 6070749 2024-02-26 10:36:02.48 2024-02-26 10:36:02.48 1000 STREAM 141924 21612 6070767 2024-02-26 10:39:02.78 2024-02-26 10:39:02.78 1000 STREAM 141924 18525 6070773 2024-02-26 10:40:02.813 2024-02-26 10:40:02.813 1000 STREAM 141924 628 6070077 2024-02-26 08:08:03.703 2024-02-26 08:08:03.703 1000 STREAM 141924 16059 6070114 2024-02-26 08:17:04.036 2024-02-26 08:17:04.036 1000 STREAM 141924 19036 6070122 2024-02-26 08:22:02.07 2024-02-26 08:22:02.07 1000 STREAM 141924 19296 6070128 2024-02-26 08:27:04.097 2024-02-26 08:27:04.097 1000 STREAM 141924 2519 6070129 2024-02-26 08:28:04.109 2024-02-26 08:28:04.109 1000 STREAM 141924 20963 6070131 2024-02-26 08:29:04.126 2024-02-26 08:29:04.126 1000 STREAM 141924 21064 6070132 2024-02-26 08:30:04.117 2024-02-26 08:30:04.117 1000 STREAM 141924 20201 6070133 2024-02-26 08:31:04.123 2024-02-26 08:31:04.123 1000 STREAM 141924 20108 6070136 2024-02-26 08:32:04.131 2024-02-26 08:32:04.131 1000 STREAM 141924 6717 6070139 2024-02-26 08:33:04.129 2024-02-26 08:33:04.129 1000 STREAM 141924 12139 6070154 2024-02-26 08:37:04.152 2024-02-26 08:37:04.152 1000 STREAM 141924 2773 6070165 2024-02-26 08:39:03.412 2024-02-26 08:39:03.412 1000 STREAM 141924 1425 6070167 2024-02-26 08:40:03.456 2024-02-26 08:40:03.456 1000 STREAM 141924 1802 6070169 2024-02-26 08:42:03.433 2024-02-26 08:42:03.433 1000 STREAM 141924 19909 6070172 2024-02-26 08:43:03.441 2024-02-26 08:43:03.441 1000 STREAM 141924 782 6070182 2024-02-26 08:45:03.464 2024-02-26 08:45:03.464 1000 STREAM 141924 20871 6070190 2024-02-26 08:48:03.488 2024-02-26 08:48:03.488 1000 STREAM 141924 20514 6070192 2024-02-26 08:50:03.519 2024-02-26 08:50:03.519 1000 STREAM 141924 16769 6070194 2024-02-26 08:51:03.488 2024-02-26 08:51:03.488 1000 STREAM 141924 15271 6070199 2024-02-26 08:53:03.512 2024-02-26 08:53:03.512 1000 STREAM 141924 837 6070202 2024-02-26 08:54:03.54 2024-02-26 08:54:03.54 1000 STREAM 141924 15549 6070218 2024-02-26 08:58:03.581 2024-02-26 08:58:03.581 1000 STREAM 141924 5427 6070223 2024-02-26 08:59:03.599 2024-02-26 08:59:03.599 1000 STREAM 141924 5387 6070237 2024-02-26 09:03:03.658 2024-02-26 09:03:03.658 1000 STREAM 141924 20117 6070242 2024-02-26 09:04:03.655 2024-02-26 09:04:03.655 1000 STREAM 141924 730 6070250 2024-02-26 09:12:03.722 2024-02-26 09:12:03.722 1000 STREAM 141924 16660 6070252 2024-02-26 09:14:03.738 2024-02-26 09:14:03.738 1000 STREAM 141924 18511 6070255 2024-02-26 09:15:03.738 2024-02-26 09:15:03.738 1000 STREAM 141924 14905 6070262 2024-02-26 09:17:03.753 2024-02-26 09:17:03.753 1000 STREAM 141924 20464 6070267 2024-02-26 09:18:03.776 2024-02-26 09:18:03.776 1000 STREAM 141924 2010 6070270 2024-02-26 09:20:03.792 2024-02-26 09:20:03.792 1000 STREAM 141924 14152 6070272 2024-02-26 09:21:03.758 2024-02-26 09:21:03.758 1000 STREAM 141924 20326 6070278 2024-02-26 09:24:03.786 2024-02-26 09:24:03.786 1000 STREAM 141924 17030 6070279 2024-02-26 09:25:03.787 2024-02-26 09:25:03.787 1000 STREAM 141924 1628 6070282 2024-02-26 09:26:03.801 2024-02-26 09:26:03.801 1000 STREAM 141924 9450 6070283 2024-02-26 09:27:05.78 2024-02-26 09:27:05.78 1000 STREAM 141924 18897 6070287 2024-02-26 09:28:03.816 2024-02-26 09:28:03.816 1000 STREAM 141924 18909 6070293 2024-02-26 09:29:03.8 2024-02-26 09:29:03.8 1000 STREAM 141924 21603 6070318 2024-02-26 09:35:03.838 2024-02-26 09:35:03.838 1000 STREAM 141924 11430 6070328 2024-02-26 09:37:03.868 2024-02-26 09:37:03.868 1000 STREAM 141924 21051 6070333 2024-02-26 09:39:05.868 2024-02-26 09:39:05.868 1000 STREAM 141924 12278 6070339 2024-02-26 09:41:05.889 2024-02-26 09:41:05.889 1000 STREAM 141924 5499 6070350 2024-02-26 09:44:03.906 2024-02-26 09:44:03.906 1000 STREAM 141924 20045 6070353 2024-02-26 09:45:03.918 2024-02-26 09:45:03.918 1000 STREAM 141924 21026 6070402 2024-02-26 09:46:03.9 2024-02-26 09:46:03.9 1000 STREAM 141924 21472 6070493 2024-02-26 09:48:03.921 2024-02-26 09:48:03.921 1000 STREAM 141924 21042 6070168 2024-02-26 08:41:03.385 2024-02-26 08:41:03.385 1000 STREAM 141924 21228 6070177 2024-02-26 08:44:03.446 2024-02-26 08:44:03.446 1000 STREAM 141924 16704 6070189 2024-02-26 08:47:03.483 2024-02-26 08:47:03.483 1000 STREAM 141924 14688 6070191 2024-02-26 08:49:03.467 2024-02-26 08:49:03.467 1000 STREAM 141924 21263 6070195 2024-02-26 08:52:03.512 2024-02-26 08:52:03.512 1000 STREAM 141924 1733 6070207 2024-02-26 08:55:03.547 2024-02-26 08:55:03.547 1000 STREAM 141924 18945 6070210 2024-02-26 08:56:03.561 2024-02-26 08:56:03.561 1000 STREAM 141924 2204 6070211 2024-02-26 08:57:03.571 2024-02-26 08:57:03.571 1000 STREAM 141924 1825 6070224 2024-02-26 09:00:03.597 2024-02-26 09:00:03.597 1000 STREAM 141924 17014 6070228 2024-02-26 09:01:03.647 2024-02-26 09:01:03.647 1000 STREAM 141924 21599 6070233 2024-02-26 09:02:03.651 2024-02-26 09:02:03.651 1000 STREAM 141924 16052 6070243 2024-02-26 09:05:03.668 2024-02-26 09:05:03.668 1000 STREAM 141924 20523 6070244 2024-02-26 09:06:03.677 2024-02-26 09:06:03.677 1000 STREAM 141924 20973 6070245 2024-02-26 09:07:03.675 2024-02-26 09:07:03.675 1000 STREAM 141924 4574 6070246 2024-02-26 09:08:03.688 2024-02-26 09:08:03.688 1000 STREAM 141924 9336 6070247 2024-02-26 09:09:03.7 2024-02-26 09:09:03.7 1000 STREAM 141924 3392 6070248 2024-02-26 09:10:03.714 2024-02-26 09:10:03.714 1000 STREAM 141924 1136 6070249 2024-02-26 09:11:03.727 2024-02-26 09:11:03.727 1000 STREAM 141924 18892 6070251 2024-02-26 09:13:03.728 2024-02-26 09:13:03.728 1000 STREAM 141924 5759 6070260 2024-02-26 09:16:03.727 2024-02-26 09:16:03.727 1000 STREAM 141924 623 6070268 2024-02-26 09:19:03.769 2024-02-26 09:19:03.769 1000 STREAM 141924 19821 6070273 2024-02-26 09:22:03.774 2024-02-26 09:22:03.774 1000 STREAM 141924 7773 6070275 2024-02-26 09:23:03.784 2024-02-26 09:23:03.784 1000 STREAM 141924 1741 6070294 2024-02-26 09:30:03.823 2024-02-26 09:30:03.823 1000 STREAM 141924 18533 6070296 2024-02-26 09:31:03.819 2024-02-26 09:31:03.819 1000 STREAM 141924 18269 6070297 2024-02-26 09:32:03.817 2024-02-26 09:32:03.817 1000 STREAM 141924 5538 6070298 2024-02-26 09:33:03.825 2024-02-26 09:33:03.825 1000 STREAM 141924 14515 6070304 2024-02-26 09:34:03.842 2024-02-26 09:34:03.842 1000 STREAM 141924 18220 6070321 2024-02-26 09:36:03.853 2024-02-26 09:36:03.853 1000 STREAM 141924 4177 6070331 2024-02-26 09:38:03.865 2024-02-26 09:38:03.865 1000 STREAM 141924 7389 6070338 2024-02-26 09:40:03.875 2024-02-26 09:40:03.875 1000 STREAM 141924 18774 6070343 2024-02-26 09:42:03.892 2024-02-26 09:42:03.892 1000 STREAM 141924 15148 6070443 2024-02-26 09:47:03.915 2024-02-26 09:47:03.915 1000 STREAM 141924 19848 6070504 2024-02-26 09:51:03.924 2024-02-26 09:51:03.924 1000 STREAM 141924 18269 6070517 2024-02-26 09:53:03.923 2024-02-26 09:53:03.923 1000 STREAM 141924 18956 6070533 2024-02-26 09:55:03.934 2024-02-26 09:55:03.934 1000 STREAM 141924 20376 6070186 2024-02-26 08:46:04.204 2024-02-26 08:46:04.204 1000 STREAM 141924 11999 6070347 2024-02-26 09:43:04.847 2024-02-26 09:43:04.847 1000 STREAM 141924 21019 6070574 2024-02-26 10:00:03.754 2024-02-26 10:00:03.754 1000 STREAM 141924 18994 6070589 2024-02-26 10:03:03.72 2024-02-26 10:03:03.72 1000 STREAM 141924 1003 6070602 2024-02-26 10:05:03.744 2024-02-26 10:05:03.744 1000 STREAM 141924 16706 6070605 2024-02-26 10:07:03.778 2024-02-26 10:07:03.778 1000 STREAM 141924 620 6070639 2024-02-26 10:11:03.782 2024-02-26 10:11:03.782 1000 STREAM 141924 10728 6070655 2024-02-26 10:13:03.785 2024-02-26 10:13:03.785 1000 STREAM 141924 4173 6070401 2024-02-26 09:45:58.844 2024-02-26 09:45:58.844 9000 TIP 438469 3729 6070417 2024-02-26 09:46:23.242 2024-02-26 09:46:23.242 1000 FEE 438846 4474 6070418 2024-02-26 09:46:23.242 2024-02-26 09:46:23.242 9000 TIP 438846 17291 6070419 2024-02-26 09:46:24.05 2024-02-26 09:46:24.05 1000 FEE 438828 749 6070420 2024-02-26 09:46:24.05 2024-02-26 09:46:24.05 9000 TIP 438828 19527 6070425 2024-02-26 09:46:26.561 2024-02-26 09:46:26.561 1000 FEE 438835 659 6070426 2024-02-26 09:46:26.561 2024-02-26 09:46:26.561 9000 TIP 438835 2620 6070427 2024-02-26 09:46:27.169 2024-02-26 09:46:27.169 1000 FEE 438836 16387 6070428 2024-02-26 09:46:27.169 2024-02-26 09:46:27.169 9000 TIP 438836 6003 6070468 2024-02-26 09:47:33.246 2024-02-26 09:47:33.246 1000 FEE 64293 18543 6070469 2024-02-26 09:47:33.246 2024-02-26 09:47:33.246 9000 TIP 64293 19911 6070510 2024-02-26 09:52:24.74 2024-02-26 09:52:24.74 21000 FEE 439014 21063 6070529 2024-02-26 09:54:43.877 2024-02-26 09:54:43.877 1000 FEE 438947 20370 6070530 2024-02-26 09:54:43.877 2024-02-26 09:54:43.877 9000 TIP 438947 21386 6070531 2024-02-26 09:54:58.543 2024-02-26 09:54:58.543 100 FEE 438991 16660 6070532 2024-02-26 09:54:58.543 2024-02-26 09:54:58.543 900 TIP 438991 2513 6070547 2024-02-26 09:58:11.937 2024-02-26 09:58:11.937 100 FEE 438995 9332 6070548 2024-02-26 09:58:11.937 2024-02-26 09:58:11.937 900 TIP 438995 11430 6070591 2024-02-26 10:03:27.647 2024-02-26 10:03:27.647 2500 FEE 438522 17218 6070592 2024-02-26 10:03:27.647 2024-02-26 10:03:27.647 22500 TIP 438522 17838 6070599 2024-02-26 10:04:48.485 2024-02-26 10:04:48.485 2100 FEE 438922 889 6070600 2024-02-26 10:04:48.485 2024-02-26 10:04:48.485 18900 TIP 438922 7998 6070631 2024-02-26 10:09:59.21 2024-02-26 10:09:59.21 2100 FEE 439019 19660 6070632 2024-02-26 10:09:59.21 2024-02-26 10:09:59.21 18900 TIP 439019 16289 6070643 2024-02-26 10:11:27.82 2024-02-26 10:11:27.82 1000 FEE 439039 12220 6070645 2024-02-26 10:12:04.06 2024-02-26 10:12:04.06 100 FEE 438942 8287 6070646 2024-02-26 10:12:04.06 2024-02-26 10:12:04.06 900 TIP 438942 5661 6070651 2024-02-26 10:12:42.1 2024-02-26 10:12:42.1 100 FEE 438957 739 6070652 2024-02-26 10:12:42.1 2024-02-26 10:12:42.1 900 TIP 438957 18714 6070665 2024-02-26 10:14:35.585 2024-02-26 10:14:35.585 1000 FEE 439041 13361 6070687 2024-02-26 10:17:28.85 2024-02-26 10:17:28.85 1000 FEE 439044 17227 6070692 2024-02-26 10:18:32.533 2024-02-26 10:18:32.533 1000 FEE 439046 670 6070732 2024-02-26 10:31:01.741 2024-02-26 10:31:01.741 10000 FEE 439056 21600 6070737 2024-02-26 10:32:37.657 2024-02-26 10:32:37.657 1000 POLL 438325 17541 6070755 2024-02-26 10:37:44.096 2024-02-26 10:37:44.096 1000 FEE 439063 19842 6070782 2024-02-26 10:41:21.236 2024-02-26 10:41:21.236 2800 FEE 438922 21446 6070783 2024-02-26 10:41:21.236 2024-02-26 10:41:21.236 25200 TIP 438922 10693 6070794 2024-02-26 10:44:02.044 2024-02-26 10:44:02.044 10000 FEE 439073 647 6070812 2024-02-26 10:51:58.605 2024-02-26 10:51:58.605 2800 FEE 438991 2111 6070813 2024-02-26 10:51:58.605 2024-02-26 10:51:58.605 25200 TIP 438991 7869 6070815 2024-02-26 10:52:22.982 2024-02-26 10:52:22.982 1000 FEE 439076 10063 6070820 2024-02-26 10:54:02.273 2024-02-26 10:54:02.273 10000 FEE 438649 2206 6070821 2024-02-26 10:54:02.273 2024-02-26 10:54:02.273 90000 TIP 438649 7389 6070823 2024-02-26 10:54:06.331 2024-02-26 10:54:06.331 10000 FEE 438649 16505 6070824 2024-02-26 10:54:06.331 2024-02-26 10:54:06.331 90000 TIP 438649 848 6070835 2024-02-26 10:56:24.514 2024-02-26 10:56:24.514 1000 FEE 439077 7125 6070841 2024-02-26 10:57:43.71 2024-02-26 10:57:43.71 1000 FEE 438092 8326 6070842 2024-02-26 10:57:43.71 2024-02-26 10:57:43.71 9000 TIP 438092 19795 6070847 2024-02-26 10:57:45.06 2024-02-26 10:57:45.06 1000 FEE 438092 12819 6070848 2024-02-26 10:57:45.06 2024-02-26 10:57:45.06 9000 TIP 438092 2101 6070853 2024-02-26 10:59:42.377 2024-02-26 10:59:42.377 3200 FEE 439078 21303 6070466 2024-02-26 09:47:33.084 2024-02-26 09:47:33.084 1000 FEE 64293 5557 6070467 2024-02-26 09:47:33.084 2024-02-26 09:47:33.084 9000 TIP 64293 1602 6070478 2024-02-26 09:47:54.28 2024-02-26 09:47:54.28 1000 FEE 438283 20993 6070479 2024-02-26 09:47:54.28 2024-02-26 09:47:54.28 9000 TIP 438283 21453 6070480 2024-02-26 09:47:55.948 2024-02-26 09:47:55.948 1000 FEE 438739 19909 6070481 2024-02-26 09:47:55.948 2024-02-26 09:47:55.948 9000 TIP 438739 1003 6070500 2024-02-26 09:50:42.923 2024-02-26 09:50:42.923 1000 FEE 439011 11698 6070501 2024-02-26 09:50:42.923 2024-02-26 09:50:42.923 9000 TIP 439011 18923 6070506 2024-02-26 09:51:21.096 2024-02-26 09:51:21.096 0 FEE 439007 21131 6070543 2024-02-26 09:58:09.797 2024-02-26 09:58:09.797 100 FEE 438993 6578 6070544 2024-02-26 09:58:09.797 2024-02-26 09:58:09.797 900 TIP 438993 11590 6070564 2024-02-26 09:59:53.539 2024-02-26 09:59:53.539 100 FEE 438936 10273 6070565 2024-02-26 09:59:53.539 2024-02-26 09:59:53.539 900 TIP 438936 20837 6070570 2024-02-26 09:59:54.499 2024-02-26 09:59:54.499 100 FEE 438936 15544 6070571 2024-02-26 09:59:54.499 2024-02-26 09:59:54.499 900 TIP 438936 6164 6070618 2024-02-26 10:08:22.606 2024-02-26 10:08:22.606 1000 FEE 439035 11145 6070624 2024-02-26 10:09:33.281 2024-02-26 10:09:33.281 100 FEE 439033 20479 6070625 2024-02-26 10:09:33.281 2024-02-26 10:09:33.281 900 TIP 439033 7185 6070640 2024-02-26 10:11:05.771 2024-02-26 10:11:05.771 1000 FEE 439038 18180 6070647 2024-02-26 10:12:28.228 2024-02-26 10:12:28.228 4000 FEE 439029 20099 6070648 2024-02-26 10:12:28.228 2024-02-26 10:12:28.228 36000 TIP 439029 4763 6070654 2024-02-26 10:12:58.685 2024-02-26 10:12:58.685 1000 DONT_LIKE_THIS 438794 4083 6070660 2024-02-26 10:13:32.72 2024-02-26 10:13:32.72 4000 FEE 438922 5728 6070661 2024-02-26 10:13:32.72 2024-02-26 10:13:32.72 36000 TIP 438922 17321 6070663 2024-02-26 10:14:14.786 2024-02-26 10:14:14.786 4000 FEE 438973 14959 6070664 2024-02-26 10:14:14.786 2024-02-26 10:14:14.786 36000 TIP 438973 9330 6070682 2024-02-26 10:16:09.477 2024-02-26 10:16:09.477 10000 FEE 438599 19570 6070683 2024-02-26 10:16:09.477 2024-02-26 10:16:09.477 90000 TIP 438599 12072 6070684 2024-02-26 10:16:23.294 2024-02-26 10:16:23.294 2100 FEE 439003 5520 6070685 2024-02-26 10:16:23.294 2024-02-26 10:16:23.294 18900 TIP 439003 20619 6070696 2024-02-26 10:20:23.206 2024-02-26 10:20:23.206 0 FEE 439047 9339 6070697 2024-02-26 10:20:56.73 2024-02-26 10:20:56.73 1000 FEE 439048 658 6070700 2024-02-26 10:22:01.346 2024-02-26 10:22:01.346 15000 FEE 439050 19037 6070707 2024-02-26 10:22:57.019 2024-02-26 10:22:57.019 1100 FEE 439016 10393 6070708 2024-02-26 10:22:57.019 2024-02-26 10:22:57.019 9900 TIP 439016 664 6070717 2024-02-26 10:25:05.23 2024-02-26 10:25:05.23 2100 FEE 439049 19507 6070718 2024-02-26 10:25:05.23 2024-02-26 10:25:05.23 18900 TIP 439049 2327 6070723 2024-02-26 10:27:51.87 2024-02-26 10:27:51.87 0 FEE 439052 11240 6070734 2024-02-26 10:31:05.238 2024-02-26 10:31:05.238 2100 FEE 439055 16432 6070735 2024-02-26 10:31:05.238 2024-02-26 10:31:05.238 18900 TIP 439055 21482 6070748 2024-02-26 10:35:59.448 2024-02-26 10:35:59.448 1000 FEE 439060 634 6070494 2024-02-26 09:49:02.846 2024-02-26 09:49:02.846 1000 STREAM 141924 21466 6070495 2024-02-26 09:50:02.879 2024-02-26 09:50:02.879 1000 STREAM 141924 7425 6070538 2024-02-26 09:56:03.675 2024-02-26 09:56:03.675 1000 STREAM 141924 18745 6070541 2024-02-26 09:58:03.713 2024-02-26 09:58:03.713 1000 STREAM 141924 18235 6070623 2024-02-26 10:09:03.8 2024-02-26 10:09:03.8 1000 STREAM 141924 21201 6070681 2024-02-26 10:16:03.794 2024-02-26 10:16:03.794 1000 STREAM 141924 7746 6070760 2024-02-26 10:38:04.094 2024-02-26 10:38:04.094 1000 STREAM 141924 17827 6070555 2024-02-26 09:59:02.154 2024-02-26 09:59:02.154 1000 STREAM 141924 6430 6070588 2024-02-26 10:02:02.153 2024-02-26 10:02:02.153 1000 STREAM 141924 15536 6070595 2024-02-26 10:04:02.166 2024-02-26 10:04:02.166 1000 STREAM 141924 17707 6070603 2024-02-26 10:06:02.175 2024-02-26 10:06:02.175 1000 STREAM 141924 12708 6070633 2024-02-26 10:10:02.197 2024-02-26 10:10:02.197 1000 STREAM 141924 2711 6070644 2024-02-26 10:12:02.225 2024-02-26 10:12:02.225 1000 STREAM 141924 19156 6070662 2024-02-26 10:14:02.248 2024-02-26 10:14:02.248 1000 STREAM 141924 1122 6070668 2024-02-26 10:15:02.261 2024-02-26 10:15:02.261 1000 STREAM 141924 20183 6070686 2024-02-26 10:17:02.272 2024-02-26 10:17:02.272 1000 STREAM 141924 1195 6070691 2024-02-26 10:18:02.278 2024-02-26 10:18:02.278 1000 STREAM 141924 17455 6070724 2024-02-26 10:28:02.386 2024-02-26 10:28:02.386 1000 STREAM 141924 21139 6070733 2024-02-26 10:31:02.427 2024-02-26 10:31:02.427 1000 STREAM 141924 15941 6070740 2024-02-26 10:34:02.463 2024-02-26 10:34:02.463 1000 STREAM 141924 670 6070746 2024-02-26 10:35:02.475 2024-02-26 10:35:02.475 1000 STREAM 141924 20924 6070779 2024-02-26 10:41:02.819 2024-02-26 10:41:02.819 1000 STREAM 141924 8998 6070829 2024-02-26 10:55:02.893 2024-02-26 10:55:02.893 1000 STREAM 141924 18454 6070832 2024-02-26 10:56:02.899 2024-02-26 10:56:02.899 1000 STREAM 141924 10591 6070852 2024-02-26 10:59:02.919 2024-02-26 10:59:02.919 1000 STREAM 141924 1564 6070862 2024-02-26 11:01:02.934 2024-02-26 11:01:02.934 1000 STREAM 141924 1737 6070864 2024-02-26 11:02:02.931 2024-02-26 11:02:02.931 1000 STREAM 141924 13854 6070865 2024-02-26 11:03:02.945 2024-02-26 11:03:02.945 1000 STREAM 141924 20276 6070867 2024-02-26 11:04:02.96 2024-02-26 11:04:02.96 1000 STREAM 141924 7673 6070876 2024-02-26 11:06:03.001 2024-02-26 11:06:03.001 1000 STREAM 141924 1261 6070877 2024-02-26 11:07:02.998 2024-02-26 11:07:02.998 1000 STREAM 141924 7659 6070881 2024-02-26 11:08:03.013 2024-02-26 11:08:03.013 1000 STREAM 141924 4650 6070906 2024-02-26 11:15:03.132 2024-02-26 11:15:03.132 1000 STREAM 141924 21540 6070907 2024-02-26 11:16:03.108 2024-02-26 11:16:03.108 1000 STREAM 141924 9418 6070919 2024-02-26 11:18:03.158 2024-02-26 11:18:03.158 1000 STREAM 141924 15690 6070929 2024-02-26 11:20:03.164 2024-02-26 11:20:03.164 1000 STREAM 141924 19640 6070935 2024-02-26 11:21:03.172 2024-02-26 11:21:03.172 1000 STREAM 141924 2459 6070994 2024-02-26 11:22:03.185 2024-02-26 11:22:03.185 1000 STREAM 141924 2681 6071004 2024-02-26 11:24:03.208 2024-02-26 11:24:03.208 1000 STREAM 141924 985 6071126 2024-02-26 11:39:03.441 2024-02-26 11:39:03.441 1000 STREAM 141924 7998 6070563 2024-02-26 09:59:52.671 2024-02-26 09:59:52.671 18900 TIP 438816 11417 6070579 2024-02-26 10:01:07.254 2024-02-26 10:01:07.254 100 FEE 438999 4819 6070580 2024-02-26 10:01:07.254 2024-02-26 10:01:07.254 900 TIP 438999 17116 6070586 2024-02-26 10:01:54.018 2024-02-26 10:01:54.018 2500 FEE 438605 11075 6070587 2024-02-26 10:01:54.018 2024-02-26 10:01:54.018 22500 TIP 438605 19469 6070608 2024-02-26 10:07:29.645 2024-02-26 10:07:29.645 10000 FEE 439030 19121 6070609 2024-02-26 10:07:35.209 2024-02-26 10:07:35.209 1000 FEE 439031 14357 6070616 2024-02-26 10:08:21.526 2024-02-26 10:08:21.526 2100 FEE 439015 21067 6070617 2024-02-26 10:08:21.526 2024-02-26 10:08:21.526 18900 TIP 439015 15588 6070619 2024-02-26 10:08:26.068 2024-02-26 10:08:26.068 2800 FEE 438607 19570 6070620 2024-02-26 10:08:26.068 2024-02-26 10:08:26.068 25200 TIP 438607 20594 6070621 2024-02-26 10:08:30.357 2024-02-26 10:08:30.357 2100 FEE 439010 21269 6070622 2024-02-26 10:08:30.357 2024-02-26 10:08:30.357 18900 TIP 439010 16598 6070637 2024-02-26 10:10:59.698 2024-02-26 10:10:59.698 100 FEE 438940 2056 6070638 2024-02-26 10:10:59.698 2024-02-26 10:10:59.698 900 TIP 438940 18819 6070641 2024-02-26 10:11:16.94 2024-02-26 10:11:16.94 2100 FEE 439007 831 6070642 2024-02-26 10:11:16.94 2024-02-26 10:11:16.94 18900 TIP 439007 13587 6070676 2024-02-26 10:15:22.992 2024-02-26 10:15:22.992 2100 FEE 439021 12334 6070677 2024-02-26 10:15:22.992 2024-02-26 10:15:22.992 18900 TIP 439021 20585 6070678 2024-02-26 10:15:30.034 2024-02-26 10:15:30.034 69000 FEE 439043 18892 6070694 2024-02-26 10:19:49.129 2024-02-26 10:19:49.129 1000 FEE 439047 19637 6070705 2024-02-26 10:22:35.921 2024-02-26 10:22:35.921 1000 FEE 439050 19878 6070706 2024-02-26 10:22:35.921 2024-02-26 10:22:35.921 9000 TIP 439050 21469 6070713 2024-02-26 10:24:35.98 2024-02-26 10:24:35.98 1100 FEE 439040 1236 6070714 2024-02-26 10:24:35.98 2024-02-26 10:24:35.98 9900 TIP 439040 21481 6070750 2024-02-26 10:36:42.476 2024-02-26 10:36:42.476 2100 FEE 439058 19284 6070751 2024-02-26 10:36:42.476 2024-02-26 10:36:42.476 18900 TIP 439058 1845 6070799 2024-02-26 10:45:52.654 2024-02-26 10:45:52.654 1000 FEE 439074 1428 6070837 2024-02-26 10:57:02.983 2024-02-26 10:57:02.983 1000 FEE 439078 14939 6070871 2024-02-26 11:04:53.589 2024-02-26 11:04:53.589 0 FEE 439087 20026 6070875 2024-02-26 11:06:00.444 2024-02-26 11:06:00.444 1000 FEE 439088 18816 6070927 2024-02-26 11:19:22.046 2024-02-26 11:19:22.046 6400 FEE 439095 4259 6070928 2024-02-26 11:19:22.046 2024-02-26 11:19:22.046 57600 TIP 439095 9669 6070948 2024-02-26 11:21:06.631 2024-02-26 11:21:06.631 100 FEE 438970 17217 6070949 2024-02-26 11:21:06.631 2024-02-26 11:21:06.631 900 TIP 438970 19346 6070980 2024-02-26 11:21:23.782 2024-02-26 11:21:23.782 100 FEE 438970 738 6070981 2024-02-26 11:21:23.782 2024-02-26 11:21:23.782 900 TIP 438970 21463 6070984 2024-02-26 11:21:25.454 2024-02-26 11:21:25.454 100 FEE 438970 11798 6070985 2024-02-26 11:21:25.454 2024-02-26 11:21:25.454 900 TIP 438970 13177 6070992 2024-02-26 11:21:48.639 2024-02-26 11:21:48.639 100 FEE 438970 7760 6070993 2024-02-26 11:21:48.639 2024-02-26 11:21:48.639 900 TIP 438970 5449 6071002 2024-02-26 11:23:54.306 2024-02-26 11:23:54.306 4000 FEE 439099 1571 6071003 2024-02-26 11:23:54.306 2024-02-26 11:23:54.306 36000 TIP 439099 2123 6071014 2024-02-26 11:25:43.998 2024-02-26 11:25:43.998 100 FEE 439088 18896 6071015 2024-02-26 11:25:43.998 2024-02-26 11:25:43.998 900 TIP 439088 15266 6071017 2024-02-26 11:25:47.909 2024-02-26 11:25:47.909 100 FEE 439091 1209 6071018 2024-02-26 11:25:47.909 2024-02-26 11:25:47.909 900 TIP 439091 12139 6071019 2024-02-26 11:25:51.712 2024-02-26 11:25:51.712 1000 FEE 439105 17522 6071030 2024-02-26 11:26:17.363 2024-02-26 11:26:17.363 0 FEE 439101 15474 6071038 2024-02-26 11:27:19.688 2024-02-26 11:27:19.688 0 FEE 439101 1733 6071039 2024-02-26 11:27:54.461 2024-02-26 11:27:54.461 1000 FEE 439108 736 6071077 2024-02-26 11:32:35.492 2024-02-26 11:32:35.492 10000 FEE 439088 20036 6071078 2024-02-26 11:32:35.492 2024-02-26 11:32:35.492 90000 TIP 439088 20179 6071083 2024-02-26 11:34:12.249 2024-02-26 11:34:12.249 1000 FEE 439117 6361 6071091 2024-02-26 11:34:59.337 2024-02-26 11:34:59.337 2100 FEE 439090 2042 6071092 2024-02-26 11:34:59.337 2024-02-26 11:34:59.337 18900 TIP 439090 4831 6071099 2024-02-26 11:35:12.982 2024-02-26 11:35:12.982 1000 FEE 439119 18124 6071136 2024-02-26 11:42:37.434 2024-02-26 11:42:37.434 100 FEE 438794 18051 6071137 2024-02-26 11:42:37.434 2024-02-26 11:42:37.434 900 TIP 438794 20291 6071162 2024-02-26 11:44:35.41 2024-02-26 11:44:35.41 6900 FEE 439103 11750 6071163 2024-02-26 11:44:35.41 2024-02-26 11:44:35.41 62100 TIP 439103 1261 6071171 2024-02-26 11:45:03.861 2024-02-26 11:45:03.861 6900 FEE 438923 1493 6071172 2024-02-26 11:45:03.861 2024-02-26 11:45:03.861 62100 TIP 438923 16406 6071214 2024-02-26 11:58:37.93 2024-02-26 11:58:37.93 1000 FEE 436883 20504 6071215 2024-02-26 11:58:37.93 2024-02-26 11:58:37.93 9000 TIP 436883 21494 6071218 2024-02-26 11:58:50.582 2024-02-26 11:58:50.582 1000 FEE 436806 20340 6071219 2024-02-26 11:58:50.582 2024-02-26 11:58:50.582 9000 TIP 436806 19292 6071236 2024-02-26 12:00:04.695 2024-02-26 12:00:04.695 100000 FEE 439133 20660 6071247 2024-02-26 12:01:37.262 2024-02-26 12:01:37.262 100000 FEE 439139 16356 6071275 2024-02-26 12:04:18.655 2024-02-26 12:04:18.655 2100 FEE 439026 19770 6071276 2024-02-26 12:04:18.655 2024-02-26 12:04:18.655 18900 TIP 439026 5171 6071277 2024-02-26 12:04:30.49 2024-02-26 12:04:30.49 2100 FEE 439122 20901 6071278 2024-02-26 12:04:30.49 2024-02-26 12:04:30.49 18900 TIP 439122 2437 6071293 2024-02-26 12:04:46.395 2024-02-26 12:04:46.395 2100 FEE 439105 9276 6071294 2024-02-26 12:04:46.395 2024-02-26 12:04:46.395 18900 TIP 439105 16847 6071295 2024-02-26 12:04:50.008 2024-02-26 12:04:50.008 2100 FEE 439115 1717 6071296 2024-02-26 12:04:50.008 2024-02-26 12:04:50.008 18900 TIP 439115 16442 6071297 2024-02-26 12:04:50.049 2024-02-26 12:04:50.049 2100 FEE 439101 720 6071298 2024-02-26 12:04:50.049 2024-02-26 12:04:50.049 18900 TIP 439101 11430 6071308 2024-02-26 12:04:55.839 2024-02-26 12:04:55.839 2100 FEE 439126 19996 6071309 2024-02-26 12:04:55.839 2024-02-26 12:04:55.839 18900 TIP 439126 9339 6071312 2024-02-26 12:05:08.689 2024-02-26 12:05:08.689 1000 POLL 438202 19622 6071319 2024-02-26 12:05:11.232 2024-02-26 12:05:11.232 300 FEE 439106 15577 6071320 2024-02-26 12:05:11.232 2024-02-26 12:05:11.232 2700 TIP 439106 1751 6071337 2024-02-26 12:05:12.874 2024-02-26 12:05:12.874 300 FEE 439106 876 6071338 2024-02-26 12:05:12.874 2024-02-26 12:05:12.874 2700 TIP 439106 19533 6071341 2024-02-26 12:05:28.946 2024-02-26 12:05:28.946 100 FEE 438878 763 6071342 2024-02-26 12:05:28.946 2024-02-26 12:05:28.946 900 TIP 438878 18313 6071348 2024-02-26 12:07:04.521 2024-02-26 12:07:04.521 1000 FEE 439142 20858 6071349 2024-02-26 12:07:04.521 2024-02-26 12:07:04.521 9000 TIP 439142 8713 6071363 2024-02-26 12:11:44.903 2024-02-26 12:11:44.903 1000 FEE 439148 21343 6071370 2024-02-26 12:12:33.624 2024-02-26 12:12:33.624 1000 FEE 439150 2722 6071387 2024-02-26 12:14:49.146 2024-02-26 12:14:49.146 100 FEE 439139 17541 6071388 2024-02-26 12:14:49.146 2024-02-26 12:14:49.146 900 TIP 439139 18529 6071406 2024-02-26 12:18:29.913 2024-02-26 12:18:29.913 1000 FEE 439158 10586 6071413 2024-02-26 12:19:14.291 2024-02-26 12:19:14.291 2100 FEE 438859 627 6071414 2024-02-26 12:19:14.291 2024-02-26 12:19:14.291 18900 TIP 438859 11038 6071427 2024-02-26 12:20:26.182 2024-02-26 12:20:26.182 2100 FEE 439130 7510 6071428 2024-02-26 12:20:26.182 2024-02-26 12:20:26.182 18900 TIP 439130 13042 6071430 2024-02-26 12:21:10.476 2024-02-26 12:21:10.476 1000 FEE 439160 1720 6070656 2024-02-26 10:13:06.205 2024-02-26 10:13:06.205 2100 FEE 438995 861 6070657 2024-02-26 10:13:06.205 2024-02-26 10:13:06.205 18900 TIP 438995 18005 6070658 2024-02-26 10:13:26.464 2024-02-26 10:13:26.464 4000 FEE 438937 19021 6070659 2024-02-26 10:13:26.464 2024-02-26 10:13:26.464 36000 TIP 438937 20924 6070670 2024-02-26 10:15:18.457 2024-02-26 10:15:18.457 2100 FEE 439000 13574 6070671 2024-02-26 10:15:18.457 2024-02-26 10:15:18.457 18900 TIP 439000 2576 6070738 2024-02-26 10:32:44.128 2024-02-26 10:32:44.128 5000 FEE 439057 20267 6070741 2024-02-26 10:34:21.109 2024-02-26 10:34:21.109 500 FEE 438973 20464 6070742 2024-02-26 10:34:21.109 2024-02-26 10:34:21.109 4500 TIP 438973 16847 6070743 2024-02-26 10:34:39.426 2024-02-26 10:34:39.426 1000 FEE 439058 21424 6070765 2024-02-26 10:38:53.581 2024-02-26 10:38:53.581 2100 FEE 439060 9331 6070766 2024-02-26 10:38:53.581 2024-02-26 10:38:53.581 18900 TIP 439060 20117 6070769 2024-02-26 10:39:37.26 2024-02-26 10:39:37.26 1000 FEE 439066 722 6070788 2024-02-26 10:42:59.917 2024-02-26 10:42:59.917 2100 FEE 439071 10016 6070789 2024-02-26 10:42:59.917 2024-02-26 10:42:59.917 18900 TIP 439071 19021 6070797 2024-02-26 10:45:36.639 2024-02-26 10:45:36.639 1000 FEE 439016 20059 6070798 2024-02-26 10:45:36.639 2024-02-26 10:45:36.639 9000 TIP 439016 18008 6070827 2024-02-26 10:54:13.335 2024-02-26 10:54:13.335 10000 FEE 438649 18449 6070828 2024-02-26 10:54:13.335 2024-02-26 10:54:13.335 90000 TIP 438649 7425 6070830 2024-02-26 10:55:55.103 2024-02-26 10:55:55.103 2800 FEE 438486 19553 6070831 2024-02-26 10:55:55.103 2024-02-26 10:55:55.103 25200 TIP 438486 18727 6070885 2024-02-26 11:10:03.012 2024-02-26 11:10:03.012 1000 FEE 439091 6616 6070890 2024-02-26 11:11:10.948 2024-02-26 11:11:10.948 100 FEE 438911 5444 6070891 2024-02-26 11:11:10.948 2024-02-26 11:11:10.948 900 TIP 438911 21275 6070894 2024-02-26 11:12:09.255 2024-02-26 11:12:09.255 2100 FEE 439087 15762 6070895 2024-02-26 11:12:09.255 2024-02-26 11:12:09.255 18900 TIP 439087 21178 6070896 2024-02-26 11:12:15.371 2024-02-26 11:12:15.371 1000 FEE 439090 696 6070897 2024-02-26 11:12:15.371 2024-02-26 11:12:15.371 9000 TIP 439090 8074 6070930 2024-02-26 11:20:21.316 2024-02-26 11:20:21.316 1000 FEE 439098 1141 6070936 2024-02-26 11:21:03.229 2024-02-26 11:21:03.229 100 FEE 438970 21248 6070937 2024-02-26 11:21:03.229 2024-02-26 11:21:03.229 900 TIP 438970 1389 6070950 2024-02-26 11:21:06.828 2024-02-26 11:21:06.828 100 FEE 438970 12708 6070951 2024-02-26 11:21:06.828 2024-02-26 11:21:06.828 900 TIP 438970 14037 6070958 2024-02-26 11:21:13.175 2024-02-26 11:21:13.175 100 FEE 438970 2789 6070959 2024-02-26 11:21:13.175 2024-02-26 11:21:13.175 900 TIP 438970 18426 6070972 2024-02-26 11:21:23.096 2024-02-26 11:21:23.096 100 FEE 438970 16684 6070973 2024-02-26 11:21:23.096 2024-02-26 11:21:23.096 900 TIP 438970 19322 6071006 2024-02-26 11:24:38.322 2024-02-26 11:24:38.322 1000 FEE 439103 20280 6071009 2024-02-26 11:24:57.246 2024-02-26 11:24:57.246 100 FEE 439099 21498 6071010 2024-02-26 11:24:57.246 2024-02-26 11:24:57.246 900 TIP 439099 4064 6071012 2024-02-26 11:25:12.284 2024-02-26 11:25:12.284 1600 FEE 439098 1245 6071013 2024-02-26 11:25:12.284 2024-02-26 11:25:12.284 14400 TIP 439098 9356 6071020 2024-02-26 11:25:52.702 2024-02-26 11:25:52.702 0 FEE 439104 21600 6071026 2024-02-26 11:26:08.287 2024-02-26 11:26:08.287 0 FEE 439105 1354 6071028 2024-02-26 11:26:11.036 2024-02-26 11:26:11.036 5000 FEE 439043 20922 6071029 2024-02-26 11:26:11.036 2024-02-26 11:26:11.036 45000 TIP 439043 14080 6071048 2024-02-26 11:29:02.26 2024-02-26 11:29:02.26 1000 FEE 439111 880 6071052 2024-02-26 11:29:40.726 2024-02-26 11:29:40.726 1000 FEE 439112 18635 6071069 2024-02-26 11:31:32.375 2024-02-26 11:31:32.375 1000 FEE 439115 2640 6071070 2024-02-26 11:31:53.199 2024-02-26 11:31:53.199 2100 FEE 439098 19320 6071071 2024-02-26 11:31:53.199 2024-02-26 11:31:53.199 18900 TIP 439098 18154 6071072 2024-02-26 11:31:55.024 2024-02-26 11:31:55.024 10000 FEE 439116 20102 6071073 2024-02-26 11:31:57.165 2024-02-26 11:31:57.165 1000 FEE 439092 18180 6071074 2024-02-26 11:31:57.165 2024-02-26 11:31:57.165 9000 TIP 439092 985 6071098 2024-02-26 11:35:05.487 2024-02-26 11:35:05.487 0 FEE 439117 15239 6071100 2024-02-26 11:35:15.441 2024-02-26 11:35:15.441 1000 FEE 439120 1136 6071101 2024-02-26 11:35:20.23 2024-02-26 11:35:20.23 2100 FEE 439098 1602 6071102 2024-02-26 11:35:20.23 2024-02-26 11:35:20.23 18900 TIP 439098 2757 6071103 2024-02-26 11:35:21.551 2024-02-26 11:35:21.551 2100 FEE 439095 20180 6071104 2024-02-26 11:35:21.551 2024-02-26 11:35:21.551 18900 TIP 439095 9349 6071120 2024-02-26 11:37:08.989 2024-02-26 11:37:08.989 10000 FEE 439123 18426 6071134 2024-02-26 11:42:23.562 2024-02-26 11:42:23.562 100 FEE 438973 19777 6071135 2024-02-26 11:42:23.562 2024-02-26 11:42:23.562 900 TIP 438973 18225 6071152 2024-02-26 11:44:24.169 2024-02-26 11:44:24.169 6900 FEE 439106 20424 6071153 2024-02-26 11:44:24.169 2024-02-26 11:44:24.169 62100 TIP 439106 683 6071188 2024-02-26 11:47:39.242 2024-02-26 11:47:39.242 100 FEE 439124 16816 6071189 2024-02-26 11:47:39.242 2024-02-26 11:47:39.242 900 TIP 439124 12049 6071208 2024-02-26 11:57:10.863 2024-02-26 11:57:10.863 100 FEE 439110 11443 6071209 2024-02-26 11:57:10.863 2024-02-26 11:57:10.863 900 TIP 439110 4415 6071249 2024-02-26 12:02:41.177 2024-02-26 12:02:41.177 200 FEE 439139 5069 6071250 2024-02-26 12:02:41.177 2024-02-26 12:02:41.177 1800 TIP 439139 19810 6071311 2024-02-26 12:05:04.671 2024-02-26 12:05:04.671 1000 FEE 439143 15100 6071354 2024-02-26 12:09:25.359 2024-02-26 12:09:25.359 17000 FEE 439145 635 6071372 2024-02-26 12:12:47.515 2024-02-26 12:12:47.515 100 FEE 439139 19992 6071373 2024-02-26 12:12:47.515 2024-02-26 12:12:47.515 900 TIP 439139 7916 6071383 2024-02-26 12:14:26.423 2024-02-26 12:14:26.423 100 FEE 438973 5427 6071384 2024-02-26 12:14:26.423 2024-02-26 12:14:26.423 900 TIP 438973 17041 6071395 2024-02-26 12:15:24.816 2024-02-26 12:15:24.816 1000 FEE 439153 19796 6071397 2024-02-26 12:16:21.472 2024-02-26 12:16:21.472 2100 FEE 439022 21116 6071398 2024-02-26 12:16:21.472 2024-02-26 12:16:21.472 18900 TIP 439022 2942 6071399 2024-02-26 12:16:43.231 2024-02-26 12:16:43.231 1000 FEE 439154 20254 6071425 2024-02-26 12:20:24.193 2024-02-26 12:20:24.193 2100 FEE 438691 21228 6071426 2024-02-26 12:20:24.193 2024-02-26 12:20:24.193 18900 TIP 438691 20588 6071451 2024-02-26 12:24:24.251 2024-02-26 12:24:24.251 1000 FEE 439162 9476 6071477 2024-02-26 12:27:56.841 2024-02-26 12:27:56.841 1100 FEE 438691 2437 6071478 2024-02-26 12:27:56.841 2024-02-26 12:27:56.841 9900 TIP 438691 10007 6071487 2024-02-26 12:27:57.491 2024-02-26 12:27:57.491 1100 FEE 438691 17984 6071488 2024-02-26 12:27:57.491 2024-02-26 12:27:57.491 9900 TIP 438691 8945 6070722 2024-02-26 10:27:39.661 2024-02-26 10:27:39.661 1000 FEE 439053 763 6070728 2024-02-26 10:30:04.086 2024-02-26 10:30:04.086 1000 FEE 439054 14037 6070729 2024-02-26 10:30:16.411 2024-02-26 10:30:16.411 1000 FEE 439023 20778 6070730 2024-02-26 10:30:16.411 2024-02-26 10:30:16.411 9000 TIP 439023 782 6070731 2024-02-26 10:30:43.674 2024-02-26 10:30:43.674 1000 FEE 439055 5036 6070792 2024-02-26 10:43:58.194 2024-02-26 10:43:58.194 1000 FEE 439047 10342 6070793 2024-02-26 10:43:58.194 2024-02-26 10:43:58.194 9000 TIP 439047 1985 6070803 2024-02-26 10:47:32.234 2024-02-26 10:47:32.234 0 FEE 439075 21067 6070825 2024-02-26 10:54:11.865 2024-02-26 10:54:11.865 100 FEE 438973 20153 6070826 2024-02-26 10:54:11.865 2024-02-26 10:54:11.865 900 TIP 438973 20185 6070856 2024-02-26 10:59:46.529 2024-02-26 10:59:46.529 1000 FEE 439081 11038 6070859 2024-02-26 11:00:04.995 2024-02-26 11:00:04.995 1000 FEE 439084 9354 6070911 2024-02-26 11:17:12.788 2024-02-26 11:17:12.788 100 FEE 439056 8423 6070912 2024-02-26 11:17:12.788 2024-02-26 11:17:12.788 900 TIP 439056 17519 6070917 2024-02-26 11:17:58.131 2024-02-26 11:17:58.131 1000 FEE 439086 20137 6070918 2024-02-26 11:17:58.131 2024-02-26 11:17:58.131 9000 TIP 439086 5758 6070924 2024-02-26 11:18:26.034 2024-02-26 11:18:26.034 0 FEE 439095 1836 6070926 2024-02-26 11:19:17.87 2024-02-26 11:19:17.87 1000 FEE 439097 7989 6070931 2024-02-26 11:20:22.198 2024-02-26 11:20:22.198 4000 FEE 439094 18909 6070932 2024-02-26 11:20:22.198 2024-02-26 11:20:22.198 36000 TIP 439094 19417 6070934 2024-02-26 11:20:57.699 2024-02-26 11:20:57.699 1000 FEE 439099 11450 6070954 2024-02-26 11:21:09.669 2024-02-26 11:21:09.669 100 FEE 438970 20596 6070955 2024-02-26 11:21:09.669 2024-02-26 11:21:09.669 900 TIP 438970 9364 6070964 2024-02-26 11:21:22.146 2024-02-26 11:21:22.146 100 FEE 438970 18119 6070965 2024-02-26 11:21:22.146 2024-02-26 11:21:22.146 900 TIP 438970 9336 6070970 2024-02-26 11:21:22.94 2024-02-26 11:21:22.94 300 FEE 438970 19458 6070971 2024-02-26 11:21:22.94 2024-02-26 11:21:22.94 2700 TIP 438970 19966 6070978 2024-02-26 11:21:23.612 2024-02-26 11:21:23.612 100 FEE 438970 1628 6070979 2024-02-26 11:21:23.612 2024-02-26 11:21:23.612 900 TIP 438970 6360 6070996 2024-02-26 11:22:17.073 2024-02-26 11:22:17.073 1000 FEE 439101 20852 6071000 2024-02-26 11:23:41.677 2024-02-26 11:23:41.677 1000 FEE 439100 18828 6071001 2024-02-26 11:23:41.677 2024-02-26 11:23:41.677 9000 TIP 439100 9920 6071005 2024-02-26 11:24:25.8 2024-02-26 11:24:25.8 0 FEE 439101 21494 6071027 2024-02-26 11:26:09.881 2024-02-26 11:26:09.881 0 FEE 439101 2961 6071058 2024-02-26 11:30:24.153 2024-02-26 11:30:24.153 0 FEE 439108 2620 6071116 2024-02-26 11:36:48.696 2024-02-26 11:36:48.696 1000 FEE 439122 5757 6071166 2024-02-26 11:44:49.526 2024-02-26 11:44:49.526 6900 FEE 438934 20980 6071167 2024-02-26 11:44:49.526 2024-02-26 11:44:49.526 62100 TIP 438934 15351 6071205 2024-02-26 11:56:39.299 2024-02-26 11:56:39.299 100 FEE 439123 9 6071206 2024-02-26 11:56:39.299 2024-02-26 11:56:39.299 900 TIP 439123 946 6071210 2024-02-26 11:57:18.974 2024-02-26 11:57:18.974 100 FEE 439100 8133 6071211 2024-02-26 11:57:18.974 2024-02-26 11:57:18.974 900 TIP 439100 2402 6071220 2024-02-26 11:58:54.519 2024-02-26 11:58:54.519 4800 FEE 436248 19309 6071221 2024-02-26 11:58:54.519 2024-02-26 11:58:54.519 43200 TIP 436248 20563 6071228 2024-02-26 11:59:20.937 2024-02-26 11:59:20.937 1000 FEE 437473 18865 6071229 2024-02-26 11:59:20.937 2024-02-26 11:59:20.937 9000 TIP 437473 1136 6071237 2024-02-26 12:00:05.058 2024-02-26 12:00:05.058 1000 FEE 439134 19459 6071238 2024-02-26 12:00:27.143 2024-02-26 12:00:27.143 100 FEE 439014 20897 6071239 2024-02-26 12:00:27.143 2024-02-26 12:00:27.143 900 TIP 439014 768 6071243 2024-02-26 12:01:04.041 2024-02-26 12:01:04.041 17000 FEE 439137 848 6071255 2024-02-26 12:03:11.854 2024-02-26 12:03:11.854 1000 FEE 439141 12057 6071260 2024-02-26 12:03:55.345 2024-02-26 12:03:55.345 300 FEE 438737 828 6071261 2024-02-26 12:03:55.345 2024-02-26 12:03:55.345 2700 TIP 438737 9330 6071281 2024-02-26 12:04:32.396 2024-02-26 12:04:32.396 2100 FEE 439112 16543 6071282 2024-02-26 12:04:32.396 2024-02-26 12:04:32.396 18900 TIP 439112 5427 6071285 2024-02-26 12:04:34.161 2024-02-26 12:04:34.161 2100 FEE 439091 20450 6071286 2024-02-26 12:04:34.161 2024-02-26 12:04:34.161 18900 TIP 439091 13798 6071299 2024-02-26 12:04:51.041 2024-02-26 12:04:51.041 2100 FEE 439095 16126 6071300 2024-02-26 12:04:51.041 2024-02-26 12:04:51.041 18900 TIP 439095 21589 6071301 2024-02-26 12:04:52.008 2024-02-26 12:04:52.008 2100 FEE 439092 18243 6071302 2024-02-26 12:04:52.008 2024-02-26 12:04:52.008 18900 TIP 439092 4538 6071303 2024-02-26 12:04:52.264 2024-02-26 12:04:52.264 10000 FEE 439142 2326 6071345 2024-02-26 12:06:30.248 2024-02-26 12:06:30.248 100 FEE 439142 20327 6071346 2024-02-26 12:06:30.248 2024-02-26 12:06:30.248 900 TIP 439142 8095 6071361 2024-02-26 12:11:38.788 2024-02-26 12:11:38.788 4000 FEE 439139 17116 6071362 2024-02-26 12:11:38.788 2024-02-26 12:11:38.788 36000 TIP 439139 5085 6071379 2024-02-26 12:14:13.926 2024-02-26 12:14:13.926 1000 FEE 439147 14122 6071380 2024-02-26 12:14:13.926 2024-02-26 12:14:13.926 9000 TIP 439147 827 6071409 2024-02-26 12:19:04.454 2024-02-26 12:19:04.454 2100 FEE 438982 14791 6071410 2024-02-26 12:19:04.454 2024-02-26 12:19:04.454 18900 TIP 438982 19484 6071422 2024-02-26 12:20:13.201 2024-02-26 12:20:13.201 2100 FEE 439142 979 6071423 2024-02-26 12:20:13.201 2024-02-26 12:20:13.201 18900 TIP 439142 21451 6071431 2024-02-26 12:21:17.645 2024-02-26 12:21:17.645 2100 FEE 439137 20613 6071432 2024-02-26 12:21:17.645 2024-02-26 12:21:17.645 18900 TIP 439137 20162 6071440 2024-02-26 12:22:27.809 2024-02-26 12:22:27.809 100000 FEE 439161 20683 6071442 2024-02-26 12:23:59.189 2024-02-26 12:23:59.189 1000 FEE 439134 663 6071443 2024-02-26 12:23:59.189 2024-02-26 12:23:59.189 9000 TIP 439134 16847 6071457 2024-02-26 12:24:53.816 2024-02-26 12:24:53.816 1000 FEE 439163 17707 6071463 2024-02-26 12:25:14.56 2024-02-26 12:25:14.56 10000 FEE 439164 17568 6071467 2024-02-26 12:25:32.284 2024-02-26 12:25:32.284 2100 FEE 438998 15728 6071468 2024-02-26 12:25:32.284 2024-02-26 12:25:32.284 18900 TIP 438998 7389 6071471 2024-02-26 12:26:29.818 2024-02-26 12:26:29.818 1000 FEE 439167 18659 6071516 2024-02-26 12:28:23.814 2024-02-26 12:28:23.814 1100 FEE 439139 21457 6071517 2024-02-26 12:28:23.814 2024-02-26 12:28:23.814 9900 TIP 439139 9351 6071540 2024-02-26 12:29:18.17 2024-02-26 12:29:18.17 100 FEE 439038 15463 6071541 2024-02-26 12:29:18.17 2024-02-26 12:29:18.17 900 TIP 439038 11821 6071560 2024-02-26 12:35:37.978 2024-02-26 12:35:37.978 2100 FEE 439013 9356 6071561 2024-02-26 12:35:37.978 2024-02-26 12:35:37.978 18900 TIP 439013 1845 6071568 2024-02-26 12:36:19.851 2024-02-26 12:36:19.851 1000 FEE 439178 1801 6071579 2024-02-26 12:38:00.82 2024-02-26 12:38:00.82 10000 FEE 439184 1208 6071589 2024-02-26 12:38:55.948 2024-02-26 12:38:55.948 1000 FEE 439187 1237 6071593 2024-02-26 12:39:05.364 2024-02-26 12:39:05.364 100 FEE 437269 17714 6071594 2024-02-26 12:39:05.364 2024-02-26 12:39:05.364 900 TIP 437269 15536 6071604 2024-02-26 12:39:44.722 2024-02-26 12:39:44.722 2100 FEE 439175 11423 6070752 2024-02-26 10:37:02.384 2024-02-26 10:37:02.384 1000 STREAM 141924 21131 6070784 2024-02-26 10:42:02.47 2024-02-26 10:42:02.47 1000 STREAM 141924 9078 6070795 2024-02-26 10:44:02.481 2024-02-26 10:44:02.481 1000 STREAM 141924 18359 6070800 2024-02-26 10:46:02.511 2024-02-26 10:46:02.511 1000 STREAM 141924 10469 6071011 2024-02-26 11:25:03.22 2024-02-26 11:25:03.22 1000 STREAM 141924 9552 6071040 2024-02-26 11:28:03.227 2024-02-26 11:28:03.227 1000 STREAM 141924 18735 6071145 2024-02-26 11:44:03.464 2024-02-26 11:44:03.464 1000 STREAM 141924 20993 6071170 2024-02-26 11:45:03.478 2024-02-26 11:45:03.478 1000 STREAM 141924 6700 6071178 2024-02-26 11:46:03.453 2024-02-26 11:46:03.453 1000 STREAM 141924 687 6070758 2024-02-26 10:38:03.149 2024-02-26 10:38:03.149 2100 FEE 429509 21178 6070759 2024-02-26 10:38:03.149 2024-02-26 10:38:03.149 18900 TIP 429509 16351 6070761 2024-02-26 10:38:15.18 2024-02-26 10:38:15.18 0 FEE 439062 1814 6070770 2024-02-26 10:39:43.261 2024-02-26 10:39:43.261 2100 FEE 439039 2832 6070771 2024-02-26 10:39:43.261 2024-02-26 10:39:43.261 18900 TIP 439039 10493 6070785 2024-02-26 10:42:10.904 2024-02-26 10:42:10.904 1000 FEE 439052 18174 6070786 2024-02-26 10:42:10.904 2024-02-26 10:42:10.904 9000 TIP 439052 2444 6070806 2024-02-26 10:48:39.336 2024-02-26 10:48:39.336 0 FEE 439075 8569 6070858 2024-02-26 11:00:04.457 2024-02-26 11:00:04.457 100000 FEE 439083 6041 6070869 2024-02-26 11:04:43.52 2024-02-26 11:04:43.52 4000 FEE 439087 9167 6070870 2024-02-26 11:04:43.52 2024-02-26 11:04:43.52 36000 TIP 439087 2502 6070904 2024-02-26 11:14:28.775 2024-02-26 11:14:28.775 100 FEE 438758 19398 6070905 2024-02-26 11:14:28.775 2024-02-26 11:14:28.775 900 TIP 438758 20603 6070922 2024-02-26 11:18:17.991 2024-02-26 11:18:17.991 0 FEE 439095 11314 6070923 2024-02-26 11:18:25.305 2024-02-26 11:18:25.305 1000 FEE 439096 16556 6070986 2024-02-26 11:21:26.236 2024-02-26 11:21:26.236 200 FEE 438970 21485 6070987 2024-02-26 11:21:26.236 2024-02-26 11:21:26.236 1800 TIP 438970 18751 6070995 2024-02-26 11:22:05.195 2024-02-26 11:22:05.195 100000 FEE 439100 21573 6070997 2024-02-26 11:22:43.514 2024-02-26 11:22:43.514 1000 FEE 439102 1114 6071007 2024-02-26 11:24:46.732 2024-02-26 11:24:46.732 1200 FEE 438737 910 6071008 2024-02-26 11:24:46.732 2024-02-26 11:24:46.732 10800 TIP 438737 21047 6071043 2024-02-26 11:28:45.207 2024-02-26 11:28:45.207 1000 FEE 439109 21379 6071050 2024-02-26 11:29:39.257 2024-02-26 11:29:39.257 1000 FEE 438859 10094 6071051 2024-02-26 11:29:39.257 2024-02-26 11:29:39.257 9000 TIP 438859 621 6071053 2024-02-26 11:29:51.815 2024-02-26 11:29:51.815 4000 FEE 439109 1652 6071054 2024-02-26 11:29:51.815 2024-02-26 11:29:51.815 36000 TIP 439109 9367 6071067 2024-02-26 11:31:29.684 2024-02-26 11:31:29.684 1000 FEE 438756 620 6071068 2024-02-26 11:31:29.684 2024-02-26 11:31:29.684 9000 TIP 438756 19839 6071113 2024-02-26 11:36:06.927 2024-02-26 11:36:06.927 1000 FEE 439121 16704 6071123 2024-02-26 11:37:55.595 2024-02-26 11:37:55.595 0 FEE 439122 1631 6071130 2024-02-26 11:41:38.457 2024-02-26 11:41:38.457 1000 FEE 439124 19435 6071131 2024-02-26 11:41:38.457 2024-02-26 11:41:38.457 9000 TIP 439124 2203 6071132 2024-02-26 11:41:43.723 2024-02-26 11:41:43.723 0 FEE 439124 17944 6071141 2024-02-26 11:43:14.772 2024-02-26 11:43:14.772 100 FEE 438209 19199 6071142 2024-02-26 11:43:14.772 2024-02-26 11:43:14.772 900 TIP 438209 1038 6071154 2024-02-26 11:44:24.901 2024-02-26 11:44:24.901 6900 FEE 439106 16747 6071155 2024-02-26 11:44:24.901 2024-02-26 11:44:24.901 62100 TIP 439106 1602 6071175 2024-02-26 11:45:05.102 2024-02-26 11:45:05.102 6900 FEE 438923 2046 6071176 2024-02-26 11:45:05.102 2024-02-26 11:45:05.102 62100 TIP 438923 21352 6071179 2024-02-26 11:46:04.079 2024-02-26 11:46:04.079 6900 FEE 438202 21491 6071180 2024-02-26 11:46:04.079 2024-02-26 11:46:04.079 62100 TIP 438202 5519 6071181 2024-02-26 11:46:04.25 2024-02-26 11:46:04.25 6900 FEE 438202 19924 6071182 2024-02-26 11:46:04.25 2024-02-26 11:46:04.25 62100 TIP 438202 1141 6071224 2024-02-26 11:59:13.379 2024-02-26 11:59:13.379 1000 FEE 437359 20881 6071225 2024-02-26 11:59:13.379 2024-02-26 11:59:13.379 9000 TIP 437359 17291 6071230 2024-02-26 11:59:21.526 2024-02-26 11:59:21.526 1000 FEE 437473 4238 6071231 2024-02-26 11:59:21.526 2024-02-26 11:59:21.526 9000 TIP 437473 20812 6071256 2024-02-26 12:03:30.648 2024-02-26 12:03:30.648 3200 FEE 439139 7510 6071257 2024-02-26 12:03:30.648 2024-02-26 12:03:30.648 28800 TIP 439139 9337 6071289 2024-02-26 12:04:36.952 2024-02-26 12:04:36.952 2100 FEE 439090 20254 6071290 2024-02-26 12:04:36.952 2024-02-26 12:04:36.952 18900 TIP 439090 1605 6071315 2024-02-26 12:05:10.846 2024-02-26 12:05:10.846 300 FEE 439106 1046 6071316 2024-02-26 12:05:10.846 2024-02-26 12:05:10.846 2700 TIP 439106 980 6071325 2024-02-26 12:05:11.785 2024-02-26 12:05:11.785 300 FEE 439106 19930 6071326 2024-02-26 12:05:11.785 2024-02-26 12:05:11.785 2700 TIP 439106 21352 6071329 2024-02-26 12:05:12.143 2024-02-26 12:05:12.143 300 FEE 439106 18426 6071330 2024-02-26 12:05:12.143 2024-02-26 12:05:12.143 2700 TIP 439106 13782 6071366 2024-02-26 12:12:01.251 2024-02-26 12:12:01.251 1000 POLL 438202 20636 6071385 2024-02-26 12:14:33.776 2024-02-26 12:14:33.776 2100 FEE 438983 19105 6071386 2024-02-26 12:14:33.776 2024-02-26 12:14:33.776 18900 TIP 438983 20657 6071407 2024-02-26 12:18:49.051 2024-02-26 12:18:49.051 1000 FEE 439159 20603 6071448 2024-02-26 12:24:00.761 2024-02-26 12:24:00.761 1000 FEE 439134 5578 6071449 2024-02-26 12:24:00.761 2024-02-26 12:24:00.761 9000 TIP 439134 3504 6071455 2024-02-26 12:24:40.281 2024-02-26 12:24:40.281 2800 FEE 439099 18468 6071456 2024-02-26 12:24:40.281 2024-02-26 12:24:40.281 25200 TIP 439099 19569 6071469 2024-02-26 12:25:56.81 2024-02-26 12:25:56.81 1000 FEE 439166 10731 6071479 2024-02-26 12:27:56.97 2024-02-26 12:27:56.97 1100 FEE 438691 4062 6071480 2024-02-26 12:27:56.97 2024-02-26 12:27:56.97 9900 TIP 438691 2046 6071485 2024-02-26 12:27:57.364 2024-02-26 12:27:57.364 1100 FEE 438691 12976 6070790 2024-02-26 10:43:04.196 2024-02-26 10:43:04.196 1000 STREAM 141924 18533 6070796 2024-02-26 10:45:02.5 2024-02-26 10:45:02.5 1000 STREAM 141924 21296 6070801 2024-02-26 10:47:02.539 2024-02-26 10:47:02.539 1000 STREAM 141924 13574 6070804 2024-02-26 10:48:02.532 2024-02-26 10:48:02.532 1000 STREAM 141924 14045 6070809 2024-02-26 10:49:02.558 2024-02-26 10:49:02.558 1000 STREAM 141924 1307 6070810 2024-02-26 10:50:02.628 2024-02-26 10:50:02.628 1000 STREAM 141924 12606 6070811 2024-02-26 10:51:02.595 2024-02-26 10:51:02.595 1000 STREAM 141924 1142 6070816 2024-02-26 10:53:02.635 2024-02-26 10:53:02.635 1000 STREAM 141924 20245 6070814 2024-02-26 10:52:02.884 2024-02-26 10:52:02.884 1000 STREAM 141924 3656 6070822 2024-02-26 10:54:02.892 2024-02-26 10:54:02.892 1000 STREAM 141924 17030 6070836 2024-02-26 10:57:02.898 2024-02-26 10:57:02.898 1000 STREAM 141924 14370 6070851 2024-02-26 10:58:02.904 2024-02-26 10:58:02.904 1000 STREAM 141924 15474 6070857 2024-02-26 11:00:02.979 2024-02-26 11:00:02.979 1000 STREAM 141924 12049 6070872 2024-02-26 11:05:02.982 2024-02-26 11:05:02.982 1000 STREAM 141924 13216 6070884 2024-02-26 11:09:03.026 2024-02-26 11:09:03.026 1000 STREAM 141924 3342 6070886 2024-02-26 11:10:03.06 2024-02-26 11:10:03.06 1000 STREAM 141924 21014 6070889 2024-02-26 11:11:03.055 2024-02-26 11:11:03.055 1000 STREAM 141924 6537 6070893 2024-02-26 11:12:03.053 2024-02-26 11:12:03.053 1000 STREAM 141924 21207 6070900 2024-02-26 11:13:03.065 2024-02-26 11:13:03.065 1000 STREAM 141924 2514 6070901 2024-02-26 11:14:03.081 2024-02-26 11:14:03.081 1000 STREAM 141924 19329 6070909 2024-02-26 11:17:03.116 2024-02-26 11:17:03.116 1000 STREAM 141924 4259 6070925 2024-02-26 11:19:03.141 2024-02-26 11:19:03.141 1000 STREAM 141924 21573 6070998 2024-02-26 11:23:03.201 2024-02-26 11:23:03.201 1000 STREAM 141924 7558 6070854 2024-02-26 10:59:42.377 2024-02-26 10:59:42.377 28800 TIP 439078 20680 6070866 2024-02-26 11:03:31.273 2024-02-26 11:03:31.273 1000 FEE 439086 4570 6070868 2024-02-26 11:04:24.244 2024-02-26 11:04:24.244 1000 FEE 439087 780 6070873 2024-02-26 11:05:43.407 2024-02-26 11:05:43.407 10000 FEE 439087 12291 6070874 2024-02-26 11:05:43.407 2024-02-26 11:05:43.407 90000 TIP 439087 20858 6070878 2024-02-26 11:07:13.321 2024-02-26 11:07:13.321 0 FEE 439087 11329 6070908 2024-02-26 11:16:45.372 2024-02-26 11:16:45.372 1000 FEE 439093 21430 6070913 2024-02-26 11:17:16.3 2024-02-26 11:17:16.3 1000 FEE 439095 18543 6070914 2024-02-26 11:17:38.149 2024-02-26 11:17:38.149 0 FEE 439095 19812 6070942 2024-02-26 11:21:05.428 2024-02-26 11:21:05.428 100 FEE 438970 1468 6070943 2024-02-26 11:21:05.428 2024-02-26 11:21:05.428 900 TIP 438970 19189 6070962 2024-02-26 11:21:21.972 2024-02-26 11:21:21.972 100 FEE 438970 1836 6070963 2024-02-26 11:21:21.972 2024-02-26 11:21:21.972 900 TIP 438970 14465 6070968 2024-02-26 11:21:22.499 2024-02-26 11:21:22.499 200 FEE 438970 20624 6070969 2024-02-26 11:21:22.499 2024-02-26 11:21:22.499 1800 TIP 438970 4083 6070976 2024-02-26 11:21:23.43 2024-02-26 11:21:23.43 100 FEE 438970 16178 6070977 2024-02-26 11:21:23.43 2024-02-26 11:21:23.43 900 TIP 438970 20897 6070988 2024-02-26 11:21:26.263 2024-02-26 11:21:26.263 100 FEE 438970 2757 6070989 2024-02-26 11:21:26.263 2024-02-26 11:21:26.263 900 TIP 438970 1320 6070888 2024-02-26 11:10:07.16 2024-02-26 11:10:07.16 99900 TIP 439088 14015 6070892 2024-02-26 11:11:58.878 2024-02-26 11:11:58.878 1000 FEE 439092 20837 6070898 2024-02-26 11:13:01.395 2024-02-26 11:13:01.395 1600 FEE 439090 1007 6070899 2024-02-26 11:13:01.395 2024-02-26 11:13:01.395 14400 TIP 439090 7583 6070920 2024-02-26 11:18:06.468 2024-02-26 11:18:06.468 2100 FEE 439004 20436 6070921 2024-02-26 11:18:06.468 2024-02-26 11:18:06.468 18900 TIP 439004 7125 6070938 2024-02-26 11:21:04.428 2024-02-26 11:21:04.428 100 FEE 438970 2444 6070939 2024-02-26 11:21:04.428 2024-02-26 11:21:04.428 900 TIP 438970 18114 6070952 2024-02-26 11:21:08.312 2024-02-26 11:21:08.312 100 FEE 438970 8400 6070953 2024-02-26 11:21:08.312 2024-02-26 11:21:08.312 900 TIP 438970 9845 6071021 2024-02-26 11:25:55.247 2024-02-26 11:25:55.247 1000 FEE 439101 5565 6071022 2024-02-26 11:25:55.247 2024-02-26 11:25:55.247 9000 TIP 439101 1047 6071031 2024-02-26 11:26:30.04 2024-02-26 11:26:30.04 1000 FEE 439106 20225 6071032 2024-02-26 11:26:32.02 2024-02-26 11:26:32.02 4000 FEE 439101 14152 6071033 2024-02-26 11:26:32.02 2024-02-26 11:26:32.02 36000 TIP 439101 3440 6071034 2024-02-26 11:26:41.384 2024-02-26 11:26:41.384 1000 FEE 439014 3439 6071035 2024-02-26 11:26:41.384 2024-02-26 11:26:41.384 9000 TIP 439014 998 6071041 2024-02-26 11:28:09.652 2024-02-26 11:28:09.652 1000 FEE 438982 8916 6071042 2024-02-26 11:28:09.652 2024-02-26 11:28:09.652 9000 TIP 438982 18641 6071076 2024-02-26 11:32:33.557 2024-02-26 11:32:33.557 0 FEE 439114 10530 6071110 2024-02-26 11:36:04.971 2024-02-26 11:36:04.971 2100 FEE 439114 12819 6071111 2024-02-26 11:36:04.971 2024-02-26 11:36:04.971 18900 TIP 439114 725 6071121 2024-02-26 11:37:10.835 2024-02-26 11:37:10.835 0 FEE 439122 1145 6071129 2024-02-26 11:41:26.019 2024-02-26 11:41:26.019 21000 FEE 439124 9171 6071148 2024-02-26 11:44:23.805 2024-02-26 11:44:23.805 6900 FEE 439106 8423 6071149 2024-02-26 11:44:23.805 2024-02-26 11:44:23.805 62100 TIP 439106 14503 6071160 2024-02-26 11:44:35.263 2024-02-26 11:44:35.263 6900 FEE 439103 12976 6071161 2024-02-26 11:44:35.263 2024-02-26 11:44:35.263 62100 TIP 439103 21575 6071200 2024-02-26 11:54:01.26 2024-02-26 11:54:01.26 1000 POLL 438794 6700 6071203 2024-02-26 11:55:53.661 2024-02-26 11:55:53.661 1000 FEE 439128 19329 6071213 2024-02-26 11:58:29.403 2024-02-26 11:58:29.403 100000 FEE 439130 20706 6071216 2024-02-26 11:58:50.212 2024-02-26 11:58:50.212 1000 FEE 436769 2583 6071217 2024-02-26 11:58:50.212 2024-02-26 11:58:50.212 9000 TIP 436769 6384 6071222 2024-02-26 11:58:55.407 2024-02-26 11:58:55.407 10000 FEE 439131 21314 6070903 2024-02-26 11:14:13.408 2024-02-26 11:14:13.408 900 TIP 439080 14037 6070910 2024-02-26 11:17:04.086 2024-02-26 11:17:04.086 1000 FEE 439094 19435 6070915 2024-02-26 11:17:55.021 2024-02-26 11:17:55.021 1000 FEE 439084 21157 6070916 2024-02-26 11:17:55.021 2024-02-26 11:17:55.021 9000 TIP 439084 775 6070946 2024-02-26 11:21:05.532 2024-02-26 11:21:05.532 100 FEE 439029 9331 6070947 2024-02-26 11:21:05.532 2024-02-26 11:21:05.532 900 TIP 439029 17798 6070960 2024-02-26 11:21:20.459 2024-02-26 11:21:20.459 100 FEE 438970 5359 6070961 2024-02-26 11:21:20.459 2024-02-26 11:21:20.459 900 TIP 438970 9078 6070966 2024-02-26 11:21:22.34 2024-02-26 11:21:22.34 100 FEE 438970 21287 6070967 2024-02-26 11:21:22.34 2024-02-26 11:21:22.34 900 TIP 438970 3392 6070974 2024-02-26 11:21:23.236 2024-02-26 11:21:23.236 100 FEE 438970 10979 6070975 2024-02-26 11:21:23.236 2024-02-26 11:21:23.236 900 TIP 438970 1298 6071016 2024-02-26 11:25:46.084 2024-02-26 11:25:46.084 1000 FEE 439104 21349 6071044 2024-02-26 11:28:46.307 2024-02-26 11:28:46.307 210000 FEE 439110 4570 6071055 2024-02-26 11:29:53.677 2024-02-26 11:29:53.677 1000 FEE 439113 16948 6071057 2024-02-26 11:30:08.265 2024-02-26 11:30:08.265 0 FEE 439108 9816 6071059 2024-02-26 11:30:40.589 2024-02-26 11:30:40.589 1000 FEE 438808 699 6071060 2024-02-26 11:30:40.589 2024-02-26 11:30:40.589 9000 TIP 438808 5752 6071084 2024-02-26 11:34:16.982 2024-02-26 11:34:16.982 3300 FEE 439115 18664 6071085 2024-02-26 11:34:16.982 2024-02-26 11:34:16.982 29700 TIP 439115 13217 6071086 2024-02-26 11:34:26.686 2024-02-26 11:34:26.686 2100 FEE 439087 20710 6071087 2024-02-26 11:34:26.686 2024-02-26 11:34:26.686 18900 TIP 439087 12516 6071105 2024-02-26 11:35:43.623 2024-02-26 11:35:43.623 1000 FEE 439068 1584 6071106 2024-02-26 11:35:43.623 2024-02-26 11:35:43.623 9000 TIP 439068 16348 6071114 2024-02-26 11:36:08.702 2024-02-26 11:36:08.702 2100 FEE 439099 7418 6071115 2024-02-26 11:36:08.702 2024-02-26 11:36:08.702 18900 TIP 439099 16598 6071122 2024-02-26 11:37:42.523 2024-02-26 11:37:42.523 0 FEE 439122 3656 6071146 2024-02-26 11:44:23.017 2024-02-26 11:44:23.017 6900 FEE 439106 736 6071147 2024-02-26 11:44:23.017 2024-02-26 11:44:23.017 62100 TIP 439106 12819 6071156 2024-02-26 11:44:25.061 2024-02-26 11:44:25.061 6900 FEE 439106 13843 6071157 2024-02-26 11:44:25.061 2024-02-26 11:44:25.061 62100 TIP 439106 5497 6071191 2024-02-26 11:48:48.866 2024-02-26 11:48:48.866 1000 FEE 439126 11240 6071194 2024-02-26 11:50:22.684 2024-02-26 11:50:22.684 10000 FEE 439127 18932 6071196 2024-02-26 11:51:47.97 2024-02-26 11:51:47.97 7700 FEE 438968 12821 6071197 2024-02-26 11:51:47.97 2024-02-26 11:51:47.97 69300 TIP 438968 20495 6071226 2024-02-26 11:59:14.427 2024-02-26 11:59:14.427 1000 FEE 437359 992 6071227 2024-02-26 11:59:14.427 2024-02-26 11:59:14.427 9000 TIP 437359 20816 6071232 2024-02-26 11:59:22.088 2024-02-26 11:59:22.088 1000 FEE 437473 1047 6071233 2024-02-26 11:59:22.088 2024-02-26 11:59:22.088 9000 TIP 437473 695 6071283 2024-02-26 12:04:33.77 2024-02-26 12:04:33.77 500 FEE 438818 18601 6071284 2024-02-26 12:04:33.77 2024-02-26 12:04:33.77 4500 TIP 438818 18984 6071306 2024-02-26 12:04:55.791 2024-02-26 12:04:55.791 2100 FEE 439114 2711 6071307 2024-02-26 12:04:55.791 2024-02-26 12:04:55.791 18900 TIP 439114 13042 6071331 2024-02-26 12:05:12.352 2024-02-26 12:05:12.352 300 FEE 439106 15510 6071332 2024-02-26 12:05:12.352 2024-02-26 12:05:12.352 2700 TIP 439106 19890 6071343 2024-02-26 12:06:03.097 2024-02-26 12:06:03.097 1000 FEE 439144 18124 6071355 2024-02-26 12:09:43.745 2024-02-26 12:09:43.745 1000 FEE 439146 12160 6071360 2024-02-26 12:11:35.362 2024-02-26 12:11:35.362 10000 FEE 439147 5377 6071364 2024-02-26 12:11:51.771 2024-02-26 12:11:51.771 4000 FEE 439130 21421 6071365 2024-02-26 12:11:51.771 2024-02-26 12:11:51.771 36000 TIP 439130 16660 6071401 2024-02-26 12:17:05.025 2024-02-26 12:17:05.025 1000 FEE 439155 8841 6071402 2024-02-26 12:17:14.838 2024-02-26 12:17:14.838 1000 FEE 439156 1483 6071417 2024-02-26 12:19:32.039 2024-02-26 12:19:32.039 2100 FEE 438797 18470 6071418 2024-02-26 12:19:32.039 2024-02-26 12:19:32.039 18900 TIP 438797 18392 6071452 2024-02-26 12:24:28.499 2024-02-26 12:24:28.499 3200 FEE 439160 4076 6071453 2024-02-26 12:24:28.499 2024-02-26 12:24:28.499 28800 TIP 439160 6030 6071483 2024-02-26 12:27:57.236 2024-02-26 12:27:57.236 1100 FEE 438691 8168 6071484 2024-02-26 12:27:57.236 2024-02-26 12:27:57.236 9900 TIP 438691 20683 6071493 2024-02-26 12:27:59.715 2024-02-26 12:27:59.715 3300 FEE 438583 18180 6071494 2024-02-26 12:27:59.715 2024-02-26 12:27:59.715 29700 TIP 438583 15239 6071496 2024-02-26 12:28:18.159 2024-02-26 12:28:18.159 1100 FEE 438737 749 6071497 2024-02-26 12:28:18.159 2024-02-26 12:28:18.159 9900 TIP 438737 14080 6071500 2024-02-26 12:28:18.464 2024-02-26 12:28:18.464 1100 FEE 438737 20168 6071501 2024-02-26 12:28:18.464 2024-02-26 12:28:18.464 9900 TIP 438737 17817 6071566 2024-02-26 12:35:58.09 2024-02-26 12:35:58.09 1000 FEE 439177 4474 6071572 2024-02-26 12:37:05.515 2024-02-26 12:37:05.515 1000 FEE 439181 21254 6071610 2024-02-26 12:39:49.321 2024-02-26 12:39:49.321 2100 FEE 439180 2013 6071611 2024-02-26 12:39:49.321 2024-02-26 12:39:49.321 18900 TIP 439180 18274 6071625 2024-02-26 12:40:25.077 2024-02-26 12:40:25.077 1000 FEE 439190 20911 6071626 2024-02-26 12:40:26.473 2024-02-26 12:40:26.473 1000 FEE 439191 12721 6071642 2024-02-26 12:41:29.616 2024-02-26 12:41:29.616 1000 FEE 439194 21379 6071646 2024-02-26 12:42:56.509 2024-02-26 12:42:56.509 1000 FEE 439197 21057 6071650 2024-02-26 12:43:28.132 2024-02-26 12:43:28.132 1000 FEE 439198 9421 6071712 2024-02-26 12:53:26.922 2024-02-26 12:53:26.922 1000 FEE 439218 21349 6071717 2024-02-26 12:53:39.797 2024-02-26 12:53:39.797 6900 FEE 439147 20109 6071718 2024-02-26 12:53:39.797 2024-02-26 12:53:39.797 62100 TIP 439147 18517 6071723 2024-02-26 12:54:27.358 2024-02-26 12:54:27.358 1000 FEE 439222 17217 6071724 2024-02-26 12:54:40.66 2024-02-26 12:54:40.66 1000 FEE 439223 2309 6071747 2024-02-26 12:57:50.021 2024-02-26 12:57:50.021 4000 FEE 439213 670 6071748 2024-02-26 12:57:50.021 2024-02-26 12:57:50.021 36000 TIP 439213 16706 6071752 2024-02-26 12:58:31.3 2024-02-26 12:58:31.3 1000 FEE 439233 9494 6071780 2024-02-26 13:00:37.054 2024-02-26 13:00:37.054 1000 FEE 439239 11898 6071796 2024-02-26 13:02:09.484 2024-02-26 13:02:09.484 1000 FEE 439243 16059 6071813 2024-02-26 13:02:28.849 2024-02-26 13:02:28.849 10000 FEE 439244 4059 6071830 2024-02-26 13:05:35.739 2024-02-26 13:05:35.739 1000 FEE 439251 5017 6071835 2024-02-26 13:06:31.651 2024-02-26 13:06:31.651 1000 FEE 439254 4079 6071836 2024-02-26 13:06:36.001 2024-02-26 13:06:36.001 1000 POLL 438325 18468 6071859 2024-02-26 13:09:27.136 2024-02-26 13:09:27.136 10000 FEE 439250 9362 6071860 2024-02-26 13:09:27.136 2024-02-26 13:09:27.136 90000 TIP 439250 6384 6071889 2024-02-26 13:15:12.421 2024-02-26 13:15:12.421 1000 FEE 439268 7978 6071933 2024-02-26 13:21:33.367 2024-02-26 13:21:33.367 100000 FEE 439277 20258 6071965 2024-02-26 13:23:47.806 2024-02-26 13:23:47.806 2100 FEE 439218 11798 6071966 2024-02-26 13:23:47.806 2024-02-26 13:23:47.806 18900 TIP 439218 4487 6071967 2024-02-26 13:23:50.029 2024-02-26 13:23:50.029 1000 FEE 439282 16194 6071984 2024-02-26 13:24:55.272 2024-02-26 13:24:55.272 2100 FEE 438956 1490 6071985 2024-02-26 13:24:55.272 2024-02-26 13:24:55.272 18900 TIP 438956 16598 6071990 2024-02-26 13:24:55.939 2024-02-26 13:24:55.939 100 FEE 113193 21148 6071991 2024-02-26 13:24:55.939 2024-02-26 13:24:55.939 900 TIP 113193 8506 6071992 2024-02-26 13:24:56.19 2024-02-26 13:24:56.19 100 FEE 113193 673 6071993 2024-02-26 13:24:56.19 2024-02-26 13:24:56.19 900 TIP 113193 627 6071996 2024-02-26 13:24:56.415 2024-02-26 13:24:56.415 100 FEE 113193 21003 6071023 2024-02-26 11:26:03.206 2024-02-26 11:26:03.206 1000 STREAM 141924 21021 6071037 2024-02-26 11:27:03.217 2024-02-26 11:27:03.217 1000 STREAM 141924 21104 6071024 2024-02-26 11:26:05.98 2024-02-26 11:26:05.98 1000 FEE 439045 13927 6071025 2024-02-26 11:26:05.98 2024-02-26 11:26:05.98 9000 TIP 439045 18995 6071061 2024-02-26 11:30:48.027 2024-02-26 11:30:48.027 1000 FEE 438780 20424 6071062 2024-02-26 11:30:48.027 2024-02-26 11:30:48.027 9000 TIP 438780 18378 6071066 2024-02-26 11:31:18.131 2024-02-26 11:31:18.131 1000 FEE 439114 700 6071112 2024-02-26 11:36:05.809 2024-02-26 11:36:05.809 1000 POLL 438794 7966 6071125 2024-02-26 11:38:13.709 2024-02-26 11:38:13.709 0 FEE 439122 4323 6071139 2024-02-26 11:43:04.074 2024-02-26 11:43:04.074 100 FEE 438651 12744 6071140 2024-02-26 11:43:04.074 2024-02-26 11:43:04.074 900 TIP 438651 18528 6071168 2024-02-26 11:45:02.565 2024-02-26 11:45:02.565 4000 FEE 439122 712 6071169 2024-02-26 11:45:02.565 2024-02-26 11:45:02.565 36000 TIP 439122 10112 6071173 2024-02-26 11:45:04.504 2024-02-26 11:45:04.504 6900 FEE 438923 14651 6071174 2024-02-26 11:45:04.504 2024-02-26 11:45:04.504 62100 TIP 438923 16769 6071177 2024-02-26 11:45:17.347 2024-02-26 11:45:17.347 1000 FEE 439125 770 6071183 2024-02-26 11:46:07.836 2024-02-26 11:46:07.836 4000 FEE 439125 16004 6071184 2024-02-26 11:46:07.836 2024-02-26 11:46:07.836 36000 TIP 439125 21556 6071186 2024-02-26 11:47:18.237 2024-02-26 11:47:18.237 100 FEE 438737 20594 6071187 2024-02-26 11:47:18.237 2024-02-26 11:47:18.237 900 TIP 438737 2773 6071234 2024-02-26 11:59:39.473 2024-02-26 11:59:39.473 1000 FEE 439132 20022 6071258 2024-02-26 12:03:54.979 2024-02-26 12:03:54.979 300 FEE 438737 16387 6071259 2024-02-26 12:03:54.979 2024-02-26 12:03:54.979 2700 TIP 438737 20841 6071262 2024-02-26 12:03:55.587 2024-02-26 12:03:55.587 300 FEE 438737 18945 6071263 2024-02-26 12:03:55.587 2024-02-26 12:03:55.587 2700 TIP 438737 16724 6071264 2024-02-26 12:03:56.598 2024-02-26 12:03:56.598 300 FEE 438737 696 6071265 2024-02-26 12:03:56.598 2024-02-26 12:03:56.598 2700 TIP 438737 21614 6071266 2024-02-26 12:04:02.653 2024-02-26 12:04:02.653 2100 FEE 438973 13143 6071267 2024-02-26 12:04:02.653 2024-02-26 12:04:02.653 18900 TIP 438973 2101 6071291 2024-02-26 12:04:44.728 2024-02-26 12:04:44.728 2100 FEE 439109 9863 6071292 2024-02-26 12:04:44.728 2024-02-26 12:04:44.728 18900 TIP 439109 18511 6071317 2024-02-26 12:05:11.02 2024-02-26 12:05:11.02 300 FEE 439106 946 6071318 2024-02-26 12:05:11.02 2024-02-26 12:05:11.02 2700 TIP 439106 19553 6071321 2024-02-26 12:05:11.372 2024-02-26 12:05:11.372 300 FEE 439106 5487 6071322 2024-02-26 12:05:11.372 2024-02-26 12:05:11.372 2700 TIP 439106 4391 6071335 2024-02-26 12:05:12.695 2024-02-26 12:05:12.695 300 FEE 439106 9 6071336 2024-02-26 12:05:12.695 2024-02-26 12:05:12.695 2700 TIP 439106 17494 6071351 2024-02-26 12:08:07.413 2024-02-26 12:08:07.413 200 FEE 439140 7916 6071352 2024-02-26 12:08:07.413 2024-02-26 12:08:07.413 1800 TIP 439140 19821 6071368 2024-02-26 12:12:04.791 2024-02-26 12:12:04.791 10000 FEE 439149 9482 6071369 2024-02-26 12:12:26.794 2024-02-26 12:12:26.794 0 FEE 439148 10554 6071371 2024-02-26 12:12:37.177 2024-02-26 12:12:37.177 1000 FEE 439151 4570 6071374 2024-02-26 12:12:48.626 2024-02-26 12:12:48.626 100 FEE 439139 2010 6071375 2024-02-26 12:12:48.626 2024-02-26 12:12:48.626 900 TIP 439139 19886 6071377 2024-02-26 12:13:54.12 2024-02-26 12:13:54.12 1000 FEE 439152 798 6071446 2024-02-26 12:24:00.328 2024-02-26 12:24:00.328 1000 FEE 439134 20738 6071447 2024-02-26 12:24:00.328 2024-02-26 12:24:00.328 9000 TIP 439134 627 6071475 2024-02-26 12:27:56.701 2024-02-26 12:27:56.701 1100 FEE 438691 18423 6071476 2024-02-26 12:27:56.701 2024-02-26 12:27:56.701 9900 TIP 438691 14213 6071481 2024-02-26 12:27:57.105 2024-02-26 12:27:57.105 1100 FEE 438691 20481 6071482 2024-02-26 12:27:57.105 2024-02-26 12:27:57.105 9900 TIP 438691 3347 6071504 2024-02-26 12:28:19.388 2024-02-26 12:28:19.388 1100 FEE 438737 13763 6071505 2024-02-26 12:28:19.388 2024-02-26 12:28:19.388 9900 TIP 438737 7983 6071510 2024-02-26 12:28:23.314 2024-02-26 12:28:23.314 1100 FEE 439139 21575 6071511 2024-02-26 12:28:23.314 2024-02-26 12:28:23.314 9900 TIP 439139 9355 6071520 2024-02-26 12:28:24.404 2024-02-26 12:28:24.404 1100 FEE 438651 21314 6071521 2024-02-26 12:28:24.404 2024-02-26 12:28:24.404 9900 TIP 438651 19417 6071528 2024-02-26 12:28:25.507 2024-02-26 12:28:25.507 1100 FEE 438794 5003 6071529 2024-02-26 12:28:25.507 2024-02-26 12:28:25.507 9900 TIP 438794 1823 6071549 2024-02-26 12:32:18.905 2024-02-26 12:32:18.905 1000 FEE 439169 15060 6071570 2024-02-26 12:37:03.716 2024-02-26 12:37:03.716 1000 FEE 439180 7960 6071583 2024-02-26 12:38:12.744 2024-02-26 12:38:12.744 1000 FEE 439185 768 6071586 2024-02-26 12:38:34.122 2024-02-26 12:38:34.122 1000 FEE 439186 19158 6071596 2024-02-26 12:39:13.609 2024-02-26 12:39:13.609 4200 FEE 438261 20006 6071597 2024-02-26 12:39:13.609 2024-02-26 12:39:13.609 37800 TIP 438261 20655 6071606 2024-02-26 12:39:46.072 2024-02-26 12:39:46.072 2100 FEE 439176 18714 6071607 2024-02-26 12:39:46.072 2024-02-26 12:39:46.072 18900 TIP 439176 19911 6071677 2024-02-26 12:47:19.794 2024-02-26 12:47:19.794 1000 FEE 439203 21356 6071678 2024-02-26 12:47:51.676 2024-02-26 12:47:51.676 1600 FEE 439197 8954 6071679 2024-02-26 12:47:51.676 2024-02-26 12:47:51.676 14400 TIP 439197 20691 6071685 2024-02-26 12:49:38.986 2024-02-26 12:49:38.986 10000 FEE 439207 2342 6071755 2024-02-26 12:59:04.161 2024-02-26 12:59:04.161 1000 FEE 439139 21180 6071756 2024-02-26 12:59:04.161 2024-02-26 12:59:04.161 9000 TIP 439139 979 6071763 2024-02-26 12:59:06.49 2024-02-26 12:59:06.49 2000 FEE 439139 18816 6071764 2024-02-26 12:59:06.49 2024-02-26 12:59:06.49 18000 TIP 439139 9529 6071819 2024-02-26 13:04:12.363 2024-02-26 13:04:12.363 1000 POLL 438202 21491 6071841 2024-02-26 13:06:38.347 2024-02-26 13:06:38.347 100 FEE 301869 5497 6071842 2024-02-26 13:06:38.347 2024-02-26 13:06:38.347 900 TIP 301869 17411 6071845 2024-02-26 13:06:45.82 2024-02-26 13:06:45.82 1000 FEE 439255 4521 6071864 2024-02-26 13:10:29.761 2024-02-26 13:10:29.761 100000 FEE 439262 21139 6071875 2024-02-26 13:13:01.783 2024-02-26 13:13:01.783 3100 FEE 438908 6003 6071876 2024-02-26 13:13:01.783 2024-02-26 13:13:01.783 27900 TIP 438908 13987 6071885 2024-02-26 13:14:39.789 2024-02-26 13:14:39.789 10000 FEE 439263 20073 6071886 2024-02-26 13:14:39.789 2024-02-26 13:14:39.789 90000 TIP 439263 12566 6071887 2024-02-26 13:14:40.28 2024-02-26 13:14:40.28 15000 FEE 439267 19322 6071924 2024-02-26 13:21:13.583 2024-02-26 13:21:13.583 1600 FEE 439274 14247 6071925 2024-02-26 13:21:13.583 2024-02-26 13:21:13.583 14400 TIP 439274 6537 6071927 2024-02-26 13:21:31.61 2024-02-26 13:21:31.61 1000 FEE 439063 17535 6071049 2024-02-26 11:29:03.271 2024-02-26 11:29:03.271 1000 STREAM 141924 20120 6071056 2024-02-26 11:30:03.316 2024-02-26 11:30:03.316 1000 STREAM 141924 19259 6071063 2024-02-26 11:31:03.283 2024-02-26 11:31:03.283 1000 STREAM 141924 19243 6071124 2024-02-26 11:38:03.409 2024-02-26 11:38:03.409 1000 STREAM 141924 4250 6071065 2024-02-26 11:31:17.282 2024-02-26 11:31:17.282 9000 TIP 438746 1221 6071081 2024-02-26 11:34:03.746 2024-02-26 11:34:03.746 2100 FEE 438973 2640 6071082 2024-02-26 11:34:03.746 2024-02-26 11:34:03.746 18900 TIP 438973 11275 6071088 2024-02-26 11:34:50.458 2024-02-26 11:34:50.458 2100 FEE 439088 10611 6071089 2024-02-26 11:34:50.458 2024-02-26 11:34:50.458 18900 TIP 439088 618 6071090 2024-02-26 11:34:52.677 2024-02-26 11:34:52.677 1000 FEE 439118 21472 6071093 2024-02-26 11:35:01.476 2024-02-26 11:35:01.476 1000 FEE 439108 695 6071094 2024-02-26 11:35:01.476 2024-02-26 11:35:01.476 9000 TIP 439108 18313 6071095 2024-02-26 11:35:01.986 2024-02-26 11:35:01.986 1000 FEE 439108 20133 6071096 2024-02-26 11:35:01.986 2024-02-26 11:35:01.986 9000 TIP 439108 19446 6071107 2024-02-26 11:35:45.861 2024-02-26 11:35:45.861 2100 FEE 439101 844 6071108 2024-02-26 11:35:45.861 2024-02-26 11:35:45.861 18900 TIP 439101 20849 6071117 2024-02-26 11:36:54.285 2024-02-26 11:36:54.285 3300 FEE 439112 616 6071118 2024-02-26 11:36:54.285 2024-02-26 11:36:54.285 29700 TIP 439112 16839 6071143 2024-02-26 11:43:20.105 2024-02-26 11:43:20.105 100 FEE 438390 11523 6071144 2024-02-26 11:43:20.105 2024-02-26 11:43:20.105 900 TIP 438390 2123 6071150 2024-02-26 11:44:23.971 2024-02-26 11:44:23.971 6900 FEE 439106 13361 6071151 2024-02-26 11:44:23.971 2024-02-26 11:44:23.971 62100 TIP 439106 14663 6071158 2024-02-26 11:44:25.284 2024-02-26 11:44:25.284 6900 FEE 439106 11670 6071159 2024-02-26 11:44:25.284 2024-02-26 11:44:25.284 62100 TIP 439106 20980 6071164 2024-02-26 11:44:36.314 2024-02-26 11:44:36.314 6900 FEE 439103 760 6071165 2024-02-26 11:44:36.314 2024-02-26 11:44:36.314 62100 TIP 439103 15941 6071240 2024-02-26 12:00:34.583 2024-02-26 12:00:34.583 10000 FEE 439135 19352 6071241 2024-02-26 12:00:54.226 2024-02-26 12:00:54.226 1000 FEE 439136 9494 6071244 2024-02-26 12:01:04.95 2024-02-26 12:01:04.95 1000 FEE 439138 17184 6071252 2024-02-26 12:03:04.596 2024-02-26 12:03:04.596 1000 FEE 439140 19952 6071269 2024-02-26 12:04:12.179 2024-02-26 12:04:12.179 2100 FEE 439029 15200 6071270 2024-02-26 12:04:12.179 2024-02-26 12:04:12.179 18900 TIP 439029 17953 6071271 2024-02-26 12:04:14.196 2024-02-26 12:04:14.196 2100 FEE 439002 14950 6071272 2024-02-26 12:04:14.196 2024-02-26 12:04:14.196 18900 TIP 439002 2196 6071273 2024-02-26 12:04:16.16 2024-02-26 12:04:16.16 500 FEE 438454 9378 6071274 2024-02-26 12:04:16.16 2024-02-26 12:04:16.16 4500 TIP 438454 17690 6071279 2024-02-26 12:04:31.807 2024-02-26 12:04:31.807 2100 FEE 439087 15052 6071280 2024-02-26 12:04:31.807 2024-02-26 12:04:31.807 18900 TIP 439087 716 6071287 2024-02-26 12:04:34.956 2024-02-26 12:04:34.956 2100 FEE 439088 15243 6071288 2024-02-26 12:04:34.956 2024-02-26 12:04:34.956 18900 TIP 439088 21079 6071339 2024-02-26 12:05:12.897 2024-02-26 12:05:12.897 2100 FEE 439098 795 6071340 2024-02-26 12:05:12.897 2024-02-26 12:05:12.897 18900 TIP 439098 6300 6071389 2024-02-26 12:14:50.016 2024-02-26 12:14:50.016 100 FEE 439139 10490 6071390 2024-02-26 12:14:50.016 2024-02-26 12:14:50.016 900 TIP 439139 2734 6071391 2024-02-26 12:14:59.291 2024-02-26 12:14:59.291 2100 FEE 439068 1713 6071392 2024-02-26 12:14:59.291 2024-02-26 12:14:59.291 18900 TIP 439068 2335 6071404 2024-02-26 12:18:09.896 2024-02-26 12:18:09.896 0 FEE 439155 19909 6071415 2024-02-26 12:19:22.411 2024-02-26 12:19:22.411 2100 FEE 438854 16706 6071416 2024-02-26 12:19:22.411 2024-02-26 12:19:22.411 18900 TIP 438854 2075 6071420 2024-02-26 12:20:07.569 2024-02-26 12:20:07.569 2100 FEE 438794 13132 6071421 2024-02-26 12:20:07.569 2024-02-26 12:20:07.569 18900 TIP 438794 19546 6071424 2024-02-26 12:20:15.863 2024-02-26 12:20:15.863 0 FEE 439152 6202 6071433 2024-02-26 12:21:18.92 2024-02-26 12:21:18.92 2100 FEE 439154 19570 6071434 2024-02-26 12:21:18.92 2024-02-26 12:21:18.92 18900 TIP 439154 20963 6071458 2024-02-26 12:24:58.226 2024-02-26 12:24:58.226 800 FEE 439145 21555 6071459 2024-02-26 12:24:58.226 2024-02-26 12:24:58.226 7200 TIP 439145 21455 6071498 2024-02-26 12:28:18.317 2024-02-26 12:28:18.317 1100 FEE 438737 8287 6071499 2024-02-26 12:28:18.317 2024-02-26 12:28:18.317 9900 TIP 438737 12483 6071506 2024-02-26 12:28:19.633 2024-02-26 12:28:19.633 1100 FEE 438737 19403 6071507 2024-02-26 12:28:19.633 2024-02-26 12:28:19.633 9900 TIP 438737 20137 6071514 2024-02-26 12:28:23.601 2024-02-26 12:28:23.601 1100 FEE 439139 21369 6071515 2024-02-26 12:28:23.601 2024-02-26 12:28:23.601 9900 TIP 439139 1488 6071522 2024-02-26 12:28:24.551 2024-02-26 12:28:24.551 1100 FEE 438651 1697 6071523 2024-02-26 12:28:24.551 2024-02-26 12:28:24.551 9900 TIP 438651 16284 6071546 2024-02-26 12:32:01.974 2024-02-26 12:32:01.974 4200 FEE 438389 15806 6071547 2024-02-26 12:32:01.974 2024-02-26 12:32:01.974 37800 TIP 438389 18119 6071556 2024-02-26 12:34:09.956 2024-02-26 12:34:09.956 10000 FEE 439174 1145 6071562 2024-02-26 12:35:46.818 2024-02-26 12:35:46.818 1000 FEE 439173 11820 6071563 2024-02-26 12:35:46.818 2024-02-26 12:35:46.818 9000 TIP 439173 17166 6071600 2024-02-26 12:39:41.816 2024-02-26 12:39:41.816 2100 FEE 439172 20840 6071601 2024-02-26 12:39:41.816 2024-02-26 12:39:41.816 18900 TIP 439172 18392 6071622 2024-02-26 12:40:02.03 2024-02-26 12:40:02.03 1000 FEE 439188 1326 6071624 2024-02-26 12:40:05.338 2024-02-26 12:40:05.338 1000 FEE 439189 12721 6071630 2024-02-26 12:40:46.549 2024-02-26 12:40:46.549 4200 FEE 438415 16788 6071631 2024-02-26 12:40:46.549 2024-02-26 12:40:46.549 37800 TIP 438415 9845 6071638 2024-02-26 12:41:22.211 2024-02-26 12:41:22.211 1000 FEE 439163 18313 6071075 2024-02-26 11:32:02.826 2024-02-26 11:32:02.826 1000 STREAM 141924 16834 6071080 2024-02-26 11:34:02.827 2024-02-26 11:34:02.827 1000 STREAM 141924 7899 6071097 2024-02-26 11:35:04.837 2024-02-26 11:35:04.837 1000 STREAM 141924 17171 6071109 2024-02-26 11:36:02.829 2024-02-26 11:36:02.829 1000 STREAM 141924 12097 6071119 2024-02-26 11:37:02.854 2024-02-26 11:37:02.854 1000 STREAM 141924 14247 6071079 2024-02-26 11:33:02.813 2024-02-26 11:33:02.813 1000 STREAM 141924 981 6071128 2024-02-26 11:41:02.864 2024-02-26 11:41:02.864 1000 STREAM 141924 9036 6071138 2024-02-26 11:43:02.905 2024-02-26 11:43:02.905 1000 STREAM 141924 2437 6071185 2024-02-26 11:47:02.948 2024-02-26 11:47:02.948 1000 STREAM 141924 21214 6071192 2024-02-26 11:49:02.985 2024-02-26 11:49:02.985 1000 STREAM 141924 5825 6071127 2024-02-26 11:40:03.428 2024-02-26 11:40:03.428 1000 STREAM 141924 18336 6071133 2024-02-26 11:42:03.438 2024-02-26 11:42:03.438 1000 STREAM 141924 18664 6071193 2024-02-26 11:50:03.504 2024-02-26 11:50:03.504 1000 STREAM 141924 683 6071198 2024-02-26 11:52:03.552 2024-02-26 11:52:03.552 1000 STREAM 141924 15147 6071212 2024-02-26 11:58:03.571 2024-02-26 11:58:03.571 1000 STREAM 141924 8074 6071248 2024-02-26 12:02:03.62 2024-02-26 12:02:03.62 1000 STREAM 141924 19890 6071268 2024-02-26 12:04:03.632 2024-02-26 12:04:03.632 1000 STREAM 141924 640 6071310 2024-02-26 12:05:03.648 2024-02-26 12:05:03.648 1000 STREAM 141924 9351 6071347 2024-02-26 12:07:03.66 2024-02-26 12:07:03.66 1000 STREAM 141924 20799 6071353 2024-02-26 12:09:03.689 2024-02-26 12:09:03.689 1000 STREAM 141924 16665 6071357 2024-02-26 12:11:03.697 2024-02-26 12:11:03.697 1000 STREAM 141924 17316 6071393 2024-02-26 12:15:03.736 2024-02-26 12:15:03.736 1000 STREAM 141924 18453 6071408 2024-02-26 12:19:03.786 2024-02-26 12:19:03.786 1000 STREAM 141924 18402 6071437 2024-02-26 12:22:03.799 2024-02-26 12:22:03.799 1000 STREAM 141924 15180 6071441 2024-02-26 12:23:03.798 2024-02-26 12:23:03.798 1000 STREAM 141924 797 6071450 2024-02-26 12:24:03.819 2024-02-26 12:24:03.819 1000 STREAM 141924 6594 6071460 2024-02-26 12:25:03.825 2024-02-26 12:25:03.825 1000 STREAM 141924 20602 6071470 2024-02-26 12:26:03.842 2024-02-26 12:26:03.842 1000 STREAM 141924 18378 6071472 2024-02-26 12:27:03.85 2024-02-26 12:27:03.85 1000 STREAM 141924 6616 6071531 2024-02-26 12:29:03.847 2024-02-26 12:29:03.847 1000 STREAM 141924 19557 6071545 2024-02-26 12:31:03.872 2024-02-26 12:31:03.872 1000 STREAM 141924 20663 6071558 2024-02-26 12:35:03.888 2024-02-26 12:35:03.888 1000 STREAM 141924 14280 6071567 2024-02-26 12:36:03.889 2024-02-26 12:36:03.889 1000 STREAM 141924 19664 6071571 2024-02-26 12:37:03.899 2024-02-26 12:37:03.899 1000 STREAM 141924 18396 6071592 2024-02-26 12:39:03.954 2024-02-26 12:39:03.954 1000 STREAM 141924 21239 6071681 2024-02-26 12:49:04.025 2024-02-26 12:49:04.025 1000 STREAM 141924 3371 6071703 2024-02-26 12:52:04.047 2024-02-26 12:52:04.047 1000 STREAM 141924 21287 6071709 2024-02-26 12:53:04.057 2024-02-26 12:53:04.057 1000 STREAM 141924 18816 6071728 2024-02-26 12:55:04.101 2024-02-26 12:55:04.101 1000 STREAM 141924 15273 6071741 2024-02-26 12:57:04.112 2024-02-26 12:57:04.112 1000 STREAM 141924 6268 6071754 2024-02-26 12:59:04.129 2024-02-26 12:59:04.129 1000 STREAM 141924 6268 6071777 2024-02-26 13:00:04.197 2024-02-26 13:00:04.197 1000 STREAM 141924 695 6071781 2024-02-26 13:01:04.17 2024-02-26 13:01:04.17 1000 STREAM 141924 13406 6071816 2024-02-26 13:03:04.169 2024-02-26 13:03:04.169 1000 STREAM 141924 17171 6071818 2024-02-26 13:04:04.179 2024-02-26 13:04:04.179 1000 STREAM 141924 2674 6071832 2024-02-26 13:06:04.2 2024-02-26 13:06:04.2 1000 STREAM 141924 11999 6071853 2024-02-26 13:09:04.268 2024-02-26 13:09:04.268 1000 STREAM 141924 5942 6071862 2024-02-26 13:10:04.233 2024-02-26 13:10:04.233 1000 STREAM 141924 618 6071867 2024-02-26 13:11:04.233 2024-02-26 13:11:04.233 1000 STREAM 141924 3304 6071868 2024-02-26 13:12:04.23 2024-02-26 13:12:04.23 1000 STREAM 141924 19403 6071877 2024-02-26 13:13:04.237 2024-02-26 13:13:04.237 1000 STREAM 141924 2774 6071878 2024-02-26 13:14:04.253 2024-02-26 13:14:04.253 1000 STREAM 141924 2508 6071902 2024-02-26 13:17:04.291 2024-02-26 13:17:04.291 1000 STREAM 141924 1326 6071912 2024-02-26 13:19:04.301 2024-02-26 13:19:04.301 1000 STREAM 141924 5527 6071945 2024-02-26 13:22:04.316 2024-02-26 13:22:04.316 1000 STREAM 141924 21044 6071961 2024-02-26 13:23:04.328 2024-02-26 13:23:04.328 1000 STREAM 141924 21463 6071969 2024-02-26 13:24:04.327 2024-02-26 13:24:04.327 1000 STREAM 141924 18368 6072029 2024-02-26 13:27:04.393 2024-02-26 13:27:04.393 1000 STREAM 141924 16284 6072053 2024-02-26 13:29:04.416 2024-02-26 13:29:04.416 1000 STREAM 141924 1624 6071190 2024-02-26 11:48:03.493 2024-02-26 11:48:03.493 1000 STREAM 141924 14552 6071207 2024-02-26 11:57:03.609 2024-02-26 11:57:03.609 1000 STREAM 141924 14774 6071195 2024-02-26 11:51:03.504 2024-02-26 11:51:03.504 1000 STREAM 141924 11263 6071199 2024-02-26 11:53:03.531 2024-02-26 11:53:03.531 1000 STREAM 141924 12808 6071201 2024-02-26 11:54:03.528 2024-02-26 11:54:03.528 1000 STREAM 141924 21164 6071204 2024-02-26 11:56:03.555 2024-02-26 11:56:03.555 1000 STREAM 141924 889 6071223 2024-02-26 11:59:03.581 2024-02-26 11:59:03.581 1000 STREAM 141924 21437 6071235 2024-02-26 12:00:03.657 2024-02-26 12:00:03.657 1000 STREAM 141924 9366 6071242 2024-02-26 12:01:03.599 2024-02-26 12:01:03.599 1000 STREAM 141924 2338 6071251 2024-02-26 12:03:03.618 2024-02-26 12:03:03.618 1000 STREAM 141924 5293 6071350 2024-02-26 12:08:03.67 2024-02-26 12:08:03.67 1000 STREAM 141924 11862 6071356 2024-02-26 12:10:03.71 2024-02-26 12:10:03.71 1000 STREAM 141924 13133 6071367 2024-02-26 12:12:03.716 2024-02-26 12:12:03.716 1000 STREAM 141924 21361 6071376 2024-02-26 12:13:03.724 2024-02-26 12:13:03.724 1000 STREAM 141924 17042 6071378 2024-02-26 12:14:03.725 2024-02-26 12:14:03.725 1000 STREAM 141924 622 6071396 2024-02-26 12:16:03.836 2024-02-26 12:16:03.836 1000 STREAM 141924 16230 6071400 2024-02-26 12:17:03.776 2024-02-26 12:17:03.776 1000 STREAM 141924 21555 6071403 2024-02-26 12:18:03.785 2024-02-26 12:18:03.785 1000 STREAM 141924 13100 6071419 2024-02-26 12:20:03.778 2024-02-26 12:20:03.778 1000 STREAM 141924 14152 6071429 2024-02-26 12:21:03.79 2024-02-26 12:21:03.79 1000 STREAM 141924 7674 6071495 2024-02-26 12:28:03.827 2024-02-26 12:28:03.827 1000 STREAM 141924 20152 6071544 2024-02-26 12:30:03.885 2024-02-26 12:30:03.885 1000 STREAM 141924 20781 6071548 2024-02-26 12:32:03.889 2024-02-26 12:32:03.889 1000 STREAM 141924 2961 6071552 2024-02-26 12:33:03.875 2024-02-26 12:33:03.875 1000 STREAM 141924 18816 6071555 2024-02-26 12:34:03.882 2024-02-26 12:34:03.882 1000 STREAM 141924 880 6071580 2024-02-26 12:38:03.902 2024-02-26 12:38:03.902 1000 STREAM 141924 19154 6071623 2024-02-26 12:40:03.914 2024-02-26 12:40:03.914 1000 STREAM 141924 1326 6071636 2024-02-26 12:41:03.922 2024-02-26 12:41:03.922 1000 STREAM 141924 15463 6071644 2024-02-26 12:42:03.931 2024-02-26 12:42:03.931 1000 STREAM 141924 19005 6071647 2024-02-26 12:43:03.949 2024-02-26 12:43:03.949 1000 STREAM 141924 14045 6071651 2024-02-26 12:44:03.924 2024-02-26 12:44:03.924 1000 STREAM 141924 12272 6071655 2024-02-26 12:45:03.928 2024-02-26 12:45:03.928 1000 STREAM 141924 13527 6071668 2024-02-26 12:46:03.953 2024-02-26 12:46:03.953 1000 STREAM 141924 5565 6071676 2024-02-26 12:47:03.97 2024-02-26 12:47:03.97 1000 STREAM 141924 695 6071680 2024-02-26 12:48:03.986 2024-02-26 12:48:03.986 1000 STREAM 141924 18919 6071686 2024-02-26 12:50:04.046 2024-02-26 12:50:04.046 1000 STREAM 141924 21119 6071700 2024-02-26 12:51:04.036 2024-02-26 12:51:04.036 1000 STREAM 141924 16649 6071721 2024-02-26 12:54:04.075 2024-02-26 12:54:04.075 1000 STREAM 141924 1772 6071730 2024-02-26 12:56:04.1 2024-02-26 12:56:04.1 1000 STREAM 141924 2203 6071751 2024-02-26 12:58:04.118 2024-02-26 12:58:04.118 1000 STREAM 141924 18679 6071785 2024-02-26 13:02:04.162 2024-02-26 13:02:04.162 1000 STREAM 141924 701 6071829 2024-02-26 13:05:04.19 2024-02-26 13:05:04.19 1000 STREAM 141924 5293 6071846 2024-02-26 13:07:04.202 2024-02-26 13:07:04.202 1000 STREAM 141924 9183 6071851 2024-02-26 13:08:04.215 2024-02-26 13:08:04.215 1000 STREAM 141924 4502 6071888 2024-02-26 13:15:04.264 2024-02-26 13:15:04.264 1000 STREAM 141924 20023 6071899 2024-02-26 13:16:04.278 2024-02-26 13:16:04.278 1000 STREAM 141924 18919 6071907 2024-02-26 13:18:04.297 2024-02-26 13:18:04.297 1000 STREAM 141924 6471 6071916 2024-02-26 13:20:04.307 2024-02-26 13:20:04.307 1000 STREAM 141924 20776 6071920 2024-02-26 13:21:04.33 2024-02-26 13:21:04.33 1000 STREAM 141924 8074 6072005 2024-02-26 13:25:04.355 2024-02-26 13:25:04.355 1000 STREAM 141924 9354 6072026 2024-02-26 13:26:04.375 2024-02-26 13:26:04.375 1000 STREAM 141924 2525 6072040 2024-02-26 13:28:04.395 2024-02-26 13:28:04.395 1000 STREAM 141924 696 6072244 2024-02-26 13:38:04.529 2024-02-26 13:38:04.529 1000 STREAM 141924 18220 6072249 2024-02-26 13:40:04.534 2024-02-26 13:40:04.534 1000 STREAM 141924 7966 6072312 2024-02-26 13:42:04.561 2024-02-26 13:42:04.561 1000 STREAM 141924 1438 6072534 2024-02-26 13:55:04.709 2024-02-26 13:55:04.709 1000 STREAM 141924 8400 6072545 2024-02-26 13:56:04.739 2024-02-26 13:56:04.739 1000 STREAM 141924 21090 6072554 2024-02-26 13:58:04.734 2024-02-26 13:58:04.734 1000 STREAM 141924 21437 6071202 2024-02-26 11:55:03.59 2024-02-26 11:55:03.59 1000 STREAM 141924 5646 6071245 2024-02-26 12:01:31.399 2024-02-26 12:01:31.399 1000 FEE 439134 7510 6071246 2024-02-26 12:01:31.399 2024-02-26 12:01:31.399 9000 TIP 439134 20287 6071253 2024-02-26 12:03:07.405 2024-02-26 12:03:07.405 1000 FEE 439139 13076 6071254 2024-02-26 12:03:07.405 2024-02-26 12:03:07.405 9000 TIP 439139 4076 6071304 2024-02-26 12:04:52.787 2024-02-26 12:04:52.787 2100 FEE 439099 20826 6071305 2024-02-26 12:04:52.787 2024-02-26 12:04:52.787 18900 TIP 439099 20594 6071313 2024-02-26 12:05:10.694 2024-02-26 12:05:10.694 300 FEE 439106 20554 6071314 2024-02-26 12:05:10.694 2024-02-26 12:05:10.694 2700 TIP 439106 20738 6071323 2024-02-26 12:05:11.572 2024-02-26 12:05:11.572 300 FEE 439106 10493 6071324 2024-02-26 12:05:11.572 2024-02-26 12:05:11.572 2700 TIP 439106 16276 6071327 2024-02-26 12:05:11.96 2024-02-26 12:05:11.96 300 FEE 439106 2285 6071328 2024-02-26 12:05:11.96 2024-02-26 12:05:11.96 2700 TIP 439106 4388 6071333 2024-02-26 12:05:12.507 2024-02-26 12:05:12.507 300 FEE 439106 12277 6071334 2024-02-26 12:05:12.507 2024-02-26 12:05:12.507 2700 TIP 439106 17109 6071358 2024-02-26 12:11:32.935 2024-02-26 12:11:32.935 4000 FEE 439142 20464 6071359 2024-02-26 12:11:32.935 2024-02-26 12:11:32.935 36000 TIP 439142 17696 6071381 2024-02-26 12:14:18.354 2024-02-26 12:14:18.354 1000 FEE 438973 9353 6071382 2024-02-26 12:14:18.354 2024-02-26 12:14:18.354 9000 TIP 438973 19660 6071394 2024-02-26 12:15:21.84 2024-02-26 12:15:21.84 0 FEE 439148 2741 6071405 2024-02-26 12:18:20.795 2024-02-26 12:18:20.795 10000 FEE 439157 19909 6071411 2024-02-26 12:19:05.229 2024-02-26 12:19:05.229 2100 FEE 439014 928 6071412 2024-02-26 12:19:05.229 2024-02-26 12:19:05.229 18900 TIP 439014 1142 6071438 2024-02-26 12:22:23.751 2024-02-26 12:22:23.751 2100 FEE 439154 21463 6071439 2024-02-26 12:22:23.751 2024-02-26 12:22:23.751 18900 TIP 439154 16505 6071444 2024-02-26 12:24:00.291 2024-02-26 12:24:00.291 1000 FEE 439134 21374 6071445 2024-02-26 12:24:00.291 2024-02-26 12:24:00.291 9000 TIP 439134 19980 6071454 2024-02-26 12:24:39.234 2024-02-26 12:24:39.234 1000 POLL 438794 11760 6071461 2024-02-26 12:25:09.015 2024-02-26 12:25:09.015 1000 FEE 439137 1505 6071462 2024-02-26 12:25:09.015 2024-02-26 12:25:09.015 9000 TIP 439137 21138 6071466 2024-02-26 12:25:24.881 2024-02-26 12:25:24.881 10000 FEE 439165 13399 6071489 2024-02-26 12:27:57.638 2024-02-26 12:27:57.638 1100 FEE 438691 6030 6071490 2024-02-26 12:27:57.638 2024-02-26 12:27:57.638 9900 TIP 438691 18262 6071502 2024-02-26 12:28:19.02 2024-02-26 12:28:19.02 1100 FEE 438737 17227 6071503 2024-02-26 12:28:19.02 2024-02-26 12:28:19.02 9900 TIP 438737 9350 6071512 2024-02-26 12:28:23.462 2024-02-26 12:28:23.462 1100 FEE 439139 19512 6071513 2024-02-26 12:28:23.462 2024-02-26 12:28:23.462 9900 TIP 439139 19541 6071524 2024-02-26 12:28:24.684 2024-02-26 12:28:24.684 1100 FEE 438651 16724 6071525 2024-02-26 12:28:24.684 2024-02-26 12:28:24.684 9900 TIP 438651 13327 6071532 2024-02-26 12:29:16.765 2024-02-26 12:29:16.765 100 FEE 439075 1769 6071533 2024-02-26 12:29:16.765 2024-02-26 12:29:16.765 900 TIP 439075 16988 6071542 2024-02-26 12:29:21.351 2024-02-26 12:29:21.351 10000 FEE 439154 20924 6071543 2024-02-26 12:29:21.351 2024-02-26 12:29:21.351 90000 TIP 439154 11417 6071550 2024-02-26 12:32:20.461 2024-02-26 12:32:20.461 1000 FEE 439170 19837 6071553 2024-02-26 12:33:47.143 2024-02-26 12:33:47.143 1000 FEE 439172 21048 6071554 2024-02-26 12:33:49.9 2024-02-26 12:33:49.9 21000 FEE 439173 12291 6071559 2024-02-26 12:35:35.514 2024-02-26 12:35:35.514 1000 FEE 439176 8284 6071564 2024-02-26 12:35:52.253 2024-02-26 12:35:52.253 2100 FEE 439025 11153 6071565 2024-02-26 12:35:52.253 2024-02-26 12:35:52.253 18900 TIP 439025 19546 6071577 2024-02-26 12:37:52.202 2024-02-26 12:37:52.202 4200 FEE 438691 7376 6071578 2024-02-26 12:37:52.202 2024-02-26 12:37:52.202 37800 TIP 438691 1697 6071584 2024-02-26 12:38:32.509 2024-02-26 12:38:32.509 2100 FEE 439142 18664 6071585 2024-02-26 12:38:32.509 2024-02-26 12:38:32.509 18900 TIP 439142 697 6071608 2024-02-26 12:39:47.933 2024-02-26 12:39:47.933 2100 FEE 439178 20624 6071609 2024-02-26 12:39:47.933 2024-02-26 12:39:47.933 18900 TIP 439178 21506 6071629 2024-02-26 12:40:41.245 2024-02-26 12:40:41.245 1000 FEE 439192 18735 6071656 2024-02-26 12:45:11.15 2024-02-26 12:45:11.15 1000 FEE 439200 1162 6071687 2024-02-26 12:50:20.652 2024-02-26 12:50:20.652 1000 FEE 439208 1008 6071696 2024-02-26 12:50:43.472 2024-02-26 12:50:43.472 100000 FEE 439209 18448 6071697 2024-02-26 12:50:52.434 2024-02-26 12:50:52.434 1000 FEE 439210 20987 6071710 2024-02-26 12:53:22.198 2024-02-26 12:53:22.198 1000 FEE 439216 1602 6071722 2024-02-26 12:54:17.627 2024-02-26 12:54:17.627 1000 FEE 439221 11144 6071731 2024-02-26 12:56:05.911 2024-02-26 12:56:05.911 100000 FEE 439226 6030 6071765 2024-02-26 12:59:11.644 2024-02-26 12:59:11.644 1000 FEE 439139 4173 6071766 2024-02-26 12:59:11.644 2024-02-26 12:59:11.644 9000 TIP 439139 1471 6071771 2024-02-26 12:59:16.454 2024-02-26 12:59:16.454 1000 FEE 439235 9171 6071772 2024-02-26 12:59:22.481 2024-02-26 12:59:22.481 10000 FEE 439236 18745 6071790 2024-02-26 13:02:08.181 2024-02-26 13:02:08.181 1000 FEE 438325 20562 6071791 2024-02-26 13:02:08.181 2024-02-26 13:02:08.181 9000 TIP 438325 5646 6071344 2024-02-26 12:06:03.769 2024-02-26 12:06:03.769 1000 STREAM 141924 9920 6071435 2024-02-26 12:21:19.011 2024-02-26 12:21:19.011 2100 FEE 439158 7818 6071436 2024-02-26 12:21:19.011 2024-02-26 12:21:19.011 18900 TIP 439158 2431 6071464 2024-02-26 12:25:14.641 2024-02-26 12:25:14.641 2100 FEE 439051 2232 6071465 2024-02-26 12:25:14.641 2024-02-26 12:25:14.641 18900 TIP 439051 12976 6071473 2024-02-26 12:27:52.163 2024-02-26 12:27:52.163 1000 FEE 439166 18208 6071474 2024-02-26 12:27:52.163 2024-02-26 12:27:52.163 9000 TIP 439166 19864 6071569 2024-02-26 12:36:27.885 2024-02-26 12:36:27.885 1000 FEE 439179 2703 6071576 2024-02-26 12:37:45.364 2024-02-26 12:37:45.364 1000 FEE 439183 694 6071587 2024-02-26 12:38:41.818 2024-02-26 12:38:41.818 4200 FEE 438211 14045 6071588 2024-02-26 12:38:41.818 2024-02-26 12:38:41.818 37800 TIP 438211 21387 6071595 2024-02-26 12:39:13.041 2024-02-26 12:39:13.041 0 FEE 439187 11477 6071614 2024-02-26 12:39:52.097 2024-02-26 12:39:52.097 2100 FEE 439183 1713 6071615 2024-02-26 12:39:52.097 2024-02-26 12:39:52.097 18900 TIP 439183 2780 6071640 2024-02-26 12:41:22.677 2024-02-26 12:41:22.677 1000 FEE 439163 16193 6071641 2024-02-26 12:41:22.677 2024-02-26 12:41:22.677 9000 TIP 439163 17162 6071643 2024-02-26 12:41:33.382 2024-02-26 12:41:33.382 1000 FEE 439195 20924 6071663 2024-02-26 12:45:28.032 2024-02-26 12:45:28.032 100 FEE 439169 9906 6071664 2024-02-26 12:45:28.032 2024-02-26 12:45:28.032 900 TIP 439169 14650 6071665 2024-02-26 12:45:28.29 2024-02-26 12:45:28.29 100 FEE 439169 21395 6071666 2024-02-26 12:45:28.29 2024-02-26 12:45:28.29 900 TIP 439169 8459 6071692 2024-02-26 12:50:34.229 2024-02-26 12:50:34.229 400 FEE 438853 18994 6071693 2024-02-26 12:50:34.229 2024-02-26 12:50:34.229 3600 TIP 438853 21218 6071705 2024-02-26 12:52:33.827 2024-02-26 12:52:33.827 1000 FEE 439214 5522 6071706 2024-02-26 12:52:41.864 2024-02-26 12:52:41.864 5000 FEE 439191 17798 6071707 2024-02-26 12:52:41.864 2024-02-26 12:52:41.864 45000 TIP 439191 19546 6071711 2024-02-26 12:53:26.59 2024-02-26 12:53:26.59 1000 FEE 439217 11938 6071713 2024-02-26 12:53:31.38 2024-02-26 12:53:31.38 600 FEE 439130 4292 6071714 2024-02-26 12:53:31.38 2024-02-26 12:53:31.38 5400 TIP 439130 2577 6071719 2024-02-26 12:53:45.116 2024-02-26 12:53:45.116 1000 FEE 439219 19952 6071727 2024-02-26 12:54:53.004 2024-02-26 12:54:53.004 69000 DONT_LIKE_THIS 439149 999 6071729 2024-02-26 12:55:45.626 2024-02-26 12:55:45.626 1000 FEE 439225 19121 6071736 2024-02-26 12:56:31.464 2024-02-26 12:56:31.464 1000 FEE 439227 8926 6071740 2024-02-26 12:56:58.919 2024-02-26 12:56:58.919 1000 FEE 439229 20691 6071742 2024-02-26 12:57:24.783 2024-02-26 12:57:24.783 10000 FEE 439230 7760 6071745 2024-02-26 12:57:42.575 2024-02-26 12:57:42.575 6900 FEE 439157 15196 6071746 2024-02-26 12:57:42.575 2024-02-26 12:57:42.575 62100 TIP 439157 17517 6071774 2024-02-26 12:59:42.976 2024-02-26 12:59:42.976 10000 FEE 439238 2577 6071778 2024-02-26 13:00:07.871 2024-02-26 13:00:07.871 100 FEE 439226 18956 6071779 2024-02-26 13:00:07.871 2024-02-26 13:00:07.871 900 TIP 439226 20340 6071486 2024-02-26 12:27:57.364 2024-02-26 12:27:57.364 9900 TIP 438691 1802 6071491 2024-02-26 12:27:59.32 2024-02-26 12:27:59.32 1100 FEE 438583 7185 6071492 2024-02-26 12:27:59.32 2024-02-26 12:27:59.32 9900 TIP 438583 18219 6071518 2024-02-26 12:28:24.238 2024-02-26 12:28:24.238 1100 FEE 438651 16336 6071519 2024-02-26 12:28:24.238 2024-02-26 12:28:24.238 9900 TIP 438651 4819 6071530 2024-02-26 12:28:30.056 2024-02-26 12:28:30.056 1000 FEE 439168 1571 6071536 2024-02-26 12:29:17.01 2024-02-26 12:29:17.01 100 FEE 439075 20523 6071537 2024-02-26 12:29:17.01 2024-02-26 12:29:17.01 900 TIP 439075 3411 6071538 2024-02-26 12:29:17.97 2024-02-26 12:29:17.97 100 FEE 439038 21247 6071539 2024-02-26 12:29:17.97 2024-02-26 12:29:17.97 900 TIP 439038 16724 6071551 2024-02-26 12:32:41.431 2024-02-26 12:32:41.431 10000 FEE 439171 21178 6071573 2024-02-26 12:37:31.464 2024-02-26 12:37:31.464 100 FEE 439093 1208 6071574 2024-02-26 12:37:31.464 2024-02-26 12:37:31.464 900 TIP 439093 16505 6071598 2024-02-26 12:39:33.594 2024-02-26 12:39:33.594 100 FEE 439170 15577 6071599 2024-02-26 12:39:33.594 2024-02-26 12:39:33.594 900 TIP 439170 8729 6071616 2024-02-26 12:39:53.578 2024-02-26 12:39:53.578 2100 FEE 439184 3396 6071617 2024-02-26 12:39:53.578 2024-02-26 12:39:53.578 18900 TIP 439184 14959 6071618 2024-02-26 12:39:57.709 2024-02-26 12:39:57.709 100 FEE 439151 4378 6071619 2024-02-26 12:39:57.709 2024-02-26 12:39:57.709 900 TIP 439151 6419 6071632 2024-02-26 12:40:52.523 2024-02-26 12:40:52.523 12100 FEE 439187 20182 6071633 2024-02-26 12:40:52.523 2024-02-26 12:40:52.523 108900 TIP 439187 1814 6071652 2024-02-26 12:44:29.931 2024-02-26 12:44:29.931 10000 FEE 439192 17106 6071653 2024-02-26 12:44:29.931 2024-02-26 12:44:29.931 90000 TIP 439192 27 6071654 2024-02-26 12:44:42.103 2024-02-26 12:44:42.103 10000 FEE 439199 4314 6071670 2024-02-26 12:46:35.501 2024-02-26 12:46:35.501 1000 FEE 439161 11516 6071671 2024-02-26 12:46:35.501 2024-02-26 12:46:35.501 9000 TIP 439161 1845 6071672 2024-02-26 12:46:44.359 2024-02-26 12:46:44.359 1000 FEE 439150 21485 6071673 2024-02-26 12:46:44.359 2024-02-26 12:46:44.359 9000 TIP 439150 844 6071684 2024-02-26 12:49:24.905 2024-02-26 12:49:24.905 1000 FEE 439206 15560 6071690 2024-02-26 12:50:27.33 2024-02-26 12:50:27.33 400 FEE 438941 5160 6071691 2024-02-26 12:50:27.33 2024-02-26 12:50:27.33 3600 TIP 438941 749 6071694 2024-02-26 12:50:39.619 2024-02-26 12:50:39.619 400 FEE 438844 18517 6071695 2024-02-26 12:50:39.619 2024-02-26 12:50:39.619 3600 TIP 438844 4763 6071720 2024-02-26 12:53:54.168 2024-02-26 12:53:54.168 1000 FEE 439220 19463 6071725 2024-02-26 12:54:43.766 2024-02-26 12:54:43.766 69000 DONT_LIKE_THIS 439165 5694 6071734 2024-02-26 12:56:24.562 2024-02-26 12:56:24.562 100 FEE 439173 5293 6071735 2024-02-26 12:56:24.562 2024-02-26 12:56:24.562 900 TIP 439173 6421 6071757 2024-02-26 12:59:04.33 2024-02-26 12:59:04.33 1000 FEE 439139 5758 6071758 2024-02-26 12:59:04.33 2024-02-26 12:59:04.33 9000 TIP 439139 19375 6071761 2024-02-26 12:59:06.434 2024-02-26 12:59:06.434 1000 FEE 439139 21389 6071762 2024-02-26 12:59:06.434 2024-02-26 12:59:06.434 9000 TIP 439139 13198 6071775 2024-02-26 12:59:57.803 2024-02-26 12:59:57.803 100 FEE 439230 713 6071776 2024-02-26 12:59:57.803 2024-02-26 12:59:57.803 900 TIP 439230 18945 6071784 2024-02-26 13:01:57.413 2024-02-26 13:01:57.413 1000 FEE 439242 19770 6071792 2024-02-26 13:02:08.317 2024-02-26 13:02:08.317 1000 FEE 438325 16876 6071793 2024-02-26 13:02:08.317 2024-02-26 13:02:08.317 9000 TIP 438325 19435 6071794 2024-02-26 13:02:08.512 2024-02-26 13:02:08.512 1000 FEE 438325 11091 6071795 2024-02-26 13:02:08.512 2024-02-26 13:02:08.512 9000 TIP 438325 10530 6071803 2024-02-26 13:02:10.312 2024-02-26 13:02:10.312 1000 FEE 438325 666 6071804 2024-02-26 13:02:10.312 2024-02-26 13:02:10.312 9000 TIP 438325 21012 6071815 2024-02-26 13:02:58.369 2024-02-26 13:02:58.369 1000 FEE 439246 16309 6071817 2024-02-26 13:03:46.174 2024-02-26 13:03:46.174 1000 FEE 439247 4798 6071831 2024-02-26 13:05:43.133 2024-02-26 13:05:43.133 1000 POLL 438794 18836 6071837 2024-02-26 13:06:38.012 2024-02-26 13:06:38.012 200 FEE 301869 14213 6071838 2024-02-26 13:06:38.012 2024-02-26 13:06:38.012 1800 TIP 301869 4819 6071870 2024-02-26 13:12:29.136 2024-02-26 13:12:29.136 0 FEE 439245 21047 6071884 2024-02-26 13:14:33.188 2024-02-26 13:14:33.188 0 FEE 439263 16052 6071893 2024-02-26 13:15:40.456 2024-02-26 13:15:40.456 1000 FEE 439270 1611 6071903 2024-02-26 13:17:08.647 2024-02-26 13:17:08.647 3100 FEE 438990 11165 6071904 2024-02-26 13:17:08.647 2024-02-26 13:17:08.647 27900 TIP 438990 4323 6071931 2024-02-26 13:21:32.768 2024-02-26 13:21:32.768 1000 FEE 439063 11992 6071932 2024-02-26 13:21:32.768 2024-02-26 13:21:32.768 9000 TIP 439063 9200 6071936 2024-02-26 13:21:34.715 2024-02-26 13:21:34.715 1000 FEE 439063 5961 6071937 2024-02-26 13:21:34.715 2024-02-26 13:21:34.715 9000 TIP 439063 20657 6071940 2024-02-26 13:21:48.944 2024-02-26 13:21:48.944 100 FEE 439262 21413 6071941 2024-02-26 13:21:48.944 2024-02-26 13:21:48.944 900 TIP 439262 3706 6071968 2024-02-26 13:23:52.272 2024-02-26 13:23:52.272 100000 FEE 439283 19121 6071994 2024-02-26 13:24:56.252 2024-02-26 13:24:56.252 100 FEE 113193 16440 6071995 2024-02-26 13:24:56.252 2024-02-26 13:24:56.252 900 TIP 113193 1114 6071998 2024-02-26 13:24:56.579 2024-02-26 13:24:56.579 100 FEE 113193 18402 6071999 2024-02-26 13:24:56.579 2024-02-26 13:24:56.579 900 TIP 113193 11789 6072006 2024-02-26 13:25:05.213 2024-02-26 13:25:05.213 2100 FEE 438687 9874 6072007 2024-02-26 13:25:05.213 2024-02-26 13:25:05.213 18900 TIP 438687 21247 6072020 2024-02-26 13:25:47.652 2024-02-26 13:25:47.652 1000 FEE 439252 5449 6072021 2024-02-26 13:25:47.652 2024-02-26 13:25:47.652 9000 TIP 439252 11018 6072022 2024-02-26 13:25:49.333 2024-02-26 13:25:49.333 100 FEE 439178 17523 6072023 2024-02-26 13:25:49.333 2024-02-26 13:25:49.333 900 TIP 439178 16145 6072037 2024-02-26 13:27:46.584 2024-02-26 13:27:46.584 1000 FEE 439289 993 6071508 2024-02-26 12:28:19.73 2024-02-26 12:28:19.73 1100 FEE 438737 705 6071509 2024-02-26 12:28:19.73 2024-02-26 12:28:19.73 9900 TIP 438737 17693 6071526 2024-02-26 12:28:25.481 2024-02-26 12:28:25.481 1100 FEE 438794 9705 6071527 2024-02-26 12:28:25.481 2024-02-26 12:28:25.481 9900 TIP 438794 21539 6071534 2024-02-26 12:29:16.944 2024-02-26 12:29:16.944 10000 FEE 439130 20129 6071535 2024-02-26 12:29:16.944 2024-02-26 12:29:16.944 90000 TIP 439130 992 6071557 2024-02-26 12:34:44.469 2024-02-26 12:34:44.469 1000 FEE 439175 882 6071575 2024-02-26 12:37:36.721 2024-02-26 12:37:36.721 10000 FEE 439182 21296 6071581 2024-02-26 12:38:08.639 2024-02-26 12:38:08.639 2100 FEE 439182 4167 6071582 2024-02-26 12:38:08.639 2024-02-26 12:38:08.639 18900 TIP 439182 18995 6071590 2024-02-26 12:39:03.269 2024-02-26 12:39:03.269 2100 FEE 439127 16513 6071591 2024-02-26 12:39:03.269 2024-02-26 12:39:03.269 18900 TIP 439127 8004 6071602 2024-02-26 12:39:43.482 2024-02-26 12:39:43.482 2100 FEE 439174 18581 6071603 2024-02-26 12:39:43.482 2024-02-26 12:39:43.482 18900 TIP 439174 713 6071612 2024-02-26 12:39:49.932 2024-02-26 12:39:49.932 2100 FEE 439180 19320 6071613 2024-02-26 12:39:49.932 2024-02-26 12:39:49.932 18900 TIP 439180 17157 6071620 2024-02-26 12:39:59.361 2024-02-26 12:39:59.361 2100 FEE 439186 19500 6071621 2024-02-26 12:39:59.361 2024-02-26 12:39:59.361 18900 TIP 439186 20606 6071657 2024-02-26 12:45:25.801 2024-02-26 12:45:25.801 100 FEE 439169 15491 6071658 2024-02-26 12:45:25.801 2024-02-26 12:45:25.801 900 TIP 439169 20479 6071667 2024-02-26 12:45:34.921 2024-02-26 12:45:34.921 1000 FEE 439201 19976 6071674 2024-02-26 12:46:56.814 2024-02-26 12:46:56.814 1000 FEE 439130 9969 6071675 2024-02-26 12:46:56.814 2024-02-26 12:46:56.814 9000 TIP 439130 20102 6071683 2024-02-26 12:49:19.149 2024-02-26 12:49:19.149 100000 FEE 439205 1959 6071698 2024-02-26 12:50:56.141 2024-02-26 12:50:56.141 6900 FEE 439151 2681 6071699 2024-02-26 12:50:56.141 2024-02-26 12:50:56.141 62100 TIP 439151 21271 6071701 2024-02-26 12:51:22.783 2024-02-26 12:51:22.783 1000 FEE 439211 761 6071702 2024-02-26 12:51:49.252 2024-02-26 12:51:49.252 1000 FEE 439212 979 6071708 2024-02-26 12:52:50.964 2024-02-26 12:52:50.964 10000 FEE 439215 5590 6071726 2024-02-26 12:54:52.707 2024-02-26 12:54:52.707 1000 FEE 439224 9352 6071737 2024-02-26 12:56:43.164 2024-02-26 12:56:43.164 100 FEE 439164 12561 6071738 2024-02-26 12:56:43.164 2024-02-26 12:56:43.164 900 TIP 439164 1428 6071759 2024-02-26 12:59:04.882 2024-02-26 12:59:04.882 1000 FEE 439139 15060 6071760 2024-02-26 12:59:04.882 2024-02-26 12:59:04.882 9000 TIP 439139 14545 6071797 2024-02-26 13:02:09.739 2024-02-26 13:02:09.739 1000 FEE 438325 5746 6071798 2024-02-26 13:02:09.739 2024-02-26 13:02:09.739 9000 TIP 438325 19890 6071807 2024-02-26 13:02:10.735 2024-02-26 13:02:10.735 1000 FEE 438325 18673 6071808 2024-02-26 13:02:10.735 2024-02-26 13:02:10.735 9000 TIP 438325 21090 6071814 2024-02-26 13:02:31.491 2024-02-26 13:02:31.491 1000 FEE 439245 20436 6071822 2024-02-26 13:04:23.983 2024-02-26 13:04:23.983 1000 FEE 439248 1209 6071825 2024-02-26 13:04:45.62 2024-02-26 13:04:45.62 10000 FEE 439147 2942 6071826 2024-02-26 13:04:45.62 2024-02-26 13:04:45.62 90000 TIP 439147 669 6071834 2024-02-26 13:06:14.45 2024-02-26 13:06:14.45 1000 FEE 439253 18525 6071848 2024-02-26 13:07:32.728 2024-02-26 13:07:32.728 1000 FEE 439257 17727 6071849 2024-02-26 13:07:38.326 2024-02-26 13:07:38.326 4000 FEE 439226 7510 6071850 2024-02-26 13:07:38.326 2024-02-26 13:07:38.326 36000 TIP 439226 6137 6071866 2024-02-26 13:11:03.514 2024-02-26 13:11:03.514 1000 FEE 439264 13903 6071891 2024-02-26 13:15:33.295 2024-02-26 13:15:33.295 2100 FEE 439266 1673 6071892 2024-02-26 13:15:33.295 2024-02-26 13:15:33.295 18900 TIP 439266 7760 6071897 2024-02-26 13:15:48.401 2024-02-26 13:15:48.401 1600 FEE 439147 15484 6071898 2024-02-26 13:15:48.401 2024-02-26 13:15:48.401 14400 TIP 439147 3518 6071900 2024-02-26 13:16:14.759 2024-02-26 13:16:14.759 11100 FEE 439139 20015 6071901 2024-02-26 13:16:14.759 2024-02-26 13:16:14.759 99900 TIP 439139 20110 6071913 2024-02-26 13:19:08.141 2024-02-26 13:19:08.141 1000 FEE 439274 1429 6071970 2024-02-26 13:24:08.662 2024-02-26 13:24:08.662 1000 FEE 439284 1490 6071980 2024-02-26 13:24:46.551 2024-02-26 13:24:46.551 2100 FEE 438970 10693 6071981 2024-02-26 13:24:46.551 2024-02-26 13:24:46.551 18900 TIP 438970 1723 6072027 2024-02-26 13:26:57.38 2024-02-26 13:26:57.38 100000 FEE 439286 20156 6072052 2024-02-26 13:29:02.066 2024-02-26 13:29:02.066 1000 FEE 439293 20594 6072061 2024-02-26 13:29:44.823 2024-02-26 13:29:44.823 1000 FEE 438765 7673 6072062 2024-02-26 13:29:44.823 2024-02-26 13:29:44.823 9000 TIP 438765 5293 6072104 2024-02-26 13:31:43.808 2024-02-26 13:31:43.808 100000 FEE 439298 21406 6072154 2024-02-26 13:33:36.807 2024-02-26 13:33:36.807 100000 FEE 439302 1039 6072169 2024-02-26 13:34:15.263 2024-02-26 13:34:15.263 1000 FEE 439147 9820 6072170 2024-02-26 13:34:15.263 2024-02-26 13:34:15.263 9000 TIP 439147 20754 6072171 2024-02-26 13:34:16.962 2024-02-26 13:34:16.962 3000 FEE 439147 5825 6072172 2024-02-26 13:34:16.962 2024-02-26 13:34:16.962 27000 TIP 439147 895 6072183 2024-02-26 13:34:26.647 2024-02-26 13:34:26.647 1000 FEE 438936 21021 6072184 2024-02-26 13:34:26.647 2024-02-26 13:34:26.647 9000 TIP 438936 21342 6072207 2024-02-26 13:34:57.329 2024-02-26 13:34:57.329 1000 FEE 439306 13763 6072232 2024-02-26 13:36:44.592 2024-02-26 13:36:44.592 2100 FEE 439263 5487 6072233 2024-02-26 13:36:44.592 2024-02-26 13:36:44.592 18900 TIP 439263 18529 6072252 2024-02-26 13:40:11.709 2024-02-26 13:40:11.709 2100 FEE 439147 5794 6072253 2024-02-26 13:40:11.709 2024-02-26 13:40:11.709 18900 TIP 439147 18177 6072254 2024-02-26 13:40:12.343 2024-02-26 13:40:12.343 2100 FEE 438973 19309 6072255 2024-02-26 13:40:12.343 2024-02-26 13:40:12.343 18900 TIP 438973 2639 6072258 2024-02-26 13:40:16.522 2024-02-26 13:40:16.522 2100 FEE 439142 1003 6072259 2024-02-26 13:40:16.522 2024-02-26 13:40:16.522 18900 TIP 439142 17541 6072262 2024-02-26 13:40:20.942 2024-02-26 13:40:20.942 1100 FEE 439069 10549 6072263 2024-02-26 13:40:20.942 2024-02-26 13:40:20.942 9900 TIP 439069 19826 6072266 2024-02-26 13:40:28.111 2024-02-26 13:40:28.111 1000 FEE 439311 11956 6072268 2024-02-26 13:40:51.781 2024-02-26 13:40:51.781 1000 FEE 439313 20775 6072296 2024-02-26 13:41:45.49 2024-02-26 13:41:45.49 2100 FEE 439263 1720 6072297 2024-02-26 13:41:45.49 2024-02-26 13:41:45.49 18900 TIP 439263 4984 6072331 2024-02-26 13:43:05.391 2024-02-26 13:43:05.391 10000 FEE 438983 11789 6072332 2024-02-26 13:43:05.391 2024-02-26 13:43:05.391 90000 TIP 438983 7960 6072353 2024-02-26 13:44:23.585 2024-02-26 13:44:23.585 1000 FEE 439317 14990 6072354 2024-02-26 13:44:23.585 2024-02-26 13:44:23.585 9000 TIP 439317 20646 6072357 2024-02-26 13:44:24.425 2024-02-26 13:44:24.425 1000 FEE 439317 1505 6072358 2024-02-26 13:44:24.425 2024-02-26 13:44:24.425 9000 TIP 439317 16387 6071605 2024-02-26 12:39:44.722 2024-02-26 12:39:44.722 18900 TIP 439175 1135 6071627 2024-02-26 12:40:30.452 2024-02-26 12:40:30.452 2100 FEE 439185 19398 6071628 2024-02-26 12:40:30.452 2024-02-26 12:40:30.452 18900 TIP 439185 13365 6071634 2024-02-26 12:40:57.924 2024-02-26 12:40:57.924 4200 FEE 438209 15858 6071635 2024-02-26 12:40:57.924 2024-02-26 12:40:57.924 37800 TIP 438209 21136 6071637 2024-02-26 12:41:19.693 2024-02-26 12:41:19.693 1000 FEE 439193 1136 6071659 2024-02-26 12:45:27.034 2024-02-26 12:45:27.034 100 FEE 439169 17976 6071660 2024-02-26 12:45:27.034 2024-02-26 12:45:27.034 900 TIP 439169 15858 6071669 2024-02-26 12:46:20.484 2024-02-26 12:46:20.484 1000 FEE 439202 831 6071682 2024-02-26 12:49:16.901 2024-02-26 12:49:16.901 1000 FEE 439204 9349 6071704 2024-02-26 12:52:09.271 2024-02-26 12:52:09.271 10000 FEE 439213 11073 6071732 2024-02-26 12:56:19.376 2024-02-26 12:56:19.376 100 FEE 439182 18690 6071733 2024-02-26 12:56:19.376 2024-02-26 12:56:19.376 900 TIP 439182 13575 6071743 2024-02-26 12:57:33.148 2024-02-26 12:57:33.148 10000 FEE 439231 19902 6071744 2024-02-26 12:57:40.088 2024-02-26 12:57:40.088 1000 FEE 439232 19815 6071749 2024-02-26 12:57:58.449 2024-02-26 12:57:58.449 100 FEE 439139 4633 6071750 2024-02-26 12:57:58.449 2024-02-26 12:57:58.449 900 TIP 439139 910 6071799 2024-02-26 13:02:09.931 2024-02-26 13:02:09.931 1000 FEE 438325 12736 6071800 2024-02-26 13:02:09.931 2024-02-26 13:02:09.931 9000 TIP 438325 19378 6071811 2024-02-26 13:02:14.66 2024-02-26 13:02:14.66 1000 FEE 438325 16542 6071812 2024-02-26 13:02:14.66 2024-02-26 13:02:14.66 9000 TIP 438325 6688 6071828 2024-02-26 13:04:55.452 2024-02-26 13:04:55.452 10000 FEE 439250 989 6071833 2024-02-26 13:06:07.049 2024-02-26 13:06:07.049 1000 FEE 439252 18174 6071839 2024-02-26 13:06:38.195 2024-02-26 13:06:38.195 100 FEE 301869 20619 6071840 2024-02-26 13:06:38.195 2024-02-26 13:06:38.195 900 TIP 301869 11942 6071847 2024-02-26 13:07:15.545 2024-02-26 13:07:15.545 1000 FEE 439256 21589 6071855 2024-02-26 13:09:19.317 2024-02-26 13:09:19.317 4000 FEE 439256 17708 6071856 2024-02-26 13:09:19.317 2024-02-26 13:09:19.317 36000 TIP 439256 13174 6071869 2024-02-26 13:12:28.987 2024-02-26 13:12:28.987 1000 FEE 439265 19857 6071879 2024-02-26 13:14:14.491 2024-02-26 13:14:14.491 1000 FEE 439266 15213 6071896 2024-02-26 13:15:43.015 2024-02-26 13:15:43.015 1000 FEE 439271 3353 6071905 2024-02-26 13:17:30.642 2024-02-26 13:17:30.642 10000 FEE 439272 20964 6071906 2024-02-26 13:17:47.864 2024-02-26 13:17:47.864 1000 POLL 438794 20854 6071909 2024-02-26 13:18:28.778 2024-02-26 13:18:28.778 1000 FEE 439273 19732 6071917 2024-02-26 13:20:07.69 2024-02-26 13:20:07.69 3100 FEE 439033 15549 6071918 2024-02-26 13:20:07.69 2024-02-26 13:20:07.69 27900 TIP 439033 18637 6071922 2024-02-26 13:21:07.069 2024-02-26 13:21:07.069 3100 FEE 439086 16988 6071923 2024-02-26 13:21:07.069 2024-02-26 13:21:07.069 27900 TIP 439086 917 6071934 2024-02-26 13:21:33.691 2024-02-26 13:21:33.691 1000 FEE 439063 1326 6071935 2024-02-26 13:21:33.691 2024-02-26 13:21:33.691 9000 TIP 439063 12346 6071938 2024-02-26 13:21:38.699 2024-02-26 13:21:38.699 100 FEE 439263 21072 6071939 2024-02-26 13:21:38.699 2024-02-26 13:21:38.699 900 TIP 439263 20045 6071948 2024-02-26 13:22:33.867 2024-02-26 13:22:33.867 1000 FEE 438720 18678 6071949 2024-02-26 13:22:33.867 2024-02-26 13:22:33.867 9000 TIP 438720 4502 6071953 2024-02-26 13:22:53.26 2024-02-26 13:22:53.26 1000 FEE 438726 13348 6071954 2024-02-26 13:22:53.26 2024-02-26 13:22:53.26 9000 TIP 438726 21172 6071962 2024-02-26 13:23:12.526 2024-02-26 13:23:12.526 1000 FEE 439279 17106 6071971 2024-02-26 13:24:18.406 2024-02-26 13:24:18.406 2100 FEE 439263 18351 6071972 2024-02-26 13:24:18.406 2024-02-26 13:24:18.406 18900 TIP 439263 775 6072000 2024-02-26 13:24:56.726 2024-02-26 13:24:56.726 100 FEE 113193 14247 6072001 2024-02-26 13:24:56.726 2024-02-26 13:24:56.726 900 TIP 113193 19500 6072004 2024-02-26 13:24:58.964 2024-02-26 13:24:58.964 15000 FEE 439285 895 6072012 2024-02-26 13:25:25.342 2024-02-26 13:25:25.342 2100 FEE 438145 2338 6072013 2024-02-26 13:25:25.342 2024-02-26 13:25:25.342 18900 TIP 438145 8162 6072016 2024-02-26 13:25:29.722 2024-02-26 13:25:29.722 2100 FEE 438134 2639 6072017 2024-02-26 13:25:29.722 2024-02-26 13:25:29.722 18900 TIP 438134 21048 6072028 2024-02-26 13:27:03.605 2024-02-26 13:27:03.605 1000 FEE 439287 19446 6072035 2024-02-26 13:27:28.718 2024-02-26 13:27:28.718 700 FEE 439206 4076 6072036 2024-02-26 13:27:28.718 2024-02-26 13:27:28.718 6300 TIP 439206 16939 6072065 2024-02-26 13:29:45.539 2024-02-26 13:29:45.539 1000 FEE 438765 9418 6072066 2024-02-26 13:29:45.539 2024-02-26 13:29:45.539 9000 TIP 438765 16754 6072071 2024-02-26 13:29:47.498 2024-02-26 13:29:47.498 1000 FEE 438765 10493 6072072 2024-02-26 13:29:47.498 2024-02-26 13:29:47.498 9000 TIP 438765 9332 6072092 2024-02-26 13:31:34.114 2024-02-26 13:31:34.114 2100 FEE 439203 5809 6072093 2024-02-26 13:31:34.114 2024-02-26 13:31:34.114 18900 TIP 439203 780 6072105 2024-02-26 13:31:47.733 2024-02-26 13:31:47.733 2100 FEE 439233 1010 6072106 2024-02-26 13:31:47.733 2024-02-26 13:31:47.733 18900 TIP 439233 9331 6072120 2024-02-26 13:32:18.822 2024-02-26 13:32:18.822 5000 FEE 437276 11491 6072121 2024-02-26 13:32:18.822 2024-02-26 13:32:18.822 45000 TIP 437276 6533 6072150 2024-02-26 13:33:18.995 2024-02-26 13:33:18.995 1100 FEE 244737 12368 6072151 2024-02-26 13:33:18.995 2024-02-26 13:33:18.995 9900 TIP 244737 6041 6072155 2024-02-26 13:33:39.172 2024-02-26 13:33:39.172 1100 FEE 239965 15594 6072156 2024-02-26 13:33:39.172 2024-02-26 13:33:39.172 9900 TIP 239965 21575 6072167 2024-02-26 13:34:14.449 2024-02-26 13:34:14.449 1000 FEE 439147 20782 6072168 2024-02-26 13:34:14.449 2024-02-26 13:34:14.449 9000 TIP 439147 20687 6072179 2024-02-26 13:34:25.389 2024-02-26 13:34:25.389 1000 FEE 438936 21352 6072180 2024-02-26 13:34:25.389 2024-02-26 13:34:25.389 9000 TIP 438936 3371 6072200 2024-02-26 13:34:30.091 2024-02-26 13:34:30.091 1000 FEE 438936 21547 6072201 2024-02-26 13:34:30.091 2024-02-26 13:34:30.091 9000 TIP 438936 19841 6072204 2024-02-26 13:34:34.98 2024-02-26 13:34:34.98 15000 FEE 438932 20624 6072205 2024-02-26 13:34:34.98 2024-02-26 13:34:34.98 135000 TIP 438932 8505 6072223 2024-02-26 13:35:49.143 2024-02-26 13:35:49.143 1000 FEE 438882 9809 6072224 2024-02-26 13:35:49.143 2024-02-26 13:35:49.143 9000 TIP 438882 18932 6071639 2024-02-26 12:41:22.211 2024-02-26 12:41:22.211 9000 TIP 439163 1135 6071645 2024-02-26 12:42:08.335 2024-02-26 12:42:08.335 10000 FEE 439196 15560 6071648 2024-02-26 12:43:05.047 2024-02-26 12:43:05.047 1000 FEE 436264 21571 6071649 2024-02-26 12:43:05.047 2024-02-26 12:43:05.047 9000 TIP 436264 19836 6071661 2024-02-26 12:45:27.339 2024-02-26 12:45:27.339 100 FEE 439169 14015 6071662 2024-02-26 12:45:27.339 2024-02-26 12:45:27.339 900 TIP 439169 20218 6071688 2024-02-26 12:50:21.577 2024-02-26 12:50:21.577 400 FEE 438948 18449 6071689 2024-02-26 12:50:21.577 2024-02-26 12:50:21.577 3600 TIP 438948 20588 6071715 2024-02-26 12:53:34.565 2024-02-26 12:53:34.565 1000 FEE 438983 19174 6071716 2024-02-26 12:53:34.565 2024-02-26 12:53:34.565 9000 TIP 438983 640 6071739 2024-02-26 12:56:43.621 2024-02-26 12:56:43.621 1000 FEE 439228 1006 6071753 2024-02-26 12:58:31.583 2024-02-26 12:58:31.583 1000 FEE 439234 19465 6071767 2024-02-26 12:59:11.965 2024-02-26 12:59:11.965 1000 FEE 439139 19417 6071768 2024-02-26 12:59:11.965 2024-02-26 12:59:11.965 9000 TIP 439139 18180 6071769 2024-02-26 12:59:12.135 2024-02-26 12:59:12.135 1000 FEE 439139 1236 6071770 2024-02-26 12:59:12.135 2024-02-26 12:59:12.135 9000 TIP 439139 21274 6071773 2024-02-26 12:59:23.917 2024-02-26 12:59:23.917 1000 FEE 439237 17171 6071782 2024-02-26 13:01:08.196 2024-02-26 13:01:08.196 1000 FEE 439240 16543 6071783 2024-02-26 13:01:27.585 2024-02-26 13:01:27.585 10000 FEE 439241 18309 6071786 2024-02-26 13:02:05.622 2024-02-26 13:02:05.622 1000 FEE 438325 1803 6071787 2024-02-26 13:02:05.622 2024-02-26 13:02:05.622 9000 TIP 438325 3400 6071809 2024-02-26 13:02:10.884 2024-02-26 13:02:10.884 1000 FEE 438325 19821 6071810 2024-02-26 13:02:10.884 2024-02-26 13:02:10.884 9000 TIP 438325 9341 6071852 2024-02-26 13:08:16.779 2024-02-26 13:08:16.779 1000 FEE 439258 19118 6071863 2024-02-26 13:10:24.695 2024-02-26 13:10:24.695 1000 FEE 439261 20302 6071865 2024-02-26 13:10:43.205 2024-02-26 13:10:43.205 100000 FEE 439263 866 6071894 2024-02-26 13:15:42.014 2024-02-26 13:15:42.014 10000 FEE 439211 15556 6071895 2024-02-26 13:15:42.014 2024-02-26 13:15:42.014 90000 TIP 439211 1751 6071914 2024-02-26 13:19:51.614 2024-02-26 13:19:51.614 3100 FEE 439269 20849 6071915 2024-02-26 13:19:51.614 2024-02-26 13:19:51.614 27900 TIP 439269 20450 6071950 2024-02-26 13:22:42.472 2024-02-26 13:22:42.472 0 FEE 439277 18409 6071963 2024-02-26 13:23:31.198 2024-02-26 13:23:31.198 10000 FEE 439280 1769 6071973 2024-02-26 13:24:21.408 2024-02-26 13:24:21.408 2100 FEE 439226 683 6071974 2024-02-26 13:24:21.408 2024-02-26 13:24:21.408 18900 TIP 439226 15139 6071975 2024-02-26 13:24:29.464 2024-02-26 13:24:29.464 2100 FEE 439139 7510 6071976 2024-02-26 13:24:29.464 2024-02-26 13:24:29.464 18900 TIP 439139 956 6072086 2024-02-26 13:31:11.65 2024-02-26 13:31:11.65 5000 FEE 438922 9916 6072087 2024-02-26 13:31:11.65 2024-02-26 13:31:11.65 45000 TIP 438922 18446 6072088 2024-02-26 13:31:30.345 2024-02-26 13:31:30.345 2100 FEE 439199 21048 6072089 2024-02-26 13:31:30.345 2024-02-26 13:31:30.345 18900 TIP 439199 9336 6072109 2024-02-26 13:31:53.281 2024-02-26 13:31:53.281 1000 FEE 439299 16942 6072112 2024-02-26 13:31:59.079 2024-02-26 13:31:59.079 1000 FEE 438738 12268 6072113 2024-02-26 13:31:59.079 2024-02-26 13:31:59.079 9000 TIP 438738 21136 6072116 2024-02-26 13:32:00.522 2024-02-26 13:32:00.522 1000 FEE 438738 5171 6072117 2024-02-26 13:32:00.522 2024-02-26 13:32:00.522 9000 TIP 438738 17411 6072119 2024-02-26 13:32:13.966 2024-02-26 13:32:13.966 1000 FEE 439300 1738 6072134 2024-02-26 13:32:56.24 2024-02-26 13:32:56.24 1100 FEE 439295 17147 6072135 2024-02-26 13:32:56.24 2024-02-26 13:32:56.24 9900 TIP 439295 18220 6072146 2024-02-26 13:33:16.883 2024-02-26 13:33:16.883 1100 FEE 439254 3342 6072147 2024-02-26 13:33:16.883 2024-02-26 13:33:16.883 9900 TIP 439254 10273 6072216 2024-02-26 13:35:35.889 2024-02-26 13:35:35.889 1000 FEE 438794 21501 6072217 2024-02-26 13:35:35.889 2024-02-26 13:35:35.889 9000 TIP 438794 18005 6072227 2024-02-26 13:35:49.878 2024-02-26 13:35:49.878 1000 FEE 438882 20602 6072228 2024-02-26 13:35:49.878 2024-02-26 13:35:49.878 9000 TIP 438882 13097 6072313 2024-02-26 13:42:12.885 2024-02-26 13:42:12.885 2100 FEE 439173 16970 6072314 2024-02-26 13:42:12.885 2024-02-26 13:42:12.885 18900 TIP 439173 3213 6072319 2024-02-26 13:42:29.168 2024-02-26 13:42:29.168 1000 FEE 439316 20636 6072329 2024-02-26 13:43:04.486 2024-02-26 13:43:04.486 1000 FEE 439318 20881 6072347 2024-02-26 13:44:21.099 2024-02-26 13:44:21.099 2100 FEE 438563 777 6072348 2024-02-26 13:44:21.099 2024-02-26 13:44:21.099 18900 TIP 438563 2741 6072349 2024-02-26 13:44:22.613 2024-02-26 13:44:22.613 1000 FEE 439317 1428 6072350 2024-02-26 13:44:22.613 2024-02-26 13:44:22.613 9000 TIP 439317 4175 6072359 2024-02-26 13:44:38.469 2024-02-26 13:44:38.469 1000 FEE 438796 7766 6072360 2024-02-26 13:44:38.469 2024-02-26 13:44:38.469 9000 TIP 438796 20080 6072369 2024-02-26 13:44:41.269 2024-02-26 13:44:41.269 1000 FEE 438796 19826 6072370 2024-02-26 13:44:41.269 2024-02-26 13:44:41.269 9000 TIP 438796 1845 6072396 2024-02-26 13:45:43.277 2024-02-26 13:45:43.277 1000 FEE 437959 782 6072397 2024-02-26 13:45:43.277 2024-02-26 13:45:43.277 9000 TIP 437959 19622 6072424 2024-02-26 13:46:37.62 2024-02-26 13:46:37.62 2100 FEE 439250 688 6072425 2024-02-26 13:46:37.62 2024-02-26 13:46:37.62 18900 TIP 439250 19995 6072426 2024-02-26 13:46:37.865 2024-02-26 13:46:37.865 10000 FEE 439323 766 6072432 2024-02-26 13:47:05.538 2024-02-26 13:47:05.538 2100 FEE 439233 19346 6072433 2024-02-26 13:47:05.538 2024-02-26 13:47:05.538 18900 TIP 439233 19142 6071788 2024-02-26 13:02:07.108 2024-02-26 13:02:07.108 1000 FEE 438325 13177 6071789 2024-02-26 13:02:07.108 2024-02-26 13:02:07.108 9000 TIP 438325 6533 6071805 2024-02-26 13:02:10.504 2024-02-26 13:02:10.504 1000 FEE 438325 11240 6071806 2024-02-26 13:02:10.504 2024-02-26 13:02:10.504 9000 TIP 438325 2775 6071823 2024-02-26 13:04:41.378 2024-02-26 13:04:41.378 1000 FEE 438840 19813 6071824 2024-02-26 13:04:41.378 2024-02-26 13:04:41.378 9000 TIP 438840 21609 6071827 2024-02-26 13:04:53.719 2024-02-26 13:04:53.719 1000 FEE 439249 11561 6071854 2024-02-26 13:09:08.559 2024-02-26 13:09:08.559 1000 FEE 439259 18291 6071857 2024-02-26 13:09:20.59 2024-02-26 13:09:20.59 10000 FEE 439255 8535 6071858 2024-02-26 13:09:20.59 2024-02-26 13:09:20.59 90000 TIP 439255 10094 6071871 2024-02-26 13:12:38.239 2024-02-26 13:12:38.239 3100 FEE 438907 21481 6071872 2024-02-26 13:12:38.239 2024-02-26 13:12:38.239 27900 TIP 438907 17817 6071882 2024-02-26 13:14:25.664 2024-02-26 13:14:25.664 2100 FEE 439265 11516 6071883 2024-02-26 13:14:25.664 2024-02-26 13:14:25.664 18900 TIP 439265 20108 6071890 2024-02-26 13:15:26.457 2024-02-26 13:15:26.457 1000 FEE 439269 5444 6071908 2024-02-26 13:18:05.076 2024-02-26 13:18:05.076 0 FEE 439272 5701 6071910 2024-02-26 13:19:03.38 2024-02-26 13:19:03.38 10000 FEE 439252 2338 6071911 2024-02-26 13:19:03.38 2024-02-26 13:19:03.38 90000 TIP 439252 4314 6071919 2024-02-26 13:20:13.001 2024-02-26 13:20:13.001 0 FEE 430342 928 6071921 2024-02-26 13:21:05.393 2024-02-26 13:21:05.393 1000 FEE 439275 20577 6071926 2024-02-26 13:21:14.313 2024-02-26 13:21:14.313 1000 FEE 439276 3642 6071929 2024-02-26 13:21:32.164 2024-02-26 13:21:32.164 1000 FEE 439063 6594 6071930 2024-02-26 13:21:32.164 2024-02-26 13:21:32.164 9000 TIP 439063 12609 6071957 2024-02-26 13:22:54.376 2024-02-26 13:22:54.376 1000 FEE 438726 20162 6071958 2024-02-26 13:22:54.376 2024-02-26 13:22:54.376 9000 TIP 438726 10490 6071959 2024-02-26 13:22:54.951 2024-02-26 13:22:54.951 1000 FEE 438726 17171 6071960 2024-02-26 13:22:54.951 2024-02-26 13:22:54.951 9000 TIP 438726 18472 6071977 2024-02-26 13:24:29.594 2024-02-26 13:24:29.594 0 FEE 439283 13574 6072010 2024-02-26 13:25:22.702 2024-02-26 13:25:22.702 2100 FEE 438146 21416 6072011 2024-02-26 13:25:22.702 2024-02-26 13:25:22.702 18900 TIP 438146 16649 6072018 2024-02-26 13:25:31.987 2024-02-26 13:25:31.987 2100 FEE 438087 17673 6072019 2024-02-26 13:25:31.987 2024-02-26 13:25:31.987 18900 TIP 438087 21159 6072031 2024-02-26 13:27:27.79 2024-02-26 13:27:27.79 700 FEE 439206 20254 6072032 2024-02-26 13:27:27.79 2024-02-26 13:27:27.79 6300 TIP 439206 10719 6072038 2024-02-26 13:27:49.298 2024-02-26 13:27:49.298 4000 FEE 439286 20616 6072039 2024-02-26 13:27:49.298 2024-02-26 13:27:49.298 36000 TIP 439286 11789 6072050 2024-02-26 13:29:00.728 2024-02-26 13:29:00.728 100 FEE 439201 16912 6072051 2024-02-26 13:29:00.728 2024-02-26 13:29:00.728 900 TIP 439201 16149 6072059 2024-02-26 13:29:44.426 2024-02-26 13:29:44.426 1000 FEE 438765 9348 6072060 2024-02-26 13:29:44.426 2024-02-26 13:29:44.426 9000 TIP 438765 10273 6072067 2024-02-26 13:29:45.642 2024-02-26 13:29:45.642 100 FEE 439238 989 6072068 2024-02-26 13:29:45.642 2024-02-26 13:29:45.642 900 TIP 439238 5455 6072074 2024-02-26 13:30:12.274 2024-02-26 13:30:12.274 500 FEE 439279 16638 6072075 2024-02-26 13:30:12.274 2024-02-26 13:30:12.274 4500 TIP 439279 19987 6072079 2024-02-26 13:31:06.823 2024-02-26 13:31:06.823 1000 FEE 439297 19810 6072090 2024-02-26 13:31:31.806 2024-02-26 13:31:31.806 2100 FEE 439202 15941 6072091 2024-02-26 13:31:31.806 2024-02-26 13:31:31.806 18900 TIP 439202 9 6072128 2024-02-26 13:32:49.006 2024-02-26 13:32:49.006 5000 FEE 437403 19263 6072129 2024-02-26 13:32:49.006 2024-02-26 13:32:49.006 45000 TIP 437403 18380 6072136 2024-02-26 13:32:58.811 2024-02-26 13:32:58.811 100 FEE 439157 15094 6072137 2024-02-26 13:32:58.811 2024-02-26 13:32:58.811 900 TIP 439157 18815 6072148 2024-02-26 13:33:18.829 2024-02-26 13:33:18.829 1100 FEE 244737 1825 6072149 2024-02-26 13:33:18.829 2024-02-26 13:33:18.829 9900 TIP 244737 13575 6072187 2024-02-26 13:34:28 2024-02-26 13:34:28 1000 FEE 438946 21070 6072188 2024-02-26 13:34:28 2024-02-26 13:34:28 9000 TIP 438946 691 6072198 2024-02-26 13:34:29.948 2024-02-26 13:34:29.948 1000 FEE 438936 21136 6072199 2024-02-26 13:34:29.948 2024-02-26 13:34:29.948 9000 TIP 438936 15409 6072206 2024-02-26 13:34:41.553 2024-02-26 13:34:41.553 10000 FEE 439305 4225 6072219 2024-02-26 13:35:48.319 2024-02-26 13:35:48.319 1000 FEE 438882 11898 6072220 2024-02-26 13:35:48.319 2024-02-26 13:35:48.319 9000 TIP 438882 17927 6072230 2024-02-26 13:36:40.789 2024-02-26 13:36:40.789 1100 FEE 439234 21247 6072231 2024-02-26 13:36:40.789 2024-02-26 13:36:40.789 9900 TIP 439234 20129 6072234 2024-02-26 13:36:45.103 2024-02-26 13:36:45.103 2100 FEE 439263 713 6072235 2024-02-26 13:36:45.103 2024-02-26 13:36:45.103 18900 TIP 439263 7899 6072279 2024-02-26 13:41:01.408 2024-02-26 13:41:01.408 0 FEE 439313 15088 6072287 2024-02-26 13:41:14.803 2024-02-26 13:41:14.803 3100 FEE 439275 7558 6072288 2024-02-26 13:41:14.803 2024-02-26 13:41:14.803 27900 TIP 439275 1162 6072293 2024-02-26 13:41:35.607 2024-02-26 13:41:35.607 1000 FEE 439314 20190 6072298 2024-02-26 13:41:53.126 2024-02-26 13:41:53.126 1000 FEE 438813 18769 6072299 2024-02-26 13:41:53.126 2024-02-26 13:41:53.126 9000 TIP 438813 18678 6072302 2024-02-26 13:41:54.084 2024-02-26 13:41:54.084 1000 FEE 438813 10056 6072303 2024-02-26 13:41:54.084 2024-02-26 13:41:54.084 9000 TIP 438813 6310 6072317 2024-02-26 13:42:28.44 2024-02-26 13:42:28.44 100 FEE 439130 2390 6072318 2024-02-26 13:42:28.44 2024-02-26 13:42:28.44 900 TIP 439130 721 6072325 2024-02-26 13:43:00.114 2024-02-26 13:43:00.114 10000 FEE 438973 16177 6072326 2024-02-26 13:43:00.114 2024-02-26 13:43:00.114 90000 TIP 438973 18446 6072402 2024-02-26 13:45:44.637 2024-02-26 13:45:44.637 1000 FEE 437959 2832 6072403 2024-02-26 13:45:44.637 2024-02-26 13:45:44.637 9000 TIP 437959 688 6072408 2024-02-26 13:45:46.015 2024-02-26 13:45:46.015 1000 FEE 437959 4259 6072409 2024-02-26 13:45:46.015 2024-02-26 13:45:46.015 9000 TIP 437959 3717 6072427 2024-02-26 13:46:38.736 2024-02-26 13:46:38.736 1000 FEE 439324 10409 6072429 2024-02-26 13:46:59.435 2024-02-26 13:46:59.435 1000 FEE 439139 18772 6072430 2024-02-26 13:46:59.435 2024-02-26 13:46:59.435 9000 TIP 439139 965 6072438 2024-02-26 13:48:03.333 2024-02-26 13:48:03.333 1000 FEE 439151 19511 6072439 2024-02-26 13:48:03.333 2024-02-26 13:48:03.333 9000 TIP 439151 10409 6072460 2024-02-26 13:48:43.351 2024-02-26 13:48:43.351 6900 FEE 439315 20162 6072461 2024-02-26 13:48:43.351 2024-02-26 13:48:43.351 62100 TIP 439315 2952 6072479 2024-02-26 13:49:46.617 2024-02-26 13:49:46.617 69000 DONT_LIKE_THIS 439280 19507 6072507 2024-02-26 13:52:17.659 2024-02-26 13:52:17.659 3000 FEE 439315 1472 6072508 2024-02-26 13:52:17.659 2024-02-26 13:52:17.659 27000 TIP 439315 12959 6072547 2024-02-26 13:56:26.461 2024-02-26 13:56:26.461 2100 FEE 439219 21398 6072548 2024-02-26 13:56:26.461 2024-02-26 13:56:26.461 18900 TIP 439219 20840 6072568 2024-02-26 13:59:13.822 2024-02-26 13:59:13.822 900 FEE 439263 21356 6072569 2024-02-26 13:59:13.822 2024-02-26 13:59:13.822 8100 TIP 439263 2056 6072574 2024-02-26 13:59:20.624 2024-02-26 13:59:20.624 900 FEE 439139 19117 6072575 2024-02-26 13:59:20.624 2024-02-26 13:59:20.624 8100 TIP 439139 14545 6072580 2024-02-26 13:59:28.029 2024-02-26 13:59:28.029 100 FEE 438737 1495 6071801 2024-02-26 13:02:10.165 2024-02-26 13:02:10.165 1000 FEE 438325 10007 6071802 2024-02-26 13:02:10.165 2024-02-26 13:02:10.165 9000 TIP 438325 14267 6071820 2024-02-26 13:04:18.15 2024-02-26 13:04:18.15 200 FEE 439231 21562 6071821 2024-02-26 13:04:18.15 2024-02-26 13:04:18.15 1800 TIP 439231 828 6071843 2024-02-26 13:06:38.491 2024-02-26 13:06:38.491 100 FEE 301869 940 6071844 2024-02-26 13:06:38.491 2024-02-26 13:06:38.491 900 TIP 301869 8004 6071861 2024-02-26 13:09:57.387 2024-02-26 13:09:57.387 1000 FEE 439260 4654 6071873 2024-02-26 13:12:54.223 2024-02-26 13:12:54.223 3200 FEE 439263 21281 6071874 2024-02-26 13:12:54.223 2024-02-26 13:12:54.223 28800 TIP 439263 20276 6071880 2024-02-26 13:14:23.073 2024-02-26 13:14:23.073 4000 FEE 439263 18101 6071881 2024-02-26 13:14:23.073 2024-02-26 13:14:23.073 36000 TIP 439263 9669 6071944 2024-02-26 13:22:00.716 2024-02-26 13:22:00.716 1000 FEE 439278 9695 6071978 2024-02-26 13:24:35.465 2024-02-26 13:24:35.465 2100 FEE 438975 18311 6071979 2024-02-26 13:24:35.465 2024-02-26 13:24:35.465 18900 TIP 438975 2789 6071986 2024-02-26 13:24:55.623 2024-02-26 13:24:55.623 200 FEE 113193 9307 6071987 2024-02-26 13:24:55.623 2024-02-26 13:24:55.623 1800 TIP 113193 667 6071988 2024-02-26 13:24:55.772 2024-02-26 13:24:55.772 100 FEE 113193 12768 6071989 2024-02-26 13:24:55.772 2024-02-26 13:24:55.772 900 TIP 113193 16847 6072008 2024-02-26 13:25:19.118 2024-02-26 13:25:19.118 2100 FEE 438216 15045 6072009 2024-02-26 13:25:19.118 2024-02-26 13:25:19.118 18900 TIP 438216 1624 6072014 2024-02-26 13:25:29.131 2024-02-26 13:25:29.131 2100 FEE 438109 14168 6072015 2024-02-26 13:25:29.131 2024-02-26 13:25:29.131 18900 TIP 438109 18583 6072030 2024-02-26 13:27:20.296 2024-02-26 13:27:20.296 1000 FEE 439288 12808 6072033 2024-02-26 13:27:28.436 2024-02-26 13:27:28.436 700 FEE 439206 4259 6072034 2024-02-26 13:27:28.436 2024-02-26 13:27:28.436 6300 TIP 439206 21062 6072042 2024-02-26 13:28:20.079 2024-02-26 13:28:20.079 100 FEE 439222 20073 6072043 2024-02-26 13:28:20.079 2024-02-26 13:28:20.079 900 TIP 439222 713 6072056 2024-02-26 13:29:35.7 2024-02-26 13:29:35.7 1000 FEE 439294 777 6072057 2024-02-26 13:29:43.997 2024-02-26 13:29:43.997 1000 FEE 438765 831 6072058 2024-02-26 13:29:43.997 2024-02-26 13:29:43.997 9000 TIP 438765 688 6072077 2024-02-26 13:30:58.191 2024-02-26 13:30:58.191 1000 FEE 439296 20495 6072082 2024-02-26 13:31:10.632 2024-02-26 13:31:10.632 5000 FEE 438922 21599 6072083 2024-02-26 13:31:10.632 2024-02-26 13:31:10.632 45000 TIP 438922 976 6072098 2024-02-26 13:31:37.301 2024-02-26 13:31:37.301 2100 FEE 439207 1465 6072099 2024-02-26 13:31:37.301 2024-02-26 13:31:37.301 18900 TIP 439207 13763 6072114 2024-02-26 13:31:59.992 2024-02-26 13:31:59.992 1000 FEE 438738 18231 6072115 2024-02-26 13:31:59.992 2024-02-26 13:31:59.992 9000 TIP 438738 11821 6072126 2024-02-26 13:32:48.474 2024-02-26 13:32:48.474 5000 FEE 437403 20713 6072127 2024-02-26 13:32:48.474 2024-02-26 13:32:48.474 45000 TIP 437403 21079 6072157 2024-02-26 13:33:39.307 2024-02-26 13:33:39.307 1100 FEE 239965 19267 6072158 2024-02-26 13:33:39.307 2024-02-26 13:33:39.307 9900 TIP 239965 2942 6072161 2024-02-26 13:33:39.591 2024-02-26 13:33:39.591 1100 FEE 239965 18017 6072162 2024-02-26 13:33:39.591 2024-02-26 13:33:39.591 9900 TIP 239965 21323 6072165 2024-02-26 13:33:52.451 2024-02-26 13:33:52.451 1000 FEE 439303 685 6072173 2024-02-26 13:34:22.815 2024-02-26 13:34:22.815 1000 FEE 438946 16542 6072174 2024-02-26 13:34:22.815 2024-02-26 13:34:22.815 9000 TIP 438946 20267 6072181 2024-02-26 13:34:26.38 2024-02-26 13:34:26.38 2000 FEE 438936 18829 6072182 2024-02-26 13:34:26.38 2024-02-26 13:34:26.38 18000 TIP 438936 12268 6072209 2024-02-26 13:35:09.088 2024-02-26 13:35:09.088 4000 FEE 439303 4776 6072210 2024-02-26 13:35:09.088 2024-02-26 13:35:09.088 36000 TIP 439303 18819 6072242 2024-02-26 13:37:29.026 2024-02-26 13:37:29.026 1100 FEE 439228 20788 6072243 2024-02-26 13:37:29.026 2024-02-26 13:37:29.026 9900 TIP 439228 19639 6072250 2024-02-26 13:40:11.22 2024-02-26 13:40:11.22 2100 FEE 439139 18230 6072251 2024-02-26 13:40:11.22 2024-02-26 13:40:11.22 18900 TIP 439139 18016 6072271 2024-02-26 13:40:54.375 2024-02-26 13:40:54.375 1000 FEE 439311 18533 6072272 2024-02-26 13:40:54.375 2024-02-26 13:40:54.375 9000 TIP 439311 16176 6072294 2024-02-26 13:41:41.306 2024-02-26 13:41:41.306 2100 FEE 439113 2042 6072295 2024-02-26 13:41:41.306 2024-02-26 13:41:41.306 18900 TIP 439113 2775 6072308 2024-02-26 13:41:55.652 2024-02-26 13:41:55.652 1000 FEE 438813 19583 6072309 2024-02-26 13:41:55.652 2024-02-26 13:41:55.652 9000 TIP 438813 811 6072320 2024-02-26 13:42:32.009 2024-02-26 13:42:32.009 2100 FEE 439116 21591 6072321 2024-02-26 13:42:32.009 2024-02-26 13:42:32.009 18900 TIP 439116 1471 6072327 2024-02-26 13:43:01.221 2024-02-26 13:43:01.221 1100 FEE 439314 10094 6072328 2024-02-26 13:43:01.221 2024-02-26 13:43:01.221 9900 TIP 439314 20897 6072361 2024-02-26 13:44:38.757 2024-02-26 13:44:38.757 1000 FEE 438796 706 6071928 2024-02-26 13:21:31.61 2024-02-26 13:21:31.61 9000 TIP 439063 9200 6071942 2024-02-26 13:21:57.468 2024-02-26 13:21:57.468 2100 FEE 439153 15833 6071943 2024-02-26 13:21:57.468 2024-02-26 13:21:57.468 18900 TIP 439153 2390 6071946 2024-02-26 13:22:33.405 2024-02-26 13:22:33.405 1000 FEE 438720 19878 6071947 2024-02-26 13:22:33.405 2024-02-26 13:22:33.405 9000 TIP 438720 2583 6071951 2024-02-26 13:22:52.292 2024-02-26 13:22:52.292 1000 FEE 438726 9184 6071952 2024-02-26 13:22:52.292 2024-02-26 13:22:52.292 9000 TIP 438726 8926 6071955 2024-02-26 13:22:53.791 2024-02-26 13:22:53.791 1000 FEE 438726 14669 6071956 2024-02-26 13:22:53.791 2024-02-26 13:22:53.791 9000 TIP 438726 14278 6071964 2024-02-26 13:23:33.48 2024-02-26 13:23:33.48 10000 FEE 439281 9354 6071982 2024-02-26 13:24:53.246 2024-02-26 13:24:53.246 100 FEE 113193 11789 6071983 2024-02-26 13:24:53.246 2024-02-26 13:24:53.246 900 TIP 113193 1549 6072024 2024-02-26 13:25:59.327 2024-02-26 13:25:59.327 2100 FEE 439173 2098 6072025 2024-02-26 13:25:59.327 2024-02-26 13:25:59.327 18900 TIP 439173 18454 6072041 2024-02-26 13:28:12.854 2024-02-26 13:28:12.854 1000 FEE 439290 1628 6072044 2024-02-26 13:28:28.286 2024-02-26 13:28:28.286 100 FEE 439216 657 6072045 2024-02-26 13:28:28.286 2024-02-26 13:28:28.286 900 TIP 439216 17568 6072047 2024-02-26 13:28:45.697 2024-02-26 13:28:45.697 500 FEE 439212 18601 6072048 2024-02-26 13:28:45.697 2024-02-26 13:28:45.697 4500 TIP 439212 20858 6072063 2024-02-26 13:29:45.171 2024-02-26 13:29:45.171 1000 FEE 438765 1198 6072064 2024-02-26 13:29:45.171 2024-02-26 13:29:45.171 9000 TIP 438765 19806 6072080 2024-02-26 13:31:10.018 2024-02-26 13:31:10.018 5000 FEE 438922 20504 6072081 2024-02-26 13:31:10.018 2024-02-26 13:31:10.018 45000 TIP 438922 16879 6072096 2024-02-26 13:31:37.26 2024-02-26 13:31:37.26 4000 FEE 439296 20080 6072097 2024-02-26 13:31:37.26 2024-02-26 13:31:37.26 36000 TIP 439296 20090 6072107 2024-02-26 13:31:50.392 2024-02-26 13:31:50.392 2100 FEE 439237 10731 6072108 2024-02-26 13:31:50.392 2024-02-26 13:31:50.392 18900 TIP 439237 16950 6072124 2024-02-26 13:32:47.856 2024-02-26 13:32:47.856 5000 FEE 437403 21262 6072125 2024-02-26 13:32:47.856 2024-02-26 13:32:47.856 45000 TIP 437403 844 6072130 2024-02-26 13:32:49.434 2024-02-26 13:32:49.434 5000 FEE 437403 706 6072131 2024-02-26 13:32:49.434 2024-02-26 13:32:49.434 45000 TIP 437403 11866 6072139 2024-02-26 13:33:09.999 2024-02-26 13:33:09.999 10000 FEE 439301 15160 6072142 2024-02-26 13:33:16.573 2024-02-26 13:33:16.573 1100 FEE 439254 15662 6072143 2024-02-26 13:33:16.573 2024-02-26 13:33:16.573 9900 TIP 439254 20554 6072159 2024-02-26 13:33:39.469 2024-02-26 13:33:39.469 1100 FEE 239965 21624 6072160 2024-02-26 13:33:39.469 2024-02-26 13:33:39.469 9900 TIP 239965 687 6072185 2024-02-26 13:34:27.619 2024-02-26 13:34:27.619 1000 FEE 438946 2577 6072186 2024-02-26 13:34:27.619 2024-02-26 13:34:27.619 9000 TIP 438946 20218 6072189 2024-02-26 13:34:28.185 2024-02-26 13:34:28.185 1000 FEE 438946 18265 6072190 2024-02-26 13:34:28.185 2024-02-26 13:34:28.185 9000 TIP 438946 19449 6072192 2024-02-26 13:34:28.533 2024-02-26 13:34:28.533 1000 FEE 438946 18896 6072193 2024-02-26 13:34:28.533 2024-02-26 13:34:28.533 9000 TIP 438946 21405 6072194 2024-02-26 13:34:28.634 2024-02-26 13:34:28.634 1000 FEE 438946 16154 6072195 2024-02-26 13:34:28.634 2024-02-26 13:34:28.634 9000 TIP 438946 9611 6072211 2024-02-26 13:35:09.643 2024-02-26 13:35:09.643 4000 FEE 439303 2502 6072212 2024-02-26 13:35:09.643 2024-02-26 13:35:09.643 36000 TIP 439303 21320 6072221 2024-02-26 13:35:48.678 2024-02-26 13:35:48.678 1000 FEE 438882 4259 6072222 2024-02-26 13:35:48.678 2024-02-26 13:35:48.678 9000 TIP 438882 8173 6072225 2024-02-26 13:35:49.417 2024-02-26 13:35:49.417 1000 FEE 438882 1039 6072226 2024-02-26 13:35:49.417 2024-02-26 13:35:49.417 9000 TIP 438882 8059 6072238 2024-02-26 13:36:59.758 2024-02-26 13:36:59.758 1000 FEE 439309 20972 6072240 2024-02-26 13:37:12.64 2024-02-26 13:37:12.64 100 FEE 439262 9171 6072241 2024-02-26 13:37:12.64 2024-02-26 13:37:12.64 900 TIP 439262 19796 6072245 2024-02-26 13:38:37.029 2024-02-26 13:38:37.029 0 FEE 439307 20636 6072285 2024-02-26 13:41:14.334 2024-02-26 13:41:14.334 1000 FEE 438828 17592 6072286 2024-02-26 13:41:14.334 2024-02-26 13:41:14.334 9000 TIP 438828 946 6072291 2024-02-26 13:41:32.77 2024-02-26 13:41:32.77 3100 FEE 439299 10771 6072292 2024-02-26 13:41:32.77 2024-02-26 13:41:32.77 27900 TIP 439299 720 6072306 2024-02-26 13:41:55.01 2024-02-26 13:41:55.01 1000 FEE 438813 18745 6072307 2024-02-26 13:41:55.01 2024-02-26 13:41:55.01 9000 TIP 438813 21061 6072322 2024-02-26 13:42:40.156 2024-02-26 13:42:40.156 100 FEE 439315 9433 6072323 2024-02-26 13:42:40.156 2024-02-26 13:42:40.156 900 TIP 439315 9496 6072341 2024-02-26 13:44:00.956 2024-02-26 13:44:00.956 1600 FEE 439315 20302 6072342 2024-02-26 13:44:00.956 2024-02-26 13:44:00.956 14400 TIP 439315 10409 6072365 2024-02-26 13:44:39.635 2024-02-26 13:44:39.635 1000 FEE 438796 14663 6072366 2024-02-26 13:44:39.635 2024-02-26 13:44:39.635 9000 TIP 438796 3544 6072400 2024-02-26 13:45:44.181 2024-02-26 13:45:44.181 1000 FEE 437959 17212 6072401 2024-02-26 13:45:44.181 2024-02-26 13:45:44.181 9000 TIP 437959 19117 6072444 2024-02-26 13:48:42.139 2024-02-26 13:48:42.139 6900 FEE 439315 16259 6072445 2024-02-26 13:48:42.139 2024-02-26 13:48:42.139 62100 TIP 439315 18016 6072468 2024-02-26 13:48:44.521 2024-02-26 13:48:44.521 6900 FEE 439315 17184 6072469 2024-02-26 13:48:44.521 2024-02-26 13:48:44.521 62100 TIP 439315 20973 6072470 2024-02-26 13:48:44.66 2024-02-26 13:48:44.66 6900 FEE 439315 14909 6072471 2024-02-26 13:48:44.66 2024-02-26 13:48:44.66 62100 TIP 439315 17714 6072495 2024-02-26 13:51:31.276 2024-02-26 13:51:31.276 1000 FEE 439330 18784 6072504 2024-02-26 13:52:05.736 2024-02-26 13:52:05.736 5000 FEE 438907 21037 6072505 2024-02-26 13:52:05.736 2024-02-26 13:52:05.736 45000 TIP 438907 21393 6072513 2024-02-26 13:52:19.761 2024-02-26 13:52:19.761 2100 FEE 439163 20551 6072514 2024-02-26 13:52:19.761 2024-02-26 13:52:19.761 18900 TIP 439163 18114 6072515 2024-02-26 13:52:38.451 2024-02-26 13:52:38.451 5000 FEE 438401 5825 6072516 2024-02-26 13:52:38.451 2024-02-26 13:52:38.451 45000 TIP 438401 11621 6072520 2024-02-26 13:53:46.045 2024-02-26 13:53:46.045 21000 FEE 439279 20799 6072521 2024-02-26 13:53:46.045 2024-02-26 13:53:46.045 189000 TIP 439279 21563 6072522 2024-02-26 13:53:53.748 2024-02-26 13:53:53.748 4000 FEE 439315 20781 6071997 2024-02-26 13:24:56.415 2024-02-26 13:24:56.415 900 TIP 113193 8326 6072002 2024-02-26 13:24:57.619 2024-02-26 13:24:57.619 2100 FEE 438798 21491 6072003 2024-02-26 13:24:57.619 2024-02-26 13:24:57.619 18900 TIP 438798 21472 6072049 2024-02-26 13:28:46.848 2024-02-26 13:28:46.848 1000 FEE 439292 1002 6072076 2024-02-26 13:30:27.793 2024-02-26 13:30:27.793 100000 FEE 439295 2652 6072084 2024-02-26 13:31:11.252 2024-02-26 13:31:11.252 5000 FEE 438922 21463 6072085 2024-02-26 13:31:11.252 2024-02-26 13:31:11.252 45000 TIP 438922 9337 6072094 2024-02-26 13:31:35.237 2024-02-26 13:31:35.237 2100 FEE 439204 687 6072095 2024-02-26 13:31:35.237 2024-02-26 13:31:35.237 18900 TIP 439204 1092 6072100 2024-02-26 13:31:39.752 2024-02-26 13:31:39.752 2100 FEE 439210 19930 6072101 2024-02-26 13:31:39.752 2024-02-26 13:31:39.752 18900 TIP 439210 18017 6072110 2024-02-26 13:31:58.034 2024-02-26 13:31:58.034 1000 FEE 439086 718 6072111 2024-02-26 13:31:58.034 2024-02-26 13:31:58.034 9000 TIP 439086 20090 6072132 2024-02-26 13:32:49.805 2024-02-26 13:32:49.805 5000 FEE 437403 10112 6072133 2024-02-26 13:32:49.805 2024-02-26 13:32:49.805 45000 TIP 437403 18557 6072140 2024-02-26 13:33:15.265 2024-02-26 13:33:15.265 2200 FEE 439254 20514 6072141 2024-02-26 13:33:15.265 2024-02-26 13:33:15.265 19800 TIP 439254 16929 6072152 2024-02-26 13:33:19.119 2024-02-26 13:33:19.119 1100 FEE 244737 1647 6072153 2024-02-26 13:33:19.119 2024-02-26 13:33:19.119 9900 TIP 244737 9349 6072163 2024-02-26 13:33:39.722 2024-02-26 13:33:39.722 1100 FEE 239965 15703 6072164 2024-02-26 13:33:39.722 2024-02-26 13:33:39.722 9900 TIP 239965 5661 6072177 2024-02-26 13:34:24.972 2024-02-26 13:34:24.972 1000 FEE 438936 16387 6072178 2024-02-26 13:34:24.972 2024-02-26 13:34:24.972 9000 TIP 438936 18402 6072196 2024-02-26 13:34:29.614 2024-02-26 13:34:29.614 1000 FEE 438936 5497 6072197 2024-02-26 13:34:29.614 2024-02-26 13:34:29.614 9000 TIP 438936 3392 6072202 2024-02-26 13:34:30.378 2024-02-26 13:34:30.378 1000 FEE 438936 6419 6072203 2024-02-26 13:34:30.378 2024-02-26 13:34:30.378 9000 TIP 438936 876 6072213 2024-02-26 13:35:10.261 2024-02-26 13:35:10.261 4000 FEE 439303 18896 6072214 2024-02-26 13:35:10.261 2024-02-26 13:35:10.261 36000 TIP 439303 18608 6072260 2024-02-26 13:40:19.558 2024-02-26 13:40:19.558 2100 FEE 439029 21296 6072261 2024-02-26 13:40:19.558 2024-02-26 13:40:19.558 18900 TIP 439029 20546 6072267 2024-02-26 13:40:42.195 2024-02-26 13:40:42.195 1000 FEE 439312 1320 6072273 2024-02-26 13:40:55.033 2024-02-26 13:40:55.033 1000 FEE 439311 9758 6072274 2024-02-26 13:40:55.033 2024-02-26 13:40:55.033 9000 TIP 439311 1272 6072277 2024-02-26 13:40:56.086 2024-02-26 13:40:56.086 1000 FEE 439311 20891 6072278 2024-02-26 13:40:56.086 2024-02-26 13:40:56.086 9000 TIP 439311 21463 6072280 2024-02-26 13:41:02.252 2024-02-26 13:41:02.252 3100 FEE 439303 20581 6072281 2024-02-26 13:41:02.252 2024-02-26 13:41:02.252 27900 TIP 439303 19806 6072300 2024-02-26 13:41:53.633 2024-02-26 13:41:53.633 1000 FEE 438813 18557 6072301 2024-02-26 13:41:53.633 2024-02-26 13:41:53.633 9000 TIP 438813 15351 6072310 2024-02-26 13:42:04.062 2024-02-26 13:42:04.062 10000 FEE 439315 15577 6072311 2024-02-26 13:42:04.062 2024-02-26 13:42:04.062 25000000 BOOST 439315 2162 6072315 2024-02-26 13:42:24.711 2024-02-26 13:42:24.711 100 FEE 439147 19329 6072316 2024-02-26 13:42:24.711 2024-02-26 13:42:24.711 900 TIP 439147 797 6072333 2024-02-26 13:43:16.752 2024-02-26 13:43:16.752 0 FEE 439304 2508 6072336 2024-02-26 13:43:40.899 2024-02-26 13:43:40.899 2100 FEE 439303 20162 6072337 2024-02-26 13:43:40.899 2024-02-26 13:43:40.899 18900 TIP 439303 2293 6072339 2024-02-26 13:43:56.958 2024-02-26 13:43:56.958 4000 FEE 439311 5499 6072340 2024-02-26 13:43:56.958 2024-02-26 13:43:56.958 36000 TIP 439311 12774 6072344 2024-02-26 13:44:04.646 2024-02-26 13:44:04.646 100000 FEE 439319 14260 6072373 2024-02-26 13:44:42.913 2024-02-26 13:44:42.913 1000 FEE 438796 16505 6072374 2024-02-26 13:44:42.913 2024-02-26 13:44:42.913 9000 TIP 438796 6616 6072384 2024-02-26 13:45:40.71 2024-02-26 13:45:40.71 1000 FEE 437959 18309 6072385 2024-02-26 13:45:40.71 2024-02-26 13:45:40.71 9000 TIP 437959 18680 6072406 2024-02-26 13:45:45.595 2024-02-26 13:45:45.595 1000 FEE 437959 16753 6072407 2024-02-26 13:45:45.595 2024-02-26 13:45:45.595 9000 TIP 437959 19031 6072414 2024-02-26 13:45:54.274 2024-02-26 13:45:54.274 1000 FEE 439322 21494 6072446 2024-02-26 13:48:42.274 2024-02-26 13:48:42.274 6900 FEE 439315 9335 6072447 2024-02-26 13:48:42.274 2024-02-26 13:48:42.274 62100 TIP 439315 14295 6072450 2024-02-26 13:48:42.564 2024-02-26 13:48:42.564 6900 FEE 439315 12346 6072451 2024-02-26 13:48:42.564 2024-02-26 13:48:42.564 62100 TIP 439315 21386 6072452 2024-02-26 13:48:42.722 2024-02-26 13:48:42.722 6900 FEE 439315 2367 6072453 2024-02-26 13:48:42.722 2024-02-26 13:48:42.722 62100 TIP 439315 688 6072454 2024-02-26 13:48:42.861 2024-02-26 13:48:42.861 6900 FEE 439315 19941 6072455 2024-02-26 13:48:42.861 2024-02-26 13:48:42.861 62100 TIP 439315 2151 6072478 2024-02-26 13:49:34.677 2024-02-26 13:49:34.677 1000 FEE 439327 9342 6072480 2024-02-26 13:49:50.586 2024-02-26 13:49:50.586 10000 FEE 439315 20744 6072481 2024-02-26 13:49:50.586 2024-02-26 13:49:50.586 90000 TIP 439315 18714 6072485 2024-02-26 13:50:18.039 2024-02-26 13:50:18.039 1000 FEE 439328 18310 6072492 2024-02-26 13:51:18.383 2024-02-26 13:51:18.383 2100 FEE 439139 12507 6072493 2024-02-26 13:51:18.383 2024-02-26 13:51:18.383 18900 TIP 439139 4043 6072500 2024-02-26 13:51:51.956 2024-02-26 13:51:51.956 1000 FEE 439235 16432 6072501 2024-02-26 13:51:51.956 2024-02-26 13:51:51.956 9000 TIP 439235 16842 6072509 2024-02-26 13:52:18.123 2024-02-26 13:52:18.123 5000 FEE 438359 18745 6072510 2024-02-26 13:52:18.123 2024-02-26 13:52:18.123 45000 TIP 438359 6499 6072525 2024-02-26 13:54:13.402 2024-02-26 13:54:13.402 10000 FEE 439210 666 6072526 2024-02-26 13:54:13.402 2024-02-26 13:54:13.402 90000 TIP 439210 14552 6072532 2024-02-26 13:54:53.461 2024-02-26 13:54:53.461 2100 FEE 439159 12049 6072533 2024-02-26 13:54:53.461 2024-02-26 13:54:53.461 18900 TIP 439159 2722 6072572 2024-02-26 13:59:20.391 2024-02-26 13:59:20.391 100 FEE 439139 1534 6072573 2024-02-26 13:59:20.391 2024-02-26 13:59:20.391 900 TIP 439139 14169 6072582 2024-02-26 13:59:33.253 2024-02-26 13:59:33.253 1000 FEE 439341 897 6072590 2024-02-26 14:00:37.096 2024-02-26 14:00:37.096 100 FEE 439315 4062 6072591 2024-02-26 14:00:37.096 2024-02-26 14:00:37.096 900 TIP 439315 8133 6072659 2024-02-26 14:06:37.595 2024-02-26 14:06:37.595 1000 FEE 439348 5646 6072660 2024-02-26 14:06:37.595 2024-02-26 14:06:37.595 9000 TIP 439348 18119 6072676 2024-02-26 14:07:06.913 2024-02-26 14:07:06.913 1000 FEE 439348 1471 6072677 2024-02-26 14:07:06.913 2024-02-26 14:07:06.913 9000 TIP 439348 674 6072709 2024-02-26 14:10:01.866 2024-02-26 14:10:01.866 1000 FEE 439355 21218 6072713 2024-02-26 14:10:06.639 2024-02-26 14:10:06.639 1000 FEE 439199 18330 6072714 2024-02-26 14:10:06.639 2024-02-26 14:10:06.639 9000 TIP 439199 4502 6072730 2024-02-26 14:10:56.416 2024-02-26 14:10:56.416 1000 FEE 439176 18154 6072731 2024-02-26 14:10:56.416 2024-02-26 14:10:56.416 9000 TIP 439176 18119 6072046 2024-02-26 13:28:36.342 2024-02-26 13:28:36.342 10000 FEE 439291 17001 6072054 2024-02-26 13:29:09.888 2024-02-26 13:29:09.888 100 FEE 439198 20603 6072055 2024-02-26 13:29:09.888 2024-02-26 13:29:09.888 900 TIP 439198 15526 6072069 2024-02-26 13:29:45.922 2024-02-26 13:29:45.922 1000 FEE 438765 8508 6072070 2024-02-26 13:29:45.922 2024-02-26 13:29:45.922 9000 TIP 438765 795 6072102 2024-02-26 13:31:43.7 2024-02-26 13:31:43.7 2100 FEE 439220 14663 6072103 2024-02-26 13:31:43.7 2024-02-26 13:31:43.7 18900 TIP 439220 14449 6072122 2024-02-26 13:32:19.321 2024-02-26 13:32:19.321 5000 FEE 437276 20849 6072123 2024-02-26 13:32:19.321 2024-02-26 13:32:19.321 45000 TIP 437276 1713 6072144 2024-02-26 13:33:16.732 2024-02-26 13:33:16.732 1100 FEE 439254 16353 6072145 2024-02-26 13:33:16.732 2024-02-26 13:33:16.732 9900 TIP 439254 19044 6072175 2024-02-26 13:34:23.483 2024-02-26 13:34:23.483 1000 FEE 438946 16754 6072176 2024-02-26 13:34:23.483 2024-02-26 13:34:23.483 9000 TIP 438946 19037 6072191 2024-02-26 13:34:28.45 2024-02-26 13:34:28.45 1000 FEE 439304 21037 6072215 2024-02-26 13:35:31.539 2024-02-26 13:35:31.539 1000 FEE 439307 19638 6072218 2024-02-26 13:35:37.186 2024-02-26 13:35:37.186 1000 FEE 439308 1468 6072236 2024-02-26 13:36:57.709 2024-02-26 13:36:57.709 1100 FEE 439233 9078 6072237 2024-02-26 13:36:57.709 2024-02-26 13:36:57.709 9900 TIP 439233 1802 6072264 2024-02-26 13:40:21.067 2024-02-26 13:40:21.067 2100 FEE 439263 11789 6072265 2024-02-26 13:40:21.067 2024-02-26 13:40:21.067 18900 TIP 439263 21249 6072282 2024-02-26 13:41:03.119 2024-02-26 13:41:03.119 2100 FEE 439079 2232 6072283 2024-02-26 13:41:03.119 2024-02-26 13:41:03.119 18900 TIP 439079 5387 6072324 2024-02-26 13:42:45.394 2024-02-26 13:42:45.394 1000 FEE 439317 18817 6072338 2024-02-26 13:43:56.661 2024-02-26 13:43:56.661 1000 POLL 438325 17707 6072345 2024-02-26 13:44:06.449 2024-02-26 13:44:06.449 1000 FEE 439320 14472 6072346 2024-02-26 13:44:06.476 2024-02-26 13:44:06.476 1000 FEE 439321 10668 6072367 2024-02-26 13:44:40.407 2024-02-26 13:44:40.407 1000 FEE 438796 726 6072368 2024-02-26 13:44:40.407 2024-02-26 13:44:40.407 9000 TIP 438796 18945 6072388 2024-02-26 13:45:41.586 2024-02-26 13:45:41.586 1000 FEE 437959 12158 6072389 2024-02-26 13:45:41.586 2024-02-26 13:45:41.586 9000 TIP 437959 803 6072390 2024-02-26 13:45:42.035 2024-02-26 13:45:42.035 1000 FEE 437959 2774 6072391 2024-02-26 13:45:42.035 2024-02-26 13:45:42.035 9000 TIP 437959 6700 6072392 2024-02-26 13:45:42.467 2024-02-26 13:45:42.467 1000 FEE 437959 20022 6072393 2024-02-26 13:45:42.467 2024-02-26 13:45:42.467 9000 TIP 437959 6327 6072428 2024-02-26 13:46:57.609 2024-02-26 13:46:57.609 10000 FEE 439325 10821 6072462 2024-02-26 13:48:43.515 2024-02-26 13:48:43.515 6900 FEE 439315 21019 6072463 2024-02-26 13:48:43.515 2024-02-26 13:48:43.515 62100 TIP 439315 18828 6072472 2024-02-26 13:48:51.62 2024-02-26 13:48:51.62 10000 FEE 438389 18269 6072473 2024-02-26 13:48:51.62 2024-02-26 13:48:51.62 90000 TIP 438389 2639 6072499 2024-02-26 13:51:45.776 2024-02-26 13:51:45.776 1000 FEE 439332 12188 6072530 2024-02-26 13:54:49.345 2024-02-26 13:54:49.345 21000 FEE 439294 902 6072531 2024-02-26 13:54:49.345 2024-02-26 13:54:49.345 189000 TIP 439294 9331 6072542 2024-02-26 13:55:40.645 2024-02-26 13:55:40.645 200 FEE 439221 6515 6072543 2024-02-26 13:55:40.645 2024-02-26 13:55:40.645 1800 TIP 439221 18892 6072553 2024-02-26 13:57:32.911 2024-02-26 13:57:32.911 1000 FEE 439340 8796 6072566 2024-02-26 13:59:13.086 2024-02-26 13:59:13.086 100 FEE 439263 20897 6072567 2024-02-26 13:59:13.086 2024-02-26 13:59:13.086 900 TIP 439263 21036 6072585 2024-02-26 13:59:54.277 2024-02-26 13:59:54.277 0 FEE 439341 13931 6072598 2024-02-26 14:01:02.782 2024-02-26 14:01:02.782 1000 FEE 439180 18468 6072599 2024-02-26 14:01:02.782 2024-02-26 14:01:02.782 9000 TIP 439180 9426 6072603 2024-02-26 14:02:16.819 2024-02-26 14:02:16.819 10000 FEE 439322 2437 6072604 2024-02-26 14:02:16.819 2024-02-26 14:02:16.819 90000 TIP 439322 16834 6072619 2024-02-26 14:04:08.393 2024-02-26 14:04:08.393 1100 FEE 439316 15697 6072620 2024-02-26 14:04:08.393 2024-02-26 14:04:08.393 9900 TIP 439316 20990 6072650 2024-02-26 14:06:33.888 2024-02-26 14:06:33.888 1000 FEE 439349 21437 6072653 2024-02-26 14:06:35.092 2024-02-26 14:06:35.092 1000 FEE 439348 21344 6072654 2024-02-26 14:06:35.092 2024-02-26 14:06:35.092 9000 TIP 439348 27 6072669 2024-02-26 14:06:57.134 2024-02-26 14:06:57.134 1000 FEE 439157 11450 6072670 2024-02-26 14:06:57.134 2024-02-26 14:06:57.134 9000 TIP 439157 17041 6072674 2024-02-26 14:07:06.339 2024-02-26 14:07:06.339 1000 FEE 439348 20892 6072675 2024-02-26 14:07:06.339 2024-02-26 14:07:06.339 9000 TIP 439348 1602 6072686 2024-02-26 14:07:19.335 2024-02-26 14:07:19.335 1000 FEE 439350 19842 6072697 2024-02-26 14:08:59.678 2024-02-26 14:08:59.678 1000 FEE 439354 8080 6072698 2024-02-26 14:09:02.123 2024-02-26 14:09:02.123 0 FEE 439352 811 6072725 2024-02-26 14:10:32.552 2024-02-26 14:10:32.552 2100 FEE 439250 17183 6072726 2024-02-26 14:10:32.552 2024-02-26 14:10:32.552 18900 TIP 439250 1717 6072735 2024-02-26 14:11:13.793 2024-02-26 14:11:13.793 2100 FEE 439348 18663 6072736 2024-02-26 14:11:13.793 2024-02-26 14:11:13.793 18900 TIP 439348 7847 6072737 2024-02-26 14:11:18.006 2024-02-26 14:11:18.006 1000 FEE 439294 20500 6072738 2024-02-26 14:11:18.006 2024-02-26 14:11:18.006 9000 TIP 439294 11417 6072739 2024-02-26 14:11:22.277 2024-02-26 14:11:22.277 1000 FEE 439154 21577 6072740 2024-02-26 14:11:22.277 2024-02-26 14:11:22.277 9000 TIP 439154 21400 6072745 2024-02-26 14:11:51.125 2024-02-26 14:11:51.125 1000 FEE 439198 1603 6072746 2024-02-26 14:11:51.125 2024-02-26 14:11:51.125 9000 TIP 439198 13781 6072749 2024-02-26 14:12:13.508 2024-02-26 14:12:13.508 1000 FEE 439297 12561 6072750 2024-02-26 14:12:13.508 2024-02-26 14:12:13.508 9000 TIP 439297 2328 6072765 2024-02-26 14:13:32.664 2024-02-26 14:13:32.664 0 FEE 439352 21555 6072796 2024-02-26 14:16:27.323 2024-02-26 14:16:27.323 0 FEE 439352 18178 6072797 2024-02-26 14:16:41.965 2024-02-26 14:16:41.965 0 FEE 439360 18816 6072855 2024-02-26 14:21:32.683 2024-02-26 14:21:32.683 100 FEE 439349 9345 6072856 2024-02-26 14:21:32.683 2024-02-26 14:21:32.683 900 TIP 439349 8037 6072862 2024-02-26 14:21:39.31 2024-02-26 14:21:39.31 800 FEE 439358 981 6072863 2024-02-26 14:21:39.31 2024-02-26 14:21:39.31 7200 TIP 439358 17050 6072878 2024-02-26 14:21:41.242 2024-02-26 14:21:41.242 100 FEE 439349 654 6072879 2024-02-26 14:21:41.242 2024-02-26 14:21:41.242 900 TIP 439349 11776 6072880 2024-02-26 14:21:41.698 2024-02-26 14:21:41.698 100 FEE 439349 20624 6072881 2024-02-26 14:21:41.698 2024-02-26 14:21:41.698 900 TIP 439349 5487 6072898 2024-02-26 14:23:48.012 2024-02-26 14:23:48.012 2100 FEE 439139 3213 6072899 2024-02-26 14:23:48.012 2024-02-26 14:23:48.012 18900 TIP 439139 14169 6072934 2024-02-26 14:27:21.687 2024-02-26 14:27:21.687 1000 FEE 439377 623 6072958 2024-02-26 14:33:10.846 2024-02-26 14:33:10.846 1000 FEE 439383 10469 6072974 2024-02-26 14:34:29.167 2024-02-26 14:34:29.167 100 FEE 439377 21207 6072975 2024-02-26 14:34:29.167 2024-02-26 14:34:29.167 900 TIP 439377 20691 6072983 2024-02-26 14:35:25.756 2024-02-26 14:35:25.756 2700 FEE 439295 13544 6072984 2024-02-26 14:35:25.756 2024-02-26 14:35:25.756 24300 TIP 439295 2390 6072994 2024-02-26 14:36:33.56 2024-02-26 14:36:33.56 2100 FEE 439298 18784 6072995 2024-02-26 14:36:33.56 2024-02-26 14:36:33.56 18900 TIP 439298 20198 6073019 2024-02-26 14:37:27.11 2024-02-26 14:37:27.11 2100 FEE 439305 2576 6073020 2024-02-26 14:37:27.11 2024-02-26 14:37:27.11 18900 TIP 439305 696 6073023 2024-02-26 14:37:30.61 2024-02-26 14:37:30.61 2100 FEE 439295 4250 6073024 2024-02-26 14:37:30.61 2024-02-26 14:37:30.61 18900 TIP 439295 16834 6073068 2024-02-26 14:41:21.836 2024-02-26 14:41:21.836 1000 FEE 439392 4313 6073101 2024-02-26 14:42:30.574 2024-02-26 14:42:30.574 10000 FEE 439279 9843 6073102 2024-02-26 14:42:30.574 2024-02-26 14:42:30.574 90000 TIP 439279 20301 6073114 2024-02-26 14:43:12.889 2024-02-26 14:43:12.889 10000 FEE 439395 14651 6072073 2024-02-26 13:30:04.475 2024-02-26 13:30:04.475 1000 STREAM 141924 17523 6072078 2024-02-26 13:31:04.468 2024-02-26 13:31:04.468 1000 STREAM 141924 1845 6072118 2024-02-26 13:32:04.459 2024-02-26 13:32:04.459 1000 STREAM 141924 17682 6072166 2024-02-26 13:34:04.459 2024-02-26 13:34:04.459 1000 STREAM 141924 1488 6072138 2024-02-26 13:33:04.464 2024-02-26 13:33:04.464 1000 STREAM 141924 979 6072208 2024-02-26 13:35:04.488 2024-02-26 13:35:04.488 1000 STREAM 141924 9200 6072229 2024-02-26 13:36:04.489 2024-02-26 13:36:04.489 1000 STREAM 141924 4654 6072239 2024-02-26 13:37:04.513 2024-02-26 13:37:04.513 1000 STREAM 141924 19126 6072939 2024-02-26 14:28:04.709 2024-02-26 14:28:04.709 1000 STREAM 141924 20704 6072947 2024-02-26 14:31:04.705 2024-02-26 14:31:04.705 1000 STREAM 141924 6421 6072951 2024-02-26 14:32:04.701 2024-02-26 14:32:04.701 1000 STREAM 141924 14795 6072957 2024-02-26 14:33:04.705 2024-02-26 14:33:04.705 1000 STREAM 141924 21603 6072971 2024-02-26 14:34:04.706 2024-02-26 14:34:04.706 1000 STREAM 141924 691 6073503 2024-02-26 15:14:04.891 2024-02-26 15:14:04.891 1000 STREAM 141924 21148 6073514 2024-02-26 15:15:04.88 2024-02-26 15:15:04.88 1000 STREAM 141924 19826 6072246 2024-02-26 13:39:04.524 2024-02-26 13:39:04.524 1000 STREAM 141924 14705 6072284 2024-02-26 13:41:04.547 2024-02-26 13:41:04.547 1000 STREAM 141924 2789 6072330 2024-02-26 13:43:04.581 2024-02-26 13:43:04.581 1000 STREAM 141924 17541 6072343 2024-02-26 13:44:04.609 2024-02-26 13:44:04.609 1000 STREAM 141924 20267 6072383 2024-02-26 13:45:04.593 2024-02-26 13:45:04.593 1000 STREAM 141924 16998 6072417 2024-02-26 13:46:04.609 2024-02-26 13:46:04.609 1000 STREAM 141924 14705 6072431 2024-02-26 13:47:04.644 2024-02-26 13:47:04.644 1000 STREAM 141924 17237 6072440 2024-02-26 13:48:04.644 2024-02-26 13:48:04.644 1000 STREAM 141924 17157 6072474 2024-02-26 13:49:04.632 2024-02-26 13:49:04.632 1000 STREAM 141924 11996 6072484 2024-02-26 13:50:04.67 2024-02-26 13:50:04.67 1000 STREAM 141924 21332 6072490 2024-02-26 13:51:04.656 2024-02-26 13:51:04.656 1000 STREAM 141924 6136 6072503 2024-02-26 13:52:04.671 2024-02-26 13:52:04.671 1000 STREAM 141924 16485 6072524 2024-02-26 13:54:04.698 2024-02-26 13:54:04.698 1000 STREAM 141924 638 6072618 2024-02-26 14:04:04.78 2024-02-26 14:04:04.78 1000 STREAM 141924 19566 6072641 2024-02-26 14:06:04.795 2024-02-26 14:06:04.795 1000 STREAM 141924 9356 6072247 2024-02-26 13:39:05.712 2024-02-26 13:39:05.712 1000 FEE 439181 21373 6072248 2024-02-26 13:39:05.712 2024-02-26 13:39:05.712 9000 TIP 439181 678 6072256 2024-02-26 13:40:13.321 2024-02-26 13:40:13.321 2100 FEE 439130 2061 6072257 2024-02-26 13:40:13.321 2024-02-26 13:40:13.321 18900 TIP 439130 19570 6072269 2024-02-26 13:40:53.795 2024-02-26 13:40:53.795 1000 FEE 439311 17817 6072270 2024-02-26 13:40:53.795 2024-02-26 13:40:53.795 9000 TIP 439311 16954 6072275 2024-02-26 13:40:55.664 2024-02-26 13:40:55.664 1000 FEE 439311 4079 6072276 2024-02-26 13:40:55.664 2024-02-26 13:40:55.664 9000 TIP 439311 16543 6072289 2024-02-26 13:41:29.01 2024-02-26 13:41:29.01 1000 FEE 438828 4250 6072290 2024-02-26 13:41:29.01 2024-02-26 13:41:29.01 9000 TIP 438828 18446 6072304 2024-02-26 13:41:54.549 2024-02-26 13:41:54.549 1000 FEE 438813 16842 6072305 2024-02-26 13:41:54.549 2024-02-26 13:41:54.549 9000 TIP 438813 2829 6072334 2024-02-26 13:43:25.728 2024-02-26 13:43:25.728 2100 FEE 439313 20301 6072335 2024-02-26 13:43:25.728 2024-02-26 13:43:25.728 18900 TIP 439313 16212 6072351 2024-02-26 13:44:23.218 2024-02-26 13:44:23.218 1000 FEE 439317 1389 6072352 2024-02-26 13:44:23.218 2024-02-26 13:44:23.218 9000 TIP 439317 18274 6072355 2024-02-26 13:44:24.044 2024-02-26 13:44:24.044 1000 FEE 439317 20251 6072356 2024-02-26 13:44:24.044 2024-02-26 13:44:24.044 9000 TIP 439317 21136 6072375 2024-02-26 13:44:48.749 2024-02-26 13:44:48.749 1000 FEE 438727 15484 6072376 2024-02-26 13:44:48.749 2024-02-26 13:44:48.749 9000 TIP 438727 1489 6072381 2024-02-26 13:44:50.744 2024-02-26 13:44:50.744 1000 FEE 438727 20370 6072382 2024-02-26 13:44:50.744 2024-02-26 13:44:50.744 9000 TIP 438727 20243 6072386 2024-02-26 13:45:41.173 2024-02-26 13:45:41.173 1000 FEE 437959 14080 6072387 2024-02-26 13:45:41.173 2024-02-26 13:45:41.173 9000 TIP 437959 621 6072412 2024-02-26 13:45:47.139 2024-02-26 13:45:47.139 1000 FEE 437959 20811 6072413 2024-02-26 13:45:47.139 2024-02-26 13:45:47.139 9000 TIP 437959 20624 6072441 2024-02-26 13:48:32.749 2024-02-26 13:48:32.749 1000 FEE 439233 21458 6072442 2024-02-26 13:48:32.749 2024-02-26 13:48:32.749 9000 TIP 439233 1213 6072488 2024-02-26 13:50:35.922 2024-02-26 13:50:35.922 10000 FEE 439263 5806 6072489 2024-02-26 13:50:35.922 2024-02-26 13:50:35.922 90000 TIP 439263 11263 6072494 2024-02-26 13:51:26.287 2024-02-26 13:51:26.287 1000 POLL 438325 1564 6072555 2024-02-26 13:58:08.398 2024-02-26 13:58:08.398 2100 FEE 439277 18468 6072556 2024-02-26 13:58:08.398 2024-02-26 13:58:08.398 18900 TIP 439277 3717 6072576 2024-02-26 13:59:21.194 2024-02-26 13:59:21.194 9000 FEE 439139 12708 6072577 2024-02-26 13:59:21.194 2024-02-26 13:59:21.194 81000 TIP 439139 2508 6072578 2024-02-26 13:59:23.881 2024-02-26 13:59:23.881 200 FEE 439298 16858 6072579 2024-02-26 13:59:23.881 2024-02-26 13:59:23.881 1800 TIP 439298 3544 6072586 2024-02-26 13:59:57.936 2024-02-26 13:59:57.936 100 FEE 439130 6202 6072587 2024-02-26 13:59:57.936 2024-02-26 13:59:57.936 900 TIP 439130 21323 6072596 2024-02-26 14:00:47.77 2024-02-26 14:00:47.77 1000 FEE 439234 16176 6072597 2024-02-26 14:00:47.77 2024-02-26 14:00:47.77 9000 TIP 439234 11417 6072605 2024-02-26 14:02:23.948 2024-02-26 14:02:23.948 1000 FEE 439342 1120 6072606 2024-02-26 14:02:27.871 2024-02-26 14:02:27.871 2100 FEE 439336 17741 6072607 2024-02-26 14:02:27.871 2024-02-26 14:02:27.871 18900 TIP 439336 15690 6072612 2024-02-26 14:02:46.217 2024-02-26 14:02:46.217 10000 FEE 439292 16410 6072613 2024-02-26 14:02:46.217 2024-02-26 14:02:46.217 90000 TIP 439292 6164 6072624 2024-02-26 14:05:02.47 2024-02-26 14:05:02.47 1000 FEE 439326 21262 6072625 2024-02-26 14:05:02.47 2024-02-26 14:05:02.47 9000 TIP 439326 21356 6072638 2024-02-26 14:05:42.486 2024-02-26 14:05:42.486 21000 FEE 439348 19296 6072657 2024-02-26 14:06:37.061 2024-02-26 14:06:37.061 1000 FEE 439348 18507 6072658 2024-02-26 14:06:37.061 2024-02-26 14:06:37.061 9000 TIP 439348 12774 6072711 2024-02-26 14:10:05.868 2024-02-26 14:10:05.868 1000 FEE 439263 726 6072712 2024-02-26 14:10:05.868 2024-02-26 14:10:05.868 9000 TIP 439263 18231 6072728 2024-02-26 14:10:44.313 2024-02-26 14:10:44.313 2100 FEE 439352 997 6072729 2024-02-26 14:10:44.313 2024-02-26 14:10:44.313 18900 TIP 439352 3417 6072733 2024-02-26 14:11:02.517 2024-02-26 14:11:02.517 1000 FEE 439175 1647 6072734 2024-02-26 14:11:02.517 2024-02-26 14:11:02.517 9000 TIP 439175 17541 6072748 2024-02-26 14:12:06.219 2024-02-26 14:12:06.219 21000 FEE 439357 18313 6072772 2024-02-26 14:14:31.67 2024-02-26 14:14:31.67 1000 FEE 439171 684 6072773 2024-02-26 14:14:31.67 2024-02-26 14:14:31.67 9000 TIP 439171 1741 6072786 2024-02-26 14:15:52.837 2024-02-26 14:15:52.837 100 FEE 439362 1465 6072787 2024-02-26 14:15:52.837 2024-02-26 14:15:52.837 900 TIP 439362 10393 6072788 2024-02-26 14:15:58.975 2024-02-26 14:15:58.975 0 FEE 439352 16594 6072813 2024-02-26 14:18:50.811 2024-02-26 14:18:50.811 100 FEE 439315 16126 6072814 2024-02-26 14:18:50.811 2024-02-26 14:18:50.811 900 TIP 439315 19553 6072831 2024-02-26 14:21:06.12 2024-02-26 14:21:06.12 1800 FEE 439229 19484 6072832 2024-02-26 14:21:06.12 2024-02-26 14:21:06.12 16200 TIP 439229 1488 6072872 2024-02-26 14:21:40.383 2024-02-26 14:21:40.383 200 FEE 439349 1505 6072873 2024-02-26 14:21:40.383 2024-02-26 14:21:40.383 1800 TIP 439349 9078 6072884 2024-02-26 14:21:50.828 2024-02-26 14:21:50.828 100 FEE 439349 4118 6072885 2024-02-26 14:21:50.828 2024-02-26 14:21:50.828 900 TIP 439349 19967 6072922 2024-02-26 14:26:13.475 2024-02-26 14:26:13.475 1000 FEE 439365 5776 6072923 2024-02-26 14:26:13.475 2024-02-26 14:26:13.475 9000 TIP 439365 13055 6072924 2024-02-26 14:26:16.654 2024-02-26 14:26:16.654 0 FEE 439375 19320 6072925 2024-02-26 14:26:43.26 2024-02-26 14:26:43.26 10000 FEE 439263 17523 6072926 2024-02-26 14:26:43.26 2024-02-26 14:26:43.26 90000 TIP 439263 19398 6072935 2024-02-26 14:27:44.21 2024-02-26 14:27:44.21 1000 FEE 439378 2224 6072941 2024-02-26 14:29:36.944 2024-02-26 14:29:36.944 4000 FEE 439379 11395 6072942 2024-02-26 14:29:36.944 2024-02-26 14:29:36.944 36000 TIP 439379 16267 6072960 2024-02-26 14:33:12.651 2024-02-26 14:33:12.651 1000 FEE 439358 2327 6072961 2024-02-26 14:33:12.651 2024-02-26 14:33:12.651 9000 TIP 439358 17030 6072977 2024-02-26 14:35:11.257 2024-02-26 14:35:11.257 10000 FEE 439151 10342 6072978 2024-02-26 14:35:11.257 2024-02-26 14:35:11.257 90000 TIP 439151 17106 6072996 2024-02-26 14:36:39.643 2024-02-26 14:36:39.643 2100 FEE 439100 720 6072997 2024-02-26 14:36:39.643 2024-02-26 14:36:39.643 18900 TIP 439100 20163 6072998 2024-02-26 14:36:44.195 2024-02-26 14:36:44.195 2100 FEE 439384 1658 6072999 2024-02-26 14:36:44.195 2024-02-26 14:36:44.195 18900 TIP 439384 1823 6073006 2024-02-26 14:36:54.925 2024-02-26 14:36:54.925 1000 FEE 439315 5961 6073007 2024-02-26 14:36:54.925 2024-02-26 14:36:54.925 9000 TIP 439315 13399 6073025 2024-02-26 14:37:38.09 2024-02-26 14:37:38.09 2100 FEE 438325 5806 6073026 2024-02-26 14:37:38.09 2024-02-26 14:37:38.09 18900 TIP 438325 18877 6073029 2024-02-26 14:37:47.202 2024-02-26 14:37:47.202 2100 FEE 438458 20327 6073030 2024-02-26 14:37:47.202 2024-02-26 14:37:47.202 18900 TIP 438458 11760 6073036 2024-02-26 14:38:54.056 2024-02-26 14:38:54.056 1000 FEE 439361 18378 6073037 2024-02-26 14:38:54.056 2024-02-26 14:38:54.056 9000 TIP 439361 20143 6072362 2024-02-26 13:44:38.757 2024-02-26 13:44:38.757 9000 TIP 438796 10007 6072363 2024-02-26 13:44:39.161 2024-02-26 13:44:39.161 1000 FEE 438796 2576 6072364 2024-02-26 13:44:39.161 2024-02-26 13:44:39.161 9000 TIP 438796 1319 6072410 2024-02-26 13:45:46.394 2024-02-26 13:45:46.394 1000 FEE 437959 7913 6072411 2024-02-26 13:45:46.394 2024-02-26 13:45:46.394 9000 TIP 437959 21418 6072415 2024-02-26 13:45:55.098 2024-02-26 13:45:55.098 2100 FEE 439157 20680 6072416 2024-02-26 13:45:55.098 2024-02-26 13:45:55.098 18900 TIP 439157 2703 6072422 2024-02-26 13:46:33.494 2024-02-26 13:46:33.494 100 FEE 439298 20710 6072423 2024-02-26 13:46:33.494 2024-02-26 13:46:33.494 900 TIP 439298 726 6072436 2024-02-26 13:47:40.64 2024-02-26 13:47:40.64 5000 FEE 439189 19507 6072437 2024-02-26 13:47:40.64 2024-02-26 13:47:40.64 45000 TIP 439189 4345 6072466 2024-02-26 13:48:44.369 2024-02-26 13:48:44.369 6900 FEE 439315 18265 6072467 2024-02-26 13:48:44.369 2024-02-26 13:48:44.369 62100 TIP 439315 896 6072486 2024-02-26 13:50:33.107 2024-02-26 13:50:33.107 2100 FEE 439139 20182 6072487 2024-02-26 13:50:33.107 2024-02-26 13:50:33.107 18900 TIP 439139 1628 6072491 2024-02-26 13:51:16.589 2024-02-26 13:51:16.589 1000 FEE 439329 21201 6072502 2024-02-26 13:51:53.309 2024-02-26 13:51:53.309 1000 FEE 439333 670 6072537 2024-02-26 13:55:16.135 2024-02-26 13:55:16.135 1000 FEE 439335 19546 6072538 2024-02-26 13:55:19.396 2024-02-26 13:55:19.396 1100 FEE 439113 3717 6072539 2024-02-26 13:55:19.396 2024-02-26 13:55:19.396 9900 TIP 439113 11298 6072552 2024-02-26 13:57:26.476 2024-02-26 13:57:26.476 100000 DONT_LIKE_THIS 438831 1046 6072557 2024-02-26 13:58:25.102 2024-02-26 13:58:25.102 2100 FEE 439305 17690 6072558 2024-02-26 13:58:25.102 2024-02-26 13:58:25.102 18900 TIP 439305 20094 6072559 2024-02-26 13:58:33.54 2024-02-26 13:58:33.54 2100 FEE 439277 4076 6072560 2024-02-26 13:58:33.54 2024-02-26 13:58:33.54 18900 TIP 439277 9084 6072589 2024-02-26 14:00:31.312 2024-02-26 14:00:31.312 0 FEE 439341 985 6072592 2024-02-26 14:00:37.526 2024-02-26 14:00:37.526 100 FEE 439315 4076 6072593 2024-02-26 14:00:37.526 2024-02-26 14:00:37.526 900 TIP 439315 1224 6072594 2024-02-26 14:00:39.362 2024-02-26 14:00:39.362 1000 FEE 439228 897 6072595 2024-02-26 14:00:39.362 2024-02-26 14:00:39.362 9000 TIP 439228 21405 6072621 2024-02-26 14:04:32.438 2024-02-26 14:04:32.438 1000 FEE 439344 19087 6072626 2024-02-26 14:05:02.63 2024-02-26 14:05:02.63 1000 FEE 439326 18526 6072627 2024-02-26 14:05:02.63 2024-02-26 14:05:02.63 9000 TIP 439326 21047 6072630 2024-02-26 14:05:02.998 2024-02-26 14:05:02.998 1000 FEE 439326 1438 6072631 2024-02-26 14:05:02.998 2024-02-26 14:05:02.998 9000 TIP 439326 19458 6072634 2024-02-26 14:05:04.404 2024-02-26 14:05:04.404 1000 FEE 439345 4633 6072636 2024-02-26 14:05:17.485 2024-02-26 14:05:17.485 1000 FEE 439347 20481 6072655 2024-02-26 14:06:36.33 2024-02-26 14:06:36.33 1000 FEE 439348 1244 6072656 2024-02-26 14:06:36.33 2024-02-26 14:06:36.33 9000 TIP 439348 19660 6072665 2024-02-26 14:06:39.588 2024-02-26 14:06:39.588 1000 FEE 439348 21166 6072666 2024-02-26 14:06:39.588 2024-02-26 14:06:39.588 9000 TIP 439348 17226 6072693 2024-02-26 14:08:32.765 2024-02-26 14:08:32.765 1000 FEE 439352 19841 6072704 2024-02-26 14:09:15.53 2024-02-26 14:09:15.53 2100 FEE 439080 15386 6072705 2024-02-26 14:09:15.53 2024-02-26 14:09:15.53 18900 TIP 439080 19622 6072717 2024-02-26 14:10:13.928 2024-02-26 14:10:13.928 1000 FEE 439298 7425 6072718 2024-02-26 14:10:13.928 2024-02-26 14:10:13.928 9000 TIP 439298 21247 6072727 2024-02-26 14:10:39.613 2024-02-26 14:10:39.613 1000 FEE 439356 21157 6072781 2024-02-26 14:15:30.057 2024-02-26 14:15:30.057 5000 FEE 439286 15100 6072782 2024-02-26 14:15:30.057 2024-02-26 14:15:30.057 45000 TIP 439286 15577 6072783 2024-02-26 14:15:30.227 2024-02-26 14:15:30.227 5000 FEE 439286 6164 6072784 2024-02-26 14:15:30.227 2024-02-26 14:15:30.227 45000 TIP 439286 18525 6072809 2024-02-26 14:18:08.642 2024-02-26 14:18:08.642 1100 FEE 439028 14280 6072810 2024-02-26 14:18:08.642 2024-02-26 14:18:08.642 9900 TIP 439028 18005 6072821 2024-02-26 14:19:41.212 2024-02-26 14:19:41.212 1000 FEE 439367 2206 6072825 2024-02-26 14:19:52.813 2024-02-26 14:19:52.813 1000 FEE 439369 18208 6072847 2024-02-26 14:21:31.857 2024-02-26 14:21:31.857 100 FEE 439349 685 6072848 2024-02-26 14:21:31.857 2024-02-26 14:21:31.857 900 TIP 439349 685 6072866 2024-02-26 14:21:39.617 2024-02-26 14:21:39.617 100 FEE 439349 20837 6072867 2024-02-26 14:21:39.617 2024-02-26 14:21:39.617 900 TIP 439349 10611 6072371 2024-02-26 13:44:42.091 2024-02-26 13:44:42.091 1000 FEE 438796 16193 6072372 2024-02-26 13:44:42.091 2024-02-26 13:44:42.091 9000 TIP 438796 1438 6072377 2024-02-26 13:44:49.099 2024-02-26 13:44:49.099 1000 FEE 438727 8059 6072378 2024-02-26 13:44:49.099 2024-02-26 13:44:49.099 9000 TIP 438727 10979 6072379 2024-02-26 13:44:50.418 2024-02-26 13:44:50.418 1000 FEE 438727 7772 6072380 2024-02-26 13:44:50.418 2024-02-26 13:44:50.418 9000 TIP 438727 9159 6072394 2024-02-26 13:45:42.917 2024-02-26 13:45:42.917 1000 FEE 437959 770 6072395 2024-02-26 13:45:42.917 2024-02-26 13:45:42.917 9000 TIP 437959 730 6072398 2024-02-26 13:45:43.699 2024-02-26 13:45:43.699 1000 FEE 437959 18262 6072399 2024-02-26 13:45:43.699 2024-02-26 13:45:43.699 9000 TIP 437959 1090 6072404 2024-02-26 13:45:45.217 2024-02-26 13:45:45.217 1000 FEE 437959 19637 6072405 2024-02-26 13:45:45.217 2024-02-26 13:45:45.217 9000 TIP 437959 19633 6072418 2024-02-26 13:46:07.341 2024-02-26 13:46:07.341 2100 FEE 439151 11714 6072419 2024-02-26 13:46:07.341 2024-02-26 13:46:07.341 18900 TIP 439151 12959 6072420 2024-02-26 13:46:15.811 2024-02-26 13:46:15.811 2100 FEE 439161 1564 6072421 2024-02-26 13:46:15.811 2024-02-26 13:46:15.811 18900 TIP 439161 900 6072434 2024-02-26 13:47:30.654 2024-02-26 13:47:30.654 2100 FEE 439228 913 6072435 2024-02-26 13:47:30.654 2024-02-26 13:47:30.654 18900 TIP 439228 9985 6072443 2024-02-26 13:48:40.126 2024-02-26 13:48:40.126 100000 FEE 439326 9337 6072456 2024-02-26 13:48:43.037 2024-02-26 13:48:43.037 6900 FEE 439315 16329 6072457 2024-02-26 13:48:43.037 2024-02-26 13:48:43.037 62100 TIP 439315 15147 6072482 2024-02-26 13:49:58.688 2024-02-26 13:49:58.688 2100 FEE 439147 15196 6072483 2024-02-26 13:49:58.688 2024-02-26 13:49:58.688 18900 TIP 439147 15213 6072496 2024-02-26 13:51:32.539 2024-02-26 13:51:32.539 1000 FEE 439194 21393 6072497 2024-02-26 13:51:32.539 2024-02-26 13:51:32.539 9000 TIP 439194 9084 6072511 2024-02-26 13:52:18.418 2024-02-26 13:52:18.418 2100 FEE 439099 16867 6072512 2024-02-26 13:52:18.418 2024-02-26 13:52:18.418 18900 TIP 439099 20377 6072527 2024-02-26 13:54:21.256 2024-02-26 13:54:21.256 1000 FEE 439334 635 6072544 2024-02-26 13:55:43.052 2024-02-26 13:55:43.052 1000 FEE 439336 4128 6072551 2024-02-26 13:57:13.125 2024-02-26 13:57:13.125 10000 FEE 439339 2502 6072563 2024-02-26 13:58:51.095 2024-02-26 13:58:51.095 10000 FEE 439315 688 6072564 2024-02-26 13:58:51.095 2024-02-26 13:58:51.095 90000 TIP 439315 20006 6072583 2024-02-26 13:59:36.407 2024-02-26 13:59:36.407 100 FEE 439263 19976 6072584 2024-02-26 13:59:36.407 2024-02-26 13:59:36.407 900 TIP 439263 19148 6072608 2024-02-26 14:02:35.844 2024-02-26 14:02:35.844 10000 FEE 439322 20381 6072609 2024-02-26 14:02:35.844 2024-02-26 14:02:35.844 90000 TIP 439322 1173 6072639 2024-02-26 14:05:55.148 2024-02-26 14:05:55.148 4000 FEE 439348 20993 6072640 2024-02-26 14:05:55.148 2024-02-26 14:05:55.148 36000 TIP 439348 646 6072648 2024-02-26 14:06:33.083 2024-02-26 14:06:33.083 1000 FEE 439348 15200 6072649 2024-02-26 14:06:33.083 2024-02-26 14:06:33.083 9000 TIP 439348 20246 6072682 2024-02-26 14:07:09.073 2024-02-26 14:07:09.073 1000 FEE 439348 13574 6072683 2024-02-26 14:07:09.073 2024-02-26 14:07:09.073 9000 TIP 439348 782 6072694 2024-02-26 14:08:43.793 2024-02-26 14:08:43.793 1000 FEE 439233 21441 6072695 2024-02-26 14:08:43.793 2024-02-26 14:08:43.793 9000 TIP 439233 2206 6072775 2024-02-26 14:14:35.254 2024-02-26 14:14:35.254 1000 FEE 439361 21614 6072780 2024-02-26 14:15:16.67 2024-02-26 14:15:16.67 98000 FEE 439362 13399 6072789 2024-02-26 14:16:00.792 2024-02-26 14:16:00.792 100 FEE 439315 15271 6072790 2024-02-26 14:16:00.792 2024-02-26 14:16:00.792 900 TIP 439315 5112 6072792 2024-02-26 14:16:07.119 2024-02-26 14:16:07.119 2100 FEE 439131 21578 6072793 2024-02-26 14:16:07.119 2024-02-26 14:16:07.119 18900 TIP 439131 20624 6072805 2024-02-26 14:17:36.527 2024-02-26 14:17:36.527 2100 FEE 439230 5519 6072806 2024-02-26 14:17:36.527 2024-02-26 14:17:36.527 18900 TIP 439230 18526 6072808 2024-02-26 14:18:04.988 2024-02-26 14:18:04.988 1000 FEE 439365 21157 6072811 2024-02-26 14:18:15.033 2024-02-26 14:18:15.033 2100 FEE 439364 12708 6072812 2024-02-26 14:18:15.033 2024-02-26 14:18:15.033 18900 TIP 439364 18629 6072822 2024-02-26 14:19:42.28 2024-02-26 14:19:42.28 21000 FEE 439368 19910 6072823 2024-02-26 14:19:46.801 2024-02-26 14:19:46.801 4000 FEE 439358 19809 6072824 2024-02-26 14:19:46.801 2024-02-26 14:19:46.801 36000 TIP 439358 12566 6072837 2024-02-26 14:21:13.333 2024-02-26 14:21:13.333 10000 FEE 439358 2123 6072838 2024-02-26 14:21:13.333 2024-02-26 14:21:13.333 90000 TIP 439358 1000 6072843 2024-02-26 14:21:31.549 2024-02-26 14:21:31.549 100 FEE 439349 17184 6072844 2024-02-26 14:21:31.549 2024-02-26 14:21:31.549 900 TIP 439349 4014 6072859 2024-02-26 14:21:33.47 2024-02-26 14:21:33.47 100 FEE 439349 6383 6072860 2024-02-26 14:21:33.47 2024-02-26 14:21:33.47 900 TIP 439349 5522 6072448 2024-02-26 13:48:42.405 2024-02-26 13:48:42.405 6900 FEE 439315 1772 6072449 2024-02-26 13:48:42.405 2024-02-26 13:48:42.405 62100 TIP 439315 14280 6072458 2024-02-26 13:48:43.186 2024-02-26 13:48:43.186 6900 FEE 439315 9 6072459 2024-02-26 13:48:43.186 2024-02-26 13:48:43.186 62100 TIP 439315 21400 6072464 2024-02-26 13:48:43.63 2024-02-26 13:48:43.63 6900 FEE 439315 20430 6072465 2024-02-26 13:48:43.63 2024-02-26 13:48:43.63 62100 TIP 439315 20573 6072475 2024-02-26 13:49:08.28 2024-02-26 13:49:08.28 69000 DONT_LIKE_THIS 439305 12222 6072476 2024-02-26 13:49:25.799 2024-02-26 13:49:25.799 6900 FEE 439298 9476 6072477 2024-02-26 13:49:25.799 2024-02-26 13:49:25.799 62100 TIP 439298 15060 6072498 2024-02-26 13:51:39.53 2024-02-26 13:51:39.53 1000 FEE 439331 5455 6072506 2024-02-26 13:52:06.927 2024-02-26 13:52:06.927 69000 DONT_LIKE_THIS 439323 2029 6072518 2024-02-26 13:53:24.771 2024-02-26 13:53:24.771 5000 FEE 438383 9276 6072519 2024-02-26 13:53:24.771 2024-02-26 13:53:24.771 45000 TIP 438383 16259 6072535 2024-02-26 13:55:10.746 2024-02-26 13:55:10.746 3300 FEE 439290 21262 6072536 2024-02-26 13:55:10.746 2024-02-26 13:55:10.746 29700 TIP 439290 20058 6072540 2024-02-26 13:55:37.941 2024-02-26 13:55:37.941 2400 FEE 439255 15351 6072541 2024-02-26 13:55:37.941 2024-02-26 13:55:37.941 21600 TIP 439255 9166 6072546 2024-02-26 13:56:17.422 2024-02-26 13:56:17.422 1000 FEE 439337 4633 6072570 2024-02-26 13:59:14.545 2024-02-26 13:59:14.545 9000 FEE 439263 20254 6072571 2024-02-26 13:59:14.545 2024-02-26 13:59:14.545 81000 TIP 439263 19570 6072610 2024-02-26 14:02:42.803 2024-02-26 14:02:42.803 2100 FEE 438563 1737 6072611 2024-02-26 14:02:42.803 2024-02-26 14:02:42.803 18900 TIP 438563 20099 6072635 2024-02-26 14:05:05.795 2024-02-26 14:05:05.795 100000 FEE 439346 11967 6072637 2024-02-26 14:05:20.035 2024-02-26 14:05:20.035 0 FEE 439343 1571 6072644 2024-02-26 14:06:31.278 2024-02-26 14:06:31.278 1000 FEE 439348 20058 6072645 2024-02-26 14:06:31.278 2024-02-26 14:06:31.278 9000 TIP 439348 10719 6072667 2024-02-26 14:06:50.625 2024-02-26 14:06:50.625 1000 FEE 439151 20757 6072668 2024-02-26 14:06:50.625 2024-02-26 14:06:50.625 9000 TIP 439151 14731 6072680 2024-02-26 14:07:08.699 2024-02-26 14:07:08.699 1000 FEE 439250 4076 6072681 2024-02-26 14:07:08.699 2024-02-26 14:07:08.699 9000 TIP 439250 18311 6072696 2024-02-26 14:08:48.189 2024-02-26 14:08:48.189 10000 FEE 439353 7395 6072700 2024-02-26 14:09:02.429 2024-02-26 14:09:02.429 2100 FEE 439163 18269 6072701 2024-02-26 14:09:02.429 2024-02-26 14:09:02.429 18900 TIP 439163 19199 6072723 2024-02-26 14:10:30.715 2024-02-26 14:10:30.715 4000 FEE 439353 768 6072724 2024-02-26 14:10:30.715 2024-02-26 14:10:30.715 36000 TIP 439353 725 6072755 2024-02-26 14:12:42.202 2024-02-26 14:12:42.202 1000 FEE 439359 19886 6072756 2024-02-26 14:12:55.236 2024-02-26 14:12:55.236 1000 FEE 439281 12507 6072757 2024-02-26 14:12:55.236 2024-02-26 14:12:55.236 9000 TIP 439281 17713 6072763 2024-02-26 14:13:28.455 2024-02-26 14:13:28.455 1000 FEE 439251 19570 6072764 2024-02-26 14:13:28.455 2024-02-26 14:13:28.455 9000 TIP 439251 14037 6072770 2024-02-26 14:14:16.532 2024-02-26 14:14:16.532 1000 FEE 439215 21022 6072771 2024-02-26 14:14:16.532 2024-02-26 14:14:16.532 9000 TIP 439215 13517 6072799 2024-02-26 14:17:08.007 2024-02-26 14:17:08.007 100 FEE 439346 5757 6072800 2024-02-26 14:17:08.007 2024-02-26 14:17:08.007 900 TIP 439346 1272 6072803 2024-02-26 14:17:32.962 2024-02-26 14:17:32.962 2100 FEE 439301 1519 6072804 2024-02-26 14:17:32.962 2024-02-26 14:17:32.962 18900 TIP 439301 630 6072820 2024-02-26 14:19:18.177 2024-02-26 14:19:18.177 1000 FEE 439366 18154 6072826 2024-02-26 14:19:57.712 2024-02-26 14:19:57.712 2100 FEE 439326 891 6072827 2024-02-26 14:19:57.712 2024-02-26 14:19:57.712 18900 TIP 439326 12744 6072829 2024-02-26 14:21:02.506 2024-02-26 14:21:02.506 1000 FEE 439370 8059 6072841 2024-02-26 14:21:31.369 2024-02-26 14:21:31.369 100 FEE 439349 15833 6072842 2024-02-26 14:21:31.369 2024-02-26 14:21:31.369 900 TIP 439349 21303 6072868 2024-02-26 14:21:39.791 2024-02-26 14:21:39.791 100 FEE 439349 17014 6072869 2024-02-26 14:21:39.791 2024-02-26 14:21:39.791 900 TIP 439349 825 6072901 2024-02-26 14:24:05.563 2024-02-26 14:24:05.563 100 FEE 439348 10280 6072902 2024-02-26 14:24:05.563 2024-02-26 14:24:05.563 900 TIP 439348 5427 6072913 2024-02-26 14:25:15.156 2024-02-26 14:25:15.156 2100 FEE 439326 1784 6072914 2024-02-26 14:25:15.156 2024-02-26 14:25:15.156 18900 TIP 439326 16176 6072936 2024-02-26 14:27:47.362 2024-02-26 14:27:47.362 4200 FEE 439130 11942 6072937 2024-02-26 14:27:47.362 2024-02-26 14:27:47.362 37800 TIP 439130 19546 6072949 2024-02-26 14:32:02.941 2024-02-26 14:32:02.941 1000 FEE 439212 676 6072950 2024-02-26 14:32:02.941 2024-02-26 14:32:02.941 9000 TIP 439212 18809 6073013 2024-02-26 14:37:16.727 2024-02-26 14:37:16.727 11100 FEE 439263 20825 6073014 2024-02-26 14:37:16.727 2024-02-26 14:37:16.727 99900 TIP 439263 6360 6073015 2024-02-26 14:37:23.153 2024-02-26 14:37:23.153 2100 FEE 439326 9099 6073016 2024-02-26 14:37:23.153 2024-02-26 14:37:23.153 18900 TIP 439326 19553 6073032 2024-02-26 14:38:04.911 2024-02-26 14:38:04.911 1000 FEE 439223 11527 6073033 2024-02-26 14:38:04.911 2024-02-26 14:38:04.911 9000 TIP 439223 20969 6073040 2024-02-26 14:38:54.402 2024-02-26 14:38:54.402 1000 FEE 439361 770 6073041 2024-02-26 14:38:54.402 2024-02-26 14:38:54.402 9000 TIP 439361 20058 6073061 2024-02-26 14:40:49.328 2024-02-26 14:40:49.328 90000 FEE 439315 9351 6073062 2024-02-26 14:40:49.328 2024-02-26 14:40:49.328 810000 TIP 439315 1723 6073121 2024-02-26 14:43:31.142 2024-02-26 14:43:31.142 9000 FEE 439100 14552 6073122 2024-02-26 14:43:31.142 2024-02-26 14:43:31.142 81000 TIP 439100 8998 6073140 2024-02-26 14:44:35.001 2024-02-26 14:44:35.001 1000 FEE 439268 21527 6073141 2024-02-26 14:44:35.001 2024-02-26 14:44:35.001 9000 TIP 439268 16834 6073149 2024-02-26 14:44:43.657 2024-02-26 14:44:43.657 9000 FEE 438929 1136 6073150 2024-02-26 14:44:43.657 2024-02-26 14:44:43.657 81000 TIP 438929 7389 6073151 2024-02-26 14:44:46.717 2024-02-26 14:44:46.717 1000 FEE 439397 4633 6073157 2024-02-26 14:45:04.816 2024-02-26 14:45:04.816 900 FEE 438937 16296 6073158 2024-02-26 14:45:04.816 2024-02-26 14:45:04.816 8100 TIP 438937 21463 6073166 2024-02-26 14:45:15.748 2024-02-26 14:45:15.748 9000 FEE 438965 10484 6073167 2024-02-26 14:45:15.748 2024-02-26 14:45:15.748 81000 TIP 438965 6419 6073177 2024-02-26 14:45:33.633 2024-02-26 14:45:33.633 2100 FEE 439354 986 6073178 2024-02-26 14:45:33.633 2024-02-26 14:45:33.633 18900 TIP 439354 20970 6073179 2024-02-26 14:45:34.682 2024-02-26 14:45:34.682 100 FEE 438970 19690 6073180 2024-02-26 14:45:34.682 2024-02-26 14:45:34.682 900 TIP 438970 20788 6073185 2024-02-26 14:45:51.904 2024-02-26 14:45:51.904 1000 FEE 439401 18517 6073190 2024-02-26 14:45:53.811 2024-02-26 14:45:53.811 1000 FEE 439263 1549 6073191 2024-02-26 14:45:53.811 2024-02-26 14:45:53.811 9000 TIP 439263 960 6073222 2024-02-26 14:46:33.599 2024-02-26 14:46:33.599 2100 FEE 439167 20036 6073223 2024-02-26 14:46:33.599 2024-02-26 14:46:33.599 18900 TIP 439167 716 6073242 2024-02-26 14:47:40.654 2024-02-26 14:47:40.654 100000 FEE 439405 20106 6073271 2024-02-26 14:49:25.035 2024-02-26 14:49:25.035 2100 FEE 439402 616 6073272 2024-02-26 14:49:25.035 2024-02-26 14:49:25.035 18900 TIP 439402 11144 6073283 2024-02-26 14:50:04.561 2024-02-26 14:50:04.561 2100 FEE 439405 13378 6073284 2024-02-26 14:50:04.561 2024-02-26 14:50:04.561 18900 TIP 439405 20254 6073296 2024-02-26 14:51:30.221 2024-02-26 14:51:30.221 100 FEE 439277 14152 6073297 2024-02-26 14:51:30.221 2024-02-26 14:51:30.221 900 TIP 439277 11075 6072517 2024-02-26 13:53:03.83 2024-02-26 13:53:03.83 1000 STREAM 141924 14545 6072550 2024-02-26 13:57:03.893 2024-02-26 13:57:03.893 1000 STREAM 141924 18220 6072565 2024-02-26 13:59:03.911 2024-02-26 13:59:03.911 1000 STREAM 141924 1624 6072602 2024-02-26 14:02:02.114 2024-02-26 14:02:02.114 1000 STREAM 141924 7553 6072691 2024-02-26 14:08:02.178 2024-02-26 14:08:02.178 1000 STREAM 141924 11144 6072732 2024-02-26 14:11:02.183 2024-02-26 14:11:02.183 1000 STREAM 141924 21026 6072766 2024-02-26 14:14:02.234 2024-02-26 14:14:02.234 1000 STREAM 141924 21523 6072807 2024-02-26 14:18:02.941 2024-02-26 14:18:02.941 1000 STREAM 141924 20495 6072893 2024-02-26 14:23:02.969 2024-02-26 14:23:02.969 1000 STREAM 141924 5961 6072910 2024-02-26 14:25:02.975 2024-02-26 14:25:02.975 1000 STREAM 141924 5129 6072920 2024-02-26 14:26:02.972 2024-02-26 14:26:02.972 1000 STREAM 141924 2309 6072940 2024-02-26 14:29:03.322 2024-02-26 14:29:03.322 1000 STREAM 141924 21274 6072945 2024-02-26 14:30:03.326 2024-02-26 14:30:03.326 1000 STREAM 141924 1985 6073010 2024-02-26 14:37:03.695 2024-02-26 14:37:03.695 1000 STREAM 141924 20302 6073065 2024-02-26 14:41:03.717 2024-02-26 14:41:03.717 1000 STREAM 141924 11328 6073075 2024-02-26 14:42:03.719 2024-02-26 14:42:03.719 1000 STREAM 141924 21501 6073111 2024-02-26 14:43:03.726 2024-02-26 14:43:03.726 1000 STREAM 141924 18667 6073282 2024-02-26 14:50:03.79 2024-02-26 14:50:03.79 1000 STREAM 141924 19848 6073321 2024-02-26 14:53:04.351 2024-02-26 14:53:04.351 1000 STREAM 141924 19142 6072523 2024-02-26 13:53:53.748 2024-02-26 13:53:53.748 36000 TIP 439315 13217 6072528 2024-02-26 13:54:38.027 2024-02-26 13:54:38.027 1000 FEE 438999 18138 6072529 2024-02-26 13:54:38.027 2024-02-26 13:54:38.027 9000 TIP 438999 10818 6072549 2024-02-26 13:56:27.078 2024-02-26 13:56:27.078 1000 FEE 439338 13100 6072561 2024-02-26 13:58:37.569 2024-02-26 13:58:37.569 2100 FEE 439283 15662 6072562 2024-02-26 13:58:37.569 2024-02-26 13:58:37.569 18900 TIP 439283 714 6072601 2024-02-26 14:02:01.218 2024-02-26 14:02:01.218 1000 POLL 438325 19138 6072616 2024-02-26 14:03:51.002 2024-02-26 14:03:51.002 21100 FEE 439315 7978 6072617 2024-02-26 14:03:51.002 2024-02-26 14:03:51.002 189900 TIP 439315 14267 6072628 2024-02-26 14:05:02.832 2024-02-26 14:05:02.832 1000 FEE 439326 13217 6072629 2024-02-26 14:05:02.832 2024-02-26 14:05:02.832 9000 TIP 439326 6393 6072632 2024-02-26 14:05:03.202 2024-02-26 14:05:03.202 1000 FEE 439326 11288 6072633 2024-02-26 14:05:03.202 2024-02-26 14:05:03.202 9000 TIP 439326 6148 6072646 2024-02-26 14:06:32.25 2024-02-26 14:06:32.25 1000 FEE 439348 8080 6072647 2024-02-26 14:06:32.25 2024-02-26 14:06:32.25 9000 TIP 439348 1800 6072661 2024-02-26 14:06:37.718 2024-02-26 14:06:37.718 1000 FEE 439139 928 6072662 2024-02-26 14:06:37.718 2024-02-26 14:06:37.718 9000 TIP 439139 4084 6072663 2024-02-26 14:06:38.262 2024-02-26 14:06:38.262 1000 FEE 439348 20353 6072664 2024-02-26 14:06:38.262 2024-02-26 14:06:38.262 9000 TIP 439348 11776 6072678 2024-02-26 14:07:08.341 2024-02-26 14:07:08.341 1000 FEE 439348 4314 6072679 2024-02-26 14:07:08.341 2024-02-26 14:07:08.341 9000 TIP 439348 20381 6072684 2024-02-26 14:07:09.748 2024-02-26 14:07:09.748 1000 FEE 439348 19911 6072685 2024-02-26 14:07:09.748 2024-02-26 14:07:09.748 9000 TIP 439348 10352 6072702 2024-02-26 14:09:10.544 2024-02-26 14:09:10.544 1000 FEE 439237 20837 6072703 2024-02-26 14:09:10.544 2024-02-26 14:09:10.544 9000 TIP 439237 18539 6072707 2024-02-26 14:09:30.279 2024-02-26 14:09:30.279 1000 FEE 439207 2330 6072708 2024-02-26 14:09:30.279 2024-02-26 14:09:30.279 9000 TIP 439207 1046 6072751 2024-02-26 14:12:16.084 2024-02-26 14:12:16.084 2100 FEE 439233 21216 6072752 2024-02-26 14:12:16.084 2024-02-26 14:12:16.084 18900 TIP 439233 2233 6072776 2024-02-26 14:14:45.157 2024-02-26 14:14:45.157 100 FEE 439213 5775 6072777 2024-02-26 14:14:45.157 2024-02-26 14:14:45.157 900 TIP 439213 20109 6072794 2024-02-26 14:16:08.705 2024-02-26 14:16:08.705 4000 FEE 439306 20816 6072795 2024-02-26 14:16:08.705 2024-02-26 14:16:08.705 36000 TIP 439306 18989 6072817 2024-02-26 14:18:51.066 2024-02-26 14:18:51.066 100 FEE 439315 1135 6072818 2024-02-26 14:18:51.066 2024-02-26 14:18:51.066 900 TIP 439315 21573 6072839 2024-02-26 14:21:29.19 2024-02-26 14:21:29.19 1100 FEE 438947 20454 6072840 2024-02-26 14:21:29.19 2024-02-26 14:21:29.19 9900 TIP 438947 9183 6072849 2024-02-26 14:21:31.993 2024-02-26 14:21:31.993 100 FEE 439349 8168 6072850 2024-02-26 14:21:31.993 2024-02-26 14:21:31.993 900 TIP 439349 19394 6072851 2024-02-26 14:21:32.18 2024-02-26 14:21:32.18 100 FEE 439349 18470 6072852 2024-02-26 14:21:32.18 2024-02-26 14:21:32.18 900 TIP 439349 18199 6072853 2024-02-26 14:21:32.523 2024-02-26 14:21:32.523 100 FEE 439349 17592 6072854 2024-02-26 14:21:32.523 2024-02-26 14:21:32.523 900 TIP 439349 21166 6072861 2024-02-26 14:21:34.214 2024-02-26 14:21:34.214 1000 FEE 439371 897 6072864 2024-02-26 14:21:39.574 2024-02-26 14:21:39.574 100 FEE 439349 20730 6072865 2024-02-26 14:21:39.574 2024-02-26 14:21:39.574 900 TIP 439349 16754 6072886 2024-02-26 14:21:54.307 2024-02-26 14:21:54.307 100 FEE 439358 20272 6072887 2024-02-26 14:21:54.307 2024-02-26 14:21:54.307 900 TIP 439358 19863 6072943 2024-02-26 14:29:59.425 2024-02-26 14:29:59.425 4000 FEE 439372 1785 6072944 2024-02-26 14:29:59.425 2024-02-26 14:29:59.425 36000 TIP 439372 2576 6072948 2024-02-26 14:31:31.272 2024-02-26 14:31:31.272 1000 FEE 439381 19132 6072952 2024-02-26 14:32:10.927 2024-02-26 14:32:10.927 4000 FEE 439100 20778 6072953 2024-02-26 14:32:10.927 2024-02-26 14:32:10.927 36000 TIP 439100 16948 6072954 2024-02-26 14:32:24.452 2024-02-26 14:32:24.452 1000 FEE 439234 19094 6072955 2024-02-26 14:32:24.452 2024-02-26 14:32:24.452 9000 TIP 439234 12268 6072956 2024-02-26 14:32:39.11 2024-02-26 14:32:39.11 1000 FEE 439382 17639 6072962 2024-02-26 14:33:12.83 2024-02-26 14:33:12.83 1000 FEE 439358 13169 6072963 2024-02-26 14:33:12.83 2024-02-26 14:33:12.83 9000 TIP 439358 21523 6072964 2024-02-26 14:33:13.61 2024-02-26 14:33:13.61 1000 FEE 439358 16432 6072965 2024-02-26 14:33:13.61 2024-02-26 14:33:13.61 9000 TIP 439358 1718 6072966 2024-02-26 14:33:28.105 2024-02-26 14:33:28.105 2100 FEE 439372 1105 6072967 2024-02-26 14:33:28.105 2024-02-26 14:33:28.105 18900 TIP 439372 2502 6072970 2024-02-26 14:33:45.275 2024-02-26 14:33:45.275 1000 FEE 439385 20353 6072972 2024-02-26 14:34:10.52 2024-02-26 14:34:10.52 1000 FEE 439386 8269 6072973 2024-02-26 14:34:16.282 2024-02-26 14:34:16.282 1000 FEE 439387 19284 6072979 2024-02-26 14:35:25.387 2024-02-26 14:35:25.387 2700 FEE 439295 13987 6072980 2024-02-26 14:35:25.387 2024-02-26 14:35:25.387 24300 TIP 439295 21079 6072987 2024-02-26 14:35:26.163 2024-02-26 14:35:26.163 2700 FEE 439295 5499 6072988 2024-02-26 14:35:26.163 2024-02-26 14:35:26.163 24300 TIP 439295 19296 6073008 2024-02-26 14:37:00.774 2024-02-26 14:37:00.774 2100 FEE 439358 14503 6073009 2024-02-26 14:37:00.774 2024-02-26 14:37:00.774 18900 TIP 439358 21119 6073011 2024-02-26 14:37:10.145 2024-02-26 14:37:10.145 1000 FEE 439388 2196 6073053 2024-02-26 14:40:24.882 2024-02-26 14:40:24.882 2100 FEE 438737 6058 6073054 2024-02-26 14:40:24.882 2024-02-26 14:40:24.882 18900 TIP 438737 18751 6073055 2024-02-26 14:40:47.159 2024-02-26 14:40:47.159 100 FEE 439315 14688 6073056 2024-02-26 14:40:47.159 2024-02-26 14:40:47.159 900 TIP 439315 16842 6073104 2024-02-26 14:42:42.3 2024-02-26 14:42:42.3 2100 FEE 439279 20245 6073105 2024-02-26 14:42:42.3 2024-02-26 14:42:42.3 18900 TIP 439279 5701 6073119 2024-02-26 14:43:30.71 2024-02-26 14:43:30.71 900 FEE 439100 16876 6073120 2024-02-26 14:43:30.71 2024-02-26 14:43:30.71 8100 TIP 439100 1261 6073124 2024-02-26 14:44:01.757 2024-02-26 14:44:01.757 100 FEE 438866 9551 6072581 2024-02-26 13:59:28.029 2024-02-26 13:59:28.029 900 TIP 438737 10530 6072615 2024-02-26 14:03:04.628 2024-02-26 14:03:04.628 1000 FEE 439343 11516 6072622 2024-02-26 14:04:51.532 2024-02-26 14:04:51.532 0 FEE 439344 11898 6072642 2024-02-26 14:06:25.996 2024-02-26 14:06:25.996 200 FEE 439295 1471 6072643 2024-02-26 14:06:25.996 2024-02-26 14:06:25.996 1800 TIP 439295 10849 6072651 2024-02-26 14:06:33.998 2024-02-26 14:06:33.998 1000 FEE 439348 10016 6072652 2024-02-26 14:06:33.998 2024-02-26 14:06:33.998 9000 TIP 439348 11458 6072672 2024-02-26 14:07:04.932 2024-02-26 14:07:04.932 1000 FEE 439348 13055 6072673 2024-02-26 14:07:04.932 2024-02-26 14:07:04.932 9000 TIP 439348 20599 6072687 2024-02-26 14:07:37.183 2024-02-26 14:07:37.183 1000 FEE 439234 17162 6072688 2024-02-26 14:07:37.183 2024-02-26 14:07:37.183 9000 TIP 439234 17050 6072689 2024-02-26 14:07:38.379 2024-02-26 14:07:38.379 1000 FEE 439340 17331 6072690 2024-02-26 14:07:38.379 2024-02-26 14:07:38.379 9000 TIP 439340 2039 6072692 2024-02-26 14:08:15.229 2024-02-26 14:08:15.229 1000 FEE 439351 1316 6072706 2024-02-26 14:09:22.995 2024-02-26 14:09:22.995 0 FEE 439352 9335 6072715 2024-02-26 14:10:11.126 2024-02-26 14:10:11.126 1000 FEE 439130 760 6072716 2024-02-26 14:10:11.126 2024-02-26 14:10:11.126 9000 TIP 439130 1814 6072719 2024-02-26 14:10:14.753 2024-02-26 14:10:14.753 1000 FEE 439186 13763 6072720 2024-02-26 14:10:14.753 2024-02-26 14:10:14.753 9000 TIP 439186 21271 6072721 2024-02-26 14:10:25.052 2024-02-26 14:10:25.052 1000 FEE 439218 8713 6072722 2024-02-26 14:10:25.052 2024-02-26 14:10:25.052 9000 TIP 439218 20514 6072741 2024-02-26 14:11:49.891 2024-02-26 14:11:49.891 1000 FEE 439170 18269 6072742 2024-02-26 14:11:49.891 2024-02-26 14:11:49.891 9000 TIP 439170 1596 6072758 2024-02-26 14:12:59.371 2024-02-26 14:12:59.371 1000 FEE 439276 15806 6072759 2024-02-26 14:12:59.371 2024-02-26 14:12:59.371 9000 TIP 439276 17817 6072761 2024-02-26 14:13:17.846 2024-02-26 14:13:17.846 1000 FEE 439259 17797 6072762 2024-02-26 14:13:17.846 2024-02-26 14:13:17.846 9000 TIP 439259 1352 6072767 2024-02-26 14:14:04.868 2024-02-26 14:14:04.868 0 FEE 439352 21201 6072768 2024-02-26 14:14:06.455 2024-02-26 14:14:06.455 1000 FEE 439229 18663 6072769 2024-02-26 14:14:06.455 2024-02-26 14:14:06.455 9000 TIP 439229 14650 6072774 2024-02-26 14:14:32.768 2024-02-26 14:14:32.768 1000 FEE 439360 19394 6072785 2024-02-26 14:15:30.33 2024-02-26 14:15:30.33 1000 FEE 439363 20972 6072845 2024-02-26 14:21:31.694 2024-02-26 14:21:31.694 100 FEE 439349 6573 6072846 2024-02-26 14:21:31.694 2024-02-26 14:21:31.694 900 TIP 439349 5195 6072876 2024-02-26 14:21:40.84 2024-02-26 14:21:40.84 100 FEE 439349 20825 6072877 2024-02-26 14:21:40.84 2024-02-26 14:21:40.84 900 TIP 439349 2709 6072888 2024-02-26 14:21:55.199 2024-02-26 14:21:55.199 42000 FEE 439372 14169 6072896 2024-02-26 14:23:30.812 2024-02-26 14:23:30.812 2100 FEE 438651 15159 6072897 2024-02-26 14:23:30.812 2024-02-26 14:23:30.812 18900 TIP 438651 19126 6072903 2024-02-26 14:24:15.182 2024-02-26 14:24:15.182 2100 FEE 430710 9184 6072904 2024-02-26 14:24:15.182 2024-02-26 14:24:15.182 18900 TIP 430710 19826 6072908 2024-02-26 14:24:47.465 2024-02-26 14:24:47.465 2100 FEE 439372 17226 6072909 2024-02-26 14:24:47.465 2024-02-26 14:24:47.465 18900 TIP 439372 3456 6072915 2024-02-26 14:25:54.393 2024-02-26 14:25:54.393 1000 FEE 439375 19637 6072959 2024-02-26 14:33:11.677 2024-02-26 14:33:11.677 1000 FEE 439384 12024 6072992 2024-02-26 14:36:27.167 2024-02-26 14:36:27.167 22200 FEE 439315 4415 6072993 2024-02-26 14:36:27.167 2024-02-26 14:36:27.167 199800 TIP 439315 8004 6073017 2024-02-26 14:37:24.039 2024-02-26 14:37:24.039 2100 FEE 439353 929 6073018 2024-02-26 14:37:24.039 2024-02-26 14:37:24.039 18900 TIP 439353 3686 6073045 2024-02-26 14:39:04.575 2024-02-26 14:39:04.575 1000 FEE 439382 861 6073046 2024-02-26 14:39:04.575 2024-02-26 14:39:04.575 9000 TIP 439382 20381 6073097 2024-02-26 14:42:16.472 2024-02-26 14:42:16.472 100 FEE 439371 1609 6073098 2024-02-26 14:42:16.472 2024-02-26 14:42:16.472 900 TIP 439371 21136 6073110 2024-02-26 14:43:02.752 2024-02-26 14:43:02.752 1000 FEE 439394 18705 6073115 2024-02-26 14:43:23.492 2024-02-26 14:43:23.492 10000 FEE 439140 7809 6073116 2024-02-26 14:43:23.492 2024-02-26 14:43:23.492 90000 TIP 439140 19469 6073135 2024-02-26 14:44:25.189 2024-02-26 14:44:25.189 1000 POLL 438794 8168 6073161 2024-02-26 14:45:13.877 2024-02-26 14:45:13.877 100000 FEE 439398 13759 6073196 2024-02-26 14:45:58.896 2024-02-26 14:45:58.896 2100 FEE 439298 3990 6073197 2024-02-26 14:45:58.896 2024-02-26 14:45:58.896 18900 TIP 439298 5449 6073207 2024-02-26 14:46:23.616 2024-02-26 14:46:23.616 100 FEE 439045 12606 6073208 2024-02-26 14:46:23.616 2024-02-26 14:46:23.616 900 TIP 439045 20511 6073238 2024-02-26 14:47:39.682 2024-02-26 14:47:39.682 100 FEE 439083 21042 6073239 2024-02-26 14:47:39.682 2024-02-26 14:47:39.682 900 TIP 439083 19810 6073243 2024-02-26 14:47:40.813 2024-02-26 14:47:40.813 1000 POLL 438325 3400 6073285 2024-02-26 14:50:06.047 2024-02-26 14:50:06.047 100 FEE 439164 8080 6073286 2024-02-26 14:50:06.047 2024-02-26 14:50:06.047 900 TIP 439164 985 6073292 2024-02-26 14:51:09.933 2024-02-26 14:51:09.933 9900 FEE 439267 5961 6073293 2024-02-26 14:51:09.933 2024-02-26 14:51:09.933 89100 TIP 439267 19346 6073301 2024-02-26 14:51:30.912 2024-02-26 14:51:30.912 9000 FEE 439277 18816 6073302 2024-02-26 14:51:30.912 2024-02-26 14:51:30.912 81000 TIP 439277 2639 6073384 2024-02-26 15:00:06.42 2024-02-26 15:00:06.42 100000 FEE 439418 3642 6073389 2024-02-26 15:01:06.526 2024-02-26 15:01:06.526 10000 FEE 439420 8326 6073421 2024-02-26 15:02:46.985 2024-02-26 15:02:46.985 2100 FEE 439417 15088 6073422 2024-02-26 15:02:46.985 2024-02-26 15:02:46.985 18900 TIP 439417 16834 6073443 2024-02-26 15:09:56.47 2024-02-26 15:09:56.47 4000 FEE 439424 976 6073444 2024-02-26 15:09:56.47 2024-02-26 15:09:56.47 36000 TIP 439424 7760 6073455 2024-02-26 15:10:34.783 2024-02-26 15:10:34.783 7700 FEE 439287 19886 6073456 2024-02-26 15:10:34.783 2024-02-26 15:10:34.783 69300 TIP 439287 17291 6073469 2024-02-26 15:12:06.588 2024-02-26 15:12:06.588 2100 FEE 439263 1609 6073470 2024-02-26 15:12:06.588 2024-02-26 15:12:06.588 18900 TIP 439263 4538 6073471 2024-02-26 15:12:07.406 2024-02-26 15:12:07.406 2100 FEE 439263 5806 6073472 2024-02-26 15:12:07.406 2024-02-26 15:12:07.406 18900 TIP 439263 21057 6073483 2024-02-26 15:12:24.576 2024-02-26 15:12:24.576 1100 FEE 439298 11523 6072588 2024-02-26 14:00:04.195 2024-02-26 14:00:04.195 1000 STREAM 141924 16505 6072600 2024-02-26 14:01:04.107 2024-02-26 14:01:04.107 1000 STREAM 141924 1236 6072614 2024-02-26 14:03:02.125 2024-02-26 14:03:02.125 1000 STREAM 141924 5829 6072623 2024-02-26 14:05:02.144 2024-02-26 14:05:02.144 1000 STREAM 141924 13365 6072671 2024-02-26 14:07:02.209 2024-02-26 14:07:02.209 1000 STREAM 141924 20757 6072699 2024-02-26 14:09:02.177 2024-02-26 14:09:02.177 1000 STREAM 141924 12808 6072747 2024-02-26 14:12:02.192 2024-02-26 14:12:02.192 1000 STREAM 141924 18378 6072760 2024-02-26 14:13:02.209 2024-02-26 14:13:02.209 1000 STREAM 141924 14663 6072819 2024-02-26 14:19:02.942 2024-02-26 14:19:02.942 1000 STREAM 141924 17944 6072828 2024-02-26 14:20:02.968 2024-02-26 14:20:02.968 1000 STREAM 141924 20073 6072830 2024-02-26 14:21:02.946 2024-02-26 14:21:02.946 1000 STREAM 141924 21090 6072889 2024-02-26 14:22:02.959 2024-02-26 14:22:02.959 1000 STREAM 141924 1515 6072900 2024-02-26 14:24:02.979 2024-02-26 14:24:02.979 1000 STREAM 141924 10096 6072976 2024-02-26 14:35:03.685 2024-02-26 14:35:03.685 1000 STREAM 141924 21064 6072989 2024-02-26 14:36:03.674 2024-02-26 14:36:03.674 1000 STREAM 141924 756 6073031 2024-02-26 14:38:03.685 2024-02-26 14:38:03.685 1000 STREAM 141924 1237 6073042 2024-02-26 14:39:03.692 2024-02-26 14:39:03.692 1000 STREAM 141924 12721 6073052 2024-02-26 14:40:03.779 2024-02-26 14:40:03.779 1000 STREAM 141924 20187 6073198 2024-02-26 14:46:03.739 2024-02-26 14:46:03.739 1000 STREAM 141924 19967 6073326 2024-02-26 14:54:04.396 2024-02-26 14:54:04.396 1000 STREAM 141924 17798 6073344 2024-02-26 14:55:04.361 2024-02-26 14:55:04.361 1000 STREAM 141924 10981 6072710 2024-02-26 14:10:03.708 2024-02-26 14:10:03.708 1000 STREAM 141924 8326 6072743 2024-02-26 14:11:50.078 2024-02-26 14:11:50.078 2100 FEE 439335 21451 6072744 2024-02-26 14:11:50.078 2024-02-26 14:11:50.078 18900 TIP 439335 11395 6072753 2024-02-26 14:12:33.832 2024-02-26 14:12:33.832 1000 FEE 439169 9246 6072754 2024-02-26 14:12:33.832 2024-02-26 14:12:33.832 9000 TIP 439169 19836 6072778 2024-02-26 14:14:49.926 2024-02-26 14:14:49.926 0 FEE 439352 14370 6072801 2024-02-26 14:17:25.1 2024-02-26 14:17:25.1 100 FEE 439339 21532 6072802 2024-02-26 14:17:25.1 2024-02-26 14:17:25.1 900 TIP 439339 13931 6072815 2024-02-26 14:18:50.955 2024-02-26 14:18:50.955 100 FEE 439315 979 6072816 2024-02-26 14:18:50.955 2024-02-26 14:18:50.955 900 TIP 439315 17944 6072833 2024-02-26 14:21:12.844 2024-02-26 14:21:12.844 10000 FEE 439263 20782 6072834 2024-02-26 14:21:12.844 2024-02-26 14:21:12.844 90000 TIP 439263 21591 6072835 2024-02-26 14:21:12.895 2024-02-26 14:21:12.895 4000 FEE 439368 20624 6072836 2024-02-26 14:21:12.895 2024-02-26 14:21:12.895 36000 TIP 439368 17321 6072857 2024-02-26 14:21:33.287 2024-02-26 14:21:33.287 100 FEE 439349 2088 6072858 2024-02-26 14:21:33.287 2024-02-26 14:21:33.287 900 TIP 439349 21485 6072882 2024-02-26 14:21:44.281 2024-02-26 14:21:44.281 10000 FEE 439286 7891 6072883 2024-02-26 14:21:44.281 2024-02-26 14:21:44.281 90000 TIP 439286 8245 6072890 2024-02-26 14:22:32.887 2024-02-26 14:22:32.887 21100 FEE 439100 897 6072891 2024-02-26 14:22:32.887 2024-02-26 14:22:32.887 189900 TIP 439100 7978 6072894 2024-02-26 14:23:13.674 2024-02-26 14:23:13.674 100 FEE 439369 10849 6072895 2024-02-26 14:23:13.674 2024-02-26 14:23:13.674 900 TIP 439369 1970 6072918 2024-02-26 14:26:00.983 2024-02-26 14:26:00.983 1000 FEE 439066 21356 6072919 2024-02-26 14:26:00.983 2024-02-26 14:26:00.983 9000 TIP 439066 14857 6072928 2024-02-26 14:27:03.496 2024-02-26 14:27:03.496 3100 FEE 439348 6499 6072929 2024-02-26 14:27:03.496 2024-02-26 14:27:03.496 27900 TIP 439348 21332 6072930 2024-02-26 14:27:04.527 2024-02-26 14:27:04.527 27900 FEE 439348 17392 6072931 2024-02-26 14:27:04.527 2024-02-26 14:27:04.527 251100 TIP 439348 976 6072932 2024-02-26 14:27:20.238 2024-02-26 14:27:20.238 2100 FEE 439368 3304 6072933 2024-02-26 14:27:20.238 2024-02-26 14:27:20.238 18900 TIP 439368 11897 6072946 2024-02-26 14:30:18.781 2024-02-26 14:30:18.781 1000 FEE 439380 12959 6073000 2024-02-26 14:36:46.4 2024-02-26 14:36:46.4 2100 FEE 439286 6393 6073001 2024-02-26 14:36:46.4 2024-02-26 14:36:46.4 18900 TIP 439286 9159 6073012 2024-02-26 14:37:14.94 2024-02-26 14:37:14.94 1000 FEE 439389 10398 6073027 2024-02-26 14:37:46.267 2024-02-26 14:37:46.267 2100 FEE 438345 21417 6073028 2024-02-26 14:37:46.267 2024-02-26 14:37:46.267 18900 TIP 438345 1960 6073049 2024-02-26 14:39:54.567 2024-02-26 14:39:54.567 100000 FEE 439390 17817 6073050 2024-02-26 14:39:56.831 2024-02-26 14:39:56.831 2100 FEE 439263 711 6073051 2024-02-26 14:39:56.831 2024-02-26 14:39:56.831 18900 TIP 439263 19292 6073066 2024-02-26 14:41:21.795 2024-02-26 14:41:21.795 100 FEE 439130 19153 6073067 2024-02-26 14:41:21.795 2024-02-26 14:41:21.795 900 TIP 439130 21481 6073069 2024-02-26 14:41:21.963 2024-02-26 14:41:21.963 900 FEE 439130 12819 6073070 2024-02-26 14:41:21.963 2024-02-26 14:41:21.963 8100 TIP 439130 726 6073071 2024-02-26 14:41:25.672 2024-02-26 14:41:25.672 100 FEE 439298 683 6073072 2024-02-26 14:41:25.672 2024-02-26 14:41:25.672 900 TIP 439298 19841 6073080 2024-02-26 14:42:09.593 2024-02-26 14:42:09.593 1000 FEE 439393 18280 6073126 2024-02-26 14:44:01.983 2024-02-26 14:44:01.983 900 FEE 438866 16956 6073127 2024-02-26 14:44:01.983 2024-02-26 14:44:01.983 8100 TIP 438866 15732 6073144 2024-02-26 14:44:36.532 2024-02-26 14:44:36.532 10000 DONT_LIKE_THIS 438916 1465 6073164 2024-02-26 14:45:15.088 2024-02-26 14:45:15.088 900 FEE 438965 21612 6073165 2024-02-26 14:45:15.088 2024-02-26 14:45:15.088 8100 TIP 438965 1825 6073172 2024-02-26 14:45:27.526 2024-02-26 14:45:27.526 90000 FEE 438965 13574 6073173 2024-02-26 14:45:27.526 2024-02-26 14:45:27.526 810000 TIP 438965 2525 6073183 2024-02-26 14:45:44.813 2024-02-26 14:45:44.813 1000 FEE 439400 5776 6073186 2024-02-26 14:45:52.234 2024-02-26 14:45:52.234 1000 FEE 439263 19813 6073187 2024-02-26 14:45:52.234 2024-02-26 14:45:52.234 9000 TIP 439263 19502 6073192 2024-02-26 14:45:55.425 2024-02-26 14:45:55.425 1000 FEE 439263 986 6073193 2024-02-26 14:45:55.425 2024-02-26 14:45:55.425 9000 TIP 439263 681 6073201 2024-02-26 14:46:10.419 2024-02-26 14:46:10.419 2100 FEE 439340 20816 6073202 2024-02-26 14:46:10.419 2024-02-26 14:46:10.419 18900 TIP 439340 14990 6073216 2024-02-26 14:46:29.996 2024-02-26 14:46:29.996 2100 FEE 439263 8926 6073217 2024-02-26 14:46:29.996 2024-02-26 14:46:29.996 18900 TIP 439263 18815 6073224 2024-02-26 14:46:50.824 2024-02-26 14:46:50.824 1000 FEE 439403 17041 6073275 2024-02-26 14:49:44.831 2024-02-26 14:49:44.831 1000 FEE 439410 5597 6073299 2024-02-26 14:51:30.479 2024-02-26 14:51:30.479 900 FEE 439277 17212 6073300 2024-02-26 14:51:30.479 2024-02-26 14:51:30.479 8100 TIP 439277 10016 6073311 2024-02-26 14:52:09.529 2024-02-26 14:52:09.529 10000 FEE 439315 7827 6073312 2024-02-26 14:52:09.529 2024-02-26 14:52:09.529 90000 TIP 439315 18659 6073317 2024-02-26 14:52:57.082 2024-02-26 14:52:57.082 900 FEE 439397 2829 6073318 2024-02-26 14:52:57.082 2024-02-26 14:52:57.082 8100 TIP 439397 19613 6073334 2024-02-26 14:54:23.441 2024-02-26 14:54:23.441 2100 FEE 439348 16769 6073335 2024-02-26 14:54:23.441 2024-02-26 14:54:23.441 18900 TIP 439348 20205 6073356 2024-02-26 14:55:20.133 2024-02-26 14:55:20.133 1000 FEE 439295 2156 6073357 2024-02-26 14:55:20.133 2024-02-26 14:55:20.133 9000 TIP 439295 9494 6073362 2024-02-26 14:55:32.693 2024-02-26 14:55:32.693 2100 FEE 439397 21386 6073363 2024-02-26 14:55:32.693 2024-02-26 14:55:32.693 18900 TIP 439397 17147 6073373 2024-02-26 14:56:34.51 2024-02-26 14:56:34.51 10000 FEE 439263 19189 6073374 2024-02-26 14:56:34.51 2024-02-26 14:56:34.51 90000 TIP 439263 20562 6073380 2024-02-26 14:59:23.362 2024-02-26 14:59:23.362 1000 FEE 439417 20594 6073398 2024-02-26 15:01:32.224 2024-02-26 15:01:32.224 2100 FEE 439298 18525 6073399 2024-02-26 15:01:32.224 2024-02-26 15:01:32.224 18900 TIP 439298 18745 6073412 2024-02-26 15:01:57.12 2024-02-26 15:01:57.12 10000 FEE 439397 19346 6073413 2024-02-26 15:01:57.12 2024-02-26 15:01:57.12 90000 TIP 439397 20511 6073414 2024-02-26 15:01:57.544 2024-02-26 15:01:57.544 2100 FEE 439372 1772 6073415 2024-02-26 15:01:57.544 2024-02-26 15:01:57.544 18900 TIP 439372 1354 6073417 2024-02-26 15:02:28.21 2024-02-26 15:02:28.21 5000 FEE 439312 14381 6073418 2024-02-26 15:02:28.21 2024-02-26 15:02:28.21 45000 TIP 439312 997 6073439 2024-02-26 15:09:11.334 2024-02-26 15:09:11.334 2100 FEE 439428 1094 6073440 2024-02-26 15:09:11.334 2024-02-26 15:09:11.334 18900 TIP 439428 18731 6073475 2024-02-26 15:12:08.547 2024-02-26 15:12:08.547 200 FEE 439298 640 6073476 2024-02-26 15:12:08.547 2024-02-26 15:12:08.547 1800 TIP 439298 1519 6073479 2024-02-26 15:12:09.559 2024-02-26 15:12:09.559 2100 FEE 439263 19465 6073480 2024-02-26 15:12:09.559 2024-02-26 15:12:09.559 18900 TIP 439263 16556 6073525 2024-02-26 15:15:34.102 2024-02-26 15:15:34.102 1000 FEE 439444 1480 6073535 2024-02-26 15:16:20.116 2024-02-26 15:16:20.116 1000 FEE 439445 16532 6073557 2024-02-26 15:19:44.496 2024-02-26 15:19:44.496 2100 FEE 439365 18363 6073558 2024-02-26 15:19:44.496 2024-02-26 15:19:44.496 18900 TIP 439365 21614 6072779 2024-02-26 14:15:03.859 2024-02-26 14:15:03.859 1000 STREAM 141924 782 6072791 2024-02-26 14:16:03.88 2024-02-26 14:16:03.88 1000 STREAM 141924 20267 6072798 2024-02-26 14:17:02.925 2024-02-26 14:17:02.925 1000 STREAM 141924 3396 6072927 2024-02-26 14:27:03.08 2024-02-26 14:27:03.08 1000 STREAM 141924 2722 6072870 2024-02-26 14:21:39.991 2024-02-26 14:21:39.991 100 FEE 439349 19815 6072871 2024-02-26 14:21:39.991 2024-02-26 14:21:39.991 900 TIP 439349 17693 6072892 2024-02-26 14:23:02.25 2024-02-26 14:23:02.25 1000 FEE 439373 18832 6072874 2024-02-26 14:21:40.529 2024-02-26 14:21:40.529 100 FEE 439349 21037 6072875 2024-02-26 14:21:40.529 2024-02-26 14:21:40.529 900 TIP 439349 9366 6072905 2024-02-26 14:24:31.587 2024-02-26 14:24:31.587 1000 FEE 439374 15271 6072911 2024-02-26 14:25:09.821 2024-02-26 14:25:09.821 2100 FEE 439348 16680 6072912 2024-02-26 14:25:09.821 2024-02-26 14:25:09.821 18900 TIP 439348 2952 6072916 2024-02-26 14:25:56.069 2024-02-26 14:25:56.069 1000 FEE 439370 17673 6072917 2024-02-26 14:25:56.069 2024-02-26 14:25:56.069 9000 TIP 439370 640 6072921 2024-02-26 14:26:10.859 2024-02-26 14:26:10.859 1000 FEE 439376 20573 6072968 2024-02-26 14:33:37.156 2024-02-26 14:33:37.156 10000 FEE 439298 1352 6072969 2024-02-26 14:33:37.156 2024-02-26 14:33:37.156 90000 TIP 439298 2710 6073002 2024-02-26 14:36:51.576 2024-02-26 14:36:51.576 2100 FEE 439366 5761 6073003 2024-02-26 14:36:51.576 2024-02-26 14:36:51.576 18900 TIP 439366 20782 6073021 2024-02-26 14:37:29.392 2024-02-26 14:37:29.392 2100 FEE 439298 5499 6073022 2024-02-26 14:37:29.392 2024-02-26 14:37:29.392 18900 TIP 439298 9367 6073038 2024-02-26 14:38:54.23 2024-02-26 14:38:54.23 1000 FEE 439361 3377 6073039 2024-02-26 14:38:54.23 2024-02-26 14:38:54.23 9000 TIP 439361 1051 6073043 2024-02-26 14:39:04.484 2024-02-26 14:39:04.484 1000 FEE 439382 11515 6073044 2024-02-26 14:39:04.484 2024-02-26 14:39:04.484 9000 TIP 439382 18583 6073047 2024-02-26 14:39:04.77 2024-02-26 14:39:04.77 1000 FEE 439382 18714 6073048 2024-02-26 14:39:04.77 2024-02-26 14:39:04.77 9000 TIP 439382 21401 6073081 2024-02-26 14:42:11.314 2024-02-26 14:42:11.314 100 FEE 439369 732 6073082 2024-02-26 14:42:11.314 2024-02-26 14:42:11.314 900 TIP 439369 18310 6073099 2024-02-26 14:42:16.711 2024-02-26 14:42:16.711 900 FEE 439371 2338 6073100 2024-02-26 14:42:16.711 2024-02-26 14:42:16.711 8100 TIP 439371 17592 6073103 2024-02-26 14:42:33.731 2024-02-26 14:42:33.731 1000000 DONT_LIKE_THIS 439283 9921 6073108 2024-02-26 14:42:50.616 2024-02-26 14:42:50.616 900 FEE 439231 11220 6073109 2024-02-26 14:42:50.616 2024-02-26 14:42:50.616 8100 TIP 439231 7998 6073112 2024-02-26 14:43:11.572 2024-02-26 14:43:11.572 10000 FEE 439130 17707 6073113 2024-02-26 14:43:11.572 2024-02-26 14:43:11.572 90000 TIP 439130 18816 6073117 2024-02-26 14:43:30.127 2024-02-26 14:43:30.127 100 FEE 439100 4074 6073118 2024-02-26 14:43:30.127 2024-02-26 14:43:30.127 900 TIP 439100 18539 6073131 2024-02-26 14:44:17.455 2024-02-26 14:44:17.455 900 FEE 438912 8173 6073132 2024-02-26 14:44:17.455 2024-02-26 14:44:17.455 8100 TIP 438912 19531 6073142 2024-02-26 14:44:35.222 2024-02-26 14:44:35.222 1000 FEE 439268 2232 6073143 2024-02-26 14:44:35.222 2024-02-26 14:44:35.222 9000 TIP 439268 19662 6073199 2024-02-26 14:46:09.885 2024-02-26 14:46:09.885 2100 FEE 439357 9356 6073200 2024-02-26 14:46:09.885 2024-02-26 14:46:09.885 18900 TIP 439357 8506 6073203 2024-02-26 14:46:13.14 2024-02-26 14:46:13.14 2100 FEE 439351 825 6073204 2024-02-26 14:46:13.14 2024-02-26 14:46:13.14 18900 TIP 439351 5308 6073213 2024-02-26 14:46:25.091 2024-02-26 14:46:25.091 21000 FEE 439402 5128 6073226 2024-02-26 14:46:55.497 2024-02-26 14:46:55.497 2100 FEE 439389 4173 6073227 2024-02-26 14:46:55.497 2024-02-26 14:46:55.497 18900 TIP 439389 21400 6073228 2024-02-26 14:46:58.266 2024-02-26 14:46:58.266 2100 FEE 24587 7903 6073229 2024-02-26 14:46:58.266 2024-02-26 14:46:58.266 18900 TIP 24587 17046 6073230 2024-02-26 14:47:02.699 2024-02-26 14:47:02.699 0 FEE 439389 18608 6073244 2024-02-26 14:47:46.145 2024-02-26 14:47:46.145 2100 FEE 176183 9336 6073245 2024-02-26 14:47:46.145 2024-02-26 14:47:46.145 18900 TIP 176183 15408 6073256 2024-02-26 14:49:19.22 2024-02-26 14:49:19.22 1000 FEE 439398 664 6073257 2024-02-26 14:49:19.22 2024-02-26 14:49:19.22 9000 TIP 439398 6777 6073264 2024-02-26 14:49:20.061 2024-02-26 14:49:20.061 1000 FEE 439398 21494 6073265 2024-02-26 14:49:20.061 2024-02-26 14:49:20.061 9000 TIP 439398 15049 6073269 2024-02-26 14:49:24.786 2024-02-26 14:49:24.786 900 FEE 439145 20881 6073270 2024-02-26 14:49:24.786 2024-02-26 14:49:24.786 8100 TIP 439145 12169 6073295 2024-02-26 14:51:21.626 2024-02-26 14:51:21.626 1000 FEE 439412 18819 6073303 2024-02-26 14:51:46.221 2024-02-26 14:51:46.221 100000 DONT_LIKE_THIS 439310 19096 6073306 2024-02-26 14:51:51.243 2024-02-26 14:51:51.243 1000 FEE 439263 686 6073307 2024-02-26 14:51:51.243 2024-02-26 14:51:51.243 9000 TIP 439263 19303 6073313 2024-02-26 14:52:20.126 2024-02-26 14:52:20.126 2100 FEE 439408 15146 6073314 2024-02-26 14:52:20.126 2024-02-26 14:52:20.126 18900 TIP 439408 17514 6073324 2024-02-26 14:53:47.523 2024-02-26 14:53:47.523 10000 FEE 437840 18241 6073325 2024-02-26 14:53:47.523 2024-02-26 14:53:47.523 90000 TIP 437840 2196 6073327 2024-02-26 14:54:10.587 2024-02-26 14:54:10.587 2100 FEE 439147 2942 6073328 2024-02-26 14:54:10.587 2024-02-26 14:54:10.587 18900 TIP 439147 4173 6073329 2024-02-26 14:54:17.07 2024-02-26 14:54:17.07 2100 FEE 439315 20156 6073330 2024-02-26 14:54:17.07 2024-02-26 14:54:17.07 18900 TIP 439315 837 6073333 2024-02-26 14:54:22.545 2024-02-26 14:54:22.545 100000 FEE 439414 18630 6073347 2024-02-26 14:55:10.67 2024-02-26 14:55:10.67 2100 FEE 439315 19005 6073348 2024-02-26 14:55:10.67 2024-02-26 14:55:10.67 18900 TIP 439315 2330 6072906 2024-02-26 14:24:40.806 2024-02-26 14:24:40.806 10000 FEE 439363 4958 6072907 2024-02-26 14:24:40.806 2024-02-26 14:24:40.806 90000 TIP 439363 19941 6072938 2024-02-26 14:27:59.371 2024-02-26 14:27:59.371 1000 FEE 439379 1122 6072981 2024-02-26 14:35:25.6 2024-02-26 14:35:25.6 2700 FEE 439295 15271 6072982 2024-02-26 14:35:25.6 2024-02-26 14:35:25.6 24300 TIP 439295 17798 6072985 2024-02-26 14:35:25.963 2024-02-26 14:35:25.963 2700 FEE 439295 8713 6072986 2024-02-26 14:35:25.963 2024-02-26 14:35:25.963 24300 TIP 439295 20424 6072990 2024-02-26 14:36:25.57 2024-02-26 14:36:25.57 2100 FEE 439357 18989 6072991 2024-02-26 14:36:25.57 2024-02-26 14:36:25.57 18900 TIP 439357 1213 6073004 2024-02-26 14:36:54.727 2024-02-26 14:36:54.727 1000 FEE 439315 1720 6073005 2024-02-26 14:36:54.727 2024-02-26 14:36:54.727 9000 TIP 439315 21578 6073034 2024-02-26 14:38:08.823 2024-02-26 14:38:08.823 1000 FEE 439223 10611 6073035 2024-02-26 14:38:08.823 2024-02-26 14:38:08.823 9000 TIP 439223 20022 6073059 2024-02-26 14:40:48.046 2024-02-26 14:40:48.046 9000 FEE 439315 20826 6073060 2024-02-26 14:40:48.046 2024-02-26 14:40:48.046 81000 TIP 439315 761 6073063 2024-02-26 14:40:54.652 2024-02-26 14:40:54.652 1000 FEE 439147 976 6073064 2024-02-26 14:40:54.652 2024-02-26 14:40:54.652 9000 TIP 439147 11288 6073073 2024-02-26 14:41:25.858 2024-02-26 14:41:25.858 900 FEE 439298 5761 6073074 2024-02-26 14:41:25.858 2024-02-26 14:41:25.858 8100 TIP 439298 17523 6073078 2024-02-26 14:42:09.244 2024-02-26 14:42:09.244 900 FEE 439358 3717 6073079 2024-02-26 14:42:09.244 2024-02-26 14:42:09.244 8100 TIP 439358 2123 6073083 2024-02-26 14:42:11.374 2024-02-26 14:42:11.374 900 FEE 439369 14939 6073084 2024-02-26 14:42:11.374 2024-02-26 14:42:11.374 8100 TIP 439369 20084 6073089 2024-02-26 14:42:13.641 2024-02-26 14:42:13.641 100 FEE 439383 8713 6073090 2024-02-26 14:42:13.641 2024-02-26 14:42:13.641 900 TIP 439383 2519 6073093 2024-02-26 14:42:15.208 2024-02-26 14:42:15.208 100 FEE 439373 11956 6073094 2024-02-26 14:42:15.208 2024-02-26 14:42:15.208 900 TIP 439373 1472 6073095 2024-02-26 14:42:15.325 2024-02-26 14:42:15.325 900 FEE 439373 19282 6073096 2024-02-26 14:42:15.325 2024-02-26 14:42:15.325 8100 TIP 439373 2206 6073129 2024-02-26 14:44:17.234 2024-02-26 14:44:17.234 100 FEE 438912 20979 6073130 2024-02-26 14:44:17.234 2024-02-26 14:44:17.234 900 TIP 438912 11516 6073155 2024-02-26 14:45:04.521 2024-02-26 14:45:04.521 100 FEE 438937 1836 6073156 2024-02-26 14:45:04.521 2024-02-26 14:45:04.521 900 TIP 438937 19263 6073159 2024-02-26 14:45:05.266 2024-02-26 14:45:05.266 9000 FEE 438937 1162 6073160 2024-02-26 14:45:05.266 2024-02-26 14:45:05.266 81000 TIP 438937 18470 6073181 2024-02-26 14:45:38.214 2024-02-26 14:45:38.214 900 FEE 438970 19036 6073182 2024-02-26 14:45:38.214 2024-02-26 14:45:38.214 8100 TIP 438970 18904 6073211 2024-02-26 14:46:23.892 2024-02-26 14:46:23.892 2100 FEE 439364 2328 6073212 2024-02-26 14:46:23.892 2024-02-26 14:46:23.892 18900 TIP 439364 11018 6073220 2024-02-26 14:46:32.581 2024-02-26 14:46:32.581 900 FEE 439080 14295 6073221 2024-02-26 14:46:32.581 2024-02-26 14:46:32.581 8100 TIP 439080 17541 6073236 2024-02-26 14:47:29.718 2024-02-26 14:47:29.718 2100 FEE 439126 18274 6073237 2024-02-26 14:47:29.718 2024-02-26 14:47:29.718 18900 TIP 439126 15577 6073258 2024-02-26 14:49:19.419 2024-02-26 14:49:19.419 1000 FEE 439398 20502 6073259 2024-02-26 14:49:19.419 2024-02-26 14:49:19.419 9000 TIP 439398 14472 6073260 2024-02-26 14:49:19.622 2024-02-26 14:49:19.622 1000 FEE 439398 6260 6073261 2024-02-26 14:49:19.622 2024-02-26 14:49:19.622 9000 TIP 439398 19952 6073345 2024-02-26 14:55:08.554 2024-02-26 14:55:08.554 2100 FEE 439413 21509 6073346 2024-02-26 14:55:08.554 2024-02-26 14:55:08.554 18900 TIP 439413 12277 6073349 2024-02-26 14:55:13.419 2024-02-26 14:55:13.419 3100 FEE 439142 14260 6073350 2024-02-26 14:55:13.419 2024-02-26 14:55:13.419 27900 TIP 439142 8162 6073365 2024-02-26 14:55:45.335 2024-02-26 14:55:45.335 1000 FEE 439416 1429 6073458 2024-02-26 15:10:35.854 2024-02-26 15:10:35.854 3500 FEE 439398 17171 6073459 2024-02-26 15:10:35.854 2024-02-26 15:10:35.854 31500 TIP 439398 14045 6073463 2024-02-26 15:11:11.564 2024-02-26 15:11:11.564 3500 FEE 439272 2724 6073464 2024-02-26 15:11:11.564 2024-02-26 15:11:11.564 31500 TIP 439272 2206 6073465 2024-02-26 15:11:12.143 2024-02-26 15:11:12.143 1000 FEE 439432 986 6073489 2024-02-26 15:12:48.92 2024-02-26 15:12:48.92 7700 FEE 439050 965 6073490 2024-02-26 15:12:48.92 2024-02-26 15:12:48.92 69300 TIP 439050 18169 6073511 2024-02-26 15:14:54.113 2024-02-26 15:14:54.113 1000 FEE 439440 14795 6073528 2024-02-26 15:15:36.55 2024-02-26 15:15:36.55 1600 FEE 439426 2525 6073529 2024-02-26 15:15:36.55 2024-02-26 15:15:36.55 14400 TIP 439426 6749 6073530 2024-02-26 15:15:42.824 2024-02-26 15:15:42.824 300 FEE 439390 15045 6073531 2024-02-26 15:15:42.824 2024-02-26 15:15:42.824 2700 TIP 439390 21172 6073536 2024-02-26 15:16:24.944 2024-02-26 15:16:24.944 1000 FEE 439446 9184 6073556 2024-02-26 15:19:34.165 2024-02-26 15:19:34.165 1000 FEE 439450 20084 6073581 2024-02-26 15:20:22.172 2024-02-26 15:20:22.172 1000 FEE 439443 5444 6073582 2024-02-26 15:20:22.172 2024-02-26 15:20:22.172 9000 TIP 439443 13399 6073583 2024-02-26 15:20:22.38 2024-02-26 15:20:22.38 1000 FEE 439443 18452 6073584 2024-02-26 15:20:22.38 2024-02-26 15:20:22.38 9000 TIP 439443 18468 6073593 2024-02-26 15:20:23.523 2024-02-26 15:20:23.523 1000 FEE 439443 4415 6073594 2024-02-26 15:20:23.523 2024-02-26 15:20:23.523 9000 TIP 439443 21247 6073623 2024-02-26 15:20:29.857 2024-02-26 15:20:29.857 7700 FEE 439263 16347 6073624 2024-02-26 15:20:29.857 2024-02-26 15:20:29.857 69300 TIP 439263 20439 6073667 2024-02-26 15:20:34.318 2024-02-26 15:20:34.318 7700 FEE 439263 11038 6073668 2024-02-26 15:20:34.318 2024-02-26 15:20:34.318 69300 TIP 439263 10352 6073695 2024-02-26 15:20:45.967 2024-02-26 15:20:45.967 7700 FEE 439443 2709 6073696 2024-02-26 15:20:45.967 2024-02-26 15:20:45.967 69300 TIP 439443 11378 6073707 2024-02-26 15:20:46.823 2024-02-26 15:20:46.823 7700 FEE 439443 19142 6073708 2024-02-26 15:20:46.823 2024-02-26 15:20:46.823 69300 TIP 439443 954 6073761 2024-02-26 15:22:00.152 2024-02-26 15:22:00.152 1000 FEE 439357 10668 6073762 2024-02-26 15:22:00.152 2024-02-26 15:22:00.152 9000 TIP 439357 19863 6073789 2024-02-26 15:22:50.62 2024-02-26 15:22:50.62 4000 FEE 439267 17212 6073790 2024-02-26 15:22:50.62 2024-02-26 15:22:50.62 36000 TIP 439267 20525 6073793 2024-02-26 15:22:57.323 2024-02-26 15:22:57.323 0 FEE 439443 685 6073797 2024-02-26 15:23:30.442 2024-02-26 15:23:30.442 10000 FEE 439462 14260 6073836 2024-02-26 15:27:17.71 2024-02-26 15:27:17.71 10000 FEE 439465 20272 6073865 2024-02-26 15:29:30.838 2024-02-26 15:29:30.838 100 FEE 439401 21072 6073866 2024-02-26 15:29:30.838 2024-02-26 15:29:30.838 900 TIP 439401 5112 6073869 2024-02-26 15:29:35.704 2024-02-26 15:29:35.704 2700 FEE 439263 1881 6073870 2024-02-26 15:29:35.704 2024-02-26 15:29:35.704 24300 TIP 439263 9352 6073879 2024-02-26 15:29:37.008 2024-02-26 15:29:37.008 100 FEE 439427 20251 6073880 2024-02-26 15:29:37.008 2024-02-26 15:29:37.008 900 TIP 439427 5522 6073901 2024-02-26 15:29:38.613 2024-02-26 15:29:38.613 100 FEE 439427 20163 6073902 2024-02-26 15:29:38.613 2024-02-26 15:29:38.613 900 TIP 439427 20840 6073907 2024-02-26 15:29:39.227 2024-02-26 15:29:39.227 100 FEE 439427 1836 6073908 2024-02-26 15:29:39.227 2024-02-26 15:29:39.227 900 TIP 439427 19907 6073947 2024-02-26 15:29:51.276 2024-02-26 15:29:51.276 100 FEE 439401 17411 6073948 2024-02-26 15:29:51.276 2024-02-26 15:29:51.276 900 TIP 439401 19980 6073957 2024-02-26 15:30:45.24 2024-02-26 15:30:45.24 2100 FEE 439422 9669 6073958 2024-02-26 15:30:45.24 2024-02-26 15:30:45.24 18900 TIP 439422 1195 6073057 2024-02-26 14:40:47.435 2024-02-26 14:40:47.435 900 FEE 439315 19537 6073058 2024-02-26 14:40:47.435 2024-02-26 14:40:47.435 8100 TIP 439315 20922 6073076 2024-02-26 14:42:09.048 2024-02-26 14:42:09.048 100 FEE 439358 18526 6073077 2024-02-26 14:42:09.048 2024-02-26 14:42:09.048 900 TIP 439358 1631 6073085 2024-02-26 14:42:12.36 2024-02-26 14:42:12.36 100 FEE 439388 1326 6073086 2024-02-26 14:42:12.36 2024-02-26 14:42:12.36 900 TIP 439388 1030 6073087 2024-02-26 14:42:13.058 2024-02-26 14:42:13.058 900 FEE 439388 700 6073088 2024-02-26 14:42:13.058 2024-02-26 14:42:13.058 8100 TIP 439388 1717 6073091 2024-02-26 14:42:13.898 2024-02-26 14:42:13.898 900 FEE 439383 3409 6073092 2024-02-26 14:42:13.898 2024-02-26 14:42:13.898 8100 TIP 439383 19507 6073106 2024-02-26 14:42:50.386 2024-02-26 14:42:50.386 100 FEE 439231 21292 6073107 2024-02-26 14:42:50.386 2024-02-26 14:42:50.386 900 TIP 439231 19581 6073123 2024-02-26 14:43:50.883 2024-02-26 14:43:50.883 1000 FEE 439396 21051 6073170 2024-02-26 14:45:27.37 2024-02-26 14:45:27.37 100 FEE 438763 15273 6073171 2024-02-26 14:45:27.37 2024-02-26 14:45:27.37 900 TIP 438763 20710 6073176 2024-02-26 14:45:30.757 2024-02-26 14:45:30.757 1000 FEE 439399 19906 6073184 2024-02-26 14:45:45.361 2024-02-26 14:45:45.361 100000 DONT_LIKE_THIS 438973 2525 6073205 2024-02-26 14:46:15.478 2024-02-26 14:46:15.478 100 FEE 439400 1273 6073206 2024-02-26 14:46:15.478 2024-02-26 14:46:15.478 900 TIP 439400 20264 6073209 2024-02-26 14:46:23.836 2024-02-26 14:46:23.836 900 FEE 439045 1122 6073210 2024-02-26 14:46:23.836 2024-02-26 14:46:23.836 8100 TIP 439045 12289 6073218 2024-02-26 14:46:32.453 2024-02-26 14:46:32.453 100 FEE 439080 697 6073219 2024-02-26 14:46:32.453 2024-02-26 14:46:32.453 900 TIP 439080 12609 6073232 2024-02-26 14:47:12.781 2024-02-26 14:47:12.781 2100 FEE 439187 9026 6073233 2024-02-26 14:47:12.781 2024-02-26 14:47:12.781 18900 TIP 439187 14385 6073240 2024-02-26 14:47:40.562 2024-02-26 14:47:40.562 900 FEE 439083 20854 6073241 2024-02-26 14:47:40.562 2024-02-26 14:47:40.562 8100 TIP 439083 9796 6073250 2024-02-26 14:48:51.447 2024-02-26 14:48:51.447 1000 FEE 439407 18989 6073290 2024-02-26 14:51:08.37 2024-02-26 14:51:08.37 100 FEE 439267 8284 6073291 2024-02-26 14:51:08.37 2024-02-26 14:51:08.37 900 TIP 439267 19637 6073315 2024-02-26 14:52:56.948 2024-02-26 14:52:56.948 100 FEE 439397 19777 6073316 2024-02-26 14:52:56.948 2024-02-26 14:52:56.948 900 TIP 439397 6741 6073342 2024-02-26 14:54:55.707 2024-02-26 14:54:55.707 100 FEE 439392 1741 6073343 2024-02-26 14:54:55.707 2024-02-26 14:54:55.707 900 TIP 439392 5708 6073354 2024-02-26 14:55:16.173 2024-02-26 14:55:16.173 2100 FEE 439398 17172 6073355 2024-02-26 14:55:16.173 2024-02-26 14:55:16.173 18900 TIP 439398 866 6073367 2024-02-26 14:56:19.74 2024-02-26 14:56:19.74 1000 FEE 439413 11678 6073368 2024-02-26 14:56:19.74 2024-02-26 14:56:19.74 9000 TIP 439413 21506 6073371 2024-02-26 14:56:27.132 2024-02-26 14:56:27.132 1000 FEE 439267 20450 6073372 2024-02-26 14:56:27.132 2024-02-26 14:56:27.132 9000 TIP 439267 21036 6073404 2024-02-26 15:01:40.667 2024-02-26 15:01:40.667 2100 FEE 439267 9438 6073405 2024-02-26 15:01:40.667 2024-02-26 15:01:40.667 18900 TIP 439267 6136 6073406 2024-02-26 15:01:43.739 2024-02-26 15:01:43.739 2100 FEE 439277 2709 6073407 2024-02-26 15:01:43.739 2024-02-26 15:01:43.739 18900 TIP 439277 9355 6073408 2024-02-26 15:01:46.505 2024-02-26 15:01:46.505 2100 FEE 439286 19462 6073409 2024-02-26 15:01:46.505 2024-02-26 15:01:46.505 18900 TIP 439286 8385 6073125 2024-02-26 14:44:01.757 2024-02-26 14:44:01.757 900 TIP 438866 17217 6073133 2024-02-26 14:44:22.032 2024-02-26 14:44:22.032 11100 FEE 439286 19309 6073134 2024-02-26 14:44:22.032 2024-02-26 14:44:22.032 99900 TIP 439286 16357 6073136 2024-02-26 14:44:26.496 2024-02-26 14:44:26.496 9000 FEE 438912 14688 6073137 2024-02-26 14:44:26.496 2024-02-26 14:44:26.496 81000 TIP 438912 16724 6073145 2024-02-26 14:44:38.79 2024-02-26 14:44:38.79 100 FEE 438929 20655 6073146 2024-02-26 14:44:38.79 2024-02-26 14:44:38.79 900 TIP 438929 21472 6073147 2024-02-26 14:44:38.808 2024-02-26 14:44:38.808 900 FEE 438929 14370 6073148 2024-02-26 14:44:38.808 2024-02-26 14:44:38.808 8100 TIP 438929 20539 6073162 2024-02-26 14:45:14.92 2024-02-26 14:45:14.92 100 FEE 438965 18314 6073163 2024-02-26 14:45:14.92 2024-02-26 14:45:14.92 900 TIP 438965 9342 6073194 2024-02-26 14:45:55.584 2024-02-26 14:45:55.584 1000 FEE 439263 18402 6073195 2024-02-26 14:45:55.584 2024-02-26 14:45:55.584 9000 TIP 439263 776 6073234 2024-02-26 14:47:18.649 2024-02-26 14:47:18.649 2100 FEE 439375 21334 6073235 2024-02-26 14:47:18.649 2024-02-26 14:47:18.649 18900 TIP 439375 1673 6073246 2024-02-26 14:48:00.225 2024-02-26 14:48:00.225 1000 FEE 439406 956 6073251 2024-02-26 14:49:02.024 2024-02-26 14:49:02.024 1000 FEE 439408 18270 6073255 2024-02-26 14:49:18.18 2024-02-26 14:49:18.18 1000 POLL 438414 5036 6073266 2024-02-26 14:49:21.504 2024-02-26 14:49:21.504 1000 FEE 439409 20970 6073267 2024-02-26 14:49:24.568 2024-02-26 14:49:24.568 100 FEE 439145 798 6073128 2024-02-26 14:44:04.746 2024-02-26 14:44:04.746 1000 STREAM 141924 8569 6073138 2024-02-26 14:44:34.808 2024-02-26 14:44:34.808 1000 FEE 439268 12346 6073139 2024-02-26 14:44:34.808 2024-02-26 14:44:34.808 9000 TIP 439268 12606 6073152 2024-02-26 14:44:50.608 2024-02-26 14:44:50.608 4000 FEE 439396 1173 6073153 2024-02-26 14:44:50.608 2024-02-26 14:44:50.608 36000 TIP 439396 9695 6073168 2024-02-26 14:45:26.402 2024-02-26 14:45:26.402 2100 FEE 439386 3409 6073169 2024-02-26 14:45:26.402 2024-02-26 14:45:26.402 18900 TIP 439386 5775 6073174 2024-02-26 14:45:30.416 2024-02-26 14:45:30.416 2100 FEE 439100 21212 6073175 2024-02-26 14:45:30.416 2024-02-26 14:45:30.416 18900 TIP 439100 11760 6073188 2024-02-26 14:45:52.855 2024-02-26 14:45:52.855 1000 FEE 439263 20099 6073189 2024-02-26 14:45:52.855 2024-02-26 14:45:52.855 9000 TIP 439263 4633 6073214 2024-02-26 14:46:26.725 2024-02-26 14:46:26.725 9000 FEE 439045 2537 6073215 2024-02-26 14:46:26.725 2024-02-26 14:46:26.725 81000 TIP 439045 16289 6073225 2024-02-26 14:46:52.167 2024-02-26 14:46:52.167 1000 FEE 439404 14785 6073248 2024-02-26 14:48:43.298 2024-02-26 14:48:43.298 10000 FEE 439406 16848 6073249 2024-02-26 14:48:43.298 2024-02-26 14:48:43.298 90000 TIP 439406 18664 6073253 2024-02-26 14:49:12.593 2024-02-26 14:49:12.593 2100 FEE 439348 16679 6073254 2024-02-26 14:49:12.593 2024-02-26 14:49:12.593 18900 TIP 439348 1738 6073262 2024-02-26 14:49:19.837 2024-02-26 14:49:19.837 1000 FEE 439398 16653 6073263 2024-02-26 14:49:19.837 2024-02-26 14:49:19.837 9000 TIP 439398 20681 6073276 2024-02-26 14:49:47.852 2024-02-26 14:49:47.852 2100 FEE 439393 4259 6073277 2024-02-26 14:49:47.852 2024-02-26 14:49:47.852 18900 TIP 439393 16176 6073280 2024-02-26 14:49:53.263 2024-02-26 14:49:53.263 2100 FEE 439390 1577 6073281 2024-02-26 14:49:53.263 2024-02-26 14:49:53.263 18900 TIP 439390 1046 6073287 2024-02-26 14:50:08.099 2024-02-26 14:50:08.099 900 FEE 439164 18897 6073288 2024-02-26 14:50:08.099 2024-02-26 14:50:08.099 8100 TIP 439164 20452 6073304 2024-02-26 14:51:47.318 2024-02-26 14:51:47.318 2100 FEE 439411 4776 6073305 2024-02-26 14:51:47.318 2024-02-26 14:51:47.318 18900 TIP 439411 21492 6073308 2024-02-26 14:51:55.176 2024-02-26 14:51:55.176 2100 FEE 439402 20980 6073309 2024-02-26 14:51:55.176 2024-02-26 14:51:55.176 18900 TIP 439402 5942 6073331 2024-02-26 14:54:19.868 2024-02-26 14:54:19.868 2100 FEE 439147 836 6073332 2024-02-26 14:54:19.868 2024-02-26 14:54:19.868 18900 TIP 439147 17602 6073360 2024-02-26 14:55:30.161 2024-02-26 14:55:30.161 2100 FEE 439322 9833 6073361 2024-02-26 14:55:30.161 2024-02-26 14:55:30.161 18900 TIP 439322 9276 6073154 2024-02-26 14:45:03.76 2024-02-26 14:45:03.76 1000 STREAM 141924 21356 6073231 2024-02-26 14:47:03.759 2024-02-26 14:47:03.759 1000 STREAM 141924 2528 6073247 2024-02-26 14:48:03.767 2024-02-26 14:48:03.767 1000 STREAM 141924 11144 6073252 2024-02-26 14:49:03.796 2024-02-26 14:49:03.796 1000 STREAM 141924 4064 6073268 2024-02-26 14:49:24.568 2024-02-26 14:49:24.568 900 TIP 439145 17592 6073273 2024-02-26 14:49:30.582 2024-02-26 14:49:30.582 2100 FEE 439392 5776 6073274 2024-02-26 14:49:30.582 2024-02-26 14:49:30.582 18900 TIP 439392 1198 6073278 2024-02-26 14:49:48.457 2024-02-26 14:49:48.457 2100 FEE 439053 13406 6073279 2024-02-26 14:49:48.457 2024-02-26 14:49:48.457 18900 TIP 439053 18690 6073294 2024-02-26 14:51:18.843 2024-02-26 14:51:18.843 1000 FEE 439411 21541 6073353 2024-02-26 14:55:14.669 2024-02-26 14:55:14.669 10000 FEE 439415 690 6073385 2024-02-26 15:00:06.819 2024-02-26 15:00:06.819 1000 FEE 439419 5597 6073386 2024-02-26 15:00:40.095 2024-02-26 15:00:40.095 100 FEE 439397 18270 6073387 2024-02-26 15:00:40.095 2024-02-26 15:00:40.095 900 TIP 439397 19005 6073392 2024-02-26 15:01:25.881 2024-02-26 15:01:25.881 2100 FEE 439263 1130 6073393 2024-02-26 15:01:25.881 2024-02-26 15:01:25.881 18900 TIP 439263 861 6073411 2024-02-26 15:01:49.995 2024-02-26 15:01:49.995 210000 FEE 439422 15544 6073435 2024-02-26 15:07:16.149 2024-02-26 15:07:16.149 1000 FEE 439428 5499 6073437 2024-02-26 15:08:43.617 2024-02-26 15:08:43.617 1000 FEE 439429 11192 6073488 2024-02-26 15:12:47.797 2024-02-26 15:12:47.797 1000 POLL 438325 762 6073493 2024-02-26 15:13:00.145 2024-02-26 15:13:00.145 1000 FEE 439436 4345 6073501 2024-02-26 15:13:56.97 2024-02-26 15:13:56.97 2500 FEE 439263 17365 6073502 2024-02-26 15:13:56.97 2024-02-26 15:13:56.97 22500 TIP 439263 11956 6073515 2024-02-26 15:15:13.782 2024-02-26 15:15:13.782 0 FEE 439440 10693 6073523 2024-02-26 15:15:33.191 2024-02-26 15:15:33.191 2100 FEE 439327 6765 6073524 2024-02-26 15:15:33.191 2024-02-26 15:15:33.191 18900 TIP 439327 14255 6073526 2024-02-26 15:15:36.435 2024-02-26 15:15:36.435 4000 FEE 439440 18008 6073527 2024-02-26 15:15:36.435 2024-02-26 15:15:36.435 36000 TIP 439440 7668 6073551 2024-02-26 15:18:27.957 2024-02-26 15:18:27.957 6900 FEE 439114 9349 6073552 2024-02-26 15:18:27.957 2024-02-26 15:18:27.957 62100 TIP 439114 17103 6073631 2024-02-26 15:20:31.506 2024-02-26 15:20:31.506 7700 FEE 439263 10638 6073632 2024-02-26 15:20:31.506 2024-02-26 15:20:31.506 69300 TIP 439263 14015 6073633 2024-02-26 15:20:32.288 2024-02-26 15:20:32.288 7700 FEE 439263 5978 6073634 2024-02-26 15:20:32.288 2024-02-26 15:20:32.288 69300 TIP 439263 21061 6073643 2024-02-26 15:20:32.904 2024-02-26 15:20:32.904 7700 FEE 439263 1298 6073644 2024-02-26 15:20:32.904 2024-02-26 15:20:32.904 69300 TIP 439263 1474 6073647 2024-02-26 15:20:33.262 2024-02-26 15:20:33.262 7700 FEE 439263 21136 6073648 2024-02-26 15:20:33.262 2024-02-26 15:20:33.262 69300 TIP 439263 18517 6073655 2024-02-26 15:20:33.598 2024-02-26 15:20:33.598 7700 FEE 439263 6700 6073656 2024-02-26 15:20:33.598 2024-02-26 15:20:33.598 69300 TIP 439263 2543 6073659 2024-02-26 15:20:33.835 2024-02-26 15:20:33.835 7700 FEE 439263 15226 6073660 2024-02-26 15:20:33.835 2024-02-26 15:20:33.835 69300 TIP 439263 19961 6073673 2024-02-26 15:20:34.767 2024-02-26 15:20:34.767 7700 FEE 439263 1433 6073674 2024-02-26 15:20:34.767 2024-02-26 15:20:34.767 69300 TIP 439263 711 6073687 2024-02-26 15:20:44.539 2024-02-26 15:20:44.539 15400 FEE 439443 21541 6073688 2024-02-26 15:20:44.539 2024-02-26 15:20:44.539 138600 TIP 439443 10409 6073689 2024-02-26 15:20:45.134 2024-02-26 15:20:45.134 1000 FEE 439386 17827 6073690 2024-02-26 15:20:45.134 2024-02-26 15:20:45.134 9000 TIP 439386 6335 6073726 2024-02-26 15:20:56.808 2024-02-26 15:20:56.808 2700 FEE 439390 1105 6073727 2024-02-26 15:20:56.808 2024-02-26 15:20:56.808 24300 TIP 439390 21406 6073738 2024-02-26 15:21:16.902 2024-02-26 15:21:16.902 2100 FEE 438956 3717 6073739 2024-02-26 15:21:16.902 2024-02-26 15:21:16.902 18900 TIP 438956 19148 6073740 2024-02-26 15:21:17.013 2024-02-26 15:21:17.013 1000 FEE 439379 17221 6073741 2024-02-26 15:21:17.013 2024-02-26 15:21:17.013 9000 TIP 439379 811 6073744 2024-02-26 15:21:19.597 2024-02-26 15:21:19.597 1000 FEE 439383 10273 6073745 2024-02-26 15:21:19.597 2024-02-26 15:21:19.597 9000 TIP 439383 6030 6073759 2024-02-26 15:21:53.303 2024-02-26 15:21:53.303 2100 FEE 439413 2529 6073760 2024-02-26 15:21:53.303 2024-02-26 15:21:53.303 18900 TIP 439413 16839 6073773 2024-02-26 15:22:03.709 2024-02-26 15:22:03.709 6900 FEE 439422 1717 6073774 2024-02-26 15:22:03.709 2024-02-26 15:22:03.709 62100 TIP 439422 21427 6073775 2024-02-26 15:22:03.811 2024-02-26 15:22:03.811 6900 FEE 439422 2844 6073776 2024-02-26 15:22:03.811 2024-02-26 15:22:03.811 62100 TIP 439422 13361 6073796 2024-02-26 15:23:21.729 2024-02-26 15:23:21.729 1000 FEE 439461 21422 6073798 2024-02-26 15:23:43.796 2024-02-26 15:23:43.796 0 FEE 439443 20680 6073806 2024-02-26 15:25:16.103 2024-02-26 15:25:16.103 0 FEE 439443 10016 6073851 2024-02-26 15:29:29.55 2024-02-26 15:29:29.55 100 FEE 439401 17166 6073852 2024-02-26 15:29:29.55 2024-02-26 15:29:29.55 900 TIP 439401 16670 6073857 2024-02-26 15:29:30.113 2024-02-26 15:29:30.113 100 FEE 439401 632 6073858 2024-02-26 15:29:30.113 2024-02-26 15:29:30.113 900 TIP 439401 18452 6073861 2024-02-26 15:29:30.476 2024-02-26 15:29:30.476 100 FEE 439401 4084 6073862 2024-02-26 15:29:30.476 2024-02-26 15:29:30.476 900 TIP 439401 14381 6073863 2024-02-26 15:29:30.649 2024-02-26 15:29:30.649 100 FEE 439401 7989 6073864 2024-02-26 15:29:30.649 2024-02-26 15:29:30.649 900 TIP 439401 5293 6073899 2024-02-26 15:29:38.447 2024-02-26 15:29:38.447 100 FEE 439427 14905 6073900 2024-02-26 15:29:38.447 2024-02-26 15:29:38.447 900 TIP 439427 16354 6073913 2024-02-26 15:29:39.568 2024-02-26 15:29:39.568 100 FEE 439427 4958 6073914 2024-02-26 15:29:39.568 2024-02-26 15:29:39.568 900 TIP 439427 21573 6073933 2024-02-26 15:29:42.944 2024-02-26 15:29:42.944 100 FEE 439385 746 6073934 2024-02-26 15:29:42.944 2024-02-26 15:29:42.944 900 TIP 439385 8380 6073289 2024-02-26 14:51:03.809 2024-02-26 14:51:03.809 1000 STREAM 141924 20157 6073310 2024-02-26 14:52:04.271 2024-02-26 14:52:04.271 1000 STREAM 141924 20370 6073298 2024-02-26 14:51:30.415 2024-02-26 14:51:30.415 10000 FEE 439413 9920 6073319 2024-02-26 14:52:57.564 2024-02-26 14:52:57.564 9000 FEE 439397 14280 6073320 2024-02-26 14:52:57.564 2024-02-26 14:52:57.564 81000 TIP 439397 16950 6073322 2024-02-26 14:53:05.873 2024-02-26 14:53:05.873 100 FEE 439405 19795 6073323 2024-02-26 14:53:05.873 2024-02-26 14:53:05.873 900 TIP 439405 21562 6073336 2024-02-26 14:54:30.156 2024-02-26 14:54:30.156 100 FEE 439390 16447 6073337 2024-02-26 14:54:30.156 2024-02-26 14:54:30.156 900 TIP 439390 16229 6073338 2024-02-26 14:54:30.264 2024-02-26 14:54:30.264 4000 FEE 439413 17523 6073339 2024-02-26 14:54:30.264 2024-02-26 14:54:30.264 36000 TIP 439413 19296 6073340 2024-02-26 14:54:33.694 2024-02-26 14:54:33.694 2100 FEE 439414 15491 6073341 2024-02-26 14:54:33.694 2024-02-26 14:54:33.694 18900 TIP 439414 1495 6073351 2024-02-26 14:55:13.979 2024-02-26 14:55:13.979 27900 FEE 439142 18896 6073352 2024-02-26 14:55:13.979 2024-02-26 14:55:13.979 251100 TIP 439142 1046 6073358 2024-02-26 14:55:28.536 2024-02-26 14:55:28.536 2500 FEE 439384 9339 6073359 2024-02-26 14:55:28.536 2024-02-26 14:55:28.536 22500 TIP 439384 15326 6073364 2024-02-26 14:55:44.65 2024-02-26 14:55:44.65 0 FEE 191840 19121 6073369 2024-02-26 14:56:22.616 2024-02-26 14:56:22.616 1000 FEE 439405 21453 6073370 2024-02-26 14:56:22.616 2024-02-26 14:56:22.616 9000 TIP 439405 20108 6073410 2024-02-26 15:01:48.71 2024-02-26 15:01:48.71 1000 FEE 439421 21619 6073419 2024-02-26 15:02:29.805 2024-02-26 15:02:29.805 1000 FEE 439423 11714 6073420 2024-02-26 15:02:42.608 2024-02-26 15:02:42.608 1000 FEE 439424 18309 6073428 2024-02-26 15:05:06.682 2024-02-26 15:05:06.682 1000 FEE 439425 8796 6073429 2024-02-26 15:05:08.672 2024-02-26 15:05:08.672 100000 FEE 439426 20555 6073441 2024-02-26 15:09:30.125 2024-02-26 15:09:30.125 4000 FEE 439426 19941 6073442 2024-02-26 15:09:30.125 2024-02-26 15:09:30.125 36000 TIP 439426 664 6073473 2024-02-26 15:12:07.611 2024-02-26 15:12:07.611 2100 FEE 439263 19821 6073474 2024-02-26 15:12:07.611 2024-02-26 15:12:07.611 18900 TIP 439263 21166 6073482 2024-02-26 15:12:14.223 2024-02-26 15:12:14.223 10000 FEE 439434 12769 6073485 2024-02-26 15:12:41.24 2024-02-26 15:12:41.24 1000 FEE 439435 2789 6073504 2024-02-26 15:14:17.686 2024-02-26 15:14:17.686 100 FEE 439298 8544 6073505 2024-02-26 15:14:17.686 2024-02-26 15:14:17.686 900 TIP 439298 8570 6073507 2024-02-26 15:14:42.788 2024-02-26 15:14:42.788 3100 FEE 439263 11522 6073508 2024-02-26 15:14:42.788 2024-02-26 15:14:42.788 27900 TIP 439263 3544 6073539 2024-02-26 15:16:35.601 2024-02-26 15:16:35.601 21000 FEE 439263 20182 6073540 2024-02-26 15:16:35.601 2024-02-26 15:16:35.601 189000 TIP 439263 20841 6073545 2024-02-26 15:17:39.044 2024-02-26 15:17:39.044 2100 FEE 439442 17552 6073546 2024-02-26 15:17:39.044 2024-02-26 15:17:39.044 18900 TIP 439442 2123 6073548 2024-02-26 15:18:17.013 2024-02-26 15:18:17.013 1000 FEE 439431 21036 6073549 2024-02-26 15:18:17.013 2024-02-26 15:18:17.013 9000 TIP 439431 17707 6073567 2024-02-26 15:20:03.738 2024-02-26 15:20:03.738 7700 FEE 439100 5017 6073568 2024-02-26 15:20:03.738 2024-02-26 15:20:03.738 69300 TIP 439100 14260 6073574 2024-02-26 15:20:13.733 2024-02-26 15:20:13.733 1000 FEE 439451 8080 6073575 2024-02-26 15:20:14.129 2024-02-26 15:20:14.129 7700 FEE 439295 9356 6073576 2024-02-26 15:20:14.129 2024-02-26 15:20:14.129 69300 TIP 439295 714 6073585 2024-02-26 15:20:22.64 2024-02-26 15:20:22.64 1000 FEE 439443 5449 6073586 2024-02-26 15:20:22.64 2024-02-26 15:20:22.64 9000 TIP 439443 900 6073587 2024-02-26 15:20:22.884 2024-02-26 15:20:22.884 1000 FEE 439443 896 6073588 2024-02-26 15:20:22.884 2024-02-26 15:20:22.884 9000 TIP 439443 18313 6073595 2024-02-26 15:20:23.803 2024-02-26 15:20:23.803 1000 FEE 439443 5565 6073596 2024-02-26 15:20:23.803 2024-02-26 15:20:23.803 9000 TIP 439443 21441 6073603 2024-02-26 15:20:24.891 2024-02-26 15:20:24.891 1000 FEE 439443 19821 6073604 2024-02-26 15:20:24.891 2024-02-26 15:20:24.891 9000 TIP 439443 17147 6073615 2024-02-26 15:20:26.011 2024-02-26 15:20:26.011 1000 FEE 439443 15732 6073616 2024-02-26 15:20:26.011 2024-02-26 15:20:26.011 9000 TIP 439443 999 6073625 2024-02-26 15:20:29.885 2024-02-26 15:20:29.885 7700 FEE 439263 18269 6073626 2024-02-26 15:20:29.885 2024-02-26 15:20:29.885 69300 TIP 439263 10112 6073641 2024-02-26 15:20:32.766 2024-02-26 15:20:32.766 7700 FEE 439263 16876 6073642 2024-02-26 15:20:32.766 2024-02-26 15:20:32.766 69300 TIP 439263 16176 6073651 2024-02-26 15:20:33.357 2024-02-26 15:20:33.357 7700 FEE 439263 979 6073652 2024-02-26 15:20:33.357 2024-02-26 15:20:33.357 69300 TIP 439263 20198 6073653 2024-02-26 15:20:33.532 2024-02-26 15:20:33.532 7700 FEE 439263 20370 6073654 2024-02-26 15:20:33.532 2024-02-26 15:20:33.532 69300 TIP 439263 8289 6073678 2024-02-26 15:20:41.744 2024-02-26 15:20:41.744 2100 FEE 439100 13517 6073679 2024-02-26 15:20:41.744 2024-02-26 15:20:41.744 18900 TIP 439100 19463 6073693 2024-02-26 15:20:45.852 2024-02-26 15:20:45.852 7700 FEE 439443 7903 6073694 2024-02-26 15:20:45.852 2024-02-26 15:20:45.852 69300 TIP 439443 19911 6073697 2024-02-26 15:20:46.108 2024-02-26 15:20:46.108 7700 FEE 439443 641 6073698 2024-02-26 15:20:46.108 2024-02-26 15:20:46.108 69300 TIP 439443 17106 6073699 2024-02-26 15:20:46.197 2024-02-26 15:20:46.197 7700 FEE 439443 19038 6073700 2024-02-26 15:20:46.197 2024-02-26 15:20:46.197 69300 TIP 439443 5538 6073701 2024-02-26 15:20:46.317 2024-02-26 15:20:46.317 7700 FEE 439443 17147 6073702 2024-02-26 15:20:46.317 2024-02-26 15:20:46.317 69300 TIP 439443 7682 6073709 2024-02-26 15:20:46.884 2024-02-26 15:20:46.884 7700 FEE 439443 9159 6073710 2024-02-26 15:20:46.884 2024-02-26 15:20:46.884 69300 TIP 439443 16267 6073713 2024-02-26 15:20:47.162 2024-02-26 15:20:47.162 7700 FEE 439443 21249 6073714 2024-02-26 15:20:47.162 2024-02-26 15:20:47.162 69300 TIP 439443 18518 6073719 2024-02-26 15:20:48.103 2024-02-26 15:20:48.103 1000 FEE 439454 2042 6073724 2024-02-26 15:20:56.793 2024-02-26 15:20:56.793 2700 FEE 439390 2232 6073725 2024-02-26 15:20:56.793 2024-02-26 15:20:56.793 24300 TIP 439390 8544 6073736 2024-02-26 15:21:16.42 2024-02-26 15:21:16.42 1000 FEE 439369 20058 6073737 2024-02-26 15:21:16.42 2024-02-26 15:21:16.42 9000 TIP 439369 18363 6073748 2024-02-26 15:21:20.807 2024-02-26 15:21:20.807 1000 FEE 439373 21455 6073749 2024-02-26 15:21:20.807 2024-02-26 15:21:20.807 9000 TIP 439373 8954 6073758 2024-02-26 15:21:35.974 2024-02-26 15:21:35.974 1000 FEE 439458 787 6073767 2024-02-26 15:22:02.316 2024-02-26 15:22:02.316 6900 FEE 439422 10273 6073768 2024-02-26 15:22:02.316 2024-02-26 15:22:02.316 62100 TIP 439422 9171 6073771 2024-02-26 15:22:02.58 2024-02-26 15:22:02.58 6900 FEE 439422 18664 6073772 2024-02-26 15:22:02.58 2024-02-26 15:22:02.58 62100 TIP 439422 11430 6073780 2024-02-26 15:22:10.835 2024-02-26 15:22:10.835 2100 FEE 439431 886 6073781 2024-02-26 15:22:10.835 2024-02-26 15:22:10.835 18900 TIP 439431 1806 6073782 2024-02-26 15:22:26.307 2024-02-26 15:22:26.307 10000 FEE 439455 18392 6073783 2024-02-26 15:22:26.307 2024-02-26 15:22:26.307 90000 TIP 439455 725 6073791 2024-02-26 15:22:53.837 2024-02-26 15:22:53.837 4000 FEE 439295 14225 6073792 2024-02-26 15:22:53.837 2024-02-26 15:22:53.837 36000 TIP 439295 2042 6073366 2024-02-26 14:56:05.458 2024-02-26 14:56:05.458 1000 STREAM 141924 18828 6073377 2024-02-26 14:57:05.465 2024-02-26 14:57:05.465 1000 STREAM 141924 17316 6073378 2024-02-26 14:58:05.474 2024-02-26 14:58:05.474 1000 STREAM 141924 663 6073375 2024-02-26 14:56:54.215 2024-02-26 14:56:54.215 800 FEE 439407 21090 6073376 2024-02-26 14:56:54.215 2024-02-26 14:56:54.215 7200 TIP 439407 16267 6073381 2024-02-26 14:59:44.949 2024-02-26 14:59:44.949 1000 FEE 439341 18139 6073382 2024-02-26 14:59:44.949 2024-02-26 14:59:44.949 9000 TIP 439341 2061 6073394 2024-02-26 15:01:27.433 2024-02-26 15:01:27.433 2100 FEE 439139 21155 6073395 2024-02-26 15:01:27.433 2024-02-26 15:01:27.433 18900 TIP 439139 21061 6073400 2024-02-26 15:01:34.742 2024-02-26 15:01:34.742 2100 FEE 439100 21521 6073401 2024-02-26 15:01:34.742 2024-02-26 15:01:34.742 18900 TIP 439100 15367 6073430 2024-02-26 15:05:12.664 2024-02-26 15:05:12.664 1000 FEE 439427 20218 6073432 2024-02-26 15:06:41.966 2024-02-26 15:06:41.966 3000 FEE 439263 14267 6073433 2024-02-26 15:06:41.966 2024-02-26 15:06:41.966 27000 TIP 439263 2529 6073445 2024-02-26 15:09:59.748 2024-02-26 15:09:59.748 1000 FEE 439430 20180 6073453 2024-02-26 15:10:34.302 2024-02-26 15:10:34.302 7700 FEE 439287 12289 6073454 2024-02-26 15:10:34.302 2024-02-26 15:10:34.302 69300 TIP 439287 848 6073518 2024-02-26 15:15:26.64 2024-02-26 15:15:26.64 300 FEE 439392 21044 6073519 2024-02-26 15:15:26.64 2024-02-26 15:15:26.64 2700 TIP 439392 766 6073520 2024-02-26 15:15:28.694 2024-02-26 15:15:28.694 21000 FEE 439443 18994 6073521 2024-02-26 15:15:31.178 2024-02-26 15:15:31.178 40000 FEE 439413 732 6073522 2024-02-26 15:15:31.178 2024-02-26 15:15:31.178 360000 TIP 439413 11522 6073533 2024-02-26 15:16:20.099 2024-02-26 15:16:20.099 2100 FEE 439380 20464 6073534 2024-02-26 15:16:20.099 2024-02-26 15:16:20.099 18900 TIP 439380 15408 6073537 2024-02-26 15:16:26.949 2024-02-26 15:16:26.949 0 FEE 439443 17030 6073538 2024-02-26 15:16:28.521 2024-02-26 15:16:28.521 1000 FEE 439447 814 6073569 2024-02-26 15:20:05.264 2024-02-26 15:20:05.264 7700 FEE 439100 19906 6073570 2024-02-26 15:20:05.264 2024-02-26 15:20:05.264 69300 TIP 439100 876 6073579 2024-02-26 15:20:14.636 2024-02-26 15:20:14.636 7700 FEE 439295 21578 6073580 2024-02-26 15:20:14.636 2024-02-26 15:20:14.636 69300 TIP 439295 18262 6073605 2024-02-26 15:20:25.035 2024-02-26 15:20:25.035 1000 FEE 439417 20109 6073606 2024-02-26 15:20:25.035 2024-02-26 15:20:25.035 9000 TIP 439417 9339 6073609 2024-02-26 15:20:25.357 2024-02-26 15:20:25.357 1000 FEE 439443 1142 6073610 2024-02-26 15:20:25.357 2024-02-26 15:20:25.357 9000 TIP 439443 21139 6073637 2024-02-26 15:20:32.567 2024-02-26 15:20:32.567 7700 FEE 439263 657 6073638 2024-02-26 15:20:32.567 2024-02-26 15:20:32.567 69300 TIP 439263 5057 6073639 2024-02-26 15:20:32.671 2024-02-26 15:20:32.671 7700 FEE 439263 9345 6073640 2024-02-26 15:20:32.671 2024-02-26 15:20:32.671 69300 TIP 439263 9350 6073379 2024-02-26 14:59:05.492 2024-02-26 14:59:05.492 1000 STREAM 141924 2309 6073416 2024-02-26 15:02:03.511 2024-02-26 15:02:03.511 1000 STREAM 141924 940 6073423 2024-02-26 15:03:03.531 2024-02-26 15:03:03.531 1000 STREAM 141924 12708 6073427 2024-02-26 15:05:03.542 2024-02-26 15:05:03.542 1000 STREAM 141924 7185 6073434 2024-02-26 15:07:03.545 2024-02-26 15:07:03.545 1000 STREAM 141924 5377 6073436 2024-02-26 15:08:03.547 2024-02-26 15:08:03.547 1000 STREAM 141924 701 6073446 2024-02-26 15:10:03.563 2024-02-26 15:10:03.563 1000 STREAM 141924 11789 6073462 2024-02-26 15:11:03.569 2024-02-26 15:11:03.569 1000 STREAM 141924 19459 6073553 2024-02-26 15:19:05.648 2024-02-26 15:19:05.648 1000 STREAM 141924 12368 6073801 2024-02-26 15:24:05.909 2024-02-26 15:24:05.909 1000 STREAM 141924 14247 6073808 2024-02-26 15:26:05.759 2024-02-26 15:26:05.759 1000 STREAM 141924 11314 6073840 2024-02-26 15:28:05.745 2024-02-26 15:28:05.745 1000 STREAM 141924 18139 6073848 2024-02-26 15:29:05.752 2024-02-26 15:29:05.752 1000 STREAM 141924 18265 6074002 2024-02-26 15:33:05.781 2024-02-26 15:33:05.781 1000 STREAM 141924 10818 6074018 2024-02-26 15:34:05.789 2024-02-26 15:34:05.789 1000 STREAM 141924 21194 6074100 2024-02-26 15:39:05.894 2024-02-26 15:39:05.894 1000 STREAM 141924 10063 6074121 2024-02-26 15:40:05.893 2024-02-26 15:40:05.893 1000 STREAM 141924 2088 6074136 2024-02-26 15:42:05.898 2024-02-26 15:42:05.898 1000 STREAM 141924 9026 6074139 2024-02-26 15:43:05.909 2024-02-26 15:43:05.909 1000 STREAM 141924 1552 6074142 2024-02-26 15:44:05.926 2024-02-26 15:44:05.926 1000 STREAM 141924 19987 6074150 2024-02-26 15:45:05.929 2024-02-26 15:45:05.929 1000 STREAM 141924 18667 6074207 2024-02-26 15:46:05.93 2024-02-26 15:46:05.93 1000 STREAM 141924 1354 6074265 2024-02-26 15:48:06.015 2024-02-26 15:48:06.015 1000 STREAM 141924 9863 6074329 2024-02-26 15:50:05.956 2024-02-26 15:50:05.956 1000 STREAM 141924 18641 6074407 2024-02-26 15:53:03.991 2024-02-26 15:53:03.991 1000 STREAM 141924 2056 6074436 2024-02-26 15:56:03.988 2024-02-26 15:56:03.988 1000 STREAM 141924 686 6074443 2024-02-26 15:57:03.991 2024-02-26 15:57:03.991 1000 STREAM 141924 16042 6074453 2024-02-26 15:59:03.998 2024-02-26 15:59:03.998 1000 STREAM 141924 2741 6074505 2024-02-26 16:06:04.021 2024-02-26 16:06:04.021 1000 STREAM 141924 18423 6074507 2024-02-26 16:07:04.028 2024-02-26 16:07:04.028 1000 STREAM 141924 12769 6074535 2024-02-26 16:10:06.119 2024-02-26 16:10:06.119 1000 STREAM 141924 15243 6073383 2024-02-26 15:00:05.578 2024-02-26 15:00:05.578 1000 STREAM 141924 697 6073388 2024-02-26 15:01:05.503 2024-02-26 15:01:05.503 1000 STREAM 141924 8841 6073424 2024-02-26 15:04:03.535 2024-02-26 15:04:03.535 1000 STREAM 141924 15941 6073431 2024-02-26 15:06:03.537 2024-02-26 15:06:03.537 1000 STREAM 141924 21458 6073438 2024-02-26 15:09:03.562 2024-02-26 15:09:03.562 1000 STREAM 141924 17042 6073468 2024-02-26 15:12:03.567 2024-02-26 15:12:03.567 1000 STREAM 141924 18690 6073496 2024-02-26 15:13:03.566 2024-02-26 15:13:03.566 1000 STREAM 141924 19198 6073571 2024-02-26 15:20:05.675 2024-02-26 15:20:05.675 1000 STREAM 141924 21624 6073732 2024-02-26 15:21:05.704 2024-02-26 15:21:05.704 1000 STREAM 141924 4076 6073779 2024-02-26 15:22:05.712 2024-02-26 15:22:05.712 1000 STREAM 141924 20267 6073795 2024-02-26 15:23:05.723 2024-02-26 15:23:05.723 1000 STREAM 141924 8954 6073805 2024-02-26 15:25:05.737 2024-02-26 15:25:05.737 1000 STREAM 141924 17817 6073829 2024-02-26 15:27:05.74 2024-02-26 15:27:05.74 1000 STREAM 141924 21387 6073953 2024-02-26 15:30:05.758 2024-02-26 15:30:05.758 1000 STREAM 141924 17722 6073962 2024-02-26 15:31:05.776 2024-02-26 15:31:05.776 1000 STREAM 141924 9921 6074033 2024-02-26 15:35:05.82 2024-02-26 15:35:05.82 1000 STREAM 141924 16638 6074059 2024-02-26 15:36:05.868 2024-02-26 15:36:05.868 1000 STREAM 141924 15978 6074064 2024-02-26 15:37:05.875 2024-02-26 15:37:05.875 1000 STREAM 141924 10693 6074082 2024-02-26 15:38:05.882 2024-02-26 15:38:05.882 1000 STREAM 141924 980 6074125 2024-02-26 15:41:05.892 2024-02-26 15:41:05.892 1000 STREAM 141924 20636 6074240 2024-02-26 15:47:05.939 2024-02-26 15:47:05.939 1000 STREAM 141924 20563 6074273 2024-02-26 15:49:05.958 2024-02-26 15:49:05.958 1000 STREAM 141924 999 6074383 2024-02-26 15:51:03.953 2024-02-26 15:51:03.953 1000 STREAM 141924 3347 6074401 2024-02-26 15:52:03.971 2024-02-26 15:52:03.971 1000 STREAM 141924 13327 6074418 2024-02-26 15:54:01.977 2024-02-26 15:54:01.977 1000 STREAM 141924 11144 6074428 2024-02-26 15:55:03.987 2024-02-26 15:55:03.987 1000 STREAM 141924 16145 6073390 2024-02-26 15:01:22.538 2024-02-26 15:01:22.538 2100 FEE 439315 9809 6073391 2024-02-26 15:01:22.538 2024-02-26 15:01:22.538 18900 TIP 439315 3709 6073396 2024-02-26 15:01:28.843 2024-02-26 15:01:28.843 2100 FEE 439147 19821 6073397 2024-02-26 15:01:28.843 2024-02-26 15:01:28.843 18900 TIP 439147 1000 6073402 2024-02-26 15:01:37.736 2024-02-26 15:01:37.736 2100 FEE 439130 20198 6073403 2024-02-26 15:01:37.736 2024-02-26 15:01:37.736 18900 TIP 439130 16816 6073425 2024-02-26 15:04:17.523 2024-02-26 15:04:17.523 1600 FEE 438605 20588 6073426 2024-02-26 15:04:17.523 2024-02-26 15:04:17.523 14400 TIP 438605 18877 6073449 2024-02-26 15:10:19.325 2024-02-26 15:10:19.325 7700 FEE 439297 19821 6073450 2024-02-26 15:10:19.325 2024-02-26 15:10:19.325 69300 TIP 439297 20551 6073451 2024-02-26 15:10:34.288 2024-02-26 15:10:34.288 7700 FEE 439287 18930 6073452 2024-02-26 15:10:34.288 2024-02-26 15:10:34.288 69300 TIP 439287 17082 6073457 2024-02-26 15:10:34.852 2024-02-26 15:10:34.852 21000 FEE 439431 18040 6073460 2024-02-26 15:10:55.05 2024-02-26 15:10:55.05 2100 FEE 439286 20970 6073461 2024-02-26 15:10:55.05 2024-02-26 15:10:55.05 18900 TIP 439286 987 6073466 2024-02-26 15:11:55.805 2024-02-26 15:11:55.805 100 FEE 439426 15521 6073467 2024-02-26 15:11:55.805 2024-02-26 15:11:55.805 900 TIP 439426 4654 6073481 2024-02-26 15:12:14.017 2024-02-26 15:12:14.017 1000 FEE 439433 17392 6073494 2024-02-26 15:13:02.043 2024-02-26 15:13:02.043 50000 FEE 439286 4259 6073495 2024-02-26 15:13:02.043 2024-02-26 15:13:02.043 450000 TIP 439286 2844 6073506 2024-02-26 15:14:40.51 2024-02-26 15:14:40.51 1000 FEE 439439 7558 6073512 2024-02-26 15:15:00.515 2024-02-26 15:15:00.515 300 FEE 439393 20782 6073513 2024-02-26 15:15:00.515 2024-02-26 15:15:00.515 2700 TIP 439393 1836 6073517 2024-02-26 15:15:19.535 2024-02-26 15:15:19.535 1000 FEE 439442 2285 6073550 2024-02-26 15:18:18.297 2024-02-26 15:18:18.297 200000 FEE 439449 1046 6073554 2024-02-26 15:19:07.779 2024-02-26 15:19:07.779 1000 FEE 439384 797 6073555 2024-02-26 15:19:07.779 2024-02-26 15:19:07.779 9000 TIP 439384 8448 6073591 2024-02-26 15:20:23.318 2024-02-26 15:20:23.318 1000 FEE 439443 6361 6073592 2024-02-26 15:20:23.318 2024-02-26 15:20:23.318 9000 TIP 439443 10554 6073447 2024-02-26 15:10:18.527 2024-02-26 15:10:18.527 7700 FEE 439297 20452 6073448 2024-02-26 15:10:18.527 2024-02-26 15:10:18.527 69300 TIP 439297 21365 6073477 2024-02-26 15:12:08.633 2024-02-26 15:12:08.633 2100 FEE 439263 19199 6073478 2024-02-26 15:12:08.633 2024-02-26 15:12:08.633 18900 TIP 439263 20231 6073499 2024-02-26 15:13:34.482 2024-02-26 15:13:34.482 1000 FEE 439437 1142 6073500 2024-02-26 15:13:54.877 2024-02-26 15:13:54.877 1000 FEE 439438 9332 6073509 2024-02-26 15:14:43.201 2024-02-26 15:14:43.201 27900 FEE 439263 4173 6073510 2024-02-26 15:14:43.201 2024-02-26 15:14:43.201 251100 TIP 439263 13544 6073541 2024-02-26 15:16:40.66 2024-02-26 15:16:40.66 1000 FEE 439426 19243 6073542 2024-02-26 15:16:40.66 2024-02-26 15:16:40.66 9000 TIP 439426 1733 6073565 2024-02-26 15:19:56.575 2024-02-26 15:19:56.575 7700 FEE 439315 749 6073566 2024-02-26 15:19:56.575 2024-02-26 15:19:56.575 69300 TIP 439315 21296 6073577 2024-02-26 15:20:14.257 2024-02-26 15:20:14.257 7700 FEE 439295 6602 6073578 2024-02-26 15:20:14.257 2024-02-26 15:20:14.257 69300 TIP 439295 15488 6073597 2024-02-26 15:20:23.994 2024-02-26 15:20:23.994 1000 FEE 439443 16177 6073598 2024-02-26 15:20:23.994 2024-02-26 15:20:23.994 9000 TIP 439443 8376 6073601 2024-02-26 15:20:24.482 2024-02-26 15:20:24.482 1000 FEE 439443 21044 6073602 2024-02-26 15:20:24.482 2024-02-26 15:20:24.482 9000 TIP 439443 17838 6073629 2024-02-26 15:20:30.398 2024-02-26 15:20:30.398 7700 FEE 439263 7654 6073630 2024-02-26 15:20:30.398 2024-02-26 15:20:30.398 69300 TIP 439263 21406 6073681 2024-02-26 15:20:44.203 2024-02-26 15:20:44.203 7700 FEE 439443 11328 6073682 2024-02-26 15:20:44.203 2024-02-26 15:20:44.203 69300 TIP 439443 1515 6073717 2024-02-26 15:20:47.347 2024-02-26 15:20:47.347 7700 FEE 439443 16229 6073718 2024-02-26 15:20:47.347 2024-02-26 15:20:47.347 69300 TIP 439443 19689 6073730 2024-02-26 15:21:03.205 2024-02-26 15:21:03.205 2100 FEE 439226 12566 6073731 2024-02-26 15:21:03.205 2024-02-26 15:21:03.205 18900 TIP 439226 17798 6073756 2024-02-26 15:21:29.561 2024-02-26 15:21:29.561 1000 FEE 439456 21275 6073757 2024-02-26 15:21:32.987 2024-02-26 15:21:32.987 1000 FEE 439457 21393 6073769 2024-02-26 15:22:02.44 2024-02-26 15:22:02.44 6900 FEE 439422 10490 6073770 2024-02-26 15:22:02.44 2024-02-26 15:22:02.44 62100 TIP 439422 4654 6073777 2024-02-26 15:22:05.646 2024-02-26 15:22:05.646 6900 FEE 439422 14015 6073778 2024-02-26 15:22:05.646 2024-02-26 15:22:05.646 62100 TIP 439422 19005 6073787 2024-02-26 15:22:50.575 2024-02-26 15:22:50.575 4000 FEE 439277 21539 6073788 2024-02-26 15:22:50.575 2024-02-26 15:22:50.575 36000 TIP 439277 805 6073794 2024-02-26 15:23:00.3 2024-02-26 15:23:00.3 100000 FEE 439460 14663 6073811 2024-02-26 15:26:44.37 2024-02-26 15:26:44.37 7700 FEE 439286 18507 6073812 2024-02-26 15:26:44.37 2024-02-26 15:26:44.37 69300 TIP 439286 20897 6073823 2024-02-26 15:26:45.586 2024-02-26 15:26:45.586 7700 FEE 439286 21451 6073824 2024-02-26 15:26:45.586 2024-02-26 15:26:45.586 69300 TIP 439286 2338 6073825 2024-02-26 15:26:45.74 2024-02-26 15:26:45.74 1000 FEE 439411 18154 6073826 2024-02-26 15:26:45.74 2024-02-26 15:26:45.74 9000 TIP 439411 21547 6073847 2024-02-26 15:28:51.056 2024-02-26 15:28:51.056 1000 FEE 439467 12265 6073849 2024-02-26 15:29:29.404 2024-02-26 15:29:29.404 100 FEE 439401 696 6073850 2024-02-26 15:29:29.404 2024-02-26 15:29:29.404 900 TIP 439401 1745 6073853 2024-02-26 15:29:29.741 2024-02-26 15:29:29.741 100 FEE 439401 19987 6073854 2024-02-26 15:29:29.741 2024-02-26 15:29:29.741 900 TIP 439401 12102 6073883 2024-02-26 15:29:37.099 2024-02-26 15:29:37.099 100 FEE 439427 19886 6073884 2024-02-26 15:29:37.099 2024-02-26 15:29:37.099 900 TIP 439427 2514 6073905 2024-02-26 15:29:38.927 2024-02-26 15:29:38.927 100 FEE 439427 19007 6073906 2024-02-26 15:29:38.927 2024-02-26 15:29:38.927 900 TIP 439427 15843 6073911 2024-02-26 15:29:39.406 2024-02-26 15:29:39.406 100 FEE 439427 1478 6073912 2024-02-26 15:29:39.406 2024-02-26 15:29:39.406 900 TIP 439427 2514 6073915 2024-02-26 15:29:40.461 2024-02-26 15:29:40.461 100 FEE 439427 21033 6073916 2024-02-26 15:29:40.461 2024-02-26 15:29:40.461 900 TIP 439427 3709 6073937 2024-02-26 15:29:43.26 2024-02-26 15:29:43.26 100 FEE 439385 20412 6073938 2024-02-26 15:29:43.26 2024-02-26 15:29:43.26 900 TIP 439385 4391 6073943 2024-02-26 15:29:45.03 2024-02-26 15:29:45.03 400 FEE 439385 1489 6073944 2024-02-26 15:29:45.03 2024-02-26 15:29:45.03 3600 TIP 439385 21275 6073951 2024-02-26 15:29:52.118 2024-02-26 15:29:52.118 100 FEE 439401 21166 6073952 2024-02-26 15:29:52.118 2024-02-26 15:29:52.118 900 TIP 439401 20180 6073955 2024-02-26 15:30:37.726 2024-02-26 15:30:37.726 69000 DONT_LIKE_THIS 439182 1801 6073956 2024-02-26 15:30:42.871 2024-02-26 15:30:42.871 1000 FEE 439469 14785 6073975 2024-02-26 15:31:38.416 2024-02-26 15:31:38.416 3300 FEE 439295 1006 6073976 2024-02-26 15:31:38.416 2024-02-26 15:31:38.416 29700 TIP 439295 3709 6073989 2024-02-26 15:32:18.864 2024-02-26 15:32:18.864 1000 FEE 439473 20481 6073998 2024-02-26 15:32:48.944 2024-02-26 15:32:48.944 7700 FEE 439157 11716 6073999 2024-02-26 15:32:48.944 2024-02-26 15:32:48.944 69300 TIP 439157 1624 6074007 2024-02-26 15:33:11.711 2024-02-26 15:33:11.711 3300 FEE 438918 5761 6074008 2024-02-26 15:33:11.711 2024-02-26 15:33:11.711 29700 TIP 438918 5387 6074011 2024-02-26 15:33:23.041 2024-02-26 15:33:23.041 3300 FEE 438758 14370 6074012 2024-02-26 15:33:23.041 2024-02-26 15:33:23.041 29700 TIP 438758 8459 6074034 2024-02-26 15:35:18.709 2024-02-26 15:35:18.709 4000 FEE 439472 4570 6074035 2024-02-26 15:35:18.709 2024-02-26 15:35:18.709 36000 TIP 439472 14650 6074054 2024-02-26 15:35:57.116 2024-02-26 15:35:57.116 800 FEE 439472 21103 6074055 2024-02-26 15:35:57.116 2024-02-26 15:35:57.116 7200 TIP 439472 6148 6074070 2024-02-26 15:37:28.389 2024-02-26 15:37:28.389 0 FEE 439469 1180 6074088 2024-02-26 15:38:20.389 2024-02-26 15:38:20.389 1000 FEE 439483 895 6074143 2024-02-26 15:44:06.05 2024-02-26 15:44:06.05 1000 FEE 439501 1038 6074155 2024-02-26 15:45:16.245 2024-02-26 15:45:16.245 7700 FEE 439390 20613 6074156 2024-02-26 15:45:16.245 2024-02-26 15:45:16.245 69300 TIP 439390 19469 6074175 2024-02-26 15:45:19.134 2024-02-26 15:45:19.134 7700 FEE 439392 20904 6074176 2024-02-26 15:45:19.134 2024-02-26 15:45:19.134 69300 TIP 439392 1723 6074177 2024-02-26 15:45:19.402 2024-02-26 15:45:19.402 7700 FEE 439392 13781 6074178 2024-02-26 15:45:19.402 2024-02-26 15:45:19.402 69300 TIP 439392 10979 6074183 2024-02-26 15:45:19.754 2024-02-26 15:45:19.754 7700 FEE 439392 4166 6074184 2024-02-26 15:45:19.754 2024-02-26 15:45:19.754 69300 TIP 439392 4166 6074187 2024-02-26 15:45:19.915 2024-02-26 15:45:19.915 7700 FEE 439392 11898 6074188 2024-02-26 15:45:19.915 2024-02-26 15:45:19.915 69300 TIP 439392 7986 6074219 2024-02-26 15:46:34.959 2024-02-26 15:46:34.959 1000 FEE 439454 20439 6074220 2024-02-26 15:46:34.959 2024-02-26 15:46:34.959 9000 TIP 439454 16638 6074229 2024-02-26 15:46:54.931 2024-02-26 15:46:54.931 1000 FEE 439100 18017 6074230 2024-02-26 15:46:54.931 2024-02-26 15:46:54.931 9000 TIP 439100 11789 6074252 2024-02-26 15:47:56.131 2024-02-26 15:47:56.131 1000 FEE 439504 2710 6074253 2024-02-26 15:47:56.131 2024-02-26 15:47:56.131 9000 TIP 439504 18174 6074268 2024-02-26 15:48:42.746 2024-02-26 15:48:42.746 5000 FEE 439213 2460 6074269 2024-02-26 15:48:42.746 2024-02-26 15:48:42.746 45000 TIP 439213 19036 6074270 2024-02-26 15:48:48.14 2024-02-26 15:48:48.14 1000 FEE 439512 19267 6074276 2024-02-26 15:49:44.42 2024-02-26 15:49:44.42 1000 FEE 439516 9496 6074295 2024-02-26 15:49:50.749 2024-02-26 15:49:50.749 100 FEE 439421 2000 6074296 2024-02-26 15:49:50.749 2024-02-26 15:49:50.749 900 TIP 439421 20258 6074297 2024-02-26 15:50:02.327 2024-02-26 15:50:02.327 100 FEE 439505 21138 6073484 2024-02-26 15:12:24.576 2024-02-26 15:12:24.576 9900 TIP 439298 19813 6073486 2024-02-26 15:12:45.051 2024-02-26 15:12:45.051 1600 FEE 439386 16598 6073487 2024-02-26 15:12:45.051 2024-02-26 15:12:45.051 14400 TIP 439386 4819 6073491 2024-02-26 15:12:53.601 2024-02-26 15:12:53.601 100 FEE 439420 21503 6073492 2024-02-26 15:12:53.601 2024-02-26 15:12:53.601 900 TIP 439420 16350 6073497 2024-02-26 15:13:16.343 2024-02-26 15:13:16.343 2100 FEE 439436 5377 6073498 2024-02-26 15:13:16.343 2024-02-26 15:13:16.343 18900 TIP 439436 18409 6073516 2024-02-26 15:15:18.018 2024-02-26 15:15:18.018 1000 FEE 439441 3371 6073544 2024-02-26 15:17:35.35 2024-02-26 15:17:35.35 1000 FEE 439448 21422 6073561 2024-02-26 15:19:55.986 2024-02-26 15:19:55.986 30800 FEE 439315 18543 6073562 2024-02-26 15:19:55.986 2024-02-26 15:19:55.986 277200 TIP 439315 3392 6073563 2024-02-26 15:19:56.333 2024-02-26 15:19:56.333 15400 FEE 439315 1596 6073564 2024-02-26 15:19:56.333 2024-02-26 15:19:56.333 138600 TIP 439315 5637 6073572 2024-02-26 15:20:12.919 2024-02-26 15:20:12.919 1000 FEE 439419 14376 6073573 2024-02-26 15:20:12.919 2024-02-26 15:20:12.919 9000 TIP 439419 691 6073589 2024-02-26 15:20:23.134 2024-02-26 15:20:23.134 1000 FEE 439443 10608 6073590 2024-02-26 15:20:23.134 2024-02-26 15:20:23.134 9000 TIP 439443 1773 6073599 2024-02-26 15:20:24.333 2024-02-26 15:20:24.333 1000 FEE 439443 11897 6073600 2024-02-26 15:20:24.333 2024-02-26 15:20:24.333 9000 TIP 439443 15594 6073607 2024-02-26 15:20:25.134 2024-02-26 15:20:25.134 1000 FEE 439443 20990 6073608 2024-02-26 15:20:25.134 2024-02-26 15:20:25.134 9000 TIP 439443 14370 6073627 2024-02-26 15:20:30.16 2024-02-26 15:20:30.16 23100 FEE 439263 20738 6073628 2024-02-26 15:20:30.16 2024-02-26 15:20:30.16 207900 TIP 439263 8998 6073657 2024-02-26 15:20:33.721 2024-02-26 15:20:33.721 7700 FEE 439263 5557 6073658 2024-02-26 15:20:33.721 2024-02-26 15:20:33.721 69300 TIP 439263 11523 6073661 2024-02-26 15:20:34.059 2024-02-26 15:20:34.059 7700 FEE 439263 20642 6073662 2024-02-26 15:20:34.059 2024-02-26 15:20:34.059 69300 TIP 439263 896 6073677 2024-02-26 15:20:35.163 2024-02-26 15:20:35.163 1000 FEE 439452 18402 6073683 2024-02-26 15:20:44.274 2024-02-26 15:20:44.274 7700 FEE 439443 20817 6073684 2024-02-26 15:20:44.274 2024-02-26 15:20:44.274 69300 TIP 439443 4692 6073711 2024-02-26 15:20:47.034 2024-02-26 15:20:47.034 7700 FEE 439443 19992 6073712 2024-02-26 15:20:47.034 2024-02-26 15:20:47.034 69300 TIP 439443 15409 6073728 2024-02-26 15:20:57.003 2024-02-26 15:20:57.003 2700 FEE 439390 20756 6073729 2024-02-26 15:20:57.003 2024-02-26 15:20:57.003 24300 TIP 439390 17411 6073735 2024-02-26 15:21:15.618 2024-02-26 15:21:15.618 1000 FEE 439455 17827 6073746 2024-02-26 15:21:19.634 2024-02-26 15:21:19.634 2100 FEE 439295 21365 6073747 2024-02-26 15:21:19.634 2024-02-26 15:21:19.634 18900 TIP 439295 15762 6073750 2024-02-26 15:21:21.366 2024-02-26 15:21:21.366 1000 FEE 439377 19581 6073751 2024-02-26 15:21:21.366 2024-02-26 15:21:21.366 9000 TIP 439377 21239 6073752 2024-02-26 15:21:22.076 2024-02-26 15:21:22.076 1000 FEE 439371 9345 6073753 2024-02-26 15:21:22.076 2024-02-26 15:21:22.076 9000 TIP 439371 11716 6073784 2024-02-26 15:22:30.446 2024-02-26 15:22:30.446 1000 FEE 439459 14295 6073832 2024-02-26 15:27:10.467 2024-02-26 15:27:10.467 4000 FEE 439434 951 6073833 2024-02-26 15:27:10.467 2024-02-26 15:27:10.467 36000 TIP 439434 13544 6073834 2024-02-26 15:27:15.483 2024-02-26 15:27:15.483 100000 FEE 439361 900 6073835 2024-02-26 15:27:15.483 2024-02-26 15:27:15.483 900000 TIP 439361 21578 6073839 2024-02-26 15:27:47.605 2024-02-26 15:27:47.605 1000 FEE 439466 19854 6073841 2024-02-26 15:28:27.906 2024-02-26 15:28:27.906 2700 FEE 439295 19907 6073842 2024-02-26 15:28:27.906 2024-02-26 15:28:27.906 24300 TIP 439295 20564 6073855 2024-02-26 15:29:29.921 2024-02-26 15:29:29.921 100 FEE 439401 16704 6073856 2024-02-26 15:29:29.921 2024-02-26 15:29:29.921 900 TIP 439401 12736 6073867 2024-02-26 15:29:35.505 2024-02-26 15:29:35.505 2700 FEE 439263 9363 6073868 2024-02-26 15:29:35.505 2024-02-26 15:29:35.505 24300 TIP 439263 19992 6073877 2024-02-26 15:29:36.99 2024-02-26 15:29:36.99 100 FEE 439427 12024 6073878 2024-02-26 15:29:36.99 2024-02-26 15:29:36.99 900 TIP 439427 20606 6073887 2024-02-26 15:29:37.423 2024-02-26 15:29:37.423 100 FEE 439427 9365 6073888 2024-02-26 15:29:37.423 2024-02-26 15:29:37.423 900 TIP 439427 3409 6073895 2024-02-26 15:29:38.121 2024-02-26 15:29:38.121 100 FEE 439427 15282 6073896 2024-02-26 15:29:38.121 2024-02-26 15:29:38.121 900 TIP 439427 18660 6073919 2024-02-26 15:29:41.465 2024-02-26 15:29:41.465 100 FEE 439385 762 6073920 2024-02-26 15:29:41.465 2024-02-26 15:29:41.465 900 TIP 439385 1534 6073923 2024-02-26 15:29:42.107 2024-02-26 15:29:42.107 200 FEE 439385 9906 6073924 2024-02-26 15:29:42.107 2024-02-26 15:29:42.107 1800 TIP 439385 19992 6073939 2024-02-26 15:29:43.397 2024-02-26 15:29:43.397 100 FEE 439385 6430 6073940 2024-02-26 15:29:43.397 2024-02-26 15:29:43.397 900 TIP 439385 2111 6073954 2024-02-26 15:30:16.26 2024-02-26 15:30:16.26 1000 FEE 439468 1673 6073964 2024-02-26 15:31:21.004 2024-02-26 15:31:21.004 100000 FEE 439472 1046 6074015 2024-02-26 15:33:38.122 2024-02-26 15:33:38.122 3300 FEE 439277 6164 6074016 2024-02-26 15:33:38.122 2024-02-26 15:33:38.122 29700 TIP 439277 17201 6074028 2024-02-26 15:34:53.813 2024-02-26 15:34:53.813 2100 FEE 439426 18581 6074029 2024-02-26 15:34:53.813 2024-02-26 15:34:53.813 18900 TIP 439426 715 6074046 2024-02-26 15:35:49.725 2024-02-26 15:35:49.725 1000 FEE 439472 18989 6074047 2024-02-26 15:35:49.725 2024-02-26 15:35:49.725 9000 TIP 439472 13781 6074068 2024-02-26 15:37:20.024 2024-02-26 15:37:20.024 10000 FEE 439479 3439 6074087 2024-02-26 15:38:18.584 2024-02-26 15:38:18.584 1000 FEE 439482 5057 6074093 2024-02-26 15:38:39.574 2024-02-26 15:38:39.574 1000 FEE 439486 1237 6074096 2024-02-26 15:38:56.165 2024-02-26 15:38:56.165 100000 FEE 439489 880 6074102 2024-02-26 15:39:19.441 2024-02-26 15:39:19.441 0 FEE 439486 11275 6074109 2024-02-26 15:40:01.757 2024-02-26 15:40:01.757 4200 FEE 439315 16724 6074110 2024-02-26 15:40:01.757 2024-02-26 15:40:01.757 37800 TIP 439315 18731 6074115 2024-02-26 15:40:05.075 2024-02-26 15:40:05.075 1000 FEE 439477 19812 6074116 2024-02-26 15:40:05.075 2024-02-26 15:40:05.075 9000 TIP 439477 4654 6074128 2024-02-26 15:41:45.936 2024-02-26 15:41:45.936 3100 FEE 439472 656 6074129 2024-02-26 15:41:45.936 2024-02-26 15:41:45.936 27900 TIP 439472 20129 6074137 2024-02-26 15:42:58.675 2024-02-26 15:42:58.675 10000 FEE 439431 1141 6074138 2024-02-26 15:42:58.675 2024-02-26 15:42:58.675 90000 TIP 439431 6687 6074149 2024-02-26 15:44:57.158 2024-02-26 15:44:57.158 1000 FEE 439503 2431 6074157 2024-02-26 15:45:16.64 2024-02-26 15:45:16.64 7700 FEE 439390 1800 6074158 2024-02-26 15:45:16.64 2024-02-26 15:45:16.64 69300 TIP 439390 9705 6074167 2024-02-26 15:45:17.67 2024-02-26 15:45:17.67 7700 FEE 439390 19996 6074168 2024-02-26 15:45:17.67 2024-02-26 15:45:17.67 69300 TIP 439390 21424 6074169 2024-02-26 15:45:17.818 2024-02-26 15:45:17.818 7700 FEE 439390 21019 6074170 2024-02-26 15:45:17.818 2024-02-26 15:45:17.818 69300 TIP 439390 9200 6074195 2024-02-26 15:45:29.557 2024-02-26 15:45:29.557 7700 FEE 439458 1650 6074196 2024-02-26 15:45:29.557 2024-02-26 15:45:29.557 69300 TIP 439458 720 6074211 2024-02-26 15:46:33.084 2024-02-26 15:46:33.084 1000 FEE 439483 1628 6074212 2024-02-26 15:46:33.084 2024-02-26 15:46:33.084 9000 TIP 439483 16194 6074243 2024-02-26 15:47:17.83 2024-02-26 15:47:17.83 3300 FEE 439324 1881 6074244 2024-02-26 15:47:17.83 2024-02-26 15:47:17.83 29700 TIP 439324 21485 6074254 2024-02-26 15:47:56.292 2024-02-26 15:47:56.292 1000 FEE 439504 18452 6074255 2024-02-26 15:47:56.292 2024-02-26 15:47:56.292 9000 TIP 439504 11240 6073532 2024-02-26 15:16:04.916 2024-02-26 15:16:04.916 1000 STREAM 141924 1136 6073543 2024-02-26 15:17:04.894 2024-02-26 15:17:04.894 1000 STREAM 141924 17817 6073547 2024-02-26 15:18:04.898 2024-02-26 15:18:04.898 1000 STREAM 141924 19352 6074559 2024-02-26 16:13:05.451 2024-02-26 16:13:05.451 1000 STREAM 141924 21116 6074567 2024-02-26 16:14:05.458 2024-02-26 16:14:05.458 1000 STREAM 141924 17030 6074606 2024-02-26 16:17:05.462 2024-02-26 16:17:05.462 1000 STREAM 141924 9166 6074619 2024-02-26 16:18:05.468 2024-02-26 16:18:05.468 1000 STREAM 141924 18705 6074626 2024-02-26 16:19:03.478 2024-02-26 16:19:03.478 1000 STREAM 141924 4118 6074736 2024-02-26 16:32:03.732 2024-02-26 16:32:03.732 1000 STREAM 141924 1130 6074770 2024-02-26 16:36:03.771 2024-02-26 16:36:03.771 1000 STREAM 141924 15474 6074782 2024-02-26 16:38:03.804 2024-02-26 16:38:03.804 1000 STREAM 141924 19156 6074844 2024-02-26 16:39:03.802 2024-02-26 16:39:03.802 1000 STREAM 141924 20980 6074891 2024-02-26 16:40:03.847 2024-02-26 16:40:03.847 1000 STREAM 141924 20162 6073559 2024-02-26 15:19:55.446 2024-02-26 15:19:55.446 15400 FEE 439315 13378 6073560 2024-02-26 15:19:55.446 2024-02-26 15:19:55.446 138600 TIP 439315 16097 6073617 2024-02-26 15:20:29.449 2024-02-26 15:20:29.449 7700 FEE 439263 19909 6073618 2024-02-26 15:20:29.449 2024-02-26 15:20:29.449 69300 TIP 439263 13378 6073621 2024-02-26 15:20:29.612 2024-02-26 15:20:29.612 7700 FEE 439263 1286 6073622 2024-02-26 15:20:29.612 2024-02-26 15:20:29.612 69300 TIP 439263 15337 6073635 2024-02-26 15:20:32.476 2024-02-26 15:20:32.476 7700 FEE 439263 10013 6073636 2024-02-26 15:20:32.476 2024-02-26 15:20:32.476 69300 TIP 439263 19005 6073649 2024-02-26 15:20:33.315 2024-02-26 15:20:33.315 7700 FEE 439263 19796 6073650 2024-02-26 15:20:33.315 2024-02-26 15:20:33.315 69300 TIP 439263 15103 6073703 2024-02-26 15:20:46.456 2024-02-26 15:20:46.456 7700 FEE 439443 4259 6073704 2024-02-26 15:20:46.456 2024-02-26 15:20:46.456 69300 TIP 439443 4314 6073720 2024-02-26 15:20:56.49 2024-02-26 15:20:56.49 2700 FEE 439390 11275 6073721 2024-02-26 15:20:56.49 2024-02-26 15:20:56.49 24300 TIP 439390 21338 6073722 2024-02-26 15:20:56.504 2024-02-26 15:20:56.504 1600 FEE 439443 17109 6073723 2024-02-26 15:20:56.504 2024-02-26 15:20:56.504 14400 TIP 439443 5978 6073742 2024-02-26 15:21:17.831 2024-02-26 15:21:17.831 1000 FEE 439388 12268 6073743 2024-02-26 15:21:17.831 2024-02-26 15:21:17.831 9000 TIP 439388 2256 6073845 2024-02-26 15:28:28.229 2024-02-26 15:28:28.229 2700 FEE 439295 759 6073846 2024-02-26 15:28:28.229 2024-02-26 15:28:28.229 24300 TIP 439295 16276 6073881 2024-02-26 15:29:37.044 2024-02-26 15:29:37.044 100 FEE 439427 7827 6073882 2024-02-26 15:29:37.044 2024-02-26 15:29:37.044 900 TIP 439427 620 6073891 2024-02-26 15:29:37.794 2024-02-26 15:29:37.794 100 FEE 439427 8505 6073892 2024-02-26 15:29:37.794 2024-02-26 15:29:37.794 900 TIP 439427 896 6073897 2024-02-26 15:29:38.288 2024-02-26 15:29:38.288 100 FEE 439427 1310 6073898 2024-02-26 15:29:38.288 2024-02-26 15:29:38.288 900 TIP 439427 18409 6073903 2024-02-26 15:29:38.762 2024-02-26 15:29:38.762 100 FEE 439427 11821 6073904 2024-02-26 15:29:38.762 2024-02-26 15:29:38.762 900 TIP 439427 20911 6073945 2024-02-26 15:29:48.779 2024-02-26 15:29:48.779 100 FEE 439385 8080 6073946 2024-02-26 15:29:48.779 2024-02-26 15:29:48.779 900 TIP 439385 12169 6073961 2024-02-26 15:31:00.723 2024-02-26 15:31:00.723 1000 FEE 439470 20080 6073963 2024-02-26 15:31:07.468 2024-02-26 15:31:07.468 10000 FEE 439471 9494 6073977 2024-02-26 15:31:38.505 2024-02-26 15:31:38.505 3300 FEE 439295 17827 6073978 2024-02-26 15:31:38.505 2024-02-26 15:31:38.505 29700 TIP 439295 20168 6073980 2024-02-26 15:31:43.595 2024-02-26 15:31:43.595 3300 FEE 439298 1549 6073981 2024-02-26 15:31:43.595 2024-02-26 15:31:43.595 29700 TIP 439298 10493 6073996 2024-02-26 15:32:42.883 2024-02-26 15:32:42.883 3300 FEE 439401 1712 6073997 2024-02-26 15:32:42.883 2024-02-26 15:32:42.883 29700 TIP 439401 9982 6074009 2024-02-26 15:33:15.551 2024-02-26 15:33:15.551 10000 FEE 438918 20201 6074010 2024-02-26 15:33:15.551 2024-02-26 15:33:15.551 90000 TIP 438918 13782 6074042 2024-02-26 15:35:49.295 2024-02-26 15:35:49.295 1000 FEE 439472 20257 6074043 2024-02-26 15:35:49.295 2024-02-26 15:35:49.295 9000 TIP 439472 12721 6074044 2024-02-26 15:35:49.492 2024-02-26 15:35:49.492 1000 FEE 439472 16424 6074045 2024-02-26 15:35:49.492 2024-02-26 15:35:49.492 9000 TIP 439472 5701 6074056 2024-02-26 15:35:58.634 2024-02-26 15:35:58.634 7700 FEE 439472 2098 6074057 2024-02-26 15:35:58.634 2024-02-26 15:35:58.634 69300 TIP 439472 5057 6074065 2024-02-26 15:37:14.178 2024-02-26 15:37:14.178 800 FEE 439100 17513 6074066 2024-02-26 15:37:14.178 2024-02-26 15:37:14.178 7200 TIP 439100 1564 6074097 2024-02-26 15:39:02.536 2024-02-26 15:39:02.536 1000 FEE 439490 19484 6074105 2024-02-26 15:39:47.868 2024-02-26 15:39:47.868 0 FEE 439492 19484 6074108 2024-02-26 15:39:58.4 2024-02-26 15:39:58.4 1000 FEE 439494 9290 6074117 2024-02-26 15:40:05.285 2024-02-26 15:40:05.285 1000 FEE 439477 1515 6074118 2024-02-26 15:40:05.285 2024-02-26 15:40:05.285 9000 TIP 439477 3504 6074134 2024-02-26 15:42:00.524 2024-02-26 15:42:00.524 100 FEE 439263 679 6074135 2024-02-26 15:42:00.524 2024-02-26 15:42:00.524 900 TIP 439263 13767 6074151 2024-02-26 15:45:13.317 2024-02-26 15:45:13.317 2100 FEE 439130 21599 6074152 2024-02-26 15:45:13.317 2024-02-26 15:45:13.317 18900 TIP 439130 4989 6074199 2024-02-26 15:45:29.878 2024-02-26 15:45:29.878 7700 FEE 439458 21369 6074200 2024-02-26 15:45:29.878 2024-02-26 15:45:29.878 69300 TIP 439458 20514 6074201 2024-02-26 15:45:29.911 2024-02-26 15:45:29.911 7700 FEE 439458 10690 6074202 2024-02-26 15:45:29.911 2024-02-26 15:45:29.911 69300 TIP 439458 675 6074210 2024-02-26 15:46:22.796 2024-02-26 15:46:22.796 0 FEE 439501 18219 6074221 2024-02-26 15:46:45.248 2024-02-26 15:46:45.248 1000 FEE 439141 5828 6074222 2024-02-26 15:46:45.248 2024-02-26 15:46:45.248 9000 TIP 439141 14909 6074233 2024-02-26 15:46:55.336 2024-02-26 15:46:55.336 1000 FEE 439100 11956 6074234 2024-02-26 15:46:55.336 2024-02-26 15:46:55.336 9000 TIP 439100 17984 6074237 2024-02-26 15:46:55.565 2024-02-26 15:46:55.565 2100 FEE 439498 20854 6074238 2024-02-26 15:46:55.565 2024-02-26 15:46:55.565 18900 TIP 439498 21042 6074247 2024-02-26 15:47:26.704 2024-02-26 15:47:26.704 1000 FEE 439508 1389 6074258 2024-02-26 15:47:56.394 2024-02-26 15:47:56.394 1000 FEE 439509 8916 6074311 2024-02-26 15:50:03.537 2024-02-26 15:50:03.537 100 FEE 439505 2342 6074312 2024-02-26 15:50:03.537 2024-02-26 15:50:03.537 900 TIP 439505 9496 6074345 2024-02-26 15:50:23.053 2024-02-26 15:50:23.053 100 FEE 439494 8326 6074346 2024-02-26 15:50:23.053 2024-02-26 15:50:23.053 900 TIP 439494 21323 6074371 2024-02-26 15:50:28.018 2024-02-26 15:50:28.018 1000 FEE 439423 11821 6074372 2024-02-26 15:50:28.018 2024-02-26 15:50:28.018 9000 TIP 439423 19031 6074386 2024-02-26 15:51:14.952 2024-02-26 15:51:14.952 1000 FEE 439520 21614 6074393 2024-02-26 15:51:25.302 2024-02-26 15:51:25.302 5000 FEE 437367 19852 6074394 2024-02-26 15:51:25.302 2024-02-26 15:51:25.302 45000 TIP 437367 18180 6074395 2024-02-26 15:51:25.916 2024-02-26 15:51:25.916 45000 FEE 437367 14169 6074396 2024-02-26 15:51:25.916 2024-02-26 15:51:25.916 405000 TIP 437367 12291 6074448 2024-02-26 15:58:09.797 2024-02-26 15:58:09.797 0 FEE 439524 717 6074451 2024-02-26 15:58:24.836 2024-02-26 15:58:24.836 700 FEE 439504 18274 6074452 2024-02-26 15:58:24.836 2024-02-26 15:58:24.836 6300 TIP 439504 1273 6074455 2024-02-26 15:59:49.815 2024-02-26 15:59:49.815 10000 FEE 439531 20434 6074458 2024-02-26 16:00:04.868 2024-02-26 16:00:04.868 1000 FEE 439533 21387 6074470 2024-02-26 16:01:55.59 2024-02-26 16:01:55.59 1000 FEE 439537 14381 6074487 2024-02-26 16:03:26.695 2024-02-26 16:03:26.695 1000 FEE 439542 20036 6074494 2024-02-26 16:04:08.132 2024-02-26 16:04:08.132 2100 FEE 439349 11522 6074495 2024-02-26 16:04:08.132 2024-02-26 16:04:08.132 18900 TIP 439349 9982 6074528 2024-02-26 16:08:53.932 2024-02-26 16:08:53.932 1000 FEE 439552 18528 6074564 2024-02-26 16:13:47.053 2024-02-26 16:13:47.053 2100 FEE 439295 16296 6074565 2024-02-26 16:13:47.053 2024-02-26 16:13:47.053 18900 TIP 439295 21585 6074575 2024-02-26 16:15:22.537 2024-02-26 16:15:22.537 100 FEE 439100 1002 6074576 2024-02-26 16:15:22.537 2024-02-26 16:15:22.537 900 TIP 439100 18230 6074579 2024-02-26 16:15:22.91 2024-02-26 16:15:22.91 100 FEE 439100 15326 6074580 2024-02-26 16:15:22.91 2024-02-26 16:15:22.91 900 TIP 439100 20616 6074581 2024-02-26 16:15:23.073 2024-02-26 16:15:23.073 100 FEE 439100 18262 6074582 2024-02-26 16:15:23.073 2024-02-26 16:15:23.073 900 TIP 439100 1142 6074587 2024-02-26 16:16:02.947 2024-02-26 16:16:02.947 10000 FEE 439564 19576 6074593 2024-02-26 16:16:28.966 2024-02-26 16:16:28.966 1000 FEE 439489 964 6074594 2024-02-26 16:16:28.966 2024-02-26 16:16:28.966 9000 TIP 439489 18116 6074609 2024-02-26 16:17:07.603 2024-02-26 16:17:07.603 1000 FEE 439267 16350 6073611 2024-02-26 15:20:25.902 2024-02-26 15:20:25.902 1000 FEE 439443 7376 6073612 2024-02-26 15:20:25.902 2024-02-26 15:20:25.902 9000 TIP 439443 1740 6073613 2024-02-26 15:20:25.937 2024-02-26 15:20:25.937 1000 FEE 439443 20680 6073614 2024-02-26 15:20:25.937 2024-02-26 15:20:25.937 9000 TIP 439443 19034 6073619 2024-02-26 15:20:29.501 2024-02-26 15:20:29.501 7700 FEE 439263 896 6073620 2024-02-26 15:20:29.501 2024-02-26 15:20:29.501 69300 TIP 439263 20280 6073645 2024-02-26 15:20:33.02 2024-02-26 15:20:33.02 7700 FEE 439263 19601 6073646 2024-02-26 15:20:33.02 2024-02-26 15:20:33.02 69300 TIP 439263 18076 6073665 2024-02-26 15:20:34.239 2024-02-26 15:20:34.239 7700 FEE 439263 21228 6073666 2024-02-26 15:20:34.239 2024-02-26 15:20:34.239 69300 TIP 439263 673 6073669 2024-02-26 15:20:34.433 2024-02-26 15:20:34.433 7700 FEE 439263 20778 6073670 2024-02-26 15:20:34.433 2024-02-26 15:20:34.433 69300 TIP 439263 1291 6073675 2024-02-26 15:20:34.831 2024-02-26 15:20:34.831 7700 FEE 439263 19469 6073676 2024-02-26 15:20:34.831 2024-02-26 15:20:34.831 69300 TIP 439263 5703 6073691 2024-02-26 15:20:45.754 2024-02-26 15:20:45.754 1000 FEE 439386 2335 6073692 2024-02-26 15:20:45.754 2024-02-26 15:20:45.754 9000 TIP 439386 11314 6073705 2024-02-26 15:20:46.628 2024-02-26 15:20:46.628 15400 FEE 439443 19572 6073706 2024-02-26 15:20:46.628 2024-02-26 15:20:46.628 138600 TIP 439443 17570 6073754 2024-02-26 15:21:23.684 2024-02-26 15:21:23.684 1000 FEE 439378 886 6073755 2024-02-26 15:21:23.684 2024-02-26 15:21:23.684 9000 TIP 439378 20826 6073785 2024-02-26 15:22:43.556 2024-02-26 15:22:43.556 4000 FEE 439443 18618 6073786 2024-02-26 15:22:43.556 2024-02-26 15:22:43.556 36000 TIP 439443 9758 6073804 2024-02-26 15:24:58.677 2024-02-26 15:24:58.677 1000 FEE 439463 17091 6073827 2024-02-26 15:26:49.501 2024-02-26 15:26:49.501 100000 FEE 439411 21406 6073828 2024-02-26 15:26:49.501 2024-02-26 15:26:49.501 900000 TIP 439411 21012 6073843 2024-02-26 15:28:28.102 2024-02-26 15:28:28.102 2700 FEE 439295 12218 6073844 2024-02-26 15:28:28.102 2024-02-26 15:28:28.102 24300 TIP 439295 15978 6073873 2024-02-26 15:29:36.37 2024-02-26 15:29:36.37 2700 FEE 439263 6749 6073874 2024-02-26 15:29:36.37 2024-02-26 15:29:36.37 24300 TIP 439263 20973 6073875 2024-02-26 15:29:36.979 2024-02-26 15:29:36.979 100 FEE 439427 20594 6073876 2024-02-26 15:29:36.979 2024-02-26 15:29:36.979 900 TIP 439427 7979 6073885 2024-02-26 15:29:37.248 2024-02-26 15:29:37.248 100 FEE 439427 6041 6073886 2024-02-26 15:29:37.248 2024-02-26 15:29:37.248 900 TIP 439427 15200 6073893 2024-02-26 15:29:37.96 2024-02-26 15:29:37.96 100 FEE 439427 17535 6073894 2024-02-26 15:29:37.96 2024-02-26 15:29:37.96 900 TIP 439427 674 6073917 2024-02-26 15:29:41.305 2024-02-26 15:29:41.305 100 FEE 439385 1090 6073918 2024-02-26 15:29:41.305 2024-02-26 15:29:41.305 900 TIP 439385 1618 6073949 2024-02-26 15:29:51.7 2024-02-26 15:29:51.7 100 FEE 439401 5522 6073950 2024-02-26 15:29:51.7 2024-02-26 15:29:51.7 900 TIP 439401 21064 6073979 2024-02-26 15:31:43.062 2024-02-26 15:31:43.062 69000 DONT_LIKE_THIS 439471 9036 6074013 2024-02-26 15:33:37.916 2024-02-26 15:33:37.916 3300 FEE 439277 21042 6074014 2024-02-26 15:33:37.916 2024-02-26 15:33:37.916 29700 TIP 439277 8541 6074040 2024-02-26 15:35:49.092 2024-02-26 15:35:49.092 1000 FEE 439472 4076 6074041 2024-02-26 15:35:49.092 2024-02-26 15:35:49.092 9000 TIP 439472 8162 6074060 2024-02-26 15:36:22.87 2024-02-26 15:36:22.87 77000 DONT_LIKE_THIS 439476 20588 6074073 2024-02-26 15:37:45.299 2024-02-26 15:37:45.299 2100 FEE 438918 1286 6074074 2024-02-26 15:37:45.299 2024-02-26 15:37:45.299 18900 TIP 438918 15115 6074077 2024-02-26 15:38:02.96 2024-02-26 15:38:02.96 10000 FEE 439315 16329 6074078 2024-02-26 15:38:02.96 2024-02-26 15:38:02.96 90000 TIP 439315 1741 6074085 2024-02-26 15:38:08.87 2024-02-26 15:38:08.87 500 FEE 439457 16353 6074086 2024-02-26 15:38:08.87 2024-02-26 15:38:08.87 4500 TIP 439457 21417 6074092 2024-02-26 15:38:30.881 2024-02-26 15:38:30.881 1000 FEE 439485 5497 6074106 2024-02-26 15:39:49.472 2024-02-26 15:39:49.472 3300 FEE 439390 1401 6074107 2024-02-26 15:39:49.472 2024-02-26 15:39:49.472 29700 TIP 439390 18169 6074133 2024-02-26 15:41:56.352 2024-02-26 15:41:56.352 1000 FEE 439498 21164 6074145 2024-02-26 15:44:17.503 2024-02-26 15:44:17.503 1000 FEE 439499 18452 6074146 2024-02-26 15:44:17.503 2024-02-26 15:44:17.503 9000 TIP 439499 20904 6074153 2024-02-26 15:45:15.117 2024-02-26 15:45:15.117 10000 FEE 439504 20504 6074259 2024-02-26 15:47:56.476 2024-02-26 15:47:56.476 1000 FEE 439510 13843 6074277 2024-02-26 15:49:47.367 2024-02-26 15:49:47.367 100 FEE 439421 19267 6074278 2024-02-26 15:49:47.367 2024-02-26 15:49:47.367 900 TIP 439421 21578 6074279 2024-02-26 15:49:47.529 2024-02-26 15:49:47.529 100 FEE 439421 20715 6074280 2024-02-26 15:49:47.529 2024-02-26 15:49:47.529 900 TIP 439421 1488 6074384 2024-02-26 15:51:05.673 2024-02-26 15:51:05.673 1000 FEE 439300 1814 6074385 2024-02-26 15:51:05.673 2024-02-26 15:51:05.673 9000 TIP 439300 679 6074391 2024-02-26 15:51:18.843 2024-02-26 15:51:18.843 2100 FEE 439510 19576 6074392 2024-02-26 15:51:18.843 2024-02-26 15:51:18.843 18900 TIP 439510 20306 6074398 2024-02-26 15:51:38.837 2024-02-26 15:51:38.837 100 FEE 365216 8569 6074399 2024-02-26 15:51:38.837 2024-02-26 15:51:38.837 900 TIP 365216 18460 6074433 2024-02-26 15:55:13.175 2024-02-26 15:55:13.175 3100 FEE 439522 2748 6074434 2024-02-26 15:55:13.175 2024-02-26 15:55:13.175 27900 TIP 439522 1585 6074437 2024-02-26 15:56:31.109 2024-02-26 15:56:31.109 1000 FEE 439527 9551 6074471 2024-02-26 16:02:00.083 2024-02-26 16:02:00.083 300 FEE 438977 10530 6074472 2024-02-26 16:02:00.083 2024-02-26 16:02:00.083 2700 TIP 438977 17042 6074476 2024-02-26 16:02:19.597 2024-02-26 16:02:19.597 2100 FEE 439469 20110 6074477 2024-02-26 16:02:19.597 2024-02-26 16:02:19.597 18900 TIP 439469 695 6074492 2024-02-26 16:03:52.404 2024-02-26 16:03:52.404 1000 FEE 439543 20858 6074497 2024-02-26 16:04:37.745 2024-02-26 16:04:37.745 1000 FEE 293063 2065 6074498 2024-02-26 16:04:37.745 2024-02-26 16:04:37.745 9000 TIP 293063 19469 6074506 2024-02-26 16:06:17.641 2024-02-26 16:06:17.641 1000 FEE 439548 8664 6074510 2024-02-26 16:07:36.394 2024-02-26 16:07:36.394 333300 FEE 439157 7983 6074511 2024-02-26 16:07:36.394 2024-02-26 16:07:36.394 2999700 TIP 439157 17030 6074526 2024-02-26 16:08:35.735 2024-02-26 16:08:35.735 10000 FEE 439550 18177 6074529 2024-02-26 16:08:55.639 2024-02-26 16:08:55.639 2100 FEE 439472 11866 6074530 2024-02-26 16:08:55.639 2024-02-26 16:08:55.639 18900 TIP 439472 21627 6074544 2024-02-26 16:11:07.893 2024-02-26 16:11:07.893 0 FEE 439556 18511 6074547 2024-02-26 16:11:37.289 2024-02-26 16:11:37.289 10000 FEE 439557 19576 6074568 2024-02-26 16:14:15.475 2024-02-26 16:14:15.475 7700 FEE 439562 6310 6074569 2024-02-26 16:14:15.475 2024-02-26 16:14:15.475 69300 TIP 439562 18138 6074617 2024-02-26 16:17:47.689 2024-02-26 16:17:47.689 1000 FEE 439315 1833 6074618 2024-02-26 16:17:47.689 2024-02-26 16:17:47.689 9000 TIP 439315 1806 6074628 2024-02-26 16:19:25.984 2024-02-26 16:19:25.984 1000 FEE 439565 9833 6074631 2024-02-26 16:19:47.619 2024-02-26 16:19:47.619 4000 FEE 439508 20889 6074632 2024-02-26 16:19:47.619 2024-02-26 16:19:47.619 36000 TIP 439508 14278 6074641 2024-02-26 16:22:59.483 2024-02-26 16:22:59.483 1000 FEE 439337 21437 6074642 2024-02-26 16:22:59.483 2024-02-26 16:22:59.483 9000 TIP 439337 19087 6074671 2024-02-26 16:25:41.518 2024-02-26 16:25:41.518 10000 FEE 439443 20858 6074672 2024-02-26 16:25:41.518 2024-02-26 16:25:41.518 90000 TIP 439443 21573 6074675 2024-02-26 16:25:49.976 2024-02-26 16:25:49.976 100 FEE 439257 16847 6074676 2024-02-26 16:25:49.976 2024-02-26 16:25:49.976 900 TIP 439257 2444 6074708 2024-02-26 16:28:45.715 2024-02-26 16:28:45.715 21000 FEE 439548 5865 6074709 2024-02-26 16:28:45.715 2024-02-26 16:28:45.715 189000 TIP 439548 15703 6074724 2024-02-26 16:30:34.703 2024-02-26 16:30:34.703 4000 FEE 439513 985 6074725 2024-02-26 16:30:34.703 2024-02-26 16:30:34.703 36000 TIP 439513 1428 6074812 2024-02-26 16:38:21.098 2024-02-26 16:38:21.098 1100 FEE 439443 1845 6073663 2024-02-26 15:20:34.104 2024-02-26 15:20:34.104 7700 FEE 439263 763 6073664 2024-02-26 15:20:34.104 2024-02-26 15:20:34.104 69300 TIP 439263 1224 6073671 2024-02-26 15:20:34.574 2024-02-26 15:20:34.574 7700 FEE 439263 18309 6073672 2024-02-26 15:20:34.574 2024-02-26 15:20:34.574 69300 TIP 439263 8570 6073680 2024-02-26 15:20:43.687 2024-02-26 15:20:43.687 1000 FEE 439453 20655 6073685 2024-02-26 15:20:44.483 2024-02-26 15:20:44.483 2100 FEE 439263 14260 6073686 2024-02-26 15:20:44.483 2024-02-26 15:20:44.483 18900 TIP 439263 19449 6073715 2024-02-26 15:20:47.217 2024-02-26 15:20:47.217 7700 FEE 439443 9346 6073716 2024-02-26 15:20:47.217 2024-02-26 15:20:47.217 69300 TIP 439443 18310 6073733 2024-02-26 15:21:14.698 2024-02-26 15:21:14.698 1000 FEE 439358 8287 6073734 2024-02-26 15:21:14.698 2024-02-26 15:21:14.698 9000 TIP 439358 9341 6073763 2024-02-26 15:22:01.786 2024-02-26 15:22:01.786 6900 FEE 439422 21589 6073764 2024-02-26 15:22:01.786 2024-02-26 15:22:01.786 62100 TIP 439422 21343 6073765 2024-02-26 15:22:01.956 2024-02-26 15:22:01.956 6900 FEE 439422 14376 6073766 2024-02-26 15:22:01.956 2024-02-26 15:22:01.956 62100 TIP 439422 15588 6073799 2024-02-26 15:24:02.324 2024-02-26 15:24:02.324 3000 FEE 439401 7847 6073800 2024-02-26 15:24:02.324 2024-02-26 15:24:02.324 27000 TIP 439401 1836 6073809 2024-02-26 15:26:08.291 2024-02-26 15:26:08.291 2100 FEE 439464 19333 6073810 2024-02-26 15:26:08.291 2024-02-26 15:26:08.291 18900 TIP 439464 12779 6073821 2024-02-26 15:26:45.501 2024-02-26 15:26:45.501 7700 FEE 439286 13177 6073822 2024-02-26 15:26:45.501 2024-02-26 15:26:45.501 69300 TIP 439286 19494 6073859 2024-02-26 15:29:30.282 2024-02-26 15:29:30.282 100 FEE 439401 2528 6073860 2024-02-26 15:29:30.282 2024-02-26 15:29:30.282 900 TIP 439401 14785 6073889 2024-02-26 15:29:37.608 2024-02-26 15:29:37.608 100 FEE 439427 17392 6073890 2024-02-26 15:29:37.608 2024-02-26 15:29:37.608 900 TIP 439427 4650 6073921 2024-02-26 15:29:41.798 2024-02-26 15:29:41.798 200 FEE 439385 618 6073922 2024-02-26 15:29:41.798 2024-02-26 15:29:41.798 1800 TIP 439385 12566 6073931 2024-02-26 15:29:42.726 2024-02-26 15:29:42.726 100 FEE 439385 1208 6073932 2024-02-26 15:29:42.726 2024-02-26 15:29:42.726 900 TIP 439385 1236 6073941 2024-02-26 15:29:44.214 2024-02-26 15:29:44.214 200 FEE 439385 8498 6073942 2024-02-26 15:29:44.214 2024-02-26 15:29:44.214 1800 TIP 439385 18524 6073959 2024-02-26 15:30:51.804 2024-02-26 15:30:51.804 69000 DONT_LIKE_THIS 439434 5057 6073969 2024-02-26 15:31:28.415 2024-02-26 15:31:28.415 3300 FEE 439315 629 6073970 2024-02-26 15:31:28.415 2024-02-26 15:31:28.415 29700 TIP 439315 1316 6074017 2024-02-26 15:33:43.472 2024-02-26 15:33:43.472 21000 FEE 439474 1044 6074024 2024-02-26 15:34:48.02 2024-02-26 15:34:48.02 2100 FEE 439471 16097 6074025 2024-02-26 15:34:48.02 2024-02-26 15:34:48.02 18900 TIP 439471 5519 6074036 2024-02-26 15:35:30.892 2024-02-26 15:35:30.892 2100 FEE 439475 9352 6074037 2024-02-26 15:35:30.892 2024-02-26 15:35:30.892 18900 TIP 439475 11789 6074038 2024-02-26 15:35:49.011 2024-02-26 15:35:49.011 1000 FEE 439472 9332 6074039 2024-02-26 15:35:49.011 2024-02-26 15:35:49.011 9000 TIP 439472 18392 6074079 2024-02-26 15:38:04.541 2024-02-26 15:38:04.541 1000 FEE 439481 19638 6074080 2024-02-26 15:38:05.045 2024-02-26 15:38:05.045 2100 FEE 439050 15843 6074081 2024-02-26 15:38:05.045 2024-02-26 15:38:05.045 18900 TIP 439050 21352 6074090 2024-02-26 15:38:27.777 2024-02-26 15:38:27.777 1100 FEE 439420 4650 6074091 2024-02-26 15:38:27.777 2024-02-26 15:38:27.777 9900 TIP 439420 9552 6074101 2024-02-26 15:39:12.618 2024-02-26 15:39:12.618 1000 FEE 439491 11378 6074103 2024-02-26 15:39:27.524 2024-02-26 15:39:27.524 1000 FEE 439492 18154 6074104 2024-02-26 15:39:44.1 2024-02-26 15:39:44.1 1000 FEE 439493 12122 6074119 2024-02-26 15:40:05.462 2024-02-26 15:40:05.462 1000 FEE 439477 19007 6074120 2024-02-26 15:40:05.462 2024-02-26 15:40:05.462 9000 TIP 439477 3417 6074127 2024-02-26 15:41:12.402 2024-02-26 15:41:12.402 1000 FEE 439496 1549 6074144 2024-02-26 15:44:16.171 2024-02-26 15:44:16.171 100000 FEE 439502 18311 6074179 2024-02-26 15:45:19.546 2024-02-26 15:45:19.546 7700 FEE 439392 1000 6074180 2024-02-26 15:45:19.546 2024-02-26 15:45:19.546 69300 TIP 439392 18351 6074197 2024-02-26 15:45:29.686 2024-02-26 15:45:29.686 7700 FEE 439458 5828 6074198 2024-02-26 15:45:29.686 2024-02-26 15:45:29.686 69300 TIP 439458 21249 6074203 2024-02-26 15:45:30.751 2024-02-26 15:45:30.751 7700 FEE 439458 1429 6074204 2024-02-26 15:45:30.751 2024-02-26 15:45:30.751 69300 TIP 439458 18526 6074227 2024-02-26 15:46:54.727 2024-02-26 15:46:54.727 1000 FEE 439100 7827 6074228 2024-02-26 15:46:54.727 2024-02-26 15:46:54.727 9000 TIP 439100 2519 6074231 2024-02-26 15:46:55.169 2024-02-26 15:46:55.169 1000 FEE 439100 11820 6074232 2024-02-26 15:46:55.169 2024-02-26 15:46:55.169 9000 TIP 439100 20208 6074245 2024-02-26 15:47:19.611 2024-02-26 15:47:19.611 3300 FEE 439340 12774 6074246 2024-02-26 15:47:19.611 2024-02-26 15:47:19.611 29700 TIP 439340 654 6074250 2024-02-26 15:47:48.344 2024-02-26 15:47:48.344 100 FEE 439154 9339 6074251 2024-02-26 15:47:48.344 2024-02-26 15:47:48.344 900 TIP 439154 5942 6074256 2024-02-26 15:47:56.376 2024-02-26 15:47:56.376 1000 FEE 439229 19105 6074257 2024-02-26 15:47:56.376 2024-02-26 15:47:56.376 9000 TIP 439229 19375 6074262 2024-02-26 15:48:01.899 2024-02-26 15:48:01.899 1000 FEE 439511 18517 6074271 2024-02-26 15:48:56.506 2024-02-26 15:48:56.506 210000 FEE 439513 8870 6074275 2024-02-26 15:49:35.819 2024-02-26 15:49:35.819 10000 FEE 439515 4177 6074287 2024-02-26 15:49:48.973 2024-02-26 15:49:48.973 100 FEE 439421 21472 6074288 2024-02-26 15:49:48.973 2024-02-26 15:49:48.973 900 TIP 439421 20231 6074293 2024-02-26 15:49:50.204 2024-02-26 15:49:50.204 100 FEE 439421 20775 6074294 2024-02-26 15:49:50.204 2024-02-26 15:49:50.204 900 TIP 439421 12169 6074301 2024-02-26 15:50:02.653 2024-02-26 15:50:02.653 100 FEE 439505 14169 6074302 2024-02-26 15:50:02.653 2024-02-26 15:50:02.653 900 TIP 439505 848 6074307 2024-02-26 15:50:03.2 2024-02-26 15:50:03.2 100 FEE 439505 20647 6074308 2024-02-26 15:50:03.2 2024-02-26 15:50:03.2 900 TIP 439505 19153 6074332 2024-02-26 15:50:06.696 2024-02-26 15:50:06.696 200 FEE 439505 15160 6074333 2024-02-26 15:50:06.696 2024-02-26 15:50:06.696 1800 TIP 439505 7966 6074359 2024-02-26 15:50:24.597 2024-02-26 15:50:24.597 300 FEE 439494 21214 6074360 2024-02-26 15:50:24.597 2024-02-26 15:50:24.597 2700 TIP 439494 18678 6074365 2024-02-26 15:50:25.548 2024-02-26 15:50:25.548 100 FEE 439494 19031 6074366 2024-02-26 15:50:25.548 2024-02-26 15:50:25.548 900 TIP 439494 11873 6074375 2024-02-26 15:50:34.635 2024-02-26 15:50:34.635 100 FEE 439494 621 6074376 2024-02-26 15:50:34.635 2024-02-26 15:50:34.635 900 TIP 439494 11776 6074377 2024-02-26 15:50:35.056 2024-02-26 15:50:35.056 100 FEE 439494 690 6074378 2024-02-26 15:50:35.056 2024-02-26 15:50:35.056 900 TIP 439494 21329 6074380 2024-02-26 15:50:43.611 2024-02-26 15:50:43.611 1000 FEE 439519 1745 6074400 2024-02-26 15:51:48.071 2024-02-26 15:51:48.071 1000 FEE 439521 8945 6074402 2024-02-26 15:52:04.094 2024-02-26 15:52:04.094 1000 FEE 439522 19038 6074417 2024-02-26 15:53:49.751 2024-02-26 15:53:49.751 1000 FEE 439524 12422 6074439 2024-02-26 15:56:51.495 2024-02-26 15:56:51.495 3100 FEE 439525 20006 6074440 2024-02-26 15:56:51.495 2024-02-26 15:56:51.495 27900 TIP 439525 20514 6074460 2024-02-26 16:00:35.485 2024-02-26 16:00:35.485 500 FEE 439081 1673 6074461 2024-02-26 16:00:35.485 2024-02-26 16:00:35.485 4500 TIP 439081 21573 6074465 2024-02-26 16:01:42.5 2024-02-26 16:01:42.5 1000 FEE 439535 929 6074469 2024-02-26 16:01:54.502 2024-02-26 16:01:54.502 77000 DONT_LIKE_THIS 439531 10821 6074480 2024-02-26 16:02:26.626 2024-02-26 16:02:26.626 1000 FEE 439540 15697 6074482 2024-02-26 16:03:16.83 2024-02-26 16:03:16.83 5000 FEE 439435 9354 6073802 2024-02-26 15:24:53.909 2024-02-26 15:24:53.909 2100 FEE 439343 21371 6073803 2024-02-26 15:24:53.909 2024-02-26 15:24:53.909 18900 TIP 439343 10586 6073807 2024-02-26 15:25:18.843 2024-02-26 15:25:18.843 1000 FEE 439464 4395 6073813 2024-02-26 15:26:44.493 2024-02-26 15:26:44.493 7700 FEE 439286 18625 6073814 2024-02-26 15:26:44.493 2024-02-26 15:26:44.493 69300 TIP 439286 4177 6073815 2024-02-26 15:26:44.734 2024-02-26 15:26:44.734 15400 FEE 439286 12289 6073816 2024-02-26 15:26:44.734 2024-02-26 15:26:44.734 138600 TIP 439286 2514 6073817 2024-02-26 15:26:45.303 2024-02-26 15:26:45.303 7700 FEE 439286 20669 6073818 2024-02-26 15:26:45.303 2024-02-26 15:26:45.303 69300 TIP 439286 2176 6073819 2024-02-26 15:26:45.453 2024-02-26 15:26:45.453 7700 FEE 439286 1310 6073820 2024-02-26 15:26:45.453 2024-02-26 15:26:45.453 69300 TIP 439286 15336 6073830 2024-02-26 15:27:07.875 2024-02-26 15:27:07.875 100000 FEE 439223 20120 6073831 2024-02-26 15:27:07.875 2024-02-26 15:27:07.875 900000 TIP 439223 7389 6073837 2024-02-26 15:27:24.393 2024-02-26 15:27:24.393 10000 FEE 439382 9200 6073838 2024-02-26 15:27:24.393 2024-02-26 15:27:24.393 90000 TIP 439382 2431 6073871 2024-02-26 15:29:35.925 2024-02-26 15:29:35.925 2700 FEE 439263 8985 6073872 2024-02-26 15:29:35.925 2024-02-26 15:29:35.925 24300 TIP 439263 9669 6073909 2024-02-26 15:29:39.269 2024-02-26 15:29:39.269 100 FEE 439427 7654 6073910 2024-02-26 15:29:39.269 2024-02-26 15:29:39.269 900 TIP 439427 20222 6073925 2024-02-26 15:29:42.261 2024-02-26 15:29:42.261 100 FEE 439385 2513 6073926 2024-02-26 15:29:42.261 2024-02-26 15:29:42.261 900 TIP 439385 1970 6073927 2024-02-26 15:29:42.413 2024-02-26 15:29:42.413 100 FEE 439385 16594 6073928 2024-02-26 15:29:42.413 2024-02-26 15:29:42.413 900 TIP 439385 1717 6073929 2024-02-26 15:29:42.576 2024-02-26 15:29:42.576 100 FEE 439385 16543 6073930 2024-02-26 15:29:42.576 2024-02-26 15:29:42.576 900 TIP 439385 2620 6073960 2024-02-26 15:30:59.602 2024-02-26 15:30:59.602 69000 DONT_LIKE_THIS 439434 1631 6073982 2024-02-26 15:31:49.478 2024-02-26 15:31:49.478 3300 FEE 439142 4654 6073983 2024-02-26 15:31:49.478 2024-02-26 15:31:49.478 29700 TIP 439142 17014 6073994 2024-02-26 15:32:39.97 2024-02-26 15:32:39.97 3300 FEE 439401 628 6073995 2024-02-26 15:32:39.97 2024-02-26 15:32:39.97 29700 TIP 439401 1046 6074005 2024-02-26 15:33:11.399 2024-02-26 15:33:11.399 6600 FEE 438918 20109 6074006 2024-02-26 15:33:11.399 2024-02-26 15:33:11.399 59400 TIP 438918 7418 6074031 2024-02-26 15:35:02.691 2024-02-26 15:35:02.691 25000 FEE 439470 4128 6074032 2024-02-26 15:35:02.691 2024-02-26 15:35:02.691 225000 TIP 439470 21145 6074052 2024-02-26 15:35:51.291 2024-02-26 15:35:51.291 7700 FEE 439472 11750 6074053 2024-02-26 15:35:51.291 2024-02-26 15:35:51.291 69300 TIP 439472 18690 6074058 2024-02-26 15:36:00.565 2024-02-26 15:36:00.565 10000 FEE 439476 14080 6074067 2024-02-26 15:37:17.105 2024-02-26 15:37:17.105 1000 FEE 439478 19147 6074069 2024-02-26 15:37:21.292 2024-02-26 15:37:21.292 1000 FEE 439480 18448 6074083 2024-02-26 15:38:08.129 2024-02-26 15:38:08.129 6400 FEE 439460 9078 6074084 2024-02-26 15:38:08.129 2024-02-26 15:38:08.129 57600 TIP 439460 1617 6074113 2024-02-26 15:40:04.875 2024-02-26 15:40:04.875 1000 FEE 439477 21208 6074114 2024-02-26 15:40:04.875 2024-02-26 15:40:04.875 9000 TIP 439477 1960 6074123 2024-02-26 15:41:00.942 2024-02-26 15:41:00.942 20000 FEE 439470 20464 6074124 2024-02-26 15:41:00.942 2024-02-26 15:41:00.942 180000 TIP 439470 762 6074161 2024-02-26 15:45:16.839 2024-02-26 15:45:16.839 7700 FEE 439390 15094 6074162 2024-02-26 15:45:16.839 2024-02-26 15:45:16.839 69300 TIP 439390 9345 6074165 2024-02-26 15:45:17.541 2024-02-26 15:45:17.541 7700 FEE 439390 20655 6074166 2024-02-26 15:45:17.541 2024-02-26 15:45:17.541 69300 TIP 439390 11145 6074171 2024-02-26 15:45:17.89 2024-02-26 15:45:17.89 7700 FEE 439390 10668 6074172 2024-02-26 15:45:17.89 2024-02-26 15:45:17.89 69300 TIP 439390 5377 6074185 2024-02-26 15:45:19.786 2024-02-26 15:45:19.786 7700 FEE 439392 16348 6074186 2024-02-26 15:45:19.786 2024-02-26 15:45:19.786 69300 TIP 439392 1047 6074191 2024-02-26 15:45:28.188 2024-02-26 15:45:28.188 23100 FEE 439393 1354 6074192 2024-02-26 15:45:28.188 2024-02-26 15:45:28.188 207900 TIP 439393 9351 6074205 2024-02-26 15:45:30.912 2024-02-26 15:45:30.912 0 FEE 439504 2046 6074217 2024-02-26 15:46:34.665 2024-02-26 15:46:34.665 1000 FEE 439454 19332 6074218 2024-02-26 15:46:34.665 2024-02-26 15:46:34.665 9000 TIP 439454 6260 6074263 2024-02-26 15:48:04.798 2024-02-26 15:48:04.798 1100 FEE 439213 17690 6074264 2024-02-26 15:48:04.798 2024-02-26 15:48:04.798 9900 TIP 439213 17103 6074272 2024-02-26 15:49:01.738 2024-02-26 15:49:01.738 1000 FEE 439514 750 6074289 2024-02-26 15:49:49.283 2024-02-26 15:49:49.283 100 FEE 439421 11515 6074290 2024-02-26 15:49:49.283 2024-02-26 15:49:49.283 900 TIP 439421 11678 6074313 2024-02-26 15:50:03.713 2024-02-26 15:50:03.713 100 FEE 439505 21532 6074314 2024-02-26 15:50:03.713 2024-02-26 15:50:03.713 900 TIP 439505 21136 6074319 2024-02-26 15:50:04.254 2024-02-26 15:50:04.254 100 FEE 439505 10586 6074320 2024-02-26 15:50:04.254 2024-02-26 15:50:04.254 900 TIP 439505 5565 6074323 2024-02-26 15:50:04.811 2024-02-26 15:50:04.811 200 FEE 439505 715 6074324 2024-02-26 15:50:04.811 2024-02-26 15:50:04.811 1800 TIP 439505 17838 6074325 2024-02-26 15:50:04.968 2024-02-26 15:50:04.968 100 FEE 439505 13399 6074326 2024-02-26 15:50:04.968 2024-02-26 15:50:04.968 900 TIP 439505 9336 6074327 2024-02-26 15:50:05.098 2024-02-26 15:50:05.098 100 FEE 439505 9494 6074328 2024-02-26 15:50:05.098 2024-02-26 15:50:05.098 900 TIP 439505 21145 6074347 2024-02-26 15:50:23.248 2024-02-26 15:50:23.248 100 FEE 439494 19852 6074348 2024-02-26 15:50:23.248 2024-02-26 15:50:23.248 900 TIP 439494 1480 6074361 2024-02-26 15:50:25.001 2024-02-26 15:50:25.001 200 FEE 439494 1983 6074362 2024-02-26 15:50:25.001 2024-02-26 15:50:25.001 1800 TIP 439494 18784 6074381 2024-02-26 15:50:56.707 2024-02-26 15:50:56.707 100000 FEE 439286 21275 6074382 2024-02-26 15:50:56.707 2024-02-26 15:50:56.707 900000 TIP 439286 20674 6074387 2024-02-26 15:51:16.636 2024-02-26 15:51:16.636 1000 FEE 439300 2123 6074388 2024-02-26 15:51:16.636 2024-02-26 15:51:16.636 9000 TIP 439300 16653 6074397 2024-02-26 15:51:33.587 2024-02-26 15:51:33.587 77000 DONT_LIKE_THIS 439515 11430 6074405 2024-02-26 15:53:03.272 2024-02-26 15:53:03.272 10100 FEE 439503 16296 6074406 2024-02-26 15:53:03.272 2024-02-26 15:53:03.272 90900 TIP 439503 16230 6074412 2024-02-26 15:53:39.831 2024-02-26 15:53:39.831 100 FEE 439443 11819 6074413 2024-02-26 15:53:39.831 2024-02-26 15:53:39.831 900 TIP 439443 19909 6073935 2024-02-26 15:29:43.054 2024-02-26 15:29:43.054 100 FEE 439385 21509 6073936 2024-02-26 15:29:43.054 2024-02-26 15:29:43.054 900 TIP 439385 18994 6073973 2024-02-26 15:31:37.086 2024-02-26 15:31:37.086 3300 FEE 439295 3417 6073974 2024-02-26 15:31:37.086 2024-02-26 15:31:37.086 29700 TIP 439295 722 6073986 2024-02-26 15:32:02.537 2024-02-26 15:32:02.537 10000 FEE 439395 16839 6073987 2024-02-26 15:32:02.537 2024-02-26 15:32:02.537 90000 TIP 439395 2016 6073990 2024-02-26 15:32:37.028 2024-02-26 15:32:37.028 3300 FEE 439401 15732 6073991 2024-02-26 15:32:37.028 2024-02-26 15:32:37.028 29700 TIP 439401 15662 6074003 2024-02-26 15:33:11.36 2024-02-26 15:33:11.36 10000 FEE 439473 16336 6074004 2024-02-26 15:33:11.36 2024-02-26 15:33:11.36 90000 TIP 439473 17316 6074019 2024-02-26 15:34:36.881 2024-02-26 15:34:36.881 1000 FEE 439475 20022 6074022 2024-02-26 15:34:47.224 2024-02-26 15:34:47.224 2100 FEE 439465 10007 6074023 2024-02-26 15:34:47.224 2024-02-26 15:34:47.224 18900 TIP 439465 16230 6074048 2024-02-26 15:35:49.948 2024-02-26 15:35:49.948 1000 FEE 439472 19785 6074049 2024-02-26 15:35:49.948 2024-02-26 15:35:49.948 9000 TIP 439472 695 6074075 2024-02-26 15:37:50.816 2024-02-26 15:37:50.816 6400 FEE 439426 16665 6074076 2024-02-26 15:37:50.816 2024-02-26 15:37:50.816 57600 TIP 439426 16816 6074089 2024-02-26 15:38:22.714 2024-02-26 15:38:22.714 1000 FEE 439484 19156 6074094 2024-02-26 15:38:47.009 2024-02-26 15:38:47.009 1000 FEE 439487 19375 6074122 2024-02-26 15:40:13.872 2024-02-26 15:40:13.872 1000 FEE 439495 9362 6074130 2024-02-26 15:41:47.331 2024-02-26 15:41:47.331 27900 FEE 439472 20713 6074131 2024-02-26 15:41:47.331 2024-02-26 15:41:47.331 251100 TIP 439472 12277 6074132 2024-02-26 15:41:48.094 2024-02-26 15:41:48.094 1000 FEE 439497 780 6074141 2024-02-26 15:44:01.213 2024-02-26 15:44:01.213 1000 FEE 439500 20254 6074147 2024-02-26 15:44:46.174 2024-02-26 15:44:46.174 7700 FEE 439492 20117 6074148 2024-02-26 15:44:46.174 2024-02-26 15:44:46.174 69300 TIP 439492 7916 6074154 2024-02-26 15:45:15.235 2024-02-26 15:45:15.235 1000 FEE 439505 15719 6074189 2024-02-26 15:45:26.948 2024-02-26 15:45:26.948 15400 FEE 439393 19154 6074190 2024-02-26 15:45:26.948 2024-02-26 15:45:26.948 138600 TIP 439393 17042 6074193 2024-02-26 15:45:28.305 2024-02-26 15:45:28.305 7700 FEE 439393 15624 6074194 2024-02-26 15:45:28.305 2024-02-26 15:45:28.305 69300 TIP 439393 17064 6074213 2024-02-26 15:46:33.218 2024-02-26 15:46:33.218 1000 FEE 439483 13574 6074214 2024-02-26 15:46:33.218 2024-02-26 15:46:33.218 9000 TIP 439483 10094 6074223 2024-02-26 15:46:45.395 2024-02-26 15:46:45.395 1000 FEE 439141 16353 6074224 2024-02-26 15:46:45.395 2024-02-26 15:46:45.395 9000 TIP 439141 718 6074235 2024-02-26 15:46:55.562 2024-02-26 15:46:55.562 1000 FEE 439100 13249 6074236 2024-02-26 15:46:55.562 2024-02-26 15:46:55.562 9000 TIP 439100 5171 6074248 2024-02-26 15:47:27.56 2024-02-26 15:47:27.56 3300 FEE 439114 13599 6074249 2024-02-26 15:47:27.56 2024-02-26 15:47:27.56 29700 TIP 439114 981 6074260 2024-02-26 15:48:01.569 2024-02-26 15:48:01.569 1100 FEE 439342 20509 6074261 2024-02-26 15:48:01.569 2024-02-26 15:48:01.569 9900 TIP 439342 19992 6074285 2024-02-26 15:49:48.783 2024-02-26 15:49:48.783 100 FEE 439421 14731 6074286 2024-02-26 15:49:48.783 2024-02-26 15:49:48.783 900 TIP 439421 2077 6074353 2024-02-26 15:50:23.752 2024-02-26 15:50:23.752 100 FEE 439494 17838 6074354 2024-02-26 15:50:23.752 2024-02-26 15:50:23.752 900 TIP 439494 7389 6074355 2024-02-26 15:50:23.927 2024-02-26 15:50:23.927 100 FEE 439494 1092 6074356 2024-02-26 15:50:23.927 2024-02-26 15:50:23.927 900 TIP 439494 18460 6074369 2024-02-26 15:50:27.429 2024-02-26 15:50:27.429 100 FEE 439494 2961 6074370 2024-02-26 15:50:27.429 2024-02-26 15:50:27.429 900 TIP 439494 11698 6074414 2024-02-26 15:53:40.309 2024-02-26 15:53:40.309 100 FEE 439443 7818 6074415 2024-02-26 15:53:40.309 2024-02-26 15:53:40.309 900 TIP 439443 746 6074421 2024-02-26 15:54:10.325 2024-02-26 15:54:10.325 700 FEE 439416 18528 6074422 2024-02-26 15:54:10.325 2024-02-26 15:54:10.325 6300 TIP 439416 20745 6074449 2024-02-26 15:58:12.418 2024-02-26 15:58:12.418 5000 FEE 435046 20998 6074450 2024-02-26 15:58:12.418 2024-02-26 15:58:12.418 45000 TIP 435046 5590 6074474 2024-02-26 16:02:11.846 2024-02-26 16:02:11.846 1000 FEE 439538 836 6074508 2024-02-26 16:07:18.369 2024-02-26 16:07:18.369 3100 FEE 439537 19938 6074509 2024-02-26 16:07:18.369 2024-02-26 16:07:18.369 27900 TIP 439537 18904 6074514 2024-02-26 16:08:08.639 2024-02-26 16:08:08.639 100 FEE 439295 708 6074515 2024-02-26 16:08:08.639 2024-02-26 16:08:08.639 900 TIP 439295 929 6074532 2024-02-26 16:09:53.12 2024-02-26 16:09:53.12 1000 FEE 439553 17514 6073965 2024-02-26 15:31:28.002 2024-02-26 15:31:28.002 3300 FEE 439139 7587 6073966 2024-02-26 15:31:28.002 2024-02-26 15:31:28.002 29700 TIP 439139 20409 6073967 2024-02-26 15:31:28.177 2024-02-26 15:31:28.177 3300 FEE 439139 12819 6073968 2024-02-26 15:31:28.177 2024-02-26 15:31:28.177 29700 TIP 439139 660 6073971 2024-02-26 15:31:31.881 2024-02-26 15:31:31.881 3300 FEE 439348 4076 6073972 2024-02-26 15:31:31.881 2024-02-26 15:31:31.881 29700 TIP 439348 1552 6073984 2024-02-26 15:31:50.496 2024-02-26 15:31:50.496 3300 FEE 439142 16276 6073985 2024-02-26 15:31:50.496 2024-02-26 15:31:50.496 29700 TIP 439142 9346 6073992 2024-02-26 15:32:37.503 2024-02-26 15:32:37.503 6600 FEE 439401 1272 6073993 2024-02-26 15:32:37.503 2024-02-26 15:32:37.503 59400 TIP 439401 9337 6074000 2024-02-26 15:32:58.543 2024-02-26 15:32:58.543 800 FEE 439378 644 6074001 2024-02-26 15:32:58.543 2024-02-26 15:32:58.543 7200 TIP 439378 1692 6074020 2024-02-26 15:34:46.812 2024-02-26 15:34:46.812 1000 FEE 439100 20687 6074021 2024-02-26 15:34:46.812 2024-02-26 15:34:46.812 9000 TIP 439100 1584 6074026 2024-02-26 15:34:49.965 2024-02-26 15:34:49.965 2100 FEE 439434 19905 6074027 2024-02-26 15:34:49.965 2024-02-26 15:34:49.965 18900 TIP 439434 13927 6074030 2024-02-26 15:34:59.439 2024-02-26 15:34:59.439 0 FEE 439469 14280 6074050 2024-02-26 15:35:50.313 2024-02-26 15:35:50.313 7700 FEE 439472 998 6074051 2024-02-26 15:35:50.313 2024-02-26 15:35:50.313 69300 TIP 439472 21247 6074061 2024-02-26 15:36:36.902 2024-02-26 15:36:36.902 125000 FEE 439477 6360 6074062 2024-02-26 15:37:04.427 2024-02-26 15:37:04.427 800 FEE 439286 13587 6074063 2024-02-26 15:37:04.427 2024-02-26 15:37:04.427 7200 TIP 439286 16594 6074071 2024-02-26 15:37:35.098 2024-02-26 15:37:35.098 2100 FEE 439472 11897 6074072 2024-02-26 15:37:35.098 2024-02-26 15:37:35.098 18900 TIP 439472 21291 6074095 2024-02-26 15:38:56.012 2024-02-26 15:38:56.012 1000 FEE 439488 15200 6074098 2024-02-26 15:39:05.826 2024-02-26 15:39:05.826 1000 FEE 439425 21514 6074099 2024-02-26 15:39:05.826 2024-02-26 15:39:05.826 9000 TIP 439425 12483 6074111 2024-02-26 15:40:04.712 2024-02-26 15:40:04.712 1000 FEE 439477 1389 6074112 2024-02-26 15:40:04.712 2024-02-26 15:40:04.712 9000 TIP 439477 2196 6074126 2024-02-26 15:41:07.879 2024-02-26 15:41:07.879 0 FEE 439495 19809 6074140 2024-02-26 15:43:29.737 2024-02-26 15:43:29.737 1000 FEE 439499 19044 6074159 2024-02-26 15:45:16.77 2024-02-26 15:45:16.77 7700 FEE 439390 12245 6074160 2024-02-26 15:45:16.77 2024-02-26 15:45:16.77 69300 TIP 439390 1733 6074163 2024-02-26 15:45:17.485 2024-02-26 15:45:17.485 7700 FEE 439390 20163 6074164 2024-02-26 15:45:17.485 2024-02-26 15:45:17.485 69300 TIP 439390 861 6074173 2024-02-26 15:45:18.043 2024-02-26 15:45:18.043 7700 FEE 439390 17522 6074174 2024-02-26 15:45:18.043 2024-02-26 15:45:18.043 69300 TIP 439390 12139 6074181 2024-02-26 15:45:19.599 2024-02-26 15:45:19.599 7700 FEE 439392 17014 6074182 2024-02-26 15:45:19.599 2024-02-26 15:45:19.599 69300 TIP 439392 19924 6074206 2024-02-26 15:45:46.751 2024-02-26 15:45:46.751 1000 FEE 439506 14122 6074208 2024-02-26 15:46:16.441 2024-02-26 15:46:16.441 1100 FEE 439466 1785 6074209 2024-02-26 15:46:16.441 2024-02-26 15:46:16.441 9900 TIP 439466 4167 6074215 2024-02-26 15:46:34.509 2024-02-26 15:46:34.509 1000 FEE 439454 10849 6074216 2024-02-26 15:46:34.509 2024-02-26 15:46:34.509 9000 TIP 439454 10270 6074225 2024-02-26 15:46:54.544 2024-02-26 15:46:54.544 1000 FEE 439100 20981 6074226 2024-02-26 15:46:54.544 2024-02-26 15:46:54.544 9000 TIP 439100 13055 6074239 2024-02-26 15:47:05.249 2024-02-26 15:47:05.249 10000 FEE 439507 20979 6074241 2024-02-26 15:47:14.432 2024-02-26 15:47:14.432 3300 FEE 439190 18270 6074242 2024-02-26 15:47:14.432 2024-02-26 15:47:14.432 29700 TIP 439190 12930 6074281 2024-02-26 15:49:47.713 2024-02-26 15:49:47.713 100 FEE 439421 18265 6074282 2024-02-26 15:49:47.713 2024-02-26 15:49:47.713 900 TIP 439421 8074 6074291 2024-02-26 15:49:49.776 2024-02-26 15:49:49.776 100 FEE 439421 3461 6074292 2024-02-26 15:49:49.776 2024-02-26 15:49:49.776 900 TIP 439421 9820 6074303 2024-02-26 15:50:02.823 2024-02-26 15:50:02.823 100 FEE 439505 4474 6074304 2024-02-26 15:50:02.823 2024-02-26 15:50:02.823 900 TIP 439505 18932 6074340 2024-02-26 15:50:15.622 2024-02-26 15:50:15.622 7700 FEE 439513 6741 6074341 2024-02-26 15:50:15.622 2024-02-26 15:50:15.622 69300 TIP 439513 5112 6074363 2024-02-26 15:50:25.357 2024-02-26 15:50:25.357 200 FEE 439494 1272 6074364 2024-02-26 15:50:25.357 2024-02-26 15:50:25.357 1800 TIP 439494 2832 6074408 2024-02-26 15:53:36.299 2024-02-26 15:53:36.299 100 FEE 439443 15858 6074409 2024-02-26 15:53:36.299 2024-02-26 15:53:36.299 900 TIP 439443 9333 6074410 2024-02-26 15:53:39.13 2024-02-26 15:53:39.13 100 FEE 439443 4322 6074411 2024-02-26 15:53:39.13 2024-02-26 15:53:39.13 900 TIP 439443 1814 6074441 2024-02-26 15:57:02.432 2024-02-26 15:57:02.432 0 FEE 439528 9334 6074467 2024-02-26 16:01:53.592 2024-02-26 16:01:53.592 4000 FEE 439534 1836 6074468 2024-02-26 16:01:53.592 2024-02-26 16:01:53.592 36000 TIP 439534 11018 6074540 2024-02-26 16:10:52.794 2024-02-26 16:10:52.794 1000 FEE 439556 15594 6074560 2024-02-26 16:13:17.731 2024-02-26 16:13:17.731 21000 FEE 439463 18635 6074561 2024-02-26 16:13:17.731 2024-02-26 16:13:17.731 189000 TIP 439463 6202 6074562 2024-02-26 16:13:21.209 2024-02-26 16:13:21.209 1000 FEE 439560 11522 6074566 2024-02-26 16:13:51.712 2024-02-26 16:13:51.712 100000 FEE 439562 19193 6074589 2024-02-26 16:16:23.495 2024-02-26 16:16:23.495 1100 FEE 439297 766 6074590 2024-02-26 16:16:23.495 2024-02-26 16:16:23.495 9900 TIP 439297 18119 6074600 2024-02-26 16:16:43.094 2024-02-26 16:16:43.094 300 FEE 439212 18180 6074601 2024-02-26 16:16:43.094 2024-02-26 16:16:43.094 2700 TIP 439212 20594 6074644 2024-02-26 16:23:05.381 2024-02-26 16:23:05.381 100 FEE 439473 18705 6074645 2024-02-26 16:23:05.381 2024-02-26 16:23:05.381 900 TIP 439473 10016 6074648 2024-02-26 16:23:28.671 2024-02-26 16:23:28.671 100 FEE 439449 1836 6074649 2024-02-26 16:23:28.671 2024-02-26 16:23:28.671 900 TIP 439449 9695 6074655 2024-02-26 16:24:14.009 2024-02-26 16:24:14.009 100 FEE 439300 7992 6074656 2024-02-26 16:24:14.009 2024-02-26 16:24:14.009 900 TIP 439300 1145 6074659 2024-02-26 16:24:33.133 2024-02-26 16:24:33.133 100 FEE 439293 21249 6074660 2024-02-26 16:24:33.133 2024-02-26 16:24:33.133 900 TIP 439293 21207 6074683 2024-02-26 16:26:01.437 2024-02-26 16:26:01.437 100 FEE 439250 4238 6074684 2024-02-26 16:26:01.437 2024-02-26 16:26:01.437 900 TIP 439250 5661 6073988 2024-02-26 15:32:07.082 2024-02-26 15:32:07.082 1000 STREAM 141924 12422 6074266 2024-02-26 15:48:06.491 2024-02-26 15:48:06.491 1000 FEE 439233 20812 6074267 2024-02-26 15:48:06.491 2024-02-26 15:48:06.491 9000 TIP 439233 19546 6074274 2024-02-26 15:49:25.723 2024-02-26 15:49:25.723 0 FEE 439511 21228 6074283 2024-02-26 15:49:48.465 2024-02-26 15:49:48.465 100 FEE 439421 6741 6074284 2024-02-26 15:49:48.465 2024-02-26 15:49:48.465 900 TIP 439421 6030 6074299 2024-02-26 15:50:02.485 2024-02-26 15:50:02.485 100 FEE 439505 16270 6074300 2024-02-26 15:50:02.485 2024-02-26 15:50:02.485 900 TIP 439505 8059 6074321 2024-02-26 15:50:04.413 2024-02-26 15:50:04.413 100 FEE 439505 886 6074322 2024-02-26 15:50:04.413 2024-02-26 15:50:04.413 900 TIP 439505 20436 6074334 2024-02-26 15:50:09.223 2024-02-26 15:50:09.223 100 FEE 439505 4650 6074335 2024-02-26 15:50:09.223 2024-02-26 15:50:09.223 900 TIP 439505 4177 6074349 2024-02-26 15:50:23.408 2024-02-26 15:50:23.408 100 FEE 439494 989 6074350 2024-02-26 15:50:23.408 2024-02-26 15:50:23.408 900 TIP 439494 1960 6074373 2024-02-26 15:50:28.167 2024-02-26 15:50:28.167 100 FEE 439494 20525 6074374 2024-02-26 15:50:28.167 2024-02-26 15:50:28.167 900 TIP 439494 13348 6074379 2024-02-26 15:50:36.817 2024-02-26 15:50:36.817 100000 FEE 439518 1286 6074416 2024-02-26 15:53:47.223 2024-02-26 15:53:47.223 1000 FEE 439523 19471 6074423 2024-02-26 15:54:39.076 2024-02-26 15:54:39.076 2100 FEE 439518 17392 6074424 2024-02-26 15:54:39.076 2024-02-26 15:54:39.076 18900 TIP 439518 1198 6074427 2024-02-26 15:54:49.547 2024-02-26 15:54:49.547 1000 FEE 439525 19132 6074429 2024-02-26 15:55:08.469 2024-02-26 15:55:08.469 300 FEE 439340 18897 6074430 2024-02-26 15:55:08.469 2024-02-26 15:55:08.469 2700 TIP 439340 6555 6074442 2024-02-26 15:57:03.585 2024-02-26 15:57:03.585 1000 FEE 439529 12946 6074444 2024-02-26 15:57:19.579 2024-02-26 15:57:19.579 0 FEE 439528 2525 6074457 2024-02-26 16:00:04.464 2024-02-26 16:00:04.464 100000 FEE 439532 20502 6074459 2024-02-26 16:00:31.597 2024-02-26 16:00:31.597 1000 FEE 439534 20812 6074466 2024-02-26 16:01:52.041 2024-02-26 16:01:52.041 1000 FEE 439536 21051 6074500 2024-02-26 16:04:43.4 2024-02-26 16:04:43.4 100000 FEE 439545 9183 6074503 2024-02-26 16:05:40.756 2024-02-26 16:05:40.756 10000 FEE 439547 19030 6074504 2024-02-26 16:05:54.19 2024-02-26 16:05:54.19 77000 DONT_LIKE_THIS 439544 5359 6074516 2024-02-26 16:08:09.004 2024-02-26 16:08:09.004 100 FEE 439295 18727 6074517 2024-02-26 16:08:09.004 2024-02-26 16:08:09.004 900 TIP 439295 11873 6074522 2024-02-26 16:08:09.586 2024-02-26 16:08:09.586 100 FEE 439295 20560 6074523 2024-02-26 16:08:09.586 2024-02-26 16:08:09.586 900 TIP 439295 15925 6074533 2024-02-26 16:10:03.509 2024-02-26 16:10:03.509 300 FEE 438946 866 6074534 2024-02-26 16:10:03.509 2024-02-26 16:10:03.509 2700 TIP 438946 13198 6074557 2024-02-26 16:12:55.742 2024-02-26 16:12:55.742 1000 FEE 439451 21578 6074558 2024-02-26 16:12:55.742 2024-02-26 16:12:55.742 9000 TIP 439451 21048 6074572 2024-02-26 16:14:20.366 2024-02-26 16:14:20.366 0 FEE 439562 1480 6074585 2024-02-26 16:15:57.864 2024-02-26 16:15:57.864 1000 FEE 439479 16229 6074586 2024-02-26 16:15:57.864 2024-02-26 16:15:57.864 9000 TIP 439479 19535 6074611 2024-02-26 16:17:10.344 2024-02-26 16:17:10.344 1000 FEE 437031 13587 6074612 2024-02-26 16:17:10.344 2024-02-26 16:17:10.344 9000 TIP 437031 2703 6074637 2024-02-26 16:22:36.209 2024-02-26 16:22:36.209 100 FEE 439546 12561 6074638 2024-02-26 16:22:36.209 2024-02-26 16:22:36.209 900 TIP 439546 9833 6074661 2024-02-26 16:24:41.963 2024-02-26 16:24:41.963 100 FEE 439291 8360 6074662 2024-02-26 16:24:41.963 2024-02-26 16:24:41.963 900 TIP 439291 618 6074679 2024-02-26 16:25:51.652 2024-02-26 16:25:51.652 1000 FEE 439532 4388 6074680 2024-02-26 16:25:51.652 2024-02-26 16:25:51.652 9000 TIP 439532 16329 6074688 2024-02-26 16:26:29.086 2024-02-26 16:26:29.086 1000 FEE 439573 11158 6074696 2024-02-26 16:27:36.77 2024-02-26 16:27:36.77 1000 FEE 439477 18494 6074697 2024-02-26 16:27:36.77 2024-02-26 16:27:36.77 9000 TIP 439477 20143 6074703 2024-02-26 16:28:02.523 2024-02-26 16:28:02.523 1000 FEE 439576 2098 6074719 2024-02-26 16:29:20.209 2024-02-26 16:29:20.209 1000 FEE 439372 5522 6074720 2024-02-26 16:29:20.209 2024-02-26 16:29:20.209 9000 TIP 439372 21541 6074730 2024-02-26 16:30:42.731 2024-02-26 16:30:42.731 4000 FEE 439562 12356 6074731 2024-02-26 16:30:42.731 2024-02-26 16:30:42.731 36000 TIP 439562 11075 6074750 2024-02-26 16:33:51.338 2024-02-26 16:33:51.338 500 FEE 439333 18660 6074751 2024-02-26 16:33:51.338 2024-02-26 16:33:51.338 4500 TIP 439333 976 6074757 2024-02-26 16:34:27.769 2024-02-26 16:34:27.769 10000 FEE 439435 18309 6074758 2024-02-26 16:34:27.769 2024-02-26 16:34:27.769 90000 TIP 439435 1772 6074764 2024-02-26 16:35:08.602 2024-02-26 16:35:08.602 1000 FEE 439580 777 6074766 2024-02-26 16:35:14.479 2024-02-26 16:35:14.479 125000 FEE 439582 631 6074767 2024-02-26 16:35:19.37 2024-02-26 16:35:19.37 0 FEE 439574 1647 6074775 2024-02-26 16:36:31.284 2024-02-26 16:36:31.284 4000 FEE 439354 13587 6074776 2024-02-26 16:36:31.284 2024-02-26 16:36:31.284 36000 TIP 439354 1692 6074298 2024-02-26 15:50:02.327 2024-02-26 15:50:02.327 900 TIP 439505 8289 6074305 2024-02-26 15:50:03.022 2024-02-26 15:50:03.022 100 FEE 439505 19967 6074306 2024-02-26 15:50:03.022 2024-02-26 15:50:03.022 900 TIP 439505 17541 6074309 2024-02-26 15:50:03.351 2024-02-26 15:50:03.351 100 FEE 439505 18119 6074310 2024-02-26 15:50:03.351 2024-02-26 15:50:03.351 900 TIP 439505 11621 6074315 2024-02-26 15:50:03.864 2024-02-26 15:50:03.864 100 FEE 439505 624 6074316 2024-02-26 15:50:03.864 2024-02-26 15:50:03.864 900 TIP 439505 987 6074317 2024-02-26 15:50:04.085 2024-02-26 15:50:04.085 100 FEE 439505 2188 6074318 2024-02-26 15:50:04.085 2024-02-26 15:50:04.085 900 TIP 439505 16988 6074330 2024-02-26 15:50:06.613 2024-02-26 15:50:06.613 6900 FEE 439513 17226 6074331 2024-02-26 15:50:06.613 2024-02-26 15:50:06.613 62100 TIP 439513 10979 6074336 2024-02-26 15:50:10.533 2024-02-26 15:50:10.533 100 FEE 439505 16939 6074337 2024-02-26 15:50:10.533 2024-02-26 15:50:10.533 900 TIP 439505 21269 6074338 2024-02-26 15:50:14.735 2024-02-26 15:50:14.735 300 FEE 438786 4768 6074339 2024-02-26 15:50:14.735 2024-02-26 15:50:14.735 2700 TIP 438786 680 6074342 2024-02-26 15:50:21.3 2024-02-26 15:50:21.3 10000 FEE 439517 19735 6074343 2024-02-26 15:50:22.908 2024-02-26 15:50:22.908 100 FEE 439494 726 6074344 2024-02-26 15:50:22.908 2024-02-26 15:50:22.908 900 TIP 439494 15115 6074351 2024-02-26 15:50:23.564 2024-02-26 15:50:23.564 100 FEE 439494 768 6074352 2024-02-26 15:50:23.564 2024-02-26 15:50:23.564 900 TIP 439494 20133 6074357 2024-02-26 15:50:24.067 2024-02-26 15:50:24.067 100 FEE 439494 21247 6074358 2024-02-26 15:50:24.067 2024-02-26 15:50:24.067 900 TIP 439494 20180 6074367 2024-02-26 15:50:26.686 2024-02-26 15:50:26.686 100 FEE 439494 18837 6074368 2024-02-26 15:50:26.686 2024-02-26 15:50:26.686 900 TIP 439494 12261 6074389 2024-02-26 15:51:17.353 2024-02-26 15:51:17.353 1000 FEE 439300 10530 6074390 2024-02-26 15:51:17.353 2024-02-26 15:51:17.353 9000 TIP 439300 3400 6074403 2024-02-26 15:52:55.892 2024-02-26 15:52:55.892 1100 FEE 439292 7553 6074404 2024-02-26 15:52:55.892 2024-02-26 15:52:55.892 9900 TIP 439292 19259 6074419 2024-02-26 15:54:09.214 2024-02-26 15:54:09.214 2100 FEE 438886 5961 6074420 2024-02-26 15:54:09.214 2024-02-26 15:54:09.214 18900 TIP 438886 19581 6074431 2024-02-26 15:55:12.916 2024-02-26 15:55:12.916 300 FEE 438979 10934 6074432 2024-02-26 15:55:12.916 2024-02-26 15:55:12.916 2700 TIP 438979 20218 6074435 2024-02-26 15:55:33.089 2024-02-26 15:55:33.089 1000 FEE 439526 21314 6074438 2024-02-26 15:56:42.613 2024-02-26 15:56:42.613 1000 FEE 439528 19622 6074463 2024-02-26 16:01:04.729 2024-02-26 16:01:04.729 2100 FEE 439390 1751 6074464 2024-02-26 16:01:04.729 2024-02-26 16:01:04.729 18900 TIP 439390 19378 6074496 2024-02-26 16:04:33.235 2024-02-26 16:04:33.235 1000 FEE 439544 16532 6074499 2024-02-26 16:04:39.619 2024-02-26 16:04:39.619 0 FEE 439544 15474 6074512 2024-02-26 16:07:36.654 2024-02-26 16:07:36.654 1000 FEE 439549 2963 6074518 2024-02-26 16:08:09.181 2024-02-26 16:08:09.181 100 FEE 439295 20892 6074519 2024-02-26 16:08:09.181 2024-02-26 16:08:09.181 900 TIP 439295 19902 6074536 2024-02-26 16:10:24.875 2024-02-26 16:10:24.875 100000 FEE 439554 11430 6074537 2024-02-26 16:10:47.916 2024-02-26 16:10:47.916 1000 FEE 439555 20585 6074541 2024-02-26 16:11:00.762 2024-02-26 16:11:00.762 2100 FEE 439553 21201 6074542 2024-02-26 16:11:00.762 2024-02-26 16:11:00.762 18900 TIP 439553 15271 6074545 2024-02-26 16:11:15.279 2024-02-26 16:11:15.279 2100 FEE 439295 20023 6074546 2024-02-26 16:11:15.279 2024-02-26 16:11:15.279 18900 TIP 439295 18264 6074553 2024-02-26 16:12:29.455 2024-02-26 16:12:29.455 2100 FEE 438974 20525 6074554 2024-02-26 16:12:29.455 2024-02-26 16:12:29.455 18900 TIP 438974 16229 6074591 2024-02-26 16:16:28.281 2024-02-26 16:16:28.281 1000 FEE 439460 21556 6074592 2024-02-26 16:16:28.281 2024-02-26 16:16:28.281 9000 TIP 439460 20424 6074602 2024-02-26 16:16:47.654 2024-02-26 16:16:47.654 1000 FEE 439518 13055 6074603 2024-02-26 16:16:47.654 2024-02-26 16:16:47.654 9000 TIP 439518 17030 6074620 2024-02-26 16:18:16.072 2024-02-26 16:18:16.072 1700 FEE 439558 925 6074621 2024-02-26 16:18:16.072 2024-02-26 16:18:16.072 15300 TIP 439558 15266 6074627 2024-02-26 16:19:05.931 2024-02-26 16:19:05.931 77000 DONT_LIKE_THIS 439564 18412 6074629 2024-02-26 16:19:42.16 2024-02-26 16:19:42.16 1000 FEE 439451 21437 6074630 2024-02-26 16:19:42.16 2024-02-26 16:19:42.16 9000 TIP 439451 14169 6074654 2024-02-26 16:24:06.284 2024-02-26 16:24:06.284 1000 FEE 439568 798 6074667 2024-02-26 16:25:32.952 2024-02-26 16:25:32.952 10000 FEE 439548 13987 6074668 2024-02-26 16:25:32.952 2024-02-26 16:25:32.952 90000 TIP 439548 21014 6074674 2024-02-26 16:25:46.52 2024-02-26 16:25:46.52 1000 FEE 439571 10728 6074681 2024-02-26 16:25:52.096 2024-02-26 16:25:52.096 1000 FEE 439532 21455 6074682 2024-02-26 16:25:52.096 2024-02-26 16:25:52.096 9000 TIP 439532 14074 6074706 2024-02-26 16:28:07.2 2024-02-26 16:28:07.2 100 FEE 439199 20251 6074707 2024-02-26 16:28:07.2 2024-02-26 16:28:07.2 900 TIP 439199 19842 6074713 2024-02-26 16:29:13.944 2024-02-26 16:29:13.944 1000 FEE 439358 21344 6074714 2024-02-26 16:29:13.944 2024-02-26 16:29:13.944 9000 TIP 439358 21238 6074765 2024-02-26 16:35:11.492 2024-02-26 16:35:11.492 1000 FEE 439581 7587 6074768 2024-02-26 16:35:25.629 2024-02-26 16:35:25.629 1000 FEE 439583 9552 6074769 2024-02-26 16:35:59.646 2024-02-26 16:35:59.646 1000 FEE 439584 14258 6074773 2024-02-26 16:36:22.84 2024-02-26 16:36:22.84 4000 FEE 439453 886 6074774 2024-02-26 16:36:22.84 2024-02-26 16:36:22.84 36000 TIP 439453 14774 6074806 2024-02-26 16:38:20.73 2024-02-26 16:38:20.73 1100 FEE 439443 16704 6074807 2024-02-26 16:38:20.73 2024-02-26 16:38:20.73 9900 TIP 439443 16556 6074808 2024-02-26 16:38:20.874 2024-02-26 16:38:20.874 1100 FEE 439443 2437 6074809 2024-02-26 16:38:20.874 2024-02-26 16:38:20.874 9900 TIP 439443 15367 6074818 2024-02-26 16:38:22.021 2024-02-26 16:38:22.021 1100 FEE 439513 16282 6074819 2024-02-26 16:38:22.021 2024-02-26 16:38:22.021 9900 TIP 439513 17183 6074838 2024-02-26 16:38:24.415 2024-02-26 16:38:24.415 1100 FEE 439390 12265 6074839 2024-02-26 16:38:24.415 2024-02-26 16:38:24.415 9900 TIP 439390 5565 6074849 2024-02-26 16:39:24.791 2024-02-26 16:39:24.791 1100 FEE 438583 20811 6074850 2024-02-26 16:39:24.791 2024-02-26 16:39:24.791 9900 TIP 438583 2722 6074864 2024-02-26 16:39:26.009 2024-02-26 16:39:26.009 1100 FEE 438583 16447 6074865 2024-02-26 16:39:26.009 2024-02-26 16:39:26.009 9900 TIP 438583 18877 6074866 2024-02-26 16:39:26.132 2024-02-26 16:39:26.132 1100 FEE 438583 2338 6074867 2024-02-26 16:39:26.132 2024-02-26 16:39:26.132 9900 TIP 438583 2176 6074889 2024-02-26 16:39:55.048 2024-02-26 16:39:55.048 1100 FEE 429724 19121 6074890 2024-02-26 16:39:55.048 2024-02-26 16:39:55.048 9900 TIP 429724 13987 6074896 2024-02-26 16:40:54.791 2024-02-26 16:40:54.791 1000 FEE 439481 20701 6074897 2024-02-26 16:40:54.791 2024-02-26 16:40:54.791 9000 TIP 439481 880 6074900 2024-02-26 16:40:59.296 2024-02-26 16:40:59.296 1000 FEE 439592 16542 6074932 2024-02-26 16:43:41.868 2024-02-26 16:43:41.868 1100 FEE 429724 17064 6074933 2024-02-26 16:43:41.868 2024-02-26 16:43:41.868 9900 TIP 429724 20180 6074944 2024-02-26 16:43:42.881 2024-02-26 16:43:42.881 1100 FEE 429724 16633 6074945 2024-02-26 16:43:42.881 2024-02-26 16:43:42.881 9900 TIP 429724 19837 6074989 2024-02-26 16:52:28.821 2024-02-26 16:52:28.821 1000 FEE 439605 14381 6074990 2024-02-26 16:52:30.675 2024-02-26 16:52:30.675 2100 FEE 439315 19929 6074991 2024-02-26 16:52:30.675 2024-02-26 16:52:30.675 18900 TIP 439315 19500 6074994 2024-02-26 16:54:12.573 2024-02-26 16:54:12.573 1000 FEE 439606 2123 6075000 2024-02-26 16:55:06.486 2024-02-26 16:55:06.486 1000 FEE 436197 21540 6075001 2024-02-26 16:55:06.486 2024-02-26 16:55:06.486 9000 TIP 436197 9341 6075005 2024-02-26 16:55:44.599 2024-02-26 16:55:44.599 3300 FEE 438935 963 6075006 2024-02-26 16:55:44.599 2024-02-26 16:55:44.599 29700 TIP 438935 18231 6075039 2024-02-26 16:56:17.5 2024-02-26 16:56:17.5 1000 FEE 439591 19662 6075040 2024-02-26 16:56:17.5 2024-02-26 16:56:17.5 9000 TIP 439591 21061 6074425 2024-02-26 15:54:45.433 2024-02-26 15:54:45.433 2100 FEE 439513 20412 6074426 2024-02-26 15:54:45.433 2024-02-26 15:54:45.433 18900 TIP 439513 11590 6074445 2024-02-26 15:57:33.963 2024-02-26 15:57:33.963 300 FEE 436230 18336 6074446 2024-02-26 15:57:33.963 2024-02-26 15:57:33.963 2700 TIP 436230 12516 6074454 2024-02-26 15:59:05.135 2024-02-26 15:59:05.135 1000 FEE 439530 1726 6074475 2024-02-26 16:02:12.977 2024-02-26 16:02:12.977 1000 FEE 439539 20687 6074478 2024-02-26 16:02:20.274 2024-02-26 16:02:20.274 2100 FEE 439506 3360 6074479 2024-02-26 16:02:20.274 2024-02-26 16:02:20.274 18900 TIP 439506 20424 6074486 2024-02-26 16:03:23.516 2024-02-26 16:03:23.516 1000 FEE 439541 10862 6074490 2024-02-26 16:03:50.819 2024-02-26 16:03:50.819 1000 FEE 439470 21247 6074491 2024-02-26 16:03:50.819 2024-02-26 16:03:50.819 9000 TIP 439470 5703 6074520 2024-02-26 16:08:09.391 2024-02-26 16:08:09.391 100 FEE 439295 15336 6074521 2024-02-26 16:08:09.391 2024-02-26 16:08:09.391 900 TIP 439295 4798 6074552 2024-02-26 16:12:29.147 2024-02-26 16:12:29.147 1000 FEE 439559 19639 6074555 2024-02-26 16:12:32.525 2024-02-26 16:12:32.525 2100 FEE 439513 5852 6074556 2024-02-26 16:12:32.525 2024-02-26 16:12:32.525 18900 TIP 439513 12139 6074563 2024-02-26 16:13:44.957 2024-02-26 16:13:44.957 1000 FEE 439561 19557 6074577 2024-02-26 16:15:22.751 2024-02-26 16:15:22.751 100 FEE 439100 18608 6074578 2024-02-26 16:15:22.751 2024-02-26 16:15:22.751 900 TIP 439100 19909 6074597 2024-02-26 16:16:32.401 2024-02-26 16:16:32.401 1000 FEE 439414 15386 6074598 2024-02-26 16:16:32.401 2024-02-26 16:16:32.401 9000 TIP 439414 4079 6074624 2024-02-26 16:18:56.73 2024-02-26 16:18:56.73 2500 FEE 439130 18008 6074625 2024-02-26 16:18:56.73 2024-02-26 16:18:56.73 22500 TIP 439130 20924 6074663 2024-02-26 16:24:51.826 2024-02-26 16:24:51.826 1000 FEE 439569 12289 6074669 2024-02-26 16:25:40.341 2024-02-26 16:25:40.341 100 FEE 439261 17535 6074670 2024-02-26 16:25:40.341 2024-02-26 16:25:40.341 900 TIP 439261 9307 6074673 2024-02-26 16:25:43.348 2024-02-26 16:25:43.348 10000 FEE 439570 18199 6074698 2024-02-26 16:27:37.395 2024-02-26 16:27:37.395 1000 FEE 439477 19639 6074699 2024-02-26 16:27:37.395 2024-02-26 16:27:37.395 9000 TIP 439477 2338 6074704 2024-02-26 16:28:03.849 2024-02-26 16:28:03.849 2000 FEE 439489 15697 6074705 2024-02-26 16:28:03.849 2024-02-26 16:28:03.849 18000 TIP 439489 11430 6074710 2024-02-26 16:28:51.94 2024-02-26 16:28:51.94 10000 FEE 439443 1985 6074711 2024-02-26 16:28:51.94 2024-02-26 16:28:51.94 90000 TIP 439443 15728 6074715 2024-02-26 16:29:19.423 2024-02-26 16:29:19.423 1000 FEE 439372 21532 6074716 2024-02-26 16:29:19.423 2024-02-26 16:29:19.423 9000 TIP 439372 15271 6074726 2024-02-26 16:30:37.501 2024-02-26 16:30:37.501 4000 FEE 439390 10060 6074727 2024-02-26 16:30:37.501 2024-02-26 16:30:37.501 36000 TIP 439390 14503 6074728 2024-02-26 16:30:40.733 2024-02-26 16:30:40.733 4000 FEE 439422 1596 6074729 2024-02-26 16:30:40.733 2024-02-26 16:30:40.733 36000 TIP 439422 10060 6074744 2024-02-26 16:32:29.632 2024-02-26 16:32:29.632 1000 FEE 439475 13246 6074745 2024-02-26 16:32:29.632 2024-02-26 16:32:29.632 9000 TIP 439475 19446 6074759 2024-02-26 16:34:29.18 2024-02-26 16:34:29.18 10000 FEE 439443 19449 6074760 2024-02-26 16:34:29.18 2024-02-26 16:34:29.18 90000 TIP 439443 11523 6074794 2024-02-26 16:38:18.717 2024-02-26 16:38:18.717 1100 FEE 439315 11516 6074795 2024-02-26 16:38:18.717 2024-02-26 16:38:18.717 9900 TIP 439315 12774 6074834 2024-02-26 16:38:24.158 2024-02-26 16:38:24.158 1100 FEE 439390 4819 6074835 2024-02-26 16:38:24.158 2024-02-26 16:38:24.158 9900 TIP 439390 21281 6074845 2024-02-26 16:39:08.101 2024-02-26 16:39:08.101 1000 FEE 439587 21514 6074847 2024-02-26 16:39:24.612 2024-02-26 16:39:24.612 1100 FEE 438583 12921 6074848 2024-02-26 16:39:24.612 2024-02-26 16:39:24.612 9900 TIP 438583 18865 6074852 2024-02-26 16:39:24.985 2024-02-26 16:39:24.985 2200 FEE 438583 18583 6074853 2024-02-26 16:39:24.985 2024-02-26 16:39:24.985 19800 TIP 438583 2285 6074862 2024-02-26 16:39:25.889 2024-02-26 16:39:25.889 1100 FEE 438583 7558 6074863 2024-02-26 16:39:25.889 2024-02-26 16:39:25.889 9900 TIP 438583 7891 6074870 2024-02-26 16:39:41.134 2024-02-26 16:39:41.134 1000 FEE 439298 20180 6074871 2024-02-26 16:39:41.134 2024-02-26 16:39:41.134 9000 TIP 439298 7558 6074877 2024-02-26 16:39:54.136 2024-02-26 16:39:54.136 1100 FEE 429724 20430 6074878 2024-02-26 16:39:54.136 2024-02-26 16:39:54.136 9900 TIP 429724 19976 6074892 2024-02-26 16:40:07.033 2024-02-26 16:40:07.033 4000 FEE 439590 14213 6074893 2024-02-26 16:40:07.033 2024-02-26 16:40:07.033 36000 TIP 439590 18815 6074894 2024-02-26 16:40:21.54 2024-02-26 16:40:21.54 10000 FEE 439591 20479 6074902 2024-02-26 16:41:06.154 2024-02-26 16:41:06.154 100000 FEE 439593 7583 6074918 2024-02-26 16:43:41.038 2024-02-26 16:43:41.038 1100 FEE 429724 19660 6074919 2024-02-26 16:43:41.038 2024-02-26 16:43:41.038 9900 TIP 429724 716 6074922 2024-02-26 16:43:41.261 2024-02-26 16:43:41.261 1100 FEE 429724 20162 6074923 2024-02-26 16:43:41.261 2024-02-26 16:43:41.261 9900 TIP 429724 989 6074948 2024-02-26 16:43:43.273 2024-02-26 16:43:43.273 2200 FEE 429724 14255 6074949 2024-02-26 16:43:43.273 2024-02-26 16:43:43.273 19800 TIP 429724 15890 6074950 2024-02-26 16:43:43.435 2024-02-26 16:43:43.435 1100 FEE 429724 18675 6074951 2024-02-26 16:43:43.435 2024-02-26 16:43:43.435 9900 TIP 429724 21207 6074958 2024-02-26 16:47:03.268 2024-02-26 16:47:03.268 1600 FEE 439390 10270 6074959 2024-02-26 16:47:03.268 2024-02-26 16:47:03.268 14400 TIP 439390 20109 6074981 2024-02-26 16:50:11.845 2024-02-26 16:50:11.845 21000 FEE 439601 18225 6075002 2024-02-26 16:55:09.387 2024-02-26 16:55:09.387 3300 FEE 439393 16942 6075003 2024-02-26 16:55:09.387 2024-02-26 16:55:09.387 29700 TIP 439393 1605 6075024 2024-02-26 16:55:52.73 2024-02-26 16:55:52.73 7700 FEE 439315 9177 6075025 2024-02-26 16:55:52.73 2024-02-26 16:55:52.73 69300 TIP 439315 18476 6075032 2024-02-26 16:55:53.589 2024-02-26 16:55:53.589 7700 FEE 439315 8541 6075033 2024-02-26 16:55:53.589 2024-02-26 16:55:53.589 69300 TIP 439315 18743 6075051 2024-02-26 16:57:07.239 2024-02-26 16:57:07.239 1000 FEE 438718 3371 6075052 2024-02-26 16:57:07.239 2024-02-26 16:57:07.239 9000 TIP 438718 895 6075066 2024-02-26 16:57:16.284 2024-02-26 16:57:16.284 1000 FEE 428869 16879 6075067 2024-02-26 16:57:16.284 2024-02-26 16:57:16.284 9000 TIP 428869 17552 6075100 2024-02-26 16:58:12.245 2024-02-26 16:58:12.245 98000 FEE 439616 20509 6075105 2024-02-26 16:58:38.495 2024-02-26 16:58:38.495 10000 FEE 436249 18842 6075106 2024-02-26 16:58:38.495 2024-02-26 16:58:38.495 90000 TIP 436249 16194 6075118 2024-02-26 17:00:04.745 2024-02-26 17:00:04.745 100000 FEE 439619 11714 6075125 2024-02-26 17:01:16.972 2024-02-26 17:01:16.972 1000 FEE 439622 15549 6075138 2024-02-26 17:02:20.93 2024-02-26 17:02:20.93 7700 FEE 439586 3213 6075139 2024-02-26 17:02:20.93 2024-02-26 17:02:20.93 69300 TIP 439586 19138 6075144 2024-02-26 17:02:21.81 2024-02-26 17:02:21.81 7700 FEE 439586 798 6075145 2024-02-26 17:02:21.81 2024-02-26 17:02:21.81 69300 TIP 439586 14449 6075146 2024-02-26 17:02:21.972 2024-02-26 17:02:21.972 7700 FEE 439586 2322 6075147 2024-02-26 17:02:21.972 2024-02-26 17:02:21.972 69300 TIP 439586 12057 6075162 2024-02-26 17:02:24.254 2024-02-26 17:02:24.254 7700 FEE 439586 954 6075163 2024-02-26 17:02:24.254 2024-02-26 17:02:24.254 69300 TIP 439586 21453 6075164 2024-02-26 17:02:28.445 2024-02-26 17:02:28.445 0 FEE 439623 17722 6074447 2024-02-26 15:58:03.997 2024-02-26 15:58:03.997 1000 STREAM 141924 704 6074456 2024-02-26 16:00:04.004 2024-02-26 16:00:04.004 1000 STREAM 141924 1428 6074462 2024-02-26 16:01:04.012 2024-02-26 16:01:04.012 1000 STREAM 141924 27 6074473 2024-02-26 16:02:04.008 2024-02-26 16:02:04.008 1000 STREAM 141924 5904 6074481 2024-02-26 16:03:04.012 2024-02-26 16:03:04.012 1000 STREAM 141924 4415 6074493 2024-02-26 16:04:04.013 2024-02-26 16:04:04.013 1000 STREAM 141924 6191 6074501 2024-02-26 16:05:04.02 2024-02-26 16:05:04.02 1000 STREAM 141924 15052 6074513 2024-02-26 16:08:06.028 2024-02-26 16:08:06.028 1000 STREAM 141924 16004 6074531 2024-02-26 16:09:06.04 2024-02-26 16:09:06.04 1000 STREAM 141924 19132 6074633 2024-02-26 16:20:06.135 2024-02-26 16:20:06.135 1000 STREAM 141924 18005 6074702 2024-02-26 16:28:02.172 2024-02-26 16:28:02.172 1000 STREAM 141924 19174 6074746 2024-02-26 16:33:02.172 2024-02-26 16:33:02.172 1000 STREAM 141924 21036 6074781 2024-02-26 16:37:02.207 2024-02-26 16:37:02.207 1000 STREAM 141924 769 6074483 2024-02-26 16:03:16.83 2024-02-26 16:03:16.83 45000 TIP 439435 15103 6074484 2024-02-26 16:03:17.488 2024-02-26 16:03:17.488 5000 FEE 439453 807 6074485 2024-02-26 16:03:17.488 2024-02-26 16:03:17.488 45000 TIP 439453 1319 6074488 2024-02-26 16:03:46.871 2024-02-26 16:03:46.871 1000 FEE 293063 19785 6074489 2024-02-26 16:03:46.871 2024-02-26 16:03:46.871 9000 TIP 293063 2039 6074502 2024-02-26 16:05:17.856 2024-02-26 16:05:17.856 1000 FEE 439546 1505 6074524 2024-02-26 16:08:09.79 2024-02-26 16:08:09.79 100 FEE 439295 5725 6074525 2024-02-26 16:08:09.79 2024-02-26 16:08:09.79 900 TIP 439295 14168 6074527 2024-02-26 16:08:52.519 2024-02-26 16:08:52.519 1000 FEE 439551 4415 6074538 2024-02-26 16:10:52.767 2024-02-26 16:10:52.767 1000 FEE 439432 19524 6074539 2024-02-26 16:10:52.767 2024-02-26 16:10:52.767 9000 TIP 439432 739 6074573 2024-02-26 16:14:25.14 2024-02-26 16:14:25.14 1000 FEE 439563 16965 6074599 2024-02-26 16:16:34.899 2024-02-26 16:16:34.899 0 FEE 439562 20646 6074604 2024-02-26 16:17:03.331 2024-02-26 16:17:03.331 1000 FEE 439285 20108 6074605 2024-02-26 16:17:03.331 2024-02-26 16:17:03.331 9000 TIP 439285 16410 6074615 2024-02-26 16:17:15.982 2024-02-26 16:17:15.982 1000 FEE 436015 8569 6074616 2024-02-26 16:17:15.982 2024-02-26 16:17:15.982 9000 TIP 436015 21320 6074622 2024-02-26 16:18:53.348 2024-02-26 16:18:53.348 2500 FEE 439130 21040 6074623 2024-02-26 16:18:53.348 2024-02-26 16:18:53.348 22500 TIP 439130 20326 6074636 2024-02-26 16:22:14.072 2024-02-26 16:22:14.072 11000 FEE 439566 1244 6074650 2024-02-26 16:23:49.617 2024-02-26 16:23:49.617 1000 FEE 439567 11789 6074657 2024-02-26 16:24:26.537 2024-02-26 16:24:26.537 100 FEE 439294 20841 6074658 2024-02-26 16:24:26.537 2024-02-26 16:24:26.537 900 TIP 439294 913 6074687 2024-02-26 16:26:08.707 2024-02-26 16:26:08.707 1000 FEE 439572 13327 6074721 2024-02-26 16:29:39.332 2024-02-26 16:29:39.332 500 FEE 439473 9356 6074722 2024-02-26 16:29:39.332 2024-02-26 16:29:39.332 4500 TIP 439473 8059 6074748 2024-02-26 16:33:29.52 2024-02-26 16:33:29.52 2100 FEE 439559 20182 6074749 2024-02-26 16:33:29.52 2024-02-26 16:33:29.52 18900 TIP 439559 12951 6074790 2024-02-26 16:38:18.49 2024-02-26 16:38:18.49 1100 FEE 439315 21239 6074791 2024-02-26 16:38:18.49 2024-02-26 16:38:18.49 9900 TIP 439315 14650 6074824 2024-02-26 16:38:23.866 2024-02-26 16:38:23.866 1100 FEE 439286 18635 6074825 2024-02-26 16:38:23.866 2024-02-26 16:38:23.866 9900 TIP 439286 1195 6074826 2024-02-26 16:38:23.875 2024-02-26 16:38:23.875 1100 FEE 439286 18116 6074827 2024-02-26 16:38:23.875 2024-02-26 16:38:23.875 9900 TIP 439286 4798 6074828 2024-02-26 16:38:23.904 2024-02-26 16:38:23.904 1100 FEE 439390 14650 6074829 2024-02-26 16:38:23.904 2024-02-26 16:38:23.904 9900 TIP 439390 18956 6074881 2024-02-26 16:39:54.405 2024-02-26 16:39:54.405 1100 FEE 429724 7558 6074882 2024-02-26 16:39:54.405 2024-02-26 16:39:54.405 9900 TIP 429724 18351 6074887 2024-02-26 16:39:54.792 2024-02-26 16:39:54.792 1100 FEE 429724 3353 6074888 2024-02-26 16:39:54.792 2024-02-26 16:39:54.792 9900 TIP 429724 14909 6074908 2024-02-26 16:42:06.156 2024-02-26 16:42:06.156 1000 FEE 439594 2528 6074909 2024-02-26 16:42:14.003 2024-02-26 16:42:14.003 1000 FEE 439595 6149 6074915 2024-02-26 16:43:38.245 2024-02-26 16:43:38.245 1000 FEE 439596 18368 6074926 2024-02-26 16:43:41.492 2024-02-26 16:43:41.492 1100 FEE 429724 15697 6074927 2024-02-26 16:43:41.492 2024-02-26 16:43:41.492 9900 TIP 429724 1092 6074962 2024-02-26 16:47:19.687 2024-02-26 16:47:19.687 1000 FEE 439599 19633 6074963 2024-02-26 16:47:19.733 2024-02-26 16:47:19.733 0 FEE 439597 21387 6075008 2024-02-26 16:55:51.333 2024-02-26 16:55:51.333 7700 FEE 439315 10393 6075009 2024-02-26 16:55:51.333 2024-02-26 16:55:51.333 69300 TIP 439315 19105 6075010 2024-02-26 16:55:51.492 2024-02-26 16:55:51.492 7700 FEE 439315 20619 6075011 2024-02-26 16:55:51.492 2024-02-26 16:55:51.492 69300 TIP 439315 2176 6075022 2024-02-26 16:55:52.532 2024-02-26 16:55:52.532 7700 FEE 439315 19193 6075023 2024-02-26 16:55:52.532 2024-02-26 16:55:52.532 69300 TIP 439315 21453 6075048 2024-02-26 16:56:57.54 2024-02-26 16:56:57.54 4000 FEE 439598 1012 6075049 2024-02-26 16:56:57.54 2024-02-26 16:56:57.54 36000 TIP 439598 1718 6075053 2024-02-26 16:57:08.349 2024-02-26 16:57:08.349 1000 FEE 439613 8726 6075074 2024-02-26 16:57:24.419 2024-02-26 16:57:24.419 1000 FEE 439614 4768 6075089 2024-02-26 16:57:41.574 2024-02-26 16:57:41.574 1000 FEE 438866 6687 6075090 2024-02-26 16:57:41.574 2024-02-26 16:57:41.574 9000 TIP 438866 7760 6075107 2024-02-26 16:58:39.439 2024-02-26 16:58:39.439 10000 FEE 436264 20738 6075108 2024-02-26 16:58:39.439 2024-02-26 16:58:39.439 90000 TIP 436264 21357 6075113 2024-02-26 16:59:01.225 2024-02-26 16:59:01.225 100000 FEE 439617 21247 6075117 2024-02-26 16:59:13.567 2024-02-26 16:59:13.567 1000 FEE 439618 12024 6075148 2024-02-26 17:02:22.161 2024-02-26 17:02:22.161 7700 FEE 439586 14225 6075149 2024-02-26 17:02:22.161 2024-02-26 17:02:22.161 69300 TIP 439586 2204 6075176 2024-02-26 17:03:55.149 2024-02-26 17:03:55.149 7700 FEE 438781 20376 6075177 2024-02-26 17:03:55.149 2024-02-26 17:03:55.149 69300 TIP 438781 12951 6075184 2024-02-26 17:04:54.763 2024-02-26 17:04:54.763 0 FEE 439625 21218 6075193 2024-02-26 17:07:19.406 2024-02-26 17:07:19.406 1000 FEE 439627 18454 6075205 2024-02-26 17:11:11.048 2024-02-26 17:11:11.048 1000 FEE 439631 19462 6075212 2024-02-26 17:11:20.64 2024-02-26 17:11:20.64 300 FEE 439315 4831 6075213 2024-02-26 17:11:20.64 2024-02-26 17:11:20.64 2700 TIP 439315 20858 6075232 2024-02-26 17:11:34.219 2024-02-26 17:11:34.219 300 FEE 439322 6798 6075233 2024-02-26 17:11:34.219 2024-02-26 17:11:34.219 2700 TIP 439322 11789 6075241 2024-02-26 17:11:49.774 2024-02-26 17:11:49.774 1000 FEE 439632 17682 6075242 2024-02-26 17:11:49.834 2024-02-26 17:11:49.834 0 FEE 439631 16432 6075266 2024-02-26 17:16:11.987 2024-02-26 17:16:11.987 2100 FEE 439635 3683 6075267 2024-02-26 17:16:11.987 2024-02-26 17:16:11.987 18900 TIP 439635 19094 6075276 2024-02-26 17:17:44.652 2024-02-26 17:17:44.652 2100 FEE 439632 19770 6075277 2024-02-26 17:17:44.652 2024-02-26 17:17:44.652 18900 TIP 439632 695 6075278 2024-02-26 17:17:48.311 2024-02-26 17:17:48.311 10100 FEE 439401 20272 6075279 2024-02-26 17:17:48.311 2024-02-26 17:17:48.311 90900 TIP 439401 16347 6075287 2024-02-26 17:18:57.632 2024-02-26 17:18:57.632 100 FEE 439263 18311 6075288 2024-02-26 17:18:57.632 2024-02-26 17:18:57.632 900 TIP 439263 17523 6075308 2024-02-26 17:19:29.827 2024-02-26 17:19:29.827 1000 FEE 439298 12024 6075309 2024-02-26 17:19:29.827 2024-02-26 17:19:29.827 9000 TIP 439298 5761 6075320 2024-02-26 17:19:37.815 2024-02-26 17:19:37.815 900 FEE 439443 14906 6075321 2024-02-26 17:19:37.815 2024-02-26 17:19:37.815 8100 TIP 439443 6419 6075326 2024-02-26 17:19:44.868 2024-02-26 17:19:44.868 90000 FEE 439443 17094 6075327 2024-02-26 17:19:44.868 2024-02-26 17:19:44.868 810000 TIP 439443 10728 6075386 2024-02-26 17:23:24.434 2024-02-26 17:23:24.434 100 FEE 439637 20704 6075387 2024-02-26 17:23:24.434 2024-02-26 17:23:24.434 900 TIP 439637 15474 6075403 2024-02-26 17:26:25.047 2024-02-26 17:26:25.047 1000 FEE 439658 18274 6075404 2024-02-26 17:26:25.047 2024-02-26 17:26:25.047 9000 TIP 439658 10586 6075429 2024-02-26 17:27:19.389 2024-02-26 17:27:19.389 2100 FEE 439490 928 6075430 2024-02-26 17:27:19.389 2024-02-26 17:27:19.389 18900 TIP 439490 715 6075445 2024-02-26 17:27:54.043 2024-02-26 17:27:54.043 1000 FEE 439662 20788 6075446 2024-02-26 17:27:54.043 2024-02-26 17:27:54.043 9000 TIP 439662 3544 6075451 2024-02-26 17:27:56.312 2024-02-26 17:27:56.312 1000 FEE 439662 910 6075452 2024-02-26 17:27:56.312 2024-02-26 17:27:56.312 9000 TIP 439662 1647 6075465 2024-02-26 17:29:15.67 2024-02-26 17:29:15.67 0 FEE 439663 18909 6075500 2024-02-26 17:32:29.422 2024-02-26 17:32:29.422 800 FEE 439354 11144 6075501 2024-02-26 17:32:29.422 2024-02-26 17:32:29.422 7200 TIP 439354 17217 6075508 2024-02-26 17:32:31.331 2024-02-26 17:32:31.331 800 FEE 439354 12965 6074543 2024-02-26 16:11:05.446 2024-02-26 16:11:05.446 1000 STREAM 141924 9336 6074551 2024-02-26 16:12:05.444 2024-02-26 16:12:05.444 1000 STREAM 141924 14449 6074574 2024-02-26 16:15:05.461 2024-02-26 16:15:05.461 1000 STREAM 141924 4043 6074588 2024-02-26 16:16:05.46 2024-02-26 16:16:05.46 1000 STREAM 141924 20970 6074643 2024-02-26 16:23:03.652 2024-02-26 16:23:03.652 1000 STREAM 141924 21033 6074664 2024-02-26 16:25:03.679 2024-02-26 16:25:03.679 1000 STREAM 141924 1571 6074689 2024-02-26 16:27:03.685 2024-02-26 16:27:03.685 1000 STREAM 141924 21424 6074712 2024-02-26 16:29:03.706 2024-02-26 16:29:03.706 1000 STREAM 141924 19813 6074548 2024-02-26 16:11:49.248 2024-02-26 16:11:49.248 3100 FEE 439556 19966 6074549 2024-02-26 16:11:49.248 2024-02-26 16:11:49.248 27900 TIP 439556 20015 6074550 2024-02-26 16:11:56.468 2024-02-26 16:11:56.468 1000 FEE 439558 2961 6074570 2024-02-26 16:14:16.233 2024-02-26 16:14:16.233 7700 FEE 439562 652 6074571 2024-02-26 16:14:16.233 2024-02-26 16:14:16.233 69300 TIP 439562 3686 6074583 2024-02-26 16:15:55.917 2024-02-26 16:15:55.917 1000 FEE 439513 14015 6074584 2024-02-26 16:15:55.917 2024-02-26 16:15:55.917 9000 TIP 439513 2734 6074595 2024-02-26 16:16:29.59 2024-02-26 16:16:29.59 1000 FEE 439426 16154 6074596 2024-02-26 16:16:29.59 2024-02-26 16:16:29.59 9000 TIP 439426 12265 6074607 2024-02-26 16:17:06.852 2024-02-26 16:17:06.852 1000 FEE 439050 20254 6074608 2024-02-26 16:17:06.852 2024-02-26 16:17:06.852 9000 TIP 439050 17221 6074613 2024-02-26 16:17:15.681 2024-02-26 16:17:15.681 1000 FEE 439495 17331 6074614 2024-02-26 16:17:15.681 2024-02-26 16:17:15.681 9000 TIP 439495 2431 6074651 2024-02-26 16:23:54.283 2024-02-26 16:23:54.283 100 FEE 439355 13767 6074652 2024-02-26 16:23:54.283 2024-02-26 16:23:54.283 900 TIP 439355 16387 6074665 2024-02-26 16:25:10.033 2024-02-26 16:25:10.033 100 FEE 439281 4391 6074666 2024-02-26 16:25:10.033 2024-02-26 16:25:10.033 900 TIP 439281 5308 6074677 2024-02-26 16:25:51.292 2024-02-26 16:25:51.292 1000 FEE 439532 20094 6074678 2024-02-26 16:25:51.292 2024-02-26 16:25:51.292 9000 TIP 439532 1474 6074690 2024-02-26 16:27:05.582 2024-02-26 16:27:05.582 100 FEE 439222 21238 6074691 2024-02-26 16:27:05.582 2024-02-26 16:27:05.582 900 TIP 439222 18832 6074700 2024-02-26 16:27:39.563 2024-02-26 16:27:39.563 21000 FEE 439443 4043 6074701 2024-02-26 16:27:39.563 2024-02-26 16:27:39.563 189000 TIP 439443 18016 6074717 2024-02-26 16:29:19.468 2024-02-26 16:29:19.468 1000 FEE 439372 663 6074718 2024-02-26 16:29:19.468 2024-02-26 16:29:19.468 9000 TIP 439372 1354 6074742 2024-02-26 16:32:29.047 2024-02-26 16:32:29.047 500 FEE 439261 16948 6074743 2024-02-26 16:32:29.047 2024-02-26 16:32:29.047 4500 TIP 439261 20775 6074761 2024-02-26 16:35:02.047 2024-02-26 16:35:02.047 2100 FEE 439351 626 6074762 2024-02-26 16:35:02.047 2024-02-26 16:35:02.047 18900 TIP 439351 1173 6074771 2024-02-26 16:36:19.72 2024-02-26 16:36:19.72 4000 FEE 439386 20849 6074772 2024-02-26 16:36:19.72 2024-02-26 16:36:19.72 36000 TIP 439386 19471 6074783 2024-02-26 16:38:09.137 2024-02-26 16:38:09.137 100000 FEE 439586 10591 6074798 2024-02-26 16:38:19.882 2024-02-26 16:38:19.882 1100 FEE 439263 16929 6074799 2024-02-26 16:38:19.882 2024-02-26 16:38:19.882 9900 TIP 439263 21291 6074822 2024-02-26 16:38:22.626 2024-02-26 16:38:22.626 1100 FEE 439286 4043 6074823 2024-02-26 16:38:22.626 2024-02-26 16:38:22.626 9900 TIP 439286 20588 6074842 2024-02-26 16:38:34.057 2024-02-26 16:38:34.057 1100 FEE 438583 15521 6074843 2024-02-26 16:38:34.057 2024-02-26 16:38:34.057 9900 TIP 438583 7425 6074846 2024-02-26 16:39:21.859 2024-02-26 16:39:21.859 1000 FEE 439588 20409 6074858 2024-02-26 16:39:25.62 2024-02-26 16:39:25.62 1100 FEE 438583 21620 6074859 2024-02-26 16:39:25.62 2024-02-26 16:39:25.62 9900 TIP 438583 21254 6074873 2024-02-26 16:39:52.252 2024-02-26 16:39:52.252 1100 FEE 429724 16724 6074874 2024-02-26 16:39:52.252 2024-02-26 16:39:52.252 9900 TIP 429724 1180 6074885 2024-02-26 16:39:54.662 2024-02-26 16:39:54.662 1100 FEE 429724 664 6074886 2024-02-26 16:39:54.662 2024-02-26 16:39:54.662 9900 TIP 429724 10591 6074895 2024-02-26 16:40:48.316 2024-02-26 16:40:48.316 0 FEE 439590 20980 6074920 2024-02-26 16:43:41.142 2024-02-26 16:43:41.142 1100 FEE 429724 882 6074921 2024-02-26 16:43:41.142 2024-02-26 16:43:41.142 9900 TIP 429724 12097 6074924 2024-02-26 16:43:41.369 2024-02-26 16:43:41.369 1100 FEE 429724 16355 6074925 2024-02-26 16:43:41.369 2024-02-26 16:43:41.369 9900 TIP 429724 15732 6074930 2024-02-26 16:43:41.736 2024-02-26 16:43:41.736 1100 FEE 429724 18829 6074931 2024-02-26 16:43:41.736 2024-02-26 16:43:41.736 9900 TIP 429724 17741 6074934 2024-02-26 16:43:41.987 2024-02-26 16:43:41.987 1100 FEE 429724 1039 6074935 2024-02-26 16:43:41.987 2024-02-26 16:43:41.987 9900 TIP 429724 694 6074957 2024-02-26 16:46:28.852 2024-02-26 16:46:28.852 1000 FEE 439597 7659 6074961 2024-02-26 16:47:07.405 2024-02-26 16:47:07.405 1000 FEE 439598 18225 6074971 2024-02-26 16:48:56.206 2024-02-26 16:48:56.206 1000 FEE 439392 15337 6074972 2024-02-26 16:48:56.206 2024-02-26 16:48:56.206 9000 TIP 439392 1261 6074979 2024-02-26 16:50:09.064 2024-02-26 16:50:09.064 2100 FEE 439443 680 6074980 2024-02-26 16:50:09.064 2024-02-26 16:50:09.064 18900 TIP 439443 20153 6074995 2024-02-26 16:54:44.274 2024-02-26 16:54:44.274 0 FEE 439606 20646 6074998 2024-02-26 16:55:06.007 2024-02-26 16:55:06.007 3200 FEE 439586 989 6074999 2024-02-26 16:55:06.007 2024-02-26 16:55:06.007 28800 TIP 439586 11898 6075046 2024-02-26 16:56:53.167 2024-02-26 16:56:53.167 1000 FEE 439110 20861 6075047 2024-02-26 16:56:53.167 2024-02-26 16:56:53.167 9000 TIP 439110 15200 6075077 2024-02-26 16:57:25.094 2024-02-26 16:57:25.094 1000 FEE 439083 756 6075078 2024-02-26 16:57:25.094 2024-02-26 16:57:25.094 9000 TIP 439083 18180 6075101 2024-02-26 16:58:30.66 2024-02-26 16:58:30.66 3300 FEE 439390 11678 6075102 2024-02-26 16:58:30.66 2024-02-26 16:58:30.66 29700 TIP 439390 12356 6075152 2024-02-26 17:02:23.251 2024-02-26 17:02:23.251 15400 FEE 439586 2013 6075153 2024-02-26 17:02:23.251 2024-02-26 17:02:23.251 138600 TIP 439586 21155 6075158 2024-02-26 17:02:23.728 2024-02-26 17:02:23.728 7700 FEE 439586 4776 6075159 2024-02-26 17:02:23.728 2024-02-26 17:02:23.728 69300 TIP 439586 18494 6075165 2024-02-26 17:02:43.355 2024-02-26 17:02:43.355 3000 FEE 439479 21044 6075166 2024-02-26 17:02:43.355 2024-02-26 17:02:43.355 27000 TIP 439479 2075 6075171 2024-02-26 17:03:43.417 2024-02-26 17:03:43.417 1000 FEE 439625 19809 6075172 2024-02-26 17:03:46.684 2024-02-26 17:03:46.684 21000 FEE 439623 21292 6075173 2024-02-26 17:03:46.684 2024-02-26 17:03:46.684 189000 TIP 439623 19541 6075181 2024-02-26 17:04:43.552 2024-02-26 17:04:43.552 1000 FEE 439624 15161 6075182 2024-02-26 17:04:43.552 2024-02-26 17:04:43.552 9000 TIP 439624 7903 6075210 2024-02-26 17:11:20.484 2024-02-26 17:11:20.484 300 FEE 439315 5701 6075211 2024-02-26 17:11:20.484 2024-02-26 17:11:20.484 2700 TIP 439315 20588 6075214 2024-02-26 17:11:20.776 2024-02-26 17:11:20.776 300 FEE 439315 21591 6075215 2024-02-26 17:11:20.776 2024-02-26 17:11:20.776 2700 TIP 439315 15510 6075216 2024-02-26 17:11:20.965 2024-02-26 17:11:20.965 300 FEE 439315 9337 6075217 2024-02-26 17:11:20.965 2024-02-26 17:11:20.965 2700 TIP 439315 2042 6075226 2024-02-26 17:11:33.744 2024-02-26 17:11:33.744 300 FEE 439322 9159 6075227 2024-02-26 17:11:33.744 2024-02-26 17:11:33.744 2700 TIP 439322 795 6075252 2024-02-26 17:12:52.825 2024-02-26 17:12:52.825 21000 FEE 439637 19121 6075260 2024-02-26 17:15:32.718 2024-02-26 17:15:32.718 27900 FEE 438932 1726 6075261 2024-02-26 17:15:32.718 2024-02-26 17:15:32.718 251100 TIP 438932 12516 6075270 2024-02-26 17:16:53.31 2024-02-26 17:16:53.31 1000 FEE 439645 19531 6075273 2024-02-26 17:17:05.797 2024-02-26 17:17:05.797 0 FEE 439644 20817 6075291 2024-02-26 17:19:00.326 2024-02-26 17:19:00.326 4000 FEE 439647 21021 6075292 2024-02-26 17:19:00.326 2024-02-26 17:19:00.326 36000 TIP 439647 21620 6075343 2024-02-26 17:20:11.4 2024-02-26 17:20:11.4 69000 FEE 439654 16536 6075346 2024-02-26 17:20:21.74 2024-02-26 17:20:21.74 100 FEE 439263 9333 6075347 2024-02-26 17:20:21.74 2024-02-26 17:20:21.74 900 TIP 439263 3353 6075359 2024-02-26 17:21:08.058 2024-02-26 17:21:08.058 1000 FEE 439639 3461 6075360 2024-02-26 17:21:08.058 2024-02-26 17:21:08.058 9000 TIP 439639 13143 6075367 2024-02-26 17:21:08.959 2024-02-26 17:21:08.959 1000 FEE 439639 15159 6075368 2024-02-26 17:21:08.959 2024-02-26 17:21:08.959 9000 TIP 439639 14959 6075373 2024-02-26 17:21:09.687 2024-02-26 17:21:09.687 1000 FEE 439639 11423 6074610 2024-02-26 16:17:07.603 2024-02-26 16:17:07.603 9000 TIP 439267 20776 6074639 2024-02-26 16:22:43.552 2024-02-26 16:22:43.552 100 FEE 439539 19938 6074640 2024-02-26 16:22:43.552 2024-02-26 16:22:43.552 900 TIP 439539 21386 6074646 2024-02-26 16:23:19.081 2024-02-26 16:23:19.081 100 FEE 439450 20854 6074647 2024-02-26 16:23:19.081 2024-02-26 16:23:19.081 900 TIP 439450 18897 6074686 2024-02-26 16:26:06.932 2024-02-26 16:26:06.932 0 FEE 439570 14015 6074692 2024-02-26 16:27:24.636 2024-02-26 16:27:24.636 100000 FEE 439574 19303 6074693 2024-02-26 16:27:26.186 2024-02-26 16:27:26.186 1000 FEE 439575 3506 6074694 2024-02-26 16:27:28.906 2024-02-26 16:27:28.906 100 FEE 439535 7772 6074695 2024-02-26 16:27:28.906 2024-02-26 16:27:28.906 900 TIP 439535 12819 6074732 2024-02-26 16:30:52.515 2024-02-26 16:30:52.515 2100 FEE 439513 9476 6074733 2024-02-26 16:30:52.515 2024-02-26 16:30:52.515 18900 TIP 439513 14990 6074755 2024-02-26 16:34:16.768 2024-02-26 16:34:16.768 4000 FEE 439579 8459 6074756 2024-02-26 16:34:16.768 2024-02-26 16:34:16.768 36000 TIP 439579 12024 6074786 2024-02-26 16:38:16.561 2024-02-26 16:38:16.561 1100 FEE 439472 16562 6074787 2024-02-26 16:38:16.561 2024-02-26 16:38:16.561 9900 TIP 439472 11417 6074800 2024-02-26 16:38:20.011 2024-02-26 16:38:20.011 1100 FEE 439263 13987 6074801 2024-02-26 16:38:20.011 2024-02-26 16:38:20.011 9900 TIP 439263 19403 6074840 2024-02-26 16:38:33.934 2024-02-26 16:38:33.934 1100 FEE 438583 17201 6074841 2024-02-26 16:38:33.934 2024-02-26 16:38:33.934 9900 TIP 438583 11523 6074851 2024-02-26 16:39:24.948 2024-02-26 16:39:24.948 1000 FEE 439589 19378 6074905 2024-02-26 16:41:21.728 2024-02-26 16:41:21.728 200 FEE 439585 14404 6074906 2024-02-26 16:41:21.728 2024-02-26 16:41:21.728 1800 TIP 439585 1175 6074910 2024-02-26 16:42:31.584 2024-02-26 16:42:31.584 10100 FEE 439263 15351 6074911 2024-02-26 16:42:31.584 2024-02-26 16:42:31.584 90900 TIP 439263 5791 6074928 2024-02-26 16:43:41.62 2024-02-26 16:43:41.62 1100 FEE 429724 1000 6074929 2024-02-26 16:43:41.62 2024-02-26 16:43:41.62 9900 TIP 429724 15588 6074936 2024-02-26 16:43:42.135 2024-02-26 16:43:42.135 1100 FEE 429724 16059 6074937 2024-02-26 16:43:42.135 2024-02-26 16:43:42.135 9900 TIP 429724 21061 6074938 2024-02-26 16:43:42.408 2024-02-26 16:43:42.408 1100 FEE 429724 2614 6074939 2024-02-26 16:43:42.408 2024-02-26 16:43:42.408 9900 TIP 429724 5708 6074952 2024-02-26 16:43:43.521 2024-02-26 16:43:43.521 1100 FEE 429724 21371 6074953 2024-02-26 16:43:43.521 2024-02-26 16:43:43.521 9900 TIP 429724 20901 6074966 2024-02-26 16:47:54.046 2024-02-26 16:47:54.046 10000 FEE 439263 4225 6074967 2024-02-26 16:47:54.046 2024-02-26 16:47:54.046 90000 TIP 439263 5377 6074987 2024-02-26 16:51:32.172 2024-02-26 16:51:32.172 1000 FEE 439604 1428 6074996 2024-02-26 16:55:03.877 2024-02-26 16:55:03.877 10000 FEE 439607 2010 6075004 2024-02-26 16:55:19.008 2024-02-26 16:55:19.008 1000 FEE 439608 11498 6075028 2024-02-26 16:55:53.307 2024-02-26 16:55:53.307 15400 FEE 439315 15160 6075029 2024-02-26 16:55:53.307 2024-02-26 16:55:53.307 138600 TIP 439315 18209 6075043 2024-02-26 16:56:40.488 2024-02-26 16:56:40.488 1000000 FEE 439612 19333 6075064 2024-02-26 16:57:16 2024-02-26 16:57:16 1000 FEE 428989 17041 6075065 2024-02-26 16:57:16 2024-02-26 16:57:16 9000 TIP 428989 8796 6075068 2024-02-26 16:57:22.797 2024-02-26 16:57:22.797 1000 FEE 439418 826 6075069 2024-02-26 16:57:22.797 2024-02-26 16:57:22.797 9000 TIP 439418 1039 6075075 2024-02-26 16:57:24.592 2024-02-26 16:57:24.592 1000 FEE 439133 16301 6075076 2024-02-26 16:57:24.592 2024-02-26 16:57:24.592 9000 TIP 439133 16059 6075081 2024-02-26 16:57:26.034 2024-02-26 16:57:26.034 1000 FEE 438966 18877 6075082 2024-02-26 16:57:26.034 2024-02-26 16:57:26.034 9000 TIP 438966 20802 6075095 2024-02-26 16:57:58.087 2024-02-26 16:57:58.087 0 FEE 439608 780 6075115 2024-02-26 16:59:12.028 2024-02-26 16:59:12.028 100 FEE 439414 5776 6075116 2024-02-26 16:59:12.028 2024-02-26 16:59:12.028 900 TIP 439414 4654 6075179 2024-02-26 17:04:06.185 2024-02-26 17:04:06.185 7700 FEE 439624 899 6075180 2024-02-26 17:04:06.185 2024-02-26 17:04:06.185 69300 TIP 439624 9242 6075202 2024-02-26 17:10:34.393 2024-02-26 17:10:34.393 7100 FEE 439298 17237 6075203 2024-02-26 17:10:34.393 2024-02-26 17:10:34.393 63900 TIP 439298 20647 6075224 2024-02-26 17:11:33.583 2024-02-26 17:11:33.583 300 FEE 439322 4459 6075225 2024-02-26 17:11:33.583 2024-02-26 17:11:33.583 2700 TIP 439322 20781 6075238 2024-02-26 17:11:34.755 2024-02-26 17:11:34.755 300 FEE 439322 8326 6075239 2024-02-26 17:11:34.755 2024-02-26 17:11:34.755 2700 TIP 439322 1208 6075243 2024-02-26 17:11:52.696 2024-02-26 17:11:52.696 1000 FEE 439633 5961 6075250 2024-02-26 17:12:21.352 2024-02-26 17:12:21.352 1000 FEE 439635 21527 6075254 2024-02-26 17:13:57.726 2024-02-26 17:13:57.726 100000 FEE 439638 18423 6075300 2024-02-26 17:19:14.068 2024-02-26 17:19:14.068 1000 FEE 439607 16789 6075301 2024-02-26 17:19:14.068 2024-02-26 17:19:14.068 9000 TIP 439607 629 6075328 2024-02-26 17:19:45.461 2024-02-26 17:19:45.461 100 FEE 439443 20616 6075329 2024-02-26 17:19:45.461 2024-02-26 17:19:45.461 900 TIP 439443 13547 6075341 2024-02-26 17:20:05.133 2024-02-26 17:20:05.133 1000 FEE 439514 21040 6075342 2024-02-26 17:20:05.133 2024-02-26 17:20:05.133 9000 TIP 439514 20409 6075365 2024-02-26 17:21:08.63 2024-02-26 17:21:08.63 1000 FEE 439639 21323 6075366 2024-02-26 17:21:08.63 2024-02-26 17:21:08.63 9000 TIP 439639 1745 6075392 2024-02-26 17:25:05.485 2024-02-26 17:25:05.485 3000 FEE 439263 9099 6075393 2024-02-26 17:25:05.485 2024-02-26 17:25:05.485 27000 TIP 439263 20299 6075405 2024-02-26 17:26:25.548 2024-02-26 17:26:25.548 1000 FEE 439658 10273 6075406 2024-02-26 17:26:25.548 2024-02-26 17:26:25.548 9000 TIP 439658 16665 6075411 2024-02-26 17:26:26.209 2024-02-26 17:26:26.209 1000 FEE 439658 20045 6075412 2024-02-26 17:26:26.209 2024-02-26 17:26:26.209 9000 TIP 439658 5487 6075439 2024-02-26 17:27:45.727 2024-02-26 17:27:45.727 2100 FEE 439639 14731 6075440 2024-02-26 17:27:45.727 2024-02-26 17:27:45.727 18900 TIP 439639 4322 6075456 2024-02-26 17:28:36.216 2024-02-26 17:28:36.216 2100 FEE 439611 17592 6075457 2024-02-26 17:28:36.216 2024-02-26 17:28:36.216 18900 TIP 439611 18116 6075470 2024-02-26 17:29:19.642 2024-02-26 17:29:19.642 2100 FEE 439624 21145 6075471 2024-02-26 17:29:19.642 2024-02-26 17:29:19.642 18900 TIP 439624 4102 6075481 2024-02-26 17:29:49.622 2024-02-26 17:29:49.622 0 FEE 439663 9341 6075498 2024-02-26 17:32:06.209 2024-02-26 17:32:06.209 2100 FEE 439513 7891 6075499 2024-02-26 17:32:06.209 2024-02-26 17:32:06.209 18900 TIP 439513 19154 6075504 2024-02-26 17:32:29.796 2024-02-26 17:32:29.796 800 FEE 439354 18956 6075505 2024-02-26 17:32:29.796 2024-02-26 17:32:29.796 7200 TIP 439354 17984 6075506 2024-02-26 17:32:29.974 2024-02-26 17:32:29.974 800 FEE 439354 10979 6075507 2024-02-26 17:32:29.974 2024-02-26 17:32:29.974 7200 TIP 439354 19996 6075512 2024-02-26 17:32:31.905 2024-02-26 17:32:31.905 1600 FEE 439354 19375 6075513 2024-02-26 17:32:31.905 2024-02-26 17:32:31.905 14400 TIP 439354 16410 6075529 2024-02-26 17:33:53.078 2024-02-26 17:33:53.078 1000 FEE 439315 11430 6075530 2024-02-26 17:33:53.078 2024-02-26 17:33:53.078 9000 TIP 439315 9366 6075535 2024-02-26 17:33:53.847 2024-02-26 17:33:53.847 1000 FEE 439315 19795 6075536 2024-02-26 17:33:53.847 2024-02-26 17:33:53.847 9000 TIP 439315 642 6075541 2024-02-26 17:34:58.132 2024-02-26 17:34:58.132 1000 FEE 439674 10273 6075550 2024-02-26 17:35:25.217 2024-02-26 17:35:25.217 1000 FEE 439676 959 6075555 2024-02-26 17:36:28.325 2024-02-26 17:36:28.325 1000 FEE 439678 647 6075617 2024-02-26 17:42:54.311 2024-02-26 17:42:54.311 1000 FEE 439682 20754 6074634 2024-02-26 16:21:04.128 2024-02-26 16:21:04.128 1000 STREAM 141924 6003 6074635 2024-02-26 16:22:02.133 2024-02-26 16:22:02.133 1000 STREAM 141924 9517 6074653 2024-02-26 16:24:02.147 2024-02-26 16:24:02.147 1000 STREAM 141924 17523 6074685 2024-02-26 16:26:02.153 2024-02-26 16:26:02.153 1000 STREAM 141924 1047 6074723 2024-02-26 16:30:02.164 2024-02-26 16:30:02.164 1000 STREAM 141924 2583 6074734 2024-02-26 16:31:02.16 2024-02-26 16:31:02.16 1000 STREAM 141924 18815 6074752 2024-02-26 16:34:02.175 2024-02-26 16:34:02.175 1000 STREAM 141924 7185 6074763 2024-02-26 16:35:02.191 2024-02-26 16:35:02.191 1000 STREAM 141924 1628 6074901 2024-02-26 16:41:04.25 2024-02-26 16:41:04.25 1000 STREAM 141924 7989 6075204 2024-02-26 17:11:02.677 2024-02-26 17:11:02.677 1000 STREAM 141924 16301 6074735 2024-02-26 16:31:35.305 2024-02-26 16:31:35.305 1000 FEE 439577 19153 6074737 2024-02-26 16:32:07.853 2024-02-26 16:32:07.853 1000 FEE 439578 21369 6074738 2024-02-26 16:32:16.912 2024-02-26 16:32:16.912 10000 FEE 439348 9329 6074739 2024-02-26 16:32:16.912 2024-02-26 16:32:16.912 90000 TIP 439348 17817 6074740 2024-02-26 16:32:17.759 2024-02-26 16:32:17.759 2100 FEE 439477 17411 6074741 2024-02-26 16:32:17.759 2024-02-26 16:32:17.759 18900 TIP 439477 7983 6074747 2024-02-26 16:33:26.869 2024-02-26 16:33:26.869 1000 FEE 439579 2773 6074753 2024-02-26 16:34:07.156 2024-02-26 16:34:07.156 2100 FEE 439435 12097 6074754 2024-02-26 16:34:07.156 2024-02-26 16:34:07.156 18900 TIP 439435 10352 6074788 2024-02-26 16:38:18.331 2024-02-26 16:38:18.331 1100 FEE 439315 18533 6074789 2024-02-26 16:38:18.331 2024-02-26 16:38:18.331 9900 TIP 439315 10280 6074796 2024-02-26 16:38:18.824 2024-02-26 16:38:18.824 1100 FEE 439315 14910 6074797 2024-02-26 16:38:18.824 2024-02-26 16:38:18.824 9900 TIP 439315 21119 6074802 2024-02-26 16:38:20.129 2024-02-26 16:38:20.129 1100 FEE 439263 4345 6074803 2024-02-26 16:38:20.129 2024-02-26 16:38:20.129 9900 TIP 439263 1817 6074804 2024-02-26 16:38:20.259 2024-02-26 16:38:20.259 1100 FEE 439263 13204 6074805 2024-02-26 16:38:20.259 2024-02-26 16:38:20.259 9900 TIP 439263 9171 6074810 2024-02-26 16:38:20.983 2024-02-26 16:38:20.983 1100 FEE 439443 6594 6074811 2024-02-26 16:38:20.983 2024-02-26 16:38:20.983 9900 TIP 439443 9916 6074836 2024-02-26 16:38:24.274 2024-02-26 16:38:24.274 1100 FEE 439390 20183 6074837 2024-02-26 16:38:24.274 2024-02-26 16:38:24.274 9900 TIP 439390 18344 6074854 2024-02-26 16:39:25.368 2024-02-26 16:39:25.368 2200 FEE 438583 7998 6074855 2024-02-26 16:39:25.368 2024-02-26 16:39:25.368 19800 TIP 438583 20450 6074856 2024-02-26 16:39:25.493 2024-02-26 16:39:25.493 1100 FEE 438583 913 6074857 2024-02-26 16:39:25.493 2024-02-26 16:39:25.493 9900 TIP 438583 16816 6074860 2024-02-26 16:39:25.846 2024-02-26 16:39:25.846 1100 FEE 438583 20599 6074861 2024-02-26 16:39:25.846 2024-02-26 16:39:25.846 9900 TIP 438583 8541 6074883 2024-02-26 16:39:54.527 2024-02-26 16:39:54.527 1100 FEE 429724 21523 6074884 2024-02-26 16:39:54.527 2024-02-26 16:39:54.527 9900 TIP 429724 5776 6074903 2024-02-26 16:41:15.263 2024-02-26 16:41:15.263 100 FEE 439591 18453 6074904 2024-02-26 16:41:15.263 2024-02-26 16:41:15.263 900 TIP 439591 10728 6074913 2024-02-26 16:43:16.955 2024-02-26 16:43:16.955 4000 FEE 439591 18735 6074914 2024-02-26 16:43:16.955 2024-02-26 16:43:16.955 36000 TIP 439591 6148 6074940 2024-02-26 16:43:42.627 2024-02-26 16:43:42.627 1100 FEE 429724 822 6074941 2024-02-26 16:43:42.627 2024-02-26 16:43:42.627 9900 TIP 429724 12738 6074942 2024-02-26 16:43:42.763 2024-02-26 16:43:42.763 1100 FEE 429724 11798 6074943 2024-02-26 16:43:42.763 2024-02-26 16:43:42.763 9900 TIP 429724 20102 6074964 2024-02-26 16:47:24.521 2024-02-26 16:47:24.521 1000 FEE 439600 21044 6074969 2024-02-26 16:48:24.424 2024-02-26 16:48:24.424 11100 FEE 439443 7654 6074970 2024-02-26 16:48:24.424 2024-02-26 16:48:24.424 99900 TIP 439443 9036 6074983 2024-02-26 16:50:23.518 2024-02-26 16:50:23.518 4200 FEE 439548 733 6074984 2024-02-26 16:50:23.518 2024-02-26 16:50:23.518 37800 TIP 439548 627 6075012 2024-02-26 16:55:51.666 2024-02-26 16:55:51.666 7700 FEE 439315 17838 6075013 2024-02-26 16:55:51.666 2024-02-26 16:55:51.666 69300 TIP 439315 20110 6075018 2024-02-26 16:55:52.204 2024-02-26 16:55:52.204 7700 FEE 439315 12272 6075019 2024-02-26 16:55:52.204 2024-02-26 16:55:52.204 69300 TIP 439315 20353 6075030 2024-02-26 16:55:53.392 2024-02-26 16:55:53.392 7700 FEE 439315 722 6075031 2024-02-26 16:55:53.392 2024-02-26 16:55:53.392 69300 TIP 439315 8448 6075054 2024-02-26 16:57:12.743 2024-02-26 16:57:12.743 1000 FEE 437295 1480 6075055 2024-02-26 16:57:12.743 2024-02-26 16:57:12.743 9000 TIP 437295 2639 6075060 2024-02-26 16:57:14.189 2024-02-26 16:57:14.189 1000 FEE 429593 9354 6075061 2024-02-26 16:57:14.189 2024-02-26 16:57:14.189 9000 TIP 429593 9355 6075072 2024-02-26 16:57:24.093 2024-02-26 16:57:24.093 1000 FEE 439532 12606 6075073 2024-02-26 16:57:24.093 2024-02-26 16:57:24.093 9000 TIP 439532 919 6075083 2024-02-26 16:57:26.795 2024-02-26 16:57:26.795 1000 FEE 438929 16410 6075084 2024-02-26 16:57:26.795 2024-02-26 16:57:26.795 9000 TIP 438929 9816 6075093 2024-02-26 16:57:57.182 2024-02-26 16:57:57.182 10000 FEE 435602 733 6075094 2024-02-26 16:57:57.182 2024-02-26 16:57:57.182 90000 TIP 435602 17014 6075096 2024-02-26 16:58:02.305 2024-02-26 16:58:02.305 10000 FEE 439615 20340 6075120 2024-02-26 17:00:05.251 2024-02-26 17:00:05.251 1000 FEE 439620 9921 6075185 2024-02-26 17:05:00.867 2024-02-26 17:05:00.867 1000 FEE 439626 654 6075191 2024-02-26 17:07:09.14 2024-02-26 17:07:09.14 800 FEE 439626 676 6075192 2024-02-26 17:07:09.14 2024-02-26 17:07:09.14 7200 TIP 439626 15690 6075251 2024-02-26 17:12:27.869 2024-02-26 17:12:27.869 1000 FEE 439636 15367 6075257 2024-02-26 17:15:31.901 2024-02-26 17:15:31.901 3100 FEE 438932 17218 6075258 2024-02-26 17:15:31.901 2024-02-26 17:15:31.901 27900 TIP 438932 17209 6075265 2024-02-26 17:16:05.037 2024-02-26 17:16:05.037 1000 FEE 439642 18543 6075269 2024-02-26 17:16:52.073 2024-02-26 17:16:52.073 11000 FEE 439644 2402 6075271 2024-02-26 17:17:02.046 2024-02-26 17:17:02.046 1000 FEE 439647 14267 6075275 2024-02-26 17:17:40.321 2024-02-26 17:17:40.321 1000 FEE 439650 5904 6075294 2024-02-26 17:19:09.349 2024-02-26 17:19:09.349 100 FEE 439286 19541 6075295 2024-02-26 17:19:09.349 2024-02-26 17:19:09.349 900 TIP 439286 11477 6075306 2024-02-26 17:19:29.782 2024-02-26 17:19:29.782 100 FEE 439642 18274 6075307 2024-02-26 17:19:29.782 2024-02-26 17:19:29.782 900 TIP 439642 20201 6075322 2024-02-26 17:19:38.419 2024-02-26 17:19:38.419 9000 FEE 439443 13132 6075323 2024-02-26 17:19:38.419 2024-02-26 17:19:38.419 81000 TIP 439443 7809 6075350 2024-02-26 17:20:25.01 2024-02-26 17:20:25.01 1000 FEE 439562 5527 6075351 2024-02-26 17:20:25.01 2024-02-26 17:20:25.01 9000 TIP 439562 6310 6075352 2024-02-26 17:20:27.991 2024-02-26 17:20:27.991 100 FEE 439286 2537 6075353 2024-02-26 17:20:27.991 2024-02-26 17:20:27.991 900 TIP 439286 1488 6075363 2024-02-26 17:21:08.427 2024-02-26 17:21:08.427 1000 FEE 439639 19292 6075364 2024-02-26 17:21:08.427 2024-02-26 17:21:08.427 9000 TIP 439639 21140 6075375 2024-02-26 17:21:09.898 2024-02-26 17:21:09.898 1000 FEE 439639 18511 6075376 2024-02-26 17:21:09.898 2024-02-26 17:21:09.898 9000 TIP 439639 12769 6075381 2024-02-26 17:21:42.319 2024-02-26 17:21:42.319 21000 FEE 439655 9261 6075389 2024-02-26 17:24:04.678 2024-02-26 17:24:04.678 15000 FEE 439658 10849 6075407 2024-02-26 17:26:25.781 2024-02-26 17:26:25.781 1000 FEE 439658 18368 6075408 2024-02-26 17:26:25.781 2024-02-26 17:26:25.781 9000 TIP 439658 9307 6075437 2024-02-26 17:27:43.961 2024-02-26 17:27:43.961 2100 FEE 439658 993 6075438 2024-02-26 17:27:43.961 2024-02-26 17:27:43.961 18900 TIP 439658 5637 6075449 2024-02-26 17:27:54.713 2024-02-26 17:27:54.713 1000 FEE 439662 5961 6075450 2024-02-26 17:27:54.713 2024-02-26 17:27:54.713 9000 TIP 439662 17082 6075483 2024-02-26 17:30:33.658 2024-02-26 17:30:33.658 7700 FEE 439658 7125 6075484 2024-02-26 17:30:33.658 2024-02-26 17:30:33.658 69300 TIP 439658 18842 6075490 2024-02-26 17:31:16.963 2024-02-26 17:31:16.963 2100 FEE 439644 21457 6075491 2024-02-26 17:31:16.963 2024-02-26 17:31:16.963 18900 TIP 439644 12160 6075494 2024-02-26 17:31:59.77 2024-02-26 17:31:59.77 2500 FEE 439213 17411 6075495 2024-02-26 17:31:59.77 2024-02-26 17:31:59.77 22500 TIP 439213 10731 6075496 2024-02-26 17:32:01.968 2024-02-26 17:32:01.968 1000 FEE 439668 14939 6074777 2024-02-26 16:36:37.803 2024-02-26 16:36:37.803 10000 FEE 439584 826 6074778 2024-02-26 16:36:37.803 2024-02-26 16:36:37.803 90000 TIP 439584 13217 6074779 2024-02-26 16:36:40.81 2024-02-26 16:36:40.81 4000 FEE 439582 5590 6074780 2024-02-26 16:36:40.81 2024-02-26 16:36:40.81 36000 TIP 439582 21522 6074784 2024-02-26 16:38:14.852 2024-02-26 16:38:14.852 1100 FEE 439472 18016 6074785 2024-02-26 16:38:14.852 2024-02-26 16:38:14.852 9900 TIP 439472 6030 6074792 2024-02-26 16:38:18.593 2024-02-26 16:38:18.593 1100 FEE 439315 13931 6074793 2024-02-26 16:38:18.593 2024-02-26 16:38:18.593 9900 TIP 439315 6149 6074814 2024-02-26 16:38:21.753 2024-02-26 16:38:21.753 1100 FEE 439513 19016 6074815 2024-02-26 16:38:21.753 2024-02-26 16:38:21.753 9900 TIP 439513 21599 6074820 2024-02-26 16:38:22.495 2024-02-26 16:38:22.495 1100 FEE 439286 21612 6074821 2024-02-26 16:38:22.495 2024-02-26 16:38:22.495 9900 TIP 439286 4048 6074832 2024-02-26 16:38:23.942 2024-02-26 16:38:23.942 1100 FEE 439390 20606 6074833 2024-02-26 16:38:23.942 2024-02-26 16:38:23.942 9900 TIP 439390 798 6074875 2024-02-26 16:39:52.371 2024-02-26 16:39:52.371 1100 FEE 429724 13169 6074876 2024-02-26 16:39:52.371 2024-02-26 16:39:52.371 9900 TIP 429724 21042 6074879 2024-02-26 16:39:54.291 2024-02-26 16:39:54.291 1100 FEE 429724 1495 6074880 2024-02-26 16:39:54.291 2024-02-26 16:39:54.291 9900 TIP 429724 705 6074946 2024-02-26 16:43:43.008 2024-02-26 16:43:43.008 1100 FEE 429724 16939 6074947 2024-02-26 16:43:43.008 2024-02-26 16:43:43.008 9900 TIP 429724 17535 6074965 2024-02-26 16:47:28.472 2024-02-26 16:47:28.472 0 FEE 439597 10554 6074985 2024-02-26 16:50:27.314 2024-02-26 16:50:27.314 1000 FEE 439603 750 6075007 2024-02-26 16:55:50.938 2024-02-26 16:55:50.938 1000 FEE 439609 20554 6075014 2024-02-26 16:55:51.843 2024-02-26 16:55:51.843 7700 FEE 439315 19732 6075015 2024-02-26 16:55:51.843 2024-02-26 16:55:51.843 69300 TIP 439315 10849 6075020 2024-02-26 16:55:52.372 2024-02-26 16:55:52.372 7700 FEE 439315 18336 6075021 2024-02-26 16:55:52.372 2024-02-26 16:55:52.372 69300 TIP 439315 20245 6075026 2024-02-26 16:55:52.921 2024-02-26 16:55:52.921 7700 FEE 439315 21356 6075027 2024-02-26 16:55:52.921 2024-02-26 16:55:52.921 69300 TIP 439315 15200 6075042 2024-02-26 16:56:37.056 2024-02-26 16:56:37.056 1000 FEE 439611 4292 6075079 2024-02-26 16:57:25.559 2024-02-26 16:57:25.559 1000 FEE 439022 13398 6075080 2024-02-26 16:57:25.559 2024-02-26 16:57:25.559 9000 TIP 439022 7553 6075085 2024-02-26 16:57:29.486 2024-02-26 16:57:29.486 1000 FEE 438912 19981 6075086 2024-02-26 16:57:29.486 2024-02-26 16:57:29.486 9000 TIP 438912 10586 6075087 2024-02-26 16:57:38.398 2024-02-26 16:57:38.398 3300 FEE 439432 18351 6075088 2024-02-26 16:57:38.398 2024-02-26 16:57:38.398 29700 TIP 439432 894 6075097 2024-02-26 16:58:05.052 2024-02-26 16:58:05.052 10000 FEE 439606 2519 6075098 2024-02-26 16:58:05.052 2024-02-26 16:58:05.052 90000 TIP 439606 19126 6075109 2024-02-26 16:58:40.097 2024-02-26 16:58:40.097 10000 FEE 439372 4574 6075110 2024-02-26 16:58:40.097 2024-02-26 16:58:40.097 90000 TIP 439372 15271 6075122 2024-02-26 17:00:25.579 2024-02-26 17:00:25.579 7700 FEE 439617 12245 6075123 2024-02-26 17:00:25.579 2024-02-26 17:00:25.579 69300 TIP 439617 17095 6075126 2024-02-26 17:01:52.27 2024-02-26 17:01:52.27 10000 FEE 439623 21048 6075130 2024-02-26 17:02:20.066 2024-02-26 17:02:20.066 7700 FEE 439586 1585 6075131 2024-02-26 17:02:20.066 2024-02-26 17:02:20.066 69300 TIP 439586 4128 6075134 2024-02-26 17:02:20.653 2024-02-26 17:02:20.653 7700 FEE 439586 20018 6075135 2024-02-26 17:02:20.653 2024-02-26 17:02:20.653 69300 TIP 439586 13100 6075140 2024-02-26 17:02:21.317 2024-02-26 17:02:21.317 7700 FEE 439586 21271 6075141 2024-02-26 17:02:21.317 2024-02-26 17:02:21.317 69300 TIP 439586 21506 6075156 2024-02-26 17:02:23.539 2024-02-26 17:02:23.539 7700 FEE 439586 19995 6075157 2024-02-26 17:02:23.539 2024-02-26 17:02:23.539 69300 TIP 439586 10638 6075174 2024-02-26 17:03:53.533 2024-02-26 17:03:53.533 7700 FEE 438781 2703 6075175 2024-02-26 17:03:53.533 2024-02-26 17:03:53.533 69300 TIP 438781 18372 6075187 2024-02-26 17:05:59.23 2024-02-26 17:05:59.23 4000 FEE 439620 8544 6075188 2024-02-26 17:05:59.23 2024-02-26 17:05:59.23 36000 TIP 439620 20993 6075196 2024-02-26 17:08:29.794 2024-02-26 17:08:29.794 1000 FEE 439458 17891 6075197 2024-02-26 17:08:29.794 2024-02-26 17:08:29.794 9000 TIP 439458 18368 6075206 2024-02-26 17:11:17.727 2024-02-26 17:11:17.727 400 FEE 439629 4391 6075207 2024-02-26 17:11:17.727 2024-02-26 17:11:17.727 3600 TIP 439629 21522 6075218 2024-02-26 17:11:24.405 2024-02-26 17:11:24.405 100000 FEE 439315 19566 6075219 2024-02-26 17:11:24.405 2024-02-26 17:11:24.405 900000 TIP 439315 18837 6075230 2024-02-26 17:11:34.059 2024-02-26 17:11:34.059 300 FEE 439322 9669 6075231 2024-02-26 17:11:34.059 2024-02-26 17:11:34.059 2700 TIP 439322 14376 6075244 2024-02-26 17:11:54.151 2024-02-26 17:11:54.151 1000 FEE 439634 15577 6075262 2024-02-26 17:15:57.192 2024-02-26 17:15:57.192 100000 FEE 439640 720 6075280 2024-02-26 17:17:51.769 2024-02-26 17:17:51.769 10100 FEE 439298 1092 6075281 2024-02-26 17:17:51.769 2024-02-26 17:17:51.769 90900 TIP 439298 19929 6075285 2024-02-26 17:18:30.041 2024-02-26 17:18:30.041 3100 FEE 439327 15148 6075286 2024-02-26 17:18:30.041 2024-02-26 17:18:30.041 27900 TIP 439327 13781 6075296 2024-02-26 17:19:11.604 2024-02-26 17:19:11.604 1000 FEE 439638 20129 6075297 2024-02-26 17:19:11.604 2024-02-26 17:19:11.604 9000 TIP 439638 19966 6075302 2024-02-26 17:19:15.957 2024-02-26 17:19:15.957 1000 FEE 439586 680 6075303 2024-02-26 17:19:15.957 2024-02-26 17:19:15.957 9000 TIP 439586 18680 6075304 2024-02-26 17:19:29.56 2024-02-26 17:19:29.56 1000 FEE 439298 18618 6075305 2024-02-26 17:19:29.56 2024-02-26 17:19:29.56 9000 TIP 439298 11522 6075314 2024-02-26 17:19:31.8 2024-02-26 17:19:31.8 9000 FEE 439390 10342 6075315 2024-02-26 17:19:31.8 2024-02-26 17:19:31.8 81000 TIP 439390 16788 6075316 2024-02-26 17:19:35.417 2024-02-26 17:19:35.417 21000 FEE 439638 21609 6075317 2024-02-26 17:19:35.417 2024-02-26 17:19:35.417 189000 TIP 439638 12708 6075338 2024-02-26 17:20:00.695 2024-02-26 17:20:00.695 1000 FEE 439295 14857 6075339 2024-02-26 17:20:00.695 2024-02-26 17:20:00.695 9000 TIP 439295 1394 6075344 2024-02-26 17:20:19.217 2024-02-26 17:20:19.217 200 FEE 439315 11873 6075345 2024-02-26 17:20:19.217 2024-02-26 17:20:19.217 1800 TIP 439315 5725 6075357 2024-02-26 17:21:07.865 2024-02-26 17:21:07.865 1000 FEE 439639 19572 6075358 2024-02-26 17:21:07.865 2024-02-26 17:21:07.865 9000 TIP 439639 15196 6075382 2024-02-26 17:22:02.291 2024-02-26 17:22:02.291 1000 FEE 439656 19378 6075397 2024-02-26 17:26:00.078 2024-02-26 17:26:00.078 1000 FEE 439621 18735 6075398 2024-02-26 17:26:00.078 2024-02-26 17:26:00.078 9000 TIP 439621 8059 6075401 2024-02-26 17:26:24.284 2024-02-26 17:26:24.284 1000 FEE 439658 9985 6075402 2024-02-26 17:26:24.284 2024-02-26 17:26:24.284 9000 TIP 439658 12821 6075426 2024-02-26 17:26:53.886 2024-02-26 17:26:53.886 2100 FEE 439413 17798 6075427 2024-02-26 17:26:53.886 2024-02-26 17:26:53.886 18900 TIP 439413 2829 6075454 2024-02-26 17:28:09.696 2024-02-26 17:28:09.696 1000 FEE 439663 18219 6075472 2024-02-26 17:29:20.366 2024-02-26 17:29:20.366 2100 FEE 439624 13169 6075473 2024-02-26 17:29:20.366 2024-02-26 17:29:20.366 18900 TIP 439624 15594 6075474 2024-02-26 17:29:21.307 2024-02-26 17:29:21.307 1000 FEE 439667 19494 6075487 2024-02-26 17:31:01.831 2024-02-26 17:31:01.831 2100 FEE 439043 21612 6075488 2024-02-26 17:31:01.831 2024-02-26 17:31:01.831 18900 TIP 439043 20143 6075514 2024-02-26 17:32:52.586 2024-02-26 17:32:52.586 1000 FEE 439669 20198 6074813 2024-02-26 16:38:21.098 2024-02-26 16:38:21.098 9900 TIP 439443 17535 6074816 2024-02-26 16:38:21.926 2024-02-26 16:38:21.926 1100 FEE 439513 19943 6074817 2024-02-26 16:38:21.926 2024-02-26 16:38:21.926 9900 TIP 439513 20220 6074830 2024-02-26 16:38:23.92 2024-02-26 16:38:23.92 1100 FEE 439390 1741 6074831 2024-02-26 16:38:23.92 2024-02-26 16:38:23.92 9900 TIP 439390 20090 6074868 2024-02-26 16:39:26.249 2024-02-26 16:39:26.249 1100 FEE 438583 21063 6074869 2024-02-26 16:39:26.249 2024-02-26 16:39:26.249 9900 TIP 438583 19995 6074872 2024-02-26 16:39:42.69 2024-02-26 16:39:42.69 1000 FEE 439590 18426 6074898 2024-02-26 16:40:58.795 2024-02-26 16:40:58.795 1000 FEE 439485 669 6074899 2024-02-26 16:40:58.795 2024-02-26 16:40:58.795 9000 TIP 439485 9352 6074916 2024-02-26 16:43:40.91 2024-02-26 16:43:40.91 1100 FEE 429724 14941 6074917 2024-02-26 16:43:40.91 2024-02-26 16:43:40.91 9900 TIP 429724 20751 6074974 2024-02-26 16:49:18.504 2024-02-26 16:49:18.504 1000 FEE 439513 17291 6074975 2024-02-26 16:49:18.504 2024-02-26 16:49:18.504 9000 TIP 439513 15336 6074976 2024-02-26 16:49:18.892 2024-02-26 16:49:18.892 1000 FEE 439513 1286 6074977 2024-02-26 16:49:18.892 2024-02-26 16:49:18.892 9000 TIP 439513 15697 6074982 2024-02-26 16:50:21.869 2024-02-26 16:50:21.869 1000 FEE 439602 20754 6075016 2024-02-26 16:55:52.004 2024-02-26 16:55:52.004 7700 FEE 439315 17050 6075017 2024-02-26 16:55:52.004 2024-02-26 16:55:52.004 69300 TIP 439315 15409 6075034 2024-02-26 16:55:53.779 2024-02-26 16:55:53.779 7700 FEE 439315 979 6075035 2024-02-26 16:55:53.779 2024-02-26 16:55:53.779 69300 TIP 439315 15088 6075036 2024-02-26 16:55:54.412 2024-02-26 16:55:54.412 7700 FEE 439315 687 6075037 2024-02-26 16:55:54.412 2024-02-26 16:55:54.412 69300 TIP 439315 11145 6075041 2024-02-26 16:56:34.003 2024-02-26 16:56:34.003 100000 FEE 439610 4345 6075056 2024-02-26 16:57:13.195 2024-02-26 16:57:13.195 1000 FEE 432419 768 6075057 2024-02-26 16:57:13.195 2024-02-26 16:57:13.195 9000 TIP 432419 20523 6075058 2024-02-26 16:57:13.633 2024-02-26 16:57:13.633 1000 FEE 430004 19403 6075059 2024-02-26 16:57:13.633 2024-02-26 16:57:13.633 9000 TIP 430004 20812 6075062 2024-02-26 16:57:14.794 2024-02-26 16:57:14.794 1000 FEE 429593 14795 6075063 2024-02-26 16:57:14.794 2024-02-26 16:57:14.794 9000 TIP 429593 14857 6075091 2024-02-26 16:57:41.873 2024-02-26 16:57:41.873 1000 FEE 438869 5449 6075092 2024-02-26 16:57:41.873 2024-02-26 16:57:41.873 9000 TIP 438869 15213 6075103 2024-02-26 16:58:34.034 2024-02-26 16:58:34.034 3300 FEE 439295 20646 6075104 2024-02-26 16:58:34.034 2024-02-26 16:58:34.034 29700 TIP 439295 11621 6075111 2024-02-26 16:58:43.285 2024-02-26 16:58:43.285 10000 FEE 435606 7978 6075112 2024-02-26 16:58:43.285 2024-02-26 16:58:43.285 90000 TIP 435606 18772 6075121 2024-02-26 17:00:05.511 2024-02-26 17:00:05.511 1000 FEE 439621 16536 6075127 2024-02-26 17:01:57.336 2024-02-26 17:01:57.336 7700 FEE 439422 19502 6075128 2024-02-26 17:01:57.336 2024-02-26 17:01:57.336 69300 TIP 439422 16950 6075167 2024-02-26 17:03:00.041 2024-02-26 17:03:00.041 69000 FEE 439624 21033 6075169 2024-02-26 17:03:15.866 2024-02-26 17:03:15.866 10000 FEE 439623 18819 6075170 2024-02-26 17:03:15.866 2024-02-26 17:03:15.866 90000 TIP 439623 16356 6075183 2024-02-26 17:04:49.212 2024-02-26 17:04:49.212 0 FEE 439625 10591 6075195 2024-02-26 17:08:17.796 2024-02-26 17:08:17.796 42000 FEE 439628 9167 6075199 2024-02-26 17:09:16.472 2024-02-26 17:09:16.472 1000 FEE 439629 4521 6075222 2024-02-26 17:11:33.507 2024-02-26 17:11:33.507 300 FEE 439322 1352 6075223 2024-02-26 17:11:33.507 2024-02-26 17:11:33.507 2700 TIP 439322 4776 6075245 2024-02-26 17:12:01.194 2024-02-26 17:12:01.194 4200 FEE 439628 9246 6075246 2024-02-26 17:12:01.194 2024-02-26 17:12:01.194 37800 TIP 439628 20881 6075263 2024-02-26 17:16:01.416 2024-02-26 17:16:01.416 1000 FEE 439641 683 6075274 2024-02-26 17:17:22.765 2024-02-26 17:17:22.765 1000 FEE 439648 20539 6075289 2024-02-26 17:18:59.705 2024-02-26 17:18:59.705 10100 FEE 439100 21003 6075290 2024-02-26 17:18:59.705 2024-02-26 17:18:59.705 90900 TIP 439100 19506 6075298 2024-02-26 17:19:12.69 2024-02-26 17:19:12.69 100 FEE 439513 20370 6075299 2024-02-26 17:19:12.69 2024-02-26 17:19:12.69 900 TIP 439513 19535 6075324 2024-02-26 17:19:38.504 2024-02-26 17:19:38.504 100 FEE 439315 6360 6075325 2024-02-26 17:19:38.504 2024-02-26 17:19:38.504 900 TIP 439315 7376 6075334 2024-02-26 17:19:47.525 2024-02-26 17:19:47.525 1000 FEE 439401 14657 6075335 2024-02-26 17:19:47.525 2024-02-26 17:19:47.525 9000 TIP 439401 2402 6075336 2024-02-26 17:19:57.926 2024-02-26 17:19:57.926 100 FEE 439100 9705 6075337 2024-02-26 17:19:57.926 2024-02-26 17:19:57.926 900 TIP 439100 769 6075354 2024-02-26 17:20:28.406 2024-02-26 17:20:28.406 100 FEE 439286 12561 6075355 2024-02-26 17:20:28.406 2024-02-26 17:20:28.406 900 TIP 439286 6041 6075369 2024-02-26 17:21:09.148 2024-02-26 17:21:09.148 1000 FEE 439639 20243 6075370 2024-02-26 17:21:09.148 2024-02-26 17:21:09.148 9000 TIP 439639 4973 6075371 2024-02-26 17:21:09.178 2024-02-26 17:21:09.178 1000 FEE 439639 11898 6075372 2024-02-26 17:21:09.178 2024-02-26 17:21:09.178 9000 TIP 439639 10007 6075396 2024-02-26 17:25:48.909 2024-02-26 17:25:48.909 1000 FEE 439660 671 6075409 2024-02-26 17:26:25.965 2024-02-26 17:26:25.965 1000 FEE 439658 14669 6075410 2024-02-26 17:26:25.965 2024-02-26 17:26:25.965 9000 TIP 439658 10112 6075415 2024-02-26 17:26:33.062 2024-02-26 17:26:33.062 3000 FEE 439422 831 6075416 2024-02-26 17:26:33.062 2024-02-26 17:26:33.062 27000 TIP 439422 4126 6075423 2024-02-26 17:26:37.195 2024-02-26 17:26:37.195 1000 FEE 439638 1438 6075424 2024-02-26 17:26:37.195 2024-02-26 17:26:37.195 9000 TIP 439638 16354 6075455 2024-02-26 17:28:18.045 2024-02-26 17:28:18.045 1000 FEE 439664 13931 6075462 2024-02-26 17:29:11.426 2024-02-26 17:29:11.426 1000 FEE 439666 18412 6075463 2024-02-26 17:29:14.823 2024-02-26 17:29:14.823 2100 FEE 439626 21493 6075464 2024-02-26 17:29:14.823 2024-02-26 17:29:14.823 18900 TIP 439626 1549 6075466 2024-02-26 17:29:18.176 2024-02-26 17:29:18.176 2100 FEE 439624 18392 6075467 2024-02-26 17:29:18.176 2024-02-26 17:29:18.176 18900 TIP 439624 11430 6075468 2024-02-26 17:29:18.921 2024-02-26 17:29:18.921 2100 FEE 439624 20162 6075469 2024-02-26 17:29:18.921 2024-02-26 17:29:18.921 18900 TIP 439624 1726 6075477 2024-02-26 17:29:29.567 2024-02-26 17:29:29.567 2500 FEE 439179 1426 6075478 2024-02-26 17:29:29.567 2024-02-26 17:29:29.567 22500 TIP 439179 4076 6075502 2024-02-26 17:32:29.616 2024-02-26 17:32:29.616 800 FEE 439354 21222 6075503 2024-02-26 17:32:29.616 2024-02-26 17:32:29.616 7200 TIP 439354 18472 6075520 2024-02-26 17:33:44.831 2024-02-26 17:33:44.831 1000 FEE 439670 9669 6075539 2024-02-26 17:34:16.267 2024-02-26 17:34:16.267 1000 FEE 439672 11609 6075575 2024-02-26 17:37:05.154 2024-02-26 17:37:05.154 800 FEE 439443 9330 6075576 2024-02-26 17:37:05.154 2024-02-26 17:37:05.154 7200 TIP 439443 17411 6075585 2024-02-26 17:37:08.288 2024-02-26 17:37:08.288 800 FEE 439443 4415 6075586 2024-02-26 17:37:08.288 2024-02-26 17:37:08.288 7200 TIP 439443 19690 6075587 2024-02-26 17:37:08.54 2024-02-26 17:37:08.54 800 FEE 439443 704 6075588 2024-02-26 17:37:08.54 2024-02-26 17:37:08.54 7200 TIP 439443 2088 6075589 2024-02-26 17:37:09.07 2024-02-26 17:37:09.07 800 FEE 439443 13143 6075590 2024-02-26 17:37:09.07 2024-02-26 17:37:09.07 7200 TIP 439443 18528 6075672 2024-02-26 17:47:15.597 2024-02-26 17:47:15.597 100 FEE 435201 17713 6075673 2024-02-26 17:47:15.597 2024-02-26 17:47:15.597 900 TIP 435201 3745 6075722 2024-02-26 17:49:14.235 2024-02-26 17:49:14.235 27900 FEE 439413 1626 6074907 2024-02-26 16:42:04.712 2024-02-26 16:42:04.712 1000 STREAM 141924 18494 6074978 2024-02-26 16:50:05.009 2024-02-26 16:50:05.009 1000 STREAM 141924 17592 6074988 2024-02-26 16:52:05.023 2024-02-26 16:52:05.023 1000 STREAM 141924 7376 6074992 2024-02-26 16:53:05.031 2024-02-26 16:53:05.031 1000 STREAM 141924 9184 6075050 2024-02-26 16:57:05.065 2024-02-26 16:57:05.065 1000 STREAM 141924 7913 6075119 2024-02-26 17:00:05.187 2024-02-26 17:00:05.187 1000 STREAM 141924 1130 6075168 2024-02-26 17:03:05.667 2024-02-26 17:03:05.667 1000 STREAM 141924 2596 6075253 2024-02-26 17:13:03.649 2024-02-26 17:13:03.649 1000 STREAM 141924 14785 6075256 2024-02-26 17:15:03.653 2024-02-26 17:15:03.653 1000 STREAM 141924 3371 6075340 2024-02-26 17:20:03.756 2024-02-26 17:20:03.756 1000 STREAM 141924 1567 6075356 2024-02-26 17:21:03.705 2024-02-26 17:21:03.705 1000 STREAM 141924 7553 6075385 2024-02-26 17:23:03.712 2024-02-26 17:23:03.712 1000 STREAM 141924 13878 6075399 2024-02-26 17:26:03.728 2024-02-26 17:26:03.728 1000 STREAM 141924 17514 6074912 2024-02-26 16:43:04.384 2024-02-26 16:43:04.384 1000 STREAM 141924 15147 6074960 2024-02-26 16:47:04.405 2024-02-26 16:47:04.405 1000 STREAM 141924 15351 6074968 2024-02-26 16:48:04.41 2024-02-26 16:48:04.41 1000 STREAM 141924 16097 6074954 2024-02-26 16:44:04.384 2024-02-26 16:44:04.384 1000 STREAM 141924 640 6074955 2024-02-26 16:45:04.428 2024-02-26 16:45:04.428 1000 STREAM 141924 9350 6074956 2024-02-26 16:46:04.394 2024-02-26 16:46:04.394 1000 STREAM 141924 16442 6074973 2024-02-26 16:49:04.421 2024-02-26 16:49:04.421 1000 STREAM 141924 18269 6075038 2024-02-26 16:56:04.51 2024-02-26 16:56:04.51 1000 STREAM 141924 14515 6075178 2024-02-26 17:04:04.965 2024-02-26 17:04:04.965 1000 STREAM 141924 18932 6074986 2024-02-26 16:51:05.004 2024-02-26 16:51:05.004 1000 STREAM 141924 20258 6074993 2024-02-26 16:54:05.041 2024-02-26 16:54:05.041 1000 STREAM 141924 7510 6074997 2024-02-26 16:55:05.103 2024-02-26 16:55:05.103 1000 STREAM 141924 18241 6075099 2024-02-26 16:58:05.09 2024-02-26 16:58:05.09 1000 STREAM 141924 657 6075124 2024-02-26 17:01:05.107 2024-02-26 17:01:05.107 1000 STREAM 141924 14080 6075129 2024-02-26 17:02:05.113 2024-02-26 17:02:05.113 1000 STREAM 141924 16667 6075044 2024-02-26 16:56:41.579 2024-02-26 16:56:41.579 1000 FEE 435968 19907 6075045 2024-02-26 16:56:41.579 2024-02-26 16:56:41.579 9000 TIP 435968 21457 6075070 2024-02-26 16:57:23.228 2024-02-26 16:57:23.228 1000 FEE 439319 9329 6075071 2024-02-26 16:57:23.228 2024-02-26 16:57:23.228 9000 TIP 439319 17030 6075132 2024-02-26 17:02:20.359 2024-02-26 17:02:20.359 7700 FEE 439586 19854 6075133 2024-02-26 17:02:20.359 2024-02-26 17:02:20.359 69300 TIP 439586 19815 6075136 2024-02-26 17:02:20.89 2024-02-26 17:02:20.89 7700 FEE 439586 11491 6075137 2024-02-26 17:02:20.89 2024-02-26 17:02:20.89 69300 TIP 439586 21521 6075142 2024-02-26 17:02:21.451 2024-02-26 17:02:21.451 7700 FEE 439586 18344 6075143 2024-02-26 17:02:21.451 2024-02-26 17:02:21.451 69300 TIP 439586 902 6075150 2024-02-26 17:02:23.057 2024-02-26 17:02:23.057 7700 FEE 439586 20291 6075151 2024-02-26 17:02:23.057 2024-02-26 17:02:23.057 69300 TIP 439586 19952 6075154 2024-02-26 17:02:23.359 2024-02-26 17:02:23.359 7700 FEE 439586 20276 6075155 2024-02-26 17:02:23.359 2024-02-26 17:02:23.359 69300 TIP 439586 15213 6075160 2024-02-26 17:02:24.061 2024-02-26 17:02:24.061 7700 FEE 439586 16176 6075161 2024-02-26 17:02:24.061 2024-02-26 17:02:24.061 69300 TIP 439586 3461 6075201 2024-02-26 17:10:32.552 2024-02-26 17:10:32.552 1000 FEE 439630 15148 6075220 2024-02-26 17:11:33.236 2024-02-26 17:11:33.236 300 FEE 439322 20301 6075221 2024-02-26 17:11:33.236 2024-02-26 17:11:33.236 2700 TIP 439322 14650 6075234 2024-02-26 17:11:34.397 2024-02-26 17:11:34.397 300 FEE 439322 20430 6075235 2024-02-26 17:11:34.397 2024-02-26 17:11:34.397 2700 TIP 439322 14910 6075236 2024-02-26 17:11:34.575 2024-02-26 17:11:34.575 300 FEE 439322 21033 6075237 2024-02-26 17:11:34.575 2024-02-26 17:11:34.575 2700 TIP 439322 20647 6075240 2024-02-26 17:11:37.079 2024-02-26 17:11:37.079 0 FEE 439631 12265 6075268 2024-02-26 17:16:22.956 2024-02-26 17:16:22.956 1000 FEE 439643 12188 6075310 2024-02-26 17:19:30.75 2024-02-26 17:19:30.75 100 FEE 439390 20826 6075311 2024-02-26 17:19:30.75 2024-02-26 17:19:30.75 900 TIP 439390 13931 6075312 2024-02-26 17:19:30.974 2024-02-26 17:19:30.974 900 FEE 439390 21079 6075313 2024-02-26 17:19:30.974 2024-02-26 17:19:30.974 8100 TIP 439390 6136 6075318 2024-02-26 17:19:37.635 2024-02-26 17:19:37.635 100 FEE 439443 20987 6075319 2024-02-26 17:19:37.635 2024-02-26 17:19:37.635 900 TIP 439443 21612 6075332 2024-02-26 17:19:47.221 2024-02-26 17:19:47.221 1000 FEE 439401 15094 6075333 2024-02-26 17:19:47.221 2024-02-26 17:19:47.221 9000 TIP 439401 18008 6075361 2024-02-26 17:21:08.219 2024-02-26 17:21:08.219 1000 FEE 439639 11967 6075362 2024-02-26 17:21:08.219 2024-02-26 17:21:08.219 9000 TIP 439639 12921 6075379 2024-02-26 17:21:10.254 2024-02-26 17:21:10.254 1000 FEE 439639 27 6075380 2024-02-26 17:21:10.254 2024-02-26 17:21:10.254 9000 TIP 439639 19243 6075390 2024-02-26 17:24:19.067 2024-02-26 17:24:19.067 1000 FEE 439659 21070 6075417 2024-02-26 17:26:36.538 2024-02-26 17:26:36.538 1000 FEE 439638 20647 6075418 2024-02-26 17:26:36.538 2024-02-26 17:26:36.538 9000 TIP 439638 10490 6075421 2024-02-26 17:26:36.96 2024-02-26 17:26:36.96 1000 FEE 439638 18625 6075422 2024-02-26 17:26:36.96 2024-02-26 17:26:36.96 9000 TIP 439638 14225 6075435 2024-02-26 17:27:31.458 2024-02-26 17:27:31.458 2100 FEE 439442 4064 6075436 2024-02-26 17:27:31.458 2024-02-26 17:27:31.458 18900 TIP 439442 5752 6075458 2024-02-26 17:28:49.141 2024-02-26 17:28:49.141 1000 FEE 439665 11897 6075518 2024-02-26 17:33:20.161 2024-02-26 17:33:20.161 1000 FEE 436741 21014 6075519 2024-02-26 17:33:20.161 2024-02-26 17:33:20.161 9000 TIP 436741 672 6075527 2024-02-26 17:33:48.415 2024-02-26 17:33:48.415 800 FEE 439098 19284 6075528 2024-02-26 17:33:48.415 2024-02-26 17:33:48.415 7200 TIP 439098 15139 6075542 2024-02-26 17:35:01.419 2024-02-26 17:35:01.419 5000 FEE 439675 2151 6075567 2024-02-26 17:37:04.098 2024-02-26 17:37:04.098 800 FEE 439443 18815 6075568 2024-02-26 17:37:04.098 2024-02-26 17:37:04.098 7200 TIP 439443 20287 6075571 2024-02-26 17:37:04.568 2024-02-26 17:37:04.568 800 FEE 439443 13527 6075572 2024-02-26 17:37:04.568 2024-02-26 17:37:04.568 7200 TIP 439443 15119 6075573 2024-02-26 17:37:04.786 2024-02-26 17:37:04.786 800 FEE 439443 5293 6075574 2024-02-26 17:37:04.786 2024-02-26 17:37:04.786 7200 TIP 439443 18637 6075579 2024-02-26 17:37:06.409 2024-02-26 17:37:06.409 800 FEE 439443 7773 6075580 2024-02-26 17:37:06.409 2024-02-26 17:37:06.409 7200 TIP 439443 18829 6075591 2024-02-26 17:37:09.307 2024-02-26 17:37:09.307 800 FEE 439443 12819 6075592 2024-02-26 17:37:09.307 2024-02-26 17:37:09.307 7200 TIP 439443 15052 6075605 2024-02-26 17:41:12.214 2024-02-26 17:41:12.214 1000 FEE 439681 649 6075676 2024-02-26 17:47:16.235 2024-02-26 17:47:16.235 100 FEE 435201 2338 6075677 2024-02-26 17:47:16.235 2024-02-26 17:47:16.235 900 TIP 435201 11515 6075687 2024-02-26 17:47:56.567 2024-02-26 17:47:56.567 3100 FEE 439687 10693 6075688 2024-02-26 17:47:56.567 2024-02-26 17:47:56.567 27900 TIP 439687 9916 6075739 2024-02-26 17:51:29.011 2024-02-26 17:51:29.011 1000 FEE 439695 16532 6075762 2024-02-26 17:51:40.046 2024-02-26 17:51:40.046 1000 FEE 439139 6160 6075763 2024-02-26 17:51:40.046 2024-02-26 17:51:40.046 9000 TIP 439139 5306 6075774 2024-02-26 17:51:41.003 2024-02-26 17:51:41.003 1000 FEE 439139 9167 6075775 2024-02-26 17:51:41.003 2024-02-26 17:51:41.003 9000 TIP 439139 925 6075776 2024-02-26 17:51:41.134 2024-02-26 17:51:41.134 1000 FEE 439139 20337 6075777 2024-02-26 17:51:41.134 2024-02-26 17:51:41.134 9000 TIP 439139 21458 6075804 2024-02-26 17:51:43.245 2024-02-26 17:51:43.245 1000 FEE 439139 8045 6075805 2024-02-26 17:51:43.245 2024-02-26 17:51:43.245 9000 TIP 439139 7809 6075818 2024-02-26 17:51:45.104 2024-02-26 17:51:45.104 1000 FEE 439139 20525 6075819 2024-02-26 17:51:45.104 2024-02-26 17:51:45.104 9000 TIP 439139 937 6075824 2024-02-26 17:52:03.8 2024-02-26 17:52:03.8 10000 FEE 439658 21036 6075825 2024-02-26 17:52:03.8 2024-02-26 17:52:03.8 90000 TIP 439658 21406 6075831 2024-02-26 17:53:19.482 2024-02-26 17:53:19.482 10000 FEE 439315 20681 6075832 2024-02-26 17:53:19.482 2024-02-26 17:53:19.482 90000 TIP 439315 18494 6075839 2024-02-26 17:53:23.575 2024-02-26 17:53:23.575 1000 FEE 439139 1286 6075840 2024-02-26 17:53:23.575 2024-02-26 17:53:23.575 9000 TIP 439139 21482 6075843 2024-02-26 17:53:23.907 2024-02-26 17:53:23.907 1000 FEE 439139 11164 6075844 2024-02-26 17:53:23.907 2024-02-26 17:53:23.907 9000 TIP 439139 7119 6075851 2024-02-26 17:53:24.527 2024-02-26 17:53:24.527 1000 FEE 439139 17523 6075114 2024-02-26 16:59:04.517 2024-02-26 16:59:04.517 1000 STREAM 141924 20439 6075186 2024-02-26 17:05:02.982 2024-02-26 17:05:02.982 1000 STREAM 141924 2335 6075189 2024-02-26 17:06:02.993 2024-02-26 17:06:02.993 1000 STREAM 141924 17953 6075190 2024-02-26 17:07:02.993 2024-02-26 17:07:02.993 1000 STREAM 141924 910 6075194 2024-02-26 17:08:03.02 2024-02-26 17:08:03.02 1000 STREAM 141924 20738 6075198 2024-02-26 17:09:03.029 2024-02-26 17:09:03.029 1000 STREAM 141924 2952 6075200 2024-02-26 17:10:05.049 2024-02-26 17:10:05.049 1000 STREAM 141924 3709 6075453 2024-02-26 17:28:03.619 2024-02-26 17:28:03.619 1000 STREAM 141924 19527 6075537 2024-02-26 17:34:05.696 2024-02-26 17:34:05.696 1000 STREAM 141924 1124 6075554 2024-02-26 17:36:03.695 2024-02-26 17:36:03.695 1000 STREAM 141924 16284 6075208 2024-02-26 17:11:20.306 2024-02-26 17:11:20.306 300 FEE 439315 1697 6075209 2024-02-26 17:11:20.306 2024-02-26 17:11:20.306 2700 TIP 439315 761 6075228 2024-02-26 17:11:33.911 2024-02-26 17:11:33.911 300 FEE 439322 9796 6075229 2024-02-26 17:11:33.911 2024-02-26 17:11:33.911 2700 TIP 439322 18264 6075247 2024-02-26 17:12:01.601 2024-02-26 17:12:01.601 2100 FEE 439631 21400 6075248 2024-02-26 17:12:01.601 2024-02-26 17:12:01.601 18900 TIP 439631 15243 6075259 2024-02-26 17:15:32.344 2024-02-26 17:15:32.344 100000 FEE 439639 18178 6075282 2024-02-26 17:18:03.339 2024-02-26 17:18:03.339 500 FEE 439580 4502 6075283 2024-02-26 17:18:03.339 2024-02-26 17:18:03.339 4500 TIP 439580 12158 6075330 2024-02-26 17:19:46.728 2024-02-26 17:19:46.728 1000 FEE 439401 16289 6075331 2024-02-26 17:19:46.728 2024-02-26 17:19:46.728 9000 TIP 439401 15045 6075348 2024-02-26 17:20:22.177 2024-02-26 17:20:22.177 100 FEE 439263 5646 6075349 2024-02-26 17:20:22.177 2024-02-26 17:20:22.177 900 TIP 439263 15060 6075377 2024-02-26 17:21:10.066 2024-02-26 17:21:10.066 1000 FEE 439639 16667 6075378 2024-02-26 17:21:10.066 2024-02-26 17:21:10.066 9000 TIP 439639 21292 6075394 2024-02-26 17:25:06.162 2024-02-26 17:25:06.162 100 FEE 439656 16876 6075395 2024-02-26 17:25:06.162 2024-02-26 17:25:06.162 900 TIP 439656 5942 6075400 2024-02-26 17:26:21.875 2024-02-26 17:26:21.875 1000 FEE 439661 17046 6075413 2024-02-26 17:26:26.329 2024-02-26 17:26:26.329 1000 FEE 439658 19996 6075414 2024-02-26 17:26:26.329 2024-02-26 17:26:26.329 9000 TIP 439658 20776 6075419 2024-02-26 17:26:36.819 2024-02-26 17:26:36.819 1000 FEE 439638 21371 6075420 2024-02-26 17:26:36.819 2024-02-26 17:26:36.819 9000 TIP 439638 2681 6075425 2024-02-26 17:26:39.955 2024-02-26 17:26:39.955 1000 FEE 439662 6300 6075431 2024-02-26 17:27:24.702 2024-02-26 17:27:24.702 2100 FEE 439601 5069 6075432 2024-02-26 17:27:24.702 2024-02-26 17:27:24.702 18900 TIP 439601 20663 6075433 2024-02-26 17:27:25.519 2024-02-26 17:27:25.519 2100 FEE 439637 15662 6075434 2024-02-26 17:27:25.519 2024-02-26 17:27:25.519 18900 TIP 439637 21212 6075441 2024-02-26 17:27:48.67 2024-02-26 17:27:48.67 2100 FEE 439624 13987 6075442 2024-02-26 17:27:48.67 2024-02-26 17:27:48.67 18900 TIP 439624 21263 6075475 2024-02-26 17:29:22.003 2024-02-26 17:29:22.003 2100 FEE 439624 635 6075476 2024-02-26 17:29:22.003 2024-02-26 17:29:22.003 18900 TIP 439624 18392 6075510 2024-02-26 17:32:31.525 2024-02-26 17:32:31.525 800 FEE 439354 9796 6075511 2024-02-26 17:32:31.525 2024-02-26 17:32:31.525 7200 TIP 439354 654 6075521 2024-02-26 17:33:47.751 2024-02-26 17:33:47.751 800 FEE 439098 15833 6075522 2024-02-26 17:33:47.751 2024-02-26 17:33:47.751 7200 TIP 439098 2775 6075523 2024-02-26 17:33:47.92 2024-02-26 17:33:47.92 800 FEE 439098 21575 6075524 2024-02-26 17:33:47.92 2024-02-26 17:33:47.92 7200 TIP 439098 18539 6075551 2024-02-26 17:35:29.317 2024-02-26 17:35:29.317 100000 FEE 439677 2674 6075552 2024-02-26 17:35:43.633 2024-02-26 17:35:43.633 2600 FEE 439298 15160 6075553 2024-02-26 17:35:43.633 2024-02-26 17:35:43.633 23400 TIP 439298 10698 6075556 2024-02-26 17:36:30.927 2024-02-26 17:36:30.927 2500 FEE 439043 18892 6075557 2024-02-26 17:36:30.927 2024-02-26 17:36:30.927 22500 TIP 439043 15719 6075558 2024-02-26 17:36:31.622 2024-02-26 17:36:31.622 2500 FEE 439043 19535 6075559 2024-02-26 17:36:31.622 2024-02-26 17:36:31.622 22500 TIP 439043 650 6075564 2024-02-26 17:36:38.497 2024-02-26 17:36:38.497 2600 FEE 439401 19378 6075565 2024-02-26 17:36:38.497 2024-02-26 17:36:38.497 23400 TIP 439401 10280 6075598 2024-02-26 17:39:36.242 2024-02-26 17:39:36.242 30000 FEE 439655 1038 6075599 2024-02-26 17:39:36.242 2024-02-26 17:39:36.242 270000 TIP 439655 20222 6075606 2024-02-26 17:41:23.475 2024-02-26 17:41:23.475 2100 FEE 439640 19541 6075607 2024-02-26 17:41:23.475 2024-02-26 17:41:23.475 18900 TIP 439640 2773 6075610 2024-02-26 17:41:57.537 2024-02-26 17:41:57.537 2500 FEE 439658 2233 6075611 2024-02-26 17:41:57.537 2024-02-26 17:41:57.537 22500 TIP 439658 9307 6075624 2024-02-26 17:43:43.766 2024-02-26 17:43:43.766 1000 FEE 439422 9246 6075625 2024-02-26 17:43:43.766 2024-02-26 17:43:43.766 9000 TIP 439422 19038 6075632 2024-02-26 17:44:12.217 2024-02-26 17:44:12.217 1000 FEE 439685 1175 6075642 2024-02-26 17:44:29.194 2024-02-26 17:44:29.194 10000 FEE 439608 722 6075643 2024-02-26 17:44:29.194 2024-02-26 17:44:29.194 90000 TIP 439608 19553 6075657 2024-02-26 17:45:15.643 2024-02-26 17:45:15.643 2100 FEE 439548 2361 6075658 2024-02-26 17:45:15.643 2024-02-26 17:45:15.643 18900 TIP 439548 9342 6075678 2024-02-26 17:47:16.781 2024-02-26 17:47:16.781 100 FEE 435201 15588 6075679 2024-02-26 17:47:16.781 2024-02-26 17:47:16.781 900 TIP 435201 18500 6075701 2024-02-26 17:48:29.458 2024-02-26 17:48:29.458 2100 FEE 439472 17365 6075702 2024-02-26 17:48:29.458 2024-02-26 17:48:29.458 18900 TIP 439472 19138 6075703 2024-02-26 17:48:32.76 2024-02-26 17:48:32.76 2100 FEE 439390 8998 6075704 2024-02-26 17:48:32.76 2024-02-26 17:48:32.76 18900 TIP 439390 20681 6075705 2024-02-26 17:48:40.857 2024-02-26 17:48:40.857 100 FEE 439638 2061 6075706 2024-02-26 17:48:40.857 2024-02-26 17:48:40.857 900 TIP 439638 19905 6075724 2024-02-26 17:49:19.533 2024-02-26 17:49:19.533 100000 FEE 439691 8385 6075728 2024-02-26 17:50:05.645 2024-02-26 17:50:05.645 2100 FEE 439677 15536 6075729 2024-02-26 17:50:05.645 2024-02-26 17:50:05.645 18900 TIP 439677 18269 6075740 2024-02-26 17:51:37.264 2024-02-26 17:51:37.264 2100 FEE 439677 3409 6075741 2024-02-26 17:51:37.264 2024-02-26 17:51:37.264 18900 TIP 439677 17568 6075764 2024-02-26 17:51:40.156 2024-02-26 17:51:40.156 1000 FEE 439139 1738 6075765 2024-02-26 17:51:40.156 2024-02-26 17:51:40.156 9000 TIP 439139 12422 6075792 2024-02-26 17:51:42.35 2024-02-26 17:51:42.35 1000 FEE 439139 1603 6075793 2024-02-26 17:51:42.35 2024-02-26 17:51:42.35 9000 TIP 439139 7389 6075808 2024-02-26 17:51:43.82 2024-02-26 17:51:43.82 2000 FEE 439139 14959 6075809 2024-02-26 17:51:43.82 2024-02-26 17:51:43.82 18000 TIP 439139 5758 6075875 2024-02-26 17:53:26.678 2024-02-26 17:53:26.678 1000 FEE 439139 9347 6075876 2024-02-26 17:53:26.678 2024-02-26 17:53:26.678 9000 TIP 439139 18426 6075887 2024-02-26 17:53:27.746 2024-02-26 17:53:27.746 1000 FEE 439139 15049 6075888 2024-02-26 17:53:27.746 2024-02-26 17:53:27.746 9000 TIP 439139 5427 6075949 2024-02-26 18:06:38.363 2024-02-26 18:06:38.363 1000 FEE 439582 20310 6075950 2024-02-26 18:06:38.363 2024-02-26 18:06:38.363 9000 TIP 439582 1697 6076010 2024-02-26 18:08:33.05 2024-02-26 18:08:33.05 1000 FEE 439390 1745 6076011 2024-02-26 18:08:33.05 2024-02-26 18:08:33.05 9000 TIP 439390 21379 6076023 2024-02-26 18:09:15.925 2024-02-26 18:09:15.925 1000 FEE 439661 624 6076024 2024-02-26 18:09:15.925 2024-02-26 18:09:15.925 9000 TIP 439661 19465 6076032 2024-02-26 18:10:04.174 2024-02-26 18:10:04.174 1000 FEE 439277 20998 6076033 2024-02-26 18:10:04.174 2024-02-26 18:10:04.174 9000 TIP 439277 19841 6076071 2024-02-26 18:14:18.607 2024-02-26 18:14:18.607 3300 FEE 439663 6136 6076072 2024-02-26 18:14:18.607 2024-02-26 18:14:18.607 29700 TIP 439663 18660 6076077 2024-02-26 18:15:46.73 2024-02-26 18:15:46.73 100 FEE 439390 1609 6076078 2024-02-26 18:15:46.73 2024-02-26 18:15:46.73 900 TIP 439390 15488 6076079 2024-02-26 18:15:49.379 2024-02-26 18:15:49.379 100 FEE 439513 15386 6076080 2024-02-26 18:15:49.379 2024-02-26 18:15:49.379 900 TIP 439513 6533 6076101 2024-02-26 18:18:03.873 2024-02-26 18:18:03.873 10000 FEE 439719 7891 6076104 2024-02-26 18:19:05.018 2024-02-26 18:19:05.018 3000 FEE 439718 16505 6076105 2024-02-26 18:19:05.018 2024-02-26 18:19:05.018 27000 TIP 439718 1800 6076118 2024-02-26 18:20:02.873 2024-02-26 18:20:02.873 3000 FEE 439716 1480 6076119 2024-02-26 18:20:02.873 2024-02-26 18:20:02.873 27000 TIP 439716 3417 6076126 2024-02-26 18:20:30.487 2024-02-26 18:20:30.487 2100 FEE 439390 11477 6075249 2024-02-26 17:12:03.651 2024-02-26 17:12:03.651 1000 STREAM 141924 21145 6075255 2024-02-26 17:14:03.656 2024-02-26 17:14:03.656 1000 STREAM 141924 18984 6075264 2024-02-26 17:16:03.677 2024-02-26 17:16:03.677 1000 STREAM 141924 837 6075272 2024-02-26 17:17:03.683 2024-02-26 17:17:03.683 1000 STREAM 141924 21547 6075284 2024-02-26 17:18:03.692 2024-02-26 17:18:03.692 1000 STREAM 141924 18897 6075293 2024-02-26 17:19:03.689 2024-02-26 17:19:03.689 1000 STREAM 141924 16724 6075383 2024-02-26 17:22:03.707 2024-02-26 17:22:03.707 1000 STREAM 141924 19890 6075391 2024-02-26 17:25:03.719 2024-02-26 17:25:03.719 1000 STREAM 141924 9200 6075595 2024-02-26 17:38:03.808 2024-02-26 17:38:03.808 1000 STREAM 141924 3439 6075603 2024-02-26 17:41:03.83 2024-02-26 17:41:03.83 1000 STREAM 141924 19463 6075629 2024-02-26 17:44:03.827 2024-02-26 17:44:03.827 1000 STREAM 141924 9529 6075669 2024-02-26 17:47:03.843 2024-02-26 17:47:03.843 1000 STREAM 141924 644 6075826 2024-02-26 17:52:03.851 2024-02-26 17:52:03.851 1000 STREAM 141924 4345 6075374 2024-02-26 17:21:09.687 2024-02-26 17:21:09.687 9000 TIP 439639 7097 6075384 2024-02-26 17:22:52.916 2024-02-26 17:22:52.916 1000 FEE 439657 1310 6075443 2024-02-26 17:27:52.944 2024-02-26 17:27:52.944 1000 FEE 439662 19906 6075444 2024-02-26 17:27:52.944 2024-02-26 17:27:52.944 9000 TIP 439662 19488 6075447 2024-02-26 17:27:54.292 2024-02-26 17:27:54.292 1000 FEE 439662 13622 6075448 2024-02-26 17:27:54.292 2024-02-26 17:27:54.292 9000 TIP 439662 20117 6075459 2024-02-26 17:28:57.128 2024-02-26 17:28:57.128 100 FEE 439644 7125 6075460 2024-02-26 17:28:57.128 2024-02-26 17:28:57.128 900 TIP 439644 1718 6075479 2024-02-26 17:29:35.08 2024-02-26 17:29:35.08 300 FEE 439653 12736 6075480 2024-02-26 17:29:35.08 2024-02-26 17:29:35.08 2700 TIP 439653 4388 6075485 2024-02-26 17:31:01.285 2024-02-26 17:31:01.285 2100 FEE 438946 1825 6075486 2024-02-26 17:31:01.285 2024-02-26 17:31:01.285 18900 TIP 438946 16939 6075492 2024-02-26 17:31:54.498 2024-02-26 17:31:54.498 2100 FEE 439638 7425 6075493 2024-02-26 17:31:54.498 2024-02-26 17:31:54.498 18900 TIP 439638 8998 6075533 2024-02-26 17:33:53.583 2024-02-26 17:33:53.583 1000 FEE 439315 16562 6075534 2024-02-26 17:33:53.583 2024-02-26 17:33:53.583 9000 TIP 439315 7097 6075538 2024-02-26 17:34:06.582 2024-02-26 17:34:06.582 10000 FEE 439671 14404 6075544 2024-02-26 17:35:09.019 2024-02-26 17:35:09.019 2500 FEE 439666 2335 6075545 2024-02-26 17:35:09.019 2024-02-26 17:35:09.019 22500 TIP 439666 7960 6075562 2024-02-26 17:36:34.429 2024-02-26 17:36:34.429 2500 FEE 439043 21329 6075563 2024-02-26 17:36:34.429 2024-02-26 17:36:34.429 22500 TIP 439043 8472 6075626 2024-02-26 17:43:47.621 2024-02-26 17:43:47.621 1000 FEE 439684 21599 6075636 2024-02-26 17:44:14.295 2024-02-26 17:44:14.295 1600 FEE 439674 18625 6075637 2024-02-26 17:44:14.295 2024-02-26 17:44:14.295 14400 TIP 439674 18690 6075644 2024-02-26 17:44:30.368 2024-02-26 17:44:30.368 10000 FEE 439608 16679 6075645 2024-02-26 17:44:30.368 2024-02-26 17:44:30.368 90000 TIP 439608 16505 6075663 2024-02-26 17:45:53.157 2024-02-26 17:45:53.157 1000 FEE 439687 12422 6075698 2024-02-26 17:48:20.266 2024-02-26 17:48:20.266 9000 FEE 439685 15146 6075699 2024-02-26 17:48:20.266 2024-02-26 17:48:20.266 81000 TIP 439685 16284 6075700 2024-02-26 17:48:26.778 2024-02-26 17:48:26.778 0 FEE 439685 20257 6075732 2024-02-26 17:50:17.182 2024-02-26 17:50:17.182 1000 FEE 439692 17148 6075735 2024-02-26 17:50:41.677 2024-02-26 17:50:41.677 100000 FEE 439693 825 6075756 2024-02-26 17:51:39.56 2024-02-26 17:51:39.56 1000 FEE 439139 15526 6075757 2024-02-26 17:51:39.56 2024-02-26 17:51:39.56 9000 TIP 439139 17446 6075758 2024-02-26 17:51:39.696 2024-02-26 17:51:39.696 1000 FEE 439139 15088 6075759 2024-02-26 17:51:39.696 2024-02-26 17:51:39.696 9000 TIP 439139 7983 6075772 2024-02-26 17:51:40.86 2024-02-26 17:51:40.86 1000 FEE 439139 2111 6075773 2024-02-26 17:51:40.86 2024-02-26 17:51:40.86 9000 TIP 439139 18919 6075847 2024-02-26 17:53:24.255 2024-02-26 17:53:24.255 2100 FEE 439667 11938 6075848 2024-02-26 17:53:24.255 2024-02-26 17:53:24.255 18900 TIP 439667 680 6075857 2024-02-26 17:53:25.065 2024-02-26 17:53:25.065 1000 FEE 439139 4474 6075858 2024-02-26 17:53:25.065 2024-02-26 17:53:25.065 9000 TIP 439139 9985 6075863 2024-02-26 17:53:25.684 2024-02-26 17:53:25.684 1000 FEE 439139 9418 6075864 2024-02-26 17:53:25.684 2024-02-26 17:53:25.684 9000 TIP 439139 1814 6075899 2024-02-26 17:53:28.655 2024-02-26 17:53:28.655 1000 FEE 439139 2101 6075900 2024-02-26 17:53:28.655 2024-02-26 17:53:28.655 9000 TIP 439139 2639 6075920 2024-02-26 17:56:50.683 2024-02-26 17:56:50.683 100000 FEE 439699 8284 6075922 2024-02-26 17:57:03.343 2024-02-26 17:57:03.343 1000 FEE 439700 1433 6075933 2024-02-26 18:02:42.881 2024-02-26 18:02:42.881 97000 FEE 439702 5942 6075940 2024-02-26 18:05:26.348 2024-02-26 18:05:26.348 4000 FEE 439679 15115 6075941 2024-02-26 18:05:26.348 2024-02-26 18:05:26.348 36000 TIP 439679 660 6075957 2024-02-26 18:07:27.106 2024-02-26 18:07:27.106 7100 FEE 419612 16289 6075958 2024-02-26 18:07:27.106 2024-02-26 18:07:27.106 63900 TIP 419612 11328 6075975 2024-02-26 18:07:41.85 2024-02-26 18:07:41.85 1000 FEE 439691 21521 6075976 2024-02-26 18:07:41.85 2024-02-26 18:07:41.85 9000 TIP 439691 21037 6075977 2024-02-26 18:07:42.081 2024-02-26 18:07:42.081 1000 FEE 439691 631 6075978 2024-02-26 18:07:42.081 2024-02-26 18:07:42.081 9000 TIP 439691 8569 6075981 2024-02-26 18:07:42.495 2024-02-26 18:07:42.495 1000 FEE 439691 10280 6075982 2024-02-26 18:07:42.495 2024-02-26 18:07:42.495 9000 TIP 439691 6573 6075983 2024-02-26 18:07:43.834 2024-02-26 18:07:43.834 1000 FEE 439691 18280 6075984 2024-02-26 18:07:43.834 2024-02-26 18:07:43.834 9000 TIP 439691 17392 6076027 2024-02-26 18:09:24.337 2024-02-26 18:09:24.337 5000 FEE 439691 15139 6076028 2024-02-26 18:09:24.337 2024-02-26 18:09:24.337 45000 TIP 439691 11898 6076036 2024-02-26 18:10:24.861 2024-02-26 18:10:24.861 1000 FEE 439707 686 6076081 2024-02-26 18:15:49.88 2024-02-26 18:15:49.88 0 FEE 439716 16571 6076111 2024-02-26 18:19:28.495 2024-02-26 18:19:28.495 9000 FEE 439701 21424 6076112 2024-02-26 18:19:28.495 2024-02-26 18:19:28.495 81000 TIP 439701 1658 6076113 2024-02-26 18:20:02.049 2024-02-26 18:20:02.049 100 FEE 439586 20439 6076114 2024-02-26 18:20:02.049 2024-02-26 18:20:02.049 900 TIP 439586 1624 6076120 2024-02-26 18:20:19.679 2024-02-26 18:20:19.679 2500 FEE 439684 16788 6076121 2024-02-26 18:20:19.679 2024-02-26 18:20:19.679 22500 TIP 439684 7674 6076124 2024-02-26 18:20:21.956 2024-02-26 18:20:21.956 9000 FEE 439586 654 6076125 2024-02-26 18:20:21.956 2024-02-26 18:20:21.956 81000 TIP 439586 6688 6076130 2024-02-26 18:20:34.114 2024-02-26 18:20:34.114 2100 FEE 439513 12122 6076131 2024-02-26 18:20:34.114 2024-02-26 18:20:34.114 18900 TIP 439513 19030 6076160 2024-02-26 18:22:12.712 2024-02-26 18:22:12.712 120000 FEE 439723 17710 6076198 2024-02-26 18:25:06.21 2024-02-26 18:25:06.21 2100 FEE 439724 20225 6076199 2024-02-26 18:25:06.21 2024-02-26 18:25:06.21 18900 TIP 439724 15560 6076234 2024-02-26 18:28:21.206 2024-02-26 18:28:21.206 7700 FEE 439729 1038 6076235 2024-02-26 18:28:21.206 2024-02-26 18:28:21.206 69300 TIP 439729 633 6076282 2024-02-26 18:28:32.338 2024-02-26 18:28:32.338 7700 FEE 439729 12169 6076283 2024-02-26 18:28:32.338 2024-02-26 18:28:32.338 69300 TIP 439729 20258 6076288 2024-02-26 18:28:38.211 2024-02-26 18:28:38.211 7700 FEE 439729 954 6076289 2024-02-26 18:28:38.211 2024-02-26 18:28:38.211 69300 TIP 439729 11992 6076308 2024-02-26 18:28:39.647 2024-02-26 18:28:39.647 7700 FEE 439729 11145 6076309 2024-02-26 18:28:39.647 2024-02-26 18:28:39.647 69300 TIP 439729 16357 6076324 2024-02-26 18:28:40.778 2024-02-26 18:28:40.778 7700 FEE 439729 12736 6076325 2024-02-26 18:28:40.778 2024-02-26 18:28:40.778 69300 TIP 439729 9845 6076344 2024-02-26 18:29:21.311 2024-02-26 18:29:21.311 100 FEE 439728 19309 6076345 2024-02-26 18:29:21.311 2024-02-26 18:29:21.311 900 TIP 439728 811 6076348 2024-02-26 18:29:24.454 2024-02-26 18:29:24.454 100 FEE 439728 21493 6076349 2024-02-26 18:29:24.454 2024-02-26 18:29:24.454 900 TIP 439728 18660 6076407 2024-02-26 18:32:07.482 2024-02-26 18:32:07.482 100 FEE 439210 21401 6076408 2024-02-26 18:32:07.482 2024-02-26 18:32:07.482 900 TIP 439210 11829 6076435 2024-02-26 18:33:21.023 2024-02-26 18:33:21.023 2300 FEE 439729 20094 6075388 2024-02-26 17:24:02.762 2024-02-26 17:24:02.762 1000 STREAM 141924 21446 6075461 2024-02-26 17:29:02.788 2024-02-26 17:29:02.788 1000 STREAM 141924 19034 6075482 2024-02-26 17:30:02.806 2024-02-26 17:30:02.806 1000 STREAM 141924 20523 6075497 2024-02-26 17:32:02.798 2024-02-26 17:32:02.798 1000 STREAM 141924 18664 6075515 2024-02-26 17:33:02.816 2024-02-26 17:33:02.816 1000 STREAM 141924 11073 6075621 2024-02-26 17:43:02.883 2024-02-26 17:43:02.883 1000 STREAM 141924 16270 6075666 2024-02-26 17:46:02.885 2024-02-26 17:46:02.885 1000 STREAM 141924 3642 6076086 2024-02-26 18:16:03.037 2024-02-26 18:16:03.037 1000 STREAM 141924 960 6075428 2024-02-26 17:27:02.762 2024-02-26 17:27:02.762 1000 STREAM 141924 1474 6075489 2024-02-26 17:31:03.653 2024-02-26 17:31:03.653 1000 STREAM 141924 15160 6075509 2024-02-26 17:32:31.331 2024-02-26 17:32:31.331 7200 TIP 439354 6136 6075546 2024-02-26 17:35:16.089 2024-02-26 17:35:16.089 1000 FEE 436741 20912 6075547 2024-02-26 17:35:16.089 2024-02-26 17:35:16.089 9000 TIP 436741 624 6075560 2024-02-26 17:36:33.129 2024-02-26 17:36:33.129 2500 FEE 439043 15577 6075561 2024-02-26 17:36:33.129 2024-02-26 17:36:33.129 22500 TIP 439043 21274 6075577 2024-02-26 17:37:06.152 2024-02-26 17:37:06.152 800 FEE 439443 19292 6075578 2024-02-26 17:37:06.152 2024-02-26 17:37:06.152 7200 TIP 439443 14905 6075583 2024-02-26 17:37:08.059 2024-02-26 17:37:08.059 800 FEE 439443 9364 6075584 2024-02-26 17:37:08.059 2024-02-26 17:37:08.059 7200 TIP 439443 17710 6075608 2024-02-26 17:41:39.613 2024-02-26 17:41:39.613 2500 FEE 439458 2361 6075609 2024-02-26 17:41:39.613 2024-02-26 17:41:39.613 22500 TIP 439458 17183 6075615 2024-02-26 17:42:18.461 2024-02-26 17:42:18.461 27900 FEE 439607 15273 6075616 2024-02-26 17:42:18.461 2024-02-26 17:42:18.461 251100 TIP 439607 641 6075620 2024-02-26 17:42:59.767 2024-02-26 17:42:59.767 1000 FEE 439683 21509 6075627 2024-02-26 17:44:01.23 2024-02-26 17:44:01.23 7700 FEE 430425 10291 6075628 2024-02-26 17:44:01.23 2024-02-26 17:44:01.23 69300 TIP 430425 1617 6075630 2024-02-26 17:44:08.623 2024-02-26 17:44:08.623 7700 FEE 430072 1213 6075631 2024-02-26 17:44:08.623 2024-02-26 17:44:08.623 69300 TIP 430072 6268 6075633 2024-02-26 17:44:12.479 2024-02-26 17:44:12.479 1000 FEE 439686 17693 6075684 2024-02-26 17:47:22.456 2024-02-26 17:47:22.456 2100 FEE 439586 8916 6075685 2024-02-26 17:47:22.456 2024-02-26 17:47:22.456 18900 TIP 439586 12072 6075694 2024-02-26 17:48:19.361 2024-02-26 17:48:19.361 100 FEE 439685 21395 6075695 2024-02-26 17:48:19.361 2024-02-26 17:48:19.361 900 TIP 439685 20776 6075709 2024-02-26 17:48:41.598 2024-02-26 17:48:41.598 9000 FEE 439638 797 6075710 2024-02-26 17:48:41.598 2024-02-26 17:48:41.598 81000 TIP 439638 704 6075711 2024-02-26 17:48:49.564 2024-02-26 17:48:49.564 2100 FEE 439656 1652 6075712 2024-02-26 17:48:49.564 2024-02-26 17:48:49.564 18900 TIP 439656 15762 6075713 2024-02-26 17:48:50.389 2024-02-26 17:48:50.389 2100 FEE 439659 8176 6075714 2024-02-26 17:48:50.389 2024-02-26 17:48:50.389 18900 TIP 439659 16336 6075730 2024-02-26 17:50:10.773 2024-02-26 17:50:10.773 7700 FEE 439685 9863 6075731 2024-02-26 17:50:10.773 2024-02-26 17:50:10.773 69300 TIP 439685 5500 6075736 2024-02-26 17:50:54.154 2024-02-26 17:50:54.154 1000 FEE 439694 9363 6075738 2024-02-26 17:51:18.904 2024-02-26 17:51:18.904 0 FEE 439692 6191 6075752 2024-02-26 17:51:39.279 2024-02-26 17:51:39.279 1000 FEE 439139 7773 6075753 2024-02-26 17:51:39.279 2024-02-26 17:51:39.279 9000 TIP 439139 20812 6075754 2024-02-26 17:51:39.415 2024-02-26 17:51:39.415 1000 FEE 439139 20560 6075755 2024-02-26 17:51:39.415 2024-02-26 17:51:39.415 9000 TIP 439139 16124 6075778 2024-02-26 17:51:41.37 2024-02-26 17:51:41.37 1000 FEE 439139 19118 6075779 2024-02-26 17:51:41.37 2024-02-26 17:51:41.37 9000 TIP 439139 749 6075788 2024-02-26 17:51:42.005 2024-02-26 17:51:42.005 1000 FEE 439139 16747 6075789 2024-02-26 17:51:42.005 2024-02-26 17:51:42.005 9000 TIP 439139 704 6075796 2024-02-26 17:51:42.709 2024-02-26 17:51:42.709 1000 FEE 439139 21605 6075797 2024-02-26 17:51:42.709 2024-02-26 17:51:42.709 9000 TIP 439139 20280 6075800 2024-02-26 17:51:43.067 2024-02-26 17:51:43.067 1000 FEE 439139 19878 6075801 2024-02-26 17:51:43.067 2024-02-26 17:51:43.067 9000 TIP 439139 21563 6075810 2024-02-26 17:51:44.004 2024-02-26 17:51:44.004 2100 FEE 439671 997 6075811 2024-02-26 17:51:44.004 2024-02-26 17:51:44.004 18900 TIP 439671 15463 6075820 2024-02-26 17:51:53.352 2024-02-26 17:51:53.352 2100 FEE 439628 2256 6075821 2024-02-26 17:51:53.352 2024-02-26 17:51:53.352 18900 TIP 439628 14909 6075828 2024-02-26 17:52:26.201 2024-02-26 17:52:26.201 10100 FEE 439443 4225 6075829 2024-02-26 17:52:26.201 2024-02-26 17:52:26.201 90900 TIP 439443 21540 6075835 2024-02-26 17:53:23.279 2024-02-26 17:53:23.279 1000 FEE 439139 20691 6075836 2024-02-26 17:53:23.279 2024-02-26 17:53:23.279 9000 TIP 439139 17673 6075867 2024-02-26 17:53:26.021 2024-02-26 17:53:26.021 1000 FEE 439139 10821 6075868 2024-02-26 17:53:26.021 2024-02-26 17:53:26.021 9000 TIP 439139 11798 6075946 2024-02-26 18:06:33.357 2024-02-26 18:06:33.357 1000 FEE 439705 17124 6075954 2024-02-26 18:07:16.101 2024-02-26 18:07:16.101 1000 FEE 439706 21514 6075955 2024-02-26 18:07:24.331 2024-02-26 18:07:24.331 7100 FEE 417213 19267 6075956 2024-02-26 18:07:24.331 2024-02-26 18:07:24.331 63900 TIP 417213 10731 6075969 2024-02-26 18:07:41.179 2024-02-26 18:07:41.179 1000 FEE 439691 18873 6075970 2024-02-26 18:07:41.179 2024-02-26 18:07:41.179 9000 TIP 439691 4175 6075971 2024-02-26 18:07:41.394 2024-02-26 18:07:41.394 1000 FEE 439691 749 6075972 2024-02-26 18:07:41.394 2024-02-26 18:07:41.394 9000 TIP 439691 20340 6075987 2024-02-26 18:07:44.517 2024-02-26 18:07:44.517 7100 FEE 399842 14015 6075988 2024-02-26 18:07:44.517 2024-02-26 18:07:44.517 63900 TIP 399842 9364 6075999 2024-02-26 18:07:49.044 2024-02-26 18:07:49.044 7100 FEE 425086 5646 6076000 2024-02-26 18:07:49.044 2024-02-26 18:07:49.044 63900 TIP 425086 18629 6076039 2024-02-26 18:10:31.969 2024-02-26 18:10:31.969 1000 FEE 439561 8541 6076040 2024-02-26 18:10:31.969 2024-02-26 18:10:31.969 9000 TIP 439561 1833 6076041 2024-02-26 18:10:36.958 2024-02-26 18:10:36.958 1000 FEE 439528 18114 6076042 2024-02-26 18:10:36.958 2024-02-26 18:10:36.958 9000 TIP 439528 2196 6076049 2024-02-26 18:12:30.773 2024-02-26 18:12:30.773 2100 FEE 438680 2213 6076050 2024-02-26 18:12:30.773 2024-02-26 18:12:30.773 18900 TIP 438680 20183 6076051 2024-02-26 18:12:50.644 2024-02-26 18:12:50.644 1000 FEE 439712 2176 6076067 2024-02-26 18:14:11.649 2024-02-26 18:14:11.649 3300 FEE 439625 17082 6076068 2024-02-26 18:14:11.649 2024-02-26 18:14:11.649 29700 TIP 439625 2718 6076128 2024-02-26 18:20:31.586 2024-02-26 18:20:31.586 2500 FEE 439687 18727 6076129 2024-02-26 18:20:31.586 2024-02-26 18:20:31.586 22500 TIP 439687 940 6076154 2024-02-26 18:21:25.111 2024-02-26 18:21:25.111 2100 FEE 439579 8080 6076155 2024-02-26 18:21:25.111 2024-02-26 18:21:25.111 18900 TIP 439579 21541 6076168 2024-02-26 18:22:40.771 2024-02-26 18:22:40.771 100 FEE 439426 1785 6076169 2024-02-26 18:22:40.771 2024-02-26 18:22:40.771 900 TIP 439426 8176 6076170 2024-02-26 18:22:40.932 2024-02-26 18:22:40.932 900 FEE 439426 2577 6076171 2024-02-26 18:22:40.932 2024-02-26 18:22:40.932 8100 TIP 439426 8998 6076172 2024-02-26 18:22:41.254 2024-02-26 18:22:41.254 9000 FEE 439426 20889 6076173 2024-02-26 18:22:41.254 2024-02-26 18:22:41.254 81000 TIP 439426 17218 6076189 2024-02-26 18:23:35.533 2024-02-26 18:23:35.533 800 FEE 439513 9517 6076190 2024-02-26 18:23:35.533 2024-02-26 18:23:35.533 7200 TIP 439513 11776 6076204 2024-02-26 18:27:17.962 2024-02-26 18:27:17.962 1000 FEE 439728 18368 6076212 2024-02-26 18:27:34.072 2024-02-26 18:27:34.072 10000 DONT_LIKE_THIS 439574 8385 6076218 2024-02-26 18:28:20.253 2024-02-26 18:28:20.253 7700 FEE 439729 20490 6076219 2024-02-26 18:28:20.253 2024-02-26 18:28:20.253 69300 TIP 439729 18784 6076254 2024-02-26 18:28:28.538 2024-02-26 18:28:28.538 7700 FEE 439729 756 6076255 2024-02-26 18:28:28.538 2024-02-26 18:28:28.538 69300 TIP 439729 5852 6076292 2024-02-26 18:28:38.518 2024-02-26 18:28:38.518 7700 FEE 439729 9482 6076293 2024-02-26 18:28:38.518 2024-02-26 18:28:38.518 69300 TIP 439729 19581 6076332 2024-02-26 18:28:46.532 2024-02-26 18:28:46.532 900 FEE 439612 21164 6076333 2024-02-26 18:28:46.532 2024-02-26 18:28:46.532 8100 TIP 439612 836 6076364 2024-02-26 18:29:55.455 2024-02-26 18:29:55.455 900 FEE 439640 16633 6076365 2024-02-26 18:29:55.455 2024-02-26 18:29:55.455 8100 TIP 439640 4345 6076378 2024-02-26 18:30:22.108 2024-02-26 18:30:22.108 100 FEE 439655 12122 6076379 2024-02-26 18:30:22.108 2024-02-26 18:30:22.108 900 TIP 439655 8448 6076386 2024-02-26 18:30:47.388 2024-02-26 18:30:47.388 100 FEE 439699 8385 6075516 2024-02-26 17:33:18.4 2024-02-26 17:33:18.4 1000 FEE 436641 19378 6075517 2024-02-26 17:33:18.4 2024-02-26 17:33:18.4 9000 TIP 436641 20889 6075531 2024-02-26 17:33:53.381 2024-02-26 17:33:53.381 1000 FEE 439315 21578 6075532 2024-02-26 17:33:53.381 2024-02-26 17:33:53.381 9000 TIP 439315 14308 6075548 2024-02-26 17:35:18.154 2024-02-26 17:35:18.154 2500 FEE 439624 15213 6075549 2024-02-26 17:35:18.154 2024-02-26 17:35:18.154 22500 TIP 439624 13599 6075569 2024-02-26 17:37:04.314 2024-02-26 17:37:04.314 800 FEE 439443 15577 6075570 2024-02-26 17:37:04.314 2024-02-26 17:37:04.314 7200 TIP 439443 16948 6075581 2024-02-26 17:37:07.83 2024-02-26 17:37:07.83 800 FEE 439443 16329 6075582 2024-02-26 17:37:07.83 2024-02-26 17:37:07.83 7200 TIP 439443 5759 6075593 2024-02-26 17:37:09.676 2024-02-26 17:37:09.676 800 FEE 439443 4027 6075594 2024-02-26 17:37:09.676 2024-02-26 17:37:09.676 7200 TIP 439443 13174 6075596 2024-02-26 17:38:15.424 2024-02-26 17:38:15.424 1000 FEE 439679 20646 6075613 2024-02-26 17:42:17.409 2024-02-26 17:42:17.409 3100 FEE 439607 7125 6075614 2024-02-26 17:42:17.409 2024-02-26 17:42:17.409 27900 TIP 439607 899 6075618 2024-02-26 17:42:57.61 2024-02-26 17:42:57.61 3200 FEE 439661 11996 6075619 2024-02-26 17:42:57.61 2024-02-26 17:42:57.61 28800 TIP 439661 11515 6075622 2024-02-26 17:43:38.118 2024-02-26 17:43:38.118 1000 FEE 439422 16276 6075623 2024-02-26 17:43:38.118 2024-02-26 17:43:38.118 9000 TIP 439422 733 6075646 2024-02-26 17:44:47.417 2024-02-26 17:44:47.417 10000 FEE 439605 1454 6075647 2024-02-26 17:44:47.417 2024-02-26 17:44:47.417 90000 TIP 439605 946 6075648 2024-02-26 17:44:48.16 2024-02-26 17:44:48.16 10000 FEE 439605 20231 6075649 2024-02-26 17:44:48.16 2024-02-26 17:44:48.16 90000 TIP 439605 9107 6075659 2024-02-26 17:45:18.1 2024-02-26 17:45:18.1 2100 FEE 439443 18051 6075660 2024-02-26 17:45:18.1 2024-02-26 17:45:18.1 18900 TIP 439443 21166 6075674 2024-02-26 17:47:16.222 2024-02-26 17:47:16.222 2100 FEE 439686 5495 6075675 2024-02-26 17:47:16.222 2024-02-26 17:47:16.222 18900 TIP 439686 17519 6075682 2024-02-26 17:47:17.633 2024-02-26 17:47:17.633 100 FEE 435201 3360 6075683 2024-02-26 17:47:17.633 2024-02-26 17:47:17.633 900 TIP 435201 19243 6075696 2024-02-26 17:48:19.574 2024-02-26 17:48:19.574 900 FEE 439685 18124 6075697 2024-02-26 17:48:19.574 2024-02-26 17:48:19.574 8100 TIP 439685 18772 6075707 2024-02-26 17:48:41.014 2024-02-26 17:48:41.014 900 FEE 439638 1180 6075708 2024-02-26 17:48:41.014 2024-02-26 17:48:41.014 8100 TIP 439638 1833 6075715 2024-02-26 17:48:52.927 2024-02-26 17:48:52.927 2100 FEE 439667 21523 6075716 2024-02-26 17:48:52.927 2024-02-26 17:48:52.927 18900 TIP 439667 2711 6075725 2024-02-26 17:50:02.081 2024-02-26 17:50:02.081 2100 FEE 439691 4250 6075726 2024-02-26 17:50:02.081 2024-02-26 17:50:02.081 18900 TIP 439691 14258 6075733 2024-02-26 17:50:29.07 2024-02-26 17:50:29.07 2100 FEE 439586 15588 6075734 2024-02-26 17:50:29.07 2024-02-26 17:50:29.07 18900 TIP 439586 14260 6075746 2024-02-26 17:51:38.591 2024-02-26 17:51:38.591 1000 FEE 439139 19148 6075747 2024-02-26 17:51:38.591 2024-02-26 17:51:38.591 9000 TIP 439139 7746 6075760 2024-02-26 17:51:39.858 2024-02-26 17:51:39.858 1000 FEE 439139 722 6075761 2024-02-26 17:51:39.858 2024-02-26 17:51:39.858 9000 TIP 439139 21547 6075782 2024-02-26 17:51:41.573 2024-02-26 17:51:41.573 1000 FEE 439139 16329 6075783 2024-02-26 17:51:41.573 2024-02-26 17:51:41.573 9000 TIP 439139 10536 6075802 2024-02-26 17:51:43.21 2024-02-26 17:51:43.21 1000 FEE 439139 19732 6075803 2024-02-26 17:51:43.21 2024-02-26 17:51:43.21 9000 TIP 439139 11992 6075814 2024-02-26 17:51:44.26 2024-02-26 17:51:44.26 2000 FEE 439139 2460 6075815 2024-02-26 17:51:44.26 2024-02-26 17:51:44.26 18000 TIP 439139 777 6075845 2024-02-26 17:53:24.212 2024-02-26 17:53:24.212 2000 FEE 439139 11862 6075846 2024-02-26 17:53:24.212 2024-02-26 17:53:24.212 18000 TIP 439139 18402 6075873 2024-02-26 17:53:26.496 2024-02-26 17:53:26.496 1000 FEE 439139 9655 6075874 2024-02-26 17:53:26.496 2024-02-26 17:53:26.496 9000 TIP 439139 20817 6075885 2024-02-26 17:53:27.486 2024-02-26 17:53:27.486 1000 FEE 439139 13042 6075886 2024-02-26 17:53:27.486 2024-02-26 17:53:27.486 9000 TIP 439139 19506 6075893 2024-02-26 17:53:28.154 2024-02-26 17:53:28.154 1000 FEE 439139 699 6075894 2024-02-26 17:53:28.154 2024-02-26 17:53:28.154 9000 TIP 439139 11885 6075897 2024-02-26 17:53:28.478 2024-02-26 17:53:28.478 1000 FEE 439139 21418 6075898 2024-02-26 17:53:28.478 2024-02-26 17:53:28.478 9000 TIP 439139 5761 6075913 2024-02-26 17:53:29.866 2024-02-26 17:53:29.866 1000 FEE 439139 15060 6075914 2024-02-26 17:53:29.866 2024-02-26 17:53:29.866 9000 TIP 439139 8508 6075927 2024-02-26 17:58:58.651 2024-02-26 17:58:58.651 7100 FEE 439616 11091 6075928 2024-02-26 17:58:58.651 2024-02-26 17:58:58.651 63900 TIP 439616 640 6075942 2024-02-26 18:05:36.364 2024-02-26 18:05:36.364 1000 FEE 439704 16830 6075943 2024-02-26 18:05:44.864 2024-02-26 18:05:44.864 10100 FEE 439703 16954 6075944 2024-02-26 18:05:44.864 2024-02-26 18:05:44.864 90900 TIP 439703 18608 6075973 2024-02-26 18:07:41.603 2024-02-26 18:07:41.603 1000 FEE 439691 9982 6075974 2024-02-26 18:07:41.603 2024-02-26 18:07:41.603 9000 TIP 439691 21249 6076006 2024-02-26 18:08:04.45 2024-02-26 18:08:04.45 1000 FEE 439443 8729 6076007 2024-02-26 18:08:04.45 2024-02-26 18:08:04.45 9000 TIP 439443 13767 6076008 2024-02-26 18:08:04.799 2024-02-26 18:08:04.799 1000 FEE 439443 9242 6076009 2024-02-26 18:08:04.799 2024-02-26 18:08:04.799 9000 TIP 439443 1145 6076021 2024-02-26 18:09:11.878 2024-02-26 18:09:11.878 2100 FEE 439321 21062 6076022 2024-02-26 18:09:11.878 2024-02-26 18:09:11.878 18900 TIP 439321 21509 6076037 2024-02-26 18:10:31.438 2024-02-26 18:10:31.438 1000 FEE 439565 19661 6076038 2024-02-26 18:10:31.438 2024-02-26 18:10:31.438 9000 TIP 439565 19199 6076053 2024-02-26 18:13:09.866 2024-02-26 18:13:09.866 100000 FEE 439713 12220 6076054 2024-02-26 18:13:40.879 2024-02-26 18:13:40.879 4200 FEE 439472 16633 6076055 2024-02-26 18:13:40.879 2024-02-26 18:13:40.879 37800 TIP 439472 14795 6075525 2024-02-26 17:33:48.142 2024-02-26 17:33:48.142 800 FEE 439098 2508 6075526 2024-02-26 17:33:48.142 2024-02-26 17:33:48.142 7200 TIP 439098 628 6075540 2024-02-26 17:34:51.897 2024-02-26 17:34:51.897 1000 FEE 439673 17570 6075601 2024-02-26 17:40:31.428 2024-02-26 17:40:31.428 10000 FEE 439655 21413 6075602 2024-02-26 17:40:31.428 2024-02-26 17:40:31.428 90000 TIP 439655 21485 6075604 2024-02-26 17:41:08.566 2024-02-26 17:41:08.566 1000 FEE 439680 1505 6075638 2024-02-26 17:44:19.532 2024-02-26 17:44:19.532 10000 FEE 439607 20109 6075639 2024-02-26 17:44:19.532 2024-02-26 17:44:19.532 90000 TIP 439607 19329 6075651 2024-02-26 17:45:04.741 2024-02-26 17:45:04.741 7700 FEE 429836 4459 6075652 2024-02-26 17:45:04.741 2024-02-26 17:45:04.741 69300 TIP 429836 3396 6075664 2024-02-26 17:45:57.712 2024-02-26 17:45:57.712 2100 FEE 439684 20302 6075665 2024-02-26 17:45:57.712 2024-02-26 17:45:57.712 18900 TIP 439684 19465 6075667 2024-02-26 17:46:51.094 2024-02-26 17:46:51.094 1000 FEE 439688 7587 6075668 2024-02-26 17:46:56.754 2024-02-26 17:46:56.754 1000 FEE 439689 16229 6075670 2024-02-26 17:47:12.51 2024-02-26 17:47:12.51 100 FEE 435223 20603 6075671 2024-02-26 17:47:12.51 2024-02-26 17:47:12.51 900 TIP 435223 19096 6075689 2024-02-26 17:48:00.846 2024-02-26 17:48:00.846 2100 FEE 439644 19286 6075690 2024-02-26 17:48:00.846 2024-02-26 17:48:00.846 18900 TIP 439644 16660 6075692 2024-02-26 17:48:03.474 2024-02-26 17:48:03.474 2100 FEE 439644 1512 6075693 2024-02-26 17:48:03.474 2024-02-26 17:48:03.474 18900 TIP 439644 18225 6075717 2024-02-26 17:48:54.666 2024-02-26 17:48:54.666 2100 FEE 439665 7992 6075718 2024-02-26 17:48:54.666 2024-02-26 17:48:54.666 18900 TIP 439665 19151 6075720 2024-02-26 17:49:12.406 2024-02-26 17:49:12.406 3100 FEE 439413 21063 6075721 2024-02-26 17:49:12.406 2024-02-26 17:49:12.406 27900 TIP 439413 12072 6075766 2024-02-26 17:51:40.51 2024-02-26 17:51:40.51 1000 FEE 439139 7389 6075767 2024-02-26 17:51:40.51 2024-02-26 17:51:40.51 9000 TIP 439139 10409 6075786 2024-02-26 17:51:41.871 2024-02-26 17:51:41.871 1000 FEE 439139 9329 6075787 2024-02-26 17:51:41.871 2024-02-26 17:51:41.871 9000 TIP 439139 4521 6075794 2024-02-26 17:51:42.534 2024-02-26 17:51:42.534 1000 FEE 439139 20066 6075795 2024-02-26 17:51:42.534 2024-02-26 17:51:42.534 9000 TIP 439139 18468 6075798 2024-02-26 17:51:42.874 2024-02-26 17:51:42.874 1000 FEE 439139 624 6075799 2024-02-26 17:51:42.874 2024-02-26 17:51:42.874 9000 TIP 439139 21361 6075806 2024-02-26 17:51:43.404 2024-02-26 17:51:43.404 1000 FEE 439139 7827 6075807 2024-02-26 17:51:43.404 2024-02-26 17:51:43.404 9000 TIP 439139 17082 6075812 2024-02-26 17:51:44.038 2024-02-26 17:51:44.038 1000 FEE 439139 1428 6075813 2024-02-26 17:51:44.038 2024-02-26 17:51:44.038 9000 TIP 439139 828 6075827 2024-02-26 17:52:19.849 2024-02-26 17:52:19.849 1000 FEE 439696 12368 6075833 2024-02-26 17:53:23.119 2024-02-26 17:53:23.119 1000 FEE 439139 11263 6075834 2024-02-26 17:53:23.119 2024-02-26 17:53:23.119 9000 TIP 439139 1983 6075837 2024-02-26 17:53:23.433 2024-02-26 17:53:23.433 1000 FEE 439139 11018 6075838 2024-02-26 17:53:23.433 2024-02-26 17:53:23.433 9000 TIP 439139 6327 6075849 2024-02-26 17:53:24.367 2024-02-26 17:53:24.367 1000 FEE 439139 11153 6075850 2024-02-26 17:53:24.367 2024-02-26 17:53:24.367 9000 TIP 439139 19043 6075859 2024-02-26 17:53:25.383 2024-02-26 17:53:25.383 2000 FEE 439139 17221 6075860 2024-02-26 17:53:25.383 2024-02-26 17:53:25.383 18000 TIP 439139 18472 6075869 2024-02-26 17:53:26.198 2024-02-26 17:53:26.198 1000 FEE 439139 627 6075870 2024-02-26 17:53:26.198 2024-02-26 17:53:26.198 9000 TIP 439139 3504 6075877 2024-02-26 17:53:26.848 2024-02-26 17:53:26.848 1000 FEE 439139 1354 6075878 2024-02-26 17:53:26.848 2024-02-26 17:53:26.848 9000 TIP 439139 16706 6075895 2024-02-26 17:53:28.308 2024-02-26 17:53:28.308 1000 FEE 439139 9166 6075896 2024-02-26 17:53:28.308 2024-02-26 17:53:28.308 9000 TIP 439139 11750 6075901 2024-02-26 17:53:28.853 2024-02-26 17:53:28.853 1000 FEE 439139 19821 6075902 2024-02-26 17:53:28.853 2024-02-26 17:53:28.853 9000 TIP 439139 21047 6075916 2024-02-26 17:54:17.8 2024-02-26 17:54:17.8 1000 FEE 439697 10342 6076012 2024-02-26 18:08:38.771 2024-02-26 18:08:38.771 1000 FEE 439443 18772 6076013 2024-02-26 18:08:38.771 2024-02-26 18:08:38.771 9000 TIP 439443 14515 6076029 2024-02-26 18:09:56.626 2024-02-26 18:09:56.626 1000 FEE 439295 21037 6076030 2024-02-26 18:09:56.626 2024-02-26 18:09:56.626 9000 TIP 439295 14258 6076073 2024-02-26 18:14:58.325 2024-02-26 18:14:58.325 1000 FEE 439716 18265 6076075 2024-02-26 18:15:46.222 2024-02-26 18:15:46.222 100 FEE 439390 1114 6076076 2024-02-26 18:15:46.222 2024-02-26 18:15:46.222 900 TIP 439390 12951 6076084 2024-02-26 18:16:01.019 2024-02-26 18:16:01.019 100 FEE 439586 19622 6076085 2024-02-26 18:16:01.019 2024-02-26 18:16:01.019 900 TIP 439586 20776 6076092 2024-02-26 18:16:30.247 2024-02-26 18:16:30.247 21000 FEE 439693 19842 6076093 2024-02-26 18:16:30.247 2024-02-26 18:16:30.247 189000 TIP 439693 9333 6076106 2024-02-26 18:19:24.512 2024-02-26 18:19:24.512 1000 FEE 439720 5637 6076115 2024-02-26 18:20:02.482 2024-02-26 18:20:02.482 900 FEE 439586 20326 6076116 2024-02-26 18:20:02.482 2024-02-26 18:20:02.482 8100 TIP 439586 1105 6076138 2024-02-26 18:20:44.169 2024-02-26 18:20:44.169 2100 FEE 439638 6594 6076139 2024-02-26 18:20:44.169 2024-02-26 18:20:44.169 18900 TIP 439638 738 6076157 2024-02-26 18:21:36.745 2024-02-26 18:21:36.745 2100 FEE 439584 11714 6076158 2024-02-26 18:21:36.745 2024-02-26 18:21:36.745 18900 TIP 439584 1389 6076200 2024-02-26 18:25:22.185 2024-02-26 18:25:22.185 2100 FEE 439713 21062 6076201 2024-02-26 18:25:22.185 2024-02-26 18:25:22.185 18900 TIP 439713 2748 6076214 2024-02-26 18:28:19.959 2024-02-26 18:28:19.959 15400 FEE 439729 20257 6076215 2024-02-26 18:28:19.959 2024-02-26 18:28:19.959 138600 TIP 439729 20133 6076220 2024-02-26 18:28:20.491 2024-02-26 18:28:20.491 7700 FEE 439729 10060 6076221 2024-02-26 18:28:20.491 2024-02-26 18:28:20.491 69300 TIP 439729 18330 6076236 2024-02-26 18:28:21.323 2024-02-26 18:28:21.323 7700 FEE 439729 6578 6076237 2024-02-26 18:28:21.323 2024-02-26 18:28:21.323 69300 TIP 439729 2338 6076248 2024-02-26 18:28:28.081 2024-02-26 18:28:28.081 7700 FEE 439729 8569 6076249 2024-02-26 18:28:28.081 2024-02-26 18:28:28.081 69300 TIP 439729 20715 6076250 2024-02-26 18:28:28.345 2024-02-26 18:28:28.345 7700 FEE 439729 4083 6076251 2024-02-26 18:28:28.345 2024-02-26 18:28:28.345 69300 TIP 439729 17638 6076264 2024-02-26 18:28:29.306 2024-02-26 18:28:29.306 7700 FEE 439729 2681 6076265 2024-02-26 18:28:29.306 2024-02-26 18:28:29.306 69300 TIP 439729 19158 6076272 2024-02-26 18:28:31.43 2024-02-26 18:28:31.43 100 FEE 439362 13133 6076273 2024-02-26 18:28:31.43 2024-02-26 18:28:31.43 900 TIP 439362 16410 6076278 2024-02-26 18:28:31.593 2024-02-26 18:28:31.593 900 FEE 439362 19815 6076279 2024-02-26 18:28:31.593 2024-02-26 18:28:31.593 8100 TIP 439362 1772 6076280 2024-02-26 18:28:31.698 2024-02-26 18:28:31.698 7700 FEE 439729 20680 6076281 2024-02-26 18:28:31.698 2024-02-26 18:28:31.698 69300 TIP 439729 17494 6076320 2024-02-26 18:28:40.404 2024-02-26 18:28:40.404 7700 FEE 439729 14168 6076321 2024-02-26 18:28:40.404 2024-02-26 18:28:40.404 69300 TIP 439729 1047 6076346 2024-02-26 18:29:24.303 2024-02-26 18:29:24.303 100 FEE 439728 14258 6076347 2024-02-26 18:29:24.303 2024-02-26 18:29:24.303 900 TIP 439728 672 6076350 2024-02-26 18:29:24.503 2024-02-26 18:29:24.503 7700 FEE 439548 16679 6076351 2024-02-26 18:29:24.503 2024-02-26 18:29:24.503 69300 TIP 439548 12808 6076354 2024-02-26 18:29:28.558 2024-02-26 18:29:28.558 7700 FEE 439696 1198 6076355 2024-02-26 18:29:28.558 2024-02-26 18:29:28.558 69300 TIP 439696 827 6076368 2024-02-26 18:30:01.595 2024-02-26 18:30:01.595 10000 FEE 439390 13348 6076369 2024-02-26 18:30:01.595 2024-02-26 18:30:01.595 90000 TIP 439390 730 6076371 2024-02-26 18:30:04.283 2024-02-26 18:30:04.283 100 FEE 439658 794 6075543 2024-02-26 17:35:02.183 2024-02-26 17:35:02.183 1000 STREAM 141924 15063 6075691 2024-02-26 17:48:02.477 2024-02-26 17:48:02.477 1000 STREAM 141924 1571 6075719 2024-02-26 17:49:02.457 2024-02-26 17:49:02.457 1000 STREAM 141924 11819 6075737 2024-02-26 17:51:02.479 2024-02-26 17:51:02.479 1000 STREAM 141924 661 6075830 2024-02-26 17:53:02.513 2024-02-26 17:53:02.513 1000 STREAM 141924 15536 6075918 2024-02-26 17:55:02.494 2024-02-26 17:55:02.494 1000 STREAM 141924 1261 6075919 2024-02-26 17:56:02.493 2024-02-26 17:56:02.493 1000 STREAM 141924 16724 6075923 2024-02-26 17:58:02.5 2024-02-26 17:58:02.5 1000 STREAM 141924 19668 6075930 2024-02-26 18:00:02.561 2024-02-26 18:00:02.561 1000 STREAM 141924 9438 6075937 2024-02-26 18:05:02.531 2024-02-26 18:05:02.531 1000 STREAM 141924 17592 6075945 2024-02-26 18:06:02.575 2024-02-26 18:06:02.575 1000 STREAM 141924 18873 6076001 2024-02-26 18:08:02.579 2024-02-26 18:08:02.579 1000 STREAM 141924 20015 6076047 2024-02-26 18:12:02.585 2024-02-26 18:12:02.585 1000 STREAM 141924 1825 6076052 2024-02-26 18:13:02.583 2024-02-26 18:13:02.583 1000 STREAM 141924 20751 6076063 2024-02-26 18:14:02.587 2024-02-26 18:14:02.587 1000 STREAM 141924 9341 6076100 2024-02-26 18:18:02.585 2024-02-26 18:18:02.585 1000 STREAM 141924 17526 6076103 2024-02-26 18:19:02.596 2024-02-26 18:19:02.596 1000 STREAM 141924 20310 6076117 2024-02-26 18:20:02.631 2024-02-26 18:20:02.631 1000 STREAM 141924 20730 6076159 2024-02-26 18:22:02.594 2024-02-26 18:22:02.594 1000 STREAM 141924 7989 6076175 2024-02-26 18:23:02.603 2024-02-26 18:23:02.603 1000 STREAM 141924 21060 6076197 2024-02-26 18:25:02.64 2024-02-26 18:25:02.64 1000 STREAM 141924 10056 6076334 2024-02-26 18:29:02.648 2024-02-26 18:29:02.648 1000 STREAM 141924 10007 6076370 2024-02-26 18:30:02.701 2024-02-26 18:30:02.701 1000 STREAM 141924 17095 6076392 2024-02-26 18:31:02.663 2024-02-26 18:31:02.663 1000 STREAM 141924 981 6076444 2024-02-26 18:34:02.674 2024-02-26 18:34:02.674 1000 STREAM 141924 17523 6076457 2024-02-26 18:35:02.687 2024-02-26 18:35:02.687 1000 STREAM 141924 19910 6076498 2024-02-26 18:39:02.761 2024-02-26 18:39:02.761 1000 STREAM 141924 770 6076522 2024-02-26 18:44:02.828 2024-02-26 18:44:02.828 1000 STREAM 141924 641 6076545 2024-02-26 18:45:02.843 2024-02-26 18:45:02.843 1000 STREAM 141924 16042 6076558 2024-02-26 18:46:02.836 2024-02-26 18:46:02.836 1000 STREAM 141924 18630 6076568 2024-02-26 18:48:02.833 2024-02-26 18:48:02.833 1000 STREAM 141924 13931 6076579 2024-02-26 18:50:02.856 2024-02-26 18:50:02.856 1000 STREAM 141924 10102 6076588 2024-02-26 18:51:02.849 2024-02-26 18:51:02.849 1000 STREAM 141924 21521 6076594 2024-02-26 18:52:02.859 2024-02-26 18:52:02.859 1000 STREAM 141924 4763 6076681 2024-02-26 19:02:02.905 2024-02-26 19:02:02.905 1000 STREAM 141924 11873 6076709 2024-02-26 19:06:02.944 2024-02-26 19:06:02.944 1000 STREAM 141924 15337 6076744 2024-02-26 19:08:02.944 2024-02-26 19:08:02.944 1000 STREAM 141924 11898 6076763 2024-02-26 19:11:02.977 2024-02-26 19:11:02.977 1000 STREAM 141924 11073 6076773 2024-02-26 19:12:02.981 2024-02-26 19:12:02.981 1000 STREAM 141924 19812 6076783 2024-02-26 19:14:03.004 2024-02-26 19:14:03.004 1000 STREAM 141924 7682 6076818 2024-02-26 19:18:03.041 2024-02-26 19:18:03.041 1000 STREAM 141924 20730 6076844 2024-02-26 19:21:03.043 2024-02-26 19:21:03.043 1000 STREAM 141924 13327 6076865 2024-02-26 19:22:03.049 2024-02-26 19:22:03.049 1000 STREAM 141924 1673 6076870 2024-02-26 19:24:03.075 2024-02-26 19:24:03.075 1000 STREAM 141924 5359 6076889 2024-02-26 19:25:03.075 2024-02-26 19:25:03.075 1000 STREAM 141924 15491 6075566 2024-02-26 17:37:02.825 2024-02-26 17:37:02.825 1000 STREAM 141924 1221 6075597 2024-02-26 17:39:02.845 2024-02-26 17:39:02.845 1000 STREAM 141924 16301 6075600 2024-02-26 17:40:02.866 2024-02-26 17:40:02.866 1000 STREAM 141924 18533 6075612 2024-02-26 17:42:02.869 2024-02-26 17:42:02.869 1000 STREAM 141924 646 6075650 2024-02-26 17:45:02.905 2024-02-26 17:45:02.905 1000 STREAM 141924 19502 6075634 2024-02-26 17:44:12.819 2024-02-26 17:44:12.819 1600 FEE 439666 749 6075635 2024-02-26 17:44:12.819 2024-02-26 17:44:12.819 14400 TIP 439666 20479 6075640 2024-02-26 17:44:27.929 2024-02-26 17:44:27.929 10000 FEE 439608 17221 6075641 2024-02-26 17:44:27.929 2024-02-26 17:44:27.929 90000 TIP 439608 20036 6075653 2024-02-26 17:45:05.099 2024-02-26 17:45:05.099 7700 FEE 429836 19668 6075654 2024-02-26 17:45:05.099 2024-02-26 17:45:05.099 69300 TIP 429836 18518 6075655 2024-02-26 17:45:05.539 2024-02-26 17:45:05.539 15400 FEE 429836 21067 6075656 2024-02-26 17:45:05.539 2024-02-26 17:45:05.539 138600 TIP 429836 6384 6075661 2024-02-26 17:45:49.968 2024-02-26 17:45:49.968 2100 FEE 439655 21131 6075662 2024-02-26 17:45:49.968 2024-02-26 17:45:49.968 18900 TIP 439655 756 6075680 2024-02-26 17:47:17.183 2024-02-26 17:47:17.183 100 FEE 435201 686 6075681 2024-02-26 17:47:17.183 2024-02-26 17:47:17.183 900 TIP 435201 13097 6075686 2024-02-26 17:47:49.077 2024-02-26 17:47:49.077 1000 FEE 439690 1515 6075744 2024-02-26 17:51:38.542 2024-02-26 17:51:38.542 1000 FEE 439139 21238 6075745 2024-02-26 17:51:38.542 2024-02-26 17:51:38.542 9000 TIP 439139 10056 6075748 2024-02-26 17:51:38.664 2024-02-26 17:51:38.664 1000 FEE 439139 1478 6075749 2024-02-26 17:51:38.664 2024-02-26 17:51:38.664 9000 TIP 439139 18842 6075768 2024-02-26 17:51:40.602 2024-02-26 17:51:40.602 1000 FEE 439139 20613 6075769 2024-02-26 17:51:40.602 2024-02-26 17:51:40.602 9000 TIP 439139 21218 6075780 2024-02-26 17:51:41.56 2024-02-26 17:51:41.56 1000 FEE 439139 21444 6075781 2024-02-26 17:51:41.56 2024-02-26 17:51:41.56 9000 TIP 439139 11678 6075784 2024-02-26 17:51:41.758 2024-02-26 17:51:41.758 1000 FEE 439139 2942 6075785 2024-02-26 17:51:41.758 2024-02-26 17:51:41.758 9000 TIP 439139 6533 6075822 2024-02-26 17:52:03.656 2024-02-26 17:52:03.656 10000 FEE 439658 9347 6075823 2024-02-26 17:52:03.656 2024-02-26 17:52:03.656 90000 TIP 439658 2016 6075853 2024-02-26 17:53:24.774 2024-02-26 17:53:24.774 1000 FEE 439139 9809 6075854 2024-02-26 17:53:24.774 2024-02-26 17:53:24.774 9000 TIP 439139 1326 6075879 2024-02-26 17:53:27.031 2024-02-26 17:53:27.031 1000 FEE 439139 17365 6075880 2024-02-26 17:53:27.031 2024-02-26 17:53:27.031 9000 TIP 439139 18368 6075891 2024-02-26 17:53:27.995 2024-02-26 17:53:27.995 1000 FEE 439139 2330 6075892 2024-02-26 17:53:27.995 2024-02-26 17:53:27.995 9000 TIP 439139 15408 6075907 2024-02-26 17:53:29.407 2024-02-26 17:53:29.407 1000 FEE 439139 15271 6075908 2024-02-26 17:53:29.407 2024-02-26 17:53:29.407 9000 TIP 439139 18454 6075909 2024-02-26 17:53:29.557 2024-02-26 17:53:29.557 1000 FEE 439139 7903 6075910 2024-02-26 17:53:29.557 2024-02-26 17:53:29.557 9000 TIP 439139 675 6075911 2024-02-26 17:53:29.71 2024-02-26 17:53:29.71 1000 FEE 439139 13246 6075912 2024-02-26 17:53:29.71 2024-02-26 17:53:29.71 9000 TIP 439139 14449 6075936 2024-02-26 18:04:51.753 2024-02-26 18:04:51.753 1000 FEE 439703 21400 6075938 2024-02-26 18:05:14.91 2024-02-26 18:05:14.91 1000 FEE 439699 2757 6075939 2024-02-26 18:05:14.91 2024-02-26 18:05:14.91 9000 TIP 439699 4989 6075959 2024-02-26 18:07:30.233 2024-02-26 18:07:30.233 7100 FEE 411518 882 6075960 2024-02-26 18:07:30.233 2024-02-26 18:07:30.233 63900 TIP 411518 19910 6075985 2024-02-26 18:07:44.045 2024-02-26 18:07:44.045 1000 FEE 439691 19037 6075986 2024-02-26 18:07:44.045 2024-02-26 18:07:44.045 9000 TIP 439691 20180 6075991 2024-02-26 18:07:44.946 2024-02-26 18:07:44.946 1000 FEE 439691 19533 6075992 2024-02-26 18:07:44.946 2024-02-26 18:07:44.946 9000 TIP 439691 1697 6075993 2024-02-26 18:07:45.185 2024-02-26 18:07:45.185 1000 FEE 439691 14225 6075994 2024-02-26 18:07:45.185 2024-02-26 18:07:45.185 9000 TIP 439691 20066 6076004 2024-02-26 18:08:03.837 2024-02-26 18:08:03.837 3000 FEE 439443 16769 6076005 2024-02-26 18:08:03.837 2024-02-26 18:08:03.837 27000 TIP 439443 20251 6076019 2024-02-26 18:09:05.488 2024-02-26 18:09:05.488 10000 FEE 388644 678 6076020 2024-02-26 18:09:05.488 2024-02-26 18:09:05.488 90000 TIP 388644 2056 6076034 2024-02-26 18:10:22.847 2024-02-26 18:10:22.847 2100 FEE 439681 13406 6076035 2024-02-26 18:10:22.847 2024-02-26 18:10:22.847 18900 TIP 439681 3353 6076043 2024-02-26 18:10:39.999 2024-02-26 18:10:39.999 100000 FEE 439708 1737 6076046 2024-02-26 18:11:47.128 2024-02-26 18:11:47.128 7000 FEE 439710 1003 6076048 2024-02-26 18:12:22.517 2024-02-26 18:12:22.517 100000 FEE 439711 21578 6076058 2024-02-26 18:13:48.891 2024-02-26 18:13:48.891 4200 FEE 439586 12921 6076059 2024-02-26 18:13:48.891 2024-02-26 18:13:48.891 37800 TIP 439586 1825 6076062 2024-02-26 18:13:57.23 2024-02-26 18:13:57.23 1000 FEE 439714 896 6076064 2024-02-26 18:14:08.219 2024-02-26 18:14:08.219 3300 FEE 439541 11263 6076065 2024-02-26 18:14:08.219 2024-02-26 18:14:08.219 29700 TIP 439541 18372 6076097 2024-02-26 18:17:42.915 2024-02-26 18:17:42.915 1000 FEE 439718 12024 6076098 2024-02-26 18:17:46.963 2024-02-26 18:17:46.963 2100 FEE 439714 13843 6076099 2024-02-26 18:17:46.963 2024-02-26 18:17:46.963 18900 TIP 439714 11477 6076145 2024-02-26 18:20:48.265 2024-02-26 18:20:48.265 2100 FEE 439295 17446 6076146 2024-02-26 18:20:48.265 2024-02-26 18:20:48.265 18900 TIP 439295 4079 6076147 2024-02-26 18:20:53.215 2024-02-26 18:20:53.215 2100 FEE 439562 20663 6076148 2024-02-26 18:20:53.215 2024-02-26 18:20:53.215 18900 TIP 439562 900 6076150 2024-02-26 18:21:06.676 2024-02-26 18:21:06.676 2100 FEE 439694 21444 6076151 2024-02-26 18:21:06.676 2024-02-26 18:21:06.676 18900 TIP 439694 18543 6076156 2024-02-26 18:21:32.296 2024-02-26 18:21:32.296 1000 FEE 439722 1571 6076176 2024-02-26 18:23:04.793 2024-02-26 18:23:04.793 3500 FEE 439279 21180 6076177 2024-02-26 18:23:04.793 2024-02-26 18:23:04.793 31500 TIP 439279 18311 6076186 2024-02-26 18:23:14.004 2024-02-26 18:23:14.004 9000 FEE 439406 8037 6076187 2024-02-26 18:23:14.004 2024-02-26 18:23:14.004 81000 TIP 439406 21281 6076192 2024-02-26 18:24:05.977 2024-02-26 18:24:05.977 1000 FEE 439727 11527 6076195 2024-02-26 18:24:55.111 2024-02-26 18:24:55.111 100 FEE 439720 19810 6076196 2024-02-26 18:24:55.111 2024-02-26 18:24:55.111 900 TIP 439720 19511 6076209 2024-02-26 18:27:29.371 2024-02-26 18:27:29.371 6900 FEE 439721 11698 6076210 2024-02-26 18:27:29.371 2024-02-26 18:27:29.371 62100 TIP 439721 657 6076216 2024-02-26 18:28:20.072 2024-02-26 18:28:20.072 7700 FEE 439729 20246 6075723 2024-02-26 17:49:14.235 2024-02-26 17:49:14.235 251100 TIP 439413 1039 6075742 2024-02-26 17:51:38.342 2024-02-26 17:51:38.342 2000 FEE 439139 684 6075743 2024-02-26 17:51:38.342 2024-02-26 17:51:38.342 18000 TIP 439139 10586 6075750 2024-02-26 17:51:39.145 2024-02-26 17:51:39.145 3000 FEE 439139 19796 6075751 2024-02-26 17:51:39.145 2024-02-26 17:51:39.145 27000 TIP 439139 19158 6075770 2024-02-26 17:51:40.734 2024-02-26 17:51:40.734 1000 FEE 439139 19147 6075771 2024-02-26 17:51:40.734 2024-02-26 17:51:40.734 9000 TIP 439139 5752 6075790 2024-02-26 17:51:42.166 2024-02-26 17:51:42.166 1000 FEE 439139 21585 6075791 2024-02-26 17:51:42.166 2024-02-26 17:51:42.166 9000 TIP 439139 16939 6075816 2024-02-26 17:51:44.563 2024-02-26 17:51:44.563 2000 FEE 439139 1773 6075817 2024-02-26 17:51:44.563 2024-02-26 17:51:44.563 18000 TIP 439139 1092 6075841 2024-02-26 17:53:23.723 2024-02-26 17:53:23.723 1000 FEE 439139 17707 6075842 2024-02-26 17:53:23.723 2024-02-26 17:53:23.723 9000 TIP 439139 21291 6075855 2024-02-26 17:53:24.926 2024-02-26 17:53:24.926 1000 FEE 439139 2029 6075856 2024-02-26 17:53:24.926 2024-02-26 17:53:24.926 9000 TIP 439139 1030 6075871 2024-02-26 17:53:26.343 2024-02-26 17:53:26.343 1000 FEE 439139 2213 6075872 2024-02-26 17:53:26.343 2024-02-26 17:53:26.343 9000 TIP 439139 17147 6075881 2024-02-26 17:53:27.199 2024-02-26 17:53:27.199 1000 FEE 439139 9843 6075882 2024-02-26 17:53:27.199 2024-02-26 17:53:27.199 9000 TIP 439139 5160 6075883 2024-02-26 17:53:27.349 2024-02-26 17:53:27.349 1000 FEE 439139 649 6075884 2024-02-26 17:53:27.349 2024-02-26 17:53:27.349 9000 TIP 439139 686 6075889 2024-02-26 17:53:27.833 2024-02-26 17:53:27.833 1000 FEE 439139 11263 6075890 2024-02-26 17:53:27.833 2024-02-26 17:53:27.833 9000 TIP 439139 3360 6075903 2024-02-26 17:53:28.995 2024-02-26 17:53:28.995 1000 FEE 439139 19813 6075904 2024-02-26 17:53:28.995 2024-02-26 17:53:28.995 9000 TIP 439139 1474 6075924 2024-02-26 17:58:52.974 2024-02-26 17:58:52.974 1000 FEE 439701 7979 6075925 2024-02-26 17:58:56.253 2024-02-26 17:58:56.253 7100 FEE 439639 1141 6075926 2024-02-26 17:58:56.253 2024-02-26 17:58:56.253 63900 TIP 439639 7773 6075951 2024-02-26 18:06:42.967 2024-02-26 18:06:42.967 7100 FEE 439702 13547 6075952 2024-02-26 18:06:42.967 2024-02-26 18:06:42.967 63900 TIP 439702 11621 6075961 2024-02-26 18:07:37.379 2024-02-26 18:07:37.379 7100 FEE 412159 1006 6075962 2024-02-26 18:07:37.379 2024-02-26 18:07:37.379 63900 TIP 412159 13782 6075963 2024-02-26 18:07:39.141 2024-02-26 18:07:39.141 7100 FEE 435314 6137 6075964 2024-02-26 18:07:39.141 2024-02-26 18:07:39.141 63900 TIP 435314 18784 6075965 2024-02-26 18:07:40.723 2024-02-26 18:07:40.723 1000 FEE 439691 11275 6075966 2024-02-26 18:07:40.723 2024-02-26 18:07:40.723 9000 TIP 439691 12158 6075967 2024-02-26 18:07:41.077 2024-02-26 18:07:41.077 1000 FEE 439691 20904 6075968 2024-02-26 18:07:41.077 2024-02-26 18:07:41.077 9000 TIP 439691 12965 6075979 2024-02-26 18:07:42.28 2024-02-26 18:07:42.28 1000 FEE 439691 18704 6075980 2024-02-26 18:07:42.28 2024-02-26 18:07:42.28 9000 TIP 439691 21402 6075995 2024-02-26 18:07:45.339 2024-02-26 18:07:45.339 1000 FEE 439691 19531 6075996 2024-02-26 18:07:45.339 2024-02-26 18:07:45.339 9000 TIP 439691 20539 6075997 2024-02-26 18:07:45.456 2024-02-26 18:07:45.456 1000 FEE 439691 19839 6075998 2024-02-26 18:07:45.456 2024-02-26 18:07:45.456 9000 TIP 439691 4292 6076016 2024-02-26 18:08:47.245 2024-02-26 18:08:47.245 1000 FEE 439422 17522 6076017 2024-02-26 18:08:47.245 2024-02-26 18:08:47.245 9000 TIP 439422 1162 6076060 2024-02-26 18:13:49.147 2024-02-26 18:13:49.147 4200 FEE 439586 21523 6076061 2024-02-26 18:13:49.147 2024-02-26 18:13:49.147 37800 TIP 439586 12097 6076143 2024-02-26 18:20:47.119 2024-02-26 18:20:47.119 300 FEE 439652 20434 6076144 2024-02-26 18:20:47.119 2024-02-26 18:20:47.119 2700 TIP 439652 5961 6076152 2024-02-26 18:21:14.444 2024-02-26 18:21:14.444 2100 FEE 439642 9758 6076153 2024-02-26 18:21:14.444 2024-02-26 18:21:14.444 18900 TIP 439642 16939 6076165 2024-02-26 18:22:35.977 2024-02-26 18:22:35.977 100000 FEE 439724 18468 6076178 2024-02-26 18:23:10.352 2024-02-26 18:23:10.352 3500 FEE 439228 11288 6076179 2024-02-26 18:23:10.352 2024-02-26 18:23:10.352 31500 TIP 439228 21401 6076205 2024-02-26 18:27:22.454 2024-02-26 18:27:22.454 100 FEE 439566 21088 6076206 2024-02-26 18:27:22.454 2024-02-26 18:27:22.454 900 TIP 439566 20683 6076252 2024-02-26 18:28:28.37 2024-02-26 18:28:28.37 7700 FEE 439729 21386 6076253 2024-02-26 18:28:28.37 2024-02-26 18:28:28.37 69300 TIP 439729 965 6076270 2024-02-26 18:28:31.323 2024-02-26 18:28:31.323 7700 FEE 439729 9969 6076271 2024-02-26 18:28:31.323 2024-02-26 18:28:31.323 69300 TIP 439729 16998 6076274 2024-02-26 18:28:31.493 2024-02-26 18:28:31.493 7700 FEE 439729 976 6076275 2024-02-26 18:28:31.493 2024-02-26 18:28:31.493 69300 TIP 439729 20852 6076276 2024-02-26 18:28:31.544 2024-02-26 18:28:31.544 7700 FEE 439729 6041 6076277 2024-02-26 18:28:31.544 2024-02-26 18:28:31.544 69300 TIP 439729 20596 6076290 2024-02-26 18:28:38.5 2024-02-26 18:28:38.5 15400 FEE 439729 1845 6076291 2024-02-26 18:28:38.5 2024-02-26 18:28:38.5 138600 TIP 439729 20208 6076314 2024-02-26 18:28:39.979 2024-02-26 18:28:39.979 7700 FEE 439729 16042 6076315 2024-02-26 18:28:39.979 2024-02-26 18:28:39.979 69300 TIP 439729 20778 6076322 2024-02-26 18:28:40.645 2024-02-26 18:28:40.645 7700 FEE 439729 7682 6076323 2024-02-26 18:28:40.645 2024-02-26 18:28:40.645 69300 TIP 439729 16214 6076328 2024-02-26 18:28:40.976 2024-02-26 18:28:40.976 7700 FEE 439729 11220 6076329 2024-02-26 18:28:40.976 2024-02-26 18:28:40.976 69300 TIP 439729 18663 6076330 2024-02-26 18:28:46.294 2024-02-26 18:28:46.294 100 FEE 439612 20015 6076331 2024-02-26 18:28:46.294 2024-02-26 18:28:46.294 900 TIP 439612 12102 6076336 2024-02-26 18:29:20.772 2024-02-26 18:29:20.772 7700 FEE 439701 21019 6076337 2024-02-26 18:29:20.772 2024-02-26 18:29:20.772 69300 TIP 439701 16834 6076360 2024-02-26 18:29:52.754 2024-02-26 18:29:52.754 7700 FEE 439455 919 6076361 2024-02-26 18:29:52.754 2024-02-26 18:29:52.754 69300 TIP 439455 7125 6076362 2024-02-26 18:29:55.291 2024-02-26 18:29:55.291 100 FEE 439640 11527 6076363 2024-02-26 18:29:55.291 2024-02-26 18:29:55.291 900 TIP 439640 18262 6076366 2024-02-26 18:29:56.01 2024-02-26 18:29:56.01 9000 FEE 439640 1175 6076367 2024-02-26 18:29:56.01 2024-02-26 18:29:56.01 81000 TIP 439640 15544 6076404 2024-02-26 18:31:39.073 2024-02-26 18:31:39.073 9000 FEE 439713 7809 6076405 2024-02-26 18:31:39.073 2024-02-26 18:31:39.073 81000 TIP 439713 4076 6076409 2024-02-26 18:32:07.671 2024-02-26 18:32:07.671 1000 FEE 439716 9363 6076410 2024-02-26 18:32:07.671 2024-02-26 18:32:07.671 9000 TIP 439716 925 6076495 2024-02-26 18:37:57.9 2024-02-26 18:37:57.9 2100 FEE 439563 17217 6076496 2024-02-26 18:37:57.9 2024-02-26 18:37:57.9 18900 TIP 439563 13398 6076536 2024-02-26 18:44:19.207 2024-02-26 18:44:19.207 7700 FEE 439729 656 6076537 2024-02-26 18:44:19.207 2024-02-26 18:44:19.207 69300 TIP 439729 4989 6076542 2024-02-26 18:44:36.721 2024-02-26 18:44:36.721 1000 FEE 439748 15941 6076543 2024-02-26 18:45:00.745 2024-02-26 18:45:00.745 1600 FEE 439729 19541 6076544 2024-02-26 18:45:00.745 2024-02-26 18:45:00.745 14400 TIP 439729 10586 6076550 2024-02-26 18:45:11.773 2024-02-26 18:45:11.773 1000 FEE 439751 721 6076570 2024-02-26 18:49:10.905 2024-02-26 18:49:10.905 2100 FEE 439427 17710 6076571 2024-02-26 18:49:10.905 2024-02-26 18:49:10.905 18900 TIP 439427 1352 6076574 2024-02-26 18:49:25.186 2024-02-26 18:49:25.186 2100 FEE 439508 4521 6076575 2024-02-26 18:49:25.186 2024-02-26 18:49:25.186 18900 TIP 439508 20647 6076589 2024-02-26 18:51:06.086 2024-02-26 18:51:06.086 21000 FEE 439754 5128 6076597 2024-02-26 18:53:17.639 2024-02-26 18:53:17.639 3500 FEE 439139 7899 6076598 2024-02-26 18:53:17.639 2024-02-26 18:53:17.639 31500 TIP 439139 19815 6076624 2024-02-26 18:55:37.219 2024-02-26 18:55:37.219 1000 FEE 439763 14857 6076633 2024-02-26 18:56:39.746 2024-02-26 18:56:39.746 700 FEE 439263 12261 6076634 2024-02-26 18:56:39.746 2024-02-26 18:56:39.746 6300 TIP 439263 19156 6076667 2024-02-26 18:59:46.096 2024-02-26 18:59:46.096 0 FEE 439766 7903 6075727 2024-02-26 17:50:03.921 2024-02-26 17:50:03.921 1000 STREAM 141924 20881 6075915 2024-02-26 17:54:03.883 2024-02-26 17:54:03.883 1000 STREAM 141924 2195 6075929 2024-02-26 17:59:03.968 2024-02-26 17:59:03.968 1000 STREAM 141924 21591 6075852 2024-02-26 17:53:24.527 2024-02-26 17:53:24.527 9000 TIP 439139 21523 6075861 2024-02-26 17:53:25.578 2024-02-26 17:53:25.578 1000 FEE 439139 11750 6075862 2024-02-26 17:53:25.578 2024-02-26 17:53:25.578 9000 TIP 439139 15556 6075865 2024-02-26 17:53:25.846 2024-02-26 17:53:25.846 1000 FEE 439139 12965 6075866 2024-02-26 17:53:25.846 2024-02-26 17:53:25.846 9000 TIP 439139 20841 6075905 2024-02-26 17:53:29.143 2024-02-26 17:53:29.143 1000 FEE 439139 18454 6075906 2024-02-26 17:53:29.143 2024-02-26 17:53:29.143 9000 TIP 439139 20153 6075917 2024-02-26 17:54:53.843 2024-02-26 17:54:53.843 10000 FEE 439698 9820 6075947 2024-02-26 18:06:38.181 2024-02-26 18:06:38.181 1000 FEE 439582 16562 6075948 2024-02-26 18:06:38.181 2024-02-26 18:06:38.181 9000 TIP 439582 1985 6075989 2024-02-26 18:07:44.737 2024-02-26 18:07:44.737 1000 FEE 439691 6310 6075990 2024-02-26 18:07:44.737 2024-02-26 18:07:44.737 9000 TIP 439691 21207 6076002 2024-02-26 18:08:03.269 2024-02-26 18:08:03.269 1000 FEE 439443 13361 6076003 2024-02-26 18:08:03.269 2024-02-26 18:08:03.269 9000 TIP 439443 18837 6076014 2024-02-26 18:08:42.002 2024-02-26 18:08:42.002 1000 FEE 439513 3347 6076015 2024-02-26 18:08:42.002 2024-02-26 18:08:42.002 9000 TIP 439513 750 6076025 2024-02-26 18:09:16.754 2024-02-26 18:09:16.754 1000 FEE 439620 7978 6076026 2024-02-26 18:09:16.754 2024-02-26 18:09:16.754 9000 TIP 439620 9099 6076045 2024-02-26 18:11:40.813 2024-02-26 18:11:40.813 1000 FEE 439709 805 6076066 2024-02-26 18:14:10.34 2024-02-26 18:14:10.34 1000 FEE 439715 2326 6076090 2024-02-26 18:16:29.61 2024-02-26 18:16:29.61 500 FEE 439633 5746 6076091 2024-02-26 18:16:29.61 2024-02-26 18:16:29.61 4500 TIP 439633 17316 6076094 2024-02-26 18:16:48.257 2024-02-26 18:16:48.257 10000 FEE 439677 20337 6076095 2024-02-26 18:16:48.257 2024-02-26 18:16:48.257 90000 TIP 439677 7587 6076107 2024-02-26 18:19:26.869 2024-02-26 18:19:26.869 100 FEE 439701 18816 6076108 2024-02-26 18:19:26.869 2024-02-26 18:19:26.869 900 TIP 439701 9816 6076109 2024-02-26 18:19:27.469 2024-02-26 18:19:27.469 900 FEE 439701 9183 6076110 2024-02-26 18:19:27.469 2024-02-26 18:19:27.469 8100 TIP 439701 18533 6076122 2024-02-26 18:20:20.785 2024-02-26 18:20:20.785 2500 FEE 439689 19689 6076123 2024-02-26 18:20:20.785 2024-02-26 18:20:20.785 22500 TIP 439689 19121 6076140 2024-02-26 18:20:45.361 2024-02-26 18:20:45.361 2100 FEE 439586 20646 6076141 2024-02-26 18:20:45.361 2024-02-26 18:20:45.361 18900 TIP 439586 15337 6076163 2024-02-26 18:22:34.55 2024-02-26 18:22:34.55 900 FEE 439477 2327 6076164 2024-02-26 18:22:34.55 2024-02-26 18:22:34.55 8100 TIP 439477 19735 6076182 2024-02-26 18:23:13.531 2024-02-26 18:23:13.531 100 FEE 439406 21314 6076183 2024-02-26 18:23:13.531 2024-02-26 18:23:13.531 900 TIP 439406 3417 6076193 2024-02-26 18:24:29.189 2024-02-26 18:24:29.189 10100 FEE 439724 20744 6076194 2024-02-26 18:24:29.189 2024-02-26 18:24:29.189 90900 TIP 439724 21463 6076207 2024-02-26 18:27:22.643 2024-02-26 18:27:22.643 900 FEE 439566 20153 6076208 2024-02-26 18:27:22.643 2024-02-26 18:27:22.643 8100 TIP 439566 21201 6076240 2024-02-26 18:28:27.301 2024-02-26 18:28:27.301 7700 FEE 439729 690 6076241 2024-02-26 18:28:27.301 2024-02-26 18:28:27.301 69300 TIP 439729 18608 6076302 2024-02-26 18:28:39.378 2024-02-26 18:28:39.378 7700 FEE 439729 15180 6076303 2024-02-26 18:28:39.378 2024-02-26 18:28:39.378 69300 TIP 439729 7587 6076306 2024-02-26 18:28:39.548 2024-02-26 18:28:39.548 7700 FEE 439729 10280 6076307 2024-02-26 18:28:39.548 2024-02-26 18:28:39.548 69300 TIP 439729 10981 6076310 2024-02-26 18:28:39.772 2024-02-26 18:28:39.772 7700 FEE 439729 12562 6076311 2024-02-26 18:28:39.772 2024-02-26 18:28:39.772 69300 TIP 439729 20231 6076318 2024-02-26 18:28:40.229 2024-02-26 18:28:40.229 7700 FEE 439729 2431 6076319 2024-02-26 18:28:40.229 2024-02-26 18:28:40.229 69300 TIP 439729 12769 6076335 2024-02-26 18:29:18.9 2024-02-26 18:29:18.9 1000 FEE 439730 16309 6076447 2024-02-26 18:34:16.023 2024-02-26 18:34:16.023 4000 FEE 439734 16267 6076448 2024-02-26 18:34:16.023 2024-02-26 18:34:16.023 36000 TIP 439734 21164 6076469 2024-02-26 18:35:56.584 2024-02-26 18:35:56.584 100 FEE 439733 13169 6076470 2024-02-26 18:35:56.584 2024-02-26 18:35:56.584 900 TIP 439733 7583 6076473 2024-02-26 18:36:01.279 2024-02-26 18:36:01.279 10000 FEE 439713 14168 6076474 2024-02-26 18:36:01.279 2024-02-26 18:36:01.279 90000 TIP 439713 17212 6076479 2024-02-26 18:36:29.156 2024-02-26 18:36:29.156 2100 FEE 439596 2576 6076480 2024-02-26 18:36:29.156 2024-02-26 18:36:29.156 18900 TIP 439596 9336 6076481 2024-02-26 18:36:44.898 2024-02-26 18:36:44.898 1000 FEE 439741 1729 6076500 2024-02-26 18:39:08.262 2024-02-26 18:39:08.262 800 FEE 439673 20152 6076501 2024-02-26 18:39:08.262 2024-02-26 18:39:08.262 7200 TIP 439673 7675 6076512 2024-02-26 18:41:43.173 2024-02-26 18:41:43.173 1000 FEE 439746 20594 6076524 2024-02-26 18:44:18.253 2024-02-26 18:44:18.253 15400 FEE 439729 15697 6076525 2024-02-26 18:44:18.253 2024-02-26 18:44:18.253 138600 TIP 439729 14152 6076551 2024-02-26 18:45:25.104 2024-02-26 18:45:25.104 0 FEE 439747 16789 6076552 2024-02-26 18:45:39.298 2024-02-26 18:45:39.298 7700 FEE 438758 13132 6076553 2024-02-26 18:45:39.298 2024-02-26 18:45:39.298 69300 TIP 438758 21398 6076554 2024-02-26 18:45:39.433 2024-02-26 18:45:39.433 7700 FEE 438758 21239 6076555 2024-02-26 18:45:39.433 2024-02-26 18:45:39.433 69300 TIP 438758 21503 6076565 2024-02-26 18:47:05.978 2024-02-26 18:47:05.978 1000 FEE 439753 2196 6076592 2024-02-26 18:52:01.662 2024-02-26 18:52:01.662 4000 FEE 439755 13987 6076593 2024-02-26 18:52:01.662 2024-02-26 18:52:01.662 36000 TIP 439755 19570 6076595 2024-02-26 18:52:35.574 2024-02-26 18:52:35.574 21000 FEE 439757 18930 6076620 2024-02-26 18:55:14.962 2024-02-26 18:55:14.962 1000 FEE 439761 11516 6076629 2024-02-26 18:55:55.951 2024-02-26 18:55:55.951 0 FEE 439763 1130 6076660 2024-02-26 18:59:04.825 2024-02-26 18:59:04.825 1000 FEE 439767 21521 6076661 2024-02-26 18:59:07.881 2024-02-26 18:59:07.881 1000 FEE 439768 1094 6076666 2024-02-26 18:59:26.625 2024-02-26 18:59:26.625 1000 FEE 439769 14939 6076693 2024-02-26 19:04:08.098 2024-02-26 19:04:08.098 10000 FEE 439764 16876 6076694 2024-02-26 19:04:08.098 2024-02-26 19:04:08.098 90000 TIP 439764 13622 6076697 2024-02-26 19:04:22.765 2024-02-26 19:04:22.765 300 FEE 439744 15200 6076698 2024-02-26 19:04:22.765 2024-02-26 19:04:22.765 2700 TIP 439744 9433 6076708 2024-02-26 19:06:02.378 2024-02-26 19:06:02.378 1000 FEE 439774 16532 6076711 2024-02-26 19:06:38.036 2024-02-26 19:06:38.036 100 FEE 439729 11648 6076712 2024-02-26 19:06:38.036 2024-02-26 19:06:38.036 900 TIP 439729 17798 6076723 2024-02-26 19:07:30.792 2024-02-26 19:07:30.792 0 FEE 439776 4304 6076729 2024-02-26 19:07:50.502 2024-02-26 19:07:50.502 300 FEE 439722 10063 6076730 2024-02-26 19:07:50.502 2024-02-26 19:07:50.502 2700 TIP 439722 11996 6076731 2024-02-26 19:07:50.674 2024-02-26 19:07:50.674 300 FEE 439722 1472 6076732 2024-02-26 19:07:50.674 2024-02-26 19:07:50.674 2700 TIP 439722 14503 6075921 2024-02-26 17:57:02.5 2024-02-26 17:57:02.5 1000 STREAM 141924 11153 6075932 2024-02-26 18:02:02.52 2024-02-26 18:02:02.52 1000 STREAM 141924 17570 6075934 2024-02-26 18:03:02.518 2024-02-26 18:03:02.518 1000 STREAM 141924 9341 6075935 2024-02-26 18:04:02.531 2024-02-26 18:04:02.531 1000 STREAM 141924 1490 6075953 2024-02-26 18:07:02.552 2024-02-26 18:07:02.552 1000 STREAM 141924 20264 6076018 2024-02-26 18:09:02.543 2024-02-26 18:09:02.543 1000 STREAM 141924 19267 6076031 2024-02-26 18:10:02.545 2024-02-26 18:10:02.545 1000 STREAM 141924 5085 6076074 2024-02-26 18:15:02.58 2024-02-26 18:15:02.58 1000 STREAM 141924 20623 6076149 2024-02-26 18:21:02.612 2024-02-26 18:21:02.612 1000 STREAM 141924 20439 6076202 2024-02-26 18:26:02.666 2024-02-26 18:26:02.666 1000 STREAM 141924 13348 6076203 2024-02-26 18:27:02.642 2024-02-26 18:27:02.642 1000 STREAM 141924 2098 6076213 2024-02-26 18:28:02.652 2024-02-26 18:28:02.652 1000 STREAM 141924 19929 6076406 2024-02-26 18:32:02.682 2024-02-26 18:32:02.682 1000 STREAM 141924 670 6076434 2024-02-26 18:33:02.677 2024-02-26 18:33:02.677 1000 STREAM 141924 661 6076483 2024-02-26 18:37:02.687 2024-02-26 18:37:02.687 1000 STREAM 141924 17517 6076505 2024-02-26 18:40:02.835 2024-02-26 18:40:02.835 1000 STREAM 141924 1000 6076507 2024-02-26 18:41:02.79 2024-02-26 18:41:02.79 1000 STREAM 141924 10393 6076515 2024-02-26 18:42:02.808 2024-02-26 18:42:02.808 1000 STREAM 141924 9184 6076521 2024-02-26 18:43:02.813 2024-02-26 18:43:02.813 1000 STREAM 141924 6041 6076564 2024-02-26 18:47:02.825 2024-02-26 18:47:02.825 1000 STREAM 141924 20430 6076569 2024-02-26 18:49:02.843 2024-02-26 18:49:02.843 1000 STREAM 141924 17976 6076596 2024-02-26 18:53:02.859 2024-02-26 18:53:02.859 1000 STREAM 141924 2437 6076615 2024-02-26 18:55:02.866 2024-02-26 18:55:02.866 1000 STREAM 141924 18659 6076687 2024-02-26 19:03:02.902 2024-02-26 19:03:02.902 1000 STREAM 141924 19037 6076721 2024-02-26 19:07:02.921 2024-02-26 19:07:02.921 1000 STREAM 141924 5036 6076755 2024-02-26 19:09:02.951 2024-02-26 19:09:02.951 1000 STREAM 141924 6384 6076757 2024-02-26 19:10:02.972 2024-02-26 19:10:02.972 1000 STREAM 141924 4238 6076777 2024-02-26 19:13:02.987 2024-02-26 19:13:02.987 1000 STREAM 141924 20585 6076788 2024-02-26 19:15:03.009 2024-02-26 19:15:03.009 1000 STREAM 141924 15060 6076797 2024-02-26 19:16:03.013 2024-02-26 19:16:03.013 1000 STREAM 141924 20588 6076803 2024-02-26 19:17:03.02 2024-02-26 19:17:03.02 1000 STREAM 141924 20243 6076826 2024-02-26 19:19:03.035 2024-02-26 19:19:03.035 1000 STREAM 141924 977 6076838 2024-02-26 19:20:03.081 2024-02-26 19:20:03.081 1000 STREAM 141924 18930 6076866 2024-02-26 19:23:03.064 2024-02-26 19:23:03.064 1000 STREAM 141924 1489 6076893 2024-02-26 19:26:03.09 2024-02-26 19:26:03.09 1000 STREAM 141924 20849 6076902 2024-02-26 19:27:03.105 2024-02-26 19:27:03.105 1000 STREAM 141924 1429 6076914 2024-02-26 19:28:03.111 2024-02-26 19:28:03.111 1000 STREAM 141924 1618 6076923 2024-02-26 19:29:03.113 2024-02-26 19:29:03.113 1000 STREAM 141924 20562 6075931 2024-02-26 18:01:05.982 2024-02-26 18:01:05.982 1000 STREAM 141924 16004 6076044 2024-02-26 18:11:04.093 2024-02-26 18:11:04.093 1000 STREAM 141924 18423 6076191 2024-02-26 18:24:02.577 2024-02-26 18:24:02.577 1000 STREAM 141924 18830 6076056 2024-02-26 18:13:41.019 2024-02-26 18:13:41.019 4200 FEE 439472 5661 6076057 2024-02-26 18:13:41.019 2024-02-26 18:13:41.019 37800 TIP 439472 1713 6076069 2024-02-26 18:14:14.716 2024-02-26 18:14:14.716 3300 FEE 439662 782 6076070 2024-02-26 18:14:14.716 2024-02-26 18:14:14.716 29700 TIP 439662 5776 6076082 2024-02-26 18:15:56.513 2024-02-26 18:15:56.513 100 FEE 439638 20577 6076083 2024-02-26 18:15:56.513 2024-02-26 18:15:56.513 900 TIP 439638 16876 6076087 2024-02-26 18:16:03.189 2024-02-26 18:16:03.189 100 FEE 439295 797 6076088 2024-02-26 18:16:03.189 2024-02-26 18:16:03.189 900 TIP 439295 16808 6076089 2024-02-26 18:16:28.646 2024-02-26 18:16:28.646 1000 FEE 439717 4250 6076102 2024-02-26 18:18:32.981 2024-02-26 18:18:32.981 0 FEE 439719 18274 6076132 2024-02-26 18:20:36.246 2024-02-26 18:20:36.246 2100 FEE 439422 20120 6076133 2024-02-26 18:20:36.246 2024-02-26 18:20:36.246 18900 TIP 439422 18909 6076142 2024-02-26 18:20:46.488 2024-02-26 18:20:46.488 210000 FEE 439721 20871 6076161 2024-02-26 18:22:34.351 2024-02-26 18:22:34.351 100 FEE 439477 20450 6076162 2024-02-26 18:22:34.351 2024-02-26 18:22:34.351 900 TIP 439477 27 6076174 2024-02-26 18:23:00.226 2024-02-26 18:23:00.226 1000 FEE 439725 7992 6076188 2024-02-26 18:23:31.356 2024-02-26 18:23:31.356 1000 FEE 439726 3377 6076211 2024-02-26 18:27:31.885 2024-02-26 18:27:31.885 100000 FEE 439729 8506 6076226 2024-02-26 18:28:20.765 2024-02-26 18:28:20.765 7700 FEE 439729 18476 6076227 2024-02-26 18:28:20.765 2024-02-26 18:28:20.765 69300 TIP 439729 21501 6076228 2024-02-26 18:28:20.887 2024-02-26 18:28:20.887 7700 FEE 439729 20454 6076229 2024-02-26 18:28:20.887 2024-02-26 18:28:20.887 69300 TIP 439729 18154 6076244 2024-02-26 18:28:27.512 2024-02-26 18:28:27.512 7700 FEE 439729 1120 6076245 2024-02-26 18:28:27.512 2024-02-26 18:28:27.512 69300 TIP 439729 20636 6076246 2024-02-26 18:28:27.737 2024-02-26 18:28:27.737 7700 FEE 439729 5578 6076247 2024-02-26 18:28:27.737 2024-02-26 18:28:27.737 69300 TIP 439729 18396 6076294 2024-02-26 18:28:38.861 2024-02-26 18:28:38.861 7700 FEE 439729 20577 6076295 2024-02-26 18:28:38.861 2024-02-26 18:28:38.861 69300 TIP 439729 10591 6076304 2024-02-26 18:28:39.421 2024-02-26 18:28:39.421 7700 FEE 439729 13378 6076305 2024-02-26 18:28:39.421 2024-02-26 18:28:39.421 69300 TIP 439729 15521 6076352 2024-02-26 18:29:26.802 2024-02-26 18:29:26.802 7700 FEE 439548 10393 6076353 2024-02-26 18:29:26.802 2024-02-26 18:29:26.802 69300 TIP 439548 685 6076373 2024-02-26 18:30:04.504 2024-02-26 18:30:04.504 900 FEE 439658 14465 6076374 2024-02-26 18:30:04.504 2024-02-26 18:30:04.504 8100 TIP 439658 5308 6076380 2024-02-26 18:30:22.289 2024-02-26 18:30:22.289 900 FEE 439655 15697 6076381 2024-02-26 18:30:22.289 2024-02-26 18:30:22.289 8100 TIP 439655 634 6076382 2024-02-26 18:30:23.222 2024-02-26 18:30:23.222 9000 FEE 439655 19286 6076383 2024-02-26 18:30:23.222 2024-02-26 18:30:23.222 81000 TIP 439655 2065 6076393 2024-02-26 18:31:21.018 2024-02-26 18:31:21.018 100 FEE 439702 1624 6076394 2024-02-26 18:31:21.018 2024-02-26 18:31:21.018 900 TIP 439702 20015 6076395 2024-02-26 18:31:21.264 2024-02-26 18:31:21.264 900 FEE 439702 1173 6076396 2024-02-26 18:31:21.264 2024-02-26 18:31:21.264 8100 TIP 439702 9482 6076413 2024-02-26 18:32:08.351 2024-02-26 18:32:08.351 100 FEE 439210 5661 6076414 2024-02-26 18:32:08.351 2024-02-26 18:32:08.351 900 TIP 439210 19639 6076415 2024-02-26 18:32:08.74 2024-02-26 18:32:08.74 100 FEE 439210 21063 6076416 2024-02-26 18:32:08.74 2024-02-26 18:32:08.74 900 TIP 439210 814 6076417 2024-02-26 18:32:09.226 2024-02-26 18:32:09.226 100 FEE 439210 661 6076418 2024-02-26 18:32:09.226 2024-02-26 18:32:09.226 900 TIP 439210 19902 6076419 2024-02-26 18:32:11.699 2024-02-26 18:32:11.699 1000 FEE 439733 16879 6076437 2024-02-26 18:33:42.329 2024-02-26 18:33:42.329 1000 FEE 439735 19259 6076449 2024-02-26 18:34:22.963 2024-02-26 18:34:22.963 100 FEE 439503 21573 6076450 2024-02-26 18:34:22.963 2024-02-26 18:34:22.963 900 TIP 439503 18678 6076482 2024-02-26 18:36:56.561 2024-02-26 18:36:56.561 0 FEE 439737 20825 6076493 2024-02-26 18:37:49.246 2024-02-26 18:37:49.246 2100 FEE 439674 902 6076494 2024-02-26 18:37:49.246 2024-02-26 18:37:49.246 18900 TIP 439674 14545 6076506 2024-02-26 18:40:32.904 2024-02-26 18:40:32.904 10000 FEE 439745 2614 6076513 2024-02-26 18:41:54.127 2024-02-26 18:41:54.127 5000 FEE 439719 6515 6076514 2024-02-26 18:41:54.127 2024-02-26 18:41:54.127 45000 TIP 439719 21369 6076516 2024-02-26 18:42:31.627 2024-02-26 18:42:31.627 1100 FEE 439578 1493 6076517 2024-02-26 18:42:31.627 2024-02-26 18:42:31.627 9900 TIP 439578 19031 6076523 2024-02-26 18:44:15.134 2024-02-26 18:44:15.134 1000 FEE 439747 7553 6076540 2024-02-26 18:44:20.499 2024-02-26 18:44:20.499 7700 FEE 439729 3409 6076541 2024-02-26 18:44:20.499 2024-02-26 18:44:20.499 69300 TIP 439729 8423 6076559 2024-02-26 18:46:28.333 2024-02-26 18:46:28.333 1000 FEE 439752 16145 6076562 2024-02-26 18:46:57.908 2024-02-26 18:46:57.908 4000 FEE 439448 21214 6076563 2024-02-26 18:46:57.908 2024-02-26 18:46:57.908 36000 TIP 439448 21540 6076572 2024-02-26 18:49:24.693 2024-02-26 18:49:24.693 1000 FEE 439263 17639 6076573 2024-02-26 18:49:24.693 2024-02-26 18:49:24.693 9000 TIP 439263 1008 6076601 2024-02-26 18:54:25.903 2024-02-26 18:54:25.903 1000 FEE 439759 17570 6076622 2024-02-26 18:55:32.517 2024-02-26 18:55:32.517 1000 FEE 439737 7869 6076623 2024-02-26 18:55:32.517 2024-02-26 18:55:32.517 9000 TIP 439737 21539 6076631 2024-02-26 18:56:21.997 2024-02-26 18:56:21.997 7700 FEE 439276 20439 6076632 2024-02-26 18:56:21.997 2024-02-26 18:56:21.997 69300 TIP 439276 11417 6076641 2024-02-26 18:57:22.276 2024-02-26 18:57:22.276 7700 FEE 439764 18454 6076642 2024-02-26 18:57:22.276 2024-02-26 18:57:22.276 69300 TIP 439764 10549 6076658 2024-02-26 18:59:01.536 2024-02-26 18:59:01.536 0 FEE 439766 12289 6076682 2024-02-26 19:02:11.851 2024-02-26 19:02:11.851 1000 FEE 439263 1114 6076683 2024-02-26 19:02:11.851 2024-02-26 19:02:11.851 9000 TIP 439263 5293 6076713 2024-02-26 19:06:41.88 2024-02-26 19:06:41.88 5000 FEE 439263 16177 6076714 2024-02-26 19:06:41.88 2024-02-26 19:06:41.88 45000 TIP 439263 11523 6076724 2024-02-26 19:07:43.118 2024-02-26 19:07:43.118 0 FEE 439776 5829 6076747 2024-02-26 19:08:06.213 2024-02-26 19:08:06.213 7700 FEE 439760 17217 6076748 2024-02-26 19:08:06.213 2024-02-26 19:08:06.213 69300 TIP 439760 622 6076758 2024-02-26 19:10:11.903 2024-02-26 19:10:11.903 300 FEE 439753 4126 6076759 2024-02-26 19:10:11.903 2024-02-26 19:10:11.903 2700 TIP 439753 10981 6076766 2024-02-26 19:11:13.974 2024-02-26 19:11:13.974 300 FEE 439009 1576 6076767 2024-02-26 19:11:13.974 2024-02-26 19:11:13.974 2700 TIP 439009 11670 6076815 2024-02-26 19:17:45.594 2024-02-26 19:17:45.594 1000 FEE 439788 798 6076839 2024-02-26 19:20:21.05 2024-02-26 19:20:21.05 100000 FEE 439791 750 6076842 2024-02-26 19:20:46.294 2024-02-26 19:20:46.294 2100 FEE 439756 19813 6076843 2024-02-26 19:20:46.294 2024-02-26 19:20:46.294 18900 TIP 439756 2224 6076883 2024-02-26 19:24:07.049 2024-02-26 19:24:07.049 100 FEE 439315 673 6076884 2024-02-26 19:24:07.049 2024-02-26 19:24:07.049 900 TIP 439315 19465 6076096 2024-02-26 18:17:03.038 2024-02-26 18:17:03.038 1000 STREAM 141924 19581 6076127 2024-02-26 18:20:30.487 2024-02-26 18:20:30.487 18900 TIP 439390 18618 6076134 2024-02-26 18:20:41.518 2024-02-26 18:20:41.518 2100 FEE 439472 11996 6076135 2024-02-26 18:20:41.518 2024-02-26 18:20:41.518 18900 TIP 439472 2123 6076136 2024-02-26 18:20:42.044 2024-02-26 18:20:42.044 2100 FEE 439719 16532 6076137 2024-02-26 18:20:42.044 2024-02-26 18:20:42.044 18900 TIP 439719 9378 6076166 2024-02-26 18:22:36.934 2024-02-26 18:22:36.934 9000 FEE 439477 7510 6076167 2024-02-26 18:22:36.934 2024-02-26 18:22:36.934 81000 TIP 439477 19243 6076180 2024-02-26 18:23:12.944 2024-02-26 18:23:12.944 3500 FEE 439228 20326 6076181 2024-02-26 18:23:12.944 2024-02-26 18:23:12.944 31500 TIP 439228 1046 6076184 2024-02-26 18:23:13.699 2024-02-26 18:23:13.699 900 FEE 439406 623 6076185 2024-02-26 18:23:13.699 2024-02-26 18:23:13.699 8100 TIP 439406 9529 6076222 2024-02-26 18:28:20.55 2024-02-26 18:28:20.55 7700 FEE 439729 18423 6076223 2024-02-26 18:28:20.55 2024-02-26 18:28:20.55 69300 TIP 439729 18945 6076230 2024-02-26 18:28:21.004 2024-02-26 18:28:21.004 7700 FEE 439729 19403 6076231 2024-02-26 18:28:21.004 2024-02-26 18:28:21.004 69300 TIP 439729 9150 6076242 2024-02-26 18:28:27.399 2024-02-26 18:28:27.399 7700 FEE 439729 19043 6076243 2024-02-26 18:28:27.399 2024-02-26 18:28:27.399 69300 TIP 439729 4391 6076258 2024-02-26 18:28:28.699 2024-02-26 18:28:28.699 7700 FEE 439729 19446 6076259 2024-02-26 18:28:28.699 2024-02-26 18:28:28.699 69300 TIP 439729 18402 6076262 2024-02-26 18:28:29.163 2024-02-26 18:28:29.163 7700 FEE 439729 19633 6076263 2024-02-26 18:28:29.163 2024-02-26 18:28:29.163 69300 TIP 439729 994 6076268 2024-02-26 18:28:31.231 2024-02-26 18:28:31.231 7700 FEE 439729 1208 6076269 2024-02-26 18:28:31.231 2024-02-26 18:28:31.231 69300 TIP 439729 20981 6076296 2024-02-26 18:28:39.027 2024-02-26 18:28:39.027 7700 FEE 439729 4973 6076297 2024-02-26 18:28:39.027 2024-02-26 18:28:39.027 69300 TIP 439729 21103 6076298 2024-02-26 18:28:39.086 2024-02-26 18:28:39.086 7700 FEE 439729 16665 6076299 2024-02-26 18:28:39.086 2024-02-26 18:28:39.086 69300 TIP 439729 1142 6076312 2024-02-26 18:28:39.877 2024-02-26 18:28:39.877 7700 FEE 439729 17891 6076313 2024-02-26 18:28:39.877 2024-02-26 18:28:39.877 69300 TIP 439729 20660 6076316 2024-02-26 18:28:40.096 2024-02-26 18:28:40.096 7700 FEE 439729 4415 6076317 2024-02-26 18:28:40.096 2024-02-26 18:28:40.096 69300 TIP 439729 14278 6076326 2024-02-26 18:28:40.928 2024-02-26 18:28:40.928 7700 FEE 439729 21393 6076327 2024-02-26 18:28:40.928 2024-02-26 18:28:40.928 69300 TIP 439729 10698 6076338 2024-02-26 18:29:21.004 2024-02-26 18:29:21.004 15400 FEE 439701 20162 6076339 2024-02-26 18:29:21.004 2024-02-26 18:29:21.004 138600 TIP 439701 641 6076342 2024-02-26 18:29:21.036 2024-02-26 18:29:21.036 200 FEE 439728 16753 6076343 2024-02-26 18:29:21.036 2024-02-26 18:29:21.036 1800 TIP 439728 21263 6076358 2024-02-26 18:29:29.171 2024-02-26 18:29:29.171 7700 FEE 439696 4633 6076359 2024-02-26 18:29:29.171 2024-02-26 18:29:29.171 69300 TIP 439696 4048 6076375 2024-02-26 18:30:06.676 2024-02-26 18:30:06.676 9000 FEE 439658 2046 6076376 2024-02-26 18:30:06.676 2024-02-26 18:30:06.676 81000 TIP 439658 16336 6076388 2024-02-26 18:30:47.989 2024-02-26 18:30:47.989 900 FEE 439699 3439 6076389 2024-02-26 18:30:47.989 2024-02-26 18:30:47.989 8100 TIP 439699 14385 6076390 2024-02-26 18:30:48.56 2024-02-26 18:30:48.56 9000 FEE 439699 8289 6076391 2024-02-26 18:30:48.56 2024-02-26 18:30:48.56 81000 TIP 439699 5387 6076399 2024-02-26 18:31:31.386 2024-02-26 18:31:31.386 1000 FEE 439732 12272 6076421 2024-02-26 18:32:38.083 2024-02-26 18:32:38.083 1000 FEE 439298 7992 6076422 2024-02-26 18:32:38.083 2024-02-26 18:32:38.083 9000 TIP 439298 19572 6076423 2024-02-26 18:32:38.386 2024-02-26 18:32:38.386 10000 FEE 439734 5961 6076424 2024-02-26 18:32:44.816 2024-02-26 18:32:44.816 1000 FEE 439729 2942 6076425 2024-02-26 18:32:44.816 2024-02-26 18:32:44.816 9000 TIP 439729 8380 6076426 2024-02-26 18:32:45.075 2024-02-26 18:32:45.075 1000 FEE 439729 656 6076427 2024-02-26 18:32:45.075 2024-02-26 18:32:45.075 9000 TIP 439729 10469 6076430 2024-02-26 18:32:45.591 2024-02-26 18:32:45.591 1000 FEE 439729 19570 6076431 2024-02-26 18:32:45.591 2024-02-26 18:32:45.591 9000 TIP 439729 4175 6076440 2024-02-26 18:33:44.3 2024-02-26 18:33:44.3 900 FEE 439711 19909 6076441 2024-02-26 18:33:44.3 2024-02-26 18:33:44.3 8100 TIP 439711 21371 6076442 2024-02-26 18:33:47.155 2024-02-26 18:33:47.155 9000 FEE 439711 673 6076443 2024-02-26 18:33:47.155 2024-02-26 18:33:47.155 81000 TIP 439711 3371 6076461 2024-02-26 18:35:27.624 2024-02-26 18:35:27.624 2100 FEE 439588 16432 6076462 2024-02-26 18:35:27.624 2024-02-26 18:35:27.624 18900 TIP 439588 8508 6076471 2024-02-26 18:35:57.424 2024-02-26 18:35:57.424 100 FEE 439733 17201 6076472 2024-02-26 18:35:57.424 2024-02-26 18:35:57.424 900 TIP 439733 3990 6076217 2024-02-26 18:28:20.072 2024-02-26 18:28:20.072 69300 TIP 439729 18241 6076224 2024-02-26 18:28:20.675 2024-02-26 18:28:20.675 7700 FEE 439729 1603 6076225 2024-02-26 18:28:20.675 2024-02-26 18:28:20.675 69300 TIP 439729 21048 6076232 2024-02-26 18:28:21.079 2024-02-26 18:28:21.079 7700 FEE 439729 1631 6076233 2024-02-26 18:28:21.079 2024-02-26 18:28:21.079 69300 TIP 439729 17103 6076238 2024-02-26 18:28:27.089 2024-02-26 18:28:27.089 15400 FEE 439729 19930 6076239 2024-02-26 18:28:27.089 2024-02-26 18:28:27.089 138600 TIP 439729 18199 6076256 2024-02-26 18:28:28.597 2024-02-26 18:28:28.597 7700 FEE 439729 2528 6076257 2024-02-26 18:28:28.597 2024-02-26 18:28:28.597 69300 TIP 439729 6741 6076260 2024-02-26 18:28:28.87 2024-02-26 18:28:28.87 7700 FEE 439729 9655 6076261 2024-02-26 18:28:28.87 2024-02-26 18:28:28.87 69300 TIP 439729 3478 6076266 2024-02-26 18:28:29.42 2024-02-26 18:28:29.42 7700 FEE 439729 21493 6076267 2024-02-26 18:28:29.42 2024-02-26 18:28:29.42 69300 TIP 439729 12946 6076284 2024-02-26 18:28:32.39 2024-02-26 18:28:32.39 7700 FEE 439729 18984 6076285 2024-02-26 18:28:32.39 2024-02-26 18:28:32.39 69300 TIP 439729 18344 6076286 2024-02-26 18:28:32.557 2024-02-26 18:28:32.557 7700 FEE 439729 12566 6076287 2024-02-26 18:28:32.557 2024-02-26 18:28:32.557 69300 TIP 439729 909 6076300 2024-02-26 18:28:39.199 2024-02-26 18:28:39.199 7700 FEE 439729 21296 6076301 2024-02-26 18:28:39.199 2024-02-26 18:28:39.199 69300 TIP 439729 16876 6076356 2024-02-26 18:29:28.898 2024-02-26 18:29:28.898 7700 FEE 439696 20562 6076357 2024-02-26 18:29:28.898 2024-02-26 18:29:28.898 69300 TIP 439696 21323 6076377 2024-02-26 18:30:10.156 2024-02-26 18:30:10.156 1000 FEE 439731 18526 6076384 2024-02-26 18:30:29.026 2024-02-26 18:30:29.026 10000 FEE 439443 5578 6076385 2024-02-26 18:30:29.026 2024-02-26 18:30:29.026 90000 TIP 439443 16753 6076411 2024-02-26 18:32:07.853 2024-02-26 18:32:07.853 100 FEE 439210 1617 6076412 2024-02-26 18:32:07.853 2024-02-26 18:32:07.853 900 TIP 439210 21159 6076432 2024-02-26 18:32:45.855 2024-02-26 18:32:45.855 1000 FEE 439729 1162 6076433 2024-02-26 18:32:45.855 2024-02-26 18:32:45.855 9000 TIP 439729 11423 6076456 2024-02-26 18:35:01.47 2024-02-26 18:35:01.47 1000 FEE 439737 17927 6076463 2024-02-26 18:35:56.044 2024-02-26 18:35:56.044 100 FEE 439733 18629 6076464 2024-02-26 18:35:56.044 2024-02-26 18:35:56.044 900 TIP 439733 6616 6076484 2024-02-26 18:37:03.872 2024-02-26 18:37:03.872 7700 FEE 439397 4570 6076485 2024-02-26 18:37:03.872 2024-02-26 18:37:03.872 69300 TIP 439397 19121 6076510 2024-02-26 18:41:37.805 2024-02-26 18:41:37.805 10000 FEE 439413 654 6076511 2024-02-26 18:41:37.805 2024-02-26 18:41:37.805 90000 TIP 439413 19333 6076518 2024-02-26 18:42:51.268 2024-02-26 18:42:51.268 0 FEE 439744 16867 6076528 2024-02-26 18:44:18.453 2024-02-26 18:44:18.453 7700 FEE 439729 20683 6076529 2024-02-26 18:44:18.453 2024-02-26 18:44:18.453 69300 TIP 439729 1769 6076580 2024-02-26 18:50:38.488 2024-02-26 18:50:38.488 7700 FEE 438494 981 6076581 2024-02-26 18:50:38.488 2024-02-26 18:50:38.488 69300 TIP 438494 19863 6076590 2024-02-26 18:51:23.698 2024-02-26 18:51:23.698 1000 FEE 439755 16193 6076600 2024-02-26 18:54:21.434 2024-02-26 18:54:21.434 1000 FEE 439758 5809 6076609 2024-02-26 18:54:46.15 2024-02-26 18:54:46.15 2100 FEE 439658 21575 6076610 2024-02-26 18:54:46.15 2024-02-26 18:54:46.15 18900 TIP 439658 19381 6076372 2024-02-26 18:30:04.283 2024-02-26 18:30:04.283 900 TIP 439658 4502 6076397 2024-02-26 18:31:21.813 2024-02-26 18:31:21.813 9000 FEE 439702 2614 6076398 2024-02-26 18:31:21.813 2024-02-26 18:31:21.813 81000 TIP 439702 3456 6076400 2024-02-26 18:31:38.08 2024-02-26 18:31:38.08 100 FEE 439713 6160 6076401 2024-02-26 18:31:38.08 2024-02-26 18:31:38.08 900 TIP 439713 9290 6076402 2024-02-26 18:31:38.278 2024-02-26 18:31:38.278 900 FEE 439713 19668 6076403 2024-02-26 18:31:38.278 2024-02-26 18:31:38.278 8100 TIP 439713 20551 6076459 2024-02-26 18:35:18.929 2024-02-26 18:35:18.929 7700 FEE 439713 2390 6076460 2024-02-26 18:35:18.929 2024-02-26 18:35:18.929 69300 TIP 439713 21589 6076467 2024-02-26 18:35:56.464 2024-02-26 18:35:56.464 100 FEE 439733 14357 6076468 2024-02-26 18:35:56.464 2024-02-26 18:35:56.464 900 TIP 439733 1549 6076476 2024-02-26 18:36:09.586 2024-02-26 18:36:09.586 3100 FEE 439739 19660 6076477 2024-02-26 18:36:09.586 2024-02-26 18:36:09.586 27900 TIP 439739 9336 6076478 2024-02-26 18:36:14.901 2024-02-26 18:36:14.901 1000 FEE 439740 7558 6076499 2024-02-26 18:39:03.686 2024-02-26 18:39:03.686 1000 FEE 439743 5757 6076526 2024-02-26 18:44:18.372 2024-02-26 18:44:18.372 7700 FEE 439729 14950 6076527 2024-02-26 18:44:18.372 2024-02-26 18:44:18.372 69300 TIP 439729 21578 6076532 2024-02-26 18:44:18.8 2024-02-26 18:44:18.8 7700 FEE 439729 17800 6076533 2024-02-26 18:44:18.8 2024-02-26 18:44:18.8 69300 TIP 439729 20706 6076548 2024-02-26 18:45:10.129 2024-02-26 18:45:10.129 2100 FEE 439514 14267 6076549 2024-02-26 18:45:10.129 2024-02-26 18:45:10.129 18900 TIP 439514 2065 6076576 2024-02-26 18:49:27.238 2024-02-26 18:49:27.238 0 FEE 439747 18452 6076604 2024-02-26 18:54:29.814 2024-02-26 18:54:29.814 2100 FEE 439729 5809 6076605 2024-02-26 18:54:29.814 2024-02-26 18:54:29.814 18900 TIP 439729 19841 6076606 2024-02-26 18:54:39.128 2024-02-26 18:54:39.128 2100 FEE 439713 1814 6076607 2024-02-26 18:54:39.128 2024-02-26 18:54:39.128 18900 TIP 439713 1000 6076645 2024-02-26 18:57:25.33 2024-02-26 18:57:25.33 7700 FEE 439764 20137 6076646 2024-02-26 18:57:25.33 2024-02-26 18:57:25.33 69300 TIP 439764 18984 6076668 2024-02-26 18:59:57.615 2024-02-26 18:59:57.615 0 FEE 439766 3213 6076669 2024-02-26 18:59:59.688 2024-02-26 18:59:59.688 100 FEE 439723 3396 6076670 2024-02-26 18:59:59.688 2024-02-26 18:59:59.688 900 TIP 439723 2029 6076678 2024-02-26 19:01:16.058 2024-02-26 19:01:16.058 3500 FEE 439654 9529 6076679 2024-02-26 19:01:16.058 2024-02-26 19:01:16.058 31500 TIP 439654 10849 6076680 2024-02-26 19:01:45.313 2024-02-26 19:01:45.313 0 FEE 89179 13575 6076688 2024-02-26 19:03:03.73 2024-02-26 19:03:03.73 100 FEE 439719 722 6076689 2024-02-26 19:03:03.73 2024-02-26 19:03:03.73 900 TIP 439719 1720 6076701 2024-02-26 19:05:48.413 2024-02-26 19:05:48.413 21000 FEE 439773 20585 6076762 2024-02-26 19:11:00.69 2024-02-26 19:11:00.69 100000 FEE 439779 11240 6076774 2024-02-26 19:12:03.053 2024-02-26 19:12:03.053 300 FEE 439764 769 6076775 2024-02-26 19:12:03.053 2024-02-26 19:12:03.053 2700 TIP 439764 5427 6076776 2024-02-26 19:12:41.295 2024-02-26 19:12:41.295 1000 FEE 439781 19459 6076786 2024-02-26 19:14:29.973 2024-02-26 19:14:29.973 1000 FEE 439783 15282 6076787 2024-02-26 19:14:42.092 2024-02-26 19:14:42.092 1000 FEE 439784 6383 6076791 2024-02-26 19:15:26.228 2024-02-26 19:15:26.228 2100 FEE 439220 627 6076792 2024-02-26 19:15:26.228 2024-02-26 19:15:26.228 18900 TIP 439220 18264 6076816 2024-02-26 19:17:58.613 2024-02-26 19:17:58.613 77000 DONT_LIKE_THIS 439785 20129 6076824 2024-02-26 19:19:02.438 2024-02-26 19:19:02.438 15400 FEE 439789 21164 6076825 2024-02-26 19:19:02.438 2024-02-26 19:19:02.438 138600 TIP 439789 1658 6076859 2024-02-26 19:21:15.075 2024-02-26 19:21:15.075 100 FEE 439753 854 6076860 2024-02-26 19:21:15.075 2024-02-26 19:21:15.075 900 TIP 439753 763 6076868 2024-02-26 19:23:42.992 2024-02-26 19:23:42.992 2100 FEE 439264 15160 6076869 2024-02-26 19:23:42.992 2024-02-26 19:23:42.992 18900 TIP 439264 7395 6076871 2024-02-26 19:24:04.734 2024-02-26 19:24:04.734 100 FEE 439315 4459 6076872 2024-02-26 19:24:04.734 2024-02-26 19:24:04.734 900 TIP 439315 21371 6076879 2024-02-26 19:24:06.519 2024-02-26 19:24:06.519 200 FEE 439315 1310 6076880 2024-02-26 19:24:06.519 2024-02-26 19:24:06.519 1800 TIP 439315 3478 6076888 2024-02-26 19:24:58.901 2024-02-26 19:24:58.901 1000 FEE 439794 9845 6076387 2024-02-26 18:30:47.388 2024-02-26 18:30:47.388 900 TIP 439699 3213 6076420 2024-02-26 18:32:22.48 2024-02-26 18:32:22.48 0 FEE 439733 5590 6076428 2024-02-26 18:32:45.369 2024-02-26 18:32:45.369 1000 FEE 439729 15624 6076429 2024-02-26 18:32:45.369 2024-02-26 18:32:45.369 9000 TIP 439729 19511 6076438 2024-02-26 18:33:44.113 2024-02-26 18:33:44.113 100 FEE 439711 14795 6076439 2024-02-26 18:33:44.113 2024-02-26 18:33:44.113 900 TIP 439711 19329 6076451 2024-02-26 18:34:23.126 2024-02-26 18:34:23.126 900 FEE 439503 17212 6076452 2024-02-26 18:34:23.126 2024-02-26 18:34:23.126 8100 TIP 439503 2775 6076453 2024-02-26 18:34:23.469 2024-02-26 18:34:23.469 9000 FEE 439503 3371 6076454 2024-02-26 18:34:23.469 2024-02-26 18:34:23.469 81000 TIP 439503 14990 6076455 2024-02-26 18:35:00.201 2024-02-26 18:35:00.201 1000 FEE 439736 976 6076458 2024-02-26 18:35:10.324 2024-02-26 18:35:10.324 1000 FEE 439739 20751 6076465 2024-02-26 18:35:56.157 2024-02-26 18:35:56.157 100 FEE 439733 7389 6076466 2024-02-26 18:35:56.157 2024-02-26 18:35:56.157 900 TIP 439733 14785 6076486 2024-02-26 18:37:04.873 2024-02-26 18:37:04.873 7700 FEE 439397 1094 6076487 2024-02-26 18:37:04.873 2024-02-26 18:37:04.873 69300 TIP 439397 18076 6076502 2024-02-26 18:39:08.906 2024-02-26 18:39:08.906 1000 FEE 439744 12218 6076503 2024-02-26 18:39:32.191 2024-02-26 18:39:32.191 2100 FEE 439654 5359 6076504 2024-02-26 18:39:32.191 2024-02-26 18:39:32.191 18900 TIP 439654 21417 6076519 2024-02-26 18:42:58.153 2024-02-26 18:42:58.153 200 FEE 439745 7587 6076520 2024-02-26 18:42:58.153 2024-02-26 18:42:58.153 1800 TIP 439745 20018 6076534 2024-02-26 18:44:18.939 2024-02-26 18:44:18.939 7700 FEE 439729 7978 6076535 2024-02-26 18:44:18.939 2024-02-26 18:44:18.939 69300 TIP 439729 2437 6076577 2024-02-26 18:49:28.015 2024-02-26 18:49:28.015 10000 FEE 439263 16177 6076578 2024-02-26 18:49:28.015 2024-02-26 18:49:28.015 90000 TIP 439263 4989 6076616 2024-02-26 18:55:02.935 2024-02-26 18:55:02.935 1000 FEE 439695 21437 6076617 2024-02-26 18:55:02.935 2024-02-26 18:55:02.935 9000 TIP 439695 9246 6076618 2024-02-26 18:55:03.424 2024-02-26 18:55:03.424 1000 FEE 439695 6765 6076619 2024-02-26 18:55:03.424 2024-02-26 18:55:03.424 9000 TIP 439695 18815 6076625 2024-02-26 18:55:40.15 2024-02-26 18:55:40.15 7700 FEE 439276 18269 6076626 2024-02-26 18:55:40.15 2024-02-26 18:55:40.15 69300 TIP 439276 17727 6076653 2024-02-26 18:57:51.701 2024-02-26 18:57:51.701 100 FEE 439745 19286 6076654 2024-02-26 18:57:51.701 2024-02-26 18:57:51.701 900 TIP 439745 20377 6076657 2024-02-26 18:58:49.042 2024-02-26 18:58:49.042 1000 FEE 439766 15200 6076664 2024-02-26 18:59:08.774 2024-02-26 18:59:08.774 1000 FEE 439760 17106 6076665 2024-02-26 18:59:08.774 2024-02-26 18:59:08.774 9000 TIP 439760 16193 6076706 2024-02-26 19:05:51.933 2024-02-26 19:05:51.933 100 FEE 439633 14280 6076707 2024-02-26 19:05:51.933 2024-02-26 19:05:51.933 900 TIP 439633 20897 6076710 2024-02-26 19:06:11.739 2024-02-26 19:06:11.739 1000 FEE 439775 19488 6076715 2024-02-26 19:06:48.878 2024-02-26 19:06:48.878 100 FEE 439713 21048 6076716 2024-02-26 19:06:48.878 2024-02-26 19:06:48.878 900 TIP 439713 12277 6076719 2024-02-26 19:07:02.228 2024-02-26 19:07:02.228 2100 FEE 439228 20657 6076720 2024-02-26 19:07:02.228 2024-02-26 19:07:02.228 18900 TIP 439228 5195 6076725 2024-02-26 19:07:50.154 2024-02-26 19:07:50.154 300 FEE 439722 2098 6076726 2024-02-26 19:07:50.154 2024-02-26 19:07:50.154 2700 TIP 439722 21194 6076753 2024-02-26 19:08:37.529 2024-02-26 19:08:37.529 1000 FEE 439764 17162 6076754 2024-02-26 19:08:37.529 2024-02-26 19:08:37.529 9000 TIP 439764 4115 6076796 2024-02-26 19:15:34.194 2024-02-26 19:15:34.194 1000 FEE 439786 20624 6076798 2024-02-26 19:16:09.25 2024-02-26 19:16:09.25 1000 FEE 439787 19583 6076801 2024-02-26 19:16:22.727 2024-02-26 19:16:22.727 1000 FEE 438108 763 6076802 2024-02-26 19:16:22.727 2024-02-26 19:16:22.727 9000 TIP 438108 18219 6076806 2024-02-26 19:17:15.116 2024-02-26 19:17:15.116 0 FEE 439786 1213 6076809 2024-02-26 19:17:22.675 2024-02-26 19:17:22.675 9000 FEE 439729 1534 6076810 2024-02-26 19:17:22.675 2024-02-26 19:17:22.675 81000 TIP 439729 16830 6076813 2024-02-26 19:17:36.87 2024-02-26 19:17:36.87 4000 FEE 439586 703 6076814 2024-02-26 19:17:36.87 2024-02-26 19:17:36.87 36000 TIP 439586 16177 6076849 2024-02-26 19:21:12.511 2024-02-26 19:21:12.511 100 FEE 439753 16193 6076850 2024-02-26 19:21:12.511 2024-02-26 19:21:12.511 900 TIP 439753 21116 6076885 2024-02-26 19:24:28.093 2024-02-26 19:24:28.093 2500 FEE 439701 18511 6076886 2024-02-26 19:24:28.093 2024-02-26 19:24:28.093 22500 TIP 439701 9496 6076898 2024-02-26 19:26:29.363 2024-02-26 19:26:29.363 1000 FEE 439796 16929 6076900 2024-02-26 19:27:02.928 2024-02-26 19:27:02.928 1000 FEE 439488 712 6076901 2024-02-26 19:27:02.928 2024-02-26 19:27:02.928 9000 TIP 439488 4831 6076918 2024-02-26 19:28:29.009 2024-02-26 19:28:29.009 100 FEE 439390 9476 6076919 2024-02-26 19:28:29.009 2024-02-26 19:28:29.009 900 TIP 439390 18626 6076928 2024-02-26 19:30:00.224 2024-02-26 19:30:00.224 100 FEE 439736 10493 6076929 2024-02-26 19:30:00.224 2024-02-26 19:30:00.224 900 TIP 439736 20301 6076436 2024-02-26 18:33:21.023 2024-02-26 18:33:21.023 20700 TIP 439729 18581 6076445 2024-02-26 18:34:11.596 2024-02-26 18:34:11.596 4000 FEE 439723 20058 6076446 2024-02-26 18:34:11.596 2024-02-26 18:34:11.596 36000 TIP 439723 20546 6076488 2024-02-26 18:37:04.888 2024-02-26 18:37:04.888 7700 FEE 439397 19980 6076489 2024-02-26 18:37:04.888 2024-02-26 18:37:04.888 69300 TIP 439397 1729 6076490 2024-02-26 18:37:16.092 2024-02-26 18:37:16.092 2100 FEE 439624 1712 6076491 2024-02-26 18:37:16.092 2024-02-26 18:37:16.092 18900 TIP 439624 5173 6076508 2024-02-26 18:41:14.24 2024-02-26 18:41:14.24 100 FEE 439586 11716 6076509 2024-02-26 18:41:14.24 2024-02-26 18:41:14.24 900 TIP 439586 13903 6076530 2024-02-26 18:44:18.655 2024-02-26 18:44:18.655 7700 FEE 439729 749 6076531 2024-02-26 18:44:18.655 2024-02-26 18:44:18.655 69300 TIP 439729 8168 6076546 2024-02-26 18:45:05.279 2024-02-26 18:45:05.279 1000 FEE 439749 12261 6076547 2024-02-26 18:45:08.728 2024-02-26 18:45:08.728 10000 FEE 439750 16543 6076556 2024-02-26 18:45:39.822 2024-02-26 18:45:39.822 7700 FEE 438758 7395 6076557 2024-02-26 18:45:39.822 2024-02-26 18:45:39.822 69300 TIP 438758 15556 6076560 2024-02-26 18:46:41.363 2024-02-26 18:46:41.363 800 FEE 439723 7674 6076561 2024-02-26 18:46:41.363 2024-02-26 18:46:41.363 7200 TIP 439723 18615 6076602 2024-02-26 18:54:27.091 2024-02-26 18:54:27.091 2100 FEE 439443 1611 6076603 2024-02-26 18:54:27.091 2024-02-26 18:54:27.091 18900 TIP 439443 15160 6076608 2024-02-26 18:54:44.437 2024-02-26 18:54:44.437 1000 FEE 439760 21104 6076611 2024-02-26 18:54:49.5 2024-02-26 18:54:49.5 2100 FEE 439655 4624 6076612 2024-02-26 18:54:49.5 2024-02-26 18:54:49.5 18900 TIP 439655 9655 6076613 2024-02-26 18:54:53.917 2024-02-26 18:54:53.917 2100 FEE 439426 16808 6076614 2024-02-26 18:54:53.917 2024-02-26 18:54:53.917 18900 TIP 439426 20560 6076627 2024-02-26 18:55:40.234 2024-02-26 18:55:40.234 7700 FEE 439276 8726 6076628 2024-02-26 18:55:40.234 2024-02-26 18:55:40.234 69300 TIP 439276 20551 6076635 2024-02-26 18:56:43.756 2024-02-26 18:56:43.756 6900 FEE 439760 732 6076636 2024-02-26 18:56:43.756 2024-02-26 18:56:43.756 62100 TIP 439760 21400 6076475 2024-02-26 18:36:03.182 2024-02-26 18:36:03.182 1000 STREAM 141924 12291 6076630 2024-02-26 18:56:03.073 2024-02-26 18:56:03.073 1000 STREAM 141924 1773 6076640 2024-02-26 18:57:03.069 2024-02-26 18:57:03.069 1000 STREAM 141924 18629 6076699 2024-02-26 19:05:03.123 2024-02-26 19:05:03.123 1000 STREAM 141924 21412 6076492 2024-02-26 18:37:45.454 2024-02-26 18:37:45.454 1000 FEE 439742 5427 6076538 2024-02-26 18:44:20.375 2024-02-26 18:44:20.375 7700 FEE 439729 3213 6076539 2024-02-26 18:44:20.375 2024-02-26 18:44:20.375 69300 TIP 439729 674 6076566 2024-02-26 18:47:11.959 2024-02-26 18:47:11.959 1600 FEE 439729 3504 6076567 2024-02-26 18:47:11.959 2024-02-26 18:47:11.959 14400 TIP 439729 19044 6076582 2024-02-26 18:50:39.527 2024-02-26 18:50:39.527 7700 FEE 438494 866 6076583 2024-02-26 18:50:39.527 2024-02-26 18:50:39.527 69300 TIP 438494 1472 6076584 2024-02-26 18:50:39.963 2024-02-26 18:50:39.963 7700 FEE 438494 721 6076585 2024-02-26 18:50:39.963 2024-02-26 18:50:39.963 69300 TIP 438494 1060 6076586 2024-02-26 18:50:41.293 2024-02-26 18:50:41.293 7700 FEE 438494 5701 6076587 2024-02-26 18:50:41.293 2024-02-26 18:50:41.293 69300 TIP 438494 12965 6076591 2024-02-26 18:52:00.261 2024-02-26 18:52:00.261 1000 FEE 439756 1697 6076621 2024-02-26 18:55:22.316 2024-02-26 18:55:22.316 1000 FEE 439762 16350 6076637 2024-02-26 18:56:52.837 2024-02-26 18:56:52.837 11000 FEE 439764 15624 6076651 2024-02-26 18:57:41.072 2024-02-26 18:57:41.072 100 FEE 439757 18468 6076652 2024-02-26 18:57:41.072 2024-02-26 18:57:41.072 900 TIP 439757 624 6076656 2024-02-26 18:58:34.67 2024-02-26 18:58:34.67 1000 FEE 439765 6229 6076674 2024-02-26 19:00:31.382 2024-02-26 19:00:31.382 4000 FEE 439765 9183 6076675 2024-02-26 19:00:31.382 2024-02-26 19:00:31.382 36000 TIP 439765 9036 6076684 2024-02-26 19:02:13.416 2024-02-26 19:02:13.416 2100 FEE 439648 2022 6076685 2024-02-26 19:02:13.416 2024-02-26 19:02:13.416 18900 TIP 439648 20454 6076686 2024-02-26 19:02:47.607 2024-02-26 19:02:47.607 1000 FEE 439771 11873 6076717 2024-02-26 19:06:55.634 2024-02-26 19:06:55.634 100 FEE 439658 14247 6076718 2024-02-26 19:06:55.634 2024-02-26 19:06:55.634 900 TIP 439658 21501 6076739 2024-02-26 19:07:52.531 2024-02-26 19:07:52.531 1000 FEE 439777 992 6076751 2024-02-26 19:08:37.077 2024-02-26 19:08:37.077 1000 FEE 439764 21201 6076752 2024-02-26 19:08:37.077 2024-02-26 19:08:37.077 9000 TIP 439764 2844 6076760 2024-02-26 19:10:41.426 2024-02-26 19:10:41.426 2100 FEE 439207 20299 6076761 2024-02-26 19:10:41.426 2024-02-26 19:10:41.426 18900 TIP 439207 1737 6076772 2024-02-26 19:11:52.73 2024-02-26 19:11:52.73 1000 FEE 439780 21164 6076820 2024-02-26 19:18:42.978 2024-02-26 19:18:42.978 2100 FEE 439780 20163 6076821 2024-02-26 19:18:42.978 2024-02-26 19:18:42.978 18900 TIP 439780 18468 6076835 2024-02-26 19:19:23.812 2024-02-26 19:19:23.812 3300 FEE 439603 1320 6076836 2024-02-26 19:19:23.812 2024-02-26 19:19:23.812 29700 TIP 439603 1567 6076840 2024-02-26 19:20:23.08 2024-02-26 19:20:23.08 4000 FEE 439790 3461 6076841 2024-02-26 19:20:23.08 2024-02-26 19:20:23.08 36000 TIP 439790 17275 6076847 2024-02-26 19:21:12.325 2024-02-26 19:21:12.325 100 FEE 439753 9167 6076848 2024-02-26 19:21:12.325 2024-02-26 19:21:12.325 900 TIP 439753 14280 6076497 2024-02-26 18:38:03.242 2024-02-26 18:38:03.242 1000 STREAM 141924 5865 6076599 2024-02-26 18:54:03.365 2024-02-26 18:54:03.365 1000 STREAM 141924 4250 6076638 2024-02-26 18:56:59.318 2024-02-26 18:56:59.318 2100 FEE 439443 1564 6076639 2024-02-26 18:56:59.318 2024-02-26 18:56:59.318 18900 TIP 439443 19910 6076647 2024-02-26 18:57:25.979 2024-02-26 18:57:25.979 7700 FEE 439764 21274 6076648 2024-02-26 18:57:25.979 2024-02-26 18:57:25.979 69300 TIP 439764 17218 6076676 2024-02-26 19:00:50.266 2024-02-26 19:00:50.266 10000 FEE 439770 21514 6076690 2024-02-26 19:03:35.961 2024-02-26 19:03:35.961 10000 FEE 439701 18909 6076691 2024-02-26 19:03:35.961 2024-02-26 19:03:35.961 90000 TIP 439701 20837 6076695 2024-02-26 19:04:18.072 2024-02-26 19:04:18.072 1000 FEE 439757 15094 6076696 2024-02-26 19:04:18.072 2024-02-26 19:04:18.072 9000 TIP 439757 1114 6076722 2024-02-26 19:07:14.153 2024-02-26 19:07:14.153 1000 FEE 439776 2329 6076737 2024-02-26 19:07:51.536 2024-02-26 19:07:51.536 300 FEE 439722 3745 6076738 2024-02-26 19:07:51.536 2024-02-26 19:07:51.536 2700 TIP 439722 13406 6076780 2024-02-26 19:13:20.038 2024-02-26 19:13:20.038 1000 FEE 439782 9426 6076784 2024-02-26 19:14:20.402 2024-02-26 19:14:20.402 1000 FEE 439735 19909 6076785 2024-02-26 19:14:20.402 2024-02-26 19:14:20.402 9000 TIP 439735 8448 6076807 2024-02-26 19:17:16.466 2024-02-26 19:17:16.466 2100 FEE 439729 678 6076808 2024-02-26 19:17:16.466 2024-02-26 19:17:16.466 18900 TIP 439729 1352 6076831 2024-02-26 19:19:22.229 2024-02-26 19:19:22.229 3300 FEE 439631 5752 6076832 2024-02-26 19:19:22.229 2024-02-26 19:19:22.229 29700 TIP 439631 20603 6076857 2024-02-26 19:21:14.884 2024-02-26 19:21:14.884 100 FEE 439753 19309 6076858 2024-02-26 19:21:14.884 2024-02-26 19:21:14.884 900 TIP 439753 18679 6076873 2024-02-26 19:24:04.905 2024-02-26 19:24:04.905 200 FEE 439315 16998 6076874 2024-02-26 19:24:04.905 2024-02-26 19:24:04.905 1800 TIP 439315 20502 6076643 2024-02-26 18:57:25.028 2024-02-26 18:57:25.028 7700 FEE 439764 8569 6076644 2024-02-26 18:57:25.028 2024-02-26 18:57:25.028 69300 TIP 439764 19633 6076649 2024-02-26 18:57:31.802 2024-02-26 18:57:31.802 100 FEE 439760 18472 6076650 2024-02-26 18:57:31.802 2024-02-26 18:57:31.802 900 TIP 439760 620 6076662 2024-02-26 18:59:08.604 2024-02-26 18:59:08.604 1000 FEE 439760 1806 6076663 2024-02-26 18:59:08.604 2024-02-26 18:59:08.604 9000 TIP 439760 20026 6076672 2024-02-26 19:00:28.049 2024-02-26 19:00:28.049 1000 FEE 439757 18626 6076673 2024-02-26 19:00:28.049 2024-02-26 19:00:28.049 9000 TIP 439757 2046 6076727 2024-02-26 19:07:50.35 2024-02-26 19:07:50.35 300 FEE 439722 18154 6076728 2024-02-26 19:07:50.35 2024-02-26 19:07:50.35 2700 TIP 439722 1007 6076740 2024-02-26 19:07:56.945 2024-02-26 19:07:56.945 7700 FEE 439773 13782 6076741 2024-02-26 19:07:56.945 2024-02-26 19:07:56.945 69300 TIP 439773 11527 6076745 2024-02-26 19:08:05.021 2024-02-26 19:08:05.021 7700 FEE 439768 9166 6076746 2024-02-26 19:08:05.021 2024-02-26 19:08:05.021 69300 TIP 439768 16059 6076770 2024-02-26 19:11:46.809 2024-02-26 19:11:46.809 1000 FEE 439774 19435 6076771 2024-02-26 19:11:46.809 2024-02-26 19:11:46.809 9000 TIP 439774 11898 6076837 2024-02-26 19:19:44.644 2024-02-26 19:19:44.644 1000 FEE 439790 21249 6076845 2024-02-26 19:21:11.978 2024-02-26 19:21:11.978 100 FEE 439753 6361 6076846 2024-02-26 19:21:11.978 2024-02-26 19:21:11.978 900 TIP 439753 1519 6076851 2024-02-26 19:21:12.96 2024-02-26 19:21:12.96 100 FEE 439753 20778 6076852 2024-02-26 19:21:12.96 2024-02-26 19:21:12.96 900 TIP 439753 8245 6076875 2024-02-26 19:24:04.924 2024-02-26 19:24:04.924 100 FEE 439315 5865 6076876 2024-02-26 19:24:04.924 2024-02-26 19:24:04.924 900 TIP 439315 21180 6076890 2024-02-26 19:25:18.709 2024-02-26 19:25:18.709 1000 FEE 439795 5359 6076896 2024-02-26 19:26:12.349 2024-02-26 19:26:12.349 100 FEE 439764 670 6076897 2024-02-26 19:26:12.349 2024-02-26 19:26:12.349 900 TIP 439764 4115 6076903 2024-02-26 19:27:14.845 2024-02-26 19:27:14.845 200 FEE 439793 20614 6076904 2024-02-26 19:27:14.845 2024-02-26 19:27:14.845 1800 TIP 439793 2285 6076905 2024-02-26 19:27:22.862 2024-02-26 19:27:22.862 100 FEE 438649 21140 6076906 2024-02-26 19:27:22.862 2024-02-26 19:27:22.862 900 TIP 438649 16194 6076915 2024-02-26 19:28:10.35 2024-02-26 19:28:10.35 1000 FEE 439339 5128 6076916 2024-02-26 19:28:10.35 2024-02-26 19:28:10.35 9000 TIP 439339 18635 6076926 2024-02-26 19:29:49.065 2024-02-26 19:29:49.065 1000 FEE 439801 11192 6076927 2024-02-26 19:29:50.192 2024-02-26 19:29:50.192 1000 FEE 439802 21614 6076655 2024-02-26 18:58:03.079 2024-02-26 18:58:03.079 1000 STREAM 141924 12169 6076659 2024-02-26 18:59:03.092 2024-02-26 18:59:03.092 1000 STREAM 141924 6384 6076671 2024-02-26 19:00:03.13 2024-02-26 19:00:03.13 1000 STREAM 141924 16004 6076677 2024-02-26 19:01:03.109 2024-02-26 19:01:03.109 1000 STREAM 141924 21391 6076692 2024-02-26 19:04:03.118 2024-02-26 19:04:03.118 1000 STREAM 141924 18230 6076938 2024-02-26 19:30:03.436 2024-02-26 19:30:03.436 1000 STREAM 141924 19151 6076700 2024-02-26 19:05:34.239 2024-02-26 19:05:34.239 1000 FEE 439772 2061 6076702 2024-02-26 19:05:50.906 2024-02-26 19:05:50.906 200 FEE 439633 7668 6076703 2024-02-26 19:05:50.906 2024-02-26 19:05:50.906 1800 TIP 439633 21067 6076704 2024-02-26 19:05:51.257 2024-02-26 19:05:51.257 200 FEE 439633 2703 6076705 2024-02-26 19:05:51.257 2024-02-26 19:05:51.257 1800 TIP 439633 715 6076733 2024-02-26 19:07:50.964 2024-02-26 19:07:50.964 300 FEE 439722 704 6076734 2024-02-26 19:07:50.964 2024-02-26 19:07:50.964 2700 TIP 439722 20581 6076742 2024-02-26 19:07:57.817 2024-02-26 19:07:57.817 7700 FEE 439773 1213 6076743 2024-02-26 19:07:57.817 2024-02-26 19:07:57.817 69300 TIP 439773 4633 6076768 2024-02-26 19:11:27.298 2024-02-26 19:11:27.298 300 FEE 439007 19435 6076769 2024-02-26 19:11:27.298 2024-02-26 19:11:27.298 2700 TIP 439007 6717 6076778 2024-02-26 19:13:07.706 2024-02-26 19:13:07.706 100 FEE 439779 21469 6076779 2024-02-26 19:13:07.706 2024-02-26 19:13:07.706 900 TIP 439779 2963 6076781 2024-02-26 19:13:37.765 2024-02-26 19:13:37.765 2500 FEE 439729 715 6076782 2024-02-26 19:13:37.765 2024-02-26 19:13:37.765 22500 TIP 439729 13143 6076804 2024-02-26 19:17:11.562 2024-02-26 19:17:11.562 800 FEE 439764 1723 6076805 2024-02-26 19:17:11.562 2024-02-26 19:17:11.562 7200 TIP 439764 14280 6076817 2024-02-26 19:18:02.649 2024-02-26 19:18:02.649 77000 DONT_LIKE_THIS 439784 16956 6076819 2024-02-26 19:18:09.557 2024-02-26 19:18:09.557 100000 FEE 439789 763 6076822 2024-02-26 19:18:44.922 2024-02-26 19:18:44.922 2100 FEE 439658 2829 6076823 2024-02-26 19:18:44.922 2024-02-26 19:18:44.922 18900 TIP 439658 21218 6076827 2024-02-26 19:19:20.967 2024-02-26 19:19:20.967 3300 FEE 439603 15266 6076828 2024-02-26 19:19:20.967 2024-02-26 19:19:20.967 29700 TIP 439603 21400 6076829 2024-02-26 19:19:21.645 2024-02-26 19:19:21.645 3300 FEE 439631 20606 6076830 2024-02-26 19:19:21.645 2024-02-26 19:19:21.645 29700 TIP 439631 16830 6076735 2024-02-26 19:07:51.358 2024-02-26 19:07:51.358 300 FEE 439722 5942 6076736 2024-02-26 19:07:51.358 2024-02-26 19:07:51.358 2700 TIP 439722 15941 6076749 2024-02-26 19:08:35.984 2024-02-26 19:08:35.984 1000 FEE 439764 20858 6076750 2024-02-26 19:08:35.984 2024-02-26 19:08:35.984 9000 TIP 439764 986 6076756 2024-02-26 19:09:10.759 2024-02-26 19:09:10.759 1000 FEE 439778 9809 6076764 2024-02-26 19:11:07.024 2024-02-26 19:11:07.024 300 FEE 438993 671 6076765 2024-02-26 19:11:07.024 2024-02-26 19:11:07.024 2700 TIP 438993 19332 6076789 2024-02-26 19:15:11.621 2024-02-26 19:15:11.621 3500 FEE 439779 1213 6076790 2024-02-26 19:15:11.621 2024-02-26 19:15:11.621 31500 TIP 439779 7185 6076793 2024-02-26 19:15:32.561 2024-02-26 19:15:32.561 1000 FEE 439624 21472 6076794 2024-02-26 19:15:32.561 2024-02-26 19:15:32.561 9000 TIP 439624 7558 6076795 2024-02-26 19:15:34.128 2024-02-26 19:15:34.128 1000 FEE 439785 13198 6076799 2024-02-26 19:16:16.783 2024-02-26 19:16:16.783 800 FEE 439760 21139 6076800 2024-02-26 19:16:16.783 2024-02-26 19:16:16.783 7200 TIP 439760 1354 6076811 2024-02-26 19:17:33.922 2024-02-26 19:17:33.922 4000 FEE 439729 16965 6076812 2024-02-26 19:17:33.922 2024-02-26 19:17:33.922 36000 TIP 439729 19980 6076833 2024-02-26 19:19:23.339 2024-02-26 19:19:23.339 3300 FEE 439603 3456 6076834 2024-02-26 19:19:23.339 2024-02-26 19:19:23.339 29700 TIP 439603 9816 6076853 2024-02-26 19:21:13.462 2024-02-26 19:21:13.462 100 FEE 439753 9184 6076854 2024-02-26 19:21:13.462 2024-02-26 19:21:13.462 900 TIP 439753 20858 6076855 2024-02-26 19:21:14.672 2024-02-26 19:21:14.672 100 FEE 439753 19289 6076856 2024-02-26 19:21:14.672 2024-02-26 19:21:14.672 900 TIP 439753 2652 6076863 2024-02-26 19:21:16.341 2024-02-26 19:21:16.341 100 FEE 439753 6616 6076864 2024-02-26 19:21:16.341 2024-02-26 19:21:16.341 900 TIP 439753 20201 6076877 2024-02-26 19:24:05.117 2024-02-26 19:24:05.117 100 FEE 439315 21048 6076878 2024-02-26 19:24:05.117 2024-02-26 19:24:05.117 900 TIP 439315 20636 6076881 2024-02-26 19:24:06.576 2024-02-26 19:24:06.576 200 FEE 439315 650 6076882 2024-02-26 19:24:06.576 2024-02-26 19:24:06.576 1800 TIP 439315 14449 6076887 2024-02-26 19:24:39.009 2024-02-26 19:24:39.009 11000 FEE 439793 21338 6076894 2024-02-26 19:26:07.464 2024-02-26 19:26:07.464 3300 FEE 439513 18270 6076895 2024-02-26 19:26:07.464 2024-02-26 19:26:07.464 29700 TIP 439513 7998 6076907 2024-02-26 19:27:23.731 2024-02-26 19:27:23.731 100 FEE 439729 18265 6076908 2024-02-26 19:27:23.731 2024-02-26 19:27:23.731 900 TIP 439729 4079 6076909 2024-02-26 19:27:25.548 2024-02-26 19:27:25.548 200 FEE 439789 18932 6076910 2024-02-26 19:27:25.548 2024-02-26 19:27:25.548 1800 TIP 439789 12188 6076917 2024-02-26 19:28:20.149 2024-02-26 19:28:20.149 1000 FEE 439799 1474 6076930 2024-02-26 19:30:00.446 2024-02-26 19:30:00.446 100 FEE 439736 17552 6076931 2024-02-26 19:30:00.446 2024-02-26 19:30:00.446 900 TIP 439736 2029 6076932 2024-02-26 19:30:00.769 2024-02-26 19:30:00.769 100 FEE 439736 15161 6076933 2024-02-26 19:30:00.769 2024-02-26 19:30:00.769 900 TIP 439736 19286 6076934 2024-02-26 19:30:02.907 2024-02-26 19:30:02.907 100 FEE 439736 5293 6076935 2024-02-26 19:30:02.907 2024-02-26 19:30:02.907 900 TIP 439736 9337 6076936 2024-02-26 19:30:02.92 2024-02-26 19:30:02.92 100 FEE 439736 647 6076937 2024-02-26 19:30:02.92 2024-02-26 19:30:02.92 900 TIP 439736 16350 6076861 2024-02-26 19:21:15.31 2024-02-26 19:21:15.31 100 FEE 439753 15719 6076862 2024-02-26 19:21:15.31 2024-02-26 19:21:15.31 900 TIP 439753 15463 6076867 2024-02-26 19:23:10.599 2024-02-26 19:23:10.599 1000 FEE 439792 14449 6076891 2024-02-26 19:26:03.013 2024-02-26 19:26:03.013 3300 FEE 439729 641 6076892 2024-02-26 19:26:03.013 2024-02-26 19:26:03.013 29700 TIP 439729 1983 6076899 2024-02-26 19:26:58.905 2024-02-26 19:26:58.905 100000 FEE 439797 18828 6076911 2024-02-26 19:27:35.381 2024-02-26 19:27:35.381 1000 FEE 439798 5779 6076912 2024-02-26 19:27:40.106 2024-02-26 19:27:40.106 4000 FEE 439796 21222 6076913 2024-02-26 19:27:40.106 2024-02-26 19:27:40.106 36000 TIP 439796 15052 6076920 2024-02-26 19:28:44.764 2024-02-26 19:28:44.764 1000 FEE 439800 14472 6076921 2024-02-26 19:28:59.235 2024-02-26 19:28:59.235 100 FEE 439390 1737 6076922 2024-02-26 19:28:59.235 2024-02-26 19:28:59.235 900 TIP 439390 19147 6076924 2024-02-26 19:29:47.592 2024-02-26 19:29:47.592 200 FEE 439785 20891 6076925 2024-02-26 19:29:47.592 2024-02-26 19:29:47.592 1800 TIP 439785 21292 6076939 2024-02-26 19:30:24.161 2024-02-26 19:30:24.161 100 FEE 439784 20302 6076940 2024-02-26 19:30:24.161 2024-02-26 19:30:24.161 900 TIP 439784 19375 6076951 2024-02-26 19:30:41.137 2024-02-26 19:30:41.137 100 FEE 439785 696 6076952 2024-02-26 19:30:41.137 2024-02-26 19:30:41.137 900 TIP 439785 18736 6076953 2024-02-26 19:30:42.47 2024-02-26 19:30:42.47 100 FEE 439784 20669 6076954 2024-02-26 19:30:42.47 2024-02-26 19:30:42.47 900 TIP 439784 21166 6076961 2024-02-26 19:31:04.509 2024-02-26 19:31:04.509 100 FEE 439592 20094 6076962 2024-02-26 19:31:04.509 2024-02-26 19:31:04.509 900 TIP 439592 16753 6076963 2024-02-26 19:31:04.698 2024-02-26 19:31:04.698 100 FEE 439592 4831 6076964 2024-02-26 19:31:04.698 2024-02-26 19:31:04.698 900 TIP 439592 15226 6076978 2024-02-26 19:33:22.606 2024-02-26 19:33:22.606 7700 FEE 439806 7673 6076979 2024-02-26 19:33:22.606 2024-02-26 19:33:22.606 69300 TIP 439806 9426 6076982 2024-02-26 19:33:24.073 2024-02-26 19:33:24.073 7700 FEE 439806 1425 6076983 2024-02-26 19:33:24.073 2024-02-26 19:33:24.073 69300 TIP 439806 4819 6076986 2024-02-26 19:33:25.083 2024-02-26 19:33:25.083 7700 FEE 439806 7674 6076987 2024-02-26 19:33:25.083 2024-02-26 19:33:25.083 69300 TIP 439806 17568 6076988 2024-02-26 19:33:25.415 2024-02-26 19:33:25.415 7700 FEE 439806 12483 6076989 2024-02-26 19:33:25.415 2024-02-26 19:33:25.415 69300 TIP 439806 20434 6076992 2024-02-26 19:33:54.101 2024-02-26 19:33:54.101 1000 FEE 439809 11714 6077016 2024-02-26 19:36:14.875 2024-02-26 19:36:14.875 1000 FEE 439812 9352 6077029 2024-02-26 19:37:16.808 2024-02-26 19:37:16.808 3000 FEE 439472 19911 6077030 2024-02-26 19:37:16.808 2024-02-26 19:37:16.808 27000 TIP 439472 12507 6077049 2024-02-26 19:38:35.966 2024-02-26 19:38:35.966 7700 FEE 438646 5646 6077050 2024-02-26 19:38:35.966 2024-02-26 19:38:35.966 69300 TIP 438646 672 6077053 2024-02-26 19:38:36.454 2024-02-26 19:38:36.454 7700 FEE 438646 14950 6077054 2024-02-26 19:38:36.454 2024-02-26 19:38:36.454 69300 TIP 438646 19506 6077055 2024-02-26 19:38:36.557 2024-02-26 19:38:36.557 7700 FEE 438646 21139 6077056 2024-02-26 19:38:36.557 2024-02-26 19:38:36.557 69300 TIP 438646 7989 6077059 2024-02-26 19:38:37.888 2024-02-26 19:38:37.888 7700 FEE 438646 6616 6077060 2024-02-26 19:38:37.888 2024-02-26 19:38:37.888 69300 TIP 438646 19930 6077063 2024-02-26 19:38:42.911 2024-02-26 19:38:42.911 1000 FEE 439820 21373 6077078 2024-02-26 19:39:42.2 2024-02-26 19:39:42.2 100 FEE 439729 19292 6077079 2024-02-26 19:39:42.2 2024-02-26 19:39:42.2 900 TIP 439729 2111 6077101 2024-02-26 19:40:44.941 2024-02-26 19:40:44.941 90000 FEE 439723 5017 6077102 2024-02-26 19:40:44.941 2024-02-26 19:40:44.941 810000 TIP 439723 979 6077106 2024-02-26 19:41:05.825 2024-02-26 19:41:05.825 900 FEE 439806 18533 6077107 2024-02-26 19:41:05.825 2024-02-26 19:41:05.825 8100 TIP 439806 18842 6077117 2024-02-26 19:41:34.455 2024-02-26 19:41:34.455 100 FEE 439315 15088 6077118 2024-02-26 19:41:34.455 2024-02-26 19:41:34.455 900 TIP 439315 11821 6077138 2024-02-26 19:42:59.277 2024-02-26 19:42:59.277 2100 FEE 439678 20891 6077139 2024-02-26 19:42:59.277 2024-02-26 19:42:59.277 18900 TIP 439678 11820 6077165 2024-02-26 19:43:10.209 2024-02-26 19:43:10.209 2100 FEE 439655 21022 6077166 2024-02-26 19:43:10.209 2024-02-26 19:43:10.209 18900 TIP 439655 16684 6077203 2024-02-26 19:46:07.389 2024-02-26 19:46:07.389 4000 FEE 439827 9307 6077204 2024-02-26 19:46:07.389 2024-02-26 19:46:07.389 36000 TIP 439827 649 6077207 2024-02-26 19:46:54.895 2024-02-26 19:46:54.895 0 FEE 439831 16543 6077261 2024-02-26 19:54:45.236 2024-02-26 19:54:45.236 7700 FEE 439822 1310 6077262 2024-02-26 19:54:45.236 2024-02-26 19:54:45.236 69300 TIP 439822 1772 6077299 2024-02-26 19:56:17.327 2024-02-26 19:56:17.327 2500 FEE 439838 17321 6077300 2024-02-26 19:56:17.327 2024-02-26 19:56:17.327 22500 TIP 439838 3706 6077311 2024-02-26 19:56:21.312 2024-02-26 19:56:21.312 100 FEE 439838 20624 6077312 2024-02-26 19:56:21.312 2024-02-26 19:56:21.312 900 TIP 439838 17237 6077333 2024-02-26 19:59:17.489 2024-02-26 19:59:17.489 4000 FEE 439844 21033 6077334 2024-02-26 19:59:17.489 2024-02-26 19:59:17.489 36000 TIP 439844 16289 6077335 2024-02-26 19:59:42.269 2024-02-26 19:59:42.269 1000 FEE 439846 16724 6077338 2024-02-26 19:59:54.65 2024-02-26 19:59:54.65 6900 FEE 439822 2156 6077339 2024-02-26 19:59:54.65 2024-02-26 19:59:54.65 62100 TIP 439822 7827 6077342 2024-02-26 20:00:08.082 2024-02-26 20:00:08.082 6900 FEE 439844 3729 6077343 2024-02-26 20:00:08.082 2024-02-26 20:00:08.082 62100 TIP 439844 2774 6077354 2024-02-26 20:01:41.92 2024-02-26 20:01:41.92 3300 FEE 439844 8954 6077355 2024-02-26 20:01:41.92 2024-02-26 20:01:41.92 29700 TIP 439844 18667 6077372 2024-02-26 20:02:19.189 2024-02-26 20:02:19.189 2100 FEE 439760 2098 6077373 2024-02-26 20:02:19.189 2024-02-26 20:02:19.189 18900 TIP 439760 3656 6077399 2024-02-26 20:03:18.166 2024-02-26 20:03:18.166 1000 FEE 439854 9246 6077402 2024-02-26 20:03:47.126 2024-02-26 20:03:47.126 500 FEE 439392 21014 6077403 2024-02-26 20:03:47.126 2024-02-26 20:03:47.126 4500 TIP 439392 13365 6077406 2024-02-26 20:03:47.674 2024-02-26 20:03:47.674 500 FEE 439392 21573 6077407 2024-02-26 20:03:47.674 2024-02-26 20:03:47.674 4500 TIP 439392 1740 6077417 2024-02-26 20:04:28.582 2024-02-26 20:04:28.582 1000 FEE 439857 13798 6077429 2024-02-26 20:04:48.32 2024-02-26 20:04:48.32 3300 FEE 439844 3342 6077430 2024-02-26 20:04:48.32 2024-02-26 20:04:48.32 29700 TIP 439844 20993 6077437 2024-02-26 20:05:31.27 2024-02-26 20:05:31.27 3300 FEE 414270 651 6077438 2024-02-26 20:05:31.27 2024-02-26 20:05:31.27 29700 TIP 414270 2718 6077452 2024-02-26 20:07:23.544 2024-02-26 20:07:23.544 900 FEE 439857 6741 6077453 2024-02-26 20:07:23.544 2024-02-26 20:07:23.544 8100 TIP 439857 18640 6077461 2024-02-26 20:08:25.92 2024-02-26 20:08:25.92 2100 FEE 439761 17226 6077462 2024-02-26 20:08:25.92 2024-02-26 20:08:25.92 18900 TIP 439761 4322 6077476 2024-02-26 20:09:08.06 2024-02-26 20:09:08.06 4000 FEE 439861 4388 6077477 2024-02-26 20:09:08.06 2024-02-26 20:09:08.06 36000 TIP 439861 21589 6077513 2024-02-26 20:11:40.86 2024-02-26 20:11:40.86 2100 FEE 439854 13763 6077514 2024-02-26 20:11:40.86 2024-02-26 20:11:40.86 18900 TIP 439854 16948 6077526 2024-02-26 20:13:03.223 2024-02-26 20:13:03.223 0 FEE 439868 6136 6077533 2024-02-26 20:13:58.397 2024-02-26 20:13:58.397 900 FEE 439867 644 6077534 2024-02-26 20:13:58.397 2024-02-26 20:13:58.397 8100 TIP 439867 21103 6077549 2024-02-26 20:15:08.785 2024-02-26 20:15:08.785 2100 FEE 439861 14404 6077550 2024-02-26 20:15:08.785 2024-02-26 20:15:08.785 18900 TIP 439861 18230 6077577 2024-02-26 20:18:11.224 2024-02-26 20:18:11.224 1000 FEE 439874 1609 6077582 2024-02-26 20:18:16.236 2024-02-26 20:18:16.236 1000 FEE 439861 16876 6077583 2024-02-26 20:18:16.236 2024-02-26 20:18:16.236 9000 TIP 439861 5942 6077601 2024-02-26 20:19:51.386 2024-02-26 20:19:51.386 1000 FEE 439876 18494 6077602 2024-02-26 20:19:52.252 2024-02-26 20:19:52.252 0 FEE 439875 16839 6077603 2024-02-26 20:20:03.211 2024-02-26 20:20:03.211 10000 FEE 439870 18784 6077604 2024-02-26 20:20:03.211 2024-02-26 20:20:03.211 90000 TIP 439870 1726 6077621 2024-02-26 20:20:27.673 2024-02-26 20:20:27.673 1000 FEE 439844 910 6077622 2024-02-26 20:20:27.673 2024-02-26 20:20:27.673 9000 TIP 439844 16542 6077643 2024-02-26 20:21:22.454 2024-02-26 20:21:22.454 5000 FEE 439844 19329 6077644 2024-02-26 20:21:22.454 2024-02-26 20:21:22.454 45000 TIP 439844 16532 6077658 2024-02-26 20:22:20.091 2024-02-26 20:22:20.091 0 FEE 439877 4989 6077688 2024-02-26 20:23:09.021 2024-02-26 20:23:09.021 3300 FEE 439860 14905 6077689 2024-02-26 20:23:09.021 2024-02-26 20:23:09.021 29700 TIP 439860 11516 6076941 2024-02-26 19:30:24.387 2024-02-26 19:30:24.387 100 FEE 439784 12368 6076942 2024-02-26 19:30:24.387 2024-02-26 19:30:24.387 900 TIP 439784 688 6076945 2024-02-26 19:30:28.764 2024-02-26 19:30:28.764 100 FEE 439759 3347 6076946 2024-02-26 19:30:28.764 2024-02-26 19:30:28.764 900 TIP 439759 7425 6076947 2024-02-26 19:30:30.617 2024-02-26 19:30:30.617 4000 FEE 439801 2156 6076948 2024-02-26 19:30:30.617 2024-02-26 19:30:30.617 36000 TIP 439801 644 6076949 2024-02-26 19:30:33.005 2024-02-26 19:30:33.005 100 FEE 439759 19810 6076950 2024-02-26 19:30:33.005 2024-02-26 19:30:33.005 900 TIP 439759 8870 6076955 2024-02-26 19:30:50.623 2024-02-26 19:30:50.623 100 FEE 439645 21522 6076956 2024-02-26 19:30:50.623 2024-02-26 19:30:50.623 900 TIP 439645 19469 6076969 2024-02-26 19:32:02.273 2024-02-26 19:32:02.273 100000 FEE 439804 15094 6076972 2024-02-26 19:32:10.303 2024-02-26 19:32:10.303 1600 FEE 439295 21395 6076973 2024-02-26 19:32:10.303 2024-02-26 19:32:10.303 14400 TIP 439295 658 6076974 2024-02-26 19:32:44.967 2024-02-26 19:32:44.967 800 FEE 439792 20514 6076975 2024-02-26 19:32:44.967 2024-02-26 19:32:44.967 7200 TIP 439792 21344 6076980 2024-02-26 19:33:23.321 2024-02-26 19:33:23.321 7700 FEE 439806 18690 6076981 2024-02-26 19:33:23.321 2024-02-26 19:33:23.321 69300 TIP 439806 18209 6077004 2024-02-26 19:35:31.826 2024-02-26 19:35:31.826 7700 FEE 439791 9669 6077005 2024-02-26 19:35:31.826 2024-02-26 19:35:31.826 69300 TIP 439791 4802 6077008 2024-02-26 19:35:33.533 2024-02-26 19:35:33.533 7700 FEE 439791 20163 6077009 2024-02-26 19:35:33.533 2024-02-26 19:35:33.533 69300 TIP 439791 1272 6077010 2024-02-26 19:35:33.736 2024-02-26 19:35:33.736 7700 FEE 439791 17592 6077011 2024-02-26 19:35:33.736 2024-02-26 19:35:33.736 69300 TIP 439791 12289 6077012 2024-02-26 19:35:34.385 2024-02-26 19:35:34.385 7700 FEE 439791 2773 6077013 2024-02-26 19:35:34.385 2024-02-26 19:35:34.385 69300 TIP 439791 18809 6077035 2024-02-26 19:37:51.636 2024-02-26 19:37:51.636 4000 FEE 439803 19458 6077036 2024-02-26 19:37:51.636 2024-02-26 19:37:51.636 36000 TIP 439803 7389 6077047 2024-02-26 19:38:35.858 2024-02-26 19:38:35.858 7700 FEE 438646 13097 6077048 2024-02-26 19:38:35.858 2024-02-26 19:38:35.858 69300 TIP 438646 15367 6077067 2024-02-26 19:39:10.124 2024-02-26 19:39:10.124 100 FEE 439791 8074 6077068 2024-02-26 19:39:10.124 2024-02-26 19:39:10.124 900 TIP 439791 20973 6077123 2024-02-26 19:41:37.814 2024-02-26 19:41:37.814 100 FEE 439315 14545 6077124 2024-02-26 19:41:37.814 2024-02-26 19:41:37.814 900 TIP 439315 5455 6077179 2024-02-26 19:43:21.737 2024-02-26 19:43:21.737 2100 FEE 439699 14857 6077180 2024-02-26 19:43:21.737 2024-02-26 19:43:21.737 18900 TIP 439699 5497 6077181 2024-02-26 19:43:22.155 2024-02-26 19:43:22.155 2100 FEE 439100 21048 6077182 2024-02-26 19:43:22.155 2024-02-26 19:43:22.155 18900 TIP 439100 21063 6077200 2024-02-26 19:45:13.14 2024-02-26 19:45:13.14 1000 FEE 439829 20509 6077217 2024-02-26 19:49:44.902 2024-02-26 19:49:44.902 1000 FEE 439835 19189 6077232 2024-02-26 19:52:47.572 2024-02-26 19:52:47.572 4000 FEE 439495 1208 6077233 2024-02-26 19:52:47.572 2024-02-26 19:52:47.572 36000 TIP 439495 15577 6077270 2024-02-26 19:54:47.129 2024-02-26 19:54:47.129 15400 FEE 439822 951 6077271 2024-02-26 19:54:47.129 2024-02-26 19:54:47.129 138600 TIP 439822 18932 6077272 2024-02-26 19:54:47.149 2024-02-26 19:54:47.149 15400 FEE 439822 10102 6077273 2024-02-26 19:54:47.149 2024-02-26 19:54:47.149 138600 TIP 439822 20613 6077286 2024-02-26 19:54:48.877 2024-02-26 19:54:48.877 7700 FEE 439822 798 6077287 2024-02-26 19:54:48.877 2024-02-26 19:54:48.877 69300 TIP 439822 13249 6077307 2024-02-26 19:56:20.799 2024-02-26 19:56:20.799 100 FEE 439838 15806 6077308 2024-02-26 19:56:20.799 2024-02-26 19:56:20.799 900 TIP 439838 19966 6077361 2024-02-26 20:01:48.114 2024-02-26 20:01:48.114 7700 FEE 439844 19016 6077362 2024-02-26 20:01:48.114 2024-02-26 20:01:48.114 69300 TIP 439844 14202 6077366 2024-02-26 20:02:05.343 2024-02-26 20:02:05.343 2100 FEE 439844 13327 6077367 2024-02-26 20:02:05.343 2024-02-26 20:02:05.343 18900 TIP 439844 8242 6077393 2024-02-26 20:03:10.722 2024-02-26 20:03:10.722 100 FEE 439530 19494 6077394 2024-02-26 20:03:10.722 2024-02-26 20:03:10.722 900 TIP 439530 9348 6077397 2024-02-26 20:03:15.744 2024-02-26 20:03:15.744 800 FEE 439844 16532 6077398 2024-02-26 20:03:15.744 2024-02-26 20:03:15.744 7200 TIP 439844 20267 6077401 2024-02-26 20:03:42.878 2024-02-26 20:03:42.878 1000 FEE 439856 2326 6077413 2024-02-26 20:04:20.261 2024-02-26 20:04:20.261 2100 FEE 439823 13097 6077414 2024-02-26 20:04:20.261 2024-02-26 20:04:20.261 18900 TIP 439823 20841 6077425 2024-02-26 20:04:47.944 2024-02-26 20:04:47.944 3300 FEE 439844 1236 6077426 2024-02-26 20:04:47.944 2024-02-26 20:04:47.944 29700 TIP 439844 1515 6077457 2024-02-26 20:08:02.024 2024-02-26 20:08:02.024 1000 FEE 439863 4313 6077498 2024-02-26 20:10:21.788 2024-02-26 20:10:21.788 100 FEE 439693 21062 6077499 2024-02-26 20:10:21.788 2024-02-26 20:10:21.788 900 TIP 439693 19016 6077500 2024-02-26 20:10:21.954 2024-02-26 20:10:21.954 900 FEE 439693 19839 6077501 2024-02-26 20:10:21.954 2024-02-26 20:10:21.954 8100 TIP 439693 9969 6077521 2024-02-26 20:12:05.769 2024-02-26 20:12:05.769 1000 FEE 439868 6030 6077528 2024-02-26 20:13:43.223 2024-02-26 20:13:43.223 1000 FEE 439869 19037 6077544 2024-02-26 20:14:48.052 2024-02-26 20:14:48.052 1000 FEE 439872 13575 6077548 2024-02-26 20:15:05.597 2024-02-26 20:15:05.597 0 FEE 439871 11314 6077554 2024-02-26 20:15:50.08 2024-02-26 20:15:50.08 1000 FEE 439873 678 6077565 2024-02-26 20:17:11.993 2024-02-26 20:17:11.993 2100 FEE 439703 21349 6077566 2024-02-26 20:17:11.993 2024-02-26 20:17:11.993 18900 TIP 439703 18040 6077578 2024-02-26 20:18:13.097 2024-02-26 20:18:13.097 1000 FEE 439854 13782 6077579 2024-02-26 20:18:13.097 2024-02-26 20:18:13.097 9000 TIP 439854 994 6077584 2024-02-26 20:18:16.586 2024-02-26 20:18:16.586 1000 FEE 439861 15266 6077585 2024-02-26 20:18:16.586 2024-02-26 20:18:16.586 9000 TIP 439861 13055 6077590 2024-02-26 20:19:39.227 2024-02-26 20:19:39.227 1000 FEE 439707 19417 6077591 2024-02-26 20:19:39.227 2024-02-26 20:19:39.227 9000 TIP 439707 652 6077605 2024-02-26 20:20:03.495 2024-02-26 20:20:03.495 0 FEE 439875 963 6077611 2024-02-26 20:20:21.35 2024-02-26 20:20:21.35 1000 FEE 439855 8648 6077612 2024-02-26 20:20:21.35 2024-02-26 20:20:21.35 9000 TIP 439855 7675 6077619 2024-02-26 20:20:27.045 2024-02-26 20:20:27.045 2000 FEE 439844 15103 6077620 2024-02-26 20:20:27.045 2024-02-26 20:20:27.045 18000 TIP 439844 19777 6077637 2024-02-26 20:20:57.59 2024-02-26 20:20:57.59 4000 FEE 439874 14381 6077638 2024-02-26 20:20:57.59 2024-02-26 20:20:57.59 36000 TIP 439874 960 6077649 2024-02-26 20:21:59.017 2024-02-26 20:21:59.017 1000 FEE 439846 19044 6077650 2024-02-26 20:21:59.017 2024-02-26 20:21:59.017 9000 TIP 439846 1512 6077670 2024-02-26 20:22:37.342 2024-02-26 20:22:37.342 900 FEE 439878 20837 6077671 2024-02-26 20:22:37.342 2024-02-26 20:22:37.342 8100 TIP 439878 976 6077672 2024-02-26 20:22:38.116 2024-02-26 20:22:38.116 9000 FEE 439878 19576 6077673 2024-02-26 20:22:38.116 2024-02-26 20:22:38.116 81000 TIP 439878 20963 6077674 2024-02-26 20:22:41.094 2024-02-26 20:22:41.094 7700 FEE 439857 17275 6077675 2024-02-26 20:22:41.094 2024-02-26 20:22:41.094 69300 TIP 439857 1741 6077680 2024-02-26 20:22:48.528 2024-02-26 20:22:48.528 1000 FEE 439884 15536 6077744 2024-02-26 20:27:23.085 2024-02-26 20:27:23.085 1000 FEE 439877 8648 6077745 2024-02-26 20:27:23.085 2024-02-26 20:27:23.085 9000 TIP 439877 782 6077765 2024-02-26 20:30:59.716 2024-02-26 20:30:59.716 0 FEE 439887 20066 6077812 2024-02-26 20:34:24.789 2024-02-26 20:34:24.789 1000 FEE 439768 999 6077813 2024-02-26 20:34:24.789 2024-02-26 20:34:24.789 9000 TIP 439768 6229 6077815 2024-02-26 20:34:47.346 2024-02-26 20:34:47.346 1000 FEE 439879 1433 6077816 2024-02-26 20:34:47.346 2024-02-26 20:34:47.346 9000 TIP 439879 20036 6077835 2024-02-26 20:37:59.32 2024-02-26 20:37:59.32 1000 FEE 439907 20555 6077904 2024-02-26 20:42:43.574 2024-02-26 20:42:43.574 7700 FEE 439699 19296 6076943 2024-02-26 19:30:28.211 2024-02-26 19:30:28.211 100 FEE 439759 12768 6076944 2024-02-26 19:30:28.211 2024-02-26 19:30:28.211 900 TIP 439759 20276 6076957 2024-02-26 19:30:51.233 2024-02-26 19:30:51.233 100 FEE 439645 917 6076958 2024-02-26 19:30:51.233 2024-02-26 19:30:51.233 900 TIP 439645 1478 6076959 2024-02-26 19:31:02.181 2024-02-26 19:31:02.181 10000 FEE 439803 1802 6076967 2024-02-26 19:31:12.591 2024-02-26 19:31:12.591 100 FEE 439570 17275 6076968 2024-02-26 19:31:12.591 2024-02-26 19:31:12.591 900 TIP 439570 12346 6076971 2024-02-26 19:32:03.768 2024-02-26 19:32:03.768 1000 FEE 439805 10536 6076976 2024-02-26 19:32:47.509 2024-02-26 19:32:47.509 5000 FEE 439806 10638 6076984 2024-02-26 19:33:24.689 2024-02-26 19:33:24.689 7700 FEE 439806 21405 6076985 2024-02-26 19:33:24.689 2024-02-26 19:33:24.689 69300 TIP 439806 807 6076990 2024-02-26 19:33:29.464 2024-02-26 19:33:29.464 1000 FEE 439807 2329 6076991 2024-02-26 19:33:40.139 2024-02-26 19:33:40.139 1000 FEE 439808 4692 6076996 2024-02-26 19:35:21.288 2024-02-26 19:35:21.288 7700 FEE 439783 15463 6076997 2024-02-26 19:35:21.288 2024-02-26 19:35:21.288 69300 TIP 439783 19821 6077031 2024-02-26 19:37:34.987 2024-02-26 19:37:34.987 10000 FEE 439817 18956 6077032 2024-02-26 19:37:35.617 2024-02-26 19:37:35.617 4000 FEE 439812 695 6077033 2024-02-26 19:37:35.617 2024-02-26 19:37:35.617 36000 TIP 439812 21469 6077041 2024-02-26 19:38:32.35 2024-02-26 19:38:32.35 2100 FEE 439806 15159 6077042 2024-02-26 19:38:32.35 2024-02-26 19:38:32.35 18900 TIP 439806 749 6077057 2024-02-26 19:38:37.669 2024-02-26 19:38:37.669 15400 FEE 438646 6533 6077058 2024-02-26 19:38:37.669 2024-02-26 19:38:37.669 138600 TIP 438646 8423 6077071 2024-02-26 19:39:12.641 2024-02-26 19:39:12.641 9000 FEE 439791 19038 6077072 2024-02-26 19:39:12.641 2024-02-26 19:39:12.641 81000 TIP 439791 18274 6077075 2024-02-26 19:39:15.409 2024-02-26 19:39:15.409 900 FEE 439762 822 6077076 2024-02-26 19:39:15.409 2024-02-26 19:39:15.409 8100 TIP 439762 20179 6077099 2024-02-26 19:40:24.719 2024-02-26 19:40:24.719 9000 FEE 439723 656 6077100 2024-02-26 19:40:24.719 2024-02-26 19:40:24.719 81000 TIP 439723 19117 6077119 2024-02-26 19:41:36.461 2024-02-26 19:41:36.461 100 FEE 439315 7773 6077120 2024-02-26 19:41:36.461 2024-02-26 19:41:36.461 900 TIP 439315 17494 6077136 2024-02-26 19:42:55.446 2024-02-26 19:42:55.446 3300 FEE 439821 13406 6077137 2024-02-26 19:42:55.446 2024-02-26 19:42:55.446 29700 TIP 439821 16660 6077144 2024-02-26 19:43:03.402 2024-02-26 19:43:03.402 2100 FEE 439263 20272 6077145 2024-02-26 19:43:03.402 2024-02-26 19:43:03.402 18900 TIP 439263 8400 6077171 2024-02-26 19:43:11.809 2024-02-26 19:43:11.809 2100 FEE 439562 13759 6077172 2024-02-26 19:43:11.809 2024-02-26 19:43:11.809 18900 TIP 439562 21155 6077177 2024-02-26 19:43:21.067 2024-02-26 19:43:21.067 2100 FEE 439806 12160 6077178 2024-02-26 19:43:21.067 2024-02-26 19:43:21.067 18900 TIP 439806 21070 6077191 2024-02-26 19:44:03.281 2024-02-26 19:44:03.281 700 FEE 439551 15159 6077192 2024-02-26 19:44:03.281 2024-02-26 19:44:03.281 6300 TIP 439551 844 6077228 2024-02-26 19:52:30.77 2024-02-26 19:52:30.77 1000 FEE 439741 20108 6077229 2024-02-26 19:52:30.77 2024-02-26 19:52:30.77 9000 TIP 439741 14376 6077238 2024-02-26 19:53:43.86 2024-02-26 19:53:43.86 1000 FEE 439839 1603 6077263 2024-02-26 19:54:45.291 2024-02-26 19:54:45.291 7700 FEE 439822 5703 6077264 2024-02-26 19:54:45.291 2024-02-26 19:54:45.291 69300 TIP 439822 19449 6077274 2024-02-26 19:54:47.829 2024-02-26 19:54:47.829 7700 FEE 439822 18543 6077275 2024-02-26 19:54:47.829 2024-02-26 19:54:47.829 69300 TIP 439822 733 6077280 2024-02-26 19:54:48.131 2024-02-26 19:54:48.131 7700 FEE 439822 18932 6077281 2024-02-26 19:54:48.131 2024-02-26 19:54:48.131 69300 TIP 439822 6594 6077293 2024-02-26 19:55:12.414 2024-02-26 19:55:12.414 1000 FEE 439842 11450 6077301 2024-02-26 19:56:20.255 2024-02-26 19:56:20.255 100 FEE 439838 18705 6077302 2024-02-26 19:56:20.255 2024-02-26 19:56:20.255 900 TIP 439838 12139 6077327 2024-02-26 19:58:04.864 2024-02-26 19:58:04.864 1000 FEE 439658 6041 6077328 2024-02-26 19:58:04.864 2024-02-26 19:58:04.864 9000 TIP 439658 9331 6077340 2024-02-26 19:59:54.796 2024-02-26 19:59:54.796 1000 FEE 439847 1631 6077356 2024-02-26 20:01:42.167 2024-02-26 20:01:42.167 3300 FEE 439844 13575 6077357 2024-02-26 20:01:42.167 2024-02-26 20:01:42.167 29700 TIP 439844 1007 6077363 2024-02-26 20:01:49.193 2024-02-26 20:01:49.193 7700 FEE 439844 703 6077364 2024-02-26 20:01:49.193 2024-02-26 20:01:49.193 69300 TIP 439844 20826 6077411 2024-02-26 20:04:04.759 2024-02-26 20:04:04.759 100 FEE 439658 19038 6077412 2024-02-26 20:04:04.759 2024-02-26 20:04:04.759 900 TIP 439658 8726 6077421 2024-02-26 20:04:47.659 2024-02-26 20:04:47.659 3300 FEE 439844 20022 6077422 2024-02-26 20:04:47.659 2024-02-26 20:04:47.659 29700 TIP 439844 4062 6077439 2024-02-26 20:05:48.353 2024-02-26 20:05:48.353 1000 FEE 439859 21061 6077446 2024-02-26 20:07:21.957 2024-02-26 20:07:21.957 900 FEE 439854 21365 6077447 2024-02-26 20:07:21.957 2024-02-26 20:07:21.957 8100 TIP 439854 5500 6077448 2024-02-26 20:07:22.36 2024-02-26 20:07:22.36 9000 FEE 439854 9200 6077449 2024-02-26 20:07:22.36 2024-02-26 20:07:22.36 81000 TIP 439854 13204 6077467 2024-02-26 20:08:36.073 2024-02-26 20:08:36.073 2100 FEE 439724 19527 6077468 2024-02-26 20:08:36.073 2024-02-26 20:08:36.073 18900 TIP 439724 9796 6077473 2024-02-26 20:09:00.118 2024-02-26 20:09:00.118 2100 FEE 439848 15491 6077474 2024-02-26 20:09:00.118 2024-02-26 20:09:00.118 18900 TIP 439848 20778 6077480 2024-02-26 20:09:18.957 2024-02-26 20:09:18.957 2100 FEE 439764 636 6077481 2024-02-26 20:09:18.957 2024-02-26 20:09:18.957 18900 TIP 439764 716 6077531 2024-02-26 20:13:58.216 2024-02-26 20:13:58.216 100 FEE 439867 7659 6077532 2024-02-26 20:13:58.216 2024-02-26 20:13:58.216 900 TIP 439867 7760 6077545 2024-02-26 20:14:48.564 2024-02-26 20:14:48.564 2100 FEE 439870 14688 6077546 2024-02-26 20:14:48.564 2024-02-26 20:14:48.564 18900 TIP 439870 7913 6077560 2024-02-26 20:17:01.564 2024-02-26 20:17:01.564 2100 FEE 439699 21088 6077561 2024-02-26 20:17:01.564 2024-02-26 20:17:01.564 18900 TIP 439699 20424 6077567 2024-02-26 20:17:23.181 2024-02-26 20:17:23.181 2100 FEE 439809 703 6077568 2024-02-26 20:17:23.181 2024-02-26 20:17:23.181 18900 TIP 439809 16351 6077595 2024-02-26 20:19:40.313 2024-02-26 20:19:40.313 1000 FEE 439707 2757 6077596 2024-02-26 20:19:40.313 2024-02-26 20:19:40.313 9000 TIP 439707 1195 6077645 2024-02-26 20:21:35.334 2024-02-26 20:21:35.334 1000 FEE 439844 16124 6077646 2024-02-26 20:21:35.334 2024-02-26 20:21:35.334 9000 TIP 439844 3504 6077656 2024-02-26 20:22:19.572 2024-02-26 20:22:19.572 3300 FEE 439873 20185 6077657 2024-02-26 20:22:19.572 2024-02-26 20:22:19.572 29700 TIP 439873 21155 6077684 2024-02-26 20:23:08.636 2024-02-26 20:23:08.636 3300 FEE 439860 19471 6077685 2024-02-26 20:23:08.636 2024-02-26 20:23:08.636 29700 TIP 439860 3506 6077686 2024-02-26 20:23:08.911 2024-02-26 20:23:08.911 3300 FEE 439860 18016 6077687 2024-02-26 20:23:08.911 2024-02-26 20:23:08.911 29700 TIP 439860 19494 6077696 2024-02-26 20:23:19.889 2024-02-26 20:23:19.889 0 FEE 439871 10273 6077702 2024-02-26 20:25:00.746 2024-02-26 20:25:00.746 1000 FEE 439887 13198 6077705 2024-02-26 20:25:37.29 2024-02-26 20:25:37.29 1000 FEE 439889 18403 6076960 2024-02-26 19:31:03.336 2024-02-26 19:31:03.336 1000 STREAM 141924 12483 6076970 2024-02-26 19:32:03.335 2024-02-26 19:32:03.335 1000 STREAM 141924 9843 6076977 2024-02-26 19:33:03.378 2024-02-26 19:33:03.378 1000 STREAM 141924 814 6077202 2024-02-26 19:46:03.543 2024-02-26 19:46:03.543 1000 STREAM 141924 6229 6077218 2024-02-26 19:50:03.543 2024-02-26 19:50:03.543 1000 STREAM 141924 12049 6077243 2024-02-26 19:54:03.552 2024-02-26 19:54:03.552 1000 STREAM 141924 4177 6077292 2024-02-26 19:55:03.552 2024-02-26 19:55:03.552 1000 STREAM 141924 16357 6077321 2024-02-26 19:57:03.557 2024-02-26 19:57:03.557 1000 STREAM 141924 12821 6077324 2024-02-26 19:58:03.555 2024-02-26 19:58:03.555 1000 STREAM 141924 657 6077332 2024-02-26 19:59:03.573 2024-02-26 19:59:03.573 1000 STREAM 141924 21058 6076965 2024-02-26 19:31:05.419 2024-02-26 19:31:05.419 100 FEE 439592 19346 6076966 2024-02-26 19:31:05.419 2024-02-26 19:31:05.419 900 TIP 439592 3400 6076998 2024-02-26 19:35:30.389 2024-02-26 19:35:30.389 7700 FEE 439791 678 6076999 2024-02-26 19:35:30.389 2024-02-26 19:35:30.389 69300 TIP 439791 1047 6077017 2024-02-26 19:36:17.602 2024-02-26 19:36:17.602 10000 FEE 439207 18169 6077018 2024-02-26 19:36:17.602 2024-02-26 19:36:17.602 90000 TIP 439207 19449 6077027 2024-02-26 19:37:11.248 2024-02-26 19:37:11.248 1000 FEE 439815 4776 6077028 2024-02-26 19:37:12.172 2024-02-26 19:37:12.172 10000 FEE 439816 10056 6077034 2024-02-26 19:37:48.992 2024-02-26 19:37:48.992 1000 FEE 439818 10270 6077043 2024-02-26 19:38:35.316 2024-02-26 19:38:35.316 7700 FEE 438646 18119 6077044 2024-02-26 19:38:35.316 2024-02-26 19:38:35.316 69300 TIP 438646 10519 6077051 2024-02-26 19:38:36.324 2024-02-26 19:38:36.324 7700 FEE 438646 11515 6077052 2024-02-26 19:38:36.324 2024-02-26 19:38:36.324 69300 TIP 438646 4259 6077061 2024-02-26 19:38:37.956 2024-02-26 19:38:37.956 7700 FEE 438646 7583 6077062 2024-02-26 19:38:37.956 2024-02-26 19:38:37.956 69300 TIP 438646 4059 6077064 2024-02-26 19:38:52.555 2024-02-26 19:38:52.555 1000 FEE 439821 9611 6077095 2024-02-26 19:40:19.936 2024-02-26 19:40:19.936 100 FEE 439723 9307 6077096 2024-02-26 19:40:19.936 2024-02-26 19:40:19.936 900 TIP 439723 17091 6077127 2024-02-26 19:41:39.298 2024-02-26 19:41:39.298 100 FEE 439315 12102 6077128 2024-02-26 19:41:39.298 2024-02-26 19:41:39.298 900 TIP 439315 11430 6077226 2024-02-26 19:52:26.616 2024-02-26 19:52:26.616 1000 FEE 439529 19583 6077227 2024-02-26 19:52:26.616 2024-02-26 19:52:26.616 9000 TIP 439529 12368 6077249 2024-02-26 19:54:39.258 2024-02-26 19:54:39.258 7700 FEE 439822 20454 6077250 2024-02-26 19:54:39.258 2024-02-26 19:54:39.258 69300 TIP 439822 4250 6077251 2024-02-26 19:54:39.33 2024-02-26 19:54:39.33 7700 FEE 439822 11885 6077252 2024-02-26 19:54:39.33 2024-02-26 19:54:39.33 69300 TIP 439822 19394 6077255 2024-02-26 19:54:44.685 2024-02-26 19:54:44.685 7700 FEE 439822 2780 6077256 2024-02-26 19:54:44.685 2024-02-26 19:54:44.685 69300 TIP 439822 928 6077284 2024-02-26 19:54:48.442 2024-02-26 19:54:48.442 7700 FEE 439822 9758 6077285 2024-02-26 19:54:48.442 2024-02-26 19:54:48.442 69300 TIP 439822 21369 6077288 2024-02-26 19:54:49.12 2024-02-26 19:54:49.12 7700 FEE 439822 5112 6077289 2024-02-26 19:54:49.12 2024-02-26 19:54:49.12 69300 TIP 439822 19615 6077309 2024-02-26 19:56:20.939 2024-02-26 19:56:20.939 100 FEE 439838 15045 6077310 2024-02-26 19:56:20.939 2024-02-26 19:56:20.939 900 TIP 439838 18139 6077319 2024-02-26 19:56:27.691 2024-02-26 19:56:27.691 5000 FEE 439842 18877 6077320 2024-02-26 19:56:27.691 2024-02-26 19:56:27.691 45000 TIP 439842 11395 6077344 2024-02-26 20:00:36.873 2024-02-26 20:00:36.873 100000 FEE 439848 2361 6077347 2024-02-26 20:00:49.844 2024-02-26 20:00:49.844 3000 FEE 439809 16351 6077348 2024-02-26 20:00:49.844 2024-02-26 20:00:49.844 27000 TIP 439809 18016 6077374 2024-02-26 20:02:20.355 2024-02-26 20:02:20.355 2100 FEE 439764 14278 6077375 2024-02-26 20:02:20.355 2024-02-26 20:02:20.355 18900 TIP 439764 18448 6077382 2024-02-26 20:02:39.808 2024-02-26 20:02:39.808 3300 FEE 439844 18313 6077383 2024-02-26 20:02:39.808 2024-02-26 20:02:39.808 29700 TIP 439844 12483 6077400 2024-02-26 20:03:20.779 2024-02-26 20:03:20.779 100000 FEE 439855 20744 6077415 2024-02-26 20:04:22.321 2024-02-26 20:04:22.321 3300 FEE 439844 19929 6077416 2024-02-26 20:04:22.321 2024-02-26 20:04:22.321 29700 TIP 439844 17535 6077427 2024-02-26 20:04:48.064 2024-02-26 20:04:48.064 3300 FEE 439844 14545 6077428 2024-02-26 20:04:48.064 2024-02-26 20:04:48.064 29700 TIP 439844 1426 6077443 2024-02-26 20:07:20.382 2024-02-26 20:07:20.382 1000 FEE 439861 4128 6077465 2024-02-26 20:08:35.266 2024-02-26 20:08:35.266 2100 FEE 439779 18452 6077466 2024-02-26 20:08:35.266 2024-02-26 20:08:35.266 18900 TIP 439779 2703 6077469 2024-02-26 20:08:38.334 2024-02-26 20:08:38.334 2100 FEE 439713 21228 6077470 2024-02-26 20:08:38.334 2024-02-26 20:08:38.334 18900 TIP 439713 2543 6077484 2024-02-26 20:09:20.095 2024-02-26 20:09:20.095 1000 FEE 439864 5003 6077485 2024-02-26 20:09:20.338 2024-02-26 20:09:20.338 2100 FEE 439764 669 6077486 2024-02-26 20:09:20.338 2024-02-26 20:09:20.338 18900 TIP 439764 5904 6077491 2024-02-26 20:09:23.128 2024-02-26 20:09:23.128 1000 FEE 439865 20509 6077492 2024-02-26 20:09:40.718 2024-02-26 20:09:40.718 100 FEE 439779 7425 6077493 2024-02-26 20:09:40.718 2024-02-26 20:09:40.718 900 TIP 439779 7899 6077509 2024-02-26 20:11:33.255 2024-02-26 20:11:33.255 90000 FEE 439699 2039 6077510 2024-02-26 20:11:33.255 2024-02-26 20:11:33.255 810000 TIP 439699 15139 6077540 2024-02-26 20:14:16.66 2024-02-26 20:14:16.66 90000 FEE 439263 20555 6077541 2024-02-26 20:14:16.66 2024-02-26 20:14:16.66 810000 TIP 439263 21374 6077551 2024-02-26 20:15:39.321 2024-02-26 20:15:39.321 2600 FEE 439729 21389 6077552 2024-02-26 20:15:39.321 2024-02-26 20:15:39.321 23400 TIP 439729 1823 6077562 2024-02-26 20:17:03.477 2024-02-26 20:17:03.477 2600 FEE 439867 620 6077563 2024-02-26 20:17:03.477 2024-02-26 20:17:03.477 23400 TIP 439867 2652 6077573 2024-02-26 20:17:31.576 2024-02-26 20:17:31.576 0 FEE 439871 8729 6077574 2024-02-26 20:17:55.01 2024-02-26 20:17:55.01 2100 FEE 439862 633 6077575 2024-02-26 20:17:55.01 2024-02-26 20:17:55.01 18900 TIP 439862 16789 6077599 2024-02-26 20:19:41.888 2024-02-26 20:19:41.888 1000 FEE 439707 16354 6077600 2024-02-26 20:19:41.888 2024-02-26 20:19:41.888 9000 TIP 439707 20133 6077609 2024-02-26 20:20:19.826 2024-02-26 20:20:19.826 1000 FEE 439871 13903 6077610 2024-02-26 20:20:19.826 2024-02-26 20:20:19.826 9000 TIP 439871 1673 6077615 2024-02-26 20:20:23.548 2024-02-26 20:20:23.548 1000 FEE 439848 14376 6077616 2024-02-26 20:20:23.548 2024-02-26 20:20:23.548 9000 TIP 439848 9611 6077625 2024-02-26 20:20:28.491 2024-02-26 20:20:28.491 1000 FEE 439844 9352 6077626 2024-02-26 20:20:28.491 2024-02-26 20:20:28.491 9000 TIP 439844 13143 6077633 2024-02-26 20:20:29.532 2024-02-26 20:20:29.532 1000 FEE 439844 6327 6077634 2024-02-26 20:20:29.532 2024-02-26 20:20:29.532 9000 TIP 439844 18828 6077635 2024-02-26 20:20:33.678 2024-02-26 20:20:33.678 100000 FEE 439877 928 6077642 2024-02-26 20:21:20.169 2024-02-26 20:21:20.169 1000 FEE 439878 20409 6077651 2024-02-26 20:22:00.505 2024-02-26 20:22:00.505 1000 FEE 439881 19284 6077654 2024-02-26 20:22:19.084 2024-02-26 20:22:19.084 3300 FEE 439873 6393 6077655 2024-02-26 20:22:19.084 2024-02-26 20:22:19.084 29700 TIP 439873 18836 6077665 2024-02-26 20:22:34.736 2024-02-26 20:22:34.736 7700 FEE 439878 20479 6077666 2024-02-26 20:22:34.736 2024-02-26 20:22:34.736 69300 TIP 439878 18673 6077667 2024-02-26 20:22:35.894 2024-02-26 20:22:35.894 1000 FEE 439883 19462 6077681 2024-02-26 20:22:48.664 2024-02-26 20:22:48.664 7700 FEE 439854 15925 6077682 2024-02-26 20:22:48.664 2024-02-26 20:22:48.664 69300 TIP 439854 2620 6077713 2024-02-26 20:26:59.764 2024-02-26 20:26:59.764 1000 FEE 439891 18208 6077714 2024-02-26 20:26:59.764 2024-02-26 20:26:59.764 9000 TIP 439891 1577 6077715 2024-02-26 20:27:00.252 2024-02-26 20:27:00.252 1000 FEE 439891 18517 6077716 2024-02-26 20:27:00.252 2024-02-26 20:27:00.252 9000 TIP 439891 20479 6077725 2024-02-26 20:27:01.295 2024-02-26 20:27:01.295 1000 FEE 439891 17568 6077726 2024-02-26 20:27:01.295 2024-02-26 20:27:01.295 9000 TIP 439891 16301 6077787 2024-02-26 20:33:36.06 2024-02-26 20:33:36.06 200 FEE 439729 1471 6077788 2024-02-26 20:33:36.06 2024-02-26 20:33:36.06 1800 TIP 439729 21262 6077804 2024-02-26 20:34:16.33 2024-02-26 20:34:16.33 100 FEE 439895 16126 6076993 2024-02-26 19:34:04.51 2024-02-26 19:34:04.51 1000 STREAM 141924 19446 6077223 2024-02-26 19:52:04.627 2024-02-26 19:52:04.627 1000 STREAM 141924 15474 6076994 2024-02-26 19:35:03.675 2024-02-26 19:35:03.675 1000 STREAM 141924 21271 6077015 2024-02-26 19:36:03.678 2024-02-26 19:36:03.678 1000 STREAM 141924 20730 6077024 2024-02-26 19:37:03.683 2024-02-26 19:37:03.683 1000 STREAM 141924 9351 6077103 2024-02-26 19:41:03.731 2024-02-26 19:41:03.731 1000 STREAM 141924 16571 6077146 2024-02-26 19:43:03.75 2024-02-26 19:43:03.75 1000 STREAM 141924 8095 6077213 2024-02-26 19:48:03.778 2024-02-26 19:48:03.778 1000 STREAM 141924 2525 6076995 2024-02-26 19:35:14.253 2024-02-26 19:35:14.253 1000 FEE 439810 12561 6077000 2024-02-26 19:35:30.478 2024-02-26 19:35:30.478 7700 FEE 439791 2780 6077001 2024-02-26 19:35:30.478 2024-02-26 19:35:30.478 69300 TIP 439791 9916 6077006 2024-02-26 19:35:31.961 2024-02-26 19:35:31.961 15400 FEE 439791 20301 6077007 2024-02-26 19:35:31.961 2024-02-26 19:35:31.961 138600 TIP 439791 2326 6077014 2024-02-26 19:35:48.221 2024-02-26 19:35:48.221 1000 FEE 439811 21379 6077045 2024-02-26 19:38:35.797 2024-02-26 19:38:35.797 7700 FEE 438646 15147 6077046 2024-02-26 19:38:35.797 2024-02-26 19:38:35.797 69300 TIP 438646 2773 6077082 2024-02-26 19:39:42.86 2024-02-26 19:39:42.86 9000 FEE 439729 675 6077083 2024-02-26 19:39:42.86 2024-02-26 19:39:42.86 81000 TIP 439729 16542 6077130 2024-02-26 19:42:15.216 2024-02-26 19:42:15.216 1000 FEE 439826 18124 6077133 2024-02-26 19:42:32.794 2024-02-26 19:42:32.794 10000 FEE 439825 19992 6077134 2024-02-26 19:42:32.794 2024-02-26 19:42:32.794 90000 TIP 439825 2361 6077147 2024-02-26 19:43:04.144 2024-02-26 19:43:04.144 2100 FEE 439443 21577 6077148 2024-02-26 19:43:04.144 2024-02-26 19:43:04.144 18900 TIP 439443 730 6077175 2024-02-26 19:43:20.502 2024-02-26 19:43:20.502 2100 FEE 439295 11240 6077176 2024-02-26 19:43:20.502 2024-02-26 19:43:20.502 18900 TIP 439295 17201 6077209 2024-02-26 19:47:10.013 2024-02-26 19:47:10.013 10000 FEE 439435 17094 6077210 2024-02-26 19:47:10.013 2024-02-26 19:47:10.013 90000 TIP 439435 14385 6077212 2024-02-26 19:47:56.126 2024-02-26 19:47:56.126 1000 FEE 439834 21070 6077002 2024-02-26 19:35:31.51 2024-02-26 19:35:31.51 30000 FEE 439808 5597 6077003 2024-02-26 19:35:31.51 2024-02-26 19:35:31.51 270000 TIP 439808 2000 6077021 2024-02-26 19:36:56.314 2024-02-26 19:36:56.314 100 FEE 439806 15409 6077022 2024-02-26 19:36:56.314 2024-02-26 19:36:56.314 900 TIP 439806 21281 6077023 2024-02-26 19:36:59.135 2024-02-26 19:36:59.135 0 FEE 439810 3213 6077037 2024-02-26 19:38:00.243 2024-02-26 19:38:00.243 1000 FEE 439819 19537 6077077 2024-02-26 19:39:33.118 2024-02-26 19:39:33.118 1000 FEE 439823 21263 6077104 2024-02-26 19:41:05.651 2024-02-26 19:41:05.651 100 FEE 439806 9365 6077105 2024-02-26 19:41:05.651 2024-02-26 19:41:05.651 900 TIP 439806 5003 6077108 2024-02-26 19:41:06.322 2024-02-26 19:41:06.322 9000 FEE 439806 8713 6077109 2024-02-26 19:41:06.322 2024-02-26 19:41:06.322 81000 TIP 439806 5306 6077114 2024-02-26 19:41:25.41 2024-02-26 19:41:25.41 9000 FEE 439822 713 6077115 2024-02-26 19:41:25.41 2024-02-26 19:41:25.41 81000 TIP 439822 19785 6077125 2024-02-26 19:41:38.6 2024-02-26 19:41:38.6 100 FEE 439315 15045 6077126 2024-02-26 19:41:38.6 2024-02-26 19:41:38.6 900 TIP 439315 20619 6077019 2024-02-26 19:36:23.817 2024-02-26 19:36:23.817 1000 FEE 439813 9351 6077039 2024-02-26 19:38:25.085 2024-02-26 19:38:25.085 3300 FEE 439146 18832 6077040 2024-02-26 19:38:25.085 2024-02-26 19:38:25.085 29700 TIP 439146 4166 6077069 2024-02-26 19:39:10.406 2024-02-26 19:39:10.406 900 FEE 439791 6578 6077070 2024-02-26 19:39:10.406 2024-02-26 19:39:10.406 8100 TIP 439791 19333 6077073 2024-02-26 19:39:14.853 2024-02-26 19:39:14.853 100 FEE 439762 17415 6077074 2024-02-26 19:39:14.853 2024-02-26 19:39:14.853 900 TIP 439762 19018 6077094 2024-02-26 19:40:14.032 2024-02-26 19:40:14.032 10000 FEE 439824 21072 6077149 2024-02-26 19:43:04.472 2024-02-26 19:43:04.472 2100 FEE 439586 20073 6077150 2024-02-26 19:43:04.472 2024-02-26 19:43:04.472 18900 TIP 439586 17800 6077151 2024-02-26 19:43:04.832 2024-02-26 19:43:04.832 2100 FEE 439513 21003 6077152 2024-02-26 19:43:04.832 2024-02-26 19:43:04.832 18900 TIP 439513 21532 6077153 2024-02-26 19:43:05.439 2024-02-26 19:43:05.439 2100 FEE 439390 18865 6077154 2024-02-26 19:43:05.439 2024-02-26 19:43:05.439 18900 TIP 439390 3656 6077173 2024-02-26 19:43:14.275 2024-02-26 19:43:14.275 900 FEE 439276 20073 6077174 2024-02-26 19:43:14.275 2024-02-26 19:43:14.275 8100 TIP 439276 12736 6077205 2024-02-26 19:46:32.967 2024-02-26 19:46:32.967 1000 FEE 439831 9350 6077206 2024-02-26 19:46:49.83 2024-02-26 19:46:49.83 1000 FEE 439832 18476 6077020 2024-02-26 19:36:32.273 2024-02-26 19:36:32.273 1000 FEE 439814 2444 6077025 2024-02-26 19:37:05.067 2024-02-26 19:37:05.067 800 FEE 439807 19381 6077026 2024-02-26 19:37:05.067 2024-02-26 19:37:05.067 7200 TIP 439807 1773 6077065 2024-02-26 19:39:02.694 2024-02-26 19:39:02.694 100000 FEE 439822 802 6077088 2024-02-26 19:40:00.748 2024-02-26 19:40:00.748 10000 DONT_LIKE_THIS 439719 18675 6077090 2024-02-26 19:40:07.269 2024-02-26 19:40:07.269 100 FEE 439721 17172 6077091 2024-02-26 19:40:07.269 2024-02-26 19:40:07.269 900 TIP 439721 19732 6077038 2024-02-26 19:38:03.695 2024-02-26 19:38:03.695 1000 STREAM 141924 690 6077066 2024-02-26 19:39:03.708 2024-02-26 19:39:03.708 1000 STREAM 141924 18533 6077089 2024-02-26 19:40:03.741 2024-02-26 19:40:03.741 1000 STREAM 141924 18453 6077129 2024-02-26 19:42:03.734 2024-02-26 19:42:03.734 1000 STREAM 141924 19907 6077193 2024-02-26 19:44:03.769 2024-02-26 19:44:03.769 1000 STREAM 141924 685 6077198 2024-02-26 19:45:03.749 2024-02-26 19:45:03.749 1000 STREAM 141924 11395 6077214 2024-02-26 19:49:03.793 2024-02-26 19:49:03.793 1000 STREAM 141924 19243 6077080 2024-02-26 19:39:42.39 2024-02-26 19:39:42.39 900 FEE 439729 1090 6077081 2024-02-26 19:39:42.39 2024-02-26 19:39:42.39 8100 TIP 439729 20730 6077084 2024-02-26 19:39:43.601 2024-02-26 19:39:43.601 90000 FEE 439729 15088 6077085 2024-02-26 19:39:43.601 2024-02-26 19:39:43.601 810000 TIP 439729 10638 6077097 2024-02-26 19:40:20.722 2024-02-26 19:40:20.722 900 FEE 439723 861 6077098 2024-02-26 19:40:20.722 2024-02-26 19:40:20.722 8100 TIP 439723 11670 6077140 2024-02-26 19:43:02.361 2024-02-26 19:43:02.361 2100 FEE 439729 20523 6077141 2024-02-26 19:43:02.361 2024-02-26 19:43:02.361 18900 TIP 439729 16594 6077183 2024-02-26 19:43:22.594 2024-02-26 19:43:22.594 2100 FEE 439286 636 6077184 2024-02-26 19:43:22.594 2024-02-26 19:43:22.594 18900 TIP 439286 9695 6077199 2024-02-26 19:45:12.648 2024-02-26 19:45:12.648 10000 FEE 439828 19096 6077237 2024-02-26 19:53:18.567 2024-02-26 19:53:18.567 0 FEE 439834 19121 6077239 2024-02-26 19:53:47.401 2024-02-26 19:53:47.401 0 FEE 439834 4079 6077245 2024-02-26 19:54:38.918 2024-02-26 19:54:38.918 7700 FEE 439822 10549 6077246 2024-02-26 19:54:38.918 2024-02-26 19:54:38.918 69300 TIP 439822 8173 6077257 2024-02-26 19:54:44.97 2024-02-26 19:54:44.97 7700 FEE 439822 1490 6077258 2024-02-26 19:54:44.97 2024-02-26 19:54:44.97 69300 TIP 439822 16542 6077268 2024-02-26 19:54:45.544 2024-02-26 19:54:45.544 7700 FEE 439822 2151 6077269 2024-02-26 19:54:45.544 2024-02-26 19:54:45.544 69300 TIP 439822 992 6077303 2024-02-26 19:56:20.43 2024-02-26 19:56:20.43 100 FEE 439838 1567 6077304 2024-02-26 19:56:20.43 2024-02-26 19:56:20.43 900 TIP 439838 798 6077317 2024-02-26 19:56:26.625 2024-02-26 19:56:26.625 5000 FEE 439833 798 6077318 2024-02-26 19:56:26.625 2024-02-26 19:56:26.625 45000 TIP 439833 15408 6077325 2024-02-26 19:58:04.536 2024-02-26 19:58:04.536 1000 FEE 439658 20434 6077326 2024-02-26 19:58:04.536 2024-02-26 19:58:04.536 9000 TIP 439658 19980 6077349 2024-02-26 20:00:52.815 2024-02-26 20:00:52.815 3000 FEE 439295 9350 6077350 2024-02-26 20:00:52.815 2024-02-26 20:00:52.815 27000 TIP 439295 14857 6077370 2024-02-26 20:02:14.425 2024-02-26 20:02:14.425 2100 FEE 439773 11091 6077371 2024-02-26 20:02:14.425 2024-02-26 20:02:14.425 18900 TIP 439773 631 6077418 2024-02-26 20:04:31.108 2024-02-26 20:04:31.108 21100 FEE 439844 1175 6077419 2024-02-26 20:04:31.108 2024-02-26 20:04:31.108 189900 TIP 439844 718 6077420 2024-02-26 20:04:36.16 2024-02-26 20:04:36.16 0 FEE 439857 6149 6077433 2024-02-26 20:04:48.92 2024-02-26 20:04:48.92 3300 FEE 439844 666 6077434 2024-02-26 20:04:48.92 2024-02-26 20:04:48.92 29700 TIP 439844 21136 6077436 2024-02-26 20:05:25.931 2024-02-26 20:05:25.931 1000 FEE 439858 21589 6077456 2024-02-26 20:07:50.494 2024-02-26 20:07:50.494 1000 FEE 439862 18865 6077463 2024-02-26 20:08:33.164 2024-02-26 20:08:33.164 2100 FEE 439789 5865 6077464 2024-02-26 20:08:33.164 2024-02-26 20:08:33.164 18900 TIP 439789 20555 6077478 2024-02-26 20:09:18.459 2024-02-26 20:09:18.459 2100 FEE 439764 8289 6077479 2024-02-26 20:09:18.459 2024-02-26 20:09:18.459 18900 TIP 439764 21003 6077487 2024-02-26 20:09:22.552 2024-02-26 20:09:22.552 100 FEE 439804 20245 6077488 2024-02-26 20:09:22.552 2024-02-26 20:09:22.552 900 TIP 439804 18529 6077489 2024-02-26 20:09:22.705 2024-02-26 20:09:22.705 900 FEE 439804 17217 6077490 2024-02-26 20:09:22.705 2024-02-26 20:09:22.705 8100 TIP 439804 2431 6077511 2024-02-26 20:11:37.399 2024-02-26 20:11:37.399 90000 FEE 439638 5308 6077512 2024-02-26 20:11:37.399 2024-02-26 20:11:37.399 810000 TIP 439638 6164 6077538 2024-02-26 20:14:05.756 2024-02-26 20:14:05.756 2100 FEE 439839 21480 6077539 2024-02-26 20:14:05.756 2024-02-26 20:14:05.756 18900 TIP 439839 8459 6077586 2024-02-26 20:18:24.787 2024-02-26 20:18:24.787 1000 FEE 439844 2942 6077587 2024-02-26 20:18:24.787 2024-02-26 20:18:24.787 9000 TIP 439844 730 6077607 2024-02-26 20:20:19.473 2024-02-26 20:20:19.473 1000 FEE 439871 20680 6077608 2024-02-26 20:20:19.473 2024-02-26 20:20:19.473 9000 TIP 439871 622 6077627 2024-02-26 20:20:28.525 2024-02-26 20:20:28.525 1000 FEE 439844 1960 6077628 2024-02-26 20:20:28.525 2024-02-26 20:20:28.525 9000 TIP 439844 16347 6077631 2024-02-26 20:20:29.423 2024-02-26 20:20:29.423 1000 FEE 439844 21501 6077632 2024-02-26 20:20:29.423 2024-02-26 20:20:29.423 9000 TIP 439844 18269 6077659 2024-02-26 20:22:20.516 2024-02-26 20:22:20.516 3300 FEE 439873 13782 6077660 2024-02-26 20:22:20.516 2024-02-26 20:22:20.516 29700 TIP 439873 15560 6077698 2024-02-26 20:23:26.007 2024-02-26 20:23:26.007 1800 FEE 439861 739 6077699 2024-02-26 20:23:26.007 2024-02-26 20:23:26.007 16200 TIP 439861 5597 6077727 2024-02-26 20:27:01.753 2024-02-26 20:27:01.753 1000 FEE 439891 3979 6077728 2024-02-26 20:27:01.753 2024-02-26 20:27:01.753 9000 TIP 439891 9655 6077761 2024-02-26 20:30:19.479 2024-02-26 20:30:19.479 2700 FEE 439668 15367 6077762 2024-02-26 20:30:19.479 2024-02-26 20:30:19.479 24300 TIP 439668 17321 6077777 2024-02-26 20:32:48.645 2024-02-26 20:32:48.645 100 FEE 439887 19132 6077778 2024-02-26 20:32:48.645 2024-02-26 20:32:48.645 900 TIP 439887 4173 6077779 2024-02-26 20:32:48.693 2024-02-26 20:32:48.693 900 FEE 439887 633 6077780 2024-02-26 20:32:48.693 2024-02-26 20:32:48.693 8100 TIP 439887 11789 6077824 2024-02-26 20:35:42.409 2024-02-26 20:35:42.409 1000 FEE 439902 18262 6077828 2024-02-26 20:36:48.848 2024-02-26 20:36:48.848 1000 FEE 439903 19759 6077837 2024-02-26 20:38:32.167 2024-02-26 20:38:32.167 2100 FEE 439806 14705 6077838 2024-02-26 20:38:32.167 2024-02-26 20:38:32.167 18900 TIP 439806 15728 6077851 2024-02-26 20:39:16.531 2024-02-26 20:39:16.531 1000 FEE 439908 965 6077870 2024-02-26 20:40:25.178 2024-02-26 20:40:25.178 2100 FEE 439764 909 6077871 2024-02-26 20:40:25.178 2024-02-26 20:40:25.178 18900 TIP 439764 19652 6077876 2024-02-26 20:40:43.017 2024-02-26 20:40:43.017 1000 FEE 439912 20464 6077928 2024-02-26 20:42:45.349 2024-02-26 20:42:45.349 7700 FEE 439699 21402 6077929 2024-02-26 20:42:45.349 2024-02-26 20:42:45.349 69300 TIP 439699 7558 6077991 2024-02-26 20:43:07.887 2024-02-26 20:43:07.887 7700 FEE 439315 18830 6077992 2024-02-26 20:43:07.887 2024-02-26 20:43:07.887 69300 TIP 439315 18832 6077995 2024-02-26 20:43:08.117 2024-02-26 20:43:08.117 7700 FEE 439315 2065 6077996 2024-02-26 20:43:08.117 2024-02-26 20:43:08.117 69300 TIP 439315 4415 6078031 2024-02-26 20:43:21.326 2024-02-26 20:43:21.326 7700 FEE 439806 19512 6078032 2024-02-26 20:43:21.326 2024-02-26 20:43:21.326 69300 TIP 439806 21238 6078033 2024-02-26 20:43:21.404 2024-02-26 20:43:21.404 7700 FEE 439806 18832 6078034 2024-02-26 20:43:21.404 2024-02-26 20:43:21.404 69300 TIP 439806 1650 6078047 2024-02-26 20:43:42.557 2024-02-26 20:43:42.557 1000 FEE 439921 3409 6078057 2024-02-26 20:44:07.835 2024-02-26 20:44:07.835 0 FEE 439917 4079 6078065 2024-02-26 20:44:26.281 2024-02-26 20:44:26.281 1000 FEE 439924 17984 6078075 2024-02-26 20:45:49.477 2024-02-26 20:45:49.477 3100 FEE 439844 4304 6078076 2024-02-26 20:45:49.477 2024-02-26 20:45:49.477 27900 TIP 439844 18507 6078077 2024-02-26 20:45:49.774 2024-02-26 20:45:49.774 27900 FEE 439844 5791 6078078 2024-02-26 20:45:49.774 2024-02-26 20:45:49.774 251100 TIP 439844 18784 6078089 2024-02-26 20:47:16.687 2024-02-26 20:47:16.687 0 FEE 439905 2963 6078115 2024-02-26 20:51:27.999 2024-02-26 20:51:27.999 1000 FEE 439844 14168 6078116 2024-02-26 20:51:27.999 2024-02-26 20:51:27.999 9000 TIP 439844 681 6078136 2024-02-26 20:51:45.845 2024-02-26 20:51:45.845 2700 FEE 439917 20514 6078137 2024-02-26 20:51:45.845 2024-02-26 20:51:45.845 24300 TIP 439917 1552 6078162 2024-02-26 20:55:35.428 2024-02-26 20:55:35.428 100000 FEE 439946 1439 6078172 2024-02-26 20:57:43.795 2024-02-26 20:57:43.795 21000 FEE 439950 2774 6077086 2024-02-26 19:39:57.584 2024-02-26 19:39:57.584 15400 FEE 438701 21527 6077087 2024-02-26 19:39:57.584 2024-02-26 19:39:57.584 138600 TIP 438701 9169 6077121 2024-02-26 19:41:36.7 2024-02-26 19:41:36.7 100 FEE 439315 899 6077122 2024-02-26 19:41:36.7 2024-02-26 19:41:36.7 900 TIP 439315 16178 6077135 2024-02-26 19:42:50.654 2024-02-26 19:42:50.654 1000 FEE 439827 954 6077155 2024-02-26 19:43:06.707 2024-02-26 19:43:06.707 2100 FEE 439472 19907 6077156 2024-02-26 19:43:06.707 2024-02-26 19:43:06.707 18900 TIP 439472 15938 6077185 2024-02-26 19:43:53.379 2024-02-26 19:43:53.379 700 FEE 439551 700 6077186 2024-02-26 19:43:53.379 2024-02-26 19:43:53.379 6300 TIP 439551 21457 6077189 2024-02-26 19:44:02.283 2024-02-26 19:44:02.283 700 FEE 439416 18675 6077190 2024-02-26 19:44:02.283 2024-02-26 19:44:02.283 6300 TIP 439416 16270 6077194 2024-02-26 19:44:04.094 2024-02-26 19:44:04.094 700 FEE 439551 20778 6077195 2024-02-26 19:44:04.094 2024-02-26 19:44:04.094 6300 TIP 439551 20287 6077220 2024-02-26 19:51:13.222 2024-02-26 19:51:13.222 1000 FEE 439836 14260 6077247 2024-02-26 19:54:39.119 2024-02-26 19:54:39.119 7700 FEE 439822 13622 6077248 2024-02-26 19:54:39.119 2024-02-26 19:54:39.119 69300 TIP 439822 17714 6077253 2024-02-26 19:54:42.251 2024-02-26 19:54:42.251 10000 FEE 439392 1261 6077254 2024-02-26 19:54:42.251 2024-02-26 19:54:42.251 90000 TIP 439392 17838 6077305 2024-02-26 19:56:20.602 2024-02-26 19:56:20.602 100 FEE 439838 1198 6077306 2024-02-26 19:56:20.602 2024-02-26 19:56:20.602 900 TIP 439838 21131 6077313 2024-02-26 19:56:21.558 2024-02-26 19:56:21.558 100 FEE 439838 18705 6077314 2024-02-26 19:56:21.558 2024-02-26 19:56:21.558 900 TIP 439838 1180 6077315 2024-02-26 19:56:21.875 2024-02-26 19:56:21.875 100 FEE 439838 634 6077316 2024-02-26 19:56:21.875 2024-02-26 19:56:21.875 900 TIP 439838 18040 6077331 2024-02-26 19:58:48.195 2024-02-26 19:58:48.195 1000 FEE 439845 19911 6077391 2024-02-26 20:03:10.327 2024-02-26 20:03:10.327 100 FEE 439530 5425 6077392 2024-02-26 20:03:10.327 2024-02-26 20:03:10.327 900 TIP 439530 21216 6077395 2024-02-26 20:03:12.841 2024-02-26 20:03:12.841 100 FEE 439530 6393 6077396 2024-02-26 20:03:12.841 2024-02-26 20:03:12.841 900 TIP 439530 11698 6077408 2024-02-26 20:04:04.572 2024-02-26 20:04:04.572 100 FEE 439658 18363 6077409 2024-02-26 20:04:04.572 2024-02-26 20:04:04.572 900 TIP 439658 15063 6077431 2024-02-26 20:04:48.457 2024-02-26 20:04:48.457 3300 FEE 439844 675 6077432 2024-02-26 20:04:48.457 2024-02-26 20:04:48.457 29700 TIP 439844 7654 6077450 2024-02-26 20:07:23.34 2024-02-26 20:07:23.34 100 FEE 439857 20015 6077451 2024-02-26 20:07:23.34 2024-02-26 20:07:23.34 900 TIP 439857 16830 6077459 2024-02-26 20:08:24.933 2024-02-26 20:08:24.933 2100 FEE 439737 19581 6077460 2024-02-26 20:08:24.933 2024-02-26 20:08:24.933 18900 TIP 439737 19910 6077507 2024-02-26 20:11:31.085 2024-02-26 20:11:31.085 90000 FEE 439100 19198 6077508 2024-02-26 20:11:31.085 2024-02-26 20:11:31.085 810000 TIP 439100 18815 6077535 2024-02-26 20:13:58.849 2024-02-26 20:13:58.849 9000 FEE 439867 17570 6077536 2024-02-26 20:13:58.849 2024-02-26 20:13:58.849 81000 TIP 439867 999 6077592 2024-02-26 20:19:39.754 2024-02-26 20:19:39.754 0 FEE 439875 680 6077597 2024-02-26 20:19:40.721 2024-02-26 20:19:40.721 1000 FEE 439707 14225 6077598 2024-02-26 20:19:40.721 2024-02-26 20:19:40.721 9000 TIP 439707 7899 6077613 2024-02-26 20:20:21.611 2024-02-26 20:20:21.611 1000 FEE 439855 15161 6077614 2024-02-26 20:20:21.611 2024-02-26 20:20:21.611 9000 TIP 439855 20243 6077640 2024-02-26 20:21:16.218 2024-02-26 20:21:16.218 10000 FEE 439876 16410 6077641 2024-02-26 20:21:16.218 2024-02-26 20:21:16.218 90000 TIP 439876 671 6077647 2024-02-26 20:21:53.545 2024-02-26 20:21:53.545 1000 FEE 439879 18630 6077648 2024-02-26 20:21:54.263 2024-02-26 20:21:54.263 1000 FEE 439880 21417 6077661 2024-02-26 20:22:28.223 2024-02-26 20:22:28.223 19900 FEE 439875 694 6077662 2024-02-26 20:22:28.223 2024-02-26 20:22:28.223 179100 TIP 439875 4238 6077678 2024-02-26 20:22:47.141 2024-02-26 20:22:47.141 7700 FEE 439854 14909 6077679 2024-02-26 20:22:47.141 2024-02-26 20:22:47.141 69300 TIP 439854 19512 6077692 2024-02-26 20:23:11.569 2024-02-26 20:23:11.569 3300 FEE 439858 21379 6077693 2024-02-26 20:23:11.569 2024-02-26 20:23:11.569 29700 TIP 439858 21138 6077732 2024-02-26 20:27:21.991 2024-02-26 20:27:21.991 1000 FEE 439877 12976 6077733 2024-02-26 20:27:21.991 2024-02-26 20:27:21.991 9000 TIP 439877 10359 6077751 2024-02-26 20:29:18.77 2024-02-26 20:29:18.77 0 FEE 78763 19156 6077800 2024-02-26 20:34:10.729 2024-02-26 20:34:10.729 100 FEE 439891 1720 6077801 2024-02-26 20:34:10.729 2024-02-26 20:34:10.729 900 TIP 439891 917 6077825 2024-02-26 20:35:45.928 2024-02-26 20:35:45.928 6900 FEE 439880 20871 6077826 2024-02-26 20:35:45.928 2024-02-26 20:35:45.928 62100 TIP 439880 18994 6077839 2024-02-26 20:38:34.026 2024-02-26 20:38:34.026 2100 FEE 439806 16670 6077840 2024-02-26 20:38:34.026 2024-02-26 20:38:34.026 18900 TIP 439806 19664 6077868 2024-02-26 20:40:25.08 2024-02-26 20:40:25.08 1000 FEE 439859 20525 6077869 2024-02-26 20:40:25.08 2024-02-26 20:40:25.08 9000 TIP 439859 8796 6077879 2024-02-26 20:41:13.394 2024-02-26 20:41:13.394 1000 FEE 439914 1483 6077906 2024-02-26 20:42:43.715 2024-02-26 20:42:43.715 7700 FEE 439699 1105 6077907 2024-02-26 20:42:43.715 2024-02-26 20:42:43.715 69300 TIP 439699 15594 6077910 2024-02-26 20:42:43.925 2024-02-26 20:42:43.925 7700 FEE 439699 13759 6077911 2024-02-26 20:42:43.925 2024-02-26 20:42:43.925 69300 TIP 439699 19403 6077932 2024-02-26 20:42:45.534 2024-02-26 20:42:45.534 7700 FEE 439699 12819 6077933 2024-02-26 20:42:45.534 2024-02-26 20:42:45.534 69300 TIP 439699 5597 6077946 2024-02-26 20:42:50.917 2024-02-26 20:42:50.917 15400 FEE 439844 21491 6077947 2024-02-26 20:42:50.917 2024-02-26 20:42:50.917 138600 TIP 439844 2711 6077092 2024-02-26 19:40:07.414 2024-02-26 19:40:07.414 900 FEE 439721 18678 6077093 2024-02-26 19:40:07.414 2024-02-26 19:40:07.414 8100 TIP 439721 16839 6077116 2024-02-26 19:41:29.503 2024-02-26 19:41:29.503 1000 FEE 439825 21588 6077131 2024-02-26 19:42:32.71 2024-02-26 19:42:32.71 10000 FEE 439825 20022 6077110 2024-02-26 19:41:24.579 2024-02-26 19:41:24.579 100 FEE 439822 882 6077111 2024-02-26 19:41:24.579 2024-02-26 19:41:24.579 900 TIP 439822 1726 6077112 2024-02-26 19:41:24.74 2024-02-26 19:41:24.74 900 FEE 439822 20964 6077113 2024-02-26 19:41:24.74 2024-02-26 19:41:24.74 8100 TIP 439822 16357 6077167 2024-02-26 19:43:10.75 2024-02-26 19:43:10.75 2100 FEE 439139 17321 6077168 2024-02-26 19:43:10.75 2024-02-26 19:43:10.75 18900 TIP 439139 16301 6077169 2024-02-26 19:43:11.174 2024-02-26 19:43:11.174 2100 FEE 439764 7891 6077170 2024-02-26 19:43:11.174 2024-02-26 19:43:11.174 18900 TIP 439764 20163 6077201 2024-02-26 19:45:24.762 2024-02-26 19:45:24.762 1000 FEE 439830 19821 6077224 2024-02-26 19:52:23.214 2024-02-26 19:52:23.214 2100 FEE 439760 7772 6077225 2024-02-26 19:52:23.214 2024-02-26 19:52:23.214 18900 TIP 439760 20973 6077230 2024-02-26 19:52:38.897 2024-02-26 19:52:38.897 1000 FEE 439837 18629 6077231 2024-02-26 19:52:44.219 2024-02-26 19:52:44.219 1000 FEE 439838 715 6077234 2024-02-26 19:53:00.464 2024-02-26 19:53:00.464 4000 FEE 439593 20852 6077235 2024-02-26 19:53:00.464 2024-02-26 19:53:00.464 36000 TIP 439593 18865 6077240 2024-02-26 19:53:55.573 2024-02-26 19:53:55.573 1000 FEE 439840 11144 6077259 2024-02-26 19:54:45.205 2024-02-26 19:54:45.205 7700 FEE 439822 18625 6077260 2024-02-26 19:54:45.205 2024-02-26 19:54:45.205 69300 TIP 439822 21492 6077265 2024-02-26 19:54:45.332 2024-02-26 19:54:45.332 1000 FEE 439841 2224 6077276 2024-02-26 19:54:47.879 2024-02-26 19:54:47.879 7700 FEE 439822 7877 6077277 2024-02-26 19:54:47.879 2024-02-26 19:54:47.879 69300 TIP 439822 14818 6077282 2024-02-26 19:54:48.188 2024-02-26 19:54:48.188 7700 FEE 439822 685 6077283 2024-02-26 19:54:48.188 2024-02-26 19:54:48.188 69300 TIP 439822 20500 6077290 2024-02-26 19:55:02.161 2024-02-26 19:55:02.161 51200 FEE 439390 768 6077291 2024-02-26 19:55:02.161 2024-02-26 19:55:02.161 460800 TIP 439390 21051 6077294 2024-02-26 19:55:18.705 2024-02-26 19:55:18.705 6300 FEE 439833 4314 6077295 2024-02-26 19:55:18.705 2024-02-26 19:55:18.705 56700 TIP 439833 12245 6077296 2024-02-26 19:55:26.325 2024-02-26 19:55:26.325 100 FEE 439833 19930 6077297 2024-02-26 19:55:26.325 2024-02-26 19:55:26.325 900 TIP 439833 18072 6077336 2024-02-26 19:59:52.11 2024-02-26 19:59:52.11 10000 FEE 439844 20353 6077337 2024-02-26 19:59:52.11 2024-02-26 19:59:52.11 90000 TIP 439844 16194 6077346 2024-02-26 20:00:47.377 2024-02-26 20:00:47.377 1000 FEE 439850 10270 6077352 2024-02-26 20:01:41.718 2024-02-26 20:01:41.718 3300 FEE 439844 17172 6077353 2024-02-26 20:01:41.718 2024-02-26 20:01:41.718 29700 TIP 439844 21421 6077358 2024-02-26 20:01:45.078 2024-02-26 20:01:45.078 1000 FEE 439851 20776 6077359 2024-02-26 20:01:47.43 2024-02-26 20:01:47.43 15400 FEE 439844 670 6077360 2024-02-26 20:01:47.43 2024-02-26 20:01:47.43 138600 TIP 439844 12976 6077377 2024-02-26 20:02:36.052 2024-02-26 20:02:36.052 2100 FEE 439778 16532 6077378 2024-02-26 20:02:36.052 2024-02-26 20:02:36.052 18900 TIP 439778 13361 6077389 2024-02-26 20:03:08.191 2024-02-26 20:03:08.191 100 FEE 439530 9845 6077390 2024-02-26 20:03:08.191 2024-02-26 20:03:08.191 900 TIP 439530 16665 6077404 2024-02-26 20:03:47.516 2024-02-26 20:03:47.516 500 FEE 439392 15858 6077405 2024-02-26 20:03:47.516 2024-02-26 20:03:47.516 4500 TIP 439392 21614 6077444 2024-02-26 20:07:21.791 2024-02-26 20:07:21.791 100 FEE 439854 20964 6077445 2024-02-26 20:07:21.791 2024-02-26 20:07:21.791 900 TIP 439854 686 6077454 2024-02-26 20:07:24.528 2024-02-26 20:07:24.528 9000 FEE 439857 13143 6077455 2024-02-26 20:07:24.528 2024-02-26 20:07:24.528 81000 TIP 439857 9337 6077471 2024-02-26 20:08:46.215 2024-02-26 20:08:46.215 2100 FEE 439617 6537 6077472 2024-02-26 20:08:46.215 2024-02-26 20:08:46.215 18900 TIP 439617 14503 6077505 2024-02-26 20:11:25.448 2024-02-26 20:11:25.448 90000 FEE 439295 5520 6077506 2024-02-26 20:11:25.448 2024-02-26 20:11:25.448 810000 TIP 439295 16124 6077515 2024-02-26 20:11:43.252 2024-02-26 20:11:43.252 2100 FEE 439857 15526 6077516 2024-02-26 20:11:43.252 2024-02-26 20:11:43.252 18900 TIP 439857 16684 6077517 2024-02-26 20:11:59.074 2024-02-26 20:11:59.074 9000 FEE 439298 761 6077518 2024-02-26 20:11:59.074 2024-02-26 20:11:59.074 81000 TIP 439298 15556 6077132 2024-02-26 19:42:32.71 2024-02-26 19:42:32.71 90000 TIP 439825 16876 6077142 2024-02-26 19:43:02.755 2024-02-26 19:43:02.755 2100 FEE 439315 15833 6077143 2024-02-26 19:43:02.755 2024-02-26 19:43:02.755 18900 TIP 439315 10493 6077157 2024-02-26 19:43:07.067 2024-02-26 19:43:07.067 2100 FEE 439713 15049 6077158 2024-02-26 19:43:07.067 2024-02-26 19:43:07.067 18900 TIP 439713 617 6077159 2024-02-26 19:43:08.919 2024-02-26 19:43:08.919 2100 FEE 439658 21201 6077160 2024-02-26 19:43:08.919 2024-02-26 19:43:08.919 18900 TIP 439658 8176 6077161 2024-02-26 19:43:09.294 2024-02-26 19:43:09.294 2100 FEE 439638 20713 6077162 2024-02-26 19:43:09.294 2024-02-26 19:43:09.294 18900 TIP 439638 960 6077163 2024-02-26 19:43:09.754 2024-02-26 19:43:09.754 2100 FEE 439422 16970 6077164 2024-02-26 19:43:09.754 2024-02-26 19:43:09.754 18900 TIP 439422 5160 6077187 2024-02-26 19:44:02.15 2024-02-26 19:44:02.15 700 FEE 439416 4502 6077188 2024-02-26 19:44:02.15 2024-02-26 19:44:02.15 6300 TIP 439416 21402 6077196 2024-02-26 19:44:27.597 2024-02-26 19:44:27.597 1100 FEE 439822 1198 6077197 2024-02-26 19:44:27.597 2024-02-26 19:44:27.597 9900 TIP 439822 15159 6077211 2024-02-26 19:47:27.256 2024-02-26 19:47:27.256 1000 FEE 439833 6526 6077215 2024-02-26 19:49:39.759 2024-02-26 19:49:39.759 2100 FEE 439735 19346 6077216 2024-02-26 19:49:39.759 2024-02-26 19:49:39.759 18900 TIP 439735 20778 6077221 2024-02-26 19:51:26.046 2024-02-26 19:51:26.046 4000 FEE 439831 13169 6077222 2024-02-26 19:51:26.046 2024-02-26 19:51:26.046 36000 TIP 439831 12959 6077241 2024-02-26 19:54:02.615 2024-02-26 19:54:02.615 1000 FEE 439764 1352 6077242 2024-02-26 19:54:02.615 2024-02-26 19:54:02.615 9000 TIP 439764 21239 6077244 2024-02-26 19:54:15.337 2024-02-26 19:54:15.337 77000 DONT_LIKE_THIS 439817 18468 6077266 2024-02-26 19:54:45.426 2024-02-26 19:54:45.426 7700 FEE 439822 8376 6077267 2024-02-26 19:54:45.426 2024-02-26 19:54:45.426 69300 TIP 439822 17984 6077278 2024-02-26 19:54:48.025 2024-02-26 19:54:48.025 7700 FEE 439822 5128 6077279 2024-02-26 19:54:48.025 2024-02-26 19:54:48.025 69300 TIP 439822 6765 6077322 2024-02-26 19:57:55.984 2024-02-26 19:57:55.984 4000 FEE 439839 704 6077323 2024-02-26 19:57:55.984 2024-02-26 19:57:55.984 36000 TIP 439839 11873 6077329 2024-02-26 19:58:28.457 2024-02-26 19:58:28.457 1000 FEE 439843 16177 6077330 2024-02-26 19:58:29.361 2024-02-26 19:58:29.361 100000 FEE 439844 15273 6077345 2024-02-26 20:00:40.505 2024-02-26 20:00:40.505 10000 FEE 439849 7097 6077368 2024-02-26 20:02:08.185 2024-02-26 20:02:08.185 2100 FEE 439806 20775 6077369 2024-02-26 20:02:08.185 2024-02-26 20:02:08.185 18900 TIP 439806 17455 6077376 2024-02-26 20:02:32.831 2024-02-26 20:02:32.831 1000 FEE 439852 654 6077379 2024-02-26 20:02:39.443 2024-02-26 20:02:39.443 1000 FEE 439853 712 6077380 2024-02-26 20:02:39.578 2024-02-26 20:02:39.578 3300 FEE 439844 1454 6077381 2024-02-26 20:02:39.578 2024-02-26 20:02:39.578 29700 TIP 439844 2204 6077384 2024-02-26 20:02:40.373 2024-02-26 20:02:40.373 3300 FEE 439844 18453 6077385 2024-02-26 20:02:40.373 2024-02-26 20:02:40.373 29700 TIP 439844 21373 6077387 2024-02-26 20:03:07.409 2024-02-26 20:03:07.409 100 FEE 439530 15549 6077388 2024-02-26 20:03:07.409 2024-02-26 20:03:07.409 900 TIP 439530 16289 6077423 2024-02-26 20:04:47.676 2024-02-26 20:04:47.676 3300 FEE 439844 9355 6077424 2024-02-26 20:04:47.676 2024-02-26 20:04:47.676 29700 TIP 439844 20642 6077441 2024-02-26 20:06:41.916 2024-02-26 20:06:41.916 1000 FEE 439860 17514 6077482 2024-02-26 20:09:19.602 2024-02-26 20:09:19.602 2100 FEE 439764 19449 6077483 2024-02-26 20:09:19.602 2024-02-26 20:09:19.602 18900 TIP 439764 21562 6077494 2024-02-26 20:09:40.865 2024-02-26 20:09:40.865 900 FEE 439779 9171 6077495 2024-02-26 20:09:40.865 2024-02-26 20:09:40.865 8100 TIP 439779 5757 6077497 2024-02-26 20:10:11.354 2024-02-26 20:10:11.354 1000 FEE 439866 17415 6077503 2024-02-26 20:11:18.941 2024-02-26 20:11:18.941 9000 FEE 439295 15337 6077504 2024-02-26 20:11:18.941 2024-02-26 20:11:18.941 81000 TIP 439295 7986 6077519 2024-02-26 20:12:01.581 2024-02-26 20:12:01.581 1000 FEE 439867 14785 6077529 2024-02-26 20:13:45.136 2024-02-26 20:13:45.136 300 FEE 439852 6533 6077530 2024-02-26 20:13:45.136 2024-02-26 20:13:45.136 2700 TIP 439852 19759 6077553 2024-02-26 20:15:39.342 2024-02-26 20:15:39.342 0 FEE 439871 3360 6077557 2024-02-26 20:15:57.737 2024-02-26 20:15:57.737 100 FEE 439844 3745 6077558 2024-02-26 20:15:57.737 2024-02-26 20:15:57.737 900 TIP 439844 19906 6077571 2024-02-26 20:17:27.152 2024-02-26 20:17:27.152 2100 FEE 439565 14271 6077572 2024-02-26 20:17:27.152 2024-02-26 20:17:27.152 18900 TIP 439565 11378 6077593 2024-02-26 20:19:40.213 2024-02-26 20:19:40.213 1000 FEE 439707 925 6077594 2024-02-26 20:19:40.213 2024-02-26 20:19:40.213 9000 TIP 439707 14080 6077617 2024-02-26 20:20:23.876 2024-02-26 20:20:23.876 1000 FEE 439848 697 6077618 2024-02-26 20:20:23.876 2024-02-26 20:20:23.876 9000 TIP 439848 20599 6077629 2024-02-26 20:20:28.682 2024-02-26 20:20:28.682 1000 FEE 439844 768 6077630 2024-02-26 20:20:28.682 2024-02-26 20:20:28.682 9000 TIP 439844 19810 6077636 2024-02-26 20:20:36.282 2024-02-26 20:20:36.282 0 FEE 439875 18736 6077653 2024-02-26 20:22:12.011 2024-02-26 20:22:12.011 1000 FEE 439882 19537 6077668 2024-02-26 20:22:37.168 2024-02-26 20:22:37.168 100 FEE 439878 676 6077669 2024-02-26 20:22:37.168 2024-02-26 20:22:37.168 900 TIP 439878 17976 6077708 2024-02-26 20:26:33.855 2024-02-26 20:26:33.855 0 FEE 439887 8472 6077711 2024-02-26 20:26:59.266 2024-02-26 20:26:59.266 1000 FEE 439891 6573 6077712 2024-02-26 20:26:59.266 2024-02-26 20:26:59.266 9000 TIP 439891 21416 6077734 2024-02-26 20:27:22.174 2024-02-26 20:27:22.174 1000 FEE 439877 880 6077735 2024-02-26 20:27:22.174 2024-02-26 20:27:22.174 9000 TIP 439877 15273 6077740 2024-02-26 20:27:22.697 2024-02-26 20:27:22.697 1000 FEE 439877 1307 6077741 2024-02-26 20:27:22.697 2024-02-26 20:27:22.697 9000 TIP 439877 17570 6077746 2024-02-26 20:27:50.551 2024-02-26 20:27:50.551 100000 FEE 439844 777 6077747 2024-02-26 20:27:50.551 2024-02-26 20:27:50.551 900000 TIP 439844 9348 6077749 2024-02-26 20:28:41.057 2024-02-26 20:28:41.057 1000 FEE 439893 7903 6077755 2024-02-26 20:30:05.715 2024-02-26 20:30:05.715 10000 FEE 439893 3304 6077756 2024-02-26 20:30:05.715 2024-02-26 20:30:05.715 90000 TIP 439893 1751 6077757 2024-02-26 20:30:19.1 2024-02-26 20:30:19.1 2700 FEE 439668 13378 6077758 2024-02-26 20:30:19.1 2024-02-26 20:30:19.1 24300 TIP 439668 11829 6077768 2024-02-26 20:31:26.112 2024-02-26 20:31:26.112 21000 FEE 439895 20912 6077775 2024-02-26 20:32:36.632 2024-02-26 20:32:36.632 4000 FEE 439871 18412 6077776 2024-02-26 20:32:36.632 2024-02-26 20:32:36.632 36000 TIP 439871 2513 6077810 2024-02-26 20:34:18.804 2024-02-26 20:34:18.804 1000 FEE 439787 1605 6077811 2024-02-26 20:34:18.804 2024-02-26 20:34:18.804 9000 TIP 439787 16347 6077817 2024-02-26 20:34:49.139 2024-02-26 20:34:49.139 1000 FEE 439879 17014 6077818 2024-02-26 20:34:49.139 2024-02-26 20:34:49.139 9000 TIP 439879 12779 6077844 2024-02-26 20:38:51.627 2024-02-26 20:38:51.627 500 FEE 439806 18583 6077845 2024-02-26 20:38:51.627 2024-02-26 20:38:51.627 4500 TIP 439806 5449 6077898 2024-02-26 20:42:42.725 2024-02-26 20:42:42.725 7700 FEE 439699 708 6077899 2024-02-26 20:42:42.725 2024-02-26 20:42:42.725 69300 TIP 439699 4126 6077934 2024-02-26 20:42:45.77 2024-02-26 20:42:45.77 7700 FEE 439699 4126 6077935 2024-02-26 20:42:45.77 2024-02-26 20:42:45.77 69300 TIP 439699 3979 6077940 2024-02-26 20:42:50.423 2024-02-26 20:42:50.423 7700 FEE 439844 10007 6077941 2024-02-26 20:42:50.423 2024-02-26 20:42:50.423 69300 TIP 439844 10693 6077208 2024-02-26 19:47:03.5 2024-02-26 19:47:03.5 1000 STREAM 141924 5308 6077219 2024-02-26 19:51:03.518 2024-02-26 19:51:03.518 1000 STREAM 141924 17217 6077298 2024-02-26 19:56:03.555 2024-02-26 19:56:03.555 1000 STREAM 141924 7425 6077341 2024-02-26 20:00:03.582 2024-02-26 20:00:03.582 1000 STREAM 141924 16194 6077236 2024-02-26 19:53:04.626 2024-02-26 19:53:04.626 1000 STREAM 141924 20450 6077365 2024-02-26 20:02:04.711 2024-02-26 20:02:04.711 1000 STREAM 141924 760 6077386 2024-02-26 20:03:04.712 2024-02-26 20:03:04.712 1000 STREAM 141924 21356 6077410 2024-02-26 20:04:04.737 2024-02-26 20:04:04.737 1000 STREAM 141924 9366 6077442 2024-02-26 20:07:04.733 2024-02-26 20:07:04.733 1000 STREAM 141924 691 6077458 2024-02-26 20:08:04.733 2024-02-26 20:08:04.733 1000 STREAM 141924 4084 6077496 2024-02-26 20:10:04.755 2024-02-26 20:10:04.755 1000 STREAM 141924 20881 6077502 2024-02-26 20:11:04.754 2024-02-26 20:11:04.754 1000 STREAM 141924 6360 6077520 2024-02-26 20:12:04.752 2024-02-26 20:12:04.752 1000 STREAM 141924 18511 6077351 2024-02-26 20:01:04.704 2024-02-26 20:01:04.704 1000 STREAM 141924 19484 6077435 2024-02-26 20:05:04.725 2024-02-26 20:05:04.725 1000 STREAM 141924 20993 6077440 2024-02-26 20:06:04.727 2024-02-26 20:06:04.727 1000 STREAM 141924 20970 6077475 2024-02-26 20:09:04.74 2024-02-26 20:09:04.74 1000 STREAM 141924 9166 6077652 2024-02-26 20:22:04.868 2024-02-26 20:22:04.868 1000 STREAM 141924 1000 6077683 2024-02-26 20:23:04.869 2024-02-26 20:23:04.869 1000 STREAM 141924 20182 6077748 2024-02-26 20:28:04.948 2024-02-26 20:28:04.948 1000 STREAM 141924 19601 6077750 2024-02-26 20:29:04.963 2024-02-26 20:29:04.963 1000 STREAM 141924 17455 6077799 2024-02-26 20:34:05.058 2024-02-26 20:34:05.058 1000 STREAM 141924 658 6077822 2024-02-26 20:35:05.073 2024-02-26 20:35:05.073 1000 STREAM 141924 5293 6077827 2024-02-26 20:36:05.063 2024-02-26 20:36:05.063 1000 STREAM 141924 20180 6077832 2024-02-26 20:37:05.095 2024-02-26 20:37:05.095 1000 STREAM 141924 16212 6077857 2024-02-26 20:40:05.157 2024-02-26 20:40:05.157 1000 STREAM 141924 20849 6077978 2024-02-26 20:43:05.163 2024-02-26 20:43:05.163 1000 STREAM 141924 7979 6078056 2024-02-26 20:44:05.174 2024-02-26 20:44:05.174 1000 STREAM 141924 4388 6078068 2024-02-26 20:45:05.184 2024-02-26 20:45:05.184 1000 STREAM 141924 15624 6078080 2024-02-26 20:46:05.188 2024-02-26 20:46:05.188 1000 STREAM 141924 9184 6077522 2024-02-26 20:12:10.528 2024-02-26 20:12:10.528 2100 FEE 439848 7772 6077523 2024-02-26 20:12:10.528 2024-02-26 20:12:10.528 18900 TIP 439848 18378 6077524 2024-02-26 20:12:48.872 2024-02-26 20:12:48.872 12800 FEE 439844 21591 6077525 2024-02-26 20:12:48.872 2024-02-26 20:12:48.872 115200 TIP 439844 12768 6077542 2024-02-26 20:14:22.426 2024-02-26 20:14:22.426 10000 FEE 439870 13174 6077543 2024-02-26 20:14:35.637 2024-02-26 20:14:35.637 125000 FEE 439871 6160 6077555 2024-02-26 20:15:54.865 2024-02-26 20:15:54.865 2600 FEE 439844 6717 6077556 2024-02-26 20:15:54.865 2024-02-26 20:15:54.865 23400 TIP 439844 20073 6077569 2024-02-26 20:17:24.593 2024-02-26 20:17:24.593 2100 FEE 439561 21138 6077570 2024-02-26 20:17:24.593 2024-02-26 20:17:24.593 18900 TIP 439561 2519 6077580 2024-02-26 20:18:13.853 2024-02-26 20:18:13.853 1000 FEE 439854 1092 6077581 2024-02-26 20:18:13.853 2024-02-26 20:18:13.853 9000 TIP 439854 18543 6077588 2024-02-26 20:18:50.095 2024-02-26 20:18:50.095 1000 FEE 439875 1745 6077623 2024-02-26 20:20:27.979 2024-02-26 20:20:27.979 1000 FEE 439844 18630 6077624 2024-02-26 20:20:27.979 2024-02-26 20:20:27.979 9000 TIP 439844 16649 6077663 2024-02-26 20:22:34.028 2024-02-26 20:22:34.028 7700 FEE 439878 20102 6077664 2024-02-26 20:22:34.028 2024-02-26 20:22:34.028 69300 TIP 439878 979 6077676 2024-02-26 20:22:41.71 2024-02-26 20:22:41.71 7700 FEE 439857 18470 6077677 2024-02-26 20:22:41.71 2024-02-26 20:22:41.71 69300 TIP 439857 18932 6077690 2024-02-26 20:23:11.2 2024-02-26 20:23:11.2 3300 FEE 439858 18660 6077691 2024-02-26 20:23:11.2 2024-02-26 20:23:11.2 29700 TIP 439858 19121 6077707 2024-02-26 20:26:33.54 2024-02-26 20:26:33.54 1000 FEE 439890 6430 6077719 2024-02-26 20:27:00.653 2024-02-26 20:27:00.653 1000 FEE 439891 715 6077720 2024-02-26 20:27:00.653 2024-02-26 20:27:00.653 9000 TIP 439891 5500 6077721 2024-02-26 20:27:00.86 2024-02-26 20:27:00.86 1000 FEE 439891 11527 6077722 2024-02-26 20:27:00.86 2024-02-26 20:27:00.86 9000 TIP 439891 1723 6077723 2024-02-26 20:27:01.056 2024-02-26 20:27:01.056 1000 FEE 439891 17316 6077724 2024-02-26 20:27:01.056 2024-02-26 20:27:01.056 9000 TIP 439891 16543 6077752 2024-02-26 20:29:23.747 2024-02-26 20:29:23.747 5000 FEE 439888 19158 6077753 2024-02-26 20:29:23.747 2024-02-26 20:29:23.747 45000 TIP 439888 19537 6077766 2024-02-26 20:31:03.8 2024-02-26 20:31:03.8 1000 FEE 439894 11498 6077773 2024-02-26 20:32:26.166 2024-02-26 20:32:26.166 4000 FEE 439886 21417 6077774 2024-02-26 20:32:26.166 2024-02-26 20:32:26.166 36000 TIP 439886 20045 6077785 2024-02-26 20:33:28.349 2024-02-26 20:33:28.349 900 FEE 439828 8729 6077786 2024-02-26 20:33:28.349 2024-02-26 20:33:28.349 8100 TIP 439828 20276 6077806 2024-02-26 20:34:16.522 2024-02-26 20:34:16.522 900 FEE 439895 20099 6077807 2024-02-26 20:34:16.522 2024-02-26 20:34:16.522 8100 TIP 439895 711 6077814 2024-02-26 20:34:34.285 2024-02-26 20:34:34.285 100000 FEE 439900 634 6077823 2024-02-26 20:35:22.481 2024-02-26 20:35:22.481 0 FEE 439900 2741 6077852 2024-02-26 20:39:21.881 2024-02-26 20:39:21.881 10000 FEE 439844 13177 6077853 2024-02-26 20:39:21.881 2024-02-26 20:39:21.881 90000 TIP 439844 16270 6077855 2024-02-26 20:40:04.24 2024-02-26 20:40:04.24 2100 FEE 439799 15088 6077856 2024-02-26 20:40:04.24 2024-02-26 20:40:04.24 18900 TIP 439799 9496 6077860 2024-02-26 20:40:11.419 2024-02-26 20:40:11.419 2100 FEE 439731 12951 6077861 2024-02-26 20:40:11.419 2024-02-26 20:40:11.419 18900 TIP 439731 21263 6077866 2024-02-26 20:40:21.984 2024-02-26 20:40:21.984 1000 FEE 439910 9107 6077894 2024-02-26 20:42:41.175 2024-02-26 20:42:41.175 7700 FEE 439699 666 6077895 2024-02-26 20:42:41.175 2024-02-26 20:42:41.175 69300 TIP 439699 20117 6077902 2024-02-26 20:42:43.115 2024-02-26 20:42:43.115 7700 FEE 439699 4973 6077903 2024-02-26 20:42:43.115 2024-02-26 20:42:43.115 69300 TIP 439699 20117 6077914 2024-02-26 20:42:44.149 2024-02-26 20:42:44.149 7700 FEE 439699 2576 6077915 2024-02-26 20:42:44.149 2024-02-26 20:42:44.149 69300 TIP 439699 20045 6077924 2024-02-26 20:42:45.146 2024-02-26 20:42:45.146 7700 FEE 439699 10536 6077925 2024-02-26 20:42:45.146 2024-02-26 20:42:45.146 69300 TIP 439699 617 6077953 2024-02-26 20:42:58.433 2024-02-26 20:42:58.433 7700 FEE 439729 21458 6077954 2024-02-26 20:42:58.433 2024-02-26 20:42:58.433 69300 TIP 439729 16214 6077955 2024-02-26 20:42:58.666 2024-02-26 20:42:58.666 7700 FEE 439729 20205 6077956 2024-02-26 20:42:58.666 2024-02-26 20:42:58.666 69300 TIP 439729 4059 6077965 2024-02-26 20:42:59.85 2024-02-26 20:42:59.85 7700 FEE 439729 9611 6077966 2024-02-26 20:42:59.85 2024-02-26 20:42:59.85 69300 TIP 439729 4538 6077987 2024-02-26 20:43:07.198 2024-02-26 20:43:07.198 7700 FEE 439315 19398 6077988 2024-02-26 20:43:07.198 2024-02-26 20:43:07.198 69300 TIP 439315 21603 6078020 2024-02-26 20:43:17.159 2024-02-26 20:43:17.159 7700 FEE 439443 19910 6078021 2024-02-26 20:43:17.159 2024-02-26 20:43:17.159 69300 TIP 439443 9150 6078024 2024-02-26 20:43:17.365 2024-02-26 20:43:17.365 7700 FEE 439443 20782 6078025 2024-02-26 20:43:17.365 2024-02-26 20:43:17.365 69300 TIP 439443 18330 6078029 2024-02-26 20:43:21.225 2024-02-26 20:43:21.225 7700 FEE 439806 21159 6078030 2024-02-26 20:43:21.225 2024-02-26 20:43:21.225 69300 TIP 439806 20190 6078045 2024-02-26 20:43:25.174 2024-02-26 20:43:25.174 4000 FEE 439875 7510 6078046 2024-02-26 20:43:25.174 2024-02-26 20:43:25.174 36000 TIP 439875 13378 6078062 2024-02-26 20:44:16.198 2024-02-26 20:44:16.198 9000 FEE 439917 14037 6078063 2024-02-26 20:44:16.198 2024-02-26 20:44:16.198 81000 TIP 439917 19848 6078107 2024-02-26 20:49:25.546 2024-02-26 20:49:25.546 1000 FEE 439937 17541 6078108 2024-02-26 20:49:40.026 2024-02-26 20:49:40.026 0 FEE 439935 14939 6078119 2024-02-26 20:51:28.426 2024-02-26 20:51:28.426 1000 FEE 439844 661 6078120 2024-02-26 20:51:28.426 2024-02-26 20:51:28.426 9000 TIP 439844 8133 6078141 2024-02-26 20:51:58.762 2024-02-26 20:51:58.762 2100 FEE 439902 18862 6078142 2024-02-26 20:51:58.762 2024-02-26 20:51:58.762 18900 TIP 439902 928 6078144 2024-02-26 20:52:04.648 2024-02-26 20:52:04.648 1000 FEE 439909 1272 6078145 2024-02-26 20:52:04.648 2024-02-26 20:52:04.648 9000 TIP 439909 13143 6078160 2024-02-26 20:55:05.391 2024-02-26 20:55:05.391 2100 FEE 439844 777 6078161 2024-02-26 20:55:05.391 2024-02-26 20:55:05.391 18900 TIP 439844 1480 6078168 2024-02-26 20:56:54.106 2024-02-26 20:56:54.106 1000 FEE 439788 21063 6078169 2024-02-26 20:56:54.106 2024-02-26 20:56:54.106 9000 TIP 439788 18673 6078177 2024-02-26 20:58:22.979 2024-02-26 20:58:22.979 0 FEE 439949 17014 6078185 2024-02-26 20:59:11.985 2024-02-26 20:59:11.985 1000 FEE 439315 10586 6078186 2024-02-26 20:59:11.985 2024-02-26 20:59:11.985 9000 TIP 439315 15273 6078225 2024-02-26 20:59:33.026 2024-02-26 20:59:33.026 1000 FEE 439926 16848 6078226 2024-02-26 20:59:33.026 2024-02-26 20:59:33.026 9000 TIP 439926 10698 6077527 2024-02-26 20:13:03.668 2024-02-26 20:13:03.668 1000 STREAM 141924 15624 6077537 2024-02-26 20:14:03.672 2024-02-26 20:14:03.672 1000 STREAM 141924 18446 6077547 2024-02-26 20:15:03.687 2024-02-26 20:15:03.687 1000 STREAM 141924 999 6077559 2024-02-26 20:16:03.679 2024-02-26 20:16:03.679 1000 STREAM 141924 14074 6077564 2024-02-26 20:17:03.69 2024-02-26 20:17:03.69 1000 STREAM 141924 9150 6077576 2024-02-26 20:18:03.676 2024-02-26 20:18:03.676 1000 STREAM 141924 1823 6077589 2024-02-26 20:19:04.853 2024-02-26 20:19:04.853 1000 STREAM 141924 20187 6077606 2024-02-26 20:20:04.849 2024-02-26 20:20:04.849 1000 STREAM 141924 17927 6077639 2024-02-26 20:21:04.846 2024-02-26 20:21:04.846 1000 STREAM 141924 18675 6077700 2024-02-26 20:24:04.883 2024-02-26 20:24:04.883 1000 STREAM 141924 16447 6077703 2024-02-26 20:25:04.907 2024-02-26 20:25:04.907 1000 STREAM 141924 3377 6077706 2024-02-26 20:26:04.918 2024-02-26 20:26:04.918 1000 STREAM 141924 10611 6077731 2024-02-26 20:27:04.927 2024-02-26 20:27:04.927 1000 STREAM 141924 16505 6077754 2024-02-26 20:30:04.993 2024-02-26 20:30:04.993 1000 STREAM 141924 21389 6077767 2024-02-26 20:31:05.008 2024-02-26 20:31:05.008 1000 STREAM 141924 18154 6077770 2024-02-26 20:32:05.016 2024-02-26 20:32:05.016 1000 STREAM 141924 21387 6077781 2024-02-26 20:33:05.042 2024-02-26 20:33:05.042 1000 STREAM 141924 10359 6077836 2024-02-26 20:38:05.094 2024-02-26 20:38:05.094 1000 STREAM 141924 5694 6077850 2024-02-26 20:39:05.111 2024-02-26 20:39:05.111 1000 STREAM 141924 5852 6077694 2024-02-26 20:23:11.635 2024-02-26 20:23:11.635 3300 FEE 439858 766 6077695 2024-02-26 20:23:11.635 2024-02-26 20:23:11.635 29700 TIP 439858 9307 6077697 2024-02-26 20:23:24.62 2024-02-26 20:23:24.62 0 FEE 439875 20551 6077701 2024-02-26 20:24:35.915 2024-02-26 20:24:35.915 10000 FEE 439886 17184 6077704 2024-02-26 20:25:31.795 2024-02-26 20:25:31.795 1000 FEE 439888 21338 6077710 2024-02-26 20:26:47.344 2024-02-26 20:26:47.344 1000 FEE 439892 5449 6077717 2024-02-26 20:27:00.454 2024-02-26 20:27:00.454 1000 FEE 439891 16867 6077718 2024-02-26 20:27:00.454 2024-02-26 20:27:00.454 9000 TIP 439891 15273 6077729 2024-02-26 20:27:02.032 2024-02-26 20:27:02.032 1000 FEE 439891 7966 6077730 2024-02-26 20:27:02.032 2024-02-26 20:27:02.032 9000 TIP 439891 10608 6077736 2024-02-26 20:27:22.35 2024-02-26 20:27:22.35 1000 FEE 439877 15200 6077737 2024-02-26 20:27:22.35 2024-02-26 20:27:22.35 9000 TIP 439877 19117 6077783 2024-02-26 20:33:28.187 2024-02-26 20:33:28.187 100 FEE 439828 15147 6077784 2024-02-26 20:33:28.187 2024-02-26 20:33:28.187 900 TIP 439828 1585 6077789 2024-02-26 20:33:42.043 2024-02-26 20:33:42.043 9000 FEE 439828 1652 6077790 2024-02-26 20:33:42.043 2024-02-26 20:33:42.043 81000 TIP 439828 15617 6077791 2024-02-26 20:33:49.178 2024-02-26 20:33:49.178 1000 FEE 439729 16176 6077792 2024-02-26 20:33:49.178 2024-02-26 20:33:49.178 9000 TIP 439729 899 6077793 2024-02-26 20:33:51.946 2024-02-26 20:33:51.946 1000 FEE 439898 10311 6077794 2024-02-26 20:33:58.099 2024-02-26 20:33:58.099 1000 FEE 439899 10818 6077795 2024-02-26 20:34:04.349 2024-02-26 20:34:04.349 100 FEE 439877 4084 6077796 2024-02-26 20:34:04.349 2024-02-26 20:34:04.349 900 TIP 439877 3213 6077797 2024-02-26 20:34:04.376 2024-02-26 20:34:04.376 900 FEE 439877 20163 6077798 2024-02-26 20:34:04.376 2024-02-26 20:34:04.376 8100 TIP 439877 21037 6077808 2024-02-26 20:34:17.364 2024-02-26 20:34:17.364 1000 FEE 439856 6602 6077809 2024-02-26 20:34:17.364 2024-02-26 20:34:17.364 9000 TIP 439856 19773 6077819 2024-02-26 20:34:53.988 2024-02-26 20:34:53.988 10000 FEE 439897 20481 6077820 2024-02-26 20:34:53.988 2024-02-26 20:34:53.988 90000 TIP 439897 2703 6077833 2024-02-26 20:37:44.889 2024-02-26 20:37:44.889 1000 FEE 439905 13553 6077846 2024-02-26 20:38:51.719 2024-02-26 20:38:51.719 500 FEE 439806 20120 6077847 2024-02-26 20:38:51.719 2024-02-26 20:38:51.719 4500 TIP 439806 20340 6077854 2024-02-26 20:39:34.886 2024-02-26 20:39:34.886 1000 FEE 439909 17513 6077862 2024-02-26 20:40:12.599 2024-02-26 20:40:12.599 2100 FEE 439822 21329 6077863 2024-02-26 20:40:12.599 2024-02-26 20:40:12.599 18900 TIP 439822 20102 6077864 2024-02-26 20:40:19.238 2024-02-26 20:40:19.238 2100 FEE 439723 20906 6077865 2024-02-26 20:40:19.238 2024-02-26 20:40:19.238 18900 TIP 439723 20198 6077878 2024-02-26 20:41:07.346 2024-02-26 20:41:07.346 1000 FEE 439913 20681 6077881 2024-02-26 20:41:23.113 2024-02-26 20:41:23.113 2100 FEE 439866 19639 6077882 2024-02-26 20:41:23.113 2024-02-26 20:41:23.113 18900 TIP 439866 1236 6077885 2024-02-26 20:41:51.09 2024-02-26 20:41:51.09 4000 FEE 439914 5776 6077886 2024-02-26 20:41:51.09 2024-02-26 20:41:51.09 36000 TIP 439914 1733 6077887 2024-02-26 20:41:56.987 2024-02-26 20:41:56.987 1000 FEE 439915 8176 6077890 2024-02-26 20:42:35.913 2024-02-26 20:42:35.913 1100 FEE 439600 8498 6077891 2024-02-26 20:42:35.913 2024-02-26 20:42:35.913 9900 TIP 439600 2195 6077892 2024-02-26 20:42:37.343 2024-02-26 20:42:37.343 125000 FEE 439917 15703 6077893 2024-02-26 20:42:39.414 2024-02-26 20:42:39.414 0 FEE 439905 9107 6077936 2024-02-26 20:42:49.918 2024-02-26 20:42:49.918 7700 FEE 439844 20597 6077937 2024-02-26 20:42:49.918 2024-02-26 20:42:49.918 69300 TIP 439844 17172 6077950 2024-02-26 20:42:52.646 2024-02-26 20:42:52.646 1000 FEE 439918 15052 6077976 2024-02-26 20:43:04.492 2024-02-26 20:43:04.492 7700 FEE 439822 16839 6077977 2024-02-26 20:43:04.492 2024-02-26 20:43:04.492 69300 TIP 439822 1261 6077993 2024-02-26 20:43:07.973 2024-02-26 20:43:07.973 7700 FEE 439315 11862 6077994 2024-02-26 20:43:07.973 2024-02-26 20:43:07.973 69300 TIP 439315 18539 6078001 2024-02-26 20:43:10.331 2024-02-26 20:43:10.331 1100 FEE 439542 19034 6078002 2024-02-26 20:43:10.331 2024-02-26 20:43:10.331 9900 TIP 439542 21437 6078035 2024-02-26 20:43:21.52 2024-02-26 20:43:21.52 7700 FEE 439806 12097 6078036 2024-02-26 20:43:21.52 2024-02-26 20:43:21.52 69300 TIP 439806 5377 6078060 2024-02-26 20:44:15.776 2024-02-26 20:44:15.776 900 FEE 439917 21361 6078061 2024-02-26 20:44:15.776 2024-02-26 20:44:15.776 8100 TIP 439917 17171 6078096 2024-02-26 20:48:19.73 2024-02-26 20:48:19.73 0 FEE 439932 618 6078123 2024-02-26 20:51:31.322 2024-02-26 20:51:31.322 1000 FEE 439844 21605 6078124 2024-02-26 20:51:31.322 2024-02-26 20:51:31.322 9000 TIP 439844 12516 6078128 2024-02-26 20:51:45.137 2024-02-26 20:51:45.137 2700 FEE 439917 20302 6078129 2024-02-26 20:51:45.137 2024-02-26 20:51:45.137 24300 TIP 439917 18658 6078140 2024-02-26 20:51:49.582 2024-02-26 20:51:49.582 1000 FEE 439941 4650 6078153 2024-02-26 20:52:51.054 2024-02-26 20:52:51.054 1000 FEE 439944 20623 6078155 2024-02-26 20:53:29.508 2024-02-26 20:53:29.508 7700 FEE 439822 17984 6078156 2024-02-26 20:53:29.508 2024-02-26 20:53:29.508 69300 TIP 439822 5499 6078158 2024-02-26 20:54:59.55 2024-02-26 20:54:59.55 1000 FEE 439945 979 6078221 2024-02-26 20:59:25.741 2024-02-26 20:59:25.741 1000 FEE 439139 10409 6078222 2024-02-26 20:59:25.741 2024-02-26 20:59:25.741 9000 TIP 439139 14122 6078231 2024-02-26 20:59:36.798 2024-02-26 20:59:36.798 1000 FEE 439895 9366 6078232 2024-02-26 20:59:36.798 2024-02-26 20:59:36.798 9000 TIP 439895 9336 6078244 2024-02-26 20:59:48.399 2024-02-26 20:59:48.399 7700 FEE 439946 12346 6078245 2024-02-26 20:59:48.399 2024-02-26 20:59:48.399 69300 TIP 439946 20655 6078246 2024-02-26 20:59:50.127 2024-02-26 20:59:50.127 7700 FEE 439946 8664 6078247 2024-02-26 20:59:50.127 2024-02-26 20:59:50.127 69300 TIP 439946 5444 6078252 2024-02-26 20:59:51.236 2024-02-26 20:59:51.236 1000 FEE 438670 10981 6078253 2024-02-26 20:59:51.236 2024-02-26 20:59:51.236 9000 TIP 438670 7389 6078256 2024-02-26 20:59:53.369 2024-02-26 20:59:53.369 1000 FEE 439954 706 6078269 2024-02-26 21:00:01.292 2024-02-26 21:00:01.292 1000 FEE 439677 17592 6078270 2024-02-26 21:00:01.292 2024-02-26 21:00:01.292 9000 TIP 439677 19484 6078274 2024-02-26 21:00:04.95 2024-02-26 21:00:04.95 1000 FEE 439955 8168 6078297 2024-02-26 21:00:34.615 2024-02-26 21:00:34.615 1000 FEE 439791 19154 6078298 2024-02-26 21:00:34.615 2024-02-26 21:00:34.615 9000 TIP 439791 14910 6078326 2024-02-26 21:01:56.426 2024-02-26 21:01:56.426 1000 FEE 439956 9985 6078331 2024-02-26 21:02:33.15 2024-02-26 21:02:33.15 1000 FEE 439958 18154 6078353 2024-02-26 21:03:37.777 2024-02-26 21:03:37.777 77000 DONT_LIKE_THIS 439953 1298 6077709 2024-02-26 20:26:43.22 2024-02-26 20:26:43.22 10000 FEE 439891 1803 6077738 2024-02-26 20:27:22.527 2024-02-26 20:27:22.527 1000 FEE 439877 18809 6077739 2024-02-26 20:27:22.527 2024-02-26 20:27:22.527 9000 TIP 439877 19806 6077742 2024-02-26 20:27:22.878 2024-02-26 20:27:22.878 1000 FEE 439877 21446 6077743 2024-02-26 20:27:22.878 2024-02-26 20:27:22.878 9000 TIP 439877 20738 6077759 2024-02-26 20:30:19.286 2024-02-26 20:30:19.286 2700 FEE 439668 7185 6077760 2024-02-26 20:30:19.286 2024-02-26 20:30:19.286 24300 TIP 439668 20619 6077763 2024-02-26 20:30:20.025 2024-02-26 20:30:20.025 2700 FEE 439668 18402 6077764 2024-02-26 20:30:20.025 2024-02-26 20:30:20.025 24300 TIP 439668 4776 6077769 2024-02-26 20:31:36.245 2024-02-26 20:31:36.245 1000 FEE 439896 6688 6077771 2024-02-26 20:32:16.969 2024-02-26 20:32:16.969 4000 FEE 439891 15843 6077772 2024-02-26 20:32:16.969 2024-02-26 20:32:16.969 36000 TIP 439891 2285 6077782 2024-02-26 20:33:24.96 2024-02-26 20:33:24.96 1000 FEE 439897 19034 6077802 2024-02-26 20:34:10.908 2024-02-26 20:34:10.908 900 FEE 439891 4118 6077803 2024-02-26 20:34:10.908 2024-02-26 20:34:10.908 8100 TIP 439891 21003 6077821 2024-02-26 20:34:59.837 2024-02-26 20:34:59.837 97000 FEE 439901 19690 6077829 2024-02-26 20:36:54.454 2024-02-26 20:36:54.454 10000 FEE 439904 1221 6077841 2024-02-26 20:38:34.543 2024-02-26 20:38:34.543 0 FEE 439905 13587 6077842 2024-02-26 20:38:44.21 2024-02-26 20:38:44.21 200 FEE 439443 4166 6077843 2024-02-26 20:38:44.21 2024-02-26 20:38:44.21 1800 TIP 439443 7827 6077858 2024-02-26 20:40:10.05 2024-02-26 20:40:10.05 2100 FEE 439844 18743 6077859 2024-02-26 20:40:10.05 2024-02-26 20:40:10.05 18900 TIP 439844 18448 6077880 2024-02-26 20:41:19.583 2024-02-26 20:41:19.583 0 FEE 439913 6384 6077883 2024-02-26 20:41:26.165 2024-02-26 20:41:26.165 6900 FEE 439854 21058 6077884 2024-02-26 20:41:26.165 2024-02-26 20:41:26.165 62100 TIP 439854 4570 6077922 2024-02-26 20:42:44.96 2024-02-26 20:42:44.96 7700 FEE 439699 20310 6077923 2024-02-26 20:42:44.96 2024-02-26 20:42:44.96 69300 TIP 439699 19826 6077930 2024-02-26 20:42:45.426 2024-02-26 20:42:45.426 7700 FEE 439699 18819 6077931 2024-02-26 20:42:45.426 2024-02-26 20:42:45.426 69300 TIP 439699 664 6077938 2024-02-26 20:42:50.391 2024-02-26 20:42:50.391 7700 FEE 439844 17316 6077939 2024-02-26 20:42:50.391 2024-02-26 20:42:50.391 69300 TIP 439844 987 6077951 2024-02-26 20:42:58.073 2024-02-26 20:42:58.073 7700 FEE 439729 19857 6077952 2024-02-26 20:42:58.073 2024-02-26 20:42:58.073 69300 TIP 439729 712 6077985 2024-02-26 20:43:07.063 2024-02-26 20:43:07.063 7700 FEE 439315 1261 6077986 2024-02-26 20:43:07.063 2024-02-26 20:43:07.063 69300 TIP 439315 20573 6077989 2024-02-26 20:43:07.251 2024-02-26 20:43:07.251 7700 FEE 439315 3642 6077990 2024-02-26 20:43:07.251 2024-02-26 20:43:07.251 69300 TIP 439315 18774 6077999 2024-02-26 20:43:09.832 2024-02-26 20:43:09.832 7700 FEE 439315 4819 6078000 2024-02-26 20:43:09.832 2024-02-26 20:43:09.832 69300 TIP 439315 20616 6078009 2024-02-26 20:43:12.938 2024-02-26 20:43:12.938 7700 FEE 439263 2077 6078010 2024-02-26 20:43:12.938 2024-02-26 20:43:12.938 69300 TIP 439263 14152 6078015 2024-02-26 20:43:13.587 2024-02-26 20:43:13.587 1000 FEE 439919 1471 6078016 2024-02-26 20:43:16.839 2024-02-26 20:43:16.839 7700 FEE 439443 19689 6078017 2024-02-26 20:43:16.839 2024-02-26 20:43:16.839 69300 TIP 439443 18919 6078028 2024-02-26 20:43:20.08 2024-02-26 20:43:20.08 10000 FEE 439920 21047 6078039 2024-02-26 20:43:21.754 2024-02-26 20:43:21.754 7700 FEE 439806 9107 6078040 2024-02-26 20:43:21.754 2024-02-26 20:43:21.754 69300 TIP 439806 16667 6078043 2024-02-26 20:43:22.059 2024-02-26 20:43:22.059 7700 FEE 439806 18941 6078044 2024-02-26 20:43:22.059 2024-02-26 20:43:22.059 69300 TIP 439806 21619 6078074 2024-02-26 20:45:39.928 2024-02-26 20:45:39.928 1000 FEE 439929 11018 6078088 2024-02-26 20:47:07.08 2024-02-26 20:47:07.08 1000 FEE 439933 7891 6078090 2024-02-26 20:47:36.463 2024-02-26 20:47:36.463 0 FEE 439932 9494 6078103 2024-02-26 20:49:05.046 2024-02-26 20:49:05.046 5000 FEE 439936 630 6078111 2024-02-26 20:50:05.38 2024-02-26 20:50:05.38 0 FEE 439935 16684 6078113 2024-02-26 20:50:40.935 2024-02-26 20:50:40.935 1000 FEE 439939 2674 6078117 2024-02-26 20:51:28.195 2024-02-26 20:51:28.195 1000 FEE 439844 9476 6078118 2024-02-26 20:51:28.195 2024-02-26 20:51:28.195 9000 TIP 439844 10096 6077805 2024-02-26 20:34:16.33 2024-02-26 20:34:16.33 900 TIP 439895 7553 6077830 2024-02-26 20:37:01.934 2024-02-26 20:37:01.934 1000 FEE 439822 19154 6077831 2024-02-26 20:37:01.934 2024-02-26 20:37:01.934 9000 TIP 439822 20922 6077834 2024-02-26 20:37:54.734 2024-02-26 20:37:54.734 1000 FEE 439906 6741 6077848 2024-02-26 20:38:52.018 2024-02-26 20:38:52.018 500 FEE 439806 18994 6077849 2024-02-26 20:38:52.018 2024-02-26 20:38:52.018 4500 TIP 439806 17514 6077867 2024-02-26 20:40:24.263 2024-02-26 20:40:24.263 1000 FEE 439911 21079 6077872 2024-02-26 20:40:28.716 2024-02-26 20:40:28.716 2100 FEE 439699 16929 6077873 2024-02-26 20:40:28.716 2024-02-26 20:40:28.716 18900 TIP 439699 20272 6077874 2024-02-26 20:40:36.669 2024-02-26 20:40:36.669 2100 FEE 439721 13903 6077875 2024-02-26 20:40:36.669 2024-02-26 20:40:36.669 18900 TIP 439721 16341 6077889 2024-02-26 20:42:18.844 2024-02-26 20:42:18.844 1000 FEE 439916 19690 6077896 2024-02-26 20:42:42.552 2024-02-26 20:42:42.552 7700 FEE 439699 10668 6077897 2024-02-26 20:42:42.552 2024-02-26 20:42:42.552 69300 TIP 439699 1141 6077900 2024-02-26 20:42:43.054 2024-02-26 20:42:43.054 7700 FEE 439699 20222 6077901 2024-02-26 20:42:43.054 2024-02-26 20:42:43.054 69300 TIP 439699 21275 6077908 2024-02-26 20:42:43.828 2024-02-26 20:42:43.828 7700 FEE 439699 4763 6077909 2024-02-26 20:42:43.828 2024-02-26 20:42:43.828 69300 TIP 439699 20911 6077916 2024-02-26 20:42:44.302 2024-02-26 20:42:44.302 7700 FEE 439699 13100 6077917 2024-02-26 20:42:44.302 2024-02-26 20:42:44.302 69300 TIP 439699 4102 6077926 2024-02-26 20:42:45.187 2024-02-26 20:42:45.187 7700 FEE 439699 8380 6077927 2024-02-26 20:42:45.187 2024-02-26 20:42:45.187 69300 TIP 439699 20562 6077942 2024-02-26 20:42:50.47 2024-02-26 20:42:50.47 7700 FEE 439844 19031 6077943 2024-02-26 20:42:50.47 2024-02-26 20:42:50.47 69300 TIP 439844 647 6077944 2024-02-26 20:42:50.719 2024-02-26 20:42:50.719 7700 FEE 439844 9421 6077945 2024-02-26 20:42:50.719 2024-02-26 20:42:50.719 69300 TIP 439844 5017 6077948 2024-02-26 20:42:51.046 2024-02-26 20:42:51.046 7700 FEE 439844 16212 6077949 2024-02-26 20:42:51.046 2024-02-26 20:42:51.046 69300 TIP 439844 9349 6077968 2024-02-26 20:43:02.48 2024-02-26 20:43:02.48 7700 FEE 439822 15148 6077969 2024-02-26 20:43:02.48 2024-02-26 20:43:02.48 69300 TIP 439822 9992 6077970 2024-02-26 20:43:02.618 2024-02-26 20:43:02.618 7700 FEE 439822 10608 6077971 2024-02-26 20:43:02.618 2024-02-26 20:43:02.618 69300 TIP 439822 3417 6077972 2024-02-26 20:43:02.734 2024-02-26 20:43:02.734 7700 FEE 439822 16532 6077973 2024-02-26 20:43:02.734 2024-02-26 20:43:02.734 69300 TIP 439822 896 6078022 2024-02-26 20:43:17.27 2024-02-26 20:43:17.27 7700 FEE 439443 15213 6078023 2024-02-26 20:43:17.27 2024-02-26 20:43:17.27 69300 TIP 439443 8713 6078026 2024-02-26 20:43:17.485 2024-02-26 20:43:17.485 7700 FEE 439443 11091 6078027 2024-02-26 20:43:17.485 2024-02-26 20:43:17.485 69300 TIP 439443 18658 6078093 2024-02-26 20:47:54.694 2024-02-26 20:47:54.694 0 FEE 439932 19043 6078095 2024-02-26 20:48:19.507 2024-02-26 20:48:19.507 1000 FEE 439934 21422 6078125 2024-02-26 20:51:31.537 2024-02-26 20:51:31.537 1000 FEE 439844 20424 6078126 2024-02-26 20:51:31.537 2024-02-26 20:51:31.537 9000 TIP 439844 15526 6078179 2024-02-26 20:58:39.199 2024-02-26 20:58:39.199 0 FEE 439949 4624 6078207 2024-02-26 20:59:20.553 2024-02-26 20:59:20.553 1000 FEE 439586 11527 6078208 2024-02-26 20:59:20.553 2024-02-26 20:59:20.553 9000 TIP 439586 19096 6078217 2024-02-26 20:59:24.095 2024-02-26 20:59:24.095 1000 FEE 439286 19398 6078218 2024-02-26 20:59:24.095 2024-02-26 20:59:24.095 9000 TIP 439286 20409 6078227 2024-02-26 20:59:35.657 2024-02-26 20:59:35.657 1000 FEE 439925 660 6078228 2024-02-26 20:59:35.657 2024-02-26 20:59:35.657 9000 TIP 439925 14357 6078229 2024-02-26 20:59:35.895 2024-02-26 20:59:35.895 1000 FEE 439917 726 6078230 2024-02-26 20:59:35.895 2024-02-26 20:59:35.895 9000 TIP 439917 1038 6078235 2024-02-26 20:59:38.006 2024-02-26 20:59:38.006 10000 FEE 439895 19289 6078236 2024-02-26 20:59:38.006 2024-02-26 20:59:38.006 90000 TIP 439895 766 6078237 2024-02-26 20:59:38.572 2024-02-26 20:59:38.572 10000 FEE 439953 8505 6078240 2024-02-26 20:59:41.401 2024-02-26 20:59:41.401 1000 FEE 439844 14381 6078241 2024-02-26 20:59:41.401 2024-02-26 20:59:41.401 9000 TIP 439844 19929 6078307 2024-02-26 21:00:41.331 2024-02-26 21:00:41.331 1000 FEE 439857 21057 6078308 2024-02-26 21:00:41.331 2024-02-26 21:00:41.331 9000 TIP 439857 18832 6078309 2024-02-26 21:00:41.624 2024-02-26 21:00:41.624 1000 FEE 439878 14906 6078310 2024-02-26 21:00:41.624 2024-02-26 21:00:41.624 9000 TIP 439878 4345 6078324 2024-02-26 21:01:47.279 2024-02-26 21:01:47.279 1000 FEE 438847 5487 6078325 2024-02-26 21:01:47.279 2024-02-26 21:01:47.279 9000 TIP 438847 19151 6078345 2024-02-26 21:03:26.701 2024-02-26 21:03:26.701 1700 FEE 439927 19777 6078346 2024-02-26 21:03:26.701 2024-02-26 21:03:26.701 15300 TIP 439927 9356 6078429 2024-02-26 21:06:23.955 2024-02-26 21:06:23.955 2100 FEE 439822 10519 6078430 2024-02-26 21:06:23.955 2024-02-26 21:06:23.955 18900 TIP 439822 1585 6078443 2024-02-26 21:06:36.639 2024-02-26 21:06:36.639 2100 FEE 439658 15858 6078444 2024-02-26 21:06:36.639 2024-02-26 21:06:36.639 18900 TIP 439658 11897 6078492 2024-02-26 21:10:29.466 2024-02-26 21:10:29.466 2100 FEE 439390 954 6078493 2024-02-26 21:10:29.466 2024-02-26 21:10:29.466 18900 TIP 439390 21413 6078580 2024-02-26 21:11:54.962 2024-02-26 21:11:54.962 2100 FEE 439844 19796 6078581 2024-02-26 21:11:54.962 2024-02-26 21:11:54.962 18900 TIP 439844 4177 6078607 2024-02-26 21:12:20.814 2024-02-26 21:12:20.814 2100 FEE 439861 11430 6078608 2024-02-26 21:12:20.814 2024-02-26 21:12:20.814 18900 TIP 439861 15094 6078611 2024-02-26 21:12:21.15 2024-02-26 21:12:21.15 2100 FEE 439861 21458 6078612 2024-02-26 21:12:21.15 2024-02-26 21:12:21.15 18900 TIP 439861 11458 6078641 2024-02-26 21:12:58.126 2024-02-26 21:12:58.126 2100 FEE 439875 8269 6078642 2024-02-26 21:12:58.126 2024-02-26 21:12:58.126 18900 TIP 439875 20849 6078646 2024-02-26 21:13:18.257 2024-02-26 21:13:18.257 2100 FEE 439878 7510 6078647 2024-02-26 21:13:18.257 2024-02-26 21:13:18.257 18900 TIP 439878 4225 6078658 2024-02-26 21:13:22.786 2024-02-26 21:13:22.786 2100 FEE 439888 12245 6078659 2024-02-26 21:13:22.786 2024-02-26 21:13:22.786 18900 TIP 439888 756 6078682 2024-02-26 21:13:36.864 2024-02-26 21:13:36.864 2100 FEE 439888 19488 6078683 2024-02-26 21:13:36.864 2024-02-26 21:13:36.864 18900 TIP 439888 19843 6078688 2024-02-26 21:13:37.367 2024-02-26 21:13:37.367 2100 FEE 439888 9969 6077877 2024-02-26 20:41:05.132 2024-02-26 20:41:05.132 1000 STREAM 141924 21088 6077888 2024-02-26 20:42:05.161 2024-02-26 20:42:05.161 1000 STREAM 141924 866 6078087 2024-02-26 20:47:05.208 2024-02-26 20:47:05.208 1000 STREAM 141924 3360 6078094 2024-02-26 20:48:05.208 2024-02-26 20:48:05.208 1000 STREAM 141924 4378 6077905 2024-02-26 20:42:43.574 2024-02-26 20:42:43.574 69300 TIP 439699 1008 6077912 2024-02-26 20:42:44.098 2024-02-26 20:42:44.098 7700 FEE 439699 2639 6077913 2024-02-26 20:42:44.098 2024-02-26 20:42:44.098 69300 TIP 439699 17708 6077918 2024-02-26 20:42:44.621 2024-02-26 20:42:44.621 7700 FEE 439699 6471 6077919 2024-02-26 20:42:44.621 2024-02-26 20:42:44.621 69300 TIP 439699 11038 6077920 2024-02-26 20:42:44.824 2024-02-26 20:42:44.824 7700 FEE 439699 9333 6077921 2024-02-26 20:42:44.824 2024-02-26 20:42:44.824 69300 TIP 439699 10060 6077959 2024-02-26 20:42:58.798 2024-02-26 20:42:58.798 7700 FEE 439729 3409 6077960 2024-02-26 20:42:58.798 2024-02-26 20:42:58.798 69300 TIP 439729 20776 6077963 2024-02-26 20:42:59.69 2024-02-26 20:42:59.69 7700 FEE 439729 16988 6077964 2024-02-26 20:42:59.69 2024-02-26 20:42:59.69 69300 TIP 439729 19785 6077974 2024-02-26 20:43:02.998 2024-02-26 20:43:02.998 15400 FEE 439822 1046 6077975 2024-02-26 20:43:02.998 2024-02-26 20:43:02.998 138600 TIP 439822 18984 6078011 2024-02-26 20:43:13.058 2024-02-26 20:43:13.058 7700 FEE 439263 20751 6078012 2024-02-26 20:43:13.058 2024-02-26 20:43:13.058 69300 TIP 439263 12160 6078013 2024-02-26 20:43:13.153 2024-02-26 20:43:13.153 7700 FEE 439263 17172 6078014 2024-02-26 20:43:13.153 2024-02-26 20:43:13.153 69300 TIP 439263 20738 6078050 2024-02-26 20:43:47.85 2024-02-26 20:43:47.85 1000 FEE 439922 10393 6078051 2024-02-26 20:43:52.776 2024-02-26 20:43:52.776 25000 FEE 439899 825 6078052 2024-02-26 20:43:52.776 2024-02-26 20:43:52.776 225000 TIP 439899 725 6078058 2024-02-26 20:44:15.248 2024-02-26 20:44:15.248 100 FEE 439917 20340 6078059 2024-02-26 20:44:15.248 2024-02-26 20:44:15.248 900 TIP 439917 11996 6078066 2024-02-26 20:44:32.716 2024-02-26 20:44:32.716 0 FEE 439921 19043 6078067 2024-02-26 20:45:00.338 2024-02-26 20:45:00.338 10000 FEE 439925 12774 6078071 2024-02-26 20:45:14.712 2024-02-26 20:45:14.712 1000 FEE 439928 1733 6078082 2024-02-26 20:46:22.212 2024-02-26 20:46:22.212 1000 FEE 439895 21329 6078083 2024-02-26 20:46:22.212 2024-02-26 20:46:22.212 9000 TIP 439895 20353 6078099 2024-02-26 20:48:30.281 2024-02-26 20:48:30.281 0 FEE 439932 11621 6078112 2024-02-26 20:50:19.619 2024-02-26 20:50:19.619 0 FEE 439935 1970 6078134 2024-02-26 20:51:45.659 2024-02-26 20:51:45.659 2700 FEE 439917 16808 6078135 2024-02-26 20:51:45.659 2024-02-26 20:51:45.659 24300 TIP 439917 4059 6078146 2024-02-26 20:52:05.17 2024-02-26 20:52:05.17 4000 FEE 439935 19967 6078147 2024-02-26 20:52:05.17 2024-02-26 20:52:05.17 36000 TIP 439935 14080 6078150 2024-02-26 20:52:29.16 2024-02-26 20:52:29.16 1000 FEE 439942 20525 6078151 2024-02-26 20:52:42.176 2024-02-26 20:52:42.176 2100 FEE 439712 15938 6078152 2024-02-26 20:52:42.176 2024-02-26 20:52:42.176 18900 TIP 439712 20137 6078165 2024-02-26 20:56:08.296 2024-02-26 20:56:08.296 1000 FEE 439948 18448 6078175 2024-02-26 20:58:06.113 2024-02-26 20:58:06.113 2100 FEE 439917 3506 6078176 2024-02-26 20:58:06.113 2024-02-26 20:58:06.113 18900 TIP 439917 940 6078197 2024-02-26 20:59:15.995 2024-02-26 20:59:15.995 1000 FEE 439729 1493 6078198 2024-02-26 20:59:15.995 2024-02-26 20:59:15.995 9000 TIP 439729 18772 6078203 2024-02-26 20:59:20.228 2024-02-26 20:59:20.228 1000 FEE 439699 14045 6078204 2024-02-26 20:59:20.228 2024-02-26 20:59:20.228 9000 TIP 439699 14472 6078213 2024-02-26 20:59:22.584 2024-02-26 20:59:22.584 1000 FEE 439422 20596 6078214 2024-02-26 20:59:22.584 2024-02-26 20:59:22.584 9000 TIP 439422 20585 6078233 2024-02-26 20:59:37.743 2024-02-26 20:59:37.743 1000 FEE 439891 963 6078234 2024-02-26 20:59:37.743 2024-02-26 20:59:37.743 9000 TIP 439891 10608 6078242 2024-02-26 20:59:43.065 2024-02-26 20:59:43.065 1000 FEE 439764 7389 6078243 2024-02-26 20:59:43.065 2024-02-26 20:59:43.065 9000 TIP 439764 17798 6078248 2024-02-26 20:59:50.263 2024-02-26 20:59:50.263 1000 FEE 439472 21332 6078249 2024-02-26 20:59:50.263 2024-02-26 20:59:50.263 9000 TIP 439472 6393 6078265 2024-02-26 20:59:56.999 2024-02-26 20:59:56.999 1000 FEE 439723 19826 6078266 2024-02-26 20:59:56.999 2024-02-26 20:59:56.999 9000 TIP 439723 21391 6078279 2024-02-26 21:00:26.558 2024-02-26 21:00:26.558 30000 FEE 439854 21457 6078280 2024-02-26 21:00:26.558 2024-02-26 21:00:26.558 270000 TIP 439854 6229 6078287 2024-02-26 21:00:31.823 2024-02-26 21:00:31.823 1000 FEE 439791 18877 6078288 2024-02-26 21:00:31.823 2024-02-26 21:00:31.823 9000 TIP 439791 16194 6078289 2024-02-26 21:00:32.321 2024-02-26 21:00:32.321 1000 FEE 438789 18241 6078290 2024-02-26 21:00:32.321 2024-02-26 21:00:32.321 9000 TIP 438789 8841 6078295 2024-02-26 21:00:33.487 2024-02-26 21:00:33.487 1000 FEE 439392 9476 6078296 2024-02-26 21:00:33.487 2024-02-26 21:00:33.487 9000 TIP 439392 7583 6078299 2024-02-26 21:00:35.087 2024-02-26 21:00:35.087 1000 FEE 439701 19329 6078300 2024-02-26 21:00:35.087 2024-02-26 21:00:35.087 9000 TIP 439701 2525 6078311 2024-02-26 21:00:41.802 2024-02-26 21:00:41.802 1000 FEE 439878 695 6078312 2024-02-26 21:00:41.802 2024-02-26 21:00:41.802 9000 TIP 439878 18667 6078320 2024-02-26 21:01:44.706 2024-02-26 21:01:44.706 1000 FEE 438770 999 6078321 2024-02-26 21:01:44.706 2024-02-26 21:01:44.706 9000 TIP 438770 16706 6078328 2024-02-26 21:02:05.901 2024-02-26 21:02:05.901 100 FEE 337743 17365 6078329 2024-02-26 21:02:05.901 2024-02-26 21:02:05.901 900 TIP 337743 1741 6078338 2024-02-26 21:03:21.794 2024-02-26 21:03:21.794 1000 FEE 439961 5828 6078364 2024-02-26 21:03:53.387 2024-02-26 21:03:53.387 0 FEE 439960 17221 6078369 2024-02-26 21:03:55.029 2024-02-26 21:03:55.029 100 FEE 439699 21541 6078370 2024-02-26 21:03:55.029 2024-02-26 21:03:55.029 900 TIP 439699 11820 6078371 2024-02-26 21:03:55.45 2024-02-26 21:03:55.45 100 FEE 439699 17517 6078372 2024-02-26 21:03:55.45 2024-02-26 21:03:55.45 900 TIP 439699 19435 6078386 2024-02-26 21:04:20.828 2024-02-26 21:04:20.828 800 FEE 438789 21216 6078387 2024-02-26 21:04:20.828 2024-02-26 21:04:20.828 7200 TIP 438789 19435 6078408 2024-02-26 21:05:48.283 2024-02-26 21:05:48.283 500 FEE 392033 2329 6078409 2024-02-26 21:05:48.283 2024-02-26 21:05:48.283 4500 TIP 392033 18423 6078410 2024-02-26 21:05:49.065 2024-02-26 21:05:49.065 500 FEE 392057 11819 6078411 2024-02-26 21:05:49.065 2024-02-26 21:05:49.065 4500 TIP 392057 21239 6078412 2024-02-26 21:05:51.45 2024-02-26 21:05:51.45 500 FEE 431332 20185 6078413 2024-02-26 21:05:51.45 2024-02-26 21:05:51.45 4500 TIP 431332 18403 6078414 2024-02-26 21:06:02.716 2024-02-26 21:06:02.716 800 FEE 438685 4763 6078415 2024-02-26 21:06:02.716 2024-02-26 21:06:02.716 7200 TIP 438685 21274 6078425 2024-02-26 21:06:23.614 2024-02-26 21:06:23.614 2100 FEE 439822 750 6078426 2024-02-26 21:06:23.614 2024-02-26 21:06:23.614 18900 TIP 439822 2681 6078431 2024-02-26 21:06:24.115 2024-02-26 21:06:24.115 2100 FEE 439822 11866 6078432 2024-02-26 21:06:24.115 2024-02-26 21:06:24.115 18900 TIP 439822 18313 6078439 2024-02-26 21:06:25.493 2024-02-26 21:06:25.493 2100 FEE 439822 2196 6078440 2024-02-26 21:06:25.493 2024-02-26 21:06:25.493 18900 TIP 439822 18615 6078455 2024-02-26 21:06:56.731 2024-02-26 21:06:56.731 2100 FEE 439298 21119 6078456 2024-02-26 21:06:56.731 2024-02-26 21:06:56.731 18900 TIP 439298 20222 6078461 2024-02-26 21:06:59.894 2024-02-26 21:06:59.894 500 FEE 439723 16052 6078462 2024-02-26 21:06:59.894 2024-02-26 21:06:59.894 4500 TIP 439723 11885 6078470 2024-02-26 21:07:11.026 2024-02-26 21:07:11.026 2100 FEE 439844 3396 6078471 2024-02-26 21:07:11.026 2024-02-26 21:07:11.026 18900 TIP 439844 20969 6078472 2024-02-26 21:07:15.806 2024-02-26 21:07:15.806 42000 FEE 439729 20681 6078473 2024-02-26 21:07:15.806 2024-02-26 21:07:15.806 378000 TIP 439729 17064 6078494 2024-02-26 21:10:29.708 2024-02-26 21:10:29.708 2100 FEE 439390 12946 6078495 2024-02-26 21:10:29.708 2024-02-26 21:10:29.708 18900 TIP 439390 20258 6078505 2024-02-26 21:10:50.789 2024-02-26 21:10:50.789 2000 FEE 439877 20327 6078506 2024-02-26 21:10:50.789 2024-02-26 21:10:50.789 18000 TIP 439877 998 6078514 2024-02-26 21:11:47.708 2024-02-26 21:11:47.708 2100 FEE 439844 21494 6077957 2024-02-26 20:42:58.672 2024-02-26 20:42:58.672 7700 FEE 439729 2519 6077958 2024-02-26 20:42:58.672 2024-02-26 20:42:58.672 69300 TIP 439729 21090 6077979 2024-02-26 20:43:06.671 2024-02-26 20:43:06.671 7700 FEE 439315 7425 6077980 2024-02-26 20:43:06.671 2024-02-26 20:43:06.671 69300 TIP 439315 18314 6077981 2024-02-26 20:43:06.776 2024-02-26 20:43:06.776 7700 FEE 439315 20023 6077982 2024-02-26 20:43:06.776 2024-02-26 20:43:06.776 69300 TIP 439315 9246 6078003 2024-02-26 20:43:12.417 2024-02-26 20:43:12.417 7700 FEE 439263 17050 6078004 2024-02-26 20:43:12.417 2024-02-26 20:43:12.417 69300 TIP 439263 669 6078018 2024-02-26 20:43:17.133 2024-02-26 20:43:17.133 7700 FEE 439443 20680 6078019 2024-02-26 20:43:17.133 2024-02-26 20:43:17.133 69300 TIP 439443 18219 6078055 2024-02-26 20:44:04.422 2024-02-26 20:44:04.422 1000 FEE 439923 7675 6078069 2024-02-26 20:45:11.944 2024-02-26 20:45:11.944 100000 FEE 439926 928 6078070 2024-02-26 20:45:13.778 2024-02-26 20:45:13.778 97000 FEE 439927 11073 6078072 2024-02-26 20:45:38.641 2024-02-26 20:45:38.641 2100 FEE 439806 11450 6078073 2024-02-26 20:45:38.641 2024-02-26 20:45:38.641 18900 TIP 439806 18945 6078081 2024-02-26 20:46:13.05 2024-02-26 20:46:13.05 1000 FEE 439931 21498 6078084 2024-02-26 20:46:22.4 2024-02-26 20:46:22.4 1000 FEE 439895 861 6078085 2024-02-26 20:46:22.4 2024-02-26 20:46:22.4 9000 TIP 439895 4654 6078086 2024-02-26 20:46:58.931 2024-02-26 20:46:58.931 1000 FEE 439932 1064 6078091 2024-02-26 20:47:42.902 2024-02-26 20:47:42.902 4000 FEE 439925 15326 6078092 2024-02-26 20:47:42.902 2024-02-26 20:47:42.902 36000 TIP 439925 16296 6078100 2024-02-26 20:48:56.852 2024-02-26 20:48:56.852 12100 FEE 439934 18704 6078101 2024-02-26 20:48:56.852 2024-02-26 20:48:56.852 108900 TIP 439934 2016 6078127 2024-02-26 20:51:38.328 2024-02-26 20:51:38.328 1000 FEE 439940 16950 6078163 2024-02-26 20:55:40.667 2024-02-26 20:55:40.667 10000 FEE 439947 5661 6078166 2024-02-26 20:56:09.22 2024-02-26 20:56:09.22 2100 FEE 439711 20606 6078167 2024-02-26 20:56:09.22 2024-02-26 20:56:09.22 18900 TIP 439711 19038 6078180 2024-02-26 20:59:02.379 2024-02-26 20:59:02.379 1000 FEE 439844 15367 6078181 2024-02-26 20:59:02.379 2024-02-26 20:59:02.379 9000 TIP 439844 20376 6078191 2024-02-26 20:59:13.925 2024-02-26 20:59:13.925 1000 FEE 439263 13763 6078192 2024-02-26 20:59:13.925 2024-02-26 20:59:13.925 9000 TIP 439263 8376 6078193 2024-02-26 20:59:14.314 2024-02-26 20:59:14.314 1000 FEE 439443 5829 6078194 2024-02-26 20:59:14.314 2024-02-26 20:59:14.314 9000 TIP 439443 9517 6078199 2024-02-26 20:59:17.408 2024-02-26 20:59:17.408 1000 FEE 439295 18351 6078200 2024-02-26 20:59:17.408 2024-02-26 20:59:17.408 9000 TIP 439295 1983 6078250 2024-02-26 20:59:50.756 2024-02-26 20:59:50.756 1000 FEE 438691 2832 6078251 2024-02-26 20:59:50.756 2024-02-26 20:59:50.756 9000 TIP 438691 663 6077961 2024-02-26 20:42:59.565 2024-02-26 20:42:59.565 7700 FEE 439729 4238 6077962 2024-02-26 20:42:59.565 2024-02-26 20:42:59.565 69300 TIP 439729 15386 6077967 2024-02-26 20:43:01.322 2024-02-26 20:43:01.322 0 FEE 439917 2963 6077983 2024-02-26 20:43:06.885 2024-02-26 20:43:06.885 7700 FEE 439315 6777 6077984 2024-02-26 20:43:06.885 2024-02-26 20:43:06.885 69300 TIP 439315 2039 6077997 2024-02-26 20:43:09.437 2024-02-26 20:43:09.437 7700 FEE 439315 12265 6077998 2024-02-26 20:43:09.437 2024-02-26 20:43:09.437 69300 TIP 439315 17106 6078005 2024-02-26 20:43:12.612 2024-02-26 20:43:12.612 7700 FEE 439263 1429 6078006 2024-02-26 20:43:12.612 2024-02-26 20:43:12.612 69300 TIP 439263 8059 6078007 2024-02-26 20:43:12.715 2024-02-26 20:43:12.715 7700 FEE 439263 14202 6078008 2024-02-26 20:43:12.715 2024-02-26 20:43:12.715 69300 TIP 439263 2789 6078037 2024-02-26 20:43:21.631 2024-02-26 20:43:21.631 7700 FEE 439806 2039 6078038 2024-02-26 20:43:21.631 2024-02-26 20:43:21.631 69300 TIP 439806 19735 6078041 2024-02-26 20:43:21.85 2024-02-26 20:43:21.85 7700 FEE 439806 15075 6078042 2024-02-26 20:43:21.85 2024-02-26 20:43:21.85 69300 TIP 439806 811 6078048 2024-02-26 20:43:44.397 2024-02-26 20:43:44.397 7700 FEE 439917 5590 6078049 2024-02-26 20:43:44.397 2024-02-26 20:43:44.397 69300 TIP 439917 17221 6078053 2024-02-26 20:44:00.481 2024-02-26 20:44:00.481 4000 FEE 439917 18068 6078054 2024-02-26 20:44:00.481 2024-02-26 20:44:00.481 36000 TIP 439917 20110 6078064 2024-02-26 20:44:20.259 2024-02-26 20:44:20.259 0 FEE 439905 15161 6078079 2024-02-26 20:45:49.933 2024-02-26 20:45:49.933 1000 FEE 439930 18511 6078097 2024-02-26 20:48:22.183 2024-02-26 20:48:22.183 4000 FEE 439930 4304 6078098 2024-02-26 20:48:22.183 2024-02-26 20:48:22.183 36000 TIP 439930 9330 6078102 2024-02-26 20:49:00.13 2024-02-26 20:49:00.13 1000 FEE 439935 19235 6078105 2024-02-26 20:49:09.238 2024-02-26 20:49:09.238 2100 FEE 439917 20782 6078106 2024-02-26 20:49:09.238 2024-02-26 20:49:09.238 18900 TIP 439917 11430 6078109 2024-02-26 20:49:47.021 2024-02-26 20:49:47.021 1000 FEE 439938 7418 6078138 2024-02-26 20:51:46.016 2024-02-26 20:51:46.016 2700 FEE 439917 16250 6078139 2024-02-26 20:51:46.016 2024-02-26 20:51:46.016 24300 TIP 439917 21214 6078171 2024-02-26 20:57:39.689 2024-02-26 20:57:39.689 1000 FEE 439949 18368 6078182 2024-02-26 20:59:02.796 2024-02-26 20:59:02.796 1000 FEE 439844 20624 6078183 2024-02-26 20:59:02.796 2024-02-26 20:59:02.796 9000 TIP 439844 738 6078205 2024-02-26 20:59:20.244 2024-02-26 20:59:20.244 1000 FEE 438794 21522 6078206 2024-02-26 20:59:20.244 2024-02-26 20:59:20.244 9000 TIP 438794 21063 6078219 2024-02-26 20:59:24.526 2024-02-26 20:59:24.526 1000 FEE 439917 2529 6078220 2024-02-26 20:59:24.526 2024-02-26 20:59:24.526 9000 TIP 439917 20655 6078259 2024-02-26 20:59:54.001 2024-02-26 20:59:54.001 1000 FEE 439390 11648 6078260 2024-02-26 20:59:54.001 2024-02-26 20:59:54.001 9000 TIP 439390 9167 6078261 2024-02-26 20:59:54.299 2024-02-26 20:59:54.299 1000 FEE 439729 5069 6078262 2024-02-26 20:59:54.299 2024-02-26 20:59:54.299 9000 TIP 439729 5746 6078305 2024-02-26 21:00:41.012 2024-02-26 21:00:41.012 1000 FEE 439857 7992 6078306 2024-02-26 21:00:41.012 2024-02-26 21:00:41.012 9000 TIP 439857 5597 6078349 2024-02-26 21:03:28.305 2024-02-26 21:03:28.305 100 FEE 439811 18731 6078350 2024-02-26 21:03:28.305 2024-02-26 21:03:28.305 900 TIP 439811 20163 6078395 2024-02-26 21:05:08.573 2024-02-26 21:05:08.573 300 FEE 439877 981 6078396 2024-02-26 21:05:08.573 2024-02-26 21:05:08.573 2700 TIP 439877 18525 6078407 2024-02-26 21:05:47.887 2024-02-26 21:05:47.887 1000 FEE 439962 2513 6078417 2024-02-26 21:06:11.622 2024-02-26 21:06:11.622 100000 FEE 439844 20972 6078418 2024-02-26 21:06:11.622 2024-02-26 21:06:11.622 900000 TIP 439844 19836 6078419 2024-02-26 21:06:16.407 2024-02-26 21:06:16.407 800 FEE 439685 20756 6078420 2024-02-26 21:06:16.407 2024-02-26 21:06:16.407 7200 TIP 439685 2519 6078423 2024-02-26 21:06:23.447 2024-02-26 21:06:23.447 2100 FEE 439822 5112 6078424 2024-02-26 21:06:23.447 2024-02-26 21:06:23.447 18900 TIP 439822 6030 6078435 2024-02-26 21:06:24.827 2024-02-26 21:06:24.827 2100 FEE 439822 20062 6078436 2024-02-26 21:06:24.827 2024-02-26 21:06:24.827 18900 TIP 439822 18819 6078437 2024-02-26 21:06:25.285 2024-02-26 21:06:25.285 2100 FEE 439822 15408 6078438 2024-02-26 21:06:25.285 2024-02-26 21:06:25.285 18900 TIP 439822 919 6078445 2024-02-26 21:06:37.114 2024-02-26 21:06:37.114 2100 FEE 439658 15336 6078446 2024-02-26 21:06:37.114 2024-02-26 21:06:37.114 18900 TIP 439658 720 6078457 2024-02-26 21:06:57.145 2024-02-26 21:06:57.145 2100 FEE 439298 10698 6078458 2024-02-26 21:06:57.145 2024-02-26 21:06:57.145 18900 TIP 439298 20099 6078468 2024-02-26 21:07:10.402 2024-02-26 21:07:10.402 2100 FEE 439844 19652 6078469 2024-02-26 21:07:10.402 2024-02-26 21:07:10.402 18900 TIP 439844 21063 6078480 2024-02-26 21:07:46.064 2024-02-26 21:07:46.064 800 FEE 439295 11458 6078481 2024-02-26 21:07:46.064 2024-02-26 21:07:46.064 7200 TIP 439295 780 6078500 2024-02-26 21:10:37.246 2024-02-26 21:10:37.246 2000 FEE 439925 19036 6078501 2024-02-26 21:10:37.246 2024-02-26 21:10:37.246 18000 TIP 439925 2431 6078507 2024-02-26 21:10:58.119 2024-02-26 21:10:58.119 2000 FEE 439844 929 6078508 2024-02-26 21:10:58.119 2024-02-26 21:10:58.119 18000 TIP 439844 10771 6078522 2024-02-26 21:11:48.347 2024-02-26 21:11:48.347 2100 FEE 439844 17682 6078523 2024-02-26 21:11:48.347 2024-02-26 21:11:48.347 18900 TIP 439844 21453 6078532 2024-02-26 21:11:49.333 2024-02-26 21:11:49.333 2100 FEE 439844 18673 6078533 2024-02-26 21:11:49.333 2024-02-26 21:11:49.333 18900 TIP 439844 733 6078558 2024-02-26 21:11:52.487 2024-02-26 21:11:52.487 2100 FEE 439844 18543 6078559 2024-02-26 21:11:52.487 2024-02-26 21:11:52.487 18900 TIP 439844 9365 6078564 2024-02-26 21:11:53.132 2024-02-26 21:11:53.132 2100 FEE 439844 11648 6078565 2024-02-26 21:11:53.132 2024-02-26 21:11:53.132 18900 TIP 439844 5522 6078576 2024-02-26 21:11:54.217 2024-02-26 21:11:54.217 2100 FEE 439844 714 6078577 2024-02-26 21:11:54.217 2024-02-26 21:11:54.217 18900 TIP 439844 10608 6078633 2024-02-26 21:12:25.897 2024-02-26 21:12:25.897 2100 FEE 439854 8916 6078634 2024-02-26 21:12:25.897 2024-02-26 21:12:25.897 18900 TIP 439854 20881 6078678 2024-02-26 21:13:36.515 2024-02-26 21:13:36.515 2100 FEE 439888 12736 6078679 2024-02-26 21:13:36.515 2024-02-26 21:13:36.515 18900 TIP 439888 15213 6078686 2024-02-26 21:13:37.189 2024-02-26 21:13:37.189 2100 FEE 439888 1237 6078687 2024-02-26 21:13:37.189 2024-02-26 21:13:37.189 18900 TIP 439888 15045 6078696 2024-02-26 21:13:38.035 2024-02-26 21:13:38.035 2100 FEE 439888 20254 6078697 2024-02-26 21:13:38.035 2024-02-26 21:13:38.035 18900 TIP 439888 1195 6078708 2024-02-26 21:13:39.066 2024-02-26 21:13:39.066 2100 FEE 439888 14169 6078709 2024-02-26 21:13:39.066 2024-02-26 21:13:39.066 18900 TIP 439888 15544 6078716 2024-02-26 21:13:39.775 2024-02-26 21:13:39.775 2100 FEE 439888 2361 6078717 2024-02-26 21:13:39.775 2024-02-26 21:13:39.775 18900 TIP 439888 20430 6078720 2024-02-26 21:13:47.736 2024-02-26 21:13:47.736 39900 FEE 439888 11938 6078721 2024-02-26 21:13:47.736 2024-02-26 21:13:47.736 359100 TIP 439888 7899 6078724 2024-02-26 21:13:58.569 2024-02-26 21:13:58.569 2100 FEE 439898 16357 6078725 2024-02-26 21:13:58.569 2024-02-26 21:13:58.569 18900 TIP 439898 18517 6078741 2024-02-26 21:15:01.208 2024-02-26 21:15:01.208 1000 FEE 439699 6382 6078742 2024-02-26 21:15:01.208 2024-02-26 21:15:01.208 9000 TIP 439699 20094 6078757 2024-02-26 21:18:05.164 2024-02-26 21:18:05.164 1000 FEE 439967 19488 6078104 2024-02-26 20:49:05.251 2024-02-26 20:49:05.251 1000 STREAM 141924 2098 6078110 2024-02-26 20:50:03.973 2024-02-26 20:50:03.973 1000 STREAM 141924 13177 6078143 2024-02-26 20:52:03.933 2024-02-26 20:52:03.933 1000 STREAM 141924 19902 6078157 2024-02-26 20:54:03.949 2024-02-26 20:54:03.949 1000 STREAM 141924 21042 6078159 2024-02-26 20:55:03.973 2024-02-26 20:55:03.973 1000 STREAM 141924 19640 6078174 2024-02-26 20:58:03.989 2024-02-26 20:58:03.989 1000 STREAM 141924 782 6078184 2024-02-26 20:59:03.983 2024-02-26 20:59:03.983 1000 STREAM 141924 20972 6078319 2024-02-26 21:01:04.034 2024-02-26 21:01:04.034 1000 STREAM 141924 17237 6078379 2024-02-26 21:04:04.028 2024-02-26 21:04:04.028 1000 STREAM 141924 17714 6078394 2024-02-26 21:05:04.017 2024-02-26 21:05:04.017 1000 STREAM 141924 20897 6078416 2024-02-26 21:06:04.015 2024-02-26 21:06:04.015 1000 STREAM 141924 16848 6078486 2024-02-26 21:08:04.06 2024-02-26 21:08:04.06 1000 STREAM 141924 17602 6078487 2024-02-26 21:09:04.034 2024-02-26 21:09:04.034 1000 STREAM 141924 19016 6078489 2024-02-26 21:10:04.044 2024-02-26 21:10:04.044 1000 STREAM 141924 18897 6078586 2024-02-26 21:12:04.029 2024-02-26 21:12:04.029 1000 STREAM 141924 4048 6078643 2024-02-26 21:13:04.041 2024-02-26 21:13:04.041 1000 STREAM 141924 19465 6078732 2024-02-26 21:14:04.055 2024-02-26 21:14:04.055 1000 STREAM 141924 656 6078745 2024-02-26 21:15:04.058 2024-02-26 21:15:04.058 1000 STREAM 141924 20546 6079412 2024-02-26 22:25:02.506 2024-02-26 22:25:02.506 1000 STREAM 141924 19031 6079443 2024-02-26 22:29:02.512 2024-02-26 22:29:02.512 1000 STREAM 141924 20450 6079452 2024-02-26 22:31:02.554 2024-02-26 22:31:02.554 1000 STREAM 141924 1454 6078114 2024-02-26 20:51:03.957 2024-02-26 20:51:03.957 1000 STREAM 141924 11450 6078154 2024-02-26 20:53:03.929 2024-02-26 20:53:03.929 1000 STREAM 141924 21012 6078164 2024-02-26 20:56:03.963 2024-02-26 20:56:03.963 1000 STREAM 141924 964 6078170 2024-02-26 20:57:03.985 2024-02-26 20:57:03.985 1000 STREAM 141924 14308 6078273 2024-02-26 21:00:04.08 2024-02-26 21:00:04.08 1000 STREAM 141924 1008 6078327 2024-02-26 21:02:04.027 2024-02-26 21:02:04.027 1000 STREAM 141924 854 6078336 2024-02-26 21:03:04.008 2024-02-26 21:03:04.008 1000 STREAM 141924 940 6078463 2024-02-26 21:07:04.024 2024-02-26 21:07:04.024 1000 STREAM 141924 854 6078511 2024-02-26 21:11:04.035 2024-02-26 21:11:04.035 1000 STREAM 141924 900 6078749 2024-02-26 21:16:04.064 2024-02-26 21:16:04.064 1000 STREAM 141924 20799 6078753 2024-02-26 21:17:04.06 2024-02-26 21:17:04.06 1000 STREAM 141924 2525 6078756 2024-02-26 21:18:04.067 2024-02-26 21:18:04.067 1000 STREAM 141924 19512 6078773 2024-02-26 21:19:04.08 2024-02-26 21:19:04.08 1000 STREAM 141924 726 6078783 2024-02-26 21:20:04.111 2024-02-26 21:20:04.111 1000 STREAM 141924 3409 6078786 2024-02-26 21:21:04.085 2024-02-26 21:21:04.085 1000 STREAM 141924 21416 6078819 2024-02-26 21:22:04.091 2024-02-26 21:22:04.091 1000 STREAM 141924 7986 6078121 2024-02-26 20:51:31.153 2024-02-26 20:51:31.153 1000 FEE 439844 18116 6078122 2024-02-26 20:51:31.153 2024-02-26 20:51:31.153 9000 TIP 439844 17707 6078130 2024-02-26 20:51:45.31 2024-02-26 20:51:45.31 2700 FEE 439917 4570 6078131 2024-02-26 20:51:45.31 2024-02-26 20:51:45.31 24300 TIP 439917 4776 6078132 2024-02-26 20:51:45.484 2024-02-26 20:51:45.484 2700 FEE 439917 5759 6078133 2024-02-26 20:51:45.484 2024-02-26 20:51:45.484 24300 TIP 439917 20858 6078148 2024-02-26 20:52:07.638 2024-02-26 20:52:07.638 30000 FEE 437514 9809 6078149 2024-02-26 20:52:07.638 2024-02-26 20:52:07.638 270000 TIP 437514 20129 6078189 2024-02-26 20:59:13.638 2024-02-26 20:59:13.638 1000 FEE 439263 2773 6078190 2024-02-26 20:59:13.638 2024-02-26 20:59:13.638 9000 TIP 439263 20267 6078201 2024-02-26 20:59:19.018 2024-02-26 20:59:19.018 1000 FEE 439822 17218 6078202 2024-02-26 20:59:19.018 2024-02-26 20:59:19.018 9000 TIP 439822 3409 6078223 2024-02-26 20:59:26.797 2024-02-26 20:59:26.797 1000 FEE 439638 12721 6078224 2024-02-26 20:59:26.797 2024-02-26 20:59:26.797 9000 TIP 439638 12736 6078238 2024-02-26 20:59:38.691 2024-02-26 20:59:38.691 1000 FEE 439871 1319 6078239 2024-02-26 20:59:38.691 2024-02-26 20:59:38.691 9000 TIP 439871 12049 6078267 2024-02-26 20:59:59.992 2024-02-26 20:59:59.992 1000 FEE 439693 20409 6078268 2024-02-26 20:59:59.992 2024-02-26 20:59:59.992 9000 TIP 439693 5761 6078271 2024-02-26 21:00:02.371 2024-02-26 21:00:02.371 1000 FEE 439658 6578 6078272 2024-02-26 21:00:02.371 2024-02-26 21:00:02.371 9000 TIP 439658 17124 6078313 2024-02-26 21:00:42.175 2024-02-26 21:00:42.175 1000 FEE 439406 9150 6078314 2024-02-26 21:00:42.175 2024-02-26 21:00:42.175 9000 TIP 439406 15703 6078317 2024-02-26 21:00:45.598 2024-02-26 21:00:45.598 1000 FEE 439157 9551 6078318 2024-02-26 21:00:45.598 2024-02-26 21:00:45.598 9000 TIP 439157 11240 6078330 2024-02-26 21:02:18.613 2024-02-26 21:02:18.613 1000 FEE 439957 20267 6078362 2024-02-26 21:03:42.447 2024-02-26 21:03:42.447 100 FEE 439844 7966 6078363 2024-02-26 21:03:42.447 2024-02-26 21:03:42.447 900 TIP 439844 21422 6078384 2024-02-26 21:04:20.492 2024-02-26 21:04:20.492 100 FEE 439723 20964 6078385 2024-02-26 21:04:20.492 2024-02-26 21:04:20.492 900 TIP 439723 15938 6078403 2024-02-26 21:05:46.179 2024-02-26 21:05:46.179 800 FEE 439106 20006 6078404 2024-02-26 21:05:46.179 2024-02-26 21:05:46.179 7200 TIP 439106 1320 6078405 2024-02-26 21:05:47.144 2024-02-26 21:05:47.144 500 FEE 391966 4345 6078406 2024-02-26 21:05:47.144 2024-02-26 21:05:47.144 4500 TIP 391966 18774 6078421 2024-02-26 21:06:21.419 2024-02-26 21:06:21.419 2100 FEE 439263 20276 6078422 2024-02-26 21:06:21.419 2024-02-26 21:06:21.419 18900 TIP 439263 18819 6078453 2024-02-26 21:06:46.794 2024-02-26 21:06:46.794 2100 FEE 439295 17494 6078454 2024-02-26 21:06:46.794 2024-02-26 21:06:46.794 18900 TIP 439295 5171 6078466 2024-02-26 21:07:10.207 2024-02-26 21:07:10.207 2100 FEE 439844 18314 6078467 2024-02-26 21:07:10.207 2024-02-26 21:07:10.207 18900 TIP 439844 20302 6078476 2024-02-26 21:07:35.464 2024-02-26 21:07:35.464 800 FEE 439699 746 6078477 2024-02-26 21:07:35.464 2024-02-26 21:07:35.464 7200 TIP 439699 12708 6078502 2024-02-26 21:10:37.432 2024-02-26 21:10:37.432 2000 FEE 439925 1549 6078503 2024-02-26 21:10:37.432 2024-02-26 21:10:37.432 18000 TIP 439925 1577 6078526 2024-02-26 21:11:48.654 2024-02-26 21:11:48.654 2100 FEE 439844 8289 6078527 2024-02-26 21:11:48.654 2024-02-26 21:11:48.654 18900 TIP 439844 18372 6078568 2024-02-26 21:11:53.496 2024-02-26 21:11:53.496 2100 FEE 439844 3709 6078569 2024-02-26 21:11:53.496 2024-02-26 21:11:53.496 18900 TIP 439844 10393 6078635 2024-02-26 21:12:46.638 2024-02-26 21:12:46.638 3000 FEE 439844 19806 6078636 2024-02-26 21:12:46.638 2024-02-26 21:12:46.638 27000 TIP 439844 17602 6078650 2024-02-26 21:13:18.882 2024-02-26 21:13:18.882 2100 FEE 439878 1970 6078651 2024-02-26 21:13:18.882 2024-02-26 21:13:18.882 18900 TIP 439878 899 6078654 2024-02-26 21:13:20.73 2024-02-26 21:13:20.73 2100 FEE 439878 4292 6078655 2024-02-26 21:13:20.73 2024-02-26 21:13:20.73 18900 TIP 439878 20381 6078668 2024-02-26 21:13:24.304 2024-02-26 21:13:24.304 2100 FEE 439888 11263 6078669 2024-02-26 21:13:24.304 2024-02-26 21:13:24.304 18900 TIP 439888 21494 6078674 2024-02-26 21:13:36.222 2024-02-26 21:13:36.222 2100 FEE 439888 20577 6078675 2024-02-26 21:13:36.222 2024-02-26 21:13:36.222 18900 TIP 439888 18865 6078173 2024-02-26 20:57:48.383 2024-02-26 20:57:48.383 1000 FEE 439951 12268 6078178 2024-02-26 20:58:38.023 2024-02-26 20:58:38.023 10000 FEE 439952 18177 6078187 2024-02-26 20:59:12.317 2024-02-26 20:59:12.317 1000 FEE 439315 14905 6078188 2024-02-26 20:59:12.317 2024-02-26 20:59:12.317 9000 TIP 439315 2213 6078195 2024-02-26 20:59:14.873 2024-02-26 20:59:14.873 1000 FEE 439390 2204 6078196 2024-02-26 20:59:14.873 2024-02-26 20:59:14.873 9000 TIP 439390 3729 6078209 2024-02-26 20:59:20.916 2024-02-26 20:59:20.916 1000 FEE 438758 19852 6078210 2024-02-26 20:59:20.916 2024-02-26 20:59:20.916 9000 TIP 438758 633 6078211 2024-02-26 20:59:22.207 2024-02-26 20:59:22.207 1000 FEE 439298 5725 6078212 2024-02-26 20:59:22.207 2024-02-26 20:59:22.207 9000 TIP 439298 20264 6078215 2024-02-26 20:59:22.996 2024-02-26 20:59:22.996 1000 FEE 439806 19795 6078216 2024-02-26 20:59:22.996 2024-02-26 20:59:22.996 9000 TIP 439806 4313 6078263 2024-02-26 20:59:54.971 2024-02-26 20:59:54.971 2500 FEE 439844 16004 6078264 2024-02-26 20:59:54.971 2024-02-26 20:59:54.971 22500 TIP 439844 12930 6078283 2024-02-26 21:00:31.081 2024-02-26 21:00:31.081 1000 FEE 438789 19995 6078284 2024-02-26 21:00:31.081 2024-02-26 21:00:31.081 9000 TIP 438789 16808 6078301 2024-02-26 21:00:38.716 2024-02-26 21:00:38.716 1000 FEE 439397 21493 6078302 2024-02-26 21:00:38.716 2024-02-26 21:00:38.716 9000 TIP 439397 21349 6078332 2024-02-26 21:02:50.605 2024-02-26 21:02:50.605 0 FEE 439957 19469 6078343 2024-02-26 21:03:26.187 2024-02-26 21:03:26.187 100 FEE 439811 20825 6078344 2024-02-26 21:03:26.187 2024-02-26 21:03:26.187 900 TIP 439811 11523 6078358 2024-02-26 21:03:41.586 2024-02-26 21:03:41.586 100 FEE 439844 20502 6078359 2024-02-26 21:03:41.586 2024-02-26 21:03:41.586 900 TIP 439844 6393 6078365 2024-02-26 21:03:54.167 2024-02-26 21:03:54.167 100 FEE 439699 15560 6078366 2024-02-26 21:03:54.167 2024-02-26 21:03:54.167 900 TIP 439699 5865 6078401 2024-02-26 21:05:38.671 2024-02-26 21:05:38.671 1600 FEE 438847 19417 6078402 2024-02-26 21:05:38.671 2024-02-26 21:05:38.671 14400 TIP 438847 21485 6078447 2024-02-26 21:06:39.523 2024-02-26 21:06:39.523 2500 FEE 439760 12951 6078448 2024-02-26 21:06:39.523 2024-02-26 21:06:39.523 22500 TIP 439760 992 6078449 2024-02-26 21:06:42.162 2024-02-26 21:06:42.162 2100 FEE 439472 11523 6078450 2024-02-26 21:06:42.162 2024-02-26 21:06:42.162 18900 TIP 439472 21155 6078464 2024-02-26 21:07:05.54 2024-02-26 21:07:05.54 2100 FEE 439702 19117 6078465 2024-02-26 21:07:05.54 2024-02-26 21:07:05.54 18900 TIP 439702 19569 6078488 2024-02-26 21:09:28.392 2024-02-26 21:09:28.392 10000 FEE 439963 21451 6078490 2024-02-26 21:10:29.119 2024-02-26 21:10:29.119 2100 FEE 439390 1425 6078491 2024-02-26 21:10:29.119 2024-02-26 21:10:29.119 18900 TIP 439390 1122 6078504 2024-02-26 21:10:50.703 2024-02-26 21:10:50.703 97000 FEE 439964 16355 6078516 2024-02-26 21:11:47.848 2024-02-26 21:11:47.848 2100 FEE 439844 20500 6078517 2024-02-26 21:11:47.848 2024-02-26 21:11:47.848 18900 TIP 439844 7916 6078536 2024-02-26 21:11:50.42 2024-02-26 21:11:50.42 8400 FEE 439844 20243 6078537 2024-02-26 21:11:50.42 2024-02-26 21:11:50.42 75600 TIP 439844 5942 6078584 2024-02-26 21:11:56.101 2024-02-26 21:11:56.101 2100 FEE 439844 827 6078585 2024-02-26 21:11:56.101 2024-02-26 21:11:56.101 18900 TIP 439844 20272 6078593 2024-02-26 21:12:14.91 2024-02-26 21:12:14.91 2100 FEE 439854 7418 6078594 2024-02-26 21:12:14.91 2024-02-26 21:12:14.91 18900 TIP 439854 10554 6078619 2024-02-26 21:12:23.9 2024-02-26 21:12:23.9 2100 FEE 439854 15526 6078620 2024-02-26 21:12:23.9 2024-02-26 21:12:23.9 18900 TIP 439854 21228 6078621 2024-02-26 21:12:24.07 2024-02-26 21:12:24.07 2100 FEE 439854 18243 6078622 2024-02-26 21:12:24.07 2024-02-26 21:12:24.07 18900 TIP 439854 10719 6078623 2024-02-26 21:12:24.53 2024-02-26 21:12:24.53 2100 FEE 439854 20183 6078624 2024-02-26 21:12:24.53 2024-02-26 21:12:24.53 18900 TIP 439854 16456 6078629 2024-02-26 21:12:25.016 2024-02-26 21:12:25.016 2100 FEE 439854 15273 6078630 2024-02-26 21:12:25.016 2024-02-26 21:12:25.016 18900 TIP 439854 9969 6078664 2024-02-26 21:13:23.877 2024-02-26 21:13:23.877 2100 FEE 439888 1012 6078665 2024-02-26 21:13:23.877 2024-02-26 21:13:23.877 18900 TIP 439888 632 6078694 2024-02-26 21:13:37.88 2024-02-26 21:13:37.88 2100 FEE 439888 2774 6078695 2024-02-26 21:13:37.88 2024-02-26 21:13:37.88 18900 TIP 439888 19553 6078710 2024-02-26 21:13:39.271 2024-02-26 21:13:39.271 2100 FEE 439888 18271 6078711 2024-02-26 21:13:39.271 2024-02-26 21:13:39.271 18900 TIP 439888 5160 6078733 2024-02-26 21:14:26.949 2024-02-26 21:14:26.949 12100 FEE 439913 9171 6078734 2024-02-26 21:14:26.949 2024-02-26 21:14:26.949 108900 TIP 439913 9985 6078737 2024-02-26 21:14:59.294 2024-02-26 21:14:59.294 1000 FEE 439822 2681 6078738 2024-02-26 21:14:59.294 2024-02-26 21:14:59.294 9000 TIP 439822 14357 6078758 2024-02-26 21:18:23.838 2024-02-26 21:18:23.838 4000 FEE 439699 20108 6078759 2024-02-26 21:18:23.838 2024-02-26 21:18:23.838 36000 TIP 439699 5746 6078771 2024-02-26 21:18:34.181 2024-02-26 21:18:34.181 4000 FEE 439721 18330 6078772 2024-02-26 21:18:34.181 2024-02-26 21:18:34.181 36000 TIP 439721 9482 6078778 2024-02-26 21:19:36.903 2024-02-26 21:19:36.903 900 FEE 439946 6578 6078779 2024-02-26 21:19:36.903 2024-02-26 21:19:36.903 8100 TIP 439946 16571 6078846 2024-02-26 21:24:30.765 2024-02-26 21:24:30.765 2100 FEE 439844 1038 6078847 2024-02-26 21:24:30.765 2024-02-26 21:24:30.765 18900 TIP 439844 19531 6078908 2024-02-26 21:30:21.365 2024-02-26 21:30:21.365 6600 FEE 439973 18511 6078909 2024-02-26 21:30:21.365 2024-02-26 21:30:21.365 59400 TIP 439973 21033 6078916 2024-02-26 21:30:22.648 2024-02-26 21:30:22.648 3300 FEE 439959 13517 6078917 2024-02-26 21:30:22.648 2024-02-26 21:30:22.648 29700 TIP 439959 21446 6078922 2024-02-26 21:30:54.667 2024-02-26 21:30:54.667 1000 FEE 439995 19652 6078977 2024-02-26 21:32:05.041 2024-02-26 21:32:05.041 1000 FEE 439990 17227 6078978 2024-02-26 21:32:05.041 2024-02-26 21:32:05.041 9000 TIP 439990 10393 6079030 2024-02-26 21:42:37.243 2024-02-26 21:42:37.243 1000 FEE 440007 4173 6079032 2024-02-26 21:43:26.616 2024-02-26 21:43:26.616 1100 FEE 439830 18330 6079033 2024-02-26 21:43:26.616 2024-02-26 21:43:26.616 9900 TIP 439830 20599 6079047 2024-02-26 21:46:08.312 2024-02-26 21:46:08.312 900 FEE 440007 15858 6079048 2024-02-26 21:46:08.312 2024-02-26 21:46:08.312 8100 TIP 440007 14376 6079107 2024-02-26 21:48:49.697 2024-02-26 21:48:49.697 1100 FEE 439946 16562 6079108 2024-02-26 21:48:49.697 2024-02-26 21:48:49.697 9900 TIP 439946 11018 6079123 2024-02-26 21:52:39.308 2024-02-26 21:52:39.308 1000 FEE 440017 4035 6079125 2024-02-26 21:53:07.926 2024-02-26 21:53:07.926 3000 FEE 435571 20257 6079126 2024-02-26 21:53:07.926 2024-02-26 21:53:07.926 27000 TIP 435571 21357 6079154 2024-02-26 21:58:58.938 2024-02-26 21:58:58.938 2100 FEE 438737 6041 6079155 2024-02-26 21:58:58.938 2024-02-26 21:58:58.938 18900 TIP 438737 20963 6079172 2024-02-26 22:01:13.302 2024-02-26 22:01:13.302 500 FEE 440011 670 6079173 2024-02-26 22:01:13.302 2024-02-26 22:01:13.302 4500 TIP 440011 15925 6079224 2024-02-26 22:04:09.565 2024-02-26 22:04:09.565 0 FEE 440023 20073 6079262 2024-02-26 22:09:05.471 2024-02-26 22:09:05.471 5000 FEE 438418 20588 6079263 2024-02-26 22:09:05.471 2024-02-26 22:09:05.471 45000 TIP 438418 10007 6079285 2024-02-26 22:11:19.199 2024-02-26 22:11:19.199 100000 FEE 440029 7809 6079295 2024-02-26 22:11:44.643 2024-02-26 22:11:44.643 3400 FEE 438605 20551 6079296 2024-02-26 22:11:44.643 2024-02-26 22:11:44.643 30600 TIP 438605 9695 6079313 2024-02-26 22:13:42.365 2024-02-26 22:13:42.365 1000 FEE 440033 16847 6079338 2024-02-26 22:15:49.267 2024-02-26 22:15:49.267 100 FEE 440036 14376 6079339 2024-02-26 22:15:49.267 2024-02-26 22:15:49.267 900 TIP 440036 882 6079349 2024-02-26 22:17:30.045 2024-02-26 22:17:30.045 2100 FEE 439987 9809 6078254 2024-02-26 20:59:51.796 2024-02-26 20:59:51.796 2500 FEE 439844 2402 6078255 2024-02-26 20:59:51.796 2024-02-26 20:59:51.796 22500 TIP 439844 21605 6078257 2024-02-26 20:59:53.572 2024-02-26 20:59:53.572 1000 FEE 439443 2075 6078258 2024-02-26 20:59:53.572 2024-02-26 20:59:53.572 9000 TIP 439443 11240 6078285 2024-02-26 21:00:31.397 2024-02-26 21:00:31.397 1000 FEE 439392 2061 6078286 2024-02-26 21:00:31.397 2024-02-26 21:00:31.397 9000 TIP 439392 18274 6078293 2024-02-26 21:00:33.267 2024-02-26 21:00:33.267 1000 FEE 438789 4958 6078294 2024-02-26 21:00:33.267 2024-02-26 21:00:33.267 9000 TIP 438789 10638 6078303 2024-02-26 21:00:39.017 2024-02-26 21:00:39.017 1000 FEE 439397 768 6078304 2024-02-26 21:00:39.017 2024-02-26 21:00:39.017 9000 TIP 439397 6149 6078322 2024-02-26 21:01:46.051 2024-02-26 21:01:46.051 1000 FEE 438769 20504 6078323 2024-02-26 21:01:46.051 2024-02-26 21:01:46.051 9000 TIP 438769 1141 6078335 2024-02-26 21:02:53.056 2024-02-26 21:02:53.056 1000 FEE 439959 20120 6078339 2024-02-26 21:03:25.495 2024-02-26 21:03:25.495 100 FEE 439811 18528 6078340 2024-02-26 21:03:25.495 2024-02-26 21:03:25.495 900 TIP 439811 21338 6078354 2024-02-26 21:03:38.91 2024-02-26 21:03:38.91 100 FEE 439844 9809 6078355 2024-02-26 21:03:38.91 2024-02-26 21:03:38.91 900 TIP 439844 15160 6078360 2024-02-26 21:03:42.011 2024-02-26 21:03:42.011 100 FEE 439844 5449 6078361 2024-02-26 21:03:42.011 2024-02-26 21:03:42.011 900 TIP 439844 13133 6078367 2024-02-26 21:03:54.608 2024-02-26 21:03:54.608 100 FEE 439699 831 6078368 2024-02-26 21:03:54.608 2024-02-26 21:03:54.608 900 TIP 439699 16948 6078388 2024-02-26 21:04:29.837 2024-02-26 21:04:29.837 1600 FEE 439392 9 6078389 2024-02-26 21:04:29.837 2024-02-26 21:04:29.837 14400 TIP 439392 14905 6078392 2024-02-26 21:04:59.349 2024-02-26 21:04:59.349 800 FEE 439397 15941 6078393 2024-02-26 21:04:59.349 2024-02-26 21:04:59.349 7200 TIP 439397 21079 6078397 2024-02-26 21:05:13.972 2024-02-26 21:05:13.972 1600 FEE 439157 15484 6078398 2024-02-26 21:05:13.972 2024-02-26 21:05:13.972 14400 TIP 439157 9184 6078399 2024-02-26 21:05:28.357 2024-02-26 21:05:28.357 1100 FEE 439729 17091 6078400 2024-02-26 21:05:28.357 2024-02-26 21:05:28.357 9900 TIP 439729 2734 6078427 2024-02-26 21:06:23.787 2024-02-26 21:06:23.787 2100 FEE 439822 1046 6078428 2024-02-26 21:06:23.787 2024-02-26 21:06:23.787 18900 TIP 439822 9341 6078482 2024-02-26 21:07:54.358 2024-02-26 21:07:54.358 1600 FEE 439806 4958 6078483 2024-02-26 21:07:54.358 2024-02-26 21:07:54.358 14400 TIP 439806 5761 6078496 2024-02-26 21:10:30.365 2024-02-26 21:10:30.365 2100 FEE 439390 16747 6078497 2024-02-26 21:10:30.365 2024-02-26 21:10:30.365 18900 TIP 439390 20514 6078509 2024-02-26 21:10:58.274 2024-02-26 21:10:58.274 2000 FEE 439844 19103 6078510 2024-02-26 21:10:58.274 2024-02-26 21:10:58.274 18000 TIP 439844 5499 6078534 2024-02-26 21:11:50.367 2024-02-26 21:11:50.367 2100 FEE 439844 18232 6078535 2024-02-26 21:11:50.367 2024-02-26 21:11:50.367 18900 TIP 439844 2741 6078540 2024-02-26 21:11:50.858 2024-02-26 21:11:50.858 2100 FEE 439844 4633 6078541 2024-02-26 21:11:50.858 2024-02-26 21:11:50.858 18900 TIP 439844 3642 6078550 2024-02-26 21:11:51.744 2024-02-26 21:11:51.744 2100 FEE 439844 20381 6078551 2024-02-26 21:11:51.744 2024-02-26 21:11:51.744 18900 TIP 439844 8870 6078552 2024-02-26 21:11:51.927 2024-02-26 21:11:51.927 2100 FEE 439844 5775 6078553 2024-02-26 21:11:51.927 2024-02-26 21:11:51.927 18900 TIP 439844 18529 6078578 2024-02-26 21:11:54.344 2024-02-26 21:11:54.344 2100 FEE 439844 11897 6078579 2024-02-26 21:11:54.344 2024-02-26 21:11:54.344 18900 TIP 439844 21430 6078587 2024-02-26 21:12:05.399 2024-02-26 21:12:05.399 2100 FEE 439315 692 6078588 2024-02-26 21:12:05.399 2024-02-26 21:12:05.399 18900 TIP 439315 1145 6078595 2024-02-26 21:12:15.134 2024-02-26 21:12:15.134 2100 FEE 439854 20642 6078596 2024-02-26 21:12:15.134 2024-02-26 21:12:15.134 18900 TIP 439854 14267 6078597 2024-02-26 21:12:15.338 2024-02-26 21:12:15.338 2100 FEE 439854 717 6078598 2024-02-26 21:12:15.338 2024-02-26 21:12:15.338 18900 TIP 439854 1881 6078603 2024-02-26 21:12:15.861 2024-02-26 21:12:15.861 2100 FEE 439854 1244 6078604 2024-02-26 21:12:15.861 2024-02-26 21:12:15.861 18900 TIP 439854 21233 6078644 2024-02-26 21:13:17.861 2024-02-26 21:13:17.861 2100 FEE 439878 18264 6078645 2024-02-26 21:13:17.861 2024-02-26 21:13:17.861 18900 TIP 439878 6335 6078648 2024-02-26 21:13:18.486 2024-02-26 21:13:18.486 2100 FEE 439878 21214 6078649 2024-02-26 21:13:18.486 2024-02-26 21:13:18.486 18900 TIP 439878 11298 6078690 2024-02-26 21:13:37.516 2024-02-26 21:13:37.516 2100 FEE 439888 18862 6078691 2024-02-26 21:13:37.516 2024-02-26 21:13:37.516 18900 TIP 439888 21357 6078718 2024-02-26 21:13:39.949 2024-02-26 21:13:39.949 2100 FEE 439888 5520 6078719 2024-02-26 21:13:39.949 2024-02-26 21:13:39.949 18900 TIP 439888 1713 6078728 2024-02-26 21:13:59.147 2024-02-26 21:13:59.147 2100 FEE 439898 20963 6078729 2024-02-26 21:13:59.147 2024-02-26 21:13:59.147 18900 TIP 439898 20802 6078750 2024-02-26 21:16:21.454 2024-02-26 21:16:21.454 1000 FEE 439966 11417 6078774 2024-02-26 21:19:09.993 2024-02-26 21:19:09.993 2100 FEE 439844 19759 6078775 2024-02-26 21:19:09.993 2024-02-26 21:19:09.993 18900 TIP 439844 19841 6078781 2024-02-26 21:19:45.663 2024-02-26 21:19:45.663 9000 FEE 439946 20481 6078782 2024-02-26 21:19:45.663 2024-02-26 21:19:45.663 81000 TIP 439946 1512 6078797 2024-02-26 21:21:51.691 2024-02-26 21:21:51.691 15400 FEE 439145 7185 6078798 2024-02-26 21:21:51.691 2024-02-26 21:21:51.691 138600 TIP 439145 20904 6078856 2024-02-26 21:24:50.944 2024-02-26 21:24:50.944 7700 FEE 438737 20087 6078857 2024-02-26 21:24:50.944 2024-02-26 21:24:50.944 69300 TIP 438737 5171 6078868 2024-02-26 21:26:28.793 2024-02-26 21:26:28.793 1000 FEE 439984 12272 6078883 2024-02-26 21:28:52.282 2024-02-26 21:28:52.282 100 FEE 439979 15690 6078884 2024-02-26 21:28:52.282 2024-02-26 21:28:52.282 900 TIP 439979 12277 6078887 2024-02-26 21:28:52.747 2024-02-26 21:28:52.747 100 FEE 439979 2952 6078888 2024-02-26 21:28:52.747 2024-02-26 21:28:52.747 900 TIP 439979 4388 6078889 2024-02-26 21:28:53.037 2024-02-26 21:28:53.037 100 FEE 439979 18008 6078890 2024-02-26 21:28:53.037 2024-02-26 21:28:53.037 900 TIP 439979 6137 6078895 2024-02-26 21:28:59.966 2024-02-26 21:28:59.966 100 FEE 439979 16149 6078896 2024-02-26 21:28:59.966 2024-02-26 21:28:59.966 900 TIP 439979 20073 6078919 2024-02-26 21:30:32.767 2024-02-26 21:30:32.767 97000 FEE 439994 17455 6078987 2024-02-26 21:33:06.582 2024-02-26 21:33:06.582 6400 FEE 439917 763 6078988 2024-02-26 21:33:06.582 2024-02-26 21:33:06.582 57600 TIP 439917 18919 6079002 2024-02-26 21:36:47.842 2024-02-26 21:36:47.842 1000 FEE 439042 8648 6079003 2024-02-26 21:36:47.842 2024-02-26 21:36:47.842 9000 TIP 439042 19501 6079014 2024-02-26 21:37:36.858 2024-02-26 21:37:36.858 125000 FEE 440004 21271 6079026 2024-02-26 21:40:47.892 2024-02-26 21:40:47.892 3100 FEE 439988 2718 6079027 2024-02-26 21:40:47.892 2024-02-26 21:40:47.892 27900 TIP 439988 1632 6079045 2024-02-26 21:46:08.149 2024-02-26 21:46:08.149 100 FEE 440007 1626 6079046 2024-02-26 21:46:08.149 2024-02-26 21:46:08.149 900 TIP 440007 13927 6079064 2024-02-26 21:47:52.773 2024-02-26 21:47:52.773 1100 FEE 439844 4570 6079065 2024-02-26 21:47:52.773 2024-02-26 21:47:52.773 9900 TIP 439844 2322 6079076 2024-02-26 21:47:53.891 2024-02-26 21:47:53.891 1100 FEE 439844 18641 6079077 2024-02-26 21:47:53.891 2024-02-26 21:47:53.891 9900 TIP 439844 17522 6079186 2024-02-26 22:01:18.025 2024-02-26 22:01:18.025 2100 FEE 439872 19995 6079187 2024-02-26 22:01:18.025 2024-02-26 22:01:18.025 18900 TIP 439872 9529 6079196 2024-02-26 22:01:29.124 2024-02-26 22:01:29.124 2100 FEE 439946 6003 6079197 2024-02-26 22:01:29.124 2024-02-26 22:01:29.124 18900 TIP 439946 12278 6079213 2024-02-26 22:02:40.496 2024-02-26 22:02:40.496 1000 FEE 440001 14267 6078275 2024-02-26 21:00:20.852 2024-02-26 21:00:20.852 1000 FEE 439854 15271 6078276 2024-02-26 21:00:20.852 2024-02-26 21:00:20.852 9000 TIP 439854 684 6078281 2024-02-26 21:00:28.142 2024-02-26 21:00:28.142 1000 FEE 439701 9433 6078282 2024-02-26 21:00:28.142 2024-02-26 21:00:28.142 9000 TIP 439701 705 6078291 2024-02-26 21:00:32.664 2024-02-26 21:00:32.664 1000 FEE 439701 21365 6078292 2024-02-26 21:00:32.664 2024-02-26 21:00:32.664 9000 TIP 439701 9363 6078315 2024-02-26 21:00:42.354 2024-02-26 21:00:42.354 1000 FEE 439406 8945 6078316 2024-02-26 21:00:42.354 2024-02-26 21:00:42.354 9000 TIP 439406 1094 6078333 2024-02-26 21:02:52.479 2024-02-26 21:02:52.479 1000 FEE 439443 21148 6078334 2024-02-26 21:02:52.479 2024-02-26 21:02:52.479 9000 TIP 439443 12744 6078337 2024-02-26 21:03:11.232 2024-02-26 21:03:11.232 1000 FEE 439960 16229 6078341 2024-02-26 21:03:25.711 2024-02-26 21:03:25.711 100 FEE 439811 18310 6078342 2024-02-26 21:03:25.711 2024-02-26 21:03:25.711 900 TIP 439811 21164 6078347 2024-02-26 21:03:26.84 2024-02-26 21:03:26.84 100 FEE 439811 5961 6078348 2024-02-26 21:03:26.84 2024-02-26 21:03:26.84 900 TIP 439811 21441 6078351 2024-02-26 21:03:33.863 2024-02-26 21:03:33.863 800 FEE 439701 19566 6078352 2024-02-26 21:03:33.863 2024-02-26 21:03:33.863 7200 TIP 439701 20573 6078377 2024-02-26 21:04:00.775 2024-02-26 21:04:00.775 100 FEE 439806 21418 6078378 2024-02-26 21:04:00.775 2024-02-26 21:04:00.775 900 TIP 439806 17984 6078380 2024-02-26 21:04:11.263 2024-02-26 21:04:11.263 800 FEE 439854 649 6078381 2024-02-26 21:04:11.263 2024-02-26 21:04:11.263 7200 TIP 439854 14074 6078433 2024-02-26 21:06:24.309 2024-02-26 21:06:24.309 2100 FEE 439822 11516 6078434 2024-02-26 21:06:24.309 2024-02-26 21:06:24.309 18900 TIP 439822 9992 6078441 2024-02-26 21:06:31.523 2024-02-26 21:06:31.523 12100 FEE 439315 18230 6078442 2024-02-26 21:06:31.523 2024-02-26 21:06:31.523 108900 TIP 439315 20713 6078459 2024-02-26 21:06:58.447 2024-02-26 21:06:58.447 500 FEE 439295 17001 6078460 2024-02-26 21:06:58.447 2024-02-26 21:06:58.447 4500 TIP 439295 5597 6078474 2024-02-26 21:07:20.43 2024-02-26 21:07:20.43 2100 FEE 439699 21463 6078475 2024-02-26 21:07:20.43 2024-02-26 21:07:20.43 18900 TIP 439699 17526 6078484 2024-02-26 21:08:00.729 2024-02-26 21:08:00.729 800 FEE 439917 14503 6078485 2024-02-26 21:08:00.729 2024-02-26 21:08:00.729 7200 TIP 439917 14280 6078518 2024-02-26 21:11:48.045 2024-02-26 21:11:48.045 2100 FEE 439844 20377 6078519 2024-02-26 21:11:48.045 2024-02-26 21:11:48.045 18900 TIP 439844 21218 6078530 2024-02-26 21:11:49.149 2024-02-26 21:11:49.149 2100 FEE 439844 21136 6078531 2024-02-26 21:11:49.149 2024-02-26 21:11:49.149 18900 TIP 439844 20616 6078542 2024-02-26 21:11:51.043 2024-02-26 21:11:51.043 2100 FEE 439844 7659 6078543 2024-02-26 21:11:51.043 2024-02-26 21:11:51.043 18900 TIP 439844 624 6078544 2024-02-26 21:11:51.232 2024-02-26 21:11:51.232 2100 FEE 439844 16665 6078545 2024-02-26 21:11:51.232 2024-02-26 21:11:51.232 18900 TIP 439844 2000 6078548 2024-02-26 21:11:51.579 2024-02-26 21:11:51.579 2100 FEE 439844 16289 6078549 2024-02-26 21:11:51.579 2024-02-26 21:11:51.579 18900 TIP 439844 1064 6078570 2024-02-26 21:11:53.665 2024-02-26 21:11:53.665 2100 FEE 439844 10270 6078571 2024-02-26 21:11:53.665 2024-02-26 21:11:53.665 18900 TIP 439844 1307 6078574 2024-02-26 21:11:54.022 2024-02-26 21:11:54.022 2100 FEE 439844 2327 6078575 2024-02-26 21:11:54.022 2024-02-26 21:11:54.022 18900 TIP 439844 16432 6078613 2024-02-26 21:12:21.311 2024-02-26 21:12:21.311 2100 FEE 439861 15049 6078614 2024-02-26 21:12:21.311 2024-02-26 21:12:21.311 18900 TIP 439861 657 6078615 2024-02-26 21:12:21.495 2024-02-26 21:12:21.495 2100 FEE 439861 1198 6078616 2024-02-26 21:12:21.495 2024-02-26 21:12:21.495 18900 TIP 439861 14045 6078617 2024-02-26 21:12:23.748 2024-02-26 21:12:23.748 2100 FEE 439854 6361 6078618 2024-02-26 21:12:23.748 2024-02-26 21:12:23.748 18900 TIP 439854 18243 6078625 2024-02-26 21:12:24.686 2024-02-26 21:12:24.686 2100 FEE 439854 20267 6078626 2024-02-26 21:12:24.686 2024-02-26 21:12:24.686 18900 TIP 439854 16442 6078627 2024-02-26 21:12:24.865 2024-02-26 21:12:24.865 2100 FEE 439854 19601 6078628 2024-02-26 21:12:24.865 2024-02-26 21:12:24.865 18900 TIP 439854 13365 6078637 2024-02-26 21:12:48.64 2024-02-26 21:12:48.64 2100 FEE 439922 21339 6078638 2024-02-26 21:12:48.64 2024-02-26 21:12:48.64 18900 TIP 439922 20674 6078652 2024-02-26 21:13:19.114 2024-02-26 21:13:19.114 2100 FEE 439878 9705 6078653 2024-02-26 21:13:19.114 2024-02-26 21:13:19.114 18900 TIP 439878 9906 6078666 2024-02-26 21:13:24.106 2024-02-26 21:13:24.106 2100 FEE 439888 2774 6078667 2024-02-26 21:13:24.106 2024-02-26 21:13:24.106 18900 TIP 439888 18225 6078702 2024-02-26 21:13:38.535 2024-02-26 21:13:38.535 2100 FEE 439888 18678 6078703 2024-02-26 21:13:38.535 2024-02-26 21:13:38.535 18900 TIP 439888 18663 6078730 2024-02-26 21:13:59.734 2024-02-26 21:13:59.734 2100 FEE 439898 18393 6078731 2024-02-26 21:13:59.734 2024-02-26 21:13:59.734 18900 TIP 439898 19857 6078754 2024-02-26 21:17:14.97 2024-02-26 21:17:14.97 2100 FEE 439871 21520 6078755 2024-02-26 21:17:14.97 2024-02-26 21:17:14.97 18900 TIP 439871 3518 6078766 2024-02-26 21:18:30.739 2024-02-26 21:18:30.739 1000 FEE 439968 797 6078769 2024-02-26 21:18:33.195 2024-02-26 21:18:33.195 4000 FEE 439638 18583 6078770 2024-02-26 21:18:33.195 2024-02-26 21:18:33.195 36000 TIP 439638 14122 6078822 2024-02-26 21:22:49.127 2024-02-26 21:22:49.127 100 FEE 437749 8459 6078823 2024-02-26 21:22:49.127 2024-02-26 21:22:49.127 900 TIP 437749 1751 6078824 2024-02-26 21:22:58.792 2024-02-26 21:22:58.792 1000 FEE 439976 11328 6078828 2024-02-26 21:23:36.698 2024-02-26 21:23:36.698 100 FEE 428979 636 6078829 2024-02-26 21:23:36.698 2024-02-26 21:23:36.698 900 TIP 428979 4115 6078832 2024-02-26 21:23:52.397 2024-02-26 21:23:52.397 100 FEE 429089 16912 6078833 2024-02-26 21:23:52.397 2024-02-26 21:23:52.397 900 TIP 429089 19857 6078876 2024-02-26 21:27:30.09 2024-02-26 21:27:30.09 210000 FEE 439987 18663 6078877 2024-02-26 21:28:02.868 2024-02-26 21:28:02.868 1000 FEE 439988 8095 6078904 2024-02-26 21:29:36.385 2024-02-26 21:29:36.385 1000 FEE 439991 1142 6078906 2024-02-26 21:29:53.746 2024-02-26 21:29:53.746 0 FEE 60106 16042 6078912 2024-02-26 21:30:22.287 2024-02-26 21:30:22.287 3300 FEE 439959 16998 6078913 2024-02-26 21:30:22.287 2024-02-26 21:30:22.287 29700 TIP 439959 15521 6078944 2024-02-26 21:31:45.968 2024-02-26 21:31:45.968 1000 FEE 439263 4459 6078945 2024-02-26 21:31:45.968 2024-02-26 21:31:45.968 9000 TIP 439263 16966 6078964 2024-02-26 21:32:03.385 2024-02-26 21:32:03.385 1000 FEE 439990 1785 6078965 2024-02-26 21:32:03.385 2024-02-26 21:32:03.385 9000 TIP 439990 20990 6078981 2024-02-26 21:32:06.573 2024-02-26 21:32:06.573 1000 FEE 439990 21469 6078982 2024-02-26 21:32:06.573 2024-02-26 21:32:06.573 9000 TIP 439990 1596 6079010 2024-02-26 21:37:06.673 2024-02-26 21:37:06.673 2100 FEE 439946 20614 6079011 2024-02-26 21:37:06.673 2024-02-26 21:37:06.673 18900 TIP 439946 20409 6078356 2024-02-26 21:03:41.257 2024-02-26 21:03:41.257 100 FEE 439844 2963 6078357 2024-02-26 21:03:41.257 2024-02-26 21:03:41.257 900 TIP 439844 10693 6078373 2024-02-26 21:03:55.702 2024-02-26 21:03:55.702 100 FEE 439699 18473 6078374 2024-02-26 21:03:55.702 2024-02-26 21:03:55.702 900 TIP 439699 1817 6078375 2024-02-26 21:03:57.752 2024-02-26 21:03:57.752 100 FEE 439806 21314 6078376 2024-02-26 21:03:57.752 2024-02-26 21:03:57.752 900 TIP 439806 16250 6078382 2024-02-26 21:04:20.356 2024-02-26 21:04:20.356 100 FEE 439723 18412 6078383 2024-02-26 21:04:20.356 2024-02-26 21:04:20.356 900 TIP 439723 14552 6078390 2024-02-26 21:04:36.073 2024-02-26 21:04:36.073 800 FEE 439791 894 6078391 2024-02-26 21:04:36.073 2024-02-26 21:04:36.073 7200 TIP 439791 21201 6078451 2024-02-26 21:06:42.615 2024-02-26 21:06:42.615 2100 FEE 439472 21079 6078452 2024-02-26 21:06:42.615 2024-02-26 21:06:42.615 18900 TIP 439472 895 6078478 2024-02-26 21:07:38.392 2024-02-26 21:07:38.392 2100 FEE 439925 18124 6078479 2024-02-26 21:07:38.392 2024-02-26 21:07:38.392 18900 TIP 439925 21457 6078498 2024-02-26 21:10:35.404 2024-02-26 21:10:35.404 2000 FEE 439927 20018 6078499 2024-02-26 21:10:35.404 2024-02-26 21:10:35.404 18000 TIP 439927 20841 6078512 2024-02-26 21:11:28.126 2024-02-26 21:11:28.126 42000 FEE 439844 11942 6078513 2024-02-26 21:11:28.126 2024-02-26 21:11:28.126 378000 TIP 439844 10280 6078520 2024-02-26 21:11:48.188 2024-02-26 21:11:48.188 2100 FEE 439844 8037 6078521 2024-02-26 21:11:48.188 2024-02-26 21:11:48.188 18900 TIP 439844 20646 6078524 2024-02-26 21:11:48.505 2024-02-26 21:11:48.505 2100 FEE 439844 16353 6078525 2024-02-26 21:11:48.505 2024-02-26 21:11:48.505 18900 TIP 439844 1726 6078528 2024-02-26 21:11:48.831 2024-02-26 21:11:48.831 2100 FEE 439844 15806 6078529 2024-02-26 21:11:48.831 2024-02-26 21:11:48.831 18900 TIP 439844 960 6078546 2024-02-26 21:11:51.403 2024-02-26 21:11:51.403 2100 FEE 439844 2942 6078547 2024-02-26 21:11:51.403 2024-02-26 21:11:51.403 18900 TIP 439844 17710 6078554 2024-02-26 21:11:52.113 2024-02-26 21:11:52.113 2100 FEE 439844 20861 6078555 2024-02-26 21:11:52.113 2024-02-26 21:11:52.113 18900 TIP 439844 6533 6078556 2024-02-26 21:11:52.306 2024-02-26 21:11:52.306 2100 FEE 439844 17183 6078557 2024-02-26 21:11:52.306 2024-02-26 21:11:52.306 18900 TIP 439844 4059 6078560 2024-02-26 21:11:52.785 2024-02-26 21:11:52.785 2100 FEE 439844 21480 6078561 2024-02-26 21:11:52.785 2024-02-26 21:11:52.785 18900 TIP 439844 11192 6078572 2024-02-26 21:11:53.846 2024-02-26 21:11:53.846 2100 FEE 439844 1823 6078573 2024-02-26 21:11:53.846 2024-02-26 21:11:53.846 18900 TIP 439844 672 6078582 2024-02-26 21:11:55.381 2024-02-26 21:11:55.381 2100 FEE 439844 16289 6078583 2024-02-26 21:11:55.381 2024-02-26 21:11:55.381 18900 TIP 439844 19777 6078589 2024-02-26 21:12:05.502 2024-02-26 21:12:05.502 2100 FEE 439315 11516 6078590 2024-02-26 21:12:05.502 2024-02-26 21:12:05.502 18900 TIP 439315 21361 6078601 2024-02-26 21:12:15.692 2024-02-26 21:12:15.692 2100 FEE 439854 844 6078602 2024-02-26 21:12:15.692 2024-02-26 21:12:15.692 18900 TIP 439854 19886 6078605 2024-02-26 21:12:20.634 2024-02-26 21:12:20.634 2100 FEE 439861 9336 6078606 2024-02-26 21:12:20.634 2024-02-26 21:12:20.634 18900 TIP 439861 21600 6078609 2024-02-26 21:12:20.969 2024-02-26 21:12:20.969 2100 FEE 439861 20799 6078610 2024-02-26 21:12:20.969 2024-02-26 21:12:20.969 18900 TIP 439861 18626 6078684 2024-02-26 21:13:37.023 2024-02-26 21:13:37.023 2100 FEE 439888 19030 6078685 2024-02-26 21:13:37.023 2024-02-26 21:13:37.023 18900 TIP 439888 1060 6078692 2024-02-26 21:13:37.73 2024-02-26 21:13:37.73 2100 FEE 439888 14503 6078693 2024-02-26 21:13:37.73 2024-02-26 21:13:37.73 18900 TIP 439888 18865 6078712 2024-02-26 21:13:39.428 2024-02-26 21:13:39.428 2100 FEE 439888 11329 6078713 2024-02-26 21:13:39.428 2024-02-26 21:13:39.428 18900 TIP 439888 9275 6078722 2024-02-26 21:13:58.036 2024-02-26 21:13:58.036 2100 FEE 439898 18180 6078723 2024-02-26 21:13:58.036 2024-02-26 21:13:58.036 18900 TIP 439898 18837 6078748 2024-02-26 21:15:17.063 2024-02-26 21:15:17.063 1000 FEE 439965 9171 6078751 2024-02-26 21:17:02.036 2024-02-26 21:17:02.036 4000 FEE 439963 683 6078752 2024-02-26 21:17:02.036 2024-02-26 21:17:02.036 36000 TIP 439963 21472 6078760 2024-02-26 21:18:24.255 2024-02-26 21:18:24.255 4000 FEE 439806 20163 6078761 2024-02-26 21:18:24.255 2024-02-26 21:18:24.255 36000 TIP 439806 1577 6078762 2024-02-26 21:18:29.308 2024-02-26 21:18:29.308 4000 FEE 439713 5978 6078763 2024-02-26 21:18:29.308 2024-02-26 21:18:29.308 36000 TIP 439713 2942 6078764 2024-02-26 21:18:30.08 2024-02-26 21:18:30.08 4000 FEE 439764 18219 6078765 2024-02-26 21:18:30.08 2024-02-26 21:18:30.08 36000 TIP 439764 18842 6078784 2024-02-26 21:20:54.034 2024-02-26 21:20:54.034 100 FEE 439295 4802 6078785 2024-02-26 21:20:54.034 2024-02-26 21:20:54.034 900 TIP 439295 18819 6078787 2024-02-26 21:21:05.723 2024-02-26 21:21:05.723 100 FEE 439809 3683 6078788 2024-02-26 21:21:05.723 2024-02-26 21:21:05.723 900 TIP 439809 20377 6078792 2024-02-26 21:21:26.084 2024-02-26 21:21:26.084 1000 FEE 439973 9363 6078793 2024-02-26 21:21:51.125 2024-02-26 21:21:51.125 7700 FEE 439145 20751 6078794 2024-02-26 21:21:51.125 2024-02-26 21:21:51.125 69300 TIP 439145 18640 6078820 2024-02-26 21:22:20.668 2024-02-26 21:22:20.668 1000 FEE 439974 1800 6078836 2024-02-26 21:24:08.534 2024-02-26 21:24:08.534 100 FEE 428994 19557 6078837 2024-02-26 21:24:08.534 2024-02-26 21:24:08.534 900 TIP 428994 19785 6078850 2024-02-26 21:24:42.362 2024-02-26 21:24:42.362 7700 FEE 438737 16194 6078851 2024-02-26 21:24:42.362 2024-02-26 21:24:42.362 69300 TIP 438737 6602 6078854 2024-02-26 21:24:46.617 2024-02-26 21:24:46.617 100000 FEE 439729 12175 6078855 2024-02-26 21:24:46.617 2024-02-26 21:24:46.617 900000 TIP 439729 10818 6078860 2024-02-26 21:25:15.516 2024-02-26 21:25:15.516 4000 FEE 439946 5017 6078861 2024-02-26 21:25:15.516 2024-02-26 21:25:15.516 36000 TIP 439946 19938 6078866 2024-02-26 21:26:13.102 2024-02-26 21:26:13.102 2100 FEE 439729 7772 6078867 2024-02-26 21:26:13.102 2024-02-26 21:26:13.102 18900 TIP 439729 16059 6078869 2024-02-26 21:26:48.532 2024-02-26 21:26:48.532 2100 FEE 439875 21116 6078870 2024-02-26 21:26:48.532 2024-02-26 21:26:48.532 18900 TIP 439875 4984 6078874 2024-02-26 21:27:25.39 2024-02-26 21:27:25.39 4000 FEE 439970 17526 6078875 2024-02-26 21:27:25.39 2024-02-26 21:27:25.39 36000 TIP 439970 787 6078891 2024-02-26 21:28:53.376 2024-02-26 21:28:53.376 100 FEE 439979 10484 6078892 2024-02-26 21:28:53.376 2024-02-26 21:28:53.376 900 TIP 439979 986 6078897 2024-02-26 21:29:00.349 2024-02-26 21:29:00.349 100 FEE 439979 16149 6078898 2024-02-26 21:29:00.349 2024-02-26 21:29:00.349 900 TIP 439979 10016 6078899 2024-02-26 21:29:00.655 2024-02-26 21:29:00.655 100 FEE 439979 20775 6078900 2024-02-26 21:29:00.655 2024-02-26 21:29:00.655 900 TIP 439979 19381 6078918 2024-02-26 21:30:32.589 2024-02-26 21:30:32.589 1000 FEE 439993 20701 6078923 2024-02-26 21:30:57.249 2024-02-26 21:30:57.249 4000 FEE 439994 19435 6078515 2024-02-26 21:11:47.708 2024-02-26 21:11:47.708 18900 TIP 439844 14489 6078538 2024-02-26 21:11:50.661 2024-02-26 21:11:50.661 4200 FEE 439844 20015 6078539 2024-02-26 21:11:50.661 2024-02-26 21:11:50.661 37800 TIP 439844 18956 6078562 2024-02-26 21:11:52.933 2024-02-26 21:11:52.933 2100 FEE 439844 669 6078563 2024-02-26 21:11:52.933 2024-02-26 21:11:52.933 18900 TIP 439844 9351 6078566 2024-02-26 21:11:53.315 2024-02-26 21:11:53.315 2100 FEE 439844 17741 6078567 2024-02-26 21:11:53.315 2024-02-26 21:11:53.315 18900 TIP 439844 6419 6078591 2024-02-26 21:12:14.744 2024-02-26 21:12:14.744 2100 FEE 439854 18351 6078592 2024-02-26 21:12:14.744 2024-02-26 21:12:14.744 18900 TIP 439854 18393 6078599 2024-02-26 21:12:15.531 2024-02-26 21:12:15.531 2100 FEE 439854 4167 6078600 2024-02-26 21:12:15.531 2024-02-26 21:12:15.531 18900 TIP 439854 666 6078631 2024-02-26 21:12:25.182 2024-02-26 21:12:25.182 2100 FEE 439854 17817 6078632 2024-02-26 21:12:25.182 2024-02-26 21:12:25.182 18900 TIP 439854 18832 6078639 2024-02-26 21:12:54.597 2024-02-26 21:12:54.597 2100 FEE 439857 21575 6078640 2024-02-26 21:12:54.597 2024-02-26 21:12:54.597 18900 TIP 439857 20788 6078656 2024-02-26 21:13:22.659 2024-02-26 21:13:22.659 2100 FEE 439888 19966 6078657 2024-02-26 21:13:22.659 2024-02-26 21:13:22.659 18900 TIP 439888 3396 6078660 2024-02-26 21:13:22.967 2024-02-26 21:13:22.967 2100 FEE 439888 5776 6078661 2024-02-26 21:13:22.967 2024-02-26 21:13:22.967 18900 TIP 439888 15890 6078662 2024-02-26 21:13:23.688 2024-02-26 21:13:23.688 2100 FEE 439888 18454 6078663 2024-02-26 21:13:23.688 2024-02-26 21:13:23.688 18900 TIP 439888 20326 6078670 2024-02-26 21:13:24.454 2024-02-26 21:13:24.454 2100 FEE 439888 4570 6078671 2024-02-26 21:13:24.454 2024-02-26 21:13:24.454 18900 TIP 439888 20588 6078672 2024-02-26 21:13:27.782 2024-02-26 21:13:27.782 100000 FEE 439888 10056 6078673 2024-02-26 21:13:27.782 2024-02-26 21:13:27.782 900000 TIP 439888 20599 6078676 2024-02-26 21:13:36.363 2024-02-26 21:13:36.363 2100 FEE 439888 19863 6078677 2024-02-26 21:13:36.363 2024-02-26 21:13:36.363 18900 TIP 439888 900 6078680 2024-02-26 21:13:36.709 2024-02-26 21:13:36.709 2100 FEE 439888 664 6078681 2024-02-26 21:13:36.709 2024-02-26 21:13:36.709 18900 TIP 439888 1647 6078700 2024-02-26 21:13:38.369 2024-02-26 21:13:38.369 2100 FEE 439888 19038 6078701 2024-02-26 21:13:38.369 2024-02-26 21:13:38.369 18900 TIP 439888 20267 6078704 2024-02-26 21:13:38.796 2024-02-26 21:13:38.796 2100 FEE 439888 10311 6078705 2024-02-26 21:13:38.796 2024-02-26 21:13:38.796 18900 TIP 439888 16867 6078743 2024-02-26 21:15:02.147 2024-02-26 21:15:02.147 1000 FEE 439806 6749 6078744 2024-02-26 21:15:02.147 2024-02-26 21:15:02.147 9000 TIP 439806 3461 6078776 2024-02-26 21:19:36.684 2024-02-26 21:19:36.684 100 FEE 439946 15243 6078777 2024-02-26 21:19:36.684 2024-02-26 21:19:36.684 900 TIP 439946 12965 6078789 2024-02-26 21:21:12.545 2024-02-26 21:21:12.545 100 FEE 439850 12289 6078790 2024-02-26 21:21:12.545 2024-02-26 21:21:12.545 900 TIP 439850 20778 6078826 2024-02-26 21:23:04.28 2024-02-26 21:23:04.28 100 FEE 437768 722 6078827 2024-02-26 21:23:04.28 2024-02-26 21:23:04.28 900 TIP 437768 17526 6078830 2024-02-26 21:23:43.685 2024-02-26 21:23:43.685 6900 FEE 439966 19943 6078831 2024-02-26 21:23:43.685 2024-02-26 21:23:43.685 62100 TIP 439966 17094 6078840 2024-02-26 21:24:18.9 2024-02-26 21:24:18.9 1000 FEE 439978 18208 6078841 2024-02-26 21:24:21.418 2024-02-26 21:24:21.418 4200 FEE 439729 10771 6078842 2024-02-26 21:24:21.418 2024-02-26 21:24:21.418 37800 TIP 439729 16042 6078920 2024-02-26 21:30:51.38 2024-02-26 21:30:51.38 100 FEE 439985 20258 6078921 2024-02-26 21:30:51.38 2024-02-26 21:30:51.38 900 TIP 439985 1806 6078926 2024-02-26 21:31:34.61 2024-02-26 21:31:34.61 3300 FEE 439903 10013 6078927 2024-02-26 21:31:34.61 2024-02-26 21:31:34.61 29700 TIP 439903 5387 6078928 2024-02-26 21:31:44.909 2024-02-26 21:31:44.909 1000 FEE 439263 1729 6078929 2024-02-26 21:31:44.909 2024-02-26 21:31:44.909 9000 TIP 439263 19660 6078932 2024-02-26 21:31:45.249 2024-02-26 21:31:45.249 1000 FEE 439263 11516 6078933 2024-02-26 21:31:45.249 2024-02-26 21:31:45.249 9000 TIP 439263 11819 6078936 2024-02-26 21:31:45.392 2024-02-26 21:31:45.392 1000 FEE 439263 14381 6078937 2024-02-26 21:31:45.392 2024-02-26 21:31:45.392 9000 TIP 439263 9695 6078960 2024-02-26 21:31:48.37 2024-02-26 21:31:48.37 1000 FEE 439996 13378 6078970 2024-02-26 21:32:03.937 2024-02-26 21:32:03.937 1000 FEE 439990 19660 6078971 2024-02-26 21:32:03.937 2024-02-26 21:32:03.937 9000 TIP 439990 1261 6078983 2024-02-26 21:32:19.589 2024-02-26 21:32:19.589 500 FEE 439946 18774 6078984 2024-02-26 21:32:19.589 2024-02-26 21:32:19.589 4500 TIP 439946 18717 6078985 2024-02-26 21:33:03.926 2024-02-26 21:33:03.926 1000 FEE 439998 1845 6078990 2024-02-26 21:34:01.273 2024-02-26 21:34:01.273 1000 FEE 439999 9992 6078992 2024-02-26 21:34:32.543 2024-02-26 21:34:32.543 3300 FEE 439806 21349 6078993 2024-02-26 21:34:32.543 2024-02-26 21:34:32.543 29700 TIP 439806 21070 6078998 2024-02-26 21:36:04.262 2024-02-26 21:36:04.262 2100 FEE 439972 12291 6078999 2024-02-26 21:36:04.262 2024-02-26 21:36:04.262 18900 TIP 439972 20826 6079001 2024-02-26 21:36:23.906 2024-02-26 21:36:23.906 1000 FEE 440002 4654 6079024 2024-02-26 21:40:25.373 2024-02-26 21:40:25.373 100 FEE 439985 5578 6079025 2024-02-26 21:40:25.373 2024-02-26 21:40:25.373 900 TIP 439985 15060 6079036 2024-02-26 21:45:58.592 2024-02-26 21:45:58.592 10000 FEE 439895 16424 6079037 2024-02-26 21:45:58.592 2024-02-26 21:45:58.592 90000 TIP 439895 17172 6079038 2024-02-26 21:46:01.771 2024-02-26 21:46:01.771 1000 FEE 439443 7913 6079039 2024-02-26 21:46:01.771 2024-02-26 21:46:01.771 9000 TIP 439443 9695 6079040 2024-02-26 21:46:02.824 2024-02-26 21:46:02.824 1000 FEE 439443 13169 6079041 2024-02-26 21:46:02.824 2024-02-26 21:46:02.824 9000 TIP 439443 16660 6079054 2024-02-26 21:47:25.799 2024-02-26 21:47:25.799 1000 FEE 440008 4395 6079062 2024-02-26 21:47:52.521 2024-02-26 21:47:52.521 1100 FEE 439844 18529 6079063 2024-02-26 21:47:52.521 2024-02-26 21:47:52.521 9900 TIP 439844 15938 6079072 2024-02-26 21:47:53.517 2024-02-26 21:47:53.517 1100 FEE 439844 5017 6079073 2024-02-26 21:47:53.517 2024-02-26 21:47:53.517 9900 TIP 439844 2596 6079097 2024-02-26 21:48:45.307 2024-02-26 21:48:45.307 1100 FEE 439729 13361 6079098 2024-02-26 21:48:45.307 2024-02-26 21:48:45.307 9900 TIP 439729 2775 6079103 2024-02-26 21:48:49.301 2024-02-26 21:48:49.301 1100 FEE 439946 18529 6079104 2024-02-26 21:48:49.301 2024-02-26 21:48:49.301 9900 TIP 439946 4624 6079105 2024-02-26 21:48:49.491 2024-02-26 21:48:49.491 1100 FEE 439946 16747 6079106 2024-02-26 21:48:49.491 2024-02-26 21:48:49.491 9900 TIP 439946 20430 6079128 2024-02-26 21:53:32.716 2024-02-26 21:53:32.716 3000 FEE 435327 20901 6079129 2024-02-26 21:53:32.716 2024-02-26 21:53:32.716 27000 TIP 435327 16505 6079133 2024-02-26 21:54:14.336 2024-02-26 21:54:14.336 1000 FEE 440019 827 6079152 2024-02-26 21:58:39.123 2024-02-26 21:58:39.123 1000 FEE 438397 8380 6079153 2024-02-26 21:58:39.123 2024-02-26 21:58:39.123 9000 TIP 438397 16447 6079162 2024-02-26 22:00:06.607 2024-02-26 22:00:06.607 30000 FEE 429400 1389 6079163 2024-02-26 22:00:06.607 2024-02-26 22:00:06.607 270000 TIP 429400 18473 6079174 2024-02-26 22:01:13.478 2024-02-26 22:01:13.478 500 FEE 440011 11866 6079175 2024-02-26 22:01:13.478 2024-02-26 22:01:13.478 4500 TIP 440011 672 6079203 2024-02-26 22:01:32.723 2024-02-26 22:01:32.723 2100 FEE 439721 9159 6079204 2024-02-26 22:01:32.723 2024-02-26 22:01:32.723 18900 TIP 439721 19878 6079220 2024-02-26 22:03:40.203 2024-02-26 22:03:40.203 1000 FEE 440024 20849 6079260 2024-02-26 22:09:03.554 2024-02-26 22:09:03.554 4000 FEE 439822 822 6079261 2024-02-26 22:09:03.554 2024-02-26 22:09:03.554 36000 TIP 439822 859 6079266 2024-02-26 22:09:39.119 2024-02-26 22:09:39.119 3400 FEE 438065 6798 6079267 2024-02-26 22:09:39.119 2024-02-26 22:09:39.119 30600 TIP 438065 5497 6079272 2024-02-26 22:10:08.294 2024-02-26 22:10:08.294 5000 FEE 439810 16879 6079273 2024-02-26 22:10:08.294 2024-02-26 22:10:08.294 45000 TIP 439810 20613 6079274 2024-02-26 22:10:14.93 2024-02-26 22:10:14.93 1000 FEE 440027 2098 6079283 2024-02-26 22:11:09.09 2024-02-26 22:11:09.09 5000 FEE 439866 3342 6079284 2024-02-26 22:11:09.09 2024-02-26 22:11:09.09 45000 TIP 439866 1624 6079315 2024-02-26 22:14:02.14 2024-02-26 22:14:02.14 0 FEE 440032 7587 6079319 2024-02-26 22:14:15.8 2024-02-26 22:14:15.8 2100 FEE 439992 21393 6079320 2024-02-26 22:14:15.8 2024-02-26 22:14:15.8 18900 TIP 439992 909 6079323 2024-02-26 22:14:42.968 2024-02-26 22:14:42.968 1000 FEE 440036 19512 6079332 2024-02-26 22:15:30.049 2024-02-26 22:15:30.049 1000 FEE 439987 19105 6079333 2024-02-26 22:15:30.049 2024-02-26 22:15:30.049 9000 TIP 439987 19570 6079370 2024-02-26 22:19:41.381 2024-02-26 22:19:41.381 2100 FEE 439844 21026 6079371 2024-02-26 22:19:41.381 2024-02-26 22:19:41.381 18900 TIP 439844 10283 6079425 2024-02-26 22:26:26.512 2024-02-26 22:26:26.512 2100 FEE 439610 12102 6079426 2024-02-26 22:26:26.512 2024-02-26 22:26:26.512 18900 TIP 439610 16753 6079447 2024-02-26 22:30:12.598 2024-02-26 22:30:12.598 2100 FEE 431293 12965 6079448 2024-02-26 22:30:12.598 2024-02-26 22:30:12.598 18900 TIP 431293 2111 6079471 2024-02-26 22:33:32.54 2024-02-26 22:33:32.54 1000 FEE 439844 1480 6079472 2024-02-26 22:33:32.54 2024-02-26 22:33:32.54 9000 TIP 439844 2514 6078689 2024-02-26 21:13:37.367 2024-02-26 21:13:37.367 18900 TIP 439888 5852 6078698 2024-02-26 21:13:38.226 2024-02-26 21:13:38.226 2100 FEE 439888 12122 6078699 2024-02-26 21:13:38.226 2024-02-26 21:13:38.226 18900 TIP 439888 9356 6078714 2024-02-26 21:13:39.627 2024-02-26 21:13:39.627 2100 FEE 439888 19852 6078715 2024-02-26 21:13:39.627 2024-02-26 21:13:39.627 18900 TIP 439888 21344 6078726 2024-02-26 21:13:58.767 2024-02-26 21:13:58.767 2100 FEE 439898 651 6078727 2024-02-26 21:13:58.767 2024-02-26 21:13:58.767 18900 TIP 439898 14906 6078735 2024-02-26 21:14:54.779 2024-02-26 21:14:54.779 1000 FEE 439729 7869 6078736 2024-02-26 21:14:54.779 2024-02-26 21:14:54.779 9000 TIP 439729 16858 6078739 2024-02-26 21:15:00.125 2024-02-26 21:15:00.125 1000 FEE 439315 2285 6078740 2024-02-26 21:15:00.125 2024-02-26 21:15:00.125 9000 TIP 439315 11996 6078795 2024-02-26 21:21:51.316 2024-02-26 21:21:51.316 7700 FEE 439145 746 6078796 2024-02-26 21:21:51.316 2024-02-26 21:21:51.316 69300 TIP 439145 1803 6078799 2024-02-26 21:21:52.049 2024-02-26 21:21:52.049 7700 FEE 439145 16684 6078800 2024-02-26 21:21:52.049 2024-02-26 21:21:52.049 69300 TIP 439145 18209 6078803 2024-02-26 21:21:56.824 2024-02-26 21:21:56.824 7700 FEE 439137 21037 6078804 2024-02-26 21:21:56.824 2024-02-26 21:21:56.824 69300 TIP 439137 730 6078807 2024-02-26 21:21:57.169 2024-02-26 21:21:57.169 7700 FEE 439137 11329 6078808 2024-02-26 21:21:57.169 2024-02-26 21:21:57.169 69300 TIP 439137 19036 6078809 2024-02-26 21:21:57.334 2024-02-26 21:21:57.334 7700 FEE 439137 12188 6078810 2024-02-26 21:21:57.334 2024-02-26 21:21:57.334 69300 TIP 439137 21523 6078811 2024-02-26 21:21:57.496 2024-02-26 21:21:57.496 7700 FEE 439137 20775 6078812 2024-02-26 21:21:57.496 2024-02-26 21:21:57.496 69300 TIP 439137 16789 6078813 2024-02-26 21:21:57.67 2024-02-26 21:21:57.67 7700 FEE 439137 18138 6078814 2024-02-26 21:21:57.67 2024-02-26 21:21:57.67 69300 TIP 439137 1272 6078838 2024-02-26 21:24:17.112 2024-02-26 21:24:17.112 7700 FEE 439895 1003 6078839 2024-02-26 21:24:17.112 2024-02-26 21:24:17.112 69300 TIP 439895 9307 6078844 2024-02-26 21:24:27.822 2024-02-26 21:24:27.822 100 FEE 437249 20183 6078845 2024-02-26 21:24:27.822 2024-02-26 21:24:27.822 900 TIP 437249 16684 6078858 2024-02-26 21:24:56.673 2024-02-26 21:24:56.673 1000 FEE 439982 739 6078862 2024-02-26 21:25:46.293 2024-02-26 21:25:46.293 1000 FEE 439983 20430 6078864 2024-02-26 21:26:08.512 2024-02-26 21:26:08.512 3300 FEE 439974 19906 6078865 2024-02-26 21:26:08.512 2024-02-26 21:26:08.512 29700 TIP 439974 16230 6078885 2024-02-26 21:28:52.542 2024-02-26 21:28:52.542 100 FEE 439979 21506 6078886 2024-02-26 21:28:52.542 2024-02-26 21:28:52.542 900 TIP 439979 21090 6078893 2024-02-26 21:28:59.653 2024-02-26 21:28:59.653 100 FEE 439979 11240 6078894 2024-02-26 21:28:59.653 2024-02-26 21:28:59.653 900 TIP 439979 8569 6078910 2024-02-26 21:30:21.793 2024-02-26 21:30:21.793 3300 FEE 439973 974 6078911 2024-02-26 21:30:21.793 2024-02-26 21:30:21.793 29700 TIP 439973 9078 6078946 2024-02-26 21:31:46.043 2024-02-26 21:31:46.043 1000 FEE 439263 985 6078947 2024-02-26 21:31:46.043 2024-02-26 21:31:46.043 9000 TIP 439263 17046 6078952 2024-02-26 21:31:46.475 2024-02-26 21:31:46.475 1000 FEE 439263 15271 6078953 2024-02-26 21:31:46.475 2024-02-26 21:31:46.475 9000 TIP 439263 19158 6078962 2024-02-26 21:32:03.22 2024-02-26 21:32:03.22 1000 FEE 439990 15521 6078963 2024-02-26 21:32:03.22 2024-02-26 21:32:03.22 9000 TIP 439990 19512 6078968 2024-02-26 21:32:03.742 2024-02-26 21:32:03.742 1000 FEE 439990 649 6078969 2024-02-26 21:32:03.742 2024-02-26 21:32:03.742 9000 TIP 439990 21446 6078979 2024-02-26 21:32:05.222 2024-02-26 21:32:05.222 1000 FEE 439990 19842 6078980 2024-02-26 21:32:05.222 2024-02-26 21:32:05.222 9000 TIP 439990 15556 6078994 2024-02-26 21:34:34.469 2024-02-26 21:34:34.469 3300 FEE 439876 7809 6078995 2024-02-26 21:34:34.469 2024-02-26 21:34:34.469 29700 TIP 439876 21247 6079022 2024-02-26 21:40:09.015 2024-02-26 21:40:09.015 1000 FEE 439753 4958 6079023 2024-02-26 21:40:09.015 2024-02-26 21:40:09.015 9000 TIP 439753 17446 6079049 2024-02-26 21:46:09.335 2024-02-26 21:46:09.335 9000 FEE 440007 770 6079050 2024-02-26 21:46:09.335 2024-02-26 21:46:09.335 81000 TIP 440007 6361 6079074 2024-02-26 21:47:53.711 2024-02-26 21:47:53.711 1100 FEE 439844 16177 6079075 2024-02-26 21:47:53.711 2024-02-26 21:47:53.711 9900 TIP 439844 18139 6079078 2024-02-26 21:47:54.074 2024-02-26 21:47:54.074 1100 FEE 439844 17166 6079079 2024-02-26 21:47:54.074 2024-02-26 21:47:54.074 9900 TIP 439844 20972 6079110 2024-02-26 21:49:05.123 2024-02-26 21:49:05.123 1000 FEE 440011 21480 6079113 2024-02-26 21:50:31.233 2024-02-26 21:50:31.233 1000 FEE 440013 20183 6079116 2024-02-26 21:51:52.443 2024-02-26 21:51:52.443 800 FEE 439822 1286 6079117 2024-02-26 21:51:52.443 2024-02-26 21:51:52.443 7200 TIP 439822 17411 6079118 2024-02-26 21:52:00.486 2024-02-26 21:52:00.486 1000 FEE 440015 9551 6079134 2024-02-26 21:54:15.8 2024-02-26 21:54:15.8 20000 FEE 439905 2342 6079135 2024-02-26 21:54:15.8 2024-02-26 21:54:15.8 180000 TIP 439905 18945 6079136 2024-02-26 21:54:32.745 2024-02-26 21:54:32.745 5000 FEE 439907 15806 6079137 2024-02-26 21:54:32.745 2024-02-26 21:54:32.745 45000 TIP 439907 19615 6079157 2024-02-26 21:59:05.169 2024-02-26 21:59:05.169 1000 FEE 439343 11648 6079158 2024-02-26 21:59:05.169 2024-02-26 21:59:05.169 9000 TIP 439343 7668 6078706 2024-02-26 21:13:38.902 2024-02-26 21:13:38.902 2100 FEE 439888 19652 6078707 2024-02-26 21:13:38.902 2024-02-26 21:13:38.902 18900 TIP 439888 18426 6078746 2024-02-26 21:15:05.846 2024-02-26 21:15:05.846 1000 FEE 439390 19812 6078747 2024-02-26 21:15:05.846 2024-02-26 21:15:05.846 9000 TIP 439390 21275 6078767 2024-02-26 21:18:32.206 2024-02-26 21:18:32.206 4000 FEE 439658 18583 6078768 2024-02-26 21:18:32.206 2024-02-26 21:18:32.206 36000 TIP 439658 17124 6078791 2024-02-26 21:21:16.443 2024-02-26 21:21:16.443 1000 FEE 439972 17321 6078821 2024-02-26 21:22:45.041 2024-02-26 21:22:45.041 1000 FEE 439975 10818 6078848 2024-02-26 21:24:34.243 2024-02-26 21:24:34.243 1000 FEE 439980 21417 6078849 2024-02-26 21:24:41.56 2024-02-26 21:24:41.56 1000 FEE 439981 18262 6078871 2024-02-26 21:26:54.042 2024-02-26 21:26:54.042 1000 FEE 439985 15094 6078872 2024-02-26 21:27:01.01 2024-02-26 21:27:01.01 1000 FEE 439986 20706 6078879 2024-02-26 21:28:18.317 2024-02-26 21:28:18.317 1000 FEE 439978 10273 6078880 2024-02-26 21:28:18.317 2024-02-26 21:28:18.317 9000 TIP 439978 1549 6078882 2024-02-26 21:28:36.673 2024-02-26 21:28:36.673 10000 FEE 439990 21303 6078901 2024-02-26 21:29:01.033 2024-02-26 21:29:01.033 100 FEE 439979 6360 6078902 2024-02-26 21:29:01.033 2024-02-26 21:29:01.033 900 TIP 439979 8796 6078905 2024-02-26 21:29:53.136 2024-02-26 21:29:53.136 21000 FEE 439992 2525 6078914 2024-02-26 21:30:22.469 2024-02-26 21:30:22.469 3300 FEE 439959 7869 6078915 2024-02-26 21:30:22.469 2024-02-26 21:30:22.469 29700 TIP 439959 21139 6078930 2024-02-26 21:31:45.095 2024-02-26 21:31:45.095 1000 FEE 439263 18412 6078931 2024-02-26 21:31:45.095 2024-02-26 21:31:45.095 9000 TIP 439263 18412 6078934 2024-02-26 21:31:45.32 2024-02-26 21:31:45.32 1000 FEE 439263 20775 6078935 2024-02-26 21:31:45.32 2024-02-26 21:31:45.32 9000 TIP 439263 20663 6078958 2024-02-26 21:31:46.871 2024-02-26 21:31:46.871 1000 FEE 439263 3400 6078959 2024-02-26 21:31:46.871 2024-02-26 21:31:46.871 9000 TIP 439263 18678 6079056 2024-02-26 21:47:52.25 2024-02-26 21:47:52.25 1100 FEE 439844 1454 6079057 2024-02-26 21:47:52.25 2024-02-26 21:47:52.25 9900 TIP 439844 19524 6079058 2024-02-26 21:47:52.272 2024-02-26 21:47:52.272 1100 FEE 439844 624 6079059 2024-02-26 21:47:52.272 2024-02-26 21:47:52.272 9900 TIP 439844 18524 6079068 2024-02-26 21:47:53.142 2024-02-26 21:47:53.142 1100 FEE 439844 11798 6079069 2024-02-26 21:47:53.142 2024-02-26 21:47:53.142 9900 TIP 439844 20280 6079082 2024-02-26 21:48:24.166 2024-02-26 21:48:24.166 1100 FEE 439844 4102 6079083 2024-02-26 21:48:24.166 2024-02-26 21:48:24.166 9900 TIP 439844 1237 6079084 2024-02-26 21:48:24.309 2024-02-26 21:48:24.309 1100 FEE 439844 21021 6079085 2024-02-26 21:48:24.309 2024-02-26 21:48:24.309 9900 TIP 439844 5829 6079089 2024-02-26 21:48:43.317 2024-02-26 21:48:43.317 1100 FEE 439822 21136 6079090 2024-02-26 21:48:43.317 2024-02-26 21:48:43.317 9900 TIP 439822 17944 6079091 2024-02-26 21:48:43.452 2024-02-26 21:48:43.452 1100 FEE 439822 641 6079092 2024-02-26 21:48:43.452 2024-02-26 21:48:43.452 9900 TIP 439822 6555 6079095 2024-02-26 21:48:44.865 2024-02-26 21:48:44.865 1100 FEE 439806 14818 6079096 2024-02-26 21:48:44.865 2024-02-26 21:48:44.865 9900 TIP 439806 10283 6079111 2024-02-26 21:49:28.289 2024-02-26 21:49:28.289 1000 FEE 440012 17147 6079144 2024-02-26 21:56:22.535 2024-02-26 21:56:22.535 1000 FEE 439315 19154 6079145 2024-02-26 21:56:22.535 2024-02-26 21:56:22.535 9000 TIP 439315 3745 6079146 2024-02-26 21:56:25.667 2024-02-26 21:56:25.667 1000 FEE 440020 1567 6079168 2024-02-26 22:01:13.047 2024-02-26 22:01:13.047 500 FEE 440011 18170 6079169 2024-02-26 22:01:13.047 2024-02-26 22:01:13.047 4500 TIP 440011 18517 6079198 2024-02-26 22:01:29.61 2024-02-26 22:01:29.61 0 FEE 440022 5085 6079205 2024-02-26 22:01:36.604 2024-02-26 22:01:36.604 0 FEE 440022 10016 6079215 2024-02-26 22:02:41.156 2024-02-26 22:02:41.156 1000 FEE 440001 7668 6079216 2024-02-26 22:02:41.156 2024-02-26 22:02:41.156 9000 TIP 440001 19094 6079231 2024-02-26 22:04:50.39 2024-02-26 22:04:50.39 1000 FEE 439964 21349 6079232 2024-02-26 22:04:50.39 2024-02-26 22:04:50.39 9000 TIP 439964 19148 6079253 2024-02-26 22:08:49.247 2024-02-26 22:08:49.247 5000 FEE 438310 17217 6079254 2024-02-26 22:08:49.247 2024-02-26 22:08:49.247 45000 TIP 438310 19660 6079277 2024-02-26 22:10:49.708 2024-02-26 22:10:49.708 10000 FEE 440028 2029 6079291 2024-02-26 22:11:28.438 2024-02-26 22:11:28.438 5000 FEE 439435 17727 6079292 2024-02-26 22:11:28.438 2024-02-26 22:11:28.438 45000 TIP 439435 1213 6079297 2024-02-26 22:11:51.436 2024-02-26 22:11:51.436 5000 FEE 439146 7766 6079298 2024-02-26 22:11:51.436 2024-02-26 22:11:51.436 45000 TIP 439146 18291 6079314 2024-02-26 22:13:53.556 2024-02-26 22:13:53.556 1000 FEE 440034 21451 6079328 2024-02-26 22:15:27.748 2024-02-26 22:15:27.748 1000 FEE 440004 12516 6079329 2024-02-26 22:15:27.748 2024-02-26 22:15:27.748 9000 TIP 440004 3504 6079336 2024-02-26 22:15:48.997 2024-02-26 22:15:48.997 100 FEE 440036 1985 6079337 2024-02-26 22:15:48.997 2024-02-26 22:15:48.997 900 TIP 440036 8945 6079344 2024-02-26 22:15:58.13 2024-02-26 22:15:58.13 1000 FEE 440038 10013 6079346 2024-02-26 22:16:54.467 2024-02-26 22:16:54.467 1000 FEE 440039 11158 6079357 2024-02-26 22:17:46.738 2024-02-26 22:17:46.738 2100 FEE 439895 17984 6079358 2024-02-26 22:17:46.738 2024-02-26 22:17:46.738 18900 TIP 439895 21040 6079380 2024-02-26 22:19:42.513 2024-02-26 22:19:42.513 2100 FEE 439844 12261 6079381 2024-02-26 22:19:42.513 2024-02-26 22:19:42.513 18900 TIP 439844 20157 6079435 2024-02-26 22:27:00.348 2024-02-26 22:27:00.348 100000 FEE 440045 8059 6079458 2024-02-26 22:32:18.734 2024-02-26 22:32:18.734 2100 FEE 438363 18235 6079459 2024-02-26 22:32:18.734 2024-02-26 22:32:18.734 18900 TIP 438363 1738 6079462 2024-02-26 22:32:30.461 2024-02-26 22:32:30.461 2100 FEE 438780 17514 6079463 2024-02-26 22:32:30.461 2024-02-26 22:32:30.461 18900 TIP 438780 1631 6079473 2024-02-26 22:33:45.351 2024-02-26 22:33:45.351 2100 FEE 438084 10060 6079474 2024-02-26 22:33:45.351 2024-02-26 22:33:45.351 18900 TIP 438084 5387 6079493 2024-02-26 22:36:40.121 2024-02-26 22:36:40.121 1000 FEE 440053 8870 6079499 2024-02-26 22:40:43.389 2024-02-26 22:40:43.389 1000 FEE 440055 20504 6079514 2024-02-26 22:43:26.303 2024-02-26 22:43:26.303 1000 FEE 440059 7891 6079563 2024-02-26 22:49:56.85 2024-02-26 22:49:56.85 1000 FEE 440065 8059 6079575 2024-02-26 22:53:34.861 2024-02-26 22:53:34.861 4000 FEE 440056 4624 6079576 2024-02-26 22:53:34.861 2024-02-26 22:53:34.861 36000 TIP 440056 2431 6079581 2024-02-26 22:53:50.992 2024-02-26 22:53:50.992 1000 FEE 439917 1549 6079582 2024-02-26 22:53:50.992 2024-02-26 22:53:50.992 9000 TIP 439917 805 6079596 2024-02-26 22:54:06.85 2024-02-26 22:54:06.85 3300 FEE 440048 7418 6079597 2024-02-26 22:54:06.85 2024-02-26 22:54:06.85 29700 TIP 440048 8059 6079604 2024-02-26 22:54:08.357 2024-02-26 22:54:08.357 7700 FEE 440056 16680 6079605 2024-02-26 22:54:08.357 2024-02-26 22:54:08.357 69300 TIP 440056 18637 6079608 2024-02-26 22:54:15.754 2024-02-26 22:54:15.754 1000 FEE 439876 20302 6079609 2024-02-26 22:54:15.754 2024-02-26 22:54:15.754 9000 TIP 439876 652 6079637 2024-02-26 23:02:13.282 2024-02-26 23:02:13.282 2100 FEE 439950 8380 6079638 2024-02-26 23:02:13.282 2024-02-26 23:02:13.282 18900 TIP 439950 861 6079670 2024-02-26 23:11:32.6 2024-02-26 23:11:32.6 0 FEE 440079 17001 6079679 2024-02-26 23:12:43.647 2024-02-26 23:12:43.647 400 FEE 438842 11716 6079680 2024-02-26 23:12:43.647 2024-02-26 23:12:43.647 3600 TIP 438842 15196 6079710 2024-02-26 23:19:50.388 2024-02-26 23:19:50.388 27900 FEE 440056 17673 6079711 2024-02-26 23:19:50.388 2024-02-26 23:19:50.388 251100 TIP 440056 6260 6079748 2024-02-26 23:22:53.164 2024-02-26 23:22:53.164 10000 FEE 439917 1717 6079749 2024-02-26 23:22:53.164 2024-02-26 23:22:53.164 90000 TIP 439917 717 6079757 2024-02-26 23:23:29.306 2024-02-26 23:23:29.306 7700 FEE 440080 11314 6078780 2024-02-26 21:19:38.192 2024-02-26 21:19:38.192 1000 FEE 439969 825 6078801 2024-02-26 21:21:55.197 2024-02-26 21:21:55.197 200 FEE 439844 20153 6078802 2024-02-26 21:21:55.197 2024-02-26 21:21:55.197 1800 TIP 439844 19094 6078805 2024-02-26 21:21:56.983 2024-02-26 21:21:56.983 7700 FEE 439137 18412 6078806 2024-02-26 21:21:56.983 2024-02-26 21:21:56.983 69300 TIP 439137 18984 6078815 2024-02-26 21:21:57.854 2024-02-26 21:21:57.854 7700 FEE 439137 8713 6078816 2024-02-26 21:21:57.854 2024-02-26 21:21:57.854 69300 TIP 439137 20084 6078817 2024-02-26 21:21:57.999 2024-02-26 21:21:57.999 7700 FEE 439137 4989 6078818 2024-02-26 21:21:57.999 2024-02-26 21:21:57.999 69300 TIP 439137 12169 6078834 2024-02-26 21:23:54.544 2024-02-26 21:23:54.544 1000 FEE 439977 18984 6078843 2024-02-26 21:24:21.519 2024-02-26 21:24:21.519 1000 FEE 439979 638 6078852 2024-02-26 21:24:43.324 2024-02-26 21:24:43.324 7700 FEE 438737 8541 6078853 2024-02-26 21:24:43.324 2024-02-26 21:24:43.324 69300 TIP 438737 1784 6078881 2024-02-26 21:28:26.001 2024-02-26 21:28:26.001 10000 FEE 439989 15617 6078938 2024-02-26 21:31:45.589 2024-02-26 21:31:45.589 1000 FEE 439263 12289 6078939 2024-02-26 21:31:45.589 2024-02-26 21:31:45.589 9000 TIP 439263 19198 6078942 2024-02-26 21:31:45.838 2024-02-26 21:31:45.838 1000 FEE 439263 20586 6078943 2024-02-26 21:31:45.838 2024-02-26 21:31:45.838 9000 TIP 439263 9426 6078948 2024-02-26 21:31:46.108 2024-02-26 21:31:46.108 1000 FEE 439263 3440 6078949 2024-02-26 21:31:46.108 2024-02-26 21:31:46.108 9000 TIP 439263 12272 6078956 2024-02-26 21:31:46.774 2024-02-26 21:31:46.774 1000 FEE 439263 6515 6078957 2024-02-26 21:31:46.774 2024-02-26 21:31:46.774 9000 TIP 439263 21441 6078966 2024-02-26 21:32:03.564 2024-02-26 21:32:03.564 1000 FEE 439990 10818 6078967 2024-02-26 21:32:03.564 2024-02-26 21:32:03.564 9000 TIP 439990 7827 6078973 2024-02-26 21:32:04.216 2024-02-26 21:32:04.216 1000 FEE 439990 11670 6078974 2024-02-26 21:32:04.216 2024-02-26 21:32:04.216 9000 TIP 439990 20143 6078975 2024-02-26 21:32:04.884 2024-02-26 21:32:04.884 1000 FEE 439990 19848 6078976 2024-02-26 21:32:04.884 2024-02-26 21:32:04.884 9000 TIP 439990 13365 6079006 2024-02-26 21:36:52.928 2024-02-26 21:36:52.928 1000 FEE 439000 14472 6079007 2024-02-26 21:36:52.928 2024-02-26 21:36:52.928 9000 TIP 439000 11648 6079008 2024-02-26 21:37:02.969 2024-02-26 21:37:02.969 1000 FEE 440003 1221 6079018 2024-02-26 21:39:12.225 2024-02-26 21:39:12.225 5000 FEE 439990 15941 6079019 2024-02-26 21:39:12.225 2024-02-26 21:39:12.225 45000 TIP 439990 854 6079042 2024-02-26 21:46:03.746 2024-02-26 21:46:03.746 1000 FEE 439443 13169 6079043 2024-02-26 21:46:03.746 2024-02-26 21:46:03.746 9000 TIP 439443 19103 6079114 2024-02-26 21:50:44.385 2024-02-26 21:50:44.385 1000 FEE 440014 20596 6079147 2024-02-26 21:56:41.396 2024-02-26 21:56:41.396 1000 FEE 440021 6058 6079166 2024-02-26 22:01:12.868 2024-02-26 22:01:12.868 500 FEE 440011 19398 6079167 2024-02-26 22:01:12.868 2024-02-26 22:01:12.868 4500 TIP 440011 21522 6079190 2024-02-26 22:01:25.528 2024-02-26 22:01:25.528 2100 FEE 439806 2774 6079191 2024-02-26 22:01:25.528 2024-02-26 22:01:25.528 18900 TIP 439806 21539 6079206 2024-02-26 22:01:53.106 2024-02-26 22:01:53.106 0 FEE 440022 21014 6079217 2024-02-26 22:02:41.309 2024-02-26 22:02:41.309 1000 FEE 440001 2963 6079218 2024-02-26 22:02:41.309 2024-02-26 22:02:41.309 9000 TIP 440001 19809 6079249 2024-02-26 22:08:44.168 2024-02-26 22:08:44.168 5000 FEE 438331 17116 6079250 2024-02-26 22:08:44.168 2024-02-26 22:08:44.168 45000 TIP 438331 663 6079270 2024-02-26 22:10:08.086 2024-02-26 22:10:08.086 5000 FEE 439810 12721 6079271 2024-02-26 22:10:08.086 2024-02-26 22:10:08.086 45000 TIP 439810 2056 6079318 2024-02-26 22:14:10.127 2024-02-26 22:14:10.127 0 FEE 440029 20817 6079321 2024-02-26 22:14:28.081 2024-02-26 22:14:28.081 500 FEE 439116 20624 6079322 2024-02-26 22:14:28.081 2024-02-26 22:14:28.081 4500 TIP 439116 20585 6079334 2024-02-26 22:15:48.705 2024-02-26 22:15:48.705 100 FEE 440036 12245 6079335 2024-02-26 22:15:48.705 2024-02-26 22:15:48.705 900 TIP 440036 18837 6079340 2024-02-26 22:15:49.494 2024-02-26 22:15:49.494 100 FEE 440036 1505 6079341 2024-02-26 22:15:49.494 2024-02-26 22:15:49.494 900 TIP 440036 5497 6079353 2024-02-26 22:17:42.792 2024-02-26 22:17:42.792 2100 FEE 439948 21494 6079354 2024-02-26 22:17:42.792 2024-02-26 22:17:42.792 18900 TIP 439948 18507 6079376 2024-02-26 22:19:42.059 2024-02-26 22:19:42.059 2100 FEE 439844 2039 6079377 2024-02-26 22:19:42.059 2024-02-26 22:19:42.059 18900 TIP 439844 16124 6079383 2024-02-26 22:20:41.58 2024-02-26 22:20:41.58 1000 FEE 439958 4027 6079384 2024-02-26 22:20:41.58 2024-02-26 22:20:41.58 9000 TIP 439958 5825 6079440 2024-02-26 22:28:49.781 2024-02-26 22:28:49.781 1000 FEE 440046 20163 6079441 2024-02-26 22:28:51.116 2024-02-26 22:28:51.116 6900 FEE 440035 617 6079442 2024-02-26 22:28:51.116 2024-02-26 22:28:51.116 62100 TIP 440035 2039 6079449 2024-02-26 22:30:36.288 2024-02-26 22:30:36.288 1000 FEE 440048 16406 6079460 2024-02-26 22:32:25.906 2024-02-26 22:32:25.906 100 FEE 438780 19996 6079461 2024-02-26 22:32:25.906 2024-02-26 22:32:25.906 900 TIP 438780 21033 6079467 2024-02-26 22:33:02.689 2024-02-26 22:33:02.689 0 FEE 440050 20754 6079468 2024-02-26 22:33:02.855 2024-02-26 22:33:02.855 1000 FEE 439844 21541 6079469 2024-02-26 22:33:02.855 2024-02-26 22:33:02.855 9000 TIP 439844 1428 6079502 2024-02-26 22:41:41.217 2024-02-26 22:41:41.217 2100 FEE 438954 20849 6079503 2024-02-26 22:41:41.217 2024-02-26 22:41:41.217 18900 TIP 438954 836 6079535 2024-02-26 22:48:01.275 2024-02-26 22:48:01.275 2100 FEE 440004 11329 6079536 2024-02-26 22:48:01.275 2024-02-26 22:48:01.275 18900 TIP 440004 18372 6079566 2024-02-26 22:51:19.055 2024-02-26 22:51:19.055 1000 FEE 440066 19398 6079579 2024-02-26 22:53:46.643 2024-02-26 22:53:46.643 1000 FEE 439806 16834 6079580 2024-02-26 22:53:46.643 2024-02-26 22:53:46.643 9000 TIP 439806 17157 6079602 2024-02-26 22:54:08.249 2024-02-26 22:54:08.249 7700 FEE 440056 7659 6079603 2024-02-26 22:54:08.249 2024-02-26 22:54:08.249 69300 TIP 440056 19613 6079610 2024-02-26 22:54:18.334 2024-02-26 22:54:18.334 1000 FEE 440069 8400 6078825 2024-02-26 21:23:04.032 2024-02-26 21:23:04.032 1000 STREAM 141924 16858 6078835 2024-02-26 21:24:04.028 2024-02-26 21:24:04.028 1000 STREAM 141924 12819 6078859 2024-02-26 21:25:04.054 2024-02-26 21:25:04.054 1000 STREAM 141924 8289 6078863 2024-02-26 21:26:04.055 2024-02-26 21:26:04.055 1000 STREAM 141924 20912 6078873 2024-02-26 21:27:04.078 2024-02-26 21:27:04.078 1000 STREAM 141924 656 6078878 2024-02-26 21:28:04.07 2024-02-26 21:28:04.07 1000 STREAM 141924 20912 6078972 2024-02-26 21:32:04.123 2024-02-26 21:32:04.123 1000 STREAM 141924 21356 6078991 2024-02-26 21:34:04.135 2024-02-26 21:34:04.135 1000 STREAM 141924 1114 6078997 2024-02-26 21:36:04.153 2024-02-26 21:36:04.153 1000 STREAM 141924 18664 6079009 2024-02-26 21:37:04.146 2024-02-26 21:37:04.146 1000 STREAM 141924 19036 6079017 2024-02-26 21:39:04.179 2024-02-26 21:39:04.179 1000 STREAM 141924 18453 6079021 2024-02-26 21:40:04.21 2024-02-26 21:40:04.21 1000 STREAM 141924 18956 6079028 2024-02-26 21:41:04.179 2024-02-26 21:41:04.179 1000 STREAM 141924 19652 6079029 2024-02-26 21:42:04.199 2024-02-26 21:42:04.199 1000 STREAM 141924 16406 6079034 2024-02-26 21:44:04.207 2024-02-26 21:44:04.207 1000 STREAM 141924 9833 6079035 2024-02-26 21:45:04.22 2024-02-26 21:45:04.22 1000 STREAM 141924 6471 6079044 2024-02-26 21:46:04.216 2024-02-26 21:46:04.216 1000 STREAM 141924 16542 6079080 2024-02-26 21:48:04.219 2024-02-26 21:48:04.219 1000 STREAM 141924 20152 6079112 2024-02-26 21:50:02.249 2024-02-26 21:50:02.249 1000 STREAM 141924 9433 6079140 2024-02-26 21:55:02.279 2024-02-26 21:55:02.279 1000 STREAM 141924 3683 6079151 2024-02-26 21:58:02.273 2024-02-26 21:58:02.273 1000 STREAM 141924 17209 6079161 2024-02-26 22:00:02.297 2024-02-26 22:00:02.297 1000 STREAM 141924 11789 6079164 2024-02-26 22:01:02.298 2024-02-26 22:01:02.298 1000 STREAM 141924 917 6079219 2024-02-26 22:03:02.289 2024-02-26 22:03:02.289 1000 STREAM 141924 5565 6079223 2024-02-26 22:04:04.293 2024-02-26 22:04:04.293 1000 STREAM 141924 1428 6079246 2024-02-26 22:06:02.28 2024-02-26 22:06:02.28 1000 STREAM 141924 18470 6079248 2024-02-26 22:08:02.299 2024-02-26 22:08:02.299 1000 STREAM 141924 1712 6079259 2024-02-26 22:09:02.311 2024-02-26 22:09:02.311 1000 STREAM 141924 15239 6079269 2024-02-26 22:10:02.326 2024-02-26 22:10:02.326 1000 STREAM 141924 1772 6079316 2024-02-26 22:14:02.338 2024-02-26 22:14:02.338 1000 STREAM 141924 14657 6079345 2024-02-26 22:16:02.348 2024-02-26 22:16:02.348 1000 STREAM 141924 18736 6079347 2024-02-26 22:17:02.354 2024-02-26 22:17:02.354 1000 STREAM 141924 15858 6078903 2024-02-26 21:29:04.098 2024-02-26 21:29:04.098 1000 STREAM 141924 21591 6078907 2024-02-26 21:30:04.106 2024-02-26 21:30:04.106 1000 STREAM 141924 17106 6078925 2024-02-26 21:31:04.115 2024-02-26 21:31:04.115 1000 STREAM 141924 3371 6078986 2024-02-26 21:33:04.123 2024-02-26 21:33:04.123 1000 STREAM 141924 2029 6078996 2024-02-26 21:35:04.145 2024-02-26 21:35:04.145 1000 STREAM 141924 1316 6079015 2024-02-26 21:38:04.143 2024-02-26 21:38:04.143 1000 STREAM 141924 13365 6079031 2024-02-26 21:43:04.203 2024-02-26 21:43:04.203 1000 STREAM 141924 18830 6079053 2024-02-26 21:47:02.223 2024-02-26 21:47:02.223 1000 STREAM 141924 18704 6079109 2024-02-26 21:49:02.259 2024-02-26 21:49:02.259 1000 STREAM 141924 18525 6079115 2024-02-26 21:51:02.238 2024-02-26 21:51:02.238 1000 STREAM 141924 10493 6079119 2024-02-26 21:52:04.24 2024-02-26 21:52:04.24 1000 STREAM 141924 21472 6079124 2024-02-26 21:53:02.238 2024-02-26 21:53:02.238 1000 STREAM 141924 3717 6079132 2024-02-26 21:54:04.255 2024-02-26 21:54:04.255 1000 STREAM 141924 20602 6079141 2024-02-26 21:56:02.265 2024-02-26 21:56:02.265 1000 STREAM 141924 9992 6079148 2024-02-26 21:57:02.269 2024-02-26 21:57:02.269 1000 STREAM 141924 20564 6079156 2024-02-26 21:59:02.277 2024-02-26 21:59:02.277 1000 STREAM 141924 1010 6079207 2024-02-26 22:02:02.285 2024-02-26 22:02:02.285 1000 STREAM 141924 6741 6079239 2024-02-26 22:05:02.297 2024-02-26 22:05:02.297 1000 STREAM 141924 2543 6079247 2024-02-26 22:07:02.299 2024-02-26 22:07:02.299 1000 STREAM 141924 20258 6079282 2024-02-26 22:11:02.322 2024-02-26 22:11:02.322 1000 STREAM 141924 997 6079299 2024-02-26 22:12:02.336 2024-02-26 22:12:02.336 1000 STREAM 141924 14168 6079311 2024-02-26 22:13:02.321 2024-02-26 22:13:02.321 1000 STREAM 141924 12708 6079324 2024-02-26 22:15:02.337 2024-02-26 22:15:02.337 1000 STREAM 141924 8095 6079360 2024-02-26 22:18:02.366 2024-02-26 22:18:02.366 1000 STREAM 141924 1985 6079361 2024-02-26 22:19:02.37 2024-02-26 22:19:02.37 1000 STREAM 141924 17514 6079382 2024-02-26 22:20:02.369 2024-02-26 22:20:02.369 1000 STREAM 141924 1173 6079389 2024-02-26 22:21:02.388 2024-02-26 22:21:02.388 1000 STREAM 141924 15060 6079393 2024-02-26 22:22:04.385 2024-02-26 22:22:04.385 1000 STREAM 141924 11820 6079407 2024-02-26 22:24:02.375 2024-02-26 22:24:02.375 1000 STREAM 141924 20306 6079417 2024-02-26 22:26:02.409 2024-02-26 22:26:02.409 1000 STREAM 141924 16442 6079436 2024-02-26 22:27:02.405 2024-02-26 22:27:02.405 1000 STREAM 141924 12024 6079466 2024-02-26 22:33:02.455 2024-02-26 22:33:02.455 1000 STREAM 141924 9655 6079479 2024-02-26 22:34:02.446 2024-02-26 22:34:02.446 1000 STREAM 141924 15161 6079480 2024-02-26 22:35:02.45 2024-02-26 22:35:02.45 1000 STREAM 141924 9364 6079497 2024-02-26 22:39:02.451 2024-02-26 22:39:02.451 1000 STREAM 141924 16543 6079500 2024-02-26 22:41:02.469 2024-02-26 22:41:02.469 1000 STREAM 141924 19007 6079504 2024-02-26 22:42:02.521 2024-02-26 22:42:02.521 1000 STREAM 141924 4798 6079524 2024-02-26 22:45:02.492 2024-02-26 22:45:02.492 1000 STREAM 141924 19394 6079542 2024-02-26 22:49:02.505 2024-02-26 22:49:02.505 1000 STREAM 141924 1515 6079565 2024-02-26 22:51:02.507 2024-02-26 22:51:02.507 1000 STREAM 141924 1298 6079630 2024-02-26 23:00:02.573 2024-02-26 23:00:02.573 1000 STREAM 141924 17682 6079634 2024-02-26 23:01:02.58 2024-02-26 23:01:02.58 1000 STREAM 141924 20109 6079636 2024-02-26 23:02:02.564 2024-02-26 23:02:02.564 1000 STREAM 141924 15119 6079655 2024-02-26 23:03:02.548 2024-02-26 23:03:02.548 1000 STREAM 141924 738 6078924 2024-02-26 21:30:57.249 2024-02-26 21:30:57.249 36000 TIP 439994 6058 6078940 2024-02-26 21:31:45.674 2024-02-26 21:31:45.674 1000 FEE 439263 2013 6078941 2024-02-26 21:31:45.674 2024-02-26 21:31:45.674 9000 TIP 439263 20045 6078950 2024-02-26 21:31:46.337 2024-02-26 21:31:46.337 1000 FEE 439263 17592 6078951 2024-02-26 21:31:46.337 2024-02-26 21:31:46.337 9000 TIP 439263 2844 6078954 2024-02-26 21:31:46.617 2024-02-26 21:31:46.617 1000 FEE 439263 19096 6078955 2024-02-26 21:31:46.617 2024-02-26 21:31:46.617 9000 TIP 439263 20370 6078961 2024-02-26 21:32:00.665 2024-02-26 21:32:00.665 1000 FEE 439997 1745 6078989 2024-02-26 21:33:18.956 2024-02-26 21:33:18.956 0 FEE 439998 1596 6079000 2024-02-26 21:36:19.387 2024-02-26 21:36:19.387 1000 FEE 440001 8954 6079004 2024-02-26 21:36:51.611 2024-02-26 21:36:51.611 1000 FEE 439020 21612 6079005 2024-02-26 21:36:51.611 2024-02-26 21:36:51.611 9000 TIP 439020 1584 6079016 2024-02-26 21:38:16.363 2024-02-26 21:38:16.363 100000 FEE 440005 20120 6079051 2024-02-26 21:46:11.117 2024-02-26 21:46:11.117 4000 FEE 440004 1352 6079052 2024-02-26 21:46:11.117 2024-02-26 21:46:11.117 36000 TIP 440004 1162 6079060 2024-02-26 21:47:52.374 2024-02-26 21:47:52.374 1100 FEE 439844 19639 6079061 2024-02-26 21:47:52.374 2024-02-26 21:47:52.374 9900 TIP 439844 15762 6079066 2024-02-26 21:47:52.967 2024-02-26 21:47:52.967 1100 FEE 439844 9820 6079067 2024-02-26 21:47:52.967 2024-02-26 21:47:52.967 9900 TIP 439844 1836 6079070 2024-02-26 21:47:53.353 2024-02-26 21:47:53.353 1100 FEE 439844 16929 6079071 2024-02-26 21:47:53.353 2024-02-26 21:47:53.353 9900 TIP 439844 1046 6079086 2024-02-26 21:48:27.523 2024-02-26 21:48:27.523 10000 FEE 440010 19471 6079087 2024-02-26 21:48:43.149 2024-02-26 21:48:43.149 1100 FEE 439822 12930 6079088 2024-02-26 21:48:43.149 2024-02-26 21:48:43.149 9900 TIP 439822 19533 6079122 2024-02-26 21:52:38.017 2024-02-26 21:52:38.017 1000 FEE 440016 18774 6079127 2024-02-26 21:53:19.887 2024-02-26 21:53:19.887 10000 FEE 440018 21539 6079142 2024-02-26 21:56:16.842 2024-02-26 21:56:16.842 3400 FEE 439844 19864 6079143 2024-02-26 21:56:16.842 2024-02-26 21:56:16.842 30600 TIP 439844 746 6079149 2024-02-26 21:57:59.54 2024-02-26 21:57:59.54 3400 FEE 439451 697 6079150 2024-02-26 21:57:59.54 2024-02-26 21:57:59.54 30600 TIP 439451 11220 6079170 2024-02-26 22:01:13.167 2024-02-26 22:01:13.167 500 FEE 440011 14258 6079171 2024-02-26 22:01:13.167 2024-02-26 22:01:13.167 4500 TIP 440011 1577 6079178 2024-02-26 22:01:14.094 2024-02-26 22:01:14.094 500 FEE 440011 919 6079179 2024-02-26 22:01:14.094 2024-02-26 22:01:14.094 4500 TIP 440011 11522 6079180 2024-02-26 22:01:14.235 2024-02-26 22:01:14.235 500 FEE 440011 10728 6079181 2024-02-26 22:01:14.235 2024-02-26 22:01:14.235 4500 TIP 440011 1729 6079184 2024-02-26 22:01:14.941 2024-02-26 22:01:14.941 500 FEE 440011 12057 6079185 2024-02-26 22:01:14.941 2024-02-26 22:01:14.941 4500 TIP 440011 20464 6079188 2024-02-26 22:01:24.807 2024-02-26 22:01:24.807 2100 FEE 439844 21540 6079189 2024-02-26 22:01:24.807 2024-02-26 22:01:24.807 18900 TIP 439844 20826 6079194 2024-02-26 22:01:27.653 2024-02-26 22:01:27.653 2100 FEE 439917 18291 6079195 2024-02-26 22:01:27.653 2024-02-26 22:01:27.653 18900 TIP 439917 6765 6079237 2024-02-26 22:04:52.753 2024-02-26 22:04:52.753 1000 FEE 439964 19966 6079238 2024-02-26 22:04:52.753 2024-02-26 22:04:52.753 9000 TIP 439964 1472 6079244 2024-02-26 22:05:43.192 2024-02-26 22:05:43.192 100000 FEE 439966 20381 6079245 2024-02-26 22:05:43.192 2024-02-26 22:05:43.192 900000 TIP 439966 12821 6079251 2024-02-26 22:08:44.543 2024-02-26 22:08:44.543 1000 FEE 439822 20183 6079252 2024-02-26 22:08:44.543 2024-02-26 22:08:44.543 9000 TIP 439822 960 6079255 2024-02-26 22:08:55.97 2024-02-26 22:08:55.97 2100 FEE 439994 2844 6079256 2024-02-26 22:08:55.97 2024-02-26 22:08:55.97 18900 TIP 439994 19638 6079268 2024-02-26 22:10:01.328 2024-02-26 22:10:01.328 100000 FEE 440026 14449 6079289 2024-02-26 22:11:28.015 2024-02-26 22:11:28.015 5000 FEE 439435 17103 6079290 2024-02-26 22:11:28.015 2024-02-26 22:11:28.015 45000 TIP 439435 14045 6079300 2024-02-26 22:12:03.879 2024-02-26 22:12:03.879 500 FEE 439806 4175 6079301 2024-02-26 22:12:03.879 2024-02-26 22:12:03.879 4500 TIP 439806 10944 6079302 2024-02-26 22:12:04.174 2024-02-26 22:12:04.174 500 FEE 439806 14650 6079303 2024-02-26 22:12:04.174 2024-02-26 22:12:04.174 4500 TIP 439806 17953 6079304 2024-02-26 22:12:08.844 2024-02-26 22:12:08.844 500 FEE 439999 14688 6079305 2024-02-26 22:12:08.844 2024-02-26 22:12:08.844 4500 TIP 439999 5293 6079390 2024-02-26 22:21:10.049 2024-02-26 22:21:10.049 1000 FEE 440041 15806 6079415 2024-02-26 22:25:49.322 2024-02-26 22:25:49.322 500 FEE 439917 20706 6079416 2024-02-26 22:25:49.322 2024-02-26 22:25:49.322 4500 TIP 439917 15588 6079446 2024-02-26 22:30:09.521 2024-02-26 22:30:09.521 0 FEE 440047 18336 6079520 2024-02-26 22:44:55.374 2024-02-26 22:44:55.374 100 FEE 439990 14255 6079521 2024-02-26 22:44:55.374 2024-02-26 22:44:55.374 900 TIP 439990 17638 6079538 2024-02-26 22:48:27.073 2024-02-26 22:48:27.073 1000 FEE 440060 2583 6079539 2024-02-26 22:48:55.69 2024-02-26 22:48:55.69 2100 FEE 439390 7395 6079540 2024-02-26 22:48:55.69 2024-02-26 22:48:55.69 18900 TIP 439390 17217 6079545 2024-02-26 22:49:15.314 2024-02-26 22:49:15.314 1000 FEE 440062 6741 6079546 2024-02-26 22:49:15.358 2024-02-26 22:49:15.358 100 FEE 439946 1000 6079547 2024-02-26 22:49:15.358 2024-02-26 22:49:15.358 900 TIP 439946 16259 6079584 2024-02-26 22:54:06.261 2024-02-26 22:54:06.261 7700 FEE 440056 6260 6079585 2024-02-26 22:54:06.261 2024-02-26 22:54:06.261 69300 TIP 440056 18539 6079586 2024-02-26 22:54:06.344 2024-02-26 22:54:06.344 7700 FEE 440056 17103 6079587 2024-02-26 22:54:06.344 2024-02-26 22:54:06.344 69300 TIP 440056 2844 6079590 2024-02-26 22:54:06.53 2024-02-26 22:54:06.53 3300 FEE 440048 20326 6079591 2024-02-26 22:54:06.53 2024-02-26 22:54:06.53 29700 TIP 440048 20370 6079592 2024-02-26 22:54:06.588 2024-02-26 22:54:06.588 15400 FEE 440056 10409 6079593 2024-02-26 22:54:06.588 2024-02-26 22:54:06.588 138600 TIP 440056 14267 6079600 2024-02-26 22:54:08.163 2024-02-26 22:54:08.163 7700 FEE 440056 17392 6079601 2024-02-26 22:54:08.163 2024-02-26 22:54:08.163 69300 TIP 440056 17221 6079606 2024-02-26 22:54:08.626 2024-02-26 22:54:08.626 7700 FEE 440056 2039 6079607 2024-02-26 22:54:08.626 2024-02-26 22:54:08.626 69300 TIP 440056 3371 6079618 2024-02-26 22:56:27.703 2024-02-26 22:56:27.703 2100 FEE 440069 18409 6079619 2024-02-26 22:56:27.703 2024-02-26 22:56:27.703 18900 TIP 440069 11288 6079627 2024-02-26 22:59:10.123 2024-02-26 22:59:10.123 100000 FEE 440074 16649 6079628 2024-02-26 22:59:17.448 2024-02-26 22:59:17.448 4000 FEE 439895 20817 6079629 2024-02-26 22:59:17.448 2024-02-26 22:59:17.448 36000 TIP 439895 3371 6079635 2024-02-26 23:01:40.341 2024-02-26 23:01:40.341 77000 DONT_LIKE_THIS 440028 7809 6079683 2024-02-26 23:12:47.966 2024-02-26 23:12:47.966 400 FEE 438824 4062 6079684 2024-02-26 23:12:47.966 2024-02-26 23:12:47.966 3600 TIP 438824 2543 6079691 2024-02-26 23:14:04.636 2024-02-26 23:14:04.636 4200 FEE 439898 19924 6079692 2024-02-26 23:14:04.636 2024-02-26 23:14:04.636 37800 TIP 439898 18270 6079695 2024-02-26 23:14:51.132 2024-02-26 23:14:51.132 1100 FEE 440056 7966 6079696 2024-02-26 23:14:51.132 2024-02-26 23:14:51.132 9900 TIP 440056 10731 6079719 2024-02-26 23:20:02.294 2024-02-26 23:20:02.294 3300 FEE 440056 11192 6079720 2024-02-26 23:20:02.294 2024-02-26 23:20:02.294 29700 TIP 440056 21400 6079744 2024-02-26 23:21:53.152 2024-02-26 23:21:53.152 1000 DONT_LIKE_THIS 439426 6533 6079765 2024-02-26 23:23:59.106 2024-02-26 23:23:59.106 1000 FEE 439822 14404 6079012 2024-02-26 21:37:11.35 2024-02-26 21:37:11.35 2100 FEE 439895 20663 6079013 2024-02-26 21:37:11.35 2024-02-26 21:37:11.35 18900 TIP 439895 21441 6079020 2024-02-26 21:39:17.453 2024-02-26 21:39:17.453 1000 FEE 440006 16842 6079055 2024-02-26 21:47:47.183 2024-02-26 21:47:47.183 0 FEE 440008 9183 6079081 2024-02-26 21:48:19.382 2024-02-26 21:48:19.382 10000 FEE 440009 980 6079093 2024-02-26 21:48:44.606 2024-02-26 21:48:44.606 1100 FEE 439806 18068 6079094 2024-02-26 21:48:44.606 2024-02-26 21:48:44.606 9900 TIP 439806 15103 6079099 2024-02-26 21:48:45.498 2024-02-26 21:48:45.498 1100 FEE 439729 8095 6079100 2024-02-26 21:48:45.498 2024-02-26 21:48:45.498 9900 TIP 439729 9336 6079101 2024-02-26 21:48:49.133 2024-02-26 21:48:49.133 1100 FEE 439946 18393 6079102 2024-02-26 21:48:49.133 2024-02-26 21:48:49.133 9900 TIP 439946 12959 6079120 2024-02-26 21:52:24.61 2024-02-26 21:52:24.61 10100 FEE 439822 5160 6079121 2024-02-26 21:52:24.61 2024-02-26 21:52:24.61 90900 TIP 439822 2330 6079130 2024-02-26 21:53:54.596 2024-02-26 21:53:54.596 2100 FEE 439658 19601 6079131 2024-02-26 21:53:54.596 2024-02-26 21:53:54.596 18900 TIP 439658 21600 6079138 2024-02-26 21:54:39.474 2024-02-26 21:54:39.474 700 FEE 439999 19837 6079139 2024-02-26 21:54:39.474 2024-02-26 21:54:39.474 6300 TIP 439999 17446 6079165 2024-02-26 22:01:12.016 2024-02-26 22:01:12.016 1000 FEE 440022 20412 6079201 2024-02-26 22:01:31.448 2024-02-26 22:01:31.448 2100 FEE 439723 1705 6079202 2024-02-26 22:01:31.448 2024-02-26 22:01:31.448 18900 TIP 439723 21248 6079209 2024-02-26 22:02:40.037 2024-02-26 22:02:40.037 1000 FEE 440001 624 6079210 2024-02-26 22:02:40.037 2024-02-26 22:02:40.037 9000 TIP 440001 11820 6079211 2024-02-26 22:02:40.221 2024-02-26 22:02:40.221 1000 FEE 440001 21424 6079212 2024-02-26 22:02:40.221 2024-02-26 22:02:40.221 9000 TIP 440001 20704 6079225 2024-02-26 22:04:34.864 2024-02-26 22:04:34.864 1100 FEE 439563 11298 6079226 2024-02-26 22:04:34.864 2024-02-26 22:04:34.864 9900 TIP 439563 13927 6079229 2024-02-26 22:04:47.297 2024-02-26 22:04:47.297 1000 FEE 439964 17827 6079230 2024-02-26 22:04:47.297 2024-02-26 22:04:47.297 9000 TIP 439964 13921 6079257 2024-02-26 22:08:56.462 2024-02-26 22:08:56.462 10000 FEE 439729 16004 6079258 2024-02-26 22:08:56.462 2024-02-26 22:08:56.462 90000 TIP 439729 10352 6079264 2024-02-26 22:09:20.114 2024-02-26 22:09:20.114 2900 FEE 439729 6202 6079265 2024-02-26 22:09:20.114 2024-02-26 22:09:20.114 26100 TIP 439729 21091 6079288 2024-02-26 22:11:25.799 2024-02-26 22:11:25.799 1000 FEE 440030 711 6079312 2024-02-26 22:13:36.871 2024-02-26 22:13:36.871 10000 FEE 440032 11417 6079330 2024-02-26 22:15:28.987 2024-02-26 22:15:28.987 1000 FEE 439990 683 6079331 2024-02-26 22:15:28.987 2024-02-26 22:15:28.987 9000 TIP 439990 18663 6079342 2024-02-26 22:15:50.026 2024-02-26 22:15:50.026 100 FEE 440036 10352 6079343 2024-02-26 22:15:50.026 2024-02-26 22:15:50.026 900 TIP 440036 18072 6079362 2024-02-26 22:19:40.406 2024-02-26 22:19:40.406 2100 FEE 439844 14260 6079363 2024-02-26 22:19:40.406 2024-02-26 22:19:40.406 18900 TIP 439844 11450 6079364 2024-02-26 22:19:40.673 2024-02-26 22:19:40.673 2100 FEE 439844 9183 6079365 2024-02-26 22:19:40.673 2024-02-26 22:19:40.673 18900 TIP 439844 4798 6079394 2024-02-26 22:22:21.747 2024-02-26 22:22:21.747 5000 FEE 439443 21070 6079395 2024-02-26 22:22:21.747 2024-02-26 22:22:21.747 45000 TIP 439443 5444 6079411 2024-02-26 22:24:50.023 2024-02-26 22:24:50.023 1000 FEE 440043 19854 6079421 2024-02-26 22:26:20.651 2024-02-26 22:26:20.651 2100 FEE 439926 20190 6079422 2024-02-26 22:26:20.651 2024-02-26 22:26:20.651 18900 TIP 439926 21042 6079429 2024-02-26 22:26:43.901 2024-02-26 22:26:43.901 2500 FEE 439844 15200 6079430 2024-02-26 22:26:43.901 2024-02-26 22:26:43.901 22500 TIP 439844 11821 6079453 2024-02-26 22:31:25.857 2024-02-26 22:31:25.857 800 FEE 439966 20243 6079454 2024-02-26 22:31:25.857 2024-02-26 22:31:25.857 7200 TIP 439966 5306 6079457 2024-02-26 22:32:05.476 2024-02-26 22:32:05.476 1000 FEE 440049 13903 6079488 2024-02-26 22:35:34.69 2024-02-26 22:35:34.69 500 FEE 440004 8162 6079489 2024-02-26 22:35:34.69 2024-02-26 22:35:34.69 4500 TIP 440004 797 6079490 2024-02-26 22:35:48.548 2024-02-26 22:35:48.548 30000 FEE 440041 19531 6079491 2024-02-26 22:35:48.548 2024-02-26 22:35:48.548 270000 TIP 440041 2065 6079518 2024-02-26 22:44:14.759 2024-02-26 22:44:14.759 900 FEE 440004 21104 6079519 2024-02-26 22:44:14.759 2024-02-26 22:44:14.759 8100 TIP 440004 2338 6079552 2024-02-26 22:49:17.702 2024-02-26 22:49:17.702 100 FEE 439946 21395 6079553 2024-02-26 22:49:17.702 2024-02-26 22:49:17.702 900 TIP 439946 7395 6079568 2024-02-26 22:52:58.704 2024-02-26 22:52:58.704 1000 FEE 439822 20454 6079569 2024-02-26 22:52:58.704 2024-02-26 22:52:58.704 9000 TIP 439822 18637 6079572 2024-02-26 22:53:32.332 2024-02-26 22:53:32.332 1000 FEE 439844 20280 6079573 2024-02-26 22:53:32.332 2024-02-26 22:53:32.332 9000 TIP 439844 861 6079620 2024-02-26 22:56:47.116 2024-02-26 22:56:47.116 2100 FEE 440068 6268 6079621 2024-02-26 22:56:47.116 2024-02-26 22:56:47.116 18900 TIP 440068 18528 6079623 2024-02-26 22:57:10.668 2024-02-26 22:57:10.668 0 FEE 440072 21503 6079633 2024-02-26 23:00:58.261 2024-02-26 23:00:58.261 1000 FEE 440077 19263 6079649 2024-02-26 23:02:40.873 2024-02-26 23:02:40.873 2100 FEE 440074 896 6079650 2024-02-26 23:02:40.873 2024-02-26 23:02:40.873 18900 TIP 440074 629 6079656 2024-02-26 23:03:43.856 2024-02-26 23:03:43.856 1000 FEE 440078 9356 6079660 2024-02-26 23:05:00.565 2024-02-26 23:05:00.565 1000 FEE 439975 21514 6079661 2024-02-26 23:05:00.565 2024-02-26 23:05:00.565 9000 TIP 439975 19446 6079685 2024-02-26 23:12:48.955 2024-02-26 23:12:48.955 400 FEE 438792 20683 6079686 2024-02-26 23:12:48.955 2024-02-26 23:12:48.955 3600 TIP 438792 20990 6079736 2024-02-26 23:20:18.558 2024-02-26 23:20:18.558 500 FEE 440056 899 6079737 2024-02-26 23:20:18.558 2024-02-26 23:20:18.558 4500 TIP 440056 19303 6079738 2024-02-26 23:20:24.624 2024-02-26 23:20:24.624 0 FEE 440081 18262 6079742 2024-02-26 23:21:44.154 2024-02-26 23:21:44.154 2100 FEE 439426 19690 6079743 2024-02-26 23:21:44.154 2024-02-26 23:21:44.154 18900 TIP 439426 17275 6079755 2024-02-26 23:23:28.076 2024-02-26 23:23:28.076 7700 FEE 440080 5425 6079756 2024-02-26 23:23:28.076 2024-02-26 23:23:28.076 69300 TIP 440080 21275 6079779 2024-02-26 23:26:18.276 2024-02-26 23:26:18.276 2100 FEE 440056 1468 6079780 2024-02-26 23:26:18.276 2024-02-26 23:26:18.276 18900 TIP 440056 647 6079799 2024-02-26 23:29:40.582 2024-02-26 23:29:40.582 4000 FEE 440082 4819 6079800 2024-02-26 23:29:40.582 2024-02-26 23:29:40.582 36000 TIP 440082 8037 6079813 2024-02-26 23:33:03.867 2024-02-26 23:33:03.867 1000 FEE 440084 999 6079814 2024-02-26 23:33:03.867 2024-02-26 23:33:03.867 9000 TIP 440084 9183 6079827 2024-02-26 23:34:44.601 2024-02-26 23:34:44.601 6900 FEE 439315 17682 6079828 2024-02-26 23:34:44.601 2024-02-26 23:34:44.601 62100 TIP 439315 16789 6079833 2024-02-26 23:37:14.909 2024-02-26 23:37:14.909 1000 FEE 439729 1618 6079834 2024-02-26 23:37:14.909 2024-02-26 23:37:14.909 9000 TIP 439729 20555 6079836 2024-02-26 23:38:04.468 2024-02-26 23:38:04.468 1000 FEE 439443 10728 6079837 2024-02-26 23:38:04.468 2024-02-26 23:38:04.468 9000 TIP 439443 17291 6079867 2024-02-26 23:46:42.319 2024-02-26 23:46:42.319 1000 FEE 440092 16176 6079891 2024-02-26 23:51:19.917 2024-02-26 23:51:19.917 2100 FEE 440056 11491 6079892 2024-02-26 23:51:19.917 2024-02-26 23:51:19.917 18900 TIP 440056 7992 6079901 2024-02-26 23:53:27.742 2024-02-26 23:53:27.742 100 FEE 439905 861 6079902 2024-02-26 23:53:27.742 2024-02-26 23:53:27.742 900 TIP 439905 803 6079963 2024-02-26 23:56:08.824 2024-02-26 23:56:08.824 1000 FEE 440005 795 6079964 2024-02-26 23:56:08.824 2024-02-26 23:56:08.824 9000 TIP 440005 891 6079988 2024-02-26 23:57:22.294 2024-02-26 23:57:22.294 100 FEE 440095 628 6079159 2024-02-26 21:59:08.579 2024-02-26 21:59:08.579 3400 FEE 439142 20258 6079160 2024-02-26 21:59:08.579 2024-02-26 21:59:08.579 30600 TIP 439142 1802 6079176 2024-02-26 22:01:13.895 2024-02-26 22:01:13.895 500 FEE 440011 2195 6079177 2024-02-26 22:01:13.895 2024-02-26 22:01:13.895 4500 TIP 440011 9200 6079182 2024-02-26 22:01:14.553 2024-02-26 22:01:14.553 500 FEE 440011 4074 6079183 2024-02-26 22:01:14.553 2024-02-26 22:01:14.553 4500 TIP 440011 21562 6079192 2024-02-26 22:01:26.565 2024-02-26 22:01:26.565 2100 FEE 439822 17042 6079193 2024-02-26 22:01:26.565 2024-02-26 22:01:26.565 18900 TIP 439822 5519 6079199 2024-02-26 22:01:29.885 2024-02-26 22:01:29.885 2100 FEE 439895 5128 6079200 2024-02-26 22:01:29.885 2024-02-26 22:01:29.885 18900 TIP 439895 9494 6079208 2024-02-26 22:02:25.77 2024-02-26 22:02:25.77 1000 FEE 440023 6653 6079221 2024-02-26 22:03:43.973 2024-02-26 22:03:43.973 0 FEE 440023 20691 6079222 2024-02-26 22:03:45.528 2024-02-26 22:03:45.528 1000 FEE 440025 21248 6079227 2024-02-26 22:04:43.991 2024-02-26 22:04:43.991 500 FEE 439744 19512 6079228 2024-02-26 22:04:43.991 2024-02-26 22:04:43.991 4500 TIP 439744 4415 6079233 2024-02-26 22:04:51.271 2024-02-26 22:04:51.271 1000 FEE 439964 21573 6079234 2024-02-26 22:04:51.271 2024-02-26 22:04:51.271 9000 TIP 439964 18208 6079235 2024-02-26 22:04:51.522 2024-02-26 22:04:51.522 1000 FEE 439964 20539 6079236 2024-02-26 22:04:51.522 2024-02-26 22:04:51.522 9000 TIP 439964 18454 6079240 2024-02-26 22:05:08.238 2024-02-26 22:05:08.238 100000 FEE 439895 21281 6079241 2024-02-26 22:05:08.238 2024-02-26 22:05:08.238 900000 TIP 439895 977 6079242 2024-02-26 22:05:20.965 2024-02-26 22:05:20.965 1000 FEE 439563 4763 6079243 2024-02-26 22:05:20.965 2024-02-26 22:05:20.965 9000 TIP 439563 642 6079275 2024-02-26 22:10:40.381 2024-02-26 22:10:40.381 5000 FEE 439844 18828 6079276 2024-02-26 22:10:40.381 2024-02-26 22:10:40.381 45000 TIP 439844 12921 6079280 2024-02-26 22:11:00.463 2024-02-26 22:11:00.463 5000 FEE 439906 1585 6079281 2024-02-26 22:11:00.463 2024-02-26 22:11:00.463 45000 TIP 439906 20434 6079306 2024-02-26 22:12:09.372 2024-02-26 22:12:09.372 500 FEE 439999 19488 6079307 2024-02-26 22:12:09.372 2024-02-26 22:12:09.372 4500 TIP 439999 13843 6079308 2024-02-26 22:12:29.175 2024-02-26 22:12:29.175 5000 FEE 439658 4313 6079309 2024-02-26 22:12:29.175 2024-02-26 22:12:29.175 45000 TIP 439658 20023 6079310 2024-02-26 22:12:32.516 2024-02-26 22:12:32.516 1000 FEE 440031 15161 6079326 2024-02-26 22:15:14.081 2024-02-26 22:15:14.081 1000 FEE 439822 21062 6079327 2024-02-26 22:15:14.081 2024-02-26 22:15:14.081 9000 TIP 439822 736 6079368 2024-02-26 22:19:41.098 2024-02-26 22:19:41.098 2100 FEE 439844 12768 6079369 2024-02-26 22:19:41.098 2024-02-26 22:19:41.098 18900 TIP 439844 21172 6079374 2024-02-26 22:19:41.845 2024-02-26 22:19:41.845 2100 FEE 439844 21022 6079375 2024-02-26 22:19:41.845 2024-02-26 22:19:41.845 18900 TIP 439844 1712 6079378 2024-02-26 22:19:42.285 2024-02-26 22:19:42.285 2100 FEE 439844 5387 6079379 2024-02-26 22:19:42.285 2024-02-26 22:19:42.285 18900 TIP 439844 13198 6079387 2024-02-26 22:20:45.423 2024-02-26 22:20:45.423 5000 FEE 439263 8059 6079388 2024-02-26 22:20:45.423 2024-02-26 22:20:45.423 45000 TIP 439263 19952 6079396 2024-02-26 22:22:22.193 2024-02-26 22:22:22.193 5000 FEE 439443 2703 6079397 2024-02-26 22:22:22.193 2024-02-26 22:22:22.193 45000 TIP 439443 20555 6079401 2024-02-26 22:24:01.108 2024-02-26 22:24:01.108 3500 FEE 440028 8416 6079402 2024-02-26 22:24:01.108 2024-02-26 22:24:01.108 31500 TIP 440028 13753 6079405 2024-02-26 22:24:02.023 2024-02-26 22:24:02.023 7700 FEE 439966 664 6079406 2024-02-26 22:24:02.023 2024-02-26 22:24:02.023 69300 TIP 439966 18472 6079408 2024-02-26 22:24:29.124 2024-02-26 22:24:29.124 1000 FEE 440042 17522 6079419 2024-02-26 22:26:20.162 2024-02-26 22:26:20.162 2100 FEE 439926 18930 6079420 2024-02-26 22:26:20.162 2024-02-26 22:26:20.162 18900 TIP 439926 13204 6079450 2024-02-26 22:30:59.141 2024-02-26 22:30:59.141 1000 FEE 438859 4692 6079451 2024-02-26 22:30:59.141 2024-02-26 22:30:59.141 9000 TIP 438859 15890 6079455 2024-02-26 22:31:35.839 2024-02-26 22:31:35.839 0 FEE 440048 20337 6079464 2024-02-26 22:32:37.633 2024-02-26 22:32:37.633 1000 FEE 440050 18704 6079465 2024-02-26 22:32:52.796 2024-02-26 22:32:52.796 0 FEE 440050 18956 6079475 2024-02-26 22:33:46.272 2024-02-26 22:33:46.272 100000 FEE 439822 19557 6079476 2024-02-26 22:33:46.272 2024-02-26 22:33:46.272 900000 TIP 439822 859 6079508 2024-02-26 22:43:19.868 2024-02-26 22:43:19.868 100 FEE 440041 20243 6079509 2024-02-26 22:43:19.868 2024-02-26 22:43:19.868 900 TIP 440041 18225 6079512 2024-02-26 22:43:22.061 2024-02-26 22:43:22.061 9000 FEE 440041 6361 6079513 2024-02-26 22:43:22.061 2024-02-26 22:43:22.061 81000 TIP 440041 1602 6079532 2024-02-26 22:46:36.439 2024-02-26 22:46:36.439 1000 FEE 439798 17494 6079533 2024-02-26 22:46:36.439 2024-02-26 22:46:36.439 9000 TIP 439798 20924 6079543 2024-02-26 22:49:15.022 2024-02-26 22:49:15.022 100 FEE 439946 18460 6079544 2024-02-26 22:49:15.022 2024-02-26 22:49:15.022 900 TIP 439946 5495 6079550 2024-02-26 22:49:17.19 2024-02-26 22:49:17.19 100 FEE 439946 8985 6079551 2024-02-26 22:49:17.19 2024-02-26 22:49:17.19 900 TIP 439946 659 6079554 2024-02-26 22:49:18.35 2024-02-26 22:49:18.35 100 FEE 439946 9529 6079555 2024-02-26 22:49:18.35 2024-02-26 22:49:18.35 900 TIP 439946 16424 6079560 2024-02-26 22:49:25.465 2024-02-26 22:49:25.465 1000 FEE 440064 4259 6079588 2024-02-26 22:54:06.387 2024-02-26 22:54:06.387 3300 FEE 440048 19259 6079589 2024-02-26 22:54:06.387 2024-02-26 22:54:06.387 29700 TIP 440048 13055 6079598 2024-02-26 22:54:08.03 2024-02-26 22:54:08.03 7700 FEE 440056 2029 6079599 2024-02-26 22:54:08.03 2024-02-26 22:54:08.03 69300 TIP 440056 2775 6079611 2024-02-26 22:54:53.155 2024-02-26 22:54:53.155 1000 FEE 439987 2233 6079612 2024-02-26 22:54:53.155 2024-02-26 22:54:53.155 9000 TIP 439987 2514 6079645 2024-02-26 23:02:29.56 2024-02-26 23:02:29.56 2100 FEE 440045 16970 6079646 2024-02-26 23:02:29.56 2024-02-26 23:02:29.56 18900 TIP 440045 19527 6079651 2024-02-26 23:02:42.273 2024-02-26 23:02:42.273 2100 FEE 440009 21218 6079652 2024-02-26 23:02:42.273 2024-02-26 23:02:42.273 18900 TIP 440009 1577 6079653 2024-02-26 23:02:43.817 2024-02-26 23:02:43.817 2100 FEE 440004 19773 6079654 2024-02-26 23:02:43.817 2024-02-26 23:02:43.817 18900 TIP 440004 5776 6079681 2024-02-26 23:12:44.117 2024-02-26 23:12:44.117 400 FEE 438839 18984 6079682 2024-02-26 23:12:44.117 2024-02-26 23:12:44.117 3600 TIP 438839 18306 6079701 2024-02-26 23:16:29.79 2024-02-26 23:16:29.79 1100 FEE 439822 769 6079702 2024-02-26 23:16:29.79 2024-02-26 23:16:29.79 9900 TIP 439822 986 6079708 2024-02-26 23:19:49.437 2024-02-26 23:19:49.437 3100 FEE 440056 2347 6079709 2024-02-26 23:19:49.437 2024-02-26 23:19:49.437 27900 TIP 440056 9992 6079712 2024-02-26 23:19:52.836 2024-02-26 23:19:52.836 1000 FEE 440081 9378 6079713 2024-02-26 23:19:59.725 2024-02-26 23:19:59.725 3300 FEE 440056 20603 6079714 2024-02-26 23:19:59.725 2024-02-26 23:19:59.725 29700 TIP 440056 6741 6079715 2024-02-26 23:19:59.937 2024-02-26 23:19:59.937 3300 FEE 440056 664 6079716 2024-02-26 23:19:59.937 2024-02-26 23:19:59.937 29700 TIP 440056 20691 6079728 2024-02-26 23:20:09.458 2024-02-26 23:20:09.458 3300 FEE 440056 20782 6079729 2024-02-26 23:20:09.458 2024-02-26 23:20:09.458 29700 TIP 440056 12218 6079763 2024-02-26 23:23:30.541 2024-02-26 23:23:30.541 2500 FEE 439742 21334 6079764 2024-02-26 23:23:30.541 2024-02-26 23:23:30.541 22500 TIP 439742 5728 6079771 2024-02-26 23:25:31.286 2024-02-26 23:25:31.286 100 FEE 439844 671 6079772 2024-02-26 23:25:31.286 2024-02-26 23:25:31.286 900 TIP 439844 20616 6079797 2024-02-26 23:29:39.302 2024-02-26 23:29:39.302 4000 FEE 440082 10013 6079798 2024-02-26 23:29:39.302 2024-02-26 23:29:39.302 36000 TIP 440082 985 6079805 2024-02-26 23:30:51.476 2024-02-26 23:30:51.476 2100 FEE 440009 21148 6079806 2024-02-26 23:30:51.476 2024-02-26 23:30:51.476 18900 TIP 440009 1628 6079820 2024-02-26 23:33:50.896 2024-02-26 23:33:50.896 2100 FEE 439298 18507 6079214 2024-02-26 22:02:40.496 2024-02-26 22:02:40.496 9000 TIP 440001 20280 6079278 2024-02-26 22:10:56.34 2024-02-26 22:10:56.34 3400 FEE 438651 20599 6079279 2024-02-26 22:10:56.34 2024-02-26 22:10:56.34 30600 TIP 438651 10611 6079286 2024-02-26 22:11:20.701 2024-02-26 22:11:20.701 5000 FEE 439386 16842 6079287 2024-02-26 22:11:20.701 2024-02-26 22:11:20.701 45000 TIP 439386 20258 6079293 2024-02-26 22:11:37.86 2024-02-26 22:11:37.86 5000 FEE 439330 11091 6079294 2024-02-26 22:11:37.86 2024-02-26 22:11:37.86 45000 TIP 439330 701 6079317 2024-02-26 22:14:03.663 2024-02-26 22:14:03.663 1000 FEE 440035 897 6079325 2024-02-26 22:15:11.559 2024-02-26 22:15:11.559 1000 FEE 440037 20660 6079348 2024-02-26 22:17:29.628 2024-02-26 22:17:29.628 77000 DONT_LIKE_THIS 440029 4314 6079351 2024-02-26 22:17:39.47 2024-02-26 22:17:39.47 2100 FEE 439952 16276 6079352 2024-02-26 22:17:39.47 2024-02-26 22:17:39.47 18900 TIP 439952 15161 6079359 2024-02-26 22:17:59.156 2024-02-26 22:17:59.156 1000 FEE 440040 18310 6079385 2024-02-26 22:20:44.938 2024-02-26 22:20:44.938 5000 FEE 439263 12819 6079386 2024-02-26 22:20:44.938 2024-02-26 22:20:44.938 45000 TIP 439263 15978 6079391 2024-02-26 22:21:42.919 2024-02-26 22:21:42.919 10000 FEE 440004 18816 6079392 2024-02-26 22:21:42.919 2024-02-26 22:21:42.919 90000 TIP 440004 16042 6079403 2024-02-26 22:24:01.627 2024-02-26 22:24:01.627 7700 FEE 439966 3990 6079404 2024-02-26 22:24:01.627 2024-02-26 22:24:01.627 69300 TIP 439966 21577 6079418 2024-02-26 22:26:16.643 2024-02-26 22:26:16.643 1000 FEE 440044 678 6079431 2024-02-26 22:26:44.088 2024-02-26 22:26:44.088 2500 FEE 439844 16212 6079432 2024-02-26 22:26:44.088 2024-02-26 22:26:44.088 22500 TIP 439844 12122 6079433 2024-02-26 22:26:44.454 2024-02-26 22:26:44.454 2500 FEE 439844 11999 6079434 2024-02-26 22:26:44.454 2024-02-26 22:26:44.454 22500 TIP 439844 6260 6079437 2024-02-26 22:27:08.053 2024-02-26 22:27:08.053 3500 FEE 439947 736 6079438 2024-02-26 22:27:08.053 2024-02-26 22:27:08.053 31500 TIP 439947 19148 6079470 2024-02-26 22:33:25.018 2024-02-26 22:33:25.018 1000 FEE 440051 21493 6079482 2024-02-26 22:35:30.659 2024-02-26 22:35:30.659 500 FEE 440004 15978 6079483 2024-02-26 22:35:30.659 2024-02-26 22:35:30.659 4500 TIP 440004 21412 6079501 2024-02-26 22:41:35.196 2024-02-26 22:41:35.196 100000 FEE 440056 1720 6079510 2024-02-26 22:43:20.09 2024-02-26 22:43:20.09 900 FEE 440041 6526 6079511 2024-02-26 22:43:20.09 2024-02-26 22:43:20.09 8100 TIP 440041 1002 6079516 2024-02-26 22:44:14.519 2024-02-26 22:44:14.519 100 FEE 440004 7992 6079517 2024-02-26 22:44:14.519 2024-02-26 22:44:14.519 900 TIP 440004 16848 6079530 2024-02-26 22:46:33.575 2024-02-26 22:46:33.575 1000 FEE 440024 21600 6079531 2024-02-26 22:46:33.575 2024-02-26 22:46:33.575 9000 TIP 440024 13133 6079556 2024-02-26 22:49:18.394 2024-02-26 22:49:18.394 100 FEE 439946 12965 6079557 2024-02-26 22:49:18.394 2024-02-26 22:49:18.394 900 TIP 439946 6164 6079558 2024-02-26 22:49:18.498 2024-02-26 22:49:18.498 100 FEE 439946 14280 6079559 2024-02-26 22:49:18.498 2024-02-26 22:49:18.498 900 TIP 439946 16638 6079561 2024-02-26 22:49:40.535 2024-02-26 22:49:40.535 1000 FEE 440042 15719 6079562 2024-02-26 22:49:40.535 2024-02-26 22:49:40.535 9000 TIP 440042 15697 6079574 2024-02-26 22:53:32.643 2024-02-26 22:53:32.643 1000 FEE 440068 10273 6079594 2024-02-26 22:54:06.668 2024-02-26 22:54:06.668 7700 FEE 440056 17944 6079595 2024-02-26 22:54:06.668 2024-02-26 22:54:06.668 69300 TIP 440056 20825 6079616 2024-02-26 22:55:38.63 2024-02-26 22:55:38.63 1000 FEE 440072 21249 6079641 2024-02-26 23:02:17.428 2024-02-26 23:02:17.428 2100 FEE 439950 18625 6079642 2024-02-26 23:02:17.428 2024-02-26 23:02:17.428 18900 TIP 439950 1881 6079643 2024-02-26 23:02:17.905 2024-02-26 23:02:17.905 2100 FEE 439992 18727 6079644 2024-02-26 23:02:17.905 2024-02-26 23:02:17.905 18900 TIP 439992 660 6079673 2024-02-26 23:12:18.499 2024-02-26 23:12:18.499 10000 FEE 439844 7558 6079674 2024-02-26 23:12:18.499 2024-02-26 23:12:18.499 90000 TIP 439844 11523 6079734 2024-02-26 23:20:12.451 2024-02-26 23:20:12.451 3300 FEE 440056 19553 6079735 2024-02-26 23:20:12.451 2024-02-26 23:20:12.451 29700 TIP 440056 19583 6079746 2024-02-26 23:22:21.495 2024-02-26 23:22:21.495 42000 FEE 440082 18904 6079747 2024-02-26 23:22:46.865 2024-02-26 23:22:46.865 1000 FEE 440083 21416 6079753 2024-02-26 23:23:06.966 2024-02-26 23:23:06.966 500 FEE 440067 14169 6079754 2024-02-26 23:23:06.966 2024-02-26 23:23:06.966 4500 TIP 440067 18336 6079768 2024-02-26 23:24:58.18 2024-02-26 23:24:58.18 2500 FEE 440056 9347 6079769 2024-02-26 23:24:58.18 2024-02-26 23:24:58.18 22500 TIP 440056 18941 6079775 2024-02-26 23:25:53.166 2024-02-26 23:25:53.166 1000 FEE 440084 17275 6079812 2024-02-26 23:33:02.805 2024-02-26 23:33:02.805 1000 FEE 440087 11443 6079840 2024-02-26 23:38:26.916 2024-02-26 23:38:26.916 1000 FEE 439315 20597 6079841 2024-02-26 23:38:26.916 2024-02-26 23:38:26.916 9000 TIP 439315 12738 6079850 2024-02-26 23:38:27.907 2024-02-26 23:38:27.907 1000 FEE 439315 10549 6079851 2024-02-26 23:38:27.907 2024-02-26 23:38:27.907 9000 TIP 439315 16769 6079859 2024-02-26 23:41:39.4 2024-02-26 23:41:39.4 2100 FEE 439992 7891 6079860 2024-02-26 23:41:39.4 2024-02-26 23:41:39.4 18900 TIP 439992 909 6079908 2024-02-26 23:54:10.861 2024-02-26 23:54:10.861 3300 FEE 440093 20776 6079909 2024-02-26 23:54:10.861 2024-02-26 23:54:10.861 29700 TIP 440093 19910 6079918 2024-02-26 23:54:46.352 2024-02-26 23:54:46.352 2100 FEE 440013 17682 6079919 2024-02-26 23:54:46.352 2024-02-26 23:54:46.352 18900 TIP 440013 16789 6079920 2024-02-26 23:54:54.443 2024-02-26 23:54:54.443 1000 FEE 440010 20906 6079921 2024-02-26 23:54:54.443 2024-02-26 23:54:54.443 9000 TIP 440010 1209 6079932 2024-02-26 23:54:57.413 2024-02-26 23:54:57.413 1000 FEE 440026 2528 6079933 2024-02-26 23:54:57.413 2024-02-26 23:54:57.413 9000 TIP 440026 13133 6079934 2024-02-26 23:54:57.455 2024-02-26 23:54:57.455 1000 FEE 440026 21178 6079935 2024-02-26 23:54:57.455 2024-02-26 23:54:57.455 9000 TIP 440026 4989 6079942 2024-02-26 23:55:03.012 2024-02-26 23:55:03.012 10000 FEE 440093 19289 6079943 2024-02-26 23:55:03.012 2024-02-26 23:55:03.012 90000 TIP 440093 20701 6079952 2024-02-26 23:55:35.917 2024-02-26 23:55:35.917 100 FEE 438065 13246 6079953 2024-02-26 23:55:35.917 2024-02-26 23:55:35.917 900 TIP 438065 1468 6079954 2024-02-26 23:55:35.996 2024-02-26 23:55:35.996 100 FEE 438065 16788 6079955 2024-02-26 23:55:35.996 2024-02-26 23:55:35.996 900 TIP 438065 12946 6080005 2024-02-26 23:58:32.966 2024-02-26 23:58:32.966 100 FEE 440028 18663 6080006 2024-02-26 23:58:32.966 2024-02-26 23:58:32.966 900 TIP 440028 6687 6080009 2024-02-26 23:59:00.331 2024-02-26 23:59:00.331 9000 FEE 440028 17331 6080010 2024-02-26 23:59:00.331 2024-02-26 23:59:00.331 81000 TIP 440028 4323 6080051 2024-02-27 00:00:57.428 2024-02-27 00:00:57.428 100 FEE 439787 7916 6080052 2024-02-27 00:00:57.428 2024-02-27 00:00:57.428 900 TIP 439787 11789 6080110 2024-02-27 00:05:26.891 2024-02-27 00:05:26.891 7700 FEE 439844 17797 6080111 2024-02-27 00:05:26.891 2024-02-27 00:05:26.891 69300 TIP 439844 20251 6080148 2024-02-27 00:06:36.187 2024-02-27 00:06:36.187 10000 FEE 440050 1319 6080149 2024-02-27 00:06:36.187 2024-02-27 00:06:36.187 90000 TIP 440050 20681 6079350 2024-02-26 22:17:30.045 2024-02-26 22:17:30.045 18900 TIP 439987 18727 6079355 2024-02-26 22:17:46.038 2024-02-26 22:17:46.038 2100 FEE 439926 12483 6079356 2024-02-26 22:17:46.038 2024-02-26 22:17:46.038 18900 TIP 439926 12278 6079366 2024-02-26 22:19:40.942 2024-02-26 22:19:40.942 2100 FEE 439844 19158 6079367 2024-02-26 22:19:40.942 2024-02-26 22:19:40.942 18900 TIP 439844 2101 6079372 2024-02-26 22:19:41.667 2024-02-26 22:19:41.667 2100 FEE 439844 1723 6079373 2024-02-26 22:19:41.667 2024-02-26 22:19:41.667 18900 TIP 439844 20168 6079398 2024-02-26 22:22:40.056 2024-02-26 22:22:40.056 100000 FEE 439844 18139 6079399 2024-02-26 22:22:40.056 2024-02-26 22:22:40.056 900000 TIP 439844 10849 6079409 2024-02-26 22:24:40.441 2024-02-26 22:24:40.441 1500 FEE 440023 21057 6079410 2024-02-26 22:24:40.441 2024-02-26 22:24:40.441 13500 TIP 440023 20745 6079413 2024-02-26 22:25:31.094 2024-02-26 22:25:31.094 3500 FEE 440009 1221 6079414 2024-02-26 22:25:31.094 2024-02-26 22:25:31.094 31500 TIP 440009 21332 6079423 2024-02-26 22:26:21.164 2024-02-26 22:26:21.164 2100 FEE 439926 18518 6079424 2024-02-26 22:26:21.164 2024-02-26 22:26:21.164 18900 TIP 439926 2046 6079427 2024-02-26 22:26:43.827 2024-02-26 22:26:43.827 2500 FEE 439844 11819 6079428 2024-02-26 22:26:43.827 2024-02-26 22:26:43.827 22500 TIP 439844 8380 6079444 2024-02-26 22:29:51.202 2024-02-26 22:29:51.202 1000 FEE 440047 10731 6079477 2024-02-26 22:33:52.758 2024-02-26 22:33:52.758 2100 FEE 438340 3409 6079478 2024-02-26 22:33:52.758 2024-02-26 22:33:52.758 18900 TIP 438340 1673 6079495 2024-02-26 22:37:16.853 2024-02-26 22:37:16.853 1000 FEE 440054 20525 6079505 2024-02-26 22:42:27.609 2024-02-26 22:42:27.609 1000 FEE 440057 16456 6079522 2024-02-26 22:44:55.562 2024-02-26 22:44:55.562 900 FEE 439990 4250 6079523 2024-02-26 22:44:55.562 2024-02-26 22:44:55.562 8100 TIP 439990 13055 6079526 2024-02-26 22:46:12.572 2024-02-26 22:46:12.572 1000 FEE 440049 18507 6079527 2024-02-26 22:46:12.572 2024-02-26 22:46:12.572 9000 TIP 440049 14271 6079528 2024-02-26 22:46:19.178 2024-02-26 22:46:19.178 3300 FEE 440057 11789 6079529 2024-02-26 22:46:19.178 2024-02-26 22:46:19.178 29700 TIP 440057 705 6079541 2024-02-26 22:48:59.073 2024-02-26 22:48:59.073 1000 FEE 440061 711 6079548 2024-02-26 22:49:16.59 2024-02-26 22:49:16.59 100 FEE 439946 18769 6079549 2024-02-26 22:49:16.59 2024-02-26 22:49:16.59 900 TIP 439946 7376 6079571 2024-02-26 22:53:26.153 2024-02-26 22:53:26.153 1000 FEE 440067 18378 6079577 2024-02-26 22:53:42.289 2024-02-26 22:53:42.289 1000 FEE 439729 15549 6079578 2024-02-26 22:53:42.289 2024-02-26 22:53:42.289 9000 TIP 439729 16543 6079632 2024-02-26 23:00:05.533 2024-02-26 23:00:05.533 1000 FEE 440076 928 6079667 2024-02-26 23:09:52.608 2024-02-26 23:09:52.608 100000 FEE 440079 21040 6079698 2024-02-26 23:15:36.116 2024-02-26 23:15:36.116 10000 FEE 439729 19462 6079699 2024-02-26 23:15:36.116 2024-02-26 23:15:36.116 90000 TIP 439729 4102 6079703 2024-02-26 23:16:56.309 2024-02-26 23:16:56.309 1000 FEE 440056 20904 6079704 2024-02-26 23:16:56.309 2024-02-26 23:16:56.309 9000 TIP 440056 20906 6079717 2024-02-26 23:20:00.137 2024-02-26 23:20:00.137 3300 FEE 440056 15577 6079718 2024-02-26 23:20:00.137 2024-02-26 23:20:00.137 29700 TIP 440056 17064 6079721 2024-02-26 23:20:02.476 2024-02-26 23:20:02.476 3300 FEE 440056 19034 6079722 2024-02-26 23:20:02.476 2024-02-26 23:20:02.476 29700 TIP 440056 9177 6079400 2024-02-26 22:23:02.515 2024-02-26 22:23:02.515 1000 STREAM 141924 19839 6079439 2024-02-26 22:28:02.528 2024-02-26 22:28:02.528 1000 STREAM 141924 17217 6079445 2024-02-26 22:30:02.546 2024-02-26 22:30:02.546 1000 STREAM 141924 766 6079456 2024-02-26 22:32:02.556 2024-02-26 22:32:02.556 1000 STREAM 141924 16052 6079534 2024-02-26 22:47:02.662 2024-02-26 22:47:02.662 1000 STREAM 141924 7903 6079537 2024-02-26 22:48:02.661 2024-02-26 22:48:02.661 1000 STREAM 141924 9159 6079570 2024-02-26 22:53:02.704 2024-02-26 22:53:02.704 1000 STREAM 141924 18704 6079583 2024-02-26 22:54:02.72 2024-02-26 22:54:02.72 1000 STREAM 141924 1425 6079622 2024-02-26 22:57:02.745 2024-02-26 22:57:02.745 1000 STREAM 141924 18330 6079663 2024-02-26 23:06:02.801 2024-02-26 23:06:02.801 1000 STREAM 141924 20647 6079664 2024-02-26 23:07:02.806 2024-02-26 23:07:02.806 1000 STREAM 141924 12516 6079666 2024-02-26 23:09:02.821 2024-02-26 23:09:02.821 1000 STREAM 141924 1213 6079669 2024-02-26 23:11:02.847 2024-02-26 23:11:02.847 1000 STREAM 141924 16939 6079672 2024-02-26 23:12:02.854 2024-02-26 23:12:02.854 1000 STREAM 141924 20980 6079697 2024-02-26 23:15:02.883 2024-02-26 23:15:02.883 1000 STREAM 141924 21292 6079700 2024-02-26 23:16:02.89 2024-02-26 23:16:02.89 1000 STREAM 141924 13365 6079707 2024-02-26 23:19:02.91 2024-02-26 23:19:02.91 1000 STREAM 141924 628 6079852 2024-02-26 23:39:03.036 2024-02-26 23:39:03.036 1000 STREAM 141924 6160 6079861 2024-02-26 23:42:03.042 2024-02-26 23:42:03.042 1000 STREAM 141924 7389 6079881 2024-02-26 23:48:03.077 2024-02-26 23:48:03.077 1000 STREAM 141924 746 6079890 2024-02-26 23:51:03.094 2024-02-26 23:51:03.094 1000 STREAM 141924 15060 6079896 2024-02-26 23:53:03.105 2024-02-26 23:53:03.105 1000 STREAM 141924 20500 6079983 2024-02-26 23:57:03.126 2024-02-26 23:57:03.126 1000 STREAM 141924 17109 6079996 2024-02-26 23:58:03.124 2024-02-26 23:58:03.124 1000 STREAM 141924 1738 6080011 2024-02-26 23:59:03.136 2024-02-26 23:59:03.136 1000 STREAM 141924 1673 6080159 2024-02-27 00:07:03.157 2024-02-27 00:07:03.157 1000 STREAM 141924 10112 6080170 2024-02-27 00:09:03.16 2024-02-27 00:09:03.16 1000 STREAM 141924 20073 6080171 2024-02-27 00:10:03.142 2024-02-27 00:10:03.142 1000 STREAM 141924 16178 6080173 2024-02-27 00:11:03.162 2024-02-27 00:11:03.162 1000 STREAM 141924 736 6080212 2024-02-27 00:13:03.177 2024-02-27 00:13:03.177 1000 STREAM 141924 21012 6080563 2024-02-27 00:24:03.275 2024-02-27 00:24:03.275 1000 STREAM 141924 20826 6080565 2024-02-27 00:25:03.284 2024-02-27 00:25:03.284 1000 STREAM 141924 13759 6080567 2024-02-27 00:26:03.284 2024-02-27 00:26:03.284 1000 STREAM 141924 19581 6080573 2024-02-27 00:27:03.306 2024-02-27 00:27:03.306 1000 STREAM 141924 10393 6079481 2024-02-26 22:35:22.687 2024-02-26 22:35:22.687 1000 FEE 440052 13177 6079484 2024-02-26 22:35:30.874 2024-02-26 22:35:30.874 500 FEE 440004 21194 6079485 2024-02-26 22:35:30.874 2024-02-26 22:35:30.874 4500 TIP 440004 19462 6079486 2024-02-26 22:35:34.5 2024-02-26 22:35:34.5 500 FEE 440004 21421 6079487 2024-02-26 22:35:34.5 2024-02-26 22:35:34.5 4500 TIP 440004 5487 6079506 2024-02-26 22:42:50.702 2024-02-26 22:42:50.702 1000 FEE 440058 8954 6079614 2024-02-26 22:55:02.82 2024-02-26 22:55:02.82 1000 FEE 440070 14552 6079615 2024-02-26 22:55:03.011 2024-02-26 22:55:03.011 1000 FEE 440071 10554 6079639 2024-02-26 23:02:14.298 2024-02-26 23:02:14.298 2100 FEE 439754 6555 6079640 2024-02-26 23:02:14.298 2024-02-26 23:02:14.298 18900 TIP 439754 7869 6079671 2024-02-26 23:11:47.244 2024-02-26 23:11:47.244 10000 FEE 440080 21323 6079675 2024-02-26 23:12:40.919 2024-02-26 23:12:40.919 400 FEE 439683 18743 6079676 2024-02-26 23:12:40.919 2024-02-26 23:12:40.919 3600 TIP 439683 19030 6079677 2024-02-26 23:12:41.111 2024-02-26 23:12:41.111 400 FEE 439309 20225 6079678 2024-02-26 23:12:41.111 2024-02-26 23:12:41.111 3600 TIP 439309 661 6079687 2024-02-26 23:12:50.719 2024-02-26 23:12:50.719 400 FEE 438482 19462 6079688 2024-02-26 23:12:50.719 2024-02-26 23:12:50.719 3600 TIP 438482 7668 6079693 2024-02-26 23:14:28.942 2024-02-26 23:14:28.942 100000 FEE 440056 21585 6079694 2024-02-26 23:14:28.942 2024-02-26 23:14:28.942 900000 TIP 440056 2039 6079723 2024-02-26 23:20:02.672 2024-02-26 23:20:02.672 3300 FEE 440056 10690 6079724 2024-02-26 23:20:02.672 2024-02-26 23:20:02.672 29700 TIP 440056 5776 6079761 2024-02-26 23:23:29.657 2024-02-26 23:23:29.657 7700 FEE 440080 4624 6079762 2024-02-26 23:23:29.657 2024-02-26 23:23:29.657 69300 TIP 440080 928 6079492 2024-02-26 22:36:02.451 2024-02-26 22:36:02.451 1000 STREAM 141924 1631 6079494 2024-02-26 22:37:02.43 2024-02-26 22:37:02.43 1000 STREAM 141924 20669 6079496 2024-02-26 22:38:02.463 2024-02-26 22:38:02.463 1000 STREAM 141924 3478 6079498 2024-02-26 22:40:02.453 2024-02-26 22:40:02.453 1000 STREAM 141924 18615 6079507 2024-02-26 22:43:02.477 2024-02-26 22:43:02.477 1000 STREAM 141924 5538 6079515 2024-02-26 22:44:02.48 2024-02-26 22:44:02.48 1000 STREAM 141924 701 6079525 2024-02-26 22:46:02.487 2024-02-26 22:46:02.487 1000 STREAM 141924 19303 6079564 2024-02-26 22:50:02.472 2024-02-26 22:50:02.472 1000 STREAM 141924 1310 6079567 2024-02-26 22:52:02.504 2024-02-26 22:52:02.504 1000 STREAM 141924 6058 6079613 2024-02-26 22:55:02.519 2024-02-26 22:55:02.519 1000 STREAM 141924 21361 6079706 2024-02-26 23:18:02.658 2024-02-26 23:18:02.658 1000 STREAM 141924 16004 6079725 2024-02-26 23:20:02.683 2024-02-26 23:20:02.683 1000 STREAM 141924 13378 6079750 2024-02-26 23:23:02.682 2024-02-26 23:23:02.682 1000 STREAM 141924 21361 6079767 2024-02-26 23:24:02.715 2024-02-26 23:24:02.715 1000 STREAM 141924 4958 6079770 2024-02-26 23:25:02.702 2024-02-26 23:25:02.702 1000 STREAM 141924 21057 6079787 2024-02-26 23:27:02.702 2024-02-26 23:27:02.702 1000 STREAM 141924 902 6079794 2024-02-26 23:29:02.732 2024-02-26 23:29:02.732 1000 STREAM 141924 19126 6079801 2024-02-26 23:30:02.756 2024-02-26 23:30:02.756 1000 STREAM 141924 12102 6079810 2024-02-26 23:32:02.746 2024-02-26 23:32:02.746 1000 STREAM 141924 20594 6079811 2024-02-26 23:33:02.766 2024-02-26 23:33:02.766 1000 STREAM 141924 2711 6079822 2024-02-26 23:34:02.783 2024-02-26 23:34:02.783 1000 STREAM 141924 2000 6079832 2024-02-26 23:37:02.768 2024-02-26 23:37:02.768 1000 STREAM 141924 12268 6079835 2024-02-26 23:38:02.77 2024-02-26 23:38:02.77 1000 STREAM 141924 20554 6079857 2024-02-26 23:40:02.786 2024-02-26 23:40:02.786 1000 STREAM 141924 19992 6079863 2024-02-26 23:44:02.786 2024-02-26 23:44:02.786 1000 STREAM 141924 5538 6079864 2024-02-26 23:45:02.807 2024-02-26 23:45:02.807 1000 STREAM 141924 18528 6079885 2024-02-26 23:50:02.844 2024-02-26 23:50:02.844 1000 STREAM 141924 13544 6079905 2024-02-26 23:54:02.841 2024-02-26 23:54:02.841 1000 STREAM 141924 1740 6080067 2024-02-27 00:01:02.889 2024-02-27 00:01:02.889 1000 STREAM 141924 16556 6080080 2024-02-27 00:02:02.894 2024-02-27 00:02:02.894 1000 STREAM 141924 21178 6080144 2024-02-27 00:06:02.921 2024-02-27 00:06:02.921 1000 STREAM 141924 8037 6080512 2024-02-27 00:19:02.97 2024-02-27 00:19:02.97 1000 STREAM 141924 9166 6080537 2024-02-27 00:21:02.977 2024-02-27 00:21:02.977 1000 STREAM 141924 19199 6079617 2024-02-26 22:56:02.73 2024-02-26 22:56:02.73 1000 STREAM 141924 2543 6079624 2024-02-26 22:58:02.746 2024-02-26 22:58:02.746 1000 STREAM 141924 21599 6079626 2024-02-26 22:59:02.768 2024-02-26 22:59:02.768 1000 STREAM 141924 4798 6079659 2024-02-26 23:04:02.796 2024-02-26 23:04:02.796 1000 STREAM 141924 746 6079662 2024-02-26 23:05:02.793 2024-02-26 23:05:02.793 1000 STREAM 141924 16149 6079665 2024-02-26 23:08:02.815 2024-02-26 23:08:02.815 1000 STREAM 141924 20137 6079668 2024-02-26 23:10:02.859 2024-02-26 23:10:02.859 1000 STREAM 141924 2431 6079741 2024-02-26 23:21:02.921 2024-02-26 23:21:02.921 1000 STREAM 141924 18336 6079745 2024-02-26 23:22:02.916 2024-02-26 23:22:02.916 1000 STREAM 141924 1237 6079625 2024-02-26 22:58:22.649 2024-02-26 22:58:22.649 1000 FEE 440073 1175 6079631 2024-02-26 23:00:04.926 2024-02-26 23:00:04.926 100000 FEE 440075 19569 6079647 2024-02-26 23:02:31.785 2024-02-26 23:02:31.785 2100 FEE 440028 678 6079648 2024-02-26 23:02:31.785 2024-02-26 23:02:31.785 18900 TIP 440028 21599 6079657 2024-02-26 23:03:45.955 2024-02-26 23:03:45.955 10000 FEE 440056 7986 6079658 2024-02-26 23:03:45.955 2024-02-26 23:03:45.955 90000 TIP 440056 21481 6079726 2024-02-26 23:20:09.203 2024-02-26 23:20:09.203 3300 FEE 440056 9348 6079727 2024-02-26 23:20:09.203 2024-02-26 23:20:09.203 29700 TIP 440056 13547 6079732 2024-02-26 23:20:11.949 2024-02-26 23:20:11.949 3300 FEE 440056 827 6079733 2024-02-26 23:20:11.949 2024-02-26 23:20:11.949 29700 TIP 440056 12819 6079751 2024-02-26 23:23:06.683 2024-02-26 23:23:06.683 500 FEE 440067 1495 6079752 2024-02-26 23:23:06.683 2024-02-26 23:23:06.683 4500 TIP 440067 6653 6079759 2024-02-26 23:23:29.512 2024-02-26 23:23:29.512 7700 FEE 440080 1426 6079760 2024-02-26 23:23:29.512 2024-02-26 23:23:29.512 69300 TIP 440080 20006 6079793 2024-02-26 23:28:45.436 2024-02-26 23:28:45.436 1000 FEE 440085 8926 6079803 2024-02-26 23:30:30.225 2024-02-26 23:30:30.225 4000 FEE 440073 18170 6079804 2024-02-26 23:30:30.225 2024-02-26 23:30:30.225 36000 TIP 440073 10591 6079838 2024-02-26 23:38:04.645 2024-02-26 23:38:04.645 1000 FEE 439443 16966 6079839 2024-02-26 23:38:04.645 2024-02-26 23:38:04.645 9000 TIP 439443 928 6079873 2024-02-26 23:47:22.64 2024-02-26 23:47:22.64 1000 FEE 440004 15938 6079874 2024-02-26 23:47:22.64 2024-02-26 23:47:22.64 9000 TIP 440004 19018 6079986 2024-02-26 23:57:15.443 2024-02-26 23:57:15.443 2100 FEE 440026 18557 6079987 2024-02-26 23:57:15.443 2024-02-26 23:57:15.443 18900 TIP 440026 20704 6079994 2024-02-26 23:57:31.572 2024-02-26 23:57:31.572 1000 FEE 440098 1286 6079997 2024-02-26 23:58:09.884 2024-02-26 23:58:09.884 100 FEE 440079 17797 6079998 2024-02-26 23:58:09.884 2024-02-26 23:58:09.884 900 TIP 440079 9705 6080003 2024-02-26 23:58:13.064 2024-02-26 23:58:13.064 100 FEE 440056 8541 6080004 2024-02-26 23:58:13.064 2024-02-26 23:58:13.064 900 TIP 440056 6327 6080012 2024-02-26 23:59:19.527 2024-02-26 23:59:19.527 1000 FEE 439987 2620 6080013 2024-02-26 23:59:19.527 2024-02-26 23:59:19.527 9000 TIP 439987 21329 6080016 2024-02-26 23:59:28.82 2024-02-26 23:59:28.82 100 FEE 439947 9099 6080017 2024-02-26 23:59:28.82 2024-02-26 23:59:28.82 900 TIP 439947 1245 6080031 2024-02-27 00:00:02.522 2024-02-27 00:00:02.522 9000 FEE 439925 21357 6080032 2024-02-27 00:00:02.522 2024-02-27 00:00:02.522 81000 TIP 439925 19572 6080055 2024-02-27 00:00:58.045 2024-02-27 00:00:58.045 100 FEE 439856 18101 6080056 2024-02-27 00:00:58.045 2024-02-27 00:00:58.045 900 TIP 439856 5377 6080061 2024-02-27 00:00:58.852 2024-02-27 00:00:58.852 900 FEE 439768 19995 6080062 2024-02-27 00:00:58.852 2024-02-27 00:00:58.852 8100 TIP 439768 16229 6080073 2024-02-27 00:01:29.163 2024-02-27 00:01:29.163 1000 FEE 440102 10311 6080085 2024-02-27 00:04:54.917 2024-02-27 00:04:54.917 3300 FEE 440103 8385 6080086 2024-02-27 00:04:54.917 2024-02-27 00:04:54.917 29700 TIP 440103 21091 6080090 2024-02-27 00:05:24.789 2024-02-27 00:05:24.789 7700 FEE 439844 17082 6080091 2024-02-27 00:05:24.789 2024-02-27 00:05:24.789 69300 TIP 439844 3709 6080094 2024-02-27 00:05:25.189 2024-02-27 00:05:25.189 7700 FEE 439844 714 6080095 2024-02-27 00:05:25.189 2024-02-27 00:05:25.189 69300 TIP 439844 18735 6080134 2024-02-27 00:05:30.664 2024-02-27 00:05:30.664 7700 FEE 439844 989 6080135 2024-02-27 00:05:30.664 2024-02-27 00:05:30.664 69300 TIP 439844 686 6080180 2024-02-27 00:12:05.245 2024-02-27 00:12:05.245 2100 FEE 439963 676 6080181 2024-02-27 00:12:05.245 2024-02-27 00:12:05.245 18900 TIP 439963 20434 6080182 2024-02-27 00:12:53.442 2024-02-27 00:12:53.442 1000 FEE 439237 4238 6080183 2024-02-27 00:12:53.442 2024-02-27 00:12:53.442 9000 TIP 439237 13553 6080190 2024-02-27 00:12:55.687 2024-02-27 00:12:55.687 1000 FEE 439237 12606 6080191 2024-02-27 00:12:55.687 2024-02-27 00:12:55.687 9000 TIP 439237 20509 6080196 2024-02-27 00:12:57.05 2024-02-27 00:12:57.05 1000 FEE 439237 20495 6080197 2024-02-27 00:12:57.05 2024-02-27 00:12:57.05 9000 TIP 439237 16178 6080225 2024-02-27 00:14:13.645 2024-02-27 00:14:13.645 2000 FEE 439171 12272 6080226 2024-02-27 00:14:13.645 2024-02-27 00:14:13.645 18000 TIP 439171 623 6080247 2024-02-27 00:14:17.925 2024-02-27 00:14:17.925 1000 FEE 439171 11430 6080248 2024-02-27 00:14:17.925 2024-02-27 00:14:17.925 9000 TIP 439171 11967 6080255 2024-02-27 00:14:19.595 2024-02-27 00:14:19.595 1000 FEE 439171 14404 6080256 2024-02-27 00:14:19.595 2024-02-27 00:14:19.595 9000 TIP 439171 14552 6080271 2024-02-27 00:14:23.252 2024-02-27 00:14:23.252 1000 FEE 439171 1493 6080272 2024-02-27 00:14:23.252 2024-02-27 00:14:23.252 9000 TIP 439171 8998 6080312 2024-02-27 00:14:34.696 2024-02-27 00:14:34.696 1000 FEE 439171 12278 6080313 2024-02-27 00:14:34.696 2024-02-27 00:14:34.696 9000 TIP 439171 21430 6080326 2024-02-27 00:14:39.623 2024-02-27 00:14:39.623 1000 FEE 439171 21498 6080327 2024-02-27 00:14:39.623 2024-02-27 00:14:39.623 9000 TIP 439171 18745 6080340 2024-02-27 00:14:42.15 2024-02-27 00:14:42.15 1000 FEE 439171 21083 6080341 2024-02-27 00:14:42.15 2024-02-27 00:14:42.15 9000 TIP 439171 20555 6080352 2024-02-27 00:14:44.285 2024-02-27 00:14:44.285 1000 FEE 439171 672 6080353 2024-02-27 00:14:44.285 2024-02-27 00:14:44.285 9000 TIP 439171 1465 6080384 2024-02-27 00:14:51.299 2024-02-27 00:14:51.299 1000 FEE 439171 19583 6080385 2024-02-27 00:14:51.299 2024-02-27 00:14:51.299 9000 TIP 439171 2537 6080394 2024-02-27 00:14:53.459 2024-02-27 00:14:53.459 1000 FEE 439171 21472 6080395 2024-02-27 00:14:53.459 2024-02-27 00:14:53.459 9000 TIP 439171 18842 6080434 2024-02-27 00:15:48.433 2024-02-27 00:15:48.433 1000 FEE 440113 20704 6080439 2024-02-27 00:16:10.254 2024-02-27 00:16:10.254 3300 FEE 440108 13143 6080440 2024-02-27 00:16:10.254 2024-02-27 00:16:10.254 29700 TIP 440108 9331 6080445 2024-02-27 00:16:28.866 2024-02-27 00:16:28.866 800 FEE 440077 18473 6080446 2024-02-27 00:16:28.866 2024-02-27 00:16:28.866 7200 TIP 440077 16485 6079689 2024-02-26 23:13:02.651 2024-02-26 23:13:02.651 1000 STREAM 141924 8269 6079690 2024-02-26 23:14:02.632 2024-02-26 23:14:02.632 1000 STREAM 141924 19281 6079705 2024-02-26 23:17:02.651 2024-02-26 23:17:02.651 1000 STREAM 141924 794 6079778 2024-02-26 23:26:02.706 2024-02-26 23:26:02.706 1000 STREAM 141924 688 6079792 2024-02-26 23:28:02.701 2024-02-26 23:28:02.701 1000 STREAM 141924 11091 6079807 2024-02-26 23:31:02.739 2024-02-26 23:31:02.739 1000 STREAM 141924 13246 6079829 2024-02-26 23:35:02.761 2024-02-26 23:35:02.761 1000 STREAM 141924 8400 6079830 2024-02-26 23:36:02.776 2024-02-26 23:36:02.776 1000 STREAM 141924 21352 6079862 2024-02-26 23:43:02.798 2024-02-26 23:43:02.798 1000 STREAM 141924 11164 6079884 2024-02-26 23:49:02.826 2024-02-26 23:49:02.826 1000 STREAM 141924 21155 6079941 2024-02-26 23:55:02.877 2024-02-26 23:55:02.877 1000 STREAM 141924 10056 6080033 2024-02-27 00:00:02.879 2024-02-27 00:00:02.879 1000 STREAM 141924 5069 6080082 2024-02-27 00:03:02.888 2024-02-27 00:03:02.888 1000 STREAM 141924 16754 6080087 2024-02-27 00:05:02.906 2024-02-27 00:05:02.906 1000 STREAM 141924 18336 6079730 2024-02-26 23:20:09.572 2024-02-26 23:20:09.572 3300 FEE 440056 946 6079731 2024-02-26 23:20:09.572 2024-02-26 23:20:09.572 29700 TIP 440056 17212 6079739 2024-02-26 23:20:37.162 2024-02-26 23:20:37.162 10000 FEE 440056 2537 6079740 2024-02-26 23:20:37.162 2024-02-26 23:20:37.162 90000 TIP 440056 9367 6079773 2024-02-26 23:25:44.763 2024-02-26 23:25:44.763 7700 FEE 440068 3456 6079774 2024-02-26 23:25:44.763 2024-02-26 23:25:44.763 69300 TIP 440068 8870 6079781 2024-02-26 23:26:34.816 2024-02-26 23:26:34.816 2100 FEE 440004 7998 6079782 2024-02-26 23:26:34.816 2024-02-26 23:26:34.816 18900 TIP 440004 13055 6079795 2024-02-26 23:29:26.509 2024-02-26 23:29:26.509 3000 FEE 439822 19842 6079796 2024-02-26 23:29:26.509 2024-02-26 23:29:26.509 27000 TIP 439822 12268 6079816 2024-02-26 23:33:49.198 2024-02-26 23:33:49.198 2100 FEE 439298 8472 6079817 2024-02-26 23:33:49.198 2024-02-26 23:33:49.198 18900 TIP 439298 13575 6079848 2024-02-26 23:38:27.601 2024-02-26 23:38:27.601 1000 FEE 439315 21012 6079849 2024-02-26 23:38:27.601 2024-02-26 23:38:27.601 9000 TIP 439315 18472 6079855 2024-02-26 23:39:12.627 2024-02-26 23:39:12.627 1000 FEE 439844 19795 6079856 2024-02-26 23:39:12.627 2024-02-26 23:39:12.627 9000 TIP 439844 19117 6079865 2024-02-26 23:45:11.852 2024-02-26 23:45:11.852 1000 FEE 440091 14267 6079875 2024-02-26 23:47:22.837 2024-02-26 23:47:22.837 1000 FEE 440004 18177 6079876 2024-02-26 23:47:22.837 2024-02-26 23:47:22.837 9000 TIP 440004 5701 6079882 2024-02-26 23:48:14.031 2024-02-26 23:48:14.031 500 FEE 439764 9982 6079883 2024-02-26 23:48:14.031 2024-02-26 23:48:14.031 4500 TIP 439764 18008 6079886 2024-02-26 23:50:05.737 2024-02-26 23:50:05.737 2100 FEE 437799 6384 6079887 2024-02-26 23:50:05.737 2024-02-26 23:50:05.737 18900 TIP 437799 16532 6079888 2024-02-26 23:50:23.363 2024-02-26 23:50:23.363 1000 FEE 440093 1784 6079889 2024-02-26 23:50:29.382 2024-02-26 23:50:29.382 1000 FEE 440094 21263 6079899 2024-02-26 23:53:26.47 2024-02-26 23:53:26.47 4000 FEE 440094 9345 6079900 2024-02-26 23:53:26.47 2024-02-26 23:53:26.47 36000 TIP 440094 19199 6079903 2024-02-26 23:53:30.395 2024-02-26 23:53:30.395 100 FEE 439806 20187 6079904 2024-02-26 23:53:30.395 2024-02-26 23:53:30.395 900 TIP 439806 2459 6079912 2024-02-26 23:54:19.115 2024-02-26 23:54:19.115 4000 FEE 439416 21627 6079913 2024-02-26 23:54:19.115 2024-02-26 23:54:19.115 36000 TIP 439416 7558 6079922 2024-02-26 23:54:54.653 2024-02-26 23:54:54.653 1000 FEE 440010 4798 6079923 2024-02-26 23:54:54.653 2024-02-26 23:54:54.653 9000 TIP 440010 956 6079758 2024-02-26 23:23:29.306 2024-02-26 23:23:29.306 69300 TIP 440080 629 6079776 2024-02-26 23:25:55.292 2024-02-26 23:25:55.292 7700 FEE 440081 4768 6079777 2024-02-26 23:25:55.292 2024-02-26 23:25:55.292 69300 TIP 440081 19435 6079785 2024-02-26 23:26:57.907 2024-02-26 23:26:57.907 2100 FEE 439942 20852 6079786 2024-02-26 23:26:57.907 2024-02-26 23:26:57.907 18900 TIP 439942 20704 6079788 2024-02-26 23:27:30.918 2024-02-26 23:27:30.918 1000 FEE 439390 18736 6079789 2024-02-26 23:27:30.918 2024-02-26 23:27:30.918 9000 TIP 439390 18124 6079815 2024-02-26 23:33:16.424 2024-02-26 23:33:16.424 1000 FEE 440088 10393 6079818 2024-02-26 23:33:50.046 2024-02-26 23:33:50.046 2100 FEE 439298 20246 6079819 2024-02-26 23:33:50.046 2024-02-26 23:33:50.046 18900 TIP 439298 15119 6079823 2024-02-26 23:34:10.309 2024-02-26 23:34:10.309 5000 FEE 440056 15536 6079824 2024-02-26 23:34:10.309 2024-02-26 23:34:10.309 45000 TIP 440056 5701 6079825 2024-02-26 23:34:43.066 2024-02-26 23:34:43.066 10000 FEE 439729 20642 6079826 2024-02-26 23:34:43.066 2024-02-26 23:34:43.066 90000 TIP 439729 19446 6079766 2024-02-26 23:23:59.106 2024-02-26 23:23:59.106 9000 TIP 439822 8498 6079783 2024-02-26 23:26:37.852 2024-02-26 23:26:37.852 2100 FEE 439891 18832 6079784 2024-02-26 23:26:37.852 2024-02-26 23:26:37.852 18900 TIP 439891 2342 6079790 2024-02-26 23:27:31.069 2024-02-26 23:27:31.069 1000 FEE 439390 9378 6079791 2024-02-26 23:27:31.069 2024-02-26 23:27:31.069 9000 TIP 439390 18170 6079808 2024-02-26 23:31:47.734 2024-02-26 23:31:47.734 5000 FEE 439989 696 6079809 2024-02-26 23:31:47.734 2024-02-26 23:31:47.734 45000 TIP 439989 902 6079869 2024-02-26 23:47:22.198 2024-02-26 23:47:22.198 1000 FEE 440004 16336 6079870 2024-02-26 23:47:22.198 2024-02-26 23:47:22.198 9000 TIP 440004 1352 6079871 2024-02-26 23:47:22.413 2024-02-26 23:47:22.413 1000 FEE 440004 1180 6079872 2024-02-26 23:47:22.413 2024-02-26 23:47:22.413 9000 TIP 440004 21218 6079879 2024-02-26 23:47:23.223 2024-02-26 23:47:23.223 1000 FEE 440004 2832 6079880 2024-02-26 23:47:23.223 2024-02-26 23:47:23.223 9000 TIP 440004 17682 6079930 2024-02-26 23:54:57.391 2024-02-26 23:54:57.391 1000 FEE 440026 1209 6079931 2024-02-26 23:54:57.391 2024-02-26 23:54:57.391 9000 TIP 440026 14280 6079936 2024-02-26 23:54:57.641 2024-02-26 23:54:57.641 2000 FEE 440026 1438 6079937 2024-02-26 23:54:57.641 2024-02-26 23:54:57.641 18000 TIP 440026 19809 6079939 2024-02-26 23:55:00.07 2024-02-26 23:55:00.07 2100 FEE 440011 722 6079940 2024-02-26 23:55:00.07 2024-02-26 23:55:00.07 18900 TIP 440011 19952 6079947 2024-02-26 23:55:22.956 2024-02-26 23:55:22.956 2100 FEE 440078 20306 6079948 2024-02-26 23:55:22.956 2024-02-26 23:55:22.956 18900 TIP 440078 18453 6079967 2024-02-26 23:56:09.203 2024-02-26 23:56:09.203 4000 FEE 439530 940 6079968 2024-02-26 23:56:09.203 2024-02-26 23:56:09.203 36000 TIP 439530 1224 6079802 2024-02-26 23:30:04.507 2024-02-26 23:30:04.507 1000 FEE 440086 2338 6079831 2024-02-26 23:36:56.896 2024-02-26 23:36:56.896 100000 FEE 440090 9529 6079853 2024-02-26 23:39:12.261 2024-02-26 23:39:12.261 1000 FEE 439844 15148 6079854 2024-02-26 23:39:12.261 2024-02-26 23:39:12.261 9000 TIP 439844 18473 6079877 2024-02-26 23:47:23.033 2024-02-26 23:47:23.033 1000 FEE 440004 17639 6079878 2024-02-26 23:47:23.033 2024-02-26 23:47:23.033 9000 TIP 440004 1105 6079906 2024-02-26 23:54:07.402 2024-02-26 23:54:07.402 2100 FEE 439854 902 6079907 2024-02-26 23:54:07.402 2024-02-26 23:54:07.402 18900 TIP 439854 18743 6079928 2024-02-26 23:54:56.137 2024-02-26 23:54:56.137 1000 FEE 440010 2776 6079929 2024-02-26 23:54:56.137 2024-02-26 23:54:56.137 9000 TIP 440010 17147 6079949 2024-02-26 23:55:23.825 2024-02-26 23:55:23.825 1000 FEE 440097 11378 6079960 2024-02-26 23:56:00.345 2024-02-26 23:56:00.345 2100 FEE 439806 20897 6079961 2024-02-26 23:56:00.345 2024-02-26 23:56:00.345 18900 TIP 439806 9159 6079973 2024-02-26 23:56:15.908 2024-02-26 23:56:15.908 2100 FEE 439891 822 6079974 2024-02-26 23:56:15.908 2024-02-26 23:56:15.908 18900 TIP 439891 9342 6079992 2024-02-26 23:57:23.135 2024-02-26 23:57:23.135 9000 FEE 440095 20573 6079993 2024-02-26 23:57:23.135 2024-02-26 23:57:23.135 81000 TIP 440095 1472 6079995 2024-02-26 23:57:33.706 2024-02-26 23:57:33.706 1000 FEE 440099 5761 6080022 2024-02-26 23:59:36.637 2024-02-26 23:59:36.637 0 FEE 440094 19910 6080039 2024-02-27 00:00:45.804 2024-02-27 00:00:45.804 1000 FEE 439909 15103 6080040 2024-02-27 00:00:45.804 2024-02-27 00:00:45.804 9000 TIP 439909 19296 6080049 2024-02-27 00:00:54.814 2024-02-27 00:00:54.814 900 FEE 439760 1354 6080050 2024-02-27 00:00:54.814 2024-02-27 00:00:54.814 8100 TIP 439760 18618 6080053 2024-02-27 00:00:57.849 2024-02-27 00:00:57.849 900 FEE 439787 2233 6080054 2024-02-27 00:00:57.849 2024-02-27 00:00:57.849 8100 TIP 439787 16543 6080070 2024-02-27 00:01:06.325 2024-02-27 00:01:06.325 1000 FEE 439975 1751 6080071 2024-02-27 00:01:06.325 2024-02-27 00:01:06.325 9000 TIP 439975 12024 6080072 2024-02-27 00:01:14.794 2024-02-27 00:01:14.794 1000 FEE 440101 6361 6080092 2024-02-27 00:05:25.037 2024-02-27 00:05:25.037 7700 FEE 439844 20183 6080093 2024-02-27 00:05:25.037 2024-02-27 00:05:25.037 69300 TIP 439844 14906 6080146 2024-02-27 00:06:36.126 2024-02-27 00:06:36.126 100 FEE 439822 1960 6080147 2024-02-27 00:06:36.126 2024-02-27 00:06:36.126 900 TIP 439822 2088 6080162 2024-02-27 00:08:01.835 2024-02-27 00:08:01.835 1000 FEE 440107 17109 6080194 2024-02-27 00:12:56.558 2024-02-27 00:12:56.558 1000 FEE 439237 16230 6080195 2024-02-27 00:12:56.558 2024-02-27 00:12:56.558 9000 TIP 439237 4798 6080200 2024-02-27 00:12:58.518 2024-02-27 00:12:58.518 1000 FEE 439237 14950 6080201 2024-02-27 00:12:58.518 2024-02-27 00:12:58.518 9000 TIP 439237 913 6080223 2024-02-27 00:14:12.374 2024-02-27 00:14:12.374 1000 FEE 439171 14785 6080224 2024-02-27 00:14:12.374 2024-02-27 00:14:12.374 9000 TIP 439171 20182 6080259 2024-02-27 00:14:20.537 2024-02-27 00:14:20.537 1000 FEE 439171 9844 6080260 2024-02-27 00:14:20.537 2024-02-27 00:14:20.537 9000 TIP 439171 20201 6080269 2024-02-27 00:14:22.576 2024-02-27 00:14:22.576 1000 FEE 439171 19381 6080270 2024-02-27 00:14:22.576 2024-02-27 00:14:22.576 9000 TIP 439171 5694 6080310 2024-02-27 00:14:34.26 2024-02-27 00:14:34.26 1000 FEE 439171 6384 6080311 2024-02-27 00:14:34.26 2024-02-27 00:14:34.26 9000 TIP 439171 12744 6080314 2024-02-27 00:14:35.119 2024-02-27 00:14:35.119 1000 FEE 439171 2039 6080315 2024-02-27 00:14:35.119 2024-02-27 00:14:35.119 9000 TIP 439171 21386 6080332 2024-02-27 00:14:40.893 2024-02-27 00:14:40.893 1000 FEE 439171 8726 6080333 2024-02-27 00:14:40.893 2024-02-27 00:14:40.893 9000 TIP 439171 8926 6080338 2024-02-27 00:14:41.757 2024-02-27 00:14:41.757 1000 FEE 439171 20310 6080339 2024-02-27 00:14:41.757 2024-02-27 00:14:41.757 9000 TIP 439171 19193 6080344 2024-02-27 00:14:42.578 2024-02-27 00:14:42.578 1000 FEE 439171 654 6080345 2024-02-27 00:14:42.578 2024-02-27 00:14:42.578 9000 TIP 439171 13544 6080412 2024-02-27 00:14:57.69 2024-02-27 00:14:57.69 1000 FEE 439171 21416 6080413 2024-02-27 00:14:57.69 2024-02-27 00:14:57.69 9000 TIP 439171 20680 6080428 2024-02-27 00:15:01.214 2024-02-27 00:15:01.214 1000 FEE 439171 10102 6080429 2024-02-27 00:15:01.214 2024-02-27 00:15:01.214 9000 TIP 439171 13547 6080430 2024-02-27 00:15:01.659 2024-02-27 00:15:01.659 1000 FEE 439171 20353 6080431 2024-02-27 00:15:01.659 2024-02-27 00:15:01.659 9000 TIP 439171 12218 6080436 2024-02-27 00:16:07.726 2024-02-27 00:16:07.726 2100 FEE 440111 20006 6080437 2024-02-27 00:16:07.726 2024-02-27 00:16:07.726 18900 TIP 440111 9171 6080454 2024-02-27 00:16:59.299 2024-02-27 00:16:59.299 1000 FEE 439547 3396 6080455 2024-02-27 00:16:59.299 2024-02-27 00:16:59.299 9000 TIP 439547 14791 6080462 2024-02-27 00:17:01.442 2024-02-27 00:17:01.442 1000 FEE 439547 20623 6080463 2024-02-27 00:17:01.442 2024-02-27 00:17:01.442 9000 TIP 439547 12779 6080481 2024-02-27 00:17:05.782 2024-02-27 00:17:05.782 1000 FEE 439547 3304 6080482 2024-02-27 00:17:05.782 2024-02-27 00:17:05.782 9000 TIP 439547 1814 6080495 2024-02-27 00:17:08.937 2024-02-27 00:17:08.937 1000 FEE 439547 15833 6080496 2024-02-27 00:17:08.937 2024-02-27 00:17:08.937 9000 TIP 439547 19511 6080501 2024-02-27 00:17:13.879 2024-02-27 00:17:13.879 2100 FEE 440115 20222 6080502 2024-02-27 00:17:13.879 2024-02-27 00:17:13.879 18900 TIP 440115 2722 6080527 2024-02-27 00:20:39.322 2024-02-27 00:20:39.322 100000 DONT_LIKE_THIS 440056 9336 6080578 2024-02-27 00:29:52.624 2024-02-27 00:29:52.624 1000 FEE 440056 9159 6080579 2024-02-27 00:29:52.624 2024-02-27 00:29:52.624 9000 TIP 440056 17209 6080580 2024-02-27 00:30:01.305 2024-02-27 00:30:01.305 1000 FEE 440110 16594 6080581 2024-02-27 00:30:01.305 2024-02-27 00:30:01.305 9000 TIP 440110 11999 6080594 2024-02-27 00:31:11.106 2024-02-27 00:31:11.106 500 FEE 440056 11897 6080595 2024-02-27 00:31:11.106 2024-02-27 00:31:11.106 4500 TIP 440056 17517 6080602 2024-02-27 00:33:40.048 2024-02-27 00:33:40.048 2100 FEE 440056 8385 6080603 2024-02-27 00:33:40.048 2024-02-27 00:33:40.048 18900 TIP 440056 17030 6080617 2024-02-27 00:35:41.08 2024-02-27 00:35:41.08 1000 FEE 440046 16876 6080618 2024-02-27 00:35:41.08 2024-02-27 00:35:41.08 9000 TIP 440046 3656 6080635 2024-02-27 00:40:50.268 2024-02-27 00:40:50.268 6400 FEE 440132 5160 6080636 2024-02-27 00:40:50.268 2024-02-27 00:40:50.268 57600 TIP 440132 9476 6080642 2024-02-27 00:41:53.718 2024-02-27 00:41:53.718 1000 FEE 440132 10818 6080643 2024-02-27 00:41:53.718 2024-02-27 00:41:53.718 9000 TIP 440132 1519 6080652 2024-02-27 00:41:55.714 2024-02-27 00:41:55.714 1000 FEE 440132 16954 6080653 2024-02-27 00:41:55.714 2024-02-27 00:41:55.714 9000 TIP 440132 16513 6080674 2024-02-27 00:43:10.827 2024-02-27 00:43:10.827 1000 FEE 440075 20646 6080675 2024-02-27 00:43:10.827 2024-02-27 00:43:10.827 9000 TIP 440075 20551 6080678 2024-02-27 00:43:54.655 2024-02-27 00:43:54.655 10000 FEE 440133 10944 6080693 2024-02-27 00:49:26.93 2024-02-27 00:49:26.93 1000 FEE 439904 7773 6080694 2024-02-27 00:49:26.93 2024-02-27 00:49:26.93 9000 TIP 439904 17797 6080696 2024-02-27 00:50:51.912 2024-02-27 00:50:51.912 1000 FEE 440140 1495 6080710 2024-02-27 00:55:47.339 2024-02-27 00:55:47.339 2600 FEE 440057 964 6080711 2024-02-27 00:55:47.339 2024-02-27 00:55:47.339 23400 TIP 440057 21164 6080716 2024-02-27 00:57:21.927 2024-02-27 00:57:21.927 3000 FEE 440097 17714 6080717 2024-02-27 00:57:21.927 2024-02-27 00:57:21.927 27000 TIP 440097 19235 6080724 2024-02-27 00:59:09.186 2024-02-27 00:59:09.186 1000 FEE 440143 8870 6080737 2024-02-27 01:02:21.197 2024-02-27 01:02:21.197 69000 DONT_LIKE_THIS 440134 17148 6080743 2024-02-27 01:02:49.814 2024-02-27 01:02:49.814 9000 FEE 439999 631 6080744 2024-02-27 01:02:49.814 2024-02-27 01:02:49.814 81000 TIP 439999 16505 6080758 2024-02-27 01:05:04.442 2024-02-27 01:05:04.442 100 FEE 439907 16867 6080759 2024-02-27 01:05:04.442 2024-02-27 01:05:04.442 900 TIP 439907 15941 6080762 2024-02-27 01:05:07.953 2024-02-27 01:05:07.953 90000 FEE 439905 18663 6080763 2024-02-27 01:05:07.953 2024-02-27 01:05:07.953 810000 TIP 439905 19809 6079821 2024-02-26 23:33:50.896 2024-02-26 23:33:50.896 18900 TIP 439298 14267 6079846 2024-02-26 23:38:27.51 2024-02-26 23:38:27.51 1000 FEE 439315 18403 6079847 2024-02-26 23:38:27.51 2024-02-26 23:38:27.51 9000 TIP 439315 4166 6079897 2024-02-26 23:53:22.814 2024-02-26 23:53:22.814 10000 FEE 439844 16847 6079898 2024-02-26 23:53:22.814 2024-02-26 23:53:22.814 90000 TIP 439844 10934 6079910 2024-02-26 23:54:12.771 2024-02-26 23:54:12.771 2100 FEE 439861 638 6079911 2024-02-26 23:54:12.771 2024-02-26 23:54:12.771 18900 TIP 439861 17522 6079926 2024-02-26 23:54:55.441 2024-02-26 23:54:55.441 1000 FEE 440010 14990 6079927 2024-02-26 23:54:55.441 2024-02-26 23:54:55.441 9000 TIP 440010 7668 6079950 2024-02-26 23:55:35.803 2024-02-26 23:55:35.803 100 FEE 438065 1512 6079951 2024-02-26 23:55:35.803 2024-02-26 23:55:35.803 900 TIP 438065 5519 6079969 2024-02-26 23:56:09.205 2024-02-26 23:56:09.205 1000 FEE 440005 21292 6079970 2024-02-26 23:56:09.205 2024-02-26 23:56:09.205 9000 TIP 440005 19501 6079977 2024-02-26 23:56:30.933 2024-02-26 23:56:30.933 2100 FEE 440082 1495 6079978 2024-02-26 23:56:30.933 2024-02-26 23:56:30.933 18900 TIP 440082 19030 6080018 2024-02-26 23:59:29.03 2024-02-26 23:59:29.03 900 FEE 439947 16354 6080019 2024-02-26 23:59:29.03 2024-02-26 23:59:29.03 8100 TIP 439947 18005 6080020 2024-02-26 23:59:31.063 2024-02-26 23:59:31.063 9000 FEE 439947 17095 6080021 2024-02-26 23:59:31.063 2024-02-26 23:59:31.063 81000 TIP 439947 20691 6080041 2024-02-27 00:00:46.689 2024-02-27 00:00:46.689 1000 FEE 439955 16788 6080042 2024-02-27 00:00:46.689 2024-02-27 00:00:46.689 9000 TIP 439955 1030 6080065 2024-02-27 00:01:02.232 2024-02-27 00:01:02.232 1000 FEE 439941 20084 6080066 2024-02-27 00:01:02.232 2024-02-27 00:01:02.232 9000 TIP 439941 1577 6080096 2024-02-27 00:05:25.349 2024-02-27 00:05:25.349 7700 FEE 439844 14213 6080097 2024-02-27 00:05:25.349 2024-02-27 00:05:25.349 69300 TIP 439844 18280 6080098 2024-02-27 00:05:25.53 2024-02-27 00:05:25.53 7700 FEE 439844 16724 6080099 2024-02-27 00:05:25.53 2024-02-27 00:05:25.53 69300 TIP 439844 6327 6080104 2024-02-27 00:05:26.09 2024-02-27 00:05:26.09 7700 FEE 439844 720 6080105 2024-02-27 00:05:26.09 2024-02-27 00:05:26.09 69300 TIP 439844 11498 6080108 2024-02-27 00:05:26.707 2024-02-27 00:05:26.707 7700 FEE 439844 19930 6080109 2024-02-27 00:05:26.707 2024-02-27 00:05:26.707 69300 TIP 439844 2757 6080114 2024-02-27 00:05:27.959 2024-02-27 00:05:27.959 7700 FEE 439844 2774 6080115 2024-02-27 00:05:27.959 2024-02-27 00:05:27.959 69300 TIP 439844 12265 6080150 2024-02-27 00:06:36.275 2024-02-27 00:06:36.275 100 FEE 439822 2832 6080151 2024-02-27 00:06:36.275 2024-02-27 00:06:36.275 900 TIP 439822 1038 6080172 2024-02-27 00:10:34.813 2024-02-27 00:10:34.813 1000 FEE 440108 21140 6080231 2024-02-27 00:14:14.541 2024-02-27 00:14:14.541 1000 FEE 439171 1785 6080232 2024-02-27 00:14:14.541 2024-02-27 00:14:14.541 9000 TIP 439171 19502 6080253 2024-02-27 00:14:19.291 2024-02-27 00:14:19.291 1000 FEE 439171 18842 6080254 2024-02-27 00:14:19.291 2024-02-27 00:14:19.291 9000 TIP 439171 12774 6080261 2024-02-27 00:14:20.951 2024-02-27 00:14:20.951 1000 FEE 439171 2285 6080262 2024-02-27 00:14:20.951 2024-02-27 00:14:20.951 9000 TIP 439171 8045 6080265 2024-02-27 00:14:21.743 2024-02-27 00:14:21.743 1000 FEE 439171 19458 6080266 2024-02-27 00:14:21.743 2024-02-27 00:14:21.743 9000 TIP 439171 660 6080277 2024-02-27 00:14:24.433 2024-02-27 00:14:24.433 0 FEE 440111 17817 6080280 2024-02-27 00:14:26.983 2024-02-27 00:14:26.983 1000 FEE 439171 21248 6080281 2024-02-27 00:14:26.983 2024-02-27 00:14:26.983 9000 TIP 439171 18005 6080298 2024-02-27 00:14:31.721 2024-02-27 00:14:31.721 1000 FEE 439171 18232 6080299 2024-02-27 00:14:31.721 2024-02-27 00:14:31.721 9000 TIP 439171 20660 6080306 2024-02-27 00:14:33.334 2024-02-27 00:14:33.334 1000 FEE 439171 1105 6080307 2024-02-27 00:14:33.334 2024-02-27 00:14:33.334 9000 TIP 439171 18008 6080308 2024-02-27 00:14:33.835 2024-02-27 00:14:33.835 1000 FEE 439171 16834 6080309 2024-02-27 00:14:33.835 2024-02-27 00:14:33.835 9000 TIP 439171 19638 6080316 2024-02-27 00:14:35.533 2024-02-27 00:14:35.533 1000 FEE 439171 20904 6080317 2024-02-27 00:14:35.533 2024-02-27 00:14:35.533 9000 TIP 439171 19126 6080328 2024-02-27 00:14:40.043 2024-02-27 00:14:40.043 1000 FEE 439171 11938 6080329 2024-02-27 00:14:40.043 2024-02-27 00:14:40.043 9000 TIP 439171 19289 6080334 2024-02-27 00:14:41.106 2024-02-27 00:14:41.106 2100 FEE 440080 20062 6080335 2024-02-27 00:14:41.106 2024-02-27 00:14:41.106 18900 TIP 440080 1394 6080348 2024-02-27 00:14:43.904 2024-02-27 00:14:43.904 1000 FEE 439171 2195 6080349 2024-02-27 00:14:43.904 2024-02-27 00:14:43.904 9000 TIP 439171 21344 6080356 2024-02-27 00:14:45.164 2024-02-27 00:14:45.164 1000 FEE 439171 1618 6080357 2024-02-27 00:14:45.164 2024-02-27 00:14:45.164 9000 TIP 439171 20619 6080358 2024-02-27 00:14:45.635 2024-02-27 00:14:45.635 1000 FEE 439171 20182 6080359 2024-02-27 00:14:45.635 2024-02-27 00:14:45.635 9000 TIP 439171 17927 6080362 2024-02-27 00:14:46.467 2024-02-27 00:14:46.467 1000 FEE 439171 10359 6080363 2024-02-27 00:14:46.467 2024-02-27 00:14:46.467 9000 TIP 439171 16145 6080372 2024-02-27 00:14:48.661 2024-02-27 00:14:48.661 1000 FEE 439171 20871 6080373 2024-02-27 00:14:48.661 2024-02-27 00:14:48.661 9000 TIP 439171 2233 6080374 2024-02-27 00:14:49.097 2024-02-27 00:14:49.097 1000 FEE 439171 2075 6080375 2024-02-27 00:14:49.097 2024-02-27 00:14:49.097 9000 TIP 439171 3360 6080392 2024-02-27 00:14:53.043 2024-02-27 00:14:53.043 1000 FEE 439171 19557 6080393 2024-02-27 00:14:53.043 2024-02-27 00:14:53.043 9000 TIP 439171 21620 6080402 2024-02-27 00:14:55.204 2024-02-27 00:14:55.204 1000 FEE 439171 654 6080403 2024-02-27 00:14:55.204 2024-02-27 00:14:55.204 9000 TIP 439171 20646 6080408 2024-02-27 00:14:56.717 2024-02-27 00:14:56.717 1000 FEE 439171 20904 6080409 2024-02-27 00:14:56.717 2024-02-27 00:14:56.717 9000 TIP 439171 15115 6080418 2024-02-27 00:14:58.933 2024-02-27 00:14:58.933 1000 FEE 439171 1658 6080419 2024-02-27 00:14:58.933 2024-02-27 00:14:58.933 9000 TIP 439171 718 6080420 2024-02-27 00:14:59.378 2024-02-27 00:14:59.378 1000 FEE 439171 5828 6080421 2024-02-27 00:14:59.378 2024-02-27 00:14:59.378 9000 TIP 439171 20198 6080422 2024-02-27 00:14:59.794 2024-02-27 00:14:59.794 1000 FEE 439171 4048 6080423 2024-02-27 00:14:59.794 2024-02-27 00:14:59.794 9000 TIP 439171 14657 6080466 2024-02-27 00:17:02.406 2024-02-27 00:17:02.406 1000 FEE 439547 690 6080467 2024-02-27 00:17:02.406 2024-02-27 00:17:02.406 9000 TIP 439547 2514 6080472 2024-02-27 00:17:03.81 2024-02-27 00:17:03.81 1000 FEE 439547 2459 6080473 2024-02-27 00:17:03.81 2024-02-27 00:17:03.81 9000 TIP 439547 16347 6080479 2024-02-27 00:17:05.342 2024-02-27 00:17:05.342 1000 FEE 439547 636 6080480 2024-02-27 00:17:05.342 2024-02-27 00:17:05.342 9000 TIP 439547 10112 6080485 2024-02-27 00:17:06.657 2024-02-27 00:17:06.657 1000 FEE 439547 21463 6080486 2024-02-27 00:17:06.657 2024-02-27 00:17:06.657 9000 TIP 439547 20120 6079842 2024-02-26 23:38:27.104 2024-02-26 23:38:27.104 1000 FEE 439315 20756 6079843 2024-02-26 23:38:27.104 2024-02-26 23:38:27.104 9000 TIP 439315 18679 6079844 2024-02-26 23:38:27.32 2024-02-26 23:38:27.32 1000 FEE 439315 7674 6079845 2024-02-26 23:38:27.32 2024-02-26 23:38:27.32 9000 TIP 439315 18392 6079894 2024-02-26 23:52:12.695 2024-02-26 23:52:12.695 12800 FEE 439147 692 6079895 2024-02-26 23:52:12.695 2024-02-26 23:52:12.695 115200 TIP 439147 21527 6079914 2024-02-26 23:54:22.023 2024-02-26 23:54:22.023 2100 FEE 440082 5809 6079915 2024-02-26 23:54:22.023 2024-02-26 23:54:22.023 18900 TIP 440082 19500 6079916 2024-02-26 23:54:28.599 2024-02-26 23:54:28.599 2100 FEE 439857 19638 6079917 2024-02-26 23:54:28.599 2024-02-26 23:54:28.599 18900 TIP 439857 21455 6079945 2024-02-26 23:55:12.064 2024-02-26 23:55:12.064 2100 FEE 439937 13921 6079946 2024-02-26 23:55:12.064 2024-02-26 23:55:12.064 18900 TIP 439937 21145 6079958 2024-02-26 23:55:40.936 2024-02-26 23:55:40.936 2100 FEE 440056 21026 6079959 2024-02-26 23:55:40.936 2024-02-26 23:55:40.936 18900 TIP 440056 997 6079975 2024-02-26 23:56:25.472 2024-02-26 23:56:25.472 2100 FEE 440090 3353 6079976 2024-02-26 23:56:25.472 2024-02-26 23:56:25.472 18900 TIP 440090 14271 6079984 2024-02-26 23:57:13.121 2024-02-26 23:57:13.121 100 FEE 439263 14267 6079985 2024-02-26 23:57:13.121 2024-02-26 23:57:13.121 900 TIP 439263 21303 6079990 2024-02-26 23:57:22.609 2024-02-26 23:57:22.609 900 FEE 440095 1286 6079991 2024-02-26 23:57:22.609 2024-02-26 23:57:22.609 8100 TIP 440095 9109 6080029 2024-02-27 00:00:02.047 2024-02-27 00:00:02.047 900 FEE 439925 787 6080030 2024-02-27 00:00:02.047 2024-02-27 00:00:02.047 8100 TIP 439925 16788 6080035 2024-02-27 00:00:38.788 2024-02-27 00:00:38.788 100 FEE 439900 13348 6080036 2024-02-27 00:00:38.788 2024-02-27 00:00:38.788 900 TIP 439900 2232 6080037 2024-02-27 00:00:38.962 2024-02-27 00:00:38.962 900 FEE 439900 1970 6080038 2024-02-27 00:00:38.962 2024-02-27 00:00:38.962 8100 TIP 439900 18675 6080043 2024-02-27 00:00:47.678 2024-02-27 00:00:47.678 1000 FEE 439846 4313 6080044 2024-02-27 00:00:47.678 2024-02-27 00:00:47.678 9000 TIP 439846 15703 6080063 2024-02-27 00:01:01.326 2024-02-27 00:01:01.326 1000 FEE 439902 7818 6080064 2024-02-27 00:01:01.326 2024-02-27 00:01:01.326 9000 TIP 439902 19546 6080078 2024-02-27 00:02:00.754 2024-02-27 00:02:00.754 100 FEE 433943 21469 6080079 2024-02-27 00:02:00.754 2024-02-27 00:02:00.754 900 TIP 433943 6717 6080106 2024-02-27 00:05:26.299 2024-02-27 00:05:26.299 7700 FEE 439844 814 6080107 2024-02-27 00:05:26.299 2024-02-27 00:05:26.299 69300 TIP 439844 19034 6080120 2024-02-27 00:05:28.349 2024-02-27 00:05:28.349 7700 FEE 439844 5520 6080121 2024-02-27 00:05:28.349 2024-02-27 00:05:28.349 69300 TIP 439844 21047 6080152 2024-02-27 00:06:36.506 2024-02-27 00:06:36.506 100 FEE 439822 20180 6080153 2024-02-27 00:06:36.506 2024-02-27 00:06:36.506 900 TIP 439822 20854 6080160 2024-02-27 00:08:00.528 2024-02-27 00:08:00.528 3100 FEE 440104 11885 6080161 2024-02-27 00:08:00.528 2024-02-27 00:08:00.528 27900 TIP 440104 15160 6080174 2024-02-27 00:11:11.761 2024-02-27 00:11:11.761 1000 FEE 440109 19843 6080178 2024-02-27 00:11:48.777 2024-02-27 00:11:48.777 1000 FEE 440110 733 6080188 2024-02-27 00:12:55.239 2024-02-27 00:12:55.239 1000 FEE 439237 16939 6080189 2024-02-27 00:12:55.239 2024-02-27 00:12:55.239 9000 TIP 439237 1003 6080198 2024-02-27 00:12:58.073 2024-02-27 00:12:58.073 1000 FEE 439237 14152 6080199 2024-02-27 00:12:58.073 2024-02-27 00:12:58.073 9000 TIP 439237 2022 6080204 2024-02-27 00:12:58.929 2024-02-27 00:12:58.929 1000 FEE 439237 5701 6080205 2024-02-27 00:12:58.929 2024-02-27 00:12:58.929 9000 TIP 439237 2718 6080206 2024-02-27 00:12:59.236 2024-02-27 00:12:59.236 1000 FEE 439237 9184 6080207 2024-02-27 00:12:59.236 2024-02-27 00:12:59.236 9000 TIP 439237 706 6080217 2024-02-27 00:13:13.683 2024-02-27 00:13:13.683 1000 FEE 439263 19541 6080218 2024-02-27 00:13:13.683 2024-02-27 00:13:13.683 9000 TIP 439263 20993 6080235 2024-02-27 00:14:15.446 2024-02-27 00:14:15.446 1000 FEE 439171 12268 6080236 2024-02-27 00:14:15.446 2024-02-27 00:14:15.446 9000 TIP 439171 1175 6080245 2024-02-27 00:14:17.495 2024-02-27 00:14:17.495 1000 FEE 439171 1577 6080246 2024-02-27 00:14:17.495 2024-02-27 00:14:17.495 9000 TIP 439171 18529 6080257 2024-02-27 00:14:20.045 2024-02-27 00:14:20.045 1000 FEE 439171 19378 6080258 2024-02-27 00:14:20.045 2024-02-27 00:14:20.045 9000 TIP 439171 661 6080275 2024-02-27 00:14:24.074 2024-02-27 00:14:24.074 1000 FEE 439171 20109 6080276 2024-02-27 00:14:24.074 2024-02-27 00:14:24.074 9000 TIP 439171 18476 6080282 2024-02-27 00:14:27.393 2024-02-27 00:14:27.393 1000 FEE 439171 10586 6080283 2024-02-27 00:14:27.393 2024-02-27 00:14:27.393 9000 TIP 439171 21222 6080288 2024-02-27 00:14:29.587 2024-02-27 00:14:29.587 1000 FEE 439171 8796 6080289 2024-02-27 00:14:29.587 2024-02-27 00:14:29.587 9000 TIP 439171 19633 6080290 2024-02-27 00:14:29.988 2024-02-27 00:14:29.988 1000 FEE 439171 19018 6080291 2024-02-27 00:14:29.988 2024-02-27 00:14:29.988 9000 TIP 439171 2640 6080294 2024-02-27 00:14:30.809 2024-02-27 00:14:30.809 1000 FEE 439171 18533 6080295 2024-02-27 00:14:30.809 2024-02-27 00:14:30.809 9000 TIP 439171 12821 6080330 2024-02-27 00:14:40.568 2024-02-27 00:14:40.568 1000 FEE 439171 21455 6080331 2024-02-27 00:14:40.568 2024-02-27 00:14:40.568 9000 TIP 439171 18269 6080350 2024-02-27 00:14:43.914 2024-02-27 00:14:43.914 1000 FEE 439171 5776 6080351 2024-02-27 00:14:43.914 2024-02-27 00:14:43.914 9000 TIP 439171 20901 6080364 2024-02-27 00:14:46.9 2024-02-27 00:14:46.9 1000 FEE 439171 21485 6080365 2024-02-27 00:14:46.9 2024-02-27 00:14:46.9 9000 TIP 439171 15180 6080368 2024-02-27 00:14:47.884 2024-02-27 00:14:47.884 1000 FEE 439171 4035 6080369 2024-02-27 00:14:47.884 2024-02-27 00:14:47.884 9000 TIP 439171 21430 6080380 2024-02-27 00:14:50.485 2024-02-27 00:14:50.485 1000 FEE 439171 21036 6080381 2024-02-27 00:14:50.485 2024-02-27 00:14:50.485 9000 TIP 439171 4459 6080382 2024-02-27 00:14:50.921 2024-02-27 00:14:50.921 1000 FEE 439171 21233 6080383 2024-02-27 00:14:50.921 2024-02-27 00:14:50.921 9000 TIP 439171 5701 6080406 2024-02-27 00:14:56.165 2024-02-27 00:14:56.165 1000 FEE 439171 12921 6080407 2024-02-27 00:14:56.165 2024-02-27 00:14:56.165 9000 TIP 439171 14515 6080438 2024-02-27 00:16:08.244 2024-02-27 00:16:08.244 1000 FEE 440114 9078 6080448 2024-02-27 00:16:51.693 2024-02-27 00:16:51.693 10000 FEE 440056 18313 6080449 2024-02-27 00:16:51.693 2024-02-27 00:16:51.693 90000 TIP 440056 626 6080476 2024-02-27 00:17:04.735 2024-02-27 00:17:04.735 1000 FEE 439547 7847 6080477 2024-02-27 00:17:04.735 2024-02-27 00:17:04.735 9000 TIP 439547 6421 6080489 2024-02-27 00:17:07.636 2024-02-27 00:17:07.636 1000 FEE 439547 11153 6080490 2024-02-27 00:17:07.636 2024-02-27 00:17:07.636 9000 TIP 439547 8508 6080510 2024-02-27 00:18:36.68 2024-02-27 00:18:36.68 0 FEE 440113 17030 6080514 2024-02-27 00:19:35.178 2024-02-27 00:19:35.178 1000 FEE 439936 18528 6080515 2024-02-27 00:19:35.178 2024-02-27 00:19:35.178 9000 TIP 439936 13249 6080577 2024-02-27 00:29:12.592 2024-02-27 00:29:12.592 5000 FEE 440128 20490 6080596 2024-02-27 00:31:19.691 2024-02-27 00:31:19.691 500 FEE 440110 1800 6080597 2024-02-27 00:31:19.691 2024-02-27 00:31:19.691 4500 TIP 440110 16356 6080612 2024-02-27 00:34:42.843 2024-02-27 00:34:42.843 1000 FEE 439938 12289 6079858 2024-02-26 23:41:03.042 2024-02-26 23:41:03.042 1000 STREAM 141924 5444 6079866 2024-02-26 23:46:03.067 2024-02-26 23:46:03.067 1000 STREAM 141924 20280 6079868 2024-02-26 23:47:03.062 2024-02-26 23:47:03.062 1000 STREAM 141924 16808 6079893 2024-02-26 23:52:03.092 2024-02-26 23:52:03.092 1000 STREAM 141924 8459 6079962 2024-02-26 23:56:03.109 2024-02-26 23:56:03.109 1000 STREAM 141924 20614 6080083 2024-02-27 00:04:03.308 2024-02-27 00:04:03.308 1000 STREAM 141924 17673 6080163 2024-02-27 00:08:03.162 2024-02-27 00:08:03.162 1000 STREAM 141924 17797 6080179 2024-02-27 00:12:03.175 2024-02-27 00:12:03.175 1000 STREAM 141924 12736 6080505 2024-02-27 00:18:03.214 2024-02-27 00:18:03.214 1000 STREAM 141924 10586 6080552 2024-02-27 00:22:03.245 2024-02-27 00:22:03.245 1000 STREAM 141924 21391 6080558 2024-02-27 00:23:03.273 2024-02-27 00:23:03.273 1000 STREAM 141924 19813 6080575 2024-02-27 00:28:03.308 2024-02-27 00:28:03.308 1000 STREAM 141924 2101 6080576 2024-02-27 00:29:03.321 2024-02-27 00:29:03.321 1000 STREAM 141924 17109 6079924 2024-02-26 23:54:54.888 2024-02-26 23:54:54.888 1000 FEE 440010 15367 6079925 2024-02-26 23:54:54.888 2024-02-26 23:54:54.888 9000 TIP 440010 17446 6079938 2024-02-26 23:54:59.53 2024-02-26 23:54:59.53 1000 FEE 440095 21540 6079944 2024-02-26 23:55:04.649 2024-02-26 23:55:04.649 1000 FEE 440096 4084 6079956 2024-02-26 23:55:36.217 2024-02-26 23:55:36.217 100 FEE 438065 20412 6079957 2024-02-26 23:55:36.217 2024-02-26 23:55:36.217 900 TIP 438065 1624 6079965 2024-02-26 23:56:08.991 2024-02-26 23:56:08.991 1000 FEE 440005 17064 6079966 2024-02-26 23:56:08.991 2024-02-26 23:56:08.991 9000 TIP 440005 18809 6079971 2024-02-26 23:56:12.67 2024-02-26 23:56:12.67 4000 FEE 439551 18446 6079972 2024-02-26 23:56:12.67 2024-02-26 23:56:12.67 36000 TIP 439551 680 6079981 2024-02-26 23:56:45.398 2024-02-26 23:56:45.398 800 FEE 439658 20596 6079982 2024-02-26 23:56:45.398 2024-02-26 23:56:45.398 7200 TIP 439658 661 6080014 2024-02-26 23:59:20.085 2024-02-26 23:59:20.085 9000 FEE 439987 18815 6080015 2024-02-26 23:59:20.085 2024-02-26 23:59:20.085 81000 TIP 439987 695 6080025 2024-02-26 23:59:54.32 2024-02-26 23:59:54.32 2100 FEE 351627 21520 6080026 2024-02-26 23:59:54.32 2024-02-26 23:59:54.32 18900 TIP 351627 11018 6080034 2024-02-27 00:00:33.393 2024-02-27 00:00:33.393 1000 FEE 440100 14376 6080045 2024-02-27 00:00:52.609 2024-02-27 00:00:52.609 1000 FEE 439880 21506 6080046 2024-02-27 00:00:52.609 2024-02-27 00:00:52.609 9000 TIP 439880 6335 6080047 2024-02-27 00:00:54.52 2024-02-27 00:00:54.52 100 FEE 439760 15337 6080048 2024-02-27 00:00:54.52 2024-02-27 00:00:54.52 900 TIP 439760 21339 6080076 2024-02-27 00:02:00.532 2024-02-27 00:02:00.532 100 FEE 433943 642 6080077 2024-02-27 00:02:00.532 2024-02-27 00:02:00.532 900 TIP 433943 21138 6080102 2024-02-27 00:05:25.913 2024-02-27 00:05:25.913 7700 FEE 439844 6335 6080103 2024-02-27 00:05:25.913 2024-02-27 00:05:25.913 69300 TIP 439844 20841 6080132 2024-02-27 00:05:30.479 2024-02-27 00:05:30.479 7700 FEE 439844 19878 6080133 2024-02-27 00:05:30.479 2024-02-27 00:05:30.479 69300 TIP 439844 897 6080158 2024-02-27 00:06:58.166 2024-02-27 00:06:58.166 1000 FEE 440106 9982 6080210 2024-02-27 00:13:00.177 2024-02-27 00:13:00.177 1000 FEE 439237 8059 6080211 2024-02-27 00:13:00.177 2024-02-27 00:13:00.177 9000 TIP 439237 4250 6080219 2024-02-27 00:13:54.911 2024-02-27 00:13:54.911 1000 FEE 440111 16988 6080221 2024-02-27 00:14:11.838 2024-02-27 00:14:11.838 1000 FEE 439171 18392 6080222 2024-02-27 00:14:11.838 2024-02-27 00:14:11.838 9000 TIP 439171 21575 6080227 2024-02-27 00:14:13.705 2024-02-27 00:14:13.705 1000 FEE 439171 12609 6080228 2024-02-27 00:14:13.705 2024-02-27 00:14:13.705 9000 TIP 439171 1493 6079979 2024-02-26 23:56:44.609 2024-02-26 23:56:44.609 2100 FEE 440056 19007 6079980 2024-02-26 23:56:44.609 2024-02-26 23:56:44.609 18900 TIP 440056 21457 6079999 2024-02-26 23:58:10.074 2024-02-26 23:58:10.074 900 FEE 440079 20603 6080000 2024-02-26 23:58:10.074 2024-02-26 23:58:10.074 8100 TIP 440079 1136 6080001 2024-02-26 23:58:10.865 2024-02-26 23:58:10.865 9000 FEE 440079 14785 6080002 2024-02-26 23:58:10.865 2024-02-26 23:58:10.865 81000 TIP 440079 1985 6080007 2024-02-26 23:58:33.135 2024-02-26 23:58:33.135 900 FEE 440028 16653 6080008 2024-02-26 23:58:33.135 2024-02-26 23:58:33.135 8100 TIP 440028 7869 6080023 2024-02-26 23:59:41.021 2024-02-26 23:59:41.021 1000 FEE 439926 15521 6080024 2024-02-26 23:59:41.021 2024-02-26 23:59:41.021 9000 TIP 439926 20546 6080027 2024-02-27 00:00:01.997 2024-02-27 00:00:01.997 100 FEE 439925 994 6080028 2024-02-27 00:00:01.997 2024-02-27 00:00:01.997 900 TIP 439925 633 6080057 2024-02-27 00:00:58.091 2024-02-27 00:00:58.091 900 FEE 439856 899 6080058 2024-02-27 00:00:58.091 2024-02-27 00:00:58.091 8100 TIP 439856 12049 6080059 2024-02-27 00:00:58.677 2024-02-27 00:00:58.677 100 FEE 439768 14357 6080060 2024-02-27 00:00:58.677 2024-02-27 00:00:58.677 900 TIP 439768 14552 6080068 2024-02-27 00:01:04.704 2024-02-27 00:01:04.704 1000 FEE 440017 1803 6080069 2024-02-27 00:01:04.704 2024-02-27 00:01:04.704 9000 TIP 440017 664 6080081 2024-02-27 00:02:07.013 2024-02-27 00:02:07.013 1000 FEE 440103 16456 6080084 2024-02-27 00:04:06.919 2024-02-27 00:04:06.919 1000 FEE 440104 18154 6080088 2024-02-27 00:05:24.597 2024-02-27 00:05:24.597 7700 FEE 439844 21620 6080089 2024-02-27 00:05:24.597 2024-02-27 00:05:24.597 69300 TIP 439844 20781 6080112 2024-02-27 00:05:27.11 2024-02-27 00:05:27.11 7700 FEE 439844 20133 6080113 2024-02-27 00:05:27.11 2024-02-27 00:05:27.11 69300 TIP 439844 7558 6080116 2024-02-27 00:05:28.24 2024-02-27 00:05:28.24 7700 FEE 439844 21506 6080117 2024-02-27 00:05:28.24 2024-02-27 00:05:28.24 69300 TIP 439844 8423 6080118 2024-02-27 00:05:28.293 2024-02-27 00:05:28.293 7700 FEE 439844 891 6080119 2024-02-27 00:05:28.293 2024-02-27 00:05:28.293 69300 TIP 439844 1141 6080122 2024-02-27 00:05:28.523 2024-02-27 00:05:28.523 7700 FEE 439844 696 6080123 2024-02-27 00:05:28.523 2024-02-27 00:05:28.523 69300 TIP 439844 19235 6080124 2024-02-27 00:05:28.762 2024-02-27 00:05:28.762 7700 FEE 439844 15200 6080125 2024-02-27 00:05:28.762 2024-02-27 00:05:28.762 69300 TIP 439844 16059 6080126 2024-02-27 00:05:29.044 2024-02-27 00:05:29.044 7700 FEE 439844 5173 6080127 2024-02-27 00:05:29.044 2024-02-27 00:05:29.044 69300 TIP 439844 2042 6080128 2024-02-27 00:05:29.383 2024-02-27 00:05:29.383 7700 FEE 439844 2640 6080129 2024-02-27 00:05:29.383 2024-02-27 00:05:29.383 69300 TIP 439844 19826 6080145 2024-02-27 00:06:15.513 2024-02-27 00:06:15.513 1000 FEE 440105 20757 6080176 2024-02-27 00:11:44.572 2024-02-27 00:11:44.572 1000 FEE 440056 13763 6080177 2024-02-27 00:11:44.572 2024-02-27 00:11:44.572 9000 TIP 440056 19243 6080215 2024-02-27 00:13:12.24 2024-02-27 00:13:12.24 1000 FEE 439263 11590 6080216 2024-02-27 00:13:12.24 2024-02-27 00:13:12.24 9000 TIP 439263 705 6080233 2024-02-27 00:14:14.991 2024-02-27 00:14:14.991 1000 FEE 439171 19501 6080234 2024-02-27 00:14:14.991 2024-02-27 00:14:14.991 9000 TIP 439171 14489 6080249 2024-02-27 00:14:18.348 2024-02-27 00:14:18.348 1000 FEE 439171 701 6080250 2024-02-27 00:14:18.348 2024-02-27 00:14:18.348 9000 TIP 439171 777 6080263 2024-02-27 00:14:21.349 2024-02-27 00:14:21.349 1000 FEE 439171 12821 6079989 2024-02-26 23:57:22.294 2024-02-26 23:57:22.294 900 TIP 440095 1354 6080074 2024-02-27 00:02:00.299 2024-02-27 00:02:00.299 100 FEE 433943 10944 6080075 2024-02-27 00:02:00.299 2024-02-27 00:02:00.299 900 TIP 433943 18231 6080100 2024-02-27 00:05:25.708 2024-02-27 00:05:25.708 7700 FEE 439844 20979 6080101 2024-02-27 00:05:25.708 2024-02-27 00:05:25.708 69300 TIP 439844 13198 6080130 2024-02-27 00:05:30.262 2024-02-27 00:05:30.262 7700 FEE 439844 7998 6080131 2024-02-27 00:05:30.262 2024-02-27 00:05:30.262 69300 TIP 439844 937 6080136 2024-02-27 00:05:31.301 2024-02-27 00:05:31.301 7700 FEE 439844 13753 6080137 2024-02-27 00:05:31.301 2024-02-27 00:05:31.301 69300 TIP 439844 4474 6080138 2024-02-27 00:05:31.85 2024-02-27 00:05:31.85 7700 FEE 439844 13169 6080139 2024-02-27 00:05:31.85 2024-02-27 00:05:31.85 69300 TIP 439844 10668 6080140 2024-02-27 00:05:55.384 2024-02-27 00:05:55.384 7700 FEE 439930 882 6080141 2024-02-27 00:05:55.384 2024-02-27 00:05:55.384 69300 TIP 439930 15119 6080142 2024-02-27 00:05:56.953 2024-02-27 00:05:56.953 7700 FEE 439930 18178 6080143 2024-02-27 00:05:56.953 2024-02-27 00:05:56.953 69300 TIP 439930 20586 6080156 2024-02-27 00:06:48.487 2024-02-27 00:06:48.487 7700 FEE 440056 9356 6080157 2024-02-27 00:06:48.487 2024-02-27 00:06:48.487 69300 TIP 440056 21061 6080164 2024-02-27 00:08:06.812 2024-02-27 00:08:06.812 27900 FEE 440104 8648 6080165 2024-02-27 00:08:06.812 2024-02-27 00:08:06.812 251100 TIP 440104 1564 6080168 2024-02-27 00:08:36.865 2024-02-27 00:08:36.865 7700 FEE 439917 16004 6080169 2024-02-27 00:08:36.865 2024-02-27 00:08:36.865 69300 TIP 439917 15213 6080175 2024-02-27 00:11:30.514 2024-02-27 00:11:30.514 0 FEE 440109 18199 6080186 2024-02-27 00:12:54.678 2024-02-27 00:12:54.678 1000 FEE 439237 9356 6080187 2024-02-27 00:12:54.678 2024-02-27 00:12:54.678 9000 TIP 439237 4177 6080202 2024-02-27 00:12:58.627 2024-02-27 00:12:58.627 1000 FEE 439237 6499 6080203 2024-02-27 00:12:58.627 2024-02-27 00:12:58.627 9000 TIP 439237 15075 6080208 2024-02-27 00:12:59.791 2024-02-27 00:12:59.791 1000 FEE 439237 18664 6080209 2024-02-27 00:12:59.791 2024-02-27 00:12:59.791 9000 TIP 439237 21379 6080213 2024-02-27 00:13:11.578 2024-02-27 00:13:11.578 1000 FEE 439263 20581 6080214 2024-02-27 00:13:11.578 2024-02-27 00:13:11.578 9000 TIP 439263 4175 6080237 2024-02-27 00:14:15.894 2024-02-27 00:14:15.894 1000 FEE 439171 9177 6080238 2024-02-27 00:14:15.894 2024-02-27 00:14:15.894 9000 TIP 439171 19469 6080267 2024-02-27 00:14:22.161 2024-02-27 00:14:22.161 1000 FEE 439171 664 6080268 2024-02-27 00:14:22.161 2024-02-27 00:14:22.161 9000 TIP 439171 19622 6080302 2024-02-27 00:14:32.525 2024-02-27 00:14:32.525 1000 FEE 439171 19987 6080303 2024-02-27 00:14:32.525 2024-02-27 00:14:32.525 9000 TIP 439171 20778 6080304 2024-02-27 00:14:32.955 2024-02-27 00:14:32.955 1000 FEE 439171 708 6080305 2024-02-27 00:14:32.955 2024-02-27 00:14:32.955 9000 TIP 439171 19471 6080318 2024-02-27 00:14:35.946 2024-02-27 00:14:35.946 1000 FEE 439171 5538 6080319 2024-02-27 00:14:35.946 2024-02-27 00:14:35.946 9000 TIP 439171 21609 6080320 2024-02-27 00:14:36.724 2024-02-27 00:14:36.724 2100 FEE 439987 2537 6080321 2024-02-27 00:14:36.724 2024-02-27 00:14:36.724 18900 TIP 439987 4798 6080354 2024-02-27 00:14:44.736 2024-02-27 00:14:44.736 1000 FEE 439171 21218 6080355 2024-02-27 00:14:44.736 2024-02-27 00:14:44.736 9000 TIP 439171 17212 6080376 2024-02-27 00:14:49.464 2024-02-27 00:14:49.464 1000 FEE 439171 1320 6080377 2024-02-27 00:14:49.464 2024-02-27 00:14:49.464 9000 TIP 439171 10591 6080398 2024-02-27 00:14:54.358 2024-02-27 00:14:54.358 1000 FEE 439171 20479 6080399 2024-02-27 00:14:54.358 2024-02-27 00:14:54.358 9000 TIP 439171 21430 6080404 2024-02-27 00:14:55.722 2024-02-27 00:14:55.722 1000 FEE 439171 21067 6080405 2024-02-27 00:14:55.722 2024-02-27 00:14:55.722 9000 TIP 439171 18357 6080426 2024-02-27 00:15:00.732 2024-02-27 00:15:00.732 1000 FEE 439171 18557 6080427 2024-02-27 00:15:00.732 2024-02-27 00:15:00.732 9000 TIP 439171 20110 6080460 2024-02-27 00:17:00.822 2024-02-27 00:17:00.822 1000 FEE 439547 2952 6080461 2024-02-27 00:17:00.822 2024-02-27 00:17:00.822 9000 TIP 439547 10549 6080464 2024-02-27 00:17:01.93 2024-02-27 00:17:01.93 1000 FEE 439547 11417 6080465 2024-02-27 00:17:01.93 2024-02-27 00:17:01.93 9000 TIP 439547 20190 6080468 2024-02-27 00:17:02.857 2024-02-27 00:17:02.857 1000 FEE 439547 14705 6080469 2024-02-27 00:17:02.857 2024-02-27 00:17:02.857 9000 TIP 439547 20826 6080474 2024-02-27 00:17:04.3 2024-02-27 00:17:04.3 1000 FEE 439547 11329 6080475 2024-02-27 00:17:04.3 2024-02-27 00:17:04.3 9000 TIP 439547 17455 6080518 2024-02-27 00:19:35.479 2024-02-27 00:19:35.479 1000 FEE 439936 19121 6080154 2024-02-27 00:06:44.316 2024-02-27 00:06:44.316 7700 FEE 440056 2390 6080155 2024-02-27 00:06:44.316 2024-02-27 00:06:44.316 69300 TIP 440056 2151 6080166 2024-02-27 00:08:28.131 2024-02-27 00:08:28.131 10000 FEE 440106 1428 6080167 2024-02-27 00:08:28.131 2024-02-27 00:08:28.131 90000 TIP 440106 15858 6080184 2024-02-27 00:12:54.172 2024-02-27 00:12:54.172 1000 FEE 439237 16998 6080185 2024-02-27 00:12:54.172 2024-02-27 00:12:54.172 9000 TIP 439237 20243 6080192 2024-02-27 00:12:56.111 2024-02-27 00:12:56.111 1000 FEE 439237 617 6080193 2024-02-27 00:12:56.111 2024-02-27 00:12:56.111 9000 TIP 439237 18816 6080229 2024-02-27 00:14:14.14 2024-02-27 00:14:14.14 1000 FEE 439171 7659 6080230 2024-02-27 00:14:14.14 2024-02-27 00:14:14.14 9000 TIP 439171 21247 6080251 2024-02-27 00:14:18.78 2024-02-27 00:14:18.78 1000 FEE 439171 15588 6080252 2024-02-27 00:14:18.78 2024-02-27 00:14:18.78 9000 TIP 439171 19465 6080286 2024-02-27 00:14:29.169 2024-02-27 00:14:29.169 1000 FEE 439171 19289 6080287 2024-02-27 00:14:29.169 2024-02-27 00:14:29.169 9000 TIP 439171 16154 6080292 2024-02-27 00:14:30.397 2024-02-27 00:14:30.397 1000 FEE 439171 9921 6080293 2024-02-27 00:14:30.397 2024-02-27 00:14:30.397 9000 TIP 439171 21216 6080322 2024-02-27 00:14:38.793 2024-02-27 00:14:38.793 1000 FEE 439171 3686 6080323 2024-02-27 00:14:38.793 2024-02-27 00:14:38.793 9000 TIP 439171 11862 6080336 2024-02-27 00:14:41.349 2024-02-27 00:14:41.349 1000 FEE 439171 21455 6080337 2024-02-27 00:14:41.349 2024-02-27 00:14:41.349 9000 TIP 439171 859 6080346 2024-02-27 00:14:43.627 2024-02-27 00:14:43.627 1000 FEE 439171 11897 6080347 2024-02-27 00:14:43.627 2024-02-27 00:14:43.627 9000 TIP 439171 19943 6080360 2024-02-27 00:14:46.06 2024-02-27 00:14:46.06 1000 FEE 439171 9365 6080361 2024-02-27 00:14:46.06 2024-02-27 00:14:46.06 9000 TIP 439171 20775 6080378 2024-02-27 00:14:49.949 2024-02-27 00:14:49.949 1000 FEE 439171 685 6080379 2024-02-27 00:14:49.949 2024-02-27 00:14:49.949 9000 TIP 439171 1261 6080388 2024-02-27 00:14:52.132 2024-02-27 00:14:52.132 1000 FEE 439171 15560 6080389 2024-02-27 00:14:52.132 2024-02-27 00:14:52.132 9000 TIP 439171 661 6080390 2024-02-27 00:14:52.566 2024-02-27 00:14:52.566 1000 FEE 439171 19329 6080391 2024-02-27 00:14:52.566 2024-02-27 00:14:52.566 9000 TIP 439171 5578 6080410 2024-02-27 00:14:57.128 2024-02-27 00:14:57.128 1000 FEE 439171 6594 6080411 2024-02-27 00:14:57.128 2024-02-27 00:14:57.128 9000 TIP 439171 1585 6080414 2024-02-27 00:14:58.631 2024-02-27 00:14:58.631 1000 FEE 439171 18815 6080415 2024-02-27 00:14:58.631 2024-02-27 00:14:58.631 9000 TIP 439171 19044 6080433 2024-02-27 00:15:24.099 2024-02-27 00:15:24.099 1000 FEE 440112 16942 6080441 2024-02-27 00:16:11.95 2024-02-27 00:16:11.95 2100 FEE 440110 21356 6080442 2024-02-27 00:16:11.95 2024-02-27 00:16:11.95 18900 TIP 440110 14950 6080450 2024-02-27 00:16:56.83 2024-02-27 00:16:56.83 1000 FEE 439547 18426 6080451 2024-02-27 00:16:56.83 2024-02-27 00:16:56.83 9000 TIP 439547 7682 6080499 2024-02-27 00:17:10.013 2024-02-27 00:17:10.013 1000 FEE 439547 21296 6080500 2024-02-27 00:17:10.013 2024-02-27 00:17:10.013 9000 TIP 439547 14278 6080513 2024-02-27 00:19:20.679 2024-02-27 00:19:20.679 1000 FEE 440118 1291 6080566 2024-02-27 00:25:53.876 2024-02-27 00:25:53.876 1000 FEE 440125 16149 6080569 2024-02-27 00:26:37.1 2024-02-27 00:26:37.1 1000 FEE 439946 21332 6080570 2024-02-27 00:26:37.1 2024-02-27 00:26:37.1 9000 TIP 439946 15594 6080571 2024-02-27 00:26:59.179 2024-02-27 00:26:59.179 5000 FEE 439987 1881 6080572 2024-02-27 00:26:59.179 2024-02-27 00:26:59.179 45000 TIP 439987 2065 6080574 2024-02-27 00:27:15.757 2024-02-27 00:27:15.757 1000 FEE 440127 18640 6080582 2024-02-27 00:30:02.983 2024-02-27 00:30:02.983 1000 FEE 440121 20687 6080583 2024-02-27 00:30:02.983 2024-02-27 00:30:02.983 9000 TIP 440121 21208 6080615 2024-02-27 00:35:30.036 2024-02-27 00:35:30.036 1000 FEE 440046 21356 6080616 2024-02-27 00:35:30.036 2024-02-27 00:35:30.036 9000 TIP 440046 6041 6080623 2024-02-27 00:38:53.688 2024-02-27 00:38:53.688 1000 FEE 440131 18199 6080672 2024-02-27 00:43:10.156 2024-02-27 00:43:10.156 1000 FEE 440075 5455 6080673 2024-02-27 00:43:10.156 2024-02-27 00:43:10.156 9000 TIP 440075 19795 6080718 2024-02-27 00:57:26.859 2024-02-27 00:57:26.859 3000 FEE 440122 7903 6080719 2024-02-27 00:57:26.859 2024-02-27 00:57:26.859 27000 TIP 440122 20490 6080736 2024-02-27 01:02:19.197 2024-02-27 01:02:19.197 50000 FEE 440147 750 6080798 2024-02-27 01:08:44.955 2024-02-27 01:08:44.955 6900 FEE 440132 11897 6080799 2024-02-27 01:08:44.955 2024-02-27 01:08:44.955 62100 TIP 440132 9167 6080808 2024-02-27 01:11:02.87 2024-02-27 01:11:02.87 4000 FEE 439990 6526 6080809 2024-02-27 01:11:02.87 2024-02-27 01:11:02.87 36000 TIP 439990 19613 6080830 2024-02-27 01:15:30.335 2024-02-27 01:15:30.335 1000 FEE 439844 18017 6080831 2024-02-27 01:15:30.335 2024-02-27 01:15:30.335 9000 TIP 439844 11648 6080834 2024-02-27 01:15:51.352 2024-02-27 01:15:51.352 1000 FEE 440128 12921 6080835 2024-02-27 01:15:51.352 2024-02-27 01:15:51.352 9000 TIP 440128 5779 6080839 2024-02-27 01:18:07.732 2024-02-27 01:18:07.732 4000 FEE 440152 18608 6080840 2024-02-27 01:18:07.732 2024-02-27 01:18:07.732 36000 TIP 440152 16667 6080856 2024-02-27 01:23:12.613 2024-02-27 01:23:12.613 3000 FEE 179354 10981 6080857 2024-02-27 01:23:12.613 2024-02-27 01:23:12.613 27000 TIP 179354 10944 6080863 2024-02-27 01:24:17.316 2024-02-27 01:24:17.316 1000 POLL 440155 17046 6080880 2024-02-27 01:30:13.103 2024-02-27 01:30:13.103 4400 FEE 439764 1697 6080881 2024-02-27 01:30:13.103 2024-02-27 01:30:13.103 39600 TIP 439764 17673 6080887 2024-02-27 01:32:45.463 2024-02-27 01:32:45.463 100 FEE 438316 667 6080888 2024-02-27 01:32:45.463 2024-02-27 01:32:45.463 900 TIP 438316 14267 6080891 2024-02-27 01:32:47.541 2024-02-27 01:32:47.541 100 FEE 438315 17331 6080892 2024-02-27 01:32:47.541 2024-02-27 01:32:47.541 900 TIP 438315 20523 6080907 2024-02-27 01:32:51.366 2024-02-27 01:32:51.366 100 FEE 438338 11956 6080908 2024-02-27 01:32:51.366 2024-02-27 01:32:51.366 900 TIP 438338 20560 6080909 2024-02-27 01:32:51.491 2024-02-27 01:32:51.491 900 FEE 438338 11328 6080910 2024-02-27 01:32:51.491 2024-02-27 01:32:51.491 8100 TIP 438338 1845 6080921 2024-02-27 01:32:57.147 2024-02-27 01:32:57.147 2100 FEE 439844 19601 6080922 2024-02-27 01:32:57.147 2024-02-27 01:32:57.147 18900 TIP 439844 675 6080220 2024-02-27 00:14:02.944 2024-02-27 00:14:02.944 1000 STREAM 141924 21218 6080432 2024-02-27 00:15:02.956 2024-02-27 00:15:02.956 1000 STREAM 141924 11378 6080435 2024-02-27 00:16:02.954 2024-02-27 00:16:02.954 1000 STREAM 141924 20129 6080526 2024-02-27 00:20:02.982 2024-02-27 00:20:02.982 1000 STREAM 141924 20464 6080584 2024-02-27 00:30:03.046 2024-02-27 00:30:03.046 1000 STREAM 141924 10608 6080589 2024-02-27 00:31:03.028 2024-02-27 00:31:03.028 1000 STREAM 141924 18641 6080684 2024-02-27 00:46:03.093 2024-02-27 00:46:03.093 1000 STREAM 141924 7659 6080685 2024-02-27 00:47:03.07 2024-02-27 00:47:03.07 1000 STREAM 141924 1737 6080698 2024-02-27 00:52:03.098 2024-02-27 00:52:03.098 1000 STREAM 141924 1512 6080706 2024-02-27 00:53:03.081 2024-02-27 00:53:03.081 1000 STREAM 141924 6616 6080707 2024-02-27 00:54:03.109 2024-02-27 00:54:03.109 1000 STREAM 141924 10291 6080712 2024-02-27 00:56:03.087 2024-02-27 00:56:03.087 1000 STREAM 141924 3642 6080734 2024-02-27 01:01:03.119 2024-02-27 01:01:03.119 1000 STREAM 141924 18449 6080735 2024-02-27 01:02:03.13 2024-02-27 01:02:03.13 1000 STREAM 141924 15367 6080749 2024-02-27 01:04:03.131 2024-02-27 01:04:03.131 1000 STREAM 141924 4175 6080757 2024-02-27 01:05:03.154 2024-02-27 01:05:03.154 1000 STREAM 141924 894 6080795 2024-02-27 01:08:03.15 2024-02-27 01:08:03.15 1000 STREAM 141924 6229 6080810 2024-02-27 01:11:03.181 2024-02-27 01:11:03.181 1000 STREAM 141924 19902 6080814 2024-02-27 01:13:03.184 2024-02-27 01:13:03.184 1000 STREAM 141924 11144 6080825 2024-02-27 01:15:03.2 2024-02-27 01:15:03.2 1000 STREAM 141924 20812 6080836 2024-02-27 01:16:03.217 2024-02-27 01:16:03.217 1000 STREAM 141924 16562 6080838 2024-02-27 01:18:03.208 2024-02-27 01:18:03.208 1000 STREAM 141924 15139 6080842 2024-02-27 01:20:03.223 2024-02-27 01:20:03.223 1000 STREAM 141924 20614 6080844 2024-02-27 01:21:03.225 2024-02-27 01:21:03.225 1000 STREAM 141924 18452 6080866 2024-02-27 01:25:03.21 2024-02-27 01:25:03.21 1000 STREAM 141924 5565 6080870 2024-02-27 01:27:03.24 2024-02-27 01:27:03.24 1000 STREAM 141924 18680 6080879 2024-02-27 01:30:03.264 2024-02-27 01:30:03.264 1000 STREAM 141924 12965 6080885 2024-02-27 01:32:03.27 2024-02-27 01:32:03.27 1000 STREAM 141924 5520 6080928 2024-02-27 01:34:03.278 2024-02-27 01:34:03.278 1000 STREAM 141924 18357 6080932 2024-02-27 01:36:03.295 2024-02-27 01:36:03.295 1000 STREAM 141924 2437 6080936 2024-02-27 01:38:03.334 2024-02-27 01:38:03.334 1000 STREAM 141924 15049 6080938 2024-02-27 01:39:03.314 2024-02-27 01:39:03.314 1000 STREAM 141924 5171 6080945 2024-02-27 01:41:03.362 2024-02-27 01:41:03.362 1000 STREAM 141924 21417 6080948 2024-02-27 01:42:03.363 2024-02-27 01:42:03.363 1000 STREAM 141924 20073 6080949 2024-02-27 01:43:03.369 2024-02-27 01:43:03.369 1000 STREAM 141924 5776 6080239 2024-02-27 00:14:16.361 2024-02-27 00:14:16.361 1000 FEE 439171 18507 6080240 2024-02-27 00:14:16.361 2024-02-27 00:14:16.361 9000 TIP 439171 12946 6080241 2024-02-27 00:14:16.69 2024-02-27 00:14:16.69 1000 FEE 439171 11450 6080242 2024-02-27 00:14:16.69 2024-02-27 00:14:16.69 9000 TIP 439171 16556 6080243 2024-02-27 00:14:17.086 2024-02-27 00:14:17.086 1000 FEE 439171 19147 6080244 2024-02-27 00:14:17.086 2024-02-27 00:14:17.086 9000 TIP 439171 19980 6080273 2024-02-27 00:14:23.655 2024-02-27 00:14:23.655 1000 FEE 439171 20751 6080274 2024-02-27 00:14:23.655 2024-02-27 00:14:23.655 9000 TIP 439171 13076 6080278 2024-02-27 00:14:24.46 2024-02-27 00:14:24.46 1000 FEE 439171 3656 6080279 2024-02-27 00:14:24.46 2024-02-27 00:14:24.46 9000 TIP 439171 9476 6080300 2024-02-27 00:14:32.106 2024-02-27 00:14:32.106 1000 FEE 439171 20257 6080301 2024-02-27 00:14:32.106 2024-02-27 00:14:32.106 9000 TIP 439171 16329 6080396 2024-02-27 00:14:53.909 2024-02-27 00:14:53.909 1000 FEE 439171 19378 6080397 2024-02-27 00:14:53.909 2024-02-27 00:14:53.909 9000 TIP 439171 777 6080416 2024-02-27 00:14:58.647 2024-02-27 00:14:58.647 1000 FEE 439171 11192 6080417 2024-02-27 00:14:58.647 2024-02-27 00:14:58.647 9000 TIP 439171 20655 6080443 2024-02-27 00:16:28.84 2024-02-27 00:16:28.84 3300 FEE 440056 5829 6080444 2024-02-27 00:16:28.84 2024-02-27 00:16:28.84 29700 TIP 440056 18209 6080452 2024-02-27 00:16:58.796 2024-02-27 00:16:58.796 2000 FEE 439547 1626 6080453 2024-02-27 00:16:58.796 2024-02-27 00:16:58.796 18000 TIP 439547 1145 6080487 2024-02-27 00:17:07.089 2024-02-27 00:17:07.089 1000 FEE 439547 12265 6080488 2024-02-27 00:17:07.089 2024-02-27 00:17:07.089 9000 TIP 439547 18199 6080507 2024-02-27 00:18:07.336 2024-02-27 00:18:07.336 100 FEE 251438 9796 6080508 2024-02-27 00:18:07.336 2024-02-27 00:18:07.336 900 TIP 251438 20479 6080509 2024-02-27 00:18:19.269 2024-02-27 00:18:19.269 0 FEE 440113 1802 6080538 2024-02-27 00:21:03.315 2024-02-27 00:21:03.315 9000 FEE 439891 19007 6080539 2024-02-27 00:21:03.315 2024-02-27 00:21:03.315 81000 TIP 439891 20715 6080544 2024-02-27 00:21:45.731 2024-02-27 00:21:45.731 1000 FEE 439887 690 6080545 2024-02-27 00:21:45.731 2024-02-27 00:21:45.731 9000 TIP 439887 19174 6080548 2024-02-27 00:21:59.933 2024-02-27 00:21:59.933 1000 FEE 440121 20205 6080556 2024-02-27 00:22:38.495 2024-02-27 00:22:38.495 1000 FEE 439994 6688 6080557 2024-02-27 00:22:38.495 2024-02-27 00:22:38.495 9000 TIP 439994 20998 6080559 2024-02-27 00:23:19.394 2024-02-27 00:23:19.394 5000 FEE 439822 15536 6080560 2024-02-27 00:23:19.394 2024-02-27 00:23:19.394 45000 TIP 439822 646 6080610 2024-02-27 00:34:37.773 2024-02-27 00:34:37.773 1000 FEE 439315 17827 6080611 2024-02-27 00:34:37.773 2024-02-27 00:34:37.773 9000 TIP 439315 1769 6080628 2024-02-27 00:39:50.634 2024-02-27 00:39:50.634 1000 FEE 440128 11885 6080629 2024-02-27 00:39:50.634 2024-02-27 00:39:50.634 9000 TIP 440128 1094 6080632 2024-02-27 00:39:57.453 2024-02-27 00:39:57.453 6900 FEE 440132 20301 6080633 2024-02-27 00:39:57.453 2024-02-27 00:39:57.453 62100 TIP 440132 12965 6080644 2024-02-27 00:41:53.902 2024-02-27 00:41:53.902 1000 FEE 440132 4624 6080645 2024-02-27 00:41:53.902 2024-02-27 00:41:53.902 9000 TIP 440132 15266 6080646 2024-02-27 00:41:54.082 2024-02-27 00:41:54.082 1000 FEE 440132 16847 6080647 2024-02-27 00:41:54.082 2024-02-27 00:41:54.082 9000 TIP 440132 15049 6080650 2024-02-27 00:41:55.41 2024-02-27 00:41:55.41 1000 FEE 440132 4345 6080651 2024-02-27 00:41:55.41 2024-02-27 00:41:55.41 9000 TIP 440132 19987 6080654 2024-02-27 00:41:55.923 2024-02-27 00:41:55.923 1000 FEE 440132 15196 6080655 2024-02-27 00:41:55.923 2024-02-27 00:41:55.923 9000 TIP 440132 644 6080660 2024-02-27 00:41:56.595 2024-02-27 00:41:56.595 1000 FEE 440132 19906 6080661 2024-02-27 00:41:56.595 2024-02-27 00:41:56.595 9000 TIP 440132 19581 6080679 2024-02-27 00:43:59.967 2024-02-27 00:43:59.967 100000 FEE 440134 9845 6080683 2024-02-27 00:45:46.64 2024-02-27 00:45:46.64 10000 FEE 440136 18359 6080687 2024-02-27 00:48:43.013 2024-02-27 00:48:43.013 1000 FEE 440138 9333 6080721 2024-02-27 00:58:42.009 2024-02-27 00:58:42.009 100 FEE 440122 8841 6080722 2024-02-27 00:58:42.009 2024-02-27 00:58:42.009 900 TIP 440122 19488 6080750 2024-02-27 01:04:03.548 2024-02-27 01:04:03.548 1000 FEE 440149 14255 6080764 2024-02-27 01:05:11.783 2024-02-27 01:05:11.783 10000 FEE 440150 15806 6080771 2024-02-27 01:06:14.215 2024-02-27 01:06:14.215 1300 FEE 440132 1650 6080772 2024-02-27 01:06:14.215 2024-02-27 01:06:14.215 11700 TIP 440132 18837 6080779 2024-02-27 01:06:15.731 2024-02-27 01:06:15.731 1300 FEE 440132 7510 6080780 2024-02-27 01:06:15.731 2024-02-27 01:06:15.731 11700 TIP 440132 18402 6080783 2024-02-27 01:06:15.999 2024-02-27 01:06:15.999 1300 FEE 440132 18904 6080784 2024-02-27 01:06:15.999 2024-02-27 01:06:15.999 11700 TIP 440132 880 6080796 2024-02-27 01:08:31.377 2024-02-27 01:08:31.377 2600 FEE 439946 1726 6080797 2024-02-27 01:08:31.377 2024-02-27 01:08:31.377 23400 TIP 439946 18784 6080821 2024-02-27 01:14:35.137 2024-02-27 01:14:35.137 10000 FEE 440150 14122 6080822 2024-02-27 01:14:35.137 2024-02-27 01:14:35.137 90000 TIP 440150 21062 6080826 2024-02-27 01:15:14.265 2024-02-27 01:15:14.265 1000 FEE 440132 2789 6080827 2024-02-27 01:15:14.265 2024-02-27 01:15:14.265 9000 TIP 440132 8506 6080843 2024-02-27 01:20:23.26 2024-02-27 01:20:23.26 100000 FEE 440153 21140 6080875 2024-02-27 01:28:14.627 2024-02-27 01:28:14.627 10000 FEE 440159 814 6080876 2024-02-27 01:28:49.256 2024-02-27 01:28:49.256 97500 FEE 440159 19839 6080877 2024-02-27 01:28:49.256 2024-02-27 01:28:49.256 877500 TIP 440159 1650 6080883 2024-02-27 01:30:27.595 2024-02-27 01:30:27.595 1000 FEE 440161 11819 6080893 2024-02-27 01:32:47.554 2024-02-27 01:32:47.554 900 FEE 438315 15386 6080894 2024-02-27 01:32:47.554 2024-02-27 01:32:47.554 8100 TIP 438315 4415 6080264 2024-02-27 00:14:21.349 2024-02-27 00:14:21.349 9000 TIP 439171 17227 6080284 2024-02-27 00:14:28.742 2024-02-27 00:14:28.742 3000 FEE 439171 18449 6080285 2024-02-27 00:14:28.742 2024-02-27 00:14:28.742 27000 TIP 439171 12561 6080296 2024-02-27 00:14:31.234 2024-02-27 00:14:31.234 1000 FEE 439171 16301 6080297 2024-02-27 00:14:31.234 2024-02-27 00:14:31.234 9000 TIP 439171 16447 6080324 2024-02-27 00:14:39.2 2024-02-27 00:14:39.2 1000 FEE 439171 18280 6080325 2024-02-27 00:14:39.2 2024-02-27 00:14:39.2 9000 TIP 439171 20889 6080342 2024-02-27 00:14:42.284 2024-02-27 00:14:42.284 2100 FEE 439925 1505 6080343 2024-02-27 00:14:42.284 2024-02-27 00:14:42.284 18900 TIP 439925 18989 6080366 2024-02-27 00:14:47.331 2024-02-27 00:14:47.331 1000 FEE 439171 848 6080367 2024-02-27 00:14:47.331 2024-02-27 00:14:47.331 9000 TIP 439171 21578 6080370 2024-02-27 00:14:48.237 2024-02-27 00:14:48.237 1000 FEE 439171 3439 6080371 2024-02-27 00:14:48.237 2024-02-27 00:14:48.237 9000 TIP 439171 12976 6080386 2024-02-27 00:14:51.72 2024-02-27 00:14:51.72 1000 FEE 439171 2780 6080387 2024-02-27 00:14:51.72 2024-02-27 00:14:51.72 9000 TIP 439171 9346 6080400 2024-02-27 00:14:54.781 2024-02-27 00:14:54.781 1000 FEE 439171 18601 6080401 2024-02-27 00:14:54.781 2024-02-27 00:14:54.781 9000 TIP 439171 21573 6080424 2024-02-27 00:15:00.245 2024-02-27 00:15:00.245 1000 FEE 439171 11523 6080425 2024-02-27 00:15:00.245 2024-02-27 00:15:00.245 9000 TIP 439171 20454 6080447 2024-02-27 00:16:46.963 2024-02-27 00:16:46.963 1000 FEE 440115 15588 6080458 2024-02-27 00:17:00.304 2024-02-27 00:17:00.304 1000 FEE 439547 937 6080459 2024-02-27 00:17:00.304 2024-02-27 00:17:00.304 9000 TIP 439547 19852 6080470 2024-02-27 00:17:03.372 2024-02-27 00:17:03.372 1000 FEE 439547 21609 6080471 2024-02-27 00:17:03.372 2024-02-27 00:17:03.372 9000 TIP 439547 974 6080483 2024-02-27 00:17:06.187 2024-02-27 00:17:06.187 1000 FEE 439547 21131 6080484 2024-02-27 00:17:06.187 2024-02-27 00:17:06.187 9000 TIP 439547 997 6080491 2024-02-27 00:17:08.051 2024-02-27 00:17:08.051 1000 FEE 439547 14663 6080492 2024-02-27 00:17:08.051 2024-02-27 00:17:08.051 9000 TIP 439547 19494 6080497 2024-02-27 00:17:09.546 2024-02-27 00:17:09.546 1000 FEE 439547 17673 6080498 2024-02-27 00:17:09.546 2024-02-27 00:17:09.546 9000 TIP 439547 14258 6080506 2024-02-27 00:18:06.69 2024-02-27 00:18:06.69 1000 FEE 440116 2543 6080520 2024-02-27 00:19:44.036 2024-02-27 00:19:44.036 2100 FEE 439263 21072 6080521 2024-02-27 00:19:44.036 2024-02-27 00:19:44.036 18900 TIP 439263 20730 6080522 2024-02-27 00:19:46.316 2024-02-27 00:19:46.316 800 FEE 440081 2022 6080523 2024-02-27 00:19:46.316 2024-02-27 00:19:46.316 7200 TIP 440081 20246 6080532 2024-02-27 00:20:56.02 2024-02-27 00:20:56.02 1000 FEE 440007 2013 6080533 2024-02-27 00:20:56.02 2024-02-27 00:20:56.02 9000 TIP 440007 20287 6080536 2024-02-27 00:21:01.644 2024-02-27 00:21:01.644 1000 FEE 440119 13587 6080542 2024-02-27 00:21:45.568 2024-02-27 00:21:45.568 100 FEE 439130 20585 6080543 2024-02-27 00:21:45.568 2024-02-27 00:21:45.568 900 TIP 439130 12483 6080564 2024-02-27 00:24:40.796 2024-02-27 00:24:40.796 1000 FEE 440124 2952 6080568 2024-02-27 00:26:30.127 2024-02-27 00:26:30.127 1000 FEE 440126 20577 6080585 2024-02-27 00:30:03.176 2024-02-27 00:30:03.176 1000 FEE 440121 21314 6080586 2024-02-27 00:30:03.176 2024-02-27 00:30:03.176 9000 TIP 440121 17522 6080590 2024-02-27 00:31:05.257 2024-02-27 00:31:05.257 10000 FEE 440128 16145 6080591 2024-02-27 00:31:05.257 2024-02-27 00:31:05.257 90000 TIP 440128 21178 6080598 2024-02-27 00:31:36.514 2024-02-27 00:31:36.514 500 FEE 440110 19929 6080599 2024-02-27 00:31:36.514 2024-02-27 00:31:36.514 4500 TIP 440110 16965 6080604 2024-02-27 00:33:57.292 2024-02-27 00:33:57.292 1000 FEE 440129 828 6080606 2024-02-27 00:34:14.639 2024-02-27 00:34:14.639 1000 FEE 439729 15060 6080607 2024-02-27 00:34:14.639 2024-02-27 00:34:14.639 9000 TIP 439729 19911 6080648 2024-02-27 00:41:54.303 2024-02-27 00:41:54.303 1000 FEE 440132 646 6080649 2024-02-27 00:41:54.303 2024-02-27 00:41:54.303 9000 TIP 440132 19021 6080658 2024-02-27 00:41:56.251 2024-02-27 00:41:56.251 1000 FEE 440132 15146 6080659 2024-02-27 00:41:56.251 2024-02-27 00:41:56.251 9000 TIP 440132 16194 6080667 2024-02-27 00:42:55.726 2024-02-27 00:42:55.726 2100 FEE 439702 18507 6080668 2024-02-27 00:42:55.726 2024-02-27 00:42:55.726 18900 TIP 439702 19810 6080691 2024-02-27 00:49:26.312 2024-02-27 00:49:26.312 1000 FEE 439904 11862 6080692 2024-02-27 00:49:26.312 2024-02-27 00:49:26.312 9000 TIP 439904 13348 6080699 2024-02-27 00:52:13.169 2024-02-27 00:52:13.169 3300 FEE 440132 5293 6080700 2024-02-27 00:52:13.169 2024-02-27 00:52:13.169 29700 TIP 440132 7673 6080703 2024-02-27 00:52:18.27 2024-02-27 00:52:18.27 1000 FEE 440132 20613 6080704 2024-02-27 00:52:18.27 2024-02-27 00:52:18.27 9000 TIP 440132 20381 6080738 2024-02-27 01:02:34.042 2024-02-27 01:02:34.042 1000000 DONT_LIKE_THIS 440056 21430 6080748 2024-02-27 01:04:00.823 2024-02-27 01:04:00.823 1000 FEE 440148 4074 6080781 2024-02-27 01:06:15.906 2024-02-27 01:06:15.906 1300 FEE 440132 19976 6080782 2024-02-27 01:06:15.906 2024-02-27 01:06:15.906 11700 TIP 440132 999 6080811 2024-02-27 01:11:04.163 2024-02-27 01:11:04.163 4000 FEE 440079 18815 6080812 2024-02-27 01:11:04.163 2024-02-27 01:11:04.163 36000 TIP 440079 9290 6080819 2024-02-27 01:14:13.623 2024-02-27 01:14:13.623 150200 FEE 440152 2338 6080820 2024-02-27 01:14:13.623 2024-02-27 01:14:13.623 1351800 TIP 440152 20022 6080871 2024-02-27 01:27:11.778 2024-02-27 01:27:11.778 1000 FEE 440157 20585 6080873 2024-02-27 01:27:59.319 2024-02-27 01:27:59.319 1000 POLL 440155 18679 6080886 2024-02-27 01:32:20.358 2024-02-27 01:32:20.358 1000 FEE 440162 9843 6080926 2024-02-27 01:33:58.669 2024-02-27 01:33:58.669 10000 FEE 440132 2213 6080927 2024-02-27 01:33:58.669 2024-02-27 01:33:58.669 90000 TIP 440132 2596 6080929 2024-02-27 01:34:24.956 2024-02-27 01:34:24.956 1000 FEE 440163 9345 6080456 2024-02-27 00:16:59.818 2024-02-27 00:16:59.818 1000 FEE 439547 20683 6080457 2024-02-27 00:16:59.818 2024-02-27 00:16:59.818 9000 TIP 439547 8508 6080503 2024-02-27 00:17:17.591 2024-02-27 00:17:17.591 2100 FEE 440011 15732 6080504 2024-02-27 00:17:17.591 2024-02-27 00:17:17.591 18900 TIP 440011 706 6080516 2024-02-27 00:19:35.324 2024-02-27 00:19:35.324 1000 FEE 439936 4574 6080517 2024-02-27 00:19:35.324 2024-02-27 00:19:35.324 9000 TIP 439936 18313 6080524 2024-02-27 00:19:46.59 2024-02-27 00:19:46.59 1000 FEE 439806 6360 6080525 2024-02-27 00:19:46.59 2024-02-27 00:19:46.59 9000 TIP 439806 9476 6080540 2024-02-27 00:21:17.336 2024-02-27 00:21:17.336 9000 FEE 439990 1008 6080541 2024-02-27 00:21:17.336 2024-02-27 00:21:17.336 81000 TIP 439990 1310 6080546 2024-02-27 00:21:45.977 2024-02-27 00:21:45.977 1000 FEE 439887 20972 6080547 2024-02-27 00:21:45.977 2024-02-27 00:21:45.977 9000 TIP 439887 21589 6080551 2024-02-27 00:22:00.953 2024-02-27 00:22:00.953 1000 FEE 440122 19465 6080561 2024-02-27 00:23:26.176 2024-02-27 00:23:26.176 2100 FEE 439844 2326 6080562 2024-02-27 00:23:26.176 2024-02-27 00:23:26.176 18900 TIP 439844 11523 6080626 2024-02-27 00:39:49.654 2024-02-27 00:39:49.654 1000 FEE 440132 2327 6080627 2024-02-27 00:39:49.654 2024-02-27 00:39:49.654 9000 TIP 440132 1814 6080630 2024-02-27 00:39:56.502 2024-02-27 00:39:56.502 4000 FEE 440132 19732 6080631 2024-02-27 00:39:56.502 2024-02-27 00:39:56.502 36000 TIP 440132 13132 6080664 2024-02-27 00:41:56.943 2024-02-27 00:41:56.943 1000 FEE 440132 9332 6080665 2024-02-27 00:41:56.943 2024-02-27 00:41:56.943 9000 TIP 440132 675 6080705 2024-02-27 00:52:43.511 2024-02-27 00:52:43.511 1000 FEE 440141 16879 6080731 2024-02-27 01:00:05.129 2024-02-27 01:00:05.129 1000 FEE 440146 20904 6080746 2024-02-27 01:03:21.561 2024-02-27 01:03:21.561 124100 FEE 440147 19121 6080747 2024-02-27 01:03:21.561 2024-02-27 01:03:21.561 1116900 TIP 440147 17798 6080787 2024-02-27 01:07:01.625 2024-02-27 01:07:01.625 2100 FEE 439844 16867 6080788 2024-02-27 01:07:01.625 2024-02-27 01:07:01.625 18900 TIP 439844 7992 6080806 2024-02-27 01:11:01.232 2024-02-27 01:11:01.232 4000 FEE 440080 9476 6080807 2024-02-27 01:11:01.232 2024-02-27 01:11:01.232 36000 TIP 440080 17042 6080815 2024-02-27 01:13:16.405 2024-02-27 01:13:16.405 2600 FEE 440056 14404 6080816 2024-02-27 01:13:16.405 2024-02-27 01:13:16.405 23400 TIP 440056 7659 6080817 2024-02-27 01:13:49.934 2024-02-27 01:13:49.934 10000 FEE 440152 15408 6080832 2024-02-27 01:15:44.796 2024-02-27 01:15:44.796 1000 FEE 439946 10493 6080833 2024-02-27 01:15:44.796 2024-02-27 01:15:44.796 9000 TIP 439946 21609 6080847 2024-02-27 01:23:04.2 2024-02-27 01:23:04.2 100000 FEE 440155 20683 6080859 2024-02-27 01:23:35.292 2024-02-27 01:23:35.292 4000 FEE 440139 2098 6080860 2024-02-27 01:23:35.292 2024-02-27 01:23:35.292 36000 TIP 440139 16754 6080872 2024-02-27 01:27:43.892 2024-02-27 01:27:43.892 1000 FEE 440158 1465 6080905 2024-02-27 01:32:50.574 2024-02-27 01:32:50.574 900 FEE 438368 18735 6080906 2024-02-27 01:32:50.574 2024-02-27 01:32:50.574 8100 TIP 438368 18068 6080913 2024-02-27 01:32:53.548 2024-02-27 01:32:53.548 900 FEE 438330 17064 6080914 2024-02-27 01:32:53.548 2024-02-27 01:32:53.548 8100 TIP 438330 2583 6080933 2024-02-27 01:36:23.507 2024-02-27 01:36:23.507 1000 POLL 440155 2335 6080478 2024-02-27 00:17:04.764 2024-02-27 00:17:04.764 1000 STREAM 141924 17162 6080493 2024-02-27 00:17:08.484 2024-02-27 00:17:08.484 1000 FEE 439547 4395 6080494 2024-02-27 00:17:08.484 2024-02-27 00:17:08.484 9000 TIP 439547 16684 6080511 2024-02-27 00:18:56.255 2024-02-27 00:18:56.255 10000 FEE 440117 2734 6080553 2024-02-27 00:22:29.479 2024-02-27 00:22:29.479 4000 FEE 440116 17446 6080554 2024-02-27 00:22:29.479 2024-02-27 00:22:29.479 36000 TIP 440116 20222 6080555 2024-02-27 00:22:31.15 2024-02-27 00:22:31.15 1000 FEE 440123 21603 6080587 2024-02-27 00:30:45.973 2024-02-27 00:30:45.973 21100 FEE 440128 19759 6080588 2024-02-27 00:30:45.973 2024-02-27 00:30:45.973 189900 TIP 440128 1401 6080592 2024-02-27 00:31:06.863 2024-02-27 00:31:06.863 100000 FEE 440128 1628 6080593 2024-02-27 00:31:06.863 2024-02-27 00:31:06.863 900000 TIP 440128 4084 6080662 2024-02-27 00:41:56.782 2024-02-27 00:41:56.782 1000 FEE 440132 17682 6080663 2024-02-27 00:41:56.782 2024-02-27 00:41:56.782 9000 TIP 440132 1493 6080689 2024-02-27 00:49:25.729 2024-02-27 00:49:25.729 1000 FEE 439904 5829 6080690 2024-02-27 00:49:25.729 2024-02-27 00:49:25.729 9000 TIP 439904 4166 6080727 2024-02-27 00:59:55.316 2024-02-27 00:59:55.316 9000 FEE 440128 20889 6080728 2024-02-27 00:59:55.316 2024-02-27 00:59:55.316 81000 TIP 440128 20858 6080751 2024-02-27 01:04:09.633 2024-02-27 01:04:09.633 100 FEE 439905 20586 6080752 2024-02-27 01:04:09.633 2024-02-27 01:04:09.633 900 TIP 439905 4126 6080753 2024-02-27 01:04:09.76 2024-02-27 01:04:09.76 900 FEE 439905 17682 6080754 2024-02-27 01:04:09.76 2024-02-27 01:04:09.76 8100 TIP 439905 16653 6080760 2024-02-27 01:05:04.83 2024-02-27 01:05:04.83 900 FEE 439907 20681 6080761 2024-02-27 01:05:04.83 2024-02-27 01:05:04.83 8100 TIP 439907 20231 6080769 2024-02-27 01:06:05.876 2024-02-27 01:06:05.876 1300 FEE 440132 18409 6080770 2024-02-27 01:06:05.876 2024-02-27 01:06:05.876 11700 TIP 440132 18877 6080785 2024-02-27 01:06:46.277 2024-02-27 01:06:46.277 1000 FEE 440105 5776 6080786 2024-02-27 01:06:46.277 2024-02-27 01:06:46.277 9000 TIP 440105 10102 6080789 2024-02-27 01:07:01.816 2024-02-27 01:07:01.816 2100 FEE 439844 6602 6080790 2024-02-27 01:07:01.816 2024-02-27 01:07:01.816 18900 TIP 439844 4798 6080519 2024-02-27 00:19:35.479 2024-02-27 00:19:35.479 9000 TIP 439936 17218 6080528 2024-02-27 00:20:52.039 2024-02-27 00:20:52.039 90000 FEE 439390 20564 6080529 2024-02-27 00:20:52.039 2024-02-27 00:20:52.039 810000 TIP 439390 750 6080530 2024-02-27 00:20:55.799 2024-02-27 00:20:55.799 1000 FEE 440007 1030 6080531 2024-02-27 00:20:55.799 2024-02-27 00:20:55.799 9000 TIP 440007 11144 6080534 2024-02-27 00:21:00.744 2024-02-27 00:21:00.744 3100 FEE 440114 21373 6080535 2024-02-27 00:21:00.744 2024-02-27 00:21:00.744 27900 TIP 440114 18735 6080549 2024-02-27 00:22:00.12 2024-02-27 00:22:00.12 3100 FEE 440119 1650 6080550 2024-02-27 00:22:00.12 2024-02-27 00:22:00.12 27900 TIP 440119 21148 6080608 2024-02-27 00:34:34.767 2024-02-27 00:34:34.767 1000 FEE 440056 2156 6080609 2024-02-27 00:34:34.767 2024-02-27 00:34:34.767 9000 TIP 440056 11678 6080620 2024-02-27 00:36:39.198 2024-02-27 00:36:39.198 42000 FEE 440130 19333 6080625 2024-02-27 00:39:30.222 2024-02-27 00:39:30.222 420000 FEE 440132 17953 6080640 2024-02-27 00:41:53.518 2024-02-27 00:41:53.518 1000 FEE 440132 7986 6080641 2024-02-27 00:41:53.518 2024-02-27 00:41:53.518 9000 TIP 440132 13622 6080676 2024-02-27 00:43:12.072 2024-02-27 00:43:12.072 3000 FEE 440127 18675 6080677 2024-02-27 00:43:12.072 2024-02-27 00:43:12.072 27000 TIP 440127 2724 6080701 2024-02-27 00:52:13.662 2024-02-27 00:52:13.662 3300 FEE 440132 20924 6080702 2024-02-27 00:52:13.662 2024-02-27 00:52:13.662 29700 TIP 440132 1141 6080709 2024-02-27 00:55:35.452 2024-02-27 00:55:35.452 1000 FEE 440142 19987 6080725 2024-02-27 00:59:53.947 2024-02-27 00:59:53.947 1000 FEE 440128 9351 6080726 2024-02-27 00:59:53.947 2024-02-27 00:59:53.947 9000 TIP 440128 20525 6080732 2024-02-27 01:00:22.25 2024-02-27 01:00:22.25 3000 FEE 439100 16350 6080733 2024-02-27 01:00:22.25 2024-02-27 01:00:22.25 27000 TIP 439100 16350 6080741 2024-02-27 01:02:49.171 2024-02-27 01:02:49.171 900 FEE 439999 8074 6080742 2024-02-27 01:02:49.171 2024-02-27 01:02:49.171 8100 TIP 439999 18904 6080765 2024-02-27 01:05:26.562 2024-02-27 01:05:26.562 10000 FEE 440004 11866 6080766 2024-02-27 01:05:26.562 2024-02-27 01:05:26.562 90000 TIP 440004 21624 6080767 2024-02-27 01:05:44.514 2024-02-27 01:05:44.514 0 FEE 440150 18829 6080802 2024-02-27 01:10:17.73 2024-02-27 01:10:17.73 4000 FEE 440136 1090 6080803 2024-02-27 01:10:17.73 2024-02-27 01:10:17.73 36000 TIP 440136 21369 6080823 2024-02-27 01:14:39.101 2024-02-27 01:14:39.101 2600 FEE 439315 811 6080824 2024-02-27 01:14:39.101 2024-02-27 01:14:39.101 23400 TIP 439315 16667 6080854 2024-02-27 01:23:12.446 2024-02-27 01:23:12.446 3000 FEE 179354 16834 6080855 2024-02-27 01:23:12.446 2024-02-27 01:23:12.446 27000 TIP 179354 21421 6080897 2024-02-27 01:32:48.405 2024-02-27 01:32:48.405 900 FEE 438432 15858 6080898 2024-02-27 01:32:48.405 2024-02-27 01:32:48.405 8100 TIP 438432 844 6080915 2024-02-27 01:32:55.892 2024-02-27 01:32:55.892 2100 FEE 439844 2775 6080916 2024-02-27 01:32:55.892 2024-02-27 01:32:55.892 18900 TIP 439844 17321 6080600 2024-02-27 00:32:03.036 2024-02-27 00:32:03.036 1000 STREAM 141924 1310 6080601 2024-02-27 00:33:03.055 2024-02-27 00:33:03.055 1000 STREAM 141924 2735 6080605 2024-02-27 00:34:03.038 2024-02-27 00:34:03.038 1000 STREAM 141924 8423 6080614 2024-02-27 00:35:03.054 2024-02-27 00:35:03.054 1000 STREAM 141924 1002 6080619 2024-02-27 00:36:03.068 2024-02-27 00:36:03.068 1000 STREAM 141924 19512 6080621 2024-02-27 00:37:03.072 2024-02-27 00:37:03.072 1000 STREAM 141924 20701 6080613 2024-02-27 00:34:42.843 2024-02-27 00:34:42.843 9000 TIP 439938 2832 6080638 2024-02-27 00:41:53.319 2024-02-27 00:41:53.319 1000 FEE 440132 6030 6080639 2024-02-27 00:41:53.319 2024-02-27 00:41:53.319 9000 TIP 440132 18984 6080656 2024-02-27 00:41:56.085 2024-02-27 00:41:56.085 1000 FEE 440132 20430 6080657 2024-02-27 00:41:56.085 2024-02-27 00:41:56.085 9000 TIP 440132 21214 6080670 2024-02-27 00:43:09.384 2024-02-27 00:43:09.384 1000 FEE 440075 19524 6080671 2024-02-27 00:43:09.384 2024-02-27 00:43:09.384 9000 TIP 440075 5171 6080682 2024-02-27 00:45:05.299 2024-02-27 00:45:05.299 1000 FEE 440135 20811 6080713 2024-02-27 00:56:48.021 2024-02-27 00:56:48.021 1300 FEE 439080 14381 6080714 2024-02-27 00:56:48.021 2024-02-27 00:56:48.021 11700 TIP 439080 19126 6080730 2024-02-27 01:00:04.708 2024-02-27 01:00:04.708 100000 FEE 440145 9366 6080739 2024-02-27 01:02:49.025 2024-02-27 01:02:49.025 100 FEE 439999 21379 6080740 2024-02-27 01:02:49.025 2024-02-27 01:02:49.025 900 TIP 439999 21159 6080755 2024-02-27 01:04:10.379 2024-02-27 01:04:10.379 9000 FEE 439905 20596 6080756 2024-02-27 01:04:10.379 2024-02-27 01:04:10.379 81000 TIP 439905 20099 6080775 2024-02-27 01:06:14.588 2024-02-27 01:06:14.588 1300 FEE 440132 21521 6080776 2024-02-27 01:06:14.588 2024-02-27 01:06:14.588 11700 TIP 440132 4650 6080777 2024-02-27 01:06:14.78 2024-02-27 01:06:14.78 1300 FEE 440132 2328 6080778 2024-02-27 01:06:14.78 2024-02-27 01:06:14.78 11700 TIP 440132 659 6080794 2024-02-27 01:07:04.529 2024-02-27 01:07:04.529 1000 FEE 440151 1632 6080804 2024-02-27 01:10:57.773 2024-02-27 01:10:57.773 4000 FEE 440128 2709 6080805 2024-02-27 01:10:57.773 2024-02-27 01:10:57.773 36000 TIP 440128 21563 6080828 2024-02-27 01:15:24.564 2024-02-27 01:15:24.564 1000 FEE 439844 1326 6080829 2024-02-27 01:15:24.564 2024-02-27 01:15:24.564 9000 TIP 439844 4989 6080850 2024-02-27 01:23:12.133 2024-02-27 01:23:12.133 3000 FEE 179354 1051 6080851 2024-02-27 01:23:12.133 2024-02-27 01:23:12.133 27000 TIP 179354 10591 6080852 2024-02-27 01:23:12.292 2024-02-27 01:23:12.292 3000 FEE 179354 17042 6080853 2024-02-27 01:23:12.292 2024-02-27 01:23:12.292 27000 TIP 179354 17172 6080864 2024-02-27 01:24:27.387 2024-02-27 01:24:27.387 2100 FEE 440075 18119 6080865 2024-02-27 01:24:27.387 2024-02-27 01:24:27.387 18900 TIP 440075 20852 6080899 2024-02-27 01:32:49.1 2024-02-27 01:32:49.1 100 FEE 438412 8095 6080900 2024-02-27 01:32:49.1 2024-02-27 01:32:49.1 900 TIP 438412 16834 6080917 2024-02-27 01:32:56.374 2024-02-27 01:32:56.374 2100 FEE 439844 2327 6080918 2024-02-27 01:32:56.374 2024-02-27 01:32:56.374 18900 TIP 439844 13843 6080919 2024-02-27 01:32:56.735 2024-02-27 01:32:56.735 2100 FEE 439844 4802 6080920 2024-02-27 01:32:56.735 2024-02-27 01:32:56.735 18900 TIP 439844 11314 6080923 2024-02-27 01:32:57.576 2024-02-27 01:32:57.576 2100 FEE 439844 20562 6080924 2024-02-27 01:32:57.576 2024-02-27 01:32:57.576 18900 TIP 439844 2098 6080934 2024-02-27 01:36:28.681 2024-02-27 01:36:28.681 1000 FEE 440165 17392 6080937 2024-02-27 01:38:58.554 2024-02-27 01:38:58.554 1000 FEE 440166 951 6080622 2024-02-27 00:38:03.063 2024-02-27 00:38:03.063 1000 STREAM 141924 21012 6080634 2024-02-27 00:40:03.082 2024-02-27 00:40:03.082 1000 STREAM 141924 20243 6080680 2024-02-27 00:44:03.127 2024-02-27 00:44:03.127 1000 STREAM 141924 20889 6080624 2024-02-27 00:39:03.054 2024-02-27 00:39:03.054 1000 STREAM 141924 1983 6080637 2024-02-27 00:41:03.088 2024-02-27 00:41:03.088 1000 STREAM 141924 3353 6080666 2024-02-27 00:42:03.1 2024-02-27 00:42:03.1 1000 STREAM 141924 12102 6080669 2024-02-27 00:43:03.092 2024-02-27 00:43:03.092 1000 STREAM 141924 4118 6080681 2024-02-27 00:45:03.093 2024-02-27 00:45:03.093 1000 STREAM 141924 19848 6080686 2024-02-27 00:48:03.096 2024-02-27 00:48:03.096 1000 STREAM 141924 14370 6080688 2024-02-27 00:49:03.085 2024-02-27 00:49:03.085 1000 STREAM 141924 19189 6080695 2024-02-27 00:50:03.097 2024-02-27 00:50:03.097 1000 STREAM 141924 721 6080697 2024-02-27 00:51:03.078 2024-02-27 00:51:03.078 1000 STREAM 141924 4502 6080708 2024-02-27 00:55:03.1 2024-02-27 00:55:03.1 1000 STREAM 141924 5791 6080715 2024-02-27 00:57:03.099 2024-02-27 00:57:03.099 1000 STREAM 141924 18675 6080720 2024-02-27 00:58:03.075 2024-02-27 00:58:03.075 1000 STREAM 141924 900 6080723 2024-02-27 00:59:03.119 2024-02-27 00:59:03.119 1000 STREAM 141924 12774 6080729 2024-02-27 01:00:03.133 2024-02-27 01:00:03.133 1000 STREAM 141924 11798 6080745 2024-02-27 01:03:03.129 2024-02-27 01:03:03.129 1000 STREAM 141924 7983 6080768 2024-02-27 01:06:05.169 2024-02-27 01:06:05.169 1000 STREAM 141924 6300 6080791 2024-02-27 01:07:03.165 2024-02-27 01:07:03.165 1000 STREAM 141924 15536 6080800 2024-02-27 01:09:03.155 2024-02-27 01:09:03.155 1000 STREAM 141924 20198 6080801 2024-02-27 01:10:03.183 2024-02-27 01:10:03.183 1000 STREAM 141924 20825 6080813 2024-02-27 01:12:03.185 2024-02-27 01:12:03.185 1000 STREAM 141924 1823 6080818 2024-02-27 01:14:03.193 2024-02-27 01:14:03.193 1000 STREAM 141924 2330 6080837 2024-02-27 01:17:03.216 2024-02-27 01:17:03.216 1000 STREAM 141924 20730 6080841 2024-02-27 01:19:03.275 2024-02-27 01:19:03.275 1000 STREAM 141924 21242 6080845 2024-02-27 01:22:03.232 2024-02-27 01:22:03.232 1000 STREAM 141924 8541 6080862 2024-02-27 01:24:03.236 2024-02-27 01:24:03.236 1000 STREAM 141924 13782 6080869 2024-02-27 01:26:03.257 2024-02-27 01:26:03.257 1000 STREAM 141924 10698 6080874 2024-02-27 01:28:03.251 2024-02-27 01:28:03.251 1000 STREAM 141924 12921 6080884 2024-02-27 01:31:03.269 2024-02-27 01:31:03.269 1000 STREAM 141924 19148 6080925 2024-02-27 01:33:03.275 2024-02-27 01:33:03.275 1000 STREAM 141924 19777 6080930 2024-02-27 01:35:03.296 2024-02-27 01:35:03.296 1000 STREAM 141924 20858 6080935 2024-02-27 01:37:03.304 2024-02-27 01:37:03.304 1000 STREAM 141924 10013 6080944 2024-02-27 01:40:03.474 2024-02-27 01:40:03.474 1000 STREAM 141924 20546 6080773 2024-02-27 01:06:14.396 2024-02-27 01:06:14.396 1300 FEE 440132 9427 6080774 2024-02-27 01:06:14.396 2024-02-27 01:06:14.396 11700 TIP 440132 19043 6080792 2024-02-27 01:07:03.508 2024-02-27 01:07:03.508 2100 FEE 439844 2844 6080793 2024-02-27 01:07:03.508 2024-02-27 01:07:03.508 18900 TIP 439844 16753 6080848 2024-02-27 01:23:09.905 2024-02-27 01:23:09.905 3000 FEE 179354 11018 6080849 2024-02-27 01:23:09.905 2024-02-27 01:23:09.905 27000 TIP 179354 19535 6080867 2024-02-27 01:26:02.623 2024-02-27 01:26:02.623 1000 FEE 440056 636 6080868 2024-02-27 01:26:02.623 2024-02-27 01:26:02.623 9000 TIP 440056 16432 6080889 2024-02-27 01:32:45.686 2024-02-27 01:32:45.686 900 FEE 438316 738 6080890 2024-02-27 01:32:45.686 2024-02-27 01:32:45.686 8100 TIP 438316 20179 6080895 2024-02-27 01:32:48.306 2024-02-27 01:32:48.306 100 FEE 438432 1515 6080896 2024-02-27 01:32:48.306 2024-02-27 01:32:48.306 900 TIP 438432 696 6080901 2024-02-27 01:32:49.239 2024-02-27 01:32:49.239 900 FEE 438412 21491 6080902 2024-02-27 01:32:49.239 2024-02-27 01:32:49.239 8100 TIP 438412 21061 6080903 2024-02-27 01:32:50.416 2024-02-27 01:32:50.416 100 FEE 438368 16667 6080904 2024-02-27 01:32:50.416 2024-02-27 01:32:50.416 900 TIP 438368 690 6080846 2024-02-27 01:23:03.308 2024-02-27 01:23:03.308 1000 STREAM 141924 21430 6080878 2024-02-27 01:29:03.324 2024-02-27 01:29:03.324 1000 STREAM 141924 19158 6080858 2024-02-27 01:23:33.768 2024-02-27 01:23:33.768 0 FEE 440155 19018 6080861 2024-02-27 01:23:37.317 2024-02-27 01:23:37.317 1000 FEE 440156 2039 6080882 2024-02-27 01:30:24.623 2024-02-27 01:30:24.623 1000 FEE 440160 18660 6080911 2024-02-27 01:32:52.608 2024-02-27 01:32:52.608 100 FEE 438330 8569 6080912 2024-02-27 01:32:52.608 2024-02-27 01:32:52.608 900 TIP 438330 2576 6080931 2024-02-27 01:35:10.166 2024-02-27 01:35:10.166 1000 FEE 440164 3213 6080939 2024-02-27 01:39:11.623 2024-02-27 01:39:11.623 1000 FEE 440164 15196 6080940 2024-02-27 01:39:11.623 2024-02-27 01:39:11.623 9000 TIP 440164 18543 6080941 2024-02-27 01:39:12.93 2024-02-27 01:39:12.93 1000 FEE 440160 15488 6080942 2024-02-27 01:39:12.93 2024-02-27 01:39:12.93 9000 TIP 440160 20434 6080950 2024-02-27 01:43:47.969 2024-02-27 01:43:47.969 100000 FEE 440171 2789 6080974 2024-02-27 01:54:34.894 2024-02-27 01:54:34.894 2700 FEE 439682 18473 6080975 2024-02-27 01:54:34.894 2024-02-27 01:54:34.894 24300 TIP 439682 20912 6080978 2024-02-27 01:54:35.274 2024-02-27 01:54:35.274 2700 FEE 439682 14152 6080979 2024-02-27 01:54:35.274 2024-02-27 01:54:35.274 24300 TIP 439682 13348 6080984 2024-02-27 01:56:39.588 2024-02-27 01:56:39.588 1000 FEE 440175 14939 6081008 2024-02-27 02:05:08.35 2024-02-27 02:05:08.35 2100 FEE 440132 1650 6080943 2024-02-27 01:39:23.057 2024-02-27 01:39:23.057 1000 FEE 440167 21201 6080947 2024-02-27 01:41:55.458 2024-02-27 01:41:55.458 1000 FEE 440169 17953 6080985 2024-02-27 01:57:02.937 2024-02-27 01:57:02.937 2100 FEE 440128 18862 6080986 2024-02-27 01:57:02.937 2024-02-27 01:57:02.937 18900 TIP 440128 998 6080992 2024-02-27 01:59:09.897 2024-02-27 01:59:09.897 1000 FEE 440147 9200 6080993 2024-02-27 01:59:09.897 2024-02-27 01:59:09.897 9000 TIP 440147 17602 6080998 2024-02-27 01:59:10.455 2024-02-27 01:59:10.455 1000 FEE 440147 4650 6080999 2024-02-27 01:59:10.455 2024-02-27 01:59:10.455 9000 TIP 440147 19488 6081050 2024-02-27 02:12:54.345 2024-02-27 02:12:54.345 1000 FEE 440132 1094 6081051 2024-02-27 02:12:54.345 2024-02-27 02:12:54.345 9000 TIP 440132 880 6081077 2024-02-27 02:17:28.115 2024-02-27 02:17:28.115 500 FEE 439110 21349 6081078 2024-02-27 02:17:28.115 2024-02-27 02:17:28.115 4500 TIP 439110 1806 6081085 2024-02-27 02:17:51.412 2024-02-27 02:17:51.412 500 FEE 439263 20911 6081086 2024-02-27 02:17:51.412 2024-02-27 02:17:51.412 4500 TIP 439263 14449 6081087 2024-02-27 02:17:52.072 2024-02-27 02:17:52.072 500 FEE 439390 18637 6081088 2024-02-27 02:17:52.072 2024-02-27 02:17:52.072 4500 TIP 439390 12736 6081095 2024-02-27 02:17:57.313 2024-02-27 02:17:57.313 500 FEE 439295 11999 6081096 2024-02-27 02:17:57.313 2024-02-27 02:17:57.313 4500 TIP 439295 17291 6081106 2024-02-27 02:19:17.367 2024-02-27 02:19:17.367 500 FEE 439854 2293 6081107 2024-02-27 02:19:17.367 2024-02-27 02:19:17.367 4500 TIP 439854 5694 6081187 2024-02-27 02:38:27.769 2024-02-27 02:38:27.769 500 FEE 439263 16348 6081188 2024-02-27 02:38:27.769 2024-02-27 02:38:27.769 4500 TIP 439263 18690 6081264 2024-02-27 02:41:54.938 2024-02-27 02:41:54.938 1000 FEE 440192 5308 6081268 2024-02-27 02:42:46.965 2024-02-27 02:42:46.965 1000 FEE 440193 1618 6081312 2024-02-27 02:52:24.609 2024-02-27 02:52:24.609 1000 FEE 439315 2390 6081313 2024-02-27 02:52:24.609 2024-02-27 02:52:24.609 9000 TIP 439315 20381 6081316 2024-02-27 02:52:27.523 2024-02-27 02:52:27.523 1000 FEE 439844 15161 6081317 2024-02-27 02:52:27.523 2024-02-27 02:52:27.523 9000 TIP 439844 20636 6081330 2024-02-27 02:53:50.146 2024-02-27 02:53:50.146 100 FEE 440182 20254 6081331 2024-02-27 02:53:50.146 2024-02-27 02:53:50.146 900 TIP 440182 618 6081334 2024-02-27 02:53:50.907 2024-02-27 02:53:50.907 9000 FEE 440182 18178 6081335 2024-02-27 02:53:50.907 2024-02-27 02:53:50.907 81000 TIP 440182 21079 6081363 2024-02-27 02:58:30.246 2024-02-27 02:58:30.246 1000 FEE 440202 18387 6081368 2024-02-27 02:58:41.584 2024-02-27 02:58:41.584 1000 FEE 440128 18311 6081369 2024-02-27 02:58:41.584 2024-02-27 02:58:41.584 9000 TIP 440128 20993 6081370 2024-02-27 02:58:42.312 2024-02-27 02:58:42.312 1000 FEE 440128 18380 6081371 2024-02-27 02:58:42.312 2024-02-27 02:58:42.312 9000 TIP 440128 17976 6081401 2024-02-27 03:03:01.127 2024-02-27 03:03:01.127 1000 FEE 440185 13517 6081402 2024-02-27 03:03:01.127 2024-02-27 03:03:01.127 9000 TIP 440185 9796 6081493 2024-02-27 03:22:24.243 2024-02-27 03:22:24.243 2700 FEE 440128 18727 6081494 2024-02-27 03:22:24.243 2024-02-27 03:22:24.243 24300 TIP 440128 19484 6081505 2024-02-27 03:22:28.692 2024-02-27 03:22:28.692 27900 FEE 440132 18311 6081506 2024-02-27 03:22:28.692 2024-02-27 03:22:28.692 251100 TIP 440132 4128 6081509 2024-02-27 03:23:53.715 2024-02-27 03:23:53.715 2100 FEE 439386 16350 6081510 2024-02-27 03:23:53.715 2024-02-27 03:23:53.715 18900 TIP 439386 20751 6081513 2024-02-27 03:24:42.717 2024-02-27 03:24:42.717 279000 FEE 440132 16808 6081514 2024-02-27 03:24:42.717 2024-02-27 03:24:42.717 2511000 TIP 440132 20613 6081568 2024-02-27 03:33:07.304 2024-02-27 03:33:07.304 100 FEE 438965 19333 6081569 2024-02-27 03:33:07.304 2024-02-27 03:33:07.304 900 TIP 438965 963 6081576 2024-02-27 03:35:02.21 2024-02-27 03:35:02.21 2100 FEE 439587 7998 6081577 2024-02-27 03:35:02.21 2024-02-27 03:35:02.21 18900 TIP 439587 16942 6081645 2024-02-27 03:53:00.842 2024-02-27 03:53:00.842 1000 FEE 439263 2065 6081646 2024-02-27 03:53:00.842 2024-02-27 03:53:00.842 9000 TIP 439263 1000 6081650 2024-02-27 03:53:07.831 2024-02-27 03:53:07.831 1000 FEE 439295 12072 6081651 2024-02-27 03:53:07.831 2024-02-27 03:53:07.831 9000 TIP 439295 8133 6081658 2024-02-27 03:53:49.82 2024-02-27 03:53:49.82 1000 FEE 439791 4014 6081659 2024-02-27 03:53:49.82 2024-02-27 03:53:49.82 9000 TIP 439791 8916 6081675 2024-02-27 03:57:24.072 2024-02-27 03:57:24.072 21000 FEE 440222 11314 6081679 2024-02-27 04:00:05.346 2024-02-27 04:00:05.346 1000 FEE 440224 2832 6081697 2024-02-27 04:08:09.786 2024-02-27 04:08:09.786 100 FEE 440216 5175 6081698 2024-02-27 04:08:09.786 2024-02-27 04:08:09.786 900 TIP 440216 21275 6081716 2024-02-27 04:10:41.336 2024-02-27 04:10:41.336 100000 DONT_LIKE_THIS 440150 19633 6081719 2024-02-27 04:10:55.092 2024-02-27 04:10:55.092 900 FEE 440153 704 6081720 2024-02-27 04:10:55.092 2024-02-27 04:10:55.092 8100 TIP 440153 5961 6081774 2024-02-27 04:22:43.388 2024-02-27 04:22:43.388 10000 FEE 440229 16556 6081845 2024-02-27 04:50:38.455 2024-02-27 04:50:38.455 1000 FEE 440235 866 6081878 2024-02-27 05:05:42.847 2024-02-27 05:05:42.847 2100 FEE 440223 19735 6081879 2024-02-27 05:05:42.847 2024-02-27 05:05:42.847 18900 TIP 440223 20669 6081931 2024-02-27 05:17:11.276 2024-02-27 05:17:11.276 2100 FEE 440182 19689 6081932 2024-02-27 05:17:11.276 2024-02-27 05:17:11.276 18900 TIP 440182 19980 6081951 2024-02-27 05:22:35.308 2024-02-27 05:22:35.308 1000 FEE 440217 4984 6081952 2024-02-27 05:22:35.308 2024-02-27 05:22:35.308 9000 TIP 440217 20602 6081956 2024-02-27 05:23:34.787 2024-02-27 05:23:34.787 1000 FEE 440132 974 6081957 2024-02-27 05:23:34.787 2024-02-27 05:23:34.787 9000 TIP 440132 20969 6081960 2024-02-27 05:24:48.168 2024-02-27 05:24:48.168 2100 FEE 440132 6419 6081961 2024-02-27 05:24:48.168 2024-02-27 05:24:48.168 18900 TIP 440132 18219 6082002 2024-02-27 05:36:43.432 2024-02-27 05:36:43.432 2100 FEE 440230 19458 6082003 2024-02-27 05:36:43.432 2024-02-27 05:36:43.432 18900 TIP 440230 5646 6082004 2024-02-27 05:36:57.714 2024-02-27 05:36:57.714 2100 FEE 440223 9353 6082005 2024-02-27 05:36:57.714 2024-02-27 05:36:57.714 18900 TIP 440223 736 6082031 2024-02-27 05:41:11.442 2024-02-27 05:41:11.442 2100 FEE 440206 2022 6082032 2024-02-27 05:41:11.442 2024-02-27 05:41:11.442 18900 TIP 440206 3709 6082039 2024-02-27 05:41:29.483 2024-02-27 05:41:29.483 100 FEE 440241 18378 6082040 2024-02-27 05:41:29.483 2024-02-27 05:41:29.483 900 TIP 440241 14857 6082041 2024-02-27 05:41:31.075 2024-02-27 05:41:31.075 900 FEE 440241 21334 6082042 2024-02-27 05:41:31.075 2024-02-27 05:41:31.075 8100 TIP 440241 9242 6080946 2024-02-27 01:41:06.346 2024-02-27 01:41:06.346 21000 FEE 440168 21216 6080959 2024-02-27 01:48:13.136 2024-02-27 01:48:13.136 100000 FEE 440132 21422 6080960 2024-02-27 01:48:13.136 2024-02-27 01:48:13.136 900000 TIP 440132 5828 6080951 2024-02-27 01:44:03.687 2024-02-27 01:44:03.687 1000 STREAM 141924 16769 6080957 2024-02-27 01:47:03.72 2024-02-27 01:47:03.72 1000 STREAM 141924 20018 6080966 2024-02-27 01:50:03.759 2024-02-27 01:50:03.759 1000 STREAM 141924 19289 6080968 2024-02-27 01:51:03.757 2024-02-27 01:51:03.757 1000 STREAM 141924 18378 6080969 2024-02-27 01:52:03.777 2024-02-27 01:52:03.777 1000 STREAM 141924 17602 6080970 2024-02-27 01:53:03.781 2024-02-27 01:53:03.781 1000 STREAM 141924 20924 6080982 2024-02-27 01:55:03.82 2024-02-27 01:55:03.82 1000 STREAM 141924 15386 6080987 2024-02-27 01:57:03.855 2024-02-27 01:57:03.855 1000 STREAM 141924 2342 6080988 2024-02-27 01:58:03.872 2024-02-27 01:58:03.872 1000 STREAM 141924 15728 6080952 2024-02-27 01:44:12.239 2024-02-27 01:44:12.239 200200 FEE 440171 2844 6080953 2024-02-27 01:44:12.239 2024-02-27 01:44:12.239 1801800 TIP 440171 11897 6080961 2024-02-27 01:48:14.726 2024-02-27 01:48:14.726 10000 FEE 440170 3709 6080962 2024-02-27 01:48:14.726 2024-02-27 01:48:14.726 90000 TIP 440170 16670 6080971 2024-02-27 01:53:17.841 2024-02-27 01:53:17.841 1000 POLL 440155 16753 6081004 2024-02-27 02:02:44.867 2024-02-27 02:02:44.867 1000 FEE 440177 2156 6081029 2024-02-27 02:10:05.466 2024-02-27 02:10:05.466 21000 FEE 440180 8926 6081030 2024-02-27 02:10:15.298 2024-02-27 02:10:15.298 100000 FEE 440132 20287 6081031 2024-02-27 02:10:15.298 2024-02-27 02:10:15.298 900000 TIP 440132 19417 6081036 2024-02-27 02:11:25.914 2024-02-27 02:11:25.914 42000 FEE 440179 1585 6081037 2024-02-27 02:11:25.914 2024-02-27 02:11:25.914 378000 TIP 440179 20267 6081039 2024-02-27 02:12:38.626 2024-02-27 02:12:38.626 2700 FEE 440080 2577 6081040 2024-02-27 02:12:38.626 2024-02-27 02:12:38.626 24300 TIP 440080 13931 6081045 2024-02-27 02:12:39.609 2024-02-27 02:12:39.609 2700 FEE 440080 1773 6081046 2024-02-27 02:12:39.609 2024-02-27 02:12:39.609 24300 TIP 440080 19941 6081073 2024-02-27 02:17:26.707 2024-02-27 02:17:26.707 500 FEE 439124 20218 6081074 2024-02-27 02:17:26.707 2024-02-27 02:17:26.707 4500 TIP 439124 2088 6081110 2024-02-27 02:19:34.549 2024-02-27 02:19:34.549 500 FEE 439397 3377 6081111 2024-02-27 02:19:34.549 2024-02-27 02:19:34.549 4500 TIP 439397 16649 6081114 2024-02-27 02:19:49.778 2024-02-27 02:19:49.778 500 FEE 439463 20744 6081115 2024-02-27 02:19:49.778 2024-02-27 02:19:49.778 4500 TIP 439463 5171 6081116 2024-02-27 02:20:01.25 2024-02-27 02:20:01.25 500 FEE 439392 18533 6081117 2024-02-27 02:20:01.25 2024-02-27 02:20:01.25 4500 TIP 439392 663 6081123 2024-02-27 02:20:16.972 2024-02-27 02:20:16.972 500 FEE 439791 14037 6081124 2024-02-27 02:20:16.972 2024-02-27 02:20:16.972 4500 TIP 439791 15351 6081126 2024-02-27 02:21:09.905 2024-02-27 02:21:09.905 1000000 FEE 440185 16347 6081133 2024-02-27 02:25:05.257 2024-02-27 02:25:05.257 100000 FEE 440186 12744 6081134 2024-02-27 02:25:20.654 2024-02-27 02:25:20.654 1000 FEE 440187 9183 6081152 2024-02-27 02:33:18.783 2024-02-27 02:33:18.783 1000 FEE 440176 21413 6081153 2024-02-27 02:33:18.783 2024-02-27 02:33:18.783 9000 TIP 440176 21387 6081154 2024-02-27 02:33:18.964 2024-02-27 02:33:18.964 1000 FEE 440176 5444 6081155 2024-02-27 02:33:18.964 2024-02-27 02:33:18.964 9000 TIP 440176 1002 6081158 2024-02-27 02:33:19.358 2024-02-27 02:33:19.358 1000 FEE 440176 20603 6081159 2024-02-27 02:33:19.358 2024-02-27 02:33:19.358 9000 TIP 440176 2188 6081179 2024-02-27 02:38:21.345 2024-02-27 02:38:21.345 500 FEE 439844 19018 6081180 2024-02-27 02:38:21.345 2024-02-27 02:38:21.345 4500 TIP 439844 16717 6081183 2024-02-27 02:38:26.055 2024-02-27 02:38:26.055 500 FEE 440080 2111 6081184 2024-02-27 02:38:26.055 2024-02-27 02:38:26.055 4500 TIP 440080 21600 6081231 2024-02-27 02:39:50.871 2024-02-27 02:39:50.871 500 FEE 439861 3411 6081232 2024-02-27 02:39:50.871 2024-02-27 02:39:50.871 4500 TIP 439861 5746 6081243 2024-02-27 02:40:22.985 2024-02-27 02:40:22.985 500 FEE 439791 16939 6081244 2024-02-27 02:40:22.985 2024-02-27 02:40:22.985 4500 TIP 439791 21389 6081250 2024-02-27 02:40:36.438 2024-02-27 02:40:36.438 100 FEE 440073 20973 6081251 2024-02-27 02:40:36.438 2024-02-27 02:40:36.438 900 TIP 440073 8385 6081260 2024-02-27 02:41:32.864 2024-02-27 02:41:32.864 500 FEE 439909 18124 6081261 2024-02-27 02:41:32.864 2024-02-27 02:41:32.864 4500 TIP 439909 20776 6081287 2024-02-27 02:46:24.043 2024-02-27 02:46:24.043 0 FEE 440193 9200 6081300 2024-02-27 02:50:53.712 2024-02-27 02:50:53.712 1100 FEE 440056 10311 6081301 2024-02-27 02:50:53.712 2024-02-27 02:50:53.712 9900 TIP 440056 18640 6081351 2024-02-27 02:57:57.526 2024-02-27 02:57:57.526 10000 FEE 440201 814 6081386 2024-02-27 03:01:14.824 2024-02-27 03:01:14.824 1000 FEE 439100 16178 6081387 2024-02-27 03:01:14.824 2024-02-27 03:01:14.824 9000 TIP 439100 8648 6081395 2024-02-27 03:03:00.519 2024-02-27 03:03:00.519 1000 FEE 440185 19174 6081396 2024-02-27 03:03:00.519 2024-02-27 03:03:00.519 9000 TIP 440185 13398 6081408 2024-02-27 03:03:20.368 2024-02-27 03:03:20.368 1000 FEE 440201 21599 6081409 2024-02-27 03:03:20.368 2024-02-27 03:03:20.368 9000 TIP 440201 6741 6081446 2024-02-27 03:14:22.199 2024-02-27 03:14:22.199 1000 FEE 439729 17172 6081447 2024-02-27 03:14:22.199 2024-02-27 03:14:22.199 9000 TIP 439729 696 6081456 2024-02-27 03:14:45.624 2024-02-27 03:14:45.624 2700 FEE 440090 16124 6081457 2024-02-27 03:14:45.624 2024-02-27 03:14:45.624 24300 TIP 440090 18124 6081471 2024-02-27 03:16:04.603 2024-02-27 03:16:04.603 1000 FEE 439699 3656 6081472 2024-02-27 03:16:04.603 2024-02-27 03:16:04.603 9000 TIP 439699 2614 6081480 2024-02-27 03:20:45.118 2024-02-27 03:20:45.118 10800 FEE 439390 647 6081481 2024-02-27 03:20:45.118 2024-02-27 03:20:45.118 97200 TIP 439390 14213 6081495 2024-02-27 03:22:24.433 2024-02-27 03:22:24.433 2700 FEE 440128 8459 6081496 2024-02-27 03:22:24.433 2024-02-27 03:22:24.433 24300 TIP 440128 18751 6081501 2024-02-27 03:22:25.022 2024-02-27 03:22:25.022 2700 FEE 440128 7772 6081502 2024-02-27 03:22:25.022 2024-02-27 03:22:25.022 24300 TIP 440128 21314 6081523 2024-02-27 03:25:22.633 2024-02-27 03:25:22.633 1000 FEE 439390 20681 6081524 2024-02-27 03:25:22.633 2024-02-27 03:25:22.633 9000 TIP 439390 15617 6081537 2024-02-27 03:26:28.418 2024-02-27 03:26:28.418 1000 FEE 439392 5519 6081538 2024-02-27 03:26:28.418 2024-02-27 03:26:28.418 9000 TIP 439392 19292 6081546 2024-02-27 03:29:13.086 2024-02-27 03:29:13.086 1000 FEE 440212 775 6081562 2024-02-27 03:32:20.057 2024-02-27 03:32:20.057 27900 FEE 440179 21166 6081563 2024-02-27 03:32:20.057 2024-02-27 03:32:20.057 251100 TIP 440179 21119 6081594 2024-02-27 03:37:54.578 2024-02-27 03:37:54.578 2500 FEE 440132 20539 6081595 2024-02-27 03:37:54.578 2024-02-27 03:37:54.578 22500 TIP 440132 10862 6081599 2024-02-27 03:38:11.643 2024-02-27 03:38:11.643 10000 FEE 440090 1244 6081600 2024-02-27 03:38:11.643 2024-02-27 03:38:11.643 90000 TIP 440090 10981 6081620 2024-02-27 03:40:28.21 2024-02-27 03:40:28.21 10000 FEE 439658 9341 6081621 2024-02-27 03:40:28.21 2024-02-27 03:40:28.21 90000 TIP 439658 18667 6081641 2024-02-27 03:52:56.591 2024-02-27 03:52:56.591 1000 FEE 439844 11515 6081642 2024-02-27 03:52:56.591 2024-02-27 03:52:56.591 9000 TIP 439844 11938 6081652 2024-02-27 03:53:09.07 2024-02-27 03:53:09.07 1000 FEE 439699 18311 6080954 2024-02-27 01:45:03.715 2024-02-27 01:45:03.715 1000 STREAM 141924 17147 6080955 2024-02-27 01:46:03.721 2024-02-27 01:46:03.721 1000 STREAM 141924 20251 6080958 2024-02-27 01:48:03.727 2024-02-27 01:48:03.727 1000 STREAM 141924 4958 6080963 2024-02-27 01:49:03.732 2024-02-27 01:49:03.732 1000 STREAM 141924 10668 6080973 2024-02-27 01:54:03.801 2024-02-27 01:54:03.801 1000 STREAM 141924 5085 6080983 2024-02-27 01:56:03.839 2024-02-27 01:56:03.839 1000 STREAM 141924 15147 6080956 2024-02-27 01:46:22.95 2024-02-27 01:46:22.95 1000 FEE 440172 7668 6080964 2024-02-27 01:49:26.586 2024-02-27 01:49:26.586 2100 FEE 439844 16536 6080965 2024-02-27 01:49:26.586 2024-02-27 01:49:26.586 18900 TIP 439844 8133 6080996 2024-02-27 01:59:10.253 2024-02-27 01:59:10.253 1000 FEE 440147 14280 6080997 2024-02-27 01:59:10.253 2024-02-27 01:59:10.253 9000 TIP 440147 1495 6081002 2024-02-27 02:01:22.934 2024-02-27 02:01:22.934 1000 FEE 440176 16706 6081014 2024-02-27 02:05:30.422 2024-02-27 02:05:30.422 2100 FEE 440152 20691 6081015 2024-02-27 02:05:30.422 2024-02-27 02:05:30.422 18900 TIP 440152 14465 6081020 2024-02-27 02:06:58.892 2024-02-27 02:06:58.892 1000 FEE 440179 1291 6081043 2024-02-27 02:12:39.104 2024-02-27 02:12:39.104 2700 FEE 440080 19569 6081044 2024-02-27 02:12:39.104 2024-02-27 02:12:39.104 24300 TIP 440080 17708 6081047 2024-02-27 02:12:41.018 2024-02-27 02:12:41.018 2700 FEE 440080 13398 6081048 2024-02-27 02:12:41.018 2024-02-27 02:12:41.018 24300 TIP 440080 21323 6081058 2024-02-27 02:12:58.002 2024-02-27 02:12:58.002 3000 FEE 440132 16282 6081059 2024-02-27 02:12:58.002 2024-02-27 02:12:58.002 27000 TIP 440132 15697 6081065 2024-02-27 02:16:45.825 2024-02-27 02:16:45.825 1000 FEE 440183 19174 6081112 2024-02-27 02:19:48.411 2024-02-27 02:19:48.411 500 FEE 439455 638 6081113 2024-02-27 02:19:48.411 2024-02-27 02:19:48.411 4500 TIP 439455 17157 6081136 2024-02-27 02:26:13.195 2024-02-27 02:26:13.195 2100 FEE 440170 4074 6081137 2024-02-27 02:26:13.195 2024-02-27 02:26:13.195 18900 TIP 440170 17392 6081156 2024-02-27 02:33:19.188 2024-02-27 02:33:19.188 1000 FEE 440176 4831 6081157 2024-02-27 02:33:19.188 2024-02-27 02:33:19.188 9000 TIP 440176 12965 6081160 2024-02-27 02:33:19.569 2024-02-27 02:33:19.569 1000 FEE 440176 11220 6081161 2024-02-27 02:33:19.569 2024-02-27 02:33:19.569 9000 TIP 440176 899 6081171 2024-02-27 02:38:15.463 2024-02-27 02:38:15.463 500 FEE 439729 695 6081172 2024-02-27 02:38:15.463 2024-02-27 02:38:15.463 4500 TIP 439729 16042 6081177 2024-02-27 02:38:20.449 2024-02-27 02:38:20.449 500 FEE 440056 688 6081178 2024-02-27 02:38:20.449 2024-02-27 02:38:20.449 4500 TIP 440056 21180 6081201 2024-02-27 02:38:34.376 2024-02-27 02:38:34.376 500 FEE 439443 960 6081202 2024-02-27 02:38:34.376 2024-02-27 02:38:34.376 4500 TIP 439443 19446 6081225 2024-02-27 02:39:16.041 2024-02-27 02:39:16.041 1000 FEE 440139 19943 6081226 2024-02-27 02:39:16.041 2024-02-27 02:39:16.041 9000 TIP 440139 15239 6081233 2024-02-27 02:40:01.825 2024-02-27 02:40:01.825 500 FEE 439455 21228 6081234 2024-02-27 02:40:01.825 2024-02-27 02:40:01.825 4500 TIP 439455 20015 6081236 2024-02-27 02:40:11.463 2024-02-27 02:40:11.463 500 FEE 439392 20706 6081237 2024-02-27 02:40:11.463 2024-02-27 02:40:11.463 4500 TIP 439392 3729 6081271 2024-02-27 02:43:21.091 2024-02-27 02:43:21.091 10000 FEE 440195 14906 6081278 2024-02-27 02:45:11.357 2024-02-27 02:45:11.357 1000 FEE 440196 19613 6081296 2024-02-27 02:50:52.926 2024-02-27 02:50:52.926 1100 FEE 440132 21060 6081297 2024-02-27 02:50:52.926 2024-02-27 02:50:52.926 9900 TIP 440132 1632 6081302 2024-02-27 02:50:53.868 2024-02-27 02:50:53.868 1100 FEE 440056 654 6081303 2024-02-27 02:50:53.868 2024-02-27 02:50:53.868 9900 TIP 440056 9529 6081324 2024-02-27 02:53:12.402 2024-02-27 02:53:12.402 1000 FEE 439735 1307 6081325 2024-02-27 02:53:12.402 2024-02-27 02:53:12.402 9000 TIP 439735 9332 6081336 2024-02-27 02:54:02.882 2024-02-27 02:54:02.882 1000 FEE 439809 1471 6081337 2024-02-27 02:54:02.882 2024-02-27 02:54:02.882 9000 TIP 439809 675 6081414 2024-02-27 03:03:20.975 2024-02-27 03:03:20.975 1000 FEE 440201 11298 6081415 2024-02-27 03:03:20.975 2024-02-27 03:03:20.975 9000 TIP 440201 7760 6081419 2024-02-27 03:04:20.691 2024-02-27 03:04:20.691 1000 FEE 440204 1291 6081478 2024-02-27 03:20:00.254 2024-02-27 03:20:00.254 100000 FEE 440208 20606 6081485 2024-02-27 03:22:23.486 2024-02-27 03:22:23.486 2700 FEE 440128 7773 6081486 2024-02-27 03:22:23.486 2024-02-27 03:22:23.486 24300 TIP 440128 19639 6081512 2024-02-27 03:24:11.791 2024-02-27 03:24:11.791 100000 FEE 440211 21263 6081527 2024-02-27 03:25:23.739 2024-02-27 03:25:23.739 400 FEE 440188 19662 6081528 2024-02-27 03:25:23.739 2024-02-27 03:25:23.739 3600 TIP 440188 19458 6081529 2024-02-27 03:25:36.223 2024-02-27 03:25:36.223 0 FEE 440211 17291 6081570 2024-02-27 03:33:09.823 2024-02-27 03:33:09.823 10000 FEE 438965 11760 6081571 2024-02-27 03:33:09.823 2024-02-27 03:33:09.823 90000 TIP 438965 7827 6081574 2024-02-27 03:34:33.764 2024-02-27 03:34:33.764 10000 FEE 440185 16336 6081575 2024-02-27 03:34:33.764 2024-02-27 03:34:33.764 90000 TIP 440185 21339 6081588 2024-02-27 03:37:53.913 2024-02-27 03:37:53.913 2500 FEE 440132 17091 6081589 2024-02-27 03:37:53.913 2024-02-27 03:37:53.913 22500 TIP 440132 19471 6081592 2024-02-27 03:37:54.404 2024-02-27 03:37:54.404 2500 FEE 440132 21155 6081593 2024-02-27 03:37:54.404 2024-02-27 03:37:54.404 22500 TIP 440132 19911 6081596 2024-02-27 03:37:54.695 2024-02-27 03:37:54.695 2500 FEE 440132 7675 6081597 2024-02-27 03:37:54.695 2024-02-27 03:37:54.695 22500 TIP 440132 9809 6081605 2024-02-27 03:38:15.783 2024-02-27 03:38:15.783 2500 FEE 440132 673 6081606 2024-02-27 03:38:15.783 2024-02-27 03:38:15.783 22500 TIP 440132 19465 6081611 2024-02-27 03:39:47.33 2024-02-27 03:39:47.33 2500 FEE 440132 2039 6081612 2024-02-27 03:39:47.33 2024-02-27 03:39:47.33 22500 TIP 440132 1124 6081613 2024-02-27 03:39:47.957 2024-02-27 03:39:47.957 2500 FEE 440132 9341 6081614 2024-02-27 03:39:47.957 2024-02-27 03:39:47.957 22500 TIP 440132 18736 6081635 2024-02-27 03:50:52.137 2024-02-27 03:50:52.137 100 FEE 439987 11678 6081636 2024-02-27 03:50:52.137 2024-02-27 03:50:52.137 900 TIP 439987 12819 6080967 2024-02-27 01:50:35.805 2024-02-27 01:50:35.805 1000 FEE 440173 697 6081022 2024-02-27 02:07:26.639 2024-02-27 02:07:26.639 0 FEE 440179 13216 6081023 2024-02-27 02:07:59.444 2024-02-27 02:07:59.444 0 FEE 440179 19488 6081026 2024-02-27 02:09:52.936 2024-02-27 02:09:52.936 2100 FEE 440139 16356 6081027 2024-02-27 02:09:52.936 2024-02-27 02:09:52.936 18900 TIP 440139 13348 6081034 2024-02-27 02:11:08.605 2024-02-27 02:11:08.605 4200 FEE 436405 18625 6081035 2024-02-27 02:11:08.605 2024-02-27 02:11:08.605 37800 TIP 436405 642 6081067 2024-02-27 02:17:23.729 2024-02-27 02:17:23.729 500 FEE 439443 18453 6081068 2024-02-27 02:17:23.729 2024-02-27 02:17:23.729 4500 TIP 439443 4984 6081075 2024-02-27 02:17:27.481 2024-02-27 02:17:27.481 500 FEE 439757 19199 6081076 2024-02-27 02:17:27.481 2024-02-27 02:17:27.481 4500 TIP 439757 21249 6081102 2024-02-27 02:18:22.754 2024-02-27 02:18:22.754 1000 FEE 440184 2724 6081143 2024-02-27 02:27:18.411 2024-02-27 02:27:18.411 2500 FEE 440132 9026 6081144 2024-02-27 02:27:18.411 2024-02-27 02:27:18.411 22500 TIP 440132 16809 6081185 2024-02-27 02:38:26.94 2024-02-27 02:38:26.94 500 FEE 439917 17446 6081186 2024-02-27 02:38:26.94 2024-02-27 02:38:26.94 4500 TIP 439917 1003 6081189 2024-02-27 02:38:33.351 2024-02-27 02:38:33.351 1000 FEE 440168 17291 6081190 2024-02-27 02:38:33.351 2024-02-27 02:38:33.351 9000 TIP 440168 21627 6081197 2024-02-27 02:38:33.921 2024-02-27 02:38:33.921 1000 FEE 440168 20889 6081198 2024-02-27 02:38:33.921 2024-02-27 02:38:33.921 9000 TIP 440168 7847 6081229 2024-02-27 02:39:48.545 2024-02-27 02:39:48.545 500 FEE 439854 21218 6081230 2024-02-27 02:39:48.545 2024-02-27 02:39:48.545 4500 TIP 439854 17124 6081284 2024-02-27 02:45:15.56 2024-02-27 02:45:15.56 9000 FEE 440179 4521 6081285 2024-02-27 02:45:15.56 2024-02-27 02:45:15.56 81000 TIP 440179 9337 6081290 2024-02-27 02:48:45.755 2024-02-27 02:48:45.755 1000 FEE 440197 618 6081292 2024-02-27 02:49:39.828 2024-02-27 02:49:39.828 1000 FEE 440198 928 6081294 2024-02-27 02:50:52.76 2024-02-27 02:50:52.76 1100 FEE 440132 8459 6081295 2024-02-27 02:50:52.76 2024-02-27 02:50:52.76 9900 TIP 440132 20713 6081298 2024-02-27 02:50:53.521 2024-02-27 02:50:53.521 1100 FEE 440056 12946 6081299 2024-02-27 02:50:53.521 2024-02-27 02:50:53.521 9900 TIP 440056 20706 6081332 2024-02-27 02:53:50.381 2024-02-27 02:53:50.381 900 FEE 440182 17722 6081333 2024-02-27 02:53:50.381 2024-02-27 02:53:50.381 8100 TIP 440182 21334 6081345 2024-02-27 02:56:51.512 2024-02-27 02:56:51.512 3300 FEE 440132 17331 6081346 2024-02-27 02:56:51.512 2024-02-27 02:56:51.512 29700 TIP 440132 14909 6081353 2024-02-27 02:58:21.979 2024-02-27 02:58:21.979 1000 FEE 440196 14258 6081354 2024-02-27 02:58:21.979 2024-02-27 02:58:21.979 9000 TIP 440196 11678 6081359 2024-02-27 02:58:22.882 2024-02-27 02:58:22.882 1000 FEE 440196 9184 6081360 2024-02-27 02:58:22.882 2024-02-27 02:58:22.882 9000 TIP 440196 2749 6081384 2024-02-27 03:01:11.489 2024-02-27 03:01:11.489 1000 FEE 439443 726 6081385 2024-02-27 03:01:11.489 2024-02-27 03:01:11.489 9000 TIP 439443 13599 6081393 2024-02-27 03:02:11.597 2024-02-27 03:02:11.597 1000 FEE 439392 16939 6081394 2024-02-27 03:02:11.597 2024-02-27 03:02:11.597 9000 TIP 439392 12268 6081399 2024-02-27 03:03:00.916 2024-02-27 03:03:00.916 1000 FEE 440185 8376 6081400 2024-02-27 03:03:00.916 2024-02-27 03:03:00.916 9000 TIP 440185 21314 6081420 2024-02-27 03:04:43.927 2024-02-27 03:04:43.927 1000 FEE 440205 5522 6081424 2024-02-27 03:05:08.883 2024-02-27 03:05:08.883 1000 FEE 440132 20881 6081425 2024-02-27 03:05:08.883 2024-02-27 03:05:08.883 9000 TIP 440132 19030 6081428 2024-02-27 03:07:02.676 2024-02-27 03:07:02.676 1000 FEE 439909 20087 6081429 2024-02-27 03:07:02.676 2024-02-27 03:07:02.676 9000 TIP 439909 20560 6081448 2024-02-27 03:14:25.33 2024-02-27 03:14:25.33 1000 FEE 439822 1051 6081449 2024-02-27 03:14:25.33 2024-02-27 03:14:25.33 9000 TIP 439822 20084 6081450 2024-02-27 03:14:27.377 2024-02-27 03:14:27.377 1000 FEE 439295 12218 6081451 2024-02-27 03:14:27.377 2024-02-27 03:14:27.377 9000 TIP 439295 1209 6081452 2024-02-27 03:14:43.513 2024-02-27 03:14:43.513 1000 FEE 439397 9290 6081453 2024-02-27 03:14:43.513 2024-02-27 03:14:43.513 9000 TIP 439397 19087 6081530 2024-02-27 03:25:38.683 2024-02-27 03:25:38.683 1000 FEE 439397 21194 6081531 2024-02-27 03:25:38.683 2024-02-27 03:25:38.683 9000 TIP 439397 2640 6081532 2024-02-27 03:25:58.548 2024-02-27 03:25:58.548 1000 FEE 439455 15577 6081533 2024-02-27 03:25:58.548 2024-02-27 03:25:58.548 9000 TIP 439455 1890 6081549 2024-02-27 03:30:00.168 2024-02-27 03:30:00.168 21000 FEE 440213 19292 6081555 2024-02-27 03:31:44.313 2024-02-27 03:31:44.313 2100 FEE 440132 17727 6081556 2024-02-27 03:31:44.313 2024-02-27 03:31:44.313 18900 TIP 440132 18904 6081581 2024-02-27 03:35:09.746 2024-02-27 03:35:09.746 2100 FEE 439585 4973 6081582 2024-02-27 03:35:09.746 2024-02-27 03:35:09.746 18900 TIP 439585 19259 6081609 2024-02-27 03:39:47.15 2024-02-27 03:39:47.15 2500 FEE 440132 14267 6081610 2024-02-27 03:39:47.15 2024-02-27 03:39:47.15 22500 TIP 440132 14688 6081615 2024-02-27 03:39:48.103 2024-02-27 03:39:48.103 2500 FEE 440132 2206 6081616 2024-02-27 03:39:48.103 2024-02-27 03:39:48.103 22500 TIP 440132 20706 6081638 2024-02-27 03:51:40.83 2024-02-27 03:51:40.83 100 FEE 439844 20481 6081639 2024-02-27 03:51:40.83 2024-02-27 03:51:40.83 900 TIP 439844 795 6081648 2024-02-27 03:53:06.47 2024-02-27 03:53:06.47 1000 FEE 439822 736 6081649 2024-02-27 03:53:06.47 2024-02-27 03:53:06.47 9000 TIP 439822 7558 6081656 2024-02-27 03:53:40.578 2024-02-27 03:53:40.578 100 FEE 440208 9364 6081657 2024-02-27 03:53:40.578 2024-02-27 03:53:40.578 900 TIP 440208 10519 6081692 2024-02-27 04:07:36.13 2024-02-27 04:07:36.13 900 FEE 440215 14385 6081693 2024-02-27 04:07:36.13 2024-02-27 04:07:36.13 8100 TIP 440215 17552 6081699 2024-02-27 04:08:10.008 2024-02-27 04:08:10.008 900 FEE 440216 739 6081700 2024-02-27 04:08:10.008 2024-02-27 04:08:10.008 8100 TIP 440216 19773 6081705 2024-02-27 04:08:19.726 2024-02-27 04:08:19.726 1000 FEE 440225 19852 6081743 2024-02-27 04:12:29.013 2024-02-27 04:12:29.013 900 FEE 440208 16988 6081744 2024-02-27 04:12:29.013 2024-02-27 04:12:29.013 8100 TIP 440208 17984 6081745 2024-02-27 04:12:31.005 2024-02-27 04:12:31.005 9000 FEE 440208 19189 6081746 2024-02-27 04:12:31.005 2024-02-27 04:12:31.005 81000 TIP 440208 15488 6081828 2024-02-27 04:46:53.407 2024-02-27 04:46:53.407 3000 FEE 440126 1480 6081829 2024-02-27 04:46:53.407 2024-02-27 04:46:53.407 27000 TIP 440126 5519 6081844 2024-02-27 04:50:14.251 2024-02-27 04:50:14.251 0 FEE 60106 624 6081888 2024-02-27 05:06:24.912 2024-02-27 05:06:24.912 2100 FEE 440159 20225 6081889 2024-02-27 05:06:24.912 2024-02-27 05:06:24.912 18900 TIP 440159 10536 6081919 2024-02-27 05:15:25.309 2024-02-27 05:15:25.309 2100 FEE 439917 21287 6081920 2024-02-27 05:15:25.309 2024-02-27 05:15:25.309 18900 TIP 439917 9362 6081942 2024-02-27 05:18:34.521 2024-02-27 05:18:34.521 1000 FEE 440242 12222 6081963 2024-02-27 05:25:11.531 2024-02-27 05:25:11.531 1000 FEE 440245 4474 6081975 2024-02-27 05:29:46.225 2024-02-27 05:29:46.225 1000 FEE 440128 18815 6081976 2024-02-27 05:29:46.225 2024-02-27 05:29:46.225 9000 TIP 440128 4692 6082054 2024-02-27 05:42:47.685 2024-02-27 05:42:47.685 1000 FEE 440256 7983 6080972 2024-02-27 01:53:43.738 2024-02-27 01:53:43.738 1000 FEE 440174 3440 6080976 2024-02-27 01:54:35.087 2024-02-27 01:54:35.087 2700 FEE 439682 16282 6080977 2024-02-27 01:54:35.087 2024-02-27 01:54:35.087 24300 TIP 439682 18124 6080990 2024-02-27 01:59:09.744 2024-02-27 01:59:09.744 1000 FEE 440147 1983 6080991 2024-02-27 01:59:09.744 2024-02-27 01:59:09.744 9000 TIP 440147 899 6081041 2024-02-27 02:12:38.886 2024-02-27 02:12:38.886 2700 FEE 440080 21437 6081042 2024-02-27 02:12:38.886 2024-02-27 02:12:38.886 24300 TIP 440080 7986 6081063 2024-02-27 02:15:08.807 2024-02-27 02:15:08.807 1000 POLL 440155 1273 6081071 2024-02-27 02:17:25.934 2024-02-27 02:17:25.934 500 FEE 439655 2502 6081072 2024-02-27 02:17:25.934 2024-02-27 02:17:25.934 4500 TIP 439655 12334 6081081 2024-02-27 02:17:49.34 2024-02-27 02:17:49.34 500 FEE 439844 21194 6081082 2024-02-27 02:17:49.34 2024-02-27 02:17:49.34 4500 TIP 439844 16912 6081104 2024-02-27 02:19:15.319 2024-02-27 02:19:15.319 500 FEE 439854 2444 6081105 2024-02-27 02:19:15.319 2024-02-27 02:19:15.319 4500 TIP 439854 9364 6081145 2024-02-27 02:27:29.988 2024-02-27 02:27:29.988 1000 FEE 440188 15200 6081162 2024-02-27 02:33:19.803 2024-02-27 02:33:19.803 1000 FEE 440176 11275 6081163 2024-02-27 02:33:19.803 2024-02-27 02:33:19.803 9000 TIP 440176 19199 6081203 2024-02-27 02:38:35.106 2024-02-27 02:38:35.106 500 FEE 439100 18357 6081204 2024-02-27 02:38:35.106 2024-02-27 02:38:35.106 4500 TIP 439100 17714 6081207 2024-02-27 02:38:37.358 2024-02-27 02:38:37.358 1000 FEE 440168 20744 6081208 2024-02-27 02:38:37.358 2024-02-27 02:38:37.358 9000 TIP 440168 14941 6081246 2024-02-27 02:40:35.142 2024-02-27 02:40:35.142 100 FEE 440073 7389 6081247 2024-02-27 02:40:35.142 2024-02-27 02:40:35.142 900 TIP 440073 21494 6081259 2024-02-27 02:41:15.684 2024-02-27 02:41:15.684 1000 FEE 440191 9349 6081272 2024-02-27 02:43:31.512 2024-02-27 02:43:31.512 2100 FEE 440073 18016 6081273 2024-02-27 02:43:31.512 2024-02-27 02:43:31.512 18900 TIP 440073 20849 6081281 2024-02-27 02:45:14.807 2024-02-27 02:45:14.807 900 FEE 440179 9916 6081282 2024-02-27 02:45:14.807 2024-02-27 02:45:14.807 8100 TIP 440179 20981 6081283 2024-02-27 02:45:15.251 2024-02-27 02:45:15.251 0 FEE 440193 18897 6081305 2024-02-27 02:51:08.81 2024-02-27 02:51:08.81 800 FEE 439743 3642 6081306 2024-02-27 02:51:08.81 2024-02-27 02:51:08.81 7200 TIP 439743 20434 6081309 2024-02-27 02:51:53.6 2024-02-27 02:51:53.6 3000 FEE 440056 18243 6081310 2024-02-27 02:51:53.6 2024-02-27 02:51:53.6 27000 TIP 440056 14910 6081326 2024-02-27 02:53:30.633 2024-02-27 02:53:30.633 1000 FEE 439451 14795 6081327 2024-02-27 02:53:30.633 2024-02-27 02:53:30.633 9000 TIP 439451 11491 6081339 2024-02-27 02:54:19.627 2024-02-27 02:54:19.627 1000 FEE 439703 21262 6081340 2024-02-27 02:54:19.627 2024-02-27 02:54:19.627 9000 TIP 439703 16830 6081364 2024-02-27 02:58:39.081 2024-02-27 02:58:39.081 1000 FEE 440128 21042 6081365 2024-02-27 02:58:39.081 2024-02-27 02:58:39.081 9000 TIP 440128 11038 6081372 2024-02-27 02:58:46.469 2024-02-27 02:58:46.469 78000 FEE 440128 15806 6081373 2024-02-27 02:58:46.469 2024-02-27 02:58:46.469 702000 TIP 440128 4958 6081375 2024-02-27 02:59:08.53 2024-02-27 02:59:08.53 10800 FEE 439946 20775 6081376 2024-02-27 02:59:08.53 2024-02-27 02:59:08.53 97200 TIP 439946 12959 6081397 2024-02-27 03:03:00.727 2024-02-27 03:03:00.727 1000 FEE 440185 5637 6081398 2024-02-27 03:03:00.727 2024-02-27 03:03:00.727 9000 TIP 440185 7553 6081422 2024-02-27 03:05:07.353 2024-02-27 03:05:07.353 1000 FEE 439822 759 6081423 2024-02-27 03:05:07.353 2024-02-27 03:05:07.353 9000 TIP 439822 9242 6081437 2024-02-27 03:11:46.651 2024-02-27 03:11:46.651 800 FEE 440056 19235 6081438 2024-02-27 03:11:46.651 2024-02-27 03:11:46.651 7200 TIP 440056 1833 6081442 2024-02-27 03:14:19.045 2024-02-27 03:14:19.045 1000 FEE 439263 10063 6081443 2024-02-27 03:14:19.045 2024-02-27 03:14:19.045 9000 TIP 439263 20409 6081458 2024-02-27 03:14:45.802 2024-02-27 03:14:45.802 2700 FEE 440090 1145 6081459 2024-02-27 03:14:45.802 2024-02-27 03:14:45.802 24300 TIP 440090 17984 6081460 2024-02-27 03:14:45.94 2024-02-27 03:14:45.94 2700 FEE 440090 21418 6081461 2024-02-27 03:14:45.94 2024-02-27 03:14:45.94 24300 TIP 440090 21416 6081465 2024-02-27 03:15:24.353 2024-02-27 03:15:24.353 1000 FEE 439701 5444 6081466 2024-02-27 03:15:24.353 2024-02-27 03:15:24.353 9000 TIP 439701 13177 6080980 2024-02-27 01:54:35.449 2024-02-27 01:54:35.449 2700 FEE 439682 2075 6080981 2024-02-27 01:54:35.449 2024-02-27 01:54:35.449 24300 TIP 439682 6700 6081010 2024-02-27 02:05:11.311 2024-02-27 02:05:11.311 2100 FEE 440128 16867 6081011 2024-02-27 02:05:11.311 2024-02-27 02:05:11.311 18900 TIP 440128 1326 6081049 2024-02-27 02:12:49.577 2024-02-27 02:12:49.577 1000 FEE 440182 997 6081052 2024-02-27 02:12:56.08 2024-02-27 02:12:56.08 1000 FEE 440132 10283 6081053 2024-02-27 02:12:56.08 2024-02-27 02:12:56.08 9000 TIP 440132 18232 6081054 2024-02-27 02:12:56.324 2024-02-27 02:12:56.324 1000 FEE 440132 18717 6081055 2024-02-27 02:12:56.324 2024-02-27 02:12:56.324 9000 TIP 440132 9200 6081056 2024-02-27 02:12:56.577 2024-02-27 02:12:56.577 1000 FEE 440132 16788 6081057 2024-02-27 02:12:56.577 2024-02-27 02:12:56.577 9000 TIP 440132 6594 6081069 2024-02-27 02:17:24.619 2024-02-27 02:17:24.619 500 FEE 439895 16059 6081070 2024-02-27 02:17:24.619 2024-02-27 02:17:24.619 4500 TIP 439895 20376 6081091 2024-02-27 02:17:54.059 2024-02-27 02:17:54.059 500 FEE 439100 18828 6081092 2024-02-27 02:17:54.059 2024-02-27 02:17:54.059 4500 TIP 439100 18423 6081093 2024-02-27 02:17:56.39 2024-02-27 02:17:56.39 500 FEE 439822 651 6081094 2024-02-27 02:17:56.39 2024-02-27 02:17:56.39 4500 TIP 439822 1772 6081097 2024-02-27 02:17:58.258 2024-02-27 02:17:58.258 500 FEE 439699 4173 6081098 2024-02-27 02:17:58.258 2024-02-27 02:17:58.258 4500 TIP 439699 5017 6081118 2024-02-27 02:20:03.931 2024-02-27 02:20:03.931 500 FEE 439606 671 6081119 2024-02-27 02:20:03.931 2024-02-27 02:20:03.931 4500 TIP 439606 16309 6081121 2024-02-27 02:20:15.51 2024-02-27 02:20:15.51 500 FEE 439701 1596 6081122 2024-02-27 02:20:15.51 2024-02-27 02:20:15.51 4500 TIP 439701 8448 6081140 2024-02-27 02:26:54.15 2024-02-27 02:26:54.15 2100 FEE 440132 15521 6081141 2024-02-27 02:26:54.15 2024-02-27 02:26:54.15 18900 TIP 440132 19005 6081169 2024-02-27 02:38:14.285 2024-02-27 02:38:14.285 500 FEE 439822 2156 6081170 2024-02-27 02:38:14.285 2024-02-27 02:38:14.285 4500 TIP 439822 16998 6081199 2024-02-27 02:38:34.125 2024-02-27 02:38:34.125 1000 FEE 440168 8498 6081200 2024-02-27 02:38:34.125 2024-02-27 02:38:34.125 9000 TIP 440168 13544 6081205 2024-02-27 02:38:37.181 2024-02-27 02:38:37.181 1000 FEE 440168 733 6081206 2024-02-27 02:38:37.181 2024-02-27 02:38:37.181 9000 TIP 440168 20257 6081211 2024-02-27 02:38:44.695 2024-02-27 02:38:44.695 500 FEE 439295 10981 6081212 2024-02-27 02:38:44.695 2024-02-27 02:38:44.695 4500 TIP 439295 21374 6081227 2024-02-27 02:39:23.524 2024-02-27 02:39:23.524 4000 FEE 440180 14295 6081228 2024-02-27 02:39:23.524 2024-02-27 02:39:23.524 36000 TIP 440180 19007 6081238 2024-02-27 02:40:18.086 2024-02-27 02:40:18.086 10000 FEE 439917 18448 6081239 2024-02-27 02:40:18.086 2024-02-27 02:40:18.086 90000 TIP 439917 9529 6081241 2024-02-27 02:40:22.09 2024-02-27 02:40:22.09 500 FEE 439701 2402 6081242 2024-02-27 02:40:22.09 2024-02-27 02:40:22.09 4500 TIP 439701 6777 6081245 2024-02-27 02:40:27.088 2024-02-27 02:40:27.088 0 FEE 440190 18265 6081248 2024-02-27 02:40:36.059 2024-02-27 02:40:36.059 500 FEE 439735 11275 6081249 2024-02-27 02:40:36.059 2024-02-27 02:40:36.059 4500 TIP 439735 13587 6081254 2024-02-27 02:40:46.78 2024-02-27 02:40:46.78 500 FEE 439451 18359 6081255 2024-02-27 02:40:46.78 2024-02-27 02:40:46.78 4500 TIP 439451 7978 6081265 2024-02-27 02:42:01.015 2024-02-27 02:42:01.015 500000 FEE 440186 16988 6081266 2024-02-27 02:42:01.015 2024-02-27 02:42:01.015 4500000 TIP 440186 20990 6081269 2024-02-27 02:42:50.68 2024-02-27 02:42:50.68 1000 FEE 440194 19105 6081314 2024-02-27 02:52:26.523 2024-02-27 02:52:26.523 1000 FEE 439263 6137 6081315 2024-02-27 02:52:26.523 2024-02-27 02:52:26.523 9000 TIP 439263 2390 6081318 2024-02-27 02:52:28.495 2024-02-27 02:52:28.495 1000 FEE 439390 20243 6081319 2024-02-27 02:52:28.495 2024-02-27 02:52:28.495 9000 TIP 439390 7376 6081321 2024-02-27 02:52:30.041 2024-02-27 02:52:30.041 1000 FEE 439443 14795 6081322 2024-02-27 02:52:30.041 2024-02-27 02:52:30.041 9000 TIP 439443 1272 6081348 2024-02-27 02:57:10.162 2024-02-27 02:57:10.162 1000 FEE 440200 9261 6081349 2024-02-27 02:57:55.534 2024-02-27 02:57:55.534 22700 FEE 439729 11561 6081350 2024-02-27 02:57:55.534 2024-02-27 02:57:55.534 204300 TIP 439729 21501 6081355 2024-02-27 02:58:22.451 2024-02-27 02:58:22.451 1000 FEE 440196 16598 6081356 2024-02-27 02:58:22.451 2024-02-27 02:58:22.451 9000 TIP 440196 656 6081380 2024-02-27 03:01:08.476 2024-02-27 03:01:08.476 1000 FEE 439315 4225 6081381 2024-02-27 03:01:08.476 2024-02-27 03:01:08.476 9000 TIP 439315 14258 6081406 2024-02-27 03:03:20.193 2024-02-27 03:03:20.193 1000 FEE 440201 17710 6081407 2024-02-27 03:03:20.193 2024-02-27 03:03:20.193 9000 TIP 440201 19148 6081412 2024-02-27 03:03:20.747 2024-02-27 03:03:20.747 1000 FEE 440201 17838 6081413 2024-02-27 03:03:20.747 2024-02-27 03:03:20.747 9000 TIP 440201 11220 6081435 2024-02-27 03:11:46.478 2024-02-27 03:11:46.478 800 FEE 440056 1605 6081436 2024-02-27 03:11:46.478 2024-02-27 03:11:46.478 7200 TIP 440056 2529 6081444 2024-02-27 03:14:20.459 2024-02-27 03:14:20.459 1000 FEE 439390 20287 6081445 2024-02-27 03:14:20.459 2024-02-27 03:14:20.459 9000 TIP 439390 19664 6081462 2024-02-27 03:15:04.706 2024-02-27 03:15:04.706 1000 FEE 439854 12808 6081463 2024-02-27 03:15:04.706 2024-02-27 03:15:04.706 9000 TIP 439854 14168 6081475 2024-02-27 03:17:08.701 2024-02-27 03:17:08.701 1000 FEE 440207 19837 6081487 2024-02-27 03:22:23.692 2024-02-27 03:22:23.692 2700 FEE 440128 19282 6081488 2024-02-27 03:22:23.692 2024-02-27 03:22:23.692 24300 TIP 440128 13782 6081499 2024-02-27 03:22:24.801 2024-02-27 03:22:24.801 2700 FEE 440128 1814 6081500 2024-02-27 03:22:24.801 2024-02-27 03:22:24.801 24300 TIP 440128 7809 6081535 2024-02-27 03:26:17.262 2024-02-27 03:26:17.262 1000 FEE 439854 19403 6081536 2024-02-27 03:26:17.262 2024-02-27 03:26:17.262 9000 TIP 439854 1224 6080989 2024-02-27 01:59:04.993 2024-02-27 01:59:04.993 1000 STREAM 141924 10638 6081000 2024-02-27 02:00:05.049 2024-02-27 02:00:05.049 1000 STREAM 141924 18336 6081001 2024-02-27 02:01:04.987 2024-02-27 02:01:04.987 1000 STREAM 141924 6741 6081003 2024-02-27 02:02:04.985 2024-02-27 02:02:04.985 1000 STREAM 141924 16357 6081006 2024-02-27 02:04:04.98 2024-02-27 02:04:04.98 1000 STREAM 141924 13169 6081016 2024-02-27 02:06:05.007 2024-02-27 02:06:05.007 1000 STREAM 141924 21021 6081025 2024-02-27 02:09:05.022 2024-02-27 02:09:05.022 1000 STREAM 141924 2711 6081032 2024-02-27 02:11:05.048 2024-02-27 02:11:05.048 1000 STREAM 141924 21589 6081060 2024-02-27 02:13:05.03 2024-02-27 02:13:05.03 1000 STREAM 141924 21269 6081061 2024-02-27 02:14:05.04 2024-02-27 02:14:05.04 1000 STREAM 141924 1145 6081101 2024-02-27 02:18:05.047 2024-02-27 02:18:05.047 1000 STREAM 141924 1319 6081125 2024-02-27 02:21:05.048 2024-02-27 02:21:05.048 1000 STREAM 141924 17411 6081135 2024-02-27 02:26:05.072 2024-02-27 02:26:05.072 1000 STREAM 141924 11670 6081147 2024-02-27 02:29:05.118 2024-02-27 02:29:05.118 1000 STREAM 141924 5171 6081149 2024-02-27 02:31:05.151 2024-02-27 02:31:05.151 1000 STREAM 141924 21453 6081164 2024-02-27 02:34:05.646 2024-02-27 02:34:05.646 1000 STREAM 141924 16440 6081235 2024-02-27 02:40:05.722 2024-02-27 02:40:05.722 1000 STREAM 141924 15484 6081267 2024-02-27 02:42:05.725 2024-02-27 02:42:05.725 1000 STREAM 141924 4313 6081286 2024-02-27 02:46:05.795 2024-02-27 02:46:05.795 1000 STREAM 141924 738 6081289 2024-02-27 02:48:05.818 2024-02-27 02:48:05.818 1000 STREAM 141924 1006 6081293 2024-02-27 02:50:05.888 2024-02-27 02:50:05.888 1000 STREAM 141924 811 6081311 2024-02-27 02:52:05.875 2024-02-27 02:52:05.875 1000 STREAM 141924 1970 6081344 2024-02-27 02:56:05.928 2024-02-27 02:56:05.928 1000 STREAM 141924 17714 6081379 2024-02-27 03:01:04.097 2024-02-27 03:01:04.097 1000 STREAM 141924 1823 6081392 2024-02-27 03:02:06.041 2024-02-27 03:02:06.041 1000 STREAM 141924 5128 6081427 2024-02-27 03:06:06.063 2024-02-27 03:06:06.063 1000 STREAM 141924 9171 6080994 2024-02-27 01:59:10.071 2024-02-27 01:59:10.071 1000 FEE 440147 10728 6080995 2024-02-27 01:59:10.071 2024-02-27 01:59:10.071 9000 TIP 440147 9796 6081012 2024-02-27 02:05:20.064 2024-02-27 02:05:20.064 2100 FEE 440079 19795 6081013 2024-02-27 02:05:20.064 2024-02-27 02:05:20.064 18900 TIP 440079 14651 6081017 2024-02-27 02:06:20.647 2024-02-27 02:06:20.647 4200 FEE 439844 8400 6081018 2024-02-27 02:06:20.647 2024-02-27 02:06:20.647 37800 TIP 439844 19458 6081019 2024-02-27 02:06:25.84 2024-02-27 02:06:25.84 1000 FEE 440178 12507 6081033 2024-02-27 02:11:06.334 2024-02-27 02:11:06.334 1000 FEE 440181 1814 6081108 2024-02-27 02:19:33.551 2024-02-27 02:19:33.551 500 FEE 439397 14650 6081109 2024-02-27 02:19:33.551 2024-02-27 02:19:33.551 4500 TIP 439397 10273 6081138 2024-02-27 02:26:16.6 2024-02-27 02:26:16.6 100000 FEE 440132 21207 6081139 2024-02-27 02:26:16.6 2024-02-27 02:26:16.6 900000 TIP 440132 6653 6081173 2024-02-27 02:38:17.007 2024-02-27 02:38:17.007 500 FEE 439315 21614 6081174 2024-02-27 02:38:17.007 2024-02-27 02:38:17.007 4500 TIP 439315 17212 6081175 2024-02-27 02:38:19.045 2024-02-27 02:38:19.045 500 FEE 440128 2402 6081005 2024-02-27 02:03:05.015 2024-02-27 02:03:05.015 1000 STREAM 141924 18819 6081007 2024-02-27 02:05:05.013 2024-02-27 02:05:05.013 1000 STREAM 141924 19995 6081021 2024-02-27 02:07:05.02 2024-02-27 02:07:05.02 1000 STREAM 141924 20439 6081024 2024-02-27 02:08:05.032 2024-02-27 02:08:05.032 1000 STREAM 141924 18309 6081028 2024-02-27 02:10:05.074 2024-02-27 02:10:05.074 1000 STREAM 141924 714 6081038 2024-02-27 02:12:05.034 2024-02-27 02:12:05.034 1000 STREAM 141924 10270 6081062 2024-02-27 02:15:05.056 2024-02-27 02:15:05.056 1000 STREAM 141924 730 6081064 2024-02-27 02:16:05.048 2024-02-27 02:16:05.048 1000 STREAM 141924 2367 6081066 2024-02-27 02:17:05.058 2024-02-27 02:17:05.058 1000 STREAM 141924 13055 6081103 2024-02-27 02:19:05.047 2024-02-27 02:19:05.047 1000 STREAM 141924 12222 6081120 2024-02-27 02:20:05.052 2024-02-27 02:20:05.052 1000 STREAM 141924 17523 6081127 2024-02-27 02:22:05.054 2024-02-27 02:22:05.054 1000 STREAM 141924 9332 6081128 2024-02-27 02:23:05.06 2024-02-27 02:23:05.06 1000 STREAM 141924 11378 6081129 2024-02-27 02:24:05.06 2024-02-27 02:24:05.06 1000 STREAM 141924 646 6081142 2024-02-27 02:27:05.085 2024-02-27 02:27:05.085 1000 STREAM 141924 5978 6081148 2024-02-27 02:30:05.108 2024-02-27 02:30:05.108 1000 STREAM 141924 21522 6081150 2024-02-27 02:32:05.121 2024-02-27 02:32:05.121 1000 STREAM 141924 16440 6081166 2024-02-27 02:36:05.658 2024-02-27 02:36:05.658 1000 STREAM 141924 9916 6081168 2024-02-27 02:38:05.677 2024-02-27 02:38:05.677 1000 STREAM 141924 16939 6081276 2024-02-27 02:44:05.764 2024-02-27 02:44:05.764 1000 STREAM 141924 1272 6081338 2024-02-27 02:54:05.913 2024-02-27 02:54:05.913 1000 STREAM 141924 17106 6081352 2024-02-27 02:58:05.973 2024-02-27 02:58:05.973 1000 STREAM 141924 14552 6081377 2024-02-27 03:00:06.066 2024-02-27 03:00:06.066 1000 STREAM 141924 17517 6081405 2024-02-27 03:03:04.071 2024-02-27 03:03:04.071 1000 STREAM 141924 9695 6081418 2024-02-27 03:04:06.043 2024-02-27 03:04:06.043 1000 STREAM 141924 5758 6081421 2024-02-27 03:05:04.082 2024-02-27 03:05:04.082 1000 STREAM 141924 15843 6081430 2024-02-27 03:07:04.097 2024-02-27 03:07:04.097 1000 STREAM 141924 1737 6081434 2024-02-27 03:11:04.156 2024-02-27 03:11:04.156 1000 STREAM 141924 1483 6081479 2024-02-27 03:20:04.286 2024-02-27 03:20:04.286 1000 STREAM 141924 6749 6081507 2024-02-27 03:23:04.313 2024-02-27 03:23:04.313 1000 STREAM 141924 20710 6081534 2024-02-27 03:26:02.331 2024-02-27 03:26:02.331 1000 STREAM 141924 21480 6081009 2024-02-27 02:05:08.35 2024-02-27 02:05:08.35 18900 TIP 440132 15594 6081083 2024-02-27 02:17:50.574 2024-02-27 02:17:50.574 500 FEE 439315 11073 6081084 2024-02-27 02:17:50.574 2024-02-27 02:17:50.574 4500 TIP 439315 16670 6081089 2024-02-27 02:17:53.492 2024-02-27 02:17:53.492 500 FEE 439729 12024 6081090 2024-02-27 02:17:53.492 2024-02-27 02:17:53.492 4500 TIP 439729 19852 6081099 2024-02-27 02:17:59.972 2024-02-27 02:17:59.972 500 FEE 440132 13767 6081100 2024-02-27 02:17:59.972 2024-02-27 02:17:59.972 4500 TIP 440132 20301 6081130 2024-02-27 02:25:00.638 2024-02-27 02:25:00.638 2100 FEE 440181 9796 6081131 2024-02-27 02:25:00.638 2024-02-27 02:25:00.638 18900 TIP 440181 10311 6081181 2024-02-27 02:38:22.508 2024-02-27 02:38:22.508 500 FEE 440132 20897 6081182 2024-02-27 02:38:22.508 2024-02-27 02:38:22.508 4500 TIP 440132 21614 6081191 2024-02-27 02:38:33.532 2024-02-27 02:38:33.532 1000 FEE 440168 5449 6081192 2024-02-27 02:38:33.532 2024-02-27 02:38:33.532 9000 TIP 440168 16357 6081209 2024-02-27 02:38:37.573 2024-02-27 02:38:37.573 1000 FEE 440168 21037 6081210 2024-02-27 02:38:37.573 2024-02-27 02:38:37.573 9000 TIP 440168 21585 6081216 2024-02-27 02:39:05.424 2024-02-27 02:39:05.424 10000 FEE 440056 9433 6081217 2024-02-27 02:39:05.424 2024-02-27 02:39:05.424 90000 TIP 440056 679 6081221 2024-02-27 02:39:15.621 2024-02-27 02:39:15.621 1000 FEE 440139 21541 6081222 2024-02-27 02:39:15.621 2024-02-27 02:39:15.621 9000 TIP 440139 21349 6081223 2024-02-27 02:39:15.821 2024-02-27 02:39:15.821 1000 FEE 440139 15556 6081224 2024-02-27 02:39:15.821 2024-02-27 02:39:15.821 9000 TIP 440139 20738 6081240 2024-02-27 02:40:18.171 2024-02-27 02:40:18.171 1000 FEE 440190 2156 6081262 2024-02-27 02:41:42.396 2024-02-27 02:41:42.396 500 FEE 439809 976 6081263 2024-02-27 02:41:42.396 2024-02-27 02:41:42.396 4500 TIP 439809 14357 6081274 2024-02-27 02:43:44.55 2024-02-27 02:43:44.55 2100 FEE 440070 11329 6081275 2024-02-27 02:43:44.55 2024-02-27 02:43:44.55 18900 TIP 440070 17162 6081328 2024-02-27 02:53:46.851 2024-02-27 02:53:46.851 1000 FEE 439909 20715 6081329 2024-02-27 02:53:46.851 2024-02-27 02:53:46.851 9000 TIP 439909 11144 6081361 2024-02-27 02:58:23.396 2024-02-27 02:58:23.396 1000 FEE 440196 15549 6081362 2024-02-27 02:58:23.396 2024-02-27 02:58:23.396 9000 TIP 440196 15139 6081366 2024-02-27 02:58:40.193 2024-02-27 02:58:40.193 1000 FEE 440128 18941 6081367 2024-02-27 02:58:40.193 2024-02-27 02:58:40.193 9000 TIP 440128 9261 6081378 2024-02-27 03:00:58.579 2024-02-27 03:00:58.579 1000 FEE 440203 19668 6081382 2024-02-27 03:01:09.597 2024-02-27 03:01:09.597 1000 FEE 439844 19992 6081383 2024-02-27 03:01:09.597 2024-02-27 03:01:09.597 9000 TIP 439844 5637 6081388 2024-02-27 03:01:16.987 2024-02-27 03:01:16.987 1000 FEE 439295 11522 6081389 2024-02-27 03:01:16.987 2024-02-27 03:01:16.987 9000 TIP 439295 21437 6081403 2024-02-27 03:03:01.309 2024-02-27 03:03:01.309 1000 FEE 440185 951 6081404 2024-02-27 03:03:01.309 2024-02-27 03:03:01.309 9000 TIP 440185 11678 6081410 2024-02-27 03:03:20.572 2024-02-27 03:03:20.572 1000 FEE 440201 703 6081411 2024-02-27 03:03:20.572 2024-02-27 03:03:20.572 9000 TIP 440201 17147 6081467 2024-02-27 03:15:40.118 2024-02-27 03:15:40.118 1000 FEE 439451 14202 6081468 2024-02-27 03:15:40.118 2024-02-27 03:15:40.118 9000 TIP 439451 15351 6081497 2024-02-27 03:22:24.631 2024-02-27 03:22:24.631 2700 FEE 440128 5557 6081498 2024-02-27 03:22:24.631 2024-02-27 03:22:24.631 24300 TIP 440128 6137 6081508 2024-02-27 03:23:48.112 2024-02-27 03:23:48.112 1000 FEE 440210 20738 6081516 2024-02-27 03:25:20.142 2024-02-27 03:25:20.142 1000 FEE 439315 17713 6081517 2024-02-27 03:25:20.142 2024-02-27 03:25:20.142 9000 TIP 439315 18270 6081525 2024-02-27 03:25:23.394 2024-02-27 03:25:23.394 1000 FEE 439443 1237 6081526 2024-02-27 03:25:23.394 2024-02-27 03:25:23.394 9000 TIP 439443 1632 6081132 2024-02-27 02:25:04.282 2024-02-27 02:25:04.282 1000 STREAM 141924 18507 6081146 2024-02-27 02:28:04.31 2024-02-27 02:28:04.31 1000 STREAM 141924 18704 6081167 2024-02-27 02:37:04.377 2024-02-27 02:37:04.377 1000 STREAM 141924 14122 6081258 2024-02-27 02:41:04.419 2024-02-27 02:41:04.419 1000 STREAM 141924 19507 6081270 2024-02-27 02:43:04.431 2024-02-27 02:43:04.431 1000 STREAM 141924 19469 6081291 2024-02-27 02:49:04.485 2024-02-27 02:49:04.485 1000 STREAM 141924 18736 6081304 2024-02-27 02:51:04.507 2024-02-27 02:51:04.507 1000 STREAM 141924 20006 6081323 2024-02-27 02:53:04.538 2024-02-27 02:53:04.538 1000 STREAM 141924 21575 6081347 2024-02-27 02:57:04.563 2024-02-27 02:57:04.563 1000 STREAM 141924 16942 6081151 2024-02-27 02:33:04.354 2024-02-27 02:33:04.354 1000 STREAM 141924 19156 6081165 2024-02-27 02:35:04.36 2024-02-27 02:35:04.36 1000 STREAM 141924 6382 6081215 2024-02-27 02:39:04.404 2024-02-27 02:39:04.404 1000 STREAM 141924 9159 6081277 2024-02-27 02:45:04.443 2024-02-27 02:45:04.443 1000 STREAM 141924 2652 6081288 2024-02-27 02:47:04.46 2024-02-27 02:47:04.46 1000 STREAM 141924 21104 6081343 2024-02-27 02:55:04.552 2024-02-27 02:55:04.552 1000 STREAM 141924 18454 6081374 2024-02-27 02:59:04.575 2024-02-27 02:59:04.575 1000 STREAM 141924 18291 6081176 2024-02-27 02:38:19.045 2024-02-27 02:38:19.045 4500 TIP 440128 13547 6081193 2024-02-27 02:38:33.734 2024-02-27 02:38:33.734 1000 FEE 440168 16456 6081194 2024-02-27 02:38:33.734 2024-02-27 02:38:33.734 9000 TIP 440168 18984 6081195 2024-02-27 02:38:33.854 2024-02-27 02:38:33.854 500 FEE 439390 17094 6081196 2024-02-27 02:38:33.854 2024-02-27 02:38:33.854 4500 TIP 439390 17570 6081213 2024-02-27 02:38:54.496 2024-02-27 02:38:54.496 500 FEE 439397 18231 6081214 2024-02-27 02:38:54.496 2024-02-27 02:38:54.496 4500 TIP 439397 21218 6081218 2024-02-27 02:39:13.888 2024-02-27 02:39:13.888 1000 FEE 440189 16193 6081219 2024-02-27 02:39:15.382 2024-02-27 02:39:15.382 1000 FEE 440139 9705 6081220 2024-02-27 02:39:15.382 2024-02-27 02:39:15.382 9000 TIP 440139 9334 6081252 2024-02-27 02:40:37.071 2024-02-27 02:40:37.071 500 FEE 439897 19553 6081253 2024-02-27 02:40:37.071 2024-02-27 02:40:37.071 4500 TIP 439897 2577 6081256 2024-02-27 02:41:03.196 2024-02-27 02:41:03.196 2200 FEE 439263 19841 6081257 2024-02-27 02:41:03.196 2024-02-27 02:41:03.196 19800 TIP 439263 1814 6081279 2024-02-27 02:45:14.61 2024-02-27 02:45:14.61 100 FEE 440179 669 6081280 2024-02-27 02:45:14.61 2024-02-27 02:45:14.61 900 TIP 440179 21208 6081307 2024-02-27 02:51:08.984 2024-02-27 02:51:08.984 800 FEE 439743 9159 6081308 2024-02-27 02:51:08.984 2024-02-27 02:51:08.984 7200 TIP 439743 11897 6081320 2024-02-27 02:52:29.147 2024-02-27 02:52:29.147 1000 FEE 440199 18368 6081341 2024-02-27 02:54:47.778 2024-02-27 02:54:47.778 1000 FEE 440182 1960 6081342 2024-02-27 02:54:47.778 2024-02-27 02:54:47.778 9000 TIP 440182 20157 6081357 2024-02-27 02:58:22.627 2024-02-27 02:58:22.627 1000 FEE 440196 21329 6081358 2024-02-27 02:58:22.627 2024-02-27 02:58:22.627 9000 TIP 440196 10608 6081390 2024-02-27 03:01:38.985 2024-02-27 03:01:38.985 1000 FEE 439455 10731 6081391 2024-02-27 03:01:38.985 2024-02-27 03:01:38.985 9000 TIP 439455 21424 6081416 2024-02-27 03:03:35.913 2024-02-27 03:03:35.913 1000 FEE 439735 675 6081417 2024-02-27 03:03:35.913 2024-02-27 03:03:35.913 9000 TIP 439735 20381 6081426 2024-02-27 03:05:20.442 2024-02-27 03:05:20.442 100000 FEE 440206 2652 6081454 2024-02-27 03:14:45.418 2024-02-27 03:14:45.418 2700 FEE 440090 1438 6081455 2024-02-27 03:14:45.418 2024-02-27 03:14:45.418 24300 TIP 440090 9367 6081469 2024-02-27 03:15:56.635 2024-02-27 03:15:56.635 1000 FEE 440182 4027 6081470 2024-02-27 03:15:56.635 2024-02-27 03:15:56.635 9000 TIP 440182 21303 6081503 2024-02-27 03:22:27.72 2024-02-27 03:22:27.72 3100 FEE 440132 15273 6081504 2024-02-27 03:22:27.72 2024-02-27 03:22:27.72 27900 TIP 440132 1802 6081518 2024-02-27 03:25:20.185 2024-02-27 03:25:20.185 0 FEE 440211 21079 6081519 2024-02-27 03:25:20.794 2024-02-27 03:25:20.794 1000 FEE 439263 18731 6081520 2024-02-27 03:25:20.794 2024-02-27 03:25:20.794 9000 TIP 439263 17927 6081539 2024-02-27 03:26:38.631 2024-02-27 03:26:38.631 1000 FEE 439791 20560 6081540 2024-02-27 03:26:38.631 2024-02-27 03:26:38.631 9000 TIP 439791 981 6081541 2024-02-27 03:26:44.126 2024-02-27 03:26:44.126 1000 FEE 439729 21612 6081542 2024-02-27 03:26:44.126 2024-02-27 03:26:44.126 9000 TIP 439729 21521 6081551 2024-02-27 03:30:30.515 2024-02-27 03:30:30.515 1000 FEE 440214 2039 6081557 2024-02-27 03:31:47.477 2024-02-27 03:31:47.477 2100 FEE 440213 20642 6081558 2024-02-27 03:31:47.477 2024-02-27 03:31:47.477 18900 TIP 440213 10342 6081560 2024-02-27 03:32:19.52 2024-02-27 03:32:19.52 3100 FEE 440179 16988 6081561 2024-02-27 03:32:19.52 2024-02-27 03:32:19.52 27900 TIP 440179 928 6081579 2024-02-27 03:35:05.848 2024-02-27 03:35:05.848 2100 FEE 439592 19531 6081580 2024-02-27 03:35:05.848 2024-02-27 03:35:05.848 18900 TIP 439592 15491 6081625 2024-02-27 03:43:19.317 2024-02-27 03:43:19.317 100000 FEE 440220 4633 6081643 2024-02-27 03:52:58.035 2024-02-27 03:52:58.035 1000 FEE 439315 19346 6081644 2024-02-27 03:52:58.035 2024-02-27 03:52:58.035 9000 TIP 439315 1720 6081663 2024-02-27 03:54:07.917 2024-02-27 03:54:07.917 100 FEE 440186 20802 6081664 2024-02-27 03:54:07.917 2024-02-27 03:54:07.917 900 TIP 440186 20756 6081667 2024-02-27 03:54:15.275 2024-02-27 03:54:15.275 1000 FEE 440221 19417 6081701 2024-02-27 04:08:10.675 2024-02-27 04:08:10.675 9000 FEE 440216 14705 6081702 2024-02-27 04:08:10.675 2024-02-27 04:08:10.675 81000 TIP 440216 21148 6081717 2024-02-27 04:10:54.821 2024-02-27 04:10:54.821 100 FEE 440153 699 6081718 2024-02-27 04:10:54.821 2024-02-27 04:10:54.821 900 TIP 440153 1738 6081739 2024-02-27 04:12:17.311 2024-02-27 04:12:17.311 90000 FEE 440206 14909 6081740 2024-02-27 04:12:17.311 2024-02-27 04:12:17.311 810000 TIP 440206 17696 6081764 2024-02-27 04:17:09.536 2024-02-27 04:17:09.536 21800 FEE 440199 20738 6081765 2024-02-27 04:17:09.536 2024-02-27 04:17:09.536 196200 TIP 440199 9482 6081767 2024-02-27 04:18:05.766 2024-02-27 04:18:05.766 1000 FEE 440228 9796 6081795 2024-02-27 04:37:14.925 2024-02-27 04:37:14.925 1000 FEE 440132 18452 6081796 2024-02-27 04:37:14.925 2024-02-27 04:37:14.925 9000 TIP 440132 21238 6081810 2024-02-27 04:38:59.474 2024-02-27 04:38:59.474 2100 FEE 439996 20280 6081811 2024-02-27 04:38:59.474 2024-02-27 04:38:59.474 18900 TIP 439996 18219 6081827 2024-02-27 04:46:45.17 2024-02-27 04:46:45.17 1000 FEE 440234 21401 6081848 2024-02-27 04:50:52.417 2024-02-27 04:50:52.417 3000 FEE 439729 11038 6081849 2024-02-27 04:50:52.417 2024-02-27 04:50:52.417 27000 TIP 439729 14906 6081850 2024-02-27 04:50:52.506 2024-02-27 04:50:52.506 3000 FEE 439729 18629 6081851 2024-02-27 04:50:52.506 2024-02-27 04:50:52.506 27000 TIP 439729 17817 6081859 2024-02-27 04:55:12.21 2024-02-27 04:55:12.21 1000 FEE 440236 2188 6081885 2024-02-27 05:06:09.331 2024-02-27 05:06:09.331 100000 FEE 440239 766 6081909 2024-02-27 05:09:32.382 2024-02-27 05:09:32.382 1000 FEE 440240 12175 6081933 2024-02-27 05:17:15.378 2024-02-27 05:17:15.378 2100 FEE 440216 802 6081934 2024-02-27 05:17:15.378 2024-02-27 05:17:15.378 18900 TIP 440216 9378 6081966 2024-02-27 05:26:17.538 2024-02-27 05:26:17.538 10000 FEE 440239 11609 6081967 2024-02-27 05:26:17.538 2024-02-27 05:26:17.538 90000 TIP 440239 19795 6081987 2024-02-27 05:33:15.915 2024-02-27 05:33:15.915 2100 FEE 437667 10352 6081988 2024-02-27 05:33:15.915 2024-02-27 05:33:15.915 18900 TIP 437667 18138 6081992 2024-02-27 05:34:29.782 2024-02-27 05:34:29.782 1000 FEE 440251 17570 6082027 2024-02-27 05:40:51.242 2024-02-27 05:40:51.242 1000 FEE 440255 15833 6082075 2024-02-27 05:52:22.709 2024-02-27 05:52:22.709 2100 FEE 440259 8729 6082076 2024-02-27 05:52:22.709 2024-02-27 05:52:22.709 18900 TIP 440259 18618 6082110 2024-02-27 05:54:18.788 2024-02-27 05:54:18.788 0 FEE 440260 1030 6082111 2024-02-27 05:54:49.633 2024-02-27 05:54:49.633 2100 FEE 440259 9342 6082112 2024-02-27 05:54:49.633 2024-02-27 05:54:49.633 18900 TIP 440259 17001 6082119 2024-02-27 05:56:30.746 2024-02-27 05:56:30.746 2100 FEE 439877 642 6082120 2024-02-27 05:56:30.746 2024-02-27 05:56:30.746 18900 TIP 439877 7827 6082129 2024-02-27 05:56:58.285 2024-02-27 05:56:58.285 2100 FEE 439729 18629 6082130 2024-02-27 05:56:58.285 2024-02-27 05:56:58.285 18900 TIP 439729 20987 6082134 2024-02-27 05:57:03.585 2024-02-27 05:57:03.585 2100 FEE 439277 6616 6082135 2024-02-27 05:57:03.585 2024-02-27 05:57:03.585 18900 TIP 439277 5160 6082138 2024-02-27 05:57:20.864 2024-02-27 05:57:20.864 2100 FEE 439489 8796 6082139 2024-02-27 05:57:20.864 2024-02-27 05:57:20.864 18900 TIP 439489 7675 6082148 2024-02-27 06:01:41.556 2024-02-27 06:01:41.556 1000 FEE 440263 9169 6082152 2024-02-27 06:02:00.254 2024-02-27 06:02:00.254 2100 FEE 440257 17513 6082153 2024-02-27 06:02:00.254 2024-02-27 06:02:00.254 18900 TIP 440257 20901 6082161 2024-02-27 06:02:17.047 2024-02-27 06:02:17.047 2100 FEE 440155 18533 6082162 2024-02-27 06:02:17.047 2024-02-27 06:02:17.047 18900 TIP 440155 19193 6082165 2024-02-27 06:02:38.666 2024-02-27 06:02:38.666 1000 FEE 440265 17800 6082185 2024-02-27 06:05:07.206 2024-02-27 06:05:07.206 5000 FEE 440210 17522 6082186 2024-02-27 06:05:07.206 2024-02-27 06:05:07.206 45000 TIP 440210 2327 6082203 2024-02-27 06:05:12.749 2024-02-27 06:05:12.749 2100 FEE 439315 5499 6082204 2024-02-27 06:05:12.749 2024-02-27 06:05:12.749 18900 TIP 439315 649 6082219 2024-02-27 06:05:19.236 2024-02-27 06:05:19.236 2100 FEE 439295 1737 6082220 2024-02-27 06:05:19.236 2024-02-27 06:05:19.236 18900 TIP 439295 9863 6082241 2024-02-27 06:05:54.799 2024-02-27 06:05:54.799 100 FEE 440080 828 6082242 2024-02-27 06:05:54.799 2024-02-27 06:05:54.799 900 TIP 440080 21356 6082258 2024-02-27 06:06:30.008 2024-02-27 06:06:30.008 2000 FEE 440208 16950 6082259 2024-02-27 06:06:30.008 2024-02-27 06:06:30.008 18000 TIP 440208 20751 6082300 2024-02-27 06:20:03.526 2024-02-27 06:20:03.526 100 FEE 440211 20816 6082301 2024-02-27 06:20:03.526 2024-02-27 06:20:03.526 900 TIP 440211 10698 6082326 2024-02-27 06:28:39.005 2024-02-27 06:28:39.005 100 FEE 440206 8648 6082327 2024-02-27 06:28:39.005 2024-02-27 06:28:39.005 900 TIP 440206 5942 6082330 2024-02-27 06:28:56.766 2024-02-27 06:28:56.766 100 FEE 440266 5637 6082331 2024-02-27 06:28:56.766 2024-02-27 06:28:56.766 900 TIP 440266 10493 6081431 2024-02-27 03:08:05.283 2024-02-27 03:08:05.283 1000 STREAM 141924 18368 6081439 2024-02-27 03:12:05.322 2024-02-27 03:12:05.322 1000 STREAM 141924 7989 6081440 2024-02-27 03:13:05.332 2024-02-27 03:13:05.332 1000 STREAM 141924 19930 6081441 2024-02-27 03:14:05.335 2024-02-27 03:14:05.335 1000 STREAM 141924 13575 6081432 2024-02-27 03:09:05.291 2024-02-27 03:09:05.291 1000 STREAM 141924 17707 6081433 2024-02-27 03:10:05.35 2024-02-27 03:10:05.35 1000 STREAM 141924 822 6081474 2024-02-27 03:17:05.347 2024-02-27 03:17:05.347 1000 STREAM 141924 10096 6081476 2024-02-27 03:18:05.363 2024-02-27 03:18:05.363 1000 STREAM 141924 8037 6081484 2024-02-27 03:22:05.378 2024-02-27 03:22:05.378 1000 STREAM 141924 8498 6081545 2024-02-27 03:29:05.443 2024-02-27 03:29:05.443 1000 STREAM 141924 19907 6081550 2024-02-27 03:30:05.459 2024-02-27 03:30:05.459 1000 STREAM 141924 6741 6081565 2024-02-27 03:33:05.476 2024-02-27 03:33:05.476 1000 STREAM 141924 19848 6081573 2024-02-27 03:34:05.493 2024-02-27 03:34:05.493 1000 STREAM 141924 951 6081583 2024-02-27 03:36:05.506 2024-02-27 03:36:05.506 1000 STREAM 141924 17316 6081586 2024-02-27 03:37:05.523 2024-02-27 03:37:05.523 1000 STREAM 141924 763 6081598 2024-02-27 03:38:05.536 2024-02-27 03:38:05.536 1000 STREAM 141924 9 6081607 2024-02-27 03:39:05.551 2024-02-27 03:39:05.551 1000 STREAM 141924 12911 6081619 2024-02-27 03:40:05.599 2024-02-27 03:40:05.599 1000 STREAM 141924 20464 6081626 2024-02-27 03:44:05.529 2024-02-27 03:44:05.529 1000 STREAM 141924 17415 6081628 2024-02-27 03:46:05.559 2024-02-27 03:46:05.559 1000 STREAM 141924 20433 6081630 2024-02-27 03:48:05.557 2024-02-27 03:48:05.557 1000 STREAM 141924 19541 6081464 2024-02-27 03:15:05.339 2024-02-27 03:15:05.339 1000 STREAM 141924 4167 6081473 2024-02-27 03:16:05.346 2024-02-27 03:16:05.346 1000 STREAM 141924 913 6081477 2024-02-27 03:19:05.365 2024-02-27 03:19:05.365 1000 STREAM 141924 21446 6081483 2024-02-27 03:21:05.382 2024-02-27 03:21:05.382 1000 STREAM 141924 16809 6081511 2024-02-27 03:24:05.409 2024-02-27 03:24:05.409 1000 STREAM 141924 1705 6081515 2024-02-27 03:25:05.406 2024-02-27 03:25:05.406 1000 STREAM 141924 5942 6081543 2024-02-27 03:27:05.463 2024-02-27 03:27:05.463 1000 STREAM 141924 17710 6081559 2024-02-27 03:32:05.475 2024-02-27 03:32:05.475 1000 STREAM 141924 19633 6081578 2024-02-27 03:35:05.497 2024-02-27 03:35:05.497 1000 STREAM 141924 18470 6081622 2024-02-27 03:41:05.561 2024-02-27 03:41:05.561 1000 STREAM 141924 20018 6081623 2024-02-27 03:42:05.546 2024-02-27 03:42:05.546 1000 STREAM 141924 21599 6081624 2024-02-27 03:43:05.538 2024-02-27 03:43:05.538 1000 STREAM 141924 21275 6081627 2024-02-27 03:45:05.578 2024-02-27 03:45:05.578 1000 STREAM 141924 19557 6081629 2024-02-27 03:47:05.55 2024-02-27 03:47:05.55 1000 STREAM 141924 3371 6081632 2024-02-27 03:50:05.592 2024-02-27 03:50:05.592 1000 STREAM 141924 12507 6081640 2024-02-27 03:52:05.574 2024-02-27 03:52:05.574 1000 STREAM 141924 2596 6081662 2024-02-27 03:54:05.564 2024-02-27 03:54:05.564 1000 STREAM 141924 15762 6081670 2024-02-27 03:55:05.596 2024-02-27 03:55:05.596 1000 STREAM 141924 19878 6081673 2024-02-27 03:56:05.584 2024-02-27 03:56:05.584 1000 STREAM 141924 15488 6081680 2024-02-27 04:00:05.63 2024-02-27 04:00:05.63 1000 STREAM 141924 20301 6081780 2024-02-27 04:28:01.869 2024-02-27 04:28:01.869 1000 STREAM 141924 4259 6081782 2024-02-27 04:30:01.874 2024-02-27 04:30:01.874 1000 STREAM 141924 2042 6081791 2024-02-27 04:34:01.862 2024-02-27 04:34:01.862 1000 STREAM 141924 19796 6081823 2024-02-27 04:44:02.155 2024-02-27 04:44:02.155 1000 STREAM 141924 7668 6081868 2024-02-27 05:00:02.337 2024-02-27 05:00:02.337 1000 STREAM 141924 21374 6081482 2024-02-27 03:21:01.901 2024-02-27 03:21:01.901 1000 FEE 440209 1833 6081489 2024-02-27 03:22:23.893 2024-02-27 03:22:23.893 2700 FEE 440128 917 6081490 2024-02-27 03:22:23.893 2024-02-27 03:22:23.893 24300 TIP 440128 1051 6081491 2024-02-27 03:22:24.067 2024-02-27 03:22:24.067 2700 FEE 440128 21296 6081492 2024-02-27 03:22:24.067 2024-02-27 03:22:24.067 24300 TIP 440128 1881 6081521 2024-02-27 03:25:21.937 2024-02-27 03:25:21.937 1000 FEE 439844 7760 6081522 2024-02-27 03:25:21.937 2024-02-27 03:25:21.937 9000 TIP 439844 678 6081554 2024-02-27 03:31:25.97 2024-02-27 03:31:25.97 1000 FEE 440216 9346 6081590 2024-02-27 03:37:54.24 2024-02-27 03:37:54.24 2500 FEE 440132 19732 6081591 2024-02-27 03:37:54.24 2024-02-27 03:37:54.24 22500 TIP 440132 20490 6081660 2024-02-27 03:54:01.892 2024-02-27 03:54:01.892 1000 FEE 439735 4322 6081661 2024-02-27 03:54:01.892 2024-02-27 03:54:01.892 9000 TIP 439735 12049 6081706 2024-02-27 04:08:34.217 2024-02-27 04:08:34.217 1000 FEE 440226 19576 6081710 2024-02-27 04:09:30.382 2024-02-27 04:09:30.382 900 FEE 440219 960 6081711 2024-02-27 04:09:30.382 2024-02-27 04:09:30.382 8100 TIP 440219 21457 6081712 2024-02-27 04:09:31.018 2024-02-27 04:09:31.018 9000 FEE 440219 6393 6081713 2024-02-27 04:09:31.018 2024-02-27 04:09:31.018 81000 TIP 440219 1628 6081733 2024-02-27 04:12:14.904 2024-02-27 04:12:14.904 100 FEE 440206 19463 6081734 2024-02-27 04:12:14.904 2024-02-27 04:12:14.904 900 TIP 440206 19890 6081737 2024-02-27 04:12:15.944 2024-02-27 04:12:15.944 9000 FEE 440206 6268 6081738 2024-02-27 04:12:15.944 2024-02-27 04:12:15.944 81000 TIP 440206 4692 6081753 2024-02-27 04:12:50.552 2024-02-27 04:12:50.552 100 FEE 440223 2123 6081754 2024-02-27 04:12:50.552 2024-02-27 04:12:50.552 900 TIP 440223 21274 6081805 2024-02-27 04:37:15.862 2024-02-27 04:37:15.862 1000 FEE 440132 18581 6081806 2024-02-27 04:37:15.862 2024-02-27 04:37:15.862 9000 TIP 440132 766 6081869 2024-02-27 05:00:04.519 2024-02-27 05:00:04.519 100000 FEE 440237 19886 6081886 2024-02-27 05:06:14.415 2024-02-27 05:06:14.415 2100 FEE 440170 15148 6081887 2024-02-27 05:06:14.415 2024-02-27 05:06:14.415 18900 TIP 440170 2596 6081893 2024-02-27 05:07:08.575 2024-02-27 05:07:08.575 2100 FEE 440208 21451 6081894 2024-02-27 05:07:08.575 2024-02-27 05:07:08.575 18900 TIP 440208 9356 6081895 2024-02-27 05:07:09.211 2024-02-27 05:07:09.211 2100 FEE 440213 19637 6081896 2024-02-27 05:07:09.211 2024-02-27 05:07:09.211 18900 TIP 440213 10536 6081903 2024-02-27 05:07:18.719 2024-02-27 05:07:18.719 2100 FEE 440223 20022 6081904 2024-02-27 05:07:18.719 2024-02-27 05:07:18.719 18900 TIP 440223 21136 6081944 2024-02-27 05:18:49.623 2024-02-27 05:18:49.623 1000 FEE 440243 15386 6081945 2024-02-27 05:18:54.18 2024-02-27 05:18:54.18 2100 FEE 440132 699 6081946 2024-02-27 05:18:54.18 2024-02-27 05:18:54.18 18900 TIP 440132 1483 6081969 2024-02-27 05:28:00.849 2024-02-27 05:28:00.849 1000 FEE 440247 16998 6081978 2024-02-27 05:30:13.691 2024-02-27 05:30:13.691 10000 FEE 433291 18994 6081979 2024-02-27 05:30:13.691 2024-02-27 05:30:13.691 90000 TIP 433291 826 6081980 2024-02-27 05:30:22.142 2024-02-27 05:30:22.142 10000 FEE 431961 7668 6081981 2024-02-27 05:30:22.142 2024-02-27 05:30:22.142 90000 TIP 431961 10398 6082009 2024-02-27 05:37:54.948 2024-02-27 05:37:54.948 2100 FEE 419265 8284 6082010 2024-02-27 05:37:54.948 2024-02-27 05:37:54.948 18900 TIP 419265 20257 6082021 2024-02-27 05:39:34.806 2024-02-27 05:39:34.806 900 FEE 440249 17392 6082022 2024-02-27 05:39:34.806 2024-02-27 05:39:34.806 8100 TIP 440249 986 6082033 2024-02-27 05:41:17.563 2024-02-27 05:41:17.563 2100 FEE 440185 1576 6082034 2024-02-27 05:41:17.563 2024-02-27 05:41:17.563 18900 TIP 440185 4459 6082159 2024-02-27 06:02:09.634 2024-02-27 06:02:09.634 2100 FEE 440180 19576 6082160 2024-02-27 06:02:09.634 2024-02-27 06:02:09.634 18900 TIP 440180 4175 6082168 2024-02-27 06:02:43.124 2024-02-27 06:02:43.124 2100 FEE 440156 956 6082169 2024-02-27 06:02:43.124 2024-02-27 06:02:43.124 18900 TIP 440156 20251 6082177 2024-02-27 06:05:04.273 2024-02-27 06:05:04.273 2100 FEE 440132 5359 6082178 2024-02-27 06:05:04.273 2024-02-27 06:05:04.273 18900 TIP 440132 16348 6082193 2024-02-27 06:05:09.356 2024-02-27 06:05:09.356 2100 FEE 439729 11153 6082194 2024-02-27 06:05:09.356 2024-02-27 06:05:09.356 18900 TIP 439729 5701 6082195 2024-02-27 06:05:09.37 2024-02-27 06:05:09.37 5000 FEE 440030 9363 6082196 2024-02-27 06:05:09.37 2024-02-27 06:05:09.37 45000 TIP 440030 12976 6082267 2024-02-27 06:07:28.902 2024-02-27 06:07:28.902 69000 FEE 440266 12819 6082314 2024-02-27 06:26:13.479 2024-02-27 06:26:13.479 2500 FEE 440091 16680 6082315 2024-02-27 06:26:13.479 2024-02-27 06:26:13.479 22500 TIP 440091 15978 6082369 2024-02-27 06:43:54.591 2024-02-27 06:43:54.591 200 FEE 440132 14990 6082370 2024-02-27 06:43:54.591 2024-02-27 06:43:54.591 1800 TIP 440132 15544 6082373 2024-02-27 06:43:55.065 2024-02-27 06:43:55.065 400 FEE 440132 18557 6082374 2024-02-27 06:43:55.065 2024-02-27 06:43:55.065 3600 TIP 440132 5359 6082377 2024-02-27 06:43:55.556 2024-02-27 06:43:55.556 200 FEE 440132 10096 6082378 2024-02-27 06:43:55.556 2024-02-27 06:43:55.556 1800 TIP 440132 20554 6082395 2024-02-27 06:45:04.805 2024-02-27 06:45:04.805 2100 FEE 440225 20434 6082396 2024-02-27 06:45:04.805 2024-02-27 06:45:04.805 18900 TIP 440225 859 6082411 2024-02-27 06:49:17.908 2024-02-27 06:49:17.908 0 FEE 440277 20655 6082415 2024-02-27 06:50:45.437 2024-02-27 06:50:45.437 1000 FEE 439658 13587 6082416 2024-02-27 06:50:45.437 2024-02-27 06:50:45.437 9000 TIP 439658 780 6082441 2024-02-27 07:00:27.112 2024-02-27 07:00:27.112 7700 FEE 440230 21274 6081544 2024-02-27 03:28:02.389 2024-02-27 03:28:02.389 1000 STREAM 141924 17673 6081552 2024-02-27 03:31:02.44 2024-02-27 03:31:02.44 1000 STREAM 141924 20454 6081547 2024-02-27 03:29:40.93 2024-02-27 03:29:40.93 1000 FEE 440097 4313 6081548 2024-02-27 03:29:40.93 2024-02-27 03:29:40.93 9000 TIP 440097 15728 6081553 2024-02-27 03:31:12.457 2024-02-27 03:31:12.457 1000 FEE 440215 2367 6081584 2024-02-27 03:36:48.243 2024-02-27 03:36:48.243 1000 FEE 440157 18403 6081585 2024-02-27 03:36:48.243 2024-02-27 03:36:48.243 9000 TIP 440157 13517 6081587 2024-02-27 03:37:51.121 2024-02-27 03:37:51.121 1000 FEE 440219 17707 6081601 2024-02-27 03:38:15.511 2024-02-27 03:38:15.511 2500 FEE 440132 672 6081602 2024-02-27 03:38:15.511 2024-02-27 03:38:15.511 22500 TIP 440132 21271 6081686 2024-02-27 04:05:58.255 2024-02-27 04:05:58.255 1000 FEE 440080 20481 6081687 2024-02-27 04:05:58.255 2024-02-27 04:05:58.255 9000 TIP 440080 1472 6081735 2024-02-27 04:12:15.315 2024-02-27 04:12:15.315 900 FEE 440206 20110 6081736 2024-02-27 04:12:15.315 2024-02-27 04:12:15.315 8100 TIP 440206 17082 6081783 2024-02-27 04:30:16.238 2024-02-27 04:30:16.238 100 FEE 440229 940 6081784 2024-02-27 04:30:16.238 2024-02-27 04:30:16.238 900 TIP 440229 15351 6081786 2024-02-27 04:31:57.816 2024-02-27 04:31:57.816 17000 FEE 440230 18673 6081797 2024-02-27 04:37:15.106 2024-02-27 04:37:15.106 1000 FEE 440132 1352 6081798 2024-02-27 04:37:15.106 2024-02-27 04:37:15.106 9000 TIP 440132 9418 6081801 2024-02-27 04:37:15.504 2024-02-27 04:37:15.504 1000 FEE 440132 11716 6081802 2024-02-27 04:37:15.504 2024-02-27 04:37:15.504 9000 TIP 440132 18403 6081803 2024-02-27 04:37:15.752 2024-02-27 04:37:15.752 1000 FEE 440132 15941 6081804 2024-02-27 04:37:15.752 2024-02-27 04:37:15.752 9000 TIP 440132 21532 6081808 2024-02-27 04:38:47.807 2024-02-27 04:38:47.807 2100 FEE 351633 9200 6081809 2024-02-27 04:38:47.807 2024-02-27 04:38:47.807 18900 TIP 351633 946 6081830 2024-02-27 04:46:54.369 2024-02-27 04:46:54.369 3000 FEE 439996 5129 6081831 2024-02-27 04:46:54.369 2024-02-27 04:46:54.369 27000 TIP 439996 3456 6081865 2024-02-27 04:58:06.009 2024-02-27 04:58:06.009 10000 FEE 439844 21627 6081866 2024-02-27 04:58:06.009 2024-02-27 04:58:06.009 90000 TIP 439844 725 6081870 2024-02-27 05:00:04.919 2024-02-27 05:00:04.919 1000 FEE 440238 20660 6081905 2024-02-27 05:07:40.106 2024-02-27 05:07:40.106 2100 FEE 440239 18717 6081906 2024-02-27 05:07:40.106 2024-02-27 05:07:40.106 18900 TIP 440239 21159 6081921 2024-02-27 05:15:49.52 2024-02-27 05:15:49.52 2100 FEE 440184 18393 6081922 2024-02-27 05:15:49.52 2024-02-27 05:15:49.52 18900 TIP 440184 18667 6081928 2024-02-27 05:17:02.584 2024-02-27 05:17:02.584 2100 FEE 440215 19346 6081929 2024-02-27 05:17:02.584 2024-02-27 05:17:02.584 18900 TIP 440215 21619 6081974 2024-02-27 05:29:35.209 2024-02-27 05:29:35.209 1000 FEE 440248 956 6081998 2024-02-27 05:36:28.72 2024-02-27 05:36:28.72 2100 FEE 440241 19435 6081999 2024-02-27 05:36:28.72 2024-02-27 05:36:28.72 18900 TIP 440241 10342 6082000 2024-02-27 05:36:37.77 2024-02-27 05:36:37.77 2100 FEE 440241 9669 6081564 2024-02-27 03:32:44.203 2024-02-27 03:32:44.203 1000 FEE 440217 15146 6081566 2024-02-27 03:33:07.061 2024-02-27 03:33:07.061 100 FEE 438965 19836 6081567 2024-02-27 03:33:07.061 2024-02-27 03:33:07.061 900 TIP 438965 5487 6081572 2024-02-27 03:33:11.529 2024-02-27 03:33:11.529 1000 FEE 440218 1577 6081603 2024-02-27 03:38:15.629 2024-02-27 03:38:15.629 2500 FEE 440132 21164 6081604 2024-02-27 03:38:15.629 2024-02-27 03:38:15.629 22500 TIP 440132 16336 6081608 2024-02-27 03:39:08.157 2024-02-27 03:39:08.157 0 FEE 440219 19320 6081617 2024-02-27 03:39:48.247 2024-02-27 03:39:48.247 2500 FEE 440132 1426 6081618 2024-02-27 03:39:48.247 2024-02-27 03:39:48.247 22500 TIP 440132 20799 6081633 2024-02-27 03:50:43.938 2024-02-27 03:50:43.938 100 FEE 440132 15200 6081634 2024-02-27 03:50:43.938 2024-02-27 03:50:43.938 900 TIP 440132 15160 6081671 2024-02-27 03:55:11.356 2024-02-27 03:55:11.356 100 FEE 440152 671 6081672 2024-02-27 03:55:11.356 2024-02-27 03:55:11.356 900 TIP 440152 18625 6081714 2024-02-27 04:09:31.402 2024-02-27 04:09:31.402 0 FEE 440226 2776 6081728 2024-02-27 04:11:50.295 2024-02-27 04:11:50.295 1000 FEE 440227 18637 6081729 2024-02-27 04:11:55.275 2024-02-27 04:11:55.275 9000 FEE 440185 21386 6081730 2024-02-27 04:11:55.275 2024-02-27 04:11:55.275 81000 TIP 440185 18705 6081741 2024-02-27 04:12:28.815 2024-02-27 04:12:28.815 100 FEE 440208 2029 6081742 2024-02-27 04:12:28.815 2024-02-27 04:12:28.815 900 TIP 440208 6041 6081749 2024-02-27 04:12:38.571 2024-02-27 04:12:38.571 900 FEE 440211 17116 6081750 2024-02-27 04:12:38.571 2024-02-27 04:12:38.571 8100 TIP 440211 15858 6081758 2024-02-27 04:13:15.582 2024-02-27 04:13:15.582 9000 FEE 440223 21155 6081759 2024-02-27 04:13:15.582 2024-02-27 04:13:15.582 81000 TIP 440223 18583 6081770 2024-02-27 04:21:03.156 2024-02-27 04:21:03.156 10000 FEE 440132 21103 6081771 2024-02-27 04:21:03.156 2024-02-27 04:21:03.156 90000 TIP 440132 626 6081812 2024-02-27 04:39:01.395 2024-02-27 04:39:01.395 2100 FEE 439946 848 6081813 2024-02-27 04:39:01.395 2024-02-27 04:39:01.395 18900 TIP 439946 18601 6081836 2024-02-27 04:46:56.603 2024-02-27 04:46:56.603 3000 FEE 439946 21051 6081837 2024-02-27 04:46:56.603 2024-02-27 04:46:56.603 27000 TIP 439946 18772 6081874 2024-02-27 05:03:48.181 2024-02-27 05:03:48.181 2100 FEE 440206 11992 6081875 2024-02-27 05:03:48.181 2024-02-27 05:03:48.181 18900 TIP 440206 629 6081880 2024-02-27 05:05:52.029 2024-02-27 05:05:52.029 2100 FEE 440211 3656 6081881 2024-02-27 05:05:52.029 2024-02-27 05:05:52.029 18900 TIP 440211 2502 6081964 2024-02-27 05:25:37.284 2024-02-27 05:25:37.284 1000 FEE 440246 2195 6081990 2024-02-27 05:34:12.194 2024-02-27 05:34:12.194 5000 FEE 440223 5455 6081991 2024-02-27 05:34:12.194 2024-02-27 05:34:12.194 45000 TIP 440223 1145 6081996 2024-02-27 05:36:25.772 2024-02-27 05:36:25.772 2100 FEE 440239 18897 6081997 2024-02-27 05:36:25.772 2024-02-27 05:36:25.772 18900 TIP 440239 10056 6082029 2024-02-27 05:41:08.024 2024-02-27 05:41:08.024 2100 FEE 440201 12819 6082030 2024-02-27 05:41:08.024 2024-02-27 05:41:08.024 18900 TIP 440201 18829 6082050 2024-02-27 05:42:06.676 2024-02-27 05:42:06.676 2100 FEE 440220 20812 6082051 2024-02-27 05:42:06.676 2024-02-27 05:42:06.676 18900 TIP 440220 13753 6082149 2024-02-27 06:01:46.935 2024-02-27 06:01:46.935 4200 FEE 440120 1002 6082150 2024-02-27 06:01:46.935 2024-02-27 06:01:46.935 37800 TIP 440120 17157 6082163 2024-02-27 06:02:26.751 2024-02-27 06:02:26.751 2100 FEE 440139 1802 6082164 2024-02-27 06:02:26.751 2024-02-27 06:02:26.751 18900 TIP 440139 21131 6082179 2024-02-27 06:05:04.447 2024-02-27 06:05:04.447 2100 FEE 439844 9921 6082180 2024-02-27 06:05:04.447 2024-02-27 06:05:04.447 18900 TIP 439844 19541 6082181 2024-02-27 06:05:06.704 2024-02-27 06:05:06.704 5000 FEE 440210 12139 6082182 2024-02-27 06:05:06.704 2024-02-27 06:05:06.704 45000 TIP 440210 19435 6082197 2024-02-27 06:05:09.98 2024-02-27 06:05:09.98 2100 FEE 439822 630 6082198 2024-02-27 06:05:09.98 2024-02-27 06:05:09.98 18900 TIP 439822 20701 6082211 2024-02-27 06:05:15.869 2024-02-27 06:05:15.869 2100 FEE 439917 17494 6082212 2024-02-27 06:05:15.869 2024-02-27 06:05:15.869 18900 TIP 439917 7869 6082223 2024-02-27 06:05:20.469 2024-02-27 06:05:20.469 2100 FEE 439699 18543 6082224 2024-02-27 06:05:20.469 2024-02-27 06:05:20.469 18900 TIP 439699 18529 6082233 2024-02-27 06:05:51.884 2024-02-27 06:05:51.884 100 FEE 440080 18635 6082234 2024-02-27 06:05:51.884 2024-02-27 06:05:51.884 900 TIP 440080 18524 6082270 2024-02-27 06:08:10.293 2024-02-27 06:08:10.293 100 FEE 439397 15925 6082271 2024-02-27 06:08:10.293 2024-02-27 06:08:10.293 900 TIP 439397 18241 6082286 2024-02-27 06:12:52.325 2024-02-27 06:12:52.325 1000 FEE 440268 21072 6082309 2024-02-27 06:24:12.453 2024-02-27 06:24:12.453 100000 FEE 440272 10291 6082334 2024-02-27 06:30:29.48 2024-02-27 06:30:29.48 2100 FEE 440266 12158 6082335 2024-02-27 06:30:29.48 2024-02-27 06:30:29.48 18900 TIP 440266 16267 6082339 2024-02-27 06:33:50.545 2024-02-27 06:33:50.545 3300 FEE 440128 18828 6082340 2024-02-27 06:33:50.545 2024-02-27 06:33:50.545 29700 TIP 440128 9365 6082365 2024-02-27 06:43:54.311 2024-02-27 06:43:54.311 200 FEE 440132 10944 6082366 2024-02-27 06:43:54.311 2024-02-27 06:43:54.311 1800 TIP 440132 1209 6082381 2024-02-27 06:43:56.136 2024-02-27 06:43:56.136 200 FEE 440132 10536 6082382 2024-02-27 06:43:56.136 2024-02-27 06:43:56.136 1800 TIP 440132 2577 6082390 2024-02-27 06:44:17.318 2024-02-27 06:44:17.318 1000 FEE 440132 20110 6082391 2024-02-27 06:44:17.318 2024-02-27 06:44:17.318 9000 TIP 440132 20220 6082399 2024-02-27 06:46:10.397 2024-02-27 06:46:10.397 50000 DONT_LIKE_THIS 440225 13169 6082422 2024-02-27 06:52:46.286 2024-02-27 06:52:46.286 2100 FEE 440266 18235 6082423 2024-02-27 06:52:46.286 2024-02-27 06:52:46.286 18900 TIP 440266 9350 6082443 2024-02-27 07:00:27.359 2024-02-27 07:00:27.359 7700 FEE 440230 19796 6082444 2024-02-27 07:00:27.359 2024-02-27 07:00:27.359 69300 TIP 440230 9345 6082452 2024-02-27 07:01:45.264 2024-02-27 07:01:45.264 2100 FEE 440223 13854 6082453 2024-02-27 07:01:45.264 2024-02-27 07:01:45.264 18900 TIP 440223 21058 6082466 2024-02-27 07:03:21.37 2024-02-27 07:03:21.37 300 FEE 440127 11091 6082467 2024-02-27 07:03:21.37 2024-02-27 07:03:21.37 2700 TIP 440127 9820 6082495 2024-02-27 07:07:02.843 2024-02-27 07:07:02.843 2100 FEE 440066 9078 6082496 2024-02-27 07:07:02.843 2024-02-27 07:07:02.843 18900 TIP 440066 21207 6082499 2024-02-27 07:07:27.69 2024-02-27 07:07:27.69 800 FEE 440229 15510 6082500 2024-02-27 07:07:27.69 2024-02-27 07:07:27.69 7200 TIP 440229 5728 6082507 2024-02-27 07:08:25.975 2024-02-27 07:08:25.975 2100 FEE 440072 18873 6082508 2024-02-27 07:08:25.975 2024-02-27 07:08:25.975 18900 TIP 440072 19033 6082523 2024-02-27 07:13:24.839 2024-02-27 07:13:24.839 100 FEE 440211 16214 6082524 2024-02-27 07:13:24.839 2024-02-27 07:13:24.839 900 TIP 440211 5160 6082534 2024-02-27 07:16:37.262 2024-02-27 07:16:37.262 1000 FEE 440290 20599 6082571 2024-02-27 07:29:00.316 2024-02-27 07:29:00.316 1000 FEE 440298 19303 6082617 2024-02-27 07:41:38.122 2024-02-27 07:41:38.122 1000 FEE 440303 9184 6082628 2024-02-27 07:44:16.815 2024-02-27 07:44:16.815 500 FEE 440203 669 6082629 2024-02-27 07:44:16.815 2024-02-27 07:44:16.815 4500 TIP 440203 7425 6082637 2024-02-27 07:45:58.115 2024-02-27 07:45:58.115 100 FEE 440132 2681 6082638 2024-02-27 07:45:58.115 2024-02-27 07:45:58.115 900 TIP 440132 1429 6082670 2024-02-27 07:54:52.966 2024-02-27 07:54:52.966 1000 FEE 440310 2264 6082688 2024-02-27 08:01:23.044 2024-02-27 08:01:23.044 1000 FEE 440315 5495 6082703 2024-02-27 08:06:05.76 2024-02-27 08:06:05.76 700 FEE 440132 11750 6082704 2024-02-27 08:06:05.76 2024-02-27 08:06:05.76 6300 TIP 440132 10393 6082708 2024-02-27 08:07:40.985 2024-02-27 08:07:40.985 1000 FEE 440319 5961 6082803 2024-02-27 08:41:29.747 2024-02-27 08:41:29.747 1000 FEE 440330 14152 6082804 2024-02-27 08:41:29.747 2024-02-27 08:41:29.747 9000 TIP 440330 18231 6082805 2024-02-27 08:41:39.615 2024-02-27 08:41:39.615 1000 FEE 440298 15049 6082806 2024-02-27 08:41:39.615 2024-02-27 08:41:39.615 9000 TIP 440298 13517 6081631 2024-02-27 03:49:05.554 2024-02-27 03:49:05.554 1000 STREAM 141924 19332 6081637 2024-02-27 03:51:05.567 2024-02-27 03:51:05.567 1000 STREAM 141924 5661 6081647 2024-02-27 03:53:05.57 2024-02-27 03:53:05.57 1000 STREAM 141924 10981 6081674 2024-02-27 03:57:05.596 2024-02-27 03:57:05.596 1000 STREAM 141924 20062 6081676 2024-02-27 03:58:05.596 2024-02-27 03:58:05.596 1000 STREAM 141924 4973 6081677 2024-02-27 03:59:05.59 2024-02-27 03:59:05.59 1000 STREAM 141924 18518 6081653 2024-02-27 03:53:09.07 2024-02-27 03:53:09.07 9000 TIP 439699 760 6081703 2024-02-27 04:08:11.309 2024-02-27 04:08:11.309 90000 FEE 440216 21493 6081704 2024-02-27 04:08:11.309 2024-02-27 04:08:11.309 810000 TIP 440216 999 6081708 2024-02-27 04:09:29.933 2024-02-27 04:09:29.933 100 FEE 440219 1692 6081709 2024-02-27 04:09:29.933 2024-02-27 04:09:29.933 900 TIP 440219 1480 6081726 2024-02-27 04:11:42.937 2024-02-27 04:11:42.937 900 FEE 440185 19821 6081727 2024-02-27 04:11:42.937 2024-02-27 04:11:42.937 8100 TIP 440185 21138 6081755 2024-02-27 04:12:50.737 2024-02-27 04:12:50.737 900 FEE 440223 16042 6081756 2024-02-27 04:12:50.737 2024-02-27 04:12:50.737 8100 TIP 440223 1433 6081789 2024-02-27 04:33:48.575 2024-02-27 04:33:48.575 2100 FEE 440205 2734 6081790 2024-02-27 04:33:48.575 2024-02-27 04:33:48.575 18900 TIP 440205 3353 6081799 2024-02-27 04:37:15.325 2024-02-27 04:37:15.325 1000 FEE 440132 12057 6081800 2024-02-27 04:37:15.325 2024-02-27 04:37:15.325 9000 TIP 440132 8080 6081816 2024-02-27 04:40:33.198 2024-02-27 04:40:33.198 1000 FEE 440231 629 6081822 2024-02-27 04:43:48.626 2024-02-27 04:43:48.626 1000 FEE 440232 18269 6081832 2024-02-27 04:46:56.304 2024-02-27 04:46:56.304 3000 FEE 439946 6515 6081833 2024-02-27 04:46:56.304 2024-02-27 04:46:56.304 27000 TIP 439946 17446 6081834 2024-02-27 04:46:56.482 2024-02-27 04:46:56.482 3000 FEE 439946 20606 6081835 2024-02-27 04:46:56.482 2024-02-27 04:46:56.482 27000 TIP 439946 17094 6081840 2024-02-27 04:48:45.391 2024-02-27 04:48:45.391 0 FEE 60106 5359 6081846 2024-02-27 04:50:52.218 2024-02-27 04:50:52.218 3000 FEE 439729 880 6081847 2024-02-27 04:50:52.218 2024-02-27 04:50:52.218 27000 TIP 439729 1960 6081852 2024-02-27 04:50:52.755 2024-02-27 04:50:52.755 3000 FEE 439729 18626 6081853 2024-02-27 04:50:52.755 2024-02-27 04:50:52.755 27000 TIP 439729 2437 6081882 2024-02-27 05:05:54.964 2024-02-27 05:05:54.964 2100 FEE 440208 18448 6081883 2024-02-27 05:05:54.964 2024-02-27 05:05:54.964 18900 TIP 440208 2963 6081891 2024-02-27 05:07:05.727 2024-02-27 05:07:05.727 2100 FEE 440168 19839 6081892 2024-02-27 05:07:05.727 2024-02-27 05:07:05.727 18900 TIP 440168 19502 6081901 2024-02-27 05:07:14.187 2024-02-27 05:07:14.187 2100 FEE 440211 1611 6081902 2024-02-27 05:07:14.187 2024-02-27 05:07:14.187 18900 TIP 440211 4084 6081914 2024-02-27 05:12:11.407 2024-02-27 05:12:11.407 1000 FEE 440230 640 6081915 2024-02-27 05:12:11.407 2024-02-27 05:12:11.407 9000 TIP 440230 5746 6081935 2024-02-27 05:17:19.967 2024-02-27 05:17:19.967 2100 FEE 440179 1064 6081936 2024-02-27 05:17:19.967 2024-02-27 05:17:19.967 18900 TIP 440179 20157 6081939 2024-02-27 05:17:55.73 2024-02-27 05:17:55.73 2100 FEE 440241 18017 6081940 2024-02-27 05:17:55.73 2024-02-27 05:17:55.73 18900 TIP 440241 15239 6081943 2024-02-27 05:18:48.946 2024-02-27 05:18:48.946 0 FEE 440242 19117 6081984 2024-02-27 05:32:24.506 2024-02-27 05:32:24.506 1000 FEE 440249 4768 6081985 2024-02-27 05:32:34.395 2024-02-27 05:32:34.395 1000 FEE 440250 1389 6081994 2024-02-27 05:35:42.438 2024-02-27 05:35:42.438 1000 FEE 440252 16440 6082011 2024-02-27 05:37:55.793 2024-02-27 05:37:55.793 1000 FEE 440253 16259 6082015 2024-02-27 05:38:55.791 2024-02-27 05:38:55.791 1000 FEE 438818 8168 6082016 2024-02-27 05:38:55.791 2024-02-27 05:38:55.791 9000 TIP 438818 965 6082037 2024-02-27 05:41:25.9 2024-02-27 05:41:25.9 2100 FEE 440174 624 6082038 2024-02-27 05:41:25.9 2024-02-27 05:41:25.9 18900 TIP 440174 1817 6082052 2024-02-27 05:42:06.847 2024-02-27 05:42:06.847 2100 FEE 440239 19664 6082053 2024-02-27 05:42:06.847 2024-02-27 05:42:06.847 18900 TIP 440239 10112 6082060 2024-02-27 05:47:30.963 2024-02-27 05:47:30.963 1000 FEE 440258 14267 6082066 2024-02-27 05:50:21.508 2024-02-27 05:50:21.508 100000 DONT_LIKE_THIS 440257 5791 6082079 2024-02-27 05:52:49.537 2024-02-27 05:52:49.537 2100 FEE 440081 1094 6082080 2024-02-27 05:52:49.537 2024-02-27 05:52:49.537 18900 TIP 440081 18667 6082085 2024-02-27 05:52:53.972 2024-02-27 05:52:53.972 100 FEE 440241 20137 6082086 2024-02-27 05:52:53.972 2024-02-27 05:52:53.972 900 TIP 440241 18743 6082095 2024-02-27 05:53:34.513 2024-02-27 05:53:34.513 2100 FEE 440240 20655 6082096 2024-02-27 05:53:34.513 2024-02-27 05:53:34.513 18900 TIP 440240 19857 6082097 2024-02-27 05:53:40.389 2024-02-27 05:53:40.389 0 FEE 440259 19911 6082098 2024-02-27 05:53:51.719 2024-02-27 05:53:51.719 1100 FEE 440232 5538 6082099 2024-02-27 05:53:51.719 2024-02-27 05:53:51.719 9900 TIP 440232 12921 6082108 2024-02-27 05:54:03.161 2024-02-27 05:54:03.161 1100 FEE 440092 5359 6082109 2024-02-27 05:54:03.161 2024-02-27 05:54:03.161 9900 TIP 440092 11395 6082146 2024-02-27 06:01:05.58 2024-02-27 06:01:05.58 1000 FEE 413652 15159 6082147 2024-02-27 06:01:05.58 2024-02-27 06:01:05.58 9000 TIP 413652 21509 6082151 2024-02-27 06:01:53.266 2024-02-27 06:01:53.266 1000 FEE 440264 730 6082199 2024-02-27 06:05:10.581 2024-02-27 06:05:10.581 2100 FEE 440128 21249 6082200 2024-02-27 06:05:10.581 2024-02-27 06:05:10.581 18900 TIP 440128 18138 6082213 2024-02-27 06:05:16.721 2024-02-27 06:05:16.721 2100 FEE 439806 6653 6082214 2024-02-27 06:05:16.721 2024-02-27 06:05:16.721 18900 TIP 439806 9107 6082254 2024-02-27 06:06:17.677 2024-02-27 06:06:17.677 2100 FEE 439781 7869 6082255 2024-02-27 06:06:17.677 2024-02-27 06:06:17.677 18900 TIP 439781 13759 6082260 2024-02-27 06:06:30.207 2024-02-27 06:06:30.207 2000 FEE 440208 2789 6082261 2024-02-27 06:06:30.207 2024-02-27 06:06:30.207 18000 TIP 440208 20276 6082272 2024-02-27 06:08:15.395 2024-02-27 06:08:15.395 11100 FEE 439259 20647 6082273 2024-02-27 06:08:15.395 2024-02-27 06:08:15.395 99900 TIP 439259 13798 6082277 2024-02-27 06:09:53.699 2024-02-27 06:09:53.699 2000 FEE 440208 20581 6082278 2024-02-27 06:09:53.699 2024-02-27 06:09:53.699 18000 TIP 440208 715 6082360 2024-02-27 06:42:24.697 2024-02-27 06:42:24.697 1000 FEE 440275 15544 6082361 2024-02-27 06:42:29.817 2024-02-27 06:42:29.817 2100 FEE 440009 18306 6082362 2024-02-27 06:42:29.817 2024-02-27 06:42:29.817 18900 TIP 440009 21047 6082375 2024-02-27 06:43:55.311 2024-02-27 06:43:55.311 400 FEE 440132 19488 6082376 2024-02-27 06:43:55.311 2024-02-27 06:43:55.311 3600 TIP 440132 12708 6082379 2024-02-27 06:43:55.794 2024-02-27 06:43:55.794 200 FEE 440132 18311 6082380 2024-02-27 06:43:55.794 2024-02-27 06:43:55.794 1800 TIP 440132 19346 6082387 2024-02-27 06:43:57.141 2024-02-27 06:43:57.141 200 FEE 440132 13169 6082388 2024-02-27 06:43:57.141 2024-02-27 06:43:57.141 1800 TIP 440132 3353 6082403 2024-02-27 06:47:41.21 2024-02-27 06:47:41.21 1000 FEE 440277 699 6082412 2024-02-27 06:49:54.143 2024-02-27 06:49:54.143 2100 FEE 440273 15978 6082413 2024-02-27 06:49:54.143 2024-02-27 06:49:54.143 18900 TIP 440273 5293 6082419 2024-02-27 06:52:18.367 2024-02-27 06:52:18.367 1000 FEE 440278 12334 6082435 2024-02-27 06:58:35.547 2024-02-27 06:58:35.547 2100 FEE 440241 21600 6082436 2024-02-27 06:58:35.547 2024-02-27 06:58:35.547 18900 TIP 440241 680 6082464 2024-02-27 07:03:15.336 2024-02-27 07:03:15.336 2100 FEE 440245 10849 6082465 2024-02-27 07:03:15.336 2024-02-27 07:03:15.336 18900 TIP 440245 2749 6082472 2024-02-27 07:03:22.997 2024-02-27 07:03:22.997 300 FEE 440127 18731 6082473 2024-02-27 07:03:22.997 2024-02-27 07:03:22.997 2700 TIP 440127 9183 6082503 2024-02-27 07:07:32.274 2024-02-27 07:07:32.274 1000 FEE 440285 16754 6082504 2024-02-27 07:07:47.508 2024-02-27 07:07:47.508 2100 FEE 439830 19021 6082505 2024-02-27 07:07:47.508 2024-02-27 07:07:47.508 18900 TIP 439830 21527 6082509 2024-02-27 07:08:28.133 2024-02-27 07:08:28.133 2100 FEE 440038 12561 6082510 2024-02-27 07:08:28.133 2024-02-27 07:08:28.133 18900 TIP 440038 660 6082519 2024-02-27 07:10:08.79 2024-02-27 07:10:08.79 3000 DONT_LIKE_THIS 439644 19843 6082526 2024-02-27 07:14:42.695 2024-02-27 07:14:42.695 1000 FEE 440288 17218 6082539 2024-02-27 07:16:50.583 2024-02-27 07:16:50.583 800 FEE 440229 14404 6081654 2024-02-27 03:53:27.598 2024-02-27 03:53:27.598 1000 FEE 439392 6741 6081655 2024-02-27 03:53:27.598 2024-02-27 03:53:27.598 9000 TIP 439392 19511 6081665 2024-02-27 03:54:12.255 2024-02-27 03:54:12.255 1000 FEE 440182 2285 6081666 2024-02-27 03:54:12.255 2024-02-27 03:54:12.255 9000 TIP 440182 861 6081668 2024-02-27 03:54:22.253 2024-02-27 03:54:22.253 1000 FEE 439451 19459 6081669 2024-02-27 03:54:22.253 2024-02-27 03:54:22.253 9000 TIP 439451 4074 6081678 2024-02-27 04:00:04.988 2024-02-27 04:00:04.988 100000 FEE 440223 17331 6081690 2024-02-27 04:07:35.845 2024-02-27 04:07:35.845 100 FEE 440215 9655 6081691 2024-02-27 04:07:35.845 2024-02-27 04:07:35.845 900 TIP 440215 2722 6081694 2024-02-27 04:07:37.356 2024-02-27 04:07:37.356 9000 FEE 440215 17494 6081695 2024-02-27 04:07:37.356 2024-02-27 04:07:37.356 81000 TIP 440215 10398 6081722 2024-02-27 04:11:15.72 2024-02-27 04:11:15.72 9000 FEE 440153 19690 6081723 2024-02-27 04:11:15.72 2024-02-27 04:11:15.72 81000 TIP 440153 20811 6081724 2024-02-27 04:11:42.65 2024-02-27 04:11:42.65 100 FEE 440185 9365 6081725 2024-02-27 04:11:42.65 2024-02-27 04:11:42.65 900 TIP 440185 8423 6081732 2024-02-27 04:12:08.341 2024-02-27 04:12:08.341 10000 DONT_LIKE_THIS 440201 21222 6081747 2024-02-27 04:12:38.371 2024-02-27 04:12:38.371 100 FEE 440211 3686 6081748 2024-02-27 04:12:38.371 2024-02-27 04:12:38.371 900 TIP 440211 16633 6081751 2024-02-27 04:12:40.036 2024-02-27 04:12:40.036 9000 FEE 440211 976 6081752 2024-02-27 04:12:40.036 2024-02-27 04:12:40.036 81000 TIP 440211 14651 6081820 2024-02-27 04:43:40.332 2024-02-27 04:43:40.332 3100 FEE 440228 13599 6081821 2024-02-27 04:43:40.332 2024-02-27 04:43:40.332 27900 TIP 440228 1970 6081824 2024-02-27 04:44:31.013 2024-02-27 04:44:31.013 1000 FEE 440233 15549 6081842 2024-02-27 04:49:56.071 2024-02-27 04:49:56.071 0 FEE 60106 21619 6081860 2024-02-27 04:55:26.247 2024-02-27 04:55:26.247 10000 FEE 440132 15762 6081861 2024-02-27 04:55:26.247 2024-02-27 04:55:26.247 90000 TIP 440132 9348 6081897 2024-02-27 05:07:11.403 2024-02-27 05:07:11.403 2100 FEE 440222 15052 6081898 2024-02-27 05:07:11.403 2024-02-27 05:07:11.403 18900 TIP 440222 21079 6081899 2024-02-27 05:07:11.514 2024-02-27 05:07:11.514 2100 FEE 440185 9345 6081900 2024-02-27 05:07:11.514 2024-02-27 05:07:11.514 18900 TIP 440185 7766 6081912 2024-02-27 05:11:42.454 2024-02-27 05:11:42.454 100000 FEE 440241 3642 6081923 2024-02-27 05:15:54.521 2024-02-27 05:15:54.521 2100 FEE 440185 11515 6081924 2024-02-27 05:15:54.521 2024-02-27 05:15:54.521 18900 TIP 440185 2537 6081925 2024-02-27 05:15:58.993 2024-02-27 05:15:58.993 2100 FEE 440080 12965 6081926 2024-02-27 05:15:58.993 2024-02-27 05:15:58.993 18900 TIP 440080 4654 6081937 2024-02-27 05:17:20.236 2024-02-27 05:17:20.236 2100 FEE 440228 19839 6081938 2024-02-27 05:17:20.236 2024-02-27 05:17:20.236 18900 TIP 440228 699 6081954 2024-02-27 05:23:33.426 2024-02-27 05:23:33.426 1000 FEE 440206 13878 6081955 2024-02-27 05:23:33.426 2024-02-27 05:23:33.426 9000 TIP 440206 6393 6081958 2024-02-27 05:23:52.156 2024-02-27 05:23:52.156 1000 FEE 440244 21022 6081971 2024-02-27 05:28:16.75 2024-02-27 05:28:16.75 10000 FEE 440241 8459 6081972 2024-02-27 05:28:16.75 2024-02-27 05:28:16.75 90000 TIP 440241 10007 6082007 2024-02-27 05:37:16.283 2024-02-27 05:37:16.283 2100 FEE 440090 7978 6082008 2024-02-27 05:37:16.283 2024-02-27 05:37:16.283 18900 TIP 440090 14074 6082018 2024-02-27 05:39:09.417 2024-02-27 05:39:09.417 1000 FEE 440254 20904 6082023 2024-02-27 05:39:35.93 2024-02-27 05:39:35.93 9000 FEE 440249 7389 6082024 2024-02-27 05:39:35.93 2024-02-27 05:39:35.93 81000 TIP 440249 21274 6082043 2024-02-27 05:41:33.443 2024-02-27 05:41:33.443 2100 FEE 440176 10821 6082044 2024-02-27 05:41:33.443 2024-02-27 05:41:33.443 18900 TIP 440176 19005 6082045 2024-02-27 05:42:01.491 2024-02-27 05:42:01.491 2100 FEE 440230 15052 6082046 2024-02-27 05:42:01.491 2024-02-27 05:42:01.491 18900 TIP 440230 10063 6082069 2024-02-27 05:51:42.291 2024-02-27 05:51:42.291 1000 FEE 440260 20183 6082081 2024-02-27 05:52:50.283 2024-02-27 05:52:50.283 2100 FEE 440068 876 6082082 2024-02-27 05:52:50.283 2024-02-27 05:52:50.283 18900 TIP 440068 16485 6082090 2024-02-27 05:53:08.032 2024-02-27 05:53:08.032 100 FEE 440237 8544 6082091 2024-02-27 05:53:08.032 2024-02-27 05:53:08.032 900 TIP 440237 2402 6082100 2024-02-27 05:53:52.192 2024-02-27 05:53:52.192 1000 FEE 440262 17148 6082115 2024-02-27 05:56:18.699 2024-02-27 05:56:18.699 2100 FEE 440153 18051 6082116 2024-02-27 05:56:18.699 2024-02-27 05:56:18.699 18900 TIP 440153 2609 6082117 2024-02-27 05:56:22.965 2024-02-27 05:56:22.965 2100 FEE 440026 21417 6082118 2024-02-27 05:56:22.965 2024-02-27 05:56:22.965 18900 TIP 440026 5725 6082125 2024-02-27 05:56:45.35 2024-02-27 05:56:45.35 2100 FEE 439897 17218 6082126 2024-02-27 05:56:45.35 2024-02-27 05:56:45.35 18900 TIP 439897 19263 6082127 2024-02-27 05:56:46.134 2024-02-27 05:56:46.134 2100 FEE 439978 18265 6082128 2024-02-27 05:56:46.134 2024-02-27 05:56:46.134 18900 TIP 439978 20183 6082136 2024-02-27 05:57:06.826 2024-02-27 05:57:06.826 2100 FEE 439693 6526 6082137 2024-02-27 05:57:06.826 2024-02-27 05:57:06.826 18900 TIP 439693 1000 6082142 2024-02-27 05:59:22.105 2024-02-27 05:59:22.105 10000 FEE 439713 18372 6082143 2024-02-27 05:59:22.105 2024-02-27 05:59:22.105 90000 TIP 439713 1970 6082157 2024-02-27 06:02:08.727 2024-02-27 06:02:08.727 2100 FEE 440186 1717 6082158 2024-02-27 06:02:08.727 2024-02-27 06:02:08.727 18900 TIP 440186 18380 6082166 2024-02-27 06:02:42.065 2024-02-27 06:02:42.065 2100 FEE 440189 9159 6082167 2024-02-27 06:02:42.065 2024-02-27 06:02:42.065 18900 TIP 440189 762 6082187 2024-02-27 06:05:07.385 2024-02-27 06:05:07.385 5000 FEE 440210 20588 6082188 2024-02-27 06:05:07.385 2024-02-27 06:05:07.385 45000 TIP 440210 6136 6082191 2024-02-27 06:05:08.737 2024-02-27 06:05:08.737 2100 FEE 440056 17707 6082192 2024-02-27 06:05:08.737 2024-02-27 06:05:08.737 18900 TIP 440056 16447 6082201 2024-02-27 06:05:11.6 2024-02-27 06:05:11.6 2100 FEE 440206 20022 6082202 2024-02-27 06:05:11.6 2024-02-27 06:05:11.6 18900 TIP 440206 17001 6082205 2024-02-27 06:05:14.037 2024-02-27 06:05:14.037 2100 FEE 439390 4388 6082206 2024-02-27 06:05:14.037 2024-02-27 06:05:14.037 18900 TIP 439390 10728 6082209 2024-02-27 06:05:15.456 2024-02-27 06:05:15.456 2100 FEE 440223 18359 6082210 2024-02-27 06:05:15.456 2024-02-27 06:05:15.456 18900 TIP 440223 18446 6082217 2024-02-27 06:05:17.926 2024-02-27 06:05:17.926 2100 FEE 440208 807 6082218 2024-02-27 06:05:17.926 2024-02-27 06:05:17.926 18900 TIP 440208 4166 6082221 2024-02-27 06:05:19.526 2024-02-27 06:05:19.526 2100 FEE 439946 21334 6082222 2024-02-27 06:05:19.526 2024-02-27 06:05:19.526 18900 TIP 439946 4115 6082229 2024-02-27 06:05:39.937 2024-02-27 06:05:39.937 2100 FEE 440023 10102 6082230 2024-02-27 06:05:39.937 2024-02-27 06:05:39.937 18900 TIP 440023 17094 6082235 2024-02-27 06:05:53.934 2024-02-27 06:05:53.934 100 FEE 440080 20133 6082236 2024-02-27 06:05:53.934 2024-02-27 06:05:53.934 900 TIP 440080 1472 6082245 2024-02-27 06:06:01.602 2024-02-27 06:06:01.602 2000 FEE 440206 16212 6082246 2024-02-27 06:06:01.602 2024-02-27 06:06:01.602 18000 TIP 440206 9200 6082256 2024-02-27 06:06:24.126 2024-02-27 06:06:24.126 2000 FEE 440220 6360 6082257 2024-02-27 06:06:24.126 2024-02-27 06:06:24.126 18000 TIP 440220 1720 6082262 2024-02-27 06:06:34.335 2024-02-27 06:06:34.335 2000 FEE 440201 20326 6082263 2024-02-27 06:06:34.335 2024-02-27 06:06:34.335 18000 TIP 440201 805 6082316 2024-02-27 06:26:13.563 2024-02-27 06:26:13.563 2500 FEE 440091 21012 6082317 2024-02-27 06:26:13.563 2024-02-27 06:26:13.563 22500 TIP 440091 10818 6082321 2024-02-27 06:27:49.841 2024-02-27 06:27:49.841 100 FEE 440259 919 6082322 2024-02-27 06:27:49.841 2024-02-27 06:27:49.841 900 TIP 440259 15160 6082323 2024-02-27 06:27:50.113 2024-02-27 06:27:50.113 900 FEE 440259 8173 6082324 2024-02-27 06:27:50.113 2024-02-27 06:27:50.113 8100 TIP 440259 19941 6082328 2024-02-27 06:28:53.128 2024-02-27 06:28:53.128 100 FEE 440270 15180 6082329 2024-02-27 06:28:53.128 2024-02-27 06:28:53.128 900 TIP 440270 17050 6081681 2024-02-27 04:01:05.465 2024-02-27 04:01:05.465 1000 STREAM 141924 20973 6081688 2024-02-27 04:06:05.51 2024-02-27 04:06:05.51 1000 STREAM 141924 18393 6081707 2024-02-27 04:09:05.509 2024-02-27 04:09:05.509 1000 STREAM 141924 14169 6081715 2024-02-27 04:10:05.531 2024-02-27 04:10:05.531 1000 STREAM 141924 20871 6081731 2024-02-27 04:12:05.505 2024-02-27 04:12:05.505 1000 STREAM 141924 17184 6081757 2024-02-27 04:13:05.506 2024-02-27 04:13:05.506 1000 STREAM 141924 18704 6081763 2024-02-27 04:17:05.497 2024-02-27 04:17:05.497 1000 STREAM 141924 9307 6081682 2024-02-27 04:02:05.457 2024-02-27 04:02:05.457 1000 STREAM 141924 787 6081685 2024-02-27 04:05:05.502 2024-02-27 04:05:05.502 1000 STREAM 141924 644 6081689 2024-02-27 04:07:05.512 2024-02-27 04:07:05.512 1000 STREAM 141924 2963 6081696 2024-02-27 04:08:05.502 2024-02-27 04:08:05.502 1000 STREAM 141924 18446 6081721 2024-02-27 04:11:05.508 2024-02-27 04:11:05.508 1000 STREAM 141924 976 6081760 2024-02-27 04:14:05.501 2024-02-27 04:14:05.501 1000 STREAM 141924 5427 6081761 2024-02-27 04:15:05.502 2024-02-27 04:15:05.502 1000 STREAM 141924 20756 6081762 2024-02-27 04:16:05.499 2024-02-27 04:16:05.499 1000 STREAM 141924 18372 6081768 2024-02-27 04:19:05.495 2024-02-27 04:19:05.495 1000 STREAM 141924 9363 6081819 2024-02-27 04:43:03.69 2024-02-27 04:43:03.69 1000 STREAM 141924 7966 6081825 2024-02-27 04:45:03.702 2024-02-27 04:45:03.702 1000 STREAM 141924 17838 6081838 2024-02-27 04:47:03.712 2024-02-27 04:47:03.712 1000 STREAM 141924 19193 6081854 2024-02-27 04:51:05.754 2024-02-27 04:51:05.754 1000 STREAM 141924 15732 6081858 2024-02-27 04:55:05.784 2024-02-27 04:55:05.784 1000 STREAM 141924 16505 6081867 2024-02-27 04:59:05.819 2024-02-27 04:59:05.819 1000 STREAM 141924 17714 6081877 2024-02-27 05:05:03.9 2024-02-27 05:05:03.9 1000 STREAM 141924 20606 6081948 2024-02-27 05:20:02.018 2024-02-27 05:20:02.018 1000 STREAM 141924 2151 6081973 2024-02-27 05:29:06.042 2024-02-27 05:29:06.042 1000 STREAM 141924 3504 6081977 2024-02-27 05:30:02.056 2024-02-27 05:30:02.056 1000 STREAM 141924 18051 6081982 2024-02-27 05:31:06.051 2024-02-27 05:31:06.051 1000 STREAM 141924 16816 6081983 2024-02-27 05:32:02.066 2024-02-27 05:32:02.066 1000 STREAM 141924 17707 6081995 2024-02-27 05:36:02.08 2024-02-27 05:36:02.08 1000 STREAM 141924 9669 6082055 2024-02-27 05:43:06.099 2024-02-27 05:43:06.099 1000 STREAM 141924 14045 6082070 2024-02-27 05:52:02.175 2024-02-27 05:52:02.175 1000 STREAM 141924 3656 6082089 2024-02-27 05:53:02.164 2024-02-27 05:53:02.164 1000 STREAM 141924 21014 6082107 2024-02-27 05:54:02.171 2024-02-27 05:54:02.171 1000 STREAM 141924 19500 6082113 2024-02-27 05:55:02.179 2024-02-27 05:55:02.179 1000 STREAM 141924 9863 6082133 2024-02-27 05:57:02.194 2024-02-27 05:57:02.194 1000 STREAM 141924 17217 6082140 2024-02-27 05:58:02.202 2024-02-27 05:58:02.202 1000 STREAM 141924 17227 6081683 2024-02-27 04:03:05.475 2024-02-27 04:03:05.475 1000 STREAM 141924 3304 6081684 2024-02-27 04:04:05.478 2024-02-27 04:04:05.478 1000 STREAM 141924 16212 6081766 2024-02-27 04:18:05.271 2024-02-27 04:18:05.271 1000 STREAM 141924 12261 6081772 2024-02-27 04:21:05.268 2024-02-27 04:21:05.268 1000 STREAM 141924 18581 6081773 2024-02-27 04:22:03.284 2024-02-27 04:22:03.284 1000 STREAM 141924 9330 6081777 2024-02-27 04:25:05.292 2024-02-27 04:25:05.292 1000 STREAM 141924 9916 6081779 2024-02-27 04:27:05.343 2024-02-27 04:27:05.343 1000 STREAM 141924 16954 6081781 2024-02-27 04:29:05.371 2024-02-27 04:29:05.371 1000 STREAM 141924 20674 6081817 2024-02-27 04:41:03.566 2024-02-27 04:41:03.566 1000 STREAM 141924 5758 6081769 2024-02-27 04:20:05.767 2024-02-27 04:20:05.767 1000 STREAM 141924 1051 6081775 2024-02-27 04:23:03.291 2024-02-27 04:23:03.291 1000 STREAM 141924 4415 6081785 2024-02-27 04:31:03.392 2024-02-27 04:31:03.392 1000 STREAM 141924 18291 6081788 2024-02-27 04:33:03.44 2024-02-27 04:33:03.44 1000 STREAM 141924 13987 6081792 2024-02-27 04:35:03.468 2024-02-27 04:35:03.468 1000 STREAM 141924 20340 6081794 2024-02-27 04:37:03.491 2024-02-27 04:37:03.491 1000 STREAM 141924 19524 6081814 2024-02-27 04:39:03.541 2024-02-27 04:39:03.541 1000 STREAM 141924 673 6081839 2024-02-27 04:48:01.854 2024-02-27 04:48:01.854 1000 STREAM 141924 9921 6081855 2024-02-27 04:52:01.855 2024-02-27 04:52:01.855 1000 STREAM 141924 4538 6081857 2024-02-27 04:54:01.864 2024-02-27 04:54:01.864 1000 STREAM 141924 18743 6081862 2024-02-27 04:56:01.851 2024-02-27 04:56:01.851 1000 STREAM 141924 19096 6081776 2024-02-27 04:24:01.86 2024-02-27 04:24:01.86 1000 STREAM 141924 3371 6081807 2024-02-27 04:38:02.071 2024-02-27 04:38:02.071 1000 STREAM 141924 14385 6081778 2024-02-27 04:26:01.843 2024-02-27 04:26:01.843 1000 STREAM 141924 18314 6081793 2024-02-27 04:36:01.877 2024-02-27 04:36:01.877 1000 STREAM 141924 980 6081843 2024-02-27 04:50:02.018 2024-02-27 04:50:02.018 1000 STREAM 141924 16808 6081787 2024-02-27 04:32:01.856 2024-02-27 04:32:01.856 1000 STREAM 141924 4650 6081815 2024-02-27 04:40:01.943 2024-02-27 04:40:01.943 1000 STREAM 141924 15088 6081818 2024-02-27 04:42:01.92 2024-02-27 04:42:01.92 1000 STREAM 141924 19886 6081826 2024-02-27 04:46:01.973 2024-02-27 04:46:01.973 1000 STREAM 141924 627 6081864 2024-02-27 04:58:02.109 2024-02-27 04:58:02.109 1000 STREAM 141924 15336 6081876 2024-02-27 05:04:02.167 2024-02-27 05:04:02.167 1000 STREAM 141924 17183 6081947 2024-02-27 05:19:02.579 2024-02-27 05:19:02.579 1000 STREAM 141924 20891 6081949 2024-02-27 05:21:02.609 2024-02-27 05:21:02.609 1000 STREAM 141924 20730 6081986 2024-02-27 05:33:02.7 2024-02-27 05:33:02.7 1000 STREAM 141924 12768 6082006 2024-02-27 05:37:02.682 2024-02-27 05:37:02.682 1000 STREAM 141924 16440 6081841 2024-02-27 04:49:03.745 2024-02-27 04:49:03.745 1000 STREAM 141924 18664 6081856 2024-02-27 04:53:05.773 2024-02-27 04:53:05.773 1000 STREAM 141924 1006 6081863 2024-02-27 04:57:05.797 2024-02-27 04:57:05.797 1000 STREAM 141924 651 6081871 2024-02-27 05:01:05.832 2024-02-27 05:01:05.832 1000 STREAM 141924 4167 6081873 2024-02-27 05:03:03.86 2024-02-27 05:03:03.86 1000 STREAM 141924 16754 6081890 2024-02-27 05:07:03.906 2024-02-27 05:07:03.906 1000 STREAM 141924 1647 6081908 2024-02-27 05:09:03.917 2024-02-27 05:09:03.917 1000 STREAM 141924 13204 6081916 2024-02-27 05:13:03.962 2024-02-27 05:13:03.962 1000 STREAM 141924 20606 6081918 2024-02-27 05:15:03.963 2024-02-27 05:15:03.963 1000 STREAM 141924 19813 6081930 2024-02-27 05:17:04 2024-02-27 05:17:04 1000 STREAM 141924 19813 6081941 2024-02-27 05:18:01.987 2024-02-27 05:18:01.987 1000 STREAM 141924 2326 6081950 2024-02-27 05:22:02.1 2024-02-27 05:22:02.1 1000 STREAM 141924 18539 6081959 2024-02-27 05:24:02.014 2024-02-27 05:24:02.014 1000 STREAM 141924 21271 6081965 2024-02-27 05:26:02.031 2024-02-27 05:26:02.031 1000 STREAM 141924 17046 6081970 2024-02-27 05:28:02.037 2024-02-27 05:28:02.037 1000 STREAM 141924 20963 6081989 2024-02-27 05:34:02.074 2024-02-27 05:34:02.074 1000 STREAM 141924 1094 6082012 2024-02-27 05:38:02.103 2024-02-27 05:38:02.103 1000 STREAM 141924 15549 6082028 2024-02-27 05:41:06.079 2024-02-27 05:41:06.079 1000 STREAM 141924 13854 6082059 2024-02-27 05:47:02.12 2024-02-27 05:47:02.12 1000 STREAM 141924 7389 6082061 2024-02-27 05:48:02.119 2024-02-27 05:48:02.119 1000 STREAM 141924 11288 6082062 2024-02-27 05:49:02.134 2024-02-27 05:49:02.134 1000 STREAM 141924 1471 6082063 2024-02-27 05:50:02.146 2024-02-27 05:50:02.146 1000 STREAM 141924 19333 6082067 2024-02-27 05:51:02.154 2024-02-27 05:51:02.154 1000 STREAM 141924 16788 6082114 2024-02-27 05:56:02.178 2024-02-27 05:56:02.178 1000 STREAM 141924 13517 6082144 2024-02-27 06:00:02.302 2024-02-27 06:00:02.302 1000 STREAM 141924 10554 6082308 2024-02-27 06:24:02.295 2024-02-27 06:24:02.295 1000 STREAM 141924 666 6082313 2024-02-27 06:26:02.288 2024-02-27 06:26:02.288 1000 STREAM 141924 18518 6082333 2024-02-27 06:30:02.321 2024-02-27 06:30:02.321 1000 STREAM 141924 16543 6082355 2024-02-27 06:41:02.304 2024-02-27 06:41:02.304 1000 STREAM 141924 21155 6082389 2024-02-27 06:44:02.292 2024-02-27 06:44:02.292 1000 STREAM 141924 18392 6082398 2024-02-27 06:46:02.286 2024-02-27 06:46:02.286 1000 STREAM 141924 20310 6082409 2024-02-27 06:49:02.31 2024-02-27 06:49:02.31 1000 STREAM 141924 656 6082414 2024-02-27 06:50:02.302 2024-02-27 06:50:02.302 1000 STREAM 141924 3409 6082417 2024-02-27 06:51:02.301 2024-02-27 06:51:02.301 1000 STREAM 141924 12930 6082418 2024-02-27 06:52:02.307 2024-02-27 06:52:02.307 1000 STREAM 141924 6499 6082426 2024-02-27 06:53:02.311 2024-02-27 06:53:02.311 1000 STREAM 141924 9494 6082433 2024-02-27 06:58:02.313 2024-02-27 06:58:02.313 1000 STREAM 141924 1489 6082438 2024-02-27 07:00:02.317 2024-02-27 07:00:02.317 1000 STREAM 141924 20299 6082462 2024-02-27 07:03:02.374 2024-02-27 07:03:02.374 1000 STREAM 141924 4313 6082494 2024-02-27 07:07:02.368 2024-02-27 07:07:02.368 1000 STREAM 141924 18372 6082506 2024-02-27 07:08:02.454 2024-02-27 07:08:02.454 1000 STREAM 141924 1673 6082522 2024-02-27 07:13:02.386 2024-02-27 07:13:02.386 1000 STREAM 141924 20180 6082525 2024-02-27 07:14:02.394 2024-02-27 07:14:02.394 1000 STREAM 141924 19138 6082529 2024-02-27 07:16:02.406 2024-02-27 07:16:02.406 1000 STREAM 141924 19463 6082546 2024-02-27 07:19:02.425 2024-02-27 07:19:02.425 1000 STREAM 141924 19689 6082547 2024-02-27 07:20:02.43 2024-02-27 07:20:02.43 1000 STREAM 141924 16532 6082553 2024-02-27 07:22:02.422 2024-02-27 07:22:02.422 1000 STREAM 141924 8176 6081872 2024-02-27 05:02:01.944 2024-02-27 05:02:01.944 1000 STREAM 141924 16355 6081907 2024-02-27 05:08:01.971 2024-02-27 05:08:01.971 1000 STREAM 141924 4102 6081913 2024-02-27 05:12:02.039 2024-02-27 05:12:02.039 1000 STREAM 141924 19995 6081927 2024-02-27 05:16:02.069 2024-02-27 05:16:02.069 1000 STREAM 141924 15474 6081884 2024-02-27 05:06:01.972 2024-02-27 05:06:01.972 1000 STREAM 141924 17800 6081910 2024-02-27 05:10:02.039 2024-02-27 05:10:02.039 1000 STREAM 141924 6573 6081917 2024-02-27 05:14:02.062 2024-02-27 05:14:02.062 1000 STREAM 141924 18994 6082025 2024-02-27 05:40:02.34 2024-02-27 05:40:02.34 1000 STREAM 141924 18116 6082056 2024-02-27 05:44:02.329 2024-02-27 05:44:02.329 1000 STREAM 141924 636 6082058 2024-02-27 05:46:02.331 2024-02-27 05:46:02.331 1000 STREAM 141924 18836 6081911 2024-02-27 05:11:02.578 2024-02-27 05:11:02.578 1000 STREAM 141924 20222 6081953 2024-02-27 05:23:02.636 2024-02-27 05:23:02.636 1000 STREAM 141924 20190 6081962 2024-02-27 05:25:02.664 2024-02-27 05:25:02.664 1000 STREAM 141924 16680 6081968 2024-02-27 05:27:02.676 2024-02-27 05:27:02.676 1000 STREAM 141924 8569 6081993 2024-02-27 05:35:02.704 2024-02-27 05:35:02.704 1000 STREAM 141924 10283 6082001 2024-02-27 05:36:37.77 2024-02-27 05:36:37.77 18900 TIP 440241 1772 6082013 2024-02-27 05:38:53.936 2024-02-27 05:38:53.936 2100 FEE 440056 19037 6082014 2024-02-27 05:38:53.936 2024-02-27 05:38:53.936 18900 TIP 440056 16350 6082019 2024-02-27 05:39:34.641 2024-02-27 05:39:34.641 100 FEE 440249 15119 6082020 2024-02-27 05:39:34.641 2024-02-27 05:39:34.641 900 TIP 440249 15843 6082026 2024-02-27 05:40:29.507 2024-02-27 05:40:29.507 10000 DONT_LIKE_THIS 440239 11075 6082035 2024-02-27 05:41:25.089 2024-02-27 05:41:25.089 2100 FEE 440173 19902 6082036 2024-02-27 05:41:25.089 2024-02-27 05:41:25.089 18900 TIP 440173 1650 6082048 2024-02-27 05:42:03.472 2024-02-27 05:42:03.472 2100 FEE 440229 21329 6082049 2024-02-27 05:42:03.472 2024-02-27 05:42:03.472 18900 TIP 440229 15088 6082064 2024-02-27 05:50:02.511 2024-02-27 05:50:02.511 2100 FEE 440256 11018 6082065 2024-02-27 05:50:02.511 2024-02-27 05:50:02.511 18900 TIP 440256 21391 6082068 2024-02-27 05:51:21.078 2024-02-27 05:51:21.078 10000 FEE 440259 18830 6082071 2024-02-27 05:52:06.567 2024-02-27 05:52:06.567 10000 FEE 440259 2000 6082072 2024-02-27 05:52:06.567 2024-02-27 05:52:06.567 90000 TIP 440259 9341 6082101 2024-02-27 05:53:59.939 2024-02-27 05:53:59.939 2100 FEE 440097 21523 6082102 2024-02-27 05:53:59.939 2024-02-27 05:53:59.939 18900 TIP 440097 15858 6082170 2024-02-27 06:02:56.694 2024-02-27 06:02:56.694 2100 FEE 440082 16956 6082171 2024-02-27 06:02:56.694 2024-02-27 06:02:56.694 18900 TIP 440082 1596 6082183 2024-02-27 06:05:06.836 2024-02-27 06:05:06.836 5000 FEE 440210 1647 6082184 2024-02-27 06:05:06.836 2024-02-27 06:05:06.836 45000 TIP 440210 3461 6082189 2024-02-27 06:05:07.447 2024-02-27 06:05:07.447 5000 FEE 440210 3544 6082190 2024-02-27 06:05:07.447 2024-02-27 06:05:07.447 45000 TIP 440210 14545 6082215 2024-02-27 06:05:17.097 2024-02-27 06:05:17.097 2100 FEE 440211 18892 6082216 2024-02-27 06:05:17.097 2024-02-27 06:05:17.097 18900 TIP 440211 822 6082227 2024-02-27 06:05:27.997 2024-02-27 06:05:27.997 2100 FEE 440044 21457 6082228 2024-02-27 06:05:27.997 2024-02-27 06:05:27.997 18900 TIP 440044 712 6082237 2024-02-27 06:05:54.275 2024-02-27 06:05:54.275 100 FEE 440080 16145 6082238 2024-02-27 06:05:54.275 2024-02-27 06:05:54.275 900 TIP 440080 19465 6082239 2024-02-27 06:05:54.54 2024-02-27 06:05:54.54 100 FEE 440080 19966 6082240 2024-02-27 06:05:54.54 2024-02-27 06:05:54.54 900 TIP 440080 18309 6082265 2024-02-27 06:07:10.006 2024-02-27 06:07:10.006 4200 FEE 439297 13843 6082266 2024-02-27 06:07:10.006 2024-02-27 06:07:10.006 37800 TIP 439297 20464 6082281 2024-02-27 06:10:00.319 2024-02-27 06:10:00.319 2000 FEE 440266 1286 6082282 2024-02-27 06:10:00.319 2024-02-27 06:10:00.319 18000 TIP 440266 7847 6082302 2024-02-27 06:20:15.94 2024-02-27 06:20:15.94 10000 FEE 440270 15697 6082305 2024-02-27 06:21:06.273 2024-02-27 06:21:06.273 1000 FEE 440271 19929 6082319 2024-02-27 06:27:30.462 2024-02-27 06:27:30.462 100000 DONT_LIKE_THIS 440272 919 6082320 2024-02-27 06:27:45.029 2024-02-27 06:27:45.029 0 FEE 440272 19333 6082342 2024-02-27 06:34:34.086 2024-02-27 06:34:34.086 3300 FEE 440208 3417 6082343 2024-02-27 06:34:34.086 2024-02-27 06:34:34.086 29700 TIP 440208 10063 6082371 2024-02-27 06:43:54.816 2024-02-27 06:43:54.816 200 FEE 440132 20267 6082372 2024-02-27 06:43:54.816 2024-02-27 06:43:54.816 1800 TIP 440132 21393 6082383 2024-02-27 06:43:56.623 2024-02-27 06:43:56.623 200 FEE 440132 19096 6082384 2024-02-27 06:43:56.623 2024-02-27 06:43:56.623 1800 TIP 440132 7809 6082385 2024-02-27 06:43:56.908 2024-02-27 06:43:56.908 200 FEE 440132 16230 6082386 2024-02-27 06:43:56.908 2024-02-27 06:43:56.908 1800 TIP 440132 9350 6082397 2024-02-27 06:45:28.238 2024-02-27 06:45:28.238 100000 DONT_LIKE_THIS 440225 19193 6082406 2024-02-27 06:47:49.041 2024-02-27 06:47:49.041 10000 FEE 439822 749 6082407 2024-02-27 06:47:49.041 2024-02-27 06:47:49.041 90000 TIP 439822 20826 6082455 2024-02-27 07:02:06.094 2024-02-27 07:02:06.094 7700 FEE 439664 20979 6082456 2024-02-27 07:02:06.094 2024-02-27 07:02:06.094 69300 TIP 439664 20310 6082459 2024-02-27 07:02:10.378 2024-02-27 07:02:10.378 7700 FEE 439657 8045 6082460 2024-02-27 07:02:10.378 2024-02-27 07:02:10.378 69300 TIP 439657 12222 6082463 2024-02-27 07:03:03.205 2024-02-27 07:03:03.205 1000 FEE 440283 1652 6082515 2024-02-27 07:09:34.642 2024-02-27 07:09:34.642 5000 FEE 440280 18040 6082516 2024-02-27 07:09:34.642 2024-02-27 07:09:34.642 45000 TIP 440280 695 6082530 2024-02-27 07:16:18.851 2024-02-27 07:16:18.851 300 FEE 440132 20287 6082531 2024-02-27 07:16:18.851 2024-02-27 07:16:18.851 2700 TIP 440132 18517 6082564 2024-02-27 07:25:06.877 2024-02-27 07:25:06.877 1000 FEE 440296 630 6082595 2024-02-27 07:37:08.282 2024-02-27 07:37:08.282 1000 FEE 440239 8916 6082596 2024-02-27 07:37:08.282 2024-02-27 07:37:08.282 9000 TIP 440239 18556 6082601 2024-02-27 07:37:34.095 2024-02-27 07:37:34.095 2100 FEE 440259 14295 6082602 2024-02-27 07:37:34.095 2024-02-27 07:37:34.095 18900 TIP 440259 2460 6082612 2024-02-27 07:38:08.57 2024-02-27 07:38:08.57 2100 FEE 440201 4313 6082613 2024-02-27 07:38:08.57 2024-02-27 07:38:08.57 18900 TIP 440201 1803 6082636 2024-02-27 07:45:03.478 2024-02-27 07:45:03.478 10000 FEE 440306 21320 6082640 2024-02-27 07:46:38.887 2024-02-27 07:46:38.887 21000 FEE 440307 650 6082651 2024-02-27 07:48:42.038 2024-02-27 07:48:42.038 3300 FEE 440264 20340 6082652 2024-02-27 07:48:42.038 2024-02-27 07:48:42.038 29700 TIP 440264 12774 6082655 2024-02-27 07:48:58.169 2024-02-27 07:48:58.169 1000 FEE 440308 10934 6082674 2024-02-27 07:55:21.358 2024-02-27 07:55:21.358 2100 FEE 439053 20624 6082675 2024-02-27 07:55:21.358 2024-02-27 07:55:21.358 18900 TIP 439053 14663 6082676 2024-02-27 07:55:43.324 2024-02-27 07:55:43.324 1000 FEE 440311 1729 6082680 2024-02-27 07:57:41.926 2024-02-27 07:57:41.926 1000 FEE 440313 16177 6082685 2024-02-27 08:01:06.845 2024-02-27 08:01:06.845 1000 FEE 440314 20577 6082705 2024-02-27 08:07:02.066 2024-02-27 08:07:02.066 1000 FEE 440304 20892 6082706 2024-02-27 08:07:02.066 2024-02-27 08:07:02.066 9000 TIP 440304 2151 6082712 2024-02-27 08:08:28.196 2024-02-27 08:08:28.196 2100 FEE 440241 19199 6082713 2024-02-27 08:08:28.196 2024-02-27 08:08:28.196 18900 TIP 440241 14278 6082729 2024-02-27 08:09:39.499 2024-02-27 08:09:39.499 700 FEE 440094 17710 6082730 2024-02-27 08:09:39.499 2024-02-27 08:09:39.499 6300 TIP 440094 19500 6082761 2024-02-27 08:21:15.601 2024-02-27 08:21:15.601 700 FEE 440094 6515 6082762 2024-02-27 08:21:15.601 2024-02-27 08:21:15.601 6300 TIP 440094 13622 6082765 2024-02-27 08:21:16.043 2024-02-27 08:21:16.043 700 FEE 440094 3506 6082766 2024-02-27 08:21:16.043 2024-02-27 08:21:16.043 6300 TIP 440094 641 6082774 2024-02-27 08:25:15.335 2024-02-27 08:25:15.335 100 FEE 440132 17535 6082775 2024-02-27 08:25:15.335 2024-02-27 08:25:15.335 900 TIP 440132 1745 6082797 2024-02-27 08:38:55.966 2024-02-27 08:38:55.966 1000 FEE 440332 688 6082801 2024-02-27 08:40:12.523 2024-02-27 08:40:12.523 1000 FEE 440334 6268 6082017 2024-02-27 05:39:02.669 2024-02-27 05:39:02.669 1000 STREAM 141924 18680 6082141 2024-02-27 05:59:02.743 2024-02-27 05:59:02.743 1000 STREAM 141924 663 6082145 2024-02-27 06:01:02.746 2024-02-27 06:01:02.746 1000 STREAM 141924 1198 6082047 2024-02-27 05:42:02.314 2024-02-27 05:42:02.314 1000 STREAM 141924 19941 6082057 2024-02-27 05:45:02.333 2024-02-27 05:45:02.333 1000 STREAM 141924 19471 6082154 2024-02-27 06:02:02.437 2024-02-27 06:02:02.437 1000 STREAM 141924 6229 6082172 2024-02-27 06:03:02.434 2024-02-27 06:03:02.434 1000 STREAM 141924 2502 6082176 2024-02-27 06:05:02.445 2024-02-27 06:05:02.445 1000 STREAM 141924 759 6082249 2024-02-27 06:06:02.449 2024-02-27 06:06:02.449 1000 STREAM 141924 7376 6082264 2024-02-27 06:07:02.449 2024-02-27 06:07:02.449 1000 STREAM 141924 5637 6082274 2024-02-27 06:09:02.458 2024-02-27 06:09:02.458 1000 STREAM 141924 9352 6082288 2024-02-27 06:14:02.471 2024-02-27 06:14:02.471 1000 STREAM 141924 21371 6082289 2024-02-27 06:15:02.471 2024-02-27 06:15:02.471 1000 STREAM 141924 20514 6082291 2024-02-27 06:17:02.46 2024-02-27 06:17:02.46 1000 STREAM 141924 15271 6082299 2024-02-27 06:20:02.49 2024-02-27 06:20:02.49 1000 STREAM 141924 5725 6082304 2024-02-27 06:21:02.49 2024-02-27 06:21:02.49 1000 STREAM 141924 20825 6082307 2024-02-27 06:23:02.499 2024-02-27 06:23:02.499 1000 STREAM 141924 12218 6082318 2024-02-27 06:27:02.505 2024-02-27 06:27:02.505 1000 STREAM 141924 775 6082332 2024-02-27 06:29:02.505 2024-02-27 06:29:02.505 1000 STREAM 141924 18919 6082336 2024-02-27 06:31:02.521 2024-02-27 06:31:02.521 1000 STREAM 141924 9200 6082341 2024-02-27 06:34:02.517 2024-02-27 06:34:02.517 1000 STREAM 141924 14688 6082345 2024-02-27 06:36:02.53 2024-02-27 06:36:02.53 1000 STREAM 141924 623 6082346 2024-02-27 06:37:02.538 2024-02-27 06:37:02.538 1000 STREAM 141924 750 6082356 2024-02-27 06:42:02.548 2024-02-27 06:42:02.548 1000 STREAM 141924 20922 6082364 2024-02-27 06:43:02.554 2024-02-27 06:43:02.554 1000 STREAM 141924 16354 6082482 2024-02-27 07:04:02.656 2024-02-27 07:04:02.656 1000 STREAM 141924 16214 6082521 2024-02-27 07:12:02.735 2024-02-27 07:12:02.735 1000 STREAM 141924 695 6082541 2024-02-27 07:17:02.795 2024-02-27 07:17:02.795 1000 STREAM 141924 17741 6082561 2024-02-27 07:24:02.864 2024-02-27 07:24:02.864 1000 STREAM 141924 5499 6082562 2024-02-27 07:25:02.889 2024-02-27 07:25:02.889 1000 STREAM 141924 18180 6082567 2024-02-27 07:28:02.955 2024-02-27 07:28:02.955 1000 STREAM 141924 9367 6082572 2024-02-27 07:29:02.943 2024-02-27 07:29:02.943 1000 STREAM 141924 8954 6082577 2024-02-27 07:31:02.978 2024-02-27 07:31:02.978 1000 STREAM 141924 18330 6082587 2024-02-27 07:34:03.013 2024-02-27 07:34:03.013 1000 STREAM 141924 697 6082588 2024-02-27 07:35:03.015 2024-02-27 07:35:03.015 1000 STREAM 141924 18344 6082589 2024-02-27 07:36:03.033 2024-02-27 07:36:03.033 1000 STREAM 141924 18468 6082611 2024-02-27 07:38:03.063 2024-02-27 07:38:03.063 1000 STREAM 141924 17183 6082614 2024-02-27 07:39:03.079 2024-02-27 07:39:03.079 1000 STREAM 141924 9365 6082615 2024-02-27 07:40:03.105 2024-02-27 07:40:03.105 1000 STREAM 141924 20137 6082619 2024-02-27 07:42:03.121 2024-02-27 07:42:03.121 1000 STREAM 141924 4973 6082620 2024-02-27 07:43:03.136 2024-02-27 07:43:03.136 1000 STREAM 141924 20152 6082658 2024-02-27 07:49:03.211 2024-02-27 07:49:03.211 1000 STREAM 141924 16939 6082663 2024-02-27 07:51:03.2 2024-02-27 07:51:03.2 1000 STREAM 141924 14650 6082665 2024-02-27 07:52:03.213 2024-02-27 07:52:03.213 1000 STREAM 141924 880 6082671 2024-02-27 07:55:03.212 2024-02-27 07:55:03.212 1000 STREAM 141924 11820 6082073 2024-02-27 05:52:08.507 2024-02-27 05:52:08.507 2100 FEE 440171 16706 6082074 2024-02-27 05:52:08.507 2024-02-27 05:52:08.507 18900 TIP 440171 19142 6082077 2024-02-27 05:52:41.984 2024-02-27 05:52:41.984 2100 FEE 440056 1738 6082078 2024-02-27 05:52:41.984 2024-02-27 05:52:41.984 18900 TIP 440056 19929 6082087 2024-02-27 05:52:59.013 2024-02-27 05:52:59.013 100 FEE 440239 6421 6082088 2024-02-27 05:52:59.013 2024-02-27 05:52:59.013 900 TIP 440239 19469 6082092 2024-02-27 05:53:08.36 2024-02-27 05:53:08.36 2100 FEE 439495 21239 6082093 2024-02-27 05:53:08.36 2024-02-27 05:53:08.36 18900 TIP 439495 11491 6082103 2024-02-27 05:54:00.395 2024-02-27 05:54:00.395 2100 FEE 440078 647 6082104 2024-02-27 05:54:00.395 2024-02-27 05:54:00.395 18900 TIP 440078 979 6082105 2024-02-27 05:54:01.201 2024-02-27 05:54:01.201 2100 FEE 440111 21547 6082106 2024-02-27 05:54:01.201 2024-02-27 05:54:01.201 18900 TIP 440111 6594 6082121 2024-02-27 05:56:32.605 2024-02-27 05:56:32.605 2100 FEE 439804 20911 6082122 2024-02-27 05:56:32.605 2024-02-27 05:56:32.605 18900 TIP 439804 635 6082155 2024-02-27 06:02:03.774 2024-02-27 06:02:03.774 2100 FEE 440237 16432 6082156 2024-02-27 06:02:03.774 2024-02-27 06:02:03.774 18900 TIP 440237 2757 6082173 2024-02-27 06:03:56.154 2024-02-27 06:03:56.154 100 FEE 395248 5759 6082174 2024-02-27 06:03:56.154 2024-02-27 06:03:56.154 900 TIP 395248 13622 6082243 2024-02-27 06:05:58.275 2024-02-27 06:05:58.275 2000 FEE 440132 18040 6082244 2024-02-27 06:05:58.275 2024-02-27 06:05:58.275 18000 TIP 440132 15115 6082247 2024-02-27 06:06:02.209 2024-02-27 06:06:02.209 2000 FEE 440206 5487 6082248 2024-02-27 06:06:02.209 2024-02-27 06:06:02.209 18000 TIP 440206 18533 6082252 2024-02-27 06:06:13.362 2024-02-27 06:06:13.362 2000 FEE 440229 9352 6082253 2024-02-27 06:06:13.362 2024-02-27 06:06:13.362 18000 TIP 440229 16356 6082275 2024-02-27 06:09:30.489 2024-02-27 06:09:30.489 2000 FEE 440239 16948 6082276 2024-02-27 06:09:30.489 2024-02-27 06:09:30.489 18000 TIP 440239 5036 6082279 2024-02-27 06:09:54.292 2024-02-27 06:09:54.292 2000 FEE 440208 19841 6082280 2024-02-27 06:09:54.292 2024-02-27 06:09:54.292 18000 TIP 440208 6148 6082292 2024-02-27 06:17:02.793 2024-02-27 06:17:02.793 1000 FEE 439729 913 6082293 2024-02-27 06:17:02.793 2024-02-27 06:17:02.793 9000 TIP 439729 12245 6082351 2024-02-27 06:40:28.912 2024-02-27 06:40:28.912 10000 FEE 395970 4322 6082352 2024-02-27 06:40:28.912 2024-02-27 06:40:28.912 90000 TIP 395970 1605 6082357 2024-02-27 06:42:03.014 2024-02-27 06:42:03.014 1000 FEE 439315 18409 6082358 2024-02-27 06:42:03.014 2024-02-27 06:42:03.014 9000 TIP 439315 993 6082359 2024-02-27 06:42:21.811 2024-02-27 06:42:21.811 1000 FEE 440274 10519 6082401 2024-02-27 06:47:28.065 2024-02-27 06:47:28.065 1000 FEE 439905 9349 6082402 2024-02-27 06:47:28.065 2024-02-27 06:47:28.065 9000 TIP 439905 2577 6082404 2024-02-27 06:47:42.365 2024-02-27 06:47:42.365 2100 FEE 437178 2195 6082405 2024-02-27 06:47:42.365 2024-02-27 06:47:42.365 18900 TIP 437178 963 6082434 2024-02-27 06:58:20.292 2024-02-27 06:58:20.292 1000 FEE 440281 910 6082457 2024-02-27 07:02:06.778 2024-02-27 07:02:06.778 7700 FEE 439664 6430 6082458 2024-02-27 07:02:06.778 2024-02-27 07:02:06.778 69300 TIP 439664 14503 6082474 2024-02-27 07:03:23.132 2024-02-27 07:03:23.132 300 FEE 440127 19289 6082475 2024-02-27 07:03:23.132 2024-02-27 07:03:23.132 2700 TIP 440127 18040 6082484 2024-02-27 07:04:40.34 2024-02-27 07:04:40.34 4000 FEE 440254 1213 6082485 2024-02-27 07:04:40.34 2024-02-27 07:04:40.34 36000 TIP 440254 21457 6082497 2024-02-27 07:07:22.573 2024-02-27 07:07:22.573 1000 FEE 440015 19016 6082498 2024-02-27 07:07:22.573 2024-02-27 07:07:22.573 9000 TIP 440015 19500 6082527 2024-02-27 07:14:57.532 2024-02-27 07:14:57.532 1000 FEE 440289 15161 6082537 2024-02-27 07:16:50.412 2024-02-27 07:16:50.412 800 FEE 440229 1773 6082538 2024-02-27 07:16:50.412 2024-02-27 07:16:50.412 7200 TIP 440229 2022 6082542 2024-02-27 07:17:42.359 2024-02-27 07:17:42.359 500 FEE 440266 18051 6082543 2024-02-27 07:17:42.359 2024-02-27 07:17:42.359 4500 TIP 440266 1624 6082548 2024-02-27 07:20:54.604 2024-02-27 07:20:54.604 800 FEE 439339 11670 6082549 2024-02-27 07:20:54.604 2024-02-27 07:20:54.604 7200 TIP 439339 21413 6082551 2024-02-27 07:21:38.852 2024-02-27 07:21:38.852 1000 FEE 440266 2519 6082552 2024-02-27 07:21:38.852 2024-02-27 07:21:38.852 9000 TIP 440266 20663 6082556 2024-02-27 07:23:07.371 2024-02-27 07:23:07.371 1000 FEE 440293 20990 6082559 2024-02-27 07:23:55.477 2024-02-27 07:23:55.477 2100 FEE 440029 5175 6082560 2024-02-27 07:23:55.477 2024-02-27 07:23:55.477 18900 TIP 440029 12921 6082569 2024-02-27 07:28:21.748 2024-02-27 07:28:21.748 2100 FEE 440118 17103 6082570 2024-02-27 07:28:21.748 2024-02-27 07:28:21.748 18900 TIP 440118 11523 6082576 2024-02-27 07:30:35.304 2024-02-27 07:30:35.304 1000 FEE 440299 19785 6082584 2024-02-27 07:32:41.217 2024-02-27 07:32:41.217 2100 FEE 439863 2326 6082585 2024-02-27 07:32:41.217 2024-02-27 07:32:41.217 18900 TIP 439863 8326 6082594 2024-02-27 07:37:03.432 2024-02-27 07:37:03.432 1000 FEE 440302 18769 6082641 2024-02-27 07:46:56.078 2024-02-27 07:46:56.078 1000 FEE 440056 9517 6082642 2024-02-27 07:46:56.078 2024-02-27 07:46:56.078 9000 TIP 440056 18005 6082649 2024-02-27 07:48:41.842 2024-02-27 07:48:41.842 6600 FEE 440264 16154 6082650 2024-02-27 07:48:41.842 2024-02-27 07:48:41.842 59400 TIP 440264 20018 6082660 2024-02-27 07:50:07.227 2024-02-27 07:50:07.227 100000 FEE 440309 17046 6082664 2024-02-27 07:51:55.095 2024-02-27 07:51:55.095 3000 DONT_LIKE_THIS 440257 19930 6082678 2024-02-27 07:56:57.61 2024-02-27 07:56:57.61 50000 FEE 440312 701 6082716 2024-02-27 08:08:50.318 2024-02-27 08:08:50.318 2100 FEE 439946 19103 6082717 2024-02-27 08:08:50.318 2024-02-27 08:08:50.318 18900 TIP 439946 21556 6082718 2024-02-27 08:09:00.786 2024-02-27 08:09:00.786 2100 FEE 440080 1195 6082719 2024-02-27 08:09:00.786 2024-02-27 08:09:00.786 18900 TIP 440080 15147 6082736 2024-02-27 08:12:40.122 2024-02-27 08:12:40.122 50000 FEE 440321 16059 6082751 2024-02-27 08:18:14.803 2024-02-27 08:18:14.803 2100 FEE 439964 12921 6082752 2024-02-27 08:18:14.803 2024-02-27 08:18:14.803 18900 TIP 439964 1802 6082776 2024-02-27 08:25:47.54 2024-02-27 08:25:47.54 1000 FEE 440326 640 6082842 2024-02-27 08:55:05.795 2024-02-27 08:55:05.795 1000 FEE 440336 5775 6082865 2024-02-27 08:55:11.345 2024-02-27 08:55:11.345 500 FEE 440172 21044 6082866 2024-02-27 08:55:11.345 2024-02-27 08:55:11.345 4500 TIP 440172 19639 6082881 2024-02-27 08:55:12.703 2024-02-27 08:55:12.703 500 FEE 440172 9261 6082882 2024-02-27 08:55:12.703 2024-02-27 08:55:12.703 4500 TIP 440172 20837 6082889 2024-02-27 08:55:16.369 2024-02-27 08:55:16.369 500 FEE 440172 20481 6082890 2024-02-27 08:55:16.369 2024-02-27 08:55:16.369 4500 TIP 440172 20802 6082891 2024-02-27 08:55:16.509 2024-02-27 08:55:16.509 500 FEE 440172 18470 6082892 2024-02-27 08:55:16.509 2024-02-27 08:55:16.509 4500 TIP 440172 4388 6082893 2024-02-27 08:55:16.66 2024-02-27 08:55:16.66 500 FEE 440172 20102 6082894 2024-02-27 08:55:16.66 2024-02-27 08:55:16.66 4500 TIP 440172 9275 6082899 2024-02-27 08:55:17.158 2024-02-27 08:55:17.158 500 FEE 440172 1394 6082900 2024-02-27 08:55:17.158 2024-02-27 08:55:17.158 4500 TIP 440172 19924 6082919 2024-02-27 08:55:18.766 2024-02-27 08:55:18.766 500 FEE 440172 16424 6082920 2024-02-27 08:55:18.766 2024-02-27 08:55:18.766 4500 TIP 440172 14370 6082949 2024-02-27 08:55:33.655 2024-02-27 08:55:33.655 500 FEE 440200 13246 6082950 2024-02-27 08:55:33.655 2024-02-27 08:55:33.655 4500 TIP 440200 9920 6082955 2024-02-27 08:55:34.364 2024-02-27 08:55:34.364 500 FEE 440200 21119 6082956 2024-02-27 08:55:34.364 2024-02-27 08:55:34.364 4500 TIP 440200 3440 6082961 2024-02-27 08:55:35.7 2024-02-27 08:55:35.7 500 FEE 440200 1801 6082962 2024-02-27 08:55:35.7 2024-02-27 08:55:35.7 4500 TIP 440200 14489 6082963 2024-02-27 08:55:44.86 2024-02-27 08:55:44.86 1500 FEE 440291 6191 6082964 2024-02-27 08:55:44.86 2024-02-27 08:55:44.86 13500 TIP 440291 2844 6082993 2024-02-27 08:55:55.825 2024-02-27 08:55:55.825 500 FEE 440086 5003 6082083 2024-02-27 05:52:51.902 2024-02-27 05:52:51.902 100 FEE 440259 20642 6082084 2024-02-27 05:52:51.902 2024-02-27 05:52:51.902 900 TIP 440259 20623 6082094 2024-02-27 05:53:08.787 2024-02-27 05:53:08.787 1000 FEE 440261 18220 6082123 2024-02-27 05:56:43.123 2024-02-27 05:56:43.123 2100 FEE 439735 11164 6082124 2024-02-27 05:56:43.123 2024-02-27 05:56:43.123 18900 TIP 439735 18608 6082131 2024-02-27 05:57:01.105 2024-02-27 05:57:01.105 2100 FEE 439946 8541 6082132 2024-02-27 05:57:01.105 2024-02-27 05:57:01.105 18900 TIP 439946 1195 6082207 2024-02-27 06:05:14.549 2024-02-27 06:05:14.549 2100 FEE 439443 20922 6082208 2024-02-27 06:05:14.549 2024-02-27 06:05:14.549 18900 TIP 439443 20301 6082225 2024-02-27 06:05:20.931 2024-02-27 06:05:20.931 2100 FEE 439472 10359 6082226 2024-02-27 06:05:20.931 2024-02-27 06:05:20.931 18900 TIP 439472 5794 6082231 2024-02-27 06:05:50.158 2024-02-27 06:05:50.158 2100 FEE 440008 4798 6082232 2024-02-27 06:05:50.158 2024-02-27 06:05:50.158 18900 TIP 440008 18784 6082250 2024-02-27 06:06:12.684 2024-02-27 06:06:12.684 2100 FEE 439772 21600 6082251 2024-02-27 06:06:12.684 2024-02-27 06:06:12.684 18900 TIP 439772 16194 6082268 2024-02-27 06:07:59.538 2024-02-27 06:07:59.538 1000 FEE 440267 5725 6082294 2024-02-27 06:17:08.085 2024-02-27 06:17:08.085 500 FEE 439390 20802 6082295 2024-02-27 06:17:08.085 2024-02-27 06:17:08.085 4500 TIP 439390 1505 6082298 2024-02-27 06:20:01.161 2024-02-27 06:20:01.161 1000 FEE 440269 2640 6082303 2024-02-27 06:20:55.158 2024-02-27 06:20:55.158 0 FEE 440270 16788 6082310 2024-02-27 06:24:28.722 2024-02-27 06:24:28.722 100 FEE 440090 16356 6082311 2024-02-27 06:24:28.722 2024-02-27 06:24:28.722 900 TIP 440090 20657 6082420 2024-02-27 06:52:40.818 2024-02-27 06:52:40.818 2100 FEE 440272 11714 6082421 2024-02-27 06:52:40.818 2024-02-27 06:52:40.818 18900 TIP 440272 9354 6082450 2024-02-27 07:01:19.118 2024-02-27 07:01:19.118 2100 FEE 440223 13622 6082451 2024-02-27 07:01:19.118 2024-02-27 07:01:19.118 18900 TIP 440223 20168 6082480 2024-02-27 07:03:38.079 2024-02-27 07:03:38.079 2100 FEE 439658 14213 6082481 2024-02-27 07:03:38.079 2024-02-27 07:03:38.079 18900 TIP 439658 17226 6082489 2024-02-27 07:05:03.374 2024-02-27 07:05:03.374 5200 FEE 440254 5758 6082490 2024-02-27 07:05:03.374 2024-02-27 07:05:03.374 46800 TIP 440254 3686 6082532 2024-02-27 07:16:30.872 2024-02-27 07:16:30.872 2100 FEE 440266 4415 6082533 2024-02-27 07:16:30.872 2024-02-27 07:16:30.872 18900 TIP 440266 19759 6082563 2024-02-27 07:25:05.184 2024-02-27 07:25:05.184 1000 FEE 440295 20163 6082590 2024-02-27 07:36:27.382 2024-02-27 07:36:27.382 21000 FEE 440301 7809 6082605 2024-02-27 07:37:45.314 2024-02-27 07:37:45.314 2100 FEE 440239 13042 6082606 2024-02-27 07:37:45.314 2024-02-27 07:37:45.314 18900 TIP 440239 12779 6082607 2024-02-27 07:37:49.327 2024-02-27 07:37:49.327 2100 FEE 440230 19952 6082608 2024-02-27 07:37:49.327 2024-02-27 07:37:49.327 18900 TIP 440230 4624 6082630 2024-02-27 07:44:33.249 2024-02-27 07:44:33.249 500 FEE 440234 4059 6082631 2024-02-27 07:44:33.249 2024-02-27 07:44:33.249 4500 TIP 440234 9352 6082632 2024-02-27 07:44:33.636 2024-02-27 07:44:33.636 500 FEE 440234 5865 6082633 2024-02-27 07:44:33.636 2024-02-27 07:44:33.636 4500 TIP 440234 20254 6082668 2024-02-27 07:54:42.857 2024-02-27 07:54:42.857 2100 FEE 440309 2773 6082669 2024-02-27 07:54:42.857 2024-02-27 07:54:42.857 18900 TIP 440309 18271 6082686 2024-02-27 08:01:10.971 2024-02-27 08:01:10.971 2100 FEE 440310 12721 6082687 2024-02-27 08:01:10.971 2024-02-27 08:01:10.971 18900 TIP 440310 19352 6082725 2024-02-27 08:09:39.167 2024-02-27 08:09:39.167 700 FEE 440094 1602 6082726 2024-02-27 08:09:39.167 2024-02-27 08:09:39.167 6300 TIP 440094 13198 6082745 2024-02-27 08:17:08.583 2024-02-27 08:17:08.583 10000 FEE 439702 4166 6082746 2024-02-27 08:17:08.583 2024-02-27 08:17:08.583 90000 TIP 439702 1474 6082763 2024-02-27 08:21:15.823 2024-02-27 08:21:15.823 700 FEE 440094 802 6082764 2024-02-27 08:21:15.823 2024-02-27 08:21:15.823 6300 TIP 440094 11164 6082778 2024-02-27 08:25:59.804 2024-02-27 08:25:59.804 0 FEE 440327 21037 6082780 2024-02-27 08:26:31.217 2024-02-27 08:26:31.217 0 FEE 440327 21614 6082782 2024-02-27 08:27:44.114 2024-02-27 08:27:44.114 1000 FEE 440328 979 6082787 2024-02-27 08:31:58.467 2024-02-27 08:31:58.467 1000 FEE 440329 7903 6082833 2024-02-27 08:52:37.521 2024-02-27 08:52:37.521 1000 FEE 440268 2327 6082834 2024-02-27 08:52:37.521 2024-02-27 08:52:37.521 9000 TIP 440268 20434 6082869 2024-02-27 08:55:11.669 2024-02-27 08:55:11.669 500 FEE 440172 20179 6082870 2024-02-27 08:55:11.669 2024-02-27 08:55:11.669 4500 TIP 440172 18225 6082929 2024-02-27 08:55:31.908 2024-02-27 08:55:31.908 500 FEE 440200 3979 6082930 2024-02-27 08:55:31.908 2024-02-27 08:55:31.908 4500 TIP 440200 6555 6082995 2024-02-27 08:55:56.08 2024-02-27 08:55:56.08 500 FEE 440086 21609 6082996 2024-02-27 08:55:56.08 2024-02-27 08:55:56.08 4500 TIP 440086 4538 6083001 2024-02-27 08:57:12.369 2024-02-27 08:57:12.369 1000 FEE 440046 19335 6083002 2024-02-27 08:57:12.369 2024-02-27 08:57:12.369 9000 TIP 440046 17082 6083021 2024-02-27 09:05:26.414 2024-02-27 09:05:26.414 10000 FEE 440341 21503 6083041 2024-02-27 09:13:07.823 2024-02-27 09:13:07.823 1000 FEE 440208 16329 6083042 2024-02-27 09:13:07.823 2024-02-27 09:13:07.823 9000 TIP 440208 5449 6083059 2024-02-27 09:19:13.238 2024-02-27 09:19:13.238 1000 FEE 440349 16789 6083080 2024-02-27 09:25:00.987 2024-02-27 09:25:00.987 100 FEE 440128 4322 6083081 2024-02-27 09:25:00.987 2024-02-27 09:25:00.987 900 TIP 440128 20624 6083089 2024-02-27 09:25:37.519 2024-02-27 09:25:37.519 1000 FEE 440355 20993 6083105 2024-02-27 09:29:40.634 2024-02-27 09:29:40.634 1000 FEE 440359 1298 6083130 2024-02-27 09:34:36.516 2024-02-27 09:34:36.516 1000 FEE 440367 19121 6083204 2024-02-27 09:55:37.707 2024-02-27 09:55:37.707 1000 FEE 440382 5425 6083228 2024-02-27 10:01:01.158 2024-02-27 10:01:01.158 100 FEE 440363 19810 6083229 2024-02-27 10:01:01.158 2024-02-27 10:01:01.158 900 TIP 440363 21493 6083260 2024-02-27 10:04:44.377 2024-02-27 10:04:44.377 1000 FEE 440387 20412 6083273 2024-02-27 10:05:24.065 2024-02-27 10:05:24.065 1000 FEE 440388 21216 6082175 2024-02-27 06:04:02.439 2024-02-27 06:04:02.439 1000 STREAM 141924 10016 6082269 2024-02-27 06:08:02.425 2024-02-27 06:08:02.425 1000 STREAM 141924 18832 6082283 2024-02-27 06:10:02.451 2024-02-27 06:10:02.451 1000 STREAM 141924 9816 6082284 2024-02-27 06:11:02.461 2024-02-27 06:11:02.461 1000 STREAM 141924 17817 6082285 2024-02-27 06:12:02.463 2024-02-27 06:12:02.463 1000 STREAM 141924 1825 6082287 2024-02-27 06:13:02.468 2024-02-27 06:13:02.468 1000 STREAM 141924 1480 6082290 2024-02-27 06:16:02.476 2024-02-27 06:16:02.476 1000 STREAM 141924 1008 6082296 2024-02-27 06:18:02.49 2024-02-27 06:18:02.49 1000 STREAM 141924 20817 6082297 2024-02-27 06:19:02.49 2024-02-27 06:19:02.49 1000 STREAM 141924 19813 6082306 2024-02-27 06:22:02.492 2024-02-27 06:22:02.492 1000 STREAM 141924 16309 6082312 2024-02-27 06:25:02.501 2024-02-27 06:25:02.501 1000 STREAM 141924 20514 6082337 2024-02-27 06:32:02.518 2024-02-27 06:32:02.518 1000 STREAM 141924 9349 6082347 2024-02-27 06:38:02.541 2024-02-27 06:38:02.541 1000 STREAM 141924 16956 6082349 2024-02-27 06:39:02.531 2024-02-27 06:39:02.531 1000 STREAM 141924 21022 6082350 2024-02-27 06:40:02.525 2024-02-27 06:40:02.525 1000 STREAM 141924 2749 6082325 2024-02-27 06:28:02.291 2024-02-27 06:28:02.291 1000 STREAM 141924 10359 6082338 2024-02-27 06:33:02.288 2024-02-27 06:33:02.288 1000 STREAM 141924 12516 6082344 2024-02-27 06:35:02.281 2024-02-27 06:35:02.281 1000 STREAM 141924 1090 6082348 2024-02-27 06:38:31.401 2024-02-27 06:38:31.401 10000 FEE 440273 9669 6082367 2024-02-27 06:43:54.567 2024-02-27 06:43:54.567 200 FEE 440132 1030 6082368 2024-02-27 06:43:54.567 2024-02-27 06:43:54.567 1800 TIP 440132 15806 6082392 2024-02-27 06:44:35.391 2024-02-27 06:44:35.391 3000 FEE 440272 21603 6082393 2024-02-27 06:44:35.391 2024-02-27 06:44:35.391 27000 TIP 440272 19320 6082410 2024-02-27 06:49:12.696 2024-02-27 06:49:12.696 0 FEE 440277 5455 6082424 2024-02-27 06:52:48.347 2024-02-27 06:52:48.347 2100 FEE 440273 644 6082425 2024-02-27 06:52:48.347 2024-02-27 06:52:48.347 18900 TIP 440273 17392 6082429 2024-02-27 06:55:52.992 2024-02-27 06:55:52.992 1000 FEE 440279 13055 6082431 2024-02-27 06:56:31.339 2024-02-27 06:56:31.339 1000 FEE 440280 4768 6082439 2024-02-27 07:00:26.464 2024-02-27 07:00:26.464 7700 FEE 440230 21148 6082440 2024-02-27 07:00:26.464 2024-02-27 07:00:26.464 69300 TIP 440230 13174 6082447 2024-02-27 07:00:54.691 2024-02-27 07:00:54.691 7700 FEE 440274 19905 6082448 2024-02-27 07:00:54.691 2024-02-27 07:00:54.691 69300 TIP 440274 21014 6082468 2024-02-27 07:03:21.431 2024-02-27 07:03:21.431 300 FEE 440127 17602 6082469 2024-02-27 07:03:21.431 2024-02-27 07:03:21.431 2700 TIP 440127 15213 6082483 2024-02-27 07:04:08.545 2024-02-27 07:04:08.545 1000 FEE 440284 21446 6082486 2024-02-27 07:04:40.533 2024-02-27 07:04:40.533 36000 FEE 440254 7389 6082487 2024-02-27 07:04:40.533 2024-02-27 07:04:40.533 324000 TIP 440254 19570 6082353 2024-02-27 06:40:54.535 2024-02-27 06:40:54.535 1000 FEE 440056 20597 6082354 2024-02-27 06:40:54.535 2024-02-27 06:40:54.535 9000 TIP 440056 1814 6082363 2024-02-27 06:42:50.799 2024-02-27 06:42:50.799 1000 FEE 440276 21136 6082461 2024-02-27 07:02:55.782 2024-02-27 07:02:55.782 1000 FEE 440282 1658 6082478 2024-02-27 07:03:32.023 2024-02-27 07:03:32.023 2100 FEE 439917 14255 6082479 2024-02-27 07:03:32.023 2024-02-27 07:03:32.023 18900 TIP 439917 4474 6082501 2024-02-27 07:07:27.887 2024-02-27 07:07:27.887 800 FEE 440229 18310 6082502 2024-02-27 07:07:27.887 2024-02-27 07:07:27.887 7200 TIP 440229 12291 6082511 2024-02-27 07:08:57.395 2024-02-27 07:08:57.395 1000 FEE 440286 14278 6082557 2024-02-27 07:23:43.133 2024-02-27 07:23:43.133 1000 FEE 440294 2293 6082582 2024-02-27 07:32:28.967 2024-02-27 07:32:28.967 2100 FEE 439865 19036 6082583 2024-02-27 07:32:28.967 2024-02-27 07:32:28.967 18900 TIP 439865 4027 6082597 2024-02-27 07:37:27.374 2024-02-27 07:37:27.374 2100 FEE 440272 1286 6082598 2024-02-27 07:37:27.374 2024-02-27 07:37:27.374 18900 TIP 440272 19785 6082634 2024-02-27 07:44:41.377 2024-02-27 07:44:41.377 1000 FEE 440305 2029 6082646 2024-02-27 07:47:39.141 2024-02-27 07:47:39.141 500 FEE 440242 19446 6082647 2024-02-27 07:47:39.141 2024-02-27 07:47:39.141 4500 TIP 440242 19537 6082656 2024-02-27 07:49:02.937 2024-02-27 07:49:02.937 2100 FEE 440267 1584 6082657 2024-02-27 07:49:02.937 2024-02-27 07:49:02.937 18900 TIP 440267 20775 6082692 2024-02-27 08:02:34.321 2024-02-27 08:02:34.321 1000 FEE 440316 20287 6082694 2024-02-27 08:03:04.531 2024-02-27 08:03:04.531 1000 FEE 440317 20439 6082710 2024-02-27 08:08:19.319 2024-02-27 08:08:19.319 2100 FEE 439917 21222 6082711 2024-02-27 08:08:19.319 2024-02-27 08:08:19.319 18900 TIP 439917 15159 6082721 2024-02-27 08:09:04.117 2024-02-27 08:09:04.117 2100 FEE 439295 994 6082722 2024-02-27 08:09:04.117 2024-02-27 08:09:04.117 18900 TIP 439295 19759 6082733 2024-02-27 08:10:38.186 2024-02-27 08:10:38.186 0 FEE 440320 21079 6082737 2024-02-27 08:12:58.432 2024-02-27 08:12:58.432 1000 FEE 440322 13217 6082747 2024-02-27 08:17:16.114 2024-02-27 08:17:16.114 100000 FEE 440323 6041 6082754 2024-02-27 08:19:58.248 2024-02-27 08:19:58.248 2100 FEE 440239 6003 6082755 2024-02-27 08:19:58.248 2024-02-27 08:19:58.248 18900 TIP 440239 20340 6082757 2024-02-27 08:20:06.424 2024-02-27 08:20:06.424 3000 FEE 440321 21332 6082758 2024-02-27 08:20:06.424 2024-02-27 08:20:06.424 27000 TIP 440321 21166 6082760 2024-02-27 08:21:11.56 2024-02-27 08:21:11.56 1000 FEE 440324 1047 6082790 2024-02-27 08:33:19.33 2024-02-27 08:33:19.33 1000 FEE 440330 19154 6082826 2024-02-27 08:49:41.671 2024-02-27 08:49:41.671 2100 FEE 440309 21263 6082827 2024-02-27 08:49:41.671 2024-02-27 08:49:41.671 18900 TIP 440309 21320 6082849 2024-02-27 08:55:09.882 2024-02-27 08:55:09.882 500 FEE 440172 644 6082394 2024-02-27 06:45:02.288 2024-02-27 06:45:02.288 1000 STREAM 141924 19463 6082400 2024-02-27 06:47:02.294 2024-02-27 06:47:02.294 1000 STREAM 141924 2710 6082408 2024-02-27 06:48:02.283 2024-02-27 06:48:02.283 1000 STREAM 141924 6741 6082427 2024-02-27 06:54:02.309 2024-02-27 06:54:02.309 1000 STREAM 141924 13781 6082428 2024-02-27 06:55:02.323 2024-02-27 06:55:02.323 1000 STREAM 141924 18392 6082430 2024-02-27 06:56:02.319 2024-02-27 06:56:02.319 1000 STREAM 141924 8376 6082432 2024-02-27 06:57:02.377 2024-02-27 06:57:02.377 1000 STREAM 141924 14688 6082437 2024-02-27 06:59:02.311 2024-02-27 06:59:02.311 1000 STREAM 141924 21589 6082449 2024-02-27 07:01:02.406 2024-02-27 07:01:02.406 1000 STREAM 141924 15858 6082512 2024-02-27 07:09:02.382 2024-02-27 07:09:02.382 1000 STREAM 141924 17638 6082518 2024-02-27 07:10:02.385 2024-02-27 07:10:02.385 1000 STREAM 141924 18265 6082528 2024-02-27 07:15:02.419 2024-02-27 07:15:02.419 1000 STREAM 141924 1673 6082550 2024-02-27 07:21:02.417 2024-02-27 07:21:02.417 1000 STREAM 141924 19103 6082555 2024-02-27 07:23:02.423 2024-02-27 07:23:02.423 1000 STREAM 141924 11938 6082442 2024-02-27 07:00:27.112 2024-02-27 07:00:27.112 69300 TIP 440230 7654 6082445 2024-02-27 07:00:27.547 2024-02-27 07:00:27.547 7700 FEE 440230 18832 6082446 2024-02-27 07:00:27.547 2024-02-27 07:00:27.547 69300 TIP 440230 756 6082470 2024-02-27 07:03:21.592 2024-02-27 07:03:21.592 300 FEE 440127 12024 6082471 2024-02-27 07:03:21.592 2024-02-27 07:03:21.592 2700 TIP 440127 1814 6082476 2024-02-27 07:03:23.195 2024-02-27 07:03:23.195 300 FEE 440127 10063 6082477 2024-02-27 07:03:23.195 2024-02-27 07:03:23.195 2700 TIP 440127 5160 6082513 2024-02-27 07:09:29.559 2024-02-27 07:09:29.559 5000 FEE 440015 11288 6082514 2024-02-27 07:09:29.559 2024-02-27 07:09:29.559 45000 TIP 440015 20546 6082535 2024-02-27 07:16:50.261 2024-02-27 07:16:50.261 800 FEE 440229 9184 6082536 2024-02-27 07:16:50.261 2024-02-27 07:16:50.261 7200 TIP 440229 18877 6082558 2024-02-27 07:23:49.561 2024-02-27 07:23:49.561 0 FEE 383547 690 6082578 2024-02-27 07:31:27.615 2024-02-27 07:31:27.615 1000 FEE 440300 20577 6082580 2024-02-27 07:32:20.744 2024-02-27 07:32:20.744 5000 FEE 439832 8168 6082581 2024-02-27 07:32:20.744 2024-02-27 07:32:20.744 45000 TIP 439832 18231 6082609 2024-02-27 07:37:55.201 2024-02-27 07:37:55.201 2100 FEE 440229 11829 6082454 2024-02-27 07:02:02.676 2024-02-27 07:02:02.676 1000 STREAM 141924 5761 6082488 2024-02-27 07:05:02.675 2024-02-27 07:05:02.675 1000 STREAM 141924 13133 6082491 2024-02-27 07:06:02.678 2024-02-27 07:06:02.678 1000 STREAM 141924 18378 6082520 2024-02-27 07:11:02.717 2024-02-27 07:11:02.717 1000 STREAM 141924 620 6082492 2024-02-27 07:07:01.775 2024-02-27 07:07:01.775 2100 FEE 440042 15100 6082493 2024-02-27 07:07:01.775 2024-02-27 07:07:01.775 18900 TIP 440042 688 6082517 2024-02-27 07:09:56.922 2024-02-27 07:09:56.922 1000 FEE 440287 2061 6082568 2024-02-27 07:28:14.594 2024-02-27 07:28:14.594 1000 FEE 440297 20701 6082591 2024-02-27 07:36:58.062 2024-02-27 07:36:58.062 2100 FEE 440241 4322 6082592 2024-02-27 07:36:58.062 2024-02-27 07:36:58.062 18900 TIP 440241 9992 6082603 2024-02-27 07:37:41.397 2024-02-27 07:37:41.397 2100 FEE 440257 8569 6082604 2024-02-27 07:37:41.397 2024-02-27 07:37:41.397 18900 TIP 440257 797 6082623 2024-02-27 07:43:57.628 2024-02-27 07:43:57.628 500 FEE 440087 2596 6082624 2024-02-27 07:43:57.628 2024-02-27 07:43:57.628 4500 TIP 440087 2322 6082672 2024-02-27 07:55:20.186 2024-02-27 07:55:20.186 2100 FEE 440303 9843 6082673 2024-02-27 07:55:20.186 2024-02-27 07:55:20.186 18900 TIP 440303 20337 6082697 2024-02-27 08:06:02.43 2024-02-27 08:06:02.43 1000 FEE 440318 16706 6082699 2024-02-27 08:06:05.441 2024-02-27 08:06:05.441 700 FEE 440132 18500 6082700 2024-02-27 08:06:05.441 2024-02-27 08:06:05.441 6300 TIP 440132 20182 6082732 2024-02-27 08:10:05.61 2024-02-27 08:10:05.61 1000 FEE 440320 18241 6082742 2024-02-27 08:16:17.572 2024-02-27 08:16:17.572 2100 FEE 440312 8945 6082743 2024-02-27 08:16:17.572 2024-02-27 08:16:17.572 18900 TIP 440312 1626 6082767 2024-02-27 08:21:23.758 2024-02-27 08:21:23.758 12800 FEE 440292 19941 6082768 2024-02-27 08:21:23.758 2024-02-27 08:21:23.758 115200 TIP 440292 9378 6082824 2024-02-27 08:49:33.709 2024-02-27 08:49:33.709 2100 FEE 440292 21389 6082825 2024-02-27 08:49:33.709 2024-02-27 08:49:33.709 18900 TIP 440292 994 6082885 2024-02-27 08:55:16.091 2024-02-27 08:55:16.091 500 FEE 440172 6717 6082886 2024-02-27 08:55:16.091 2024-02-27 08:55:16.091 4500 TIP 440172 16149 6082909 2024-02-27 08:55:17.84 2024-02-27 08:55:17.84 500 FEE 440172 20924 6082910 2024-02-27 08:55:17.84 2024-02-27 08:55:17.84 4500 TIP 440172 16816 6082917 2024-02-27 08:55:18.578 2024-02-27 08:55:18.578 500 FEE 440172 20084 6082918 2024-02-27 08:55:18.578 2024-02-27 08:55:18.578 4500 TIP 440172 16387 6082925 2024-02-27 08:55:31.537 2024-02-27 08:55:31.537 500 FEE 440200 994 6082926 2024-02-27 08:55:31.537 2024-02-27 08:55:31.537 4500 TIP 440200 8037 6082959 2024-02-27 08:55:35.285 2024-02-27 08:55:35.285 500 FEE 440200 14074 6082960 2024-02-27 08:55:35.285 2024-02-27 08:55:35.285 4500 TIP 440200 20251 6083003 2024-02-27 08:57:55.671 2024-02-27 08:57:55.671 800 FEE 440167 20619 6083004 2024-02-27 08:57:55.671 2024-02-27 08:57:55.671 7200 TIP 440167 1175 6083019 2024-02-27 09:04:35.311 2024-02-27 09:04:35.311 21000 FEE 440340 20470 6083065 2024-02-27 09:22:33.542 2024-02-27 09:22:33.542 0 FEE 61082 1564 6083073 2024-02-27 09:23:12.13 2024-02-27 09:23:12.13 100000 FEE 440351 19034 6083074 2024-02-27 09:23:18.14 2024-02-27 09:23:18.14 100 FEE 440350 14785 6083075 2024-02-27 09:23:18.14 2024-02-27 09:23:18.14 900 TIP 440350 9366 6083085 2024-02-27 09:25:31.424 2024-02-27 09:25:31.424 100 FEE 439946 1490 6083086 2024-02-27 09:25:31.424 2024-02-27 09:25:31.424 900 TIP 439946 14074 6083123 2024-02-27 09:32:06.766 2024-02-27 09:32:06.766 1000 FEE 440364 10554 6083124 2024-02-27 09:32:16.18 2024-02-27 09:32:16.18 800 FEE 440139 1650 6083125 2024-02-27 09:32:16.18 2024-02-27 09:32:16.18 7200 TIP 440139 19890 6083132 2024-02-27 09:35:04.701 2024-02-27 09:35:04.701 1000 FEE 440368 9982 6083135 2024-02-27 09:35:34.172 2024-02-27 09:35:34.172 1000 FEE 440369 19929 6083169 2024-02-27 09:48:45.296 2024-02-27 09:48:45.296 1000 FEE 440376 876 6083196 2024-02-27 09:54:48.944 2024-02-27 09:54:48.944 6900 FEE 439795 20454 6083197 2024-02-27 09:54:48.944 2024-02-27 09:54:48.944 62100 TIP 439795 2042 6083202 2024-02-27 09:55:19.003 2024-02-27 09:55:19.003 6900 FEE 439815 1800 6083203 2024-02-27 09:55:19.003 2024-02-27 09:55:19.003 62100 TIP 439815 16680 6083217 2024-02-27 09:57:49.438 2024-02-27 09:57:49.438 2100 FEE 440344 19087 6083218 2024-02-27 09:57:49.438 2024-02-27 09:57:49.438 18900 TIP 440344 2703 6083231 2024-02-27 10:01:05.679 2024-02-27 10:01:05.679 100 FEE 440359 1046 6083232 2024-02-27 10:01:05.679 2024-02-27 10:01:05.679 900 TIP 440359 1145 6083233 2024-02-27 10:01:07.423 2024-02-27 10:01:07.423 100 FEE 440359 18526 6083234 2024-02-27 10:01:07.423 2024-02-27 10:01:07.423 900 TIP 440359 9863 6083239 2024-02-27 10:01:08.815 2024-02-27 10:01:08.815 100 FEE 440363 19854 6083240 2024-02-27 10:01:08.815 2024-02-27 10:01:08.815 900 TIP 440363 19906 6083262 2024-02-27 10:05:13.58 2024-02-27 10:05:13.58 0 FEE 440387 18704 6083297 2024-02-27 10:13:19.265 2024-02-27 10:13:19.265 800 FEE 440204 18608 6083298 2024-02-27 10:13:19.265 2024-02-27 10:13:19.265 7200 TIP 440204 4474 6083299 2024-02-27 10:13:28.194 2024-02-27 10:13:28.194 800 FEE 440162 21417 6083300 2024-02-27 10:13:28.194 2024-02-27 10:13:28.194 7200 TIP 440162 7553 6083308 2024-02-27 10:15:43.41 2024-02-27 10:15:43.41 2100 FEE 440387 13547 6083309 2024-02-27 10:15:43.41 2024-02-27 10:15:43.41 18900 TIP 440387 14795 6083323 2024-02-27 10:17:40.808 2024-02-27 10:17:40.808 1000 FEE 440397 8954 6083369 2024-02-27 10:33:19.451 2024-02-27 10:33:19.451 1000 FEE 440404 8648 6083370 2024-02-27 10:33:19.451 2024-02-27 10:33:19.451 9000 TIP 440404 10311 6083411 2024-02-27 10:47:27.406 2024-02-27 10:47:27.406 2100 FEE 440380 19980 6083412 2024-02-27 10:47:27.406 2024-02-27 10:47:27.406 18900 TIP 440380 10979 6083434 2024-02-27 10:54:31.321 2024-02-27 10:54:31.321 0 FEE 440416 9796 6083517 2024-02-27 11:11:06.325 2024-02-27 11:11:06.325 100 FEE 440428 11450 6083518 2024-02-27 11:11:06.325 2024-02-27 11:11:06.325 900 TIP 440428 5865 6083529 2024-02-27 11:11:43.884 2024-02-27 11:11:43.884 1000 FEE 440440 3518 6083549 2024-02-27 11:14:23.834 2024-02-27 11:14:23.834 100 FEE 440423 13100 6083550 2024-02-27 11:14:23.834 2024-02-27 11:14:23.834 900 TIP 440423 2525 6083567 2024-02-27 11:17:58.652 2024-02-27 11:17:58.652 1000 FEE 440454 5942 6083574 2024-02-27 11:19:42.941 2024-02-27 11:19:42.941 0 FEE 440454 1236 6083604 2024-02-27 11:23:39.72 2024-02-27 11:23:39.72 4000 FEE 440386 13759 6083605 2024-02-27 11:23:39.72 2024-02-27 11:23:39.72 36000 TIP 440386 2204 6083626 2024-02-27 11:25:41.804 2024-02-27 11:25:41.804 2100 FEE 440321 21455 6083627 2024-02-27 11:25:41.804 2024-02-27 11:25:41.804 18900 TIP 440321 5557 6083644 2024-02-27 11:26:29.353 2024-02-27 11:26:29.353 0 FEE 440456 20327 6083649 2024-02-27 11:26:45.251 2024-02-27 11:26:45.251 0 FEE 440456 20840 6083650 2024-02-27 11:26:47.643 2024-02-27 11:26:47.643 2000 FEE 440338 9517 6083651 2024-02-27 11:26:47.643 2024-02-27 11:26:47.643 18000 TIP 440338 2709 6083667 2024-02-27 11:28:04.462 2024-02-27 11:28:04.462 100 FEE 440457 12356 6083668 2024-02-27 11:28:04.462 2024-02-27 11:28:04.462 900 TIP 440457 1428 6083677 2024-02-27 11:28:41.587 2024-02-27 11:28:41.587 1000 FEE 440132 10342 6083678 2024-02-27 11:28:41.587 2024-02-27 11:28:41.587 9000 TIP 440132 19016 6083691 2024-02-27 11:30:22.638 2024-02-27 11:30:22.638 0 FEE 440460 7966 6083694 2024-02-27 11:30:39.346 2024-02-27 11:30:39.346 1000 FEE 440464 15762 6083707 2024-02-27 11:32:40.444 2024-02-27 11:32:40.444 10000 FEE 440467 4128 6082540 2024-02-27 07:16:50.583 2024-02-27 07:16:50.583 7200 TIP 440229 15491 6082544 2024-02-27 07:17:42.787 2024-02-27 07:17:42.787 1000 FEE 440291 12102 6082554 2024-02-27 07:22:10.698 2024-02-27 07:22:10.698 21000 FEE 440292 1800 6082573 2024-02-27 07:29:43.14 2024-02-27 07:29:43.14 2100 FEE 440288 3417 6082574 2024-02-27 07:29:43.14 2024-02-27 07:29:43.14 18900 TIP 440288 21437 6082599 2024-02-27 07:37:31.358 2024-02-27 07:37:31.358 2100 FEE 440266 8287 6082600 2024-02-27 07:37:31.358 2024-02-27 07:37:31.358 18900 TIP 440266 925 6082618 2024-02-27 07:41:39.671 2024-02-27 07:41:39.671 1000 FEE 440304 14169 6082626 2024-02-27 07:44:16.617 2024-02-27 07:44:16.617 500 FEE 440203 21332 6082627 2024-02-27 07:44:16.617 2024-02-27 07:44:16.617 4500 TIP 440203 9307 6082644 2024-02-27 07:47:38.98 2024-02-27 07:47:38.98 500 FEE 440242 16097 6082645 2024-02-27 07:47:38.98 2024-02-27 07:47:38.98 4500 TIP 440242 1620 6082689 2024-02-27 08:01:24.966 2024-02-27 08:01:24.966 10100 FEE 440288 11417 6082690 2024-02-27 08:01:24.966 2024-02-27 08:01:24.966 90900 TIP 440288 19981 6082714 2024-02-27 08:08:34.11 2024-02-27 08:08:34.11 2100 FEE 440208 886 6082715 2024-02-27 08:08:34.11 2024-02-27 08:08:34.11 18900 TIP 440208 1549 6082727 2024-02-27 08:09:39.319 2024-02-27 08:09:39.319 700 FEE 440094 18557 6082728 2024-02-27 08:09:39.319 2024-02-27 08:09:39.319 6300 TIP 440094 9438 6082809 2024-02-27 08:41:41.934 2024-02-27 08:41:41.934 1000 FEE 440308 5112 6082810 2024-02-27 08:41:41.934 2024-02-27 08:41:41.934 9000 TIP 440308 2620 6082828 2024-02-27 08:50:03.468 2024-02-27 08:50:03.468 2100 FEE 440321 21214 6082545 2024-02-27 07:18:02.799 2024-02-27 07:18:02.799 1000 STREAM 141924 20715 6082565 2024-02-27 07:26:02.899 2024-02-27 07:26:02.899 1000 STREAM 141924 21469 6082566 2024-02-27 07:27:02.919 2024-02-27 07:27:02.919 1000 STREAM 141924 15336 6082575 2024-02-27 07:30:02.964 2024-02-27 07:30:02.964 1000 STREAM 141924 12483 6082579 2024-02-27 07:32:02.987 2024-02-27 07:32:02.987 1000 STREAM 141924 12606 6082586 2024-02-27 07:33:03.003 2024-02-27 07:33:03.003 1000 STREAM 141924 19292 6082593 2024-02-27 07:37:03.052 2024-02-27 07:37:03.052 1000 STREAM 141924 20246 6082616 2024-02-27 07:41:03.115 2024-02-27 07:41:03.115 1000 STREAM 141924 20433 6082610 2024-02-27 07:37:55.201 2024-02-27 07:37:55.201 18900 TIP 440229 20280 6082621 2024-02-27 07:43:57.338 2024-02-27 07:43:57.338 500 FEE 440087 18658 6082622 2024-02-27 07:43:57.338 2024-02-27 07:43:57.338 4500 TIP 440087 21412 6082653 2024-02-27 07:48:47.016 2024-02-27 07:48:47.016 7800 FEE 440256 763 6082654 2024-02-27 07:48:47.016 2024-02-27 07:48:47.016 70200 TIP 440256 7125 6082661 2024-02-27 07:50:18.967 2024-02-27 07:50:18.967 5000 FEE 440211 814 6082662 2024-02-27 07:50:18.967 2024-02-27 07:50:18.967 45000 TIP 440211 9026 6082701 2024-02-27 08:06:05.607 2024-02-27 08:06:05.607 700 FEE 440132 17172 6082702 2024-02-27 08:06:05.607 2024-02-27 08:06:05.607 6300 TIP 440132 9705 6082723 2024-02-27 08:09:10.928 2024-02-27 08:09:10.928 2100 FEE 440004 21070 6082724 2024-02-27 08:09:10.928 2024-02-27 08:09:10.928 18900 TIP 440004 17041 6082748 2024-02-27 08:17:40.665 2024-02-27 08:17:40.665 1000 FEE 440026 836 6082749 2024-02-27 08:17:40.665 2024-02-27 08:17:40.665 9000 TIP 440026 19570 6082770 2024-02-27 08:22:43.281 2024-02-27 08:22:43.281 1000 FEE 440325 16816 6082777 2024-02-27 08:25:47.653 2024-02-27 08:25:47.653 1000 FEE 440327 1733 6082794 2024-02-27 08:36:41.214 2024-02-27 08:36:41.214 1000 FEE 440331 16505 6082799 2024-02-27 08:39:46.163 2024-02-27 08:39:46.163 21000 FEE 440333 21303 6082814 2024-02-27 08:42:53.564 2024-02-27 08:42:53.564 21000 DONT_LIKE_THIS 440317 16680 6082839 2024-02-27 08:55:01.439 2024-02-27 08:55:01.439 1600 FEE 440262 7674 6082840 2024-02-27 08:55:01.439 2024-02-27 08:55:01.439 14400 TIP 440262 704 6082847 2024-02-27 08:55:09.704 2024-02-27 08:55:09.704 500 FEE 440172 8569 6082848 2024-02-27 08:55:09.704 2024-02-27 08:55:09.704 4500 TIP 440172 17519 6082851 2024-02-27 08:55:10.055 2024-02-27 08:55:10.055 500 FEE 440172 2942 6082852 2024-02-27 08:55:10.055 2024-02-27 08:55:10.055 4500 TIP 440172 17316 6082853 2024-02-27 08:55:10.236 2024-02-27 08:55:10.236 500 FEE 440172 780 6082854 2024-02-27 08:55:10.236 2024-02-27 08:55:10.236 4500 TIP 440172 11145 6082855 2024-02-27 08:55:10.443 2024-02-27 08:55:10.443 500 FEE 440172 17046 6082856 2024-02-27 08:55:10.443 2024-02-27 08:55:10.443 4500 TIP 440172 19105 6082863 2024-02-27 08:55:11.181 2024-02-27 08:55:11.181 500 FEE 440172 20084 6082864 2024-02-27 08:55:11.181 2024-02-27 08:55:11.181 4500 TIP 440172 19557 6082887 2024-02-27 08:55:16.221 2024-02-27 08:55:16.221 500 FEE 440172 1632 6082888 2024-02-27 08:55:16.221 2024-02-27 08:55:16.221 4500 TIP 440172 11145 6082895 2024-02-27 08:55:16.817 2024-02-27 08:55:16.817 500 FEE 440172 20156 6082896 2024-02-27 08:55:16.817 2024-02-27 08:55:16.817 4500 TIP 440172 18270 6082897 2024-02-27 08:55:16.958 2024-02-27 08:55:16.958 500 FEE 440172 20817 6082898 2024-02-27 08:55:16.958 2024-02-27 08:55:16.958 4500 TIP 440172 19553 6082911 2024-02-27 08:55:17.978 2024-02-27 08:55:17.978 500 FEE 440172 20854 6082912 2024-02-27 08:55:17.978 2024-02-27 08:55:17.978 4500 TIP 440172 19502 6082913 2024-02-27 08:55:18.146 2024-02-27 08:55:18.146 500 FEE 440172 20776 6082914 2024-02-27 08:55:18.146 2024-02-27 08:55:18.146 4500 TIP 440172 13599 6082915 2024-02-27 08:55:18.3 2024-02-27 08:55:18.3 500 FEE 440172 19449 6082916 2024-02-27 08:55:18.3 2024-02-27 08:55:18.3 4500 TIP 440172 6030 6082921 2024-02-27 08:55:18.978 2024-02-27 08:55:18.978 500 FEE 440172 20198 6082922 2024-02-27 08:55:18.978 2024-02-27 08:55:18.978 4500 TIP 440172 14271 6082933 2024-02-27 08:55:32.251 2024-02-27 08:55:32.251 500 FEE 440200 9611 6082934 2024-02-27 08:55:32.251 2024-02-27 08:55:32.251 4500 TIP 440200 12222 6082935 2024-02-27 08:55:32.413 2024-02-27 08:55:32.413 500 FEE 440200 19153 6082936 2024-02-27 08:55:32.413 2024-02-27 08:55:32.413 4500 TIP 440200 11821 6082941 2024-02-27 08:55:33.03 2024-02-27 08:55:33.03 500 FEE 440200 6616 6082942 2024-02-27 08:55:33.03 2024-02-27 08:55:33.03 4500 TIP 440200 5003 6082943 2024-02-27 08:55:33.171 2024-02-27 08:55:33.171 500 FEE 440200 21527 6082944 2024-02-27 08:55:33.171 2024-02-27 08:55:33.171 4500 TIP 440200 17522 6082945 2024-02-27 08:55:33.34 2024-02-27 08:55:33.34 500 FEE 440200 17727 6082946 2024-02-27 08:55:33.34 2024-02-27 08:55:33.34 4500 TIP 440200 7389 6082947 2024-02-27 08:55:33.481 2024-02-27 08:55:33.481 500 FEE 440200 16653 6082948 2024-02-27 08:55:33.481 2024-02-27 08:55:33.481 4500 TIP 440200 20509 6082965 2024-02-27 08:55:45.232 2024-02-27 08:55:45.232 500 FEE 440291 13132 6082966 2024-02-27 08:55:45.232 2024-02-27 08:55:45.232 4500 TIP 440291 686 6082991 2024-02-27 08:55:55.634 2024-02-27 08:55:55.634 500 FEE 440086 1632 6082992 2024-02-27 08:55:55.634 2024-02-27 08:55:55.634 4500 TIP 440086 12222 6083045 2024-02-27 09:13:08.595 2024-02-27 09:13:08.595 1000 FEE 440208 21138 6083046 2024-02-27 09:13:08.595 2024-02-27 09:13:08.595 9000 TIP 440208 8284 6083071 2024-02-27 09:23:05.338 2024-02-27 09:23:05.338 100 FEE 440333 4083 6083072 2024-02-27 09:23:05.338 2024-02-27 09:23:05.338 900 TIP 440333 8472 6083121 2024-02-27 09:31:53.989 2024-02-27 09:31:53.989 1000 FEE 440363 696 6083148 2024-02-27 09:41:10.104 2024-02-27 09:41:10.104 2100 FEE 440371 981 6083149 2024-02-27 09:41:10.104 2024-02-27 09:41:10.104 18900 TIP 440371 17722 6083173 2024-02-27 09:49:56.895 2024-02-27 09:49:56.895 100 FEE 440363 20152 6083174 2024-02-27 09:49:56.895 2024-02-27 09:49:56.895 900 TIP 440363 2233 6083185 2024-02-27 09:53:23.243 2024-02-27 09:53:23.243 1000 FEE 440377 19193 6083186 2024-02-27 09:53:23.243 2024-02-27 09:53:23.243 9000 TIP 440377 20871 6083195 2024-02-27 09:54:45.473 2024-02-27 09:54:45.473 1000 FEE 440380 1740 6083205 2024-02-27 09:55:39.391 2024-02-27 09:55:39.391 1000 FEE 440383 3409 6083206 2024-02-27 09:55:44.239 2024-02-27 09:55:44.239 2100 FEE 440369 20218 6083207 2024-02-27 09:55:44.239 2024-02-27 09:55:44.239 18900 TIP 440369 20243 6083211 2024-02-27 09:56:22 2024-02-27 09:56:22 1000 FEE 440384 16042 6083219 2024-02-27 09:57:55.546 2024-02-27 09:57:55.546 100 FEE 440365 19929 6083220 2024-02-27 09:57:55.546 2024-02-27 09:57:55.546 900 TIP 440365 16456 6083246 2024-02-27 10:02:04.271 2024-02-27 10:02:04.271 2100 FEE 440362 679 6083247 2024-02-27 10:02:04.271 2024-02-27 10:02:04.271 18900 TIP 440362 18403 6083256 2024-02-27 10:04:21.77 2024-02-27 10:04:21.77 2100 FEE 439800 19126 6083257 2024-02-27 10:04:21.77 2024-02-27 10:04:21.77 18900 TIP 439800 20687 6083277 2024-02-27 10:07:38.073 2024-02-27 10:07:38.073 1000 FEE 440389 2123 6083302 2024-02-27 10:14:24.939 2024-02-27 10:14:24.939 1600 FEE 440382 17568 6083303 2024-02-27 10:14:24.939 2024-02-27 10:14:24.939 14400 TIP 440382 15890 6083320 2024-02-27 10:17:16.271 2024-02-27 10:17:16.271 1000 FEE 440396 7583 6083330 2024-02-27 10:18:08.564 2024-02-27 10:18:08.564 200 FEE 440396 16341 6083331 2024-02-27 10:18:08.564 2024-02-27 10:18:08.564 1800 TIP 440396 20837 6083338 2024-02-27 10:19:27.338 2024-02-27 10:19:27.338 1000 FEE 440400 11678 6083342 2024-02-27 10:20:12.098 2024-02-27 10:20:12.098 500 FEE 440397 19198 6083343 2024-02-27 10:20:12.098 2024-02-27 10:20:12.098 4500 TIP 440397 20143 6082625 2024-02-27 07:44:02.699 2024-02-27 07:44:02.699 1000 STREAM 141924 4079 6082639 2024-02-27 07:46:02.695 2024-02-27 07:46:02.695 1000 STREAM 141924 16177 6082643 2024-02-27 07:47:02.714 2024-02-27 07:47:02.714 1000 STREAM 141924 18116 6082683 2024-02-27 08:00:03.146 2024-02-27 08:00:03.146 1000 STREAM 141924 15271 6082635 2024-02-27 07:45:02.693 2024-02-27 07:45:02.693 1000 STREAM 141924 1010 6082648 2024-02-27 07:48:03.548 2024-02-27 07:48:03.548 1000 STREAM 141924 20117 6082659 2024-02-27 07:50:03.242 2024-02-27 07:50:03.242 1000 STREAM 141924 16754 6082667 2024-02-27 07:54:03.211 2024-02-27 07:54:03.211 1000 STREAM 141924 3392 6082684 2024-02-27 08:01:03.306 2024-02-27 08:01:03.306 1000 STREAM 141924 20970 6082666 2024-02-27 07:53:03.197 2024-02-27 07:53:03.197 1000 STREAM 141924 9084 6082681 2024-02-27 07:58:03.208 2024-02-27 07:58:03.208 1000 STREAM 141924 21571 6082682 2024-02-27 07:59:03.218 2024-02-27 07:59:03.218 1000 STREAM 141924 5449 6082696 2024-02-27 08:05:03.252 2024-02-27 08:05:03.252 1000 STREAM 141924 15094 6082698 2024-02-27 08:06:03.255 2024-02-27 08:06:03.255 1000 STREAM 141924 21062 6082707 2024-02-27 08:07:03.26 2024-02-27 08:07:03.26 1000 STREAM 141924 19837 6082709 2024-02-27 08:08:03.269 2024-02-27 08:08:03.269 1000 STREAM 141924 13365 6082720 2024-02-27 08:09:03.274 2024-02-27 08:09:03.274 1000 STREAM 141924 21455 6082734 2024-02-27 08:11:03.305 2024-02-27 08:11:03.305 1000 STREAM 141924 628 6082739 2024-02-27 08:14:03.285 2024-02-27 08:14:03.285 1000 STREAM 141924 776 6082741 2024-02-27 08:16:03.298 2024-02-27 08:16:03.298 1000 STREAM 141924 15762 6082744 2024-02-27 08:17:03.299 2024-02-27 08:17:03.299 1000 STREAM 141924 10112 6082756 2024-02-27 08:20:03.365 2024-02-27 08:20:03.365 1000 STREAM 141924 11590 6082759 2024-02-27 08:21:03.366 2024-02-27 08:21:03.366 1000 STREAM 141924 19158 6082771 2024-02-27 08:23:03.338 2024-02-27 08:23:03.338 1000 STREAM 141924 15577 6082772 2024-02-27 08:24:03.333 2024-02-27 08:24:03.333 1000 STREAM 141924 20162 6082781 2024-02-27 08:27:03.338 2024-02-27 08:27:03.338 1000 STREAM 141924 17800 6082786 2024-02-27 08:31:03.349 2024-02-27 08:31:03.349 1000 STREAM 141924 9438 6082791 2024-02-27 08:34:03.368 2024-02-27 08:34:03.368 1000 STREAM 141924 976 6082795 2024-02-27 08:37:03.391 2024-02-27 08:37:03.391 1000 STREAM 141924 1490 6082796 2024-02-27 08:38:03.39 2024-02-27 08:38:03.39 1000 STREAM 141924 4415 6082798 2024-02-27 08:39:03.399 2024-02-27 08:39:03.399 1000 STREAM 141924 6149 6082800 2024-02-27 08:40:03.416 2024-02-27 08:40:03.416 1000 STREAM 141924 12516 6082802 2024-02-27 08:41:03.409 2024-02-27 08:41:03.409 1000 STREAM 141924 20782 6082811 2024-02-27 08:42:03.413 2024-02-27 08:42:03.413 1000 STREAM 141924 19664 6082818 2024-02-27 08:46:03.447 2024-02-27 08:46:03.447 1000 STREAM 141924 11561 6082822 2024-02-27 08:48:03.455 2024-02-27 08:48:03.455 1000 STREAM 141924 5759 6082823 2024-02-27 08:49:03.455 2024-02-27 08:49:03.455 1000 STREAM 141924 9921 6082830 2024-02-27 08:50:03.476 2024-02-27 08:50:03.476 1000 STREAM 141924 16301 6082831 2024-02-27 08:51:03.466 2024-02-27 08:51:03.466 1000 STREAM 141924 18311 6082841 2024-02-27 08:55:03.477 2024-02-27 08:55:03.477 1000 STREAM 141924 11164 6083000 2024-02-27 08:57:03.493 2024-02-27 08:57:03.493 1000 STREAM 141924 5557 6083005 2024-02-27 08:58:03.483 2024-02-27 08:58:03.483 1000 STREAM 141924 5597 6083010 2024-02-27 09:00:03.51 2024-02-27 09:00:03.51 1000 STREAM 141924 6499 6083016 2024-02-27 09:02:03.53 2024-02-27 09:02:03.53 1000 STREAM 141924 3400 6083017 2024-02-27 09:03:03.528 2024-02-27 09:03:03.528 1000 STREAM 141924 9438 6083020 2024-02-27 09:05:03.543 2024-02-27 09:05:03.543 1000 STREAM 141924 15703 6083022 2024-02-27 09:06:03.546 2024-02-27 09:06:03.546 1000 STREAM 141924 13042 6083024 2024-02-27 09:07:03.55 2024-02-27 09:07:03.55 1000 STREAM 141924 11999 6083028 2024-02-27 09:08:03.553 2024-02-27 09:08:03.553 1000 STREAM 141924 18618 6083029 2024-02-27 09:09:03.552 2024-02-27 09:09:03.552 1000 STREAM 141924 19118 6083034 2024-02-27 09:12:03.554 2024-02-27 09:12:03.554 1000 STREAM 141924 20198 6083038 2024-02-27 09:13:03.566 2024-02-27 09:13:03.566 1000 STREAM 141924 5828 6083047 2024-02-27 09:14:03.564 2024-02-27 09:14:03.564 1000 STREAM 141924 16670 6083053 2024-02-27 09:16:03.583 2024-02-27 09:16:03.583 1000 STREAM 141924 19524 6083054 2024-02-27 09:17:03.579 2024-02-27 09:17:03.579 1000 STREAM 141924 16356 6083060 2024-02-27 09:20:03.611 2024-02-27 09:20:03.611 1000 STREAM 141924 19864 6083082 2024-02-27 09:25:03.621 2024-02-27 09:25:03.621 1000 STREAM 141924 956 6083097 2024-02-27 09:27:03.642 2024-02-27 09:27:03.642 1000 STREAM 141924 4798 6083114 2024-02-27 09:31:03.643 2024-02-27 09:31:03.643 1000 STREAM 141924 11885 6083127 2024-02-27 09:33:03.689 2024-02-27 09:33:03.689 1000 STREAM 141924 20573 6083140 2024-02-27 09:37:03.665 2024-02-27 09:37:03.665 1000 STREAM 141924 954 6083224 2024-02-27 09:59:03.711 2024-02-27 09:59:03.711 1000 STREAM 141924 11609 6082677 2024-02-27 07:56:03.198 2024-02-27 07:56:03.198 1000 STREAM 141924 5865 6082679 2024-02-27 07:57:03.212 2024-02-27 07:57:03.212 1000 STREAM 141924 9353 6082691 2024-02-27 08:02:03.234 2024-02-27 08:02:03.234 1000 STREAM 141924 15180 6082693 2024-02-27 08:03:03.256 2024-02-27 08:03:03.256 1000 STREAM 141924 1836 6082695 2024-02-27 08:04:03.264 2024-02-27 08:04:03.264 1000 STREAM 141924 18306 6082731 2024-02-27 08:10:03.288 2024-02-27 08:10:03.288 1000 STREAM 141924 20924 6082735 2024-02-27 08:12:03.28 2024-02-27 08:12:03.28 1000 STREAM 141924 2711 6082738 2024-02-27 08:13:03.284 2024-02-27 08:13:03.284 1000 STREAM 141924 6160 6082740 2024-02-27 08:15:03.283 2024-02-27 08:15:03.283 1000 STREAM 141924 16348 6082750 2024-02-27 08:18:03.342 2024-02-27 08:18:03.342 1000 STREAM 141924 3979 6082753 2024-02-27 08:19:03.354 2024-02-27 08:19:03.354 1000 STREAM 141924 2963 6082769 2024-02-27 08:22:03.333 2024-02-27 08:22:03.333 1000 STREAM 141924 1208 6082773 2024-02-27 08:25:03.328 2024-02-27 08:25:03.328 1000 STREAM 141924 18209 6082779 2024-02-27 08:26:03.335 2024-02-27 08:26:03.335 1000 STREAM 141924 4415 6082783 2024-02-27 08:28:03.346 2024-02-27 08:28:03.346 1000 STREAM 141924 13132 6082784 2024-02-27 08:29:03.345 2024-02-27 08:29:03.345 1000 STREAM 141924 18877 6082785 2024-02-27 08:30:03.357 2024-02-27 08:30:03.357 1000 STREAM 141924 19796 6082788 2024-02-27 08:32:03.347 2024-02-27 08:32:03.347 1000 STREAM 141924 19193 6082789 2024-02-27 08:33:03.347 2024-02-27 08:33:03.347 1000 STREAM 141924 20198 6082792 2024-02-27 08:35:03.372 2024-02-27 08:35:03.372 1000 STREAM 141924 18412 6082793 2024-02-27 08:36:03.379 2024-02-27 08:36:03.379 1000 STREAM 141924 20837 6082815 2024-02-27 08:43:03.424 2024-02-27 08:43:03.424 1000 STREAM 141924 19458 6082816 2024-02-27 08:44:03.427 2024-02-27 08:44:03.427 1000 STREAM 141924 3979 6082817 2024-02-27 08:45:03.443 2024-02-27 08:45:03.443 1000 STREAM 141924 21416 6082821 2024-02-27 08:47:03.445 2024-02-27 08:47:03.445 1000 STREAM 141924 4048 6082832 2024-02-27 08:52:03.461 2024-02-27 08:52:03.461 1000 STREAM 141924 20683 6082835 2024-02-27 08:53:03.461 2024-02-27 08:53:03.461 1000 STREAM 141924 15139 6082836 2024-02-27 08:54:03.483 2024-02-27 08:54:03.483 1000 STREAM 141924 17011 6082999 2024-02-27 08:56:03.482 2024-02-27 08:56:03.482 1000 STREAM 141924 14774 6083007 2024-02-27 08:59:03.491 2024-02-27 08:59:03.491 1000 STREAM 141924 8168 6083011 2024-02-27 09:01:03.521 2024-02-27 09:01:03.521 1000 STREAM 141924 17095 6083018 2024-02-27 09:04:03.537 2024-02-27 09:04:03.537 1000 STREAM 141924 19446 6083030 2024-02-27 09:10:03.568 2024-02-27 09:10:03.568 1000 STREAM 141924 19126 6083032 2024-02-27 09:11:03.555 2024-02-27 09:11:03.555 1000 STREAM 141924 1426 6083049 2024-02-27 09:15:03.572 2024-02-27 09:15:03.572 1000 STREAM 141924 21155 6083055 2024-02-27 09:18:03.589 2024-02-27 09:18:03.589 1000 STREAM 141924 19417 6083061 2024-02-27 09:21:03.608 2024-02-27 09:21:03.608 1000 STREAM 141924 15560 6083064 2024-02-27 09:22:03.62 2024-02-27 09:22:03.62 1000 STREAM 141924 11240 6083070 2024-02-27 09:23:03.618 2024-02-27 09:23:03.618 1000 STREAM 141924 9350 6083076 2024-02-27 09:24:03.628 2024-02-27 09:24:03.628 1000 STREAM 141924 4083 6083092 2024-02-27 09:26:03.633 2024-02-27 09:26:03.633 1000 STREAM 141924 4166 6083102 2024-02-27 09:29:03.646 2024-02-27 09:29:03.646 1000 STREAM 141924 2513 6083108 2024-02-27 09:30:03.66 2024-02-27 09:30:03.66 1000 STREAM 141924 18265 6083122 2024-02-27 09:32:03.645 2024-02-27 09:32:03.645 1000 STREAM 141924 992 6083128 2024-02-27 09:34:03.655 2024-02-27 09:34:03.655 1000 STREAM 141924 5522 6083131 2024-02-27 09:35:03.661 2024-02-27 09:35:03.661 1000 STREAM 141924 20108 6082807 2024-02-27 08:41:40.266 2024-02-27 08:41:40.266 1000 FEE 440267 9354 6082808 2024-02-27 08:41:40.266 2024-02-27 08:41:40.266 9000 TIP 440267 14385 6082813 2024-02-27 08:42:48.96 2024-02-27 08:42:48.96 21000 DONT_LIKE_THIS 440325 2829 6082819 2024-02-27 08:46:24.84 2024-02-27 08:46:24.84 1000 FEE 439905 18525 6082820 2024-02-27 08:46:24.84 2024-02-27 08:46:24.84 9000 TIP 439905 3461 6082843 2024-02-27 08:55:09.317 2024-02-27 08:55:09.317 500 FEE 440172 14503 6082844 2024-02-27 08:55:09.317 2024-02-27 08:55:09.317 4500 TIP 440172 11590 6082845 2024-02-27 08:55:09.5 2024-02-27 08:55:09.5 500 FEE 440172 14688 6082846 2024-02-27 08:55:09.5 2024-02-27 08:55:09.5 4500 TIP 440172 4043 6082857 2024-02-27 08:55:10.611 2024-02-27 08:55:10.611 500 FEE 440172 19199 6082858 2024-02-27 08:55:10.611 2024-02-27 08:55:10.611 4500 TIP 440172 7119 6082859 2024-02-27 08:55:10.829 2024-02-27 08:55:10.829 500 FEE 440172 21214 6082860 2024-02-27 08:55:10.829 2024-02-27 08:55:10.829 4500 TIP 440172 5017 6082873 2024-02-27 08:55:12.001 2024-02-27 08:55:12.001 500 FEE 440172 6202 6082874 2024-02-27 08:55:12.001 2024-02-27 08:55:12.001 4500 TIP 440172 11240 6082901 2024-02-27 08:55:17.312 2024-02-27 08:55:17.312 500 FEE 440172 7185 6082902 2024-02-27 08:55:17.312 2024-02-27 08:55:17.312 4500 TIP 440172 19346 6082903 2024-02-27 08:55:17.388 2024-02-27 08:55:17.388 500 FEE 440172 8095 6082904 2024-02-27 08:55:17.388 2024-02-27 08:55:17.388 4500 TIP 440172 1552 6082923 2024-02-27 08:55:31.326 2024-02-27 08:55:31.326 500 FEE 440200 20129 6082924 2024-02-27 08:55:31.326 2024-02-27 08:55:31.326 4500 TIP 440200 21405 6082927 2024-02-27 08:55:31.721 2024-02-27 08:55:31.721 500 FEE 440200 17050 6082928 2024-02-27 08:55:31.721 2024-02-27 08:55:31.721 4500 TIP 440200 19378 6082957 2024-02-27 08:55:34.862 2024-02-27 08:55:34.862 500 FEE 440200 19576 6082958 2024-02-27 08:55:34.862 2024-02-27 08:55:34.862 4500 TIP 440200 18809 6082969 2024-02-27 08:55:45.863 2024-02-27 08:55:45.863 500 FEE 440291 20525 6082970 2024-02-27 08:55:45.863 2024-02-27 08:55:45.863 4500 TIP 440291 9183 6082971 2024-02-27 08:55:46.002 2024-02-27 08:55:46.002 500 FEE 440291 20581 6082972 2024-02-27 08:55:46.002 2024-02-27 08:55:46.002 4500 TIP 440291 11220 6082975 2024-02-27 08:55:46.349 2024-02-27 08:55:46.349 500 FEE 440291 17221 6082976 2024-02-27 08:55:46.349 2024-02-27 08:55:46.349 4500 TIP 440291 15536 6082983 2024-02-27 08:55:55.007 2024-02-27 08:55:55.007 500 FEE 440086 14950 6082984 2024-02-27 08:55:55.007 2024-02-27 08:55:55.007 4500 TIP 440086 21048 6082987 2024-02-27 08:55:55.334 2024-02-27 08:55:55.334 500 FEE 440086 12744 6082812 2024-02-27 08:42:44.412 2024-02-27 08:42:44.412 21000 DONT_LIKE_THIS 440334 15703 6082837 2024-02-27 08:54:59.81 2024-02-27 08:54:59.81 800 FEE 440122 19118 6082838 2024-02-27 08:54:59.81 2024-02-27 08:54:59.81 7200 TIP 440122 5387 6082861 2024-02-27 08:55:11.004 2024-02-27 08:55:11.004 500 FEE 440172 17592 6082862 2024-02-27 08:55:11.004 2024-02-27 08:55:11.004 4500 TIP 440172 21119 6082867 2024-02-27 08:55:11.497 2024-02-27 08:55:11.497 500 FEE 440172 18919 6082868 2024-02-27 08:55:11.497 2024-02-27 08:55:11.497 4500 TIP 440172 1180 6082871 2024-02-27 08:55:11.835 2024-02-27 08:55:11.835 500 FEE 440172 18828 6082872 2024-02-27 08:55:11.835 2024-02-27 08:55:11.835 4500 TIP 440172 12821 6082875 2024-02-27 08:55:12.182 2024-02-27 08:55:12.182 500 FEE 440172 2942 6082876 2024-02-27 08:55:12.182 2024-02-27 08:55:12.182 4500 TIP 440172 15367 6082883 2024-02-27 08:55:12.839 2024-02-27 08:55:12.839 500 FEE 440172 1713 6082884 2024-02-27 08:55:12.839 2024-02-27 08:55:12.839 4500 TIP 440172 20669 6082905 2024-02-27 08:55:17.532 2024-02-27 08:55:17.532 500 FEE 440172 15408 6082906 2024-02-27 08:55:17.532 2024-02-27 08:55:17.532 4500 TIP 440172 16988 6082937 2024-02-27 08:55:32.575 2024-02-27 08:55:32.575 500 FEE 440200 16052 6082938 2024-02-27 08:55:32.575 2024-02-27 08:55:32.575 4500 TIP 440200 16387 6082939 2024-02-27 08:55:32.866 2024-02-27 08:55:32.866 500 FEE 440200 18774 6082940 2024-02-27 08:55:32.866 2024-02-27 08:55:32.866 4500 TIP 440200 14225 6082967 2024-02-27 08:55:45.475 2024-02-27 08:55:45.475 500 FEE 440291 19507 6082968 2024-02-27 08:55:45.475 2024-02-27 08:55:45.475 4500 TIP 440291 20257 6082985 2024-02-27 08:55:55.167 2024-02-27 08:55:55.167 500 FEE 440086 894 6082986 2024-02-27 08:55:55.167 2024-02-27 08:55:55.167 4500 TIP 440086 19016 6083006 2024-02-27 08:58:03.833 2024-02-27 08:58:03.833 1000 FEE 440337 18774 6083012 2024-02-27 09:01:27.751 2024-02-27 09:01:27.751 21000 FEE 440338 11395 6083013 2024-02-27 09:01:43.676 2024-02-27 09:01:43.676 1000 FEE 440339 10862 6083035 2024-02-27 09:12:07.078 2024-02-27 09:12:07.078 1000 FEE 440346 6419 6083039 2024-02-27 09:13:07.171 2024-02-27 09:13:07.171 1000 FEE 440208 11018 6083040 2024-02-27 09:13:07.171 2024-02-27 09:13:07.171 9000 TIP 440208 21418 6083050 2024-02-27 09:15:17.984 2024-02-27 09:15:17.984 1000 FEE 440340 20987 6083051 2024-02-27 09:15:17.984 2024-02-27 09:15:17.984 9000 TIP 440340 5865 6083066 2024-02-27 09:22:35.107 2024-02-27 09:22:35.107 100 FEE 440350 17392 6083067 2024-02-27 09:22:35.107 2024-02-27 09:22:35.107 900 TIP 440350 9367 6083068 2024-02-27 09:22:50.413 2024-02-27 09:22:50.413 100 FEE 440344 19199 6083069 2024-02-27 09:22:50.413 2024-02-27 09:22:50.413 900 TIP 440344 14857 6083077 2024-02-27 09:24:23.786 2024-02-27 09:24:23.786 1000 FEE 440352 21352 6083079 2024-02-27 09:24:56.632 2024-02-27 09:24:56.632 1000 FEE 440354 9845 6083083 2024-02-27 09:25:19.825 2024-02-27 09:25:19.825 100 FEE 440241 21514 6083084 2024-02-27 09:25:19.825 2024-02-27 09:25:19.825 900 TIP 440241 13782 6083099 2024-02-27 09:28:30.207 2024-02-27 09:28:30.207 1000 FEE 440356 19863 6083136 2024-02-27 09:35:46.505 2024-02-27 09:35:46.505 3200 FEE 440357 18119 6083137 2024-02-27 09:35:46.505 2024-02-27 09:35:46.505 28800 TIP 440357 11885 6083150 2024-02-27 09:41:14.069 2024-02-27 09:41:14.069 1000 FEE 440346 19034 6083151 2024-02-27 09:41:14.069 2024-02-27 09:41:14.069 9000 TIP 440346 16769 6083155 2024-02-27 09:42:42.772 2024-02-27 09:42:42.772 1000 FEE 440372 13327 6083182 2024-02-27 09:52:59.361 2024-02-27 09:52:59.361 1000 FEE 440377 4692 6083241 2024-02-27 10:01:50.732 2024-02-27 10:01:50.732 1000 FEE 440386 21599 6083242 2024-02-27 10:01:50.732 2024-02-27 10:01:50.732 9000 TIP 440386 10818 6083292 2024-02-27 10:12:12.125 2024-02-27 10:12:12.125 2100 FEE 440344 20812 6083293 2024-02-27 10:12:12.125 2024-02-27 10:12:12.125 18900 TIP 440344 3409 6083305 2024-02-27 10:15:11.09 2024-02-27 10:15:11.09 1000 FEE 440393 4768 6083317 2024-02-27 10:16:39.665 2024-02-27 10:16:39.665 6900 FEE 439734 20353 6083318 2024-02-27 10:16:39.665 2024-02-27 10:16:39.665 62100 TIP 439734 21589 6083360 2024-02-27 10:28:39.731 2024-02-27 10:28:39.731 0 FEE 440404 21003 6083362 2024-02-27 10:29:46.495 2024-02-27 10:29:46.495 3000 FEE 440386 17514 6083363 2024-02-27 10:29:46.495 2024-02-27 10:29:46.495 27000 TIP 440386 16276 6083388 2024-02-27 10:41:53.334 2024-02-27 10:41:53.334 2000 FEE 440394 20781 6083389 2024-02-27 10:41:53.334 2024-02-27 10:41:53.334 18000 TIP 440394 21349 6083393 2024-02-27 10:43:19.965 2024-02-27 10:43:19.965 100000 FEE 440409 669 6083423 2024-02-27 10:51:22.399 2024-02-27 10:51:22.399 100 FEE 440099 21063 6083424 2024-02-27 10:51:22.399 2024-02-27 10:51:22.399 900 TIP 440099 19848 6083446 2024-02-27 10:56:46.249 2024-02-27 10:56:46.249 1000 FEE 440420 20264 6083454 2024-02-27 11:00:04.695 2024-02-27 11:00:04.695 100000 FEE 440423 19553 6083457 2024-02-27 11:00:23.37 2024-02-27 11:00:23.37 100000 FEE 440312 720 6083458 2024-02-27 11:00:23.37 2024-02-27 11:00:23.37 900000 TIP 440312 956 6083464 2024-02-27 11:02:27.823 2024-02-27 11:02:27.823 0 FEE 440425 2042 6083468 2024-02-27 11:03:36.883 2024-02-27 11:03:36.883 1600 FEE 440408 11443 6083469 2024-02-27 11:03:36.883 2024-02-27 11:03:36.883 14400 TIP 440408 2437 6083470 2024-02-27 11:03:56.414 2024-02-27 11:03:56.414 1000 FEE 440285 9336 6083471 2024-02-27 11:03:56.414 2024-02-27 11:03:56.414 9000 TIP 440285 13046 6083474 2024-02-27 11:05:53.525 2024-02-27 11:05:53.525 1000 FEE 440428 6688 6083487 2024-02-27 11:07:17.552 2024-02-27 11:07:17.552 100 FEE 440406 8541 6083488 2024-02-27 11:07:17.552 2024-02-27 11:07:17.552 900 TIP 440406 21079 6083496 2024-02-27 11:09:08.56 2024-02-27 11:09:08.56 100 FEE 440420 11866 6083497 2024-02-27 11:09:08.56 2024-02-27 11:09:08.56 900 TIP 440420 18930 6083509 2024-02-27 11:10:16.597 2024-02-27 11:10:16.597 1000 FEE 440436 16542 6083510 2024-02-27 11:10:38.661 2024-02-27 11:10:38.661 0 FEE 440432 685 6083511 2024-02-27 11:10:41.469 2024-02-27 11:10:41.469 1000 DONT_LIKE_THIS 225364 3377 6083519 2024-02-27 11:11:06.476 2024-02-27 11:11:06.476 100 FEE 440428 2596 6083520 2024-02-27 11:11:06.476 2024-02-27 11:11:06.476 900 TIP 440428 7827 6083525 2024-02-27 11:11:08.023 2024-02-27 11:11:08.023 2100 FEE 440426 16717 6083526 2024-02-27 11:11:08.023 2024-02-27 11:11:08.023 18900 TIP 440426 5791 6083530 2024-02-27 11:11:49.362 2024-02-27 11:11:49.362 2100 FEE 440432 21494 6083531 2024-02-27 11:11:49.362 2024-02-27 11:11:49.362 18900 TIP 440432 8059 6083552 2024-02-27 11:15:04.194 2024-02-27 11:15:04.194 1000 FEE 440447 20663 6082829 2024-02-27 08:50:03.468 2024-02-27 08:50:03.468 18900 TIP 440321 17091 6082931 2024-02-27 08:55:32.086 2024-02-27 08:55:32.086 500 FEE 440200 2151 6082932 2024-02-27 08:55:32.086 2024-02-27 08:55:32.086 4500 TIP 440200 16336 6082973 2024-02-27 08:55:46.182 2024-02-27 08:55:46.182 500 FEE 440291 4076 6082974 2024-02-27 08:55:46.182 2024-02-27 08:55:46.182 4500 TIP 440291 6191 6082977 2024-02-27 08:55:46.529 2024-02-27 08:55:46.529 500 FEE 440291 1836 6082978 2024-02-27 08:55:46.529 2024-02-27 08:55:46.529 4500 TIP 440291 20381 6082979 2024-02-27 08:55:54.685 2024-02-27 08:55:54.685 500 FEE 440086 16808 6082980 2024-02-27 08:55:54.685 2024-02-27 08:55:54.685 4500 TIP 440086 17001 6082981 2024-02-27 08:55:54.845 2024-02-27 08:55:54.845 500 FEE 440086 1806 6082982 2024-02-27 08:55:54.845 2024-02-27 08:55:54.845 4500 TIP 440086 4768 6082997 2024-02-27 08:55:56.54 2024-02-27 08:55:56.54 500 FEE 440086 16351 6082998 2024-02-27 08:55:56.54 2024-02-27 08:55:56.54 4500 TIP 440086 16357 6083014 2024-02-27 09:01:54.766 2024-02-27 09:01:54.766 6400 FEE 440125 18995 6083015 2024-02-27 09:01:54.766 2024-02-27 09:01:54.766 57600 TIP 440125 5487 6083026 2024-02-27 09:07:27.477 2024-02-27 09:07:27.477 3200 FEE 440132 2361 6083027 2024-02-27 09:07:27.477 2024-02-27 09:07:27.477 28800 TIP 440132 2459 6083033 2024-02-27 09:11:57.236 2024-02-27 09:11:57.236 1000 FEE 440345 19652 6083052 2024-02-27 09:15:31.082 2024-02-27 09:15:31.082 1000 FEE 440348 8498 6083106 2024-02-27 09:30:02.238 2024-02-27 09:30:02.238 2100 FEE 440358 8380 6083107 2024-02-27 09:30:02.238 2024-02-27 09:30:02.238 18900 TIP 440358 636 6083115 2024-02-27 09:31:12.688 2024-02-27 09:31:12.688 800 FEE 440186 20745 6083116 2024-02-27 09:31:12.688 2024-02-27 09:31:12.688 7200 TIP 440186 17535 6083133 2024-02-27 09:35:26.45 2024-02-27 09:35:26.45 50000 FEE 440344 18241 6083134 2024-02-27 09:35:26.45 2024-02-27 09:35:26.45 450000 TIP 440344 974 6083142 2024-02-27 09:38:29.036 2024-02-27 09:38:29.036 1000 FEE 440262 8498 6083143 2024-02-27 09:38:29.036 2024-02-27 09:38:29.036 9000 TIP 440262 10096 6083152 2024-02-27 09:41:36.14 2024-02-27 09:41:36.14 5000 FEE 439844 19038 6083153 2024-02-27 09:41:36.14 2024-02-27 09:41:36.14 45000 TIP 439844 10291 6083159 2024-02-27 09:45:23.406 2024-02-27 09:45:23.406 100000 FEE 440373 20433 6083212 2024-02-27 09:56:23.603 2024-02-27 09:56:23.603 6900 FEE 439739 2056 6083213 2024-02-27 09:56:23.603 2024-02-27 09:56:23.603 62100 TIP 439739 21194 6083214 2024-02-27 09:56:44.917 2024-02-27 09:56:44.917 1000 FEE 440385 12946 6083222 2024-02-27 09:59:03.609 2024-02-27 09:59:03.609 6900 FEE 439586 18306 6083223 2024-02-27 09:59:03.609 2024-02-27 09:59:03.609 62100 TIP 439586 18769 6083254 2024-02-27 10:04:13.291 2024-02-27 10:04:13.291 2100 FEE 440386 5779 6083255 2024-02-27 10:04:13.291 2024-02-27 10:04:13.291 18900 TIP 440386 9169 6083258 2024-02-27 10:04:41.529 2024-02-27 10:04:41.529 2100 FEE 439538 16485 6083259 2024-02-27 10:04:41.529 2024-02-27 10:04:41.529 18900 TIP 439538 900 6083269 2024-02-27 10:05:17.694 2024-02-27 10:05:17.694 100 FEE 440266 19282 6083270 2024-02-27 10:05:17.694 2024-02-27 10:05:17.694 900 TIP 440266 10690 6083274 2024-02-27 10:05:48.368 2024-02-27 10:05:48.368 0 FEE 440388 18837 6083280 2024-02-27 10:08:50.807 2024-02-27 10:08:50.807 1000 FEE 440391 9329 6083307 2024-02-27 10:15:39.9 2024-02-27 10:15:39.9 1000 FEE 440395 20799 6083332 2024-02-27 10:19:00.411 2024-02-27 10:19:00.411 1000 FEE 440399 5761 6083344 2024-02-27 10:20:39.067 2024-02-27 10:20:39.067 100 FEE 440401 2232 6083345 2024-02-27 10:20:39.067 2024-02-27 10:20:39.067 900 TIP 440401 8037 6083402 2024-02-27 10:46:11.281 2024-02-27 10:46:11.281 1000 FEE 440413 20881 6083403 2024-02-27 10:46:11.281 2024-02-27 10:46:11.281 9000 TIP 440413 13348 6083417 2024-02-27 10:50:37.766 2024-02-27 10:50:37.766 1000 FEE 440416 4115 6083439 2024-02-27 10:55:03.823 2024-02-27 10:55:03.823 1000 FEE 440419 6382 6083441 2024-02-27 10:55:17.802 2024-02-27 10:55:17.802 2000 FEE 440344 10063 6083442 2024-02-27 10:55:17.802 2024-02-27 10:55:17.802 18000 TIP 440344 671 6083455 2024-02-27 11:00:05.752 2024-02-27 11:00:05.752 1000 FEE 440424 19638 6083466 2024-02-27 11:03:24.34 2024-02-27 11:03:24.34 2100 FEE 429488 18629 6083467 2024-02-27 11:03:24.34 2024-02-27 11:03:24.34 18900 TIP 429488 14774 6083477 2024-02-27 11:06:10.81 2024-02-27 11:06:10.81 1000 FEE 440429 2195 6083485 2024-02-27 11:07:14.269 2024-02-27 11:07:14.269 100 FEE 440410 21522 6083486 2024-02-27 11:07:14.269 2024-02-27 11:07:14.269 900 TIP 440410 11263 6083494 2024-02-27 11:08:53.224 2024-02-27 11:08:53.224 1000 FEE 440432 20495 6083572 2024-02-27 11:19:30.807 2024-02-27 11:19:30.807 10000 FEE 440450 18830 6083573 2024-02-27 11:19:30.807 2024-02-27 11:19:30.807 90000 TIP 440450 951 6083588 2024-02-27 11:22:15.885 2024-02-27 11:22:15.885 1000 FEE 440457 3979 6083602 2024-02-27 11:23:37.673 2024-02-27 11:23:37.673 4000 FEE 440206 17523 6083603 2024-02-27 11:23:37.673 2024-02-27 11:23:37.673 36000 TIP 440206 20464 6083634 2024-02-27 11:25:46.737 2024-02-27 11:25:46.737 2100 FEE 440056 21254 6083635 2024-02-27 11:25:46.737 2024-02-27 11:25:46.737 18900 TIP 440056 2335 6083652 2024-02-27 11:27:01.976 2024-02-27 11:27:01.976 1000 FEE 440321 10554 6083653 2024-02-27 11:27:01.976 2024-02-27 11:27:01.976 9000 TIP 440321 623 6083675 2024-02-27 11:28:29.847 2024-02-27 11:28:29.847 0 FEE 440456 1221 6083676 2024-02-27 11:28:40.579 2024-02-27 11:28:40.579 0 FEE 440456 11144 6083683 2024-02-27 11:29:01.432 2024-02-27 11:29:01.432 0 FEE 440458 17710 6083685 2024-02-27 11:29:42.337 2024-02-27 11:29:42.337 2100 FEE 440366 18178 6083686 2024-02-27 11:29:42.337 2024-02-27 11:29:42.337 18900 TIP 440366 21242 6083701 2024-02-27 11:31:30.708 2024-02-27 11:31:30.708 1000 FEE 440465 891 6083702 2024-02-27 11:31:34.793 2024-02-27 11:31:34.793 1600 FEE 440460 1044 6083703 2024-02-27 11:31:34.793 2024-02-27 11:31:34.793 14400 TIP 440460 959 6083704 2024-02-27 11:31:35.581 2024-02-27 11:31:35.581 0 FEE 440465 20302 6083729 2024-02-27 11:37:58.78 2024-02-27 11:37:58.78 500 FEE 440132 19007 6083730 2024-02-27 11:37:58.78 2024-02-27 11:37:58.78 4500 TIP 440132 16194 6083789 2024-02-27 11:47:56.724 2024-02-27 11:47:56.724 50000 FEE 440481 19905 6083793 2024-02-27 11:48:28.161 2024-02-27 11:48:28.161 1000 FEE 440484 16717 6083819 2024-02-27 11:50:21.08 2024-02-27 11:50:21.08 1000 FEE 440481 2431 6082850 2024-02-27 08:55:09.882 2024-02-27 08:55:09.882 4500 TIP 440172 14939 6082877 2024-02-27 08:55:12.345 2024-02-27 08:55:12.345 500 FEE 440172 692 6082878 2024-02-27 08:55:12.345 2024-02-27 08:55:12.345 4500 TIP 440172 4570 6082879 2024-02-27 08:55:12.515 2024-02-27 08:55:12.515 500 FEE 440172 2075 6082880 2024-02-27 08:55:12.515 2024-02-27 08:55:12.515 4500 TIP 440172 705 6082907 2024-02-27 08:55:17.68 2024-02-27 08:55:17.68 500 FEE 440172 11075 6082908 2024-02-27 08:55:17.68 2024-02-27 08:55:17.68 4500 TIP 440172 4345 6082951 2024-02-27 08:55:33.825 2024-02-27 08:55:33.825 500 FEE 440200 762 6082952 2024-02-27 08:55:33.825 2024-02-27 08:55:33.825 4500 TIP 440200 17209 6082953 2024-02-27 08:55:34.028 2024-02-27 08:55:34.028 500 FEE 440200 20153 6082954 2024-02-27 08:55:34.028 2024-02-27 08:55:34.028 4500 TIP 440200 15560 6083025 2024-02-27 09:07:15.271 2024-02-27 09:07:15.271 1000 FEE 440343 763 6083036 2024-02-27 09:12:42.627 2024-02-27 09:12:42.627 1000 FEE 439729 5758 6083037 2024-02-27 09:12:42.627 2024-02-27 09:12:42.627 9000 TIP 439729 13931 6083062 2024-02-27 09:21:16.089 2024-02-27 09:21:16.089 100000 FEE 440350 7682 6083095 2024-02-27 09:26:50.77 2024-02-27 09:26:50.77 800 FEE 440230 946 6083096 2024-02-27 09:26:50.77 2024-02-27 09:26:50.77 7200 TIP 440230 21254 6083101 2024-02-27 09:28:57.948 2024-02-27 09:28:57.948 1000 FEE 440358 13987 6083103 2024-02-27 09:29:30.057 2024-02-27 09:29:30.057 10000 FEE 440344 16212 6083104 2024-02-27 09:29:30.057 2024-02-27 09:29:30.057 90000 TIP 440344 749 6083111 2024-02-27 09:30:51.569 2024-02-27 09:30:51.569 100 FEE 440351 21271 6083112 2024-02-27 09:30:51.569 2024-02-27 09:30:51.569 900 TIP 440351 18494 6083118 2024-02-27 09:31:19.944 2024-02-27 09:31:19.944 2000 FEE 439985 20137 6083119 2024-02-27 09:31:19.944 2024-02-27 09:31:19.944 18000 TIP 439985 1673 6083120 2024-02-27 09:31:47 2024-02-27 09:31:47 1000 FEE 440362 3392 6083126 2024-02-27 09:32:37.183 2024-02-27 09:32:37.183 100000 FEE 440365 2525 6083139 2024-02-27 09:36:53.526 2024-02-27 09:36:53.526 1000 FEE 440370 19806 6083180 2024-02-27 09:52:21.356 2024-02-27 09:52:21.356 1000 FEE 439844 18005 6083181 2024-02-27 09:52:21.356 2024-02-27 09:52:21.356 9000 TIP 439844 1603 6083190 2024-02-27 09:53:54.334 2024-02-27 09:53:54.334 1000 FEE 440366 18393 6083191 2024-02-27 09:53:54.334 2024-02-27 09:53:54.334 9000 TIP 440366 18830 6083192 2024-02-27 09:53:54.415 2024-02-27 09:53:54.415 6900 FEE 439552 998 6083193 2024-02-27 09:53:54.415 2024-02-27 09:53:54.415 62100 TIP 439552 1142 6083225 2024-02-27 09:59:51.949 2024-02-27 09:59:51.949 1000 FEE 440386 20495 6083226 2024-02-27 09:59:51.949 2024-02-27 09:59:51.949 9000 TIP 440386 4654 6083235 2024-02-27 10:01:07.715 2024-02-27 10:01:07.715 100 FEE 440359 14370 6083236 2024-02-27 10:01:07.715 2024-02-27 10:01:07.715 900 TIP 440359 19569 6083263 2024-02-27 10:05:16.475 2024-02-27 10:05:16.475 100 FEE 440266 21037 6083264 2024-02-27 10:05:16.475 2024-02-27 10:05:16.475 900 TIP 440266 1603 6083265 2024-02-27 10:05:16.715 2024-02-27 10:05:16.715 100 FEE 440266 19158 6083266 2024-02-27 10:05:16.715 2024-02-27 10:05:16.715 900 TIP 440266 17226 6083281 2024-02-27 10:09:00.205 2024-02-27 10:09:00.205 1000 FEE 440392 18842 6083287 2024-02-27 10:12:01.905 2024-02-27 10:12:01.905 2100 FEE 440241 708 6083288 2024-02-27 10:12:01.905 2024-02-27 10:12:01.905 18900 TIP 440241 10944 6083290 2024-02-27 10:12:09.966 2024-02-27 10:12:09.966 2100 FEE 440321 18816 6083291 2024-02-27 10:12:09.966 2024-02-27 10:12:09.966 18900 TIP 440321 14225 6083315 2024-02-27 10:16:25.074 2024-02-27 10:16:25.074 2100 FEE 439037 15941 6083316 2024-02-27 10:16:25.074 2024-02-27 10:16:25.074 18900 TIP 439037 826 6083325 2024-02-27 10:17:48.288 2024-02-27 10:17:48.288 800 FEE 439987 10821 6083326 2024-02-27 10:17:48.288 2024-02-27 10:17:48.288 7200 TIP 439987 9845 6083328 2024-02-27 10:18:08.531 2024-02-27 10:18:08.531 300 FEE 440396 2056 6083329 2024-02-27 10:18:08.531 2024-02-27 10:18:08.531 2700 TIP 440396 16229 6083336 2024-02-27 10:19:17.225 2024-02-27 10:19:17.225 1600 FEE 440128 14280 6083337 2024-02-27 10:19:17.225 2024-02-27 10:19:17.225 14400 TIP 440128 4802 6083371 2024-02-27 10:33:25.417 2024-02-27 10:33:25.417 1000 FEE 440405 19967 6083406 2024-02-27 10:46:36.988 2024-02-27 10:46:36.988 21000 FEE 440206 636 6083407 2024-02-27 10:46:36.988 2024-02-27 10:46:36.988 189000 TIP 440206 16954 6083427 2024-02-27 10:51:23.379 2024-02-27 10:51:23.379 100 FEE 440099 11038 6083428 2024-02-27 10:51:23.379 2024-02-27 10:51:23.379 900 TIP 440099 5425 6083430 2024-02-27 10:52:43.081 2024-02-27 10:52:43.081 1000 FEE 440417 19151 6083443 2024-02-27 10:55:23.682 2024-02-27 10:55:23.682 0 FEE 440419 17800 6083456 2024-02-27 11:00:08.124 2024-02-27 11:00:08.124 1000 FEE 440425 20257 6083459 2024-02-27 11:00:25.598 2024-02-27 11:00:25.598 1000 FEE 440426 14122 6083462 2024-02-27 11:02:04.139 2024-02-27 11:02:04.139 1000 FEE 440427 20980 6083475 2024-02-27 11:05:55.703 2024-02-27 11:05:55.703 21000 DONT_LIKE_THIS 440406 14857 6083481 2024-02-27 11:06:58.349 2024-02-27 11:06:58.349 0 FEE 440429 19661 6083483 2024-02-27 11:07:06.074 2024-02-27 11:07:06.074 100 FEE 440415 1800 6083484 2024-02-27 11:07:06.074 2024-02-27 11:07:06.074 900 TIP 440415 4763 6083500 2024-02-27 11:09:31.887 2024-02-27 11:09:31.887 6900 FEE 440425 1236 6083501 2024-02-27 11:09:31.887 2024-02-27 11:09:31.887 62100 TIP 440425 15088 6083538 2024-02-27 11:13:49.516 2024-02-27 11:13:49.516 10000 FEE 440443 16347 6083547 2024-02-27 11:14:22.47 2024-02-27 11:14:22.47 2100 FEE 440416 1007 6083548 2024-02-27 11:14:22.47 2024-02-27 11:14:22.47 18900 TIP 440416 20706 6083556 2024-02-27 11:15:43.01 2024-02-27 11:15:43.01 10000 FEE 440449 11263 6083557 2024-02-27 11:15:43.939 2024-02-27 11:15:43.939 1000 FEE 440433 2204 6083558 2024-02-27 11:15:43.939 2024-02-27 11:15:43.939 9000 TIP 440433 4378 6083559 2024-02-27 11:15:47.205 2024-02-27 11:15:47.205 1000 FEE 440450 18209 6083564 2024-02-27 11:17:39.211 2024-02-27 11:17:39.211 1000 FEE 440453 16667 6083591 2024-02-27 11:22:54.214 2024-02-27 11:22:54.214 1000 FEE 440266 715 6083592 2024-02-27 11:22:54.214 2024-02-27 11:22:54.214 9000 TIP 440266 7847 6083612 2024-02-27 11:24:15.433 2024-02-27 11:24:15.433 0 FEE 440460 1291 6083616 2024-02-27 11:24:55.945 2024-02-27 11:24:55.945 1000 FEE 440462 987 6083620 2024-02-27 11:25:16.947 2024-02-27 11:25:16.947 0 FEE 440458 3353 6083624 2024-02-27 11:25:41.019 2024-02-27 11:25:41.019 2100 FEE 440132 19930 6083625 2024-02-27 11:25:41.019 2024-02-27 11:25:41.019 18900 TIP 440132 9529 6083642 2024-02-27 11:26:20.818 2024-02-27 11:26:20.818 1000 FEE 440351 9350 6083643 2024-02-27 11:26:20.818 2024-02-27 11:26:20.818 9000 TIP 440351 12606 6083661 2024-02-27 11:27:42.95 2024-02-27 11:27:42.95 0 FEE 440456 19613 6083662 2024-02-27 11:27:48.293 2024-02-27 11:27:48.293 1000 FEE 440222 3686 6083663 2024-02-27 11:27:48.293 2024-02-27 11:27:48.293 9000 TIP 440222 7877 6083692 2024-02-27 11:30:27.758 2024-02-27 11:30:27.758 0 FEE 440460 2829 6082988 2024-02-27 08:55:55.334 2024-02-27 08:55:55.334 4500 TIP 440086 9906 6082989 2024-02-27 08:55:55.478 2024-02-27 08:55:55.478 500 FEE 440086 3729 6082990 2024-02-27 08:55:55.478 2024-02-27 08:55:55.478 4500 TIP 440086 18837 6083008 2024-02-27 08:59:50.343 2024-02-27 08:59:50.343 1000 FEE 439390 17331 6083009 2024-02-27 08:59:50.343 2024-02-27 08:59:50.343 9000 TIP 439390 19569 6083043 2024-02-27 09:13:08.012 2024-02-27 09:13:08.012 1000 FEE 440208 20706 6083044 2024-02-27 09:13:08.012 2024-02-27 09:13:08.012 9000 TIP 440208 18581 6083056 2024-02-27 09:18:33.923 2024-02-27 09:18:33.923 800 FEE 440241 19198 6083057 2024-02-27 09:18:33.923 2024-02-27 09:18:33.923 7200 TIP 440241 11819 6083063 2024-02-27 09:21:49.297 2024-02-27 09:21:49.297 0 FEE 440350 1512 6083078 2024-02-27 09:24:24.373 2024-02-27 09:24:24.373 1000 FEE 440353 1737 6083087 2024-02-27 09:25:33.023 2024-02-27 09:25:33.023 100 FEE 439658 13587 6083088 2024-02-27 09:25:33.023 2024-02-27 09:25:33.023 900 TIP 439658 18169 6083100 2024-02-27 09:28:54.536 2024-02-27 09:28:54.536 1000 FEE 440357 13903 6083113 2024-02-27 09:30:58.665 2024-02-27 09:30:58.665 1000 FEE 440360 19346 6083117 2024-02-27 09:31:14.898 2024-02-27 09:31:14.898 1000 FEE 440361 766 6083145 2024-02-27 09:39:22.091 2024-02-27 09:39:22.091 1000 FEE 440371 4378 6083163 2024-02-27 09:46:28.67 2024-02-27 09:46:28.67 10800 FEE 440241 20554 6083164 2024-02-27 09:46:28.67 2024-02-27 09:46:28.67 97200 TIP 440241 756 6083171 2024-02-27 09:49:36.387 2024-02-27 09:49:36.387 2100 FEE 440366 16789 6083172 2024-02-27 09:49:36.387 2024-02-27 09:49:36.387 18900 TIP 440366 12220 6083178 2024-02-27 09:52:15.609 2024-02-27 09:52:15.609 2100 FEE 440298 10493 6083179 2024-02-27 09:52:15.609 2024-02-27 09:52:15.609 18900 TIP 440298 19267 6083184 2024-02-27 09:53:09.738 2024-02-27 09:53:09.738 1000 FEE 440378 1039 6083187 2024-02-27 09:53:40.732 2024-02-27 09:53:40.732 6900 FEE 439487 9026 6083188 2024-02-27 09:53:40.732 2024-02-27 09:53:40.732 62100 TIP 439487 11288 6083208 2024-02-27 09:55:47.328 2024-02-27 09:55:47.328 6900 FEE 439503 1320 6083209 2024-02-27 09:55:47.328 2024-02-27 09:55:47.328 62100 TIP 439503 17570 6083248 2024-02-27 10:02:58.974 2024-02-27 10:02:58.974 4200 FEE 440129 6383 6083249 2024-02-27 10:02:58.974 2024-02-27 10:02:58.974 37800 TIP 440129 4128 6083271 2024-02-27 10:05:18.077 2024-02-27 10:05:18.077 100 FEE 440266 18829 6083272 2024-02-27 10:05:18.077 2024-02-27 10:05:18.077 900 TIP 440266 13169 6083284 2024-02-27 10:10:59.98 2024-02-27 10:10:59.98 100 FEE 440390 21494 6083285 2024-02-27 10:10:59.98 2024-02-27 10:10:59.98 900 TIP 440390 1769 6083333 2024-02-27 10:19:01.543 2024-02-27 10:19:01.543 6900 FEE 440373 21562 6083334 2024-02-27 10:19:01.543 2024-02-27 10:19:01.543 62100 TIP 440373 8059 6083365 2024-02-27 10:30:15.639 2024-02-27 10:30:15.639 0 FEE 440404 14169 6083375 2024-02-27 10:34:19.897 2024-02-27 10:34:19.897 100000 FEE 440406 17171 6083394 2024-02-27 10:43:45.417 2024-02-27 10:43:45.417 100000 FEE 440410 20353 6083396 2024-02-27 10:44:06.251 2024-02-27 10:44:06.251 2100 FEE 438551 18199 6083397 2024-02-27 10:44:06.251 2024-02-27 10:44:06.251 18900 TIP 438551 14905 6083432 2024-02-27 10:53:24.275 2024-02-27 10:53:24.275 1000 FEE 440418 16653 6083448 2024-02-27 10:57:21.225 2024-02-27 10:57:21.225 10000 FEE 440366 21506 6083449 2024-02-27 10:57:21.225 2024-02-27 10:57:21.225 90000 TIP 440366 15732 6083498 2024-02-27 11:09:14.046 2024-02-27 11:09:14.046 1000 DONT_LIKE_THIS 224831 9150 6083504 2024-02-27 11:09:48.239 2024-02-27 11:09:48.239 1000 FEE 440434 21589 6083512 2024-02-27 11:10:53.024 2024-02-27 11:10:53.024 0 FEE 440432 19796 6083521 2024-02-27 11:11:06.721 2024-02-27 11:11:06.721 100 FEE 440428 18243 6083522 2024-02-27 11:11:06.721 2024-02-27 11:11:06.721 900 TIP 440428 21599 6083523 2024-02-27 11:11:07.222 2024-02-27 11:11:07.222 100 FEE 440428 20479 6083524 2024-02-27 11:11:07.222 2024-02-27 11:11:07.222 900 TIP 440428 20738 6083533 2024-02-27 11:12:26.101 2024-02-27 11:12:26.101 0 FEE 440439 19902 6083539 2024-02-27 11:14:00.221 2024-02-27 11:14:00.221 1000 FEE 440444 18784 6083541 2024-02-27 11:14:09.793 2024-02-27 11:14:09.793 1000 FEE 440445 12024 6083562 2024-02-27 11:16:20.416 2024-02-27 11:16:20.416 1000 FEE 440452 704 6083565 2024-02-27 11:17:48.877 2024-02-27 11:17:48.877 2100 FEE 440446 19036 6083566 2024-02-27 11:17:48.877 2024-02-27 11:17:48.877 18900 TIP 440446 17162 6083579 2024-02-27 11:21:05.126 2024-02-27 11:21:05.126 2100 FEE 440413 827 6083580 2024-02-27 11:21:05.126 2024-02-27 11:21:05.126 18900 TIP 440413 16598 6083596 2024-02-27 11:23:32.763 2024-02-27 11:23:32.763 4000 FEE 440321 12736 6083597 2024-02-27 11:23:32.763 2024-02-27 11:23:32.763 36000 TIP 440321 17797 6083600 2024-02-27 11:23:37.402 2024-02-27 11:23:37.402 4000 FEE 440344 18735 6083601 2024-02-27 11:23:37.402 2024-02-27 11:23:37.402 36000 TIP 440344 2543 6083615 2024-02-27 11:24:51.364 2024-02-27 11:24:51.364 0 FEE 440458 5425 6083623 2024-02-27 11:25:40.151 2024-02-27 11:25:40.151 0 FEE 440456 19660 6083628 2024-02-27 11:25:43.065 2024-02-27 11:25:43.065 2100 FEE 440344 20251 6083629 2024-02-27 11:25:43.065 2024-02-27 11:25:43.065 18900 TIP 440344 14045 6083647 2024-02-27 11:26:44.879 2024-02-27 11:26:44.879 2100 FEE 439904 17082 6083648 2024-02-27 11:26:44.879 2024-02-27 11:26:44.879 18900 TIP 439904 18994 6083679 2024-02-27 11:28:51.507 2024-02-27 11:28:51.507 0 FEE 440460 19488 6083693 2024-02-27 11:30:39.206 2024-02-27 11:30:39.206 0 FEE 440458 16830 6083718 2024-02-27 11:35:54.48 2024-02-27 11:35:54.48 10000 FEE 440471 15703 6083738 2024-02-27 11:40:01.678 2024-02-27 11:40:01.678 5000 FEE 440475 18816 6083745 2024-02-27 11:41:03.955 2024-02-27 11:41:03.955 1000 FEE 440477 1632 6083751 2024-02-27 11:42:31.102 2024-02-27 11:42:31.102 5000 FEE 439946 15139 6083752 2024-02-27 11:42:31.102 2024-02-27 11:42:31.102 45000 TIP 439946 1489 6083783 2024-02-27 11:46:16.92 2024-02-27 11:46:16.92 1000 FEE 440433 7673 6083784 2024-02-27 11:46:16.92 2024-02-27 11:46:16.92 9000 TIP 440433 20153 6083794 2024-02-27 11:48:29.279 2024-02-27 11:48:29.279 4000 FEE 440459 11329 6083795 2024-02-27 11:48:29.279 2024-02-27 11:48:29.279 36000 TIP 440459 21003 6083796 2024-02-27 11:48:30.82 2024-02-27 11:48:30.82 4000 FEE 440462 19398 6083797 2024-02-27 11:48:30.82 2024-02-27 11:48:30.82 36000 TIP 440462 18357 6083798 2024-02-27 11:48:31.519 2024-02-27 11:48:31.519 4000 FEE 440451 19886 6083799 2024-02-27 11:48:31.519 2024-02-27 11:48:31.519 36000 TIP 440451 20430 6083800 2024-02-27 11:48:31.97 2024-02-27 11:48:31.97 4000 FEE 440450 1692 6083801 2024-02-27 11:48:31.97 2024-02-27 11:48:31.97 36000 TIP 440450 16336 6083804 2024-02-27 11:48:42.778 2024-02-27 11:48:42.778 4000 FEE 440460 21386 6083805 2024-02-27 11:48:42.778 2024-02-27 11:48:42.778 36000 TIP 440460 3371 6083828 2024-02-27 11:51:04.643 2024-02-27 11:51:04.643 1000 FEE 440403 20586 6083829 2024-02-27 11:51:04.643 2024-02-27 11:51:04.643 9000 TIP 440403 16704 6083834 2024-02-27 11:51:13.519 2024-02-27 11:51:13.519 100 FEE 440472 21033 6083835 2024-02-27 11:51:13.519 2024-02-27 11:51:13.519 900 TIP 440472 19906 6083838 2024-02-27 11:51:58.869 2024-02-27 11:51:58.869 1000 FEE 440486 19537 6083840 2024-02-27 11:52:53.082 2024-02-27 11:52:53.082 2100 FEE 440471 18169 6083841 2024-02-27 11:52:53.082 2024-02-27 11:52:53.082 18900 TIP 440471 20757 6083858 2024-02-27 11:58:09.087 2024-02-27 11:58:09.087 2100 FEE 439912 1489 6083859 2024-02-27 11:58:09.087 2024-02-27 11:58:09.087 18900 TIP 439912 20802 6083869 2024-02-27 12:00:09.539 2024-02-27 12:00:09.539 1000 FEE 440488 21451 6083870 2024-02-27 12:00:11.575 2024-02-27 12:00:11.575 100000 FEE 440489 5829 6083871 2024-02-27 12:00:51.007 2024-02-27 12:00:51.007 1000 FEE 440490 16536 6083885 2024-02-27 12:06:35.047 2024-02-27 12:06:35.047 4000 FEE 440491 2703 6083886 2024-02-27 12:06:35.047 2024-02-27 12:06:35.047 36000 TIP 440491 4415 6083899 2024-02-27 12:12:01.316 2024-02-27 12:12:01.316 1000 FEE 440493 18909 6083904 2024-02-27 12:13:23.534 2024-02-27 12:13:23.534 1000 FEE 440496 18402 6082994 2024-02-27 08:55:55.825 2024-02-27 08:55:55.825 4500 TIP 440086 18735 6083023 2024-02-27 09:06:22.522 2024-02-27 09:06:22.522 1000 FEE 440342 8569 6083031 2024-02-27 09:10:26.594 2024-02-27 09:10:26.594 100000 FEE 440344 16357 6083048 2024-02-27 09:14:07.104 2024-02-27 09:14:07.104 1000 FEE 440347 19394 6083090 2024-02-27 09:25:53.835 2024-02-27 09:25:53.835 100 FEE 440323 2711 6083091 2024-02-27 09:25:53.835 2024-02-27 09:25:53.835 900 TIP 440323 16839 6083093 2024-02-27 09:26:15.99 2024-02-27 09:26:15.99 1600 FEE 440266 18170 6083094 2024-02-27 09:26:15.99 2024-02-27 09:26:15.99 14400 TIP 440266 11153 6083109 2024-02-27 09:30:19.058 2024-02-27 09:30:19.058 10000 FEE 440132 17523 6083110 2024-02-27 09:30:19.058 2024-02-27 09:30:19.058 90000 TIP 440132 844 6083129 2024-02-27 09:34:17.984 2024-02-27 09:34:17.984 21000 FEE 440366 4654 6083160 2024-02-27 09:46:00.23 2024-02-27 09:46:00.23 1000 FEE 440374 20179 6083162 2024-02-27 09:46:24.792 2024-02-27 09:46:24.792 1000 FEE 440375 746 6083167 2024-02-27 09:48:18.223 2024-02-27 09:48:18.223 2100 FEE 440308 928 6083168 2024-02-27 09:48:18.223 2024-02-27 09:48:18.223 18900 TIP 440308 19132 6083189 2024-02-27 09:53:52.171 2024-02-27 09:53:52.171 1000 FEE 440379 20222 6083198 2024-02-27 09:54:59.344 2024-02-27 09:54:59.344 2100 FEE 440132 16948 6083199 2024-02-27 09:54:59.344 2024-02-27 09:54:59.344 18900 TIP 440132 18909 6083201 2024-02-27 09:55:16.441 2024-02-27 09:55:16.441 1000 FEE 440381 11750 6083216 2024-02-27 09:57:37.44 2024-02-27 09:57:37.44 21000 FEE 440386 14795 6083237 2024-02-27 10:01:08.629 2024-02-27 10:01:08.629 100 FEE 440363 13365 6083238 2024-02-27 10:01:08.629 2024-02-27 10:01:08.629 900 TIP 440363 21242 6083243 2024-02-27 10:01:54.302 2024-02-27 10:01:54.302 4200 FEE 440253 9421 6083244 2024-02-27 10:01:54.302 2024-02-27 10:01:54.302 37800 TIP 440253 9551 6083252 2024-02-27 10:04:07.727 2024-02-27 10:04:07.727 2100 FEE 440376 18543 6083253 2024-02-27 10:04:07.727 2024-02-27 10:04:07.727 18900 TIP 440376 8648 6083267 2024-02-27 10:05:16.974 2024-02-27 10:05:16.974 100 FEE 440266 21047 6083268 2024-02-27 10:05:16.974 2024-02-27 10:05:16.974 900 TIP 440266 3439 6083306 2024-02-27 10:15:23.653 2024-02-27 10:15:23.653 10000 FEE 440394 16513 6083310 2024-02-27 10:16:03.171 2024-02-27 10:16:03.171 2100 FEE 440388 18225 6083311 2024-02-27 10:16:03.171 2024-02-27 10:16:03.171 18900 TIP 440388 19138 6083341 2024-02-27 10:20:06.449 2024-02-27 10:20:06.449 1000 FEE 440402 6421 6083351 2024-02-27 10:24:47.278 2024-02-27 10:24:47.278 500 FEE 440206 21591 6083352 2024-02-27 10:24:47.278 2024-02-27 10:24:47.278 4500 TIP 440206 4175 6083379 2024-02-27 10:37:00.768 2024-02-27 10:37:00.768 500 FEE 438414 19976 6083380 2024-02-27 10:37:00.768 2024-02-27 10:37:00.768 4500 TIP 438414 21466 6083400 2024-02-27 10:45:32.38 2024-02-27 10:45:32.38 69000 FEE 440413 2000 6083405 2024-02-27 10:46:35.846 2024-02-27 10:46:35.846 1000 FEE 440414 10094 6083414 2024-02-27 10:48:30.805 2024-02-27 10:48:30.805 100000 FEE 440415 634 6083435 2024-02-27 10:54:31.795 2024-02-27 10:54:31.795 10000 FEE 440408 21405 6083436 2024-02-27 10:54:31.795 2024-02-27 10:54:31.795 90000 TIP 440408 14225 6083479 2024-02-27 11:06:18.458 2024-02-27 11:06:18.458 1000 FEE 440431 17109 6083480 2024-02-27 11:06:43.61 2024-02-27 11:06:43.61 0 FEE 440429 6268 6083490 2024-02-27 11:08:37.635 2024-02-27 11:08:37.635 100 FEE 440413 18615 6083491 2024-02-27 11:08:37.635 2024-02-27 11:08:37.635 900 TIP 440413 11527 6083492 2024-02-27 11:08:43.271 2024-02-27 11:08:43.271 100 FEE 440412 18837 6083493 2024-02-27 11:08:43.271 2024-02-27 11:08:43.271 900 TIP 440412 19785 6083499 2024-02-27 11:09:19.12 2024-02-27 11:09:19.12 1000 FEE 440433 13217 6083513 2024-02-27 11:11:02.709 2024-02-27 11:11:02.709 1000 FEE 440437 21498 6083527 2024-02-27 11:11:37.781 2024-02-27 11:11:37.781 1000 FEE 440438 16447 6083528 2024-02-27 11:11:38.762 2024-02-27 11:11:38.762 1000 FEE 440439 20511 6083542 2024-02-27 11:14:11.43 2024-02-27 11:14:11.43 1000 FEE 440446 3990 6083543 2024-02-27 11:14:11.906 2024-02-27 11:14:11.906 2100 FEE 440403 15075 6083544 2024-02-27 11:14:11.906 2024-02-27 11:14:11.906 18900 TIP 440403 18637 6083545 2024-02-27 11:14:17.202 2024-02-27 11:14:17.202 100 FEE 440442 19335 6083546 2024-02-27 11:14:17.202 2024-02-27 11:14:17.202 900 TIP 440442 1489 6083555 2024-02-27 11:15:34.288 2024-02-27 11:15:34.288 1000 FEE 440448 12346 6083569 2024-02-27 11:18:42.54 2024-02-27 11:18:42.54 1000 FEE 440455 680 6083570 2024-02-27 11:18:57.582 2024-02-27 11:18:57.582 1000 FEE 440456 21563 6083589 2024-02-27 11:22:16.208 2024-02-27 11:22:16.208 1000 FEE 440458 2039 6083607 2024-02-27 11:23:48.812 2024-02-27 11:23:48.812 1000 FEE 440461 16571 6083613 2024-02-27 11:24:17.01 2024-02-27 11:24:17.01 0 FEE 440456 6382 6083680 2024-02-27 11:28:53.435 2024-02-27 11:28:53.435 1000 FEE 440075 19535 6083681 2024-02-27 11:28:53.435 2024-02-27 11:28:53.435 9000 TIP 440075 8269 6083687 2024-02-27 11:29:57.81 2024-02-27 11:29:57.81 0 FEE 440460 9350 6083698 2024-02-27 11:30:53.586 2024-02-27 11:30:53.586 100 FEE 440361 15624 6083699 2024-02-27 11:30:53.586 2024-02-27 11:30:53.586 900 TIP 440361 15510 6083716 2024-02-27 11:35:28.068 2024-02-27 11:35:28.068 0 FEE 440470 14465 6083722 2024-02-27 11:36:26.865 2024-02-27 11:36:26.865 1000 FEE 440443 1352 6083723 2024-02-27 11:36:26.865 2024-02-27 11:36:26.865 9000 TIP 440443 20220 6083744 2024-02-27 11:41:00.195 2024-02-27 11:41:00.195 1000 FEE 440476 16149 6083766 2024-02-27 11:46:03.955 2024-02-27 11:46:03.955 1000 FEE 440459 19322 6083767 2024-02-27 11:46:03.955 2024-02-27 11:46:03.955 9000 TIP 440459 8729 6083787 2024-02-27 11:46:40.877 2024-02-27 11:46:40.877 1000 FEE 440480 15326 6083802 2024-02-27 11:48:41.618 2024-02-27 11:48:41.618 4000 FEE 440457 18675 6083803 2024-02-27 11:48:41.618 2024-02-27 11:48:41.618 36000 TIP 440457 16194 6083821 2024-02-27 11:50:29.611 2024-02-27 11:50:29.611 2100 FEE 440480 19394 6083822 2024-02-27 11:50:29.611 2024-02-27 11:50:29.611 18900 TIP 440480 18309 6083874 2024-02-27 12:02:20.654 2024-02-27 12:02:20.654 2100 FEE 440488 15160 6083875 2024-02-27 12:02:20.654 2024-02-27 12:02:20.654 18900 TIP 440488 8448 6083888 2024-02-27 12:07:26.235 2024-02-27 12:07:26.235 4000 FEE 440467 16442 6083889 2024-02-27 12:07:26.235 2024-02-27 12:07:26.235 36000 TIP 440467 21138 6083058 2024-02-27 09:19:03.373 2024-02-27 09:19:03.373 1000 STREAM 141924 18460 6083098 2024-02-27 09:28:03.466 2024-02-27 09:28:03.466 1000 STREAM 141924 20162 6083138 2024-02-27 09:36:03.562 2024-02-27 09:36:03.562 1000 STREAM 141924 2013 6083144 2024-02-27 09:39:03.584 2024-02-27 09:39:03.584 1000 STREAM 141924 18470 6083146 2024-02-27 09:40:03.636 2024-02-27 09:40:03.636 1000 STREAM 141924 19938 6083154 2024-02-27 09:42:03.6 2024-02-27 09:42:03.6 1000 STREAM 141924 10490 6083161 2024-02-27 09:46:03.611 2024-02-27 09:46:03.611 1000 STREAM 141924 12158 6083170 2024-02-27 09:49:03.646 2024-02-27 09:49:03.646 1000 STREAM 141924 2528 6083141 2024-02-27 09:38:03.575 2024-02-27 09:38:03.575 1000 STREAM 141924 20889 6083147 2024-02-27 09:41:03.618 2024-02-27 09:41:03.618 1000 STREAM 141924 1631 6083156 2024-02-27 09:43:03.593 2024-02-27 09:43:03.593 1000 STREAM 141924 14260 6083157 2024-02-27 09:44:03.589 2024-02-27 09:44:03.589 1000 STREAM 141924 10536 6083158 2024-02-27 09:45:03.606 2024-02-27 09:45:03.606 1000 STREAM 141924 12102 6083165 2024-02-27 09:47:03.619 2024-02-27 09:47:03.619 1000 STREAM 141924 21612 6083166 2024-02-27 09:48:03.639 2024-02-27 09:48:03.639 1000 STREAM 141924 3979 6083175 2024-02-27 09:50:03.686 2024-02-27 09:50:03.686 1000 STREAM 141924 13767 6083221 2024-02-27 09:58:03.75 2024-02-27 09:58:03.75 1000 STREAM 141924 775 6083251 2024-02-27 10:04:03.797 2024-02-27 10:04:03.797 1000 STREAM 141924 20680 6083261 2024-02-27 10:05:03.819 2024-02-27 10:05:03.819 1000 STREAM 141924 18828 6083276 2024-02-27 10:07:03.818 2024-02-27 10:07:03.818 1000 STREAM 141924 6749 6083278 2024-02-27 10:08:03.819 2024-02-27 10:08:03.819 1000 STREAM 141924 5708 6083176 2024-02-27 09:51:04.694 2024-02-27 09:51:04.694 1000 STREAM 141924 4175 6083177 2024-02-27 09:52:03.723 2024-02-27 09:52:03.723 1000 STREAM 141924 7903 6083183 2024-02-27 09:53:03.709 2024-02-27 09:53:03.709 1000 STREAM 141924 4502 6083200 2024-02-27 09:55:03.713 2024-02-27 09:55:03.713 1000 STREAM 141924 19403 6083210 2024-02-27 09:56:03.706 2024-02-27 09:56:03.706 1000 STREAM 141924 18832 6083215 2024-02-27 09:57:03.725 2024-02-27 09:57:03.725 1000 STREAM 141924 15890 6083227 2024-02-27 10:00:03.761 2024-02-27 10:00:03.761 1000 STREAM 141924 917 6083230 2024-02-27 10:01:03.733 2024-02-27 10:01:03.733 1000 STREAM 141924 15159 6083304 2024-02-27 10:15:03.86 2024-02-27 10:15:03.86 1000 STREAM 141924 20267 6083312 2024-02-27 10:16:03.856 2024-02-27 10:16:03.856 1000 STREAM 141924 4084 6083340 2024-02-27 10:20:03.914 2024-02-27 10:20:03.914 1000 STREAM 141924 21418 6083346 2024-02-27 10:21:03.902 2024-02-27 10:21:03.902 1000 STREAM 141924 15160 6083348 2024-02-27 10:22:03.914 2024-02-27 10:22:03.914 1000 STREAM 141924 16879 6083349 2024-02-27 10:23:03.927 2024-02-27 10:23:03.927 1000 STREAM 141924 18494 6083350 2024-02-27 10:24:03.929 2024-02-27 10:24:03.929 1000 STREAM 141924 21481 6083356 2024-02-27 10:26:03.949 2024-02-27 10:26:03.949 1000 STREAM 141924 12356 6083364 2024-02-27 10:30:04.001 2024-02-27 10:30:04.001 1000 STREAM 141924 4313 6083368 2024-02-27 10:33:04.01 2024-02-27 10:33:04.01 1000 STREAM 141924 1713 6083378 2024-02-27 10:36:04.029 2024-02-27 10:36:04.029 1000 STREAM 141924 4225 6083381 2024-02-27 10:37:04.051 2024-02-27 10:37:04.051 1000 STREAM 141924 19375 6083382 2024-02-27 10:38:04.056 2024-02-27 10:38:04.056 1000 STREAM 141924 4388 6083383 2024-02-27 10:39:04.071 2024-02-27 10:39:04.071 1000 STREAM 141924 739 6083391 2024-02-27 10:43:04.105 2024-02-27 10:43:04.105 1000 STREAM 141924 20205 6083401 2024-02-27 10:46:04.121 2024-02-27 10:46:04.121 1000 STREAM 141924 9159 6083413 2024-02-27 10:48:04.144 2024-02-27 10:48:04.144 1000 STREAM 141924 16929 6083415 2024-02-27 10:49:04.157 2024-02-27 10:49:04.157 1000 STREAM 141924 20754 6083416 2024-02-27 10:50:04.169 2024-02-27 10:50:04.169 1000 STREAM 141924 3642 6083440 2024-02-27 10:55:04.184 2024-02-27 10:55:04.184 1000 STREAM 141924 21178 6083447 2024-02-27 10:57:04.189 2024-02-27 10:57:04.189 1000 STREAM 141924 12160 6083450 2024-02-27 10:58:04.194 2024-02-27 10:58:04.194 1000 STREAM 141924 18170 6083453 2024-02-27 11:00:04.288 2024-02-27 11:00:04.288 1000 STREAM 141924 20106 6083463 2024-02-27 11:02:04.222 2024-02-27 11:02:04.222 1000 STREAM 141924 19662 6083465 2024-02-27 11:03:04.224 2024-02-27 11:03:04.224 1000 STREAM 141924 19398 6083473 2024-02-27 11:05:04.224 2024-02-27 11:05:04.224 1000 STREAM 141924 2724 6083476 2024-02-27 11:06:04.258 2024-02-27 11:06:04.258 1000 STREAM 141924 14449 6083489 2024-02-27 11:08:04.245 2024-02-27 11:08:04.245 1000 STREAM 141924 3478 6083495 2024-02-27 11:09:04.255 2024-02-27 11:09:04.255 1000 STREAM 141924 21248 6083507 2024-02-27 11:10:04.308 2024-02-27 11:10:04.308 1000 STREAM 141924 12774 6083194 2024-02-27 09:54:04.536 2024-02-27 09:54:04.536 1000 STREAM 141924 656 6083245 2024-02-27 10:02:03.778 2024-02-27 10:02:03.778 1000 STREAM 141924 9355 6083250 2024-02-27 10:03:03.799 2024-02-27 10:03:03.799 1000 STREAM 141924 2065 6083275 2024-02-27 10:06:03.827 2024-02-27 10:06:03.827 1000 STREAM 141924 1567 6083282 2024-02-27 10:09:03.823 2024-02-27 10:09:03.823 1000 STREAM 141924 5069 6083283 2024-02-27 10:10:03.835 2024-02-27 10:10:03.835 1000 STREAM 141924 19507 6083286 2024-02-27 10:11:03.825 2024-02-27 10:11:03.825 1000 STREAM 141924 651 6083289 2024-02-27 10:12:03.831 2024-02-27 10:12:03.831 1000 STREAM 141924 16679 6083294 2024-02-27 10:13:03.822 2024-02-27 10:13:03.822 1000 STREAM 141924 17713 6083279 2024-02-27 10:08:12.921 2024-02-27 10:08:12.921 100000 FEE 440390 4391 6083295 2024-02-27 10:13:15.762 2024-02-27 10:13:15.762 800 FEE 440247 18409 6083296 2024-02-27 10:13:15.762 2024-02-27 10:13:15.762 7200 TIP 440247 21296 6083313 2024-02-27 10:16:13.942 2024-02-27 10:16:13.942 800 FEE 440394 16867 6083314 2024-02-27 10:16:13.942 2024-02-27 10:16:13.942 7200 TIP 440394 18230 6083321 2024-02-27 10:17:19.314 2024-02-27 10:17:19.314 2100 FEE 440394 20258 6083322 2024-02-27 10:17:19.314 2024-02-27 10:17:19.314 18900 TIP 440394 18452 6083324 2024-02-27 10:17:47.803 2024-02-27 10:17:47.803 1000 FEE 440398 21562 6083339 2024-02-27 10:19:51.43 2024-02-27 10:19:51.43 100000 FEE 440401 13100 6083347 2024-02-27 10:21:04.663 2024-02-27 10:21:04.663 15000 FEE 440403 8385 6083354 2024-02-27 10:25:11.709 2024-02-27 10:25:11.709 500 FEE 440080 19906 6083355 2024-02-27 10:25:11.709 2024-02-27 10:25:11.709 4500 TIP 440080 19435 6083359 2024-02-27 10:28:19.078 2024-02-27 10:28:19.078 21000 FEE 440404 2734 6083372 2024-02-27 10:33:33.999 2024-02-27 10:33:33.999 2100 FEE 440350 19329 6083373 2024-02-27 10:33:33.999 2024-02-27 10:33:33.999 18900 TIP 440350 17365 6083376 2024-02-27 10:34:35.529 2024-02-27 10:34:35.529 10000 FEE 440407 1745 6083392 2024-02-27 10:43:05.346 2024-02-27 10:43:05.346 11000 FEE 440408 15890 6083398 2024-02-27 10:44:27.769 2024-02-27 10:44:27.769 1000 FEE 440411 20511 6083404 2024-02-27 10:46:25.692 2024-02-27 10:46:25.692 0 FEE 440410 16309 6083408 2024-02-27 10:46:45.369 2024-02-27 10:46:45.369 800 FEE 440412 18402 6083409 2024-02-27 10:46:45.369 2024-02-27 10:46:45.369 7200 TIP 440412 909 6083419 2024-02-27 10:51:21.8 2024-02-27 10:51:21.8 100 FEE 440099 16329 6083420 2024-02-27 10:51:21.8 2024-02-27 10:51:21.8 900 TIP 440099 1970 6083437 2024-02-27 10:55:03.37 2024-02-27 10:55:03.37 1000 FEE 440267 7966 6083438 2024-02-27 10:55:03.37 2024-02-27 10:55:03.37 9000 TIP 440267 20110 6083461 2024-02-27 11:01:12.021 2024-02-27 11:01:12.021 0 FEE 440425 19309 6083478 2024-02-27 11:06:16.826 2024-02-27 11:06:16.826 100000 FEE 440430 787 6083505 2024-02-27 11:10:02.88 2024-02-27 11:10:02.88 2100 FEE 440419 4079 6083506 2024-02-27 11:10:02.88 2024-02-27 11:10:02.88 18900 TIP 440419 687 6083508 2024-02-27 11:10:16.536 2024-02-27 11:10:16.536 1000 FEE 440435 659 6083576 2024-02-27 11:20:28.243 2024-02-27 11:20:28.243 2100 FEE 440399 15326 6083577 2024-02-27 11:20:28.243 2024-02-27 11:20:28.243 18900 TIP 440399 20660 6083581 2024-02-27 11:21:16.971 2024-02-27 11:21:16.971 3200 FEE 440450 859 6083582 2024-02-27 11:21:16.971 2024-02-27 11:21:16.971 28800 TIP 440450 19346 6083583 2024-02-27 11:21:48.208 2024-02-27 11:21:48.208 4000 FEE 440394 1180 6083584 2024-02-27 11:21:48.208 2024-02-27 11:21:48.208 36000 TIP 440394 20614 6083585 2024-02-27 11:22:00.051 2024-02-27 11:22:00.051 4000 FEE 440361 650 6083586 2024-02-27 11:22:00.051 2024-02-27 11:22:00.051 36000 TIP 440361 13921 6083618 2024-02-27 11:25:05.504 2024-02-27 11:25:05.504 1600 FEE 440459 5557 6083619 2024-02-27 11:25:05.504 2024-02-27 11:25:05.504 14400 TIP 440459 21214 6083621 2024-02-27 11:25:34.187 2024-02-27 11:25:34.187 1000 FEE 440404 4692 6083622 2024-02-27 11:25:34.187 2024-02-27 11:25:34.187 9000 TIP 440404 4958 6083657 2024-02-27 11:27:28.229 2024-02-27 11:27:28.229 100 FEE 440459 19535 6083658 2024-02-27 11:27:28.229 2024-02-27 11:27:28.229 900 TIP 440459 20272 6083670 2024-02-27 11:28:17.784 2024-02-27 11:28:17.784 0 FEE 440460 6653 6083671 2024-02-27 11:28:19.031 2024-02-27 11:28:19.031 1000 FEE 440168 9844 6083672 2024-02-27 11:28:19.031 2024-02-27 11:28:19.031 9000 TIP 440168 17011 6083682 2024-02-27 11:28:59.651 2024-02-27 11:28:59.651 0 FEE 440460 13046 6083712 2024-02-27 11:34:56.885 2024-02-27 11:34:56.885 1000 FEE 440470 15337 6083724 2024-02-27 11:36:27.666 2024-02-27 11:36:27.666 0 FEE 440470 7809 6083740 2024-02-27 11:40:53.167 2024-02-27 11:40:53.167 5000 FEE 440206 11897 6083741 2024-02-27 11:40:53.167 2024-02-27 11:40:53.167 45000 TIP 440206 4175 6083747 2024-02-27 11:41:31.114 2024-02-27 11:41:31.114 0 FEE 440473 15147 6083773 2024-02-27 11:46:05.545 2024-02-27 11:46:05.545 1000 FEE 440470 20603 6083774 2024-02-27 11:46:05.545 2024-02-27 11:46:05.545 9000 TIP 440470 16193 6083779 2024-02-27 11:46:10.129 2024-02-27 11:46:10.129 1000 FEE 440450 16442 6083780 2024-02-27 11:46:10.129 2024-02-27 11:46:10.129 9000 TIP 440450 20201 6083792 2024-02-27 11:48:26.833 2024-02-27 11:48:26.833 1000 FEE 440483 15060 6083809 2024-02-27 11:49:11.302 2024-02-27 11:49:11.302 4000 FEE 440433 20841 6083810 2024-02-27 11:49:11.302 2024-02-27 11:49:11.302 36000 TIP 440433 20436 6083814 2024-02-27 11:49:55.489 2024-02-27 11:49:55.489 1000 FEE 440485 680 6083860 2024-02-27 11:58:51.752 2024-02-27 11:58:51.752 1000 FEE 440487 5128 6083877 2024-02-27 12:03:43.506 2024-02-27 12:03:43.506 100 FEE 440132 640 6083878 2024-02-27 12:03:43.506 2024-02-27 12:03:43.506 900 TIP 440132 21532 6083882 2024-02-27 12:06:03.699 2024-02-27 12:06:03.699 3300 FEE 440483 622 6083883 2024-02-27 12:06:03.699 2024-02-27 12:06:03.699 29700 TIP 440483 12158 6083893 2024-02-27 12:09:31.732 2024-02-27 12:09:31.732 2100 FEE 440054 618 6083894 2024-02-27 12:09:31.732 2024-02-27 12:09:31.732 18900 TIP 440054 15521 6083910 2024-02-27 12:14:17.055 2024-02-27 12:14:17.055 1000 FEE 440424 4323 6083911 2024-02-27 12:14:17.055 2024-02-27 12:14:17.055 9000 TIP 440424 8570 6083912 2024-02-27 12:14:17.462 2024-02-27 12:14:17.462 1000 FEE 440424 992 6083913 2024-02-27 12:14:17.462 2024-02-27 12:14:17.462 9000 TIP 440424 979 6083914 2024-02-27 12:14:18.081 2024-02-27 12:14:18.081 1000 FEE 440424 15239 6083915 2024-02-27 12:14:18.081 2024-02-27 12:14:18.081 9000 TIP 440424 2176 6083921 2024-02-27 12:14:58.785 2024-02-27 12:14:58.785 1000 FEE 440498 21482 6083923 2024-02-27 12:15:44.283 2024-02-27 12:15:44.283 5000 FEE 440450 21387 6083924 2024-02-27 12:15:44.283 2024-02-27 12:15:44.283 45000 TIP 440450 20858 6083932 2024-02-27 12:16:05.672 2024-02-27 12:16:05.672 1000 FEE 440499 951 6083301 2024-02-27 10:14:03.842 2024-02-27 10:14:03.842 1000 STREAM 141924 20788 6083319 2024-02-27 10:17:03.859 2024-02-27 10:17:03.859 1000 STREAM 141924 10849 6083327 2024-02-27 10:18:03.869 2024-02-27 10:18:03.869 1000 STREAM 141924 974 6083358 2024-02-27 10:28:03.959 2024-02-27 10:28:03.959 1000 STREAM 141924 19813 6083361 2024-02-27 10:29:03.959 2024-02-27 10:29:03.959 1000 STREAM 141924 15690 6083366 2024-02-27 10:31:03.977 2024-02-27 10:31:03.977 1000 STREAM 141924 10690 6083367 2024-02-27 10:32:03.997 2024-02-27 10:32:03.997 1000 STREAM 141924 18704 6083374 2024-02-27 10:34:04.015 2024-02-27 10:34:04.015 1000 STREAM 141924 1478 6083377 2024-02-27 10:35:04.022 2024-02-27 10:35:04.022 1000 STREAM 141924 1354 6083384 2024-02-27 10:40:04.119 2024-02-27 10:40:04.119 1000 STREAM 141924 622 6083385 2024-02-27 10:41:04.089 2024-02-27 10:41:04.089 1000 STREAM 141924 19158 6083390 2024-02-27 10:42:04.118 2024-02-27 10:42:04.118 1000 STREAM 141924 828 6083395 2024-02-27 10:44:04.108 2024-02-27 10:44:04.108 1000 STREAM 141924 4083 6083399 2024-02-27 10:45:04.138 2024-02-27 10:45:04.138 1000 STREAM 141924 20782 6083410 2024-02-27 10:47:04.134 2024-02-27 10:47:04.134 1000 STREAM 141924 6030 6083418 2024-02-27 10:51:04.153 2024-02-27 10:51:04.153 1000 STREAM 141924 17106 6083429 2024-02-27 10:52:04.161 2024-02-27 10:52:04.161 1000 STREAM 141924 20264 6083431 2024-02-27 10:53:04.165 2024-02-27 10:53:04.165 1000 STREAM 141924 20162 6083433 2024-02-27 10:54:04.177 2024-02-27 10:54:04.177 1000 STREAM 141924 11073 6083445 2024-02-27 10:56:04.194 2024-02-27 10:56:04.194 1000 STREAM 141924 14651 6083451 2024-02-27 10:59:04.202 2024-02-27 10:59:04.202 1000 STREAM 141924 18641 6083460 2024-02-27 11:01:04.215 2024-02-27 11:01:04.215 1000 STREAM 141924 1468 6083472 2024-02-27 11:04:04.23 2024-02-27 11:04:04.23 1000 STREAM 141924 16124 6083335 2024-02-27 10:19:04.909 2024-02-27 10:19:04.909 1000 STREAM 141924 15491 6083353 2024-02-27 10:25:03.864 2024-02-27 10:25:03.864 1000 STREAM 141924 3342 6083357 2024-02-27 10:27:03.892 2024-02-27 10:27:03.892 1000 STREAM 141924 19910 6083514 2024-02-27 11:11:04.115 2024-02-27 11:11:04.115 1000 STREAM 141924 6360 6083540 2024-02-27 11:14:04.123 2024-02-27 11:14:04.123 1000 STREAM 141924 20841 6083551 2024-02-27 11:15:04.124 2024-02-27 11:15:04.124 1000 STREAM 141924 1726 6083561 2024-02-27 11:16:04.141 2024-02-27 11:16:04.141 1000 STREAM 141924 10849 6083568 2024-02-27 11:18:04.14 2024-02-27 11:18:04.14 1000 STREAM 141924 17455 6083575 2024-02-27 11:20:04.157 2024-02-27 11:20:04.157 1000 STREAM 141924 9438 6083595 2024-02-27 11:23:04.168 2024-02-27 11:23:04.168 1000 STREAM 141924 8385 6083611 2024-02-27 11:24:04.167 2024-02-27 11:24:04.167 1000 STREAM 141924 15196 6083639 2024-02-27 11:26:04.176 2024-02-27 11:26:04.176 1000 STREAM 141924 11240 6083666 2024-02-27 11:28:04.193 2024-02-27 11:28:04.193 1000 STREAM 141924 10060 6083684 2024-02-27 11:29:04.188 2024-02-27 11:29:04.188 1000 STREAM 141924 980 6083688 2024-02-27 11:30:04.195 2024-02-27 11:30:04.195 1000 STREAM 141924 9330 6083705 2024-02-27 11:32:04.194 2024-02-27 11:32:04.194 1000 STREAM 141924 13575 6083720 2024-02-27 11:36:04.217 2024-02-27 11:36:04.217 1000 STREAM 141924 627 6083736 2024-02-27 11:39:04.213 2024-02-27 11:39:04.213 1000 STREAM 141924 2537 6083739 2024-02-27 11:40:04.215 2024-02-27 11:40:04.215 1000 STREAM 141924 16059 6083746 2024-02-27 11:41:04.225 2024-02-27 11:41:04.225 1000 STREAM 141924 8726 6083748 2024-02-27 11:42:04.218 2024-02-27 11:42:04.218 1000 STREAM 141924 10519 6083753 2024-02-27 11:43:04.22 2024-02-27 11:43:04.22 1000 STREAM 141924 3440 6083761 2024-02-27 11:45:04.232 2024-02-27 11:45:04.232 1000 STREAM 141924 4624 6083770 2024-02-27 11:46:04.239 2024-02-27 11:46:04.239 1000 STREAM 141924 2061 6083815 2024-02-27 11:50:04.256 2024-02-27 11:50:04.256 1000 STREAM 141924 18745 6083827 2024-02-27 11:51:04.269 2024-02-27 11:51:04.269 1000 STREAM 141924 9276 6083839 2024-02-27 11:52:04.276 2024-02-27 11:52:04.276 1000 STREAM 141924 4167 6083896 2024-02-27 12:11:02.412 2024-02-27 12:11:02.412 1000 STREAM 141924 679 6083900 2024-02-27 12:12:02.415 2024-02-27 12:12:02.415 1000 STREAM 141924 11498 6083929 2024-02-27 12:16:02.422 2024-02-27 12:16:02.422 1000 STREAM 141924 21320 6083940 2024-02-27 12:18:02.441 2024-02-27 12:18:02.441 1000 STREAM 141924 20353 6083941 2024-02-27 12:19:02.446 2024-02-27 12:19:02.446 1000 STREAM 141924 3342 6083943 2024-02-27 12:20:02.464 2024-02-27 12:20:02.464 1000 STREAM 141924 5449 6083386 2024-02-27 10:41:36.554 2024-02-27 10:41:36.554 5000 FEE 440335 10291 6083387 2024-02-27 10:41:36.554 2024-02-27 10:41:36.554 45000 TIP 440335 19527 6083421 2024-02-27 10:51:22.194 2024-02-27 10:51:22.194 100 FEE 440099 1044 6083422 2024-02-27 10:51:22.194 2024-02-27 10:51:22.194 900 TIP 440099 5497 6083425 2024-02-27 10:51:22.636 2024-02-27 10:51:22.636 100 FEE 440099 11328 6083426 2024-02-27 10:51:22.636 2024-02-27 10:51:22.636 900 TIP 440099 18306 6083444 2024-02-27 10:55:58.226 2024-02-27 10:55:58.226 0 FEE 440419 15115 6083452 2024-02-27 10:59:33.253 2024-02-27 10:59:33.253 1000 FEE 440421 16145 6083502 2024-02-27 11:09:32.076 2024-02-27 11:09:32.076 2100 FEE 440413 10638 6083503 2024-02-27 11:09:32.076 2024-02-27 11:09:32.076 18900 TIP 440413 2256 6083515 2024-02-27 11:11:05.946 2024-02-27 11:11:05.946 100 FEE 440428 12769 6083516 2024-02-27 11:11:05.946 2024-02-27 11:11:05.946 900 TIP 440428 18309 6083534 2024-02-27 11:12:41.593 2024-02-27 11:12:41.593 0 FEE 440439 1652 6083535 2024-02-27 11:12:47.209 2024-02-27 11:12:47.209 1000 FEE 440441 2776 6083536 2024-02-27 11:12:48.891 2024-02-27 11:12:48.891 100000 FEE 440442 2640 6083553 2024-02-27 11:15:14.274 2024-02-27 11:15:14.274 3200 FEE 440436 19622 6083554 2024-02-27 11:15:14.274 2024-02-27 11:15:14.274 28800 TIP 440436 16879 6083560 2024-02-27 11:16:00.009 2024-02-27 11:16:00.009 1000 FEE 440451 21585 6083590 2024-02-27 11:22:18.04 2024-02-27 11:22:18.04 1000 FEE 440459 2264 6083593 2024-02-27 11:23:02.94 2024-02-27 11:23:02.94 4000 FEE 440259 678 6083594 2024-02-27 11:23:02.94 2024-02-27 11:23:02.94 36000 TIP 440259 16124 6083606 2024-02-27 11:23:41.833 2024-02-27 11:23:41.833 1000 FEE 440460 21281 6083614 2024-02-27 11:24:29.202 2024-02-27 11:24:29.202 0 FEE 440456 19016 6083630 2024-02-27 11:25:43.695 2024-02-27 11:25:43.695 2100 FEE 440241 18945 6083631 2024-02-27 11:25:43.695 2024-02-27 11:25:43.695 18900 TIP 440241 11430 6083636 2024-02-27 11:25:47.756 2024-02-27 11:25:47.756 2100 FEE 440206 18956 6083637 2024-02-27 11:25:47.756 2024-02-27 11:25:47.756 18900 TIP 440206 8168 6083673 2024-02-27 11:28:20.94 2024-02-27 11:28:20.94 100 FEE 440433 1044 6083674 2024-02-27 11:28:20.94 2024-02-27 11:28:20.94 900 TIP 440433 4487 6083689 2024-02-27 11:30:13.092 2024-02-27 11:30:13.092 1000 FEE 440443 20036 6083690 2024-02-27 11:30:13.092 2024-02-27 11:30:13.092 9000 TIP 440443 15337 6083696 2024-02-27 11:30:44.451 2024-02-27 11:30:44.451 100 FEE 440137 16769 6083697 2024-02-27 11:30:44.451 2024-02-27 11:30:44.451 900 TIP 440137 1890 6083711 2024-02-27 11:34:40.188 2024-02-27 11:34:40.188 1000 FEE 440469 2327 6083732 2024-02-27 11:38:26.325 2024-02-27 11:38:26.325 1000 FEE 440473 7899 6083735 2024-02-27 11:38:57.72 2024-02-27 11:38:57.72 0 FEE 440473 12946 6083762 2024-02-27 11:45:45.617 2024-02-27 11:45:45.617 1000 FEE 440459 13076 6083763 2024-02-27 11:45:45.617 2024-02-27 11:45:45.617 9000 TIP 440459 16594 6083777 2024-02-27 11:46:09.222 2024-02-27 11:46:09.222 1000 FEE 440451 14669 6083778 2024-02-27 11:46:09.222 2024-02-27 11:46:09.222 9000 TIP 440451 987 6083785 2024-02-27 11:46:18.907 2024-02-27 11:46:18.907 1000 FEE 440433 12368 6083786 2024-02-27 11:46:18.907 2024-02-27 11:46:18.907 9000 TIP 440433 20439 6083830 2024-02-27 11:51:06.164 2024-02-27 11:51:06.164 1000 FEE 440350 999 6083831 2024-02-27 11:51:06.164 2024-02-27 11:51:06.164 9000 TIP 440350 16876 6083836 2024-02-27 11:51:48.828 2024-02-27 11:51:48.828 1000 FEE 440472 16684 6083837 2024-02-27 11:51:48.828 2024-02-27 11:51:48.828 9000 TIP 440472 16847 6083864 2024-02-27 11:59:18.021 2024-02-27 11:59:18.021 2100 FEE 440441 10519 6083865 2024-02-27 11:59:18.021 2024-02-27 11:59:18.021 18900 TIP 440441 18618 6083907 2024-02-27 12:14:00.309 2024-02-27 12:14:00.309 5000 FEE 440470 9552 6083908 2024-02-27 12:14:00.309 2024-02-27 12:14:00.309 45000 TIP 440470 631 6083916 2024-02-27 12:14:18.575 2024-02-27 12:14:18.575 1000 FEE 440424 17237 6083917 2024-02-27 12:14:18.575 2024-02-27 12:14:18.575 9000 TIP 440424 3371 6083930 2024-02-27 12:16:03.192 2024-02-27 12:16:03.192 4000 FEE 440495 20502 6083931 2024-02-27 12:16:03.192 2024-02-27 12:16:03.192 36000 TIP 440495 5829 6083950 2024-02-27 12:20:29.706 2024-02-27 12:20:29.706 100 FEE 440481 706 6083951 2024-02-27 12:20:29.706 2024-02-27 12:20:29.706 900 TIP 440481 2513 6083968 2024-02-27 12:23:08.478 2024-02-27 12:23:08.478 2100 FEE 440471 902 6083969 2024-02-27 12:23:08.478 2024-02-27 12:23:08.478 18900 TIP 440471 8544 6083980 2024-02-27 12:23:47.101 2024-02-27 12:23:47.101 2100 FEE 440442 836 6083981 2024-02-27 12:23:47.101 2024-02-27 12:23:47.101 18900 TIP 440442 18368 6083986 2024-02-27 12:24:00.399 2024-02-27 12:24:00.399 2100 FEE 440473 14651 6083987 2024-02-27 12:24:00.399 2024-02-27 12:24:00.399 18900 TIP 440473 18124 6083988 2024-02-27 12:24:00.838 2024-02-27 12:24:00.838 2100 FEE 440433 19462 6083989 2024-02-27 12:24:00.838 2024-02-27 12:24:00.838 18900 TIP 440433 1624 6083995 2024-02-27 12:24:06.323 2024-02-27 12:24:06.323 2100 FEE 440460 9275 6083996 2024-02-27 12:24:06.323 2024-02-27 12:24:06.323 18900 TIP 440460 16834 6084003 2024-02-27 12:24:13.088 2024-02-27 12:24:13.088 2100 FEE 440459 9331 6084004 2024-02-27 12:24:13.088 2024-02-27 12:24:13.088 18900 TIP 440459 8544 6084021 2024-02-27 12:24:35.019 2024-02-27 12:24:35.019 4000 FEE 440500 2609 6084022 2024-02-27 12:24:35.019 2024-02-27 12:24:35.019 36000 TIP 440500 21612 6084064 2024-02-27 12:27:05.965 2024-02-27 12:27:05.965 2100 FEE 440471 14080 6084065 2024-02-27 12:27:05.965 2024-02-27 12:27:05.965 18900 TIP 440471 3213 6084164 2024-02-27 12:57:12.844 2024-02-27 12:57:12.844 2700 FEE 439729 19375 6084165 2024-02-27 12:57:12.844 2024-02-27 12:57:12.844 24300 TIP 439729 21287 6084166 2024-02-27 12:57:12.999 2024-02-27 12:57:12.999 2700 FEE 439729 17514 6084167 2024-02-27 12:57:12.999 2024-02-27 12:57:12.999 24300 TIP 439729 670 6084168 2024-02-27 12:57:13.163 2024-02-27 12:57:13.163 2700 FEE 439729 18641 6084169 2024-02-27 12:57:13.163 2024-02-27 12:57:13.163 24300 TIP 439729 9496 6084197 2024-02-27 12:59:46.71 2024-02-27 12:59:46.71 1000 FEE 440481 16354 6084198 2024-02-27 12:59:46.71 2024-02-27 12:59:46.71 9000 TIP 440481 2576 6084213 2024-02-27 12:59:58.314 2024-02-27 12:59:58.314 1000 FEE 440472 11075 6084214 2024-02-27 12:59:58.314 2024-02-27 12:59:58.314 9000 TIP 440472 9364 6084221 2024-02-27 12:59:59.295 2024-02-27 12:59:59.295 1000 FEE 440472 9246 6084222 2024-02-27 12:59:59.295 2024-02-27 12:59:59.295 9000 TIP 440472 18460 6084225 2024-02-27 13:01:22.181 2024-02-27 13:01:22.181 1000 FEE 440523 20377 6084254 2024-02-27 13:04:15.832 2024-02-27 13:04:15.832 1000 FEE 409915 12272 6084255 2024-02-27 13:04:15.832 2024-02-27 13:04:15.832 9000 TIP 409915 1620 6084256 2024-02-27 13:04:16.542 2024-02-27 13:04:16.542 1000 FEE 408644 1007 6084257 2024-02-27 13:04:16.542 2024-02-27 13:04:16.542 9000 TIP 408644 736 6084258 2024-02-27 13:04:16.779 2024-02-27 13:04:16.779 2100 FEE 440386 18460 6084259 2024-02-27 13:04:16.779 2024-02-27 13:04:16.779 18900 TIP 440386 20812 6084264 2024-02-27 13:04:19.68 2024-02-27 13:04:19.68 100 FEE 440318 6335 6084265 2024-02-27 13:04:19.68 2024-02-27 13:04:19.68 900 TIP 440318 20704 6084274 2024-02-27 13:04:26.47 2024-02-27 13:04:26.47 1000 FEE 439263 16424 6084275 2024-02-27 13:04:26.47 2024-02-27 13:04:26.47 9000 TIP 439263 14465 6084286 2024-02-27 13:04:43.368 2024-02-27 13:04:43.368 1000 FEE 440056 10638 6084287 2024-02-27 13:04:43.368 2024-02-27 13:04:43.368 9000 TIP 440056 1474 6084288 2024-02-27 13:04:49.32 2024-02-27 13:04:49.32 1000 FEE 440446 21140 6084289 2024-02-27 13:04:49.32 2024-02-27 13:04:49.32 9000 TIP 440446 6393 6083482 2024-02-27 11:07:04.235 2024-02-27 11:07:04.235 1000 STREAM 141924 19981 6083532 2024-02-27 11:12:04.102 2024-02-27 11:12:04.102 1000 STREAM 141924 17891 6083537 2024-02-27 11:13:04.111 2024-02-27 11:13:04.111 1000 STREAM 141924 2039 6083563 2024-02-27 11:17:04.138 2024-02-27 11:17:04.138 1000 STREAM 141924 16282 6083571 2024-02-27 11:19:04.147 2024-02-27 11:19:04.147 1000 STREAM 141924 8380 6083578 2024-02-27 11:21:04.178 2024-02-27 11:21:04.178 1000 STREAM 141924 19527 6083587 2024-02-27 11:22:04.154 2024-02-27 11:22:04.154 1000 STREAM 141924 21166 6083617 2024-02-27 11:25:04.17 2024-02-27 11:25:04.17 1000 STREAM 141924 2326 6083654 2024-02-27 11:27:04.188 2024-02-27 11:27:04.188 1000 STREAM 141924 21506 6083700 2024-02-27 11:31:04.202 2024-02-27 11:31:04.202 1000 STREAM 141924 782 6083708 2024-02-27 11:33:04.202 2024-02-27 11:33:04.202 1000 STREAM 141924 15226 6083710 2024-02-27 11:34:04.207 2024-02-27 11:34:04.207 1000 STREAM 141924 19890 6083714 2024-02-27 11:35:04.211 2024-02-27 11:35:04.211 1000 STREAM 141924 7654 6083727 2024-02-27 11:37:04.217 2024-02-27 11:37:04.217 1000 STREAM 141924 15624 6083731 2024-02-27 11:38:04.212 2024-02-27 11:38:04.212 1000 STREAM 141924 6003 6083756 2024-02-27 11:44:04.229 2024-02-27 11:44:04.229 1000 STREAM 141924 11516 6083788 2024-02-27 11:47:04.242 2024-02-27 11:47:04.242 1000 STREAM 141924 19154 6083791 2024-02-27 11:48:04.283 2024-02-27 11:48:04.283 1000 STREAM 141924 2367 6083806 2024-02-27 11:49:04.258 2024-02-27 11:49:04.258 1000 STREAM 141924 12609 6083842 2024-02-27 11:53:04.272 2024-02-27 11:53:04.272 1000 STREAM 141924 16432 6083598 2024-02-27 11:23:34.971 2024-02-27 11:23:34.971 4000 FEE 440241 21481 6083599 2024-02-27 11:23:34.971 2024-02-27 11:23:34.971 36000 TIP 440241 21405 6083608 2024-02-27 11:23:54.155 2024-02-27 11:23:54.155 4000 FEE 440443 965 6083609 2024-02-27 11:23:54.155 2024-02-27 11:23:54.155 36000 TIP 440443 3213 6083610 2024-02-27 11:23:54.314 2024-02-27 11:23:54.314 0 FEE 440460 18641 6083632 2024-02-27 11:25:45.289 2024-02-27 11:25:45.289 2100 FEE 440128 20861 6083633 2024-02-27 11:25:45.289 2024-02-27 11:25:45.289 18900 TIP 440128 1320 6083638 2024-02-27 11:25:56.73 2024-02-27 11:25:56.73 0 FEE 440460 21373 6083640 2024-02-27 11:26:05.734 2024-02-27 11:26:05.734 0 FEE 440460 21522 6083641 2024-02-27 11:26:08.399 2024-02-27 11:26:08.399 69000 FEE 440463 2188 6083645 2024-02-27 11:26:38.527 2024-02-27 11:26:38.527 2000 FEE 440340 19569 6083646 2024-02-27 11:26:38.527 2024-02-27 11:26:38.527 18000 TIP 440340 17927 6083655 2024-02-27 11:27:19.339 2024-02-27 11:27:19.339 100 FEE 440413 8245 6083656 2024-02-27 11:27:19.339 2024-02-27 11:27:19.339 900 TIP 440413 19601 6083659 2024-02-27 11:27:38.113 2024-02-27 11:27:38.113 100 FEE 440451 16809 6083660 2024-02-27 11:27:38.113 2024-02-27 11:27:38.113 900 TIP 440451 19815 6083664 2024-02-27 11:27:59.207 2024-02-27 11:27:59.207 2000 FEE 440213 11073 6083665 2024-02-27 11:27:59.207 2024-02-27 11:27:59.207 18000 TIP 440213 3717 6083669 2024-02-27 11:28:10.985 2024-02-27 11:28:10.985 0 FEE 440460 20922 6083715 2024-02-27 11:35:09.058 2024-02-27 11:35:09.058 0 FEE 440470 19572 6083717 2024-02-27 11:35:45.943 2024-02-27 11:35:45.943 0 FEE 440470 17682 6083733 2024-02-27 11:38:44.169 2024-02-27 11:38:44.169 2100 FEE 440443 7553 6083734 2024-02-27 11:38:44.169 2024-02-27 11:38:44.169 18900 TIP 440443 7916 6083749 2024-02-27 11:42:25.893 2024-02-27 11:42:25.893 1000 FEE 440463 8541 6083750 2024-02-27 11:42:25.893 2024-02-27 11:42:25.893 9000 TIP 440463 683 6083754 2024-02-27 11:43:55.03 2024-02-27 11:43:55.03 5000 FEE 439947 13575 6083755 2024-02-27 11:43:55.03 2024-02-27 11:43:55.03 45000 TIP 439947 13399 6083771 2024-02-27 11:46:04.305 2024-02-27 11:46:04.305 1000 FEE 440459 19812 6083772 2024-02-27 11:46:04.305 2024-02-27 11:46:04.305 9000 TIP 440459 11829 6083807 2024-02-27 11:49:09.932 2024-02-27 11:49:09.932 30000 FEE 440484 825 6083808 2024-02-27 11:49:09.932 2024-02-27 11:49:09.932 270000 TIP 440484 13399 6083816 2024-02-27 11:50:12.879 2024-02-27 11:50:12.879 0 FEE 440485 18372 6083825 2024-02-27 11:51:03.409 2024-02-27 11:51:03.409 1000 FEE 440410 9350 6083826 2024-02-27 11:51:03.409 2024-02-27 11:51:03.409 9000 TIP 440410 10668 6083846 2024-02-27 11:54:12.278 2024-02-27 11:54:12.278 2100 FEE 440484 618 6083847 2024-02-27 11:54:12.278 2024-02-27 11:54:12.278 18900 TIP 440484 1713 6083848 2024-02-27 11:54:52.169 2024-02-27 11:54:52.169 2100 FEE 440471 20987 6083849 2024-02-27 11:54:52.169 2024-02-27 11:54:52.169 18900 TIP 440471 21247 6083850 2024-02-27 11:55:00.548 2024-02-27 11:55:00.548 1000 FEE 440442 844 6083851 2024-02-27 11:55:00.548 2024-02-27 11:55:00.548 9000 TIP 440442 20647 6083866 2024-02-27 11:59:29.82 2024-02-27 11:59:29.82 2100 FEE 440461 12744 6083867 2024-02-27 11:59:29.82 2024-02-27 11:59:29.82 18900 TIP 440461 11821 6083933 2024-02-27 12:16:09.509 2024-02-27 12:16:09.509 4000 FEE 440489 21591 6083934 2024-02-27 12:16:09.509 2024-02-27 12:16:09.509 36000 TIP 440489 18731 6083938 2024-02-27 12:16:32.267 2024-02-27 12:16:32.267 1000 FEE 440500 15728 6083942 2024-02-27 12:19:03.912 2024-02-27 12:19:03.912 1000 FEE 440501 2151 6083944 2024-02-27 12:20:14.213 2024-02-27 12:20:14.213 100 FEE 440495 19462 6083945 2024-02-27 12:20:14.213 2024-02-27 12:20:14.213 900 TIP 440495 1224 6083956 2024-02-27 12:20:56.587 2024-02-27 12:20:56.587 1000 FEE 440502 670 6083958 2024-02-27 12:21:29.264 2024-02-27 12:21:29.264 0 FEE 440502 9169 6083966 2024-02-27 12:23:05.539 2024-02-27 12:23:05.539 2100 FEE 440463 18659 6083967 2024-02-27 12:23:05.539 2024-02-27 12:23:05.539 18900 TIP 440463 15282 6083976 2024-02-27 12:23:26.48 2024-02-27 12:23:26.48 1000 FEE 440504 706 6083990 2024-02-27 12:24:02.632 2024-02-27 12:24:02.632 2100 FEE 440469 8648 6083991 2024-02-27 12:24:02.632 2024-02-27 12:24:02.632 18900 TIP 440469 19333 6083993 2024-02-27 12:24:05.741 2024-02-27 12:24:05.741 2100 FEE 440464 9347 6083994 2024-02-27 12:24:05.741 2024-02-27 12:24:05.741 18900 TIP 440464 17800 6084017 2024-02-27 12:24:28 2024-02-27 12:24:28 2100 FEE 440494 1564 6084018 2024-02-27 12:24:28 2024-02-27 12:24:28 18900 TIP 440494 19576 6084024 2024-02-27 12:25:18.201 2024-02-27 12:25:18.201 1000 FEE 440206 14278 6084025 2024-02-27 12:25:18.201 2024-02-27 12:25:18.201 9000 TIP 440206 11450 6084043 2024-02-27 12:26:18.686 2024-02-27 12:26:18.686 2100 FEE 440472 9365 6084044 2024-02-27 12:26:18.686 2024-02-27 12:26:18.686 18900 TIP 440472 12245 6084045 2024-02-27 12:26:26.346 2024-02-27 12:26:26.346 2100 FEE 440321 1236 6084046 2024-02-27 12:26:26.346 2024-02-27 12:26:26.346 18900 TIP 440321 1044 6084053 2024-02-27 12:26:41.04 2024-02-27 12:26:41.04 2100 FEE 439822 14651 6084054 2024-02-27 12:26:41.04 2024-02-27 12:26:41.04 18900 TIP 439822 16229 6084056 2024-02-27 12:26:50.036 2024-02-27 12:26:50.036 0 FEE 440510 17727 6084096 2024-02-27 12:40:23.914 2024-02-27 12:40:23.914 1100 FEE 440454 20062 6084097 2024-02-27 12:40:23.914 2024-02-27 12:40:23.914 9900 TIP 440454 1603 6084103 2024-02-27 12:41:07.826 2024-02-27 12:41:07.826 1000 FEE 440514 5308 6084104 2024-02-27 12:41:14.904 2024-02-27 12:41:14.904 1000 FEE 440515 2775 6084111 2024-02-27 12:44:27.022 2024-02-27 12:44:27.022 2700 FEE 440281 1495 6084112 2024-02-27 12:44:27.022 2024-02-27 12:44:27.022 24300 TIP 440281 5637 6084132 2024-02-27 12:46:52.775 2024-02-27 12:46:52.775 1000 FEE 440518 18667 6084135 2024-02-27 12:48:26.105 2024-02-27 12:48:26.105 1000 FEE 440519 20168 6084170 2024-02-27 12:57:13.334 2024-02-27 12:57:13.334 2700 FEE 439729 20614 6084171 2024-02-27 12:57:13.334 2024-02-27 12:57:13.334 24300 TIP 439729 16341 6084172 2024-02-27 12:57:13.499 2024-02-27 12:57:13.499 2700 FEE 439729 987 6084173 2024-02-27 12:57:13.499 2024-02-27 12:57:13.499 24300 TIP 439729 19566 6084185 2024-02-27 12:58:24.463 2024-02-27 12:58:24.463 1100 FEE 440350 15409 6084186 2024-02-27 12:58:24.463 2024-02-27 12:58:24.463 9900 TIP 440350 714 6084231 2024-02-27 13:02:24.159 2024-02-27 13:02:24.159 100000 FEE 440459 5444 6084232 2024-02-27 13:02:24.159 2024-02-27 13:02:24.159 900000 TIP 440459 19043 6084243 2024-02-27 13:04:07.68 2024-02-27 13:04:07.68 1000 FEE 435046 7960 6084244 2024-02-27 13:04:07.68 2024-02-27 13:04:07.68 9000 TIP 435046 1030 6084260 2024-02-27 13:04:18.147 2024-02-27 13:04:18.147 1000 FEE 401458 2335 6084261 2024-02-27 13:04:18.147 2024-02-27 13:04:18.147 9000 TIP 401458 11491 6084262 2024-02-27 13:04:18.536 2024-02-27 13:04:18.536 1000 FEE 402029 2098 6084263 2024-02-27 13:04:18.536 2024-02-27 13:04:18.536 9000 TIP 402029 18832 6084266 2024-02-27 13:04:20.807 2024-02-27 13:04:20.807 900 FEE 440318 4776 6084267 2024-02-27 13:04:20.807 2024-02-27 13:04:20.807 8100 TIP 440318 6327 6084268 2024-02-27 13:04:23.227 2024-02-27 13:04:23.227 1000 FEE 440386 20168 6084269 2024-02-27 13:04:23.227 2024-02-27 13:04:23.227 9000 TIP 440386 19449 6084307 2024-02-27 13:06:09.817 2024-02-27 13:06:09.817 1000 FEE 440251 4074 6084308 2024-02-27 13:06:09.817 2024-02-27 13:06:09.817 9000 TIP 440251 9494 6084366 2024-02-27 13:11:31.191 2024-02-27 13:11:31.191 900 FEE 440412 21609 6084367 2024-02-27 13:11:31.191 2024-02-27 13:11:31.191 8100 TIP 440412 16848 6084386 2024-02-27 13:13:27.659 2024-02-27 13:13:27.659 900 FEE 440472 9307 6084387 2024-02-27 13:13:27.659 2024-02-27 13:13:27.659 8100 TIP 440472 20897 6084430 2024-02-27 13:17:36.608 2024-02-27 13:17:36.608 1000 FEE 440132 18449 6084431 2024-02-27 13:17:36.608 2024-02-27 13:17:36.608 9000 TIP 440132 7899 6084432 2024-02-27 13:17:36.799 2024-02-27 13:17:36.799 1000 FEE 440132 14037 6084433 2024-02-27 13:17:36.799 2024-02-27 13:17:36.799 9000 TIP 440132 14385 6084443 2024-02-27 13:19:35.565 2024-02-27 13:19:35.565 1000 FEE 440534 11314 6084444 2024-02-27 13:19:48.999 2024-02-27 13:19:48.999 2100 FEE 440398 18291 6084445 2024-02-27 13:19:48.999 2024-02-27 13:19:48.999 18900 TIP 440398 11798 6084471 2024-02-27 13:20:38.342 2024-02-27 13:20:38.342 6900 FEE 440521 5978 6084472 2024-02-27 13:20:38.342 2024-02-27 13:20:38.342 62100 TIP 440521 6160 6084477 2024-02-27 13:20:38.718 2024-02-27 13:20:38.718 6900 FEE 440521 18368 6084478 2024-02-27 13:20:38.718 2024-02-27 13:20:38.718 62100 TIP 440521 20327 6084487 2024-02-27 13:21:48.614 2024-02-27 13:21:48.614 1000 FEE 440538 738 6083695 2024-02-27 11:30:40 2024-02-27 11:30:40 0 FEE 440460 1425 6083706 2024-02-27 11:32:07.054 2024-02-27 11:32:07.054 1000 FEE 440466 622 6083713 2024-02-27 11:34:59.426 2024-02-27 11:34:59.426 0 FEE 440464 16347 6083719 2024-02-27 11:36:01.537 2024-02-27 11:36:01.537 0 FEE 440470 17944 6083721 2024-02-27 11:36:17.306 2024-02-27 11:36:17.306 0 FEE 440470 717 6083725 2024-02-27 11:36:50.049 2024-02-27 11:36:50.049 6600 FEE 440469 19449 6083726 2024-02-27 11:36:50.049 2024-02-27 11:36:50.049 59400 TIP 440469 4074 6083728 2024-02-27 11:37:11.522 2024-02-27 11:37:11.522 0 FEE 440470 1772 6083737 2024-02-27 11:39:06.069 2024-02-27 11:39:06.069 100000 FEE 440474 19087 6083742 2024-02-27 11:40:53.529 2024-02-27 11:40:53.529 5000 FEE 440206 13406 6083743 2024-02-27 11:40:53.529 2024-02-27 11:40:53.529 45000 TIP 440206 20168 6083764 2024-02-27 11:45:53.658 2024-02-27 11:45:53.658 0 FEE 440472 20036 6083781 2024-02-27 11:46:16.881 2024-02-27 11:46:16.881 1000 FEE 440345 18769 6083782 2024-02-27 11:46:16.881 2024-02-27 11:46:16.881 9000 TIP 440345 1047 6083811 2024-02-27 11:49:19.187 2024-02-27 11:49:19.187 4000 FEE 440473 20156 6083812 2024-02-27 11:49:19.187 2024-02-27 11:49:19.187 36000 TIP 440473 18731 6083813 2024-02-27 11:49:25.346 2024-02-27 11:49:25.346 0 FEE 440484 16948 6083817 2024-02-27 11:50:18.6 2024-02-27 11:50:18.6 1000 FEE 440423 6148 6083818 2024-02-27 11:50:18.6 2024-02-27 11:50:18.6 9000 TIP 440423 2757 6083823 2024-02-27 11:50:37.991 2024-02-27 11:50:37.991 30000 FEE 440089 18005 6083824 2024-02-27 11:50:37.991 2024-02-27 11:50:37.991 270000 TIP 440089 19151 6083844 2024-02-27 11:54:11.154 2024-02-27 11:54:11.154 2100 FEE 440484 18269 6083845 2024-02-27 11:54:11.154 2024-02-27 11:54:11.154 18900 TIP 440484 4819 6083881 2024-02-27 12:05:41.754 2024-02-27 12:05:41.754 1000 FEE 440491 782 6083935 2024-02-27 12:16:18.767 2024-02-27 12:16:18.767 5000 FEE 440194 3400 6083936 2024-02-27 12:16:18.767 2024-02-27 12:16:18.767 45000 TIP 440194 8423 6083946 2024-02-27 12:20:15.741 2024-02-27 12:20:15.741 2100 FEE 440484 19147 6083947 2024-02-27 12:20:15.741 2024-02-27 12:20:15.741 18900 TIP 440484 2039 6083952 2024-02-27 12:20:35.126 2024-02-27 12:20:35.126 100 FEE 440475 1060 6083953 2024-02-27 12:20:35.126 2024-02-27 12:20:35.126 900 TIP 440475 11996 6083959 2024-02-27 12:21:59.956 2024-02-27 12:21:59.956 1000 FEE 440503 15049 6083972 2024-02-27 12:23:10.757 2024-02-27 12:23:10.757 2100 FEE 440489 4391 6083973 2024-02-27 12:23:10.757 2024-02-27 12:23:10.757 18900 TIP 440489 15697 6084047 2024-02-27 12:26:28.35 2024-02-27 12:26:28.35 2100 FEE 440344 21343 6084048 2024-02-27 12:26:28.35 2024-02-27 12:26:28.35 18900 TIP 440344 21116 6084079 2024-02-27 12:33:25.668 2024-02-27 12:33:25.668 1100 FEE 440461 15271 6084080 2024-02-27 12:33:25.668 2024-02-27 12:33:25.668 9900 TIP 440461 18829 6084094 2024-02-27 12:40:12.983 2024-02-27 12:40:12.983 1100 FEE 440432 21061 6084095 2024-02-27 12:40:12.983 2024-02-27 12:40:12.983 9900 TIP 440432 20563 6084110 2024-02-27 12:44:24.883 2024-02-27 12:44:24.883 1000 FEE 440516 16847 6084192 2024-02-27 12:59:32.859 2024-02-27 12:59:32.859 1000 FEE 440522 760 6084226 2024-02-27 13:01:35.405 2024-02-27 13:01:35.405 1000 FEE 440524 696 6084233 2024-02-27 13:02:46.677 2024-02-27 13:02:46.677 100 FEE 440520 18658 6084234 2024-02-27 13:02:46.677 2024-02-27 13:02:46.677 900 TIP 440520 8080 6084248 2024-02-27 13:04:13.166 2024-02-27 13:04:13.166 1000 FEE 424808 17713 6084249 2024-02-27 13:04:13.166 2024-02-27 13:04:13.166 9000 TIP 424808 20704 6084276 2024-02-27 13:04:26.723 2024-02-27 13:04:26.723 1000 FEE 439390 9906 6084277 2024-02-27 13:04:26.723 2024-02-27 13:04:26.723 9000 TIP 439390 17838 6084278 2024-02-27 13:04:27.3 2024-02-27 13:04:27.3 1000 FEE 440344 1605 6084279 2024-02-27 13:04:27.3 2024-02-27 13:04:27.3 9000 TIP 440344 16816 6084280 2024-02-27 13:04:28.987 2024-02-27 13:04:28.987 1000 FEE 440056 9150 6084281 2024-02-27 13:04:28.987 2024-02-27 13:04:28.987 9000 TIP 440056 21343 6084305 2024-02-27 13:06:09.185 2024-02-27 13:06:09.185 1000 FEE 437749 15273 6084306 2024-02-27 13:06:09.185 2024-02-27 13:06:09.185 9000 TIP 437749 5306 6084317 2024-02-27 13:06:54.671 2024-02-27 13:06:54.671 100 FEE 440344 15703 6084318 2024-02-27 13:06:54.671 2024-02-27 13:06:54.671 900 TIP 440344 18119 6084331 2024-02-27 13:08:02.217 2024-02-27 13:08:02.217 900 FEE 440394 19570 6084332 2024-02-27 13:08:02.217 2024-02-27 13:08:02.217 8100 TIP 440394 18314 6084371 2024-02-27 13:12:35.565 2024-02-27 13:12:35.565 1000 FEE 440484 20901 6084372 2024-02-27 13:12:35.565 2024-02-27 13:12:35.565 9000 TIP 440484 19952 6084403 2024-02-27 13:17:16.239 2024-02-27 13:17:16.239 1000 FEE 440531 21051 6084404 2024-02-27 13:17:33.39 2024-02-27 13:17:33.39 1000 FEE 440132 19286 6084405 2024-02-27 13:17:33.39 2024-02-27 13:17:33.39 9000 TIP 440132 20495 6084465 2024-02-27 13:20:37.9 2024-02-27 13:20:37.9 6900 FEE 440521 1354 6084466 2024-02-27 13:20:37.9 2024-02-27 13:20:37.9 62100 TIP 440521 902 6084496 2024-02-27 13:21:59.877 2024-02-27 13:21:59.877 1000 FEE 440511 20433 6084497 2024-02-27 13:21:59.877 2024-02-27 13:21:59.877 9000 TIP 440511 18640 6084503 2024-02-27 13:23:45.158 2024-02-27 13:23:45.158 1000 FEE 440540 6335 6084522 2024-02-27 13:24:19.734 2024-02-27 13:24:19.734 6900 FEE 440489 16353 6084523 2024-02-27 13:24:19.734 2024-02-27 13:24:19.734 62100 TIP 440489 19511 6084537 2024-02-27 13:25:32.946 2024-02-27 13:25:32.946 500 FEE 440508 20663 6084538 2024-02-27 13:25:32.946 2024-02-27 13:25:32.946 4500 TIP 440508 621 6084559 2024-02-27 13:26:12.718 2024-02-27 13:26:12.718 1000 FEE 440481 20163 6084560 2024-02-27 13:26:12.718 2024-02-27 13:26:12.718 9000 TIP 440481 2151 6084563 2024-02-27 13:26:12.987 2024-02-27 13:26:12.987 1000 FEE 440481 21061 6084564 2024-02-27 13:26:12.987 2024-02-27 13:26:12.987 9000 TIP 440481 641 6084631 2024-02-27 13:38:07.985 2024-02-27 13:38:07.985 1000 FEE 440520 19930 6084632 2024-02-27 13:38:07.985 2024-02-27 13:38:07.985 9000 TIP 440520 4177 6084635 2024-02-27 13:38:08.357 2024-02-27 13:38:08.357 1000 FEE 440520 1307 6084636 2024-02-27 13:38:08.357 2024-02-27 13:38:08.357 9000 TIP 440520 1120 6084637 2024-02-27 13:38:08.431 2024-02-27 13:38:08.431 1000 FEE 440520 9171 6084638 2024-02-27 13:38:08.431 2024-02-27 13:38:08.431 9000 TIP 440520 17415 6084701 2024-02-27 13:50:10.691 2024-02-27 13:50:10.691 2100 FEE 440484 18357 6084702 2024-02-27 13:50:10.691 2024-02-27 13:50:10.691 18900 TIP 440484 20198 6084768 2024-02-27 13:55:30.361 2024-02-27 13:55:30.361 2000 FEE 439946 12921 6084769 2024-02-27 13:55:30.361 2024-02-27 13:55:30.361 18000 TIP 439946 5759 6084770 2024-02-27 13:55:31.764 2024-02-27 13:55:31.764 2000 FEE 439760 19154 6084771 2024-02-27 13:55:31.764 2024-02-27 13:55:31.764 18000 TIP 439760 4014 6084778 2024-02-27 13:55:41.154 2024-02-27 13:55:41.154 10000 FEE 440521 16177 6084779 2024-02-27 13:55:41.154 2024-02-27 13:55:41.154 90000 TIP 440521 15049 6084782 2024-02-27 13:55:56.875 2024-02-27 13:55:56.875 2000 FEE 439854 2652 6084783 2024-02-27 13:55:56.875 2024-02-27 13:55:56.875 18000 TIP 439854 6310 6084788 2024-02-27 13:56:00.505 2024-02-27 13:56:00.505 2000 FEE 439791 16753 6084789 2024-02-27 13:56:00.505 2024-02-27 13:56:00.505 18000 TIP 439791 17976 6084795 2024-02-27 13:56:04.725 2024-02-27 13:56:04.725 2000 FEE 439878 9347 6083709 2024-02-27 11:33:07.137 2024-02-27 11:33:07.137 1000 FEE 440468 18454 6083757 2024-02-27 11:44:10.819 2024-02-27 11:44:10.819 1000 FEE 440478 667 6083758 2024-02-27 11:44:27.076 2024-02-27 11:44:27.076 0 FEE 440478 21605 6083759 2024-02-27 11:44:40.701 2024-02-27 11:44:40.701 2100 FEE 440443 11898 6083760 2024-02-27 11:44:40.701 2024-02-27 11:44:40.701 18900 TIP 440443 3478 6083765 2024-02-27 11:46:01.376 2024-02-27 11:46:01.376 1000 FEE 440479 15521 6083768 2024-02-27 11:46:04.134 2024-02-27 11:46:04.134 4000 FEE 440470 9276 6083769 2024-02-27 11:46:04.134 2024-02-27 11:46:04.134 36000 TIP 440470 7979 6083775 2024-02-27 11:46:05.993 2024-02-27 11:46:05.993 1000 FEE 440470 624 6083776 2024-02-27 11:46:05.993 2024-02-27 11:46:05.993 9000 TIP 440470 5961 6083790 2024-02-27 11:48:00.229 2024-02-27 11:48:00.229 1000 FEE 440482 18005 6083832 2024-02-27 11:51:08.26 2024-02-27 11:51:08.26 1000 FEE 440273 20706 6083833 2024-02-27 11:51:08.26 2024-02-27 11:51:08.26 9000 TIP 440273 18040 6083862 2024-02-27 11:59:10.527 2024-02-27 11:59:10.527 2100 FEE 440487 4415 6083863 2024-02-27 11:59:10.527 2024-02-27 11:59:10.527 18900 TIP 440487 16532 6083890 2024-02-27 12:07:32.986 2024-02-27 12:07:32.986 10000 FEE 440492 20660 6083927 2024-02-27 12:15:47.113 2024-02-27 12:15:47.113 5000 FEE 440457 2361 6083928 2024-02-27 12:15:47.113 2024-02-27 12:15:47.113 45000 TIP 440457 21503 6083963 2024-02-27 12:22:54.474 2024-02-27 12:22:54.474 100 FEE 440484 1697 6083964 2024-02-27 12:22:54.474 2024-02-27 12:22:54.474 900 TIP 440484 2039 6083970 2024-02-27 12:23:10.117 2024-02-27 12:23:10.117 2100 FEE 440481 9351 6083971 2024-02-27 12:23:10.117 2024-02-27 12:23:10.117 18900 TIP 440481 814 6083979 2024-02-27 12:23:38.919 2024-02-27 12:23:38.919 1000 FEE 440505 6384 6084009 2024-02-27 12:24:18.36 2024-02-27 12:24:18.36 2100 FEE 440498 7983 6084010 2024-02-27 12:24:18.36 2024-02-27 12:24:18.36 18900 TIP 440498 910 6084013 2024-02-27 12:24:19.912 2024-02-27 12:24:19.912 2100 FEE 440470 19924 6084014 2024-02-27 12:24:19.912 2024-02-27 12:24:19.912 18900 TIP 440470 635 6084062 2024-02-27 12:27:03.912 2024-02-27 12:27:03.912 2100 FEE 439721 2326 6084063 2024-02-27 12:27:03.912 2024-02-27 12:27:03.912 18900 TIP 439721 9352 6084115 2024-02-27 12:44:27.361 2024-02-27 12:44:27.361 2700 FEE 440281 8423 6084116 2024-02-27 12:44:27.361 2024-02-27 12:44:27.361 24300 TIP 440281 20555 6084124 2024-02-27 12:45:13.32 2024-02-27 12:45:13.32 1000 FEE 440386 18815 6083820 2024-02-27 11:50:21.08 2024-02-27 11:50:21.08 9000 TIP 440481 5069 6083854 2024-02-27 11:56:38.301 2024-02-27 11:56:38.301 2100 FEE 440463 9433 6083855 2024-02-27 11:56:38.301 2024-02-27 11:56:38.301 18900 TIP 440463 7654 6083843 2024-02-27 11:54:04.321 2024-02-27 11:54:04.321 1000 STREAM 141924 15409 6083852 2024-02-27 11:55:04.345 2024-02-27 11:55:04.345 1000 STREAM 141924 14122 6083856 2024-02-27 11:57:04.355 2024-02-27 11:57:04.355 1000 STREAM 141924 8998 6083861 2024-02-27 11:59:04.383 2024-02-27 11:59:04.383 1000 STREAM 141924 756 6083880 2024-02-27 12:05:04.396 2024-02-27 12:05:04.396 1000 STREAM 141924 14515 6083884 2024-02-27 12:06:04.403 2024-02-27 12:06:04.403 1000 STREAM 141924 7674 6084134 2024-02-27 12:48:02.615 2024-02-27 12:48:02.615 1000 STREAM 141924 17316 6084147 2024-02-27 12:51:02.635 2024-02-27 12:51:02.635 1000 STREAM 141924 5171 6084399 2024-02-27 13:16:04.717 2024-02-27 13:16:04.717 1000 STREAM 141924 1472 6084502 2024-02-27 13:23:04.736 2024-02-27 13:23:04.736 1000 STREAM 141924 1628 6083853 2024-02-27 11:56:04.367 2024-02-27 11:56:04.367 1000 STREAM 141924 16956 6083857 2024-02-27 11:58:04.367 2024-02-27 11:58:04.367 1000 STREAM 141924 716 6083868 2024-02-27 12:00:04.436 2024-02-27 12:00:04.436 1000 STREAM 141924 703 6083872 2024-02-27 12:01:04.396 2024-02-27 12:01:04.396 1000 STREAM 141924 12946 6083873 2024-02-27 12:02:04.411 2024-02-27 12:02:04.411 1000 STREAM 141924 19854 6083876 2024-02-27 12:03:04.403 2024-02-27 12:03:04.403 1000 STREAM 141924 18448 6083879 2024-02-27 12:04:04.411 2024-02-27 12:04:04.411 1000 STREAM 141924 10409 6083887 2024-02-27 12:07:04.418 2024-02-27 12:07:04.418 1000 STREAM 141924 17797 6083891 2024-02-27 12:08:02.128 2024-02-27 12:08:02.128 1000 STREAM 141924 9335 6083903 2024-02-27 12:13:02.158 2024-02-27 12:13:02.158 1000 STREAM 141924 999 6083909 2024-02-27 12:14:02.15 2024-02-27 12:14:02.15 1000 STREAM 141924 17095 6084075 2024-02-27 12:30:02.327 2024-02-27 12:30:02.327 1000 STREAM 141924 20376 6083892 2024-02-27 12:09:02.407 2024-02-27 12:09:02.407 1000 STREAM 141924 18930 6083895 2024-02-27 12:10:02.433 2024-02-27 12:10:02.433 1000 STREAM 141924 21339 6083922 2024-02-27 12:15:02.422 2024-02-27 12:15:02.422 1000 STREAM 141924 16004 6083939 2024-02-27 12:17:02.444 2024-02-27 12:17:02.444 1000 STREAM 141924 16178 6083960 2024-02-27 12:22:02.458 2024-02-27 12:22:02.458 1000 STREAM 141924 19469 6083965 2024-02-27 12:23:04.462 2024-02-27 12:23:04.462 1000 STREAM 141924 21338 6083992 2024-02-27 12:24:04.46 2024-02-27 12:24:04.46 1000 STREAM 141924 11819 6084037 2024-02-27 12:26:04.475 2024-02-27 12:26:04.475 1000 STREAM 141924 21021 6084059 2024-02-27 12:27:02.476 2024-02-27 12:27:02.476 1000 STREAM 141924 7809 6084076 2024-02-27 12:31:04.472 2024-02-27 12:31:04.472 1000 STREAM 141924 12744 6084083 2024-02-27 12:34:04.493 2024-02-27 12:34:04.493 1000 STREAM 141924 1603 6084084 2024-02-27 12:35:04.489 2024-02-27 12:35:04.489 1000 STREAM 141924 20464 6084148 2024-02-27 12:52:04.553 2024-02-27 12:52:04.553 1000 STREAM 141924 21540 6084151 2024-02-27 12:55:04.583 2024-02-27 12:55:04.583 1000 STREAM 141924 19638 6084235 2024-02-27 13:03:04.598 2024-02-27 13:03:04.598 1000 STREAM 141924 21491 6084238 2024-02-27 13:04:04.613 2024-02-27 13:04:04.613 1000 STREAM 141924 21571 6083897 2024-02-27 12:11:11.765 2024-02-27 12:11:11.765 100000 FEE 439917 15474 6083898 2024-02-27 12:11:11.765 2024-02-27 12:11:11.765 900000 TIP 439917 18751 6083920 2024-02-27 12:14:56.79 2024-02-27 12:14:56.79 1000 FEE 440497 20133 6083925 2024-02-27 12:15:46.753 2024-02-27 12:15:46.753 5000 FEE 440457 1490 6083926 2024-02-27 12:15:46.753 2024-02-27 12:15:46.753 45000 TIP 440457 1394 6083948 2024-02-27 12:20:22.28 2024-02-27 12:20:22.28 100 FEE 440489 14168 6083949 2024-02-27 12:20:22.28 2024-02-27 12:20:22.28 900 TIP 440489 18076 6083954 2024-02-27 12:20:47.232 2024-02-27 12:20:47.232 100 FEE 440472 763 6083955 2024-02-27 12:20:47.232 2024-02-27 12:20:47.232 900 TIP 440472 7659 6083974 2024-02-27 12:23:20.375 2024-02-27 12:23:20.375 2100 FEE 440443 19806 6083975 2024-02-27 12:23:20.375 2024-02-27 12:23:20.375 18900 TIP 440443 15271 6083977 2024-02-27 12:23:34.096 2024-02-27 12:23:34.096 2100 FEE 440412 2151 6083978 2024-02-27 12:23:34.096 2024-02-27 12:23:34.096 18900 TIP 440412 3439 6084019 2024-02-27 12:24:28.535 2024-02-27 12:24:28.535 2100 FEE 440496 14278 6084020 2024-02-27 12:24:28.535 2024-02-27 12:24:28.535 18900 TIP 440496 18220 6084028 2024-02-27 12:25:31.46 2024-02-27 12:25:31.46 2100 FEE 440350 10013 6084029 2024-02-27 12:25:31.46 2024-02-27 12:25:31.46 18900 TIP 440350 19346 6084030 2024-02-27 12:25:31.717 2024-02-27 12:25:31.717 2100 FEE 440386 15052 6084031 2024-02-27 12:25:31.717 2024-02-27 12:25:31.717 18900 TIP 440386 1291 6084032 2024-02-27 12:25:50.961 2024-02-27 12:25:50.961 1000 FEE 440506 18679 6084042 2024-02-27 12:26:17.084 2024-02-27 12:26:17.084 1000 FEE 440509 5961 6084057 2024-02-27 12:27:01.938 2024-02-27 12:27:01.938 2100 FEE 440501 18231 6084058 2024-02-27 12:27:01.938 2024-02-27 12:27:01.938 18900 TIP 440501 14785 6084066 2024-02-27 12:27:47.421 2024-02-27 12:27:47.421 1000 FEE 440511 6360 6084068 2024-02-27 12:28:50.082 2024-02-27 12:28:50.082 2100 FEE 440492 11491 6084069 2024-02-27 12:28:50.082 2024-02-27 12:28:50.082 18900 TIP 440492 2293 6084126 2024-02-27 12:45:36.165 2024-02-27 12:45:36.165 4000 FEE 440511 17221 6084127 2024-02-27 12:45:36.165 2024-02-27 12:45:36.165 36000 TIP 440511 19484 6084129 2024-02-27 12:46:08.99 2024-02-27 12:46:08.99 1000 FEE 440132 2640 6084130 2024-02-27 12:46:08.99 2024-02-27 12:46:08.99 9000 TIP 440132 19417 6084136 2024-02-27 12:48:42.08 2024-02-27 12:48:42.08 4000 FEE 440494 20710 6084137 2024-02-27 12:48:42.08 2024-02-27 12:48:42.08 36000 TIP 440494 21271 6084138 2024-02-27 12:48:47.511 2024-02-27 12:48:47.511 4000 FEE 440479 19843 6084139 2024-02-27 12:48:47.511 2024-02-27 12:48:47.511 36000 TIP 440479 1213 6084152 2024-02-27 12:55:53.029 2024-02-27 12:55:53.029 800 FEE 440386 19507 6084153 2024-02-27 12:55:53.029 2024-02-27 12:55:53.029 7200 TIP 440386 17171 6084160 2024-02-27 12:55:56.402 2024-02-27 12:55:56.402 2700 FEE 440519 21051 6084161 2024-02-27 12:55:56.402 2024-02-27 12:55:56.402 24300 TIP 440519 9985 6084174 2024-02-27 12:57:13.665 2024-02-27 12:57:13.665 2700 FEE 439729 959 6084175 2024-02-27 12:57:13.665 2024-02-27 12:57:13.665 24300 TIP 439729 20560 6084182 2024-02-27 12:57:15.387 2024-02-27 12:57:15.387 2700 FEE 439729 2844 6084183 2024-02-27 12:57:15.387 2024-02-27 12:57:15.387 24300 TIP 439729 15890 6084228 2024-02-27 13:02:16.846 2024-02-27 13:02:16.846 1000 FEE 440525 822 6084290 2024-02-27 13:05:02.061 2024-02-27 13:05:02.061 10000 FEE 440527 1609 6084292 2024-02-27 13:05:37.236 2024-02-27 13:05:37.236 100 FEE 440517 14404 6084293 2024-02-27 13:05:37.236 2024-02-27 13:05:37.236 900 TIP 440517 21514 6084296 2024-02-27 13:06:01.051 2024-02-27 13:06:01.051 1000 FEE 429800 20302 6084297 2024-02-27 13:06:01.051 2024-02-27 13:06:01.051 9000 TIP 429800 669 6084319 2024-02-27 13:06:54.834 2024-02-27 13:06:54.834 900 FEE 440344 5499 6084320 2024-02-27 13:06:54.834 2024-02-27 13:06:54.834 8100 TIP 440344 11716 6084338 2024-02-27 13:08:24.456 2024-02-27 13:08:24.456 5000 FEE 440519 954 6084339 2024-02-27 13:08:24.456 2024-02-27 13:08:24.456 45000 TIP 440519 15560 6084340 2024-02-27 13:08:39.597 2024-02-27 13:08:39.597 2700 FEE 440386 4487 6084341 2024-02-27 13:08:39.597 2024-02-27 13:08:39.597 24300 TIP 440386 659 6084342 2024-02-27 13:08:39.77 2024-02-27 13:08:39.77 2700 FEE 440386 8498 6084343 2024-02-27 13:08:39.77 2024-02-27 13:08:39.77 24300 TIP 440386 19488 6084354 2024-02-27 13:10:47.618 2024-02-27 13:10:47.618 1000 FEE 440528 1474 6084358 2024-02-27 13:11:19.329 2024-02-27 13:11:19.329 100 FEE 440410 5500 6084359 2024-02-27 13:11:19.329 2024-02-27 13:11:19.329 900 TIP 440410 13365 6084388 2024-02-27 13:13:29.649 2024-02-27 13:13:29.649 9000 FEE 440472 21323 6084389 2024-02-27 13:13:29.649 2024-02-27 13:13:29.649 81000 TIP 440472 9166 6084395 2024-02-27 13:14:20.362 2024-02-27 13:14:20.362 1000 FEE 440467 19981 6084396 2024-02-27 13:14:20.362 2024-02-27 13:14:20.362 9000 TIP 440467 13798 6084437 2024-02-27 13:18:36.777 2024-02-27 13:18:36.777 1000 FEE 440532 3979 6084439 2024-02-27 13:19:23.512 2024-02-27 13:19:23.512 1000 FEE 440533 18392 6084442 2024-02-27 13:19:31.231 2024-02-27 13:19:31.231 0 FEE 440533 683 6084459 2024-02-27 13:20:37.513 2024-02-27 13:20:37.513 6900 FEE 440521 21088 6084460 2024-02-27 13:20:37.513 2024-02-27 13:20:37.513 62100 TIP 440521 19660 6084463 2024-02-27 13:20:37.756 2024-02-27 13:20:37.756 6900 FEE 440521 18945 6084464 2024-02-27 13:20:37.756 2024-02-27 13:20:37.756 62100 TIP 440521 2328 6084469 2024-02-27 13:20:38.164 2024-02-27 13:20:38.164 6900 FEE 440521 20852 6084470 2024-02-27 13:20:38.164 2024-02-27 13:20:38.164 62100 TIP 440521 919 6084473 2024-02-27 13:20:38.447 2024-02-27 13:20:38.447 6900 FEE 440521 4314 6084474 2024-02-27 13:20:38.447 2024-02-27 13:20:38.447 62100 TIP 440521 7899 6084479 2024-02-27 13:20:45.278 2024-02-27 13:20:45.278 6900 FEE 440520 811 6084480 2024-02-27 13:20:45.278 2024-02-27 13:20:45.278 62100 TIP 440520 2101 6084488 2024-02-27 13:21:50.248 2024-02-27 13:21:50.248 1000 FEE 440523 9345 6084489 2024-02-27 13:21:50.248 2024-02-27 13:21:50.248 9000 TIP 440523 21599 6084494 2024-02-27 13:21:54.531 2024-02-27 13:21:54.531 1000 FEE 440523 19087 6084495 2024-02-27 13:21:54.531 2024-02-27 13:21:54.531 9000 TIP 440523 20162 6084533 2024-02-27 13:25:28.432 2024-02-27 13:25:28.432 5000 FEE 440530 6137 6084534 2024-02-27 13:25:28.432 2024-02-27 13:25:28.432 45000 TIP 440530 5865 6084587 2024-02-27 13:30:06.256 2024-02-27 13:30:06.256 2100 FEE 440521 18956 6084588 2024-02-27 13:30:06.256 2024-02-27 13:30:06.256 18900 TIP 440521 20861 6084604 2024-02-27 13:31:47.075 2024-02-27 13:31:47.075 5000 FEE 440537 13204 6084605 2024-02-27 13:31:47.075 2024-02-27 13:31:47.075 45000 TIP 440537 13759 6084606 2024-02-27 13:31:47.521 2024-02-27 13:31:47.521 5000 FEE 440538 13921 6084607 2024-02-27 13:31:47.521 2024-02-27 13:31:47.521 45000 TIP 440538 20585 6084608 2024-02-27 13:31:54.045 2024-02-27 13:31:54.045 2100 FEE 440358 16753 6084609 2024-02-27 13:31:54.045 2024-02-27 13:31:54.045 18900 TIP 440358 732 6083901 2024-02-27 12:12:25.626 2024-02-27 12:12:25.626 10000 FEE 440494 16747 6083902 2024-02-27 12:12:28.425 2024-02-27 12:12:28.425 21000 FEE 440495 12158 6083905 2024-02-27 12:13:32.672 2024-02-27 12:13:32.672 5000 FEE 440493 9695 6083906 2024-02-27 12:13:32.672 2024-02-27 12:13:32.672 45000 TIP 440493 2016 6083937 2024-02-27 12:16:20.629 2024-02-27 12:16:20.629 0 FEE 440497 913 6083984 2024-02-27 12:23:57.002 2024-02-27 12:23:57.002 2100 FEE 440425 11491 6083985 2024-02-27 12:23:57.002 2024-02-27 12:23:57.002 18900 TIP 440425 18678 6084026 2024-02-27 12:25:28.662 2024-02-27 12:25:28.662 2100 FEE 440394 4323 6084027 2024-02-27 12:25:28.662 2024-02-27 12:25:28.662 18900 TIP 440394 12175 6084033 2024-02-27 12:25:54.099 2024-02-27 12:25:54.099 1000 FEE 440507 13782 6084036 2024-02-27 12:26:01.876 2024-02-27 12:26:01.876 1000 FEE 440508 20751 6084060 2024-02-27 12:27:02.647 2024-02-27 12:27:02.647 2100 FEE 439891 11038 6084061 2024-02-27 12:27:02.647 2024-02-27 12:27:02.647 18900 TIP 439891 3979 6084070 2024-02-27 12:28:51.604 2024-02-27 12:28:51.604 2100 FEE 440449 15617 6084071 2024-02-27 12:28:51.604 2024-02-27 12:28:51.604 18900 TIP 440449 691 6084072 2024-02-27 12:29:02.026 2024-02-27 12:29:02.026 2100 FEE 440341 19837 6084073 2024-02-27 12:29:02.026 2024-02-27 12:29:02.026 18900 TIP 440341 11862 6084081 2024-02-27 12:33:36.116 2024-02-27 12:33:36.116 21100 FEE 440386 21067 6084082 2024-02-27 12:33:36.116 2024-02-27 12:33:36.116 189900 TIP 440386 8841 6084091 2024-02-27 12:40:00.678 2024-02-27 12:40:00.678 2100 FEE 440503 2741 6084092 2024-02-27 12:40:00.678 2024-02-27 12:40:00.678 18900 TIP 440503 18832 6084108 2024-02-27 12:44:16.012 2024-02-27 12:44:16.012 1000 FEE 440504 14168 6084109 2024-02-27 12:44:16.012 2024-02-27 12:44:16.012 9000 TIP 440504 20099 6084120 2024-02-27 12:45:05.234 2024-02-27 12:45:05.234 4000 FEE 440350 14657 6084121 2024-02-27 12:45:05.234 2024-02-27 12:45:05.234 36000 TIP 440350 10862 6084131 2024-02-27 12:46:20.825 2024-02-27 12:46:20.825 1000 FEE 440517 19905 6084215 2024-02-27 12:59:58.526 2024-02-27 12:59:58.526 1000 FEE 440472 18449 6084216 2024-02-27 12:59:58.526 2024-02-27 12:59:58.526 9000 TIP 440472 712 6084239 2024-02-27 13:04:05.281 2024-02-27 13:04:05.281 1000 FEE 438405 21539 6084240 2024-02-27 13:04:05.281 2024-02-27 13:04:05.281 9000 TIP 438405 3745 6084270 2024-02-27 13:04:23.89 2024-02-27 13:04:23.89 1000 FEE 439844 979 6084271 2024-02-27 13:04:23.89 2024-02-27 13:04:23.89 9000 TIP 439844 9169 6084298 2024-02-27 13:06:01.224 2024-02-27 13:06:01.224 1000 FEE 429800 20596 6084299 2024-02-27 13:06:01.224 2024-02-27 13:06:01.224 9000 TIP 429800 21033 6084309 2024-02-27 13:06:10.887 2024-02-27 13:06:10.887 1000 FEE 437768 717 6084310 2024-02-27 13:06:10.887 2024-02-27 13:06:10.887 9000 TIP 437768 21506 6084311 2024-02-27 13:06:13.93 2024-02-27 13:06:13.93 1000 FEE 439699 19531 6084312 2024-02-27 13:06:13.93 2024-02-27 13:06:13.93 9000 TIP 439699 21485 6084324 2024-02-27 13:07:22.18 2024-02-27 13:07:22.18 900 FEE 440386 1002 6084325 2024-02-27 13:07:22.18 2024-02-27 13:07:22.18 8100 TIP 440386 1493 6084328 2024-02-27 13:07:49.481 2024-02-27 13:07:49.481 100000 DONT_LIKE_THIS 440443 13174 6084382 2024-02-27 13:13:11.211 2024-02-27 13:13:11.211 9000 FEE 440467 5085 6084383 2024-02-27 13:13:11.211 2024-02-27 13:13:11.211 81000 TIP 440467 16809 6084401 2024-02-27 13:16:28.233 2024-02-27 13:16:28.233 0 FEE 440530 19198 6084416 2024-02-27 13:17:34.726 2024-02-27 13:17:34.726 1000 FEE 440132 10270 6084417 2024-02-27 13:17:34.726 2024-02-27 13:17:34.726 9000 TIP 440132 11329 6084418 2024-02-27 13:17:34.976 2024-02-27 13:17:34.976 1000 FEE 440132 4083 6084419 2024-02-27 13:17:34.976 2024-02-27 13:17:34.976 9000 TIP 440132 4570 6084448 2024-02-27 13:19:59.845 2024-02-27 13:19:59.845 1000 FEE 440424 15271 6084449 2024-02-27 13:19:59.845 2024-02-27 13:19:59.845 9000 TIP 440424 1584 6084455 2024-02-27 13:20:07.967 2024-02-27 13:20:07.967 1000 FEE 440535 13398 6084505 2024-02-27 13:24:06.546 2024-02-27 13:24:06.546 1000 FEE 440541 16347 6084510 2024-02-27 13:24:11.744 2024-02-27 13:24:11.744 6900 FEE 440495 19995 6084511 2024-02-27 13:24:11.744 2024-02-27 13:24:11.744 62100 TIP 440495 630 6084520 2024-02-27 13:24:19.593 2024-02-27 13:24:19.593 6900 FEE 440489 1472 6084521 2024-02-27 13:24:19.593 2024-02-27 13:24:19.593 62100 TIP 440489 16679 6084561 2024-02-27 13:26:12.765 2024-02-27 13:26:12.765 1000 FEE 440481 17638 6084562 2024-02-27 13:26:12.765 2024-02-27 13:26:12.765 9000 TIP 440481 5128 6084584 2024-02-27 13:30:00.355 2024-02-27 13:30:00.355 2100 FEE 440495 811 6084585 2024-02-27 13:30:00.355 2024-02-27 13:30:00.355 18900 TIP 440495 1495 6084596 2024-02-27 13:31:33.243 2024-02-27 13:31:33.243 2100 FEE 440340 4027 6084597 2024-02-27 13:31:33.243 2024-02-27 13:31:33.243 18900 TIP 440340 16966 6084610 2024-02-27 13:31:59.934 2024-02-27 13:31:59.934 100 FEE 440521 16154 6084611 2024-02-27 13:31:59.934 2024-02-27 13:31:59.934 900 TIP 440521 21393 6084613 2024-02-27 13:32:36.627 2024-02-27 13:32:36.627 100 FEE 440529 14152 6084614 2024-02-27 13:32:36.627 2024-02-27 13:32:36.627 900 TIP 440529 13622 6084649 2024-02-27 13:42:51.6 2024-02-27 13:42:51.6 9000 FEE 440552 2748 6084667 2024-02-27 13:47:05.871 2024-02-27 13:47:05.871 1000 FEE 440386 6419 6084668 2024-02-27 13:47:05.871 2024-02-27 13:47:05.871 9000 TIP 440386 1010 6084705 2024-02-27 13:50:17.274 2024-02-27 13:50:17.274 100 FEE 440386 11821 6084706 2024-02-27 13:50:17.274 2024-02-27 13:50:17.274 900 TIP 440386 11523 6084713 2024-02-27 13:50:52.667 2024-02-27 13:50:52.667 45000 FEE 439893 15510 6084714 2024-02-27 13:50:52.667 2024-02-27 13:50:52.667 405000 TIP 439893 1970 6084715 2024-02-27 13:50:58.401 2024-02-27 13:50:58.401 10000 FEE 440559 20243 6084720 2024-02-27 13:51:35.071 2024-02-27 13:51:35.071 1600 FEE 440537 18736 6084721 2024-02-27 13:51:35.071 2024-02-27 13:51:35.071 14400 TIP 440537 5746 6084722 2024-02-27 13:52:01.33 2024-02-27 13:52:01.33 10000 FEE 440561 21482 6084760 2024-02-27 13:55:27.61 2024-02-27 13:55:27.61 2000 FEE 439586 20045 6084761 2024-02-27 13:55:27.61 2024-02-27 13:55:27.61 18000 TIP 439586 16456 6084764 2024-02-27 13:55:29.348 2024-02-27 13:55:29.348 2000 FEE 439513 1221 6084765 2024-02-27 13:55:29.348 2024-02-27 13:55:29.348 18000 TIP 439513 16966 6084784 2024-02-27 13:55:59.268 2024-02-27 13:55:59.268 2000 FEE 439392 14195 6084785 2024-02-27 13:55:59.268 2024-02-27 13:55:59.268 18000 TIP 439392 13527 6084821 2024-02-27 13:58:30.399 2024-02-27 13:58:30.399 2000 FEE 440523 2000 6084822 2024-02-27 13:58:30.399 2024-02-27 13:58:30.399 18000 TIP 440523 5173 6084862 2024-02-27 14:06:15.047 2024-02-27 14:06:15.047 10000 FEE 440570 20015 6084869 2024-02-27 14:08:52.864 2024-02-27 14:08:52.864 1000 FEE 440573 12277 6084882 2024-02-27 14:09:45.259 2024-02-27 14:09:45.259 2100 FEE 440495 18208 6084883 2024-02-27 14:09:45.259 2024-02-27 14:09:45.259 18900 TIP 440495 19174 6084910 2024-02-27 14:12:19.602 2024-02-27 14:12:19.602 1000 FEE 440576 21083 6084912 2024-02-27 14:12:34.533 2024-02-27 14:12:34.533 11700 FEE 440552 20108 6084913 2024-02-27 14:12:34.533 2024-02-27 14:12:34.533 105300 TIP 440552 17162 6084917 2024-02-27 14:14:19.364 2024-02-27 14:14:19.364 2100 FEE 440561 12483 6084918 2024-02-27 14:14:19.364 2024-02-27 14:14:19.364 18900 TIP 440561 18005 6084937 2024-02-27 14:17:30.653 2024-02-27 14:17:30.653 2100 FEE 440581 20018 6084938 2024-02-27 14:17:30.653 2024-02-27 14:17:30.653 18900 TIP 440581 16706 6084942 2024-02-27 14:18:05.83 2024-02-27 14:18:05.83 1600 FEE 440574 10493 6084943 2024-02-27 14:18:05.83 2024-02-27 14:18:05.83 14400 TIP 440574 21172 6084956 2024-02-27 14:20:34.764 2024-02-27 14:20:34.764 100 FEE 440540 17517 6084957 2024-02-27 14:20:34.764 2024-02-27 14:20:34.764 900 TIP 440540 17707 6084987 2024-02-27 14:22:28.334 2024-02-27 14:22:28.334 2100 FEE 440403 2309 6084988 2024-02-27 14:22:28.334 2024-02-27 14:22:28.334 18900 TIP 440403 19148 6084991 2024-02-27 14:22:53.939 2024-02-27 14:22:53.939 2100 FEE 440365 7766 6084992 2024-02-27 14:22:53.939 2024-02-27 14:22:53.939 18900 TIP 440365 16847 6084996 2024-02-27 14:23:34.471 2024-02-27 14:23:34.471 100 FEE 440585 15045 6083918 2024-02-27 12:14:23.561 2024-02-27 12:14:23.561 1000 FEE 440424 5701 6083919 2024-02-27 12:14:23.561 2024-02-27 12:14:23.561 9000 TIP 440424 16769 6083961 2024-02-27 12:22:14.07 2024-02-27 12:22:14.07 1100 FEE 440495 21040 6083962 2024-02-27 12:22:14.07 2024-02-27 12:22:14.07 9900 TIP 440495 2775 6083982 2024-02-27 12:23:56.12 2024-02-27 12:23:56.12 2100 FEE 440436 14357 6083983 2024-02-27 12:23:56.12 2024-02-27 12:23:56.12 18900 TIP 440436 10719 6083997 2024-02-27 12:24:08.517 2024-02-27 12:24:08.517 2100 FEE 440457 18357 6083998 2024-02-27 12:24:08.517 2024-02-27 12:24:08.517 18900 TIP 440457 20156 6084001 2024-02-27 12:24:10.923 2024-02-27 12:24:10.923 2100 FEE 440451 1603 6084002 2024-02-27 12:24:10.923 2024-02-27 12:24:10.923 18900 TIP 440451 17221 6084005 2024-02-27 12:24:13.939 2024-02-27 12:24:13.939 2100 FEE 440491 19910 6084006 2024-02-27 12:24:13.939 2024-02-27 12:24:13.939 18900 TIP 440491 7818 6084007 2024-02-27 12:24:15.685 2024-02-27 12:24:15.685 2100 FEE 440483 1474 6084008 2024-02-27 12:24:15.685 2024-02-27 12:24:15.685 18900 TIP 440483 661 6084011 2024-02-27 12:24:18.724 2024-02-27 12:24:18.724 2100 FEE 440501 12356 6084012 2024-02-27 12:24:18.724 2024-02-27 12:24:18.724 18900 TIP 440501 17183 6084015 2024-02-27 12:24:22.225 2024-02-27 12:24:22.225 2100 FEE 440493 12769 6084016 2024-02-27 12:24:22.225 2024-02-27 12:24:22.225 18900 TIP 440493 1609 6084038 2024-02-27 12:26:07.971 2024-02-27 12:26:07.971 2100 FEE 440413 19601 6084039 2024-02-27 12:26:07.971 2024-02-27 12:26:07.971 18900 TIP 440413 895 6084040 2024-02-27 12:26:11.25 2024-02-27 12:26:11.25 100 FEE 440495 15386 6084041 2024-02-27 12:26:11.25 2024-02-27 12:26:11.25 900 TIP 440495 21214 6084049 2024-02-27 12:26:31.314 2024-02-27 12:26:31.314 2100 FEE 440386 8505 6084050 2024-02-27 12:26:31.314 2024-02-27 12:26:31.314 18900 TIP 440386 7998 6084051 2024-02-27 12:26:35.931 2024-02-27 12:26:35.931 2100 FEE 440394 8095 6084052 2024-02-27 12:26:35.931 2024-02-27 12:26:35.931 18900 TIP 440394 18387 6084055 2024-02-27 12:26:43.854 2024-02-27 12:26:43.854 1000 FEE 440510 1352 6084087 2024-02-27 12:37:12.446 2024-02-27 12:37:12.446 1000 FEE 440512 19449 6084098 2024-02-27 12:40:38.519 2024-02-27 12:40:38.519 1100 FEE 440267 13378 6084099 2024-02-27 12:40:38.519 2024-02-27 12:40:38.519 9900 TIP 440267 21612 6084117 2024-02-27 12:44:27.529 2024-02-27 12:44:27.529 2700 FEE 440281 18816 6084118 2024-02-27 12:44:27.529 2024-02-27 12:44:27.529 24300 TIP 440281 18816 6084140 2024-02-27 12:48:53.209 2024-02-27 12:48:53.209 4000 FEE 440498 14941 6084141 2024-02-27 12:48:53.209 2024-02-27 12:48:53.209 36000 TIP 440498 16665 6084143 2024-02-27 12:49:19.357 2024-02-27 12:49:19.357 4000 FEE 440496 4250 6084144 2024-02-27 12:49:19.357 2024-02-27 12:49:19.357 36000 TIP 440496 17976 6084154 2024-02-27 12:55:55.609 2024-02-27 12:55:55.609 2700 FEE 440519 21228 6084155 2024-02-27 12:55:55.609 2024-02-27 12:55:55.609 24300 TIP 440519 21281 6084156 2024-02-27 12:55:55.779 2024-02-27 12:55:55.779 2700 FEE 440519 6310 6084157 2024-02-27 12:55:55.779 2024-02-27 12:55:55.779 24300 TIP 440519 2309 6084187 2024-02-27 12:58:24.662 2024-02-27 12:58:24.662 1100 FEE 440350 18543 6084188 2024-02-27 12:58:24.662 2024-02-27 12:58:24.662 9900 TIP 440350 20500 6084193 2024-02-27 12:59:46.309 2024-02-27 12:59:46.309 1000 FEE 440481 16532 6084194 2024-02-27 12:59:46.309 2024-02-27 12:59:46.309 9000 TIP 440481 20554 6084199 2024-02-27 12:59:47.259 2024-02-27 12:59:47.259 1000 FEE 440481 12057 6084200 2024-02-27 12:59:47.259 2024-02-27 12:59:47.259 9000 TIP 440481 2367 6084207 2024-02-27 12:59:48.133 2024-02-27 12:59:48.133 1000 FEE 440481 19810 6084208 2024-02-27 12:59:48.133 2024-02-27 12:59:48.133 9000 TIP 440481 21343 6084219 2024-02-27 12:59:58.916 2024-02-27 12:59:58.916 1000 FEE 440472 20094 6084220 2024-02-27 12:59:58.916 2024-02-27 12:59:58.916 9000 TIP 440472 18314 6084247 2024-02-27 13:04:12.376 2024-02-27 13:04:12.376 1000 FEE 440526 21207 6084252 2024-02-27 13:04:15.245 2024-02-27 13:04:15.245 1000 FEE 410677 1389 6084253 2024-02-27 13:04:15.245 2024-02-27 13:04:15.245 9000 TIP 410677 10731 6084272 2024-02-27 13:04:25.797 2024-02-27 13:04:25.797 1000 FEE 439729 1605 6084273 2024-02-27 13:04:25.797 2024-02-27 13:04:25.797 9000 TIP 439729 18873 6084301 2024-02-27 13:06:08.021 2024-02-27 13:06:08.021 1000 FEE 437667 1620 6084302 2024-02-27 13:06:08.021 2024-02-27 13:06:08.021 9000 TIP 437667 642 6084303 2024-02-27 13:06:08.186 2024-02-27 13:06:08.186 1000 FEE 437667 10409 6084304 2024-02-27 13:06:08.186 2024-02-27 13:06:08.186 9000 TIP 437667 1773 6084348 2024-02-27 13:08:41.008 2024-02-27 13:08:41.008 2700 FEE 440386 656 6084349 2024-02-27 13:08:41.008 2024-02-27 13:08:41.008 24300 TIP 440386 739 6084379 2024-02-27 13:12:53.433 2024-02-27 13:12:53.433 4000 FEE 440528 21523 6084380 2024-02-27 13:12:53.433 2024-02-27 13:12:53.433 36000 TIP 440528 18177 6084457 2024-02-27 13:20:37.404 2024-02-27 13:20:37.404 6900 FEE 440521 20812 6084458 2024-02-27 13:20:37.404 2024-02-27 13:20:37.404 62100 TIP 440521 16309 6084492 2024-02-27 13:21:51.518 2024-02-27 13:21:51.518 1000 FEE 440523 15336 6084493 2024-02-27 13:21:51.518 2024-02-27 13:21:51.518 9000 TIP 440523 1490 6084524 2024-02-27 13:24:33.212 2024-02-27 13:24:33.212 100000 FEE 440542 14122 6084529 2024-02-27 13:25:10.487 2024-02-27 13:25:10.487 4000 FEE 440541 720 6084530 2024-02-27 13:25:10.487 2024-02-27 13:25:10.487 36000 TIP 440541 1136 6084543 2024-02-27 13:25:33.679 2024-02-27 13:25:33.679 500 FEE 440508 11820 6084544 2024-02-27 13:25:33.679 2024-02-27 13:25:33.679 4500 TIP 440508 18941 6084555 2024-02-27 13:26:12.247 2024-02-27 13:26:12.247 1000 FEE 440481 2460 6084556 2024-02-27 13:26:12.247 2024-02-27 13:26:12.247 9000 TIP 440481 18170 6084557 2024-02-27 13:26:12.415 2024-02-27 13:26:12.415 1000 FEE 440481 2327 6084558 2024-02-27 13:26:12.415 2024-02-27 13:26:12.415 9000 TIP 440481 1718 6084565 2024-02-27 13:26:13.112 2024-02-27 13:26:13.112 1000 FEE 440481 8508 6084566 2024-02-27 13:26:13.112 2024-02-27 13:26:13.112 9000 TIP 440481 21214 6084571 2024-02-27 13:27:02.333 2024-02-27 13:27:02.333 500 FEE 440132 2029 6084572 2024-02-27 13:27:02.333 2024-02-27 13:27:02.333 4500 TIP 440132 15213 6084580 2024-02-27 13:29:27.657 2024-02-27 13:29:27.657 10000 FEE 440547 811 6084589 2024-02-27 13:30:29.024 2024-02-27 13:30:29.024 2100 FEE 440529 19259 6084590 2024-02-27 13:30:29.024 2024-02-27 13:30:29.024 18900 TIP 440529 10536 6084594 2024-02-27 13:31:30.975 2024-02-27 13:31:30.975 2100 FEE 440350 20980 6084595 2024-02-27 13:31:30.975 2024-02-27 13:31:30.975 18900 TIP 440350 19633 6084598 2024-02-27 13:31:34.964 2024-02-27 13:31:34.964 2100 FEE 440338 954 6084599 2024-02-27 13:31:34.964 2024-02-27 13:31:34.964 18900 TIP 440338 981 6084639 2024-02-27 13:38:08.534 2024-02-27 13:38:08.534 1000 FEE 440520 19541 6084640 2024-02-27 13:38:08.534 2024-02-27 13:38:08.534 9000 TIP 440520 1245 6084653 2024-02-27 13:43:12.744 2024-02-27 13:43:12.744 0 FEE 440551 18673 6084694 2024-02-27 13:48:22.214 2024-02-27 13:48:22.214 1600 FEE 440489 18731 6084695 2024-02-27 13:48:22.214 2024-02-27 13:48:22.214 14400 TIP 440489 20302 6084697 2024-02-27 13:49:37.54 2024-02-27 13:49:37.54 1000 FEE 440558 20500 6084711 2024-02-27 13:50:51.999 2024-02-27 13:50:51.999 5000 FEE 439893 20504 6084712 2024-02-27 13:50:51.999 2024-02-27 13:50:51.999 45000 TIP 439893 20970 6083957 2024-02-27 12:21:04.46 2024-02-27 12:21:04.46 1000 STREAM 141924 15266 6084023 2024-02-27 12:25:04.475 2024-02-27 12:25:04.475 1000 STREAM 141924 2342 6083999 2024-02-27 12:24:10.322 2024-02-27 12:24:10.322 2100 FEE 440450 21047 6084000 2024-02-27 12:24:10.322 2024-02-27 12:24:10.322 18900 TIP 440450 660 6084034 2024-02-27 12:25:57.78 2024-02-27 12:25:57.78 1600 FEE 440501 20586 6084035 2024-02-27 12:25:57.78 2024-02-27 12:25:57.78 14400 TIP 440501 10862 6084089 2024-02-27 12:38:45.54 2024-02-27 12:38:45.54 1000 FEE 440513 1120 6084100 2024-02-27 12:40:41.473 2024-02-27 12:40:41.473 1100 FEE 440416 14080 6084101 2024-02-27 12:40:41.473 2024-02-27 12:40:41.473 9900 TIP 440416 21166 6084113 2024-02-27 12:44:27.203 2024-02-27 12:44:27.203 2700 FEE 440281 11240 6084114 2024-02-27 12:44:27.203 2024-02-27 12:44:27.203 24300 TIP 440281 720 6084122 2024-02-27 12:45:07.824 2024-02-27 12:45:07.824 200 FEE 440386 20514 6084123 2024-02-27 12:45:07.824 2024-02-27 12:45:07.824 1800 TIP 440386 6594 6084145 2024-02-27 12:49:52.255 2024-02-27 12:49:52.255 210000 FEE 440520 10693 6084158 2024-02-27 12:55:55.961 2024-02-27 12:55:55.961 2700 FEE 440519 19320 6084159 2024-02-27 12:55:55.961 2024-02-27 12:55:55.961 24300 TIP 440519 633 6084176 2024-02-27 12:57:13.875 2024-02-27 12:57:13.875 2700 FEE 439729 1800 6084177 2024-02-27 12:57:13.875 2024-02-27 12:57:13.875 24300 TIP 439729 5306 6084178 2024-02-27 12:57:15.03 2024-02-27 12:57:15.03 2700 FEE 439729 992 6084179 2024-02-27 12:57:15.03 2024-02-27 12:57:15.03 24300 TIP 439729 951 6084180 2024-02-27 12:57:15.202 2024-02-27 12:57:15.202 2700 FEE 439729 20301 6084181 2024-02-27 12:57:15.202 2024-02-27 12:57:15.202 24300 TIP 439729 16965 6084189 2024-02-27 12:58:24.941 2024-02-27 12:58:24.941 1100 FEE 440350 12278 6084190 2024-02-27 12:58:24.941 2024-02-27 12:58:24.941 9900 TIP 440350 18005 6084201 2024-02-27 12:59:47.465 2024-02-27 12:59:47.465 1000 FEE 440481 11477 6084202 2024-02-27 12:59:47.465 2024-02-27 12:59:47.465 9000 TIP 440481 5779 6084203 2024-02-27 12:59:47.693 2024-02-27 12:59:47.693 1000 FEE 440481 20993 6084204 2024-02-27 12:59:47.693 2024-02-27 12:59:47.693 9000 TIP 440481 4574 6084211 2024-02-27 12:59:58.177 2024-02-27 12:59:58.177 1000 FEE 440472 6765 6084212 2024-02-27 12:59:58.177 2024-02-27 12:59:58.177 9000 TIP 440472 13854 6084217 2024-02-27 12:59:58.746 2024-02-27 12:59:58.746 1000 FEE 440472 20439 6084218 2024-02-27 12:59:58.746 2024-02-27 12:59:58.746 9000 TIP 440472 20858 6084229 2024-02-27 13:02:21.985 2024-02-27 13:02:21.985 3100 FEE 440385 15052 6084230 2024-02-27 13:02:21.985 2024-02-27 13:02:21.985 27900 TIP 440385 21521 6084236 2024-02-27 13:03:59.344 2024-02-27 13:03:59.344 1000 FEE 440132 666 6084237 2024-02-27 13:03:59.344 2024-02-27 13:03:59.344 9000 TIP 440132 21609 6084241 2024-02-27 13:04:06.101 2024-02-27 13:04:06.101 1000 FEE 437667 19843 6084242 2024-02-27 13:04:06.101 2024-02-27 13:04:06.101 9000 TIP 437667 10668 6084282 2024-02-27 13:04:29.6 2024-02-27 13:04:29.6 1000 FEE 439822 15160 6084283 2024-02-27 13:04:29.6 2024-02-27 13:04:29.6 9000 TIP 439822 9351 6084284 2024-02-27 13:04:42.236 2024-02-27 13:04:42.236 3100 FEE 440384 4502 6084285 2024-02-27 13:04:42.236 2024-02-27 13:04:42.236 27900 TIP 440384 1429 6084313 2024-02-27 13:06:14.322 2024-02-27 13:06:14.322 1000 FEE 439806 5694 6084314 2024-02-27 13:06:14.322 2024-02-27 13:06:14.322 9000 TIP 439806 16769 6084315 2024-02-27 13:06:14.698 2024-02-27 13:06:14.698 1000 FEE 440206 2444 6084316 2024-02-27 13:06:14.698 2024-02-27 13:06:14.698 9000 TIP 440206 12102 6084322 2024-02-27 13:07:21.982 2024-02-27 13:07:21.982 100 FEE 440386 13378 6084323 2024-02-27 13:07:21.982 2024-02-27 13:07:21.982 900 TIP 440386 1286 6084334 2024-02-27 13:08:04.671 2024-02-27 13:08:04.671 9000 FEE 440394 11866 6084335 2024-02-27 13:08:04.671 2024-02-27 13:08:04.671 81000 TIP 440394 21416 6084336 2024-02-27 13:08:24.077 2024-02-27 13:08:24.077 5000 FEE 440519 620 6084337 2024-02-27 13:08:24.077 2024-02-27 13:08:24.077 45000 TIP 440519 2000 6084351 2024-02-27 13:09:51.977 2024-02-27 13:09:51.977 9000 FEE 440344 1244 6084352 2024-02-27 13:09:51.977 2024-02-27 13:09:51.977 81000 TIP 440344 11776 6084356 2024-02-27 13:11:11.415 2024-02-27 13:11:11.415 1000 FEE 440323 2256 6084357 2024-02-27 13:11:11.415 2024-02-27 13:11:11.415 9000 TIP 440323 21482 6084364 2024-02-27 13:11:30.982 2024-02-27 13:11:30.982 100 FEE 440412 7746 6084365 2024-02-27 13:11:30.982 2024-02-27 13:11:30.982 900 TIP 440412 1094 6084408 2024-02-27 13:17:33.809 2024-02-27 13:17:33.809 1000 FEE 440132 5701 6084409 2024-02-27 13:17:33.809 2024-02-27 13:17:33.809 9000 TIP 440132 21014 6084410 2024-02-27 13:17:34.043 2024-02-27 13:17:34.043 1000 FEE 440132 9290 6084411 2024-02-27 13:17:34.043 2024-02-27 13:17:34.043 9000 TIP 440132 20479 6084412 2024-02-27 13:17:34.292 2024-02-27 13:17:34.292 1000 FEE 440132 18528 6084413 2024-02-27 13:17:34.292 2024-02-27 13:17:34.292 9000 TIP 440132 18314 6084420 2024-02-27 13:17:35.252 2024-02-27 13:17:35.252 1000 FEE 440132 14213 6084421 2024-02-27 13:17:35.252 2024-02-27 13:17:35.252 9000 TIP 440132 9992 6084456 2024-02-27 13:20:26.036 2024-02-27 13:20:26.036 1000 FEE 440536 19037 6084485 2024-02-27 13:21:37.153 2024-02-27 13:21:37.153 1000 FEE 440536 8713 6084486 2024-02-27 13:21:37.153 2024-02-27 13:21:37.153 9000 TIP 440536 8664 6084508 2024-02-27 13:24:11.475 2024-02-27 13:24:11.475 6900 FEE 440495 12265 6084509 2024-02-27 13:24:11.475 2024-02-27 13:24:11.475 62100 TIP 440495 7809 6084516 2024-02-27 13:24:19.303 2024-02-27 13:24:19.303 6900 FEE 440489 18231 6084517 2024-02-27 13:24:19.303 2024-02-27 13:24:19.303 62100 TIP 440489 18705 6084531 2024-02-27 13:25:25.778 2024-02-27 13:25:25.778 5000 FEE 440530 18583 6084532 2024-02-27 13:25:25.778 2024-02-27 13:25:25.778 45000 TIP 440530 20470 6084535 2024-02-27 13:25:32.748 2024-02-27 13:25:32.748 500 FEE 440508 17124 6084536 2024-02-27 13:25:32.748 2024-02-27 13:25:32.748 4500 TIP 440508 19995 6084539 2024-02-27 13:25:33.324 2024-02-27 13:25:33.324 12800 FEE 440495 21457 6084540 2024-02-27 13:25:33.324 2024-02-27 13:25:33.324 115200 TIP 440495 19773 6084549 2024-02-27 13:26:12.004 2024-02-27 13:26:12.004 1000 FEE 440481 16289 6084550 2024-02-27 13:26:12.004 2024-02-27 13:26:12.004 9000 TIP 440481 11515 6084551 2024-02-27 13:26:12.017 2024-02-27 13:26:12.017 1000 FEE 440481 17082 6084552 2024-02-27 13:26:12.017 2024-02-27 13:26:12.017 9000 TIP 440481 12561 6084567 2024-02-27 13:27:01.466 2024-02-27 13:27:01.466 500 FEE 440132 18454 6084568 2024-02-27 13:27:01.466 2024-02-27 13:27:01.466 4500 TIP 440132 19174 6084602 2024-02-27 13:31:46.63 2024-02-27 13:31:46.63 5000 FEE 440536 1960 6084603 2024-02-27 13:31:46.63 2024-02-27 13:31:46.63 45000 TIP 440536 16848 6084625 2024-02-27 13:36:12.598 2024-02-27 13:36:12.598 1000 FEE 440550 21523 6084627 2024-02-27 13:37:28.943 2024-02-27 13:37:28.943 0 FEE 440550 18313 6084659 2024-02-27 13:44:18.876 2024-02-27 13:44:18.876 10000 FEE 440555 16289 6084663 2024-02-27 13:47:05.478 2024-02-27 13:47:05.478 1000 FEE 440386 21387 6084664 2024-02-27 13:47:05.478 2024-02-27 13:47:05.478 9000 TIP 440386 19198 6084682 2024-02-27 13:47:32.78 2024-02-27 13:47:32.78 2100 FEE 440520 19138 6084683 2024-02-27 13:47:32.78 2024-02-27 13:47:32.78 18900 TIP 440520 2431 6084684 2024-02-27 13:47:33.47 2024-02-27 13:47:33.47 2100 FEE 440542 4391 6084685 2024-02-27 13:47:33.47 2024-02-27 13:47:33.47 18900 TIP 440542 9552 6084688 2024-02-27 13:47:40.489 2024-02-27 13:47:40.489 2100 FEE 440548 822 6084689 2024-02-27 13:47:40.489 2024-02-27 13:47:40.489 18900 TIP 440548 19087 6084690 2024-02-27 13:47:49.389 2024-02-27 13:47:49.389 1000 FEE 440557 12072 6084699 2024-02-27 13:50:10.401 2024-02-27 13:50:10.401 2100 FEE 440484 859 6084700 2024-02-27 13:50:10.401 2024-02-27 13:50:10.401 18900 TIP 440484 5825 6084734 2024-02-27 13:55:19.057 2024-02-27 13:55:19.057 2000 FEE 439844 8176 6084735 2024-02-27 13:55:19.057 2024-02-27 13:55:19.057 18000 TIP 439844 21430 6084067 2024-02-27 12:28:02.474 2024-02-27 12:28:02.474 1000 STREAM 141924 20993 6084074 2024-02-27 12:29:04.471 2024-02-27 12:29:04.471 1000 STREAM 141924 706 6084077 2024-02-27 12:32:04.479 2024-02-27 12:32:04.479 1000 STREAM 141924 18500 6084078 2024-02-27 12:33:04.485 2024-02-27 12:33:04.485 1000 STREAM 141924 2156 6084085 2024-02-27 12:36:04.49 2024-02-27 12:36:04.49 1000 STREAM 141924 1705 6084088 2024-02-27 12:38:04.498 2024-02-27 12:38:04.498 1000 STREAM 141924 2022 6084105 2024-02-27 12:42:04.501 2024-02-27 12:42:04.501 1000 STREAM 141924 18904 6084119 2024-02-27 12:45:04.51 2024-02-27 12:45:04.51 1000 STREAM 141924 16543 6084150 2024-02-27 12:54:04.558 2024-02-27 12:54:04.558 1000 STREAM 141924 21585 6084191 2024-02-27 12:59:04.581 2024-02-27 12:59:04.581 1000 STREAM 141924 21532 6084368 2024-02-27 13:12:04.67 2024-02-27 13:12:04.67 1000 STREAM 141924 15094 6084086 2024-02-27 12:37:02.445 2024-02-27 12:37:02.445 1000 STREAM 141924 10007 6084102 2024-02-27 12:41:02.547 2024-02-27 12:41:02.547 1000 STREAM 141924 2098 6084090 2024-02-27 12:39:04.507 2024-02-27 12:39:04.507 1000 STREAM 141924 18262 6084093 2024-02-27 12:40:02.56 2024-02-27 12:40:02.56 1000 STREAM 141924 19930 6084107 2024-02-27 12:44:02.57 2024-02-27 12:44:02.57 1000 STREAM 141924 17171 6084149 2024-02-27 12:53:02.628 2024-02-27 12:53:02.628 1000 STREAM 141924 9552 6084106 2024-02-27 12:43:02.562 2024-02-27 12:43:02.562 1000 STREAM 141924 12222 6084125 2024-02-27 12:45:13.32 2024-02-27 12:45:13.32 9000 TIP 440386 9985 6084195 2024-02-27 12:59:46.558 2024-02-27 12:59:46.558 1000 FEE 440481 678 6084196 2024-02-27 12:59:46.558 2024-02-27 12:59:46.558 9000 TIP 440481 673 6084205 2024-02-27 12:59:47.897 2024-02-27 12:59:47.897 1000 FEE 440481 4259 6084206 2024-02-27 12:59:47.897 2024-02-27 12:59:47.897 9000 TIP 440481 4062 6084245 2024-02-27 13:04:08.521 2024-02-27 13:04:08.521 1000 FEE 429800 9099 6084246 2024-02-27 13:04:08.521 2024-02-27 13:04:08.521 9000 TIP 429800 2162 6084250 2024-02-27 13:04:14.688 2024-02-27 13:04:14.688 1000 FEE 416733 2529 6084251 2024-02-27 13:04:14.688 2024-02-27 13:04:14.688 9000 TIP 416733 3461 6084294 2024-02-27 13:05:37.484 2024-02-27 13:05:37.484 900 FEE 440517 11829 6084295 2024-02-27 13:05:37.484 2024-02-27 13:05:37.484 8100 TIP 440517 19583 6084326 2024-02-27 13:07:23.796 2024-02-27 13:07:23.796 9000 FEE 440386 20854 6084327 2024-02-27 13:07:23.796 2024-02-27 13:07:23.796 81000 TIP 440386 18832 6084329 2024-02-27 13:08:02.018 2024-02-27 13:08:02.018 100 FEE 440394 20624 6084330 2024-02-27 13:08:02.018 2024-02-27 13:08:02.018 900 TIP 440394 3518 6084362 2024-02-27 13:11:21.115 2024-02-27 13:11:21.115 9000 FEE 440410 12188 6084363 2024-02-27 13:11:21.115 2024-02-27 13:11:21.115 81000 TIP 440410 20751 6084369 2024-02-27 13:12:19.223 2024-02-27 13:12:19.223 1000 FEE 440472 5942 6084370 2024-02-27 13:12:19.223 2024-02-27 13:12:19.223 9000 TIP 440472 16753 6084377 2024-02-27 13:12:39.338 2024-02-27 13:12:39.338 900 FEE 440467 16747 6084378 2024-02-27 13:12:39.338 2024-02-27 13:12:39.338 8100 TIP 440467 18608 6084390 2024-02-27 13:13:32.492 2024-02-27 13:13:32.492 1000 FEE 440471 664 6084391 2024-02-27 13:13:32.492 2024-02-27 13:13:32.492 9000 TIP 440471 2596 6084392 2024-02-27 13:13:52.276 2024-02-27 13:13:52.276 1600 FEE 440523 20841 6084393 2024-02-27 13:13:52.276 2024-02-27 13:13:52.276 14400 TIP 440523 21332 6084398 2024-02-27 13:15:36.35 2024-02-27 13:15:36.35 1000 FEE 440529 20291 6084400 2024-02-27 13:16:06.787 2024-02-27 13:16:06.787 1000 FEE 440530 20802 6084414 2024-02-27 13:17:34.507 2024-02-27 13:17:34.507 1000 FEE 440132 20812 6084415 2024-02-27 13:17:34.507 2024-02-27 13:17:34.507 9000 TIP 440132 946 6084424 2024-02-27 13:17:35.754 2024-02-27 13:17:35.754 1000 FEE 440132 18403 6084425 2024-02-27 13:17:35.754 2024-02-27 13:17:35.754 9000 TIP 440132 19664 6084428 2024-02-27 13:17:36.396 2024-02-27 13:17:36.396 1000 FEE 440132 1773 6084429 2024-02-27 13:17:36.396 2024-02-27 13:17:36.396 9000 TIP 440132 4798 6084434 2024-02-27 13:17:36.969 2024-02-27 13:17:36.969 1000 FEE 440132 19284 6084435 2024-02-27 13:17:36.969 2024-02-27 13:17:36.969 9000 TIP 440132 12911 6084446 2024-02-27 13:19:58.313 2024-02-27 13:19:58.313 1000 FEE 440423 21338 6084447 2024-02-27 13:19:58.313 2024-02-27 13:19:58.313 9000 TIP 440423 2528 6084482 2024-02-27 13:21:31.009 2024-02-27 13:21:31.009 1000 FEE 440536 16670 6084483 2024-02-27 13:21:31.009 2024-02-27 13:21:31.009 9000 TIP 440536 21249 6084484 2024-02-27 13:21:35.762 2024-02-27 13:21:35.762 1000 FEE 440537 16839 6084518 2024-02-27 13:24:19.436 2024-02-27 13:24:19.436 6900 FEE 440489 1326 6084519 2024-02-27 13:24:19.436 2024-02-27 13:24:19.436 62100 TIP 440489 11821 6084527 2024-02-27 13:24:54.128 2024-02-27 13:24:54.128 100000 FEE 440543 18330 6084576 2024-02-27 13:28:06.554 2024-02-27 13:28:06.554 4000 FEE 440545 12566 6084577 2024-02-27 13:28:06.554 2024-02-27 13:28:06.554 36000 TIP 440545 18138 6084583 2024-02-27 13:30:00.192 2024-02-27 13:30:00.192 1000 FEE 440549 20871 6084622 2024-02-27 13:35:33.017 2024-02-27 13:35:33.017 800 FEE 440511 21418 6084623 2024-02-27 13:35:33.017 2024-02-27 13:35:33.017 7200 TIP 440511 2195 6084657 2024-02-27 13:43:55.086 2024-02-27 13:43:55.086 1000 FEE 440554 626 6084665 2024-02-27 13:47:05.684 2024-02-27 13:47:05.684 1000 FEE 440386 16353 6084666 2024-02-27 13:47:05.684 2024-02-27 13:47:05.684 9000 TIP 440386 21575 6084686 2024-02-27 13:47:35.798 2024-02-27 13:47:35.798 2100 FEE 440547 17984 6084687 2024-02-27 13:47:35.798 2024-02-27 13:47:35.798 18900 TIP 440547 1006 6084703 2024-02-27 13:50:13.565 2024-02-27 13:50:13.565 2100 FEE 440550 11240 6084704 2024-02-27 13:50:13.565 2024-02-27 13:50:13.565 18900 TIP 440550 1632 6084709 2024-02-27 13:50:32.896 2024-02-27 13:50:32.896 100 FEE 440555 657 6084710 2024-02-27 13:50:32.896 2024-02-27 13:50:32.896 900 TIP 440555 16706 6084717 2024-02-27 13:51:21.117 2024-02-27 13:51:21.117 1000 FEE 440560 14688 6084718 2024-02-27 13:51:30.164 2024-02-27 13:51:30.164 1600 FEE 440538 15491 6084719 2024-02-27 13:51:30.164 2024-02-27 13:51:30.164 14400 TIP 440538 19352 6084740 2024-02-27 13:55:20.457 2024-02-27 13:55:20.457 2000 FEE 439443 19535 6084741 2024-02-27 13:55:20.457 2024-02-27 13:55:20.457 18000 TIP 439443 16532 6084752 2024-02-27 13:55:25.264 2024-02-27 13:55:25.264 2000 FEE 439658 1122 6084753 2024-02-27 13:55:25.264 2024-02-27 13:55:25.264 18000 TIP 439658 6382 6084756 2024-02-27 13:55:26.736 2024-02-27 13:55:26.736 2000 FEE 439917 20573 6084757 2024-02-27 13:55:26.736 2024-02-27 13:55:26.736 18000 TIP 439917 940 6084766 2024-02-27 13:55:29.762 2024-02-27 13:55:29.762 2000 FEE 439638 20613 6084767 2024-02-27 13:55:29.762 2024-02-27 13:55:29.762 18000 TIP 439638 1803 6084772 2024-02-27 13:55:31.897 2024-02-27 13:55:31.897 2000 FEE 440128 20409 6084773 2024-02-27 13:55:31.897 2024-02-27 13:55:31.897 18000 TIP 440128 1512 6084817 2024-02-27 13:58:29.182 2024-02-27 13:58:29.182 2000 FEE 440523 15367 6084818 2024-02-27 13:58:29.182 2024-02-27 13:58:29.182 18000 TIP 440523 6003 6084819 2024-02-27 13:58:29.206 2024-02-27 13:58:29.206 2000 FEE 440523 20245 6084820 2024-02-27 13:58:29.206 2024-02-27 13:58:29.206 18000 TIP 440523 18945 6084855 2024-02-27 14:04:55.841 2024-02-27 14:04:55.841 27900 FEE 440394 19570 6084856 2024-02-27 14:04:55.841 2024-02-27 14:04:55.841 251100 TIP 440394 19031 6084884 2024-02-27 14:09:56.973 2024-02-27 14:09:56.973 100 FEE 440559 6393 6084885 2024-02-27 14:09:56.973 2024-02-27 14:09:56.973 900 TIP 440559 20837 6084899 2024-02-27 14:11:35.855 2024-02-27 14:11:35.855 1000 FEE 440561 721 6084900 2024-02-27 14:11:35.855 2024-02-27 14:11:35.855 9000 TIP 440561 16536 6084929 2024-02-27 14:16:11.617 2024-02-27 14:16:11.617 2100 FEE 440531 2952 6084930 2024-02-27 14:16:11.617 2024-02-27 14:16:11.617 18900 TIP 440531 13527 6084940 2024-02-27 14:17:55.409 2024-02-27 14:17:55.409 1000 FEE 440584 19156 6084945 2024-02-27 14:18:42.072 2024-02-27 14:18:42.072 2100 FEE 440475 11996 6084946 2024-02-27 14:18:42.072 2024-02-27 14:18:42.072 18900 TIP 440475 18743 6084948 2024-02-27 14:19:09.266 2024-02-27 14:19:09.266 1600 FEE 440580 20546 6084949 2024-02-27 14:19:09.266 2024-02-27 14:19:09.266 14400 TIP 440580 12278 6084961 2024-02-27 14:21:06.288 2024-02-27 14:21:06.288 1000 FEE 440589 20669 6084964 2024-02-27 14:21:25.247 2024-02-27 14:21:25.247 1000 FEE 440590 5308 6084967 2024-02-27 14:22:06.606 2024-02-27 14:22:06.606 1000 FEE 440591 1175 6084968 2024-02-27 14:22:11.698 2024-02-27 14:22:11.698 1000 FEE 440587 9529 6084969 2024-02-27 14:22:11.698 2024-02-27 14:22:11.698 9000 TIP 440587 11866 6085021 2024-02-27 14:26:28.776 2024-02-27 14:26:28.776 3100 FEE 440595 715 6085022 2024-02-27 14:26:28.776 2024-02-27 14:26:28.776 27900 TIP 440595 9337 6085053 2024-02-27 14:30:36.845 2024-02-27 14:30:36.845 1600 FEE 440575 17201 6085054 2024-02-27 14:30:36.845 2024-02-27 14:30:36.845 14400 TIP 440575 2718 6085071 2024-02-27 14:33:00.585 2024-02-27 14:33:00.585 10000 FEE 440561 3729 6085072 2024-02-27 14:33:00.585 2024-02-27 14:33:00.585 90000 TIP 440561 7847 6085082 2024-02-27 14:34:48.81 2024-02-27 14:34:48.81 1000 FEE 440609 9342 6085091 2024-02-27 14:35:51.769 2024-02-27 14:35:51.769 1000 FEE 440611 21398 6084128 2024-02-27 12:46:02.615 2024-02-27 12:46:02.615 1000 STREAM 141924 12102 6084133 2024-02-27 12:47:02.604 2024-02-27 12:47:02.604 1000 STREAM 141924 10981 6084142 2024-02-27 12:49:02.609 2024-02-27 12:49:02.609 1000 STREAM 141924 19105 6084146 2024-02-27 12:50:02.65 2024-02-27 12:50:02.65 1000 STREAM 141924 20514 6084162 2024-02-27 12:56:02.714 2024-02-27 12:56:02.714 1000 STREAM 141924 4166 6084184 2024-02-27 12:58:02.725 2024-02-27 12:58:02.725 1000 STREAM 141924 8168 6084291 2024-02-27 13:05:02.836 2024-02-27 13:05:02.836 1000 STREAM 141924 4292 6084355 2024-02-27 13:11:02.85 2024-02-27 13:11:02.85 1000 STREAM 141924 1490 6084163 2024-02-27 12:57:02.716 2024-02-27 12:57:02.716 1000 STREAM 141924 14650 6084223 2024-02-27 13:00:02.779 2024-02-27 13:00:02.779 1000 STREAM 141924 17147 6084224 2024-02-27 13:01:02.755 2024-02-27 13:01:02.755 1000 STREAM 141924 21453 6084227 2024-02-27 13:02:02.76 2024-02-27 13:02:02.76 1000 STREAM 141924 974 6084321 2024-02-27 13:07:02.867 2024-02-27 13:07:02.867 1000 STREAM 141924 946 6084350 2024-02-27 13:09:02.85 2024-02-27 13:09:02.85 1000 STREAM 141924 21509 6084381 2024-02-27 13:13:02.893 2024-02-27 13:13:02.893 1000 STREAM 141924 18533 6084394 2024-02-27 13:14:02.882 2024-02-27 13:14:02.882 1000 STREAM 141924 10728 6084454 2024-02-27 13:20:02.984 2024-02-27 13:20:02.984 1000 STREAM 141924 13133 6084548 2024-02-27 13:26:03.005 2024-02-27 13:26:03.005 1000 STREAM 141924 17212 6084586 2024-02-27 13:30:03.104 2024-02-27 13:30:03.104 1000 STREAM 141924 1426 6084591 2024-02-27 13:31:03.088 2024-02-27 13:31:03.088 1000 STREAM 141924 12965 6084642 2024-02-27 13:40:03.268 2024-02-27 13:40:03.268 1000 STREAM 141924 21207 6084658 2024-02-27 13:44:03.368 2024-02-27 13:44:03.368 1000 STREAM 141924 21051 6084661 2024-02-27 13:46:03.384 2024-02-27 13:46:03.384 1000 STREAM 141924 18265 6084696 2024-02-27 13:49:03.393 2024-02-27 13:49:03.393 1000 STREAM 141924 9353 6084841 2024-02-27 14:02:03.588 2024-02-27 14:02:03.588 1000 STREAM 141924 13931 6084300 2024-02-27 13:06:02.84 2024-02-27 13:06:02.84 1000 STREAM 141924 20276 6084353 2024-02-27 13:10:02.853 2024-02-27 13:10:02.853 1000 STREAM 141924 14247 6084333 2024-02-27 13:08:02.847 2024-02-27 13:08:02.847 1000 STREAM 141924 5961 6084397 2024-02-27 13:15:02.887 2024-02-27 13:15:02.887 1000 STREAM 141924 8095 6084438 2024-02-27 13:19:02.934 2024-02-27 13:19:02.934 1000 STREAM 141924 708 6084344 2024-02-27 13:08:39.957 2024-02-27 13:08:39.957 2700 FEE 440386 1772 6084345 2024-02-27 13:08:39.957 2024-02-27 13:08:39.957 24300 TIP 440386 18311 6084346 2024-02-27 13:08:40.132 2024-02-27 13:08:40.132 2700 FEE 440386 19189 6084347 2024-02-27 13:08:40.132 2024-02-27 13:08:40.132 24300 TIP 440386 4313 6084360 2024-02-27 13:11:19.829 2024-02-27 13:11:19.829 900 FEE 440410 18174 6084361 2024-02-27 13:11:19.829 2024-02-27 13:11:19.829 8100 TIP 440410 7587 6084373 2024-02-27 13:12:37.258 2024-02-27 13:12:37.258 1000 FEE 440504 16965 6084374 2024-02-27 13:12:37.258 2024-02-27 13:12:37.258 9000 TIP 440504 19770 6084375 2024-02-27 13:12:38.46 2024-02-27 13:12:38.46 100 FEE 440467 679 6084376 2024-02-27 13:12:38.46 2024-02-27 13:12:38.46 900 TIP 440467 21365 6084384 2024-02-27 13:13:27.353 2024-02-27 13:13:27.353 100 FEE 440472 21119 6084385 2024-02-27 13:13:27.353 2024-02-27 13:13:27.353 900 TIP 440472 15063 6084406 2024-02-27 13:17:33.599 2024-02-27 13:17:33.599 1000 FEE 440132 18581 6084407 2024-02-27 13:17:33.599 2024-02-27 13:17:33.599 9000 TIP 440132 16754 6084422 2024-02-27 13:17:35.549 2024-02-27 13:17:35.549 1000 FEE 440132 12245 6084423 2024-02-27 13:17:35.549 2024-02-27 13:17:35.549 9000 TIP 440132 4692 6084426 2024-02-27 13:17:35.973 2024-02-27 13:17:35.973 1000 FEE 440132 16387 6084427 2024-02-27 13:17:35.973 2024-02-27 13:17:35.973 9000 TIP 440132 18663 6084440 2024-02-27 13:19:27.723 2024-02-27 13:19:27.723 500 FEE 440386 3400 6084441 2024-02-27 13:19:27.723 2024-02-27 13:19:27.723 4500 TIP 440386 5637 6084450 2024-02-27 13:20:01.637 2024-02-27 13:20:01.637 1000 FEE 440485 17714 6084451 2024-02-27 13:20:01.637 2024-02-27 13:20:01.637 9000 TIP 440485 12708 6084452 2024-02-27 13:20:02.229 2024-02-27 13:20:02.229 2100 FEE 440264 635 6084453 2024-02-27 13:20:02.229 2024-02-27 13:20:02.229 18900 TIP 440264 12808 6084461 2024-02-27 13:20:37.681 2024-02-27 13:20:37.681 6900 FEE 440521 19992 6084462 2024-02-27 13:20:37.681 2024-02-27 13:20:37.681 62100 TIP 440521 21422 6084467 2024-02-27 13:20:38.029 2024-02-27 13:20:38.029 6900 FEE 440521 2206 6084468 2024-02-27 13:20:38.029 2024-02-27 13:20:38.029 62100 TIP 440521 7773 6084475 2024-02-27 13:20:38.566 2024-02-27 13:20:38.566 6900 FEE 440521 20094 6084476 2024-02-27 13:20:38.566 2024-02-27 13:20:38.566 62100 TIP 440521 17838 6084499 2024-02-27 13:22:16.861 2024-02-27 13:22:16.861 4000 FEE 440527 6700 6084500 2024-02-27 13:22:16.861 2024-02-27 13:22:16.861 36000 TIP 440527 2293 6084506 2024-02-27 13:24:10.783 2024-02-27 13:24:10.783 2100 FEE 440540 21332 6084507 2024-02-27 13:24:10.783 2024-02-27 13:24:10.783 18900 TIP 440540 21386 6084512 2024-02-27 13:24:11.773 2024-02-27 13:24:11.773 6900 FEE 440495 20306 6084513 2024-02-27 13:24:11.773 2024-02-27 13:24:11.773 62100 TIP 440495 9167 6084547 2024-02-27 13:25:41.26 2024-02-27 13:25:41.26 1000 FEE 440544 891 6084553 2024-02-27 13:26:12.079 2024-02-27 13:26:12.079 1000 FEE 440481 10818 6084554 2024-02-27 13:26:12.079 2024-02-27 13:26:12.079 9000 TIP 440481 2596 6084574 2024-02-27 13:27:13.5 2024-02-27 13:27:13.5 1000 FEE 440545 688 6084592 2024-02-27 13:31:30.194 2024-02-27 13:31:30.194 2100 FEE 440347 16788 6084593 2024-02-27 13:31:30.194 2024-02-27 13:31:30.194 18900 TIP 440347 9552 6084600 2024-02-27 13:31:40.303 2024-02-27 13:31:40.303 100 FEE 440542 18119 6084601 2024-02-27 13:31:40.303 2024-02-27 13:31:40.303 900 TIP 440542 21555 6084629 2024-02-27 13:38:07.835 2024-02-27 13:38:07.835 1000 FEE 440520 4345 6084630 2024-02-27 13:38:07.835 2024-02-27 13:38:07.835 9000 TIP 440520 19566 6084633 2024-02-27 13:38:08.142 2024-02-27 13:38:08.142 1000 FEE 440520 19189 6084634 2024-02-27 13:38:08.142 2024-02-27 13:38:08.142 9000 TIP 440520 986 6084656 2024-02-27 13:43:15.943 2024-02-27 13:43:15.943 1000 FEE 440553 17673 6084669 2024-02-27 13:47:06.088 2024-02-27 13:47:06.088 1000 FEE 440386 20979 6084670 2024-02-27 13:47:06.088 2024-02-27 13:47:06.088 9000 TIP 440386 15180 6084673 2024-02-27 13:47:06.474 2024-02-27 13:47:06.474 1000 FEE 440386 18529 6084674 2024-02-27 13:47:06.474 2024-02-27 13:47:06.474 9000 TIP 440386 17148 6084724 2024-02-27 13:52:19.124 2024-02-27 13:52:19.124 1000 FEE 440562 15226 6084758 2024-02-27 13:55:27.099 2024-02-27 13:55:27.099 2000 FEE 440386 21036 6084759 2024-02-27 13:55:27.099 2024-02-27 13:55:27.099 18000 TIP 440386 4304 6084762 2024-02-27 13:55:28.873 2024-02-27 13:55:28.873 2000 FEE 439422 17927 6084763 2024-02-27 13:55:28.873 2024-02-27 13:55:28.873 18000 TIP 439422 6471 6084801 2024-02-27 13:56:20.053 2024-02-27 13:56:20.053 2000 FEE 440459 8385 6084802 2024-02-27 13:56:20.053 2024-02-27 13:56:20.053 18000 TIP 440459 20706 6084887 2024-02-27 14:10:35.839 2024-02-27 14:10:35.839 100000 FEE 440575 642 6084901 2024-02-27 14:11:36.028 2024-02-27 14:11:36.028 1000 FEE 440561 6260 6084902 2024-02-27 14:11:36.028 2024-02-27 14:11:36.028 9000 TIP 440561 21494 6084944 2024-02-27 14:18:31.761 2024-02-27 14:18:31.761 15000 FEE 440585 7389 6084951 2024-02-27 14:19:52.358 2024-02-27 14:19:52.358 100000 FEE 440587 20599 6084976 2024-02-27 14:22:14.479 2024-02-27 14:22:14.479 1000 FEE 440587 17014 6084977 2024-02-27 14:22:14.479 2024-02-27 14:22:14.479 9000 TIP 440587 4126 6084995 2024-02-27 14:23:25.503 2024-02-27 14:23:25.503 0 FEE 440590 16704 6084998 2024-02-27 14:23:38.925 2024-02-27 14:23:38.925 1000 FEE 440591 634 6084999 2024-02-27 14:23:38.925 2024-02-27 14:23:38.925 9000 TIP 440591 15624 6085002 2024-02-27 14:24:33.912 2024-02-27 14:24:33.912 0 FEE 440592 3409 6085074 2024-02-27 14:33:07.103 2024-02-27 14:33:07.103 800 FEE 440586 19471 6085075 2024-02-27 14:33:07.103 2024-02-27 14:33:07.103 7200 TIP 440586 21563 6085094 2024-02-27 14:36:09.484 2024-02-27 14:36:09.484 0 FEE 440611 8376 6085096 2024-02-27 14:37:19.48 2024-02-27 14:37:19.48 1000 FEE 440612 15063 6085106 2024-02-27 14:37:32.964 2024-02-27 14:37:32.964 6900 FEE 440520 8954 6085107 2024-02-27 14:37:32.964 2024-02-27 14:37:32.964 62100 TIP 440520 20889 6085110 2024-02-27 14:37:33.258 2024-02-27 14:37:33.258 6900 FEE 440520 20901 6085111 2024-02-27 14:37:33.258 2024-02-27 14:37:33.258 62100 TIP 440520 854 6085150 2024-02-27 14:42:06.733 2024-02-27 14:42:06.733 1000 FEE 440617 14037 6085151 2024-02-27 14:42:08.9 2024-02-27 14:42:08.9 2100 FEE 440375 19553 6085152 2024-02-27 14:42:08.9 2024-02-27 14:42:08.9 18900 TIP 440375 11220 6085165 2024-02-27 14:44:23.708 2024-02-27 14:44:23.708 3200 FEE 440616 3709 6085166 2024-02-27 14:44:23.708 2024-02-27 14:44:23.708 28800 TIP 440616 18930 6085181 2024-02-27 14:46:15.698 2024-02-27 14:46:15.698 1000 FEE 440624 18068 6085185 2024-02-27 14:46:30.653 2024-02-27 14:46:30.653 4000 FEE 440520 5017 6085186 2024-02-27 14:46:30.653 2024-02-27 14:46:30.653 36000 TIP 440520 21131 6085197 2024-02-27 14:46:49.573 2024-02-27 14:46:49.573 9000 FEE 440622 8508 6085198 2024-02-27 14:46:49.573 2024-02-27 14:46:49.573 81000 TIP 440622 12139 6085206 2024-02-27 14:47:15.352 2024-02-27 14:47:15.352 1000 FEE 440628 712 6085207 2024-02-27 14:47:29.667 2024-02-27 14:47:29.667 2100 FEE 440620 1237 6085208 2024-02-27 14:47:29.667 2024-02-27 14:47:29.667 18900 TIP 440620 21140 6085233 2024-02-27 14:51:14.12 2024-02-27 14:51:14.12 1000 FEE 440622 620 6085234 2024-02-27 14:51:14.12 2024-02-27 14:51:14.12 9000 TIP 440622 13133 6085241 2024-02-27 14:51:15.779 2024-02-27 14:51:15.779 1000 FEE 440622 19381 6085242 2024-02-27 14:51:15.779 2024-02-27 14:51:15.779 9000 TIP 440622 4776 6085243 2024-02-27 14:51:15.794 2024-02-27 14:51:15.794 1000 FEE 440622 21469 6085244 2024-02-27 14:51:15.794 2024-02-27 14:51:15.794 9000 TIP 440622 5701 6085256 2024-02-27 14:51:52.353 2024-02-27 14:51:52.353 2500 FEE 440623 13927 6084402 2024-02-27 13:17:04.705 2024-02-27 13:17:04.705 1000 STREAM 141924 16354 6084436 2024-02-27 13:18:04.707 2024-02-27 13:18:04.707 1000 STREAM 141924 9816 6084573 2024-02-27 13:27:04.758 2024-02-27 13:27:04.758 1000 STREAM 141924 6191 6084575 2024-02-27 13:28:04.736 2024-02-27 13:28:04.736 1000 STREAM 141924 9920 6084579 2024-02-27 13:29:04.776 2024-02-27 13:29:04.776 1000 STREAM 141924 985 6084641 2024-02-27 13:39:04.857 2024-02-27 13:39:04.857 1000 STREAM 141924 19992 6084647 2024-02-27 13:42:04.858 2024-02-27 13:42:04.858 1000 STREAM 141924 2088 6084481 2024-02-27 13:21:04.747 2024-02-27 13:21:04.747 1000 STREAM 141924 956 6084490 2024-02-27 13:21:50.765 2024-02-27 13:21:50.765 1000 FEE 440523 12222 6084491 2024-02-27 13:21:50.765 2024-02-27 13:21:50.765 9000 TIP 440523 15075 6084501 2024-02-27 13:22:20.695 2024-02-27 13:22:20.695 1000 FEE 440539 9084 6084514 2024-02-27 13:24:12.118 2024-02-27 13:24:12.118 13800 FEE 440495 20080 6084515 2024-02-27 13:24:12.118 2024-02-27 13:24:12.118 124200 TIP 440495 720 6084525 2024-02-27 13:24:39.391 2024-02-27 13:24:39.391 10000 FEE 440472 19378 6084526 2024-02-27 13:24:39.391 2024-02-27 13:24:39.391 90000 TIP 440472 1624 6084541 2024-02-27 13:25:33.654 2024-02-27 13:25:33.654 500 FEE 440508 11996 6084542 2024-02-27 13:25:33.654 2024-02-27 13:25:33.654 4500 TIP 440508 18663 6084545 2024-02-27 13:25:34.194 2024-02-27 13:25:34.194 500 FEE 440508 16638 6084546 2024-02-27 13:25:34.194 2024-02-27 13:25:34.194 4500 TIP 440508 21427 6084569 2024-02-27 13:27:01.729 2024-02-27 13:27:01.729 500 FEE 440132 9920 6084570 2024-02-27 13:27:01.729 2024-02-27 13:27:01.729 4500 TIP 440132 16456 6084578 2024-02-27 13:28:23.339 2024-02-27 13:28:23.339 1000 FEE 440546 1474 6084581 2024-02-27 13:29:48.495 2024-02-27 13:29:48.495 100 FEE 440159 8287 6084582 2024-02-27 13:29:48.495 2024-02-27 13:29:48.495 900 TIP 440159 649 6084616 2024-02-27 13:33:12.697 2024-02-27 13:33:12.697 100 FEE 440549 4692 6084617 2024-02-27 13:33:12.697 2024-02-27 13:33:12.697 900 TIP 440549 17602 6084643 2024-02-27 13:40:31.142 2024-02-27 13:40:31.142 10000 FEE 440459 20562 6084644 2024-02-27 13:40:31.142 2024-02-27 13:40:31.142 90000 TIP 440459 1136 6084646 2024-02-27 13:42:01.916 2024-02-27 13:42:01.916 1000 FEE 440551 17638 6084671 2024-02-27 13:47:06.272 2024-02-27 13:47:06.272 1000 FEE 440386 4574 6084672 2024-02-27 13:47:06.272 2024-02-27 13:47:06.272 9000 TIP 440386 17157 6084677 2024-02-27 13:47:06.886 2024-02-27 13:47:06.886 1000 FEE 440386 9356 6084678 2024-02-27 13:47:06.886 2024-02-27 13:47:06.886 9000 TIP 440386 19806 6084680 2024-02-27 13:47:22.835 2024-02-27 13:47:22.835 6400 FEE 440533 20577 6084681 2024-02-27 13:47:22.835 2024-02-27 13:47:22.835 57600 TIP 440533 4487 6084728 2024-02-27 13:55:10.362 2024-02-27 13:55:10.362 2000 FEE 438651 1836 6084729 2024-02-27 13:55:10.362 2024-02-27 13:55:10.362 18000 TIP 438651 12220 6084744 2024-02-27 13:55:21.586 2024-02-27 13:55:21.586 2000 FEE 439699 19502 6084745 2024-02-27 13:55:21.586 2024-02-27 13:55:21.586 18000 TIP 439699 8423 6084746 2024-02-27 13:55:23.017 2024-02-27 13:55:23.017 2000 FEE 440132 20756 6084747 2024-02-27 13:55:23.017 2024-02-27 13:55:23.017 18000 TIP 440132 652 6084780 2024-02-27 13:55:56.578 2024-02-27 13:55:56.578 2000 FEE 439854 2652 6084781 2024-02-27 13:55:56.578 2024-02-27 13:55:56.578 18000 TIP 439854 21180 6084833 2024-02-27 14:00:20.692 2024-02-27 14:00:20.692 10000 FEE 440567 5806 6084838 2024-02-27 14:01:43.471 2024-02-27 14:01:43.471 0 FEE 440568 5069 6084866 2024-02-27 14:07:07.304 2024-02-27 14:07:07.304 1000 FEE 440571 700 6084880 2024-02-27 14:09:44.395 2024-02-27 14:09:44.395 100 FEE 440561 19773 6084881 2024-02-27 14:09:44.395 2024-02-27 14:09:44.395 900 TIP 440561 17316 6084888 2024-02-27 14:10:56.286 2024-02-27 14:10:56.286 10000 FEE 440575 17091 6084889 2024-02-27 14:10:56.286 2024-02-27 14:10:56.286 90000 TIP 440575 6310 6084895 2024-02-27 14:11:17.44 2024-02-27 14:11:17.44 2100 FEE 440563 8168 6084896 2024-02-27 14:11:17.44 2024-02-27 14:11:17.44 18900 TIP 440563 763 6084907 2024-02-27 14:11:42.265 2024-02-27 14:11:42.265 100000 FEE 440575 4313 6084908 2024-02-27 14:11:42.265 2024-02-27 14:11:42.265 900000 TIP 440575 776 6084923 2024-02-27 14:15:32.849 2024-02-27 14:15:32.849 1000 FEE 440580 720 6084925 2024-02-27 14:15:54.242 2024-02-27 14:15:54.242 1000 FEE 440581 5425 6084953 2024-02-27 14:20:07.786 2024-02-27 14:20:07.786 1000 FEE 440588 6149 6084970 2024-02-27 14:22:12.159 2024-02-27 14:22:12.159 1000 FEE 440587 20220 6084971 2024-02-27 14:22:12.159 2024-02-27 14:22:12.159 9000 TIP 440587 18660 6084972 2024-02-27 14:22:13.598 2024-02-27 14:22:13.598 1000 FEE 440587 1519 6084973 2024-02-27 14:22:13.598 2024-02-27 14:22:13.598 9000 TIP 440587 738 6084974 2024-02-27 14:22:13.875 2024-02-27 14:22:13.875 1000 FEE 440587 8162 6084975 2024-02-27 14:22:13.875 2024-02-27 14:22:13.875 9000 TIP 440587 16816 6084986 2024-02-27 14:22:24.355 2024-02-27 14:22:24.355 0 FEE 440590 9348 6085003 2024-02-27 14:24:37.756 2024-02-27 14:24:37.756 2100 FEE 440593 10409 6085004 2024-02-27 14:24:37.756 2024-02-27 14:24:37.756 18900 TIP 440593 18314 6085025 2024-02-27 14:27:06.893 2024-02-27 14:27:06.893 2100 FEE 440168 19576 6085026 2024-02-27 14:27:06.893 2024-02-27 14:27:06.893 18900 TIP 440168 1631 6085039 2024-02-27 14:29:28.783 2024-02-27 14:29:28.783 1000 FEE 440603 656 6085050 2024-02-27 14:30:21.44 2024-02-27 14:30:21.44 1000 FEE 440605 738 6085064 2024-02-27 14:31:35.109 2024-02-27 14:31:35.109 2500 FEE 440386 19839 6085065 2024-02-27 14:31:35.109 2024-02-27 14:31:35.109 22500 TIP 440386 20412 6085069 2024-02-27 14:32:37.704 2024-02-27 14:32:37.704 2500 FEE 440520 9261 6085070 2024-02-27 14:32:37.704 2024-02-27 14:32:37.704 22500 TIP 440520 21048 6085153 2024-02-27 14:42:35.01 2024-02-27 14:42:35.01 1000 FEE 440618 18274 6085154 2024-02-27 14:42:39.069 2024-02-27 14:42:39.069 4200 FEE 440607 10398 6085155 2024-02-27 14:42:39.069 2024-02-27 14:42:39.069 37800 TIP 440607 21371 6085160 2024-02-27 14:43:32.075 2024-02-27 14:43:32.075 3000 FEE 440516 15147 6085161 2024-02-27 14:43:32.075 2024-02-27 14:43:32.075 27000 TIP 440516 17798 6085184 2024-02-27 14:46:20.101 2024-02-27 14:46:20.101 100000 FEE 440625 1474 6085222 2024-02-27 14:50:01.701 2024-02-27 14:50:01.701 100000 DONT_LIKE_THIS 440495 4059 6085267 2024-02-27 14:53:02.721 2024-02-27 14:53:02.721 1000 FEE 440634 16154 6085274 2024-02-27 14:54:23.077 2024-02-27 14:54:23.077 7700 FEE 440624 19471 6085275 2024-02-27 14:54:23.077 2024-02-27 14:54:23.077 69300 TIP 440624 20581 6085282 2024-02-27 14:56:18.259 2024-02-27 14:56:18.259 800 FEE 440632 3461 6085283 2024-02-27 14:56:18.259 2024-02-27 14:56:18.259 7200 TIP 440632 4064 6085304 2024-02-27 14:57:34.478 2024-02-27 14:57:34.478 100 FEE 439836 19199 6085305 2024-02-27 14:57:34.478 2024-02-27 14:57:34.478 900 TIP 439836 703 6085336 2024-02-27 14:57:45.096 2024-02-27 14:57:45.096 100 FEE 439836 1175 6085337 2024-02-27 14:57:45.096 2024-02-27 14:57:45.096 900 TIP 439836 21520 6085356 2024-02-27 15:00:58.057 2024-02-27 15:00:58.057 100 FEE 440623 19812 6085357 2024-02-27 15:00:58.057 2024-02-27 15:00:58.057 900 TIP 440623 21485 6085376 2024-02-27 15:06:01.373 2024-02-27 15:06:01.373 0 FEE 440653 20906 6085402 2024-02-27 15:09:27.094 2024-02-27 15:09:27.094 900 FEE 440405 17708 6085403 2024-02-27 15:09:27.094 2024-02-27 15:09:27.094 8100 TIP 440405 979 6085428 2024-02-27 15:12:56.41 2024-02-27 15:12:56.41 100 FEE 440633 19007 6085429 2024-02-27 15:12:56.41 2024-02-27 15:12:56.41 900 TIP 440633 8544 6085460 2024-02-27 15:14:57.615 2024-02-27 15:14:57.615 100 FEE 440592 19569 6085461 2024-02-27 15:14:57.615 2024-02-27 15:14:57.615 900 TIP 440592 628 6085493 2024-02-27 15:16:21.523 2024-02-27 15:16:21.523 2100 FEE 440660 13517 6085494 2024-02-27 15:16:21.523 2024-02-27 15:16:21.523 18900 TIP 440660 4984 6085513 2024-02-27 15:17:25.187 2024-02-27 15:17:25.187 100 FEE 440622 1803 6085514 2024-02-27 15:17:25.187 2024-02-27 15:17:25.187 900 TIP 440622 9863 6085534 2024-02-27 15:20:58.929 2024-02-27 15:20:58.929 3300 FEE 440658 18291 6085535 2024-02-27 15:20:58.929 2024-02-27 15:20:58.929 29700 TIP 440658 1890 6085538 2024-02-27 15:21:03.179 2024-02-27 15:21:03.179 4900 FEE 440196 21136 6085539 2024-02-27 15:21:03.179 2024-02-27 15:21:03.179 44100 TIP 440196 13759 6085542 2024-02-27 15:21:25.819 2024-02-27 15:21:25.819 1000 FEE 440532 18892 6085543 2024-02-27 15:21:25.819 2024-02-27 15:21:25.819 9000 TIP 440532 17727 6085553 2024-02-27 15:22:14.091 2024-02-27 15:22:14.091 1000 FEE 440663 1985 6085554 2024-02-27 15:22:14.091 2024-02-27 15:22:14.091 9000 TIP 440663 20062 6085555 2024-02-27 15:22:14.29 2024-02-27 15:22:14.29 1000 FEE 440663 12160 6084498 2024-02-27 13:22:04.743 2024-02-27 13:22:04.743 1000 STREAM 141924 19038 6084504 2024-02-27 13:24:04.75 2024-02-27 13:24:04.75 1000 STREAM 141924 19030 6084615 2024-02-27 13:33:04.825 2024-02-27 13:33:04.825 1000 STREAM 141924 16348 6084624 2024-02-27 13:36:04.841 2024-02-27 13:36:04.841 1000 STREAM 141924 21338 6084628 2024-02-27 13:38:04.863 2024-02-27 13:38:04.863 1000 STREAM 141924 994 6084528 2024-02-27 13:25:03.026 2024-02-27 13:25:03.026 1000 STREAM 141924 21422 6084612 2024-02-27 13:32:03.122 2024-02-27 13:32:03.122 1000 STREAM 141924 6191 6084621 2024-02-27 13:35:03.152 2024-02-27 13:35:03.152 1000 STREAM 141924 10493 6084652 2024-02-27 13:43:03.356 2024-02-27 13:43:03.356 1000 STREAM 141924 9337 6084660 2024-02-27 13:45:03.384 2024-02-27 13:45:03.384 1000 STREAM 141924 1298 6084662 2024-02-27 13:47:03.392 2024-02-27 13:47:03.392 1000 STREAM 141924 16145 6084693 2024-02-27 13:48:03.402 2024-02-27 13:48:03.402 1000 STREAM 141924 5003 6084698 2024-02-27 13:50:03.442 2024-02-27 13:50:03.442 1000 STREAM 141924 886 6084792 2024-02-27 13:56:03.567 2024-02-27 13:56:03.567 1000 STREAM 141924 4048 6084863 2024-02-27 14:07:03.634 2024-02-27 14:07:03.634 1000 STREAM 141924 15049 6084868 2024-02-27 14:08:03.623 2024-02-27 14:08:03.623 1000 STREAM 141924 1007 6084886 2024-02-27 14:10:03.689 2024-02-27 14:10:03.689 1000 STREAM 141924 2162 6084890 2024-02-27 14:11:03.658 2024-02-27 14:11:03.658 1000 STREAM 141924 21262 6084909 2024-02-27 14:12:03.665 2024-02-27 14:12:03.665 1000 STREAM 141924 14941 6084914 2024-02-27 14:13:03.676 2024-02-27 14:13:03.676 1000 STREAM 141924 12561 6084926 2024-02-27 14:16:03.692 2024-02-27 14:16:03.692 1000 STREAM 141924 20802 6084936 2024-02-27 14:17:03.703 2024-02-27 14:17:03.703 1000 STREAM 141924 19352 6084947 2024-02-27 14:19:03.718 2024-02-27 14:19:03.718 1000 STREAM 141924 21166 6084993 2024-02-27 14:23:03.761 2024-02-27 14:23:03.761 1000 STREAM 141924 6419 6085008 2024-02-27 14:25:03.773 2024-02-27 14:25:03.773 1000 STREAM 141924 11395 6085017 2024-02-27 14:26:03.782 2024-02-27 14:26:03.782 1000 STREAM 141924 20454 6085024 2024-02-27 14:27:03.784 2024-02-27 14:27:03.784 1000 STREAM 141924 9342 6085035 2024-02-27 14:28:03.794 2024-02-27 14:28:03.794 1000 STREAM 141924 15624 6085038 2024-02-27 14:29:03.788 2024-02-27 14:29:03.788 1000 STREAM 141924 17147 6085041 2024-02-27 14:30:03.831 2024-02-27 14:30:03.831 1000 STREAM 141924 2829 6085055 2024-02-27 14:31:03.793 2024-02-27 14:31:03.793 1000 STREAM 141924 20782 6085066 2024-02-27 14:32:03.79 2024-02-27 14:32:03.79 1000 STREAM 141924 15474 6085087 2024-02-27 14:35:03.823 2024-02-27 14:35:03.823 1000 STREAM 141924 13753 6085149 2024-02-27 14:42:03.929 2024-02-27 14:42:03.929 1000 STREAM 141924 7510 6085156 2024-02-27 14:43:03.919 2024-02-27 14:43:03.919 1000 STREAM 141924 762 6085173 2024-02-27 14:45:03.945 2024-02-27 14:45:03.945 1000 STREAM 141924 21019 6085204 2024-02-27 14:47:03.937 2024-02-27 14:47:03.937 1000 STREAM 141924 9354 6084618 2024-02-27 13:33:24.584 2024-02-27 13:33:24.584 800 FEE 440521 20852 6084619 2024-02-27 13:33:24.584 2024-02-27 13:33:24.584 7200 TIP 440521 21498 6084648 2024-02-27 13:42:46.078 2024-02-27 13:42:46.078 0 FEE 440551 9364 6084650 2024-02-27 13:43:03.031 2024-02-27 13:43:03.031 3100 FEE 440530 1272 6084651 2024-02-27 13:43:03.031 2024-02-27 13:43:03.031 27900 TIP 440530 7673 6084654 2024-02-27 13:43:15.174 2024-02-27 13:43:15.174 2100 FEE 440386 20546 6084655 2024-02-27 13:43:15.174 2024-02-27 13:43:15.174 18900 TIP 440386 1493 6084675 2024-02-27 13:47:06.665 2024-02-27 13:47:06.665 1000 FEE 440386 1817 6084676 2024-02-27 13:47:06.665 2024-02-27 13:47:06.665 9000 TIP 440386 21332 6084679 2024-02-27 13:47:12.131 2024-02-27 13:47:12.131 1000 FEE 440556 2709 6084691 2024-02-27 13:47:52.647 2024-02-27 13:47:52.647 2100 FEE 440410 6148 6084692 2024-02-27 13:47:52.647 2024-02-27 13:47:52.647 18900 TIP 440410 2444 6084707 2024-02-27 13:50:23.822 2024-02-27 13:50:23.822 100 FEE 440467 2460 6084708 2024-02-27 13:50:23.822 2024-02-27 13:50:23.822 900 TIP 440467 16052 6084730 2024-02-27 13:55:11.687 2024-02-27 13:55:11.687 5000 FEE 440560 19583 6084731 2024-02-27 13:55:11.687 2024-02-27 13:55:11.687 45000 TIP 440560 8506 6084750 2024-02-27 13:55:24.806 2024-02-27 13:55:24.806 2000 FEE 439806 21021 6084751 2024-02-27 13:55:24.806 2024-02-27 13:55:24.806 18000 TIP 439806 10112 6084774 2024-02-27 13:55:32.456 2024-02-27 13:55:32.456 2000 FEE 439713 17944 6084775 2024-02-27 13:55:32.456 2024-02-27 13:55:32.456 18000 TIP 439713 15544 6084786 2024-02-27 13:55:59.43 2024-02-27 13:55:59.43 2000 FEE 439701 13599 6084787 2024-02-27 13:55:59.43 2024-02-27 13:55:59.43 18000 TIP 439701 8726 6084799 2024-02-27 13:56:19.037 2024-02-27 13:56:19.037 2000 FEE 439406 1512 6084800 2024-02-27 13:56:19.037 2024-02-27 13:56:19.037 18000 TIP 439406 8385 6084825 2024-02-27 13:58:31.046 2024-02-27 13:58:31.046 2000 FEE 440523 11885 6084826 2024-02-27 13:58:31.046 2024-02-27 13:58:31.046 18000 TIP 440523 5527 6084832 2024-02-27 14:00:15.16 2024-02-27 14:00:15.16 10000 FEE 440566 8541 6084876 2024-02-27 14:09:29.977 2024-02-27 14:09:29.977 2100 FEE 440386 1729 6084877 2024-02-27 14:09:29.977 2024-02-27 14:09:29.977 18900 TIP 440386 6765 6084905 2024-02-27 14:11:36.417 2024-02-27 14:11:36.417 1000 FEE 440561 1519 6084906 2024-02-27 14:11:36.417 2024-02-27 14:11:36.417 9000 TIP 440561 8916 6084927 2024-02-27 14:16:06.318 2024-02-27 14:16:06.318 3200 FEE 440573 19043 6084928 2024-02-27 14:16:06.318 2024-02-27 14:16:06.318 28800 TIP 440573 16424 6084958 2024-02-27 14:20:42.705 2024-02-27 14:20:42.705 100 FEE 440583 8416 6084959 2024-02-27 14:20:42.705 2024-02-27 14:20:42.705 900 TIP 440583 12169 6084965 2024-02-27 14:22:00.148 2024-02-27 14:22:00.148 0 FEE 440590 14795 6084994 2024-02-27 14:23:15.188 2024-02-27 14:23:15.188 1000 FEE 440593 21249 6085001 2024-02-27 14:24:33.77 2024-02-27 14:24:33.77 1000 FEE 440594 20987 6085005 2024-02-27 14:24:48.887 2024-02-27 14:24:48.887 1000 FEE 440595 17639 6085013 2024-02-27 14:25:23.588 2024-02-27 14:25:23.588 2100 FEE 440309 13217 6085014 2024-02-27 14:25:23.588 2024-02-27 14:25:23.588 18900 TIP 440309 16356 6085027 2024-02-27 14:27:19.49 2024-02-27 14:27:19.49 100000 FEE 440599 4395 6085029 2024-02-27 14:27:30.855 2024-02-27 14:27:30.855 1000 FEE 440601 683 6085044 2024-02-27 14:30:08.273 2024-02-27 14:30:08.273 2700 FEE 440527 8569 6085045 2024-02-27 14:30:08.273 2024-02-27 14:30:08.273 24300 TIP 440527 828 6085052 2024-02-27 14:30:34.043 2024-02-27 14:30:34.043 1000 FEE 440607 20006 6085100 2024-02-27 14:37:32.574 2024-02-27 14:37:32.574 6900 FEE 440520 5646 6085101 2024-02-27 14:37:32.574 2024-02-27 14:37:32.574 62100 TIP 440520 2000 6085120 2024-02-27 14:37:34.812 2024-02-27 14:37:34.812 6900 FEE 440520 3456 6085121 2024-02-27 14:37:34.812 2024-02-27 14:37:34.812 62100 TIP 440520 18396 6085124 2024-02-27 14:37:35.36 2024-02-27 14:37:35.36 6900 FEE 440520 5520 6085125 2024-02-27 14:37:35.36 2024-02-27 14:37:35.36 62100 TIP 440520 16348 6085129 2024-02-27 14:38:20.562 2024-02-27 14:38:20.562 2100 FEE 440587 14503 6085130 2024-02-27 14:38:20.562 2024-02-27 14:38:20.562 18900 TIP 440587 797 6085145 2024-02-27 14:41:08.327 2024-02-27 14:41:08.327 2100 FEE 440513 1814 6085146 2024-02-27 14:41:08.327 2024-02-27 14:41:08.327 18900 TIP 440513 12220 6085171 2024-02-27 14:44:48.334 2024-02-27 14:44:48.334 2100 FEE 440617 5017 6085172 2024-02-27 14:44:48.334 2024-02-27 14:44:48.334 18900 TIP 440617 19005 6085189 2024-02-27 14:46:32.665 2024-02-27 14:46:32.665 4000 FEE 440472 12819 6085190 2024-02-27 14:46:32.665 2024-02-27 14:46:32.665 36000 TIP 440472 20669 6085251 2024-02-27 14:51:42.893 2024-02-27 14:51:42.893 3000 FEE 440623 18403 6085252 2024-02-27 14:51:42.893 2024-02-27 14:51:42.893 27000 TIP 440623 1825 6085276 2024-02-27 14:54:33.38 2024-02-27 14:54:33.38 1000 FEE 440637 19911 6085295 2024-02-27 14:57:32.295 2024-02-27 14:57:32.295 1000 FEE 440643 12222 6085326 2024-02-27 14:57:41.934 2024-02-27 14:57:41.934 100 FEE 439836 9330 6085327 2024-02-27 14:57:41.934 2024-02-27 14:57:41.934 900 TIP 439836 16598 6085334 2024-02-27 14:57:44.479 2024-02-27 14:57:44.479 100 FEE 439836 10280 6085335 2024-02-27 14:57:44.479 2024-02-27 14:57:44.479 900 TIP 439836 13575 6085342 2024-02-27 14:58:31.768 2024-02-27 14:58:31.768 3200 FEE 440638 635 6085343 2024-02-27 14:58:31.768 2024-02-27 14:58:31.768 28800 TIP 440638 21026 6085372 2024-02-27 15:05:24.689 2024-02-27 15:05:24.689 21000 FEE 440652 18291 6085378 2024-02-27 15:06:18.876 2024-02-27 15:06:18.876 0 FEE 440653 20858 6085384 2024-02-27 15:07:44.388 2024-02-27 15:07:44.388 1000 FEE 440656 886 6085397 2024-02-27 15:09:09.718 2024-02-27 15:09:09.718 2100 FEE 440656 9427 6085398 2024-02-27 15:09:09.718 2024-02-27 15:09:09.718 18900 TIP 440656 17446 6085408 2024-02-27 15:09:44.688 2024-02-27 15:09:44.688 9000 FEE 440228 11018 6085409 2024-02-27 15:09:44.688 2024-02-27 15:09:44.688 81000 TIP 440228 9496 6085412 2024-02-27 15:11:42.617 2024-02-27 15:11:42.617 100 FEE 440652 18225 6085413 2024-02-27 15:11:42.617 2024-02-27 15:11:42.617 900 TIP 440652 7966 6085443 2024-02-27 15:13:07.722 2024-02-27 15:13:07.722 7700 FEE 440622 2335 6085444 2024-02-27 15:13:07.722 2024-02-27 15:13:07.722 69300 TIP 440622 11523 6085482 2024-02-27 15:15:55.359 2024-02-27 15:15:55.359 3300 FEE 440241 14941 6085483 2024-02-27 15:15:55.359 2024-02-27 15:15:55.359 29700 TIP 440241 2596 6085499 2024-02-27 15:16:45.009 2024-02-27 15:16:45.009 3300 FEE 439795 14295 6085500 2024-02-27 15:16:45.009 2024-02-27 15:16:45.009 29700 TIP 439795 19126 6085501 2024-02-27 15:16:45.224 2024-02-27 15:16:45.224 3300 FEE 439795 956 6085502 2024-02-27 15:16:45.224 2024-02-27 15:16:45.224 29700 TIP 439795 6419 6085503 2024-02-27 15:16:46.072 2024-02-27 15:16:46.072 3300 FEE 439795 1094 6085504 2024-02-27 15:16:46.072 2024-02-27 15:16:46.072 29700 TIP 439795 5387 6085510 2024-02-27 15:17:04.85 2024-02-27 15:17:04.85 0 FEE 440665 19902 6085519 2024-02-27 15:18:20.959 2024-02-27 15:18:20.959 1000 FEE 440668 9036 6085551 2024-02-27 15:22:13.882 2024-02-27 15:22:13.882 1000 FEE 440663 2402 6085552 2024-02-27 15:22:13.882 2024-02-27 15:22:13.882 9000 TIP 440663 11515 6085579 2024-02-27 15:23:26.913 2024-02-27 15:23:26.913 500 FEE 440132 1624 6085580 2024-02-27 15:23:26.913 2024-02-27 15:23:26.913 4500 TIP 440132 20080 6085619 2024-02-27 15:25:00.162 2024-02-27 15:25:00.162 1000 FEE 440560 19103 6085620 2024-02-27 15:25:00.162 2024-02-27 15:25:00.162 9000 TIP 440560 20849 6085671 2024-02-27 15:27:19.355 2024-02-27 15:27:19.355 7700 FEE 440587 16270 6085672 2024-02-27 15:27:19.355 2024-02-27 15:27:19.355 69300 TIP 440587 14271 6085675 2024-02-27 15:27:19.708 2024-02-27 15:27:19.708 7700 FEE 440587 2709 6084620 2024-02-27 13:34:04.83 2024-02-27 13:34:04.83 1000 STREAM 141924 9345 6084626 2024-02-27 13:37:04.853 2024-02-27 13:37:04.853 1000 STREAM 141924 20751 6084645 2024-02-27 13:41:04.857 2024-02-27 13:41:04.857 1000 STREAM 141924 629 6084727 2024-02-27 13:55:04.929 2024-02-27 13:55:04.929 1000 STREAM 141924 828 6084816 2024-02-27 13:58:04.929 2024-02-27 13:58:04.929 1000 STREAM 141924 18815 6084830 2024-02-27 14:00:04.954 2024-02-27 14:00:04.954 1000 STREAM 141924 14472 6084847 2024-02-27 14:03:04.968 2024-02-27 14:03:04.968 1000 STREAM 141924 17237 6084848 2024-02-27 14:04:04.979 2024-02-27 14:04:04.979 1000 STREAM 141924 21063 6084716 2024-02-27 13:51:04.913 2024-02-27 13:51:04.913 1000 STREAM 141924 19770 6084723 2024-02-27 13:52:04.925 2024-02-27 13:52:04.925 1000 STREAM 141924 2013 6084725 2024-02-27 13:53:04.957 2024-02-27 13:53:04.957 1000 STREAM 141924 17094 6084726 2024-02-27 13:54:04.94 2024-02-27 13:54:04.94 1000 STREAM 141924 18392 6084815 2024-02-27 13:57:04.927 2024-02-27 13:57:04.927 1000 STREAM 141924 1208 6084828 2024-02-27 13:59:04.932 2024-02-27 13:59:04.932 1000 STREAM 141924 652 6084836 2024-02-27 14:01:04.943 2024-02-27 14:01:04.943 1000 STREAM 141924 19943 6084857 2024-02-27 14:05:05.014 2024-02-27 14:05:05.014 1000 STREAM 141924 21138 6084861 2024-02-27 14:06:04.988 2024-02-27 14:06:04.988 1000 STREAM 141924 9365 6084732 2024-02-27 13:55:18.965 2024-02-27 13:55:18.965 2000 FEE 439844 19854 6084733 2024-02-27 13:55:18.965 2024-02-27 13:55:18.965 18000 TIP 439844 691 6084738 2024-02-27 13:55:19.808 2024-02-27 13:55:19.808 2000 FEE 439390 19637 6084739 2024-02-27 13:55:19.808 2024-02-27 13:55:19.808 18000 TIP 439390 1631 6084742 2024-02-27 13:55:20.886 2024-02-27 13:55:20.886 2000 FEE 439729 5497 6084743 2024-02-27 13:55:20.886 2024-02-27 13:55:20.886 18000 TIP 439729 5728 6084748 2024-02-27 13:55:23.406 2024-02-27 13:55:23.406 2000 FEE 439822 15588 6084749 2024-02-27 13:55:23.406 2024-02-27 13:55:23.406 18000 TIP 439822 19333 6084754 2024-02-27 13:55:25.592 2024-02-27 13:55:25.592 2000 FEE 440056 861 6084755 2024-02-27 13:55:25.592 2024-02-27 13:55:25.592 18000 TIP 440056 12072 6084776 2024-02-27 13:55:38.442 2024-02-27 13:55:38.442 4000 FEE 440561 10273 6084777 2024-02-27 13:55:38.442 2024-02-27 13:55:38.442 36000 TIP 440561 20680 6084807 2024-02-27 13:56:27.599 2024-02-27 13:56:27.599 2000 FEE 439548 13378 6084808 2024-02-27 13:56:27.599 2024-02-27 13:56:27.599 18000 TIP 439548 695 6084811 2024-02-27 13:56:46.524 2024-02-27 13:56:46.524 2000 FEE 439435 10060 6084812 2024-02-27 13:56:46.524 2024-02-27 13:56:46.524 18000 TIP 439435 2335 6084823 2024-02-27 13:58:30.739 2024-02-27 13:58:30.739 2000 FEE 440523 1493 6084824 2024-02-27 13:58:30.739 2024-02-27 13:58:30.739 18000 TIP 440523 1273 6084837 2024-02-27 14:01:12.735 2024-02-27 14:01:12.735 1000 FEE 440568 18412 6084839 2024-02-27 14:01:44.584 2024-02-27 14:01:44.584 2100 FEE 440550 18526 6084840 2024-02-27 14:01:44.584 2024-02-27 14:01:44.584 18900 TIP 440550 20310 6084849 2024-02-27 14:04:18.842 2024-02-27 14:04:18.842 1000 FEE 440472 12289 6084850 2024-02-27 14:04:18.842 2024-02-27 14:04:18.842 9000 TIP 440472 7998 6084867 2024-02-27 14:07:48.124 2024-02-27 14:07:48.124 100000 FEE 440572 18601 6084874 2024-02-27 14:09:28.897 2024-02-27 14:09:28.897 100 FEE 440572 6268 6084875 2024-02-27 14:09:28.897 2024-02-27 14:09:28.897 900 TIP 440572 17014 6084921 2024-02-27 14:15:11.47 2024-02-27 14:15:11.47 2100 FEE 440572 1881 6084922 2024-02-27 14:15:11.47 2024-02-27 14:15:11.47 18900 TIP 440572 13133 6084939 2024-02-27 14:17:36.793 2024-02-27 14:17:36.793 1000 FEE 440583 3347 6084950 2024-02-27 14:19:29.902 2024-02-27 14:19:29.902 125000 FEE 440586 21506 6084962 2024-02-27 14:21:15.436 2024-02-27 14:21:15.436 2100 FEE 440423 15273 6084963 2024-02-27 14:21:15.436 2024-02-27 14:21:15.436 18900 TIP 440423 19103 6084978 2024-02-27 14:22:14.515 2024-02-27 14:22:14.515 2000 FEE 440587 2285 6084979 2024-02-27 14:22:14.515 2024-02-27 14:22:14.515 18000 TIP 440587 11073 6084982 2024-02-27 14:22:20.936 2024-02-27 14:22:20.936 500 FEE 440489 17944 6084983 2024-02-27 14:22:20.936 2024-02-27 14:22:20.936 4500 TIP 440489 20745 6084984 2024-02-27 14:22:22.456 2024-02-27 14:22:22.456 100 FEE 440587 12291 6084985 2024-02-27 14:22:22.456 2024-02-27 14:22:22.456 900 TIP 440587 21373 6085020 2024-02-27 14:26:08.666 2024-02-27 14:26:08.666 1000 FEE 440597 20015 6085030 2024-02-27 14:27:48.145 2024-02-27 14:27:48.145 300 FEE 440561 21048 6085031 2024-02-27 14:27:48.145 2024-02-27 14:27:48.145 2700 TIP 440561 19821 6085032 2024-02-27 14:28:00.23 2024-02-27 14:28:00.23 1000 FEE 440602 20657 6085036 2024-02-27 14:28:22.142 2024-02-27 14:28:22.142 500 FEE 440582 7916 6085037 2024-02-27 14:28:22.142 2024-02-27 14:28:22.142 4500 TIP 440582 11938 6085058 2024-02-27 14:31:34.473 2024-02-27 14:31:34.473 2500 FEE 440386 700 6085059 2024-02-27 14:31:34.473 2024-02-27 14:31:34.473 22500 TIP 440386 2029 6085085 2024-02-27 14:35:02.689 2024-02-27 14:35:02.689 27900 FEE 440301 20585 6085086 2024-02-27 14:35:02.689 2024-02-27 14:35:02.689 251100 TIP 440301 896 6085092 2024-02-27 14:35:55.406 2024-02-27 14:35:55.406 0 FEE 440609 20220 6085099 2024-02-27 14:37:29.338 2024-02-27 14:37:29.338 1000 FEE 440613 897 6085104 2024-02-27 14:37:32.837 2024-02-27 14:37:32.837 6900 FEE 440520 6430 6085105 2024-02-27 14:37:32.837 2024-02-27 14:37:32.837 62100 TIP 440520 5519 6085108 2024-02-27 14:37:33.106 2024-02-27 14:37:33.106 6900 FEE 440520 21494 6085109 2024-02-27 14:37:33.106 2024-02-27 14:37:33.106 62100 TIP 440520 621 6085114 2024-02-27 14:37:33.498 2024-02-27 14:37:33.498 6900 FEE 440520 696 6085115 2024-02-27 14:37:33.498 2024-02-27 14:37:33.498 62100 TIP 440520 1618 6085131 2024-02-27 14:38:58.424 2024-02-27 14:38:58.424 1000 FEE 440610 1213 6085132 2024-02-27 14:38:58.424 2024-02-27 14:38:58.424 9000 TIP 440610 9200 6085142 2024-02-27 14:40:58.553 2024-02-27 14:40:58.553 4000 FEE 440587 1480 6085143 2024-02-27 14:40:58.553 2024-02-27 14:40:58.553 36000 TIP 440587 15100 6085147 2024-02-27 14:41:53.629 2024-02-27 14:41:53.629 1000 FEE 440559 9916 6085148 2024-02-27 14:41:53.629 2024-02-27 14:41:53.629 9000 TIP 440559 669 6085164 2024-02-27 14:44:15.959 2024-02-27 14:44:15.959 1000 FEE 440621 1162 6085169 2024-02-27 14:44:38.067 2024-02-27 14:44:38.067 800 FEE 440571 859 6085170 2024-02-27 14:44:38.067 2024-02-27 14:44:38.067 7200 TIP 440571 20564 6085205 2024-02-27 14:47:12.779 2024-02-27 14:47:12.779 1000 FEE 440627 8289 6085209 2024-02-27 14:47:56.881 2024-02-27 14:47:56.881 1000 FEE 440629 6148 6085225 2024-02-27 14:50:14.036 2024-02-27 14:50:14.036 10000 DONT_LIKE_THIS 440521 5306 6085228 2024-02-27 14:51:02.648 2024-02-27 14:51:02.648 2100 FEE 440484 20452 6085229 2024-02-27 14:51:02.648 2024-02-27 14:51:02.648 18900 TIP 440484 1122 6085231 2024-02-27 14:51:13.791 2024-02-27 14:51:13.791 2100 FEE 440622 10519 6085232 2024-02-27 14:51:13.791 2024-02-27 14:51:13.791 18900 TIP 440622 2513 6085237 2024-02-27 14:51:14.528 2024-02-27 14:51:14.528 1000 FEE 440622 21609 6085238 2024-02-27 14:51:14.528 2024-02-27 14:51:14.528 9000 TIP 440622 15075 6085245 2024-02-27 14:51:16.23 2024-02-27 14:51:16.23 3000 FEE 440622 6616 6085246 2024-02-27 14:51:16.23 2024-02-27 14:51:16.23 27000 TIP 440622 19572 6084736 2024-02-27 13:55:19.557 2024-02-27 13:55:19.557 2000 FEE 439390 9353 6084737 2024-02-27 13:55:19.557 2024-02-27 13:55:19.557 18000 TIP 439390 2022 6084790 2024-02-27 13:56:02.218 2024-02-27 13:56:02.218 2000 FEE 439397 12346 6084791 2024-02-27 13:56:02.218 2024-02-27 13:56:02.218 18000 TIP 439397 16505 6084793 2024-02-27 13:56:04.367 2024-02-27 13:56:04.367 2000 FEE 439857 15045 6084794 2024-02-27 13:56:04.367 2024-02-27 13:56:04.367 18000 TIP 439857 2176 6084803 2024-02-27 13:56:21.533 2024-02-27 13:56:21.533 2000 FEE 440041 20337 6084804 2024-02-27 13:56:21.533 2024-02-27 13:56:21.533 18000 TIP 440041 11144 6084809 2024-02-27 13:56:45.029 2024-02-27 13:56:45.029 2000 FEE 440216 14074 6084810 2024-02-27 13:56:45.029 2024-02-27 13:56:45.029 18000 TIP 440216 4521 6084813 2024-02-27 13:56:46.834 2024-02-27 13:56:46.834 2000 FEE 439768 16753 6084814 2024-02-27 13:56:46.834 2024-02-27 13:56:46.834 18000 TIP 439768 21131 6084827 2024-02-27 13:58:31.709 2024-02-27 13:58:31.709 10000 FEE 440563 940 6084831 2024-02-27 14:00:05.087 2024-02-27 14:00:05.087 1000 FEE 440565 891 6084843 2024-02-27 14:02:34.286 2024-02-27 14:02:34.286 50000 FEE 440555 16214 6084844 2024-02-27 14:02:34.286 2024-02-27 14:02:34.286 450000 TIP 440555 6393 6084845 2024-02-27 14:02:51.546 2024-02-27 14:02:51.546 2100 FEE 440550 11075 6084846 2024-02-27 14:02:51.546 2024-02-27 14:02:51.546 18900 TIP 440550 711 6084851 2024-02-27 14:04:27.164 2024-02-27 14:04:27.164 1000 FEE 440484 4538 6084852 2024-02-27 14:04:27.164 2024-02-27 14:04:27.164 9000 TIP 440484 18583 6084864 2024-02-27 14:07:04.547 2024-02-27 14:07:04.547 1000 FEE 440520 10342 6084865 2024-02-27 14:07:04.547 2024-02-27 14:07:04.547 9000 TIP 440520 15115 6084873 2024-02-27 14:09:16.349 2024-02-27 14:09:16.349 1000 FEE 440574 20109 6084878 2024-02-27 14:09:36.232 2024-02-27 14:09:36.232 100 FEE 440567 18076 6084879 2024-02-27 14:09:36.232 2024-02-27 14:09:36.232 900 TIP 440567 6137 6084891 2024-02-27 14:11:03.837 2024-02-27 14:11:03.837 2100 FEE 440566 8162 6084892 2024-02-27 14:11:03.837 2024-02-27 14:11:03.837 18900 TIP 440566 2459 6084893 2024-02-27 14:11:07.455 2024-02-27 14:11:07.455 700 FEE 440525 11145 6084894 2024-02-27 14:11:07.455 2024-02-27 14:11:07.455 6300 TIP 440525 16542 6084897 2024-02-27 14:11:35.583 2024-02-27 14:11:35.583 1000 FEE 440561 4225 6084898 2024-02-27 14:11:35.583 2024-02-27 14:11:35.583 9000 TIP 440561 18314 6084903 2024-02-27 14:11:36.222 2024-02-27 14:11:36.222 1000 FEE 440561 10554 6084904 2024-02-27 14:11:36.222 2024-02-27 14:11:36.222 9000 TIP 440561 14080 6084916 2024-02-27 14:14:05.18 2024-02-27 14:14:05.18 1000 FEE 440578 715 6084919 2024-02-27 14:14:24.712 2024-02-27 14:14:24.712 1000 FEE 440579 6777 6084932 2024-02-27 14:16:59.762 2024-02-27 14:16:59.762 3100 FEE 440527 10591 6084933 2024-02-27 14:16:59.762 2024-02-27 14:16:59.762 27900 TIP 440527 12158 6084980 2024-02-27 14:22:16.047 2024-02-27 14:22:16.047 1000 FEE 440587 17552 6084981 2024-02-27 14:22:16.047 2024-02-27 14:22:16.047 9000 TIP 440587 20681 6084989 2024-02-27 14:22:48.71 2024-02-27 14:22:48.71 1000 FEE 440592 7389 6085006 2024-02-27 14:24:53.128 2024-02-27 14:24:53.128 2100 FEE 440583 16387 6085007 2024-02-27 14:24:53.128 2024-02-27 14:24:53.128 18900 TIP 440583 18842 6085011 2024-02-27 14:25:21.603 2024-02-27 14:25:21.603 2100 FEE 440594 19770 6085012 2024-02-27 14:25:21.603 2024-02-27 14:25:21.603 18900 TIP 440594 20251 6085016 2024-02-27 14:26:03.222 2024-02-27 14:26:03.222 1000 FEE 440596 6688 6085018 2024-02-27 14:26:05.436 2024-02-27 14:26:05.436 2100 FEE 440330 21422 6085019 2024-02-27 14:26:05.436 2024-02-27 14:26:05.436 18900 TIP 440330 12422 6085033 2024-02-27 14:28:03.076 2024-02-27 14:28:03.076 3200 FEE 440587 3478 6085034 2024-02-27 14:28:03.076 2024-02-27 14:28:03.076 28800 TIP 440587 18446 6085060 2024-02-27 14:31:34.705 2024-02-27 14:31:34.705 2500 FEE 440386 1519 6085061 2024-02-27 14:31:34.705 2024-02-27 14:31:34.705 22500 TIP 440386 18680 6085078 2024-02-27 14:33:53.483 2024-02-27 14:33:53.483 2500 FEE 440386 11477 6085079 2024-02-27 14:33:53.483 2024-02-27 14:33:53.483 22500 TIP 440386 18208 6085083 2024-02-27 14:35:02.25 2024-02-27 14:35:02.25 3100 FEE 440301 2361 6085084 2024-02-27 14:35:02.25 2024-02-27 14:35:02.25 27900 TIP 440301 19156 6085090 2024-02-27 14:35:46.265 2024-02-27 14:35:46.265 100000 FEE 440610 2724 6085102 2024-02-27 14:37:32.744 2024-02-27 14:37:32.744 6900 FEE 440520 12774 6085103 2024-02-27 14:37:32.744 2024-02-27 14:37:32.744 62100 TIP 440520 5171 6085116 2024-02-27 14:37:33.618 2024-02-27 14:37:33.618 6900 FEE 440520 5565 6085117 2024-02-27 14:37:33.618 2024-02-27 14:37:33.618 62100 TIP 440520 19943 6085118 2024-02-27 14:37:33.776 2024-02-27 14:37:33.776 6900 FEE 440520 7125 6085119 2024-02-27 14:37:33.776 2024-02-27 14:37:33.776 62100 TIP 440520 20993 6085126 2024-02-27 14:37:35.532 2024-02-27 14:37:35.532 6900 FEE 440520 7916 6085127 2024-02-27 14:37:35.532 2024-02-27 14:37:35.532 62100 TIP 440520 18517 6085137 2024-02-27 14:40:47.379 2024-02-27 14:40:47.379 1000 FEE 440616 11999 6085140 2024-02-27 14:40:51.059 2024-02-27 14:40:51.059 4000 FEE 440608 8916 6085141 2024-02-27 14:40:51.059 2024-02-27 14:40:51.059 36000 TIP 440608 18311 6085167 2024-02-27 14:44:27.716 2024-02-27 14:44:27.716 2100 FEE 440619 19622 6085168 2024-02-27 14:44:27.716 2024-02-27 14:44:27.716 18900 TIP 440619 20183 6085182 2024-02-27 14:46:18.907 2024-02-27 14:46:18.907 1000 FEE 440589 844 6085183 2024-02-27 14:46:18.907 2024-02-27 14:46:18.907 9000 TIP 440589 16505 6085217 2024-02-27 14:48:54.674 2024-02-27 14:48:54.674 12800 FEE 440609 21356 6085218 2024-02-27 14:48:54.674 2024-02-27 14:48:54.674 115200 TIP 440609 683 6085220 2024-02-27 14:49:28.479 2024-02-27 14:49:28.479 2100 FEE 440631 2528 6085221 2024-02-27 14:49:28.479 2024-02-27 14:49:28.479 18900 TIP 440631 20168 6085223 2024-02-27 14:50:04.399 2024-02-27 14:50:04.399 0 FEE 440624 21627 6085235 2024-02-27 14:51:14.35 2024-02-27 14:51:14.35 1000 FEE 440622 652 6085236 2024-02-27 14:51:14.35 2024-02-27 14:51:14.35 9000 TIP 440622 21532 6085264 2024-02-27 14:52:27.275 2024-02-27 14:52:27.275 2100 FEE 440056 20059 6085265 2024-02-27 14:52:27.275 2024-02-27 14:52:27.275 18900 TIP 440056 21014 6085270 2024-02-27 14:54:14.098 2024-02-27 14:54:14.098 1000 FEE 440635 3347 6085271 2024-02-27 14:54:19.573 2024-02-27 14:54:19.573 10000 FEE 440636 20892 6085287 2024-02-27 14:57:02.586 2024-02-27 14:57:02.586 1000 FEE 440640 12422 6085318 2024-02-27 14:57:36.061 2024-02-27 14:57:36.061 100 FEE 439836 2952 6085319 2024-02-27 14:57:36.061 2024-02-27 14:57:36.061 900 TIP 439836 9427 6085355 2024-02-27 15:00:25.257 2024-02-27 15:00:25.257 1000 FEE 440650 5791 6085358 2024-02-27 15:00:59.346 2024-02-27 15:00:59.346 100 FEE 440641 20546 6084796 2024-02-27 13:56:04.725 2024-02-27 13:56:04.725 18000 TIP 439878 5557 6084797 2024-02-27 13:56:12.046 2024-02-27 13:56:12.046 2000 FEE 439966 5794 6084798 2024-02-27 13:56:12.046 2024-02-27 13:56:12.046 18000 TIP 439966 20254 6084805 2024-02-27 13:56:25.295 2024-02-27 13:56:25.295 2000 FEE 439905 10096 6084806 2024-02-27 13:56:25.295 2024-02-27 13:56:25.295 18000 TIP 439905 2709 6084829 2024-02-27 14:00:04.631 2024-02-27 14:00:04.631 100000 FEE 440564 19506 6084834 2024-02-27 14:00:24.289 2024-02-27 14:00:24.289 5000 FEE 440520 7966 6084835 2024-02-27 14:00:24.289 2024-02-27 14:00:24.289 45000 TIP 440520 12561 6084842 2024-02-27 14:02:07.615 2024-02-27 14:02:07.615 0 FEE 440568 630 6084853 2024-02-27 14:04:55.125 2024-02-27 14:04:55.125 3100 FEE 440394 20376 6084854 2024-02-27 14:04:55.125 2024-02-27 14:04:55.125 27900 TIP 440394 16789 6084858 2024-02-27 14:05:16.481 2024-02-27 14:05:16.481 69000 FEE 440569 21573 6084859 2024-02-27 14:05:31.248 2024-02-27 14:05:31.248 2100 FEE 440484 18941 6084860 2024-02-27 14:05:31.248 2024-02-27 14:05:31.248 18900 TIP 440484 2776 6084871 2024-02-27 14:09:11.271 2024-02-27 14:09:11.271 2100 FEE 440557 21091 6084872 2024-02-27 14:09:11.271 2024-02-27 14:09:11.271 18900 TIP 440557 8569 6084911 2024-02-27 14:12:22.554 2024-02-27 14:12:22.554 1000 FEE 440577 20153 6084924 2024-02-27 14:15:42.805 2024-02-27 14:15:42.805 0 FEE 440580 8245 6084931 2024-02-27 14:16:51.099 2024-02-27 14:16:51.099 1000 FEE 440582 21218 6084934 2024-02-27 14:17:00.956 2024-02-27 14:17:00.956 27900 FEE 440527 12736 6084935 2024-02-27 14:17:00.956 2024-02-27 14:17:00.956 251100 TIP 440527 5036 6084954 2024-02-27 14:20:33.043 2024-02-27 14:20:33.043 100 FEE 440541 20198 6084955 2024-02-27 14:20:33.043 2024-02-27 14:20:33.043 900 TIP 440541 17592 6084990 2024-02-27 14:22:53.081 2024-02-27 14:22:53.081 0 FEE 440590 20655 6085015 2024-02-27 14:25:42.386 2024-02-27 14:25:42.386 0 FEE 440592 20911 6085023 2024-02-27 14:26:35.682 2024-02-27 14:26:35.682 1000 FEE 440598 7418 6085046 2024-02-27 14:30:08.474 2024-02-27 14:30:08.474 2700 FEE 440527 20636 6085047 2024-02-27 14:30:08.474 2024-02-27 14:30:08.474 24300 TIP 440527 2576 6085048 2024-02-27 14:30:09.278 2024-02-27 14:30:09.278 2700 FEE 440527 20998 6085049 2024-02-27 14:30:09.278 2024-02-27 14:30:09.278 24300 TIP 440527 21494 6085051 2024-02-27 14:30:21.732 2024-02-27 14:30:21.732 1000 FEE 440606 13599 6085062 2024-02-27 14:31:34.917 2024-02-27 14:31:34.917 2500 FEE 440386 703 6085063 2024-02-27 14:31:34.917 2024-02-27 14:31:34.917 22500 TIP 440386 2460 6085076 2024-02-27 14:33:48.841 2024-02-27 14:33:48.841 2500 FEE 440520 2711 6085077 2024-02-27 14:33:48.841 2024-02-27 14:33:48.841 22500 TIP 440520 20613 6085088 2024-02-27 14:35:26.666 2024-02-27 14:35:26.666 100 FEE 439935 7376 6085089 2024-02-27 14:35:26.666 2024-02-27 14:35:26.666 900 TIP 439935 15544 6085122 2024-02-27 14:37:35.213 2024-02-27 14:37:35.213 6900 FEE 440520 16998 6085123 2024-02-27 14:37:35.213 2024-02-27 14:37:35.213 62100 TIP 440520 7587 6085135 2024-02-27 14:40:22.011 2024-02-27 14:40:22.011 1000 FEE 440614 20090 6085138 2024-02-27 14:40:50.724 2024-02-27 14:40:50.724 2100 FEE 440569 1030 6085139 2024-02-27 14:40:50.724 2024-02-27 14:40:50.724 18900 TIP 440569 9906 6085174 2024-02-27 14:45:07.597 2024-02-27 14:45:07.597 420000 FEE 440622 18919 6085175 2024-02-27 14:45:43.59 2024-02-27 14:45:43.59 5000000 FEE 439157 12188 6085176 2024-02-27 14:45:43.59 2024-02-27 14:45:43.59 45000000 TIP 439157 14404 6085187 2024-02-27 14:46:32.233 2024-02-27 14:46:32.233 4000 FEE 440521 11527 6085188 2024-02-27 14:46:32.233 2024-02-27 14:46:32.233 36000 TIP 440521 20687 6085193 2024-02-27 14:46:48.655 2024-02-27 14:46:48.655 100 FEE 440622 4250 6085194 2024-02-27 14:46:48.655 2024-02-27 14:46:48.655 900 TIP 440622 18658 6085199 2024-02-27 14:46:49.703 2024-02-27 14:46:49.703 1000 FEE 440626 5171 6085200 2024-02-27 14:46:51.305 2024-02-27 14:46:51.305 90000 FEE 440622 12158 6085201 2024-02-27 14:46:51.305 2024-02-27 14:46:51.305 810000 TIP 440622 6310 6085202 2024-02-27 14:46:54.491 2024-02-27 14:46:54.491 2100 FEE 440028 20964 6085203 2024-02-27 14:46:54.491 2024-02-27 14:46:54.491 18900 TIP 440028 10608 6085210 2024-02-27 14:48:01.324 2024-02-27 14:48:01.324 2100 FEE 440523 19759 6085211 2024-02-27 14:48:01.324 2024-02-27 14:48:01.324 18900 TIP 440523 20452 6085216 2024-02-27 14:48:52.317 2024-02-27 14:48:52.317 1000 FEE 440631 19103 6085247 2024-02-27 14:51:25.918 2024-02-27 14:51:25.918 200 FEE 440625 11885 6085248 2024-02-27 14:51:25.918 2024-02-27 14:51:25.918 1800 TIP 440625 2367 6085285 2024-02-27 14:56:40.064 2024-02-27 14:56:40.064 1600 FEE 440622 18663 6085286 2024-02-27 14:56:40.064 2024-02-27 14:56:40.064 14400 TIP 440622 18262 6085294 2024-02-27 14:57:32.055 2024-02-27 14:57:32.055 10000 FEE 440642 11450 6085300 2024-02-27 14:57:34.171 2024-02-27 14:57:34.171 100 FEE 439836 20904 6085301 2024-02-27 14:57:34.171 2024-02-27 14:57:34.171 900 TIP 439836 807 6085341 2024-02-27 14:58:24.409 2024-02-27 14:58:24.409 1000 FEE 440644 10554 6085346 2024-02-27 14:59:32.976 2024-02-27 14:59:32.976 1000 FEE 440646 16193 6085352 2024-02-27 15:00:06.158 2024-02-27 15:00:06.158 100000 FEE 440647 20198 6085380 2024-02-27 15:06:35.875 2024-02-27 15:06:35.875 1600 FEE 440649 17094 6085381 2024-02-27 15:06:35.875 2024-02-27 15:06:35.875 14400 TIP 440649 1051 6085399 2024-02-27 15:09:10.289 2024-02-27 15:09:10.289 1000 FEE 440658 1983 6085421 2024-02-27 15:12:29.375 2024-02-27 15:12:29.375 100 FEE 440633 1429 6085422 2024-02-27 15:12:29.375 2024-02-27 15:12:29.375 900 TIP 440633 16594 6085423 2024-02-27 15:12:35.356 2024-02-27 15:12:35.356 7700 FEE 440649 1596 6085424 2024-02-27 15:12:35.356 2024-02-27 15:12:35.356 69300 TIP 440649 16842 6085451 2024-02-27 15:13:29.417 2024-02-27 15:13:29.417 3300 FEE 440132 2734 6085452 2024-02-27 15:13:29.417 2024-02-27 15:13:29.417 29700 TIP 440132 20481 6085456 2024-02-27 15:14:44.12 2024-02-27 15:14:44.12 100000 FEE 440662 20299 6085469 2024-02-27 15:15:08.89 2024-02-27 15:15:08.89 10000 FEE 440664 21463 6085478 2024-02-27 15:15:55.114 2024-02-27 15:15:55.114 3300 FEE 440241 1175 6085479 2024-02-27 15:15:55.114 2024-02-27 15:15:55.114 29700 TIP 440241 21424 6085507 2024-02-27 15:17:00.26 2024-02-27 15:17:00.26 3300 FEE 440583 9169 6085508 2024-02-27 15:17:00.26 2024-02-27 15:17:00.26 29700 TIP 440583 7185 6085522 2024-02-27 15:19:00.696 2024-02-27 15:19:00.696 10000 FEE 440587 18387 6085523 2024-02-27 15:19:00.696 2024-02-27 15:19:00.696 90000 TIP 440587 20090 6085525 2024-02-27 15:19:52.177 2024-02-27 15:19:52.177 0 FEE 440667 8037 6085529 2024-02-27 15:20:51.051 2024-02-27 15:20:51.051 1000 FEE 440670 19506 6085546 2024-02-27 15:21:29.832 2024-02-27 15:21:29.832 9000 FEE 440318 17316 6085547 2024-02-27 15:21:29.832 2024-02-27 15:21:29.832 81000 TIP 440318 19546 6085583 2024-02-27 15:24:29.546 2024-02-27 15:24:29.546 200 FEE 440495 1298 6085584 2024-02-27 15:24:29.546 2024-02-27 15:24:29.546 1800 TIP 440495 16954 6085591 2024-02-27 15:24:30.369 2024-02-27 15:24:30.369 200 FEE 440495 1737 6085592 2024-02-27 15:24:30.369 2024-02-27 15:24:30.369 1800 TIP 440495 19553 6085593 2024-02-27 15:24:31.305 2024-02-27 15:24:31.305 200 FEE 440495 1008 6085594 2024-02-27 15:24:31.305 2024-02-27 15:24:31.305 1800 TIP 440495 12175 6084870 2024-02-27 14:09:03.646 2024-02-27 14:09:03.646 1000 STREAM 141924 1985 6084915 2024-02-27 14:14:03.674 2024-02-27 14:14:03.674 1000 STREAM 141924 7587 6084920 2024-02-27 14:15:03.679 2024-02-27 14:15:03.679 1000 STREAM 141924 20152 6084941 2024-02-27 14:18:03.702 2024-02-27 14:18:03.702 1000 STREAM 141924 811 6084960 2024-02-27 14:21:03.75 2024-02-27 14:21:03.75 1000 STREAM 141924 19535 6085000 2024-02-27 14:24:03.769 2024-02-27 14:24:03.769 1000 STREAM 141924 19147 6084952 2024-02-27 14:20:05.08 2024-02-27 14:20:05.08 1000 STREAM 141924 14074 6084966 2024-02-27 14:22:05.065 2024-02-27 14:22:05.065 1000 STREAM 141924 2075 6085080 2024-02-27 14:34:05.119 2024-02-27 14:34:05.119 1000 STREAM 141924 2718 6085095 2024-02-27 14:37:05.139 2024-02-27 14:37:05.139 1000 STREAM 141924 19138 6085128 2024-02-27 14:38:05.144 2024-02-27 14:38:05.144 1000 STREAM 141924 633 6085133 2024-02-27 14:39:05.15 2024-02-27 14:39:05.15 1000 STREAM 141924 15146 6085230 2024-02-27 14:51:05.197 2024-02-27 14:51:05.197 1000 STREAM 141924 2402 6085268 2024-02-27 14:53:05.217 2024-02-27 14:53:05.217 1000 STREAM 141924 616 6085338 2024-02-27 14:58:05.208 2024-02-27 14:58:05.208 1000 STREAM 141924 9330 6085454 2024-02-27 15:14:05.298 2024-02-27 15:14:05.298 1000 STREAM 141924 18626 6085572 2024-02-27 15:23:03.334 2024-02-27 15:23:03.334 1000 STREAM 141924 7986 6085581 2024-02-27 15:24:03.341 2024-02-27 15:24:03.341 1000 STREAM 141924 20066 6085828 2024-02-27 15:31:03.359 2024-02-27 15:31:03.359 1000 STREAM 141924 15588 6085864 2024-02-27 15:32:03.368 2024-02-27 15:32:03.368 1000 STREAM 141924 19905 6085880 2024-02-27 15:33:03.371 2024-02-27 15:33:03.371 1000 STREAM 141924 16753 6085895 2024-02-27 15:35:03.382 2024-02-27 15:35:03.382 1000 STREAM 141924 20738 6085936 2024-02-27 15:37:03.383 2024-02-27 15:37:03.383 1000 STREAM 141924 21019 6084997 2024-02-27 14:23:34.471 2024-02-27 14:23:34.471 900 TIP 440585 814 6085009 2024-02-27 14:25:19.782 2024-02-27 14:25:19.782 2100 FEE 440587 13046 6085010 2024-02-27 14:25:19.782 2024-02-27 14:25:19.782 18900 TIP 440587 20683 6085028 2024-02-27 14:27:29.604 2024-02-27 14:27:29.604 1000 FEE 440600 9332 6085040 2024-02-27 14:29:52.53 2024-02-27 14:29:52.53 1000 FEE 440604 20573 6085042 2024-02-27 14:30:08.078 2024-02-27 14:30:08.078 2700 FEE 440527 4074 6085043 2024-02-27 14:30:08.078 2024-02-27 14:30:08.078 24300 TIP 440527 19613 6085056 2024-02-27 14:31:08.182 2024-02-27 14:31:08.182 100 FEE 440484 805 6085057 2024-02-27 14:31:08.182 2024-02-27 14:31:08.182 900 TIP 440484 18529 6085067 2024-02-27 14:32:34.721 2024-02-27 14:32:34.721 10000 FEE 440587 14906 6085068 2024-02-27 14:32:34.721 2024-02-27 14:32:34.721 90000 TIP 440587 16351 6085081 2024-02-27 14:34:27.141 2024-02-27 14:34:27.141 21000 FEE 440608 16956 6085097 2024-02-27 14:37:22.564 2024-02-27 14:37:22.564 2100 FEE 440592 20231 6085098 2024-02-27 14:37:22.564 2024-02-27 14:37:22.564 18900 TIP 440592 17714 6085136 2024-02-27 14:40:40.686 2024-02-27 14:40:40.686 1000 FEE 440615 8870 6085157 2024-02-27 14:43:22.142 2024-02-27 14:43:22.142 1000 FEE 440619 19839 6085158 2024-02-27 14:43:29.238 2024-02-27 14:43:29.238 100 FEE 440128 1195 6085159 2024-02-27 14:43:29.238 2024-02-27 14:43:29.238 900 TIP 440128 1433 6085177 2024-02-27 14:45:51.878 2024-02-27 14:45:51.878 10000 FEE 440623 2709 6085191 2024-02-27 14:46:35.025 2024-02-27 14:46:35.025 4000 FEE 440410 4173 6085192 2024-02-27 14:46:35.025 2024-02-27 14:46:35.025 36000 TIP 440410 19533 6085213 2024-02-27 14:48:07.961 2024-02-27 14:48:07.961 1000 FEE 440630 9078 6085226 2024-02-27 14:50:33.416 2024-02-27 14:50:33.416 3500 FEE 440467 5538 6085227 2024-02-27 14:50:33.416 2024-02-27 14:50:33.416 31500 TIP 440467 20205 6085249 2024-02-27 14:51:33.562 2024-02-27 14:51:33.562 3200 FEE 440624 641 6085250 2024-02-27 14:51:33.562 2024-02-27 14:51:33.562 28800 TIP 440624 1130 6085260 2024-02-27 14:52:03.676 2024-02-27 14:52:03.676 1000000 FEE 439287 21469 6085261 2024-02-27 14:52:03.676 2024-02-27 14:52:03.676 9000000 TIP 439287 20680 6085073 2024-02-27 14:33:05.265 2024-02-27 14:33:05.265 1000 STREAM 141924 20560 6085093 2024-02-27 14:36:05.266 2024-02-27 14:36:05.266 1000 STREAM 141924 12188 6085224 2024-02-27 14:50:05.254 2024-02-27 14:50:05.254 1000 STREAM 141924 19031 6085112 2024-02-27 14:37:33.385 2024-02-27 14:37:33.385 6900 FEE 440520 21455 6085113 2024-02-27 14:37:33.385 2024-02-27 14:37:33.385 62100 TIP 440520 21540 6085163 2024-02-27 14:44:10.926 2024-02-27 14:44:10.926 1000 FEE 440620 20412 6085178 2024-02-27 14:45:54.67 2024-02-27 14:45:54.67 2600 FEE 440386 1658 6085179 2024-02-27 14:45:54.67 2024-02-27 14:45:54.67 23400 TIP 440386 657 6085195 2024-02-27 14:46:48.87 2024-02-27 14:46:48.87 900 FEE 440622 14651 6085196 2024-02-27 14:46:48.87 2024-02-27 14:46:48.87 8100 TIP 440622 19527 6085214 2024-02-27 14:48:46.502 2024-02-27 14:48:46.502 4000 FEE 440622 20090 6085215 2024-02-27 14:48:46.502 2024-02-27 14:48:46.502 36000 TIP 440622 14990 6085239 2024-02-27 14:51:14.691 2024-02-27 14:51:14.691 1000 FEE 440622 7425 6085240 2024-02-27 14:51:14.691 2024-02-27 14:51:14.691 9000 TIP 440622 9705 6085253 2024-02-27 14:51:46.919 2024-02-27 14:51:46.919 7700 FEE 439287 15732 6085254 2024-02-27 14:51:46.919 2024-02-27 14:51:46.919 69300 TIP 439287 1236 6085298 2024-02-27 14:57:34.016 2024-02-27 14:57:34.016 100 FEE 439836 882 6085299 2024-02-27 14:57:34.016 2024-02-27 14:57:34.016 900 TIP 439836 17103 6085320 2024-02-27 14:57:36.216 2024-02-27 14:57:36.216 100 FEE 439836 19465 6085321 2024-02-27 14:57:36.216 2024-02-27 14:57:36.216 900 TIP 439836 7766 6085322 2024-02-27 14:57:36.372 2024-02-27 14:57:36.372 100 FEE 439836 13348 6085323 2024-02-27 14:57:36.372 2024-02-27 14:57:36.372 900 TIP 439836 21194 6085324 2024-02-27 14:57:36.532 2024-02-27 14:57:36.532 100 FEE 439836 5017 6085325 2024-02-27 14:57:36.532 2024-02-27 14:57:36.532 900 TIP 439836 1003 6085345 2024-02-27 14:59:15.17 2024-02-27 14:59:15.17 0 FEE 440643 8729 6085347 2024-02-27 14:59:40.775 2024-02-27 14:59:40.775 2100 FEE 440604 19381 6085348 2024-02-27 14:59:40.775 2024-02-27 14:59:40.775 18900 TIP 440604 20562 6085349 2024-02-27 14:59:55.635 2024-02-27 14:59:55.635 1000 FEE 440445 18116 6085350 2024-02-27 14:59:55.635 2024-02-27 14:59:55.635 9000 TIP 440445 14910 6085368 2024-02-27 15:03:32.352 2024-02-27 15:03:32.352 4000 FEE 440633 16717 6085369 2024-02-27 15:03:32.352 2024-02-27 15:03:32.352 36000 TIP 440633 20502 6085374 2024-02-27 15:05:38.338 2024-02-27 15:05:38.338 100 FEE 440642 20757 6085375 2024-02-27 15:05:38.338 2024-02-27 15:05:38.338 900 TIP 440642 21022 6085134 2024-02-27 14:40:05.203 2024-02-27 14:40:05.203 1000 STREAM 141924 5791 6085144 2024-02-27 14:41:05.152 2024-02-27 14:41:05.152 1000 STREAM 141924 11829 6085162 2024-02-27 14:44:03.926 2024-02-27 14:44:03.926 1000 STREAM 141924 21356 6085180 2024-02-27 14:46:03.948 2024-02-27 14:46:03.948 1000 STREAM 141924 18336 6085212 2024-02-27 14:48:03.955 2024-02-27 14:48:03.955 1000 STREAM 141924 8505 6085219 2024-02-27 14:49:03.976 2024-02-27 14:49:03.976 1000 STREAM 141924 6594 6085288 2024-02-27 14:57:04.007 2024-02-27 14:57:04.007 1000 STREAM 141924 17275 6085344 2024-02-27 14:59:04.003 2024-02-27 14:59:04.003 1000 STREAM 141924 8269 6085364 2024-02-27 15:02:04.001 2024-02-27 15:02:04.001 1000 STREAM 141924 1881 6085367 2024-02-27 15:03:04.003 2024-02-27 15:03:04.003 1000 STREAM 141924 18626 6085370 2024-02-27 15:04:04.009 2024-02-27 15:04:04.009 1000 STREAM 141924 20059 6085371 2024-02-27 15:05:04.016 2024-02-27 15:05:04.016 1000 STREAM 141924 12744 6085395 2024-02-27 15:09:04.04 2024-02-27 15:09:04.04 1000 STREAM 141924 16948 6085410 2024-02-27 15:10:04.036 2024-02-27 15:10:04.036 1000 STREAM 141924 17124 6085430 2024-02-27 15:13:02.101 2024-02-27 15:13:02.101 1000 STREAM 141924 8400 6085486 2024-02-27 15:16:04.086 2024-02-27 15:16:04.086 1000 STREAM 141924 644 6085509 2024-02-27 15:17:02.095 2024-02-27 15:17:02.095 1000 STREAM 141924 20502 6085638 2024-02-27 15:26:04.106 2024-02-27 15:26:04.106 1000 STREAM 141924 635 6085255 2024-02-27 14:51:47.126 2024-02-27 14:51:47.126 1000 FEE 440632 8287 6085258 2024-02-27 14:51:59.118 2024-02-27 14:51:59.118 2500000 FEE 439276 19458 6085259 2024-02-27 14:51:59.118 2024-02-27 14:51:59.118 22500000 TIP 439276 18209 6085263 2024-02-27 14:52:19.175 2024-02-27 14:52:19.175 120000 FEE 440633 21172 6085284 2024-02-27 14:56:38.582 2024-02-27 14:56:38.582 1000000 FEE 440639 11942 6085291 2024-02-27 14:57:14.205 2024-02-27 14:57:14.205 10000 FEE 440641 21387 6085314 2024-02-27 14:57:35.32 2024-02-27 14:57:35.32 100 FEE 439836 7847 6085315 2024-02-27 14:57:35.32 2024-02-27 14:57:35.32 900 TIP 439836 2652 6085316 2024-02-27 14:57:35.482 2024-02-27 14:57:35.482 100 FEE 439836 882 6085317 2024-02-27 14:57:35.482 2024-02-27 14:57:35.482 900 TIP 439836 736 6085361 2024-02-27 15:01:51.344 2024-02-27 15:01:51.344 1000 FEE 440651 18511 6085362 2024-02-27 15:01:59.161 2024-02-27 15:01:59.161 1600 FEE 440612 21138 6085363 2024-02-27 15:01:59.161 2024-02-27 15:01:59.161 14400 TIP 440612 698 6085383 2024-02-27 15:07:28.451 2024-02-27 15:07:28.451 10000 FEE 440655 2039 6085387 2024-02-27 15:08:03.031 2024-02-27 15:08:03.031 900 FEE 440242 854 6085388 2024-02-27 15:08:03.031 2024-02-27 15:08:03.031 8100 TIP 440242 1008 6085392 2024-02-27 15:08:24.745 2024-02-27 15:08:24.745 2100 FEE 440647 16406 6085393 2024-02-27 15:08:24.745 2024-02-27 15:08:24.745 18900 TIP 440647 4173 6085394 2024-02-27 15:08:27.988 2024-02-27 15:08:27.988 0 FEE 440654 18941 6085400 2024-02-27 15:09:26.93 2024-02-27 15:09:26.93 100 FEE 440405 1030 6085401 2024-02-27 15:09:26.93 2024-02-27 15:09:26.93 900 TIP 440405 18629 6085404 2024-02-27 15:09:42.938 2024-02-27 15:09:42.938 100 FEE 440228 12049 6085405 2024-02-27 15:09:42.938 2024-02-27 15:09:42.938 900 TIP 440228 18667 6085433 2024-02-27 15:13:07.001 2024-02-27 15:13:07.001 7700 FEE 440622 6687 6085434 2024-02-27 15:13:07.001 2024-02-27 15:13:07.001 69300 TIP 440622 20756 6085437 2024-02-27 15:13:07.402 2024-02-27 15:13:07.402 7700 FEE 440622 7583 6085438 2024-02-27 15:13:07.402 2024-02-27 15:13:07.402 69300 TIP 440622 8570 6085439 2024-02-27 15:13:07.537 2024-02-27 15:13:07.537 7700 FEE 440622 5306 6085440 2024-02-27 15:13:07.537 2024-02-27 15:13:07.537 69300 TIP 440622 15978 6085457 2024-02-27 15:14:44.699 2024-02-27 15:14:44.699 100 FEE 440570 14774 6085458 2024-02-27 15:14:44.699 2024-02-27 15:14:44.699 900 TIP 440570 6573 6085484 2024-02-27 15:16:02.551 2024-02-27 15:16:02.551 3300 FEE 440495 18830 6085485 2024-02-27 15:16:02.551 2024-02-27 15:16:02.551 29700 TIP 440495 20022 6085518 2024-02-27 15:18:08.775 2024-02-27 15:18:08.775 1000 FEE 440667 5160 6085257 2024-02-27 14:51:52.353 2024-02-27 14:51:52.353 22500 TIP 440623 4064 6085266 2024-02-27 14:52:49.761 2024-02-27 14:52:49.761 0 FEE 440633 17094 6085278 2024-02-27 14:55:40.832 2024-02-27 14:55:40.832 7700 FEE 440635 19961 6085279 2024-02-27 14:55:40.832 2024-02-27 14:55:40.832 69300 TIP 440635 1618 6085296 2024-02-27 14:57:33.855 2024-02-27 14:57:33.855 100 FEE 439836 9354 6085297 2024-02-27 14:57:33.855 2024-02-27 14:57:33.855 900 TIP 439836 20137 6085308 2024-02-27 14:57:34.809 2024-02-27 14:57:34.809 100 FEE 439836 17064 6085309 2024-02-27 14:57:34.809 2024-02-27 14:57:34.809 900 TIP 439836 1060 6085310 2024-02-27 14:57:34.974 2024-02-27 14:57:34.974 100 FEE 439836 17116 6085311 2024-02-27 14:57:34.974 2024-02-27 14:57:34.974 900 TIP 439836 9992 6085312 2024-02-27 14:57:35.145 2024-02-27 14:57:35.145 100 FEE 439836 21083 6085313 2024-02-27 14:57:35.145 2024-02-27 14:57:35.145 900 TIP 439836 16336 6085262 2024-02-27 14:52:05.191 2024-02-27 14:52:05.191 1000 STREAM 141924 3342 6085269 2024-02-27 14:54:05.207 2024-02-27 14:54:05.207 1000 STREAM 141924 2328 6085277 2024-02-27 14:55:05.217 2024-02-27 14:55:05.217 1000 STREAM 141924 8284 6085281 2024-02-27 14:56:05.207 2024-02-27 14:56:05.207 1000 STREAM 141924 17411 6085351 2024-02-27 15:00:05.281 2024-02-27 15:00:05.281 1000 STREAM 141924 21281 6085272 2024-02-27 14:54:20.726 2024-02-27 14:54:20.726 7700 FEE 440624 21033 6085273 2024-02-27 14:54:20.726 2024-02-27 14:54:20.726 69300 TIP 440624 21386 6085280 2024-02-27 14:56:03.373 2024-02-27 14:56:03.373 1000 FEE 440638 8729 6085289 2024-02-27 14:57:07.137 2024-02-27 14:57:07.137 6900 FEE 439639 951 6085290 2024-02-27 14:57:07.137 2024-02-27 14:57:07.137 62100 TIP 439639 20370 6085292 2024-02-27 14:57:27.247 2024-02-27 14:57:27.247 1000 FEE 440633 1769 6085293 2024-02-27 14:57:27.247 2024-02-27 14:57:27.247 9000 TIP 440633 19837 6085302 2024-02-27 14:57:34.328 2024-02-27 14:57:34.328 100 FEE 439836 19033 6085303 2024-02-27 14:57:34.328 2024-02-27 14:57:34.328 900 TIP 439836 18873 6085306 2024-02-27 14:57:34.631 2024-02-27 14:57:34.631 100 FEE 439836 9166 6085307 2024-02-27 14:57:34.631 2024-02-27 14:57:34.631 900 TIP 439836 1836 6085328 2024-02-27 14:57:42.657 2024-02-27 14:57:42.657 100 FEE 439836 20257 6085329 2024-02-27 14:57:42.657 2024-02-27 14:57:42.657 900 TIP 439836 18956 6085330 2024-02-27 14:57:43.268 2024-02-27 14:57:43.268 100 FEE 439836 19795 6085331 2024-02-27 14:57:43.268 2024-02-27 14:57:43.268 900 TIP 439836 17157 6085332 2024-02-27 14:57:43.894 2024-02-27 14:57:43.894 100 FEE 439836 12721 6085333 2024-02-27 14:57:43.894 2024-02-27 14:57:43.894 900 TIP 439836 13527 6085339 2024-02-27 14:58:17.885 2024-02-27 14:58:17.885 10000 FEE 440336 21585 6085340 2024-02-27 14:58:17.885 2024-02-27 14:58:17.885 90000 TIP 440336 18208 6085365 2024-02-27 15:02:14.477 2024-02-27 15:02:14.477 4000 FEE 440642 20642 6085366 2024-02-27 15:02:14.477 2024-02-27 15:02:14.477 36000 TIP 440642 18745 6085379 2024-02-27 15:06:25.895 2024-02-27 15:06:25.895 1000 FEE 440654 11938 6085445 2024-02-27 15:13:07.83 2024-02-27 15:13:07.83 7700 FEE 440622 18828 6085446 2024-02-27 15:13:07.83 2024-02-27 15:13:07.83 69300 TIP 440622 20073 6085447 2024-02-27 15:13:07.929 2024-02-27 15:13:07.929 7700 FEE 440622 11073 6085448 2024-02-27 15:13:07.929 2024-02-27 15:13:07.929 69300 TIP 440622 12708 6085462 2024-02-27 15:14:57.817 2024-02-27 15:14:57.817 900 FEE 440592 20481 6085463 2024-02-27 15:14:57.817 2024-02-27 15:14:57.817 8100 TIP 440592 18321 6085470 2024-02-27 15:15:24.455 2024-02-27 15:15:24.455 90000 FEE 440592 20586 6085471 2024-02-27 15:15:24.455 2024-02-27 15:15:24.455 810000 TIP 440592 20287 6085492 2024-02-27 15:16:17.758 2024-02-27 15:16:17.758 1000 FEE 440666 12057 6085497 2024-02-27 15:16:43.578 2024-02-27 15:16:43.578 3300 FEE 439815 5761 6085498 2024-02-27 15:16:43.578 2024-02-27 15:16:43.578 29700 TIP 439815 18892 6085511 2024-02-27 15:17:19.371 2024-02-27 15:17:19.371 6600 FEE 440577 16594 6085512 2024-02-27 15:17:19.371 2024-02-27 15:17:19.371 59400 TIP 440577 11873 6085516 2024-02-27 15:18:08.423 2024-02-27 15:18:08.423 100 FEE 440662 8472 6085517 2024-02-27 15:18:08.423 2024-02-27 15:18:08.423 900 TIP 440662 16753 6085544 2024-02-27 15:21:27.707 2024-02-27 15:21:27.707 9000 FEE 440532 4654 6085545 2024-02-27 15:21:27.707 2024-02-27 15:21:27.707 81000 TIP 440532 626 6085549 2024-02-27 15:22:13.711 2024-02-27 15:22:13.711 1000 FEE 440663 700 6085550 2024-02-27 15:22:13.711 2024-02-27 15:22:13.711 9000 TIP 440663 10668 6085575 2024-02-27 15:23:17.917 2024-02-27 15:23:17.917 500 FEE 440622 20059 6085576 2024-02-27 15:23:17.917 2024-02-27 15:23:17.917 4500 TIP 440622 16267 6085589 2024-02-27 15:24:30.216 2024-02-27 15:24:30.216 200 FEE 440495 16532 6085590 2024-02-27 15:24:30.216 2024-02-27 15:24:30.216 1800 TIP 440495 15521 6085595 2024-02-27 15:24:37.901 2024-02-27 15:24:37.901 1000 FEE 440648 20504 6085596 2024-02-27 15:24:37.901 2024-02-27 15:24:37.901 9000 TIP 440648 11263 6085605 2024-02-27 15:24:40.498 2024-02-27 15:24:40.498 200 FEE 438968 18842 6085606 2024-02-27 15:24:40.498 2024-02-27 15:24:40.498 1800 TIP 438968 9336 6085607 2024-02-27 15:24:43.19 2024-02-27 15:24:43.19 1000 FEE 440565 697 6085608 2024-02-27 15:24:43.19 2024-02-27 15:24:43.19 9000 TIP 440565 21577 6085621 2024-02-27 15:25:01.038 2024-02-27 15:25:01.038 1000 FEE 440560 18368 6085622 2024-02-27 15:25:01.038 2024-02-27 15:25:01.038 9000 TIP 440560 21296 6085639 2024-02-27 15:26:07.05 2024-02-27 15:26:07.05 100 FEE 440566 19126 6085640 2024-02-27 15:26:07.05 2024-02-27 15:26:07.05 900 TIP 440566 21090 6085649 2024-02-27 15:26:17.645 2024-02-27 15:26:17.645 1000 FEE 440671 12721 6085650 2024-02-27 15:26:17.645 2024-02-27 15:26:17.645 9000 TIP 440671 5865 6085661 2024-02-27 15:27:12.207 2024-02-27 15:27:12.207 7700 FEE 440587 3347 6085662 2024-02-27 15:27:12.207 2024-02-27 15:27:12.207 69300 TIP 440587 20717 6085689 2024-02-27 15:27:23.076 2024-02-27 15:27:23.076 2100 FEE 440622 9329 6085690 2024-02-27 15:27:23.076 2024-02-27 15:27:23.076 18900 TIP 440622 12049 6085693 2024-02-27 15:27:23.643 2024-02-27 15:27:23.643 2100 FEE 440622 17741 6085694 2024-02-27 15:27:23.643 2024-02-27 15:27:23.643 18900 TIP 440622 20276 6085695 2024-02-27 15:27:24.126 2024-02-27 15:27:24.126 2100 FEE 440622 8954 6085696 2024-02-27 15:27:24.126 2024-02-27 15:27:24.126 18900 TIP 440622 9843 6085705 2024-02-27 15:27:35.295 2024-02-27 15:27:35.295 2500 FEE 440647 21164 6085706 2024-02-27 15:27:35.295 2024-02-27 15:27:35.295 22500 TIP 440647 20129 6085719 2024-02-27 15:28:59.264 2024-02-27 15:28:59.264 1000 FEE 440588 16145 6085720 2024-02-27 15:28:59.264 2024-02-27 15:28:59.264 9000 TIP 440588 9351 6085738 2024-02-27 15:29:46.35 2024-02-27 15:29:46.35 7700 FEE 440663 9982 6085739 2024-02-27 15:29:46.35 2024-02-27 15:29:46.35 69300 TIP 440663 8287 6085749 2024-02-27 15:30:04.529 2024-02-27 15:30:04.529 7700 FEE 440575 16847 6085750 2024-02-27 15:30:04.529 2024-02-27 15:30:04.529 69300 TIP 440575 10311 6085751 2024-02-27 15:30:04.669 2024-02-27 15:30:04.669 7700 FEE 440575 7772 6085752 2024-02-27 15:30:04.669 2024-02-27 15:30:04.669 69300 TIP 440575 18368 6085761 2024-02-27 15:30:05.401 2024-02-27 15:30:05.401 7700 FEE 440575 13399 6085762 2024-02-27 15:30:05.401 2024-02-27 15:30:05.401 69300 TIP 440575 11523 6085777 2024-02-27 15:30:16.25 2024-02-27 15:30:16.25 7700 FEE 440575 8059 6085778 2024-02-27 15:30:16.25 2024-02-27 15:30:16.25 69300 TIP 440575 2829 6085791 2024-02-27 15:30:32.815 2024-02-27 15:30:32.815 1000 FEE 440679 9363 6085792 2024-02-27 15:30:37.944 2024-02-27 15:30:37.944 1000 FEE 440472 7877 6085793 2024-02-27 15:30:37.944 2024-02-27 15:30:37.944 9000 TIP 440472 19601 6085871 2024-02-27 15:32:12.048 2024-02-27 15:32:12.048 1000 FEE 207182 20680 6085872 2024-02-27 15:32:12.048 2024-02-27 15:32:12.048 9000 TIP 207182 9476 6085896 2024-02-27 15:35:04.953 2024-02-27 15:35:04.953 100 FEE 440550 18877 6085897 2024-02-27 15:35:04.953 2024-02-27 15:35:04.953 900 TIP 440550 21599 6085902 2024-02-27 15:35:19.581 2024-02-27 15:35:19.581 1000 FEE 437630 5725 6085903 2024-02-27 15:35:19.581 2024-02-27 15:35:19.581 9000 TIP 437630 1483 6085908 2024-02-27 15:35:20.431 2024-02-27 15:35:20.431 1000 FEE 437630 21416 6085909 2024-02-27 15:35:20.431 2024-02-27 15:35:20.431 9000 TIP 437630 16336 6085926 2024-02-27 15:35:35.938 2024-02-27 15:35:35.938 1600 FEE 440674 1784 6085353 2024-02-27 15:00:06.507 2024-02-27 15:00:06.507 1000 FEE 440648 2583 6085354 2024-02-27 15:00:06.993 2024-02-27 15:00:06.993 1000 FEE 440649 16267 6085406 2024-02-27 15:09:43.16 2024-02-27 15:09:43.16 900 FEE 440228 19967 6085407 2024-02-27 15:09:43.16 2024-02-27 15:09:43.16 8100 TIP 440228 9084 6085415 2024-02-27 15:12:19.719 2024-02-27 15:12:19.719 7700 FEE 440520 11967 6085416 2024-02-27 15:12:19.719 2024-02-27 15:12:19.719 69300 TIP 440520 2711 6085419 2024-02-27 15:12:23.209 2024-02-27 15:12:23.209 7700 FEE 440651 1429 6085420 2024-02-27 15:12:23.209 2024-02-27 15:12:23.209 69300 TIP 440651 15978 6085425 2024-02-27 15:12:39.657 2024-02-27 15:12:39.657 1000 FEE 440659 1519 6085426 2024-02-27 15:12:42.124 2024-02-27 15:12:42.124 7700 FEE 440580 15075 6085427 2024-02-27 15:12:42.124 2024-02-27 15:12:42.124 69300 TIP 440580 18209 6085431 2024-02-27 15:13:06.914 2024-02-27 15:13:06.914 7700 FEE 440622 2233 6085432 2024-02-27 15:13:06.914 2024-02-27 15:13:06.914 69300 TIP 440622 10096 6085435 2024-02-27 15:13:07.235 2024-02-27 15:13:07.235 7700 FEE 440622 19282 6085436 2024-02-27 15:13:07.235 2024-02-27 15:13:07.235 69300 TIP 440622 6191 6085441 2024-02-27 15:13:07.602 2024-02-27 15:13:07.602 7700 FEE 440622 9 6085442 2024-02-27 15:13:07.602 2024-02-27 15:13:07.602 69300 TIP 440622 654 6085449 2024-02-27 15:13:28.778 2024-02-27 15:13:28.778 3300 FEE 440132 12516 6085450 2024-02-27 15:13:28.778 2024-02-27 15:13:28.778 29700 TIP 440132 12708 6085453 2024-02-27 15:13:55.14 2024-02-27 15:13:55.14 1000 FEE 440660 16970 6085464 2024-02-27 15:15:00.183 2024-02-27 15:15:00.183 9000 FEE 440592 21480 6085465 2024-02-27 15:15:00.183 2024-02-27 15:15:00.183 81000 TIP 440592 18008 6085489 2024-02-27 15:16:07.134 2024-02-27 15:16:07.134 3300 FEE 439472 18629 6085490 2024-02-27 15:16:07.134 2024-02-27 15:16:07.134 29700 TIP 439472 676 6085491 2024-02-27 15:16:10.887 2024-02-27 15:16:10.887 1000 FEE 440665 6555 6085536 2024-02-27 15:20:59.097 2024-02-27 15:20:59.097 3300 FEE 440658 21159 6085537 2024-02-27 15:20:59.097 2024-02-27 15:20:59.097 29700 TIP 440658 13348 6085559 2024-02-27 15:22:14.691 2024-02-27 15:22:14.691 1000 FEE 440663 2390 6085560 2024-02-27 15:22:14.691 2024-02-27 15:22:14.691 9000 TIP 440663 822 6085567 2024-02-27 15:22:15.525 2024-02-27 15:22:15.525 1000 FEE 440663 19158 6085568 2024-02-27 15:22:15.525 2024-02-27 15:22:15.525 9000 TIP 440663 11145 6085599 2024-02-27 15:24:39.115 2024-02-27 15:24:39.115 27900 FEE 440520 18313 6085600 2024-02-27 15:24:39.115 2024-02-27 15:24:39.115 251100 TIP 440520 11523 6085645 2024-02-27 15:26:13 2024-02-27 15:26:13 4000 FEE 440542 19541 6085646 2024-02-27 15:26:13 2024-02-27 15:26:13 36000 TIP 440542 21416 6085667 2024-02-27 15:27:13.418 2024-02-27 15:27:13.418 7700 FEE 440587 628 6085668 2024-02-27 15:27:13.418 2024-02-27 15:27:13.418 69300 TIP 440587 15978 6085687 2024-02-27 15:27:20.601 2024-02-27 15:27:20.601 7700 FEE 440587 21103 6085688 2024-02-27 15:27:20.601 2024-02-27 15:27:20.601 69300 TIP 440587 1141 6085722 2024-02-27 15:29:31.403 2024-02-27 15:29:31.403 77000 DONT_LIKE_THIS 440676 1650 6085767 2024-02-27 15:30:14.824 2024-02-27 15:30:14.824 7700 FEE 440575 11153 6085768 2024-02-27 15:30:14.824 2024-02-27 15:30:14.824 69300 TIP 440575 20109 6085787 2024-02-27 15:30:19.86 2024-02-27 15:30:19.86 1000 FEE 440622 19930 6085788 2024-02-27 15:30:19.86 2024-02-27 15:30:19.86 9000 TIP 440622 11609 6085798 2024-02-27 15:30:38.651 2024-02-27 15:30:38.651 1000 FEE 440472 5557 6085799 2024-02-27 15:30:38.651 2024-02-27 15:30:38.651 9000 TIP 440472 21501 6085850 2024-02-27 15:31:41.331 2024-02-27 15:31:41.331 6900 FEE 440575 17275 6085851 2024-02-27 15:31:41.331 2024-02-27 15:31:41.331 62100 TIP 440575 19417 6085852 2024-02-27 15:31:41.389 2024-02-27 15:31:41.389 6900 FEE 440575 5085 6085853 2024-02-27 15:31:41.389 2024-02-27 15:31:41.389 62100 TIP 440575 1493 6085860 2024-02-27 15:31:43.452 2024-02-27 15:31:43.452 6900 FEE 440575 10690 6085861 2024-02-27 15:31:43.452 2024-02-27 15:31:43.452 62100 TIP 440575 1389 6085920 2024-02-27 15:35:24.748 2024-02-27 15:35:24.748 1000 FEE 440662 10608 6085921 2024-02-27 15:35:24.748 2024-02-27 15:35:24.748 9000 TIP 440662 18468 6085935 2024-02-27 15:36:11.159 2024-02-27 15:36:11.159 1000 FEE 440685 7992 6085977 2024-02-27 15:41:28.46 2024-02-27 15:41:28.46 900 FEE 440411 21164 6085978 2024-02-27 15:41:28.46 2024-02-27 15:41:28.46 8100 TIP 440411 787 6085990 2024-02-27 15:43:18.676 2024-02-27 15:43:18.676 100 FEE 440246 20751 6085991 2024-02-27 15:43:18.676 2024-02-27 15:43:18.676 900 TIP 440246 16059 6085996 2024-02-27 15:43:23.268 2024-02-27 15:43:23.268 1000 FEE 440693 10398 6086005 2024-02-27 15:43:41.698 2024-02-27 15:43:41.698 800 FEE 440575 19352 6086006 2024-02-27 15:43:41.698 2024-02-27 15:43:41.698 7200 TIP 440575 2773 6086014 2024-02-27 15:45:05.595 2024-02-27 15:45:05.595 1000 FEE 440694 9177 6086024 2024-02-27 15:46:51.469 2024-02-27 15:46:51.469 100 FEE 440694 21391 6086025 2024-02-27 15:46:51.469 2024-02-27 15:46:51.469 900 TIP 440694 19502 6086026 2024-02-27 15:46:51.656 2024-02-27 15:46:51.656 900 FEE 440694 19660 6086027 2024-02-27 15:46:51.656 2024-02-27 15:46:51.656 8100 TIP 440694 2529 6086033 2024-02-27 15:47:21.492 2024-02-27 15:47:21.492 10000 FEE 440266 3656 6086034 2024-02-27 15:47:21.492 2024-02-27 15:47:21.492 90000 TIP 440266 19151 6086050 2024-02-27 15:48:05.75 2024-02-27 15:48:05.75 2100 FEE 440663 647 6086051 2024-02-27 15:48:05.75 2024-02-27 15:48:05.75 18900 TIP 440663 18556 6086076 2024-02-27 15:48:31.015 2024-02-27 15:48:31.015 700 FEE 439362 14905 6086077 2024-02-27 15:48:31.015 2024-02-27 15:48:31.015 6300 TIP 439362 11698 6086107 2024-02-27 15:49:19.726 2024-02-27 15:49:19.726 2100 FEE 440633 17455 6086108 2024-02-27 15:49:19.726 2024-02-27 15:49:19.726 18900 TIP 440633 896 6086111 2024-02-27 15:49:22.979 2024-02-27 15:49:22.979 100000 FEE 440699 16356 6086129 2024-02-27 15:49:57.489 2024-02-27 15:49:57.489 2100 FEE 440605 18984 6086130 2024-02-27 15:49:57.489 2024-02-27 15:49:57.489 18900 TIP 440605 4388 6086136 2024-02-27 15:50:22.9 2024-02-27 15:50:22.9 2100 FEE 440523 1720 6085359 2024-02-27 15:00:59.346 2024-02-27 15:00:59.346 900 TIP 440641 5942 6085373 2024-02-27 15:05:27.081 2024-02-27 15:05:27.081 1000 FEE 440653 674 6085455 2024-02-27 15:14:10.554 2024-02-27 15:14:10.554 1000 FEE 440661 20889 6085459 2024-02-27 15:14:53.18 2024-02-27 15:14:53.18 100000 FEE 440663 2329 6085487 2024-02-27 15:16:06.397 2024-02-27 15:16:06.397 3300 FEE 439472 18769 6085488 2024-02-27 15:16:06.397 2024-02-27 15:16:06.397 29700 TIP 439472 16126 6085526 2024-02-27 15:19:58.716 2024-02-27 15:19:58.716 0 FEE 440667 20987 6085557 2024-02-27 15:22:14.497 2024-02-27 15:22:14.497 1000 FEE 440663 21063 6085558 2024-02-27 15:22:14.497 2024-02-27 15:22:14.497 9000 TIP 440663 19662 6085569 2024-02-27 15:22:15.692 2024-02-27 15:22:15.692 1000 FEE 440663 2789 6085570 2024-02-27 15:22:15.692 2024-02-27 15:22:15.692 9000 TIP 440663 18745 6085573 2024-02-27 15:23:17.599 2024-02-27 15:23:17.599 500 FEE 440622 1576 6085574 2024-02-27 15:23:17.599 2024-02-27 15:23:17.599 4500 TIP 440622 2075 6085601 2024-02-27 15:24:40.136 2024-02-27 15:24:40.136 200 FEE 438968 954 6085602 2024-02-27 15:24:40.136 2024-02-27 15:24:40.136 1800 TIP 438968 2431 6085609 2024-02-27 15:24:43.596 2024-02-27 15:24:43.596 1000 FEE 440565 11450 6085610 2024-02-27 15:24:43.596 2024-02-27 15:24:43.596 9000 TIP 440565 9200 6085628 2024-02-27 15:25:07.987 2024-02-27 15:25:07.987 3400 FEE 440622 15139 6085629 2024-02-27 15:25:07.987 2024-02-27 15:25:07.987 30600 TIP 440622 803 6085681 2024-02-27 15:27:20.098 2024-02-27 15:27:20.098 7700 FEE 440587 5703 6085682 2024-02-27 15:27:20.098 2024-02-27 15:27:20.098 69300 TIP 440587 628 6085699 2024-02-27 15:27:25.7 2024-02-27 15:27:25.7 100 FEE 440552 5728 6085700 2024-02-27 15:27:25.7 2024-02-27 15:27:25.7 900 TIP 440552 4802 6085713 2024-02-27 15:28:12.196 2024-02-27 15:28:12.196 100 FEE 440366 725 6085714 2024-02-27 15:28:12.196 2024-02-27 15:28:12.196 900 TIP 440366 8423 6085723 2024-02-27 15:29:34.889 2024-02-27 15:29:34.889 800 FEE 440664 17513 6085724 2024-02-27 15:29:34.889 2024-02-27 15:29:34.889 7200 TIP 440664 1213 6085728 2024-02-27 15:29:43.363 2024-02-27 15:29:43.363 7700 FEE 440663 13753 6085729 2024-02-27 15:29:43.363 2024-02-27 15:29:43.363 69300 TIP 440663 14280 6085765 2024-02-27 15:30:14.489 2024-02-27 15:30:14.489 15400 FEE 440575 17722 6085766 2024-02-27 15:30:14.489 2024-02-27 15:30:14.489 138600 TIP 440575 18819 6085781 2024-02-27 15:30:16.587 2024-02-27 15:30:16.587 7700 FEE 440575 15408 6085782 2024-02-27 15:30:16.587 2024-02-27 15:30:16.587 69300 TIP 440575 657 6085800 2024-02-27 15:30:38.933 2024-02-27 15:30:38.933 1000 FEE 440472 10719 6085801 2024-02-27 15:30:38.933 2024-02-27 15:30:38.933 9000 TIP 440472 11885 6085812 2024-02-27 15:30:58.709 2024-02-27 15:30:58.709 1000 FEE 440592 7558 6085813 2024-02-27 15:30:58.709 2024-02-27 15:30:58.709 9000 TIP 440592 5761 6085846 2024-02-27 15:31:40.975 2024-02-27 15:31:40.975 6900 FEE 440575 866 6085847 2024-02-27 15:31:40.975 2024-02-27 15:31:40.975 62100 TIP 440575 21044 6085867 2024-02-27 15:32:08.993 2024-02-27 15:32:08.993 6900 FEE 440675 20511 6085868 2024-02-27 15:32:08.993 2024-02-27 15:32:08.993 62100 TIP 440675 15536 6085876 2024-02-27 15:32:48.062 2024-02-27 15:32:48.062 10000 FEE 440680 15148 6085877 2024-02-27 15:32:48.062 2024-02-27 15:32:48.062 90000 TIP 440680 20564 6085904 2024-02-27 15:35:19.85 2024-02-27 15:35:19.85 1000 FEE 437630 20871 6085905 2024-02-27 15:35:19.85 2024-02-27 15:35:19.85 9000 TIP 437630 12779 6085912 2024-02-27 15:35:23.955 2024-02-27 15:35:23.955 1000 FEE 437630 14045 6085913 2024-02-27 15:35:23.955 2024-02-27 15:35:23.955 9000 TIP 437630 5752 6085914 2024-02-27 15:35:24.365 2024-02-27 15:35:24.365 1000 FEE 440662 16929 6085915 2024-02-27 15:35:24.365 2024-02-27 15:35:24.365 9000 TIP 440662 12965 6085930 2024-02-27 15:35:48.781 2024-02-27 15:35:48.781 1000 FEE 434156 18664 6085931 2024-02-27 15:35:48.781 2024-02-27 15:35:48.781 9000 TIP 434156 1092 6085932 2024-02-27 15:35:51.576 2024-02-27 15:35:51.576 10700 FEE 434156 20778 6085933 2024-02-27 15:35:51.576 2024-02-27 15:35:51.576 96300 TIP 434156 21455 6085940 2024-02-27 15:37:51.172 2024-02-27 15:37:51.172 1000 FEE 440339 766 6085941 2024-02-27 15:37:51.172 2024-02-27 15:37:51.172 9000 TIP 440339 17514 6085942 2024-02-27 15:37:57.41 2024-02-27 15:37:57.41 1000 FEE 440475 21145 6085943 2024-02-27 15:37:57.41 2024-02-27 15:37:57.41 9000 TIP 440475 17162 6085955 2024-02-27 15:40:18.898 2024-02-27 15:40:18.898 3100 FEE 440687 18517 6085956 2024-02-27 15:40:18.898 2024-02-27 15:40:18.898 27900 TIP 440687 18402 6085979 2024-02-27 15:41:37.042 2024-02-27 15:41:37.042 3100 FEE 440587 6202 6085980 2024-02-27 15:41:37.042 2024-02-27 15:41:37.042 27900 TIP 440587 21136 6086028 2024-02-27 15:46:52.337 2024-02-27 15:46:52.337 9000 FEE 440694 5775 6086029 2024-02-27 15:46:52.337 2024-02-27 15:46:52.337 81000 TIP 440694 19463 6086039 2024-02-27 15:47:41.487 2024-02-27 15:47:41.487 10000 FEE 440695 15617 6086054 2024-02-27 15:48:08.606 2024-02-27 15:48:08.606 2100 FEE 440386 20826 6086055 2024-02-27 15:48:08.606 2024-02-27 15:48:08.606 18900 TIP 440386 8926 6086060 2024-02-27 15:48:18.838 2024-02-27 15:48:18.838 2100 FEE 440652 18412 6086061 2024-02-27 15:48:18.838 2024-02-27 15:48:18.838 18900 TIP 440652 18309 6086074 2024-02-27 15:48:29.649 2024-02-27 15:48:29.649 700 FEE 439362 20023 6086075 2024-02-27 15:48:29.649 2024-02-27 15:48:29.649 6300 TIP 439362 14404 6086092 2024-02-27 15:49:04.48 2024-02-27 15:49:04.48 3100 FEE 440641 18932 6086093 2024-02-27 15:49:04.48 2024-02-27 15:49:04.48 27900 TIP 440641 2088 6086145 2024-02-27 15:51:09.512 2024-02-27 15:51:09.512 2100 FEE 440496 664 6086146 2024-02-27 15:51:09.512 2024-02-27 15:51:09.512 18900 TIP 440496 10393 6086174 2024-02-27 15:53:03.551 2024-02-27 15:53:03.551 125000 FEE 440705 6594 6086224 2024-02-27 15:54:47.105 2024-02-27 15:54:47.105 2100 FEE 440649 21238 6086225 2024-02-27 15:54:47.105 2024-02-27 15:54:47.105 18900 TIP 440649 1576 6086242 2024-02-27 15:55:13.075 2024-02-27 15:55:13.075 100000 FEE 440710 2367 6086253 2024-02-27 15:56:42.6 2024-02-27 15:56:42.6 2100 FEE 440711 2213 6086254 2024-02-27 15:56:42.6 2024-02-27 15:56:42.6 18900 TIP 440711 16154 6086288 2024-02-27 15:59:43.939 2024-02-27 15:59:43.939 2100 FEE 440608 827 6086289 2024-02-27 15:59:43.939 2024-02-27 15:59:43.939 18900 TIP 440608 1723 6086302 2024-02-27 15:59:56.659 2024-02-27 15:59:56.659 1000 FEE 440716 928 6086309 2024-02-27 15:59:58.624 2024-02-27 15:59:58.624 1000 FEE 439901 1567 6086310 2024-02-27 15:59:58.624 2024-02-27 15:59:58.624 9000 TIP 439901 17519 6086346 2024-02-27 16:00:07.744 2024-02-27 16:00:07.744 1000 FEE 439964 20099 6086347 2024-02-27 16:00:07.744 2024-02-27 16:00:07.744 9000 TIP 439964 19435 6086409 2024-02-27 16:01:32.032 2024-02-27 16:01:32.032 0 FEE 440713 18727 6086412 2024-02-27 16:01:34.938 2024-02-27 16:01:34.938 1000 FEE 440717 18945 6086427 2024-02-27 16:03:21.345 2024-02-27 16:03:21.345 1000 FEE 439368 17183 6086428 2024-02-27 16:03:21.345 2024-02-27 16:03:21.345 9000 TIP 439368 16097 6086450 2024-02-27 16:06:29.754 2024-02-27 16:06:29.754 10000 FEE 440467 17041 6086451 2024-02-27 16:06:29.754 2024-02-27 16:06:29.754 90000 TIP 440467 17001 6086454 2024-02-27 16:06:58.333 2024-02-27 16:06:58.333 2100 FEE 249797 5828 6086455 2024-02-27 16:06:58.333 2024-02-27 16:06:58.333 18900 TIP 249797 2111 6086488 2024-02-27 16:09:45.328 2024-02-27 16:09:45.328 1000 FEE 439446 14857 6086489 2024-02-27 16:09:45.328 2024-02-27 16:09:45.328 9000 TIP 439446 10586 6086500 2024-02-27 16:11:15.984 2024-02-27 16:11:15.984 1000 FEE 440730 16406 6086563 2024-02-27 16:17:04.509 2024-02-27 16:17:04.509 1000 FEE 440132 14472 6086564 2024-02-27 16:17:04.509 2024-02-27 16:17:04.509 9000 TIP 440132 20272 6086573 2024-02-27 16:17:14.721 2024-02-27 16:17:14.721 6900 FEE 440729 11938 6086574 2024-02-27 16:17:14.721 2024-02-27 16:17:14.721 62100 TIP 440729 19941 6086579 2024-02-27 16:17:42.131 2024-02-27 16:17:42.131 1000 FEE 440740 20889 6086600 2024-02-27 16:22:25.803 2024-02-27 16:22:25.803 1000 FEE 440743 18995 6086608 2024-02-27 16:22:56.537 2024-02-27 16:22:56.537 800 FEE 440729 2748 6085360 2024-02-27 15:01:04.006 2024-02-27 15:01:04.006 1000 STREAM 141924 18507 6085377 2024-02-27 15:06:04.023 2024-02-27 15:06:04.023 1000 STREAM 141924 19613 6085382 2024-02-27 15:07:04.019 2024-02-27 15:07:04.019 1000 STREAM 141924 20964 6085389 2024-02-27 15:08:04.028 2024-02-27 15:08:04.028 1000 STREAM 141924 20730 6085411 2024-02-27 15:11:04.026 2024-02-27 15:11:04.026 1000 STREAM 141924 640 6085385 2024-02-27 15:08:02.795 2024-02-27 15:08:02.795 100 FEE 440242 15160 6085386 2024-02-27 15:08:02.795 2024-02-27 15:08:02.795 900 TIP 440242 7966 6085390 2024-02-27 15:08:04.243 2024-02-27 15:08:04.243 9000 FEE 440242 20326 6085391 2024-02-27 15:08:04.243 2024-02-27 15:08:04.243 81000 TIP 440242 13143 6085396 2024-02-27 15:09:04.991 2024-02-27 15:09:04.991 1000 FEE 440657 2329 6085417 2024-02-27 15:12:19.828 2024-02-27 15:12:19.828 7700 FEE 440520 20573 6085418 2024-02-27 15:12:19.828 2024-02-27 15:12:19.828 69300 TIP 440520 14295 6085467 2024-02-27 15:15:06.012 2024-02-27 15:15:06.012 10000 FEE 440550 18640 6085468 2024-02-27 15:15:06.012 2024-02-27 15:15:06.012 90000 TIP 440550 6602 6085472 2024-02-27 15:15:42.596 2024-02-27 15:15:42.596 3300 FEE 440394 681 6085473 2024-02-27 15:15:42.596 2024-02-27 15:15:42.596 29700 TIP 440394 20326 6085474 2024-02-27 15:15:42.779 2024-02-27 15:15:42.779 3300 FEE 440394 18517 6085475 2024-02-27 15:15:42.779 2024-02-27 15:15:42.779 29700 TIP 440394 13133 6085476 2024-02-27 15:15:51.216 2024-02-27 15:15:51.216 3300 FEE 440350 11670 6085477 2024-02-27 15:15:51.216 2024-02-27 15:15:51.216 29700 TIP 440350 1120 6085480 2024-02-27 15:15:55.159 2024-02-27 15:15:55.159 3300 FEE 440241 1316 6085481 2024-02-27 15:15:55.159 2024-02-27 15:15:55.159 29700 TIP 440241 2327 6085495 2024-02-27 15:16:36.092 2024-02-27 15:16:36.092 3300 FEE 439503 2176 6085496 2024-02-27 15:16:36.092 2024-02-27 15:16:36.092 29700 TIP 439503 20555 6085505 2024-02-27 15:16:55.407 2024-02-27 15:16:55.407 3300 FEE 440527 18344 6085506 2024-02-27 15:16:55.407 2024-02-27 15:16:55.407 29700 TIP 440527 12921 6085520 2024-02-27 15:18:46.24 2024-02-27 15:18:46.24 2100 FEE 440472 18068 6085521 2024-02-27 15:18:46.24 2024-02-27 15:18:46.24 18900 TIP 440472 6148 6085532 2024-02-27 15:20:58.859 2024-02-27 15:20:58.859 3300 FEE 440658 21323 6085533 2024-02-27 15:20:58.859 2024-02-27 15:20:58.859 29700 TIP 440658 21627 6085561 2024-02-27 15:22:14.899 2024-02-27 15:22:14.899 1000 FEE 440663 19813 6085562 2024-02-27 15:22:14.899 2024-02-27 15:22:14.899 9000 TIP 440663 16194 6085577 2024-02-27 15:23:18.17 2024-02-27 15:23:18.17 500 FEE 440622 20606 6085578 2024-02-27 15:23:18.17 2024-02-27 15:23:18.17 4500 TIP 440622 20377 6085582 2024-02-27 15:24:29.293 2024-02-27 15:24:29.293 1000 FEE 440673 16513 6085585 2024-02-27 15:24:29.818 2024-02-27 15:24:29.818 200 FEE 440495 7558 6085586 2024-02-27 15:24:29.818 2024-02-27 15:24:29.818 1800 TIP 440495 11609 6085587 2024-02-27 15:24:29.977 2024-02-27 15:24:29.977 200 FEE 440495 19878 6085588 2024-02-27 15:24:29.977 2024-02-27 15:24:29.977 1800 TIP 440495 2061 6085603 2024-02-27 15:24:40.281 2024-02-27 15:24:40.281 200 FEE 438968 21379 6085604 2024-02-27 15:24:40.281 2024-02-27 15:24:40.281 1800 TIP 438968 7891 6085613 2024-02-27 15:24:49.591 2024-02-27 15:24:49.591 100 FEE 440542 5085 6085614 2024-02-27 15:24:49.591 2024-02-27 15:24:49.591 900 TIP 440542 17046 6085617 2024-02-27 15:24:51.016 2024-02-27 15:24:51.016 9000 FEE 440542 15063 6085618 2024-02-27 15:24:51.016 2024-02-27 15:24:51.016 81000 TIP 440542 11153 6085624 2024-02-27 15:25:06.929 2024-02-27 15:25:06.929 2100 FEE 440622 768 6085625 2024-02-27 15:25:06.929 2024-02-27 15:25:06.929 18900 TIP 440622 646 6085636 2024-02-27 15:25:45.917 2024-02-27 15:25:45.917 100 FEE 440663 16867 6085637 2024-02-27 15:25:45.917 2024-02-27 15:25:45.917 900 TIP 440663 18941 6085663 2024-02-27 15:27:12.367 2024-02-27 15:27:12.367 7700 FEE 440587 11996 6085664 2024-02-27 15:27:12.367 2024-02-27 15:27:12.367 69300 TIP 440587 20511 6085665 2024-02-27 15:27:12.527 2024-02-27 15:27:12.527 7700 FEE 440587 6578 6085666 2024-02-27 15:27:12.527 2024-02-27 15:27:12.527 69300 TIP 440587 7773 6085673 2024-02-27 15:27:19.513 2024-02-27 15:27:19.513 7700 FEE 440587 19193 6085674 2024-02-27 15:27:19.513 2024-02-27 15:27:19.513 69300 TIP 440587 20152 6085697 2024-02-27 15:27:24.426 2024-02-27 15:27:24.426 2100 FEE 440622 12609 6085698 2024-02-27 15:27:24.426 2024-02-27 15:27:24.426 18900 TIP 440622 13076 6085701 2024-02-27 15:27:25.895 2024-02-27 15:27:25.895 900 FEE 440552 21361 6085702 2024-02-27 15:27:25.895 2024-02-27 15:27:25.895 8100 TIP 440552 9337 6085715 2024-02-27 15:28:12.433 2024-02-27 15:28:12.433 900 FEE 440366 21412 6085716 2024-02-27 15:28:12.433 2024-02-27 15:28:12.433 8100 TIP 440366 20924 6085717 2024-02-27 15:28:28.305 2024-02-27 15:28:28.305 10000 FEE 440676 20588 6085734 2024-02-27 15:29:45.166 2024-02-27 15:29:45.166 7700 FEE 440663 678 6085735 2024-02-27 15:29:45.166 2024-02-27 15:29:45.166 69300 TIP 440663 18321 6085818 2024-02-27 15:31:00.145 2024-02-27 15:31:00.145 1000 FEE 206817 17976 6085819 2024-02-27 15:31:00.145 2024-02-27 15:31:00.145 9000 TIP 206817 21083 6085829 2024-02-27 15:31:04.376 2024-02-27 15:31:04.376 1000 FEE 440622 2088 6085830 2024-02-27 15:31:04.376 2024-02-27 15:31:04.376 9000 TIP 440622 19639 6085839 2024-02-27 15:31:17.979 2024-02-27 15:31:17.979 1000 FEE 440680 10731 6085842 2024-02-27 15:31:40.645 2024-02-27 15:31:40.645 6900 FEE 440575 11938 6085843 2024-02-27 15:31:40.645 2024-02-27 15:31:40.645 62100 TIP 440575 9433 6085844 2024-02-27 15:31:40.803 2024-02-27 15:31:40.803 6900 FEE 440575 2963 6085845 2024-02-27 15:31:40.803 2024-02-27 15:31:40.803 62100 TIP 440575 1094 6085906 2024-02-27 15:35:20.023 2024-02-27 15:35:20.023 1000 FEE 437630 2775 6085907 2024-02-27 15:35:20.023 2024-02-27 15:35:20.023 9000 TIP 437630 1632 6085922 2024-02-27 15:35:24.974 2024-02-27 15:35:24.974 1000 FEE 440662 4958 6085923 2024-02-27 15:35:24.974 2024-02-27 15:35:24.974 9000 TIP 440662 20841 6085959 2024-02-27 15:41:06.05 2024-02-27 15:41:06.05 2100 FEE 440520 1038 6085960 2024-02-27 15:41:06.05 2024-02-27 15:41:06.05 18900 TIP 440520 13878 6085414 2024-02-27 15:12:05.292 2024-02-27 15:12:05.292 1000 STREAM 141924 6717 6085524 2024-02-27 15:19:03.316 2024-02-27 15:19:03.316 1000 STREAM 141924 4819 6085540 2024-02-27 15:21:03.327 2024-02-27 15:21:03.327 1000 STREAM 141924 20581 6085548 2024-02-27 15:22:03.33 2024-02-27 15:22:03.33 1000 STREAM 141924 12774 6085623 2024-02-27 15:25:03.347 2024-02-27 15:25:03.347 1000 STREAM 141924 16543 6085660 2024-02-27 15:27:03.334 2024-02-27 15:27:03.334 1000 STREAM 141924 5701 6085712 2024-02-27 15:28:03.356 2024-02-27 15:28:03.356 1000 STREAM 141924 12368 6085721 2024-02-27 15:29:03.353 2024-02-27 15:29:03.353 1000 STREAM 141924 20157 6085744 2024-02-27 15:30:03.388 2024-02-27 15:30:03.388 1000 STREAM 141924 16059 6085887 2024-02-27 15:34:03.372 2024-02-27 15:34:03.372 1000 STREAM 141924 14705 6085934 2024-02-27 15:36:03.38 2024-02-27 15:36:03.38 1000 STREAM 141924 11716 6085954 2024-02-27 15:40:03.421 2024-02-27 15:40:03.421 1000 STREAM 141924 21281 6085958 2024-02-27 15:41:03.41 2024-02-27 15:41:03.41 1000 STREAM 141924 2327 6086417 2024-02-27 16:02:03.491 2024-02-27 16:02:03.491 1000 STREAM 141924 658 6086675 2024-02-27 16:28:03.543 2024-02-27 16:28:03.543 1000 STREAM 141924 6360 6087165 2024-02-27 16:50:01.913 2024-02-27 16:50:01.913 1000 STREAM 141924 20243 6085466 2024-02-27 15:15:02.026 2024-02-27 15:15:02.026 1000 STREAM 141924 17392 6085515 2024-02-27 15:18:04.262 2024-02-27 15:18:04.262 1000 STREAM 141924 18817 6085527 2024-02-27 15:20:04.295 2024-02-27 15:20:04.295 1000 STREAM 141924 720 6085528 2024-02-27 15:20:31.035 2024-02-27 15:20:31.035 1000 FEE 440669 19335 6085530 2024-02-27 15:20:55.699 2024-02-27 15:20:55.699 7700 FEE 440652 3686 6085531 2024-02-27 15:20:55.699 2024-02-27 15:20:55.699 69300 TIP 440652 617 6085541 2024-02-27 15:21:21 2024-02-27 15:21:21 1000 FEE 440671 2952 6085571 2024-02-27 15:22:50.553 2024-02-27 15:22:50.553 1000 FEE 440672 9078 6085597 2024-02-27 15:24:38.745 2024-02-27 15:24:38.745 3100 FEE 440520 21218 6085598 2024-02-27 15:24:38.745 2024-02-27 15:24:38.745 27900 TIP 440520 2056 6085641 2024-02-27 15:26:07.264 2024-02-27 15:26:07.264 900 FEE 440566 18017 6085642 2024-02-27 15:26:07.264 2024-02-27 15:26:07.264 8100 TIP 440566 14650 6085655 2024-02-27 15:26:21.142 2024-02-27 15:26:21.142 100 FEE 440527 8985 6085656 2024-02-27 15:26:21.142 2024-02-27 15:26:21.142 900 TIP 440527 16970 6085691 2024-02-27 15:27:23.214 2024-02-27 15:27:23.214 2100 FEE 440622 14669 6085692 2024-02-27 15:27:23.214 2024-02-27 15:27:23.214 18900 TIP 440622 16309 6085711 2024-02-27 15:27:53.161 2024-02-27 15:27:53.161 1000 FEE 440675 5758 6085732 2024-02-27 15:29:44.417 2024-02-27 15:29:44.417 7700 FEE 440663 21249 6085733 2024-02-27 15:29:44.417 2024-02-27 15:29:44.417 69300 TIP 440663 15139 6085740 2024-02-27 15:29:46.509 2024-02-27 15:29:46.509 7700 FEE 440663 2195 6085741 2024-02-27 15:29:46.509 2024-02-27 15:29:46.509 69300 TIP 440663 18892 6085745 2024-02-27 15:30:04.206 2024-02-27 15:30:04.206 7700 FEE 440575 19581 6085746 2024-02-27 15:30:04.206 2024-02-27 15:30:04.206 69300 TIP 440575 18017 6085759 2024-02-27 15:30:05.261 2024-02-27 15:30:05.261 7700 FEE 440575 9655 6085760 2024-02-27 15:30:05.261 2024-02-27 15:30:05.261 69300 TIP 440575 18336 6085771 2024-02-27 15:30:15.401 2024-02-27 15:30:15.401 7700 FEE 440575 21249 6085772 2024-02-27 15:30:15.401 2024-02-27 15:30:15.401 69300 TIP 440575 4074 6085789 2024-02-27 15:30:20.147 2024-02-27 15:30:20.147 1000 FEE 440622 657 6085790 2024-02-27 15:30:20.147 2024-02-27 15:30:20.147 9000 TIP 440622 19309 6085816 2024-02-27 15:30:59.89 2024-02-27 15:30:59.89 1000 FEE 206817 10719 6085817 2024-02-27 15:30:59.89 2024-02-27 15:30:59.89 9000 TIP 206817 10409 6085822 2024-02-27 15:31:00.371 2024-02-27 15:31:00.371 1000 FEE 206817 11789 6085823 2024-02-27 15:31:00.371 2024-02-27 15:31:00.371 9000 TIP 206817 21178 6085837 2024-02-27 15:31:13.889 2024-02-27 15:31:13.889 1000 FEE 440527 1213 6085838 2024-02-27 15:31:13.889 2024-02-27 15:31:13.889 9000 TIP 440527 19031 6085854 2024-02-27 15:31:42.965 2024-02-27 15:31:42.965 6900 FEE 440575 18659 6085855 2024-02-27 15:31:42.965 2024-02-27 15:31:42.965 62100 TIP 440575 21062 6085856 2024-02-27 15:31:43.123 2024-02-27 15:31:43.123 6900 FEE 440575 1611 6085857 2024-02-27 15:31:43.123 2024-02-27 15:31:43.123 62100 TIP 440575 19235 6085869 2024-02-27 15:32:10.112 2024-02-27 15:32:10.112 1000 FEE 207182 11298 6085870 2024-02-27 15:32:10.112 2024-02-27 15:32:10.112 9000 TIP 207182 20660 6085874 2024-02-27 15:32:44.785 2024-02-27 15:32:44.785 1000 FEE 440513 17927 6085875 2024-02-27 15:32:44.785 2024-02-27 15:32:44.785 9000 TIP 440513 11275 6085885 2024-02-27 15:33:48.959 2024-02-27 15:33:48.959 1000 FEE 440454 1094 6085886 2024-02-27 15:33:48.959 2024-02-27 15:33:48.959 9000 TIP 440454 21352 6085889 2024-02-27 15:34:22.864 2024-02-27 15:34:22.864 1000 FEE 440527 3729 6085890 2024-02-27 15:34:22.864 2024-02-27 15:34:22.864 9000 TIP 440527 5036 6085916 2024-02-27 15:35:24.521 2024-02-27 15:35:24.521 1000 FEE 437630 1718 6085917 2024-02-27 15:35:24.521 2024-02-27 15:35:24.521 9000 TIP 437630 20162 6085924 2024-02-27 15:35:25.171 2024-02-27 15:35:25.171 1000 FEE 440662 688 6085925 2024-02-27 15:35:25.171 2024-02-27 15:35:25.171 9000 TIP 440662 691 6085937 2024-02-27 15:37:04.751 2024-02-27 15:37:04.751 1000 FEE 440686 705 6085963 2024-02-27 15:41:10.74 2024-02-27 15:41:10.74 300 FEE 440686 6268 6085964 2024-02-27 15:41:10.74 2024-02-27 15:41:10.74 2700 TIP 440686 1632 6085967 2024-02-27 15:41:11.092 2024-02-27 15:41:11.092 300 FEE 440686 5701 6085968 2024-02-27 15:41:11.092 2024-02-27 15:41:11.092 2700 TIP 440686 16178 6085983 2024-02-27 15:41:43.598 2024-02-27 15:41:43.598 100000 FEE 440692 19346 6085992 2024-02-27 15:43:19.048 2024-02-27 15:43:19.048 900 FEE 440246 9276 6085993 2024-02-27 15:43:19.048 2024-02-27 15:43:19.048 8100 TIP 440246 3360 6086040 2024-02-27 15:47:55.553 2024-02-27 15:47:55.553 1000 FEE 440696 20596 6086048 2024-02-27 15:48:04.418 2024-02-27 15:48:04.418 2100 FEE 440575 20327 6086049 2024-02-27 15:48:04.418 2024-02-27 15:48:04.418 18900 TIP 440575 636 6086064 2024-02-27 15:48:25.873 2024-02-27 15:48:25.873 2100 FEE 440489 14308 6086065 2024-02-27 15:48:25.873 2024-02-27 15:48:25.873 18900 TIP 440489 21506 6086068 2024-02-27 15:48:27.084 2024-02-27 15:48:27.084 2100 FEE 440566 2614 6086069 2024-02-27 15:48:27.084 2024-02-27 15:48:27.084 18900 TIP 440566 16834 6086109 2024-02-27 15:49:21.38 2024-02-27 15:49:21.38 2100 FEE 440647 17091 6086110 2024-02-27 15:49:21.38 2024-02-27 15:49:21.38 18900 TIP 440647 1105 6086119 2024-02-27 15:49:50.882 2024-02-27 15:49:50.882 2100 FEE 440682 1983 6086120 2024-02-27 15:49:50.882 2024-02-27 15:49:50.882 18900 TIP 440682 826 6086127 2024-02-27 15:49:55.347 2024-02-27 15:49:55.347 9000 FEE 440692 8423 6086128 2024-02-27 15:49:55.347 2024-02-27 15:49:55.347 81000 TIP 440692 1272 6086140 2024-02-27 15:50:31.408 2024-02-27 15:50:31.408 2100 FEE 440511 10849 6086141 2024-02-27 15:50:31.408 2024-02-27 15:50:31.408 18900 TIP 440511 13575 6086159 2024-02-27 15:52:00.334 2024-02-27 15:52:00.334 2300 FEE 440691 3439 6086160 2024-02-27 15:52:00.334 2024-02-27 15:52:00.334 20700 TIP 440691 19126 6086165 2024-02-27 15:52:09.521 2024-02-27 15:52:09.521 2100 FEE 440425 4304 6086166 2024-02-27 15:52:09.521 2024-02-27 15:52:09.521 18900 TIP 440425 21603 6086172 2024-02-27 15:52:56.306 2024-02-27 15:52:56.306 1000 FEE 440704 10519 6086210 2024-02-27 15:54:21.403 2024-02-27 15:54:21.403 10000 FEE 440587 20680 6086211 2024-02-27 15:54:21.403 2024-02-27 15:54:21.403 90000 TIP 440587 8541 6086214 2024-02-27 15:54:38.43 2024-02-27 15:54:38.43 2100 FEE 440699 20812 6086215 2024-02-27 15:54:38.43 2024-02-27 15:54:38.43 18900 TIP 440699 686 6086231 2024-02-27 15:54:51.701 2024-02-27 15:54:51.701 100000 DONT_LIKE_THIS 440527 18178 6086248 2024-02-27 15:55:37.564 2024-02-27 15:55:37.564 50000 FEE 440712 21563 6086257 2024-02-27 15:56:57.714 2024-02-27 15:56:57.714 2100 FEE 440127 807 6086258 2024-02-27 15:56:57.714 2024-02-27 15:56:57.714 18900 TIP 440127 21036 6086260 2024-02-27 15:57:00.66 2024-02-27 15:57:00.66 2100 FEE 440079 20586 6086261 2024-02-27 15:57:00.66 2024-02-27 15:57:00.66 18900 TIP 440079 2322 6086263 2024-02-27 15:57:04.934 2024-02-27 15:57:04.934 10000 FEE 440386 3304 6086264 2024-02-27 15:57:04.934 2024-02-27 15:57:04.934 90000 TIP 440386 2046 6085556 2024-02-27 15:22:14.29 2024-02-27 15:22:14.29 9000 TIP 440663 2780 6085563 2024-02-27 15:22:15.08 2024-02-27 15:22:15.08 1000 FEE 440663 16594 6085564 2024-02-27 15:22:15.08 2024-02-27 15:22:15.08 9000 TIP 440663 13042 6085565 2024-02-27 15:22:15.294 2024-02-27 15:22:15.294 1000 FEE 440663 18507 6085566 2024-02-27 15:22:15.294 2024-02-27 15:22:15.294 9000 TIP 440663 12422 6085615 2024-02-27 15:24:49.845 2024-02-27 15:24:49.845 900 FEE 440542 2156 6085616 2024-02-27 15:24:49.845 2024-02-27 15:24:49.845 8100 TIP 440542 20267 6085626 2024-02-27 15:25:07.765 2024-02-27 15:25:07.765 3400 FEE 440622 632 6085627 2024-02-27 15:25:07.765 2024-02-27 15:25:07.765 30600 TIP 440622 797 6085647 2024-02-27 15:26:15.12 2024-02-27 15:26:15.12 4000 FEE 440652 20433 6085648 2024-02-27 15:26:15.12 2024-02-27 15:26:15.12 36000 TIP 440652 21057 6085653 2024-02-27 15:26:18.555 2024-02-27 15:26:18.555 1000 FEE 440671 20756 6085654 2024-02-27 15:26:18.555 2024-02-27 15:26:18.555 9000 TIP 440671 951 6085669 2024-02-27 15:27:19.237 2024-02-27 15:27:19.237 7700 FEE 440587 20912 6085670 2024-02-27 15:27:19.237 2024-02-27 15:27:19.237 69300 TIP 440587 2639 6085677 2024-02-27 15:27:19.817 2024-02-27 15:27:19.817 7700 FEE 440587 1002 6085678 2024-02-27 15:27:19.817 2024-02-27 15:27:19.817 69300 TIP 440587 987 6085718 2024-02-27 15:28:34.74 2024-02-27 15:28:34.74 1000 FEE 440677 19980 6085755 2024-02-27 15:30:05.048 2024-02-27 15:30:05.048 7700 FEE 440575 14791 6085756 2024-02-27 15:30:05.048 2024-02-27 15:30:05.048 69300 TIP 440575 19689 6085763 2024-02-27 15:30:05.574 2024-02-27 15:30:05.574 7700 FEE 440575 2718 6085764 2024-02-27 15:30:05.574 2024-02-27 15:30:05.574 69300 TIP 440575 21061 6085773 2024-02-27 15:30:15.966 2024-02-27 15:30:15.966 7700 FEE 440575 18310 6085774 2024-02-27 15:30:15.966 2024-02-27 15:30:15.966 69300 TIP 440575 21521 6085783 2024-02-27 15:30:16.663 2024-02-27 15:30:16.663 7700 FEE 440575 15282 6085784 2024-02-27 15:30:16.663 2024-02-27 15:30:16.663 69300 TIP 440575 10979 6085785 2024-02-27 15:30:19.628 2024-02-27 15:30:19.628 1000 FEE 440622 732 6085786 2024-02-27 15:30:19.628 2024-02-27 15:30:19.628 9000 TIP 440622 17094 6085794 2024-02-27 15:30:38.128 2024-02-27 15:30:38.128 1000 FEE 440472 19907 6085795 2024-02-27 15:30:38.128 2024-02-27 15:30:38.128 9000 TIP 440472 21172 6085826 2024-02-27 15:31:03.144 2024-02-27 15:31:03.144 1000 FEE 440623 794 6085827 2024-02-27 15:31:03.144 2024-02-27 15:31:03.144 9000 TIP 440623 721 6085835 2024-02-27 15:31:12.312 2024-02-27 15:31:12.312 1000 FEE 440566 20573 6085836 2024-02-27 15:31:12.312 2024-02-27 15:31:12.312 9000 TIP 440566 20470 6085840 2024-02-27 15:31:40.518 2024-02-27 15:31:40.518 6900 FEE 440575 19924 6085841 2024-02-27 15:31:40.518 2024-02-27 15:31:40.518 62100 TIP 440575 19446 6085848 2024-02-27 15:31:41.109 2024-02-27 15:31:41.109 6900 FEE 440575 20106 6085849 2024-02-27 15:31:41.109 2024-02-27 15:31:41.109 62100 TIP 440575 18932 6085865 2024-02-27 15:32:08.832 2024-02-27 15:32:08.832 1000 FEE 440344 10611 6085866 2024-02-27 15:32:08.832 2024-02-27 15:32:08.832 9000 TIP 440344 5978 6085878 2024-02-27 15:32:54.708 2024-02-27 15:32:54.708 1000 FEE 440682 7125 6085883 2024-02-27 15:33:11.493 2024-02-27 15:33:11.493 1000 FEE 440628 688 6085884 2024-02-27 15:33:11.493 2024-02-27 15:33:11.493 9000 TIP 440628 664 6085898 2024-02-27 15:35:18.944 2024-02-27 15:35:18.944 1000 FEE 437630 769 6085899 2024-02-27 15:35:18.944 2024-02-27 15:35:18.944 9000 TIP 437630 14669 6085918 2024-02-27 15:35:24.53 2024-02-27 15:35:24.53 1000 FEE 440662 12736 6085919 2024-02-27 15:35:24.53 2024-02-27 15:35:24.53 9000 TIP 440662 20129 6085944 2024-02-27 15:37:58.291 2024-02-27 15:37:58.291 1000 FEE 440475 4378 6085945 2024-02-27 15:37:58.291 2024-02-27 15:37:58.291 9000 TIP 440475 650 6085948 2024-02-27 15:38:09.299 2024-02-27 15:38:09.299 1000 FEE 440688 13365 6085949 2024-02-27 15:38:09.596 2024-02-27 15:38:09.596 1000 FEE 440689 2774 6085950 2024-02-27 15:38:16.361 2024-02-27 15:38:16.361 6400 FEE 440673 21216 6085951 2024-02-27 15:38:16.361 2024-02-27 15:38:16.361 57600 TIP 440673 15690 6085957 2024-02-27 15:40:36.279 2024-02-27 15:40:36.279 1000 FEE 440691 4043 6085961 2024-02-27 15:41:10.567 2024-02-27 15:41:10.567 300 FEE 440686 1010 6085962 2024-02-27 15:41:10.567 2024-02-27 15:41:10.567 2700 TIP 440686 18829 6085965 2024-02-27 15:41:10.915 2024-02-27 15:41:10.915 300 FEE 440686 20744 6085966 2024-02-27 15:41:10.915 2024-02-27 15:41:10.915 2700 TIP 440686 18995 6085973 2024-02-27 15:41:12.025 2024-02-27 15:41:12.025 300 FEE 440686 17741 6085974 2024-02-27 15:41:12.025 2024-02-27 15:41:12.025 2700 TIP 440686 19615 6086031 2024-02-27 15:47:20.828 2024-02-27 15:47:20.828 800 FEE 440663 1002 6086032 2024-02-27 15:47:20.828 2024-02-27 15:47:20.828 7200 TIP 440663 18220 6086035 2024-02-27 15:47:35.795 2024-02-27 15:47:35.795 3100 FEE 440623 10270 6086036 2024-02-27 15:47:35.795 2024-02-27 15:47:35.795 27900 TIP 440623 19848 6086043 2024-02-27 15:47:57.689 2024-02-27 15:47:57.689 2100 FEE 440520 9290 6086044 2024-02-27 15:47:57.689 2024-02-27 15:47:57.689 18900 TIP 440520 16357 6086058 2024-02-27 15:48:13.964 2024-02-27 15:48:13.964 2100 FEE 440542 20581 6086059 2024-02-27 15:48:13.964 2024-02-27 15:48:13.964 18900 TIP 440542 797 6086121 2024-02-27 15:49:53.975 2024-02-27 15:49:53.975 2100 FEE 440669 18629 6086122 2024-02-27 15:49:53.975 2024-02-27 15:49:53.975 18900 TIP 440669 1650 6086125 2024-02-27 15:49:54.37 2024-02-27 15:49:54.37 900 FEE 440692 16485 6086126 2024-02-27 15:49:54.37 2024-02-27 15:49:54.37 8100 TIP 440692 8998 6086134 2024-02-27 15:50:19.997 2024-02-27 15:50:19.997 2100 FEE 440551 12774 6086135 2024-02-27 15:50:19.997 2024-02-27 15:50:19.997 18900 TIP 440551 8284 6086157 2024-02-27 15:51:55.238 2024-02-27 15:51:55.238 2100 FEE 440450 2735 6086158 2024-02-27 15:51:55.238 2024-02-27 15:51:55.238 18900 TIP 440450 18357 6086170 2024-02-27 15:52:53.31 2024-02-27 15:52:53.31 100 FEE 440699 6310 6086171 2024-02-27 15:52:53.31 2024-02-27 15:52:53.31 900 TIP 440699 19267 6086186 2024-02-27 15:53:58.783 2024-02-27 15:53:58.783 2100 FEE 440527 19398 6086187 2024-02-27 15:53:58.783 2024-02-27 15:53:58.783 18900 TIP 440527 14247 6086203 2024-02-27 15:54:09.943 2024-02-27 15:54:09.943 2100 FEE 440467 2347 6086204 2024-02-27 15:54:09.943 2024-02-27 15:54:09.943 18900 TIP 440467 19005 6086205 2024-02-27 15:54:10.617 2024-02-27 15:54:10.617 1000 FEE 440707 660 6086232 2024-02-27 15:54:53.133 2024-02-27 15:54:53.133 1000 FEE 440709 5746 6086243 2024-02-27 15:55:17.653 2024-02-27 15:55:17.653 1000000 FEE 440711 19930 6086265 2024-02-27 15:57:18.777 2024-02-27 15:57:18.777 100 FEE 440554 20434 6086266 2024-02-27 15:57:18.777 2024-02-27 15:57:18.777 900 TIP 440554 2328 6086267 2024-02-27 15:57:19.378 2024-02-27 15:57:19.378 100 FEE 440535 10409 6086268 2024-02-27 15:57:19.378 2024-02-27 15:57:19.378 900 TIP 440535 15052 6086315 2024-02-27 16:00:00.614 2024-02-27 16:00:00.614 1000 FEE 439927 19282 6086316 2024-02-27 16:00:00.614 2024-02-27 16:00:00.614 9000 TIP 439927 2042 6086328 2024-02-27 16:00:03.011 2024-02-27 16:00:03.011 1000 FEE 439947 20646 6086329 2024-02-27 16:00:03.011 2024-02-27 16:00:03.011 9000 TIP 439947 20500 6086364 2024-02-27 16:00:43.499 2024-02-27 16:00:43.499 1000 FEE 440180 20045 6086365 2024-02-27 16:00:43.499 2024-02-27 16:00:43.499 9000 TIP 440180 11967 6086392 2024-02-27 16:01:00.528 2024-02-27 16:01:00.528 1000 FEE 440500 5308 6086393 2024-02-27 16:01:00.528 2024-02-27 16:01:00.528 9000 TIP 440500 9275 6086396 2024-02-27 16:01:01.051 2024-02-27 16:01:01.051 1000 FEE 440500 951 6086397 2024-02-27 16:01:01.051 2024-02-27 16:01:01.051 9000 TIP 440500 14818 6086413 2024-02-27 16:01:39.254 2024-02-27 16:01:39.254 2100 FEE 440637 14449 6086414 2024-02-27 16:01:39.254 2024-02-27 16:01:39.254 18900 TIP 440637 10398 6085611 2024-02-27 15:24:44.76 2024-02-27 15:24:44.76 1000 FEE 440648 2639 6085612 2024-02-27 15:24:44.76 2024-02-27 15:24:44.76 9000 TIP 440648 2513 6085630 2024-02-27 15:25:26.293 2024-02-27 15:25:26.293 3100 FEE 440622 19263 6085631 2024-02-27 15:25:26.293 2024-02-27 15:25:26.293 27900 TIP 440622 16842 6085632 2024-02-27 15:25:27.166 2024-02-27 15:25:27.166 27900 FEE 440622 8985 6085633 2024-02-27 15:25:27.166 2024-02-27 15:25:27.166 251100 TIP 440622 21269 6085634 2024-02-27 15:25:38.419 2024-02-27 15:25:38.419 3400 FEE 331942 8664 6085635 2024-02-27 15:25:38.419 2024-02-27 15:25:38.419 30600 TIP 331942 9150 6085643 2024-02-27 15:26:08.431 2024-02-27 15:26:08.431 9000 FEE 440566 2952 6085644 2024-02-27 15:26:08.431 2024-02-27 15:26:08.431 81000 TIP 440566 16387 6085651 2024-02-27 15:26:17.912 2024-02-27 15:26:17.912 1000 FEE 440671 2101 6085652 2024-02-27 15:26:17.912 2024-02-27 15:26:17.912 9000 TIP 440671 19601 6085657 2024-02-27 15:26:21.2 2024-02-27 15:26:21.2 900 FEE 440527 14791 6085658 2024-02-27 15:26:21.2 2024-02-27 15:26:21.2 8100 TIP 440527 1272 6085659 2024-02-27 15:26:29.56 2024-02-27 15:26:29.56 1000 FEE 440674 19852 6085679 2024-02-27 15:27:19.979 2024-02-27 15:27:19.979 7700 FEE 440587 21180 6085680 2024-02-27 15:27:19.979 2024-02-27 15:27:19.979 69300 TIP 440587 20972 6085703 2024-02-27 15:27:28.903 2024-02-27 15:27:28.903 1000 FEE 440629 9517 6085704 2024-02-27 15:27:28.903 2024-02-27 15:27:28.903 9000 TIP 440629 10728 6085707 2024-02-27 15:27:38.244 2024-02-27 15:27:38.244 3400 FEE 331942 5444 6085708 2024-02-27 15:27:38.244 2024-02-27 15:27:38.244 30600 TIP 331942 21603 6085727 2024-02-27 15:29:38.296 2024-02-27 15:29:38.296 1000 FEE 440678 2502 6085736 2024-02-27 15:29:45.988 2024-02-27 15:29:45.988 7700 FEE 440663 7659 6085737 2024-02-27 15:29:45.988 2024-02-27 15:29:45.988 69300 TIP 440663 15239 6085775 2024-02-27 15:30:16.118 2024-02-27 15:30:16.118 7700 FEE 440575 16948 6085776 2024-02-27 15:30:16.118 2024-02-27 15:30:16.118 69300 TIP 440575 8037 6085779 2024-02-27 15:30:16.403 2024-02-27 15:30:16.403 7700 FEE 440575 11523 6085780 2024-02-27 15:30:16.403 2024-02-27 15:30:16.403 69300 TIP 440575 21180 6085796 2024-02-27 15:30:38.375 2024-02-27 15:30:38.375 1000 FEE 440472 21296 6085797 2024-02-27 15:30:38.375 2024-02-27 15:30:38.375 9000 TIP 440472 19403 6085802 2024-02-27 15:30:39.117 2024-02-27 15:30:39.117 1000 FEE 440472 18396 6085803 2024-02-27 15:30:39.117 2024-02-27 15:30:39.117 9000 TIP 440472 15594 6085808 2024-02-27 15:30:42.886 2024-02-27 15:30:42.886 3400 FEE 438737 19462 6085809 2024-02-27 15:30:42.886 2024-02-27 15:30:42.886 30600 TIP 438737 21599 6085810 2024-02-27 15:30:58.582 2024-02-27 15:30:58.582 1000 FEE 440592 21072 6085811 2024-02-27 15:30:58.582 2024-02-27 15:30:58.582 9000 TIP 440592 14376 6085814 2024-02-27 15:30:59.347 2024-02-27 15:30:59.347 1000 FEE 440662 21494 6085815 2024-02-27 15:30:59.347 2024-02-27 15:30:59.347 9000 TIP 440662 16830 6085820 2024-02-27 15:31:00.319 2024-02-27 15:31:00.319 1000 FEE 440641 3717 6085821 2024-02-27 15:31:00.319 2024-02-27 15:31:00.319 9000 TIP 440641 986 6085831 2024-02-27 15:31:05.433 2024-02-27 15:31:05.433 1000 FEE 440585 7760 6085832 2024-02-27 15:31:05.433 2024-02-27 15:31:05.433 9000 TIP 440585 19243 6085833 2024-02-27 15:31:09.657 2024-02-27 15:31:09.657 1000 FEE 440570 13177 6085834 2024-02-27 15:31:09.657 2024-02-27 15:31:09.657 9000 TIP 440570 5694 6085862 2024-02-27 15:31:52.986 2024-02-27 15:31:52.986 1000 FEE 440615 21138 6085863 2024-02-27 15:31:52.986 2024-02-27 15:31:52.986 9000 TIP 440615 16966 6085873 2024-02-27 15:32:29.488 2024-02-27 15:32:29.488 1000 FEE 440681 21072 6085888 2024-02-27 15:34:13.787 2024-02-27 15:34:13.787 1000 FEE 440684 18896 6085946 2024-02-27 15:37:59.63 2024-02-27 15:37:59.63 1000 FEE 440687 1122 6085971 2024-02-27 15:41:11.609 2024-02-27 15:41:11.609 300 FEE 440686 12188 6085972 2024-02-27 15:41:11.609 2024-02-27 15:41:11.609 2700 TIP 440686 17103 6085985 2024-02-27 15:42:23.538 2024-02-27 15:42:23.538 1100 FEE 440268 4064 6085986 2024-02-27 15:42:23.538 2024-02-27 15:42:23.538 9900 TIP 440268 1429 6085999 2024-02-27 15:43:38.892 2024-02-27 15:43:38.892 900 FEE 440243 17523 6086000 2024-02-27 15:43:38.892 2024-02-27 15:43:38.892 8100 TIP 440243 669 6086008 2024-02-27 15:44:03.821 2024-02-27 15:44:03.821 100 FEE 440663 18040 6086009 2024-02-27 15:44:03.821 2024-02-27 15:44:03.821 900 TIP 440663 2773 6086018 2024-02-27 15:46:28.556 2024-02-27 15:46:28.556 900 FEE 440633 7376 6086019 2024-02-27 15:46:28.556 2024-02-27 15:46:28.556 8100 TIP 440633 21314 6086041 2024-02-27 15:47:56.21 2024-02-27 15:47:56.21 2100 FEE 440622 20597 6086042 2024-02-27 15:47:56.21 2024-02-27 15:47:56.21 18900 TIP 440622 889 6086045 2024-02-27 15:48:00.93 2024-02-27 15:48:00.93 2100 FEE 440587 10273 6086046 2024-02-27 15:48:00.93 2024-02-27 15:48:00.93 18900 TIP 440587 21343 6086080 2024-02-27 15:48:31.962 2024-02-27 15:48:31.962 700 FEE 439362 21238 6086081 2024-02-27 15:48:31.962 2024-02-27 15:48:31.962 6300 TIP 439362 2514 6086089 2024-02-27 15:48:52.49 2024-02-27 15:48:52.49 2100 FEE 440692 6335 6086090 2024-02-27 15:48:52.49 2024-02-27 15:48:52.49 18900 TIP 440692 1291 6086096 2024-02-27 15:49:05.151 2024-02-27 15:49:05.151 27900 FEE 440641 7869 6086097 2024-02-27 15:49:05.151 2024-02-27 15:49:05.151 251100 TIP 440641 16193 6086100 2024-02-27 15:49:08.864 2024-02-27 15:49:08.864 900 FEE 440647 5306 6086101 2024-02-27 15:49:08.864 2024-02-27 15:49:08.864 8100 TIP 440647 21402 6086116 2024-02-27 15:49:38.483 2024-02-27 15:49:38.483 2100 FEE 440698 20179 6086117 2024-02-27 15:49:38.483 2024-02-27 15:49:38.483 18900 TIP 440698 9348 6086138 2024-02-27 15:50:28.397 2024-02-27 15:50:28.397 2100 FEE 440536 14278 6086139 2024-02-27 15:50:28.397 2024-02-27 15:50:28.397 18900 TIP 440536 15577 6086150 2024-02-27 15:51:26.195 2024-02-27 15:51:26.195 2100 FEE 440501 11458 6086151 2024-02-27 15:51:26.195 2024-02-27 15:51:26.195 18900 TIP 440501 822 6086152 2024-02-27 15:51:32.621 2024-02-27 15:51:32.621 1000 FEE 440701 6700 6086167 2024-02-27 15:52:26.951 2024-02-27 15:52:26.951 1000 FEE 440703 20137 6086192 2024-02-27 15:54:00.826 2024-02-27 15:54:00.826 2100 FEE 440633 20998 6086193 2024-02-27 15:54:00.826 2024-02-27 15:54:00.826 18900 TIP 440633 21620 6086196 2024-02-27 15:54:03.613 2024-02-27 15:54:03.613 2100 FEE 440652 19007 6086197 2024-02-27 15:54:03.613 2024-02-27 15:54:03.613 18900 TIP 440652 15161 6086206 2024-02-27 15:54:15.594 2024-02-27 15:54:15.594 2100 FEE 440484 19622 6086207 2024-02-27 15:54:15.594 2024-02-27 15:54:15.594 18900 TIP 440484 6687 6086229 2024-02-27 15:54:51.641 2024-02-27 15:54:51.641 2100 FEE 440651 18177 6086230 2024-02-27 15:54:51.641 2024-02-27 15:54:51.641 18900 TIP 440651 4768 6086235 2024-02-27 15:54:56.717 2024-02-27 15:54:56.717 800 FEE 440696 7673 6086236 2024-02-27 15:54:56.717 2024-02-27 15:54:56.717 7200 TIP 440696 17446 6086252 2024-02-27 15:56:19.272 2024-02-27 15:56:19.272 1000 FEE 440713 13217 6086269 2024-02-27 15:57:32.612 2024-02-27 15:57:32.612 1000 FEE 380081 21058 6086270 2024-02-27 15:57:32.612 2024-02-27 15:57:32.612 9000 TIP 380081 17184 6086279 2024-02-27 15:58:48.204 2024-02-27 15:58:48.204 3300 FEE 440688 680 6086280 2024-02-27 15:58:48.204 2024-02-27 15:58:48.204 29700 TIP 440688 19465 6086282 2024-02-27 15:59:17.379 2024-02-27 15:59:17.379 2100 FEE 439925 18448 6086283 2024-02-27 15:59:17.379 2024-02-27 15:59:17.379 18900 TIP 439925 896 6086290 2024-02-27 15:59:44.193 2024-02-27 15:59:44.193 2100 FEE 440703 21421 6086291 2024-02-27 15:59:44.193 2024-02-27 15:59:44.193 18900 TIP 440703 21556 6086292 2024-02-27 15:59:55.366 2024-02-27 15:59:55.366 1000 FEE 439886 9796 6086293 2024-02-27 15:59:55.366 2024-02-27 15:59:55.366 9000 TIP 439886 19546 6086303 2024-02-27 15:59:58.088 2024-02-27 15:59:58.088 2000 FEE 439901 2431 6086304 2024-02-27 15:59:58.088 2024-02-27 15:59:58.088 18000 TIP 439901 19909 6086338 2024-02-27 16:00:06.766 2024-02-27 16:00:06.766 1000 FEE 439964 925 6086339 2024-02-27 16:00:06.766 2024-02-27 16:00:06.766 9000 TIP 439964 9845 6085676 2024-02-27 15:27:19.708 2024-02-27 15:27:19.708 69300 TIP 440587 2016 6085683 2024-02-27 15:27:20.247 2024-02-27 15:27:20.247 7700 FEE 440587 12368 6085684 2024-02-27 15:27:20.247 2024-02-27 15:27:20.247 69300 TIP 440587 20782 6085685 2024-02-27 15:27:20.422 2024-02-27 15:27:20.422 7700 FEE 440587 8459 6085686 2024-02-27 15:27:20.422 2024-02-27 15:27:20.422 69300 TIP 440587 18995 6085709 2024-02-27 15:27:47.913 2024-02-27 15:27:47.913 3400 FEE 440527 14370 6085710 2024-02-27 15:27:47.913 2024-02-27 15:27:47.913 30600 TIP 440527 21207 6085725 2024-02-27 15:29:35.242 2024-02-27 15:29:35.242 800 FEE 440664 4521 6085726 2024-02-27 15:29:35.242 2024-02-27 15:29:35.242 7200 TIP 440664 21194 6085730 2024-02-27 15:29:44.213 2024-02-27 15:29:44.213 7700 FEE 440663 4763 6085731 2024-02-27 15:29:44.213 2024-02-27 15:29:44.213 69300 TIP 440663 20802 6085742 2024-02-27 15:29:57.286 2024-02-27 15:29:57.286 4000 FEE 440520 10007 6085743 2024-02-27 15:29:57.286 2024-02-27 15:29:57.286 36000 TIP 440520 976 6085747 2024-02-27 15:30:04.371 2024-02-27 15:30:04.371 7700 FEE 440575 21287 6085748 2024-02-27 15:30:04.371 2024-02-27 15:30:04.371 69300 TIP 440575 928 6085753 2024-02-27 15:30:04.86 2024-02-27 15:30:04.86 7700 FEE 440575 18615 6085754 2024-02-27 15:30:04.86 2024-02-27 15:30:04.86 69300 TIP 440575 21469 6085757 2024-02-27 15:30:05.116 2024-02-27 15:30:05.116 7700 FEE 440575 11314 6085758 2024-02-27 15:30:05.116 2024-02-27 15:30:05.116 69300 TIP 440575 20713 6085769 2024-02-27 15:30:14.903 2024-02-27 15:30:14.903 7700 FEE 440575 10280 6085770 2024-02-27 15:30:14.903 2024-02-27 15:30:14.903 69300 TIP 440575 18930 6085804 2024-02-27 15:30:39.364 2024-02-27 15:30:39.364 1000 FEE 440472 21494 6085805 2024-02-27 15:30:39.364 2024-02-27 15:30:39.364 9000 TIP 440472 18101 6085806 2024-02-27 15:30:39.485 2024-02-27 15:30:39.485 1000 FEE 440472 20436 6085807 2024-02-27 15:30:39.485 2024-02-27 15:30:39.485 9000 TIP 440472 11862 6085824 2024-02-27 15:31:01.414 2024-02-27 15:31:01.414 1000 FEE 440633 20257 6085825 2024-02-27 15:31:01.414 2024-02-27 15:31:01.414 9000 TIP 440633 9816 6085858 2024-02-27 15:31:43.427 2024-02-27 15:31:43.427 6900 FEE 440575 20143 6085859 2024-02-27 15:31:43.427 2024-02-27 15:31:43.427 62100 TIP 440575 16124 6085879 2024-02-27 15:33:01.618 2024-02-27 15:33:01.618 1000 FEE 440683 17984 6085881 2024-02-27 15:33:06.338 2024-02-27 15:33:06.338 6900 FEE 440587 1769 6085882 2024-02-27 15:33:06.338 2024-02-27 15:33:06.338 62100 TIP 440587 18241 6085891 2024-02-27 15:34:45.606 2024-02-27 15:34:45.606 1000 FEE 440531 3456 6085892 2024-02-27 15:34:45.606 2024-02-27 15:34:45.606 9000 TIP 440531 11165 6085893 2024-02-27 15:35:01.452 2024-02-27 15:35:01.452 1000 FEE 440572 7877 6085894 2024-02-27 15:35:01.452 2024-02-27 15:35:01.452 9000 TIP 440572 18511 6085900 2024-02-27 15:35:19.304 2024-02-27 15:35:19.304 1000 FEE 437630 15510 6085901 2024-02-27 15:35:19.304 2024-02-27 15:35:19.304 9000 TIP 437630 20066 6085910 2024-02-27 15:35:23.585 2024-02-27 15:35:23.585 1000 FEE 437630 21413 6085911 2024-02-27 15:35:23.585 2024-02-27 15:35:23.585 9000 TIP 437630 21522 6085928 2024-02-27 15:35:48.315 2024-02-27 15:35:48.315 1000 FEE 434156 21339 6085929 2024-02-27 15:35:48.315 2024-02-27 15:35:48.315 9000 TIP 434156 2347 6085953 2024-02-27 15:39:36.593 2024-02-27 15:39:36.593 1000 FEE 440690 963 6085969 2024-02-27 15:41:11.221 2024-02-27 15:41:11.221 300 FEE 440686 628 6085970 2024-02-27 15:41:11.221 2024-02-27 15:41:11.221 2700 TIP 440686 687 6085987 2024-02-27 15:42:27.839 2024-02-27 15:42:27.839 1000 FEE 440562 21323 6085988 2024-02-27 15:42:27.839 2024-02-27 15:42:27.839 9000 TIP 440562 1141 6085994 2024-02-27 15:43:20.063 2024-02-27 15:43:20.063 9000 FEE 440246 2039 6085995 2024-02-27 15:43:20.063 2024-02-27 15:43:20.063 81000 TIP 440246 4083 6085997 2024-02-27 15:43:37.917 2024-02-27 15:43:37.917 100 FEE 440243 7675 6085998 2024-02-27 15:43:37.917 2024-02-27 15:43:37.917 900 TIP 440243 4570 6086003 2024-02-27 15:43:40.652 2024-02-27 15:43:40.652 900 FEE 440248 20603 6086004 2024-02-27 15:43:40.652 2024-02-27 15:43:40.652 8100 TIP 440248 13574 6086010 2024-02-27 15:44:03.988 2024-02-27 15:44:03.988 900 FEE 440663 3360 6086011 2024-02-27 15:44:03.988 2024-02-27 15:44:03.988 8100 TIP 440663 8004 6086052 2024-02-27 15:48:06.92 2024-02-27 15:48:06.92 2100 FEE 440527 1064 6086053 2024-02-27 15:48:06.92 2024-02-27 15:48:06.92 18900 TIP 440527 18862 6086062 2024-02-27 15:48:21.752 2024-02-27 15:48:21.752 2100 FEE 440472 6335 6086063 2024-02-27 15:48:21.752 2024-02-27 15:48:21.752 18900 TIP 440472 1401 6086066 2024-02-27 15:48:26.742 2024-02-27 15:48:26.742 700 FEE 439362 21262 6086067 2024-02-27 15:48:26.742 2024-02-27 15:48:26.742 6300 TIP 439362 5565 6086070 2024-02-27 15:48:27.75 2024-02-27 15:48:27.75 700 FEE 439362 16485 6086071 2024-02-27 15:48:27.75 2024-02-27 15:48:27.75 6300 TIP 439362 18243 6086082 2024-02-27 15:48:33.89 2024-02-27 15:48:33.89 3200 FEE 440692 5776 6086085 2024-02-27 15:48:33.89 2024-02-27 15:48:33.89 28800 TIP 440692 21620 6086086 2024-02-27 15:48:34.074 2024-02-27 15:48:34.074 2100 FEE 440467 21332 6086087 2024-02-27 15:48:34.074 2024-02-27 15:48:34.074 18900 TIP 440467 16356 6086088 2024-02-27 15:48:39.361 2024-02-27 15:48:39.361 1000 FEE 440697 711 6086098 2024-02-27 15:49:08.613 2024-02-27 15:49:08.613 100 FEE 440647 18051 6086099 2024-02-27 15:49:08.613 2024-02-27 15:49:08.613 900 TIP 440647 886 6086104 2024-02-27 15:49:15.097 2024-02-27 15:49:15.097 2100 FEE 440662 787 6086105 2024-02-27 15:49:15.097 2024-02-27 15:49:15.097 18900 TIP 440662 9844 6086106 2024-02-27 15:49:17.062 2024-02-27 15:49:17.062 1000 FEE 440698 10102 6086114 2024-02-27 15:49:27.718 2024-02-27 15:49:27.718 2100 FEE 440623 2640 6086115 2024-02-27 15:49:27.718 2024-02-27 15:49:27.718 18900 TIP 440623 21441 6086153 2024-02-27 15:51:49.042 2024-02-27 15:51:49.042 2100 FEE 440459 11275 6086154 2024-02-27 15:51:49.042 2024-02-27 15:51:49.042 18900 TIP 440459 21339 6086163 2024-02-27 15:52:04.119 2024-02-27 15:52:04.119 2100 FEE 440433 15271 6086164 2024-02-27 15:52:04.119 2024-02-27 15:52:04.119 18900 TIP 440433 20606 6086177 2024-02-27 15:53:12.57 2024-02-27 15:53:12.57 900 FEE 440675 8059 6086178 2024-02-27 15:53:12.57 2024-02-27 15:53:12.57 8100 TIP 440675 12072 6086194 2024-02-27 15:54:02.267 2024-02-27 15:54:02.267 2100 FEE 440694 703 6086195 2024-02-27 15:54:02.267 2024-02-27 15:54:02.267 18900 TIP 440694 18679 6086201 2024-02-27 15:54:09.136 2024-02-27 15:54:09.136 2100 FEE 440692 691 6086202 2024-02-27 15:54:09.136 2024-02-27 15:54:09.136 18900 TIP 440692 2326 6086237 2024-02-27 15:55:01.788 2024-02-27 15:55:01.788 2100 FEE 440583 14255 6086238 2024-02-27 15:55:01.788 2024-02-27 15:55:01.788 18900 TIP 440583 12220 6086240 2024-02-27 15:55:04.861 2024-02-27 15:55:04.861 2100 FEE 440550 676 6086241 2024-02-27 15:55:04.861 2024-02-27 15:55:04.861 18900 TIP 440550 15159 6086244 2024-02-27 15:55:19.871 2024-02-27 15:55:19.871 2100 FEE 440652 9348 6086245 2024-02-27 15:55:19.871 2024-02-27 15:55:19.871 18900 TIP 440652 11275 6086259 2024-02-27 15:56:59.734 2024-02-27 15:56:59.734 1000 FEE 440714 18423 6086271 2024-02-27 15:57:52.768 2024-02-27 15:57:52.768 2100 FEE 440633 12272 6086272 2024-02-27 15:57:52.768 2024-02-27 15:57:52.768 18900 TIP 440633 6777 6086277 2024-02-27 15:58:22.174 2024-02-27 15:58:22.174 2100 FEE 440642 18468 6086278 2024-02-27 15:58:22.174 2024-02-27 15:58:22.174 18900 TIP 440642 9342 6086298 2024-02-27 15:59:56.212 2024-02-27 15:59:56.212 1000 FEE 439886 16858 6086299 2024-02-27 15:59:56.212 2024-02-27 15:59:56.212 9000 TIP 439886 1705 6086307 2024-02-27 15:59:58.46 2024-02-27 15:59:58.46 1000 FEE 439901 5425 6086308 2024-02-27 15:59:58.46 2024-02-27 15:59:58.46 9000 TIP 439901 8162 6086336 2024-02-27 16:00:04.426 2024-02-27 16:00:04.426 1000 FEE 439947 20812 6086337 2024-02-27 16:00:04.426 2024-02-27 16:00:04.426 9000 TIP 439947 1114 6086358 2024-02-27 16:00:36.42 2024-02-27 16:00:36.42 1100 FEE 440066 12265 6086359 2024-02-27 16:00:36.42 2024-02-27 16:00:36.42 9900 TIP 440066 16410 6086366 2024-02-27 16:00:43.929 2024-02-27 16:00:43.929 1000 FEE 440180 17541 6085927 2024-02-27 15:35:35.938 2024-02-27 15:35:35.938 14400 TIP 440674 899 6085938 2024-02-27 15:37:29.584 2024-02-27 15:37:29.584 500 FEE 440527 18772 6085939 2024-02-27 15:37:29.584 2024-02-27 15:37:29.584 4500 TIP 440527 4313 6085975 2024-02-27 15:41:28.309 2024-02-27 15:41:28.309 100 FEE 440411 21451 6085976 2024-02-27 15:41:28.309 2024-02-27 15:41:28.309 900 TIP 440411 15337 6086012 2024-02-27 15:44:35.35 2024-02-27 15:44:35.35 0 FEE 440692 14657 6086022 2024-02-27 15:46:49.088 2024-02-27 15:46:49.088 7700 FEE 440694 20409 6086023 2024-02-27 15:46:49.088 2024-02-27 15:46:49.088 69300 TIP 440694 18040 6086037 2024-02-27 15:47:36.708 2024-02-27 15:47:36.708 27900 FEE 440623 19038 6086038 2024-02-27 15:47:36.708 2024-02-27 15:47:36.708 251100 TIP 440623 7659 6086112 2024-02-27 15:49:23.903 2024-02-27 15:49:23.903 2100 FEE 440642 17148 6086113 2024-02-27 15:49:23.903 2024-02-27 15:49:23.903 18900 TIP 440642 20990 6086123 2024-02-27 15:49:54.194 2024-02-27 15:49:54.194 100 FEE 440692 18177 6086124 2024-02-27 15:49:54.194 2024-02-27 15:49:54.194 900 TIP 440692 15282 6086142 2024-02-27 15:50:37.189 2024-02-27 15:50:37.189 2100 FEE 440519 18119 6086143 2024-02-27 15:50:37.189 2024-02-27 15:50:37.189 18900 TIP 440519 11220 6086147 2024-02-27 15:51:16.495 2024-02-27 15:51:16.495 100000 FEE 440700 4083 6086148 2024-02-27 15:51:17.562 2024-02-27 15:51:17.562 2100 FEE 440470 18262 6086149 2024-02-27 15:51:17.562 2024-02-27 15:51:17.562 18900 TIP 440470 762 6086155 2024-02-27 15:51:51.406 2024-02-27 15:51:51.406 2100 FEE 440483 20979 6086156 2024-02-27 15:51:51.406 2024-02-27 15:51:51.406 18900 TIP 440483 1493 6086162 2024-02-27 15:52:03.592 2024-02-27 15:52:03.592 1000 FEE 440702 21627 6086168 2024-02-27 15:52:50.082 2024-02-27 15:52:50.082 1000 FEE 434031 7983 6086169 2024-02-27 15:52:50.082 2024-02-27 15:52:50.082 9000 TIP 434031 11789 6086175 2024-02-27 15:53:12.399 2024-02-27 15:53:12.399 100 FEE 440675 1145 6086176 2024-02-27 15:53:12.399 2024-02-27 15:53:12.399 900 TIP 440675 12561 6086179 2024-02-27 15:53:19.72 2024-02-27 15:53:19.72 10000 FEE 440622 12507 6086180 2024-02-27 15:53:19.72 2024-02-27 15:53:19.72 90000 TIP 440622 18714 6086181 2024-02-27 15:53:31.544 2024-02-27 15:53:31.544 1000 FEE 440706 20301 6086208 2024-02-27 15:54:19.335 2024-02-27 15:54:19.335 2100 FEE 440592 9494 6086209 2024-02-27 15:54:19.335 2024-02-27 15:54:19.335 18900 TIP 440592 9992 6086218 2024-02-27 15:54:42.741 2024-02-27 15:54:42.741 2100 FEE 440532 9363 6086219 2024-02-27 15:54:42.741 2024-02-27 15:54:42.741 18900 TIP 440532 3717 6086246 2024-02-27 15:55:28.939 2024-02-27 15:55:28.939 2100 FEE 440478 20183 6086247 2024-02-27 15:55:28.939 2024-02-27 15:55:28.939 18900 TIP 440478 18219 6086275 2024-02-27 15:58:09.302 2024-02-27 15:58:09.302 2100 FEE 440699 642 6086276 2024-02-27 15:58:09.302 2024-02-27 15:58:09.302 18900 TIP 440699 18625 6086284 2024-02-27 15:59:19.684 2024-02-27 15:59:19.684 2100 FEE 440662 762 6086285 2024-02-27 15:59:19.684 2024-02-27 15:59:19.684 18900 TIP 440662 2010 6086286 2024-02-27 15:59:29.084 2024-02-27 15:59:29.084 2100 FEE 440711 20825 6086287 2024-02-27 15:59:29.084 2024-02-27 15:59:29.084 18900 TIP 440711 11164 6086305 2024-02-27 15:59:58.109 2024-02-27 15:59:58.109 1000 FEE 439901 9367 6086306 2024-02-27 15:59:58.109 2024-02-27 15:59:58.109 9000 TIP 439901 19809 6086311 2024-02-27 15:59:59.872 2024-02-27 15:59:59.872 1000 FEE 439927 20337 6086312 2024-02-27 15:59:59.872 2024-02-27 15:59:59.872 9000 TIP 439927 16532 6085947 2024-02-27 15:38:03.392 2024-02-27 15:38:03.392 1000 STREAM 141924 16505 6085952 2024-02-27 15:39:03.397 2024-02-27 15:39:03.397 1000 STREAM 141924 5809 6085984 2024-02-27 15:42:03.399 2024-02-27 15:42:03.399 1000 STREAM 141924 20006 6085989 2024-02-27 15:43:03.397 2024-02-27 15:43:03.397 1000 STREAM 141924 19158 6086013 2024-02-27 15:45:03.402 2024-02-27 15:45:03.402 1000 STREAM 141924 21269 6086274 2024-02-27 15:58:03.468 2024-02-27 15:58:03.468 1000 STREAM 141924 695 6086281 2024-02-27 15:59:03.477 2024-02-27 15:59:03.477 1000 STREAM 141924 17727 6085981 2024-02-27 15:41:37.664 2024-02-27 15:41:37.664 27900 FEE 440587 6653 6085982 2024-02-27 15:41:37.664 2024-02-27 15:41:37.664 251100 TIP 440587 4487 6086001 2024-02-27 15:43:39.846 2024-02-27 15:43:39.846 100 FEE 440248 19322 6086002 2024-02-27 15:43:39.846 2024-02-27 15:43:39.846 900 TIP 440248 10007 6086016 2024-02-27 15:46:27.009 2024-02-27 15:46:27.009 100 FEE 440633 18402 6086017 2024-02-27 15:46:27.009 2024-02-27 15:46:27.009 900 TIP 440633 19488 6086020 2024-02-27 15:46:30.325 2024-02-27 15:46:30.325 9000 FEE 440633 913 6086021 2024-02-27 15:46:30.325 2024-02-27 15:46:30.325 81000 TIP 440633 9362 6086056 2024-02-27 15:48:11.797 2024-02-27 15:48:11.797 2100 FEE 440521 2460 6086057 2024-02-27 15:48:11.797 2024-02-27 15:48:11.797 18900 TIP 440521 7376 6086072 2024-02-27 15:48:28.843 2024-02-27 15:48:28.843 700 FEE 439362 17727 6086073 2024-02-27 15:48:28.843 2024-02-27 15:48:28.843 6300 TIP 439362 954 6086078 2024-02-27 15:48:31.403 2024-02-27 15:48:31.403 700 FEE 439362 15510 6086079 2024-02-27 15:48:31.403 2024-02-27 15:48:31.403 6300 TIP 439362 5128 6086094 2024-02-27 15:49:04.545 2024-02-27 15:49:04.545 2100 FEE 440664 634 6086095 2024-02-27 15:49:04.545 2024-02-27 15:49:04.545 18900 TIP 440664 4395 6086102 2024-02-27 15:49:12.175 2024-02-27 15:49:12.175 15000 FEE 440301 15594 6086103 2024-02-27 15:49:12.175 2024-02-27 15:49:12.175 135000 TIP 440301 20901 6086118 2024-02-27 15:49:44.084 2024-02-27 15:49:44.084 1000 DONT_LIKE_THIS 440568 19795 6086131 2024-02-27 15:49:59.285 2024-02-27 15:49:59.285 2100 FEE 440590 1713 6086132 2024-02-27 15:49:59.285 2024-02-27 15:49:59.285 18900 TIP 440590 20981 6086188 2024-02-27 15:53:58.868 2024-02-27 15:53:58.868 6900 FEE 440575 760 6086189 2024-02-27 15:53:58.868 2024-02-27 15:53:58.868 62100 TIP 440575 6268 6086190 2024-02-27 15:54:00.058 2024-02-27 15:54:00.058 6900 FEE 440575 12507 6086191 2024-02-27 15:54:00.058 2024-02-27 15:54:00.058 62100 TIP 440575 19043 6086199 2024-02-27 15:54:06.744 2024-02-27 15:54:06.744 2100 FEE 440566 18640 6086200 2024-02-27 15:54:06.744 2024-02-27 15:54:06.744 18900 TIP 440566 16912 6086216 2024-02-27 15:54:41.349 2024-02-27 15:54:41.349 2100 FEE 440695 11862 6086217 2024-02-27 15:54:41.349 2024-02-27 15:54:41.349 18900 TIP 440695 19446 6086249 2024-02-27 15:55:42.858 2024-02-27 15:55:42.858 2100 FEE 440592 14791 6086250 2024-02-27 15:55:42.858 2024-02-27 15:55:42.858 18900 TIP 440592 21562 6086255 2024-02-27 15:56:49.301 2024-02-27 15:56:49.301 500 FEE 440268 19777 6086256 2024-02-27 15:56:49.301 2024-02-27 15:56:49.301 4500 TIP 440268 16354 6086313 2024-02-27 16:00:00.275 2024-02-27 16:00:00.275 1000 FEE 439927 14080 6086314 2024-02-27 16:00:00.275 2024-02-27 16:00:00.275 9000 TIP 439927 7418 6086317 2024-02-27 16:00:00.774 2024-02-27 16:00:00.774 1000 FEE 439927 21556 6086318 2024-02-27 16:00:00.774 2024-02-27 16:00:00.774 9000 TIP 439927 21208 6086319 2024-02-27 16:00:00.888 2024-02-27 16:00:00.888 2100 FEE 440656 21088 6086320 2024-02-27 16:00:00.888 2024-02-27 16:00:00.888 18900 TIP 440656 5565 6086321 2024-02-27 16:00:01.037 2024-02-27 16:00:01.037 1000 FEE 439927 21556 6086322 2024-02-27 16:00:01.037 2024-02-27 16:00:01.037 9000 TIP 439927 673 6086325 2024-02-27 16:00:02.059 2024-02-27 16:00:02.059 1000 FEE 439947 13544 6086326 2024-02-27 16:00:02.059 2024-02-27 16:00:02.059 9000 TIP 439947 9336 6086344 2024-02-27 16:00:07.478 2024-02-27 16:00:07.478 1000 FEE 439964 675 6086345 2024-02-27 16:00:07.478 2024-02-27 16:00:07.478 9000 TIP 439964 1658 6086362 2024-02-27 16:00:42.5 2024-02-27 16:00:42.5 2100 FEE 440641 19151 6086363 2024-02-27 16:00:42.5 2024-02-27 16:00:42.5 18900 TIP 440641 638 6086368 2024-02-27 16:00:44.355 2024-02-27 16:00:44.355 1000 FEE 440180 21262 6086369 2024-02-27 16:00:44.355 2024-02-27 16:00:44.355 9000 TIP 440180 18470 6086370 2024-02-27 16:00:44.742 2024-02-27 16:00:44.742 1000 FEE 440180 3745 6086371 2024-02-27 16:00:44.742 2024-02-27 16:00:44.742 9000 TIP 440180 20179 6086378 2024-02-27 16:00:53.913 2024-02-27 16:00:53.913 2100 FEE 440608 8541 6086379 2024-02-27 16:00:53.913 2024-02-27 16:00:53.913 18900 TIP 440608 20551 6086380 2024-02-27 16:00:57.607 2024-02-27 16:00:57.607 1000 FEE 440194 20120 6086381 2024-02-27 16:00:57.607 2024-02-27 16:00:57.607 9000 TIP 440194 20015 6086382 2024-02-27 16:00:57.962 2024-02-27 16:00:57.962 1000 FEE 440194 21022 6086383 2024-02-27 16:00:57.962 2024-02-27 16:00:57.962 9000 TIP 440194 1039 6086384 2024-02-27 16:00:58.27 2024-02-27 16:00:58.27 1000 FEE 440194 891 6086385 2024-02-27 16:00:58.27 2024-02-27 16:00:58.27 9000 TIP 440194 2583 6086423 2024-02-27 16:02:59.803 2024-02-27 16:02:59.803 10000 FEE 440712 17602 6086424 2024-02-27 16:02:59.803 2024-02-27 16:02:59.803 90000 TIP 440712 9347 6086459 2024-02-27 16:07:30.43 2024-02-27 16:07:30.43 100000 FEE 440725 20837 6086468 2024-02-27 16:08:10.817 2024-02-27 16:08:10.817 1000 FEE 440608 4076 6086469 2024-02-27 16:08:10.817 2024-02-27 16:08:10.817 9000 TIP 440608 951 6086470 2024-02-27 16:08:11.353 2024-02-27 16:08:11.353 1000 FEE 440608 8095 6086471 2024-02-27 16:08:11.353 2024-02-27 16:08:11.353 9000 TIP 440608 20205 6086472 2024-02-27 16:08:11.958 2024-02-27 16:08:11.958 1000 FEE 440608 19668 6086473 2024-02-27 16:08:11.958 2024-02-27 16:08:11.958 9000 TIP 440608 701 6086480 2024-02-27 16:09:11.326 2024-02-27 16:09:11.326 1000 POLL 440725 19158 6086490 2024-02-27 16:09:45.626 2024-02-27 16:09:45.626 1000 FEE 439446 20470 6086491 2024-02-27 16:09:45.626 2024-02-27 16:09:45.626 9000 TIP 439446 19557 6086502 2024-02-27 16:11:32.709 2024-02-27 16:11:32.709 6900 FEE 440575 20137 6086503 2024-02-27 16:11:32.709 2024-02-27 16:11:32.709 62100 TIP 440575 4654 6086530 2024-02-27 16:12:28.763 2024-02-27 16:12:28.763 1000 FEE 440587 21441 6086531 2024-02-27 16:12:28.763 2024-02-27 16:12:28.763 9000 TIP 440587 11862 6086538 2024-02-27 16:14:26.864 2024-02-27 16:14:26.864 2100 FEE 440622 12609 6086539 2024-02-27 16:14:26.864 2024-02-27 16:14:26.864 18900 TIP 440622 7119 6086542 2024-02-27 16:14:50.261 2024-02-27 16:14:50.261 2100 FEE 440725 4378 6086543 2024-02-27 16:14:50.261 2024-02-27 16:14:50.261 18900 TIP 440725 19639 6086551 2024-02-27 16:16:22.568 2024-02-27 16:16:22.568 3500 FEE 440739 7097 6086552 2024-02-27 16:16:22.568 2024-02-27 16:16:22.568 31500 TIP 440739 21446 6086569 2024-02-27 16:17:09.535 2024-02-27 16:17:09.535 1000 FEE 440623 4831 6086007 2024-02-27 15:44:02.658 2024-02-27 15:44:02.658 1000 STREAM 141924 20464 6086091 2024-02-27 15:49:02.677 2024-02-27 15:49:02.677 1000 STREAM 141924 6148 6086161 2024-02-27 15:52:02.666 2024-02-27 15:52:02.666 1000 STREAM 141924 4574 6086173 2024-02-27 15:53:02.673 2024-02-27 15:53:02.673 1000 STREAM 141924 17827 6086239 2024-02-27 15:55:02.798 2024-02-27 15:55:02.798 1000 STREAM 141924 698 6086425 2024-02-27 16:03:02.876 2024-02-27 16:03:02.876 1000 STREAM 141924 21349 6086440 2024-02-27 16:05:02.888 2024-02-27 16:05:02.888 1000 STREAM 141924 1320 6086448 2024-02-27 16:06:02.885 2024-02-27 16:06:02.885 1000 STREAM 141924 17707 6086478 2024-02-27 16:09:02.913 2024-02-27 16:09:02.913 1000 STREAM 141924 12779 6086494 2024-02-27 16:10:02.918 2024-02-27 16:10:02.918 1000 STREAM 141924 21523 6086515 2024-02-27 16:12:02.922 2024-02-27 16:12:02.922 1000 STREAM 141924 20080 6086533 2024-02-27 16:13:02.937 2024-02-27 16:13:02.937 1000 STREAM 141924 626 6086550 2024-02-27 16:16:02.944 2024-02-27 16:16:02.944 1000 STREAM 141924 8080 6086583 2024-02-27 16:19:02.959 2024-02-27 16:19:02.959 1000 STREAM 141924 14376 6086588 2024-02-27 16:20:02.956 2024-02-27 16:20:02.956 1000 STREAM 141924 20906 6086591 2024-02-27 16:21:02.936 2024-02-27 16:21:02.936 1000 STREAM 141924 5487 6086642 2024-02-27 16:26:02.949 2024-02-27 16:26:02.949 1000 STREAM 141924 1319 6086789 2024-02-27 16:35:04.993 2024-02-27 16:35:04.993 1000 STREAM 141924 5069 6086817 2024-02-27 16:37:03.002 2024-02-27 16:37:03.002 1000 STREAM 141924 4521 6086015 2024-02-27 15:46:02.702 2024-02-27 15:46:02.702 1000 STREAM 141924 10818 6086030 2024-02-27 15:47:02.728 2024-02-27 15:47:02.728 1000 STREAM 141924 20891 6086047 2024-02-27 15:48:02.671 2024-02-27 15:48:02.671 1000 STREAM 141924 12097 6086133 2024-02-27 15:50:02.673 2024-02-27 15:50:02.673 1000 STREAM 141924 21026 6086144 2024-02-27 15:51:02.671 2024-02-27 15:51:02.671 1000 STREAM 141924 18735 6086198 2024-02-27 15:54:04.782 2024-02-27 15:54:04.782 1000 STREAM 141924 4654 6086251 2024-02-27 15:56:02.818 2024-02-27 15:56:02.818 1000 STREAM 141924 10638 6086262 2024-02-27 15:57:02.807 2024-02-27 15:57:02.807 1000 STREAM 141924 14168 6086327 2024-02-27 16:00:02.837 2024-02-27 16:00:02.837 1000 STREAM 141924 14857 6086406 2024-02-27 16:01:04.855 2024-02-27 16:01:04.855 1000 STREAM 141924 18932 6086437 2024-02-27 16:04:02.882 2024-02-27 16:04:02.882 1000 STREAM 141924 16988 6086456 2024-02-27 16:07:02.899 2024-02-27 16:07:02.899 1000 STREAM 141924 1245 6086460 2024-02-27 16:08:02.899 2024-02-27 16:08:02.899 1000 STREAM 141924 14990 6086499 2024-02-27 16:11:02.921 2024-02-27 16:11:02.921 1000 STREAM 141924 21591 6086534 2024-02-27 16:14:02.96 2024-02-27 16:14:02.96 1000 STREAM 141924 17541 6086544 2024-02-27 16:15:02.944 2024-02-27 16:15:02.944 1000 STREAM 141924 18989 6086562 2024-02-27 16:17:02.95 2024-02-27 16:17:02.95 1000 STREAM 141924 21180 6086582 2024-02-27 16:18:02.963 2024-02-27 16:18:02.963 1000 STREAM 141924 17944 6086597 2024-02-27 16:22:02.935 2024-02-27 16:22:02.935 1000 STREAM 141924 20713 6086610 2024-02-27 16:23:02.947 2024-02-27 16:23:02.947 1000 STREAM 141924 7425 6086616 2024-02-27 16:24:02.952 2024-02-27 16:24:02.952 1000 STREAM 141924 8459 6086619 2024-02-27 16:25:02.999 2024-02-27 16:25:02.999 1000 STREAM 141924 770 6086669 2024-02-27 16:27:02.95 2024-02-27 16:27:02.95 1000 STREAM 141924 20080 6086684 2024-02-27 16:29:04.968 2024-02-27 16:29:04.968 1000 STREAM 141924 15978 6086815 2024-02-27 16:36:02.983 2024-02-27 16:36:02.983 1000 STREAM 141924 794 6086855 2024-02-27 16:38:02.993 2024-02-27 16:38:02.993 1000 STREAM 141924 19576 6086898 2024-02-27 16:39:02.998 2024-02-27 16:39:02.998 1000 STREAM 141924 19615 6087043 2024-02-27 16:44:03.076 2024-02-27 16:44:03.076 1000 STREAM 141924 17103 6087179 2024-02-27 16:52:03.122 2024-02-27 16:52:03.122 1000 STREAM 141924 18640 6087405 2024-02-27 17:17:03.329 2024-02-27 17:17:03.329 1000 STREAM 141924 16004 6087455 2024-02-27 17:19:03.341 2024-02-27 17:19:03.341 1000 STREAM 141924 11164 6087466 2024-02-27 17:20:03.35 2024-02-27 17:20:03.35 1000 STREAM 141924 9874 6087509 2024-02-27 17:22:03.35 2024-02-27 17:22:03.35 1000 STREAM 141924 9920 6087559 2024-02-27 17:26:03.349 2024-02-27 17:26:03.349 1000 STREAM 141924 20841 6086137 2024-02-27 15:50:22.9 2024-02-27 15:50:22.9 18900 TIP 440523 1490 6086182 2024-02-27 15:53:43.732 2024-02-27 15:53:43.732 2100 FEE 440344 4973 6086183 2024-02-27 15:53:43.732 2024-02-27 15:53:43.732 18900 TIP 440344 7125 6086184 2024-02-27 15:53:57.131 2024-02-27 15:53:57.131 2100 FEE 440663 17570 6086185 2024-02-27 15:53:57.131 2024-02-27 15:53:57.131 18900 TIP 440663 13055 6086212 2024-02-27 15:54:30.346 2024-02-27 15:54:30.346 2100 FEE 440624 15544 6086213 2024-02-27 15:54:30.346 2024-02-27 15:54:30.346 18900 TIP 440624 20660 6086220 2024-02-27 15:54:43.115 2024-02-27 15:54:43.115 2100 FEE 440664 21116 6086221 2024-02-27 15:54:43.115 2024-02-27 15:54:43.115 18900 TIP 440664 9969 6086222 2024-02-27 15:54:45.606 2024-02-27 15:54:45.606 2100 FEE 440662 2151 6086223 2024-02-27 15:54:45.606 2024-02-27 15:54:45.606 18900 TIP 440662 4973 6086226 2024-02-27 15:54:47.891 2024-02-27 15:54:47.891 1000 FEE 440708 14308 6086227 2024-02-27 15:54:48.906 2024-02-27 15:54:48.906 2100 FEE 440580 19333 6086228 2024-02-27 15:54:48.906 2024-02-27 15:54:48.906 18900 TIP 440580 18199 6086233 2024-02-27 15:54:56.11 2024-02-27 15:54:56.11 2100 FEE 440675 2952 6086234 2024-02-27 15:54:56.11 2024-02-27 15:54:56.11 18900 TIP 440675 3409 6086273 2024-02-27 15:58:01.309 2024-02-27 15:58:01.309 1000 FEE 440715 946 6086330 2024-02-27 16:00:03.017 2024-02-27 16:00:03.017 1000 FEE 439947 19821 6086331 2024-02-27 16:00:03.017 2024-02-27 16:00:03.017 9000 TIP 439947 20817 6086334 2024-02-27 16:00:03.813 2024-02-27 16:00:03.813 1000 FEE 439947 17157 6086335 2024-02-27 16:00:03.813 2024-02-27 16:00:03.813 9000 TIP 439947 1745 6086340 2024-02-27 16:00:07.044 2024-02-27 16:00:07.044 1000 FEE 439964 19911 6086341 2024-02-27 16:00:07.044 2024-02-27 16:00:07.044 9000 TIP 439964 15063 6086342 2024-02-27 16:00:07.305 2024-02-27 16:00:07.305 1000 FEE 439964 6687 6086343 2024-02-27 16:00:07.305 2024-02-27 16:00:07.305 9000 TIP 439964 19235 6086360 2024-02-27 16:00:39.265 2024-02-27 16:00:39.265 2100 FEE 440520 20891 6086361 2024-02-27 16:00:39.265 2024-02-27 16:00:39.265 18900 TIP 440520 10611 6086374 2024-02-27 16:00:47.472 2024-02-27 16:00:47.472 2100 FEE 440623 20624 6086375 2024-02-27 16:00:47.472 2024-02-27 16:00:47.472 18900 TIP 440623 12507 6086400 2024-02-27 16:01:01.636 2024-02-27 16:01:01.636 100 FEE 440587 8664 6086401 2024-02-27 16:01:01.636 2024-02-27 16:01:01.636 900 TIP 440587 8176 6086407 2024-02-27 16:01:15.766 2024-02-27 16:01:15.766 100 FEE 440629 3642 6086408 2024-02-27 16:01:15.766 2024-02-27 16:01:15.766 900 TIP 440629 696 6086431 2024-02-27 16:03:22.223 2024-02-27 16:03:22.223 1000 FEE 439368 20715 6086432 2024-02-27 16:03:22.223 2024-02-27 16:03:22.223 9000 TIP 439368 19096 6086452 2024-02-27 16:06:35.657 2024-02-27 16:06:35.657 500 FEE 440677 27 6086453 2024-02-27 16:06:35.657 2024-02-27 16:06:35.657 4500 TIP 440677 11164 6086458 2024-02-27 16:07:23.33 2024-02-27 16:07:23.33 1000 FEE 440724 18956 6086461 2024-02-27 16:08:05.461 2024-02-27 16:08:05.461 1000 FEE 440726 891 6086520 2024-02-27 16:12:25.063 2024-02-27 16:12:25.063 1000 FEE 439380 16348 6086521 2024-02-27 16:12:25.063 2024-02-27 16:12:25.063 9000 TIP 439380 21585 6086537 2024-02-27 16:14:26.45 2024-02-27 16:14:26.45 1000 FEE 440735 14515 6086558 2024-02-27 16:16:28.994 2024-02-27 16:16:28.994 100 FEE 440622 7983 6086559 2024-02-27 16:16:28.994 2024-02-27 16:16:28.994 900 TIP 440622 14258 6086585 2024-02-27 16:19:16.278 2024-02-27 16:19:16.278 0 FEE 440740 19151 6086587 2024-02-27 16:19:40.266 2024-02-27 16:19:40.266 1000 FEE 440742 20776 6086602 2024-02-27 16:22:30.716 2024-02-27 16:22:30.716 2100 FEE 440719 18412 6086603 2024-02-27 16:22:30.716 2024-02-27 16:22:30.716 18900 TIP 440719 21047 6086618 2024-02-27 16:24:44.183 2024-02-27 16:24:44.183 1000 POLL 440725 14080 6086626 2024-02-27 16:25:07.283 2024-02-27 16:25:07.283 1000 FEE 440729 9421 6086627 2024-02-27 16:25:07.283 2024-02-27 16:25:07.283 9000 TIP 440729 2206 6086630 2024-02-27 16:25:11.276 2024-02-27 16:25:11.276 1000 POLL 440725 1717 6086667 2024-02-27 16:26:52.657 2024-02-27 16:26:52.657 100 FEE 440747 8360 6086668 2024-02-27 16:26:52.657 2024-02-27 16:26:52.657 900 TIP 440747 5522 6086677 2024-02-27 16:28:21.521 2024-02-27 16:28:21.521 0 FEE 440751 20208 6086685 2024-02-27 16:29:21.415 2024-02-27 16:29:21.415 4000 FEE 440717 12911 6086686 2024-02-27 16:29:21.415 2024-02-27 16:29:21.415 36000 TIP 440717 18507 6086706 2024-02-27 16:30:19.456 2024-02-27 16:30:19.456 1000 FEE 440746 1490 6086707 2024-02-27 16:30:19.456 2024-02-27 16:30:19.456 9000 TIP 440746 6616 6086708 2024-02-27 16:30:24.062 2024-02-27 16:30:24.062 1000 FEE 440755 17321 6086731 2024-02-27 16:31:03.95 2024-02-27 16:31:03.95 2100 FEE 440730 805 6086732 2024-02-27 16:31:03.95 2024-02-27 16:31:03.95 18900 TIP 440730 21589 6086740 2024-02-27 16:32:04.102 2024-02-27 16:32:04.102 1000 POLL 440725 16542 6086747 2024-02-27 16:32:30.831 2024-02-27 16:32:30.831 1000 FEE 440761 1603 6086753 2024-02-27 16:33:09.732 2024-02-27 16:33:09.732 27900 FEE 440761 20036 6086754 2024-02-27 16:33:09.732 2024-02-27 16:33:09.732 251100 TIP 440761 21338 6086780 2024-02-27 16:34:44.935 2024-02-27 16:34:44.935 1000 FEE 440765 19638 6086785 2024-02-27 16:34:52.368 2024-02-27 16:34:52.368 1000 FEE 440738 17050 6086786 2024-02-27 16:34:52.368 2024-02-27 16:34:52.368 9000 TIP 440738 19087 6086794 2024-02-27 16:35:21.75 2024-02-27 16:35:21.75 500 FEE 440725 4395 6086795 2024-02-27 16:35:21.75 2024-02-27 16:35:21.75 4500 TIP 440725 3439 6086810 2024-02-27 16:35:25.697 2024-02-27 16:35:25.697 500 FEE 440725 20922 6086811 2024-02-27 16:35:25.697 2024-02-27 16:35:25.697 4500 TIP 440725 775 6086816 2024-02-27 16:36:47.847 2024-02-27 16:36:47.847 1000 FEE 440766 17321 6086839 2024-02-27 16:37:42.152 2024-02-27 16:37:42.152 500 FEE 440587 18235 6086840 2024-02-27 16:37:42.152 2024-02-27 16:37:42.152 4500 TIP 440587 1729 6086841 2024-02-27 16:37:48.563 2024-02-27 16:37:48.563 500 FEE 440587 3400 6086842 2024-02-27 16:37:48.563 2024-02-27 16:37:48.563 4500 TIP 440587 1738 6086845 2024-02-27 16:37:49.009 2024-02-27 16:37:49.009 500 FEE 440587 12261 6086846 2024-02-27 16:37:49.009 2024-02-27 16:37:49.009 4500 TIP 440587 2196 6086870 2024-02-27 16:38:38.204 2024-02-27 16:38:38.204 500 FEE 440575 20788 6086871 2024-02-27 16:38:38.204 2024-02-27 16:38:38.204 4500 TIP 440575 18526 6086294 2024-02-27 15:59:55.672 2024-02-27 15:59:55.672 1000 FEE 439886 4084 6086295 2024-02-27 15:59:55.672 2024-02-27 15:59:55.672 9000 TIP 439886 17526 6086296 2024-02-27 15:59:56.106 2024-02-27 15:59:56.106 1000 FEE 439886 5637 6086297 2024-02-27 15:59:56.106 2024-02-27 15:59:56.106 9000 TIP 439886 11240 6086300 2024-02-27 15:59:56.55 2024-02-27 15:59:56.55 1000 FEE 439886 902 6086301 2024-02-27 15:59:56.55 2024-02-27 15:59:56.55 9000 TIP 439886 1012 6086323 2024-02-27 16:00:01.571 2024-02-27 16:00:01.571 2100 FEE 440653 18359 6086324 2024-02-27 16:00:01.571 2024-02-27 16:00:01.571 18900 TIP 440653 15271 6086332 2024-02-27 16:00:03.049 2024-02-27 16:00:03.049 1000 FEE 439947 19852 6086333 2024-02-27 16:00:03.049 2024-02-27 16:00:03.049 9000 TIP 439947 11942 6086350 2024-02-27 16:00:15.349 2024-02-27 16:00:15.349 1000 FEE 439994 2961 6086351 2024-02-27 16:00:15.349 2024-02-27 16:00:15.349 9000 TIP 439994 4115 6086356 2024-02-27 16:00:16.283 2024-02-27 16:00:16.283 1000 FEE 439994 1803 6086357 2024-02-27 16:00:16.283 2024-02-27 16:00:16.283 9000 TIP 439994 4521 6086372 2024-02-27 16:00:45.12 2024-02-27 16:00:45.12 1000 FEE 440180 20993 6086373 2024-02-27 16:00:45.12 2024-02-27 16:00:45.12 9000 TIP 440180 10060 6086386 2024-02-27 16:00:58.589 2024-02-27 16:00:58.589 1000 FEE 440194 11378 6086387 2024-02-27 16:00:58.589 2024-02-27 16:00:58.589 9000 TIP 440194 929 6086421 2024-02-27 16:02:46.077 2024-02-27 16:02:46.077 1000 FEE 440720 20744 6086426 2024-02-27 16:03:12.557 2024-02-27 16:03:12.557 0 FEE 440716 12102 6086449 2024-02-27 16:06:25.814 2024-02-27 16:06:25.814 1000 FEE 440723 1602 6086501 2024-02-27 16:11:28.094 2024-02-27 16:11:28.094 0 FEE 440729 1245 6086504 2024-02-27 16:11:33.188 2024-02-27 16:11:33.188 1000 FEE 440731 10979 6086513 2024-02-27 16:12:01.432 2024-02-27 16:12:01.432 100 FEE 440226 8472 6086514 2024-02-27 16:12:01.432 2024-02-27 16:12:01.432 900 TIP 440226 2342 6086518 2024-02-27 16:12:10.694 2024-02-27 16:12:10.694 100000 FEE 440732 21271 6086526 2024-02-27 16:12:26.343 2024-02-27 16:12:26.343 1000 FEE 439380 6602 6086527 2024-02-27 16:12:26.343 2024-02-27 16:12:26.343 9000 TIP 439380 9107 6086532 2024-02-27 16:13:00.225 2024-02-27 16:13:00.225 1000 FEE 440734 16876 6086548 2024-02-27 16:15:34.641 2024-02-27 16:15:34.641 0 FEE 440735 2176 6086549 2024-02-27 16:15:42.166 2024-02-27 16:15:42.166 1000 FEE 440739 20514 6086595 2024-02-27 16:21:48.791 2024-02-27 16:21:48.791 1000 FEE 440663 20911 6086596 2024-02-27 16:21:48.791 2024-02-27 16:21:48.791 9000 TIP 440663 19463 6086611 2024-02-27 16:23:27.717 2024-02-27 16:23:27.717 6900 FEE 440725 5017 6086612 2024-02-27 16:23:27.717 2024-02-27 16:23:27.717 62100 TIP 440725 6030 6086641 2024-02-27 16:25:51.276 2024-02-27 16:25:51.276 1000 POLL 440725 21357 6086643 2024-02-27 16:26:17.607 2024-02-27 16:26:17.607 1000 FEE 440750 11590 6086646 2024-02-27 16:26:21.861 2024-02-27 16:26:21.861 2100 FEE 439723 19484 6086647 2024-02-27 16:26:21.861 2024-02-27 16:26:21.861 18900 TIP 439723 17693 6086674 2024-02-27 16:27:30.605 2024-02-27 16:27:30.605 1000 FEE 440751 21393 6086694 2024-02-27 16:30:12.558 2024-02-27 16:30:12.558 1000 FEE 440753 16879 6086726 2024-02-27 16:30:47.473 2024-02-27 16:30:47.473 500000 FEE 440692 15103 6086727 2024-02-27 16:30:47.473 2024-02-27 16:30:47.473 4500000 TIP 440692 8926 6086766 2024-02-27 16:33:26.549 2024-02-27 16:33:26.549 1000 FEE 440762 12346 6086767 2024-02-27 16:33:26.549 2024-02-27 16:33:26.549 9000 TIP 440762 19394 6086776 2024-02-27 16:34:22.495 2024-02-27 16:34:22.495 1000 POLL 440725 9171 6086777 2024-02-27 16:34:23.381 2024-02-27 16:34:23.381 100000 FEE 440764 1626 6086790 2024-02-27 16:35:18.856 2024-02-27 16:35:18.856 1000 FEE 440712 1438 6086791 2024-02-27 16:35:18.856 2024-02-27 16:35:18.856 9000 TIP 440712 21062 6086800 2024-02-27 16:35:23.567 2024-02-27 16:35:23.567 500 FEE 440725 770 6086801 2024-02-27 16:35:23.567 2024-02-27 16:35:23.567 4500 TIP 440725 17411 6086806 2024-02-27 16:35:24.216 2024-02-27 16:35:24.216 500 FEE 440725 16351 6086807 2024-02-27 16:35:24.216 2024-02-27 16:35:24.216 4500 TIP 440725 13169 6086822 2024-02-27 16:37:26.495 2024-02-27 16:37:26.495 25000 FEE 440764 19292 6086823 2024-02-27 16:37:26.495 2024-02-27 16:37:26.495 225000 TIP 440764 635 6086834 2024-02-27 16:37:40.683 2024-02-27 16:37:40.683 500 FEE 440587 21527 6086835 2024-02-27 16:37:40.683 2024-02-27 16:37:40.683 4500 TIP 440587 21172 6086836 2024-02-27 16:37:40.697 2024-02-27 16:37:40.697 1000 FEE 440767 18412 6086843 2024-02-27 16:37:48.663 2024-02-27 16:37:48.663 500 FEE 440587 12218 6086844 2024-02-27 16:37:48.663 2024-02-27 16:37:48.663 4500 TIP 440587 12175 6086853 2024-02-27 16:37:56.131 2024-02-27 16:37:56.131 500 FEE 440680 20776 6086854 2024-02-27 16:37:56.131 2024-02-27 16:37:56.131 4500 TIP 440680 2711 6086872 2024-02-27 16:38:38.235 2024-02-27 16:38:38.235 500 FEE 440575 17513 6086873 2024-02-27 16:38:38.235 2024-02-27 16:38:38.235 4500 TIP 440575 9349 6086874 2024-02-27 16:38:38.79 2024-02-27 16:38:38.79 500 FEE 440575 9833 6086875 2024-02-27 16:38:38.79 2024-02-27 16:38:38.79 4500 TIP 440575 21281 6086902 2024-02-27 16:39:38.264 2024-02-27 16:39:38.264 4000 FEE 440725 14489 6086903 2024-02-27 16:39:38.264 2024-02-27 16:39:38.264 36000 TIP 440725 18717 6086905 2024-02-27 16:40:09.758 2024-02-27 16:40:09.758 1000 POLL 440725 20310 6086916 2024-02-27 16:41:24.535 2024-02-27 16:41:24.535 100 FEE 432402 8508 6086917 2024-02-27 16:41:24.535 2024-02-27 16:41:24.535 900 TIP 432402 17148 6086939 2024-02-27 16:41:56.183 2024-02-27 16:41:56.183 1000 FEE 440748 14552 6086940 2024-02-27 16:41:56.183 2024-02-27 16:41:56.183 9000 TIP 440748 21088 6086941 2024-02-27 16:41:56.565 2024-02-27 16:41:56.565 1000 FEE 440748 641 6086942 2024-02-27 16:41:56.565 2024-02-27 16:41:56.565 9000 TIP 440748 10013 6086945 2024-02-27 16:41:57.258 2024-02-27 16:41:57.258 1000 FEE 440748 20245 6086946 2024-02-27 16:41:57.258 2024-02-27 16:41:57.258 9000 TIP 440748 19622 6086956 2024-02-27 16:42:07.797 2024-02-27 16:42:07.797 1000 FEE 440775 5175 6086963 2024-02-27 16:42:11.721 2024-02-27 16:42:11.721 7700 FEE 440768 1647 6086964 2024-02-27 16:42:11.721 2024-02-27 16:42:11.721 69300 TIP 440768 9349 6087067 2024-02-27 16:45:23.376 2024-02-27 16:45:23.376 100 FEE 440554 20710 6087068 2024-02-27 16:45:23.376 2024-02-27 16:45:23.376 900 TIP 440554 963 6087071 2024-02-27 16:45:24.289 2024-02-27 16:45:24.289 100 FEE 440554 21573 6087072 2024-02-27 16:45:24.289 2024-02-27 16:45:24.289 900 TIP 440554 1571 6087083 2024-02-27 16:45:27.732 2024-02-27 16:45:27.732 100 FEE 440714 9346 6087084 2024-02-27 16:45:27.732 2024-02-27 16:45:27.732 900 TIP 440714 5455 6087099 2024-02-27 16:45:59.645 2024-02-27 16:45:59.645 2700 FEE 440727 768 6087100 2024-02-27 16:45:59.645 2024-02-27 16:45:59.645 24300 TIP 440727 21416 6087116 2024-02-27 16:46:30.34 2024-02-27 16:46:30.34 21800 FEE 440728 1122 6087117 2024-02-27 16:46:30.34 2024-02-27 16:46:30.34 196200 TIP 440728 7558 6087166 2024-02-27 16:50:11.961 2024-02-27 16:50:11.961 0 FEE 440790 10493 6087167 2024-02-27 16:50:24.506 2024-02-27 16:50:24.506 10000 FEE 440792 2010 6087173 2024-02-27 16:51:46.814 2024-02-27 16:51:46.814 7700 FEE 440791 12188 6087174 2024-02-27 16:51:46.814 2024-02-27 16:51:46.814 69300 TIP 440791 21599 6087180 2024-02-27 16:52:34.539 2024-02-27 16:52:34.539 1000 FEE 440794 19906 6087182 2024-02-27 16:53:38.202 2024-02-27 16:53:38.202 10000 FEE 440795 20964 6087194 2024-02-27 16:55:56.675 2024-02-27 16:55:56.675 7000 FEE 440797 2329 6087196 2024-02-27 16:56:09.961 2024-02-27 16:56:09.961 0 FEE 440787 11192 6087208 2024-02-27 16:58:03.88 2024-02-27 16:58:03.88 1000 FEE 440800 1094 6087238 2024-02-27 16:59:37.569 2024-02-27 16:59:37.569 800 FEE 440622 20018 6087239 2024-02-27 16:59:37.569 2024-02-27 16:59:37.569 7200 TIP 440622 1478 6087240 2024-02-27 16:59:37.791 2024-02-27 16:59:37.791 800 FEE 440622 12265 6087241 2024-02-27 16:59:37.791 2024-02-27 16:59:37.791 7200 TIP 440622 18264 6087268 2024-02-27 17:00:38.144 2024-02-27 17:00:38.144 6900 FEE 440775 1471 6087269 2024-02-27 17:00:38.144 2024-02-27 17:00:38.144 62100 TIP 440775 18235 6087274 2024-02-27 17:00:50.36 2024-02-27 17:00:50.36 500 FEE 440797 16432 6086348 2024-02-27 16:00:15.082 2024-02-27 16:00:15.082 1000 FEE 439994 6137 6086349 2024-02-27 16:00:15.082 2024-02-27 16:00:15.082 9000 TIP 439994 18453 6086354 2024-02-27 16:00:16.025 2024-02-27 16:00:16.025 1000 FEE 439994 8173 6086355 2024-02-27 16:00:16.025 2024-02-27 16:00:16.025 9000 TIP 439994 20120 6086376 2024-02-27 16:00:49.444 2024-02-27 16:00:49.444 1600 FEE 440711 1519 6086377 2024-02-27 16:00:49.444 2024-02-27 16:00:49.444 14400 TIP 440711 21458 6086402 2024-02-27 16:01:01.947 2024-02-27 16:01:01.947 2100 FEE 440561 621 6086403 2024-02-27 16:01:01.947 2024-02-27 16:01:01.947 18900 TIP 440561 18865 6086419 2024-02-27 16:02:29.074 2024-02-27 16:02:29.074 1000 FEE 440719 6594 6086422 2024-02-27 16:02:52.367 2024-02-27 16:02:52.367 1000 FEE 440721 19158 6086429 2024-02-27 16:03:21.784 2024-02-27 16:03:21.784 1000 FEE 439368 19910 6086430 2024-02-27 16:03:21.784 2024-02-27 16:03:21.784 9000 TIP 439368 19806 6086439 2024-02-27 16:04:38.395 2024-02-27 16:04:38.395 1000 FEE 440722 5942 6086462 2024-02-27 16:08:06.719 2024-02-27 16:08:06.719 6900 FEE 440725 4118 6086463 2024-02-27 16:08:06.719 2024-02-27 16:08:06.719 62100 TIP 440725 626 6086476 2024-02-27 16:08:57.956 2024-02-27 16:08:57.956 6600 FEE 440725 12222 6086477 2024-02-27 16:08:57.956 2024-02-27 16:08:57.956 59400 TIP 440725 20871 6086479 2024-02-27 16:09:06.218 2024-02-27 16:09:06.218 10000 FEE 440727 2620 6086492 2024-02-27 16:10:01.584 2024-02-27 16:10:01.584 3000 FEE 440727 694 6086493 2024-02-27 16:10:01.584 2024-02-27 16:10:01.584 27000 TIP 440727 19615 6086495 2024-02-27 16:10:07.541 2024-02-27 16:10:07.541 10000 FEE 440692 18139 6086496 2024-02-27 16:10:07.541 2024-02-27 16:10:07.541 90000 TIP 440692 917 6086497 2024-02-27 16:10:58.235 2024-02-27 16:10:58.235 6900 FEE 440729 1620 6086498 2024-02-27 16:10:58.235 2024-02-27 16:10:58.235 62100 TIP 440729 18705 6086509 2024-02-27 16:12:00.244 2024-02-27 16:12:00.244 100 FEE 440725 18539 6086510 2024-02-27 16:12:00.244 2024-02-27 16:12:00.244 900 TIP 440725 9078 6086516 2024-02-27 16:12:08.162 2024-02-27 16:12:08.162 9000 FEE 440725 8176 6086517 2024-02-27 16:12:08.162 2024-02-27 16:12:08.162 81000 TIP 440725 21437 6086519 2024-02-27 16:12:22.155 2024-02-27 16:12:22.155 1000 FEE 440733 21393 6086535 2024-02-27 16:14:18.566 2024-02-27 16:14:18.566 2100 FEE 440663 946 6086536 2024-02-27 16:14:18.566 2024-02-27 16:14:18.566 18900 TIP 440663 1047 6086541 2024-02-27 16:14:37.986 2024-02-27 16:14:37.986 1000 FEE 440737 658 6086545 2024-02-27 16:15:15.109 2024-02-27 16:15:15.109 1000 FEE 440738 15147 6086553 2024-02-27 16:16:24.453 2024-02-27 16:16:24.453 0 FEE 440739 18402 6086571 2024-02-27 16:17:11.981 2024-02-27 16:17:11.981 6900 FEE 440739 3304 6086572 2024-02-27 16:17:11.981 2024-02-27 16:17:11.981 62100 TIP 440739 1038 6086577 2024-02-27 16:17:38.629 2024-02-27 16:17:38.629 2100 FEE 440664 9844 6086578 2024-02-27 16:17:38.629 2024-02-27 16:17:38.629 18900 TIP 440664 19622 6086598 2024-02-27 16:22:24.47 2024-02-27 16:22:24.47 2100 FEE 438933 19826 6086599 2024-02-27 16:22:24.47 2024-02-27 16:22:24.47 18900 TIP 438933 19087 6086601 2024-02-27 16:22:27.072 2024-02-27 16:22:27.072 1000 FEE 440744 20889 6086606 2024-02-27 16:22:49.095 2024-02-27 16:22:49.095 3100 FEE 440733 20891 6086607 2024-02-27 16:22:49.095 2024-02-27 16:22:49.095 27900 TIP 440733 16717 6086615 2024-02-27 16:23:30.763 2024-02-27 16:23:30.763 1000 FEE 440745 4074 6086622 2024-02-27 16:25:06.852 2024-02-27 16:25:06.852 1000 FEE 440729 16542 6086623 2024-02-27 16:25:06.852 2024-02-27 16:25:06.852 9000 TIP 440729 1605 6086634 2024-02-27 16:25:13.537 2024-02-27 16:25:13.537 27900 FEE 440725 624 6086635 2024-02-27 16:25:13.537 2024-02-27 16:25:13.537 251100 TIP 440725 658 6086670 2024-02-27 16:27:18.428 2024-02-27 16:27:18.428 10000 FEE 440725 18452 6086671 2024-02-27 16:27:18.428 2024-02-27 16:27:18.428 90000 TIP 440725 14663 6086711 2024-02-27 16:30:40.719 2024-02-27 16:30:40.719 1000 FEE 440756 2056 6086712 2024-02-27 16:30:42.479 2024-02-27 16:30:42.479 1000 FEE 440729 10536 6086713 2024-02-27 16:30:42.479 2024-02-27 16:30:42.479 9000 TIP 440729 15159 6086742 2024-02-27 16:32:08.861 2024-02-27 16:32:08.861 1000 POLL 440725 21291 6086768 2024-02-27 16:33:50.302 2024-02-27 16:33:50.302 1000 POLL 440725 21079 6086769 2024-02-27 16:33:55.311 2024-02-27 16:33:55.311 1000 FEE 440725 21427 6086770 2024-02-27 16:33:55.311 2024-02-27 16:33:55.311 9000 TIP 440725 21527 6086772 2024-02-27 16:34:21.348 2024-02-27 16:34:21.348 100 FEE 440739 1985 6086773 2024-02-27 16:34:21.348 2024-02-27 16:34:21.348 900 TIP 440739 20258 6086774 2024-02-27 16:34:21.527 2024-02-27 16:34:21.527 900 FEE 440739 16126 6086352 2024-02-27 16:00:15.63 2024-02-27 16:00:15.63 1000 FEE 439994 15544 6086353 2024-02-27 16:00:15.63 2024-02-27 16:00:15.63 9000 TIP 439994 9246 6086388 2024-02-27 16:00:58.943 2024-02-27 16:00:58.943 1000 FEE 440194 10283 6086389 2024-02-27 16:00:58.943 2024-02-27 16:00:58.943 9000 TIP 440194 21014 6086404 2024-02-27 16:01:04.632 2024-02-27 16:01:04.632 2100 FEE 440684 5387 6086405 2024-02-27 16:01:04.632 2024-02-27 16:01:04.632 18900 TIP 440684 4654 6086415 2024-02-27 16:01:40.707 2024-02-27 16:01:40.707 2100 FEE 440627 822 6086416 2024-02-27 16:01:40.707 2024-02-27 16:01:40.707 18900 TIP 440627 16536 6086418 2024-02-27 16:02:15.202 2024-02-27 16:02:15.202 1000 FEE 440718 1584 6086433 2024-02-27 16:03:22.68 2024-02-27 16:03:22.68 1000 FEE 439368 21352 6086434 2024-02-27 16:03:22.68 2024-02-27 16:03:22.68 9000 TIP 439368 626 6086435 2024-02-27 16:03:23.117 2024-02-27 16:03:23.117 1000 FEE 439368 17046 6086436 2024-02-27 16:03:23.117 2024-02-27 16:03:23.117 9000 TIP 439368 21072 6086441 2024-02-27 16:05:14.924 2024-02-27 16:05:14.924 1100 FEE 440622 20775 6086442 2024-02-27 16:05:14.924 2024-02-27 16:05:14.924 9900 TIP 440622 1003 6086446 2024-02-27 16:05:51.237 2024-02-27 16:05:51.237 2100 FEE 440587 16432 6086447 2024-02-27 16:05:51.237 2024-02-27 16:05:51.237 18900 TIP 440587 14545 6086457 2024-02-27 16:07:12.927 2024-02-27 16:07:12.927 0 FEE 440716 4574 6086466 2024-02-27 16:08:10.316 2024-02-27 16:08:10.316 1000 FEE 440608 12261 6086467 2024-02-27 16:08:10.316 2024-02-27 16:08:10.316 9000 TIP 440608 5578 6086482 2024-02-27 16:09:44.348 2024-02-27 16:09:44.348 1000 FEE 439446 3709 6086483 2024-02-27 16:09:44.348 2024-02-27 16:09:44.348 9000 TIP 439446 705 6086486 2024-02-27 16:09:44.991 2024-02-27 16:09:44.991 1000 FEE 439446 21577 6086487 2024-02-27 16:09:44.991 2024-02-27 16:09:44.991 9000 TIP 439446 1429 6086505 2024-02-27 16:11:34.7 2024-02-27 16:11:34.7 13800 FEE 440575 19033 6086506 2024-02-27 16:11:34.7 2024-02-27 16:11:34.7 124200 TIP 440575 685 6086511 2024-02-27 16:12:00.421 2024-02-27 16:12:00.421 900 FEE 440725 13100 6086512 2024-02-27 16:12:00.421 2024-02-27 16:12:00.421 8100 TIP 440725 21369 6086540 2024-02-27 16:14:34.416 2024-02-27 16:14:34.416 1000 FEE 440736 9342 6086565 2024-02-27 16:17:07.569 2024-02-27 16:17:07.569 1000 FEE 440386 2961 6086566 2024-02-27 16:17:07.569 2024-02-27 16:17:07.569 9000 TIP 440386 11395 6086575 2024-02-27 16:17:29.653 2024-02-27 16:17:29.653 4200 FEE 440622 1785 6086576 2024-02-27 16:17:29.653 2024-02-27 16:17:29.653 37800 TIP 440622 7668 6086589 2024-02-27 16:20:12.591 2024-02-27 16:20:12.591 1600 FEE 440725 825 6086590 2024-02-27 16:20:12.591 2024-02-27 16:20:12.591 14400 TIP 440725 20102 6086592 2024-02-27 16:21:03.809 2024-02-27 16:21:03.809 1000 POLL 440725 8916 6086593 2024-02-27 16:21:29.145 2024-02-27 16:21:29.145 3100 FEE 440726 2703 6086594 2024-02-27 16:21:29.145 2024-02-27 16:21:29.145 27900 TIP 440726 17693 6086620 2024-02-27 16:25:06.588 2024-02-27 16:25:06.588 1000 FEE 440729 8380 6086621 2024-02-27 16:25:06.588 2024-02-27 16:25:06.588 9000 TIP 440729 18280 6086632 2024-02-27 16:25:12.447 2024-02-27 16:25:12.447 3100 FEE 440725 994 6086633 2024-02-27 16:25:12.447 2024-02-27 16:25:12.447 27900 TIP 440725 14278 6086676 2024-02-27 16:28:14.328 2024-02-27 16:28:14.328 1000 FEE 440752 21605 6086680 2024-02-27 16:28:29.235 2024-02-27 16:28:29.235 3000 FEE 440725 1286 6086681 2024-02-27 16:28:29.235 2024-02-27 16:28:29.235 27000 TIP 440725 18476 6086689 2024-02-27 16:29:47.288 2024-02-27 16:29:47.288 900 FEE 440681 18877 6086690 2024-02-27 16:29:47.288 2024-02-27 16:29:47.288 8100 TIP 440681 8004 6086695 2024-02-27 16:30:15.972 2024-02-27 16:30:15.972 1000 FEE 440754 13622 6086696 2024-02-27 16:30:16.057 2024-02-27 16:30:16.057 27900 FEE 440751 5578 6086697 2024-02-27 16:30:16.057 2024-02-27 16:30:16.057 251100 TIP 440751 15367 6086702 2024-02-27 16:30:18.678 2024-02-27 16:30:18.678 1000 FEE 440746 13204 6086703 2024-02-27 16:30:18.678 2024-02-27 16:30:18.678 9000 TIP 440746 1209 6086741 2024-02-27 16:32:06.367 2024-02-27 16:32:06.367 0 FEE 60106 16754 6086743 2024-02-27 16:32:10.299 2024-02-27 16:32:10.299 1000 FEE 440727 3439 6086744 2024-02-27 16:32:10.299 2024-02-27 16:32:10.299 9000 TIP 440727 9 6086796 2024-02-27 16:35:23.173 2024-02-27 16:35:23.173 500 FEE 440725 12175 6086797 2024-02-27 16:35:23.173 2024-02-27 16:35:23.173 4500 TIP 440725 14195 6086808 2024-02-27 16:35:24.919 2024-02-27 16:35:24.919 500 FEE 440725 15594 6086809 2024-02-27 16:35:24.919 2024-02-27 16:35:24.919 4500 TIP 440725 20854 6086832 2024-02-27 16:37:40.587 2024-02-27 16:37:40.587 500 FEE 440587 18862 6086833 2024-02-27 16:37:40.587 2024-02-27 16:37:40.587 4500 TIP 440587 18270 6086851 2024-02-27 16:37:56.046 2024-02-27 16:37:56.046 500 FEE 440680 1092 6086852 2024-02-27 16:37:56.046 2024-02-27 16:37:56.046 4500 TIP 440680 999 6086866 2024-02-27 16:38:37.543 2024-02-27 16:38:37.543 500 FEE 440575 13378 6086867 2024-02-27 16:38:37.543 2024-02-27 16:38:37.543 4500 TIP 440575 16406 6086900 2024-02-27 16:39:33.606 2024-02-27 16:39:33.606 4000 FEE 440729 11716 6086901 2024-02-27 16:39:33.606 2024-02-27 16:39:33.606 36000 TIP 440729 17147 6086906 2024-02-27 16:40:15.725 2024-02-27 16:40:15.725 1000 FEE 440760 19463 6086907 2024-02-27 16:40:15.725 2024-02-27 16:40:15.725 9000 TIP 440760 2749 6086912 2024-02-27 16:40:39.261 2024-02-27 16:40:39.261 1000 FEE 440771 8535 6086951 2024-02-27 16:42:00.85 2024-02-27 16:42:00.85 1000 FEE 440767 15139 6086952 2024-02-27 16:42:00.85 2024-02-27 16:42:00.85 9000 TIP 440767 2022 6086957 2024-02-27 16:42:08.417 2024-02-27 16:42:08.417 500 FEE 440678 12277 6086958 2024-02-27 16:42:08.417 2024-02-27 16:42:08.417 4500 TIP 440678 18016 6086959 2024-02-27 16:42:08.789 2024-02-27 16:42:08.789 500 FEE 440678 20018 6086960 2024-02-27 16:42:08.789 2024-02-27 16:42:08.789 4500 TIP 440678 2710 6086982 2024-02-27 16:42:27.124 2024-02-27 16:42:27.124 500 FEE 440739 4570 6086983 2024-02-27 16:42:27.124 2024-02-27 16:42:27.124 4500 TIP 440739 8916 6087022 2024-02-27 16:42:52.695 2024-02-27 16:42:52.695 1000 FEE 440770 1713 6087023 2024-02-27 16:42:52.695 2024-02-27 16:42:52.695 9000 TIP 440770 1697 6087030 2024-02-27 16:43:19.32 2024-02-27 16:43:19.32 100 FEE 440776 16424 6087031 2024-02-27 16:43:19.32 2024-02-27 16:43:19.32 900 TIP 440776 15180 6087049 2024-02-27 16:44:51.208 2024-02-27 16:44:51.208 10000 FEE 440781 20602 6087061 2024-02-27 16:45:13.409 2024-02-27 16:45:13.409 100 FEE 440535 19501 6087062 2024-02-27 16:45:13.409 2024-02-27 16:45:13.409 900 TIP 440535 5758 6087063 2024-02-27 16:45:13.617 2024-02-27 16:45:13.617 2100 FEE 440764 5499 6087064 2024-02-27 16:45:13.617 2024-02-27 16:45:13.617 18900 TIP 440764 7674 6087065 2024-02-27 16:45:22.074 2024-02-27 16:45:22.074 100 FEE 440714 20006 6087066 2024-02-27 16:45:22.074 2024-02-27 16:45:22.074 900 TIP 440714 15159 6087095 2024-02-27 16:45:53.677 2024-02-27 16:45:53.677 300 FEE 440044 21446 6087096 2024-02-27 16:45:53.677 2024-02-27 16:45:53.677 2700 TIP 440044 3979 6087103 2024-02-27 16:45:59.981 2024-02-27 16:45:59.981 2700 FEE 440727 21374 6087104 2024-02-27 16:45:59.981 2024-02-27 16:45:59.981 24300 TIP 440727 1733 6087114 2024-02-27 16:46:24.006 2024-02-27 16:46:24.006 2700 FEE 440753 1471 6087115 2024-02-27 16:46:24.006 2024-02-27 16:46:24.006 24300 TIP 440753 21369 6087153 2024-02-27 16:48:54.244 2024-02-27 16:48:54.244 1000 FEE 440783 16789 6087154 2024-02-27 16:48:54.244 2024-02-27 16:48:54.244 9000 TIP 440783 21063 6087159 2024-02-27 16:49:00.361 2024-02-27 16:49:00.361 1000 FEE 440788 4313 6087171 2024-02-27 16:51:46.631 2024-02-27 16:51:46.631 7700 FEE 440791 15762 6087172 2024-02-27 16:51:46.631 2024-02-27 16:51:46.631 69300 TIP 440791 19105 6087187 2024-02-27 16:54:18.591 2024-02-27 16:54:18.591 1000 FEE 440785 19243 6086367 2024-02-27 16:00:43.929 2024-02-27 16:00:43.929 9000 TIP 440180 836 6086390 2024-02-27 16:01:00.189 2024-02-27 16:01:00.189 1000 FEE 440500 1772 6086391 2024-02-27 16:01:00.189 2024-02-27 16:01:00.189 9000 TIP 440500 20433 6086394 2024-02-27 16:01:00.767 2024-02-27 16:01:00.767 1000 FEE 440500 18262 6086395 2024-02-27 16:01:00.767 2024-02-27 16:01:00.767 9000 TIP 440500 10862 6086398 2024-02-27 16:01:01.333 2024-02-27 16:01:01.333 1000 FEE 440500 6164 6086399 2024-02-27 16:01:01.333 2024-02-27 16:01:01.333 9000 TIP 440500 21491 6086410 2024-02-27 16:01:33.254 2024-02-27 16:01:33.254 2100 FEE 440623 12272 6086411 2024-02-27 16:01:33.254 2024-02-27 16:01:33.254 18900 TIP 440623 18615 6086420 2024-02-27 16:02:45.286 2024-02-27 16:02:45.286 0 FEE 440719 15491 6086438 2024-02-27 16:04:24.343 2024-02-27 16:04:24.343 0 FEE 440713 3544 6086464 2024-02-27 16:08:09.737 2024-02-27 16:08:09.737 1000 FEE 440608 886 6086465 2024-02-27 16:08:09.737 2024-02-27 16:08:09.737 9000 TIP 440608 19462 6086484 2024-02-27 16:09:44.689 2024-02-27 16:09:44.689 1000 FEE 439446 19259 6086485 2024-02-27 16:09:44.689 2024-02-27 16:09:44.689 9000 TIP 439446 19021 6086507 2024-02-27 16:11:51.018 2024-02-27 16:11:51.018 1000 FEE 440725 21395 6086508 2024-02-27 16:11:51.018 2024-02-27 16:11:51.018 9000 TIP 440725 4035 6086524 2024-02-27 16:12:25.922 2024-02-27 16:12:25.922 1000 FEE 439380 687 6086525 2024-02-27 16:12:25.922 2024-02-27 16:12:25.922 9000 TIP 439380 999 6086528 2024-02-27 16:12:26.77 2024-02-27 16:12:26.77 1000 FEE 439380 15408 6086529 2024-02-27 16:12:26.77 2024-02-27 16:12:26.77 9000 TIP 439380 20523 6086560 2024-02-27 16:16:29.111 2024-02-27 16:16:29.111 100 FEE 440622 13547 6086561 2024-02-27 16:16:29.111 2024-02-27 16:16:29.111 900 TIP 440622 15890 6086567 2024-02-27 16:17:08.615 2024-02-27 16:17:08.615 1000 FEE 440663 7983 6086568 2024-02-27 16:17:08.615 2024-02-27 16:17:08.615 9000 TIP 440663 12368 6086581 2024-02-27 16:17:50.142 2024-02-27 16:17:50.142 0 FEE 440732 21178 6086584 2024-02-27 16:19:04.965 2024-02-27 16:19:04.965 1000 FEE 440741 10469 6086628 2024-02-27 16:25:07.534 2024-02-27 16:25:07.534 1000 FEE 440729 17183 6086629 2024-02-27 16:25:07.534 2024-02-27 16:25:07.534 9000 TIP 440729 15103 6086636 2024-02-27 16:25:17.801 2024-02-27 16:25:17.801 1000 POLL 440725 8726 6086648 2024-02-27 16:26:22.054 2024-02-27 16:26:22.054 2100 FEE 439723 691 6086649 2024-02-27 16:26:22.054 2024-02-27 16:26:22.054 18900 TIP 439723 21131 6086662 2024-02-27 16:26:26.621 2024-02-27 16:26:26.621 1000 FEE 440725 721 6086663 2024-02-27 16:26:26.621 2024-02-27 16:26:26.621 9000 TIP 440725 21344 6086682 2024-02-27 16:28:46.488 2024-02-27 16:28:46.488 3100 FEE 440751 12976 6086683 2024-02-27 16:28:46.488 2024-02-27 16:28:46.488 27900 TIP 440751 9036 6086698 2024-02-27 16:30:18.031 2024-02-27 16:30:18.031 1000 FEE 440746 761 6086699 2024-02-27 16:30:18.031 2024-02-27 16:30:18.031 9000 TIP 440746 18452 6086709 2024-02-27 16:30:24.648 2024-02-27 16:30:24.648 27900 FEE 440748 661 6086710 2024-02-27 16:30:24.648 2024-02-27 16:30:24.648 251100 TIP 440748 7766 6086762 2024-02-27 16:33:25.816 2024-02-27 16:33:25.816 1000 FEE 440762 1726 6086763 2024-02-27 16:33:25.816 2024-02-27 16:33:25.816 9000 TIP 440762 1576 6086781 2024-02-27 16:34:49.418 2024-02-27 16:34:49.418 1000 FEE 440750 10016 6086782 2024-02-27 16:34:49.418 2024-02-27 16:34:49.418 9000 TIP 440750 11328 6086783 2024-02-27 16:34:51.627 2024-02-27 16:34:51.627 1000 FEE 440731 5085 6086784 2024-02-27 16:34:51.627 2024-02-27 16:34:51.627 9000 TIP 440731 10821 6086798 2024-02-27 16:35:23.269 2024-02-27 16:35:23.269 500 FEE 440725 896 6086799 2024-02-27 16:35:23.269 2024-02-27 16:35:23.269 4500 TIP 440725 7119 6086818 2024-02-27 16:37:21.582 2024-02-27 16:37:21.582 1000 FEE 440760 15243 6086819 2024-02-27 16:37:21.582 2024-02-27 16:37:21.582 9000 TIP 440760 632 6086828 2024-02-27 16:37:32.143 2024-02-27 16:37:32.143 500 FEE 440542 21201 6086829 2024-02-27 16:37:32.143 2024-02-27 16:37:32.143 4500 TIP 440542 9906 6086862 2024-02-27 16:38:18.976 2024-02-27 16:38:18.976 500 FEE 440615 21201 6086863 2024-02-27 16:38:18.976 2024-02-27 16:38:18.976 4500 TIP 440615 18454 6086868 2024-02-27 16:38:37.943 2024-02-27 16:38:37.943 500 FEE 440575 20602 6086869 2024-02-27 16:38:37.943 2024-02-27 16:38:37.943 4500 TIP 440575 6526 6086918 2024-02-27 16:41:36.179 2024-02-27 16:41:36.179 1000 FEE 440725 21422 6086919 2024-02-27 16:41:36.179 2024-02-27 16:41:36.179 9000 TIP 440725 9346 6087000 2024-02-27 16:42:41.084 2024-02-27 16:42:41.084 500 FEE 440592 1488 6087001 2024-02-27 16:42:41.084 2024-02-27 16:42:41.084 4500 TIP 440592 8176 6087004 2024-02-27 16:42:47.217 2024-02-27 16:42:47.217 1000 FEE 440766 20495 6087005 2024-02-27 16:42:47.217 2024-02-27 16:42:47.217 9000 TIP 440766 15115 6087012 2024-02-27 16:42:48.854 2024-02-27 16:42:48.854 1000 FEE 440766 11522 6087013 2024-02-27 16:42:48.854 2024-02-27 16:42:48.854 9000 TIP 440766 9529 6087014 2024-02-27 16:42:49.402 2024-02-27 16:42:49.402 1000 FEE 440766 882 6087015 2024-02-27 16:42:49.402 2024-02-27 16:42:49.402 9000 TIP 440766 732 6087051 2024-02-27 16:45:04.046 2024-02-27 16:45:04.046 100 FEE 440670 11897 6087052 2024-02-27 16:45:04.046 2024-02-27 16:45:04.046 900 TIP 440670 3400 6087073 2024-02-27 16:45:24.658 2024-02-27 16:45:24.658 100 FEE 440554 18659 6087074 2024-02-27 16:45:24.658 2024-02-27 16:45:24.658 900 TIP 440554 15119 6087079 2024-02-27 16:45:26.336 2024-02-27 16:45:26.336 100 FEE 440535 16965 6087080 2024-02-27 16:45:26.336 2024-02-27 16:45:26.336 900 TIP 440535 19034 6087110 2024-02-27 16:46:21.525 2024-02-27 16:46:21.525 3100 FEE 440633 18641 6087111 2024-02-27 16:46:21.525 2024-02-27 16:46:21.525 27900 TIP 440633 19151 6087127 2024-02-27 16:46:47.758 2024-02-27 16:46:47.758 100 FEE 440623 19668 6087128 2024-02-27 16:46:47.758 2024-02-27 16:46:47.758 900 TIP 440623 2224 6087136 2024-02-27 16:46:53.793 2024-02-27 16:46:53.793 2700 FEE 440675 8269 6087137 2024-02-27 16:46:53.793 2024-02-27 16:46:53.793 24300 TIP 440675 20776 6087140 2024-02-27 16:46:56.847 2024-02-27 16:46:56.847 300 FEE 440290 21022 6087141 2024-02-27 16:46:56.847 2024-02-27 16:46:56.847 2700 TIP 440290 19640 6087147 2024-02-27 16:48:41.192 2024-02-27 16:48:41.192 7700 FEE 440785 17331 6087148 2024-02-27 16:48:41.192 2024-02-27 16:48:41.192 69300 TIP 440785 19502 6087190 2024-02-27 16:55:06.803 2024-02-27 16:55:06.803 0 FEE 440785 5444 6087197 2024-02-27 16:56:22.558 2024-02-27 16:56:22.558 100000 FEE 440798 4624 6087226 2024-02-27 16:59:19.886 2024-02-27 16:59:19.886 10000 FEE 440802 15544 6087232 2024-02-27 16:59:37.125 2024-02-27 16:59:37.125 800 FEE 440622 21472 6087233 2024-02-27 16:59:37.125 2024-02-27 16:59:37.125 7200 TIP 440622 1718 6087234 2024-02-27 16:59:37.183 2024-02-27 16:59:37.183 800 FEE 440622 19557 6087235 2024-02-27 16:59:37.183 2024-02-27 16:59:37.183 7200 TIP 440622 638 6087236 2024-02-27 16:59:37.36 2024-02-27 16:59:37.36 800 FEE 440622 11829 6087237 2024-02-27 16:59:37.36 2024-02-27 16:59:37.36 7200 TIP 440622 21063 6087247 2024-02-27 16:59:57.398 2024-02-27 16:59:57.398 1000 FEE 440506 9552 6087248 2024-02-27 16:59:57.398 2024-02-27 16:59:57.398 9000 TIP 440506 21048 6087259 2024-02-27 17:00:20.553 2024-02-27 17:00:20.553 6900 FEE 440474 8498 6087260 2024-02-27 17:00:20.553 2024-02-27 17:00:20.553 62100 TIP 440474 672 6087263 2024-02-27 17:00:27.66 2024-02-27 17:00:27.66 4000 FEE 440575 19662 6087264 2024-02-27 17:00:27.66 2024-02-27 17:00:27.66 36000 TIP 440575 18380 6087303 2024-02-27 17:04:28.619 2024-02-27 17:04:28.619 1000 FEE 440816 1092 6087304 2024-02-27 17:04:37.243 2024-02-27 17:04:37.243 1000 FEE 440808 831 6087305 2024-02-27 17:04:37.243 2024-02-27 17:04:37.243 9000 TIP 440808 1769 6087329 2024-02-27 17:06:43.349 2024-02-27 17:06:43.349 1000 FEE 440819 21374 6087339 2024-02-27 17:09:07.511 2024-02-27 17:09:07.511 700 FEE 440792 21048 6087340 2024-02-27 17:09:07.511 2024-02-27 17:09:07.511 6300 TIP 440792 14950 6086443 2024-02-27 16:05:38.221 2024-02-27 16:05:38.221 0 FEE 440716 15941 6086444 2024-02-27 16:05:50.318 2024-02-27 16:05:50.318 2100 FEE 440587 18736 6086445 2024-02-27 16:05:50.318 2024-02-27 16:05:50.318 18900 TIP 440587 2596 6086474 2024-02-27 16:08:20.421 2024-02-27 16:08:20.421 2100 FEE 440583 21019 6086475 2024-02-27 16:08:20.421 2024-02-27 16:08:20.421 18900 TIP 440583 2327 6086481 2024-02-27 16:09:22.085 2024-02-27 16:09:22.085 1000 FEE 440728 10849 6086522 2024-02-27 16:12:25.497 2024-02-27 16:12:25.497 1000 FEE 439380 18618 6086523 2024-02-27 16:12:25.497 2024-02-27 16:12:25.497 9000 TIP 439380 15594 6086546 2024-02-27 16:15:17.399 2024-02-27 16:15:17.399 7700 FEE 440731 8870 6086547 2024-02-27 16:15:17.399 2024-02-27 16:15:17.399 69300 TIP 440731 20892 6086554 2024-02-27 16:16:28.516 2024-02-27 16:16:28.516 100 FEE 440622 20326 6086555 2024-02-27 16:16:28.516 2024-02-27 16:16:28.516 900 TIP 440622 2780 6086556 2024-02-27 16:16:28.704 2024-02-27 16:16:28.704 100 FEE 440622 6700 6086557 2024-02-27 16:16:28.704 2024-02-27 16:16:28.704 900 TIP 440622 5597 6086617 2024-02-27 16:24:37.744 2024-02-27 16:24:37.744 1000 FEE 440746 19494 6086624 2024-02-27 16:25:07.07 2024-02-27 16:25:07.07 1000 FEE 440729 17212 6086625 2024-02-27 16:25:07.07 2024-02-27 16:25:07.07 9000 TIP 440729 16542 6086638 2024-02-27 16:25:37.6 2024-02-27 16:25:37.6 1000 FEE 440749 21393 6086656 2024-02-27 16:26:26.152 2024-02-27 16:26:26.152 1000 FEE 440725 18629 6086657 2024-02-27 16:26:26.152 2024-02-27 16:26:26.152 9000 TIP 440725 9026 6086720 2024-02-27 16:30:46.681 2024-02-27 16:30:46.681 1000 FEE 440743 6419 6086721 2024-02-27 16:30:46.681 2024-02-27 16:30:46.681 9000 TIP 440743 13132 6086724 2024-02-27 16:30:47.425 2024-02-27 16:30:47.425 1000 FEE 440743 21501 6086725 2024-02-27 16:30:47.425 2024-02-27 16:30:47.425 9000 TIP 440743 1105 6086736 2024-02-27 16:31:42.16 2024-02-27 16:31:42.16 1000 FEE 440759 6537 6086745 2024-02-27 16:32:11.232 2024-02-27 16:32:11.232 3100 FEE 440754 1890 6086746 2024-02-27 16:32:11.232 2024-02-27 16:32:11.232 27900 TIP 440754 12911 6086748 2024-02-27 16:32:41.686 2024-02-27 16:32:41.686 1000 FEE 440762 15115 6086749 2024-02-27 16:33:01.078 2024-02-27 16:33:01.078 1000 FEE 440763 2614 6086758 2024-02-27 16:33:25.105 2024-02-27 16:33:25.105 1000 FEE 440762 14545 6086759 2024-02-27 16:33:25.105 2024-02-27 16:33:25.105 9000 TIP 440762 21405 6086760 2024-02-27 16:33:25.44 2024-02-27 16:33:25.44 1000 FEE 440762 18170 6086761 2024-02-27 16:33:25.44 2024-02-27 16:33:25.44 9000 TIP 440762 1620 6086764 2024-02-27 16:33:26.185 2024-02-27 16:33:26.185 1000 FEE 440762 4538 6086765 2024-02-27 16:33:26.185 2024-02-27 16:33:26.185 9000 TIP 440762 2674 6086792 2024-02-27 16:35:21.653 2024-02-27 16:35:21.653 500 FEE 440725 18363 6086793 2024-02-27 16:35:21.653 2024-02-27 16:35:21.653 4500 TIP 440725 18930 6086824 2024-02-27 16:37:29.301 2024-02-27 16:37:29.301 500 FEE 440542 1647 6086825 2024-02-27 16:37:29.301 2024-02-27 16:37:29.301 4500 TIP 440542 8176 6086830 2024-02-27 16:37:40.335 2024-02-27 16:37:40.335 500 FEE 440587 12516 6086831 2024-02-27 16:37:40.335 2024-02-27 16:37:40.335 4500 TIP 440587 6555 6086849 2024-02-27 16:37:55.716 2024-02-27 16:37:55.716 500 FEE 440680 19303 6086850 2024-02-27 16:37:55.716 2024-02-27 16:37:55.716 4500 TIP 440680 2176 6086858 2024-02-27 16:38:13.223 2024-02-27 16:38:13.223 500 FEE 440680 8505 6086859 2024-02-27 16:38:13.223 2024-02-27 16:38:13.223 4500 TIP 440680 16336 6086876 2024-02-27 16:38:45.158 2024-02-27 16:38:45.158 500 FEE 440622 21387 6086877 2024-02-27 16:38:45.158 2024-02-27 16:38:45.158 4500 TIP 440622 2056 6086880 2024-02-27 16:38:46.78 2024-02-27 16:38:46.78 500 FEE 440622 21180 6086881 2024-02-27 16:38:46.78 2024-02-27 16:38:46.78 4500 TIP 440622 21509 6086922 2024-02-27 16:41:39.798 2024-02-27 16:41:39.798 1000 FEE 440772 19662 6086923 2024-02-27 16:41:41.617 2024-02-27 16:41:41.617 7700 FEE 440771 2789 6086924 2024-02-27 16:41:41.617 2024-02-27 16:41:41.617 69300 TIP 440771 21463 6086926 2024-02-27 16:41:45.026 2024-02-27 16:41:45.026 1000 FEE 440774 21274 6086929 2024-02-27 16:41:49.892 2024-02-27 16:41:49.892 500 FEE 440681 21145 6086930 2024-02-27 16:41:49.892 2024-02-27 16:41:49.892 4500 TIP 440681 20911 6086931 2024-02-27 16:41:50.16 2024-02-27 16:41:50.16 1000 FEE 440760 15463 6086932 2024-02-27 16:41:50.16 2024-02-27 16:41:50.16 9000 TIP 440760 13177 6086943 2024-02-27 16:41:56.951 2024-02-27 16:41:56.951 1000 FEE 440748 17237 6086944 2024-02-27 16:41:56.951 2024-02-27 16:41:56.951 9000 TIP 440748 15697 6086961 2024-02-27 16:42:09.367 2024-02-27 16:42:09.367 7700 FEE 440772 11821 6086962 2024-02-27 16:42:09.367 2024-02-27 16:42:09.367 69300 TIP 440772 19044 6086965 2024-02-27 16:42:11.781 2024-02-27 16:42:11.781 1000 FEE 440776 19839 6086970 2024-02-27 16:42:22.882 2024-02-27 16:42:22.882 500 FEE 440729 20058 6086971 2024-02-27 16:42:22.882 2024-02-27 16:42:22.882 4500 TIP 440729 1741 6086976 2024-02-27 16:42:24.908 2024-02-27 16:42:24.908 9000 FEE 440520 624 6086977 2024-02-27 16:42:24.908 2024-02-27 16:42:24.908 81000 TIP 440520 20981 6086978 2024-02-27 16:42:26.719 2024-02-27 16:42:26.719 500 FEE 440739 9177 6086979 2024-02-27 16:42:26.719 2024-02-27 16:42:26.719 4500 TIP 440739 20327 6086986 2024-02-27 16:42:29.116 2024-02-27 16:42:29.116 500 FEE 440739 12959 6086987 2024-02-27 16:42:29.116 2024-02-27 16:42:29.116 4500 TIP 440739 11522 6086988 2024-02-27 16:42:29.537 2024-02-27 16:42:29.537 500 FEE 440739 20970 6086989 2024-02-27 16:42:29.537 2024-02-27 16:42:29.537 4500 TIP 440739 699 6086998 2024-02-27 16:42:40.758 2024-02-27 16:42:40.758 500 FEE 440592 20969 6086999 2024-02-27 16:42:40.758 2024-02-27 16:42:40.758 4500 TIP 440592 782 6087035 2024-02-27 16:43:47.703 2024-02-27 16:43:47.703 1000 FEE 440725 21424 6087036 2024-02-27 16:43:47.703 2024-02-27 16:43:47.703 9000 TIP 440725 14122 6086570 2024-02-27 16:17:09.535 2024-02-27 16:17:09.535 9000 TIP 440623 2674 6086580 2024-02-27 16:17:45.071 2024-02-27 16:17:45.071 0 FEE 440729 21057 6086586 2024-02-27 16:19:40.008 2024-02-27 16:19:40.008 1000 POLL 440725 2042 6086604 2024-02-27 16:22:40.52 2024-02-27 16:22:40.52 21000 FEE 440724 732 6086605 2024-02-27 16:22:40.52 2024-02-27 16:22:40.52 189000 TIP 440724 8448 6086613 2024-02-27 16:23:28.478 2024-02-27 16:23:28.478 6900 FEE 440725 2402 6086614 2024-02-27 16:23:28.478 2024-02-27 16:23:28.478 62100 TIP 440725 20015 6086631 2024-02-27 16:25:11.841 2024-02-27 16:25:11.841 1000 FEE 440747 19890 6086650 2024-02-27 16:26:25.644 2024-02-27 16:26:25.644 1000 FEE 440725 21119 6086651 2024-02-27 16:26:25.644 2024-02-27 16:26:25.644 9000 TIP 440725 626 6086654 2024-02-27 16:26:25.954 2024-02-27 16:26:25.954 1000 FEE 440725 15146 6086655 2024-02-27 16:26:25.954 2024-02-27 16:26:25.954 9000 TIP 440725 21493 6086664 2024-02-27 16:26:31.257 2024-02-27 16:26:31.257 7700 FEE 440750 4415 6086665 2024-02-27 16:26:31.257 2024-02-27 16:26:31.257 69300 TIP 440750 699 6086672 2024-02-27 16:27:18.692 2024-02-27 16:27:18.692 3100 FEE 440748 20120 6086673 2024-02-27 16:27:18.692 2024-02-27 16:27:18.692 27900 TIP 440748 694 6086678 2024-02-27 16:28:21.836 2024-02-27 16:28:21.836 7700 FEE 440749 16562 6086679 2024-02-27 16:28:21.836 2024-02-27 16:28:21.836 69300 TIP 440749 19329 6086691 2024-02-27 16:29:48.331 2024-02-27 16:29:48.331 9000 FEE 440681 19462 6086692 2024-02-27 16:29:48.331 2024-02-27 16:29:48.331 81000 TIP 440681 9845 6086700 2024-02-27 16:30:18.298 2024-02-27 16:30:18.298 1000 FEE 440746 4126 6086701 2024-02-27 16:30:18.298 2024-02-27 16:30:18.298 9000 TIP 440746 15690 6086704 2024-02-27 16:30:19.12 2024-02-27 16:30:19.12 1000 FEE 440746 12721 6086705 2024-02-27 16:30:19.12 2024-02-27 16:30:19.12 9000 TIP 440746 15063 6086722 2024-02-27 16:30:47.001 2024-02-27 16:30:47.001 1000 FEE 440743 19806 6086723 2024-02-27 16:30:47.001 2024-02-27 16:30:47.001 9000 TIP 440743 720 6086728 2024-02-27 16:30:57.474 2024-02-27 16:30:57.474 2100 FEE 440744 16432 6086729 2024-02-27 16:30:57.474 2024-02-27 16:30:57.474 18900 TIP 440744 4989 6086734 2024-02-27 16:31:18.364 2024-02-27 16:31:18.364 0 FEE 440755 5661 6086735 2024-02-27 16:31:19.2 2024-02-27 16:31:19.2 1000 FEE 440758 15560 6086737 2024-02-27 16:31:46.654 2024-02-27 16:31:46.654 0 FEE 440755 19021 6086756 2024-02-27 16:33:21.8 2024-02-27 16:33:21.8 1000 FEE 440730 18449 6086757 2024-02-27 16:33:21.8 2024-02-27 16:33:21.8 9000 TIP 440730 19652 6086778 2024-02-27 16:34:24.051 2024-02-27 16:34:24.051 9000 FEE 440739 15160 6086779 2024-02-27 16:34:24.051 2024-02-27 16:34:24.051 81000 TIP 440739 5637 6086787 2024-02-27 16:34:58.492 2024-02-27 16:34:58.492 1000 FEE 440747 12819 6086788 2024-02-27 16:34:58.492 2024-02-27 16:34:58.492 9000 TIP 440747 18816 6086802 2024-02-27 16:35:23.661 2024-02-27 16:35:23.661 500 FEE 440725 20412 6086803 2024-02-27 16:35:23.661 2024-02-27 16:35:23.661 4500 TIP 440725 2609 6086837 2024-02-27 16:37:40.999 2024-02-27 16:37:40.999 500 FEE 440587 21421 6086838 2024-02-27 16:37:40.999 2024-02-27 16:37:40.999 4500 TIP 440587 16230 6086847 2024-02-27 16:37:55.618 2024-02-27 16:37:55.618 500 FEE 440680 1626 6086848 2024-02-27 16:37:55.618 2024-02-27 16:37:55.618 4500 TIP 440680 21062 6086890 2024-02-27 16:38:47.93 2024-02-27 16:38:47.93 500 FEE 440622 2285 6086891 2024-02-27 16:38:47.93 2024-02-27 16:38:47.93 4500 TIP 440622 3544 6086894 2024-02-27 16:38:48.403 2024-02-27 16:38:48.403 1000 FEE 440622 2525 6086895 2024-02-27 16:38:48.403 2024-02-27 16:38:48.403 9000 TIP 440622 5776 6086896 2024-02-27 16:39:02.091 2024-02-27 16:39:02.091 500 FEE 331942 20596 6086897 2024-02-27 16:39:02.091 2024-02-27 16:39:02.091 4500 TIP 331942 5703 6086899 2024-02-27 16:39:15.005 2024-02-27 16:39:15.005 1000 FEE 440768 14258 6086947 2024-02-27 16:41:57.595 2024-02-27 16:41:57.595 1000 FEE 440748 20891 6086948 2024-02-27 16:41:57.595 2024-02-27 16:41:57.595 9000 TIP 440748 16351 6086953 2024-02-27 16:42:01.934 2024-02-27 16:42:01.934 500 FEE 440677 19952 6086954 2024-02-27 16:42:01.934 2024-02-27 16:42:01.934 4500 TIP 440677 3478 6087016 2024-02-27 16:42:51.196 2024-02-27 16:42:51.196 1000 FEE 440770 18626 6087017 2024-02-27 16:42:51.196 2024-02-27 16:42:51.196 9000 TIP 440770 1959 6087018 2024-02-27 16:42:51.51 2024-02-27 16:42:51.51 1000 FEE 440770 1135 6087019 2024-02-27 16:42:51.51 2024-02-27 16:42:51.51 9000 TIP 440770 20340 6087028 2024-02-27 16:43:19.226 2024-02-27 16:43:19.226 500 FEE 440132 1505 6087029 2024-02-27 16:43:19.226 2024-02-27 16:43:19.226 4500 TIP 440132 803 6087053 2024-02-27 16:45:04.555 2024-02-27 16:45:04.555 100 FEE 440670 20816 6087054 2024-02-27 16:45:04.555 2024-02-27 16:45:04.555 900 TIP 440670 20301 6087069 2024-02-27 16:45:23.99 2024-02-27 16:45:23.99 100 FEE 440554 17602 6086609 2024-02-27 16:22:56.537 2024-02-27 16:22:56.537 7200 TIP 440729 17570 6086637 2024-02-27 16:25:30.416 2024-02-27 16:25:30.416 1000 FEE 440748 10536 6086639 2024-02-27 16:25:39.492 2024-02-27 16:25:39.492 3000 FEE 440725 21520 6086640 2024-02-27 16:25:39.492 2024-02-27 16:25:39.492 27000 TIP 440725 20751 6086644 2024-02-27 16:26:21.706 2024-02-27 16:26:21.706 2100 FEE 439723 4102 6086645 2024-02-27 16:26:21.706 2024-02-27 16:26:21.706 18900 TIP 439723 19581 6086652 2024-02-27 16:26:25.837 2024-02-27 16:26:25.837 1000 FEE 440725 9551 6086653 2024-02-27 16:26:25.837 2024-02-27 16:26:25.837 9000 TIP 440725 20187 6086658 2024-02-27 16:26:26.31 2024-02-27 16:26:26.31 1000 FEE 440725 1628 6086659 2024-02-27 16:26:26.31 2024-02-27 16:26:26.31 9000 TIP 440725 1650 6086660 2024-02-27 16:26:26.467 2024-02-27 16:26:26.467 1000 FEE 440725 651 6086661 2024-02-27 16:26:26.467 2024-02-27 16:26:26.467 9000 TIP 440725 20852 6086666 2024-02-27 16:26:34.928 2024-02-27 16:26:34.928 1000 POLL 440725 9109 6086687 2024-02-27 16:29:47.112 2024-02-27 16:29:47.112 100 FEE 440681 3347 6086688 2024-02-27 16:29:47.112 2024-02-27 16:29:47.112 900 TIP 440681 18169 6086714 2024-02-27 16:30:46.091 2024-02-27 16:30:46.091 1000 FEE 440743 15060 6086715 2024-02-27 16:30:46.091 2024-02-27 16:30:46.091 9000 TIP 440743 13100 6086716 2024-02-27 16:30:46.366 2024-02-27 16:30:46.366 1000 FEE 440743 2674 6086717 2024-02-27 16:30:46.366 2024-02-27 16:30:46.366 9000 TIP 440743 3478 6086718 2024-02-27 16:30:46.576 2024-02-27 16:30:46.576 1000 FEE 440739 20840 6086719 2024-02-27 16:30:46.576 2024-02-27 16:30:46.576 9000 TIP 440739 1120 6086733 2024-02-27 16:31:10.091 2024-02-27 16:31:10.091 1000 FEE 440757 18829 6086738 2024-02-27 16:31:50.713 2024-02-27 16:31:50.713 1000 FEE 440760 21563 6086751 2024-02-27 16:33:05.409 2024-02-27 16:33:05.409 3100 FEE 440761 4391 6086752 2024-02-27 16:33:05.409 2024-02-27 16:33:05.409 27900 TIP 440761 12976 6086755 2024-02-27 16:33:10.761 2024-02-27 16:33:10.761 0 FEE 440761 15978 6086856 2024-02-27 16:38:12.968 2024-02-27 16:38:12.968 500 FEE 440680 19333 6086857 2024-02-27 16:38:12.968 2024-02-27 16:38:12.968 4500 TIP 440680 3439 6086864 2024-02-27 16:38:36.161 2024-02-27 16:38:36.161 500 FEE 440575 18178 6086865 2024-02-27 16:38:36.161 2024-02-27 16:38:36.161 4500 TIP 440575 15409 6086878 2024-02-27 16:38:45.658 2024-02-27 16:38:45.658 500 FEE 440622 4388 6086879 2024-02-27 16:38:45.658 2024-02-27 16:38:45.658 4500 TIP 440622 663 6086884 2024-02-27 16:38:47.282 2024-02-27 16:38:47.282 500 FEE 440622 15161 6086885 2024-02-27 16:38:47.282 2024-02-27 16:38:47.282 4500 TIP 440622 14376 6086892 2024-02-27 16:38:48.026 2024-02-27 16:38:48.026 500 FEE 440622 12291 6086893 2024-02-27 16:38:48.026 2024-02-27 16:38:48.026 4500 TIP 440622 913 6086910 2024-02-27 16:40:23.871 2024-02-27 16:40:23.871 1000 FEE 440769 20337 6086911 2024-02-27 16:40:24.667 2024-02-27 16:40:24.667 1000 FEE 440770 15890 6086914 2024-02-27 16:41:03.613 2024-02-27 16:41:03.613 3100 FEE 440770 2347 6086915 2024-02-27 16:41:03.613 2024-02-27 16:41:03.613 27900 TIP 440770 20525 6086935 2024-02-27 16:41:51.051 2024-02-27 16:41:51.051 1000 FEE 440760 2577 6086936 2024-02-27 16:41:51.051 2024-02-27 16:41:51.051 9000 TIP 440760 18727 6086949 2024-02-27 16:42:00.723 2024-02-27 16:42:00.723 500 FEE 440677 19465 6086950 2024-02-27 16:42:00.723 2024-02-27 16:42:00.723 4500 TIP 440677 1817 6086974 2024-02-27 16:42:23.924 2024-02-27 16:42:23.924 500 FEE 440729 19583 6086975 2024-02-27 16:42:23.924 2024-02-27 16:42:23.924 4500 TIP 440729 746 6086980 2024-02-27 16:42:26.909 2024-02-27 16:42:26.909 9000 FEE 440663 20084 6086981 2024-02-27 16:42:26.909 2024-02-27 16:42:26.909 81000 TIP 440663 5703 6086984 2024-02-27 16:42:27.187 2024-02-27 16:42:27.187 500 FEE 440739 3461 6086985 2024-02-27 16:42:27.187 2024-02-27 16:42:27.187 4500 TIP 440739 919 6086990 2024-02-27 16:42:33.922 2024-02-27 16:42:33.922 90000 FEE 440633 19810 6086991 2024-02-27 16:42:33.922 2024-02-27 16:42:33.922 810000 TIP 440633 8508 6086994 2024-02-27 16:42:40.193 2024-02-27 16:42:40.193 500 FEE 440592 10007 6086995 2024-02-27 16:42:40.193 2024-02-27 16:42:40.193 4500 TIP 440592 866 6087002 2024-02-27 16:42:41.184 2024-02-27 16:42:41.184 500 FEE 440592 4250 6087003 2024-02-27 16:42:41.184 2024-02-27 16:42:41.184 4500 TIP 440592 19142 6087006 2024-02-27 16:42:47.568 2024-02-27 16:42:47.568 3100 FEE 440773 797 6087007 2024-02-27 16:42:47.568 2024-02-27 16:42:47.568 27900 TIP 440773 19583 6087008 2024-02-27 16:42:47.744 2024-02-27 16:42:47.744 1000 FEE 440766 8544 6087009 2024-02-27 16:42:47.744 2024-02-27 16:42:47.744 9000 TIP 440766 21342 6087010 2024-02-27 16:42:48.32 2024-02-27 16:42:48.32 1000 FEE 440766 15103 6087011 2024-02-27 16:42:48.32 2024-02-27 16:42:48.32 9000 TIP 440766 19836 6087038 2024-02-27 16:43:52.354 2024-02-27 16:43:52.354 500 FEE 440249 1135 6087039 2024-02-27 16:43:52.354 2024-02-27 16:43:52.354 4500 TIP 440249 8648 6087048 2024-02-27 16:44:35.801 2024-02-27 16:44:35.801 1000 FEE 440780 7673 6087055 2024-02-27 16:45:04.786 2024-02-27 16:45:04.786 100 FEE 440670 12946 6087056 2024-02-27 16:45:04.786 2024-02-27 16:45:04.786 900 TIP 440670 12368 6087093 2024-02-27 16:45:31.734 2024-02-27 16:45:31.734 1000 FEE 440782 919 6087125 2024-02-27 16:46:44.911 2024-02-27 16:46:44.911 2700 FEE 440678 3461 6087126 2024-02-27 16:46:44.911 2024-02-27 16:46:44.911 24300 TIP 440678 17157 6087129 2024-02-27 16:46:47.945 2024-02-27 16:46:47.945 900 FEE 440623 760 6087130 2024-02-27 16:46:47.945 2024-02-27 16:46:47.945 8100 TIP 440623 20657 6087143 2024-02-27 16:47:24.337 2024-02-27 16:47:24.337 300 FEE 440408 18232 6087144 2024-02-27 16:47:24.337 2024-02-27 16:47:24.337 2700 TIP 440408 5359 6087151 2024-02-27 16:48:53.877 2024-02-27 16:48:53.877 1000 FEE 440783 8004 6087152 2024-02-27 16:48:53.877 2024-02-27 16:48:53.877 9000 TIP 440783 19533 6087157 2024-02-27 16:48:55.029 2024-02-27 16:48:55.029 1000 FEE 440783 1881 6087158 2024-02-27 16:48:55.029 2024-02-27 16:48:55.029 9000 TIP 440783 12346 6087161 2024-02-27 16:49:30.553 2024-02-27 16:49:30.553 1000 FEE 440789 17184 6087164 2024-02-27 16:49:54.431 2024-02-27 16:49:54.431 1000 FEE 440791 11329 6087168 2024-02-27 16:50:47.537 2024-02-27 16:50:47.537 10000 FEE 440793 1549 6087177 2024-02-27 16:51:59.933 2024-02-27 16:51:59.933 7700 FEE 440791 2195 6087178 2024-02-27 16:51:59.933 2024-02-27 16:51:59.933 69300 TIP 440791 20704 6087183 2024-02-27 16:53:45.344 2024-02-27 16:53:45.344 500 FEE 440622 2196 6087184 2024-02-27 16:53:45.344 2024-02-27 16:53:45.344 4500 TIP 440622 20036 6087244 2024-02-27 16:59:54.601 2024-02-27 16:59:54.601 1000 FEE 440806 20087 6087251 2024-02-27 17:00:05.171 2024-02-27 17:00:05.171 1000 FEE 440808 16808 6087257 2024-02-27 17:00:19.859 2024-02-27 17:00:19.859 6900 FEE 440474 6136 6087258 2024-02-27 17:00:19.859 2024-02-27 17:00:19.859 62100 TIP 440474 19189 6087261 2024-02-27 17:00:21.972 2024-02-27 17:00:21.972 1600 FEE 440779 20264 6087262 2024-02-27 17:00:21.972 2024-02-27 17:00:21.972 14400 TIP 440779 620 6087285 2024-02-27 17:01:45.897 2024-02-27 17:01:45.897 4000 FEE 440765 993 6087286 2024-02-27 17:01:45.897 2024-02-27 17:01:45.897 36000 TIP 440765 8713 6087296 2024-02-27 17:03:43.005 2024-02-27 17:03:43.005 1000 FEE 440814 20452 6087317 2024-02-27 17:05:46.62 2024-02-27 17:05:46.62 1000 FEE 440202 2844 6087318 2024-02-27 17:05:46.62 2024-02-27 17:05:46.62 9000 TIP 440202 5449 6087324 2024-02-27 17:06:16.332 2024-02-27 17:06:16.332 300 FEE 440805 1454 6087325 2024-02-27 17:06:16.332 2024-02-27 17:06:16.332 2700 TIP 440805 2256 6087326 2024-02-27 17:06:19.597 2024-02-27 17:06:19.597 1000 FEE 440818 16341 6087331 2024-02-27 17:07:19.641 2024-02-27 17:07:19.641 4000 FEE 440764 5761 6087332 2024-02-27 17:07:19.641 2024-02-27 17:07:19.641 36000 TIP 440764 13767 6087350 2024-02-27 17:10:13.515 2024-02-27 17:10:13.515 4200 FEE 440692 891 6087351 2024-02-27 17:10:13.515 2024-02-27 17:10:13.515 37800 TIP 440692 20108 6087352 2024-02-27 17:10:14.017 2024-02-27 17:10:14.017 100000 FEE 440820 13927 6087361 2024-02-27 17:12:30.013 2024-02-27 17:12:30.013 1000 POLL 440725 11885 6086693 2024-02-27 16:30:03.524 2024-02-27 16:30:03.524 1000 STREAM 141924 8059 6086730 2024-02-27 16:31:03.557 2024-02-27 16:31:03.557 1000 STREAM 141924 11522 6086739 2024-02-27 16:32:03.555 2024-02-27 16:32:03.555 1000 STREAM 141924 19511 6086904 2024-02-27 16:40:03.602 2024-02-27 16:40:03.602 1000 STREAM 141924 8448 6086955 2024-02-27 16:42:03.596 2024-02-27 16:42:03.596 1000 STREAM 141924 13217 6087050 2024-02-27 16:45:03.607 2024-02-27 16:45:03.607 1000 STREAM 141924 17103 6087107 2024-02-27 16:46:03.611 2024-02-27 16:46:03.611 1000 STREAM 141924 17209 6087189 2024-02-27 16:55:03.853 2024-02-27 16:55:03.853 1000 STREAM 141924 1806 6087204 2024-02-27 16:57:03.9 2024-02-27 16:57:03.9 1000 STREAM 141924 20267 6087249 2024-02-27 17:00:03.97 2024-02-27 17:00:03.97 1000 STREAM 141924 16789 6087287 2024-02-27 17:02:03.91 2024-02-27 17:02:03.91 1000 STREAM 141924 18230 6087299 2024-02-27 17:04:01.93 2024-02-27 17:04:01.93 1000 STREAM 141924 20280 6087313 2024-02-27 17:05:04.037 2024-02-27 17:05:04.037 1000 STREAM 141924 19398 6087330 2024-02-27 17:07:04.041 2024-02-27 17:07:04.041 1000 STREAM 141924 11590 6087335 2024-02-27 17:08:04.06 2024-02-27 17:08:04.06 1000 STREAM 141924 1162 6087338 2024-02-27 17:09:02.063 2024-02-27 17:09:02.063 1000 STREAM 141924 19036 6087390 2024-02-27 17:15:02.102 2024-02-27 17:15:02.102 1000 STREAM 141924 8448 6087436 2024-02-27 17:18:02.114 2024-02-27 17:18:02.114 1000 STREAM 141924 21491 6087535 2024-02-27 17:24:02.157 2024-02-27 17:24:02.157 1000 STREAM 141924 9695 6087562 2024-02-27 17:27:02.165 2024-02-27 17:27:02.165 1000 STREAM 141924 16532 6087633 2024-02-27 17:31:02.205 2024-02-27 17:31:02.205 1000 STREAM 141924 1236 6087675 2024-02-27 17:33:02.22 2024-02-27 17:33:02.22 1000 STREAM 141924 15703 6087683 2024-02-27 17:35:02.219 2024-02-27 17:35:02.219 1000 STREAM 141924 999 6087684 2024-02-27 17:36:02.222 2024-02-27 17:36:02.222 1000 STREAM 141924 9365 6087750 2024-02-27 17:38:02.235 2024-02-27 17:38:02.235 1000 STREAM 141924 1310 6087760 2024-02-27 17:39:02.237 2024-02-27 17:39:02.237 1000 STREAM 141924 7916 6087858 2024-02-27 17:45:02.279 2024-02-27 17:45:02.279 1000 STREAM 141924 21063 6087901 2024-02-27 17:48:02.462 2024-02-27 17:48:02.462 1000 STREAM 141924 20152 6087906 2024-02-27 17:49:02.461 2024-02-27 17:49:02.461 1000 STREAM 141924 20781 6087915 2024-02-27 17:50:02.489 2024-02-27 17:50:02.489 1000 STREAM 141924 18230 6087920 2024-02-27 17:51:02.484 2024-02-27 17:51:02.484 1000 STREAM 141924 695 6087921 2024-02-27 17:52:02.478 2024-02-27 17:52:02.478 1000 STREAM 141924 2285 6087936 2024-02-27 17:54:02.49 2024-02-27 17:54:02.49 1000 STREAM 141924 21571 6087940 2024-02-27 17:55:02.496 2024-02-27 17:55:02.496 1000 STREAM 141924 20058 6087958 2024-02-27 17:57:02.505 2024-02-27 17:57:02.505 1000 STREAM 141924 672 6087966 2024-02-27 17:59:02.521 2024-02-27 17:59:02.521 1000 STREAM 141924 20881 6087983 2024-02-27 18:00:02.562 2024-02-27 18:00:02.562 1000 STREAM 141924 19292 6087993 2024-02-27 18:01:02.526 2024-02-27 18:01:02.526 1000 STREAM 141924 18380 6087999 2024-02-27 18:02:02.534 2024-02-27 18:02:02.534 1000 STREAM 141924 10608 6088001 2024-02-27 18:03:02.535 2024-02-27 18:03:02.535 1000 STREAM 141924 2741 6088010 2024-02-27 18:07:02.554 2024-02-27 18:07:02.554 1000 STREAM 141924 20636 6088015 2024-02-27 18:08:02.564 2024-02-27 18:08:02.564 1000 STREAM 141924 16354 6088019 2024-02-27 18:09:02.572 2024-02-27 18:09:02.572 1000 STREAM 141924 16176 6088045 2024-02-27 18:12:02.582 2024-02-27 18:12:02.582 1000 STREAM 141924 6260 6088073 2024-02-27 18:14:02.62 2024-02-27 18:14:02.62 1000 STREAM 141924 20871 6088083 2024-02-27 18:15:02.616 2024-02-27 18:15:02.616 1000 STREAM 141924 661 6088161 2024-02-27 18:18:02.668 2024-02-27 18:18:02.668 1000 STREAM 141924 19661 6088231 2024-02-27 18:21:02.69 2024-02-27 18:21:02.69 1000 STREAM 141924 14080 6088247 2024-02-27 18:22:02.698 2024-02-27 18:22:02.698 1000 STREAM 141924 19732 6088254 2024-02-27 18:23:02.694 2024-02-27 18:23:02.694 1000 STREAM 141924 20023 6088269 2024-02-27 18:26:02.703 2024-02-27 18:26:02.703 1000 STREAM 141924 20110 6088280 2024-02-27 18:28:02.731 2024-02-27 18:28:02.731 1000 STREAM 141924 2206 6086750 2024-02-27 16:33:03.553 2024-02-27 16:33:03.553 1000 STREAM 141924 20606 6086771 2024-02-27 16:34:03.556 2024-02-27 16:34:03.556 1000 STREAM 141924 1723 6086775 2024-02-27 16:34:21.527 2024-02-27 16:34:21.527 8100 TIP 440739 9276 6086804 2024-02-27 16:35:23.971 2024-02-27 16:35:23.971 500 FEE 440725 669 6086805 2024-02-27 16:35:23.971 2024-02-27 16:35:23.971 4500 TIP 440725 16649 6086812 2024-02-27 16:35:32.789 2024-02-27 16:35:32.789 7700 FEE 440765 15115 6086813 2024-02-27 16:35:32.789 2024-02-27 16:35:32.789 69300 TIP 440765 2330 6086814 2024-02-27 16:35:37.993 2024-02-27 16:35:37.993 1000 POLL 440725 2233 6086820 2024-02-27 16:37:21.594 2024-02-27 16:37:21.594 1000 FEE 440760 5003 6086821 2024-02-27 16:37:21.594 2024-02-27 16:37:21.594 9000 TIP 440760 9336 6086826 2024-02-27 16:37:31.243 2024-02-27 16:37:31.243 500 FEE 440542 19570 6086827 2024-02-27 16:37:31.243 2024-02-27 16:37:31.243 4500 TIP 440542 21457 6086860 2024-02-27 16:38:18.185 2024-02-27 16:38:18.185 500 FEE 440615 9969 6086861 2024-02-27 16:38:18.185 2024-02-27 16:38:18.185 4500 TIP 440615 730 6086882 2024-02-27 16:38:46.974 2024-02-27 16:38:46.974 500 FEE 440622 2335 6086883 2024-02-27 16:38:46.974 2024-02-27 16:38:46.974 4500 TIP 440622 21393 6086920 2024-02-27 16:41:36.497 2024-02-27 16:41:36.497 1000 FEE 440725 10007 6086921 2024-02-27 16:41:36.497 2024-02-27 16:41:36.497 9000 TIP 440725 21457 6086927 2024-02-27 16:41:49.66 2024-02-27 16:41:49.66 1000 FEE 440760 19147 6086928 2024-02-27 16:41:49.66 2024-02-27 16:41:49.66 9000 TIP 440760 16879 6086937 2024-02-27 16:41:51.328 2024-02-27 16:41:51.328 1000 FEE 440760 1493 6086938 2024-02-27 16:41:51.328 2024-02-27 16:41:51.328 9000 TIP 440760 19992 6086996 2024-02-27 16:42:40.654 2024-02-27 16:42:40.654 500 FEE 440592 18735 6086997 2024-02-27 16:42:40.654 2024-02-27 16:42:40.654 4500 TIP 440592 21172 6087024 2024-02-27 16:42:53.046 2024-02-27 16:42:53.046 1000 FEE 440770 1478 6087025 2024-02-27 16:42:53.046 2024-02-27 16:42:53.046 9000 TIP 440770 1631 6087026 2024-02-27 16:43:01.274 2024-02-27 16:43:01.274 1000 FEE 440777 9669 6087034 2024-02-27 16:43:42.623 2024-02-27 16:43:42.623 1000 POLL 440725 8726 6087037 2024-02-27 16:43:48.026 2024-02-27 16:43:48.026 1000 FEE 440778 626 6087040 2024-02-27 16:43:53.278 2024-02-27 16:43:53.278 1000 FEE 440779 18660 6087041 2024-02-27 16:44:01.878 2024-02-27 16:44:01.878 500 FEE 440532 20691 6087042 2024-02-27 16:44:01.878 2024-02-27 16:44:01.878 4500 TIP 440532 17741 6087057 2024-02-27 16:45:05.061 2024-02-27 16:45:05.061 100 FEE 440670 21555 6087058 2024-02-27 16:45:05.061 2024-02-27 16:45:05.061 900 TIP 440670 2775 6087059 2024-02-27 16:45:05.769 2024-02-27 16:45:05.769 100 FEE 440670 21194 6087060 2024-02-27 16:45:05.769 2024-02-27 16:45:05.769 900 TIP 440670 7395 6087097 2024-02-27 16:45:58.732 2024-02-27 16:45:58.732 2100 FEE 440780 12422 6087098 2024-02-27 16:45:58.732 2024-02-27 16:45:58.732 18900 TIP 440780 19284 6087108 2024-02-27 16:46:20.084 2024-02-27 16:46:20.084 1000 FEE 440784 700 6087121 2024-02-27 16:46:44.559 2024-02-27 16:46:44.559 2700 FEE 440678 20222 6087122 2024-02-27 16:46:44.559 2024-02-27 16:46:44.559 24300 TIP 440678 681 6087134 2024-02-27 16:46:53.607 2024-02-27 16:46:53.607 2700 FEE 440675 7760 6087135 2024-02-27 16:46:53.607 2024-02-27 16:46:53.607 24300 TIP 440675 15088 6087138 2024-02-27 16:46:53.947 2024-02-27 16:46:53.947 2700 FEE 440675 20738 6087139 2024-02-27 16:46:53.947 2024-02-27 16:46:53.947 24300 TIP 440675 15161 6087146 2024-02-27 16:48:31.898 2024-02-27 16:48:31.898 1000 FEE 440787 12921 6087149 2024-02-27 16:48:53.436 2024-02-27 16:48:53.436 1000 FEE 440783 929 6087150 2024-02-27 16:48:53.436 2024-02-27 16:48:53.436 9000 TIP 440783 20577 6087155 2024-02-27 16:48:54.693 2024-02-27 16:48:54.693 1000 FEE 440783 20084 6087156 2024-02-27 16:48:54.693 2024-02-27 16:48:54.693 9000 TIP 440783 16948 6087162 2024-02-27 16:49:37.69 2024-02-27 16:49:37.69 1000 FEE 440790 5775 6087192 2024-02-27 16:55:18.287 2024-02-27 16:55:18.287 800 FEE 440764 13198 6087193 2024-02-27 16:55:18.287 2024-02-27 16:55:18.287 7200 TIP 440764 21238 6087213 2024-02-27 16:58:04.858 2024-02-27 16:58:04.858 1000 FEE 440758 19417 6087214 2024-02-27 16:58:04.858 2024-02-27 16:58:04.858 9000 TIP 440758 20129 6087215 2024-02-27 16:58:05.174 2024-02-27 16:58:05.174 1000 FEE 440758 1472 6087216 2024-02-27 16:58:05.174 2024-02-27 16:58:05.174 9000 TIP 440758 9494 6087227 2024-02-27 16:59:23.272 2024-02-27 16:59:23.272 1000 FEE 440803 15337 6087254 2024-02-27 17:00:16.265 2024-02-27 17:00:16.265 0 FEE 440805 20245 6087310 2024-02-27 17:04:52.546 2024-02-27 17:04:52.546 1000 FEE 440791 20906 6087311 2024-02-27 17:04:52.546 2024-02-27 17:04:52.546 9000 TIP 440791 20495 6087316 2024-02-27 17:05:18.416 2024-02-27 17:05:18.416 7000 DONT_LIKE_THIS 439644 4798 6087319 2024-02-27 17:05:51.961 2024-02-27 17:05:51.961 1000 FEE 440183 16456 6087320 2024-02-27 17:05:51.961 2024-02-27 17:05:51.961 9000 TIP 440183 12561 6087342 2024-02-27 17:10:07.415 2024-02-27 17:10:07.415 4200 FEE 440692 14169 6087343 2024-02-27 17:10:07.415 2024-02-27 17:10:07.415 37800 TIP 440692 11819 6087384 2024-02-27 17:14:29.669 2024-02-27 17:14:29.669 10000 FEE 376219 713 6087385 2024-02-27 17:14:29.669 2024-02-27 17:14:29.669 90000 TIP 376219 19961 6087391 2024-02-27 17:15:37.004 2024-02-27 17:15:37.004 1000 FEE 440825 20660 6087396 2024-02-27 17:16:15.917 2024-02-27 17:16:15.917 1000 POLL 440725 2741 6087403 2024-02-27 17:16:47.682 2024-02-27 17:16:47.682 5000 FEE 440725 15094 6087404 2024-02-27 17:16:47.682 2024-02-27 17:16:47.682 45000 TIP 440725 4633 6087414 2024-02-27 17:17:30.344 2024-02-27 17:17:30.344 5000 FEE 440717 6419 6087415 2024-02-27 17:17:30.344 2024-02-27 17:17:30.344 45000 TIP 440717 15890 6086886 2024-02-27 16:38:47.538 2024-02-27 16:38:47.538 500 FEE 440622 17535 6086887 2024-02-27 16:38:47.538 2024-02-27 16:38:47.538 4500 TIP 440622 16356 6086888 2024-02-27 16:38:47.638 2024-02-27 16:38:47.638 500 FEE 440622 18526 6086889 2024-02-27 16:38:47.638 2024-02-27 16:38:47.638 4500 TIP 440622 21491 6086908 2024-02-27 16:40:15.875 2024-02-27 16:40:15.875 1000 FEE 440760 671 6086909 2024-02-27 16:40:15.875 2024-02-27 16:40:15.875 9000 TIP 440760 2525 6086925 2024-02-27 16:41:42.361 2024-02-27 16:41:42.361 1000 FEE 440773 963 6086933 2024-02-27 16:41:50.75 2024-02-27 16:41:50.75 1000 FEE 440760 15806 6086934 2024-02-27 16:41:50.75 2024-02-27 16:41:50.75 9000 TIP 440760 20454 6086966 2024-02-27 16:42:22.032 2024-02-27 16:42:22.032 100 FEE 440520 11275 6086967 2024-02-27 16:42:22.032 2024-02-27 16:42:22.032 900 TIP 440520 21320 6086968 2024-02-27 16:42:22.173 2024-02-27 16:42:22.173 900 FEE 440520 5057 6086969 2024-02-27 16:42:22.173 2024-02-27 16:42:22.173 8100 TIP 440520 20143 6086972 2024-02-27 16:42:23.306 2024-02-27 16:42:23.306 500 FEE 440729 19138 6086973 2024-02-27 16:42:23.306 2024-02-27 16:42:23.306 4500 TIP 440729 844 6086992 2024-02-27 16:42:35.885 2024-02-27 16:42:35.885 9000 FEE 440527 18865 6086993 2024-02-27 16:42:35.885 2024-02-27 16:42:35.885 81000 TIP 440527 9367 6087020 2024-02-27 16:42:52.08 2024-02-27 16:42:52.08 1000 FEE 440770 2075 6087021 2024-02-27 16:42:52.08 2024-02-27 16:42:52.08 9000 TIP 440770 671 6087032 2024-02-27 16:43:20.863 2024-02-27 16:43:20.863 500 FEE 440132 1490 6087033 2024-02-27 16:43:20.863 2024-02-27 16:43:20.863 4500 TIP 440132 19320 6087044 2024-02-27 16:44:09.961 2024-02-27 16:44:09.961 4000 FEE 440777 19930 6087045 2024-02-27 16:44:09.961 2024-02-27 16:44:09.961 36000 TIP 440777 4115 6087081 2024-02-27 16:45:26.672 2024-02-27 16:45:26.672 100 FEE 440535 19153 6087082 2024-02-27 16:45:26.672 2024-02-27 16:45:26.672 900 TIP 440535 20564 6087085 2024-02-27 16:45:27.988 2024-02-27 16:45:27.988 100 FEE 440714 21527 6087086 2024-02-27 16:45:27.988 2024-02-27 16:45:27.988 900 TIP 440714 17592 6087087 2024-02-27 16:45:28.237 2024-02-27 16:45:28.237 100 FEE 440714 18751 6087088 2024-02-27 16:45:28.237 2024-02-27 16:45:28.237 900 TIP 440714 20433 6087101 2024-02-27 16:45:59.821 2024-02-27 16:45:59.821 2700 FEE 440727 7992 6087102 2024-02-27 16:45:59.821 2024-02-27 16:45:59.821 24300 TIP 440727 2327 6087133 2024-02-27 16:46:51.874 2024-02-27 16:46:51.874 0 FEE 440785 11263 6087175 2024-02-27 16:51:47.913 2024-02-27 16:51:47.913 7700 FEE 440791 5794 6087176 2024-02-27 16:51:47.913 2024-02-27 16:51:47.913 69300 TIP 440791 19759 6087209 2024-02-27 16:58:04.12 2024-02-27 16:58:04.12 1000 FEE 440758 705 6087210 2024-02-27 16:58:04.12 2024-02-27 16:58:04.12 9000 TIP 440758 18629 6087250 2024-02-27 17:00:04.664 2024-02-27 17:00:04.664 100000 FEE 440807 17109 6087270 2024-02-27 17:00:39.58 2024-02-27 17:00:39.58 6900 FEE 440772 13782 6086913 2024-02-27 16:41:03.591 2024-02-27 16:41:03.591 1000 STREAM 141924 1480 6087027 2024-02-27 16:43:03.601 2024-02-27 16:43:03.601 1000 STREAM 141924 5701 6087142 2024-02-27 16:47:03.617 2024-02-27 16:47:03.617 1000 STREAM 141924 20511 6087145 2024-02-27 16:48:03.632 2024-02-27 16:48:03.632 1000 STREAM 141924 1474 6087160 2024-02-27 16:49:03.619 2024-02-27 16:49:03.619 1000 STREAM 141924 16052 6087169 2024-02-27 16:51:03.627 2024-02-27 16:51:03.627 1000 STREAM 141924 18017 6087186 2024-02-27 16:54:03.84 2024-02-27 16:54:03.84 1000 STREAM 141924 5557 6087195 2024-02-27 16:56:01.863 2024-02-27 16:56:01.863 1000 STREAM 141924 4819 6087223 2024-02-27 16:59:01.922 2024-02-27 16:59:01.922 1000 STREAM 141924 20706 6087290 2024-02-27 17:03:03.923 2024-02-27 17:03:03.923 1000 STREAM 141924 15103 6087323 2024-02-27 17:06:02.044 2024-02-27 17:06:02.044 1000 STREAM 141924 4819 6087359 2024-02-27 17:12:02.074 2024-02-27 17:12:02.074 1000 STREAM 141924 12946 6087500 2024-02-27 17:21:02.134 2024-02-27 17:21:02.134 1000 STREAM 141924 794 6087600 2024-02-27 17:29:02.182 2024-02-27 17:29:02.182 1000 STREAM 141924 2513 6087671 2024-02-27 17:32:02.2 2024-02-27 17:32:02.2 1000 STREAM 141924 21520 6087737 2024-02-27 17:37:02.23 2024-02-27 17:37:02.23 1000 STREAM 141924 13622 6087782 2024-02-27 17:40:02.238 2024-02-27 17:40:02.238 1000 STREAM 141924 11821 6087820 2024-02-27 17:41:02.247 2024-02-27 17:41:02.247 1000 STREAM 141924 20185 6087838 2024-02-27 17:43:02.252 2024-02-27 17:43:02.252 1000 STREAM 141924 5449 6087856 2024-02-27 17:44:02.248 2024-02-27 17:44:02.248 1000 STREAM 141924 20981 6087896 2024-02-27 17:47:02.438 2024-02-27 17:47:02.438 1000 STREAM 141924 16149 6087927 2024-02-27 17:53:02.493 2024-02-27 17:53:02.493 1000 STREAM 141924 7773 6087948 2024-02-27 17:56:02.5 2024-02-27 17:56:02.5 1000 STREAM 141924 18525 6087964 2024-02-27 17:58:02.503 2024-02-27 17:58:02.503 1000 STREAM 141924 2309 6088002 2024-02-27 18:04:02.542 2024-02-27 18:04:02.542 1000 STREAM 141924 13575 6088003 2024-02-27 18:05:02.549 2024-02-27 18:05:02.549 1000 STREAM 141924 5758 6088004 2024-02-27 18:06:02.538 2024-02-27 18:06:02.538 1000 STREAM 141924 8945 6088030 2024-02-27 18:10:02.588 2024-02-27 18:10:02.588 1000 STREAM 141924 766 6088033 2024-02-27 18:11:02.557 2024-02-27 18:11:02.557 1000 STREAM 141924 20646 6088063 2024-02-27 18:13:02.599 2024-02-27 18:13:02.599 1000 STREAM 141924 16270 6088105 2024-02-27 18:16:02.66 2024-02-27 18:16:02.66 1000 STREAM 141924 13927 6088150 2024-02-27 18:17:02.668 2024-02-27 18:17:02.668 1000 STREAM 141924 14663 6088172 2024-02-27 18:19:02.684 2024-02-27 18:19:02.684 1000 STREAM 141924 17541 6088207 2024-02-27 18:20:02.687 2024-02-27 18:20:02.687 1000 STREAM 141924 14650 6088259 2024-02-27 18:24:02.724 2024-02-27 18:24:02.724 1000 STREAM 141924 19243 6088265 2024-02-27 18:25:02.717 2024-02-27 18:25:02.717 1000 STREAM 141924 7395 6088277 2024-02-27 18:27:02.704 2024-02-27 18:27:02.704 1000 STREAM 141924 20156 6088284 2024-02-27 18:29:02.726 2024-02-27 18:29:02.726 1000 STREAM 141924 20562 6088289 2024-02-27 18:30:02.732 2024-02-27 18:30:02.732 1000 STREAM 141924 7659 6088295 2024-02-27 18:31:02.748 2024-02-27 18:31:02.748 1000 STREAM 141924 27 6088302 2024-02-27 18:32:02.747 2024-02-27 18:32:02.747 1000 STREAM 141924 618 6087046 2024-02-27 16:44:30.081 2024-02-27 16:44:30.081 2100 FEE 440764 2065 6087047 2024-02-27 16:44:30.081 2024-02-27 16:44:30.081 18900 TIP 440764 10484 6087077 2024-02-27 16:45:26.079 2024-02-27 16:45:26.079 100 FEE 440535 1007 6087078 2024-02-27 16:45:26.079 2024-02-27 16:45:26.079 900 TIP 440535 14037 6087089 2024-02-27 16:45:29.048 2024-02-27 16:45:29.048 2100 FEE 440692 12102 6087090 2024-02-27 16:45:29.048 2024-02-27 16:45:29.048 18900 TIP 440692 19322 6087094 2024-02-27 16:45:33.612 2024-02-27 16:45:33.612 1000 FEE 440783 11516 6087105 2024-02-27 16:46:00.142 2024-02-27 16:46:00.142 2700 FEE 440727 9874 6087106 2024-02-27 16:46:00.142 2024-02-27 16:46:00.142 24300 TIP 440727 10608 6087109 2024-02-27 16:46:20.888 2024-02-27 16:46:20.888 1000 FEE 440785 19795 6087119 2024-02-27 16:46:36.216 2024-02-27 16:46:36.216 2700 FEE 440681 17713 6087120 2024-02-27 16:46:36.216 2024-02-27 16:46:36.216 24300 TIP 440681 11621 6087123 2024-02-27 16:46:44.741 2024-02-27 16:46:44.741 2700 FEE 440678 18751 6087124 2024-02-27 16:46:44.741 2024-02-27 16:46:44.741 24300 TIP 440678 13921 6087131 2024-02-27 16:46:49.908 2024-02-27 16:46:49.908 300 FEE 440268 8133 6087132 2024-02-27 16:46:49.908 2024-02-27 16:46:49.908 2700 TIP 440268 20157 6087170 2024-02-27 16:51:32.454 2024-02-27 16:51:32.454 0 FEE 440787 20231 6087191 2024-02-27 16:55:09.83 2024-02-27 16:55:09.83 1000 FEE 440796 14381 6087206 2024-02-27 16:58:03.74 2024-02-27 16:58:03.74 1000 FEE 440758 1567 6087207 2024-02-27 16:58:03.74 2024-02-27 16:58:03.74 9000 TIP 440758 2718 6087219 2024-02-27 16:58:14.129 2024-02-27 16:58:14.129 0 FEE 440798 20998 6087224 2024-02-27 16:59:13.195 2024-02-27 16:59:13.195 4000 FEE 440795 14515 6087225 2024-02-27 16:59:13.195 2024-02-27 16:59:13.195 36000 TIP 440795 797 6087252 2024-02-27 17:00:13.055 2024-02-27 17:00:13.055 1000 FEE 440809 20026 6087265 2024-02-27 17:00:28.793 2024-02-27 17:00:28.793 1000 FEE 440811 21369 6087266 2024-02-27 17:00:34.239 2024-02-27 17:00:34.239 4000 FEE 440692 10719 6087267 2024-02-27 17:00:34.239 2024-02-27 17:00:34.239 36000 TIP 440692 18154 6087279 2024-02-27 17:01:16.994 2024-02-27 17:01:16.994 3100 FEE 440804 1060 6087280 2024-02-27 17:01:16.994 2024-02-27 17:01:16.994 27900 TIP 440804 16004 6087283 2024-02-27 17:01:36.554 2024-02-27 17:01:36.554 200 FEE 440793 20326 6087284 2024-02-27 17:01:36.554 2024-02-27 17:01:36.554 1800 TIP 440793 17707 6087291 2024-02-27 17:03:11.699 2024-02-27 17:03:11.699 6400 FEE 440663 17365 6087292 2024-02-27 17:03:11.699 2024-02-27 17:03:11.699 57600 TIP 440663 21532 6087297 2024-02-27 17:03:48.879 2024-02-27 17:03:48.879 3100 FEE 440796 15196 6087298 2024-02-27 17:03:48.879 2024-02-27 17:03:48.879 27900 TIP 440796 18230 6087321 2024-02-27 17:06:01.659 2024-02-27 17:06:01.659 7700 FEE 440797 9346 6087322 2024-02-27 17:06:01.659 2024-02-27 17:06:01.659 69300 TIP 440797 14280 6087381 2024-02-27 17:14:13.528 2024-02-27 17:14:13.528 0 FEE 440821 9330 6087386 2024-02-27 17:14:34.656 2024-02-27 17:14:34.656 500 FEE 440799 2335 6087387 2024-02-27 17:14:34.656 2024-02-27 17:14:34.656 4500 TIP 440799 21503 6087388 2024-02-27 17:15:00.569 2024-02-27 17:15:00.569 100 FEE 440725 5776 6087389 2024-02-27 17:15:00.569 2024-02-27 17:15:00.569 900 TIP 440725 21402 6087421 2024-02-27 17:17:31.901 2024-02-27 17:17:31.901 5000 FEE 440717 18583 6087422 2024-02-27 17:17:31.901 2024-02-27 17:17:31.901 45000 TIP 440717 21453 6087442 2024-02-27 17:18:23.006 2024-02-27 17:18:23.006 2100 FEE 440822 11018 6087443 2024-02-27 17:18:23.006 2024-02-27 17:18:23.006 18900 TIP 440822 671 6087446 2024-02-27 17:18:29.738 2024-02-27 17:18:29.738 100 FEE 440812 6471 6087447 2024-02-27 17:18:29.738 2024-02-27 17:18:29.738 900 TIP 440812 12368 6087451 2024-02-27 17:19:02.914 2024-02-27 17:19:02.914 3500 FEE 440599 18138 6087452 2024-02-27 17:19:02.914 2024-02-27 17:19:02.914 31500 TIP 440599 20588 6087481 2024-02-27 17:20:11.609 2024-02-27 17:20:11.609 100 FEE 440809 19557 6087482 2024-02-27 17:20:11.609 2024-02-27 17:20:11.609 900 TIP 440809 18731 6087485 2024-02-27 17:20:51.291 2024-02-27 17:20:51.291 1000 FEE 440829 19352 6087503 2024-02-27 17:21:18.038 2024-02-27 17:21:18.038 10100 FEE 440824 21037 6087504 2024-02-27 17:21:18.038 2024-02-27 17:21:18.038 90900 TIP 440824 4043 6087538 2024-02-27 17:24:46.768 2024-02-27 17:24:46.768 10000 FEE 440692 17109 6087539 2024-02-27 17:24:46.768 2024-02-27 17:24:46.768 90000 TIP 440692 21119 6087557 2024-02-27 17:25:55.919 2024-02-27 17:25:55.919 100 FEE 440798 19569 6087558 2024-02-27 17:25:55.919 2024-02-27 17:25:55.919 900 TIP 440798 21575 6087647 2024-02-27 17:31:23.327 2024-02-27 17:31:23.327 10000 FEE 440692 20998 6087648 2024-02-27 17:31:23.327 2024-02-27 17:31:23.327 90000 TIP 440692 4076 6087655 2024-02-27 17:31:34.971 2024-02-27 17:31:34.971 4000 FEE 440797 1567 6087656 2024-02-27 17:31:34.971 2024-02-27 17:31:34.971 36000 TIP 440797 20782 6087667 2024-02-27 17:31:59.55 2024-02-27 17:31:59.55 1000 FEE 431955 20594 6087668 2024-02-27 17:31:59.55 2024-02-27 17:31:59.55 9000 TIP 431955 18679 6087681 2024-02-27 17:34:43.831 2024-02-27 17:34:43.831 3300 FEE 440641 667 6087682 2024-02-27 17:34:43.831 2024-02-27 17:34:43.831 29700 TIP 440641 8400 6087727 2024-02-27 17:36:50.671 2024-02-27 17:36:50.671 1000 FEE 440692 14939 6087728 2024-02-27 17:36:50.671 2024-02-27 17:36:50.671 9000 TIP 440692 20073 6087731 2024-02-27 17:36:50.992 2024-02-27 17:36:50.992 1000 FEE 440692 21216 6087732 2024-02-27 17:36:50.992 2024-02-27 17:36:50.992 9000 TIP 440692 624 6087783 2024-02-27 17:40:36.876 2024-02-27 17:40:36.876 1000 FEE 440856 5003 6087818 2024-02-27 17:40:57.492 2024-02-27 17:40:57.492 1100 FEE 440633 21090 6087819 2024-02-27 17:40:57.492 2024-02-27 17:40:57.492 9900 TIP 440633 20657 6087821 2024-02-27 17:41:20.802 2024-02-27 17:41:20.802 100000 FEE 440857 1881 6087832 2024-02-27 17:42:35.113 2024-02-27 17:42:35.113 2100 FEE 440328 9290 6087833 2024-02-27 17:42:35.113 2024-02-27 17:42:35.113 18900 TIP 440328 20245 6087854 2024-02-27 17:43:36.963 2024-02-27 17:43:36.963 100 FEE 440814 18769 6087855 2024-02-27 17:43:36.963 2024-02-27 17:43:36.963 900 TIP 440814 18877 6087871 2024-02-27 17:45:34.908 2024-02-27 17:45:34.908 800 FEE 439857 17064 6087872 2024-02-27 17:45:34.908 2024-02-27 17:45:34.908 7200 TIP 439857 1465 6087880 2024-02-27 17:46:04.138 2024-02-27 17:46:04.138 1600 FEE 440694 19857 6087881 2024-02-27 17:46:04.138 2024-02-27 17:46:04.138 14400 TIP 440694 2513 6087884 2024-02-27 17:46:20.041 2024-02-27 17:46:20.041 1600 FEE 439905 4502 6087885 2024-02-27 17:46:20.041 2024-02-27 17:46:20.041 14400 TIP 439905 7510 6087892 2024-02-27 17:46:48.165 2024-02-27 17:46:48.165 1600 FEE 440592 21349 6087893 2024-02-27 17:46:48.165 2024-02-27 17:46:48.165 14400 TIP 440592 15703 6087903 2024-02-27 17:48:45.746 2024-02-27 17:48:45.746 1000 POLL 440725 716 6087904 2024-02-27 17:48:51.516 2024-02-27 17:48:51.516 2100 FEE 440725 21373 6087905 2024-02-27 17:48:51.516 2024-02-27 17:48:51.516 18900 TIP 440725 2757 6087907 2024-02-27 17:49:16.409 2024-02-27 17:49:16.409 2100 FEE 440772 9450 6087908 2024-02-27 17:49:16.409 2024-02-27 17:49:16.409 18900 TIP 440772 20245 6087910 2024-02-27 17:49:32.445 2024-02-27 17:49:32.445 2100 FEE 440859 13361 6087911 2024-02-27 17:49:32.445 2024-02-27 17:49:32.445 18900 TIP 440859 14650 6087913 2024-02-27 17:49:37.044 2024-02-27 17:49:37.044 2600 FEE 439848 4763 6087914 2024-02-27 17:49:37.044 2024-02-27 17:49:37.044 23400 TIP 439848 979 6087924 2024-02-27 17:52:19.867 2024-02-27 17:52:19.867 10000 FEE 440692 10862 6087925 2024-02-27 17:52:19.867 2024-02-27 17:52:19.867 90000 TIP 440692 4692 6087928 2024-02-27 17:53:11.902 2024-02-27 17:53:11.902 10000 FEE 440692 18680 6087929 2024-02-27 17:53:11.902 2024-02-27 17:53:11.902 90000 TIP 440692 15526 6087930 2024-02-27 17:53:24.086 2024-02-27 17:53:24.086 10000 FEE 440692 12277 6087931 2024-02-27 17:53:24.086 2024-02-27 17:53:24.086 90000 TIP 440692 5590 6087950 2024-02-27 17:56:39.352 2024-02-27 17:56:39.352 7700 FEE 440874 993 6087951 2024-02-27 17:56:39.352 2024-02-27 17:56:39.352 69300 TIP 440874 776 6087070 2024-02-27 16:45:23.99 2024-02-27 16:45:23.99 900 TIP 440554 1180 6087075 2024-02-27 16:45:25.001 2024-02-27 16:45:25.001 100 FEE 440554 21314 6087076 2024-02-27 16:45:25.001 2024-02-27 16:45:25.001 900 TIP 440554 20802 6087091 2024-02-27 16:45:29.147 2024-02-27 16:45:29.147 100 FEE 440714 20376 6087092 2024-02-27 16:45:29.147 2024-02-27 16:45:29.147 900 TIP 440714 21417 6087112 2024-02-27 16:46:23.132 2024-02-27 16:46:23.132 27900 FEE 440633 13132 6087113 2024-02-27 16:46:23.132 2024-02-27 16:46:23.132 251100 TIP 440633 19943 6087118 2024-02-27 16:46:32.054 2024-02-27 16:46:32.054 1000 FEE 440786 17082 6087163 2024-02-27 16:49:44.551 2024-02-27 16:49:44.551 1000 POLL 440725 16212 6087185 2024-02-27 16:53:53.907 2024-02-27 16:53:53.907 1000 POLL 440725 11417 6087198 2024-02-27 16:56:24.147 2024-02-27 16:56:24.147 1000 FEE 440799 18557 6087199 2024-02-27 16:56:31.754 2024-02-27 16:56:31.754 0 FEE 440787 17817 6087202 2024-02-27 16:56:58.207 2024-02-27 16:56:58.207 300 FEE 439744 722 6087203 2024-02-27 16:56:58.207 2024-02-27 16:56:58.207 2700 TIP 439744 12346 6087220 2024-02-27 16:58:20.745 2024-02-27 16:58:20.745 6900 FEE 440784 9261 6087221 2024-02-27 16:58:20.745 2024-02-27 16:58:20.745 62100 TIP 440784 20267 6087228 2024-02-27 16:59:32.336 2024-02-27 16:59:32.336 1000 FEE 440583 14045 6087229 2024-02-27 16:59:32.336 2024-02-27 16:59:32.336 9000 TIP 440583 1180 6087230 2024-02-27 16:59:37.115 2024-02-27 16:59:37.115 800 FEE 440622 18230 6087231 2024-02-27 16:59:37.115 2024-02-27 16:59:37.115 7200 TIP 440622 11789 6087243 2024-02-27 16:59:48.94 2024-02-27 16:59:48.94 1000 FEE 440805 4048 6087253 2024-02-27 17:00:15.736 2024-02-27 17:00:15.736 1000 FEE 440810 20222 6087288 2024-02-27 17:02:05.779 2024-02-27 17:02:05.779 100000 FEE 440812 2022 6087308 2024-02-27 17:04:48.272 2024-02-27 17:04:48.272 1000 FEE 440808 9669 6087309 2024-02-27 17:04:48.272 2024-02-27 17:04:48.272 9000 TIP 440808 21003 6087312 2024-02-27 17:04:59.589 2024-02-27 17:04:59.589 1000 FEE 440817 20603 6087327 2024-02-27 17:06:35.229 2024-02-27 17:06:35.229 2100 FEE 440815 11288 6087328 2024-02-27 17:06:35.229 2024-02-27 17:06:35.229 18900 TIP 440815 13249 6087333 2024-02-27 17:07:29.322 2024-02-27 17:07:29.322 10000 FEE 440386 19087 6087334 2024-02-27 17:07:29.322 2024-02-27 17:07:29.322 90000 TIP 440386 19446 6087353 2024-02-27 17:10:32.392 2024-02-27 17:10:32.392 1000 POLL 440725 3686 6087376 2024-02-27 17:13:50.995 2024-02-27 17:13:50.995 5000 FEE 440674 12808 6087377 2024-02-27 17:13:50.995 2024-02-27 17:13:50.995 45000 TIP 440674 20066 6087393 2024-02-27 17:16:07.808 2024-02-27 17:16:07.808 100 FEE 440775 1429 6087394 2024-02-27 17:16:07.808 2024-02-27 17:16:07.808 900 TIP 440775 13216 6087401 2024-02-27 17:16:39.058 2024-02-27 17:16:39.058 100 FEE 440785 20655 6087402 2024-02-27 17:16:39.058 2024-02-27 17:16:39.058 900 TIP 440785 722 6087428 2024-02-27 17:17:34.107 2024-02-27 17:17:34.107 5000 FEE 440717 2437 6087429 2024-02-27 17:17:34.107 2024-02-27 17:17:34.107 45000 TIP 440717 9169 6087434 2024-02-27 17:17:39.171 2024-02-27 17:17:39.171 5000 FEE 440720 9985 6087435 2024-02-27 17:17:39.171 2024-02-27 17:17:39.171 45000 TIP 440720 960 6087438 2024-02-27 17:18:20.41 2024-02-27 17:18:20.41 5000 FEE 440622 4692 6087439 2024-02-27 17:18:20.41 2024-02-27 17:18:20.41 45000 TIP 440622 7760 6087458 2024-02-27 17:19:35.594 2024-02-27 17:19:35.594 1000 FEE 440827 736 6087460 2024-02-27 17:19:38.113 2024-02-27 17:19:38.113 3000 FEE 440383 21466 6087461 2024-02-27 17:19:38.113 2024-02-27 17:19:38.113 27000 TIP 440383 20681 6087496 2024-02-27 17:21:01.267 2024-02-27 17:21:01.267 100 FEE 440692 21159 6087497 2024-02-27 17:21:01.267 2024-02-27 17:21:01.267 900 TIP 440692 8287 6087534 2024-02-27 17:23:53.144 2024-02-27 17:23:53.144 1000 FEE 440833 9982 6087548 2024-02-27 17:24:57.294 2024-02-27 17:24:57.294 1000 FEE 440834 10016 6087577 2024-02-27 17:28:01.817 2024-02-27 17:28:01.817 1000 FEE 440842 20059 6087581 2024-02-27 17:28:16.424 2024-02-27 17:28:16.424 1000 FEE 440843 1960 6087589 2024-02-27 17:28:40.435 2024-02-27 17:28:40.435 0 FEE 440844 21398 6087181 2024-02-27 16:53:01.929 2024-02-27 16:53:01.929 1000 STREAM 141924 19462 6087188 2024-02-27 16:54:18.591 2024-02-27 16:54:18.591 9000 TIP 440785 2029 6087200 2024-02-27 16:56:48.885 2024-02-27 16:56:48.885 700 FEE 440713 20073 6087201 2024-02-27 16:56:48.885 2024-02-27 16:56:48.885 6300 TIP 440713 21398 6087211 2024-02-27 16:58:04.513 2024-02-27 16:58:04.513 1000 FEE 440758 11821 6087212 2024-02-27 16:58:04.513 2024-02-27 16:58:04.513 9000 TIP 440758 18526 6087217 2024-02-27 16:58:13.378 2024-02-27 16:58:13.378 500 FEE 440797 717 6087218 2024-02-27 16:58:13.378 2024-02-27 16:58:13.378 4500 TIP 440797 5427 6087222 2024-02-27 16:58:51.474 2024-02-27 16:58:51.474 1000 FEE 440801 2224 6087242 2024-02-27 16:59:47.132 2024-02-27 16:59:47.132 1000 FEE 440804 17523 6087245 2024-02-27 16:59:56.845 2024-02-27 16:59:56.845 1000 FEE 440506 14909 6087246 2024-02-27 16:59:56.845 2024-02-27 16:59:56.845 9000 TIP 440506 10280 6087255 2024-02-27 17:00:19.127 2024-02-27 17:00:19.127 6900 FEE 440474 1008 6087256 2024-02-27 17:00:19.127 2024-02-27 17:00:19.127 62100 TIP 440474 2029 6087272 2024-02-27 17:00:43.633 2024-02-27 17:00:43.633 4000 FEE 440623 5427 6087273 2024-02-27 17:00:43.633 2024-02-27 17:00:43.633 36000 TIP 440623 19569 6087289 2024-02-27 17:02:20.279 2024-02-27 17:02:20.279 1000 POLL 440725 16270 6087301 2024-02-27 17:04:19.675 2024-02-27 17:04:19.675 6400 FEE 440764 795 6087302 2024-02-27 17:04:19.675 2024-02-27 17:04:19.675 57600 TIP 440764 20340 6087314 2024-02-27 17:05:11.267 2024-02-27 17:05:11.267 3200 FEE 440806 4175 6087315 2024-02-27 17:05:11.267 2024-02-27 17:05:11.267 28800 TIP 440806 9339 6087336 2024-02-27 17:08:34.692 2024-02-27 17:08:34.692 300 FEE 440798 10591 6087337 2024-02-27 17:08:34.692 2024-02-27 17:08:34.692 2700 TIP 440798 16536 6087346 2024-02-27 17:10:10.3 2024-02-27 17:10:10.3 4200 FEE 440692 17708 6087347 2024-02-27 17:10:10.3 2024-02-27 17:10:10.3 37800 TIP 440692 5195 6087348 2024-02-27 17:10:12.382 2024-02-27 17:10:12.382 4200 FEE 440692 980 6087349 2024-02-27 17:10:12.382 2024-02-27 17:10:12.382 37800 TIP 440692 15326 6087372 2024-02-27 17:13:48.535 2024-02-27 17:13:48.535 5000 FEE 440576 15139 6087373 2024-02-27 17:13:48.535 2024-02-27 17:13:48.535 45000 TIP 440576 2459 6087374 2024-02-27 17:13:50.323 2024-02-27 17:13:50.323 5000 FEE 440630 18392 6087375 2024-02-27 17:13:50.323 2024-02-27 17:13:50.323 45000 TIP 440630 11820 6087397 2024-02-27 17:16:22.854 2024-02-27 17:16:22.854 5000 FEE 440772 836 6087398 2024-02-27 17:16:22.854 2024-02-27 17:16:22.854 45000 TIP 440772 20109 6087406 2024-02-27 17:17:19.251 2024-02-27 17:17:19.251 5000 FEE 440546 9916 6087407 2024-02-27 17:17:19.251 2024-02-27 17:17:19.251 45000 TIP 440546 15662 6087412 2024-02-27 17:17:29.81 2024-02-27 17:17:29.81 5000 FEE 440717 20243 6087413 2024-02-27 17:17:29.81 2024-02-27 17:17:29.81 45000 TIP 440717 20871 6087444 2024-02-27 17:18:27.239 2024-02-27 17:18:27.239 300 FEE 440771 9166 6087445 2024-02-27 17:18:27.239 2024-02-27 17:18:27.239 2700 TIP 440771 18368 6087462 2024-02-27 17:19:55.878 2024-02-27 17:19:55.878 100 FEE 440692 20514 6087463 2024-02-27 17:19:55.878 2024-02-27 17:19:55.878 900 TIP 440692 12356 6087475 2024-02-27 17:20:09.356 2024-02-27 17:20:09.356 100 FEE 440809 9169 6087476 2024-02-27 17:20:09.356 2024-02-27 17:20:09.356 900 TIP 440809 15139 6087498 2024-02-27 17:21:01.433 2024-02-27 17:21:01.433 100 FEE 440692 21044 6087499 2024-02-27 17:21:01.433 2024-02-27 17:21:01.433 900 TIP 440692 1319 6087501 2024-02-27 17:21:06.529 2024-02-27 17:21:06.529 10000 FEE 440692 12334 6087502 2024-02-27 17:21:06.529 2024-02-27 17:21:06.529 90000 TIP 440692 21058 6087507 2024-02-27 17:21:49.301 2024-02-27 17:21:49.301 7700 FEE 440640 18005 6087508 2024-02-27 17:21:49.301 2024-02-27 17:21:49.301 69300 TIP 440640 21600 6087626 2024-02-27 17:30:38.142 2024-02-27 17:30:38.142 1000 FEE 440849 11220 6087627 2024-02-27 17:30:46.813 2024-02-27 17:30:46.813 100000 DONT_LIKE_THIS 440575 16598 6087634 2024-02-27 17:31:09.896 2024-02-27 17:31:09.896 1000 FEE 440851 16543 6087669 2024-02-27 17:31:59.865 2024-02-27 17:31:59.865 2100 FEE 440842 21281 6087670 2024-02-27 17:31:59.865 2024-02-27 17:31:59.865 18900 TIP 440842 3506 6087689 2024-02-27 17:36:15.128 2024-02-27 17:36:15.128 1000 FEE 440592 15239 6087690 2024-02-27 17:36:15.128 2024-02-27 17:36:15.128 9000 TIP 440592 2098 6087707 2024-02-27 17:36:49.08 2024-02-27 17:36:49.08 1000 FEE 440692 18262 6087708 2024-02-27 17:36:49.08 2024-02-27 17:36:49.08 9000 TIP 440692 11776 6087790 2024-02-27 17:40:51.195 2024-02-27 17:40:51.195 1100 FEE 440725 12122 6087791 2024-02-27 17:40:51.195 2024-02-27 17:40:51.195 9900 TIP 440725 6229 6087827 2024-02-27 17:42:12.596 2024-02-27 17:42:12.596 3000 FEE 440802 2749 6087828 2024-02-27 17:42:12.596 2024-02-27 17:42:12.596 27000 TIP 440802 16912 6087845 2024-02-27 17:43:05.41 2024-02-27 17:43:05.41 100 FEE 440700 18989 6087846 2024-02-27 17:43:05.41 2024-02-27 17:43:05.41 900 TIP 440700 1970 6087857 2024-02-27 17:44:35.204 2024-02-27 17:44:35.204 100000 FEE 440860 12609 6087889 2024-02-27 17:46:43.235 2024-02-27 17:46:43.235 100000 FEE 440863 1316 6087909 2024-02-27 17:49:27.989 2024-02-27 17:49:27.989 1000 FEE 440865 19021 6087912 2024-02-27 17:49:32.746 2024-02-27 17:49:32.746 50000 FEE 440866 19148 6087942 2024-02-27 17:55:14.973 2024-02-27 17:55:14.973 7700 FEE 440873 14663 6087943 2024-02-27 17:55:14.973 2024-02-27 17:55:14.973 69300 TIP 440873 20979 6087949 2024-02-27 17:56:34.869 2024-02-27 17:56:34.869 10000 FEE 440875 2952 6087977 2024-02-27 17:59:39.674 2024-02-27 17:59:39.674 0 FEE 440870 21619 6087981 2024-02-27 17:59:51.007 2024-02-27 17:59:51.007 3000 FEE 440158 12222 6087982 2024-02-27 17:59:51.007 2024-02-27 17:59:51.007 27000 TIP 440158 17046 6087989 2024-02-27 18:00:18.051 2024-02-27 18:00:18.051 21000 FEE 440857 19637 6087990 2024-02-27 18:00:18.051 2024-02-27 18:00:18.051 189000 TIP 440857 18314 6088007 2024-02-27 18:06:07.925 2024-02-27 18:06:07.925 800 FEE 440875 19126 6088008 2024-02-27 18:06:07.925 2024-02-27 18:06:07.925 7200 TIP 440875 21527 6088009 2024-02-27 18:06:36.292 2024-02-27 18:06:36.292 1000 FEE 440883 18473 6088036 2024-02-27 18:11:24.922 2024-02-27 18:11:24.922 97000 FEE 440884 18264 6088054 2024-02-27 18:12:15.093 2024-02-27 18:12:15.093 12100 FEE 440622 11819 6088055 2024-02-27 18:12:15.093 2024-02-27 18:12:15.093 108900 TIP 440622 21605 6088061 2024-02-27 18:12:55.544 2024-02-27 18:12:55.544 500 FEE 440772 14489 6088062 2024-02-27 18:12:55.544 2024-02-27 18:12:55.544 4500 TIP 440772 2330 6088071 2024-02-27 18:13:55.38 2024-02-27 18:13:55.38 2100 FEE 440791 4115 6088072 2024-02-27 18:13:55.38 2024-02-27 18:13:55.38 18900 TIP 440791 16347 6088076 2024-02-27 18:14:10.795 2024-02-27 18:14:10.795 2100 FEE 440567 21067 6088077 2024-02-27 18:14:10.795 2024-02-27 18:14:10.795 18900 TIP 440567 617 6088108 2024-02-27 18:16:10.484 2024-02-27 18:16:10.484 100 FEE 440790 17891 6088109 2024-02-27 18:16:10.484 2024-02-27 18:16:10.484 900 TIP 440790 1983 6088124 2024-02-27 18:16:45.193 2024-02-27 18:16:45.193 2100 FEE 440671 18679 6088125 2024-02-27 18:16:45.193 2024-02-27 18:16:45.193 18900 TIP 440671 1438 6088126 2024-02-27 18:16:48.177 2024-02-27 18:16:48.177 2100 FEE 440179 15521 6088127 2024-02-27 18:16:48.177 2024-02-27 18:16:48.177 18900 TIP 440179 12220 6088148 2024-02-27 18:17:00.112 2024-02-27 18:17:00.112 2100 FEE 440246 18269 6088149 2024-02-27 18:17:00.112 2024-02-27 18:17:00.112 18900 TIP 440246 11938 6088151 2024-02-27 18:17:09.194 2024-02-27 18:17:09.194 2100 FEE 440219 18837 6088152 2024-02-27 18:17:09.194 2024-02-27 18:17:09.194 18900 TIP 440219 17030 6088162 2024-02-27 18:18:08.699 2024-02-27 18:18:08.699 300 FEE 440663 12562 6088163 2024-02-27 18:18:08.699 2024-02-27 18:18:08.699 2700 TIP 440663 16176 6088218 2024-02-27 18:20:10.05 2024-02-27 18:20:10.05 2100 FEE 440132 18618 6088219 2024-02-27 18:20:10.05 2024-02-27 18:20:10.05 18900 TIP 440132 1094 6087205 2024-02-27 16:58:03.115 2024-02-27 16:58:03.115 1000 STREAM 141924 2326 6087341 2024-02-27 17:10:03.324 2024-02-27 17:10:03.324 1000 STREAM 141924 21577 6087356 2024-02-27 17:11:03.295 2024-02-27 17:11:03.295 1000 STREAM 141924 17446 6087364 2024-02-27 17:13:03.308 2024-02-27 17:13:03.308 1000 STREAM 141924 20594 6087378 2024-02-27 17:14:03.315 2024-02-27 17:14:03.315 1000 STREAM 141924 20912 6087392 2024-02-27 17:16:03.336 2024-02-27 17:16:03.336 1000 STREAM 141924 1465 6087528 2024-02-27 17:23:03.345 2024-02-27 17:23:03.345 1000 STREAM 141924 2046 6087550 2024-02-27 17:25:03.375 2024-02-27 17:25:03.375 1000 STREAM 141924 19446 6087578 2024-02-27 17:28:03.375 2024-02-27 17:28:03.375 1000 STREAM 141924 17541 6087613 2024-02-27 17:30:03.397 2024-02-27 17:30:03.397 1000 STREAM 141924 3213 6087678 2024-02-27 17:34:03.407 2024-02-27 17:34:03.407 1000 STREAM 141924 11866 6087879 2024-02-27 17:46:03.453 2024-02-27 17:46:03.453 1000 STREAM 141924 1465 6087271 2024-02-27 17:00:39.58 2024-02-27 17:00:39.58 62100 TIP 440772 19601 6087276 2024-02-27 17:00:58.38 2024-02-27 17:00:58.38 1000 FEE 440776 17494 6087277 2024-02-27 17:00:58.38 2024-02-27 17:00:58.38 9000 TIP 440776 18956 6087281 2024-02-27 17:01:23.939 2024-02-27 17:01:23.939 1000 FEE 440787 11678 6087282 2024-02-27 17:01:23.939 2024-02-27 17:01:23.939 9000 TIP 440787 10536 6087293 2024-02-27 17:03:29.996 2024-02-27 17:03:29.996 4000 FEE 440802 20691 6087294 2024-02-27 17:03:29.996 2024-02-27 17:03:29.996 36000 TIP 440802 704 6087295 2024-02-27 17:03:40.454 2024-02-27 17:03:40.454 100000 FEE 440813 7978 6087306 2024-02-27 17:04:45.191 2024-02-27 17:04:45.191 1000 FEE 440802 6578 6087307 2024-02-27 17:04:45.191 2024-02-27 17:04:45.191 9000 TIP 440802 20987 6087354 2024-02-27 17:10:33.266 2024-02-27 17:10:33.266 200 FEE 440820 2780 6087355 2024-02-27 17:10:33.266 2024-02-27 17:10:33.266 1800 TIP 440820 13927 6087357 2024-02-27 17:11:14.854 2024-02-27 17:11:14.854 10000 FEE 440366 2361 6087358 2024-02-27 17:11:14.854 2024-02-27 17:11:14.854 90000 TIP 440366 2832 6087365 2024-02-27 17:13:45.886 2024-02-27 17:13:45.886 1000 FEE 440823 21263 6087370 2024-02-27 17:13:47.996 2024-02-27 17:13:47.996 7700 FEE 440822 1552 6087371 2024-02-27 17:13:47.996 2024-02-27 17:13:47.996 69300 TIP 440822 9363 6087395 2024-02-27 17:16:15.605 2024-02-27 17:16:15.605 1000 POLL 440725 13100 6087426 2024-02-27 17:17:33.189 2024-02-27 17:17:33.189 5000 FEE 440717 2757 6087427 2024-02-27 17:17:33.189 2024-02-27 17:17:33.189 45000 TIP 440717 11275 6087432 2024-02-27 17:17:38.971 2024-02-27 17:17:38.971 5000 FEE 440720 20153 6087433 2024-02-27 17:17:38.971 2024-02-27 17:17:38.971 45000 TIP 440720 19118 6087437 2024-02-27 17:18:16.064 2024-02-27 17:18:16.064 1000 POLL 440725 18008 6087471 2024-02-27 17:20:08.298 2024-02-27 17:20:08.298 100 FEE 440809 20525 6087472 2024-02-27 17:20:08.298 2024-02-27 17:20:08.298 900 TIP 440809 13854 6087494 2024-02-27 17:21:01.091 2024-02-27 17:21:01.091 100 FEE 440692 18877 6087495 2024-02-27 17:21:01.091 2024-02-27 17:21:01.091 900 TIP 440692 12819 6087516 2024-02-27 17:22:52.488 2024-02-27 17:22:52.488 1000 FEE 440829 19806 6087517 2024-02-27 17:22:52.488 2024-02-27 17:22:52.488 9000 TIP 440829 12188 6087275 2024-02-27 17:00:50.36 2024-02-27 17:00:50.36 4500 TIP 440797 9362 6087300 2024-02-27 17:04:03.503 2024-02-27 17:04:03.503 1000 FEE 440815 5865 6087360 2024-02-27 17:12:20.697 2024-02-27 17:12:20.697 1000 POLL 440725 654 6087366 2024-02-27 17:13:46.568 2024-02-27 17:13:46.568 7700 FEE 440822 17124 6087367 2024-02-27 17:13:46.568 2024-02-27 17:13:46.568 69300 TIP 440822 10638 6087368 2024-02-27 17:13:46.778 2024-02-27 17:13:46.778 7700 FEE 440822 1224 6087369 2024-02-27 17:13:46.778 2024-02-27 17:13:46.778 69300 TIP 440822 16638 6087410 2024-02-27 17:17:29.633 2024-02-27 17:17:29.633 5000 FEE 440717 20205 6087411 2024-02-27 17:17:29.633 2024-02-27 17:17:29.633 45000 TIP 440717 10013 6087418 2024-02-27 17:17:31.571 2024-02-27 17:17:31.571 5000 FEE 440717 19459 6087419 2024-02-27 17:17:31.571 2024-02-27 17:17:31.571 45000 TIP 440717 19663 6087420 2024-02-27 17:17:31.898 2024-02-27 17:17:31.898 7700 FEE 440825 18919 6087423 2024-02-27 17:17:31.898 2024-02-27 17:17:31.898 69300 TIP 440825 16442 6087449 2024-02-27 17:18:58.794 2024-02-27 17:18:58.794 3500 FEE 440599 19458 6087450 2024-02-27 17:18:58.794 2024-02-27 17:18:58.794 31500 TIP 440599 18219 6087453 2024-02-27 17:19:03.239 2024-02-27 17:19:03.239 3500 FEE 440599 19839 6087454 2024-02-27 17:19:03.239 2024-02-27 17:19:03.239 31500 TIP 440599 1141 6087467 2024-02-27 17:20:07.504 2024-02-27 17:20:07.504 200 FEE 440809 1549 6087468 2024-02-27 17:20:07.504 2024-02-27 17:20:07.504 1800 TIP 440809 1224 6087477 2024-02-27 17:20:10.572 2024-02-27 17:20:10.572 100 FEE 440809 6687 6087478 2024-02-27 17:20:10.572 2024-02-27 17:20:10.572 900 TIP 440809 20973 6087479 2024-02-27 17:20:11.106 2024-02-27 17:20:11.106 100 FEE 440809 2776 6087480 2024-02-27 17:20:11.106 2024-02-27 17:20:11.106 900 TIP 440809 5776 6087483 2024-02-27 17:20:12.526 2024-02-27 17:20:12.526 100 FEE 440809 20778 6087484 2024-02-27 17:20:12.526 2024-02-27 17:20:12.526 900 TIP 440809 7668 6087518 2024-02-27 17:22:52.544 2024-02-27 17:22:52.544 500 FEE 440829 1209 6087519 2024-02-27 17:22:52.544 2024-02-27 17:22:52.544 4500 TIP 440829 4763 6087529 2024-02-27 17:23:18.269 2024-02-27 17:23:18.269 1000 FEE 440832 13055 6087549 2024-02-27 17:25:02.082 2024-02-27 17:25:02.082 1000 FEE 440835 10096 6087551 2024-02-27 17:25:09.957 2024-02-27 17:25:09.957 1000 FEE 440836 15938 6087553 2024-02-27 17:25:24.817 2024-02-27 17:25:24.817 7700 FEE 440831 2013 6087554 2024-02-27 17:25:24.817 2024-02-27 17:25:24.817 69300 TIP 440831 10493 6087555 2024-02-27 17:25:27.936 2024-02-27 17:25:27.936 0 FEE 440834 11240 6087567 2024-02-27 17:27:18.514 2024-02-27 17:27:18.514 500 FEE 440249 700 6087568 2024-02-27 17:27:18.514 2024-02-27 17:27:18.514 4500 TIP 440249 13798 6087569 2024-02-27 17:27:19.285 2024-02-27 17:27:19.285 500 FEE 440249 14857 6087570 2024-02-27 17:27:19.285 2024-02-27 17:27:19.285 4500 TIP 440249 16704 6087583 2024-02-27 17:28:30.318 2024-02-27 17:28:30.318 2100 FEE 440709 1198 6087584 2024-02-27 17:28:30.318 2024-02-27 17:28:30.318 18900 TIP 440709 2402 6087587 2024-02-27 17:28:40.399 2024-02-27 17:28:40.399 1000 FEE 440824 21386 6087588 2024-02-27 17:28:40.399 2024-02-27 17:28:40.399 9000 TIP 440824 18525 6087590 2024-02-27 17:28:40.582 2024-02-27 17:28:40.582 1000 FEE 440824 2722 6087591 2024-02-27 17:28:40.582 2024-02-27 17:28:40.582 9000 TIP 440824 19030 6087608 2024-02-27 17:29:47.637 2024-02-27 17:29:47.637 10000 FEE 440622 2609 6087609 2024-02-27 17:29:47.637 2024-02-27 17:29:47.637 90000 TIP 440622 8570 6087635 2024-02-27 17:31:11.557 2024-02-27 17:31:11.557 1000 FEE 440136 659 6087636 2024-02-27 17:31:11.557 2024-02-27 17:31:11.557 9000 TIP 440136 18539 6087649 2024-02-27 17:31:23.788 2024-02-27 17:31:23.788 10000 FEE 440692 20267 6087650 2024-02-27 17:31:23.788 2024-02-27 17:31:23.788 90000 TIP 440692 19952 6087665 2024-02-27 17:31:55.522 2024-02-27 17:31:55.522 1000 FEE 433074 6602 6087666 2024-02-27 17:31:55.522 2024-02-27 17:31:55.522 9000 TIP 433074 13987 6087685 2024-02-27 17:36:13.985 2024-02-27 17:36:13.985 1000 FEE 440592 17014 6087686 2024-02-27 17:36:13.985 2024-02-27 17:36:13.985 9000 TIP 440592 8133 6087699 2024-02-27 17:36:35.155 2024-02-27 17:36:35.155 1000 FEE 440484 20185 6087700 2024-02-27 17:36:35.155 2024-02-27 17:36:35.155 9000 TIP 440484 21172 6087713 2024-02-27 17:36:49.572 2024-02-27 17:36:49.572 1000 FEE 440692 20018 6087714 2024-02-27 17:36:49.572 2024-02-27 17:36:49.572 9000 TIP 440692 21172 6087719 2024-02-27 17:36:50.073 2024-02-27 17:36:50.073 1000 FEE 440692 21019 6087720 2024-02-27 17:36:50.073 2024-02-27 17:36:50.073 9000 TIP 440692 5794 6087721 2024-02-27 17:36:50.21 2024-02-27 17:36:50.21 1000 FEE 440692 18470 6087722 2024-02-27 17:36:50.21 2024-02-27 17:36:50.21 9000 TIP 440692 19633 6087725 2024-02-27 17:36:50.5 2024-02-27 17:36:50.5 1000 FEE 440692 21254 6087726 2024-02-27 17:36:50.5 2024-02-27 17:36:50.5 9000 TIP 440692 7772 6087742 2024-02-27 17:37:25.138 2024-02-27 17:37:25.138 1000 FEE 440550 7376 6087743 2024-02-27 17:37:25.138 2024-02-27 17:37:25.138 9000 TIP 440550 18423 6087756 2024-02-27 17:38:38.513 2024-02-27 17:38:38.513 10100 FEE 440764 21356 6087757 2024-02-27 17:38:38.513 2024-02-27 17:38:38.513 90900 TIP 440764 20744 6087776 2024-02-27 17:39:38.167 2024-02-27 17:39:38.167 1000 FEE 440692 6310 6087777 2024-02-27 17:39:38.167 2024-02-27 17:39:38.167 9000 TIP 440692 20133 6087780 2024-02-27 17:39:38.316 2024-02-27 17:39:38.316 1000 FEE 440692 3706 6087781 2024-02-27 17:39:38.316 2024-02-27 17:39:38.316 9000 TIP 440692 12291 6087808 2024-02-27 17:40:55.786 2024-02-27 17:40:55.786 1100 FEE 440663 20026 6087809 2024-02-27 17:40:55.786 2024-02-27 17:40:55.786 9900 TIP 440663 21139 6087814 2024-02-27 17:40:56.967 2024-02-27 17:40:56.967 1100 FEE 440633 6300 6087815 2024-02-27 17:40:56.967 2024-02-27 17:40:56.967 9900 TIP 440633 17171 6087836 2024-02-27 17:43:01.336 2024-02-27 17:43:01.336 1000 FEE 440857 3979 6087837 2024-02-27 17:43:01.336 2024-02-27 17:43:01.336 9000 TIP 440857 4064 6087839 2024-02-27 17:43:03.332 2024-02-27 17:43:03.332 100 FEE 440857 18629 6087840 2024-02-27 17:43:03.332 2024-02-27 17:43:03.332 900 TIP 440857 18271 6087847 2024-02-27 17:43:09.066 2024-02-27 17:43:09.066 1000 FEE 440859 20479 6087933 2024-02-27 17:53:39.307 2024-02-27 17:53:39.307 1000 FEE 440870 11263 6087969 2024-02-27 17:59:02.902 2024-02-27 17:59:02.902 100 FEE 440828 15159 6087970 2024-02-27 17:59:02.902 2024-02-27 17:59:02.902 900 TIP 440828 12346 6087973 2024-02-27 17:59:03.336 2024-02-27 17:59:03.336 100 FEE 440828 16929 6087974 2024-02-27 17:59:03.336 2024-02-27 17:59:03.336 900 TIP 440828 10821 6088000 2024-02-27 18:02:37.937 2024-02-27 18:02:37.937 0 FEE 440870 15624 6088018 2024-02-27 18:08:58.572 2024-02-27 18:08:58.572 1000 POLL 440725 2329 6087278 2024-02-27 17:01:04.791 2024-02-27 17:01:04.791 1000 STREAM 141924 21374 6087344 2024-02-27 17:10:09.952 2024-02-27 17:10:09.952 4200 FEE 440692 21061 6087345 2024-02-27 17:10:09.952 2024-02-27 17:10:09.952 37800 TIP 440692 705 6087362 2024-02-27 17:12:35.488 2024-02-27 17:12:35.488 1000 FEE 440821 1105 6087363 2024-02-27 17:12:45.733 2024-02-27 17:12:45.733 0 FEE 440821 4292 6087382 2024-02-27 17:14:14.123 2024-02-27 17:14:14.123 1000 FEE 440824 1141 6087399 2024-02-27 17:16:28.233 2024-02-27 17:16:28.233 10100 FEE 440622 1845 6087400 2024-02-27 17:16:28.233 2024-02-27 17:16:28.233 90900 TIP 440622 21603 6087424 2024-02-27 17:17:32.462 2024-02-27 17:17:32.462 5000 FEE 440717 986 6087425 2024-02-27 17:17:32.462 2024-02-27 17:17:32.462 45000 TIP 440717 15075 6087440 2024-02-27 17:18:20.739 2024-02-27 17:18:20.739 5000 FEE 440622 18735 6087441 2024-02-27 17:18:20.739 2024-02-27 17:18:20.739 45000 TIP 440622 17227 6087456 2024-02-27 17:19:28.833 2024-02-27 17:19:28.833 7700 FEE 440826 11678 6087457 2024-02-27 17:19:28.833 2024-02-27 17:19:28.833 69300 TIP 440826 19907 6087459 2024-02-27 17:19:38.048 2024-02-27 17:19:38.048 125000 FEE 440828 12368 6087464 2024-02-27 17:19:59.432 2024-02-27 17:19:59.432 100 FEE 440692 6749 6087465 2024-02-27 17:19:59.432 2024-02-27 17:19:59.432 900 TIP 440692 7673 6087469 2024-02-27 17:20:08.205 2024-02-27 17:20:08.205 100 FEE 440809 19660 6087470 2024-02-27 17:20:08.205 2024-02-27 17:20:08.205 900 TIP 440809 7899 6087510 2024-02-27 17:22:29.736 2024-02-27 17:22:29.736 0 FEE 440830 20854 6087524 2024-02-27 17:22:53.121 2024-02-27 17:22:53.121 500 FEE 440829 8400 6087525 2024-02-27 17:22:53.121 2024-02-27 17:22:53.121 4500 TIP 440829 7760 6087556 2024-02-27 17:25:36.751 2024-02-27 17:25:36.751 0 FEE 440836 1673 6087560 2024-02-27 17:26:40.208 2024-02-27 17:26:40.208 1000 FEE 440838 10273 6087565 2024-02-27 17:27:09.796 2024-02-27 17:27:09.796 500 FEE 440132 20586 6087566 2024-02-27 17:27:09.796 2024-02-27 17:27:09.796 4500 TIP 440132 1162 6087592 2024-02-27 17:28:41.774 2024-02-27 17:28:41.774 2100 FEE 440725 21563 6087593 2024-02-27 17:28:41.774 2024-02-27 17:28:41.774 18900 TIP 440725 21466 6087610 2024-02-27 17:29:49.934 2024-02-27 17:29:49.934 1000 FEE 440846 15488 6087621 2024-02-27 17:30:29.413 2024-02-27 17:30:29.413 1000 FEE 440848 705 6087639 2024-02-27 17:31:20.779 2024-02-27 17:31:20.779 10000 FEE 440692 21062 6087640 2024-02-27 17:31:20.779 2024-02-27 17:31:20.779 90000 TIP 440692 20251 6087641 2024-02-27 17:31:21.154 2024-02-27 17:31:21.154 10000 FEE 440692 2204 6087642 2024-02-27 17:31:21.154 2024-02-27 17:31:21.154 90000 TIP 440692 621 6087651 2024-02-27 17:31:24.178 2024-02-27 17:31:24.178 10000 FEE 440692 19193 6087652 2024-02-27 17:31:24.178 2024-02-27 17:31:24.178 90000 TIP 440692 697 6087663 2024-02-27 17:31:50.804 2024-02-27 17:31:50.804 1000 FEE 434260 725 6087664 2024-02-27 17:31:50.804 2024-02-27 17:31:50.804 9000 TIP 434260 21012 6087672 2024-02-27 17:32:05.319 2024-02-27 17:32:05.319 10100 FEE 440692 1618 6087673 2024-02-27 17:32:05.319 2024-02-27 17:32:05.319 90900 TIP 440692 3439 6087674 2024-02-27 17:32:20.537 2024-02-27 17:32:20.537 1000 FEE 440852 8133 6087762 2024-02-27 17:39:16.404 2024-02-27 17:39:16.404 4200 FEE 440846 20691 6087763 2024-02-27 17:39:16.404 2024-02-27 17:39:16.404 37800 TIP 440846 20892 6087784 2024-02-27 17:40:50.19 2024-02-27 17:40:50.19 1100 FEE 440725 910 6087785 2024-02-27 17:40:50.19 2024-02-27 17:40:50.19 9900 TIP 440725 12976 6087794 2024-02-27 17:40:51.842 2024-02-27 17:40:51.842 1100 FEE 440622 20837 6087795 2024-02-27 17:40:51.842 2024-02-27 17:40:51.842 9900 TIP 440622 19535 6087804 2024-02-27 17:40:54.733 2024-02-27 17:40:54.733 1100 FEE 440520 21412 6087805 2024-02-27 17:40:54.733 2024-02-27 17:40:54.733 9900 TIP 440520 12289 6087843 2024-02-27 17:43:04.717 2024-02-27 17:43:04.717 1000 FEE 440798 18658 6087844 2024-02-27 17:43:04.717 2024-02-27 17:43:04.717 9000 TIP 440798 14688 6087848 2024-02-27 17:43:13.192 2024-02-27 17:43:13.192 2600 FEE 440699 886 6087849 2024-02-27 17:43:13.192 2024-02-27 17:43:13.192 23400 TIP 440699 2285 6087859 2024-02-27 17:45:04.163 2024-02-27 17:45:04.163 1000 FEE 440861 4166 6087917 2024-02-27 17:50:51.474 2024-02-27 17:50:51.474 10000 FEE 440857 683 6087918 2024-02-27 17:50:51.474 2024-02-27 17:50:51.474 90000 TIP 440857 3371 6087937 2024-02-27 17:54:13.289 2024-02-27 17:54:13.289 1000 FEE 440871 21233 6087939 2024-02-27 17:54:49.495 2024-02-27 17:54:49.495 0 FEE 440870 14990 6087944 2024-02-27 17:55:22.373 2024-02-27 17:55:22.373 7700 FEE 440872 16149 6087945 2024-02-27 17:55:22.373 2024-02-27 17:55:22.373 69300 TIP 440872 21208 6087947 2024-02-27 17:55:52.729 2024-02-27 17:55:52.729 1000 FEE 440874 19930 6087952 2024-02-27 17:56:39.637 2024-02-27 17:56:39.637 7700 FEE 440874 16660 6087953 2024-02-27 17:56:39.637 2024-02-27 17:56:39.637 69300 TIP 440874 6430 6087965 2024-02-27 17:58:56.36 2024-02-27 17:58:56.36 1000 FEE 440877 20981 6087978 2024-02-27 17:59:42.436 2024-02-27 17:59:42.436 1000 FEE 440879 7668 6087994 2024-02-27 18:01:14.929 2024-02-27 18:01:14.929 1000 FEE 440880 15526 6087995 2024-02-27 18:01:17.824 2024-02-27 18:01:17.824 0 FEE 440870 5776 6088016 2024-02-27 18:08:31.319 2024-02-27 18:08:31.319 2100 FEE 440883 14489 6088017 2024-02-27 18:08:31.319 2024-02-27 18:08:31.319 18900 TIP 440883 2347 6088031 2024-02-27 18:10:10.118 2024-02-27 18:10:10.118 1000 FEE 440534 11091 6088032 2024-02-27 18:10:10.118 2024-02-27 18:10:10.118 9000 TIP 440534 1817 6088059 2024-02-27 18:12:41.599 2024-02-27 18:12:41.599 10000 FEE 440692 21303 6088060 2024-02-27 18:12:41.599 2024-02-27 18:12:41.599 90000 TIP 440692 14037 6088067 2024-02-27 18:13:41.652 2024-02-27 18:13:41.652 2100 FEE 440747 19465 6088068 2024-02-27 18:13:41.652 2024-02-27 18:13:41.652 18900 TIP 440747 11670 6088074 2024-02-27 18:14:10.299 2024-02-27 18:14:10.299 1000 FEE 439792 21427 6087379 2024-02-27 17:14:04.27 2024-02-27 17:14:04.27 10100 FEE 440725 15408 6087380 2024-02-27 17:14:04.27 2024-02-27 17:14:04.27 90900 TIP 440725 8726 6087383 2024-02-27 17:14:18.709 2024-02-27 17:14:18.709 1000 POLL 440725 16571 6087408 2024-02-27 17:17:29.432 2024-02-27 17:17:29.432 5000 FEE 440717 16848 6087409 2024-02-27 17:17:29.432 2024-02-27 17:17:29.432 45000 TIP 440717 19843 6087430 2024-02-27 17:17:38.321 2024-02-27 17:17:38.321 5000 FEE 440720 5759 6087431 2024-02-27 17:17:38.321 2024-02-27 17:17:38.321 45000 TIP 440720 2151 6087490 2024-02-27 17:21:00.528 2024-02-27 17:21:00.528 100 FEE 440692 14959 6087491 2024-02-27 17:21:00.528 2024-02-27 17:21:00.528 900 TIP 440692 16653 6087512 2024-02-27 17:22:44.344 2024-02-27 17:22:44.344 100 FEE 440527 5942 6087513 2024-02-27 17:22:44.344 2024-02-27 17:22:44.344 900 TIP 440527 989 6087520 2024-02-27 17:22:52.684 2024-02-27 17:22:52.684 500 FEE 440829 16847 6087521 2024-02-27 17:22:52.684 2024-02-27 17:22:52.684 4500 TIP 440829 14910 6087522 2024-02-27 17:22:52.819 2024-02-27 17:22:52.819 500 FEE 440829 18517 6087523 2024-02-27 17:22:52.819 2024-02-27 17:22:52.819 4500 TIP 440829 17682 6087526 2024-02-27 17:22:54.031 2024-02-27 17:22:54.031 800 FEE 440725 2703 6087527 2024-02-27 17:22:54.031 2024-02-27 17:22:54.031 7200 TIP 440725 17415 6087530 2024-02-27 17:23:24.549 2024-02-27 17:23:24.549 1000 FEE 439390 4521 6087531 2024-02-27 17:23:24.549 2024-02-27 17:23:24.549 9000 TIP 439390 20745 6087532 2024-02-27 17:23:27.447 2024-02-27 17:23:27.447 2100 FEE 440792 16653 6087533 2024-02-27 17:23:27.447 2024-02-27 17:23:27.447 18900 TIP 440792 3706 6087540 2024-02-27 17:24:48.587 2024-02-27 17:24:48.587 10000 FEE 440692 4292 6087541 2024-02-27 17:24:48.587 2024-02-27 17:24:48.587 90000 TIP 440692 630 6087563 2024-02-27 17:27:09.492 2024-02-27 17:27:09.492 500 FEE 440132 759 6087564 2024-02-27 17:27:09.492 2024-02-27 17:27:09.492 4500 TIP 440132 11164 6087575 2024-02-27 17:27:54.914 2024-02-27 17:27:54.914 500 FEE 440216 18017 6087576 2024-02-27 17:27:54.914 2024-02-27 17:27:54.914 4500 TIP 440216 19193 6087579 2024-02-27 17:28:09.474 2024-02-27 17:28:09.474 2600 FEE 440828 21090 6087580 2024-02-27 17:28:09.474 2024-02-27 17:28:09.474 23400 TIP 440828 848 6087582 2024-02-27 17:28:17.749 2024-02-27 17:28:17.749 1000 FEE 440844 9365 6087594 2024-02-27 17:28:46.339 2024-02-27 17:28:46.339 2100 FEE 440729 5487 6087595 2024-02-27 17:28:46.339 2024-02-27 17:28:46.339 18900 TIP 440729 2330 6087601 2024-02-27 17:29:05.157 2024-02-27 17:29:05.157 1000 FEE 440845 20990 6087614 2024-02-27 17:30:12.66 2024-02-27 17:30:12.66 1000 FEE 440847 16341 6087630 2024-02-27 17:30:56.797 2024-02-27 17:30:56.797 2100 FEE 440608 749 6087631 2024-02-27 17:30:56.797 2024-02-27 17:30:56.797 18900 TIP 440608 794 6087637 2024-02-27 17:31:20.326 2024-02-27 17:31:20.326 10000 FEE 440692 13903 6087638 2024-02-27 17:31:20.326 2024-02-27 17:31:20.326 90000 TIP 440692 5129 6087643 2024-02-27 17:31:21.564 2024-02-27 17:31:21.564 10000 FEE 440692 18051 6087644 2024-02-27 17:31:21.564 2024-02-27 17:31:21.564 90000 TIP 440692 19836 6087653 2024-02-27 17:31:24.687 2024-02-27 17:31:24.687 10000 FEE 440692 6526 6087654 2024-02-27 17:31:24.687 2024-02-27 17:31:24.687 90000 TIP 440692 20849 6087661 2024-02-27 17:31:46.883 2024-02-27 17:31:46.883 1000 FEE 435528 21136 6087662 2024-02-27 17:31:46.883 2024-02-27 17:31:46.883 9000 TIP 435528 6749 6087733 2024-02-27 17:36:51.164 2024-02-27 17:36:51.164 1000 FEE 440692 1571 6087734 2024-02-27 17:36:51.164 2024-02-27 17:36:51.164 9000 TIP 440692 10273 6087738 2024-02-27 17:37:23.734 2024-02-27 17:37:23.734 1000 FEE 440550 9809 6087739 2024-02-27 17:37:23.734 2024-02-27 17:37:23.734 9000 TIP 440550 21591 6087751 2024-02-27 17:38:17.273 2024-02-27 17:38:17.273 1000 FEE 440854 21599 6087754 2024-02-27 17:38:34.702 2024-02-27 17:38:34.702 7700 FEE 440838 10112 6087755 2024-02-27 17:38:34.702 2024-02-27 17:38:34.702 69300 TIP 440838 19189 6087758 2024-02-27 17:38:55.722 2024-02-27 17:38:55.722 1000 FEE 440816 20897 6087759 2024-02-27 17:38:55.722 2024-02-27 17:38:55.722 9000 TIP 440816 15463 6087770 2024-02-27 17:39:37.05 2024-02-27 17:39:37.05 1000 FEE 440692 16347 6087771 2024-02-27 17:39:37.05 2024-02-27 17:39:37.05 9000 TIP 440692 21523 6087774 2024-02-27 17:39:37.502 2024-02-27 17:39:37.502 1000 FEE 440692 18525 6087775 2024-02-27 17:39:37.502 2024-02-27 17:39:37.502 9000 TIP 440692 14663 6087778 2024-02-27 17:39:38.291 2024-02-27 17:39:38.291 1000 FEE 440692 3353 6087779 2024-02-27 17:39:38.291 2024-02-27 17:39:38.291 9000 TIP 440692 2529 6087806 2024-02-27 17:40:55.522 2024-02-27 17:40:55.522 1100 FEE 440663 679 6087807 2024-02-27 17:40:55.522 2024-02-27 17:40:55.522 9900 TIP 440663 4819 6087810 2024-02-27 17:40:55.916 2024-02-27 17:40:55.916 1100 FEE 440663 2508 6087811 2024-02-27 17:40:55.916 2024-02-27 17:40:55.916 9900 TIP 440663 20713 6087834 2024-02-27 17:42:44.558 2024-02-27 17:42:44.558 20000 FEE 440692 618 6087835 2024-02-27 17:42:44.558 2024-02-27 17:42:44.558 180000 TIP 440692 20254 6087862 2024-02-27 17:45:10.136 2024-02-27 17:45:10.136 1000 FEE 440812 1105 6087863 2024-02-27 17:45:10.136 2024-02-27 17:45:10.136 9000 TIP 440812 8162 6087875 2024-02-27 17:45:51.024 2024-02-27 17:45:51.024 12800 FEE 440729 8459 6087876 2024-02-27 17:45:51.024 2024-02-27 17:45:51.024 115200 TIP 440729 17166 6087882 2024-02-27 17:46:16.198 2024-02-27 17:46:16.198 800 FEE 440041 19633 6087883 2024-02-27 17:46:16.198 2024-02-27 17:46:16.198 7200 TIP 440041 638 6087900 2024-02-27 17:47:56.93 2024-02-27 17:47:56.93 1000 POLL 440725 13132 6087902 2024-02-27 17:48:33.23 2024-02-27 17:48:33.23 1000 FEE 440864 11378 6087932 2024-02-27 17:53:29.603 2024-02-27 17:53:29.603 1000 POLL 440725 19193 6087938 2024-02-27 17:54:34.616 2024-02-27 17:54:34.616 1000 FEE 440872 19105 6087946 2024-02-27 17:55:39.74 2024-02-27 17:55:39.74 0 FEE 440873 2111 6087971 2024-02-27 17:59:03.1 2024-02-27 17:59:03.1 100 FEE 440828 19322 6087972 2024-02-27 17:59:03.1 2024-02-27 17:59:03.1 900 TIP 440828 980 6087976 2024-02-27 17:59:32.995 2024-02-27 17:59:32.995 1000 FEE 440878 1772 6087984 2024-02-27 18:00:06.581 2024-02-27 18:00:06.581 0 FEE 440870 10063 6087987 2024-02-27 18:00:16.63 2024-02-27 18:00:16.63 2100 FEE 440725 1007 6087988 2024-02-27 18:00:16.63 2024-02-27 18:00:16.63 18900 TIP 440725 1801 6087996 2024-02-27 18:01:32.552 2024-02-27 18:01:32.552 1000 FEE 440881 1429 6088005 2024-02-27 18:06:04.087 2024-02-27 18:06:04.087 333300 FEE 440297 5557 6088006 2024-02-27 18:06:04.087 2024-02-27 18:06:04.087 2999700 TIP 440297 1039 6088034 2024-02-27 18:11:04.386 2024-02-27 18:11:04.386 10000 FEE 440699 21033 6088035 2024-02-27 18:11:04.386 2024-02-27 18:11:04.386 90000 TIP 440699 1145 6088041 2024-02-27 18:12:02.255 2024-02-27 18:12:02.255 2100 FEE 440520 18989 6088042 2024-02-27 18:12:02.255 2024-02-27 18:12:02.255 18900 TIP 440520 18904 6088043 2024-02-27 18:12:02.433 2024-02-27 18:12:02.433 2100 FEE 440520 20906 6088044 2024-02-27 18:12:02.433 2024-02-27 18:12:02.433 18900 TIP 440520 21091 6088052 2024-02-27 18:12:08.677 2024-02-27 18:12:08.677 2100 FEE 440386 20045 6088053 2024-02-27 18:12:08.677 2024-02-27 18:12:08.677 18900 TIP 440386 20585 6088058 2024-02-27 18:12:22.638 2024-02-27 18:12:22.638 1000 POLL 440725 16939 6088084 2024-02-27 18:15:20.175 2024-02-27 18:15:20.175 2100 FEE 440587 5520 6088085 2024-02-27 18:15:20.175 2024-02-27 18:15:20.175 18900 TIP 440587 19507 6088093 2024-02-27 18:15:51.375 2024-02-27 18:15:51.375 2100 FEE 440675 7869 6088094 2024-02-27 18:15:51.375 2024-02-27 18:15:51.375 18900 TIP 440675 13361 6088106 2024-02-27 18:16:02.983 2024-02-27 18:16:02.983 2100 FEE 440753 18557 6088107 2024-02-27 18:16:02.983 2024-02-27 18:16:02.983 18900 TIP 440753 13198 6088132 2024-02-27 18:16:49.344 2024-02-27 18:16:49.344 2100 FEE 440199 1007 6088133 2024-02-27 18:16:49.344 2024-02-27 18:16:49.344 18900 TIP 440199 4314 6088175 2024-02-27 18:19:05.319 2024-02-27 18:19:05.319 900 FEE 440870 8648 6088176 2024-02-27 18:19:05.319 2024-02-27 18:19:05.319 8100 TIP 440870 16594 6087416 2024-02-27 17:17:31.249 2024-02-27 17:17:31.249 300 FEE 440628 17673 6087417 2024-02-27 17:17:31.249 2024-02-27 17:17:31.249 2700 TIP 440628 1120 6087448 2024-02-27 17:18:39.108 2024-02-27 17:18:39.108 1000 FEE 440826 2101 6087473 2024-02-27 17:20:08.648 2024-02-27 17:20:08.648 100 FEE 440809 12744 6087474 2024-02-27 17:20:08.648 2024-02-27 17:20:08.648 900 TIP 440809 18472 6087486 2024-02-27 17:21:00.123 2024-02-27 17:21:00.123 100 FEE 440692 10490 6087487 2024-02-27 17:21:00.123 2024-02-27 17:21:00.123 900 TIP 440692 11450 6087488 2024-02-27 17:21:00.281 2024-02-27 17:21:00.281 100 FEE 440692 1596 6087489 2024-02-27 17:21:00.281 2024-02-27 17:21:00.281 900 TIP 440692 21048 6087492 2024-02-27 17:21:00.904 2024-02-27 17:21:00.904 100 FEE 440692 21469 6087493 2024-02-27 17:21:00.904 2024-02-27 17:21:00.904 900 TIP 440692 18306 6087505 2024-02-27 17:21:18.473 2024-02-27 17:21:18.473 100 FEE 440813 16788 6087506 2024-02-27 17:21:18.473 2024-02-27 17:21:18.473 900 TIP 440813 27 6087511 2024-02-27 17:22:34.301 2024-02-27 17:22:34.301 1000 FEE 440831 6148 6087514 2024-02-27 17:22:52.47 2024-02-27 17:22:52.47 500 FEE 440829 12268 6087515 2024-02-27 17:22:52.47 2024-02-27 17:22:52.47 4500 TIP 440829 19352 6087542 2024-02-27 17:24:48.895 2024-02-27 17:24:48.895 10000 FEE 440692 993 6087543 2024-02-27 17:24:48.895 2024-02-27 17:24:48.895 90000 TIP 440692 21343 6087544 2024-02-27 17:24:49.142 2024-02-27 17:24:49.142 10000 FEE 440692 17221 6087545 2024-02-27 17:24:49.142 2024-02-27 17:24:49.142 90000 TIP 440692 19533 6087573 2024-02-27 17:27:47.584 2024-02-27 17:27:47.584 1000 FEE 440840 17710 6087574 2024-02-27 17:27:49.677 2024-02-27 17:27:49.677 1000 FEE 440841 18243 6087604 2024-02-27 17:29:21.407 2024-02-27 17:29:21.407 3300 FEE 440728 13921 6087605 2024-02-27 17:29:21.407 2024-02-27 17:29:21.407 29700 TIP 440728 1298 6087615 2024-02-27 17:30:17.532 2024-02-27 17:30:17.532 1000 FEE 440707 1729 6087616 2024-02-27 17:30:17.532 2024-02-27 17:30:17.532 9000 TIP 440707 674 6087619 2024-02-27 17:30:28.172 2024-02-27 17:30:28.172 900 FEE 440833 16556 6087620 2024-02-27 17:30:28.172 2024-02-27 17:30:28.172 8100 TIP 440833 635 6087628 2024-02-27 17:30:55.015 2024-02-27 17:30:55.015 90000 FEE 440386 19527 6087629 2024-02-27 17:30:55.015 2024-02-27 17:30:55.015 810000 TIP 440386 4570 6087659 2024-02-27 17:31:42.983 2024-02-27 17:31:42.983 1000 FEE 436654 19987 6087660 2024-02-27 17:31:42.983 2024-02-27 17:31:42.983 9000 TIP 436654 18446 6087536 2024-02-27 17:24:31.846 2024-02-27 17:24:31.846 10100 FEE 440587 2528 6087537 2024-02-27 17:24:31.846 2024-02-27 17:24:31.846 90900 TIP 440587 20504 6087546 2024-02-27 17:24:49.354 2024-02-27 17:24:49.354 10000 FEE 440692 671 6087547 2024-02-27 17:24:49.354 2024-02-27 17:24:49.354 90000 TIP 440692 1261 6087552 2024-02-27 17:25:21.673 2024-02-27 17:25:21.673 1000 FEE 440837 681 6087561 2024-02-27 17:26:53.668 2024-02-27 17:26:53.668 1000 FEE 440839 2367 6087571 2024-02-27 17:27:21.875 2024-02-27 17:27:21.875 100 FEE 440820 21413 6087572 2024-02-27 17:27:21.875 2024-02-27 17:27:21.875 900 TIP 440820 9334 6087585 2024-02-27 17:28:40.037 2024-02-27 17:28:40.037 1000 FEE 440824 15052 6087586 2024-02-27 17:28:40.037 2024-02-27 17:28:40.037 9000 TIP 440824 8541 6087598 2024-02-27 17:29:00.237 2024-02-27 17:29:00.237 3300 FEE 440622 3518 6087599 2024-02-27 17:29:00.237 2024-02-27 17:29:00.237 29700 TIP 440622 10771 6087617 2024-02-27 17:30:28.107 2024-02-27 17:30:28.107 100 FEE 440833 11443 6087618 2024-02-27 17:30:28.107 2024-02-27 17:30:28.107 900 TIP 440833 18601 6087622 2024-02-27 17:30:29.87 2024-02-27 17:30:29.87 9000 FEE 440833 13843 6087623 2024-02-27 17:30:29.87 2024-02-27 17:30:29.87 81000 TIP 440833 21386 6087624 2024-02-27 17:30:32.796 2024-02-27 17:30:32.796 2100 FEE 440742 20817 6087625 2024-02-27 17:30:32.796 2024-02-27 17:30:32.796 18900 TIP 440742 919 6087657 2024-02-27 17:31:39.572 2024-02-27 17:31:39.572 1000 FEE 438660 1960 6087658 2024-02-27 17:31:39.572 2024-02-27 17:31:39.572 9000 TIP 438660 14959 6087679 2024-02-27 17:34:41.555 2024-02-27 17:34:41.555 1000 FEE 440814 16788 6087680 2024-02-27 17:34:41.555 2024-02-27 17:34:41.555 9000 TIP 440814 4118 6087687 2024-02-27 17:36:14.584 2024-02-27 17:36:14.584 1000 FEE 440592 20606 6087688 2024-02-27 17:36:14.584 2024-02-27 17:36:14.584 9000 TIP 440592 9099 6087691 2024-02-27 17:36:33.832 2024-02-27 17:36:33.832 1000 FEE 440484 20603 6087692 2024-02-27 17:36:33.832 2024-02-27 17:36:33.832 9000 TIP 440484 8376 6087701 2024-02-27 17:36:37.24 2024-02-27 17:36:37.24 500 FEE 440587 11073 6087702 2024-02-27 17:36:37.24 2024-02-27 17:36:37.24 4500 TIP 440587 19121 6087703 2024-02-27 17:36:48.771 2024-02-27 17:36:48.771 1000 FEE 440692 8506 6087704 2024-02-27 17:36:48.771 2024-02-27 17:36:48.771 9000 TIP 440692 9351 6087705 2024-02-27 17:36:48.936 2024-02-27 17:36:48.936 1000 FEE 440692 13046 6087706 2024-02-27 17:36:48.936 2024-02-27 17:36:48.936 9000 TIP 440692 7966 6087709 2024-02-27 17:36:49.24 2024-02-27 17:36:49.24 1000 FEE 440692 12277 6087710 2024-02-27 17:36:49.24 2024-02-27 17:36:49.24 9000 TIP 440692 21269 6087715 2024-02-27 17:36:49.72 2024-02-27 17:36:49.72 1000 FEE 440692 5173 6087716 2024-02-27 17:36:49.72 2024-02-27 17:36:49.72 9000 TIP 440692 1495 6087740 2024-02-27 17:37:24.425 2024-02-27 17:37:24.425 1000 FEE 440550 15146 6087741 2024-02-27 17:37:24.425 2024-02-27 17:37:24.425 9000 TIP 440550 616 6087748 2024-02-27 17:37:31.379 2024-02-27 17:37:31.379 1000 FEE 440472 8448 6087749 2024-02-27 17:37:31.379 2024-02-27 17:37:31.379 9000 TIP 440472 21371 6087752 2024-02-27 17:38:33.809 2024-02-27 17:38:33.809 1000 FEE 440587 6419 6087753 2024-02-27 17:38:33.809 2024-02-27 17:38:33.809 9000 TIP 440587 17411 6087761 2024-02-27 17:39:08.475 2024-02-27 17:39:08.475 1000 FEE 440855 2264 6087764 2024-02-27 17:39:20.538 2024-02-27 17:39:20.538 1000 FEE 440692 11164 6087765 2024-02-27 17:39:20.538 2024-02-27 17:39:20.538 9000 TIP 440692 1483 6087766 2024-02-27 17:39:36.266 2024-02-27 17:39:36.266 1000 FEE 440692 9166 6087767 2024-02-27 17:39:36.266 2024-02-27 17:39:36.266 9000 TIP 440692 5520 6087768 2024-02-27 17:39:36.858 2024-02-27 17:39:36.858 1000 FEE 440692 20624 6087769 2024-02-27 17:39:36.858 2024-02-27 17:39:36.858 9000 TIP 440692 623 6087788 2024-02-27 17:40:50.942 2024-02-27 17:40:50.942 1100 FEE 440725 937 6087789 2024-02-27 17:40:50.942 2024-02-27 17:40:50.942 9900 TIP 440725 1602 6087816 2024-02-27 17:40:57.3 2024-02-27 17:40:57.3 2200 FEE 440633 20106 6087817 2024-02-27 17:40:57.3 2024-02-27 17:40:57.3 19800 TIP 440633 661 6087852 2024-02-27 17:43:24.614 2024-02-27 17:43:24.614 10100 FEE 440592 4128 6087853 2024-02-27 17:43:24.614 2024-02-27 17:43:24.614 90900 TIP 440592 18989 6087860 2024-02-27 17:45:09.567 2024-02-27 17:45:09.567 1000 FEE 440812 18828 6087861 2024-02-27 17:45:09.567 2024-02-27 17:45:09.567 9000 TIP 440812 1985 6087869 2024-02-27 17:45:12.971 2024-02-27 17:45:12.971 1000 FEE 440597 19103 6087870 2024-02-27 17:45:12.971 2024-02-27 17:45:12.971 9000 TIP 440597 14906 6087877 2024-02-27 17:45:54.448 2024-02-27 17:45:54.448 800 FEE 440772 9330 6087878 2024-02-27 17:45:54.448 2024-02-27 17:45:54.448 7200 TIP 440772 2640 6087886 2024-02-27 17:46:33.436 2024-02-27 17:46:33.436 1600 FEE 440216 21393 6087887 2024-02-27 17:46:33.436 2024-02-27 17:46:33.436 14400 TIP 440216 18068 6087888 2024-02-27 17:46:39.66 2024-02-27 17:46:39.66 1000 POLL 440725 7418 6087919 2024-02-27 17:50:58.148 2024-02-27 17:50:58.148 1000 FEE 440868 15941 6087954 2024-02-27 17:56:39.747 2024-02-27 17:56:39.747 7700 FEE 440874 4048 6087955 2024-02-27 17:56:39.747 2024-02-27 17:56:39.747 69300 TIP 440874 18500 6087956 2024-02-27 17:56:46.499 2024-02-27 17:56:46.499 1000 POLL 440725 2075 6087957 2024-02-27 17:56:49.845 2024-02-27 17:56:49.845 100000 FEE 440876 8713 6087959 2024-02-27 17:57:05.228 2024-02-27 17:57:05.228 0 FEE 440870 3686 6087960 2024-02-27 17:57:10.735 2024-02-27 17:57:10.735 0 FEE 440875 18809 6087975 2024-02-27 17:59:12.412 2024-02-27 17:59:12.412 0 FEE 440870 17103 6087979 2024-02-27 17:59:45.256 2024-02-27 17:59:45.256 3000 FEE 440158 20681 6087980 2024-02-27 17:59:45.256 2024-02-27 17:59:45.256 27000 TIP 440158 21022 6087997 2024-02-27 18:01:33.66 2024-02-27 18:01:33.66 1000 FEE 440882 16194 6088013 2024-02-27 18:07:51.733 2024-02-27 18:07:51.733 7700 FEE 440875 1712 6088014 2024-02-27 18:07:51.733 2024-02-27 18:07:51.733 69300 TIP 440875 9796 6088037 2024-02-27 18:12:00.375 2024-02-27 18:12:00.375 12100 FEE 440764 4177 6088038 2024-02-27 18:12:00.375 2024-02-27 18:12:00.375 108900 TIP 440764 11992 6088090 2024-02-27 18:15:33.229 2024-02-27 18:15:33.229 10000 FEE 440887 6003 6088095 2024-02-27 18:15:54.778 2024-02-27 18:15:54.778 2100 FEE 440728 4238 6088096 2024-02-27 18:15:54.778 2024-02-27 18:15:54.778 18900 TIP 440728 12057 6088153 2024-02-27 18:17:15.147 2024-02-27 18:17:15.147 2100 FEE 440132 12606 6088154 2024-02-27 18:17:15.147 2024-02-27 18:17:15.147 18900 TIP 440132 16532 6088164 2024-02-27 18:18:09.056 2024-02-27 18:18:09.056 300 FEE 440663 11458 6088165 2024-02-27 18:18:09.056 2024-02-27 18:18:09.056 2700 TIP 440663 13544 6088192 2024-02-27 18:19:27.965 2024-02-27 18:19:27.965 2100 FEE 440729 18243 6088193 2024-02-27 18:19:27.965 2024-02-27 18:19:27.965 18900 TIP 440729 17183 6088208 2024-02-27 18:20:08.538 2024-02-27 18:20:08.538 2100 FEE 440132 20889 6088209 2024-02-27 18:20:08.538 2024-02-27 18:20:08.538 18900 TIP 440132 16706 6088227 2024-02-27 18:20:30.369 2024-02-27 18:20:30.369 1000 FEE 440564 18817 6088228 2024-02-27 18:20:30.369 2024-02-27 18:20:30.369 9000 TIP 440564 2402 6088234 2024-02-27 18:21:06.025 2024-02-27 18:21:06.025 2100 FEE 440711 1571 6088235 2024-02-27 18:21:06.025 2024-02-27 18:21:06.025 18900 TIP 440711 17494 6088267 2024-02-27 18:25:38.635 2024-02-27 18:25:38.635 1000 FEE 440895 4102 6088273 2024-02-27 18:26:20.409 2024-02-27 18:26:20.409 1000 FEE 440897 6360 6088307 2024-02-27 18:32:26.879 2024-02-27 18:32:26.879 2500 FEE 440566 7913 6088308 2024-02-27 18:32:26.879 2024-02-27 18:32:26.879 22500 TIP 440566 19863 6088309 2024-02-27 18:32:32.759 2024-02-27 18:32:32.759 1000 FEE 440904 656 6088320 2024-02-27 18:33:30.906 2024-02-27 18:33:30.906 2500 FEE 440201 5758 6088321 2024-02-27 18:33:30.906 2024-02-27 18:33:30.906 22500 TIP 440201 20691 6088328 2024-02-27 18:34:14.729 2024-02-27 18:34:14.729 100 FEE 440725 18470 6087596 2024-02-27 17:28:50.184 2024-02-27 17:28:50.184 2100 FEE 440764 2056 6087597 2024-02-27 17:28:50.184 2024-02-27 17:28:50.184 18900 TIP 440764 14731 6087602 2024-02-27 17:29:08.236 2024-02-27 17:29:08.236 1000 FEE 440681 6300 6087603 2024-02-27 17:29:08.236 2024-02-27 17:29:08.236 9000 TIP 440681 1000 6087606 2024-02-27 17:29:44.979 2024-02-27 17:29:44.979 2100 FEE 440797 20264 6087607 2024-02-27 17:29:44.979 2024-02-27 17:29:44.979 18900 TIP 440797 21599 6087611 2024-02-27 17:29:54.981 2024-02-27 17:29:54.981 1000 FEE 436986 826 6087612 2024-02-27 17:29:54.981 2024-02-27 17:29:54.981 9000 TIP 436986 17046 6087632 2024-02-27 17:30:58.122 2024-02-27 17:30:58.122 1000 FEE 440850 16424 6087645 2024-02-27 17:31:22.055 2024-02-27 17:31:22.055 10000 FEE 440692 16929 6087646 2024-02-27 17:31:22.055 2024-02-27 17:31:22.055 90000 TIP 440692 17570 6087676 2024-02-27 17:33:13.315 2024-02-27 17:33:13.315 1000 POLL 440725 10690 6087723 2024-02-27 17:36:50.366 2024-02-27 17:36:50.366 1000 FEE 440692 12265 6087724 2024-02-27 17:36:50.366 2024-02-27 17:36:50.366 9000 TIP 440692 16649 6087729 2024-02-27 17:36:50.825 2024-02-27 17:36:50.825 1000 FEE 440692 2529 6087730 2024-02-27 17:36:50.825 2024-02-27 17:36:50.825 9000 TIP 440692 14906 6087744 2024-02-27 17:37:30.196 2024-02-27 17:37:30.196 1000 FEE 440472 16289 6087745 2024-02-27 17:37:30.196 2024-02-27 17:37:30.196 9000 TIP 440472 18511 6087792 2024-02-27 17:40:51.72 2024-02-27 17:40:51.72 1100 FEE 440622 20099 6087793 2024-02-27 17:40:51.72 2024-02-27 17:40:51.72 9900 TIP 440622 7418 6087796 2024-02-27 17:40:52.437 2024-02-27 17:40:52.437 1100 FEE 440587 699 6087797 2024-02-27 17:40:52.437 2024-02-27 17:40:52.437 9900 TIP 440587 18557 6087800 2024-02-27 17:40:54.009 2024-02-27 17:40:54.009 1100 FEE 440587 2293 6087801 2024-02-27 17:40:54.009 2024-02-27 17:40:54.009 9900 TIP 440587 21222 6087802 2024-02-27 17:40:54.562 2024-02-27 17:40:54.562 1100 FEE 440520 9655 6087803 2024-02-27 17:40:54.562 2024-02-27 17:40:54.562 9900 TIP 440520 1890 6087812 2024-02-27 17:40:56.056 2024-02-27 17:40:56.056 1100 FEE 440663 8448 6087813 2024-02-27 17:40:56.056 2024-02-27 17:40:56.056 9900 TIP 440663 21501 6087829 2024-02-27 17:42:14.5 2024-02-27 17:42:14.5 1000 FEE 440858 15282 6087841 2024-02-27 17:43:03.335 2024-02-27 17:43:03.335 1000 FEE 440820 16816 6087842 2024-02-27 17:43:03.335 2024-02-27 17:43:03.335 9000 TIP 440820 17570 6087864 2024-02-27 17:45:10.675 2024-02-27 17:45:10.675 1000 FEE 440812 19848 6087865 2024-02-27 17:45:10.675 2024-02-27 17:45:10.675 9000 TIP 440812 618 6087873 2024-02-27 17:45:43.022 2024-02-27 17:45:43.022 800 FEE 439878 20514 6087874 2024-02-27 17:45:43.022 2024-02-27 17:45:43.022 7200 TIP 439878 14385 6087890 2024-02-27 17:46:44.276 2024-02-27 17:46:44.276 800 FEE 440484 20108 6087891 2024-02-27 17:46:44.276 2024-02-27 17:46:44.276 7200 TIP 440484 1060 6087916 2024-02-27 17:50:29.883 2024-02-27 17:50:29.883 1000 FEE 440867 11760 6087926 2024-02-27 17:52:31.017 2024-02-27 17:52:31.017 1000 FEE 440869 20059 6087934 2024-02-27 17:53:45.835 2024-02-27 17:53:45.835 10000 FEE 440692 683 6087935 2024-02-27 17:53:45.835 2024-02-27 17:53:45.835 90000 TIP 440692 21422 6087961 2024-02-27 17:57:27.313 2024-02-27 17:57:27.313 0 FEE 440870 11153 6087985 2024-02-27 18:00:11.818 2024-02-27 18:00:11.818 2300 FEE 440877 21303 6087986 2024-02-27 18:00:11.818 2024-02-27 18:00:11.818 20700 TIP 440877 20717 6087991 2024-02-27 18:00:39.75 2024-02-27 18:00:39.75 3000 FEE 440282 20560 6087992 2024-02-27 18:00:39.75 2024-02-27 18:00:39.75 27000 TIP 440282 6499 6088011 2024-02-27 18:07:14.672 2024-02-27 18:07:14.672 1000 FEE 440725 690 6088012 2024-02-27 18:07:14.672 2024-02-27 18:07:14.672 9000 TIP 440725 20904 6088020 2024-02-27 18:09:04.211 2024-02-27 18:09:04.211 1000 FEE 440570 21541 6088021 2024-02-27 18:09:04.211 2024-02-27 18:09:04.211 9000 TIP 440570 21619 6088022 2024-02-27 18:09:04.821 2024-02-27 18:09:04.821 1000 FEE 440570 20340 6088023 2024-02-27 18:09:04.821 2024-02-27 18:09:04.821 9000 TIP 440570 10934 6088024 2024-02-27 18:09:05.433 2024-02-27 18:09:05.433 1000 FEE 440570 768 6088025 2024-02-27 18:09:05.433 2024-02-27 18:09:05.433 9000 TIP 440570 10719 6088039 2024-02-27 18:12:02.059 2024-02-27 18:12:02.059 2100 FEE 440520 1039 6088040 2024-02-27 18:12:02.059 2024-02-27 18:12:02.059 18900 TIP 440520 18454 6088056 2024-02-27 18:12:18.825 2024-02-27 18:12:18.825 12100 FEE 440725 8870 6088057 2024-02-27 18:12:18.825 2024-02-27 18:12:18.825 108900 TIP 440725 18995 6088066 2024-02-27 18:13:37.691 2024-02-27 18:13:37.691 1000 FEE 440885 13143 6088116 2024-02-27 18:16:33.282 2024-02-27 18:16:33.282 2100 FEE 440215 11714 6088117 2024-02-27 18:16:33.282 2024-02-27 18:16:33.282 18900 TIP 440215 5809 6088122 2024-02-27 18:16:36.488 2024-02-27 18:16:36.488 2100 FEE 440658 12188 6088123 2024-02-27 18:16:36.488 2024-02-27 18:16:36.488 18900 TIP 440658 4177 6088130 2024-02-27 18:16:49.148 2024-02-27 18:16:49.148 2100 FEE 440199 5661 6088131 2024-02-27 18:16:49.148 2024-02-27 18:16:49.148 18900 TIP 440199 19941 6088243 2024-02-27 18:21:30.787 2024-02-27 18:21:30.787 10000 FEE 440463 20495 6088244 2024-02-27 18:21:30.787 2024-02-27 18:21:30.787 90000 TIP 440463 7760 6088248 2024-02-27 18:22:17.613 2024-02-27 18:22:17.613 1000 FEE 440892 21208 6088251 2024-02-27 18:22:55.722 2024-02-27 18:22:55.722 2100 FEE 440875 2367 6088252 2024-02-27 18:22:55.722 2024-02-27 18:22:55.722 18900 TIP 440875 16447 6088272 2024-02-27 18:26:19.218 2024-02-27 18:26:19.218 1000 FEE 440896 14202 6088287 2024-02-27 18:29:18.448 2024-02-27 18:29:18.448 300 FEE 440711 761 6088288 2024-02-27 18:29:18.448 2024-02-27 18:29:18.448 2700 TIP 440711 19992 6088303 2024-02-27 18:32:08.827 2024-02-27 18:32:08.827 100 FEE 440903 14280 6088304 2024-02-27 18:32:08.827 2024-02-27 18:32:08.827 900 TIP 440903 19375 6088311 2024-02-27 18:32:50.132 2024-02-27 18:32:50.132 1000 POLL 440725 684 6088314 2024-02-27 18:33:13.277 2024-02-27 18:33:13.277 2100 FEE 440180 15159 6088315 2024-02-27 18:33:13.277 2024-02-27 18:33:13.277 18900 TIP 440180 6137 6088324 2024-02-27 18:34:02.187 2024-02-27 18:34:02.187 1000 FEE 440906 4768 6088330 2024-02-27 18:34:22.529 2024-02-27 18:34:22.529 100 FEE 440587 17800 6088331 2024-02-27 18:34:22.529 2024-02-27 18:34:22.529 900 TIP 440587 6741 6088332 2024-02-27 18:34:22.996 2024-02-27 18:34:22.996 100 FEE 440587 21208 6088333 2024-02-27 18:34:22.996 2024-02-27 18:34:22.996 900 TIP 440587 20802 6088345 2024-02-27 18:35:13.22 2024-02-27 18:35:13.22 2100 FEE 440874 5565 6088346 2024-02-27 18:35:13.22 2024-02-27 18:35:13.22 18900 TIP 440874 11819 6088357 2024-02-27 18:36:12.253 2024-02-27 18:36:12.253 2100 FEE 440681 9345 6088358 2024-02-27 18:36:12.253 2024-02-27 18:36:12.253 18900 TIP 440681 716 6088413 2024-02-27 18:37:50.097 2024-02-27 18:37:50.097 100 FEE 439760 11328 6088414 2024-02-27 18:37:50.097 2024-02-27 18:37:50.097 900 TIP 439760 15336 6088430 2024-02-27 18:38:17.956 2024-02-27 18:38:17.956 1000 FEE 440875 8506 6088431 2024-02-27 18:38:17.956 2024-02-27 18:38:17.956 9000 TIP 440875 9921 6088450 2024-02-27 18:38:24.788 2024-02-27 18:38:24.788 2500 FEE 439671 1806 6088451 2024-02-27 18:38:24.788 2024-02-27 18:38:24.788 22500 TIP 439671 18751 6088456 2024-02-27 18:38:28.282 2024-02-27 18:38:28.282 100 FEE 440890 5520 6088457 2024-02-27 18:38:28.282 2024-02-27 18:38:28.282 900 TIP 440890 5728 6088464 2024-02-27 18:39:04.047 2024-02-27 18:39:04.047 10000 FEE 440915 5520 6088489 2024-02-27 18:42:36.754 2024-02-27 18:42:36.754 1000 FEE 440764 12334 6088490 2024-02-27 18:42:36.754 2024-02-27 18:42:36.754 9000 TIP 440764 18409 6088514 2024-02-27 18:43:08.526 2024-02-27 18:43:08.526 1000 FEE 440742 17237 6088515 2024-02-27 18:43:08.526 2024-02-27 18:43:08.526 9000 TIP 440742 14258 6088522 2024-02-27 18:45:05.145 2024-02-27 18:45:05.145 3300 FEE 440875 5703 6088523 2024-02-27 18:45:05.145 2024-02-27 18:45:05.145 29700 TIP 440875 19813 6088528 2024-02-27 18:45:53.271 2024-02-27 18:45:53.271 1000 FEE 440925 19660 6088627 2024-02-27 18:54:01.957 2024-02-27 18:54:01.957 1000 FEE 440911 16532 6088628 2024-02-27 18:54:01.957 2024-02-27 18:54:01.957 9000 TIP 440911 886 6087677 2024-02-27 17:33:51.373 2024-02-27 17:33:51.373 1000 FEE 440853 21540 6087693 2024-02-27 17:36:34.435 2024-02-27 17:36:34.435 1000 FEE 440484 21458 6087694 2024-02-27 17:36:34.435 2024-02-27 17:36:34.435 9000 TIP 440484 17722 6087697 2024-02-27 17:36:34.462 2024-02-27 17:36:34.462 500 FEE 440587 681 6087698 2024-02-27 17:36:34.462 2024-02-27 17:36:34.462 4500 TIP 440587 20251 6087711 2024-02-27 17:36:49.409 2024-02-27 17:36:49.409 1000 FEE 440692 20840 6087712 2024-02-27 17:36:49.409 2024-02-27 17:36:49.409 9000 TIP 440692 1959 6087717 2024-02-27 17:36:49.878 2024-02-27 17:36:49.878 1000 FEE 440692 6741 6087718 2024-02-27 17:36:49.878 2024-02-27 17:36:49.878 9000 TIP 440692 9109 6087735 2024-02-27 17:36:51.66 2024-02-27 17:36:51.66 500 FEE 440587 13249 6087736 2024-02-27 17:36:51.66 2024-02-27 17:36:51.66 4500 TIP 440587 19890 6087746 2024-02-27 17:37:30.807 2024-02-27 17:37:30.807 1000 FEE 440472 1472 6087747 2024-02-27 17:37:30.807 2024-02-27 17:37:30.807 9000 TIP 440472 21437 6087772 2024-02-27 17:39:37.192 2024-02-27 17:39:37.192 1000 FEE 440692 21238 6087773 2024-02-27 17:39:37.192 2024-02-27 17:39:37.192 9000 TIP 440692 16350 6087786 2024-02-27 17:40:50.606 2024-02-27 17:40:50.606 1100 FEE 440725 18772 6087787 2024-02-27 17:40:50.606 2024-02-27 17:40:50.606 9900 TIP 440725 17209 6087798 2024-02-27 17:40:53.232 2024-02-27 17:40:53.232 2200 FEE 440587 13246 6087799 2024-02-27 17:40:53.232 2024-02-27 17:40:53.232 19800 TIP 440587 14370 6087822 2024-02-27 17:41:26.287 2024-02-27 17:41:26.287 1000 FEE 440611 21037 6087823 2024-02-27 17:41:26.287 2024-02-27 17:41:26.287 9000 TIP 440611 20854 6087824 2024-02-27 17:41:52.34 2024-02-27 17:41:52.34 100 FEE 440711 15045 6087825 2024-02-27 17:41:52.34 2024-02-27 17:41:52.34 900 TIP 440711 5752 6087830 2024-02-27 17:42:24.806 2024-02-27 17:42:24.806 2100 FEE 440328 19289 6087831 2024-02-27 17:42:24.806 2024-02-27 17:42:24.806 18900 TIP 440328 20264 6087850 2024-02-27 17:43:23.325 2024-02-27 17:43:23.325 100 FEE 440812 732 6087851 2024-02-27 17:43:23.325 2024-02-27 17:43:23.325 900 TIP 440812 11145 6087866 2024-02-27 17:45:11.205 2024-02-27 17:45:11.205 1000 FEE 440812 4225 6087867 2024-02-27 17:45:11.205 2024-02-27 17:45:11.205 9000 TIP 440812 20208 6087868 2024-02-27 17:45:12.605 2024-02-27 17:45:12.605 1000 FEE 440862 19941 6087894 2024-02-27 17:46:57.978 2024-02-27 17:46:57.978 800 FEE 440791 698 6087895 2024-02-27 17:46:57.978 2024-02-27 17:46:57.978 7200 TIP 440791 11829 6087897 2024-02-27 17:47:05.544 2024-02-27 17:47:05.544 1600 FEE 440179 21599 6087898 2024-02-27 17:47:05.544 2024-02-27 17:47:05.544 14400 TIP 440179 21412 6087899 2024-02-27 17:47:32.793 2024-02-27 17:47:32.793 5000000 DONT_LIKE_THIS 440692 2402 6087922 2024-02-27 17:52:11.529 2024-02-27 17:52:11.529 5000 FEE 440725 19303 6087923 2024-02-27 17:52:11.529 2024-02-27 17:52:11.529 45000 TIP 440725 1881 6087941 2024-02-27 17:55:10.861 2024-02-27 17:55:10.861 1000 FEE 440873 15336 6087967 2024-02-27 17:59:02.684 2024-02-27 17:59:02.684 100 FEE 440828 2077 6087968 2024-02-27 17:59:02.684 2024-02-27 17:59:02.684 900 TIP 440828 14278 6087998 2024-02-27 18:01:49.836 2024-02-27 18:01:49.836 100000 DONT_LIKE_THIS 440870 7185 6088050 2024-02-27 18:12:07.865 2024-02-27 18:12:07.865 2100 FEE 440386 19458 6088051 2024-02-27 18:12:07.865 2024-02-27 18:12:07.865 18900 TIP 440386 21242 6088082 2024-02-27 18:14:34.816 2024-02-27 18:14:34.816 10000 FEE 440886 14258 6088091 2024-02-27 18:15:48.398 2024-02-27 18:15:48.398 2100 FEE 440622 15690 6088092 2024-02-27 18:15:48.398 2024-02-27 18:15:48.398 18900 TIP 440622 685 6088101 2024-02-27 18:15:56.83 2024-02-27 18:15:56.83 2100 FEE 440728 19117 6088102 2024-02-27 18:15:56.83 2024-02-27 18:15:56.83 18900 TIP 440728 15213 6088118 2024-02-27 18:16:35.128 2024-02-27 18:16:35.128 2100 FEE 440249 3656 6088119 2024-02-27 18:16:35.128 2024-02-27 18:16:35.128 18900 TIP 440249 20990 6088134 2024-02-27 18:16:49.57 2024-02-27 18:16:49.57 2100 FEE 440199 2774 6088135 2024-02-27 18:16:49.57 2024-02-27 18:16:49.57 18900 TIP 440199 9329 6088138 2024-02-27 18:16:51.731 2024-02-27 18:16:51.731 2100 FEE 440667 20683 6088139 2024-02-27 18:16:51.731 2024-02-27 18:16:51.731 18900 TIP 440667 20715 6088140 2024-02-27 18:16:51.921 2024-02-27 18:16:51.921 2100 FEE 440667 5794 6088141 2024-02-27 18:16:51.921 2024-02-27 18:16:51.921 18900 TIP 440667 1617 6088142 2024-02-27 18:16:52.145 2024-02-27 18:16:52.145 2100 FEE 440667 13921 6088143 2024-02-27 18:16:52.145 2024-02-27 18:16:52.145 18900 TIP 440667 21064 6088155 2024-02-27 18:17:15.942 2024-02-27 18:17:15.942 2100 FEE 440132 19007 6088156 2024-02-27 18:17:15.942 2024-02-27 18:17:15.942 18900 TIP 440132 11821 6088166 2024-02-27 18:18:09.536 2024-02-27 18:18:09.536 300 FEE 440663 9 6088167 2024-02-27 18:18:09.536 2024-02-27 18:18:09.536 2700 TIP 440663 5173 6088168 2024-02-27 18:18:24.82 2024-02-27 18:18:24.82 100 FEE 440858 19863 6088169 2024-02-27 18:18:24.82 2024-02-27 18:18:24.82 900 TIP 440858 3686 6088179 2024-02-27 18:19:10.813 2024-02-27 18:19:10.813 1000 POLL 440725 12265 6088190 2024-02-27 18:19:26.277 2024-02-27 18:19:26.277 2100 FEE 440729 21620 6088191 2024-02-27 18:19:26.277 2024-02-27 18:19:26.277 18900 TIP 440729 16214 6088198 2024-02-27 18:19:43.222 2024-02-27 18:19:43.222 2100 FEE 440128 2748 6088199 2024-02-27 18:19:43.222 2024-02-27 18:19:43.222 18900 TIP 440128 18040 6088210 2024-02-27 18:20:08.753 2024-02-27 18:20:08.753 2100 FEE 440132 768 6088211 2024-02-27 18:20:08.753 2024-02-27 18:20:08.753 18900 TIP 440132 5085 6088220 2024-02-27 18:20:20.237 2024-02-27 18:20:20.237 1000 FEE 440890 20663 6088268 2024-02-27 18:25:53.099 2024-02-27 18:25:53.099 0 FEE 440895 827 6088322 2024-02-27 18:33:57.862 2024-02-27 18:33:57.862 2100 FEE 440727 9107 6088323 2024-02-27 18:33:57.862 2024-02-27 18:33:57.862 18900 TIP 440727 760 6088326 2024-02-27 18:34:09.43 2024-02-27 18:34:09.43 100 FEE 440725 14404 6088327 2024-02-27 18:34:09.43 2024-02-27 18:34:09.43 900 TIP 440725 2749 6088351 2024-02-27 18:35:47.605 2024-02-27 18:35:47.605 2100 FEE 440765 627 6088352 2024-02-27 18:35:47.605 2024-02-27 18:35:47.605 18900 TIP 440765 18138 6088355 2024-02-27 18:36:02.103 2024-02-27 18:36:02.103 1000 FEE 440908 1576 6088372 2024-02-27 18:36:47.354 2024-02-27 18:36:47.354 2100 FEE 440771 18842 6088373 2024-02-27 18:36:47.354 2024-02-27 18:36:47.354 18900 TIP 440771 736 6088390 2024-02-27 18:37:15.362 2024-02-27 18:37:15.362 100 FEE 440764 5173 6088391 2024-02-27 18:37:15.362 2024-02-27 18:37:15.362 900 TIP 440764 929 6088394 2024-02-27 18:37:25.763 2024-02-27 18:37:25.763 1000 FEE 440843 21453 6088395 2024-02-27 18:37:25.763 2024-02-27 18:37:25.763 9000 TIP 440843 17166 6088400 2024-02-27 18:37:26.728 2024-02-27 18:37:26.728 1000 FEE 440843 18659 6088401 2024-02-27 18:37:26.728 2024-02-27 18:37:26.728 9000 TIP 440843 21491 6088418 2024-02-27 18:37:59.872 2024-02-27 18:37:59.872 1000 FEE 440912 4173 6088424 2024-02-27 18:38:13.943 2024-02-27 18:38:13.943 1000 FEE 440502 18114 6088425 2024-02-27 18:38:13.943 2024-02-27 18:38:13.943 9000 TIP 440502 9418 6088426 2024-02-27 18:38:14.22 2024-02-27 18:38:14.22 4000 FEE 440902 14045 6088427 2024-02-27 18:38:14.22 2024-02-27 18:38:14.22 36000 TIP 440902 18836 6088448 2024-02-27 18:38:21.464 2024-02-27 18:38:21.464 1000 FEE 440875 7587 6088449 2024-02-27 18:38:21.464 2024-02-27 18:38:21.464 9000 TIP 440875 20430 6088503 2024-02-27 18:42:57.601 2024-02-27 18:42:57.601 700 FEE 440894 1713 6088504 2024-02-27 18:42:57.601 2024-02-27 18:42:57.601 6300 TIP 440894 11073 6088567 2024-02-27 18:49:53.783 2024-02-27 18:49:53.783 1000 FEE 440922 9307 6088568 2024-02-27 18:49:53.783 2024-02-27 18:49:53.783 9000 TIP 440922 17552 6088591 2024-02-27 18:52:21.886 2024-02-27 18:52:21.886 1000 FEE 440929 15463 6088592 2024-02-27 18:52:21.886 2024-02-27 18:52:21.886 9000 TIP 440929 21472 6088595 2024-02-27 18:52:22.423 2024-02-27 18:52:22.423 1000 FEE 440929 21269 6088596 2024-02-27 18:52:22.423 2024-02-27 18:52:22.423 9000 TIP 440929 9433 6088609 2024-02-27 18:52:46.627 2024-02-27 18:52:46.627 1000 FEE 440920 8541 6088610 2024-02-27 18:52:46.627 2024-02-27 18:52:46.627 9000 TIP 440920 19018 6088623 2024-02-27 18:54:00.727 2024-02-27 18:54:00.727 1000 FEE 440911 16097 6087826 2024-02-27 17:42:03.442 2024-02-27 17:42:03.442 1000 STREAM 141924 21614 6087962 2024-02-27 17:57:34.896 2024-02-27 17:57:34.896 2100 FEE 439844 16754 6087963 2024-02-27 17:57:34.896 2024-02-27 17:57:34.896 18900 TIP 439844 6700 6088046 2024-02-27 18:12:02.618 2024-02-27 18:12:02.618 2100 FEE 440520 13055 6088047 2024-02-27 18:12:02.618 2024-02-27 18:12:02.618 18900 TIP 440520 8168 6088048 2024-02-27 18:12:02.81 2024-02-27 18:12:02.81 2100 FEE 440520 882 6088049 2024-02-27 18:12:02.81 2024-02-27 18:12:02.81 18900 TIP 440520 14650 6088064 2024-02-27 18:13:21.593 2024-02-27 18:13:21.593 2100 FEE 440859 20889 6088065 2024-02-27 18:13:21.593 2024-02-27 18:13:21.593 18900 TIP 440859 20619 6088069 2024-02-27 18:13:53.037 2024-02-27 18:13:53.037 2100 FEE 440768 13553 6088070 2024-02-27 18:13:53.037 2024-02-27 18:13:53.037 18900 TIP 440768 17237 6088086 2024-02-27 18:15:21.855 2024-02-27 18:15:21.855 2100 FEE 440764 12422 6088087 2024-02-27 18:15:21.855 2024-02-27 18:15:21.855 18900 TIP 440764 18311 6088097 2024-02-27 18:15:56.471 2024-02-27 18:15:56.471 2100 FEE 440728 21619 6088026 2024-02-27 18:09:06.071 2024-02-27 18:09:06.071 1000 FEE 440570 19103 6088027 2024-02-27 18:09:06.071 2024-02-27 18:09:06.071 9000 TIP 440570 12951 6088028 2024-02-27 18:09:33.507 2024-02-27 18:09:33.507 14200 FEE 368665 18836 6088029 2024-02-27 18:09:33.507 2024-02-27 18:09:33.507 127800 TIP 368665 7760 6088078 2024-02-27 18:14:15.164 2024-02-27 18:14:15.164 12100 FEE 440547 4958 6088079 2024-02-27 18:14:15.164 2024-02-27 18:14:15.164 108900 TIP 440547 1046 6088088 2024-02-27 18:15:22.33 2024-02-27 18:15:22.33 10000 FEE 440874 15526 6088089 2024-02-27 18:15:22.33 2024-02-27 18:15:22.33 90000 TIP 440874 1515 6088099 2024-02-27 18:15:56.634 2024-02-27 18:15:56.634 2100 FEE 440728 10934 6088100 2024-02-27 18:15:56.634 2024-02-27 18:15:56.634 18900 TIP 440728 19537 6088110 2024-02-27 18:16:10.916 2024-02-27 18:16:10.916 900 FEE 440790 12245 6088111 2024-02-27 18:16:10.916 2024-02-27 18:16:10.916 8100 TIP 440790 11522 6088128 2024-02-27 18:16:48.926 2024-02-27 18:16:48.926 2100 FEE 440199 749 6088129 2024-02-27 18:16:48.926 2024-02-27 18:16:48.926 18900 TIP 440199 20218 6088146 2024-02-27 18:16:58.956 2024-02-27 18:16:58.956 2100 FEE 440693 21222 6088147 2024-02-27 18:16:58.956 2024-02-27 18:16:58.956 18900 TIP 440693 17707 6088159 2024-02-27 18:17:27.994 2024-02-27 18:17:27.994 1000 POLL 440725 2832 6088182 2024-02-27 18:19:25.229 2024-02-27 18:19:25.229 2100 FEE 440729 13622 6088183 2024-02-27 18:19:25.229 2024-02-27 18:19:25.229 18900 TIP 440729 9364 6088184 2024-02-27 18:19:25.391 2024-02-27 18:19:25.391 2100 FEE 440729 14489 6088185 2024-02-27 18:19:25.391 2024-02-27 18:19:25.391 18900 TIP 440729 10638 6088201 2024-02-27 18:19:52.899 2024-02-27 18:19:52.899 2100 FEE 440647 21540 6088202 2024-02-27 18:19:52.899 2024-02-27 18:19:52.899 18900 TIP 440647 19843 6088205 2024-02-27 18:19:55.864 2024-02-27 18:19:55.864 2100 FEE 440561 8326 6088206 2024-02-27 18:19:55.864 2024-02-27 18:19:55.864 18900 TIP 440561 20381 6088229 2024-02-27 18:20:40.035 2024-02-27 18:20:40.035 2100 FEE 440633 1628 6088230 2024-02-27 18:20:40.035 2024-02-27 18:20:40.035 18900 TIP 440633 11897 6088255 2024-02-27 18:23:25.69 2024-02-27 18:23:25.69 1000 FEE 440692 17976 6088256 2024-02-27 18:23:25.69 2024-02-27 18:23:25.69 9000 TIP 440692 20424 6088260 2024-02-27 18:24:31.515 2024-02-27 18:24:31.515 21000 DONT_LIKE_THIS 440781 21371 6088266 2024-02-27 18:25:37.252 2024-02-27 18:25:37.252 1000 FEE 440894 646 6088278 2024-02-27 18:27:56.54 2024-02-27 18:27:56.54 3500 FEE 440898 2256 6088279 2024-02-27 18:27:56.54 2024-02-27 18:27:56.54 31500 TIP 440898 9 6088305 2024-02-27 18:32:12.563 2024-02-27 18:32:12.563 100 FEE 440898 10719 6088306 2024-02-27 18:32:12.563 2024-02-27 18:32:12.563 900 TIP 440898 13547 6088310 2024-02-27 18:32:47.575 2024-02-27 18:32:47.575 1000 POLL 440725 1175 6088316 2024-02-27 18:33:20.329 2024-02-27 18:33:20.329 2100 FEE 440875 19243 6088317 2024-02-27 18:33:20.329 2024-02-27 18:33:20.329 18900 TIP 440875 21303 6088388 2024-02-27 18:37:14.778 2024-02-27 18:37:14.778 100 FEE 440764 12272 6088389 2024-02-27 18:37:14.778 2024-02-27 18:37:14.778 900 TIP 440764 1426 6088396 2024-02-27 18:37:25.977 2024-02-27 18:37:25.977 1000 FEE 440843 12102 6088397 2024-02-27 18:37:25.977 2024-02-27 18:37:25.977 9000 TIP 440843 13767 6088415 2024-02-27 18:37:50.4 2024-02-27 18:37:50.4 100 FEE 439760 1960 6088416 2024-02-27 18:37:50.4 2024-02-27 18:37:50.4 900 TIP 439760 2213 6088428 2024-02-27 18:38:17.517 2024-02-27 18:38:17.517 1000 FEE 440875 19841 6088429 2024-02-27 18:38:17.517 2024-02-27 18:38:17.517 9000 TIP 440875 8870 6088434 2024-02-27 18:38:18.885 2024-02-27 18:38:18.885 1000 FEE 440875 20706 6088435 2024-02-27 18:38:18.885 2024-02-27 18:38:18.885 9000 TIP 440875 738 6088447 2024-02-27 18:38:21.288 2024-02-27 18:38:21.288 1000 FEE 440914 16966 6088462 2024-02-27 18:38:51.237 2024-02-27 18:38:51.237 0 FEE 440909 12951 6088472 2024-02-27 18:40:22.925 2024-02-27 18:40:22.925 1000 FEE 440917 3979 6088476 2024-02-27 18:41:59.585 2024-02-27 18:41:59.585 3000 FEE 440642 2402 6088477 2024-02-27 18:41:59.585 2024-02-27 18:41:59.585 27000 TIP 440642 19785 6088495 2024-02-27 18:42:52.636 2024-02-27 18:42:52.636 700 FEE 440894 4388 6088496 2024-02-27 18:42:52.636 2024-02-27 18:42:52.636 6300 TIP 440894 1012 6088499 2024-02-27 18:42:55.97 2024-02-27 18:42:55.97 700 FEE 440894 19352 6088500 2024-02-27 18:42:55.97 2024-02-27 18:42:55.97 6300 TIP 440894 19690 6088506 2024-02-27 18:43:07.114 2024-02-27 18:43:07.114 1000 FEE 440742 21036 6088507 2024-02-27 18:43:07.114 2024-02-27 18:43:07.114 9000 TIP 440742 5904 6088519 2024-02-27 18:44:35.421 2024-02-27 18:44:35.421 2100 FEE 440908 1195 6088520 2024-02-27 18:44:35.421 2024-02-27 18:44:35.421 18900 TIP 440908 21051 6088545 2024-02-27 18:47:43.676 2024-02-27 18:47:43.676 3300 FEE 440663 17707 6088546 2024-02-27 18:47:43.676 2024-02-27 18:47:43.676 29700 TIP 440663 15858 6088550 2024-02-27 18:48:33.927 2024-02-27 18:48:33.927 2100 FEE 440925 20023 6088551 2024-02-27 18:48:33.927 2024-02-27 18:48:33.927 18900 TIP 440925 7899 6088552 2024-02-27 18:48:39.22 2024-02-27 18:48:39.22 2100 FEE 440916 20717 6088553 2024-02-27 18:48:39.22 2024-02-27 18:48:39.22 18900 TIP 440916 14037 6088557 2024-02-27 18:49:12.349 2024-02-27 18:49:12.349 1000 FEE 440926 19284 6088574 2024-02-27 18:50:10.528 2024-02-27 18:50:10.528 1000 FEE 440928 13327 6088577 2024-02-27 18:50:14.735 2024-02-27 18:50:14.735 4000 FEE 440926 5500 6088578 2024-02-27 18:50:14.735 2024-02-27 18:50:14.735 36000 TIP 440926 16354 6088629 2024-02-27 18:54:02.697 2024-02-27 18:54:02.697 1000 FEE 440911 18199 6088630 2024-02-27 18:54:02.697 2024-02-27 18:54:02.697 9000 TIP 440911 658 6088632 2024-02-27 18:54:03.483 2024-02-27 18:54:03.483 1000 FEE 440911 18412 6088633 2024-02-27 18:54:03.483 2024-02-27 18:54:03.483 9000 TIP 440911 18817 6088644 2024-02-27 18:54:13.67 2024-02-27 18:54:13.67 2100 FEE 440931 21539 6088645 2024-02-27 18:54:13.67 2024-02-27 18:54:13.67 18900 TIP 440931 769 6088646 2024-02-27 18:54:15.235 2024-02-27 18:54:15.235 2100 FEE 440907 1596 6088075 2024-02-27 18:14:10.299 2024-02-27 18:14:10.299 9000 TIP 439792 8998 6088080 2024-02-27 18:14:25.301 2024-02-27 18:14:25.301 12100 FEE 440443 8059 6088081 2024-02-27 18:14:25.301 2024-02-27 18:14:25.301 108900 TIP 440443 1631 6088112 2024-02-27 18:16:12.388 2024-02-27 18:16:12.388 9000 FEE 440790 9816 6088113 2024-02-27 18:16:12.388 2024-02-27 18:16:12.388 81000 TIP 440790 20901 6088136 2024-02-27 18:16:51.575 2024-02-27 18:16:51.575 2100 FEE 440667 2773 6088137 2024-02-27 18:16:51.575 2024-02-27 18:16:51.575 18900 TIP 440667 5829 6088144 2024-02-27 18:16:52.433 2024-02-27 18:16:52.433 2100 FEE 440667 687 6088145 2024-02-27 18:16:52.433 2024-02-27 18:16:52.433 18900 TIP 440667 19906 6088157 2024-02-27 18:17:16.157 2024-02-27 18:17:16.157 4200 FEE 440132 8985 6088158 2024-02-27 18:17:16.157 2024-02-27 18:17:16.157 37800 TIP 440132 11821 6088170 2024-02-27 18:18:25.599 2024-02-27 18:18:25.599 900 FEE 440858 9809 6088171 2024-02-27 18:18:25.599 2024-02-27 18:18:25.599 8100 TIP 440858 16769 6088188 2024-02-27 18:19:25.787 2024-02-27 18:19:25.787 2100 FEE 440729 1046 6088189 2024-02-27 18:19:25.787 2024-02-27 18:19:25.787 18900 TIP 440729 12562 6088203 2024-02-27 18:19:54.292 2024-02-27 18:19:54.292 2100 FEE 440647 14465 6088204 2024-02-27 18:19:54.292 2024-02-27 18:19:54.292 18900 TIP 440647 6030 6088212 2024-02-27 18:20:08.881 2024-02-27 18:20:08.881 2100 FEE 440132 2639 6088213 2024-02-27 18:20:08.881 2024-02-27 18:20:08.881 18900 TIP 440132 20979 6088214 2024-02-27 18:20:09.086 2024-02-27 18:20:09.086 2100 FEE 440132 9348 6088215 2024-02-27 18:20:09.086 2024-02-27 18:20:09.086 18900 TIP 440132 19583 6088232 2024-02-27 18:21:03.428 2024-02-27 18:21:03.428 500 FEE 440802 1803 6088233 2024-02-27 18:21:03.428 2024-02-27 18:21:03.428 4500 TIP 440802 11609 6088239 2024-02-27 18:21:28.325 2024-02-27 18:21:28.325 2100 FEE 440858 1209 6088240 2024-02-27 18:21:28.325 2024-02-27 18:21:28.325 18900 TIP 440858 11760 6088263 2024-02-27 18:24:50.618 2024-02-27 18:24:50.618 1000 FEE 440875 18877 6088264 2024-02-27 18:24:50.618 2024-02-27 18:24:50.618 9000 TIP 440875 18220 6088270 2024-02-27 18:26:12.879 2024-02-27 18:26:12.879 10000 FEE 440094 14731 6088271 2024-02-27 18:26:12.879 2024-02-27 18:26:12.879 90000 TIP 440094 5449 6088293 2024-02-27 18:30:41.088 2024-02-27 18:30:41.088 2500 FEE 440641 19837 6088294 2024-02-27 18:30:41.088 2024-02-27 18:30:41.088 22500 TIP 440641 21208 6088296 2024-02-27 18:31:07.361 2024-02-27 18:31:07.361 4000 FEE 440898 11145 6088297 2024-02-27 18:31:07.361 2024-02-27 18:31:07.361 36000 TIP 440898 8400 6088334 2024-02-27 18:34:32.026 2024-02-27 18:34:32.026 2500 FEE 440028 18402 6088335 2024-02-27 18:34:32.026 2024-02-27 18:34:32.026 22500 TIP 440028 11075 6088338 2024-02-27 18:34:48.065 2024-02-27 18:34:48.065 100 FEE 439895 8176 6088339 2024-02-27 18:34:48.065 2024-02-27 18:34:48.065 900 TIP 439895 16543 6088349 2024-02-27 18:35:31.683 2024-02-27 18:35:31.683 2100 FEE 440822 14990 6088350 2024-02-27 18:35:31.683 2024-02-27 18:35:31.683 18900 TIP 440822 20439 6088366 2024-02-27 18:36:45.652 2024-02-27 18:36:45.652 1000 FEE 440891 7389 6088367 2024-02-27 18:36:45.652 2024-02-27 18:36:45.652 9000 TIP 440891 20964 6088370 2024-02-27 18:36:45.87 2024-02-27 18:36:45.87 1000 FEE 440891 1726 6088371 2024-02-27 18:36:45.87 2024-02-27 18:36:45.87 9000 TIP 440891 769 6088376 2024-02-27 18:36:57.045 2024-02-27 18:36:57.045 100 FEE 440633 777 6088377 2024-02-27 18:36:57.045 2024-02-27 18:36:57.045 900 TIP 440633 3353 6088380 2024-02-27 18:36:59.938 2024-02-27 18:36:59.938 21000 FEE 440911 15577 6088407 2024-02-27 18:37:44.773 2024-02-27 18:37:44.773 100 FEE 439917 13133 6088408 2024-02-27 18:37:44.773 2024-02-27 18:37:44.773 900 TIP 439917 6335 6088422 2024-02-27 18:38:12.513 2024-02-27 18:38:12.513 1000 FEE 440522 17690 6088423 2024-02-27 18:38:12.513 2024-02-27 18:38:12.513 9000 TIP 440522 3461 6088436 2024-02-27 18:38:19.368 2024-02-27 18:38:19.368 1000 FEE 440875 7659 6088437 2024-02-27 18:38:19.368 2024-02-27 18:38:19.368 9000 TIP 440875 18446 6088438 2024-02-27 18:38:19.774 2024-02-27 18:38:19.774 1000 FEE 440875 14381 6088439 2024-02-27 18:38:19.774 2024-02-27 18:38:19.774 9000 TIP 440875 19886 6088443 2024-02-27 18:38:20.581 2024-02-27 18:38:20.581 1000 FEE 440875 21463 6088444 2024-02-27 18:38:20.581 2024-02-27 18:38:20.581 9000 TIP 440875 8416 6088445 2024-02-27 18:38:21.047 2024-02-27 18:38:21.047 1000 FEE 440875 17707 6088446 2024-02-27 18:38:21.047 2024-02-27 18:38:21.047 9000 TIP 440875 1713 6088466 2024-02-27 18:39:23.599 2024-02-27 18:39:23.599 1000 FEE 440916 18659 6088479 2024-02-27 18:42:14.68 2024-02-27 18:42:14.68 5000 FEE 440920 14791 6088508 2024-02-27 18:43:07.498 2024-02-27 18:43:07.498 1000 FEE 440742 5359 6088509 2024-02-27 18:43:07.498 2024-02-27 18:43:07.498 9000 TIP 440742 636 6088535 2024-02-27 18:47:31.92 2024-02-27 18:47:31.92 3300 FEE 440725 16177 6088536 2024-02-27 18:47:31.92 2024-02-27 18:47:31.92 29700 TIP 440725 18076 6088539 2024-02-27 18:47:34.014 2024-02-27 18:47:34.014 3300 FEE 440622 21048 6088540 2024-02-27 18:47:34.014 2024-02-27 18:47:34.014 29700 TIP 440622 20504 6088560 2024-02-27 18:49:50.676 2024-02-27 18:49:50.676 1000 FEE 440922 2775 6088561 2024-02-27 18:49:50.676 2024-02-27 18:49:50.676 9000 TIP 440922 2309 6088589 2024-02-27 18:52:21.541 2024-02-27 18:52:21.541 1000 FEE 440929 19759 6088590 2024-02-27 18:52:21.541 2024-02-27 18:52:21.541 9000 TIP 440929 19570 6088611 2024-02-27 18:52:46.774 2024-02-27 18:52:46.774 900 FEE 440886 13782 6088612 2024-02-27 18:52:46.774 2024-02-27 18:52:46.774 8100 TIP 440886 21455 6088617 2024-02-27 18:53:28.331 2024-02-27 18:53:28.331 1000 FEE 440913 1472 6088618 2024-02-27 18:53:28.331 2024-02-27 18:53:28.331 9000 TIP 440913 21506 6088640 2024-02-27 18:54:08.195 2024-02-27 18:54:08.195 1000 FEE 440931 7998 6088641 2024-02-27 18:54:08.195 2024-02-27 18:54:08.195 9000 TIP 440931 18280 6088642 2024-02-27 18:54:12.928 2024-02-27 18:54:12.928 2100 FEE 440920 11275 6088643 2024-02-27 18:54:12.928 2024-02-27 18:54:12.928 18900 TIP 440920 8080 6088658 2024-02-27 18:55:13.306 2024-02-27 18:55:13.306 1000 FEE 440911 18101 6088659 2024-02-27 18:55:13.306 2024-02-27 18:55:13.306 9000 TIP 440911 21609 6088676 2024-02-27 18:55:32.685 2024-02-27 18:55:32.685 2100 FEE 440764 19267 6088677 2024-02-27 18:55:32.685 2024-02-27 18:55:32.685 18900 TIP 440764 19193 6088678 2024-02-27 18:55:42.191 2024-02-27 18:55:42.191 1000 FEE 440911 8400 6088679 2024-02-27 18:55:42.191 2024-02-27 18:55:42.191 9000 TIP 440911 11417 6088695 2024-02-27 18:56:53.735 2024-02-27 18:56:53.735 7700 FEE 440935 8176 6088696 2024-02-27 18:56:53.735 2024-02-27 18:56:53.735 69300 TIP 440935 11776 6088708 2024-02-27 18:57:29.185 2024-02-27 18:57:29.185 2100 FEE 440915 638 6088709 2024-02-27 18:57:29.185 2024-02-27 18:57:29.185 18900 TIP 440915 18494 6088746 2024-02-27 19:00:24.34 2024-02-27 19:00:24.34 7700 FEE 440898 6573 6088747 2024-02-27 19:00:24.34 2024-02-27 19:00:24.34 69300 TIP 440898 8459 6088772 2024-02-27 19:01:18.001 2024-02-27 19:01:18.001 0 FEE 440940 9921 6088773 2024-02-27 19:01:22.424 2024-02-27 19:01:22.424 2100 FEE 440923 17523 6088774 2024-02-27 19:01:22.424 2024-02-27 19:01:22.424 18900 TIP 440923 5590 6088775 2024-02-27 19:01:35.954 2024-02-27 19:01:35.954 2100 FEE 440891 19878 6088776 2024-02-27 19:01:35.954 2024-02-27 19:01:35.954 18900 TIP 440891 3683 6088787 2024-02-27 19:03:09.322 2024-02-27 19:03:09.322 100 FEE 439822 17147 6088788 2024-02-27 19:03:09.322 2024-02-27 19:03:09.322 900 TIP 439822 13399 6088810 2024-02-27 19:04:13.152 2024-02-27 19:04:13.152 900 FEE 440860 3213 6088811 2024-02-27 19:04:13.152 2024-02-27 19:04:13.152 8100 TIP 440860 17209 6088814 2024-02-27 19:04:36.645 2024-02-27 19:04:36.645 1000 FEE 440870 11866 6088815 2024-02-27 19:04:36.645 2024-02-27 19:04:36.645 9000 TIP 440870 15484 6088827 2024-02-27 19:06:02.621 2024-02-27 19:06:02.621 100000 FEE 440948 18409 6088835 2024-02-27 19:07:09.798 2024-02-27 19:07:09.798 0 FEE 440943 19394 6088837 2024-02-27 19:07:30.876 2024-02-27 19:07:30.876 1000 POLL 440725 19501 6088843 2024-02-27 19:08:58.074 2024-02-27 19:08:58.074 1000 FEE 440952 14357 6088098 2024-02-27 18:15:56.471 2024-02-27 18:15:56.471 18900 TIP 440728 19394 6088103 2024-02-27 18:15:56.95 2024-02-27 18:15:56.95 2100 FEE 440728 18529 6088104 2024-02-27 18:15:56.95 2024-02-27 18:15:56.95 18900 TIP 440728 2264 6088114 2024-02-27 18:16:29.907 2024-02-27 18:16:29.907 1000 FEE 440873 18717 6088115 2024-02-27 18:16:29.907 2024-02-27 18:16:29.907 9000 TIP 440873 2525 6088120 2024-02-27 18:16:35.967 2024-02-27 18:16:35.967 2100 FEE 440658 17570 6088121 2024-02-27 18:16:35.967 2024-02-27 18:16:35.967 18900 TIP 440658 7673 6088160 2024-02-27 18:17:49.855 2024-02-27 18:17:49.855 10000 FEE 440888 20264 6088173 2024-02-27 18:19:05.127 2024-02-27 18:19:05.127 100 FEE 440870 21522 6088174 2024-02-27 18:19:05.127 2024-02-27 18:19:05.127 900 TIP 440870 20897 6088186 2024-02-27 18:19:25.604 2024-02-27 18:19:25.604 2100 FEE 440729 21441 6088187 2024-02-27 18:19:25.604 2024-02-27 18:19:25.604 18900 TIP 440729 13097 6088196 2024-02-27 18:19:42.702 2024-02-27 18:19:42.702 2100 FEE 440128 21427 6088197 2024-02-27 18:19:42.702 2024-02-27 18:19:42.702 18900 TIP 440128 1784 6088200 2024-02-27 18:19:47.748 2024-02-27 18:19:47.748 1000 FEE 440889 2525 6088216 2024-02-27 18:20:09.253 2024-02-27 18:20:09.253 2100 FEE 440132 20594 6088217 2024-02-27 18:20:09.253 2024-02-27 18:20:09.253 18900 TIP 440132 19309 6088221 2024-02-27 18:20:28.533 2024-02-27 18:20:28.533 1000 FEE 440564 4118 6088222 2024-02-27 18:20:28.533 2024-02-27 18:20:28.533 9000 TIP 440564 15617 6088225 2024-02-27 18:20:29.924 2024-02-27 18:20:29.924 1000 FEE 440564 17030 6088226 2024-02-27 18:20:29.924 2024-02-27 18:20:29.924 9000 TIP 440564 13398 6088238 2024-02-27 18:21:07.597 2024-02-27 18:21:07.597 17000 FEE 440891 18862 6088281 2024-02-27 18:29:01.233 2024-02-27 18:29:01.233 3500 FEE 440893 18116 6088282 2024-02-27 18:29:01.233 2024-02-27 18:29:01.233 31500 TIP 440893 15146 6088283 2024-02-27 18:29:02.486 2024-02-27 18:29:02.486 1000 FEE 440899 626 6088290 2024-02-27 18:30:32.503 2024-02-27 18:30:32.503 1000 FEE 440900 19381 6088298 2024-02-27 18:31:13.43 2024-02-27 18:31:13.43 1000 FEE 440901 1261 6088343 2024-02-27 18:35:03.207 2024-02-27 18:35:03.207 2100 FEE 440739 18170 6088344 2024-02-27 18:35:03.207 2024-02-27 18:35:03.207 18900 TIP 440739 2577 6088347 2024-02-27 18:35:27.128 2024-02-27 18:35:27.128 2100 FEE 440791 18119 6088348 2024-02-27 18:35:27.128 2024-02-27 18:35:27.128 18900 TIP 440791 21116 6088361 2024-02-27 18:36:21.814 2024-02-27 18:36:21.814 1000 FEE 440910 19235 6088368 2024-02-27 18:36:45.68 2024-02-27 18:36:45.68 1000 FEE 440891 17321 6088369 2024-02-27 18:36:45.68 2024-02-27 18:36:45.68 9000 TIP 440891 19506 6088398 2024-02-27 18:37:26.644 2024-02-27 18:37:26.644 1000 FEE 440843 21541 6088399 2024-02-27 18:37:26.644 2024-02-27 18:37:26.644 9000 TIP 440843 15180 6088405 2024-02-27 18:37:33.325 2024-02-27 18:37:33.325 100 FEE 440056 979 6088406 2024-02-27 18:37:33.325 2024-02-27 18:37:33.325 900 TIP 440056 17331 6088411 2024-02-27 18:37:45.954 2024-02-27 18:37:45.954 4000 FEE 440911 5791 6088412 2024-02-27 18:37:45.954 2024-02-27 18:37:45.954 36000 TIP 440911 13406 6088441 2024-02-27 18:38:20.152 2024-02-27 18:38:20.152 1000 FEE 440875 9354 6088442 2024-02-27 18:38:20.152 2024-02-27 18:38:20.152 9000 TIP 440875 8242 6088465 2024-02-27 18:39:13.373 2024-02-27 18:39:13.373 0 FEE 440909 16879 6088468 2024-02-27 18:40:16.716 2024-02-27 18:40:16.716 100 FEE 440875 5978 6088469 2024-02-27 18:40:16.716 2024-02-27 18:40:16.716 900 TIP 440875 8059 6088483 2024-02-27 18:42:35.662 2024-02-27 18:42:35.662 1000 FEE 440764 9352 6088484 2024-02-27 18:42:35.662 2024-02-27 18:42:35.662 9000 TIP 440764 15159 6088487 2024-02-27 18:42:36.413 2024-02-27 18:42:36.413 1000 FEE 440764 21254 6088488 2024-02-27 18:42:36.413 2024-02-27 18:42:36.413 9000 TIP 440764 11523 6088501 2024-02-27 18:42:56.602 2024-02-27 18:42:56.602 10000 FEE 440729 20109 6088502 2024-02-27 18:42:56.602 2024-02-27 18:42:56.602 90000 TIP 440729 19292 6088526 2024-02-27 18:45:22.772 2024-02-27 18:45:22.772 2500 FEE 440826 15336 6088527 2024-02-27 18:45:22.772 2024-02-27 18:45:22.772 22500 TIP 440826 8133 6088531 2024-02-27 18:47:31.24 2024-02-27 18:47:31.24 3300 FEE 440725 12483 6088532 2024-02-27 18:47:31.24 2024-02-27 18:47:31.24 29700 TIP 440725 11678 6088558 2024-02-27 18:49:23.797 2024-02-27 18:49:23.797 1000 FEE 440854 12368 6088559 2024-02-27 18:49:23.797 2024-02-27 18:49:23.797 9000 TIP 440854 18174 6088562 2024-02-27 18:49:51.357 2024-02-27 18:49:51.357 1000 FEE 440927 19854 6088569 2024-02-27 18:49:54.386 2024-02-27 18:49:54.386 1000 FEE 440922 18380 6088570 2024-02-27 18:49:54.386 2024-02-27 18:49:54.386 9000 TIP 440922 16250 6088582 2024-02-27 18:50:59.287 2024-02-27 18:50:59.287 4000 FEE 440927 18470 6088583 2024-02-27 18:50:59.287 2024-02-27 18:50:59.287 36000 TIP 440927 4238 6088597 2024-02-27 18:52:29.911 2024-02-27 18:52:29.911 100 FEE 440875 21228 6088598 2024-02-27 18:52:29.911 2024-02-27 18:52:29.911 900 TIP 440875 13927 6088599 2024-02-27 18:52:30.275 2024-02-27 18:52:30.275 3100 FEE 440911 17446 6088600 2024-02-27 18:52:30.275 2024-02-27 18:52:30.275 27900 TIP 440911 18500 6088601 2024-02-27 18:52:30.391 2024-02-27 18:52:30.391 900 FEE 440875 11417 6088602 2024-02-27 18:52:30.391 2024-02-27 18:52:30.391 8100 TIP 440875 21314 6088614 2024-02-27 18:53:24.012 2024-02-27 18:53:24.012 15000 FEE 440931 2775 6088615 2024-02-27 18:53:27.242 2024-02-27 18:53:27.242 1000 FEE 440902 20799 6088616 2024-02-27 18:53:27.242 2024-02-27 18:53:27.242 9000 TIP 440902 18919 6088656 2024-02-27 18:55:12.358 2024-02-27 18:55:12.358 1000 FEE 440911 1596 6088657 2024-02-27 18:55:12.358 2024-02-27 18:55:12.358 9000 TIP 440911 18363 6088670 2024-02-27 18:55:20.401 2024-02-27 18:55:20.401 2100 FEE 440727 16556 6088671 2024-02-27 18:55:20.401 2024-02-27 18:55:20.401 18900 TIP 440727 6555 6088719 2024-02-27 18:58:59.566 2024-02-27 18:58:59.566 100 FEE 440531 14357 6088720 2024-02-27 18:58:59.566 2024-02-27 18:58:59.566 900 TIP 440531 19158 6088722 2024-02-27 18:59:09.332 2024-02-27 18:59:09.332 100 FEE 440583 18453 6088723 2024-02-27 18:59:09.332 2024-02-27 18:59:09.332 900 TIP 440583 21398 6088739 2024-02-27 19:00:07.893 2024-02-27 19:00:07.893 77000 DONT_LIKE_THIS 440903 9843 6088754 2024-02-27 19:00:25.554 2024-02-27 19:00:25.554 7700 FEE 440898 9084 6088755 2024-02-27 19:00:25.554 2024-02-27 19:00:25.554 69300 TIP 440898 20087 6088770 2024-02-27 19:01:14.515 2024-02-27 19:01:14.515 2100 FEE 440911 20023 6088771 2024-02-27 19:01:14.515 2024-02-27 19:01:14.515 18900 TIP 440911 9169 6088838 2024-02-27 19:07:37.79 2024-02-27 19:07:37.79 1000 FEE 440950 11458 6088839 2024-02-27 19:08:00.231 2024-02-27 19:08:00.231 1000 FEE 440951 13217 6088855 2024-02-27 19:10:00.808 2024-02-27 19:10:00.808 100 FEE 440952 19329 6088856 2024-02-27 19:10:00.808 2024-02-27 19:10:00.808 900 TIP 440952 21269 6088863 2024-02-27 19:10:02.037 2024-02-27 19:10:02.037 100 FEE 440952 4167 6088864 2024-02-27 19:10:02.037 2024-02-27 19:10:02.037 900 TIP 440952 12024 6088871 2024-02-27 19:10:38.989 2024-02-27 19:10:38.989 1000 POLL 440725 5085 6088890 2024-02-27 19:15:44.429 2024-02-27 19:15:44.429 1000 FEE 440907 6160 6088891 2024-02-27 19:15:44.429 2024-02-27 19:15:44.429 9000 TIP 440907 21155 6088898 2024-02-27 19:17:13.833 2024-02-27 19:17:13.833 100000 FEE 440957 11498 6088920 2024-02-27 19:20:19.15 2024-02-27 19:20:19.15 1000 FEE 440936 694 6088921 2024-02-27 19:20:19.15 2024-02-27 19:20:19.15 9000 TIP 440936 12911 6088934 2024-02-27 19:20:58.397 2024-02-27 19:20:58.397 2100 FEE 440622 8360 6088935 2024-02-27 19:20:58.397 2024-02-27 19:20:58.397 18900 TIP 440622 19524 6088177 2024-02-27 18:19:08.55 2024-02-27 18:19:08.55 2100 FEE 440725 15549 6088178 2024-02-27 18:19:08.55 2024-02-27 18:19:08.55 18900 TIP 440725 10094 6088180 2024-02-27 18:19:15.802 2024-02-27 18:19:15.802 10000 FEE 373998 6688 6088181 2024-02-27 18:19:15.802 2024-02-27 18:19:15.802 90000 TIP 373998 17212 6088194 2024-02-27 18:19:28.927 2024-02-27 18:19:28.927 2100 FEE 440729 1145 6088195 2024-02-27 18:19:28.927 2024-02-27 18:19:28.927 18900 TIP 440729 9450 6088253 2024-02-27 18:22:58.705 2024-02-27 18:22:58.705 100000 FEE 440893 16724 6088257 2024-02-27 18:23:41.96 2024-02-27 18:23:41.96 2100 FEE 440845 21281 6088258 2024-02-27 18:23:41.96 2024-02-27 18:23:41.96 18900 TIP 440845 15367 6088261 2024-02-27 18:24:40.757 2024-02-27 18:24:40.757 1000 FEE 440828 814 6088262 2024-02-27 18:24:40.757 2024-02-27 18:24:40.757 9000 TIP 440828 20778 6088285 2024-02-27 18:29:06.329 2024-02-27 18:29:06.329 3500 FEE 440875 7847 6088286 2024-02-27 18:29:06.329 2024-02-27 18:29:06.329 31500 TIP 440875 21194 6088300 2024-02-27 18:31:59.111 2024-02-27 18:31:59.111 4000 FEE 440894 11798 6088301 2024-02-27 18:31:59.111 2024-02-27 18:31:59.111 36000 TIP 440894 21343 6088312 2024-02-27 18:33:03.284 2024-02-27 18:33:03.284 1000 FEE 440905 9367 6088318 2024-02-27 18:33:27.266 2024-02-27 18:33:27.266 2100 FEE 440802 11491 6088319 2024-02-27 18:33:27.266 2024-02-27 18:33:27.266 18900 TIP 440802 669 6088340 2024-02-27 18:34:57.642 2024-02-27 18:34:57.642 2100 FEE 440772 1273 6088341 2024-02-27 18:34:57.642 2024-02-27 18:34:57.642 18900 TIP 440772 4831 6088359 2024-02-27 18:36:16.889 2024-02-27 18:36:16.889 0 FEE 440908 20981 6088452 2024-02-27 18:38:27.519 2024-02-27 18:38:27.519 100 FEE 440890 6653 6088453 2024-02-27 18:38:27.519 2024-02-27 18:38:27.519 900 TIP 440890 19043 6088458 2024-02-27 18:38:28.594 2024-02-27 18:38:28.594 100 FEE 440890 664 6088459 2024-02-27 18:38:28.594 2024-02-27 18:38:28.594 900 TIP 440890 19924 6088460 2024-02-27 18:38:29.089 2024-02-27 18:38:29.089 100 FEE 440890 21357 6088461 2024-02-27 18:38:29.089 2024-02-27 18:38:29.089 900 TIP 440890 713 6088474 2024-02-27 18:41:27.718 2024-02-27 18:41:27.718 1000 FEE 440918 18829 6088481 2024-02-27 18:42:35.27 2024-02-27 18:42:35.27 1000 FEE 440764 19613 6088482 2024-02-27 18:42:35.27 2024-02-27 18:42:35.27 9000 TIP 440764 18271 6088491 2024-02-27 18:42:51.679 2024-02-27 18:42:51.679 700 FEE 440894 20781 6088492 2024-02-27 18:42:51.679 2024-02-27 18:42:51.679 6300 TIP 440894 21365 6088512 2024-02-27 18:43:08.14 2024-02-27 18:43:08.14 1000 FEE 440742 21406 6088513 2024-02-27 18:43:08.14 2024-02-27 18:43:08.14 9000 TIP 440742 4763 6088533 2024-02-27 18:47:31.405 2024-02-27 18:47:31.405 3300 FEE 440725 19484 6088534 2024-02-27 18:47:31.405 2024-02-27 18:47:31.405 29700 TIP 440725 18667 6088547 2024-02-27 18:47:43.744 2024-02-27 18:47:43.744 3300 FEE 440663 21493 6088548 2024-02-27 18:47:43.744 2024-02-27 18:47:43.744 29700 TIP 440663 17041 6088571 2024-02-27 18:49:55.139 2024-02-27 18:49:55.139 1000 FEE 440922 11648 6088572 2024-02-27 18:49:55.139 2024-02-27 18:49:55.139 9000 TIP 440922 17109 6088581 2024-02-27 18:50:47.585 2024-02-27 18:50:47.585 1000 FEE 440929 20246 6088587 2024-02-27 18:52:21.279 2024-02-27 18:52:21.279 1000 FEE 440929 12736 6088588 2024-02-27 18:52:21.279 2024-02-27 18:52:21.279 9000 TIP 440929 10342 6088603 2024-02-27 18:52:30.991 2024-02-27 18:52:30.991 27900 FEE 440911 20560 6088604 2024-02-27 18:52:30.991 2024-02-27 18:52:30.991 251100 TIP 440911 8245 6088625 2024-02-27 18:54:01.323 2024-02-27 18:54:01.323 1000 FEE 440911 2775 6088626 2024-02-27 18:54:01.323 2024-02-27 18:54:01.323 9000 TIP 440911 9496 6088634 2024-02-27 18:54:04.043 2024-02-27 18:54:04.043 1000 FEE 440911 18751 6088635 2024-02-27 18:54:04.043 2024-02-27 18:54:04.043 9000 TIP 440911 18380 6088638 2024-02-27 18:54:05.043 2024-02-27 18:54:05.043 1000 FEE 440911 18896 6088639 2024-02-27 18:54:05.043 2024-02-27 18:54:05.043 9000 TIP 440911 6499 6088689 2024-02-27 18:56:05.501 2024-02-27 18:56:05.501 7700 FEE 440909 14791 6088690 2024-02-27 18:56:05.501 2024-02-27 18:56:05.501 69300 TIP 440909 1105 6088750 2024-02-27 19:00:25.056 2024-02-27 19:00:25.056 7700 FEE 440898 11263 6088751 2024-02-27 19:00:25.056 2024-02-27 19:00:25.056 69300 TIP 440898 20660 6088767 2024-02-27 19:00:43.897 2024-02-27 19:00:43.897 1000 FEE 440939 18380 6088799 2024-02-27 19:03:24.483 2024-02-27 19:03:24.483 100 FEE 440692 12609 6088800 2024-02-27 19:03:24.483 2024-02-27 19:03:24.483 900 TIP 440692 14074 6088808 2024-02-27 19:04:12.982 2024-02-27 19:04:12.982 100 FEE 440860 2203 6088809 2024-02-27 19:04:12.982 2024-02-27 19:04:12.982 900 TIP 440860 21242 6088812 2024-02-27 19:04:25.619 2024-02-27 19:04:25.619 1000 POLL 440725 13042 6088816 2024-02-27 19:04:37.43 2024-02-27 19:04:37.43 1000 FEE 440943 5173 6088824 2024-02-27 19:05:20.954 2024-02-27 19:05:20.954 1000 POLL 440725 910 6088841 2024-02-27 19:08:12.613 2024-02-27 19:08:12.613 0 FEE 440944 16747 6088857 2024-02-27 19:10:00.9 2024-02-27 19:10:00.9 100 FEE 440952 2514 6088858 2024-02-27 19:10:00.9 2024-02-27 19:10:00.9 900 TIP 440952 15063 6088859 2024-02-27 19:10:01.618 2024-02-27 19:10:01.618 100 FEE 440952 21466 6088860 2024-02-27 19:10:01.618 2024-02-27 19:10:01.618 900 TIP 440952 20301 6088865 2024-02-27 19:10:02.89 2024-02-27 19:10:02.89 100 FEE 440952 620 6088866 2024-02-27 19:10:02.89 2024-02-27 19:10:02.89 900 TIP 440952 8926 6088868 2024-02-27 19:10:03.331 2024-02-27 19:10:03.331 100 FEE 440952 11165 6088869 2024-02-27 19:10:03.331 2024-02-27 19:10:03.331 900 TIP 440952 19906 6088900 2024-02-27 19:17:59.679 2024-02-27 19:17:59.679 100000 FEE 440959 6160 6088912 2024-02-27 19:19:31.961 2024-02-27 19:19:31.961 1000 FEE 440960 20306 6088940 2024-02-27 19:20:59.12 2024-02-27 19:20:59.12 2100 FEE 440587 8284 6088223 2024-02-27 18:20:28.885 2024-02-27 18:20:28.885 10000 FEE 440692 21627 6088224 2024-02-27 18:20:28.885 2024-02-27 18:20:28.885 90000 TIP 440692 15161 6088236 2024-02-27 18:21:07.061 2024-02-27 18:21:07.061 2100 FEE 440711 671 6088237 2024-02-27 18:21:07.061 2024-02-27 18:21:07.061 18900 TIP 440711 21042 6088241 2024-02-27 18:21:29.115 2024-02-27 18:21:29.115 2100 FEE 440868 5694 6088242 2024-02-27 18:21:29.115 2024-02-27 18:21:29.115 18900 TIP 440868 750 6088245 2024-02-27 18:21:46.34 2024-02-27 18:21:46.34 2100 FEE 440870 21412 6088246 2024-02-27 18:21:46.34 2024-02-27 18:21:46.34 18900 TIP 440870 13575 6088249 2024-02-27 18:22:45.803 2024-02-27 18:22:45.803 2100 FEE 440891 20657 6088250 2024-02-27 18:22:45.803 2024-02-27 18:22:45.803 18900 TIP 440891 9356 6088274 2024-02-27 18:26:21.911 2024-02-27 18:26:21.911 5000 FEE 440324 19021 6088275 2024-02-27 18:26:21.911 2024-02-27 18:26:21.911 45000 TIP 440324 14657 6088276 2024-02-27 18:26:22.606 2024-02-27 18:26:22.606 100000 FEE 440898 12768 6088291 2024-02-27 18:30:35.459 2024-02-27 18:30:35.459 2500 FEE 440704 880 6088292 2024-02-27 18:30:35.459 2024-02-27 18:30:35.459 22500 TIP 440704 20594 6088299 2024-02-27 18:31:54.883 2024-02-27 18:31:54.883 5000 FEE 440903 9529 6088336 2024-02-27 18:34:48.045 2024-02-27 18:34:48.045 100 FEE 439895 21207 6088337 2024-02-27 18:34:48.045 2024-02-27 18:34:48.045 900 TIP 439895 16176 6088360 2024-02-27 18:36:19.136 2024-02-27 18:36:19.136 1000 FEE 440909 16633 6088362 2024-02-27 18:36:37.224 2024-02-27 18:36:37.224 2100 FEE 440790 18909 6088363 2024-02-27 18:36:37.224 2024-02-27 18:36:37.224 18900 TIP 440790 766 6088364 2024-02-27 18:36:45.42 2024-02-27 18:36:45.42 1000 FEE 440891 21103 6088365 2024-02-27 18:36:45.42 2024-02-27 18:36:45.42 9000 TIP 440891 11443 6088374 2024-02-27 18:36:56.587 2024-02-27 18:36:56.587 100 FEE 440633 10668 6088375 2024-02-27 18:36:56.587 2024-02-27 18:36:56.587 900 TIP 440633 16301 6088382 2024-02-27 18:37:06.053 2024-02-27 18:37:06.053 2100 FEE 440768 14213 6088383 2024-02-27 18:37:06.053 2024-02-27 18:37:06.053 18900 TIP 440768 20849 6088384 2024-02-27 18:37:10.831 2024-02-27 18:37:10.831 100 FEE 440652 760 6088385 2024-02-27 18:37:10.831 2024-02-27 18:37:10.831 900 TIP 440652 18556 6088386 2024-02-27 18:37:10.894 2024-02-27 18:37:10.894 100 FEE 440652 19511 6088387 2024-02-27 18:37:10.894 2024-02-27 18:37:10.894 900 TIP 440652 16229 6088402 2024-02-27 18:37:28.208 2024-02-27 18:37:28.208 1000 POLL 440725 21571 6088403 2024-02-27 18:37:32.852 2024-02-27 18:37:32.852 100 FEE 440056 1585 6088404 2024-02-27 18:37:32.852 2024-02-27 18:37:32.852 900 TIP 440056 21249 6088409 2024-02-27 18:37:45.119 2024-02-27 18:37:45.119 100 FEE 439917 7809 6088410 2024-02-27 18:37:45.119 2024-02-27 18:37:45.119 900 TIP 439917 1726 6088440 2024-02-27 18:38:19.865 2024-02-27 18:38:19.865 1000 FEE 440913 20327 6088470 2024-02-27 18:40:20.162 2024-02-27 18:40:20.162 3100 FEE 440900 17541 6088471 2024-02-27 18:40:20.162 2024-02-27 18:40:20.162 27900 TIP 440900 14990 6088480 2024-02-27 18:42:28.346 2024-02-27 18:42:28.346 1000 FEE 440921 18330 6088485 2024-02-27 18:42:36.08 2024-02-27 18:42:36.08 1000 FEE 440764 8541 6088486 2024-02-27 18:42:36.08 2024-02-27 18:42:36.08 9000 TIP 440764 18529 6088497 2024-02-27 18:42:55.162 2024-02-27 18:42:55.162 700 FEE 440894 18269 6088498 2024-02-27 18:42:55.162 2024-02-27 18:42:55.162 6300 TIP 440894 15100 6088510 2024-02-27 18:43:07.871 2024-02-27 18:43:07.871 1000 FEE 440742 10554 6088511 2024-02-27 18:43:07.871 2024-02-27 18:43:07.871 9000 TIP 440742 16532 6088516 2024-02-27 18:43:35.062 2024-02-27 18:43:35.062 1000 FEE 440922 9476 6088524 2024-02-27 18:45:17.605 2024-02-27 18:45:17.605 2500 FEE 440826 828 6088525 2024-02-27 18:45:17.605 2024-02-27 18:45:17.605 22500 TIP 440826 11192 6088541 2024-02-27 18:47:38.896 2024-02-27 18:47:38.896 3300 FEE 440587 20257 6088542 2024-02-27 18:47:38.896 2024-02-27 18:47:38.896 29700 TIP 440587 21334 6088543 2024-02-27 18:47:40.475 2024-02-27 18:47:40.475 3300 FEE 440764 5725 6088544 2024-02-27 18:47:40.475 2024-02-27 18:47:40.475 29700 TIP 440764 16193 6088555 2024-02-27 18:49:06.882 2024-02-27 18:49:06.882 10100 FEE 440633 21058 6088556 2024-02-27 18:49:06.882 2024-02-27 18:49:06.882 90900 TIP 440633 21421 6088563 2024-02-27 18:49:52.355 2024-02-27 18:49:52.355 1000 FEE 440699 937 6088564 2024-02-27 18:49:52.355 2024-02-27 18:49:52.355 9000 TIP 440699 17798 6088585 2024-02-27 18:51:27.26 2024-02-27 18:51:27.26 1000 FEE 440930 14906 6088607 2024-02-27 18:52:46.57 2024-02-27 18:52:46.57 100 FEE 440886 20117 6088608 2024-02-27 18:52:46.57 2024-02-27 18:52:46.57 900 TIP 440886 647 6088619 2024-02-27 18:53:35.925 2024-02-27 18:53:35.925 1000 FEE 440932 21079 6088666 2024-02-27 18:55:17.443 2024-02-27 18:55:17.443 100000 FEE 440792 6687 6088667 2024-02-27 18:55:17.443 2024-02-27 18:55:17.443 900000 TIP 440792 9335 6088681 2024-02-27 18:56:04.038 2024-02-27 18:56:04.038 7700 FEE 440909 17535 6088682 2024-02-27 18:56:04.038 2024-02-27 18:56:04.038 69300 TIP 440909 17030 6088685 2024-02-27 18:56:04.247 2024-02-27 18:56:04.247 7700 FEE 440909 10862 6088686 2024-02-27 18:56:04.247 2024-02-27 18:56:04.247 69300 TIP 440909 7510 6088726 2024-02-27 18:59:21.192 2024-02-27 18:59:21.192 1000 FEE 440916 5806 6088727 2024-02-27 18:59:21.192 2024-02-27 18:59:21.192 9000 TIP 440916 10484 6088734 2024-02-27 18:59:49.428 2024-02-27 18:59:49.428 100 FEE 440690 3409 6088735 2024-02-27 18:59:49.428 2024-02-27 18:59:49.428 900 TIP 440690 634 6088758 2024-02-27 19:00:25.785 2024-02-27 19:00:25.785 7700 FEE 440898 19837 6088759 2024-02-27 19:00:25.785 2024-02-27 19:00:25.785 69300 TIP 440898 17827 6088779 2024-02-27 19:02:03.645 2024-02-27 19:02:03.645 5000 FEE 440912 12334 6088780 2024-02-27 19:02:03.645 2024-02-27 19:02:03.645 45000 TIP 440912 3686 6088785 2024-02-27 19:03:07.143 2024-02-27 19:03:07.143 100 FEE 439822 13399 6088786 2024-02-27 19:03:07.143 2024-02-27 19:03:07.143 900 TIP 439822 9362 6088797 2024-02-27 19:03:24.046 2024-02-27 19:03:24.046 100 FEE 440692 21619 6088798 2024-02-27 19:03:24.046 2024-02-27 19:03:24.046 900 TIP 440692 17944 6088817 2024-02-27 19:04:40.866 2024-02-27 19:04:40.866 1000 FEE 440944 15100 6088820 2024-02-27 19:04:57.715 2024-02-27 19:04:57.715 10000 FEE 440946 17106 6088853 2024-02-27 19:10:00.465 2024-02-27 19:10:00.465 100 FEE 440952 19660 6088854 2024-02-27 19:10:00.465 2024-02-27 19:10:00.465 900 TIP 440952 9845 6088877 2024-02-27 19:13:40.895 2024-02-27 19:13:40.895 1000 FEE 440954 15243 6088888 2024-02-27 19:15:44.24 2024-02-27 19:15:44.24 1000 FEE 440907 861 6088889 2024-02-27 19:15:44.24 2024-02-27 19:15:44.24 9000 TIP 440907 18526 6088899 2024-02-27 19:17:29.995 2024-02-27 19:17:29.995 1000 FEE 440958 11073 6088904 2024-02-27 19:18:37.79 2024-02-27 19:18:37.79 100 FEE 440945 17147 6088905 2024-02-27 19:18:37.79 2024-02-27 19:18:37.79 900 TIP 440945 7673 6088914 2024-02-27 19:20:17.644 2024-02-27 19:20:17.644 1000 FEE 440936 15806 6088915 2024-02-27 19:20:17.644 2024-02-27 19:20:17.644 9000 TIP 440936 18269 6088938 2024-02-27 19:20:58.553 2024-02-27 19:20:58.553 2100 FEE 440692 5725 6088939 2024-02-27 19:20:58.553 2024-02-27 19:20:58.553 18900 TIP 440692 21091 6088942 2024-02-27 19:20:59.64 2024-02-27 19:20:59.64 2100 FEE 440875 21047 6088943 2024-02-27 19:20:59.64 2024-02-27 19:20:59.64 18900 TIP 440875 5057 6088948 2024-02-27 19:21:00.785 2024-02-27 19:21:00.785 7700 FEE 440764 17638 6088949 2024-02-27 19:21:00.785 2024-02-27 19:21:00.785 69300 TIP 440764 21159 6088958 2024-02-27 19:21:01.86 2024-02-27 19:21:01.86 2100 FEE 440898 1740 6088959 2024-02-27 19:21:01.86 2024-02-27 19:21:01.86 18900 TIP 440898 1571 6088987 2024-02-27 19:21:06.923 2024-02-27 19:21:06.923 2100 FEE 440386 5519 6088988 2024-02-27 19:21:06.923 2024-02-27 19:21:06.923 18900 TIP 440386 20370 6088313 2024-02-27 18:33:04.912 2024-02-27 18:33:04.912 1000 STREAM 141924 9171 6088356 2024-02-27 18:36:02.92 2024-02-27 18:36:02.92 1000 STREAM 141924 5565 6088467 2024-02-27 18:40:02.977 2024-02-27 18:40:02.977 1000 STREAM 141924 4487 6088473 2024-02-27 18:41:02.961 2024-02-27 18:41:02.961 1000 STREAM 141924 17797 6088505 2024-02-27 18:43:02.974 2024-02-27 18:43:02.974 1000 STREAM 141924 1519 6088518 2024-02-27 18:44:02.982 2024-02-27 18:44:02.982 1000 STREAM 141924 21417 6088530 2024-02-27 18:47:03 2024-02-27 18:47:03 1000 STREAM 141924 17798 6088573 2024-02-27 18:50:03.051 2024-02-27 18:50:03.051 1000 STREAM 141924 1624 6088584 2024-02-27 18:51:03.051 2024-02-27 18:51:03.051 1000 STREAM 141924 20782 6088586 2024-02-27 18:52:03.054 2024-02-27 18:52:03.054 1000 STREAM 141924 18068 6088613 2024-02-27 18:53:03.056 2024-02-27 18:53:03.056 1000 STREAM 141924 8544 6088655 2024-02-27 18:55:03.049 2024-02-27 18:55:03.049 1000 STREAM 141924 1505 6088680 2024-02-27 18:56:03.061 2024-02-27 18:56:03.061 1000 STREAM 141924 16406 6088721 2024-02-27 18:59:03.108 2024-02-27 18:59:03.108 1000 STREAM 141924 4654 6088828 2024-02-27 19:06:03.17 2024-02-27 19:06:03.17 1000 STREAM 141924 18138 6088874 2024-02-27 19:13:03.217 2024-02-27 19:13:03.217 1000 STREAM 141924 1261 6088884 2024-02-27 19:15:03.244 2024-02-27 19:15:03.244 1000 STREAM 141924 20511 6088910 2024-02-27 19:19:03.255 2024-02-27 19:19:03.255 1000 STREAM 141924 21393 6088913 2024-02-27 19:20:03.273 2024-02-27 19:20:03.273 1000 STREAM 141924 20058 6088995 2024-02-27 19:22:03.269 2024-02-27 19:22:03.269 1000 STREAM 141924 21379 6088997 2024-02-27 19:23:03.268 2024-02-27 19:23:03.268 1000 STREAM 141924 17800 6089019 2024-02-27 19:24:03.274 2024-02-27 19:24:03.274 1000 STREAM 141924 12609 6089021 2024-02-27 19:25:03.285 2024-02-27 19:25:03.285 1000 STREAM 141924 17494 6089030 2024-02-27 19:29:03.286 2024-02-27 19:29:03.286 1000 STREAM 141924 19689 6089043 2024-02-27 19:30:03.292 2024-02-27 19:30:03.292 1000 STREAM 141924 19174 6089068 2024-02-27 19:33:03.298 2024-02-27 19:33:03.298 1000 STREAM 141924 19906 6089083 2024-02-27 19:34:03.28 2024-02-27 19:34:03.28 1000 STREAM 141924 12516 6089093 2024-02-27 19:35:03.305 2024-02-27 19:35:03.305 1000 STREAM 141924 10094 6089104 2024-02-27 19:36:03.317 2024-02-27 19:36:03.317 1000 STREAM 141924 11798 6089106 2024-02-27 19:37:03.314 2024-02-27 19:37:03.314 1000 STREAM 141924 20511 6089110 2024-02-27 19:38:03.316 2024-02-27 19:38:03.316 1000 STREAM 141924 679 6088325 2024-02-27 18:34:03.635 2024-02-27 18:34:03.635 1000 STREAM 141924 12024 6088329 2024-02-27 18:34:14.729 2024-02-27 18:34:14.729 900 TIP 440725 13132 6088353 2024-02-27 18:35:54.767 2024-02-27 18:35:54.767 2100 FEE 440873 9517 6088354 2024-02-27 18:35:54.767 2024-02-27 18:35:54.767 18900 TIP 440873 20254 6088378 2024-02-27 18:36:58.295 2024-02-27 18:36:58.295 2100 FEE 440785 7960 6088379 2024-02-27 18:36:58.295 2024-02-27 18:36:58.295 18900 TIP 440785 9355 6088392 2024-02-27 18:37:25.116 2024-02-27 18:37:25.116 1000 FEE 440843 3440 6088393 2024-02-27 18:37:25.116 2024-02-27 18:37:25.116 9000 TIP 440843 19910 6088417 2024-02-27 18:37:58.086 2024-02-27 18:37:58.086 0 FEE 440909 999 6088419 2024-02-27 18:37:59.997 2024-02-27 18:37:59.997 1000 FEE 440305 15577 6088420 2024-02-27 18:37:59.997 2024-02-27 18:37:59.997 9000 TIP 440305 8870 6088432 2024-02-27 18:38:18.454 2024-02-27 18:38:18.454 1000 FEE 440875 17523 6088433 2024-02-27 18:38:18.454 2024-02-27 18:38:18.454 9000 TIP 440875 15762 6088454 2024-02-27 18:38:27.977 2024-02-27 18:38:27.977 100 FEE 440890 7659 6088342 2024-02-27 18:35:02.917 2024-02-27 18:35:02.917 1000 STREAM 141924 20251 6088381 2024-02-27 18:37:02.93 2024-02-27 18:37:02.93 1000 STREAM 141924 9333 6088421 2024-02-27 18:38:02.965 2024-02-27 18:38:02.965 1000 STREAM 141924 20015 6088463 2024-02-27 18:39:02.947 2024-02-27 18:39:02.947 1000 STREAM 141924 9433 6088478 2024-02-27 18:42:02.962 2024-02-27 18:42:02.962 1000 STREAM 141924 717 6088521 2024-02-27 18:45:02.999 2024-02-27 18:45:02.999 1000 STREAM 141924 18989 6088529 2024-02-27 18:46:02.997 2024-02-27 18:46:02.997 1000 STREAM 141924 17526 6088631 2024-02-27 18:54:03.066 2024-02-27 18:54:03.066 1000 STREAM 141924 5538 6088701 2024-02-27 18:57:03.086 2024-02-27 18:57:03.086 1000 STREAM 141924 15474 6088712 2024-02-27 18:58:03.096 2024-02-27 18:58:03.096 1000 STREAM 141924 11885 6088738 2024-02-27 19:00:03.187 2024-02-27 19:00:03.187 1000 STREAM 141924 617 6088769 2024-02-27 19:01:03.125 2024-02-27 19:01:03.125 1000 STREAM 141924 17976 6088778 2024-02-27 19:02:03.132 2024-02-27 19:02:03.132 1000 STREAM 141924 6041 6088782 2024-02-27 19:03:03.158 2024-02-27 19:03:03.158 1000 STREAM 141924 1051 6088807 2024-02-27 19:04:03.156 2024-02-27 19:04:03.156 1000 STREAM 141924 20220 6088821 2024-02-27 19:05:03.162 2024-02-27 19:05:03.162 1000 STREAM 141924 21413 6088834 2024-02-27 19:07:03.177 2024-02-27 19:07:03.177 1000 STREAM 141924 679 6088880 2024-02-27 19:14:03.238 2024-02-27 19:14:03.238 1000 STREAM 141924 11527 6088896 2024-02-27 19:16:03.25 2024-02-27 19:16:03.25 1000 STREAM 141924 5646 6088897 2024-02-27 19:17:03.266 2024-02-27 19:17:03.266 1000 STREAM 141924 21575 6088901 2024-02-27 19:18:03.262 2024-02-27 19:18:03.262 1000 STREAM 141924 15488 6088960 2024-02-27 19:21:03.274 2024-02-27 19:21:03.274 1000 STREAM 141924 20964 6088455 2024-02-27 18:38:27.977 2024-02-27 18:38:27.977 900 TIP 440890 21334 6088475 2024-02-27 18:41:35.265 2024-02-27 18:41:35.265 1000 FEE 440919 8376 6088493 2024-02-27 18:42:52.268 2024-02-27 18:42:52.268 700 FEE 440894 16532 6088494 2024-02-27 18:42:52.268 2024-02-27 18:42:52.268 6300 TIP 440894 12334 6088517 2024-02-27 18:43:54.325 2024-02-27 18:43:54.325 1000 FEE 440923 2151 6088537 2024-02-27 18:47:33.875 2024-02-27 18:47:33.875 3300 FEE 440622 20087 6088538 2024-02-27 18:47:33.875 2024-02-27 18:47:33.875 29700 TIP 440622 10102 6088565 2024-02-27 18:49:52.841 2024-02-27 18:49:52.841 1000 FEE 440922 2829 6088566 2024-02-27 18:49:52.841 2024-02-27 18:49:52.841 9000 TIP 440922 11942 6088575 2024-02-27 18:50:13.887 2024-02-27 18:50:13.887 4000 FEE 440926 20183 6088576 2024-02-27 18:50:13.887 2024-02-27 18:50:13.887 36000 TIP 440926 20108 6088579 2024-02-27 18:50:23.621 2024-02-27 18:50:23.621 1000 FEE 440889 5293 6088580 2024-02-27 18:50:23.621 2024-02-27 18:50:23.621 9000 TIP 440889 675 6088593 2024-02-27 18:52:22.148 2024-02-27 18:52:22.148 1000 FEE 440929 6717 6088594 2024-02-27 18:52:22.148 2024-02-27 18:52:22.148 9000 TIP 440929 21155 6088605 2024-02-27 18:52:39.898 2024-02-27 18:52:39.898 9000 FEE 440875 2640 6088606 2024-02-27 18:52:39.898 2024-02-27 18:52:39.898 81000 TIP 440875 21446 6088620 2024-02-27 18:53:40.494 2024-02-27 18:53:40.494 100000 DONT_LIKE_THIS 440792 13217 6088621 2024-02-27 18:54:00.136 2024-02-27 18:54:00.136 1000 FEE 440911 1489 6088622 2024-02-27 18:54:00.136 2024-02-27 18:54:00.136 9000 TIP 440911 20624 6088650 2024-02-27 18:54:26.799 2024-02-27 18:54:26.799 1000 FEE 440933 18208 6088664 2024-02-27 18:55:16.066 2024-02-27 18:55:16.066 1000 FEE 440911 21624 6088665 2024-02-27 18:55:16.066 2024-02-27 18:55:16.066 9000 TIP 440911 1136 6088674 2024-02-27 18:55:23.021 2024-02-27 18:55:23.021 2100 FEE 440875 7760 6088675 2024-02-27 18:55:23.021 2024-02-27 18:55:23.021 18900 TIP 440875 20026 6088687 2024-02-27 18:56:04.846 2024-02-27 18:56:04.846 7700 FEE 440909 20514 6088688 2024-02-27 18:56:04.846 2024-02-27 18:56:04.846 69300 TIP 440909 20706 6088713 2024-02-27 18:58:25.121 2024-02-27 18:58:25.121 1000 FEE 440936 15115 6088718 2024-02-27 18:58:49.5 2024-02-27 18:58:49.5 1000 FEE 440937 2774 6088728 2024-02-27 18:59:21.669 2024-02-27 18:59:21.669 1000 FEE 440925 4763 6088729 2024-02-27 18:59:21.669 2024-02-27 18:59:21.669 9000 TIP 440925 12566 6088736 2024-02-27 18:59:56.03 2024-02-27 18:59:56.03 100 FEE 440650 19335 6088737 2024-02-27 18:59:56.03 2024-02-27 18:59:56.03 900 TIP 440650 20704 6088760 2024-02-27 19:00:27.352 2024-02-27 19:00:27.352 7700 FEE 440898 9330 6088761 2024-02-27 19:00:27.352 2024-02-27 19:00:27.352 69300 TIP 440898 18829 6088762 2024-02-27 19:00:27.648 2024-02-27 19:00:27.648 15400 FEE 440898 20015 6088549 2024-02-27 18:48:03.754 2024-02-27 18:48:03.754 1000 STREAM 141924 13544 6088554 2024-02-27 18:49:03.762 2024-02-27 18:49:03.762 1000 STREAM 141924 10016 6088624 2024-02-27 18:54:00.727 2024-02-27 18:54:00.727 9000 TIP 440911 14990 6088636 2024-02-27 18:54:04.561 2024-02-27 18:54:04.561 1000 FEE 440911 18241 6088637 2024-02-27 18:54:04.561 2024-02-27 18:54:04.561 9000 TIP 440911 20602 6088652 2024-02-27 18:54:45.201 2024-02-27 18:54:45.201 2100 FEE 440828 19976 6088653 2024-02-27 18:54:45.201 2024-02-27 18:54:45.201 18900 TIP 440828 18264 6088660 2024-02-27 18:55:14.247 2024-02-27 18:55:14.247 1000 FEE 440911 15271 6088661 2024-02-27 18:55:14.247 2024-02-27 18:55:14.247 9000 TIP 440911 5057 6088662 2024-02-27 18:55:15.153 2024-02-27 18:55:15.153 1000 FEE 440911 15409 6088663 2024-02-27 18:55:15.153 2024-02-27 18:55:15.153 9000 TIP 440911 1162 6088672 2024-02-27 18:55:22.197 2024-02-27 18:55:22.197 2100 FEE 440802 761 6088673 2024-02-27 18:55:22.197 2024-02-27 18:55:22.197 18900 TIP 440802 21269 6088683 2024-02-27 18:56:04.172 2024-02-27 18:56:04.172 7700 FEE 440909 21373 6088684 2024-02-27 18:56:04.172 2024-02-27 18:56:04.172 69300 TIP 440909 2061 6088691 2024-02-27 18:56:21.958 2024-02-27 18:56:21.958 7700 FEE 440924 5708 6088692 2024-02-27 18:56:21.958 2024-02-27 18:56:21.958 69300 TIP 440924 17944 6088697 2024-02-27 18:56:53.815 2024-02-27 18:56:53.815 7700 FEE 440935 717 6088698 2024-02-27 18:56:53.815 2024-02-27 18:56:53.815 69300 TIP 440935 1512 6088704 2024-02-27 18:57:14.978 2024-02-27 18:57:14.978 1000 FEE 440915 12160 6088705 2024-02-27 18:57:14.978 2024-02-27 18:57:14.978 9000 TIP 440915 20198 6088732 2024-02-27 18:59:35.228 2024-02-27 18:59:35.228 100 FEE 440593 8472 6088733 2024-02-27 18:59:35.228 2024-02-27 18:59:35.228 900 TIP 440593 5791 6088756 2024-02-27 19:00:25.629 2024-02-27 19:00:25.629 7700 FEE 440898 9552 6088757 2024-02-27 19:00:25.629 2024-02-27 19:00:25.629 69300 TIP 440898 763 6088766 2024-02-27 19:00:35.354 2024-02-27 19:00:35.354 1000 FEE 440938 18829 6088793 2024-02-27 19:03:21.111 2024-02-27 19:03:21.111 100 FEE 440206 18664 6088794 2024-02-27 19:03:21.111 2024-02-27 19:03:21.111 900 TIP 440206 6361 6088801 2024-02-27 19:03:25.121 2024-02-27 19:03:25.121 100 FEE 440798 12188 6088802 2024-02-27 19:03:25.121 2024-02-27 19:03:25.121 900 TIP 440798 20129 6088846 2024-02-27 19:09:28.107 2024-02-27 19:09:28.107 1000 FEE 440953 12158 6088847 2024-02-27 19:09:36.699 2024-02-27 19:09:36.699 0 FEE 440944 1401 6088848 2024-02-27 19:09:59.67 2024-02-27 19:09:59.67 0 FEE 440944 1617 6088851 2024-02-27 19:10:00.365 2024-02-27 19:10:00.365 100 FEE 440952 21061 6088852 2024-02-27 19:10:00.365 2024-02-27 19:10:00.365 900 TIP 440952 21159 6088894 2024-02-27 19:15:44.78 2024-02-27 19:15:44.78 1000 FEE 440907 8173 6088895 2024-02-27 19:15:44.78 2024-02-27 19:15:44.78 9000 TIP 440907 9307 6088647 2024-02-27 18:54:15.235 2024-02-27 18:54:15.235 18900 TIP 440907 12169 6088648 2024-02-27 18:54:16.66 2024-02-27 18:54:16.66 2100 FEE 440902 20243 6088649 2024-02-27 18:54:16.66 2024-02-27 18:54:16.66 18900 TIP 440902 18529 6088651 2024-02-27 18:54:32.694 2024-02-27 18:54:32.694 1000 FEE 440934 798 6088654 2024-02-27 18:55:01.625 2024-02-27 18:55:01.625 1000 FEE 440935 1044 6088710 2024-02-27 18:57:32.868 2024-02-27 18:57:32.868 2100 FEE 440893 18306 6088711 2024-02-27 18:57:32.868 2024-02-27 18:57:32.868 18900 TIP 440893 18116 6088714 2024-02-27 18:58:40.384 2024-02-27 18:58:40.384 1000 FEE 440933 876 6088715 2024-02-27 18:58:40.384 2024-02-27 18:58:40.384 9000 TIP 440933 3518 6088716 2024-02-27 18:58:41.679 2024-02-27 18:58:41.679 1000 FEE 440907 795 6088717 2024-02-27 18:58:41.679 2024-02-27 18:58:41.679 9000 TIP 440907 1012 6088730 2024-02-27 18:59:23.284 2024-02-27 18:59:23.284 1000 FEE 440898 2347 6088731 2024-02-27 18:59:23.284 2024-02-27 18:59:23.284 9000 TIP 440898 10398 6088742 2024-02-27 19:00:23.592 2024-02-27 19:00:23.592 7700 FEE 440898 9476 6088743 2024-02-27 19:00:23.592 2024-02-27 19:00:23.592 69300 TIP 440898 21103 6088752 2024-02-27 19:00:25.338 2024-02-27 19:00:25.338 7700 FEE 440898 732 6088753 2024-02-27 19:00:25.338 2024-02-27 19:00:25.338 69300 TIP 440898 2075 6088764 2024-02-27 19:00:33.615 2024-02-27 19:00:33.615 1000 FEE 440725 4984 6088765 2024-02-27 19:00:33.615 2024-02-27 19:00:33.615 9000 TIP 440725 2639 6088768 2024-02-27 19:00:49.451 2024-02-27 19:00:49.451 1000 FEE 440940 2328 6088777 2024-02-27 19:01:51.047 2024-02-27 19:01:51.047 0 FEE 440940 21138 6088783 2024-02-27 19:03:06.455 2024-02-27 19:03:06.455 100 FEE 439822 15200 6088784 2024-02-27 19:03:06.455 2024-02-27 19:03:06.455 900 TIP 439822 876 6088795 2024-02-27 19:03:21.527 2024-02-27 19:03:21.527 100 FEE 440206 15045 6088796 2024-02-27 19:03:21.527 2024-02-27 19:03:21.527 900 TIP 440206 14271 6088803 2024-02-27 19:03:25.2 2024-02-27 19:03:25.2 100 FEE 440692 894 6088804 2024-02-27 19:03:25.2 2024-02-27 19:03:25.2 900 TIP 440692 19863 6088805 2024-02-27 19:03:25.311 2024-02-27 19:03:25.311 900 FEE 440798 17696 6088806 2024-02-27 19:03:25.311 2024-02-27 19:03:25.311 8100 TIP 440798 14225 6088818 2024-02-27 19:04:48.176 2024-02-27 19:04:48.176 0 FEE 440942 7818 6088842 2024-02-27 19:08:42.975 2024-02-27 19:08:42.975 0 FEE 440944 1628 6088908 2024-02-27 19:18:38.354 2024-02-27 19:18:38.354 2100 FEE 440890 15271 6088909 2024-02-27 19:18:38.354 2024-02-27 19:18:38.354 18900 TIP 440890 10311 6088950 2024-02-27 19:21:00.812 2024-02-27 19:21:00.812 7700 FEE 440764 1429 6088951 2024-02-27 19:21:00.812 2024-02-27 19:21:00.812 69300 TIP 440764 17316 6088956 2024-02-27 19:21:01.513 2024-02-27 19:21:01.513 2100 FEE 440520 1221 6088957 2024-02-27 19:21:01.513 2024-02-27 19:21:01.513 18900 TIP 440520 3990 6088967 2024-02-27 19:21:05.04 2024-02-27 19:21:05.04 7700 FEE 440764 19118 6088968 2024-02-27 19:21:05.04 2024-02-27 19:21:05.04 69300 TIP 440764 2735 6088981 2024-02-27 19:21:05.817 2024-02-27 19:21:05.817 7700 FEE 440764 9863 6088982 2024-02-27 19:21:05.817 2024-02-27 19:21:05.817 69300 TIP 440764 18896 6088983 2024-02-27 19:21:06.032 2024-02-27 19:21:06.032 7700 FEE 440764 14990 6088984 2024-02-27 19:21:06.032 2024-02-27 19:21:06.032 69300 TIP 440764 21019 6089012 2024-02-27 19:23:54.2 2024-02-27 19:23:54.2 1000 FEE 440712 9107 6089013 2024-02-27 19:23:54.2 2024-02-27 19:23:54.2 9000 TIP 440712 4027 6089031 2024-02-27 19:29:40.704 2024-02-27 19:29:40.704 1000 FEE 440967 15060 6089040 2024-02-27 19:29:59.409 2024-02-27 19:29:59.409 0 FEE 440966 5128 6089050 2024-02-27 19:30:38.482 2024-02-27 19:30:38.482 10000 FEE 440824 21248 6089051 2024-02-27 19:30:38.482 2024-02-27 19:30:38.482 90000 TIP 440824 16341 6089067 2024-02-27 19:32:27.228 2024-02-27 19:32:27.228 1000 FEE 440972 2264 6089070 2024-02-27 19:33:49.37 2024-02-27 19:33:49.37 1000 FEE 440974 1307 6089071 2024-02-27 19:33:58.228 2024-02-27 19:33:58.228 100 FEE 440957 4768 6089072 2024-02-27 19:33:58.228 2024-02-27 19:33:58.228 900 TIP 440957 16194 6089075 2024-02-27 19:34:02.041 2024-02-27 19:34:02.041 7700 FEE 440969 18815 6089076 2024-02-27 19:34:02.041 2024-02-27 19:34:02.041 69300 TIP 440969 9551 6089079 2024-02-27 19:34:02.27 2024-02-27 19:34:02.27 7700 FEE 440969 2022 6089080 2024-02-27 19:34:02.27 2024-02-27 19:34:02.27 69300 TIP 440969 631 6089086 2024-02-27 19:34:16.125 2024-02-27 19:34:16.125 100 FEE 440920 775 6089087 2024-02-27 19:34:16.125 2024-02-27 19:34:16.125 900 TIP 440920 720 6089089 2024-02-27 19:34:30.42 2024-02-27 19:34:30.42 100 FEE 440907 18989 6089090 2024-02-27 19:34:30.42 2024-02-27 19:34:30.42 900 TIP 440907 822 6089091 2024-02-27 19:34:34.637 2024-02-27 19:34:34.637 100 FEE 440902 663 6089092 2024-02-27 19:34:34.637 2024-02-27 19:34:34.637 900 TIP 440902 6202 6089096 2024-02-27 19:35:10.328 2024-02-27 19:35:10.328 7700 FEE 440959 733 6089097 2024-02-27 19:35:10.328 2024-02-27 19:35:10.328 69300 TIP 440959 6616 6089130 2024-02-27 19:41:10.08 2024-02-27 19:41:10.08 1000 FEE 440898 16301 6089131 2024-02-27 19:41:10.08 2024-02-27 19:41:10.08 9000 TIP 440898 19378 6089139 2024-02-27 19:41:44.418 2024-02-27 19:41:44.418 800 FEE 440959 18114 6089140 2024-02-27 19:41:44.418 2024-02-27 19:41:44.418 7200 TIP 440959 4259 6089144 2024-02-27 19:42:22.509 2024-02-27 19:42:22.509 6400 FEE 440915 19938 6089145 2024-02-27 19:42:22.509 2024-02-27 19:42:22.509 57600 TIP 440915 2338 6089152 2024-02-27 19:44:34.201 2024-02-27 19:44:34.201 1000 FEE 440986 21503 6089158 2024-02-27 19:45:37.666 2024-02-27 19:45:37.666 100000 FEE 440989 6421 6089182 2024-02-27 19:48:31.288 2024-02-27 19:48:31.288 7700 FEE 440692 10591 6089183 2024-02-27 19:48:31.288 2024-02-27 19:48:31.288 69300 TIP 440692 974 6089194 2024-02-27 19:48:32.188 2024-02-27 19:48:32.188 7700 FEE 440692 1650 6089195 2024-02-27 19:48:32.188 2024-02-27 19:48:32.188 69300 TIP 440692 7986 6089205 2024-02-27 19:49:08.272 2024-02-27 19:49:08.272 100 FEE 440764 19151 6089206 2024-02-27 19:49:08.272 2024-02-27 19:49:08.272 900 TIP 440764 21116 6089253 2024-02-27 19:49:48.317 2024-02-27 19:49:48.317 7700 FEE 440870 17638 6089254 2024-02-27 19:49:48.317 2024-02-27 19:49:48.317 69300 TIP 440870 1970 6089289 2024-02-27 19:52:05.754 2024-02-27 19:52:05.754 7700 FEE 440870 19096 6089290 2024-02-27 19:52:05.754 2024-02-27 19:52:05.754 69300 TIP 440870 4415 6089291 2024-02-27 19:52:05.889 2024-02-27 19:52:05.889 7700 FEE 440870 13174 6089292 2024-02-27 19:52:05.889 2024-02-27 19:52:05.889 69300 TIP 440870 10591 6089305 2024-02-27 19:52:09.921 2024-02-27 19:52:09.921 7700 FEE 440868 19773 6089306 2024-02-27 19:52:09.921 2024-02-27 19:52:09.921 69300 TIP 440868 21291 6089313 2024-02-27 19:52:13.108 2024-02-27 19:52:13.108 7700 FEE 440966 20891 6089314 2024-02-27 19:52:13.108 2024-02-27 19:52:13.108 69300 TIP 440966 18664 6089325 2024-02-27 19:52:19.322 2024-02-27 19:52:19.322 2100 FEE 440798 21058 6088668 2024-02-27 18:55:19.056 2024-02-27 18:55:19.056 2100 FEE 440797 640 6088669 2024-02-27 18:55:19.056 2024-02-27 18:55:19.056 18900 TIP 440797 17714 6088693 2024-02-27 18:56:53.559 2024-02-27 18:56:53.559 7700 FEE 440935 618 6088694 2024-02-27 18:56:53.559 2024-02-27 18:56:53.559 69300 TIP 440935 18675 6088699 2024-02-27 18:56:54.397 2024-02-27 18:56:54.397 7700 FEE 440935 730 6088700 2024-02-27 18:56:54.397 2024-02-27 18:56:54.397 69300 TIP 440935 2016 6088702 2024-02-27 18:57:09.23 2024-02-27 18:57:09.23 7700 FEE 440910 15941 6088703 2024-02-27 18:57:09.23 2024-02-27 18:57:09.23 69300 TIP 440910 19118 6088706 2024-02-27 18:57:28.603 2024-02-27 18:57:28.603 2100 FEE 440911 16485 6088707 2024-02-27 18:57:28.603 2024-02-27 18:57:28.603 18900 TIP 440911 19930 6088724 2024-02-27 18:59:20.831 2024-02-27 18:59:20.831 1000 FEE 440899 1519 6088725 2024-02-27 18:59:20.831 2024-02-27 18:59:20.831 9000 TIP 440899 624 6088740 2024-02-27 19:00:18.434 2024-02-27 19:00:18.434 7700 FEE 440902 19638 6088741 2024-02-27 19:00:18.434 2024-02-27 19:00:18.434 69300 TIP 440902 2309 6088744 2024-02-27 19:00:24.204 2024-02-27 19:00:24.204 7700 FEE 440898 4521 6088745 2024-02-27 19:00:24.204 2024-02-27 19:00:24.204 69300 TIP 440898 17011 6088748 2024-02-27 19:00:24.899 2024-02-27 19:00:24.899 7700 FEE 440898 7818 6088749 2024-02-27 19:00:24.899 2024-02-27 19:00:24.899 69300 TIP 440898 5455 6088789 2024-02-27 19:03:17.132 2024-02-27 19:03:17.132 100 FEE 440875 1092 6088790 2024-02-27 19:03:17.132 2024-02-27 19:03:17.132 900 TIP 440875 11153 6088791 2024-02-27 19:03:17.604 2024-02-27 19:03:17.604 100 FEE 440875 18581 6088792 2024-02-27 19:03:17.604 2024-02-27 19:03:17.604 900 TIP 440875 716 6088813 2024-02-27 19:04:33.186 2024-02-27 19:04:33.186 1000 FEE 440942 992 6088819 2024-02-27 19:04:52.563 2024-02-27 19:04:52.563 1000 FEE 440945 9378 6088833 2024-02-27 19:06:23.667 2024-02-27 19:06:23.667 100000 FEE 440949 9339 6088870 2024-02-27 19:10:26.39 2024-02-27 19:10:26.39 1000 POLL 440725 712 6088878 2024-02-27 19:13:42.937 2024-02-27 19:13:42.937 4000 FEE 440953 11515 6088879 2024-02-27 19:13:42.937 2024-02-27 19:13:42.937 36000 TIP 440953 7818 6088882 2024-02-27 19:14:58.029 2024-02-27 19:14:58.029 10000 FEE 440692 12959 6088883 2024-02-27 19:14:58.029 2024-02-27 19:14:58.029 90000 TIP 440692 4238 6088886 2024-02-27 19:15:44.043 2024-02-27 19:15:44.043 1000 FEE 440907 20080 6088887 2024-02-27 19:15:44.043 2024-02-27 19:15:44.043 9000 TIP 440907 16097 6088892 2024-02-27 19:15:44.606 2024-02-27 19:15:44.606 1000 FEE 440907 16847 6088893 2024-02-27 19:15:44.606 2024-02-27 19:15:44.606 9000 TIP 440907 19174 6088918 2024-02-27 19:20:18.627 2024-02-27 19:20:18.627 1000 FEE 440936 20560 6088919 2024-02-27 19:20:18.627 2024-02-27 19:20:18.627 9000 TIP 440936 5160 6088922 2024-02-27 19:20:19.513 2024-02-27 19:20:19.513 1000 FEE 440936 992 6088923 2024-02-27 19:20:19.513 2024-02-27 19:20:19.513 9000 TIP 440936 19462 6088928 2024-02-27 19:20:46.056 2024-02-27 19:20:46.056 1000 FEE 440951 19484 6088929 2024-02-27 19:20:46.056 2024-02-27 19:20:46.056 9000 TIP 440951 9921 6088930 2024-02-27 19:20:46.499 2024-02-27 19:20:46.499 1000 FEE 440951 2335 6088931 2024-02-27 19:20:46.499 2024-02-27 19:20:46.499 9000 TIP 440951 797 6088971 2024-02-27 19:21:05.205 2024-02-27 19:21:05.205 2100 FEE 440727 19601 6088972 2024-02-27 19:21:05.205 2024-02-27 19:21:05.205 18900 TIP 440727 13622 6089002 2024-02-27 19:23:51.781 2024-02-27 19:23:51.781 1000 FEE 440712 12072 6089003 2024-02-27 19:23:51.781 2024-02-27 19:23:51.781 9000 TIP 440712 5776 6089020 2024-02-27 19:24:08.502 2024-02-27 19:24:08.502 1000 FEE 440963 20691 6089027 2024-02-27 19:28:30.434 2024-02-27 19:28:30.434 1000 FEE 440966 21274 6089056 2024-02-27 19:31:36.398 2024-02-27 19:31:36.398 1000 FEE 440970 902 6089103 2024-02-27 19:35:56.965 2024-02-27 19:35:56.965 1000 FEE 440976 16633 6089114 2024-02-27 19:38:36.042 2024-02-27 19:38:36.042 1000 FEE 440979 10016 6089115 2024-02-27 19:38:37.3 2024-02-27 19:38:37.3 2100 FEE 440978 4014 6089116 2024-02-27 19:38:37.3 2024-02-27 19:38:37.3 18900 TIP 440978 19105 6089117 2024-02-27 19:38:54.197 2024-02-27 19:38:54.197 4000 FEE 440978 16178 6089118 2024-02-27 19:38:54.197 2024-02-27 19:38:54.197 36000 TIP 440978 8385 6089141 2024-02-27 19:41:47.756 2024-02-27 19:41:47.756 1600 FEE 440970 15925 6089142 2024-02-27 19:41:47.756 2024-02-27 19:41:47.756 14400 TIP 440970 20636 6089168 2024-02-27 19:47:48.691 2024-02-27 19:47:48.691 1000 FEE 440991 20852 6089200 2024-02-27 19:48:32.582 2024-02-27 19:48:32.582 7700 FEE 440692 18460 6089201 2024-02-27 19:48:32.582 2024-02-27 19:48:32.582 69300 TIP 440692 16950 6089211 2024-02-27 19:49:14.92 2024-02-27 19:49:14.92 7700 FEE 440966 20504 6089212 2024-02-27 19:49:14.92 2024-02-27 19:49:14.92 69300 TIP 440966 16848 6089215 2024-02-27 19:49:15.15 2024-02-27 19:49:15.15 7700 FEE 440966 21194 6089216 2024-02-27 19:49:15.15 2024-02-27 19:49:15.15 69300 TIP 440966 16789 6089217 2024-02-27 19:49:16.911 2024-02-27 19:49:16.911 1000 FEE 440985 20881 6089218 2024-02-27 19:49:16.911 2024-02-27 19:49:16.911 9000 TIP 440985 19570 6088763 2024-02-27 19:00:27.648 2024-02-27 19:00:27.648 138600 TIP 440898 4035 6088781 2024-02-27 19:02:05.6 2024-02-27 19:02:05.6 1000 FEE 440941 1124 6088822 2024-02-27 19:05:08.655 2024-02-27 19:05:08.655 1000 FEE 440870 1291 6088823 2024-02-27 19:05:08.655 2024-02-27 19:05:08.655 9000 TIP 440870 21498 6088825 2024-02-27 19:05:31.84 2024-02-27 19:05:31.84 0 FEE 440943 6515 6088826 2024-02-27 19:06:00.996 2024-02-27 19:06:00.996 1000 FEE 440947 14357 6088829 2024-02-27 19:06:21.318 2024-02-27 19:06:21.318 1000 FEE 440875 2196 6088830 2024-02-27 19:06:21.318 2024-02-27 19:06:21.318 9000 TIP 440875 18396 6088831 2024-02-27 19:06:22.331 2024-02-27 19:06:22.331 1000 FEE 440927 1890 6088832 2024-02-27 19:06:22.331 2024-02-27 19:06:22.331 9000 TIP 440927 17682 6088836 2024-02-27 19:07:25.119 2024-02-27 19:07:25.119 0 FEE 440943 4177 6088875 2024-02-27 19:13:20.38 2024-02-27 19:13:20.38 7700 FEE 440891 1428 6088876 2024-02-27 19:13:20.38 2024-02-27 19:13:20.38 69300 TIP 440891 20109 6088885 2024-02-27 19:15:41.642 2024-02-27 19:15:41.642 1000 FEE 440956 2711 6088906 2024-02-27 19:18:37.985 2024-02-27 19:18:37.985 2100 FEE 440949 19652 6088907 2024-02-27 19:18:37.985 2024-02-27 19:18:37.985 18900 TIP 440949 10591 6088911 2024-02-27 19:19:21.347 2024-02-27 19:19:21.347 0 FEE 440957 2029 6088916 2024-02-27 19:20:18.19 2024-02-27 19:20:18.19 1000 FEE 440936 21577 6088917 2024-02-27 19:20:18.19 2024-02-27 19:20:18.19 9000 TIP 440936 3683 6088924 2024-02-27 19:20:42.702 2024-02-27 19:20:42.702 2000 FEE 440951 21208 6088925 2024-02-27 19:20:42.702 2024-02-27 19:20:42.702 18000 TIP 440951 8416 6088961 2024-02-27 19:21:03.701 2024-02-27 19:21:03.701 2100 FEE 440575 15858 6088962 2024-02-27 19:21:03.701 2024-02-27 19:21:03.701 18900 TIP 440575 10063 6088969 2024-02-27 19:21:05.141 2024-02-27 19:21:05.141 7700 FEE 440764 20891 6088970 2024-02-27 19:21:05.141 2024-02-27 19:21:05.141 69300 TIP 440764 10530 6088985 2024-02-27 19:21:06.51 2024-02-27 19:21:06.51 2100 FEE 440797 10554 6088986 2024-02-27 19:21:06.51 2024-02-27 19:21:06.51 18900 TIP 440797 9333 6088989 2024-02-27 19:21:07.295 2024-02-27 19:21:07.295 2100 FEE 440527 17494 6088990 2024-02-27 19:21:07.295 2024-02-27 19:21:07.295 18900 TIP 440527 17953 6089000 2024-02-27 19:23:51.397 2024-02-27 19:23:51.397 1000 FEE 440712 7583 6089001 2024-02-27 19:23:51.397 2024-02-27 19:23:51.397 9000 TIP 440712 622 6089034 2024-02-27 19:29:55.018 2024-02-27 19:29:55.018 2700 FEE 440892 7395 6089035 2024-02-27 19:29:55.018 2024-02-27 19:29:55.018 24300 TIP 440892 13177 6089038 2024-02-27 19:29:56.292 2024-02-27 19:29:56.292 2700 FEE 440892 19615 6089039 2024-02-27 19:29:56.292 2024-02-27 19:29:56.292 24300 TIP 440892 656 6089041 2024-02-27 19:30:02.047 2024-02-27 19:30:02.047 2700 FEE 440803 980 6089042 2024-02-27 19:30:02.047 2024-02-27 19:30:02.047 24300 TIP 440803 16350 6089105 2024-02-27 19:36:26.666 2024-02-27 19:36:26.666 0 FEE 440976 21079 6089119 2024-02-27 19:38:57.359 2024-02-27 19:38:57.359 1000 POLL 440725 18178 6089122 2024-02-27 19:39:34.855 2024-02-27 19:39:34.855 1000 FEE 440965 13987 6089123 2024-02-27 19:39:34.855 2024-02-27 19:39:34.855 9000 TIP 440965 21062 6089125 2024-02-27 19:40:46.099 2024-02-27 19:40:46.099 1000 FEE 440981 9342 6089132 2024-02-27 19:41:11.528 2024-02-27 19:41:11.528 1000 FEE 440520 10698 6089133 2024-02-27 19:41:11.528 2024-02-27 19:41:11.528 9000 TIP 440520 21493 6089153 2024-02-27 19:44:38.585 2024-02-27 19:44:38.585 1000 FEE 440987 15337 6089159 2024-02-27 19:45:40.133 2024-02-27 19:45:40.133 0 FEE 440988 21575 6089166 2024-02-27 19:46:49.322 2024-02-27 19:46:49.322 1000 POLL 440725 20817 6089172 2024-02-27 19:48:29.07 2024-02-27 19:48:29.07 23100 FEE 440692 2162 6089173 2024-02-27 19:48:29.07 2024-02-27 19:48:29.07 207900 TIP 440692 736 6089174 2024-02-27 19:48:29.434 2024-02-27 19:48:29.434 30800 FEE 440692 623 6089175 2024-02-27 19:48:29.434 2024-02-27 19:48:29.434 277200 TIP 440692 19094 6089188 2024-02-27 19:48:31.718 2024-02-27 19:48:31.718 7700 FEE 440692 9036 6089189 2024-02-27 19:48:31.718 2024-02-27 19:48:31.718 69300 TIP 440692 13174 6089192 2024-02-27 19:48:32.063 2024-02-27 19:48:32.063 15400 FEE 440692 940 6089193 2024-02-27 19:48:32.063 2024-02-27 19:48:32.063 138600 TIP 440692 17291 6089227 2024-02-27 19:49:17.807 2024-02-27 19:49:17.807 1000 FEE 440985 5003 6089228 2024-02-27 19:49:17.807 2024-02-27 19:49:17.807 9000 TIP 440985 20182 6089319 2024-02-27 19:52:14.26 2024-02-27 19:52:14.26 15400 FEE 440966 925 6089320 2024-02-27 19:52:14.26 2024-02-27 19:52:14.26 138600 TIP 440966 6616 6089333 2024-02-27 19:52:48.353 2024-02-27 19:52:48.353 1000 FEE 440988 21044 6089334 2024-02-27 19:52:48.353 2024-02-27 19:52:48.353 9000 TIP 440988 19235 6089339 2024-02-27 19:54:25.9 2024-02-27 19:54:25.9 6900 FEE 440993 16424 6089340 2024-02-27 19:54:25.9 2024-02-27 19:54:25.9 62100 TIP 440993 18359 6089348 2024-02-27 19:55:43.17 2024-02-27 19:55:43.17 2100 FEE 440988 20756 6089349 2024-02-27 19:55:43.17 2024-02-27 19:55:43.17 18900 TIP 440988 946 6089362 2024-02-27 19:56:11.866 2024-02-27 19:56:11.866 7700 FEE 440988 980 6089363 2024-02-27 19:56:11.866 2024-02-27 19:56:11.866 69300 TIP 440988 4570 6089388 2024-02-27 19:56:39.67 2024-02-27 19:56:39.67 1000 FEE 441001 2437 6089389 2024-02-27 19:56:39.67 2024-02-27 19:56:39.67 9000 TIP 441001 15690 6089442 2024-02-27 19:57:20.746 2024-02-27 19:57:20.746 500 FEE 440780 1002 6089443 2024-02-27 19:57:20.746 2024-02-27 19:57:20.746 4500 TIP 440780 17183 6089484 2024-02-27 19:59:53.159 2024-02-27 19:59:53.159 1000 FEE 441009 7998 6089497 2024-02-27 20:00:15.452 2024-02-27 20:00:15.452 1000 FEE 441011 1628 6089498 2024-02-27 20:00:16.296 2024-02-27 20:00:16.296 7700 FEE 440911 4250 6089499 2024-02-27 20:00:16.296 2024-02-27 20:00:16.296 69300 TIP 440911 21048 6089518 2024-02-27 20:00:19.306 2024-02-27 20:00:19.306 100 FEE 440898 11678 6089519 2024-02-27 20:00:19.306 2024-02-27 20:00:19.306 900 TIP 440898 19469 6088840 2024-02-27 19:08:03.173 2024-02-27 19:08:03.173 1000 STREAM 141924 21365 6088867 2024-02-27 19:10:03.19 2024-02-27 19:10:03.19 1000 STREAM 141924 19841 6088844 2024-02-27 19:09:03.174 2024-02-27 19:09:03.174 1000 STREAM 141924 1983 6088872 2024-02-27 19:11:03.165 2024-02-27 19:11:03.165 1000 STREAM 141924 18678 6088873 2024-02-27 19:12:03.165 2024-02-27 19:12:03.165 1000 STREAM 141924 836 6088845 2024-02-27 19:09:27.934 2024-02-27 19:09:27.934 0 FEE 440944 4083 6088849 2024-02-27 19:10:00.035 2024-02-27 19:10:00.035 100 FEE 440952 19284 6088850 2024-02-27 19:10:00.035 2024-02-27 19:10:00.035 900 TIP 440952 1519 6088861 2024-02-27 19:10:01.947 2024-02-27 19:10:01.947 100 FEE 440952 5904 6088862 2024-02-27 19:10:01.947 2024-02-27 19:10:01.947 900 TIP 440952 20922 6088881 2024-02-27 19:14:52.414 2024-02-27 19:14:52.414 1000 FEE 440955 1801 6088926 2024-02-27 19:20:45.476 2024-02-27 19:20:45.476 1000 FEE 440951 7869 6088927 2024-02-27 19:20:45.476 2024-02-27 19:20:45.476 9000 TIP 440951 18507 6088932 2024-02-27 19:20:57.013 2024-02-27 19:20:57.013 2100 FEE 440725 19484 6088933 2024-02-27 19:20:57.013 2024-02-27 19:20:57.013 18900 TIP 440725 21472 6088965 2024-02-27 19:21:04.978 2024-02-27 19:21:04.978 7700 FEE 440764 11240 6088966 2024-02-27 19:21:04.978 2024-02-27 19:21:04.978 69300 TIP 440764 9695 6088991 2024-02-27 19:21:07.599 2024-02-27 19:21:07.599 2100 FEE 440802 9450 6088992 2024-02-27 19:21:07.599 2024-02-27 19:21:07.599 18900 TIP 440802 9916 6088993 2024-02-27 19:21:14.495 2024-02-27 19:21:14.495 2100 FEE 440499 12774 6088994 2024-02-27 19:21:14.495 2024-02-27 19:21:14.495 18900 TIP 440499 2367 6088996 2024-02-27 19:22:37.525 2024-02-27 19:22:37.525 100000 FEE 440961 19502 6089004 2024-02-27 19:23:52.157 2024-02-27 19:23:52.157 1000 FEE 440712 2322 6089005 2024-02-27 19:23:52.157 2024-02-27 19:23:52.157 9000 TIP 440712 19941 6089006 2024-02-27 19:23:52.577 2024-02-27 19:23:52.577 1000 FEE 440712 14295 6089007 2024-02-27 19:23:52.577 2024-02-27 19:23:52.577 9000 TIP 440712 3461 6089008 2024-02-27 19:23:52.995 2024-02-27 19:23:52.995 1000 FEE 440712 20430 6089009 2024-02-27 19:23:52.995 2024-02-27 19:23:52.995 9000 TIP 440712 9177 6089018 2024-02-27 19:23:56.567 2024-02-27 19:23:56.567 1000 FEE 440962 19446 6089036 2024-02-27 19:29:55.202 2024-02-27 19:29:55.202 2700 FEE 440892 21493 6089037 2024-02-27 19:29:55.202 2024-02-27 19:29:55.202 24300 TIP 440892 15103 6089048 2024-02-27 19:30:22.454 2024-02-27 19:30:22.454 0 FEE 440966 2342 6089052 2024-02-27 19:30:50.662 2024-02-27 19:30:50.662 1000 FEE 440969 18170 6089057 2024-02-27 19:31:36.405 2024-02-27 19:31:36.405 21800 FEE 440830 12334 6089058 2024-02-27 19:31:36.405 2024-02-27 19:31:36.405 196200 TIP 440830 17513 6089063 2024-02-27 19:31:54.074 2024-02-27 19:31:54.074 3100 FEE 440964 5160 6089064 2024-02-27 19:31:54.074 2024-02-27 19:31:54.074 27900 TIP 440964 21214 6089073 2024-02-27 19:34:01.489 2024-02-27 19:34:01.489 100 FEE 440949 17727 6089074 2024-02-27 19:34:01.489 2024-02-27 19:34:01.489 900 TIP 440949 16270 6089100 2024-02-27 19:35:13.792 2024-02-27 19:35:13.792 15400 FEE 440959 13517 6089101 2024-02-27 19:35:13.792 2024-02-27 19:35:13.792 138600 TIP 440959 19976 6089107 2024-02-27 19:37:31.103 2024-02-27 19:37:31.103 1000 FEE 440977 21248 6089111 2024-02-27 19:38:14.566 2024-02-27 19:38:14.566 2100 FEE 440904 21588 6089112 2024-02-27 19:38:14.566 2024-02-27 19:38:14.566 18900 TIP 440904 1692 6089121 2024-02-27 19:39:29.517 2024-02-27 19:39:29.517 1000 FEE 440980 18930 6089161 2024-02-27 19:46:05.637 2024-02-27 19:46:05.637 1000 FEE 440990 20669 6089196 2024-02-27 19:48:32.296 2024-02-27 19:48:32.296 7700 FEE 440692 20022 6089197 2024-02-27 19:48:32.296 2024-02-27 19:48:32.296 69300 TIP 440692 766 6089231 2024-02-27 19:49:18.123 2024-02-27 19:49:18.123 1000 FEE 440985 6526 6089232 2024-02-27 19:49:18.123 2024-02-27 19:49:18.123 9000 TIP 440985 717 6089249 2024-02-27 19:49:34.701 2024-02-27 19:49:34.701 7700 FEE 440858 692 6089250 2024-02-27 19:49:34.701 2024-02-27 19:49:34.701 69300 TIP 440858 16665 6089257 2024-02-27 19:49:48.622 2024-02-27 19:49:48.622 7700 FEE 440870 14465 6089258 2024-02-27 19:49:48.622 2024-02-27 19:49:48.622 69300 TIP 440870 4776 6089265 2024-02-27 19:51:20.22 2024-02-27 19:51:20.22 3300 FEE 440988 9982 6089266 2024-02-27 19:51:20.22 2024-02-27 19:51:20.22 29700 TIP 440988 20597 6089279 2024-02-27 19:52:04.768 2024-02-27 19:52:04.768 7700 FEE 440870 10056 6089280 2024-02-27 19:52:04.768 2024-02-27 19:52:04.768 69300 TIP 440870 16594 6089283 2024-02-27 19:52:05.129 2024-02-27 19:52:05.129 7700 FEE 440870 6382 6089284 2024-02-27 19:52:05.129 2024-02-27 19:52:05.129 69300 TIP 440870 19815 6089287 2024-02-27 19:52:05.637 2024-02-27 19:52:05.637 7700 FEE 440870 13177 6089288 2024-02-27 19:52:05.637 2024-02-27 19:52:05.637 69300 TIP 440870 15662 6089293 2024-02-27 19:52:06.642 2024-02-27 19:52:06.642 100 FEE 440692 20301 6089294 2024-02-27 19:52:06.642 2024-02-27 19:52:06.642 900 TIP 440692 20745 6089299 2024-02-27 19:52:08.3 2024-02-27 19:52:08.3 7700 FEE 440858 20110 6089300 2024-02-27 19:52:08.3 2024-02-27 19:52:08.3 69300 TIP 440858 1173 6089307 2024-02-27 19:52:11.014 2024-02-27 19:52:11.014 7700 FEE 440868 20704 6089308 2024-02-27 19:52:11.014 2024-02-27 19:52:11.014 69300 TIP 440868 2724 6089323 2024-02-27 19:52:15.978 2024-02-27 19:52:15.978 7700 FEE 440991 18470 6089324 2024-02-27 19:52:15.978 2024-02-27 19:52:15.978 69300 TIP 440991 2188 6089358 2024-02-27 19:56:11.123 2024-02-27 19:56:11.123 1000 FEE 440785 12346 6089359 2024-02-27 19:56:11.123 2024-02-27 19:56:11.123 9000 TIP 440785 21573 6089370 2024-02-27 19:56:16.774 2024-02-27 19:56:16.774 0 FEE 440999 1394 6089378 2024-02-27 19:56:38.775 2024-02-27 19:56:38.775 1000 FEE 441001 6578 6089379 2024-02-27 19:56:38.775 2024-02-27 19:56:38.775 9000 TIP 441001 16867 6089390 2024-02-27 19:56:39.833 2024-02-27 19:56:39.833 1000 FEE 441001 15326 6089391 2024-02-27 19:56:39.833 2024-02-27 19:56:39.833 9000 TIP 441001 16284 6089438 2024-02-27 19:57:18.622 2024-02-27 19:57:18.622 300 FEE 440780 685 6089439 2024-02-27 19:57:18.622 2024-02-27 19:57:18.622 2700 TIP 440780 17741 6089445 2024-02-27 19:57:25.249 2024-02-27 19:57:25.249 1000 FEE 440899 623 6089446 2024-02-27 19:57:25.249 2024-02-27 19:57:25.249 9000 TIP 440899 15890 6089467 2024-02-27 19:58:41.401 2024-02-27 19:58:41.401 0 FEE 441008 4175 6089479 2024-02-27 19:59:05.93 2024-02-27 19:59:05.93 7700 FEE 441007 16424 6089480 2024-02-27 19:59:05.93 2024-02-27 19:59:05.93 69300 TIP 441007 822 6089526 2024-02-27 20:01:38.368 2024-02-27 20:01:38.368 1000 FEE 441016 17944 6089533 2024-02-27 20:02:56.854 2024-02-27 20:02:56.854 10000 FEE 441018 19403 6089542 2024-02-27 20:03:32.087 2024-02-27 20:03:32.087 2100 FEE 440963 15806 6089543 2024-02-27 20:03:32.087 2024-02-27 20:03:32.087 18900 TIP 440963 2640 6089564 2024-02-27 20:03:39.39 2024-02-27 20:03:39.39 7700 FEE 441011 20646 6089565 2024-02-27 20:03:39.39 2024-02-27 20:03:39.39 69300 TIP 441011 18051 6089590 2024-02-27 20:03:55.157 2024-02-27 20:03:55.157 7700 FEE 441011 8726 6089591 2024-02-27 20:03:55.157 2024-02-27 20:03:55.157 69300 TIP 441011 20981 6089596 2024-02-27 20:03:55.585 2024-02-27 20:03:55.585 7700 FEE 441011 2042 6089597 2024-02-27 20:03:55.585 2024-02-27 20:03:55.585 69300 TIP 441011 775 6089631 2024-02-27 20:04:15.357 2024-02-27 20:04:15.357 7700 FEE 441019 21430 6089632 2024-02-27 20:04:15.357 2024-02-27 20:04:15.357 69300 TIP 441019 4250 6089635 2024-02-27 20:04:39.052 2024-02-27 20:04:39.052 100 FEE 440652 8648 6089636 2024-02-27 20:04:39.052 2024-02-27 20:04:39.052 900 TIP 440652 11378 6089641 2024-02-27 20:04:58.616 2024-02-27 20:04:58.616 1000 FEE 441024 18842 6089645 2024-02-27 20:05:35.738 2024-02-27 20:05:35.738 1000 FEE 441026 17046 6089652 2024-02-27 20:05:47.63 2024-02-27 20:05:47.63 1000 POLL 440725 5758 6089655 2024-02-27 20:06:06.683 2024-02-27 20:06:06.683 7700 FEE 441027 2620 6089656 2024-02-27 20:06:06.683 2024-02-27 20:06:06.683 69300 TIP 441027 16059 6089667 2024-02-27 20:06:21.502 2024-02-27 20:06:21.502 1000 FEE 440870 13406 6088902 2024-02-27 19:18:18.798 2024-02-27 19:18:18.798 0 FEE 440957 18945 6088903 2024-02-27 19:18:30.951 2024-02-27 19:18:30.951 0 FEE 440959 787 6088963 2024-02-27 19:21:04.378 2024-02-27 19:21:04.378 2100 FEE 440633 929 6088964 2024-02-27 19:21:04.378 2024-02-27 19:21:04.378 18900 TIP 440633 15978 6088977 2024-02-27 19:21:05.592 2024-02-27 19:21:05.592 7700 FEE 440764 17106 6088978 2024-02-27 19:21:05.592 2024-02-27 19:21:05.592 69300 TIP 440764 17592 6088979 2024-02-27 19:21:05.717 2024-02-27 19:21:05.717 7700 FEE 440764 2722 6088980 2024-02-27 19:21:05.717 2024-02-27 19:21:05.717 69300 TIP 440764 859 6089014 2024-02-27 19:23:54.915 2024-02-27 19:23:54.915 1000 FEE 440712 2000 6089015 2024-02-27 19:23:54.915 2024-02-27 19:23:54.915 9000 TIP 440712 2328 6089046 2024-02-27 19:30:07.965 2024-02-27 19:30:07.965 2700 FEE 440960 7869 6089047 2024-02-27 19:30:07.965 2024-02-27 19:30:07.965 24300 TIP 440960 19837 6089054 2024-02-27 19:31:08.251 2024-02-27 19:31:08.251 0 FEE 440969 19911 6089055 2024-02-27 19:31:12.227 2024-02-27 19:31:12.227 0 FEE 440969 19660 6089066 2024-02-27 19:32:12.044 2024-02-27 19:32:12.044 1000 FEE 440971 12562 6089077 2024-02-27 19:34:02.146 2024-02-27 19:34:02.146 7700 FEE 440969 6594 6089078 2024-02-27 19:34:02.146 2024-02-27 19:34:02.146 69300 TIP 440969 12272 6089081 2024-02-27 19:34:02.762 2024-02-27 19:34:02.762 7700 FEE 440969 5757 6089082 2024-02-27 19:34:02.762 2024-02-27 19:34:02.762 69300 TIP 440969 620 6089084 2024-02-27 19:34:09.211 2024-02-27 19:34:09.211 100 FEE 440931 676 6089085 2024-02-27 19:34:09.211 2024-02-27 19:34:09.211 900 TIP 440931 19961 6089102 2024-02-27 19:35:27.775 2024-02-27 19:35:27.775 77000 DONT_LIKE_THIS 440946 19652 6089108 2024-02-27 19:37:54.565 2024-02-27 19:37:54.565 0 FEE 440975 20026 6089136 2024-02-27 19:41:13.702 2024-02-27 19:41:13.702 1000 FEE 440729 9290 6089137 2024-02-27 19:41:13.702 2024-02-27 19:41:13.702 9000 TIP 440729 16284 6089149 2024-02-27 19:44:15.989 2024-02-27 19:44:15.989 4000 FEE 440982 642 6089150 2024-02-27 19:44:15.989 2024-02-27 19:44:15.989 36000 TIP 440982 21249 6089198 2024-02-27 19:48:32.411 2024-02-27 19:48:32.411 7700 FEE 440692 20756 6089199 2024-02-27 19:48:32.411 2024-02-27 19:48:32.411 69300 TIP 440692 802 6089223 2024-02-27 19:49:17.462 2024-02-27 19:49:17.462 1000 FEE 440985 19639 6089224 2024-02-27 19:49:17.462 2024-02-27 19:49:17.462 9000 TIP 440985 19154 6089247 2024-02-27 19:49:27.165 2024-02-27 19:49:27.165 7700 FEE 440870 21481 6089248 2024-02-27 19:49:27.165 2024-02-27 19:49:27.165 69300 TIP 440870 646 6089264 2024-02-27 19:51:16.049 2024-02-27 19:51:16.049 1000 FEE 440993 2046 6089281 2024-02-27 19:52:04.936 2024-02-27 19:52:04.936 7700 FEE 440870 16965 6089282 2024-02-27 19:52:04.936 2024-02-27 19:52:04.936 69300 TIP 440870 718 6089321 2024-02-27 19:52:14.36 2024-02-27 19:52:14.36 7700 FEE 440966 6137 6089322 2024-02-27 19:52:14.36 2024-02-27 19:52:14.36 69300 TIP 440966 657 6089335 2024-02-27 19:52:51.456 2024-02-27 19:52:51.456 1000 FEE 440995 2329 6089356 2024-02-27 19:56:10.61 2024-02-27 19:56:10.61 1000 FEE 440785 19941 6089357 2024-02-27 19:56:10.61 2024-02-27 19:56:10.61 9000 TIP 440785 12139 6089375 2024-02-27 19:56:33.412 2024-02-27 19:56:33.412 100000 FEE 441002 715 6089376 2024-02-27 19:56:38.59 2024-02-27 19:56:38.59 1000 FEE 441001 1038 6089377 2024-02-27 19:56:38.59 2024-02-27 19:56:38.59 9000 TIP 441001 16149 6089382 2024-02-27 19:56:39.135 2024-02-27 19:56:39.135 1000 FEE 441001 11821 6089383 2024-02-27 19:56:39.135 2024-02-27 19:56:39.135 9000 TIP 441001 18751 6089392 2024-02-27 19:56:40.283 2024-02-27 19:56:40.283 1000 FEE 441001 21180 6089393 2024-02-27 19:56:40.283 2024-02-27 19:56:40.283 9000 TIP 441001 17522 6089397 2024-02-27 19:56:48.331 2024-02-27 19:56:48.331 0 FEE 440999 1105 6089398 2024-02-27 19:56:52.925 2024-02-27 19:56:52.925 1000 FEE 441004 11491 6089422 2024-02-27 19:57:16.594 2024-02-27 19:57:16.594 600 FEE 440780 17218 6089423 2024-02-27 19:57:16.594 2024-02-27 19:57:16.594 5400 TIP 440780 10060 6089434 2024-02-27 19:57:18.146 2024-02-27 19:57:18.146 300 FEE 440780 20681 6089435 2024-02-27 19:57:18.146 2024-02-27 19:57:18.146 2700 TIP 440780 19151 6089450 2024-02-27 19:57:57.089 2024-02-27 19:57:57.089 7700 FEE 441002 9026 6089451 2024-02-27 19:57:57.089 2024-02-27 19:57:57.089 69300 TIP 441002 1567 6089460 2024-02-27 19:58:02.873 2024-02-27 19:58:02.873 300 FEE 440562 10549 6089461 2024-02-27 19:58:02.873 2024-02-27 19:58:02.873 2700 TIP 440562 2213 6089470 2024-02-27 19:59:01.507 2024-02-27 19:59:01.507 7700 FEE 441003 2780 6089471 2024-02-27 19:59:01.507 2024-02-27 19:59:01.507 69300 TIP 441003 15732 6089472 2024-02-27 19:59:02.125 2024-02-27 19:59:02.125 2100 FEE 440992 17237 6089473 2024-02-27 19:59:02.125 2024-02-27 19:59:02.125 18900 TIP 440992 642 6089506 2024-02-27 20:00:16.852 2024-02-27 20:00:16.852 7700 FEE 440911 9494 6089507 2024-02-27 20:00:16.852 2024-02-27 20:00:16.852 69300 TIP 440911 2431 6089522 2024-02-27 20:00:51.476 2024-02-27 20:00:51.476 1000 FEE 441014 18528 6089525 2024-02-27 20:01:23.24 2024-02-27 20:01:23.24 1000 FEE 441015 929 6089540 2024-02-27 20:03:29.562 2024-02-27 20:03:29.562 2100 FEE 440810 698 6089541 2024-02-27 20:03:29.562 2024-02-27 20:03:29.562 18900 TIP 440810 10060 6089548 2024-02-27 20:03:38.183 2024-02-27 20:03:38.183 7700 FEE 441011 14939 6089549 2024-02-27 20:03:38.183 2024-02-27 20:03:38.183 69300 TIP 441011 16808 6089552 2024-02-27 20:03:38.561 2024-02-27 20:03:38.561 15400 FEE 441011 9355 6089553 2024-02-27 20:03:38.561 2024-02-27 20:03:38.561 138600 TIP 441011 17221 6089566 2024-02-27 20:03:39.611 2024-02-27 20:03:39.611 7700 FEE 441011 20243 6089567 2024-02-27 20:03:39.611 2024-02-27 20:03:39.611 69300 TIP 441011 956 6089607 2024-02-27 20:04:07.948 2024-02-27 20:04:07.948 7700 FEE 441019 1433 6089608 2024-02-27 20:04:07.948 2024-02-27 20:04:07.948 69300 TIP 441019 19333 6089611 2024-02-27 20:04:10.288 2024-02-27 20:04:10.288 7700 FEE 441019 12516 6089612 2024-02-27 20:04:10.288 2024-02-27 20:04:10.288 69300 TIP 441019 16912 6089623 2024-02-27 20:04:12.368 2024-02-27 20:04:12.368 7700 FEE 441017 14152 6089624 2024-02-27 20:04:12.368 2024-02-27 20:04:12.368 69300 TIP 441017 15833 6089629 2024-02-27 20:04:14.665 2024-02-27 20:04:14.665 7700 FEE 441019 11527 6089630 2024-02-27 20:04:14.665 2024-02-27 20:04:14.665 69300 TIP 441019 20577 6089653 2024-02-27 20:05:55.976 2024-02-27 20:05:55.976 120000 FEE 441029 20897 6089659 2024-02-27 20:06:08.193 2024-02-27 20:06:08.193 7700 FEE 441027 8245 6089660 2024-02-27 20:06:08.193 2024-02-27 20:06:08.193 69300 TIP 441027 2576 6089694 2024-02-27 20:08:19.514 2024-02-27 20:08:19.514 1000 FEE 441033 1007 6089695 2024-02-27 20:08:20.344 2024-02-27 20:08:20.344 7700 FEE 441030 2042 6089696 2024-02-27 20:08:20.344 2024-02-27 20:08:20.344 69300 TIP 441030 19557 6089712 2024-02-27 20:11:13.054 2024-02-27 20:11:13.054 3100 FEE 440923 18016 6089713 2024-02-27 20:11:13.054 2024-02-27 20:11:13.054 27900 TIP 440923 646 6089717 2024-02-27 20:11:23.185 2024-02-27 20:11:23.185 3100 FEE 440706 20301 6089718 2024-02-27 20:11:23.185 2024-02-27 20:11:23.185 27900 TIP 440706 19501 6089733 2024-02-27 20:12:34.94 2024-02-27 20:12:34.94 7700 FEE 441038 14941 6089734 2024-02-27 20:12:34.94 2024-02-27 20:12:34.94 69300 TIP 441038 17713 6089752 2024-02-27 20:13:35.207 2024-02-27 20:13:35.207 3300 FEE 441026 1008 6089753 2024-02-27 20:13:35.207 2024-02-27 20:13:35.207 29700 TIP 441026 16724 6089757 2024-02-27 20:14:07.661 2024-02-27 20:14:07.661 1000 FEE 441044 21263 6089764 2024-02-27 20:15:04.1 2024-02-27 20:15:04.1 1000 FEE 441047 21541 6088936 2024-02-27 19:20:58.469 2024-02-27 19:20:58.469 2100 FEE 440764 4574 6088937 2024-02-27 19:20:58.469 2024-02-27 19:20:58.469 18900 TIP 440764 18177 6088946 2024-02-27 19:21:00.446 2024-02-27 19:21:00.446 7700 FEE 440764 6421 6088947 2024-02-27 19:21:00.446 2024-02-27 19:21:00.446 69300 TIP 440764 9078 6088952 2024-02-27 19:21:00.912 2024-02-27 19:21:00.912 7700 FEE 440764 20433 6088953 2024-02-27 19:21:00.912 2024-02-27 19:21:00.912 69300 TIP 440764 18745 6088973 2024-02-27 19:21:05.26 2024-02-27 19:21:05.26 7700 FEE 440764 21194 6088974 2024-02-27 19:21:05.26 2024-02-27 19:21:05.26 69300 TIP 440764 1726 6089016 2024-02-27 19:23:55.495 2024-02-27 19:23:55.495 1000 FEE 440712 21600 6089017 2024-02-27 19:23:55.495 2024-02-27 19:23:55.495 9000 TIP 440712 1772 6089032 2024-02-27 19:29:54.831 2024-02-27 19:29:54.831 2700 FEE 440892 14663 6089033 2024-02-27 19:29:54.831 2024-02-27 19:29:54.831 24300 TIP 440892 14376 6089061 2024-02-27 19:31:53.297 2024-02-27 19:31:53.297 4000 FEE 440962 9363 6089062 2024-02-27 19:31:53.297 2024-02-27 19:31:53.297 36000 TIP 440962 678 6089069 2024-02-27 19:33:20.723 2024-02-27 19:33:20.723 1000 FEE 440973 19103 6089088 2024-02-27 19:34:30.188 2024-02-27 19:34:30.188 1000 FEE 440975 18008 6089098 2024-02-27 19:35:11.648 2024-02-27 19:35:11.648 7700 FEE 440959 805 6089099 2024-02-27 19:35:11.648 2024-02-27 19:35:11.648 69300 TIP 440959 18923 6089148 2024-02-27 19:44:07.592 2024-02-27 19:44:07.592 100000 FEE 440984 828 6089155 2024-02-27 19:45:03.715 2024-02-27 19:45:03.715 2500 FEE 440959 21051 6089156 2024-02-27 19:45:03.715 2024-02-27 19:45:03.715 22500 TIP 440959 11698 6089164 2024-02-27 19:46:15.06 2024-02-27 19:46:15.06 7700 FEE 440983 21314 6089165 2024-02-27 19:46:15.06 2024-02-27 19:46:15.06 69300 TIP 440983 2213 6089178 2024-02-27 19:48:30.004 2024-02-27 19:48:30.004 7700 FEE 440692 21506 6089179 2024-02-27 19:48:30.004 2024-02-27 19:48:30.004 69300 TIP 440692 2620 6089180 2024-02-27 19:48:30.483 2024-02-27 19:48:30.483 15400 FEE 440692 20757 6089181 2024-02-27 19:48:30.483 2024-02-27 19:48:30.483 138600 TIP 440692 4167 6089184 2024-02-27 19:48:31.531 2024-02-27 19:48:31.531 15400 FEE 440692 19854 6089185 2024-02-27 19:48:31.531 2024-02-27 19:48:31.531 138600 TIP 440692 649 6089209 2024-02-27 19:49:14.784 2024-02-27 19:49:14.784 7700 FEE 440966 11866 6089210 2024-02-27 19:49:14.784 2024-02-27 19:49:14.784 69300 TIP 440966 4984 6089239 2024-02-27 19:49:25.598 2024-02-27 19:49:25.598 7700 FEE 440870 9354 6089240 2024-02-27 19:49:25.598 2024-02-27 19:49:25.598 69300 TIP 440870 9078 6089259 2024-02-27 19:50:02.714 2024-02-27 19:50:02.714 100 FEE 440990 2844 6089260 2024-02-27 19:50:02.714 2024-02-27 19:50:02.714 900 TIP 440990 14195 6089267 2024-02-27 19:51:39.339 2024-02-27 19:51:39.339 3200 FEE 440980 16354 6089268 2024-02-27 19:51:39.339 2024-02-27 19:51:39.339 28800 TIP 440980 20120 6089297 2024-02-27 19:52:08.084 2024-02-27 19:52:08.084 15400 FEE 440858 18372 6089298 2024-02-27 19:52:08.084 2024-02-27 19:52:08.084 138600 TIP 440858 20026 6089301 2024-02-27 19:52:08.902 2024-02-27 19:52:08.902 7700 FEE 440858 21571 6089302 2024-02-27 19:52:08.902 2024-02-27 19:52:08.902 69300 TIP 440858 9290 6089311 2024-02-27 19:52:12.97 2024-02-27 19:52:12.97 7700 FEE 440966 21214 6089312 2024-02-27 19:52:12.97 2024-02-27 19:52:12.97 69300 TIP 440966 20744 6089315 2024-02-27 19:52:13.316 2024-02-27 19:52:13.316 7700 FEE 440966 21627 6089316 2024-02-27 19:52:13.316 2024-02-27 19:52:13.316 69300 TIP 440966 1602 6089317 2024-02-27 19:52:13.43 2024-02-27 19:52:13.43 7700 FEE 440966 11866 6089318 2024-02-27 19:52:13.43 2024-02-27 19:52:13.43 69300 TIP 440966 21242 6089331 2024-02-27 19:52:21.961 2024-02-27 19:52:21.961 7700 FEE 440703 4062 6089332 2024-02-27 19:52:21.961 2024-02-27 19:52:21.961 69300 TIP 440703 20871 6089338 2024-02-27 19:54:03.741 2024-02-27 19:54:03.741 1000 FEE 440996 17411 6089353 2024-02-27 19:56:08.127 2024-02-27 19:56:08.127 10000 FEE 441001 2952 6089360 2024-02-27 19:56:11.493 2024-02-27 19:56:11.493 1000 FEE 440785 20581 6089361 2024-02-27 19:56:11.493 2024-02-27 19:56:11.493 9000 TIP 440785 20094 6089368 2024-02-27 19:56:14.802 2024-02-27 19:56:14.802 1000 FEE 440785 12368 6089369 2024-02-27 19:56:14.802 2024-02-27 19:56:14.802 9000 TIP 440785 7376 6088941 2024-02-27 19:20:59.12 2024-02-27 19:20:59.12 18900 TIP 440587 16126 6088944 2024-02-27 19:21:00.309 2024-02-27 19:21:00.309 2100 FEE 440663 18817 6088945 2024-02-27 19:21:00.309 2024-02-27 19:21:00.309 18900 TIP 440663 18274 6088954 2024-02-27 19:21:00.983 2024-02-27 19:21:00.983 2100 FEE 440729 866 6088955 2024-02-27 19:21:00.983 2024-02-27 19:21:00.983 18900 TIP 440729 21119 6088975 2024-02-27 19:21:05.505 2024-02-27 19:21:05.505 15400 FEE 440764 1090 6088976 2024-02-27 19:21:05.505 2024-02-27 19:21:05.505 138600 TIP 440764 805 6089010 2024-02-27 19:23:53.562 2024-02-27 19:23:53.562 1000 FEE 440712 19533 6089011 2024-02-27 19:23:53.562 2024-02-27 19:23:53.562 9000 TIP 440712 2065 6089022 2024-02-27 19:25:25.357 2024-02-27 19:25:25.357 1000 FEE 440964 19836 6089025 2024-02-27 19:27:52.804 2024-02-27 19:27:52.804 1000 FEE 440965 18836 6089028 2024-02-27 19:29:01.61 2024-02-27 19:29:01.61 7700 FEE 440938 21212 6089029 2024-02-27 19:29:01.61 2024-02-27 19:29:01.61 69300 TIP 440938 20080 6089049 2024-02-27 19:30:31.468 2024-02-27 19:30:31.468 1000 FEE 440968 16808 6089059 2024-02-27 19:31:47.317 2024-02-27 19:31:47.317 100 FEE 440729 2056 6089060 2024-02-27 19:31:47.317 2024-02-27 19:31:47.317 900 TIP 440729 19613 6089094 2024-02-27 19:35:09.917 2024-02-27 19:35:09.917 7700 FEE 440959 20980 6089095 2024-02-27 19:35:09.917 2024-02-27 19:35:09.917 69300 TIP 440959 19484 6089126 2024-02-27 19:40:47.979 2024-02-27 19:40:47.979 1000 FEE 440982 18836 6089134 2024-02-27 19:41:12.507 2024-02-27 19:41:12.507 1000 FEE 440633 13174 6089135 2024-02-27 19:41:12.507 2024-02-27 19:41:12.507 9000 TIP 440633 5809 6089151 2024-02-27 19:44:30.706 2024-02-27 19:44:30.706 100000 FEE 440985 18468 6089162 2024-02-27 19:46:11.191 2024-02-27 19:46:11.191 7700 FEE 440987 4292 6089163 2024-02-27 19:46:11.191 2024-02-27 19:46:11.191 69300 TIP 440987 9335 6089170 2024-02-27 19:48:29.01 2024-02-27 19:48:29.01 7700 FEE 440692 9758 6089171 2024-02-27 19:48:29.01 2024-02-27 19:48:29.01 69300 TIP 440692 4345 6089186 2024-02-27 19:48:31.622 2024-02-27 19:48:31.622 7700 FEE 440692 6327 6089187 2024-02-27 19:48:31.622 2024-02-27 19:48:31.622 69300 TIP 440692 20087 6089221 2024-02-27 19:49:17.086 2024-02-27 19:49:17.086 1000 FEE 440985 20756 6089222 2024-02-27 19:49:17.086 2024-02-27 19:49:17.086 9000 TIP 440985 17237 6089263 2024-02-27 19:51:14.183 2024-02-27 19:51:14.183 1000 FEE 440992 10586 6089295 2024-02-27 19:52:08.034 2024-02-27 19:52:08.034 900 FEE 440692 1564 6089296 2024-02-27 19:52:08.034 2024-02-27 19:52:08.034 8100 TIP 440692 14449 6089303 2024-02-27 19:52:09.875 2024-02-27 19:52:09.875 7700 FEE 440868 19132 6089304 2024-02-27 19:52:09.875 2024-02-27 19:52:09.875 69300 TIP 440868 16329 6089346 2024-02-27 19:55:35.501 2024-02-27 19:55:35.501 1000 FEE 440999 10549 6089350 2024-02-27 19:56:02.958 2024-02-27 19:56:02.958 500 FEE 440587 18923 6089351 2024-02-27 19:56:02.958 2024-02-27 19:56:02.958 4500 TIP 440587 20190 6089364 2024-02-27 19:56:12.004 2024-02-27 19:56:12.004 1000 FEE 440785 2326 6088998 2024-02-27 19:23:24.13 2024-02-27 19:23:24.13 1000 FEE 440959 16808 6088999 2024-02-27 19:23:24.13 2024-02-27 19:23:24.13 9000 TIP 440959 2203 6089044 2024-02-27 19:30:06.766 2024-02-27 19:30:06.766 2700 FEE 440757 946 6089045 2024-02-27 19:30:06.766 2024-02-27 19:30:06.766 24300 TIP 440757 21514 6089109 2024-02-27 19:38:00.79 2024-02-27 19:38:00.79 1000 POLL 440725 17713 6089113 2024-02-27 19:38:25.057 2024-02-27 19:38:25.057 10000 FEE 440978 4768 6089127 2024-02-27 19:40:49 2024-02-27 19:40:49 2100 FEE 440967 2722 6089128 2024-02-27 19:40:49 2024-02-27 19:40:49 18900 TIP 440967 658 6089138 2024-02-27 19:41:41.101 2024-02-27 19:41:41.101 1000 FEE 440983 1738 6089157 2024-02-27 19:45:25.771 2024-02-27 19:45:25.771 10000 FEE 440988 4084 6089176 2024-02-27 19:48:29.476 2024-02-27 19:48:29.476 7700 FEE 440692 4502 6089177 2024-02-27 19:48:29.476 2024-02-27 19:48:29.476 69300 TIP 440692 19494 6089190 2024-02-27 19:48:31.839 2024-02-27 19:48:31.839 7700 FEE 440692 11263 6089191 2024-02-27 19:48:31.839 2024-02-27 19:48:31.839 69300 TIP 440692 14381 6089202 2024-02-27 19:48:40.008 2024-02-27 19:48:40.008 1000 FEE 440898 675 6089203 2024-02-27 19:48:40.008 2024-02-27 19:48:40.008 9000 TIP 440898 14080 6089207 2024-02-27 19:49:12.954 2024-02-27 19:49:12.954 7700 FEE 440991 17166 6089208 2024-02-27 19:49:12.954 2024-02-27 19:49:12.954 69300 TIP 440991 19352 6089213 2024-02-27 19:49:15.067 2024-02-27 19:49:15.067 7700 FEE 440966 636 6089214 2024-02-27 19:49:15.067 2024-02-27 19:49:15.067 69300 TIP 440966 2519 6089219 2024-02-27 19:49:16.914 2024-02-27 19:49:16.914 7700 FEE 440896 10393 6089220 2024-02-27 19:49:16.914 2024-02-27 19:49:16.914 69300 TIP 440896 20500 6089229 2024-02-27 19:49:17.996 2024-02-27 19:49:17.996 1000 FEE 440985 21274 6089230 2024-02-27 19:49:17.996 2024-02-27 19:49:17.996 9000 TIP 440985 776 6089233 2024-02-27 19:49:20.119 2024-02-27 19:49:20.119 7700 FEE 440863 20854 6089234 2024-02-27 19:49:20.119 2024-02-27 19:49:20.119 69300 TIP 440863 2674 6089237 2024-02-27 19:49:22.958 2024-02-27 19:49:22.958 7700 FEE 440703 21603 6089238 2024-02-27 19:49:22.958 2024-02-27 19:49:22.958 69300 TIP 440703 18396 6089245 2024-02-27 19:49:27.111 2024-02-27 19:49:27.111 7700 FEE 440870 19821 6089246 2024-02-27 19:49:27.111 2024-02-27 19:49:27.111 69300 TIP 440870 11942 6089251 2024-02-27 19:49:48.17 2024-02-27 19:49:48.17 7700 FEE 440870 1060 6089252 2024-02-27 19:49:48.17 2024-02-27 19:49:48.17 69300 TIP 440870 18736 6089023 2024-02-27 19:26:03.277 2024-02-27 19:26:03.277 1000 STREAM 141924 9365 6089024 2024-02-27 19:27:03.282 2024-02-27 19:27:03.282 1000 STREAM 141924 2780 6089026 2024-02-27 19:28:03.27 2024-02-27 19:28:03.27 1000 STREAM 141924 14295 6089053 2024-02-27 19:31:03.288 2024-02-27 19:31:03.288 1000 STREAM 141924 19494 6089065 2024-02-27 19:32:03.306 2024-02-27 19:32:03.306 1000 STREAM 141924 7510 6089124 2024-02-27 19:40:03.323 2024-02-27 19:40:03.323 1000 STREAM 141924 826 6089143 2024-02-27 19:42:03.326 2024-02-27 19:42:03.326 1000 STREAM 141924 979 6089146 2024-02-27 19:43:03.333 2024-02-27 19:43:03.333 1000 STREAM 141924 15336 6089154 2024-02-27 19:45:03.355 2024-02-27 19:45:03.355 1000 STREAM 141924 16351 6089160 2024-02-27 19:46:03.341 2024-02-27 19:46:03.341 1000 STREAM 141924 1135 6089167 2024-02-27 19:47:03.344 2024-02-27 19:47:03.344 1000 STREAM 141924 696 6089169 2024-02-27 19:48:03.348 2024-02-27 19:48:03.348 1000 STREAM 141924 2724 6089204 2024-02-27 19:49:03.323 2024-02-27 19:49:03.323 1000 STREAM 141924 19156 6089261 2024-02-27 19:50:03.364 2024-02-27 19:50:03.364 1000 STREAM 141924 18995 6089262 2024-02-27 19:51:03.356 2024-02-27 19:51:03.356 1000 STREAM 141924 1286 6089343 2024-02-27 19:55:03.378 2024-02-27 19:55:03.378 1000 STREAM 141924 11999 6089399 2024-02-27 19:57:03.389 2024-02-27 19:57:03.389 1000 STREAM 141924 2010 6089476 2024-02-27 19:59:03.462 2024-02-27 19:59:03.462 1000 STREAM 141924 2748 6089642 2024-02-27 20:05:03.464 2024-02-27 20:05:03.464 1000 STREAM 141924 20066 6089699 2024-02-27 20:09:03.491 2024-02-27 20:09:03.491 1000 STREAM 141924 15491 6089701 2024-02-27 20:10:03.47 2024-02-27 20:10:03.47 1000 STREAM 141924 19524 6089766 2024-02-27 20:16:03.531 2024-02-27 20:16:03.531 1000 STREAM 141924 11873 6089775 2024-02-27 20:17:03.537 2024-02-27 20:17:03.537 1000 STREAM 141924 1618 6089776 2024-02-27 20:18:03.541 2024-02-27 20:18:03.541 1000 STREAM 141924 651 6089785 2024-02-27 20:20:03.534 2024-02-27 20:20:03.534 1000 STREAM 141924 10591 6089843 2024-02-27 20:27:03.588 2024-02-27 20:27:03.588 1000 STREAM 141924 13378 6089855 2024-02-27 20:29:03.6 2024-02-27 20:29:03.6 1000 STREAM 141924 18114 6089862 2024-02-27 20:30:03.605 2024-02-27 20:30:03.605 1000 STREAM 141924 19037 6089863 2024-02-27 20:31:03.606 2024-02-27 20:31:03.606 1000 STREAM 141924 7869 6089941 2024-02-27 20:41:03.633 2024-02-27 20:41:03.633 1000 STREAM 141924 954 6089120 2024-02-27 19:39:03.322 2024-02-27 19:39:03.322 1000 STREAM 141924 8416 6089129 2024-02-27 19:41:03.326 2024-02-27 19:41:03.326 1000 STREAM 141924 9982 6089147 2024-02-27 19:44:03.336 2024-02-27 19:44:03.336 1000 STREAM 141924 20669 6089270 2024-02-27 19:52:03.362 2024-02-27 19:52:03.362 1000 STREAM 141924 9874 6089336 2024-02-27 19:53:03.365 2024-02-27 19:53:03.365 1000 STREAM 141924 17217 6089337 2024-02-27 19:54:03.372 2024-02-27 19:54:03.372 1000 STREAM 141924 16789 6089352 2024-02-27 19:56:03.385 2024-02-27 19:56:03.385 1000 STREAM 141924 1012 6089462 2024-02-27 19:58:03.446 2024-02-27 19:58:03.446 1000 STREAM 141924 11498 6089486 2024-02-27 20:00:03.488 2024-02-27 20:00:03.488 1000 STREAM 141924 14489 6089524 2024-02-27 20:01:03.474 2024-02-27 20:01:03.474 1000 STREAM 141924 5904 6089527 2024-02-27 20:02:03.467 2024-02-27 20:02:03.467 1000 STREAM 141924 13198 6089534 2024-02-27 20:03:03.468 2024-02-27 20:03:03.468 1000 STREAM 141924 1881 6089601 2024-02-27 20:04:03.47 2024-02-27 20:04:03.47 1000 STREAM 141924 803 6089654 2024-02-27 20:06:03.488 2024-02-27 20:06:03.488 1000 STREAM 141924 13622 6089684 2024-02-27 20:07:03.464 2024-02-27 20:07:03.464 1000 STREAM 141924 18219 6089689 2024-02-27 20:08:03.493 2024-02-27 20:08:03.493 1000 STREAM 141924 21119 6089711 2024-02-27 20:11:03.521 2024-02-27 20:11:03.521 1000 STREAM 141924 18270 6089730 2024-02-27 20:12:03.487 2024-02-27 20:12:03.487 1000 STREAM 141924 21091 6089741 2024-02-27 20:13:03.503 2024-02-27 20:13:03.503 1000 STREAM 141924 21343 6089756 2024-02-27 20:14:03.509 2024-02-27 20:14:03.509 1000 STREAM 141924 17693 6089762 2024-02-27 20:15:03.516 2024-02-27 20:15:03.516 1000 STREAM 141924 5487 6089780 2024-02-27 20:19:03.526 2024-02-27 20:19:03.526 1000 STREAM 141924 20585 6089797 2024-02-27 20:21:03.549 2024-02-27 20:21:03.549 1000 STREAM 141924 20490 6089800 2024-02-27 20:22:03.564 2024-02-27 20:22:03.564 1000 STREAM 141924 18832 6089804 2024-02-27 20:23:03.56 2024-02-27 20:23:03.56 1000 STREAM 141924 2206 6089805 2024-02-27 20:24:03.597 2024-02-27 20:24:03.597 1000 STREAM 141924 6149 6089839 2024-02-27 20:26:03.575 2024-02-27 20:26:03.575 1000 STREAM 141924 14472 6089225 2024-02-27 19:49:17.624 2024-02-27 19:49:17.624 1000 FEE 440985 19848 6089226 2024-02-27 19:49:17.624 2024-02-27 19:49:17.624 9000 TIP 440985 9150 6089235 2024-02-27 19:49:22.916 2024-02-27 19:49:22.916 7700 FEE 440703 19662 6089236 2024-02-27 19:49:22.916 2024-02-27 19:49:22.916 69300 TIP 440703 20970 6089241 2024-02-27 19:49:26.809 2024-02-27 19:49:26.809 7700 FEE 440870 21103 6089242 2024-02-27 19:49:26.809 2024-02-27 19:49:26.809 69300 TIP 440870 21418 6089243 2024-02-27 19:49:26.939 2024-02-27 19:49:26.939 7700 FEE 440870 20201 6089244 2024-02-27 19:49:26.939 2024-02-27 19:49:26.939 69300 TIP 440870 644 6089255 2024-02-27 19:49:48.415 2024-02-27 19:49:48.415 7700 FEE 440870 4014 6089256 2024-02-27 19:49:48.415 2024-02-27 19:49:48.415 69300 TIP 440870 15226 6089269 2024-02-27 19:51:53.86 2024-02-27 19:51:53.86 1000 FEE 440994 18051 6089273 2024-02-27 19:52:04.4 2024-02-27 19:52:04.4 7700 FEE 440870 10719 6089274 2024-02-27 19:52:04.4 2024-02-27 19:52:04.4 69300 TIP 440870 13055 6089275 2024-02-27 19:52:04.486 2024-02-27 19:52:04.486 7700 FEE 440870 910 6089276 2024-02-27 19:52:04.486 2024-02-27 19:52:04.486 69300 TIP 440870 20183 6089344 2024-02-27 19:55:14.65 2024-02-27 19:55:14.65 1000 FEE 440997 20715 6089345 2024-02-27 19:55:31.322 2024-02-27 19:55:31.322 10000 FEE 440998 13553 6089354 2024-02-27 19:56:09.779 2024-02-27 19:56:09.779 1000 FEE 440785 15336 6089355 2024-02-27 19:56:09.779 2024-02-27 19:56:09.779 9000 TIP 440785 21021 6089366 2024-02-27 19:56:12.248 2024-02-27 19:56:12.248 1000 FEE 440785 21417 6089367 2024-02-27 19:56:12.248 2024-02-27 19:56:12.248 9000 TIP 440785 19488 6089380 2024-02-27 19:56:38.952 2024-02-27 19:56:38.952 1000 FEE 441001 1814 6089381 2024-02-27 19:56:38.952 2024-02-27 19:56:38.952 9000 TIP 441001 18274 6089396 2024-02-27 19:56:42.906 2024-02-27 19:56:42.906 1000 FEE 441003 20849 6089416 2024-02-27 19:57:15.594 2024-02-27 19:57:15.594 300 FEE 440780 21357 6089417 2024-02-27 19:57:15.594 2024-02-27 19:57:15.594 2700 TIP 440780 15103 6089426 2024-02-27 19:57:17.131 2024-02-27 19:57:17.131 300 FEE 440780 20924 6089427 2024-02-27 19:57:17.131 2024-02-27 19:57:17.131 2700 TIP 440780 18271 6089444 2024-02-27 19:57:21.769 2024-02-27 19:57:21.769 1000 FEE 441005 1030 6089448 2024-02-27 19:57:37.947 2024-02-27 19:57:37.947 500 FEE 440829 10611 6089449 2024-02-27 19:57:37.947 2024-02-27 19:57:37.947 4500 TIP 440829 14663 6089454 2024-02-27 19:57:57.868 2024-02-27 19:57:57.868 7700 FEE 441006 14650 6089455 2024-02-27 19:57:57.868 2024-02-27 19:57:57.868 69300 TIP 441006 17455 6089468 2024-02-27 19:58:51.472 2024-02-27 19:58:51.472 2100 FEE 440985 15662 6089469 2024-02-27 19:58:51.472 2024-02-27 19:58:51.472 18900 TIP 440985 21247 6089477 2024-02-27 19:59:04.099 2024-02-27 19:59:04.099 7700 FEE 440993 21263 6089478 2024-02-27 19:59:04.099 2024-02-27 19:59:04.099 69300 TIP 440993 1718 6089487 2024-02-27 20:00:05.174 2024-02-27 20:00:05.174 7700 FEE 440729 951 6089488 2024-02-27 20:00:05.174 2024-02-27 20:00:05.174 69300 TIP 440729 16513 6089495 2024-02-27 20:00:13.066 2024-02-27 20:00:13.066 1000 FEE 441000 17714 6089496 2024-02-27 20:00:13.066 2024-02-27 20:00:13.066 9000 TIP 441000 19537 6089512 2024-02-27 20:00:17.23 2024-02-27 20:00:17.23 7700 FEE 440911 21291 6089513 2024-02-27 20:00:17.23 2024-02-27 20:00:17.23 69300 TIP 440911 12609 6089516 2024-02-27 20:00:18.75 2024-02-27 20:00:18.75 100 FEE 440898 6268 6089517 2024-02-27 20:00:18.75 2024-02-27 20:00:18.75 900 TIP 440898 18524 6089550 2024-02-27 20:03:38.277 2024-02-27 20:03:38.277 7700 FEE 441011 18717 6089551 2024-02-27 20:03:38.277 2024-02-27 20:03:38.277 69300 TIP 441011 5069 6089572 2024-02-27 20:03:40.336 2024-02-27 20:03:40.336 7700 FEE 441011 9916 6089573 2024-02-27 20:03:40.336 2024-02-27 20:03:40.336 69300 TIP 441011 12261 6089580 2024-02-27 20:03:45.374 2024-02-27 20:03:45.374 1000 FEE 441015 9099 6089581 2024-02-27 20:03:45.374 2024-02-27 20:03:45.374 9000 TIP 441015 4378 6089633 2024-02-27 20:04:15.386 2024-02-27 20:04:15.386 7700 FEE 441019 21575 6089634 2024-02-27 20:04:15.386 2024-02-27 20:04:15.386 69300 TIP 441019 12721 6089644 2024-02-27 20:05:30.284 2024-02-27 20:05:30.284 1000 FEE 441025 11288 6089663 2024-02-27 20:06:11.204 2024-02-27 20:06:11.204 2100 FEE 440321 18904 6089664 2024-02-27 20:06:11.204 2024-02-27 20:06:11.204 18900 TIP 440321 7673 6089673 2024-02-27 20:06:22.945 2024-02-27 20:06:22.945 1000 FEE 440870 2748 6089674 2024-02-27 20:06:22.945 2024-02-27 20:06:22.945 9000 TIP 440870 20841 6089676 2024-02-27 20:06:36.142 2024-02-27 20:06:36.142 1000 FEE 441031 18072 6089687 2024-02-27 20:08:02.809 2024-02-27 20:08:02.809 1000 FEE 440692 649 6089688 2024-02-27 20:08:02.809 2024-02-27 20:08:02.809 9000 TIP 440692 21064 6089692 2024-02-27 20:08:15.313 2024-02-27 20:08:15.313 100 FEE 440999 2639 6089693 2024-02-27 20:08:15.313 2024-02-27 20:08:15.313 900 TIP 440999 1425 6089705 2024-02-27 20:10:40.006 2024-02-27 20:10:40.006 1000 FEE 441037 19890 6089719 2024-02-27 20:11:33.444 2024-02-27 20:11:33.444 1000 FEE 441040 4819 6089725 2024-02-27 20:11:52.551 2024-02-27 20:11:52.551 1000 FEE 441041 21194 6089731 2024-02-27 20:12:34.706 2024-02-27 20:12:34.706 7700 FEE 441038 19332 6089732 2024-02-27 20:12:34.706 2024-02-27 20:12:34.706 69300 TIP 441038 19005 6089738 2024-02-27 20:12:52.977 2024-02-27 20:12:52.977 100000 FEE 441043 15213 6089739 2024-02-27 20:12:55.109 2024-02-27 20:12:55.109 7700 FEE 427528 4776 6089740 2024-02-27 20:12:55.109 2024-02-27 20:12:55.109 69300 TIP 427528 15213 6089742 2024-02-27 20:13:11.32 2024-02-27 20:13:11.32 7700 FEE 441038 21393 6089743 2024-02-27 20:13:11.32 2024-02-27 20:13:11.32 69300 TIP 441038 18311 6089744 2024-02-27 20:13:11.616 2024-02-27 20:13:11.616 15400 FEE 441038 2537 6089745 2024-02-27 20:13:11.616 2024-02-27 20:13:11.616 138600 TIP 441038 20179 6089748 2024-02-27 20:13:11.825 2024-02-27 20:13:11.825 7700 FEE 441038 15273 6089749 2024-02-27 20:13:11.825 2024-02-27 20:13:11.825 69300 TIP 441038 12976 6089750 2024-02-27 20:13:11.955 2024-02-27 20:13:11.955 7700 FEE 441038 1000 6089751 2024-02-27 20:13:11.955 2024-02-27 20:13:11.955 69300 TIP 441038 12976 6089754 2024-02-27 20:13:46.409 2024-02-27 20:13:46.409 7700 FEE 441041 17710 6089755 2024-02-27 20:13:46.409 2024-02-27 20:13:46.409 69300 TIP 441041 19910 6089769 2024-02-27 20:16:13.859 2024-02-27 20:16:13.859 27900 FEE 440985 13599 6089770 2024-02-27 20:16:13.859 2024-02-27 20:16:13.859 251100 TIP 440985 9355 6089789 2024-02-27 20:20:35.214 2024-02-27 20:20:35.214 2100 FEE 441019 18601 6089790 2024-02-27 20:20:35.214 2024-02-27 20:20:35.214 18900 TIP 441019 6653 6089795 2024-02-27 20:20:58.565 2024-02-27 20:20:58.565 100 FEE 441029 19857 6089796 2024-02-27 20:20:58.565 2024-02-27 20:20:58.565 900 TIP 441029 14731 6089841 2024-02-27 20:26:54.496 2024-02-27 20:26:54.496 2100 FEE 441054 1723 6089842 2024-02-27 20:26:54.496 2024-02-27 20:26:54.496 18900 TIP 441054 20551 6089874 2024-02-27 20:32:16.912 2024-02-27 20:32:16.912 1000 FEE 440692 12516 6089875 2024-02-27 20:32:16.912 2024-02-27 20:32:16.912 9000 TIP 440692 20220 6089895 2024-02-27 20:34:12.875 2024-02-27 20:34:12.875 1000 FEE 440863 10280 6089896 2024-02-27 20:34:12.875 2024-02-27 20:34:12.875 9000 TIP 440863 15147 6089901 2024-02-27 20:34:41.777 2024-02-27 20:34:41.777 1000 POLL 440725 20276 6089904 2024-02-27 20:34:58.353 2024-02-27 20:34:58.353 1000 POLL 440725 17227 6089912 2024-02-27 20:35:15.245 2024-02-27 20:35:15.245 7700 FEE 440907 5828 6089913 2024-02-27 20:35:15.245 2024-02-27 20:35:15.245 69300 TIP 440907 20881 6089929 2024-02-27 20:36:51.164 2024-02-27 20:36:51.164 0 FEE 441065 2674 6089993 2024-02-27 20:44:12.975 2024-02-27 20:44:12.975 1000 FEE 440863 18717 6089994 2024-02-27 20:44:12.975 2024-02-27 20:44:12.975 9000 TIP 440863 7654 6090001 2024-02-27 20:44:17.3 2024-02-27 20:44:17.3 1000 FEE 440863 10536 6090002 2024-02-27 20:44:17.3 2024-02-27 20:44:17.3 9000 TIP 440863 20599 6090018 2024-02-27 20:46:58.193 2024-02-27 20:46:58.193 1000 FEE 440857 7418 6090019 2024-02-27 20:46:58.193 2024-02-27 20:46:58.193 9000 TIP 440857 17183 6090027 2024-02-27 20:48:45.542 2024-02-27 20:48:45.542 10000 FEE 436579 4378 6090028 2024-02-27 20:48:45.542 2024-02-27 20:48:45.542 90000 TIP 436579 20168 6089271 2024-02-27 19:52:04.265 2024-02-27 19:52:04.265 7700 FEE 440870 12721 6089272 2024-02-27 19:52:04.265 2024-02-27 19:52:04.265 69300 TIP 440870 15367 6089277 2024-02-27 19:52:04.663 2024-02-27 19:52:04.663 7700 FEE 440870 1474 6089278 2024-02-27 19:52:04.663 2024-02-27 19:52:04.663 69300 TIP 440870 9150 6089285 2024-02-27 19:52:05.461 2024-02-27 19:52:05.461 7700 FEE 440870 7818 6089286 2024-02-27 19:52:05.461 2024-02-27 19:52:05.461 69300 TIP 440870 20412 6089309 2024-02-27 19:52:11.21 2024-02-27 19:52:11.21 7700 FEE 440868 18170 6089310 2024-02-27 19:52:11.21 2024-02-27 19:52:11.21 69300 TIP 440868 8037 6089327 2024-02-27 19:52:19.869 2024-02-27 19:52:19.869 7700 FEE 440863 9078 6089328 2024-02-27 19:52:19.869 2024-02-27 19:52:19.869 69300 TIP 440863 9342 6089329 2024-02-27 19:52:21.887 2024-02-27 19:52:21.887 7700 FEE 440703 5444 6089330 2024-02-27 19:52:21.887 2024-02-27 19:52:21.887 69300 TIP 440703 19156 6089341 2024-02-27 19:54:59.508 2024-02-27 19:54:59.508 2100 FEE 440961 1692 6089342 2024-02-27 19:54:59.508 2024-02-27 19:54:59.508 18900 TIP 440961 6382 6089347 2024-02-27 19:55:37.653 2024-02-27 19:55:37.653 1000 FEE 441000 16447 6089371 2024-02-27 19:56:18.416 2024-02-27 19:56:18.416 500 FEE 440615 19309 6089372 2024-02-27 19:56:18.416 2024-02-27 19:56:18.416 4500 TIP 440615 9099 6089404 2024-02-27 19:57:10.284 2024-02-27 19:57:10.284 300 FEE 440780 19018 6089405 2024-02-27 19:57:10.284 2024-02-27 19:57:10.284 2700 TIP 440780 20509 6089408 2024-02-27 19:57:10.608 2024-02-27 19:57:10.608 300 FEE 440780 16176 6089409 2024-02-27 19:57:10.608 2024-02-27 19:57:10.608 2700 TIP 440780 21463 6089414 2024-02-27 19:57:15.387 2024-02-27 19:57:15.387 300 FEE 440780 985 6089415 2024-02-27 19:57:15.387 2024-02-27 19:57:15.387 2700 TIP 440780 2437 6089428 2024-02-27 19:57:17.889 2024-02-27 19:57:17.889 300 FEE 440780 19494 6089429 2024-02-27 19:57:17.889 2024-02-27 19:57:17.889 2700 TIP 440780 7583 6089430 2024-02-27 19:57:17.924 2024-02-27 19:57:17.924 300 FEE 440780 1472 6089431 2024-02-27 19:57:17.924 2024-02-27 19:57:17.924 2700 TIP 440780 18231 6089456 2024-02-27 19:58:01.531 2024-02-27 19:58:01.531 7700 FEE 441006 11498 6089457 2024-02-27 19:58:01.531 2024-02-27 19:58:01.531 69300 TIP 441006 686 6089502 2024-02-27 20:00:16.495 2024-02-27 20:00:16.495 7700 FEE 440911 10493 6089503 2024-02-27 20:00:16.495 2024-02-27 20:00:16.495 69300 TIP 440911 8289 6089531 2024-02-27 20:02:22.415 2024-02-27 20:02:22.415 4000 FEE 441001 9816 6089532 2024-02-27 20:02:22.415 2024-02-27 20:02:22.415 36000 TIP 441001 20969 6089537 2024-02-27 20:03:09.391 2024-02-27 20:03:09.391 600 FEE 437904 21083 6089538 2024-02-27 20:03:09.391 2024-02-27 20:03:09.391 5400 TIP 437904 20337 6089544 2024-02-27 20:03:37.87 2024-02-27 20:03:37.87 7700 FEE 441011 4459 6089545 2024-02-27 20:03:37.87 2024-02-27 20:03:37.87 69300 TIP 441011 14080 6089570 2024-02-27 20:03:39.831 2024-02-27 20:03:39.831 7700 FEE 441011 20117 6089571 2024-02-27 20:03:39.831 2024-02-27 20:03:39.831 69300 TIP 441011 20036 6089576 2024-02-27 20:03:40.553 2024-02-27 20:03:40.553 7700 FEE 441011 21521 6089577 2024-02-27 20:03:40.553 2024-02-27 20:03:40.553 69300 TIP 441011 2213 6089594 2024-02-27 20:03:55.532 2024-02-27 20:03:55.532 7700 FEE 441011 8385 6089595 2024-02-27 20:03:55.532 2024-02-27 20:03:55.532 69300 TIP 441011 9166 6089619 2024-02-27 20:04:12.117 2024-02-27 20:04:12.117 7700 FEE 441017 20744 6089620 2024-02-27 20:04:12.117 2024-02-27 20:04:12.117 69300 TIP 441017 5449 6089621 2024-02-27 20:04:12.224 2024-02-27 20:04:12.224 7700 FEE 441017 18017 6089622 2024-02-27 20:04:12.224 2024-02-27 20:04:12.224 69300 TIP 441017 19435 6089637 2024-02-27 20:04:46.198 2024-02-27 20:04:46.198 7700 FEE 441015 17166 6089638 2024-02-27 20:04:46.198 2024-02-27 20:04:46.198 69300 TIP 441015 4322 6089639 2024-02-27 20:04:50.911 2024-02-27 20:04:50.911 21000 FEE 441022 2046 6089643 2024-02-27 20:05:12.871 2024-02-27 20:05:12.871 0 FEE 441024 12277 6089646 2024-02-27 20:05:37.16 2024-02-27 20:05:37.16 1000 FEE 440991 18351 6089647 2024-02-27 20:05:37.16 2024-02-27 20:05:37.16 9000 TIP 440991 21051 6089648 2024-02-27 20:05:38.583 2024-02-27 20:05:38.583 1000 FEE 441027 963 6089657 2024-02-27 20:06:06.935 2024-02-27 20:06:06.935 7700 FEE 441027 20904 6089658 2024-02-27 20:06:06.935 2024-02-27 20:06:06.935 69300 TIP 441027 776 6089665 2024-02-27 20:06:20.98 2024-02-27 20:06:20.98 1000 FEE 440870 6616 6089666 2024-02-27 20:06:20.98 2024-02-27 20:06:20.98 9000 TIP 440870 21588 6089675 2024-02-27 20:06:23.413 2024-02-27 20:06:23.413 10000 FEE 441030 21131 6089698 2024-02-27 20:08:37.579 2024-02-27 20:08:37.579 0 FEE 441028 7418 6089700 2024-02-27 20:09:15.645 2024-02-27 20:09:15.645 0 FEE 441024 717 6089704 2024-02-27 20:10:37.824 2024-02-27 20:10:37.824 100000 FEE 441036 18774 6089746 2024-02-27 20:13:11.704 2024-02-27 20:13:11.704 7700 FEE 441038 12561 6089747 2024-02-27 20:13:11.704 2024-02-27 20:13:11.704 69300 TIP 441038 15049 6089758 2024-02-27 20:14:54.63 2024-02-27 20:14:54.63 1000 FEE 441045 1620 6089793 2024-02-27 20:20:47.203 2024-02-27 20:20:47.203 100 FEE 440998 19126 6089794 2024-02-27 20:20:47.203 2024-02-27 20:20:47.203 900 TIP 440998 9551 6089802 2024-02-27 20:22:44.549 2024-02-27 20:22:44.549 100 FEE 441012 17415 6089803 2024-02-27 20:22:44.549 2024-02-27 20:22:44.549 900 TIP 441012 4958 6089326 2024-02-27 19:52:19.322 2024-02-27 19:52:19.322 18900 TIP 440798 848 6089402 2024-02-27 19:57:09.88 2024-02-27 19:57:09.88 300 FEE 440780 20706 6089403 2024-02-27 19:57:09.88 2024-02-27 19:57:09.88 2700 TIP 440780 11561 6089406 2024-02-27 19:57:10.377 2024-02-27 19:57:10.377 300 FEE 440780 21599 6089407 2024-02-27 19:57:10.377 2024-02-27 19:57:10.377 2700 TIP 440780 10398 6089410 2024-02-27 19:57:10.891 2024-02-27 19:57:10.891 300 FEE 440780 848 6089411 2024-02-27 19:57:10.891 2024-02-27 19:57:10.891 2700 TIP 440780 19154 6089418 2024-02-27 19:57:15.843 2024-02-27 19:57:15.843 300 FEE 440780 5942 6089419 2024-02-27 19:57:15.843 2024-02-27 19:57:15.843 2700 TIP 440780 5306 6089424 2024-02-27 19:57:16.861 2024-02-27 19:57:16.861 300 FEE 440780 18659 6089425 2024-02-27 19:57:16.861 2024-02-27 19:57:16.861 2700 TIP 440780 21323 6089440 2024-02-27 19:57:18.874 2024-02-27 19:57:18.874 300 FEE 440780 16660 6089441 2024-02-27 19:57:18.874 2024-02-27 19:57:18.874 2700 TIP 440780 18310 6089463 2024-02-27 19:58:04.648 2024-02-27 19:58:04.648 1000 FEE 441007 4487 6089465 2024-02-27 19:58:09.483 2024-02-27 19:58:09.483 7700 FEE 440703 19462 6089466 2024-02-27 19:58:09.483 2024-02-27 19:58:09.483 69300 TIP 440703 9796 6089481 2024-02-27 19:59:14.231 2024-02-27 19:59:14.231 1000 POLL 440725 18114 6089482 2024-02-27 19:59:25.69 2024-02-27 19:59:25.69 100 FEE 440692 1286 6089483 2024-02-27 19:59:25.69 2024-02-27 19:59:25.69 900 TIP 440692 13046 6089493 2024-02-27 20:00:11.243 2024-02-27 20:00:11.243 100 FEE 440898 13763 6089494 2024-02-27 20:00:11.243 2024-02-27 20:00:11.243 900 TIP 440898 717 6089500 2024-02-27 20:00:16.454 2024-02-27 20:00:16.454 7700 FEE 440911 21338 6089501 2024-02-27 20:00:16.454 2024-02-27 20:00:16.454 69300 TIP 440911 16706 6089510 2024-02-27 20:00:17.053 2024-02-27 20:00:17.053 7700 FEE 440911 866 6089511 2024-02-27 20:00:17.053 2024-02-27 20:00:17.053 69300 TIP 440911 15161 6089520 2024-02-27 20:00:38.42 2024-02-27 20:00:38.42 1000 FEE 441012 14857 6089521 2024-02-27 20:00:50.029 2024-02-27 20:00:50.029 1000 FEE 441013 11145 6089523 2024-02-27 20:00:59.79 2024-02-27 20:00:59.79 0 FEE 441011 11821 6089535 2024-02-27 20:03:08.015 2024-02-27 20:03:08.015 500 FEE 440764 17221 6089536 2024-02-27 20:03:08.015 2024-02-27 20:03:08.015 4500 TIP 440764 13246 6089539 2024-02-27 20:03:27.181 2024-02-27 20:03:27.181 1000 FEE 441019 9342 6089558 2024-02-27 20:03:39.078 2024-02-27 20:03:39.078 7700 FEE 441011 21026 6089559 2024-02-27 20:03:39.078 2024-02-27 20:03:39.078 69300 TIP 441011 8926 6089582 2024-02-27 20:03:45.868 2024-02-27 20:03:45.868 2100 FEE 441001 19148 6089583 2024-02-27 20:03:45.868 2024-02-27 20:03:45.868 18900 TIP 441001 19826 6089598 2024-02-27 20:03:55.998 2024-02-27 20:03:55.998 1000 FEE 441020 4083 6089615 2024-02-27 20:04:10.548 2024-02-27 20:04:10.548 7700 FEE 441019 5752 6089616 2024-02-27 20:04:10.548 2024-02-27 20:04:10.548 69300 TIP 441019 10484 6089649 2024-02-27 20:05:43.15 2024-02-27 20:05:43.15 1000 FEE 441028 19142 6089703 2024-02-27 20:10:15.621 2024-02-27 20:10:15.621 1000 FEE 441035 1142 6089708 2024-02-27 20:10:48.836 2024-02-27 20:10:48.836 2100 FEE 440911 1272 6089709 2024-02-27 20:10:48.836 2024-02-27 20:10:48.836 18900 TIP 440911 18262 6089714 2024-02-27 20:11:18.564 2024-02-27 20:11:18.564 2100 FEE 440722 18660 6089715 2024-02-27 20:11:18.564 2024-02-27 20:11:18.564 18900 TIP 440722 698 6089721 2024-02-27 20:11:48.576 2024-02-27 20:11:48.576 3100 FEE 440551 21214 6089722 2024-02-27 20:11:48.576 2024-02-27 20:11:48.576 27900 TIP 440551 13781 6089728 2024-02-27 20:12:03.448 2024-02-27 20:12:03.448 1000 FEE 441001 2620 6089729 2024-02-27 20:12:03.448 2024-02-27 20:12:03.448 9000 TIP 441001 797 6089735 2024-02-27 20:12:37.537 2024-02-27 20:12:37.537 7700 FEE 441038 7376 6089736 2024-02-27 20:12:37.537 2024-02-27 20:12:37.537 69300 TIP 441038 17106 6089765 2024-02-27 20:15:08.874 2024-02-27 20:15:08.874 0 FEE 441046 1603 6089786 2024-02-27 20:20:15.481 2024-02-27 20:20:15.481 0 FEE 441051 18680 6089811 2024-02-27 20:24:52.811 2024-02-27 20:24:52.811 0 FEE 441056 20102 6089826 2024-02-27 20:25:44.651 2024-02-27 20:25:44.651 1000 FEE 441019 21612 6089827 2024-02-27 20:25:44.651 2024-02-27 20:25:44.651 9000 TIP 441019 10611 6089832 2024-02-27 20:25:45.607 2024-02-27 20:25:45.607 1000 FEE 441019 5171 6089833 2024-02-27 20:25:45.607 2024-02-27 20:25:45.607 9000 TIP 441019 5175 6089860 2024-02-27 20:30:03.369 2024-02-27 20:30:03.369 2100 FEE 440863 19639 6089861 2024-02-27 20:30:03.369 2024-02-27 20:30:03.369 18900 TIP 440863 16753 6089950 2024-02-27 20:42:26.762 2024-02-27 20:42:26.762 17000 FEE 441070 899 6089973 2024-02-27 20:43:15.686 2024-02-27 20:43:15.686 2500 FEE 440898 10280 6089974 2024-02-27 20:43:15.686 2024-02-27 20:43:15.686 22500 TIP 440898 896 6089987 2024-02-27 20:44:11.35 2024-02-27 20:44:11.35 1000 FEE 440909 17001 6089988 2024-02-27 20:44:11.35 2024-02-27 20:44:11.35 9000 TIP 440909 2609 6089989 2024-02-27 20:44:11.543 2024-02-27 20:44:11.543 1000 FEE 440909 11820 6089990 2024-02-27 20:44:11.543 2024-02-27 20:44:11.543 9000 TIP 440909 20495 6090016 2024-02-27 20:46:42.23 2024-02-27 20:46:42.23 1000 FEE 440991 6202 6090017 2024-02-27 20:46:42.23 2024-02-27 20:46:42.23 9000 TIP 440991 21342 6090025 2024-02-27 20:48:08.42 2024-02-27 20:48:08.42 1000 FEE 441061 17526 6090026 2024-02-27 20:48:08.42 2024-02-27 20:48:08.42 9000 TIP 441061 3409 6090034 2024-02-27 20:49:17.217 2024-02-27 20:49:17.217 3000 FEE 441060 21344 6090035 2024-02-27 20:49:17.217 2024-02-27 20:49:17.217 27000 TIP 441060 976 6090040 2024-02-27 20:49:50.069 2024-02-27 20:49:50.069 1000 FEE 440863 2098 6090041 2024-02-27 20:49:50.069 2024-02-27 20:49:50.069 9000 TIP 440863 9916 6090059 2024-02-27 20:51:45.184 2024-02-27 20:51:45.184 100 FEE 440984 19615 6090060 2024-02-27 20:51:45.184 2024-02-27 20:51:45.184 900 TIP 440984 919 6090072 2024-02-27 20:52:26.94 2024-02-27 20:52:26.94 1000 FEE 440898 20120 6090073 2024-02-27 20:52:26.94 2024-02-27 20:52:26.94 9000 TIP 440898 18380 6090088 2024-02-27 20:53:05.181 2024-02-27 20:53:05.181 1000 FEE 440953 13378 6090089 2024-02-27 20:53:05.181 2024-02-27 20:53:05.181 9000 TIP 440953 19303 6090104 2024-02-27 20:53:39.982 2024-02-27 20:53:39.982 900 FEE 441020 12175 6090105 2024-02-27 20:53:39.982 2024-02-27 20:53:39.982 8100 TIP 441020 18704 6090110 2024-02-27 20:53:41.753 2024-02-27 20:53:41.753 100 FEE 440956 3990 6090111 2024-02-27 20:53:41.753 2024-02-27 20:53:41.753 900 TIP 440956 8168 6090139 2024-02-27 20:54:30.402 2024-02-27 20:54:30.402 1000 FEE 440692 11897 6090140 2024-02-27 20:54:30.402 2024-02-27 20:54:30.402 9000 TIP 440692 15858 6090167 2024-02-27 20:55:17.307 2024-02-27 20:55:17.307 1000 FEE 441036 3396 6090168 2024-02-27 20:55:17.307 2024-02-27 20:55:17.307 9000 TIP 441036 18529 6090177 2024-02-27 20:55:49.427 2024-02-27 20:55:49.427 1000 FEE 440931 21238 6090178 2024-02-27 20:55:49.427 2024-02-27 20:55:49.427 9000 TIP 440931 16665 6090183 2024-02-27 20:55:50.234 2024-02-27 20:55:50.234 1000 FEE 440931 20904 6090184 2024-02-27 20:55:50.234 2024-02-27 20:55:50.234 9000 TIP 440931 634 6090194 2024-02-27 20:56:08.055 2024-02-27 20:56:08.055 9000 FEE 440989 18291 6090195 2024-02-27 20:56:08.055 2024-02-27 20:56:08.055 81000 TIP 440989 6360 6090237 2024-02-27 21:02:04.445 2024-02-27 21:02:04.445 2100 FEE 440926 9845 6090238 2024-02-27 21:02:04.445 2024-02-27 21:02:04.445 18900 TIP 440926 7978 6090255 2024-02-27 21:04:12.156 2024-02-27 21:04:12.156 7100 FEE 441011 4126 6090256 2024-02-27 21:04:12.156 2024-02-27 21:04:12.156 63900 TIP 441011 20817 6090259 2024-02-27 21:04:29.384 2024-02-27 21:04:29.384 1000 FEE 440692 10536 6090260 2024-02-27 21:04:29.384 2024-02-27 21:04:29.384 9000 TIP 440692 4166 6090261 2024-02-27 21:04:35.937 2024-02-27 21:04:35.937 1000 FEE 440898 8074 6090262 2024-02-27 21:04:35.937 2024-02-27 21:04:35.937 9000 TIP 440898 21422 6090300 2024-02-27 21:08:04.374 2024-02-27 21:08:04.374 7100 FEE 440692 1245 6090301 2024-02-27 21:08:04.374 2024-02-27 21:08:04.374 63900 TIP 440692 18641 6090314 2024-02-27 21:08:28.757 2024-02-27 21:08:28.757 1000 FEE 441095 634 6089365 2024-02-27 19:56:12.004 2024-02-27 19:56:12.004 9000 TIP 440785 16250 6089373 2024-02-27 19:56:25.462 2024-02-27 19:56:25.462 500 FEE 440629 2039 6089374 2024-02-27 19:56:25.462 2024-02-27 19:56:25.462 4500 TIP 440629 811 6089384 2024-02-27 19:56:39.336 2024-02-27 19:56:39.336 1000 FEE 441001 2710 6089385 2024-02-27 19:56:39.336 2024-02-27 19:56:39.336 9000 TIP 441001 13046 6089420 2024-02-27 19:57:16.149 2024-02-27 19:57:16.149 300 FEE 440780 1609 6089421 2024-02-27 19:57:16.149 2024-02-27 19:57:16.149 2700 TIP 440780 2749 6089458 2024-02-27 19:58:02.255 2024-02-27 19:58:02.255 7700 FEE 441002 1474 6089459 2024-02-27 19:58:02.255 2024-02-27 19:58:02.255 69300 TIP 441002 8380 6089485 2024-02-27 20:00:01.545 2024-02-27 20:00:01.545 1000 FEE 441010 780 6089489 2024-02-27 20:00:05.678 2024-02-27 20:00:05.678 7700 FEE 440729 21401 6089490 2024-02-27 20:00:05.678 2024-02-27 20:00:05.678 69300 TIP 440729 20993 6089491 2024-02-27 20:00:05.81 2024-02-27 20:00:05.81 7700 FEE 440729 694 6089492 2024-02-27 20:00:05.81 2024-02-27 20:00:05.81 69300 TIP 440729 17091 6089504 2024-02-27 20:00:16.711 2024-02-27 20:00:16.711 15400 FEE 440911 20022 6089505 2024-02-27 20:00:16.711 2024-02-27 20:00:16.711 138600 TIP 440911 13763 6089508 2024-02-27 20:00:16.958 2024-02-27 20:00:16.958 7700 FEE 440911 5377 6089509 2024-02-27 20:00:16.958 2024-02-27 20:00:16.958 69300 TIP 440911 659 6089529 2024-02-27 20:02:10.916 2024-02-27 20:02:10.916 2100 FEE 440692 17218 6089530 2024-02-27 20:02:10.916 2024-02-27 20:02:10.916 18900 TIP 440692 20970 6089554 2024-02-27 20:03:38.601 2024-02-27 20:03:38.601 7700 FEE 441011 3371 6089555 2024-02-27 20:03:38.601 2024-02-27 20:03:38.601 69300 TIP 441011 18877 6089578 2024-02-27 20:03:43.645 2024-02-27 20:03:43.645 2100 FEE 440998 21119 6089579 2024-02-27 20:03:43.645 2024-02-27 20:03:43.645 18900 TIP 440998 21356 6089588 2024-02-27 20:03:55.034 2024-02-27 20:03:55.034 7700 FEE 441011 2620 6089589 2024-02-27 20:03:55.034 2024-02-27 20:03:55.034 69300 TIP 441011 19652 6089592 2024-02-27 20:03:55.355 2024-02-27 20:03:55.355 7700 FEE 441011 19151 6089593 2024-02-27 20:03:55.355 2024-02-27 20:03:55.355 69300 TIP 441011 1046 6089602 2024-02-27 20:04:06.122 2024-02-27 20:04:06.122 1000 FEE 441021 20523 6089603 2024-02-27 20:04:07.618 2024-02-27 20:04:07.618 7700 FEE 441019 8648 6089604 2024-02-27 20:04:07.618 2024-02-27 20:04:07.618 69300 TIP 441019 10359 6089613 2024-02-27 20:04:10.402 2024-02-27 20:04:10.402 7700 FEE 441019 17183 6089614 2024-02-27 20:04:10.402 2024-02-27 20:04:10.402 69300 TIP 441019 19863 6089617 2024-02-27 20:04:10.639 2024-02-27 20:04:10.639 7700 FEE 441019 20901 6089618 2024-02-27 20:04:10.639 2024-02-27 20:04:10.639 69300 TIP 441019 718 6089677 2024-02-27 20:06:42.43 2024-02-27 20:06:42.43 15400 FEE 441028 9329 6089678 2024-02-27 20:06:42.43 2024-02-27 20:06:42.43 138600 TIP 441028 16939 6089679 2024-02-27 20:06:42.597 2024-02-27 20:06:42.597 7700 FEE 441028 2774 6089680 2024-02-27 20:06:42.597 2024-02-27 20:06:42.597 69300 TIP 441028 11967 6089690 2024-02-27 20:08:09.705 2024-02-27 20:08:09.705 7700 FEE 440988 20180 6089691 2024-02-27 20:08:09.705 2024-02-27 20:08:09.705 69300 TIP 440988 11819 6089723 2024-02-27 20:11:49.96 2024-02-27 20:11:49.96 27900 FEE 440551 20817 6089724 2024-02-27 20:11:49.96 2024-02-27 20:11:49.96 251100 TIP 440551 18837 6089767 2024-02-27 20:16:13.06 2024-02-27 20:16:13.06 3100 FEE 440985 10283 6089768 2024-02-27 20:16:13.06 2024-02-27 20:16:13.06 27900 TIP 440985 18637 6089772 2024-02-27 20:16:29.164 2024-02-27 20:16:29.164 100 FEE 440692 4388 6089773 2024-02-27 20:16:29.164 2024-02-27 20:16:29.164 900 TIP 440692 4314 6089777 2024-02-27 20:18:14.291 2024-02-27 20:18:14.291 1000 FEE 441050 4167 6089778 2024-02-27 20:19:01.439 2024-02-27 20:19:01.439 100 FEE 441050 18124 6089779 2024-02-27 20:19:01.439 2024-02-27 20:19:01.439 900 TIP 441050 640 6089781 2024-02-27 20:19:29.43 2024-02-27 20:19:29.43 1100 FEE 440985 12946 6089782 2024-02-27 20:19:29.43 2024-02-27 20:19:29.43 9900 TIP 440985 12218 6089798 2024-02-27 20:21:35.658 2024-02-27 20:21:35.658 2100 FEE 441027 9982 6089799 2024-02-27 20:21:35.658 2024-02-27 20:21:35.658 18900 TIP 441027 21145 6089801 2024-02-27 20:22:33.612 2024-02-27 20:22:33.612 1000 FEE 441055 20015 6089822 2024-02-27 20:25:44.31 2024-02-27 20:25:44.31 1000 FEE 441019 21575 6089823 2024-02-27 20:25:44.31 2024-02-27 20:25:44.31 9000 TIP 441019 15526 6089845 2024-02-27 20:28:06.272 2024-02-27 20:28:06.272 2100 FEE 441011 4322 6089846 2024-02-27 20:28:06.272 2024-02-27 20:28:06.272 18900 TIP 441011 8998 6089847 2024-02-27 20:28:11.445 2024-02-27 20:28:11.445 100 FEE 441054 11275 6089848 2024-02-27 20:28:11.445 2024-02-27 20:28:11.445 900 TIP 441054 11873 6089850 2024-02-27 20:28:25.438 2024-02-27 20:28:25.438 125000 FEE 441058 5112 6089853 2024-02-27 20:28:51.827 2024-02-27 20:28:51.827 2100 FEE 441011 670 6089854 2024-02-27 20:28:51.827 2024-02-27 20:28:51.827 18900 TIP 441011 20811 6089884 2024-02-27 20:32:19.726 2024-02-27 20:32:19.726 1000 FEE 440692 12779 6089885 2024-02-27 20:32:19.726 2024-02-27 20:32:19.726 9000 TIP 440692 12097 6089918 2024-02-27 20:35:16.227 2024-02-27 20:35:16.227 7700 FEE 440907 2046 6089919 2024-02-27 20:35:16.227 2024-02-27 20:35:16.227 69300 TIP 440907 20153 6089923 2024-02-27 20:36:06.355 2024-02-27 20:36:06.355 1000 POLL 441054 21228 6089952 2024-02-27 20:42:33.552 2024-02-27 20:42:33.552 1000 FEE 441072 10060 6089985 2024-02-27 20:44:11.148 2024-02-27 20:44:11.148 2000 FEE 440909 19138 6089986 2024-02-27 20:44:11.148 2024-02-27 20:44:11.148 18000 TIP 440909 9290 6089995 2024-02-27 20:44:16.481 2024-02-27 20:44:16.481 1000 FEE 440863 20573 6089996 2024-02-27 20:44:16.481 2024-02-27 20:44:16.481 9000 TIP 440863 8870 6089997 2024-02-27 20:44:16.964 2024-02-27 20:44:16.964 1000 FEE 440863 17201 6089998 2024-02-27 20:44:16.964 2024-02-27 20:44:16.964 9000 TIP 440863 20370 6090031 2024-02-27 20:49:09.099 2024-02-27 20:49:09.099 0 FEE 441076 19037 6090054 2024-02-27 20:51:12.013 2024-02-27 20:51:12.013 1000 FEE 441079 21620 6090057 2024-02-27 20:51:41.285 2024-02-27 20:51:41.285 3300 FEE 440692 15161 6090058 2024-02-27 20:51:41.285 2024-02-27 20:51:41.285 29700 TIP 440692 9335 6090063 2024-02-27 20:51:54.431 2024-02-27 20:51:54.431 100 FEE 440959 782 6090064 2024-02-27 20:51:54.431 2024-02-27 20:51:54.431 900 TIP 440959 14663 6090098 2024-02-27 20:53:38.745 2024-02-27 20:53:38.745 100 FEE 440933 20299 6090099 2024-02-27 20:53:38.745 2024-02-27 20:53:38.745 900 TIP 440933 895 6090145 2024-02-27 20:54:30.907 2024-02-27 20:54:30.907 1000 FEE 440692 1488 6090146 2024-02-27 20:54:30.907 2024-02-27 20:54:30.907 9000 TIP 440692 14308 6090156 2024-02-27 20:54:54.495 2024-02-27 20:54:54.495 100 FEE 440949 9863 6090157 2024-02-27 20:54:54.495 2024-02-27 20:54:54.495 900 TIP 440949 16942 6090179 2024-02-27 20:55:49.752 2024-02-27 20:55:49.752 1000 FEE 440931 20560 6090180 2024-02-27 20:55:49.752 2024-02-27 20:55:49.752 9000 TIP 440931 13798 6090187 2024-02-27 20:56:01.923 2024-02-27 20:56:01.923 900 FEE 440989 21214 6090188 2024-02-27 20:56:01.923 2024-02-27 20:56:01.923 8100 TIP 440989 882 6090199 2024-02-27 20:57:10.343 2024-02-27 20:57:10.343 5000 FEE 440692 11716 6090200 2024-02-27 20:57:10.343 2024-02-27 20:57:10.343 45000 TIP 440692 16998 6090221 2024-02-27 20:58:44.794 2024-02-27 20:58:44.794 1700 FEE 439844 14225 6090222 2024-02-27 20:58:44.794 2024-02-27 20:58:44.794 15300 TIP 439844 3440 6090223 2024-02-27 20:58:59.023 2024-02-27 20:58:59.023 1000 FEE 440954 1291 6090224 2024-02-27 20:58:59.023 2024-02-27 20:58:59.023 9000 TIP 440954 19038 6090233 2024-02-27 21:00:21.293 2024-02-27 21:00:21.293 1000 POLL 440725 713 6090235 2024-02-27 21:01:57.267 2024-02-27 21:01:57.267 1000 FEE 441089 18675 6090245 2024-02-27 21:02:09.12 2024-02-27 21:02:09.12 2000 FEE 441087 9150 6090246 2024-02-27 21:02:09.12 2024-02-27 21:02:09.12 18000 TIP 441087 21391 6090247 2024-02-27 21:02:09.508 2024-02-27 21:02:09.508 1000 FEE 441090 1221 6090268 2024-02-27 21:05:23.374 2024-02-27 21:05:23.374 1000 FEE 440692 18476 6090269 2024-02-27 21:05:23.374 2024-02-27 21:05:23.374 9000 TIP 440692 8168 6090271 2024-02-27 21:06:10.056 2024-02-27 21:06:10.056 1000 FEE 441092 16355 6089386 2024-02-27 19:56:39.471 2024-02-27 19:56:39.471 1000 FEE 441001 16594 6089387 2024-02-27 19:56:39.471 2024-02-27 19:56:39.471 9000 TIP 441001 10591 6089394 2024-02-27 19:56:40.465 2024-02-27 19:56:40.465 1000 FEE 441001 11862 6089395 2024-02-27 19:56:40.465 2024-02-27 19:56:40.465 9000 TIP 441001 12609 6089400 2024-02-27 19:57:09.184 2024-02-27 19:57:09.184 300 FEE 440780 12368 6089401 2024-02-27 19:57:09.184 2024-02-27 19:57:09.184 2700 TIP 440780 20980 6089412 2024-02-27 19:57:11.125 2024-02-27 19:57:11.125 300 FEE 440780 16424 6089413 2024-02-27 19:57:11.125 2024-02-27 19:57:11.125 2700 TIP 440780 21239 6089432 2024-02-27 19:57:17.947 2024-02-27 19:57:17.947 300 FEE 440780 16456 6089433 2024-02-27 19:57:17.947 2024-02-27 19:57:17.947 2700 TIP 440780 9346 6089436 2024-02-27 19:57:18.406 2024-02-27 19:57:18.406 300 FEE 440780 15594 6089437 2024-02-27 19:57:18.406 2024-02-27 19:57:18.406 2700 TIP 440780 2709 6089447 2024-02-27 19:57:32.021 2024-02-27 19:57:32.021 100000 FEE 441006 1092 6089452 2024-02-27 19:57:57.502 2024-02-27 19:57:57.502 100 FEE 440870 7899 6089453 2024-02-27 19:57:57.502 2024-02-27 19:57:57.502 900 TIP 440870 1120 6089464 2024-02-27 19:58:06.617 2024-02-27 19:58:06.617 1000 FEE 441008 2022 6089474 2024-02-27 19:59:02.557 2024-02-27 19:59:02.557 1000 FEE 440692 2757 6089475 2024-02-27 19:59:02.557 2024-02-27 19:59:02.557 9000 TIP 440692 14225 6089514 2024-02-27 20:00:17.252 2024-02-27 20:00:17.252 7700 FEE 440911 3371 6089515 2024-02-27 20:00:17.252 2024-02-27 20:00:17.252 69300 TIP 440911 11192 6089528 2024-02-27 20:02:06.316 2024-02-27 20:02:06.316 1000 FEE 441017 5520 6089560 2024-02-27 20:03:39.172 2024-02-27 20:03:39.172 7700 FEE 441011 19553 6089561 2024-02-27 20:03:39.172 2024-02-27 20:03:39.172 69300 TIP 441011 18446 6089562 2024-02-27 20:03:39.281 2024-02-27 20:03:39.281 7700 FEE 441011 17166 6089563 2024-02-27 20:03:39.281 2024-02-27 20:03:39.281 69300 TIP 441011 16387 6089599 2024-02-27 20:03:56.798 2024-02-27 20:03:56.798 7700 FEE 441011 9551 6089600 2024-02-27 20:03:56.798 2024-02-27 20:03:56.798 69300 TIP 441011 20577 6089605 2024-02-27 20:04:07.924 2024-02-27 20:04:07.924 7700 FEE 441019 21401 6089606 2024-02-27 20:04:07.924 2024-02-27 20:04:07.924 69300 TIP 441019 4064 6089625 2024-02-27 20:04:13.019 2024-02-27 20:04:13.019 4000 FEE 440985 20059 6089626 2024-02-27 20:04:13.019 2024-02-27 20:04:13.019 36000 TIP 440985 21541 6089650 2024-02-27 20:05:45.136 2024-02-27 20:05:45.136 2100 FEE 440725 880 6089651 2024-02-27 20:05:45.136 2024-02-27 20:05:45.136 18900 TIP 440725 16193 6089661 2024-02-27 20:06:10.684 2024-02-27 20:06:10.684 7700 FEE 441027 3642 6089662 2024-02-27 20:06:10.684 2024-02-27 20:06:10.684 69300 TIP 441027 14990 6089669 2024-02-27 20:06:21.923 2024-02-27 20:06:21.923 1000 FEE 440870 18664 6089670 2024-02-27 20:06:21.923 2024-02-27 20:06:21.923 9000 TIP 440870 726 6089683 2024-02-27 20:06:52.933 2024-02-27 20:06:52.933 1000 FEE 441032 13143 6089685 2024-02-27 20:07:56.071 2024-02-27 20:07:56.071 100 FEE 441008 685 6089686 2024-02-27 20:07:56.071 2024-02-27 20:07:56.071 900 TIP 441008 3683 6089697 2024-02-27 20:08:30.221 2024-02-27 20:08:30.221 0 FEE 441033 17094 6089702 2024-02-27 20:10:07.075 2024-02-27 20:10:07.075 1000 FEE 441034 20182 6089710 2024-02-27 20:10:54.274 2024-02-27 20:10:54.274 1000 FEE 441038 11819 6089737 2024-02-27 20:12:50.619 2024-02-27 20:12:50.619 1000 FEE 441042 16954 6089760 2024-02-27 20:14:58.763 2024-02-27 20:14:58.763 4000 FEE 441029 10016 6089761 2024-02-27 20:14:58.763 2024-02-27 20:14:58.763 36000 TIP 441029 4633 6089763 2024-02-27 20:15:03.549 2024-02-27 20:15:03.549 0 FEE 441045 688 6089771 2024-02-27 20:16:23.273 2024-02-27 20:16:23.273 100000 FEE 441048 6430 6089787 2024-02-27 20:20:17.174 2024-02-27 20:20:17.174 1000 FEE 441053 19018 6089788 2024-02-27 20:20:28.493 2024-02-27 20:20:28.493 100000 FEE 441054 2514 6089791 2024-02-27 20:20:43.055 2024-02-27 20:20:43.055 100 FEE 441018 8954 6089792 2024-02-27 20:20:43.055 2024-02-27 20:20:43.055 900 TIP 441018 18494 6089838 2024-02-27 20:25:49.34 2024-02-27 20:25:49.34 1000 POLL 441054 18220 6089840 2024-02-27 20:26:24.288 2024-02-27 20:26:24.288 1000 POLL 441054 725 6089880 2024-02-27 20:32:18.629 2024-02-27 20:32:18.629 1000 FEE 440692 10359 6089881 2024-02-27 20:32:18.629 2024-02-27 20:32:18.629 9000 TIP 440692 1717 6089898 2024-02-27 20:34:23.961 2024-02-27 20:34:23.961 1000 FEE 441064 20738 6089899 2024-02-27 20:34:39.237 2024-02-27 20:34:39.237 3000 FEE 441054 20674 6089900 2024-02-27 20:34:39.237 2024-02-27 20:34:39.237 27000 TIP 441054 15588 6089939 2024-02-27 20:40:56.449 2024-02-27 20:40:56.449 1000 FEE 441048 12562 6089940 2024-02-27 20:40:56.449 2024-02-27 20:40:56.449 9000 TIP 441048 2775 6090010 2024-02-27 20:45:29.24 2024-02-27 20:45:29.24 1000 FEE 441074 20006 6090015 2024-02-27 20:46:29.746 2024-02-27 20:46:29.746 0 FEE 441074 919 6090023 2024-02-27 20:48:06.73 2024-02-27 20:48:06.73 1000 FEE 441047 4079 6090024 2024-02-27 20:48:06.73 2024-02-27 20:48:06.73 9000 TIP 441047 5538 6090036 2024-02-27 20:49:49.268 2024-02-27 20:49:49.268 1000 FEE 440863 770 6090037 2024-02-27 20:49:49.268 2024-02-27 20:49:49.268 9000 TIP 440863 18473 6090042 2024-02-27 20:49:51.367 2024-02-27 20:49:51.367 2100 FEE 440692 1221 6090043 2024-02-27 20:49:51.367 2024-02-27 20:49:51.367 18900 TIP 440692 1478 6090055 2024-02-27 20:51:21.31 2024-02-27 20:51:21.31 12800 FEE 441069 14295 6090056 2024-02-27 20:51:21.31 2024-02-27 20:51:21.31 115200 TIP 441069 2734 6090071 2024-02-27 20:52:19.06 2024-02-27 20:52:19.06 1000 FEE 441081 18309 6090076 2024-02-27 20:52:39.386 2024-02-27 20:52:39.386 100 FEE 441077 19030 6090077 2024-02-27 20:52:39.386 2024-02-27 20:52:39.386 900 TIP 441077 18529 6090080 2024-02-27 20:52:40.063 2024-02-27 20:52:40.063 9000 FEE 441077 20523 6090081 2024-02-27 20:52:40.063 2024-02-27 20:52:40.063 81000 TIP 441077 919 6090084 2024-02-27 20:52:44.188 2024-02-27 20:52:44.188 1000 FEE 440875 20301 6090085 2024-02-27 20:52:44.188 2024-02-27 20:52:44.188 9000 TIP 440875 21522 6090124 2024-02-27 20:54:11.364 2024-02-27 20:54:11.364 100 FEE 440891 11158 6090125 2024-02-27 20:54:11.364 2024-02-27 20:54:11.364 900 TIP 440891 5701 6090126 2024-02-27 20:54:11.564 2024-02-27 20:54:11.564 900 FEE 440891 705 6090127 2024-02-27 20:54:11.564 2024-02-27 20:54:11.564 8100 TIP 440891 18673 6090158 2024-02-27 20:54:54.659 2024-02-27 20:54:54.659 900 FEE 440949 21274 6089546 2024-02-27 20:03:38.056 2024-02-27 20:03:38.056 7700 FEE 441011 11999 6089547 2024-02-27 20:03:38.056 2024-02-27 20:03:38.056 69300 TIP 441011 5057 6089556 2024-02-27 20:03:38.824 2024-02-27 20:03:38.824 7700 FEE 441011 19996 6089557 2024-02-27 20:03:38.824 2024-02-27 20:03:38.824 69300 TIP 441011 9669 6089568 2024-02-27 20:03:39.801 2024-02-27 20:03:39.801 7700 FEE 441011 917 6089569 2024-02-27 20:03:39.801 2024-02-27 20:03:39.801 69300 TIP 441011 15273 6089574 2024-02-27 20:03:40.468 2024-02-27 20:03:40.468 7700 FEE 441011 13365 6089575 2024-02-27 20:03:40.468 2024-02-27 20:03:40.468 69300 TIP 441011 18473 6089584 2024-02-27 20:03:51.499 2024-02-27 20:03:51.499 2100 FEE 440959 929 6089585 2024-02-27 20:03:51.499 2024-02-27 20:03:51.499 18900 TIP 440959 14774 6089586 2024-02-27 20:03:54.471 2024-02-27 20:03:54.471 2100 FEE 440988 18336 6089587 2024-02-27 20:03:54.471 2024-02-27 20:03:54.471 18900 TIP 440988 1603 6089609 2024-02-27 20:04:07.968 2024-02-27 20:04:07.968 7700 FEE 441019 15577 6089610 2024-02-27 20:04:07.968 2024-02-27 20:04:07.968 69300 TIP 441019 617 6089627 2024-02-27 20:04:14.539 2024-02-27 20:04:14.539 7700 FEE 441019 6573 6089628 2024-02-27 20:04:14.539 2024-02-27 20:04:14.539 69300 TIP 441019 1740 6089640 2024-02-27 20:04:53.724 2024-02-27 20:04:53.724 100000 FEE 441023 18664 6089681 2024-02-27 20:06:44.857 2024-02-27 20:06:44.857 7700 FEE 441010 20495 6089682 2024-02-27 20:06:44.857 2024-02-27 20:06:44.857 69300 TIP 441010 9496 6089706 2024-02-27 20:10:40.814 2024-02-27 20:10:40.814 2100 FEE 441013 16939 6089707 2024-02-27 20:10:40.814 2024-02-27 20:10:40.814 18900 TIP 441013 11750 6089720 2024-02-27 20:11:40.923 2024-02-27 20:11:40.923 0 FEE 441038 1319 6089809 2024-02-27 20:24:48.709 2024-02-27 20:24:48.709 7700 FEE 441048 9275 6089810 2024-02-27 20:24:48.709 2024-02-27 20:24:48.709 69300 TIP 441048 12139 6089815 2024-02-27 20:25:39.317 2024-02-27 20:25:39.317 7700 FEE 441054 633 6089816 2024-02-27 20:25:39.317 2024-02-27 20:25:39.317 69300 TIP 441054 18231 6089817 2024-02-27 20:25:39.559 2024-02-27 20:25:39.559 7700 FEE 441054 16353 6089818 2024-02-27 20:25:39.559 2024-02-27 20:25:39.559 69300 TIP 441054 21421 6089821 2024-02-27 20:25:43.247 2024-02-27 20:25:43.247 1000 POLL 440725 4819 6089830 2024-02-27 20:25:45.48 2024-02-27 20:25:45.48 1000 FEE 441019 19930 6089831 2024-02-27 20:25:45.48 2024-02-27 20:25:45.48 9000 TIP 441019 18680 6089886 2024-02-27 20:33:01.133 2024-02-27 20:33:01.133 100000 FEE 441060 21361 6089888 2024-02-27 20:33:21.151 2024-02-27 20:33:21.151 1000 FEE 441061 15282 6089924 2024-02-27 20:36:17.064 2024-02-27 20:36:17.064 2100 FEE 441054 1261 6089925 2024-02-27 20:36:17.064 2024-02-27 20:36:17.064 18900 TIP 441054 15624 6089932 2024-02-27 20:38:56.538 2024-02-27 20:38:56.538 1000 FEE 440870 20642 6089933 2024-02-27 20:38:56.538 2024-02-27 20:38:56.538 9000 TIP 440870 7587 6089942 2024-02-27 20:41:25.576 2024-02-27 20:41:25.576 1000 FEE 441067 21248 6089943 2024-02-27 20:41:37.066 2024-02-27 20:41:37.066 3300 FEE 441052 826 6089944 2024-02-27 20:41:37.066 2024-02-27 20:41:37.066 29700 TIP 441052 19094 6089946 2024-02-27 20:41:42.263 2024-02-27 20:41:42.263 1000 FEE 441069 9036 6089953 2024-02-27 20:42:34.778 2024-02-27 20:42:34.778 7700 FEE 441069 20691 6089954 2024-02-27 20:42:34.778 2024-02-27 20:42:34.778 69300 TIP 441069 12708 6089956 2024-02-27 20:42:47.532 2024-02-27 20:42:47.532 7700 FEE 441060 8269 6089957 2024-02-27 20:42:47.532 2024-02-27 20:42:47.532 69300 TIP 441060 17030 6089981 2024-02-27 20:43:43.94 2024-02-27 20:43:43.94 1000 POLL 441054 1800 6089982 2024-02-27 20:43:44.076 2024-02-27 20:43:44.076 12800 FEE 441069 20058 6089983 2024-02-27 20:43:44.076 2024-02-27 20:43:44.076 115200 TIP 441069 14080 6089991 2024-02-27 20:44:12.325 2024-02-27 20:44:12.325 1000 FEE 440863 16724 6089992 2024-02-27 20:44:12.325 2024-02-27 20:44:12.325 9000 TIP 440863 17166 6090046 2024-02-27 20:49:56.316 2024-02-27 20:49:56.316 1000 FEE 441078 21371 6090053 2024-02-27 20:51:03.149 2024-02-27 20:51:03.149 1000 POLL 441054 19813 6090067 2024-02-27 20:51:55.334 2024-02-27 20:51:55.334 9000 FEE 440959 21047 6090068 2024-02-27 20:51:55.334 2024-02-27 20:51:55.334 81000 TIP 440959 733 6090086 2024-02-27 20:52:52.676 2024-02-27 20:52:52.676 1000 FEE 441082 19463 6090092 2024-02-27 20:53:23.077 2024-02-27 20:53:23.077 900 FEE 440998 18378 6090093 2024-02-27 20:53:23.077 2024-02-27 20:53:23.077 8100 TIP 440998 14370 6090100 2024-02-27 20:53:39.13 2024-02-27 20:53:39.13 900 FEE 440933 9992 6090101 2024-02-27 20:53:39.13 2024-02-27 20:53:39.13 8100 TIP 440933 21406 6090114 2024-02-27 20:53:42.538 2024-02-27 20:53:42.538 100 FEE 440937 15833 6090115 2024-02-27 20:53:42.538 2024-02-27 20:53:42.538 900 TIP 440937 20730 6090116 2024-02-27 20:53:42.715 2024-02-27 20:53:42.715 900 FEE 440937 3411 6090117 2024-02-27 20:53:42.715 2024-02-27 20:53:42.715 8100 TIP 440937 19777 6090118 2024-02-27 20:53:49.19 2024-02-27 20:53:49.19 0 FEE 441082 5036 6090147 2024-02-27 20:54:31.094 2024-02-27 20:54:31.094 1000 FEE 440692 18180 6090148 2024-02-27 20:54:31.094 2024-02-27 20:54:31.094 9000 TIP 440692 20906 6090149 2024-02-27 20:54:31.848 2024-02-27 20:54:31.848 1000 FEE 440692 5522 6090150 2024-02-27 20:54:31.848 2024-02-27 20:54:31.848 9000 TIP 440692 9476 6090155 2024-02-27 20:54:50.38 2024-02-27 20:54:50.38 1000 FEE 441083 16649 6090165 2024-02-27 20:55:17.234 2024-02-27 20:55:17.234 300 FEE 440619 1576 6090166 2024-02-27 20:55:17.234 2024-02-27 20:55:17.234 2700 TIP 440619 16282 6090203 2024-02-27 20:57:15.664 2024-02-27 20:57:15.664 300 FEE 440255 14990 6090204 2024-02-27 20:57:15.664 2024-02-27 20:57:15.664 2700 TIP 440255 17800 6090215 2024-02-27 20:58:15.608 2024-02-27 20:58:15.608 1000 FEE 440884 6688 6090216 2024-02-27 20:58:15.608 2024-02-27 20:58:15.608 9000 TIP 440884 4391 6090226 2024-02-27 20:59:22.84 2024-02-27 20:59:22.84 1000 POLL 441054 9167 6089668 2024-02-27 20:06:21.502 2024-02-27 20:06:21.502 9000 TIP 440870 15978 6089671 2024-02-27 20:06:22.419 2024-02-27 20:06:22.419 1000 FEE 440870 18956 6089672 2024-02-27 20:06:22.419 2024-02-27 20:06:22.419 9000 TIP 440870 1060 6089716 2024-02-27 20:11:20.791 2024-02-27 20:11:20.791 10000 FEE 441039 16442 6089726 2024-02-27 20:12:02.168 2024-02-27 20:12:02.168 1000 FEE 441029 18772 6089727 2024-02-27 20:12:02.168 2024-02-27 20:12:02.168 9000 TIP 441029 19806 6089759 2024-02-27 20:14:58.475 2024-02-27 20:14:58.475 1000 FEE 441046 722 6089813 2024-02-27 20:25:38.911 2024-02-27 20:25:38.911 7700 FEE 441054 20745 6089814 2024-02-27 20:25:38.911 2024-02-27 20:25:38.911 69300 TIP 441054 20220 6089851 2024-02-27 20:28:25.829 2024-02-27 20:28:25.829 10000 FEE 440692 12139 6089852 2024-02-27 20:28:25.829 2024-02-27 20:28:25.829 90000 TIP 440692 4654 6089864 2024-02-27 20:31:37.986 2024-02-27 20:31:37.986 1000 FEE 441059 17392 6089892 2024-02-27 20:34:00.944 2024-02-27 20:34:00.944 1000 FEE 440966 14941 6089893 2024-02-27 20:34:00.944 2024-02-27 20:34:00.944 9000 TIP 440966 994 6089926 2024-02-27 20:36:27.102 2024-02-27 20:36:27.102 1000 FEE 441065 13097 6089927 2024-02-27 20:36:44.286 2024-02-27 20:36:44.286 10000 FEE 440984 10862 6089928 2024-02-27 20:36:44.286 2024-02-27 20:36:44.286 90000 TIP 440984 19034 6089936 2024-02-27 20:40:21.731 2024-02-27 20:40:21.731 1000 FEE 441066 9816 6089955 2024-02-27 20:42:37.164 2024-02-27 20:42:37.164 1000 FEE 441073 900 6089958 2024-02-27 20:42:47.755 2024-02-27 20:42:47.755 7700 FEE 441060 19806 6089959 2024-02-27 20:42:47.755 2024-02-27 20:42:47.755 69300 TIP 441060 1960 6089968 2024-02-27 20:42:59.461 2024-02-27 20:42:59.461 9000 FEE 440898 1784 6089969 2024-02-27 20:42:59.461 2024-02-27 20:42:59.461 81000 TIP 440898 17042 6090021 2024-02-27 20:47:14.33 2024-02-27 20:47:14.33 1000 FEE 441076 4304 6090029 2024-02-27 20:48:56.065 2024-02-27 20:48:56.065 21000 FEE 441077 21427 6090074 2024-02-27 20:52:32.461 2024-02-27 20:52:32.461 1000 FEE 440725 15703 6090075 2024-02-27 20:52:32.461 2024-02-27 20:52:32.461 9000 TIP 440725 10549 6090090 2024-02-27 20:53:22.87 2024-02-27 20:53:22.87 100 FEE 440998 4624 6090091 2024-02-27 20:53:22.87 2024-02-27 20:53:22.87 900 TIP 440998 19333 6090102 2024-02-27 20:53:39.767 2024-02-27 20:53:39.767 100 FEE 441020 673 6090103 2024-02-27 20:53:39.767 2024-02-27 20:53:39.767 900 TIP 441020 4313 6090131 2024-02-27 20:54:29.671 2024-02-27 20:54:29.671 1000 FEE 440692 9177 6090132 2024-02-27 20:54:29.671 2024-02-27 20:54:29.671 9000 TIP 440692 15243 6090161 2024-02-27 20:55:07.993 2024-02-27 20:55:07.993 300 FEE 440281 16594 6090162 2024-02-27 20:55:07.993 2024-02-27 20:55:07.993 2700 TIP 440281 5487 6090169 2024-02-27 20:55:19.762 2024-02-27 20:55:19.762 1000 FEE 441084 16808 6090170 2024-02-27 20:55:21.537 2024-02-27 20:55:21.537 1000 FEE 440577 19103 6090171 2024-02-27 20:55:21.537 2024-02-27 20:55:21.537 9000 TIP 440577 736 6090205 2024-02-27 20:57:31.04 2024-02-27 20:57:31.04 1000 FEE 440692 3342 6090206 2024-02-27 20:57:31.04 2024-02-27 20:57:31.04 9000 TIP 440692 20464 6090207 2024-02-27 20:57:42.687 2024-02-27 20:57:42.687 3100 FEE 441086 9167 6090208 2024-02-27 20:57:42.687 2024-02-27 20:57:42.687 27900 TIP 441086 17227 6090219 2024-02-27 20:58:16.024 2024-02-27 20:58:16.024 1000 FEE 440884 8059 6090220 2024-02-27 20:58:16.024 2024-02-27 20:58:16.024 9000 TIP 440884 19938 6090241 2024-02-27 21:02:08.34 2024-02-27 21:02:08.34 1000 FEE 441087 1785 6090242 2024-02-27 21:02:08.34 2024-02-27 21:02:08.34 9000 TIP 441087 15556 6090243 2024-02-27 21:02:08.597 2024-02-27 21:02:08.597 1000 FEE 441087 20782 6090244 2024-02-27 21:02:08.597 2024-02-27 21:02:08.597 9000 TIP 441087 15549 6090284 2024-02-27 21:06:50.51 2024-02-27 21:06:50.51 1000 FEE 441093 19941 6090286 2024-02-27 21:06:59.782 2024-02-27 21:06:59.782 1600 FEE 440898 20987 6090287 2024-02-27 21:06:59.782 2024-02-27 21:06:59.782 14400 TIP 440898 19878 6090302 2024-02-27 21:08:04.567 2024-02-27 21:08:04.567 7100 FEE 440692 12356 6090303 2024-02-27 21:08:04.567 2024-02-27 21:08:04.567 63900 TIP 440692 761 6090306 2024-02-27 21:08:16.09 2024-02-27 21:08:16.09 1600 FEE 440911 797 6090307 2024-02-27 21:08:16.09 2024-02-27 21:08:16.09 14400 TIP 440911 18230 6090355 2024-02-27 21:12:31.582 2024-02-27 21:12:31.582 300 FEE 440865 2367 6090356 2024-02-27 21:12:31.582 2024-02-27 21:12:31.582 2700 TIP 440865 18311 6090357 2024-02-27 21:12:56.833 2024-02-27 21:12:56.833 1600 FEE 440891 10291 6090358 2024-02-27 21:12:56.833 2024-02-27 21:12:56.833 14400 TIP 440891 20094 6090396 2024-02-27 21:16:59.131 2024-02-27 21:16:59.131 2100 FEE 441087 18446 6090397 2024-02-27 21:16:59.131 2024-02-27 21:16:59.131 18900 TIP 441087 21620 6090409 2024-02-27 21:18:24.325 2024-02-27 21:18:24.325 2100 FEE 441029 18751 6090410 2024-02-27 21:18:24.325 2024-02-27 21:18:24.325 18900 TIP 441029 20802 6090419 2024-02-27 21:18:33.765 2024-02-27 21:18:33.765 2100 FEE 440989 15159 6090420 2024-02-27 21:18:33.765 2024-02-27 21:18:33.765 18900 TIP 440989 15594 6090451 2024-02-27 21:19:41.492 2024-02-27 21:19:41.492 0 FEE 441106 18494 6090457 2024-02-27 21:22:34.892 2024-02-27 21:22:34.892 100000 FEE 441113 14657 6090500 2024-02-27 21:30:06.097 2024-02-27 21:30:06.097 1000 FEE 441119 4570 6090524 2024-02-27 21:30:39.004 2024-02-27 21:30:39.004 1000 FEE 441107 11443 6090525 2024-02-27 21:30:39.004 2024-02-27 21:30:39.004 9000 TIP 441107 13527 6090575 2024-02-27 21:36:36.214 2024-02-27 21:36:36.214 1000 FEE 441129 16876 6090580 2024-02-27 21:36:38.13 2024-02-27 21:36:38.13 10100 FEE 440988 21532 6090581 2024-02-27 21:36:38.13 2024-02-27 21:36:38.13 90900 TIP 440988 19087 6090601 2024-02-27 21:39:19.542 2024-02-27 21:39:19.542 10000 FEE 441075 18199 6090602 2024-02-27 21:39:19.542 2024-02-27 21:39:19.542 90000 TIP 441075 787 6090616 2024-02-27 21:42:57.813 2024-02-27 21:42:57.813 10000 FEE 441134 12422 6090622 2024-02-27 21:43:03.248 2024-02-27 21:43:03.248 9000 FEE 441087 16284 6090623 2024-02-27 21:43:03.248 2024-02-27 21:43:03.248 81000 TIP 441087 2361 6090643 2024-02-27 21:46:59.59 2024-02-27 21:46:59.59 2100 FEE 441109 13622 6090644 2024-02-27 21:46:59.59 2024-02-27 21:46:59.59 18900 TIP 441109 700 6090661 2024-02-27 21:48:38.368 2024-02-27 21:48:38.368 5000 FEE 440925 20450 6090662 2024-02-27 21:48:38.368 2024-02-27 21:48:38.368 45000 TIP 440925 16424 6090678 2024-02-27 21:50:54.439 2024-02-27 21:50:54.439 6900 FEE 441136 18016 6090679 2024-02-27 21:50:54.439 2024-02-27 21:50:54.439 62100 TIP 441136 691 6090683 2024-02-27 21:51:50.422 2024-02-27 21:51:50.422 200000 FEE 441142 20326 6090714 2024-02-27 21:55:40.501 2024-02-27 21:55:40.501 0 FEE 441144 17455 6090716 2024-02-27 21:56:41.347 2024-02-27 21:56:41.347 7700 FEE 441098 19863 6090717 2024-02-27 21:56:41.347 2024-02-27 21:56:41.347 69300 TIP 441098 9184 6090733 2024-02-27 22:00:00.899 2024-02-27 22:00:00.899 100 FEE 441137 19292 6090734 2024-02-27 22:00:00.899 2024-02-27 22:00:00.899 900 TIP 441137 20156 6090753 2024-02-27 22:06:10.068 2024-02-27 22:06:10.068 1000 POLL 441054 2390 6090768 2024-02-27 22:08:35.792 2024-02-27 22:08:35.792 100 FEE 440899 6360 6090769 2024-02-27 22:08:35.792 2024-02-27 22:08:35.792 900 TIP 440899 1620 6090792 2024-02-27 22:10:56.934 2024-02-27 22:10:56.934 2500 FEE 441132 14791 6090793 2024-02-27 22:10:56.934 2024-02-27 22:10:56.934 22500 TIP 441132 1489 6090795 2024-02-27 22:11:06.01 2024-02-27 22:11:06.01 100 FEE 441078 19394 6089774 2024-02-27 20:17:00.222 2024-02-27 20:17:00.222 1000 FEE 441049 5590 6089783 2024-02-27 20:20:00.134 2024-02-27 20:20:00.134 1000 FEE 441051 750 6089784 2024-02-27 20:20:01.944 2024-02-27 20:20:01.944 1000 FEE 441052 7587 6089819 2024-02-27 20:25:39.791 2024-02-27 20:25:39.791 7700 FEE 441054 1970 6089820 2024-02-27 20:25:39.791 2024-02-27 20:25:39.791 69300 TIP 441054 616 6089828 2024-02-27 20:25:44.869 2024-02-27 20:25:44.869 1000 FEE 441019 7877 6089829 2024-02-27 20:25:44.869 2024-02-27 20:25:44.869 9000 TIP 441019 1316 6089834 2024-02-27 20:25:45.774 2024-02-27 20:25:45.774 1000 FEE 441019 715 6089835 2024-02-27 20:25:45.774 2024-02-27 20:25:45.774 9000 TIP 441019 1320 6089836 2024-02-27 20:25:49.096 2024-02-27 20:25:49.096 100 FEE 441051 2674 6089837 2024-02-27 20:25:49.096 2024-02-27 20:25:49.096 900 TIP 441051 2844 6089849 2024-02-27 20:28:23.729 2024-02-27 20:28:23.729 1000 FEE 441057 21148 6089858 2024-02-27 20:29:50.752 2024-02-27 20:29:50.752 2100 FEE 441038 2016 6089859 2024-02-27 20:29:50.752 2024-02-27 20:29:50.752 18900 TIP 441038 19435 6089865 2024-02-27 20:31:40.823 2024-02-27 20:31:40.823 6900 FEE 441057 18409 6089866 2024-02-27 20:31:40.823 2024-02-27 20:31:40.823 62100 TIP 441057 16965 6089870 2024-02-27 20:32:14.868 2024-02-27 20:32:14.868 1000 FEE 440692 20153 6089871 2024-02-27 20:32:14.868 2024-02-27 20:32:14.868 9000 TIP 440692 979 6089876 2024-02-27 20:32:17.497 2024-02-27 20:32:17.497 1000 FEE 440692 626 6089877 2024-02-27 20:32:17.497 2024-02-27 20:32:17.497 9000 TIP 440692 19289 6089902 2024-02-27 20:34:57.558 2024-02-27 20:34:57.558 2100 FEE 440725 17183 6089903 2024-02-27 20:34:57.558 2024-02-27 20:34:57.558 18900 TIP 440725 12268 6089907 2024-02-27 20:35:00.857 2024-02-27 20:35:00.857 7700 FEE 440907 5865 6089908 2024-02-27 20:35:00.857 2024-02-27 20:35:00.857 69300 TIP 440907 5794 6089910 2024-02-27 20:35:02.47 2024-02-27 20:35:02.47 7700 FEE 440907 717 6089911 2024-02-27 20:35:02.47 2024-02-27 20:35:02.47 69300 TIP 440907 19352 6089914 2024-02-27 20:35:15.422 2024-02-27 20:35:15.422 7700 FEE 440907 9450 6089915 2024-02-27 20:35:15.422 2024-02-27 20:35:15.422 69300 TIP 440907 10771 6089920 2024-02-27 20:35:24.638 2024-02-27 20:35:24.638 1000 POLL 440725 18816 6089970 2024-02-27 20:43:01.503 2024-02-27 20:43:01.503 3300 FEE 440917 8168 6089971 2024-02-27 20:43:01.503 2024-02-27 20:43:01.503 29700 TIP 440917 8945 6089979 2024-02-27 20:43:26.868 2024-02-27 20:43:26.868 9000 FEE 440988 19907 6089980 2024-02-27 20:43:26.868 2024-02-27 20:43:26.868 81000 TIP 440988 5557 6089999 2024-02-27 20:44:17.141 2024-02-27 20:44:17.141 1000 FEE 440863 18678 6090000 2024-02-27 20:44:17.141 2024-02-27 20:44:17.141 9000 TIP 440863 21136 6090005 2024-02-27 20:44:17.606 2024-02-27 20:44:17.606 1000 FEE 440863 7899 6090006 2024-02-27 20:44:17.606 2024-02-27 20:44:17.606 9000 TIP 440863 21498 6090007 2024-02-27 20:44:53.934 2024-02-27 20:44:53.934 1000 FEE 441057 6749 6090008 2024-02-27 20:44:53.934 2024-02-27 20:44:53.934 9000 TIP 441057 10944 6090012 2024-02-27 20:46:16.752 2024-02-27 20:46:16.752 1000 FEE 441075 17570 6090044 2024-02-27 20:49:52.253 2024-02-27 20:49:52.253 2100 FEE 440692 19199 6090045 2024-02-27 20:49:52.253 2024-02-27 20:49:52.253 18900 TIP 440692 20036 6090050 2024-02-27 20:50:44.947 2024-02-27 20:50:44.947 2100 FEE 441054 977 6090051 2024-02-27 20:50:44.947 2024-02-27 20:50:44.947 18900 TIP 441054 14195 6090078 2024-02-27 20:52:39.542 2024-02-27 20:52:39.542 900 FEE 441077 1564 6090079 2024-02-27 20:52:39.542 2024-02-27 20:52:39.542 8100 TIP 441077 20990 6090082 2024-02-27 20:52:41.476 2024-02-27 20:52:41.476 1000 FEE 440988 17526 6090083 2024-02-27 20:52:41.476 2024-02-27 20:52:41.476 9000 TIP 440988 2204 6090112 2024-02-27 20:53:41.906 2024-02-27 20:53:41.906 900 FEE 440956 721 6090113 2024-02-27 20:53:41.906 2024-02-27 20:53:41.906 8100 TIP 440956 21480 6090137 2024-02-27 20:54:30.232 2024-02-27 20:54:30.232 1000 FEE 440692 20745 6090138 2024-02-27 20:54:30.232 2024-02-27 20:54:30.232 9000 TIP 440692 2326 6090151 2024-02-27 20:54:37.334 2024-02-27 20:54:37.334 100 FEE 441055 19541 6090152 2024-02-27 20:54:37.334 2024-02-27 20:54:37.334 900 TIP 441055 16347 6090163 2024-02-27 20:55:14.201 2024-02-27 20:55:14.201 300 FEE 440516 21493 6090164 2024-02-27 20:55:14.201 2024-02-27 20:55:14.201 2700 TIP 440516 4314 6090201 2024-02-27 20:57:13.956 2024-02-27 20:57:13.956 5000 FEE 440692 20924 6090202 2024-02-27 20:57:13.956 2024-02-27 20:57:13.956 45000 TIP 440692 17030 6090263 2024-02-27 21:04:43.108 2024-02-27 21:04:43.108 7100 FEE 441027 675 6090264 2024-02-27 21:04:43.108 2024-02-27 21:04:43.108 63900 TIP 441027 10016 6090285 2024-02-27 21:06:59.34 2024-02-27 21:06:59.34 1000 FEE 441094 5942 6090324 2024-02-27 21:08:58.767 2024-02-27 21:08:58.767 800 FEE 440870 21021 6090325 2024-02-27 21:08:58.767 2024-02-27 21:08:58.767 7200 TIP 440870 20811 6090343 2024-02-27 21:11:00.163 2024-02-27 21:11:00.163 0 FEE 441098 17275 6090365 2024-02-27 21:13:27.845 2024-02-27 21:13:27.845 1000 FEE 441102 4079 6090369 2024-02-27 21:14:25.046 2024-02-27 21:14:25.046 1000 FEE 441094 12334 6090370 2024-02-27 21:14:25.046 2024-02-27 21:14:25.046 9000 TIP 441094 21012 6090376 2024-02-27 21:15:09.064 2024-02-27 21:15:09.064 1000 FEE 441087 20006 6090377 2024-02-27 21:15:09.064 2024-02-27 21:15:09.064 9000 TIP 441087 1142 6090408 2024-02-27 21:18:07.891 2024-02-27 21:18:07.891 1000 FEE 441108 19281 6090417 2024-02-27 21:18:28.166 2024-02-27 21:18:28.166 2100 FEE 441001 15484 6090418 2024-02-27 21:18:28.166 2024-02-27 21:18:28.166 18900 TIP 441001 9438 6090431 2024-02-27 21:18:56.568 2024-02-27 21:18:56.568 2100 FEE 441001 13174 6090432 2024-02-27 21:18:56.568 2024-02-27 21:18:56.568 18900 TIP 441001 19857 6090452 2024-02-27 21:19:42.076 2024-02-27 21:19:42.076 1000 FEE 441111 2256 6090482 2024-02-27 21:27:48.573 2024-02-27 21:27:48.573 1000 POLL 440725 6700 6090508 2024-02-27 21:30:33.808 2024-02-27 21:30:33.808 2200 FEE 440692 9655 6090509 2024-02-27 21:30:33.808 2024-02-27 21:30:33.808 19800 TIP 440692 13767 6090512 2024-02-27 21:30:36.413 2024-02-27 21:30:36.413 1000 FEE 441107 12289 6090513 2024-02-27 21:30:36.413 2024-02-27 21:30:36.413 9000 TIP 441107 13921 6090520 2024-02-27 21:30:38.161 2024-02-27 21:30:38.161 1000 FEE 441107 13547 6090521 2024-02-27 21:30:38.161 2024-02-27 21:30:38.161 9000 TIP 441107 17523 6090522 2024-02-27 21:30:38.55 2024-02-27 21:30:38.55 1000 FEE 441107 736 6090523 2024-02-27 21:30:38.55 2024-02-27 21:30:38.55 9000 TIP 441107 13174 6090526 2024-02-27 21:30:39.456 2024-02-27 21:30:39.456 1000 FEE 441107 1505 6090527 2024-02-27 21:30:39.456 2024-02-27 21:30:39.456 9000 TIP 441107 1471 6090550 2024-02-27 21:33:24.152 2024-02-27 21:33:24.152 6400 FEE 441087 19546 6090551 2024-02-27 21:33:24.152 2024-02-27 21:33:24.152 57600 TIP 441087 18524 6090552 2024-02-27 21:33:25.498 2024-02-27 21:33:25.498 1000 FEE 441122 10690 6090557 2024-02-27 21:34:56.456 2024-02-27 21:34:56.456 1000 FEE 440993 15728 6090558 2024-02-27 21:34:56.456 2024-02-27 21:34:56.456 9000 TIP 440993 19732 6090567 2024-02-27 21:35:56.195 2024-02-27 21:35:56.195 1000 FEE 438486 20745 6090568 2024-02-27 21:35:56.195 2024-02-27 21:35:56.195 9000 TIP 438486 20892 6089806 2024-02-27 20:24:21.075 2024-02-27 20:24:21.075 1000 FEE 441056 8245 6089807 2024-02-27 20:24:38.11 2024-02-27 20:24:38.11 2100 FEE 440692 1002 6089808 2024-02-27 20:24:38.11 2024-02-27 20:24:38.11 18900 TIP 440692 5728 6089824 2024-02-27 20:25:44.545 2024-02-27 20:25:44.545 1000 FEE 441019 15577 6089825 2024-02-27 20:25:44.545 2024-02-27 20:25:44.545 9000 TIP 441019 14818 6089856 2024-02-27 20:29:14.806 2024-02-27 20:29:14.806 1000 FEE 440692 20152 6089857 2024-02-27 20:29:14.806 2024-02-27 20:29:14.806 9000 TIP 440692 13143 6089868 2024-02-27 20:32:14.682 2024-02-27 20:32:14.682 1000 FEE 440692 17713 6089869 2024-02-27 20:32:14.682 2024-02-27 20:32:14.682 9000 TIP 440692 10273 6089872 2024-02-27 20:32:16.262 2024-02-27 20:32:16.262 2000 FEE 440692 4633 6089873 2024-02-27 20:32:16.262 2024-02-27 20:32:16.262 18000 TIP 440692 989 6089878 2024-02-27 20:32:18.09 2024-02-27 20:32:18.09 1000 FEE 440692 16929 6089879 2024-02-27 20:32:18.09 2024-02-27 20:32:18.09 9000 TIP 440692 13177 6089882 2024-02-27 20:32:19.197 2024-02-27 20:32:19.197 1000 FEE 440692 9378 6089883 2024-02-27 20:32:19.197 2024-02-27 20:32:19.197 9000 TIP 440692 18446 6089889 2024-02-27 20:33:35.878 2024-02-27 20:33:35.878 3200 FEE 441047 21514 6089890 2024-02-27 20:33:35.878 2024-02-27 20:33:35.878 28800 TIP 441047 17976 6089891 2024-02-27 20:33:37.815 2024-02-27 20:33:37.815 1000 FEE 441062 11220 6089897 2024-02-27 20:34:16.648 2024-02-27 20:34:16.648 1000 FEE 441063 20906 6089905 2024-02-27 20:35:00.597 2024-02-27 20:35:00.597 7700 FEE 440907 21194 6089906 2024-02-27 20:35:00.597 2024-02-27 20:35:00.597 69300 TIP 440907 12057 6089916 2024-02-27 20:35:16.127 2024-02-27 20:35:16.127 7700 FEE 440907 14255 6089917 2024-02-27 20:35:16.127 2024-02-27 20:35:16.127 69300 TIP 440907 960 6089921 2024-02-27 20:35:49.477 2024-02-27 20:35:49.477 0 FEE 441063 18659 6089937 2024-02-27 20:40:35.561 2024-02-27 20:40:35.561 1000 FEE 441019 985 6089938 2024-02-27 20:40:35.561 2024-02-27 20:40:35.561 9000 TIP 441019 1291 6089945 2024-02-27 20:41:40.588 2024-02-27 20:41:40.588 1000 FEE 441068 1493 6089948 2024-02-27 20:42:12.692 2024-02-27 20:42:12.692 2100 FEE 441067 2188 6089949 2024-02-27 20:42:12.692 2024-02-27 20:42:12.692 18900 TIP 441067 18904 6089951 2024-02-27 20:42:31.547 2024-02-27 20:42:31.547 1000 FEE 441071 15833 6089960 2024-02-27 20:42:47.849 2024-02-27 20:42:47.849 7700 FEE 441060 21395 6089961 2024-02-27 20:42:47.849 2024-02-27 20:42:47.849 69300 TIP 441060 18344 6089962 2024-02-27 20:42:54.01 2024-02-27 20:42:54.01 3300 FEE 440921 1833 6089963 2024-02-27 20:42:54.01 2024-02-27 20:42:54.01 29700 TIP 440921 18378 6089964 2024-02-27 20:42:56.931 2024-02-27 20:42:56.931 100 FEE 440898 20090 6089965 2024-02-27 20:42:56.931 2024-02-27 20:42:56.931 900 TIP 440898 21291 6089966 2024-02-27 20:42:57.109 2024-02-27 20:42:57.109 900 FEE 440898 21214 6089967 2024-02-27 20:42:57.109 2024-02-27 20:42:57.109 8100 TIP 440898 20655 6089975 2024-02-27 20:43:24.054 2024-02-27 20:43:24.054 100 FEE 440988 21491 6089976 2024-02-27 20:43:24.054 2024-02-27 20:43:24.054 900 TIP 440988 20502 6089977 2024-02-27 20:43:24.457 2024-02-27 20:43:24.457 900 FEE 440988 18635 6089978 2024-02-27 20:43:24.457 2024-02-27 20:43:24.457 8100 TIP 440988 19854 6090003 2024-02-27 20:44:17.48 2024-02-27 20:44:17.48 1000 FEE 440863 20087 6090004 2024-02-27 20:44:17.48 2024-02-27 20:44:17.48 9000 TIP 440863 21048 6090013 2024-02-27 20:46:26.575 2024-02-27 20:46:26.575 3300 FEE 440729 21214 6090014 2024-02-27 20:46:26.575 2024-02-27 20:46:26.575 29700 TIP 440729 1483 6090048 2024-02-27 20:50:39.71 2024-02-27 20:50:39.71 2100 FEE 440723 18306 6090049 2024-02-27 20:50:39.71 2024-02-27 20:50:39.71 18900 TIP 440723 18556 6090061 2024-02-27 20:51:45.338 2024-02-27 20:51:45.338 900 FEE 440984 20264 6090062 2024-02-27 20:51:45.338 2024-02-27 20:51:45.338 8100 TIP 440984 18557 6090065 2024-02-27 20:51:54.644 2024-02-27 20:51:54.644 900 FEE 440959 2061 6090066 2024-02-27 20:51:54.644 2024-02-27 20:51:54.644 8100 TIP 440959 1094 6090094 2024-02-27 20:53:24.2 2024-02-27 20:53:24.2 100 FEE 441001 21296 6090095 2024-02-27 20:53:24.2 2024-02-27 20:53:24.2 900 TIP 441001 9378 6090096 2024-02-27 20:53:24.256 2024-02-27 20:53:24.256 900 FEE 441001 19417 6090097 2024-02-27 20:53:24.256 2024-02-27 20:53:24.256 8100 TIP 441001 20539 6090106 2024-02-27 20:53:40.652 2024-02-27 20:53:40.652 100 FEE 440977 19583 6090107 2024-02-27 20:53:40.652 2024-02-27 20:53:40.652 900 TIP 440977 2256 6090135 2024-02-27 20:54:30.058 2024-02-27 20:54:30.058 1000 FEE 440692 19553 6090136 2024-02-27 20:54:30.058 2024-02-27 20:54:30.058 9000 TIP 440692 16684 6090143 2024-02-27 20:54:30.735 2024-02-27 20:54:30.735 1000 FEE 440692 21349 6090144 2024-02-27 20:54:30.735 2024-02-27 20:54:30.735 9000 TIP 440692 18784 6090153 2024-02-27 20:54:37.913 2024-02-27 20:54:37.913 100000 FEE 440692 12708 6090154 2024-02-27 20:54:37.913 2024-02-27 20:54:37.913 900000 TIP 440692 15536 6090210 2024-02-27 20:58:12.589 2024-02-27 20:58:12.589 210000 FEE 441087 21391 6090248 2024-02-27 21:02:09.538 2024-02-27 21:02:09.538 300 FEE 439857 987 6090249 2024-02-27 21:02:09.538 2024-02-27 21:02:09.538 2700 TIP 439857 21365 6090253 2024-02-27 21:04:11.952 2024-02-27 21:04:11.952 7100 FEE 441011 11430 6090254 2024-02-27 21:04:11.952 2024-02-27 21:04:11.952 63900 TIP 441011 807 6090276 2024-02-27 21:06:41.345 2024-02-27 21:06:41.345 1000 FEE 441092 20546 6090277 2024-02-27 21:06:41.345 2024-02-27 21:06:41.345 9000 TIP 441092 19105 6090304 2024-02-27 21:08:15.966 2024-02-27 21:08:15.966 100 FEE 440531 20018 6090305 2024-02-27 21:08:15.966 2024-02-27 21:08:15.966 900 TIP 440531 1030 6090308 2024-02-27 21:08:19.211 2024-02-27 21:08:19.211 800 FEE 440527 19663 6090309 2024-02-27 21:08:19.211 2024-02-27 21:08:19.211 7200 TIP 440527 1618 6090315 2024-02-27 21:08:30.496 2024-02-27 21:08:30.496 100 FEE 440683 5829 6090316 2024-02-27 21:08:30.496 2024-02-27 21:08:30.496 900 TIP 440683 9758 6090321 2024-02-27 21:08:48.501 2024-02-27 21:08:48.501 800 FEE 441069 647 6090322 2024-02-27 21:08:48.501 2024-02-27 21:08:48.501 7200 TIP 441069 20663 6090329 2024-02-27 21:09:54.192 2024-02-27 21:09:54.192 3300 FEE 440898 4831 6090330 2024-02-27 21:09:54.192 2024-02-27 21:09:54.192 29700 TIP 440898 11999 6089812 2024-02-27 20:25:02.345 2024-02-27 20:25:02.345 1000 STREAM 141924 1784 6089867 2024-02-27 20:32:02.344 2024-02-27 20:32:02.344 1000 STREAM 141924 5942 6089909 2024-02-27 20:35:02.385 2024-02-27 20:35:02.385 1000 STREAM 141924 16154 6089922 2024-02-27 20:36:02.37 2024-02-27 20:36:02.37 1000 STREAM 141924 5759 6089930 2024-02-27 20:37:02.381 2024-02-27 20:37:02.381 1000 STREAM 141924 1298 6089931 2024-02-27 20:38:02.378 2024-02-27 20:38:02.378 1000 STREAM 141924 1094 6089934 2024-02-27 20:39:02.386 2024-02-27 20:39:02.386 1000 STREAM 141924 787 6090009 2024-02-27 20:45:02.39 2024-02-27 20:45:02.39 1000 STREAM 141924 13587 6089844 2024-02-27 20:28:02.334 2024-02-27 20:28:02.334 1000 STREAM 141924 7425 6089887 2024-02-27 20:33:02.362 2024-02-27 20:33:02.362 1000 STREAM 141924 21400 6089894 2024-02-27 20:34:02.356 2024-02-27 20:34:02.356 1000 STREAM 141924 21365 6089935 2024-02-27 20:40:02.403 2024-02-27 20:40:02.403 1000 STREAM 141924 12334 6089972 2024-02-27 20:43:02.39 2024-02-27 20:43:02.39 1000 STREAM 141924 4166 6089984 2024-02-27 20:44:02.418 2024-02-27 20:44:02.418 1000 STREAM 141924 2326 6089947 2024-02-27 20:42:03.65 2024-02-27 20:42:03.65 1000 STREAM 141924 674 6090030 2024-02-27 20:49:03.684 2024-02-27 20:49:03.684 1000 STREAM 141924 18412 6090047 2024-02-27 20:50:03.67 2024-02-27 20:50:03.67 1000 STREAM 141924 19911 6090225 2024-02-27 20:59:03.689 2024-02-27 20:59:03.689 1000 STREAM 141924 16276 6090234 2024-02-27 21:01:03.715 2024-02-27 21:01:03.715 1000 STREAM 141924 5759 6090236 2024-02-27 21:02:03.727 2024-02-27 21:02:03.727 1000 STREAM 141924 16942 6090251 2024-02-27 21:03:03.744 2024-02-27 21:03:03.744 1000 STREAM 141924 9 6090265 2024-02-27 21:05:03.7 2024-02-27 21:05:03.7 1000 STREAM 141924 7979 6090011 2024-02-27 20:46:02.777 2024-02-27 20:46:02.777 1000 STREAM 141924 6537 6090020 2024-02-27 20:47:02.775 2024-02-27 20:47:02.775 1000 STREAM 141924 16513 6090022 2024-02-27 20:48:02.802 2024-02-27 20:48:02.802 1000 STREAM 141924 2502 6090052 2024-02-27 20:51:02.804 2024-02-27 20:51:02.804 1000 STREAM 141924 21019 6090069 2024-02-27 20:52:02.808 2024-02-27 20:52:02.808 1000 STREAM 141924 5128 6090087 2024-02-27 20:53:02.817 2024-02-27 20:53:02.817 1000 STREAM 141924 19967 6090123 2024-02-27 20:54:02.81 2024-02-27 20:54:02.81 1000 STREAM 141924 11240 6090228 2024-02-27 21:00:02.876 2024-02-27 21:00:02.876 1000 STREAM 141924 13217 6090252 2024-02-27 21:04:02.869 2024-02-27 21:04:02.869 1000 STREAM 141924 17237 6090270 2024-02-27 21:06:02.867 2024-02-27 21:06:02.867 1000 STREAM 141924 11477 6090290 2024-02-27 21:07:02.868 2024-02-27 21:07:02.868 1000 STREAM 141924 17673 6090333 2024-02-27 21:10:02.923 2024-02-27 21:10:02.923 1000 STREAM 141924 17172 6090344 2024-02-27 21:11:02.886 2024-02-27 21:11:02.886 1000 STREAM 141924 21373 6090352 2024-02-27 21:12:02.896 2024-02-27 21:12:02.896 1000 STREAM 141924 14791 6090453 2024-02-27 21:20:02.928 2024-02-27 21:20:02.928 1000 STREAM 141924 21292 6090456 2024-02-27 21:22:02.944 2024-02-27 21:22:02.944 1000 STREAM 141924 8176 6090467 2024-02-27 21:25:02.949 2024-02-27 21:25:02.949 1000 STREAM 141924 21022 6090468 2024-02-27 21:26:02.965 2024-02-27 21:26:02.965 1000 STREAM 141924 19154 6090474 2024-02-27 21:27:02.976 2024-02-27 21:27:02.976 1000 STREAM 141924 686 6090486 2024-02-27 21:28:02.994 2024-02-27 21:28:02.994 1000 STREAM 141924 4323 6090499 2024-02-27 21:30:03.015 2024-02-27 21:30:03.015 1000 STREAM 141924 18956 6090531 2024-02-27 21:32:03.031 2024-02-27 21:32:03.031 1000 STREAM 141924 822 6090548 2024-02-27 21:33:03.049 2024-02-27 21:33:03.049 1000 STREAM 141924 20837 6090555 2024-02-27 21:34:03.064 2024-02-27 21:34:03.064 1000 STREAM 141924 2529 6090562 2024-02-27 21:35:03.082 2024-02-27 21:35:03.082 1000 STREAM 141924 5085 6090571 2024-02-27 21:36:03.067 2024-02-27 21:36:03.067 1000 STREAM 141924 3213 6090593 2024-02-27 21:38:03.08 2024-02-27 21:38:03.08 1000 STREAM 141924 19660 6090596 2024-02-27 21:39:03.084 2024-02-27 21:39:03.084 1000 STREAM 141924 21627 6090607 2024-02-27 21:40:03.115 2024-02-27 21:40:03.115 1000 STREAM 141924 11144 6090615 2024-02-27 21:42:03.111 2024-02-27 21:42:03.111 1000 STREAM 141924 21164 6090627 2024-02-27 21:45:03.13 2024-02-27 21:45:03.13 1000 STREAM 141924 837 6090641 2024-02-27 21:46:03.137 2024-02-27 21:46:03.137 1000 STREAM 141924 17592 6090672 2024-02-27 21:50:03.189 2024-02-27 21:50:03.189 1000 STREAM 141924 3213 6090680 2024-02-27 21:51:03.163 2024-02-27 21:51:03.163 1000 STREAM 141924 11527 6090705 2024-02-27 21:54:03.175 2024-02-27 21:54:03.175 1000 STREAM 141924 11621 6090713 2024-02-27 21:55:03.186 2024-02-27 21:55:03.186 1000 STREAM 141924 16124 6090715 2024-02-27 21:56:03.196 2024-02-27 21:56:03.196 1000 STREAM 141924 7983 6090726 2024-02-27 21:59:03.214 2024-02-27 21:59:03.214 1000 STREAM 141924 9099 6090735 2024-02-27 22:00:03.221 2024-02-27 22:00:03.221 1000 STREAM 141924 16432 6090738 2024-02-27 22:01:03.225 2024-02-27 22:01:03.225 1000 STREAM 141924 18618 6090741 2024-02-27 22:02:03.221 2024-02-27 22:02:03.221 1000 STREAM 141924 1003 6090749 2024-02-27 22:04:03.237 2024-02-27 22:04:03.237 1000 STREAM 141924 15103 6090750 2024-02-27 22:05:03.249 2024-02-27 22:05:03.249 1000 STREAM 141924 10771 6090759 2024-02-27 22:08:03.245 2024-02-27 22:08:03.245 1000 STREAM 141924 20180 6090778 2024-02-27 22:09:03.259 2024-02-27 22:09:03.259 1000 STREAM 141924 18368 6090794 2024-02-27 22:11:03.265 2024-02-27 22:11:03.265 1000 STREAM 141924 11516 6090820 2024-02-27 22:17:03.301 2024-02-27 22:17:03.301 1000 STREAM 141924 21342 6090826 2024-02-27 22:19:03.322 2024-02-27 22:19:03.322 1000 STREAM 141924 16706 6090878 2024-02-27 22:20:03.322 2024-02-27 22:20:03.322 1000 STREAM 141924 1618 6090881 2024-02-27 22:22:03.321 2024-02-27 22:22:03.321 1000 STREAM 141924 20087 6090892 2024-02-27 22:23:03.338 2024-02-27 22:23:03.338 1000 STREAM 141924 2502 6090907 2024-02-27 22:25:03.353 2024-02-27 22:25:03.353 1000 STREAM 141924 882 6090954 2024-02-27 22:28:03.376 2024-02-27 22:28:03.376 1000 STREAM 141924 19576 6090976 2024-02-27 22:29:03.405 2024-02-27 22:29:03.405 1000 STREAM 141924 7673 6090985 2024-02-27 22:30:03.385 2024-02-27 22:30:03.385 1000 STREAM 141924 9334 6091003 2024-02-27 22:32:03.401 2024-02-27 22:32:03.401 1000 STREAM 141924 1319 6091010 2024-02-27 22:34:03.416 2024-02-27 22:34:03.416 1000 STREAM 141924 713 6091012 2024-02-27 22:35:03.42 2024-02-27 22:35:03.42 1000 STREAM 141924 19557 6091016 2024-02-27 22:37:03.42 2024-02-27 22:37:03.42 1000 STREAM 141924 20849 6091032 2024-02-27 22:39:03.439 2024-02-27 22:39:03.439 1000 STREAM 141924 6229 6090032 2024-02-27 20:49:11.404 2024-02-27 20:49:11.404 300 FEE 439702 19839 6090033 2024-02-27 20:49:11.404 2024-02-27 20:49:11.404 2700 TIP 439702 19652 6090038 2024-02-27 20:49:49.487 2024-02-27 20:49:49.487 1000 FEE 440863 10280 6090039 2024-02-27 20:49:49.487 2024-02-27 20:49:49.487 9000 TIP 440863 16706 6090070 2024-02-27 20:52:04.514 2024-02-27 20:52:04.514 1000 FEE 441080 21233 6090108 2024-02-27 20:53:40.819 2024-02-27 20:53:40.819 900 FEE 440977 981 6090109 2024-02-27 20:53:40.819 2024-02-27 20:53:40.819 8100 TIP 440977 20993 6090119 2024-02-27 20:54:00.511 2024-02-27 20:54:00.511 100 FEE 440888 19843 6090120 2024-02-27 20:54:00.511 2024-02-27 20:54:00.511 900 TIP 440888 2176 6090121 2024-02-27 20:54:00.686 2024-02-27 20:54:00.686 900 FEE 440888 20911 6090122 2024-02-27 20:54:00.686 2024-02-27 20:54:00.686 8100 TIP 440888 16754 6090128 2024-02-27 20:54:21.22 2024-02-27 20:54:21.22 100000 DONT_LIKE_THIS 440902 6361 6090129 2024-02-27 20:54:29.11 2024-02-27 20:54:29.11 1000 FEE 440692 3683 6090130 2024-02-27 20:54:29.11 2024-02-27 20:54:29.11 9000 TIP 440692 15139 6090133 2024-02-27 20:54:29.89 2024-02-27 20:54:29.89 1000 FEE 440692 21342 6090134 2024-02-27 20:54:29.89 2024-02-27 20:54:29.89 9000 TIP 440692 1454 6090141 2024-02-27 20:54:30.566 2024-02-27 20:54:30.566 1000 FEE 440692 21172 6090142 2024-02-27 20:54:30.566 2024-02-27 20:54:30.566 9000 TIP 440692 21412 6090172 2024-02-27 20:55:25.788 2024-02-27 20:55:25.788 1000 FEE 441085 1236 6090173 2024-02-27 20:55:36.085 2024-02-27 20:55:36.085 10000 FEE 441066 17095 6090174 2024-02-27 20:55:36.085 2024-02-27 20:55:36.085 90000 TIP 441066 13399 6090175 2024-02-27 20:55:49.226 2024-02-27 20:55:49.226 1000 FEE 440931 20858 6090176 2024-02-27 20:55:49.226 2024-02-27 20:55:49.226 9000 TIP 440931 20514 6090189 2024-02-27 20:56:02.699 2024-02-27 20:56:02.699 1000 FEE 441086 11942 6090192 2024-02-27 20:56:06.184 2024-02-27 20:56:06.184 2500 FEE 440918 20409 6090193 2024-02-27 20:56:06.184 2024-02-27 20:56:06.184 22500 TIP 440918 5036 6090196 2024-02-27 20:56:30.209 2024-02-27 20:56:30.209 1000 FEE 441070 8245 6090197 2024-02-27 20:56:30.209 2024-02-27 20:56:30.209 9000 TIP 441070 14247 6090213 2024-02-27 20:58:15.36 2024-02-27 20:58:15.36 1000 FEE 440884 1628 6090214 2024-02-27 20:58:15.36 2024-02-27 20:58:15.36 9000 TIP 440884 19156 6090227 2024-02-27 20:59:32.922 2024-02-27 20:59:32.922 1000 FEE 441088 8376 6090229 2024-02-27 21:00:04.991 2024-02-27 21:00:04.991 1000 FEE 440830 1180 6090230 2024-02-27 21:00:04.991 2024-02-27 21:00:04.991 9000 TIP 440830 1389 6090231 2024-02-27 21:00:05.398 2024-02-27 21:00:05.398 1000 FEE 440830 5519 6090232 2024-02-27 21:00:05.398 2024-02-27 21:00:05.398 9000 TIP 440830 6573 6090266 2024-02-27 21:05:17.993 2024-02-27 21:05:17.993 7100 FEE 440991 17275 6090267 2024-02-27 21:05:17.993 2024-02-27 21:05:17.993 63900 TIP 440991 7510 6090274 2024-02-27 21:06:41.068 2024-02-27 21:06:41.068 1000 FEE 441092 1273 6090275 2024-02-27 21:06:41.068 2024-02-27 21:06:41.068 9000 TIP 441092 5578 6090280 2024-02-27 21:06:41.795 2024-02-27 21:06:41.795 1000 FEE 441092 18601 6090281 2024-02-27 21:06:41.795 2024-02-27 21:06:41.795 9000 TIP 441092 13399 6090288 2024-02-27 21:07:01.754 2024-02-27 21:07:01.754 100 FEE 441076 12976 6090289 2024-02-27 21:07:01.754 2024-02-27 21:07:01.754 900 TIP 441076 21588 6090293 2024-02-27 21:07:07 2024-02-27 21:07:07 2000 FEE 441087 16289 6090294 2024-02-27 21:07:07 2024-02-27 21:07:07 18000 TIP 441087 18601 6090159 2024-02-27 20:54:54.659 2024-02-27 20:54:54.659 8100 TIP 440949 882 6090181 2024-02-27 20:55:49.993 2024-02-27 20:55:49.993 1000 FEE 440931 21070 6090182 2024-02-27 20:55:49.993 2024-02-27 20:55:49.993 9000 TIP 440931 8508 6090185 2024-02-27 20:56:01.849 2024-02-27 20:56:01.849 100 FEE 440989 10608 6090186 2024-02-27 20:56:01.849 2024-02-27 20:56:01.849 900 TIP 440989 3461 6090191 2024-02-27 20:56:02.99 2024-02-27 20:56:02.99 0 FEE 441085 669 6090211 2024-02-27 20:58:15.181 2024-02-27 20:58:15.181 1000 FEE 440884 18188 6090212 2024-02-27 20:58:15.181 2024-02-27 20:58:15.181 9000 TIP 440884 18736 6090217 2024-02-27 20:58:15.84 2024-02-27 20:58:15.84 1000 FEE 440884 10280 6090218 2024-02-27 20:58:15.84 2024-02-27 20:58:15.84 9000 TIP 440884 9333 6090239 2024-02-27 21:02:08.108 2024-02-27 21:02:08.108 1000 FEE 441087 623 6090240 2024-02-27 21:02:08.108 2024-02-27 21:02:08.108 9000 TIP 441087 20811 6090272 2024-02-27 21:06:24.93 2024-02-27 21:06:24.93 300 FEE 439982 21485 6090273 2024-02-27 21:06:24.93 2024-02-27 21:06:24.93 2700 TIP 439982 14267 6090278 2024-02-27 21:06:41.594 2024-02-27 21:06:41.594 1000 FEE 441092 1310 6090279 2024-02-27 21:06:41.594 2024-02-27 21:06:41.594 9000 TIP 441092 15088 6090282 2024-02-27 21:06:42.343 2024-02-27 21:06:42.343 1000 FEE 441092 956 6090283 2024-02-27 21:06:42.343 2024-02-27 21:06:42.343 9000 TIP 441092 4027 6090291 2024-02-27 21:07:03.761 2024-02-27 21:07:03.761 100 FEE 441087 17714 6090292 2024-02-27 21:07:03.761 2024-02-27 21:07:03.761 900 TIP 441087 15806 6090345 2024-02-27 21:11:16.323 2024-02-27 21:11:16.323 0 FEE 441098 9345 6090348 2024-02-27 21:11:42.125 2024-02-27 21:11:42.125 0 FEE 441096 2065 6090360 2024-02-27 21:13:06.087 2024-02-27 21:13:06.087 1000 FEE 441101 17171 6090368 2024-02-27 21:14:20.33 2024-02-27 21:14:20.33 0 FEE 441098 11378 6090380 2024-02-27 21:15:18.784 2024-02-27 21:15:18.784 1000 FEE 440959 16948 6090381 2024-02-27 21:15:18.784 2024-02-27 21:15:18.784 9000 TIP 440959 4225 6090402 2024-02-27 21:17:38.186 2024-02-27 21:17:38.186 1000 FEE 441105 11967 6090407 2024-02-27 21:18:03.874 2024-02-27 21:18:03.874 50000 FEE 441107 21138 6090423 2024-02-27 21:18:42.476 2024-02-27 21:18:42.476 2100 FEE 440898 19546 6090424 2024-02-27 21:18:42.476 2024-02-27 21:18:42.476 18900 TIP 440898 2460 6090425 2024-02-27 21:18:48.003 2024-02-27 21:18:48.003 2100 FEE 440959 12368 6090426 2024-02-27 21:18:48.003 2024-02-27 21:18:48.003 18900 TIP 440959 1773 6090439 2024-02-27 21:19:09.157 2024-02-27 21:19:09.157 2100 FEE 440925 12102 6090440 2024-02-27 21:19:09.157 2024-02-27 21:19:09.157 18900 TIP 440925 17316 6090443 2024-02-27 21:19:12.297 2024-02-27 21:19:12.297 2500 FEE 441077 12976 6090444 2024-02-27 21:19:12.297 2024-02-27 21:19:12.297 22500 TIP 441077 1836 6090463 2024-02-27 21:23:40.13 2024-02-27 21:23:40.13 1000 FEE 441114 2780 6090464 2024-02-27 21:23:52.619 2024-02-27 21:23:52.619 1000 FEE 441115 19463 6090480 2024-02-27 21:27:43.156 2024-02-27 21:27:43.156 1600 FEE 441077 1064 6090481 2024-02-27 21:27:43.156 2024-02-27 21:27:43.156 14400 TIP 441077 16562 6090504 2024-02-27 21:30:31.538 2024-02-27 21:30:31.538 2100 FEE 440692 21591 6090505 2024-02-27 21:30:31.538 2024-02-27 21:30:31.538 18900 TIP 440692 20680 6090510 2024-02-27 21:30:35.927 2024-02-27 21:30:35.927 1000 FEE 441107 21571 6090511 2024-02-27 21:30:35.927 2024-02-27 21:30:35.927 9000 TIP 441107 18309 6090516 2024-02-27 21:30:37.242 2024-02-27 21:30:37.242 1000 FEE 441107 20276 6090517 2024-02-27 21:30:37.242 2024-02-27 21:30:37.242 9000 TIP 441107 19322 6090542 2024-02-27 21:32:55.646 2024-02-27 21:32:55.646 1000 FEE 441118 7125 6090543 2024-02-27 21:32:55.646 2024-02-27 21:32:55.646 9000 TIP 441118 674 6090546 2024-02-27 21:32:55.976 2024-02-27 21:32:55.976 1000 FEE 441118 1806 6090547 2024-02-27 21:32:55.976 2024-02-27 21:32:55.976 9000 TIP 441118 696 6090556 2024-02-27 21:34:30.168 2024-02-27 21:34:30.168 1000 FEE 441123 4378 6090559 2024-02-27 21:34:59.124 2024-02-27 21:34:59.124 100000 FEE 441124 21506 6090564 2024-02-27 21:35:42.224 2024-02-27 21:35:42.224 1000 FEE 441125 17722 6090610 2024-02-27 21:40:54.177 2024-02-27 21:40:54.177 10000 FEE 441132 917 6090612 2024-02-27 21:41:04.191 2024-02-27 21:41:04.191 100 FEE 440898 19016 6090613 2024-02-27 21:41:04.191 2024-02-27 21:41:04.191 900 TIP 440898 1493 6090659 2024-02-27 21:48:37.395 2024-02-27 21:48:37.395 5000 FEE 440899 12566 6090660 2024-02-27 21:48:37.395 2024-02-27 21:48:37.395 45000 TIP 440899 6361 6090699 2024-02-27 21:53:42.653 2024-02-27 21:53:42.653 100 FEE 441036 5828 6090700 2024-02-27 21:53:42.653 2024-02-27 21:53:42.653 900 TIP 441036 15624 6090709 2024-02-27 21:54:39.045 2024-02-27 21:54:39.045 10000 FEE 441137 15386 6090710 2024-02-27 21:54:39.045 2024-02-27 21:54:39.045 90000 TIP 441137 12175 6090718 2024-02-27 21:56:48.687 2024-02-27 21:56:48.687 7700 FEE 441079 713 6090719 2024-02-27 21:56:48.687 2024-02-27 21:56:48.687 69300 TIP 441079 16660 6090727 2024-02-27 21:59:06.843 2024-02-27 21:59:06.843 2100 FEE 440305 1741 6090728 2024-02-27 21:59:06.843 2024-02-27 21:59:06.843 18900 TIP 440305 14213 6090755 2024-02-27 22:07:28.234 2024-02-27 22:07:28.234 10000 FEE 441152 20430 6090762 2024-02-27 22:08:20.937 2024-02-27 22:08:20.937 100 FEE 440898 1729 6090763 2024-02-27 22:08:20.937 2024-02-27 22:08:20.937 900 TIP 440898 715 6090764 2024-02-27 22:08:21.029 2024-02-27 22:08:21.029 2100 FEE 441016 5904 6090765 2024-02-27 22:08:21.029 2024-02-27 22:08:21.029 18900 TIP 441016 826 6090781 2024-02-27 22:09:16.46 2024-02-27 22:09:16.46 2500 FEE 441095 19524 6090782 2024-02-27 22:09:16.46 2024-02-27 22:09:16.46 22500 TIP 441095 19652 6090797 2024-02-27 22:11:42.643 2024-02-27 22:11:42.643 1000 FEE 441155 8416 6090160 2024-02-27 20:55:02.836 2024-02-27 20:55:02.836 1000 STREAM 141924 19909 6090190 2024-02-27 20:56:02.819 2024-02-27 20:56:02.819 1000 STREAM 141924 4128 6090198 2024-02-27 20:57:02.846 2024-02-27 20:57:02.846 1000 STREAM 141924 16357 6090209 2024-02-27 20:58:02.823 2024-02-27 20:58:02.823 1000 STREAM 141924 630 6090297 2024-02-27 21:08:02.883 2024-02-27 21:08:02.883 1000 STREAM 141924 10398 6090326 2024-02-27 21:09:02.869 2024-02-27 21:09:02.869 1000 STREAM 141924 18673 6090359 2024-02-27 21:13:02.912 2024-02-27 21:13:02.912 1000 STREAM 141924 11144 6090367 2024-02-27 21:14:02.904 2024-02-27 21:14:02.904 1000 STREAM 141924 5828 6090375 2024-02-27 21:15:02.914 2024-02-27 21:15:02.914 1000 STREAM 141924 20901 6090389 2024-02-27 21:16:02.947 2024-02-27 21:16:02.947 1000 STREAM 141924 21532 6090398 2024-02-27 21:17:02.936 2024-02-27 21:17:02.936 1000 STREAM 141924 12976 6090406 2024-02-27 21:18:02.946 2024-02-27 21:18:02.946 1000 STREAM 141924 2233 6090435 2024-02-27 21:19:02.926 2024-02-27 21:19:02.926 1000 STREAM 141924 16816 6090455 2024-02-27 21:21:02.94 2024-02-27 21:21:02.94 1000 STREAM 141924 8713 6090460 2024-02-27 21:23:02.931 2024-02-27 21:23:02.931 1000 STREAM 141924 889 6090465 2024-02-27 21:24:02.941 2024-02-27 21:24:02.941 1000 STREAM 141924 19826 6090496 2024-02-27 21:29:03.014 2024-02-27 21:29:03.014 1000 STREAM 141924 1717 6090530 2024-02-27 21:31:03.01 2024-02-27 21:31:03.01 1000 STREAM 141924 9348 6090584 2024-02-27 21:37:03.064 2024-02-27 21:37:03.064 1000 STREAM 141924 1401 6090611 2024-02-27 21:41:03.102 2024-02-27 21:41:03.102 1000 STREAM 141924 20751 6090621 2024-02-27 21:43:03.13 2024-02-27 21:43:03.13 1000 STREAM 141924 1175 6090626 2024-02-27 21:44:03.117 2024-02-27 21:44:03.117 1000 STREAM 141924 1273 6090645 2024-02-27 21:47:03.152 2024-02-27 21:47:03.152 1000 STREAM 141924 1881 6090649 2024-02-27 21:48:03.146 2024-02-27 21:48:03.146 1000 STREAM 141924 1814 6090666 2024-02-27 21:49:03.163 2024-02-27 21:49:03.163 1000 STREAM 141924 19537 6090685 2024-02-27 21:52:03.163 2024-02-27 21:52:03.163 1000 STREAM 141924 749 6090688 2024-02-27 21:53:03.184 2024-02-27 21:53:03.184 1000 STREAM 141924 21051 6090722 2024-02-27 21:57:03.198 2024-02-27 21:57:03.198 1000 STREAM 141924 20509 6090723 2024-02-27 21:58:03.208 2024-02-27 21:58:03.208 1000 STREAM 141924 20454 6090743 2024-02-27 22:03:03.231 2024-02-27 22:03:03.231 1000 STREAM 141924 21047 6090752 2024-02-27 22:06:03.248 2024-02-27 22:06:03.248 1000 STREAM 141924 2460 6090754 2024-02-27 22:07:03.245 2024-02-27 22:07:03.245 1000 STREAM 141924 20623 6090783 2024-02-27 22:10:03.269 2024-02-27 22:10:03.269 1000 STREAM 141924 11716 6090798 2024-02-27 22:12:03.29 2024-02-27 22:12:03.29 1000 STREAM 141924 17227 6090801 2024-02-27 22:13:03.286 2024-02-27 22:13:03.286 1000 STREAM 141924 20990 6090809 2024-02-27 22:14:03.291 2024-02-27 22:14:03.291 1000 STREAM 141924 8245 6090812 2024-02-27 22:15:03.285 2024-02-27 22:15:03.285 1000 STREAM 141924 1705 6090818 2024-02-27 22:16:03.301 2024-02-27 22:16:03.301 1000 STREAM 141924 20606 6090823 2024-02-27 22:18:03.304 2024-02-27 22:18:03.304 1000 STREAM 141924 7097 6090879 2024-02-27 22:21:03.341 2024-02-27 22:21:03.341 1000 STREAM 141924 712 6090899 2024-02-27 22:24:03.347 2024-02-27 22:24:03.347 1000 STREAM 141924 16788 6090914 2024-02-27 22:26:03.377 2024-02-27 22:26:03.377 1000 STREAM 141924 12606 6090942 2024-02-27 22:27:03.383 2024-02-27 22:27:03.383 1000 STREAM 141924 11897 6091002 2024-02-27 22:31:03.386 2024-02-27 22:31:03.386 1000 STREAM 141924 11648 6091006 2024-02-27 22:33:03.401 2024-02-27 22:33:03.401 1000 STREAM 141924 12175 6091013 2024-02-27 22:36:03.417 2024-02-27 22:36:03.417 1000 STREAM 141924 1064 6091027 2024-02-27 22:38:03.44 2024-02-27 22:38:03.44 1000 STREAM 141924 21088 6091044 2024-02-27 22:40:03.438 2024-02-27 22:40:03.438 1000 STREAM 141924 21391 6091051 2024-02-27 22:41:03.445 2024-02-27 22:41:03.445 1000 STREAM 141924 15719 6091056 2024-02-27 22:42:03.459 2024-02-27 22:42:03.459 1000 STREAM 141924 12049 6091121 2024-02-27 22:47:03.504 2024-02-27 22:47:03.504 1000 STREAM 141924 18751 6091136 2024-02-27 22:49:03.508 2024-02-27 22:49:03.508 1000 STREAM 141924 19527 6090250 2024-02-27 21:02:12.667 2024-02-27 21:02:12.667 1000 FEE 441091 6578 6090257 2024-02-27 21:04:25.45 2024-02-27 21:04:25.45 1000 FEE 441087 739 6090258 2024-02-27 21:04:25.45 2024-02-27 21:04:25.45 9000 TIP 441087 963 6090298 2024-02-27 21:08:04.246 2024-02-27 21:08:04.246 7100 FEE 440692 10007 6090299 2024-02-27 21:08:04.246 2024-02-27 21:08:04.246 63900 TIP 440692 21228 6090312 2024-02-27 21:08:28.205 2024-02-27 21:08:28.205 800 FEE 440988 18154 6090313 2024-02-27 21:08:28.205 2024-02-27 21:08:28.205 7200 TIP 440988 15161 6090323 2024-02-27 21:08:55.825 2024-02-27 21:08:55.825 1000 FEE 441096 5904 6090328 2024-02-27 21:09:46.811 2024-02-27 21:09:46.811 1000 FEE 441098 11458 6090336 2024-02-27 21:10:09.324 2024-02-27 21:10:09.324 4000 FEE 441088 14774 6090337 2024-02-27 21:10:09.324 2024-02-27 21:10:09.324 36000 TIP 441088 21138 6090338 2024-02-27 21:10:13.574 2024-02-27 21:10:13.574 800 FEE 441011 14278 6090339 2024-02-27 21:10:13.574 2024-02-27 21:10:13.574 7200 TIP 441011 9341 6090349 2024-02-27 21:11:42.29 2024-02-27 21:11:42.29 800 FEE 440966 15386 6090350 2024-02-27 21:11:42.29 2024-02-27 21:11:42.29 7200 TIP 440966 2326 6090371 2024-02-27 21:14:30.159 2024-02-27 21:14:30.159 1000 FEE 441091 20102 6090372 2024-02-27 21:14:30.159 2024-02-27 21:14:30.159 9000 TIP 441091 21547 6090385 2024-02-27 21:15:38.943 2024-02-27 21:15:38.943 100 FEE 441092 18743 6090386 2024-02-27 21:15:38.943 2024-02-27 21:15:38.943 900 TIP 441092 21091 6090390 2024-02-27 21:16:36.25 2024-02-27 21:16:36.25 100000 FEE 441098 18072 6090391 2024-02-27 21:16:36.25 2024-02-27 21:16:36.25 900000 TIP 441098 13246 6090441 2024-02-27 21:19:12.159 2024-02-27 21:19:12.159 2100 FEE 440916 1261 6090442 2024-02-27 21:19:12.159 2024-02-27 21:19:12.159 18900 TIP 440916 9084 6090528 2024-02-27 21:30:39.929 2024-02-27 21:30:39.929 1000 FEE 441107 4378 6090529 2024-02-27 21:30:39.929 2024-02-27 21:30:39.929 9000 TIP 441107 17171 6090532 2024-02-27 21:32:54.849 2024-02-27 21:32:54.849 1000 FEE 441118 7587 6090533 2024-02-27 21:32:54.849 2024-02-27 21:32:54.849 9000 TIP 441118 19572 6090538 2024-02-27 21:32:55.328 2024-02-27 21:32:55.328 1000 FEE 441118 6382 6090539 2024-02-27 21:32:55.328 2024-02-27 21:32:55.328 9000 TIP 441118 2711 6090569 2024-02-27 21:36:02.55 2024-02-27 21:36:02.55 1000 FEE 441007 1224 6090570 2024-02-27 21:36:02.55 2024-02-27 21:36:02.55 9000 TIP 441007 698 6090572 2024-02-27 21:36:07.247 2024-02-27 21:36:07.247 1000 FEE 441126 21541 6090582 2024-02-27 21:36:39.521 2024-02-27 21:36:39.521 1000 FEE 441120 4126 6090583 2024-02-27 21:36:39.521 2024-02-27 21:36:39.521 9000 TIP 441120 10484 6090588 2024-02-27 21:37:11.719 2024-02-27 21:37:11.719 10100 FEE 440998 1740 6090589 2024-02-27 21:37:11.719 2024-02-27 21:37:11.719 90900 TIP 440998 20788 6090597 2024-02-27 21:39:16.097 2024-02-27 21:39:16.097 100 FEE 440898 3411 6090598 2024-02-27 21:39:16.097 2024-02-27 21:39:16.097 900 TIP 440898 16447 6090617 2024-02-27 21:43:01.157 2024-02-27 21:43:01.157 100 FEE 441087 6191 6090618 2024-02-27 21:43:01.157 2024-02-27 21:43:01.157 900 TIP 441087 21571 6090619 2024-02-27 21:43:01.577 2024-02-27 21:43:01.577 900 FEE 441087 13553 6090620 2024-02-27 21:43:01.577 2024-02-27 21:43:01.577 8100 TIP 441087 683 6090624 2024-02-27 21:43:49.377 2024-02-27 21:43:49.377 3000 FEE 440898 20073 6090625 2024-02-27 21:43:49.377 2024-02-27 21:43:49.377 27000 TIP 440898 11523 6090630 2024-02-27 21:45:23.011 2024-02-27 21:45:23.011 700 FEE 440898 11144 6090631 2024-02-27 21:45:23.011 2024-02-27 21:45:23.011 6300 TIP 440898 1959 6090657 2024-02-27 21:48:29.543 2024-02-27 21:48:29.543 2100 FEE 440889 10934 6090658 2024-02-27 21:48:29.543 2024-02-27 21:48:29.543 18900 TIP 440889 16942 6090669 2024-02-27 21:49:05.827 2024-02-27 21:49:05.827 1000 FEE 441140 18772 6090295 2024-02-27 21:07:31.123 2024-02-27 21:07:31.123 800 FEE 440633 12959 6090296 2024-02-27 21:07:31.123 2024-02-27 21:07:31.123 7200 TIP 440633 1519 6090310 2024-02-27 21:08:24.456 2024-02-27 21:08:24.456 100 FEE 440604 9356 6090311 2024-02-27 21:08:24.456 2024-02-27 21:08:24.456 900 TIP 440604 19812 6090319 2024-02-27 21:08:34.265 2024-02-27 21:08:34.265 100 FEE 440686 6202 6090320 2024-02-27 21:08:34.265 2024-02-27 21:08:34.265 900 TIP 440686 7746 6090327 2024-02-27 21:09:12.516 2024-02-27 21:09:12.516 1000 FEE 441097 6268 6090363 2024-02-27 21:13:21.345 2024-02-27 21:13:21.345 1700 FEE 440700 21058 6090364 2024-02-27 21:13:21.345 2024-02-27 21:13:21.345 15300 TIP 440700 8459 6090378 2024-02-27 21:15:09.628 2024-02-27 21:15:09.628 1100 FEE 440898 15386 6090379 2024-02-27 21:15:09.628 2024-02-27 21:15:09.628 9900 TIP 440898 21022 6090403 2024-02-27 21:17:39.662 2024-02-27 21:17:39.662 10000 FEE 441087 18116 6090404 2024-02-27 21:17:39.662 2024-02-27 21:17:39.662 90000 TIP 441087 16879 6090427 2024-02-27 21:18:50.475 2024-02-27 21:18:50.475 2100 FEE 440988 12097 6090428 2024-02-27 21:18:50.475 2024-02-27 21:18:50.475 18900 TIP 440988 20301 6090436 2024-02-27 21:19:03.714 2024-02-27 21:19:03.714 1000 FEE 441109 900 6090437 2024-02-27 21:19:07.514 2024-02-27 21:19:07.514 2100 FEE 440899 20454 6090438 2024-02-27 21:19:07.514 2024-02-27 21:19:07.514 18900 TIP 440899 20376 6090445 2024-02-27 21:19:15.33 2024-02-27 21:19:15.33 1000 POLL 441054 19500 6090446 2024-02-27 21:19:18.006 2024-02-27 21:19:18.006 2100 FEE 441067 3396 6090447 2024-02-27 21:19:18.006 2024-02-27 21:19:18.006 18900 TIP 441067 14774 6090448 2024-02-27 21:19:22.159 2024-02-27 21:19:22.159 100 FEE 440128 20892 6090449 2024-02-27 21:19:22.159 2024-02-27 21:19:22.159 900 TIP 440128 20973 6090476 2024-02-27 21:27:10.433 2024-02-27 21:27:10.433 10000 FEE 440898 19905 6090477 2024-02-27 21:27:10.433 2024-02-27 21:27:10.433 90000 TIP 440898 18402 6090483 2024-02-27 21:28:00.386 2024-02-27 21:28:00.386 0 FEE 441117 16649 6090487 2024-02-27 21:28:06.958 2024-02-27 21:28:06.958 2100 FEE 440891 14258 6090488 2024-02-27 21:28:06.958 2024-02-27 21:28:06.958 18900 TIP 440891 1316 6090501 2024-02-27 21:30:25.935 2024-02-27 21:30:25.935 1000 FEE 441120 20306 6090506 2024-02-27 21:30:32.282 2024-02-27 21:30:32.282 1100 FEE 440692 13076 6090507 2024-02-27 21:30:32.282 2024-02-27 21:30:32.282 9900 TIP 440692 17693 6090514 2024-02-27 21:30:36.897 2024-02-27 21:30:36.897 1000 FEE 441107 18994 6090515 2024-02-27 21:30:36.897 2024-02-27 21:30:36.897 9000 TIP 441107 11938 6090544 2024-02-27 21:32:55.818 2024-02-27 21:32:55.818 1000 FEE 441118 6160 6090545 2024-02-27 21:32:55.818 2024-02-27 21:32:55.818 9000 TIP 441118 1401 6090549 2024-02-27 21:33:09.061 2024-02-27 21:33:09.061 1000 FEE 441121 19809 6090317 2024-02-27 21:08:32.587 2024-02-27 21:08:32.587 100 FEE 440646 21491 6090318 2024-02-27 21:08:32.587 2024-02-27 21:08:32.587 900 TIP 440646 14168 6090340 2024-02-27 21:10:29.168 2024-02-27 21:10:29.168 1000 FEE 441099 11829 6090341 2024-02-27 21:10:43.087 2024-02-27 21:10:43.087 4000 FEE 440641 12097 6090342 2024-02-27 21:10:43.087 2024-02-27 21:10:43.087 36000 TIP 440641 7682 6090346 2024-02-27 21:11:37.267 2024-02-27 21:11:37.267 800 FEE 440909 19189 6090347 2024-02-27 21:11:37.267 2024-02-27 21:11:37.267 7200 TIP 440909 7674 6090387 2024-02-27 21:15:54.576 2024-02-27 21:15:54.576 10000 FEE 441075 21343 6090388 2024-02-27 21:15:54.576 2024-02-27 21:15:54.576 90000 TIP 441075 661 6090392 2024-02-27 21:16:57.295 2024-02-27 21:16:57.295 1200 FEE 440692 17209 6090393 2024-02-27 21:16:57.295 2024-02-27 21:16:57.295 10800 TIP 440692 21274 6090394 2024-02-27 21:16:57.715 2024-02-27 21:16:57.715 2100 FEE 441077 4391 6090395 2024-02-27 21:16:57.715 2024-02-27 21:16:57.715 18900 TIP 441077 20291 6090401 2024-02-27 21:17:30.666 2024-02-27 21:17:30.666 1000 FEE 441104 16808 6090413 2024-02-27 21:18:26.837 2024-02-27 21:18:26.837 2100 FEE 440936 19633 6090414 2024-02-27 21:18:26.837 2024-02-27 21:18:26.837 18900 TIP 440936 4763 6090421 2024-02-27 21:18:41.334 2024-02-27 21:18:41.334 2100 FEE 440959 20062 6090422 2024-02-27 21:18:41.334 2024-02-27 21:18:41.334 18900 TIP 440959 20969 6090429 2024-02-27 21:18:54.371 2024-02-27 21:18:54.371 2100 FEE 441054 8544 6090430 2024-02-27 21:18:54.371 2024-02-27 21:18:54.371 18900 TIP 441054 1602 6090475 2024-02-27 21:27:04.199 2024-02-27 21:27:04.199 1000 FEE 441117 18454 6090489 2024-02-27 21:28:12.801 2024-02-27 21:28:12.801 2100 FEE 440989 13246 6090490 2024-02-27 21:28:12.801 2024-02-27 21:28:12.801 18900 TIP 440989 9353 6090491 2024-02-27 21:28:15.658 2024-02-27 21:28:15.658 2100 FEE 441077 20776 6090492 2024-02-27 21:28:15.658 2024-02-27 21:28:15.658 18900 TIP 441077 4819 6090494 2024-02-27 21:28:30.283 2024-02-27 21:28:30.283 2100 FEE 440943 16329 6090495 2024-02-27 21:28:30.283 2024-02-27 21:28:30.283 18900 TIP 440943 18774 6090540 2024-02-27 21:32:55.519 2024-02-27 21:32:55.519 1000 FEE 441118 18241 6090541 2024-02-27 21:32:55.519 2024-02-27 21:32:55.519 9000 TIP 441118 9084 6090565 2024-02-27 21:35:54.626 2024-02-27 21:35:54.626 1000 FEE 441000 12946 6090566 2024-02-27 21:35:54.626 2024-02-27 21:35:54.626 9000 TIP 441000 1618 6090586 2024-02-27 21:37:11.236 2024-02-27 21:37:11.236 1000 FEE 441041 6594 6090587 2024-02-27 21:37:11.236 2024-02-27 21:37:11.236 9000 TIP 441041 673 6090591 2024-02-27 21:37:41.104 2024-02-27 21:37:41.104 800 FEE 441126 21418 6090592 2024-02-27 21:37:41.104 2024-02-27 21:37:41.104 7200 TIP 441126 20006 6090594 2024-02-27 21:38:10.063 2024-02-27 21:38:10.063 1000 FEE 441003 6268 6090595 2024-02-27 21:38:10.063 2024-02-27 21:38:10.063 9000 TIP 441003 1472 6090605 2024-02-27 21:39:20.998 2024-02-27 21:39:20.998 900 FEE 441102 20597 6090606 2024-02-27 21:39:20.998 2024-02-27 21:39:20.998 8100 TIP 441102 21523 6090614 2024-02-27 21:41:28.851 2024-02-27 21:41:28.851 1000 FEE 441133 2735 6090647 2024-02-27 21:47:42.093 2024-02-27 21:47:42.093 5000 FEE 440911 15336 6090648 2024-02-27 21:47:42.093 2024-02-27 21:47:42.093 45000 TIP 440911 18453 6090650 2024-02-27 21:48:12.108 2024-02-27 21:48:12.108 1000 FEE 441138 11820 6090667 2024-02-27 21:49:05.422 2024-02-27 21:49:05.422 2500 FEE 441002 16424 6090668 2024-02-27 21:49:05.422 2024-02-27 21:49:05.422 22500 TIP 441002 9335 6090681 2024-02-27 21:51:25.961 2024-02-27 21:51:25.961 4000 FEE 441141 21070 6090682 2024-02-27 21:51:25.961 2024-02-27 21:51:25.961 36000 TIP 441141 15139 6090684 2024-02-27 21:51:57.399 2024-02-27 21:51:57.399 1000 FEE 441143 946 6090695 2024-02-27 21:53:38.317 2024-02-27 21:53:38.317 2100 FEE 440550 18494 6090696 2024-02-27 21:53:38.317 2024-02-27 21:53:38.317 18900 TIP 440550 12218 6090729 2024-02-27 21:59:20.647 2024-02-27 21:59:20.647 2100 FEE 440291 12272 6090730 2024-02-27 21:59:20.647 2024-02-27 21:59:20.647 18900 TIP 440291 5757 6090731 2024-02-27 21:59:50.672 2024-02-27 21:59:50.672 2100 FEE 440898 683 6090732 2024-02-27 21:59:50.672 2024-02-27 21:59:50.672 18900 TIP 440898 21575 6090739 2024-02-27 22:01:06.421 2024-02-27 22:01:06.421 21000 FEE 441147 19292 6090744 2024-02-27 22:03:26.985 2024-02-27 22:03:26.985 1000 FEE 441150 20987 6090747 2024-02-27 22:03:58.178 2024-02-27 22:03:58.178 5000 FEE 441147 876 6090748 2024-02-27 22:03:58.178 2024-02-27 22:03:58.178 45000 TIP 441147 20490 6090757 2024-02-27 22:07:55.449 2024-02-27 22:07:55.449 2100 FEE 441114 2232 6090758 2024-02-27 22:07:55.449 2024-02-27 22:07:55.449 18900 TIP 441114 19502 6090786 2024-02-27 22:10:24.441 2024-02-27 22:10:24.441 1000 FEE 441154 16948 6090790 2024-02-27 22:10:53.682 2024-02-27 22:10:53.682 2100 FEE 440898 8664 6090791 2024-02-27 22:10:53.682 2024-02-27 22:10:53.682 18900 TIP 440898 21136 6090827 2024-02-27 22:19:46.242 2024-02-27 22:19:46.242 100000 FEE 441159 6700 6090838 2024-02-27 22:19:47.901 2024-02-27 22:19:47.901 1000 FEE 440898 10016 6090839 2024-02-27 22:19:47.901 2024-02-27 22:19:47.901 9000 TIP 440898 1145 6090874 2024-02-27 22:19:51.818 2024-02-27 22:19:51.818 1000 FEE 440898 19488 6090875 2024-02-27 22:19:51.818 2024-02-27 22:19:51.818 9000 TIP 440898 15732 6090880 2024-02-27 22:21:05.509 2024-02-27 22:21:05.509 1000 FEE 441160 6594 6090884 2024-02-27 22:22:21.218 2024-02-27 22:22:21.218 7700 FEE 441124 1298 6090885 2024-02-27 22:22:21.218 2024-02-27 22:22:21.218 69300 TIP 441124 13547 6090904 2024-02-27 22:24:31.12 2024-02-27 22:24:31.12 1000 FEE 441162 644 6090957 2024-02-27 22:28:09.788 2024-02-27 22:28:09.788 3300 FEE 441130 21523 6090958 2024-02-27 22:28:09.788 2024-02-27 22:28:09.788 29700 TIP 441130 19572 6090998 2024-02-27 22:30:17.972 2024-02-27 22:30:17.972 1000 FEE 441167 8360 6091008 2024-02-27 22:33:49.082 2024-02-27 22:33:49.082 1000 FEE 441171 15719 6091011 2024-02-27 22:34:06.265 2024-02-27 22:34:06.265 0 FEE 441171 20254 6091014 2024-02-27 22:36:08.361 2024-02-27 22:36:08.361 1000 FEE 441172 19158 6091054 2024-02-27 22:41:45.143 2024-02-27 22:41:45.143 1000 FEE 441179 2963 6091059 2024-02-27 22:42:29.337 2024-02-27 22:42:29.337 5000 FEE 441169 21571 6091060 2024-02-27 22:42:29.337 2024-02-27 22:42:29.337 45000 TIP 441169 17050 6091065 2024-02-27 22:43:24.708 2024-02-27 22:43:24.708 10000 FEE 441124 688 6091066 2024-02-27 22:43:24.708 2024-02-27 22:43:24.708 90000 TIP 441124 20756 6091073 2024-02-27 22:43:37.989 2024-02-27 22:43:37.989 1000 FEE 440622 20036 6091074 2024-02-27 22:43:37.989 2024-02-27 22:43:37.989 9000 TIP 440622 16680 6091141 2024-02-27 22:49:09.311 2024-02-27 22:49:09.311 200 FEE 441078 5520 6091142 2024-02-27 22:49:09.311 2024-02-27 22:49:09.311 1800 TIP 441078 11145 6090331 2024-02-27 21:10:01.583 2024-02-27 21:10:01.583 800 FEE 441019 18470 6090332 2024-02-27 21:10:01.583 2024-02-27 21:10:01.583 7200 TIP 441019 4388 6090334 2024-02-27 21:10:08.803 2024-02-27 21:10:08.803 4000 FEE 441096 12774 6090335 2024-02-27 21:10:08.803 2024-02-27 21:10:08.803 36000 TIP 441096 20264 6090351 2024-02-27 21:11:58.433 2024-02-27 21:11:58.433 1000 FEE 441100 15100 6090366 2024-02-27 21:13:52.373 2024-02-27 21:13:52.373 0 FEE 441098 21393 6090373 2024-02-27 21:14:40.081 2024-02-27 21:14:40.081 100 FEE 441019 9496 6090374 2024-02-27 21:14:40.081 2024-02-27 21:14:40.081 900 TIP 441019 21201 6090382 2024-02-27 21:15:26.48 2024-02-27 21:15:26.48 10000 FEE 440863 2016 6090383 2024-02-27 21:15:26.48 2024-02-27 21:15:26.48 90000 TIP 440863 20979 6090384 2024-02-27 21:15:29.662 2024-02-27 21:15:29.662 1000 FEE 441103 2576 6090411 2024-02-27 21:18:24.879 2024-02-27 21:18:24.879 2100 FEE 441077 4768 6090412 2024-02-27 21:18:24.879 2024-02-27 21:18:24.879 18900 TIP 441077 10484 6090466 2024-02-27 21:24:27.938 2024-02-27 21:24:27.938 0 FEE 441115 14857 6090469 2024-02-27 21:26:13.31 2024-02-27 21:26:13.31 100000 FEE 441002 828 6090470 2024-02-27 21:26:13.31 2024-02-27 21:26:13.31 900000 TIP 441002 11716 6090471 2024-02-27 21:26:44.632 2024-02-27 21:26:44.632 1600 FEE 441036 1490 6090472 2024-02-27 21:26:44.632 2024-02-27 21:26:44.632 14400 TIP 441036 19030 6090497 2024-02-27 21:29:16.397 2024-02-27 21:29:16.397 100 FEE 342249 5497 6090498 2024-02-27 21:29:16.397 2024-02-27 21:29:16.397 900 TIP 342249 3409 6090502 2024-02-27 21:30:29.315 2024-02-27 21:30:29.315 2100 FEE 441113 21242 6090503 2024-02-27 21:30:29.315 2024-02-27 21:30:29.315 18900 TIP 441113 18051 6090518 2024-02-27 21:30:37.685 2024-02-27 21:30:37.685 1000 FEE 441107 2942 6090519 2024-02-27 21:30:37.685 2024-02-27 21:30:37.685 9000 TIP 441107 8535 6090534 2024-02-27 21:32:54.991 2024-02-27 21:32:54.991 1000 FEE 441118 19281 6090535 2024-02-27 21:32:54.991 2024-02-27 21:32:54.991 9000 TIP 441118 11609 6090553 2024-02-27 21:33:31.392 2024-02-27 21:33:31.392 4000 FEE 441118 13143 6090554 2024-02-27 21:33:31.392 2024-02-27 21:33:31.392 36000 TIP 441118 21064 6090578 2024-02-27 21:36:36.692 2024-02-27 21:36:36.692 800 FEE 441118 21472 6090579 2024-02-27 21:36:36.692 2024-02-27 21:36:36.692 7200 TIP 441118 1354 6090599 2024-02-27 21:39:17.58 2024-02-27 21:39:17.58 4000 FEE 441124 18836 6090600 2024-02-27 21:39:17.58 2024-02-27 21:39:17.58 36000 TIP 441124 5961 6090628 2024-02-27 21:45:10.588 2024-02-27 21:45:10.588 2100 FEE 440622 5746 6090629 2024-02-27 21:45:10.588 2024-02-27 21:45:10.588 18900 TIP 440622 21212 6090639 2024-02-27 21:45:59.975 2024-02-27 21:45:59.975 2100 FEE 441116 16357 6090640 2024-02-27 21:45:59.975 2024-02-27 21:45:59.975 18900 TIP 441116 19031 6090646 2024-02-27 21:47:40.694 2024-02-27 21:47:40.694 100000 FEE 441137 1307 6090655 2024-02-27 21:48:28.12 2024-02-27 21:48:28.12 2100 FEE 440739 660 6090656 2024-02-27 21:48:28.12 2024-02-27 21:48:28.12 18900 TIP 440739 21022 6090663 2024-02-27 21:48:43.726 2024-02-27 21:48:43.726 100000 FEE 441139 14168 6090676 2024-02-27 21:50:53.828 2024-02-27 21:50:53.828 6900 FEE 441136 20564 6090677 2024-02-27 21:50:53.828 2024-02-27 21:50:53.828 62100 TIP 441136 20153 6090742 2024-02-27 22:02:58.495 2024-02-27 22:02:58.495 1000 FEE 441149 17001 6090770 2024-02-27 22:08:38.455 2024-02-27 22:08:38.455 100 FEE 440947 21242 6090771 2024-02-27 22:08:38.455 2024-02-27 22:08:38.455 900 TIP 440947 9552 6090799 2024-02-27 22:12:32.456 2024-02-27 22:12:32.456 7700 FEE 441094 627 6090800 2024-02-27 22:12:32.456 2024-02-27 22:12:32.456 69300 TIP 441094 20353 6090802 2024-02-27 22:13:28.12 2024-02-27 22:13:28.12 1000 FEE 441156 20495 6090813 2024-02-27 22:15:39.266 2024-02-27 22:15:39.266 10000 FEE 441035 18472 6090814 2024-02-27 22:15:39.266 2024-02-27 22:15:39.266 90000 TIP 441035 20452 6090824 2024-02-27 22:18:07.346 2024-02-27 22:18:07.346 3500 FEE 441157 3360 6090825 2024-02-27 22:18:07.346 2024-02-27 22:18:07.346 31500 TIP 441157 21356 6090830 2024-02-27 22:19:47.229 2024-02-27 22:19:47.229 1000 FEE 440898 16562 6090831 2024-02-27 22:19:47.229 2024-02-27 22:19:47.229 9000 TIP 440898 19633 6090832 2024-02-27 22:19:47.401 2024-02-27 22:19:47.401 1000 FEE 440898 13782 6090833 2024-02-27 22:19:47.401 2024-02-27 22:19:47.401 9000 TIP 440898 2042 6090840 2024-02-27 22:19:48.064 2024-02-27 22:19:48.064 1000 FEE 440898 20267 6090841 2024-02-27 22:19:48.064 2024-02-27 22:19:48.064 9000 TIP 440898 18178 6090858 2024-02-27 22:19:49.498 2024-02-27 22:19:49.498 1000 FEE 440898 21563 6090859 2024-02-27 22:19:49.498 2024-02-27 22:19:49.498 9000 TIP 440898 19668 6090862 2024-02-27 22:19:49.815 2024-02-27 22:19:49.815 1000 FEE 440898 1120 6090863 2024-02-27 22:19:49.815 2024-02-27 22:19:49.815 9000 TIP 440898 3440 6090886 2024-02-27 22:22:21.387 2024-02-27 22:22:21.387 15400 FEE 441124 6765 6090887 2024-02-27 22:22:21.387 2024-02-27 22:22:21.387 138600 TIP 441124 2256 6090893 2024-02-27 22:23:21.288 2024-02-27 22:23:21.288 10000 FEE 441027 8176 6090894 2024-02-27 22:23:21.288 2024-02-27 22:23:21.288 90000 TIP 441027 20190 6090896 2024-02-27 22:23:42.63 2024-02-27 22:23:42.63 1000 FEE 441161 21033 6090906 2024-02-27 22:24:39.391 2024-02-27 22:24:39.391 1000 FEE 441164 20987 6090915 2024-02-27 22:26:03.644 2024-02-27 22:26:03.644 1000 POLL 440725 617 6090916 2024-02-27 22:26:10.518 2024-02-27 22:26:10.518 1000 POLL 440725 1478 6090927 2024-02-27 22:26:42.696 2024-02-27 22:26:42.696 7700 FEE 441070 12368 6090928 2024-02-27 22:26:42.696 2024-02-27 22:26:42.696 69300 TIP 441070 18219 6090972 2024-02-27 22:29:02.949 2024-02-27 22:29:02.949 3300 FEE 441139 21166 6090973 2024-02-27 22:29:02.949 2024-02-27 22:29:02.949 29700 TIP 441139 21338 6090986 2024-02-27 22:30:04.603 2024-02-27 22:30:04.603 10000 FEE 441002 1439 6090987 2024-02-27 22:30:04.603 2024-02-27 22:30:04.603 90000 TIP 441002 20185 6090990 2024-02-27 22:30:14.198 2024-02-27 22:30:14.198 1000 FEE 440988 18581 6090991 2024-02-27 22:30:14.198 2024-02-27 22:30:14.198 9000 TIP 440988 12188 6091031 2024-02-27 22:38:34.996 2024-02-27 22:38:34.996 1000 FEE 441177 2529 6091049 2024-02-27 22:40:34.838 2024-02-27 22:40:34.838 1100 FEE 441171 13781 6091050 2024-02-27 22:40:34.838 2024-02-27 22:40:34.838 9900 TIP 441171 20073 6091085 2024-02-27 22:43:59.621 2024-02-27 22:43:59.621 1000 FEE 441184 18731 6091088 2024-02-27 22:44:02.787 2024-02-27 22:44:02.787 1000 FEE 440764 16679 6091089 2024-02-27 22:44:02.787 2024-02-27 22:44:02.787 9000 TIP 440764 21332 6091128 2024-02-27 22:48:01.835 2024-02-27 22:48:01.835 2100 FEE 441169 18138 6091129 2024-02-27 22:48:01.835 2024-02-27 22:48:01.835 18900 TIP 441169 956 6091139 2024-02-27 22:49:07.2 2024-02-27 22:49:07.2 1000 FEE 440902 7682 6091140 2024-02-27 22:49:07.2 2024-02-27 22:49:07.2 9000 TIP 440902 20788 6091145 2024-02-27 22:49:22.632 2024-02-27 22:49:22.632 1000 FEE 441191 15544 6091180 2024-02-27 22:51:58.329 2024-02-27 22:51:58.329 6900 FEE 441174 11821 6091181 2024-02-27 22:51:58.329 2024-02-27 22:51:58.329 62100 TIP 441174 7583 6091209 2024-02-27 22:53:24.743 2024-02-27 22:53:24.743 900 FEE 441154 15336 6091210 2024-02-27 22:53:24.743 2024-02-27 22:53:24.743 8100 TIP 441154 7389 6091241 2024-02-27 22:58:05.993 2024-02-27 22:58:05.993 1000 FEE 441204 9166 6091245 2024-02-27 22:58:13.499 2024-02-27 22:58:13.499 1500 FEE 441189 21064 6091246 2024-02-27 22:58:13.499 2024-02-27 22:58:13.499 13500 TIP 441189 19652 6091261 2024-02-27 22:58:50.025 2024-02-27 22:58:50.025 1300 FEE 441038 19007 6091262 2024-02-27 22:58:50.025 2024-02-27 22:58:50.025 11700 TIP 441038 3717 6091273 2024-02-27 22:58:51.602 2024-02-27 22:58:51.602 1300 FEE 441038 6041 6091274 2024-02-27 22:58:51.602 2024-02-27 22:58:51.602 11700 TIP 441038 1221 6091283 2024-02-27 22:58:55.578 2024-02-27 22:58:55.578 1300 FEE 441038 14015 6091284 2024-02-27 22:58:55.578 2024-02-27 22:58:55.578 11700 TIP 441038 1845 6090353 2024-02-27 21:12:27.201 2024-02-27 21:12:27.201 3000 FEE 440906 20299 6090354 2024-02-27 21:12:27.201 2024-02-27 21:12:27.201 27000 TIP 440906 2639 6090361 2024-02-27 21:13:12.579 2024-02-27 21:13:12.579 300 FEE 440979 7185 6090362 2024-02-27 21:13:12.579 2024-02-27 21:13:12.579 2700 TIP 440979 17237 6090399 2024-02-27 21:17:13.527 2024-02-27 21:17:13.527 4000 FEE 441077 18865 6090400 2024-02-27 21:17:13.527 2024-02-27 21:17:13.527 36000 TIP 441077 15588 6090405 2024-02-27 21:18:01.953 2024-02-27 21:18:01.953 1000 FEE 441106 20713 6090415 2024-02-27 21:18:27.032 2024-02-27 21:18:27.032 100 FEE 440446 756 6090416 2024-02-27 21:18:27.032 2024-02-27 21:18:27.032 900 TIP 440446 19924 6090433 2024-02-27 21:18:58.875 2024-02-27 21:18:58.875 2100 FEE 440898 14015 6090434 2024-02-27 21:18:58.875 2024-02-27 21:18:58.875 18900 TIP 440898 19770 6090450 2024-02-27 21:19:26.716 2024-02-27 21:19:26.716 1000 FEE 441110 18378 6090454 2024-02-27 21:20:40.125 2024-02-27 21:20:40.125 1000 FEE 441112 19417 6090458 2024-02-27 21:22:40.991 2024-02-27 21:22:40.991 1600 FEE 440989 4313 6090459 2024-02-27 21:22:40.991 2024-02-27 21:22:40.991 14400 TIP 440989 20963 6090461 2024-02-27 21:23:13.006 2024-02-27 21:23:13.006 100 FEE 440772 18072 6090462 2024-02-27 21:23:13.006 2024-02-27 21:23:13.006 900 TIP 440772 7510 6090473 2024-02-27 21:26:55.446 2024-02-27 21:26:55.446 10000 FEE 441116 18291 6090478 2024-02-27 21:27:11.348 2024-02-27 21:27:11.348 4000 FEE 440472 9796 6090479 2024-02-27 21:27:11.348 2024-02-27 21:27:11.348 36000 TIP 440472 19142 6090484 2024-02-27 21:28:02.093 2024-02-27 21:28:02.093 2100 FEE 440985 21332 6090485 2024-02-27 21:28:02.093 2024-02-27 21:28:02.093 18900 TIP 440985 836 6090493 2024-02-27 21:28:15.683 2024-02-27 21:28:15.683 100000 FEE 441118 20163 6090536 2024-02-27 21:32:55.159 2024-02-27 21:32:55.159 1000 FEE 441118 21343 6090537 2024-02-27 21:32:55.159 2024-02-27 21:32:55.159 9000 TIP 441118 16424 6090563 2024-02-27 21:35:19.564 2024-02-27 21:35:19.564 0 FEE 441124 5449 6090560 2024-02-27 21:34:59.896 2024-02-27 21:34:59.896 21100 FEE 440622 794 6090561 2024-02-27 21:34:59.896 2024-02-27 21:34:59.896 189900 TIP 440622 11153 6090574 2024-02-27 21:36:34.397 2024-02-27 21:36:34.397 1000 FEE 441128 16229 6090585 2024-02-27 21:37:03.593 2024-02-27 21:37:03.593 100000 FEE 441130 15556 6090603 2024-02-27 21:39:20.833 2024-02-27 21:39:20.833 100 FEE 441102 11075 6090604 2024-02-27 21:39:20.833 2024-02-27 21:39:20.833 900 TIP 441102 18372 6090634 2024-02-27 21:45:36.346 2024-02-27 21:45:36.346 1000 FEE 441135 17227 6090635 2024-02-27 21:45:48.926 2024-02-27 21:45:48.926 10000 FEE 441124 11288 6090636 2024-02-27 21:45:48.926 2024-02-27 21:45:48.926 90000 TIP 441124 20963 6090637 2024-02-27 21:45:54.3 2024-02-27 21:45:54.3 2100 FEE 441132 3396 6090638 2024-02-27 21:45:54.3 2024-02-27 21:45:54.3 18900 TIP 441132 19309 6090664 2024-02-27 21:48:54.233 2024-02-27 21:48:54.233 5000 FEE 441012 1130 6090665 2024-02-27 21:48:54.233 2024-02-27 21:48:54.233 45000 TIP 441012 8729 6090673 2024-02-27 21:50:31.095 2024-02-27 21:50:31.095 10000 FEE 441141 20187 6090691 2024-02-27 21:53:22.226 2024-02-27 21:53:22.226 900 FEE 441141 20754 6090692 2024-02-27 21:53:22.226 2024-02-27 21:53:22.226 8100 TIP 441141 836 6090724 2024-02-27 21:58:52.329 2024-02-27 21:58:52.329 2100 FEE 440295 13398 6090725 2024-02-27 21:58:52.329 2024-02-27 21:58:52.329 18900 TIP 440295 10728 6090737 2024-02-27 22:00:06.519 2024-02-27 22:00:06.519 1000 FEE 441146 16912 6090745 2024-02-27 22:03:33.67 2024-02-27 22:03:33.67 2100 FEE 441087 1611 6090746 2024-02-27 22:03:33.67 2024-02-27 22:03:33.67 18900 TIP 441087 12738 6090772 2024-02-27 22:08:41.491 2024-02-27 22:08:41.491 2100 FEE 441016 21416 6090773 2024-02-27 22:08:41.491 2024-02-27 22:08:41.491 18900 TIP 441016 1208 6090846 2024-02-27 22:19:48.53 2024-02-27 22:19:48.53 1000 FEE 440898 12072 6090847 2024-02-27 22:19:48.53 2024-02-27 22:19:48.53 9000 TIP 440898 8998 6090870 2024-02-27 22:19:51.474 2024-02-27 22:19:51.474 1000 FEE 440898 3506 6090871 2024-02-27 22:19:51.474 2024-02-27 22:19:51.474 9000 TIP 440898 18219 6090872 2024-02-27 22:19:51.653 2024-02-27 22:19:51.653 1000 FEE 440898 16839 6090873 2024-02-27 22:19:51.653 2024-02-27 22:19:51.653 9000 TIP 440898 10013 6090905 2024-02-27 22:24:33.848 2024-02-27 22:24:33.848 1000 FEE 441163 5746 6090919 2024-02-27 22:26:42.105 2024-02-27 22:26:42.105 7700 FEE 441070 18306 6090920 2024-02-27 22:26:42.105 2024-02-27 22:26:42.105 69300 TIP 441070 21269 6090923 2024-02-27 22:26:42.398 2024-02-27 22:26:42.398 7700 FEE 441070 15408 6090924 2024-02-27 22:26:42.398 2024-02-27 22:26:42.398 69300 TIP 441070 831 6090925 2024-02-27 22:26:42.595 2024-02-27 22:26:42.595 7700 FEE 441070 19018 6090926 2024-02-27 22:26:42.595 2024-02-27 22:26:42.595 69300 TIP 441070 16052 6090931 2024-02-27 22:26:43.999 2024-02-27 22:26:43.999 3300 FEE 441160 16289 6090932 2024-02-27 22:26:43.999 2024-02-27 22:26:43.999 29700 TIP 441160 21514 6090945 2024-02-27 22:27:22.194 2024-02-27 22:27:22.194 3300 FEE 440692 8448 6090946 2024-02-27 22:27:22.194 2024-02-27 22:27:22.194 29700 TIP 440692 10490 6090952 2024-02-27 22:27:51.037 2024-02-27 22:27:51.037 3300 FEE 441011 4115 6090953 2024-02-27 22:27:51.037 2024-02-27 22:27:51.037 29700 TIP 441011 12272 6090959 2024-02-27 22:28:16.049 2024-02-27 22:28:16.049 2300 FEE 441130 12278 6090960 2024-02-27 22:28:16.049 2024-02-27 22:28:16.049 20700 TIP 441130 10586 6090977 2024-02-27 22:29:04.694 2024-02-27 22:29:04.694 3300 FEE 441006 7376 6090978 2024-02-27 22:29:04.694 2024-02-27 22:29:04.694 29700 TIP 441006 5293 6090981 2024-02-27 22:29:23.736 2024-02-27 22:29:23.736 32200 FEE 441075 20564 6090982 2024-02-27 22:29:23.736 2024-02-27 22:29:23.736 289800 TIP 441075 10112 6090996 2024-02-27 22:30:14.872 2024-02-27 22:30:14.872 1000 FEE 440988 15556 6090997 2024-02-27 22:30:14.872 2024-02-27 22:30:14.872 9000 TIP 440988 2402 6091000 2024-02-27 22:30:43.044 2024-02-27 22:30:43.044 10000 FEE 441137 21541 6091001 2024-02-27 22:30:43.044 2024-02-27 22:30:43.044 90000 TIP 441137 20577 6091017 2024-02-27 22:37:06.456 2024-02-27 22:37:06.456 2100 FEE 441124 18321 6091018 2024-02-27 22:37:06.456 2024-02-27 22:37:06.456 18900 TIP 441124 21012 6091022 2024-02-27 22:37:40.144 2024-02-27 22:37:40.144 2100 FEE 441094 8998 6091023 2024-02-27 22:37:40.144 2024-02-27 22:37:40.144 18900 TIP 441094 11938 6091028 2024-02-27 22:38:21.392 2024-02-27 22:38:21.392 2100 FEE 440863 14255 6091029 2024-02-27 22:38:21.392 2024-02-27 22:38:21.392 18900 TIP 440863 4521 6091033 2024-02-27 22:39:09.767 2024-02-27 22:39:09.767 1000 FEE 441077 20220 6091034 2024-02-27 22:39:09.767 2024-02-27 22:39:09.767 9000 TIP 441077 14465 6091039 2024-02-27 22:39:26.904 2024-02-27 22:39:26.904 1000 FEE 441124 8133 6091040 2024-02-27 22:39:26.904 2024-02-27 22:39:26.904 9000 TIP 441124 16284 6091045 2024-02-27 22:40:17.68 2024-02-27 22:40:17.68 500 FEE 441091 21292 6091046 2024-02-27 22:40:17.68 2024-02-27 22:40:17.68 4500 TIP 441091 19864 6091063 2024-02-27 22:43:22.657 2024-02-27 22:43:22.657 1000 FEE 440692 1092 6091064 2024-02-27 22:43:22.657 2024-02-27 22:43:22.657 9000 TIP 440692 16532 6091086 2024-02-27 22:43:59.881 2024-02-27 22:43:59.881 1000 FEE 440729 6533 6091087 2024-02-27 22:43:59.881 2024-02-27 22:43:59.881 9000 TIP 440729 6419 6091113 2024-02-27 22:45:53.109 2024-02-27 22:45:53.109 1000 FEE 440680 15282 6091114 2024-02-27 22:45:53.109 2024-02-27 22:45:53.109 9000 TIP 440680 12808 6091146 2024-02-27 22:49:23.657 2024-02-27 22:49:23.657 200 FEE 441054 657 6091147 2024-02-27 22:49:23.657 2024-02-27 22:49:23.657 1800 TIP 441054 19501 6091155 2024-02-27 22:49:52.737 2024-02-27 22:49:52.737 6900 FEE 440622 15045 6091156 2024-02-27 22:49:52.737 2024-02-27 22:49:52.737 62100 TIP 440622 9517 6091170 2024-02-27 22:51:43.573 2024-02-27 22:51:43.573 1000 FEE 441194 19289 6091220 2024-02-27 22:54:43.439 2024-02-27 22:54:43.439 1000 FEE 441201 6268 6091225 2024-02-27 22:55:07.789 2024-02-27 22:55:07.789 1000 FEE 441055 18180 6091226 2024-02-27 22:55:07.789 2024-02-27 22:55:07.789 9000 TIP 441055 844 6091227 2024-02-27 22:55:29.158 2024-02-27 22:55:29.158 1000 FEE 440925 2460 6091228 2024-02-27 22:55:29.158 2024-02-27 22:55:29.158 9000 TIP 440925 18945 6091236 2024-02-27 22:56:45.864 2024-02-27 22:56:45.864 1000 FEE 441203 18815 6091271 2024-02-27 22:58:51.405 2024-02-27 22:58:51.405 1300 FEE 441038 19553 6090573 2024-02-27 21:36:31.833 2024-02-27 21:36:31.833 1000 FEE 441127 20922 6090576 2024-02-27 21:36:36.288 2024-02-27 21:36:36.288 1000 FEE 441015 17927 6090577 2024-02-27 21:36:36.288 2024-02-27 21:36:36.288 9000 TIP 441015 9844 6090590 2024-02-27 21:37:21.024 2024-02-27 21:37:21.024 1000 FEE 441131 18262 6090608 2024-02-27 21:40:31.161 2024-02-27 21:40:31.161 3300 FEE 441122 9482 6090609 2024-02-27 21:40:31.161 2024-02-27 21:40:31.161 29700 TIP 441122 17519 6090632 2024-02-27 21:45:25.109 2024-02-27 21:45:25.109 100000 FEE 441075 10096 6090633 2024-02-27 21:45:25.109 2024-02-27 21:45:25.109 900000 TIP 441075 18543 6090642 2024-02-27 21:46:04.149 2024-02-27 21:46:04.149 1000 FEE 441136 4059 6090651 2024-02-27 21:48:18.898 2024-02-27 21:48:18.898 5000 FEE 440911 13216 6090652 2024-02-27 21:48:18.898 2024-02-27 21:48:18.898 45000 TIP 440911 19841 6090686 2024-02-27 21:52:07.69 2024-02-27 21:52:07.69 90000 FEE 440692 658 6090687 2024-02-27 21:52:07.69 2024-02-27 21:52:07.69 810000 TIP 440692 18209 6090693 2024-02-27 21:53:37.557 2024-02-27 21:53:37.557 2100 FEE 440550 21556 6090694 2024-02-27 21:53:37.557 2024-02-27 21:53:37.557 18900 TIP 440550 16440 6090697 2024-02-27 21:53:38.787 2024-02-27 21:53:38.787 2100 FEE 440959 18368 6090698 2024-02-27 21:53:38.787 2024-02-27 21:53:38.787 18900 TIP 440959 19909 6090701 2024-02-27 21:53:42.821 2024-02-27 21:53:42.821 900 FEE 441036 5175 6090702 2024-02-27 21:53:42.821 2024-02-27 21:53:42.821 8100 TIP 441036 2741 6090711 2024-02-27 21:55:02.693 2024-02-27 21:55:02.693 2100 FEE 440985 21571 6090712 2024-02-27 21:55:02.693 2024-02-27 21:55:02.693 18900 TIP 440985 14552 6090756 2024-02-27 22:07:53.829 2024-02-27 22:07:53.829 1000 POLL 441054 21356 6090760 2024-02-27 22:08:10.895 2024-02-27 22:08:10.895 1000 POLL 440725 1145 6090805 2024-02-27 22:13:40.362 2024-02-27 22:13:40.362 6900 FEE 441091 646 6090806 2024-02-27 22:13:40.362 2024-02-27 22:13:40.362 62100 TIP 441091 16598 6090815 2024-02-27 22:15:51.121 2024-02-27 22:15:51.121 1000 FEE 441157 1970 6090821 2024-02-27 22:17:08.939 2024-02-27 22:17:08.939 1000 FEE 441130 3213 6090822 2024-02-27 22:17:08.939 2024-02-27 22:17:08.939 9000 TIP 441130 5942 6090653 2024-02-27 21:48:19.866 2024-02-27 21:48:19.866 2100 FEE 440729 12139 6090654 2024-02-27 21:48:19.866 2024-02-27 21:48:19.866 18900 TIP 440729 16424 6090670 2024-02-27 21:49:12.893 2024-02-27 21:49:12.893 5100 FEE 441137 20751 6090671 2024-02-27 21:49:12.893 2024-02-27 21:49:12.893 45900 TIP 441137 13217 6090706 2024-02-27 21:54:24.602 2024-02-27 21:54:24.602 1000 FEE 441144 20964 6090720 2024-02-27 21:56:51.48 2024-02-27 21:56:51.48 7700 FEE 441079 18736 6090721 2024-02-27 21:56:51.48 2024-02-27 21:56:51.48 69300 TIP 441079 8648 6090761 2024-02-27 22:08:17.736 2024-02-27 22:08:17.736 7000 FEE 441153 16562 6090674 2024-02-27 21:50:53.303 2024-02-27 21:50:53.303 6900 FEE 441136 20272 6090675 2024-02-27 21:50:53.303 2024-02-27 21:50:53.303 62100 TIP 441136 19511 6090689 2024-02-27 21:53:22.05 2024-02-27 21:53:22.05 100 FEE 441141 19841 6090690 2024-02-27 21:53:22.05 2024-02-27 21:53:22.05 900 TIP 441141 20738 6090703 2024-02-27 21:53:43.793 2024-02-27 21:53:43.793 2100 FEE 440898 15484 6090704 2024-02-27 21:53:43.793 2024-02-27 21:53:43.793 18900 TIP 440898 21090 6090707 2024-02-27 21:54:27.376 2024-02-27 21:54:27.376 2100 FEE 440911 18124 6090708 2024-02-27 21:54:27.376 2024-02-27 21:54:27.376 18900 TIP 440911 19961 6090736 2024-02-27 22:00:05.986 2024-02-27 22:00:05.986 100000 FEE 441145 10693 6090740 2024-02-27 22:01:14.055 2024-02-27 22:01:14.055 1000 FEE 441148 1002 6090751 2024-02-27 22:05:34.053 2024-02-27 22:05:34.053 1000 FEE 441151 5425 6090776 2024-02-27 22:08:56.706 2024-02-27 22:08:56.706 10000 FEE 441077 21051 6090777 2024-02-27 22:08:56.706 2024-02-27 22:08:56.706 90000 TIP 441077 19785 6090779 2024-02-27 22:09:05.194 2024-02-27 22:09:05.194 100 FEE 440916 718 6090780 2024-02-27 22:09:05.194 2024-02-27 22:09:05.194 900 TIP 440916 14357 6090787 2024-02-27 22:10:26.834 2024-02-27 22:10:26.834 4200 FEE 440673 12768 6090788 2024-02-27 22:10:26.834 2024-02-27 22:10:26.834 37800 TIP 440673 2402 6090807 2024-02-27 22:14:01.507 2024-02-27 22:14:01.507 10000 FEE 440751 2195 6090808 2024-02-27 22:14:01.507 2024-02-27 22:14:01.507 90000 TIP 440751 1429 6090819 2024-02-27 22:16:56.56 2024-02-27 22:16:56.56 1000 FEE 441158 17227 6090848 2024-02-27 22:19:48.69 2024-02-27 22:19:48.69 1000 FEE 440898 10934 6090849 2024-02-27 22:19:48.69 2024-02-27 22:19:48.69 9000 TIP 440898 1983 6090864 2024-02-27 22:19:49.964 2024-02-27 22:19:49.964 1000 FEE 440898 19449 6090865 2024-02-27 22:19:49.964 2024-02-27 22:19:49.964 9000 TIP 440898 18815 6090866 2024-02-27 22:19:50.608 2024-02-27 22:19:50.608 1000 FEE 440898 16289 6090867 2024-02-27 22:19:50.608 2024-02-27 22:19:50.608 9000 TIP 440898 828 6090868 2024-02-27 22:19:51.148 2024-02-27 22:19:51.148 6000 FEE 440898 9421 6090869 2024-02-27 22:19:51.148 2024-02-27 22:19:51.148 54000 TIP 440898 16970 6090900 2024-02-27 22:24:08.701 2024-02-27 22:24:08.701 10000 FEE 441077 3417 6090901 2024-02-27 22:24:08.701 2024-02-27 22:24:08.701 90000 TIP 441077 20452 6090910 2024-02-27 22:25:40.075 2024-02-27 22:25:40.075 900 FEE 441159 701 6090911 2024-02-27 22:25:40.075 2024-02-27 22:25:40.075 8100 TIP 441159 19303 6090912 2024-02-27 22:25:42.715 2024-02-27 22:25:42.715 9000 FEE 441159 21287 6090913 2024-02-27 22:25:42.715 2024-02-27 22:25:42.715 81000 TIP 441159 11992 6090921 2024-02-27 22:26:42.239 2024-02-27 22:26:42.239 7700 FEE 441070 6393 6090922 2024-02-27 22:26:42.239 2024-02-27 22:26:42.239 69300 TIP 441070 2204 6090939 2024-02-27 22:26:53.562 2024-02-27 22:26:53.562 2100 FEE 441130 12566 6090940 2024-02-27 22:26:53.562 2024-02-27 22:26:53.562 18900 TIP 441130 21352 6090943 2024-02-27 22:27:11.077 2024-02-27 22:27:11.077 2100 FEE 440966 13527 6090944 2024-02-27 22:27:11.077 2024-02-27 22:27:11.077 18900 TIP 440966 1712 6090992 2024-02-27 22:30:14.38 2024-02-27 22:30:14.38 1000 FEE 440988 1310 6090993 2024-02-27 22:30:14.38 2024-02-27 22:30:14.38 9000 TIP 440988 13921 6091005 2024-02-27 22:33:02.543 2024-02-27 22:33:02.543 0 FEE 441169 14939 6091007 2024-02-27 22:33:36.208 2024-02-27 22:33:36.208 100000 FEE 441170 6602 6091015 2024-02-27 22:36:34.079 2024-02-27 22:36:34.079 1000 FEE 441173 18832 6091024 2024-02-27 22:37:47.441 2024-02-27 22:37:47.441 3300 FEE 441144 19296 6091025 2024-02-27 22:37:47.441 2024-02-27 22:37:47.441 29700 TIP 441144 1310 6091030 2024-02-27 22:38:27.524 2024-02-27 22:38:27.524 10000 FEE 441176 13903 6091037 2024-02-27 22:39:21.616 2024-02-27 22:39:21.616 2100 FEE 441123 4395 6091038 2024-02-27 22:39:21.616 2024-02-27 22:39:21.616 18900 TIP 441123 17817 6091042 2024-02-27 22:39:59.852 2024-02-27 22:39:59.852 2100 FEE 441113 16296 6091043 2024-02-27 22:39:59.852 2024-02-27 22:39:59.852 18900 TIP 441113 21145 6091055 2024-02-27 22:42:03.36 2024-02-27 22:42:03.36 1000 FEE 441180 5708 6091093 2024-02-27 22:44:04.944 2024-02-27 22:44:04.944 1000 FEE 441124 1577 6091094 2024-02-27 22:44:04.944 2024-02-27 22:44:04.944 9000 TIP 441124 18932 6091095 2024-02-27 22:44:06.73 2024-02-27 22:44:06.73 1000 FEE 440663 10112 6091096 2024-02-27 22:44:06.73 2024-02-27 22:44:06.73 9000 TIP 440663 4502 6091097 2024-02-27 22:44:07.181 2024-02-27 22:44:07.181 1000 FEE 440989 13599 6091098 2024-02-27 22:44:07.181 2024-02-27 22:44:07.181 9000 TIP 440989 20717 6091122 2024-02-27 22:47:07.891 2024-02-27 22:47:07.891 1000 FEE 440587 1142 6091123 2024-02-27 22:47:07.891 2024-02-27 22:47:07.891 9000 TIP 440587 1175 6091164 2024-02-27 22:50:29.604 2024-02-27 22:50:29.604 1000 FEE 256027 21140 6091165 2024-02-27 22:50:29.604 2024-02-27 22:50:29.604 9000 TIP 256027 16329 6091171 2024-02-27 22:51:47.412 2024-02-27 22:51:47.412 1000 FEE 132834 18220 6091172 2024-02-27 22:51:47.412 2024-02-27 22:51:47.412 9000 TIP 132834 18815 6091198 2024-02-27 22:53:02.126 2024-02-27 22:53:02.126 0 FEE 441193 18423 6091223 2024-02-27 22:55:05.251 2024-02-27 22:55:05.251 1000 FEE 441012 2681 6091224 2024-02-27 22:55:05.251 2024-02-27 22:55:05.251 9000 TIP 441012 19640 6091249 2024-02-27 22:58:24.303 2024-02-27 22:58:24.303 1000 FEE 441169 10549 6091250 2024-02-27 22:58:24.303 2024-02-27 22:58:24.303 9000 TIP 441169 12057 6091257 2024-02-27 22:58:42.021 2024-02-27 22:58:42.021 1300 FEE 441038 4624 6091258 2024-02-27 22:58:42.021 2024-02-27 22:58:42.021 11700 TIP 441038 6616 6091259 2024-02-27 22:58:49.708 2024-02-27 22:58:49.708 1300 FEE 441038 18336 6091260 2024-02-27 22:58:49.708 2024-02-27 22:58:49.708 11700 TIP 441038 14267 6091289 2024-02-27 22:59:47.846 2024-02-27 22:59:47.846 1000 FEE 441207 18658 6091310 2024-02-27 23:04:26.233 2024-02-27 23:04:26.233 1300 FEE 441011 798 6091311 2024-02-27 23:04:26.233 2024-02-27 23:04:26.233 11700 TIP 441011 11450 6091336 2024-02-27 23:04:29.273 2024-02-27 23:04:29.273 2600 FEE 441011 19018 6091337 2024-02-27 23:04:29.273 2024-02-27 23:04:29.273 23400 TIP 441011 1478 6091351 2024-02-27 23:05:53.292 2024-02-27 23:05:53.292 100 FEE 441210 4304 6091352 2024-02-27 23:05:53.292 2024-02-27 23:05:53.292 900 TIP 441210 15719 6091365 2024-02-27 23:06:41.656 2024-02-27 23:06:41.656 1300 FEE 441027 18837 6091366 2024-02-27 23:06:41.656 2024-02-27 23:06:41.656 11700 TIP 441027 19907 6091401 2024-02-27 23:06:46.577 2024-02-27 23:06:46.577 1300 FEE 441027 17570 6091402 2024-02-27 23:06:46.577 2024-02-27 23:06:46.577 11700 TIP 441027 21482 6091409 2024-02-27 23:06:47.529 2024-02-27 23:06:47.529 1300 FEE 441027 20892 6091410 2024-02-27 23:06:47.529 2024-02-27 23:06:47.529 11700 TIP 441027 12744 6091420 2024-02-27 23:06:49.085 2024-02-27 23:06:49.085 1300 FEE 441027 15732 6091421 2024-02-27 23:06:49.085 2024-02-27 23:06:49.085 11700 TIP 441027 10359 6091470 2024-02-27 23:10:40.874 2024-02-27 23:10:40.874 10000 FEE 440692 705 6091471 2024-02-27 23:10:40.874 2024-02-27 23:10:40.874 90000 TIP 440692 18476 6091494 2024-02-27 23:11:56.984 2024-02-27 23:11:56.984 7700 FEE 441150 18393 6091495 2024-02-27 23:11:56.984 2024-02-27 23:11:56.984 69300 TIP 441150 690 6091542 2024-02-27 23:12:29.242 2024-02-27 23:12:29.242 7700 FEE 441077 20022 6091543 2024-02-27 23:12:29.242 2024-02-27 23:12:29.242 69300 TIP 441077 1983 6091548 2024-02-27 23:12:30.032 2024-02-27 23:12:30.032 7700 FEE 441077 14990 6091549 2024-02-27 23:12:30.032 2024-02-27 23:12:30.032 69300 TIP 441077 20180 6091576 2024-02-27 23:12:39.996 2024-02-27 23:12:39.996 7700 FEE 441077 16042 6091577 2024-02-27 23:12:39.996 2024-02-27 23:12:39.996 69300 TIP 441077 5708 6091592 2024-02-27 23:12:41.057 2024-02-27 23:12:41.057 7700 FEE 441077 9346 6091593 2024-02-27 23:12:41.057 2024-02-27 23:12:41.057 69300 TIP 441077 19267 6091596 2024-02-27 23:12:41.275 2024-02-27 23:12:41.275 7700 FEE 441077 18919 6091597 2024-02-27 23:12:41.275 2024-02-27 23:12:41.275 69300 TIP 441077 837 6091618 2024-02-27 23:13:10.871 2024-02-27 23:13:10.871 1000 FEE 441211 17602 6090766 2024-02-27 22:08:34.221 2024-02-27 22:08:34.221 100 FEE 440814 20840 6090767 2024-02-27 22:08:34.221 2024-02-27 22:08:34.221 900 TIP 440814 13361 6090774 2024-02-27 22:08:51.275 2024-02-27 22:08:51.275 100 FEE 440925 5520 6090775 2024-02-27 22:08:51.275 2024-02-27 22:08:51.275 900 TIP 440925 6148 6090784 2024-02-27 22:10:07.167 2024-02-27 22:10:07.167 10000 FEE 441074 15408 6090785 2024-02-27 22:10:07.167 2024-02-27 22:10:07.167 90000 TIP 441074 20778 6090789 2024-02-27 22:10:35.944 2024-02-27 22:10:35.944 0 FEE 441154 19557 6090828 2024-02-27 22:19:47.055 2024-02-27 22:19:47.055 1000 FEE 440898 4064 6090796 2024-02-27 22:11:06.01 2024-02-27 22:11:06.01 900 TIP 441078 2203 6090810 2024-02-27 22:14:26.634 2024-02-27 22:14:26.634 100 FEE 440751 1596 6090811 2024-02-27 22:14:26.634 2024-02-27 22:14:26.634 900 TIP 440751 959 6090836 2024-02-27 22:19:47.729 2024-02-27 22:19:47.729 1000 FEE 440898 715 6090837 2024-02-27 22:19:47.729 2024-02-27 22:19:47.729 9000 TIP 440898 21296 6090854 2024-02-27 22:19:49.18 2024-02-27 22:19:49.18 1000 FEE 440898 12346 6090855 2024-02-27 22:19:49.18 2024-02-27 22:19:49.18 9000 TIP 440898 1817 6090902 2024-02-27 22:24:27.28 2024-02-27 22:24:27.28 1000 FEE 441060 17091 6090903 2024-02-27 22:24:27.28 2024-02-27 22:24:27.28 9000 TIP 441060 1652 6090949 2024-02-27 22:27:24.324 2024-02-27 22:27:24.324 0 FEE 441165 16970 6090950 2024-02-27 22:27:49.913 2024-02-27 22:27:49.913 3300 FEE 441011 14465 6090951 2024-02-27 22:27:49.913 2024-02-27 22:27:49.913 29700 TIP 441011 1717 6090966 2024-02-27 22:28:38.454 2024-02-27 22:28:38.454 3300 FEE 441060 21492 6090967 2024-02-27 22:28:38.454 2024-02-27 22:28:38.454 29700 TIP 441060 9347 6091020 2024-02-27 22:37:34.275 2024-02-27 22:37:34.275 2100 FEE 441091 11515 6091021 2024-02-27 22:37:34.275 2024-02-27 22:37:34.275 18900 TIP 441091 18581 6091079 2024-02-27 22:43:48.651 2024-02-27 22:43:48.651 1000 FEE 440587 13216 6091080 2024-02-27 22:43:48.651 2024-02-27 22:43:48.651 9000 TIP 440587 9366 6091083 2024-02-27 22:43:59.211 2024-02-27 22:43:59.211 1000 FEE 440985 20340 6091084 2024-02-27 22:43:59.211 2024-02-27 22:43:59.211 9000 TIP 440985 18072 6091091 2024-02-27 22:44:03.494 2024-02-27 22:44:03.494 1000 FEE 441169 20802 6091092 2024-02-27 22:44:03.494 2024-02-27 22:44:03.494 9000 TIP 441169 6616 6091103 2024-02-27 22:44:54.879 2024-02-27 22:44:54.879 4000 FEE 441180 18664 6091104 2024-02-27 22:44:54.879 2024-02-27 22:44:54.879 36000 TIP 441180 18727 6091108 2024-02-27 22:45:29.079 2024-02-27 22:45:29.079 1000 FEE 441185 21136 6091109 2024-02-27 22:45:37.864 2024-02-27 22:45:37.864 1000 FEE 440615 19484 6091110 2024-02-27 22:45:37.864 2024-02-27 22:45:37.864 9000 TIP 440615 21501 6091115 2024-02-27 22:46:02.827 2024-02-27 22:46:02.827 1100 FEE 440591 21249 6091116 2024-02-27 22:46:02.827 2024-02-27 22:46:02.827 9900 TIP 440591 9992 6091124 2024-02-27 22:47:29.693 2024-02-27 22:47:29.693 2100 FEE 441073 9307 6091125 2024-02-27 22:47:29.693 2024-02-27 22:47:29.693 18900 TIP 441073 6602 6091132 2024-02-27 22:48:45.547 2024-02-27 22:48:45.547 10000 FEE 441011 16542 6091133 2024-02-27 22:48:45.547 2024-02-27 22:48:45.547 90000 TIP 441011 1490 6091148 2024-02-27 22:49:25.464 2024-02-27 22:49:25.464 1000 FEE 441192 1733 6091153 2024-02-27 22:49:41.72 2024-02-27 22:49:41.72 1000 FEE 256032 19332 6090803 2024-02-27 22:13:38.653 2024-02-27 22:13:38.653 6900 FEE 441091 21387 6090804 2024-02-27 22:13:38.653 2024-02-27 22:13:38.653 62100 TIP 441091 1512 6090816 2024-02-27 22:15:54.05 2024-02-27 22:15:54.05 2100 FEE 441087 11648 6090817 2024-02-27 22:15:54.05 2024-02-27 22:15:54.05 18900 TIP 441087 11956 6090876 2024-02-27 22:19:51.964 2024-02-27 22:19:51.964 1000 FEE 440898 18363 6090877 2024-02-27 22:19:51.964 2024-02-27 22:19:51.964 9000 TIP 440898 11992 6090895 2024-02-27 22:23:30.748 2024-02-27 22:23:30.748 0 FEE 441158 20276 6090897 2024-02-27 22:23:43.609 2024-02-27 22:23:43.609 1000 FEE 441054 17124 6090898 2024-02-27 22:23:43.609 2024-02-27 22:23:43.609 9000 TIP 441054 986 6090929 2024-02-27 22:26:43.589 2024-02-27 22:26:43.589 7700 FEE 441070 16177 6090930 2024-02-27 22:26:43.589 2024-02-27 22:26:43.589 69300 TIP 441070 20133 6090935 2024-02-27 22:26:44.958 2024-02-27 22:26:44.958 3300 FEE 441160 13574 6090936 2024-02-27 22:26:44.958 2024-02-27 22:26:44.958 29700 TIP 441160 19303 6090994 2024-02-27 22:30:14.62 2024-02-27 22:30:14.62 1000 FEE 440988 19906 6090995 2024-02-27 22:30:14.62 2024-02-27 22:30:14.62 9000 TIP 440988 20267 6090999 2024-02-27 22:30:31.989 2024-02-27 22:30:31.989 97000 FEE 441168 18615 6091004 2024-02-27 22:32:37.399 2024-02-27 22:32:37.399 100000 FEE 441169 20663 6091057 2024-02-27 22:42:03.776 2024-02-27 22:42:03.776 1000 FEE 441181 18101 6091058 2024-02-27 22:42:23.099 2024-02-27 22:42:23.099 1000 FEE 441182 4819 6091067 2024-02-27 22:43:28.14 2024-02-27 22:43:28.14 2100 FEE 441008 2577 6091068 2024-02-27 22:43:28.14 2024-02-27 22:43:28.14 18900 TIP 441008 3544 6091069 2024-02-27 22:43:28.504 2024-02-27 22:43:28.504 1000 FEE 441124 670 6091070 2024-02-27 22:43:28.504 2024-02-27 22:43:28.504 9000 TIP 441124 18525 6091077 2024-02-27 22:43:42.439 2024-02-27 22:43:42.439 1000 FEE 441054 16351 6091078 2024-02-27 22:43:42.439 2024-02-27 22:43:42.439 9000 TIP 441054 16296 6091111 2024-02-27 22:45:45.432 2024-02-27 22:45:45.432 1000 FEE 440629 21003 6091112 2024-02-27 22:45:45.432 2024-02-27 22:45:45.432 9000 TIP 440629 20185 6091120 2024-02-27 22:47:00.204 2024-02-27 22:47:00.204 1000 FEE 441188 15160 6091127 2024-02-27 22:47:48.209 2024-02-27 22:47:48.209 1000 FEE 441189 985 6091188 2024-02-27 22:52:30.021 2024-02-27 22:52:30.021 1000 FEE 441197 1141 6091194 2024-02-27 22:52:39.275 2024-02-27 22:52:39.275 1000 FEE 440857 21472 6091195 2024-02-27 22:52:39.275 2024-02-27 22:52:39.275 9000 TIP 440857 16954 6091196 2024-02-27 22:53:01.818 2024-02-27 22:53:01.818 1000 FEE 35723 19094 6091197 2024-02-27 22:53:01.818 2024-02-27 22:53:01.818 9000 TIP 35723 13763 6091200 2024-02-27 22:53:03.698 2024-02-27 22:53:03.698 1000 FEE 35694 12265 6091201 2024-02-27 22:53:03.698 2024-02-27 22:53:03.698 9000 TIP 35694 17693 6091206 2024-02-27 22:53:21.259 2024-02-27 22:53:21.259 100000 FEE 441198 641 6091221 2024-02-27 22:54:49.368 2024-02-27 22:54:49.368 1000 POLL 440725 14122 6091229 2024-02-27 22:55:29.803 2024-02-27 22:55:29.803 1000 FEE 441035 8289 6091230 2024-02-27 22:55:29.803 2024-02-27 22:55:29.803 9000 TIP 441035 17050 6091231 2024-02-27 22:55:56.194 2024-02-27 22:55:56.194 0 FEE 441200 20018 6091243 2024-02-27 22:58:11.258 2024-02-27 22:58:11.258 1000 FEE 440899 9171 6091244 2024-02-27 22:58:11.258 2024-02-27 22:58:11.258 9000 TIP 440899 3506 6091247 2024-02-27 22:58:24.085 2024-02-27 22:58:24.085 1000 FEE 441169 20018 6091248 2024-02-27 22:58:24.085 2024-02-27 22:58:24.085 9000 TIP 441169 18359 6091251 2024-02-27 22:58:24.513 2024-02-27 22:58:24.513 1000 FEE 441169 9107 6091252 2024-02-27 22:58:24.513 2024-02-27 22:58:24.513 9000 TIP 441169 20205 6091253 2024-02-27 22:58:24.694 2024-02-27 22:58:24.694 1000 FEE 441169 6361 6091254 2024-02-27 22:58:24.694 2024-02-27 22:58:24.694 9000 TIP 441169 9242 6091265 2024-02-27 22:58:50.827 2024-02-27 22:58:50.827 1300 FEE 441038 16351 6091266 2024-02-27 22:58:50.827 2024-02-27 22:58:50.827 11700 TIP 441038 18235 6091269 2024-02-27 22:58:51.338 2024-02-27 22:58:51.338 1300 FEE 441038 21422 6091270 2024-02-27 22:58:51.338 2024-02-27 22:58:51.338 11700 TIP 441038 2010 6091298 2024-02-27 23:00:22.851 2024-02-27 23:00:22.851 1000 FEE 441209 20586 6091308 2024-02-27 23:04:26.006 2024-02-27 23:04:26.006 1300 FEE 441011 6602 6091309 2024-02-27 23:04:26.006 2024-02-27 23:04:26.006 11700 TIP 441011 7827 6091312 2024-02-27 23:04:26.384 2024-02-27 23:04:26.384 1300 FEE 441011 11158 6091313 2024-02-27 23:04:26.384 2024-02-27 23:04:26.384 11700 TIP 441011 695 6091340 2024-02-27 23:04:30.736 2024-02-27 23:04:30.736 1300 FEE 441011 1454 6091341 2024-02-27 23:04:30.736 2024-02-27 23:04:30.736 11700 TIP 441011 20624 6091358 2024-02-27 23:06:31.113 2024-02-27 23:06:31.113 1000 FEE 441213 15351 6091387 2024-02-27 23:06:44.072 2024-02-27 23:06:44.072 1300 FEE 441027 9329 6091388 2024-02-27 23:06:44.072 2024-02-27 23:06:44.072 11700 TIP 441027 21402 6091418 2024-02-27 23:06:48.425 2024-02-27 23:06:48.425 1300 FEE 441027 16769 6091419 2024-02-27 23:06:48.425 2024-02-27 23:06:48.425 11700 TIP 441027 15806 6091424 2024-02-27 23:06:50.129 2024-02-27 23:06:50.129 1300 FEE 441027 19435 6091425 2024-02-27 23:06:50.129 2024-02-27 23:06:50.129 11700 TIP 441027 20424 6091457 2024-02-27 23:09:59.328 2024-02-27 23:09:59.328 7700 FEE 441169 17316 6091458 2024-02-27 23:09:59.328 2024-02-27 23:09:59.328 69300 TIP 441169 685 6091459 2024-02-27 23:10:00.07 2024-02-27 23:10:00.07 7700 FEE 441169 19512 6091460 2024-02-27 23:10:00.07 2024-02-27 23:10:00.07 69300 TIP 441169 20681 6091464 2024-02-27 23:10:25.255 2024-02-27 23:10:25.255 100 FEE 441198 12057 6091465 2024-02-27 23:10:25.255 2024-02-27 23:10:25.255 900 TIP 441198 19907 6091466 2024-02-27 23:10:25.507 2024-02-27 23:10:25.507 900 FEE 441198 21222 6091467 2024-02-27 23:10:25.507 2024-02-27 23:10:25.507 8100 TIP 441198 2576 6091486 2024-02-27 23:11:50.404 2024-02-27 23:11:50.404 3000 FEE 440989 19581 6091487 2024-02-27 23:11:50.404 2024-02-27 23:11:50.404 27000 TIP 440989 18372 6091488 2024-02-27 23:11:50.558 2024-02-27 23:11:50.558 3000 FEE 440989 1552 6091489 2024-02-27 23:11:50.558 2024-02-27 23:11:50.558 27000 TIP 440989 1741 6091496 2024-02-27 23:12:00.772 2024-02-27 23:12:00.772 7700 FEE 441121 20450 6091497 2024-02-27 23:12:00.772 2024-02-27 23:12:00.772 69300 TIP 441121 19524 6091501 2024-02-27 23:12:12.09 2024-02-27 23:12:12.09 7700 FEE 441105 15577 6091502 2024-02-27 23:12:12.09 2024-02-27 23:12:12.09 69300 TIP 441105 19147 6091503 2024-02-27 23:12:12.23 2024-02-27 23:12:12.23 1000 FEE 441219 9332 6091504 2024-02-27 23:12:18.672 2024-02-27 23:12:18.672 15400 FEE 441091 19839 6091505 2024-02-27 23:12:18.672 2024-02-27 23:12:18.672 138600 TIP 441091 3392 6091512 2024-02-27 23:12:27.408 2024-02-27 23:12:27.408 7700 FEE 441077 2224 6091513 2024-02-27 23:12:27.408 2024-02-27 23:12:27.408 69300 TIP 441077 769 6091528 2024-02-27 23:12:28.323 2024-02-27 23:12:28.323 7700 FEE 441077 8284 6091529 2024-02-27 23:12:28.323 2024-02-27 23:12:28.323 69300 TIP 441077 712 6091554 2024-02-27 23:12:31.074 2024-02-27 23:12:31.074 7700 FEE 441077 11091 6091555 2024-02-27 23:12:31.074 2024-02-27 23:12:31.074 69300 TIP 441077 21281 6091574 2024-02-27 23:12:39.973 2024-02-27 23:12:39.973 7700 FEE 441077 4083 6091575 2024-02-27 23:12:39.973 2024-02-27 23:12:39.973 69300 TIP 441077 13987 6091588 2024-02-27 23:12:40.842 2024-02-27 23:12:40.842 7700 FEE 441077 761 6090829 2024-02-27 22:19:47.055 2024-02-27 22:19:47.055 9000 TIP 440898 20301 6090842 2024-02-27 22:19:48.219 2024-02-27 22:19:48.219 1000 FEE 440898 19462 6090843 2024-02-27 22:19:48.219 2024-02-27 22:19:48.219 9000 TIP 440898 16929 6090856 2024-02-27 22:19:49.329 2024-02-27 22:19:49.329 1000 FEE 440898 2614 6090857 2024-02-27 22:19:49.329 2024-02-27 22:19:49.329 9000 TIP 440898 6765 6090933 2024-02-27 22:26:44.792 2024-02-27 22:26:44.792 3300 FEE 441160 6602 6090934 2024-02-27 22:26:44.792 2024-02-27 22:26:44.792 29700 TIP 441160 17201 6090955 2024-02-27 22:28:09.124 2024-02-27 22:28:09.124 3300 FEE 441130 1272 6090956 2024-02-27 22:28:09.124 2024-02-27 22:28:09.124 29700 TIP 441130 1692 6090961 2024-02-27 22:28:20.777 2024-02-27 22:28:20.777 1000 FEE 441166 1738 6090964 2024-02-27 22:28:38.373 2024-02-27 22:28:38.373 1000 FEE 441078 4574 6090965 2024-02-27 22:28:38.373 2024-02-27 22:28:38.373 9000 TIP 441078 20680 6090968 2024-02-27 22:28:48.514 2024-02-27 22:28:48.514 10000 FEE 441048 1751 6090969 2024-02-27 22:28:48.514 2024-02-27 22:28:48.514 90000 TIP 441048 1823 6090970 2024-02-27 22:28:54.866 2024-02-27 22:28:54.866 3300 FEE 441002 17541 6090971 2024-02-27 22:28:54.866 2024-02-27 22:28:54.866 29700 TIP 441002 19637 6090979 2024-02-27 22:29:04.721 2024-02-27 22:29:04.721 3300 FEE 441006 19826 6090980 2024-02-27 22:29:04.721 2024-02-27 22:29:04.721 29700 TIP 441006 17638 6090988 2024-02-27 22:30:14.022 2024-02-27 22:30:14.022 1000 FEE 440988 8400 6090989 2024-02-27 22:30:14.022 2024-02-27 22:30:14.022 9000 TIP 440988 20837 6091009 2024-02-27 22:33:56.681 2024-02-27 22:33:56.681 0 FEE 441169 16250 6091047 2024-02-27 22:40:22.919 2024-02-27 22:40:22.919 500 FEE 441087 20156 6091048 2024-02-27 22:40:22.919 2024-02-27 22:40:22.919 4500 TIP 441087 629 6091062 2024-02-27 22:43:05.291 2024-02-27 22:43:05.291 1000 FEE 441183 21395 6091071 2024-02-27 22:43:37.327 2024-02-27 22:43:37.327 1000 FEE 440911 2652 6091072 2024-02-27 22:43:37.327 2024-02-27 22:43:37.327 9000 TIP 440911 21492 6091075 2024-02-27 22:43:41.237 2024-02-27 22:43:41.237 1000 FEE 441077 12277 6091076 2024-02-27 22:43:41.237 2024-02-27 22:43:41.237 9000 TIP 441077 20585 6091081 2024-02-27 22:43:55.247 2024-02-27 22:43:55.247 1000 FEE 440520 15806 6091082 2024-02-27 22:43:55.247 2024-02-27 22:43:55.247 9000 TIP 440520 13553 6091101 2024-02-27 22:44:25.453 2024-02-27 22:44:25.453 100 FEE 441124 12122 6091102 2024-02-27 22:44:25.453 2024-02-27 22:44:25.453 900 TIP 441124 657 6091105 2024-02-27 22:44:56.312 2024-02-27 22:44:56.312 4000 FEE 441182 1515 6091106 2024-02-27 22:44:56.312 2024-02-27 22:44:56.312 36000 TIP 441182 17696 6091118 2024-02-27 22:46:25.581 2024-02-27 22:46:25.581 10000 FEE 441186 775 6091131 2024-02-27 22:48:05.347 2024-02-27 22:48:05.347 1000 FEE 441190 2204 6091134 2024-02-27 22:48:54.931 2024-02-27 22:48:54.931 300 FEE 441166 20436 6091135 2024-02-27 22:48:54.931 2024-02-27 22:48:54.931 2700 TIP 441166 894 6091137 2024-02-27 22:49:06.237 2024-02-27 22:49:06.237 1000 FEE 440907 20026 6091138 2024-02-27 22:49:06.237 2024-02-27 22:49:06.237 9000 TIP 440907 21509 6091149 2024-02-27 22:49:28.831 2024-02-27 22:49:28.831 2100 FEE 441050 18178 6091150 2024-02-27 22:49:28.831 2024-02-27 22:49:28.831 18900 TIP 441050 17523 6091151 2024-02-27 22:49:40.981 2024-02-27 22:49:40.981 1000 FEE 256240 16250 6091152 2024-02-27 22:49:40.981 2024-02-27 22:49:40.981 9000 TIP 256240 3409 6091182 2024-02-27 22:52:01.73 2024-02-27 22:52:01.73 1000 FEE 132763 1175 6091183 2024-02-27 22:52:01.73 2024-02-27 22:52:01.73 9000 TIP 132763 4798 6091204 2024-02-27 22:53:15.287 2024-02-27 22:53:15.287 1000 FEE 361038 15690 6091205 2024-02-27 22:53:15.287 2024-02-27 22:53:15.287 9000 TIP 361038 8133 6091215 2024-02-27 22:53:31.35 2024-02-27 22:53:31.35 1000 FEE 361237 21083 6091216 2024-02-27 22:53:31.35 2024-02-27 22:53:31.35 9000 TIP 361237 13042 6091233 2024-02-27 22:56:13.22 2024-02-27 22:56:13.22 1000 FEE 441202 11590 6091234 2024-02-27 22:56:21.328 2024-02-27 22:56:21.328 2100 FEE 440692 15147 6091235 2024-02-27 22:56:21.328 2024-02-27 22:56:21.328 18900 TIP 440692 20208 6091237 2024-02-27 22:57:01.609 2024-02-27 22:57:01.609 1000 FEE 441157 7960 6091238 2024-02-27 22:57:01.609 2024-02-27 22:57:01.609 9000 TIP 441157 20616 6091281 2024-02-27 22:58:54.895 2024-02-27 22:58:54.895 1300 FEE 441038 940 6091282 2024-02-27 22:58:54.895 2024-02-27 22:58:54.895 11700 TIP 441038 4128 6091288 2024-02-27 22:59:30.323 2024-02-27 22:59:30.323 1000 FEE 441206 20710 6091290 2024-02-27 22:59:50.893 2024-02-27 22:59:50.893 1000 FEE 441111 21060 6091291 2024-02-27 22:59:50.893 2024-02-27 22:59:50.893 9000 TIP 441111 19005 6091294 2024-02-27 23:00:08.149 2024-02-27 23:00:08.149 1000 FEE 441067 11329 6091295 2024-02-27 23:00:08.149 2024-02-27 23:00:08.149 9000 TIP 441067 9820 6091296 2024-02-27 23:00:15.812 2024-02-27 23:00:15.812 1000 FEE 441135 9307 6091297 2024-02-27 23:00:15.812 2024-02-27 23:00:15.812 9000 TIP 441135 900 6091300 2024-02-27 23:01:57.391 2024-02-27 23:01:57.391 1000 FEE 441210 11956 6091306 2024-02-27 23:04:25.827 2024-02-27 23:04:25.827 1300 FEE 441011 1006 6091307 2024-02-27 23:04:25.827 2024-02-27 23:04:25.827 11700 TIP 441011 12188 6091318 2024-02-27 23:04:26.907 2024-02-27 23:04:26.907 1300 FEE 441011 9336 6091319 2024-02-27 23:04:26.907 2024-02-27 23:04:26.907 11700 TIP 441011 11821 6091322 2024-02-27 23:04:27.387 2024-02-27 23:04:27.387 1300 FEE 441011 18641 6091323 2024-02-27 23:04:27.387 2024-02-27 23:04:27.387 11700 TIP 441011 11750 6091326 2024-02-27 23:04:27.598 2024-02-27 23:04:27.598 1300 FEE 441011 19615 6091327 2024-02-27 23:04:27.598 2024-02-27 23:04:27.598 11700 TIP 441011 17094 6091334 2024-02-27 23:04:28.879 2024-02-27 23:04:28.879 1300 FEE 441011 21155 6091335 2024-02-27 23:04:28.879 2024-02-27 23:04:28.879 11700 TIP 441011 20802 6091342 2024-02-27 23:04:31.316 2024-02-27 23:04:31.316 1300 FEE 441011 1817 6091343 2024-02-27 23:04:31.316 2024-02-27 23:04:31.316 11700 TIP 441011 6384 6091373 2024-02-27 23:06:42.388 2024-02-27 23:06:42.388 1300 FEE 441027 16532 6091374 2024-02-27 23:06:42.388 2024-02-27 23:06:42.388 11700 TIP 441027 9329 6091375 2024-02-27 23:06:42.568 2024-02-27 23:06:42.568 1300 FEE 441027 19864 6091376 2024-02-27 23:06:42.568 2024-02-27 23:06:42.568 11700 TIP 441027 698 6091377 2024-02-27 23:06:42.756 2024-02-27 23:06:42.756 1300 FEE 441027 1801 6091378 2024-02-27 23:06:42.756 2024-02-27 23:06:42.756 11700 TIP 441027 20023 6091399 2024-02-27 23:06:45.949 2024-02-27 23:06:45.949 1300 FEE 441027 20969 6091400 2024-02-27 23:06:45.949 2024-02-27 23:06:45.949 11700 TIP 441027 5865 6091405 2024-02-27 23:06:46.908 2024-02-27 23:06:46.908 1300 FEE 441027 21019 6091406 2024-02-27 23:06:46.908 2024-02-27 23:06:46.908 11700 TIP 441027 2326 6091417 2024-02-27 23:06:48.305 2024-02-27 23:06:48.305 1000 FEE 441214 21491 6091422 2024-02-27 23:06:49.492 2024-02-27 23:06:49.492 1300 FEE 441027 1136 6091423 2024-02-27 23:06:49.492 2024-02-27 23:06:49.492 11700 TIP 441027 19863 6091435 2024-02-27 23:07:05.996 2024-02-27 23:07:05.996 7700 FEE 441193 12334 6091436 2024-02-27 23:07:05.996 2024-02-27 23:07:05.996 69300 TIP 441193 20614 6091443 2024-02-27 23:07:42.017 2024-02-27 23:07:42.017 12800 FEE 441147 2502 6091444 2024-02-27 23:07:42.017 2024-02-27 23:07:42.017 115200 TIP 441147 17172 6091453 2024-02-27 23:09:05.998 2024-02-27 23:09:05.998 1000 FEE 441216 18640 6091456 2024-02-27 23:09:53.194 2024-02-27 23:09:53.194 1000 FEE 441217 1632 6091480 2024-02-27 23:11:45.505 2024-02-27 23:11:45.505 3000 FEE 440989 4989 6091481 2024-02-27 23:11:45.505 2024-02-27 23:11:45.505 27000 TIP 440989 19153 6091518 2024-02-27 23:12:27.788 2024-02-27 23:12:27.788 7700 FEE 441077 17592 6091519 2024-02-27 23:12:27.788 2024-02-27 23:12:27.788 69300 TIP 441077 7553 6091530 2024-02-27 23:12:28.441 2024-02-27 23:12:28.441 7700 FEE 441077 19581 6091531 2024-02-27 23:12:28.441 2024-02-27 23:12:28.441 69300 TIP 441077 19546 6091532 2024-02-27 23:12:28.492 2024-02-27 23:12:28.492 1000 FEE 218095 19346 6090834 2024-02-27 22:19:47.567 2024-02-27 22:19:47.567 1000 FEE 440898 21138 6090835 2024-02-27 22:19:47.567 2024-02-27 22:19:47.567 9000 TIP 440898 696 6090844 2024-02-27 22:19:48.379 2024-02-27 22:19:48.379 1000 FEE 440898 4035 6090845 2024-02-27 22:19:48.379 2024-02-27 22:19:48.379 9000 TIP 440898 20614 6090850 2024-02-27 22:19:48.896 2024-02-27 22:19:48.896 1000 FEE 440898 13599 6090851 2024-02-27 22:19:48.896 2024-02-27 22:19:48.896 9000 TIP 440898 10862 6090852 2024-02-27 22:19:49.081 2024-02-27 22:19:49.081 1000 FEE 440898 16816 6090853 2024-02-27 22:19:49.081 2024-02-27 22:19:49.081 9000 TIP 440898 16848 6090860 2024-02-27 22:19:49.643 2024-02-27 22:19:49.643 1000 FEE 440898 15941 6090861 2024-02-27 22:19:49.643 2024-02-27 22:19:49.643 9000 TIP 440898 5758 6090882 2024-02-27 22:22:20.732 2024-02-27 22:22:20.732 7700 FEE 441124 21060 6090883 2024-02-27 22:22:20.732 2024-02-27 22:22:20.732 69300 TIP 441124 686 6090888 2024-02-27 22:22:22.409 2024-02-27 22:22:22.409 7700 FEE 441124 15925 6090889 2024-02-27 22:22:22.409 2024-02-27 22:22:22.409 69300 TIP 441124 20340 6090890 2024-02-27 22:22:22.708 2024-02-27 22:22:22.708 7700 FEE 441124 19333 6090891 2024-02-27 22:22:22.708 2024-02-27 22:22:22.708 69300 TIP 441124 4798 6090908 2024-02-27 22:25:39.914 2024-02-27 22:25:39.914 100 FEE 441159 19005 6090909 2024-02-27 22:25:39.914 2024-02-27 22:25:39.914 900 TIP 441159 925 6090917 2024-02-27 22:26:41.549 2024-02-27 22:26:41.549 7700 FEE 441070 20502 6090918 2024-02-27 22:26:41.549 2024-02-27 22:26:41.549 69300 TIP 441070 20687 6090937 2024-02-27 22:26:47.756 2024-02-27 22:26:47.756 10000 FEE 441160 21159 6090938 2024-02-27 22:26:47.756 2024-02-27 22:26:47.756 90000 TIP 441160 1478 6090941 2024-02-27 22:26:58.482 2024-02-27 22:26:58.482 1000 FEE 441165 10063 6090947 2024-02-27 22:27:22.291 2024-02-27 22:27:22.291 3300 FEE 440692 4574 6090948 2024-02-27 22:27:22.291 2024-02-27 22:27:22.291 29700 TIP 440692 13575 6090962 2024-02-27 22:28:33.094 2024-02-27 22:28:33.094 3300 FEE 440870 17517 6090963 2024-02-27 22:28:33.094 2024-02-27 22:28:33.094 29700 TIP 440870 1429 6090974 2024-02-27 22:29:03.069 2024-02-27 22:29:03.069 3300 FEE 441139 16347 6090975 2024-02-27 22:29:03.069 2024-02-27 22:29:03.069 29700 TIP 441139 11522 6090983 2024-02-27 22:29:36.046 2024-02-27 22:29:36.046 1000 FEE 440989 1195 6090984 2024-02-27 22:29:36.046 2024-02-27 22:29:36.046 9000 TIP 440989 656 6091019 2024-02-27 22:37:16.907 2024-02-27 22:37:16.907 1000 FEE 441174 14370 6091026 2024-02-27 22:37:57.476 2024-02-27 22:37:57.476 1000 FEE 441175 5527 6091035 2024-02-27 22:39:13.562 2024-02-27 22:39:13.562 1000 FEE 440898 20897 6091036 2024-02-27 22:39:13.562 2024-02-27 22:39:13.562 9000 TIP 440898 644 6091041 2024-02-27 22:39:50.39 2024-02-27 22:39:50.39 1000 FEE 441178 1488 6091052 2024-02-27 22:41:24.928 2024-02-27 22:41:24.928 6600 FEE 441038 16097 6091053 2024-02-27 22:41:24.928 2024-02-27 22:41:24.928 59400 TIP 441038 19512 6091099 2024-02-27 22:44:10.053 2024-02-27 22:44:10.053 1000 FEE 441070 21600 6091100 2024-02-27 22:44:10.053 2024-02-27 22:44:10.053 9000 TIP 441070 1833 6091119 2024-02-27 22:46:38.978 2024-02-27 22:46:38.978 1000 FEE 441187 19346 6091126 2024-02-27 22:47:36.863 2024-02-27 22:47:36.863 1000 POLL 441054 21178 6091143 2024-02-27 22:49:15.444 2024-02-27 22:49:15.444 200 FEE 441158 18473 6091144 2024-02-27 22:49:15.444 2024-02-27 22:49:15.444 1800 TIP 441158 1626 6091162 2024-02-27 22:50:11.838 2024-02-27 22:50:11.838 1000 FEE 255908 20564 6091163 2024-02-27 22:50:11.838 2024-02-27 22:50:11.838 9000 TIP 255908 21136 6091185 2024-02-27 22:52:27.727 2024-02-27 22:52:27.727 1000 FEE 169575 18956 6091186 2024-02-27 22:52:27.727 2024-02-27 22:52:27.727 9000 TIP 169575 9107 6091187 2024-02-27 22:52:28.901 2024-02-27 22:52:28.901 1000 FEE 441196 1495 6091190 2024-02-27 22:52:36.134 2024-02-27 22:52:36.134 1000 FEE 441077 16747 6091191 2024-02-27 22:52:36.134 2024-02-27 22:52:36.134 9000 TIP 441077 929 6091192 2024-02-27 22:52:38.453 2024-02-27 22:52:38.453 1000 FEE 440857 16097 6091193 2024-02-27 22:52:38.453 2024-02-27 22:52:38.453 9000 TIP 440857 18815 6091202 2024-02-27 22:53:12.334 2024-02-27 22:53:12.334 1000 FEE 117409 4126 6091203 2024-02-27 22:53:12.334 2024-02-27 22:53:12.334 9000 TIP 117409 17109 6091207 2024-02-27 22:53:24.532 2024-02-27 22:53:24.532 100 FEE 441154 5195 6091208 2024-02-27 22:53:24.532 2024-02-27 22:53:24.532 900 TIP 441154 1970 6091211 2024-02-27 22:53:25.554 2024-02-27 22:53:25.554 3300 FEE 440959 3461 6091212 2024-02-27 22:53:25.554 2024-02-27 22:53:25.554 29700 TIP 440959 708 6091293 2024-02-27 23:00:04.237 2024-02-27 23:00:04.237 1000 FEE 441208 4304 6091328 2024-02-27 23:04:27.975 2024-02-27 23:04:27.975 1300 FEE 441011 8535 6091329 2024-02-27 23:04:27.975 2024-02-27 23:04:27.975 11700 TIP 441011 692 6091344 2024-02-27 23:04:32.012 2024-02-27 23:04:32.012 1300 FEE 441011 20302 6091345 2024-02-27 23:04:32.012 2024-02-27 23:04:32.012 11700 TIP 441011 1213 6091353 2024-02-27 23:05:53.379 2024-02-27 23:05:53.379 900 FEE 441210 3518 6091354 2024-02-27 23:05:53.379 2024-02-27 23:05:53.379 8100 TIP 441210 21457 6091367 2024-02-27 23:06:41.847 2024-02-27 23:06:41.847 1300 FEE 441027 11716 6091368 2024-02-27 23:06:41.847 2024-02-27 23:06:41.847 11700 TIP 441027 2639 6091389 2024-02-27 23:06:44.235 2024-02-27 23:06:44.235 1300 FEE 441027 11417 6091390 2024-02-27 23:06:44.235 2024-02-27 23:06:44.235 11700 TIP 441027 10063 6091393 2024-02-27 23:06:45.446 2024-02-27 23:06:45.446 1300 FEE 441027 20201 6091394 2024-02-27 23:06:45.446 2024-02-27 23:06:45.446 11700 TIP 441027 762 6091432 2024-02-27 23:06:51.798 2024-02-27 23:06:51.798 1300 FEE 441027 20099 6091433 2024-02-27 23:06:51.798 2024-02-27 23:06:51.798 11700 TIP 441027 21387 6091445 2024-02-27 23:07:42.251 2024-02-27 23:07:42.251 12800 FEE 441147 21042 6091446 2024-02-27 23:07:42.251 2024-02-27 23:07:42.251 115200 TIP 441147 979 6091448 2024-02-27 23:07:52.865 2024-02-27 23:07:52.865 10000 FEE 441212 2652 6091449 2024-02-27 23:07:52.865 2024-02-27 23:07:52.865 90000 TIP 441212 1114 6091499 2024-02-27 23:12:09.173 2024-02-27 23:12:09.173 7700 FEE 441106 9433 6091500 2024-02-27 23:12:09.173 2024-02-27 23:12:09.173 69300 TIP 441106 19773 6091507 2024-02-27 23:12:23.55 2024-02-27 23:12:23.55 0 FEE 441219 21494 6091516 2024-02-27 23:12:27.628 2024-02-27 23:12:27.628 7700 FEE 441077 16357 6091517 2024-02-27 23:12:27.628 2024-02-27 23:12:27.628 69300 TIP 441077 17157 6091556 2024-02-27 23:12:35.793 2024-02-27 23:12:35.793 7700 FEE 441162 5497 6091557 2024-02-27 23:12:35.793 2024-02-27 23:12:35.793 69300 TIP 441162 8326 6091568 2024-02-27 23:12:39.49 2024-02-27 23:12:39.49 7700 FEE 441077 650 6091569 2024-02-27 23:12:39.49 2024-02-27 23:12:39.49 69300 TIP 441077 642 6091572 2024-02-27 23:12:39.706 2024-02-27 23:12:39.706 7700 FEE 441077 16679 6091573 2024-02-27 23:12:39.706 2024-02-27 23:12:39.706 69300 TIP 441077 16351 6091584 2024-02-27 23:12:40.691 2024-02-27 23:12:40.691 7700 FEE 441077 676 6091585 2024-02-27 23:12:40.691 2024-02-27 23:12:40.691 69300 TIP 441077 2056 6091590 2024-02-27 23:12:41.021 2024-02-27 23:12:41.021 7700 FEE 441077 670 6091591 2024-02-27 23:12:41.021 2024-02-27 23:12:41.021 69300 TIP 441077 21329 6091648 2024-02-27 23:13:14.35 2024-02-27 23:13:14.35 1000 FEE 441211 20163 6091649 2024-02-27 23:13:14.35 2024-02-27 23:13:14.35 9000 TIP 441211 21088 6091669 2024-02-27 23:13:43.495 2024-02-27 23:13:43.495 3400 FEE 441171 4802 6091670 2024-02-27 23:13:43.495 2024-02-27 23:13:43.495 30600 TIP 441171 9482 6091687 2024-02-27 23:15:42.973 2024-02-27 23:15:42.973 1000 FEE 441222 1784 6091723 2024-02-27 23:21:47.623 2024-02-27 23:21:47.623 1000 FEE 441230 18618 6091729 2024-02-27 23:22:30.16 2024-02-27 23:22:30.16 4000 FEE 441193 20180 6091730 2024-02-27 23:22:30.16 2024-02-27 23:22:30.16 36000 TIP 441193 854 6091755 2024-02-27 23:25:15.141 2024-02-27 23:25:15.141 1300 FEE 441232 2196 6091756 2024-02-27 23:25:15.141 2024-02-27 23:25:15.141 11700 TIP 441232 19810 6091759 2024-02-27 23:25:16.477 2024-02-27 23:25:16.477 1300 FEE 441229 9333 6091061 2024-02-27 22:43:03.127 2024-02-27 22:43:03.127 1000 STREAM 141924 12346 6091090 2024-02-27 22:44:03.124 2024-02-27 22:44:03.124 1000 STREAM 141924 20599 6091107 2024-02-27 22:45:03.129 2024-02-27 22:45:03.129 1000 STREAM 141924 19105 6091117 2024-02-27 22:46:03.141 2024-02-27 22:46:03.141 1000 STREAM 141924 20201 6091168 2024-02-27 22:51:03.203 2024-02-27 22:51:03.203 1000 STREAM 141924 1439 6091218 2024-02-27 22:54:03.217 2024-02-27 22:54:03.217 1000 STREAM 141924 13931 6091222 2024-02-27 22:55:03.231 2024-02-27 22:55:03.231 1000 STREAM 141924 1631 6091299 2024-02-27 23:01:03.284 2024-02-27 23:01:03.284 1000 STREAM 141924 18243 6091303 2024-02-27 23:04:03.298 2024-02-27 23:04:03.298 1000 STREAM 141924 2061 6091348 2024-02-27 23:05:03.304 2024-02-27 23:05:03.304 1000 STREAM 141924 17218 6091434 2024-02-27 23:07:03.328 2024-02-27 23:07:03.328 1000 STREAM 141924 13854 6091450 2024-02-27 23:08:03.345 2024-02-27 23:08:03.345 1000 STREAM 141924 11038 6091452 2024-02-27 23:09:03.344 2024-02-27 23:09:03.344 1000 STREAM 141924 14941 6091130 2024-02-27 22:48:03.491 2024-02-27 22:48:03.491 1000 STREAM 141924 15336 6091161 2024-02-27 22:50:03.536 2024-02-27 22:50:03.536 1000 STREAM 141924 16282 6091154 2024-02-27 22:49:41.72 2024-02-27 22:49:41.72 9000 TIP 256032 657 6091157 2024-02-27 22:49:58.57 2024-02-27 22:49:58.57 1000 FEE 441187 1291 6091158 2024-02-27 22:49:58.57 2024-02-27 22:49:58.57 9000 TIP 441187 675 6091159 2024-02-27 22:50:00.795 2024-02-27 22:50:00.795 1000 FEE 256242 20646 6091160 2024-02-27 22:50:00.795 2024-02-27 22:50:00.795 9000 TIP 256242 8133 6091166 2024-02-27 22:50:56.498 2024-02-27 22:50:56.498 4000 FEE 441189 21393 6091167 2024-02-27 22:50:56.498 2024-02-27 22:50:56.498 36000 TIP 441189 16598 6091169 2024-02-27 22:51:31.037 2024-02-27 22:51:31.037 1000 FEE 441193 1712 6091175 2024-02-27 22:51:57.792 2024-02-27 22:51:57.792 3300 FEE 441124 15049 6091176 2024-02-27 22:51:57.792 2024-02-27 22:51:57.792 29700 TIP 441124 692 6091179 2024-02-27 22:51:58.311 2024-02-27 22:51:58.311 1000 FEE 441195 2367 6091219 2024-02-27 22:54:41.017 2024-02-27 22:54:41.017 1000 FEE 441200 21603 6091263 2024-02-27 22:58:50.645 2024-02-27 22:58:50.645 1300 FEE 441038 21349 6091264 2024-02-27 22:58:50.645 2024-02-27 22:58:50.645 11700 TIP 441038 21503 6091286 2024-02-27 22:59:12.168 2024-02-27 22:59:12.168 6900 FEE 440132 12609 6091287 2024-02-27 22:59:12.168 2024-02-27 22:59:12.168 62100 TIP 440132 21503 6091314 2024-02-27 23:04:26.551 2024-02-27 23:04:26.551 1300 FEE 441011 18199 6091315 2024-02-27 23:04:26.551 2024-02-27 23:04:26.551 11700 TIP 441011 18815 6091338 2024-02-27 23:04:30.196 2024-02-27 23:04:30.196 1300 FEE 441011 13753 6091339 2024-02-27 23:04:30.196 2024-02-27 23:04:30.196 11700 TIP 441011 19809 6091349 2024-02-27 23:05:23.789 2024-02-27 23:05:23.789 1000 FEE 441211 21532 6091381 2024-02-27 23:06:43.497 2024-02-27 23:06:43.497 1300 FEE 441027 5961 6091382 2024-02-27 23:06:43.497 2024-02-27 23:06:43.497 11700 TIP 441027 11329 6091437 2024-02-27 23:07:12.479 2024-02-27 23:07:12.479 1000 FEE 441213 5961 6091438 2024-02-27 23:07:12.479 2024-02-27 23:07:12.479 9000 TIP 441213 20606 6091468 2024-02-27 23:10:26.337 2024-02-27 23:10:26.337 9000 FEE 441198 18470 6091469 2024-02-27 23:10:26.337 2024-02-27 23:10:26.337 81000 TIP 441198 19156 6091484 2024-02-27 23:11:50.036 2024-02-27 23:11:50.036 3000 FEE 440989 21061 6091485 2024-02-27 23:11:50.036 2024-02-27 23:11:50.036 27000 TIP 440989 11395 6091506 2024-02-27 23:12:21.542 2024-02-27 23:12:21.542 1000 FEE 441220 19037 6091540 2024-02-27 23:12:29.003 2024-02-27 23:12:29.003 15400 FEE 441077 7673 6091541 2024-02-27 23:12:29.003 2024-02-27 23:12:29.003 138600 TIP 441077 21344 6091580 2024-02-27 23:12:40.39 2024-02-27 23:12:40.39 7700 FEE 441077 8037 6091581 2024-02-27 23:12:40.39 2024-02-27 23:12:40.39 69300 TIP 441077 19151 6091622 2024-02-27 23:13:11.789 2024-02-27 23:13:11.789 2000 FEE 441211 18387 6091623 2024-02-27 23:13:11.789 2024-02-27 23:13:11.789 18000 TIP 441211 1512 6091628 2024-02-27 23:13:12.35 2024-02-27 23:13:12.35 1000 FEE 441211 19033 6091629 2024-02-27 23:13:12.35 2024-02-27 23:13:12.35 9000 TIP 441211 2537 6091634 2024-02-27 23:13:12.962 2024-02-27 23:13:12.962 1000 FEE 441211 19005 6091635 2024-02-27 23:13:12.962 2024-02-27 23:13:12.962 9000 TIP 441211 17713 6091644 2024-02-27 23:13:13.904 2024-02-27 23:13:13.904 1000 FEE 441211 9450 6091645 2024-02-27 23:13:13.904 2024-02-27 23:13:13.904 9000 TIP 441211 21612 6091658 2024-02-27 23:13:15.271 2024-02-27 23:13:15.271 1000 FEE 441211 700 6091659 2024-02-27 23:13:15.271 2024-02-27 23:13:15.271 9000 TIP 441211 15806 6091671 2024-02-27 23:13:48.869 2024-02-27 23:13:48.869 100000 FEE 441048 20291 6091672 2024-02-27 23:13:48.869 2024-02-27 23:13:48.869 900000 TIP 441048 20636 6091693 2024-02-27 23:16:00.858 2024-02-27 23:16:00.858 1000 FEE 403893 20110 6091694 2024-02-27 23:16:00.858 2024-02-27 23:16:00.858 9000 TIP 403893 21207 6091714 2024-02-27 23:19:42.454 2024-02-27 23:19:42.454 900 FEE 441227 12291 6091715 2024-02-27 23:19:42.454 2024-02-27 23:19:42.454 8100 TIP 441227 15858 6091716 2024-02-27 23:19:45.917 2024-02-27 23:19:45.917 9000 FEE 441227 633 6091717 2024-02-27 23:19:45.917 2024-02-27 23:19:45.917 81000 TIP 441227 2774 6091725 2024-02-27 23:22:09.152 2024-02-27 23:22:09.152 1000 FEE 441229 1389 6091726 2024-02-27 23:22:09.152 2024-02-27 23:22:09.152 9000 TIP 441229 8287 6091761 2024-02-27 23:25:16.679 2024-02-27 23:25:16.679 1300 FEE 441229 12606 6091762 2024-02-27 23:25:16.679 2024-02-27 23:25:16.679 11700 TIP 441229 2188 6091769 2024-02-27 23:25:19.031 2024-02-27 23:25:19.031 1300 FEE 441232 18615 6091770 2024-02-27 23:25:19.031 2024-02-27 23:25:19.031 11700 TIP 441232 15337 6091792 2024-02-27 23:26:56.857 2024-02-27 23:26:56.857 1000 FEE 441238 679 6091793 2024-02-27 23:26:56.857 2024-02-27 23:26:56.857 9000 TIP 441238 1307 6091795 2024-02-27 23:26:58.421 2024-02-27 23:26:58.421 900000 FEE 441238 11075 6091796 2024-02-27 23:26:58.421 2024-02-27 23:26:58.421 8100000 TIP 441238 10731 6091800 2024-02-27 23:27:13.852 2024-02-27 23:27:13.852 1000 FEE 441238 8916 6091801 2024-02-27 23:27:13.852 2024-02-27 23:27:13.852 9000 TIP 441238 2309 6091807 2024-02-27 23:27:14.572 2024-02-27 23:27:14.572 1000 FEE 441238 20302 6091808 2024-02-27 23:27:14.572 2024-02-27 23:27:14.572 9000 TIP 441238 18507 6091821 2024-02-27 23:27:17.672 2024-02-27 23:27:17.672 1000 FEE 441238 1800 6091822 2024-02-27 23:27:17.672 2024-02-27 23:27:17.672 9000 TIP 441238 18446 6091843 2024-02-27 23:29:47.884 2024-02-27 23:29:47.884 100 FEE 441092 5069 6091844 2024-02-27 23:29:47.884 2024-02-27 23:29:47.884 900 TIP 441092 4084 6091852 2024-02-27 23:31:37.053 2024-02-27 23:31:37.053 100 FEE 441227 13406 6091853 2024-02-27 23:31:37.053 2024-02-27 23:31:37.053 900 TIP 441227 10359 6091894 2024-02-27 23:42:42.752 2024-02-27 23:42:42.752 2100 FEE 441246 21627 6091895 2024-02-27 23:42:42.752 2024-02-27 23:42:42.752 18900 TIP 441246 14278 6091902 2024-02-27 23:43:11.123 2024-02-27 23:43:11.123 0 FEE 441250 11898 6091907 2024-02-27 23:44:33.097 2024-02-27 23:44:33.097 1000 FEE 441252 5746 6091925 2024-02-27 23:47:52.592 2024-02-27 23:47:52.592 2100 FEE 441077 1519 6091926 2024-02-27 23:47:52.592 2024-02-27 23:47:52.592 18900 TIP 441077 18494 6091946 2024-02-27 23:48:10.32 2024-02-27 23:48:10.32 1000 POLL 440725 1505 6091950 2024-02-27 23:49:13.091 2024-02-27 23:49:13.091 0 FEE 441253 4692 6091953 2024-02-27 23:51:00.156 2024-02-27 23:51:00.156 0 FEE 441253 5449 6092006 2024-02-28 00:05:38.982 2024-02-28 00:05:38.982 10000 FEE 441077 13378 6092007 2024-02-28 00:05:38.982 2024-02-28 00:05:38.982 90000 TIP 441077 20326 6092008 2024-02-28 00:05:53.555 2024-02-28 00:05:53.555 1000 FEE 441263 5759 6092015 2024-02-28 00:06:21.841 2024-02-28 00:06:21.841 900 FEE 441247 16704 6092016 2024-02-28 00:06:21.841 2024-02-28 00:06:21.841 8100 TIP 441247 12049 6092028 2024-02-28 00:07:13.861 2024-02-28 00:07:13.861 1000 FEE 440986 20264 6092029 2024-02-28 00:07:13.861 2024-02-28 00:07:13.861 9000 TIP 440986 2329 6092066 2024-02-28 00:12:27.774 2024-02-28 00:12:27.774 1000 FEE 441168 18269 6092067 2024-02-28 00:12:27.774 2024-02-28 00:12:27.774 9000 TIP 441168 17011 6092087 2024-02-28 00:13:21.206 2024-02-28 00:13:21.206 10000 FEE 441238 18679 6091173 2024-02-27 22:51:55.937 2024-02-27 22:51:55.937 1000 FEE 132773 20120 6091174 2024-02-27 22:51:55.937 2024-02-27 22:51:55.937 9000 TIP 132773 649 6091177 2024-02-27 22:51:57.878 2024-02-27 22:51:57.878 13800 FEE 441174 626 6091178 2024-02-27 22:51:57.878 2024-02-27 22:51:57.878 124200 TIP 441174 976 6091189 2024-02-27 22:52:34.126 2024-02-27 22:52:34.126 1000 POLL 441054 4538 6091213 2024-02-27 22:53:28.031 2024-02-27 22:53:28.031 9000 FEE 441154 17331 6091214 2024-02-27 22:53:28.031 2024-02-27 22:53:28.031 81000 TIP 441154 2123 6091217 2024-02-27 22:53:46.077 2024-02-27 22:53:46.077 1000000 FEE 441199 13216 6091242 2024-02-27 22:58:08.749 2024-02-27 22:58:08.749 1000 FEE 441205 11458 6091255 2024-02-27 22:58:26.79 2024-02-27 22:58:26.79 1000 FEE 440916 4459 6091256 2024-02-27 22:58:26.79 2024-02-27 22:58:26.79 9000 TIP 440916 21547 6091267 2024-02-27 22:58:51.037 2024-02-27 22:58:51.037 1300 FEE 441038 18829 6091268 2024-02-27 22:58:51.037 2024-02-27 22:58:51.037 11700 TIP 441038 18667 6091275 2024-02-27 22:58:52.324 2024-02-27 22:58:52.324 5200 FEE 441038 18393 6091276 2024-02-27 22:58:52.324 2024-02-27 22:58:52.324 46800 TIP 441038 10359 6091279 2024-02-27 22:58:54.269 2024-02-27 22:58:54.269 1300 FEE 441038 4574 6091280 2024-02-27 22:58:54.269 2024-02-27 22:58:54.269 11700 TIP 441038 8045 6091332 2024-02-27 23:04:28.621 2024-02-27 23:04:28.621 1300 FEE 441011 21140 6091333 2024-02-27 23:04:28.621 2024-02-27 23:04:28.621 11700 TIP 441011 18392 6091355 2024-02-27 23:05:54.151 2024-02-27 23:05:54.151 9000 FEE 441210 19581 6091356 2024-02-27 23:05:54.151 2024-02-27 23:05:54.151 81000 TIP 441210 5557 6091359 2024-02-27 23:06:41.076 2024-02-27 23:06:41.076 1300 FEE 441027 17727 6091360 2024-02-27 23:06:41.076 2024-02-27 23:06:41.076 11700 TIP 441027 18629 6091361 2024-02-27 23:06:41.262 2024-02-27 23:06:41.262 1300 FEE 441027 21214 6091362 2024-02-27 23:06:41.262 2024-02-27 23:06:41.262 11700 TIP 441027 10398 6091363 2024-02-27 23:06:41.454 2024-02-27 23:06:41.454 1300 FEE 441027 4763 6091364 2024-02-27 23:06:41.454 2024-02-27 23:06:41.454 11700 TIP 441027 21457 6091385 2024-02-27 23:06:43.881 2024-02-27 23:06:43.881 1300 FEE 441027 9982 6091386 2024-02-27 23:06:43.881 2024-02-27 23:06:43.881 11700 TIP 441027 21356 6091403 2024-02-27 23:06:46.752 2024-02-27 23:06:46.752 1300 FEE 441027 652 6091404 2024-02-27 23:06:46.752 2024-02-27 23:06:46.752 11700 TIP 441027 8004 6091407 2024-02-27 23:06:47.104 2024-02-27 23:06:47.104 1300 FEE 441027 7998 6091408 2024-02-27 23:06:47.104 2024-02-27 23:06:47.104 11700 TIP 441027 6393 6091413 2024-02-27 23:06:47.887 2024-02-27 23:06:47.887 1300 FEE 441027 15858 6091414 2024-02-27 23:06:47.887 2024-02-27 23:06:47.887 11700 TIP 441027 2722 6091479 2024-02-27 23:11:19.542 2024-02-27 23:11:19.542 100000 FEE 441218 13599 6091490 2024-02-27 23:11:54.21 2024-02-27 23:11:54.21 7700 FEE 441171 1733 6091491 2024-02-27 23:11:54.21 2024-02-27 23:11:54.21 69300 TIP 441171 698 6091492 2024-02-27 23:11:56.495 2024-02-27 23:11:56.495 7700 FEE 441150 651 6091493 2024-02-27 23:11:56.495 2024-02-27 23:11:56.495 69300 TIP 441150 13782 6091526 2024-02-27 23:12:28.209 2024-02-27 23:12:28.209 7700 FEE 441077 21406 6091527 2024-02-27 23:12:28.209 2024-02-27 23:12:28.209 69300 TIP 441077 10934 6091544 2024-02-27 23:12:29.341 2024-02-27 23:12:29.341 7700 FEE 441077 15488 6091545 2024-02-27 23:12:29.341 2024-02-27 23:12:29.341 69300 TIP 441077 18232 6091552 2024-02-27 23:12:30.846 2024-02-27 23:12:30.846 7700 FEE 441077 4314 6091553 2024-02-27 23:12:30.846 2024-02-27 23:12:30.846 69300 TIP 441077 1135 6091562 2024-02-27 23:12:39.182 2024-02-27 23:12:39.182 7700 FEE 441077 5306 6091563 2024-02-27 23:12:39.182 2024-02-27 23:12:39.182 69300 TIP 441077 19777 6091602 2024-02-27 23:13:05.385 2024-02-27 23:13:05.385 1000 FEE 101739 11956 6091603 2024-02-27 23:13:05.385 2024-02-27 23:13:05.385 9000 TIP 101739 20479 6091614 2024-02-27 23:13:10.508 2024-02-27 23:13:10.508 1000 FEE 441211 21352 6091615 2024-02-27 23:13:10.508 2024-02-27 23:13:10.508 9000 TIP 441211 13399 6091630 2024-02-27 23:13:12.564 2024-02-27 23:13:12.564 1000 FEE 441211 14381 6091631 2024-02-27 23:13:12.564 2024-02-27 23:13:12.564 9000 TIP 441211 20981 6091654 2024-02-27 23:13:14.994 2024-02-27 23:13:14.994 1000 FEE 441211 6393 6091655 2024-02-27 23:13:14.994 2024-02-27 23:13:14.994 9000 TIP 441211 18945 6091668 2024-02-27 23:13:40.685 2024-02-27 23:13:40.685 1000 FEE 441221 17157 6091681 2024-02-27 23:15:07.306 2024-02-27 23:15:07.306 1000 FEE 441193 7097 6091682 2024-02-27 23:15:07.306 2024-02-27 23:15:07.306 9000 TIP 441193 17682 6091683 2024-02-27 23:15:07.72 2024-02-27 23:15:07.72 1000 FEE 441193 18380 6091684 2024-02-27 23:15:07.72 2024-02-27 23:15:07.72 9000 TIP 441193 10013 6091690 2024-02-27 23:15:55.045 2024-02-27 23:15:55.045 1000 FEE 441223 8045 6091712 2024-02-27 23:19:42.377 2024-02-27 23:19:42.377 1000 FEE 441215 11165 6091713 2024-02-27 23:19:42.377 2024-02-27 23:19:42.377 9000 TIP 441215 2309 6091718 2024-02-27 23:19:57.107 2024-02-27 23:19:57.107 10000 FEE 440898 20606 6091719 2024-02-27 23:19:57.107 2024-02-27 23:19:57.107 90000 TIP 440898 9992 6091731 2024-02-27 23:22:32.047 2024-02-27 23:22:32.047 1000 FEE 441218 20701 6091732 2024-02-27 23:22:32.047 2024-02-27 23:22:32.047 9000 TIP 441218 897 6091737 2024-02-27 23:22:55.034 2024-02-27 23:22:55.034 1000 FEE 441225 18774 6091738 2024-02-27 23:22:55.034 2024-02-27 23:22:55.034 9000 TIP 441225 715 6091740 2024-02-27 23:23:29.509 2024-02-27 23:23:29.509 100 FEE 441178 16876 6091741 2024-02-27 23:23:29.509 2024-02-27 23:23:29.509 900 TIP 441178 18040 6091745 2024-02-27 23:24:12.907 2024-02-27 23:24:12.907 77000 DONT_LIKE_THIS 441231 4819 6091776 2024-02-27 23:26:11.508 2024-02-27 23:26:11.508 1000 FEE 441237 13217 6091777 2024-02-27 23:26:28.433 2024-02-27 23:26:28.433 125000 FEE 441238 20660 6091802 2024-02-27 23:27:13.955 2024-02-27 23:27:13.955 1000 FEE 441240 861 6091803 2024-02-27 23:27:14.047 2024-02-27 23:27:14.047 1000 FEE 441238 976 6091804 2024-02-27 23:27:14.047 2024-02-27 23:27:14.047 9000 TIP 441238 21338 6091833 2024-02-27 23:27:30.943 2024-02-27 23:27:30.943 1000 FEE 427485 21242 6091834 2024-02-27 23:27:30.943 2024-02-27 23:27:30.943 9000 TIP 427485 3745 6091871 2024-02-27 23:35:34.201 2024-02-27 23:35:34.201 0 FEE 441238 2681 6091872 2024-02-27 23:35:37.352 2024-02-27 23:35:37.352 25600 FEE 440663 1471 6091873 2024-02-27 23:35:37.352 2024-02-27 23:35:37.352 230400 TIP 440663 21453 6091880 2024-02-27 23:38:19.676 2024-02-27 23:38:19.676 7700 FEE 440898 21269 6091881 2024-02-27 23:38:19.676 2024-02-27 23:38:19.676 69300 TIP 440898 1718 6091888 2024-02-27 23:41:40.931 2024-02-27 23:41:40.931 1000 FEE 441248 19121 6091914 2024-02-27 23:47:05.609 2024-02-27 23:47:05.609 0 FEE 441253 21365 6091915 2024-02-27 23:47:46.661 2024-02-27 23:47:46.661 4000 FEE 441087 16847 6091184 2024-02-27 22:52:03.201 2024-02-27 22:52:03.201 1000 STREAM 141924 9496 6091199 2024-02-27 22:53:03.189 2024-02-27 22:53:03.189 1000 STREAM 141924 7998 6091232 2024-02-27 22:56:03.239 2024-02-27 22:56:03.239 1000 STREAM 141924 21057 6091239 2024-02-27 22:57:03.247 2024-02-27 22:57:03.247 1000 STREAM 141924 19458 6091240 2024-02-27 22:58:03.266 2024-02-27 22:58:03.266 1000 STREAM 141924 20470 6091285 2024-02-27 22:59:03.269 2024-02-27 22:59:03.269 1000 STREAM 141924 21164 6091292 2024-02-27 23:00:03.314 2024-02-27 23:00:03.314 1000 STREAM 141924 9705 6091301 2024-02-27 23:02:03.288 2024-02-27 23:02:03.288 1000 STREAM 141924 20137 6091302 2024-02-27 23:03:03.292 2024-02-27 23:03:03.292 1000 STREAM 141924 1124 6091357 2024-02-27 23:06:03.319 2024-02-27 23:06:03.319 1000 STREAM 141924 15463 6091272 2024-02-27 22:58:51.405 2024-02-27 22:58:51.405 11700 TIP 441038 8380 6091277 2024-02-27 22:58:53.345 2024-02-27 22:58:53.345 1300 FEE 441038 21222 6091278 2024-02-27 22:58:53.345 2024-02-27 22:58:53.345 11700 TIP 441038 20897 6091320 2024-02-27 23:04:27.084 2024-02-27 23:04:27.084 1300 FEE 441011 21140 6091321 2024-02-27 23:04:27.084 2024-02-27 23:04:27.084 11700 TIP 441011 14909 6091330 2024-02-27 23:04:28.376 2024-02-27 23:04:28.376 1300 FEE 441011 16357 6091331 2024-02-27 23:04:28.376 2024-02-27 23:04:28.376 11700 TIP 441011 17693 6091350 2024-02-27 23:05:52.785 2024-02-27 23:05:52.785 1000 FEE 441212 20454 6091369 2024-02-27 23:06:42.02 2024-02-27 23:06:42.02 1300 FEE 441027 21012 6091370 2024-02-27 23:06:42.02 2024-02-27 23:06:42.02 11700 TIP 441027 1970 6091371 2024-02-27 23:06:42.188 2024-02-27 23:06:42.188 1300 FEE 441027 6471 6091372 2024-02-27 23:06:42.188 2024-02-27 23:06:42.188 11700 TIP 441027 17446 6091383 2024-02-27 23:06:43.727 2024-02-27 23:06:43.727 1300 FEE 441027 954 6091384 2024-02-27 23:06:43.727 2024-02-27 23:06:43.727 11700 TIP 441027 19976 6091391 2024-02-27 23:06:44.754 2024-02-27 23:06:44.754 2600 FEE 441027 20120 6091392 2024-02-27 23:06:44.754 2024-02-27 23:06:44.754 23400 TIP 441027 11873 6091395 2024-02-27 23:06:45.623 2024-02-27 23:06:45.623 1300 FEE 441027 15063 6091396 2024-02-27 23:06:45.623 2024-02-27 23:06:45.623 11700 TIP 441027 1512 6091411 2024-02-27 23:06:47.722 2024-02-27 23:06:47.722 1300 FEE 441027 999 6091412 2024-02-27 23:06:47.722 2024-02-27 23:06:47.722 11700 TIP 441027 12561 6091415 2024-02-27 23:06:48.266 2024-02-27 23:06:48.266 1300 FEE 441027 19417 6091416 2024-02-27 23:06:48.266 2024-02-27 23:06:48.266 11700 TIP 441027 999 6091428 2024-02-27 23:06:51.232 2024-02-27 23:06:51.232 1300 FEE 441027 647 6091429 2024-02-27 23:06:51.232 2024-02-27 23:06:51.232 11700 TIP 441027 9906 6091441 2024-02-27 23:07:25.042 2024-02-27 23:07:25.042 1000 FEE 441211 21057 6091442 2024-02-27 23:07:25.042 2024-02-27 23:07:25.042 9000 TIP 441211 1173 6091447 2024-02-27 23:07:52.024 2024-02-27 23:07:52.024 100000 FEE 441215 2264 6091454 2024-02-27 23:09:35.925 2024-02-27 23:09:35.925 10000 FEE 433732 9356 6091455 2024-02-27 23:09:35.925 2024-02-27 23:09:35.925 90000 TIP 433732 756 6091461 2024-02-27 23:10:01.459 2024-02-27 23:10:01.459 1000 FEE 47101 998 6091462 2024-02-27 23:10:01.459 2024-02-27 23:10:01.459 9000 TIP 47101 13544 6091473 2024-02-27 23:11:11.096 2024-02-27 23:11:11.096 3000 FEE 440663 12102 6091474 2024-02-27 23:11:11.096 2024-02-27 23:11:11.096 27000 TIP 440663 1298 6091475 2024-02-27 23:11:11.257 2024-02-27 23:11:11.257 3000 FEE 440663 20681 6091476 2024-02-27 23:11:11.257 2024-02-27 23:11:11.257 27000 TIP 440663 20581 6091477 2024-02-27 23:11:11.381 2024-02-27 23:11:11.381 3000 FEE 440663 19031 6091478 2024-02-27 23:11:11.381 2024-02-27 23:11:11.381 27000 TIP 440663 14818 6091482 2024-02-27 23:11:45.666 2024-02-27 23:11:45.666 3000 FEE 440989 17094 6091483 2024-02-27 23:11:45.666 2024-02-27 23:11:45.666 27000 TIP 440989 20987 6091508 2024-02-27 23:12:27.009 2024-02-27 23:12:27.009 7700 FEE 441077 678 6091509 2024-02-27 23:12:27.009 2024-02-27 23:12:27.009 69300 TIP 441077 11819 6091520 2024-02-27 23:12:27.913 2024-02-27 23:12:27.913 7700 FEE 441077 1738 6091521 2024-02-27 23:12:27.913 2024-02-27 23:12:27.913 69300 TIP 441077 12821 6091524 2024-02-27 23:12:28.123 2024-02-27 23:12:28.123 7700 FEE 441077 4076 6091525 2024-02-27 23:12:28.123 2024-02-27 23:12:28.123 69300 TIP 441077 20636 6091534 2024-02-27 23:12:28.546 2024-02-27 23:12:28.546 7700 FEE 441077 1493 6091535 2024-02-27 23:12:28.546 2024-02-27 23:12:28.546 69300 TIP 441077 4502 6091536 2024-02-27 23:12:28.658 2024-02-27 23:12:28.658 7700 FEE 441077 4654 6091537 2024-02-27 23:12:28.658 2024-02-27 23:12:28.658 69300 TIP 441077 18679 6091538 2024-02-27 23:12:28.776 2024-02-27 23:12:28.776 7700 FEE 441077 15474 6091539 2024-02-27 23:12:28.776 2024-02-27 23:12:28.776 69300 TIP 441077 6687 6091578 2024-02-27 23:12:40.157 2024-02-27 23:12:40.157 15400 FEE 441077 7891 6091579 2024-02-27 23:12:40.157 2024-02-27 23:12:40.157 138600 TIP 441077 12057 6091594 2024-02-27 23:12:41.213 2024-02-27 23:12:41.213 7700 FEE 441077 10112 6091595 2024-02-27 23:12:41.213 2024-02-27 23:12:41.213 69300 TIP 441077 9336 6091599 2024-02-27 23:12:58.87 2024-02-27 23:12:58.87 1000 FEE 263626 3396 6091600 2024-02-27 23:12:58.87 2024-02-27 23:12:58.87 9000 TIP 263626 11328 6091610 2024-02-27 23:13:10.124 2024-02-27 23:13:10.124 1000 FEE 441211 1012 6091611 2024-02-27 23:13:10.124 2024-02-27 23:13:10.124 9000 TIP 441211 20577 6091616 2024-02-27 23:13:10.716 2024-02-27 23:13:10.716 1000 FEE 441211 16867 6091617 2024-02-27 23:13:10.716 2024-02-27 23:13:10.716 9000 TIP 441211 20163 6091632 2024-02-27 23:13:12.72 2024-02-27 23:13:12.72 1000 FEE 441211 20430 6091633 2024-02-27 23:13:12.72 2024-02-27 23:13:12.72 9000 TIP 441211 19105 6091636 2024-02-27 23:13:13.112 2024-02-27 23:13:13.112 1000 FEE 441211 2188 6091637 2024-02-27 23:13:13.112 2024-02-27 23:13:13.112 9000 TIP 441211 1970 6091650 2024-02-27 23:13:14.524 2024-02-27 23:13:14.524 1000 FEE 441211 14688 6091651 2024-02-27 23:13:14.524 2024-02-27 23:13:14.524 9000 TIP 441211 14705 6091662 2024-02-27 23:13:15.871 2024-02-27 23:13:15.871 2000 FEE 441211 21389 6091663 2024-02-27 23:13:15.871 2024-02-27 23:13:15.871 18000 TIP 441211 5759 6091688 2024-02-27 23:15:54.681 2024-02-27 23:15:54.681 1000 FEE 70739 21591 6091689 2024-02-27 23:15:54.681 2024-02-27 23:15:54.681 9000 TIP 70739 17696 6091691 2024-02-27 23:15:58.185 2024-02-27 23:15:58.185 1000 FEE 42310 21589 6091692 2024-02-27 23:15:58.185 2024-02-27 23:15:58.185 9000 TIP 42310 9843 6091696 2024-02-27 23:16:17.402 2024-02-27 23:16:17.402 1000 FEE 441224 12562 6091703 2024-02-27 23:17:45.479 2024-02-27 23:17:45.479 100000 FEE 441226 19449 6091778 2024-02-27 23:26:38.514 2024-02-27 23:26:38.514 1000 FEE 424280 13553 6091779 2024-02-27 23:26:38.514 2024-02-27 23:26:38.514 9000 TIP 424280 21412 6091788 2024-02-27 23:26:53.852 2024-02-27 23:26:53.852 9900 FEE 441238 6229 6091789 2024-02-27 23:26:53.852 2024-02-27 23:26:53.852 89100 TIP 441238 12245 6091790 2024-02-27 23:26:55.917 2024-02-27 23:26:55.917 90000 FEE 441238 12921 6091791 2024-02-27 23:26:55.917 2024-02-27 23:26:55.917 810000 TIP 441238 6798 6091811 2024-02-27 23:27:15.576 2024-02-27 23:27:15.576 1000 FEE 441238 1046 6091812 2024-02-27 23:27:15.576 2024-02-27 23:27:15.576 9000 TIP 441238 18264 6091829 2024-02-27 23:27:19.243 2024-02-27 23:27:19.243 1000 FEE 441238 7425 6091830 2024-02-27 23:27:19.243 2024-02-27 23:27:19.243 9000 TIP 441238 19329 6091857 2024-02-27 23:32:39.739 2024-02-27 23:32:39.739 1000 FEE 441245 20479 6091876 2024-02-27 23:37:43.099 2024-02-27 23:37:43.099 100 FEE 440703 2204 6091877 2024-02-27 23:37:43.099 2024-02-27 23:37:43.099 900 TIP 440703 16442 6091304 2024-02-27 23:04:25.46 2024-02-27 23:04:25.46 1300 FEE 441011 14552 6091305 2024-02-27 23:04:25.46 2024-02-27 23:04:25.46 11700 TIP 441011 19615 6091316 2024-02-27 23:04:26.713 2024-02-27 23:04:26.713 1300 FEE 441011 2293 6091317 2024-02-27 23:04:26.713 2024-02-27 23:04:26.713 11700 TIP 441011 9366 6091324 2024-02-27 23:04:27.429 2024-02-27 23:04:27.429 1300 FEE 441011 2844 6091325 2024-02-27 23:04:27.429 2024-02-27 23:04:27.429 11700 TIP 441011 15160 6091346 2024-02-27 23:04:32.666 2024-02-27 23:04:32.666 1300 FEE 441011 18051 6091347 2024-02-27 23:04:32.666 2024-02-27 23:04:32.666 11700 TIP 441011 15367 6091379 2024-02-27 23:06:43.303 2024-02-27 23:06:43.303 3900 FEE 441027 18556 6091380 2024-02-27 23:06:43.303 2024-02-27 23:06:43.303 35100 TIP 441027 8245 6091397 2024-02-27 23:06:45.785 2024-02-27 23:06:45.785 1300 FEE 441027 20691 6091398 2024-02-27 23:06:45.785 2024-02-27 23:06:45.785 11700 TIP 441027 1959 6091426 2024-02-27 23:06:50.624 2024-02-27 23:06:50.624 1300 FEE 441027 10818 6091427 2024-02-27 23:06:50.624 2024-02-27 23:06:50.624 11700 TIP 441027 807 6091430 2024-02-27 23:06:51.5 2024-02-27 23:06:51.5 1300 FEE 441027 17519 6091431 2024-02-27 23:06:51.5 2024-02-27 23:06:51.5 11700 TIP 441027 9982 6091439 2024-02-27 23:07:19.318 2024-02-27 23:07:19.318 2500 FEE 440959 20922 6091440 2024-02-27 23:07:19.318 2024-02-27 23:07:19.318 22500 TIP 440959 14515 6091451 2024-02-27 23:08:55.192 2024-02-27 23:08:55.192 0 FEE 441213 21401 6091510 2024-02-27 23:12:27.174 2024-02-27 23:12:27.174 7700 FEE 441077 5129 6091511 2024-02-27 23:12:27.174 2024-02-27 23:12:27.174 69300 TIP 441077 14795 6091514 2024-02-27 23:12:27.507 2024-02-27 23:12:27.507 7700 FEE 441077 889 6091515 2024-02-27 23:12:27.507 2024-02-27 23:12:27.507 69300 TIP 441077 2639 6091522 2024-02-27 23:12:27.99 2024-02-27 23:12:27.99 7700 FEE 441077 19375 6091523 2024-02-27 23:12:27.99 2024-02-27 23:12:27.99 69300 TIP 441077 3683 6091558 2024-02-27 23:12:36.829 2024-02-27 23:12:36.829 7700 FEE 441149 19902 6091559 2024-02-27 23:12:36.829 2024-02-27 23:12:36.829 69300 TIP 441149 21585 6091560 2024-02-27 23:12:38.979 2024-02-27 23:12:38.979 7700 FEE 441077 985 6091561 2024-02-27 23:12:38.979 2024-02-27 23:12:38.979 69300 TIP 441077 6164 6091570 2024-02-27 23:12:39.592 2024-02-27 23:12:39.592 7700 FEE 441077 16351 6091571 2024-02-27 23:12:39.592 2024-02-27 23:12:39.592 69300 TIP 441077 15560 6091598 2024-02-27 23:12:53.541 2024-02-27 23:12:53.541 100000 DONT_LIKE_THIS 441124 18815 6091606 2024-02-27 23:13:09.724 2024-02-27 23:13:09.724 1000 FEE 441211 5825 6091607 2024-02-27 23:13:09.724 2024-02-27 23:13:09.724 9000 TIP 441211 3745 6091620 2024-02-27 23:13:11.383 2024-02-27 23:13:11.383 1000 FEE 441211 5499 6091621 2024-02-27 23:13:11.383 2024-02-27 23:13:11.383 9000 TIP 441211 5171 6091626 2024-02-27 23:13:12.186 2024-02-27 23:13:12.186 1000 FEE 441211 18727 6091627 2024-02-27 23:13:12.186 2024-02-27 23:13:12.186 9000 TIP 441211 7766 6091652 2024-02-27 23:13:14.728 2024-02-27 23:13:14.728 1000 FEE 441211 11820 6091653 2024-02-27 23:13:14.728 2024-02-27 23:13:14.728 9000 TIP 441211 20981 6091656 2024-02-27 23:13:15.105 2024-02-27 23:13:15.105 1000 FEE 441211 5829 6091657 2024-02-27 23:13:15.105 2024-02-27 23:13:15.105 9000 TIP 441211 21083 6091679 2024-02-27 23:15:07.101 2024-02-27 23:15:07.101 1000 FEE 441193 20624 6091680 2024-02-27 23:15:07.101 2024-02-27 23:15:07.101 9000 TIP 441193 19352 6091697 2024-02-27 23:16:39.582 2024-02-27 23:16:39.582 1000 FEE 441225 9184 6091706 2024-02-27 23:18:27.435 2024-02-27 23:18:27.435 1000 FEE 441228 1094 6091742 2024-02-27 23:23:40.925 2024-02-27 23:23:40.925 100000 FEE 441231 18641 6091748 2024-02-27 23:24:27.37 2024-02-27 23:24:27.37 1000 FEE 441234 17714 6091749 2024-02-27 23:24:41.901 2024-02-27 23:24:41.901 100 FEE 441225 20225 6091750 2024-02-27 23:24:41.901 2024-02-27 23:24:41.901 900 TIP 441225 4776 6091753 2024-02-27 23:25:14.916 2024-02-27 23:25:14.916 1300 FEE 441232 831 6091754 2024-02-27 23:25:14.916 2024-02-27 23:25:14.916 11700 TIP 441232 18842 6091763 2024-02-27 23:25:17.189 2024-02-27 23:25:17.189 1300 FEE 441229 10112 6091764 2024-02-27 23:25:17.189 2024-02-27 23:25:17.189 11700 TIP 441229 739 6091765 2024-02-27 23:25:18.313 2024-02-27 23:25:18.313 1300 FEE 441232 21494 6091766 2024-02-27 23:25:18.313 2024-02-27 23:25:18.313 11700 TIP 441232 5557 6091786 2024-02-27 23:26:52.601 2024-02-27 23:26:52.601 100 FEE 441238 7913 6091787 2024-02-27 23:26:52.601 2024-02-27 23:26:52.601 900 TIP 441238 5128 6091805 2024-02-27 23:27:14.333 2024-02-27 23:27:14.333 1000 FEE 441238 17523 6091806 2024-02-27 23:27:14.333 2024-02-27 23:27:14.333 9000 TIP 441238 9336 6091847 2024-02-27 23:30:39.299 2024-02-27 23:30:39.299 10000 FEE 441239 10638 6091848 2024-02-27 23:30:39.299 2024-02-27 23:30:39.299 90000 TIP 441239 676 6091850 2024-02-27 23:31:29.038 2024-02-27 23:31:29.038 3300 FEE 441169 5495 6091851 2024-02-27 23:31:29.038 2024-02-27 23:31:29.038 29700 TIP 441169 21014 6091861 2024-02-27 23:33:31.734 2024-02-27 23:33:31.734 6400 FEE 441238 1584 6091862 2024-02-27 23:33:31.734 2024-02-27 23:33:31.734 57600 TIP 441238 20998 6091889 2024-02-27 23:41:44.417 2024-02-27 23:41:44.417 1000 FEE 441249 5487 6091890 2024-02-27 23:42:03.387 2024-02-27 23:42:03.387 0 FEE 441248 20490 6091892 2024-02-27 23:42:17.198 2024-02-27 23:42:17.198 1000 FEE 441237 5085 6091893 2024-02-27 23:42:17.198 2024-02-27 23:42:17.198 9000 TIP 441237 21349 6091896 2024-02-27 23:42:55.246 2024-02-27 23:42:55.246 4000 FEE 441249 20066 6091897 2024-02-27 23:42:55.246 2024-02-27 23:42:55.246 36000 TIP 441249 19138 6091899 2024-02-27 23:43:03.449 2024-02-27 23:43:03.449 1000 FEE 441250 16097 6091947 2024-02-27 23:48:13.477 2024-02-27 23:48:13.477 0 FEE 441253 836 6091957 2024-02-27 23:53:25.333 2024-02-27 23:53:25.333 1000 FEE 441257 21296 6091962 2024-02-27 23:55:37.841 2024-02-27 23:55:37.841 2100 FEE 441192 19381 6091963 2024-02-27 23:55:37.841 2024-02-27 23:55:37.841 18900 TIP 441192 10536 6091969 2024-02-27 23:56:04.403 2024-02-27 23:56:04.403 2100 FEE 441131 4538 6091970 2024-02-27 23:56:04.403 2024-02-27 23:56:04.403 18900 TIP 441131 12102 6091971 2024-02-27 23:56:08.549 2024-02-27 23:56:08.549 2100 FEE 441087 19531 6091972 2024-02-27 23:56:08.549 2024-02-27 23:56:08.549 18900 TIP 441087 673 6091984 2024-02-27 23:59:53.518 2024-02-27 23:59:53.518 1000 FEE 441260 1983 6091986 2024-02-28 00:00:04.323 2024-02-28 00:00:04.323 0 FEE 441260 19864 6092003 2024-02-28 00:04:06.238 2024-02-28 00:04:06.238 3100 FEE 441192 4175 6091463 2024-02-27 23:10:03.299 2024-02-27 23:10:03.299 1000 STREAM 141924 17095 6091675 2024-02-27 23:14:03.355 2024-02-27 23:14:03.355 1000 STREAM 141924 16769 6091695 2024-02-27 23:16:03.358 2024-02-27 23:16:03.358 1000 STREAM 141924 9427 6091698 2024-02-27 23:17:03.368 2024-02-27 23:17:03.368 1000 STREAM 141924 19576 6091709 2024-02-27 23:19:03.403 2024-02-27 23:19:03.403 1000 STREAM 141924 7773 6091721 2024-02-27 23:21:03.429 2024-02-27 23:21:03.429 1000 STREAM 141924 20602 6091724 2024-02-27 23:22:03.441 2024-02-27 23:22:03.441 1000 STREAM 141924 7827 6091743 2024-02-27 23:24:03.469 2024-02-27 23:24:03.469 1000 STREAM 141924 13076 6091775 2024-02-27 23:26:03.481 2024-02-27 23:26:03.481 1000 STREAM 141924 18608 6091799 2024-02-27 23:27:03.486 2024-02-27 23:27:03.486 1000 STREAM 141924 20713 6091849 2024-02-27 23:31:03.532 2024-02-27 23:31:03.532 1000 STREAM 141924 1209 6091858 2024-02-27 23:33:03.568 2024-02-27 23:33:03.568 1000 STREAM 141924 1291 6091874 2024-02-27 23:36:03.619 2024-02-27 23:36:03.619 1000 STREAM 141924 3990 6091875 2024-02-27 23:37:03.629 2024-02-27 23:37:03.629 1000 STREAM 141924 21451 6091884 2024-02-27 23:40:03.701 2024-02-27 23:40:03.701 1000 STREAM 141924 14037 6091908 2024-02-27 23:45:03.728 2024-02-27 23:45:03.728 1000 STREAM 141924 19126 6091910 2024-02-27 23:46:03.716 2024-02-27 23:46:03.716 1000 STREAM 141924 21314 6091913 2024-02-27 23:47:03.735 2024-02-27 23:47:03.735 1000 STREAM 141924 14247 6091949 2024-02-27 23:49:03.733 2024-02-27 23:49:03.733 1000 STREAM 141924 11430 6091952 2024-02-27 23:50:03.736 2024-02-27 23:50:03.736 1000 STREAM 141924 20022 6091955 2024-02-27 23:52:03.772 2024-02-27 23:52:03.772 1000 STREAM 141924 8954 6091956 2024-02-27 23:53:03.768 2024-02-27 23:53:03.768 1000 STREAM 141924 21379 6091958 2024-02-27 23:54:03.767 2024-02-27 23:54:03.767 1000 STREAM 141924 1273 6091959 2024-02-27 23:55:03.773 2024-02-27 23:55:03.773 1000 STREAM 141924 17693 6091968 2024-02-27 23:56:03.792 2024-02-27 23:56:03.792 1000 STREAM 141924 17696 6091973 2024-02-27 23:57:03.81 2024-02-27 23:57:03.81 1000 STREAM 141924 21402 6091974 2024-02-27 23:58:03.791 2024-02-27 23:58:03.791 1000 STREAM 141924 12160 6091985 2024-02-28 00:00:03.834 2024-02-28 00:00:03.834 1000 STREAM 141924 7847 6091988 2024-02-28 00:02:03.815 2024-02-28 00:02:03.815 1000 STREAM 141924 21062 6091996 2024-02-28 00:03:03.835 2024-02-28 00:03:03.835 1000 STREAM 141924 2576 6092019 2024-02-28 00:07:03.855 2024-02-28 00:07:03.855 1000 STREAM 141924 19662 6092050 2024-02-28 00:09:03.867 2024-02-28 00:09:03.867 1000 STREAM 141924 20906 6092062 2024-02-28 00:12:03.877 2024-02-28 00:12:03.877 1000 STREAM 141924 19809 6092086 2024-02-28 00:13:03.883 2024-02-28 00:13:03.883 1000 STREAM 141924 726 6092113 2024-02-28 00:14:03.894 2024-02-28 00:14:03.894 1000 STREAM 141924 18892 6092144 2024-02-28 00:17:03.906 2024-02-28 00:17:03.906 1000 STREAM 141924 15624 6092165 2024-02-28 00:21:03.936 2024-02-28 00:21:03.936 1000 STREAM 141924 713 6092193 2024-02-28 00:26:03.994 2024-02-28 00:26:03.994 1000 STREAM 141924 20337 6092250 2024-02-28 00:31:04.026 2024-02-28 00:31:04.026 1000 STREAM 141924 13753 6092273 2024-02-28 00:32:03.995 2024-02-28 00:32:03.995 1000 STREAM 141924 8796 6092308 2024-02-28 00:33:04.005 2024-02-28 00:33:04.005 1000 STREAM 141924 10591 6092318 2024-02-28 00:36:04.027 2024-02-28 00:36:04.027 1000 STREAM 141924 20015 6092374 2024-02-28 00:41:04.073 2024-02-28 00:41:04.073 1000 STREAM 141924 670 6092381 2024-02-28 00:42:04.072 2024-02-28 00:42:04.072 1000 STREAM 141924 19664 6092382 2024-02-28 00:43:04.08 2024-02-28 00:43:04.08 1000 STREAM 141924 12516 6092385 2024-02-28 00:44:04.081 2024-02-28 00:44:04.081 1000 STREAM 141924 9809 6092405 2024-02-28 00:46:04.087 2024-02-28 00:46:04.087 1000 STREAM 141924 14990 6092421 2024-02-28 00:48:04.119 2024-02-28 00:48:04.119 1000 STREAM 141924 12566 6092434 2024-02-28 00:49:04.129 2024-02-28 00:49:04.129 1000 STREAM 141924 4084 6092468 2024-02-28 00:54:04.13 2024-02-28 00:54:04.13 1000 STREAM 141924 14280 6092485 2024-02-28 00:57:04.14 2024-02-28 00:57:04.14 1000 STREAM 141924 910 6092503 2024-02-28 00:59:04.156 2024-02-28 00:59:04.156 1000 STREAM 141924 8505 6092527 2024-02-28 01:01:04.178 2024-02-28 01:01:04.178 1000 STREAM 141924 7746 6092529 2024-02-28 01:02:04.184 2024-02-28 01:02:04.184 1000 STREAM 141924 10102 6092538 2024-02-28 01:03:04.193 2024-02-28 01:03:04.193 1000 STREAM 141924 19980 6092542 2024-02-28 01:04:04.192 2024-02-28 01:04:04.192 1000 STREAM 141924 1705 6092550 2024-02-28 01:05:04.179 2024-02-28 01:05:04.179 1000 STREAM 141924 1224 6092601 2024-02-28 01:08:04.19 2024-02-28 01:08:04.19 1000 STREAM 141924 17109 6092639 2024-02-28 01:10:04.198 2024-02-28 01:10:04.198 1000 STREAM 141924 10638 6092682 2024-02-28 01:11:04.204 2024-02-28 01:11:04.204 1000 STREAM 141924 20594 6092687 2024-02-28 01:12:04.214 2024-02-28 01:12:04.214 1000 STREAM 141924 2013 6092723 2024-02-28 01:14:04.218 2024-02-28 01:14:04.218 1000 STREAM 141924 634 6092732 2024-02-28 01:17:04.248 2024-02-28 01:17:04.248 1000 STREAM 141924 14376 6092737 2024-02-28 01:18:04.237 2024-02-28 01:18:04.237 1000 STREAM 141924 19381 6092788 2024-02-28 01:22:04.251 2024-02-28 01:22:04.251 1000 STREAM 141924 21356 6092794 2024-02-28 01:23:04.261 2024-02-28 01:23:04.261 1000 STREAM 141924 11967 6092850 2024-02-28 01:26:04.268 2024-02-28 01:26:04.268 1000 STREAM 141924 21455 6092863 2024-02-28 01:27:04.276 2024-02-28 01:27:04.276 1000 STREAM 141924 9438 6092876 2024-02-28 01:28:04.271 2024-02-28 01:28:04.271 1000 STREAM 141924 18897 6092886 2024-02-28 01:29:04.289 2024-02-28 01:29:04.289 1000 STREAM 141924 672 6092946 2024-02-28 01:31:04.301 2024-02-28 01:31:04.301 1000 STREAM 141924 20687 6092955 2024-02-28 01:32:04.338 2024-02-28 01:32:04.338 1000 STREAM 141924 17001 6092971 2024-02-28 01:33:04.322 2024-02-28 01:33:04.322 1000 STREAM 141924 12562 6092983 2024-02-28 01:34:04.353 2024-02-28 01:34:04.353 1000 STREAM 141924 11898 6092998 2024-02-28 01:35:04.355 2024-02-28 01:35:04.355 1000 STREAM 141924 10693 6093003 2024-02-28 01:37:04.36 2024-02-28 01:37:04.36 1000 STREAM 141924 19463 6093033 2024-02-28 01:40:04.42 2024-02-28 01:40:04.42 1000 STREAM 141924 17237 6093055 2024-02-28 01:41:04.399 2024-02-28 01:41:04.399 1000 STREAM 141924 21238 6093100 2024-02-28 01:45:04.386 2024-02-28 01:45:04.386 1000 STREAM 141924 9352 6093120 2024-02-28 01:49:04.42 2024-02-28 01:49:04.42 1000 STREAM 141924 8535 6093134 2024-02-28 01:52:04.429 2024-02-28 01:52:04.429 1000 STREAM 141924 14731 6093158 2024-02-28 01:56:04.446 2024-02-28 01:56:04.446 1000 STREAM 141924 1628 6093188 2024-02-28 02:00:04.543 2024-02-28 02:00:04.543 1000 STREAM 141924 4624 6093313 2024-02-28 02:08:04.54 2024-02-28 02:08:04.54 1000 STREAM 141924 16816 6093356 2024-02-28 02:11:04.535 2024-02-28 02:11:04.535 1000 STREAM 141924 21457 6093379 2024-02-28 02:15:04.543 2024-02-28 02:15:04.543 1000 STREAM 141924 703 6093395 2024-02-28 02:17:04.563 2024-02-28 02:17:04.563 1000 STREAM 141924 5728 6093438 2024-02-28 02:21:04.596 2024-02-28 02:21:04.596 1000 STREAM 141924 6310 6093463 2024-02-28 02:23:04.586 2024-02-28 02:23:04.586 1000 STREAM 141924 19096 6093628 2024-02-28 02:28:04.611 2024-02-28 02:28:04.611 1000 STREAM 141924 16966 6091472 2024-02-27 23:11:03.294 2024-02-27 23:11:03.294 1000 STREAM 141924 18836 6091498 2024-02-27 23:12:03.327 2024-02-27 23:12:03.327 1000 STREAM 141924 18690 6091601 2024-02-27 23:13:03.361 2024-02-27 23:13:03.361 1000 STREAM 141924 7903 6091676 2024-02-27 23:15:03.366 2024-02-27 23:15:03.366 1000 STREAM 141924 2338 6091705 2024-02-27 23:18:03.386 2024-02-27 23:18:03.386 1000 STREAM 141924 21437 6091720 2024-02-27 23:20:03.445 2024-02-27 23:20:03.445 1000 STREAM 141924 18923 6091739 2024-02-27 23:23:03.449 2024-02-27 23:23:03.449 1000 STREAM 141924 6041 6091752 2024-02-27 23:25:03.461 2024-02-27 23:25:03.461 1000 STREAM 141924 19263 6091837 2024-02-27 23:28:03.502 2024-02-27 23:28:03.502 1000 STREAM 141924 974 6091840 2024-02-27 23:29:03.508 2024-02-27 23:29:03.508 1000 STREAM 141924 10096 6091845 2024-02-27 23:30:03.571 2024-02-27 23:30:03.571 1000 STREAM 141924 20153 6091854 2024-02-27 23:32:03.552 2024-02-27 23:32:03.552 1000 STREAM 141924 6164 6091864 2024-02-27 23:34:03.583 2024-02-27 23:34:03.583 1000 STREAM 141924 17673 6091870 2024-02-27 23:35:03.593 2024-02-27 23:35:03.593 1000 STREAM 141924 5538 6091878 2024-02-27 23:38:03.654 2024-02-27 23:38:03.654 1000 STREAM 141924 14959 6091882 2024-02-27 23:39:03.653 2024-02-27 23:39:03.653 1000 STREAM 141924 5865 6091887 2024-02-27 23:41:03.692 2024-02-27 23:41:03.692 1000 STREAM 141924 1495 6091891 2024-02-27 23:42:03.689 2024-02-27 23:42:03.689 1000 STREAM 141924 7847 6091900 2024-02-27 23:43:03.7 2024-02-27 23:43:03.7 1000 STREAM 141924 768 6091906 2024-02-27 23:44:03.707 2024-02-27 23:44:03.707 1000 STREAM 141924 5794 6091941 2024-02-27 23:48:03.717 2024-02-27 23:48:03.717 1000 STREAM 141924 15941 6091954 2024-02-27 23:51:03.739 2024-02-27 23:51:03.739 1000 STREAM 141924 9261 6091978 2024-02-27 23:59:03.8 2024-02-27 23:59:03.8 1000 STREAM 141924 2016 6091987 2024-02-28 00:01:03.824 2024-02-28 00:01:03.824 1000 STREAM 141924 19572 6092002 2024-02-28 00:04:03.835 2024-02-28 00:04:03.835 1000 STREAM 141924 15119 6092005 2024-02-28 00:05:03.84 2024-02-28 00:05:03.84 1000 STREAM 141924 16229 6092010 2024-02-28 00:06:03.859 2024-02-28 00:06:03.859 1000 STREAM 141924 9177 6092045 2024-02-28 00:08:03.859 2024-02-28 00:08:03.859 1000 STREAM 141924 14657 6092057 2024-02-28 00:10:03.863 2024-02-28 00:10:03.863 1000 STREAM 141924 16543 6092059 2024-02-28 00:11:03.876 2024-02-28 00:11:03.876 1000 STREAM 141924 6602 6092134 2024-02-28 00:15:03.891 2024-02-28 00:15:03.891 1000 STREAM 141924 18311 6092139 2024-02-28 00:16:03.945 2024-02-28 00:16:03.945 1000 STREAM 141924 17094 6092150 2024-02-28 00:18:03.93 2024-02-28 00:18:03.93 1000 STREAM 141924 674 6092154 2024-02-28 00:19:03.92 2024-02-28 00:19:03.92 1000 STREAM 141924 899 6092157 2024-02-28 00:20:03.93 2024-02-28 00:20:03.93 1000 STREAM 141924 18396 6092169 2024-02-28 00:22:03.944 2024-02-28 00:22:03.944 1000 STREAM 141924 19151 6092172 2024-02-28 00:23:03.939 2024-02-28 00:23:03.939 1000 STREAM 141924 4062 6092189 2024-02-28 00:24:03.96 2024-02-28 00:24:03.96 1000 STREAM 141924 1038 6092190 2024-02-28 00:25:03.973 2024-02-28 00:25:03.973 1000 STREAM 141924 5293 6092199 2024-02-28 00:27:03.976 2024-02-28 00:27:03.976 1000 STREAM 141924 13246 6092206 2024-02-28 00:28:03.971 2024-02-28 00:28:03.971 1000 STREAM 141924 12562 6092228 2024-02-28 00:29:03.979 2024-02-28 00:29:03.979 1000 STREAM 141924 1825 6092247 2024-02-28 00:30:03.983 2024-02-28 00:30:03.983 1000 STREAM 141924 18524 6092315 2024-02-28 00:34:04.011 2024-02-28 00:34:04.011 1000 STREAM 141924 866 6092317 2024-02-28 00:35:04.029 2024-02-28 00:35:04.029 1000 STREAM 141924 17522 6092319 2024-02-28 00:37:04.051 2024-02-28 00:37:04.051 1000 STREAM 141924 8796 6092352 2024-02-28 00:38:04.034 2024-02-28 00:38:04.034 1000 STREAM 141924 15549 6092363 2024-02-28 00:39:04.034 2024-02-28 00:39:04.034 1000 STREAM 141924 20861 6092372 2024-02-28 00:40:04.057 2024-02-28 00:40:04.057 1000 STREAM 141924 17014 6092402 2024-02-28 00:45:04.121 2024-02-28 00:45:04.121 1000 STREAM 141924 2459 6092414 2024-02-28 00:47:04.073 2024-02-28 00:47:04.073 1000 STREAM 141924 11417 6092447 2024-02-28 00:50:04.143 2024-02-28 00:50:04.143 1000 STREAM 141924 16867 6092450 2024-02-28 00:51:04.217 2024-02-28 00:51:04.217 1000 STREAM 141924 10056 6092461 2024-02-28 00:52:04.12 2024-02-28 00:52:04.12 1000 STREAM 141924 19553 6092465 2024-02-28 00:53:04.122 2024-02-28 00:53:04.122 1000 STREAM 141924 20892 6092469 2024-02-28 00:55:04.128 2024-02-28 00:55:04.128 1000 STREAM 141924 17321 6092473 2024-02-28 00:56:04.149 2024-02-28 00:56:04.149 1000 STREAM 141924 5758 6092499 2024-02-28 00:58:04.149 2024-02-28 00:58:04.149 1000 STREAM 141924 663 6092524 2024-02-28 01:00:04.191 2024-02-28 01:00:04.191 1000 STREAM 141924 21119 6092553 2024-02-28 01:06:04.178 2024-02-28 01:06:04.178 1000 STREAM 141924 20906 6092558 2024-02-28 01:07:04.189 2024-02-28 01:07:04.189 1000 STREAM 141924 6594 6092631 2024-02-28 01:09:04.193 2024-02-28 01:09:04.193 1000 STREAM 141924 18473 6092690 2024-02-28 01:13:04.192 2024-02-28 01:13:04.192 1000 STREAM 141924 4027 6092726 2024-02-28 01:15:04.219 2024-02-28 01:15:04.219 1000 STREAM 141924 10536 6092730 2024-02-28 01:16:04.221 2024-02-28 01:16:04.221 1000 STREAM 141924 1512 6092738 2024-02-28 01:19:04.233 2024-02-28 01:19:04.233 1000 STREAM 141924 13361 6092744 2024-02-28 01:20:04.264 2024-02-28 01:20:04.264 1000 STREAM 141924 4167 6092748 2024-02-28 01:21:04.26 2024-02-28 01:21:04.26 1000 STREAM 141924 18539 6092800 2024-02-28 01:24:04.258 2024-02-28 01:24:04.258 1000 STREAM 141924 13903 6092812 2024-02-28 01:25:04.256 2024-02-28 01:25:04.256 1000 STREAM 141924 20430 6092907 2024-02-28 01:30:04.307 2024-02-28 01:30:04.307 1000 STREAM 141924 18673 6093000 2024-02-28 01:36:04.364 2024-02-28 01:36:04.364 1000 STREAM 141924 19375 6093012 2024-02-28 01:38:04.372 2024-02-28 01:38:04.372 1000 STREAM 141924 886 6093025 2024-02-28 01:39:04.368 2024-02-28 01:39:04.368 1000 STREAM 141924 9364 6093058 2024-02-28 01:42:04.414 2024-02-28 01:42:04.414 1000 STREAM 141924 19806 6093086 2024-02-28 01:43:04.403 2024-02-28 01:43:04.403 1000 STREAM 141924 3461 6093115 2024-02-28 01:47:04.407 2024-02-28 01:47:04.407 1000 STREAM 141924 9335 6093141 2024-02-28 01:54:04.465 2024-02-28 01:54:04.465 1000 STREAM 141924 2514 6093175 2024-02-28 01:58:04.459 2024-02-28 01:58:04.459 1000 STREAM 141924 10490 6093205 2024-02-28 02:02:04.488 2024-02-28 02:02:04.488 1000 STREAM 141924 636 6093271 2024-02-28 02:04:04.488 2024-02-28 02:04:04.488 1000 STREAM 141924 20264 6093280 2024-02-28 02:06:04.506 2024-02-28 02:06:04.506 1000 STREAM 141924 21048 6093409 2024-02-28 02:19:04.56 2024-02-28 02:19:04.56 1000 STREAM 141924 5173 6093571 2024-02-28 02:25:04.593 2024-02-28 02:25:04.593 1000 STREAM 141924 15577 6091533 2024-02-27 23:12:28.492 2024-02-27 23:12:28.492 9000 TIP 218095 21480 6091546 2024-02-27 23:12:29.571 2024-02-27 23:12:29.571 15400 FEE 441077 20811 6091547 2024-02-27 23:12:29.571 2024-02-27 23:12:29.571 138600 TIP 441077 17696 6091550 2024-02-27 23:12:30.747 2024-02-27 23:12:30.747 7700 FEE 441077 18314 6091551 2024-02-27 23:12:30.747 2024-02-27 23:12:30.747 69300 TIP 441077 854 6091564 2024-02-27 23:12:39.315 2024-02-27 23:12:39.315 7700 FEE 441077 16842 6091565 2024-02-27 23:12:39.315 2024-02-27 23:12:39.315 69300 TIP 441077 3347 6091566 2024-02-27 23:12:39.448 2024-02-27 23:12:39.448 7700 FEE 441077 19572 6091567 2024-02-27 23:12:39.448 2024-02-27 23:12:39.448 69300 TIP 441077 19907 6091582 2024-02-27 23:12:40.497 2024-02-27 23:12:40.497 7700 FEE 441077 5425 6091583 2024-02-27 23:12:40.497 2024-02-27 23:12:40.497 69300 TIP 441077 3411 6091586 2024-02-27 23:12:40.727 2024-02-27 23:12:40.727 7700 FEE 441077 18994 6091587 2024-02-27 23:12:40.727 2024-02-27 23:12:40.727 69300 TIP 441077 21329 6091612 2024-02-27 23:13:10.314 2024-02-27 23:13:10.314 1000 FEE 441211 19996 6091613 2024-02-27 23:13:10.314 2024-02-27 23:13:10.314 9000 TIP 441211 15697 6091660 2024-02-27 23:13:15.475 2024-02-27 23:13:15.475 1000 FEE 441211 20106 6091661 2024-02-27 23:13:15.475 2024-02-27 23:13:15.475 9000 TIP 441211 5522 6091666 2024-02-27 23:13:16.251 2024-02-27 23:13:16.251 1000 FEE 441211 16126 6091667 2024-02-27 23:13:16.251 2024-02-27 23:13:16.251 9000 TIP 441211 6421 6091673 2024-02-27 23:13:50.821 2024-02-27 23:13:50.821 3400 FEE 441171 21387 6091674 2024-02-27 23:13:50.821 2024-02-27 23:13:50.821 30600 TIP 441171 9863 6091699 2024-02-27 23:17:40.505 2024-02-27 23:17:40.505 1000 FEE 441162 652 6091700 2024-02-27 23:17:40.505 2024-02-27 23:17:40.505 9000 TIP 441162 20826 6091704 2024-02-27 23:17:58.917 2024-02-27 23:17:58.917 1000 FEE 441227 797 6091707 2024-02-27 23:18:49.743 2024-02-27 23:18:49.743 100000 FEE 441011 624 6091708 2024-02-27 23:18:49.743 2024-02-27 23:18:49.743 900000 TIP 441011 18524 6091727 2024-02-27 23:22:28.601 2024-02-27 23:22:28.601 4000 FEE 441216 688 6091728 2024-02-27 23:22:28.601 2024-02-27 23:22:28.601 36000 TIP 441216 19812 6091746 2024-02-27 23:24:13.111 2024-02-27 23:24:13.111 0 FEE 441232 8245 6091767 2024-02-27 23:25:18.536 2024-02-27 23:25:18.536 1300 FEE 441232 1751 6091768 2024-02-27 23:25:18.536 2024-02-27 23:25:18.536 11700 TIP 441232 5828 6091773 2024-02-27 23:25:34.532 2024-02-27 23:25:34.532 100000 FEE 441235 18169 6091774 2024-02-27 23:25:43.601 2024-02-27 23:25:43.601 1000 FEE 441236 13046 6091797 2024-02-27 23:27:03.485 2024-02-27 23:27:03.485 4000 FEE 441238 14247 6091798 2024-02-27 23:27:03.485 2024-02-27 23:27:03.485 36000 TIP 441238 19398 6091809 2024-02-27 23:27:14.814 2024-02-27 23:27:14.814 1000 FEE 441238 18378 6091810 2024-02-27 23:27:14.814 2024-02-27 23:27:14.814 9000 TIP 441238 15697 6091817 2024-02-27 23:27:17.163 2024-02-27 23:27:17.163 1000 FEE 441238 12606 6091818 2024-02-27 23:27:17.163 2024-02-27 23:27:17.163 9000 TIP 441238 17124 6091819 2024-02-27 23:27:17.438 2024-02-27 23:27:17.438 1000 FEE 441238 18517 6091820 2024-02-27 23:27:17.438 2024-02-27 23:27:17.438 9000 TIP 441238 1960 6091831 2024-02-27 23:27:25.471 2024-02-27 23:27:25.471 1000 FEE 427483 8376 6091832 2024-02-27 23:27:25.471 2024-02-27 23:27:25.471 9000 TIP 427483 1047 6091838 2024-02-27 23:28:25.94 2024-02-27 23:28:25.94 0 FEE 441234 19886 6091883 2024-02-27 23:39:41.707 2024-02-27 23:39:41.707 100000 FEE 441247 20577 6091885 2024-02-27 23:40:22.653 2024-02-27 23:40:22.653 6900 FEE 441169 6537 6091886 2024-02-27 23:40:22.653 2024-02-27 23:40:22.653 62100 TIP 441169 1039 6091903 2024-02-27 23:43:11.126 2024-02-27 23:43:11.126 4000 FEE 441247 13198 6091904 2024-02-27 23:43:11.126 2024-02-27 23:43:11.126 36000 TIP 441247 20258 6091911 2024-02-27 23:46:13.031 2024-02-27 23:46:13.031 100000 FEE 441254 638 6091912 2024-02-27 23:46:27.961 2024-02-27 23:46:27.961 0 FEE 441253 20588 6091919 2024-02-27 23:47:51.219 2024-02-27 23:47:51.219 4000 FEE 440959 17014 6091920 2024-02-27 23:47:51.219 2024-02-27 23:47:51.219 36000 TIP 440959 3656 6091927 2024-02-27 23:47:53.663 2024-02-27 23:47:53.663 100 FEE 440898 21619 6091928 2024-02-27 23:47:53.663 2024-02-27 23:47:53.663 900 TIP 440898 18896 6091931 2024-02-27 23:47:56.389 2024-02-27 23:47:56.389 4000 FEE 441176 20066 6091932 2024-02-27 23:47:56.389 2024-02-27 23:47:56.389 36000 TIP 441176 946 6091975 2024-02-27 23:58:04.521 2024-02-27 23:58:04.521 1000 FEE 441258 4062 6091997 2024-02-28 00:03:07.892 2024-02-28 00:03:07.892 10000 FEE 441247 16536 6091998 2024-02-28 00:03:07.892 2024-02-28 00:03:07.892 90000 TIP 441247 1959 6092035 2024-02-28 00:07:52.313 2024-02-28 00:07:52.313 3100 FEE 441169 21051 6092036 2024-02-28 00:07:52.313 2024-02-28 00:07:52.313 27900 TIP 441169 1493 6092052 2024-02-28 00:09:11.61 2024-02-28 00:09:11.61 6900 FEE 441262 17217 6092053 2024-02-28 00:09:11.61 2024-02-28 00:09:11.61 62100 TIP 441262 715 6092072 2024-02-28 00:12:31.049 2024-02-28 00:12:31.049 1000 FEE 441168 2576 6092073 2024-02-28 00:12:31.049 2024-02-28 00:12:31.049 9000 TIP 441168 14774 6092109 2024-02-28 00:14:00.387 2024-02-28 00:14:00.387 1000 FEE 441089 17927 6092110 2024-02-28 00:14:00.387 2024-02-28 00:14:00.387 9000 TIP 441089 17011 6092114 2024-02-28 00:14:04.056 2024-02-28 00:14:04.056 1000 FEE 441138 1567 6092115 2024-02-28 00:14:04.056 2024-02-28 00:14:04.056 9000 TIP 441138 19796 6092130 2024-02-28 00:14:12.352 2024-02-28 00:14:12.352 1000 FEE 440974 985 6092131 2024-02-28 00:14:12.352 2024-02-28 00:14:12.352 9000 TIP 440974 9290 6092216 2024-02-28 00:28:49.134 2024-02-28 00:28:49.134 1000 FEE 441273 18896 6092217 2024-02-28 00:28:49.134 2024-02-28 00:28:49.134 9000 TIP 441273 20272 6092229 2024-02-28 00:29:08.274 2024-02-28 00:29:08.274 21000 FEE 441054 7510 6092230 2024-02-28 00:29:08.274 2024-02-28 00:29:08.274 189000 TIP 441054 20376 6091589 2024-02-27 23:12:40.842 2024-02-27 23:12:40.842 69300 TIP 441077 21485 6091604 2024-02-27 23:13:08.945 2024-02-27 23:13:08.945 1000 FEE 441211 6160 6091605 2024-02-27 23:13:08.945 2024-02-27 23:13:08.945 9000 TIP 441211 2596 6091608 2024-02-27 23:13:09.919 2024-02-27 23:13:09.919 1000 FEE 441211 19037 6091609 2024-02-27 23:13:09.919 2024-02-27 23:13:09.919 9000 TIP 441211 21589 6091624 2024-02-27 23:13:12.066 2024-02-27 23:13:12.066 1000 FEE 441211 9367 6091625 2024-02-27 23:13:12.066 2024-02-27 23:13:12.066 9000 TIP 441211 5775 6091638 2024-02-27 23:13:13.324 2024-02-27 23:13:13.324 1000 FEE 441211 21603 6091639 2024-02-27 23:13:13.324 2024-02-27 23:13:13.324 9000 TIP 441211 6616 6091640 2024-02-27 23:13:13.498 2024-02-27 23:13:13.498 1000 FEE 441211 4538 6091641 2024-02-27 23:13:13.498 2024-02-27 23:13:13.498 9000 TIP 441211 16341 6091642 2024-02-27 23:13:13.704 2024-02-27 23:13:13.704 1000 FEE 441211 3440 6091643 2024-02-27 23:13:13.704 2024-02-27 23:13:13.704 9000 TIP 441211 5003 6091646 2024-02-27 23:13:14.161 2024-02-27 23:13:14.161 1000 FEE 441211 11956 6091647 2024-02-27 23:13:14.161 2024-02-27 23:13:14.161 9000 TIP 441211 4079 6091677 2024-02-27 23:15:06.929 2024-02-27 23:15:06.929 1000 FEE 441193 3656 6091678 2024-02-27 23:15:06.929 2024-02-27 23:15:06.929 9000 TIP 441193 18658 6091701 2024-02-27 23:17:43.048 2024-02-27 23:17:43.048 1000 FEE 441149 3304 6091702 2024-02-27 23:17:43.048 2024-02-27 23:17:43.048 9000 TIP 441149 21523 6091751 2024-02-27 23:24:46.529 2024-02-27 23:24:46.529 0 FEE 441234 17116 6091780 2024-02-27 23:26:46.203 2024-02-27 23:26:46.203 1000 FEE 441234 19836 6091781 2024-02-27 23:26:46.203 2024-02-27 23:26:46.203 9000 TIP 441234 5500 6091782 2024-02-27 23:26:46.37 2024-02-27 23:26:46.37 1000 FEE 424308 20756 6091783 2024-02-27 23:26:46.37 2024-02-27 23:26:46.37 9000 TIP 424308 697 6091794 2024-02-27 23:26:58.371 2024-02-27 23:26:58.371 1000 FEE 441239 19821 6091835 2024-02-27 23:27:39.179 2024-02-27 23:27:39.179 1000 FEE 424087 20603 6091836 2024-02-27 23:27:39.179 2024-02-27 23:27:39.179 9000 TIP 424087 19576 6091839 2024-02-27 23:28:45.565 2024-02-27 23:28:45.565 1000 FEE 441241 1394 6091842 2024-02-27 23:29:38.663 2024-02-27 23:29:38.663 1000 FEE 441243 5809 6091855 2024-02-27 23:32:37.379 2024-02-27 23:32:37.379 100 FEE 440692 18119 6091856 2024-02-27 23:32:37.379 2024-02-27 23:32:37.379 900 TIP 440692 13987 6091859 2024-02-27 23:33:16.225 2024-02-27 23:33:16.225 800 FEE 441169 5597 6091860 2024-02-27 23:33:16.225 2024-02-27 23:33:16.225 7200 TIP 441169 20272 6091863 2024-02-27 23:33:50.904 2024-02-27 23:33:50.904 0 FEE 441238 854 6091865 2024-02-27 23:34:45.868 2024-02-27 23:34:45.868 10000 FEE 441057 16229 6091866 2024-02-27 23:34:45.868 2024-02-27 23:34:45.868 90000 TIP 441057 11073 6091935 2024-02-27 23:47:58.339 2024-02-27 23:47:58.339 100 FEE 441087 672 6091936 2024-02-27 23:47:58.339 2024-02-27 23:47:58.339 900 TIP 441087 8168 6091942 2024-02-27 23:48:04.31 2024-02-27 23:48:04.31 100 FEE 440988 708 6091943 2024-02-27 23:48:04.31 2024-02-27 23:48:04.31 900 TIP 440988 21116 6091964 2024-02-27 23:55:57.186 2024-02-27 23:55:57.186 2100 FEE 441173 18306 6091965 2024-02-27 23:55:57.186 2024-02-27 23:55:57.186 18900 TIP 441173 9906 6091966 2024-02-27 23:55:58.543 2024-02-27 23:55:58.543 2100 FEE 441150 10690 6091967 2024-02-27 23:55:58.543 2024-02-27 23:55:58.543 18900 TIP 441150 10490 6091976 2024-02-27 23:58:48.852 2024-02-27 23:58:48.852 100 FEE 441247 19809 6091977 2024-02-27 23:58:48.852 2024-02-27 23:58:48.852 900 TIP 441247 20015 6092017 2024-02-28 00:06:49.356 2024-02-28 00:06:49.356 1000 FEE 441264 19815 6092020 2024-02-28 00:07:11.831 2024-02-28 00:07:11.831 1000 FEE 440986 18731 6092021 2024-02-28 00:07:11.831 2024-02-28 00:07:11.831 9000 TIP 440986 18526 6092026 2024-02-28 00:07:13.386 2024-02-28 00:07:13.386 1000 FEE 440986 18269 6092027 2024-02-28 00:07:13.386 2024-02-28 00:07:13.386 9000 TIP 440986 10283 6092037 2024-02-28 00:07:52.389 2024-02-28 00:07:52.389 1000 FEE 441108 17411 6092038 2024-02-28 00:07:52.389 2024-02-28 00:07:52.389 9000 TIP 441108 11522 6092056 2024-02-28 00:10:00.143 2024-02-28 00:10:00.143 1000 FEE 441268 21323 6092076 2024-02-28 00:12:41.196 2024-02-28 00:12:41.196 1000 FEE 441169 16594 6092077 2024-02-28 00:12:41.196 2024-02-28 00:12:41.196 9000 TIP 441169 21060 6092095 2024-02-28 00:13:56.859 2024-02-28 00:13:56.859 1000 FEE 441089 624 6092096 2024-02-28 00:13:56.859 2024-02-28 00:13:56.859 9000 TIP 441089 1985 6092163 2024-02-28 00:20:58.593 2024-02-28 00:20:58.593 27900 FEE 441247 18736 6092164 2024-02-28 00:20:58.593 2024-02-28 00:20:58.593 251100 TIP 441247 1624 6092166 2024-02-28 00:21:09.79 2024-02-28 00:21:09.79 1000 FEE 441281 20745 6092168 2024-02-28 00:21:56.534 2024-02-28 00:21:56.534 1000 POLL 440725 19462 6092177 2024-02-28 00:23:43.084 2024-02-28 00:23:43.084 1000 FEE 441284 21070 6092179 2024-02-28 00:23:55.73 2024-02-28 00:23:55.73 2100 FEE 441247 20137 6092180 2024-02-28 00:23:55.73 2024-02-28 00:23:55.73 18900 TIP 441247 2309 6092181 2024-02-28 00:23:56.241 2024-02-28 00:23:56.241 2100 FEE 441247 5527 6092182 2024-02-28 00:23:56.241 2024-02-28 00:23:56.241 18900 TIP 441247 16296 6092185 2024-02-28 00:23:59.473 2024-02-28 00:23:59.473 2100 FEE 441247 15703 6092186 2024-02-28 00:23:59.473 2024-02-28 00:23:59.473 18900 TIP 441247 20680 6092194 2024-02-28 00:26:13.652 2024-02-28 00:26:13.652 1000 FEE 440692 14650 6092195 2024-02-28 00:26:13.652 2024-02-28 00:26:13.652 9000 TIP 440692 12265 6092202 2024-02-28 00:27:21.497 2024-02-28 00:27:21.497 6300 FEE 440663 6499 6092203 2024-02-28 00:27:21.497 2024-02-28 00:27:21.497 56700 TIP 440663 629 6092241 2024-02-28 00:29:30.795 2024-02-28 00:29:30.795 100 FEE 441289 19810 6092242 2024-02-28 00:29:30.795 2024-02-28 00:29:30.795 900 TIP 441289 21172 6092255 2024-02-28 00:31:41.879 2024-02-28 00:31:41.879 1000 FEE 440818 1471 6092256 2024-02-28 00:31:41.879 2024-02-28 00:31:41.879 9000 TIP 440818 1261 6092292 2024-02-28 00:32:39.613 2024-02-28 00:32:39.613 1000 FEE 440725 805 6092293 2024-02-28 00:32:39.613 2024-02-28 00:32:39.613 9000 TIP 440725 1803 6092302 2024-02-28 00:32:43.728 2024-02-28 00:32:43.728 1000 FEE 440386 18426 6092303 2024-02-28 00:32:43.728 2024-02-28 00:32:43.728 9000 TIP 440386 17316 6092337 2024-02-28 00:37:45.986 2024-02-28 00:37:45.986 1000 FEE 440582 9669 6092338 2024-02-28 00:37:45.986 2024-02-28 00:37:45.986 9000 TIP 440582 2204 6092339 2024-02-28 00:37:46.191 2024-02-28 00:37:46.191 1000 FEE 440582 17673 6092340 2024-02-28 00:37:46.191 2024-02-28 00:37:46.191 9000 TIP 440582 21417 6092379 2024-02-28 00:42:00.42 2024-02-28 00:42:00.42 5700 FEE 441298 20254 6092380 2024-02-28 00:42:00.42 2024-02-28 00:42:00.42 51300 TIP 441298 9863 6092409 2024-02-28 00:46:43.628 2024-02-28 00:46:43.628 2100 FEE 441300 14465 6092410 2024-02-28 00:46:43.628 2024-02-28 00:46:43.628 18900 TIP 441300 18380 6092413 2024-02-28 00:47:03.247 2024-02-28 00:47:03.247 1000 FEE 441306 19660 6092440 2024-02-28 00:49:14.371 2024-02-28 00:49:14.371 2100 FEE 441270 11240 6092441 2024-02-28 00:49:14.371 2024-02-28 00:49:14.371 18900 TIP 441270 21417 6092467 2024-02-28 00:54:01.135 2024-02-28 00:54:01.135 1000 FEE 441312 5455 6092490 2024-02-28 00:57:42.919 2024-02-28 00:57:42.919 1000 FEE 441314 18909 6092522 2024-02-28 00:59:37.972 2024-02-28 00:59:37.972 7700 FEE 441193 18896 6092523 2024-02-28 00:59:37.972 2024-02-28 00:59:37.972 69300 TIP 441193 13781 6092593 2024-02-28 01:07:57.198 2024-02-28 01:07:57.198 1000 FEE 441258 21090 6092594 2024-02-28 01:07:57.198 2024-02-28 01:07:57.198 9000 TIP 441258 12422 6092602 2024-02-28 01:08:04.405 2024-02-28 01:08:04.405 2100 FEE 441300 19961 6092603 2024-02-28 01:08:04.405 2024-02-28 01:08:04.405 18900 TIP 441300 18658 6092637 2024-02-28 01:09:56.59 2024-02-28 01:09:56.59 900 FEE 440493 19842 6092638 2024-02-28 01:09:56.59 2024-02-28 01:09:56.59 8100 TIP 440493 21492 6092654 2024-02-28 01:10:24.589 2024-02-28 01:10:24.589 1300 FEE 441306 18280 6092655 2024-02-28 01:10:24.589 2024-02-28 01:10:24.589 11700 TIP 441306 19289 6092662 2024-02-28 01:10:26.273 2024-02-28 01:10:26.273 1300 FEE 441310 14959 6091619 2024-02-27 23:13:10.871 2024-02-27 23:13:10.871 9000 TIP 441211 4102 6091664 2024-02-27 23:13:16.065 2024-02-27 23:13:16.065 1000 FEE 441211 1596 6091665 2024-02-27 23:13:16.065 2024-02-27 23:13:16.065 9000 TIP 441211 2390 6091685 2024-02-27 23:15:08.046 2024-02-27 23:15:08.046 1000 FEE 441193 21051 6091686 2024-02-27 23:15:08.046 2024-02-27 23:15:08.046 9000 TIP 441193 3377 6091710 2024-02-27 23:19:42.226 2024-02-27 23:19:42.226 100 FEE 441227 12774 6091711 2024-02-27 23:19:42.226 2024-02-27 23:19:42.226 900 TIP 441227 661 6091722 2024-02-27 23:21:10.645 2024-02-27 23:21:10.645 1000 FEE 441229 14045 6091733 2024-02-27 23:22:51.831 2024-02-27 23:22:51.831 7700 FEE 441176 20381 6091734 2024-02-27 23:22:51.831 2024-02-27 23:22:51.831 69300 TIP 441176 7916 6091735 2024-02-27 23:22:53.422 2024-02-27 23:22:53.422 7700 FEE 441176 19640 6091736 2024-02-27 23:22:53.422 2024-02-27 23:22:53.422 69300 TIP 441176 777 6091744 2024-02-27 23:24:05.503 2024-02-27 23:24:05.503 1000 FEE 441232 16176 6091747 2024-02-27 23:24:13.153 2024-02-27 23:24:13.153 1000 FEE 441233 17124 6091757 2024-02-27 23:25:15.918 2024-02-27 23:25:15.918 1300 FEE 441229 14795 6091758 2024-02-27 23:25:15.918 2024-02-27 23:25:15.918 11700 TIP 441229 2162 6091784 2024-02-27 23:26:48.417 2024-02-27 23:26:48.417 5000 FEE 441238 1478 6091785 2024-02-27 23:26:48.417 2024-02-27 23:26:48.417 45000 TIP 441238 12220 6091815 2024-02-27 23:27:16.569 2024-02-27 23:27:16.569 1000 FEE 429007 19576 6091816 2024-02-27 23:27:16.569 2024-02-27 23:27:16.569 9000 TIP 429007 21057 6091827 2024-02-27 23:27:18.976 2024-02-27 23:27:18.976 1000 FEE 441238 21214 6091828 2024-02-27 23:27:18.976 2024-02-27 23:27:18.976 9000 TIP 441238 12218 6091867 2024-02-27 23:34:47.941 2024-02-27 23:34:47.941 0 FEE 441238 7185 6091879 2024-02-27 23:38:18.998 2024-02-27 23:38:18.998 1000 FEE 441246 9334 6091898 2024-02-27 23:42:56.16 2024-02-27 23:42:56.16 0 FEE 441248 6384 6091905 2024-02-27 23:43:29.647 2024-02-27 23:43:29.647 21000 FEE 441251 17157 6091939 2024-02-27 23:47:59.357 2024-02-27 23:47:59.357 4000 FEE 441198 18557 6091940 2024-02-27 23:47:59.357 2024-02-27 23:47:59.357 36000 TIP 441198 20554 6091951 2024-02-27 23:50:01.177 2024-02-27 23:50:01.177 0 FEE 441253 661 6091960 2024-02-27 23:55:33.571 2024-02-27 23:55:33.571 2100 FEE 441205 716 6091961 2024-02-27 23:55:33.571 2024-02-27 23:55:33.571 18900 TIP 441205 1959 6091982 2024-02-27 23:59:51.386 2024-02-27 23:59:51.386 30000 FEE 441233 705 6091983 2024-02-27 23:59:51.386 2024-02-27 23:59:51.386 270000 TIP 441233 20310 6091991 2024-02-28 00:02:18.595 2024-02-28 00:02:18.595 3300 FEE 441087 19531 6091992 2024-02-28 00:02:18.595 2024-02-28 00:02:18.595 29700 TIP 441087 1617 6091993 2024-02-28 00:02:19.241 2024-02-28 00:02:19.241 3300 FEE 441087 17171 6091994 2024-02-28 00:02:19.241 2024-02-28 00:02:19.241 29700 TIP 441087 19235 6092013 2024-02-28 00:06:21.367 2024-02-28 00:06:21.367 100 FEE 441247 1495 6092014 2024-02-28 00:06:21.367 2024-02-28 00:06:21.367 900 TIP 441247 6260 6092018 2024-02-28 00:07:01.409 2024-02-28 00:07:01.409 1000 FEE 441265 5761 6092022 2024-02-28 00:07:12.339 2024-02-28 00:07:12.339 1000 FEE 440986 1576 6092023 2024-02-28 00:07:12.339 2024-02-28 00:07:12.339 9000 TIP 440986 3392 6092041 2024-02-28 00:07:53.526 2024-02-28 00:07:53.526 1000 FEE 441108 17392 6092042 2024-02-28 00:07:53.526 2024-02-28 00:07:53.526 9000 TIP 441108 11314 6092084 2024-02-28 00:12:42.435 2024-02-28 00:12:42.435 1000 FEE 441169 1571 6092085 2024-02-28 00:12:42.435 2024-02-28 00:12:42.435 9000 TIP 441169 1480 6092092 2024-02-28 00:13:42.869 2024-02-28 00:13:42.869 1000 FEE 441246 9342 6092093 2024-02-28 00:13:42.869 2024-02-28 00:13:42.869 9000 TIP 441246 10393 6092094 2024-02-28 00:13:53.409 2024-02-28 00:13:53.409 1000 FEE 441272 19174 6092103 2024-02-28 00:13:58.854 2024-02-28 00:13:58.854 1000 FEE 441089 828 6092104 2024-02-28 00:13:58.854 2024-02-28 00:13:58.854 9000 TIP 441089 20964 6092105 2024-02-28 00:13:59.343 2024-02-28 00:13:59.343 1000 FEE 441089 19576 6092106 2024-02-28 00:13:59.343 2024-02-28 00:13:59.343 9000 TIP 441089 2620 6092120 2024-02-28 00:14:05.603 2024-02-28 00:14:05.603 1000 FEE 441138 9695 6092121 2024-02-28 00:14:05.603 2024-02-28 00:14:05.603 9000 TIP 441138 20327 6092122 2024-02-28 00:14:06.137 2024-02-28 00:14:06.137 1000 FEE 441138 15806 6092123 2024-02-28 00:14:06.137 2024-02-28 00:14:06.137 9000 TIP 441138 19189 6092128 2024-02-28 00:14:11.866 2024-02-28 00:14:11.866 1000 FEE 440974 20906 6092129 2024-02-28 00:14:11.866 2024-02-28 00:14:11.866 9000 TIP 440974 4973 6092138 2024-02-28 00:15:51.793 2024-02-28 00:15:51.793 1000 FEE 441274 2213 6092146 2024-02-28 00:17:47.494 2024-02-28 00:17:47.494 1000 FEE 440959 21412 6092147 2024-02-28 00:17:47.494 2024-02-28 00:17:47.494 9000 TIP 440959 13133 6092175 2024-02-28 00:23:17.616 2024-02-28 00:23:17.616 21000 FEE 441274 2335 6092176 2024-02-28 00:23:17.616 2024-02-28 00:23:17.616 189000 TIP 441274 11430 6092191 2024-02-28 00:25:09.97 2024-02-28 00:25:09.97 10000 FEE 438837 20781 6092192 2024-02-28 00:25:09.97 2024-02-28 00:25:09.97 90000 TIP 438837 11328 6092197 2024-02-28 00:26:38.408 2024-02-28 00:26:38.408 1000 FEE 441286 8168 6092212 2024-02-28 00:28:48.175 2024-02-28 00:28:48.175 1000 FEE 441273 2735 6092213 2024-02-28 00:28:48.175 2024-02-28 00:28:48.175 9000 TIP 441273 4043 6092226 2024-02-28 00:29:01.7 2024-02-28 00:29:01.7 1000 FEE 441152 15536 6092227 2024-02-28 00:29:01.7 2024-02-28 00:29:01.7 9000 TIP 441152 13921 6092282 2024-02-28 00:32:38.717 2024-02-28 00:32:38.717 1000 FEE 440725 6191 6092283 2024-02-28 00:32:38.717 2024-02-28 00:32:38.717 9000 TIP 440725 976 6092284 2024-02-28 00:32:38.788 2024-02-28 00:32:38.788 1000 FEE 440725 18446 6092285 2024-02-28 00:32:38.788 2024-02-28 00:32:38.788 9000 TIP 440725 2703 6092296 2024-02-28 00:32:39.941 2024-02-28 00:32:39.941 1000 FEE 440725 21578 6092297 2024-02-28 00:32:39.941 2024-02-28 00:32:39.941 9000 TIP 440725 987 6092300 2024-02-28 00:32:43.451 2024-02-28 00:32:43.451 1000 FEE 440386 3706 6092301 2024-02-28 00:32:43.451 2024-02-28 00:32:43.451 9000 TIP 440386 20276 6092333 2024-02-28 00:37:45.509 2024-02-28 00:37:45.509 1000 FEE 440582 21466 6092334 2024-02-28 00:37:45.509 2024-02-28 00:37:45.509 9000 TIP 440582 13903 6092341 2024-02-28 00:37:46.524 2024-02-28 00:37:46.524 2000 FEE 440582 16410 6092342 2024-02-28 00:37:46.524 2024-02-28 00:37:46.524 18000 TIP 440582 2111 6092398 2024-02-28 00:44:36.831 2024-02-28 00:44:36.831 1000 FEE 441300 16649 6092399 2024-02-28 00:44:36.831 2024-02-28 00:44:36.831 9000 TIP 441300 733 6092417 2024-02-28 00:47:20.736 2024-02-28 00:47:20.736 2100 FEE 441186 1221 6092418 2024-02-28 00:47:20.736 2024-02-28 00:47:20.736 18900 TIP 441186 19848 6092429 2024-02-28 00:48:42.896 2024-02-28 00:48:42.896 2100 FEE 441193 19995 6092430 2024-02-28 00:48:42.896 2024-02-28 00:48:42.896 18900 TIP 441193 897 6091760 2024-02-27 23:25:16.477 2024-02-27 23:25:16.477 11700 TIP 441229 19652 6091771 2024-02-27 23:25:31.3 2024-02-27 23:25:31.3 1000 FEE 441057 21472 6091772 2024-02-27 23:25:31.3 2024-02-27 23:25:31.3 9000 TIP 441057 21044 6091813 2024-02-27 23:27:15.745 2024-02-27 23:27:15.745 1000 FEE 441238 10342 6091814 2024-02-27 23:27:15.745 2024-02-27 23:27:15.745 9000 TIP 441238 5387 6091823 2024-02-27 23:27:17.896 2024-02-27 23:27:17.896 1000 FEE 441238 18219 6091824 2024-02-27 23:27:17.896 2024-02-27 23:27:17.896 9000 TIP 441238 9354 6091825 2024-02-27 23:27:18.26 2024-02-27 23:27:18.26 1000 FEE 441238 16912 6091826 2024-02-27 23:27:18.26 2024-02-27 23:27:18.26 9000 TIP 441238 9843 6091841 2024-02-27 23:29:19.32 2024-02-27 23:29:19.32 1000 FEE 441242 1064 6091846 2024-02-27 23:30:16.27 2024-02-27 23:30:16.27 1000 FEE 441244 6653 6091868 2024-02-27 23:34:52.744 2024-02-27 23:34:52.744 100 FEE 441243 21242 6091869 2024-02-27 23:34:52.744 2024-02-27 23:34:52.744 900 TIP 441243 18581 6091901 2024-02-27 23:43:11.092 2024-02-27 23:43:11.092 0 FEE 441248 902 6091909 2024-02-27 23:45:49.714 2024-02-27 23:45:49.714 1000 FEE 441253 20287 6091923 2024-02-27 23:47:51.816 2024-02-27 23:47:51.816 2100 FEE 441077 14663 6091924 2024-02-27 23:47:51.816 2024-02-27 23:47:51.816 18900 TIP 441077 9985 6091929 2024-02-27 23:47:55.698 2024-02-27 23:47:55.698 100 FEE 440692 16351 6091930 2024-02-27 23:47:55.698 2024-02-27 23:47:55.698 900 TIP 440692 1120 6091933 2024-02-27 23:47:57.343 2024-02-27 23:47:57.343 12800 FEE 439080 9843 6091934 2024-02-27 23:47:57.343 2024-02-27 23:47:57.343 115200 TIP 439080 9421 6091937 2024-02-27 23:47:58.542 2024-02-27 23:47:58.542 100 FEE 441087 19296 6091938 2024-02-27 23:47:58.542 2024-02-27 23:47:58.542 900 TIP 441087 12169 6091979 2024-02-27 23:59:19.782 2024-02-27 23:59:19.782 5000 FEE 441162 21021 6091980 2024-02-27 23:59:19.782 2024-02-27 23:59:19.782 45000 TIP 441162 1534 6091981 2024-02-27 23:59:25.379 2024-02-27 23:59:25.379 1000 FEE 441259 11263 6091989 2024-02-28 00:02:18.363 2024-02-28 00:02:18.363 3300 FEE 441087 19531 6091990 2024-02-28 00:02:18.363 2024-02-28 00:02:18.363 29700 TIP 441087 12606 6092051 2024-02-28 00:09:06.205 2024-02-28 00:09:06.205 1000 FEE 441267 20889 6092060 2024-02-28 00:11:46.258 2024-02-28 00:11:46.258 2100 FEE 440725 910 6092061 2024-02-28 00:11:46.258 2024-02-28 00:11:46.258 18900 TIP 440725 16149 6092064 2024-02-28 00:12:11.412 2024-02-28 00:12:11.412 1000 FEE 441258 18909 6092065 2024-02-28 00:12:11.412 2024-02-28 00:12:11.412 9000 TIP 441258 17331 6092099 2024-02-28 00:13:57.83 2024-02-28 00:13:57.83 1000 FEE 441089 7869 6092100 2024-02-28 00:13:57.83 2024-02-28 00:13:57.83 9000 TIP 441089 805 6092107 2024-02-28 00:13:59.839 2024-02-28 00:13:59.839 1000 FEE 441089 5637 6092108 2024-02-28 00:13:59.839 2024-02-28 00:13:59.839 9000 TIP 441089 16950 6092118 2024-02-28 00:14:05.234 2024-02-28 00:14:05.234 1000 FEE 441138 2233 6092119 2024-02-28 00:14:05.234 2024-02-28 00:14:05.234 9000 TIP 441138 11956 6092143 2024-02-28 00:16:51.257 2024-02-28 00:16:51.257 1000 FEE 441276 21044 6092155 2024-02-28 00:19:12.948 2024-02-28 00:19:12.948 1000 FEE 441279 1611 6092156 2024-02-28 00:19:32.258 2024-02-28 00:19:32.258 1000 FEE 441280 8074 6092160 2024-02-28 00:20:24.923 2024-02-28 00:20:24.923 1000 POLL 441054 21446 6092161 2024-02-28 00:20:57.706 2024-02-28 00:20:57.706 3100 FEE 441247 5128 6092162 2024-02-28 00:20:57.706 2024-02-28 00:20:57.706 27900 TIP 441247 13781 6092187 2024-02-28 00:24:01.113 2024-02-28 00:24:01.113 2100 FEE 441247 18774 6092188 2024-02-28 00:24:01.113 2024-02-28 00:24:01.113 18900 TIP 441247 14376 6092208 2024-02-28 00:28:46.466 2024-02-28 00:28:46.466 1000 FEE 441273 18735 6092209 2024-02-28 00:28:46.466 2024-02-28 00:28:46.466 9000 TIP 441273 17514 6092276 2024-02-28 00:32:38.111 2024-02-28 00:32:38.111 1000 FEE 440725 19637 6092277 2024-02-28 00:32:38.111 2024-02-28 00:32:38.111 9000 TIP 440725 17014 6092288 2024-02-28 00:32:39.249 2024-02-28 00:32:39.249 1000 FEE 440725 12049 6092289 2024-02-28 00:32:39.249 2024-02-28 00:32:39.249 9000 TIP 440725 21573 6092290 2024-02-28 00:32:39.361 2024-02-28 00:32:39.361 1000 FEE 440725 21589 6092291 2024-02-28 00:32:39.361 2024-02-28 00:32:39.361 9000 TIP 440725 16212 6092324 2024-02-28 00:37:09.028 2024-02-28 00:37:09.028 2100 FEE 441208 19154 6092325 2024-02-28 00:37:09.028 2024-02-28 00:37:09.028 18900 TIP 441208 20663 6092329 2024-02-28 00:37:45.15 2024-02-28 00:37:45.15 1000 FEE 440582 21406 6092330 2024-02-28 00:37:45.15 2024-02-28 00:37:45.15 9000 TIP 440582 1483 6092347 2024-02-28 00:37:47.135 2024-02-28 00:37:47.135 1000 FEE 440582 8448 6092348 2024-02-28 00:37:47.135 2024-02-28 00:37:47.135 9000 TIP 440582 11967 6092355 2024-02-28 00:38:56.714 2024-02-28 00:38:56.714 2500 FEE 441247 640 6092356 2024-02-28 00:38:56.714 2024-02-28 00:38:56.714 22500 TIP 441247 2390 6092365 2024-02-28 00:39:29.198 2024-02-28 00:39:29.198 10000 FEE 441298 977 6092370 2024-02-28 00:39:40.31 2024-02-28 00:39:40.31 9000 FEE 440561 21036 6092371 2024-02-28 00:39:40.31 2024-02-28 00:39:40.31 81000 TIP 440561 20326 6092377 2024-02-28 00:41:50.009 2024-02-28 00:41:50.009 2100 FEE 441291 20799 6092378 2024-02-28 00:41:50.009 2024-02-28 00:41:50.009 18900 TIP 441291 11527 6092383 2024-02-28 00:43:55.897 2024-02-28 00:43:55.897 3300 FEE 441267 19967 6092384 2024-02-28 00:43:55.897 2024-02-28 00:43:55.897 29700 TIP 441267 3411 6092388 2024-02-28 00:44:10.733 2024-02-28 00:44:10.733 3300 FEE 441267 11798 6092389 2024-02-28 00:44:10.733 2024-02-28 00:44:10.733 29700 TIP 441267 8945 6092396 2024-02-28 00:44:28.741 2024-02-28 00:44:28.741 3500 FEE 441277 18660 6092397 2024-02-28 00:44:28.741 2024-02-28 00:44:28.741 31500 TIP 441277 4474 6092426 2024-02-28 00:48:27.983 2024-02-28 00:48:27.983 3000 DONT_LIKE_THIS 441293 12220 6092488 2024-02-28 00:57:08.339 2024-02-28 00:57:08.339 27900 FEE 441198 20157 6092489 2024-02-28 00:57:08.339 2024-02-28 00:57:08.339 251100 TIP 441198 20117 6092495 2024-02-28 00:57:50.277 2024-02-28 00:57:50.277 3300 FEE 441197 18101 6092496 2024-02-28 00:57:50.277 2024-02-28 00:57:50.277 29700 TIP 441197 16456 6092506 2024-02-28 00:59:11.338 2024-02-28 00:59:11.338 7700 FEE 441238 19005 6092507 2024-02-28 00:59:11.338 2024-02-28 00:59:11.338 69300 TIP 441238 9099 6092514 2024-02-28 00:59:12.047 2024-02-28 00:59:12.047 7700 FEE 441238 1738 6092515 2024-02-28 00:59:12.047 2024-02-28 00:59:12.047 69300 TIP 441238 5565 6092528 2024-02-28 01:01:49.955 2024-02-28 01:01:49.955 21000 FEE 441318 19961 6092531 2024-02-28 01:02:18.316 2024-02-28 01:02:18.316 300 FEE 440985 20246 6092532 2024-02-28 01:02:18.316 2024-02-28 01:02:18.316 2700 TIP 440985 16347 6092571 2024-02-28 01:07:54.859 2024-02-28 01:07:54.859 1000 FEE 441258 18265 6092572 2024-02-28 01:07:54.859 2024-02-28 01:07:54.859 9000 TIP 441258 20981 6092579 2024-02-28 01:07:55.821 2024-02-28 01:07:55.821 1000 FEE 441258 18774 6092580 2024-02-28 01:07:55.821 2024-02-28 01:07:55.821 9000 TIP 441258 1105 6092581 2024-02-28 01:07:56.129 2024-02-28 01:07:56.129 1000 FEE 441258 20663 6092582 2024-02-28 01:07:56.129 2024-02-28 01:07:56.129 9000 TIP 441258 2514 6092599 2024-02-28 01:08:03.934 2024-02-28 01:08:03.934 2100 FEE 441077 4259 6092600 2024-02-28 01:08:03.934 2024-02-28 01:08:03.934 18900 TIP 441077 3478 6092606 2024-02-28 01:08:08.015 2024-02-28 01:08:08.015 2100 FEE 441198 4304 6092607 2024-02-28 01:08:08.015 2024-02-28 01:08:08.015 18900 TIP 441198 795 6092608 2024-02-28 01:08:08.117 2024-02-28 01:08:08.117 100 FEE 440742 11760 6092609 2024-02-28 01:08:08.117 2024-02-28 01:08:08.117 900 TIP 440742 12265 6092610 2024-02-28 01:08:08.326 2024-02-28 01:08:08.326 900 FEE 440742 5359 6092611 2024-02-28 01:08:08.326 2024-02-28 01:08:08.326 8100 TIP 440742 2309 6092612 2024-02-28 01:08:08.674 2024-02-28 01:08:08.674 2100 FEE 441247 2361 6092613 2024-02-28 01:08:08.674 2024-02-28 01:08:08.674 18900 TIP 441247 18735 6092642 2024-02-28 01:10:21.406 2024-02-28 01:10:21.406 1300 FEE 441310 2029 6092643 2024-02-28 01:10:21.406 2024-02-28 01:10:21.406 11700 TIP 441310 18124 6091916 2024-02-27 23:47:46.661 2024-02-27 23:47:46.661 36000 TIP 441087 17124 6091917 2024-02-27 23:47:49.038 2024-02-27 23:47:49.038 4000 FEE 440988 13378 6091918 2024-02-27 23:47:49.038 2024-02-27 23:47:49.038 36000 TIP 440988 18368 6091995 2024-02-28 00:03:02.044 2024-02-28 00:03:02.044 1000 FEE 441261 15075 6091999 2024-02-28 00:03:46.197 2024-02-28 00:03:46.197 1000 FEE 441262 16543 6092030 2024-02-28 00:07:26.379 2024-02-28 00:07:26.379 1000 FEE 441266 16970 6092031 2024-02-28 00:07:51.461 2024-02-28 00:07:51.461 1000 FEE 441108 5597 6092032 2024-02-28 00:07:51.461 2024-02-28 00:07:51.461 9000 TIP 441108 2285 6092033 2024-02-28 00:07:51.937 2024-02-28 00:07:51.937 1000 FEE 441108 18640 6092034 2024-02-28 00:07:51.937 2024-02-28 00:07:51.937 9000 TIP 441108 21033 6092058 2024-02-28 00:10:12.502 2024-02-28 00:10:12.502 1000 FEE 441269 18473 6092068 2024-02-28 00:12:29.706 2024-02-28 00:12:29.706 1000 FEE 441168 722 6092069 2024-02-28 00:12:29.706 2024-02-28 00:12:29.706 9000 TIP 441168 18956 6092074 2024-02-28 00:12:32.789 2024-02-28 00:12:32.789 1000 FEE 441168 2111 6092075 2024-02-28 00:12:32.789 2024-02-28 00:12:32.789 9000 TIP 441168 761 6092080 2024-02-28 00:12:41.42 2024-02-28 00:12:41.42 1000 FEE 441169 11829 6092081 2024-02-28 00:12:41.42 2024-02-28 00:12:41.42 9000 TIP 441169 13216 6092111 2024-02-28 00:14:01.495 2024-02-28 00:14:01.495 2000 FEE 441089 15088 6092112 2024-02-28 00:14:01.495 2024-02-28 00:14:01.495 18000 TIP 441089 18941 6092148 2024-02-28 00:17:48.349 2024-02-28 00:17:48.349 9000 FEE 440959 19281 6092149 2024-02-28 00:17:48.349 2024-02-28 00:17:48.349 81000 TIP 440959 7659 6092151 2024-02-28 00:18:14.1 2024-02-28 00:18:14.1 5700 FEE 441276 10342 6092152 2024-02-28 00:18:14.1 2024-02-28 00:18:14.1 51300 TIP 441276 18641 6092158 2024-02-28 00:20:18.21 2024-02-28 00:20:18.21 10000 FEE 9544 14651 6092159 2024-02-28 00:20:18.21 2024-02-28 00:20:18.21 90000 TIP 9544 9433 6092167 2024-02-28 00:21:32.743 2024-02-28 00:21:32.743 1000 FEE 441282 21441 6092200 2024-02-28 00:27:18.87 2024-02-28 00:27:18.87 10000 FEE 435314 16970 6092201 2024-02-28 00:27:18.87 2024-02-28 00:27:18.87 90000 TIP 435314 974 6092210 2024-02-28 00:28:47.064 2024-02-28 00:28:47.064 1000 FEE 441273 11698 6092211 2024-02-28 00:28:47.064 2024-02-28 00:28:47.064 9000 TIP 441273 2734 6092224 2024-02-28 00:29:01.246 2024-02-28 00:29:01.246 1000 FEE 441152 7891 6092225 2024-02-28 00:29:01.246 2024-02-28 00:29:01.246 9000 TIP 441152 19031 6092231 2024-02-28 00:29:16.053 2024-02-28 00:29:16.053 1000 FEE 441124 18387 6092232 2024-02-28 00:29:16.053 2024-02-28 00:29:16.053 9000 TIP 441124 10728 6092237 2024-02-28 00:29:16.699 2024-02-28 00:29:16.699 1000 FEE 441124 20182 6092238 2024-02-28 00:29:16.699 2024-02-28 00:29:16.699 9000 TIP 441124 6471 6092239 2024-02-28 00:29:16.886 2024-02-28 00:29:16.886 1000 FEE 441124 4768 6092240 2024-02-28 00:29:16.886 2024-02-28 00:29:16.886 9000 TIP 441124 2309 6092248 2024-02-28 00:30:12.777 2024-02-28 00:30:12.777 5000 FEE 440898 714 6092249 2024-02-28 00:30:12.777 2024-02-28 00:30:12.777 45000 TIP 440898 19193 6092263 2024-02-28 00:31:43.23 2024-02-28 00:31:43.23 1000 FEE 440818 18995 6092264 2024-02-28 00:31:43.23 2024-02-28 00:31:43.23 9000 TIP 440818 14271 6092286 2024-02-28 00:32:39.063 2024-02-28 00:32:39.063 1000 FEE 440725 19463 6092287 2024-02-28 00:32:39.063 2024-02-28 00:32:39.063 9000 TIP 440725 6058 6092298 2024-02-28 00:32:43.377 2024-02-28 00:32:43.377 1000 FEE 440386 19296 6092299 2024-02-28 00:32:43.377 2024-02-28 00:32:43.377 9000 TIP 440386 14015 6092312 2024-02-28 00:33:37.689 2024-02-28 00:33:37.689 1000 FEE 441142 14489 6092313 2024-02-28 00:33:37.689 2024-02-28 00:33:37.689 9000 TIP 441142 21296 6092331 2024-02-28 00:37:45.427 2024-02-28 00:37:45.427 1000 FEE 440582 14939 6092332 2024-02-28 00:37:45.427 2024-02-28 00:37:45.427 9000 TIP 440582 946 6092353 2024-02-28 00:38:32.409 2024-02-28 00:38:32.409 1000 FEE 441099 1326 6092354 2024-02-28 00:38:32.409 2024-02-28 00:38:32.409 9000 TIP 441099 20681 6092364 2024-02-28 00:39:24.186 2024-02-28 00:39:24.186 10000 FEE 441297 20185 6092375 2024-02-28 00:41:05.971 2024-02-28 00:41:05.971 2100 FEE 441171 20586 6092376 2024-02-28 00:41:05.971 2024-02-28 00:41:05.971 18900 TIP 441171 17221 6092424 2024-02-28 00:48:19.537 2024-02-28 00:48:19.537 1000 FEE 441251 19016 6092425 2024-02-28 00:48:19.537 2024-02-28 00:48:19.537 9000 TIP 441251 18526 6092433 2024-02-28 00:48:52.593 2024-02-28 00:48:52.593 1000 FEE 441307 17184 6092448 2024-02-28 00:51:01.415 2024-02-28 00:51:01.415 3100 FEE 441282 18533 6092449 2024-02-28 00:51:01.415 2024-02-28 00:51:01.415 27900 TIP 441282 20624 6092451 2024-02-28 00:51:07.492 2024-02-28 00:51:07.492 300 FEE 441259 699 6092452 2024-02-28 00:51:07.492 2024-02-28 00:51:07.492 2700 TIP 441259 1618 6092470 2024-02-28 00:55:21.563 2024-02-28 00:55:21.563 5700 FEE 441300 657 6092471 2024-02-28 00:55:21.563 2024-02-28 00:55:21.563 51300 TIP 441300 3656 6092472 2024-02-28 00:56:03.975 2024-02-28 00:56:03.975 1000 FEE 441313 8176 6092549 2024-02-28 01:04:49.579 2024-02-28 01:04:49.579 1000 FEE 441322 19507 6092551 2024-02-28 01:05:14.871 2024-02-28 01:05:14.871 300 FEE 440884 16684 6092552 2024-02-28 01:05:14.871 2024-02-28 01:05:14.871 2700 TIP 440884 17064 6092577 2024-02-28 01:07:55.641 2024-02-28 01:07:55.641 1000 FEE 441258 11897 6092578 2024-02-28 01:07:55.641 2024-02-28 01:07:55.641 9000 TIP 441258 638 6092595 2024-02-28 01:08:01.614 2024-02-28 01:08:01.614 2100 FEE 441238 18321 6092596 2024-02-28 01:08:01.614 2024-02-28 01:08:01.614 18900 TIP 441238 4474 6092622 2024-02-28 01:08:14.894 2024-02-28 01:08:14.894 2100 FEE 441054 17331 6092623 2024-02-28 01:08:14.894 2024-02-28 01:08:14.894 18900 TIP 441054 20481 6092646 2024-02-28 01:10:22.659 2024-02-28 01:10:22.659 1300 FEE 441310 18528 6092647 2024-02-28 01:10:22.659 2024-02-28 01:10:22.659 11700 TIP 441310 672 6092666 2024-02-28 01:10:28.088 2024-02-28 01:10:28.088 2600 FEE 441306 19153 6092667 2024-02-28 01:10:28.088 2024-02-28 01:10:28.088 23400 TIP 441306 8037 6092672 2024-02-28 01:10:31.05 2024-02-28 01:10:31.05 1300 FEE 441306 20599 6092673 2024-02-28 01:10:31.05 2024-02-28 01:10:31.05 11700 TIP 441306 692 6092676 2024-02-28 01:10:31.828 2024-02-28 01:10:31.828 1300 FEE 441306 21239 6092677 2024-02-28 01:10:31.828 2024-02-28 01:10:31.828 11700 TIP 441306 660 6092691 2024-02-28 01:13:08.578 2024-02-28 01:13:08.578 1300 FEE 441318 12139 6092692 2024-02-28 01:13:08.578 2024-02-28 01:13:08.578 11700 TIP 441318 2213 6092701 2024-02-28 01:13:09.421 2024-02-28 01:13:09.421 1300 FEE 441318 20267 6092702 2024-02-28 01:13:09.421 2024-02-28 01:13:09.421 11700 TIP 441318 750 6092716 2024-02-28 01:13:10.671 2024-02-28 01:13:10.671 1300 FEE 441318 18219 6092717 2024-02-28 01:13:10.671 2024-02-28 01:13:10.671 11700 TIP 441318 10849 6092720 2024-02-28 01:13:11.072 2024-02-28 01:13:11.072 1300 FEE 441318 10311 6092721 2024-02-28 01:13:11.072 2024-02-28 01:13:11.072 11700 TIP 441318 21386 6092727 2024-02-28 01:15:04.809 2024-02-28 01:15:04.809 1000 FEE 441327 2674 6092770 2024-02-28 01:21:27.393 2024-02-28 01:21:27.393 1000 FEE 441333 18745 6092771 2024-02-28 01:21:27.393 2024-02-28 01:21:27.393 9000 TIP 441333 20058 6092776 2024-02-28 01:21:29.964 2024-02-28 01:21:29.964 1000 FEE 441333 697 6092777 2024-02-28 01:21:29.964 2024-02-28 01:21:29.964 9000 TIP 441333 4064 6092780 2024-02-28 01:21:30.744 2024-02-28 01:21:30.744 1000 FEE 441333 9166 6092781 2024-02-28 01:21:30.744 2024-02-28 01:21:30.744 9000 TIP 441333 21164 6092784 2024-02-28 01:21:31.749 2024-02-28 01:21:31.749 1000 FEE 441333 12946 6091921 2024-02-27 23:47:51.317 2024-02-27 23:47:51.317 2100 FEE 441077 13132 6091922 2024-02-27 23:47:51.317 2024-02-27 23:47:51.317 18900 TIP 441077 686 6091944 2024-02-27 23:48:10.116 2024-02-27 23:48:10.116 1000 FEE 441220 1823 6091945 2024-02-27 23:48:10.116 2024-02-27 23:48:10.116 9000 TIP 441220 9150 6091948 2024-02-27 23:48:45.333 2024-02-27 23:48:45.333 1000 FEE 441256 15536 6092000 2024-02-28 00:04:02.797 2024-02-28 00:04:02.797 2100 FEE 441259 6717 6092001 2024-02-28 00:04:02.797 2024-02-28 00:04:02.797 18900 TIP 441259 1428 6092039 2024-02-28 00:07:52.94 2024-02-28 00:07:52.94 1000 FEE 441108 12188 6092040 2024-02-28 00:07:52.94 2024-02-28 00:07:52.94 9000 TIP 441108 8541 6092043 2024-02-28 00:07:54.468 2024-02-28 00:07:54.468 27900 FEE 441169 11670 6092044 2024-02-28 00:07:54.468 2024-02-28 00:07:54.468 251100 TIP 441169 9364 6092054 2024-02-28 00:09:18.087 2024-02-28 00:09:18.087 4000 FEE 441265 5519 6092055 2024-02-28 00:09:18.087 2024-02-28 00:09:18.087 36000 TIP 441265 17183 6092070 2024-02-28 00:12:30.311 2024-02-28 00:12:30.311 1000 FEE 441168 2709 6092071 2024-02-28 00:12:30.311 2024-02-28 00:12:30.311 9000 TIP 441168 760 6092082 2024-02-28 00:12:41.922 2024-02-28 00:12:41.922 1000 FEE 441169 20409 6092083 2024-02-28 00:12:41.922 2024-02-28 00:12:41.922 9000 TIP 441169 19613 6092089 2024-02-28 00:13:35.305 2024-02-28 00:13:35.305 1000 FEE 441271 21247 6092090 2024-02-28 00:13:41.757 2024-02-28 00:13:41.757 5700 FEE 441270 20669 6092091 2024-02-28 00:13:41.757 2024-02-28 00:13:41.757 51300 TIP 441270 16684 6092126 2024-02-28 00:14:11.443 2024-02-28 00:14:11.443 1000 FEE 440974 1959 6092127 2024-02-28 00:14:11.443 2024-02-28 00:14:11.443 9000 TIP 440974 21044 6092140 2024-02-28 00:16:29.616 2024-02-28 00:16:29.616 2100 FEE 441264 1814 6092141 2024-02-28 00:16:29.616 2024-02-28 00:16:29.616 18900 TIP 441264 16834 6092142 2024-02-28 00:16:30.812 2024-02-28 00:16:30.812 1000 FEE 441275 20353 6092153 2024-02-28 00:18:14.372 2024-02-28 00:18:14.372 1000 FEE 441278 7986 6092178 2024-02-28 00:23:55.532 2024-02-28 00:23:55.532 1000 FEE 441285 18736 6092196 2024-02-28 00:26:20.439 2024-02-28 00:26:20.439 0 FEE 441284 18809 6092204 2024-02-28 00:27:29.473 2024-02-28 00:27:29.473 100000 FEE 441288 21083 6092205 2024-02-28 00:27:59.233 2024-02-28 00:27:59.233 100000 FEE 441289 17109 6092214 2024-02-28 00:28:48.689 2024-02-28 00:28:48.689 1000 FEE 441273 15282 6092215 2024-02-28 00:28:48.689 2024-02-28 00:28:48.689 9000 TIP 441273 20514 6092220 2024-02-28 00:29:00.253 2024-02-28 00:29:00.253 1000 FEE 441152 20023 6092221 2024-02-28 00:29:00.253 2024-02-28 00:29:00.253 9000 TIP 441152 2111 6092235 2024-02-28 00:29:16.384 2024-02-28 00:29:16.384 1000 FEE 441124 20026 6092236 2024-02-28 00:29:16.384 2024-02-28 00:29:16.384 9000 TIP 441124 10056 6092251 2024-02-28 00:31:09.758 2024-02-28 00:31:09.758 1000 FEE 440994 14280 6092252 2024-02-28 00:31:09.758 2024-02-28 00:31:09.758 9000 TIP 440994 18016 6092265 2024-02-28 00:31:56.841 2024-02-28 00:31:56.841 1000 FEE 438504 9669 6092266 2024-02-28 00:31:56.841 2024-02-28 00:31:56.841 9000 TIP 438504 13987 6092269 2024-02-28 00:31:57.3 2024-02-28 00:31:57.3 1000 FEE 438504 7809 6092270 2024-02-28 00:31:57.3 2024-02-28 00:31:57.3 9000 TIP 438504 766 6092294 2024-02-28 00:32:39.685 2024-02-28 00:32:39.685 1000 FEE 440725 10591 6092295 2024-02-28 00:32:39.685 2024-02-28 00:32:39.685 9000 TIP 440725 1576 6092304 2024-02-28 00:32:43.984 2024-02-28 00:32:43.984 1000 FEE 440386 15577 6092305 2024-02-28 00:32:43.984 2024-02-28 00:32:43.984 9000 TIP 440386 19759 6092309 2024-02-28 00:33:06.169 2024-02-28 00:33:06.169 2100 FEE 441160 15806 6092310 2024-02-28 00:33:06.169 2024-02-28 00:33:06.169 18900 TIP 441160 19142 6092311 2024-02-28 00:33:35.92 2024-02-28 00:33:35.92 1000 FEE 441291 2577 6092320 2024-02-28 00:37:04.152 2024-02-28 00:37:04.152 10100 FEE 441238 671 6092321 2024-02-28 00:37:04.152 2024-02-28 00:37:04.152 90900 TIP 441238 20500 6092327 2024-02-28 00:37:30.92 2024-02-28 00:37:30.92 2100 FEE 440988 18154 6092328 2024-02-28 00:37:30.92 2024-02-28 00:37:30.92 18900 TIP 440988 886 6092335 2024-02-28 00:37:45.787 2024-02-28 00:37:45.787 1000 FEE 440582 715 6092336 2024-02-28 00:37:45.787 2024-02-28 00:37:45.787 9000 TIP 440582 18533 6092349 2024-02-28 00:37:47.487 2024-02-28 00:37:47.487 1000 FEE 440582 11450 6092350 2024-02-28 00:37:47.487 2024-02-28 00:37:47.487 9000 TIP 440582 18008 6092361 2024-02-28 00:38:57.303 2024-02-28 00:38:57.303 2500 FEE 441247 17568 6092362 2024-02-28 00:38:57.303 2024-02-28 00:38:57.303 22500 TIP 441247 18528 6092392 2024-02-28 00:44:13.835 2024-02-28 00:44:13.835 100000 FEE 441301 8841 6092393 2024-02-28 00:44:16.98 2024-02-28 00:44:16.98 700 FEE 441153 4292 6092394 2024-02-28 00:44:16.98 2024-02-28 00:44:16.98 6300 TIP 441153 15088 6092403 2024-02-28 00:45:10.671 2024-02-28 00:45:10.671 1000 FEE 441303 17673 6092422 2024-02-28 00:48:06.237 2024-02-28 00:48:06.237 5000 FEE 441245 21620 6092423 2024-02-28 00:48:06.237 2024-02-28 00:48:06.237 45000 TIP 441245 20490 6092462 2024-02-28 00:52:08.981 2024-02-28 00:52:08.981 1000 FEE 441310 20776 6092501 2024-02-28 00:58:57.181 2024-02-28 00:58:57.181 1000 FEE 441316 1209 6092516 2024-02-28 00:59:12.314 2024-02-28 00:59:12.314 7700 FEE 441238 21214 6092517 2024-02-28 00:59:12.314 2024-02-28 00:59:12.314 69300 TIP 441238 756 6092525 2024-02-28 01:00:19.947 2024-02-28 01:00:19.947 300 FEE 441118 1175 6092526 2024-02-28 01:00:19.947 2024-02-28 01:00:19.947 2700 TIP 441118 2576 6092539 2024-02-28 01:03:06.379 2024-02-28 01:03:06.379 6900 FEE 441314 18772 6092540 2024-02-28 01:03:06.379 2024-02-28 01:03:06.379 62100 TIP 441314 7903 6092559 2024-02-28 01:07:43.105 2024-02-28 01:07:43.105 1000 FEE 441258 21072 6092004 2024-02-28 00:04:06.238 2024-02-28 00:04:06.238 27900 TIP 441192 17707 6092009 2024-02-28 00:06:00.683 2024-02-28 00:06:00.683 0 FEE 441263 3706 6092011 2024-02-28 00:06:06.021 2024-02-28 00:06:06.021 2100 FEE 441259 16660 6092012 2024-02-28 00:06:06.021 2024-02-28 00:06:06.021 18900 TIP 441259 9378 6092024 2024-02-28 00:07:12.821 2024-02-28 00:07:12.821 1000 FEE 440986 691 6092025 2024-02-28 00:07:12.821 2024-02-28 00:07:12.821 9000 TIP 440986 5017 6092046 2024-02-28 00:08:25.752 2024-02-28 00:08:25.752 3100 FEE 441189 18557 6092047 2024-02-28 00:08:25.752 2024-02-28 00:08:25.752 27900 TIP 441189 19690 6092048 2024-02-28 00:08:39.021 2024-02-28 00:08:39.021 3100 FEE 441205 19034 6092049 2024-02-28 00:08:39.021 2024-02-28 00:08:39.021 27900 TIP 441205 17124 6092063 2024-02-28 00:12:10.365 2024-02-28 00:12:10.365 1000 FEE 441270 10352 6092078 2024-02-28 00:12:41.213 2024-02-28 00:12:41.213 1000 FEE 441169 20892 6092079 2024-02-28 00:12:41.213 2024-02-28 00:12:41.213 9000 TIP 441169 18460 6092124 2024-02-28 00:14:10.829 2024-02-28 00:14:10.829 1000 FEE 440974 18016 6092125 2024-02-28 00:14:10.829 2024-02-28 00:14:10.829 9000 TIP 440974 12930 6092132 2024-02-28 00:14:12.724 2024-02-28 00:14:12.724 1000 FEE 440974 7989 6092133 2024-02-28 00:14:12.724 2024-02-28 00:14:12.724 9000 TIP 440974 19309 6092145 2024-02-28 00:17:06.528 2024-02-28 00:17:06.528 1000 FEE 441277 16357 6092173 2024-02-28 00:23:03.991 2024-02-28 00:23:03.991 21000 FEE 441259 1628 6092174 2024-02-28 00:23:03.991 2024-02-28 00:23:03.991 189000 TIP 441259 4763 6092198 2024-02-28 00:26:43.403 2024-02-28 00:26:43.403 1000 FEE 441287 9345 6092207 2024-02-28 00:28:17.492 2024-02-28 00:28:17.492 1000 FEE 441290 12334 6092218 2024-02-28 00:28:59.842 2024-02-28 00:28:59.842 1000 FEE 441152 14657 6092219 2024-02-28 00:28:59.842 2024-02-28 00:28:59.842 9000 TIP 441152 21136 6092233 2024-02-28 00:29:16.188 2024-02-28 00:29:16.188 1000 FEE 441124 16948 6092234 2024-02-28 00:29:16.188 2024-02-28 00:29:16.188 9000 TIP 441124 21139 6092257 2024-02-28 00:31:41.999 2024-02-28 00:31:41.999 1000 FEE 440818 994 6092258 2024-02-28 00:31:41.999 2024-02-28 00:31:41.999 9000 TIP 440818 21281 6092278 2024-02-28 00:32:38.363 2024-02-28 00:32:38.363 1000 FEE 440725 13133 6092279 2024-02-28 00:32:38.363 2024-02-28 00:32:38.363 9000 TIP 440725 7587 6092280 2024-02-28 00:32:38.538 2024-02-28 00:32:38.538 1000 FEE 440725 4570 6092281 2024-02-28 00:32:38.538 2024-02-28 00:32:38.538 9000 TIP 440725 2039 6092306 2024-02-28 00:32:44.05 2024-02-28 00:32:44.05 1000 FEE 440386 21466 6092307 2024-02-28 00:32:44.05 2024-02-28 00:32:44.05 9000 TIP 440386 889 6092316 2024-02-28 00:34:59.428 2024-02-28 00:34:59.428 100000 FEE 441293 15115 6092326 2024-02-28 00:37:11.908 2024-02-28 00:37:11.908 1000 FEE 441294 1465 6092345 2024-02-28 00:37:47.003 2024-02-28 00:37:47.003 1000 FEE 440582 21386 6092346 2024-02-28 00:37:47.003 2024-02-28 00:37:47.003 9000 TIP 440582 20231 6092366 2024-02-28 00:39:39.06 2024-02-28 00:39:39.06 100 FEE 440561 632 6092367 2024-02-28 00:39:39.06 2024-02-28 00:39:39.06 900 TIP 440561 985 6092400 2024-02-28 00:44:54.683 2024-02-28 00:44:54.683 1000 FEE 441300 12102 6092401 2024-02-28 00:44:54.683 2024-02-28 00:44:54.683 9000 TIP 441300 21469 6092404 2024-02-28 00:45:59.928 2024-02-28 00:45:59.928 1000 FEE 441304 16356 6092431 2024-02-28 00:48:50.513 2024-02-28 00:48:50.513 2100 FEE 441189 14909 6092432 2024-02-28 00:48:50.513 2024-02-28 00:48:50.513 18900 TIP 441189 7818 6092438 2024-02-28 00:49:13.006 2024-02-28 00:49:13.006 2100 FEE 441276 5646 6092439 2024-02-28 00:49:13.006 2024-02-28 00:49:13.006 18900 TIP 441276 18995 6092446 2024-02-28 00:49:55.63 2024-02-28 00:49:55.63 100000 DONT_LIKE_THIS 441293 19303 6092477 2024-02-28 00:56:32.172 2024-02-28 00:56:32.172 3300 FEE 441242 4973 6092478 2024-02-28 00:56:32.172 2024-02-28 00:56:32.172 29700 TIP 441242 14225 6092491 2024-02-28 00:57:49.339 2024-02-28 00:57:49.339 3300 FEE 441197 5708 6092492 2024-02-28 00:57:49.339 2024-02-28 00:57:49.339 29700 TIP 441197 9341 6092512 2024-02-28 00:59:11.836 2024-02-28 00:59:11.836 7700 FEE 441238 18403 6092513 2024-02-28 00:59:11.836 2024-02-28 00:59:11.836 69300 TIP 441238 2757 6092520 2024-02-28 00:59:13.135 2024-02-28 00:59:13.135 15400 FEE 441238 4079 6092521 2024-02-28 00:59:13.135 2024-02-28 00:59:13.135 138600 TIP 441238 16542 6092533 2024-02-28 01:02:33.149 2024-02-28 01:02:33.149 10000 FEE 441315 2203 6092534 2024-02-28 01:02:33.149 2024-02-28 01:02:33.149 90000 TIP 441315 7587 6092541 2024-02-28 01:03:10.788 2024-02-28 01:03:10.788 10000 FEE 441321 657 6092543 2024-02-28 01:04:21.718 2024-02-28 01:04:21.718 10000 FEE 441247 5565 6092544 2024-02-28 01:04:21.718 2024-02-28 01:04:21.718 90000 TIP 441247 2338 6092547 2024-02-28 01:04:41.389 2024-02-28 01:04:41.389 10000 FEE 441159 16097 6092548 2024-02-28 01:04:41.389 2024-02-28 01:04:41.389 90000 TIP 441159 14168 6092554 2024-02-28 01:06:08.589 2024-02-28 01:06:08.589 1000 FEE 441323 21395 6092556 2024-02-28 01:06:45.542 2024-02-28 01:06:45.542 1000 FEE 441266 1740 6092557 2024-02-28 01:06:45.542 2024-02-28 01:06:45.542 9000 TIP 441266 1454 6092563 2024-02-28 01:07:44.27 2024-02-28 01:07:44.27 1000 FEE 440692 669 6092564 2024-02-28 01:07:44.27 2024-02-28 01:07:44.27 9000 TIP 440692 18040 6092567 2024-02-28 01:07:44.624 2024-02-28 01:07:44.624 1000 FEE 440692 2528 6092568 2024-02-28 01:07:44.624 2024-02-28 01:07:44.624 9000 TIP 440692 18124 6092575 2024-02-28 01:07:55.493 2024-02-28 01:07:55.493 1000 FEE 441258 16532 6092576 2024-02-28 01:07:55.493 2024-02-28 01:07:55.493 9000 TIP 441258 8045 6092616 2024-02-28 01:08:11.121 2024-02-28 01:08:11.121 2100 FEE 440764 18311 6092617 2024-02-28 01:08:11.121 2024-02-28 01:08:11.121 18900 TIP 440764 19843 6092624 2024-02-28 01:08:17.354 2024-02-28 01:08:17.354 100 FEE 440590 2681 6092625 2024-02-28 01:08:17.354 2024-02-28 01:08:17.354 900 TIP 440590 10519 6092632 2024-02-28 01:09:14.993 2024-02-28 01:09:14.993 1000 FEE 441325 7553 6092674 2024-02-28 01:10:31.167 2024-02-28 01:10:31.167 1300 FEE 441306 11165 6092675 2024-02-28 01:10:31.167 2024-02-28 01:10:31.167 11700 TIP 441306 16097 6092678 2024-02-28 01:10:32.165 2024-02-28 01:10:32.165 1300 FEE 441306 20717 6092679 2024-02-28 01:10:32.165 2024-02-28 01:10:32.165 11700 TIP 441306 1801 6092693 2024-02-28 01:13:08.743 2024-02-28 01:13:08.743 1300 FEE 441318 19259 6092694 2024-02-28 01:13:08.743 2024-02-28 01:13:08.743 11700 TIP 441318 6749 6092699 2024-02-28 01:13:09.254 2024-02-28 01:13:09.254 1300 FEE 441318 14168 6092700 2024-02-28 01:13:09.254 2024-02-28 01:13:09.254 11700 TIP 441318 766 6092703 2024-02-28 01:13:09.597 2024-02-28 01:13:09.597 1300 FEE 441318 20377 6092704 2024-02-28 01:13:09.597 2024-02-28 01:13:09.597 11700 TIP 441318 11523 6092710 2024-02-28 01:13:10.125 2024-02-28 01:13:10.125 1300 FEE 441318 649 6092711 2024-02-28 01:13:10.125 2024-02-28 01:13:10.125 11700 TIP 441318 2056 6092731 2024-02-28 01:16:36.395 2024-02-28 01:16:36.395 1000 FEE 441330 18556 6092745 2024-02-28 01:20:52.053 2024-02-28 01:20:52.053 1000 POLL 441333 9655 6092749 2024-02-28 01:21:05.393 2024-02-28 01:21:05.393 1000 FEE 441334 14905 6092758 2024-02-28 01:21:26.444 2024-02-28 01:21:26.444 1000 FEE 441333 14688 6092759 2024-02-28 01:21:26.444 2024-02-28 01:21:26.444 9000 TIP 441333 16270 6092760 2024-02-28 01:21:26.704 2024-02-28 01:21:26.704 1000 FEE 441333 2233 6092761 2024-02-28 01:21:26.704 2024-02-28 01:21:26.704 9000 TIP 441333 21314 6092808 2024-02-28 01:24:49.161 2024-02-28 01:24:49.161 6900 FEE 441333 17710 6092088 2024-02-28 00:13:21.206 2024-02-28 00:13:21.206 90000 TIP 441238 20969 6092097 2024-02-28 00:13:57.335 2024-02-28 00:13:57.335 1000 FEE 441089 9517 6092098 2024-02-28 00:13:57.335 2024-02-28 00:13:57.335 9000 TIP 441089 21444 6092101 2024-02-28 00:13:58.374 2024-02-28 00:13:58.374 1000 FEE 441089 21212 6092102 2024-02-28 00:13:58.374 2024-02-28 00:13:58.374 9000 TIP 441089 1010 6092116 2024-02-28 00:14:04.538 2024-02-28 00:14:04.538 1000 FEE 441138 18601 6092117 2024-02-28 00:14:04.538 2024-02-28 00:14:04.538 9000 TIP 441138 15728 6092135 2024-02-28 00:15:11.123 2024-02-28 00:15:11.123 1000 FEE 441273 20058 6092136 2024-02-28 00:15:29.273 2024-02-28 00:15:29.273 3100 FEE 441216 5776 6092137 2024-02-28 00:15:29.273 2024-02-28 00:15:29.273 27900 TIP 441216 19449 6092170 2024-02-28 00:22:09.881 2024-02-28 00:22:09.881 21000 FEE 441247 19905 6092171 2024-02-28 00:22:09.881 2024-02-28 00:22:09.881 189000 TIP 441247 19488 6092183 2024-02-28 00:23:57.022 2024-02-28 00:23:57.022 2100 FEE 441247 2075 6092184 2024-02-28 00:23:57.022 2024-02-28 00:23:57.022 18900 TIP 441247 21523 6092222 2024-02-28 00:29:00.774 2024-02-28 00:29:00.774 1000 FEE 441152 16336 6092223 2024-02-28 00:29:00.774 2024-02-28 00:29:00.774 9000 TIP 441152 18832 6092245 2024-02-28 00:29:31.558 2024-02-28 00:29:31.558 5700 FEE 441290 6798 6092246 2024-02-28 00:29:31.558 2024-02-28 00:29:31.558 51300 TIP 441290 8133 6092253 2024-02-28 00:31:10.113 2024-02-28 00:31:10.113 1000 FEE 440994 826 6092254 2024-02-28 00:31:10.113 2024-02-28 00:31:10.113 9000 TIP 440994 704 6092261 2024-02-28 00:31:42.781 2024-02-28 00:31:42.781 1000 FEE 440818 1611 6092262 2024-02-28 00:31:42.781 2024-02-28 00:31:42.781 9000 TIP 440818 4313 6092322 2024-02-28 00:37:06.971 2024-02-28 00:37:06.971 2100 FEE 441251 14015 6092323 2024-02-28 00:37:06.971 2024-02-28 00:37:06.971 18900 TIP 441251 9109 6092343 2024-02-28 00:37:46.798 2024-02-28 00:37:46.798 1000 FEE 440582 9969 6092344 2024-02-28 00:37:46.798 2024-02-28 00:37:46.798 9000 TIP 440582 19689 6092351 2024-02-28 00:37:51.008 2024-02-28 00:37:51.008 1000 FEE 441296 910 6092357 2024-02-28 00:38:57.232 2024-02-28 00:38:57.232 2500 FEE 441247 14381 6092358 2024-02-28 00:38:57.232 2024-02-28 00:38:57.232 22500 TIP 441247 17690 6092373 2024-02-28 00:40:55.454 2024-02-28 00:40:55.454 1000 FEE 441299 7668 6092386 2024-02-28 00:44:09.914 2024-02-28 00:44:09.914 3300 FEE 441267 1433 6092387 2024-02-28 00:44:09.914 2024-02-28 00:44:09.914 29700 TIP 441267 5825 6092390 2024-02-28 00:44:12.366 2024-02-28 00:44:12.366 100000 FEE 441300 2088 6092391 2024-02-28 00:44:12.366 2024-02-28 00:44:12.366 25000000 BOOST 441300 19668 6092395 2024-02-28 00:44:19.129 2024-02-28 00:44:19.129 1000 FEE 441302 19016 6092406 2024-02-28 00:46:13.086 2024-02-28 00:46:13.086 1000 FEE 441305 1890 6092407 2024-02-28 00:46:35.564 2024-02-28 00:46:35.564 2100 FEE 441301 15273 6092408 2024-02-28 00:46:35.564 2024-02-28 00:46:35.564 18900 TIP 441301 19417 6092411 2024-02-28 00:46:49.15 2024-02-28 00:46:49.15 2100 FEE 441298 17639 6092412 2024-02-28 00:46:49.15 2024-02-28 00:46:49.15 18900 TIP 441298 20326 6092453 2024-02-28 00:51:12.66 2024-02-28 00:51:12.66 10000 FEE 441132 19987 6092454 2024-02-28 00:51:12.66 2024-02-28 00:51:12.66 90000 TIP 441132 21036 6092455 2024-02-28 00:51:39.661 2024-02-28 00:51:39.661 300 FEE 441247 1051 6092456 2024-02-28 00:51:39.661 2024-02-28 00:51:39.661 2700 TIP 441247 9330 6092459 2024-02-28 00:51:44.362 2024-02-28 00:51:44.362 3100 FEE 441280 1008 6092460 2024-02-28 00:51:44.362 2024-02-28 00:51:44.362 27900 TIP 441280 16154 6092463 2024-02-28 00:52:23.681 2024-02-28 00:52:23.681 3100 FEE 441291 20062 6092464 2024-02-28 00:52:23.681 2024-02-28 00:52:23.681 27900 TIP 441291 1245 6092486 2024-02-28 00:57:07.171 2024-02-28 00:57:07.171 3100 FEE 441198 15463 6092487 2024-02-28 00:57:07.171 2024-02-28 00:57:07.171 27900 TIP 441198 20619 6092493 2024-02-28 00:57:49.569 2024-02-28 00:57:49.569 3300 FEE 441197 19320 6092494 2024-02-28 00:57:49.569 2024-02-28 00:57:49.569 29700 TIP 441197 11862 6092497 2024-02-28 00:58:00.476 2024-02-28 00:58:00.476 1000 FEE 440898 18663 6092498 2024-02-28 00:58:00.476 2024-02-28 00:58:00.476 9000 TIP 440898 16966 6092502 2024-02-28 00:59:00.199 2024-02-28 00:59:00.199 1000 FEE 441317 9341 6092510 2024-02-28 00:59:11.671 2024-02-28 00:59:11.671 7700 FEE 441238 19821 6092511 2024-02-28 00:59:11.671 2024-02-28 00:59:11.671 69300 TIP 441238 4225 6092518 2024-02-28 00:59:13.121 2024-02-28 00:59:13.121 7700 FEE 441238 12272 6092519 2024-02-28 00:59:13.121 2024-02-28 00:59:13.121 69300 TIP 441238 21609 6092243 2024-02-28 00:29:31.107 2024-02-28 00:29:31.107 900 FEE 441289 21562 6092244 2024-02-28 00:29:31.107 2024-02-28 00:29:31.107 8100 TIP 441289 20090 6092259 2024-02-28 00:31:42.28 2024-02-28 00:31:42.28 1000 FEE 440818 1245 6092260 2024-02-28 00:31:42.28 2024-02-28 00:31:42.28 9000 TIP 440818 21401 6092267 2024-02-28 00:31:57.107 2024-02-28 00:31:57.107 1000 FEE 438504 20683 6092268 2024-02-28 00:31:57.107 2024-02-28 00:31:57.107 9000 TIP 438504 9352 6092271 2024-02-28 00:31:57.484 2024-02-28 00:31:57.484 1000 FEE 438504 2674 6092272 2024-02-28 00:31:57.484 2024-02-28 00:31:57.484 9000 TIP 438504 17535 6092274 2024-02-28 00:32:38.019 2024-02-28 00:32:38.019 1000 FEE 440725 14489 6092275 2024-02-28 00:32:38.019 2024-02-28 00:32:38.019 9000 TIP 440725 889 6092314 2024-02-28 00:33:50.247 2024-02-28 00:33:50.247 1000 FEE 441292 16830 6092359 2024-02-28 00:38:57.247 2024-02-28 00:38:57.247 2500 FEE 441247 9921 6092360 2024-02-28 00:38:57.247 2024-02-28 00:38:57.247 22500 TIP 441247 9349 6092368 2024-02-28 00:39:39.268 2024-02-28 00:39:39.268 900 FEE 440561 4768 6092369 2024-02-28 00:39:39.268 2024-02-28 00:39:39.268 8100 TIP 440561 13399 6092415 2024-02-28 00:47:09.942 2024-02-28 00:47:09.942 1000 FEE 441251 18832 6092416 2024-02-28 00:47:09.942 2024-02-28 00:47:09.942 9000 TIP 441251 9330 6092419 2024-02-28 00:47:40.572 2024-02-28 00:47:40.572 2100 FEE 441169 9494 6092420 2024-02-28 00:47:40.572 2024-02-28 00:47:40.572 18900 TIP 441169 1394 6092427 2024-02-28 00:48:34.399 2024-02-28 00:48:34.399 1000 FEE 441186 11240 6092428 2024-02-28 00:48:34.399 2024-02-28 00:48:34.399 9000 TIP 441186 6533 6092437 2024-02-28 00:49:11.524 2024-02-28 00:49:11.524 1000 FEE 441309 21458 6092442 2024-02-28 00:49:15.3 2024-02-28 00:49:15.3 2100 FEE 441273 21323 6092443 2024-02-28 00:49:15.3 2024-02-28 00:49:15.3 18900 TIP 441273 11423 6092457 2024-02-28 00:51:42.66 2024-02-28 00:51:42.66 6900 FEE 441275 9844 6092458 2024-02-28 00:51:42.66 2024-02-28 00:51:42.66 62100 TIP 441275 1310 6092466 2024-02-28 00:53:29.582 2024-02-28 00:53:29.582 42000 FEE 441311 20018 6092474 2024-02-28 00:56:16.811 2024-02-28 00:56:16.811 1000 FEE 441238 20299 6092475 2024-02-28 00:56:16.811 2024-02-28 00:56:16.811 9000 TIP 441238 4391 6092476 2024-02-28 00:56:26.062 2024-02-28 00:56:26.062 0 FEE 441313 19465 6092483 2024-02-28 00:56:43.983 2024-02-28 00:56:43.983 3300 FEE 441174 726 6092484 2024-02-28 00:56:43.983 2024-02-28 00:56:43.983 29700 TIP 441174 20470 6092508 2024-02-28 00:59:11.501 2024-02-28 00:59:11.501 7700 FEE 441238 19154 6092509 2024-02-28 00:59:11.501 2024-02-28 00:59:11.501 69300 TIP 441238 951 6092530 2024-02-28 01:02:05.375 2024-02-28 01:02:05.375 1000 FEE 441319 2776 6092585 2024-02-28 01:07:56.502 2024-02-28 01:07:56.502 1000 FEE 441258 8162 6092586 2024-02-28 01:07:56.502 2024-02-28 01:07:56.502 9000 TIP 441258 18678 6092630 2024-02-28 01:08:41.838 2024-02-28 01:08:41.838 1000000 DONT_LIKE_THIS 440568 7125 6092644 2024-02-28 01:10:21.978 2024-02-28 01:10:21.978 1300 FEE 441306 17147 6092645 2024-02-28 01:10:21.978 2024-02-28 01:10:21.978 11700 TIP 441306 4079 6092664 2024-02-28 01:10:26.886 2024-02-28 01:10:26.886 1300 FEE 441310 18393 6092665 2024-02-28 01:10:26.886 2024-02-28 01:10:26.886 11700 TIP 441310 2342 6092668 2024-02-28 01:10:28.807 2024-02-28 01:10:28.807 1300 FEE 441306 994 6092669 2024-02-28 01:10:28.807 2024-02-28 01:10:28.807 11700 TIP 441306 21083 6092685 2024-02-28 01:11:59.558 2024-02-28 01:11:59.558 1000 FEE 441318 14255 6092686 2024-02-28 01:11:59.558 2024-02-28 01:11:59.558 9000 TIP 441318 17046 6092695 2024-02-28 01:13:08.912 2024-02-28 01:13:08.912 1300 FEE 441318 1122 6092696 2024-02-28 01:13:08.912 2024-02-28 01:13:08.912 11700 TIP 441318 8245 6092697 2024-02-28 01:13:09.056 2024-02-28 01:13:09.056 1300 FEE 441318 696 6092698 2024-02-28 01:13:09.056 2024-02-28 01:13:09.056 11700 TIP 441318 19346 6092712 2024-02-28 01:13:10.305 2024-02-28 01:13:10.305 1300 FEE 441318 20243 6092713 2024-02-28 01:13:10.305 2024-02-28 01:13:10.305 11700 TIP 441318 16556 6092714 2024-02-28 01:13:10.487 2024-02-28 01:13:10.487 1300 FEE 441318 854 6092715 2024-02-28 01:13:10.487 2024-02-28 01:13:10.487 11700 TIP 441318 2065 6092728 2024-02-28 01:15:52.367 2024-02-28 01:15:52.367 7000 FEE 441328 18265 6092729 2024-02-28 01:16:01.455 2024-02-28 01:16:01.455 1000 FEE 441329 14122 6092741 2024-02-28 01:19:45.908 2024-02-28 01:19:45.908 100000 FEE 441333 20106 6092750 2024-02-28 01:21:07.24 2024-02-28 01:21:07.24 1000 FEE 441335 1845 6092764 2024-02-28 01:21:26.926 2024-02-28 01:21:26.926 1000 FEE 441333 9874 6092765 2024-02-28 01:21:26.926 2024-02-28 01:21:26.926 9000 TIP 441333 16126 6092768 2024-02-28 01:21:27.247 2024-02-28 01:21:27.247 1000 FEE 441333 16513 6092769 2024-02-28 01:21:27.247 2024-02-28 01:21:27.247 9000 TIP 441333 5661 6092772 2024-02-28 01:21:29.079 2024-02-28 01:21:29.079 4000 FEE 441333 769 6092773 2024-02-28 01:21:29.079 2024-02-28 01:21:29.079 36000 TIP 441333 19346 6092774 2024-02-28 01:21:29.432 2024-02-28 01:21:29.432 1000 FEE 441333 6798 6092775 2024-02-28 01:21:29.432 2024-02-28 01:21:29.432 9000 TIP 441333 16665 6092798 2024-02-28 01:24:02.765 2024-02-28 01:24:02.765 1000 FEE 441307 20434 6092799 2024-02-28 01:24:02.765 2024-02-28 01:24:02.765 9000 TIP 441307 9354 6092822 2024-02-28 01:25:21.775 2024-02-28 01:25:21.775 1000 FEE 441341 21455 6092826 2024-02-28 01:25:39.609 2024-02-28 01:25:39.609 2700 FEE 441289 679 6092827 2024-02-28 01:25:39.609 2024-02-28 01:25:39.609 24300 TIP 441289 5175 6092838 2024-02-28 01:25:50.201 2024-02-28 01:25:50.201 1000 FEE 440829 18678 6092839 2024-02-28 01:25:50.201 2024-02-28 01:25:50.201 9000 TIP 440829 6030 6092851 2024-02-28 01:26:15.593 2024-02-28 01:26:15.593 1000 FEE 441343 14271 6092862 2024-02-28 01:27:00.72 2024-02-28 01:27:00.72 1000 FEE 441344 17221 6092869 2024-02-28 01:27:42.015 2024-02-28 01:27:42.015 1000 FEE 441300 20222 6092870 2024-02-28 01:27:42.015 2024-02-28 01:27:42.015 9000 TIP 441300 882 6092914 2024-02-28 01:30:19.504 2024-02-28 01:30:19.504 1000 FEE 441176 711 6092915 2024-02-28 01:30:19.504 2024-02-28 01:30:19.504 9000 TIP 441176 17365 6092932 2024-02-28 01:31:00.933 2024-02-28 01:31:00.933 1000 FEE 440555 11678 6092933 2024-02-28 01:31:00.933 2024-02-28 01:31:00.933 9000 TIP 440555 20205 6092934 2024-02-28 01:31:01.086 2024-02-28 01:31:01.086 1000 FEE 440555 19826 6092935 2024-02-28 01:31:01.086 2024-02-28 01:31:01.086 9000 TIP 440555 15941 6092948 2024-02-28 01:31:40.018 2024-02-28 01:31:40.018 100 FEE 441247 21072 6092949 2024-02-28 01:31:40.018 2024-02-28 01:31:40.018 900 TIP 441247 4079 6092964 2024-02-28 01:32:45.148 2024-02-28 01:32:45.148 2100 FEE 441333 10270 6092965 2024-02-28 01:32:45.148 2024-02-28 01:32:45.148 18900 TIP 441333 21281 6092970 2024-02-28 01:32:59.852 2024-02-28 01:32:59.852 1000 FEE 441351 19286 6093004 2024-02-28 01:37:19.86 2024-02-28 01:37:19.86 1000 FEE 441356 999 6093023 2024-02-28 01:39:04.293 2024-02-28 01:39:04.293 1000 FEE 440692 9992 6093024 2024-02-28 01:39:04.293 2024-02-28 01:39:04.293 9000 TIP 440692 6327 6093034 2024-02-28 01:40:25.658 2024-02-28 01:40:25.658 1000 FEE 440898 768 6093035 2024-02-28 01:40:25.658 2024-02-28 01:40:25.658 9000 TIP 440898 20788 6093089 2024-02-28 01:43:24.962 2024-02-28 01:43:24.962 2100 FEE 441282 980 6092435 2024-02-28 00:49:04.766 2024-02-28 00:49:04.766 2100 FEE 441216 15271 6092436 2024-02-28 00:49:04.766 2024-02-28 00:49:04.766 18900 TIP 441216 6300 6092444 2024-02-28 00:49:16.192 2024-02-28 00:49:16.192 2100 FEE 441290 19043 6092445 2024-02-28 00:49:16.192 2024-02-28 00:49:16.192 18900 TIP 441290 19633 6092479 2024-02-28 00:56:32.193 2024-02-28 00:56:32.193 3300 FEE 441242 6268 6092480 2024-02-28 00:56:32.193 2024-02-28 00:56:32.193 29700 TIP 441242 4166 6092481 2024-02-28 00:56:32.341 2024-02-28 00:56:32.341 3300 FEE 441242 770 6092482 2024-02-28 00:56:32.341 2024-02-28 00:56:32.341 29700 TIP 441242 19601 6092500 2024-02-28 00:58:42.481 2024-02-28 00:58:42.481 100000 FEE 441315 20434 6092504 2024-02-28 00:59:10.306 2024-02-28 00:59:10.306 7700 FEE 441238 5538 6092505 2024-02-28 00:59:10.306 2024-02-28 00:59:10.306 69300 TIP 441238 1136 6092535 2024-02-28 01:02:37.352 2024-02-28 01:02:37.352 10000 FEE 441298 18270 6092536 2024-02-28 01:02:37.352 2024-02-28 01:02:37.352 90000 TIP 441298 1213 6092537 2024-02-28 01:03:03.692 2024-02-28 01:03:03.692 1000 FEE 441320 18454 6092561 2024-02-28 01:07:44.061 2024-02-28 01:07:44.061 1000 FEE 441258 12721 6092562 2024-02-28 01:07:44.061 2024-02-28 01:07:44.061 9000 TIP 441258 1611 6092569 2024-02-28 01:07:54.093 2024-02-28 01:07:54.093 1000 FEE 441258 3353 6092570 2024-02-28 01:07:54.093 2024-02-28 01:07:54.093 9000 TIP 441258 4633 6092573 2024-02-28 01:07:55.32 2024-02-28 01:07:55.32 1000 FEE 441258 880 6092574 2024-02-28 01:07:55.32 2024-02-28 01:07:55.32 9000 TIP 441258 1785 6092591 2024-02-28 01:07:57.038 2024-02-28 01:07:57.038 1000 FEE 441258 9352 6092592 2024-02-28 01:07:57.038 2024-02-28 01:07:57.038 9000 TIP 441258 10359 6092597 2024-02-28 01:08:02.504 2024-02-28 01:08:02.504 2100 FEE 441169 21060 6092598 2024-02-28 01:08:02.504 2024-02-28 01:08:02.504 18900 TIP 441169 15488 6092614 2024-02-28 01:08:10.67 2024-02-28 01:08:10.67 2100 FEE 441176 19105 6092615 2024-02-28 01:08:10.67 2024-02-28 01:08:10.67 18900 TIP 441176 19812 6092620 2024-02-28 01:08:14.563 2024-02-28 01:08:14.563 2100 FEE 440911 20562 6092621 2024-02-28 01:08:14.563 2024-02-28 01:08:14.563 18900 TIP 440911 976 6092633 2024-02-28 01:09:48.111 2024-02-28 01:09:48.111 1300 FEE 441261 18188 6092634 2024-02-28 01:09:48.111 2024-02-28 01:09:48.111 11700 TIP 441261 19668 6092652 2024-02-28 01:10:24.415 2024-02-28 01:10:24.415 1300 FEE 441306 9845 6092653 2024-02-28 01:10:24.415 2024-02-28 01:10:24.415 11700 TIP 441306 19501 6092656 2024-02-28 01:10:25.324 2024-02-28 01:10:25.324 1300 FEE 441310 12289 6092657 2024-02-28 01:10:25.324 2024-02-28 01:10:25.324 11700 TIP 441310 20243 6092670 2024-02-28 01:10:29.422 2024-02-28 01:10:29.422 1300 FEE 441306 1493 6092671 2024-02-28 01:10:29.422 2024-02-28 01:10:29.422 11700 TIP 441306 9200 6092735 2024-02-28 01:18:03.268 2024-02-28 01:18:03.268 400 FEE 441330 20137 6092736 2024-02-28 01:18:03.268 2024-02-28 01:18:03.268 3600 TIP 441330 20624 6092825 2024-02-28 01:25:31.278 2024-02-28 01:25:31.278 1000 POLL 441333 20218 6092834 2024-02-28 01:25:49.054 2024-02-28 01:25:49.054 1000 FEE 440829 12277 6092835 2024-02-28 01:25:49.054 2024-02-28 01:25:49.054 9000 TIP 440829 21430 6092873 2024-02-28 01:27:47.483 2024-02-28 01:27:47.483 1000 FEE 441169 8133 6092874 2024-02-28 01:27:47.483 2024-02-28 01:27:47.483 9000 TIP 441169 21492 6092885 2024-02-28 01:28:57.959 2024-02-28 01:28:57.959 1000 FEE 441347 21239 6092897 2024-02-28 01:29:12.995 2024-02-28 01:29:12.995 1000 FEE 441087 16542 6092898 2024-02-28 01:29:12.995 2024-02-28 01:29:12.995 9000 TIP 441087 5701 6092926 2024-02-28 01:31:00.24 2024-02-28 01:31:00.24 1000 FEE 440555 635 6092927 2024-02-28 01:31:00.24 2024-02-28 01:31:00.24 9000 TIP 440555 16432 6092928 2024-02-28 01:31:00.48 2024-02-28 01:31:00.48 1000 FEE 440555 721 6092929 2024-02-28 01:31:00.48 2024-02-28 01:31:00.48 9000 TIP 440555 980 6092938 2024-02-28 01:31:02.838 2024-02-28 01:31:02.838 1000 FEE 440555 3371 6092939 2024-02-28 01:31:02.838 2024-02-28 01:31:02.838 9000 TIP 440555 2285 6092958 2024-02-28 01:32:37.06 2024-02-28 01:32:37.06 2100 FEE 441247 8664 6092545 2024-02-28 01:04:21.723 2024-02-28 01:04:21.723 2100 FEE 441315 18743 6092546 2024-02-28 01:04:21.723 2024-02-28 01:04:21.723 18900 TIP 441315 2735 6092555 2024-02-28 01:06:28.281 2024-02-28 01:06:28.281 1000 FEE 441324 16948 6092565 2024-02-28 01:07:44.451 2024-02-28 01:07:44.451 1000 FEE 440692 9816 6092566 2024-02-28 01:07:44.451 2024-02-28 01:07:44.451 9000 TIP 440692 19770 6092589 2024-02-28 01:07:56.861 2024-02-28 01:07:56.861 1000 FEE 441258 3417 6092590 2024-02-28 01:07:56.861 2024-02-28 01:07:56.861 9000 TIP 441258 1632 6092626 2024-02-28 01:08:17.741 2024-02-28 01:08:17.741 900 FEE 440590 19044 6092627 2024-02-28 01:08:17.741 2024-02-28 01:08:17.741 8100 TIP 440590 9290 6092635 2024-02-28 01:09:56.342 2024-02-28 01:09:56.342 100 FEE 440493 722 6092636 2024-02-28 01:09:56.342 2024-02-28 01:09:56.342 900 TIP 440493 18230 6092640 2024-02-28 01:10:08.769 2024-02-28 01:10:08.769 10000 FEE 441321 2335 6092641 2024-02-28 01:10:08.769 2024-02-28 01:10:08.769 90000 TIP 441321 19527 6092650 2024-02-28 01:10:23.985 2024-02-28 01:10:23.985 1300 FEE 441310 913 6092651 2024-02-28 01:10:23.985 2024-02-28 01:10:23.985 11700 TIP 441310 1213 6092658 2024-02-28 01:10:25.788 2024-02-28 01:10:25.788 1300 FEE 441310 5759 6092659 2024-02-28 01:10:25.788 2024-02-28 01:10:25.788 11700 TIP 441310 17519 6092680 2024-02-28 01:10:32.71 2024-02-28 01:10:32.71 1300 FEE 441306 19806 6092681 2024-02-28 01:10:32.71 2024-02-28 01:10:32.71 11700 TIP 441306 20889 6092707 2024-02-28 01:13:09.945 2024-02-28 01:13:09.945 1300 FEE 441318 13575 6092708 2024-02-28 01:13:09.945 2024-02-28 01:13:09.945 11700 TIP 441318 9367 6092709 2024-02-28 01:13:09.954 2024-02-28 01:13:09.954 10000 FEE 441326 616 6092746 2024-02-28 01:21:01.081 2024-02-28 01:21:01.081 23200 FEE 441332 2390 6092747 2024-02-28 01:21:01.081 2024-02-28 01:21:01.081 208800 TIP 441332 14905 6092752 2024-02-28 01:21:25.989 2024-02-28 01:21:25.989 1000 FEE 441333 2640 6092753 2024-02-28 01:21:25.989 2024-02-28 01:21:25.989 9000 TIP 441333 20225 6092766 2024-02-28 01:21:27.096 2024-02-28 01:21:27.096 1000 FEE 441333 3518 6092767 2024-02-28 01:21:27.096 2024-02-28 01:21:27.096 9000 TIP 441333 19375 6092778 2024-02-28 01:21:30.45 2024-02-28 01:21:30.45 1000 FEE 441333 21207 6092779 2024-02-28 01:21:30.45 2024-02-28 01:21:30.45 9000 TIP 441333 19537 6092786 2024-02-28 01:22:02.737 2024-02-28 01:22:02.737 6400 FEE 441238 12097 6092787 2024-02-28 01:22:02.737 2024-02-28 01:22:02.737 57600 TIP 441238 18945 6092789 2024-02-28 01:22:17.777 2024-02-28 01:22:17.777 0 FEE 441334 16296 6092790 2024-02-28 01:22:32.44 2024-02-28 01:22:32.44 1000 POLL 441333 16230 6092791 2024-02-28 01:22:43.79 2024-02-28 01:22:43.79 1000 FEE 441337 13753 6092792 2024-02-28 01:22:46.509 2024-02-28 01:22:46.509 1000 FEE 441298 13046 6092793 2024-02-28 01:22:46.509 2024-02-28 01:22:46.509 9000 TIP 441298 21070 6092795 2024-02-28 01:23:15.373 2024-02-28 01:23:15.373 1000 FEE 441338 21139 6092810 2024-02-28 01:25:02.259 2024-02-28 01:25:02.259 2700 FEE 440981 18402 6092811 2024-02-28 01:25:02.259 2024-02-28 01:25:02.259 24300 TIP 440981 9171 6092816 2024-02-28 01:25:14.196 2024-02-28 01:25:14.196 1000 FEE 441259 1051 6092817 2024-02-28 01:25:14.196 2024-02-28 01:25:14.196 9000 TIP 441259 1652 6092891 2024-02-28 01:29:12.61 2024-02-28 01:29:12.61 1000 FEE 441087 2293 6092892 2024-02-28 01:29:12.61 2024-02-28 01:29:12.61 9000 TIP 441087 18829 6092901 2024-02-28 01:29:13.502 2024-02-28 01:29:13.502 1000 FEE 441087 21398 6092902 2024-02-28 01:29:13.502 2024-02-28 01:29:13.502 9000 TIP 441087 20563 6092910 2024-02-28 01:30:11.811 2024-02-28 01:30:11.811 1000 FEE 441277 19417 6092911 2024-02-28 01:30:11.811 2024-02-28 01:30:11.811 9000 TIP 441277 775 6092922 2024-02-28 01:30:59.918 2024-02-28 01:30:59.918 1000 FEE 440555 20599 6092923 2024-02-28 01:30:59.918 2024-02-28 01:30:59.918 9000 TIP 440555 1180 6092936 2024-02-28 01:31:02.693 2024-02-28 01:31:02.693 1000 FEE 440555 18930 6092937 2024-02-28 01:31:02.693 2024-02-28 01:31:02.693 9000 TIP 440555 640 6092952 2024-02-28 01:31:40.384 2024-02-28 01:31:40.384 100 FEE 441247 18357 6092953 2024-02-28 01:31:40.384 2024-02-28 01:31:40.384 900 TIP 441247 7510 6092962 2024-02-28 01:32:42.248 2024-02-28 01:32:42.248 2100 FEE 441169 15226 6092963 2024-02-28 01:32:42.248 2024-02-28 01:32:42.248 18900 TIP 441169 19121 6092966 2024-02-28 01:32:51.143 2024-02-28 01:32:51.143 2100 FEE 441198 5171 6092967 2024-02-28 01:32:51.143 2024-02-28 01:32:51.143 18900 TIP 441198 6555 6092981 2024-02-28 01:33:47.521 2024-02-28 01:33:47.521 1000 FEE 440241 2961 6092982 2024-02-28 01:33:47.521 2024-02-28 01:33:47.521 9000 TIP 440241 18663 6093016 2024-02-28 01:38:21.048 2024-02-28 01:38:21.048 1000 POLL 441333 17291 6093040 2024-02-28 01:40:26.009 2024-02-28 01:40:26.009 1000 FEE 440898 20754 6093041 2024-02-28 01:40:26.009 2024-02-28 01:40:26.009 9000 TIP 440898 18452 6093042 2024-02-28 01:40:26.607 2024-02-28 01:40:26.607 1000 FEE 440898 1751 6093043 2024-02-28 01:40:26.607 2024-02-28 01:40:26.607 9000 TIP 440898 11329 6093048 2024-02-28 01:40:27.02 2024-02-28 01:40:27.02 1000 FEE 441077 21444 6093049 2024-02-28 01:40:27.02 2024-02-28 01:40:27.02 9000 TIP 441077 14045 6093056 2024-02-28 01:41:11.56 2024-02-28 01:41:11.56 1000 FEE 441358 20036 6093062 2024-02-28 01:42:25.574 2024-02-28 01:42:25.574 1000 FEE 441360 1092 6093067 2024-02-28 01:42:49.884 2024-02-28 01:42:49.884 500 FEE 440587 690 6093068 2024-02-28 01:42:49.884 2024-02-28 01:42:49.884 4500 TIP 440587 15544 6093082 2024-02-28 01:42:59.982 2024-02-28 01:42:59.982 500 FEE 440725 17106 6093083 2024-02-28 01:42:59.982 2024-02-28 01:42:59.982 4500 TIP 440725 19435 6093084 2024-02-28 01:43:00.781 2024-02-28 01:43:00.781 500 FEE 440692 11897 6093085 2024-02-28 01:43:00.781 2024-02-28 01:43:00.781 4500 TIP 440692 12102 6093108 2024-02-28 01:46:35.533 2024-02-28 01:46:35.533 2100 FEE 441078 3213 6093109 2024-02-28 01:46:35.533 2024-02-28 01:46:35.533 18900 TIP 441078 2528 6093131 2024-02-28 01:51:18.016 2024-02-28 01:51:18.016 1000 POLL 441333 18735 6093169 2024-02-28 01:57:20.812 2024-02-28 01:57:20.812 130000 FEE 441361 16839 6093170 2024-02-28 01:57:20.812 2024-02-28 01:57:20.812 1170000 TIP 441361 16301 6093176 2024-02-28 01:58:25.296 2024-02-28 01:58:25.296 1000 FEE 441381 9342 6093182 2024-02-28 01:59:18.26 2024-02-28 01:59:18.26 100000 FEE 278856 14705 6093183 2024-02-28 01:59:18.26 2024-02-28 01:59:18.26 900000 TIP 278856 1326 6093199 2024-02-28 02:01:18.821 2024-02-28 02:01:18.821 1000 FEE 441378 13169 6093200 2024-02-28 02:01:18.821 2024-02-28 02:01:18.821 9000 TIP 441378 16351 6093217 2024-02-28 02:02:21.286 2024-02-28 02:02:21.286 2500 FEE 441340 4115 6092560 2024-02-28 01:07:43.105 2024-02-28 01:07:43.105 9000 TIP 441258 11314 6092583 2024-02-28 01:07:56.315 2024-02-28 01:07:56.315 1000 FEE 441258 20581 6092584 2024-02-28 01:07:56.315 2024-02-28 01:07:56.315 9000 TIP 441258 1658 6092587 2024-02-28 01:07:56.694 2024-02-28 01:07:56.694 1000 FEE 441258 21521 6092588 2024-02-28 01:07:56.694 2024-02-28 01:07:56.694 9000 TIP 441258 20276 6092604 2024-02-28 01:08:06.525 2024-02-28 01:08:06.525 2100 FEE 441087 16950 6092605 2024-02-28 01:08:06.525 2024-02-28 01:08:06.525 18900 TIP 441087 805 6092618 2024-02-28 01:08:13.208 2024-02-28 01:08:13.208 2100 FEE 441124 5597 6092619 2024-02-28 01:08:13.208 2024-02-28 01:08:13.208 18900 TIP 441124 14657 6092628 2024-02-28 01:08:25.075 2024-02-28 01:08:25.075 9000 FEE 440590 6229 6092629 2024-02-28 01:08:25.075 2024-02-28 01:08:25.075 81000 TIP 440590 1316 6092688 2024-02-28 01:12:22.524 2024-02-28 01:12:22.524 10000 FEE 440321 16988 6092689 2024-02-28 01:12:22.524 2024-02-28 01:12:22.524 90000 TIP 440321 623 6092724 2024-02-28 01:14:22.87 2024-02-28 01:14:22.87 100000 FEE 441300 21339 6092725 2024-02-28 01:14:22.87 2024-02-28 01:14:22.87 900000 TIP 441300 8570 6092739 2024-02-28 01:19:10.259 2024-02-28 01:19:10.259 1000 FEE 441331 16289 6092742 2024-02-28 01:19:48.506 2024-02-28 01:19:48.506 2500 FEE 441238 7418 6092743 2024-02-28 01:19:48.506 2024-02-28 01:19:48.506 22500 TIP 441238 2322 6092801 2024-02-28 01:24:22.819 2024-02-28 01:24:22.819 1000 FEE 441339 20889 6092815 2024-02-28 01:25:12.088 2024-02-28 01:25:12.088 1000 FEE 441340 9200 6092844 2024-02-28 01:25:51.134 2024-02-28 01:25:51.134 1000 FEE 440829 21037 6092845 2024-02-28 01:25:51.134 2024-02-28 01:25:51.134 9000 TIP 440829 21262 6092854 2024-02-28 01:26:32.77 2024-02-28 01:26:32.77 2700 FEE 441333 20788 6092855 2024-02-28 01:26:32.77 2024-02-28 01:26:32.77 24300 TIP 441333 15488 6092858 2024-02-28 01:26:33.053 2024-02-28 01:26:33.053 2700 FEE 441333 986 6092859 2024-02-28 01:26:33.053 2024-02-28 01:26:33.053 24300 TIP 441333 11378 6092864 2024-02-28 01:27:13.498 2024-02-28 01:27:13.498 1000 FEE 441345 20490 6092871 2024-02-28 01:27:44.294 2024-02-28 01:27:44.294 1000 FEE 441238 10060 6092872 2024-02-28 01:27:44.294 2024-02-28 01:27:44.294 9000 TIP 441238 21573 6092887 2024-02-28 01:29:12.236 2024-02-28 01:29:12.236 1000 FEE 441087 19021 6092888 2024-02-28 01:29:12.236 2024-02-28 01:29:12.236 9000 TIP 441087 18717 6092908 2024-02-28 01:30:05.659 2024-02-28 01:30:05.659 1000 FEE 441292 750 6092909 2024-02-28 01:30:05.659 2024-02-28 01:30:05.659 9000 TIP 441292 5128 6092942 2024-02-28 01:31:03.288 2024-02-28 01:31:03.288 1000 FEE 440555 16956 6092943 2024-02-28 01:31:03.288 2024-02-28 01:31:03.288 9000 TIP 440555 20577 6092944 2024-02-28 01:31:03.408 2024-02-28 01:31:03.408 1000 FEE 440555 1505 6092945 2024-02-28 01:31:03.408 2024-02-28 01:31:03.408 9000 TIP 440555 10469 6092950 2024-02-28 01:31:40.22 2024-02-28 01:31:40.22 100 FEE 441247 4574 6092951 2024-02-28 01:31:40.22 2024-02-28 01:31:40.22 900 TIP 441247 976 6092985 2024-02-28 01:34:34.395 2024-02-28 01:34:34.395 2700 FEE 441230 749 6092986 2024-02-28 01:34:34.395 2024-02-28 01:34:34.395 24300 TIP 441230 18673 6092993 2024-02-28 01:34:51.488 2024-02-28 01:34:51.488 9000 FEE 441333 17592 6092994 2024-02-28 01:34:51.488 2024-02-28 01:34:51.488 81000 TIP 441333 20924 6092995 2024-02-28 01:34:52.812 2024-02-28 01:34:52.812 90000 FEE 441333 4984 6092996 2024-02-28 01:34:52.812 2024-02-28 01:34:52.812 810000 TIP 441333 20162 6093001 2024-02-28 01:36:29.917 2024-02-28 01:36:29.917 2100 FEE 441352 19148 6093002 2024-02-28 01:36:29.917 2024-02-28 01:36:29.917 18900 TIP 441352 15762 6093005 2024-02-28 01:37:43.945 2024-02-28 01:37:43.945 1000 POLL 441333 16357 6093010 2024-02-28 01:38:02.886 2024-02-28 01:38:02.886 2100 FEE 441318 9167 6093011 2024-02-28 01:38:02.886 2024-02-28 01:38:02.886 18900 TIP 441318 17455 6093036 2024-02-28 01:40:25.842 2024-02-28 01:40:25.842 1000 FEE 440898 974 6093037 2024-02-28 01:40:25.842 2024-02-28 01:40:25.842 9000 TIP 440898 16808 6093087 2024-02-28 01:43:13.166 2024-02-28 01:43:13.166 2100 FEE 441296 965 6093088 2024-02-28 01:43:13.166 2024-02-28 01:43:13.166 18900 TIP 441296 19329 6093125 2024-02-28 01:49:31.055 2024-02-28 01:49:31.055 1000 FEE 441124 20120 6093126 2024-02-28 01:49:31.055 2024-02-28 01:49:31.055 9000 TIP 441124 21446 6093135 2024-02-28 01:52:53.54 2024-02-28 01:52:53.54 2100 FEE 441169 2576 6093136 2024-02-28 01:52:53.54 2024-02-28 01:52:53.54 18900 TIP 441169 18932 6093138 2024-02-28 01:53:16.781 2024-02-28 01:53:16.781 2100 FEE 441189 5703 6093139 2024-02-28 01:53:16.781 2024-02-28 01:53:16.781 18900 TIP 441189 7766 6093142 2024-02-28 01:54:08.738 2024-02-28 01:54:08.738 1000 FEE 441374 5557 6093145 2024-02-28 01:54:53.827 2024-02-28 01:54:53.827 1000 FEE 441376 5538 6093173 2024-02-28 01:57:30.562 2024-02-28 01:57:30.562 1000 FEE 441379 19378 6093177 2024-02-28 01:58:57.225 2024-02-28 01:58:57.225 1000 FEE 441381 822 6093178 2024-02-28 01:58:57.225 2024-02-28 01:58:57.225 9000 TIP 441381 11698 6093201 2024-02-28 02:01:19.005 2024-02-28 02:01:19.005 1000 FEE 441378 10693 6093202 2024-02-28 02:01:19.005 2024-02-28 02:01:19.005 9000 TIP 441378 17082 6093259 2024-02-28 02:03:35.108 2024-02-28 02:03:35.108 1700 FEE 441346 19103 6093260 2024-02-28 02:03:35.108 2024-02-28 02:03:35.108 15300 TIP 441346 16230 6093265 2024-02-28 02:03:38.87 2024-02-28 02:03:38.87 500 FEE 441378 14941 6093266 2024-02-28 02:03:38.87 2024-02-28 02:03:38.87 4500 TIP 441378 15075 6093294 2024-02-28 02:06:28.404 2024-02-28 02:06:28.404 2500 FEE 441336 21047 6093295 2024-02-28 02:06:28.404 2024-02-28 02:06:28.404 22500 TIP 441336 4776 6093311 2024-02-28 02:07:11.197 2024-02-28 02:07:11.197 1000 FEE 441333 18321 6093312 2024-02-28 02:07:11.197 2024-02-28 02:07:11.197 9000 TIP 441333 15978 6093317 2024-02-28 02:09:21.246 2024-02-28 02:09:21.246 2100 FEE 441333 9378 6093318 2024-02-28 02:09:21.246 2024-02-28 02:09:21.246 18900 TIP 441333 20715 6093322 2024-02-28 02:09:57.511 2024-02-28 02:09:57.511 2100 FEE 441272 15160 6093323 2024-02-28 02:09:57.511 2024-02-28 02:09:57.511 18900 TIP 441272 20302 6093337 2024-02-28 02:10:25.654 2024-02-28 02:10:25.654 800 FEE 441238 7772 6093338 2024-02-28 02:10:25.654 2024-02-28 02:10:25.654 7200 TIP 441238 13046 6093347 2024-02-28 02:10:26.621 2024-02-28 02:10:26.621 800 FEE 441238 16789 6093348 2024-02-28 02:10:26.621 2024-02-28 02:10:26.621 7200 TIP 441238 19613 6093357 2024-02-28 02:11:18.718 2024-02-28 02:11:18.718 1000 FEE 441349 21424 6093358 2024-02-28 02:11:18.718 2024-02-28 02:11:18.718 9000 TIP 441349 2709 6093365 2024-02-28 02:11:44.898 2024-02-28 02:11:44.898 5700 FEE 441385 21451 6092648 2024-02-28 01:10:23.36 2024-02-28 01:10:23.36 1300 FEE 441306 666 6092649 2024-02-28 01:10:23.36 2024-02-28 01:10:23.36 11700 TIP 441306 19777 6092660 2024-02-28 01:10:26.095 2024-02-28 01:10:26.095 1300 FEE 441310 21136 6092661 2024-02-28 01:10:26.095 2024-02-28 01:10:26.095 11700 TIP 441310 6515 6092705 2024-02-28 01:13:09.77 2024-02-28 01:13:09.77 1300 FEE 441318 1221 6092706 2024-02-28 01:13:09.77 2024-02-28 01:13:09.77 11700 TIP 441318 21222 6092722 2024-02-28 01:13:39.205 2024-02-28 01:13:39.205 0 FEE 441326 11670 6092751 2024-02-28 01:21:21.207 2024-02-28 01:21:21.207 1000 FEE 441336 20563 6092756 2024-02-28 01:21:26.279 2024-02-28 01:21:26.279 1000 FEE 441333 1959 6092757 2024-02-28 01:21:26.279 2024-02-28 01:21:26.279 9000 TIP 441333 7978 6092782 2024-02-28 01:21:31.249 2024-02-28 01:21:31.249 1000 FEE 441333 2577 6092783 2024-02-28 01:21:31.249 2024-02-28 01:21:31.249 9000 TIP 441333 656 6092796 2024-02-28 01:24:00.028 2024-02-28 01:24:00.028 10000 FEE 441333 5520 6092797 2024-02-28 01:24:00.028 2024-02-28 01:24:00.028 90000 TIP 441333 1120 6092802 2024-02-28 01:24:36.859 2024-02-28 01:24:36.859 2700 FEE 441046 21361 6092803 2024-02-28 01:24:36.859 2024-02-28 01:24:36.859 24300 TIP 441046 15463 6092804 2024-02-28 01:24:38.03 2024-02-28 01:24:38.03 2700 FEE 441031 19976 6092805 2024-02-28 01:24:38.03 2024-02-28 01:24:38.03 24300 TIP 441031 2711 6092806 2024-02-28 01:24:48.479 2024-02-28 01:24:48.479 6900 FEE 441333 20120 6092807 2024-02-28 01:24:48.479 2024-02-28 01:24:48.479 62100 TIP 441333 1039 6092842 2024-02-28 01:25:50.8 2024-02-28 01:25:50.8 2000 FEE 440829 18449 6092843 2024-02-28 01:25:50.8 2024-02-28 01:25:50.8 18000 TIP 440829 19890 6092848 2024-02-28 01:25:52.034 2024-02-28 01:25:52.034 1000 POLL 441333 11609 6092849 2024-02-28 01:25:58.059 2024-02-28 01:25:58.059 1000 FEE 441342 9242 6092867 2024-02-28 01:27:41.491 2024-02-28 01:27:41.491 1000 FEE 441334 4115 6092868 2024-02-28 01:27:41.491 2024-02-28 01:27:41.491 9000 TIP 441334 17109 6092893 2024-02-28 01:29:12.681 2024-02-28 01:29:12.681 1000 FEE 441087 12291 6092894 2024-02-28 01:29:12.681 2024-02-28 01:29:12.681 9000 TIP 441087 20337 6092663 2024-02-28 01:10:26.273 2024-02-28 01:10:26.273 11700 TIP 441310 8916 6092683 2024-02-28 01:11:13.567 2024-02-28 01:11:13.567 10000 FEE 441318 16858 6092684 2024-02-28 01:11:13.567 2024-02-28 01:11:13.567 90000 TIP 441318 6268 6092718 2024-02-28 01:13:10.869 2024-02-28 01:13:10.869 1300 FEE 441318 16879 6092719 2024-02-28 01:13:10.869 2024-02-28 01:13:10.869 11700 TIP 441318 17226 6092733 2024-02-28 01:17:54.278 2024-02-28 01:17:54.278 10000 FEE 438756 17316 6092734 2024-02-28 01:17:54.278 2024-02-28 01:17:54.278 90000 TIP 438756 11670 6092740 2024-02-28 01:19:31.706 2024-02-28 01:19:31.706 100000 FEE 441332 787 6092754 2024-02-28 01:21:26.125 2024-02-28 01:21:26.125 1000 FEE 441333 14267 6092755 2024-02-28 01:21:26.125 2024-02-28 01:21:26.125 9000 TIP 441333 12959 6092762 2024-02-28 01:21:26.791 2024-02-28 01:21:26.791 1000 FEE 441333 2703 6092763 2024-02-28 01:21:26.791 2024-02-28 01:21:26.791 9000 TIP 441333 16214 6092823 2024-02-28 01:25:23.896 2024-02-28 01:25:23.896 300 FEE 440692 6384 6092824 2024-02-28 01:25:23.896 2024-02-28 01:25:23.896 2700 TIP 440692 17722 6092830 2024-02-28 01:25:48.602 2024-02-28 01:25:48.602 2000 FEE 440829 15536 6092831 2024-02-28 01:25:48.602 2024-02-28 01:25:48.602 18000 TIP 440829 9183 6092836 2024-02-28 01:25:50.045 2024-02-28 01:25:50.045 1000 FEE 440829 6555 6092837 2024-02-28 01:25:50.045 2024-02-28 01:25:50.045 9000 TIP 440829 20871 6092846 2024-02-28 01:25:51.285 2024-02-28 01:25:51.285 1000 FEE 440829 3717 6092847 2024-02-28 01:25:51.285 2024-02-28 01:25:51.285 9000 TIP 440829 696 6092856 2024-02-28 01:26:32.881 2024-02-28 01:26:32.881 2700 FEE 441333 17103 6092857 2024-02-28 01:26:32.881 2024-02-28 01:26:32.881 24300 TIP 441333 1472 6092877 2024-02-28 01:28:12.444 2024-02-28 01:28:12.444 1000 FEE 441319 4391 6092878 2024-02-28 01:28:12.444 2024-02-28 01:28:12.444 9000 TIP 441319 13878 6092879 2024-02-28 01:28:14.16 2024-02-28 01:28:14.16 1000 FEE 441236 1564 6092880 2024-02-28 01:28:14.16 2024-02-28 01:28:14.16 9000 TIP 441236 2232 6092903 2024-02-28 01:29:14.4 2024-02-28 01:29:14.4 1000 FEE 441087 17321 6092904 2024-02-28 01:29:14.4 2024-02-28 01:29:14.4 9000 TIP 441087 19007 6092930 2024-02-28 01:31:00.562 2024-02-28 01:31:00.562 1000 FEE 440555 21589 6092931 2024-02-28 01:31:00.562 2024-02-28 01:31:00.562 9000 TIP 440555 18188 6092940 2024-02-28 01:31:03.052 2024-02-28 01:31:03.052 1000 FEE 440555 3439 6092941 2024-02-28 01:31:03.052 2024-02-28 01:31:03.052 9000 TIP 440555 1564 6092954 2024-02-28 01:31:50.255 2024-02-28 01:31:50.255 1000 FEE 441350 11164 6092999 2024-02-28 01:35:54.277 2024-02-28 01:35:54.277 1000 FEE 441355 6555 6093028 2024-02-28 01:39:12.598 2024-02-28 01:39:12.598 1000 FEE 440898 21424 6093029 2024-02-28 01:39:12.598 2024-02-28 01:39:12.598 9000 TIP 440898 5175 6093046 2024-02-28 01:40:26.963 2024-02-28 01:40:26.963 1000 FEE 441077 2322 6093047 2024-02-28 01:40:26.963 2024-02-28 01:40:26.963 9000 TIP 441077 1845 6093052 2024-02-28 01:40:27.363 2024-02-28 01:40:27.363 1000 FEE 441077 4763 6093053 2024-02-28 01:40:27.363 2024-02-28 01:40:27.363 9000 TIP 441077 2256 6093054 2024-02-28 01:40:51.001 2024-02-28 01:40:51.001 1000 FEE 441357 15351 6093073 2024-02-28 01:42:54.006 2024-02-28 01:42:54.006 500 FEE 441077 8287 6093074 2024-02-28 01:42:54.006 2024-02-28 01:42:54.006 4500 TIP 441077 12821 6093077 2024-02-28 01:42:56.357 2024-02-28 01:42:56.357 500 FEE 440898 9992 6093078 2024-02-28 01:42:56.357 2024-02-28 01:42:56.357 4500 TIP 440898 19021 6093099 2024-02-28 01:44:24.754 2024-02-28 01:44:24.754 1000 FEE 441363 5387 6093101 2024-02-28 01:45:16.453 2024-02-28 01:45:16.453 500 FEE 440772 3717 6093102 2024-02-28 01:45:16.453 2024-02-28 01:45:16.453 4500 TIP 440772 10102 6093117 2024-02-28 01:48:39.968 2024-02-28 01:48:39.968 10000 FEE 441369 13544 6093143 2024-02-28 01:54:37.319 2024-02-28 01:54:37.319 100000 FEE 441375 20424 6093157 2024-02-28 01:56:04.076 2024-02-28 01:56:04.076 1000 FEE 441378 4128 6093163 2024-02-28 01:57:16.225 2024-02-28 01:57:16.225 1000 FEE 440725 19398 6093164 2024-02-28 01:57:16.225 2024-02-28 01:57:16.225 9000 TIP 440725 5578 6093167 2024-02-28 01:57:18.538 2024-02-28 01:57:18.538 1000 FEE 440622 1135 6093168 2024-02-28 01:57:18.538 2024-02-28 01:57:18.538 9000 TIP 440622 1620 6093171 2024-02-28 01:57:27.43 2024-02-28 01:57:27.43 1000 FEE 440663 2342 6093172 2024-02-28 01:57:27.43 2024-02-28 01:57:27.43 9000 TIP 440663 18745 6093184 2024-02-28 01:59:39.105 2024-02-28 01:59:39.105 1000 FEE 440615 20412 6093185 2024-02-28 01:59:39.105 2024-02-28 01:59:39.105 9000 TIP 440615 18828 6093206 2024-02-28 02:02:12.707 2024-02-28 02:02:12.707 5000 FEE 441383 14370 6093215 2024-02-28 02:02:21.128 2024-02-28 02:02:21.128 2500 FEE 441340 8841 6093216 2024-02-28 02:02:21.128 2024-02-28 02:02:21.128 22500 TIP 441340 18816 6093221 2024-02-28 02:02:21.578 2024-02-28 02:02:21.578 2500 FEE 441340 20816 6093222 2024-02-28 02:02:21.578 2024-02-28 02:02:21.578 22500 TIP 441340 900 6093237 2024-02-28 02:02:24.298 2024-02-28 02:02:24.298 2500 FEE 441341 13177 6093238 2024-02-28 02:02:24.298 2024-02-28 02:02:24.298 22500 TIP 441341 8380 6093244 2024-02-28 02:03:24.392 2024-02-28 02:03:24.392 2100 FEE 441366 16513 6093245 2024-02-28 02:03:24.392 2024-02-28 02:03:24.392 18900 TIP 441366 2123 6093281 2024-02-28 02:06:26.365 2024-02-28 02:06:26.365 2500 FEE 441358 16942 6093282 2024-02-28 02:06:26.365 2024-02-28 02:06:26.365 22500 TIP 441358 9969 6093289 2024-02-28 02:06:27.244 2024-02-28 02:06:27.244 2500 FEE 441358 2703 6093290 2024-02-28 02:06:27.244 2024-02-28 02:06:27.244 22500 TIP 441358 14688 6093308 2024-02-28 02:06:37.267 2024-02-28 02:06:37.267 10000 FEE 440898 1051 6093309 2024-02-28 02:06:37.267 2024-02-28 02:06:37.267 90000 TIP 440898 11417 6093329 2024-02-28 02:10:23.996 2024-02-28 02:10:23.996 800 FEE 441238 12819 6093330 2024-02-28 02:10:23.996 2024-02-28 02:10:23.996 7200 TIP 441238 11516 6093345 2024-02-28 02:10:26.428 2024-02-28 02:10:26.428 800 FEE 441238 20717 6093346 2024-02-28 02:10:26.428 2024-02-28 02:10:26.428 7200 TIP 441238 19333 6093380 2024-02-28 02:15:40.828 2024-02-28 02:15:40.828 1000 FEE 440649 17682 6093381 2024-02-28 02:15:40.828 2024-02-28 02:15:40.828 9000 TIP 440649 5775 6093384 2024-02-28 02:16:00.309 2024-02-28 02:16:00.309 1000 FEE 440622 20619 6093385 2024-02-28 02:16:00.309 2024-02-28 02:16:00.309 9000 TIP 440622 21040 6093400 2024-02-28 02:17:53.08 2024-02-28 02:17:53.08 1000 FEE 441376 20280 6093401 2024-02-28 02:17:53.08 2024-02-28 02:17:53.08 9000 TIP 441376 11866 6093403 2024-02-28 02:18:25.932 2024-02-28 02:18:25.932 1000 FEE 441038 1983 6093404 2024-02-28 02:18:25.932 2024-02-28 02:18:25.932 9000 TIP 441038 5069 6093412 2024-02-28 02:19:24.591 2024-02-28 02:19:24.591 1000 FEE 441389 18630 6093413 2024-02-28 02:19:24.591 2024-02-28 02:19:24.591 9000 TIP 441389 6300 6093414 2024-02-28 02:19:24.773 2024-02-28 02:19:24.773 1000 FEE 441389 21605 6093415 2024-02-28 02:19:24.773 2024-02-28 02:19:24.773 9000 TIP 441389 19622 6093436 2024-02-28 02:20:25.852 2024-02-28 02:20:25.852 1000 POLL 441333 13553 6093451 2024-02-28 02:21:32.72 2024-02-28 02:21:32.72 1000 FEE 440386 6578 6093452 2024-02-28 02:21:32.72 2024-02-28 02:21:32.72 9000 TIP 440386 19581 6093487 2024-02-28 02:24:10.939 2024-02-28 02:24:10.939 1100 FEE 441318 9333 6093488 2024-02-28 02:24:10.939 2024-02-28 02:24:10.939 9900 TIP 441318 16704 6093509 2024-02-28 02:24:12.209 2024-02-28 02:24:12.209 1100 FEE 441318 19394 6093510 2024-02-28 02:24:12.209 2024-02-28 02:24:12.209 9900 TIP 441318 20979 6093533 2024-02-28 02:24:13.734 2024-02-28 02:24:13.734 1100 FEE 441318 9418 6093534 2024-02-28 02:24:13.734 2024-02-28 02:24:13.734 9900 TIP 441318 4415 6093549 2024-02-28 02:24:14.808 2024-02-28 02:24:14.808 1100 FEE 441318 21591 6093550 2024-02-28 02:24:14.808 2024-02-28 02:24:14.808 9900 TIP 441318 19142 6093555 2024-02-28 02:24:21.185 2024-02-28 02:24:21.185 1100 FEE 441169 18076 6093556 2024-02-28 02:24:21.185 2024-02-28 02:24:21.185 9900 TIP 441169 13544 6092785 2024-02-28 01:21:31.749 2024-02-28 01:21:31.749 9000 TIP 441333 19690 6092813 2024-02-28 01:25:10.427 2024-02-28 01:25:10.427 1000 FEE 441247 21387 6092814 2024-02-28 01:25:10.427 2024-02-28 01:25:10.427 9000 TIP 441247 17570 6092828 2024-02-28 01:25:48.158 2024-02-28 01:25:48.158 1000 FEE 440829 1454 6092829 2024-02-28 01:25:48.158 2024-02-28 01:25:48.158 9000 TIP 440829 19034 6092840 2024-02-28 01:25:50.404 2024-02-28 01:25:50.404 1000 FEE 440829 18314 6092841 2024-02-28 01:25:50.404 2024-02-28 01:25:50.404 9000 TIP 440829 19158 6092852 2024-02-28 01:26:32.569 2024-02-28 01:26:32.569 2700 FEE 441333 20509 6092853 2024-02-28 01:26:32.569 2024-02-28 01:26:32.569 24300 TIP 441333 9438 6092860 2024-02-28 01:26:45.711 2024-02-28 01:26:45.711 6900 FEE 441247 15588 6092861 2024-02-28 01:26:45.711 2024-02-28 01:26:45.711 62100 TIP 441247 20998 6092865 2024-02-28 01:27:20.253 2024-02-28 01:27:20.253 10000 FEE 441238 19332 6092866 2024-02-28 01:27:20.253 2024-02-28 01:27:20.253 90000 TIP 441238 13216 6092875 2024-02-28 01:27:59.691 2024-02-28 01:27:59.691 7000 FEE 441346 20022 6092906 2024-02-28 01:29:47.086 2024-02-28 01:29:47.086 1000 POLL 440725 20153 6092918 2024-02-28 01:30:19.824 2024-02-28 01:30:19.824 1000 FEE 441176 19147 6092919 2024-02-28 01:30:19.824 2024-02-28 01:30:19.824 9000 TIP 441176 1224 6092956 2024-02-28 01:32:35.836 2024-02-28 01:32:35.836 2100 FEE 441238 7979 6092957 2024-02-28 01:32:35.836 2024-02-28 01:32:35.836 18900 TIP 441238 18423 6092972 2024-02-28 01:33:30.114 2024-02-28 01:33:30.114 1000 POLL 441333 9809 6092979 2024-02-28 01:33:47.332 2024-02-28 01:33:47.332 1000 FEE 440241 21263 6092980 2024-02-28 01:33:47.332 2024-02-28 01:33:47.332 9000 TIP 440241 18119 6092987 2024-02-28 01:34:42.61 2024-02-28 01:34:42.61 100000 FEE 441353 18393 6092991 2024-02-28 01:34:49.554 2024-02-28 01:34:49.554 900 FEE 441333 21612 6092992 2024-02-28 01:34:49.554 2024-02-28 01:34:49.554 8100 TIP 441333 11590 6092997 2024-02-28 01:35:00.206 2024-02-28 01:35:00.206 1000 FEE 441354 1472 6093006 2024-02-28 01:37:54.208 2024-02-28 01:37:54.208 2100 FEE 441329 20490 6092809 2024-02-28 01:24:49.161 2024-02-28 01:24:49.161 62100 TIP 441333 1114 6092818 2024-02-28 01:25:15.656 2024-02-28 01:25:15.656 1000 FEE 441274 19352 6092819 2024-02-28 01:25:15.656 2024-02-28 01:25:15.656 9000 TIP 441274 16485 6092820 2024-02-28 01:25:16.593 2024-02-28 01:25:16.593 6900 FEE 441333 15588 6092821 2024-02-28 01:25:16.593 2024-02-28 01:25:16.593 62100 TIP 441333 10409 6092832 2024-02-28 01:25:48.891 2024-02-28 01:25:48.891 1000 FEE 440829 21216 6092833 2024-02-28 01:25:48.891 2024-02-28 01:25:48.891 9000 TIP 440829 18232 6092881 2024-02-28 01:28:19.725 2024-02-28 01:28:19.725 1000 FEE 441312 21218 6092882 2024-02-28 01:28:19.725 2024-02-28 01:28:19.725 9000 TIP 441312 13198 6092883 2024-02-28 01:28:56.985 2024-02-28 01:28:56.985 1000 FEE 441284 14515 6092884 2024-02-28 01:28:56.985 2024-02-28 01:28:56.985 9000 TIP 441284 18704 6092889 2024-02-28 01:29:12.334 2024-02-28 01:29:12.334 1000 FEE 441087 18615 6092890 2024-02-28 01:29:12.334 2024-02-28 01:29:12.334 9000 TIP 441087 17827 6092912 2024-02-28 01:30:19.245 2024-02-28 01:30:19.245 1000 FEE 441176 19572 6092913 2024-02-28 01:30:19.245 2024-02-28 01:30:19.245 9000 TIP 441176 19267 6092916 2024-02-28 01:30:19.576 2024-02-28 01:30:19.576 1000 FEE 441176 20681 6092917 2024-02-28 01:30:19.576 2024-02-28 01:30:19.576 9000 TIP 441176 21079 6092924 2024-02-28 01:31:00.077 2024-02-28 01:31:00.077 1000 FEE 440555 4314 6092925 2024-02-28 01:31:00.077 2024-02-28 01:31:00.077 9000 TIP 440555 1064 6092947 2024-02-28 01:31:09.384 2024-02-28 01:31:09.384 1000 FEE 441349 21247 6092960 2024-02-28 01:32:40.011 2024-02-28 01:32:40.011 2100 FEE 441300 17046 6092961 2024-02-28 01:32:40.011 2024-02-28 01:32:40.011 18900 TIP 441300 19037 6092975 2024-02-28 01:33:39.945 2024-02-28 01:33:39.945 2100 FEE 441279 21275 6092976 2024-02-28 01:33:39.945 2024-02-28 01:33:39.945 18900 TIP 441279 4035 6092977 2024-02-28 01:33:45.824 2024-02-28 01:33:45.824 2100 FEE 441154 20490 6092978 2024-02-28 01:33:45.824 2024-02-28 01:33:45.824 18900 TIP 441154 16513 6092984 2024-02-28 01:34:22.258 2024-02-28 01:34:22.258 1000 FEE 441352 16410 6093017 2024-02-28 01:38:29.862 2024-02-28 01:38:29.862 1000 FEE 441341 21145 6093018 2024-02-28 01:38:29.862 2024-02-28 01:38:29.862 9000 TIP 441341 16347 6093019 2024-02-28 01:39:01.564 2024-02-28 01:39:01.564 2100 FEE 441263 19459 6093020 2024-02-28 01:39:01.564 2024-02-28 01:39:01.564 18900 TIP 441263 4027 6093030 2024-02-28 01:39:15.104 2024-02-28 01:39:15.104 1000 FEE 441238 12346 6093031 2024-02-28 01:39:15.104 2024-02-28 01:39:15.104 9000 TIP 441238 15510 6093038 2024-02-28 01:40:25.932 2024-02-28 01:40:25.932 1000 FEE 440898 14258 6093039 2024-02-28 01:40:25.932 2024-02-28 01:40:25.932 9000 TIP 440898 21455 6093044 2024-02-28 01:40:26.679 2024-02-28 01:40:26.679 1000 FEE 440898 16653 6093045 2024-02-28 01:40:26.679 2024-02-28 01:40:26.679 9000 TIP 440898 1474 6092895 2024-02-28 01:29:12.919 2024-02-28 01:29:12.919 1000 FEE 441087 9336 6092896 2024-02-28 01:29:12.919 2024-02-28 01:29:12.919 9000 TIP 441087 9611 6092899 2024-02-28 01:29:13.237 2024-02-28 01:29:13.237 1000 FEE 441087 18368 6092900 2024-02-28 01:29:13.237 2024-02-28 01:29:13.237 9000 TIP 441087 18387 6092905 2024-02-28 01:29:42.861 2024-02-28 01:29:42.861 1000 FEE 441348 2203 6092920 2024-02-28 01:30:47.03 2024-02-28 01:30:47.03 1000 FEE 441256 11561 6092921 2024-02-28 01:30:47.03 2024-02-28 01:30:47.03 9000 TIP 441256 15858 6092968 2024-02-28 01:32:55.22 2024-02-28 01:32:55.22 2100 FEE 441176 10283 6092969 2024-02-28 01:32:55.22 2024-02-28 01:32:55.22 18900 TIP 441176 15526 6092973 2024-02-28 01:33:32.199 2024-02-28 01:33:32.199 2100 FEE 441160 19044 6092974 2024-02-28 01:33:32.199 2024-02-28 01:33:32.199 18900 TIP 441160 19154 6092988 2024-02-28 01:34:47.447 2024-02-28 01:34:47.447 1000 POLL 441333 965 6092989 2024-02-28 01:34:49.186 2024-02-28 01:34:49.186 100 FEE 441333 2513 6092990 2024-02-28 01:34:49.186 2024-02-28 01:34:49.186 900 TIP 441333 21061 6093057 2024-02-28 01:41:30.387 2024-02-28 01:41:30.387 1000 FEE 441359 2293 6093059 2024-02-28 01:42:08.511 2024-02-28 01:42:08.511 1000 FEE 441333 16543 6093060 2024-02-28 01:42:08.511 2024-02-28 01:42:08.511 9000 TIP 441333 20889 6093079 2024-02-28 01:42:57.662 2024-02-28 01:42:57.662 500 FEE 440622 12188 6093080 2024-02-28 01:42:57.662 2024-02-28 01:42:57.662 4500 TIP 440622 15239 6093118 2024-02-28 01:48:51.529 2024-02-28 01:48:51.529 2100 FEE 441281 10821 6093119 2024-02-28 01:48:51.529 2024-02-28 01:48:51.529 18900 TIP 441281 19502 6093133 2024-02-28 01:52:00.977 2024-02-28 01:52:00.977 100000 FEE 441372 21349 6093149 2024-02-28 01:55:36.643 2024-02-28 01:55:36.643 0 FEE 441374 2335 6093160 2024-02-28 01:56:47.157 2024-02-28 01:56:47.157 2100 FEE 441377 20220 6093161 2024-02-28 01:56:47.157 2024-02-28 01:56:47.157 18900 TIP 441377 7960 6093189 2024-02-28 02:00:20.401 2024-02-28 02:00:20.401 1000 FEE 441245 19403 6093190 2024-02-28 02:00:20.401 2024-02-28 02:00:20.401 9000 TIP 441245 960 6093192 2024-02-28 02:00:32.49 2024-02-28 02:00:32.49 10000 FEE 278948 18727 6093193 2024-02-28 02:00:32.49 2024-02-28 02:00:32.49 90000 TIP 278948 1534 6093195 2024-02-28 02:01:18.508 2024-02-28 02:01:18.508 1000 FEE 441378 1620 6093196 2024-02-28 02:01:18.508 2024-02-28 02:01:18.508 9000 TIP 441378 20980 6093255 2024-02-28 02:03:34.661 2024-02-28 02:03:34.661 500 FEE 441378 3456 6093256 2024-02-28 02:03:34.661 2024-02-28 02:03:34.661 4500 TIP 441378 8074 6093257 2024-02-28 02:03:34.825 2024-02-28 02:03:34.825 500 FEE 441378 16052 6093258 2024-02-28 02:03:34.825 2024-02-28 02:03:34.825 4500 TIP 441378 15200 6093263 2024-02-28 02:03:37.898 2024-02-28 02:03:37.898 500 FEE 441378 18608 6093264 2024-02-28 02:03:37.898 2024-02-28 02:03:37.898 4500 TIP 441378 17162 6093315 2024-02-28 02:09:10.731 2024-02-28 02:09:10.731 10000 FEE 441238 19352 6093316 2024-02-28 02:09:10.731 2024-02-28 02:09:10.731 90000 TIP 441238 15148 6093319 2024-02-28 02:09:22.398 2024-02-28 02:09:22.398 1000 FEE 441385 6573 6093331 2024-02-28 02:10:24.202 2024-02-28 02:10:24.202 800 FEE 441238 12169 6093332 2024-02-28 02:10:24.202 2024-02-28 02:10:24.202 7200 TIP 441238 21575 6093333 2024-02-28 02:10:24.444 2024-02-28 02:10:24.444 800 FEE 441238 19118 6093334 2024-02-28 02:10:24.444 2024-02-28 02:10:24.444 7200 TIP 441238 19992 6093339 2024-02-28 02:10:25.852 2024-02-28 02:10:25.852 800 FEE 441238 16178 6093340 2024-02-28 02:10:25.852 2024-02-28 02:10:25.852 7200 TIP 441238 4819 6093349 2024-02-28 02:10:26.83 2024-02-28 02:10:26.83 800 FEE 441238 14941 6093350 2024-02-28 02:10:26.83 2024-02-28 02:10:26.83 7200 TIP 441238 1272 6093351 2024-02-28 02:10:27.19 2024-02-28 02:10:27.19 2100 FEE 441160 1628 6093352 2024-02-28 02:10:27.19 2024-02-28 02:10:27.19 18900 TIP 441160 2942 6093369 2024-02-28 02:12:05.15 2024-02-28 02:12:05.15 2100 FEE 441094 18995 6093370 2024-02-28 02:12:05.15 2024-02-28 02:12:05.15 18900 TIP 441094 20560 6093408 2024-02-28 02:18:47.128 2024-02-28 02:18:47.128 0 FEE 441390 1733 6093416 2024-02-28 02:19:24.961 2024-02-28 02:19:24.961 1000 FEE 441389 7674 6093417 2024-02-28 02:19:24.961 2024-02-28 02:19:24.961 9000 TIP 441389 10690 6093420 2024-02-28 02:19:25.496 2024-02-28 02:19:25.496 1000 FEE 441389 708 6093421 2024-02-28 02:19:25.496 2024-02-28 02:19:25.496 9000 TIP 441389 17707 6093422 2024-02-28 02:19:26.916 2024-02-28 02:19:26.916 1000 FEE 441389 21555 6093423 2024-02-28 02:19:26.916 2024-02-28 02:19:26.916 9000 TIP 441389 20117 6093456 2024-02-28 02:22:08.558 2024-02-28 02:22:08.558 1000 FEE 441363 19158 6093457 2024-02-28 02:22:08.558 2024-02-28 02:22:08.558 9000 TIP 441363 20710 6093468 2024-02-28 02:23:40.723 2024-02-28 02:23:40.723 1100 FEE 440566 16004 6093469 2024-02-28 02:23:40.723 2024-02-28 02:23:40.723 9900 TIP 440566 16177 6093470 2024-02-28 02:23:41.463 2024-02-28 02:23:41.463 1100 FEE 440566 6594 6093471 2024-02-28 02:23:41.463 2024-02-28 02:23:41.463 9900 TIP 440566 1652 6093491 2024-02-28 02:24:11.169 2024-02-28 02:24:11.169 1100 FEE 441318 19198 6093492 2024-02-28 02:24:11.169 2024-02-28 02:24:11.169 9900 TIP 441318 17046 6093517 2024-02-28 02:24:12.709 2024-02-28 02:24:12.709 1100 FEE 441318 18518 6093518 2024-02-28 02:24:12.709 2024-02-28 02:24:12.709 9900 TIP 441318 13097 6093519 2024-02-28 02:24:12.842 2024-02-28 02:24:12.842 1100 FEE 441318 18524 6093520 2024-02-28 02:24:12.842 2024-02-28 02:24:12.842 9900 TIP 441318 18119 6093523 2024-02-28 02:24:13.108 2024-02-28 02:24:13.108 1100 FEE 441318 5175 6093524 2024-02-28 02:24:13.108 2024-02-28 02:24:13.108 9900 TIP 441318 15147 6093535 2024-02-28 02:24:13.853 2024-02-28 02:24:13.853 1100 FEE 441318 2514 6093536 2024-02-28 02:24:13.853 2024-02-28 02:24:13.853 9900 TIP 441318 1726 6093559 2024-02-28 02:24:21.576 2024-02-28 02:24:21.576 1100 FEE 441169 19652 6093560 2024-02-28 02:24:21.576 2024-02-28 02:24:21.576 9900 TIP 441169 21116 6093561 2024-02-28 02:24:21.713 2024-02-28 02:24:21.713 1100 FEE 441169 14905 6093562 2024-02-28 02:24:21.713 2024-02-28 02:24:21.713 9900 TIP 441169 3409 6093596 2024-02-28 02:27:43.351 2024-02-28 02:27:43.351 7700 FEE 441238 11075 6093597 2024-02-28 02:27:43.351 2024-02-28 02:27:43.351 69300 TIP 441238 780 6093620 2024-02-28 02:28:00.55 2024-02-28 02:28:00.55 500 FEE 440622 1624 6093621 2024-02-28 02:28:00.55 2024-02-28 02:28:00.55 4500 TIP 440622 18842 6093678 2024-02-28 02:31:20.488 2024-02-28 02:31:20.488 1000 FEE 441399 6555 6093705 2024-02-28 02:33:36.163 2024-02-28 02:33:36.163 2500 FEE 441399 2703 6093706 2024-02-28 02:33:36.163 2024-02-28 02:33:36.163 22500 TIP 441399 20687 6093709 2024-02-28 02:33:36.518 2024-02-28 02:33:36.518 2500 FEE 441399 17321 6093710 2024-02-28 02:33:36.518 2024-02-28 02:33:36.518 22500 TIP 441399 21104 6093715 2024-02-28 02:33:37.381 2024-02-28 02:33:37.381 2500 FEE 441399 11498 6092959 2024-02-28 01:32:37.06 2024-02-28 01:32:37.06 18900 TIP 441247 2196 6093008 2024-02-28 01:37:59.572 2024-02-28 01:37:59.572 2100 FEE 441331 17415 6093009 2024-02-28 01:37:59.572 2024-02-28 01:37:59.572 18900 TIP 441331 14080 6093013 2024-02-28 01:38:10.817 2024-02-28 01:38:10.817 1000 FEE 441333 2162 6093007 2024-02-28 01:37:54.208 2024-02-28 01:37:54.208 18900 TIP 441329 19689 6093026 2024-02-28 01:39:06.442 2024-02-28 01:39:06.442 1000 FEE 440622 21343 6093027 2024-02-28 01:39:06.442 2024-02-28 01:39:06.442 9000 TIP 440622 6687 6093032 2024-02-28 01:39:35.658 2024-02-28 01:39:35.658 1000 POLL 441333 16357 6093096 2024-02-28 01:44:14.046 2024-02-28 01:44:14.046 1000 FEE 441362 826 6093123 2024-02-28 01:49:23.933 2024-02-28 01:49:23.933 1000 FEE 441124 3409 6093124 2024-02-28 01:49:23.933 2024-02-28 01:49:23.933 9000 TIP 441124 4538 6093132 2024-02-28 01:51:22.533 2024-02-28 01:51:22.533 10000 FEE 441371 13921 6093140 2024-02-28 01:53:52.98 2024-02-28 01:53:52.98 1000 FEE 441373 12334 6093146 2024-02-28 01:55:02.482 2024-02-28 01:55:02.482 1000 FEE 440898 14990 6093147 2024-02-28 01:55:02.482 2024-02-28 01:55:02.482 9000 TIP 440898 1326 6093150 2024-02-28 01:55:39.575 2024-02-28 01:55:39.575 1000 FEE 441377 761 6093153 2024-02-28 01:55:43.754 2024-02-28 01:55:43.754 900 FEE 441372 13903 6093154 2024-02-28 01:55:43.754 2024-02-28 01:55:43.754 8100 TIP 441372 19501 6093159 2024-02-28 01:56:36.183 2024-02-28 01:56:36.183 0 FEE 441374 11789 6093180 2024-02-28 01:59:15.868 2024-02-28 01:59:15.868 1000 FEE 441162 1620 6093181 2024-02-28 01:59:15.868 2024-02-28 01:59:15.868 9000 TIP 441162 8726 6093203 2024-02-28 02:01:20.059 2024-02-28 02:01:20.059 1000 FEE 441378 19812 6093204 2024-02-28 02:01:20.059 2024-02-28 02:01:20.059 9000 TIP 441378 1596 6093233 2024-02-28 02:02:23.93 2024-02-28 02:02:23.93 2500 FEE 441341 1092 6093234 2024-02-28 02:02:23.93 2024-02-28 02:02:23.93 22500 TIP 441341 14950 6093261 2024-02-28 02:03:37.355 2024-02-28 02:03:37.355 500 FEE 441378 720 6093262 2024-02-28 02:03:37.355 2024-02-28 02:03:37.355 4500 TIP 441378 4323 6093291 2024-02-28 02:06:27.402 2024-02-28 02:06:27.402 2500 FEE 441358 16341 6093292 2024-02-28 02:06:27.402 2024-02-28 02:06:27.402 22500 TIP 441358 20573 6093363 2024-02-28 02:11:39.69 2024-02-28 02:11:39.69 800 FEE 441333 10056 6093364 2024-02-28 02:11:39.69 2024-02-28 02:11:39.69 7200 TIP 441333 980 6093396 2024-02-28 02:17:16.934 2024-02-28 02:17:16.934 5700 FEE 441372 9906 6093397 2024-02-28 02:17:16.934 2024-02-28 02:17:16.934 51300 TIP 441372 13527 6093410 2024-02-28 02:19:24.444 2024-02-28 02:19:24.444 1000 FEE 441389 19663 6093411 2024-02-28 02:19:24.444 2024-02-28 02:19:24.444 9000 TIP 441389 652 6093424 2024-02-28 02:19:27.382 2024-02-28 02:19:27.382 1000 FEE 441389 20495 6093425 2024-02-28 02:19:27.382 2024-02-28 02:19:27.382 9000 TIP 441389 13854 6093437 2024-02-28 02:21:04.411 2024-02-28 02:21:04.411 1000 FEE 441392 19863 6093439 2024-02-28 02:21:06.92 2024-02-28 02:21:06.92 5000 FEE 441272 20619 6093440 2024-02-28 02:21:06.92 2024-02-28 02:21:06.92 45000 TIP 441272 1519 6093447 2024-02-28 02:21:29.745 2024-02-28 02:21:29.745 1000 FEE 441077 20045 6093448 2024-02-28 02:21:29.745 2024-02-28 02:21:29.745 9000 TIP 441077 19142 6093454 2024-02-28 02:22:03.705 2024-02-28 02:22:03.705 5000 FEE 440943 826 6093455 2024-02-28 02:22:03.705 2024-02-28 02:22:03.705 45000 TIP 440943 20680 6093474 2024-02-28 02:23:41.789 2024-02-28 02:23:41.789 1100 FEE 440566 16753 6093475 2024-02-28 02:23:41.789 2024-02-28 02:23:41.789 9900 TIP 440566 19785 6093503 2024-02-28 02:24:11.863 2024-02-28 02:24:11.863 1100 FEE 441318 16954 6093504 2024-02-28 02:24:11.863 2024-02-28 02:24:11.863 9900 TIP 441318 6616 6093513 2024-02-28 02:24:12.476 2024-02-28 02:24:12.476 1100 FEE 441318 18423 6093514 2024-02-28 02:24:12.476 2024-02-28 02:24:12.476 9900 TIP 441318 19735 6093525 2024-02-28 02:24:13.212 2024-02-28 02:24:13.212 1100 FEE 441318 20657 6093526 2024-02-28 02:24:13.212 2024-02-28 02:24:13.212 9900 TIP 441318 7097 6093575 2024-02-28 02:26:29.296 2024-02-28 02:26:29.296 1000 FEE 441394 18500 6093586 2024-02-28 02:27:42.797 2024-02-28 02:27:42.797 7700 FEE 441238 2537 6093587 2024-02-28 02:27:42.797 2024-02-28 02:27:42.797 69300 TIP 441238 1425 6093659 2024-02-28 02:29:35.844 2024-02-28 02:29:35.844 500 FEE 441376 6260 6093660 2024-02-28 02:29:35.844 2024-02-28 02:29:35.844 4500 TIP 441376 2609 6093661 2024-02-28 02:29:45.488 2024-02-28 02:29:45.488 1000 FEE 441397 616 6093663 2024-02-28 02:29:52.941 2024-02-28 02:29:52.941 1000 FEE 441398 14774 6093688 2024-02-28 02:32:39.203 2024-02-28 02:32:39.203 1000 FEE 440764 13622 6093689 2024-02-28 02:32:39.203 2024-02-28 02:32:39.203 9000 TIP 440764 21619 6093692 2024-02-28 02:32:47.206 2024-02-28 02:32:47.206 1000 FEE 441400 9335 6093699 2024-02-28 02:33:22.275 2024-02-28 02:33:22.275 6900 FEE 441375 1584 6093700 2024-02-28 02:33:22.275 2024-02-28 02:33:22.275 62100 TIP 441375 2293 6093701 2024-02-28 02:33:22.313 2024-02-28 02:33:22.313 6900 FEE 441375 21400 6093702 2024-02-28 02:33:22.313 2024-02-28 02:33:22.313 62100 TIP 441375 1007 6093719 2024-02-28 02:33:38.977 2024-02-28 02:33:38.977 2500 FEE 441396 7675 6093720 2024-02-28 02:33:38.977 2024-02-28 02:33:38.977 22500 TIP 441396 21481 6093725 2024-02-28 02:33:39.475 2024-02-28 02:33:39.475 2500 FEE 441396 14280 6093726 2024-02-28 02:33:39.475 2024-02-28 02:33:39.475 22500 TIP 441396 5775 6093750 2024-02-28 02:34:20.087 2024-02-28 02:34:20.087 1600 FEE 441077 13100 6093751 2024-02-28 02:34:20.087 2024-02-28 02:34:20.087 14400 TIP 441077 9026 6093761 2024-02-28 02:37:32.145 2024-02-28 02:37:32.145 1000 FEE 441402 21091 6093765 2024-02-28 02:40:33.966 2024-02-28 02:40:33.966 1000 POLL 441333 8506 6093844 2024-02-28 03:02:22.562 2024-02-28 03:02:22.562 10100 FEE 441247 18005 6093845 2024-02-28 03:02:22.562 2024-02-28 03:02:22.562 90900 TIP 441247 20614 6093854 2024-02-28 03:05:05.387 2024-02-28 03:05:05.387 0 FEE 441411 15488 6093857 2024-02-28 03:06:58.758 2024-02-28 03:06:58.758 10000 FEE 440863 20470 6093858 2024-02-28 03:06:58.758 2024-02-28 03:06:58.758 90000 TIP 440863 17707 6093880 2024-02-28 03:07:58.5 2024-02-28 03:07:58.5 10000 FEE 441137 20655 6093881 2024-02-28 03:07:58.5 2024-02-28 03:07:58.5 90000 TIP 441137 13076 6093882 2024-02-28 03:07:58.755 2024-02-28 03:07:58.755 10000 FEE 441137 6148 6093883 2024-02-28 03:07:58.755 2024-02-28 03:07:58.755 90000 TIP 441137 5497 6093894 2024-02-28 03:08:15.06 2024-02-28 03:08:15.06 10000 FEE 441170 4059 6093895 2024-02-28 03:08:15.06 2024-02-28 03:08:15.06 90000 TIP 441170 5809 6093896 2024-02-28 03:08:15.299 2024-02-28 03:08:15.299 10000 FEE 441170 21494 6093897 2024-02-28 03:08:15.299 2024-02-28 03:08:15.299 90000 TIP 441170 9242 6093942 2024-02-28 03:20:43.183 2024-02-28 03:20:43.183 3000 FEE 441367 14260 6093943 2024-02-28 03:20:43.183 2024-02-28 03:20:43.183 27000 TIP 441367 15941 6093953 2024-02-28 03:25:59.517 2024-02-28 03:25:59.517 1000 FEE 441421 20225 6093959 2024-02-28 03:28:21.47 2024-02-28 03:28:21.47 6900 FEE 441420 10007 6093960 2024-02-28 03:28:21.47 2024-02-28 03:28:21.47 62100 TIP 441420 17710 6093971 2024-02-28 03:33:36.785 2024-02-28 03:33:36.785 10000 FEE 441425 19639 6093973 2024-02-28 03:34:02.956 2024-02-28 03:34:02.956 1000 FEE 441409 6310 6093974 2024-02-28 03:34:02.956 2024-02-28 03:34:02.956 9000 TIP 441409 17184 6093977 2024-02-28 03:34:04.65 2024-02-28 03:34:04.65 1000 FEE 441409 21522 6093014 2024-02-28 01:38:10.817 2024-02-28 01:38:10.817 9000 TIP 441333 21048 6093015 2024-02-28 01:38:18.773 2024-02-28 01:38:18.773 1000 POLL 441333 21555 6093021 2024-02-28 01:39:03.278 2024-02-28 01:39:03.278 1000 FEE 440725 1173 6093022 2024-02-28 01:39:03.278 2024-02-28 01:39:03.278 9000 TIP 440725 21242 6093050 2024-02-28 01:40:27.296 2024-02-28 01:40:27.296 1000 FEE 441077 1647 6093051 2024-02-28 01:40:27.296 2024-02-28 01:40:27.296 9000 TIP 441077 18359 6093061 2024-02-28 01:42:16.217 2024-02-28 01:42:16.217 1000 POLL 441333 16410 6093063 2024-02-28 01:42:40.621 2024-02-28 01:42:40.621 1000 FEE 441176 2042 6093064 2024-02-28 01:42:40.621 2024-02-28 01:42:40.621 9000 TIP 441176 8242 6093069 2024-02-28 01:42:50.814 2024-02-28 01:42:50.814 500 FEE 440386 16356 6093070 2024-02-28 01:42:50.814 2024-02-28 01:42:50.814 4500 TIP 440386 12779 6093091 2024-02-28 01:43:41.297 2024-02-28 01:43:41.297 700 FEE 441328 2639 6093092 2024-02-28 01:43:41.297 2024-02-28 01:43:41.297 6300 TIP 441328 4459 6093111 2024-02-28 01:46:52.972 2024-02-28 01:46:52.972 2100 FEE 441158 7654 6093112 2024-02-28 01:46:52.972 2024-02-28 01:46:52.972 18900 TIP 441158 5708 6093114 2024-02-28 01:47:04.075 2024-02-28 01:47:04.075 1000 FEE 441368 18679 6093155 2024-02-28 01:55:45.738 2024-02-28 01:55:45.738 9000 FEE 441372 19500 6093156 2024-02-28 01:55:45.738 2024-02-28 01:55:45.738 81000 TIP 441372 1584 6093174 2024-02-28 01:57:53.163 2024-02-28 01:57:53.163 1000 FEE 441380 7989 6093213 2024-02-28 02:02:20.982 2024-02-28 02:02:20.982 2500 FEE 441340 17535 6093214 2024-02-28 02:02:20.982 2024-02-28 02:02:20.982 22500 TIP 441340 14774 6093239 2024-02-28 02:02:24.73 2024-02-28 02:02:24.73 2500 FEE 441341 17218 6093240 2024-02-28 02:02:24.73 2024-02-28 02:02:24.73 22500 TIP 441341 2431 6093241 2024-02-28 02:02:24.995 2024-02-28 02:02:24.995 2500 FEE 441341 18819 6093242 2024-02-28 02:02:24.995 2024-02-28 02:02:24.995 22500 TIP 441341 4388 6093272 2024-02-28 02:04:08.362 2024-02-28 02:04:08.362 500 FEE 440899 2789 6093273 2024-02-28 02:04:08.362 2024-02-28 02:04:08.362 4500 TIP 440899 6260 6093278 2024-02-28 02:05:35.92 2024-02-28 02:05:35.92 10000 FEE 441333 4802 6093279 2024-02-28 02:05:35.92 2024-02-28 02:05:35.92 90000 TIP 441333 803 6093293 2024-02-28 02:06:28.093 2024-02-28 02:06:28.093 1000 POLL 441333 9 6093373 2024-02-28 02:13:08.134 2024-02-28 02:13:08.134 1000 FEE 441373 20340 6093374 2024-02-28 02:13:08.134 2024-02-28 02:13:08.134 9000 TIP 441373 5825 6093398 2024-02-28 02:17:17.596 2024-02-28 02:17:17.596 1000 FEE 441381 15060 6093399 2024-02-28 02:17:17.596 2024-02-28 02:17:17.596 9000 TIP 441381 6700 6093426 2024-02-28 02:19:29.029 2024-02-28 02:19:29.029 1000 FEE 441389 18468 6093427 2024-02-28 02:19:29.029 2024-02-28 02:19:29.029 9000 TIP 441389 998 6093430 2024-02-28 02:19:56.43 2024-02-28 02:19:56.43 5000 FEE 441271 9655 6093431 2024-02-28 02:19:56.43 2024-02-28 02:19:56.43 45000 TIP 441271 4819 6093435 2024-02-28 02:20:06.435 2024-02-28 02:20:06.435 1000 FEE 441391 14795 6093460 2024-02-28 02:22:57.086 2024-02-28 02:22:57.086 1000 FEE 441393 3706 6093481 2024-02-28 02:24:09.089 2024-02-28 02:24:09.089 1000 FEE 440649 4238 6093482 2024-02-28 02:24:09.089 2024-02-28 02:24:09.089 9000 TIP 440649 20817 6093485 2024-02-28 02:24:10.837 2024-02-28 02:24:10.837 1100 FEE 441318 21373 6093486 2024-02-28 02:24:10.837 2024-02-28 02:24:10.837 9900 TIP 441318 19235 6093499 2024-02-28 02:24:11.633 2024-02-28 02:24:11.633 1100 FEE 441318 2039 6093500 2024-02-28 02:24:11.633 2024-02-28 02:24:11.633 9900 TIP 441318 16282 6093515 2024-02-28 02:24:12.586 2024-02-28 02:24:12.586 1100 FEE 441318 21603 6093516 2024-02-28 02:24:12.586 2024-02-28 02:24:12.586 9900 TIP 441318 15544 6093539 2024-02-28 02:24:14.128 2024-02-28 02:24:14.128 1100 FEE 441318 1428 6093540 2024-02-28 02:24:14.128 2024-02-28 02:24:14.128 9900 TIP 441318 17166 6093541 2024-02-28 02:24:14.262 2024-02-28 02:24:14.262 1100 FEE 441318 12289 6093542 2024-02-28 02:24:14.262 2024-02-28 02:24:14.262 9900 TIP 441318 770 6093557 2024-02-28 02:24:21.44 2024-02-28 02:24:21.44 1100 FEE 441169 17184 6093558 2024-02-28 02:24:21.44 2024-02-28 02:24:21.44 9900 TIP 441169 21523 6093579 2024-02-28 02:26:34.156 2024-02-28 02:26:34.156 2500 FEE 441360 8508 6093580 2024-02-28 02:26:34.156 2024-02-28 02:26:34.156 22500 TIP 441360 19488 6093600 2024-02-28 02:27:46.133 2024-02-28 02:27:46.133 7700 FEE 441333 11750 6093601 2024-02-28 02:27:46.133 2024-02-28 02:27:46.133 69300 TIP 441333 16309 6093604 2024-02-28 02:27:46.43 2024-02-28 02:27:46.43 15400 FEE 441333 20108 6093605 2024-02-28 02:27:46.43 2024-02-28 02:27:46.43 138600 TIP 441333 17050 6093606 2024-02-28 02:27:46.492 2024-02-28 02:27:46.492 7700 FEE 441333 2338 6093607 2024-02-28 02:27:46.492 2024-02-28 02:27:46.492 69300 TIP 441333 20168 6093618 2024-02-28 02:27:58.857 2024-02-28 02:27:58.857 500 FEE 440692 2525 6093619 2024-02-28 02:27:58.857 2024-02-28 02:27:58.857 4500 TIP 440692 1552 6093631 2024-02-28 02:28:08.917 2024-02-28 02:28:08.917 500 FEE 440587 20710 6093632 2024-02-28 02:28:08.917 2024-02-28 02:28:08.917 4500 TIP 440587 21139 6093639 2024-02-28 02:28:37.105 2024-02-28 02:28:37.105 0 FEE 435142 20509 6093650 2024-02-28 02:29:04.451 2024-02-28 02:29:04.451 1000 FEE 441396 19909 6093690 2024-02-28 02:32:43.121 2024-02-28 02:32:43.121 1000 FEE 440587 15160 6093691 2024-02-28 02:32:43.121 2024-02-28 02:32:43.121 9000 TIP 440587 15336 6093717 2024-02-28 02:33:37.545 2024-02-28 02:33:37.545 2500 FEE 441399 14295 6093718 2024-02-28 02:33:37.545 2024-02-28 02:33:37.545 22500 TIP 441399 2101 6093721 2024-02-28 02:33:39.141 2024-02-28 02:33:39.141 2500 FEE 441396 11298 6093722 2024-02-28 02:33:39.141 2024-02-28 02:33:39.141 22500 TIP 441396 1823 6093739 2024-02-28 02:33:42.461 2024-02-28 02:33:42.461 2500 FEE 441399 1298 6093740 2024-02-28 02:33:42.461 2024-02-28 02:33:42.461 22500 TIP 441399 4167 6093741 2024-02-28 02:33:42.596 2024-02-28 02:33:42.596 2500 FEE 441399 10493 6093742 2024-02-28 02:33:42.596 2024-02-28 02:33:42.596 22500 TIP 441399 5308 6093752 2024-02-28 02:34:20.277 2024-02-28 02:34:20.277 800 FEE 441077 19961 6093753 2024-02-28 02:34:20.277 2024-02-28 02:34:20.277 7200 TIP 441077 7916 6093768 2024-02-28 02:40:56.133 2024-02-28 02:40:56.133 900 FEE 441402 656 6093769 2024-02-28 02:40:56.133 2024-02-28 02:40:56.133 8100 TIP 441402 11798 6093810 2024-02-28 02:47:36.694 2024-02-28 02:47:36.694 0 FEE 441407 20710 6093814 2024-02-28 02:48:15.922 2024-02-28 02:48:15.922 5700 FEE 441404 10731 6093815 2024-02-28 02:48:15.922 2024-02-28 02:48:15.922 51300 TIP 441404 5646 6093818 2024-02-28 02:48:38.623 2024-02-28 02:48:38.623 2100 FEE 441289 18423 6093819 2024-02-28 02:48:38.623 2024-02-28 02:48:38.623 18900 TIP 441289 15732 6093833 2024-02-28 02:55:47.079 2024-02-28 02:55:47.079 25000 FEE 441077 1658 6093834 2024-02-28 02:55:47.079 2024-02-28 02:55:47.079 225000 TIP 441077 20778 6093863 2024-02-28 03:06:59.59 2024-02-28 03:06:59.59 10000 FEE 440863 1474 6093065 2024-02-28 01:42:48.862 2024-02-28 01:42:48.862 500 FEE 440520 14515 6093066 2024-02-28 01:42:48.862 2024-02-28 01:42:48.862 4500 TIP 440520 19976 6093071 2024-02-28 01:42:52.368 2024-02-28 01:42:52.368 500 FEE 440663 16284 6093072 2024-02-28 01:42:52.368 2024-02-28 01:42:52.368 4500 TIP 440663 977 6093075 2024-02-28 01:42:55.406 2024-02-28 01:42:55.406 500 FEE 441238 13169 6093076 2024-02-28 01:42:55.406 2024-02-28 01:42:55.406 4500 TIP 441238 18262 6093081 2024-02-28 01:42:57.795 2024-02-28 01:42:57.795 1000 FEE 441361 1647 6093093 2024-02-28 01:43:48.043 2024-02-28 01:43:48.043 2100 FEE 441274 1471 6093094 2024-02-28 01:43:48.043 2024-02-28 01:43:48.043 18900 TIP 441274 21556 6093106 2024-02-28 01:46:07.849 2024-02-28 01:46:07.849 1000 FEE 441364 21406 6093107 2024-02-28 01:46:17.241 2024-02-28 01:46:17.241 1000 FEE 441365 16513 6093110 2024-02-28 01:46:35.924 2024-02-28 01:46:35.924 10000 FEE 441366 21254 6093113 2024-02-28 01:46:55.474 2024-02-28 01:46:55.474 1000 FEE 441367 5597 6093121 2024-02-28 01:49:23.838 2024-02-28 01:49:23.838 1000 FEE 441124 954 6093122 2024-02-28 01:49:23.838 2024-02-28 01:49:23.838 9000 TIP 441124 8998 6093127 2024-02-28 01:49:34.804 2024-02-28 01:49:34.804 5000 FEE 441370 20509 6093129 2024-02-28 01:50:57.606 2024-02-28 01:50:57.606 0 FEE 441369 21339 6093165 2024-02-28 01:57:17.345 2024-02-28 01:57:17.345 1000 FEE 440692 21208 6093166 2024-02-28 01:57:17.345 2024-02-28 01:57:17.345 9000 TIP 440692 4115 6093186 2024-02-28 02:00:01.014 2024-02-28 02:00:01.014 1000 FEE 440649 19639 6093187 2024-02-28 02:00:01.014 2024-02-28 02:00:01.014 9000 TIP 440649 15336 6093197 2024-02-28 02:01:18.649 2024-02-28 02:01:18.649 1000 FEE 441378 20340 6093198 2024-02-28 02:01:18.649 2024-02-28 02:01:18.649 9000 TIP 441378 14545 6093209 2024-02-28 02:02:20.672 2024-02-28 02:02:20.672 2500 FEE 441340 8954 6093210 2024-02-28 02:02:20.672 2024-02-28 02:02:20.672 22500 TIP 441340 10007 6093211 2024-02-28 02:02:20.811 2024-02-28 02:02:20.811 2500 FEE 441340 6798 6093212 2024-02-28 02:02:20.811 2024-02-28 02:02:20.811 22500 TIP 441340 11220 6093223 2024-02-28 02:02:21.73 2024-02-28 02:02:21.73 2500 FEE 441340 20599 6093224 2024-02-28 02:02:21.73 2024-02-28 02:02:21.73 22500 TIP 441340 20892 6093231 2024-02-28 02:02:23.763 2024-02-28 02:02:23.763 2500 FEE 441341 4027 6093232 2024-02-28 02:02:23.763 2024-02-28 02:02:23.763 22500 TIP 441341 17411 6093249 2024-02-28 02:03:34.003 2024-02-28 02:03:34.003 500 FEE 441378 10771 6093250 2024-02-28 02:03:34.003 2024-02-28 02:03:34.003 4500 TIP 441378 18336 6093251 2024-02-28 02:03:34.151 2024-02-28 02:03:34.151 500 FEE 441378 20554 6093252 2024-02-28 02:03:34.151 2024-02-28 02:03:34.151 4500 TIP 441378 21057 6093253 2024-02-28 02:03:34.381 2024-02-28 02:03:34.381 500 FEE 441378 20424 6093254 2024-02-28 02:03:34.381 2024-02-28 02:03:34.381 4500 TIP 441378 21287 6093277 2024-02-28 02:05:28.869 2024-02-28 02:05:28.869 1000 POLL 441333 4415 6093296 2024-02-28 02:06:28.549 2024-02-28 02:06:28.549 2500 FEE 441336 2075 6093297 2024-02-28 02:06:28.549 2024-02-28 02:06:28.549 22500 TIP 441336 19381 6093298 2024-02-28 02:06:28.752 2024-02-28 02:06:28.752 2500 FEE 441336 658 6093299 2024-02-28 02:06:28.752 2024-02-28 02:06:28.752 22500 TIP 441336 21070 6093304 2024-02-28 02:06:29.265 2024-02-28 02:06:29.265 2500 FEE 441336 738 6093305 2024-02-28 02:06:29.265 2024-02-28 02:06:29.265 22500 TIP 441336 19087 6093325 2024-02-28 02:10:15.543 2024-02-28 02:10:15.543 1000 FEE 440973 20117 6093326 2024-02-28 02:10:15.543 2024-02-28 02:10:15.543 9000 TIP 440973 18220 6093335 2024-02-28 02:10:24.624 2024-02-28 02:10:24.624 800 FEE 441238 6268 6093336 2024-02-28 02:10:24.624 2024-02-28 02:10:24.624 7200 TIP 441238 16351 6093343 2024-02-28 02:10:26.228 2024-02-28 02:10:26.228 800 FEE 441238 14795 6093344 2024-02-28 02:10:26.228 2024-02-28 02:10:26.228 7200 TIP 441238 13782 6093355 2024-02-28 02:10:59.216 2024-02-28 02:10:59.216 1000 POLL 441333 16149 6093378 2024-02-28 02:15:00.84 2024-02-28 02:15:00.84 1000 FEE 441389 18380 6093389 2024-02-28 02:16:05.557 2024-02-28 02:16:05.557 1000 FEE 441077 21047 6093390 2024-02-28 02:16:05.557 2024-02-28 02:16:05.557 9000 TIP 441077 12175 6093405 2024-02-28 02:18:29.433 2024-02-28 02:18:29.433 1000 FEE 441390 16954 6093418 2024-02-28 02:19:25.19 2024-02-28 02:19:25.19 1000 FEE 441389 2832 6093419 2024-02-28 02:19:25.19 2024-02-28 02:19:25.19 9000 TIP 441389 2609 6093432 2024-02-28 02:19:58.79 2024-02-28 02:19:58.79 10000 FEE 441386 21627 6093433 2024-02-28 02:19:58.79 2024-02-28 02:19:58.79 90000 TIP 441386 19381 6093445 2024-02-28 02:21:27.262 2024-02-28 02:21:27.262 1000 FEE 440520 19484 6093446 2024-02-28 02:21:27.262 2024-02-28 02:21:27.262 9000 TIP 440520 17109 6093461 2024-02-28 02:22:58.591 2024-02-28 02:22:58.591 5000 FEE 440523 17042 6093462 2024-02-28 02:22:58.591 2024-02-28 02:22:58.591 45000 TIP 440523 4802 6093466 2024-02-28 02:23:23.616 2024-02-28 02:23:23.616 1000 FEE 441386 17042 6093467 2024-02-28 02:23:23.616 2024-02-28 02:23:23.616 9000 TIP 441386 782 6093478 2024-02-28 02:23:56.373 2024-02-28 02:23:56.373 1000 FEE 441340 787 6093479 2024-02-28 02:23:56.373 2024-02-28 02:23:56.373 9000 TIP 441340 17494 6093489 2024-02-28 02:24:11.065 2024-02-28 02:24:11.065 1100 FEE 441318 21485 6093490 2024-02-28 02:24:11.065 2024-02-28 02:24:11.065 9900 TIP 441318 960 6093493 2024-02-28 02:24:11.29 2024-02-28 02:24:11.29 1100 FEE 441318 16351 6093494 2024-02-28 02:24:11.29 2024-02-28 02:24:11.29 9900 TIP 441318 7772 6093501 2024-02-28 02:24:11.737 2024-02-28 02:24:11.737 1100 FEE 441318 4633 6093502 2024-02-28 02:24:11.737 2024-02-28 02:24:11.737 9900 TIP 441318 19566 6093507 2024-02-28 02:24:12.115 2024-02-28 02:24:12.115 1100 FEE 441318 19929 6093508 2024-02-28 02:24:12.115 2024-02-28 02:24:12.115 9900 TIP 441318 16536 6093521 2024-02-28 02:24:13.013 2024-02-28 02:24:13.013 1100 FEE 441318 7668 6093522 2024-02-28 02:24:13.013 2024-02-28 02:24:13.013 9900 TIP 441318 21343 6093527 2024-02-28 02:24:13.335 2024-02-28 02:24:13.335 1100 FEE 441318 19557 6093528 2024-02-28 02:24:13.335 2024-02-28 02:24:13.335 9900 TIP 441318 5449 6093537 2024-02-28 02:24:13.996 2024-02-28 02:24:13.996 1100 FEE 441318 21212 6093538 2024-02-28 02:24:13.996 2024-02-28 02:24:13.996 9900 TIP 441318 19153 6093567 2024-02-28 02:24:49.924 2024-02-28 02:24:49.924 1000 FEE 441245 20302 6093568 2024-02-28 02:24:49.924 2024-02-28 02:24:49.924 9000 TIP 441245 902 6093576 2024-02-28 02:26:31.82 2024-02-28 02:26:31.82 1000 FEE 441395 1611 6093622 2024-02-28 02:28:02.51 2024-02-28 02:28:02.51 500 FEE 440898 21287 6093623 2024-02-28 02:28:02.51 2024-02-28 02:28:02.51 4500 TIP 440898 21292 6093633 2024-02-28 02:28:10.33 2024-02-28 02:28:10.33 500 FEE 440764 21003 6093634 2024-02-28 02:28:10.33 2024-02-28 02:28:10.33 4500 TIP 440764 19117 6093657 2024-02-28 02:29:20.861 2024-02-28 02:29:20.861 500 FEE 441201 6555 6093658 2024-02-28 02:29:20.861 2024-02-28 02:29:20.861 4500 TIP 441201 635 6093667 2024-02-28 02:30:09.212 2024-02-28 02:30:09.212 500 FEE 441381 2735 6093668 2024-02-28 02:30:09.212 2024-02-28 02:30:09.212 4500 TIP 441381 16847 6093682 2024-02-28 02:32:35.298 2024-02-28 02:32:35.298 1000 FEE 440692 19839 6093683 2024-02-28 02:32:35.298 2024-02-28 02:32:35.298 9000 TIP 440692 20657 6093686 2024-02-28 02:32:37.402 2024-02-28 02:32:37.402 1000 FEE 440898 718 6093687 2024-02-28 02:32:37.402 2024-02-28 02:32:37.402 9000 TIP 440898 14357 6093723 2024-02-28 02:33:39.392 2024-02-28 02:33:39.392 2500 FEE 441396 17157 6093724 2024-02-28 02:33:39.392 2024-02-28 02:33:39.392 22500 TIP 441396 19036 6093729 2024-02-28 02:33:39.783 2024-02-28 02:33:39.783 2500 FEE 441396 861 6093730 2024-02-28 02:33:39.783 2024-02-28 02:33:39.783 22500 TIP 441396 6700 6093731 2024-02-28 02:33:40.224 2024-02-28 02:33:40.224 2500 FEE 441396 896 6093732 2024-02-28 02:33:40.224 2024-02-28 02:33:40.224 22500 TIP 441396 18663 6093733 2024-02-28 02:33:40.392 2024-02-28 02:33:40.392 2500 FEE 441396 18615 6093734 2024-02-28 02:33:40.392 2024-02-28 02:33:40.392 22500 TIP 441396 6573 6093735 2024-02-28 02:33:41.347 2024-02-28 02:33:41.347 2500 FEE 441396 1729 6093736 2024-02-28 02:33:41.347 2024-02-28 02:33:41.347 22500 TIP 441396 11967 6093090 2024-02-28 01:43:24.962 2024-02-28 01:43:24.962 18900 TIP 441282 1426 6093097 2024-02-28 01:44:20.586 2024-02-28 01:44:20.586 1000 FEE 441274 21090 6093098 2024-02-28 01:44:20.586 2024-02-28 01:44:20.586 9000 TIP 441274 19037 6093103 2024-02-28 01:45:32.048 2024-02-28 01:45:32.048 500 FEE 441038 16355 6093104 2024-02-28 01:45:32.048 2024-02-28 01:45:32.048 4500 TIP 441038 977 6093144 2024-02-28 01:54:42.803 2024-02-28 01:54:42.803 0 FEE 441373 20599 6093151 2024-02-28 01:55:43.098 2024-02-28 01:55:43.098 100 FEE 441372 20117 6093152 2024-02-28 01:55:43.098 2024-02-28 01:55:43.098 900 TIP 441372 959 6093191 2024-02-28 02:00:29.412 2024-02-28 02:00:29.412 1000 FEE 441382 1224 6093207 2024-02-28 02:02:18.873 2024-02-28 02:02:18.873 2100 FEE 441372 4225 6093208 2024-02-28 02:02:18.873 2024-02-28 02:02:18.873 18900 TIP 441372 716 6093219 2024-02-28 02:02:21.432 2024-02-28 02:02:21.432 2500 FEE 441340 13399 6093220 2024-02-28 02:02:21.432 2024-02-28 02:02:21.432 22500 TIP 441340 2402 6093225 2024-02-28 02:02:21.914 2024-02-28 02:02:21.914 2500 FEE 441340 18230 6093226 2024-02-28 02:02:21.914 2024-02-28 02:02:21.914 22500 TIP 441340 897 6093227 2024-02-28 02:02:23.426 2024-02-28 02:02:23.426 2500 FEE 441341 16177 6093228 2024-02-28 02:02:23.426 2024-02-28 02:02:23.426 22500 TIP 441341 705 6093229 2024-02-28 02:02:23.582 2024-02-28 02:02:23.582 2500 FEE 441341 9705 6093230 2024-02-28 02:02:23.582 2024-02-28 02:02:23.582 22500 TIP 441341 12965 6093248 2024-02-28 02:03:28.296 2024-02-28 02:03:28.296 1000 FEE 441384 8570 6093267 2024-02-28 02:03:40.064 2024-02-28 02:03:40.064 500 FEE 441378 16754 6093268 2024-02-28 02:03:40.064 2024-02-28 02:03:40.064 4500 TIP 441378 635 6093269 2024-02-28 02:03:40.507 2024-02-28 02:03:40.507 500 FEE 441378 2016 6093270 2024-02-28 02:03:40.507 2024-02-28 02:03:40.507 4500 TIP 441378 7125 6093274 2024-02-28 02:04:20.086 2024-02-28 02:04:20.086 500 FEE 441245 21090 6093275 2024-02-28 02:04:20.086 2024-02-28 02:04:20.086 4500 TIP 441245 713 6093300 2024-02-28 02:06:28.935 2024-02-28 02:06:28.935 2500 FEE 441336 6136 6093301 2024-02-28 02:06:28.935 2024-02-28 02:06:28.935 22500 TIP 441336 21014 6093361 2024-02-28 02:11:39.478 2024-02-28 02:11:39.478 800 FEE 441333 14152 6093362 2024-02-28 02:11:39.478 2024-02-28 02:11:39.478 7200 TIP 441333 11275 6093371 2024-02-28 02:12:15.594 2024-02-28 02:12:15.594 1000 POLL 441333 13076 6093406 2024-02-28 02:18:46.524 2024-02-28 02:18:46.524 1000 FEE 440663 14489 6093407 2024-02-28 02:18:46.524 2024-02-28 02:18:46.524 9000 TIP 440663 16965 6093497 2024-02-28 02:24:11.511 2024-02-28 02:24:11.511 1100 FEE 441318 16848 6093498 2024-02-28 02:24:11.511 2024-02-28 02:24:11.511 9900 TIP 441318 19924 6093505 2024-02-28 02:24:11.987 2024-02-28 02:24:11.987 1100 FEE 441318 814 6093506 2024-02-28 02:24:11.987 2024-02-28 02:24:11.987 9900 TIP 441318 1003 6093511 2024-02-28 02:24:12.349 2024-02-28 02:24:12.349 1100 FEE 441318 12819 6093512 2024-02-28 02:24:12.349 2024-02-28 02:24:12.349 9900 TIP 441318 15732 6093551 2024-02-28 02:24:14.951 2024-02-28 02:24:14.951 1100 FEE 441318 15147 6093552 2024-02-28 02:24:14.951 2024-02-28 02:24:14.951 9900 TIP 441318 5195 6093553 2024-02-28 02:24:15.076 2024-02-28 02:24:15.076 1100 FEE 441318 13133 6093554 2024-02-28 02:24:15.076 2024-02-28 02:24:15.076 9900 TIP 441318 10112 6093590 2024-02-28 02:27:43.103 2024-02-28 02:27:43.103 7700 FEE 441238 20094 6093591 2024-02-28 02:27:43.103 2024-02-28 02:27:43.103 69300 TIP 441238 1092 6093624 2024-02-28 02:28:02.98 2024-02-28 02:28:02.98 500 FEE 441238 13878 6093625 2024-02-28 02:28:02.98 2024-02-28 02:28:02.98 4500 TIP 441238 4378 6093645 2024-02-28 02:28:54.125 2024-02-28 02:28:54.125 500 FEE 441044 15463 6093646 2024-02-28 02:28:54.125 2024-02-28 02:28:54.125 4500 TIP 441044 3544 6093673 2024-02-28 02:30:21.44 2024-02-28 02:30:21.44 500 FEE 441386 663 6093674 2024-02-28 02:30:21.44 2024-02-28 02:30:21.44 4500 TIP 441386 17091 6093676 2024-02-28 02:31:03.976 2024-02-28 02:31:03.976 500 FEE 440829 9705 6093677 2024-02-28 02:31:03.976 2024-02-28 02:31:03.976 4500 TIP 440829 8416 6093679 2024-02-28 02:31:55.679 2024-02-28 02:31:55.679 100000 FEE 440829 14168 6093680 2024-02-28 02:31:55.679 2024-02-28 02:31:55.679 900000 TIP 440829 21338 6093707 2024-02-28 02:33:36.41 2024-02-28 02:33:36.41 2500 FEE 441399 17517 6093708 2024-02-28 02:33:36.41 2024-02-28 02:33:36.41 22500 TIP 441399 14260 6093727 2024-02-28 02:33:39.617 2024-02-28 02:33:39.617 2500 FEE 441396 14258 6093728 2024-02-28 02:33:39.617 2024-02-28 02:33:39.617 22500 TIP 441396 4304 6093737 2024-02-28 02:33:41.548 2024-02-28 02:33:41.548 2500 FEE 441396 9350 6093738 2024-02-28 02:33:41.548 2024-02-28 02:33:41.548 22500 TIP 441396 20660 6093748 2024-02-28 02:34:18.186 2024-02-28 02:34:18.186 800 FEE 441077 7773 6093749 2024-02-28 02:34:18.186 2024-02-28 02:34:18.186 7200 TIP 441077 21416 6093760 2024-02-28 02:37:21.014 2024-02-28 02:37:21.014 1000 FEE 441401 8713 6093770 2024-02-28 02:40:57.595 2024-02-28 02:40:57.595 100 FEE 441383 10862 6093771 2024-02-28 02:40:57.595 2024-02-28 02:40:57.595 900 TIP 441383 16970 6093838 2024-02-28 02:58:21.705 2024-02-28 02:58:21.705 1000 FEE 441300 18630 6093839 2024-02-28 02:58:21.705 2024-02-28 02:58:21.705 9000 TIP 441300 4126 6093873 2024-02-28 03:07:00.86 2024-02-28 03:07:00.86 10000 FEE 440863 951 6093874 2024-02-28 03:07:00.86 2024-02-28 03:07:00.86 90000 TIP 440863 656 6093900 2024-02-28 03:08:15.777 2024-02-28 03:08:15.777 10000 FEE 441170 1245 6093901 2024-02-28 03:08:15.777 2024-02-28 03:08:15.777 90000 TIP 441170 19952 6093902 2024-02-28 03:08:16.014 2024-02-28 03:08:16.014 10000 FEE 441170 19996 6093903 2024-02-28 03:08:16.014 2024-02-28 03:08:16.014 90000 TIP 441170 21506 6093912 2024-02-28 03:12:29.809 2024-02-28 03:12:29.809 10000 FEE 440663 4043 6093913 2024-02-28 03:12:29.809 2024-02-28 03:12:29.809 90000 TIP 440663 10944 6093938 2024-02-28 03:19:52.219 2024-02-28 03:19:52.219 1000 FEE 441405 20433 6093939 2024-02-28 03:19:52.219 2024-02-28 03:19:52.219 9000 TIP 441405 18784 6093958 2024-02-28 03:28:09.369 2024-02-28 03:28:09.369 42000 FEE 441422 1401 6093975 2024-02-28 03:34:03.259 2024-02-28 03:34:03.259 1000 FEE 441409 7418 6093095 2024-02-28 01:44:03.217 2024-02-28 01:44:03.217 1000 STREAM 141924 3709 6093105 2024-02-28 01:46:03.217 2024-02-28 01:46:03.217 1000 STREAM 141924 5487 6093116 2024-02-28 01:48:03.219 2024-02-28 01:48:03.219 1000 STREAM 141924 13399 6093128 2024-02-28 01:50:03.234 2024-02-28 01:50:03.234 1000 STREAM 141924 18862 6093130 2024-02-28 01:51:03.229 2024-02-28 01:51:03.229 1000 STREAM 141924 10821 6093137 2024-02-28 01:53:03.239 2024-02-28 01:53:03.239 1000 STREAM 141924 18511 6093179 2024-02-28 01:59:03.255 2024-02-28 01:59:03.255 1000 STREAM 141924 5359 6093243 2024-02-28 02:03:03.277 2024-02-28 02:03:03.277 1000 STREAM 141924 17526 6093276 2024-02-28 02:05:03.412 2024-02-28 02:05:03.412 1000 STREAM 141924 822 6093314 2024-02-28 02:09:03.454 2024-02-28 02:09:03.454 1000 STREAM 141924 21269 6093324 2024-02-28 02:10:03.49 2024-02-28 02:10:03.49 1000 STREAM 141924 15463 6093368 2024-02-28 02:12:03.496 2024-02-28 02:12:03.496 1000 STREAM 141924 20674 6093376 2024-02-28 02:14:03.488 2024-02-28 02:14:03.488 1000 STREAM 141924 20837 6093388 2024-02-28 02:16:03.499 2024-02-28 02:16:03.499 1000 STREAM 141924 20337 6093480 2024-02-28 02:24:03.552 2024-02-28 02:24:03.552 1000 STREAM 141924 4474 6093574 2024-02-28 02:26:03.577 2024-02-28 02:26:03.577 1000 STREAM 141924 21398 6093585 2024-02-28 02:27:03.584 2024-02-28 02:27:03.584 1000 STREAM 141924 8505 6093649 2024-02-28 02:29:03.592 2024-02-28 02:29:03.592 1000 STREAM 141924 706 6093675 2024-02-28 02:31:03.594 2024-02-28 02:31:03.594 1000 STREAM 141924 20751 6093681 2024-02-28 02:32:03.59 2024-02-28 02:32:03.59 1000 STREAM 141924 17798 6093695 2024-02-28 02:33:03.606 2024-02-28 02:33:03.606 1000 STREAM 141924 20577 6093754 2024-02-28 02:35:03.595 2024-02-28 02:35:03.595 1000 STREAM 141924 17817 6093758 2024-02-28 02:36:03.62 2024-02-28 02:36:03.62 1000 STREAM 141924 19281 6093759 2024-02-28 02:37:03.607 2024-02-28 02:37:03.607 1000 STREAM 141924 21522 6093763 2024-02-28 02:39:03.612 2024-02-28 02:39:03.612 1000 STREAM 141924 19126 6093764 2024-02-28 02:40:03.647 2024-02-28 02:40:03.647 1000 STREAM 141924 20636 6093795 2024-02-28 02:43:03.644 2024-02-28 02:43:03.644 1000 STREAM 141924 1310 6093801 2024-02-28 02:45:03.639 2024-02-28 02:45:03.639 1000 STREAM 141924 21239 6093807 2024-02-28 02:46:03.654 2024-02-28 02:46:03.654 1000 STREAM 141924 1141 6093808 2024-02-28 02:47:03.652 2024-02-28 02:47:03.652 1000 STREAM 141924 18675 6093811 2024-02-28 02:48:03.659 2024-02-28 02:48:03.659 1000 STREAM 141924 6537 6093148 2024-02-28 01:55:03.255 2024-02-28 01:55:03.255 1000 STREAM 141924 671 6093162 2024-02-28 01:57:03.256 2024-02-28 01:57:03.256 1000 STREAM 141924 676 6093194 2024-02-28 02:01:03.269 2024-02-28 02:01:03.269 1000 STREAM 141924 891 6093310 2024-02-28 02:07:03.431 2024-02-28 02:07:03.431 1000 STREAM 141924 21180 6093402 2024-02-28 02:18:03.512 2024-02-28 02:18:03.512 1000 STREAM 141924 4059 6093434 2024-02-28 02:20:03.558 2024-02-28 02:20:03.558 1000 STREAM 141924 16788 6093453 2024-02-28 02:22:03.54 2024-02-28 02:22:03.54 1000 STREAM 141924 5578 6093743 2024-02-28 02:34:03.601 2024-02-28 02:34:03.601 1000 STREAM 141924 21338 6093762 2024-02-28 02:38:03.616 2024-02-28 02:38:03.616 1000 STREAM 141924 9611 6093776 2024-02-28 02:41:03.633 2024-02-28 02:41:03.633 1000 STREAM 141924 21314 6093783 2024-02-28 02:42:03.653 2024-02-28 02:42:03.653 1000 STREAM 141924 18472 6093800 2024-02-28 02:44:03.636 2024-02-28 02:44:03.636 1000 STREAM 141924 13544 6093823 2024-02-28 02:51:03.693 2024-02-28 02:51:03.693 1000 STREAM 141924 5500 6093826 2024-02-28 02:52:03.687 2024-02-28 02:52:03.687 1000 STREAM 141924 650 6093828 2024-02-28 02:54:03.691 2024-02-28 02:54:03.691 1000 STREAM 141924 986 6093837 2024-02-28 02:58:03.701 2024-02-28 02:58:03.701 1000 STREAM 141924 20424 6093843 2024-02-28 03:02:03.737 2024-02-28 03:02:03.737 1000 STREAM 141924 19615 6093218 2024-02-28 02:02:21.286 2024-02-28 02:02:21.286 22500 TIP 441340 1745 6093235 2024-02-28 02:02:24.11 2024-02-28 02:02:24.11 2500 FEE 441341 21320 6093236 2024-02-28 02:02:24.11 2024-02-28 02:02:24.11 22500 TIP 441341 20924 6093246 2024-02-28 02:03:25.884 2024-02-28 02:03:25.884 500 FEE 440675 17157 6093247 2024-02-28 02:03:25.884 2024-02-28 02:03:25.884 4500 TIP 440675 1135 6093283 2024-02-28 02:06:26.512 2024-02-28 02:06:26.512 2500 FEE 441358 5112 6093284 2024-02-28 02:06:26.512 2024-02-28 02:06:26.512 22500 TIP 441358 1012 6093285 2024-02-28 02:06:26.903 2024-02-28 02:06:26.903 2500 FEE 441358 18743 6093286 2024-02-28 02:06:26.903 2024-02-28 02:06:26.903 22500 TIP 441358 17710 6093287 2024-02-28 02:06:27.061 2024-02-28 02:06:27.061 2500 FEE 441358 14122 6093288 2024-02-28 02:06:27.061 2024-02-28 02:06:27.061 22500 TIP 441358 5865 6093302 2024-02-28 02:06:29.098 2024-02-28 02:06:29.098 2500 FEE 441336 18174 6093303 2024-02-28 02:06:29.098 2024-02-28 02:06:29.098 22500 TIP 441336 16301 6093306 2024-02-28 02:06:35.322 2024-02-28 02:06:35.322 1000 FEE 441340 21398 6093307 2024-02-28 02:06:35.322 2024-02-28 02:06:35.322 9000 TIP 441340 14818 6093320 2024-02-28 02:09:46.142 2024-02-28 02:09:46.142 2100 FEE 441193 20614 6093321 2024-02-28 02:09:46.142 2024-02-28 02:09:46.142 18900 TIP 441193 18680 6093327 2024-02-28 02:10:23.622 2024-02-28 02:10:23.622 2100 FEE 441202 18629 6093328 2024-02-28 02:10:23.622 2024-02-28 02:10:23.622 18900 TIP 441202 777 6093341 2024-02-28 02:10:26.037 2024-02-28 02:10:26.037 800 FEE 441238 18473 6093342 2024-02-28 02:10:26.037 2024-02-28 02:10:26.037 7200 TIP 441238 16176 6093353 2024-02-28 02:10:46.281 2024-02-28 02:10:46.281 2100 FEE 441279 694 6093354 2024-02-28 02:10:46.281 2024-02-28 02:10:46.281 18900 TIP 441279 20811 6093359 2024-02-28 02:11:19.211 2024-02-28 02:11:19.211 1000 FEE 441349 6003 6093360 2024-02-28 02:11:19.211 2024-02-28 02:11:19.211 9000 TIP 441349 1092 6093382 2024-02-28 02:15:59.253 2024-02-28 02:15:59.253 1000 FEE 440725 10469 6093383 2024-02-28 02:15:59.253 2024-02-28 02:15:59.253 9000 TIP 440725 14308 6093391 2024-02-28 02:16:16.76 2024-02-28 02:16:16.76 1000 FEE 440615 20326 6093392 2024-02-28 02:16:16.76 2024-02-28 02:16:16.76 9000 TIP 440615 16966 6093441 2024-02-28 02:21:21.459 2024-02-28 02:21:21.459 1000 FEE 440692 19863 6093442 2024-02-28 02:21:21.459 2024-02-28 02:21:21.459 9000 TIP 440692 1038 6093449 2024-02-28 02:21:31.66 2024-02-28 02:21:31.66 1000 FEE 430854 14449 6093450 2024-02-28 02:21:31.66 2024-02-28 02:21:31.66 9000 TIP 430854 20706 6093464 2024-02-28 02:23:11.525 2024-02-28 02:23:11.525 1000 FEE 441389 18704 6093465 2024-02-28 02:23:11.525 2024-02-28 02:23:11.525 9000 TIP 441389 2402 6093472 2024-02-28 02:23:41.615 2024-02-28 02:23:41.615 1100 FEE 440566 18680 6093473 2024-02-28 02:23:41.615 2024-02-28 02:23:41.615 9900 TIP 440566 17157 6093476 2024-02-28 02:23:41.936 2024-02-28 02:23:41.936 1100 FEE 440566 21138 6093477 2024-02-28 02:23:41.936 2024-02-28 02:23:41.936 9900 TIP 440566 1845 6093483 2024-02-28 02:24:10.712 2024-02-28 02:24:10.712 1100 FEE 441318 17953 6093484 2024-02-28 02:24:10.712 2024-02-28 02:24:10.712 9900 TIP 441318 3456 6093495 2024-02-28 02:24:11.4 2024-02-28 02:24:11.4 1100 FEE 441318 19303 6093496 2024-02-28 02:24:11.4 2024-02-28 02:24:11.4 9900 TIP 441318 882 6093545 2024-02-28 02:24:14.567 2024-02-28 02:24:14.567 1100 FEE 441318 2596 6093546 2024-02-28 02:24:14.567 2024-02-28 02:24:14.567 9900 TIP 441318 2088 6093547 2024-02-28 02:24:14.674 2024-02-28 02:24:14.674 1100 FEE 441318 999 6093548 2024-02-28 02:24:14.674 2024-02-28 02:24:14.674 9900 TIP 441318 777 6093581 2024-02-28 02:26:34.303 2024-02-28 02:26:34.303 2500 FEE 441360 19848 6093582 2024-02-28 02:26:34.303 2024-02-28 02:26:34.303 22500 TIP 441360 2735 6093583 2024-02-28 02:26:34.442 2024-02-28 02:26:34.442 2500 FEE 441360 6749 6093584 2024-02-28 02:26:34.442 2024-02-28 02:26:34.442 22500 TIP 441360 18837 6093608 2024-02-28 02:27:47.027 2024-02-28 02:27:47.027 7700 FEE 441333 2460 6093609 2024-02-28 02:27:47.027 2024-02-28 02:27:47.027 69300 TIP 441333 1354 6093610 2024-02-28 02:27:47.144 2024-02-28 02:27:47.144 7700 FEE 441333 21021 6093611 2024-02-28 02:27:47.144 2024-02-28 02:27:47.144 69300 TIP 441333 13587 6093640 2024-02-28 02:28:39.621 2024-02-28 02:28:39.621 500 FEE 440838 20120 6093641 2024-02-28 02:28:39.621 2024-02-28 02:28:39.621 4500 TIP 440838 730 6093642 2024-02-28 02:28:47.623 2024-02-28 02:28:47.623 0 FEE 435142 19117 6093647 2024-02-28 02:28:55.575 2024-02-28 02:28:55.575 500 FEE 441183 5752 6093648 2024-02-28 02:28:55.575 2024-02-28 02:28:55.575 4500 TIP 441183 17095 6093671 2024-02-28 02:30:20.521 2024-02-28 02:30:20.521 500 FEE 441386 1142 6093672 2024-02-28 02:30:20.521 2024-02-28 02:30:20.521 4500 TIP 441386 1483 6093703 2024-02-28 02:33:35.989 2024-02-28 02:33:35.989 2500 FEE 441399 16440 6093704 2024-02-28 02:33:35.989 2024-02-28 02:33:35.989 22500 TIP 441399 19286 6093774 2024-02-28 02:40:58.206 2024-02-28 02:40:58.206 9000 FEE 441383 17094 6093775 2024-02-28 02:40:58.206 2024-02-28 02:40:58.206 81000 TIP 441383 19886 6093782 2024-02-28 02:42:03.159 2024-02-28 02:42:03.159 1000 FEE 441404 21406 6093784 2024-02-28 02:42:06.048 2024-02-28 02:42:06.048 1000 POLL 441333 21457 6093791 2024-02-28 02:42:47.386 2024-02-28 02:42:47.386 3300 FEE 441372 2123 6093792 2024-02-28 02:42:47.386 2024-02-28 02:42:47.386 29700 TIP 441372 18393 6093798 2024-02-28 02:43:50.233 2024-02-28 02:43:50.233 10000 FEE 441247 891 6093799 2024-02-28 02:43:50.233 2024-02-28 02:43:50.233 90000 TIP 441247 17541 6093802 2024-02-28 02:45:07.426 2024-02-28 02:45:07.426 100 FEE 441248 18274 6093803 2024-02-28 02:45:07.426 2024-02-28 02:45:07.426 900 TIP 441248 2829 6093812 2024-02-28 02:48:15.226 2024-02-28 02:48:15.226 5700 FEE 441404 1577 6093813 2024-02-28 02:48:15.226 2024-02-28 02:48:15.226 51300 TIP 441404 1490 6093820 2024-02-28 02:48:55.145 2024-02-28 02:48:55.145 1000 FEE 441408 18235 6093846 2024-02-28 03:02:39.154 2024-02-28 03:02:39.154 1000 FEE 441410 964 6093847 2024-02-28 03:02:45.507 2024-02-28 03:02:45.507 100000 FEE 441411 2056 6093849 2024-02-28 03:03:15.914 2024-02-28 03:03:15.914 0 FEE 441411 895 6093852 2024-02-28 03:04:58.087 2024-02-28 03:04:58.087 10000 FEE 441412 15326 6093888 2024-02-28 03:07:59.412 2024-02-28 03:07:59.412 10000 FEE 441137 2749 6093889 2024-02-28 03:07:59.412 2024-02-28 03:07:59.412 90000 TIP 441137 17042 6093993 2024-02-28 03:34:48.318 2024-02-28 03:34:48.318 100 FEE 441253 7668 6093994 2024-02-28 03:34:48.318 2024-02-28 03:34:48.318 900 TIP 441253 19785 6094003 2024-02-28 03:36:48.411 2024-02-28 03:36:48.411 300 FEE 441101 11821 6094004 2024-02-28 03:36:48.411 2024-02-28 03:36:48.411 2700 TIP 441101 21485 6094065 2024-02-28 03:58:24.153 2024-02-28 03:58:24.153 1000 FEE 352257 10484 6094066 2024-02-28 03:58:24.153 2024-02-28 03:58:24.153 9000 TIP 352257 9365 6094079 2024-02-28 04:01:12.639 2024-02-28 04:01:12.639 2100 FEE 441423 21624 6094080 2024-02-28 04:01:12.639 2024-02-28 04:01:12.639 18900 TIP 441423 19034 6094086 2024-02-28 04:02:46.556 2024-02-28 04:02:46.556 2100 FEE 441383 12566 6094087 2024-02-28 04:02:46.556 2024-02-28 04:02:46.556 18900 TIP 441383 716 6094089 2024-02-28 04:03:18.576 2024-02-28 04:03:18.576 1000 FEE 441435 16267 6094094 2024-02-28 04:03:55.556 2024-02-28 04:03:55.556 100 FEE 441405 7185 6094095 2024-02-28 04:03:55.556 2024-02-28 04:03:55.556 900 TIP 441405 19506 6094187 2024-02-28 04:18:52.127 2024-02-28 04:18:52.127 2100 FEE 441229 21458 6094188 2024-02-28 04:18:52.127 2024-02-28 04:18:52.127 18900 TIP 441229 20036 6094196 2024-02-28 04:20:27.307 2024-02-28 04:20:27.307 1000 FEE 441118 21136 6094197 2024-02-28 04:20:27.307 2024-02-28 04:20:27.307 9000 TIP 441118 12422 6094204 2024-02-28 04:20:28.92 2024-02-28 04:20:28.92 1000 FEE 441118 16808 6094205 2024-02-28 04:20:28.92 2024-02-28 04:20:28.92 9000 TIP 441118 19103 6094232 2024-02-28 04:20:32.136 2024-02-28 04:20:32.136 1000 FEE 441118 16154 6094233 2024-02-28 04:20:32.136 2024-02-28 04:20:32.136 9000 TIP 441118 5293 6093366 2024-02-28 02:11:44.898 2024-02-28 02:11:44.898 51300 TIP 441385 18625 6093367 2024-02-28 02:12:00.887 2024-02-28 02:12:00.887 1000 FEE 441386 9906 6093375 2024-02-28 02:13:19.335 2024-02-28 02:13:19.335 1000 FEE 441387 659 6093377 2024-02-28 02:14:47.744 2024-02-28 02:14:47.744 1000 FEE 441388 807 6093386 2024-02-28 02:16:02.267 2024-02-28 02:16:02.267 1000 FEE 441238 21036 6093387 2024-02-28 02:16:02.267 2024-02-28 02:16:02.267 9000 TIP 441238 10698 6093393 2024-02-28 02:17:00.706 2024-02-28 02:17:00.706 5700 FEE 441333 4314 6093394 2024-02-28 02:17:00.706 2024-02-28 02:17:00.706 51300 TIP 441333 9177 6093428 2024-02-28 02:19:29.409 2024-02-28 02:19:29.409 1000 FEE 441389 9920 6093429 2024-02-28 02:19:29.409 2024-02-28 02:19:29.409 9000 TIP 441389 17218 6093443 2024-02-28 02:21:24.417 2024-02-28 02:21:24.417 1000 FEE 440898 21578 6093444 2024-02-28 02:21:24.417 2024-02-28 02:21:24.417 9000 TIP 440898 909 6093458 2024-02-28 02:22:29.734 2024-02-28 02:22:29.734 5000 FEE 440590 13767 6093459 2024-02-28 02:22:29.734 2024-02-28 02:22:29.734 45000 TIP 440590 766 6093529 2024-02-28 02:24:13.457 2024-02-28 02:24:13.457 1100 FEE 441318 20745 6093530 2024-02-28 02:24:13.457 2024-02-28 02:24:13.457 9900 TIP 441318 18396 6093531 2024-02-28 02:24:13.602 2024-02-28 02:24:13.602 1100 FEE 441318 19995 6093532 2024-02-28 02:24:13.602 2024-02-28 02:24:13.602 9900 TIP 441318 4115 6093543 2024-02-28 02:24:14.398 2024-02-28 02:24:14.398 1100 FEE 441318 19096 6093544 2024-02-28 02:24:14.398 2024-02-28 02:24:14.398 9900 TIP 441318 1124 6093565 2024-02-28 02:24:36.079 2024-02-28 02:24:36.079 1000 FEE 441378 20180 6093566 2024-02-28 02:24:36.079 2024-02-28 02:24:36.079 9000 TIP 441378 5746 6093569 2024-02-28 02:24:58.114 2024-02-28 02:24:58.114 100000 FEE 441048 9166 6093570 2024-02-28 02:24:58.114 2024-02-28 02:24:58.114 900000 TIP 441048 21481 6093572 2024-02-28 02:25:14.632 2024-02-28 02:25:14.632 1000 FEE 440663 1122 6093573 2024-02-28 02:25:14.632 2024-02-28 02:25:14.632 9000 TIP 440663 683 6093602 2024-02-28 02:27:46.354 2024-02-28 02:27:46.354 15400 FEE 441333 20861 6093603 2024-02-28 02:27:46.354 2024-02-28 02:27:46.354 138600 TIP 441333 13216 6093612 2024-02-28 02:27:47.298 2024-02-28 02:27:47.298 7700 FEE 441333 10690 6093613 2024-02-28 02:27:47.298 2024-02-28 02:27:47.298 69300 TIP 441333 769 6093616 2024-02-28 02:27:57.376 2024-02-28 02:27:57.376 500 FEE 440725 831 6093617 2024-02-28 02:27:57.376 2024-02-28 02:27:57.376 4500 TIP 440725 2328 6093626 2024-02-28 02:28:03.624 2024-02-28 02:28:03.624 500 FEE 440520 9169 6093627 2024-02-28 02:28:03.624 2024-02-28 02:28:03.624 4500 TIP 440520 20840 6093637 2024-02-28 02:28:19.009 2024-02-28 02:28:19.009 3000 FEE 440725 10934 6093638 2024-02-28 02:28:19.009 2024-02-28 02:28:19.009 27000 TIP 440725 13100 6093651 2024-02-28 02:29:07.094 2024-02-28 02:29:07.094 2100 FEE 441238 18232 6093652 2024-02-28 02:29:07.094 2024-02-28 02:29:07.094 18900 TIP 441238 9985 6093653 2024-02-28 02:29:17.453 2024-02-28 02:29:17.453 2100 FEE 441238 20757 6093654 2024-02-28 02:29:17.453 2024-02-28 02:29:17.453 18900 TIP 441238 19640 6093662 2024-02-28 02:29:50.282 2024-02-28 02:29:50.282 0 FEE 441396 722 6093664 2024-02-28 02:29:54.382 2024-02-28 02:29:54.382 2000 FEE 441389 6164 6093665 2024-02-28 02:29:54.382 2024-02-28 02:29:54.382 18000 TIP 441389 21491 6093684 2024-02-28 02:32:36.534 2024-02-28 02:32:36.534 1000 FEE 441333 17162 6093685 2024-02-28 02:32:36.534 2024-02-28 02:32:36.534 9000 TIP 441333 11423 6093693 2024-02-28 02:32:53.296 2024-02-28 02:32:53.296 6900 FEE 441375 20179 6093694 2024-02-28 02:32:53.296 2024-02-28 02:32:53.296 62100 TIP 441375 5387 6093697 2024-02-28 02:33:22.079 2024-02-28 02:33:22.079 6900 FEE 441375 805 6093698 2024-02-28 02:33:22.079 2024-02-28 02:33:22.079 62100 TIP 441375 15925 6093713 2024-02-28 02:33:37.229 2024-02-28 02:33:37.229 2500 FEE 441399 8505 6093714 2024-02-28 02:33:37.229 2024-02-28 02:33:37.229 22500 TIP 441399 17091 6093757 2024-02-28 02:35:52.474 2024-02-28 02:35:52.474 0 FEE 441396 711 6093766 2024-02-28 02:40:55.93 2024-02-28 02:40:55.93 100 FEE 441402 13217 6093767 2024-02-28 02:40:55.93 2024-02-28 02:40:55.93 900 TIP 441402 16988 6093787 2024-02-28 02:42:44.019 2024-02-28 02:42:44.019 2100 FEE 441396 987 6093788 2024-02-28 02:42:44.019 2024-02-28 02:42:44.019 18900 TIP 441396 16665 6093796 2024-02-28 02:43:33.38 2024-02-28 02:43:33.38 2100 FEE 441341 11288 6093797 2024-02-28 02:43:33.38 2024-02-28 02:43:33.38 18900 TIP 441341 674 6093804 2024-02-28 02:45:17.33 2024-02-28 02:45:17.33 10000 FEE 441238 4322 6093805 2024-02-28 02:45:17.33 2024-02-28 02:45:17.33 90000 TIP 441238 1046 6093809 2024-02-28 02:47:21.736 2024-02-28 02:47:21.736 1000 FEE 441407 20301 6093372 2024-02-28 02:13:04.533 2024-02-28 02:13:04.533 1000 STREAM 141924 10608 6093563 2024-02-28 02:24:21.834 2024-02-28 02:24:21.834 1100 FEE 441169 16356 6093564 2024-02-28 02:24:21.834 2024-02-28 02:24:21.834 9900 TIP 441169 20058 6093577 2024-02-28 02:26:34.013 2024-02-28 02:26:34.013 2500 FEE 441360 12346 6093578 2024-02-28 02:26:34.013 2024-02-28 02:26:34.013 22500 TIP 441360 16747 6093588 2024-02-28 02:27:42.94 2024-02-28 02:27:42.94 7700 FEE 441238 19021 6093589 2024-02-28 02:27:42.94 2024-02-28 02:27:42.94 69300 TIP 441238 807 6093592 2024-02-28 02:27:43.164 2024-02-28 02:27:43.164 7700 FEE 441238 19966 6093593 2024-02-28 02:27:43.164 2024-02-28 02:27:43.164 69300 TIP 441238 6229 6093594 2024-02-28 02:27:43.247 2024-02-28 02:27:43.247 7700 FEE 441238 18909 6093595 2024-02-28 02:27:43.247 2024-02-28 02:27:43.247 69300 TIP 441238 8059 6093598 2024-02-28 02:27:45.855 2024-02-28 02:27:45.855 7700 FEE 441333 16424 6093599 2024-02-28 02:27:45.855 2024-02-28 02:27:45.855 69300 TIP 441333 4650 6093614 2024-02-28 02:27:47.384 2024-02-28 02:27:47.384 7700 FEE 441333 18539 6093615 2024-02-28 02:27:47.384 2024-02-28 02:27:47.384 69300 TIP 441333 18138 6093629 2024-02-28 02:28:07.593 2024-02-28 02:28:07.593 500 FEE 440386 766 6093630 2024-02-28 02:28:07.593 2024-02-28 02:28:07.593 4500 TIP 440386 5036 6093635 2024-02-28 02:28:15.42 2024-02-28 02:28:15.42 500 FEE 441077 654 6093636 2024-02-28 02:28:15.42 2024-02-28 02:28:15.42 4500 TIP 441077 17714 6093643 2024-02-28 02:28:50.241 2024-02-28 02:28:50.241 500 FEE 441363 9421 6093644 2024-02-28 02:28:50.241 2024-02-28 02:28:50.241 4500 TIP 441363 18180 6093655 2024-02-28 02:29:17.838 2024-02-28 02:29:17.838 500 FEE 441378 7809 6093656 2024-02-28 02:29:17.838 2024-02-28 02:29:17.838 4500 TIP 441378 6164 6093669 2024-02-28 02:30:09.872 2024-02-28 02:30:09.872 500 FEE 441381 20502 6093670 2024-02-28 02:30:09.872 2024-02-28 02:30:09.872 4500 TIP 441381 21387 6093696 2024-02-28 02:33:16.073 2024-02-28 02:33:16.073 0 FEE 441400 827 6093711 2024-02-28 02:33:36.726 2024-02-28 02:33:36.726 2500 FEE 441399 651 6093712 2024-02-28 02:33:36.726 2024-02-28 02:33:36.726 22500 TIP 441399 20636 6093744 2024-02-28 02:34:17.814 2024-02-28 02:34:17.814 800 FEE 441077 644 6093745 2024-02-28 02:34:17.814 2024-02-28 02:34:17.814 7200 TIP 441077 9084 6093755 2024-02-28 02:35:38.184 2024-02-28 02:35:38.184 10100 FEE 441238 9169 6093756 2024-02-28 02:35:38.184 2024-02-28 02:35:38.184 90900 TIP 441238 4292 6093772 2024-02-28 02:40:57.78 2024-02-28 02:40:57.78 900 FEE 441383 19909 6093773 2024-02-28 02:40:57.78 2024-02-28 02:40:57.78 8100 TIP 441383 4502 6093777 2024-02-28 02:41:34.216 2024-02-28 02:41:34.216 1000 FEE 441403 20272 6093778 2024-02-28 02:41:36.293 2024-02-28 02:41:36.293 1000 FEE 441333 671 6093779 2024-02-28 02:41:36.293 2024-02-28 02:41:36.293 9000 TIP 441333 17713 6093780 2024-02-28 02:41:36.421 2024-02-28 02:41:36.421 1000 FEE 441333 10554 6093781 2024-02-28 02:41:36.421 2024-02-28 02:41:36.421 9000 TIP 441333 19329 6093793 2024-02-28 02:42:51.918 2024-02-28 02:42:51.918 2100 FEE 441333 9364 6093794 2024-02-28 02:42:51.918 2024-02-28 02:42:51.918 18900 TIP 441333 19352 6093829 2024-02-28 02:54:33.933 2024-02-28 02:54:33.933 100 FEE 441407 1726 6093830 2024-02-28 02:54:33.933 2024-02-28 02:54:33.933 900 TIP 441407 4259 6093666 2024-02-28 02:30:04.615 2024-02-28 02:30:04.615 1000 STREAM 141924 18717 6093716 2024-02-28 02:33:37.381 2024-02-28 02:33:37.381 22500 TIP 441399 18219 6093806 2024-02-28 02:45:44.13 2024-02-28 02:45:44.13 1000 POLL 441333 19864 6093824 2024-02-28 02:51:22.41 2024-02-28 02:51:22.41 100 FEE 441372 18601 6093825 2024-02-28 02:51:22.41 2024-02-28 02:51:22.41 900 TIP 441372 9669 6093832 2024-02-28 02:55:29.202 2024-02-28 02:55:29.202 10000 FEE 441409 2206 6093890 2024-02-28 03:07:59.636 2024-02-28 03:07:59.636 10000 FEE 441137 902 6093891 2024-02-28 03:07:59.636 2024-02-28 03:07:59.636 90000 TIP 441137 10393 6093907 2024-02-28 03:10:38.794 2024-02-28 03:10:38.794 10000 FEE 441400 21088 6093908 2024-02-28 03:10:38.794 2024-02-28 03:10:38.794 90000 TIP 441400 12976 6093918 2024-02-28 03:12:41.986 2024-02-28 03:12:41.986 1000 FEE 441416 16154 6093931 2024-02-28 03:19:50.377 2024-02-28 03:19:50.377 1000 FEE 441418 1478 6093945 2024-02-28 03:21:47.886 2024-02-28 03:21:47.886 1000 POLL 441333 831 6093948 2024-02-28 03:23:00.705 2024-02-28 03:23:00.705 0 FEE 441420 21249 6093950 2024-02-28 03:23:37.934 2024-02-28 03:23:37.934 1000 POLL 441333 9378 6093955 2024-02-28 03:26:30.068 2024-02-28 03:26:30.068 1000 POLL 441054 8569 6093962 2024-02-28 03:29:20.977 2024-02-28 03:29:20.977 1000 FEE 441423 20377 6093998 2024-02-28 03:35:58.509 2024-02-28 03:35:58.509 1000 FEE 441426 1772 6094036 2024-02-28 03:47:36.139 2024-02-28 03:47:36.139 1000 FEE 441429 20811 6094038 2024-02-28 03:48:47.576 2024-02-28 03:48:47.576 1000 FEE 439791 20713 6094039 2024-02-28 03:48:47.576 2024-02-28 03:48:47.576 9000 TIP 439791 21463 6094061 2024-02-28 03:58:23.413 2024-02-28 03:58:23.413 1000 FEE 352257 9171 6094062 2024-02-28 03:58:23.413 2024-02-28 03:58:23.413 9000 TIP 352257 17091 6094104 2024-02-28 04:05:59.778 2024-02-28 04:05:59.778 100 FEE 441383 21303 6094105 2024-02-28 04:05:59.778 2024-02-28 04:05:59.778 900 TIP 441383 951 6094107 2024-02-28 04:06:03.196 2024-02-28 04:06:03.196 100 FEE 441375 18500 6094108 2024-02-28 04:06:03.196 2024-02-28 04:06:03.196 900 TIP 441375 14225 6094137 2024-02-28 04:16:34.925 2024-02-28 04:16:34.925 100000 FEE 441137 11073 6094138 2024-02-28 04:16:34.925 2024-02-28 04:16:34.925 900000 TIP 441137 20102 6094149 2024-02-28 04:17:45.574 2024-02-28 04:17:45.574 1000 FEE 441107 985 6094150 2024-02-28 04:17:45.574 2024-02-28 04:17:45.574 9000 TIP 441107 18897 6094167 2024-02-28 04:17:48.865 2024-02-28 04:17:48.865 1000 FEE 441107 20231 6094168 2024-02-28 04:17:48.865 2024-02-28 04:17:48.865 9000 TIP 441107 16834 6094181 2024-02-28 04:17:50.58 2024-02-28 04:17:50.58 1000 FEE 441107 21091 6094182 2024-02-28 04:17:50.58 2024-02-28 04:17:50.58 9000 TIP 441107 20897 6094184 2024-02-28 04:18:10.925 2024-02-28 04:18:10.925 0 FEE 441441 21119 6094214 2024-02-28 04:20:30.497 2024-02-28 04:20:30.497 1000 FEE 441118 8385 6094215 2024-02-28 04:20:30.497 2024-02-28 04:20:30.497 9000 TIP 441118 20490 6094228 2024-02-28 04:20:31.759 2024-02-28 04:20:31.759 1000 FEE 441118 17713 6094229 2024-02-28 04:20:31.759 2024-02-28 04:20:31.759 9000 TIP 441118 19018 6094238 2024-02-28 04:20:33.417 2024-02-28 04:20:33.417 1000 FEE 441118 20059 6094239 2024-02-28 04:20:33.417 2024-02-28 04:20:33.417 9000 TIP 441118 691 6094274 2024-02-28 04:20:37.346 2024-02-28 04:20:37.346 1000 FEE 441118 14651 6094275 2024-02-28 04:20:37.346 2024-02-28 04:20:37.346 9000 TIP 441118 12218 6094312 2024-02-28 04:20:41.589 2024-02-28 04:20:41.589 1000 FEE 441118 5825 6094313 2024-02-28 04:20:41.589 2024-02-28 04:20:41.589 9000 TIP 441118 18828 6094316 2024-02-28 04:20:42.408 2024-02-28 04:20:42.408 1000 FEE 441118 19512 6094317 2024-02-28 04:20:42.408 2024-02-28 04:20:42.408 9000 TIP 441118 18101 6094342 2024-02-28 04:21:40.374 2024-02-28 04:21:40.374 1000 FEE 440321 17275 6094343 2024-02-28 04:21:40.374 2024-02-28 04:21:40.374 9000 TIP 440321 14122 6094344 2024-02-28 04:21:40.817 2024-02-28 04:21:40.817 1000 FEE 440321 763 6094345 2024-02-28 04:21:40.817 2024-02-28 04:21:40.817 9000 TIP 440321 985 6094366 2024-02-28 04:21:45.745 2024-02-28 04:21:45.745 1000 FEE 440321 18769 6094367 2024-02-28 04:21:45.745 2024-02-28 04:21:45.745 9000 TIP 440321 11996 6094370 2024-02-28 04:21:46.54 2024-02-28 04:21:46.54 1000 FEE 440321 16842 6094371 2024-02-28 04:21:46.54 2024-02-28 04:21:46.54 9000 TIP 440321 13348 6094384 2024-02-28 04:21:49.125 2024-02-28 04:21:49.125 1000 FEE 440321 16594 6094385 2024-02-28 04:21:49.125 2024-02-28 04:21:49.125 9000 TIP 440321 20062 6094394 2024-02-28 04:22:23.675 2024-02-28 04:22:23.675 1000 FEE 441419 1122 6094395 2024-02-28 04:22:23.675 2024-02-28 04:22:23.675 9000 TIP 441419 1571 6094404 2024-02-28 04:24:27.424 2024-02-28 04:24:27.424 10000 FEE 441448 2327 6094405 2024-02-28 04:24:27.424 2024-02-28 04:24:27.424 90000 TIP 441448 17148 6094423 2024-02-28 04:31:28.783 2024-02-28 04:31:28.783 1000 FEE 441452 19154 6094429 2024-02-28 04:32:07.89 2024-02-28 04:32:07.89 3000 FEE 441193 9169 6094430 2024-02-28 04:32:07.89 2024-02-28 04:32:07.89 27000 TIP 441193 10638 6094435 2024-02-28 04:32:24.941 2024-02-28 04:32:24.941 3000 FEE 441339 15521 6094436 2024-02-28 04:32:24.941 2024-02-28 04:32:24.941 27000 TIP 441339 10016 6094439 2024-02-28 04:32:38.722 2024-02-28 04:32:38.722 2100 FEE 441372 683 6094440 2024-02-28 04:32:38.722 2024-02-28 04:32:38.722 18900 TIP 441372 9166 6094453 2024-02-28 04:32:42.167 2024-02-28 04:32:42.167 2100 FEE 441372 9906 6094454 2024-02-28 04:32:42.167 2024-02-28 04:32:42.167 18900 TIP 441372 6191 6094478 2024-02-28 04:33:29.961 2024-02-28 04:33:29.961 3000 FEE 441449 4035 6094479 2024-02-28 04:33:29.961 2024-02-28 04:33:29.961 27000 TIP 441449 21079 6094503 2024-02-28 04:39:59.12 2024-02-28 04:39:59.12 1000 FEE 441457 14295 6094524 2024-02-28 04:44:55.575 2024-02-28 04:44:55.575 11100 FEE 441460 12175 6094525 2024-02-28 04:44:55.575 2024-02-28 04:44:55.575 99900 TIP 441460 11329 6094526 2024-02-28 04:44:56.611 2024-02-28 04:44:56.611 5000 FEE 441247 19662 6094527 2024-02-28 04:44:56.611 2024-02-28 04:44:56.611 45000 TIP 441247 20026 6094551 2024-02-28 04:48:56.367 2024-02-28 04:48:56.367 1000 FEE 441466 1003 6094585 2024-02-28 05:03:49.084 2024-02-28 05:03:49.084 800 FEE 440923 10638 6094586 2024-02-28 05:03:49.084 2024-02-28 05:03:49.084 7200 TIP 440923 17050 6094600 2024-02-28 05:09:08.642 2024-02-28 05:09:08.642 1600 FEE 440501 1394 6094601 2024-02-28 05:09:08.642 2024-02-28 05:09:08.642 14400 TIP 440501 13406 6094606 2024-02-28 05:11:23.805 2024-02-28 05:11:23.805 1000 POLL 441333 18139 6094625 2024-02-28 05:17:40.082 2024-02-28 05:17:40.082 0 FEE 85385 2789 6094634 2024-02-28 05:21:43.031 2024-02-28 05:21:43.031 100000 FEE 441478 15100 6094665 2024-02-28 05:34:27.737 2024-02-28 05:34:27.737 1000 FEE 441485 3709 6094680 2024-02-28 05:39:34.74 2024-02-28 05:39:34.74 1000 FEE 441481 9906 6094681 2024-02-28 05:39:34.74 2024-02-28 05:39:34.74 9000 TIP 441481 19930 6094690 2024-02-28 05:40:56.115 2024-02-28 05:40:56.115 100 FEE 441480 18517 6094691 2024-02-28 05:40:56.115 2024-02-28 05:40:56.115 900 TIP 441480 20596 6094694 2024-02-28 05:41:06.308 2024-02-28 05:41:06.308 100 FEE 441479 675 6094695 2024-02-28 05:41:06.308 2024-02-28 05:41:06.308 900 TIP 441479 10096 6094711 2024-02-28 05:43:08.846 2024-02-28 05:43:08.846 100 FEE 437808 1745 6093746 2024-02-28 02:34:18.01 2024-02-28 02:34:18.01 800 FEE 441077 3400 6093747 2024-02-28 02:34:18.01 2024-02-28 02:34:18.01 7200 TIP 441077 976 6093785 2024-02-28 02:42:31.53 2024-02-28 02:42:31.53 800 FEE 441135 20963 6093786 2024-02-28 02:42:31.53 2024-02-28 02:42:31.53 7200 TIP 441135 13398 6093789 2024-02-28 02:42:46.014 2024-02-28 02:42:46.014 2100 FEE 441333 2233 6093790 2024-02-28 02:42:46.014 2024-02-28 02:42:46.014 18900 TIP 441333 13878 6093816 2024-02-28 02:48:17.81 2024-02-28 02:48:17.81 5700 FEE 441404 880 6093817 2024-02-28 02:48:17.81 2024-02-28 02:48:17.81 51300 TIP 441404 21239 6093869 2024-02-28 03:07:00.356 2024-02-28 03:07:00.356 10000 FEE 440863 993 6093870 2024-02-28 03:07:00.356 2024-02-28 03:07:00.356 90000 TIP 440863 20891 6093871 2024-02-28 03:07:00.618 2024-02-28 03:07:00.618 10000 FEE 440863 10352 6093872 2024-02-28 03:07:00.618 2024-02-28 03:07:00.618 90000 TIP 440863 14941 6093898 2024-02-28 03:08:15.544 2024-02-28 03:08:15.544 10000 FEE 441170 21588 6093899 2024-02-28 03:08:15.544 2024-02-28 03:08:15.544 90000 TIP 441170 15052 6093932 2024-02-28 03:19:51.501 2024-02-28 03:19:51.501 1000 FEE 441405 9920 6093933 2024-02-28 03:19:51.501 2024-02-28 03:19:51.501 9000 TIP 441405 21577 6093934 2024-02-28 03:19:51.76 2024-02-28 03:19:51.76 1000 FEE 441405 15521 6093935 2024-02-28 03:19:51.76 2024-02-28 03:19:51.76 9000 TIP 441405 16341 6093941 2024-02-28 03:20:39.123 2024-02-28 03:20:39.123 1000 FEE 441419 21393 6093985 2024-02-28 03:34:08.25 2024-02-28 03:34:08.25 1000 FEE 441372 17446 6093986 2024-02-28 03:34:08.25 2024-02-28 03:34:08.25 9000 TIP 441372 14195 6093989 2024-02-28 03:34:08.612 2024-02-28 03:34:08.612 1000 FEE 441372 21271 6093990 2024-02-28 03:34:08.612 2024-02-28 03:34:08.612 9000 TIP 441372 6160 6093991 2024-02-28 03:34:08.814 2024-02-28 03:34:08.814 1000 FEE 441372 831 6093992 2024-02-28 03:34:08.814 2024-02-28 03:34:08.814 9000 TIP 441372 20606 6094001 2024-02-28 03:36:40.969 2024-02-28 03:36:40.969 3100 FEE 441333 21218 6094002 2024-02-28 03:36:40.969 2024-02-28 03:36:40.969 27900 TIP 441333 16638 6094011 2024-02-28 03:36:49.48 2024-02-28 03:36:49.48 600 FEE 441101 11898 6094012 2024-02-28 03:36:49.48 2024-02-28 03:36:49.48 5400 TIP 441101 16250 6094013 2024-02-28 03:36:49.663 2024-02-28 03:36:49.663 300 FEE 441101 21361 6094014 2024-02-28 03:36:49.663 2024-02-28 03:36:49.663 2700 TIP 441101 17091 6094040 2024-02-28 03:48:49.12 2024-02-28 03:48:49.12 1000 FEE 439701 9345 6094041 2024-02-28 03:48:49.12 2024-02-28 03:48:49.12 9000 TIP 439701 634 6094050 2024-02-28 03:52:38.401 2024-02-28 03:52:38.401 1000 FEE 441431 15200 6094059 2024-02-28 03:57:57.162 2024-02-28 03:57:57.162 0 FEE 441432 18630 6094067 2024-02-28 03:58:24.432 2024-02-28 03:58:24.432 1000 FEE 352257 5809 6094068 2024-02-28 03:58:24.432 2024-02-28 03:58:24.432 9000 TIP 352257 19094 6094069 2024-02-28 03:58:25.331 2024-02-28 03:58:25.331 1000 FEE 352257 725 6094070 2024-02-28 03:58:25.331 2024-02-28 03:58:25.331 9000 TIP 352257 7395 6094076 2024-02-28 04:00:34.074 2024-02-28 04:00:34.074 0 FEE 441433 14465 6094092 2024-02-28 04:03:26.395 2024-02-28 04:03:26.395 2100 FEE 441269 16638 6094093 2024-02-28 04:03:26.395 2024-02-28 04:03:26.395 18900 TIP 441269 16950 6094098 2024-02-28 04:04:29.263 2024-02-28 04:04:29.263 1000 FEE 441437 21509 6094124 2024-02-28 04:09:03.86 2024-02-28 04:09:03.86 100000 FEE 441439 14225 6094175 2024-02-28 04:17:49.834 2024-02-28 04:17:49.834 1000 FEE 441107 6515 6094176 2024-02-28 04:17:49.834 2024-02-28 04:17:49.834 9000 TIP 441107 21040 6094177 2024-02-28 04:17:49.997 2024-02-28 04:17:49.997 1000 FEE 441107 624 6094178 2024-02-28 04:17:49.997 2024-02-28 04:17:49.997 9000 TIP 441107 17103 6094192 2024-02-28 04:20:26.528 2024-02-28 04:20:26.528 1000 FEE 441118 10693 6094193 2024-02-28 04:20:26.528 2024-02-28 04:20:26.528 9000 TIP 441118 21356 6094200 2024-02-28 04:20:28.208 2024-02-28 04:20:28.208 1000 FEE 441118 722 6094201 2024-02-28 04:20:28.208 2024-02-28 04:20:28.208 9000 TIP 441118 1039 6094240 2024-02-28 04:20:33.614 2024-02-28 04:20:33.614 1000 FEE 441118 18865 6094241 2024-02-28 04:20:33.614 2024-02-28 04:20:33.614 9000 TIP 441118 9552 6094242 2024-02-28 04:20:33.782 2024-02-28 04:20:33.782 1000 FEE 441118 17673 6094243 2024-02-28 04:20:33.782 2024-02-28 04:20:33.782 9000 TIP 441118 1213 6094330 2024-02-28 04:20:44.962 2024-02-28 04:20:44.962 1000 FEE 441118 16665 6094331 2024-02-28 04:20:44.962 2024-02-28 04:20:44.962 9000 TIP 441118 19911 6094352 2024-02-28 04:21:42.65 2024-02-28 04:21:42.65 1000 FEE 440321 5017 6094353 2024-02-28 04:21:42.65 2024-02-28 04:21:42.65 9000 TIP 440321 19541 6094376 2024-02-28 04:21:47.442 2024-02-28 04:21:47.442 1000 FEE 440321 17446 6094377 2024-02-28 04:21:47.442 2024-02-28 04:21:47.442 9000 TIP 440321 15703 6094399 2024-02-28 04:23:13.45 2024-02-28 04:23:13.45 1000 FEE 441447 17331 6094400 2024-02-28 04:23:26.488 2024-02-28 04:23:26.488 1000 FEE 441448 7395 6094412 2024-02-28 04:26:34.651 2024-02-28 04:26:34.651 1000 FEE 441450 17519 6094424 2024-02-28 04:31:31.592 2024-02-28 04:31:31.592 100 FEE 437667 1326 6094425 2024-02-28 04:31:31.592 2024-02-28 04:31:31.592 900 TIP 437667 16769 6094441 2024-02-28 04:32:38.954 2024-02-28 04:32:38.954 2100 FEE 441372 14515 6094442 2024-02-28 04:32:38.954 2024-02-28 04:32:38.954 18900 TIP 441372 4064 6094445 2024-02-28 04:32:39.433 2024-02-28 04:32:39.433 2100 FEE 441372 9078 6094446 2024-02-28 04:32:39.433 2024-02-28 04:32:39.433 18900 TIP 441372 1713 6094457 2024-02-28 04:32:53.617 2024-02-28 04:32:53.617 2100 FEE 441318 15941 6094458 2024-02-28 04:32:53.617 2024-02-28 04:32:53.617 18900 TIP 441318 21588 6094463 2024-02-28 04:32:54.678 2024-02-28 04:32:54.678 2100 FEE 441318 20704 6094464 2024-02-28 04:32:54.678 2024-02-28 04:32:54.678 18900 TIP 441318 21494 6094491 2024-02-28 04:37:03.344 2024-02-28 04:37:03.344 1000 FEE 441455 17046 6094508 2024-02-28 04:41:36.563 2024-02-28 04:41:36.563 1000 FEE 441445 20280 6094509 2024-02-28 04:41:36.563 2024-02-28 04:41:36.563 9000 TIP 441445 8400 6094518 2024-02-28 04:43:44.106 2024-02-28 04:43:44.106 1000 FEE 441403 18774 6094519 2024-02-28 04:43:44.106 2024-02-28 04:43:44.106 9000 TIP 441403 1713 6094522 2024-02-28 04:44:45.263 2024-02-28 04:44:45.263 5000 FEE 441333 10359 6094523 2024-02-28 04:44:45.263 2024-02-28 04:44:45.263 45000 TIP 441333 2513 6094549 2024-02-28 04:48:27.41 2024-02-28 04:48:27.41 100 FEE 441439 5757 6094550 2024-02-28 04:48:27.41 2024-02-28 04:48:27.41 900 TIP 441439 3979 6094571 2024-02-28 04:57:20.641 2024-02-28 04:57:20.641 1000 FEE 441469 669 6094588 2024-02-28 05:04:14.971 2024-02-28 05:04:14.971 1000 FEE 441474 20133 6094638 2024-02-28 05:23:32.852 2024-02-28 05:23:32.852 10000 FEE 441480 17212 6094668 2024-02-28 05:36:21.164 2024-02-28 05:36:21.164 1000 FEE 441486 1493 6094683 2024-02-28 05:40:13.231 2024-02-28 05:40:13.231 1000 FEE 441397 18468 6093821 2024-02-28 02:49:03.658 2024-02-28 02:49:03.658 1000 STREAM 141924 21349 6093822 2024-02-28 02:50:03.691 2024-02-28 02:50:03.691 1000 STREAM 141924 9450 6093827 2024-02-28 02:53:03.679 2024-02-28 02:53:03.679 1000 STREAM 141924 19535 6093831 2024-02-28 02:55:03.698 2024-02-28 02:55:03.698 1000 STREAM 141924 18016 6093835 2024-02-28 02:56:03.707 2024-02-28 02:56:03.707 1000 STREAM 141924 1549 6093836 2024-02-28 02:57:03.71 2024-02-28 02:57:03.71 1000 STREAM 141924 3440 6093840 2024-02-28 02:59:03.713 2024-02-28 02:59:03.713 1000 STREAM 141924 21164 6093841 2024-02-28 03:00:03.756 2024-02-28 03:00:03.756 1000 STREAM 141924 670 6093842 2024-02-28 03:01:03.728 2024-02-28 03:01:03.728 1000 STREAM 141924 15510 6093848 2024-02-28 03:03:03.726 2024-02-28 03:03:03.726 1000 STREAM 141924 15239 6093850 2024-02-28 03:04:04.671 2024-02-28 03:04:04.671 1000 STREAM 141924 2583 6093853 2024-02-28 03:05:04.678 2024-02-28 03:05:04.678 1000 STREAM 141924 19507 6093893 2024-02-28 03:08:04.693 2024-02-28 03:08:04.693 1000 STREAM 141924 644 6093904 2024-02-28 03:09:04.705 2024-02-28 03:09:04.705 1000 STREAM 141924 2774 6093905 2024-02-28 03:10:04.726 2024-02-28 03:10:04.726 1000 STREAM 141924 675 6093909 2024-02-28 03:11:04.712 2024-02-28 03:11:04.712 1000 STREAM 141924 21048 6093910 2024-02-28 03:12:04.717 2024-02-28 03:12:04.717 1000 STREAM 141924 21389 6093920 2024-02-28 03:14:04.739 2024-02-28 03:14:04.739 1000 STREAM 141924 15536 6093926 2024-02-28 03:17:02.767 2024-02-28 03:17:02.767 1000 STREAM 141924 17201 6093927 2024-02-28 03:18:04.766 2024-02-28 03:18:04.766 1000 STREAM 141924 2338 6093930 2024-02-28 03:19:02.765 2024-02-28 03:19:02.765 1000 STREAM 141924 2213 6093946 2024-02-28 03:22:02.797 2024-02-28 03:22:02.797 1000 STREAM 141924 21457 6093949 2024-02-28 03:23:02.79 2024-02-28 03:23:02.79 1000 STREAM 141924 672 6093951 2024-02-28 03:24:02.795 2024-02-28 03:24:02.795 1000 STREAM 141924 14255 6093956 2024-02-28 03:27:02.808 2024-02-28 03:27:02.808 1000 STREAM 141924 21138 6093961 2024-02-28 03:29:02.818 2024-02-28 03:29:02.818 1000 STREAM 141924 20502 6093999 2024-02-28 03:36:02.835 2024-02-28 03:36:02.835 1000 STREAM 141924 21131 6094023 2024-02-28 03:37:02.845 2024-02-28 03:37:02.845 1000 STREAM 141924 698 6094025 2024-02-28 03:38:02.846 2024-02-28 03:38:02.846 1000 STREAM 141924 1007 6094026 2024-02-28 03:39:02.842 2024-02-28 03:39:02.842 1000 STREAM 141924 20187 6094027 2024-02-28 03:40:02.89 2024-02-28 03:40:02.89 1000 STREAM 141924 9985 6094029 2024-02-28 03:41:04.85 2024-02-28 03:41:04.85 1000 STREAM 141924 10549 6094031 2024-02-28 03:43:02.847 2024-02-28 03:43:02.847 1000 STREAM 141924 20109 6094033 2024-02-28 03:45:02.84 2024-02-28 03:45:02.84 1000 STREAM 141924 1836 6094037 2024-02-28 03:48:02.839 2024-02-28 03:48:02.839 1000 STREAM 141924 21457 6094042 2024-02-28 03:49:02.85 2024-02-28 03:49:02.85 1000 STREAM 141924 1120 6094045 2024-02-28 03:50:02.862 2024-02-28 03:50:02.862 1000 STREAM 141924 21441 6094048 2024-02-28 03:52:02.858 2024-02-28 03:52:02.858 1000 STREAM 141924 18836 6094054 2024-02-28 03:54:02.872 2024-02-28 03:54:02.872 1000 STREAM 141924 16309 6094055 2024-02-28 03:55:02.867 2024-02-28 03:55:02.867 1000 STREAM 141924 20717 6094056 2024-02-28 03:56:02.864 2024-02-28 03:56:02.864 1000 STREAM 141924 21379 6093851 2024-02-28 03:04:45.018 2024-02-28 03:04:45.018 0 FEE 441411 18476 6093855 2024-02-28 03:05:32.988 2024-02-28 03:05:32.988 0 FEE 441411 9334 6093867 2024-02-28 03:07:00.069 2024-02-28 03:07:00.069 10000 FEE 440863 20264 6093868 2024-02-28 03:07:00.069 2024-02-28 03:07:00.069 90000 TIP 440863 19878 6093911 2024-02-28 03:12:21.615 2024-02-28 03:12:21.615 1000 FEE 441415 827 6093922 2024-02-28 03:15:56.357 2024-02-28 03:15:56.357 3000 FEE 441345 5703 6093923 2024-02-28 03:15:56.357 2024-02-28 03:15:56.357 27000 TIP 441345 14791 6093925 2024-02-28 03:17:02.593 2024-02-28 03:17:02.593 1000 FEE 441417 6616 6093987 2024-02-28 03:34:08.418 2024-02-28 03:34:08.418 1000 FEE 441372 18314 6093988 2024-02-28 03:34:08.418 2024-02-28 03:34:08.418 9000 TIP 441372 5444 6094005 2024-02-28 03:36:48.456 2024-02-28 03:36:48.456 300 FEE 441101 2703 6094006 2024-02-28 03:36:48.456 2024-02-28 03:36:48.456 2700 TIP 441101 1468 6094009 2024-02-28 03:36:48.836 2024-02-28 03:36:48.836 300 FEE 441101 4574 6094010 2024-02-28 03:36:48.836 2024-02-28 03:36:48.836 2700 TIP 441101 19243 6094019 2024-02-28 03:36:51.65 2024-02-28 03:36:51.65 300 FEE 441101 16653 6094020 2024-02-28 03:36:51.65 2024-02-28 03:36:51.65 2700 TIP 441101 19615 6094021 2024-02-28 03:36:51.974 2024-02-28 03:36:51.974 300 FEE 441101 20106 6094022 2024-02-28 03:36:51.974 2024-02-28 03:36:51.974 2700 TIP 441101 7847 6094049 2024-02-28 03:52:38.382 2024-02-28 03:52:38.382 1000 FEE 441430 20481 6094051 2024-02-28 03:52:45.407 2024-02-28 03:52:45.407 2100 FEE 440523 2942 6094052 2024-02-28 03:52:45.407 2024-02-28 03:52:45.407 18900 TIP 440523 20157 6094073 2024-02-28 03:59:59.812 2024-02-28 03:59:59.812 0 FEE 441433 16788 6094145 2024-02-28 04:17:45.224 2024-02-28 04:17:45.224 1000 FEE 441107 651 6094146 2024-02-28 04:17:45.224 2024-02-28 04:17:45.224 9000 TIP 441107 9200 6094147 2024-02-28 04:17:45.414 2024-02-28 04:17:45.414 1000 FEE 441107 17514 6094148 2024-02-28 04:17:45.414 2024-02-28 04:17:45.414 9000 TIP 441107 1401 6094169 2024-02-28 04:17:49.196 2024-02-28 04:17:49.196 1000 FEE 441107 19378 6094170 2024-02-28 04:17:49.196 2024-02-28 04:17:49.196 9000 TIP 441107 16282 6094173 2024-02-28 04:17:49.62 2024-02-28 04:17:49.62 1000 FEE 441107 14651 6094174 2024-02-28 04:17:49.62 2024-02-28 04:17:49.62 9000 TIP 441107 17568 6094191 2024-02-28 04:20:16.987 2024-02-28 04:20:16.987 1000 FEE 441444 5173 6094208 2024-02-28 04:20:29.84 2024-02-28 04:20:29.84 1000 FEE 441118 19043 6094209 2024-02-28 04:20:29.84 2024-02-28 04:20:29.84 9000 TIP 441118 1609 6094222 2024-02-28 04:20:31.212 2024-02-28 04:20:31.212 1000 FEE 441118 18705 6094223 2024-02-28 04:20:31.212 2024-02-28 04:20:31.212 9000 TIP 441118 20924 6094226 2024-02-28 04:20:31.572 2024-02-28 04:20:31.572 1000 FEE 441118 1141 6094227 2024-02-28 04:20:31.572 2024-02-28 04:20:31.572 9000 TIP 441118 21320 6094254 2024-02-28 04:20:35.022 2024-02-28 04:20:35.022 1000 FEE 441118 13132 6094255 2024-02-28 04:20:35.022 2024-02-28 04:20:35.022 9000 TIP 441118 3544 6094256 2024-02-28 04:20:35.195 2024-02-28 04:20:35.195 1000 FEE 441118 3396 6094257 2024-02-28 04:20:35.195 2024-02-28 04:20:35.195 9000 TIP 441118 10519 6094318 2024-02-28 04:20:42.799 2024-02-28 04:20:42.799 1000 FEE 441118 14688 6094319 2024-02-28 04:20:42.799 2024-02-28 04:20:42.799 9000 TIP 441118 11938 6094350 2024-02-28 04:21:42.175 2024-02-28 04:21:42.175 1000 FEE 440321 642 6094351 2024-02-28 04:21:42.175 2024-02-28 04:21:42.175 9000 TIP 440321 19583 6094358 2024-02-28 04:21:43.953 2024-02-28 04:21:43.953 1000 FEE 440321 10056 6094359 2024-02-28 04:21:43.953 2024-02-28 04:21:43.953 9000 TIP 440321 9184 6094368 2024-02-28 04:21:46.151 2024-02-28 04:21:46.151 1000 FEE 440321 8080 6094369 2024-02-28 04:21:46.151 2024-02-28 04:21:46.151 9000 TIP 440321 21296 6094386 2024-02-28 04:21:49.646 2024-02-28 04:21:49.646 1000 FEE 441372 20231 6094387 2024-02-28 04:21:49.646 2024-02-28 04:21:49.646 9000 TIP 441372 9833 6094409 2024-02-28 04:25:47.217 2024-02-28 04:25:47.217 1000 POLL 441333 652 6094419 2024-02-28 04:30:53.449 2024-02-28 04:30:53.449 100 FEE 439970 15226 6094420 2024-02-28 04:30:53.449 2024-02-28 04:30:53.449 900 TIP 439970 965 6094461 2024-02-28 04:32:54.498 2024-02-28 04:32:54.498 2100 FEE 441318 20205 6094462 2024-02-28 04:32:54.498 2024-02-28 04:32:54.498 18900 TIP 441318 7960 6094465 2024-02-28 04:33:02.552 2024-02-28 04:33:02.552 3000 FEE 441169 15732 6094466 2024-02-28 04:33:02.552 2024-02-28 04:33:02.552 27000 TIP 441169 1647 6094468 2024-02-28 04:33:17.736 2024-02-28 04:33:17.736 2700 FEE 440663 16052 6094469 2024-02-28 04:33:17.736 2024-02-28 04:33:17.736 24300 TIP 440663 1814 6094488 2024-02-28 04:36:37.76 2024-02-28 04:36:37.76 1000 FEE 441454 18188 6094510 2024-02-28 04:41:54.102 2024-02-28 04:41:54.102 1000 FEE 441458 1198 6094529 2024-02-28 04:45:18.969 2024-02-28 04:45:18.969 1000 FEE 441461 13076 6094567 2024-02-28 04:55:12.586 2024-02-28 04:55:12.586 100 FEE 441436 21060 6094568 2024-02-28 04:55:12.586 2024-02-28 04:55:12.586 900 TIP 441436 17535 6094604 2024-02-28 05:11:10.629 2024-02-28 05:11:10.629 10000 FEE 441238 9669 6094605 2024-02-28 05:11:10.629 2024-02-28 05:11:10.629 90000 TIP 441238 680 6094620 2024-02-28 05:15:10.124 2024-02-28 05:15:10.124 10000 FEE 441476 18528 6094641 2024-02-28 05:25:12.046 2024-02-28 05:25:12.046 1000 FEE 441481 12808 6094649 2024-02-28 05:28:48.709 2024-02-28 05:28:48.709 1000 FEE 441483 20606 6094686 2024-02-28 05:40:50.851 2024-02-28 05:40:50.851 100 FEE 441482 18068 6094687 2024-02-28 05:40:50.851 2024-02-28 05:40:50.851 900 TIP 441482 651 6094688 2024-02-28 05:40:51.872 2024-02-28 05:40:51.872 10000 FEE 440692 20006 6094689 2024-02-28 05:40:51.872 2024-02-28 05:40:51.872 90000 TIP 440692 12291 6094693 2024-02-28 05:41:03.368 2024-02-28 05:41:03.368 1000 FEE 441491 21472 6094705 2024-02-28 05:42:48.422 2024-02-28 05:42:48.422 1000 FEE 441493 4776 6094717 2024-02-28 05:43:32.156 2024-02-28 05:43:32.156 100 FEE 434694 21088 6094718 2024-02-28 05:43:32.156 2024-02-28 05:43:32.156 900 TIP 434694 1881 6094725 2024-02-28 05:43:59.489 2024-02-28 05:43:59.489 4200 FEE 441300 1489 6094726 2024-02-28 05:43:59.489 2024-02-28 05:43:59.489 37800 TIP 441300 21207 6094767 2024-02-28 05:53:39.153 2024-02-28 05:53:39.153 9000 FEE 441411 956 6094768 2024-02-28 05:53:39.153 2024-02-28 05:53:39.153 81000 TIP 441411 671 6094776 2024-02-28 05:54:54.022 2024-02-28 05:54:54.022 100 FEE 441479 19156 6094777 2024-02-28 05:54:54.022 2024-02-28 05:54:54.022 900 TIP 441479 11443 6094804 2024-02-28 05:56:53.79 2024-02-28 05:56:53.79 9000 FEE 441428 20117 6094805 2024-02-28 05:56:53.79 2024-02-28 05:56:53.79 81000 TIP 441428 4175 6094829 2024-02-28 06:07:56.064 2024-02-28 06:07:56.064 2100 FEE 441333 19836 6094830 2024-02-28 06:07:56.064 2024-02-28 06:07:56.064 18900 TIP 441333 12516 6094843 2024-02-28 06:08:45.909 2024-02-28 06:08:45.909 2100 FEE 441087 1173 6094844 2024-02-28 06:08:45.909 2024-02-28 06:08:45.909 18900 TIP 441087 20892 6094849 2024-02-28 06:08:50.837 2024-02-28 06:08:50.837 2100 FEE 441091 690 6094850 2024-02-28 06:08:50.837 2024-02-28 06:08:50.837 18900 TIP 441091 1298 6094855 2024-02-28 06:08:51.481 2024-02-28 06:08:51.481 2100 FEE 441091 11873 6094856 2024-02-28 06:08:51.481 2024-02-28 06:08:51.481 18900 TIP 441091 5978 6094875 2024-02-28 06:16:47.358 2024-02-28 06:16:47.358 0 FEE 441502 9695 6094883 2024-02-28 06:17:46.352 2024-02-28 06:17:46.352 2100 FEE 441433 13622 6094884 2024-02-28 06:17:46.352 2024-02-28 06:17:46.352 18900 TIP 441433 1319 6094906 2024-02-28 06:19:27.251 2024-02-28 06:19:27.251 2100 FEE 441405 19044 6094907 2024-02-28 06:19:27.251 2024-02-28 06:19:27.251 18900 TIP 441405 20073 6094909 2024-02-28 06:19:40.242 2024-02-28 06:19:40.242 2100 FEE 441485 18608 6094910 2024-02-28 06:19:40.242 2024-02-28 06:19:40.242 18900 TIP 441485 18225 6094913 2024-02-28 06:19:44.881 2024-02-28 06:19:44.881 2100 FEE 441411 11153 6094914 2024-02-28 06:19:44.881 2024-02-28 06:19:44.881 18900 TIP 441411 10484 6094917 2024-02-28 06:19:58.283 2024-02-28 06:19:58.283 2100 FEE 441383 6419 6094918 2024-02-28 06:19:58.283 2024-02-28 06:19:58.283 18900 TIP 441383 3478 6093856 2024-02-28 03:06:04.683 2024-02-28 03:06:04.683 1000 STREAM 141924 21458 6093875 2024-02-28 03:07:04.693 2024-02-28 03:07:04.693 1000 STREAM 141924 1740 6093919 2024-02-28 03:13:02.724 2024-02-28 03:13:02.724 1000 STREAM 141924 9335 6093921 2024-02-28 03:15:02.732 2024-02-28 03:15:02.732 1000 STREAM 141924 11996 6093924 2024-02-28 03:16:02.743 2024-02-28 03:16:02.743 1000 STREAM 141924 12976 6093940 2024-02-28 03:20:02.794 2024-02-28 03:20:02.794 1000 STREAM 141924 21119 6093944 2024-02-28 03:21:04.783 2024-02-28 03:21:04.783 1000 STREAM 141924 18635 6093952 2024-02-28 03:25:02.791 2024-02-28 03:25:02.791 1000 STREAM 141924 5017 6093954 2024-02-28 03:26:02.794 2024-02-28 03:26:02.794 1000 STREAM 141924 6717 6093957 2024-02-28 03:28:02.81 2024-02-28 03:28:02.81 1000 STREAM 141924 11516 6093963 2024-02-28 03:30:02.84 2024-02-28 03:30:02.84 1000 STREAM 141924 657 6093964 2024-02-28 03:31:02.826 2024-02-28 03:31:02.826 1000 STREAM 141924 19346 6093968 2024-02-28 03:33:02.822 2024-02-28 03:33:02.822 1000 STREAM 141924 16858 6093972 2024-02-28 03:34:02.832 2024-02-28 03:34:02.832 1000 STREAM 141924 20327 6093995 2024-02-28 03:35:02.828 2024-02-28 03:35:02.828 1000 STREAM 141924 21430 6094030 2024-02-28 03:42:02.846 2024-02-28 03:42:02.846 1000 STREAM 141924 1814 6094032 2024-02-28 03:44:02.837 2024-02-28 03:44:02.837 1000 STREAM 141924 1605 6094034 2024-02-28 03:46:02.852 2024-02-28 03:46:02.852 1000 STREAM 141924 1092 6094035 2024-02-28 03:47:02.85 2024-02-28 03:47:02.85 1000 STREAM 141924 20276 6094047 2024-02-28 03:51:02.854 2024-02-28 03:51:02.854 1000 STREAM 141924 2361 6094053 2024-02-28 03:53:02.854 2024-02-28 03:53:02.854 1000 STREAM 141924 10849 6094101 2024-02-28 04:05:02.964 2024-02-28 04:05:02.964 1000 STREAM 141924 622 6093859 2024-02-28 03:06:58.987 2024-02-28 03:06:58.987 10000 FEE 440863 1647 6093860 2024-02-28 03:06:58.987 2024-02-28 03:06:58.987 90000 TIP 440863 1090 6093861 2024-02-28 03:06:59.233 2024-02-28 03:06:59.233 10000 FEE 440863 10638 6093862 2024-02-28 03:06:59.233 2024-02-28 03:06:59.233 90000 TIP 440863 9418 6093865 2024-02-28 03:06:59.788 2024-02-28 03:06:59.788 10000 FEE 440863 20663 6093866 2024-02-28 03:06:59.788 2024-02-28 03:06:59.788 90000 TIP 440863 854 6093928 2024-02-28 03:18:13.652 2024-02-28 03:18:13.652 100 FEE 436178 10731 6093929 2024-02-28 03:18:13.652 2024-02-28 03:18:13.652 900 TIP 436178 20026 6093936 2024-02-28 03:19:52 2024-02-28 03:19:52 1000 FEE 441405 18772 6093937 2024-02-28 03:19:52 2024-02-28 03:19:52 9000 TIP 441405 1122 6093947 2024-02-28 03:22:42.113 2024-02-28 03:22:42.113 1000 FEE 441420 642 6093966 2024-02-28 03:33:00.156 2024-02-28 03:33:00.156 3100 FEE 441339 638 6093967 2024-02-28 03:33:00.156 2024-02-28 03:33:00.156 27900 TIP 441339 4388 6093969 2024-02-28 03:33:21.466 2024-02-28 03:33:21.466 3100 FEE 441415 12160 6093970 2024-02-28 03:33:21.466 2024-02-28 03:33:21.466 27900 TIP 441415 2963 6093996 2024-02-28 03:35:10.225 2024-02-28 03:35:10.225 100 FEE 441214 14255 6093997 2024-02-28 03:35:10.225 2024-02-28 03:35:10.225 900 TIP 441214 1490 6094007 2024-02-28 03:36:48.768 2024-02-28 03:36:48.768 300 FEE 441101 5497 6094008 2024-02-28 03:36:48.768 2024-02-28 03:36:48.768 2700 TIP 441101 13527 6094015 2024-02-28 03:36:49.836 2024-02-28 03:36:49.836 300 FEE 441101 16154 6094016 2024-02-28 03:36:49.836 2024-02-28 03:36:49.836 2700 TIP 441101 5578 6094024 2024-02-28 03:37:26.597 2024-02-28 03:37:26.597 1000 FEE 441427 691 6094058 2024-02-28 03:57:42.591 2024-02-28 03:57:42.591 1000 FEE 441432 1273 6094084 2024-02-28 04:02:43.129 2024-02-28 04:02:43.129 2100 FEE 441372 21021 6094085 2024-02-28 04:02:43.129 2024-02-28 04:02:43.129 18900 TIP 441372 19148 6094099 2024-02-28 04:04:58.142 2024-02-28 04:04:58.142 100 FEE 441433 16126 6094100 2024-02-28 04:04:58.142 2024-02-28 04:04:58.142 900 TIP 441433 798 6094109 2024-02-28 04:06:39.258 2024-02-28 04:06:39.258 100 FEE 441321 18309 6094110 2024-02-28 04:06:39.258 2024-02-28 04:06:39.258 900 TIP 441321 12483 6094111 2024-02-28 04:06:48.528 2024-02-28 04:06:48.528 100 FEE 441318 20157 6094112 2024-02-28 04:06:48.528 2024-02-28 04:06:48.528 900 TIP 441318 13547 6094128 2024-02-28 04:12:28.736 2024-02-28 04:12:28.736 1000 POLL 441333 8926 6094143 2024-02-28 04:17:44.466 2024-02-28 04:17:44.466 1000 FEE 441107 21033 6094144 2024-02-28 04:17:44.466 2024-02-28 04:17:44.466 9000 TIP 441107 21012 6094155 2024-02-28 04:17:46.777 2024-02-28 04:17:46.777 1000 FEE 441107 4177 6094156 2024-02-28 04:17:46.777 2024-02-28 04:17:46.777 9000 TIP 441107 13046 6094159 2024-02-28 04:17:47.601 2024-02-28 04:17:47.601 1000 FEE 441107 749 6094160 2024-02-28 04:17:47.601 2024-02-28 04:17:47.601 9000 TIP 441107 1468 6094161 2024-02-28 04:17:48.069 2024-02-28 04:17:48.069 1000 FEE 441107 12609 6094162 2024-02-28 04:17:48.069 2024-02-28 04:17:48.069 9000 TIP 441107 17212 6094163 2024-02-28 04:17:48.261 2024-02-28 04:17:48.261 1000 FEE 441107 20745 6094164 2024-02-28 04:17:48.261 2024-02-28 04:17:48.261 9000 TIP 441107 7668 6094165 2024-02-28 04:17:48.629 2024-02-28 04:17:48.629 1000 FEE 441107 19810 6094166 2024-02-28 04:17:48.629 2024-02-28 04:17:48.629 9000 TIP 441107 18500 6094185 2024-02-28 04:18:46.263 2024-02-28 04:18:46.263 2100 FEE 441229 10056 6094186 2024-02-28 04:18:46.263 2024-02-28 04:18:46.263 18900 TIP 441229 8074 6094202 2024-02-28 04:20:28.508 2024-02-28 04:20:28.508 1000 FEE 441118 5171 6094203 2024-02-28 04:20:28.508 2024-02-28 04:20:28.508 9000 TIP 441118 15326 6094206 2024-02-28 04:20:29.283 2024-02-28 04:20:29.283 1000 FEE 441118 21036 6094207 2024-02-28 04:20:29.283 2024-02-28 04:20:29.283 9000 TIP 441118 636 6094212 2024-02-28 04:20:30.243 2024-02-28 04:20:30.243 1000 FEE 441118 5069 6094213 2024-02-28 04:20:30.243 2024-02-28 04:20:30.243 9000 TIP 441118 19735 6094220 2024-02-28 04:20:31.032 2024-02-28 04:20:31.032 1000 FEE 441118 2789 6094221 2024-02-28 04:20:31.032 2024-02-28 04:20:31.032 9000 TIP 441118 760 6094252 2024-02-28 04:20:34.775 2024-02-28 04:20:34.775 1000 FEE 441118 20904 6094253 2024-02-28 04:20:34.775 2024-02-28 04:20:34.775 9000 TIP 441118 19329 6094264 2024-02-28 04:20:36.347 2024-02-28 04:20:36.347 2000 FEE 441118 666 6094265 2024-02-28 04:20:36.347 2024-02-28 04:20:36.347 18000 TIP 441118 20778 6094292 2024-02-28 04:20:39.546 2024-02-28 04:20:39.546 1000 FEE 441118 6594 6094293 2024-02-28 04:20:39.546 2024-02-28 04:20:39.546 9000 TIP 441118 13327 6094338 2024-02-28 04:21:16.327 2024-02-28 04:21:16.327 1000 FEE 441165 20287 6094339 2024-02-28 04:21:16.327 2024-02-28 04:21:16.327 9000 TIP 441165 21061 6094354 2024-02-28 04:21:43.054 2024-02-28 04:21:43.054 1000 FEE 440321 20751 6094355 2024-02-28 04:21:43.054 2024-02-28 04:21:43.054 9000 TIP 440321 20137 6094362 2024-02-28 04:21:44.798 2024-02-28 04:21:44.798 1000 FEE 440321 10698 6094363 2024-02-28 04:21:44.798 2024-02-28 04:21:44.798 9000 TIP 440321 21216 6094364 2024-02-28 04:21:45.312 2024-02-28 04:21:45.312 1000 FEE 440321 13854 6094365 2024-02-28 04:21:45.312 2024-02-28 04:21:45.312 9000 TIP 440321 19668 6094372 2024-02-28 04:21:46.928 2024-02-28 04:21:46.928 1000 FEE 440321 20993 6094373 2024-02-28 04:21:46.928 2024-02-28 04:21:46.928 9000 TIP 440321 17064 6094374 2024-02-28 04:21:47.144 2024-02-28 04:21:47.144 1000 FEE 441247 11443 6094375 2024-02-28 04:21:47.144 2024-02-28 04:21:47.144 9000 TIP 441247 18984 6094393 2024-02-28 04:22:22.06 2024-02-28 04:22:22.06 1000 FEE 441446 19941 6094401 2024-02-28 04:23:36.674 2024-02-28 04:23:36.674 2100 FEE 441227 652 6094402 2024-02-28 04:23:36.674 2024-02-28 04:23:36.674 18900 TIP 441227 14370 6094406 2024-02-28 04:25:01.049 2024-02-28 04:25:01.049 0 FEE 441447 6573 6094431 2024-02-28 04:32:08.788 2024-02-28 04:32:08.788 1000 FEE 441375 21541 6093864 2024-02-28 03:06:59.59 2024-02-28 03:06:59.59 90000 TIP 440863 4819 6093876 2024-02-28 03:07:58.12 2024-02-28 03:07:58.12 10000 FEE 441137 7966 6093877 2024-02-28 03:07:58.12 2024-02-28 03:07:58.12 90000 TIP 441137 19735 6093878 2024-02-28 03:07:58.307 2024-02-28 03:07:58.307 10000 FEE 441137 16660 6093879 2024-02-28 03:07:58.307 2024-02-28 03:07:58.307 90000 TIP 441137 4768 6093884 2024-02-28 03:07:58.963 2024-02-28 03:07:58.963 10000 FEE 441137 5828 6093885 2024-02-28 03:07:58.963 2024-02-28 03:07:58.963 90000 TIP 441137 7992 6093886 2024-02-28 03:07:59.197 2024-02-28 03:07:59.197 10000 FEE 441137 18008 6093887 2024-02-28 03:07:59.197 2024-02-28 03:07:59.197 90000 TIP 441137 4570 6093892 2024-02-28 03:08:01.523 2024-02-28 03:08:01.523 1000 FEE 441413 12930 6093906 2024-02-28 03:10:24.782 2024-02-28 03:10:24.782 1000 FEE 441414 7827 6093914 2024-02-28 03:12:38.481 2024-02-28 03:12:38.481 6900 FEE 441413 19117 6093915 2024-02-28 03:12:38.481 2024-02-28 03:12:38.481 62100 TIP 441413 1438 6093916 2024-02-28 03:12:38.568 2024-02-28 03:12:38.568 6900 FEE 441413 14376 6093917 2024-02-28 03:12:38.568 2024-02-28 03:12:38.568 62100 TIP 441413 17690 6094000 2024-02-28 03:36:36.549 2024-02-28 03:36:36.549 1000 POLL 441333 16858 6094028 2024-02-28 03:40:44.108 2024-02-28 03:40:44.108 1000 FEE 441428 5085 6093965 2024-02-28 03:32:03.929 2024-02-28 03:32:03.929 1000 STREAM 141924 7125 6093976 2024-02-28 03:34:03.259 2024-02-28 03:34:03.259 9000 TIP 441409 18426 6093979 2024-02-28 03:34:04.96 2024-02-28 03:34:04.96 1000 FEE 441409 19662 6093980 2024-02-28 03:34:04.96 2024-02-28 03:34:04.96 9000 TIP 441409 11648 6094043 2024-02-28 03:49:11.561 2024-02-28 03:49:11.561 1000 FEE 439696 993 6094044 2024-02-28 03:49:11.561 2024-02-28 03:49:11.561 9000 TIP 439696 10493 6094046 2024-02-28 03:50:07.546 2024-02-28 03:50:07.546 1000 POLL 441333 633 6094072 2024-02-28 03:59:34.898 2024-02-28 03:59:34.898 100000 FEE 441433 12222 6094075 2024-02-28 04:00:15.721 2024-02-28 04:00:15.721 0 FEE 441433 18626 6094077 2024-02-28 04:00:47.187 2024-02-28 04:00:47.187 1000 FEE 441434 18704 6094102 2024-02-28 04:05:08.495 2024-02-28 04:05:08.495 100 FEE 441425 9494 6094103 2024-02-28 04:05:08.495 2024-02-28 04:05:08.495 900 TIP 441425 19572 6094122 2024-02-28 04:08:35.182 2024-02-28 04:08:35.182 1000 POLL 441333 21343 6094131 2024-02-28 04:14:04.1 2024-02-28 04:14:04.1 1000 POLL 441333 20108 6094134 2024-02-28 04:15:22.306 2024-02-28 04:15:22.306 10000 FEE 441441 20434 6094157 2024-02-28 04:17:47.138 2024-02-28 04:17:47.138 1000 FEE 441107 18842 6094158 2024-02-28 04:17:47.138 2024-02-28 04:17:47.138 9000 TIP 441107 1738 6094194 2024-02-28 04:20:26.933 2024-02-28 04:20:26.933 1000 FEE 441118 14774 6094195 2024-02-28 04:20:26.933 2024-02-28 04:20:26.933 9000 TIP 441118 1836 6094198 2024-02-28 04:20:27.655 2024-02-28 04:20:27.655 1000 FEE 441118 3377 6094199 2024-02-28 04:20:27.655 2024-02-28 04:20:27.655 9000 TIP 441118 13574 6094216 2024-02-28 04:20:30.619 2024-02-28 04:20:30.619 1000 FEE 441118 18174 6094217 2024-02-28 04:20:30.619 2024-02-28 04:20:30.619 9000 TIP 441118 20326 6094224 2024-02-28 04:20:31.389 2024-02-28 04:20:31.389 1000 FEE 441118 651 6094225 2024-02-28 04:20:31.389 2024-02-28 04:20:31.389 9000 TIP 441118 7654 6094262 2024-02-28 04:20:35.785 2024-02-28 04:20:35.785 1000 FEE 441118 647 6094263 2024-02-28 04:20:35.785 2024-02-28 04:20:35.785 9000 TIP 441118 8400 6094282 2024-02-28 04:20:38.124 2024-02-28 04:20:38.124 1000 FEE 441118 20525 6093978 2024-02-28 03:34:04.65 2024-02-28 03:34:04.65 9000 TIP 441409 2046 6093981 2024-02-28 03:34:05.199 2024-02-28 03:34:05.199 1000 FEE 441409 15139 6093982 2024-02-28 03:34:05.199 2024-02-28 03:34:05.199 9000 TIP 441409 11263 6093983 2024-02-28 03:34:08.078 2024-02-28 03:34:08.078 1000 FEE 441372 20993 6093984 2024-02-28 03:34:08.078 2024-02-28 03:34:08.078 9000 TIP 441372 12158 6094017 2024-02-28 03:36:51.046 2024-02-28 03:36:51.046 300 FEE 441101 848 6094018 2024-02-28 03:36:51.046 2024-02-28 03:36:51.046 2700 TIP 441101 6499 6094113 2024-02-28 04:06:51.576 2024-02-28 04:06:51.576 1000 FEE 441438 15843 6094115 2024-02-28 04:07:12.294 2024-02-28 04:07:12.294 2100 FEE 441411 20881 6094116 2024-02-28 04:07:12.294 2024-02-28 04:07:12.294 18900 TIP 441411 7674 6094119 2024-02-28 04:07:56.264 2024-02-28 04:07:56.264 32200 FEE 441436 678 6094120 2024-02-28 04:07:56.264 2024-02-28 04:07:56.264 289800 TIP 441436 10056 6094133 2024-02-28 04:15:05.614 2024-02-28 04:15:05.614 1000 FEE 441440 12356 6094135 2024-02-28 04:15:55.873 2024-02-28 04:15:55.873 1000 FEE 441442 14905 6094140 2024-02-28 04:17:31.247 2024-02-28 04:17:31.247 10000 FEE 441443 13097 6094141 2024-02-28 04:17:44.338 2024-02-28 04:17:44.338 1000 FEE 441107 15409 6094142 2024-02-28 04:17:44.338 2024-02-28 04:17:44.338 9000 TIP 441107 18008 6094151 2024-02-28 04:17:46.072 2024-02-28 04:17:46.072 1000 FEE 441107 16929 6094152 2024-02-28 04:17:46.072 2024-02-28 04:17:46.072 9000 TIP 441107 5427 6094179 2024-02-28 04:17:50.181 2024-02-28 04:17:50.181 1000 FEE 441107 18717 6094180 2024-02-28 04:17:50.181 2024-02-28 04:17:50.181 9000 TIP 441107 19484 6094210 2024-02-28 04:20:30.047 2024-02-28 04:20:30.047 1000 FEE 441118 19837 6094211 2024-02-28 04:20:30.047 2024-02-28 04:20:30.047 9000 TIP 441118 15045 6094218 2024-02-28 04:20:30.801 2024-02-28 04:20:30.801 1000 FEE 441118 16329 6094219 2024-02-28 04:20:30.801 2024-02-28 04:20:30.801 9000 TIP 441118 20562 6094230 2024-02-28 04:20:31.953 2024-02-28 04:20:31.953 1000 FEE 441118 9796 6094231 2024-02-28 04:20:31.953 2024-02-28 04:20:31.953 9000 TIP 441118 18932 6094250 2024-02-28 04:20:34.587 2024-02-28 04:20:34.587 1000 FEE 441118 20291 6094251 2024-02-28 04:20:34.587 2024-02-28 04:20:34.587 9000 TIP 441118 19909 6094280 2024-02-28 04:20:37.955 2024-02-28 04:20:37.955 1000 FEE 441118 12422 6094281 2024-02-28 04:20:37.955 2024-02-28 04:20:37.955 9000 TIP 441118 4175 6094284 2024-02-28 04:20:38.746 2024-02-28 04:20:38.746 1000 FEE 441118 17082 6094285 2024-02-28 04:20:38.746 2024-02-28 04:20:38.746 9000 TIP 441118 1261 6094286 2024-02-28 04:20:38.953 2024-02-28 04:20:38.953 1000 FEE 441118 12160 6094287 2024-02-28 04:20:38.953 2024-02-28 04:20:38.953 9000 TIP 441118 5791 6094290 2024-02-28 04:20:39.341 2024-02-28 04:20:39.341 1000 FEE 441118 1145 6094291 2024-02-28 04:20:39.341 2024-02-28 04:20:39.341 9000 TIP 441118 756 6094294 2024-02-28 04:20:39.736 2024-02-28 04:20:39.736 1000 FEE 441118 1319 6094295 2024-02-28 04:20:39.736 2024-02-28 04:20:39.736 9000 TIP 441118 19193 6094298 2024-02-28 04:20:40.129 2024-02-28 04:20:40.129 1000 FEE 441118 21090 6094299 2024-02-28 04:20:40.129 2024-02-28 04:20:40.129 9000 TIP 441118 4048 6094326 2024-02-28 04:20:44.3 2024-02-28 04:20:44.3 1000 FEE 441118 4166 6094327 2024-02-28 04:20:44.3 2024-02-28 04:20:44.3 9000 TIP 441118 3990 6094348 2024-02-28 04:21:41.702 2024-02-28 04:21:41.702 1000 FEE 440321 2735 6094349 2024-02-28 04:21:41.702 2024-02-28 04:21:41.702 9000 TIP 440321 6777 6094378 2024-02-28 04:21:47.772 2024-02-28 04:21:47.772 1000 FEE 440321 21064 6094379 2024-02-28 04:21:47.772 2024-02-28 04:21:47.772 9000 TIP 440321 1162 6094380 2024-02-28 04:21:48.221 2024-02-28 04:21:48.221 1000 FEE 440321 18828 6094381 2024-02-28 04:21:48.221 2024-02-28 04:21:48.221 9000 TIP 440321 21503 6094382 2024-02-28 04:21:48.626 2024-02-28 04:21:48.626 1000 FEE 440321 19541 6094383 2024-02-28 04:21:48.626 2024-02-28 04:21:48.626 9000 TIP 440321 18690 6094397 2024-02-28 04:23:07.483 2024-02-28 04:23:07.483 2100 FEE 440863 19494 6094398 2024-02-28 04:23:07.483 2024-02-28 04:23:07.483 18900 TIP 440863 9758 6094411 2024-02-28 04:26:07.978 2024-02-28 04:26:07.978 1000 POLL 441333 977 6094414 2024-02-28 04:27:06.594 2024-02-28 04:27:06.594 1000 POLL 441333 2347 6094451 2024-02-28 04:32:41.591 2024-02-28 04:32:41.591 2100 FEE 441372 6717 6094452 2024-02-28 04:32:41.591 2024-02-28 04:32:41.591 18900 TIP 441372 9346 6094486 2024-02-28 04:36:34.101 2024-02-28 04:36:34.101 100 FEE 441283 18311 6094487 2024-02-28 04:36:34.101 2024-02-28 04:36:34.101 900 TIP 441283 15100 6094492 2024-02-28 04:37:15.399 2024-02-28 04:37:15.399 1000 FEE 441396 1717 6094493 2024-02-28 04:37:15.399 2024-02-28 04:37:15.399 9000 TIP 441396 19458 6094505 2024-02-28 04:40:08.965 2024-02-28 04:40:08.965 10000 FEE 441455 4322 6094506 2024-02-28 04:40:08.965 2024-02-28 04:40:08.965 90000 TIP 441455 18774 6094535 2024-02-28 04:47:21.338 2024-02-28 04:47:21.338 1000 FEE 441457 10013 6094536 2024-02-28 04:47:21.338 2024-02-28 04:47:21.338 9000 TIP 441457 9330 6094573 2024-02-28 04:58:24.669 2024-02-28 04:58:24.669 1000 FEE 441470 14688 6094591 2024-02-28 05:04:30.417 2024-02-28 05:04:30.417 800 FEE 440706 644 6094592 2024-02-28 05:04:30.417 2024-02-28 05:04:30.417 7200 TIP 440706 4238 6094614 2024-02-28 05:13:33.22 2024-02-28 05:13:33.22 800 FEE 440425 16270 6094615 2024-02-28 05:13:33.22 2024-02-28 05:13:33.22 7200 TIP 440425 18897 6094628 2024-02-28 05:19:57.722 2024-02-28 05:19:57.722 2100 FEE 441399 10007 6094629 2024-02-28 05:19:57.722 2024-02-28 05:19:57.722 18900 TIP 441399 8796 6094631 2024-02-28 05:20:59.891 2024-02-28 05:20:59.891 0 FEE 85385 7916 6094645 2024-02-28 05:26:00.978 2024-02-28 05:26:00.978 10000 FEE 441482 8505 6094669 2024-02-28 05:37:03.181 2024-02-28 05:37:03.181 1000 FEE 441468 7978 6094670 2024-02-28 05:37:03.181 2024-02-28 05:37:03.181 9000 TIP 441468 18836 6094685 2024-02-28 05:40:13.836 2024-02-28 05:40:13.836 1000 FEE 441490 19810 6094696 2024-02-28 05:41:12.018 2024-02-28 05:41:12.018 100 FEE 441476 999 6094697 2024-02-28 05:41:12.018 2024-02-28 05:41:12.018 900 TIP 441476 866 6094713 2024-02-28 05:43:17.31 2024-02-28 05:43:17.31 100 FEE 436663 951 6094714 2024-02-28 05:43:17.31 2024-02-28 05:43:17.31 900 TIP 436663 18774 6094721 2024-02-28 05:43:45.362 2024-02-28 05:43:45.362 100 FEE 433731 4802 6094722 2024-02-28 05:43:45.362 2024-02-28 05:43:45.362 900 TIP 433731 11819 6094729 2024-02-28 05:44:01.15 2024-02-28 05:44:01.15 100 FEE 432909 19193 6094730 2024-02-28 05:44:01.15 2024-02-28 05:44:01.15 900 TIP 432909 2329 6094744 2024-02-28 05:47:37.986 2024-02-28 05:47:37.986 1000 POLL 441333 18119 6094762 2024-02-28 05:53:36.381 2024-02-28 05:53:36.381 100 FEE 441411 10586 6094763 2024-02-28 05:53:36.381 2024-02-28 05:53:36.381 900 TIP 441411 20183 6094769 2024-02-28 05:53:50.962 2024-02-28 05:53:50.962 100 FEE 441433 12158 6094770 2024-02-28 05:53:50.962 2024-02-28 05:53:50.962 900 TIP 441433 21014 6094778 2024-02-28 05:54:54.301 2024-02-28 05:54:54.301 900 FEE 441479 1394 6094057 2024-02-28 03:57:03.001 2024-02-28 03:57:03.001 1000 STREAM 141924 2437 6094060 2024-02-28 03:58:02.999 2024-02-28 03:58:02.999 1000 STREAM 141924 1425 6094078 2024-02-28 04:01:03.021 2024-02-28 04:01:03.021 1000 STREAM 141924 21457 6094088 2024-02-28 04:03:03.013 2024-02-28 04:03:03.013 1000 STREAM 141924 17673 6094114 2024-02-28 04:07:03.001 2024-02-28 04:07:03.001 1000 STREAM 141924 11992 6094126 2024-02-28 04:11:03.032 2024-02-28 04:11:03.032 1000 STREAM 141924 16942 6094129 2024-02-28 04:13:03.043 2024-02-28 04:13:03.043 1000 STREAM 141924 8448 6094335 2024-02-28 04:21:03.091 2024-02-28 04:21:03.091 1000 STREAM 141924 20084 6094407 2024-02-28 04:25:03.11 2024-02-28 04:25:03.11 1000 STREAM 141924 20663 6094415 2024-02-28 04:28:03.132 2024-02-28 04:28:03.132 1000 STREAM 141924 9350 6094416 2024-02-28 04:29:03.142 2024-02-28 04:29:03.142 1000 STREAM 141924 8080 6094418 2024-02-28 04:30:03.133 2024-02-28 04:30:03.133 1000 STREAM 141924 19398 6094428 2024-02-28 04:32:03.138 2024-02-28 04:32:03.138 1000 STREAM 141924 1512 6094467 2024-02-28 04:33:03.142 2024-02-28 04:33:03.142 1000 STREAM 141924 21573 6094480 2024-02-28 04:34:03.149 2024-02-28 04:34:03.149 1000 STREAM 141924 11897 6094507 2024-02-28 04:41:03.175 2024-02-28 04:41:03.175 1000 STREAM 141924 10359 6094511 2024-02-28 04:42:03.179 2024-02-28 04:42:03.179 1000 STREAM 141924 11516 6094561 2024-02-28 04:51:03.229 2024-02-28 04:51:03.229 1000 STREAM 141924 11038 6094565 2024-02-28 04:54:03.24 2024-02-28 04:54:03.24 1000 STREAM 141924 21136 6094566 2024-02-28 04:55:03.231 2024-02-28 04:55:03.231 1000 STREAM 141924 19759 6094574 2024-02-28 04:59:03.253 2024-02-28 04:59:03.253 1000 STREAM 141924 20190 6094576 2024-02-28 05:00:03.278 2024-02-28 05:00:03.278 1000 STREAM 141924 16834 6094578 2024-02-28 05:01:03.273 2024-02-28 05:01:03.273 1000 STREAM 141924 18680 6094063 2024-02-28 03:58:23.664 2024-02-28 03:58:23.664 1000 FEE 352257 649 6094064 2024-02-28 03:58:23.664 2024-02-28 03:58:23.664 9000 TIP 352257 16193 6094082 2024-02-28 04:02:18.328 2024-02-28 04:02:18.328 2100 FEE 441375 18637 6094083 2024-02-28 04:02:18.328 2024-02-28 04:02:18.328 18900 TIP 441375 11942 6094090 2024-02-28 04:03:24.398 2024-02-28 04:03:24.398 2100 FEE 441278 20337 6094091 2024-02-28 04:03:24.398 2024-02-28 04:03:24.398 18900 TIP 441278 1833 6094096 2024-02-28 04:03:59.687 2024-02-28 04:03:59.687 10000 FEE 441436 18601 6094117 2024-02-28 04:07:43.94 2024-02-28 04:07:43.94 100 FEE 441300 21427 6094118 2024-02-28 04:07:43.94 2024-02-28 04:07:43.94 900 TIP 441300 15213 6094153 2024-02-28 04:17:46.229 2024-02-28 04:17:46.229 1000 FEE 441107 19890 6094154 2024-02-28 04:17:46.229 2024-02-28 04:17:46.229 9000 TIP 441107 4388 6094171 2024-02-28 04:17:49.389 2024-02-28 04:17:49.389 1000 FEE 441107 15147 6094172 2024-02-28 04:17:49.389 2024-02-28 04:17:49.389 9000 TIP 441107 9982 6094266 2024-02-28 04:20:36.402 2024-02-28 04:20:36.402 1000 FEE 441118 11144 6094267 2024-02-28 04:20:36.402 2024-02-28 04:20:36.402 9000 TIP 441118 20751 6094268 2024-02-28 04:20:36.763 2024-02-28 04:20:36.763 1000 FEE 441118 21402 6094269 2024-02-28 04:20:36.763 2024-02-28 04:20:36.763 9000 TIP 441118 1438 6094272 2024-02-28 04:20:37.149 2024-02-28 04:20:37.149 1000 FEE 441118 21427 6094273 2024-02-28 04:20:37.149 2024-02-28 04:20:37.149 9000 TIP 441118 12220 6094276 2024-02-28 04:20:37.544 2024-02-28 04:20:37.544 1000 FEE 441118 4391 6094277 2024-02-28 04:20:37.544 2024-02-28 04:20:37.544 9000 TIP 441118 21242 6094278 2024-02-28 04:20:37.744 2024-02-28 04:20:37.744 1000 FEE 441118 13553 6094279 2024-02-28 04:20:37.744 2024-02-28 04:20:37.744 9000 TIP 441118 9551 6094302 2024-02-28 04:20:40.531 2024-02-28 04:20:40.531 1000 FEE 441118 21520 6094303 2024-02-28 04:20:40.531 2024-02-28 04:20:40.531 9000 TIP 441118 5904 6094304 2024-02-28 04:20:40.735 2024-02-28 04:20:40.735 1000 FEE 441118 20163 6094305 2024-02-28 04:20:40.735 2024-02-28 04:20:40.735 9000 TIP 441118 12291 6094356 2024-02-28 04:21:43.467 2024-02-28 04:21:43.467 1000 FEE 440321 18235 6094357 2024-02-28 04:21:43.467 2024-02-28 04:21:43.467 9000 TIP 440321 17800 6094360 2024-02-28 04:21:44.335 2024-02-28 04:21:44.335 1000 FEE 440321 15938 6094361 2024-02-28 04:21:44.335 2024-02-28 04:21:44.335 9000 TIP 440321 8841 6094389 2024-02-28 04:22:08.484 2024-02-28 04:22:08.484 1000 FEE 441435 1983 6094390 2024-02-28 04:22:08.484 2024-02-28 04:22:08.484 9000 TIP 441435 14950 6094422 2024-02-28 04:31:23.795 2024-02-28 04:31:23.795 0 FEE 441450 14169 6094433 2024-02-28 04:32:21.27 2024-02-28 04:32:21.27 3000 FEE 441275 8472 6094434 2024-02-28 04:32:21.27 2024-02-28 04:32:21.27 27000 TIP 441275 16097 6094437 2024-02-28 04:32:38.18 2024-02-28 04:32:38.18 2100 FEE 441372 18016 6094438 2024-02-28 04:32:38.18 2024-02-28 04:32:38.18 18900 TIP 441372 3686 6094489 2024-02-28 04:36:52.627 2024-02-28 04:36:52.627 0 FEE 441454 660 6094495 2024-02-28 04:38:23.242 2024-02-28 04:38:23.242 1000 FEE 441456 16858 6094517 2024-02-28 04:43:15.099 2024-02-28 04:43:15.099 1000 FEE 441459 11144 6094533 2024-02-28 04:46:38.985 2024-02-28 04:46:38.985 1000 POLL 441333 4079 6094539 2024-02-28 04:47:46.211 2024-02-28 04:47:46.211 5000 FEE 441077 14195 6094540 2024-02-28 04:47:46.211 2024-02-28 04:47:46.211 45000 TIP 441077 16097 6094553 2024-02-28 04:49:11.326 2024-02-28 04:49:11.326 1000 FEE 441467 18772 6094555 2024-02-28 04:50:42.699 2024-02-28 04:50:42.699 1000 FEE 441137 14225 6094556 2024-02-28 04:50:42.699 2024-02-28 04:50:42.699 9000 TIP 441137 960 6094580 2024-02-28 05:02:13.629 2024-02-28 05:02:13.629 1000 FEE 441471 16879 6094582 2024-02-28 05:03:10.084 2024-02-28 05:03:10.084 10000 FEE 441473 4074 6094611 2024-02-28 05:13:00.9 2024-02-28 05:13:00.9 1000 FEE 441387 19911 6094612 2024-02-28 05:13:00.9 2024-02-28 05:13:00.9 9000 TIP 441387 18154 6094642 2024-02-28 05:25:26.564 2024-02-28 05:25:26.564 0 FEE 441481 1603 6094672 2024-02-28 05:37:13.692 2024-02-28 05:37:13.692 1000 FEE 441487 19836 6094674 2024-02-28 05:38:29.108 2024-02-28 05:38:29.108 100000 FEE 441489 18170 6094708 2024-02-28 05:43:02.199 2024-02-28 05:43:02.199 100 FEE 438573 18904 6094709 2024-02-28 05:43:02.199 2024-02-28 05:43:02.199 900 TIP 438573 12072 6094719 2024-02-28 05:43:40.055 2024-02-28 05:43:40.055 100 FEE 434117 21208 6094720 2024-02-28 05:43:40.055 2024-02-28 05:43:40.055 900 TIP 434117 7682 6094735 2024-02-28 05:44:53.679 2024-02-28 05:44:53.679 100 FEE 432765 5852 6094736 2024-02-28 05:44:53.679 2024-02-28 05:44:53.679 900 TIP 432765 725 6094837 2024-02-28 06:08:45.328 2024-02-28 06:08:45.328 2100 FEE 441087 8926 6094838 2024-02-28 06:08:45.328 2024-02-28 06:08:45.328 18900 TIP 441087 3371 6094874 2024-02-28 06:16:29.253 2024-02-28 06:16:29.253 0 FEE 441502 17494 6094877 2024-02-28 06:17:35.618 2024-02-28 06:17:35.618 2100 FEE 441489 10693 6094878 2024-02-28 06:17:35.618 2024-02-28 06:17:35.618 18900 TIP 441489 631 6094887 2024-02-28 06:18:01.538 2024-02-28 06:18:01.538 2100 FEE 441409 16042 6094888 2024-02-28 06:18:01.538 2024-02-28 06:18:01.538 18900 TIP 441409 3729 6094905 2024-02-28 06:19:19.865 2024-02-28 06:19:19.865 1000 FEE 441503 5794 6094926 2024-02-28 06:20:42.208 2024-02-28 06:20:42.208 2100 FEE 441198 20573 6094927 2024-02-28 06:20:42.208 2024-02-28 06:20:42.208 18900 TIP 441198 4768 6094935 2024-02-28 06:21:03.679 2024-02-28 06:21:03.679 2100 FEE 441008 21275 6094936 2024-02-28 06:21:03.679 2024-02-28 06:21:03.679 18900 TIP 441008 15180 6094951 2024-02-28 06:21:45.724 2024-02-28 06:21:45.724 100 FEE 441333 14376 6094952 2024-02-28 06:21:45.724 2024-02-28 06:21:45.724 900 TIP 441333 15938 6094977 2024-02-28 06:23:22.391 2024-02-28 06:23:22.391 2100 FEE 441480 11417 6094978 2024-02-28 06:23:22.391 2024-02-28 06:23:22.391 18900 TIP 441480 692 6095007 2024-02-28 06:29:30.717 2024-02-28 06:29:30.717 2100 FEE 441413 20264 6095008 2024-02-28 06:29:30.717 2024-02-28 06:29:30.717 18900 TIP 441413 1145 6095022 2024-02-28 06:31:01.231 2024-02-28 06:31:01.231 3300 FEE 441316 14465 6095023 2024-02-28 06:31:01.231 2024-02-28 06:31:01.231 29700 TIP 441316 17147 6095027 2024-02-28 06:31:08.33 2024-02-28 06:31:08.33 2100 FEE 441476 14941 6095028 2024-02-28 06:31:08.33 2024-02-28 06:31:08.33 18900 TIP 441476 10490 6095049 2024-02-28 06:32:29.3 2024-02-28 06:32:29.3 6600 FEE 178804 15326 6095050 2024-02-28 06:32:29.3 2024-02-28 06:32:29.3 59400 TIP 178804 999 6095066 2024-02-28 06:45:58.939 2024-02-28 06:45:58.939 1000 FEE 441509 17275 6095093 2024-02-28 06:58:41.713 2024-02-28 06:58:41.713 2100 FEE 441480 21521 6095094 2024-02-28 06:58:41.713 2024-02-28 06:58:41.713 18900 TIP 441480 9336 6095130 2024-02-28 07:04:41.941 2024-02-28 07:04:41.941 2100 FEE 440622 19037 6095131 2024-02-28 07:04:41.941 2024-02-28 07:04:41.941 18900 TIP 440622 10719 6095138 2024-02-28 07:04:45.931 2024-02-28 07:04:45.931 2100 FEE 441077 21424 6095139 2024-02-28 07:04:45.931 2024-02-28 07:04:45.931 18900 TIP 441077 13854 6095148 2024-02-28 07:04:58.568 2024-02-28 07:04:58.568 2100 FEE 440764 19322 6095149 2024-02-28 07:04:58.568 2024-02-28 07:04:58.568 18900 TIP 440764 21136 6095154 2024-02-28 07:05:01.268 2024-02-28 07:05:01.268 2100 FEE 440988 21482 6095155 2024-02-28 07:05:01.268 2024-02-28 07:05:01.268 18900 TIP 440988 16212 6095165 2024-02-28 07:06:42.2 2024-02-28 07:06:42.2 800 FEE 441241 2757 6095166 2024-02-28 07:06:42.2 2024-02-28 07:06:42.2 7200 TIP 441241 9200 6095180 2024-02-28 07:08:39.703 2024-02-28 07:08:39.703 2100 FEE 440799 9367 6095181 2024-02-28 07:08:39.703 2024-02-28 07:08:39.703 18900 TIP 440799 4538 6095191 2024-02-28 07:12:02.916 2024-02-28 07:12:02.916 1000 FEE 441520 19557 6095206 2024-02-28 07:16:06.684 2024-02-28 07:16:06.684 1000 FEE 441521 14195 6095225 2024-02-28 07:24:07.914 2024-02-28 07:24:07.914 1000 FEE 441048 9348 6094071 2024-02-28 03:59:03.035 2024-02-28 03:59:03.035 1000 STREAM 141924 16717 6094074 2024-02-28 04:00:03.007 2024-02-28 04:00:03.007 1000 STREAM 141924 17708 6094081 2024-02-28 04:02:03.005 2024-02-28 04:02:03.005 1000 STREAM 141924 776 6094097 2024-02-28 04:04:03.013 2024-02-28 04:04:03.013 1000 STREAM 141924 13987 6094121 2024-02-28 04:08:03.026 2024-02-28 04:08:03.026 1000 STREAM 141924 632 6094123 2024-02-28 04:09:03.029 2024-02-28 04:09:03.029 1000 STREAM 141924 3304 6094125 2024-02-28 04:10:03.061 2024-02-28 04:10:03.061 1000 STREAM 141924 11450 6094127 2024-02-28 04:12:03.045 2024-02-28 04:12:03.045 1000 STREAM 141924 11275 6094130 2024-02-28 04:14:03.045 2024-02-28 04:14:03.045 1000 STREAM 141924 11220 6094132 2024-02-28 04:15:03.05 2024-02-28 04:15:03.05 1000 STREAM 141924 5520 6094136 2024-02-28 04:16:03.064 2024-02-28 04:16:03.064 1000 STREAM 141924 11275 6094139 2024-02-28 04:17:03.062 2024-02-28 04:17:03.062 1000 STREAM 141924 16747 6094189 2024-02-28 04:19:03.092 2024-02-28 04:19:03.092 1000 STREAM 141924 16556 6094190 2024-02-28 04:20:03.076 2024-02-28 04:20:03.076 1000 STREAM 141924 18524 6094388 2024-02-28 04:22:03.087 2024-02-28 04:22:03.087 1000 STREAM 141924 19566 6094396 2024-02-28 04:23:03.097 2024-02-28 04:23:03.097 1000 STREAM 141924 18704 6094403 2024-02-28 04:24:03.112 2024-02-28 04:24:03.112 1000 STREAM 141924 17984 6094410 2024-02-28 04:26:03.107 2024-02-28 04:26:03.107 1000 STREAM 141924 20094 6094413 2024-02-28 04:27:03.117 2024-02-28 04:27:03.117 1000 STREAM 141924 18817 6094421 2024-02-28 04:31:03.137 2024-02-28 04:31:03.137 1000 STREAM 141924 19512 6094484 2024-02-28 04:35:03.155 2024-02-28 04:35:03.155 1000 STREAM 141924 16717 6094485 2024-02-28 04:36:03.153 2024-02-28 04:36:03.153 1000 STREAM 141924 18363 6094490 2024-02-28 04:37:03.154 2024-02-28 04:37:03.154 1000 STREAM 141924 19773 6094552 2024-02-28 04:49:03.209 2024-02-28 04:49:03.209 1000 STREAM 141924 9335 6094554 2024-02-28 04:50:03.215 2024-02-28 04:50:03.215 1000 STREAM 141924 1519 6094562 2024-02-28 04:52:03.235 2024-02-28 04:52:03.235 1000 STREAM 141924 3518 6094564 2024-02-28 04:53:03.243 2024-02-28 04:53:03.243 1000 STREAM 141924 14271 6094569 2024-02-28 04:56:03.24 2024-02-28 04:56:03.24 1000 STREAM 141924 2206 6094570 2024-02-28 04:57:03.251 2024-02-28 04:57:03.251 1000 STREAM 141924 16724 6094572 2024-02-28 04:58:03.266 2024-02-28 04:58:03.266 1000 STREAM 141924 5590 6094106 2024-02-28 04:06:02.93 2024-02-28 04:06:02.93 1000 STREAM 141924 19821 6094183 2024-02-28 04:18:03.021 2024-02-28 04:18:03.021 1000 STREAM 141924 1802 6094528 2024-02-28 04:45:03.164 2024-02-28 04:45:03.164 1000 STREAM 141924 17221 6094587 2024-02-28 05:04:03.174 2024-02-28 05:04:03.174 1000 STREAM 141924 19981 6094594 2024-02-28 05:05:03.167 2024-02-28 05:05:03.167 1000 STREAM 141924 9107 6094595 2024-02-28 05:06:03.166 2024-02-28 05:06:03.166 1000 STREAM 141924 18392 6094599 2024-02-28 05:09:03.197 2024-02-28 05:09:03.197 1000 STREAM 141924 18630 6094619 2024-02-28 05:15:03.258 2024-02-28 05:15:03.258 1000 STREAM 141924 17707 6094622 2024-02-28 05:16:03.275 2024-02-28 05:16:03.275 1000 STREAM 141924 20152 6094623 2024-02-28 05:17:03.286 2024-02-28 05:17:03.286 1000 STREAM 141924 18269 6094630 2024-02-28 05:20:03.293 2024-02-28 05:20:03.293 1000 STREAM 141924 14152 6094632 2024-02-28 05:21:03.289 2024-02-28 05:21:03.289 1000 STREAM 141924 18832 6094234 2024-02-28 04:20:32.336 2024-02-28 04:20:32.336 1000 FEE 441118 18865 6094235 2024-02-28 04:20:32.336 2024-02-28 04:20:32.336 9000 TIP 441118 12356 6094236 2024-02-28 04:20:33.236 2024-02-28 04:20:33.236 1000 FEE 441118 2789 6094237 2024-02-28 04:20:33.236 2024-02-28 04:20:33.236 9000 TIP 441118 19639 6094244 2024-02-28 04:20:34.008 2024-02-28 04:20:34.008 1000 FEE 441118 18220 6094245 2024-02-28 04:20:34.008 2024-02-28 04:20:34.008 9000 TIP 441118 20817 6094246 2024-02-28 04:20:34.199 2024-02-28 04:20:34.199 1000 FEE 441118 2774 6094247 2024-02-28 04:20:34.199 2024-02-28 04:20:34.199 9000 TIP 441118 9992 6094248 2024-02-28 04:20:34.387 2024-02-28 04:20:34.387 1000 FEE 441118 5425 6094249 2024-02-28 04:20:34.387 2024-02-28 04:20:34.387 9000 TIP 441118 19103 6094258 2024-02-28 04:20:35.383 2024-02-28 04:20:35.383 1000 FEE 441118 11621 6094259 2024-02-28 04:20:35.383 2024-02-28 04:20:35.383 9000 TIP 441118 2061 6094260 2024-02-28 04:20:35.579 2024-02-28 04:20:35.579 1000 FEE 441118 6765 6094261 2024-02-28 04:20:35.579 2024-02-28 04:20:35.579 9000 TIP 441118 21493 6094270 2024-02-28 04:20:36.99 2024-02-28 04:20:36.99 1000 FEE 441118 776 6094271 2024-02-28 04:20:36.99 2024-02-28 04:20:36.99 9000 TIP 441118 18919 6094296 2024-02-28 04:20:39.923 2024-02-28 04:20:39.923 1000 FEE 441118 1602 6094297 2024-02-28 04:20:39.923 2024-02-28 04:20:39.923 9000 TIP 441118 5701 6094300 2024-02-28 04:20:40.326 2024-02-28 04:20:40.326 1000 FEE 441118 8287 6094301 2024-02-28 04:20:40.326 2024-02-28 04:20:40.326 9000 TIP 441118 20904 6094314 2024-02-28 04:20:41.99 2024-02-28 04:20:41.99 2000 FEE 441118 1959 6094315 2024-02-28 04:20:41.99 2024-02-28 04:20:41.99 18000 TIP 441118 12272 6094322 2024-02-28 04:20:43.57 2024-02-28 04:20:43.57 1000 FEE 441118 20514 6094323 2024-02-28 04:20:43.57 2024-02-28 04:20:43.57 9000 TIP 441118 21138 6094324 2024-02-28 04:20:43.921 2024-02-28 04:20:43.921 1000 FEE 441118 2609 6094325 2024-02-28 04:20:43.921 2024-02-28 04:20:43.921 9000 TIP 441118 4115 6094336 2024-02-28 04:21:11.795 2024-02-28 04:21:11.795 42100 FEE 441048 17095 6094337 2024-02-28 04:21:11.795 2024-02-28 04:21:11.795 378900 TIP 441048 15594 6094391 2024-02-28 04:22:09.961 2024-02-28 04:22:09.961 21800 FEE 441390 1881 6094392 2024-02-28 04:22:09.961 2024-02-28 04:22:09.961 196200 TIP 441390 1002 6094408 2024-02-28 04:25:17.745 2024-02-28 04:25:17.745 1000 FEE 441449 5427 6094426 2024-02-28 04:31:46.754 2024-02-28 04:31:46.754 1000 FEE 441390 20841 6094427 2024-02-28 04:31:46.754 2024-02-28 04:31:46.754 9000 TIP 441390 20581 6094443 2024-02-28 04:32:39.2 2024-02-28 04:32:39.2 2100 FEE 441372 15521 6094444 2024-02-28 04:32:39.2 2024-02-28 04:32:39.2 18900 TIP 441372 21437 6094459 2024-02-28 04:32:54.324 2024-02-28 04:32:54.324 2100 FEE 441318 2367 6094460 2024-02-28 04:32:54.324 2024-02-28 04:32:54.324 18900 TIP 441318 19633 6094481 2024-02-28 04:34:23.671 2024-02-28 04:34:23.671 10000 FEE 441452 20642 6094482 2024-02-28 04:34:23.671 2024-02-28 04:34:23.671 90000 TIP 441452 21416 6094499 2024-02-28 04:39:44.789 2024-02-28 04:39:44.789 1000 FEE 441388 20280 6094500 2024-02-28 04:39:44.789 2024-02-28 04:39:44.789 9000 TIP 441388 4459 6094537 2024-02-28 04:47:29.218 2024-02-28 04:47:29.218 1000 FEE 441454 13399 6094538 2024-02-28 04:47:29.218 2024-02-28 04:47:29.218 9000 TIP 441454 2195 6094557 2024-02-28 04:50:59.98 2024-02-28 04:50:59.98 1000 FEE 441170 1628 6094558 2024-02-28 04:50:59.98 2024-02-28 04:50:59.98 9000 TIP 441170 13327 6094577 2024-02-28 05:00:22.133 2024-02-28 05:00:22.133 1000 POLL 441333 16289 6094583 2024-02-28 05:03:48.884 2024-02-28 05:03:48.884 800 FEE 440923 19142 6094584 2024-02-28 05:03:48.884 2024-02-28 05:03:48.884 7200 TIP 440923 2674 6094597 2024-02-28 05:07:10.398 2024-02-28 05:07:10.398 1000 POLL 441333 14906 6094616 2024-02-28 05:13:37.64 2024-02-28 05:13:37.64 10000 FEE 441077 18188 6094617 2024-02-28 05:13:37.64 2024-02-28 05:13:37.64 90000 TIP 441077 12291 6094643 2024-02-28 05:25:34.418 2024-02-28 05:25:34.418 10000 FEE 441247 811 6094644 2024-02-28 05:25:34.418 2024-02-28 05:25:34.418 90000 TIP 441247 7425 6094653 2024-02-28 05:29:50.007 2024-02-28 05:29:50.007 2100 FEE 441313 4043 6094654 2024-02-28 05:29:50.007 2024-02-28 05:29:50.007 18900 TIP 441313 27 6094655 2024-02-28 05:29:51.098 2024-02-28 05:29:51.098 2100 FEE 441313 14731 6094656 2024-02-28 05:29:51.098 2024-02-28 05:29:51.098 18900 TIP 441313 9349 6094703 2024-02-28 05:42:29.902 2024-02-28 05:42:29.902 100 FEE 441443 21323 6094704 2024-02-28 05:42:29.902 2024-02-28 05:42:29.902 900 TIP 441443 5852 6094706 2024-02-28 05:42:49.335 2024-02-28 05:42:49.335 100 FEE 440032 2256 6094707 2024-02-28 05:42:49.335 2024-02-28 05:42:49.335 900 TIP 440032 18402 6094746 2024-02-28 05:48:38.726 2024-02-28 05:48:38.726 4000 FEE 441174 16432 6094747 2024-02-28 05:48:38.726 2024-02-28 05:48:38.726 36000 TIP 441174 16259 6094748 2024-02-28 05:48:39.263 2024-02-28 05:48:39.263 36000 FEE 441174 13204 6094749 2024-02-28 05:48:39.263 2024-02-28 05:48:39.263 324000 TIP 441174 16282 6094759 2024-02-28 05:53:23.343 2024-02-28 05:53:23.343 1000 FEE 441498 9982 6094764 2024-02-28 05:53:36.508 2024-02-28 05:53:36.508 900 FEE 441411 18828 6094765 2024-02-28 05:53:36.508 2024-02-28 05:53:36.508 8100 TIP 441411 1039 6094787 2024-02-28 05:55:22.504 2024-02-28 05:55:22.504 1000 FEE 441500 1320 6094792 2024-02-28 05:55:58.847 2024-02-28 05:55:58.847 1000 POLL 441333 20889 6094794 2024-02-28 05:56:07.941 2024-02-28 05:56:07.941 100 FEE 441399 18533 6094795 2024-02-28 05:56:07.941 2024-02-28 05:56:07.941 900 TIP 441399 2329 6094796 2024-02-28 05:56:08.239 2024-02-28 05:56:08.239 900 FEE 441399 16684 6094797 2024-02-28 05:56:08.239 2024-02-28 05:56:08.239 8100 TIP 441399 18717 6094798 2024-02-28 05:56:17.828 2024-02-28 05:56:17.828 9000 FEE 441399 899 6094799 2024-02-28 05:56:17.828 2024-02-28 05:56:17.828 81000 TIP 441399 9476 6094802 2024-02-28 05:56:52.848 2024-02-28 05:56:52.848 900 FEE 441428 4167 6094803 2024-02-28 05:56:52.848 2024-02-28 05:56:52.848 8100 TIP 441428 20183 6094818 2024-02-28 06:01:30.984 2024-02-28 06:01:30.984 28000 DONT_LIKE_THIS 440890 17166 6094839 2024-02-28 06:08:45.512 2024-02-28 06:08:45.512 2100 FEE 441087 9920 6094840 2024-02-28 06:08:45.512 2024-02-28 06:08:45.512 18900 TIP 441087 1488 6094915 2024-02-28 06:19:49.081 2024-02-28 06:19:49.081 2100 FEE 441423 1286 6094916 2024-02-28 06:19:49.081 2024-02-28 06:19:49.081 18900 TIP 441423 974 6094921 2024-02-28 06:20:00.479 2024-02-28 06:20:00.479 2100 FEE 441375 10102 6094922 2024-02-28 06:20:00.479 2024-02-28 06:20:00.479 18900 TIP 441375 1720 6094939 2024-02-28 06:21:23.13 2024-02-28 06:21:23.13 2100 FEE 441050 14818 6094940 2024-02-28 06:21:23.13 2024-02-28 06:21:23.13 18900 TIP 441050 20812 6094283 2024-02-28 04:20:38.124 2024-02-28 04:20:38.124 9000 TIP 441118 15094 6094288 2024-02-28 04:20:39.151 2024-02-28 04:20:39.151 1000 FEE 441118 1426 6094289 2024-02-28 04:20:39.151 2024-02-28 04:20:39.151 9000 TIP 441118 19263 6094306 2024-02-28 04:20:40.934 2024-02-28 04:20:40.934 1000 FEE 441118 17517 6094307 2024-02-28 04:20:40.934 2024-02-28 04:20:40.934 9000 TIP 441118 16753 6094308 2024-02-28 04:20:41.306 2024-02-28 04:20:41.306 1000 FEE 441118 900 6094309 2024-02-28 04:20:41.306 2024-02-28 04:20:41.306 9000 TIP 441118 8326 6094310 2024-02-28 04:20:41.355 2024-02-28 04:20:41.355 1000 FEE 441118 21357 6094311 2024-02-28 04:20:41.355 2024-02-28 04:20:41.355 9000 TIP 441118 19660 6094320 2024-02-28 04:20:43.194 2024-02-28 04:20:43.194 1000 FEE 441118 7809 6094321 2024-02-28 04:20:43.194 2024-02-28 04:20:43.194 9000 TIP 441118 20381 6094328 2024-02-28 04:20:44.619 2024-02-28 04:20:44.619 1000 FEE 441118 20509 6094329 2024-02-28 04:20:44.619 2024-02-28 04:20:44.619 9000 TIP 441118 15326 6094332 2024-02-28 04:20:52.359 2024-02-28 04:20:52.359 50000 FEE 441118 13544 6094333 2024-02-28 04:20:52.359 2024-02-28 04:20:52.359 450000 TIP 441118 8541 6094334 2024-02-28 04:20:56.804 2024-02-28 04:20:56.804 1000 FEE 441445 3411 6094340 2024-02-28 04:21:39.884 2024-02-28 04:21:39.884 1000 FEE 440321 6164 6094341 2024-02-28 04:21:39.884 2024-02-28 04:21:39.884 9000 TIP 440321 21040 6094346 2024-02-28 04:21:41.306 2024-02-28 04:21:41.306 1000 FEE 440321 1483 6094347 2024-02-28 04:21:41.306 2024-02-28 04:21:41.306 9000 TIP 440321 19488 6094417 2024-02-28 04:29:50.228 2024-02-28 04:29:50.228 1000 FEE 441451 14657 6094449 2024-02-28 04:32:40.944 2024-02-28 04:32:40.944 2100 FEE 441372 17221 6094450 2024-02-28 04:32:40.944 2024-02-28 04:32:40.944 18900 TIP 441372 10016 6094455 2024-02-28 04:32:42.72 2024-02-28 04:32:42.72 2100 FEE 441372 11423 6094456 2024-02-28 04:32:42.72 2024-02-28 04:32:42.72 18900 TIP 441372 16536 6094470 2024-02-28 04:33:17.957 2024-02-28 04:33:17.957 2700 FEE 440663 1310 6094471 2024-02-28 04:33:17.957 2024-02-28 04:33:17.957 24300 TIP 440663 6421 6094472 2024-02-28 04:33:18.172 2024-02-28 04:33:18.172 2700 FEE 440663 776 6094473 2024-02-28 04:33:18.172 2024-02-28 04:33:18.172 24300 TIP 440663 8985 6094474 2024-02-28 04:33:18.694 2024-02-28 04:33:18.694 2700 FEE 440663 18678 6094475 2024-02-28 04:33:18.694 2024-02-28 04:33:18.694 24300 TIP 440663 16259 6094476 2024-02-28 04:33:29.795 2024-02-28 04:33:29.795 3000 FEE 441449 21493 6094477 2024-02-28 04:33:29.795 2024-02-28 04:33:29.795 27000 TIP 441449 19303 6094483 2024-02-28 04:34:38.366 2024-02-28 04:34:38.366 1000 FEE 441453 18269 6094501 2024-02-28 04:39:54.94 2024-02-28 04:39:54.94 1000 FEE 441017 18402 6094502 2024-02-28 04:39:54.94 2024-02-28 04:39:54.94 9000 TIP 441017 18235 6094512 2024-02-28 04:42:03.561 2024-02-28 04:42:03.561 1000 FEE 441442 15526 6094513 2024-02-28 04:42:03.561 2024-02-28 04:42:03.561 9000 TIP 441442 20381 6094530 2024-02-28 04:45:44.171 2024-02-28 04:45:44.171 1000 FEE 441462 20257 6094541 2024-02-28 04:47:57.659 2024-02-28 04:47:57.659 1000 FEE 441465 997 6094575 2024-02-28 04:59:08.717 2024-02-28 04:59:08.717 1000 POLL 441333 20225 6094589 2024-02-28 05:04:30.24 2024-02-28 05:04:30.24 800 FEE 440706 4624 6094590 2024-02-28 05:04:30.24 2024-02-28 05:04:30.24 7200 TIP 440706 18836 6094621 2024-02-28 05:15:18.062 2024-02-28 05:15:18.062 1000 POLL 441333 14357 6094637 2024-02-28 05:23:04.931 2024-02-28 05:23:04.931 100000 FEE 441479 11395 6094651 2024-02-28 05:29:18.385 2024-02-28 05:29:18.385 10000 FEE 441342 11515 6094652 2024-02-28 05:29:18.385 2024-02-28 05:29:18.385 90000 TIP 441342 749 6094660 2024-02-28 05:32:36.927 2024-02-28 05:32:36.927 1000 FEE 441484 711 6094678 2024-02-28 05:39:10.336 2024-02-28 05:39:10.336 1000 FEE 441312 2000 6094679 2024-02-28 05:39:10.336 2024-02-28 05:39:10.336 9000 TIP 441312 20710 6094732 2024-02-28 05:44:25.905 2024-02-28 05:44:25.905 1000 FEE 441494 5195 6094740 2024-02-28 05:45:13.016 2024-02-28 05:45:13.016 100 FEE 430123 11329 6094741 2024-02-28 05:45:13.016 2024-02-28 05:45:13.016 900 TIP 430123 2780 6094774 2024-02-28 05:54:16.316 2024-02-28 05:54:16.316 100 FEE 441436 20094 6094775 2024-02-28 05:54:16.316 2024-02-28 05:54:16.316 900 TIP 441436 16754 6094800 2024-02-28 05:56:52.618 2024-02-28 05:56:52.618 100 FEE 441428 777 6094801 2024-02-28 05:56:52.618 2024-02-28 05:56:52.618 900 TIP 441428 2735 6094841 2024-02-28 06:08:45.701 2024-02-28 06:08:45.701 2100 FEE 441087 18518 6094842 2024-02-28 06:08:45.701 2024-02-28 06:08:45.701 18900 TIP 441087 16229 6094864 2024-02-28 06:11:59.38 2024-02-28 06:11:59.38 800 FEE 441491 18717 6094865 2024-02-28 06:11:59.38 2024-02-28 06:11:59.38 7200 TIP 441491 7992 6094879 2024-02-28 06:17:39.183 2024-02-28 06:17:39.183 2100 FEE 441479 21437 6094880 2024-02-28 06:17:39.183 2024-02-28 06:17:39.183 18900 TIP 441479 725 6094908 2024-02-28 06:19:32.276 2024-02-28 06:19:32.276 1000 FEE 441504 4415 6094911 2024-02-28 06:19:41.619 2024-02-28 06:19:41.619 2100 FEE 441437 10536 6094912 2024-02-28 06:19:41.619 2024-02-28 06:19:41.619 18900 TIP 441437 18426 6094941 2024-02-28 06:21:24.542 2024-02-28 06:21:24.542 1000 FEE 437890 2620 6094942 2024-02-28 06:21:24.542 2024-02-28 06:21:24.542 9000 TIP 437890 2961 6094945 2024-02-28 06:21:29.378 2024-02-28 06:21:29.378 2100 FEE 441282 16879 6094946 2024-02-28 06:21:29.378 2024-02-28 06:21:29.378 18900 TIP 441282 20120 6094960 2024-02-28 06:22:01.839 2024-02-28 06:22:01.839 2100 FEE 441396 21619 6094961 2024-02-28 06:22:01.839 2024-02-28 06:22:01.839 18900 TIP 441396 21527 6095020 2024-02-28 06:31:01.014 2024-02-28 06:31:01.014 3300 FEE 441316 5708 6095021 2024-02-28 06:31:01.014 2024-02-28 06:31:01.014 29700 TIP 441316 20871 6095035 2024-02-28 06:31:12.875 2024-02-28 06:31:12.875 2100 FEE 441443 2162 6095036 2024-02-28 06:31:12.875 2024-02-28 06:31:12.875 18900 TIP 441443 20891 6095041 2024-02-28 06:32:25.267 2024-02-28 06:32:25.267 3300 FEE 188490 16966 6095042 2024-02-28 06:32:25.267 2024-02-28 06:32:25.267 29700 TIP 188490 20594 6095109 2024-02-28 07:02:59.056 2024-02-28 07:02:59.056 12500 FEE 441066 5499 6095110 2024-02-28 07:02:59.056 2024-02-28 07:02:59.056 112500 TIP 441066 20674 6095116 2024-02-28 07:04:36.463 2024-02-28 07:04:36.463 2100 FEE 441238 11523 6095117 2024-02-28 07:04:36.463 2024-02-28 07:04:36.463 18900 TIP 441238 18526 6095126 2024-02-28 07:04:39.68 2024-02-28 07:04:39.68 2100 FEE 440725 19576 6095127 2024-02-28 07:04:39.68 2024-02-28 07:04:39.68 18900 TIP 440725 5590 6095128 2024-02-28 07:04:40.731 2024-02-28 07:04:40.731 2100 FEE 441300 651 6095129 2024-02-28 07:04:40.731 2024-02-28 07:04:40.731 18900 TIP 441300 21424 6095140 2024-02-28 07:04:47.071 2024-02-28 07:04:47.071 2100 FEE 441372 13398 6095141 2024-02-28 07:04:47.071 2024-02-28 07:04:47.071 18900 TIP 441372 5703 6095162 2024-02-28 07:06:40.033 2024-02-28 07:06:40.033 1000 FEE 441516 13782 6095163 2024-02-28 07:06:42.046 2024-02-28 07:06:42.046 800 FEE 441241 13575 6095164 2024-02-28 07:06:42.046 2024-02-28 07:06:42.046 7200 TIP 441241 18392 6095183 2024-02-28 07:08:59.617 2024-02-28 07:08:59.617 2100 FEE 440713 1474 6095184 2024-02-28 07:08:59.617 2024-02-28 07:08:59.617 18900 TIP 440713 8133 6095190 2024-02-28 07:11:47.754 2024-02-28 07:11:47.754 21000 DONT_LIKE_THIS 441472 18378 6095202 2024-02-28 07:14:44.885 2024-02-28 07:14:44.885 2100 FEE 441482 5171 6095203 2024-02-28 07:14:44.885 2024-02-28 07:14:44.885 18900 TIP 441482 7766 6095208 2024-02-28 07:17:30.909 2024-02-28 07:17:30.909 100 FEE 440870 8245 6095209 2024-02-28 07:17:30.909 2024-02-28 07:17:30.909 900 TIP 440870 20106 6095216 2024-02-28 07:19:47.633 2024-02-28 07:19:47.633 1000 FEE 441522 695 6095243 2024-02-28 07:29:36.898 2024-02-28 07:29:36.898 0 FEE 441523 9177 6095266 2024-02-28 07:32:56.269 2024-02-28 07:32:56.269 2500 FEE 441442 10352 6095267 2024-02-28 07:32:56.269 2024-02-28 07:32:56.269 22500 TIP 441442 18380 6095283 2024-02-28 07:33:45.446 2024-02-28 07:33:45.446 2500 FEE 441445 17523 6095284 2024-02-28 07:33:45.446 2024-02-28 07:33:45.446 22500 TIP 441445 14295 6095289 2024-02-28 07:33:46.446 2024-02-28 07:33:46.446 2500 FEE 441445 12049 6095290 2024-02-28 07:33:46.446 2024-02-28 07:33:46.446 22500 TIP 441445 10283 6094432 2024-02-28 04:32:08.788 2024-02-28 04:32:08.788 9000 TIP 441375 11821 6094447 2024-02-28 04:32:39.806 2024-02-28 04:32:39.806 2100 FEE 441372 16532 6094448 2024-02-28 04:32:39.806 2024-02-28 04:32:39.806 18900 TIP 441372 17042 6094496 2024-02-28 04:39:02.502 2024-02-28 04:39:02.502 1000 FEE 441399 8713 6094497 2024-02-28 04:39:02.502 2024-02-28 04:39:02.502 9000 TIP 441399 19235 6094514 2024-02-28 04:42:38.115 2024-02-28 04:42:38.115 3100 FEE 441453 13406 6094515 2024-02-28 04:42:38.115 2024-02-28 04:42:38.115 27900 TIP 441453 20901 6094520 2024-02-28 04:43:57.869 2024-02-28 04:43:57.869 1000 FEE 441460 631 6094531 2024-02-28 04:46:03.557 2024-02-28 04:46:03.557 1000 FEE 441463 17838 6094543 2024-02-28 04:48:07.576 2024-02-28 04:48:07.576 2500 FEE 441372 866 6094544 2024-02-28 04:48:07.576 2024-02-28 04:48:07.576 22500 TIP 441372 16214 6094545 2024-02-28 04:48:08.048 2024-02-28 04:48:08.048 2500 FEE 441372 18772 6094546 2024-02-28 04:48:08.048 2024-02-28 04:48:08.048 22500 TIP 441372 15351 6094547 2024-02-28 04:48:22.587 2024-02-28 04:48:22.587 100 FEE 441443 720 6094548 2024-02-28 04:48:22.587 2024-02-28 04:48:22.587 900 TIP 441443 20058 6094559 2024-02-28 04:51:01.452 2024-02-28 04:51:01.452 100 FEE 440350 15226 6094560 2024-02-28 04:51:01.452 2024-02-28 04:51:01.452 900 TIP 440350 1428 6094563 2024-02-28 04:52:46.929 2024-02-28 04:52:46.929 1000 FEE 441468 6749 6094593 2024-02-28 05:04:31.872 2024-02-28 05:04:31.872 1000 POLL 441333 9529 6094607 2024-02-28 05:11:32.578 2024-02-28 05:11:32.578 10000 FEE 441300 631 6094608 2024-02-28 05:11:32.578 2024-02-28 05:11:32.578 90000 TIP 441300 19449 6094610 2024-02-28 05:12:07.723 2024-02-28 05:12:07.723 1000 FEE 441475 2780 6094624 2024-02-28 05:17:15.577 2024-02-28 05:17:15.577 1000 FEE 441477 9365 6094633 2024-02-28 05:21:08.608 2024-02-28 05:21:08.608 0 FEE 85385 1801 6094662 2024-02-28 05:33:16.651 2024-02-28 05:33:16.651 10000 FEE 441370 9036 6094663 2024-02-28 05:33:16.651 2024-02-28 05:33:16.651 90000 TIP 441370 1729 6094675 2024-02-28 05:38:39.766 2024-02-28 05:38:39.766 10000 FEE 441489 5708 6094676 2024-02-28 05:38:39.766 2024-02-28 05:38:39.766 90000 TIP 441489 13169 6094700 2024-02-28 05:41:46.013 2024-02-28 05:41:46.013 0 FEE 441491 1044 6094723 2024-02-28 05:43:54.234 2024-02-28 05:43:54.234 100 FEE 433077 13574 6094724 2024-02-28 05:43:54.234 2024-02-28 05:43:54.234 900 TIP 433077 9969 6094737 2024-02-28 05:45:02.706 2024-02-28 05:45:02.706 100 FEE 431141 11263 6094738 2024-02-28 05:45:02.706 2024-02-28 05:45:02.706 900 TIP 431141 11423 6094752 2024-02-28 05:50:02.653 2024-02-28 05:50:02.653 1000 FEE 441497 20970 6094757 2024-02-28 05:53:07.583 2024-02-28 05:53:07.583 4000 FEE 441433 10818 6094758 2024-02-28 05:53:07.583 2024-02-28 05:53:07.583 36000 TIP 441433 1723 6094781 2024-02-28 05:55:18.234 2024-02-28 05:55:18.234 100 FEE 441439 10818 6094782 2024-02-28 05:55:18.234 2024-02-28 05:55:18.234 900 TIP 441439 6148 6094790 2024-02-28 05:55:44.627 2024-02-28 05:55:44.627 900 FEE 441341 9331 6094791 2024-02-28 05:55:44.627 2024-02-28 05:55:44.627 8100 TIP 441341 20586 6094831 2024-02-28 06:07:56.229 2024-02-28 06:07:56.229 2100 FEE 441333 19193 6094832 2024-02-28 06:07:56.229 2024-02-28 06:07:56.229 18900 TIP 441333 634 6094834 2024-02-28 06:08:04.013 2024-02-28 06:08:04.013 1000 POLL 441333 8544 6094845 2024-02-28 06:08:46.124 2024-02-28 06:08:46.124 2100 FEE 441087 19839 6094846 2024-02-28 06:08:46.124 2024-02-28 06:08:46.124 18900 TIP 441087 18040 6094851 2024-02-28 06:08:51.02 2024-02-28 06:08:51.02 2100 FEE 441091 18124 6094852 2024-02-28 06:08:51.02 2024-02-28 06:08:51.02 18900 TIP 441091 19929 6094853 2024-02-28 06:08:51.3 2024-02-28 06:08:51.3 2100 FEE 441091 11820 6094854 2024-02-28 06:08:51.3 2024-02-28 06:08:51.3 18900 TIP 441091 11561 6094896 2024-02-28 06:19:02.379 2024-02-28 06:19:02.379 2100 FEE 441439 1298 6094897 2024-02-28 06:19:02.379 2024-02-28 06:19:02.379 18900 TIP 441439 5708 6094903 2024-02-28 06:19:08.553 2024-02-28 06:19:08.553 2100 FEE 441424 6594 6094904 2024-02-28 06:19:08.553 2024-02-28 06:19:08.553 18900 TIP 441424 19235 6094949 2024-02-28 06:21:45.213 2024-02-28 06:21:45.213 100 FEE 441333 660 6094950 2024-02-28 06:21:45.213 2024-02-28 06:21:45.213 900 TIP 441333 9363 6094953 2024-02-28 06:21:49.93 2024-02-28 06:21:49.93 2100 FEE 441333 19259 6094954 2024-02-28 06:21:49.93 2024-02-28 06:21:49.93 18900 TIP 441333 13574 6094957 2024-02-28 06:21:57.308 2024-02-28 06:21:57.308 1000 POLL 441333 19289 6094965 2024-02-28 06:22:07.691 2024-02-28 06:22:07.691 2100 FEE 441341 20370 6094966 2024-02-28 06:22:07.691 2024-02-28 06:22:07.691 18900 TIP 441341 12289 6094970 2024-02-28 06:22:47.519 2024-02-28 06:22:47.519 2100 FEE 441403 2722 6094971 2024-02-28 06:22:47.519 2024-02-28 06:22:47.519 18900 TIP 441403 1620 6094979 2024-02-28 06:23:38.032 2024-02-28 06:23:38.032 2100 FEE 441490 21274 6094980 2024-02-28 06:23:38.032 2024-02-28 06:23:38.032 18900 TIP 441490 17321 6094981 2024-02-28 06:23:57.809 2024-02-28 06:23:57.809 2100 FEE 441492 12160 6094982 2024-02-28 06:23:57.809 2024-02-28 06:23:57.809 18900 TIP 441492 5806 6094986 2024-02-28 06:24:11.395 2024-02-28 06:24:11.395 2100 FEE 441409 19690 6094987 2024-02-28 06:24:11.395 2024-02-28 06:24:11.395 18900 TIP 441409 20539 6094999 2024-02-28 06:28:44.725 2024-02-28 06:28:44.725 1000 FEE 441507 1478 6095031 2024-02-28 06:31:10.159 2024-02-28 06:31:10.159 2100 FEE 441473 11298 6095032 2024-02-28 06:31:10.159 2024-02-28 06:31:10.159 18900 TIP 441473 9655 6095045 2024-02-28 06:32:25.681 2024-02-28 06:32:25.681 3300 FEE 188490 2711 6095046 2024-02-28 06:32:25.681 2024-02-28 06:32:25.681 29700 TIP 188490 11288 6095061 2024-02-28 06:42:22.447 2024-02-28 06:42:22.447 1000 POLL 440725 14650 6095069 2024-02-28 06:47:13.678 2024-02-28 06:47:13.678 1900 FEE 441411 18351 6095070 2024-02-28 06:47:13.678 2024-02-28 06:47:13.678 17100 TIP 441411 2013 6095088 2024-02-28 06:56:33.096 2024-02-28 06:56:33.096 2100 FEE 441422 20163 6095089 2024-02-28 06:56:33.096 2024-02-28 06:56:33.096 18900 TIP 441422 14247 6095092 2024-02-28 06:58:15.467 2024-02-28 06:58:15.467 1000 FEE 441512 1985 6095096 2024-02-28 06:59:12.366 2024-02-28 06:59:12.366 10000 FEE 441489 2022 6095097 2024-02-28 06:59:12.366 2024-02-28 06:59:12.366 90000 TIP 441489 4064 6095142 2024-02-28 07:04:47.848 2024-02-28 07:04:47.848 2100 FEE 440587 658 6095143 2024-02-28 07:04:47.848 2024-02-28 07:04:47.848 18900 TIP 440587 1785 6095146 2024-02-28 07:04:57.808 2024-02-28 07:04:57.808 2100 FEE 441087 16830 6095147 2024-02-28 07:04:57.808 2024-02-28 07:04:57.808 18900 TIP 441087 20062 6095167 2024-02-28 07:06:42.387 2024-02-28 07:06:42.387 800 FEE 441241 10311 6095168 2024-02-28 07:06:42.387 2024-02-28 07:06:42.387 7200 TIP 441241 7869 6095231 2024-02-28 07:26:48.635 2024-02-28 07:26:48.635 2500 FEE 441399 1712 6095232 2024-02-28 07:26:48.635 2024-02-28 07:26:48.635 22500 TIP 441399 20775 6095233 2024-02-28 07:26:59.058 2024-02-28 07:26:59.058 1000 FEE 441525 21624 6095234 2024-02-28 07:27:02.697 2024-02-28 07:27:02.697 4200 FEE 441077 1740 6095235 2024-02-28 07:27:02.697 2024-02-28 07:27:02.697 37800 TIP 441077 17446 6095244 2024-02-28 07:29:59.292 2024-02-28 07:29:59.292 1000 FEE 441526 8173 6095256 2024-02-28 07:30:07.794 2024-02-28 07:30:07.794 1000 FEE 441527 1596 6095264 2024-02-28 07:32:56.094 2024-02-28 07:32:56.094 2500 FEE 441442 19138 6095265 2024-02-28 07:32:56.094 2024-02-28 07:32:56.094 22500 TIP 441442 21070 6095274 2024-02-28 07:33:42.265 2024-02-28 07:33:42.265 1000 FEE 441530 21072 6095277 2024-02-28 07:33:44.761 2024-02-28 07:33:44.761 2500 FEE 441445 18815 6095278 2024-02-28 07:33:44.761 2024-02-28 07:33:44.761 22500 TIP 441445 19352 6095287 2024-02-28 07:33:45.643 2024-02-28 07:33:45.643 2500 FEE 441445 21339 6095288 2024-02-28 07:33:45.643 2024-02-28 07:33:45.643 22500 TIP 441445 1030 6095295 2024-02-28 07:35:48.269 2024-02-28 07:35:48.269 1000 FEE 441531 18076 6095320 2024-02-28 07:43:12.497 2024-02-28 07:43:12.497 1000 POLL 441333 12779 6094494 2024-02-28 04:38:03.788 2024-02-28 04:38:03.788 1000 STREAM 141924 2367 6094498 2024-02-28 04:39:03.825 2024-02-28 04:39:03.825 1000 STREAM 141924 12291 6094516 2024-02-28 04:43:03.856 2024-02-28 04:43:03.856 1000 STREAM 141924 11328 6094532 2024-02-28 04:46:04.06 2024-02-28 04:46:04.06 1000 STREAM 141924 14651 6094504 2024-02-28 04:40:03.858 2024-02-28 04:40:03.858 1000 STREAM 141924 2056 6094521 2024-02-28 04:44:03.863 2024-02-28 04:44:03.863 1000 STREAM 141924 1817 6094534 2024-02-28 04:47:04.072 2024-02-28 04:47:04.072 1000 STREAM 141924 18270 6094542 2024-02-28 04:48:04.058 2024-02-28 04:48:04.058 1000 STREAM 141924 9833 6094579 2024-02-28 05:02:03.174 2024-02-28 05:02:03.174 1000 STREAM 141924 20775 6094581 2024-02-28 05:03:03.162 2024-02-28 05:03:03.162 1000 STREAM 141924 716 6094598 2024-02-28 05:08:03.186 2024-02-28 05:08:03.186 1000 STREAM 141924 15200 6094602 2024-02-28 05:10:03.252 2024-02-28 05:10:03.252 1000 STREAM 141924 11750 6094603 2024-02-28 05:11:03.218 2024-02-28 05:11:03.218 1000 STREAM 141924 6430 6094609 2024-02-28 05:12:03.233 2024-02-28 05:12:03.233 1000 STREAM 141924 18016 6094613 2024-02-28 05:13:03.234 2024-02-28 05:13:03.234 1000 STREAM 141924 634 6094618 2024-02-28 05:14:03.25 2024-02-28 05:14:03.25 1000 STREAM 141924 1772 6094626 2024-02-28 05:18:03.282 2024-02-28 05:18:03.282 1000 STREAM 141924 20616 6094627 2024-02-28 05:19:03.287 2024-02-28 05:19:03.287 1000 STREAM 141924 18984 6094671 2024-02-28 05:37:03.34 2024-02-28 05:37:03.34 1000 STREAM 141924 9421 6094673 2024-02-28 05:38:03.328 2024-02-28 05:38:03.328 1000 STREAM 141924 15337 6094731 2024-02-28 05:44:03.381 2024-02-28 05:44:03.381 1000 STREAM 141924 18705 6094596 2024-02-28 05:07:03.327 2024-02-28 05:07:03.327 1000 STREAM 141924 20972 6094635 2024-02-28 05:22:03.43 2024-02-28 05:22:03.43 1000 STREAM 141924 21620 6094639 2024-02-28 05:24:03.432 2024-02-28 05:24:03.432 1000 STREAM 141924 11145 6094640 2024-02-28 05:25:03.437 2024-02-28 05:25:03.437 1000 STREAM 141924 1480 6094646 2024-02-28 05:26:03.436 2024-02-28 05:26:03.436 1000 STREAM 141924 5195 6094647 2024-02-28 05:27:03.446 2024-02-28 05:27:03.446 1000 STREAM 141924 3347 6094648 2024-02-28 05:28:03.463 2024-02-28 05:28:03.463 1000 STREAM 141924 17184 6094650 2024-02-28 05:29:03.464 2024-02-28 05:29:03.464 1000 STREAM 141924 17552 6094658 2024-02-28 05:31:03.479 2024-02-28 05:31:03.479 1000 STREAM 141924 11164 6094659 2024-02-28 05:32:03.464 2024-02-28 05:32:03.464 1000 STREAM 141924 15196 6094661 2024-02-28 05:33:03.485 2024-02-28 05:33:03.485 1000 STREAM 141924 1478 6094664 2024-02-28 05:34:03.494 2024-02-28 05:34:03.494 1000 STREAM 141924 5791 6094636 2024-02-28 05:23:03.419 2024-02-28 05:23:03.419 1000 STREAM 141924 21430 6094657 2024-02-28 05:30:03.472 2024-02-28 05:30:03.472 1000 STREAM 141924 1173 6094666 2024-02-28 05:35:03.501 2024-02-28 05:35:03.501 1000 STREAM 141924 8472 6094667 2024-02-28 05:36:03.499 2024-02-28 05:36:03.499 1000 STREAM 141924 9332 6094677 2024-02-28 05:39:03.334 2024-02-28 05:39:03.334 1000 STREAM 141924 11898 6094682 2024-02-28 05:40:03.349 2024-02-28 05:40:03.349 1000 STREAM 141924 1237 6094692 2024-02-28 05:41:03.343 2024-02-28 05:41:03.343 1000 STREAM 141924 1751 6094701 2024-02-28 05:42:03.383 2024-02-28 05:42:03.383 1000 STREAM 141924 17201 6094710 2024-02-28 05:43:03.368 2024-02-28 05:43:03.368 1000 STREAM 141924 21026 6094739 2024-02-28 05:45:03.369 2024-02-28 05:45:03.369 1000 STREAM 141924 17541 6094754 2024-02-28 05:51:03.439 2024-02-28 05:51:03.439 1000 STREAM 141924 16942 6094755 2024-02-28 05:52:03.409 2024-02-28 05:52:03.409 1000 STREAM 141924 13378 6094780 2024-02-28 05:55:03.43 2024-02-28 05:55:03.43 1000 STREAM 141924 670 6094793 2024-02-28 05:56:03.434 2024-02-28 05:56:03.434 1000 STREAM 141924 16124 6094806 2024-02-28 05:57:03.455 2024-02-28 05:57:03.455 1000 STREAM 141924 18232 6094814 2024-02-28 06:00:03.453 2024-02-28 06:00:03.453 1000 STREAM 141924 21422 6094861 2024-02-28 06:09:03.511 2024-02-28 06:09:03.511 1000 STREAM 141924 18877 6094862 2024-02-28 06:10:03.514 2024-02-28 06:10:03.514 1000 STREAM 141924 9261 6094863 2024-02-28 06:11:03.514 2024-02-28 06:11:03.514 1000 STREAM 141924 6499 6094866 2024-02-28 06:12:03.527 2024-02-28 06:12:03.527 1000 STREAM 141924 20450 6094871 2024-02-28 06:15:03.544 2024-02-28 06:15:03.544 1000 STREAM 141924 20602 6094873 2024-02-28 06:16:03.546 2024-02-28 06:16:03.546 1000 STREAM 141924 1652 6094898 2024-02-28 06:19:03.557 2024-02-28 06:19:03.557 1000 STREAM 141924 16939 6094934 2024-02-28 06:21:03.561 2024-02-28 06:21:03.561 1000 STREAM 141924 12808 6094964 2024-02-28 06:22:03.593 2024-02-28 06:22:03.593 1000 STREAM 141924 16858 6094974 2024-02-28 06:23:03.57 2024-02-28 06:23:03.57 1000 STREAM 141924 6335 6094983 2024-02-28 06:24:03.573 2024-02-28 06:24:03.573 1000 STREAM 141924 782 6094992 2024-02-28 06:25:03.578 2024-02-28 06:25:03.578 1000 STREAM 141924 20254 6094995 2024-02-28 06:26:03.573 2024-02-28 06:26:03.573 1000 STREAM 141924 4292 6094997 2024-02-28 06:27:03.575 2024-02-28 06:27:03.575 1000 STREAM 141924 14295 6094998 2024-02-28 06:28:03.588 2024-02-28 06:28:03.588 1000 STREAM 141924 5195 6095026 2024-02-28 06:31:03.613 2024-02-28 06:31:03.613 1000 STREAM 141924 1741 6095039 2024-02-28 06:32:03.602 2024-02-28 06:32:03.602 1000 STREAM 141924 18772 6095052 2024-02-28 06:34:03.613 2024-02-28 06:34:03.613 1000 STREAM 141924 21274 6095053 2024-02-28 06:35:03.613 2024-02-28 06:35:03.613 1000 STREAM 141924 19863 6095054 2024-02-28 06:36:03.613 2024-02-28 06:36:03.613 1000 STREAM 141924 8726 6094684 2024-02-28 05:40:13.231 2024-02-28 05:40:13.231 9000 TIP 441397 4177 6094698 2024-02-28 05:41:16.177 2024-02-28 05:41:16.177 100 FEE 441473 18809 6094699 2024-02-28 05:41:16.177 2024-02-28 05:41:16.177 900 TIP 441473 14267 6094702 2024-02-28 05:42:23.344 2024-02-28 05:42:23.344 1000 FEE 441492 19770 6094727 2024-02-28 05:44:00.387 2024-02-28 05:44:00.387 4200 FEE 441300 21441 6094728 2024-02-28 05:44:00.387 2024-02-28 05:44:00.387 37800 TIP 441300 18280 6094751 2024-02-28 05:49:57.854 2024-02-28 05:49:57.854 1000 FEE 441496 4102 6094760 2024-02-28 05:53:35.782 2024-02-28 05:53:35.782 10000 FEE 441479 15690 6094761 2024-02-28 05:53:35.782 2024-02-28 05:53:35.782 90000 TIP 441479 17639 6094766 2024-02-28 05:53:36.725 2024-02-28 05:53:36.725 1000 FEE 441499 940 6094772 2024-02-28 05:54:10.45 2024-02-28 05:54:10.45 100 FEE 441425 2046 6094773 2024-02-28 05:54:10.45 2024-02-28 05:54:10.45 900 TIP 441425 14905 6094783 2024-02-28 05:55:18.335 2024-02-28 05:55:18.335 900 FEE 441439 16594 6094784 2024-02-28 05:55:18.335 2024-02-28 05:55:18.335 8100 TIP 441439 6041 6094872 2024-02-28 06:15:48.459 2024-02-28 06:15:48.459 1000 FEE 441502 21334 6094881 2024-02-28 06:17:42.26 2024-02-28 06:17:42.26 2100 FEE 441436 18919 6094882 2024-02-28 06:17:42.26 2024-02-28 06:17:42.26 18900 TIP 441436 18403 6094885 2024-02-28 06:17:49.598 2024-02-28 06:17:49.598 2100 FEE 441411 1428 6094886 2024-02-28 06:17:49.598 2024-02-28 06:17:49.598 18900 TIP 441411 2508 6094892 2024-02-28 06:18:29.194 2024-02-28 06:18:29.194 2100 FEE 441489 16633 6094893 2024-02-28 06:18:29.194 2024-02-28 06:18:29.194 18900 TIP 441489 20788 6094901 2024-02-28 06:19:05.652 2024-02-28 06:19:05.652 2100 FEE 441436 14122 6094902 2024-02-28 06:19:05.652 2024-02-28 06:19:05.652 18900 TIP 441436 19533 6094924 2024-02-28 06:20:39.076 2024-02-28 06:20:39.076 2100 FEE 440587 14503 6094925 2024-02-28 06:20:39.076 2024-02-28 06:20:39.076 18900 TIP 440587 20730 6094943 2024-02-28 06:21:25.37 2024-02-28 06:21:25.37 2100 FEE 441192 7760 6094944 2024-02-28 06:21:25.37 2024-02-28 06:21:25.37 18900 TIP 441192 16598 6094969 2024-02-28 06:22:35.742 2024-02-28 06:22:35.742 1000 FEE 441505 1429 6095014 2024-02-28 06:30:58.918 2024-02-28 06:30:58.918 3300 FEE 441320 9348 6095015 2024-02-28 06:30:58.918 2024-02-28 06:30:58.918 29700 TIP 441320 20555 6095077 2024-02-28 06:50:07.336 2024-02-28 06:50:07.336 2100 FEE 441478 16442 6095078 2024-02-28 06:50:07.336 2024-02-28 06:50:07.336 18900 TIP 441478 1490 6095080 2024-02-28 06:51:55.525 2024-02-28 06:51:55.525 2100 FEE 441489 9335 6095081 2024-02-28 06:51:55.525 2024-02-28 06:51:55.525 18900 TIP 441489 21466 6095120 2024-02-28 07:04:37.487 2024-02-28 07:04:37.487 700 FEE 441475 20023 6095121 2024-02-28 07:04:37.487 2024-02-28 07:04:37.487 6300 TIP 441475 15762 6095122 2024-02-28 07:04:38.198 2024-02-28 07:04:38.198 10000 FEE 441482 13399 6095123 2024-02-28 07:04:38.198 2024-02-28 07:04:38.198 90000 TIP 441482 9758 6095144 2024-02-28 07:04:49.57 2024-02-28 07:04:49.57 2100 FEE 440663 20970 6095145 2024-02-28 07:04:49.57 2024-02-28 07:04:49.57 18900 TIP 440663 10102 6095152 2024-02-28 07:05:00.218 2024-02-28 07:05:00.218 2100 FEE 441411 12024 6095153 2024-02-28 07:05:00.218 2024-02-28 07:05:00.218 18900 TIP 441411 16267 6095175 2024-02-28 07:07:59.85 2024-02-28 07:07:59.85 2100 FEE 440701 1135 6095176 2024-02-28 07:07:59.85 2024-02-28 07:07:59.85 18900 TIP 440701 1726 6095182 2024-02-28 07:08:56.259 2024-02-28 07:08:56.259 1000 FEE 441517 18511 6095195 2024-02-28 07:13:39.502 2024-02-28 07:13:39.502 2100 FEE 441038 11491 6095196 2024-02-28 07:13:39.502 2024-02-28 07:13:39.502 18900 TIP 441038 4474 6095198 2024-02-28 07:14:28.227 2024-02-28 07:14:28.227 5000 FEE 441087 9331 6095199 2024-02-28 07:14:28.227 2024-02-28 07:14:28.227 45000 TIP 441087 6160 6095221 2024-02-28 07:21:47.789 2024-02-28 07:21:47.789 1000 FEE 441523 18208 6095262 2024-02-28 07:32:55.929 2024-02-28 07:32:55.929 2500 FEE 441442 7772 6095263 2024-02-28 07:32:55.929 2024-02-28 07:32:55.929 22500 TIP 441442 4250 6095270 2024-02-28 07:32:57.908 2024-02-28 07:32:57.908 2500 FEE 441442 17953 6095271 2024-02-28 07:32:57.908 2024-02-28 07:32:57.908 22500 TIP 441442 759 6095299 2024-02-28 07:37:58.496 2024-02-28 07:37:58.496 1000 FEE 441514 9334 6095300 2024-02-28 07:37:58.496 2024-02-28 07:37:58.496 9000 TIP 441514 21070 6095308 2024-02-28 07:41:32.899 2024-02-28 07:41:32.899 2100 FEE 441498 20495 6095309 2024-02-28 07:41:32.899 2024-02-28 07:41:32.899 18900 TIP 441498 5195 6095313 2024-02-28 07:42:50.597 2024-02-28 07:42:50.597 1000 FEE 441523 8535 6095314 2024-02-28 07:42:50.597 2024-02-28 07:42:50.597 9000 TIP 441523 17927 6095323 2024-02-28 07:44:07.544 2024-02-28 07:44:07.544 1000 FEE 441536 2088 6095332 2024-02-28 07:44:10.012 2024-02-28 07:44:10.012 2500 FEE 441534 987 6095333 2024-02-28 07:44:10.012 2024-02-28 07:44:10.012 22500 TIP 441534 21323 6095340 2024-02-28 07:44:10.564 2024-02-28 07:44:10.564 2500 FEE 441534 16848 6095341 2024-02-28 07:44:10.564 2024-02-28 07:44:10.564 22500 TIP 441534 21338 6095342 2024-02-28 07:44:10.726 2024-02-28 07:44:10.726 2500 FEE 441534 11491 6095343 2024-02-28 07:44:10.726 2024-02-28 07:44:10.726 22500 TIP 441534 15148 6095387 2024-02-28 07:45:31.683 2024-02-28 07:45:31.683 2500 FEE 441535 4650 6095388 2024-02-28 07:45:31.683 2024-02-28 07:45:31.683 22500 TIP 441535 1273 6095391 2024-02-28 07:45:32.448 2024-02-28 07:45:32.448 2500 FEE 441535 11378 6095392 2024-02-28 07:45:32.448 2024-02-28 07:45:32.448 22500 TIP 441535 15271 6095403 2024-02-28 07:47:28.763 2024-02-28 07:47:28.763 2500 FEE 441445 20681 6095404 2024-02-28 07:47:28.763 2024-02-28 07:47:28.763 22500 TIP 441445 18313 6095405 2024-02-28 07:47:28.91 2024-02-28 07:47:28.91 2500 FEE 441445 667 6095406 2024-02-28 07:47:28.91 2024-02-28 07:47:28.91 22500 TIP 441445 14225 6094712 2024-02-28 05:43:08.846 2024-02-28 05:43:08.846 900 TIP 437808 16341 6094715 2024-02-28 05:43:24.318 2024-02-28 05:43:24.318 100 FEE 435144 9494 6094716 2024-02-28 05:43:24.318 2024-02-28 05:43:24.318 900 TIP 435144 19500 6094733 2024-02-28 05:44:42.189 2024-02-28 05:44:42.189 100 FEE 432817 21062 6094734 2024-02-28 05:44:42.189 2024-02-28 05:44:42.189 900 TIP 432817 9336 6094785 2024-02-28 05:55:20.853 2024-02-28 05:55:20.853 4000 FEE 441365 16194 6094786 2024-02-28 05:55:20.853 2024-02-28 05:55:20.853 36000 TIP 441365 21048 6094809 2024-02-28 05:57:35.767 2024-02-28 05:57:35.767 900 FEE 441456 19281 6094810 2024-02-28 05:57:35.767 2024-02-28 05:57:35.767 8100 TIP 441456 13042 6094819 2024-02-28 06:01:34.676 2024-02-28 06:01:34.676 2100 FEE 440972 1737 6094820 2024-02-28 06:01:34.676 2024-02-28 06:01:34.676 18900 TIP 440972 5708 6094827 2024-02-28 06:07:55.468 2024-02-28 06:07:55.468 2100 FEE 441333 16341 6094828 2024-02-28 06:07:55.468 2024-02-28 06:07:55.468 18900 TIP 441333 9342 6094847 2024-02-28 06:08:46.778 2024-02-28 06:08:46.778 2100 FEE 441087 18727 6094848 2024-02-28 06:08:46.778 2024-02-28 06:08:46.778 18900 TIP 441087 19888 6094857 2024-02-28 06:08:51.731 2024-02-28 06:08:51.731 2100 FEE 441091 20706 6094858 2024-02-28 06:08:51.731 2024-02-28 06:08:51.731 18900 TIP 441091 7983 6094859 2024-02-28 06:08:52.014 2024-02-28 06:08:52.014 2100 FEE 441091 14376 6094860 2024-02-28 06:08:52.014 2024-02-28 06:08:52.014 18900 TIP 441091 20738 6094889 2024-02-28 06:18:01.805 2024-02-28 06:18:01.805 2100 FEE 441422 14385 6094890 2024-02-28 06:18:01.805 2024-02-28 06:18:01.805 18900 TIP 441422 17707 6094894 2024-02-28 06:18:42.336 2024-02-28 06:18:42.336 2100 FEE 441479 21555 6094895 2024-02-28 06:18:42.336 2024-02-28 06:18:42.336 18900 TIP 441479 19531 6094919 2024-02-28 06:19:59.701 2024-02-28 06:19:59.701 2100 FEE 441372 16948 6094920 2024-02-28 06:19:59.701 2024-02-28 06:19:59.701 18900 TIP 441372 9421 6094932 2024-02-28 06:20:49.722 2024-02-28 06:20:49.722 2100 FEE 440985 15146 6094933 2024-02-28 06:20:49.722 2024-02-28 06:20:49.722 18900 TIP 440985 21026 6094947 2024-02-28 06:21:32.805 2024-02-28 06:21:32.805 2100 FEE 441342 9364 6094948 2024-02-28 06:21:32.805 2024-02-28 06:21:32.805 18900 TIP 441342 21400 6094967 2024-02-28 06:22:09.569 2024-02-28 06:22:09.569 2100 FEE 441455 7766 6094968 2024-02-28 06:22:09.569 2024-02-28 06:22:09.569 18900 TIP 441455 19322 6094975 2024-02-28 06:23:08.039 2024-02-28 06:23:08.039 2100 FEE 440891 14122 6094976 2024-02-28 06:23:08.039 2024-02-28 06:23:08.039 18900 TIP 440891 1697 6094990 2024-02-28 06:24:23.08 2024-02-28 06:24:23.08 2100 FEE 441346 12721 6094991 2024-02-28 06:24:23.08 2024-02-28 06:24:23.08 18900 TIP 441346 20208 6094993 2024-02-28 06:25:14.938 2024-02-28 06:25:14.938 2100 FEE 441384 1141 6094994 2024-02-28 06:25:14.938 2024-02-28 06:25:14.938 18900 TIP 441384 21012 6095001 2024-02-28 06:29:13.739 2024-02-28 06:29:13.739 2100 FEE 441425 19909 6095002 2024-02-28 06:29:13.739 2024-02-28 06:29:13.739 18900 TIP 441425 9177 6095005 2024-02-28 06:29:29.771 2024-02-28 06:29:29.771 2100 FEE 441400 20730 6095006 2024-02-28 06:29:29.771 2024-02-28 06:29:29.771 18900 TIP 441400 19488 6095009 2024-02-28 06:29:31.547 2024-02-28 06:29:31.547 2100 FEE 441449 6653 6095010 2024-02-28 06:29:31.547 2024-02-28 06:29:31.547 18900 TIP 441449 12158 6095029 2024-02-28 06:31:09.845 2024-02-28 06:31:09.845 2100 FEE 441472 19633 6095030 2024-02-28 06:31:09.845 2024-02-28 06:31:09.845 18900 TIP 441472 20272 6095033 2024-02-28 06:31:11.005 2024-02-28 06:31:11.005 2100 FEE 441482 18313 6095034 2024-02-28 06:31:11.005 2024-02-28 06:31:11.005 18900 TIP 441482 859 6095037 2024-02-28 06:31:51.167 2024-02-28 06:31:51.167 3300 FEE 441272 19352 6095038 2024-02-28 06:31:51.167 2024-02-28 06:31:51.167 29700 TIP 441272 19662 6095064 2024-02-28 06:44:29.511 2024-02-28 06:44:29.511 1000 POLL 441333 669 6095072 2024-02-28 06:48:03.643 2024-02-28 06:48:03.643 1000 FEE 441510 20108 6095098 2024-02-28 06:59:25.081 2024-02-28 06:59:25.081 1000 FEE 440692 18518 6095099 2024-02-28 06:59:25.081 2024-02-28 06:59:25.081 9000 TIP 440692 1611 6095103 2024-02-28 07:00:13.875 2024-02-28 07:00:13.875 2100 FEE 441512 4084 6095104 2024-02-28 07:00:13.875 2024-02-28 07:00:13.875 18900 TIP 441512 19930 6095118 2024-02-28 07:04:37.446 2024-02-28 07:04:37.446 2100 FEE 441238 20539 6095119 2024-02-28 07:04:37.446 2024-02-28 07:04:37.446 18900 TIP 441238 20523 6095124 2024-02-28 07:04:38.232 2024-02-28 07:04:38.232 2100 FEE 441247 7966 6095125 2024-02-28 07:04:38.232 2024-02-28 07:04:38.232 18900 TIP 441247 14909 6095134 2024-02-28 07:04:43.791 2024-02-28 07:04:43.791 2100 FEE 440692 11609 6095135 2024-02-28 07:04:43.791 2024-02-28 07:04:43.791 18900 TIP 440692 657 6095160 2024-02-28 07:06:27.079 2024-02-28 07:06:27.079 69000 FEE 441514 12721 6095169 2024-02-28 07:06:43.717 2024-02-28 07:06:43.717 1600 FEE 441241 1124 6095170 2024-02-28 07:06:43.717 2024-02-28 07:06:43.717 14400 TIP 441241 11750 6095186 2024-02-28 07:09:08.328 2024-02-28 07:09:08.328 1000 FEE 441518 9334 6095200 2024-02-28 07:14:41.035 2024-02-28 07:14:41.035 2100 FEE 441514 11220 6095201 2024-02-28 07:14:41.035 2024-02-28 07:14:41.035 18900 TIP 441514 6700 6095217 2024-02-28 07:19:55.247 2024-02-28 07:19:55.247 2100 FEE 441489 12272 6095218 2024-02-28 07:19:55.247 2024-02-28 07:19:55.247 18900 TIP 441489 994 6095237 2024-02-28 07:27:07.819 2024-02-28 07:27:07.819 2100 FEE 440898 16876 6095238 2024-02-28 07:27:07.819 2024-02-28 07:27:07.819 18900 TIP 440898 21458 6095245 2024-02-28 07:30:00.732 2024-02-28 07:30:00.732 2500 FEE 441467 1244 6095246 2024-02-28 07:30:00.732 2024-02-28 07:30:00.732 22500 TIP 441467 9183 6095281 2024-02-28 07:33:45.049 2024-02-28 07:33:45.049 2500 FEE 441445 21400 6095282 2024-02-28 07:33:45.049 2024-02-28 07:33:45.049 22500 TIP 441445 7877 6095315 2024-02-28 07:42:51.28 2024-02-28 07:42:51.28 1000 FEE 441456 21614 6095316 2024-02-28 07:42:51.28 2024-02-28 07:42:51.28 9000 TIP 441456 2016 6095317 2024-02-28 07:42:52.13 2024-02-28 07:42:52.13 1000 FEE 441396 8535 6095318 2024-02-28 07:42:52.13 2024-02-28 07:42:52.13 9000 TIP 441396 16193 6095326 2024-02-28 07:44:09.564 2024-02-28 07:44:09.564 2500 FEE 441534 16942 6095327 2024-02-28 07:44:09.564 2024-02-28 07:44:09.564 22500 TIP 441534 4521 6095328 2024-02-28 07:44:09.715 2024-02-28 07:44:09.715 2500 FEE 441534 11527 6095329 2024-02-28 07:44:09.715 2024-02-28 07:44:09.715 22500 TIP 441534 19096 6095330 2024-02-28 07:44:09.856 2024-02-28 07:44:09.856 2500 FEE 441534 10731 6095331 2024-02-28 07:44:09.856 2024-02-28 07:44:09.856 22500 TIP 441534 18232 6095381 2024-02-28 07:45:30.208 2024-02-28 07:45:30.208 2500 FEE 441535 19976 6094742 2024-02-28 05:46:03.391 2024-02-28 05:46:03.391 1000 STREAM 141924 21208 6094743 2024-02-28 05:47:03.397 2024-02-28 05:47:03.397 1000 STREAM 141924 21044 6094745 2024-02-28 05:48:03.4 2024-02-28 05:48:03.4 1000 STREAM 141924 19826 6094750 2024-02-28 05:49:03.412 2024-02-28 05:49:03.412 1000 STREAM 141924 2640 6094753 2024-02-28 05:50:03.402 2024-02-28 05:50:03.402 1000 STREAM 141924 17064 6094756 2024-02-28 05:53:03.446 2024-02-28 05:53:03.446 1000 STREAM 141924 19500 6094771 2024-02-28 05:54:03.431 2024-02-28 05:54:03.431 1000 STREAM 141924 20201 6094811 2024-02-28 05:58:03.435 2024-02-28 05:58:03.435 1000 STREAM 141924 654 6094812 2024-02-28 05:59:03.438 2024-02-28 05:59:03.438 1000 STREAM 141924 12289 6094815 2024-02-28 06:01:03.544 2024-02-28 06:01:03.544 1000 STREAM 141924 3706 6094821 2024-02-28 06:02:03.471 2024-02-28 06:02:03.471 1000 STREAM 141924 11443 6094822 2024-02-28 06:03:03.466 2024-02-28 06:03:03.466 1000 STREAM 141924 18735 6094823 2024-02-28 06:04:03.476 2024-02-28 06:04:03.476 1000 STREAM 141924 18392 6094824 2024-02-28 06:05:03.505 2024-02-28 06:05:03.505 1000 STREAM 141924 673 6094825 2024-02-28 06:06:03.482 2024-02-28 06:06:03.482 1000 STREAM 141924 21540 6094826 2024-02-28 06:07:03.486 2024-02-28 06:07:03.486 1000 STREAM 141924 20023 6094833 2024-02-28 06:08:03.505 2024-02-28 06:08:03.505 1000 STREAM 141924 2367 6094869 2024-02-28 06:13:03.545 2024-02-28 06:13:03.545 1000 STREAM 141924 20680 6094870 2024-02-28 06:14:03.548 2024-02-28 06:14:03.548 1000 STREAM 141924 16724 6094876 2024-02-28 06:17:03.552 2024-02-28 06:17:03.552 1000 STREAM 141924 20912 6094891 2024-02-28 06:18:03.565 2024-02-28 06:18:03.565 1000 STREAM 141924 20826 6094923 2024-02-28 06:20:03.571 2024-02-28 06:20:03.571 1000 STREAM 141924 21379 6095000 2024-02-28 06:29:03.62 2024-02-28 06:29:03.62 1000 STREAM 141924 21421 6095013 2024-02-28 06:30:03.6 2024-02-28 06:30:03.6 1000 STREAM 141924 21539 6095051 2024-02-28 06:33:03.608 2024-02-28 06:33:03.608 1000 STREAM 141924 21339 6095055 2024-02-28 06:37:03.621 2024-02-28 06:37:03.621 1000 STREAM 141924 12930 6095084 2024-02-28 06:54:03.635 2024-02-28 06:54:03.635 1000 STREAM 141924 21148 6095086 2024-02-28 06:55:05.64 2024-02-28 06:55:05.64 1000 STREAM 141924 718 6095087 2024-02-28 06:56:05.647 2024-02-28 06:56:05.647 1000 STREAM 141924 5776 6095090 2024-02-28 06:57:05.648 2024-02-28 06:57:05.648 1000 STREAM 141924 12562 6095091 2024-02-28 06:58:05.65 2024-02-28 06:58:05.65 1000 STREAM 141924 6526 6095156 2024-02-28 07:05:05.652 2024-02-28 07:05:05.652 1000 STREAM 141924 1493 6095159 2024-02-28 07:06:03.658 2024-02-28 07:06:03.658 1000 STREAM 141924 16816 6095188 2024-02-28 07:10:03.667 2024-02-28 07:10:03.667 1000 STREAM 141924 1244 6095192 2024-02-28 07:12:03.678 2024-02-28 07:12:03.678 1000 STREAM 141924 10013 6095220 2024-02-28 07:21:05.716 2024-02-28 07:21:05.716 1000 STREAM 141924 10016 6095224 2024-02-28 07:24:05.725 2024-02-28 07:24:05.725 1000 STREAM 141924 20852 6095228 2024-02-28 07:25:03.731 2024-02-28 07:25:03.731 1000 STREAM 141924 657 6095255 2024-02-28 07:30:05.766 2024-02-28 07:30:05.766 1000 STREAM 141924 20564 6095258 2024-02-28 07:32:01.751 2024-02-28 07:32:01.751 1000 STREAM 141924 2390 6095273 2024-02-28 07:33:03.759 2024-02-28 07:33:03.759 1000 STREAM 141924 18313 6095291 2024-02-28 07:34:05.771 2024-02-28 07:34:05.771 1000 STREAM 141924 4292 6095297 2024-02-28 07:36:05.763 2024-02-28 07:36:05.763 1000 STREAM 141924 20080 6095298 2024-02-28 07:37:03.784 2024-02-28 07:37:03.784 1000 STREAM 141924 20182 6095305 2024-02-28 07:39:03.777 2024-02-28 07:39:03.777 1000 STREAM 141924 18680 6095307 2024-02-28 07:41:03.781 2024-02-28 07:41:03.781 1000 STREAM 141924 19566 6095319 2024-02-28 07:43:03.789 2024-02-28 07:43:03.789 1000 STREAM 141924 4166 6095439 2024-02-28 07:49:03.832 2024-02-28 07:49:03.832 1000 STREAM 141924 21356 6095442 2024-02-28 07:51:03.848 2024-02-28 07:51:03.848 1000 STREAM 141924 21040 6095478 2024-02-28 07:59:03.894 2024-02-28 07:59:03.894 1000 STREAM 141924 2203 6094779 2024-02-28 05:54:54.301 2024-02-28 05:54:54.301 8100 TIP 441479 17526 6094788 2024-02-28 05:55:44.488 2024-02-28 05:55:44.488 100 FEE 441341 2367 6094789 2024-02-28 05:55:44.488 2024-02-28 05:55:44.488 900 TIP 441341 1489 6094807 2024-02-28 05:57:34.537 2024-02-28 05:57:34.537 100 FEE 441456 20180 6094808 2024-02-28 05:57:34.537 2024-02-28 05:57:34.537 900 TIP 441456 5646 6094813 2024-02-28 05:59:04.841 2024-02-28 05:59:04.841 1000 FEE 441501 21494 6094816 2024-02-28 06:01:29.163 2024-02-28 06:01:29.163 2100 FEE 441083 21222 6094817 2024-02-28 06:01:29.163 2024-02-28 06:01:29.163 18900 TIP 441083 695 6094835 2024-02-28 06:08:15.345 2024-02-28 06:08:15.345 2100 FEE 441087 1515 6094836 2024-02-28 06:08:15.345 2024-02-28 06:08:15.345 18900 TIP 441087 21063 6094867 2024-02-28 06:12:07.127 2024-02-28 06:12:07.127 800 FEE 441247 5444 6094868 2024-02-28 06:12:07.127 2024-02-28 06:12:07.127 7200 TIP 441247 1401 6094899 2024-02-28 06:19:05.076 2024-02-28 06:19:05.076 2100 FEE 441433 19966 6094900 2024-02-28 06:19:05.076 2024-02-28 06:19:05.076 18900 TIP 441433 9335 6094928 2024-02-28 06:20:43.413 2024-02-28 06:20:43.413 2100 FEE 441318 2710 6094929 2024-02-28 06:20:43.413 2024-02-28 06:20:43.413 18900 TIP 441318 21064 6094937 2024-02-28 06:21:19.688 2024-02-28 06:21:19.688 2100 FEE 441034 16042 6094938 2024-02-28 06:21:19.688 2024-02-28 06:21:19.688 18900 TIP 441034 17953 6094955 2024-02-28 06:21:50.854 2024-02-28 06:21:50.854 100 FEE 441247 1626 6094956 2024-02-28 06:21:50.854 2024-02-28 06:21:50.854 900 TIP 441247 19952 6095043 2024-02-28 06:32:25.487 2024-02-28 06:32:25.487 3300 FEE 188490 981 6095044 2024-02-28 06:32:25.487 2024-02-28 06:32:25.487 29700 TIP 188490 12278 6095100 2024-02-28 06:59:26.326 2024-02-28 06:59:26.326 2100 FEE 441439 20015 6095101 2024-02-28 06:59:26.326 2024-02-28 06:59:26.326 18900 TIP 441439 12965 6095106 2024-02-28 07:01:23.714 2024-02-28 07:01:23.714 12500 FEE 441114 19346 6095107 2024-02-28 07:01:23.714 2024-02-28 07:01:23.714 112500 TIP 441114 14152 6095157 2024-02-28 07:05:36.09 2024-02-28 07:05:36.09 2100 FEE 441511 20623 6095158 2024-02-28 07:05:36.09 2024-02-28 07:05:36.09 18900 TIP 441511 20452 6095171 2024-02-28 07:07:00.573 2024-02-28 07:07:00.573 0 FEE 441515 2543 6095178 2024-02-28 07:08:38.045 2024-02-28 07:08:38.045 2100 FEE 440799 16704 6095179 2024-02-28 07:08:38.045 2024-02-28 07:08:38.045 18900 TIP 440799 14037 6095187 2024-02-28 07:09:50.38 2024-02-28 07:09:50.38 1000 FEE 441519 15159 6095213 2024-02-28 07:18:18.595 2024-02-28 07:18:18.595 1000 FEE 440692 21577 6095214 2024-02-28 07:18:18.595 2024-02-28 07:18:18.595 9000 TIP 440692 5003 6095230 2024-02-28 07:26:47.055 2024-02-28 07:26:47.055 1000 FEE 441524 19158 6095268 2024-02-28 07:32:56.431 2024-02-28 07:32:56.431 2500 FEE 441442 21323 6095269 2024-02-28 07:32:56.431 2024-02-28 07:32:56.431 22500 TIP 441442 20163 6095279 2024-02-28 07:33:44.833 2024-02-28 07:33:44.833 2500 FEE 441445 20220 6095280 2024-02-28 07:33:44.833 2024-02-28 07:33:44.833 22500 TIP 441445 2596 6095304 2024-02-28 07:39:00.333 2024-02-28 07:39:00.333 1000 FEE 441532 2046 6095359 2024-02-28 07:45:15.445 2024-02-28 07:45:15.445 1000 FEE 441537 1120 6095371 2024-02-28 07:45:29.48 2024-02-28 07:45:29.48 2500 FEE 441535 19132 6095372 2024-02-28 07:45:29.48 2024-02-28 07:45:29.48 22500 TIP 441535 14308 6095379 2024-02-28 07:45:30.057 2024-02-28 07:45:30.057 2500 FEE 441535 9655 6095380 2024-02-28 07:45:30.057 2024-02-28 07:45:30.057 22500 TIP 441535 1468 6095383 2024-02-28 07:45:30.445 2024-02-28 07:45:30.445 2500 FEE 441535 10731 6095384 2024-02-28 07:45:30.445 2024-02-28 07:45:30.445 22500 TIP 441535 21371 6095399 2024-02-28 07:47:22.43 2024-02-28 07:47:22.43 2500 FEE 441396 14370 6095400 2024-02-28 07:47:22.43 2024-02-28 07:47:22.43 22500 TIP 441396 16440 6095440 2024-02-28 07:49:19.991 2024-02-28 07:49:19.991 1000 FEE 441540 1454 6095462 2024-02-28 07:56:39.308 2024-02-28 07:56:39.308 1000 FEE 441546 9200 6095479 2024-02-28 07:59:26.596 2024-02-28 07:59:26.596 2100 FEE 441540 15491 6095480 2024-02-28 07:59:26.596 2024-02-28 07:59:26.596 18900 TIP 441540 848 6095510 2024-02-28 08:04:31.415 2024-02-28 08:04:31.415 2100 FEE 440729 9833 6095511 2024-02-28 08:04:31.415 2024-02-28 08:04:31.415 18900 TIP 440729 2233 6095520 2024-02-28 08:04:33.207 2024-02-28 08:04:33.207 2100 FEE 440729 5487 6095521 2024-02-28 08:04:33.207 2024-02-28 08:04:33.207 18900 TIP 440729 20663 6095535 2024-02-28 08:08:41.261 2024-02-28 08:08:41.261 10000 FEE 441274 15617 6095536 2024-02-28 08:08:41.261 2024-02-28 08:08:41.261 90000 TIP 441274 17147 6095543 2024-02-28 08:09:43.696 2024-02-28 08:09:43.696 1000 FEE 441038 16649 6095544 2024-02-28 08:09:43.696 2024-02-28 08:09:43.696 9000 TIP 441038 16594 6095551 2024-02-28 08:09:47.883 2024-02-28 08:09:47.883 700 FEE 441556 5387 6095552 2024-02-28 08:09:47.883 2024-02-28 08:09:47.883 6300 TIP 441556 18330 6095553 2024-02-28 08:09:48.256 2024-02-28 08:09:48.256 1400 FEE 441556 16357 6095554 2024-02-28 08:09:48.256 2024-02-28 08:09:48.256 12600 TIP 441556 12946 6095562 2024-02-28 08:09:55.488 2024-02-28 08:09:55.488 1000 FEE 441561 11477 6095568 2024-02-28 08:10:33.748 2024-02-28 08:10:33.748 2500 FEE 441561 714 6095569 2024-02-28 08:10:33.748 2024-02-28 08:10:33.748 22500 TIP 441561 2195 6095575 2024-02-28 08:11:40.686 2024-02-28 08:11:40.686 0 FEE 441561 894 6095599 2024-02-28 08:18:05.904 2024-02-28 08:18:05.904 10000 FEE 441566 9334 6095606 2024-02-28 08:21:39.974 2024-02-28 08:21:39.974 1000 FEE 441568 14122 6095615 2024-02-28 08:23:56.769 2024-02-28 08:23:56.769 1000 FEE 441560 13398 6095616 2024-02-28 08:23:56.769 2024-02-28 08:23:56.769 9000 TIP 441560 17184 6095620 2024-02-28 08:24:24.161 2024-02-28 08:24:24.161 100000 FEE 441571 9169 6095621 2024-02-28 08:25:00.941 2024-02-28 08:25:00.941 2100 FEE 441147 15409 6095622 2024-02-28 08:25:00.941 2024-02-28 08:25:00.941 18900 TIP 441147 16354 6095628 2024-02-28 08:25:07.664 2024-02-28 08:25:07.664 100 FEE 441571 2256 6095629 2024-02-28 08:25:07.664 2024-02-28 08:25:07.664 900 TIP 441571 9356 6095657 2024-02-28 08:28:09.857 2024-02-28 08:28:09.857 100 FEE 441035 8385 6095658 2024-02-28 08:28:09.857 2024-02-28 08:28:09.857 900 TIP 441035 17331 6095667 2024-02-28 08:28:35.119 2024-02-28 08:28:35.119 1000 FEE 441576 11885 6095678 2024-02-28 08:29:07.762 2024-02-28 08:29:07.762 1000 FEE 441577 20969 6095685 2024-02-28 08:29:33.619 2024-02-28 08:29:33.619 10000 FEE 441567 2077 6095686 2024-02-28 08:29:33.619 2024-02-28 08:29:33.619 90000 TIP 441567 21104 6095703 2024-02-28 08:31:55.314 2024-02-28 08:31:55.314 1000 FEE 441579 19842 6095722 2024-02-28 08:34:50.986 2024-02-28 08:34:50.986 10000 FEE 441582 18453 6095746 2024-02-28 08:41:41.629 2024-02-28 08:41:41.629 2100 FEE 441572 19911 6095747 2024-02-28 08:41:41.629 2024-02-28 08:41:41.629 18900 TIP 441572 1534 6095757 2024-02-28 08:43:21.928 2024-02-28 08:43:21.928 2100 FEE 441300 18199 6095758 2024-02-28 08:43:21.928 2024-02-28 08:43:21.928 18900 TIP 441300 21446 6095765 2024-02-28 08:43:48.475 2024-02-28 08:43:48.475 8400 FEE 441147 18452 6095766 2024-02-28 08:43:48.475 2024-02-28 08:43:48.475 75600 TIP 441147 960 6095769 2024-02-28 08:43:48.579 2024-02-28 08:43:48.579 2100 FEE 441147 21083 6095770 2024-02-28 08:43:48.579 2024-02-28 08:43:48.579 18900 TIP 441147 6499 6095793 2024-02-28 08:47:51.442 2024-02-28 08:47:51.442 1600 FEE 441333 10862 6095794 2024-02-28 08:47:51.442 2024-02-28 08:47:51.442 14400 TIP 441333 1564 6095797 2024-02-28 08:48:18.152 2024-02-28 08:48:18.152 1000 FEE 441579 726 6095798 2024-02-28 08:48:18.152 2024-02-28 08:48:18.152 9000 TIP 441579 1552 6095840 2024-02-28 08:54:41.184 2024-02-28 08:54:41.184 1000 FEE 440622 18828 6095841 2024-02-28 08:54:41.184 2024-02-28 08:54:41.184 9000 TIP 440622 6191 6095876 2024-02-28 08:54:59.166 2024-02-28 08:54:59.166 1000 FEE 441124 20201 6095877 2024-02-28 08:54:59.166 2024-02-28 08:54:59.166 9000 TIP 441124 11038 6095897 2024-02-28 08:55:08.425 2024-02-28 08:55:08.425 1000 FEE 439658 20500 6095898 2024-02-28 08:55:08.425 2024-02-28 08:55:08.425 9000 TIP 439658 4415 6095917 2024-02-28 08:55:16.972 2024-02-28 08:55:16.972 1000 FEE 440652 13782 6095918 2024-02-28 08:55:16.972 2024-02-28 08:55:16.972 9000 TIP 440652 20881 6095931 2024-02-28 09:00:47.953 2024-02-28 09:00:47.953 100000 FEE 441596 18664 6095969 2024-02-28 09:08:15.179 2024-02-28 09:08:15.179 1000 FEE 441341 13216 6095970 2024-02-28 09:08:15.179 2024-02-28 09:08:15.179 9000 TIP 441341 21539 6095973 2024-02-28 09:08:22.272 2024-02-28 09:08:22.272 1000 FEE 441077 9833 6094930 2024-02-28 06:20:44.17 2024-02-28 06:20:44.17 2100 FEE 441176 7818 6094931 2024-02-28 06:20:44.17 2024-02-28 06:20:44.17 18900 TIP 441176 18306 6094996 2024-02-28 06:26:13.941 2024-02-28 06:26:13.941 1000 FEE 441506 6310 6095003 2024-02-28 06:29:27.652 2024-02-28 06:29:27.652 2100 FEE 441448 18396 6095004 2024-02-28 06:29:27.652 2024-02-28 06:29:27.652 18900 TIP 441448 13544 6095011 2024-02-28 06:29:34.733 2024-02-28 06:29:34.733 2100 FEE 441414 20636 6095012 2024-02-28 06:29:34.733 2024-02-28 06:29:34.733 18900 TIP 441414 18114 6095018 2024-02-28 06:30:59.299 2024-02-28 06:30:59.299 3300 FEE 441320 6137 6095019 2024-02-28 06:30:59.299 2024-02-28 06:30:59.299 29700 TIP 441320 3440 6095074 2024-02-28 06:49:35.85 2024-02-28 06:49:35.85 2100 FEE 440692 8448 6095075 2024-02-28 06:49:35.85 2024-02-28 06:49:35.85 18900 TIP 440692 1534 6095085 2024-02-28 06:54:50.834 2024-02-28 06:54:50.834 1000 FEE 441511 17602 6095113 2024-02-28 07:04:30.762 2024-02-28 07:04:30.762 1000 FEE 441513 1773 6095114 2024-02-28 07:04:34.501 2024-02-28 07:04:34.501 2100 FEE 441333 18169 6095115 2024-02-28 07:04:34.501 2024-02-28 07:04:34.501 18900 TIP 441333 2188 6095150 2024-02-28 07:04:59.062 2024-02-28 07:04:59.062 2100 FEE 440911 4798 6095151 2024-02-28 07:04:59.062 2024-02-28 07:04:59.062 18900 TIP 440911 21022 6095161 2024-02-28 07:06:34.485 2024-02-28 07:06:34.485 1000 FEE 441515 18235 6095194 2024-02-28 07:13:04.689 2024-02-28 07:13:04.689 0 FEE 441520 21416 6095249 2024-02-28 07:30:01.083 2024-02-28 07:30:01.083 2500 FEE 441467 9330 6095250 2024-02-28 07:30:01.083 2024-02-28 07:30:01.083 22500 TIP 441467 19572 6095260 2024-02-28 07:32:55.784 2024-02-28 07:32:55.784 2500 FEE 441442 895 6095261 2024-02-28 07:32:55.784 2024-02-28 07:32:55.784 22500 TIP 441442 18816 6095272 2024-02-28 07:32:59.805 2024-02-28 07:32:59.805 1000 FEE 441529 19785 6095285 2024-02-28 07:33:45.487 2024-02-28 07:33:45.487 2500 FEE 441445 20073 6095286 2024-02-28 07:33:45.487 2024-02-28 07:33:45.487 22500 TIP 441445 782 6095311 2024-02-28 07:42:43.558 2024-02-28 07:42:43.558 100000 FEE 441533 13753 6095324 2024-02-28 07:44:09.434 2024-02-28 07:44:09.434 2500 FEE 441534 19966 6095325 2024-02-28 07:44:09.434 2024-02-28 07:44:09.434 22500 TIP 441534 2789 6095356 2024-02-28 07:44:17.76 2024-02-28 07:44:17.76 1000 FEE 441266 19639 6095357 2024-02-28 07:44:17.76 2024-02-28 07:44:17.76 9000 TIP 441266 2502 6095361 2024-02-28 07:45:28.791 2024-02-28 07:45:28.791 2500 FEE 441535 2652 6095362 2024-02-28 07:45:28.791 2024-02-28 07:45:28.791 22500 TIP 441535 4323 6095393 2024-02-28 07:45:34.493 2024-02-28 07:45:34.493 1000 FEE 441533 2674 6095394 2024-02-28 07:45:34.493 2024-02-28 07:45:34.493 9000 TIP 441533 13575 6095423 2024-02-28 07:47:59.968 2024-02-28 07:47:59.968 0 FEE 441539 19463 6095433 2024-02-28 07:48:07.024 2024-02-28 07:48:07.024 2500 FEE 441477 12911 6095434 2024-02-28 07:48:07.024 2024-02-28 07:48:07.024 22500 TIP 441477 5828 6095465 2024-02-28 07:57:06.531 2024-02-28 07:57:06.531 10000 FEE 441544 696 6095466 2024-02-28 07:57:06.531 2024-02-28 07:57:06.531 90000 TIP 441544 18269 6095473 2024-02-28 07:58:50.113 2024-02-28 07:58:50.113 2100 FEE 441533 16052 6095474 2024-02-28 07:58:50.113 2024-02-28 07:58:50.113 18900 TIP 441533 16706 6095489 2024-02-28 08:01:43.012 2024-02-28 08:01:43.012 21000 FEE 441553 4958 6095492 2024-02-28 08:02:11.039 2024-02-28 08:02:11.039 0 FEE 441553 4304 6095506 2024-02-28 08:04:26.614 2024-02-28 08:04:26.614 2100 FEE 441147 16097 6095507 2024-02-28 08:04:26.614 2024-02-28 08:04:26.614 18900 TIP 441147 21088 6095508 2024-02-28 08:04:31.273 2024-02-28 08:04:31.273 2100 FEE 440729 7668 6095509 2024-02-28 08:04:31.273 2024-02-28 08:04:31.273 18900 TIP 440729 2703 6095516 2024-02-28 08:04:32.134 2024-02-28 08:04:32.134 2100 FEE 440729 8176 6095517 2024-02-28 08:04:32.134 2024-02-28 08:04:32.134 18900 TIP 440729 16808 6095541 2024-02-28 08:09:16.685 2024-02-28 08:09:16.685 10000 FEE 441115 21343 6095542 2024-02-28 08:09:16.685 2024-02-28 08:09:16.685 90000 TIP 441115 1717 6094958 2024-02-28 06:21:59.541 2024-02-28 06:21:59.541 2100 FEE 441428 12606 6094959 2024-02-28 06:21:59.541 2024-02-28 06:21:59.541 18900 TIP 441428 6717 6094962 2024-02-28 06:22:03.047 2024-02-28 06:22:03.047 2100 FEE 441456 2711 6094963 2024-02-28 06:22:03.047 2024-02-28 06:22:03.047 18900 TIP 441456 18543 6094972 2024-02-28 06:23:01.286 2024-02-28 06:23:01.286 2100 FEE 440575 19286 6094973 2024-02-28 06:23:01.286 2024-02-28 06:23:01.286 18900 TIP 440575 1740 6094984 2024-02-28 06:24:09.751 2024-02-28 06:24:09.751 2100 FEE 441412 10554 6094985 2024-02-28 06:24:09.751 2024-02-28 06:24:09.751 18900 TIP 441412 4345 6094988 2024-02-28 06:24:19.095 2024-02-28 06:24:19.095 2100 FEE 441370 15088 6094989 2024-02-28 06:24:19.095 2024-02-28 06:24:19.095 18900 TIP 441370 2749 6095016 2024-02-28 06:30:59.119 2024-02-28 06:30:59.119 3300 FEE 441320 17800 6095017 2024-02-28 06:30:59.119 2024-02-28 06:30:59.119 29700 TIP 441320 20776 6095024 2024-02-28 06:31:01.422 2024-02-28 06:31:01.422 3300 FEE 441316 15588 6095025 2024-02-28 06:31:01.422 2024-02-28 06:31:01.422 29700 TIP 441316 11898 6095040 2024-02-28 06:32:14.661 2024-02-28 06:32:14.661 1000 FEE 441508 20554 6095047 2024-02-28 06:32:28.924 2024-02-28 06:32:28.924 3300 FEE 178804 7989 6095048 2024-02-28 06:32:28.924 2024-02-28 06:32:28.924 29700 TIP 178804 19992 6095132 2024-02-28 07:04:42.96 2024-02-28 07:04:42.96 2100 FEE 441169 762 6095133 2024-02-28 07:04:42.96 2024-02-28 07:04:42.96 18900 TIP 441169 2640 6095136 2024-02-28 07:04:45.138 2024-02-28 07:04:45.138 2100 FEE 440898 1740 6095137 2024-02-28 07:04:45.138 2024-02-28 07:04:45.138 18900 TIP 440898 882 6095173 2024-02-28 07:07:17.131 2024-02-28 07:07:17.131 2100 FEE 440895 7772 6095174 2024-02-28 07:07:17.131 2024-02-28 07:07:17.131 18900 TIP 440895 18453 6095210 2024-02-28 07:17:32.039 2024-02-28 07:17:32.039 100 FEE 440870 19910 6095211 2024-02-28 07:17:32.039 2024-02-28 07:17:32.039 900 TIP 440870 20183 6095247 2024-02-28 07:30:00.9 2024-02-28 07:30:00.9 2500 FEE 441467 16485 6095248 2024-02-28 07:30:00.9 2024-02-28 07:30:00.9 22500 TIP 441467 4250 6095296 2024-02-28 07:36:01.337 2024-02-28 07:36:01.337 0 FEE 441531 16939 6095312 2024-02-28 07:42:46.365 2024-02-28 07:42:46.365 1000 FEE 441534 19043 6095352 2024-02-28 07:44:11.416 2024-02-28 07:44:11.416 2500 FEE 441534 18679 6095353 2024-02-28 07:44:11.416 2024-02-28 07:44:11.416 22500 TIP 441534 16336 6095365 2024-02-28 07:45:29.049 2024-02-28 07:45:29.049 2500 FEE 441535 891 6095366 2024-02-28 07:45:29.049 2024-02-28 07:45:29.049 22500 TIP 441535 1800 6095389 2024-02-28 07:45:32.302 2024-02-28 07:45:32.302 2500 FEE 441535 14688 6095390 2024-02-28 07:45:32.302 2024-02-28 07:45:32.302 22500 TIP 441535 6136 6095410 2024-02-28 07:47:31.337 2024-02-28 07:47:31.337 2500 FEE 441442 9482 6095411 2024-02-28 07:47:31.337 2024-02-28 07:47:31.337 22500 TIP 441442 11491 6095412 2024-02-28 07:47:31.728 2024-02-28 07:47:31.728 2500 FEE 441442 10554 6095413 2024-02-28 07:47:31.728 2024-02-28 07:47:31.728 22500 TIP 441442 15488 6095425 2024-02-28 07:48:05.859 2024-02-28 07:48:05.859 2500 FEE 441477 10536 6095426 2024-02-28 07:48:05.859 2024-02-28 07:48:05.859 22500 TIP 441477 20412 6095446 2024-02-28 07:51:19.575 2024-02-28 07:51:19.575 1000 FEE 441542 19924 6095454 2024-02-28 07:55:52.312 2024-02-28 07:55:52.312 1000 FEE 441545 18735 6095056 2024-02-28 06:38:03.492 2024-02-28 06:38:03.492 1000 STREAM 141924 13365 6095057 2024-02-28 06:39:03.506 2024-02-28 06:39:03.506 1000 STREAM 141924 1291 6095058 2024-02-28 06:40:03.548 2024-02-28 06:40:03.548 1000 STREAM 141924 12516 6095062 2024-02-28 06:43:03.553 2024-02-28 06:43:03.553 1000 STREAM 141924 14267 6095063 2024-02-28 06:44:03.565 2024-02-28 06:44:03.565 1000 STREAM 141924 1195 6095073 2024-02-28 06:49:03.609 2024-02-28 06:49:03.609 1000 STREAM 141924 2614 6095083 2024-02-28 06:53:03.639 2024-02-28 06:53:03.639 1000 STREAM 141924 659 6095193 2024-02-28 07:13:01.844 2024-02-28 07:13:01.844 1000 STREAM 141924 20502 6095207 2024-02-28 07:17:01.874 2024-02-28 07:17:01.874 1000 STREAM 141924 10519 6095059 2024-02-28 06:41:03.527 2024-02-28 06:41:03.527 1000 STREAM 141924 20892 6095060 2024-02-28 06:42:03.538 2024-02-28 06:42:03.538 1000 STREAM 141924 1480 6095065 2024-02-28 06:45:03.577 2024-02-28 06:45:03.577 1000 STREAM 141924 3417 6095067 2024-02-28 06:46:03.578 2024-02-28 06:46:03.578 1000 STREAM 141924 15386 6095068 2024-02-28 06:47:03.585 2024-02-28 06:47:03.585 1000 STREAM 141924 2529 6095071 2024-02-28 06:48:03.597 2024-02-28 06:48:03.597 1000 STREAM 141924 20560 6095076 2024-02-28 06:50:03.628 2024-02-28 06:50:03.628 1000 STREAM 141924 8664 6095079 2024-02-28 06:51:03.619 2024-02-28 06:51:03.619 1000 STREAM 141924 2204 6095082 2024-02-28 06:52:03.628 2024-02-28 06:52:03.628 1000 STREAM 141924 19812 6095095 2024-02-28 06:59:05.676 2024-02-28 06:59:05.676 1000 STREAM 141924 11760 6095102 2024-02-28 07:00:03.652 2024-02-28 07:00:03.652 1000 STREAM 141924 17148 6095105 2024-02-28 07:01:05.658 2024-02-28 07:01:05.658 1000 STREAM 141924 19770 6095108 2024-02-28 07:02:03.651 2024-02-28 07:02:03.651 1000 STREAM 141924 10862 6095111 2024-02-28 07:03:03.648 2024-02-28 07:03:03.648 1000 STREAM 141924 18658 6095172 2024-02-28 07:07:03.681 2024-02-28 07:07:03.681 1000 STREAM 141924 1603 6095185 2024-02-28 07:09:03.67 2024-02-28 07:09:03.67 1000 STREAM 141924 7979 6095197 2024-02-28 07:14:05.687 2024-02-28 07:14:05.687 1000 STREAM 141924 12422 6095204 2024-02-28 07:15:05.683 2024-02-28 07:15:05.683 1000 STREAM 141924 20514 6095205 2024-02-28 07:16:05.687 2024-02-28 07:16:05.687 1000 STREAM 141924 4624 6095212 2024-02-28 07:18:05.7 2024-02-28 07:18:05.7 1000 STREAM 141924 10690 6095215 2024-02-28 07:19:05.716 2024-02-28 07:19:05.716 1000 STREAM 141924 19154 6095223 2024-02-28 07:23:05.729 2024-02-28 07:23:05.729 1000 STREAM 141924 1105 6095229 2024-02-28 07:26:05.74 2024-02-28 07:26:05.74 1000 STREAM 141924 11590 6095236 2024-02-28 07:27:03.744 2024-02-28 07:27:03.744 1000 STREAM 141924 17514 6095241 2024-02-28 07:28:05.743 2024-02-28 07:28:05.743 1000 STREAM 141924 8945 6095242 2024-02-28 07:29:03.749 2024-02-28 07:29:03.749 1000 STREAM 141924 1650 6095257 2024-02-28 07:31:03.764 2024-02-28 07:31:03.764 1000 STREAM 141924 19378 6095294 2024-02-28 07:35:03.754 2024-02-28 07:35:03.754 1000 STREAM 141924 2502 6095358 2024-02-28 07:45:03.796 2024-02-28 07:45:03.796 1000 STREAM 141924 2741 6095396 2024-02-28 07:47:03.821 2024-02-28 07:47:03.821 1000 STREAM 141924 2525 6095449 2024-02-28 07:53:03.856 2024-02-28 07:53:03.856 1000 STREAM 141924 21026 6095452 2024-02-28 07:55:03.863 2024-02-28 07:55:03.863 1000 STREAM 141924 683 6095464 2024-02-28 07:57:03.867 2024-02-28 07:57:03.867 1000 STREAM 141924 6573 6095112 2024-02-28 07:04:02.247 2024-02-28 07:04:02.247 1000 STREAM 141924 21058 6095177 2024-02-28 07:08:02.26 2024-02-28 07:08:02.26 1000 STREAM 141924 10359 6095189 2024-02-28 07:11:02.276 2024-02-28 07:11:02.276 1000 STREAM 141924 2775 6095219 2024-02-28 07:20:01.946 2024-02-28 07:20:01.946 1000 STREAM 141924 20198 6095306 2024-02-28 07:40:02.027 2024-02-28 07:40:02.027 1000 STREAM 141924 20280 6095395 2024-02-28 07:46:02.09 2024-02-28 07:46:02.09 1000 STREAM 141924 16858 6095441 2024-02-28 07:50:02.121 2024-02-28 07:50:02.121 1000 STREAM 141924 1195 6095455 2024-02-28 07:56:02.151 2024-02-28 07:56:02.151 1000 STREAM 141924 17927 6095467 2024-02-28 07:58:02.174 2024-02-28 07:58:02.174 1000 STREAM 141924 11275 6095493 2024-02-28 08:03:02.227 2024-02-28 08:03:02.227 1000 STREAM 141924 19981 6095499 2024-02-28 08:04:04.244 2024-02-28 08:04:04.244 1000 STREAM 141924 19469 6095529 2024-02-28 08:06:04.281 2024-02-28 08:06:04.281 1000 STREAM 141924 21523 6095532 2024-02-28 08:07:04.286 2024-02-28 08:07:04.286 1000 STREAM 141924 18138 6095540 2024-02-28 08:09:02.299 2024-02-28 08:09:02.299 1000 STREAM 141924 654 6095584 2024-02-28 08:14:04.343 2024-02-28 08:14:04.343 1000 STREAM 141924 16679 6095603 2024-02-28 08:20:02.56 2024-02-28 08:20:02.56 1000 STREAM 141924 965 6095644 2024-02-28 08:27:04.524 2024-02-28 08:27:04.524 1000 STREAM 141924 706 6095656 2024-02-28 08:28:04.514 2024-02-28 08:28:04.514 1000 STREAM 141924 20614 6095704 2024-02-28 08:32:04.541 2024-02-28 08:32:04.541 1000 STREAM 141924 20912 6095723 2024-02-28 08:35:02.581 2024-02-28 08:35:02.581 1000 STREAM 141924 20687 6095727 2024-02-28 08:36:04.563 2024-02-28 08:36:04.563 1000 STREAM 141924 2640 6095733 2024-02-28 08:38:02.596 2024-02-28 08:38:02.596 1000 STREAM 141924 11158 6095742 2024-02-28 08:40:02.685 2024-02-28 08:40:02.685 1000 STREAM 141924 1806 6095805 2024-02-28 08:50:02.686 2024-02-28 08:50:02.686 1000 STREAM 141924 694 6095827 2024-02-28 08:54:02.703 2024-02-28 08:54:02.703 1000 STREAM 141924 19981 6095886 2024-02-28 08:55:02.707 2024-02-28 08:55:02.707 1000 STREAM 141924 19938 6095921 2024-02-28 08:56:02.748 2024-02-28 08:56:02.748 1000 STREAM 141924 8998 6095222 2024-02-28 07:22:03.654 2024-02-28 07:22:03.654 1000 STREAM 141924 8269 6095226 2024-02-28 07:24:07.914 2024-02-28 07:24:07.914 9000 TIP 441048 19652 6095227 2024-02-28 07:24:51.993 2024-02-28 07:24:51.993 0 FEE 441523 20185 6095239 2024-02-28 07:27:46.464 2024-02-28 07:27:46.464 2100 FEE 440797 5036 6095240 2024-02-28 07:27:46.464 2024-02-28 07:27:46.464 18900 TIP 440797 1717 6095251 2024-02-28 07:30:01.178 2024-02-28 07:30:01.178 2500 FEE 441467 2596 6095252 2024-02-28 07:30:01.178 2024-02-28 07:30:01.178 22500 TIP 441467 1472 6095253 2024-02-28 07:30:01.244 2024-02-28 07:30:01.244 2500 FEE 441467 18635 6095254 2024-02-28 07:30:01.244 2024-02-28 07:30:01.244 22500 TIP 441467 19826 6095259 2024-02-28 07:32:52.061 2024-02-28 07:32:52.061 1000 FEE 441528 4102 6095275 2024-02-28 07:33:44.351 2024-02-28 07:33:44.351 2500 FEE 441445 6717 6095276 2024-02-28 07:33:44.351 2024-02-28 07:33:44.351 22500 TIP 441445 12169 6095301 2024-02-28 07:37:59.87 2024-02-28 07:37:59.87 1000 FEE 441489 16154 6095302 2024-02-28 07:37:59.87 2024-02-28 07:37:59.87 9000 TIP 441489 19735 6095336 2024-02-28 07:44:10.293 2024-02-28 07:44:10.293 2500 FEE 441534 10536 6095337 2024-02-28 07:44:10.293 2024-02-28 07:44:10.293 22500 TIP 441534 19569 6095346 2024-02-28 07:44:11.011 2024-02-28 07:44:11.011 2500 FEE 441534 20619 6095347 2024-02-28 07:44:11.011 2024-02-28 07:44:11.011 22500 TIP 441534 10493 6095350 2024-02-28 07:44:11.298 2024-02-28 07:44:11.298 2500 FEE 441534 7766 6095351 2024-02-28 07:44:11.298 2024-02-28 07:44:11.298 22500 TIP 441534 19502 6095367 2024-02-28 07:45:29.2 2024-02-28 07:45:29.2 2500 FEE 441535 19193 6095368 2024-02-28 07:45:29.2 2024-02-28 07:45:29.2 22500 TIP 441535 18630 6095369 2024-02-28 07:45:29.329 2024-02-28 07:45:29.329 2500 FEE 441535 20710 6095370 2024-02-28 07:45:29.329 2024-02-28 07:45:29.329 22500 TIP 441535 4831 6095377 2024-02-28 07:45:29.898 2024-02-28 07:45:29.898 2500 FEE 441535 1307 6095378 2024-02-28 07:45:29.898 2024-02-28 07:45:29.898 22500 TIP 441535 20258 6095385 2024-02-28 07:45:30.503 2024-02-28 07:45:30.503 2500 FEE 441535 19021 6095386 2024-02-28 07:45:30.503 2024-02-28 07:45:30.503 22500 TIP 441535 19121 6095401 2024-02-28 07:47:28.615 2024-02-28 07:47:28.615 2500 FEE 441445 20554 6095402 2024-02-28 07:47:28.615 2024-02-28 07:47:28.615 22500 TIP 441445 21180 6095414 2024-02-28 07:47:32.079 2024-02-28 07:47:32.079 2500 FEE 441442 10342 6095415 2024-02-28 07:47:32.079 2024-02-28 07:47:32.079 22500 TIP 441442 11750 6095422 2024-02-28 07:47:47.649 2024-02-28 07:47:47.649 1000 FEE 441539 14258 6095431 2024-02-28 07:48:06.387 2024-02-28 07:48:06.387 2500 FEE 441477 18124 6095432 2024-02-28 07:48:06.387 2024-02-28 07:48:06.387 22500 TIP 441477 7558 6095444 2024-02-28 07:51:17.892 2024-02-28 07:51:17.892 1000 FEE 441538 18842 6095445 2024-02-28 07:51:17.892 2024-02-28 07:51:17.892 9000 TIP 441538 18956 6095453 2024-02-28 07:55:11.607 2024-02-28 07:55:11.607 100000 FEE 441544 20251 6095481 2024-02-28 07:59:33.818 2024-02-28 07:59:33.818 1000 FEE 441549 2741 6095504 2024-02-28 08:04:25.049 2024-02-28 08:04:25.049 2100 FEE 441147 11862 6095505 2024-02-28 08:04:25.049 2024-02-28 08:04:25.049 18900 TIP 441147 9332 6095512 2024-02-28 08:04:31.623 2024-02-28 08:04:31.623 4200 FEE 440729 1180 6095513 2024-02-28 08:04:31.623 2024-02-28 08:04:31.623 37800 TIP 440729 2710 6095555 2024-02-28 08:09:48.428 2024-02-28 08:09:48.428 700 FEE 441556 21064 6095556 2024-02-28 08:09:48.428 2024-02-28 08:09:48.428 6300 TIP 441556 19286 6095557 2024-02-28 08:09:48.97 2024-02-28 08:09:48.97 700 FEE 441556 18842 6095558 2024-02-28 08:09:48.97 2024-02-28 08:09:48.97 6300 TIP 441556 2176 6095559 2024-02-28 08:09:49.049 2024-02-28 08:09:49.049 120000 FEE 441560 19652 6095564 2024-02-28 08:10:32.75 2024-02-28 08:10:32.75 2500 FEE 441561 9985 6095565 2024-02-28 08:10:32.75 2024-02-28 08:10:32.75 22500 TIP 441561 2722 6095595 2024-02-28 08:16:13.504 2024-02-28 08:16:13.504 2100 FEE 441300 21116 6095596 2024-02-28 08:16:13.504 2024-02-28 08:16:13.504 18900 TIP 441300 658 6095633 2024-02-28 08:25:18.364 2024-02-28 08:25:18.364 100 FEE 441560 2537 6095634 2024-02-28 08:25:18.364 2024-02-28 08:25:18.364 900 TIP 441560 16355 6095635 2024-02-28 08:25:29.804 2024-02-28 08:25:29.804 1000 FEE 441573 7097 6095636 2024-02-28 08:25:57.364 2024-02-28 08:25:57.364 1000 FEE 441574 15858 6095679 2024-02-28 08:29:17.562 2024-02-28 08:29:17.562 1000 FEE 47120 11776 6095680 2024-02-28 08:29:17.562 2024-02-28 08:29:17.562 9000 TIP 47120 15594 6095692 2024-02-28 08:30:55.768 2024-02-28 08:30:55.768 2100 FEE 441567 9171 6095693 2024-02-28 08:30:55.768 2024-02-28 08:30:55.768 18900 TIP 441567 13547 6095700 2024-02-28 08:31:24.809 2024-02-28 08:31:24.809 12800 FEE 441572 18626 6095701 2024-02-28 08:31:24.809 2024-02-28 08:31:24.809 115200 TIP 441572 2330 6095713 2024-02-28 08:32:52.242 2024-02-28 08:32:52.242 2500 FEE 441573 3392 6095714 2024-02-28 08:32:52.242 2024-02-28 08:32:52.242 22500 TIP 441573 6148 6095740 2024-02-28 08:39:46.08 2024-02-28 08:39:46.08 800 FEE 441392 16667 6095741 2024-02-28 08:39:46.08 2024-02-28 08:39:46.08 7200 TIP 441392 14260 6095779 2024-02-28 08:45:46.075 2024-02-28 08:45:46.075 1000 FEE 441587 16154 6095789 2024-02-28 08:46:34.846 2024-02-28 08:46:34.846 1000 FEE 441589 14169 6095812 2024-02-28 08:50:13.952 2024-02-28 08:50:13.952 100 FEE 441571 1564 6095813 2024-02-28 08:50:13.952 2024-02-28 08:50:13.952 900 TIP 441571 5825 6095852 2024-02-28 08:54:46.68 2024-02-28 08:54:46.68 1000 FEE 441198 21090 6095853 2024-02-28 08:54:46.68 2024-02-28 08:54:46.68 9000 TIP 441198 18919 6095862 2024-02-28 08:54:54.293 2024-02-28 08:54:54.293 1000 FEE 441176 19154 6095863 2024-02-28 08:54:54.293 2024-02-28 08:54:54.293 9000 TIP 441176 1605 6095866 2024-02-28 08:54:55.583 2024-02-28 08:54:55.583 1000 FEE 441479 11329 6095867 2024-02-28 08:54:55.583 2024-02-28 08:54:55.583 9000 TIP 441479 17030 6095870 2024-02-28 08:54:56.633 2024-02-28 08:54:56.633 1000 FEE 440875 21339 6095871 2024-02-28 08:54:56.633 2024-02-28 08:54:56.633 9000 TIP 440875 20094 6095884 2024-02-28 08:55:01.013 2024-02-28 08:55:01.013 1000 FEE 441553 3717 6095885 2024-02-28 08:55:01.013 2024-02-28 08:55:01.013 9000 TIP 441553 16309 6095891 2024-02-28 08:55:05.808 2024-02-28 08:55:05.808 1000 FEE 440985 9354 6095892 2024-02-28 08:55:05.808 2024-02-28 08:55:05.808 9000 TIP 440985 16633 6095909 2024-02-28 08:55:13.807 2024-02-28 08:55:13.807 1000 FEE 441318 16424 6095910 2024-02-28 08:55:13.807 2024-02-28 08:55:13.807 9000 TIP 441318 18945 6095929 2024-02-28 09:00:21.469 2024-02-28 09:00:21.469 1600 FEE 441514 1801 6095930 2024-02-28 09:00:21.469 2024-02-28 09:00:21.469 14400 TIP 441514 8162 6095941 2024-02-28 09:03:55.941 2024-02-28 09:03:55.941 1000 FEE 441598 6058 6095953 2024-02-28 09:05:11.895 2024-02-28 09:05:11.895 200 FEE 441598 2942 6095954 2024-02-28 09:05:11.895 2024-02-28 09:05:11.895 1800 TIP 441598 12930 6095961 2024-02-28 09:05:17.141 2024-02-28 09:05:17.141 1000 FEE 440891 12368 6095962 2024-02-28 09:05:17.141 2024-02-28 09:05:17.141 9000 TIP 440891 18828 6095964 2024-02-28 09:06:55.229 2024-02-28 09:06:55.229 0 FEE 441600 15833 6095975 2024-02-28 09:08:22.426 2024-02-28 09:08:22.426 1000 FEE 441077 16988 6095976 2024-02-28 09:08:22.426 2024-02-28 09:08:22.426 9000 TIP 441077 16942 6096010 2024-02-28 09:13:33.377 2024-02-28 09:13:33.377 1000 FEE 441603 6700 6096011 2024-02-28 09:13:33.377 2024-02-28 09:13:33.377 9000 TIP 441603 18557 6096038 2024-02-28 09:16:42.835 2024-02-28 09:16:42.835 800 FEE 441372 14503 6096039 2024-02-28 09:16:42.835 2024-02-28 09:16:42.835 7200 TIP 441372 11798 6096047 2024-02-28 09:18:47.979 2024-02-28 09:18:47.979 2100 FEE 441257 20326 6096048 2024-02-28 09:18:47.979 2024-02-28 09:18:47.979 18900 TIP 441257 27 6096066 2024-02-28 09:21:51.771 2024-02-28 09:21:51.771 1000 FEE 441609 16296 6096068 2024-02-28 09:22:21.482 2024-02-28 09:22:21.482 800 FEE 440592 963 6096069 2024-02-28 09:22:21.482 2024-02-28 09:22:21.482 7200 TIP 440592 19267 6096099 2024-02-28 09:24:57.487 2024-02-28 09:24:57.487 0 FEE 441608 21051 6095292 2024-02-28 07:34:55.549 2024-02-28 07:34:55.549 10000 FEE 440966 9347 6095293 2024-02-28 07:34:55.549 2024-02-28 07:34:55.549 90000 TIP 440966 18932 6095334 2024-02-28 07:44:10.149 2024-02-28 07:44:10.149 2500 FEE 441534 19852 6095335 2024-02-28 07:44:10.149 2024-02-28 07:44:10.149 22500 TIP 441534 7899 6095338 2024-02-28 07:44:10.431 2024-02-28 07:44:10.431 2500 FEE 441534 3371 6095339 2024-02-28 07:44:10.431 2024-02-28 07:44:10.431 22500 TIP 441534 18618 6095348 2024-02-28 07:44:11.147 2024-02-28 07:44:11.147 2500 FEE 441534 6160 6095349 2024-02-28 07:44:11.147 2024-02-28 07:44:11.147 22500 TIP 441534 18630 6095363 2024-02-28 07:45:28.914 2024-02-28 07:45:28.914 2500 FEE 441535 3745 6095364 2024-02-28 07:45:28.914 2024-02-28 07:45:28.914 22500 TIP 441535 1505 6095397 2024-02-28 07:47:22.263 2024-02-28 07:47:22.263 2500 FEE 441396 17727 6095398 2024-02-28 07:47:22.263 2024-02-28 07:47:22.263 22500 TIP 441396 9183 6095407 2024-02-28 07:47:30.123 2024-02-28 07:47:30.123 1000 POLL 441333 17162 6095408 2024-02-28 07:47:31.254 2024-02-28 07:47:31.254 2500 FEE 441442 15273 6095409 2024-02-28 07:47:31.254 2024-02-28 07:47:31.254 22500 TIP 441442 1465 6095416 2024-02-28 07:47:33.373 2024-02-28 07:47:33.373 2500 FEE 441531 3371 6095417 2024-02-28 07:47:33.373 2024-02-28 07:47:33.373 22500 TIP 441531 18473 6095418 2024-02-28 07:47:44.992 2024-02-28 07:47:44.992 2500 FEE 441505 11417 6095419 2024-02-28 07:47:44.992 2024-02-28 07:47:44.992 22500 TIP 441505 19967 6095429 2024-02-28 07:48:06.216 2024-02-28 07:48:06.216 2500 FEE 441477 17741 6095430 2024-02-28 07:48:06.216 2024-02-28 07:48:06.216 22500 TIP 441477 13217 6095448 2024-02-28 07:52:21.264 2024-02-28 07:52:21.264 1000 FEE 441543 9426 6095450 2024-02-28 07:53:27.656 2024-02-28 07:53:27.656 1000 POLL 441333 5557 6095460 2024-02-28 07:56:38.148 2024-02-28 07:56:38.148 5000 FEE 441542 627 6095461 2024-02-28 07:56:38.148 2024-02-28 07:56:38.148 45000 TIP 441542 9336 6095463 2024-02-28 07:56:51.581 2024-02-28 07:56:51.581 10000 FEE 441547 9433 6095501 2024-02-28 08:04:13.028 2024-02-28 08:04:13.028 1000 FEE 441555 17446 6095502 2024-02-28 08:04:24.812 2024-02-28 08:04:24.812 4200 FEE 441147 4378 6095503 2024-02-28 08:04:24.812 2024-02-28 08:04:24.812 37800 TIP 441147 15488 6095530 2024-02-28 08:06:42.252 2024-02-28 08:06:42.252 0 FEE 441556 19909 6095531 2024-02-28 08:06:57.666 2024-02-28 08:06:57.666 1000 FEE 441557 19335 6095560 2024-02-28 08:09:50.227 2024-02-28 08:09:50.227 10000 FEE 441038 19243 6095561 2024-02-28 08:09:50.227 2024-02-28 08:09:50.227 90000 TIP 441038 7899 6095594 2024-02-28 08:16:04.384 2024-02-28 08:16:04.384 1000 FEE 441565 18177 6095600 2024-02-28 08:18:45.346 2024-02-28 08:18:45.346 1000 FEE 441567 20153 6095602 2024-02-28 08:19:05.975 2024-02-28 08:19:05.975 0 FEE 441567 19732 6095623 2024-02-28 08:25:00.978 2024-02-28 08:25:00.978 2100 FEE 441147 9920 6095624 2024-02-28 08:25:00.978 2024-02-28 08:25:00.978 18900 TIP 441147 9352 6095625 2024-02-28 08:25:01.29 2024-02-28 08:25:01.29 2100 FEE 441147 19890 6095626 2024-02-28 08:25:01.29 2024-02-28 08:25:01.29 18900 TIP 441147 4633 6095630 2024-02-28 08:25:08.602 2024-02-28 08:25:08.602 21000 FEE 441572 4692 6095638 2024-02-28 08:26:59.188 2024-02-28 08:26:59.188 2100 FEE 441553 770 6095639 2024-02-28 08:26:59.188 2024-02-28 08:26:59.188 18900 TIP 441553 20340 6095640 2024-02-28 08:27:00.508 2024-02-28 08:27:00.508 2100 FEE 441560 19381 6095641 2024-02-28 08:27:00.508 2024-02-28 08:27:00.508 18900 TIP 441560 20222 6095646 2024-02-28 08:27:27.766 2024-02-28 08:27:27.766 2100 FEE 441571 739 6095647 2024-02-28 08:27:27.766 2024-02-28 08:27:27.766 18900 TIP 441571 6148 6095650 2024-02-28 08:27:37.904 2024-02-28 08:27:37.904 100 FEE 441556 1094 6095651 2024-02-28 08:27:37.904 2024-02-28 08:27:37.904 900 TIP 441556 2583 6095694 2024-02-28 08:30:58.753 2024-02-28 08:30:58.753 2100 FEE 441555 19826 6095695 2024-02-28 08:30:58.753 2024-02-28 08:30:58.753 18900 TIP 441555 8168 6095696 2024-02-28 08:30:59.583 2024-02-28 08:30:59.583 2100 FEE 441573 18468 6095697 2024-02-28 08:30:59.583 2024-02-28 08:30:59.583 18900 TIP 441573 16679 6095708 2024-02-28 08:32:29.984 2024-02-28 08:32:29.984 100 FEE 441480 11075 6095709 2024-02-28 08:32:29.984 2024-02-28 08:32:29.984 900 TIP 441480 11670 6095710 2024-02-28 08:32:32.325 2024-02-28 08:32:32.325 0 FEE 441579 17082 6095715 2024-02-28 08:32:52.339 2024-02-28 08:32:52.339 2500 FEE 441573 859 6095716 2024-02-28 08:32:52.339 2024-02-28 08:32:52.339 22500 TIP 441573 19435 6095731 2024-02-28 08:37:13.882 2024-02-28 08:37:13.882 0 FEE 383547 9 6095734 2024-02-28 08:38:08.519 2024-02-28 08:38:08.519 2100 FEE 441571 649 6095735 2024-02-28 08:38:08.519 2024-02-28 08:38:08.519 18900 TIP 441571 20606 6095737 2024-02-28 08:39:20.39 2024-02-28 08:39:20.39 1000 FEE 441585 14669 6095790 2024-02-28 08:46:46.653 2024-02-28 08:46:46.653 100 FEE 441572 9916 6095791 2024-02-28 08:46:46.653 2024-02-28 08:46:46.653 900 TIP 441572 7125 6095832 2024-02-28 08:54:34.437 2024-02-28 08:54:34.437 1000 FEE 440898 13204 6095833 2024-02-28 08:54:34.437 2024-02-28 08:54:34.437 9000 TIP 440898 17227 6095838 2024-02-28 08:54:40.008 2024-02-28 08:54:40.008 1000 FEE 441300 1697 6095839 2024-02-28 08:54:40.008 2024-02-28 08:54:40.008 9000 TIP 441300 12175 6095846 2024-02-28 08:54:43.215 2024-02-28 08:54:43.215 1000 FEE 440663 21140 6095847 2024-02-28 08:54:43.215 2024-02-28 08:54:43.215 9000 TIP 440663 20757 6095925 2024-02-28 08:57:43.902 2024-02-28 08:57:43.902 0 FEE 441595 10586 6095935 2024-02-28 09:01:52.649 2024-02-28 09:01:52.649 10100 FEE 441385 20137 6095936 2024-02-28 09:01:52.649 2024-02-28 09:01:52.649 90900 TIP 441385 19398 6095982 2024-02-28 09:08:38.283 2024-02-28 09:08:38.283 1000 FEE 440775 18231 6095983 2024-02-28 09:08:38.283 2024-02-28 09:08:38.283 9000 TIP 440775 11967 6095988 2024-02-28 09:09:18.281 2024-02-28 09:09:18.281 2100 FEE 441596 19158 6095989 2024-02-28 09:09:18.281 2024-02-28 09:09:18.281 18900 TIP 441596 17891 6095990 2024-02-28 09:09:32.596 2024-02-28 09:09:32.596 1000 FEE 440629 1803 6095991 2024-02-28 09:09:32.596 2024-02-28 09:09:32.596 9000 TIP 440629 21614 6095994 2024-02-28 09:09:32.876 2024-02-28 09:09:32.876 1000 FEE 440629 17517 6095995 2024-02-28 09:09:32.876 2024-02-28 09:09:32.876 9000 TIP 440629 7675 6096025 2024-02-28 09:15:11.602 2024-02-28 09:15:11.602 1000 FEE 441600 10094 6096026 2024-02-28 09:15:11.602 2024-02-28 09:15:11.602 9000 TIP 441600 11395 6096058 2024-02-28 09:19:16.131 2024-02-28 09:19:16.131 10000 FEE 441238 5775 6096059 2024-02-28 09:19:16.131 2024-02-28 09:19:16.131 90000 TIP 441238 17415 6096089 2024-02-28 09:23:17.334 2024-02-28 09:23:17.334 800 FEE 413569 18311 6096090 2024-02-28 09:23:17.334 2024-02-28 09:23:17.334 7200 TIP 413569 19535 6096105 2024-02-28 09:26:53.821 2024-02-28 09:26:53.821 500 FEE 441509 2528 6096106 2024-02-28 09:26:53.821 2024-02-28 09:26:53.821 4500 TIP 441509 708 6096107 2024-02-28 09:26:55.977 2024-02-28 09:26:55.977 100 FEE 441423 1624 6096108 2024-02-28 09:26:55.977 2024-02-28 09:26:55.977 900 TIP 441423 18679 6096132 2024-02-28 09:28:27.868 2024-02-28 09:28:27.868 12100 FEE 441042 9496 6096133 2024-02-28 09:28:27.868 2024-02-28 09:28:27.868 108900 TIP 441042 12921 6096134 2024-02-28 09:28:32.389 2024-02-28 09:28:32.389 21000 FEE 441611 9107 6096140 2024-02-28 09:29:52.921 2024-02-28 09:29:52.921 500 FEE 440898 21145 6096141 2024-02-28 09:29:52.921 2024-02-28 09:29:52.921 4500 TIP 440898 2640 6096178 2024-02-28 09:40:18.079 2024-02-28 09:40:18.079 1000 FEE 441397 19826 6096179 2024-02-28 09:40:18.079 2024-02-28 09:40:18.079 9000 TIP 441397 6149 6096187 2024-02-28 09:43:47.455 2024-02-28 09:43:47.455 1000 FEE 441616 18076 6096188 2024-02-28 09:43:51.764 2024-02-28 09:43:51.764 500 FEE 441407 2576 6095303 2024-02-28 07:38:05.999 2024-02-28 07:38:05.999 1000 STREAM 141924 5703 6095310 2024-02-28 07:42:02.038 2024-02-28 07:42:02.038 1000 STREAM 141924 19689 6095322 2024-02-28 07:44:02.04 2024-02-28 07:44:02.04 1000 STREAM 141924 7425 6095424 2024-02-28 07:48:02.095 2024-02-28 07:48:02.095 1000 STREAM 141924 14152 6095447 2024-02-28 07:52:02.124 2024-02-28 07:52:02.124 1000 STREAM 141924 13767 6095451 2024-02-28 07:54:02.136 2024-02-28 07:54:02.136 1000 STREAM 141924 19132 6095482 2024-02-28 08:00:02.248 2024-02-28 08:00:02.248 1000 STREAM 141924 8380 6095488 2024-02-28 08:01:04.201 2024-02-28 08:01:04.201 1000 STREAM 141924 2513 6095491 2024-02-28 08:02:04.225 2024-02-28 08:02:04.225 1000 STREAM 141924 19094 6095525 2024-02-28 08:05:02.263 2024-02-28 08:05:02.263 1000 STREAM 141924 6384 6095534 2024-02-28 08:08:04.293 2024-02-28 08:08:04.293 1000 STREAM 141924 18832 6095563 2024-02-28 08:10:04.351 2024-02-28 08:10:04.351 1000 STREAM 141924 854 6095574 2024-02-28 08:11:02.333 2024-02-28 08:11:02.333 1000 STREAM 141924 18673 6095579 2024-02-28 08:12:04.328 2024-02-28 08:12:04.328 1000 STREAM 141924 4502 6095580 2024-02-28 08:13:04.338 2024-02-28 08:13:04.338 1000 STREAM 141924 13903 6095321 2024-02-28 07:43:59.769 2024-02-28 07:43:59.769 1000 FEE 441535 7869 6095344 2024-02-28 07:44:10.865 2024-02-28 07:44:10.865 2500 FEE 441534 18679 6095345 2024-02-28 07:44:10.865 2024-02-28 07:44:10.865 22500 TIP 441534 8133 6095354 2024-02-28 07:44:17.404 2024-02-28 07:44:17.404 1000 FEE 441452 20452 6095355 2024-02-28 07:44:17.404 2024-02-28 07:44:17.404 9000 TIP 441452 19569 6095360 2024-02-28 07:45:27.699 2024-02-28 07:45:27.699 1000 FEE 441538 12169 6095373 2024-02-28 07:45:29.649 2024-02-28 07:45:29.649 2500 FEE 441535 21624 6095374 2024-02-28 07:45:29.649 2024-02-28 07:45:29.649 22500 TIP 441535 13327 6095375 2024-02-28 07:45:29.763 2024-02-28 07:45:29.763 2500 FEE 441535 746 6095376 2024-02-28 07:45:29.763 2024-02-28 07:45:29.763 22500 TIP 441535 2338 6095427 2024-02-28 07:48:06.067 2024-02-28 07:48:06.067 5000 FEE 441477 19890 6095428 2024-02-28 07:48:06.067 2024-02-28 07:48:06.067 45000 TIP 441477 4345 6095435 2024-02-28 07:48:07.193 2024-02-28 07:48:07.193 2500 FEE 441477 9339 6095436 2024-02-28 07:48:07.193 2024-02-28 07:48:07.193 22500 TIP 441477 3347 6095443 2024-02-28 07:51:11.659 2024-02-28 07:51:11.659 1000 FEE 441541 4819 6095468 2024-02-28 07:58:42.682 2024-02-28 07:58:42.682 2100 FEE 441544 1717 6095469 2024-02-28 07:58:42.682 2024-02-28 07:58:42.682 18900 TIP 441544 14404 6095471 2024-02-28 07:58:49.431 2024-02-28 07:58:49.431 2100 FEE 441514 15588 6095472 2024-02-28 07:58:49.431 2024-02-28 07:58:49.431 18900 TIP 441514 19243 6095477 2024-02-28 07:59:02.519 2024-02-28 07:59:02.519 0 FEE 441548 738 6095483 2024-02-28 08:00:05.11 2024-02-28 08:00:05.11 100000 FEE 441550 20596 6095487 2024-02-28 08:00:52.996 2024-02-28 08:00:52.996 1000 FEE 441552 19154 6095526 2024-02-28 08:05:23.152 2024-02-28 08:05:23.152 1000 POLL 441333 13547 6095528 2024-02-28 08:05:36.211 2024-02-28 08:05:36.211 0 FEE 441556 16788 6095545 2024-02-28 08:09:46.768 2024-02-28 08:09:46.768 700 FEE 441556 4388 6095546 2024-02-28 08:09:46.768 2024-02-28 08:09:46.768 6300 TIP 441556 2577 6095581 2024-02-28 08:13:04.866 2024-02-28 08:13:04.866 1000 FEE 441562 15139 6095591 2024-02-28 08:15:23.401 2024-02-28 08:15:23.401 2100 FEE 441553 5129 6095592 2024-02-28 08:15:23.401 2024-02-28 08:15:23.401 18900 TIP 441553 1959 6095604 2024-02-28 08:20:55.081 2024-02-28 08:20:55.081 1000 POLL 441333 5444 6095609 2024-02-28 08:22:47.402 2024-02-28 08:22:47.402 1000 FEE 441551 11158 6095610 2024-02-28 08:22:47.402 2024-02-28 08:22:47.402 9000 TIP 441551 15474 6095631 2024-02-28 08:25:15.226 2024-02-28 08:25:15.226 100 FEE 441563 12769 6095632 2024-02-28 08:25:15.226 2024-02-28 08:25:15.226 900 TIP 441563 20231 6095645 2024-02-28 08:27:18.966 2024-02-28 08:27:18.966 1000 FEE 441575 16442 6095659 2024-02-28 08:28:25.847 2024-02-28 08:28:25.847 1000 FEE 167900 14267 6095660 2024-02-28 08:28:25.847 2024-02-28 08:28:25.847 9000 TIP 167900 16954 6095663 2024-02-28 08:28:29.584 2024-02-28 08:28:29.584 1000 FEE 89590 13927 6095664 2024-02-28 08:28:29.584 2024-02-28 08:28:29.584 9000 TIP 89590 16124 6095676 2024-02-28 08:29:06.303 2024-02-28 08:29:06.303 2100 FEE 441564 21329 6095677 2024-02-28 08:29:06.303 2024-02-28 08:29:06.303 18900 TIP 441564 826 6095689 2024-02-28 08:30:00.698 2024-02-28 08:30:00.698 2100 FEE 441550 2039 6095690 2024-02-28 08:30:00.698 2024-02-28 08:30:00.698 18900 TIP 441550 1571 6095724 2024-02-28 08:35:13.707 2024-02-28 08:35:13.707 1000 FEE 441570 4035 6095725 2024-02-28 08:35:13.707 2024-02-28 08:35:13.707 9000 TIP 441570 2075 6095728 2024-02-28 08:36:16.894 2024-02-28 08:36:16.894 0 FEE 441583 19322 6095744 2024-02-28 08:41:41.601 2024-02-28 08:41:41.601 2100 FEE 441572 14650 6095745 2024-02-28 08:41:41.601 2024-02-28 08:41:41.601 18900 TIP 441572 14260 6095767 2024-02-28 08:43:48.553 2024-02-28 08:43:48.553 2100 FEE 441147 20084 6095768 2024-02-28 08:43:48.553 2024-02-28 08:43:48.553 18900 TIP 441147 656 6095786 2024-02-28 08:46:22.84 2024-02-28 08:46:22.84 1000 POLL 441333 986 6095808 2024-02-28 08:50:11.943 2024-02-28 08:50:11.943 100 FEE 441582 1030 6095809 2024-02-28 08:50:11.943 2024-02-28 08:50:11.943 900 TIP 441582 763 6095814 2024-02-28 08:50:16.209 2024-02-28 08:50:16.209 100 FEE 441563 20624 6095815 2024-02-28 08:50:16.209 2024-02-28 08:50:16.209 900 TIP 441563 17727 6095826 2024-02-28 08:53:54.049 2024-02-28 08:53:54.049 100000 FEE 441593 618 6095830 2024-02-28 08:54:18.475 2024-02-28 08:54:18.475 100 FEE 441593 4074 6095831 2024-02-28 08:54:18.475 2024-02-28 08:54:18.475 900 TIP 441593 20706 6095850 2024-02-28 08:54:44.691 2024-02-28 08:54:44.691 1000 FEE 441372 13198 6095851 2024-02-28 08:54:44.691 2024-02-28 08:54:44.691 9000 TIP 441372 19189 6095854 2024-02-28 08:54:47.476 2024-02-28 08:54:47.476 1000 FEE 441087 19910 6095855 2024-02-28 08:54:47.476 2024-02-28 08:54:47.476 9000 TIP 441087 12946 6095868 2024-02-28 08:54:55.618 2024-02-28 08:54:55.618 1000 FEE 440764 18932 6095869 2024-02-28 08:54:55.618 2024-02-28 08:54:55.618 9000 TIP 440764 17116 6095872 2024-02-28 08:54:57.539 2024-02-28 08:54:57.539 1000 FEE 440633 19235 6095873 2024-02-28 08:54:57.539 2024-02-28 08:54:57.539 9000 TIP 440633 9705 6095874 2024-02-28 08:54:57.94 2024-02-28 08:54:57.94 1000 FEE 440575 11153 6095875 2024-02-28 08:54:57.94 2024-02-28 08:54:57.94 9000 TIP 440575 15728 6095878 2024-02-28 08:54:59.684 2024-02-28 08:54:59.684 1000 FEE 440527 20183 6095879 2024-02-28 08:54:59.684 2024-02-28 08:54:59.684 9000 TIP 440527 1652 6095880 2024-02-28 08:54:59.979 2024-02-28 08:54:59.979 1000 FEE 441054 19777 6095881 2024-02-28 08:54:59.979 2024-02-28 08:54:59.979 9000 TIP 441054 19842 6095887 2024-02-28 08:55:03.998 2024-02-28 08:55:03.998 1000 FEE 441159 11956 6095888 2024-02-28 08:55:03.998 2024-02-28 08:55:03.998 9000 TIP 441159 12245 6095895 2024-02-28 08:55:07.831 2024-02-28 08:55:07.831 1000 FEE 440797 9921 6095896 2024-02-28 08:55:07.831 2024-02-28 08:55:07.831 9000 TIP 440797 16912 6095903 2024-02-28 08:55:10.598 2024-02-28 08:55:10.598 1000 FEE 440989 21485 6095904 2024-02-28 08:55:10.598 2024-02-28 08:55:10.598 9000 TIP 440989 8926 6095905 2024-02-28 08:55:12.876 2024-02-28 08:55:12.876 1000 FEE 439100 20816 6095906 2024-02-28 08:55:12.876 2024-02-28 08:55:12.876 9000 TIP 439100 13527 6095907 2024-02-28 08:55:13.458 2024-02-28 08:55:13.458 1000 FEE 440623 974 6095908 2024-02-28 08:55:13.458 2024-02-28 08:55:13.458 9000 TIP 440623 17116 6095922 2024-02-28 08:56:25.278 2024-02-28 08:56:25.278 1000 FEE 441594 11192 6095944 2024-02-28 09:04:22.726 2024-02-28 09:04:22.726 100000 FEE 441600 20799 6095948 2024-02-28 09:04:47.023 2024-02-28 09:04:47.023 0 FEE 441599 20840 6095950 2024-02-28 09:05:07.86 2024-02-28 09:05:07.86 15000 FEE 441601 15351 6095957 2024-02-28 09:05:12.768 2024-02-28 09:05:12.768 400 FEE 441598 1632 6095958 2024-02-28 09:05:12.768 2024-02-28 09:05:12.768 3600 TIP 441598 21058 6095971 2024-02-28 09:08:15.671 2024-02-28 09:08:15.671 1000 FEE 441428 16341 6095972 2024-02-28 09:08:15.671 2024-02-28 09:08:15.671 9000 TIP 441428 6148 6096000 2024-02-28 09:10:39.51 2024-02-28 09:10:39.51 800 FEE 441489 1429 6096001 2024-02-28 09:10:39.51 2024-02-28 09:10:39.51 7200 TIP 441489 6164 6096004 2024-02-28 09:11:46.787 2024-02-28 09:11:46.787 1000 POLL 441333 12769 6096014 2024-02-28 09:13:35.985 2024-02-28 09:13:35.985 2100 FEE 436657 19147 6096015 2024-02-28 09:13:35.985 2024-02-28 09:13:35.985 18900 TIP 436657 12507 6096041 2024-02-28 09:17:29.159 2024-02-28 09:17:29.159 10000 FEE 441607 19906 6096045 2024-02-28 09:18:29.924 2024-02-28 09:18:29.924 20000 FEE 441560 21248 6096046 2024-02-28 09:18:29.924 2024-02-28 09:18:29.924 180000 TIP 441560 21573 6095382 2024-02-28 07:45:30.208 2024-02-28 07:45:30.208 22500 TIP 441535 21072 6095420 2024-02-28 07:47:45.474 2024-02-28 07:47:45.474 5000 FEE 441505 3456 6095421 2024-02-28 07:47:45.474 2024-02-28 07:47:45.474 45000 TIP 441505 20744 6095437 2024-02-28 07:48:10.467 2024-02-28 07:48:10.467 2500 FEE 441505 21418 6095438 2024-02-28 07:48:10.467 2024-02-28 07:48:10.467 22500 TIP 441505 5775 6095497 2024-02-28 08:03:37.375 2024-02-28 08:03:37.375 2100 FEE 441147 17172 6095498 2024-02-28 08:03:37.375 2024-02-28 08:03:37.375 18900 TIP 441147 2013 6095500 2024-02-28 08:04:10.977 2024-02-28 08:04:10.977 1000 POLL 441333 1051 6095533 2024-02-28 08:07:47.164 2024-02-28 08:07:47.164 1000 FEE 441558 18357 6095538 2024-02-28 08:08:47.925 2024-02-28 08:08:47.925 3000 FEE 441553 10283 6095539 2024-02-28 08:08:47.925 2024-02-28 08:08:47.925 27000 TIP 441553 1620 6095577 2024-02-28 08:11:50.411 2024-02-28 08:11:50.411 2500 FEE 441458 18114 6095578 2024-02-28 08:11:50.411 2024-02-28 08:11:50.411 22500 TIP 441458 20225 6095583 2024-02-28 08:13:49.574 2024-02-28 08:13:49.574 0 FEE 441562 1145 6095587 2024-02-28 08:15:00.445 2024-02-28 08:15:00.445 2100 FEE 441301 13798 6095588 2024-02-28 08:15:00.445 2024-02-28 08:15:00.445 18900 TIP 441301 10490 6095608 2024-02-28 08:22:29.786 2024-02-28 08:22:29.786 1000 FEE 441569 5703 6095642 2024-02-28 08:27:04.172 2024-02-28 08:27:04.172 2100 FEE 441572 19198 6095643 2024-02-28 08:27:04.172 2024-02-28 08:27:04.172 18900 TIP 441572 1298 6095668 2024-02-28 08:28:44.595 2024-02-28 08:28:44.595 5000 FEE 441035 4633 6095669 2024-02-28 08:28:44.595 2024-02-28 08:28:44.595 45000 TIP 441035 19857 6095681 2024-02-28 08:29:20.883 2024-02-28 08:29:20.883 1000 FEE 62094 4225 6095682 2024-02-28 08:29:20.883 2024-02-28 08:29:20.883 9000 TIP 62094 10690 6095699 2024-02-28 08:31:05.549 2024-02-28 08:31:05.549 1000 FEE 441578 681 6095702 2024-02-28 08:31:42.966 2024-02-28 08:31:42.966 1000 POLL 441333 21453 6095706 2024-02-28 08:32:23.755 2024-02-28 08:32:23.755 100 FEE 441482 11450 6095707 2024-02-28 08:32:23.755 2024-02-28 08:32:23.755 900 TIP 441482 854 6095721 2024-02-28 08:34:31.8 2024-02-28 08:34:31.8 1000 FEE 441581 738 6095726 2024-02-28 08:35:19.968 2024-02-28 08:35:19.968 1000 FEE 441583 21406 6095738 2024-02-28 08:39:35.197 2024-02-28 08:39:35.197 3200 FEE 441416 6383 6095739 2024-02-28 08:39:35.197 2024-02-28 08:39:35.197 28800 TIP 441416 3371 6095759 2024-02-28 08:43:22.601 2024-02-28 08:43:22.601 2100 FEE 441300 12708 6095760 2024-02-28 08:43:22.601 2024-02-28 08:43:22.601 18900 TIP 441300 16442 6095780 2024-02-28 08:46:01.069 2024-02-28 08:46:01.069 1000 FEE 420731 16667 6095781 2024-02-28 08:46:01.069 2024-02-28 08:46:01.069 9000 TIP 420731 20599 6095796 2024-02-28 08:48:10.494 2024-02-28 08:48:10.494 10000 FEE 441590 16447 6095803 2024-02-28 08:49:36.993 2024-02-28 08:49:36.993 2100 FEE 441300 12483 6095804 2024-02-28 08:49:36.993 2024-02-28 08:49:36.993 18900 TIP 441300 21356 6095810 2024-02-28 08:50:12.72 2024-02-28 08:50:12.72 100 FEE 441572 20577 6095811 2024-02-28 08:50:12.72 2024-02-28 08:50:12.72 900 TIP 441572 5978 6095823 2024-02-28 08:51:54.801 2024-02-28 08:51:54.801 1000 FEE 441592 21026 6095828 2024-02-28 08:54:15.659 2024-02-28 08:54:15.659 100 FEE 441588 18178 6095829 2024-02-28 08:54:15.659 2024-02-28 08:54:15.659 900 TIP 441588 11263 6095836 2024-02-28 08:54:38.853 2024-02-28 08:54:38.853 1000 FEE 441247 18714 6095837 2024-02-28 08:54:38.853 2024-02-28 08:54:38.853 9000 TIP 441247 5757 6095860 2024-02-28 08:54:49.233 2024-02-28 08:54:49.233 1000 FEE 440587 10690 6095861 2024-02-28 08:54:49.233 2024-02-28 08:54:49.233 9000 TIP 440587 19018 6095864 2024-02-28 08:54:54.766 2024-02-28 08:54:54.766 1000 FEE 441383 797 6095865 2024-02-28 08:54:54.766 2024-02-28 08:54:54.766 9000 TIP 441383 18842 6095901 2024-02-28 08:55:09.642 2024-02-28 08:55:09.642 1000 FEE 440561 827 6095902 2024-02-28 08:55:09.642 2024-02-28 08:55:09.642 9000 TIP 440561 14552 6095943 2024-02-28 09:04:20.746 2024-02-28 09:04:20.746 1000 FEE 441599 17517 6095968 2024-02-28 09:08:03.636 2024-02-28 09:08:03.636 1000 POLL 441333 18956 6095984 2024-02-28 09:08:57.049 2024-02-28 09:08:57.049 1000 FEE 440909 17014 6095985 2024-02-28 09:08:57.049 2024-02-28 09:08:57.049 9000 TIP 440909 4175 6095456 2024-02-28 07:56:37.293 2024-02-28 07:56:37.293 2500 FEE 441542 20464 6095457 2024-02-28 07:56:37.293 2024-02-28 07:56:37.293 22500 TIP 441542 5565 6095458 2024-02-28 07:56:37.806 2024-02-28 07:56:37.806 2500 FEE 441542 6202 6095459 2024-02-28 07:56:37.806 2024-02-28 07:56:37.806 22500 TIP 441542 19465 6095470 2024-02-28 07:58:44.882 2024-02-28 07:58:44.882 1000 FEE 441548 14202 6095475 2024-02-28 07:58:50.881 2024-02-28 07:58:50.881 2100 FEE 441547 8448 6095476 2024-02-28 07:58:50.881 2024-02-28 07:58:50.881 18900 TIP 441547 628 6095484 2024-02-28 08:00:05.754 2024-02-28 08:00:05.754 1000 FEE 441551 11942 6095494 2024-02-28 08:03:17.754 2024-02-28 08:03:17.754 0 FEE 441549 2347 6095547 2024-02-28 08:09:47.282 2024-02-28 08:09:47.282 700 FEE 441556 1720 6095548 2024-02-28 08:09:47.282 2024-02-28 08:09:47.282 6300 TIP 441556 20377 6095582 2024-02-28 08:13:14.005 2024-02-28 08:13:14.005 5000 FEE 441563 13753 6095661 2024-02-28 08:28:28.852 2024-02-28 08:28:28.852 100 FEE 441514 21481 6095662 2024-02-28 08:28:28.852 2024-02-28 08:28:28.852 900 TIP 441514 18641 6095711 2024-02-28 08:32:52.069 2024-02-28 08:32:52.069 2500 FEE 441573 21585 6095712 2024-02-28 08:32:52.069 2024-02-28 08:32:52.069 22500 TIP 441573 2525 6095729 2024-02-28 08:36:32.526 2024-02-28 08:36:32.526 10000 FEE 441584 5775 6095761 2024-02-28 08:43:37.595 2024-02-28 08:43:37.595 2100 FEE 441176 20564 6095762 2024-02-28 08:43:37.595 2024-02-28 08:43:37.595 18900 TIP 441176 21627 6095782 2024-02-28 08:46:01.214 2024-02-28 08:46:01.214 100 FEE 441582 20201 6095783 2024-02-28 08:46:01.214 2024-02-28 08:46:01.214 900 TIP 441582 17514 6095821 2024-02-28 08:51:44.208 2024-02-28 08:51:44.208 800 FEE 441247 20594 6095822 2024-02-28 08:51:44.208 2024-02-28 08:51:44.208 7200 TIP 441247 2293 6095842 2024-02-28 08:54:42.313 2024-02-28 08:54:42.313 1000 FEE 441169 775 6095843 2024-02-28 08:54:42.313 2024-02-28 08:54:42.313 9000 TIP 441169 2322 6095844 2024-02-28 08:54:42.47 2024-02-28 08:54:42.47 1000 FEE 440959 695 6095845 2024-02-28 08:54:42.47 2024-02-28 08:54:42.47 9000 TIP 440959 12821 6095933 2024-02-28 09:01:52.512 2024-02-28 09:01:52.512 10100 FEE 441385 5904 6095934 2024-02-28 09:01:52.512 2024-02-28 09:01:52.512 90900 TIP 441385 1723 6095937 2024-02-28 09:01:58.393 2024-02-28 09:01:58.393 1000 POLL 441333 18068 6095945 2024-02-28 09:04:34.414 2024-02-28 09:04:34.414 2500 FEE 441583 19924 6095946 2024-02-28 09:04:34.414 2024-02-28 09:04:34.414 22500 TIP 441583 3729 6095947 2024-02-28 09:04:36.242 2024-02-28 09:04:36.242 0 FEE 441600 13204 6095951 2024-02-28 09:05:11.605 2024-02-28 09:05:11.605 200 FEE 441598 9356 6095952 2024-02-28 09:05:11.605 2024-02-28 09:05:11.605 1800 TIP 441598 16355 6095955 2024-02-28 09:05:12.65 2024-02-28 09:05:12.65 200 FEE 441598 6687 6095956 2024-02-28 09:05:12.65 2024-02-28 09:05:12.65 1800 TIP 441598 12122 6095978 2024-02-28 09:08:31.297 2024-02-28 09:08:31.297 1000 FEE 440772 20861 6095979 2024-02-28 09:08:31.297 2024-02-28 09:08:31.297 9000 TIP 440772 6260 6096031 2024-02-28 09:15:22.327 2024-02-28 09:15:22.327 2500 FEE 441606 20812 6096032 2024-02-28 09:15:22.327 2024-02-28 09:15:22.327 22500 TIP 441606 9348 6096076 2024-02-28 09:22:55.093 2024-02-28 09:22:55.093 6700 FEE 441560 12049 6096077 2024-02-28 09:22:55.093 2024-02-28 09:22:55.093 60300 TIP 441560 12265 6096079 2024-02-28 09:23:09.691 2024-02-28 09:23:09.691 20000 FEE 441560 807 6096080 2024-02-28 09:23:09.691 2024-02-28 09:23:09.691 180000 TIP 441560 12609 6096083 2024-02-28 09:23:14.646 2024-02-28 09:23:14.646 800 FEE 431104 17514 6096084 2024-02-28 09:23:14.646 2024-02-28 09:23:14.646 7200 TIP 431104 14122 6096131 2024-02-28 09:28:23.692 2024-02-28 09:28:23.692 1000 POLL 440725 18448 6096138 2024-02-28 09:29:52.645 2024-02-28 09:29:52.645 500 FEE 440898 4624 6096139 2024-02-28 09:29:52.645 2024-02-28 09:29:52.645 4500 TIP 440898 19462 6096142 2024-02-28 09:29:53.19 2024-02-28 09:29:53.19 500 FEE 440898 7675 6096143 2024-02-28 09:29:53.19 2024-02-28 09:29:53.19 4500 TIP 440898 21159 6096150 2024-02-28 09:31:52.156 2024-02-28 09:31:52.156 1000 FEE 441612 714 6096152 2024-02-28 09:32:43.839 2024-02-28 09:32:43.839 800 FEE 441596 5759 6096153 2024-02-28 09:32:43.839 2024-02-28 09:32:43.839 7200 TIP 441596 18743 6096154 2024-02-28 09:32:44.404 2024-02-28 09:32:44.404 800 FEE 441596 21275 6096155 2024-02-28 09:32:44.404 2024-02-28 09:32:44.404 7200 TIP 441596 20272 6096176 2024-02-28 09:40:15.35 2024-02-28 09:40:15.35 1000 FEE 441397 9820 6096177 2024-02-28 09:40:15.35 2024-02-28 09:40:15.35 9000 TIP 441397 11515 6096180 2024-02-28 09:40:49.464 2024-02-28 09:40:49.464 1000 FEE 441614 7960 6096209 2024-02-28 09:43:56.278 2024-02-28 09:43:56.278 500 FEE 441372 8569 6096210 2024-02-28 09:43:56.278 2024-02-28 09:43:56.278 4500 TIP 441372 21212 6096215 2024-02-28 09:43:57 2024-02-28 09:43:57 500 FEE 441372 7986 6096216 2024-02-28 09:43:57 2024-02-28 09:43:57 4500 TIP 441372 18169 6096223 2024-02-28 09:43:57.671 2024-02-28 09:43:57.671 500 FEE 441372 18291 6096224 2024-02-28 09:43:57.671 2024-02-28 09:43:57.671 4500 TIP 441372 3706 6096237 2024-02-28 09:43:59.237 2024-02-28 09:43:59.237 500 FEE 441372 3377 6096238 2024-02-28 09:43:59.237 2024-02-28 09:43:59.237 4500 TIP 441372 889 6096246 2024-02-28 09:43:59.942 2024-02-28 09:43:59.942 500 FEE 441372 6499 6096247 2024-02-28 09:43:59.942 2024-02-28 09:43:59.942 4500 TIP 441372 20058 6096248 2024-02-28 09:44:00.125 2024-02-28 09:44:00.125 500 FEE 441372 2652 6096249 2024-02-28 09:44:00.125 2024-02-28 09:44:00.125 4500 TIP 441372 12268 6096262 2024-02-28 09:44:01.485 2024-02-28 09:44:01.485 500 FEE 441372 21521 6096263 2024-02-28 09:44:01.485 2024-02-28 09:44:01.485 4500 TIP 441372 20434 6096264 2024-02-28 09:44:01.689 2024-02-28 09:44:01.689 500 FEE 441372 1130 6096265 2024-02-28 09:44:01.689 2024-02-28 09:44:01.689 4500 TIP 441372 21620 6096283 2024-02-28 09:45:04.386 2024-02-28 09:45:04.386 1000 POLL 441333 18380 6096286 2024-02-28 09:45:46.973 2024-02-28 09:45:46.973 1000 FEE 441621 9496 6096298 2024-02-28 09:48:51.486 2024-02-28 09:48:51.486 100 FEE 441600 11999 6096299 2024-02-28 09:48:51.486 2024-02-28 09:48:51.486 900 TIP 441600 8162 6096319 2024-02-28 09:50:46.99 2024-02-28 09:50:46.99 1000 FEE 441245 19878 6096320 2024-02-28 09:50:46.99 2024-02-28 09:50:46.99 9000 TIP 441245 985 6096321 2024-02-28 09:50:49.287 2024-02-28 09:50:49.287 1000 FEE 441238 8360 6096322 2024-02-28 09:50:49.287 2024-02-28 09:50:49.287 9000 TIP 441238 11523 6096339 2024-02-28 09:50:59.528 2024-02-28 09:50:59.528 10000 FEE 441171 16296 6096340 2024-02-28 09:50:59.528 2024-02-28 09:50:59.528 90000 TIP 441171 19759 6096347 2024-02-28 09:51:00.982 2024-02-28 09:51:00.982 10000 FEE 441171 18363 6096348 2024-02-28 09:51:00.982 2024-02-28 09:51:00.982 90000 TIP 441171 20222 6096350 2024-02-28 09:51:06.133 2024-02-28 09:51:06.133 100 FEE 441544 20066 6096351 2024-02-28 09:51:06.133 2024-02-28 09:51:06.133 900 TIP 441544 15146 6095485 2024-02-28 08:00:25.981 2024-02-28 08:00:25.981 3000 FEE 288986 15728 6095486 2024-02-28 08:00:25.981 2024-02-28 08:00:25.981 27000 TIP 288986 16513 6095490 2024-02-28 08:01:47.152 2024-02-28 08:01:47.152 42000 FEE 441554 18076 6095495 2024-02-28 08:03:36.502 2024-02-28 08:03:36.502 4200 FEE 441147 17522 6095496 2024-02-28 08:03:36.502 2024-02-28 08:03:36.502 37800 TIP 441147 987 6095514 2024-02-28 08:04:31.967 2024-02-28 08:04:31.967 2100 FEE 440729 21424 6095515 2024-02-28 08:04:31.967 2024-02-28 08:04:31.967 18900 TIP 440729 5961 6095518 2024-02-28 08:04:32.367 2024-02-28 08:04:32.367 2100 FEE 440729 902 6095519 2024-02-28 08:04:32.367 2024-02-28 08:04:32.367 18900 TIP 440729 20225 6095522 2024-02-28 08:04:48.415 2024-02-28 08:04:48.415 2100 FEE 440729 19037 6095523 2024-02-28 08:04:48.415 2024-02-28 08:04:48.415 18900 TIP 440729 20555 6095524 2024-02-28 08:04:50.971 2024-02-28 08:04:50.971 21000 FEE 441556 12768 6095527 2024-02-28 08:05:25.994 2024-02-28 08:05:25.994 1000 POLL 441333 19576 6095537 2024-02-28 08:08:43.248 2024-02-28 08:08:43.248 1000 FEE 441559 6310 6095549 2024-02-28 08:09:47.455 2024-02-28 08:09:47.455 700 FEE 441556 12175 6095550 2024-02-28 08:09:47.455 2024-02-28 08:09:47.455 6300 TIP 441556 16485 6095566 2024-02-28 08:10:33.265 2024-02-28 08:10:33.265 2500 FEE 441561 18470 6095567 2024-02-28 08:10:33.265 2024-02-28 08:10:33.265 22500 TIP 441561 13574 6095570 2024-02-28 08:10:34.156 2024-02-28 08:10:34.156 2500 FEE 441561 827 6095571 2024-02-28 08:10:34.156 2024-02-28 08:10:34.156 22500 TIP 441561 1465 6095572 2024-02-28 08:10:53.281 2024-02-28 08:10:53.281 2100 FEE 441530 19569 6095573 2024-02-28 08:10:53.281 2024-02-28 08:10:53.281 18900 TIP 441530 19007 6095585 2024-02-28 08:14:38.233 2024-02-28 08:14:38.233 2100 FEE 441169 17171 6095586 2024-02-28 08:14:38.233 2024-02-28 08:14:38.233 18900 TIP 441169 21208 6095614 2024-02-28 08:23:44.831 2024-02-28 08:23:44.831 1000 FEE 441570 9333 6095618 2024-02-28 08:24:16.22 2024-02-28 08:24:16.22 3000 FEE 440898 12175 6095619 2024-02-28 08:24:16.22 2024-02-28 08:24:16.22 27000 TIP 440898 2335 6095648 2024-02-28 08:27:30.21 2024-02-28 08:27:30.21 100 FEE 441564 690 6095649 2024-02-28 08:27:30.21 2024-02-28 08:27:30.21 900 TIP 441564 994 6095652 2024-02-28 08:27:48.053 2024-02-28 08:27:48.053 5000 FEE 440898 2013 6095653 2024-02-28 08:27:48.053 2024-02-28 08:27:48.053 45000 TIP 440898 672 6095654 2024-02-28 08:27:57.871 2024-02-28 08:27:57.871 100 FEE 441533 16289 6095655 2024-02-28 08:27:57.871 2024-02-28 08:27:57.871 900 TIP 441533 11073 6095665 2024-02-28 08:28:32.52 2024-02-28 08:28:32.52 1000 FEE 165307 16598 6095666 2024-02-28 08:28:32.52 2024-02-28 08:28:32.52 9000 TIP 165307 19795 6095672 2024-02-28 08:29:02.742 2024-02-28 08:29:02.742 0 FEE 441572 1836 6095673 2024-02-28 08:29:04.41 2024-02-28 08:29:04.41 100 FEE 441489 12976 6095674 2024-02-28 08:29:04.41 2024-02-28 08:29:04.41 900 TIP 441489 20163 6095732 2024-02-28 08:37:44.416 2024-02-28 08:37:44.416 0 FEE 441583 16571 6095776 2024-02-28 08:44:52.74 2024-02-28 08:44:52.74 21000 FEE 440729 2789 6095777 2024-02-28 08:44:52.74 2024-02-28 08:44:52.74 189000 TIP 440729 21444 6095799 2024-02-28 08:48:21.475 2024-02-28 08:48:21.475 1600 FEE 441300 19966 6095800 2024-02-28 08:48:21.475 2024-02-28 08:48:21.475 14400 TIP 441300 17798 6095806 2024-02-28 08:50:09.555 2024-02-28 08:50:09.555 100 FEE 441588 21609 6095807 2024-02-28 08:50:09.555 2024-02-28 08:50:09.555 900 TIP 441588 712 6095816 2024-02-28 08:50:18.818 2024-02-28 08:50:18.818 100 FEE 441560 1173 6095817 2024-02-28 08:50:18.818 2024-02-28 08:50:18.818 900 TIP 441560 21427 6095818 2024-02-28 08:50:21.723 2024-02-28 08:50:21.723 100 FEE 441556 18330 6095819 2024-02-28 08:50:21.723 2024-02-28 08:50:21.723 900 TIP 441556 910 6095834 2024-02-28 08:54:37.585 2024-02-28 08:54:37.585 1000 FEE 440725 16387 6095835 2024-02-28 08:54:37.585 2024-02-28 08:54:37.585 9000 TIP 440725 9669 6095856 2024-02-28 08:54:47.922 2024-02-28 08:54:47.922 1000 FEE 440988 11523 6095857 2024-02-28 08:54:47.922 2024-02-28 08:54:47.922 9000 TIP 440988 20973 6095858 2024-02-28 08:54:48.448 2024-02-28 08:54:48.448 1000 FEE 441375 19905 6095859 2024-02-28 08:54:48.448 2024-02-28 08:54:48.448 9000 TIP 441375 17415 6095882 2024-02-28 08:55:00.462 2024-02-28 08:55:00.462 1000 FEE 439443 18454 6095883 2024-02-28 08:55:00.462 2024-02-28 08:55:00.462 9000 TIP 439443 19841 6095924 2024-02-28 08:57:08.991 2024-02-28 08:57:08.991 1000 FEE 441595 21131 6095939 2024-02-28 09:02:56.816 2024-02-28 09:02:56.816 1000 FEE 441597 11144 6095959 2024-02-28 09:05:14.406 2024-02-28 09:05:14.406 1000 FEE 441070 9 6095960 2024-02-28 09:05:14.406 2024-02-28 09:05:14.406 9000 TIP 441070 2206 6095966 2024-02-28 09:07:33.061 2024-02-28 09:07:33.061 125000 FEE 441602 13406 6095977 2024-02-28 09:08:28.84 2024-02-28 09:08:28.84 1000 POLL 440725 18494 6095987 2024-02-28 09:09:12.407 2024-02-28 09:09:12.407 1000 FEE 441603 16879 6095992 2024-02-28 09:09:32.715 2024-02-28 09:09:32.715 1000 FEE 440629 4064 6095993 2024-02-28 09:09:32.715 2024-02-28 09:09:32.715 9000 TIP 440629 19660 6096007 2024-02-28 09:12:09.995 2024-02-28 09:12:09.995 800 FEE 441405 14247 6096008 2024-02-28 09:12:09.995 2024-02-28 09:12:09.995 7200 TIP 441405 21441 6096016 2024-02-28 09:13:46.005 2024-02-28 09:13:46.005 2100 FEE 441343 11395 6096017 2024-02-28 09:13:46.005 2024-02-28 09:13:46.005 18900 TIP 441343 21416 6096020 2024-02-28 09:13:52.783 2024-02-28 09:13:52.783 10000 FEE 441592 13517 6096021 2024-02-28 09:13:52.783 2024-02-28 09:13:52.783 90000 TIP 441592 21588 6096027 2024-02-28 09:15:22.013 2024-02-28 09:15:22.013 2500 FEE 441606 687 6096028 2024-02-28 09:15:22.013 2024-02-28 09:15:22.013 22500 TIP 441606 14905 6096036 2024-02-28 09:16:39.657 2024-02-28 09:16:39.657 2100 FEE 441564 11443 6096037 2024-02-28 09:16:39.657 2024-02-28 09:16:39.657 18900 TIP 441564 16229 6096049 2024-02-28 09:18:54.734 2024-02-28 09:18:54.734 2100 FEE 441077 20026 6096050 2024-02-28 09:18:54.734 2024-02-28 09:18:54.734 18900 TIP 441077 18618 6096063 2024-02-28 09:20:17.045 2024-02-28 09:20:17.045 0 FEE 441608 18460 6096087 2024-02-28 09:23:15.48 2024-02-28 09:23:15.48 800 FEE 413571 20987 6096088 2024-02-28 09:23:15.48 2024-02-28 09:23:15.48 7200 TIP 413571 19147 6096097 2024-02-28 09:24:52.553 2024-02-28 09:24:52.553 1000 FEE 440725 9365 6096098 2024-02-28 09:24:52.553 2024-02-28 09:24:52.553 9000 TIP 440725 20701 6096122 2024-02-28 09:28:02.84 2024-02-28 09:28:02.84 2000 FEE 441601 803 6096123 2024-02-28 09:28:02.84 2024-02-28 09:28:02.84 18000 TIP 441601 11165 6096148 2024-02-28 09:31:43.878 2024-02-28 09:31:43.878 10000 FEE 441462 4958 6096149 2024-02-28 09:31:43.878 2024-02-28 09:31:43.878 90000 TIP 441462 7903 6096192 2024-02-28 09:43:52.288 2024-02-28 09:43:52.288 500 FEE 441407 1433 6096193 2024-02-28 09:43:52.288 2024-02-28 09:43:52.288 4500 TIP 441407 20964 6096213 2024-02-28 09:43:56.586 2024-02-28 09:43:56.586 500 FEE 441372 18658 6096214 2024-02-28 09:43:56.586 2024-02-28 09:43:56.586 4500 TIP 441372 16004 6096278 2024-02-28 09:44:47.052 2024-02-28 09:44:47.052 100 FEE 441613 2513 6096279 2024-02-28 09:44:47.052 2024-02-28 09:44:47.052 900 TIP 441613 16948 6096280 2024-02-28 09:44:49.595 2024-02-28 09:44:49.595 100 FEE 441611 2088 6096281 2024-02-28 09:44:49.595 2024-02-28 09:44:49.595 900 TIP 441611 20190 6096289 2024-02-28 09:46:14.932 2024-02-28 09:46:14.932 100 FEE 441607 16858 6096290 2024-02-28 09:46:14.932 2024-02-28 09:46:14.932 900 TIP 441607 20183 6096317 2024-02-28 09:50:35.319 2024-02-28 09:50:35.319 100 FEE 441603 3440 6095576 2024-02-28 08:11:46.62 2024-02-28 08:11:46.62 1000 DONT_LIKE_THIS 441480 1602 6095590 2024-02-28 08:15:05.54 2024-02-28 08:15:05.54 21000 FEE 441564 21361 6095611 2024-02-28 08:22:47.867 2024-02-28 08:22:47.867 1000 FEE 441551 20133 6095612 2024-02-28 08:22:47.867 2024-02-28 08:22:47.867 9000 TIP 441551 21577 6095670 2024-02-28 08:28:51.775 2024-02-28 08:28:51.775 2100 FEE 441556 715 6095671 2024-02-28 08:28:51.775 2024-02-28 08:28:51.775 18900 TIP 441556 20523 6095683 2024-02-28 08:29:32.681 2024-02-28 08:29:32.681 10000 FEE 441554 21136 6095684 2024-02-28 08:29:32.681 2024-02-28 08:29:32.681 90000 TIP 441554 19038 6095687 2024-02-28 08:29:45.889 2024-02-28 08:29:45.889 10000 FEE 441555 20490 6095688 2024-02-28 08:29:45.889 2024-02-28 08:29:45.889 90000 TIP 441555 20636 6095705 2024-02-28 08:32:05.581 2024-02-28 08:32:05.581 1000 FEE 441580 10352 6095718 2024-02-28 08:33:31.423 2024-02-28 08:33:31.423 1000 FEE 441556 7654 6095719 2024-02-28 08:33:31.423 2024-02-28 08:33:31.423 9000 TIP 441556 12736 6095748 2024-02-28 08:42:00.113 2024-02-28 08:42:00.113 1000 FEE 441586 5557 6095750 2024-02-28 08:42:13.522 2024-02-28 08:42:13.522 1000 FEE 441417 8448 6095751 2024-02-28 08:42:13.522 2024-02-28 08:42:13.522 9000 TIP 441417 19785 6095752 2024-02-28 08:42:23.936 2024-02-28 08:42:23.936 100 FEE 441479 7847 6095753 2024-02-28 08:42:23.936 2024-02-28 08:42:23.936 900 TIP 441479 9335 6095754 2024-02-28 08:42:29.239 2024-02-28 08:42:29.239 100 FEE 441476 11423 6095755 2024-02-28 08:42:29.239 2024-02-28 08:42:29.239 900 TIP 441476 11314 6095763 2024-02-28 08:43:37.831 2024-02-28 08:43:37.831 2100 FEE 441176 17727 6095764 2024-02-28 08:43:37.831 2024-02-28 08:43:37.831 18900 TIP 441176 19557 6095772 2024-02-28 08:44:41.195 2024-02-28 08:44:41.195 500 FEE 441240 9166 6095773 2024-02-28 08:44:41.195 2024-02-28 08:44:41.195 4500 TIP 441240 20080 6095774 2024-02-28 08:44:41.41 2024-02-28 08:44:41.41 500 FEE 441240 19138 6095775 2024-02-28 08:44:41.41 2024-02-28 08:44:41.41 4500 TIP 441240 738 6095785 2024-02-28 08:46:11.757 2024-02-28 08:46:11.757 21000 FEE 441588 13042 6095787 2024-02-28 08:46:26.874 2024-02-28 08:46:26.874 1000 FEE 441555 20585 6095788 2024-02-28 08:46:26.874 2024-02-28 08:46:26.874 9000 TIP 441555 7818 6095801 2024-02-28 08:48:58.867 2024-02-28 08:48:58.867 1000 FEE 441591 940 6095848 2024-02-28 08:54:44.26 2024-02-28 08:54:44.26 1000 FEE 440520 18452 6095849 2024-02-28 08:54:44.26 2024-02-28 08:54:44.26 9000 TIP 440520 21344 6095889 2024-02-28 08:55:05.051 2024-02-28 08:55:05.051 1000 FEE 441001 9816 6095890 2024-02-28 08:55:05.051 2024-02-28 08:55:05.051 9000 TIP 441001 19462 6095893 2024-02-28 08:55:06.49 2024-02-28 08:55:06.49 1000 FEE 441556 21320 6095894 2024-02-28 08:55:06.49 2024-02-28 08:55:06.49 9000 TIP 441556 20901 6095899 2024-02-28 08:55:09.085 2024-02-28 08:55:09.085 1000 FEE 441436 20153 6095900 2024-02-28 08:55:09.085 2024-02-28 08:55:09.085 9000 TIP 441436 18177 6095911 2024-02-28 08:55:14.52 2024-02-28 08:55:14.52 1000 FEE 438325 18679 6095912 2024-02-28 08:55:14.52 2024-02-28 08:55:14.52 9000 TIP 438325 4395 6095913 2024-02-28 08:55:15.901 2024-02-28 08:55:15.901 1000 FEE 439586 10608 6095914 2024-02-28 08:55:15.901 2024-02-28 08:55:15.901 9000 TIP 439586 6300 6095915 2024-02-28 08:55:16.399 2024-02-28 08:55:16.399 1000 FEE 440521 866 6095916 2024-02-28 08:55:16.399 2024-02-28 08:55:16.399 9000 TIP 440521 910 6095919 2024-02-28 08:55:17.387 2024-02-28 08:55:17.387 1000 FEE 440394 14857 6095920 2024-02-28 08:55:17.387 2024-02-28 08:55:17.387 9000 TIP 440394 10283 6095980 2024-02-28 09:08:33.01 2024-02-28 09:08:33.01 1000 FEE 440874 1439 6095981 2024-02-28 09:08:33.01 2024-02-28 09:08:33.01 9000 TIP 440874 9183 6095996 2024-02-28 09:09:35.683 2024-02-28 09:09:35.683 0 FEE 441603 17707 6096018 2024-02-28 09:13:51.618 2024-02-28 09:13:51.618 10000 FEE 441300 6717 6096019 2024-02-28 09:13:51.618 2024-02-28 09:13:51.618 90000 TIP 441300 1632 6096029 2024-02-28 09:15:22.174 2024-02-28 09:15:22.174 2500 FEE 441606 1010 6095589 2024-02-28 08:15:04.094 2024-02-28 08:15:04.094 1000 STREAM 141924 695 6095593 2024-02-28 08:16:02.1 2024-02-28 08:16:02.1 1000 STREAM 141924 667 6095605 2024-02-28 08:21:02.147 2024-02-28 08:21:02.147 1000 STREAM 141924 21521 6095607 2024-02-28 08:22:04.134 2024-02-28 08:22:04.134 1000 STREAM 141924 11992 6095617 2024-02-28 08:24:04.156 2024-02-28 08:24:04.156 1000 STREAM 141924 20454 6095637 2024-02-28 08:26:02.463 2024-02-28 08:26:02.463 1000 STREAM 141924 13046 6096002 2024-02-28 09:11:03.292 2024-02-28 09:11:03.292 1000 STREAM 141924 16571 6095597 2024-02-28 08:17:04.109 2024-02-28 08:17:04.109 1000 STREAM 141924 18837 6095598 2024-02-28 08:18:04.117 2024-02-28 08:18:04.117 1000 STREAM 141924 4378 6095601 2024-02-28 08:19:02.128 2024-02-28 08:19:02.128 1000 STREAM 141924 21416 6095613 2024-02-28 08:23:02.164 2024-02-28 08:23:02.164 1000 STREAM 141924 1209 6095627 2024-02-28 08:25:04.436 2024-02-28 08:25:04.436 1000 STREAM 141924 20852 6095675 2024-02-28 08:29:04.525 2024-02-28 08:29:04.525 1000 STREAM 141924 21627 6095691 2024-02-28 08:30:04.552 2024-02-28 08:30:04.552 1000 STREAM 141924 19987 6095698 2024-02-28 08:31:04.543 2024-02-28 08:31:04.543 1000 STREAM 141924 6717 6095717 2024-02-28 08:33:04.543 2024-02-28 08:33:04.543 1000 STREAM 141924 18409 6095749 2024-02-28 08:42:02.606 2024-02-28 08:42:02.606 1000 STREAM 141924 19267 6095771 2024-02-28 08:44:02.617 2024-02-28 08:44:02.617 1000 STREAM 141924 20979 6095784 2024-02-28 08:46:02.648 2024-02-28 08:46:02.648 1000 STREAM 141924 16447 6095795 2024-02-28 08:48:02.671 2024-02-28 08:48:02.671 1000 STREAM 141924 21342 6095824 2024-02-28 08:52:02.677 2024-02-28 08:52:02.677 1000 STREAM 141924 5171 6095926 2024-02-28 08:58:02.739 2024-02-28 08:58:02.739 1000 STREAM 141924 5293 6095927 2024-02-28 08:59:04.749 2024-02-28 08:59:04.749 1000 STREAM 141924 4322 6095928 2024-02-28 09:00:02.818 2024-02-28 09:00:02.818 1000 STREAM 141924 6430 6095940 2024-02-28 09:03:02.796 2024-02-28 09:03:02.796 1000 STREAM 141924 16556 6095949 2024-02-28 09:05:02.833 2024-02-28 09:05:02.833 1000 STREAM 141924 17673 6095720 2024-02-28 08:34:02.665 2024-02-28 08:34:02.665 1000 STREAM 141924 2101 6095736 2024-02-28 08:39:02.653 2024-02-28 08:39:02.653 1000 STREAM 141924 15491 6095743 2024-02-28 08:41:02.664 2024-02-28 08:41:02.664 1000 STREAM 141924 18393 6095942 2024-02-28 09:04:02.78 2024-02-28 09:04:02.78 1000 STREAM 141924 797 6095963 2024-02-28 09:06:02.783 2024-02-28 09:06:02.783 1000 STREAM 141924 1180 6095965 2024-02-28 09:07:02.793 2024-02-28 09:07:02.793 1000 STREAM 141924 12122 6095967 2024-02-28 09:08:02.799 2024-02-28 09:08:02.799 1000 STREAM 141924 21287 6095986 2024-02-28 09:09:02.79 2024-02-28 09:09:02.79 1000 STREAM 141924 1145 6095999 2024-02-28 09:10:02.8 2024-02-28 09:10:02.8 1000 STREAM 141924 8448 6096006 2024-02-28 09:12:02.808 2024-02-28 09:12:02.808 1000 STREAM 141924 679 6096009 2024-02-28 09:13:02.812 2024-02-28 09:13:02.812 1000 STREAM 141924 15617 6096022 2024-02-28 09:14:02.831 2024-02-28 09:14:02.831 1000 STREAM 141924 19570 6096035 2024-02-28 09:16:02.838 2024-02-28 09:16:02.838 1000 STREAM 141924 17166 6096043 2024-02-28 09:18:02.855 2024-02-28 09:18:02.855 1000 STREAM 141924 8713 6096055 2024-02-28 09:19:02.851 2024-02-28 09:19:02.851 1000 STREAM 141924 21547 6096065 2024-02-28 09:21:02.867 2024-02-28 09:21:02.867 1000 STREAM 141924 9906 6096078 2024-02-28 09:23:02.866 2024-02-28 09:23:02.866 1000 STREAM 141924 11819 6096111 2024-02-28 09:27:02.907 2024-02-28 09:27:02.907 1000 STREAM 141924 6430 6096161 2024-02-28 09:37:02.938 2024-02-28 09:37:02.938 1000 STREAM 141924 16177 6096163 2024-02-28 09:38:02.973 2024-02-28 09:38:02.973 1000 STREAM 141924 8269 6096164 2024-02-28 09:39:02.966 2024-02-28 09:39:02.966 1000 STREAM 141924 10728 6096165 2024-02-28 09:40:02.989 2024-02-28 09:40:02.989 1000 STREAM 141924 14080 6096282 2024-02-28 09:45:02.979 2024-02-28 09:45:02.979 1000 STREAM 141924 15617 6096300 2024-02-28 09:49:03.006 2024-02-28 09:49:03.006 1000 STREAM 141924 12169 6096357 2024-02-28 09:52:03.016 2024-02-28 09:52:03.016 1000 STREAM 141924 854 6096374 2024-02-28 09:56:03.044 2024-02-28 09:56:03.044 1000 STREAM 141924 16939 6096378 2024-02-28 09:57:03.052 2024-02-28 09:57:03.052 1000 STREAM 141924 16004 6096386 2024-02-28 09:59:03.072 2024-02-28 09:59:03.072 1000 STREAM 141924 10102 6096387 2024-02-28 10:00:03.127 2024-02-28 10:00:03.127 1000 STREAM 141924 19292 6096429 2024-02-28 10:06:03.153 2024-02-28 10:06:03.153 1000 STREAM 141924 652 6096431 2024-02-28 10:08:03.162 2024-02-28 10:08:03.162 1000 STREAM 141924 718 6096435 2024-02-28 10:10:03.209 2024-02-28 10:10:03.209 1000 STREAM 141924 635 6096439 2024-02-28 10:12:03.217 2024-02-28 10:12:03.217 1000 STREAM 141924 18556 6096440 2024-02-28 10:13:03.225 2024-02-28 10:13:03.225 1000 STREAM 141924 2508 6096447 2024-02-28 10:14:03.239 2024-02-28 10:14:03.239 1000 STREAM 141924 9109 6096453 2024-02-28 10:16:03.251 2024-02-28 10:16:03.251 1000 STREAM 141924 992 6096458 2024-02-28 10:17:03.28 2024-02-28 10:17:03.28 1000 STREAM 141924 18380 6096460 2024-02-28 10:18:03.286 2024-02-28 10:18:03.286 1000 STREAM 141924 2338 6096484 2024-02-28 10:20:03.317 2024-02-28 10:20:03.317 1000 STREAM 141924 17696 6096537 2024-02-28 10:24:03.325 2024-02-28 10:24:03.325 1000 STREAM 141924 21562 6096544 2024-02-28 10:25:03.356 2024-02-28 10:25:03.356 1000 STREAM 141924 12819 6096569 2024-02-28 10:26:03.36 2024-02-28 10:26:03.36 1000 STREAM 141924 713 6096585 2024-02-28 10:27:03.37 2024-02-28 10:27:03.37 1000 STREAM 141924 21083 6096601 2024-02-28 10:29:03.394 2024-02-28 10:29:03.394 1000 STREAM 141924 13931 6096616 2024-02-28 10:31:03.403 2024-02-28 10:31:03.403 1000 STREAM 141924 16176 6096624 2024-02-28 10:33:03.408 2024-02-28 10:33:03.408 1000 STREAM 141924 11192 6096629 2024-02-28 10:35:03.402 2024-02-28 10:35:03.402 1000 STREAM 141924 15978 6096630 2024-02-28 10:36:03.408 2024-02-28 10:36:03.408 1000 STREAM 141924 15843 6096631 2024-02-28 10:37:03.417 2024-02-28 10:37:03.417 1000 STREAM 141924 18380 6096674 2024-02-28 10:41:03.415 2024-02-28 10:41:03.415 1000 STREAM 141924 17030 6096676 2024-02-28 10:42:03.421 2024-02-28 10:42:03.421 1000 STREAM 141924 5085 6096684 2024-02-28 10:43:03.429 2024-02-28 10:43:03.429 1000 STREAM 141924 681 6096691 2024-02-28 10:44:03.406 2024-02-28 10:44:03.406 1000 STREAM 141924 859 6096698 2024-02-28 10:45:03.423 2024-02-28 10:45:03.423 1000 STREAM 141924 712 6096718 2024-02-28 10:47:03.437 2024-02-28 10:47:03.437 1000 STREAM 141924 19527 6096746 2024-02-28 10:48:03.457 2024-02-28 10:48:03.457 1000 STREAM 141924 666 6096764 2024-02-28 10:50:03.47 2024-02-28 10:50:03.47 1000 STREAM 141924 15266 6095730 2024-02-28 08:37:02.649 2024-02-28 08:37:02.649 1000 STREAM 141924 6382 6095756 2024-02-28 08:43:02.852 2024-02-28 08:43:02.852 1000 STREAM 141924 18380 6095802 2024-02-28 08:49:02.865 2024-02-28 08:49:02.865 1000 STREAM 141924 19938 6095820 2024-02-28 08:51:02.894 2024-02-28 08:51:02.894 1000 STREAM 141924 17592 6095825 2024-02-28 08:53:02.895 2024-02-28 08:53:02.895 1000 STREAM 141924 2224 6095923 2024-02-28 08:57:02.947 2024-02-28 08:57:02.947 1000 STREAM 141924 13143 6095932 2024-02-28 09:01:02.981 2024-02-28 09:01:02.981 1000 STREAM 141924 19034 6095778 2024-02-28 08:45:02.88 2024-02-28 08:45:02.88 1000 STREAM 141924 21540 6095792 2024-02-28 08:47:02.857 2024-02-28 08:47:02.857 1000 STREAM 141924 9816 6095938 2024-02-28 09:02:02.798 2024-02-28 09:02:02.798 1000 STREAM 141924 21033 6096024 2024-02-28 09:15:02.833 2024-02-28 09:15:02.833 1000 STREAM 141924 669 6096040 2024-02-28 09:17:02.851 2024-02-28 09:17:02.851 1000 STREAM 141924 2342 6096062 2024-02-28 09:20:02.862 2024-02-28 09:20:02.862 1000 STREAM 141924 18177 6096067 2024-02-28 09:22:02.863 2024-02-28 09:22:02.863 1000 STREAM 141924 10359 6096093 2024-02-28 09:24:02.871 2024-02-28 09:24:02.871 1000 STREAM 141924 6384 6096100 2024-02-28 09:25:02.885 2024-02-28 09:25:02.885 1000 STREAM 141924 12736 6096104 2024-02-28 09:26:02.88 2024-02-28 09:26:02.88 1000 STREAM 141924 661 6096124 2024-02-28 09:28:02.905 2024-02-28 09:28:02.905 1000 STREAM 141924 9109 6096135 2024-02-28 09:29:02.908 2024-02-28 09:29:02.908 1000 STREAM 141924 19863 6096144 2024-02-28 09:30:02.947 2024-02-28 09:30:02.947 1000 STREAM 141924 21555 6096147 2024-02-28 09:31:02.909 2024-02-28 09:31:02.909 1000 STREAM 141924 5195 6096151 2024-02-28 09:32:02.941 2024-02-28 09:32:02.941 1000 STREAM 141924 16267 6096156 2024-02-28 09:33:02.934 2024-02-28 09:33:02.934 1000 STREAM 141924 14818 6096157 2024-02-28 09:34:02.921 2024-02-28 09:34:02.921 1000 STREAM 141924 20153 6096158 2024-02-28 09:35:02.931 2024-02-28 09:35:02.931 1000 STREAM 141924 3342 6096159 2024-02-28 09:36:02.939 2024-02-28 09:36:02.939 1000 STREAM 141924 18956 6096181 2024-02-28 09:41:02.957 2024-02-28 09:41:02.957 1000 STREAM 141924 19381 6096184 2024-02-28 09:42:02.97 2024-02-28 09:42:02.97 1000 STREAM 141924 11956 6096185 2024-02-28 09:43:02.965 2024-02-28 09:43:02.965 1000 STREAM 141924 10549 6096272 2024-02-28 09:44:02.981 2024-02-28 09:44:02.981 1000 STREAM 141924 15160 6096288 2024-02-28 09:46:02.997 2024-02-28 09:46:02.997 1000 STREAM 141924 1609 6096292 2024-02-28 09:47:02.991 2024-02-28 09:47:02.991 1000 STREAM 141924 21064 6096295 2024-02-28 09:48:03.007 2024-02-28 09:48:03.007 1000 STREAM 141924 12959 6096310 2024-02-28 09:50:03.034 2024-02-28 09:50:03.034 1000 STREAM 141924 19398 6096349 2024-02-28 09:51:03.028 2024-02-28 09:51:03.028 1000 STREAM 141924 902 6096359 2024-02-28 09:53:03.029 2024-02-28 09:53:03.029 1000 STREAM 141924 21343 6096365 2024-02-28 09:54:03.022 2024-02-28 09:54:03.022 1000 STREAM 141924 1705 6096371 2024-02-28 09:55:03.027 2024-02-28 09:55:03.027 1000 STREAM 141924 8269 6096383 2024-02-28 09:58:03.07 2024-02-28 09:58:03.07 1000 STREAM 141924 20327 6096422 2024-02-28 10:03:03.123 2024-02-28 10:03:03.123 1000 STREAM 141924 10668 6096423 2024-02-28 10:04:03.136 2024-02-28 10:04:03.136 1000 STREAM 141924 16194 6096426 2024-02-28 10:05:03.139 2024-02-28 10:05:03.139 1000 STREAM 141924 19394 6096430 2024-02-28 10:07:03.155 2024-02-28 10:07:03.155 1000 STREAM 141924 20287 6096432 2024-02-28 10:09:03.178 2024-02-28 10:09:03.178 1000 STREAM 141924 1983 6096449 2024-02-28 10:15:03.247 2024-02-28 10:15:03.247 1000 STREAM 141924 4238 6096471 2024-02-28 10:19:03.28 2024-02-28 10:19:03.28 1000 STREAM 141924 21338 6096503 2024-02-28 10:21:03.308 2024-02-28 10:21:03.308 1000 STREAM 141924 20183 6096518 2024-02-28 10:22:03.319 2024-02-28 10:22:03.319 1000 STREAM 141924 4973 6096530 2024-02-28 10:23:03.324 2024-02-28 10:23:03.324 1000 STREAM 141924 2460 6096598 2024-02-28 10:28:03.379 2024-02-28 10:28:03.379 1000 STREAM 141924 620 6096613 2024-02-28 10:30:03.415 2024-02-28 10:30:03.415 1000 STREAM 141924 19309 6096618 2024-02-28 10:32:03.397 2024-02-28 10:32:03.397 1000 STREAM 141924 17001 6096625 2024-02-28 10:34:03.401 2024-02-28 10:34:03.401 1000 STREAM 141924 19810 6096632 2024-02-28 10:38:03.412 2024-02-28 10:38:03.412 1000 STREAM 141924 13544 6096655 2024-02-28 10:39:03.406 2024-02-28 10:39:03.406 1000 STREAM 141924 2502 6096663 2024-02-28 10:40:03.423 2024-02-28 10:40:03.423 1000 STREAM 141924 19158 6096710 2024-02-28 10:46:03.427 2024-02-28 10:46:03.427 1000 STREAM 141924 5637 6096753 2024-02-28 10:49:03.471 2024-02-28 10:49:03.471 1000 STREAM 141924 21157 6095974 2024-02-28 09:08:22.272 2024-02-28 09:08:22.272 9000 TIP 441077 21048 6095997 2024-02-28 09:09:50.877 2024-02-28 09:09:50.877 1000 FEE 430854 19995 6095998 2024-02-28 09:09:50.877 2024-02-28 09:09:50.877 9000 TIP 430854 4819 6096003 2024-02-28 09:11:42.351 2024-02-28 09:11:42.351 17000 FEE 441604 18170 6096005 2024-02-28 09:12:00.372 2024-02-28 09:12:00.372 1000 FEE 441605 21494 6096012 2024-02-28 09:13:35.117 2024-02-28 09:13:35.117 2100 FEE 436657 18828 6096013 2024-02-28 09:13:35.117 2024-02-28 09:13:35.117 18900 TIP 436657 21037 6096023 2024-02-28 09:14:22.551 2024-02-28 09:14:22.551 1000 FEE 441606 5499 6096042 2024-02-28 09:17:34.313 2024-02-28 09:17:34.313 1000 POLL 441333 12072 6096072 2024-02-28 09:22:23.154 2024-02-28 09:22:23.154 800 FEE 440592 4415 6096073 2024-02-28 09:22:23.154 2024-02-28 09:22:23.154 7200 TIP 440592 21026 6096074 2024-02-28 09:22:23.363 2024-02-28 09:22:23.363 800 FEE 440592 20470 6096075 2024-02-28 09:22:23.363 2024-02-28 09:22:23.363 7200 TIP 440592 3504 6096085 2024-02-28 09:23:15.315 2024-02-28 09:23:15.315 800 FEE 413571 2111 6096086 2024-02-28 09:23:15.315 2024-02-28 09:23:15.315 7200 TIP 413571 21503 6096095 2024-02-28 09:24:52.374 2024-02-28 09:24:52.374 1000 FEE 440725 4395 6096096 2024-02-28 09:24:52.374 2024-02-28 09:24:52.374 9000 TIP 440725 21222 6096101 2024-02-28 09:25:32.603 2024-02-28 09:25:32.603 10000 FEE 441600 12821 6096102 2024-02-28 09:25:32.603 2024-02-28 09:25:32.603 90000 TIP 441600 18446 6096125 2024-02-28 09:28:05.738 2024-02-28 09:28:05.738 2000 FEE 441600 11898 6096126 2024-02-28 09:28:05.738 2024-02-28 09:28:05.738 18000 TIP 441600 9246 6096166 2024-02-28 09:40:12.208 2024-02-28 09:40:12.208 1000 FEE 441397 1488 6096030 2024-02-28 09:15:22.174 2024-02-28 09:15:22.174 22500 TIP 441606 5646 6096044 2024-02-28 09:18:25.246 2024-02-28 09:18:25.246 1000 FEE 441608 12779 6096033 2024-02-28 09:16:01.307 2024-02-28 09:16:01.307 800 FEE 441346 1209 6096034 2024-02-28 09:16:01.307 2024-02-28 09:16:01.307 7200 TIP 441346 18837 6096053 2024-02-28 09:18:59.871 2024-02-28 09:18:59.871 2100 FEE 441333 18177 6096054 2024-02-28 09:18:59.871 2024-02-28 09:18:59.871 18900 TIP 441333 17041 6096094 2024-02-28 09:24:21.628 2024-02-28 09:24:21.628 21000 DONT_LIKE_THIS 441607 807 6096103 2024-02-28 09:25:57.392 2024-02-28 09:25:57.392 1000 FEE 441610 20243 6096120 2024-02-28 09:28:01.98 2024-02-28 09:28:01.98 2000 FEE 441601 16789 6096121 2024-02-28 09:28:01.98 2024-02-28 09:28:01.98 18000 TIP 441601 974 6096162 2024-02-28 09:37:40.58 2024-02-28 09:37:40.58 1000 POLL 441333 19121 6096194 2024-02-28 09:43:52.571 2024-02-28 09:43:52.571 500 FEE 441407 21599 6096195 2024-02-28 09:43:52.571 2024-02-28 09:43:52.571 4500 TIP 441407 8385 6096198 2024-02-28 09:43:52.922 2024-02-28 09:43:52.922 500 FEE 441407 17817 6096199 2024-02-28 09:43:52.922 2024-02-28 09:43:52.922 4500 TIP 441407 17148 6096211 2024-02-28 09:43:56.42 2024-02-28 09:43:56.42 500 FEE 441372 2111 6096212 2024-02-28 09:43:56.42 2024-02-28 09:43:56.42 4500 TIP 441372 705 6096227 2024-02-28 09:43:57.984 2024-02-28 09:43:57.984 500 FEE 441372 20683 6096228 2024-02-28 09:43:57.984 2024-02-28 09:43:57.984 4500 TIP 441372 20502 6096229 2024-02-28 09:43:58.104 2024-02-28 09:43:58.104 500 FEE 441372 624 6096230 2024-02-28 09:43:58.104 2024-02-28 09:43:58.104 4500 TIP 441372 16638 6096239 2024-02-28 09:43:59.364 2024-02-28 09:43:59.364 0 FEE 441615 2338 6096250 2024-02-28 09:44:00.328 2024-02-28 09:44:00.328 500 FEE 441372 17798 6096251 2024-02-28 09:44:00.328 2024-02-28 09:44:00.328 4500 TIP 441372 866 6096254 2024-02-28 09:44:00.717 2024-02-28 09:44:00.717 500 FEE 441372 7916 6096255 2024-02-28 09:44:00.717 2024-02-28 09:44:00.717 4500 TIP 441372 629 6096266 2024-02-28 09:44:01.907 2024-02-28 09:44:01.907 500 FEE 441372 11515 6096267 2024-02-28 09:44:01.907 2024-02-28 09:44:01.907 4500 TIP 441372 13406 6096293 2024-02-28 09:47:15.206 2024-02-28 09:47:15.206 1000 FEE 441624 18601 6096301 2024-02-28 09:49:07.089 2024-02-28 09:49:07.089 0 FEE 441624 15549 6096304 2024-02-28 09:49:38.228 2024-02-28 09:49:38.228 1000 FEE 441606 21037 6096305 2024-02-28 09:49:38.228 2024-02-28 09:49:38.228 9000 TIP 441606 16350 6096323 2024-02-28 09:50:49.486 2024-02-28 09:50:49.486 1000 FEE 441238 683 6096324 2024-02-28 09:50:49.486 2024-02-28 09:50:49.486 9000 TIP 441238 1628 6096329 2024-02-28 09:50:50.02 2024-02-28 09:50:50.02 1000 FEE 441238 21361 6096330 2024-02-28 09:50:50.02 2024-02-28 09:50:50.02 9000 TIP 441238 20603 6096363 2024-02-28 09:53:50.393 2024-02-28 09:53:50.393 0 FEE 441626 18291 6096372 2024-02-28 09:55:29.834 2024-02-28 09:55:29.834 0 FEE 441627 5175 6096375 2024-02-28 09:56:43.963 2024-02-28 09:56:43.963 0 FEE 441626 6741 6096381 2024-02-28 09:57:55.535 2024-02-28 09:57:55.535 1000 FEE 441611 1489 6096382 2024-02-28 09:57:55.535 2024-02-28 09:57:55.535 9000 TIP 441611 18230 6096391 2024-02-28 10:00:52.91 2024-02-28 10:00:52.91 2000 FEE 438694 13143 6096392 2024-02-28 10:00:52.91 2024-02-28 10:00:52.91 18000 TIP 438694 7960 6096051 2024-02-28 09:18:57.215 2024-02-28 09:18:57.215 2100 FEE 441238 10469 6096052 2024-02-28 09:18:57.215 2024-02-28 09:18:57.215 18900 TIP 441238 10102 6096060 2024-02-28 09:19:20.166 2024-02-28 09:19:20.166 2100 FEE 440587 21605 6096061 2024-02-28 09:19:20.166 2024-02-28 09:19:20.166 18900 TIP 440587 1438 6096064 2024-02-28 09:20:29.811 2024-02-28 09:20:29.811 0 FEE 441608 20162 6096081 2024-02-28 09:23:13.896 2024-02-28 09:23:13.896 800 FEE 431104 2075 6096082 2024-02-28 09:23:13.896 2024-02-28 09:23:13.896 7200 TIP 431104 10112 6096091 2024-02-28 09:23:17.503 2024-02-28 09:23:17.503 800 FEE 413569 21303 6096092 2024-02-28 09:23:17.503 2024-02-28 09:23:17.503 7200 TIP 413569 19581 6096129 2024-02-28 09:28:10.402 2024-02-28 09:28:10.402 2000 FEE 441596 15196 6096130 2024-02-28 09:28:10.402 2024-02-28 09:28:10.402 18000 TIP 441596 19398 6096235 2024-02-28 09:43:58.886 2024-02-28 09:43:58.886 1000 FEE 441372 14909 6096236 2024-02-28 09:43:58.886 2024-02-28 09:43:58.886 9000 TIP 441372 21539 6096242 2024-02-28 09:43:59.584 2024-02-28 09:43:59.584 500 FEE 441372 20683 6096243 2024-02-28 09:43:59.584 2024-02-28 09:43:59.584 4500 TIP 441372 11329 6096302 2024-02-28 09:49:37.24 2024-02-28 09:49:37.24 1000 FEE 441592 10719 6096303 2024-02-28 09:49:37.24 2024-02-28 09:49:37.24 9000 TIP 441592 21455 6096306 2024-02-28 09:49:41.953 2024-02-28 09:49:41.953 1000 FEE 441573 16747 6096307 2024-02-28 09:49:41.953 2024-02-28 09:49:41.953 9000 TIP 441573 1534 6096333 2024-02-28 09:50:56.975 2024-02-28 09:50:56.975 1000 FEE 441607 9261 6096334 2024-02-28 09:50:56.975 2024-02-28 09:50:56.975 9000 TIP 441607 20481 6096380 2024-02-28 09:57:40.102 2024-02-28 09:57:40.102 0 FEE 441626 20802 6096433 2024-02-28 10:09:50.138 2024-02-28 10:09:50.138 1000 FEE 441233 16867 6096434 2024-02-28 10:09:50.138 2024-02-28 10:09:50.138 9000 TIP 441233 21589 6096438 2024-02-28 10:12:00.489 2024-02-28 10:12:00.489 1000 FEE 441638 11018 6096461 2024-02-28 10:18:23.221 2024-02-28 10:18:23.221 500 FEE 441238 8133 6096462 2024-02-28 10:18:23.221 2024-02-28 10:18:23.221 4500 TIP 441238 17953 6096513 2024-02-28 10:21:51.928 2024-02-28 10:21:51.928 1000 FEE 441644 16194 6096557 2024-02-28 10:25:45.293 2024-02-28 10:25:45.293 100 FEE 441514 2203 6096558 2024-02-28 10:25:45.293 2024-02-28 10:25:45.293 900 TIP 441514 12708 6096576 2024-02-28 10:26:19.933 2024-02-28 10:26:19.933 100 FEE 441644 18138 6096577 2024-02-28 10:26:19.933 2024-02-28 10:26:19.933 900 TIP 441644 17817 6096583 2024-02-28 10:26:54.682 2024-02-28 10:26:54.682 800 FEE 441553 21619 6096584 2024-02-28 10:26:54.682 2024-02-28 10:26:54.682 7200 TIP 441553 12946 6096587 2024-02-28 10:27:33.112 2024-02-28 10:27:33.112 1000 FEE 441655 9329 6096605 2024-02-28 10:29:42.295 2024-02-28 10:29:42.295 100 FEE 441654 761 6096606 2024-02-28 10:29:42.295 2024-02-28 10:29:42.295 900 TIP 441654 5195 6096607 2024-02-28 10:29:42.485 2024-02-28 10:29:42.485 100 FEE 441654 6136 6096608 2024-02-28 10:29:42.485 2024-02-28 10:29:42.485 900 TIP 441654 21012 6096609 2024-02-28 10:29:42.746 2024-02-28 10:29:42.746 100 FEE 441654 21387 6096610 2024-02-28 10:29:42.746 2024-02-28 10:29:42.746 900 TIP 441654 5497 6096652 2024-02-28 10:38:47.421 2024-02-28 10:38:47.421 1000 FEE 441662 20301 6096657 2024-02-28 10:39:39.34 2024-02-28 10:39:39.34 1000 FEE 440725 20757 6096658 2024-02-28 10:39:39.34 2024-02-28 10:39:39.34 9000 TIP 440725 10591 6096679 2024-02-28 10:42:11.1 2024-02-28 10:42:11.1 100000 FEE 440692 12609 6096680 2024-02-28 10:42:11.1 2024-02-28 10:42:11.1 900000 TIP 440692 19126 6096681 2024-02-28 10:42:14.707 2024-02-28 10:42:14.707 1000 FEE 441665 14295 6096688 2024-02-28 10:43:30.899 2024-02-28 10:43:30.899 0 FEE 441666 12024 6096708 2024-02-28 10:45:29.47 2024-02-28 10:45:29.47 100000 FEE 441671 2775 6096709 2024-02-28 10:45:51.093 2024-02-28 10:45:51.093 1000 FEE 441672 21506 6096741 2024-02-28 10:47:38.392 2024-02-28 10:47:38.392 2500 FEE 441623 641 6096742 2024-02-28 10:47:38.392 2024-02-28 10:47:38.392 22500 TIP 441623 13903 6096754 2024-02-28 10:49:08.036 2024-02-28 10:49:08.036 2100 FEE 441676 19403 6096755 2024-02-28 10:49:08.036 2024-02-28 10:49:08.036 18900 TIP 441676 9438 6096773 2024-02-28 10:52:27.54 2024-02-28 10:52:27.54 1000 FEE 441680 20674 6096796 2024-02-28 10:55:59.361 2024-02-28 10:55:59.361 5000 FEE 441345 15858 6096797 2024-02-28 10:55:59.361 2024-02-28 10:55:59.361 45000 TIP 441345 9261 6096056 2024-02-28 09:19:16.107 2024-02-28 09:19:16.107 10000 FEE 441077 20023 6096057 2024-02-28 09:19:16.107 2024-02-28 09:19:16.107 90000 TIP 441077 1135 6096070 2024-02-28 09:22:22.175 2024-02-28 09:22:22.175 800 FEE 440592 698 6096071 2024-02-28 09:22:22.175 2024-02-28 09:22:22.175 7200 TIP 440592 12024 6096112 2024-02-28 09:27:45.882 2024-02-28 09:27:45.882 500 FEE 440899 18518 6096113 2024-02-28 09:27:45.882 2024-02-28 09:27:45.882 4500 TIP 440899 3411 6096114 2024-02-28 09:27:47.213 2024-02-28 09:27:47.213 500 FEE 440899 4395 6096115 2024-02-28 09:27:47.213 2024-02-28 09:27:47.213 4500 TIP 440899 17147 6096118 2024-02-28 09:27:59.627 2024-02-28 09:27:59.627 500 FEE 441157 11760 6096119 2024-02-28 09:27:59.627 2024-02-28 09:27:59.627 4500 TIP 441157 1208 6096136 2024-02-28 09:29:52.361 2024-02-28 09:29:52.361 500 FEE 440898 21061 6096137 2024-02-28 09:29:52.361 2024-02-28 09:29:52.361 4500 TIP 440898 900 6096145 2024-02-28 09:30:13.156 2024-02-28 09:30:13.156 1000 FEE 441238 17541 6096146 2024-02-28 09:30:13.156 2024-02-28 09:30:13.156 9000 TIP 441238 658 6096170 2024-02-28 09:40:14.008 2024-02-28 09:40:14.008 1000 FEE 441397 19511 6096171 2024-02-28 09:40:14.008 2024-02-28 09:40:14.008 9000 TIP 441397 21540 6096186 2024-02-28 09:43:17.09 2024-02-28 09:43:17.09 1000 FEE 441615 14015 6096200 2024-02-28 09:43:53.108 2024-02-28 09:43:53.108 500 FEE 441407 16351 6096201 2024-02-28 09:43:53.108 2024-02-28 09:43:53.108 4500 TIP 441407 3439 6096202 2024-02-28 09:43:53.302 2024-02-28 09:43:53.302 500 FEE 441407 20756 6096203 2024-02-28 09:43:53.302 2024-02-28 09:43:53.302 4500 TIP 441407 15147 6096204 2024-02-28 09:43:53.561 2024-02-28 09:43:53.561 500 FEE 441407 20424 6096205 2024-02-28 09:43:53.561 2024-02-28 09:43:53.561 4500 TIP 441407 21398 6096240 2024-02-28 09:43:59.419 2024-02-28 09:43:59.419 500 FEE 441372 19037 6096241 2024-02-28 09:43:59.419 2024-02-28 09:43:59.419 4500 TIP 441372 19021 6096258 2024-02-28 09:44:01.091 2024-02-28 09:44:01.091 500 FEE 441372 10013 6096259 2024-02-28 09:44:01.091 2024-02-28 09:44:01.091 4500 TIP 441372 10094 6096285 2024-02-28 09:45:46.417 2024-02-28 09:45:46.417 1000 FEE 441620 3347 6096291 2024-02-28 09:46:25.271 2024-02-28 09:46:25.271 1000 FEE 441623 15833 6096296 2024-02-28 09:48:16.643 2024-02-28 09:48:16.643 100 FEE 441601 17798 6096297 2024-02-28 09:48:16.643 2024-02-28 09:48:16.643 900 TIP 441601 5752 6096313 2024-02-28 09:50:33.896 2024-02-28 09:50:33.896 100 FEE 441612 654 6096314 2024-02-28 09:50:33.896 2024-02-28 09:50:33.896 900 TIP 441612 21469 6096315 2024-02-28 09:50:34.699 2024-02-28 09:50:34.699 1000 FEE 441614 19826 6096316 2024-02-28 09:50:34.699 2024-02-28 09:50:34.699 9000 TIP 441614 5557 6096331 2024-02-28 09:50:55.706 2024-02-28 09:50:55.706 1000 FEE 441604 14910 6096332 2024-02-28 09:50:55.706 2024-02-28 09:50:55.706 9000 TIP 441604 18583 6096335 2024-02-28 09:50:57.281 2024-02-28 09:50:57.281 1000 FEE 441611 21523 6096336 2024-02-28 09:50:57.281 2024-02-28 09:50:57.281 9000 TIP 441611 20436 6096354 2024-02-28 09:51:41.196 2024-02-28 09:51:41.196 1000 FEE 441626 9167 6096361 2024-02-28 09:53:18.144 2024-02-28 09:53:18.144 0 FEE 441627 1425 6096362 2024-02-28 09:53:37.814 2024-02-28 09:53:37.814 21000 FEE 441629 16954 6096366 2024-02-28 09:54:41.487 2024-02-28 09:54:41.487 100 FEE 441629 27 6096367 2024-02-28 09:54:41.487 2024-02-28 09:54:41.487 900 TIP 441629 1316 6096388 2024-02-28 10:00:04.694 2024-02-28 10:00:04.694 100000 FEE 441632 19601 6096389 2024-02-28 10:00:05.095 2024-02-28 10:00:05.095 1000 FEE 441633 8506 6096415 2024-02-28 10:01:42.583 2024-02-28 10:01:42.583 2000 FEE 441560 17827 6096416 2024-02-28 10:01:42.583 2024-02-28 10:01:42.583 18000 TIP 441560 1064 6096424 2024-02-28 10:04:39.217 2024-02-28 10:04:39.217 1000 FEE 441635 19553 6096427 2024-02-28 10:05:34.33 2024-02-28 10:05:34.33 100 FEE 441560 13378 6096109 2024-02-28 09:26:57.99 2024-02-28 09:26:57.99 200 FEE 441423 9184 6096110 2024-02-28 09:26:57.99 2024-02-28 09:26:57.99 1800 TIP 441423 20073 6096116 2024-02-28 09:27:56.062 2024-02-28 09:27:56.062 2000 FEE 441602 4304 6096117 2024-02-28 09:27:56.062 2024-02-28 09:27:56.062 18000 TIP 441602 2029 6096127 2024-02-28 09:28:09.335 2024-02-28 09:28:09.335 2000 FEE 441596 20969 6096128 2024-02-28 09:28:09.335 2024-02-28 09:28:09.335 18000 TIP 441596 11144 6096160 2024-02-28 09:36:32.977 2024-02-28 09:36:32.977 15000 FEE 441613 20647 6096182 2024-02-28 09:41:23.591 2024-02-28 09:41:23.591 1000 FEE 441247 7119 6096183 2024-02-28 09:41:23.591 2024-02-28 09:41:23.591 9000 TIP 441247 7913 6096196 2024-02-28 09:43:52.748 2024-02-28 09:43:52.748 500 FEE 441407 794 6096197 2024-02-28 09:43:52.748 2024-02-28 09:43:52.748 4500 TIP 441407 6578 6096207 2024-02-28 09:43:54.573 2024-02-28 09:43:54.573 500 FEE 441407 4378 6096208 2024-02-28 09:43:54.573 2024-02-28 09:43:54.573 4500 TIP 441407 15978 6096221 2024-02-28 09:43:57.47 2024-02-28 09:43:57.47 500 FEE 441372 21522 6096222 2024-02-28 09:43:57.47 2024-02-28 09:43:57.47 4500 TIP 441372 19500 6096225 2024-02-28 09:43:57.773 2024-02-28 09:43:57.773 500 FEE 441372 21349 6096226 2024-02-28 09:43:57.773 2024-02-28 09:43:57.773 4500 TIP 441372 9354 6096231 2024-02-28 09:43:58.36 2024-02-28 09:43:58.36 500 FEE 441372 17570 6096232 2024-02-28 09:43:58.36 2024-02-28 09:43:58.36 4500 TIP 441372 19398 6096233 2024-02-28 09:43:58.451 2024-02-28 09:43:58.451 500 FEE 441372 704 6096234 2024-02-28 09:43:58.451 2024-02-28 09:43:58.451 4500 TIP 441372 19907 6096260 2024-02-28 09:44:01.286 2024-02-28 09:44:01.286 500 FEE 441372 5661 6096261 2024-02-28 09:44:01.286 2024-02-28 09:44:01.286 4500 TIP 441372 13204 6096270 2024-02-28 09:44:02.372 2024-02-28 09:44:02.372 500 FEE 441372 761 6096271 2024-02-28 09:44:02.372 2024-02-28 09:44:02.372 4500 TIP 441372 21453 6096273 2024-02-28 09:44:20.305 2024-02-28 09:44:20.305 1000 FEE 441611 985 6096274 2024-02-28 09:44:20.305 2024-02-28 09:44:20.305 9000 TIP 441611 16289 6096275 2024-02-28 09:44:25.604 2024-02-28 09:44:25.604 1000 FEE 441618 895 6096311 2024-02-28 09:50:28.345 2024-02-28 09:50:28.345 100 FEE 441603 2775 6096312 2024-02-28 09:50:28.345 2024-02-28 09:50:28.345 900 TIP 441603 18016 6096343 2024-02-28 09:51:00.096 2024-02-28 09:51:00.096 10000 FEE 441171 10409 6096344 2024-02-28 09:51:00.096 2024-02-28 09:51:00.096 90000 TIP 441171 6594 6096376 2024-02-28 09:56:51.319 2024-02-28 09:56:51.319 1100 FEE 441514 13100 6096377 2024-02-28 09:56:51.319 2024-02-28 09:56:51.319 9900 TIP 441514 21481 6096397 2024-02-28 10:01:10.211 2024-02-28 10:01:10.211 2000 FEE 439770 14857 6096398 2024-02-28 10:01:10.211 2024-02-28 10:01:10.211 18000 TIP 439770 19381 6096490 2024-02-28 10:20:20.528 2024-02-28 10:20:20.528 2100 FEE 441628 7418 6096491 2024-02-28 10:20:20.528 2024-02-28 10:20:20.528 18900 TIP 441628 692 6096494 2024-02-28 10:20:41.615 2024-02-28 10:20:41.615 5700 FEE 441466 19809 6096495 2024-02-28 10:20:41.615 2024-02-28 10:20:41.615 51300 TIP 441466 18271 6096531 2024-02-28 10:23:05.097 2024-02-28 10:23:05.097 100 FEE 441529 20084 6096532 2024-02-28 10:23:05.097 2024-02-28 10:23:05.097 900 TIP 441529 18262 6096535 2024-02-28 10:23:46.105 2024-02-28 10:23:46.105 1000 FEE 441648 17707 6096561 2024-02-28 10:25:45.606 2024-02-28 10:25:45.606 100 FEE 441514 19156 6096562 2024-02-28 10:25:45.606 2024-02-28 10:25:45.606 900 TIP 441514 18017 6096578 2024-02-28 10:26:20.406 2024-02-28 10:26:20.406 100 FEE 441644 21405 6096579 2024-02-28 10:26:20.406 2024-02-28 10:26:20.406 900 TIP 441644 19154 6096592 2024-02-28 10:27:45.212 2024-02-28 10:27:45.212 100 FEE 441515 16149 6096593 2024-02-28 10:27:45.212 2024-02-28 10:27:45.212 900 TIP 441515 20258 6096603 2024-02-28 10:29:42.091 2024-02-28 10:29:42.091 100 FEE 441654 2437 6096604 2024-02-28 10:29:42.091 2024-02-28 10:29:42.091 900 TIP 441654 1833 6096620 2024-02-28 10:32:18.293 2024-02-28 10:32:18.293 2100 FEE 440725 20377 6096621 2024-02-28 10:32:18.293 2024-02-28 10:32:18.293 18900 TIP 440725 7809 6096627 2024-02-28 10:35:01.486 2024-02-28 10:35:01.486 10000 FEE 441660 1483 6096628 2024-02-28 10:35:01.486 2024-02-28 10:35:01.486 90000 TIP 441660 15703 6096642 2024-02-28 10:38:16.301 2024-02-28 10:38:16.301 5000 FEE 441431 20781 6096643 2024-02-28 10:38:16.301 2024-02-28 10:38:16.301 45000 TIP 441431 976 6096669 2024-02-28 10:40:34.381 2024-02-28 10:40:34.381 2100 FEE 441071 2101 6096670 2024-02-28 10:40:34.381 2024-02-28 10:40:34.381 18900 TIP 441071 16442 6096673 2024-02-28 10:40:48.297 2024-02-28 10:40:48.297 1000 FEE 441664 19553 6096689 2024-02-28 10:43:40.227 2024-02-28 10:43:40.227 1000 FEE 441667 760 6096694 2024-02-28 10:44:21.939 2024-02-28 10:44:21.939 1000 FEE 441668 910 6096735 2024-02-28 10:47:37.422 2024-02-28 10:47:37.422 2500 FEE 441623 21239 6096736 2024-02-28 10:47:37.422 2024-02-28 10:47:37.422 22500 TIP 441623 937 6096749 2024-02-28 10:48:16.493 2024-02-28 10:48:16.493 1000 FEE 441676 1534 6096167 2024-02-28 09:40:12.208 2024-02-28 09:40:12.208 9000 TIP 441397 7558 6096168 2024-02-28 09:40:13.345 2024-02-28 09:40:13.345 1000 FEE 441397 2596 6096169 2024-02-28 09:40:13.345 2024-02-28 09:40:13.345 9000 TIP 441397 18518 6096172 2024-02-28 09:40:14.407 2024-02-28 09:40:14.407 1000 FEE 441397 1394 6096173 2024-02-28 09:40:14.407 2024-02-28 09:40:14.407 9000 TIP 441397 1652 6096174 2024-02-28 09:40:15.203 2024-02-28 09:40:15.203 1000 FEE 441397 7510 6096175 2024-02-28 09:40:15.203 2024-02-28 09:40:15.203 9000 TIP 441397 13782 6096206 2024-02-28 09:43:54.527 2024-02-28 09:43:54.527 1000 FEE 441617 12422 6096217 2024-02-28 09:43:57.148 2024-02-28 09:43:57.148 500 FEE 441372 19557 6096218 2024-02-28 09:43:57.148 2024-02-28 09:43:57.148 4500 TIP 441372 20436 6096219 2024-02-28 09:43:57.313 2024-02-28 09:43:57.313 500 FEE 441372 20137 6096220 2024-02-28 09:43:57.313 2024-02-28 09:43:57.313 4500 TIP 441372 15549 6096252 2024-02-28 09:44:00.54 2024-02-28 09:44:00.54 500 FEE 441372 20340 6096253 2024-02-28 09:44:00.54 2024-02-28 09:44:00.54 4500 TIP 441372 21463 6096256 2024-02-28 09:44:00.913 2024-02-28 09:44:00.913 500 FEE 441372 11750 6096257 2024-02-28 09:44:00.913 2024-02-28 09:44:00.913 4500 TIP 441372 19034 6096276 2024-02-28 09:44:27.936 2024-02-28 09:44:27.936 1000 FEE 441588 15119 6096277 2024-02-28 09:44:27.936 2024-02-28 09:44:27.936 9000 TIP 441588 14037 6096284 2024-02-28 09:45:21.81 2024-02-28 09:45:21.81 1000 FEE 441619 10690 6096287 2024-02-28 09:45:54.617 2024-02-28 09:45:54.617 1000 FEE 441622 14080 6096341 2024-02-28 09:50:59.821 2024-02-28 09:50:59.821 10000 FEE 441171 14074 6096342 2024-02-28 09:50:59.821 2024-02-28 09:50:59.821 90000 TIP 441171 7125 6096345 2024-02-28 09:51:00.44 2024-02-28 09:51:00.44 10000 FEE 441171 20504 6096346 2024-02-28 09:51:00.44 2024-02-28 09:51:00.44 90000 TIP 441171 977 6096355 2024-02-28 09:51:50.852 2024-02-28 09:51:50.852 21000 FEE 441627 2502 6096360 2024-02-28 09:53:11.28 2024-02-28 09:53:11.28 10000 FEE 441628 11091 6096395 2024-02-28 10:01:09.94 2024-02-28 10:01:09.94 2000 FEE 439770 6137 6096396 2024-02-28 10:01:09.94 2024-02-28 10:01:09.94 18000 TIP 439770 18392 6096399 2024-02-28 10:01:10.422 2024-02-28 10:01:10.422 2000 FEE 439770 654 6096400 2024-02-28 10:01:10.422 2024-02-28 10:01:10.422 18000 TIP 439770 20970 6096406 2024-02-28 10:01:30.645 2024-02-28 10:01:30.645 1000 FEE 441634 794 6096411 2024-02-28 10:01:41.778 2024-02-28 10:01:41.778 2000 FEE 441560 21591 6096412 2024-02-28 10:01:41.778 2024-02-28 10:01:41.778 18000 TIP 441560 19094 6096425 2024-02-28 10:04:46.629 2024-02-28 10:04:46.629 1000 FEE 441636 999 6096445 2024-02-28 10:13:38.974 2024-02-28 10:13:38.974 2100 FEE 439154 19857 6096446 2024-02-28 10:13:38.974 2024-02-28 10:13:38.974 18900 TIP 439154 20642 6096448 2024-02-28 10:14:58.964 2024-02-28 10:14:58.964 1000 POLL 441333 18412 6096451 2024-02-28 10:15:51.65 2024-02-28 10:15:51.65 2100 FEE 437269 1959 6096452 2024-02-28 10:15:51.65 2024-02-28 10:15:51.65 18900 TIP 437269 17227 6096463 2024-02-28 10:18:25.51 2024-02-28 10:18:25.51 2100 FEE 441238 18637 6096464 2024-02-28 10:18:25.51 2024-02-28 10:18:25.51 18900 TIP 441238 647 6096467 2024-02-28 10:18:26.568 2024-02-28 10:18:26.568 2100 FEE 441238 18188 6096468 2024-02-28 10:18:26.568 2024-02-28 10:18:26.568 18900 TIP 441238 17116 6096469 2024-02-28 10:18:27.334 2024-02-28 10:18:27.334 2100 FEE 441238 11153 6096470 2024-02-28 10:18:27.334 2024-02-28 10:18:27.334 18900 TIP 441238 18174 6096476 2024-02-28 10:19:40.887 2024-02-28 10:19:40.887 5700 FEE 441617 21453 6096477 2024-02-28 10:19:40.887 2024-02-28 10:19:40.887 51300 TIP 441617 21356 6096480 2024-02-28 10:20:00.077 2024-02-28 10:20:00.077 5700 FEE 441560 16842 6096481 2024-02-28 10:20:00.077 2024-02-28 10:20:00.077 51300 TIP 441560 19640 6096510 2024-02-28 10:21:16.544 2024-02-28 10:21:16.544 5700 FEE 441553 21401 6096511 2024-02-28 10:21:16.544 2024-02-28 10:21:16.544 51300 TIP 441553 12218 6096514 2024-02-28 10:21:59.075 2024-02-28 10:21:59.075 2100 FEE 441333 10060 6096515 2024-02-28 10:21:59.075 2024-02-28 10:21:59.075 18900 TIP 441333 21140 6096536 2024-02-28 10:23:46.228 2024-02-28 10:23:46.228 1000 FEE 441649 5173 6096539 2024-02-28 10:24:31.096 2024-02-28 10:24:31.096 0 FEE 441647 17838 6096545 2024-02-28 10:25:11.857 2024-02-28 10:25:11.857 1000 FEE 441651 18016 6096546 2024-02-28 10:25:13.768 2024-02-28 10:25:13.768 1000 FEE 441633 18945 6096547 2024-02-28 10:25:13.768 2024-02-28 10:25:13.768 9000 TIP 441633 13753 6096550 2024-02-28 10:25:16.049 2024-02-28 10:25:16.049 2100 FEE 441641 20129 6096551 2024-02-28 10:25:16.049 2024-02-28 10:25:16.049 18900 TIP 441641 974 6096553 2024-02-28 10:25:44.513 2024-02-28 10:25:44.513 100 FEE 441514 12779 6096554 2024-02-28 10:25:44.513 2024-02-28 10:25:44.513 900 TIP 441514 1740 6096567 2024-02-28 10:25:59.323 2024-02-28 10:25:59.323 100 FEE 441640 13055 6096568 2024-02-28 10:25:59.323 2024-02-28 10:25:59.323 900 TIP 441640 2342 6096590 2024-02-28 10:27:45.02 2024-02-28 10:27:45.02 100 FEE 441515 21562 6096591 2024-02-28 10:27:45.02 2024-02-28 10:27:45.02 900 TIP 441515 1519 6096599 2024-02-28 10:28:24.149 2024-02-28 10:28:24.149 1000 FEE 441656 9350 6096644 2024-02-28 10:38:17.069 2024-02-28 10:38:17.069 5000 FEE 441431 19843 6096645 2024-02-28 10:38:17.069 2024-02-28 10:38:17.069 45000 TIP 441431 18667 6096646 2024-02-28 10:38:19.566 2024-02-28 10:38:19.566 5000 FEE 441393 5565 6096647 2024-02-28 10:38:19.566 2024-02-28 10:38:19.566 45000 TIP 441393 17316 6096659 2024-02-28 10:39:44.859 2024-02-28 10:39:44.859 5700 FEE 441659 10849 6096660 2024-02-28 10:39:44.859 2024-02-28 10:39:44.859 51300 TIP 441659 19446 6096666 2024-02-28 10:40:29.676 2024-02-28 10:40:29.676 1000 FEE 441663 2151 6096675 2024-02-28 10:41:31.041 2024-02-28 10:41:31.041 1000 POLL 441333 9078 6096692 2024-02-28 10:44:16.715 2024-02-28 10:44:16.715 1000 FEE 441074 21578 6096693 2024-02-28 10:44:16.715 2024-02-28 10:44:16.715 9000 TIP 441074 19837 6096695 2024-02-28 10:44:32.734 2024-02-28 10:44:32.734 100000 FEE 441669 1650 6096703 2024-02-28 10:45:15.375 2024-02-28 10:45:15.375 1000 FEE 441670 684 6096739 2024-02-28 10:47:37.814 2024-02-28 10:47:37.814 2500 FEE 441623 18310 6096740 2024-02-28 10:47:37.814 2024-02-28 10:47:37.814 22500 TIP 441623 20267 6096757 2024-02-28 10:49:10.948 2024-02-28 10:49:10.948 1000 FEE 441678 18533 6096791 2024-02-28 10:55:15.223 2024-02-28 10:55:15.223 2100 FEE 441375 16842 6096792 2024-02-28 10:55:15.223 2024-02-28 10:55:15.223 18900 TIP 441375 16571 6096800 2024-02-28 10:56:33.654 2024-02-28 10:56:33.654 1000 FEE 441684 9418 6096808 2024-02-28 10:57:33.443 2024-02-28 10:57:33.443 100 FEE 440690 1705 6096809 2024-02-28 10:57:33.443 2024-02-28 10:57:33.443 900 TIP 440690 739 6096818 2024-02-28 10:58:37.238 2024-02-28 10:58:37.238 5000 FEE 441451 18393 6096819 2024-02-28 10:58:37.238 2024-02-28 10:58:37.238 45000 TIP 441451 20106 6096189 2024-02-28 09:43:51.764 2024-02-28 09:43:51.764 4500 TIP 441407 18539 6096190 2024-02-28 09:43:51.995 2024-02-28 09:43:51.995 500 FEE 441407 2543 6096191 2024-02-28 09:43:51.995 2024-02-28 09:43:51.995 4500 TIP 441407 11716 6096244 2024-02-28 09:43:59.767 2024-02-28 09:43:59.767 500 FEE 441372 7978 6096245 2024-02-28 09:43:59.767 2024-02-28 09:43:59.767 4500 TIP 441372 20990 6096268 2024-02-28 09:44:02.117 2024-02-28 09:44:02.117 500 FEE 441372 20326 6096269 2024-02-28 09:44:02.117 2024-02-28 09:44:02.117 4500 TIP 441372 21269 6096294 2024-02-28 09:48:01.888 2024-02-28 09:48:01.888 1000 FEE 441625 900 6096308 2024-02-28 09:49:49.599 2024-02-28 09:49:49.599 1000 FEE 441567 20434 6096309 2024-02-28 09:49:49.599 2024-02-28 09:49:49.599 9000 TIP 441567 19966 6096325 2024-02-28 09:50:49.646 2024-02-28 09:50:49.646 1000 FEE 441238 16004 6096326 2024-02-28 09:50:49.646 2024-02-28 09:50:49.646 9000 TIP 441238 19546 6096337 2024-02-28 09:50:58.325 2024-02-28 09:50:58.325 10000 FEE 441171 12768 6096338 2024-02-28 09:50:58.325 2024-02-28 09:50:58.325 90000 TIP 441171 4459 6096390 2024-02-28 10:00:21.777 2024-02-28 10:00:21.777 0 FEE 441626 15484 6096405 2024-02-28 10:01:28.186 2024-02-28 10:01:28.186 0 FEE 441628 19557 6096407 2024-02-28 10:01:40.94 2024-02-28 10:01:40.94 2000 FEE 441560 21042 6096408 2024-02-28 10:01:40.94 2024-02-28 10:01:40.94 18000 TIP 441560 1389 6096472 2024-02-28 10:19:21.397 2024-02-28 10:19:21.397 1000 FEE 441640 9166 6096482 2024-02-28 10:20:00.956 2024-02-28 10:20:00.956 2100 FEE 441529 1051 6096483 2024-02-28 10:20:00.956 2024-02-28 10:20:00.956 18900 TIP 441529 1723 6096485 2024-02-28 10:20:06.268 2024-02-28 10:20:06.268 5700 FEE 441539 19581 6096486 2024-02-28 10:20:06.268 2024-02-28 10:20:06.268 51300 TIP 441539 20231 6096492 2024-02-28 10:20:27.763 2024-02-28 10:20:27.763 5700 FEE 441483 10591 6096493 2024-02-28 10:20:27.763 2024-02-28 10:20:27.763 51300 TIP 441483 1490 6096496 2024-02-28 10:20:49.862 2024-02-28 10:20:49.862 5700 FEE 441465 18862 6096497 2024-02-28 10:20:49.862 2024-02-28 10:20:49.862 51300 TIP 441465 21136 6096512 2024-02-28 10:21:18.907 2024-02-28 10:21:18.907 1000 FEE 441643 18842 6096559 2024-02-28 10:25:45.42 2024-02-28 10:25:45.42 100 FEE 441514 3544 6096560 2024-02-28 10:25:45.42 2024-02-28 10:25:45.42 900 TIP 441514 20504 6096574 2024-02-28 10:26:19.644 2024-02-28 10:26:19.644 100 FEE 441644 20981 6096575 2024-02-28 10:26:19.644 2024-02-28 10:26:19.644 900 TIP 441644 16149 6096581 2024-02-28 10:26:40.517 2024-02-28 10:26:40.517 2100 FEE 441652 14905 6096582 2024-02-28 10:26:40.517 2024-02-28 10:26:40.517 18900 TIP 441652 4083 6096586 2024-02-28 10:27:14.021 2024-02-28 10:27:14.021 1000 FEE 441654 18842 6096602 2024-02-28 10:29:15.377 2024-02-28 10:29:15.377 0 FEE 441656 634 6096671 2024-02-28 10:40:42.284 2024-02-28 10:40:42.284 2100 FEE 440503 4304 6096672 2024-02-28 10:40:42.284 2024-02-28 10:40:42.284 18900 TIP 440503 2029 6096685 2024-02-28 10:43:11.752 2024-02-28 10:43:11.752 1100 FEE 441519 14381 6096686 2024-02-28 10:43:11.752 2024-02-28 10:43:11.752 9900 TIP 441519 20701 6096690 2024-02-28 10:44:00.756 2024-02-28 10:44:00.756 0 FEE 441667 798 6096717 2024-02-28 10:46:37.669 2024-02-28 10:46:37.669 1000 FEE 441673 20555 6096721 2024-02-28 10:47:32.106 2024-02-28 10:47:32.106 2500 FEE 441665 14905 6096722 2024-02-28 10:47:32.106 2024-02-28 10:47:32.106 22500 TIP 441665 17184 6096723 2024-02-28 10:47:32.392 2024-02-28 10:47:32.392 2500 FEE 441665 667 6096724 2024-02-28 10:47:32.392 2024-02-28 10:47:32.392 22500 TIP 441665 21155 6096733 2024-02-28 10:47:34.922 2024-02-28 10:47:34.922 2500 FEE 441634 11458 6096734 2024-02-28 10:47:34.922 2024-02-28 10:47:34.922 22500 TIP 441634 21472 6096737 2024-02-28 10:47:37.602 2024-02-28 10:47:37.602 2500 FEE 441623 18470 6096738 2024-02-28 10:47:37.602 2024-02-28 10:47:37.602 22500 TIP 441623 5444 6096743 2024-02-28 10:47:39.4 2024-02-28 10:47:39.4 1000 FEE 441674 19524 6096758 2024-02-28 10:49:13.329 2024-02-28 10:49:13.329 100 FEE 441669 2583 6096759 2024-02-28 10:49:13.329 2024-02-28 10:49:13.329 900 TIP 441669 20251 6096765 2024-02-28 10:50:15.674 2024-02-28 10:50:15.674 5000 FEE 441367 14045 6096766 2024-02-28 10:50:15.674 2024-02-28 10:50:15.674 45000 TIP 441367 20613 6096769 2024-02-28 10:51:41.254 2024-02-28 10:51:41.254 10000 FEE 441579 8269 6096770 2024-02-28 10:51:41.254 2024-02-28 10:51:41.254 90000 TIP 441579 13767 6096810 2024-02-28 10:57:36.711 2024-02-28 10:57:36.711 1000 FEE 441687 1310 6096812 2024-02-28 10:57:40.253 2024-02-28 10:57:40.253 1000 FEE 441688 19995 6096826 2024-02-28 10:59:36.447 2024-02-28 10:59:36.447 1000 FEE 441685 18454 6096827 2024-02-28 10:59:36.447 2024-02-28 10:59:36.447 9000 TIP 441685 18243 6096846 2024-02-28 11:00:24.465 2024-02-28 11:00:24.465 100 FEE 441685 5646 6096847 2024-02-28 11:00:24.465 2024-02-28 11:00:24.465 900 TIP 441685 14906 6096850 2024-02-28 11:00:29.122 2024-02-28 11:00:29.122 100 FEE 441077 6148 6096851 2024-02-28 11:00:29.122 2024-02-28 11:00:29.122 900 TIP 441077 1105 6096903 2024-02-28 11:02:29.93 2024-02-28 11:02:29.93 3300 FEE 441701 7818 6096904 2024-02-28 11:02:29.93 2024-02-28 11:02:29.93 29700 TIP 441701 7979 6096917 2024-02-28 11:03:33.608 2024-02-28 11:03:33.608 5000 FEE 441699 18994 6096918 2024-02-28 11:03:33.608 2024-02-28 11:03:33.608 45000 TIP 441699 21480 6096944 2024-02-28 11:06:46.767 2024-02-28 11:06:46.767 0 FEE 441699 17124 6096949 2024-02-28 11:08:33.112 2024-02-28 11:08:33.112 0 FEE 441699 9332 6096956 2024-02-28 11:09:50.709 2024-02-28 11:09:50.709 1000 FEE 441717 13042 6096958 2024-02-28 11:09:57.59 2024-02-28 11:09:57.59 1000 FEE 441719 20691 6096959 2024-02-28 11:10:02.267 2024-02-28 11:10:02.267 5000 FEE 441712 20377 6096960 2024-02-28 11:10:02.267 2024-02-28 11:10:02.267 45000 TIP 441712 19036 6096991 2024-02-28 11:13:21.7 2024-02-28 11:13:21.7 800 FEE 441684 12606 6096992 2024-02-28 11:13:21.7 2024-02-28 11:13:21.7 7200 TIP 441684 13574 6096999 2024-02-28 11:14:08.391 2024-02-28 11:14:08.391 100 FEE 441724 999 6097000 2024-02-28 11:14:08.391 2024-02-28 11:14:08.391 900 TIP 441724 4831 6097016 2024-02-28 11:15:57.802 2024-02-28 11:15:57.802 1000 FEE 441730 937 6097020 2024-02-28 11:16:14.722 2024-02-28 11:16:14.722 10000 FEE 441718 10549 6097021 2024-02-28 11:16:14.722 2024-02-28 11:16:14.722 90000 TIP 441718 667 6097023 2024-02-28 11:16:36.042 2024-02-28 11:16:36.042 5000 FEE 441274 20892 6097024 2024-02-28 11:16:36.042 2024-02-28 11:16:36.042 45000 TIP 441274 19193 6097032 2024-02-28 11:18:35.979 2024-02-28 11:18:35.979 1000 FEE 441733 1802 6097035 2024-02-28 11:19:26.712 2024-02-28 11:19:26.712 1000 FEE 441734 4502 6097044 2024-02-28 11:20:16.681 2024-02-28 11:20:16.681 1000 FEE 441736 12072 6097056 2024-02-28 11:22:52.385 2024-02-28 11:22:52.385 1600 FEE 441701 20509 6097057 2024-02-28 11:22:52.385 2024-02-28 11:22:52.385 14400 TIP 441701 5961 6097095 2024-02-28 11:23:18.212 2024-02-28 11:23:18.212 500 FEE 441687 21019 6097096 2024-02-28 11:23:18.212 2024-02-28 11:23:18.212 4500 TIP 441687 16052 6097101 2024-02-28 11:23:19.451 2024-02-28 11:23:19.451 5700 FEE 441739 18243 6097102 2024-02-28 11:23:19.451 2024-02-28 11:23:19.451 51300 TIP 441739 17446 6097120 2024-02-28 11:26:26.853 2024-02-28 11:26:26.853 1000 FEE 441560 20973 6097121 2024-02-28 11:26:26.853 2024-02-28 11:26:26.853 9000 TIP 441560 1425 6097123 2024-02-28 11:27:07.365 2024-02-28 11:27:07.365 0 FEE 441733 18784 6097135 2024-02-28 11:28:24.149 2024-02-28 11:28:24.149 0 FEE 441744 17172 6096318 2024-02-28 09:50:35.319 2024-02-28 09:50:35.319 900 TIP 441603 3213 6096327 2024-02-28 09:50:49.823 2024-02-28 09:50:49.823 1000 FEE 441238 13406 6096328 2024-02-28 09:50:49.823 2024-02-28 09:50:49.823 9000 TIP 441238 19639 6096352 2024-02-28 09:51:23.271 2024-02-28 09:51:23.271 1000 FEE 441607 1983 6096353 2024-02-28 09:51:23.271 2024-02-28 09:51:23.271 9000 TIP 441607 8287 6096364 2024-02-28 09:54:00.228 2024-02-28 09:54:00.228 1000 FEE 441630 16347 6096368 2024-02-28 09:54:45.002 2024-02-28 09:54:45.002 100 FEE 441627 9476 6096369 2024-02-28 09:54:45.002 2024-02-28 09:54:45.002 900 TIP 441627 1468 6096379 2024-02-28 09:57:10.318 2024-02-28 09:57:10.318 1000 FEE 441631 11820 6096384 2024-02-28 09:59:02.126 2024-02-28 09:59:02.126 1000 FEE 441621 6533 6096385 2024-02-28 09:59:02.126 2024-02-28 09:59:02.126 9000 TIP 441621 14370 6096393 2024-02-28 10:00:54.251 2024-02-28 10:00:54.251 0 FEE 441626 16230 6096401 2024-02-28 10:01:11.398 2024-02-28 10:01:11.398 2000 FEE 439770 4048 6096402 2024-02-28 10:01:11.398 2024-02-28 10:01:11.398 18000 TIP 439770 1425 6096420 2024-02-28 10:02:44.44 2024-02-28 10:02:44.44 1100 FEE 441620 10668 6096421 2024-02-28 10:02:44.44 2024-02-28 10:02:44.44 9900 TIP 441620 19352 6096441 2024-02-28 10:13:15.211 2024-02-28 10:13:15.211 2500 FEE 441626 18629 6096442 2024-02-28 10:13:15.211 2024-02-28 10:13:15.211 22500 TIP 441626 630 6096454 2024-02-28 10:16:11.442 2024-02-28 10:16:11.442 100 FEE 441635 21292 6096455 2024-02-28 10:16:11.442 2024-02-28 10:16:11.442 900 TIP 441635 10849 6096488 2024-02-28 10:20:18.851 2024-02-28 10:20:18.851 2100 FEE 441626 18468 6096489 2024-02-28 10:20:18.851 2024-02-28 10:20:18.851 18900 TIP 441626 10728 6096498 2024-02-28 10:20:51.211 2024-02-28 10:20:51.211 2000 FEE 439770 4776 6096499 2024-02-28 10:20:51.211 2024-02-28 10:20:51.211 18000 TIP 439770 20152 6096506 2024-02-28 10:21:04.197 2024-02-28 10:21:04.197 5700 FEE 441460 10398 6096507 2024-02-28 10:21:04.197 2024-02-28 10:21:04.197 51300 TIP 441460 9332 6096519 2024-02-28 10:22:05.591 2024-02-28 10:22:05.591 2100 FEE 441372 720 6096520 2024-02-28 10:22:05.591 2024-02-28 10:22:05.591 18900 TIP 441372 7960 6096521 2024-02-28 10:22:07.394 2024-02-28 10:22:07.394 2100 FEE 441553 10393 6096522 2024-02-28 10:22:07.394 2024-02-28 10:22:07.394 18900 TIP 441553 15088 6096356 2024-02-28 09:51:51.219 2024-02-28 09:51:51.219 0 FEE 441626 18005 6096358 2024-02-28 09:52:14.047 2024-02-28 09:52:14.047 0 FEE 441627 19966 6096370 2024-02-28 09:54:47.186 2024-02-28 09:54:47.186 0 FEE 441626 19286 6096373 2024-02-28 09:56:00.723 2024-02-28 09:56:00.723 0 FEE 441626 21083 6096437 2024-02-28 10:11:25.831 2024-02-28 10:11:25.831 10000 FEE 441637 9351 6096474 2024-02-28 10:19:36.245 2024-02-28 10:19:36.245 5700 FEE 441624 631 6096475 2024-02-28 10:19:36.245 2024-02-28 10:19:36.245 51300 TIP 441624 12738 6096502 2024-02-28 10:20:58.051 2024-02-28 10:20:58.051 1000 FEE 441642 18241 6096504 2024-02-28 10:21:03.412 2024-02-28 10:21:03.412 5700 FEE 441421 17091 6096505 2024-02-28 10:21:03.412 2024-02-28 10:21:03.412 51300 TIP 441421 20663 6096523 2024-02-28 10:22:18.829 2024-02-28 10:22:18.829 1000 FEE 441645 13249 6096525 2024-02-28 10:22:35.273 2024-02-28 10:22:35.273 1000 FEE 441647 14909 6096526 2024-02-28 10:23:02.546 2024-02-28 10:23:02.546 100 FEE 441529 2013 6096527 2024-02-28 10:23:02.546 2024-02-28 10:23:02.546 900 TIP 441529 2010 6096538 2024-02-28 10:24:15.815 2024-02-28 10:24:15.815 0 FEE 441647 20757 6096552 2024-02-28 10:25:40.611 2024-02-28 10:25:40.611 1000 FEE 441652 7986 6096565 2024-02-28 10:25:58.848 2024-02-28 10:25:58.848 100 FEE 441640 16354 6096566 2024-02-28 10:25:58.848 2024-02-28 10:25:58.848 900 TIP 441640 21600 6096572 2024-02-28 10:26:19.385 2024-02-28 10:26:19.385 100 FEE 441644 1705 6096573 2024-02-28 10:26:19.385 2024-02-28 10:26:19.385 900 TIP 441644 16679 6096650 2024-02-28 10:38:23.02 2024-02-28 10:38:23.02 5000 FEE 441047 19967 6096651 2024-02-28 10:38:23.02 2024-02-28 10:38:23.02 45000 TIP 441047 19639 6096656 2024-02-28 10:39:24.586 2024-02-28 10:39:24.586 1000 POLL 441333 19346 6096677 2024-02-28 10:42:05.453 2024-02-28 10:42:05.453 9000 FEE 440692 20026 6096678 2024-02-28 10:42:05.453 2024-02-28 10:42:05.453 81000 TIP 440692 4538 6096699 2024-02-28 10:45:04.263 2024-02-28 10:45:04.263 100 FEE 441661 20190 6096700 2024-02-28 10:45:04.263 2024-02-28 10:45:04.263 900 TIP 441661 12291 6096713 2024-02-28 10:46:11.782 2024-02-28 10:46:11.782 100 FEE 441669 7847 6096714 2024-02-28 10:46:11.782 2024-02-28 10:46:11.782 900 TIP 441669 9363 6096729 2024-02-28 10:47:34.493 2024-02-28 10:47:34.493 2500 FEE 441634 19777 6096730 2024-02-28 10:47:34.493 2024-02-28 10:47:34.493 22500 TIP 441634 18468 6096744 2024-02-28 10:47:43.8 2024-02-28 10:47:43.8 1000 FEE 441675 1733 6096745 2024-02-28 10:48:00.575 2024-02-28 10:48:00.575 0 FEE 441674 17042 6096771 2024-02-28 10:51:57.608 2024-02-28 10:51:57.608 200000 DONT_LIKE_THIS 441579 17891 6096807 2024-02-28 10:57:17.568 2024-02-28 10:57:17.568 1000 FEE 441686 1549 6096820 2024-02-28 10:58:54.093 2024-02-28 10:58:54.093 100 FEE 441571 1626 6096821 2024-02-28 10:58:54.093 2024-02-28 10:58:54.093 900 TIP 441571 15510 6096825 2024-02-28 10:59:26.972 2024-02-28 10:59:26.972 1000 FEE 441693 5129 6096832 2024-02-28 10:59:38.88 2024-02-28 10:59:38.88 100000 FEE 441694 9363 6096854 2024-02-28 11:00:30.996 2024-02-28 11:00:30.996 5000 FEE 441410 12561 6096855 2024-02-28 11:00:30.996 2024-02-28 11:00:30.996 45000 TIP 441410 20099 6096860 2024-02-28 11:00:37.241 2024-02-28 11:00:37.241 100 FEE 440729 12819 6096861 2024-02-28 11:00:37.241 2024-02-28 11:00:37.241 900 TIP 440729 8841 6096888 2024-02-28 11:01:25.141 2024-02-28 11:01:25.141 5700 FEE 441699 13046 6096889 2024-02-28 11:01:25.141 2024-02-28 11:01:25.141 51300 TIP 441699 10007 6096897 2024-02-28 11:01:51.961 2024-02-28 11:01:51.961 1000 FEE 441703 9427 6096908 2024-02-28 11:02:58.137 2024-02-28 11:02:58.137 0 FEE 441699 16562 6096919 2024-02-28 11:03:33.788 2024-02-28 11:03:33.788 5000 FEE 441699 5173 6096920 2024-02-28 11:03:33.788 2024-02-28 11:03:33.788 45000 TIP 441699 5308 6096932 2024-02-28 11:04:47.282 2024-02-28 11:04:47.282 1000 FEE 441710 9351 6096933 2024-02-28 11:04:47.282 2024-02-28 11:04:47.282 9000 TIP 441710 18727 6096957 2024-02-28 11:09:56.221 2024-02-28 11:09:56.221 98000 FEE 441718 814 6096981 2024-02-28 11:12:16.016 2024-02-28 11:12:16.016 1000 FEE 441683 20434 6096982 2024-02-28 11:12:16.016 2024-02-28 11:12:16.016 9000 TIP 441683 756 6097009 2024-02-28 11:14:57.534 2024-02-28 11:14:57.534 1000 FEE 441728 9816 6097022 2024-02-28 11:16:24.996 2024-02-28 11:16:24.996 1000 FEE 441731 5085 6097052 2024-02-28 11:21:44.357 2024-02-28 11:21:44.357 1600 FEE 441699 21523 6097053 2024-02-28 11:21:44.357 2024-02-28 11:21:44.357 14400 TIP 441699 1549 6097055 2024-02-28 11:22:45.661 2024-02-28 11:22:45.661 1000 FEE 441739 20897 6097067 2024-02-28 11:23:15.231 2024-02-28 11:23:15.231 500 FEE 441687 827 6097068 2024-02-28 11:23:15.231 2024-02-28 11:23:15.231 4500 TIP 441687 1769 6097073 2024-02-28 11:23:16.297 2024-02-28 11:23:16.297 500 FEE 441687 19633 6097074 2024-02-28 11:23:16.297 2024-02-28 11:23:16.297 4500 TIP 441687 18769 6097075 2024-02-28 11:23:16.465 2024-02-28 11:23:16.465 500 FEE 441687 21494 6097076 2024-02-28 11:23:16.465 2024-02-28 11:23:16.465 4500 TIP 441687 688 6097087 2024-02-28 11:23:17.361 2024-02-28 11:23:17.361 500 FEE 441687 2203 6097088 2024-02-28 11:23:17.361 2024-02-28 11:23:17.361 4500 TIP 441687 20436 6097105 2024-02-28 11:23:32.089 2024-02-28 11:23:32.089 1000 POLL 441660 21079 6097106 2024-02-28 11:24:02.799 2024-02-28 11:24:02.799 1000 FEE 441740 18690 6097130 2024-02-28 11:27:40.361 2024-02-28 11:27:40.361 0 FEE 441744 2204 6097148 2024-02-28 11:29:27.223 2024-02-28 11:29:27.223 1600 FEE 441737 2709 6097149 2024-02-28 11:29:27.223 2024-02-28 11:29:27.223 14400 TIP 441737 13361 6097154 2024-02-28 11:30:16.337 2024-02-28 11:30:16.337 5700 FEE 441747 626 6097155 2024-02-28 11:30:16.337 2024-02-28 11:30:16.337 51300 TIP 441747 18842 6097158 2024-02-28 11:30:30.926 2024-02-28 11:30:30.926 5700 FEE 441719 7376 6097159 2024-02-28 11:30:30.926 2024-02-28 11:30:30.926 51300 TIP 441719 6578 6097226 2024-02-28 11:38:16.736 2024-02-28 11:38:16.736 1000 FEE 441766 20616 6097230 2024-02-28 11:39:45.181 2024-02-28 11:39:45.181 1000 FEE 441767 21103 6097247 2024-02-28 11:40:20.42 2024-02-28 11:40:20.42 300 FEE 441749 8284 6097248 2024-02-28 11:40:20.42 2024-02-28 11:40:20.42 2700 TIP 441749 9365 6097259 2024-02-28 11:40:22.142 2024-02-28 11:40:22.142 300 FEE 441749 20225 6097260 2024-02-28 11:40:22.142 2024-02-28 11:40:22.142 2700 TIP 441749 19961 6097261 2024-02-28 11:40:22.396 2024-02-28 11:40:22.396 300 FEE 441749 16809 6097262 2024-02-28 11:40:22.396 2024-02-28 11:40:22.396 2700 TIP 441749 18680 6097265 2024-02-28 11:40:22.896 2024-02-28 11:40:22.896 300 FEE 441749 15484 6097266 2024-02-28 11:40:22.896 2024-02-28 11:40:22.896 2700 TIP 441749 12562 6097285 2024-02-28 11:41:57.29 2024-02-28 11:41:57.29 10000 FEE 440866 859 6097286 2024-02-28 11:41:57.29 2024-02-28 11:41:57.29 90000 TIP 440866 21044 6097289 2024-02-28 11:41:58.527 2024-02-28 11:41:58.527 300 FEE 441749 19094 6097290 2024-02-28 11:41:58.527 2024-02-28 11:41:58.527 2700 TIP 441749 4074 6097291 2024-02-28 11:41:58.736 2024-02-28 11:41:58.736 300 FEE 441749 899 6097292 2024-02-28 11:41:58.736 2024-02-28 11:41:58.736 2700 TIP 441749 11450 6097293 2024-02-28 11:41:58.971 2024-02-28 11:41:58.971 300 FEE 441749 7966 6097294 2024-02-28 11:41:58.971 2024-02-28 11:41:58.971 2700 TIP 441749 3439 6097304 2024-02-28 11:42:05.673 2024-02-28 11:42:05.673 300 FEE 441749 21455 6097305 2024-02-28 11:42:05.673 2024-02-28 11:42:05.673 2700 TIP 441749 5728 6097306 2024-02-28 11:42:18.472 2024-02-28 11:42:18.472 1600 FEE 441756 9969 6097307 2024-02-28 11:42:18.472 2024-02-28 11:42:18.472 14400 TIP 441756 16706 6097313 2024-02-28 11:43:52.172 2024-02-28 11:43:52.172 1000 FEE 441774 8726 6096394 2024-02-28 10:01:03.309 2024-02-28 10:01:03.309 1000 STREAM 141924 18178 6096417 2024-02-28 10:02:03.292 2024-02-28 10:02:03.292 1000 STREAM 141924 1803 6096403 2024-02-28 10:01:11.594 2024-02-28 10:01:11.594 2000 FEE 439770 20073 6096404 2024-02-28 10:01:11.594 2024-02-28 10:01:11.594 18000 TIP 439770 11829 6096409 2024-02-28 10:01:41.228 2024-02-28 10:01:41.228 2000 FEE 441560 8985 6096410 2024-02-28 10:01:41.228 2024-02-28 10:01:41.228 18000 TIP 441560 10280 6096413 2024-02-28 10:01:41.953 2024-02-28 10:01:41.953 2000 FEE 441560 10611 6096414 2024-02-28 10:01:41.953 2024-02-28 10:01:41.953 18000 TIP 441560 12911 6096418 2024-02-28 10:02:31.559 2024-02-28 10:02:31.559 500 FEE 441570 20858 6096419 2024-02-28 10:02:31.559 2024-02-28 10:02:31.559 4500 TIP 441570 2844 6096443 2024-02-28 10:13:38.555 2024-02-28 10:13:38.555 1000 FEE 441637 6533 6096444 2024-02-28 10:13:38.555 2024-02-28 10:13:38.555 9000 TIP 441637 6798 6096456 2024-02-28 10:16:11.721 2024-02-28 10:16:11.721 100 FEE 441635 21172 6096457 2024-02-28 10:16:11.721 2024-02-28 10:16:11.721 900 TIP 441635 6300 6096487 2024-02-28 10:20:10.019 2024-02-28 10:20:10.019 0 FEE 441640 3396 6096508 2024-02-28 10:21:08.152 2024-02-28 10:21:08.152 5700 FEE 441409 17741 6096509 2024-02-28 10:21:08.152 2024-02-28 10:21:08.152 51300 TIP 441409 20327 6096516 2024-02-28 10:22:02.766 2024-02-28 10:22:02.766 2100 FEE 441560 987 6096517 2024-02-28 10:22:02.766 2024-02-28 10:22:02.766 18900 TIP 441560 1602 6096524 2024-02-28 10:22:27.874 2024-02-28 10:22:27.874 69000 FEE 441646 16289 6096528 2024-02-28 10:23:03.11 2024-02-28 10:23:03.11 100 FEE 441529 21523 6096529 2024-02-28 10:23:03.11 2024-02-28 10:23:03.11 900 TIP 441529 749 6096533 2024-02-28 10:23:09.515 2024-02-28 10:23:09.515 1000 FEE 441647 4323 6096534 2024-02-28 10:23:09.515 2024-02-28 10:23:09.515 9000 TIP 441647 2513 6096541 2024-02-28 10:24:37.56 2024-02-28 10:24:37.56 1000 FEE 441650 19864 6096542 2024-02-28 10:24:38.867 2024-02-28 10:24:38.867 2100 FEE 441648 11670 6096543 2024-02-28 10:24:38.867 2024-02-28 10:24:38.867 18900 TIP 441648 19289 6096555 2024-02-28 10:25:44.968 2024-02-28 10:25:44.968 100 FEE 441514 9438 6096556 2024-02-28 10:25:44.968 2024-02-28 10:25:44.968 900 TIP 441514 20816 6096563 2024-02-28 10:25:49.865 2024-02-28 10:25:49.865 2100 FEE 441640 21492 6096564 2024-02-28 10:25:49.865 2024-02-28 10:25:49.865 18900 TIP 441640 11999 6096588 2024-02-28 10:27:44.76 2024-02-28 10:27:44.76 100 FEE 441515 5527 6096589 2024-02-28 10:27:44.76 2024-02-28 10:27:44.76 900 TIP 441515 18635 6096594 2024-02-28 10:27:45.523 2024-02-28 10:27:45.523 100 FEE 441515 2203 6096595 2024-02-28 10:27:45.523 2024-02-28 10:27:45.523 900 TIP 441515 1010 6096617 2024-02-28 10:31:17.897 2024-02-28 10:31:17.897 1000 FEE 441657 811 6096619 2024-02-28 10:32:04.349 2024-02-28 10:32:04.349 1000 POLL 440725 18630 6096626 2024-02-28 10:34:25.763 2024-02-28 10:34:25.763 97000 FEE 441660 663 6096638 2024-02-28 10:38:15.903 2024-02-28 10:38:15.903 5000 FEE 441431 3506 6096639 2024-02-28 10:38:15.903 2024-02-28 10:38:15.903 45000 TIP 441431 19031 6096664 2024-02-28 10:40:12.195 2024-02-28 10:40:12.195 1100 FEE 441644 12272 6096665 2024-02-28 10:40:12.195 2024-02-28 10:40:12.195 9900 TIP 441644 20799 6096682 2024-02-28 10:42:18.203 2024-02-28 10:42:18.203 2100 FEE 441660 9200 6096683 2024-02-28 10:42:18.203 2024-02-28 10:42:18.203 18900 TIP 441660 1012 6096701 2024-02-28 10:45:09.185 2024-02-28 10:45:09.185 100 FEE 441660 19663 6096702 2024-02-28 10:45:09.185 2024-02-28 10:45:09.185 900 TIP 441660 19511 6096704 2024-02-28 10:45:17.045 2024-02-28 10:45:17.045 100 FEE 441659 21090 6096705 2024-02-28 10:45:17.045 2024-02-28 10:45:17.045 900 TIP 441659 10698 6096711 2024-02-28 10:46:04.508 2024-02-28 10:46:04.508 100 FEE 441671 3347 6096712 2024-02-28 10:46:04.508 2024-02-28 10:46:04.508 900 TIP 441671 21472 6096725 2024-02-28 10:47:32.973 2024-02-28 10:47:32.973 2500 FEE 441665 4345 6096726 2024-02-28 10:47:32.973 2024-02-28 10:47:32.973 22500 TIP 441665 13759 6096727 2024-02-28 10:47:33.551 2024-02-28 10:47:33.551 2500 FEE 441665 18660 6096728 2024-02-28 10:47:33.551 2024-02-28 10:47:33.551 22500 TIP 441665 18608 6096731 2024-02-28 10:47:34.741 2024-02-28 10:47:34.741 2500 FEE 441634 14404 6096732 2024-02-28 10:47:34.741 2024-02-28 10:47:34.741 22500 TIP 441634 776 6096776 2024-02-28 10:54:08.938 2024-02-28 10:54:08.938 100 FEE 441424 10519 6096777 2024-02-28 10:54:08.938 2024-02-28 10:54:08.938 900 TIP 441424 16406 6096795 2024-02-28 10:55:20.754 2024-02-28 10:55:20.754 0 FEE 441681 761 6096799 2024-02-28 10:56:09.997 2024-02-28 10:56:09.997 1000 FEE 441683 654 6096824 2024-02-28 10:59:26.545 2024-02-28 10:59:26.545 1000 FEE 441692 2709 6096838 2024-02-28 11:00:14.02 2024-02-28 11:00:14.02 1000 FEE 441698 13587 6096839 2024-02-28 11:00:14.184 2024-02-28 11:00:14.184 1000 FEE 441699 828 6096844 2024-02-28 11:00:21.666 2024-02-28 11:00:21.666 100 FEE 441694 9184 6096845 2024-02-28 11:00:21.666 2024-02-28 11:00:21.666 900 TIP 441694 15549 6096858 2024-02-28 11:00:35.893 2024-02-28 11:00:35.893 100 FEE 441247 5865 6096859 2024-02-28 11:00:35.893 2024-02-28 11:00:35.893 900 TIP 441247 20897 6096864 2024-02-28 11:00:43.13 2024-02-28 11:00:43.13 1000 FEE 441700 10273 6096867 2024-02-28 11:00:45.869 2024-02-28 11:00:45.869 100 FEE 441169 2077 6096868 2024-02-28 11:00:45.869 2024-02-28 11:00:45.869 900 TIP 441169 4763 6096880 2024-02-28 11:01:10.432 2024-02-28 11:01:10.432 100 FEE 441600 19118 6096881 2024-02-28 11:01:10.432 2024-02-28 11:01:10.432 900 TIP 441600 5522 6096882 2024-02-28 11:01:12.761 2024-02-28 11:01:12.761 100 FEE 441300 5757 6096883 2024-02-28 11:01:12.761 2024-02-28 11:01:12.761 900 TIP 441300 15119 6096900 2024-02-28 11:02:20.422 2024-02-28 11:02:20.422 1000 FEE 441704 19848 6096901 2024-02-28 11:02:27.564 2024-02-28 11:02:27.564 100 FEE 441063 659 6096902 2024-02-28 11:02:27.564 2024-02-28 11:02:27.564 900 TIP 441063 20340 6096907 2024-02-28 11:02:53.815 2024-02-28 11:02:53.815 10000 FEE 441705 14552 6096915 2024-02-28 11:03:22.222 2024-02-28 11:03:22.222 1000 FEE 441707 21332 6096928 2024-02-28 11:04:44.934 2024-02-28 11:04:44.934 1000 FEE 441701 20597 6096929 2024-02-28 11:04:44.934 2024-02-28 11:04:44.934 9000 TIP 441701 10693 6096941 2024-02-28 11:05:32.074 2024-02-28 11:05:32.074 1000 FEE 441713 21494 6096950 2024-02-28 11:08:40.836 2024-02-28 11:08:40.836 1000 POLL 441333 21003 6096951 2024-02-28 11:08:52.665 2024-02-28 11:08:52.665 100 FEE 441631 20546 6096952 2024-02-28 11:08:52.665 2024-02-28 11:08:52.665 900 TIP 441631 20137 6096968 2024-02-28 11:10:59.399 2024-02-28 11:10:59.399 1000 FEE 441721 2609 6096969 2024-02-28 11:11:02.172 2024-02-28 11:11:02.172 200 FEE 441238 17541 6096970 2024-02-28 11:11:02.172 2024-02-28 11:11:02.172 1800 TIP 441238 12175 6096976 2024-02-28 11:11:17.061 2024-02-28 11:11:17.061 1000 FEE 441722 6393 6096984 2024-02-28 11:12:27.874 2024-02-28 11:12:27.874 1000 FEE 441723 20376 6096989 2024-02-28 11:13:03.21 2024-02-28 11:13:03.21 11000 FEE 441724 21600 6097011 2024-02-28 11:15:05.05 2024-02-28 11:15:05.05 100 FEE 441639 2709 6097012 2024-02-28 11:15:05.05 2024-02-28 11:15:05.05 900 TIP 441639 18679 6097036 2024-02-28 11:19:40.276 2024-02-28 11:19:40.276 1000 FEE 441644 5752 6097037 2024-02-28 11:19:40.276 2024-02-28 11:19:40.276 9000 TIP 441644 21620 6097038 2024-02-28 11:19:40.599 2024-02-28 11:19:40.599 1000 FEE 441735 2101 6097039 2024-02-28 11:19:43.955 2024-02-28 11:19:43.955 2100 FEE 441571 2776 6097040 2024-02-28 11:19:43.955 2024-02-28 11:19:43.955 18900 TIP 441571 21349 6097065 2024-02-28 11:23:15.163 2024-02-28 11:23:15.163 500 FEE 441687 4692 6097066 2024-02-28 11:23:15.163 2024-02-28 11:23:15.163 4500 TIP 441687 19660 6097103 2024-02-28 11:23:21.265 2024-02-28 11:23:21.265 800 FEE 441719 19633 6097104 2024-02-28 11:23:21.265 2024-02-28 11:23:21.265 7200 TIP 441719 1733 6097115 2024-02-28 11:25:52.555 2024-02-28 11:25:52.555 1000 FEE 441743 999 6097124 2024-02-28 11:27:10.392 2024-02-28 11:27:10.392 1000 FEE 441744 708 6097132 2024-02-28 11:28:08.207 2024-02-28 11:28:08.207 0 FEE 441744 11458 6096428 2024-02-28 10:05:34.33 2024-02-28 10:05:34.33 900 TIP 441560 17291 6096450 2024-02-28 10:15:37.363 2024-02-28 10:15:37.363 1000 POLL 441333 21263 6096459 2024-02-28 10:17:36.357 2024-02-28 10:17:36.357 1000 FEE 441639 1429 6096465 2024-02-28 10:18:26.052 2024-02-28 10:18:26.052 2100 FEE 441238 18774 6096466 2024-02-28 10:18:26.052 2024-02-28 10:18:26.052 18900 TIP 441238 12102 6096473 2024-02-28 10:19:21.767 2024-02-28 10:19:21.767 1000 FEE 441641 5069 6096478 2024-02-28 10:19:47.309 2024-02-28 10:19:47.309 5700 FEE 441597 6041 6096479 2024-02-28 10:19:47.309 2024-02-28 10:19:47.309 51300 TIP 441597 20646 6096500 2024-02-28 10:20:51.39 2024-02-28 10:20:51.39 2000 FEE 439770 19826 6096501 2024-02-28 10:20:51.39 2024-02-28 10:20:51.39 18000 TIP 439770 620 6096540 2024-02-28 10:24:33.717 2024-02-28 10:24:33.717 0 FEE 441649 17103 6096570 2024-02-28 10:26:19.147 2024-02-28 10:26:19.147 100 FEE 441644 19005 6096571 2024-02-28 10:26:19.147 2024-02-28 10:26:19.147 900 TIP 441644 21063 6096580 2024-02-28 10:26:27.795 2024-02-28 10:26:27.795 1000 FEE 441653 2749 6096596 2024-02-28 10:27:45.824 2024-02-28 10:27:45.824 100 FEE 441515 21172 6096597 2024-02-28 10:27:45.824 2024-02-28 10:27:45.824 900 TIP 441515 9331 6096600 2024-02-28 10:28:57.607 2024-02-28 10:28:57.607 0 FEE 441656 18989 6096611 2024-02-28 10:29:43.168 2024-02-28 10:29:43.168 100 FEE 441654 18745 6096612 2024-02-28 10:29:43.168 2024-02-28 10:29:43.168 900 TIP 441654 10586 6096622 2024-02-28 10:32:45.891 2024-02-28 10:32:45.891 1000 FEE 441658 6653 6096634 2024-02-28 10:38:13.618 2024-02-28 10:38:13.618 5000 FEE 441475 13406 6096635 2024-02-28 10:38:13.618 2024-02-28 10:38:13.618 45000 TIP 441475 21400 6096636 2024-02-28 10:38:15.524 2024-02-28 10:38:15.524 5000 FEE 441431 1959 6096637 2024-02-28 10:38:15.524 2024-02-28 10:38:15.524 45000 TIP 441431 4043 6096648 2024-02-28 10:38:20.972 2024-02-28 10:38:20.972 5000 FEE 441061 11885 6096649 2024-02-28 10:38:20.972 2024-02-28 10:38:20.972 45000 TIP 441061 8945 6096706 2024-02-28 10:45:27.123 2024-02-28 10:45:27.123 100 FEE 441637 21067 6096707 2024-02-28 10:45:27.123 2024-02-28 10:45:27.123 900 TIP 441637 15159 6096715 2024-02-28 10:46:23.137 2024-02-28 10:46:23.137 100 FEE 441422 20062 6096716 2024-02-28 10:46:23.137 2024-02-28 10:46:23.137 900 TIP 441422 11450 6096719 2024-02-28 10:47:31.332 2024-02-28 10:47:31.332 2500 FEE 441634 20636 6096720 2024-02-28 10:47:31.332 2024-02-28 10:47:31.332 22500 TIP 441634 19987 6096762 2024-02-28 10:49:25.323 2024-02-28 10:49:25.323 100 FEE 441627 17976 6096763 2024-02-28 10:49:25.323 2024-02-28 10:49:25.323 900 TIP 441627 11158 6096779 2024-02-28 10:54:30.753 2024-02-28 10:54:30.753 1000 FEE 441682 1733 6096781 2024-02-28 10:55:08.479 2024-02-28 10:55:08.479 10000 FEE 441660 21019 6096782 2024-02-28 10:55:08.479 2024-02-28 10:55:08.479 90000 TIP 441660 1002 6096785 2024-02-28 10:55:14.24 2024-02-28 10:55:14.24 1000 POLL 441660 19668 6096788 2024-02-28 10:55:14.762 2024-02-28 10:55:14.762 0 FEE 441681 18659 6096793 2024-02-28 10:55:15.794 2024-02-28 10:55:15.794 2100 FEE 441375 18177 6096794 2024-02-28 10:55:15.794 2024-02-28 10:55:15.794 18900 TIP 441375 1603 6096803 2024-02-28 10:56:54.181 2024-02-28 10:56:54.181 5000 FEE 441493 8269 6096804 2024-02-28 10:56:54.181 2024-02-28 10:56:54.181 45000 TIP 441493 3717 6096805 2024-02-28 10:56:59.118 2024-02-28 10:56:59.118 15000 FEE 441685 20681 6096816 2024-02-28 10:58:27.787 2024-02-28 10:58:27.787 1000 FEE 441689 20817 6096848 2024-02-28 11:00:28.823 2024-02-28 11:00:28.823 100 FEE 441077 20585 6096849 2024-02-28 11:00:28.823 2024-02-28 11:00:28.823 900 TIP 441077 5708 6096865 2024-02-28 11:00:45.575 2024-02-28 11:00:45.575 100 FEE 441169 21405 6096866 2024-02-28 11:00:45.575 2024-02-28 11:00:45.575 900 TIP 441169 21037 6096893 2024-02-28 11:01:41.394 2024-02-28 11:01:41.394 1000 FEE 441185 16267 6096894 2024-02-28 11:01:41.394 2024-02-28 11:01:41.394 9000 TIP 441185 16447 6096905 2024-02-28 11:02:53.027 2024-02-28 11:02:53.027 5700 FEE 441704 2013 6096906 2024-02-28 11:02:53.027 2024-02-28 11:02:53.027 51300 TIP 441704 20087 6096911 2024-02-28 11:03:17.382 2024-02-28 11:03:17.382 5000 FEE 441701 16149 6096912 2024-02-28 11:03:17.382 2024-02-28 11:03:17.382 45000 TIP 441701 19469 6096938 2024-02-28 11:04:49.721 2024-02-28 11:04:49.721 1000 FEE 441699 661 6096939 2024-02-28 11:04:49.721 2024-02-28 11:04:49.721 9000 TIP 441699 2326 6096948 2024-02-28 11:08:25.964 2024-02-28 11:08:25.964 10000 FEE 441715 18351 6096963 2024-02-28 11:10:28.803 2024-02-28 11:10:28.803 100 FEE 441603 20560 6096964 2024-02-28 11:10:28.803 2024-02-28 11:10:28.803 900 TIP 441603 7809 6096983 2024-02-28 11:12:16.588 2024-02-28 11:12:16.588 0 FEE 441716 12774 6096994 2024-02-28 11:13:48.229 2024-02-28 11:13:48.229 1000 FEE 441726 4624 6097005 2024-02-28 11:14:44.315 2024-02-28 11:14:44.315 100 FEE 441718 16706 6097006 2024-02-28 11:14:44.315 2024-02-28 11:14:44.315 900 TIP 441718 21218 6097007 2024-02-28 11:14:45.809 2024-02-28 11:14:45.809 5000 FEE 436306 19469 6097008 2024-02-28 11:14:45.809 2024-02-28 11:14:45.809 45000 TIP 436306 2748 6097042 2024-02-28 11:20:13.26 2024-02-28 11:20:13.26 2800 FEE 441701 4043 6097043 2024-02-28 11:20:13.26 2024-02-28 11:20:13.26 25200 TIP 441701 6526 6097089 2024-02-28 11:23:17.989 2024-02-28 11:23:17.989 500 FEE 441687 1626 6097090 2024-02-28 11:23:17.989 2024-02-28 11:23:17.989 4500 TIP 441687 18659 6097112 2024-02-28 11:25:25.898 2024-02-28 11:25:25.898 10000 FEE 441742 18449 6097127 2024-02-28 11:27:31.841 2024-02-28 11:27:31.841 3200 FEE 441741 19553 6097128 2024-02-28 11:27:31.841 2024-02-28 11:27:31.841 28800 TIP 441741 15336 6097129 2024-02-28 11:27:34.151 2024-02-28 11:27:34.151 1000 FEE 441746 644 6097138 2024-02-28 11:28:31.651 2024-02-28 11:28:31.651 10000 FEE 441715 695 6097139 2024-02-28 11:28:31.651 2024-02-28 11:28:31.651 90000 TIP 441715 657 6097172 2024-02-28 11:31:36.611 2024-02-28 11:31:36.611 1000 FEE 441750 3706 6097189 2024-02-28 11:33:49.361 2024-02-28 11:33:49.361 1000 FEE 441756 6164 6097197 2024-02-28 11:36:01.024 2024-02-28 11:36:01.024 0 FEE 441761 6765 6097257 2024-02-28 11:40:21.855 2024-02-28 11:40:21.855 300 FEE 441749 16753 6097258 2024-02-28 11:40:21.855 2024-02-28 11:40:21.855 2700 TIP 441749 986 6097277 2024-02-28 11:41:56.157 2024-02-28 11:41:56.157 300 FEE 441749 20080 6097278 2024-02-28 11:41:56.157 2024-02-28 11:41:56.157 2700 TIP 441749 3456 6097279 2024-02-28 11:41:56.395 2024-02-28 11:41:56.395 300 FEE 441749 3439 6097280 2024-02-28 11:41:56.395 2024-02-28 11:41:56.395 2700 TIP 441749 2437 6097320 2024-02-28 11:45:38.947 2024-02-28 11:45:38.947 12100 FEE 441765 15367 6097321 2024-02-28 11:45:38.947 2024-02-28 11:45:38.947 108900 TIP 441765 20504 6097326 2024-02-28 11:46:10.848 2024-02-28 11:46:10.848 1000 FEE 441778 19796 6097327 2024-02-28 11:46:22.575 2024-02-28 11:46:22.575 800 FEE 441761 2652 6097328 2024-02-28 11:46:22.575 2024-02-28 11:46:22.575 7200 TIP 441761 1429 6097348 2024-02-28 11:48:46.928 2024-02-28 11:48:46.928 300 FEE 441749 21060 6097349 2024-02-28 11:48:46.928 2024-02-28 11:48:46.928 2700 TIP 441749 21480 6097379 2024-02-28 11:50:14.932 2024-02-28 11:50:14.932 3300 FEE 441708 14905 6097380 2024-02-28 11:50:14.932 2024-02-28 11:50:14.932 29700 TIP 441708 12516 6097384 2024-02-28 11:50:39.256 2024-02-28 11:50:39.256 100000 FEE 441783 16406 6097394 2024-02-28 11:52:00.63 2024-02-28 11:52:00.63 1000 FEE 441786 1596 6097422 2024-02-28 11:53:22.084 2024-02-28 11:53:22.084 300 FEE 441705 19375 6097423 2024-02-28 11:53:22.084 2024-02-28 11:53:22.084 2700 TIP 441705 13177 6097433 2024-02-28 11:55:37.173 2024-02-28 11:55:37.173 1000 FEE 441702 16341 6097434 2024-02-28 11:55:37.173 2024-02-28 11:55:37.173 9000 TIP 441702 1124 6097435 2024-02-28 11:55:58.31 2024-02-28 11:55:58.31 1000 FEE 441792 11192 6097437 2024-02-28 11:56:10.337 2024-02-28 11:56:10.337 6400 FEE 441776 3504 6097438 2024-02-28 11:56:10.337 2024-02-28 11:56:10.337 57600 TIP 441776 16879 6096436 2024-02-28 10:11:03.357 2024-02-28 10:11:03.357 1000 STREAM 141924 12218 6096548 2024-02-28 10:25:14.259 2024-02-28 10:25:14.259 1000 FEE 441633 17212 6096549 2024-02-28 10:25:14.259 2024-02-28 10:25:14.259 9000 TIP 441633 1733 6096614 2024-02-28 10:30:34.685 2024-02-28 10:30:34.685 5000 FEE 441489 20751 6096615 2024-02-28 10:30:34.685 2024-02-28 10:30:34.685 45000 TIP 441489 17041 6096623 2024-02-28 10:32:58.349 2024-02-28 10:32:58.349 100000 FEE 441659 659 6096633 2024-02-28 10:38:12.538 2024-02-28 10:38:12.538 21000 FEE 441661 4167 6096640 2024-02-28 10:38:15.956 2024-02-28 10:38:15.956 5000 FEE 441431 14385 6096641 2024-02-28 10:38:15.956 2024-02-28 10:38:15.956 45000 TIP 441431 2437 6096653 2024-02-28 10:38:48.939 2024-02-28 10:38:48.939 1100 FEE 441640 974 6096654 2024-02-28 10:38:48.939 2024-02-28 10:38:48.939 9900 TIP 441640 10060 6096661 2024-02-28 10:39:47.107 2024-02-28 10:39:47.107 1100 FEE 441649 20094 6096662 2024-02-28 10:39:47.107 2024-02-28 10:39:47.107 9900 TIP 441649 11648 6096667 2024-02-28 10:40:34.353 2024-02-28 10:40:34.353 2100 FEE 441071 20840 6096668 2024-02-28 10:40:34.353 2024-02-28 10:40:34.353 18900 TIP 441071 21044 6096687 2024-02-28 10:43:20.371 2024-02-28 10:43:20.371 1000 FEE 441666 974 6096696 2024-02-28 10:44:52.705 2024-02-28 10:44:52.705 10000 FEE 441187 19463 6096697 2024-02-28 10:44:52.705 2024-02-28 10:44:52.705 90000 TIP 441187 2576 6096747 2024-02-28 10:48:07.142 2024-02-28 10:48:07.142 1100 FEE 441643 20854 6096748 2024-02-28 10:48:07.142 2024-02-28 10:48:07.142 9900 TIP 441643 717 6096751 2024-02-28 10:48:28.456 2024-02-28 10:48:28.456 5000 FEE 441259 20276 6096752 2024-02-28 10:48:28.456 2024-02-28 10:48:28.456 45000 TIP 441259 11378 6096786 2024-02-28 10:55:14.259 2024-02-28 10:55:14.259 2100 FEE 441375 6382 6096787 2024-02-28 10:55:14.259 2024-02-28 10:55:14.259 18900 TIP 441375 13327 6096789 2024-02-28 10:55:14.764 2024-02-28 10:55:14.764 2100 FEE 441375 14465 6096790 2024-02-28 10:55:14.764 2024-02-28 10:55:14.764 18900 TIP 441375 17944 6096814 2024-02-28 10:58:04.62 2024-02-28 10:58:04.62 2100 FEE 440950 21506 6096815 2024-02-28 10:58:04.62 2024-02-28 10:58:04.62 18900 TIP 440950 20454 6096817 2024-02-28 10:58:30.123 2024-02-28 10:58:30.123 1000 FEE 441690 1213 6096833 2024-02-28 10:59:39.912 2024-02-28 10:59:39.912 1000 FEE 441600 14857 6096834 2024-02-28 10:59:39.912 2024-02-28 10:59:39.912 9000 TIP 441600 17183 6096836 2024-02-28 11:00:04.619 2024-02-28 11:00:04.619 100000 FEE 441696 2256 6096842 2024-02-28 11:00:16.12 2024-02-28 11:00:16.12 100 FEE 441238 20710 6096843 2024-02-28 11:00:16.12 2024-02-28 11:00:16.12 900 TIP 441238 9 6096856 2024-02-28 11:00:35.451 2024-02-28 11:00:35.451 100 FEE 441247 16950 6096857 2024-02-28 11:00:35.451 2024-02-28 11:00:35.451 900 TIP 441247 11609 6096874 2024-02-28 11:01:03.775 2024-02-28 11:01:03.775 100 FEE 441560 1983 6096875 2024-02-28 11:01:03.775 2024-02-28 11:01:03.775 900 TIP 441560 3518 6096876 2024-02-28 11:01:04.816 2024-02-28 11:01:04.816 100 FEE 441560 16839 6096877 2024-02-28 11:01:04.816 2024-02-28 11:01:04.816 900 TIP 441560 20744 6096892 2024-02-28 11:01:30.447 2024-02-28 11:01:30.447 0 FEE 441699 10728 6096926 2024-02-28 11:04:19.904 2024-02-28 11:04:19.904 1000 FEE 441711 1136 6096936 2024-02-28 11:04:49.385 2024-02-28 11:04:49.385 1000 FEE 441699 5775 6096937 2024-02-28 11:04:49.385 2024-02-28 11:04:49.385 9000 TIP 441699 6430 6096974 2024-02-28 11:11:09.63 2024-02-28 11:11:09.63 6600 FEE 441709 15577 6096975 2024-02-28 11:11:09.63 2024-02-28 11:11:09.63 59400 TIP 441709 21164 6096977 2024-02-28 11:11:43.07 2024-02-28 11:11:43.07 0 FEE 441716 15858 6096979 2024-02-28 11:12:05.177 2024-02-28 11:12:05.177 100 FEE 441193 16942 6096980 2024-02-28 11:12:05.177 2024-02-28 11:12:05.177 900 TIP 441193 722 6096996 2024-02-28 11:14:00.609 2024-02-28 11:14:00.609 2100 FEE 441719 16556 6096997 2024-02-28 11:14:00.609 2024-02-28 11:14:00.609 18900 TIP 441719 19943 6097001 2024-02-28 11:14:22.448 2024-02-28 11:14:22.448 10000 FEE 441687 2010 6097002 2024-02-28 11:14:22.448 2024-02-28 11:14:22.448 90000 TIP 441687 7583 6097013 2024-02-28 11:15:12.943 2024-02-28 11:15:12.943 100000 FEE 441729 16059 6097034 2024-02-28 11:19:10.058 2024-02-28 11:19:10.058 0 FEE 441733 21603 6097069 2024-02-28 11:23:15.345 2024-02-28 11:23:15.345 500 FEE 441687 11164 6097070 2024-02-28 11:23:15.345 2024-02-28 11:23:15.345 4500 TIP 441687 9333 6097071 2024-02-28 11:23:16.156 2024-02-28 11:23:16.156 500 FEE 441687 14037 6097072 2024-02-28 11:23:16.156 2024-02-28 11:23:16.156 4500 TIP 441687 705 6097077 2024-02-28 11:23:16.59 2024-02-28 11:23:16.59 500 FEE 441687 16410 6097078 2024-02-28 11:23:16.59 2024-02-28 11:23:16.59 4500 TIP 441687 14225 6097083 2024-02-28 11:23:17.082 2024-02-28 11:23:17.082 500 FEE 441687 17797 6097084 2024-02-28 11:23:17.082 2024-02-28 11:23:17.082 4500 TIP 441687 925 6097085 2024-02-28 11:23:17.251 2024-02-28 11:23:17.251 500 FEE 441687 16830 6097086 2024-02-28 11:23:17.251 2024-02-28 11:23:17.251 4500 TIP 441687 20680 6097113 2024-02-28 11:25:29.366 2024-02-28 11:25:29.366 10000 FEE 441600 16966 6097114 2024-02-28 11:25:29.366 2024-02-28 11:25:29.366 90000 TIP 441600 5746 6097117 2024-02-28 11:26:07.293 2024-02-28 11:26:07.293 500 FEE 441560 17226 6097118 2024-02-28 11:26:07.293 2024-02-28 11:26:07.293 4500 TIP 441560 17001 6097125 2024-02-28 11:27:17.966 2024-02-28 11:27:17.966 1000 FEE 441745 18743 6097126 2024-02-28 11:27:28.83 2024-02-28 11:27:28.83 0 FEE 441744 18731 6097140 2024-02-28 11:28:46.929 2024-02-28 11:28:46.929 5700 FEE 441745 16680 6097141 2024-02-28 11:28:46.929 2024-02-28 11:28:46.929 51300 TIP 441745 18626 6097176 2024-02-28 11:31:45.393 2024-02-28 11:31:45.393 5700 FEE 441738 5069 6097177 2024-02-28 11:31:45.393 2024-02-28 11:31:45.393 51300 TIP 441738 21540 6097183 2024-02-28 11:32:54.382 2024-02-28 11:32:54.382 1000 POLL 441333 14990 6097191 2024-02-28 11:33:59.639 2024-02-28 11:33:59.639 1000 FEE 441758 16929 6097251 2024-02-28 11:40:21.08 2024-02-28 11:40:21.08 300 FEE 441749 16717 6097252 2024-02-28 11:40:21.08 2024-02-28 11:40:21.08 2700 TIP 441749 18368 6097253 2024-02-28 11:40:21.33 2024-02-28 11:40:21.33 300 FEE 441749 20680 6097254 2024-02-28 11:40:21.33 2024-02-28 11:40:21.33 2700 TIP 441749 18557 6097295 2024-02-28 11:42:03.56 2024-02-28 11:42:03.56 300 FEE 441749 2832 6097296 2024-02-28 11:42:03.56 2024-02-28 11:42:03.56 2700 TIP 441749 928 6097302 2024-02-28 11:42:05.324 2024-02-28 11:42:05.324 6400 FEE 441754 866 6097303 2024-02-28 11:42:05.324 2024-02-28 11:42:05.324 57600 TIP 441754 20858 6097311 2024-02-28 11:42:57.781 2024-02-28 11:42:57.781 100000 FEE 441773 19581 6097336 2024-02-28 11:48:37.165 2024-02-28 11:48:37.165 1000 FEE 441780 5776 6096750 2024-02-28 10:48:23.713 2024-02-28 10:48:23.713 0 FEE 441674 3347 6096756 2024-02-28 10:49:09.203 2024-02-28 10:49:09.203 1000 FEE 441677 5306 6096760 2024-02-28 10:49:18.239 2024-02-28 10:49:18.239 100 FEE 441661 20987 6096761 2024-02-28 10:49:18.239 2024-02-28 10:49:18.239 900 TIP 441661 1030 6096767 2024-02-28 10:50:57.905 2024-02-28 10:50:57.905 1000 FEE 441679 1814 6096778 2024-02-28 10:54:15.828 2024-02-28 10:54:15.828 1000 FEE 441681 20564 6096783 2024-02-28 10:55:13.725 2024-02-28 10:55:13.725 2100 FEE 441375 6765 6096784 2024-02-28 10:55:13.725 2024-02-28 10:55:13.725 18900 TIP 441375 10944 6096801 2024-02-28 10:56:54.103 2024-02-28 10:56:54.103 5000 FEE 441169 21091 6096802 2024-02-28 10:56:54.103 2024-02-28 10:56:54.103 45000 TIP 441169 713 6096811 2024-02-28 10:57:37.095 2024-02-28 10:57:37.095 1000 POLL 441333 20562 6096823 2024-02-28 10:59:08.202 2024-02-28 10:59:08.202 1000 FEE 441691 3706 6096862 2024-02-28 11:00:42.109 2024-02-28 11:00:42.109 1000 FEE 441386 21627 6096863 2024-02-28 11:00:42.109 2024-02-28 11:00:42.109 9000 TIP 441386 18932 6096869 2024-02-28 11:00:48.151 2024-02-28 11:00:48.151 100 FEE 441169 10981 6096870 2024-02-28 11:00:48.151 2024-02-28 11:00:48.151 900 TIP 441169 9275 6096878 2024-02-28 11:01:10.097 2024-02-28 11:01:10.097 100 FEE 441600 20969 6096879 2024-02-28 11:01:10.097 2024-02-28 11:01:10.097 900 TIP 441600 2711 6096887 2024-02-28 11:01:21.342 2024-02-28 11:01:21.342 1000 FEE 441702 1394 6096898 2024-02-28 11:01:55.579 2024-02-28 11:01:55.579 0 FEE 441699 18640 6096916 2024-02-28 11:03:23.364 2024-02-28 11:03:23.364 1000 FEE 441708 21314 6096922 2024-02-28 11:04:08.212 2024-02-28 11:04:08.212 1000 FEE 441709 21485 6096954 2024-02-28 11:09:08.873 2024-02-28 11:09:08.873 1000 FEE 441716 5085 6096965 2024-02-28 11:10:45.157 2024-02-28 11:10:45.157 1000 POLL 441333 19471 6096966 2024-02-28 11:10:57.777 2024-02-28 11:10:57.777 200 FEE 441238 18051 6096967 2024-02-28 11:10:57.777 2024-02-28 11:10:57.777 1800 TIP 441238 17513 6096987 2024-02-28 11:12:50.676 2024-02-28 11:12:50.676 1000 FEE 441653 21292 6096988 2024-02-28 11:12:50.676 2024-02-28 11:12:50.676 9000 TIP 441653 14258 6097025 2024-02-28 11:16:38.143 2024-02-28 11:16:38.143 5000 FEE 441274 1881 6097026 2024-02-28 11:16:38.143 2024-02-28 11:16:38.143 45000 TIP 441274 9348 6097049 2024-02-28 11:21:16.59 2024-02-28 11:21:16.59 5700 FEE 441721 940 6097050 2024-02-28 11:21:16.59 2024-02-28 11:21:16.59 51300 TIP 441721 18658 6097059 2024-02-28 11:23:14.23 2024-02-28 11:23:14.23 500 FEE 441687 1564 6097060 2024-02-28 11:23:14.23 2024-02-28 11:23:14.23 4500 TIP 441687 16356 6097091 2024-02-28 11:23:18.014 2024-02-28 11:23:18.014 4200 FEE 441274 18731 6097092 2024-02-28 11:23:18.014 2024-02-28 11:23:18.014 37800 TIP 441274 913 6097097 2024-02-28 11:23:19.053 2024-02-28 11:23:19.053 500 FEE 441687 21506 6097098 2024-02-28 11:23:19.053 2024-02-28 11:23:19.053 4500 TIP 441687 19142 6097119 2024-02-28 11:26:22.798 2024-02-28 11:26:22.798 0 FEE 441733 2961 6097136 2024-02-28 11:28:26.82 2024-02-28 11:28:26.82 1000 FEE 441718 20066 6097137 2024-02-28 11:28:26.82 2024-02-28 11:28:26.82 9000 TIP 441718 21589 6097144 2024-02-28 11:28:56.845 2024-02-28 11:28:56.845 1000 FEE 441646 19878 6097145 2024-02-28 11:28:56.845 2024-02-28 11:28:56.845 9000 TIP 441646 946 6097179 2024-02-28 11:31:59.415 2024-02-28 11:31:59.415 100000 FEE 441753 11897 6097184 2024-02-28 11:32:54.948 2024-02-28 11:32:54.948 1000 FEE 441754 1697 6097201 2024-02-28 11:36:20.494 2024-02-28 11:36:20.494 100 FEE 441748 16410 6097202 2024-02-28 11:36:20.494 2024-02-28 11:36:20.494 900 TIP 441748 18138 6097208 2024-02-28 11:36:48.538 2024-02-28 11:36:48.538 1000 FEE 441764 3392 6097215 2024-02-28 11:36:55.076 2024-02-28 11:36:55.076 100 FEE 441735 21269 6097216 2024-02-28 11:36:55.076 2024-02-28 11:36:55.076 900 TIP 441735 9353 6097221 2024-02-28 11:37:35.48 2024-02-28 11:37:35.48 3200 FEE 441751 18269 6097222 2024-02-28 11:37:35.48 2024-02-28 11:37:35.48 28800 TIP 441751 13365 6097228 2024-02-28 11:39:13.441 2024-02-28 11:39:13.441 1000 FEE 441749 9695 6097229 2024-02-28 11:39:13.441 2024-02-28 11:39:13.441 9000 TIP 441749 4624 6097298 2024-02-28 11:42:03.866 2024-02-28 11:42:03.866 300 FEE 441749 15526 6097299 2024-02-28 11:42:03.866 2024-02-28 11:42:03.866 2700 TIP 441749 11378 6097335 2024-02-28 11:48:34.141 2024-02-28 11:48:34.141 0 FEE 441777 651 6097344 2024-02-28 11:48:46.487 2024-02-28 11:48:46.487 300 FEE 441749 15226 6097345 2024-02-28 11:48:46.487 2024-02-28 11:48:46.487 2700 TIP 441749 1628 6097350 2024-02-28 11:48:47.194 2024-02-28 11:48:47.194 300 FEE 441749 11522 6097351 2024-02-28 11:48:47.194 2024-02-28 11:48:47.194 2700 TIP 441749 19259 6097356 2024-02-28 11:48:47.955 2024-02-28 11:48:47.955 300 FEE 441749 8284 6097357 2024-02-28 11:48:47.955 2024-02-28 11:48:47.955 2700 TIP 441749 20597 6097374 2024-02-28 11:48:53.384 2024-02-28 11:48:53.384 0 FEE 441777 18392 6097439 2024-02-28 11:56:14.998 2024-02-28 11:56:14.998 1000 FEE 441793 19153 6097450 2024-02-28 11:57:37.533 2024-02-28 11:57:37.533 800 FEE 441560 20424 6097451 2024-02-28 11:57:37.533 2024-02-28 11:57:37.533 7200 TIP 441560 9026 6097461 2024-02-28 11:58:48.201 2024-02-28 11:58:48.201 300 FEE 441705 992 6097462 2024-02-28 11:58:48.201 2024-02-28 11:58:48.201 2700 TIP 441705 4014 6097479 2024-02-28 12:00:04.884 2024-02-28 12:00:04.884 100000 FEE 441796 12160 6097502 2024-02-28 12:05:46.047 2024-02-28 12:05:46.047 500 FEE 441687 21026 6097503 2024-02-28 12:05:46.047 2024-02-28 12:05:46.047 4500 TIP 441687 13398 6097508 2024-02-28 12:05:47.314 2024-02-28 12:05:47.314 500 FEE 441687 16660 6097509 2024-02-28 12:05:47.314 2024-02-28 12:05:47.314 4500 TIP 441687 910 6097531 2024-02-28 12:10:35.78 2024-02-28 12:10:35.78 5700 FEE 441801 18403 6097532 2024-02-28 12:10:35.78 2024-02-28 12:10:35.78 51300 TIP 441801 16351 6097548 2024-02-28 12:11:12.524 2024-02-28 12:11:12.524 100 FEE 441746 20799 6097549 2024-02-28 12:11:12.524 2024-02-28 12:11:12.524 900 TIP 441746 20713 6097557 2024-02-28 12:11:41.901 2024-02-28 12:11:41.901 5700 FEE 441782 14255 6097558 2024-02-28 12:11:41.901 2024-02-28 12:11:41.901 51300 TIP 441782 21509 6097578 2024-02-28 12:14:57.536 2024-02-28 12:14:57.536 500 FEE 441560 18313 6096768 2024-02-28 10:51:03.505 2024-02-28 10:51:03.505 1000 STREAM 141924 19007 6096774 2024-02-28 10:53:03.493 2024-02-28 10:53:03.493 1000 STREAM 141924 5565 6096775 2024-02-28 10:54:03.504 2024-02-28 10:54:03.504 1000 STREAM 141924 1092 6096798 2024-02-28 10:56:03.491 2024-02-28 10:56:03.491 1000 STREAM 141924 19309 6096813 2024-02-28 10:58:03.499 2024-02-28 10:58:03.499 1000 STREAM 141924 12291 6096943 2024-02-28 11:06:03.556 2024-02-28 11:06:03.556 1000 STREAM 141924 17415 6096946 2024-02-28 11:07:03.555 2024-02-28 11:07:03.555 1000 STREAM 141924 18101 6096953 2024-02-28 11:09:03.568 2024-02-28 11:09:03.568 1000 STREAM 141924 19546 6096961 2024-02-28 11:10:03.599 2024-02-28 11:10:03.599 1000 STREAM 141924 17514 6096971 2024-02-28 11:11:03.582 2024-02-28 11:11:03.582 1000 STREAM 141924 19992 6096978 2024-02-28 11:12:03.581 2024-02-28 11:12:03.581 1000 STREAM 141924 19662 6097017 2024-02-28 11:16:03.591 2024-02-28 11:16:03.591 1000 STREAM 141924 7986 6097027 2024-02-28 11:17:03.594 2024-02-28 11:17:03.594 1000 STREAM 141924 20973 6097030 2024-02-28 11:18:03.597 2024-02-28 11:18:03.597 1000 STREAM 141924 13133 6097047 2024-02-28 11:21:03.613 2024-02-28 11:21:03.613 1000 STREAM 141924 12222 6097054 2024-02-28 11:22:03.62 2024-02-28 11:22:03.62 1000 STREAM 141924 5306 6097058 2024-02-28 11:23:03.619 2024-02-28 11:23:03.619 1000 STREAM 141924 10270 6097116 2024-02-28 11:26:03.634 2024-02-28 11:26:03.634 1000 STREAM 141924 11999 6097122 2024-02-28 11:27:03.639 2024-02-28 11:27:03.639 1000 STREAM 141924 21588 6097151 2024-02-28 11:30:03.682 2024-02-28 11:30:03.682 1000 STREAM 141924 16329 6097168 2024-02-28 11:31:03.661 2024-02-28 11:31:03.661 1000 STREAM 141924 13398 6097180 2024-02-28 11:32:03.67 2024-02-28 11:32:03.67 1000 STREAM 141924 19557 6097192 2024-02-28 11:34:03.667 2024-02-28 11:34:03.667 1000 STREAM 141924 1105 6097225 2024-02-28 11:38:03.754 2024-02-28 11:38:03.754 1000 STREAM 141924 5828 6097231 2024-02-28 11:40:03.783 2024-02-28 11:40:03.783 1000 STREAM 141924 17944 6097316 2024-02-28 11:44:03.787 2024-02-28 11:44:03.787 1000 STREAM 141924 20715 6097317 2024-02-28 11:45:03.775 2024-02-28 11:45:03.775 1000 STREAM 141924 733 6097324 2024-02-28 11:46:03.792 2024-02-28 11:46:03.792 1000 STREAM 141924 19660 6097395 2024-02-28 11:52:03.82 2024-02-28 11:52:03.82 1000 STREAM 141924 16638 6097403 2024-02-28 11:53:03.829 2024-02-28 11:53:03.829 1000 STREAM 141924 11648 6097425 2024-02-28 11:54:03.827 2024-02-28 11:54:03.827 1000 STREAM 141924 21212 6097432 2024-02-28 11:55:03.83 2024-02-28 11:55:03.83 1000 STREAM 141924 18819 6097443 2024-02-28 11:57:03.85 2024-02-28 11:57:03.85 1000 STREAM 141924 917 6097473 2024-02-28 11:59:03.865 2024-02-28 11:59:03.865 1000 STREAM 141924 21172 6097478 2024-02-28 12:00:03.906 2024-02-28 12:00:03.906 1000 STREAM 141924 21248 6097487 2024-02-28 12:02:03.868 2024-02-28 12:02:03.868 1000 STREAM 141924 1741 6097488 2024-02-28 12:03:03.874 2024-02-28 12:03:03.874 1000 STREAM 141924 8535 6097490 2024-02-28 12:04:03.866 2024-02-28 12:04:03.866 1000 STREAM 141924 20683 6097493 2024-02-28 12:05:03.872 2024-02-28 12:05:03.872 1000 STREAM 141924 768 6097510 2024-02-28 12:06:03.879 2024-02-28 12:06:03.879 1000 STREAM 141924 20201 6097521 2024-02-28 12:07:03.872 2024-02-28 12:07:03.872 1000 STREAM 141924 16808 6097523 2024-02-28 12:08:03.88 2024-02-28 12:08:03.88 1000 STREAM 141924 18658 6097560 2024-02-28 12:12:03.886 2024-02-28 12:12:03.886 1000 STREAM 141924 21539 6097595 2024-02-28 12:16:03.906 2024-02-28 12:16:03.906 1000 STREAM 141924 4076 6097627 2024-02-28 12:21:03.921 2024-02-28 12:21:03.921 1000 STREAM 141924 20555 6097648 2024-02-28 12:23:03.917 2024-02-28 12:23:03.917 1000 STREAM 141924 1483 6097663 2024-02-28 12:25:03.928 2024-02-28 12:25:03.928 1000 STREAM 141924 18641 6097704 2024-02-28 12:27:03.921 2024-02-28 12:27:03.921 1000 STREAM 141924 20337 6097713 2024-02-28 12:29:01.914 2024-02-28 12:29:01.914 1000 STREAM 141924 20179 6097726 2024-02-28 12:32:03.954 2024-02-28 12:32:03.954 1000 STREAM 141924 994 6097751 2024-02-28 12:35:01.941 2024-02-28 12:35:01.941 1000 STREAM 141924 9362 6097769 2024-02-28 12:36:03.944 2024-02-28 12:36:03.944 1000 STREAM 141924 18809 6097856 2024-02-28 12:38:03.952 2024-02-28 12:38:03.952 1000 STREAM 141924 882 6097888 2024-02-28 12:41:03.964 2024-02-28 12:41:03.964 1000 STREAM 141924 16214 6097943 2024-02-28 12:44:03.997 2024-02-28 12:44:03.997 1000 STREAM 141924 9833 6097955 2024-02-28 12:46:04.014 2024-02-28 12:46:04.014 1000 STREAM 141924 8004 6097974 2024-02-28 12:47:02.013 2024-02-28 12:47:02.013 1000 STREAM 141924 5661 6098092 2024-02-28 12:49:02.011 2024-02-28 12:49:02.011 1000 STREAM 141924 21514 6098128 2024-02-28 12:53:02.035 2024-02-28 12:53:02.035 1000 STREAM 141924 4323 6098135 2024-02-28 12:54:04.048 2024-02-28 12:54:04.048 1000 STREAM 141924 2000 6098161 2024-02-28 12:57:02.059 2024-02-28 12:57:02.059 1000 STREAM 141924 4304 6098191 2024-02-28 13:00:04.101 2024-02-28 13:00:04.101 1000 STREAM 141924 20841 6098196 2024-02-28 13:01:04.083 2024-02-28 13:01:04.083 1000 STREAM 141924 2061 6098214 2024-02-28 13:02:02.077 2024-02-28 13:02:02.077 1000 STREAM 141924 11522 6098236 2024-02-28 13:04:02.09 2024-02-28 13:04:02.09 1000 STREAM 141924 19863 6098258 2024-02-28 13:05:04.106 2024-02-28 13:05:04.106 1000 STREAM 141924 18640 6098286 2024-02-28 13:06:02.108 2024-02-28 13:06:02.108 1000 STREAM 141924 18311 6098343 2024-02-28 13:08:04.125 2024-02-28 13:08:04.125 1000 STREAM 141924 18494 6098366 2024-02-28 13:10:02.242 2024-02-28 13:10:02.242 1000 STREAM 141924 19980 6098390 2024-02-28 13:12:02.176 2024-02-28 13:12:02.176 1000 STREAM 141924 17568 6098404 2024-02-28 13:13:02.18 2024-02-28 13:13:02.18 1000 STREAM 141924 10554 6098439 2024-02-28 13:14:02.188 2024-02-28 13:14:02.188 1000 STREAM 141924 20614 6098458 2024-02-28 13:16:04.239 2024-02-28 13:16:04.239 1000 STREAM 141924 2844 6098470 2024-02-28 13:17:02.251 2024-02-28 13:17:02.251 1000 STREAM 141924 2335 6098481 2024-02-28 13:19:02.275 2024-02-28 13:19:02.275 1000 STREAM 141924 746 6098523 2024-02-28 13:24:02.305 2024-02-28 13:24:02.305 1000 STREAM 141924 9363 6098530 2024-02-28 13:25:04.382 2024-02-28 13:25:04.382 1000 STREAM 141924 19981 6098543 2024-02-28 13:26:02.399 2024-02-28 13:26:02.399 1000 STREAM 141924 1571 6098563 2024-02-28 13:27:02.393 2024-02-28 13:27:02.393 1000 STREAM 141924 1833 6098583 2024-02-28 13:28:02.413 2024-02-28 13:28:02.413 1000 STREAM 141924 17218 6098601 2024-02-28 13:30:02.424 2024-02-28 13:30:02.424 1000 STREAM 141924 20745 6098623 2024-02-28 13:31:02.471 2024-02-28 13:31:02.471 1000 STREAM 141924 4079 6098653 2024-02-28 13:33:02.446 2024-02-28 13:33:02.446 1000 STREAM 141924 7389 6098695 2024-02-28 13:35:02.454 2024-02-28 13:35:02.454 1000 STREAM 141924 19987 6098721 2024-02-28 13:38:02.537 2024-02-28 13:38:02.537 1000 STREAM 141924 8059 6096772 2024-02-28 10:52:03.507 2024-02-28 10:52:03.507 1000 STREAM 141924 11395 6096780 2024-02-28 10:55:03.493 2024-02-28 10:55:03.493 1000 STREAM 141924 12708 6096806 2024-02-28 10:57:03.496 2024-02-28 10:57:03.496 1000 STREAM 141924 9169 6096822 2024-02-28 10:59:03.512 2024-02-28 10:59:03.512 1000 STREAM 141924 12921 6096835 2024-02-28 11:00:03.557 2024-02-28 11:00:03.557 1000 STREAM 141924 1136 6096873 2024-02-28 11:01:03.543 2024-02-28 11:01:03.543 1000 STREAM 141924 3347 6096899 2024-02-28 11:02:03.527 2024-02-28 11:02:03.527 1000 STREAM 141924 15337 6096909 2024-02-28 11:03:03.53 2024-02-28 11:03:03.53 1000 STREAM 141924 16229 6096921 2024-02-28 11:04:03.539 2024-02-28 11:04:03.539 1000 STREAM 141924 4633 6096940 2024-02-28 11:05:03.551 2024-02-28 11:05:03.551 1000 STREAM 141924 1785 6096947 2024-02-28 11:08:03.557 2024-02-28 11:08:03.557 1000 STREAM 141924 19533 6096990 2024-02-28 11:13:03.581 2024-02-28 11:13:03.581 1000 STREAM 141924 21037 6096998 2024-02-28 11:14:03.583 2024-02-28 11:14:03.583 1000 STREAM 141924 8505 6097010 2024-02-28 11:15:03.583 2024-02-28 11:15:03.583 1000 STREAM 141924 20066 6097033 2024-02-28 11:19:03.597 2024-02-28 11:19:03.597 1000 STREAM 141924 20377 6097041 2024-02-28 11:20:03.604 2024-02-28 11:20:03.604 1000 STREAM 141924 12959 6097107 2024-02-28 11:24:03.645 2024-02-28 11:24:03.645 1000 STREAM 141924 11609 6097111 2024-02-28 11:25:03.644 2024-02-28 11:25:03.644 1000 STREAM 141924 7979 6097131 2024-02-28 11:28:03.645 2024-02-28 11:28:03.645 1000 STREAM 141924 658 6097146 2024-02-28 11:29:03.661 2024-02-28 11:29:03.661 1000 STREAM 141924 1733 6097186 2024-02-28 11:33:03.681 2024-02-28 11:33:03.681 1000 STREAM 141924 19848 6097194 2024-02-28 11:35:03.673 2024-02-28 11:35:03.673 1000 STREAM 141924 10409 6097198 2024-02-28 11:36:03.728 2024-02-28 11:36:03.728 1000 STREAM 141924 11423 6097219 2024-02-28 11:37:03.743 2024-02-28 11:37:03.743 1000 STREAM 141924 20817 6097227 2024-02-28 11:39:03.749 2024-02-28 11:39:03.749 1000 STREAM 141924 19322 6097272 2024-02-28 11:41:03.777 2024-02-28 11:41:03.777 1000 STREAM 141924 19147 6097297 2024-02-28 11:42:03.767 2024-02-28 11:42:03.767 1000 STREAM 141924 15697 6097312 2024-02-28 11:43:03.784 2024-02-28 11:43:03.784 1000 STREAM 141924 994 6097331 2024-02-28 11:47:03.784 2024-02-28 11:47:03.784 1000 STREAM 141924 20912 6097333 2024-02-28 11:48:03.792 2024-02-28 11:48:03.792 1000 STREAM 141924 15843 6097375 2024-02-28 11:49:03.796 2024-02-28 11:49:03.796 1000 STREAM 141924 17172 6097378 2024-02-28 11:50:03.809 2024-02-28 11:50:03.809 1000 STREAM 141924 18629 6097389 2024-02-28 11:51:03.814 2024-02-28 11:51:03.814 1000 STREAM 141924 15052 6097436 2024-02-28 11:56:03.841 2024-02-28 11:56:03.841 1000 STREAM 141924 4177 6097453 2024-02-28 11:58:03.856 2024-02-28 11:58:03.856 1000 STREAM 141924 1480 6097484 2024-02-28 12:01:03.868 2024-02-28 12:01:03.868 1000 STREAM 141924 680 6097526 2024-02-28 12:09:03.895 2024-02-28 12:09:03.895 1000 STREAM 141924 18637 6097530 2024-02-28 12:10:03.911 2024-02-28 12:10:03.911 1000 STREAM 141924 6148 6097535 2024-02-28 12:11:03.887 2024-02-28 12:11:03.887 1000 STREAM 141924 19286 6097567 2024-02-28 12:13:03.894 2024-02-28 12:13:03.894 1000 STREAM 141924 21393 6097573 2024-02-28 12:14:03.893 2024-02-28 12:14:03.893 1000 STREAM 141924 15544 6097580 2024-02-28 12:15:03.918 2024-02-28 12:15:03.918 1000 STREAM 141924 2543 6097602 2024-02-28 12:17:03.92 2024-02-28 12:17:03.92 1000 STREAM 141924 12175 6097606 2024-02-28 12:18:03.907 2024-02-28 12:18:03.907 1000 STREAM 141924 21494 6097612 2024-02-28 12:19:03.914 2024-02-28 12:19:03.914 1000 STREAM 141924 674 6097622 2024-02-28 12:20:03.95 2024-02-28 12:20:03.95 1000 STREAM 141924 1039 6097640 2024-02-28 12:22:01.915 2024-02-28 12:22:01.915 1000 STREAM 141924 13547 6097651 2024-02-28 12:24:03.919 2024-02-28 12:24:03.919 1000 STREAM 141924 12356 6097686 2024-02-28 12:26:03.922 2024-02-28 12:26:03.922 1000 STREAM 141924 4776 6097709 2024-02-28 12:28:03.92 2024-02-28 12:28:03.92 1000 STREAM 141924 1571 6097721 2024-02-28 12:30:03.929 2024-02-28 12:30:03.929 1000 STREAM 141924 20560 6097725 2024-02-28 12:31:01.936 2024-02-28 12:31:01.936 1000 STREAM 141924 16724 6097734 2024-02-28 12:33:01.969 2024-02-28 12:33:01.969 1000 STREAM 141924 21398 6097744 2024-02-28 12:34:03.941 2024-02-28 12:34:03.941 1000 STREAM 141924 706 6097787 2024-02-28 12:37:03.947 2024-02-28 12:37:03.947 1000 STREAM 141924 21139 6097857 2024-02-28 12:39:03.952 2024-02-28 12:39:03.952 1000 STREAM 141924 14472 6097865 2024-02-28 12:40:03.97 2024-02-28 12:40:03.97 1000 STREAM 141924 1647 6097910 2024-02-28 12:42:03.991 2024-02-28 12:42:03.991 1000 STREAM 141924 20623 6098048 2024-02-28 12:48:04.052 2024-02-28 12:48:04.052 1000 STREAM 141924 21271 6098104 2024-02-28 12:50:04.024 2024-02-28 12:50:04.024 1000 STREAM 141924 18556 6098108 2024-02-28 12:51:02.025 2024-02-28 12:51:02.025 1000 STREAM 141924 15161 6098117 2024-02-28 12:52:04.031 2024-02-28 12:52:04.031 1000 STREAM 141924 16704 6098141 2024-02-28 12:55:02.048 2024-02-28 12:55:02.048 1000 STREAM 141924 18819 6098156 2024-02-28 12:56:04.065 2024-02-28 12:56:04.065 1000 STREAM 141924 20585 6098174 2024-02-28 12:58:04.072 2024-02-28 12:58:04.072 1000 STREAM 141924 629 6098189 2024-02-28 12:59:02.079 2024-02-28 12:59:02.079 1000 STREAM 141924 14255 6098223 2024-02-28 13:03:04.09 2024-02-28 13:03:04.09 1000 STREAM 141924 21281 6098323 2024-02-28 13:07:04.122 2024-02-28 13:07:04.122 1000 STREAM 141924 4064 6098354 2024-02-28 13:09:02.127 2024-02-28 13:09:02.127 1000 STREAM 141924 12422 6098377 2024-02-28 13:11:02.154 2024-02-28 13:11:02.154 1000 STREAM 141924 4173 6098453 2024-02-28 13:15:04.18 2024-02-28 13:15:04.18 1000 STREAM 141924 2757 6098475 2024-02-28 13:18:02.266 2024-02-28 13:18:02.266 1000 STREAM 141924 811 6098489 2024-02-28 13:20:02.488 2024-02-28 13:20:02.488 1000 STREAM 141924 19952 6098492 2024-02-28 13:21:02.285 2024-02-28 13:21:02.285 1000 STREAM 141924 827 6098504 2024-02-28 13:22:02.297 2024-02-28 13:22:02.297 1000 STREAM 141924 20681 6098518 2024-02-28 13:23:02.312 2024-02-28 13:23:02.312 1000 STREAM 141924 18837 6098592 2024-02-28 13:29:02.417 2024-02-28 13:29:02.417 1000 STREAM 141924 12175 6098638 2024-02-28 13:32:02.44 2024-02-28 13:32:02.44 1000 STREAM 141924 19531 6098671 2024-02-28 13:34:02.454 2024-02-28 13:34:02.454 1000 STREAM 141924 8133 6098712 2024-02-28 13:37:02.549 2024-02-28 13:37:02.549 1000 STREAM 141924 2543 6096828 2024-02-28 10:59:37.612 2024-02-28 10:59:37.612 1000 FEE 441613 3656 6096829 2024-02-28 10:59:37.612 2024-02-28 10:59:37.612 9000 TIP 441613 19863 6096830 2024-02-28 10:59:38.658 2024-02-28 10:59:38.658 1000 FEE 441601 13903 6096831 2024-02-28 10:59:38.658 2024-02-28 10:59:38.658 9000 TIP 441601 21485 6096837 2024-02-28 11:00:04.993 2024-02-28 11:00:04.993 1000 FEE 441697 866 6096840 2024-02-28 11:00:15.763 2024-02-28 11:00:15.763 100 FEE 441238 4102 6096841 2024-02-28 11:00:15.763 2024-02-28 11:00:15.763 900 TIP 441238 20892 6096852 2024-02-28 11:00:30.29 2024-02-28 11:00:30.29 100 FEE 441077 16097 6096853 2024-02-28 11:00:30.29 2024-02-28 11:00:30.29 900 TIP 441077 20102 6096884 2024-02-28 11:01:13.162 2024-02-28 11:01:13.162 100 FEE 441300 2075 6096885 2024-02-28 11:01:13.162 2024-02-28 11:01:13.162 900 TIP 441300 21472 6096886 2024-02-28 11:01:20.618 2024-02-28 11:01:20.618 1000 FEE 441701 17041 6096890 2024-02-28 11:01:25.521 2024-02-28 11:01:25.521 5000 FEE 441362 21281 6096891 2024-02-28 11:01:25.521 2024-02-28 11:01:25.521 45000 TIP 441362 21624 6096913 2024-02-28 11:03:17.85 2024-02-28 11:03:17.85 5000 FEE 441701 6430 6096914 2024-02-28 11:03:17.85 2024-02-28 11:03:17.85 45000 TIP 441701 20922 6096927 2024-02-28 11:04:41.481 2024-02-28 11:04:41.481 1000 FEE 441712 17514 6096934 2024-02-28 11:04:47.648 2024-02-28 11:04:47.648 1000 FEE 441710 9150 6096935 2024-02-28 11:04:47.648 2024-02-28 11:04:47.648 9000 TIP 441710 9078 6096942 2024-02-28 11:05:52.394 2024-02-28 11:05:52.394 0 FEE 441711 19021 6096955 2024-02-28 11:09:12.974 2024-02-28 11:09:12.974 0 FEE 441699 20613 6096962 2024-02-28 11:10:24.189 2024-02-28 11:10:24.189 10000 FEE 441720 9169 6096995 2024-02-28 11:14:00.214 2024-02-28 11:14:00.214 1000 FEE 441727 20993 6097014 2024-02-28 11:15:29.473 2024-02-28 11:15:29.473 100 FEE 441333 3213 6097015 2024-02-28 11:15:29.473 2024-02-28 11:15:29.473 900 TIP 441333 652 6097018 2024-02-28 11:16:08.159 2024-02-28 11:16:08.159 5000 FEE 436313 14195 6097019 2024-02-28 11:16:08.159 2024-02-28 11:16:08.159 45000 TIP 436313 9529 6097048 2024-02-28 11:21:14.385 2024-02-28 11:21:14.385 1000 FEE 441737 18923 6097061 2024-02-28 11:23:15.037 2024-02-28 11:23:15.037 500 FEE 441687 21349 6097062 2024-02-28 11:23:15.037 2024-02-28 11:23:15.037 4500 TIP 441687 19417 6097081 2024-02-28 11:23:16.926 2024-02-28 11:23:16.926 500 FEE 441687 5003 6097082 2024-02-28 11:23:16.926 2024-02-28 11:23:16.926 4500 TIP 441687 13365 6097108 2024-02-28 11:24:12.86 2024-02-28 11:24:12.86 2100 FEE 441725 11192 6097109 2024-02-28 11:24:12.86 2024-02-28 11:24:12.86 18900 TIP 441725 7675 6097133 2024-02-28 11:28:12.327 2024-02-28 11:28:12.327 1000 FEE 441729 19863 6097134 2024-02-28 11:28:12.327 2024-02-28 11:28:12.327 9000 TIP 441729 9992 6097156 2024-02-28 11:30:21.116 2024-02-28 11:30:21.116 5700 FEE 441725 19193 6097157 2024-02-28 11:30:21.116 2024-02-28 11:30:21.116 51300 TIP 441725 18378 6097170 2024-02-28 11:31:27.664 2024-02-28 11:31:27.664 2800 FEE 441747 11942 6097171 2024-02-28 11:31:27.664 2024-02-28 11:31:27.664 25200 TIP 441747 18448 6097195 2024-02-28 11:35:07.802 2024-02-28 11:35:07.802 10000 FEE 441760 14950 6097203 2024-02-28 11:36:20.524 2024-02-28 11:36:20.524 100 FEE 441742 5661 6097204 2024-02-28 11:36:20.524 2024-02-28 11:36:20.524 900 TIP 441742 19038 6097223 2024-02-28 11:37:43.027 2024-02-28 11:37:43.027 1300 FEE 441516 12072 6097224 2024-02-28 11:37:43.027 2024-02-28 11:37:43.027 11700 TIP 441516 16954 6097235 2024-02-28 11:40:18.965 2024-02-28 11:40:18.965 300 FEE 441749 18640 6097236 2024-02-28 11:40:18.965 2024-02-28 11:40:18.965 2700 TIP 441749 894 6097255 2024-02-28 11:40:21.601 2024-02-28 11:40:21.601 300 FEE 441749 886 6097256 2024-02-28 11:40:21.601 2024-02-28 11:40:21.601 2700 TIP 441749 19601 6097275 2024-02-28 11:41:51.432 2024-02-28 11:41:51.432 1000 FEE 441770 768 6097283 2024-02-28 11:41:56.826 2024-02-28 11:41:56.826 600 FEE 441749 6471 6097284 2024-02-28 11:41:56.826 2024-02-28 11:41:56.826 5400 TIP 441749 7376 6097300 2024-02-28 11:42:04.317 2024-02-28 11:42:04.317 600 FEE 441749 4989 6097301 2024-02-28 11:42:04.317 2024-02-28 11:42:04.317 5400 TIP 441749 1741 6097308 2024-02-28 11:42:38.685 2024-02-28 11:42:38.685 5700 FEE 441771 19996 6097309 2024-02-28 11:42:38.685 2024-02-28 11:42:38.685 51300 TIP 441771 2583 6097318 2024-02-28 11:45:24 2024-02-28 11:45:24 1000 FEE 441775 16542 6097334 2024-02-28 11:48:12.129 2024-02-28 11:48:12.129 0 FEE 441777 739 6097412 2024-02-28 11:53:20.883 2024-02-28 11:53:20.883 300 FEE 441705 2963 6096871 2024-02-28 11:00:56.582 2024-02-28 11:00:56.582 5000 FEE 441369 18393 6096872 2024-02-28 11:00:56.582 2024-02-28 11:00:56.582 45000 TIP 441369 21140 6096895 2024-02-28 11:01:51.03 2024-02-28 11:01:51.03 100 FEE 441251 18262 6096896 2024-02-28 11:01:51.03 2024-02-28 11:01:51.03 900 TIP 441251 21060 6096910 2024-02-28 11:03:16.353 2024-02-28 11:03:16.353 1000 FEE 441706 18072 6096923 2024-02-28 11:04:18.366 2024-02-28 11:04:18.366 5700 FEE 441707 1433 6096924 2024-02-28 11:04:18.366 2024-02-28 11:04:18.366 51300 TIP 441707 20586 6096925 2024-02-28 11:04:19.162 2024-02-28 11:04:19.162 1000 FEE 441710 19601 6096930 2024-02-28 11:04:45.319 2024-02-28 11:04:45.319 1000 FEE 441701 7903 6096931 2024-02-28 11:04:45.319 2024-02-28 11:04:45.319 9000 TIP 441701 19263 6096945 2024-02-28 11:06:55.442 2024-02-28 11:06:55.442 1000 FEE 441714 5809 6096972 2024-02-28 11:11:08.375 2024-02-28 11:11:08.375 9600 FEE 441238 19812 6096973 2024-02-28 11:11:08.375 2024-02-28 11:11:08.375 86400 TIP 441238 836 6096985 2024-02-28 11:12:46.073 2024-02-28 11:12:46.073 1000 FEE 441662 10731 6096986 2024-02-28 11:12:46.073 2024-02-28 11:12:46.073 9000 TIP 441662 6202 6096993 2024-02-28 11:13:43.387 2024-02-28 11:13:43.387 1000 FEE 441725 8284 6097003 2024-02-28 11:14:39.821 2024-02-28 11:14:39.821 100 FEE 441715 16229 6097004 2024-02-28 11:14:39.821 2024-02-28 11:14:39.821 900 TIP 441715 15273 6097028 2024-02-28 11:17:23.946 2024-02-28 11:17:23.946 100 FEE 441385 17798 6097029 2024-02-28 11:17:23.946 2024-02-28 11:17:23.946 900 TIP 441385 19502 6097031 2024-02-28 11:18:23.206 2024-02-28 11:18:23.206 1000 FEE 441732 18473 6097045 2024-02-28 11:20:48.798 2024-02-28 11:20:48.798 5700 FEE 441736 964 6097046 2024-02-28 11:20:48.798 2024-02-28 11:20:48.798 51300 TIP 441736 4076 6097051 2024-02-28 11:21:37.057 2024-02-28 11:21:37.057 1000 FEE 441738 17041 6097063 2024-02-28 11:23:15.117 2024-02-28 11:23:15.117 500 FEE 441687 638 6097064 2024-02-28 11:23:15.117 2024-02-28 11:23:15.117 4500 TIP 441687 14225 6097079 2024-02-28 11:23:16.754 2024-02-28 11:23:16.754 500 FEE 441687 20409 6097080 2024-02-28 11:23:16.754 2024-02-28 11:23:16.754 4500 TIP 441687 18543 6097093 2024-02-28 11:23:18.051 2024-02-28 11:23:18.051 500 FEE 441687 18310 6097094 2024-02-28 11:23:18.051 2024-02-28 11:23:18.051 4500 TIP 441687 19117 6097099 2024-02-28 11:23:19.355 2024-02-28 11:23:19.355 500 FEE 441687 15119 6097100 2024-02-28 11:23:19.355 2024-02-28 11:23:19.355 4500 TIP 441687 20108 6097110 2024-02-28 11:24:38.135 2024-02-28 11:24:38.135 1000 FEE 441741 18774 6097164 2024-02-28 11:30:38.848 2024-02-28 11:30:38.848 5700 FEE 441712 8541 6097165 2024-02-28 11:30:38.848 2024-02-28 11:30:38.848 51300 TIP 441712 16212 6097169 2024-02-28 11:31:13.528 2024-02-28 11:31:13.528 10000 FEE 441749 6594 6097175 2024-02-28 11:31:41.235 2024-02-28 11:31:41.235 1000 FEE 441751 20730 6097178 2024-02-28 11:31:52.127 2024-02-28 11:31:52.127 100000 FEE 441752 21457 6097181 2024-02-28 11:32:13.424 2024-02-28 11:32:13.424 5700 FEE 432817 16633 6097182 2024-02-28 11:32:13.424 2024-02-28 11:32:13.424 51300 TIP 432817 4633 6097205 2024-02-28 11:36:22.318 2024-02-28 11:36:22.318 100000 FEE 441763 21492 6097206 2024-02-28 11:36:23.726 2024-02-28 11:36:23.726 5700 FEE 441759 19289 6097207 2024-02-28 11:36:23.726 2024-02-28 11:36:23.726 51300 TIP 441759 1596 6097213 2024-02-28 11:36:54.848 2024-02-28 11:36:54.848 100 FEE 441735 8385 6097214 2024-02-28 11:36:54.848 2024-02-28 11:36:54.848 900 TIP 441735 2328 6097233 2024-02-28 11:40:18.425 2024-02-28 11:40:18.425 5700 FEE 441761 16542 6097234 2024-02-28 11:40:18.425 2024-02-28 11:40:18.425 51300 TIP 441761 2075 6097237 2024-02-28 11:40:19.264 2024-02-28 11:40:19.264 300 FEE 441749 13767 6097238 2024-02-28 11:40:19.264 2024-02-28 11:40:19.264 2700 TIP 441749 9426 6097241 2024-02-28 11:40:19.748 2024-02-28 11:40:19.748 300 FEE 441749 10944 6097242 2024-02-28 11:40:19.748 2024-02-28 11:40:19.748 2700 TIP 441749 4062 6097243 2024-02-28 11:40:19.961 2024-02-28 11:40:19.961 300 FEE 441749 19660 6097244 2024-02-28 11:40:19.961 2024-02-28 11:40:19.961 2700 TIP 441749 19863 6097267 2024-02-28 11:40:23.163 2024-02-28 11:40:23.163 300 FEE 441749 9342 6097268 2024-02-28 11:40:23.163 2024-02-28 11:40:23.163 2700 TIP 441749 18984 6097269 2024-02-28 11:40:35.576 2024-02-28 11:40:35.576 10000 FEE 441688 1224 6097270 2024-02-28 11:40:35.576 2024-02-28 11:40:35.576 90000 TIP 441688 9365 6097281 2024-02-28 11:41:56.632 2024-02-28 11:41:56.632 20000 FEE 440866 5499 6097282 2024-02-28 11:41:56.632 2024-02-28 11:41:56.632 180000 TIP 440866 16753 6097310 2024-02-28 11:42:50.094 2024-02-28 11:42:50.094 10000 FEE 441772 11165 6097319 2024-02-28 11:45:27.988 2024-02-28 11:45:27.988 1000 FEE 441776 21417 6097325 2024-02-28 11:46:06.284 2024-02-28 11:46:06.284 1000 FEE 441777 2233 6097332 2024-02-28 11:47:36.959 2024-02-28 11:47:36.959 1000 FEE 441779 1000 6097370 2024-02-28 11:48:49.611 2024-02-28 11:48:49.611 300 FEE 441749 657 6097371 2024-02-28 11:48:49.611 2024-02-28 11:48:49.611 2700 TIP 441749 8176 6097410 2024-02-28 11:53:20.382 2024-02-28 11:53:20.382 300 FEE 441705 16440 6097411 2024-02-28 11:53:20.382 2024-02-28 11:53:20.382 2700 TIP 441705 20433 6097424 2024-02-28 11:53:31.607 2024-02-28 11:53:31.607 1000 POLL 441660 12562 6097481 2024-02-28 12:00:09.879 2024-02-28 12:00:09.879 1000 FEE 441798 16633 6097500 2024-02-28 12:05:45.811 2024-02-28 12:05:45.811 500 FEE 441687 20560 6097501 2024-02-28 12:05:45.811 2024-02-28 12:05:45.811 4500 TIP 441687 1493 6097536 2024-02-28 12:11:06.118 2024-02-28 12:11:06.118 300 FEE 441705 10359 6097537 2024-02-28 12:11:06.118 2024-02-28 12:11:06.118 2700 TIP 441705 20964 6097546 2024-02-28 12:11:12.393 2024-02-28 12:11:12.393 100 FEE 441746 20340 6097547 2024-02-28 12:11:12.393 2024-02-28 12:11:12.393 900 TIP 441746 8541 6097565 2024-02-28 12:12:37.144 2024-02-28 12:12:37.144 3300 FEE 441798 1603 6097566 2024-02-28 12:12:37.144 2024-02-28 12:12:37.144 29700 TIP 441798 2361 6097568 2024-02-28 12:13:15.108 2024-02-28 12:13:15.108 100000 FEE 441807 2088 6097584 2024-02-28 12:15:21.816 2024-02-28 12:15:21.816 1000 FEE 432817 18271 6097585 2024-02-28 12:15:21.816 2024-02-28 12:15:21.816 9000 TIP 432817 4521 6097590 2024-02-28 12:15:34.003 2024-02-28 12:15:34.003 21000 DONT_LIKE_THIS 441693 13527 6097633 2024-02-28 12:21:36.291 2024-02-28 12:21:36.291 1000 FEE 441782 9307 6097634 2024-02-28 12:21:36.291 2024-02-28 12:21:36.291 9000 TIP 441782 1823 6097657 2024-02-28 12:24:40.137 2024-02-28 12:24:40.137 800 FEE 441687 7395 6097658 2024-02-28 12:24:40.137 2024-02-28 12:24:40.137 7200 TIP 441687 19637 6097659 2024-02-28 12:24:40.749 2024-02-28 12:24:40.749 800 FEE 441687 10934 6097660 2024-02-28 12:24:40.749 2024-02-28 12:24:40.749 7200 TIP 441687 16970 6097673 2024-02-28 12:25:34.543 2024-02-28 12:25:34.543 1100 FEE 441333 19449 6097674 2024-02-28 12:25:34.543 2024-02-28 12:25:34.543 9900 TIP 441333 797 6097697 2024-02-28 12:26:25.141 2024-02-28 12:26:25.141 1000 FEE 441794 19506 6097698 2024-02-28 12:26:25.141 2024-02-28 12:26:25.141 9000 TIP 441794 11821 6097706 2024-02-28 12:27:15.618 2024-02-28 12:27:15.618 100000 FEE 441828 20337 6097720 2024-02-28 12:30:02.623 2024-02-28 12:30:02.623 100000 FEE 441832 14795 6097735 2024-02-28 12:33:07.937 2024-02-28 12:33:07.937 1000 FEE 441833 17827 6097741 2024-02-28 12:33:54.243 2024-02-28 12:33:54.243 1000 FEE 441835 19037 6097742 2024-02-28 12:33:55.801 2024-02-28 12:33:55.801 12100 FEE 441833 3353 6097743 2024-02-28 12:33:55.801 2024-02-28 12:33:55.801 108900 TIP 441833 10112 6097783 2024-02-28 12:37:02.618 2024-02-28 12:37:02.618 2100 FEE 441827 7389 6097784 2024-02-28 12:37:02.618 2024-02-28 12:37:02.618 18900 TIP 441827 18673 6097790 2024-02-28 12:37:06.764 2024-02-28 12:37:06.764 2100 FEE 441737 6765 6097791 2024-02-28 12:37:06.764 2024-02-28 12:37:06.764 18900 TIP 441737 1483 6097813 2024-02-28 12:37:30.409 2024-02-28 12:37:30.409 2100 FEE 441741 17094 6097814 2024-02-28 12:37:30.409 2024-02-28 12:37:30.409 18900 TIP 441741 18232 6097838 2024-02-28 12:37:41.292 2024-02-28 12:37:41.292 2100 FEE 441811 20788 6097839 2024-02-28 12:37:41.292 2024-02-28 12:37:41.292 18900 TIP 441811 5661 6097844 2024-02-28 12:37:45.087 2024-02-28 12:37:45.087 2100 FEE 441814 827 6097845 2024-02-28 12:37:45.087 2024-02-28 12:37:45.087 18900 TIP 441814 725 6097858 2024-02-28 12:39:18.01 2024-02-28 12:39:18.01 100000 FEE 441843 9342 6097861 2024-02-28 12:39:53.156 2024-02-28 12:39:53.156 5000 FEE 441843 2525 6097862 2024-02-28 12:39:53.156 2024-02-28 12:39:53.156 45000 TIP 441843 13587 6097874 2024-02-28 12:40:29.324 2024-02-28 12:40:29.324 2100 FEE 441806 12169 6097875 2024-02-28 12:40:29.324 2024-02-28 12:40:29.324 18900 TIP 441806 981 6097900 2024-02-28 12:41:13.725 2024-02-28 12:41:13.725 33300 FEE 441843 2942 6097901 2024-02-28 12:41:13.725 2024-02-28 12:41:13.725 299700 TIP 441843 21180 6097904 2024-02-28 12:41:23.609 2024-02-28 12:41:23.609 2100 FEE 441749 2367 6097905 2024-02-28 12:41:23.609 2024-02-28 12:41:23.609 18900 TIP 441749 18188 6097921 2024-02-28 12:43:39.042 2024-02-28 12:43:39.042 6900 FEE 441843 19320 6097922 2024-02-28 12:43:39.042 2024-02-28 12:43:39.042 62100 TIP 441843 20370 6097923 2024-02-28 12:43:39.209 2024-02-28 12:43:39.209 6900 FEE 441843 19841 6097924 2024-02-28 12:43:39.209 2024-02-28 12:43:39.209 62100 TIP 441843 18745 6097931 2024-02-28 12:43:40.77 2024-02-28 12:43:40.77 6900 FEE 441843 9333 6097932 2024-02-28 12:43:40.77 2024-02-28 12:43:40.77 62100 TIP 441843 1737 6097940 2024-02-28 12:43:55.176 2024-02-28 12:43:55.176 3100 FEE 441730 21401 6097941 2024-02-28 12:43:55.176 2024-02-28 12:43:55.176 27900 TIP 441730 21532 6097142 2024-02-28 11:28:49.788 2024-02-28 11:28:49.788 5700 FEE 441742 18984 6097143 2024-02-28 11:28:49.788 2024-02-28 11:28:49.788 51300 TIP 441742 21588 6097160 2024-02-28 11:30:32.481 2024-02-28 11:30:32.481 5700 FEE 441740 12334 6097161 2024-02-28 11:30:32.481 2024-02-28 11:30:32.481 51300 TIP 441740 18068 6097173 2024-02-28 11:31:40.583 2024-02-28 11:31:40.583 5700 FEE 441710 19151 6097174 2024-02-28 11:31:40.583 2024-02-28 11:31:40.583 51300 TIP 441710 18659 6097199 2024-02-28 11:36:19.925 2024-02-28 11:36:19.925 100 FEE 441729 18336 6097200 2024-02-28 11:36:19.925 2024-02-28 11:36:19.925 900 TIP 441729 15351 6097211 2024-02-28 11:36:54.618 2024-02-28 11:36:54.618 100 FEE 441735 9816 6097212 2024-02-28 11:36:54.618 2024-02-28 11:36:54.618 900 TIP 441735 5499 6097217 2024-02-28 11:36:55.563 2024-02-28 11:36:55.563 100 FEE 441735 21275 6097218 2024-02-28 11:36:55.563 2024-02-28 11:36:55.563 900 TIP 441735 18525 6097220 2024-02-28 11:37:25.026 2024-02-28 11:37:25.026 1000 FEE 441765 8400 6097239 2024-02-28 11:40:19.507 2024-02-28 11:40:19.507 300 FEE 441749 10398 6097240 2024-02-28 11:40:19.507 2024-02-28 11:40:19.507 2700 TIP 441749 1124 6097245 2024-02-28 11:40:20.191 2024-02-28 11:40:20.191 300 FEE 441749 8045 6097246 2024-02-28 11:40:20.191 2024-02-28 11:40:20.191 2700 TIP 441749 1738 6097271 2024-02-28 11:40:44.473 2024-02-28 11:40:44.473 10000 FEE 441769 618 6097273 2024-02-28 11:41:33.154 2024-02-28 11:41:33.154 4200 FEE 441763 16665 6097274 2024-02-28 11:41:33.154 2024-02-28 11:41:33.154 37800 TIP 441763 4126 6097287 2024-02-28 11:41:58.321 2024-02-28 11:41:58.321 300 FEE 441749 20087 6097288 2024-02-28 11:41:58.321 2024-02-28 11:41:58.321 2700 TIP 441749 19976 6097322 2024-02-28 11:45:41.926 2024-02-28 11:45:41.926 1600 FEE 441773 2088 6097323 2024-02-28 11:45:41.926 2024-02-28 11:45:41.926 14400 TIP 441773 2639 6097330 2024-02-28 11:46:39.073 2024-02-28 11:46:39.073 0 FEE 441777 974 6097354 2024-02-28 11:48:47.663 2024-02-28 11:48:47.663 300 FEE 441749 20577 6097355 2024-02-28 11:48:47.663 2024-02-28 11:48:47.663 2700 TIP 441749 21493 6097362 2024-02-28 11:48:48.722 2024-02-28 11:48:48.722 300 FEE 441749 4973 6097363 2024-02-28 11:48:48.722 2024-02-28 11:48:48.722 2700 TIP 441749 9200 6097368 2024-02-28 11:48:49.441 2024-02-28 11:48:49.441 300 FEE 441749 10818 6097369 2024-02-28 11:48:49.441 2024-02-28 11:48:49.441 2700 TIP 441749 19857 6097376 2024-02-28 11:49:52.94 2024-02-28 11:49:52.94 1000 FEE 441560 20412 6097377 2024-02-28 11:49:52.94 2024-02-28 11:49:52.94 9000 TIP 441560 12744 6097381 2024-02-28 11:50:25.49 2024-02-28 11:50:25.49 1000 FEE 441781 20973 6097404 2024-02-28 11:53:07.4 2024-02-28 11:53:07.4 1000 FEE 441753 21263 6097405 2024-02-28 11:53:07.4 2024-02-28 11:53:07.4 9000 TIP 441753 20454 6097406 2024-02-28 11:53:19.27 2024-02-28 11:53:19.27 300 FEE 441705 20162 6097407 2024-02-28 11:53:19.27 2024-02-28 11:53:19.27 2700 TIP 441705 18680 6097416 2024-02-28 11:53:21.317 2024-02-28 11:53:21.317 300 FEE 441705 20585 6097417 2024-02-28 11:53:21.317 2024-02-28 11:53:21.317 2700 TIP 441705 17226 6097430 2024-02-28 11:54:33.761 2024-02-28 11:54:33.761 1000 FEE 441790 20599 6097442 2024-02-28 11:56:25.371 2024-02-28 11:56:25.371 100000 DONT_LIKE_THIS 441332 8176 6097452 2024-02-28 11:57:48.117 2024-02-28 11:57:48.117 10000 FEE 441794 16341 6097455 2024-02-28 11:58:41.409 2024-02-28 11:58:41.409 5700 FEE 441560 12566 6097456 2024-02-28 11:58:41.409 2024-02-28 11:58:41.409 51300 TIP 441560 18640 6097457 2024-02-28 11:58:41.768 2024-02-28 11:58:41.768 5700 FEE 441560 964 6097458 2024-02-28 11:58:41.768 2024-02-28 11:58:41.768 51300 TIP 441560 1718 6097474 2024-02-28 11:59:03.999 2024-02-28 11:59:03.999 1000 FEE 441793 6555 6097475 2024-02-28 11:59:03.999 2024-02-28 11:59:03.999 9000 TIP 441793 18704 6097489 2024-02-28 12:03:40.336 2024-02-28 12:03:40.336 1000 FEE 441799 2176 6097491 2024-02-28 12:04:23.152 2024-02-28 12:04:23.152 10000 FEE 441556 4502 6097492 2024-02-28 12:04:23.152 2024-02-28 12:04:23.152 90000 TIP 441556 9843 6097494 2024-02-28 12:05:42.596 2024-02-28 12:05:42.596 500 FEE 441687 6382 6097495 2024-02-28 12:05:42.596 2024-02-28 12:05:42.596 4500 TIP 441687 17891 6097496 2024-02-28 12:05:42.823 2024-02-28 12:05:42.823 500 FEE 441687 622 6097497 2024-02-28 12:05:42.823 2024-02-28 12:05:42.823 4500 TIP 441687 4633 6097498 2024-02-28 12:05:44.228 2024-02-28 12:05:44.228 500 FEE 441687 12951 6097499 2024-02-28 12:05:44.228 2024-02-28 12:05:44.228 4500 TIP 441687 2757 6097511 2024-02-28 12:06:12.327 2024-02-28 12:06:12.327 500 FEE 441722 1454 6097512 2024-02-28 12:06:12.327 2024-02-28 12:06:12.327 4500 TIP 441722 16154 6097515 2024-02-28 12:06:13.527 2024-02-28 12:06:13.527 500 FEE 441700 19842 6097516 2024-02-28 12:06:13.527 2024-02-28 12:06:13.527 4500 TIP 441700 20924 6097522 2024-02-28 12:07:42.44 2024-02-28 12:07:42.44 1000 FEE 441800 18680 6097529 2024-02-28 12:09:59.803 2024-02-28 12:09:59.803 10000 FEE 441802 16665 6097554 2024-02-28 12:11:19.203 2024-02-28 12:11:19.203 200 FEE 441672 21061 6097555 2024-02-28 12:11:19.203 2024-02-28 12:11:19.203 1800 TIP 441672 4250 6097564 2024-02-28 12:12:35.195 2024-02-28 12:12:35.195 100000 FEE 441806 18468 6097586 2024-02-28 12:15:22.297 2024-02-28 12:15:22.297 1000 FEE 432817 19566 6097587 2024-02-28 12:15:22.297 2024-02-28 12:15:22.297 9000 TIP 432817 21547 6097589 2024-02-28 12:15:28.237 2024-02-28 12:15:28.237 21000 DONT_LIKE_THIS 441779 17827 6097593 2024-02-28 12:15:40.179 2024-02-28 12:15:40.179 21000 DONT_LIKE_THIS 441678 5427 6097594 2024-02-28 12:15:49.014 2024-02-28 12:15:49.014 1000 FEE 441812 21339 6097603 2024-02-28 12:17:33.431 2024-02-28 12:17:33.431 1000 FEE 441660 15103 6097604 2024-02-28 12:17:33.431 2024-02-28 12:17:33.431 9000 TIP 441660 17046 6097618 2024-02-28 12:19:38.448 2024-02-28 12:19:38.448 1000 FEE 441746 9529 6097619 2024-02-28 12:19:38.448 2024-02-28 12:19:38.448 9000 TIP 441746 19664 6097620 2024-02-28 12:19:48.904 2024-02-28 12:19:48.904 1000 FEE 441816 18494 6097621 2024-02-28 12:19:48.904 2024-02-28 12:19:48.904 9000 TIP 441816 1631 6097637 2024-02-28 12:21:40.696 2024-02-28 12:21:40.696 1000 FEE 441813 5776 6097638 2024-02-28 12:21:40.696 2024-02-28 12:21:40.696 9000 TIP 441813 21412 6097641 2024-02-28 12:22:19.179 2024-02-28 12:22:19.179 5700 FEE 441660 17797 6097642 2024-02-28 12:22:19.179 2024-02-28 12:22:19.179 51300 TIP 441660 1603 6097671 2024-02-28 12:25:34.385 2024-02-28 12:25:34.385 1100 FEE 441333 19938 6097672 2024-02-28 12:25:34.385 2024-02-28 12:25:34.385 9900 TIP 441333 15148 6097687 2024-02-28 12:26:17.934 2024-02-28 12:26:17.934 50000 FEE 441824 18470 6097688 2024-02-28 12:26:17.934 2024-02-28 12:26:17.934 450000 TIP 441824 17984 6097702 2024-02-28 12:26:53.011 2024-02-28 12:26:53.011 1600 FEE 441806 21208 6097703 2024-02-28 12:26:53.011 2024-02-28 12:26:53.011 14400 TIP 441806 19500 6097716 2024-02-28 12:29:32.102 2024-02-28 12:29:32.102 500 FEE 441560 9084 6097717 2024-02-28 12:29:32.102 2024-02-28 12:29:32.102 4500 TIP 441560 20023 6097732 2024-02-28 12:32:49.354 2024-02-28 12:32:49.354 6900 FEE 441815 2195 6097733 2024-02-28 12:32:49.354 2024-02-28 12:32:49.354 62100 TIP 441815 18116 6097736 2024-02-28 12:33:27.309 2024-02-28 12:33:27.309 1000 FEE 441834 17103 6097147 2024-02-28 11:29:19.849 2024-02-28 11:29:19.849 1000 FEE 441747 11018 6097150 2024-02-28 11:29:43.716 2024-02-28 11:29:43.716 100000 FEE 441748 16653 6097152 2024-02-28 11:30:05.534 2024-02-28 11:30:05.534 5700 FEE 441737 5708 6097153 2024-02-28 11:30:05.534 2024-02-28 11:30:05.534 51300 TIP 441737 2285 6097162 2024-02-28 11:30:35.271 2024-02-28 11:30:35.271 5700 FEE 441720 661 6097163 2024-02-28 11:30:35.271 2024-02-28 11:30:35.271 51300 TIP 441720 20969 6097166 2024-02-28 11:30:42.208 2024-02-28 11:30:42.208 1600 FEE 441742 9166 6097167 2024-02-28 11:30:42.208 2024-02-28 11:30:42.208 14400 TIP 441742 19309 6097185 2024-02-28 11:32:57.995 2024-02-28 11:32:57.995 1000 FEE 441755 20257 6097187 2024-02-28 11:33:07.721 2024-02-28 11:33:07.721 100 FEE 441752 17030 6097188 2024-02-28 11:33:07.721 2024-02-28 11:33:07.721 900 TIP 441752 21222 6097190 2024-02-28 11:33:54.735 2024-02-28 11:33:54.735 1000 FEE 441757 1105 6097193 2024-02-28 11:34:54.758 2024-02-28 11:34:54.758 1000 FEE 441759 21233 6097196 2024-02-28 11:35:39.879 2024-02-28 11:35:39.879 10000 FEE 441762 1631 6097209 2024-02-28 11:36:54.388 2024-02-28 11:36:54.388 100 FEE 441735 20023 6097210 2024-02-28 11:36:54.388 2024-02-28 11:36:54.388 900 TIP 441735 12769 6097232 2024-02-28 11:40:15.68 2024-02-28 11:40:15.68 1000 FEE 441768 6537 6097249 2024-02-28 11:40:20.631 2024-02-28 11:40:20.631 300 FEE 441749 739 6097250 2024-02-28 11:40:20.631 2024-02-28 11:40:20.631 2700 TIP 441749 19576 6097263 2024-02-28 11:40:22.639 2024-02-28 11:40:22.639 300 FEE 441749 4083 6097264 2024-02-28 11:40:22.639 2024-02-28 11:40:22.639 2700 TIP 441749 10693 6097276 2024-02-28 11:41:54.559 2024-02-28 11:41:54.559 1000 FEE 441771 2711 6097340 2024-02-28 11:48:45.982 2024-02-28 11:48:45.982 300 FEE 441749 5308 6097341 2024-02-28 11:48:45.982 2024-02-28 11:48:45.982 2700 TIP 441749 692 6097385 2024-02-28 11:50:53.556 2024-02-28 11:50:53.556 1000 FEE 441703 7818 6097386 2024-02-28 11:50:53.556 2024-02-28 11:50:53.556 9000 TIP 441703 18873 6097387 2024-02-28 11:51:00.85 2024-02-28 11:51:00.85 10000 FEE 441782 640 6097388 2024-02-28 11:51:00.85 2024-02-28 11:51:00.85 90000 TIP 441782 18727 6097398 2024-02-28 11:52:18.31 2024-02-28 11:52:18.31 1000 FEE 441766 20973 6097399 2024-02-28 11:52:18.31 2024-02-28 11:52:18.31 9000 TIP 441766 12744 6097401 2024-02-28 11:52:52.659 2024-02-28 11:52:52.659 10000 FEE 441699 20464 6097402 2024-02-28 11:52:52.659 2024-02-28 11:52:52.659 90000 TIP 441699 8059 6097418 2024-02-28 11:53:21.536 2024-02-28 11:53:21.536 300 FEE 441705 18932 6097419 2024-02-28 11:53:21.536 2024-02-28 11:53:21.536 2700 TIP 441705 649 6097448 2024-02-28 11:57:37.353 2024-02-28 11:57:37.353 800 FEE 441560 21090 6097449 2024-02-28 11:57:37.353 2024-02-28 11:57:37.353 7200 TIP 441560 928 6097459 2024-02-28 11:58:42.044 2024-02-28 11:58:42.044 5700 FEE 441560 678 6097460 2024-02-28 11:58:42.044 2024-02-28 11:58:42.044 51300 TIP 441560 18736 6097471 2024-02-28 11:58:55.097 2024-02-28 11:58:55.097 1000 FEE 441332 19777 6097472 2024-02-28 11:58:55.097 2024-02-28 11:58:55.097 9000 TIP 441332 19911 6097476 2024-02-28 11:59:29.64 2024-02-28 11:59:29.64 1000 FEE 441600 17494 6097477 2024-02-28 11:59:29.64 2024-02-28 11:59:29.64 9000 TIP 441600 14515 6097517 2024-02-28 12:06:34.161 2024-02-28 12:06:34.161 2100 FEE 441600 12160 6097518 2024-02-28 12:06:34.161 2024-02-28 12:06:34.161 18900 TIP 441600 5160 6097542 2024-02-28 12:11:10.098 2024-02-28 12:11:10.098 100 FEE 441795 12368 6097543 2024-02-28 12:11:10.098 2024-02-28 12:11:10.098 900 TIP 441795 3400 6097570 2024-02-28 12:13:41.376 2024-02-28 12:13:41.376 15000 FEE 441809 20436 6097572 2024-02-28 12:13:50.383 2024-02-28 12:13:50.383 21000 DONT_LIKE_THIS 441805 9655 6097597 2024-02-28 12:16:35.153 2024-02-28 12:16:35.153 1000 FEE 441813 6310 6097601 2024-02-28 12:16:53.41 2024-02-28 12:16:53.41 0 FEE 441811 1474 6097617 2024-02-28 12:19:34.708 2024-02-28 12:19:34.708 1000 FEE 441818 19826 6097631 2024-02-28 12:21:36.1 2024-02-28 12:21:36.1 1000 FEE 441782 2264 6097632 2024-02-28 12:21:36.1 2024-02-28 12:21:36.1 9000 TIP 441782 6137 6097647 2024-02-28 12:22:40.928 2024-02-28 12:22:40.928 1000 FEE 441821 16193 6097652 2024-02-28 12:24:38.329 2024-02-28 12:24:38.329 1000 FEE 441822 1611 6097666 2024-02-28 12:25:14.743 2024-02-28 12:25:14.743 1000 FEE 441823 20840 6097701 2024-02-28 12:26:41.148 2024-02-28 12:26:41.148 1000 FEE 441826 20738 6097708 2024-02-28 12:28:00.027 2024-02-28 12:28:00.027 1000 FEE 441829 1960 6097763 2024-02-28 12:36:00.723 2024-02-28 12:36:00.723 7700 FEE 441782 19449 6097764 2024-02-28 12:36:00.723 2024-02-28 12:36:00.723 69300 TIP 441782 4633 6097767 2024-02-28 12:36:01.612 2024-02-28 12:36:01.612 7700 FEE 441782 16704 6097768 2024-02-28 12:36:01.612 2024-02-28 12:36:01.612 69300 TIP 441782 6419 6097777 2024-02-28 12:36:58.746 2024-02-28 12:36:58.746 2100 FEE 441840 15386 6097778 2024-02-28 12:36:58.746 2024-02-28 12:36:58.746 18900 TIP 441840 20738 6097796 2024-02-28 12:37:17.729 2024-02-28 12:37:17.729 100 FEE 441829 21037 6097797 2024-02-28 12:37:17.729 2024-02-28 12:37:17.729 900 TIP 441829 18705 6097824 2024-02-28 12:37:34.75 2024-02-28 12:37:34.75 1000 FEE 441842 7992 6097846 2024-02-28 12:37:47.325 2024-02-28 12:37:47.325 2100 FEE 441777 20424 6097847 2024-02-28 12:37:47.325 2024-02-28 12:37:47.325 18900 TIP 441777 1006 6097863 2024-02-28 12:39:58.847 2024-02-28 12:39:58.847 1000 FEE 441844 1564 6097870 2024-02-28 12:40:23.156 2024-02-28 12:40:23.156 2100 FEE 441828 1567 6097871 2024-02-28 12:40:23.156 2024-02-28 12:40:23.156 18900 TIP 441828 21088 6097878 2024-02-28 12:40:38.897 2024-02-28 12:40:38.897 100000 FEE 441846 9355 6097879 2024-02-28 12:40:44.794 2024-02-28 12:40:44.794 1000 FEE 441847 684 6097907 2024-02-28 12:41:30.787 2024-02-28 12:41:30.787 2100 FEE 441724 993 6097908 2024-02-28 12:41:30.787 2024-02-28 12:41:30.787 18900 TIP 441724 5637 6097911 2024-02-28 12:42:18.302 2024-02-28 12:42:18.302 10000 FEE 441843 21248 6097912 2024-02-28 12:42:18.302 2024-02-28 12:42:18.302 90000 TIP 441843 18336 6097935 2024-02-28 12:43:42.088 2024-02-28 12:43:42.088 6900 FEE 441843 7773 6097936 2024-02-28 12:43:42.088 2024-02-28 12:43:42.088 62100 TIP 441843 21520 6097937 2024-02-28 12:43:42.67 2024-02-28 12:43:42.67 0 FEE 441851 5293 6097989 2024-02-28 12:47:12.873 2024-02-28 12:47:12.873 1100 FEE 441247 5703 6097990 2024-02-28 12:47:12.873 2024-02-28 12:47:12.873 9900 TIP 441247 13378 6097991 2024-02-28 12:47:13.014 2024-02-28 12:47:13.014 1100 FEE 441247 17041 6097992 2024-02-28 12:47:13.014 2024-02-28 12:47:13.014 9900 TIP 441247 5499 6097995 2024-02-28 12:47:24.515 2024-02-28 12:47:24.515 1100 FEE 441843 2773 6097996 2024-02-28 12:47:24.515 2024-02-28 12:47:24.515 9900 TIP 441843 17106 6098037 2024-02-28 12:47:29.827 2024-02-28 12:47:29.827 2200 FEE 441843 12057 6098038 2024-02-28 12:47:29.827 2024-02-28 12:47:29.827 19800 TIP 441843 21469 6098052 2024-02-28 12:48:26.899 2024-02-28 12:48:26.899 22200 FEE 441854 12072 6098053 2024-02-28 12:48:26.899 2024-02-28 12:48:26.899 199800 TIP 441854 19854 6098077 2024-02-28 12:48:50.293 2024-02-28 12:48:50.293 10000 FEE 441853 711 6098078 2024-02-28 12:48:50.293 2024-02-28 12:48:50.293 90000 TIP 441853 20912 6098083 2024-02-28 12:48:51.149 2024-02-28 12:48:51.149 7700 FEE 441560 1122 6098084 2024-02-28 12:48:51.149 2024-02-28 12:48:51.149 69300 TIP 441560 14267 6098089 2024-02-28 12:48:58.851 2024-02-28 12:48:58.851 10000 FEE 441854 14905 6098090 2024-02-28 12:48:58.851 2024-02-28 12:48:58.851 90000 TIP 441854 21609 6098103 2024-02-28 12:49:56.755 2024-02-28 12:49:56.755 1000 POLL 441333 16965 6098121 2024-02-28 12:52:47.845 2024-02-28 12:52:47.845 400 FEE 441492 21352 6098122 2024-02-28 12:52:47.845 2024-02-28 12:52:47.845 3600 TIP 441492 797 6098131 2024-02-28 12:53:11.636 2024-02-28 12:53:11.636 500 FEE 441843 20439 6098132 2024-02-28 12:53:11.636 2024-02-28 12:53:11.636 4500 TIP 441843 9167 6097314 2024-02-28 11:43:59.582 2024-02-28 11:43:59.582 10000 FEE 441742 16753 6097315 2024-02-28 11:43:59.582 2024-02-28 11:43:59.582 90000 TIP 441742 16769 6097329 2024-02-28 11:46:34.037 2024-02-28 11:46:34.037 0 FEE 441777 20110 6097342 2024-02-28 11:48:46.232 2024-02-28 11:48:46.232 300 FEE 441749 11164 6097343 2024-02-28 11:48:46.232 2024-02-28 11:48:46.232 2700 TIP 441749 19153 6097346 2024-02-28 11:48:46.717 2024-02-28 11:48:46.717 300 FEE 441749 11458 6097347 2024-02-28 11:48:46.717 2024-02-28 11:48:46.717 2700 TIP 441749 15273 6097372 2024-02-28 11:48:50.237 2024-02-28 11:48:50.237 300 FEE 441749 7418 6097373 2024-02-28 11:48:50.237 2024-02-28 11:48:50.237 2700 TIP 441749 17162 6097390 2024-02-28 11:51:10.112 2024-02-28 11:51:10.112 1000 FEE 441784 5520 6097392 2024-02-28 11:51:33.797 2024-02-28 11:51:33.797 1000 FEE 441690 19151 6097393 2024-02-28 11:51:33.797 2024-02-28 11:51:33.797 9000 TIP 441690 686 6097400 2024-02-28 11:52:50.041 2024-02-28 11:52:50.041 100000 FEE 441787 671 6097408 2024-02-28 11:53:19.712 2024-02-28 11:53:19.712 300 FEE 441705 15577 6097409 2024-02-28 11:53:19.712 2024-02-28 11:53:19.712 2700 TIP 441705 3544 6097420 2024-02-28 11:53:21.778 2024-02-28 11:53:21.778 300 FEE 441705 20436 6097421 2024-02-28 11:53:21.778 2024-02-28 11:53:21.778 2700 TIP 441705 649 6097444 2024-02-28 11:57:34.659 2024-02-28 11:57:34.659 800 FEE 441687 2749 6097445 2024-02-28 11:57:34.659 2024-02-28 11:57:34.659 7200 TIP 441687 20841 6097469 2024-02-28 11:58:49.481 2024-02-28 11:58:49.481 300 FEE 441705 664 6097470 2024-02-28 11:58:49.481 2024-02-28 11:58:49.481 2700 TIP 441705 19943 6097519 2024-02-28 12:06:34.827 2024-02-28 12:06:34.827 2100 FEE 441660 11996 6097520 2024-02-28 12:06:34.827 2024-02-28 12:06:34.827 18900 TIP 441660 14267 6097527 2024-02-28 12:09:47.762 2024-02-28 12:09:47.762 1000 POLL 441333 20993 6097550 2024-02-28 12:11:16.67 2024-02-28 12:11:16.67 300 FEE 441686 13217 6097551 2024-02-28 12:11:16.67 2024-02-28 12:11:16.67 2700 TIP 441686 654 6097552 2024-02-28 12:11:18.926 2024-02-28 12:11:18.926 100 FEE 441672 9331 6097553 2024-02-28 12:11:18.926 2024-02-28 12:11:18.926 900 TIP 441672 19601 6097559 2024-02-28 12:11:56.061 2024-02-28 12:11:56.061 1000 FEE 441804 18842 6097561 2024-02-28 12:12:05.642 2024-02-28 12:12:05.642 1000 FEE 441805 2046 6097562 2024-02-28 12:12:11.842 2024-02-28 12:12:11.842 1000 FEE 441560 10944 6097563 2024-02-28 12:12:11.842 2024-02-28 12:12:11.842 9000 TIP 441560 20993 6097569 2024-02-28 12:13:30.126 2024-02-28 12:13:30.126 1000 FEE 441808 6202 6097571 2024-02-28 12:13:45.303 2024-02-28 12:13:45.303 1000 POLL 441333 18271 6097574 2024-02-28 12:14:31.874 2024-02-28 12:14:31.874 1000 FEE 441810 15463 6097581 2024-02-28 12:15:12.819 2024-02-28 12:15:12.819 10000 FEE 441486 16830 6097582 2024-02-28 12:15:12.819 2024-02-28 12:15:12.819 90000 TIP 441486 2285 6097596 2024-02-28 12:16:26.842 2024-02-28 12:16:26.842 0 FEE 441811 21339 6097598 2024-02-28 12:16:44.756 2024-02-28 12:16:44.756 6400 FEE 441811 16942 6097599 2024-02-28 12:16:44.756 2024-02-28 12:16:44.756 57600 TIP 441811 685 6097610 2024-02-28 12:18:53.017 2024-02-28 12:18:53.017 2500 FEE 441814 13143 6097611 2024-02-28 12:18:53.017 2024-02-28 12:18:53.017 22500 TIP 441814 17124 6097613 2024-02-28 12:19:06.471 2024-02-28 12:19:06.471 1000 POLL 441660 19322 6097337 2024-02-28 11:48:38.814 2024-02-28 11:48:38.814 0 FEE 441777 16485 6097338 2024-02-28 11:48:43.437 2024-02-28 11:48:43.437 2100 FEE 441770 14552 6097339 2024-02-28 11:48:43.437 2024-02-28 11:48:43.437 18900 TIP 441770 9109 6097352 2024-02-28 11:48:47.441 2024-02-28 11:48:47.441 300 FEE 441749 17106 6097353 2024-02-28 11:48:47.441 2024-02-28 11:48:47.441 2700 TIP 441749 4064 6097358 2024-02-28 11:48:48.226 2024-02-28 11:48:48.226 300 FEE 441749 20912 6097359 2024-02-28 11:48:48.226 2024-02-28 11:48:48.226 2700 TIP 441749 1890 6097360 2024-02-28 11:48:48.466 2024-02-28 11:48:48.466 300 FEE 441749 2703 6097361 2024-02-28 11:48:48.466 2024-02-28 11:48:48.466 2700 TIP 441749 828 6097364 2024-02-28 11:48:48.944 2024-02-28 11:48:48.944 300 FEE 441749 13878 6097365 2024-02-28 11:48:48.944 2024-02-28 11:48:48.944 2700 TIP 441749 17673 6097366 2024-02-28 11:48:49.174 2024-02-28 11:48:49.174 300 FEE 441749 18476 6097367 2024-02-28 11:48:49.174 2024-02-28 11:48:49.174 2700 TIP 441749 12721 6097382 2024-02-28 11:50:38.544 2024-02-28 11:50:38.544 5700 FEE 441773 8245 6097383 2024-02-28 11:50:38.544 2024-02-28 11:50:38.544 51300 TIP 441773 21057 6097391 2024-02-28 11:51:33.623 2024-02-28 11:51:33.623 1000 FEE 441785 16355 6097396 2024-02-28 11:52:13.259 2024-02-28 11:52:13.259 1000 FEE 441781 21178 6097397 2024-02-28 11:52:13.259 2024-02-28 11:52:13.259 9000 TIP 441781 20788 6097414 2024-02-28 11:53:21.105 2024-02-28 11:53:21.105 300 FEE 441705 16336 6097415 2024-02-28 11:53:21.105 2024-02-28 11:53:21.105 2700 TIP 441705 6137 6097426 2024-02-28 11:54:06.852 2024-02-28 11:54:06.852 1000 FEE 441788 21627 6097431 2024-02-28 11:54:41.527 2024-02-28 11:54:41.527 1000 FEE 441791 15624 6097446 2024-02-28 11:57:34.86 2024-02-28 11:57:34.86 800 FEE 441687 16667 6097447 2024-02-28 11:57:34.86 2024-02-28 11:57:34.86 7200 TIP 441687 18169 6097454 2024-02-28 11:58:07.322 2024-02-28 11:58:07.322 1000 FEE 441795 15273 6097480 2024-02-28 12:00:05.471 2024-02-28 12:00:05.471 1000 FEE 441797 18667 6097513 2024-02-28 12:06:12.948 2024-02-28 12:06:12.948 500 FEE 441714 19036 6097514 2024-02-28 12:06:12.948 2024-02-28 12:06:12.948 4500 TIP 441714 21539 6097588 2024-02-28 12:15:26.997 2024-02-28 12:15:26.997 0 FEE 441811 4973 6097600 2024-02-28 12:16:47.914 2024-02-28 12:16:47.914 1000 FEE 441814 1307 6097623 2024-02-28 12:20:16.063 2024-02-28 12:20:16.063 5000 FEE 441176 21527 6097624 2024-02-28 12:20:16.063 2024-02-28 12:20:16.063 45000 TIP 441176 9171 6097628 2024-02-28 12:21:08.696 2024-02-28 12:21:08.696 2000 FEE 441806 13622 6097629 2024-02-28 12:21:08.696 2024-02-28 12:21:08.696 18000 TIP 441806 19689 6097635 2024-02-28 12:21:36.423 2024-02-28 12:21:36.423 1000 FEE 441782 19500 6097636 2024-02-28 12:21:36.423 2024-02-28 12:21:36.423 9000 TIP 441782 11450 6097645 2024-02-28 12:22:29.998 2024-02-28 12:22:29.998 5700 FEE 441749 20964 6097646 2024-02-28 12:22:29.998 2024-02-28 12:22:29.998 51300 TIP 441749 18745 6097649 2024-02-28 12:23:14.079 2024-02-28 12:23:14.079 5700 FEE 441780 19906 6097650 2024-02-28 12:23:14.079 2024-02-28 12:23:14.079 51300 TIP 441780 20120 6097655 2024-02-28 12:24:39.974 2024-02-28 12:24:39.974 1600 FEE 441687 16126 6097656 2024-02-28 12:24:39.974 2024-02-28 12:24:39.974 14400 TIP 441687 5160 6097669 2024-02-28 12:25:33.772 2024-02-28 12:25:33.772 800 FEE 441660 2952 6097670 2024-02-28 12:25:33.772 2024-02-28 12:25:33.772 7200 TIP 441660 1245 6097677 2024-02-28 12:25:34.959 2024-02-28 12:25:34.959 1100 FEE 441333 11328 6097678 2024-02-28 12:25:34.959 2024-02-28 12:25:34.959 9900 TIP 441333 9985 6097691 2024-02-28 12:26:23.801 2024-02-28 12:26:23.801 1000 FEE 441794 6383 6097692 2024-02-28 12:26:23.801 2024-02-28 12:26:23.801 9000 TIP 441794 21239 6097693 2024-02-28 12:26:23.98 2024-02-28 12:26:23.98 1000 FEE 441794 20646 6097694 2024-02-28 12:26:23.98 2024-02-28 12:26:23.98 9000 TIP 441794 19021 6097728 2024-02-28 12:32:29.756 2024-02-28 12:32:29.756 1000 FEE 441830 6688 6097729 2024-02-28 12:32:29.756 2024-02-28 12:32:29.756 9000 TIP 441830 6382 6097747 2024-02-28 12:34:35.488 2024-02-28 12:34:35.488 1000 FEE 441836 18673 6097758 2024-02-28 12:35:35.744 2024-02-28 12:35:35.744 800 FEE 441765 19105 6097759 2024-02-28 12:35:35.744 2024-02-28 12:35:35.744 7200 TIP 441765 19036 6097765 2024-02-28 12:36:00.807 2024-02-28 12:36:00.807 7700 FEE 441782 17227 6097766 2024-02-28 12:36:00.807 2024-02-28 12:36:00.807 69300 TIP 441782 10668 6097774 2024-02-28 12:36:52.161 2024-02-28 12:36:52.161 2100 FEE 441828 21457 6097775 2024-02-28 12:36:52.161 2024-02-28 12:36:52.161 18900 TIP 441828 15408 6097781 2024-02-28 12:37:02.077 2024-02-28 12:37:02.077 2100 FEE 441837 7097 6097782 2024-02-28 12:37:02.077 2024-02-28 12:37:02.077 18900 TIP 441837 18664 6097785 2024-02-28 12:37:03.471 2024-02-28 12:37:03.471 2100 FEE 441833 20201 6097786 2024-02-28 12:37:03.471 2024-02-28 12:37:03.471 18900 TIP 441833 18629 6097794 2024-02-28 12:37:16.797 2024-02-28 12:37:16.797 2100 FEE 441751 9169 6097795 2024-02-28 12:37:16.797 2024-02-28 12:37:16.797 18900 TIP 441751 14669 6097827 2024-02-28 12:37:36.793 2024-02-28 12:37:36.793 2100 FEE 441708 692 6097828 2024-02-28 12:37:36.793 2024-02-28 12:37:36.793 18900 TIP 441708 21365 6097835 2024-02-28 12:37:39.779 2024-02-28 12:37:39.779 0 FEE 441841 1180 6097852 2024-02-28 12:37:48.792 2024-02-28 12:37:48.792 2100 FEE 441709 12188 6097853 2024-02-28 12:37:48.792 2024-02-28 12:37:48.792 18900 TIP 441709 18736 6097866 2024-02-28 12:40:20.328 2024-02-28 12:40:20.328 2100 FEE 441843 10731 6097867 2024-02-28 12:40:20.328 2024-02-28 12:40:20.328 18900 TIP 441843 16670 6097898 2024-02-28 12:41:05.53 2024-02-28 12:41:05.53 100 FEE 441834 1823 6097899 2024-02-28 12:41:05.53 2024-02-28 12:41:05.53 900 TIP 441834 21140 6097915 2024-02-28 12:43:38.569 2024-02-28 12:43:38.569 6900 FEE 441843 13046 6097916 2024-02-28 12:43:38.569 2024-02-28 12:43:38.569 62100 TIP 441843 19153 6097927 2024-02-28 12:43:39.938 2024-02-28 12:43:39.938 6900 FEE 441843 8448 6097928 2024-02-28 12:43:39.938 2024-02-28 12:43:39.938 62100 TIP 441843 13378 6097949 2024-02-28 12:45:16.505 2024-02-28 12:45:16.505 10000 FEE 441852 7659 6097950 2024-02-28 12:45:16.505 2024-02-28 12:45:16.505 90000 TIP 441852 9969 6097953 2024-02-28 12:46:00.767 2024-02-28 12:46:00.767 22200 FEE 441843 12507 6097954 2024-02-28 12:46:00.767 2024-02-28 12:46:00.767 199800 TIP 441843 10342 6097958 2024-02-28 12:46:29.221 2024-02-28 12:46:29.221 1000 FEE 441843 21201 6097959 2024-02-28 12:46:29.221 2024-02-28 12:46:29.221 9000 TIP 441843 20246 6098019 2024-02-28 12:47:27.641 2024-02-28 12:47:27.641 1100 FEE 441843 15139 6098020 2024-02-28 12:47:27.641 2024-02-28 12:47:27.641 9900 TIP 441843 18473 6098031 2024-02-28 12:47:28.762 2024-02-28 12:47:28.762 1100 FEE 441843 7587 6098032 2024-02-28 12:47:28.762 2024-02-28 12:47:28.762 9900 TIP 441843 10591 6098039 2024-02-28 12:47:29.848 2024-02-28 12:47:29.848 1100 FEE 441843 19661 6098040 2024-02-28 12:47:29.848 2024-02-28 12:47:29.848 9900 TIP 441843 20674 6098050 2024-02-28 12:48:22.68 2024-02-28 12:48:22.68 5700 FEE 441854 798 6098051 2024-02-28 12:48:22.68 2024-02-28 12:48:22.68 51300 TIP 441854 19848 6098056 2024-02-28 12:48:28.416 2024-02-28 12:48:28.416 7700 FEE 441843 1720 6098057 2024-02-28 12:48:28.416 2024-02-28 12:48:28.416 69300 TIP 441843 17526 6098067 2024-02-28 12:48:48.65 2024-02-28 12:48:48.65 7700 FEE 441560 16684 6098068 2024-02-28 12:48:48.65 2024-02-28 12:48:48.65 69300 TIP 441560 15978 6098069 2024-02-28 12:48:48.865 2024-02-28 12:48:48.865 7700 FEE 441560 6421 6098070 2024-02-28 12:48:48.865 2024-02-28 12:48:48.865 69300 TIP 441560 21555 6097413 2024-02-28 11:53:20.883 2024-02-28 11:53:20.883 2700 TIP 441705 711 6097427 2024-02-28 11:54:23.3 2024-02-28 11:54:23.3 1000 FEE 441789 2718 6097428 2024-02-28 11:54:33.521 2024-02-28 11:54:33.521 800 FEE 441782 21369 6097429 2024-02-28 11:54:33.521 2024-02-28 11:54:33.521 7200 TIP 441782 1488 6097465 2024-02-28 11:58:48.911 2024-02-28 11:58:48.911 300 FEE 441705 1836 6097466 2024-02-28 11:58:48.911 2024-02-28 11:58:48.911 2700 TIP 441705 3409 6097467 2024-02-28 11:58:49.186 2024-02-28 11:58:49.186 300 FEE 441705 5728 6097468 2024-02-28 11:58:49.186 2024-02-28 11:58:49.186 2700 TIP 441705 3353 6097504 2024-02-28 12:05:46.495 2024-02-28 12:05:46.495 500 FEE 441687 21585 6097505 2024-02-28 12:05:46.495 2024-02-28 12:05:46.495 4500 TIP 441687 18667 6097506 2024-02-28 12:05:47.102 2024-02-28 12:05:47.102 500 FEE 441687 19296 6097507 2024-02-28 12:05:47.102 2024-02-28 12:05:47.102 4500 TIP 441687 1038 6097528 2024-02-28 12:09:53.833 2024-02-28 12:09:53.833 1000 FEE 441801 10409 6097556 2024-02-28 12:11:25.745 2024-02-28 12:11:25.745 1000 FEE 441803 4313 6097575 2024-02-28 12:14:41.214 2024-02-28 12:14:41.214 1000 FEE 441811 15119 6097576 2024-02-28 12:14:57.185 2024-02-28 12:14:57.185 500 FEE 441560 14959 6097577 2024-02-28 12:14:57.185 2024-02-28 12:14:57.185 4500 TIP 441560 10611 6097591 2024-02-28 12:15:37.212 2024-02-28 12:15:37.212 5000 FEE 441496 722 6097592 2024-02-28 12:15:37.212 2024-02-28 12:15:37.212 45000 TIP 441496 18068 6097605 2024-02-28 12:17:39.684 2024-02-28 12:17:39.684 21000 FEE 441815 14669 6097607 2024-02-28 12:18:07.405 2024-02-28 12:18:07.405 42100 FEE 441775 8841 6097608 2024-02-28 12:18:07.405 2024-02-28 12:18:07.405 378900 TIP 441775 16830 6097615 2024-02-28 12:19:15.719 2024-02-28 12:19:15.719 1000 FEE 441705 12911 6097616 2024-02-28 12:19:15.719 2024-02-28 12:19:15.719 9000 TIP 441705 13544 6097625 2024-02-28 12:20:18.466 2024-02-28 12:20:18.466 1000 POLL 441333 7746 6097643 2024-02-28 12:22:28.093 2024-02-28 12:22:28.093 5700 FEE 441600 1213 6097644 2024-02-28 12:22:28.093 2024-02-28 12:22:28.093 51300 TIP 441600 11866 6097661 2024-02-28 12:24:41.122 2024-02-28 12:24:41.122 1600 FEE 441687 848 6097662 2024-02-28 12:24:41.122 2024-02-28 12:24:41.122 14400 TIP 441687 18930 6097705 2024-02-28 12:27:14.482 2024-02-28 12:27:14.482 10000 FEE 441827 1007 6097723 2024-02-28 12:30:15.927 2024-02-28 12:30:15.927 500 FEE 441687 2529 6097724 2024-02-28 12:30:15.927 2024-02-28 12:30:15.927 4500 TIP 441687 1585 6097730 2024-02-28 12:32:39.953 2024-02-28 12:32:39.953 5700 FEE 441829 17800 6097731 2024-02-28 12:32:39.953 2024-02-28 12:32:39.953 51300 TIP 441829 2293 6097752 2024-02-28 12:35:02.729 2024-02-28 12:35:02.729 2100 FEE 441823 18351 6097753 2024-02-28 12:35:02.729 2024-02-28 12:35:02.729 18900 TIP 441823 18675 6097760 2024-02-28 12:35:52.071 2024-02-28 12:35:52.071 1000 FEE 441837 16347 6097776 2024-02-28 12:36:53.929 2024-02-28 12:36:53.929 1000 FEE 441840 16808 6097779 2024-02-28 12:36:59.399 2024-02-28 12:36:59.399 2100 FEE 441823 5961 6097780 2024-02-28 12:36:59.399 2024-02-28 12:36:59.399 18900 TIP 441823 880 6097805 2024-02-28 12:37:24.205 2024-02-28 12:37:24.205 2100 FEE 441712 15858 6097806 2024-02-28 12:37:24.205 2024-02-28 12:37:24.205 18900 TIP 441712 2330 6097850 2024-02-28 12:37:48.373 2024-02-28 12:37:48.373 2100 FEE 441759 674 6097851 2024-02-28 12:37:48.373 2024-02-28 12:37:48.373 18900 TIP 441759 1825 6097929 2024-02-28 12:43:40.641 2024-02-28 12:43:40.641 6900 FEE 441843 6573 6097930 2024-02-28 12:43:40.641 2024-02-28 12:43:40.641 62100 TIP 441843 2195 6097946 2024-02-28 12:44:40.907 2024-02-28 12:44:40.907 100000 FEE 441843 8416 6097947 2024-02-28 12:44:40.907 2024-02-28 12:44:40.907 900000 TIP 441843 762 6097951 2024-02-28 12:45:29.455 2024-02-28 12:45:29.455 5000 FEE 441850 646 6097952 2024-02-28 12:45:29.455 2024-02-28 12:45:29.455 45000 TIP 441850 3642 6097975 2024-02-28 12:47:03.715 2024-02-28 12:47:03.715 1100 FEE 441660 15703 6097976 2024-02-28 12:47:03.715 2024-02-28 12:47:03.715 9900 TIP 441660 2620 6097985 2024-02-28 12:47:12.467 2024-02-28 12:47:12.467 1100 FEE 441247 5538 6097986 2024-02-28 12:47:12.467 2024-02-28 12:47:12.467 9900 TIP 441247 621 6098062 2024-02-28 12:48:28.566 2024-02-28 12:48:28.566 7700 FEE 441843 11992 6098063 2024-02-28 12:48:28.566 2024-02-28 12:48:28.566 69300 TIP 441843 3342 6098119 2024-02-28 12:52:45.835 2024-02-28 12:52:45.835 400 FEE 441470 1394 6098120 2024-02-28 12:52:45.835 2024-02-28 12:52:45.835 3600 TIP 441470 16178 6098130 2024-02-28 12:53:09.457 2024-02-28 12:53:09.457 1000 FEE 441861 19038 6098133 2024-02-28 12:53:59.141 2024-02-28 12:53:59.141 1000 FEE 441862 981 6098139 2024-02-28 12:54:46.894 2024-02-28 12:54:46.894 1000 FEE 441863 10530 6098150 2024-02-28 12:55:23.261 2024-02-28 12:55:23.261 100 FEE 441843 4259 6098151 2024-02-28 12:55:23.261 2024-02-28 12:55:23.261 900 TIP 441843 20889 6098163 2024-02-28 12:57:10.133 2024-02-28 12:57:10.133 0 FEE 441859 4474 6098182 2024-02-28 12:58:27.91 2024-02-28 12:58:27.91 5700 FEE 441867 937 6098183 2024-02-28 12:58:27.91 2024-02-28 12:58:27.91 51300 TIP 441867 19501 6098188 2024-02-28 12:59:00.441 2024-02-28 12:59:00.441 1000 FEE 441870 4819 6098190 2024-02-28 12:59:55.919 2024-02-28 12:59:55.919 1000 FEE 441871 12609 6098193 2024-02-28 13:00:05.651 2024-02-28 13:00:05.651 1000 FEE 441873 21014 6098209 2024-02-28 13:01:49.715 2024-02-28 13:01:49.715 0 FEE 441871 20539 6098212 2024-02-28 13:01:57.982 2024-02-28 13:01:57.982 900000 FEE 441843 20642 6098213 2024-02-28 13:01:57.982 2024-02-28 13:01:57.982 8100000 TIP 441843 20222 6098227 2024-02-28 13:03:33.816 2024-02-28 13:03:33.816 0 FEE 441878 14278 6098229 2024-02-28 13:03:37.718 2024-02-28 13:03:37.718 2100 FEE 441876 2514 6098230 2024-02-28 13:03:37.718 2024-02-28 13:03:37.718 18900 TIP 441876 4391 6098231 2024-02-28 13:03:40.159 2024-02-28 13:03:40.159 1000 FEE 441880 1198 6098232 2024-02-28 13:03:45.891 2024-02-28 13:03:45.891 2100 FEE 441875 16124 6098233 2024-02-28 13:03:45.891 2024-02-28 13:03:45.891 18900 TIP 441875 1697 6098240 2024-02-28 13:04:26.232 2024-02-28 13:04:26.232 2100 FEE 441846 21401 6098241 2024-02-28 13:04:26.232 2024-02-28 13:04:26.232 18900 TIP 441846 19038 6098265 2024-02-28 13:05:15.635 2024-02-28 13:05:15.635 100 FEE 441881 2123 6098266 2024-02-28 13:05:15.635 2024-02-28 13:05:15.635 900 TIP 441881 7979 6098269 2024-02-28 13:05:16.131 2024-02-28 13:05:16.131 100 FEE 441881 10591 6098270 2024-02-28 13:05:16.131 2024-02-28 13:05:16.131 900 TIP 441881 9427 6098299 2024-02-28 13:06:50.796 2024-02-28 13:06:50.796 900 FEE 441782 15180 6098300 2024-02-28 13:06:50.796 2024-02-28 13:06:50.796 8100 TIP 441782 1394 6098303 2024-02-28 13:06:58.452 2024-02-28 13:06:58.452 100 FEE 441784 10818 6098304 2024-02-28 13:06:58.452 2024-02-28 13:06:58.452 900 TIP 441784 20254 6098326 2024-02-28 13:07:04.738 2024-02-28 13:07:04.738 900 FEE 441842 18476 6098327 2024-02-28 13:07:04.738 2024-02-28 13:07:04.738 8100 TIP 441842 16513 6098346 2024-02-28 13:08:25.998 2024-02-28 13:08:25.998 0 FEE 441884 20481 6098416 2024-02-28 13:13:31.22 2024-02-28 13:13:31.22 1000 FEE 441891 8729 6098417 2024-02-28 13:13:31.22 2024-02-28 13:13:31.22 9000 TIP 441891 20340 6098436 2024-02-28 13:13:33.287 2024-02-28 13:13:33.287 1000 FEE 441891 11678 6097440 2024-02-28 11:56:22.484 2024-02-28 11:56:22.484 1000 FEE 441682 8360 6097441 2024-02-28 11:56:22.484 2024-02-28 11:56:22.484 9000 TIP 441682 692 6097463 2024-02-28 11:58:48.755 2024-02-28 11:58:48.755 300 FEE 441705 6717 6097464 2024-02-28 11:58:48.755 2024-02-28 11:58:48.755 2700 TIP 441705 14705 6097482 2024-02-28 12:00:19.142 2024-02-28 12:00:19.142 3200 FEE 441777 20897 6097483 2024-02-28 12:00:19.142 2024-02-28 12:00:19.142 28800 TIP 441777 19557 6097485 2024-02-28 12:01:58.928 2024-02-28 12:01:58.928 5700 FEE 441794 18629 6097486 2024-02-28 12:01:58.928 2024-02-28 12:01:58.928 51300 TIP 441794 12097 6097524 2024-02-28 12:08:49.293 2024-02-28 12:08:49.293 10000 FEE 441038 9992 6097525 2024-02-28 12:08:49.293 2024-02-28 12:08:49.293 90000 TIP 441038 10490 6097533 2024-02-28 12:10:52.237 2024-02-28 12:10:52.237 1000 FEE 441775 16229 6097534 2024-02-28 12:10:52.237 2024-02-28 12:10:52.237 9000 TIP 441775 17091 6097538 2024-02-28 12:11:09.541 2024-02-28 12:11:09.541 100 FEE 441795 21047 6097539 2024-02-28 12:11:09.541 2024-02-28 12:11:09.541 900 TIP 441795 12951 6097540 2024-02-28 12:11:09.965 2024-02-28 12:11:09.965 100 FEE 441795 954 6097541 2024-02-28 12:11:09.965 2024-02-28 12:11:09.965 900 TIP 441795 14213 6097544 2024-02-28 12:11:11.989 2024-02-28 12:11:11.989 100 FEE 441746 4079 6097545 2024-02-28 12:11:11.989 2024-02-28 12:11:11.989 900 TIP 441746 21614 6097653 2024-02-28 12:24:39.588 2024-02-28 12:24:39.588 800 FEE 441687 14122 6097654 2024-02-28 12:24:39.588 2024-02-28 12:24:39.588 7200 TIP 441687 18601 6097682 2024-02-28 12:25:49.567 2024-02-28 12:25:49.567 5700 FEE 441806 19839 6097683 2024-02-28 12:25:49.567 2024-02-28 12:25:49.567 51300 TIP 441806 1162 6097707 2024-02-28 12:27:54.476 2024-02-28 12:27:54.476 0 FEE 441828 20963 6097712 2024-02-28 12:28:20.178 2024-02-28 12:28:20.178 1000 POLL 441333 1142 6097722 2024-02-28 12:30:06.746 2024-02-28 12:30:06.746 0 FEE 441830 12483 6097749 2024-02-28 12:34:52.701 2024-02-28 12:34:52.701 2100 FEE 441807 640 6097750 2024-02-28 12:34:52.701 2024-02-28 12:34:52.701 18900 TIP 441807 10698 6097798 2024-02-28 12:37:17.751 2024-02-28 12:37:17.751 2100 FEE 441765 10536 6097799 2024-02-28 12:37:17.751 2024-02-28 12:37:17.751 18900 TIP 441765 19601 6097815 2024-02-28 12:37:31.915 2024-02-28 12:37:31.915 1000 FEE 441841 9246 6097816 2024-02-28 12:37:32.136 2024-02-28 12:37:32.136 2100 FEE 441745 1141 6097817 2024-02-28 12:37:32.136 2024-02-28 12:37:32.136 18900 TIP 441745 19652 6097818 2024-02-28 12:37:32.737 2024-02-28 12:37:32.737 2100 FEE 441736 2042 6097819 2024-02-28 12:37:32.737 2024-02-28 12:37:32.737 18900 TIP 441736 2402 6097822 2024-02-28 12:37:34.286 2024-02-28 12:37:34.286 2100 FEE 441704 18608 6097823 2024-02-28 12:37:34.286 2024-02-28 12:37:34.286 18900 TIP 441704 20964 6097831 2024-02-28 12:37:39.251 2024-02-28 12:37:39.251 2100 FEE 441756 5828 6097832 2024-02-28 12:37:39.251 2024-02-28 12:37:39.251 18900 TIP 441756 17690 6097833 2024-02-28 12:37:39.439 2024-02-28 12:37:39.439 2100 FEE 441754 5173 6097834 2024-02-28 12:37:39.439 2024-02-28 12:37:39.439 18900 TIP 441754 661 6097842 2024-02-28 12:37:45.042 2024-02-28 12:37:45.042 2100 FEE 441818 12368 6097843 2024-02-28 12:37:45.042 2024-02-28 12:37:45.042 18900 TIP 441818 21062 6097859 2024-02-28 12:39:46.669 2024-02-28 12:39:46.669 5000 FEE 441843 20717 6097860 2024-02-28 12:39:46.669 2024-02-28 12:39:46.669 45000 TIP 441843 21444 6097864 2024-02-28 12:40:02.125 2024-02-28 12:40:02.125 1000 FEE 441845 19836 6097876 2024-02-28 12:40:37.688 2024-02-28 12:40:37.688 2100 FEE 441782 19096 6097877 2024-02-28 12:40:37.688 2024-02-28 12:40:37.688 18900 TIP 441782 21342 6097895 2024-02-28 12:41:04.984 2024-02-28 12:41:04.984 1000 FEE 441848 688 6097919 2024-02-28 12:43:38.868 2024-02-28 12:43:38.868 6900 FEE 441843 16193 6097920 2024-02-28 12:43:38.868 2024-02-28 12:43:38.868 62100 TIP 441843 7553 6097942 2024-02-28 12:43:57.021 2024-02-28 12:43:57.021 1000 FEE 441852 18271 6097972 2024-02-28 12:47:00.51 2024-02-28 12:47:00.51 6400 FEE 441843 18892 6097973 2024-02-28 12:47:00.51 2024-02-28 12:47:00.51 57600 TIP 441843 3342 6097987 2024-02-28 12:47:12.65 2024-02-28 12:47:12.65 1100 FEE 441247 17708 6097988 2024-02-28 12:47:12.65 2024-02-28 12:47:12.65 9900 TIP 441247 18837 6098043 2024-02-28 12:47:42.295 2024-02-28 12:47:42.295 1000 FEE 441853 18230 6098097 2024-02-28 12:49:23.88 2024-02-28 12:49:23.88 1000 FEE 441600 9276 6098098 2024-02-28 12:49:23.88 2024-02-28 12:49:23.88 9000 TIP 441600 9347 6098100 2024-02-28 12:49:40.1 2024-02-28 12:49:40.1 9000 FEE 441823 19557 6098101 2024-02-28 12:49:40.1 2024-02-28 12:49:40.1 81000 TIP 441823 21398 6098105 2024-02-28 12:50:21.408 2024-02-28 12:50:21.408 1000 FEE 441857 12261 6098112 2024-02-28 12:51:47.507 2024-02-28 12:51:47.507 3200 FEE 441843 718 6098113 2024-02-28 12:51:47.507 2024-02-28 12:51:47.507 28800 TIP 441843 16912 6098114 2024-02-28 12:51:55.489 2024-02-28 12:51:55.489 1600 FEE 441854 16447 6098115 2024-02-28 12:51:55.489 2024-02-28 12:51:55.489 14400 TIP 441854 17722 6098129 2024-02-28 12:53:06.896 2024-02-28 12:53:06.896 1000 POLL 441333 10731 6098149 2024-02-28 12:55:20.056 2024-02-28 12:55:20.056 1000 FEE 441865 17321 6098200 2024-02-28 13:01:35.392 2024-02-28 13:01:35.392 100000 FEE 441875 17797 6098225 2024-02-28 13:03:22.724 2024-02-28 13:03:22.724 1000 FEE 441878 5003 6098244 2024-02-28 13:04:53.613 2024-02-28 13:04:53.613 100 FEE 441854 11716 6098245 2024-02-28 13:04:53.613 2024-02-28 13:04:53.613 900 TIP 441854 11999 6098261 2024-02-28 13:05:15.162 2024-02-28 13:05:15.162 100 FEE 441881 12334 6098262 2024-02-28 13:05:15.162 2024-02-28 13:05:15.162 900 TIP 441881 15266 6098313 2024-02-28 13:07:00.998 2024-02-28 13:07:00.998 900 FEE 441804 18529 6098314 2024-02-28 13:07:00.998 2024-02-28 13:07:00.998 8100 TIP 441804 18583 6098328 2024-02-28 13:07:07.532 2024-02-28 13:07:07.532 100 FEE 441847 9363 6098329 2024-02-28 13:07:07.532 2024-02-28 13:07:07.532 900 TIP 441847 7998 6098345 2024-02-28 13:08:20.204 2024-02-28 13:08:20.204 0 FEE 441885 19320 6098351 2024-02-28 13:08:42.801 2024-02-28 13:08:42.801 100 FEE 441866 12774 6098352 2024-02-28 13:08:42.801 2024-02-28 13:08:42.801 900 TIP 441866 1959 6098357 2024-02-28 13:09:12.984 2024-02-28 13:09:12.984 100 FEE 441533 11621 6098358 2024-02-28 13:09:12.984 2024-02-28 13:09:12.984 900 TIP 441533 21532 6098361 2024-02-28 13:09:16.031 2024-02-28 13:09:16.031 9000 FEE 441533 11829 6098362 2024-02-28 13:09:16.031 2024-02-28 13:09:16.031 81000 TIP 441533 20434 6098375 2024-02-28 13:10:57.39 2024-02-28 13:10:57.39 5000 FEE 440988 20179 6098376 2024-02-28 13:10:57.39 2024-02-28 13:10:57.39 45000 TIP 440988 6393 6098380 2024-02-28 13:11:38.902 2024-02-28 13:11:38.902 5000 FEE 441828 20117 6098381 2024-02-28 13:11:38.902 2024-02-28 13:11:38.902 45000 TIP 441828 10668 6098384 2024-02-28 13:11:41.382 2024-02-28 13:11:41.382 900 FEE 441613 21159 6098385 2024-02-28 13:11:41.382 2024-02-28 13:11:41.382 8100 TIP 441613 4173 6098394 2024-02-28 13:12:30.619 2024-02-28 13:12:30.619 100000 FEE 441891 9290 6098398 2024-02-28 13:12:59.471 2024-02-28 13:12:59.471 100 FEE 441735 2711 6097579 2024-02-28 12:14:57.536 2024-02-28 12:14:57.536 4500 TIP 441560 16747 6097583 2024-02-28 12:15:21.147 2024-02-28 12:15:21.147 21000 DONT_LIKE_THIS 441810 2942 6097609 2024-02-28 12:18:43.762 2024-02-28 12:18:43.762 10000 FEE 441816 889 6097614 2024-02-28 12:19:11.303 2024-02-28 12:19:11.303 1000 FEE 441817 14669 6097626 2024-02-28 12:20:19.331 2024-02-28 12:20:19.331 1000 FEE 441819 4035 6097664 2024-02-28 12:25:07.777 2024-02-28 12:25:07.777 800 FEE 441560 21430 6097665 2024-02-28 12:25:07.777 2024-02-28 12:25:07.777 7200 TIP 441560 17392 6097630 2024-02-28 12:21:27.27 2024-02-28 12:21:27.27 1000 FEE 441820 16653 6097639 2024-02-28 12:21:56.933 2024-02-28 12:21:56.933 0 FEE 441807 7899 6097667 2024-02-28 12:25:21.784 2024-02-28 12:25:21.784 1000 FEE 441824 18736 6097668 2024-02-28 12:25:25.597 2024-02-28 12:25:25.597 1000 FEE 441825 9200 6097675 2024-02-28 12:25:34.799 2024-02-28 12:25:34.799 1100 FEE 441333 18453 6097676 2024-02-28 12:25:34.799 2024-02-28 12:25:34.799 9900 TIP 441333 19690 6097679 2024-02-28 12:25:35.091 2024-02-28 12:25:35.091 5700 FEE 441816 17602 6097680 2024-02-28 12:25:35.091 2024-02-28 12:25:35.091 51300 TIP 441816 1806 6097684 2024-02-28 12:25:51.997 2024-02-28 12:25:51.997 2100 FEE 441705 8729 6097685 2024-02-28 12:25:51.997 2024-02-28 12:25:51.997 18900 TIP 441705 9078 6097714 2024-02-28 12:29:23.118 2024-02-28 12:29:23.118 100000 FEE 434124 10586 6097715 2024-02-28 12:29:23.118 2024-02-28 12:29:23.118 900000 TIP 434124 9796 6097761 2024-02-28 12:36:00.658 2024-02-28 12:36:00.658 7700 FEE 441782 2065 6097762 2024-02-28 12:36:00.658 2024-02-28 12:36:00.658 69300 TIP 441782 18119 6097770 2024-02-28 12:36:09.649 2024-02-28 12:36:09.649 800 FEE 441725 16193 6097771 2024-02-28 12:36:09.649 2024-02-28 12:36:09.649 7200 TIP 441725 16296 6097772 2024-02-28 12:36:32.346 2024-02-28 12:36:32.346 1000 FEE 441838 14939 6097788 2024-02-28 12:37:05.981 2024-02-28 12:37:05.981 2100 FEE 441755 2529 6097789 2024-02-28 12:37:05.981 2024-02-28 12:37:05.981 18900 TIP 441755 7395 6097820 2024-02-28 12:37:33.2 2024-02-28 12:37:33.2 2100 FEE 441707 15159 6097821 2024-02-28 12:37:33.2 2024-02-28 12:37:33.2 18900 TIP 441707 964 6097836 2024-02-28 12:37:40.69 2024-02-28 12:37:40.69 2100 FEE 441771 989 6097837 2024-02-28 12:37:40.69 2024-02-28 12:37:40.69 18900 TIP 441771 21575 6097854 2024-02-28 12:37:51.426 2024-02-28 12:37:51.426 2100 FEE 441721 1632 6097855 2024-02-28 12:37:51.426 2024-02-28 12:37:51.426 18900 TIP 441721 9906 6097880 2024-02-28 12:40:50.144 2024-02-28 12:40:50.144 2100 FEE 441773 20430 6097881 2024-02-28 12:40:50.144 2024-02-28 12:40:50.144 18900 TIP 441773 13599 6097884 2024-02-28 12:40:57.188 2024-02-28 12:40:57.188 2100 FEE 441761 20912 6097885 2024-02-28 12:40:57.188 2024-02-28 12:40:57.188 18900 TIP 441761 20464 6097889 2024-02-28 12:41:04.289 2024-02-28 12:41:04.289 100 FEE 441834 5961 6097890 2024-02-28 12:41:04.289 2024-02-28 12:41:04.289 900 TIP 441834 1310 6097906 2024-02-28 12:41:26.536 2024-02-28 12:41:26.536 1000 FEE 441849 16942 6097909 2024-02-28 12:41:59.669 2024-02-28 12:41:59.669 1000 FEE 441850 19459 6097914 2024-02-28 12:43:34.582 2024-02-28 12:43:34.582 1000 FEE 441851 959 6097938 2024-02-28 12:43:48.679 2024-02-28 12:43:48.679 100000 FEE 441843 14255 6097939 2024-02-28 12:43:48.679 2024-02-28 12:43:48.679 900000 TIP 441843 3392 6097964 2024-02-28 12:46:59.677 2024-02-28 12:46:59.677 1100 FEE 441560 14791 6097965 2024-02-28 12:46:59.677 2024-02-28 12:46:59.677 9900 TIP 441560 20190 6097977 2024-02-28 12:47:03.83 2024-02-28 12:47:03.83 1100 FEE 441660 20090 6097978 2024-02-28 12:47:03.83 2024-02-28 12:47:03.83 9900 TIP 441660 19105 6097997 2024-02-28 12:47:24.647 2024-02-28 12:47:24.647 1100 FEE 441843 20156 6097998 2024-02-28 12:47:24.647 2024-02-28 12:47:24.647 9900 TIP 441843 12175 6098005 2024-02-28 12:47:25.167 2024-02-28 12:47:25.167 1100 FEE 441843 20776 6098006 2024-02-28 12:47:25.167 2024-02-28 12:47:25.167 9900 TIP 441843 5449 6098007 2024-02-28 12:47:25.303 2024-02-28 12:47:25.303 1100 FEE 441843 16124 6098008 2024-02-28 12:47:25.303 2024-02-28 12:47:25.303 9900 TIP 441843 6191 6098021 2024-02-28 12:47:28.025 2024-02-28 12:47:28.025 1100 FEE 441843 14278 6098022 2024-02-28 12:47:28.025 2024-02-28 12:47:28.025 9900 TIP 441843 21207 6098066 2024-02-28 12:48:35.621 2024-02-28 12:48:35.621 0 FEE 441853 11938 6098071 2024-02-28 12:48:49.181 2024-02-28 12:48:49.181 15400 FEE 441560 633 6098072 2024-02-28 12:48:49.181 2024-02-28 12:48:49.181 138600 TIP 441560 18736 6098079 2024-02-28 12:48:50.738 2024-02-28 12:48:50.738 7700 FEE 441560 3353 6098080 2024-02-28 12:48:50.738 2024-02-28 12:48:50.738 69300 TIP 441560 5791 6098081 2024-02-28 12:48:50.981 2024-02-28 12:48:50.981 7700 FEE 441560 20799 6098082 2024-02-28 12:48:50.981 2024-02-28 12:48:50.981 69300 TIP 441560 21061 6098091 2024-02-28 12:48:59.284 2024-02-28 12:48:59.284 0 FEE 441853 18402 6098093 2024-02-28 12:49:03.157 2024-02-28 12:49:03.157 3100 FEE 441825 666 6098094 2024-02-28 12:49:03.157 2024-02-28 12:49:03.157 27900 TIP 441825 21339 6098106 2024-02-28 12:50:28.131 2024-02-28 12:50:28.131 0 FEE 441856 1729 6098126 2024-02-28 12:52:53.868 2024-02-28 12:52:53.868 400 FEE 441793 714 6098127 2024-02-28 12:52:53.868 2024-02-28 12:52:53.868 3600 TIP 441793 4225 6098154 2024-02-28 12:55:35.492 2024-02-28 12:55:35.492 100 FEE 441828 18772 6098155 2024-02-28 12:55:35.492 2024-02-28 12:55:35.492 900 TIP 441828 837 6098159 2024-02-28 12:56:09.312 2024-02-28 12:56:09.312 1000 POLL 441333 15063 6098180 2024-02-28 12:58:17.986 2024-02-28 12:58:17.986 0 FEE 441859 714 6098197 2024-02-28 13:01:08.206 2024-02-28 13:01:08.206 10000 FEE 441864 2056 6098198 2024-02-28 13:01:08.206 2024-02-28 13:01:08.206 90000 TIP 441864 18727 6098201 2024-02-28 13:01:39.923 2024-02-28 13:01:39.923 100 FEE 441843 2326 6098202 2024-02-28 13:01:39.923 2024-02-28 13:01:39.923 900 TIP 441843 8360 6098207 2024-02-28 13:01:45.457 2024-02-28 13:01:45.457 90000 FEE 441843 20647 6098208 2024-02-28 13:01:45.457 2024-02-28 13:01:45.457 810000 TIP 441843 17209 6098210 2024-02-28 13:01:57.474 2024-02-28 13:01:57.474 100 FEE 441843 21218 6098211 2024-02-28 13:01:57.474 2024-02-28 13:01:57.474 900 TIP 441843 21379 6098215 2024-02-28 13:02:02.601 2024-02-28 13:02:02.601 10000 FEE 441876 13055 6098228 2024-02-28 13:03:35.996 2024-02-28 13:03:35.996 1000 FEE 441879 2077 6098248 2024-02-28 13:04:54.565 2024-02-28 13:04:54.565 9000 FEE 441854 4062 6098249 2024-02-28 13:04:54.565 2024-02-28 13:04:54.565 81000 TIP 441854 9355 6098259 2024-02-28 13:05:14.57 2024-02-28 13:05:14.57 100 FEE 441881 12261 6098260 2024-02-28 13:05:14.57 2024-02-28 13:05:14.57 900 TIP 441881 15337 6098291 2024-02-28 13:06:31.561 2024-02-28 13:06:31.561 2100 FEE 441773 11477 6098292 2024-02-28 13:06:31.561 2024-02-28 13:06:31.561 18900 TIP 441773 19488 6098309 2024-02-28 13:06:59.85 2024-02-28 13:06:59.85 900 FEE 441789 21344 6098310 2024-02-28 13:06:59.85 2024-02-28 13:06:59.85 8100 TIP 441789 9352 6098311 2024-02-28 13:07:00.807 2024-02-28 13:07:00.807 100 FEE 441804 20710 6098312 2024-02-28 13:07:00.807 2024-02-28 13:07:00.807 900 TIP 441804 1959 6098319 2024-02-28 13:07:03.334 2024-02-28 13:07:03.334 100 FEE 441838 9758 6098320 2024-02-28 13:07:03.334 2024-02-28 13:07:03.334 900 TIP 441838 20026 6097681 2024-02-28 12:25:39.298 2024-02-28 12:25:39.298 0 FEE 441823 20018 6097689 2024-02-28 12:26:23.616 2024-02-28 12:26:23.616 1000 FEE 441794 16126 6097690 2024-02-28 12:26:23.616 2024-02-28 12:26:23.616 9000 TIP 441794 4395 6097695 2024-02-28 12:26:24.944 2024-02-28 12:26:24.944 1000 FEE 441794 4062 6097696 2024-02-28 12:26:24.944 2024-02-28 12:26:24.944 9000 TIP 441794 5377 6097699 2024-02-28 12:26:25.328 2024-02-28 12:26:25.328 1000 FEE 441794 13169 6097700 2024-02-28 12:26:25.328 2024-02-28 12:26:25.328 9000 TIP 441794 18529 6097710 2024-02-28 12:28:05.62 2024-02-28 12:28:05.62 2100 FEE 441825 21320 6097711 2024-02-28 12:28:05.62 2024-02-28 12:28:05.62 18900 TIP 441825 2151 6097718 2024-02-28 12:29:37.012 2024-02-28 12:29:37.012 1000 FEE 441830 20854 6097719 2024-02-28 12:29:57.584 2024-02-28 12:29:57.584 1000 FEE 441831 8945 6097727 2024-02-28 12:32:16.333 2024-02-28 12:32:16.333 0 FEE 441828 21540 6097739 2024-02-28 12:33:30.236 2024-02-28 12:33:30.236 6900 FEE 441717 13927 6097740 2024-02-28 12:33:30.236 2024-02-28 12:33:30.236 62100 TIP 441717 20564 6097754 2024-02-28 12:35:05.727 2024-02-28 12:35:05.727 2100 FEE 441802 18262 6097755 2024-02-28 12:35:05.727 2024-02-28 12:35:05.727 18900 TIP 441802 21563 6097756 2024-02-28 12:35:35.565 2024-02-28 12:35:35.565 800 FEE 441765 11158 6097757 2024-02-28 12:35:35.565 2024-02-28 12:35:35.565 7200 TIP 441765 1120 6097773 2024-02-28 12:36:49.249 2024-02-28 12:36:49.249 1000 FEE 441839 18817 6097792 2024-02-28 12:37:16.009 2024-02-28 12:37:16.009 2100 FEE 441747 798 6097793 2024-02-28 12:37:16.009 2024-02-28 12:37:16.009 18900 TIP 441747 18500 6097800 2024-02-28 12:37:20.748 2024-02-28 12:37:20.748 2100 FEE 441725 18178 6097801 2024-02-28 12:37:20.748 2024-02-28 12:37:20.748 18900 TIP 441725 18736 6097804 2024-02-28 12:37:23.797 2024-02-28 12:37:23.797 77000 DONT_LIKE_THIS 441802 6041 6097848 2024-02-28 12:37:47.925 2024-02-28 12:37:47.925 2100 FEE 441798 1959 6097849 2024-02-28 12:37:47.925 2024-02-28 12:37:47.925 18900 TIP 441798 17275 6097868 2024-02-28 12:40:22.526 2024-02-28 12:40:22.526 2100 FEE 441816 17522 6097869 2024-02-28 12:40:22.526 2024-02-28 12:40:22.526 18900 TIP 441816 20084 6097872 2024-02-28 12:40:24.775 2024-02-28 12:40:24.775 2100 FEE 441815 14857 6097873 2024-02-28 12:40:24.775 2024-02-28 12:40:24.775 18900 TIP 441815 12951 6097882 2024-02-28 12:40:55.136 2024-02-28 12:40:55.136 2100 FEE 441763 8498 6097883 2024-02-28 12:40:55.136 2024-02-28 12:40:55.136 18900 TIP 441763 21451 6097886 2024-02-28 12:41:01.097 2024-02-28 12:41:01.097 3000 FEE 441843 963 6097887 2024-02-28 12:41:01.097 2024-02-28 12:41:01.097 27000 TIP 441843 20717 6097891 2024-02-28 12:41:04.547 2024-02-28 12:41:04.547 100 FEE 441834 1772 6097892 2024-02-28 12:41:04.547 2024-02-28 12:41:04.547 900 TIP 441834 19346 6097893 2024-02-28 12:41:04.786 2024-02-28 12:41:04.786 100 FEE 441834 21062 6097894 2024-02-28 12:41:04.786 2024-02-28 12:41:04.786 900 TIP 441834 891 6097902 2024-02-28 12:41:21.855 2024-02-28 12:41:21.855 2100 FEE 441742 2437 6097903 2024-02-28 12:41:21.855 2024-02-28 12:41:21.855 18900 TIP 441742 3396 6097917 2024-02-28 12:43:38.853 2024-02-28 12:43:38.853 6900 FEE 441843 7992 6097918 2024-02-28 12:43:38.853 2024-02-28 12:43:38.853 62100 TIP 441843 21044 6097925 2024-02-28 12:43:39.806 2024-02-28 12:43:39.806 6900 FEE 441843 1433 6097926 2024-02-28 12:43:39.806 2024-02-28 12:43:39.806 62100 TIP 441843 18177 6097968 2024-02-28 12:46:59.963 2024-02-28 12:46:59.963 1100 FEE 441560 11898 6097969 2024-02-28 12:46:59.963 2024-02-28 12:46:59.963 9900 TIP 441560 18877 6097970 2024-02-28 12:47:00.12 2024-02-28 12:47:00.12 1100 FEE 441560 20340 6097971 2024-02-28 12:47:00.12 2024-02-28 12:47:00.12 9900 TIP 441560 5449 6097981 2024-02-28 12:47:04.518 2024-02-28 12:47:04.518 1100 FEE 441660 12768 6097982 2024-02-28 12:47:04.518 2024-02-28 12:47:04.518 9900 TIP 441660 16839 6097983 2024-02-28 12:47:04.939 2024-02-28 12:47:04.939 1100 FEE 441660 7675 6097984 2024-02-28 12:47:04.939 2024-02-28 12:47:04.939 9900 TIP 441660 15060 6097993 2024-02-28 12:47:13.755 2024-02-28 12:47:13.755 5000 FEE 441845 15560 6097994 2024-02-28 12:47:13.755 2024-02-28 12:47:13.755 45000 TIP 441845 21339 6098011 2024-02-28 12:47:25.568 2024-02-28 12:47:25.568 1100 FEE 441843 8284 6098012 2024-02-28 12:47:25.568 2024-02-28 12:47:25.568 9900 TIP 441843 15890 6098023 2024-02-28 12:47:28.167 2024-02-28 12:47:28.167 1100 FEE 441843 8544 6098024 2024-02-28 12:47:28.167 2024-02-28 12:47:28.167 9900 TIP 441843 16296 6098027 2024-02-28 12:47:28.415 2024-02-28 12:47:28.415 1100 FEE 441843 10280 6098028 2024-02-28 12:47:28.415 2024-02-28 12:47:28.415 9900 TIP 441843 11523 6098041 2024-02-28 12:47:29.947 2024-02-28 12:47:29.947 1100 FEE 441843 6421 6098042 2024-02-28 12:47:29.947 2024-02-28 12:47:29.947 9900 TIP 441843 18220 6098046 2024-02-28 12:48:01.141 2024-02-28 12:48:01.141 27900 FEE 441749 19507 6098047 2024-02-28 12:48:01.141 2024-02-28 12:48:01.141 251100 TIP 441749 659 6098049 2024-02-28 12:48:16.603 2024-02-28 12:48:16.603 1000000 FEE 441854 17522 6098107 2024-02-28 12:50:52.112 2024-02-28 12:50:52.112 100000 FEE 441858 15697 6098109 2024-02-28 12:51:07.331 2024-02-28 12:51:07.331 0 FEE 441853 1273 6098136 2024-02-28 12:54:13.459 2024-02-28 12:54:13.459 3300 FEE 441851 5527 6098137 2024-02-28 12:54:13.459 2024-02-28 12:54:13.459 29700 TIP 441851 5293 6098146 2024-02-28 12:55:15.832 2024-02-28 12:55:15.832 0 FEE 441859 15271 6098160 2024-02-28 12:57:01.462 2024-02-28 12:57:01.462 0 FEE 441859 18372 6098165 2024-02-28 12:57:23.785 2024-02-28 12:57:23.785 0 FEE 441867 21216 6098177 2024-02-28 12:58:13.202 2024-02-28 12:58:13.202 1000 FEE 441843 1564 6098178 2024-02-28 12:58:13.202 2024-02-28 12:58:13.202 9000 TIP 441843 5444 6098205 2024-02-28 13:01:43.542 2024-02-28 13:01:43.542 9000 FEE 441843 6393 6098206 2024-02-28 13:01:43.542 2024-02-28 13:01:43.542 81000 TIP 441843 4378 6098218 2024-02-28 13:02:06.263 2024-02-28 13:02:06.263 900 FEE 441783 16717 6098219 2024-02-28 13:02:06.263 2024-02-28 13:02:06.263 8100 TIP 441783 994 6098226 2024-02-28 13:03:25.781 2024-02-28 13:03:25.781 1000 DONT_LIKE_THIS 441856 2029 6098273 2024-02-28 13:05:33.545 2024-02-28 13:05:33.545 10000 DONT_LIKE_THIS 441806 1729 6098287 2024-02-28 13:06:02.23 2024-02-28 13:06:02.23 1000 FEE 441883 622 6098296 2024-02-28 13:06:47.476 2024-02-28 13:06:47.476 1000 FEE 441886 20837 6098297 2024-02-28 13:06:50.557 2024-02-28 13:06:50.557 100 FEE 441782 5825 6098298 2024-02-28 13:06:50.557 2024-02-28 13:06:50.557 900 TIP 441782 17494 6098305 2024-02-28 13:06:58.657 2024-02-28 13:06:58.657 900 FEE 441784 6160 6098306 2024-02-28 13:06:58.657 2024-02-28 13:06:58.657 8100 TIP 441784 20911 6098307 2024-02-28 13:06:59.63 2024-02-28 13:06:59.63 100 FEE 441789 1697 6098308 2024-02-28 13:06:59.63 2024-02-28 13:06:59.63 900 TIP 441789 21292 6098332 2024-02-28 13:07:08.142 2024-02-28 13:07:08.142 1000 FEE 441887 16556 6098344 2024-02-28 13:08:15.138 2024-02-28 13:08:15.138 1000 FEE 441888 9349 6098368 2024-02-28 13:10:15.008 2024-02-28 13:10:15.008 10000 DONT_LIKE_THIS 441564 12097 6098382 2024-02-28 13:11:41.13 2024-02-28 13:11:41.13 100 FEE 441613 7913 6098383 2024-02-28 13:11:41.13 2024-02-28 13:11:41.13 900 TIP 441613 13398 6098388 2024-02-28 13:11:56.852 2024-02-28 13:11:56.852 5000 FEE 441176 6594 6098389 2024-02-28 13:11:56.852 2024-02-28 13:11:56.852 45000 TIP 441176 13781 6098396 2024-02-28 13:12:56.308 2024-02-28 13:12:56.308 10000 FEE 441857 1120 6098397 2024-02-28 13:12:56.308 2024-02-28 13:12:56.308 90000 TIP 441857 1237 6098418 2024-02-28 13:13:31.417 2024-02-28 13:13:31.417 1000 FEE 441891 18637 6098419 2024-02-28 13:13:31.417 2024-02-28 13:13:31.417 9000 TIP 441891 9307 6097745 2024-02-28 12:34:35.148 2024-02-28 12:34:35.148 2100 FEE 441832 2711 6097746 2024-02-28 12:34:35.148 2024-02-28 12:34:35.148 18900 TIP 441832 21131 6097748 2024-02-28 12:34:40.182 2024-02-28 12:34:40.182 0 FEE 441835 16939 6097802 2024-02-28 12:37:22.202 2024-02-28 12:37:22.202 2100 FEE 441719 19037 6097803 2024-02-28 12:37:22.202 2024-02-28 12:37:22.202 18900 TIP 441719 19332 6097807 2024-02-28 12:37:27.255 2024-02-28 12:37:27.255 2100 FEE 441710 19533 6097808 2024-02-28 12:37:27.255 2024-02-28 12:37:27.255 18900 TIP 441710 20717 6097809 2024-02-28 12:37:28.84 2024-02-28 12:37:28.84 2100 FEE 441701 5776 6097810 2024-02-28 12:37:28.84 2024-02-28 12:37:28.84 18900 TIP 441701 20504 6097811 2024-02-28 12:37:29.629 2024-02-28 12:37:29.629 2100 FEE 441739 21374 6097812 2024-02-28 12:37:29.629 2024-02-28 12:37:29.629 18900 TIP 441739 925 6097825 2024-02-28 12:37:35.806 2024-02-28 12:37:35.806 2100 FEE 441699 27 6097826 2024-02-28 12:37:35.806 2024-02-28 12:37:35.806 18900 TIP 441699 4128 6097829 2024-02-28 12:37:38.505 2024-02-28 12:37:38.505 2100 FEE 441738 19286 6097830 2024-02-28 12:37:38.505 2024-02-28 12:37:38.505 18900 TIP 441738 4238 6097840 2024-02-28 12:37:44.227 2024-02-28 12:37:44.227 2100 FEE 441839 19021 6097841 2024-02-28 12:37:44.227 2024-02-28 12:37:44.227 18900 TIP 441839 16176 6097896 2024-02-28 12:41:05.08 2024-02-28 12:41:05.08 100 FEE 441834 16513 6097897 2024-02-28 12:41:05.08 2024-02-28 12:41:05.08 900 TIP 441834 20222 6097933 2024-02-28 12:43:41.469 2024-02-28 12:43:41.469 6900 FEE 441843 6300 6097934 2024-02-28 12:43:41.469 2024-02-28 12:43:41.469 62100 TIP 441843 844 6097956 2024-02-28 12:46:26.391 2024-02-28 12:46:26.391 1000 FEE 441749 20006 6097957 2024-02-28 12:46:26.391 2024-02-28 12:46:26.391 9000 TIP 441749 18372 6097962 2024-02-28 12:46:59.603 2024-02-28 12:46:59.603 1100 FEE 441560 19446 6097963 2024-02-28 12:46:59.603 2024-02-28 12:46:59.603 9900 TIP 441560 15577 6097966 2024-02-28 12:46:59.849 2024-02-28 12:46:59.849 1100 FEE 441560 12774 6097967 2024-02-28 12:46:59.849 2024-02-28 12:46:59.849 9900 TIP 441560 14545 6097979 2024-02-28 12:47:04.03 2024-02-28 12:47:04.03 1100 FEE 441660 7760 6097980 2024-02-28 12:47:04.03 2024-02-28 12:47:04.03 9900 TIP 441660 20911 6097999 2024-02-28 12:47:24.775 2024-02-28 12:47:24.775 1100 FEE 441843 18629 6098000 2024-02-28 12:47:24.775 2024-02-28 12:47:24.775 9900 TIP 441843 20816 6098001 2024-02-28 12:47:24.9 2024-02-28 12:47:24.9 1100 FEE 441843 4102 6098002 2024-02-28 12:47:24.9 2024-02-28 12:47:24.9 9900 TIP 441843 19852 6098003 2024-02-28 12:47:25.033 2024-02-28 12:47:25.033 1100 FEE 441843 6741 6098004 2024-02-28 12:47:25.033 2024-02-28 12:47:25.033 9900 TIP 441843 3656 6098009 2024-02-28 12:47:25.438 2024-02-28 12:47:25.438 1100 FEE 441843 18225 6098010 2024-02-28 12:47:25.438 2024-02-28 12:47:25.438 9900 TIP 441843 17226 6098013 2024-02-28 12:47:25.706 2024-02-28 12:47:25.706 1100 FEE 441843 9427 6098014 2024-02-28 12:47:25.706 2024-02-28 12:47:25.706 9900 TIP 441843 20509 6098025 2024-02-28 12:47:28.276 2024-02-28 12:47:28.276 1100 FEE 441843 5171 6098026 2024-02-28 12:47:28.276 2024-02-28 12:47:28.276 9900 TIP 441843 9552 6098029 2024-02-28 12:47:28.58 2024-02-28 12:47:28.58 1100 FEE 441843 11378 6098030 2024-02-28 12:47:28.58 2024-02-28 12:47:28.58 9900 TIP 441843 9171 6098035 2024-02-28 12:47:29.402 2024-02-28 12:47:29.402 2200 FEE 441843 20509 6098036 2024-02-28 12:47:29.402 2024-02-28 12:47:29.402 19800 TIP 441843 17927 6098044 2024-02-28 12:47:57.902 2024-02-28 12:47:57.902 3100 FEE 441749 1320 6098045 2024-02-28 12:47:57.902 2024-02-28 12:47:57.902 27900 TIP 441749 19126 6098060 2024-02-28 12:48:28.487 2024-02-28 12:48:28.487 7700 FEE 441843 20023 6098061 2024-02-28 12:48:28.487 2024-02-28 12:48:28.487 69300 TIP 441843 11609 6098087 2024-02-28 12:48:51.349 2024-02-28 12:48:51.349 7700 FEE 441560 20669 6098088 2024-02-28 12:48:51.349 2024-02-28 12:48:51.349 69300 TIP 441560 15941 6098099 2024-02-28 12:49:34.313 2024-02-28 12:49:34.313 1000 FEE 441855 16355 6098116 2024-02-28 12:51:59.626 2024-02-28 12:51:59.626 1000 FEE 441859 669 6098123 2024-02-28 12:52:48.114 2024-02-28 12:52:48.114 0 FEE 441859 15266 6098124 2024-02-28 12:52:50.268 2024-02-28 12:52:50.268 400 FEE 441513 1628 6098125 2024-02-28 12:52:50.268 2024-02-28 12:52:50.268 3600 TIP 441513 6164 6098140 2024-02-28 12:54:58.931 2024-02-28 12:54:58.931 1000 FEE 441864 1650 6098192 2024-02-28 13:00:04.971 2024-02-28 13:00:04.971 100000 FEE 441872 5175 6098199 2024-02-28 13:01:29.085 2024-02-28 13:01:29.085 0 FEE 441871 20701 6098220 2024-02-28 13:02:06.979 2024-02-28 13:02:06.979 0 FEE 441871 8037 6098221 2024-02-28 13:02:54.974 2024-02-28 13:02:54.974 5700 FEE 441871 891 6098222 2024-02-28 13:02:54.974 2024-02-28 13:02:54.974 51300 TIP 441871 9333 6098224 2024-02-28 13:03:05.739 2024-02-28 13:03:05.739 1000 FEE 441877 12774 6098239 2024-02-28 13:04:17.103 2024-02-28 13:04:17.103 1000 FEE 441882 5495 6098246 2024-02-28 13:04:53.807 2024-02-28 13:04:53.807 900 FEE 441854 20816 6098247 2024-02-28 13:04:53.807 2024-02-28 13:04:53.807 8100 TIP 441854 20963 6098282 2024-02-28 13:05:58.987 2024-02-28 13:05:58.987 9000 FEE 441773 4989 6098283 2024-02-28 13:05:58.987 2024-02-28 13:05:58.987 81000 TIP 441773 660 6098337 2024-02-28 13:07:33.9 2024-02-28 13:07:33.9 1000 FEE 441238 1628 6098338 2024-02-28 13:07:33.9 2024-02-28 13:07:33.9 9000 TIP 441238 5497 6098339 2024-02-28 13:07:51.451 2024-02-28 13:07:51.451 100 FEE 441602 6327 6098340 2024-02-28 13:07:51.451 2024-02-28 13:07:51.451 900 TIP 441602 687 6098341 2024-02-28 13:07:51.645 2024-02-28 13:07:51.645 900 FEE 441602 11073 6098342 2024-02-28 13:07:51.645 2024-02-28 13:07:51.645 8100 TIP 441602 882 6098359 2024-02-28 13:09:13.372 2024-02-28 13:09:13.372 900 FEE 441533 10979 6098360 2024-02-28 13:09:13.372 2024-02-28 13:09:13.372 8100 TIP 441533 1605 6098364 2024-02-28 13:09:59.112 2024-02-28 13:09:59.112 2100 FEE 441882 7418 6098365 2024-02-28 13:09:59.112 2024-02-28 13:09:59.112 18900 TIP 441882 889 6098367 2024-02-28 13:10:13.719 2024-02-28 13:10:13.719 0 FEE 441884 4989 6098393 2024-02-28 13:12:24.374 2024-02-28 13:12:24.374 5000 FEE 441890 19154 6098402 2024-02-28 13:13:00.621 2024-02-28 13:13:00.621 9000 FEE 441735 2329 6098403 2024-02-28 13:13:00.621 2024-02-28 13:13:00.621 81000 TIP 441735 9184 6098405 2024-02-28 13:13:03.566 2024-02-28 13:13:03.566 0 FEE 441892 664 6098408 2024-02-28 13:13:03.853 2024-02-28 13:13:03.853 900 FEE 441718 18626 6098409 2024-02-28 13:13:03.853 2024-02-28 13:13:03.853 8100 TIP 441718 18402 6097913 2024-02-28 12:43:02.301 2024-02-28 12:43:02.301 1000 STREAM 141924 20710 6097948 2024-02-28 12:45:02.322 2024-02-28 12:45:02.322 1000 STREAM 141924 5487 6097944 2024-02-28 12:44:05.766 2024-02-28 12:44:05.766 3100 FEE 441731 21379 6097945 2024-02-28 12:44:05.766 2024-02-28 12:44:05.766 27900 TIP 441731 7766 6097960 2024-02-28 12:46:58.71 2024-02-28 12:46:58.71 1100 FEE 441238 1602 6097961 2024-02-28 12:46:58.71 2024-02-28 12:46:58.71 9900 TIP 441238 3213 6098015 2024-02-28 12:47:25.863 2024-02-28 12:47:25.863 1100 FEE 441843 20094 6098016 2024-02-28 12:47:25.863 2024-02-28 12:47:25.863 9900 TIP 441843 8376 6098017 2024-02-28 12:47:25.99 2024-02-28 12:47:25.99 1100 FEE 441843 2749 6098018 2024-02-28 12:47:25.99 2024-02-28 12:47:25.99 9900 TIP 441843 21048 6098033 2024-02-28 12:47:29.037 2024-02-28 12:47:29.037 1100 FEE 441843 20603 6098034 2024-02-28 12:47:29.037 2024-02-28 12:47:29.037 9900 TIP 441843 722 6098054 2024-02-28 12:48:27.891 2024-02-28 12:48:27.891 7700 FEE 441843 16808 6098055 2024-02-28 12:48:27.891 2024-02-28 12:48:27.891 69300 TIP 441843 5455 6098058 2024-02-28 12:48:28.443 2024-02-28 12:48:28.443 7700 FEE 441843 5791 6098059 2024-02-28 12:48:28.443 2024-02-28 12:48:28.443 69300 TIP 441843 19398 6098064 2024-02-28 12:48:30.067 2024-02-28 12:48:30.067 5700 FEE 441843 7891 6098065 2024-02-28 12:48:30.067 2024-02-28 12:48:30.067 51300 TIP 441843 9845 6098073 2024-02-28 12:48:49.417 2024-02-28 12:48:49.417 7700 FEE 441560 20187 6098074 2024-02-28 12:48:49.417 2024-02-28 12:48:49.417 69300 TIP 441560 21405 6098075 2024-02-28 12:48:49.627 2024-02-28 12:48:49.627 7700 FEE 441560 18663 6098076 2024-02-28 12:48:49.627 2024-02-28 12:48:49.627 69300 TIP 441560 617 6098085 2024-02-28 12:48:51.228 2024-02-28 12:48:51.228 7700 FEE 441560 18930 6098086 2024-02-28 12:48:51.228 2024-02-28 12:48:51.228 69300 TIP 441560 3544 6098095 2024-02-28 12:49:18.719 2024-02-28 12:49:18.719 3100 FEE 441829 20225 6098096 2024-02-28 12:49:18.719 2024-02-28 12:49:18.719 27900 TIP 441829 7418 6098102 2024-02-28 12:49:44.721 2024-02-28 12:49:44.721 1000 FEE 441856 16485 6098118 2024-02-28 12:52:18.825 2024-02-28 12:52:18.825 1000 FEE 441860 1310 6098142 2024-02-28 12:55:09.256 2024-02-28 12:55:09.256 100 FEE 441858 21064 6098143 2024-02-28 12:55:09.256 2024-02-28 12:55:09.256 900 TIP 441858 5057 6098168 2024-02-28 12:57:31.574 2024-02-28 12:57:31.574 4200 FEE 441854 675 6098169 2024-02-28 12:57:31.574 2024-02-28 12:57:31.574 37800 TIP 441854 1044 6098194 2024-02-28 13:00:25.098 2024-02-28 13:00:25.098 1000 FEE 441874 20616 6098216 2024-02-28 13:02:06.112 2024-02-28 13:02:06.112 100 FEE 441783 20023 6098217 2024-02-28 13:02:06.112 2024-02-28 13:02:06.112 900 TIP 441783 680 6098242 2024-02-28 13:04:30.837 2024-02-28 13:04:30.837 2100 FEE 441858 17124 6098243 2024-02-28 13:04:30.837 2024-02-28 13:04:30.837 18900 TIP 441858 20616 6098274 2024-02-28 13:05:46.012 2024-02-28 13:05:46.012 100 FEE 441742 19463 6098275 2024-02-28 13:05:46.012 2024-02-28 13:05:46.012 900 TIP 441742 7986 6098280 2024-02-28 13:05:54.928 2024-02-28 13:05:54.928 900 FEE 441773 2942 6098281 2024-02-28 13:05:54.928 2024-02-28 13:05:54.928 8100 TIP 441773 20660 6098284 2024-02-28 13:05:59.921 2024-02-28 13:05:59.921 90000 FEE 441773 19154 6098285 2024-02-28 13:05:59.921 2024-02-28 13:05:59.921 810000 TIP 441773 20276 6098288 2024-02-28 13:06:15.527 2024-02-28 13:06:15.527 2100 FEE 441749 17046 6098289 2024-02-28 13:06:15.527 2024-02-28 13:06:15.527 18900 TIP 441749 21391 6098293 2024-02-28 13:06:40.278 2024-02-28 13:06:40.278 100 FEE 441875 19668 6098294 2024-02-28 13:06:40.278 2024-02-28 13:06:40.278 900 TIP 441875 8173 6098315 2024-02-28 13:07:02.05 2024-02-28 13:07:02.05 100 FEE 441820 17212 6098316 2024-02-28 13:07:02.05 2024-02-28 13:07:02.05 900 TIP 441820 20596 6098110 2024-02-28 12:51:12.619 2024-02-28 12:51:12.619 0 FEE 441856 2367 6098111 2024-02-28 12:51:23.531 2024-02-28 12:51:23.531 0 FEE 441853 19637 6098134 2024-02-28 12:54:01.119 2024-02-28 12:54:01.119 0 FEE 441859 715 6098138 2024-02-28 12:54:29.563 2024-02-28 12:54:29.563 0 FEE 441859 11515 6098147 2024-02-28 12:55:17.165 2024-02-28 12:55:17.165 100 FEE 441846 5779 6098148 2024-02-28 12:55:17.165 2024-02-28 12:55:17.165 900 TIP 441846 1751 6098152 2024-02-28 12:55:26.425 2024-02-28 12:55:26.425 100 FEE 441832 11165 6098153 2024-02-28 12:55:26.425 2024-02-28 12:55:26.425 900 TIP 441832 17722 6098162 2024-02-28 12:57:07.466 2024-02-28 12:57:07.466 210000 FEE 441866 678 6098164 2024-02-28 12:57:10.127 2024-02-28 12:57:10.127 1000 FEE 441867 2056 6098166 2024-02-28 12:57:28.241 2024-02-28 12:57:28.241 2100 FEE 441865 18311 6098167 2024-02-28 12:57:28.241 2024-02-28 12:57:28.241 18900 TIP 441865 17157 6098172 2024-02-28 12:58:00.394 2024-02-28 12:58:00.394 2100 FEE 441853 2681 6098173 2024-02-28 12:58:00.394 2024-02-28 12:58:00.394 18900 TIP 441853 7673 6098175 2024-02-28 12:58:11.981 2024-02-28 12:58:11.981 1000 FEE 441854 16788 6098176 2024-02-28 12:58:11.981 2024-02-28 12:58:11.981 9000 TIP 441854 13763 6098179 2024-02-28 12:58:17.681 2024-02-28 12:58:17.681 10000 FEE 441868 21485 6098181 2024-02-28 12:58:25.781 2024-02-28 12:58:25.781 10000 FEE 441869 1624 6098184 2024-02-28 12:58:28.311 2024-02-28 12:58:28.311 100 FEE 441816 3440 6098185 2024-02-28 12:58:28.311 2024-02-28 12:58:28.311 900 TIP 441816 954 6098186 2024-02-28 12:58:34.877 2024-02-28 12:58:34.877 2100 FEE 435944 14705 6098187 2024-02-28 12:58:34.877 2024-02-28 12:58:34.877 18900 TIP 435944 3979 6098195 2024-02-28 13:00:58.08 2024-02-28 13:00:58.08 0 FEE 441871 6202 6098254 2024-02-28 13:05:00.673 2024-02-28 13:05:00.673 9000 FEE 441660 10409 6098255 2024-02-28 13:05:00.673 2024-02-28 13:05:00.673 81000 TIP 441660 8648 6098256 2024-02-28 13:05:02.386 2024-02-28 13:05:02.386 2100 FEE 441832 6268 6098257 2024-02-28 13:05:02.386 2024-02-28 13:05:02.386 18900 TIP 441832 8472 6098278 2024-02-28 13:05:54.69 2024-02-28 13:05:54.69 100 FEE 441773 9354 6098279 2024-02-28 13:05:54.69 2024-02-28 13:05:54.69 900 TIP 441773 18873 6098295 2024-02-28 13:06:42.399 2024-02-28 13:06:42.399 1000 FEE 441885 1609 6098301 2024-02-28 13:06:51.855 2024-02-28 13:06:51.855 9000 FEE 441782 2330 6098302 2024-02-28 13:06:51.855 2024-02-28 13:06:51.855 81000 TIP 441782 15409 6098330 2024-02-28 13:07:07.664 2024-02-28 13:07:07.664 900 FEE 441847 7809 6098331 2024-02-28 13:07:07.664 2024-02-28 13:07:07.664 8100 TIP 441847 5757 6098335 2024-02-28 13:07:19.693 2024-02-28 13:07:19.693 1200 FEE 441887 20306 6098336 2024-02-28 13:07:19.693 2024-02-28 13:07:19.693 10800 TIP 441887 7916 6098349 2024-02-28 13:08:35.778 2024-02-28 13:08:35.778 100 FEE 441868 2703 6098350 2024-02-28 13:08:35.778 2024-02-28 13:08:35.778 900 TIP 441868 7772 6098468 2024-02-28 13:17:01.305 2024-02-28 13:17:01.305 2100 FEE 441610 805 6098469 2024-02-28 13:17:01.305 2024-02-28 13:17:01.305 18900 TIP 441610 999 6098493 2024-02-28 13:21:05.364 2024-02-28 13:21:05.364 3400 FEE 441749 1105 6098494 2024-02-28 13:21:05.364 2024-02-28 13:21:05.364 30600 TIP 441749 18378 6098511 2024-02-28 13:22:42.357 2024-02-28 13:22:42.357 1000 FEE 441903 20168 6098519 2024-02-28 13:23:32.55 2024-02-28 13:23:32.55 0 FEE 441903 664 6098532 2024-02-28 13:25:19.301 2024-02-28 13:25:19.301 500 FEE 441076 19151 6098533 2024-02-28 13:25:19.301 2024-02-28 13:25:19.301 4500 TIP 441076 678 6098536 2024-02-28 13:25:30.095 2024-02-28 13:25:30.095 1000 FEE 441660 6421 6098537 2024-02-28 13:25:30.095 2024-02-28 13:25:30.095 9000 TIP 441660 666 6098544 2024-02-28 13:26:15.945 2024-02-28 13:26:15.945 0 FEE 441909 21048 6098547 2024-02-28 13:26:32.128 2024-02-28 13:26:32.128 1000 FEE 441854 19570 6098548 2024-02-28 13:26:32.128 2024-02-28 13:26:32.128 9000 TIP 441854 705 6098549 2024-02-28 13:26:34.136 2024-02-28 13:26:34.136 1000 FEE 441773 21527 6098550 2024-02-28 13:26:34.136 2024-02-28 13:26:34.136 9000 TIP 441773 18774 6098566 2024-02-28 13:27:17.07 2024-02-28 13:27:17.07 2100 FEE 441854 14503 6098567 2024-02-28 13:27:17.07 2024-02-28 13:27:17.07 18900 TIP 441854 1433 6098581 2024-02-28 13:27:49.497 2024-02-28 13:27:49.497 100 FEE 440703 19333 6098582 2024-02-28 13:27:49.497 2024-02-28 13:27:49.497 900 TIP 440703 9346 6098594 2024-02-28 13:29:17.891 2024-02-28 13:29:17.891 1000 FEE 441916 15139 6098599 2024-02-28 13:29:21.928 2024-02-28 13:29:21.928 5000 FEE 441887 18219 6098600 2024-02-28 13:29:21.928 2024-02-28 13:29:21.928 45000 TIP 441887 7418 6098609 2024-02-28 13:30:30.288 2024-02-28 13:30:30.288 2700 FEE 441533 5661 6098610 2024-02-28 13:30:30.288 2024-02-28 13:30:30.288 24300 TIP 441533 1474 6098624 2024-02-28 13:31:08.273 2024-02-28 13:31:08.273 2700 FEE 441676 10013 6098625 2024-02-28 13:31:08.273 2024-02-28 13:31:08.273 24300 TIP 441676 18402 6098663 2024-02-28 13:33:36.104 2024-02-28 13:33:36.104 500 FEE 440423 15484 6098144 2024-02-28 12:55:12.937 2024-02-28 12:55:12.937 100 FEE 441854 661 6098145 2024-02-28 12:55:12.937 2024-02-28 12:55:12.937 900 TIP 441854 705 6098157 2024-02-28 12:56:04.849 2024-02-28 12:56:04.849 100 FEE 441831 985 6098158 2024-02-28 12:56:04.849 2024-02-28 12:56:04.849 900 TIP 441831 14258 6098170 2024-02-28 12:57:38.772 2024-02-28 12:57:38.772 2100 FEE 441864 20596 6098171 2024-02-28 12:57:38.772 2024-02-28 12:57:38.772 18900 TIP 441864 21166 6098203 2024-02-28 13:01:42.577 2024-02-28 13:01:42.577 900 FEE 441843 18468 6098204 2024-02-28 13:01:42.577 2024-02-28 13:01:42.577 8100 TIP 441843 18005 6098234 2024-02-28 13:03:46.6 2024-02-28 13:03:46.6 2100 FEE 441859 14045 6098235 2024-02-28 13:03:46.6 2024-02-28 13:03:46.6 18900 TIP 441859 16747 6098237 2024-02-28 13:04:11.876 2024-02-28 13:04:11.876 1000 FEE 441881 687 6098238 2024-02-28 13:04:16.257 2024-02-28 13:04:16.257 0 FEE 441871 18663 6098250 2024-02-28 13:04:59.531 2024-02-28 13:04:59.531 100 FEE 441660 12738 6098251 2024-02-28 13:04:59.531 2024-02-28 13:04:59.531 900 TIP 441660 981 6098252 2024-02-28 13:04:59.563 2024-02-28 13:04:59.563 900 FEE 441660 1316 6098253 2024-02-28 13:04:59.563 2024-02-28 13:04:59.563 8100 TIP 441660 5809 6098263 2024-02-28 13:05:15.555 2024-02-28 13:05:15.555 100 FEE 441881 13527 6098264 2024-02-28 13:05:15.555 2024-02-28 13:05:15.555 900 TIP 441881 3304 6098267 2024-02-28 13:05:15.647 2024-02-28 13:05:15.647 2100 FEE 441828 14472 6098268 2024-02-28 13:05:15.647 2024-02-28 13:05:15.647 18900 TIP 441828 13132 6098271 2024-02-28 13:05:27.868 2024-02-28 13:05:27.868 2100 FEE 441600 2780 6098272 2024-02-28 13:05:27.868 2024-02-28 13:05:27.868 18900 TIP 441600 18995 6098276 2024-02-28 13:05:46.215 2024-02-28 13:05:46.215 900 FEE 441742 21492 6098277 2024-02-28 13:05:46.215 2024-02-28 13:05:46.215 8100 TIP 441742 1426 6098290 2024-02-28 13:06:17.594 2024-02-28 13:06:17.594 1000 FEE 441884 10944 6098317 2024-02-28 13:07:02.225 2024-02-28 13:07:02.225 900 FEE 441820 16704 6098318 2024-02-28 13:07:02.225 2024-02-28 13:07:02.225 8100 TIP 441820 9036 6098324 2024-02-28 13:07:04.587 2024-02-28 13:07:04.587 100 FEE 441842 21145 6098325 2024-02-28 13:07:04.587 2024-02-28 13:07:04.587 900 TIP 441842 20781 6098355 2024-02-28 13:09:08.768 2024-02-28 13:09:08.768 1000 FEE 441889 21145 6098378 2024-02-28 13:11:33.201 2024-02-28 13:11:33.201 9000 FEE 441602 19463 6098379 2024-02-28 13:11:33.201 2024-02-28 13:11:33.201 81000 TIP 441602 5852 6098395 2024-02-28 13:12:51.997 2024-02-28 13:12:51.997 1000 FEE 441892 965 6098400 2024-02-28 13:12:59.637 2024-02-28 13:12:59.637 900 FEE 441735 9529 6098401 2024-02-28 13:12:59.637 2024-02-28 13:12:59.637 8100 TIP 441735 21455 6098406 2024-02-28 13:13:03.588 2024-02-28 13:13:03.588 100 FEE 441718 641 6098407 2024-02-28 13:13:03.588 2024-02-28 13:13:03.588 900 TIP 441718 4650 6098412 2024-02-28 13:13:21.214 2024-02-28 13:13:21.214 900 FEE 441753 7682 6098413 2024-02-28 13:13:21.214 2024-02-28 13:13:21.214 8100 TIP 441753 1611 6098495 2024-02-28 13:21:06.302 2024-02-28 13:21:06.302 3400 FEE 441749 7772 6098496 2024-02-28 13:21:06.302 2024-02-28 13:21:06.302 30600 TIP 441749 16638 6098499 2024-02-28 13:21:28.4 2024-02-28 13:21:28.4 1000 FEE 441900 5499 6098515 2024-02-28 13:22:50.856 2024-02-28 13:22:50.856 0 FEE 441903 18704 6098545 2024-02-28 13:26:18.906 2024-02-28 13:26:18.906 500 FEE 441243 21609 6098546 2024-02-28 13:26:18.906 2024-02-28 13:26:18.906 4500 TIP 441243 16456 6098551 2024-02-28 13:26:34.752 2024-02-28 13:26:34.752 1000 FEE 441854 634 6098552 2024-02-28 13:26:34.752 2024-02-28 13:26:34.752 9000 TIP 441854 2681 6098555 2024-02-28 13:26:43.198 2024-02-28 13:26:43.198 500 FEE 441246 21506 6098556 2024-02-28 13:26:43.198 2024-02-28 13:26:43.198 4500 TIP 441246 9169 6098576 2024-02-28 13:27:45.233 2024-02-28 13:27:45.233 100 FEE 441906 5195 6098577 2024-02-28 13:27:45.233 2024-02-28 13:27:45.233 900 TIP 441906 19403 6098587 2024-02-28 13:28:29.042 2024-02-28 13:28:29.042 21000 DONT_LIKE_THIS 441909 19910 6098588 2024-02-28 13:28:39.269 2024-02-28 13:28:39.269 2100 FEE 441886 19016 6098589 2024-02-28 13:28:39.269 2024-02-28 13:28:39.269 18900 TIP 441886 18241 6098615 2024-02-28 13:30:31.17 2024-02-28 13:30:31.17 2700 FEE 441533 1124 6098616 2024-02-28 13:30:31.17 2024-02-28 13:30:31.17 24300 TIP 441533 10484 6098617 2024-02-28 13:30:48.996 2024-02-28 13:30:48.996 2700 FEE 441592 15088 6098618 2024-02-28 13:30:48.996 2024-02-28 13:30:48.996 24300 TIP 441592 11038 6098634 2024-02-28 13:31:09.225 2024-02-28 13:31:09.225 2700 FEE 441676 9611 6098635 2024-02-28 13:31:09.225 2024-02-28 13:31:09.225 24300 TIP 441676 1244 6098641 2024-02-28 13:32:29.131 2024-02-28 13:32:29.131 1000 FEE 441915 16769 6098642 2024-02-28 13:32:29.131 2024-02-28 13:32:29.131 9000 TIP 441915 19154 6098682 2024-02-28 13:34:28.359 2024-02-28 13:34:28.359 2100 FEE 441613 8726 6098683 2024-02-28 13:34:28.359 2024-02-28 13:34:28.359 18900 TIP 441613 20045 6098687 2024-02-28 13:34:36.199 2024-02-28 13:34:36.199 21000 FEE 441815 13399 6098688 2024-02-28 13:34:36.199 2024-02-28 13:34:36.199 189000 TIP 441815 17535 6098749 2024-02-28 13:42:53.316 2024-02-28 13:42:53.316 10000 FEE 440552 17014 6098750 2024-02-28 13:42:53.316 2024-02-28 13:42:53.316 90000 TIP 440552 12057 6098756 2024-02-28 13:43:18.452 2024-02-28 13:43:18.452 7700 FEE 441911 1740 6098757 2024-02-28 13:43:18.452 2024-02-28 13:43:18.452 69300 TIP 441911 2748 6098758 2024-02-28 13:43:19.889 2024-02-28 13:43:19.889 1000 FEE 441932 15351 6098764 2024-02-28 13:44:12.682 2024-02-28 13:44:12.682 1000 FEE 441934 661 6098768 2024-02-28 13:44:35.417 2024-02-28 13:44:35.417 1000 FEE 441936 2042 6098783 2024-02-28 13:47:15.286 2024-02-28 13:47:15.286 5000 FEE 441861 19459 6098784 2024-02-28 13:47:15.286 2024-02-28 13:47:15.286 45000 TIP 441861 15119 6098816 2024-02-28 13:49:27.84 2024-02-28 13:49:27.84 500000 DONT_LIKE_THIS 441824 18525 6098837 2024-02-28 13:49:40.223 2024-02-28 13:49:40.223 7700 FEE 441944 16867 6098838 2024-02-28 13:49:40.223 2024-02-28 13:49:40.223 69300 TIP 441944 8176 6098851 2024-02-28 13:49:41.056 2024-02-28 13:49:41.056 7700 FEE 441944 16665 6098852 2024-02-28 13:49:41.056 2024-02-28 13:49:41.056 69300 TIP 441944 21401 6098853 2024-02-28 13:49:41.171 2024-02-28 13:49:41.171 7700 FEE 441944 8954 6098854 2024-02-28 13:49:41.171 2024-02-28 13:49:41.171 69300 TIP 441944 16594 6098879 2024-02-28 13:49:44.091 2024-02-28 13:49:44.091 7700 FEE 441944 17944 6098880 2024-02-28 13:49:44.091 2024-02-28 13:49:44.091 69300 TIP 441944 15147 6098890 2024-02-28 13:50:54.402 2024-02-28 13:50:54.402 6900 FEE 441944 1534 6098891 2024-02-28 13:50:54.402 2024-02-28 13:50:54.402 62100 TIP 441944 19148 6098907 2024-02-28 13:51:27.012 2024-02-28 13:51:27.012 3100 FEE 441843 13399 6098908 2024-02-28 13:51:27.012 2024-02-28 13:51:27.012 27900 TIP 441843 13076 6098914 2024-02-28 13:51:57.167 2024-02-28 13:51:57.167 100000 FEE 441955 20581 6098915 2024-02-28 13:51:59.617 2024-02-28 13:51:59.617 1000 FEE 441956 20291 6098921 2024-02-28 13:52:06.403 2024-02-28 13:52:06.403 100 FEE 441944 14385 6098922 2024-02-28 13:52:06.403 2024-02-28 13:52:06.403 900 TIP 441944 18690 6098927 2024-02-28 13:52:08.375 2024-02-28 13:52:08.375 100 FEE 441944 16282 6098928 2024-02-28 13:52:08.375 2024-02-28 13:52:08.375 900 TIP 441944 18640 6098946 2024-02-28 13:53:03.171 2024-02-28 13:53:03.171 1600 FEE 441944 654 6098947 2024-02-28 13:53:03.171 2024-02-28 13:53:03.171 14400 TIP 441944 18423 6098950 2024-02-28 13:53:33.092 2024-02-28 13:53:33.092 21000 DONT_LIKE_THIS 441954 20817 6098970 2024-02-28 13:56:24.647 2024-02-28 13:56:24.647 1000 POLL 441660 19907 6098986 2024-02-28 13:58:33.756 2024-02-28 13:58:33.756 100 FEE 441966 836 6098987 2024-02-28 13:58:33.756 2024-02-28 13:58:33.756 900 TIP 441966 18040 6099012 2024-02-28 14:00:38.494 2024-02-28 14:00:38.494 7700 FEE 441969 20849 6099013 2024-02-28 14:00:38.494 2024-02-28 14:00:38.494 69300 TIP 441969 19320 6099017 2024-02-28 14:01:21.348 2024-02-28 14:01:21.348 2100 FEE 441774 14213 6099018 2024-02-28 14:01:21.348 2024-02-28 14:01:21.348 18900 TIP 441774 919 6099031 2024-02-28 14:01:27.496 2024-02-28 14:01:27.496 100 FEE 441843 21451 6099032 2024-02-28 14:01:27.496 2024-02-28 14:01:27.496 900 TIP 441843 18815 6098321 2024-02-28 13:07:03.519 2024-02-28 13:07:03.519 900 FEE 441838 15577 6098322 2024-02-28 13:07:03.519 2024-02-28 13:07:03.519 8100 TIP 441838 11263 6098347 2024-02-28 13:08:33.59 2024-02-28 13:08:33.59 100 FEE 441872 5565 6098348 2024-02-28 13:08:33.59 2024-02-28 13:08:33.59 900 TIP 441872 19690 6098353 2024-02-28 13:08:48.723 2024-02-28 13:08:48.723 0 FEE 441885 21166 6098363 2024-02-28 13:09:41.479 2024-02-28 13:09:41.479 0 FEE 441884 5495 6098369 2024-02-28 13:10:29.412 2024-02-28 13:10:29.412 5000 FEE 440622 21145 6098370 2024-02-28 13:10:29.412 2024-02-28 13:10:29.412 45000 TIP 440622 19488 6098373 2024-02-28 13:10:56.616 2024-02-28 13:10:56.616 5000 FEE 440988 1624 6098374 2024-02-28 13:10:56.616 2024-02-28 13:10:56.616 45000 TIP 440988 18892 6098426 2024-02-28 13:13:32.151 2024-02-28 13:13:32.151 1000 FEE 441891 1784 6098427 2024-02-28 13:13:32.151 2024-02-28 13:13:32.151 9000 TIP 441891 4322 6098432 2024-02-28 13:13:32.809 2024-02-28 13:13:32.809 1000 FEE 441891 1493 6098433 2024-02-28 13:13:32.809 2024-02-28 13:13:32.809 9000 TIP 441891 9366 6098473 2024-02-28 13:17:44.49 2024-02-28 13:17:44.49 2100 FEE 441744 10944 6098474 2024-02-28 13:17:44.49 2024-02-28 13:17:44.49 18900 TIP 441744 828 6098513 2024-02-28 13:22:48.162 2024-02-28 13:22:48.162 100 FEE 441876 2640 6098514 2024-02-28 13:22:48.162 2024-02-28 13:22:48.162 900 TIP 441876 10668 6098531 2024-02-28 13:25:04.62 2024-02-28 13:25:04.62 1000 FEE 441908 18678 6098584 2024-02-28 13:28:07.617 2024-02-28 13:28:07.617 1000 FEE 441914 17727 6098651 2024-02-28 13:32:52.953 2024-02-28 13:32:52.953 1000 FEE 441901 20614 6098652 2024-02-28 13:32:52.953 2024-02-28 13:32:52.953 9000 TIP 441901 16842 6098676 2024-02-28 13:34:25.75 2024-02-28 13:34:25.75 2100 FEE 441854 19501 6098677 2024-02-28 13:34:25.75 2024-02-28 13:34:25.75 18900 TIP 441854 14515 6098678 2024-02-28 13:34:26.006 2024-02-28 13:34:26.006 2100 FEE 441773 19309 6098679 2024-02-28 13:34:26.006 2024-02-28 13:34:26.006 18900 TIP 441773 7760 6098693 2024-02-28 13:34:57.793 2024-02-28 13:34:57.793 500 FEE 441915 1738 6098694 2024-02-28 13:34:57.793 2024-02-28 13:34:57.793 4500 TIP 441915 9169 6098701 2024-02-28 13:35:33.312 2024-02-28 13:35:33.312 500 FEE 441815 2309 6098702 2024-02-28 13:35:33.312 2024-02-28 13:35:33.312 4500 TIP 441815 675 6098717 2024-02-28 13:37:52.331 2024-02-28 13:37:52.331 1000 FEE 440587 20059 6098718 2024-02-28 13:37:52.331 2024-02-28 13:37:52.331 9000 TIP 440587 16839 6098747 2024-02-28 13:42:44.229 2024-02-28 13:42:44.229 7700 FEE 441877 1064 6098748 2024-02-28 13:42:44.229 2024-02-28 13:42:44.229 69300 TIP 441877 14267 6098774 2024-02-28 13:45:33.351 2024-02-28 13:45:33.351 1000 FEE 441939 21577 6098779 2024-02-28 13:47:03.593 2024-02-28 13:47:03.593 5000 FEE 441869 16406 6098780 2024-02-28 13:47:03.593 2024-02-28 13:47:03.593 45000 TIP 441869 8074 6098794 2024-02-28 13:47:23.906 2024-02-28 13:47:23.906 15400 FEE 441613 21555 6098795 2024-02-28 13:47:23.906 2024-02-28 13:47:23.906 138600 TIP 441613 13076 6098798 2024-02-28 13:48:02.842 2024-02-28 13:48:02.842 1000 FEE 441935 977 6098799 2024-02-28 13:48:02.842 2024-02-28 13:48:02.842 9000 TIP 441935 13575 6098801 2024-02-28 13:48:04.704 2024-02-28 13:48:04.704 1000 FEE 441940 647 6098807 2024-02-28 13:48:48.414 2024-02-28 13:48:48.414 1000 FEE 441945 2000 6098808 2024-02-28 13:48:59.551 2024-02-28 13:48:59.551 0 FEE 441942 20562 6098809 2024-02-28 13:49:00.196 2024-02-28 13:49:00.196 1000 FEE 441946 2513 6098814 2024-02-28 13:49:26.481 2024-02-28 13:49:26.481 27900 FEE 441816 8380 6098815 2024-02-28 13:49:26.481 2024-02-28 13:49:26.481 251100 TIP 441816 1890 6098819 2024-02-28 13:49:38.406 2024-02-28 13:49:38.406 2100 FEE 441657 2088 6098820 2024-02-28 13:49:38.406 2024-02-28 13:49:38.406 18900 TIP 441657 775 6098845 2024-02-28 13:49:40.753 2024-02-28 13:49:40.753 7700 FEE 441944 20603 6098846 2024-02-28 13:49:40.753 2024-02-28 13:49:40.753 69300 TIP 441944 993 6098849 2024-02-28 13:49:40.942 2024-02-28 13:49:40.942 7700 FEE 441944 11648 6098850 2024-02-28 13:49:40.942 2024-02-28 13:49:40.942 69300 TIP 441944 826 6098863 2024-02-28 13:49:42.321 2024-02-28 13:49:42.321 7700 FEE 441944 16536 6098864 2024-02-28 13:49:42.321 2024-02-28 13:49:42.321 69300 TIP 441944 18138 6098871 2024-02-28 13:49:42.748 2024-02-28 13:49:42.748 7700 FEE 441944 20924 6098872 2024-02-28 13:49:42.748 2024-02-28 13:49:42.748 69300 TIP 441944 20006 6098877 2024-02-28 13:49:43.928 2024-02-28 13:49:43.928 7700 FEE 441944 21619 6098878 2024-02-28 13:49:43.928 2024-02-28 13:49:43.928 69300 TIP 441944 10094 6098881 2024-02-28 13:49:44.579 2024-02-28 13:49:44.579 100000 FEE 441948 18231 6098883 2024-02-28 13:50:38.488 2024-02-28 13:50:38.488 1000 FEE 441949 794 6098884 2024-02-28 13:50:53.665 2024-02-28 13:50:53.665 6900 FEE 441944 18735 6098885 2024-02-28 13:50:53.665 2024-02-28 13:50:53.665 62100 TIP 441944 18472 6098898 2024-02-28 13:51:00.086 2024-02-28 13:51:00.086 1000 FEE 441950 17091 6098333 2024-02-28 13:07:15.369 2024-02-28 13:07:15.369 5700 FEE 441884 9337 6098334 2024-02-28 13:07:15.369 2024-02-28 13:07:15.369 51300 TIP 441884 12959 6098356 2024-02-28 13:09:10.053 2024-02-28 13:09:10.053 0 FEE 441871 15488 6098371 2024-02-28 13:10:37.783 2024-02-28 13:10:37.783 5000 FEE 440663 16876 6098372 2024-02-28 13:10:37.783 2024-02-28 13:10:37.783 45000 TIP 440663 20045 6098386 2024-02-28 13:11:49.403 2024-02-28 13:11:49.403 9000 FEE 441613 18291 6098387 2024-02-28 13:11:49.403 2024-02-28 13:11:49.403 81000 TIP 441613 21619 6098391 2024-02-28 13:12:05.895 2024-02-28 13:12:05.895 5000 FEE 440875 20490 6098392 2024-02-28 13:12:05.895 2024-02-28 13:12:05.895 45000 TIP 440875 3396 6098410 2024-02-28 13:13:20.918 2024-02-28 13:13:20.918 100 FEE 441753 9275 6098411 2024-02-28 13:13:20.918 2024-02-28 13:13:20.918 900 TIP 441753 680 6098420 2024-02-28 13:13:31.623 2024-02-28 13:13:31.623 1000 FEE 441891 2329 6098421 2024-02-28 13:13:31.623 2024-02-28 13:13:31.623 9000 TIP 441891 17064 6098422 2024-02-28 13:13:31.793 2024-02-28 13:13:31.793 1000 FEE 441891 18637 6098423 2024-02-28 13:13:31.793 2024-02-28 13:13:31.793 9000 TIP 441891 21619 6098424 2024-02-28 13:13:31.975 2024-02-28 13:13:31.975 1000 FEE 441891 16309 6098425 2024-02-28 13:13:31.975 2024-02-28 13:13:31.975 9000 TIP 441891 21060 6098428 2024-02-28 13:13:32.3 2024-02-28 13:13:32.3 1000 FEE 441891 17162 6098429 2024-02-28 13:13:32.3 2024-02-28 13:13:32.3 9000 TIP 441891 6137 6098430 2024-02-28 13:13:32.567 2024-02-28 13:13:32.567 1000 FEE 441891 13198 6098431 2024-02-28 13:13:32.567 2024-02-28 13:13:32.567 9000 TIP 441891 18817 6098444 2024-02-28 13:14:33.213 2024-02-28 13:14:33.213 100 FEE 441888 18344 6098445 2024-02-28 13:14:33.213 2024-02-28 13:14:33.213 900 TIP 441888 21605 6098449 2024-02-28 13:14:33.92 2024-02-28 13:14:33.92 100 FEE 441888 15617 6098450 2024-02-28 13:14:33.92 2024-02-28 13:14:33.92 900 TIP 441888 1298 6098454 2024-02-28 13:15:06.94 2024-02-28 13:15:06.94 0 FEE 441893 19966 6098457 2024-02-28 13:16:02.122 2024-02-28 13:16:02.122 1000 FEE 441895 21480 6098477 2024-02-28 13:18:30.053 2024-02-28 13:18:30.053 2100 FEE 441616 9705 6098478 2024-02-28 13:18:30.053 2024-02-28 13:18:30.053 18900 TIP 441616 20802 6098479 2024-02-28 13:18:40.87 2024-02-28 13:18:40.87 2100 FEE 441508 1723 6098480 2024-02-28 13:18:40.87 2024-02-28 13:18:40.87 18900 TIP 441508 1209 6098488 2024-02-28 13:20:01.108 2024-02-28 13:20:01.108 1000 FEE 441899 18494 6098497 2024-02-28 13:21:26.436 2024-02-28 13:21:26.436 100000 FEE 441843 15536 6098498 2024-02-28 13:21:26.436 2024-02-28 13:21:26.436 900000 TIP 441843 9362 6098505 2024-02-28 13:22:10.995 2024-02-28 13:22:10.995 1000 FEE 441901 18751 6098521 2024-02-28 13:23:50.84 2024-02-28 13:23:50.84 5000 FEE 440870 9921 6098522 2024-02-28 13:23:50.84 2024-02-28 13:23:50.84 45000 TIP 440870 16665 6098553 2024-02-28 13:26:37.097 2024-02-28 13:26:37.097 2100 FEE 441854 14357 6098554 2024-02-28 13:26:37.097 2024-02-28 13:26:37.097 18900 TIP 441854 17707 6098557 2024-02-28 13:26:50.827 2024-02-28 13:26:50.827 7000 FEE 441910 1833 6098560 2024-02-28 13:26:58.336 2024-02-28 13:26:58.336 0 FEE 441896 21140 6098561 2024-02-28 13:27:02.162 2024-02-28 13:27:02.162 100 FEE 441190 19929 6098562 2024-02-28 13:27:02.162 2024-02-28 13:27:02.162 900 TIP 441190 18264 6098568 2024-02-28 13:27:34.189 2024-02-28 13:27:34.189 500 FEE 441227 18680 6098569 2024-02-28 13:27:34.189 2024-02-28 13:27:34.189 4500 TIP 441227 706 6098585 2024-02-28 13:28:23.949 2024-02-28 13:28:23.949 10000 FEE 441900 20084 6098586 2024-02-28 13:28:23.949 2024-02-28 13:28:23.949 90000 TIP 441900 1785 6098630 2024-02-28 13:31:08.853 2024-02-28 13:31:08.853 2700 FEE 441676 19557 6098631 2024-02-28 13:31:08.853 2024-02-28 13:31:08.853 24300 TIP 441676 16848 6098647 2024-02-28 13:32:52.631 2024-02-28 13:32:52.631 1000 FEE 441901 21207 6098648 2024-02-28 13:32:52.631 2024-02-28 13:32:52.631 9000 TIP 441901 706 6098680 2024-02-28 13:34:26.732 2024-02-28 13:34:26.732 2100 FEE 441749 3979 6098681 2024-02-28 13:34:26.732 2024-02-28 13:34:26.732 18900 TIP 441749 1195 6098686 2024-02-28 13:34:34.347 2024-02-28 13:34:34.347 1000 POLL 441660 19841 6098706 2024-02-28 13:36:04.104 2024-02-28 13:36:04.104 1100 FEE 441836 21329 6098707 2024-02-28 13:36:04.104 2024-02-28 13:36:04.104 9900 TIP 441836 21079 6098709 2024-02-28 13:36:50.44 2024-02-28 13:36:50.44 1000 FEE 441924 18659 6098723 2024-02-28 13:38:52.249 2024-02-28 13:38:52.249 10000 FEE 441171 7125 6098724 2024-02-28 13:38:52.249 2024-02-28 13:38:52.249 90000 TIP 441171 19785 6098741 2024-02-28 13:42:30.928 2024-02-28 13:42:30.928 1000 FEE 441930 720 6098761 2024-02-28 13:44:00.375 2024-02-28 13:44:00.375 1000 FEE 441933 5978 6098763 2024-02-28 13:44:03.403 2024-02-28 13:44:03.403 1000 POLL 441660 15075 6098785 2024-02-28 13:47:22.872 2024-02-28 13:47:22.872 7700 FEE 441613 1291 6098786 2024-02-28 13:47:22.872 2024-02-28 13:47:22.872 69300 TIP 441613 2075 6098803 2024-02-28 13:48:27.6 2024-02-28 13:48:27.6 100000 FEE 441942 19995 6098804 2024-02-28 13:48:33.235 2024-02-28 13:48:33.235 1000 FEE 441943 9921 6098811 2024-02-28 13:49:09.327 2024-02-28 13:49:09.327 10000 FEE 441947 11590 6098817 2024-02-28 13:49:36.217 2024-02-28 13:49:36.217 2100 FEE 441656 5694 6098818 2024-02-28 13:49:36.217 2024-02-28 13:49:36.217 18900 TIP 441656 12921 6098821 2024-02-28 13:49:39.243 2024-02-28 13:49:39.243 7700 FEE 441944 21344 6098399 2024-02-28 13:12:59.471 2024-02-28 13:12:59.471 900 TIP 441735 15560 6098414 2024-02-28 13:13:31.061 2024-02-28 13:13:31.061 1000 FEE 441891 1208 6098415 2024-02-28 13:13:31.061 2024-02-28 13:13:31.061 9000 TIP 441891 27 6098434 2024-02-28 13:13:33.079 2024-02-28 13:13:33.079 1000 FEE 441891 16965 6098435 2024-02-28 13:13:33.079 2024-02-28 13:13:33.079 9000 TIP 441891 19151 6098438 2024-02-28 13:13:40.564 2024-02-28 13:13:40.564 1000000 DONT_LIKE_THIS 441761 16289 6098459 2024-02-28 13:16:23.741 2024-02-28 13:16:23.741 21000 DONT_LIKE_THIS 441893 15544 6098476 2024-02-28 13:18:14.314 2024-02-28 13:18:14.314 1000 FEE 441898 11798 6098482 2024-02-28 13:19:17.386 2024-02-28 13:19:17.386 2100 FEE 441407 10063 6098483 2024-02-28 13:19:17.386 2024-02-28 13:19:17.386 18900 TIP 441407 691 6098484 2024-02-28 13:19:28.708 2024-02-28 13:19:28.708 2100 FEE 441402 19815 6098485 2024-02-28 13:19:28.708 2024-02-28 13:19:28.708 18900 TIP 441402 8326 6098512 2024-02-28 13:22:44.545 2024-02-28 13:22:44.545 1000 FEE 441904 13132 6098524 2024-02-28 13:24:02.87 2024-02-28 13:24:02.87 1000 FEE 441905 1003 6098529 2024-02-28 13:24:49.511 2024-02-28 13:24:49.511 1000 FEE 441907 917 6098534 2024-02-28 13:25:29.055 2024-02-28 13:25:29.055 1000 FEE 441773 4388 6098535 2024-02-28 13:25:29.055 2024-02-28 13:25:29.055 9000 TIP 441773 20433 6098574 2024-02-28 13:27:44.931 2024-02-28 13:27:44.931 100 FEE 441906 20706 6098575 2024-02-28 13:27:44.931 2024-02-28 13:27:44.931 900 TIP 441906 1825 6098437 2024-02-28 13:13:33.287 2024-02-28 13:13:33.287 9000 TIP 441891 696 6098446 2024-02-28 13:14:33.529 2024-02-28 13:14:33.529 100 FEE 441888 14169 6098447 2024-02-28 13:14:33.529 2024-02-28 13:14:33.529 900 TIP 441888 10056 6098451 2024-02-28 13:14:48.3 2024-02-28 13:14:48.3 1000 FEE 441891 7766 6098452 2024-02-28 13:14:48.3 2024-02-28 13:14:48.3 9000 TIP 441891 2620 6098455 2024-02-28 13:15:12.568 2024-02-28 13:15:12.568 100000 FEE 441894 13399 6098456 2024-02-28 13:15:44.918 2024-02-28 13:15:44.918 0 FEE 441893 16753 6098460 2024-02-28 13:16:24.83 2024-02-28 13:16:24.83 5700 FEE 441891 20108 6098461 2024-02-28 13:16:24.83 2024-02-28 13:16:24.83 51300 TIP 441891 7587 6098506 2024-02-28 13:22:30.549 2024-02-28 13:22:30.549 1000 FEE 441902 21148 6098507 2024-02-28 13:22:38.033 2024-02-28 13:22:38.033 12800 FEE 441319 5129 6098508 2024-02-28 13:22:38.033 2024-02-28 13:22:38.033 115200 TIP 441319 2256 6098509 2024-02-28 13:22:41.301 2024-02-28 13:22:41.301 100 FEE 441890 3417 6098510 2024-02-28 13:22:41.301 2024-02-28 13:22:41.301 900 TIP 441890 11750 6098542 2024-02-28 13:25:47.174 2024-02-28 13:25:47.174 1000 FEE 441909 18119 6098565 2024-02-28 13:27:14.947 2024-02-28 13:27:14.947 1000 FEE 441912 963 6098578 2024-02-28 13:27:45.619 2024-02-28 13:27:45.619 100 FEE 441906 8648 6098579 2024-02-28 13:27:45.619 2024-02-28 13:27:45.619 900 TIP 441906 20706 6098590 2024-02-28 13:28:49.343 2024-02-28 13:28:49.343 500 FEE 441886 20094 6098591 2024-02-28 13:28:49.343 2024-02-28 13:28:49.343 4500 TIP 441886 21575 6098595 2024-02-28 13:29:20.23 2024-02-28 13:29:20.23 100 FEE 440692 1673 6098596 2024-02-28 13:29:20.23 2024-02-28 13:29:20.23 900 TIP 440692 20045 6098611 2024-02-28 13:30:30.484 2024-02-28 13:30:30.484 2700 FEE 441533 11885 6098612 2024-02-28 13:30:30.484 2024-02-28 13:30:30.484 24300 TIP 441533 19332 6098626 2024-02-28 13:31:08.457 2024-02-28 13:31:08.457 2700 FEE 441676 1286 6098627 2024-02-28 13:31:08.457 2024-02-28 13:31:08.457 24300 TIP 441676 19735 6098661 2024-02-28 13:33:34.168 2024-02-28 13:33:34.168 500 FEE 441744 11789 6098662 2024-02-28 13:33:34.168 2024-02-28 13:33:34.168 4500 TIP 441744 18680 6098674 2024-02-28 13:34:25.678 2024-02-28 13:34:25.678 2100 FEE 441843 5557 6098675 2024-02-28 13:34:25.678 2024-02-28 13:34:25.678 18900 TIP 441843 17639 6098691 2024-02-28 13:34:56.075 2024-02-28 13:34:56.075 500 FEE 441744 18735 6098692 2024-02-28 13:34:56.075 2024-02-28 13:34:56.075 4500 TIP 441744 822 6098696 2024-02-28 13:35:09.606 2024-02-28 13:35:09.606 2100 FEE 441238 5865 6098697 2024-02-28 13:35:09.606 2024-02-28 13:35:09.606 18900 TIP 441238 15088 6098703 2024-02-28 13:35:35.664 2024-02-28 13:35:35.664 500 FEE 441815 21523 6098704 2024-02-28 13:35:35.664 2024-02-28 13:35:35.664 4500 TIP 441815 21427 6098736 2024-02-28 13:41:18.738 2024-02-28 13:41:18.738 5000 FEE 441555 17103 6098737 2024-02-28 13:41:18.738 2024-02-28 13:41:18.738 45000 TIP 441555 17011 6098738 2024-02-28 13:41:21.15 2024-02-28 13:41:21.15 1000 POLL 441333 6335 6098759 2024-02-28 13:43:30.102 2024-02-28 13:43:30.102 100 FEE 441686 2437 6098760 2024-02-28 13:43:30.102 2024-02-28 13:43:30.102 900 TIP 441686 5500 6098769 2024-02-28 13:44:38.212 2024-02-28 13:44:38.212 2100 FEE 441894 8648 6098770 2024-02-28 13:44:38.212 2024-02-28 13:44:38.212 18900 TIP 441894 1845 6098772 2024-02-28 13:45:00.231 2024-02-28 13:45:00.231 1000 FEE 441938 20022 6098787 2024-02-28 13:47:23.047 2024-02-28 13:47:23.047 1000 POLL 441660 1316 6098788 2024-02-28 13:47:23.185 2024-02-28 13:47:23.185 7700 FEE 441613 15510 6098789 2024-02-28 13:47:23.185 2024-02-28 13:47:23.185 69300 TIP 441613 917 6098835 2024-02-28 13:49:40.121 2024-02-28 13:49:40.121 7700 FEE 441944 8945 6098836 2024-02-28 13:49:40.121 2024-02-28 13:49:40.121 69300 TIP 441944 12277 6098843 2024-02-28 13:49:40.609 2024-02-28 13:49:40.609 7700 FEE 441944 1141 6098844 2024-02-28 13:49:40.609 2024-02-28 13:49:40.609 69300 TIP 441944 3656 6098859 2024-02-28 13:49:41.519 2024-02-28 13:49:41.519 7700 FEE 441944 21619 6098860 2024-02-28 13:49:41.519 2024-02-28 13:49:41.519 69300 TIP 441944 3683 6098869 2024-02-28 13:49:42.625 2024-02-28 13:49:42.625 7700 FEE 441944 11091 6098870 2024-02-28 13:49:42.625 2024-02-28 13:49:42.625 69300 TIP 441944 706 6098906 2024-02-28 13:51:16.824 2024-02-28 13:51:16.824 1000 FEE 441953 2437 6098929 2024-02-28 13:52:08.833 2024-02-28 13:52:08.833 100 FEE 441944 11091 6098930 2024-02-28 13:52:08.833 2024-02-28 13:52:08.833 900 TIP 441944 11820 6098937 2024-02-28 13:52:19.167 2024-02-28 13:52:19.167 100 FEE 441955 21603 6098938 2024-02-28 13:52:19.167 2024-02-28 13:52:19.167 900 TIP 441955 10821 6098941 2024-02-28 13:52:22.806 2024-02-28 13:52:22.806 100 FEE 441954 9655 6098942 2024-02-28 13:52:22.806 2024-02-28 13:52:22.806 900 TIP 441954 20554 6098948 2024-02-28 13:53:13.786 2024-02-28 13:53:13.786 1000 FEE 441957 2459 6098977 2024-02-28 13:57:29.629 2024-02-28 13:57:29.629 2100 FEE 441963 14959 6098978 2024-02-28 13:57:29.629 2024-02-28 13:57:29.629 18900 TIP 441963 16351 6098980 2024-02-28 13:57:57.053 2024-02-28 13:57:57.053 2100 FEE 441959 11522 6098981 2024-02-28 13:57:57.053 2024-02-28 13:57:57.053 18900 TIP 441959 2390 6098984 2024-02-28 13:58:08.676 2024-02-28 13:58:08.676 1000 FEE 441965 16348 6099002 2024-02-28 13:59:48.419 2024-02-28 13:59:48.419 1000 FEE 441969 8569 6099003 2024-02-28 14:00:01.838 2024-02-28 14:00:01.838 10000 FEE 441917 12976 6099004 2024-02-28 14:00:01.838 2024-02-28 14:00:01.838 90000 TIP 441917 21051 6099015 2024-02-28 14:01:06.215 2024-02-28 14:01:06.215 2100 FEE 441830 8080 6099016 2024-02-28 14:01:06.215 2024-02-28 14:01:06.215 18900 TIP 441830 6765 6099023 2024-02-28 14:01:25.02 2024-02-28 14:01:25.02 100 FEE 441843 8385 6099024 2024-02-28 14:01:25.02 2024-02-28 14:01:25.02 900 TIP 441843 10536 6099058 2024-02-28 14:02:29.711 2024-02-28 14:02:29.711 2100 FEE 441968 4574 6099059 2024-02-28 14:02:29.711 2024-02-28 14:02:29.711 18900 TIP 441968 20220 6099060 2024-02-28 14:02:32.133 2024-02-28 14:02:32.133 2100 FEE 441951 8954 6099061 2024-02-28 14:02:32.133 2024-02-28 14:02:32.133 18900 TIP 441951 17708 6099080 2024-02-28 14:03:06.112 2024-02-28 14:03:06.112 2100 FEE 441967 20023 6099081 2024-02-28 14:03:06.112 2024-02-28 14:03:06.112 18900 TIP 441967 19284 6099082 2024-02-28 14:03:07.036 2024-02-28 14:03:07.036 2100 FEE 441901 19469 6099083 2024-02-28 14:03:07.036 2024-02-28 14:03:07.036 18900 TIP 441901 19841 6099093 2024-02-28 14:04:00.253 2024-02-28 14:04:00.253 2100 FEE 441787 15115 6099094 2024-02-28 14:04:00.253 2024-02-28 14:04:00.253 18900 TIP 441787 17708 6099107 2024-02-28 14:04:47.237 2024-02-28 14:04:47.237 5000 FEE 441965 2757 6099108 2024-02-28 14:04:47.237 2024-02-28 14:04:47.237 45000 TIP 441965 1003 6099113 2024-02-28 14:04:59.059 2024-02-28 14:04:59.059 1000 FEE 441981 19292 6099126 2024-02-28 14:05:59.258 2024-02-28 14:05:59.258 1000 FEE 441987 13987 6099127 2024-02-28 14:06:00.319 2024-02-28 14:06:00.319 2100 FEE 441332 19512 6099128 2024-02-28 14:06:00.319 2024-02-28 14:06:00.319 18900 TIP 441332 2206 6098440 2024-02-28 13:14:32.738 2024-02-28 13:14:32.738 100 FEE 441888 626 6098441 2024-02-28 13:14:32.738 2024-02-28 13:14:32.738 900 TIP 441888 18412 6098442 2024-02-28 13:14:32.964 2024-02-28 13:14:32.964 100 FEE 441888 19449 6098443 2024-02-28 13:14:32.964 2024-02-28 13:14:32.964 900 TIP 441888 1769 6098448 2024-02-28 13:14:33.855 2024-02-28 13:14:33.855 1000 FEE 441893 21222 6098464 2024-02-28 13:16:31.099 2024-02-28 13:16:31.099 5700 FEE 441613 6260 6098465 2024-02-28 13:16:31.099 2024-02-28 13:16:31.099 51300 TIP 441613 2042 6098466 2024-02-28 13:16:41.443 2024-02-28 13:16:41.443 5700 FEE 441894 11192 6098467 2024-02-28 13:16:41.443 2024-02-28 13:16:41.443 51300 TIP 441894 21492 6098472 2024-02-28 13:17:33.511 2024-02-28 13:17:33.511 1000 FEE 441897 763 6098490 2024-02-28 13:20:36.072 2024-02-28 13:20:36.072 5700 FEE 441897 10818 6098491 2024-02-28 13:20:36.072 2024-02-28 13:20:36.072 51300 TIP 441897 20370 6098502 2024-02-28 13:21:46.141 2024-02-28 13:21:46.141 300000 FEE 441843 11073 6098503 2024-02-28 13:21:46.141 2024-02-28 13:21:46.141 2700000 TIP 441843 7674 6098516 2024-02-28 13:22:55.528 2024-02-28 13:22:55.528 2100 FEE 441464 2734 6098517 2024-02-28 13:22:55.528 2024-02-28 13:22:55.528 18900 TIP 441464 1647 6098520 2024-02-28 13:23:41.344 2024-02-28 13:23:41.344 0 FEE 441903 15925 6098527 2024-02-28 13:24:30.464 2024-02-28 13:24:30.464 2100 FEE 441027 989 6098528 2024-02-28 13:24:30.464 2024-02-28 13:24:30.464 18900 TIP 441027 16424 6098564 2024-02-28 13:27:04.83 2024-02-28 13:27:04.83 1000 FEE 441911 7583 6098572 2024-02-28 13:27:44.653 2024-02-28 13:27:44.653 100 FEE 441906 1845 6098573 2024-02-28 13:27:44.653 2024-02-28 13:27:44.653 900 TIP 441906 6717 6098580 2024-02-28 13:27:47.827 2024-02-28 13:27:47.827 1000 FEE 441913 19463 6098597 2024-02-28 13:29:21.672 2024-02-28 13:29:21.672 5000 FEE 441887 20254 6098598 2024-02-28 13:29:21.672 2024-02-28 13:29:21.672 45000 TIP 441887 5904 6098607 2024-02-28 13:30:30.105 2024-02-28 13:30:30.105 2700 FEE 441533 12220 6098608 2024-02-28 13:30:30.105 2024-02-28 13:30:30.105 24300 TIP 441533 1673 6098613 2024-02-28 13:30:30.664 2024-02-28 13:30:30.664 2700 FEE 441533 14941 6098614 2024-02-28 13:30:30.664 2024-02-28 13:30:30.664 24300 TIP 441533 21271 6098628 2024-02-28 13:31:08.666 2024-02-28 13:31:08.666 2700 FEE 441676 9331 6098629 2024-02-28 13:31:08.666 2024-02-28 13:31:08.666 24300 TIP 441676 5036 6098637 2024-02-28 13:31:21.14 2024-02-28 13:31:21.14 1000 FEE 441918 21457 6098639 2024-02-28 13:32:13.316 2024-02-28 13:32:13.316 2100 FEE 441918 9169 6098640 2024-02-28 13:32:13.316 2024-02-28 13:32:13.316 18900 TIP 441918 20585 6098643 2024-02-28 13:32:35.733 2024-02-28 13:32:35.733 1000 FEE 441919 20562 6098655 2024-02-28 13:33:22.535 2024-02-28 13:33:22.535 100 FEE 441910 2508 6098656 2024-02-28 13:33:22.535 2024-02-28 13:33:22.535 900 TIP 441910 15063 6098657 2024-02-28 13:33:25.224 2024-02-28 13:33:25.224 21000 FEE 441868 21441 6098658 2024-02-28 13:33:25.224 2024-02-28 13:33:25.224 189000 TIP 441868 17797 6098698 2024-02-28 13:35:21.31 2024-02-28 13:35:21.31 15000 FEE 441922 642 6098715 2024-02-28 13:37:22.331 2024-02-28 13:37:22.331 1000 FEE 441925 19826 6098722 2024-02-28 13:38:28.777 2024-02-28 13:38:28.777 1000 FEE 441927 10668 6098775 2024-02-28 13:45:54.991 2024-02-28 13:45:54.991 2100 FEE 441675 21600 6098776 2024-02-28 13:45:54.991 2024-02-28 13:45:54.991 18900 TIP 441675 17064 6098781 2024-02-28 13:47:07.129 2024-02-28 13:47:07.129 7700 FEE 441749 17316 6098782 2024-02-28 13:47:07.129 2024-02-28 13:47:07.129 69300 TIP 441749 18630 6098796 2024-02-28 13:47:26.785 2024-02-28 13:47:26.785 5000 FEE 441856 21060 6098797 2024-02-28 13:47:26.785 2024-02-28 13:47:26.785 45000 TIP 441856 21063 6098812 2024-02-28 13:49:24.458 2024-02-28 13:49:24.458 3100 FEE 441816 13327 6098813 2024-02-28 13:49:24.458 2024-02-28 13:49:24.458 27900 TIP 441816 657 6098823 2024-02-28 13:49:39.343 2024-02-28 13:49:39.343 7700 FEE 441944 899 6098824 2024-02-28 13:49:39.343 2024-02-28 13:49:39.343 69300 TIP 441944 12289 6098825 2024-02-28 13:49:39.433 2024-02-28 13:49:39.433 7700 FEE 441944 18154 6098826 2024-02-28 13:49:39.433 2024-02-28 13:49:39.433 69300 TIP 441944 8095 6098827 2024-02-28 13:49:39.697 2024-02-28 13:49:39.697 7700 FEE 441944 2328 6098828 2024-02-28 13:49:39.697 2024-02-28 13:49:39.697 69300 TIP 441944 17494 6098831 2024-02-28 13:49:39.794 2024-02-28 13:49:39.794 7700 FEE 441944 11590 6098832 2024-02-28 13:49:39.794 2024-02-28 13:49:39.794 69300 TIP 441944 2735 6098855 2024-02-28 13:49:41.271 2024-02-28 13:49:41.271 7700 FEE 441944 17011 6098856 2024-02-28 13:49:41.271 2024-02-28 13:49:41.271 69300 TIP 441944 17727 6098861 2024-02-28 13:49:41.62 2024-02-28 13:49:41.62 7700 FEE 441944 13327 6098862 2024-02-28 13:49:41.62 2024-02-28 13:49:41.62 69300 TIP 441944 17218 6098865 2024-02-28 13:49:42.387 2024-02-28 13:49:42.387 7700 FEE 441944 634 6098866 2024-02-28 13:49:42.387 2024-02-28 13:49:42.387 69300 TIP 441944 19911 6098888 2024-02-28 13:50:53.94 2024-02-28 13:50:53.94 6900 FEE 441944 976 6098889 2024-02-28 13:50:53.94 2024-02-28 13:50:53.94 62100 TIP 441944 9337 6098901 2024-02-28 13:51:01.897 2024-02-28 13:51:01.897 10000 FEE 441951 18017 6098957 2024-02-28 13:54:33.551 2024-02-28 13:54:33.551 21100 FEE 441959 19494 6098958 2024-02-28 13:54:33.551 2024-02-28 13:54:33.551 189900 TIP 441959 7891 6098959 2024-02-28 13:54:39.283 2024-02-28 13:54:39.283 1000 FEE 441960 20778 6098966 2024-02-28 13:55:26.059 2024-02-28 13:55:26.059 0 FEE 441960 6360 6098974 2024-02-28 13:57:00.865 2024-02-28 13:57:00.865 1000 FEE 441963 21591 6098992 2024-02-28 13:59:11.578 2024-02-28 13:59:11.578 120000 FEE 441968 9336 6098994 2024-02-28 13:59:27.177 2024-02-28 13:59:27.177 3100 FEE 441871 4989 6098995 2024-02-28 13:59:27.177 2024-02-28 13:59:27.177 27900 TIP 441871 16301 6099048 2024-02-28 14:02:09.406 2024-02-28 14:02:09.406 100 FEE 441949 759 6099049 2024-02-28 14:02:09.406 2024-02-28 14:02:09.406 900 TIP 441949 11789 6099054 2024-02-28 14:02:10.682 2024-02-28 14:02:10.682 100 FEE 441949 11819 6099055 2024-02-28 14:02:10.682 2024-02-28 14:02:10.682 900 TIP 441949 19809 6099069 2024-02-28 14:02:40.97 2024-02-28 14:02:40.97 2100 FEE 441921 19966 6099070 2024-02-28 14:02:40.97 2024-02-28 14:02:40.97 18900 TIP 441921 21291 6099073 2024-02-28 14:02:48.981 2024-02-28 14:02:48.981 2100 FEE 441894 18454 6099074 2024-02-28 14:02:48.981 2024-02-28 14:02:48.981 18900 TIP 441894 20198 6099075 2024-02-28 14:02:51.565 2024-02-28 14:02:51.565 2100 FEE 441891 16193 6099076 2024-02-28 14:02:51.565 2024-02-28 14:02:51.565 18900 TIP 441891 19836 6099091 2024-02-28 14:03:50.946 2024-02-28 14:03:50.946 2100 FEE 441955 14357 6099092 2024-02-28 14:03:50.946 2024-02-28 14:03:50.946 18900 TIP 441955 1577 6099161 2024-02-28 14:09:15.923 2024-02-28 14:09:15.923 1000 FEE 441992 16988 6099196 2024-02-28 14:12:14.616 2024-02-28 14:12:14.616 0 FEE 442002 9809 6098462 2024-02-28 13:16:28.309 2024-02-28 13:16:28.309 100 FEE 441894 20257 6098463 2024-02-28 13:16:28.309 2024-02-28 13:16:28.309 900 TIP 441894 19105 6098471 2024-02-28 13:17:08.677 2024-02-28 13:17:08.677 1000 FEE 441896 19296 6098486 2024-02-28 13:19:51.225 2024-02-28 13:19:51.225 500 FEE 441233 848 6098487 2024-02-28 13:19:51.225 2024-02-28 13:19:51.225 4500 TIP 441233 20624 6098500 2024-02-28 13:21:31.9 2024-02-28 13:21:31.9 12800 FEE 441284 989 6098501 2024-02-28 13:21:31.9 2024-02-28 13:21:31.9 115200 TIP 441284 19570 6098525 2024-02-28 13:24:11.893 2024-02-28 13:24:11.893 1000 FEE 441906 18180 6098526 2024-02-28 13:24:29.106 2024-02-28 13:24:29.106 0 FEE 441896 1114 6098538 2024-02-28 13:25:40.476 2024-02-28 13:25:40.476 3100 FEE 441907 19553 6098539 2024-02-28 13:25:40.476 2024-02-28 13:25:40.476 27900 TIP 441907 12951 6098540 2024-02-28 13:25:43.334 2024-02-28 13:25:43.334 27900 FEE 441907 20713 6098541 2024-02-28 13:25:43.334 2024-02-28 13:25:43.334 251100 TIP 441907 5112 6098558 2024-02-28 13:26:52.23 2024-02-28 13:26:52.23 1000 FEE 441877 19637 6098559 2024-02-28 13:26:52.23 2024-02-28 13:26:52.23 9000 TIP 441877 18368 6098570 2024-02-28 13:27:44.379 2024-02-28 13:27:44.379 100 FEE 441906 19852 6098571 2024-02-28 13:27:44.379 2024-02-28 13:27:44.379 900 TIP 441906 9339 6098604 2024-02-28 13:30:21.079 2024-02-28 13:30:21.079 1000 FEE 441719 825 6098605 2024-02-28 13:30:21.079 2024-02-28 13:30:21.079 9000 TIP 441719 15762 6098619 2024-02-28 13:30:49.227 2024-02-28 13:30:49.227 2700 FEE 441592 9355 6098620 2024-02-28 13:30:49.227 2024-02-28 13:30:49.227 24300 TIP 441592 20871 6098621 2024-02-28 13:30:49.41 2024-02-28 13:30:49.41 2700 FEE 441592 21303 6098622 2024-02-28 13:30:49.41 2024-02-28 13:30:49.41 24300 TIP 441592 703 6098636 2024-02-28 13:31:12.363 2024-02-28 13:31:12.363 1000 POLL 441660 12291 6098684 2024-02-28 13:34:31.089 2024-02-28 13:34:31.089 2100 FEE 441742 6430 6098685 2024-02-28 13:34:31.089 2024-02-28 13:34:31.089 18900 TIP 441742 836 6098689 2024-02-28 13:34:44.836 2024-02-28 13:34:44.836 100 FEE 441735 1245 6098690 2024-02-28 13:34:44.836 2024-02-28 13:34:44.836 900 TIP 441735 19815 6098716 2024-02-28 13:37:47.864 2024-02-28 13:37:47.864 1000 FEE 441926 4079 6098725 2024-02-28 13:38:52.486 2024-02-28 13:38:52.486 21000 FEE 441921 5160 6098726 2024-02-28 13:38:52.486 2024-02-28 13:38:52.486 189000 TIP 441921 8508 6098730 2024-02-28 13:40:08.45 2024-02-28 13:40:08.45 21000 FEE 441660 19864 6098731 2024-02-28 13:40:08.45 2024-02-28 13:40:08.45 189000 TIP 441660 19018 6098752 2024-02-28 13:43:17.364 2024-02-28 13:43:17.364 7700 FEE 441911 1740 6098753 2024-02-28 13:43:17.364 2024-02-28 13:43:17.364 69300 TIP 441911 4487 6098766 2024-02-28 13:44:29.735 2024-02-28 13:44:29.735 100 FEE 441846 18743 6098767 2024-02-28 13:44:29.735 2024-02-28 13:44:29.735 900 TIP 441846 1425 6098790 2024-02-28 13:47:23.209 2024-02-28 13:47:23.209 7700 FEE 441613 21083 6098791 2024-02-28 13:47:23.209 2024-02-28 13:47:23.209 69300 TIP 441613 21422 6098847 2024-02-28 13:49:40.804 2024-02-28 13:49:40.804 7700 FEE 441944 18615 6098848 2024-02-28 13:49:40.804 2024-02-28 13:49:40.804 69300 TIP 441944 9107 6098857 2024-02-28 13:49:41.468 2024-02-28 13:49:41.468 7700 FEE 441944 7746 6098858 2024-02-28 13:49:41.468 2024-02-28 13:49:41.468 69300 TIP 441944 18736 6098896 2024-02-28 13:50:55.509 2024-02-28 13:50:55.509 6900 FEE 441944 11714 6098897 2024-02-28 13:50:55.509 2024-02-28 13:50:55.509 62100 TIP 441944 16670 6098933 2024-02-28 13:52:09.156 2024-02-28 13:52:09.156 100 FEE 441944 19854 6098934 2024-02-28 13:52:09.156 2024-02-28 13:52:09.156 900 TIP 441944 4064 6098935 2024-02-28 13:52:09.812 2024-02-28 13:52:09.812 100 FEE 441944 18736 6098936 2024-02-28 13:52:09.812 2024-02-28 13:52:09.812 900 TIP 441944 18396 6098971 2024-02-28 13:56:24.985 2024-02-28 13:56:24.985 2100 FEE 441950 6360 6098972 2024-02-28 13:56:24.985 2024-02-28 13:56:24.985 18900 TIP 441950 1468 6098976 2024-02-28 13:57:10.727 2024-02-28 13:57:10.727 10000 FEE 441964 18232 6098991 2024-02-28 13:59:05.112 2024-02-28 13:59:05.112 10000 FEE 441967 649 6098998 2024-02-28 13:59:28.535 2024-02-28 13:59:28.535 10000 FEE 441875 11314 6098999 2024-02-28 13:59:28.535 2024-02-28 13:59:28.535 90000 TIP 441875 21247 6099000 2024-02-28 13:59:44.768 2024-02-28 13:59:44.768 2100 FEE 441742 19446 6099001 2024-02-28 13:59:44.768 2024-02-28 13:59:44.768 18900 TIP 441742 19886 6099006 2024-02-28 14:00:04.62 2024-02-28 14:00:04.62 100000 FEE 441970 5590 6099027 2024-02-28 14:01:26.237 2024-02-28 14:01:26.237 100 FEE 441843 4459 6099028 2024-02-28 14:01:26.237 2024-02-28 14:01:26.237 900 TIP 441843 20450 6099065 2024-02-28 14:02:35.467 2024-02-28 14:02:35.467 7700 FEE 441974 5112 6099066 2024-02-28 14:02:35.467 2024-02-28 14:02:35.467 69300 TIP 441974 5195 6099077 2024-02-28 14:02:54.169 2024-02-28 14:02:54.169 2100 FEE 441975 20424 6099078 2024-02-28 14:02:54.169 2024-02-28 14:02:54.169 18900 TIP 441975 16858 6099087 2024-02-28 14:03:39.88 2024-02-28 14:03:39.88 2100 FEE 441935 685 6099088 2024-02-28 14:03:39.88 2024-02-28 14:03:39.88 18900 TIP 441935 17639 6099089 2024-02-28 14:03:47.275 2024-02-28 14:03:47.275 2100 FEE 441942 15180 6099090 2024-02-28 14:03:47.275 2024-02-28 14:03:47.275 18900 TIP 441942 12265 6099101 2024-02-28 14:04:17.862 2024-02-28 14:04:17.862 1000 FEE 441980 19198 6099102 2024-02-28 14:04:33.944 2024-02-28 14:04:33.944 0 FEE 441980 17523 6099123 2024-02-28 14:05:48.478 2024-02-28 14:05:48.478 5700 FEE 441984 2309 6099124 2024-02-28 14:05:48.478 2024-02-28 14:05:48.478 51300 TIP 441984 16456 6099139 2024-02-28 14:06:43.086 2024-02-28 14:06:43.086 1000 FEE 415643 8506 6099140 2024-02-28 14:06:43.086 2024-02-28 14:06:43.086 9000 TIP 415643 16753 6099142 2024-02-28 14:07:27.914 2024-02-28 14:07:27.914 1000 FEE 416530 14785 6099143 2024-02-28 14:07:27.914 2024-02-28 14:07:27.914 9000 TIP 416530 19335 6099158 2024-02-28 14:08:55.789 2024-02-28 14:08:55.789 1000 FEE 441990 20776 6099170 2024-02-28 14:10:07.509 2024-02-28 14:10:07.509 1000 FEE 441996 925 6099190 2024-02-28 14:11:50.635 2024-02-28 14:11:50.635 500 FEE 441992 20015 6099191 2024-02-28 14:11:50.635 2024-02-28 14:11:50.635 4500 TIP 441992 987 6099230 2024-02-28 14:17:21.676 2024-02-28 14:17:21.676 1000 FEE 442013 1472 6099260 2024-02-28 14:21:23.273 2024-02-28 14:21:23.273 1000 FEE 442021 18380 6099320 2024-02-28 14:24:34.524 2024-02-28 14:24:34.524 7700 FEE 442023 8796 6099321 2024-02-28 14:24:34.524 2024-02-28 14:24:34.524 69300 TIP 442023 11999 6099347 2024-02-28 14:24:45.639 2024-02-28 14:24:45.639 6900 FEE 442023 4502 6099348 2024-02-28 14:24:45.639 2024-02-28 14:24:45.639 62100 TIP 442023 3304 6099376 2024-02-28 14:25:08.054 2024-02-28 14:25:08.054 900 FEE 441836 18630 6099377 2024-02-28 14:25:08.054 2024-02-28 14:25:08.054 8100 TIP 441836 4314 6099380 2024-02-28 14:25:28.423 2024-02-28 14:25:28.423 1000 FEE 441951 13042 6099381 2024-02-28 14:25:28.423 2024-02-28 14:25:28.423 9000 TIP 441951 9816 6099390 2024-02-28 14:25:35.425 2024-02-28 14:25:35.425 400 FEE 442024 19980 6099391 2024-02-28 14:25:35.425 2024-02-28 14:25:35.425 3600 TIP 442024 11288 6099398 2024-02-28 14:25:40.015 2024-02-28 14:25:40.015 1000 FEE 442030 10112 6099401 2024-02-28 14:25:52.635 2024-02-28 14:25:52.635 1000 FEE 441971 980 6099402 2024-02-28 14:25:52.635 2024-02-28 14:25:52.635 9000 TIP 441971 19967 6099410 2024-02-28 14:26:07.51 2024-02-28 14:26:07.51 1000 FEE 441882 8416 6099411 2024-02-28 14:26:07.51 2024-02-28 14:26:07.51 9000 TIP 441882 1326 6099414 2024-02-28 14:26:28.558 2024-02-28 14:26:28.558 3200 FEE 442023 9339 6099415 2024-02-28 14:26:28.558 2024-02-28 14:26:28.558 28800 TIP 442023 14357 6098593 2024-02-28 13:29:14.851 2024-02-28 13:29:14.851 10000 FEE 441915 16289 6098602 2024-02-28 13:30:20.517 2024-02-28 13:30:20.517 1000 FEE 441719 18423 6098603 2024-02-28 13:30:20.517 2024-02-28 13:30:20.517 9000 TIP 441719 11220 6098606 2024-02-28 13:30:26.396 2024-02-28 13:30:26.396 1000 FEE 441917 17392 6098632 2024-02-28 13:31:09.042 2024-02-28 13:31:09.042 2700 FEE 441676 4763 6098633 2024-02-28 13:31:09.042 2024-02-28 13:31:09.042 24300 TIP 441676 19837 6098644 2024-02-28 13:32:40.515 2024-02-28 13:32:40.515 1000 FEE 441920 861 6098645 2024-02-28 13:32:41.971 2024-02-28 13:32:41.971 21000 FEE 441916 20436 6098646 2024-02-28 13:32:41.971 2024-02-28 13:32:41.971 189000 TIP 441916 11942 6098649 2024-02-28 13:32:52.842 2024-02-28 13:32:52.842 1000 FEE 441901 20433 6098650 2024-02-28 13:32:52.842 2024-02-28 13:32:52.842 9000 TIP 441901 6300 6098654 2024-02-28 13:33:20.652 2024-02-28 13:33:20.652 10000 FEE 441921 21424 6098659 2024-02-28 13:33:30.13 2024-02-28 13:33:30.13 500 FEE 441744 18984 6098660 2024-02-28 13:33:30.13 2024-02-28 13:33:30.13 4500 TIP 441744 18769 6098665 2024-02-28 13:33:38.11 2024-02-28 13:33:38.11 500 FEE 440591 11789 6098666 2024-02-28 13:33:38.11 2024-02-28 13:33:38.11 4500 TIP 440591 6526 6098672 2024-02-28 13:34:09.402 2024-02-28 13:34:09.402 21000 FEE 441866 20058 6098673 2024-02-28 13:34:09.402 2024-02-28 13:34:09.402 189000 TIP 441866 20738 6098705 2024-02-28 13:35:50.811 2024-02-28 13:35:50.811 1000 FEE 441923 19126 6098713 2024-02-28 13:37:03.743 2024-02-28 13:37:03.743 100 FEE 441921 2088 6098714 2024-02-28 13:37:03.743 2024-02-28 13:37:03.743 900 TIP 441921 16276 6098728 2024-02-28 13:39:10.289 2024-02-28 13:39:10.289 1000 FEE 441928 19572 6098732 2024-02-28 13:40:10.515 2024-02-28 13:40:10.515 1000 POLL 441660 837 6098765 2024-02-28 13:44:21.323 2024-02-28 13:44:21.323 10000 FEE 441935 1320 6098771 2024-02-28 13:44:44.294 2024-02-28 13:44:44.294 10000 FEE 441937 807 6098886 2024-02-28 13:50:53.806 2024-02-28 13:50:53.806 6900 FEE 441944 16276 6098887 2024-02-28 13:50:53.806 2024-02-28 13:50:53.806 62100 TIP 441944 2829 6098892 2024-02-28 13:50:55.211 2024-02-28 13:50:55.211 6900 FEE 441944 762 6098893 2024-02-28 13:50:55.211 2024-02-28 13:50:55.211 62100 TIP 441944 11678 6098894 2024-02-28 13:50:55.434 2024-02-28 13:50:55.434 6900 FEE 441944 16505 6098895 2024-02-28 13:50:55.434 2024-02-28 13:50:55.434 62100 TIP 441944 19995 6098899 2024-02-28 13:51:01.173 2024-02-28 13:51:01.173 2100 FEE 441664 19243 6098900 2024-02-28 13:51:01.173 2024-02-28 13:51:01.173 18900 TIP 441664 1738 6098904 2024-02-28 13:51:12.08 2024-02-28 13:51:12.08 2100 FEE 441942 21287 6098905 2024-02-28 13:51:12.08 2024-02-28 13:51:12.08 18900 TIP 441942 20110 6098909 2024-02-28 13:51:27.398 2024-02-28 13:51:27.398 27900 FEE 441843 2757 6098910 2024-02-28 13:51:27.398 2024-02-28 13:51:27.398 251100 TIP 441843 10554 6098923 2024-02-28 13:52:07.261 2024-02-28 13:52:07.261 100 FEE 441944 5829 6098924 2024-02-28 13:52:07.261 2024-02-28 13:52:07.261 900 TIP 441944 18271 6098954 2024-02-28 13:53:49.583 2024-02-28 13:53:49.583 10300 FEE 441947 21342 6098955 2024-02-28 13:53:49.583 2024-02-28 13:53:49.583 92700 TIP 441947 657 6098960 2024-02-28 13:54:56.924 2024-02-28 13:54:56.924 6900 FEE 441854 20904 6098961 2024-02-28 13:54:56.924 2024-02-28 13:54:56.924 62100 TIP 441854 10719 6098979 2024-02-28 13:57:52.32 2024-02-28 13:57:52.32 0 FEE 441962 10668 6098985 2024-02-28 13:58:25.917 2024-02-28 13:58:25.917 10000 FEE 441966 657 6099019 2024-02-28 14:01:23.839 2024-02-28 14:01:23.839 100 FEE 441843 15160 6099020 2024-02-28 14:01:23.839 2024-02-28 14:01:23.839 900 TIP 441843 775 6099021 2024-02-28 14:01:24.389 2024-02-28 14:01:24.389 100 FEE 441843 9611 6099022 2024-02-28 14:01:24.389 2024-02-28 14:01:24.389 900 TIP 441843 11091 6099033 2024-02-28 14:01:28.109 2024-02-28 14:01:28.109 100 FEE 441843 2528 6099034 2024-02-28 14:01:28.109 2024-02-28 14:01:28.109 900 TIP 441843 13177 6099050 2024-02-28 14:02:09.627 2024-02-28 14:02:09.627 100 FEE 441949 13042 6099051 2024-02-28 14:02:09.627 2024-02-28 14:02:09.627 900 TIP 441949 4654 6099116 2024-02-28 14:05:12.794 2024-02-28 14:05:12.794 1000 FEE 441983 1740 6099119 2024-02-28 14:05:20.52 2024-02-28 14:05:20.52 1000 FEE 441984 19533 6099138 2024-02-28 14:06:42.492 2024-02-28 14:06:42.492 0 FEE 441985 20964 6099208 2024-02-28 14:14:59.996 2024-02-28 14:14:59.996 100000 FEE 441886 8498 6099209 2024-02-28 14:14:59.996 2024-02-28 14:14:59.996 900000 TIP 441886 19902 6099221 2024-02-28 14:15:44.764 2024-02-28 14:15:44.764 2100 FEE 441917 15577 6099222 2024-02-28 14:15:44.764 2024-02-28 14:15:44.764 18900 TIP 441917 21044 6098664 2024-02-28 13:33:36.104 2024-02-28 13:33:36.104 4500 TIP 440423 20704 6098667 2024-02-28 13:33:45.251 2024-02-28 13:33:45.251 500 FEE 441915 2529 6098668 2024-02-28 13:33:45.251 2024-02-28 13:33:45.251 4500 TIP 441915 7553 6098669 2024-02-28 13:33:54.979 2024-02-28 13:33:54.979 500 FEE 441843 5538 6098670 2024-02-28 13:33:54.979 2024-02-28 13:33:54.979 4500 TIP 441843 5806 6098699 2024-02-28 13:35:33.15 2024-02-28 13:35:33.15 500 FEE 441815 9906 6098700 2024-02-28 13:35:33.15 2024-02-28 13:35:33.15 4500 TIP 441815 1983 6098710 2024-02-28 13:36:59.514 2024-02-28 13:36:59.514 100 FEE 441922 14941 6098711 2024-02-28 13:36:59.514 2024-02-28 13:36:59.514 900 TIP 441922 20560 6098719 2024-02-28 13:37:54.907 2024-02-28 13:37:54.907 10000 FEE 441895 16212 6098720 2024-02-28 13:37:54.907 2024-02-28 13:37:54.907 90000 TIP 441895 9844 6098734 2024-02-28 13:41:17.603 2024-02-28 13:41:17.603 5000 FEE 441533 3411 6098735 2024-02-28 13:41:17.603 2024-02-28 13:41:17.603 45000 TIP 441533 6594 6098739 2024-02-28 13:41:28.8 2024-02-28 13:41:28.8 1000 FEE 441929 8916 6098742 2024-02-28 13:42:41.914 2024-02-28 13:42:41.914 1000 FEE 441931 19839 6098743 2024-02-28 13:42:41.947 2024-02-28 13:42:41.947 7700 FEE 441917 894 6098744 2024-02-28 13:42:41.947 2024-02-28 13:42:41.947 69300 TIP 441917 986 6098745 2024-02-28 13:42:43.915 2024-02-28 13:42:43.915 10000 FEE 441238 19660 6098746 2024-02-28 13:42:43.915 2024-02-28 13:42:43.915 90000 TIP 441238 9261 6098754 2024-02-28 13:43:17.981 2024-02-28 13:43:17.981 21000 FEE 441772 21494 6098755 2024-02-28 13:43:17.981 2024-02-28 13:43:17.981 189000 TIP 441772 21373 6098792 2024-02-28 13:47:23.643 2024-02-28 13:47:23.643 7700 FEE 441613 19018 6098793 2024-02-28 13:47:23.643 2024-02-28 13:47:23.643 69300 TIP 441613 20504 6098805 2024-02-28 13:48:44.991 2024-02-28 13:48:44.991 21000 FEE 441944 21194 6098806 2024-02-28 13:48:44.991 2024-02-28 13:48:44.991 25000000 BOOST 441944 3478 6098829 2024-02-28 13:49:39.719 2024-02-28 13:49:39.719 7700 FEE 441944 1658 6098830 2024-02-28 13:49:39.719 2024-02-28 13:49:39.719 69300 TIP 441944 6688 6098839 2024-02-28 13:49:40.418 2024-02-28 13:49:40.418 7700 FEE 441944 7673 6098840 2024-02-28 13:49:40.418 2024-02-28 13:49:40.418 69300 TIP 441944 12169 6098841 2024-02-28 13:49:40.457 2024-02-28 13:49:40.457 7700 FEE 441944 18618 6098842 2024-02-28 13:49:40.457 2024-02-28 13:49:40.457 69300 TIP 441944 14278 6098867 2024-02-28 13:49:42.522 2024-02-28 13:49:42.522 7700 FEE 441944 782 6098868 2024-02-28 13:49:42.522 2024-02-28 13:49:42.522 69300 TIP 441944 19335 6098903 2024-02-28 13:51:08.787 2024-02-28 13:51:08.787 1000 FEE 441952 4984 6098913 2024-02-28 13:51:53.72 2024-02-28 13:51:53.72 100000 FEE 441954 10409 6098919 2024-02-28 13:52:05.903 2024-02-28 13:52:05.903 2100 FEE 441649 1180 6098920 2024-02-28 13:52:05.903 2024-02-28 13:52:05.903 18900 TIP 441649 15463 6098949 2024-02-28 13:53:25.674 2024-02-28 13:53:25.674 1000 FEE 441958 21430 6098952 2024-02-28 13:53:43.073 2024-02-28 13:53:43.073 600 FEE 441947 18470 6098953 2024-02-28 13:53:43.073 2024-02-28 13:53:43.073 5400 TIP 441947 18402 6098964 2024-02-28 13:55:19.939 2024-02-28 13:55:19.939 2100 FEE 441733 5703 6098965 2024-02-28 13:55:19.939 2024-02-28 13:55:19.939 18900 TIP 441733 18581 6098967 2024-02-28 13:55:44.495 2024-02-28 13:55:44.495 279000 FEE 441843 2513 6098968 2024-02-28 13:55:44.495 2024-02-28 13:55:44.495 2511000 TIP 441843 1136 6098988 2024-02-28 13:58:59.254 2024-02-28 13:58:59.254 3100 FEE 441864 18930 6098989 2024-02-28 13:58:59.254 2024-02-28 13:58:59.254 27900 TIP 441864 4802 6099029 2024-02-28 14:01:26.852 2024-02-28 14:01:26.852 100 FEE 441843 18829 6099030 2024-02-28 14:01:26.852 2024-02-28 14:01:26.852 900 TIP 441843 17365 6099039 2024-02-28 14:01:39.52 2024-02-28 14:01:39.52 1100 FEE 441586 8004 6099040 2024-02-28 14:01:39.52 2024-02-28 14:01:39.52 9900 TIP 441586 18830 6099071 2024-02-28 14:02:47.652 2024-02-28 14:02:47.652 7700 FEE 441974 20973 6099072 2024-02-28 14:02:47.652 2024-02-28 14:02:47.652 69300 TIP 441974 2213 6099086 2024-02-28 14:03:34.879 2024-02-28 14:03:34.879 1000 FEE 441978 2330 6099122 2024-02-28 14:05:45.895 2024-02-28 14:05:45.895 1000 FEE 441985 19018 6099132 2024-02-28 14:06:03.62 2024-02-28 14:06:03.62 2100 FEE 441719 7587 6099133 2024-02-28 14:06:03.62 2024-02-28 14:06:03.62 18900 TIP 441719 15161 6099167 2024-02-28 14:09:59.433 2024-02-28 14:09:59.433 10000 FEE 441994 11165 6099180 2024-02-28 14:10:43.266 2024-02-28 14:10:43.266 2700 FEE 441894 13249 6099181 2024-02-28 14:10:43.266 2024-02-28 14:10:43.266 24300 TIP 441894 21058 6099195 2024-02-28 14:12:07.142 2024-02-28 14:12:07.142 1000 FEE 442002 20757 6099197 2024-02-28 14:12:30.452 2024-02-28 14:12:30.452 10000 FEE 442003 19118 6099206 2024-02-28 14:14:12.141 2024-02-28 14:14:12.141 1000 FEE 442007 20306 6099207 2024-02-28 14:14:58.281 2024-02-28 14:14:58.281 1000 POLL 441660 15544 6099212 2024-02-28 14:15:06.976 2024-02-28 14:15:06.976 1000 FEE 442009 20691 6099229 2024-02-28 14:17:19.732 2024-02-28 14:17:19.732 1000 FEE 442012 2681 6099242 2024-02-28 14:19:42.407 2024-02-28 14:19:42.407 0 FEE 442015 2151 6099243 2024-02-28 14:19:56.779 2024-02-28 14:19:56.779 1000 FEE 442017 18500 6099244 2024-02-28 14:20:02.191 2024-02-28 14:20:02.191 1000 FEE 442018 8985 6099256 2024-02-28 14:21:09.305 2024-02-28 14:21:09.305 2100 FEE 441815 1472 6099257 2024-02-28 14:21:09.305 2024-02-28 14:21:09.305 18900 TIP 441815 977 6099264 2024-02-28 14:21:37.157 2024-02-28 14:21:37.157 500 FEE 441660 1090 6099265 2024-02-28 14:21:37.157 2024-02-28 14:21:37.157 4500 TIP 441660 19535 6099306 2024-02-28 14:24:32.731 2024-02-28 14:24:32.731 15400 FEE 442023 21269 6099307 2024-02-28 14:24:32.731 2024-02-28 14:24:32.731 138600 TIP 442023 1552 6099343 2024-02-28 14:24:43.753 2024-02-28 14:24:43.753 1100 FEE 442019 1354 6099344 2024-02-28 14:24:43.753 2024-02-28 14:24:43.753 9900 TIP 442019 16942 6099345 2024-02-28 14:24:45.243 2024-02-28 14:24:45.243 6900 FEE 442023 20757 6099346 2024-02-28 14:24:45.243 2024-02-28 14:24:45.243 62100 TIP 442023 12769 6099351 2024-02-28 14:24:46.079 2024-02-28 14:24:46.079 6900 FEE 442023 19281 6099352 2024-02-28 14:24:46.079 2024-02-28 14:24:46.079 62100 TIP 442023 5538 6099353 2024-02-28 14:24:46.098 2024-02-28 14:24:46.098 6900 FEE 442023 13097 6099354 2024-02-28 14:24:46.098 2024-02-28 14:24:46.098 62100 TIP 442023 19795 6099361 2024-02-28 14:24:47.138 2024-02-28 14:24:47.138 6900 FEE 442023 20663 6099362 2024-02-28 14:24:47.138 2024-02-28 14:24:47.138 62100 TIP 442023 2196 6099365 2024-02-28 14:24:47.405 2024-02-28 14:24:47.405 6900 FEE 442023 19690 6099366 2024-02-28 14:24:47.405 2024-02-28 14:24:47.405 62100 TIP 442023 15536 6099367 2024-02-28 14:24:47.505 2024-02-28 14:24:47.505 6900 FEE 442023 19005 6099368 2024-02-28 14:24:47.505 2024-02-28 14:24:47.505 62100 TIP 442023 19243 6099396 2024-02-28 14:25:38.764 2024-02-28 14:25:38.764 400 FEE 442027 15833 6099397 2024-02-28 14:25:38.764 2024-02-28 14:25:38.764 3600 TIP 442027 13622 6099420 2024-02-28 14:28:09.319 2024-02-28 14:28:09.319 1000 FEE 442031 21287 6099449 2024-02-28 14:29:06.786 2024-02-28 14:29:06.786 1000 FEE 441843 15806 6099450 2024-02-28 14:29:06.786 2024-02-28 14:29:06.786 9000 TIP 441843 21033 6099491 2024-02-28 14:31:52.501 2024-02-28 14:31:52.501 100 FEE 442038 17592 6099492 2024-02-28 14:31:52.501 2024-02-28 14:31:52.501 900 TIP 442038 21523 6099504 2024-02-28 14:32:27.752 2024-02-28 14:32:27.752 10000 FEE 442033 16809 6099505 2024-02-28 14:32:27.752 2024-02-28 14:32:27.752 90000 TIP 442033 3377 6099507 2024-02-28 14:32:42.534 2024-02-28 14:32:42.534 2100 FEE 442042 8664 6099508 2024-02-28 14:32:42.534 2024-02-28 14:32:42.534 18900 TIP 442042 16178 6099524 2024-02-28 14:33:16.915 2024-02-28 14:33:16.915 10000 FEE 442048 1213 6099530 2024-02-28 14:33:41.557 2024-02-28 14:33:41.557 2100 FEE 442010 1493 6098708 2024-02-28 13:36:04.487 2024-02-28 13:36:04.487 1000 STREAM 141924 11956 6098727 2024-02-28 13:39:02.797 2024-02-28 13:39:02.797 1000 STREAM 141924 16348 6098729 2024-02-28 13:40:02.795 2024-02-28 13:40:02.795 1000 STREAM 141924 661 6098733 2024-02-28 13:41:04.472 2024-02-28 13:41:04.472 1000 STREAM 141924 3656 6099079 2024-02-28 14:03:04.607 2024-02-28 14:03:04.607 1000 STREAM 141924 14267 6098740 2024-02-28 13:42:02.954 2024-02-28 13:42:02.954 1000 STREAM 141924 21060 6098777 2024-02-28 13:46:03.028 2024-02-28 13:46:03.028 1000 STREAM 141924 19282 6098800 2024-02-28 13:48:03.044 2024-02-28 13:48:03.044 1000 STREAM 141924 21374 6098882 2024-02-28 13:50:03.101 2024-02-28 13:50:03.101 1000 STREAM 141924 11873 6098751 2024-02-28 13:43:02.974 2024-02-28 13:43:02.974 1000 STREAM 141924 13781 6098762 2024-02-28 13:44:02.992 2024-02-28 13:44:02.992 1000 STREAM 141924 20495 6098902 2024-02-28 13:51:03.082 2024-02-28 13:51:03.082 1000 STREAM 141924 19980 6099095 2024-02-28 14:04:03.177 2024-02-28 14:04:03.177 1000 STREAM 141924 15243 6099152 2024-02-28 14:08:03.179 2024-02-28 14:08:03.179 1000 STREAM 141924 5017 6098773 2024-02-28 13:45:02.879 2024-02-28 13:45:02.879 1000 STREAM 141924 20710 6098962 2024-02-28 13:55:02.936 2024-02-28 13:55:02.936 1000 STREAM 141924 20560 6098983 2024-02-28 13:58:02.973 2024-02-28 13:58:02.973 1000 STREAM 141924 985 6099005 2024-02-28 14:00:03.04 2024-02-28 14:00:03.04 1000 STREAM 141924 21421 6099044 2024-02-28 14:02:02.981 2024-02-28 14:02:02.981 1000 STREAM 141924 746 6099114 2024-02-28 14:05:03.106 2024-02-28 14:05:03.106 1000 STREAM 141924 16284 6099141 2024-02-28 14:07:03.116 2024-02-28 14:07:03.116 1000 STREAM 141924 8416 6099159 2024-02-28 14:09:03.132 2024-02-28 14:09:03.132 1000 STREAM 141924 940 6099184 2024-02-28 14:11:03.157 2024-02-28 14:11:03.157 1000 STREAM 141924 19668 6099194 2024-02-28 14:12:03.157 2024-02-28 14:12:03.157 1000 STREAM 141924 7903 6099198 2024-02-28 14:13:03.14 2024-02-28 14:13:03.14 1000 STREAM 141924 959 6099245 2024-02-28 14:20:03.187 2024-02-28 14:20:03.187 1000 STREAM 141924 7773 6099254 2024-02-28 14:21:03.185 2024-02-28 14:21:03.185 1000 STREAM 141924 20706 6099275 2024-02-28 14:22:03.189 2024-02-28 14:22:03.189 1000 STREAM 141924 21365 6099405 2024-02-28 14:26:03.224 2024-02-28 14:26:03.224 1000 STREAM 141924 2390 6099416 2024-02-28 14:27:03.216 2024-02-28 14:27:03.216 1000 STREAM 141924 9758 6099419 2024-02-28 14:28:03.23 2024-02-28 14:28:03.23 1000 STREAM 141924 19501 6099520 2024-02-28 14:33:03.227 2024-02-28 14:33:03.227 1000 STREAM 141924 18454 6099539 2024-02-28 14:34:03.253 2024-02-28 14:34:03.253 1000 STREAM 141924 1519 6099564 2024-02-28 14:35:03.28 2024-02-28 14:35:03.28 1000 STREAM 141924 7675 6099590 2024-02-28 14:37:03.265 2024-02-28 14:37:03.265 1000 STREAM 141924 19661 6099664 2024-02-28 14:40:03.273 2024-02-28 14:40:03.273 1000 STREAM 141924 19465 6099672 2024-02-28 14:41:03.331 2024-02-28 14:41:03.331 1000 STREAM 141924 17522 6099684 2024-02-28 14:43:03.339 2024-02-28 14:43:03.339 1000 STREAM 141924 19033 6099762 2024-02-28 14:47:03.352 2024-02-28 14:47:03.352 1000 STREAM 141924 16432 6099787 2024-02-28 14:48:03.348 2024-02-28 14:48:03.348 1000 STREAM 141924 11714 6099800 2024-02-28 14:49:03.347 2024-02-28 14:49:03.347 1000 STREAM 141924 1141 6099857 2024-02-28 14:54:03.381 2024-02-28 14:54:03.381 1000 STREAM 141924 2514 6099859 2024-02-28 14:55:03.362 2024-02-28 14:55:03.362 1000 STREAM 141924 10668 6099866 2024-02-28 14:56:03.37 2024-02-28 14:56:03.37 1000 STREAM 141924 715 6099871 2024-02-28 14:58:03.377 2024-02-28 14:58:03.377 1000 STREAM 141924 19282 6099884 2024-02-28 15:00:03.392 2024-02-28 15:00:03.392 1000 STREAM 141924 17147 6099901 2024-02-28 15:02:03.385 2024-02-28 15:02:03.385 1000 STREAM 141924 2151 6099965 2024-02-28 15:03:03.38 2024-02-28 15:03:03.38 1000 STREAM 141924 2652 6099975 2024-02-28 15:04:03.398 2024-02-28 15:04:03.398 1000 STREAM 141924 12122 6099999 2024-02-28 15:05:03.396 2024-02-28 15:05:03.396 1000 STREAM 141924 19329 6100188 2024-02-28 15:13:03.432 2024-02-28 15:13:03.432 1000 STREAM 141924 16456 6100222 2024-02-28 15:17:03.447 2024-02-28 15:17:03.447 1000 STREAM 141924 13767 6100335 2024-02-28 15:21:03.469 2024-02-28 15:21:03.469 1000 STREAM 141924 19043 6100385 2024-02-28 15:24:03.468 2024-02-28 15:24:03.468 1000 STREAM 141924 21578 6100501 2024-02-28 15:30:03.645 2024-02-28 15:30:03.645 1000 STREAM 141924 16513 6098778 2024-02-28 13:47:02.889 2024-02-28 13:47:02.889 1000 STREAM 141924 19777 6098810 2024-02-28 13:49:02.895 2024-02-28 13:49:02.895 1000 STREAM 141924 21422 6098918 2024-02-28 13:52:02.925 2024-02-28 13:52:02.925 1000 STREAM 141924 18828 6098945 2024-02-28 13:53:02.92 2024-02-28 13:53:02.92 1000 STREAM 141924 714 6098956 2024-02-28 13:54:02.935 2024-02-28 13:54:02.935 1000 STREAM 141924 20340 6098969 2024-02-28 13:56:02.942 2024-02-28 13:56:02.942 1000 STREAM 141924 14650 6098975 2024-02-28 13:57:02.963 2024-02-28 13:57:02.963 1000 STREAM 141924 16282 6098990 2024-02-28 13:59:02.96 2024-02-28 13:59:02.96 1000 STREAM 141924 8926 6099014 2024-02-28 14:01:02.992 2024-02-28 14:01:02.992 1000 STREAM 141924 4035 6099131 2024-02-28 14:06:03.126 2024-02-28 14:06:03.126 1000 STREAM 141924 617 6099168 2024-02-28 14:10:03.168 2024-02-28 14:10:03.168 1000 STREAM 141924 16229 6099202 2024-02-28 14:14:03.137 2024-02-28 14:14:03.137 1000 STREAM 141924 2013 6099210 2024-02-28 14:15:03.188 2024-02-28 14:15:03.188 1000 STREAM 141924 14255 6099283 2024-02-28 14:23:03.204 2024-02-28 14:23:03.204 1000 STREAM 141924 21466 6099296 2024-02-28 14:24:03.236 2024-02-28 14:24:03.236 1000 STREAM 141924 5646 6099375 2024-02-28 14:25:03.216 2024-02-28 14:25:03.216 1000 STREAM 141924 4323 6099446 2024-02-28 14:29:03.218 2024-02-28 14:29:03.218 1000 STREAM 141924 19174 6099464 2024-02-28 14:30:03.268 2024-02-28 14:30:03.268 1000 STREAM 141924 13097 6099467 2024-02-28 14:31:03.327 2024-02-28 14:31:03.327 1000 STREAM 141924 18119 6099493 2024-02-28 14:32:03.217 2024-02-28 14:32:03.217 1000 STREAM 141924 21627 6099579 2024-02-28 14:36:03.255 2024-02-28 14:36:03.255 1000 STREAM 141924 6419 6099600 2024-02-28 14:38:03.262 2024-02-28 14:38:03.262 1000 STREAM 141924 9655 6099634 2024-02-28 14:39:03.261 2024-02-28 14:39:03.261 1000 STREAM 141924 2963 6099674 2024-02-28 14:42:03.34 2024-02-28 14:42:03.34 1000 STREAM 141924 2537 6099756 2024-02-28 14:46:03.357 2024-02-28 14:46:03.357 1000 STREAM 141924 836 6099827 2024-02-28 14:50:03.357 2024-02-28 14:50:03.357 1000 STREAM 141924 15094 6099836 2024-02-28 14:51:03.448 2024-02-28 14:51:03.448 1000 STREAM 141924 18518 6099849 2024-02-28 14:52:03.352 2024-02-28 14:52:03.352 1000 STREAM 141924 18727 6099851 2024-02-28 14:53:03.352 2024-02-28 14:53:03.352 1000 STREAM 141924 21540 6099869 2024-02-28 14:57:03.375 2024-02-28 14:57:03.375 1000 STREAM 141924 14213 6099878 2024-02-28 14:59:03.381 2024-02-28 14:59:03.381 1000 STREAM 141924 20208 6099898 2024-02-28 15:01:03.399 2024-02-28 15:01:03.399 1000 STREAM 141924 19154 6100028 2024-02-28 15:06:03.394 2024-02-28 15:06:03.394 1000 STREAM 141924 16356 6100067 2024-02-28 15:07:03.405 2024-02-28 15:07:03.405 1000 STREAM 141924 1490 6100112 2024-02-28 15:08:03.413 2024-02-28 15:08:03.413 1000 STREAM 141924 1428 6100166 2024-02-28 15:10:03.423 2024-02-28 15:10:03.423 1000 STREAM 141924 21044 6100180 2024-02-28 15:11:03.429 2024-02-28 15:11:03.429 1000 STREAM 141924 1006 6100212 2024-02-28 15:15:03.437 2024-02-28 15:15:03.437 1000 STREAM 141924 1577 6100214 2024-02-28 15:16:03.447 2024-02-28 15:16:03.447 1000 STREAM 141924 1733 6100248 2024-02-28 15:18:03.589 2024-02-28 15:18:03.589 1000 STREAM 141924 959 6100273 2024-02-28 15:19:03.452 2024-02-28 15:19:03.452 1000 STREAM 141924 9345 6100363 2024-02-28 15:23:03.469 2024-02-28 15:23:03.469 1000 STREAM 141924 10821 6100405 2024-02-28 15:25:03.473 2024-02-28 15:25:03.473 1000 STREAM 141924 964 6100425 2024-02-28 15:26:03.479 2024-02-28 15:26:03.479 1000 STREAM 141924 9992 6100447 2024-02-28 15:27:03.473 2024-02-28 15:27:03.473 1000 STREAM 141924 12277 6100472 2024-02-28 15:28:03.488 2024-02-28 15:28:03.488 1000 STREAM 141924 8544 6100490 2024-02-28 15:29:03.487 2024-02-28 15:29:03.487 1000 STREAM 141924 1135 6100545 2024-02-28 15:32:03.49 2024-02-28 15:32:03.49 1000 STREAM 141924 15367 6100621 2024-02-28 15:35:03.517 2024-02-28 15:35:03.517 1000 STREAM 141924 1596 6101014 2024-02-28 15:54:03.592 2024-02-28 15:54:03.592 1000 STREAM 141924 16684 6098822 2024-02-28 13:49:39.243 2024-02-28 13:49:39.243 69300 TIP 441944 2431 6098833 2024-02-28 13:49:39.988 2024-02-28 13:49:39.988 7700 FEE 441944 20310 6098834 2024-02-28 13:49:39.988 2024-02-28 13:49:39.988 69300 TIP 441944 20264 6098873 2024-02-28 13:49:43.474 2024-02-28 13:49:43.474 7700 FEE 441944 18583 6098874 2024-02-28 13:49:43.474 2024-02-28 13:49:43.474 69300 TIP 441944 14552 6098875 2024-02-28 13:49:43.893 2024-02-28 13:49:43.893 7700 FEE 441944 14258 6098876 2024-02-28 13:49:43.893 2024-02-28 13:49:43.893 69300 TIP 441944 698 6098916 2024-02-28 13:52:01.403 2024-02-28 13:52:01.403 500 FEE 441952 18995 6098917 2024-02-28 13:52:01.403 2024-02-28 13:52:01.403 4500 TIP 441952 17827 6098939 2024-02-28 13:52:21.662 2024-02-28 13:52:21.662 5000 FEE 441699 16809 6098940 2024-02-28 13:52:21.662 2024-02-28 13:52:21.662 45000 TIP 441699 2519 6098943 2024-02-28 13:52:25.665 2024-02-28 13:52:25.665 100 FEE 441948 12821 6098944 2024-02-28 13:52:25.665 2024-02-28 13:52:25.665 900 TIP 441948 21048 6098973 2024-02-28 13:56:47.752 2024-02-28 13:56:47.752 1000 FEE 441962 20963 6098982 2024-02-28 13:57:59.547 2024-02-28 13:57:59.547 1000 POLL 440725 20642 6099008 2024-02-28 14:00:08.77 2024-02-28 14:00:08.77 1000 FEE 441972 21083 6099011 2024-02-28 14:00:35.693 2024-02-28 14:00:35.693 1000 FEE 441973 9342 6099041 2024-02-28 14:01:40.293 2024-02-28 14:01:40.293 2100 FEE 441968 6003 6099042 2024-02-28 14:01:40.293 2024-02-28 14:01:40.293 18900 TIP 441968 937 6099046 2024-02-28 14:02:09.167 2024-02-28 14:02:09.167 100 FEE 441949 18453 6099047 2024-02-28 14:02:09.167 2024-02-28 14:02:09.167 900 TIP 441949 1836 6099052 2024-02-28 14:02:09.851 2024-02-28 14:02:09.851 100 FEE 441949 618 6099053 2024-02-28 14:02:09.851 2024-02-28 14:02:09.851 900 TIP 441949 2577 6099105 2024-02-28 14:04:42.821 2024-02-28 14:04:42.821 10000 FEE 441592 8176 6099106 2024-02-28 14:04:42.821 2024-02-28 14:04:42.821 90000 TIP 441592 2046 6099109 2024-02-28 14:04:48.274 2024-02-28 14:04:48.274 5000 FEE 441976 21026 6099110 2024-02-28 14:04:48.274 2024-02-28 14:04:48.274 45000 TIP 441976 2361 6099117 2024-02-28 14:05:12.805 2024-02-28 14:05:12.805 2100 FEE 441978 4014 6099118 2024-02-28 14:05:12.805 2024-02-28 14:05:12.805 18900 TIP 441978 13042 6099129 2024-02-28 14:06:01.423 2024-02-28 14:06:01.423 2100 FEE 441315 17800 6099130 2024-02-28 14:06:01.423 2024-02-28 14:06:01.423 18900 TIP 441315 9985 6099136 2024-02-28 14:06:29.314 2024-02-28 14:06:29.314 1000 FEE 441975 21026 6099137 2024-02-28 14:06:29.314 2024-02-28 14:06:29.314 9000 TIP 441975 17602 6099146 2024-02-28 14:07:44.012 2024-02-28 14:07:44.012 100 FEE 441968 640 6099147 2024-02-28 14:07:44.012 2024-02-28 14:07:44.012 900 TIP 441968 20272 6099156 2024-02-28 14:08:53.775 2024-02-28 14:08:53.775 1000000 FEE 441986 3392 6099157 2024-02-28 14:08:53.775 2024-02-28 14:08:53.775 9000000 TIP 441986 3400 6099160 2024-02-28 14:09:10.589 2024-02-28 14:09:10.589 1000 FEE 441991 6058 6099169 2024-02-28 14:10:03.682 2024-02-28 14:10:03.682 1000 FEE 441995 2061 6099174 2024-02-28 14:10:42.317 2024-02-28 14:10:42.317 2700 FEE 441894 18313 6099175 2024-02-28 14:10:42.317 2024-02-28 14:10:42.317 24300 TIP 441894 2776 6099189 2024-02-28 14:11:38.316 2024-02-28 14:11:38.316 1000 FEE 442001 17817 6099192 2024-02-28 14:11:53.832 2024-02-28 14:11:53.832 500 FEE 441981 7760 6099193 2024-02-28 14:11:53.832 2024-02-28 14:11:53.832 4500 TIP 441981 6741 6099204 2024-02-28 14:14:09.277 2024-02-28 14:14:09.277 2100 FEE 441991 5129 6099205 2024-02-28 14:14:09.277 2024-02-28 14:14:09.277 18900 TIP 441991 20623 6099213 2024-02-28 14:15:10.944 2024-02-28 14:15:10.944 2100 FEE 441993 10586 6099214 2024-02-28 14:15:10.944 2024-02-28 14:15:10.944 18900 TIP 441993 20973 6099215 2024-02-28 14:15:18.325 2024-02-28 14:15:18.325 12800 FEE 441843 1298 6099216 2024-02-28 14:15:18.325 2024-02-28 14:15:18.325 115200 TIP 441843 20924 6099225 2024-02-28 14:16:43.728 2024-02-28 14:16:43.728 1600 FEE 441968 4378 6099226 2024-02-28 14:16:43.728 2024-02-28 14:16:43.728 14400 TIP 441968 19352 6099231 2024-02-28 14:17:46.702 2024-02-28 14:17:46.702 21000 FEE 442005 16309 6099232 2024-02-28 14:17:46.702 2024-02-28 14:17:46.702 189000 TIP 442005 21466 6099234 2024-02-28 14:18:14.521 2024-02-28 14:18:14.521 1000 FEE 442014 794 6099237 2024-02-28 14:19:10.465 2024-02-28 14:19:10.465 1000 FEE 442015 16194 6099280 2024-02-28 14:22:34.974 2024-02-28 14:22:34.974 1000 FEE 442025 1120 6099293 2024-02-28 14:23:43.527 2024-02-28 14:23:43.527 5000 FEE 442009 5036 6099294 2024-02-28 14:23:43.527 2024-02-28 14:23:43.527 45000 TIP 442009 2322 6099318 2024-02-28 14:24:34.444 2024-02-28 14:24:34.444 7700 FEE 442023 2508 6099319 2024-02-28 14:24:34.444 2024-02-28 14:24:34.444 69300 TIP 442023 4126 6099326 2024-02-28 14:24:34.982 2024-02-28 14:24:34.982 7700 FEE 442023 2309 6098911 2024-02-28 13:51:47.984 2024-02-28 13:51:47.984 100 FEE 441952 27 6098912 2024-02-28 13:51:47.984 2024-02-28 13:51:47.984 900 TIP 441952 986 6098925 2024-02-28 13:52:08.341 2024-02-28 13:52:08.341 100 FEE 441944 16717 6098926 2024-02-28 13:52:08.341 2024-02-28 13:52:08.341 900 TIP 441944 1286 6098931 2024-02-28 13:52:08.945 2024-02-28 13:52:08.945 2100 FEE 441953 20058 6098932 2024-02-28 13:52:08.945 2024-02-28 13:52:08.945 18900 TIP 441953 20120 6098951 2024-02-28 13:53:36.883 2024-02-28 13:53:36.883 1000 FEE 441959 17001 6098963 2024-02-28 13:55:16.329 2024-02-28 13:55:16.329 1000 FEE 441961 1806 6098993 2024-02-28 13:59:12.18 2024-02-28 13:59:12.18 0 FEE 441959 2342 6098996 2024-02-28 13:59:28.067 2024-02-28 13:59:28.067 27900 FEE 441871 1602 6098997 2024-02-28 13:59:28.067 2024-02-28 13:59:28.067 251100 TIP 441871 15484 6099007 2024-02-28 14:00:05.142 2024-02-28 14:00:05.142 1000 FEE 441971 1291 6099009 2024-02-28 14:00:33.534 2024-02-28 14:00:33.534 5700 FEE 441951 15890 6099010 2024-02-28 14:00:33.534 2024-02-28 14:00:33.534 51300 TIP 441951 18378 6099025 2024-02-28 14:01:25.664 2024-02-28 14:01:25.664 100 FEE 441843 10359 6099026 2024-02-28 14:01:25.664 2024-02-28 14:01:25.664 900 TIP 441843 19320 6099056 2024-02-28 14:02:29.021 2024-02-28 14:02:29.021 1000 FEE 441950 17042 6099057 2024-02-28 14:02:29.021 2024-02-28 14:02:29.021 9000 TIP 441950 18909 6099100 2024-02-28 14:04:11.881 2024-02-28 14:04:11.881 1000 FEE 441979 17798 6099115 2024-02-28 14:05:11.29 2024-02-28 14:05:11.29 1000 FEE 441982 1208 6099125 2024-02-28 14:05:57.565 2024-02-28 14:05:57.565 1000 FEE 441986 19138 6099134 2024-02-28 14:06:17.133 2024-02-28 14:06:17.133 2100 FEE 441851 5746 6099135 2024-02-28 14:06:17.133 2024-02-28 14:06:17.133 18900 TIP 441851 1180 6099144 2024-02-28 14:07:39.868 2024-02-28 14:07:39.868 100 FEE 441975 15239 6099145 2024-02-28 14:07:39.868 2024-02-28 14:07:39.868 900 TIP 441975 18736 6099162 2024-02-28 14:09:19.485 2024-02-28 14:09:19.485 1000 FEE 441993 16684 6099163 2024-02-28 14:09:53.762 2024-02-28 14:09:53.762 2100 FEE 441958 2514 6099164 2024-02-28 14:09:53.762 2024-02-28 14:09:53.762 18900 TIP 441958 12024 6099165 2024-02-28 14:09:55.725 2024-02-28 14:09:55.725 2100 FEE 441962 20502 6099166 2024-02-28 14:09:55.725 2024-02-28 14:09:55.725 18900 TIP 441962 21416 6099171 2024-02-28 14:10:15.527 2024-02-28 14:10:15.527 100 FEE 441970 1836 6099172 2024-02-28 14:10:15.527 2024-02-28 14:10:15.527 900 TIP 441970 11075 6099173 2024-02-28 14:10:36.237 2024-02-28 14:10:36.237 1000 FEE 441997 21356 6099178 2024-02-28 14:10:42.729 2024-02-28 14:10:42.729 2700 FEE 441894 6471 6099179 2024-02-28 14:10:42.729 2024-02-28 14:10:42.729 24300 TIP 441894 18664 6099200 2024-02-28 14:13:10.174 2024-02-28 14:13:10.174 0 FEE 442003 18774 6099203 2024-02-28 14:14:05.623 2024-02-28 14:14:05.623 1000 FEE 442006 4768 6099258 2024-02-28 14:21:12.507 2024-02-28 14:21:12.507 3100 FEE 442012 19857 6099259 2024-02-28 14:21:12.507 2024-02-28 14:21:12.507 27900 TIP 442012 11164 6099268 2024-02-28 14:21:48.995 2024-02-28 14:21:48.995 2100 FEE 441749 4798 6099269 2024-02-28 14:21:48.995 2024-02-28 14:21:48.995 18900 TIP 441749 1175 6099288 2024-02-28 14:23:29.011 2024-02-28 14:23:29.011 1000 FEE 442026 19809 6099295 2024-02-28 14:24:00.227 2024-02-28 14:24:00.227 1000 FEE 442027 10273 6099301 2024-02-28 14:24:06.762 2024-02-28 14:24:06.762 1000 FEE 441978 10731 6099302 2024-02-28 14:24:06.762 2024-02-28 14:24:06.762 9000 TIP 441978 18626 6099324 2024-02-28 14:24:34.773 2024-02-28 14:24:34.773 7700 FEE 442023 9352 6099325 2024-02-28 14:24:34.773 2024-02-28 14:24:34.773 69300 TIP 442023 1316 6099338 2024-02-28 14:24:36.342 2024-02-28 14:24:36.342 7700 FEE 442023 8726 6099339 2024-02-28 14:24:36.342 2024-02-28 14:24:36.342 69300 TIP 442023 20990 6099342 2024-02-28 14:24:42.544 2024-02-28 14:24:42.544 1000 FEE 442028 1064 6099349 2024-02-28 14:24:45.664 2024-02-28 14:24:45.664 13800 FEE 442023 14785 6099350 2024-02-28 14:24:45.664 2024-02-28 14:24:45.664 124200 TIP 442023 859 6099371 2024-02-28 14:24:47.808 2024-02-28 14:24:47.808 6900 FEE 442023 16665 6099372 2024-02-28 14:24:47.808 2024-02-28 14:24:47.808 62100 TIP 442023 669 6099373 2024-02-28 14:24:47.992 2024-02-28 14:24:47.992 6900 FEE 442023 9341 6099374 2024-02-28 14:24:47.992 2024-02-28 14:24:47.992 62100 TIP 442023 4076 6099378 2024-02-28 14:25:13.928 2024-02-28 14:25:13.928 900 FEE 442019 1609 6099379 2024-02-28 14:25:13.928 2024-02-28 14:25:13.928 8100 TIP 442019 10698 6099399 2024-02-28 14:25:43.157 2024-02-28 14:25:43.157 11100 FEE 442023 1352 6099400 2024-02-28 14:25:43.157 2024-02-28 14:25:43.157 99900 TIP 442023 12779 6099412 2024-02-28 14:26:08.293 2024-02-28 14:26:08.293 1000 FEE 441889 14941 6099413 2024-02-28 14:26:08.293 2024-02-28 14:26:08.293 9000 TIP 441889 18101 6099417 2024-02-28 14:27:12.147 2024-02-28 14:27:12.147 21100 FEE 442023 14255 6099418 2024-02-28 14:27:12.147 2024-02-28 14:27:12.147 189900 TIP 442023 1114 6099427 2024-02-28 14:28:21.762 2024-02-28 14:28:21.762 1000 FEE 441864 940 6099035 2024-02-28 14:01:28.758 2024-02-28 14:01:28.758 100 FEE 441843 21079 6099036 2024-02-28 14:01:28.758 2024-02-28 14:01:28.758 900 TIP 441843 638 6099037 2024-02-28 14:01:29.35 2024-02-28 14:01:29.35 100 FEE 441843 20066 6099038 2024-02-28 14:01:29.35 2024-02-28 14:01:29.35 900 TIP 441843 19810 6099043 2024-02-28 14:01:51.397 2024-02-28 14:01:51.397 10000 FEE 441975 20778 6099045 2024-02-28 14:02:05.238 2024-02-28 14:02:05.238 1000 FEE 441976 1064 6099062 2024-02-28 14:02:32.236 2024-02-28 14:02:32.236 10000 FEE 441977 21040 6099063 2024-02-28 14:02:34.073 2024-02-28 14:02:34.073 2100 FEE 441947 20179 6099064 2024-02-28 14:02:34.073 2024-02-28 14:02:34.073 18900 TIP 441947 9494 6099067 2024-02-28 14:02:37.123 2024-02-28 14:02:37.123 7700 FEE 441974 9494 6099068 2024-02-28 14:02:37.123 2024-02-28 14:02:37.123 69300 TIP 441974 19329 6099084 2024-02-28 14:03:24.045 2024-02-28 14:03:24.045 2100 FEE 441951 827 6099085 2024-02-28 14:03:24.045 2024-02-28 14:03:24.045 18900 TIP 441951 18241 6099096 2024-02-28 14:04:06.407 2024-02-28 14:04:06.407 2100 FEE 441659 4322 6099097 2024-02-28 14:04:06.407 2024-02-28 14:04:06.407 18900 TIP 441659 7966 6099098 2024-02-28 14:04:07.229 2024-02-28 14:04:07.229 2100 FEE 441876 15226 6099099 2024-02-28 14:04:07.229 2024-02-28 14:04:07.229 18900 TIP 441876 1712 6099103 2024-02-28 14:04:40.682 2024-02-28 14:04:40.682 11100 FEE 441975 1626 6099104 2024-02-28 14:04:40.682 2024-02-28 14:04:40.682 99900 TIP 441975 15833 6099111 2024-02-28 14:04:56.961 2024-02-28 14:04:56.961 2100 FEE 441980 17109 6099112 2024-02-28 14:04:56.961 2024-02-28 14:04:56.961 18900 TIP 441980 17522 6099120 2024-02-28 14:05:26.707 2024-02-28 14:05:26.707 2100 FEE 441593 1425 6099121 2024-02-28 14:05:26.707 2024-02-28 14:05:26.707 18900 TIP 441593 19511 6099150 2024-02-28 14:07:50.105 2024-02-28 14:07:50.105 1000 FEE 441988 12049 6099151 2024-02-28 14:08:02.986 2024-02-28 14:08:02.986 21000 DONT_LIKE_THIS 441954 21498 6099153 2024-02-28 14:08:23.256 2024-02-28 14:08:23.256 1000 FEE 441989 21573 6099148 2024-02-28 14:07:48.51 2024-02-28 14:07:48.51 100 FEE 441967 769 6099149 2024-02-28 14:07:48.51 2024-02-28 14:07:48.51 900 TIP 441967 20087 6099154 2024-02-28 14:08:39.971 2024-02-28 14:08:39.971 0 FEE 441989 14669 6099182 2024-02-28 14:10:51.467 2024-02-28 14:10:51.467 1000 POLL 441660 695 6099185 2024-02-28 14:11:09.034 2024-02-28 14:11:09.034 1000 FEE 441999 1002 6099186 2024-02-28 14:11:17.16 2024-02-28 14:11:17.16 1000 FEE 442000 681 6099187 2024-02-28 14:11:32.346 2024-02-28 14:11:32.346 10000 FEE 441843 19446 6099188 2024-02-28 14:11:32.346 2024-02-28 14:11:32.346 90000 TIP 441843 15594 6099217 2024-02-28 14:15:33.626 2024-02-28 14:15:33.626 2100 FEE 441963 20495 6099218 2024-02-28 14:15:33.626 2024-02-28 14:15:33.626 18900 TIP 441963 18727 6099219 2024-02-28 14:15:43.956 2024-02-28 14:15:43.956 1000 FEE 441700 6687 6099220 2024-02-28 14:15:43.956 2024-02-28 14:15:43.956 9000 TIP 441700 9418 6099238 2024-02-28 14:19:24.4 2024-02-28 14:19:24.4 1000 FEE 442016 16214 6099239 2024-02-28 14:19:34.346 2024-02-28 14:19:34.346 0 FEE 442016 3745 6099246 2024-02-28 14:20:15.206 2024-02-28 14:20:15.206 500 FEE 441705 14910 6099247 2024-02-28 14:20:15.206 2024-02-28 14:20:15.206 4500 TIP 441705 9982 6099248 2024-02-28 14:20:25.544 2024-02-28 14:20:25.544 21000 FEE 441968 9337 6099249 2024-02-28 14:20:25.544 2024-02-28 14:20:25.544 189000 TIP 441968 1718 6099250 2024-02-28 14:20:46.78 2024-02-28 14:20:46.78 1100 FEE 441843 18842 6099251 2024-02-28 14:20:46.78 2024-02-28 14:20:46.78 9900 TIP 441843 14152 6099266 2024-02-28 14:21:48.049 2024-02-28 14:21:48.049 100000 FEE 442023 18919 6099267 2024-02-28 14:21:48.049 2024-02-28 14:21:48.049 25000000 BOOST 442023 13143 6099284 2024-02-28 14:23:22.33 2024-02-28 14:23:22.33 2100 FEE 441968 19198 6099285 2024-02-28 14:23:22.33 2024-02-28 14:23:22.33 18900 TIP 441968 696 6099297 2024-02-28 14:24:06.494 2024-02-28 14:24:06.494 1000 FEE 441978 13527 6099298 2024-02-28 14:24:06.494 2024-02-28 14:24:06.494 9000 TIP 441978 20744 6099303 2024-02-28 14:24:10.864 2024-02-28 14:24:10.864 0 FEE 442027 17109 6099312 2024-02-28 14:24:33.931 2024-02-28 14:24:33.931 7700 FEE 442023 19322 6099313 2024-02-28 14:24:33.931 2024-02-28 14:24:33.931 69300 TIP 442023 19156 6099316 2024-02-28 14:24:34.288 2024-02-28 14:24:34.288 7700 FEE 442023 18989 6099317 2024-02-28 14:24:34.288 2024-02-28 14:24:34.288 69300 TIP 442023 18772 6099322 2024-02-28 14:24:34.662 2024-02-28 14:24:34.662 7700 FEE 442023 18448 6099323 2024-02-28 14:24:34.662 2024-02-28 14:24:34.662 69300 TIP 442023 14650 6099363 2024-02-28 14:24:47.267 2024-02-28 14:24:47.267 6900 FEE 442023 5701 6099364 2024-02-28 14:24:47.267 2024-02-28 14:24:47.267 62100 TIP 442023 21239 6099384 2024-02-28 14:25:28.792 2024-02-28 14:25:28.792 1000 FEE 441951 663 6099385 2024-02-28 14:25:28.792 2024-02-28 14:25:28.792 9000 TIP 441951 19381 6099425 2024-02-28 14:28:20.964 2024-02-28 14:28:20.964 1000 FEE 441864 19289 6099426 2024-02-28 14:28:20.964 2024-02-28 14:28:20.964 9000 TIP 441864 14651 6099472 2024-02-28 14:31:24.317 2024-02-28 14:31:24.317 7700 FEE 442033 21088 6099473 2024-02-28 14:31:24.317 2024-02-28 14:31:24.317 69300 TIP 442033 20871 6099497 2024-02-28 14:32:23.506 2024-02-28 14:32:23.506 100 FEE 442035 20450 6099498 2024-02-28 14:32:23.506 2024-02-28 14:32:23.506 900 TIP 442035 20551 6099540 2024-02-28 14:34:03.786 2024-02-28 14:34:03.786 1000 FEE 442023 16194 6099541 2024-02-28 14:34:03.786 2024-02-28 14:34:03.786 9000 TIP 442023 2390 6099555 2024-02-28 14:34:42.453 2024-02-28 14:34:42.453 1000 FEE 442052 736 6099580 2024-02-28 14:36:20.121 2024-02-28 14:36:20.121 2100 FEE 441719 633 6099581 2024-02-28 14:36:20.121 2024-02-28 14:36:20.121 18900 TIP 441719 13399 6099584 2024-02-28 14:36:35.4 2024-02-28 14:36:35.4 1000 FEE 442058 640 6099596 2024-02-28 14:37:56.06 2024-02-28 14:37:56.06 100 FEE 441853 17455 6099597 2024-02-28 14:37:56.06 2024-02-28 14:37:56.06 900 TIP 441853 4415 6099607 2024-02-28 14:38:27.012 2024-02-28 14:38:27.012 1000 FEE 442060 15063 6099624 2024-02-28 14:38:46.798 2024-02-28 14:38:46.798 9000 FEE 441979 3440 6099625 2024-02-28 14:38:46.798 2024-02-28 14:38:46.798 81000 TIP 441979 21494 6099655 2024-02-28 14:39:41.266 2024-02-28 14:39:41.266 3100 FEE 442061 6430 6099656 2024-02-28 14:39:41.266 2024-02-28 14:39:41.266 27900 TIP 442061 5497 6099665 2024-02-28 14:40:28.736 2024-02-28 14:40:28.736 5000 FEE 442052 19469 6099666 2024-02-28 14:40:28.736 2024-02-28 14:40:28.736 45000 TIP 442052 21527 6099676 2024-02-28 14:42:28.881 2024-02-28 14:42:28.881 1000 FEE 442067 19910 6099713 2024-02-28 14:43:55.941 2024-02-28 14:43:55.941 100 FEE 441560 20871 6099714 2024-02-28 14:43:55.941 2024-02-28 14:43:55.941 900 TIP 441560 986 6099719 2024-02-28 14:43:59.949 2024-02-28 14:43:59.949 100 FEE 441742 20509 6099720 2024-02-28 14:43:59.949 2024-02-28 14:43:59.949 900 TIP 441742 16329 6099723 2024-02-28 14:44:01.174 2024-02-28 14:44:01.174 100 FEE 441951 20525 6099724 2024-02-28 14:44:01.174 2024-02-28 14:44:01.174 900 TIP 441951 1631 6099745 2024-02-28 14:45:40.338 2024-02-28 14:45:40.338 1000 FEE 442065 6327 6099746 2024-02-28 14:45:40.338 2024-02-28 14:45:40.338 9000 TIP 442065 675 6099747 2024-02-28 14:45:40.555 2024-02-28 14:45:40.555 1000 FEE 442065 21343 6099748 2024-02-28 14:45:40.555 2024-02-28 14:45:40.555 9000 TIP 442065 7760 6099782 2024-02-28 14:47:47.563 2024-02-28 14:47:47.563 1000 FEE 442082 18862 6099785 2024-02-28 14:48:02.392 2024-02-28 14:48:02.392 500 FEE 441979 21357 6099786 2024-02-28 14:48:02.392 2024-02-28 14:48:02.392 4500 TIP 441979 1468 6099794 2024-02-28 14:48:43.435 2024-02-28 14:48:43.435 1000 FEE 442085 9482 6099801 2024-02-28 14:49:04.473 2024-02-28 14:49:04.473 1000 FEE 442086 20436 6099804 2024-02-28 14:49:10.782 2024-02-28 14:49:10.782 1000 FEE 441843 21539 6099805 2024-02-28 14:49:10.782 2024-02-28 14:49:10.782 9000 TIP 441843 20837 6099834 2024-02-28 14:50:59.956 2024-02-28 14:50:59.956 1000 FEE 441794 21523 6099835 2024-02-28 14:50:59.956 2024-02-28 14:50:59.956 9000 TIP 441794 12819 6099155 2024-02-28 14:08:49.113 2024-02-28 14:08:49.113 0 FEE 441989 19637 6099176 2024-02-28 14:10:42.511 2024-02-28 14:10:42.511 2700 FEE 441894 18772 6099177 2024-02-28 14:10:42.511 2024-02-28 14:10:42.511 24300 TIP 441894 4259 6099183 2024-02-28 14:10:53.344 2024-02-28 14:10:53.344 1000 FEE 441998 1224 6099201 2024-02-28 14:13:56.352 2024-02-28 14:13:56.352 1000 FEE 442005 837 6099211 2024-02-28 14:15:04.242 2024-02-28 14:15:04.242 1000 FEE 442008 18264 6099227 2024-02-28 14:16:48.621 2024-02-28 14:16:48.621 1000 FEE 442011 16665 6099270 2024-02-28 14:21:55.871 2024-02-28 14:21:55.871 1000 FEE 442024 1489 6099274 2024-02-28 14:22:01.474 2024-02-28 14:22:01.474 0 FEE 442024 8459 6099330 2024-02-28 14:24:35.295 2024-02-28 14:24:35.295 7700 FEE 442023 10270 6099331 2024-02-28 14:24:35.295 2024-02-28 14:24:35.295 69300 TIP 442023 854 6099332 2024-02-28 14:24:35.348 2024-02-28 14:24:35.348 7700 FEE 442023 18473 6099333 2024-02-28 14:24:35.348 2024-02-28 14:24:35.348 69300 TIP 442023 20812 6099336 2024-02-28 14:24:36.159 2024-02-28 14:24:36.159 7700 FEE 442023 5487 6099337 2024-02-28 14:24:36.159 2024-02-28 14:24:36.159 69300 TIP 442023 632 6099355 2024-02-28 14:24:46.186 2024-02-28 14:24:46.186 6900 FEE 442023 2519 6099356 2024-02-28 14:24:46.186 2024-02-28 14:24:46.186 62100 TIP 442023 2162 6099382 2024-02-28 14:25:28.628 2024-02-28 14:25:28.628 1000 FEE 441951 5425 6099383 2024-02-28 14:25:28.628 2024-02-28 14:25:28.628 9000 TIP 441951 8841 6099386 2024-02-28 14:25:29.357 2024-02-28 14:25:29.357 1000 FEE 441951 4763 6099387 2024-02-28 14:25:29.357 2024-02-28 14:25:29.357 9000 TIP 441951 5527 6099388 2024-02-28 14:25:29.538 2024-02-28 14:25:29.538 1000 FEE 441951 2577 6099389 2024-02-28 14:25:29.538 2024-02-28 14:25:29.538 9000 TIP 441951 17517 6099408 2024-02-28 14:26:07.168 2024-02-28 14:26:07.168 1000 FEE 441882 12507 6099409 2024-02-28 14:26:07.168 2024-02-28 14:26:07.168 9000 TIP 441882 5752 6099421 2024-02-28 14:28:12.387 2024-02-28 14:28:12.387 500000 FEE 441986 5036 6099422 2024-02-28 14:28:12.387 2024-02-28 14:28:12.387 4500000 TIP 441986 21386 6099429 2024-02-28 14:28:25.497 2024-02-28 14:28:25.497 500000 FEE 441986 21214 6099430 2024-02-28 14:28:25.497 2024-02-28 14:28:25.497 4500000 TIP 441986 20156 6099442 2024-02-28 14:29:01.319 2024-02-28 14:29:01.319 1000 FEE 441959 17095 6099443 2024-02-28 14:29:01.319 2024-02-28 14:29:01.319 9000 TIP 441959 19841 6099447 2024-02-28 14:29:06.02 2024-02-28 14:29:06.02 1000 FEE 441843 14225 6099448 2024-02-28 14:29:06.02 2024-02-28 14:29:06.02 9000 TIP 441843 9099 6099482 2024-02-28 14:31:34.598 2024-02-28 14:31:34.598 15400 FEE 442023 12951 6099483 2024-02-28 14:31:34.598 2024-02-28 14:31:34.598 138600 TIP 442023 20036 6099486 2024-02-28 14:31:35.346 2024-02-28 14:31:35.346 7700 FEE 442023 616 6099487 2024-02-28 14:31:35.346 2024-02-28 14:31:35.346 69300 TIP 442023 1519 6099488 2024-02-28 14:31:35.48 2024-02-28 14:31:35.48 7700 FEE 442023 1985 6099489 2024-02-28 14:31:35.48 2024-02-28 14:31:35.48 69300 TIP 442023 2213 6099509 2024-02-28 14:32:44.559 2024-02-28 14:32:44.559 7700 FEE 441604 650 6099510 2024-02-28 14:32:44.559 2024-02-28 14:32:44.559 69300 TIP 441604 19507 6099534 2024-02-28 14:33:46.383 2024-02-28 14:33:46.383 2100 FEE 441994 16965 6099535 2024-02-28 14:33:46.383 2024-02-28 14:33:46.383 18900 TIP 441994 20646 6099536 2024-02-28 14:33:49.608 2024-02-28 14:33:49.608 1000 FEE 442050 16214 6099548 2024-02-28 14:34:33.32 2024-02-28 14:34:33.32 1000 FEE 442051 11776 6099551 2024-02-28 14:34:39.1 2024-02-28 14:34:39.1 400 FEE 439002 15045 6099552 2024-02-28 14:34:39.1 2024-02-28 14:34:39.1 3600 TIP 439002 21040 6099570 2024-02-28 14:35:25.003 2024-02-28 14:35:25.003 2100 FEE 441840 8269 6099571 2024-02-28 14:35:25.003 2024-02-28 14:35:25.003 18900 TIP 441840 12768 6099582 2024-02-28 14:36:34.634 2024-02-28 14:36:34.634 10000 FEE 441828 18751 6099583 2024-02-28 14:36:34.634 2024-02-28 14:36:34.634 90000 TIP 441828 15526 6099635 2024-02-28 14:39:04.275 2024-02-28 14:39:04.275 1000 FEE 442061 641 6099644 2024-02-28 14:39:11.848 2024-02-28 14:39:11.848 2100 FEE 432102 21218 6099645 2024-02-28 14:39:11.848 2024-02-28 14:39:11.848 18900 TIP 432102 2042 6099650 2024-02-28 14:39:19.26 2024-02-28 14:39:19.26 2100 FEE 423147 3392 6099651 2024-02-28 14:39:19.26 2024-02-28 14:39:19.26 18900 TIP 423147 21573 6099652 2024-02-28 14:39:25.64 2024-02-28 14:39:25.64 2100 FEE 422978 1596 6099653 2024-02-28 14:39:25.64 2024-02-28 14:39:25.64 18900 TIP 422978 18448 6099678 2024-02-28 14:42:43.859 2024-02-28 14:42:43.859 100000 FEE 442065 21472 6099679 2024-02-28 14:42:43.859 2024-02-28 14:42:43.859 900000 TIP 442065 20775 6099689 2024-02-28 14:43:16.197 2024-02-28 14:43:16.197 1000 FEE 441854 5852 6099690 2024-02-28 14:43:16.197 2024-02-28 14:43:16.197 9000 TIP 441854 5444 6099741 2024-02-28 14:45:39.97 2024-02-28 14:45:39.97 1000 FEE 442065 14941 6099742 2024-02-28 14:45:39.97 2024-02-28 14:45:39.97 9000 TIP 442065 20090 6099743 2024-02-28 14:45:40.173 2024-02-28 14:45:40.173 1000 FEE 442065 21048 6099744 2024-02-28 14:45:40.173 2024-02-28 14:45:40.173 9000 TIP 442065 20129 6099761 2024-02-28 14:47:01.41 2024-02-28 14:47:01.41 1000 FEE 442077 21274 6099790 2024-02-28 14:48:28.407 2024-02-28 14:48:28.407 0 FEE 442078 10821 6099810 2024-02-28 14:49:21.314 2024-02-28 14:49:21.314 10000 FEE 442077 7682 6099811 2024-02-28 14:49:21.314 2024-02-28 14:49:21.314 90000 TIP 442077 746 6099819 2024-02-28 14:49:39.394 2024-02-28 14:49:39.394 10000 FEE 442078 9109 6099820 2024-02-28 14:49:39.394 2024-02-28 14:49:39.394 90000 TIP 442078 695 6099823 2024-02-28 14:49:55.639 2024-02-28 14:49:55.639 2100 FEE 442069 20730 6099824 2024-02-28 14:49:55.639 2024-02-28 14:49:55.639 18900 TIP 442069 9992 6099829 2024-02-28 14:50:21.398 2024-02-28 14:50:21.398 3400 FEE 440855 14295 6099830 2024-02-28 14:50:21.398 2024-02-28 14:50:21.398 30600 TIP 440855 21104 6099831 2024-02-28 14:50:28.712 2024-02-28 14:50:28.712 0 FEE 442088 20646 6099840 2024-02-28 14:51:25.119 2024-02-28 14:51:25.119 1000 FEE 442092 17690 6099885 2024-02-28 15:00:04.733 2024-02-28 15:00:04.733 100000 FEE 442102 17455 6099886 2024-02-28 15:00:05.365 2024-02-28 15:00:05.365 1000 FEE 442103 19471 6099925 2024-02-28 15:02:17.109 2024-02-28 15:02:17.109 500 FEE 441428 16649 6099926 2024-02-28 15:02:17.109 2024-02-28 15:02:17.109 4500 TIP 441428 11716 6099927 2024-02-28 15:02:17.561 2024-02-28 15:02:17.561 500 FEE 441428 19886 6099928 2024-02-28 15:02:17.561 2024-02-28 15:02:17.561 4500 TIP 441428 15560 6099931 2024-02-28 15:02:17.733 2024-02-28 15:02:17.733 500 FEE 441428 14857 6099932 2024-02-28 15:02:17.733 2024-02-28 15:02:17.733 4500 TIP 441428 18368 6099939 2024-02-28 15:02:21.806 2024-02-28 15:02:21.806 1100 FEE 442023 16354 6099940 2024-02-28 15:02:21.806 2024-02-28 15:02:21.806 9900 TIP 442023 14818 6099944 2024-02-28 15:02:30.512 2024-02-28 15:02:30.512 1100 FEE 441983 20751 6099945 2024-02-28 15:02:30.512 2024-02-28 15:02:30.512 9900 TIP 441983 21509 6099954 2024-02-28 15:02:31.488 2024-02-28 15:02:31.488 1000 FEE 442108 21514 6099959 2024-02-28 15:02:36.924 2024-02-28 15:02:36.924 1000 FEE 442109 18174 6099199 2024-02-28 14:13:03.708 2024-02-28 14:13:03.708 1000 FEE 442004 1603 6099240 2024-02-28 14:19:39.501 2024-02-28 14:19:39.501 10000 FEE 441979 16214 6099241 2024-02-28 14:19:39.501 2024-02-28 14:19:39.501 90000 TIP 441979 7418 6099261 2024-02-28 14:21:32.272 2024-02-28 14:21:32.272 1000 FEE 442022 17201 6099262 2024-02-28 14:21:36.89 2024-02-28 14:21:36.89 500 FEE 441660 20680 6099263 2024-02-28 14:21:36.89 2024-02-28 14:21:36.89 4500 TIP 441660 8168 6099271 2024-02-28 14:21:57.562 2024-02-28 14:21:57.562 2100 FEE 441825 16929 6099272 2024-02-28 14:21:57.562 2024-02-28 14:21:57.562 18900 TIP 441825 1493 6099273 2024-02-28 14:22:01.112 2024-02-28 14:22:01.112 0 FEE 442019 18232 6099291 2024-02-28 14:23:43.031 2024-02-28 14:23:43.031 5000 FEE 442009 11776 6099292 2024-02-28 14:23:43.031 2024-02-28 14:23:43.031 45000 TIP 442009 798 6099299 2024-02-28 14:24:06.695 2024-02-28 14:24:06.695 1000 FEE 441978 18072 6099300 2024-02-28 14:24:06.695 2024-02-28 14:24:06.695 9000 TIP 441978 20922 6099304 2024-02-28 14:24:32.674 2024-02-28 14:24:32.674 15400 FEE 442023 10586 6099305 2024-02-28 14:24:32.674 2024-02-28 14:24:32.674 138600 TIP 442023 6798 6099308 2024-02-28 14:24:33.196 2024-02-28 14:24:33.196 7700 FEE 442023 18500 6099309 2024-02-28 14:24:33.196 2024-02-28 14:24:33.196 69300 TIP 442023 704 6099314 2024-02-28 14:24:34.246 2024-02-28 14:24:34.246 7700 FEE 442023 650 6099315 2024-02-28 14:24:34.246 2024-02-28 14:24:34.246 69300 TIP 442023 16177 6099334 2024-02-28 14:24:35.491 2024-02-28 14:24:35.491 7700 FEE 442023 14959 6099335 2024-02-28 14:24:35.491 2024-02-28 14:24:35.491 69300 TIP 442023 1224 6099369 2024-02-28 14:24:47.665 2024-02-28 14:24:47.665 6900 FEE 442023 617 6099370 2024-02-28 14:24:47.665 2024-02-28 14:24:47.665 62100 TIP 442023 766 6099440 2024-02-28 14:28:42.074 2024-02-28 14:28:42.074 9000 FEE 442023 759 6099441 2024-02-28 14:28:42.074 2024-02-28 14:28:42.074 81000 TIP 442023 19980 6099444 2024-02-28 14:29:01.702 2024-02-28 14:29:01.702 1000 FEE 441959 19381 6099445 2024-02-28 14:29:01.702 2024-02-28 14:29:01.702 9000 TIP 441959 19967 6099452 2024-02-28 14:29:13.236 2024-02-28 14:29:13.236 1000 FEE 442036 897 6099470 2024-02-28 14:31:21.851 2024-02-28 14:31:21.851 7700 FEE 442041 15526 6099471 2024-02-28 14:31:21.851 2024-02-28 14:31:21.851 69300 TIP 442041 3478 6099480 2024-02-28 14:31:34.39 2024-02-28 14:31:34.39 7700 FEE 442023 20840 6099481 2024-02-28 14:31:34.39 2024-02-28 14:31:34.39 69300 TIP 442023 1438 6099506 2024-02-28 14:32:36.145 2024-02-28 14:32:36.145 1000 FEE 442045 762 6099537 2024-02-28 14:33:53.308 2024-02-28 14:33:53.308 1000 FEE 441944 16858 6099538 2024-02-28 14:33:53.308 2024-02-28 14:33:53.308 9000 TIP 441944 20299 6099546 2024-02-28 14:34:27.431 2024-02-28 14:34:27.431 5700 FEE 441944 21063 6099547 2024-02-28 14:34:27.431 2024-02-28 14:34:27.431 51300 TIP 441944 1705 6099593 2024-02-28 14:37:44.56 2024-02-28 14:37:44.56 1000 FEE 442059 20231 6099598 2024-02-28 14:37:56.164 2024-02-28 14:37:56.164 900 FEE 441853 18736 6099599 2024-02-28 14:37:56.164 2024-02-28 14:37:56.164 8100 TIP 441853 9355 6099603 2024-02-28 14:38:17.71 2024-02-28 14:38:17.71 100 FEE 441979 12921 6099604 2024-02-28 14:38:17.71 2024-02-28 14:38:17.71 900 TIP 441979 16267 6099605 2024-02-28 14:38:17.886 2024-02-28 14:38:17.886 900 FEE 441979 9332 6099606 2024-02-28 14:38:17.886 2024-02-28 14:38:17.886 8100 TIP 441979 10591 6099608 2024-02-28 14:38:30.63 2024-02-28 14:38:30.63 2100 FEE 441917 11590 6099609 2024-02-28 14:38:30.63 2024-02-28 14:38:30.63 18900 TIP 441917 20990 6099620 2024-02-28 14:38:45.457 2024-02-28 14:38:45.457 2100 FEE 442023 19905 6099621 2024-02-28 14:38:45.457 2024-02-28 14:38:45.457 18900 TIP 442023 18199 6099630 2024-02-28 14:38:58.398 2024-02-28 14:38:58.398 2100 FEE 438965 17552 6099631 2024-02-28 14:38:58.398 2024-02-28 14:38:58.398 18900 TIP 438965 1647 6099654 2024-02-28 14:39:26.303 2024-02-28 14:39:26.303 1000 FEE 442062 7510 6099675 2024-02-28 14:42:05.611 2024-02-28 14:42:05.611 1000 FEE 442066 18363 6099677 2024-02-28 14:42:40.528 2024-02-28 14:42:40.528 1000 FEE 442068 11760 6099682 2024-02-28 14:42:48.836 2024-02-28 14:42:48.836 7700 FEE 442065 16178 6099683 2024-02-28 14:42:48.836 2024-02-28 14:42:48.836 69300 TIP 442065 5112 6099691 2024-02-28 14:43:20.367 2024-02-28 14:43:20.367 1000 FEE 442071 21547 6099694 2024-02-28 14:43:30.767 2024-02-28 14:43:30.767 0 FEE 442070 1729 6099697 2024-02-28 14:43:43.45 2024-02-28 14:43:43.45 100 FEE 442023 14037 6099698 2024-02-28 14:43:43.45 2024-02-28 14:43:43.45 900 TIP 442023 14688 6099701 2024-02-28 14:43:46.646 2024-02-28 14:43:46.646 100 FEE 441854 6382 6099702 2024-02-28 14:43:46.646 2024-02-28 14:43:46.646 900 TIP 441854 20436 6099705 2024-02-28 14:43:48.482 2024-02-28 14:43:48.482 100 FEE 441773 2256 6099706 2024-02-28 14:43:48.482 2024-02-28 14:43:48.482 900 TIP 441773 4819 6099717 2024-02-28 14:43:59.235 2024-02-28 14:43:59.235 100 FEE 441894 11288 6099718 2024-02-28 14:43:59.235 2024-02-28 14:43:59.235 900 TIP 441894 19501 6099721 2024-02-28 14:44:00.538 2024-02-28 14:44:00.538 100 FEE 441600 15147 6099722 2024-02-28 14:44:00.538 2024-02-28 14:44:00.538 900 TIP 441600 9342 6099728 2024-02-28 14:44:06.343 2024-02-28 14:44:06.343 100 FEE 441794 19637 6099729 2024-02-28 14:44:06.343 2024-02-28 14:44:06.343 900 TIP 441794 18678 6099749 2024-02-28 14:45:40.711 2024-02-28 14:45:40.711 1000 FEE 442065 19813 6099750 2024-02-28 14:45:40.711 2024-02-28 14:45:40.711 9000 TIP 442065 12220 6099775 2024-02-28 14:47:22.578 2024-02-28 14:47:22.578 1000 FEE 442080 21441 6099779 2024-02-28 14:47:38.335 2024-02-28 14:47:38.335 1000 FEE 442081 19282 6099812 2024-02-28 14:49:32.723 2024-02-28 14:49:32.723 7700 FEE 442086 1195 6099813 2024-02-28 14:49:32.723 2024-02-28 14:49:32.723 69300 TIP 442086 739 6099814 2024-02-28 14:49:33.135 2024-02-28 14:49:33.135 7700 FEE 442086 8037 6099815 2024-02-28 14:49:33.135 2024-02-28 14:49:33.135 69300 TIP 442086 9354 6099825 2024-02-28 14:50:00.989 2024-02-28 14:50:00.989 1000 FEE 442087 7891 6099850 2024-02-28 14:52:47.621 2024-02-28 14:52:47.621 0 FEE 442091 3706 6099853 2024-02-28 14:53:15.422 2024-02-28 14:53:15.422 10000 FEE 442094 18291 6099854 2024-02-28 14:53:15.422 2024-02-28 14:53:15.422 90000 TIP 442094 9354 6099870 2024-02-28 14:57:05.599 2024-02-28 14:57:05.599 1000 FEE 442098 2293 6099875 2024-02-28 14:58:42.255 2024-02-28 14:58:42.255 1000 FEE 442100 1628 6099892 2024-02-28 15:00:49.02 2024-02-28 15:00:49.02 1000 FEE 442104 21556 6099893 2024-02-28 15:00:49.563 2024-02-28 15:00:49.563 7700 FEE 442100 20577 6099894 2024-02-28 15:00:49.563 2024-02-28 15:00:49.563 69300 TIP 442100 20757 6099933 2024-02-28 15:02:17.875 2024-02-28 15:02:17.875 500 FEE 441428 985 6099934 2024-02-28 15:02:17.875 2024-02-28 15:02:17.875 4500 TIP 441428 20326 6099935 2024-02-28 15:02:17.994 2024-02-28 15:02:17.994 500 FEE 441428 4502 6099936 2024-02-28 15:02:17.994 2024-02-28 15:02:17.994 4500 TIP 441428 14271 6099941 2024-02-28 15:02:28.137 2024-02-28 15:02:28.137 1000 FEE 442107 20922 6099946 2024-02-28 15:02:30.681 2024-02-28 15:02:30.681 1100 FEE 441983 5828 6099947 2024-02-28 15:02:30.681 2024-02-28 15:02:30.681 9900 TIP 441983 1478 6099955 2024-02-28 15:02:36.748 2024-02-28 15:02:36.748 1100 FEE 441965 20924 6099956 2024-02-28 15:02:36.748 2024-02-28 15:02:36.748 9900 TIP 441965 618 6099966 2024-02-28 15:03:04.117 2024-02-28 15:03:04.117 2100 FEE 441902 17094 6099967 2024-02-28 15:03:04.117 2024-02-28 15:03:04.117 18900 TIP 441902 1114 6099974 2024-02-28 15:03:48.215 2024-02-28 15:03:48.215 1000 FEE 442113 16594 6099986 2024-02-28 15:04:19.213 2024-02-28 15:04:19.213 7700 FEE 442096 19524 6099987 2024-02-28 15:04:19.213 2024-02-28 15:04:19.213 69300 TIP 442096 698 6099990 2024-02-28 15:04:26.786 2024-02-28 15:04:26.786 0 FEE 442113 2162 6100044 2024-02-28 15:06:31.841 2024-02-28 15:06:31.841 2100 FEE 440772 14650 6100045 2024-02-28 15:06:31.841 2024-02-28 15:06:31.841 18900 TIP 440772 9171 6100050 2024-02-28 15:06:35.219 2024-02-28 15:06:35.219 5000 FEE 442113 1454 6100051 2024-02-28 15:06:35.219 2024-02-28 15:06:35.219 45000 TIP 442113 17050 6099223 2024-02-28 14:16:03.161 2024-02-28 14:16:03.161 1000 STREAM 141924 6300 6099236 2024-02-28 14:19:03.172 2024-02-28 14:19:03.172 1000 STREAM 141924 5171 6099224 2024-02-28 14:16:17.646 2024-02-28 14:16:17.646 100000 FEE 442010 16052 6099235 2024-02-28 14:18:30.123 2024-02-28 14:18:30.123 300000 DONT_LIKE_THIS 441954 19121 6099252 2024-02-28 14:20:49.584 2024-02-28 14:20:49.584 0 FEE 442018 9551 6099253 2024-02-28 14:20:52.898 2024-02-28 14:20:52.898 1000 FEE 442019 19198 6099255 2024-02-28 14:21:05.923 2024-02-28 14:21:05.923 1000 FEE 442020 1611 6099276 2024-02-28 14:22:04.9 2024-02-28 14:22:04.9 2100 FEE 442012 20585 6099277 2024-02-28 14:22:04.9 2024-02-28 14:22:04.9 18900 TIP 442012 21079 6099278 2024-02-28 14:22:11.001 2024-02-28 14:22:11.001 2100 FEE 441829 20717 6099279 2024-02-28 14:22:11.001 2024-02-28 14:22:11.001 18900 TIP 441829 5758 6099281 2024-02-28 14:22:40.435 2024-02-28 14:22:40.435 3100 FEE 442024 14472 6099282 2024-02-28 14:22:40.435 2024-02-28 14:22:40.435 27900 TIP 442024 14308 6099286 2024-02-28 14:23:22.984 2024-02-28 14:23:22.984 100 FEE 442023 13204 6099287 2024-02-28 14:23:22.984 2024-02-28 14:23:22.984 900 TIP 442023 19018 6099289 2024-02-28 14:23:37.717 2024-02-28 14:23:37.717 5000 FEE 442013 3342 6099290 2024-02-28 14:23:37.717 2024-02-28 14:23:37.717 45000 TIP 442013 9985 6099310 2024-02-28 14:24:33.541 2024-02-28 14:24:33.541 7700 FEE 442023 9109 6099311 2024-02-28 14:24:33.541 2024-02-28 14:24:33.541 69300 TIP 442023 16145 6099328 2024-02-28 14:24:35.106 2024-02-28 14:24:35.106 7700 FEE 442023 3478 6099329 2024-02-28 14:24:35.106 2024-02-28 14:24:35.106 69300 TIP 442023 1729 6099340 2024-02-28 14:24:36.384 2024-02-28 14:24:36.384 7700 FEE 442023 14255 6099341 2024-02-28 14:24:36.384 2024-02-28 14:24:36.384 69300 TIP 442023 19189 6099357 2024-02-28 14:24:46.871 2024-02-28 14:24:46.871 6900 FEE 442023 896 6099358 2024-02-28 14:24:46.871 2024-02-28 14:24:46.871 62100 TIP 442023 18615 6099394 2024-02-28 14:25:36.821 2024-02-28 14:25:36.821 400 FEE 442017 11430 6099395 2024-02-28 14:25:36.821 2024-02-28 14:25:36.821 3600 TIP 442017 20889 6099423 2024-02-28 14:28:16.661 2024-02-28 14:28:16.661 1000 POLL 441660 10063 6099436 2024-02-28 14:28:41.452 2024-02-28 14:28:41.452 100 FEE 442023 21422 6099437 2024-02-28 14:28:41.452 2024-02-28 14:28:41.452 900 TIP 442023 16178 6099457 2024-02-28 14:29:29.813 2024-02-28 14:29:29.813 1000 FEE 442037 14472 6099465 2024-02-28 14:30:16.068 2024-02-28 14:30:16.068 1000 FEE 442040 21541 6099511 2024-02-28 14:32:47.127 2024-02-28 14:32:47.127 7700 FEE 441604 11750 6099512 2024-02-28 14:32:47.127 2024-02-28 14:32:47.127 69300 TIP 441604 1490 6099515 2024-02-28 14:32:48.189 2024-02-28 14:32:48.189 7700 FEE 441604 15200 6099516 2024-02-28 14:32:48.189 2024-02-28 14:32:48.189 69300 TIP 441604 21614 6099519 2024-02-28 14:32:56.864 2024-02-28 14:32:56.864 1000 FEE 442046 12222 6099523 2024-02-28 14:33:16.861 2024-02-28 14:33:16.861 100000 FEE 442047 5746 6099544 2024-02-28 14:34:27.173 2024-02-28 14:34:27.173 5700 FEE 442023 12976 6099545 2024-02-28 14:34:27.173 2024-02-28 14:34:27.173 51300 TIP 442023 5538 6099549 2024-02-28 14:34:38.074 2024-02-28 14:34:38.074 5000 FEE 442049 19094 6099550 2024-02-28 14:34:38.074 2024-02-28 14:34:38.074 45000 TIP 442049 19930 6099566 2024-02-28 14:35:19.226 2024-02-28 14:35:19.226 2100 FEE 441845 617 6099567 2024-02-28 14:35:19.226 2024-02-28 14:35:19.226 18900 TIP 441845 21417 6099577 2024-02-28 14:35:50.886 2024-02-28 14:35:50.886 10000 FEE 442056 18717 6099228 2024-02-28 14:17:03.159 2024-02-28 14:17:03.159 1000 STREAM 141924 19906 6099233 2024-02-28 14:18:03.177 2024-02-28 14:18:03.177 1000 STREAM 141924 16212 6099727 2024-02-28 14:44:03.36 2024-02-28 14:44:03.36 1000 STREAM 141924 1584 6099734 2024-02-28 14:45:03.358 2024-02-28 14:45:03.358 1000 STREAM 141924 19813 6099327 2024-02-28 14:24:34.982 2024-02-28 14:24:34.982 69300 TIP 442023 749 6099359 2024-02-28 14:24:46.993 2024-02-28 14:24:46.993 6900 FEE 442023 756 6099360 2024-02-28 14:24:46.993 2024-02-28 14:24:46.993 62100 TIP 442023 5725 6099392 2024-02-28 14:25:36.183 2024-02-28 14:25:36.183 400 FEE 442022 844 6099393 2024-02-28 14:25:36.183 2024-02-28 14:25:36.183 3600 TIP 442022 712 6099403 2024-02-28 14:25:53.611 2024-02-28 14:25:53.611 1000 FEE 441971 4574 6099404 2024-02-28 14:25:53.611 2024-02-28 14:25:53.611 9000 TIP 441971 21421 6099406 2024-02-28 14:26:05.954 2024-02-28 14:26:05.954 1000 FEE 441889 7654 6099407 2024-02-28 14:26:05.954 2024-02-28 14:26:05.954 9000 TIP 441889 1576 6099424 2024-02-28 14:28:20.567 2024-02-28 14:28:20.567 1000 FEE 442032 2293 6099451 2024-02-28 14:29:07.899 2024-02-28 14:29:07.899 10000 FEE 442035 2056 6099453 2024-02-28 14:29:15.557 2024-02-28 14:29:15.557 100 FEE 441866 14472 6099454 2024-02-28 14:29:15.557 2024-02-28 14:29:15.557 900 TIP 441866 20657 6099455 2024-02-28 14:29:15.771 2024-02-28 14:29:15.771 900 FEE 441866 5175 6099456 2024-02-28 14:29:15.771 2024-02-28 14:29:15.771 8100 TIP 441866 4084 6099463 2024-02-28 14:30:01.136 2024-02-28 14:30:01.136 1000 FEE 442039 1650 6099496 2024-02-28 14:32:19.831 2024-02-28 14:32:19.831 100000 FEE 442043 15239 6099528 2024-02-28 14:33:35.891 2024-02-28 14:33:35.891 2100 FEE 442035 2749 6099529 2024-02-28 14:33:35.891 2024-02-28 14:33:35.891 18900 TIP 442035 4059 6099532 2024-02-28 14:33:44.222 2024-02-28 14:33:44.222 2100 FEE 442010 10821 6099533 2024-02-28 14:33:44.222 2024-02-28 14:33:44.222 18900 TIP 442010 20353 6099542 2024-02-28 14:34:04.032 2024-02-28 14:34:04.032 100 FEE 442043 636 6099543 2024-02-28 14:34:04.032 2024-02-28 14:34:04.032 900 TIP 442043 18909 6099558 2024-02-28 14:34:50.048 2024-02-28 14:34:50.048 1000 FEE 441970 20504 6099559 2024-02-28 14:34:50.048 2024-02-28 14:34:50.048 9000 TIP 441970 19352 6099560 2024-02-28 14:34:57.601 2024-02-28 14:34:57.601 1000 POLL 441660 15367 6099562 2024-02-28 14:35:03.236 2024-02-28 14:35:03.236 10000 FEE 442043 21222 6099563 2024-02-28 14:35:03.236 2024-02-28 14:35:03.236 90000 TIP 442043 18816 6099568 2024-02-28 14:35:21.349 2024-02-28 14:35:21.349 100 FEE 442048 20222 6099569 2024-02-28 14:35:21.349 2024-02-28 14:35:21.349 900 TIP 442048 6419 6099588 2024-02-28 14:36:54.381 2024-02-28 14:36:54.381 2100 FEE 441854 20026 6099589 2024-02-28 14:36:54.381 2024-02-28 14:36:54.381 18900 TIP 441854 12609 6099594 2024-02-28 14:37:47.169 2024-02-28 14:37:47.169 100 FEE 442056 1273 6099595 2024-02-28 14:37:47.169 2024-02-28 14:37:47.169 900 TIP 442056 2709 6099614 2024-02-28 14:38:36.648 2024-02-28 14:38:36.648 2100 FEE 441969 16193 6099615 2024-02-28 14:38:36.648 2024-02-28 14:38:36.648 18900 TIP 441969 21157 6099618 2024-02-28 14:38:42.541 2024-02-28 14:38:42.541 2100 FEE 442018 10280 6099619 2024-02-28 14:38:42.541 2024-02-28 14:38:42.541 18900 TIP 442018 20470 6099626 2024-02-28 14:38:51.2 2024-02-28 14:38:51.2 2100 FEE 441816 15273 6099627 2024-02-28 14:38:51.2 2024-02-28 14:38:51.2 18900 TIP 441816 20551 6099632 2024-02-28 14:39:00.421 2024-02-28 14:39:00.421 2100 FEE 438906 18529 6099633 2024-02-28 14:39:00.421 2024-02-28 14:39:00.421 18900 TIP 438906 4102 6099686 2024-02-28 14:43:06.712 2024-02-28 14:43:06.712 500 FEE 441864 21577 6099687 2024-02-28 14:43:06.712 2024-02-28 14:43:06.712 4500 TIP 441864 2329 6099707 2024-02-28 14:43:49.88 2024-02-28 14:43:49.88 100 FEE 441613 21386 6099708 2024-02-28 14:43:49.88 2024-02-28 14:43:49.88 900 TIP 441613 21424 6099738 2024-02-28 14:45:17.91 2024-02-28 14:45:17.91 10000 FEE 442073 1515 6099771 2024-02-28 14:47:12.892 2024-02-28 14:47:12.892 1000 FEE 442065 19813 6099772 2024-02-28 14:47:12.892 2024-02-28 14:47:12.892 9000 TIP 442065 19785 6099773 2024-02-28 14:47:13.058 2024-02-28 14:47:13.058 1000 FEE 442065 20254 6099774 2024-02-28 14:47:13.058 2024-02-28 14:47:13.058 9000 TIP 442065 20168 6099788 2024-02-28 14:48:16.364 2024-02-28 14:48:16.364 1000 FEE 442083 17798 6099791 2024-02-28 14:48:31.141 2024-02-28 14:48:31.141 100000 FEE 442084 16834 6099795 2024-02-28 14:48:46.098 2024-02-28 14:48:46.098 3400 FEE 441277 17162 6099796 2024-02-28 14:48:46.098 2024-02-28 14:48:46.098 30600 TIP 441277 13599 6099802 2024-02-28 14:49:10.626 2024-02-28 14:49:10.626 1000 FEE 441843 18396 6099803 2024-02-28 14:49:10.626 2024-02-28 14:49:10.626 9000 TIP 441843 9109 6099806 2024-02-28 14:49:12.27 2024-02-28 14:49:12.27 1000 FEE 441843 18518 6099807 2024-02-28 14:49:12.27 2024-02-28 14:49:12.27 9000 TIP 441843 14258 6099818 2024-02-28 14:49:38.908 2024-02-28 14:49:38.908 0 FEE 442084 17091 6099828 2024-02-28 14:50:12.892 2024-02-28 14:50:12.892 1000 FEE 442090 9159 6099843 2024-02-28 14:51:41.468 2024-02-28 14:51:41.468 10000 FEE 442023 16842 6099844 2024-02-28 14:51:41.468 2024-02-28 14:51:41.468 90000 TIP 442023 2431 6099855 2024-02-28 14:53:16.253 2024-02-28 14:53:16.253 0 FEE 442087 21014 6099858 2024-02-28 14:54:30.102 2024-02-28 14:54:30.102 0 FEE 442091 20084 6099860 2024-02-28 14:55:04.324 2024-02-28 14:55:04.324 7700 FEE 442084 1596 6099861 2024-02-28 14:55:04.324 2024-02-28 14:55:04.324 69300 TIP 442084 1122 6099867 2024-02-28 14:56:15.094 2024-02-28 14:56:15.094 1000 FEE 442096 1658 6099868 2024-02-28 14:56:32.148 2024-02-28 14:56:32.148 1000 FEE 442097 2748 6099873 2024-02-28 14:58:26.504 2024-02-28 14:58:26.504 900 FEE 442092 19961 6099874 2024-02-28 14:58:26.504 2024-02-28 14:58:26.504 8100 TIP 442092 21393 6099882 2024-02-28 14:59:53.564 2024-02-28 14:59:53.564 3100 FEE 442099 12483 6099883 2024-02-28 14:59:53.564 2024-02-28 14:59:53.564 27900 TIP 442099 19662 6099887 2024-02-28 15:00:06.034 2024-02-28 15:00:06.034 1000 POLL 441660 16387 6099905 2024-02-28 15:02:14.706 2024-02-28 15:02:14.706 500 FEE 441428 20657 6099906 2024-02-28 15:02:14.706 2024-02-28 15:02:14.706 4500 TIP 441428 20509 6099907 2024-02-28 15:02:14.902 2024-02-28 15:02:14.902 500 FEE 441428 7185 6099908 2024-02-28 15:02:14.902 2024-02-28 15:02:14.902 4500 TIP 441428 19036 6099915 2024-02-28 15:02:16.18 2024-02-28 15:02:16.18 500 FEE 441428 19322 6099916 2024-02-28 15:02:16.18 2024-02-28 15:02:16.18 4500 TIP 441428 659 6099929 2024-02-28 15:02:17.576 2024-02-28 15:02:17.576 1000 FEE 441428 11996 6099930 2024-02-28 15:02:17.576 2024-02-28 15:02:17.576 9000 TIP 441428 675 6099950 2024-02-28 15:02:31.211 2024-02-28 15:02:31.211 100 FEE 441959 1806 6099951 2024-02-28 15:02:31.211 2024-02-28 15:02:31.211 900 TIP 441959 18494 6099969 2024-02-28 15:03:20.151 2024-02-28 15:03:20.151 25600 FEE 441843 11164 6099970 2024-02-28 15:03:20.151 2024-02-28 15:03:20.151 230400 TIP 441843 21238 6099971 2024-02-28 15:03:20.321 2024-02-28 15:03:20.321 12800 FEE 441843 21026 6099972 2024-02-28 15:03:20.321 2024-02-28 15:03:20.321 115200 TIP 441843 11798 6099991 2024-02-28 15:04:44.495 2024-02-28 15:04:44.495 100 FEE 442065 14045 6099992 2024-02-28 15:04:44.495 2024-02-28 15:04:44.495 900 TIP 442065 20301 6099997 2024-02-28 15:04:51.956 2024-02-28 15:04:51.956 1000 FEE 442114 10094 6100022 2024-02-28 15:05:51.825 2024-02-28 15:05:51.825 100 FEE 442084 14939 6100023 2024-02-28 15:05:51.825 2024-02-28 15:05:51.825 900 TIP 442084 17082 6100024 2024-02-28 15:05:51.843 2024-02-28 15:05:51.843 2100 FEE 441613 18241 6100025 2024-02-28 15:05:51.843 2024-02-28 15:05:51.843 18900 TIP 441613 18784 6100026 2024-02-28 15:05:53.361 2024-02-28 15:05:53.361 2100 FEE 442065 954 6100027 2024-02-28 15:05:53.361 2024-02-28 15:05:53.361 18900 TIP 442065 8360 6100041 2024-02-28 15:06:31.002 2024-02-28 15:06:31.002 2100 FEE 440874 21588 6100042 2024-02-28 15:06:31.002 2024-02-28 15:06:31.002 18900 TIP 440874 8360 6100061 2024-02-28 15:06:50.568 2024-02-28 15:06:50.568 100 FEE 442079 660 6099428 2024-02-28 14:28:21.762 2024-02-28 14:28:21.762 9000 TIP 441864 1618 6099435 2024-02-28 14:28:39.471 2024-02-28 14:28:39.471 0 FEE 442033 15119 6099460 2024-02-28 14:29:41.979 2024-02-28 14:29:41.979 900 FEE 441872 981 6099461 2024-02-28 14:29:41.979 2024-02-28 14:29:41.979 8100 TIP 441872 3518 6099462 2024-02-28 14:29:50.063 2024-02-28 14:29:50.063 100000 FEE 442038 6616 6099468 2024-02-28 14:31:04.531 2024-02-28 14:31:04.531 10000 FEE 442041 9433 6099469 2024-02-28 14:31:04.531 2024-02-28 14:31:04.531 90000 TIP 442041 7587 6099474 2024-02-28 14:31:28.444 2024-02-28 14:31:28.444 100 FEE 442033 1046 6099475 2024-02-28 14:31:28.444 2024-02-28 14:31:28.444 900 TIP 442033 11491 6099499 2024-02-28 14:32:23.619 2024-02-28 14:32:23.619 1000 FEE 442044 6361 6099500 2024-02-28 14:32:25.063 2024-02-28 14:32:25.063 10000 FEE 442031 19303 6099501 2024-02-28 14:32:25.063 2024-02-28 14:32:25.063 90000 TIP 442031 4014 6099502 2024-02-28 14:32:26.753 2024-02-28 14:32:26.753 10000 FEE 442030 746 6099503 2024-02-28 14:32:26.753 2024-02-28 14:32:26.753 90000 TIP 442030 750 6099521 2024-02-28 14:33:07.586 2024-02-28 14:33:07.586 2100 FEE 441983 13198 6099522 2024-02-28 14:33:07.586 2024-02-28 14:33:07.586 18900 TIP 441983 21405 6099525 2024-02-28 14:33:27.236 2024-02-28 14:33:27.236 1000 FEE 442049 761 6099526 2024-02-28 14:33:35.096 2024-02-28 14:33:35.096 2100 FEE 441976 8287 6099527 2024-02-28 14:33:35.096 2024-02-28 14:33:35.096 18900 TIP 441976 660 6099561 2024-02-28 14:35:00.095 2024-02-28 14:35:00.095 1000 FEE 442053 20137 6099572 2024-02-28 14:35:36.372 2024-02-28 14:35:36.372 1000 FEE 442055 20554 6099573 2024-02-28 14:35:41.976 2024-02-28 14:35:41.976 100 FEE 442050 10469 6099574 2024-02-28 14:35:41.976 2024-02-28 14:35:41.976 900 TIP 442050 20500 6099585 2024-02-28 14:36:48.196 2024-02-28 14:36:48.196 0 FEE 442056 14202 6099591 2024-02-28 14:37:24.715 2024-02-28 14:37:24.715 2500 FEE 441961 8998 6099592 2024-02-28 14:37:24.715 2024-02-28 14:37:24.715 22500 TIP 441961 10849 6099610 2024-02-28 14:38:31.2 2024-02-28 14:38:31.2 2100 FEE 441877 17714 6099611 2024-02-28 14:38:31.2 2024-02-28 14:38:31.2 18900 TIP 441877 15858 6099612 2024-02-28 14:38:35.579 2024-02-28 14:38:35.579 2100 FEE 441911 11288 6099613 2024-02-28 14:38:35.579 2024-02-28 14:38:35.579 18900 TIP 441911 2224 6099638 2024-02-28 14:39:09.119 2024-02-28 14:39:09.119 2100 FEE 433281 18815 6099639 2024-02-28 14:39:09.119 2024-02-28 14:39:09.119 18900 TIP 433281 1298 6099646 2024-02-28 14:39:14.597 2024-02-28 14:39:14.597 2100 FEE 429256 21201 6099647 2024-02-28 14:39:14.597 2024-02-28 14:39:14.597 18900 TIP 429256 16424 6099648 2024-02-28 14:39:15.335 2024-02-28 14:39:15.335 3000 FEE 441869 10112 6099649 2024-02-28 14:39:15.335 2024-02-28 14:39:15.335 27000 TIP 441869 19118 6099660 2024-02-28 14:39:51.478 2024-02-28 14:39:51.478 2100 FEE 442062 21624 6099661 2024-02-28 14:39:51.478 2024-02-28 14:39:51.478 18900 TIP 442062 8326 6099667 2024-02-28 14:40:29.918 2024-02-28 14:40:29.918 10000 FEE 441660 1090 6099668 2024-02-28 14:40:29.918 2024-02-28 14:40:29.918 90000 TIP 441660 18658 6099703 2024-02-28 14:43:46.87 2024-02-28 14:43:46.87 100 FEE 441749 19375 6099704 2024-02-28 14:43:46.87 2024-02-28 14:43:46.87 900 TIP 441749 21427 6099431 2024-02-28 14:28:27.026 2024-02-28 14:28:27.026 1000 FEE 442033 11153 6099432 2024-02-28 14:28:28.94 2024-02-28 14:28:28.94 100 FEE 442030 1474 6099433 2024-02-28 14:28:28.94 2024-02-28 14:28:28.94 900 TIP 442030 712 6099434 2024-02-28 14:28:38.911 2024-02-28 14:28:38.911 1000 FEE 442034 15367 6099438 2024-02-28 14:28:41.641 2024-02-28 14:28:41.641 900 FEE 442023 1145 6099439 2024-02-28 14:28:41.641 2024-02-28 14:28:41.641 8100 TIP 442023 1429 6099458 2024-02-28 14:29:40.398 2024-02-28 14:29:40.398 100 FEE 441872 21338 6099459 2024-02-28 14:29:40.398 2024-02-28 14:29:40.398 900 TIP 441872 8287 6099466 2024-02-28 14:30:24.531 2024-02-28 14:30:24.531 1000 FEE 442041 683 6099476 2024-02-28 14:31:33.955 2024-02-28 14:31:33.955 7700 FEE 442023 699 6099477 2024-02-28 14:31:33.955 2024-02-28 14:31:33.955 69300 TIP 442023 18941 6099478 2024-02-28 14:31:34.254 2024-02-28 14:31:34.254 7700 FEE 442023 20781 6099479 2024-02-28 14:31:34.254 2024-02-28 14:31:34.254 69300 TIP 442023 16769 6099484 2024-02-28 14:31:34.812 2024-02-28 14:31:34.812 15400 FEE 442023 18528 6099485 2024-02-28 14:31:34.812 2024-02-28 14:31:34.812 138600 TIP 442023 18658 6099490 2024-02-28 14:31:39.276 2024-02-28 14:31:39.276 10000 FEE 442042 19813 6099494 2024-02-28 14:32:10.338 2024-02-28 14:32:10.338 2100 FEE 442010 1985 6099495 2024-02-28 14:32:10.338 2024-02-28 14:32:10.338 18900 TIP 442010 21214 6099513 2024-02-28 14:32:47.16 2024-02-28 14:32:47.16 7700 FEE 441604 19809 6099514 2024-02-28 14:32:47.16 2024-02-28 14:32:47.16 69300 TIP 441604 20481 6099517 2024-02-28 14:32:52.24 2024-02-28 14:32:52.24 2100 FEE 442042 5637 6099518 2024-02-28 14:32:52.24 2024-02-28 14:32:52.24 18900 TIP 442042 4973 6099565 2024-02-28 14:35:03.619 2024-02-28 14:35:03.619 1000 FEE 442054 10112 6099601 2024-02-28 14:38:16.437 2024-02-28 14:38:16.437 1000 FEE 441843 2674 6099602 2024-02-28 14:38:16.437 2024-02-28 14:38:16.437 9000 TIP 441843 7978 6099616 2024-02-28 14:38:40.11 2024-02-28 14:38:40.11 2100 FEE 441963 9363 6099617 2024-02-28 14:38:40.11 2024-02-28 14:38:40.11 18900 TIP 441963 19126 6099622 2024-02-28 14:38:46.798 2024-02-28 14:38:46.798 2100 FEE 441944 17552 6099623 2024-02-28 14:38:46.798 2024-02-28 14:38:46.798 18900 TIP 441944 13903 6099642 2024-02-28 14:39:10.626 2024-02-28 14:39:10.626 2100 FEE 430609 989 6099643 2024-02-28 14:39:10.626 2024-02-28 14:39:10.626 18900 TIP 430609 19346 6099662 2024-02-28 14:40:00.905 2024-02-28 14:40:00.905 1000 FEE 442018 21180 6099663 2024-02-28 14:40:00.905 2024-02-28 14:40:00.905 9000 TIP 442018 4388 6099685 2024-02-28 14:43:03.717 2024-02-28 14:43:03.717 1000 FEE 442069 11716 6099695 2024-02-28 14:43:41.721 2024-02-28 14:43:41.721 100 FEE 441843 16212 6099696 2024-02-28 14:43:41.721 2024-02-28 14:43:41.721 900 TIP 441843 17602 6099711 2024-02-28 14:43:54.023 2024-02-28 14:43:54.023 100 FEE 441333 18232 6099712 2024-02-28 14:43:54.023 2024-02-28 14:43:54.023 900 TIP 441333 13378 6099736 2024-02-28 14:45:17.797 2024-02-28 14:45:17.797 500 FEE 441853 17535 6099737 2024-02-28 14:45:17.797 2024-02-28 14:45:17.797 4500 TIP 441853 21314 6099757 2024-02-28 14:46:09.672 2024-02-28 14:46:09.672 1000 FEE 442075 11873 6099758 2024-02-28 14:46:16.393 2024-02-28 14:46:16.393 1000 FEE 442076 18528 6099763 2024-02-28 14:47:06.822 2024-02-28 14:47:06.822 1000 FEE 442078 19500 6099776 2024-02-28 14:47:26.83 2024-02-28 14:47:26.83 0 FEE 442078 5746 6099780 2024-02-28 14:47:46.743 2024-02-28 14:47:46.743 12100 FEE 442068 5495 6099781 2024-02-28 14:47:46.743 2024-02-28 14:47:46.743 108900 TIP 442068 3360 6099792 2024-02-28 14:48:35.998 2024-02-28 14:48:35.998 1600 FEE 442065 18274 6099793 2024-02-28 14:48:35.998 2024-02-28 14:48:35.998 14400 TIP 442065 16638 6099809 2024-02-28 14:49:13.868 2024-02-28 14:49:13.868 0 FEE 442083 6717 6099816 2024-02-28 14:49:36.807 2024-02-28 14:49:36.807 7700 FEE 442077 16406 6099817 2024-02-28 14:49:36.807 2024-02-28 14:49:36.807 69300 TIP 442077 10291 6099826 2024-02-28 14:50:02.12 2024-02-28 14:50:02.12 1000 FEE 442088 11516 6099837 2024-02-28 14:51:12.281 2024-02-28 14:51:12.281 1000 FEE 442091 21320 6099838 2024-02-28 14:51:19.087 2024-02-28 14:51:19.087 10000 FEE 442082 685 6099839 2024-02-28 14:51:19.087 2024-02-28 14:51:19.087 90000 TIP 442082 21522 6099847 2024-02-28 14:51:51.18 2024-02-28 14:51:51.18 0 FEE 442091 21453 6099848 2024-02-28 14:52:01.429 2024-02-28 14:52:01.429 1000 FEE 442094 1825 6099872 2024-02-28 14:58:11.163 2024-02-28 14:58:11.163 1000 FEE 442099 14385 6099888 2024-02-28 15:00:45.612 2024-02-28 15:00:45.612 7700 FEE 442097 21208 6099889 2024-02-28 15:00:45.612 2024-02-28 15:00:45.612 69300 TIP 442097 6777 6099904 2024-02-28 15:02:09.627 2024-02-28 15:02:09.627 1000 FEE 442106 4958 6099948 2024-02-28 15:02:30.853 2024-02-28 15:02:30.853 1100 FEE 441983 6616 6099949 2024-02-28 15:02:30.853 2024-02-28 15:02:30.853 9900 TIP 441983 19660 6099973 2024-02-28 15:03:29.855 2024-02-28 15:03:29.855 1000 FEE 442112 2639 6099980 2024-02-28 15:04:10.312 2024-02-28 15:04:10.312 7700 FEE 442106 5293 6099981 2024-02-28 15:04:10.312 2024-02-28 15:04:10.312 69300 TIP 442106 13763 6099988 2024-02-28 15:04:24.485 2024-02-28 15:04:24.485 7700 FEE 442105 14225 6099989 2024-02-28 15:04:24.485 2024-02-28 15:04:24.485 69300 TIP 442105 2264 6099993 2024-02-28 15:04:44.724 2024-02-28 15:04:44.724 900 FEE 442065 17552 6099994 2024-02-28 15:04:44.724 2024-02-28 15:04:44.724 8100 TIP 442065 2748 6100020 2024-02-28 15:05:50.84 2024-02-28 15:05:50.84 2100 FEE 442084 18667 6100021 2024-02-28 15:05:50.84 2024-02-28 15:05:50.84 18900 TIP 442084 9348 6100037 2024-02-28 15:06:20.593 2024-02-28 15:06:20.593 2100 FEE 441974 1394 6100038 2024-02-28 15:06:20.593 2024-02-28 15:06:20.593 18900 TIP 441974 8095 6100087 2024-02-28 15:07:26.008 2024-02-28 15:07:26.008 200 FEE 442122 4521 6100088 2024-02-28 15:07:26.008 2024-02-28 15:07:26.008 1800 TIP 442122 21444 6100106 2024-02-28 15:07:43.098 2024-02-28 15:07:43.098 2100 FEE 441289 663 6100107 2024-02-28 15:07:43.098 2024-02-28 15:07:43.098 18900 TIP 441289 4313 6100108 2024-02-28 15:07:56.921 2024-02-28 15:07:56.921 2100 FEE 442102 13169 6100109 2024-02-28 15:07:56.921 2024-02-28 15:07:56.921 18900 TIP 442102 4313 6100117 2024-02-28 15:08:12.378 2024-02-28 15:08:12.378 1000 FEE 441801 642 6100118 2024-02-28 15:08:12.378 2024-02-28 15:08:12.378 9000 TIP 441801 15273 6100119 2024-02-28 15:08:13.417 2024-02-28 15:08:13.417 1000 FEE 441750 8095 6100120 2024-02-28 15:08:13.417 2024-02-28 15:08:13.417 9000 TIP 441750 2328 6100129 2024-02-28 15:08:47.69 2024-02-28 15:08:47.69 2100 FEE 442038 2776 6100130 2024-02-28 15:08:47.69 2024-02-28 15:08:47.69 18900 TIP 442038 1047 6099531 2024-02-28 14:33:41.557 2024-02-28 14:33:41.557 18900 TIP 442010 15549 6099553 2024-02-28 14:34:39.141 2024-02-28 14:34:39.141 400 FEE 439002 4502 6099554 2024-02-28 14:34:39.141 2024-02-28 14:34:39.141 3600 TIP 439002 7979 6099556 2024-02-28 14:34:47.274 2024-02-28 14:34:47.274 2100 FEE 442034 18344 6099557 2024-02-28 14:34:47.274 2024-02-28 14:34:47.274 18900 TIP 442034 16442 6099575 2024-02-28 14:35:44.157 2024-02-28 14:35:44.157 500 FEE 442038 14015 6099576 2024-02-28 14:35:44.157 2024-02-28 14:35:44.157 4500 TIP 442038 19759 6099578 2024-02-28 14:36:00.235 2024-02-28 14:36:00.235 1000 FEE 442057 20272 6099636 2024-02-28 14:39:05.052 2024-02-28 14:39:05.052 5000 FEE 442037 1836 6099637 2024-02-28 14:39:05.052 2024-02-28 14:39:05.052 45000 TIP 442037 20190 6099640 2024-02-28 14:39:09.177 2024-02-28 14:39:09.177 1100 FEE 441843 20554 6099641 2024-02-28 14:39:09.177 2024-02-28 14:39:09.177 9900 TIP 441843 687 6099657 2024-02-28 14:39:44.801 2024-02-28 14:39:44.801 1000 FEE 442063 4692 6099669 2024-02-28 14:40:43.021 2024-02-28 14:40:43.021 1000 FEE 442063 14959 6099670 2024-02-28 14:40:43.021 2024-02-28 14:40:43.021 9000 TIP 442063 776 6099671 2024-02-28 14:40:46 2024-02-28 14:40:46 1000 POLL 441660 8037 6099673 2024-02-28 14:42:00.874 2024-02-28 14:42:00.874 100000 FEE 442065 8570 6099680 2024-02-28 14:42:48.084 2024-02-28 14:42:48.084 7700 FEE 442065 16145 6099681 2024-02-28 14:42:48.084 2024-02-28 14:42:48.084 69300 TIP 442065 19263 6099688 2024-02-28 14:43:12.824 2024-02-28 14:43:12.824 1000 FEE 442070 16879 6099699 2024-02-28 14:43:44.396 2024-02-28 14:43:44.396 100 FEE 441944 959 6099700 2024-02-28 14:43:44.396 2024-02-28 14:43:44.396 900 TIP 441944 1286 6099715 2024-02-28 14:43:56.707 2024-02-28 14:43:56.707 100 FEE 441816 18219 6099716 2024-02-28 14:43:56.707 2024-02-28 14:43:56.707 900 TIP 441816 21021 6099732 2024-02-28 14:44:07.712 2024-02-28 14:44:07.712 100 FEE 440692 12821 6099733 2024-02-28 14:44:07.712 2024-02-28 14:44:07.712 900 TIP 440692 1785 6099765 2024-02-28 14:47:12.37 2024-02-28 14:47:12.37 1000 FEE 442065 18736 6099766 2024-02-28 14:47:12.37 2024-02-28 14:47:12.37 9000 TIP 442065 21620 6099767 2024-02-28 14:47:12.53 2024-02-28 14:47:12.53 1000 FEE 442065 18468 6099768 2024-02-28 14:47:12.53 2024-02-28 14:47:12.53 9000 TIP 442065 20087 6099769 2024-02-28 14:47:12.727 2024-02-28 14:47:12.727 1000 FEE 442065 1960 6099770 2024-02-28 14:47:12.727 2024-02-28 14:47:12.727 9000 TIP 442065 20490 6099783 2024-02-28 14:47:55.992 2024-02-28 14:47:55.992 100000 FEE 442023 18220 6099784 2024-02-28 14:47:55.992 2024-02-28 14:47:55.992 900000 TIP 442023 14651 6099789 2024-02-28 14:48:23.484 2024-02-28 14:48:23.484 0 FEE 442078 11240 6099821 2024-02-28 14:49:43.515 2024-02-28 14:49:43.515 10100 FEE 442023 18828 6099822 2024-02-28 14:49:43.515 2024-02-28 14:49:43.515 90900 TIP 442023 15115 6099832 2024-02-28 14:50:46.312 2024-02-28 14:50:46.312 3100 FEE 442087 7125 6099833 2024-02-28 14:50:46.312 2024-02-28 14:50:46.312 27900 TIP 442087 9992 6099842 2024-02-28 14:51:34.765 2024-02-28 14:51:34.765 0 FEE 442091 4768 6099856 2024-02-28 14:53:31.546 2024-02-28 14:53:31.546 0 FEE 442091 21148 6099899 2024-02-28 15:01:08.86 2024-02-28 15:01:08.86 2100 FEE 442085 1195 6099900 2024-02-28 15:01:08.86 2024-02-28 15:01:08.86 18900 TIP 442085 11423 6099911 2024-02-28 15:02:15.388 2024-02-28 15:02:15.388 500 FEE 441428 20479 6099912 2024-02-28 15:02:15.388 2024-02-28 15:02:15.388 4500 TIP 441428 20156 6099921 2024-02-28 15:02:16.794 2024-02-28 15:02:16.794 500 FEE 441428 15088 6099922 2024-02-28 15:02:16.794 2024-02-28 15:02:16.794 4500 TIP 441428 6229 6099942 2024-02-28 15:02:30.346 2024-02-28 15:02:30.346 1100 FEE 441983 18816 6099943 2024-02-28 15:02:30.346 2024-02-28 15:02:30.346 9900 TIP 441983 16754 6099960 2024-02-28 15:02:39.743 2024-02-28 15:02:39.743 12100 FEE 442084 6058 6099961 2024-02-28 15:02:39.743 2024-02-28 15:02:39.743 108900 TIP 442084 15577 6099964 2024-02-28 15:02:56.769 2024-02-28 15:02:56.769 0 FEE 442099 1352 6100000 2024-02-28 15:05:07.324 2024-02-28 15:05:07.324 200 FEE 442073 9517 6100001 2024-02-28 15:05:07.324 2024-02-28 15:05:07.324 1800 TIP 442073 11522 6100018 2024-02-28 15:05:48.444 2024-02-28 15:05:48.444 2100 FEE 441660 20464 6100019 2024-02-28 15:05:48.444 2024-02-28 15:05:48.444 18900 TIP 441660 11458 6100031 2024-02-28 15:06:05.369 2024-02-28 15:06:05.369 2100 FEE 440725 21233 6100032 2024-02-28 15:06:05.369 2024-02-28 15:06:05.369 18900 TIP 440725 1213 6100033 2024-02-28 15:06:13.815 2024-02-28 15:06:13.815 12800 FEE 200867 1740 6100034 2024-02-28 15:06:13.815 2024-02-28 15:06:13.815 115200 TIP 200867 19132 6100052 2024-02-28 15:06:38.769 2024-02-28 15:06:38.769 2100 FEE 440785 782 6100053 2024-02-28 15:06:38.769 2024-02-28 15:06:38.769 18900 TIP 440785 11760 6100065 2024-02-28 15:07:01.192 2024-02-28 15:07:01.192 12800 FEE 201145 882 6100066 2024-02-28 15:07:01.192 2024-02-28 15:07:01.192 115200 TIP 201145 776 6100095 2024-02-28 15:07:26.64 2024-02-28 15:07:26.64 200 FEE 442122 681 6100096 2024-02-28 15:07:26.64 2024-02-28 15:07:26.64 1800 TIP 442122 17953 6100097 2024-02-28 15:07:26.857 2024-02-28 15:07:26.857 200 FEE 442122 11698 6100098 2024-02-28 15:07:26.857 2024-02-28 15:07:26.857 1800 TIP 442122 18819 6100099 2024-02-28 15:07:26.899 2024-02-28 15:07:26.899 200 FEE 442122 9433 6100100 2024-02-28 15:07:26.899 2024-02-28 15:07:26.899 1800 TIP 442122 12272 6100114 2024-02-28 15:08:08.585 2024-02-28 15:08:08.585 1000 FEE 442128 16341 6100146 2024-02-28 15:09:00.183 2024-02-28 15:09:00.183 2100 FEE 441669 5171 6100147 2024-02-28 15:09:00.183 2024-02-28 15:09:00.183 18900 TIP 441669 21387 6100167 2024-02-28 15:10:04.909 2024-02-28 15:10:04.909 1000 FEE 442134 18188 6100210 2024-02-28 15:14:47.881 2024-02-28 15:14:47.881 30000 FEE 145279 7668 6100211 2024-02-28 15:14:47.881 2024-02-28 15:14:47.881 270000 TIP 145279 20436 6100253 2024-02-28 15:18:10.136 2024-02-28 15:18:10.136 5000 FEE 442021 20257 6100254 2024-02-28 15:18:10.136 2024-02-28 15:18:10.136 45000 TIP 442021 21269 6100263 2024-02-28 15:18:44.417 2024-02-28 15:18:44.417 10000 FEE 442136 6537 6100264 2024-02-28 15:18:44.417 2024-02-28 15:18:44.417 90000 TIP 442136 20858 6100278 2024-02-28 15:19:11.944 2024-02-28 15:19:11.944 2100 FEE 442061 763 6100279 2024-02-28 15:19:11.944 2024-02-28 15:19:11.944 18900 TIP 442061 21248 6100284 2024-02-28 15:19:23.218 2024-02-28 15:19:23.218 1000 FEE 442148 4126 6100288 2024-02-28 15:19:25.017 2024-02-28 15:19:25.017 1000 FEE 442141 671 6100289 2024-02-28 15:19:25.017 2024-02-28 15:19:25.017 9000 TIP 442141 20588 6100304 2024-02-28 15:19:52.905 2024-02-28 15:19:52.905 3300 FEE 442101 13348 6100305 2024-02-28 15:19:52.905 2024-02-28 15:19:52.905 29700 TIP 442101 20251 6100307 2024-02-28 15:20:00.308 2024-02-28 15:20:00.308 100 FEE 440959 20276 6100308 2024-02-28 15:20:00.308 2024-02-28 15:20:00.308 900 TIP 440959 11885 6100310 2024-02-28 15:20:28.762 2024-02-28 15:20:28.762 100 FEE 442143 1135 6100311 2024-02-28 15:20:28.762 2024-02-28 15:20:28.762 900 TIP 442143 18704 6099586 2024-02-28 14:36:51.084 2024-02-28 14:36:51.084 2100 FEE 441944 4322 6099587 2024-02-28 14:36:51.084 2024-02-28 14:36:51.084 18900 TIP 441944 21014 6099628 2024-02-28 14:38:52.43 2024-02-28 14:38:52.43 2100 FEE 441894 1784 6099629 2024-02-28 14:38:52.43 2024-02-28 14:38:52.43 18900 TIP 441894 10007 6099658 2024-02-28 14:39:49.845 2024-02-28 14:39:49.845 1000 FEE 441917 16556 6099659 2024-02-28 14:39:49.845 2024-02-28 14:39:49.845 9000 TIP 441917 11956 6099692 2024-02-28 14:43:30.623 2024-02-28 14:43:30.623 500 FEE 441959 1094 6099693 2024-02-28 14:43:30.623 2024-02-28 14:43:30.623 4500 TIP 441959 19458 6099709 2024-02-28 14:43:52.131 2024-02-28 14:43:52.131 100 FEE 441660 794 6099710 2024-02-28 14:43:52.131 2024-02-28 14:43:52.131 900 TIP 441660 14651 6099725 2024-02-28 14:44:02.541 2024-02-28 14:44:02.541 100 FEE 440725 14941 6099726 2024-02-28 14:44:02.541 2024-02-28 14:44:02.541 900 TIP 440725 8162 6099730 2024-02-28 14:44:06.999 2024-02-28 14:44:06.999 100 FEE 440898 21463 6099731 2024-02-28 14:44:06.999 2024-02-28 14:44:06.999 900 TIP 440898 16485 6099739 2024-02-28 14:45:37.069 2024-02-28 14:45:37.069 21000 FEE 442032 18816 6099740 2024-02-28 14:45:37.069 2024-02-28 14:45:37.069 189000 TIP 442032 19690 6099753 2024-02-28 14:45:51.711 2024-02-28 14:45:51.711 1000 FEE 442074 18241 6099759 2024-02-28 14:46:37.461 2024-02-28 14:46:37.461 400 FEE 442040 16329 6099760 2024-02-28 14:46:37.461 2024-02-28 14:46:37.461 3600 TIP 442040 694 6099764 2024-02-28 14:47:07.544 2024-02-28 14:47:07.544 10000 FEE 442079 18663 6099799 2024-02-28 14:48:59.517 2024-02-28 14:48:59.517 0 FEE 442085 16956 6099876 2024-02-28 14:58:54.988 2024-02-28 14:58:54.988 5700 FEE 442098 6030 6099877 2024-02-28 14:58:54.988 2024-02-28 14:58:54.988 51300 TIP 442098 20922 6099879 2024-02-28 14:59:37.587 2024-02-28 14:59:37.587 500 FEE 441706 1298 6099880 2024-02-28 14:59:37.587 2024-02-28 14:59:37.587 4500 TIP 441706 2367 6099881 2024-02-28 14:59:37.737 2024-02-28 14:59:37.737 1000 FEE 442101 18309 6099909 2024-02-28 15:02:15.142 2024-02-28 15:02:15.142 500 FEE 441428 11329 6099910 2024-02-28 15:02:15.142 2024-02-28 15:02:15.142 4500 TIP 441428 6526 6099913 2024-02-28 15:02:16.016 2024-02-28 15:02:16.016 500 FEE 441428 2176 6099914 2024-02-28 15:02:16.016 2024-02-28 15:02:16.016 4500 TIP 441428 1221 6099937 2024-02-28 15:02:21.653 2024-02-28 15:02:21.653 1100 FEE 442023 5160 6099938 2024-02-28 15:02:21.653 2024-02-28 15:02:21.653 9900 TIP 442023 749 6099952 2024-02-28 15:02:31.421 2024-02-28 15:02:31.421 900 FEE 441959 18306 6099953 2024-02-28 15:02:31.421 2024-02-28 15:02:31.421 8100 TIP 441959 18873 6099995 2024-02-28 15:04:45.244 2024-02-28 15:04:45.244 9000 FEE 442065 1836 6099996 2024-02-28 15:04:45.244 2024-02-28 15:04:45.244 81000 TIP 442065 1713 6100006 2024-02-28 15:05:35.02 2024-02-28 15:05:35.02 1000 FEE 442103 10094 6100007 2024-02-28 15:05:35.02 2024-02-28 15:05:35.02 9000 TIP 442103 646 6100010 2024-02-28 15:05:35.357 2024-02-28 15:05:35.357 100 FEE 442102 19995 6100011 2024-02-28 15:05:35.357 2024-02-28 15:05:35.357 900 TIP 442102 13143 6100043 2024-02-28 15:06:31.44 2024-02-28 15:06:31.44 0 FEE 442106 1605 6100046 2024-02-28 15:06:32.296 2024-02-28 15:06:32.296 2100 FEE 440775 20581 6100047 2024-02-28 15:06:32.296 2024-02-28 15:06:32.296 18900 TIP 440775 836 6100060 2024-02-28 15:06:49.913 2024-02-28 15:06:49.913 0 FEE 442118 18357 6100070 2024-02-28 15:07:08.229 2024-02-28 15:07:08.229 1000 FEE 442084 13544 6100071 2024-02-28 15:07:08.229 2024-02-28 15:07:08.229 9000 TIP 442084 17157 6100085 2024-02-28 15:07:25.792 2024-02-28 15:07:25.792 200 FEE 442122 7989 6100086 2024-02-28 15:07:25.792 2024-02-28 15:07:25.792 1800 TIP 442122 7418 6100101 2024-02-28 15:07:27.177 2024-02-28 15:07:27.177 200 FEE 442122 19821 6100102 2024-02-28 15:07:27.177 2024-02-28 15:07:27.177 1800 TIP 442122 616 6100133 2024-02-28 15:08:54.3 2024-02-28 15:08:54.3 2100 FEE 441948 18392 6100134 2024-02-28 15:08:54.3 2024-02-28 15:08:54.3 18900 TIP 441948 11145 6100139 2024-02-28 15:08:57.783 2024-02-28 15:08:57.783 1100 FEE 442108 11760 6100140 2024-02-28 15:08:57.783 2024-02-28 15:08:57.783 9900 TIP 442108 19527 6100161 2024-02-28 15:09:14.34 2024-02-28 15:09:14.34 2100 FEE 441596 18235 6100162 2024-02-28 15:09:14.34 2024-02-28 15:09:14.34 18900 TIP 441596 18557 6100163 2024-02-28 15:09:20.985 2024-02-28 15:09:20.985 0 FEE 442118 1738 6100178 2024-02-28 15:10:50.202 2024-02-28 15:10:50.202 1000 FEE 442137 997 6100189 2024-02-28 15:13:48.893 2024-02-28 15:13:48.893 3100 FEE 442084 1471 6100190 2024-02-28 15:13:48.893 2024-02-28 15:13:48.893 27900 TIP 442084 19005 6100257 2024-02-28 15:18:30.122 2024-02-28 15:18:30.122 1000 FEE 442138 2329 6100258 2024-02-28 15:18:30.122 2024-02-28 15:18:30.122 9000 TIP 442138 8508 6100274 2024-02-28 15:19:05.37 2024-02-28 15:19:05.37 2100 FEE 442075 4798 6100275 2024-02-28 15:19:05.37 2024-02-28 15:19:05.37 18900 TIP 442075 1713 6100298 2024-02-28 15:19:50.742 2024-02-28 15:19:50.742 2100 FEE 441823 17976 6100299 2024-02-28 15:19:50.742 2024-02-28 15:19:50.742 18900 TIP 441823 20924 6100306 2024-02-28 15:19:55.424 2024-02-28 15:19:55.424 1000 FEE 442150 17526 6100314 2024-02-28 15:20:34.696 2024-02-28 15:20:34.696 1000 FEE 442151 19886 6100336 2024-02-28 15:21:03.657 2024-02-28 15:21:03.657 1000 FEE 441077 14731 6100337 2024-02-28 15:21:03.657 2024-02-28 15:21:03.657 9000 TIP 441077 18945 6100372 2024-02-28 15:23:17.554 2024-02-28 15:23:17.554 2100 FEE 442143 9365 6100373 2024-02-28 15:23:17.554 2024-02-28 15:23:17.554 18900 TIP 442143 9099 6100387 2024-02-28 15:24:16.636 2024-02-28 15:24:16.636 1000 FEE 442143 8448 6100388 2024-02-28 15:24:16.636 2024-02-28 15:24:16.636 9000 TIP 442143 19243 6100392 2024-02-28 15:24:18.665 2024-02-28 15:24:18.665 1000 FEE 441853 2528 6100393 2024-02-28 15:24:18.665 2024-02-28 15:24:18.665 9000 TIP 441853 717 6100420 2024-02-28 15:25:45.573 2024-02-28 15:25:45.573 1000 FEE 441874 13622 6100421 2024-02-28 15:25:45.573 2024-02-28 15:25:45.573 9000 TIP 441874 733 6100423 2024-02-28 15:25:48.057 2024-02-28 15:25:48.057 0 FEE 442160 14705 6100437 2024-02-28 15:26:55.802 2024-02-28 15:26:55.802 100 FEE 442163 18309 6100438 2024-02-28 15:26:55.802 2024-02-28 15:26:55.802 900 TIP 442163 11621 6100442 2024-02-28 15:27:02.314 2024-02-28 15:27:02.314 5700 FEE 442160 631 6100443 2024-02-28 15:27:02.314 2024-02-28 15:27:02.314 51300 TIP 442160 18472 6100452 2024-02-28 15:27:08.951 2024-02-28 15:27:08.951 0 FEE 442159 1717 6100454 2024-02-28 15:27:14.126 2024-02-28 15:27:14.126 6900 FEE 442163 1195 6100455 2024-02-28 15:27:14.126 2024-02-28 15:27:14.126 62100 TIP 442163 15180 6100460 2024-02-28 15:27:37.879 2024-02-28 15:27:37.879 3100 FEE 442159 11298 6100461 2024-02-28 15:27:37.879 2024-02-28 15:27:37.879 27900 TIP 442159 5829 6100493 2024-02-28 15:29:41.686 2024-02-28 15:29:41.686 3300 FEE 441843 16929 6100494 2024-02-28 15:29:41.686 2024-02-28 15:29:41.686 29700 TIP 441843 18525 6100499 2024-02-28 15:29:53.808 2024-02-28 15:29:53.808 10000 FEE 442170 20603 6100500 2024-02-28 15:29:53.808 2024-02-28 15:29:53.808 90000 TIP 442170 21292 6100506 2024-02-28 15:30:13.853 2024-02-28 15:30:13.853 1000 FEE 442176 12561 6100558 2024-02-28 15:32:47.73 2024-02-28 15:32:47.73 3300 FEE 441843 17690 6100559 2024-02-28 15:32:47.73 2024-02-28 15:32:47.73 29700 TIP 441843 18836 6100571 2024-02-28 15:32:56.892 2024-02-28 15:32:56.892 2100 FEE 442163 18208 6099735 2024-02-28 14:45:07.647 2024-02-28 14:45:07.647 1000 FEE 442072 20340 6099751 2024-02-28 14:45:40.895 2024-02-28 14:45:40.895 1000 FEE 442065 11862 6099752 2024-02-28 14:45:40.895 2024-02-28 14:45:40.895 9000 TIP 442065 21371 6099754 2024-02-28 14:45:52.508 2024-02-28 14:45:52.508 2100 FEE 441720 16355 6099755 2024-02-28 14:45:52.508 2024-02-28 14:45:52.508 18900 TIP 441720 1584 6099777 2024-02-28 14:47:33.146 2024-02-28 14:47:33.146 5000 FEE 442058 9529 6099778 2024-02-28 14:47:33.146 2024-02-28 14:47:33.146 45000 TIP 442058 17184 6099797 2024-02-28 14:48:49.998 2024-02-28 14:48:49.998 6900 FEE 442053 1483 6099798 2024-02-28 14:48:49.998 2024-02-28 14:48:49.998 62100 TIP 442053 17091 6099808 2024-02-28 14:49:13.386 2024-02-28 14:49:13.386 0 FEE 442085 11145 6099862 2024-02-28 14:55:18.659 2024-02-28 14:55:18.659 12800 FEE 441854 2431 6099863 2024-02-28 14:55:18.659 2024-02-28 14:55:18.659 115200 TIP 441854 20816 6099864 2024-02-28 14:55:20.718 2024-02-28 14:55:20.718 1100 FEE 442092 9705 6099865 2024-02-28 14:55:20.718 2024-02-28 14:55:20.718 9900 TIP 442092 20599 6099890 2024-02-28 15:00:48.492 2024-02-28 15:00:48.492 7700 FEE 442100 18630 6099891 2024-02-28 15:00:48.492 2024-02-28 15:00:48.492 69300 TIP 442100 16178 6099895 2024-02-28 15:00:53.712 2024-02-28 15:00:53.712 1000 FEE 442105 17797 6099902 2024-02-28 15:02:05.423 2024-02-28 15:02:05.423 12800 FEE 441968 11716 6099903 2024-02-28 15:02:05.423 2024-02-28 15:02:05.423 115200 TIP 441968 14905 6099919 2024-02-28 15:02:16.501 2024-02-28 15:02:16.501 500 FEE 441428 8045 6099920 2024-02-28 15:02:16.501 2024-02-28 15:02:16.501 4500 TIP 441428 19546 6099957 2024-02-28 15:02:36.862 2024-02-28 15:02:36.862 1100 FEE 441965 2703 6099958 2024-02-28 15:02:36.862 2024-02-28 15:02:36.862 9900 TIP 441965 15484 6099976 2024-02-28 15:04:05.174 2024-02-28 15:04:05.174 7700 FEE 442109 21522 6099977 2024-02-28 15:04:05.174 2024-02-28 15:04:05.174 69300 TIP 442109 19581 6099998 2024-02-28 15:04:58.933 2024-02-28 15:04:58.933 1000 FEE 442115 12774 6100012 2024-02-28 15:05:35.605 2024-02-28 15:05:35.605 1000 FEE 442118 11885 6100015 2024-02-28 15:05:43.835 2024-02-28 15:05:43.835 2100 FEE 442068 844 6100016 2024-02-28 15:05:43.835 2024-02-28 15:05:43.835 18900 TIP 442068 4115 6100029 2024-02-28 15:06:04.125 2024-02-28 15:06:04.125 12800 FEE 441843 19031 6100030 2024-02-28 15:06:04.125 2024-02-28 15:06:04.125 115200 TIP 441843 5725 6100035 2024-02-28 15:06:14.117 2024-02-28 15:06:14.117 0 FEE 442119 20434 6100048 2024-02-28 15:06:34.984 2024-02-28 15:06:34.984 2100 FEE 440909 5779 6100049 2024-02-28 15:06:34.984 2024-02-28 15:06:34.984 18900 TIP 440909 13622 6100054 2024-02-28 15:06:39.199 2024-02-28 15:06:39.199 1000 FEE 442120 18533 6100058 2024-02-28 15:06:39.856 2024-02-28 15:06:39.856 2100 FEE 442108 4173 6100059 2024-02-28 15:06:39.856 2024-02-28 15:06:39.856 18900 TIP 442108 20687 6100078 2024-02-28 15:07:17.066 2024-02-28 15:07:17.066 1000 FEE 441968 20826 6100079 2024-02-28 15:07:17.066 2024-02-28 15:07:17.066 9000 TIP 441968 15890 6100080 2024-02-28 15:07:19.409 2024-02-28 15:07:19.409 1000 FEE 442126 14385 6100091 2024-02-28 15:07:26.357 2024-02-28 15:07:26.357 200 FEE 442122 4304 6100092 2024-02-28 15:07:26.357 2024-02-28 15:07:26.357 1800 TIP 442122 19546 6100093 2024-02-28 15:07:26.398 2024-02-28 15:07:26.398 200 FEE 442122 12708 6100094 2024-02-28 15:07:26.398 2024-02-28 15:07:26.398 1800 TIP 442122 7992 6100104 2024-02-28 15:07:36.643 2024-02-28 15:07:36.643 1000 FEE 441720 9363 6100105 2024-02-28 15:07:36.643 2024-02-28 15:07:36.643 9000 TIP 441720 20218 6100113 2024-02-28 15:08:07.829 2024-02-28 15:08:07.829 0 FEE 442106 19821 6100124 2024-02-28 15:08:27.1 2024-02-28 15:08:27.1 1000 FEE 442129 21444 6100131 2024-02-28 15:08:48.559 2024-02-28 15:08:48.559 2100 FEE 442023 6573 6100132 2024-02-28 15:08:48.559 2024-02-28 15:08:48.559 18900 TIP 442023 11158 6100157 2024-02-28 15:09:09.149 2024-02-28 15:09:09.149 1000 FEE 442132 4388 6100169 2024-02-28 15:10:21.655 2024-02-28 15:10:21.655 0 FEE 442106 1454 6100179 2024-02-28 15:10:52.171 2024-02-28 15:10:52.171 1000 FEE 442138 1490 6100181 2024-02-28 15:11:16.257 2024-02-28 15:11:16.257 5700 FEE 442135 20409 6100182 2024-02-28 15:11:16.257 2024-02-28 15:11:16.257 51300 TIP 442135 11329 6100202 2024-02-28 15:14:22.093 2024-02-28 15:14:22.093 100 FEE 442084 20717 6100203 2024-02-28 15:14:22.093 2024-02-28 15:14:22.093 900 TIP 442084 2709 6100219 2024-02-28 15:16:52.574 2024-02-28 15:16:52.574 1000 FEE 442144 2774 6100223 2024-02-28 15:17:04.199 2024-02-28 15:17:04.199 25600 FEE 442084 18581 6100224 2024-02-28 15:17:04.199 2024-02-28 15:17:04.199 230400 TIP 442084 16706 6100226 2024-02-28 15:17:07.923 2024-02-28 15:17:07.923 1000 FEE 442144 6310 6100227 2024-02-28 15:17:07.923 2024-02-28 15:17:07.923 9000 TIP 442144 19663 6100245 2024-02-28 15:17:45.07 2024-02-28 15:17:45.07 10000 FEE 442147 10096 6100259 2024-02-28 15:18:33.207 2024-02-28 15:18:33.207 2100 FEE 441951 16229 6100260 2024-02-28 15:18:33.207 2024-02-28 15:18:33.207 18900 TIP 441951 16149 6100271 2024-02-28 15:19:02.993 2024-02-28 15:19:02.993 2100 FEE 442076 14959 6100272 2024-02-28 15:19:02.993 2024-02-28 15:19:02.993 18900 TIP 442076 696 6100319 2024-02-28 15:20:46.567 2024-02-28 15:20:46.567 1000 FEE 442065 1806 6100320 2024-02-28 15:20:46.567 2024-02-28 15:20:46.567 9000 TIP 442065 2075 6100329 2024-02-28 15:20:55.222 2024-02-28 15:20:55.222 1000 FEE 441742 20502 6100330 2024-02-28 15:20:55.222 2024-02-28 15:20:55.222 9000 TIP 441742 20058 6100333 2024-02-28 15:21:02.824 2024-02-28 15:21:02.824 5700 FEE 442148 15147 6100334 2024-02-28 15:21:02.824 2024-02-28 15:21:02.824 51300 TIP 442148 4768 6100339 2024-02-28 15:21:14.329 2024-02-28 15:21:14.329 2100 FEE 441986 18704 6100340 2024-02-28 15:21:14.329 2024-02-28 15:21:14.329 18900 TIP 441986 16724 6100346 2024-02-28 15:21:52.035 2024-02-28 15:21:52.035 3300 FEE 441968 19735 6100347 2024-02-28 15:21:52.035 2024-02-28 15:21:52.035 29700 TIP 441968 814 6100375 2024-02-28 15:23:45.219 2024-02-28 15:23:45.219 100 FEE 442147 2757 6100376 2024-02-28 15:23:45.219 2024-02-28 15:23:45.219 900 TIP 442147 18114 6100379 2024-02-28 15:23:49.859 2024-02-28 15:23:49.859 1000 POLL 441660 21422 6100380 2024-02-28 15:23:53.282 2024-02-28 15:23:53.282 2100 FEE 442035 8360 6100381 2024-02-28 15:23:53.282 2024-02-28 15:23:53.282 18900 TIP 442035 11885 6100389 2024-02-28 15:24:17.118 2024-02-28 15:24:17.118 0 FEE 442155 21320 6100413 2024-02-28 15:25:40.444 2024-02-28 15:25:40.444 100000 FEE 442163 18016 6100418 2024-02-28 15:25:44.876 2024-02-28 15:25:44.876 1000 FEE 441874 8954 6100419 2024-02-28 15:25:44.876 2024-02-28 15:25:44.876 9000 TIP 441874 8713 6100426 2024-02-28 15:26:35.418 2024-02-28 15:26:35.418 0 FEE 442160 5359 6100440 2024-02-28 15:27:00.064 2024-02-28 15:27:00.064 21000 DONT_LIKE_THIS 442074 16950 6100441 2024-02-28 15:27:00.511 2024-02-28 15:27:00.511 1000 POLL 442163 10979 6100445 2024-02-28 15:27:03.123 2024-02-28 15:27:03.123 5000 FEE 441843 20660 6100446 2024-02-28 15:27:03.123 2024-02-28 15:27:03.123 45000 TIP 441843 14152 6100453 2024-02-28 15:27:08.984 2024-02-28 15:27:08.984 1000 POLL 442163 2088 6100457 2024-02-28 15:27:26.004 2024-02-28 15:27:26.004 10000 FEE 442168 20616 6100517 2024-02-28 15:30:38.614 2024-02-28 15:30:38.614 900 FEE 442144 749 6100518 2024-02-28 15:30:38.614 2024-02-28 15:30:38.614 8100 TIP 442144 659 6100519 2024-02-28 15:30:39.952 2024-02-28 15:30:39.952 100 FEE 442164 21393 6100520 2024-02-28 15:30:39.952 2024-02-28 15:30:39.952 900 TIP 442164 20073 6100527 2024-02-28 15:30:42.569 2024-02-28 15:30:42.569 5700 FEE 442170 14857 6100528 2024-02-28 15:30:42.569 2024-02-28 15:30:42.569 51300 TIP 442170 21103 6100550 2024-02-28 15:32:39.053 2024-02-28 15:32:39.053 27900 FEE 442065 1480 6100551 2024-02-28 15:32:39.053 2024-02-28 15:32:39.053 251100 TIP 442065 18040 6100554 2024-02-28 15:32:47.408 2024-02-28 15:32:47.408 3300 FEE 441843 17041 6099841 2024-02-28 14:51:33.09 2024-02-28 14:51:33.09 100000 FEE 442093 8004 6099845 2024-02-28 14:51:42.392 2024-02-28 14:51:42.392 5700 FEE 442084 13782 6099846 2024-02-28 14:51:42.392 2024-02-28 14:51:42.392 51300 TIP 442084 1307 6099852 2024-02-28 14:53:14.508 2024-02-28 14:53:14.508 1000 FEE 442095 17568 6099896 2024-02-28 15:00:53.943 2024-02-28 15:00:53.943 30000 FEE 441176 18313 6099897 2024-02-28 15:00:53.943 2024-02-28 15:00:53.943 270000 TIP 441176 19507 6099917 2024-02-28 15:02:16.349 2024-02-28 15:02:16.349 500 FEE 441428 21571 6099918 2024-02-28 15:02:16.349 2024-02-28 15:02:16.349 4500 TIP 441428 8376 6099923 2024-02-28 15:02:16.955 2024-02-28 15:02:16.955 500 FEE 441428 6041 6099924 2024-02-28 15:02:16.955 2024-02-28 15:02:16.955 4500 TIP 441428 10731 6099962 2024-02-28 15:02:52.295 2024-02-28 15:02:52.295 1000 FEE 442110 20180 6099963 2024-02-28 15:02:54.743 2024-02-28 15:02:54.743 1000 FEE 442111 19458 6099968 2024-02-28 15:03:13.123 2024-02-28 15:03:13.123 0 FEE 442109 10311 6099982 2024-02-28 15:04:11.151 2024-02-28 15:04:11.151 7700 FEE 442106 10013 6099983 2024-02-28 15:04:11.151 2024-02-28 15:04:11.151 69300 TIP 442106 21263 6099984 2024-02-28 15:04:17.41 2024-02-28 15:04:17.41 7700 FEE 442096 7510 6099985 2024-02-28 15:04:17.41 2024-02-28 15:04:17.41 69300 TIP 442096 2156 6100003 2024-02-28 15:05:21.357 2024-02-28 15:05:21.357 1000 FEE 442117 20901 6100013 2024-02-28 15:05:36.606 2024-02-28 15:05:36.606 1000 FEE 442103 3353 6100014 2024-02-28 15:05:36.606 2024-02-28 15:05:36.606 9000 TIP 442103 13987 6100017 2024-02-28 15:05:47.311 2024-02-28 15:05:47.311 1000 FEE 442119 7903 6100036 2024-02-28 15:06:14.17 2024-02-28 15:06:14.17 1000 POLL 440725 2224 6100039 2024-02-28 15:06:24.746 2024-02-28 15:06:24.746 2100 FEE 442107 16847 6100040 2024-02-28 15:06:24.746 2024-02-28 15:06:24.746 18900 TIP 442107 12218 6100076 2024-02-28 15:07:15.86 2024-02-28 15:07:15.86 1000 FEE 441964 21402 6100077 2024-02-28 15:07:15.86 2024-02-28 15:07:15.86 9000 TIP 441964 5961 6100081 2024-02-28 15:07:25.551 2024-02-28 15:07:25.551 200 FEE 442122 14503 6100082 2024-02-28 15:07:25.551 2024-02-28 15:07:25.551 1800 TIP 442122 18336 6100164 2024-02-28 15:09:34.604 2024-02-28 15:09:34.604 0 FEE 442106 18641 6100171 2024-02-28 15:10:36.102 2024-02-28 15:10:36.102 1000 FEE 442136 5128 6100176 2024-02-28 15:10:45.481 2024-02-28 15:10:45.481 10000 FEE 442130 19929 6100177 2024-02-28 15:10:45.481 2024-02-28 15:10:45.481 90000 TIP 442130 11829 6100193 2024-02-28 15:13:51.163 2024-02-28 15:13:51.163 1000 FEE 440609 16341 6100194 2024-02-28 15:13:51.163 2024-02-28 15:13:51.163 9000 TIP 440609 6717 6100225 2024-02-28 15:17:05.076 2024-02-28 15:17:05.076 1000 FEE 442145 21527 6100231 2024-02-28 15:17:24.094 2024-02-28 15:17:24.094 2100 FEE 442084 18232 6100232 2024-02-28 15:17:24.094 2024-02-28 15:17:24.094 18900 TIP 442084 19263 6100243 2024-02-28 15:17:43.278 2024-02-28 15:17:43.278 2100 FEE 442065 18945 6100244 2024-02-28 15:17:43.278 2024-02-28 15:17:43.278 18900 TIP 442065 19289 6100246 2024-02-28 15:17:49.184 2024-02-28 15:17:49.184 2100 FEE 441968 15351 6100247 2024-02-28 15:17:49.184 2024-02-28 15:17:49.184 18900 TIP 441968 5637 6100261 2024-02-28 15:18:35.249 2024-02-28 15:18:35.249 2100 FEE 441894 21585 6100262 2024-02-28 15:18:35.249 2024-02-28 15:18:35.249 18900 TIP 441894 9169 6100269 2024-02-28 15:19:01.784 2024-02-28 15:19:01.784 2100 FEE 441983 16289 6100270 2024-02-28 15:19:01.784 2024-02-28 15:19:01.784 18900 TIP 441983 1060 6100285 2024-02-28 15:19:23.494 2024-02-28 15:19:23.494 2100 FEE 441885 20156 6100286 2024-02-28 15:19:23.494 2024-02-28 15:19:23.494 18900 TIP 441885 13327 6100315 2024-02-28 15:20:42.226 2024-02-28 15:20:42.226 1000 FEE 442023 17183 6100316 2024-02-28 15:20:42.226 2024-02-28 15:20:42.226 9000 TIP 442023 5557 6100331 2024-02-28 15:20:59.861 2024-02-28 15:20:59.861 1000 FEE 441794 19494 6100332 2024-02-28 15:20:59.861 2024-02-28 15:20:59.861 9000 TIP 441794 16532 6100344 2024-02-28 15:21:21.565 2024-02-28 15:21:21.565 1000 FEE 442143 19117 6100345 2024-02-28 15:21:21.565 2024-02-28 15:21:21.565 9000 TIP 442143 676 6100356 2024-02-28 15:22:25.831 2024-02-28 15:22:25.831 2100 FEE 442008 1493 6100357 2024-02-28 15:22:25.831 2024-02-28 15:22:25.831 18900 TIP 442008 4388 6100358 2024-02-28 15:22:32.217 2024-02-28 15:22:32.217 2100 FEE 441701 19637 6100359 2024-02-28 15:22:32.217 2024-02-28 15:22:32.217 18900 TIP 441701 776 6100362 2024-02-28 15:22:58.378 2024-02-28 15:22:58.378 1000 FEE 442155 7510 6100394 2024-02-28 15:24:19.377 2024-02-28 15:24:19.377 1000 FEE 441853 21180 6100395 2024-02-28 15:24:19.377 2024-02-28 15:24:19.377 9000 TIP 441853 2000 6100429 2024-02-28 15:26:42.226 2024-02-28 15:26:42.226 1000 FEE 441843 9551 6100430 2024-02-28 15:26:42.226 2024-02-28 15:26:42.226 9000 TIP 441843 17673 6100434 2024-02-28 15:26:54.891 2024-02-28 15:26:54.891 21000 DONT_LIKE_THIS 442162 17827 6100448 2024-02-28 15:27:03.842 2024-02-28 15:27:03.842 45000 FEE 441843 9426 6100449 2024-02-28 15:27:03.842 2024-02-28 15:27:03.842 405000 TIP 441843 848 6100459 2024-02-28 15:27:29.929 2024-02-28 15:27:29.929 120000 FEE 442170 14015 6100464 2024-02-28 15:27:40.916 2024-02-28 15:27:40.916 27900 FEE 442159 3686 6100465 2024-02-28 15:27:40.916 2024-02-28 15:27:40.916 251100 TIP 442159 21274 6100468 2024-02-28 15:27:45.7 2024-02-28 15:27:45.7 7700 FEE 442163 18154 6100469 2024-02-28 15:27:45.7 2024-02-28 15:27:45.7 69300 TIP 442163 20504 6099978 2024-02-28 15:04:10.29 2024-02-28 15:04:10.29 7700 FEE 442106 627 6099979 2024-02-28 15:04:10.29 2024-02-28 15:04:10.29 69300 TIP 442106 15488 6100002 2024-02-28 15:05:12.155 2024-02-28 15:05:12.155 1000 FEE 442116 716 6100004 2024-02-28 15:05:28.758 2024-02-28 15:05:28.758 5700 FEE 442111 1745 6100005 2024-02-28 15:05:28.758 2024-02-28 15:05:28.758 51300 TIP 442111 1512 6100008 2024-02-28 15:05:35.07 2024-02-28 15:05:35.07 12800 FEE 442084 12139 6100009 2024-02-28 15:05:35.07 2024-02-28 15:05:35.07 115200 TIP 442084 14255 6100055 2024-02-28 15:06:39.567 2024-02-28 15:06:39.567 2100 FEE 440873 2042 6100056 2024-02-28 15:06:39.567 2024-02-28 15:06:39.567 18900 TIP 440873 979 6100072 2024-02-28 15:07:12.472 2024-02-28 15:07:12.472 1000 FEE 442124 18363 6100083 2024-02-28 15:07:25.583 2024-02-28 15:07:25.583 200 FEE 442122 1145 6100084 2024-02-28 15:07:25.583 2024-02-28 15:07:25.583 1800 TIP 442122 15544 6100110 2024-02-28 15:07:58.753 2024-02-28 15:07:58.753 2100 FEE 442047 8508 6100111 2024-02-28 15:07:58.753 2024-02-28 15:07:58.753 18900 TIP 442047 1003 6100115 2024-02-28 15:08:11.168 2024-02-28 15:08:11.168 1000 FEE 441801 9378 6100116 2024-02-28 15:08:11.168 2024-02-28 15:08:11.168 9000 TIP 441801 21494 6100127 2024-02-28 15:08:45.75 2024-02-28 15:08:45.75 2100 FEE 442043 18174 6100128 2024-02-28 15:08:45.75 2024-02-28 15:08:45.75 18900 TIP 442043 17953 6100135 2024-02-28 15:08:54.919 2024-02-28 15:08:54.919 2100 FEE 441954 1008 6100136 2024-02-28 15:08:54.919 2024-02-28 15:08:54.919 18900 TIP 441954 21003 6100137 2024-02-28 15:08:56.795 2024-02-28 15:08:56.795 25600 FEE 442084 18363 6100138 2024-02-28 15:08:56.795 2024-02-28 15:08:56.795 230400 TIP 442084 9920 6100148 2024-02-28 15:09:00.859 2024-02-28 15:09:00.859 2100 FEE 441694 9705 6100149 2024-02-28 15:09:00.859 2024-02-28 15:09:00.859 18900 TIP 441694 2330 6100153 2024-02-28 15:09:05.585 2024-02-28 15:09:05.585 1000 FEE 441803 12562 6100154 2024-02-28 15:09:05.585 2024-02-28 15:09:05.585 9000 TIP 441803 956 6100158 2024-02-28 15:09:10.569 2024-02-28 15:09:10.569 1000 FEE 442133 8870 6100165 2024-02-28 15:09:55.743 2024-02-28 15:09:55.743 0 FEE 442118 16052 6100172 2024-02-28 15:10:39.85 2024-02-28 15:10:39.85 100 FEE 442123 13204 6100173 2024-02-28 15:10:39.85 2024-02-28 15:10:39.85 900 TIP 442123 18114 6100228 2024-02-28 15:17:21.664 2024-02-28 15:17:21.664 2100 FEE 442023 20026 6100229 2024-02-28 15:17:21.664 2024-02-28 15:17:21.664 18900 TIP 442023 2402 6100235 2024-02-28 15:17:29.492 2024-02-28 15:17:29.492 2100 FEE 441944 21591 6100236 2024-02-28 15:17:29.492 2024-02-28 15:17:29.492 18900 TIP 441944 5069 6100265 2024-02-28 15:18:53.32 2024-02-28 15:18:53.32 2100 FEE 442101 8498 6100266 2024-02-28 15:18:53.32 2024-02-28 15:18:53.32 18900 TIP 442101 9985 6100280 2024-02-28 15:19:15.992 2024-02-28 15:19:15.992 2100 FEE 441887 12422 6100281 2024-02-28 15:19:15.992 2024-02-28 15:19:15.992 18900 TIP 441887 17218 6100294 2024-02-28 15:19:43.411 2024-02-28 15:19:43.411 2100 FEE 441845 21064 6100295 2024-02-28 15:19:43.411 2024-02-28 15:19:43.411 18900 TIP 441845 10536 6100327 2024-02-28 15:20:53.304 2024-02-28 15:20:53.304 1000 FEE 441951 20987 6100328 2024-02-28 15:20:53.304 2024-02-28 15:20:53.304 9000 TIP 441951 661 6100341 2024-02-28 15:21:16.108 2024-02-28 15:21:16.108 2100 FEE 441719 21401 6100342 2024-02-28 15:21:16.108 2024-02-28 15:21:16.108 18900 TIP 441719 15386 6100364 2024-02-28 15:23:07.251 2024-02-28 15:23:07.251 1000 FEE 441959 12175 6100365 2024-02-28 15:23:07.251 2024-02-28 15:23:07.251 9000 TIP 441959 20117 6100396 2024-02-28 15:24:21.421 2024-02-28 15:24:21.421 2100 FEE 441975 19661 6100397 2024-02-28 15:24:21.421 2024-02-28 15:24:21.421 18900 TIP 441975 1046 6100431 2024-02-28 15:26:46.143 2024-02-28 15:26:46.143 1000 FEE 442166 16808 6100479 2024-02-28 15:28:16.26 2024-02-28 15:28:16.26 1000 FEE 442173 1213 6100487 2024-02-28 15:28:34.011 2024-02-28 15:28:34.011 1000 FEE 442174 13361 6100495 2024-02-28 15:29:43.11 2024-02-28 15:29:43.11 1000 POLL 442163 4345 6100496 2024-02-28 15:29:49.683 2024-02-28 15:29:49.683 1000 POLL 442163 18679 6100515 2024-02-28 15:30:38.576 2024-02-28 15:30:38.576 900 FEE 442143 9982 6100516 2024-02-28 15:30:38.576 2024-02-28 15:30:38.576 8100 TIP 442143 1000 6100532 2024-02-28 15:30:48.061 2024-02-28 15:30:48.061 1000 FEE 442178 986 6100540 2024-02-28 15:31:40.231 2024-02-28 15:31:40.231 100 FEE 442179 20291 6100541 2024-02-28 15:31:40.231 2024-02-28 15:31:40.231 900 TIP 442179 7510 6100544 2024-02-28 15:32:00.297 2024-02-28 15:32:00.297 0 FEE 442169 6777 6100546 2024-02-28 15:32:03.683 2024-02-28 15:32:03.683 1000 POLL 442163 21291 6100548 2024-02-28 15:32:38.226 2024-02-28 15:32:38.226 3100 FEE 442065 1429 6100549 2024-02-28 15:32:38.226 2024-02-28 15:32:38.226 27900 TIP 442065 2508 6100581 2024-02-28 15:33:01.157 2024-02-28 15:33:01.157 3300 FEE 442163 13348 6100582 2024-02-28 15:33:01.157 2024-02-28 15:33:01.157 29700 TIP 442163 11091 6100596 2024-02-28 15:34:15.303 2024-02-28 15:34:15.303 100 FEE 441795 1401 6100597 2024-02-28 15:34:15.303 2024-02-28 15:34:15.303 900 TIP 441795 3342 6100620 2024-02-28 15:34:59.725 2024-02-28 15:34:59.725 0 FEE 442188 15326 6100628 2024-02-28 15:35:15.793 2024-02-28 15:35:15.793 10000 FEE 441843 14688 6100629 2024-02-28 15:35:15.793 2024-02-28 15:35:15.793 90000 TIP 441843 989 6100652 2024-02-28 15:36:02.642 2024-02-28 15:36:02.642 27900 FEE 442191 13076 6100653 2024-02-28 15:36:02.642 2024-02-28 15:36:02.642 251100 TIP 442191 6393 6100658 2024-02-28 15:36:12.199 2024-02-28 15:36:12.199 1000 FEE 442198 12774 6100692 2024-02-28 15:36:54.739 2024-02-28 15:36:54.739 1000 FEE 441438 10731 6100693 2024-02-28 15:36:54.739 2024-02-28 15:36:54.739 9000 TIP 441438 19661 6100706 2024-02-28 15:37:00.564 2024-02-28 15:37:00.564 2000 FEE 441474 18068 6100707 2024-02-28 15:37:00.564 2024-02-28 15:37:00.564 18000 TIP 441474 17184 6100709 2024-02-28 15:37:07.848 2024-02-28 15:37:07.848 1000 FEE 441514 21323 6100057 2024-02-28 15:06:39.839 2024-02-28 15:06:39.839 1000 FEE 442121 14213 6100074 2024-02-28 15:07:14.709 2024-02-28 15:07:14.709 1000 FEE 441922 18581 6100075 2024-02-28 15:07:14.709 2024-02-28 15:07:14.709 9000 TIP 441922 2342 6100089 2024-02-28 15:07:26.13 2024-02-28 15:07:26.13 200 FEE 442122 16276 6100090 2024-02-28 15:07:26.13 2024-02-28 15:07:26.13 1800 TIP 442122 1224 6100141 2024-02-28 15:08:58.702 2024-02-28 15:08:58.702 2100 FEE 441753 20246 6100142 2024-02-28 15:08:58.702 2024-02-28 15:08:58.702 18900 TIP 441753 684 6100143 2024-02-28 15:08:59.382 2024-02-28 15:08:59.382 1000 FEE 442131 11996 6100155 2024-02-28 15:09:07.651 2024-02-28 15:09:07.651 2100 FEE 441600 17064 6100062 2024-02-28 15:06:50.568 2024-02-28 15:06:50.568 900 TIP 442079 18072 6100063 2024-02-28 15:06:53.094 2024-02-28 15:06:53.094 1000 FEE 442122 16954 6100064 2024-02-28 15:07:01.115 2024-02-28 15:07:01.115 1000 FEE 442123 16571 6100068 2024-02-28 15:07:06.441 2024-02-28 15:07:06.441 100 FEE 442065 16178 6100069 2024-02-28 15:07:06.441 2024-02-28 15:07:06.441 900 TIP 442065 21352 6100073 2024-02-28 15:07:12.596 2024-02-28 15:07:12.596 1000 FEE 442125 10291 6100103 2024-02-28 15:07:30.565 2024-02-28 15:07:30.565 1000 FEE 442127 1326 6100121 2024-02-28 15:08:14.071 2024-02-28 15:08:14.071 1000 FEE 441750 21083 6100122 2024-02-28 15:08:14.071 2024-02-28 15:08:14.071 9000 TIP 441750 21503 6100123 2024-02-28 15:08:18.916 2024-02-28 15:08:18.916 0 FEE 442106 4538 6100125 2024-02-28 15:08:33.372 2024-02-28 15:08:33.372 1000 FEE 442130 20849 6100126 2024-02-28 15:08:33.674 2024-02-28 15:08:33.674 0 FEE 442106 6202 6100144 2024-02-28 15:09:00.09 2024-02-28 15:09:00.09 2500 FEE 442023 1726 6100145 2024-02-28 15:09:00.09 2024-02-28 15:09:00.09 22500 TIP 442023 1717 6100151 2024-02-28 15:09:05.027 2024-02-28 15:09:05.027 1000 FEE 441803 17091 6100152 2024-02-28 15:09:05.027 2024-02-28 15:09:05.027 9000 TIP 441803 20602 6100159 2024-02-28 15:09:12.899 2024-02-28 15:09:12.899 3100 FEE 442129 18817 6100160 2024-02-28 15:09:12.899 2024-02-28 15:09:12.899 27900 TIP 442129 17201 6100174 2024-02-28 15:10:43.969 2024-02-28 15:10:43.969 9900 FEE 442123 15115 6100175 2024-02-28 15:10:43.969 2024-02-28 15:10:43.969 89100 TIP 442123 16513 6100183 2024-02-28 15:11:30.138 2024-02-28 15:11:30.138 1000 FEE 442139 989 6100184 2024-02-28 15:11:39.917 2024-02-28 15:11:39.917 10000 FEE 442120 8985 6100185 2024-02-28 15:11:39.917 2024-02-28 15:11:39.917 90000 TIP 442120 18359 6100191 2024-02-28 15:13:49.508 2024-02-28 15:13:49.508 27900 FEE 442084 4574 6100192 2024-02-28 15:13:49.508 2024-02-28 15:13:49.508 251100 TIP 442084 4633 6100195 2024-02-28 15:13:51.393 2024-02-28 15:13:51.393 1000 FEE 442140 20969 6100204 2024-02-28 15:14:22.453 2024-02-28 15:14:22.453 900 FEE 442084 16598 6100205 2024-02-28 15:14:22.453 2024-02-28 15:14:22.453 8100 TIP 442084 15160 6100213 2024-02-28 15:15:37.102 2024-02-28 15:15:37.102 1000 FEE 442142 730 6100216 2024-02-28 15:16:33.428 2024-02-28 15:16:33.428 0 FEE 442142 15925 6100217 2024-02-28 15:16:50.728 2024-02-28 15:16:50.728 5700 FEE 442143 11498 6100218 2024-02-28 15:16:50.728 2024-02-28 15:16:50.728 51300 TIP 442143 20353 6100220 2024-02-28 15:16:58.17 2024-02-28 15:16:58.17 2100 FEE 442134 19660 6100221 2024-02-28 15:16:58.17 2024-02-28 15:16:58.17 18900 TIP 442134 12562 6100282 2024-02-28 15:19:22.474 2024-02-28 15:19:22.474 5700 FEE 442132 21458 6100283 2024-02-28 15:19:22.474 2024-02-28 15:19:22.474 51300 TIP 442132 3411 6100287 2024-02-28 15:19:23.708 2024-02-28 15:19:23.708 1000 FEE 442149 13587 6100290 2024-02-28 15:19:25.644 2024-02-28 15:19:25.644 1000 FEE 442141 638 6100291 2024-02-28 15:19:25.644 2024-02-28 15:19:25.644 9000 TIP 442141 7395 6100300 2024-02-28 15:19:52.472 2024-02-28 15:19:52.472 3300 FEE 442101 5809 6100301 2024-02-28 15:19:52.472 2024-02-28 15:19:52.472 29700 TIP 442101 8916 6100323 2024-02-28 15:20:50.927 2024-02-28 15:20:50.927 1000 FEE 441894 5694 6100324 2024-02-28 15:20:50.927 2024-02-28 15:20:50.927 9000 TIP 441894 708 6100338 2024-02-28 15:21:14.22 2024-02-28 15:21:14.22 1000 FEE 442152 1428 6100343 2024-02-28 15:21:18.358 2024-02-28 15:21:18.358 1000 FEE 442153 1180 6100349 2024-02-28 15:22:08.81 2024-02-28 15:22:08.81 2100 FEE 441720 2013 6100350 2024-02-28 15:22:08.81 2024-02-28 15:22:08.81 18900 TIP 441720 647 6100398 2024-02-28 15:24:22.525 2024-02-28 15:24:22.525 10000 FEE 442065 19263 6100399 2024-02-28 15:24:22.525 2024-02-28 15:24:22.525 90000 TIP 442065 21619 6100410 2024-02-28 15:25:34.426 2024-02-28 15:25:34.426 5000 FEE 441749 21338 6100411 2024-02-28 15:25:34.426 2024-02-28 15:25:34.426 45000 TIP 441749 17171 6100412 2024-02-28 15:25:34.775 2024-02-28 15:25:34.775 1000 FEE 442162 1471 6100422 2024-02-28 15:25:46.158 2024-02-28 15:25:46.158 0 FEE 442159 5829 6100424 2024-02-28 15:25:56.601 2024-02-28 15:25:56.601 1000 FEE 442164 1114 6100475 2024-02-28 15:28:09.611 2024-02-28 15:28:09.611 1000 FEE 442171 14552 6100477 2024-02-28 15:28:11.534 2024-02-28 15:28:11.534 10000 FEE 442166 13553 6100478 2024-02-28 15:28:11.534 2024-02-28 15:28:11.534 90000 TIP 442166 15978 6100481 2024-02-28 15:28:25.657 2024-02-28 15:28:25.657 3100 FEE 442169 14225 6100482 2024-02-28 15:28:25.657 2024-02-28 15:28:25.657 27900 TIP 442169 1047 6100486 2024-02-28 15:28:33.627 2024-02-28 15:28:33.627 0 FEE 442169 1960 6100497 2024-02-28 15:29:50.011 2024-02-28 15:29:50.011 100 FEE 442170 10359 6100498 2024-02-28 15:29:50.011 2024-02-28 15:29:50.011 900 TIP 442170 19174 6100502 2024-02-28 15:30:06.871 2024-02-28 15:30:06.871 2100 FEE 442163 640 6100503 2024-02-28 15:30:06.871 2024-02-28 15:30:06.871 18900 TIP 442163 17976 6100507 2024-02-28 15:30:15.867 2024-02-28 15:30:15.867 2100 FEE 442065 18454 6100508 2024-02-28 15:30:15.867 2024-02-28 15:30:15.867 18900 TIP 442065 9969 6100521 2024-02-28 15:30:39.989 2024-02-28 15:30:39.989 900 FEE 442164 20781 6100522 2024-02-28 15:30:39.989 2024-02-28 15:30:39.989 8100 TIP 442164 19572 6100525 2024-02-28 15:30:40.995 2024-02-28 15:30:40.995 900 FEE 442150 21119 6100526 2024-02-28 15:30:40.995 2024-02-28 15:30:40.995 8100 TIP 442150 14357 6100530 2024-02-28 15:30:46.894 2024-02-28 15:30:46.894 2100 FEE 442153 4650 6100531 2024-02-28 15:30:46.894 2024-02-28 15:30:46.894 18900 TIP 442153 5904 6100533 2024-02-28 15:30:50.369 2024-02-28 15:30:50.369 1000 FEE 442143 21571 6100534 2024-02-28 15:30:50.369 2024-02-28 15:30:50.369 9000 TIP 442143 11670 6100542 2024-02-28 15:31:43.901 2024-02-28 15:31:43.901 2000 DONT_LIKE_THIS 442167 20198 6100560 2024-02-28 15:32:51.511 2024-02-28 15:32:51.511 6600 FEE 442084 18351 6100561 2024-02-28 15:32:51.511 2024-02-28 15:32:51.511 59400 TIP 442084 10549 6100579 2024-02-28 15:33:01.136 2024-02-28 15:33:01.136 3300 FEE 442163 16542 6100580 2024-02-28 15:33:01.136 2024-02-28 15:33:01.136 29700 TIP 442163 2196 6100592 2024-02-28 15:33:54.806 2024-02-28 15:33:54.806 1000 FEE 442186 14650 6100602 2024-02-28 15:34:16.891 2024-02-28 15:34:16.891 100 FEE 441795 19281 6100603 2024-02-28 15:34:16.891 2024-02-28 15:34:16.891 900 TIP 441795 4177 6100604 2024-02-28 15:34:17.462 2024-02-28 15:34:17.462 100 FEE 441795 11956 6100605 2024-02-28 15:34:17.462 2024-02-28 15:34:17.462 900 TIP 441795 3417 6100606 2024-02-28 15:34:32.614 2024-02-28 15:34:32.614 1000 FEE 442188 8385 6100150 2024-02-28 15:09:01.682 2024-02-28 15:09:01.682 1000 STREAM 141924 18178 6100186 2024-02-28 15:12:01.678 2024-02-28 15:12:01.678 1000 STREAM 141924 13931 6100156 2024-02-28 15:09:07.651 2024-02-28 15:09:07.651 18900 TIP 441600 18453 6100168 2024-02-28 15:10:12.438 2024-02-28 15:10:12.438 1000 FEE 442135 9171 6100170 2024-02-28 15:10:27.701 2024-02-28 15:10:27.701 0 FEE 442134 21349 6100208 2024-02-28 15:14:39.634 2024-02-28 15:14:39.634 90000 FEE 442084 16876 6100209 2024-02-28 15:14:39.634 2024-02-28 15:14:39.634 810000 TIP 442084 684 6100239 2024-02-28 15:17:41.736 2024-02-28 15:17:41.736 5000 FEE 442081 8133 6100240 2024-02-28 15:17:41.736 2024-02-28 15:17:41.736 45000 TIP 442081 20059 6100241 2024-02-28 15:17:42.356 2024-02-28 15:17:42.356 5000 FEE 442125 16649 6100242 2024-02-28 15:17:42.356 2024-02-28 15:17:42.356 45000 TIP 442125 19902 6100187 2024-02-28 15:12:09.224 2024-02-28 15:12:09.224 0 FEE 442123 21514 6100196 2024-02-28 15:13:56.399 2024-02-28 15:13:56.399 1000 FEE 442141 12268 6100197 2024-02-28 15:13:59.007 2024-02-28 15:13:59.007 100 FEE 442043 8729 6100198 2024-02-28 15:13:59.007 2024-02-28 15:13:59.007 900 TIP 442043 20377 6100199 2024-02-28 15:13:59.194 2024-02-28 15:13:59.194 900 FEE 442043 20849 6100200 2024-02-28 15:13:59.194 2024-02-28 15:13:59.194 8100 TIP 442043 9351 6100206 2024-02-28 15:14:24.062 2024-02-28 15:14:24.062 9000 FEE 442084 2330 6100207 2024-02-28 15:14:24.062 2024-02-28 15:14:24.062 81000 TIP 442084 10591 6100215 2024-02-28 15:16:31.896 2024-02-28 15:16:31.896 1000 FEE 442143 19147 6100230 2024-02-28 15:17:22.618 2024-02-28 15:17:22.618 1000 FEE 442146 1801 6100233 2024-02-28 15:17:27.827 2024-02-28 15:17:27.827 1900 FEE 442084 19094 6100234 2024-02-28 15:17:27.827 2024-02-28 15:17:27.827 17100 TIP 442084 18630 6100237 2024-02-28 15:17:41.045 2024-02-28 15:17:41.045 2100 FEE 441854 11798 6100238 2024-02-28 15:17:41.045 2024-02-28 15:17:41.045 18900 TIP 441854 5359 6100249 2024-02-28 15:18:08.468 2024-02-28 15:18:08.468 5000 FEE 442021 11314 6100250 2024-02-28 15:18:08.468 2024-02-28 15:18:08.468 45000 TIP 442021 18601 6100251 2024-02-28 15:18:08.832 2024-02-28 15:18:08.832 5000 FEE 442021 18177 6100252 2024-02-28 15:18:08.832 2024-02-28 15:18:08.832 45000 TIP 442021 19154 6100255 2024-02-28 15:18:14.15 2024-02-28 15:18:14.15 2100 FEE 441773 19841 6100256 2024-02-28 15:18:14.15 2024-02-28 15:18:14.15 18900 TIP 441773 18452 6100267 2024-02-28 15:18:59.89 2024-02-28 15:18:59.89 2100 FEE 442107 18517 6100268 2024-02-28 15:18:59.89 2024-02-28 15:18:59.89 18900 TIP 442107 21139 6100296 2024-02-28 15:19:48.657 2024-02-28 15:19:48.657 2100 FEE 441840 9367 6100297 2024-02-28 15:19:48.657 2024-02-28 15:19:48.657 18900 TIP 441840 8176 6100302 2024-02-28 15:19:52.657 2024-02-28 15:19:52.657 3300 FEE 442101 1741 6100303 2024-02-28 15:19:52.657 2024-02-28 15:19:52.657 29700 TIP 442101 5175 6100317 2024-02-28 15:20:44.827 2024-02-28 15:20:44.827 1000 FEE 441944 18310 6100318 2024-02-28 15:20:44.827 2024-02-28 15:20:44.827 9000 TIP 441944 21003 6100325 2024-02-28 15:20:51.508 2024-02-28 15:20:51.508 1000 FEE 441894 21493 6100326 2024-02-28 15:20:51.508 2024-02-28 15:20:51.508 9000 TIP 441894 2022 6100352 2024-02-28 15:22:22.45 2024-02-28 15:22:22.45 2100 FEE 441712 21402 6100353 2024-02-28 15:22:22.45 2024-02-28 15:22:22.45 18900 TIP 441712 7818 6100354 2024-02-28 15:22:22.813 2024-02-28 15:22:22.813 2100 FEE 441662 20588 6100355 2024-02-28 15:22:22.813 2024-02-28 15:22:22.813 18900 TIP 441662 15226 6100370 2024-02-28 15:23:14.815 2024-02-28 15:23:14.815 1000 FEE 441959 19929 6100371 2024-02-28 15:23:14.815 2024-02-28 15:23:14.815 9000 TIP 441959 711 6100382 2024-02-28 15:23:57.647 2024-02-28 15:23:57.647 1000 FEE 442157 1141 6100383 2024-02-28 15:24:01.206 2024-02-28 15:24:01.206 2100 FEE 442042 1012 6100384 2024-02-28 15:24:01.206 2024-02-28 15:24:01.206 18900 TIP 442042 19863 6100400 2024-02-28 15:24:44.365 2024-02-28 15:24:44.365 2100 FEE 441921 732 6100401 2024-02-28 15:24:44.365 2024-02-28 15:24:44.365 18900 TIP 441921 21254 6100403 2024-02-28 15:24:47.234 2024-02-28 15:24:47.234 1100 FEE 442139 19346 6100404 2024-02-28 15:24:47.234 2024-02-28 15:24:47.234 9900 TIP 442139 5499 6100427 2024-02-28 15:26:41.644 2024-02-28 15:26:41.644 1000 FEE 441843 4027 6100428 2024-02-28 15:26:41.644 2024-02-28 15:26:41.644 9000 TIP 441843 16432 6100444 2024-02-28 15:27:02.46 2024-02-28 15:27:02.46 0 FEE 442160 20970 6100450 2024-02-28 15:27:06.939 2024-02-28 15:27:06.939 2100 FEE 442163 7659 6100451 2024-02-28 15:27:06.939 2024-02-28 15:27:06.939 18900 TIP 442163 10981 6100462 2024-02-28 15:27:38.796 2024-02-28 15:27:38.796 7700 FEE 442152 4570 6100463 2024-02-28 15:27:38.796 2024-02-28 15:27:38.796 69300 TIP 442152 15938 6100538 2024-02-28 15:31:27.412 2024-02-28 15:31:27.412 100 FEE 442170 3979 6100539 2024-02-28 15:31:27.412 2024-02-28 15:31:27.412 900 TIP 442170 16229 6100543 2024-02-28 15:31:53.343 2024-02-28 15:31:53.343 1000 FEE 442181 8648 6100556 2024-02-28 15:32:47.573 2024-02-28 15:32:47.573 3300 FEE 441843 21446 6100557 2024-02-28 15:32:47.573 2024-02-28 15:32:47.573 29700 TIP 441843 1051 6100589 2024-02-28 15:33:35.933 2024-02-28 15:33:35.933 2100 FEE 442177 21339 6100590 2024-02-28 15:33:35.933 2024-02-28 15:33:35.933 18900 TIP 442177 18714 6100614 2024-02-28 15:34:40.57 2024-02-28 15:34:40.57 100 FEE 442045 4958 6100615 2024-02-28 15:34:40.57 2024-02-28 15:34:40.57 900 TIP 442045 13553 6100645 2024-02-28 15:35:46.014 2024-02-28 15:35:46.014 1000 FEE 442195 2459 6100201 2024-02-28 15:14:01.68 2024-02-28 15:14:01.68 1000 STREAM 141924 11956 6100348 2024-02-28 15:22:01.74 2024-02-28 15:22:01.74 1000 STREAM 141924 19535 6100276 2024-02-28 15:19:08.975 2024-02-28 15:19:08.975 2100 FEE 441976 1611 6100277 2024-02-28 15:19:08.975 2024-02-28 15:19:08.975 18900 TIP 441976 12606 6100292 2024-02-28 15:19:37.843 2024-02-28 15:19:37.843 2100 FEE 441851 2328 6100293 2024-02-28 15:19:37.843 2024-02-28 15:19:37.843 18900 TIP 441851 13216 6100312 2024-02-28 15:20:30.602 2024-02-28 15:20:30.602 2100 FEE 441737 21248 6100313 2024-02-28 15:20:30.602 2024-02-28 15:20:30.602 18900 TIP 441737 14910 6100321 2024-02-28 15:20:50.3 2024-02-28 15:20:50.3 2100 FEE 441725 20562 6100322 2024-02-28 15:20:50.3 2024-02-28 15:20:50.3 18900 TIP 441725 5746 6100351 2024-02-28 15:22:16.39 2024-02-28 15:22:16.39 1000 FEE 442154 1564 6100360 2024-02-28 15:22:41.184 2024-02-28 15:22:41.184 2100 FEE 441699 946 6100361 2024-02-28 15:22:41.184 2024-02-28 15:22:41.184 18900 TIP 441699 20812 6100366 2024-02-28 15:23:07.966 2024-02-28 15:23:07.966 1000 FEE 441959 20603 6100367 2024-02-28 15:23:07.966 2024-02-28 15:23:07.966 9000 TIP 441959 21365 6100377 2024-02-28 15:23:45.347 2024-02-28 15:23:45.347 2100 FEE 442043 20619 6100378 2024-02-28 15:23:45.347 2024-02-28 15:23:45.347 18900 TIP 442043 16830 6100390 2024-02-28 15:24:18.026 2024-02-28 15:24:18.026 1000 FEE 441853 1737 6100391 2024-02-28 15:24:18.026 2024-02-28 15:24:18.026 9000 TIP 441853 1488 6100402 2024-02-28 15:24:45.579 2024-02-28 15:24:45.579 1000 FEE 442159 1307 6100408 2024-02-28 15:25:16.211 2024-02-28 15:25:16.211 0 FEE 442159 18994 6100409 2024-02-28 15:25:20.985 2024-02-28 15:25:20.985 1000 FEE 442161 18659 6100432 2024-02-28 15:26:49.103 2024-02-28 15:26:49.103 6900 FEE 442065 9171 6100433 2024-02-28 15:26:49.103 2024-02-28 15:26:49.103 62100 TIP 442065 1733 6100439 2024-02-28 15:26:57.392 2024-02-28 15:26:57.392 1000 FEE 442167 11621 6100456 2024-02-28 15:27:23.74 2024-02-28 15:27:23.74 0 FEE 442159 2724 6100466 2024-02-28 15:27:43.568 2024-02-28 15:27:43.568 1000 FEE 442170 18473 6100467 2024-02-28 15:27:43.568 2024-02-28 15:27:43.568 9000 TIP 442170 14213 6100473 2024-02-28 15:28:06.474 2024-02-28 15:28:06.474 5100 FEE 442157 5828 6100474 2024-02-28 15:28:06.474 2024-02-28 15:28:06.474 45900 TIP 442157 14260 6100488 2024-02-28 15:28:44.806 2024-02-28 15:28:44.806 1000 FEE 442175 19664 6100509 2024-02-28 15:30:20.953 2024-02-28 15:30:20.953 5700 FEE 442128 17365 6100510 2024-02-28 15:30:20.953 2024-02-28 15:30:20.953 51300 TIP 442128 21600 6100511 2024-02-28 15:30:37.176 2024-02-28 15:30:37.176 100 FEE 442143 20713 6100512 2024-02-28 15:30:37.176 2024-02-28 15:30:37.176 900 TIP 442143 4079 6100513 2024-02-28 15:30:38.388 2024-02-28 15:30:38.388 100 FEE 442144 9099 6100514 2024-02-28 15:30:38.388 2024-02-28 15:30:38.388 900 TIP 442144 18525 6100523 2024-02-28 15:30:40.833 2024-02-28 15:30:40.833 100 FEE 442150 13143 6100524 2024-02-28 15:30:40.833 2024-02-28 15:30:40.833 900 TIP 442150 2711 6100535 2024-02-28 15:30:53.908 2024-02-28 15:30:53.908 10000 FEE 442179 19796 6100537 2024-02-28 15:31:08.152 2024-02-28 15:31:08.152 10000 FEE 442180 11458 6100547 2024-02-28 15:32:16.455 2024-02-28 15:32:16.455 1000 FEE 442182 21485 6100552 2024-02-28 15:32:40.666 2024-02-28 15:32:40.666 1000 FEE 442183 701 6100575 2024-02-28 15:32:58.231 2024-02-28 15:32:58.231 3300 FEE 441968 3396 6100576 2024-02-28 15:32:58.231 2024-02-28 15:32:58.231 29700 TIP 441968 8841 6100624 2024-02-28 15:35:11.399 2024-02-28 15:35:11.399 1000 POLL 441660 21343 6100642 2024-02-28 15:35:41.049 2024-02-28 15:35:41.049 12800 FEE 442119 20430 6100643 2024-02-28 15:35:41.049 2024-02-28 15:35:41.049 115200 TIP 442119 11798 6100650 2024-02-28 15:36:02 2024-02-28 15:36:02 3100 FEE 442191 7891 6100651 2024-02-28 15:36:02 2024-02-28 15:36:02 27900 TIP 442191 19601 6100657 2024-02-28 15:36:11.361 2024-02-28 15:36:11.361 1000 FEE 442197 19500 6100667 2024-02-28 15:36:37.849 2024-02-28 15:36:37.849 1000 FEE 441391 836 6100668 2024-02-28 15:36:37.849 2024-02-28 15:36:37.849 9000 TIP 441391 15728 6100669 2024-02-28 15:36:38.207 2024-02-28 15:36:38.207 1000 FEE 441391 20287 6100670 2024-02-28 15:36:38.207 2024-02-28 15:36:38.207 9000 TIP 441391 10352 6100682 2024-02-28 15:36:51.656 2024-02-28 15:36:51.656 100 FEE 442191 9342 6100683 2024-02-28 15:36:51.656 2024-02-28 15:36:51.656 900 TIP 442191 19378 6100688 2024-02-28 15:36:54.32 2024-02-28 15:36:54.32 1000 FEE 441438 21612 6100689 2024-02-28 15:36:54.32 2024-02-28 15:36:54.32 9000 TIP 441438 2046 6100700 2024-02-28 15:36:58.684 2024-02-28 15:36:58.684 1000 FEE 441474 18225 6100701 2024-02-28 15:36:58.684 2024-02-28 15:36:58.684 9000 TIP 441474 20624 6100762 2024-02-28 15:39:03.988 2024-02-28 15:39:03.988 1000 FEE 442207 19841 6100784 2024-02-28 15:40:59.502 2024-02-28 15:40:59.502 1000 FEE 442212 12483 6100785 2024-02-28 15:41:01.074 2024-02-28 15:41:01.074 1000 POLL 441660 20022 6100796 2024-02-28 15:42:17.479 2024-02-28 15:42:17.479 1000 FEE 442216 19335 6100799 2024-02-28 15:42:33.278 2024-02-28 15:42:33.278 1000 FEE 442170 1738 6100800 2024-02-28 15:42:33.278 2024-02-28 15:42:33.278 9000 TIP 442170 21386 6100803 2024-02-28 15:42:33.515 2024-02-28 15:42:33.515 1000 FEE 442170 14545 6100804 2024-02-28 15:42:33.515 2024-02-28 15:42:33.515 9000 TIP 442170 9833 6100810 2024-02-28 15:42:53.332 2024-02-28 15:42:53.332 1000 FEE 442217 1320 6100309 2024-02-28 15:20:03.125 2024-02-28 15:20:03.125 1000 STREAM 141924 19096 6100583 2024-02-28 15:33:03.071 2024-02-28 15:33:03.071 1000 STREAM 141924 20257 6100708 2024-02-28 15:37:05.097 2024-02-28 15:37:05.097 1000 STREAM 141924 5590 6100793 2024-02-28 15:42:03.102 2024-02-28 15:42:03.102 1000 STREAM 141924 19506 6100868 2024-02-28 15:45:03.1 2024-02-28 15:45:03.1 1000 STREAM 141924 626 6100886 2024-02-28 15:46:03.109 2024-02-28 15:46:03.109 1000 STREAM 141924 10102 6100925 2024-02-28 15:48:03.128 2024-02-28 15:48:03.128 1000 STREAM 141924 10469 6101024 2024-02-28 15:55:03.378 2024-02-28 15:55:03.378 1000 STREAM 141924 19289 6101045 2024-02-28 15:57:03.39 2024-02-28 15:57:03.39 1000 STREAM 141924 20825 6101057 2024-02-28 15:58:03.385 2024-02-28 15:58:03.385 1000 STREAM 141924 976 6101076 2024-02-28 16:00:03.444 2024-02-28 16:00:03.444 1000 STREAM 141924 726 6101117 2024-02-28 16:02:03.387 2024-02-28 16:02:03.387 1000 STREAM 141924 956 6101167 2024-02-28 16:06:03.406 2024-02-28 16:06:03.406 1000 STREAM 141924 13143 6101242 2024-02-28 16:13:03.458 2024-02-28 16:13:03.458 1000 STREAM 141924 3440 6101260 2024-02-28 16:14:03.461 2024-02-28 16:14:03.461 1000 STREAM 141924 20546 6101267 2024-02-28 16:15:03.568 2024-02-28 16:15:03.568 1000 STREAM 141924 20254 6101311 2024-02-28 16:18:03.575 2024-02-28 16:18:03.575 1000 STREAM 141924 2327 6101359 2024-02-28 16:19:03.586 2024-02-28 16:19:03.586 1000 STREAM 141924 1564 6101387 2024-02-28 16:20:03.582 2024-02-28 16:20:03.582 1000 STREAM 141924 17526 6101453 2024-02-28 16:23:03.6 2024-02-28 16:23:03.6 1000 STREAM 141924 9551 6101534 2024-02-28 16:29:03.618 2024-02-28 16:29:03.618 1000 STREAM 141924 18344 6101561 2024-02-28 16:31:03.62 2024-02-28 16:31:03.62 1000 STREAM 141924 15463 6101597 2024-02-28 16:32:03.627 2024-02-28 16:32:03.627 1000 STREAM 141924 11091 6101647 2024-02-28 16:34:03.63 2024-02-28 16:34:03.63 1000 STREAM 141924 16842 6101662 2024-02-28 16:35:03.641 2024-02-28 16:35:03.641 1000 STREAM 141924 11938 6102376 2024-02-28 17:12:03.86 2024-02-28 17:12:03.86 1000 STREAM 141924 9166 6102656 2024-02-28 17:40:01.95 2024-02-28 17:40:01.95 1000 STREAM 141924 14857 6102797 2024-02-28 17:54:02.034 2024-02-28 17:54:02.034 1000 STREAM 141924 21521 6102816 2024-02-28 17:56:02.063 2024-02-28 17:56:02.063 1000 STREAM 141924 1632 6102822 2024-02-28 17:57:04.067 2024-02-28 17:57:04.067 1000 STREAM 141924 940 6102847 2024-02-28 18:00:02.108 2024-02-28 18:00:02.108 1000 STREAM 141924 20861 6102882 2024-02-28 18:04:02.123 2024-02-28 18:04:02.123 1000 STREAM 141924 16513 6102893 2024-02-28 18:06:02.149 2024-02-28 18:06:02.149 1000 STREAM 141924 6499 6102929 2024-02-28 18:08:02.145 2024-02-28 18:08:02.145 1000 STREAM 141924 16356 6102960 2024-02-28 18:10:02.194 2024-02-28 18:10:02.194 1000 STREAM 141924 1611 6102984 2024-02-28 18:13:02.158 2024-02-28 18:13:02.158 1000 STREAM 141924 981 6103066 2024-02-28 18:25:02.185 2024-02-28 18:25:02.185 1000 STREAM 141924 15367 6103080 2024-02-28 18:27:02.191 2024-02-28 18:27:02.191 1000 STREAM 141924 21138 6103099 2024-02-28 18:31:02.212 2024-02-28 18:31:02.212 1000 STREAM 141924 9969 6103109 2024-02-28 18:33:02.223 2024-02-28 18:33:02.223 1000 STREAM 141924 882 6100368 2024-02-28 15:23:08.761 2024-02-28 15:23:08.761 2100 FEE 441843 20454 6100369 2024-02-28 15:23:08.761 2024-02-28 15:23:08.761 18900 TIP 441843 19770 6100374 2024-02-28 15:23:29.074 2024-02-28 15:23:29.074 1000 FEE 442156 4175 6100386 2024-02-28 15:24:09.326 2024-02-28 15:24:09.326 1000 FEE 442158 7587 6100406 2024-02-28 15:25:05.596 2024-02-28 15:25:05.596 1000 FEE 442160 19030 6100407 2024-02-28 15:25:15.223 2024-02-28 15:25:15.223 0 FEE 442160 19463 6100414 2024-02-28 15:25:41.58 2024-02-28 15:25:41.58 2100 FEE 442136 18169 6100415 2024-02-28 15:25:41.58 2024-02-28 15:25:41.58 18900 TIP 442136 19826 6100416 2024-02-28 15:25:44.216 2024-02-28 15:25:44.216 1000 FEE 441874 6578 6100417 2024-02-28 15:25:44.216 2024-02-28 15:25:44.216 9000 TIP 441874 20182 6100435 2024-02-28 15:26:54.994 2024-02-28 15:26:54.994 1000 FEE 441891 18511 6100436 2024-02-28 15:26:54.994 2024-02-28 15:26:54.994 9000 TIP 441891 1738 6100458 2024-02-28 15:27:29.588 2024-02-28 15:27:29.588 1000 FEE 442169 19848 6100484 2024-02-28 15:28:29.13 2024-02-28 15:28:29.13 2600 FEE 442015 6687 6100485 2024-02-28 15:28:29.13 2024-02-28 15:28:29.13 23400 TIP 442015 624 6100489 2024-02-28 15:28:52.181 2024-02-28 15:28:52.181 0 FEE 442169 3392 6100504 2024-02-28 15:30:11.677 2024-02-28 15:30:11.677 2100 FEE 442084 6383 6100505 2024-02-28 15:30:11.677 2024-02-28 15:30:11.677 18900 TIP 442084 18448 6100529 2024-02-28 15:30:45.357 2024-02-28 15:30:45.357 1000 FEE 442177 21441 6100553 2024-02-28 15:32:44.508 2024-02-28 15:32:44.508 0 FEE 442169 16753 6100566 2024-02-28 15:32:55.271 2024-02-28 15:32:55.271 3300 FEE 441854 18543 6100567 2024-02-28 15:32:55.271 2024-02-28 15:32:55.271 29700 TIP 441854 20706 6100568 2024-02-28 15:32:55.84 2024-02-28 15:32:55.84 3300 FEE 441854 21047 6100569 2024-02-28 15:32:55.84 2024-02-28 15:32:55.84 29700 TIP 441854 18507 6100577 2024-02-28 15:33:00.343 2024-02-28 15:33:00.343 3300 FEE 442163 6594 6100578 2024-02-28 15:33:00.343 2024-02-28 15:33:00.343 29700 TIP 442163 19613 6100593 2024-02-28 15:34:02.529 2024-02-28 15:34:02.529 0 FEE 442169 3686 6100610 2024-02-28 15:34:39.723 2024-02-28 15:34:39.723 100 FEE 442045 5637 6100611 2024-02-28 15:34:39.723 2024-02-28 15:34:39.723 900 TIP 442045 19292 6100612 2024-02-28 15:34:40.102 2024-02-28 15:34:40.102 100 FEE 442045 18663 6100613 2024-02-28 15:34:40.102 2024-02-28 15:34:40.102 900 TIP 442045 2596 6100641 2024-02-28 15:35:40.491 2024-02-28 15:35:40.491 1000 FEE 442193 5499 6100671 2024-02-28 15:36:38.518 2024-02-28 15:36:38.518 1000 FEE 441391 4819 6100672 2024-02-28 15:36:38.518 2024-02-28 15:36:38.518 9000 TIP 441391 17321 6100680 2024-02-28 15:36:48.959 2024-02-28 15:36:48.959 5700 FEE 442191 652 6100681 2024-02-28 15:36:48.959 2024-02-28 15:36:48.959 51300 TIP 442191 6594 6100713 2024-02-28 15:37:08.291 2024-02-28 15:37:08.291 12800 FEE 442190 825 6100714 2024-02-28 15:37:08.291 2024-02-28 15:37:08.291 115200 TIP 442190 777 6100715 2024-02-28 15:37:08.786 2024-02-28 15:37:08.786 1000 FEE 441514 642 6100716 2024-02-28 15:37:08.786 2024-02-28 15:37:08.786 9000 TIP 441514 663 6100719 2024-02-28 15:37:09.742 2024-02-28 15:37:09.742 1000 FEE 441514 21614 6100720 2024-02-28 15:37:09.742 2024-02-28 15:37:09.742 9000 TIP 441514 20701 6100727 2024-02-28 15:37:12.294 2024-02-28 15:37:12.294 2000 FEE 441514 750 6100728 2024-02-28 15:37:12.294 2024-02-28 15:37:12.294 18000 TIP 441514 21603 6100740 2024-02-28 15:38:18.299 2024-02-28 15:38:18.299 1000 FEE 441968 960 6100741 2024-02-28 15:38:18.299 2024-02-28 15:38:18.299 9000 TIP 441968 2327 6100765 2024-02-28 15:39:06.527 2024-02-28 15:39:06.527 1000 FEE 442206 20674 6100766 2024-02-28 15:39:06.527 2024-02-28 15:39:06.527 9000 TIP 442206 20597 6100772 2024-02-28 15:39:51.135 2024-02-28 15:39:51.135 1000 FEE 442210 695 6100788 2024-02-28 15:41:16.106 2024-02-28 15:41:16.106 2100 FEE 442179 20018 6100789 2024-02-28 15:41:16.106 2024-02-28 15:41:16.106 18900 TIP 442179 21498 6100801 2024-02-28 15:42:33.467 2024-02-28 15:42:33.467 1000 FEE 442170 777 6100802 2024-02-28 15:42:33.467 2024-02-28 15:42:33.467 9000 TIP 442170 20299 6100818 2024-02-28 15:43:14.109 2024-02-28 15:43:14.109 5700 FEE 442202 5829 6100819 2024-02-28 15:43:14.109 2024-02-28 15:43:14.109 51300 TIP 442202 20436 6100823 2024-02-28 15:43:31.402 2024-02-28 15:43:31.402 1000 FEE 442143 21019 6100824 2024-02-28 15:43:31.402 2024-02-28 15:43:31.402 9000 TIP 442143 21287 6100850 2024-02-28 15:44:19.925 2024-02-28 15:44:19.925 1000 FEE 442192 1825 6100851 2024-02-28 15:44:19.925 2024-02-28 15:44:19.925 9000 TIP 442192 21451 6100862 2024-02-28 15:44:57.361 2024-02-28 15:44:57.361 1000 FEE 442220 21591 6100863 2024-02-28 15:44:57.361 2024-02-28 15:44:57.361 9000 TIP 442220 16834 6100864 2024-02-28 15:44:58.098 2024-02-28 15:44:58.098 1000 FEE 442150 2039 6100865 2024-02-28 15:44:58.098 2024-02-28 15:44:58.098 9000 TIP 442150 14280 6100871 2024-02-28 15:45:12.676 2024-02-28 15:45:12.676 1000 FEE 442225 3504 6100889 2024-02-28 15:46:24.146 2024-02-28 15:46:24.146 1000 FEE 441713 18714 6100890 2024-02-28 15:46:24.146 2024-02-28 15:46:24.146 9000 TIP 441713 1221 6100912 2024-02-28 15:47:11.61 2024-02-28 15:47:11.61 5000 FEE 442023 20623 6100913 2024-02-28 15:47:11.61 2024-02-28 15:47:11.61 45000 TIP 442023 3990 6100916 2024-02-28 15:47:20.939 2024-02-28 15:47:20.939 900 FEE 441951 913 6100917 2024-02-28 15:47:20.939 2024-02-28 15:47:20.939 8100 TIP 441951 2514 6100918 2024-02-28 15:47:22.541 2024-02-28 15:47:22.541 7700 FEE 442230 20084 6100919 2024-02-28 15:47:22.541 2024-02-28 15:47:22.541 69300 TIP 442230 11075 6100945 2024-02-28 15:50:01.398 2024-02-28 15:50:01.398 1600 FEE 442163 21620 6100946 2024-02-28 15:50:01.398 2024-02-28 15:50:01.398 14400 TIP 442163 12024 6100960 2024-02-28 15:50:28.774 2024-02-28 15:50:28.774 100 FEE 442045 9078 6100961 2024-02-28 15:50:28.774 2024-02-28 15:50:28.774 900 TIP 442045 4126 6100968 2024-02-28 15:51:28.877 2024-02-28 15:51:28.877 1000 POLL 442163 16348 6100997 2024-02-28 15:52:10.83 2024-02-28 15:52:10.83 3300 FEE 442138 11314 6100998 2024-02-28 15:52:10.83 2024-02-28 15:52:10.83 29700 TIP 442138 18412 6100999 2024-02-28 15:52:27.58 2024-02-28 15:52:27.58 1000 FEE 442241 15139 6101017 2024-02-28 15:54:13.118 2024-02-28 15:54:13.118 27900 FEE 441968 18862 6101018 2024-02-28 15:54:13.118 2024-02-28 15:54:13.118 251100 TIP 441968 14990 6101044 2024-02-28 15:56:59.461 2024-02-28 15:56:59.461 100000 FEE 442255 11516 6101071 2024-02-28 15:59:49.38 2024-02-28 15:59:49.38 1000 FEE 442262 628 6101080 2024-02-28 16:00:05.2 2024-02-28 16:00:05.2 1000 FEE 442264 18460 6101094 2024-02-28 16:01:08.763 2024-02-28 16:01:08.763 5700 FEE 442262 19661 6101095 2024-02-28 16:01:08.763 2024-02-28 16:01:08.763 51300 TIP 442262 9335 6101100 2024-02-28 16:01:14.79 2024-02-28 16:01:14.79 1000 FEE 442251 4984 6101101 2024-02-28 16:01:14.79 2024-02-28 16:01:14.79 9000 TIP 442251 16717 6101104 2024-02-28 16:01:15.593 2024-02-28 16:01:15.593 1000 FEE 442251 21541 6101105 2024-02-28 16:01:15.593 2024-02-28 16:01:15.593 9000 TIP 442251 759 6100470 2024-02-28 15:27:46.147 2024-02-28 15:27:46.147 7700 FEE 442163 6148 6100471 2024-02-28 15:27:46.147 2024-02-28 15:27:46.147 69300 TIP 442163 8570 6100476 2024-02-28 15:28:11.281 2024-02-28 15:28:11.281 1000 FEE 442172 8173 6100480 2024-02-28 15:28:18.328 2024-02-28 15:28:18.328 0 FEE 442169 17693 6100483 2024-02-28 15:28:26.54 2024-02-28 15:28:26.54 0 FEE 442173 21262 6100491 2024-02-28 15:29:26.658 2024-02-28 15:29:26.658 10000 FEE 442163 10849 6100492 2024-02-28 15:29:26.658 2024-02-28 15:29:26.658 90000 TIP 442163 7389 6100564 2024-02-28 15:32:55.203 2024-02-28 15:32:55.203 3300 FEE 441854 2757 6100565 2024-02-28 15:32:55.203 2024-02-28 15:32:55.203 29700 TIP 441854 9347 6100584 2024-02-28 15:33:04.557 2024-02-28 15:33:04.557 1000 POLL 442163 9433 6100585 2024-02-28 15:33:14.053 2024-02-28 15:33:14.053 0 FEE 442169 766 6100587 2024-02-28 15:33:35.604 2024-02-28 15:33:35.604 400 FEE 442158 19007 6100588 2024-02-28 15:33:35.604 2024-02-28 15:33:35.604 3600 TIP 442158 20811 6100591 2024-02-28 15:33:52.718 2024-02-28 15:33:52.718 1000 FEE 442185 889 6100594 2024-02-28 15:34:02.927 2024-02-28 15:34:02.927 10000 FEE 442187 1602 6100635 2024-02-28 15:35:33.911 2024-02-28 15:35:33.911 3300 FEE 441749 6700 6100636 2024-02-28 15:35:33.911 2024-02-28 15:35:33.911 29700 TIP 441749 9845 6100639 2024-02-28 15:35:38.165 2024-02-28 15:35:38.165 3300 FEE 441660 20577 6100640 2024-02-28 15:35:38.165 2024-02-28 15:35:38.165 29700 TIP 441660 18392 6100648 2024-02-28 15:35:54.421 2024-02-28 15:35:54.421 0 FEE 442194 7766 6100673 2024-02-28 15:36:39.022 2024-02-28 15:36:39.022 1000 FEE 441391 17041 6100674 2024-02-28 15:36:39.022 2024-02-28 15:36:39.022 9000 TIP 441391 7682 6100690 2024-02-28 15:36:54.464 2024-02-28 15:36:54.464 11100 FEE 442191 16214 6100691 2024-02-28 15:36:54.464 2024-02-28 15:36:54.464 99900 TIP 442191 762 6100694 2024-02-28 15:36:55.162 2024-02-28 15:36:55.162 2100 FEE 440863 16684 6100695 2024-02-28 15:36:55.162 2024-02-28 15:36:55.162 18900 TIP 440863 21352 6100696 2024-02-28 15:36:55.879 2024-02-28 15:36:55.879 1000 FEE 441438 11144 6100697 2024-02-28 15:36:55.879 2024-02-28 15:36:55.879 9000 TIP 441438 2735 6100698 2024-02-28 15:36:57.469 2024-02-28 15:36:57.469 1100 FEE 441898 4079 6100699 2024-02-28 15:36:57.469 2024-02-28 15:36:57.469 9900 TIP 441898 711 6100702 2024-02-28 15:36:59.106 2024-02-28 15:36:59.106 1000 FEE 441474 21079 6100703 2024-02-28 15:36:59.106 2024-02-28 15:36:59.106 9000 TIP 441474 20744 6100734 2024-02-28 15:37:43.583 2024-02-28 15:37:43.583 0 FEE 442199 21033 6100738 2024-02-28 15:38:17.73 2024-02-28 15:38:17.73 1000 FEE 441968 18040 6100739 2024-02-28 15:38:17.73 2024-02-28 15:38:17.73 9000 TIP 441968 17103 6100744 2024-02-28 15:38:19.097 2024-02-28 15:38:19.097 1000 FEE 441968 2013 6100745 2024-02-28 15:38:19.097 2024-02-28 15:38:19.097 9000 TIP 441968 18170 6100750 2024-02-28 15:38:28.997 2024-02-28 15:38:28.997 12800 FEE 442194 21003 6100751 2024-02-28 15:38:28.997 2024-02-28 15:38:28.997 115200 TIP 442194 6616 6100763 2024-02-28 15:39:05.113 2024-02-28 15:39:05.113 1000 FEE 442198 667 6100764 2024-02-28 15:39:05.113 2024-02-28 15:39:05.113 9000 TIP 442198 5694 6100771 2024-02-28 15:39:37.126 2024-02-28 15:39:37.126 21000 DONT_LIKE_THIS 442184 19037 6100783 2024-02-28 15:40:46.729 2024-02-28 15:40:46.729 0 FEE 442211 21573 6100816 2024-02-28 15:43:13.541 2024-02-28 15:43:13.541 1000 FEE 442191 15594 6100817 2024-02-28 15:43:13.541 2024-02-28 15:43:13.541 9000 TIP 442191 1010 6100822 2024-02-28 15:43:29.501 2024-02-28 15:43:29.501 1000 FEE 442220 17218 6100839 2024-02-28 15:44:01.932 2024-02-28 15:44:01.932 2500 FEE 441660 21216 6100840 2024-02-28 15:44:01.932 2024-02-28 15:44:01.932 22500 TIP 441660 21339 6100852 2024-02-28 15:44:26.382 2024-02-28 15:44:26.382 1000 FEE 442211 11275 6100853 2024-02-28 15:44:26.382 2024-02-28 15:44:26.382 9000 TIP 442211 20756 6100856 2024-02-28 15:44:31.787 2024-02-28 15:44:31.787 9000 FEE 442170 2780 6100857 2024-02-28 15:44:31.787 2024-02-28 15:44:31.787 81000 TIP 442170 917 6100893 2024-02-28 15:46:25.188 2024-02-28 15:46:25.188 1000 FEE 441713 9354 6100894 2024-02-28 15:46:25.188 2024-02-28 15:46:25.188 9000 TIP 441713 1890 6100908 2024-02-28 15:47:00.257 2024-02-28 15:47:00.257 1000 FEE 442231 7654 6100948 2024-02-28 15:50:12.217 2024-02-28 15:50:12.217 0 FEE 442143 18664 6100949 2024-02-28 15:50:14.468 2024-02-28 15:50:14.468 1000 FEE 442236 21051 6100954 2024-02-28 15:50:21.67 2024-02-28 15:50:21.67 100 FEE 442209 5085 6100955 2024-02-28 15:50:21.67 2024-02-28 15:50:21.67 900 TIP 442209 617 6100958 2024-02-28 15:50:28.749 2024-02-28 15:50:28.749 100 FEE 442045 20646 6100959 2024-02-28 15:50:28.749 2024-02-28 15:50:28.749 900 TIP 442045 16747 6100972 2024-02-28 15:51:37.382 2024-02-28 15:51:37.382 3300 FEE 442117 1224 6100973 2024-02-28 15:51:37.382 2024-02-28 15:51:37.382 29700 TIP 442117 7587 6100979 2024-02-28 15:51:52.106 2024-02-28 15:51:52.106 1000 FEE 442177 14152 6100980 2024-02-28 15:51:52.106 2024-02-28 15:51:52.106 9000 TIP 442177 13406 6100981 2024-02-28 15:51:57.66 2024-02-28 15:51:57.66 1000 FEE 442163 20904 6100982 2024-02-28 15:51:57.66 2024-02-28 15:51:57.66 9000 TIP 442163 18274 6100993 2024-02-28 15:52:10.04 2024-02-28 15:52:10.04 3300 FEE 442138 805 6100994 2024-02-28 15:52:10.04 2024-02-28 15:52:10.04 29700 TIP 442138 16410 6101007 2024-02-28 15:53:16.902 2024-02-28 15:53:16.902 1000 FEE 441859 652 6101008 2024-02-28 15:53:16.902 2024-02-28 15:53:16.902 9000 TIP 441859 2206 6101009 2024-02-28 15:53:17.248 2024-02-28 15:53:17.248 1000 FEE 441859 16230 6101010 2024-02-28 15:53:17.248 2024-02-28 15:53:17.248 9000 TIP 441859 18344 6101019 2024-02-28 15:54:37.802 2024-02-28 15:54:37.802 1000 FEE 442238 683 6101020 2024-02-28 15:54:37.802 2024-02-28 15:54:37.802 9000 TIP 442238 20594 6101026 2024-02-28 15:55:21.843 2024-02-28 15:55:21.843 2100 FEE 442239 19837 6101027 2024-02-28 15:55:21.843 2024-02-28 15:55:21.843 18900 TIP 442239 1673 6101033 2024-02-28 15:56:23.884 2024-02-28 15:56:23.884 700 FEE 442191 692 6101034 2024-02-28 15:56:23.884 2024-02-28 15:56:23.884 6300 TIP 442191 1833 6101052 2024-02-28 15:57:20.356 2024-02-28 15:57:20.356 0 FEE 442252 13406 6101056 2024-02-28 15:57:52.822 2024-02-28 15:57:52.822 1000 FEE 442257 20546 6101063 2024-02-28 15:58:17.962 2024-02-28 15:58:17.962 1000 FEE 442259 5646 6101072 2024-02-28 15:59:50.161 2024-02-28 15:59:50.161 0 FEE 442252 15271 6101085 2024-02-28 16:00:08.926 2024-02-28 16:00:08.926 21000 FEE 442254 12049 6101086 2024-02-28 16:00:08.926 2024-02-28 16:00:08.926 189000 TIP 442254 7913 6101106 2024-02-28 16:01:17.76 2024-02-28 16:01:17.76 0 FEE 442252 19888 6101138 2024-02-28 16:03:48.587 2024-02-28 16:03:48.587 1000 FEE 442274 9705 6101154 2024-02-28 16:05:24.047 2024-02-28 16:05:24.047 1000 FEE 442277 20470 6101155 2024-02-28 16:05:24.047 2024-02-28 16:05:24.047 9000 TIP 442277 18154 6101169 2024-02-28 16:06:13.4 2024-02-28 16:06:13.4 1100 FEE 441560 9494 6101170 2024-02-28 16:06:13.4 2024-02-28 16:06:13.4 9900 TIP 441560 21588 6101186 2024-02-28 16:07:58.944 2024-02-28 16:07:58.944 0 FEE 442276 18830 6100536 2024-02-28 15:31:03.065 2024-02-28 15:31:03.065 1000 STREAM 141924 4487 6100595 2024-02-28 15:34:03.082 2024-02-28 15:34:03.082 1000 STREAM 141924 2757 6100654 2024-02-28 15:36:03.087 2024-02-28 15:36:03.087 1000 STREAM 141924 17707 6100736 2024-02-28 15:38:03.088 2024-02-28 15:38:03.088 1000 STREAM 141924 20073 6100775 2024-02-28 15:40:03.087 2024-02-28 15:40:03.087 1000 STREAM 141924 19852 6100811 2024-02-28 15:43:03.103 2024-02-28 15:43:03.103 1000 STREAM 141924 1552 6100965 2024-02-28 15:51:03.149 2024-02-28 15:51:03.149 1000 STREAM 141924 21418 6101067 2024-02-28 15:59:03.396 2024-02-28 15:59:03.396 1000 STREAM 141924 20603 6101093 2024-02-28 16:01:03.415 2024-02-28 16:01:03.415 1000 STREAM 141924 951 6101151 2024-02-28 16:05:03.393 2024-02-28 16:05:03.393 1000 STREAM 141924 1512 6101178 2024-02-28 16:07:03.412 2024-02-28 16:07:03.412 1000 STREAM 141924 8916 6101187 2024-02-28 16:08:03.419 2024-02-28 16:08:03.419 1000 STREAM 141924 1425 6101202 2024-02-28 16:09:03.434 2024-02-28 16:09:03.434 1000 STREAM 141924 21274 6101210 2024-02-28 16:10:03.42 2024-02-28 16:10:03.42 1000 STREAM 141924 14271 6101218 2024-02-28 16:11:03.431 2024-02-28 16:11:03.431 1000 STREAM 141924 20490 6101230 2024-02-28 16:12:03.441 2024-02-28 16:12:03.441 1000 STREAM 141924 20006 6101305 2024-02-28 16:17:03.566 2024-02-28 16:17:03.566 1000 STREAM 141924 20479 6101422 2024-02-28 16:21:03.611 2024-02-28 16:21:03.611 1000 STREAM 141924 20744 6101445 2024-02-28 16:22:03.6 2024-02-28 16:22:03.6 1000 STREAM 141924 13798 6101481 2024-02-28 16:25:03.61 2024-02-28 16:25:03.61 1000 STREAM 141924 20588 6101495 2024-02-28 16:26:03.609 2024-02-28 16:26:03.609 1000 STREAM 141924 13348 6101499 2024-02-28 16:27:03.616 2024-02-28 16:27:03.616 1000 STREAM 141924 16149 6101515 2024-02-28 16:28:03.64 2024-02-28 16:28:03.64 1000 STREAM 141924 1626 6101546 2024-02-28 16:30:03.629 2024-02-28 16:30:03.629 1000 STREAM 141924 3304 6101679 2024-02-28 16:36:03.638 2024-02-28 16:36:03.638 1000 STREAM 141924 4128 6100555 2024-02-28 15:32:47.408 2024-02-28 15:32:47.408 29700 TIP 441843 16145 6100562 2024-02-28 15:32:52.668 2024-02-28 15:32:52.668 3300 FEE 442084 19511 6100563 2024-02-28 15:32:52.668 2024-02-28 15:32:52.668 29700 TIP 442084 9346 6100570 2024-02-28 15:32:56.709 2024-02-28 15:32:56.709 1000 FEE 442184 8326 6100600 2024-02-28 15:34:16.093 2024-02-28 15:34:16.093 100 FEE 441795 2576 6100601 2024-02-28 15:34:16.093 2024-02-28 15:34:16.093 900 TIP 441795 10352 6100622 2024-02-28 15:35:03.572 2024-02-28 15:35:03.572 120000 FEE 442191 18363 6100625 2024-02-28 15:35:13.253 2024-02-28 15:35:13.253 0 FEE 442192 19031 6100646 2024-02-28 15:35:51.01 2024-02-28 15:35:51.01 200 FEE 442189 1519 6100647 2024-02-28 15:35:51.01 2024-02-28 15:35:51.01 1800 TIP 442189 17183 6100678 2024-02-28 15:36:47.684 2024-02-28 15:36:47.684 2100 FEE 441903 4521 6100679 2024-02-28 15:36:47.684 2024-02-28 15:36:47.684 18900 TIP 441903 21374 6100684 2024-02-28 15:36:53.246 2024-02-28 15:36:53.246 1000 FEE 441438 1890 6100685 2024-02-28 15:36:53.246 2024-02-28 15:36:53.246 9000 TIP 441438 14552 6100729 2024-02-28 15:37:19.631 2024-02-28 15:37:19.631 15000 FEE 441553 5761 6100730 2024-02-28 15:37:19.631 2024-02-28 15:37:19.631 135000 TIP 441553 17050 6100733 2024-02-28 15:37:24.53 2024-02-28 15:37:24.53 1000 FEE 442200 16680 6100737 2024-02-28 15:38:15.848 2024-02-28 15:38:15.848 1000 FEE 442202 17522 6100749 2024-02-28 15:38:26.99 2024-02-28 15:38:26.99 1000 FEE 442204 14258 6100753 2024-02-28 15:38:49.983 2024-02-28 15:38:49.983 500 FEE 442023 6041 6100754 2024-02-28 15:38:49.983 2024-02-28 15:38:49.983 4500 TIP 442023 21172 6100781 2024-02-28 15:40:34.938 2024-02-28 15:40:34.938 2500 FEE 441749 14785 6100782 2024-02-28 15:40:34.938 2024-02-28 15:40:34.938 22500 TIP 441749 21501 6100791 2024-02-28 15:41:30.845 2024-02-28 15:41:30.845 0 FEE 442213 20327 6100792 2024-02-28 15:41:50.392 2024-02-28 15:41:50.392 1000 FEE 442215 989 6100843 2024-02-28 15:44:02.69 2024-02-28 15:44:02.69 9000 FEE 442163 2338 6100844 2024-02-28 15:44:02.69 2024-02-28 15:44:02.69 81000 TIP 442163 20646 6100849 2024-02-28 15:44:18.762 2024-02-28 15:44:18.762 1000 FEE 442223 21591 6100858 2024-02-28 15:44:44.794 2024-02-28 15:44:44.794 1000 FEE 442224 21138 6100872 2024-02-28 15:45:17.789 2024-02-28 15:45:17.789 5000 FEE 441887 6202 6100873 2024-02-28 15:45:17.789 2024-02-28 15:45:17.789 45000 TIP 441887 859 6100874 2024-02-28 15:45:18.014 2024-02-28 15:45:18.014 5000 FEE 441887 2056 6100875 2024-02-28 15:45:18.014 2024-02-28 15:45:18.014 45000 TIP 441887 5017 6100881 2024-02-28 15:45:51.694 2024-02-28 15:45:51.694 5000 FEE 441719 20812 6100882 2024-02-28 15:45:51.694 2024-02-28 15:45:51.694 45000 TIP 441719 11898 6100891 2024-02-28 15:46:24.728 2024-02-28 15:46:24.728 1000 FEE 441713 18393 6100892 2024-02-28 15:46:24.728 2024-02-28 15:46:24.728 9000 TIP 441713 13575 6100901 2024-02-28 15:46:29.342 2024-02-28 15:46:29.342 900 FEE 442191 2722 6100902 2024-02-28 15:46:29.342 2024-02-28 15:46:29.342 8100 TIP 442191 14650 6100914 2024-02-28 15:47:20.646 2024-02-28 15:47:20.646 100 FEE 441951 1769 6100915 2024-02-28 15:47:20.646 2024-02-28 15:47:20.646 900 TIP 441951 19905 6100926 2024-02-28 15:48:11.892 2024-02-28 15:48:11.892 5000 FEE 441770 7119 6100927 2024-02-28 15:48:11.892 2024-02-28 15:48:11.892 45000 TIP 441770 19905 6100938 2024-02-28 15:49:10.401 2024-02-28 15:49:10.401 1000 FEE 442233 19121 6100950 2024-02-28 15:50:14.859 2024-02-28 15:50:14.859 5700 FEE 442224 11873 6100951 2024-02-28 15:50:14.859 2024-02-28 15:50:14.859 51300 TIP 442224 5387 6100967 2024-02-28 15:51:20.435 2024-02-28 15:51:20.435 1000 FEE 442239 15843 6100989 2024-02-28 15:51:58.577 2024-02-28 15:51:58.577 2000 FEE 442163 963 6100990 2024-02-28 15:51:58.577 2024-02-28 15:51:58.577 18000 TIP 442163 15266 6101001 2024-02-28 15:52:44.955 2024-02-28 15:52:44.955 1000 FEE 442242 12158 6101003 2024-02-28 15:52:58.977 2024-02-28 15:52:58.977 1000 FEE 442244 896 6101004 2024-02-28 15:52:59.359 2024-02-28 15:52:59.359 21000 FEE 442245 9843 6101005 2024-02-28 15:53:00.323 2024-02-28 15:53:00.323 1000 FEE 442246 20757 6101013 2024-02-28 15:53:53.949 2024-02-28 15:53:53.949 1000 FEE 442247 18557 6101015 2024-02-28 15:54:12.353 2024-02-28 15:54:12.353 3100 FEE 441968 12921 6101016 2024-02-28 15:54:12.353 2024-02-28 15:54:12.353 27900 TIP 441968 814 6101025 2024-02-28 15:55:11.66 2024-02-28 15:55:11.66 1000 FEE 442248 20066 6101049 2024-02-28 15:57:14.834 2024-02-28 15:57:14.834 1000 FEE 442256 5809 6101062 2024-02-28 15:58:16.304 2024-02-28 15:58:16.304 0 FEE 442252 750 6101070 2024-02-28 15:59:37.957 2024-02-28 15:59:37.957 0 FEE 442261 2757 6101089 2024-02-28 16:00:43.908 2024-02-28 16:00:43.908 1000 FEE 442266 18629 6101090 2024-02-28 16:01:00.27 2024-02-28 16:01:00.27 1000 FEE 442206 974 6101091 2024-02-28 16:01:00.27 2024-02-28 16:01:00.27 9000 TIP 442206 18101 6101137 2024-02-28 16:03:46.715 2024-02-28 16:03:46.715 1000 FEE 442273 1428 6101158 2024-02-28 16:05:30.597 2024-02-28 16:05:30.597 10000 FEE 442023 18473 6101159 2024-02-28 16:05:30.597 2024-02-28 16:05:30.597 90000 TIP 442023 2029 6101162 2024-02-28 16:05:31.105 2024-02-28 16:05:31.105 10000 FEE 442023 897 6101163 2024-02-28 16:05:31.105 2024-02-28 16:05:31.105 90000 TIP 442023 18225 6101176 2024-02-28 16:06:38.923 2024-02-28 16:06:38.923 27900 FEE 442163 15094 6101177 2024-02-28 16:06:38.923 2024-02-28 16:06:38.923 251100 TIP 442163 19243 6101190 2024-02-28 16:08:07.254 2024-02-28 16:08:07.254 1000 POLL 441333 20099 6101196 2024-02-28 16:08:48.153 2024-02-28 16:08:48.153 3100 FEE 442283 13177 6101197 2024-02-28 16:08:48.153 2024-02-28 16:08:48.153 27900 TIP 442283 9433 6101198 2024-02-28 16:08:48.853 2024-02-28 16:08:48.853 27900 FEE 442283 20291 6101199 2024-02-28 16:08:48.853 2024-02-28 16:08:48.853 251100 TIP 442283 14515 6101203 2024-02-28 16:09:11.222 2024-02-28 16:09:11.222 5000 FEE 442248 18862 6101204 2024-02-28 16:09:11.222 2024-02-28 16:09:11.222 45000 TIP 442248 854 6101212 2024-02-28 16:10:32.529 2024-02-28 16:10:32.529 0 FEE 442279 16808 6101220 2024-02-28 16:11:17.909 2024-02-28 16:11:17.909 1000 FEE 442288 17722 6101238 2024-02-28 16:12:46.715 2024-02-28 16:12:46.715 1000 FEE 442291 19886 6101240 2024-02-28 16:13:03.375 2024-02-28 16:13:03.375 7700 FEE 442161 17984 6101241 2024-02-28 16:13:03.375 2024-02-28 16:13:03.375 69300 TIP 442161 20018 6101251 2024-02-28 16:13:40.686 2024-02-28 16:13:40.686 1000 FEE 442294 2431 6101254 2024-02-28 16:13:51.502 2024-02-28 16:13:51.502 5000 FEE 441843 21356 6101255 2024-02-28 16:13:51.502 2024-02-28 16:13:51.502 45000 TIP 441843 21540 6101296 2024-02-28 16:15:59.853 2024-02-28 16:15:59.853 200 FEE 442296 18271 6101297 2024-02-28 16:15:59.853 2024-02-28 16:15:59.853 1800 TIP 442296 1817 6101301 2024-02-28 16:16:04.169 2024-02-28 16:16:04.169 1000 FEE 442302 5703 6101308 2024-02-28 16:17:35.091 2024-02-28 16:17:35.091 1000 FEE 442307 9331 6101338 2024-02-28 16:18:11.36 2024-02-28 16:18:11.36 1000 FEE 441671 21485 6101339 2024-02-28 16:18:11.36 2024-02-28 16:18:11.36 9000 TIP 441671 21520 6101343 2024-02-28 16:18:20.338 2024-02-28 16:18:20.338 10000 FEE 442281 3377 6101344 2024-02-28 16:18:20.338 2024-02-28 16:18:20.338 90000 TIP 442281 11263 6101364 2024-02-28 16:19:35.956 2024-02-28 16:19:35.956 6900 FEE 442313 18072 6101365 2024-02-28 16:19:35.956 2024-02-28 16:19:35.956 62100 TIP 442313 3377 6101370 2024-02-28 16:19:36.37 2024-02-28 16:19:36.37 6900 FEE 442313 18539 6101371 2024-02-28 16:19:36.37 2024-02-28 16:19:36.37 62100 TIP 442313 13100 6101378 2024-02-28 16:19:37.423 2024-02-28 16:19:37.423 100 FEE 442136 13097 6100572 2024-02-28 15:32:56.892 2024-02-28 15:32:56.892 18900 TIP 442163 10693 6100573 2024-02-28 15:32:57.288 2024-02-28 15:32:57.288 6600 FEE 441968 17091 6100574 2024-02-28 15:32:57.288 2024-02-28 15:32:57.288 59400 TIP 441968 13547 6100586 2024-02-28 15:33:21.134 2024-02-28 15:33:21.134 1000 POLL 442163 20377 6100598 2024-02-28 15:34:15.829 2024-02-28 15:34:15.829 100 FEE 441795 9166 6100599 2024-02-28 15:34:15.829 2024-02-28 15:34:15.829 900 TIP 441795 9242 6100607 2024-02-28 15:34:36.261 2024-02-28 15:34:36.261 1000 FEE 442189 1632 6100608 2024-02-28 15:34:39.416 2024-02-28 15:34:39.416 100 FEE 442045 8380 6100609 2024-02-28 15:34:39.416 2024-02-28 15:34:39.416 900 TIP 442045 7418 6100616 2024-02-28 15:34:41.6 2024-02-28 15:34:41.6 0 FEE 442188 17638 6100617 2024-02-28 15:34:41.627 2024-02-28 15:34:41.627 100 FEE 442045 8472 6100618 2024-02-28 15:34:41.627 2024-02-28 15:34:41.627 900 TIP 442045 17082 6100630 2024-02-28 15:35:18.932 2024-02-28 15:35:18.932 0 FEE 442188 695 6100631 2024-02-28 15:35:33.07 2024-02-28 15:35:33.07 3300 FEE 441749 725 6100632 2024-02-28 15:35:33.07 2024-02-28 15:35:33.07 29700 TIP 441749 14258 6100633 2024-02-28 15:35:33.184 2024-02-28 15:35:33.184 3300 FEE 441749 14939 6100634 2024-02-28 15:35:33.184 2024-02-28 15:35:33.184 29700 TIP 441749 3686 6100637 2024-02-28 15:35:38.108 2024-02-28 15:35:38.108 6600 FEE 441660 16276 6100638 2024-02-28 15:35:38.108 2024-02-28 15:35:38.108 59400 TIP 441660 8037 6100649 2024-02-28 15:36:00.83 2024-02-28 15:36:00.83 0 FEE 442192 1236 6100663 2024-02-28 15:36:28.428 2024-02-28 15:36:28.428 1000 FEE 441024 21556 6100664 2024-02-28 15:36:28.428 2024-02-28 15:36:28.428 9000 TIP 441024 980 6100675 2024-02-28 15:36:39.84 2024-02-28 15:36:39.84 5700 FEE 442196 20087 6100676 2024-02-28 15:36:39.84 2024-02-28 15:36:39.84 51300 TIP 442196 1692 6100711 2024-02-28 15:37:08.237 2024-02-28 15:37:08.237 1000 FEE 441514 17183 6100712 2024-02-28 15:37:08.237 2024-02-28 15:37:08.237 9000 TIP 441514 1272 6100731 2024-02-28 15:37:19.676 2024-02-28 15:37:19.676 0 FEE 442192 19601 6100735 2024-02-28 15:37:49.82 2024-02-28 15:37:49.82 1000 FEE 442201 13177 6100757 2024-02-28 15:38:52.027 2024-02-28 15:38:52.027 1400 FEE 442100 9150 6100758 2024-02-28 15:38:52.027 2024-02-28 15:38:52.027 12600 TIP 442100 9985 6100770 2024-02-28 15:39:36.759 2024-02-28 15:39:36.759 1000 FEE 442209 12169 6100773 2024-02-28 15:39:57.969 2024-02-28 15:39:57.969 10000 FEE 442203 5565 6100774 2024-02-28 15:39:57.969 2024-02-28 15:39:57.969 90000 TIP 442203 20231 6100787 2024-02-28 15:41:08.644 2024-02-28 15:41:08.644 1000 FEE 442213 21627 6100790 2024-02-28 15:41:23.155 2024-02-28 15:41:23.155 1000 FEE 442214 15762 6100809 2024-02-28 15:42:47.006 2024-02-28 15:42:47.006 1000 POLL 442163 18743 6100814 2024-02-28 15:43:12.988 2024-02-28 15:43:12.988 1000 FEE 442191 3377 6100815 2024-02-28 15:43:12.988 2024-02-28 15:43:12.988 9000 TIP 442191 9026 6100825 2024-02-28 15:43:31.568 2024-02-28 15:43:31.568 1000 FEE 442143 20162 6100826 2024-02-28 15:43:31.568 2024-02-28 15:43:31.568 9000 TIP 442143 5308 6100827 2024-02-28 15:43:34.065 2024-02-28 15:43:34.065 1000 POLL 442163 2010 6100869 2024-02-28 15:45:06.695 2024-02-28 15:45:06.695 5000 FEE 442021 14939 6100870 2024-02-28 15:45:06.695 2024-02-28 15:45:06.695 45000 TIP 442021 19138 6100876 2024-02-28 15:45:41.252 2024-02-28 15:45:41.252 1000 FEE 442065 11038 6100877 2024-02-28 15:45:41.252 2024-02-28 15:45:41.252 9000 TIP 442065 1985 6100879 2024-02-28 15:45:48.089 2024-02-28 15:45:48.089 2100 FEE 442206 1705 6100880 2024-02-28 15:45:48.089 2024-02-28 15:45:48.089 18900 TIP 442206 20353 6100884 2024-02-28 15:45:58.287 2024-02-28 15:45:58.287 1000 FEE 442183 1090 6100885 2024-02-28 15:45:58.287 2024-02-28 15:45:58.287 9000 TIP 442183 2213 6100923 2024-02-28 15:48:00.04 2024-02-28 15:48:00.04 5000 FEE 441829 13174 6100924 2024-02-28 15:48:00.04 2024-02-28 15:48:00.04 45000 TIP 441829 19848 6100928 2024-02-28 15:48:15.578 2024-02-28 15:48:15.578 5000 FEE 441749 5701 6100929 2024-02-28 15:48:15.578 2024-02-28 15:48:15.578 45000 TIP 441749 16830 6100931 2024-02-28 15:48:31.731 2024-02-28 15:48:31.731 1000 FEE 442232 18989 6100932 2024-02-28 15:48:38.681 2024-02-28 15:48:38.681 0 FEE 442143 16788 6100933 2024-02-28 15:48:54.669 2024-02-28 15:48:54.669 5000 FEE 442225 18956 6100934 2024-02-28 15:48:54.669 2024-02-28 15:48:54.669 45000 TIP 442225 20102 6100941 2024-02-28 15:49:34.898 2024-02-28 15:49:34.898 1000 FEE 442235 17797 6100942 2024-02-28 15:49:39.19 2024-02-28 15:49:39.19 2100 FEE 442232 21430 6100943 2024-02-28 15:49:39.19 2024-02-28 15:49:39.19 18900 TIP 442232 21239 6100969 2024-02-28 15:51:30.602 2024-02-28 15:51:30.602 10000 FEE 442226 18832 6100970 2024-02-28 15:51:30.602 2024-02-28 15:51:30.602 90000 TIP 442226 20613 6100985 2024-02-28 15:51:58.037 2024-02-28 15:51:58.037 1000 FEE 442163 11328 6100986 2024-02-28 15:51:58.037 2024-02-28 15:51:58.037 9000 TIP 442163 10549 6101000 2024-02-28 15:52:34.491 2024-02-28 15:52:34.491 1000 POLL 442163 20554 6101011 2024-02-28 15:53:17.655 2024-02-28 15:53:17.655 2100 FEE 442084 6616 6101012 2024-02-28 15:53:17.655 2024-02-28 15:53:17.655 18900 TIP 442084 732 6101039 2024-02-28 15:56:48.661 2024-02-28 15:56:48.661 100000 FEE 442254 15549 6101050 2024-02-28 15:57:19.058 2024-02-28 15:57:19.058 800 FEE 442170 8004 6101051 2024-02-28 15:57:19.058 2024-02-28 15:57:19.058 7200 TIP 442170 15063 6101074 2024-02-28 15:59:57.253 2024-02-28 15:59:57.253 2100 FEE 441951 20454 6101075 2024-02-28 15:59:57.253 2024-02-28 15:59:57.253 18900 TIP 441951 638 6101087 2024-02-28 16:00:15.706 2024-02-28 16:00:15.706 0 FEE 442252 20157 6101107 2024-02-28 16:01:29.536 2024-02-28 16:01:29.536 1000 FEE 442267 1038 6101108 2024-02-28 16:01:30.4 2024-02-28 16:01:30.4 1000 FEE 442268 9348 6101125 2024-02-28 16:02:39.274 2024-02-28 16:02:39.274 1000 FEE 442270 2326 6101152 2024-02-28 16:05:08.165 2024-02-28 16:05:08.165 1600 FEE 442270 19890 6101153 2024-02-28 16:05:08.165 2024-02-28 16:05:08.165 14400 TIP 442270 1480 6101166 2024-02-28 16:05:52.988 2024-02-28 16:05:52.988 1000 FEE 442279 9496 6101208 2024-02-28 16:09:25.897 2024-02-28 16:09:25.897 5700 FEE 442281 20613 6101209 2024-02-28 16:09:25.897 2024-02-28 16:09:25.897 51300 TIP 442281 16809 6101224 2024-02-28 16:11:42.303 2024-02-28 16:11:42.303 5000 FEE 442250 19033 6101225 2024-02-28 16:11:42.303 2024-02-28 16:11:42.303 45000 TIP 442250 17602 6101245 2024-02-28 16:13:09.246 2024-02-28 16:13:09.246 5700 FEE 442290 993 6101246 2024-02-28 16:13:09.246 2024-02-28 16:13:09.246 51300 TIP 442290 9347 6101252 2024-02-28 16:13:51.016 2024-02-28 16:13:51.016 5000 FEE 441843 13177 6101253 2024-02-28 16:13:51.016 2024-02-28 16:13:51.016 45000 TIP 441843 21058 6101261 2024-02-28 16:14:09.192 2024-02-28 16:14:09.192 1000 FEE 441782 16954 6101262 2024-02-28 16:14:09.192 2024-02-28 16:14:09.192 9000 TIP 441782 20710 6101270 2024-02-28 16:15:06.671 2024-02-28 16:15:06.671 1000 FEE 441769 12261 6101271 2024-02-28 16:15:06.671 2024-02-28 16:15:06.671 9000 TIP 441769 21624 6101280 2024-02-28 16:15:55.231 2024-02-28 16:15:55.231 10000 FEE 442084 20837 6101281 2024-02-28 16:15:55.231 2024-02-28 16:15:55.231 90000 TIP 442084 18626 6101290 2024-02-28 16:15:58.726 2024-02-28 16:15:58.726 200 FEE 442296 20788 6101291 2024-02-28 16:15:58.726 2024-02-28 16:15:58.726 1800 TIP 442296 17523 6100619 2024-02-28 15:34:43.547 2024-02-28 15:34:43.547 1000 FEE 442190 18507 6100623 2024-02-28 15:35:06.3 2024-02-28 15:35:06.3 1000 FEE 442192 18243 6100626 2024-02-28 15:35:13.345 2024-02-28 15:35:13.345 1000 FEE 442084 16336 6100627 2024-02-28 15:35:13.345 2024-02-28 15:35:13.345 9000 TIP 442084 718 6100644 2024-02-28 15:35:44.211 2024-02-28 15:35:44.211 1000 FEE 442194 2000 6100659 2024-02-28 15:36:25.269 2024-02-28 15:36:25.269 10000 FEE 442190 20245 6100660 2024-02-28 15:36:25.269 2024-02-28 15:36:25.269 90000 TIP 442190 18525 6100704 2024-02-28 15:36:59.543 2024-02-28 15:36:59.543 1000 FEE 441474 19569 6100705 2024-02-28 15:36:59.543 2024-02-28 15:36:59.543 9000 TIP 441474 756 6100732 2024-02-28 15:37:23.969 2024-02-28 15:37:23.969 1000 FEE 442199 19690 6100755 2024-02-28 15:38:50.211 2024-02-28 15:38:50.211 500 FEE 442023 20327 6100756 2024-02-28 15:38:50.211 2024-02-28 15:38:50.211 4500 TIP 442023 17722 6100767 2024-02-28 15:39:10.286 2024-02-28 15:39:10.286 1000 FEE 442208 6430 6100768 2024-02-28 15:39:17.806 2024-02-28 15:39:17.806 10000 FEE 442204 20588 6100769 2024-02-28 15:39:17.806 2024-02-28 15:39:17.806 90000 TIP 442204 660 6100797 2024-02-28 15:42:19.1 2024-02-28 15:42:19.1 2100 FEE 442185 14503 6100798 2024-02-28 15:42:19.1 2024-02-28 15:42:19.1 18900 TIP 442185 21254 6100805 2024-02-28 15:42:33.695 2024-02-28 15:42:33.695 1000 FEE 442170 8245 6100806 2024-02-28 15:42:33.695 2024-02-28 15:42:33.695 9000 TIP 442170 4059 6100812 2024-02-28 15:43:12.204 2024-02-28 15:43:12.204 1000 FEE 442191 20045 6100813 2024-02-28 15:43:12.204 2024-02-28 15:43:12.204 9000 TIP 442191 9476 6100821 2024-02-28 15:43:23.104 2024-02-28 15:43:23.104 1000 FEE 442219 17011 6100829 2024-02-28 15:43:39.282 2024-02-28 15:43:39.282 1100 FEE 442143 20246 6100830 2024-02-28 15:43:39.282 2024-02-28 15:43:39.282 9900 TIP 442143 616 6100878 2024-02-28 15:45:42.962 2024-02-28 15:45:42.962 1000 FEE 442226 1624 6100883 2024-02-28 15:45:55.666 2024-02-28 15:45:55.666 1000 FEE 442227 12507 6100895 2024-02-28 15:46:25.553 2024-02-28 15:46:25.553 1000 FEE 441713 4173 6100896 2024-02-28 15:46:25.553 2024-02-28 15:46:25.553 9000 TIP 441713 10063 6100903 2024-02-28 15:46:40.041 2024-02-28 15:46:40.041 9000 FEE 442191 17513 6100904 2024-02-28 15:46:40.041 2024-02-28 15:46:40.041 81000 TIP 442191 21072 6100905 2024-02-28 15:46:40.602 2024-02-28 15:46:40.602 100000 FEE 442230 4395 6100909 2024-02-28 15:47:00.908 2024-02-28 15:47:00.908 5000 FEE 442041 12057 6100910 2024-02-28 15:47:00.908 2024-02-28 15:47:00.908 45000 TIP 442041 4345 6100930 2024-02-28 15:48:28.077 2024-02-28 15:48:28.077 1000 POLL 441333 17014 6100939 2024-02-28 15:49:19.884 2024-02-28 15:49:19.884 1000 POLL 442163 974 6100940 2024-02-28 15:49:29.198 2024-02-28 15:49:29.198 1000 FEE 442234 1772 6100944 2024-02-28 15:49:47.703 2024-02-28 15:49:47.703 0 FEE 442143 844 6100966 2024-02-28 15:51:06.487 2024-02-28 15:51:06.487 1000 FEE 442238 18989 6100974 2024-02-28 15:51:37.671 2024-02-28 15:51:37.671 3300 FEE 442117 19905 6100975 2024-02-28 15:51:37.671 2024-02-28 15:51:37.671 29700 TIP 442117 18930 6100995 2024-02-28 15:52:10.25 2024-02-28 15:52:10.25 3300 FEE 442138 1425 6100655 2024-02-28 15:36:04.601 2024-02-28 15:36:04.601 0 FEE 442194 18994 6100656 2024-02-28 15:36:09.265 2024-02-28 15:36:09.265 1000 FEE 442196 15052 6100661 2024-02-28 15:36:27.917 2024-02-28 15:36:27.917 100 FEE 442187 18664 6100662 2024-02-28 15:36:27.917 2024-02-28 15:36:27.917 900 TIP 442187 5746 6100665 2024-02-28 15:36:37.456 2024-02-28 15:36:37.456 1000 FEE 441391 2010 6100666 2024-02-28 15:36:37.456 2024-02-28 15:36:37.456 9000 TIP 441391 15577 6100677 2024-02-28 15:36:40.331 2024-02-28 15:36:40.331 0 FEE 442192 17708 6100686 2024-02-28 15:36:53.712 2024-02-28 15:36:53.712 1000 FEE 441438 2204 6100687 2024-02-28 15:36:53.712 2024-02-28 15:36:53.712 9000 TIP 441438 11443 6100717 2024-02-28 15:37:09.208 2024-02-28 15:37:09.208 1000 FEE 441514 913 6100718 2024-02-28 15:37:09.208 2024-02-28 15:37:09.208 9000 TIP 441514 18809 6100721 2024-02-28 15:37:10.513 2024-02-28 15:37:10.513 1000 FEE 441514 688 6100722 2024-02-28 15:37:10.513 2024-02-28 15:37:10.513 9000 TIP 441514 9427 6100723 2024-02-28 15:37:11.005 2024-02-28 15:37:11.005 1000 FEE 441514 6360 6100724 2024-02-28 15:37:11.005 2024-02-28 15:37:11.005 9000 TIP 441514 6393 6100725 2024-02-28 15:37:11.396 2024-02-28 15:37:11.396 1000 FEE 441514 1713 6100726 2024-02-28 15:37:11.396 2024-02-28 15:37:11.396 9000 TIP 441514 9363 6100742 2024-02-28 15:38:18.685 2024-02-28 15:38:18.685 1000 FEE 441968 11443 6100743 2024-02-28 15:38:18.685 2024-02-28 15:38:18.685 9000 TIP 441968 20606 6100746 2024-02-28 15:38:19.501 2024-02-28 15:38:19.501 1000 FEE 441968 18842 6100747 2024-02-28 15:38:19.501 2024-02-28 15:38:19.501 9000 TIP 441968 21228 6100752 2024-02-28 15:38:48.755 2024-02-28 15:38:48.755 100000 FEE 442206 5069 6100777 2024-02-28 15:40:30.392 2024-02-28 15:40:30.392 2500 FEE 441829 19906 6100778 2024-02-28 15:40:30.392 2024-02-28 15:40:30.392 22500 TIP 441829 9242 6100828 2024-02-28 15:43:36.718 2024-02-28 15:43:36.718 1000 FEE 442221 6335 6100831 2024-02-28 15:43:39.567 2024-02-28 15:43:39.567 500 FEE 442143 15617 6100832 2024-02-28 15:43:39.567 2024-02-28 15:43:39.567 4500 TIP 442143 19118 6100835 2024-02-28 15:44:01.597 2024-02-28 15:44:01.597 100 FEE 442163 18235 6100836 2024-02-28 15:44:01.597 2024-02-28 15:44:01.597 900 TIP 442163 8570 6100854 2024-02-28 15:44:27.142 2024-02-28 15:44:27.142 1000 FEE 442170 998 6100855 2024-02-28 15:44:27.142 2024-02-28 15:44:27.142 9000 TIP 442170 2342 6100866 2024-02-28 15:44:58.892 2024-02-28 15:44:58.892 1000 FEE 442164 1038 6100867 2024-02-28 15:44:58.892 2024-02-28 15:44:58.892 9000 TIP 442164 6149 6100887 2024-02-28 15:46:09.27 2024-02-28 15:46:09.27 1000 FEE 442228 2703 6100897 2024-02-28 15:46:25.993 2024-02-28 15:46:25.993 1000 FEE 441713 21201 6100898 2024-02-28 15:46:25.993 2024-02-28 15:46:25.993 9000 TIP 441713 18472 6100922 2024-02-28 15:47:42.033 2024-02-28 15:47:42.033 0 FEE 442229 16649 6100956 2024-02-28 15:50:21.927 2024-02-28 15:50:21.927 100 FEE 442209 17592 6100957 2024-02-28 15:50:21.927 2024-02-28 15:50:21.927 900 TIP 442209 9418 6100976 2024-02-28 15:51:37.914 2024-02-28 15:51:37.914 3300 FEE 442117 700 6100977 2024-02-28 15:51:37.914 2024-02-28 15:51:37.914 29700 TIP 442117 21136 6100978 2024-02-28 15:51:40.178 2024-02-28 15:51:40.178 1000 FEE 442240 21072 6100983 2024-02-28 15:51:57.923 2024-02-28 15:51:57.923 1000 FEE 442163 17091 6100984 2024-02-28 15:51:57.923 2024-02-28 15:51:57.923 9000 TIP 442163 5759 6101021 2024-02-28 15:54:47.029 2024-02-28 15:54:47.029 3100 FEE 442202 6149 6101022 2024-02-28 15:54:47.029 2024-02-28 15:54:47.029 27900 TIP 442202 21178 6101023 2024-02-28 15:54:51.2 2024-02-28 15:54:51.2 1000 POLL 442163 10311 6101029 2024-02-28 15:55:48.947 2024-02-28 15:55:48.947 1000 FEE 442250 19346 6101042 2024-02-28 15:56:56.507 2024-02-28 15:56:56.507 1000 FEE 442254 19633 6101043 2024-02-28 15:56:56.507 2024-02-28 15:56:56.507 9000 TIP 442254 626 6101058 2024-02-28 15:58:06.353 2024-02-28 15:58:06.353 1000 FEE 442258 9433 6101081 2024-02-28 16:00:05.584 2024-02-28 16:00:05.584 3300 FEE 442252 6361 6101082 2024-02-28 16:00:05.584 2024-02-28 16:00:05.584 29700 TIP 442252 17103 6101092 2024-02-28 16:01:01.436 2024-02-28 16:01:01.436 0 FEE 442252 11144 6101102 2024-02-28 16:01:15.271 2024-02-28 16:01:15.271 1000 FEE 442251 20623 6101103 2024-02-28 16:01:15.271 2024-02-28 16:01:15.271 9000 TIP 442251 11873 6100710 2024-02-28 15:37:07.848 2024-02-28 15:37:07.848 9000 TIP 441514 16536 6100748 2024-02-28 15:38:23.458 2024-02-28 15:38:23.458 1000 FEE 442203 18051 6100759 2024-02-28 15:38:52.747 2024-02-28 15:38:52.747 700 FEE 442100 6148 6100760 2024-02-28 15:38:52.747 2024-02-28 15:38:52.747 6300 TIP 442100 21541 6100776 2024-02-28 15:40:26.646 2024-02-28 15:40:26.646 1000 FEE 442211 3440 6100779 2024-02-28 15:40:33.888 2024-02-28 15:40:33.888 2500 FEE 441749 8269 6100780 2024-02-28 15:40:33.888 2024-02-28 15:40:33.888 22500 TIP 441749 15728 6100794 2024-02-28 15:42:15.189 2024-02-28 15:42:15.189 2100 FEE 442208 20778 6100795 2024-02-28 15:42:15.189 2024-02-28 15:42:15.189 18900 TIP 442208 8289 6100807 2024-02-28 15:42:34.036 2024-02-28 15:42:34.036 2000 FEE 442170 17927 6100808 2024-02-28 15:42:34.036 2024-02-28 15:42:34.036 18000 TIP 442170 2514 6100841 2024-02-28 15:44:02.623 2024-02-28 15:44:02.623 2500 FEE 441660 20710 6100842 2024-02-28 15:44:02.623 2024-02-28 15:44:02.623 22500 TIP 441660 10490 6100847 2024-02-28 15:44:11.855 2024-02-28 15:44:11.855 1000 FEE 442188 2459 6100848 2024-02-28 15:44:11.855 2024-02-28 15:44:11.855 9000 TIP 442188 5661 6100888 2024-02-28 15:46:16.554 2024-02-28 15:46:16.554 1000 FEE 442229 17693 6100906 2024-02-28 15:46:42.723 2024-02-28 15:46:42.723 1000 FEE 442097 20433 6100907 2024-02-28 15:46:42.723 2024-02-28 15:46:42.723 9000 TIP 442097 17411 6100935 2024-02-28 15:48:55.502 2024-02-28 15:48:55.502 5000 FEE 442170 12507 6100936 2024-02-28 15:48:55.502 2024-02-28 15:48:55.502 45000 TIP 442170 21136 6100962 2024-02-28 15:50:28.884 2024-02-28 15:50:28.884 100 FEE 442045 21469 6100963 2024-02-28 15:50:28.884 2024-02-28 15:50:28.884 900 TIP 442045 16357 6101028 2024-02-28 15:55:43.589 2024-02-28 15:55:43.589 1000 FEE 442249 733 6101064 2024-02-28 15:58:27.527 2024-02-28 15:58:27.527 1000 FEE 442260 16440 6101065 2024-02-28 15:58:47.162 2024-02-28 15:58:47.162 800 FEE 442143 7425 6101066 2024-02-28 15:58:47.162 2024-02-28 15:58:47.162 7200 TIP 442143 16456 6101068 2024-02-28 15:59:26.064 2024-02-28 15:59:26.064 0 FEE 442252 1213 6101069 2024-02-28 15:59:30.534 2024-02-28 15:59:30.534 1000 FEE 442261 3371 6101073 2024-02-28 15:59:50.702 2024-02-28 15:59:50.702 0 FEE 442261 19117 6101088 2024-02-28 16:00:37.116 2024-02-28 16:00:37.116 1000 FEE 442265 14910 6101098 2024-02-28 16:01:14.319 2024-02-28 16:01:14.319 1000 FEE 442251 13781 6101099 2024-02-28 16:01:14.319 2024-02-28 16:01:14.319 9000 TIP 442251 5761 6101109 2024-02-28 16:01:32.564 2024-02-28 16:01:32.564 1000 FEE 442163 5293 6101110 2024-02-28 16:01:32.564 2024-02-28 16:01:32.564 9000 TIP 442163 21498 6101147 2024-02-28 16:04:33.095 2024-02-28 16:04:33.095 1000 FEE 442276 2757 6101148 2024-02-28 16:04:37.06 2024-02-28 16:04:37.06 100000 FEE 442277 8726 6101150 2024-02-28 16:04:59.709 2024-02-28 16:04:59.709 1000 FEE 442278 18941 6101179 2024-02-28 16:07:04.196 2024-02-28 16:07:04.196 120000 FEE 442281 21166 6101180 2024-02-28 16:07:17.966 2024-02-28 16:07:17.966 1000 FEE 442282 4388 6101219 2024-02-28 16:11:13.807 2024-02-28 16:11:13.807 1000 FEE 442287 691 6101247 2024-02-28 16:13:09.263 2024-02-28 16:13:09.263 0 FEE 442292 13987 6101258 2024-02-28 16:13:52.72 2024-02-28 16:13:52.72 5700 FEE 442153 16789 6101259 2024-02-28 16:13:52.72 2024-02-28 16:13:52.72 51300 TIP 442153 2326 6101266 2024-02-28 16:14:50.104 2024-02-28 16:14:50.104 1000 FEE 442296 19484 6101277 2024-02-28 16:15:21.452 2024-02-28 16:15:21.452 1000 FEE 442299 19622 6101294 2024-02-28 16:15:59.563 2024-02-28 16:15:59.563 200 FEE 442296 18583 6101295 2024-02-28 16:15:59.563 2024-02-28 16:15:59.563 1800 TIP 442296 15662 6101309 2024-02-28 16:17:48.11 2024-02-28 16:17:48.11 0 FEE 442305 14657 6101310 2024-02-28 16:17:53.746 2024-02-28 16:17:53.746 1000 FEE 442308 21605 6101314 2024-02-28 16:18:05.531 2024-02-28 16:18:05.531 7700 FEE 442298 19435 6101315 2024-02-28 16:18:05.531 2024-02-28 16:18:05.531 69300 TIP 442298 12769 6101326 2024-02-28 16:18:07.874 2024-02-28 16:18:07.874 7700 FEE 442298 19661 6101327 2024-02-28 16:18:07.874 2024-02-28 16:18:07.874 69300 TIP 442298 17095 6101352 2024-02-28 16:18:45.354 2024-02-28 16:18:45.354 6900 FEE 442298 19553 6101353 2024-02-28 16:18:45.354 2024-02-28 16:18:45.354 62100 TIP 442298 18243 6101354 2024-02-28 16:18:45.482 2024-02-28 16:18:45.482 6900 FEE 442298 18274 6101355 2024-02-28 16:18:45.482 2024-02-28 16:18:45.482 62100 TIP 442298 14247 6101360 2024-02-28 16:19:17.141 2024-02-28 16:19:17.141 0 FEE 442309 18816 6101420 2024-02-28 16:21:03.457 2024-02-28 16:21:03.457 5700 FEE 442305 20871 6101421 2024-02-28 16:21:03.457 2024-02-28 16:21:03.457 51300 TIP 442305 18241 6101439 2024-02-28 16:21:57.64 2024-02-28 16:21:57.64 100 FEE 441523 7746 6101440 2024-02-28 16:21:57.64 2024-02-28 16:21:57.64 900 TIP 441523 20509 6101475 2024-02-28 16:23:54.805 2024-02-28 16:23:54.805 1000 POLL 442163 19854 6101484 2024-02-28 16:25:26.438 2024-02-28 16:25:26.438 21000 FEE 442313 8045 6101485 2024-02-28 16:25:26.438 2024-02-28 16:25:26.438 189000 TIP 442313 15115 6101506 2024-02-28 16:27:21.143 2024-02-28 16:27:21.143 10000 FEE 441886 4378 6101507 2024-02-28 16:27:21.143 2024-02-28 16:27:21.143 90000 TIP 441886 19652 6101565 2024-02-28 16:31:46.563 2024-02-28 16:31:46.563 2100 FEE 441843 18368 6101566 2024-02-28 16:31:46.563 2024-02-28 16:31:46.563 18900 TIP 441843 1772 6101569 2024-02-28 16:31:47.293 2024-02-28 16:31:47.293 2100 FEE 441843 696 6101570 2024-02-28 16:31:47.293 2024-02-28 16:31:47.293 18900 TIP 441843 10283 6101571 2024-02-28 16:31:49.092 2024-02-28 16:31:49.092 2100 FEE 442328 2749 6101572 2024-02-28 16:31:49.092 2024-02-28 16:31:49.092 18900 TIP 442328 5387 6101573 2024-02-28 16:31:52.571 2024-02-28 16:31:52.571 2100 FEE 442325 726 6101574 2024-02-28 16:31:52.571 2024-02-28 16:31:52.571 18900 TIP 442325 16259 6101575 2024-02-28 16:31:55.906 2024-02-28 16:31:55.906 7700 FEE 442298 7746 6101576 2024-02-28 16:31:55.906 2024-02-28 16:31:55.906 69300 TIP 442298 12024 6101600 2024-02-28 16:32:39.555 2024-02-28 16:32:39.555 1000 FEE 442328 5597 6101601 2024-02-28 16:32:39.555 2024-02-28 16:32:39.555 9000 TIP 442328 8289 6101602 2024-02-28 16:32:40.279 2024-02-28 16:32:40.279 1000 FEE 442328 15243 6101603 2024-02-28 16:32:40.279 2024-02-28 16:32:40.279 9000 TIP 442328 21329 6101606 2024-02-28 16:32:40.863 2024-02-28 16:32:40.863 1000 FEE 442328 15484 6101607 2024-02-28 16:32:40.863 2024-02-28 16:32:40.863 9000 TIP 442328 21521 6101649 2024-02-28 16:34:11.132 2024-02-28 16:34:11.132 2100 FEE 442304 20470 6101650 2024-02-28 16:34:11.132 2024-02-28 16:34:11.132 18900 TIP 442304 679 6101653 2024-02-28 16:34:28.8 2024-02-28 16:34:28.8 2100 FEE 442322 6149 6101654 2024-02-28 16:34:28.8 2024-02-28 16:34:28.8 18900 TIP 442322 2774 6101660 2024-02-28 16:35:01.974 2024-02-28 16:35:01.974 5700 FEE 442328 21083 6101661 2024-02-28 16:35:01.974 2024-02-28 16:35:01.974 51300 TIP 442328 4633 6101685 2024-02-28 16:36:32.016 2024-02-28 16:36:32.016 500 FEE 442106 16353 6101686 2024-02-28 16:36:32.016 2024-02-28 16:36:32.016 4500 TIP 442106 17696 6101739 2024-02-28 16:37:41.509 2024-02-28 16:37:41.509 1000 FEE 441896 18630 6101740 2024-02-28 16:37:41.509 2024-02-28 16:37:41.509 9000 TIP 441896 979 6101753 2024-02-28 16:39:34.444 2024-02-28 16:39:34.444 1000 FEE 442355 705 6101766 2024-02-28 16:40:07.369 2024-02-28 16:40:07.369 1000 FEE 442350 17316 6101767 2024-02-28 16:40:07.369 2024-02-28 16:40:07.369 9000 TIP 442350 15833 6101782 2024-02-28 16:40:14.348 2024-02-28 16:40:14.348 1000 FEE 442347 4487 6101783 2024-02-28 16:40:14.348 2024-02-28 16:40:14.348 9000 TIP 442347 780 6101793 2024-02-28 16:40:55.713 2024-02-28 16:40:55.713 1000 FEE 442360 18525 6101797 2024-02-28 16:41:14.184 2024-02-28 16:41:14.184 2100 FEE 442313 20156 6101798 2024-02-28 16:41:14.184 2024-02-28 16:41:14.184 18900 TIP 442313 10311 6101803 2024-02-28 16:41:16.934 2024-02-28 16:41:16.934 2100 FEE 442163 10484 6100761 2024-02-28 15:39:03.706 2024-02-28 15:39:03.706 1000 STREAM 141924 4395 6100786 2024-02-28 15:41:03.747 2024-02-28 15:41:03.747 1000 STREAM 141924 15282 6100820 2024-02-28 15:43:14.438 2024-02-28 15:43:14.438 10000 FEE 442218 3683 6100833 2024-02-28 15:43:55.804 2024-02-28 15:43:55.804 2100 FEE 442178 11164 6100834 2024-02-28 15:43:55.804 2024-02-28 15:43:55.804 18900 TIP 442178 4074 6100837 2024-02-28 15:44:01.877 2024-02-28 15:44:01.877 900 FEE 442163 3353 6100838 2024-02-28 15:44:01.877 2024-02-28 15:44:01.877 8100 TIP 442163 19031 6100846 2024-02-28 15:44:07.673 2024-02-28 15:44:07.673 1000 POLL 442163 5806 6100859 2024-02-28 15:44:48.602 2024-02-28 15:44:48.602 2100 FEE 442206 19839 6100860 2024-02-28 15:44:48.602 2024-02-28 15:44:48.602 18900 TIP 442206 18139 6100861 2024-02-28 15:44:49.948 2024-02-28 15:44:49.948 0 FEE 442143 21379 6100899 2024-02-28 15:46:29.178 2024-02-28 15:46:29.178 100 FEE 442191 18169 6100900 2024-02-28 15:46:29.178 2024-02-28 15:46:29.178 900 TIP 442191 2326 6100920 2024-02-28 15:47:22.704 2024-02-28 15:47:22.704 7700 FEE 442230 20802 6100921 2024-02-28 15:47:22.704 2024-02-28 15:47:22.704 69300 TIP 442230 20066 6100952 2024-02-28 15:50:21.411 2024-02-28 15:50:21.411 100 FEE 442209 13878 6100953 2024-02-28 15:50:21.411 2024-02-28 15:50:21.411 900 TIP 442209 8385 6100964 2024-02-28 15:50:31.627 2024-02-28 15:50:31.627 1000 FEE 442237 5942 6100971 2024-02-28 15:51:33.433 2024-02-28 15:51:33.433 1000 POLL 442163 13249 6100987 2024-02-28 15:51:58.198 2024-02-28 15:51:58.198 1000 FEE 442163 18393 6100988 2024-02-28 15:51:58.198 2024-02-28 15:51:58.198 9000 TIP 442163 21555 6100992 2024-02-28 15:52:09.805 2024-02-28 15:52:09.805 1000 POLL 442163 1012 6101031 2024-02-28 15:56:16.493 2024-02-28 15:56:16.493 1000 FEE 442251 18829 6101040 2024-02-28 15:56:51.77 2024-02-28 15:56:51.77 3300 FEE 442243 19759 6101041 2024-02-28 15:56:51.77 2024-02-28 15:56:51.77 29700 TIP 442243 1738 6101053 2024-02-28 15:57:31.773 2024-02-28 15:57:31.773 0 FEE 442256 1717 6101055 2024-02-28 15:57:43.798 2024-02-28 15:57:43.798 0 FEE 442252 21248 6101059 2024-02-28 15:58:12.817 2024-02-28 15:58:12.817 0 FEE 442258 20663 6101060 2024-02-28 15:58:15.445 2024-02-28 15:58:15.445 5000 FEE 442227 12158 6101061 2024-02-28 15:58:15.445 2024-02-28 15:58:15.445 45000 TIP 442227 9906 6101077 2024-02-28 16:00:04.84 2024-02-28 16:00:04.84 100000 FEE 442263 5942 6101096 2024-02-28 16:01:13.949 2024-02-28 16:01:13.949 1000 FEE 442251 16276 6101097 2024-02-28 16:01:13.949 2024-02-28 16:01:13.949 9000 TIP 442251 730 6101115 2024-02-28 16:01:45.193 2024-02-28 16:01:45.193 3300 FEE 442146 21140 6101116 2024-02-28 16:01:45.193 2024-02-28 16:01:45.193 29700 TIP 442146 656 6101126 2024-02-28 16:02:44.556 2024-02-28 16:02:44.556 3300 FEE 442267 959 6101127 2024-02-28 16:02:44.556 2024-02-28 16:02:44.556 29700 TIP 442267 1319 6101128 2024-02-28 16:02:59.308 2024-02-28 16:02:59.308 1000 FEE 442230 1631 6101129 2024-02-28 16:02:59.308 2024-02-28 16:02:59.308 9000 TIP 442230 16350 6101131 2024-02-28 16:03:21.194 2024-02-28 16:03:21.194 1000 FEE 442271 14271 6101133 2024-02-28 16:03:39.828 2024-02-28 16:03:39.828 2100 FEE 442084 20715 6101134 2024-02-28 16:03:39.828 2024-02-28 16:03:39.828 18900 TIP 442084 20110 6101135 2024-02-28 16:03:40.549 2024-02-28 16:03:40.549 2100 FEE 442084 21457 6101136 2024-02-28 16:03:40.549 2024-02-28 16:03:40.549 18900 TIP 442084 11144 6101145 2024-02-28 16:04:24.34 2024-02-28 16:04:24.34 3100 FEE 442269 692 6101146 2024-02-28 16:04:24.34 2024-02-28 16:04:24.34 27900 TIP 442269 18264 6101164 2024-02-28 16:05:31.343 2024-02-28 16:05:31.343 10000 FEE 442023 4167 6101165 2024-02-28 16:05:31.343 2024-02-28 16:05:31.343 90000 TIP 442023 6041 6101184 2024-02-28 16:07:55.392 2024-02-28 16:07:55.392 3100 FEE 442183 684 6101185 2024-02-28 16:07:55.392 2024-02-28 16:07:55.392 27900 TIP 442183 5809 6101188 2024-02-28 16:08:05.139 2024-02-28 16:08:05.139 1000 FEE 442283 21369 6101189 2024-02-28 16:08:05.139 2024-02-28 16:08:05.139 9000 TIP 442283 1609 6101193 2024-02-28 16:08:27.689 2024-02-28 16:08:27.689 2100 FEE 441509 974 6101194 2024-02-28 16:08:27.689 2024-02-28 16:08:27.689 18900 TIP 441509 2061 6101233 2024-02-28 16:12:30.187 2024-02-28 16:12:30.187 1000 FEE 442290 7827 6101236 2024-02-28 16:12:44.692 2024-02-28 16:12:44.692 7700 FEE 442274 12562 6101237 2024-02-28 16:12:44.692 2024-02-28 16:12:44.692 69300 TIP 442274 2775 6101263 2024-02-28 16:14:24.587 2024-02-28 16:14:24.587 1000 FEE 442295 18528 6101264 2024-02-28 16:14:26.047 2024-02-28 16:14:26.047 2500 FEE 442147 16788 6101265 2024-02-28 16:14:26.047 2024-02-28 16:14:26.047 22500 TIP 442147 16571 6101272 2024-02-28 16:15:07.117 2024-02-28 16:15:07.117 1000 FEE 441769 15088 6101273 2024-02-28 16:15:07.117 2024-02-28 16:15:07.117 9000 TIP 441769 16447 6101278 2024-02-28 16:15:22.528 2024-02-28 16:15:22.528 10000 FEE 442300 11145 6101284 2024-02-28 16:15:58.225 2024-02-28 16:15:58.225 200 FEE 442296 14731 6101285 2024-02-28 16:15:58.225 2024-02-28 16:15:58.225 1800 TIP 442296 17275 6101307 2024-02-28 16:17:30.597 2024-02-28 16:17:30.597 100000 FEE 442306 20973 6101324 2024-02-28 16:18:07.76 2024-02-28 16:18:07.76 7700 FEE 442298 9450 6101325 2024-02-28 16:18:07.76 2024-02-28 16:18:07.76 69300 TIP 442298 9167 6101348 2024-02-28 16:18:45.097 2024-02-28 16:18:45.097 6900 FEE 442298 10638 6101349 2024-02-28 16:18:45.097 2024-02-28 16:18:45.097 62100 TIP 442298 5527 6101356 2024-02-28 16:18:54.099 2024-02-28 16:18:54.099 1000 FEE 442311 21589 6101361 2024-02-28 16:19:24.739 2024-02-28 16:19:24.739 15000 FEE 442313 661 6101362 2024-02-28 16:19:35.712 2024-02-28 16:19:35.712 6900 FEE 442313 21501 6101363 2024-02-28 16:19:35.712 2024-02-28 16:19:35.712 62100 TIP 442313 17184 6101368 2024-02-28 16:19:36.237 2024-02-28 16:19:36.237 6900 FEE 442313 14909 6101369 2024-02-28 16:19:36.237 2024-02-28 16:19:36.237 62100 TIP 442313 20180 6101390 2024-02-28 16:20:10.134 2024-02-28 16:20:10.134 0 FEE 442309 1425 6101412 2024-02-28 16:20:51.172 2024-02-28 16:20:51.172 7700 FEE 442313 16336 6101413 2024-02-28 16:20:51.172 2024-02-28 16:20:51.172 69300 TIP 442313 20904 6101425 2024-02-28 16:21:07.802 2024-02-28 16:21:07.802 27900 FEE 442304 19826 6101426 2024-02-28 16:21:07.802 2024-02-28 16:21:07.802 251100 TIP 442304 14195 6101429 2024-02-28 16:21:17.55 2024-02-28 16:21:17.55 10000 FEE 442315 12220 6101430 2024-02-28 16:21:17.55 2024-02-28 16:21:17.55 90000 TIP 442315 4014 6101443 2024-02-28 16:22:00.116 2024-02-28 16:22:00.116 9000 FEE 441523 20157 6101444 2024-02-28 16:22:00.116 2024-02-28 16:22:00.116 81000 TIP 441523 18270 6101462 2024-02-28 16:23:09.313 2024-02-28 16:23:09.313 3300 FEE 442260 910 6101463 2024-02-28 16:23:09.313 2024-02-28 16:23:09.313 29700 TIP 442260 12278 6101471 2024-02-28 16:23:35.111 2024-02-28 16:23:35.111 2100 FEE 442298 11967 6101472 2024-02-28 16:23:35.111 2024-02-28 16:23:35.111 18900 TIP 442298 21338 6101483 2024-02-28 16:25:23.944 2024-02-28 16:25:23.944 210000 FEE 442325 13249 6101500 2024-02-28 16:27:09.958 2024-02-28 16:27:09.958 0 FEE 442327 4633 6101503 2024-02-28 16:27:13.926 2024-02-28 16:27:13.926 3100 FEE 442324 1465 6101504 2024-02-28 16:27:13.926 2024-02-28 16:27:13.926 27900 TIP 442324 12346 6101518 2024-02-28 16:28:37.243 2024-02-28 16:28:37.243 1000 FEE 442330 18330 6101519 2024-02-28 16:28:37.417 2024-02-28 16:28:37.417 1000 FEE 442331 17172 6101522 2024-02-28 16:29:01.027 2024-02-28 16:29:01.027 1000 FEE 442283 18351 6101523 2024-02-28 16:29:01.027 2024-02-28 16:29:01.027 9000 TIP 442283 18274 6101528 2024-02-28 16:29:02.326 2024-02-28 16:29:02.326 2100 FEE 442327 18526 6101529 2024-02-28 16:29:02.326 2024-02-28 16:29:02.326 18900 TIP 442327 20208 6101532 2024-02-28 16:29:03.073 2024-02-28 16:29:03.073 1000 FEE 442283 998 6101533 2024-02-28 16:29:03.073 2024-02-28 16:29:03.073 9000 TIP 442283 7395 6101549 2024-02-28 16:30:16.072 2024-02-28 16:30:16.072 1000 FEE 442338 9342 6101562 2024-02-28 16:31:36.294 2024-02-28 16:31:36.294 1000 FEE 442343 13987 6101579 2024-02-28 16:31:56.206 2024-02-28 16:31:56.206 7700 FEE 442298 8498 6101580 2024-02-28 16:31:56.206 2024-02-28 16:31:56.206 69300 TIP 442298 805 6101581 2024-02-28 16:31:56.467 2024-02-28 16:31:56.467 7700 FEE 442298 1738 6101582 2024-02-28 16:31:56.467 2024-02-28 16:31:56.467 69300 TIP 442298 20310 6100845 2024-02-28 15:44:03.566 2024-02-28 15:44:03.566 1000 STREAM 141924 705 6100911 2024-02-28 15:47:03.574 2024-02-28 15:47:03.574 1000 STREAM 141924 18449 6100937 2024-02-28 15:49:03.567 2024-02-28 15:49:03.567 1000 STREAM 141924 21522 6100947 2024-02-28 15:50:03.578 2024-02-28 15:50:03.578 1000 STREAM 141924 9276 6100991 2024-02-28 15:52:03.822 2024-02-28 15:52:03.822 1000 STREAM 141924 18664 6101030 2024-02-28 15:56:03.829 2024-02-28 15:56:03.829 1000 STREAM 141924 13843 6100996 2024-02-28 15:52:10.25 2024-02-28 15:52:10.25 29700 TIP 442138 1320 6101002 2024-02-28 15:52:47.209 2024-02-28 15:52:47.209 1000 FEE 442243 17162 6101032 2024-02-28 15:56:18.971 2024-02-28 15:56:18.971 0 FEE 442250 4238 6101035 2024-02-28 15:56:34.46 2024-02-28 15:56:34.46 5700 FEE 442183 2724 6101036 2024-02-28 15:56:34.46 2024-02-28 15:56:34.46 51300 TIP 442183 20756 6101037 2024-02-28 15:56:44.054 2024-02-28 15:56:44.054 1000 FEE 442252 16653 6101038 2024-02-28 15:56:44.248 2024-02-28 15:56:44.248 1000 FEE 442253 4487 6101046 2024-02-28 15:57:05.037 2024-02-28 15:57:05.037 1000 FEE 442084 2718 6101047 2024-02-28 15:57:05.037 2024-02-28 15:57:05.037 9000 TIP 442084 910 6101048 2024-02-28 15:57:05.48 2024-02-28 15:57:05.48 0 FEE 442252 2508 6101054 2024-02-28 15:57:32.259 2024-02-28 15:57:32.259 0 FEE 442252 19886 6101078 2024-02-28 16:00:05.097 2024-02-28 16:00:05.097 3300 FEE 442252 14959 6101079 2024-02-28 16:00:05.097 2024-02-28 16:00:05.097 29700 TIP 442252 11288 6101083 2024-02-28 16:00:05.796 2024-02-28 16:00:05.796 3300 FEE 442252 680 6101084 2024-02-28 16:00:05.796 2024-02-28 16:00:05.796 29700 TIP 442252 15858 6101111 2024-02-28 16:01:41.383 2024-02-28 16:01:41.383 900 FEE 441885 8926 6101112 2024-02-28 16:01:41.383 2024-02-28 16:01:41.383 8100 TIP 441885 19863 6101113 2024-02-28 16:01:45.13 2024-02-28 16:01:45.13 3300 FEE 442146 15488 6101114 2024-02-28 16:01:45.13 2024-02-28 16:01:45.13 29700 TIP 442146 18660 6101118 2024-02-28 16:02:09.858 2024-02-28 16:02:09.858 0 FEE 442266 21138 6101123 2024-02-28 16:02:33.558 2024-02-28 16:02:33.558 27900 FEE 442147 1114 6101124 2024-02-28 16:02:33.558 2024-02-28 16:02:33.558 251100 TIP 442147 638 6101132 2024-02-28 16:03:38.116 2024-02-28 16:03:38.116 1000 FEE 442272 15075 6101160 2024-02-28 16:05:30.902 2024-02-28 16:05:30.902 10000 FEE 442023 20153 6101161 2024-02-28 16:05:30.902 2024-02-28 16:05:30.902 90000 TIP 442023 16296 6101171 2024-02-28 16:06:32.245 2024-02-28 16:06:32.245 1000 POLL 442163 19576 6101172 2024-02-28 16:06:34.997 2024-02-28 16:06:34.997 2600 FEE 441854 16809 6101173 2024-02-28 16:06:34.997 2024-02-28 16:06:34.997 23400 TIP 441854 16259 6101191 2024-02-28 16:08:12.045 2024-02-28 16:08:12.045 1100 FEE 441333 20840 6101192 2024-02-28 16:08:12.045 2024-02-28 16:08:12.045 9900 TIP 441333 13782 6101206 2024-02-28 16:09:22.716 2024-02-28 16:09:22.716 5700 FEE 442283 9796 6101207 2024-02-28 16:09:22.716 2024-02-28 16:09:22.716 51300 TIP 442283 21506 6101226 2024-02-28 16:11:49.446 2024-02-28 16:11:49.446 2100 FEE 442226 20713 6101227 2024-02-28 16:11:49.446 2024-02-28 16:11:49.446 18900 TIP 442226 17944 6101229 2024-02-28 16:12:01.947 2024-02-28 16:12:01.947 1000 FEE 442289 925 6101275 2024-02-28 16:15:11.027 2024-02-28 16:15:11.027 100000 FEE 442298 4027 6101276 2024-02-28 16:15:11.027 2024-02-28 16:15:11.027 25000000 BOOST 442298 2961 6101292 2024-02-28 16:15:58.973 2024-02-28 16:15:58.973 200 FEE 442296 889 6101293 2024-02-28 16:15:58.973 2024-02-28 16:15:58.973 1800 TIP 442296 16284 6101299 2024-02-28 16:16:03.696 2024-02-28 16:16:03.696 100 FEE 442296 21291 6101300 2024-02-28 16:16:03.696 2024-02-28 16:16:03.696 900 TIP 442296 21349 6101322 2024-02-28 16:18:07.644 2024-02-28 16:18:07.644 7700 FEE 442298 4062 6101323 2024-02-28 16:18:07.644 2024-02-28 16:18:07.644 69300 TIP 442298 20099 6101350 2024-02-28 16:18:45.194 2024-02-28 16:18:45.194 6900 FEE 442298 12774 6101351 2024-02-28 16:18:45.194 2024-02-28 16:18:45.194 62100 TIP 442298 876 6101357 2024-02-28 16:18:55.387 2024-02-28 16:18:55.387 1000 FEE 442312 16284 6101385 2024-02-28 16:20:02.942 2024-02-28 16:20:02.942 10000 FEE 441074 16753 6101386 2024-02-28 16:20:02.942 2024-02-28 16:20:02.942 90000 TIP 441074 20646 6101393 2024-02-28 16:20:31.98 2024-02-28 16:20:31.98 10000 FEE 442313 19043 6101394 2024-02-28 16:20:31.98 2024-02-28 16:20:31.98 90000 TIP 442313 19777 6101406 2024-02-28 16:20:50.793 2024-02-28 16:20:50.793 7700 FEE 442313 19030 6101407 2024-02-28 16:20:50.793 2024-02-28 16:20:50.793 69300 TIP 442313 21463 6101450 2024-02-28 16:22:33.66 2024-02-28 16:22:33.66 7000 FEE 442319 21139 6101479 2024-02-28 16:24:41.356 2024-02-28 16:24:41.356 1000 FEE 442322 17798 6101488 2024-02-28 16:25:33.161 2024-02-28 16:25:33.161 2100 FEE 442320 13055 6101489 2024-02-28 16:25:33.161 2024-02-28 16:25:33.161 18900 TIP 442320 10731 6101496 2024-02-28 16:26:04.361 2024-02-28 16:26:04.361 100000 DONT_LIKE_THIS 442177 647 6101516 2024-02-28 16:28:33.126 2024-02-28 16:28:33.126 100000 FEE 441843 21061 6101517 2024-02-28 16:28:33.126 2024-02-28 16:28:33.126 900000 TIP 441843 5359 6101536 2024-02-28 16:29:27.717 2024-02-28 16:29:27.717 7700 FEE 442195 8380 6101537 2024-02-28 16:29:27.717 2024-02-28 16:29:27.717 69300 TIP 442195 10112 6101545 2024-02-28 16:30:02.344 2024-02-28 16:30:02.344 1000 FEE 442335 18321 6101557 2024-02-28 16:30:29.474 2024-02-28 16:30:29.474 1000 FEE 442341 14785 6101577 2024-02-28 16:31:56.1 2024-02-28 16:31:56.1 7700 FEE 442298 1236 6101578 2024-02-28 16:31:56.1 2024-02-28 16:31:56.1 69300 TIP 442298 18984 6101587 2024-02-28 16:31:57.122 2024-02-28 16:31:57.122 7700 FEE 442298 2681 6101588 2024-02-28 16:31:57.122 2024-02-28 16:31:57.122 69300 TIP 442298 16867 6101593 2024-02-28 16:31:57.354 2024-02-28 16:31:57.354 7700 FEE 442298 20525 6101594 2024-02-28 16:31:57.354 2024-02-28 16:31:57.354 69300 TIP 442298 15526 6101640 2024-02-28 16:33:28.302 2024-02-28 16:33:28.302 2100 FEE 442229 9843 6101641 2024-02-28 16:33:28.302 2024-02-28 16:33:28.302 18900 TIP 442229 1120 6101651 2024-02-28 16:34:14.112 2024-02-28 16:34:14.112 400 FEE 442316 19507 6101652 2024-02-28 16:34:14.112 2024-02-28 16:34:14.112 3600 TIP 442316 18663 6101673 2024-02-28 16:35:26.584 2024-02-28 16:35:26.584 2100 FEE 442342 10096 6101674 2024-02-28 16:35:26.584 2024-02-28 16:35:26.584 18900 TIP 442342 5597 6101695 2024-02-28 16:36:54.771 2024-02-28 16:36:54.771 10000 FEE 440890 19581 6101696 2024-02-28 16:36:54.771 2024-02-28 16:36:54.771 90000 TIP 440890 7553 6101704 2024-02-28 16:37:22.448 2024-02-28 16:37:22.448 1000 FEE 442348 9356 6101705 2024-02-28 16:37:22.448 2024-02-28 16:37:22.448 9000 TIP 442348 18409 6101725 2024-02-28 16:37:38.711 2024-02-28 16:37:38.711 500 FEE 442333 11038 6101726 2024-02-28 16:37:38.711 2024-02-28 16:37:38.711 4500 TIP 442333 8080 6101730 2024-02-28 16:37:40.695 2024-02-28 16:37:40.695 1000 FEE 441896 17050 6101731 2024-02-28 16:37:40.695 2024-02-28 16:37:40.695 9000 TIP 441896 21060 6101786 2024-02-28 16:40:18.881 2024-02-28 16:40:18.881 1000 FEE 442357 14651 6101788 2024-02-28 16:40:25.128 2024-02-28 16:40:25.128 2100 FEE 442354 6578 6101789 2024-02-28 16:40:25.128 2024-02-28 16:40:25.128 18900 TIP 442354 960 6101795 2024-02-28 16:41:13.87 2024-02-28 16:41:13.87 2100 FEE 442084 977 6101796 2024-02-28 16:41:13.87 2024-02-28 16:41:13.87 18900 TIP 442084 21072 6101809 2024-02-28 16:41:20.987 2024-02-28 16:41:20.987 2100 FEE 442283 21620 6101810 2024-02-28 16:41:20.987 2024-02-28 16:41:20.987 18900 TIP 442283 16353 6101845 2024-02-28 16:43:33.418 2024-02-28 16:43:33.418 100 FEE 442339 11798 6101846 2024-02-28 16:43:33.418 2024-02-28 16:43:33.418 900 TIP 442339 6749 6101861 2024-02-28 16:44:41.566 2024-02-28 16:44:41.566 100 FEE 442298 9276 6101862 2024-02-28 16:44:41.566 2024-02-28 16:44:41.566 900 TIP 442298 21040 6101884 2024-02-28 16:48:19.26 2024-02-28 16:48:19.26 1000 FEE 442369 18446 6101886 2024-02-28 16:48:35.465 2024-02-28 16:48:35.465 1000 FEE 442370 18423 6101901 2024-02-28 16:50:27.849 2024-02-28 16:50:27.849 1000 FEE 442360 18449 6101902 2024-02-28 16:50:27.849 2024-02-28 16:50:27.849 9000 TIP 442360 2196 6101917 2024-02-28 16:50:30.996 2024-02-28 16:50:30.996 1000 FEE 442360 20564 6101918 2024-02-28 16:50:30.996 2024-02-28 16:50:30.996 9000 TIP 442360 17050 6101919 2024-02-28 16:50:32.054 2024-02-28 16:50:32.054 1000 FEE 442360 6202 6101006 2024-02-28 15:53:02.213 2024-02-28 15:53:02.213 1000 STREAM 141924 2748 6101130 2024-02-28 16:03:02.28 2024-02-28 16:03:02.28 1000 STREAM 141924 1478 6101476 2024-02-28 16:24:02.655 2024-02-28 16:24:02.655 1000 STREAM 141924 8133 6101619 2024-02-28 16:33:02.693 2024-02-28 16:33:02.693 1000 STREAM 141924 697 6101752 2024-02-28 16:39:02.741 2024-02-28 16:39:02.741 1000 STREAM 141924 18919 6101757 2024-02-28 16:40:02.752 2024-02-28 16:40:02.752 1000 STREAM 141924 8416 6101794 2024-02-28 16:41:02.764 2024-02-28 16:41:02.764 1000 STREAM 141924 649 6101823 2024-02-28 16:42:02.781 2024-02-28 16:42:02.781 1000 STREAM 141924 21248 6101119 2024-02-28 16:02:14.899 2024-02-28 16:02:14.899 1000 FEE 442269 7766 6101121 2024-02-28 16:02:32.267 2024-02-28 16:02:32.267 3100 FEE 442147 20669 6101122 2024-02-28 16:02:32.267 2024-02-28 16:02:32.267 27900 TIP 442147 20108 6101141 2024-02-28 16:03:50.894 2024-02-28 16:03:50.894 1000 FEE 442263 1394 6101142 2024-02-28 16:03:50.894 2024-02-28 16:03:50.894 9000 TIP 442263 1173 6101156 2024-02-28 16:05:30.389 2024-02-28 16:05:30.389 10000 FEE 442023 18524 6101157 2024-02-28 16:05:30.389 2024-02-28 16:05:30.389 90000 TIP 442023 13781 6101168 2024-02-28 16:06:10.252 2024-02-28 16:06:10.252 1000 FEE 442280 7979 6101181 2024-02-28 16:07:32.242 2024-02-28 16:07:32.242 3100 FEE 442247 18774 6101120 2024-02-28 16:02:25.462 2024-02-28 16:02:25.462 1000 POLL 442163 18556 6101139 2024-02-28 16:03:48.623 2024-02-28 16:03:48.623 1000 FEE 442263 16879 6101140 2024-02-28 16:03:48.623 2024-02-28 16:03:48.623 9000 TIP 442263 5791 6101143 2024-02-28 16:04:00.749 2024-02-28 16:04:00.749 1000 FEE 442275 21386 6101149 2024-02-28 16:04:47.077 2024-02-28 16:04:47.077 0 FEE 442274 5171 6101174 2024-02-28 16:06:37.314 2024-02-28 16:06:37.314 3100 FEE 442163 20073 6101175 2024-02-28 16:06:37.314 2024-02-28 16:06:37.314 27900 TIP 442163 21416 6101200 2024-02-28 16:08:58.35 2024-02-28 16:08:58.35 10000 FEE 442283 17638 6101201 2024-02-28 16:08:58.35 2024-02-28 16:08:58.35 90000 TIP 442283 8498 6101205 2024-02-28 16:09:11.635 2024-02-28 16:09:11.635 1000 FEE 442285 20434 6101215 2024-02-28 16:10:42.281 2024-02-28 16:10:42.281 2100 FEE 441928 705 6101216 2024-02-28 16:10:42.281 2024-02-28 16:10:42.281 18900 TIP 441928 946 6101221 2024-02-28 16:11:32.013 2024-02-28 16:11:32.013 0 FEE 442279 10862 6101222 2024-02-28 16:11:37.955 2024-02-28 16:11:37.955 10000 FEE 442206 1209 6101223 2024-02-28 16:11:37.955 2024-02-28 16:11:37.955 90000 TIP 442206 10409 6101239 2024-02-28 16:12:57.615 2024-02-28 16:12:57.615 1000 FEE 442292 11075 6101243 2024-02-28 16:13:04.52 2024-02-28 16:13:04.52 7700 FEE 442237 21274 6101244 2024-02-28 16:13:04.52 2024-02-28 16:13:04.52 69300 TIP 442237 18412 6101274 2024-02-28 16:15:09.46 2024-02-28 16:15:09.46 1000 FEE 442297 7847 6101282 2024-02-28 16:15:57.975 2024-02-28 16:15:57.975 400 FEE 442296 14213 6101283 2024-02-28 16:15:57.975 2024-02-28 16:15:57.975 3600 TIP 442296 2327 6101288 2024-02-28 16:15:58.7 2024-02-28 16:15:58.7 200 FEE 442296 18209 6101289 2024-02-28 16:15:58.7 2024-02-28 16:15:58.7 1800 TIP 442296 9336 6101320 2024-02-28 16:18:07.535 2024-02-28 16:18:07.535 7700 FEE 442298 16505 6101321 2024-02-28 16:18:07.535 2024-02-28 16:18:07.535 69300 TIP 442298 20185 6101334 2024-02-28 16:18:10.246 2024-02-28 16:18:10.246 1000 FEE 441671 19500 6101335 2024-02-28 16:18:10.246 2024-02-28 16:18:10.246 9000 TIP 441671 8570 6101366 2024-02-28 16:19:36.108 2024-02-28 16:19:36.108 6900 FEE 442313 19622 6101367 2024-02-28 16:19:36.108 2024-02-28 16:19:36.108 62100 TIP 442313 9169 6101372 2024-02-28 16:19:36.488 2024-02-28 16:19:36.488 6900 FEE 442313 9099 6101373 2024-02-28 16:19:36.488 2024-02-28 16:19:36.488 62100 TIP 442313 19333 6101380 2024-02-28 16:19:40.507 2024-02-28 16:19:40.507 1000 FEE 442313 13547 6101381 2024-02-28 16:19:40.507 2024-02-28 16:19:40.507 9000 TIP 442313 12769 6101391 2024-02-28 16:20:25.754 2024-02-28 16:20:25.754 0 FEE 442314 21139 6101398 2024-02-28 16:20:47.917 2024-02-28 16:20:47.917 2100 FEE 441864 5978 6101399 2024-02-28 16:20:47.917 2024-02-28 16:20:47.917 18900 TIP 441864 2016 6101410 2024-02-28 16:20:51 2024-02-28 16:20:51 7700 FEE 442313 6602 6101144 2024-02-28 16:04:04.016 2024-02-28 16:04:04.016 1000 STREAM 141924 9246 6101182 2024-02-28 16:07:32.242 2024-02-28 16:07:32.242 27900 TIP 442247 13798 6101183 2024-02-28 16:07:51.679 2024-02-28 16:07:51.679 1000 FEE 442283 14385 6101195 2024-02-28 16:08:32.053 2024-02-28 16:08:32.053 1000 FEE 442284 19541 6101211 2024-02-28 16:10:11.413 2024-02-28 16:10:11.413 0 FEE 442279 6160 6101213 2024-02-28 16:10:38.291 2024-02-28 16:10:38.291 2100 FEE 441863 5661 6101214 2024-02-28 16:10:38.291 2024-02-28 16:10:38.291 18900 TIP 441863 20922 6101228 2024-02-28 16:11:53.266 2024-02-28 16:11:53.266 0 FEE 442279 1000 6101234 2024-02-28 16:12:30.662 2024-02-28 16:12:30.662 2100 FEE 442283 5444 6101235 2024-02-28 16:12:30.662 2024-02-28 16:12:30.662 18900 TIP 442283 18403 6101249 2024-02-28 16:13:34.864 2024-02-28 16:13:34.864 10000 FEE 441964 1772 6101250 2024-02-28 16:13:34.864 2024-02-28 16:13:34.864 90000 TIP 441964 4570 6101279 2024-02-28 16:15:53.562 2024-02-28 16:15:53.562 1000 FEE 442301 20162 6101303 2024-02-28 16:16:35.039 2024-02-28 16:16:35.039 1000 FEE 442304 3347 6101312 2024-02-28 16:18:05.389 2024-02-28 16:18:05.389 7700 FEE 442298 16432 6101313 2024-02-28 16:18:05.389 2024-02-28 16:18:05.389 69300 TIP 442298 20120 6101318 2024-02-28 16:18:07.42 2024-02-28 16:18:07.42 7700 FEE 442298 1454 6101319 2024-02-28 16:18:07.42 2024-02-28 16:18:07.42 69300 TIP 442298 19147 6101328 2024-02-28 16:18:07.97 2024-02-28 16:18:07.97 7700 FEE 442298 12334 6101329 2024-02-28 16:18:07.97 2024-02-28 16:18:07.97 69300 TIP 442298 9551 6101330 2024-02-28 16:18:08.199 2024-02-28 16:18:08.199 15400 FEE 442298 18919 6101331 2024-02-28 16:18:08.199 2024-02-28 16:18:08.199 138600 TIP 442298 1209 6101340 2024-02-28 16:18:12.037 2024-02-28 16:18:12.037 1000 FEE 441671 19016 6101341 2024-02-28 16:18:12.037 2024-02-28 16:18:12.037 9000 TIP 441671 14663 6101382 2024-02-28 16:19:50.498 2024-02-28 16:19:50.498 1000 FEE 442314 9529 6101402 2024-02-28 16:20:50.639 2024-02-28 16:20:50.639 7700 FEE 442313 16214 6101403 2024-02-28 16:20:50.639 2024-02-28 16:20:50.639 69300 TIP 442313 12291 6101418 2024-02-28 16:20:58.76 2024-02-28 16:20:58.76 2100 FEE 442314 20751 6101419 2024-02-28 16:20:58.76 2024-02-28 16:20:58.76 18900 TIP 442314 2703 6101427 2024-02-28 16:21:13.459 2024-02-28 16:21:13.459 500 FEE 442311 20157 6101428 2024-02-28 16:21:13.459 2024-02-28 16:21:13.459 4500 TIP 442311 9916 6101431 2024-02-28 16:21:21.502 2024-02-28 16:21:21.502 1000 FEE 442317 20775 6101434 2024-02-28 16:21:35.988 2024-02-28 16:21:35.988 0 FEE 442309 20889 6101486 2024-02-28 16:25:31.21 2024-02-28 16:25:31.21 2100 FEE 442325 20972 6101487 2024-02-28 16:25:31.21 2024-02-28 16:25:31.21 18900 TIP 442325 20573 6101490 2024-02-28 16:25:38.249 2024-02-28 16:25:38.249 100000 FEE 442283 14152 6101491 2024-02-28 16:25:38.249 2024-02-28 16:25:38.249 900000 TIP 442283 15703 6101497 2024-02-28 16:26:06.079 2024-02-28 16:26:06.079 1000 FEE 442326 12606 6101505 2024-02-28 16:27:18.075 2024-02-28 16:27:18.075 21000 FEE 442328 632 6101511 2024-02-28 16:27:43.013 2024-02-28 16:27:43.013 10000 FEE 441800 4574 6101512 2024-02-28 16:27:43.013 2024-02-28 16:27:43.013 90000 TIP 441800 11942 6101513 2024-02-28 16:27:49.918 2024-02-28 16:27:49.918 2100 FEE 442307 20137 6101514 2024-02-28 16:27:49.918 2024-02-28 16:27:49.918 18900 TIP 442307 18865 6101524 2024-02-28 16:29:01.522 2024-02-28 16:29:01.522 1000 FEE 442283 21591 6101525 2024-02-28 16:29:01.522 2024-02-28 16:29:01.522 9000 TIP 442283 21418 6101530 2024-02-28 16:29:02.537 2024-02-28 16:29:02.537 1000 FEE 442283 15536 6101531 2024-02-28 16:29:02.537 2024-02-28 16:29:02.537 9000 TIP 442283 2681 6101550 2024-02-28 16:30:19.442 2024-02-28 16:30:19.442 100000 FEE 442339 20099 6101567 2024-02-28 16:31:46.806 2024-02-28 16:31:46.806 2100 FEE 441843 1064 6101568 2024-02-28 16:31:46.806 2024-02-28 16:31:46.806 18900 TIP 441843 2162 6101589 2024-02-28 16:31:57.149 2024-02-28 16:31:57.149 7700 FEE 442298 21520 6101590 2024-02-28 16:31:57.149 2024-02-28 16:31:57.149 69300 TIP 442298 20302 6101595 2024-02-28 16:32:03.614 2024-02-28 16:32:03.614 10000 FEE 442245 7998 6101596 2024-02-28 16:32:03.614 2024-02-28 16:32:03.614 90000 TIP 442245 21509 6101604 2024-02-28 16:32:40.427 2024-02-28 16:32:40.427 1000 FEE 442328 19381 6101605 2024-02-28 16:32:40.427 2024-02-28 16:32:40.427 9000 TIP 442328 7119 6101622 2024-02-28 16:33:06.764 2024-02-28 16:33:06.764 3300 FEE 442325 4059 6101623 2024-02-28 16:33:06.764 2024-02-28 16:33:06.764 29700 TIP 442325 18380 6101628 2024-02-28 16:33:13.201 2024-02-28 16:33:13.201 1000 FEE 442346 21463 6101632 2024-02-28 16:33:25.276 2024-02-28 16:33:25.276 1000 FEE 442328 4459 6101633 2024-02-28 16:33:25.276 2024-02-28 16:33:25.276 9000 TIP 442328 1047 6101644 2024-02-28 16:33:47.769 2024-02-28 16:33:47.769 3100 FEE 442338 15690 6101645 2024-02-28 16:33:47.769 2024-02-28 16:33:47.769 27900 TIP 442338 659 6101657 2024-02-28 16:34:41.803 2024-02-28 16:34:41.803 2100 FEE 442329 1697 6101658 2024-02-28 16:34:41.803 2024-02-28 16:34:41.803 18900 TIP 442329 1673 6101669 2024-02-28 16:35:19.869 2024-02-28 16:35:19.869 5700 FEE 442298 18667 6101670 2024-02-28 16:35:19.869 2024-02-28 16:35:19.869 51300 TIP 442298 3683 6101693 2024-02-28 16:36:52.381 2024-02-28 16:36:52.381 500 FEE 442096 16424 6101694 2024-02-28 16:36:52.381 2024-02-28 16:36:52.381 4500 TIP 442096 1213 6101716 2024-02-28 16:37:26.534 2024-02-28 16:37:26.534 2100 FEE 442286 11716 6101717 2024-02-28 16:37:26.534 2024-02-28 16:37:26.534 18900 TIP 442286 5487 6101764 2024-02-28 16:40:05.812 2024-02-28 16:40:05.812 1000 FEE 442350 876 6101765 2024-02-28 16:40:05.812 2024-02-28 16:40:05.812 9000 TIP 442350 21437 6101772 2024-02-28 16:40:12.738 2024-02-28 16:40:12.738 10000 FEE 442298 21386 6101773 2024-02-28 16:40:12.738 2024-02-28 16:40:12.738 90000 TIP 442298 15282 6101784 2024-02-28 16:40:14.734 2024-02-28 16:40:14.734 1000 FEE 442347 14705 6101785 2024-02-28 16:40:14.734 2024-02-28 16:40:14.734 9000 TIP 442347 652 6101811 2024-02-28 16:41:26.423 2024-02-28 16:41:26.423 2100 FEE 442170 10536 6101812 2024-02-28 16:41:26.423 2024-02-28 16:41:26.423 18900 TIP 442170 19660 6101813 2024-02-28 16:41:27.697 2024-02-28 16:41:27.697 2100 FEE 442191 20911 6101814 2024-02-28 16:41:27.697 2024-02-28 16:41:27.697 18900 TIP 442191 2757 6101831 2024-02-28 16:42:26.224 2024-02-28 16:42:26.224 3300 FEE 442287 8168 6101832 2024-02-28 16:42:26.224 2024-02-28 16:42:26.224 29700 TIP 442287 21064 6101841 2024-02-28 16:43:13.748 2024-02-28 16:43:13.748 1000 FEE 442362 14818 6101847 2024-02-28 16:44:02.206 2024-02-28 16:44:02.206 2100 FEE 442356 15719 6101848 2024-02-28 16:44:02.206 2024-02-28 16:44:02.206 18900 TIP 442356 20816 6101850 2024-02-28 16:44:17.781 2024-02-28 16:44:17.781 1000 FEE 442363 5565 6101851 2024-02-28 16:44:19.757 2024-02-28 16:44:19.757 100 FEE 442023 19911 6101852 2024-02-28 16:44:19.757 2024-02-28 16:44:19.757 900 TIP 442023 797 6101859 2024-02-28 16:44:41.054 2024-02-28 16:44:41.054 100 FEE 442298 9916 6101860 2024-02-28 16:44:41.054 2024-02-28 16:44:41.054 900 TIP 442298 19007 6101864 2024-02-28 16:44:50.64 2024-02-28 16:44:50.64 100 FEE 441782 8133 6101865 2024-02-28 16:44:50.64 2024-02-28 16:44:50.64 900 TIP 441782 19637 6101869 2024-02-28 16:45:27.455 2024-02-28 16:45:27.455 1000 FEE 442365 15521 6101881 2024-02-28 16:47:51.973 2024-02-28 16:47:51.973 21000 FEE 442367 19910 6101944 2024-02-28 16:51:53.758 2024-02-28 16:51:53.758 100000 FEE 442378 11240 6101951 2024-02-28 16:52:45.624 2024-02-28 16:52:45.624 0 FEE 442380 21314 6101960 2024-02-28 16:53:39.023 2024-02-28 16:53:39.023 1000 FEE 442382 16556 6101974 2024-02-28 16:54:25.354 2024-02-28 16:54:25.354 100 FEE 442298 7989 6101975 2024-02-28 16:54:25.354 2024-02-28 16:54:25.354 900 TIP 442298 9863 6101981 2024-02-28 16:54:41.984 2024-02-28 16:54:41.984 2100 FEE 442185 7877 6101982 2024-02-28 16:54:41.984 2024-02-28 16:54:41.984 18900 TIP 442185 6149 6101991 2024-02-28 16:54:46.397 2024-02-28 16:54:46.397 2100 FEE 442211 4388 6101217 2024-02-28 16:10:58.029 2024-02-28 16:10:58.029 1000 FEE 442286 5825 6101231 2024-02-28 16:12:08.423 2024-02-28 16:12:08.423 2100 FEE 442084 15488 6101232 2024-02-28 16:12:08.423 2024-02-28 16:12:08.423 18900 TIP 442084 795 6101256 2024-02-28 16:13:51.727 2024-02-28 16:13:51.727 5000 FEE 441843 683 6101257 2024-02-28 16:13:51.727 2024-02-28 16:13:51.727 45000 TIP 441843 891 6101268 2024-02-28 16:15:05.837 2024-02-28 16:15:05.837 1000 FEE 441769 20353 6101269 2024-02-28 16:15:05.837 2024-02-28 16:15:05.837 9000 TIP 441769 13798 6101286 2024-02-28 16:15:58.489 2024-02-28 16:15:58.489 400 FEE 442296 9450 6101287 2024-02-28 16:15:58.489 2024-02-28 16:15:58.489 3600 TIP 442296 9275 6101332 2024-02-28 16:18:08.545 2024-02-28 16:18:08.545 15400 FEE 442298 641 6101333 2024-02-28 16:18:08.545 2024-02-28 16:18:08.545 138600 TIP 442298 5825 6101342 2024-02-28 16:18:16.802 2024-02-28 16:18:16.802 1000 FEE 442309 16954 6101345 2024-02-28 16:18:32.32 2024-02-28 16:18:32.32 1000 FEE 442310 20381 6101346 2024-02-28 16:18:44.968 2024-02-28 16:18:44.968 6900 FEE 442298 8506 6101347 2024-02-28 16:18:44.968 2024-02-28 16:18:44.968 62100 TIP 442298 12483 6101376 2024-02-28 16:19:36.757 2024-02-28 16:19:36.757 6900 FEE 442313 4984 6101377 2024-02-28 16:19:36.757 2024-02-28 16:19:36.757 62100 TIP 442313 5794 6101392 2024-02-28 16:20:27.693 2024-02-28 16:20:27.693 0 FEE 442309 21166 6101400 2024-02-28 16:20:50.469 2024-02-28 16:20:50.469 7700 FEE 442313 21072 6101401 2024-02-28 16:20:50.469 2024-02-28 16:20:50.469 69300 TIP 442313 8459 6101437 2024-02-28 16:21:54.916 2024-02-28 16:21:54.916 2100 FEE 441853 795 6101438 2024-02-28 16:21:54.916 2024-02-28 16:21:54.916 18900 TIP 441853 21393 6101447 2024-02-28 16:22:24.051 2024-02-28 16:22:24.051 2100 FEE 441869 19138 6101448 2024-02-28 16:22:24.051 2024-02-28 16:22:24.051 18900 TIP 441869 674 6101458 2024-02-28 16:23:08.987 2024-02-28 16:23:08.987 3300 FEE 442260 19142 6101459 2024-02-28 16:23:08.987 2024-02-28 16:23:08.987 29700 TIP 442260 18731 6101460 2024-02-28 16:23:09.072 2024-02-28 16:23:09.072 3300 FEE 442260 9353 6101461 2024-02-28 16:23:09.072 2024-02-28 16:23:09.072 29700 TIP 442260 9844 6101478 2024-02-28 16:24:37.235 2024-02-28 16:24:37.235 1000 FEE 442321 8242 6101480 2024-02-28 16:24:58.465 2024-02-28 16:24:58.465 10000 FEE 442323 4624 6101482 2024-02-28 16:25:22.805 2024-02-28 16:25:22.805 1000 FEE 442324 19462 6101498 2024-02-28 16:26:51.279 2024-02-28 16:26:51.279 1000 FEE 442327 18344 6101548 2024-02-28 16:30:10.183 2024-02-28 16:30:10.183 100000 FEE 442337 21401 6101551 2024-02-28 16:30:20.421 2024-02-28 16:30:20.421 1000 FEE 442340 2576 6101554 2024-02-28 16:30:25.622 2024-02-28 16:30:25.622 1000 POLL 442163 19332 6101585 2024-02-28 16:31:56.855 2024-02-28 16:31:56.855 7700 FEE 442298 8541 6101586 2024-02-28 16:31:56.855 2024-02-28 16:31:56.855 69300 TIP 442298 11561 6101618 2024-02-28 16:32:47.426 2024-02-28 16:32:47.426 1000 FEE 442345 20073 6101626 2024-02-28 16:33:07.765 2024-02-28 16:33:07.765 3300 FEE 442325 16848 6101627 2024-02-28 16:33:07.765 2024-02-28 16:33:07.765 29700 TIP 442325 21218 6101630 2024-02-28 16:33:24.895 2024-02-28 16:33:24.895 1000 FEE 442328 14195 6101631 2024-02-28 16:33:24.895 2024-02-28 16:33:24.895 9000 TIP 442328 2502 6101637 2024-02-28 16:33:27.412 2024-02-28 16:33:27.412 2100 FEE 441713 18138 6101638 2024-02-28 16:33:27.412 2024-02-28 16:33:27.412 18900 TIP 441713 891 6101639 2024-02-28 16:33:27.733 2024-02-28 16:33:27.733 1000 FEE 442348 19836 6101671 2024-02-28 16:35:21.784 2024-02-28 16:35:21.784 5700 FEE 442163 21563 6101672 2024-02-28 16:35:21.784 2024-02-28 16:35:21.784 51300 TIP 442163 14280 6101677 2024-02-28 16:35:54.043 2024-02-28 16:35:54.043 2100 FEE 442288 21314 6101678 2024-02-28 16:35:54.043 2024-02-28 16:35:54.043 18900 TIP 442288 16839 6101680 2024-02-28 16:36:23.331 2024-02-28 16:36:23.331 1000 FEE 442350 20525 6101683 2024-02-28 16:36:29.124 2024-02-28 16:36:29.124 2100 FEE 442328 18231 6101684 2024-02-28 16:36:29.124 2024-02-28 16:36:29.124 18900 TIP 442328 19661 6101701 2024-02-28 16:37:04.054 2024-02-28 16:37:04.054 2100 FEE 442191 4521 6101702 2024-02-28 16:37:04.054 2024-02-28 16:37:04.054 18900 TIP 442191 9611 6101728 2024-02-28 16:37:40.546 2024-02-28 16:37:40.546 1000 FEE 441896 14080 6101729 2024-02-28 16:37:40.546 2024-02-28 16:37:40.546 9000 TIP 441896 18640 6101732 2024-02-28 16:37:40.821 2024-02-28 16:37:40.821 1000 FEE 441896 11621 6101733 2024-02-28 16:37:40.821 2024-02-28 16:37:40.821 9000 TIP 441896 20713 6101736 2024-02-28 16:37:41.113 2024-02-28 16:37:41.113 1000 FEE 441896 18896 6101737 2024-02-28 16:37:41.113 2024-02-28 16:37:41.113 9000 TIP 441896 19576 6101743 2024-02-28 16:37:50.159 2024-02-28 16:37:50.159 1000 POLL 441660 9 6101776 2024-02-28 16:40:13.285 2024-02-28 16:40:13.285 1000 FEE 442347 9109 6101777 2024-02-28 16:40:13.285 2024-02-28 16:40:13.285 9000 TIP 442347 697 6101799 2024-02-28 16:41:15.095 2024-02-28 16:41:15.095 2100 FEE 442065 21026 6101800 2024-02-28 16:41:15.095 2024-02-28 16:41:15.095 18900 TIP 442065 19848 6101805 2024-02-28 16:41:17.638 2024-02-28 16:41:17.638 100 FEE 442226 638 6101806 2024-02-28 16:41:17.638 2024-02-28 16:41:17.638 900 TIP 442226 2061 6101817 2024-02-28 16:41:35.531 2024-02-28 16:41:35.531 2100 FEE 442358 7998 6101818 2024-02-28 16:41:35.531 2024-02-28 16:41:35.531 18900 TIP 442358 4102 6101828 2024-02-28 16:42:20.166 2024-02-28 16:42:20.166 3300 FEE 442225 21263 6101829 2024-02-28 16:42:20.166 2024-02-28 16:42:20.166 29700 TIP 442225 13217 6101843 2024-02-28 16:43:24.423 2024-02-28 16:43:24.423 100 FEE 442358 5708 6101844 2024-02-28 16:43:24.423 2024-02-28 16:43:24.423 900 TIP 442358 19572 6101896 2024-02-28 16:49:40.861 2024-02-28 16:49:40.861 3100 FEE 442343 2039 6101897 2024-02-28 16:49:40.861 2024-02-28 16:49:40.861 27900 TIP 442343 697 6101900 2024-02-28 16:50:08.186 2024-02-28 16:50:08.186 1000 FEE 442372 21589 6101926 2024-02-28 16:50:36.198 2024-02-28 16:50:36.198 27900 FEE 442325 20852 6101927 2024-02-28 16:50:36.198 2024-02-28 16:50:36.198 251100 TIP 442325 21482 6101956 2024-02-28 16:53:04.191 2024-02-28 16:53:04.191 10000 FEE 442023 1741 6101957 2024-02-28 16:53:04.191 2024-02-28 16:53:04.191 90000 TIP 442023 17673 6101958 2024-02-28 16:53:15.813 2024-02-28 16:53:15.813 7700 FEE 441866 14308 6101959 2024-02-28 16:53:15.813 2024-02-28 16:53:15.813 69300 TIP 441866 21444 6101962 2024-02-28 16:54:00.355 2024-02-28 16:54:00.355 1000 FEE 442383 15624 6101965 2024-02-28 16:54:13.114 2024-02-28 16:54:13.114 2100 FEE 441983 10638 6101966 2024-02-28 16:54:13.114 2024-02-28 16:54:13.114 18900 TIP 441983 9363 6101969 2024-02-28 16:54:17.233 2024-02-28 16:54:17.233 1000 FEE 442385 10591 6101976 2024-02-28 16:54:25.511 2024-02-28 16:54:25.511 900 FEE 442298 21103 6101977 2024-02-28 16:54:25.511 2024-02-28 16:54:25.511 8100 TIP 442298 19843 6101979 2024-02-28 16:54:30.472 2024-02-28 16:54:30.472 2100 FEE 442177 19664 6101980 2024-02-28 16:54:30.472 2024-02-28 16:54:30.472 18900 TIP 442177 10393 6102006 2024-02-28 16:55:06.257 2024-02-28 16:55:06.257 1000 FEE 442388 2264 6102030 2024-02-28 16:56:30.086 2024-02-28 16:56:30.086 1000 FEE 442392 20669 6102037 2024-02-28 16:56:45.271 2024-02-28 16:56:45.271 5000 FEE 442370 4984 6102038 2024-02-28 16:56:45.271 2024-02-28 16:56:45.271 45000 TIP 442370 638 6102043 2024-02-28 16:56:46.361 2024-02-28 16:56:46.361 2500 FEE 442370 2583 6102044 2024-02-28 16:56:46.361 2024-02-28 16:56:46.361 22500 TIP 442370 18269 6102057 2024-02-28 16:57:43.728 2024-02-28 16:57:43.728 1000 FEE 442397 9169 6102061 2024-02-28 16:58:35.879 2024-02-28 16:58:35.879 2100 FEE 442254 12272 6102062 2024-02-28 16:58:35.879 2024-02-28 16:58:35.879 18900 TIP 442254 21079 6101298 2024-02-28 16:16:03.672 2024-02-28 16:16:03.672 1000 STREAM 141924 964 6101302 2024-02-28 16:16:04.713 2024-02-28 16:16:04.713 1000 FEE 442303 1198 6101304 2024-02-28 16:16:43.395 2024-02-28 16:16:43.395 0 FEE 442304 9843 6101306 2024-02-28 16:17:06.334 2024-02-28 16:17:06.334 1000 FEE 442305 18829 6101316 2024-02-28 16:18:05.781 2024-02-28 16:18:05.781 7700 FEE 442298 21194 6101317 2024-02-28 16:18:05.781 2024-02-28 16:18:05.781 69300 TIP 442298 21571 6101336 2024-02-28 16:18:10.83 2024-02-28 16:18:10.83 1000 FEE 441671 20687 6101337 2024-02-28 16:18:10.83 2024-02-28 16:18:10.83 9000 TIP 441671 18449 6101358 2024-02-28 16:18:57.757 2024-02-28 16:18:57.757 0 FEE 442308 997 6101374 2024-02-28 16:19:36.599 2024-02-28 16:19:36.599 6900 FEE 442313 15103 6101375 2024-02-28 16:19:36.599 2024-02-28 16:19:36.599 62100 TIP 442313 17316 6101383 2024-02-28 16:19:57.853 2024-02-28 16:19:57.853 1000 FEE 442313 21387 6101384 2024-02-28 16:19:57.853 2024-02-28 16:19:57.853 9000 TIP 442313 876 6101395 2024-02-28 16:20:39.006 2024-02-28 16:20:39.006 10000 FEE 441310 721 6101396 2024-02-28 16:20:39.006 2024-02-28 16:20:39.006 90000 TIP 441310 10530 6101404 2024-02-28 16:20:50.749 2024-02-28 16:20:50.749 7700 FEE 442313 1307 6101405 2024-02-28 16:20:50.749 2024-02-28 16:20:50.749 69300 TIP 442313 19911 6101408 2024-02-28 16:20:50.968 2024-02-28 16:20:50.968 7700 FEE 442313 16145 6101409 2024-02-28 16:20:50.968 2024-02-28 16:20:50.968 69300 TIP 442313 679 6101423 2024-02-28 16:21:04.971 2024-02-28 16:21:04.971 3100 FEE 442304 10693 6101424 2024-02-28 16:21:04.971 2024-02-28 16:21:04.971 27900 TIP 442304 13575 6101435 2024-02-28 16:21:47.616 2024-02-28 16:21:47.616 2100 FEE 441867 652 6101436 2024-02-28 16:21:47.616 2024-02-28 16:21:47.616 18900 TIP 441867 9365 6101456 2024-02-28 16:23:06.066 2024-02-28 16:23:06.066 6600 FEE 442303 20613 6101457 2024-02-28 16:23:06.066 2024-02-28 16:23:06.066 59400 TIP 442303 13987 6101466 2024-02-28 16:23:17.97 2024-02-28 16:23:17.97 100 FEE 442191 19375 6101467 2024-02-28 16:23:17.97 2024-02-28 16:23:17.97 900 TIP 442191 21401 6101469 2024-02-28 16:23:31.898 2024-02-28 16:23:31.898 10000 FEE 441896 5017 6101470 2024-02-28 16:23:31.898 2024-02-28 16:23:31.898 90000 TIP 441896 19138 6101473 2024-02-28 16:23:54.296 2024-02-28 16:23:54.296 2200 FEE 442109 20606 6101474 2024-02-28 16:23:54.296 2024-02-28 16:23:54.296 19800 TIP 442109 13781 6101494 2024-02-28 16:26:02.746 2024-02-28 16:26:02.746 0 FEE 442325 9169 6101563 2024-02-28 16:31:40.385 2024-02-28 16:31:40.385 2100 FEE 442339 19773 6101564 2024-02-28 16:31:40.385 2024-02-28 16:31:40.385 18900 TIP 442339 17513 6101614 2024-02-28 16:32:42.782 2024-02-28 16:32:42.782 10000 FEE 441944 18225 6101615 2024-02-28 16:32:42.782 2024-02-28 16:32:42.782 90000 TIP 441944 940 6101634 2024-02-28 16:33:25.507 2024-02-28 16:33:25.507 1000 FEE 442328 18363 6101635 2024-02-28 16:33:25.507 2024-02-28 16:33:25.507 9000 TIP 442328 2022 6101646 2024-02-28 16:33:49.954 2024-02-28 16:33:49.954 0 FEE 442345 1010 6101675 2024-02-28 16:35:31.352 2024-02-28 16:35:31.352 100 FEE 442205 15474 6101676 2024-02-28 16:35:31.352 2024-02-28 16:35:31.352 900 TIP 442205 2016 6101681 2024-02-28 16:36:23.58 2024-02-28 16:36:23.58 500 FEE 442084 20276 6101682 2024-02-28 16:36:23.58 2024-02-28 16:36:23.58 4500 TIP 442084 1697 6101703 2024-02-28 16:37:20.293 2024-02-28 16:37:20.293 1000 FEE 442353 19938 6101714 2024-02-28 16:37:24.004 2024-02-28 16:37:24.004 1000 FEE 442348 21624 6101715 2024-02-28 16:37:24.004 2024-02-28 16:37:24.004 9000 TIP 442348 19292 6101787 2024-02-28 16:40:24.921 2024-02-28 16:40:24.921 10000 FEE 442358 10586 6101792 2024-02-28 16:40:38.784 2024-02-28 16:40:38.784 1000 FEE 442359 18119 6101834 2024-02-28 16:42:33.424 2024-02-28 16:42:33.424 10000 FEE 442277 2620 6101835 2024-02-28 16:42:33.424 2024-02-28 16:42:33.424 90000 TIP 442277 9820 6101853 2024-02-28 16:44:26.638 2024-02-28 16:44:26.638 100 FEE 442313 20245 6101854 2024-02-28 16:44:26.638 2024-02-28 16:44:26.638 900 TIP 442313 20817 6101857 2024-02-28 16:44:29.954 2024-02-28 16:44:29.954 100 FEE 442313 8954 6101858 2024-02-28 16:44:29.954 2024-02-28 16:44:29.954 900 TIP 442313 1515 6101871 2024-02-28 16:46:08.645 2024-02-28 16:46:08.645 10000 FEE 433208 16356 6101872 2024-02-28 16:46:08.645 2024-02-28 16:46:08.645 90000 TIP 433208 18678 6101876 2024-02-28 16:46:44.624 2024-02-28 16:46:44.624 2100 FEE 442325 9337 6101877 2024-02-28 16:46:44.624 2024-02-28 16:46:44.624 18900 TIP 442325 13763 6101899 2024-02-28 16:50:05.384 2024-02-28 16:50:05.384 10000 FEE 442371 15100 6101903 2024-02-28 16:50:28.245 2024-02-28 16:50:28.245 1000 FEE 442360 20647 6101904 2024-02-28 16:50:28.245 2024-02-28 16:50:28.245 9000 TIP 442360 1291 6101905 2024-02-28 16:50:28.47 2024-02-28 16:50:28.47 100 FEE 442371 777 6101906 2024-02-28 16:50:28.47 2024-02-28 16:50:28.47 900 TIP 442371 1960 6101909 2024-02-28 16:50:28.886 2024-02-28 16:50:28.886 1000 FEE 442360 20701 6101910 2024-02-28 16:50:28.886 2024-02-28 16:50:28.886 9000 TIP 442360 7097 6101913 2024-02-28 16:50:29.604 2024-02-28 16:50:29.604 1000 FEE 442360 4323 6101379 2024-02-28 16:19:37.423 2024-02-28 16:19:37.423 900 TIP 442136 999 6101388 2024-02-28 16:20:07.253 2024-02-28 16:20:07.253 0 FEE 442313 19531 6101389 2024-02-28 16:20:09.51 2024-02-28 16:20:09.51 1000 FEE 442315 20775 6101397 2024-02-28 16:20:42.783 2024-02-28 16:20:42.783 1000 FEE 442316 14959 6101432 2024-02-28 16:21:23.755 2024-02-28 16:21:23.755 2100 FEE 441882 17411 6101433 2024-02-28 16:21:23.755 2024-02-28 16:21:23.755 18900 TIP 441882 15119 6101446 2024-02-28 16:22:17.231 2024-02-28 16:22:17.231 0 FEE 442309 17798 6101449 2024-02-28 16:22:31.67 2024-02-28 16:22:31.67 1000 FEE 442318 20817 6101451 2024-02-28 16:22:57.522 2024-02-28 16:22:57.522 100 FEE 442254 12265 6101452 2024-02-28 16:22:57.522 2024-02-28 16:22:57.522 900 TIP 442254 18448 6101454 2024-02-28 16:23:06.037 2024-02-28 16:23:06.037 3300 FEE 442303 13921 6101455 2024-02-28 16:23:06.037 2024-02-28 16:23:06.037 29700 TIP 442303 4391 6101464 2024-02-28 16:23:12.305 2024-02-28 16:23:12.305 10000 FEE 441886 712 6101465 2024-02-28 16:23:12.305 2024-02-28 16:23:12.305 90000 TIP 441886 2748 6101468 2024-02-28 16:23:26.592 2024-02-28 16:23:26.592 1000 POLL 442163 18832 6101477 2024-02-28 16:24:13.899 2024-02-28 16:24:13.899 1000 FEE 442320 651 6101501 2024-02-28 16:27:12.3 2024-02-28 16:27:12.3 400 FEE 442257 16988 6101502 2024-02-28 16:27:12.3 2024-02-28 16:27:12.3 3600 TIP 442257 9078 6101509 2024-02-28 16:27:42.188 2024-02-28 16:27:42.188 279000 FEE 442283 18865 6101510 2024-02-28 16:27:42.188 2024-02-28 16:27:42.188 2511000 TIP 442283 2195 6101521 2024-02-28 16:28:48.377 2024-02-28 16:28:48.377 1000 POLL 442163 5527 6101535 2024-02-28 16:29:21.064 2024-02-28 16:29:21.064 1000 FEE 442333 1632 6101540 2024-02-28 16:29:33.818 2024-02-28 16:29:33.818 1000 FEE 442334 3353 6101543 2024-02-28 16:29:53.374 2024-02-28 16:29:53.374 27900 FEE 442328 17106 6101544 2024-02-28 16:29:53.374 2024-02-28 16:29:53.374 251100 TIP 442328 20180 6101552 2024-02-28 16:30:25.319 2024-02-28 16:30:25.319 21000 FEE 442326 14472 6101553 2024-02-28 16:30:25.319 2024-02-28 16:30:25.319 189000 TIP 442326 20706 6101555 2024-02-28 16:30:26.635 2024-02-28 16:30:26.635 2000 FEE 442317 7983 6101556 2024-02-28 16:30:26.635 2024-02-28 16:30:26.635 18000 TIP 442317 987 6101558 2024-02-28 16:30:31.915 2024-02-28 16:30:31.915 1000 FEE 442342 11798 6101583 2024-02-28 16:31:56.659 2024-02-28 16:31:56.659 7700 FEE 442298 20108 6101584 2024-02-28 16:31:56.659 2024-02-28 16:31:56.659 69300 TIP 442298 17291 6101598 2024-02-28 16:32:39.126 2024-02-28 16:32:39.126 1000 FEE 442328 21012 6101599 2024-02-28 16:32:39.126 2024-02-28 16:32:39.126 9000 TIP 442328 8045 6101608 2024-02-28 16:32:41.301 2024-02-28 16:32:41.301 1000 FEE 442328 16270 6101609 2024-02-28 16:32:41.301 2024-02-28 16:32:41.301 9000 TIP 442328 2042 6101659 2024-02-28 16:34:54.3 2024-02-28 16:34:54.3 1000 FEE 442349 9809 6101689 2024-02-28 16:36:48.984 2024-02-28 16:36:48.984 2100 FEE 442298 720 6101690 2024-02-28 16:36:48.984 2024-02-28 16:36:48.984 18900 TIP 442298 20788 6101710 2024-02-28 16:37:23.47 2024-02-28 16:37:23.47 2100 FEE 442330 13217 6101711 2024-02-28 16:37:23.47 2024-02-28 16:37:23.47 18900 TIP 442330 15843 6101712 2024-02-28 16:37:23.799 2024-02-28 16:37:23.799 1000 FEE 442348 3686 6101713 2024-02-28 16:37:23.799 2024-02-28 16:37:23.799 9000 TIP 442348 5195 6101751 2024-02-28 16:38:32.886 2024-02-28 16:38:32.886 1000 FEE 442354 6537 6101754 2024-02-28 16:39:55.175 2024-02-28 16:39:55.175 2100 FEE 442288 964 6101755 2024-02-28 16:39:55.175 2024-02-28 16:39:55.175 18900 TIP 442288 10934 6101760 2024-02-28 16:40:05.023 2024-02-28 16:40:05.023 1000 FEE 442350 6137 6101761 2024-02-28 16:40:05.023 2024-02-28 16:40:05.023 9000 TIP 442350 1959 6101815 2024-02-28 16:41:28.777 2024-02-28 16:41:28.777 2100 FEE 441951 18556 6101816 2024-02-28 16:41:28.777 2024-02-28 16:41:28.777 18900 TIP 441951 21589 6101826 2024-02-28 16:42:19.451 2024-02-28 16:42:19.451 3300 FEE 442233 21019 6101827 2024-02-28 16:42:19.451 2024-02-28 16:42:19.451 29700 TIP 442233 9078 6101836 2024-02-28 16:42:42.505 2024-02-28 16:42:42.505 100 FEE 442325 19121 6101837 2024-02-28 16:42:42.505 2024-02-28 16:42:42.505 900 TIP 442325 8133 6101855 2024-02-28 16:44:29.71 2024-02-28 16:44:29.71 100 FEE 442313 21012 6101856 2024-02-28 16:44:29.71 2024-02-28 16:44:29.71 900 TIP 442313 9342 6101892 2024-02-28 16:49:13.533 2024-02-28 16:49:13.533 2600 FEE 442254 18321 6101893 2024-02-28 16:49:13.533 2024-02-28 16:49:13.533 23400 TIP 442254 8729 6101915 2024-02-28 16:50:30.385 2024-02-28 16:50:30.385 1000 FEE 442360 19007 6101916 2024-02-28 16:50:30.385 2024-02-28 16:50:30.385 9000 TIP 442360 2459 6101924 2024-02-28 16:50:35.77 2024-02-28 16:50:35.77 3100 FEE 442325 11967 6101925 2024-02-28 16:50:35.77 2024-02-28 16:50:35.77 27900 TIP 442325 5500 6101937 2024-02-28 16:50:53.528 2024-02-28 16:50:53.528 1000 FEE 442371 9362 6101938 2024-02-28 16:50:53.528 2024-02-28 16:50:53.528 9000 TIP 442371 10094 6101940 2024-02-28 16:51:28.694 2024-02-28 16:51:28.694 1000 POLL 442163 20006 6101947 2024-02-28 16:52:17.745 2024-02-28 16:52:17.745 1000 POLL 442163 5377 6101953 2024-02-28 16:52:52.771 2024-02-28 16:52:52.771 7700 FEE 442373 8045 6101954 2024-02-28 16:52:52.771 2024-02-28 16:52:52.771 69300 TIP 442373 18658 6101967 2024-02-28 16:54:13.133 2024-02-28 16:54:13.133 1000 POLL 442163 2101 6101970 2024-02-28 16:54:18.448 2024-02-28 16:54:18.448 10100 FEE 442163 20657 6101971 2024-02-28 16:54:18.448 2024-02-28 16:54:18.448 90900 TIP 442163 19690 6101978 2024-02-28 16:54:25.921 2024-02-28 16:54:25.921 10000 FEE 442387 2013 6101411 2024-02-28 16:20:51 2024-02-28 16:20:51 69300 TIP 442313 15336 6101414 2024-02-28 16:20:51.24 2024-02-28 16:20:51.24 7700 FEE 442313 4062 6101415 2024-02-28 16:20:51.24 2024-02-28 16:20:51.24 69300 TIP 442313 16965 6101416 2024-02-28 16:20:51.34 2024-02-28 16:20:51.34 7700 FEE 442313 12609 6101417 2024-02-28 16:20:51.34 2024-02-28 16:20:51.34 69300 TIP 442313 17891 6101441 2024-02-28 16:21:58.295 2024-02-28 16:21:58.295 900 FEE 441523 9695 6101442 2024-02-28 16:21:58.295 2024-02-28 16:21:58.295 8100 TIP 441523 4167 6101492 2024-02-28 16:25:40.74 2024-02-28 16:25:40.74 2100 FEE 442213 8985 6101493 2024-02-28 16:25:40.74 2024-02-28 16:25:40.74 18900 TIP 442213 831 6101508 2024-02-28 16:27:34.486 2024-02-28 16:27:34.486 1000 FEE 442329 18615 6101520 2024-02-28 16:28:43.643 2024-02-28 16:28:43.643 1000 FEE 442332 16970 6101526 2024-02-28 16:29:02.018 2024-02-28 16:29:02.018 1000 FEE 442283 15161 6101527 2024-02-28 16:29:02.018 2024-02-28 16:29:02.018 9000 TIP 442283 6160 6101538 2024-02-28 16:29:33.018 2024-02-28 16:29:33.018 100000 FEE 442313 1584 6101539 2024-02-28 16:29:33.018 2024-02-28 16:29:33.018 900000 TIP 442313 5775 6101541 2024-02-28 16:29:52.545 2024-02-28 16:29:52.545 3100 FEE 442328 8506 6101542 2024-02-28 16:29:52.545 2024-02-28 16:29:52.545 27900 TIP 442328 15326 6101547 2024-02-28 16:30:04.796 2024-02-28 16:30:04.796 1000 FEE 442336 17166 6101559 2024-02-28 16:30:35.832 2024-02-28 16:30:35.832 6900 FEE 442332 1401 6101560 2024-02-28 16:30:35.832 2024-02-28 16:30:35.832 62100 TIP 442332 21247 6101624 2024-02-28 16:33:06.929 2024-02-28 16:33:06.929 3300 FEE 442325 20251 6101625 2024-02-28 16:33:06.929 2024-02-28 16:33:06.929 29700 TIP 442325 16543 6101636 2024-02-28 16:33:25.84 2024-02-28 16:33:25.84 1000 FEE 442347 11898 6101655 2024-02-28 16:34:36.343 2024-02-28 16:34:36.343 2100 FEE 442318 1180 6101656 2024-02-28 16:34:36.343 2024-02-28 16:34:36.343 18900 TIP 442318 21589 6101663 2024-02-28 16:35:10.48 2024-02-28 16:35:10.48 5700 FEE 442325 8459 6101664 2024-02-28 16:35:10.48 2024-02-28 16:35:10.48 51300 TIP 442325 20710 6101665 2024-02-28 16:35:13.395 2024-02-28 16:35:13.395 5700 FEE 442313 19462 6101666 2024-02-28 16:35:13.395 2024-02-28 16:35:13.395 51300 TIP 442313 3456 6101697 2024-02-28 16:36:57.615 2024-02-28 16:36:57.615 2100 FEE 442170 7986 6101698 2024-02-28 16:36:57.615 2024-02-28 16:36:57.615 18900 TIP 442170 5129 6101699 2024-02-28 16:36:59.044 2024-02-28 16:36:59.044 10000 FEE 442352 21180 6101718 2024-02-28 16:37:28.525 2024-02-28 16:37:28.525 2100 FEE 442247 1576 6101719 2024-02-28 16:37:28.525 2024-02-28 16:37:28.525 18900 TIP 442247 20973 6101720 2024-02-28 16:37:33.864 2024-02-28 16:37:33.864 50000 FEE 441886 18637 6101721 2024-02-28 16:37:33.864 2024-02-28 16:37:33.864 450000 TIP 441886 4250 6101722 2024-02-28 16:37:34.742 2024-02-28 16:37:34.742 1000 POLL 442163 21398 6101727 2024-02-28 16:37:38.752 2024-02-28 16:37:38.752 1000 POLL 442163 10484 6101734 2024-02-28 16:37:40.961 2024-02-28 16:37:40.961 1000 FEE 441896 16145 6101735 2024-02-28 16:37:40.961 2024-02-28 16:37:40.961 9000 TIP 441896 708 6101745 2024-02-28 16:38:04.081 2024-02-28 16:38:04.081 3100 FEE 442353 2749 6101746 2024-02-28 16:38:04.081 2024-02-28 16:38:04.081 27900 TIP 442353 2519 6101749 2024-02-28 16:38:08.199 2024-02-28 16:38:08.199 2100 FEE 442335 1213 6101750 2024-02-28 16:38:08.199 2024-02-28 16:38:08.199 18900 TIP 442335 17116 6101756 2024-02-28 16:40:01.731 2024-02-28 16:40:01.731 1000 FEE 442356 20183 6101762 2024-02-28 16:40:05.395 2024-02-28 16:40:05.395 1000 FEE 442350 4225 6101763 2024-02-28 16:40:05.395 2024-02-28 16:40:05.395 9000 TIP 442350 19987 6101768 2024-02-28 16:40:12.469 2024-02-28 16:40:12.469 10000 FEE 442298 19243 6101769 2024-02-28 16:40:12.469 2024-02-28 16:40:12.469 90000 TIP 442298 2444 6101778 2024-02-28 16:40:13.645 2024-02-28 16:40:13.645 1000 FEE 442347 19929 6101779 2024-02-28 16:40:13.645 2024-02-28 16:40:13.645 9000 TIP 442347 21342 6101780 2024-02-28 16:40:13.97 2024-02-28 16:40:13.97 1000 FEE 442347 16052 6101781 2024-02-28 16:40:13.97 2024-02-28 16:40:13.97 9000 TIP 442347 15119 6101801 2024-02-28 16:41:15.454 2024-02-28 16:41:15.454 2100 FEE 442298 19524 6101802 2024-02-28 16:41:15.454 2024-02-28 16:41:15.454 18900 TIP 442298 9364 6101807 2024-02-28 16:41:20.693 2024-02-28 16:41:20.693 2100 FEE 441968 12139 6101808 2024-02-28 16:41:20.693 2024-02-28 16:41:20.693 18900 TIP 441968 16424 6101821 2024-02-28 16:41:55.103 2024-02-28 16:41:55.103 5700 FEE 442358 19826 6101822 2024-02-28 16:41:55.103 2024-02-28 16:41:55.103 51300 TIP 442358 17046 6101863 2024-02-28 16:44:44.921 2024-02-28 16:44:44.921 1000 FEE 442364 10393 6101879 2024-02-28 16:47:28.422 2024-02-28 16:47:28.422 1600 FEE 442298 19151 6101880 2024-02-28 16:47:28.422 2024-02-28 16:47:28.422 14400 TIP 442298 17415 6101889 2024-02-28 16:48:46.615 2024-02-28 16:48:46.615 10000 FEE 442298 708 6101890 2024-02-28 16:48:46.615 2024-02-28 16:48:46.615 90000 TIP 442298 2722 6101894 2024-02-28 16:49:35.431 2024-02-28 16:49:35.431 1600 FEE 442313 21588 6101895 2024-02-28 16:49:35.431 2024-02-28 16:49:35.431 14400 TIP 442313 1549 6101921 2024-02-28 16:50:32.986 2024-02-28 16:50:32.986 1000 FEE 442373 6421 6101993 2024-02-28 16:54:46.688 2024-02-28 16:54:46.688 2100 FEE 442208 15075 6101994 2024-02-28 16:54:46.688 2024-02-28 16:54:46.688 18900 TIP 442208 19154 6102009 2024-02-28 16:55:15.818 2024-02-28 16:55:15.818 3100 FEE 442385 14552 6102010 2024-02-28 16:55:15.818 2024-02-28 16:55:15.818 27900 TIP 442385 1245 6101591 2024-02-28 16:31:57.228 2024-02-28 16:31:57.228 7700 FEE 442298 21247 6101592 2024-02-28 16:31:57.228 2024-02-28 16:31:57.228 69300 TIP 442298 17455 6101610 2024-02-28 16:32:42.044 2024-02-28 16:32:42.044 1000 FEE 442328 8998 6101611 2024-02-28 16:32:42.044 2024-02-28 16:32:42.044 9000 TIP 442328 19296 6101612 2024-02-28 16:32:42.492 2024-02-28 16:32:42.492 1000 FEE 442328 6361 6101613 2024-02-28 16:32:42.492 2024-02-28 16:32:42.492 9000 TIP 442328 21539 6101616 2024-02-28 16:32:43.16 2024-02-28 16:32:43.16 1000 FEE 442328 3478 6101617 2024-02-28 16:32:43.16 2024-02-28 16:32:43.16 9000 TIP 442328 2390 6101620 2024-02-28 16:33:06.37 2024-02-28 16:33:06.37 3300 FEE 442325 1175 6101621 2024-02-28 16:33:06.37 2024-02-28 16:33:06.37 29700 TIP 442325 8380 6101629 2024-02-28 16:33:22.045 2024-02-28 16:33:22.045 0 FEE 442345 1213 6101642 2024-02-28 16:33:40.531 2024-02-28 16:33:40.531 1000 FEE 442325 3709 6101643 2024-02-28 16:33:40.531 2024-02-28 16:33:40.531 9000 TIP 442325 21263 6101648 2024-02-28 16:34:10.297 2024-02-28 16:34:10.297 0 FEE 442346 18673 6101667 2024-02-28 16:35:19.602 2024-02-28 16:35:19.602 5700 FEE 442065 7979 6101668 2024-02-28 16:35:19.602 2024-02-28 16:35:19.602 51300 TIP 442065 20730 6101687 2024-02-28 16:36:44.493 2024-02-28 16:36:44.493 2100 FEE 442313 979 6101688 2024-02-28 16:36:44.493 2024-02-28 16:36:44.493 18900 TIP 442313 19809 6101691 2024-02-28 16:36:52.261 2024-02-28 16:36:52.261 2100 FEE 442283 21521 6101692 2024-02-28 16:36:52.261 2024-02-28 16:36:52.261 18900 TIP 442283 16556 6101706 2024-02-28 16:37:22.806 2024-02-28 16:37:22.806 1000 FEE 442348 5775 6101707 2024-02-28 16:37:22.806 2024-02-28 16:37:22.806 9000 TIP 442348 715 6101708 2024-02-28 16:37:23.191 2024-02-28 16:37:23.191 1000 FEE 442348 17237 6101709 2024-02-28 16:37:23.191 2024-02-28 16:37:23.191 9000 TIP 442348 8269 6101723 2024-02-28 16:37:38.597 2024-02-28 16:37:38.597 1000 FEE 441896 5779 6101724 2024-02-28 16:37:38.597 2024-02-28 16:37:38.597 9000 TIP 441896 13100 6101738 2024-02-28 16:37:41.442 2024-02-28 16:37:41.442 0 FEE 442353 4776 6101741 2024-02-28 16:37:45.551 2024-02-28 16:37:45.551 30000 FEE 441886 18468 6101742 2024-02-28 16:37:45.551 2024-02-28 16:37:45.551 270000 TIP 441886 21547 6101747 2024-02-28 16:38:04.21 2024-02-28 16:38:04.21 10000 FEE 438607 20691 6101748 2024-02-28 16:38:04.21 2024-02-28 16:38:04.21 90000 TIP 438607 2111 6101758 2024-02-28 16:40:04.781 2024-02-28 16:40:04.781 1000 FEE 442350 1030 6101759 2024-02-28 16:40:04.781 2024-02-28 16:40:04.781 9000 TIP 442350 8448 6101770 2024-02-28 16:40:12.548 2024-02-28 16:40:12.548 10000 FEE 442298 7818 6101771 2024-02-28 16:40:12.548 2024-02-28 16:40:12.548 90000 TIP 442298 10291 6101774 2024-02-28 16:40:12.894 2024-02-28 16:40:12.894 10000 FEE 442298 5495 6101775 2024-02-28 16:40:12.894 2024-02-28 16:40:12.894 90000 TIP 442298 18314 6101790 2024-02-28 16:40:29.06 2024-02-28 16:40:29.06 2100 FEE 441951 19906 6101791 2024-02-28 16:40:29.06 2024-02-28 16:40:29.06 18900 TIP 441951 19902 6101830 2024-02-28 16:42:23.303 2024-02-28 16:42:23.303 0 FEE 415776 17984 6101839 2024-02-28 16:43:08.394 2024-02-28 16:43:08.394 100 FEE 442181 19929 6101840 2024-02-28 16:43:08.394 2024-02-28 16:43:08.394 900 TIP 442181 831 6101866 2024-02-28 16:44:51.044 2024-02-28 16:44:51.044 100 FEE 441782 19690 6101867 2024-02-28 16:44:51.044 2024-02-28 16:44:51.044 900 TIP 441782 20464 6101873 2024-02-28 16:46:12.762 2024-02-28 16:46:12.762 1000 FEE 442366 4802 6101885 2024-02-28 16:48:20.881 2024-02-28 16:48:20.881 0 FEE 442368 1213 6101907 2024-02-28 16:50:28.526 2024-02-28 16:50:28.526 1000 FEE 442360 8037 6101908 2024-02-28 16:50:28.526 2024-02-28 16:50:28.526 9000 TIP 442360 9921 6101911 2024-02-28 16:50:29.231 2024-02-28 16:50:29.231 1000 FEE 442360 7659 6101912 2024-02-28 16:50:29.231 2024-02-28 16:50:29.231 9000 TIP 442360 5761 6101931 2024-02-28 16:50:52.958 2024-02-28 16:50:52.958 1000 FEE 442371 685 6101932 2024-02-28 16:50:52.958 2024-02-28 16:50:52.958 9000 TIP 442371 17713 6101935 2024-02-28 16:50:53.352 2024-02-28 16:50:53.352 1000 FEE 442371 20871 6101936 2024-02-28 16:50:53.352 2024-02-28 16:50:53.352 9000 TIP 442371 15544 6101942 2024-02-28 16:51:51.422 2024-02-28 16:51:51.422 1000 FEE 442376 20152 6101950 2024-02-28 16:52:29.562 2024-02-28 16:52:29.562 1000 FEE 442380 19795 6101973 2024-02-28 16:54:22.21 2024-02-28 16:54:22.21 1000 FEE 442386 5171 6102011 2024-02-28 16:55:17.926 2024-02-28 16:55:17.926 2600 FEE 442349 2213 6102012 2024-02-28 16:55:17.926 2024-02-28 16:55:17.926 23400 TIP 442349 1631 6102019 2024-02-28 16:55:36.887 2024-02-28 16:55:36.887 10000 FEE 441366 8541 6102020 2024-02-28 16:55:36.887 2024-02-28 16:55:36.887 90000 TIP 441366 11145 6102026 2024-02-28 16:56:19.387 2024-02-28 16:56:19.387 10000 FEE 442383 18468 6102027 2024-02-28 16:56:19.387 2024-02-28 16:56:19.387 90000 TIP 442383 15094 6102034 2024-02-28 16:56:43.765 2024-02-28 16:56:43.765 1000 FEE 442394 19016 6102060 2024-02-28 16:58:22.54 2024-02-28 16:58:22.54 1000 FEE 442399 15239 6102066 2024-02-28 16:59:34.408 2024-02-28 16:59:34.408 0 FEE 442400 16424 6102068 2024-02-28 16:59:45.041 2024-02-28 16:59:45.041 0 FEE 442380 1985 6102106 2024-02-28 17:02:17.176 2024-02-28 17:02:17.176 100 FEE 442298 2000 6102107 2024-02-28 17:02:17.176 2024-02-28 17:02:17.176 900 TIP 442298 8385 6102114 2024-02-28 17:02:17.829 2024-02-28 17:02:17.829 100 FEE 442298 21064 6102115 2024-02-28 17:02:17.829 2024-02-28 17:02:17.829 900 TIP 442298 21387 6102144 2024-02-28 17:02:20.323 2024-02-28 17:02:20.323 100 FEE 442298 2757 6102145 2024-02-28 17:02:20.323 2024-02-28 17:02:20.323 900 TIP 442298 6041 6102180 2024-02-28 17:02:23.324 2024-02-28 17:02:23.324 100 FEE 442298 1823 6102181 2024-02-28 17:02:23.324 2024-02-28 17:02:23.324 900 TIP 442298 21254 6102204 2024-02-28 17:02:25.691 2024-02-28 17:02:25.691 100 FEE 442298 18170 6102205 2024-02-28 17:02:25.691 2024-02-28 17:02:25.691 900 TIP 442298 18494 6102210 2024-02-28 17:02:26.039 2024-02-28 17:02:26.039 100 FEE 442298 16178 6102211 2024-02-28 17:02:26.039 2024-02-28 17:02:26.039 900 TIP 442298 19821 6102268 2024-02-28 17:02:30.614 2024-02-28 17:02:30.614 100 FEE 442298 12102 6102269 2024-02-28 17:02:30.614 2024-02-28 17:02:30.614 900 TIP 442298 16680 6102272 2024-02-28 17:02:31.101 2024-02-28 17:02:31.101 100 FEE 442298 4048 6102273 2024-02-28 17:02:31.101 2024-02-28 17:02:31.101 900 TIP 442298 21228 6102278 2024-02-28 17:02:36.217 2024-02-28 17:02:36.217 100 FEE 442311 21540 6102279 2024-02-28 17:02:36.217 2024-02-28 17:02:36.217 900 TIP 442311 15521 6102284 2024-02-28 17:02:36.604 2024-02-28 17:02:36.604 100 FEE 442311 17639 6102285 2024-02-28 17:02:36.604 2024-02-28 17:02:36.604 900 TIP 442311 16633 6102300 2024-02-28 17:02:40.674 2024-02-28 17:02:40.674 100 FEE 442299 5752 6102301 2024-02-28 17:02:40.674 2024-02-28 17:02:40.674 900 TIP 442299 11220 6102308 2024-02-28 17:03:01.401 2024-02-28 17:03:01.401 1000 FEE 442414 20080 6102316 2024-02-28 17:03:41.84 2024-02-28 17:03:41.84 1000 FEE 442417 18690 6102335 2024-02-28 17:05:26.657 2024-02-28 17:05:26.657 100000 FEE 442422 16543 6102345 2024-02-28 17:07:32.955 2024-02-28 17:07:32.955 1000 FEE 442426 1122 6102362 2024-02-28 17:11:33.898 2024-02-28 17:11:33.898 1000 FEE 442431 9844 6102365 2024-02-28 17:11:36.539 2024-02-28 17:11:36.539 500 FEE 442420 663 6102366 2024-02-28 17:11:36.539 2024-02-28 17:11:36.539 4500 TIP 442420 5703 6102375 2024-02-28 17:11:59.465 2024-02-28 17:11:59.465 1000 FEE 442432 5527 6102378 2024-02-28 17:12:05.602 2024-02-28 17:12:05.602 10000 FEE 442313 721 6102379 2024-02-28 17:12:05.602 2024-02-28 17:12:05.602 90000 TIP 442313 1208 6102382 2024-02-28 17:12:40.934 2024-02-28 17:12:40.934 2100 FEE 441968 1245 6102383 2024-02-28 17:12:40.934 2024-02-28 17:12:40.934 18900 TIP 441968 2444 6102389 2024-02-28 17:13:13.282 2024-02-28 17:13:13.282 100000 FEE 442434 11648 6102390 2024-02-28 17:13:18.573 2024-02-28 17:13:18.573 3300 FEE 442406 4064 6102391 2024-02-28 17:13:18.573 2024-02-28 17:13:18.573 29700 TIP 442406 17535 6102412 2024-02-28 17:15:33.408 2024-02-28 17:15:33.408 0 FEE 442432 21091 6102428 2024-02-28 17:17:41.489 2024-02-28 17:17:41.489 1000 FEE 442445 4167 6102433 2024-02-28 17:17:56.014 2024-02-28 17:17:56.014 400 FEE 442426 21562 6102434 2024-02-28 17:17:56.014 2024-02-28 17:17:56.014 3600 TIP 442426 14045 6102440 2024-02-28 17:18:11.83 2024-02-28 17:18:11.83 1000 FEE 442446 9820 6102452 2024-02-28 17:18:56.354 2024-02-28 17:18:56.354 3300 FEE 442444 909 6102453 2024-02-28 17:18:56.354 2024-02-28 17:18:56.354 29700 TIP 442444 11275 6101700 2024-02-28 16:37:02.717 2024-02-28 16:37:02.717 1000 STREAM 141924 21493 6101744 2024-02-28 16:38:02.727 2024-02-28 16:38:02.727 1000 STREAM 141924 20904 6101868 2024-02-28 16:45:02.802 2024-02-28 16:45:02.802 1000 STREAM 141924 18945 6101870 2024-02-28 16:46:02.799 2024-02-28 16:46:02.799 1000 STREAM 141924 19030 6101878 2024-02-28 16:47:02.818 2024-02-28 16:47:02.818 1000 STREAM 141924 19546 6101882 2024-02-28 16:48:02.814 2024-02-28 16:48:02.814 1000 STREAM 141924 5377 6101891 2024-02-28 16:49:02.824 2024-02-28 16:49:02.824 1000 STREAM 141924 6268 6101955 2024-02-28 16:53:02.868 2024-02-28 16:53:02.868 1000 STREAM 141924 19809 6101963 2024-02-28 16:54:02.885 2024-02-28 16:54:02.885 1000 STREAM 141924 623 6102001 2024-02-28 16:55:02.896 2024-02-28 16:55:02.896 1000 STREAM 141924 21365 6102024 2024-02-28 16:56:02.895 2024-02-28 16:56:02.895 1000 STREAM 141924 1881 6102053 2024-02-28 16:57:02.892 2024-02-28 16:57:02.892 1000 STREAM 141924 17011 6102319 2024-02-28 17:04:03.014 2024-02-28 17:04:03.014 1000 STREAM 141924 672 6102346 2024-02-28 17:08:03.061 2024-02-28 17:08:03.061 1000 STREAM 141924 4014 6102358 2024-02-28 17:11:03.144 2024-02-28 17:11:03.144 1000 STREAM 141924 5128 6102409 2024-02-28 17:15:03.209 2024-02-28 17:15:03.209 1000 STREAM 141924 9992 6102416 2024-02-28 17:16:03.191 2024-02-28 17:16:03.191 1000 STREAM 141924 21019 6102439 2024-02-28 17:18:03.204 2024-02-28 17:18:03.204 1000 STREAM 141924 7760 6102463 2024-02-28 17:19:03.199 2024-02-28 17:19:03.199 1000 STREAM 141924 21577 6102557 2024-02-28 17:27:03.246 2024-02-28 17:27:03.246 1000 STREAM 141924 17707 6102569 2024-02-28 17:29:03.251 2024-02-28 17:29:03.251 1000 STREAM 141924 12218 6102573 2024-02-28 17:30:03.254 2024-02-28 17:30:03.254 1000 STREAM 141924 18941 6102595 2024-02-28 17:32:03.273 2024-02-28 17:32:03.273 1000 STREAM 141924 1438 6102607 2024-02-28 17:34:03.264 2024-02-28 17:34:03.264 1000 STREAM 141924 20546 6102619 2024-02-28 17:35:03.264 2024-02-28 17:35:03.264 1000 STREAM 141924 9332 6102654 2024-02-28 17:38:03.283 2024-02-28 17:38:03.283 1000 STREAM 141924 16355 6102671 2024-02-28 17:41:03.306 2024-02-28 17:41:03.306 1000 STREAM 141924 20647 6102678 2024-02-28 17:42:03.303 2024-02-28 17:42:03.303 1000 STREAM 141924 16447 6102732 2024-02-28 17:47:03.363 2024-02-28 17:47:03.363 1000 STREAM 141924 12911 6102746 2024-02-28 17:48:03.352 2024-02-28 17:48:03.352 1000 STREAM 141924 17714 6102773 2024-02-28 17:50:03.365 2024-02-28 17:50:03.365 1000 STREAM 141924 16834 6102790 2024-02-28 17:52:03.422 2024-02-28 17:52:03.422 1000 STREAM 141924 5427 6102792 2024-02-28 17:53:03.498 2024-02-28 17:53:03.498 1000 STREAM 141924 17184 6102838 2024-02-28 17:59:03.51 2024-02-28 17:59:03.51 1000 STREAM 141924 19583 6102854 2024-02-28 18:01:03.526 2024-02-28 18:01:03.526 1000 STREAM 141924 20597 6102888 2024-02-28 18:05:03.56 2024-02-28 18:05:03.56 1000 STREAM 141924 21406 6102915 2024-02-28 18:07:03.571 2024-02-28 18:07:03.571 1000 STREAM 141924 5961 6102950 2024-02-28 18:09:03.602 2024-02-28 18:09:03.602 1000 STREAM 141924 13798 6102963 2024-02-28 18:11:03.585 2024-02-28 18:11:03.585 1000 STREAM 141924 9906 6103049 2024-02-28 18:20:03.634 2024-02-28 18:20:03.634 1000 STREAM 141924 16193 6103057 2024-02-28 18:22:03.633 2024-02-28 18:22:03.633 1000 STREAM 141924 14910 6103069 2024-02-28 18:26:03.658 2024-02-28 18:26:03.658 1000 STREAM 141924 5646 6103090 2024-02-28 18:28:03.665 2024-02-28 18:28:03.665 1000 STREAM 141924 679 6103096 2024-02-28 18:30:03.718 2024-02-28 18:30:03.718 1000 STREAM 141924 12245 6103114 2024-02-28 18:34:03.693 2024-02-28 18:34:03.693 1000 STREAM 141924 664 6103155 2024-02-28 18:40:03.76 2024-02-28 18:40:03.76 1000 STREAM 141924 4062 6101804 2024-02-28 16:41:16.934 2024-02-28 16:41:16.934 18900 TIP 442163 21072 6101819 2024-02-28 16:41:35.754 2024-02-28 16:41:35.754 2100 FEE 442309 1468 6101820 2024-02-28 16:41:35.754 2024-02-28 16:41:35.754 18900 TIP 442309 6741 6101824 2024-02-28 16:42:17.915 2024-02-28 16:42:17.915 3300 FEE 442334 762 6101825 2024-02-28 16:42:17.915 2024-02-28 16:42:17.915 29700 TIP 442334 20117 6101833 2024-02-28 16:42:30.232 2024-02-28 16:42:30.232 1000 FEE 442361 1394 6101842 2024-02-28 16:43:24.106 2024-02-28 16:43:24.106 1000 POLL 441333 16289 6101874 2024-02-28 16:46:34.062 2024-02-28 16:46:34.062 2100 FEE 442364 5519 6101875 2024-02-28 16:46:34.062 2024-02-28 16:46:34.062 18900 TIP 442364 10398 6101883 2024-02-28 16:48:03.797 2024-02-28 16:48:03.797 1000 FEE 442368 6687 6101887 2024-02-28 16:48:45.893 2024-02-28 16:48:45.893 1600 FEE 442283 2264 6101888 2024-02-28 16:48:45.893 2024-02-28 16:48:45.893 14400 TIP 442283 21042 6101922 2024-02-28 16:50:33.145 2024-02-28 16:50:33.145 1000 FEE 442360 11590 6101923 2024-02-28 16:50:33.145 2024-02-28 16:50:33.145 9000 TIP 442360 9833 6101930 2024-02-28 16:50:52.411 2024-02-28 16:50:52.411 1000 FEE 442374 11443 6101933 2024-02-28 16:50:53.163 2024-02-28 16:50:53.163 1000 FEE 442371 7418 6101934 2024-02-28 16:50:53.163 2024-02-28 16:50:53.163 9000 TIP 442371 15243 6101948 2024-02-28 16:52:29.144 2024-02-28 16:52:29.144 10000 FEE 442313 19506 6101949 2024-02-28 16:52:29.144 2024-02-28 16:52:29.144 90000 TIP 442313 20717 6101964 2024-02-28 16:54:06.532 2024-02-28 16:54:06.532 1000 FEE 442384 10273 6101968 2024-02-28 16:54:13.193 2024-02-28 16:54:13.193 0 FEE 442383 697 6101972 2024-02-28 16:54:22.105 2024-02-28 16:54:22.105 0 FEE 442380 5725 6102002 2024-02-28 16:55:03.874 2024-02-28 16:55:03.874 2100 FEE 442192 650 6102003 2024-02-28 16:55:03.874 2024-02-28 16:55:03.874 18900 TIP 442192 21091 6102004 2024-02-28 16:55:04.395 2024-02-28 16:55:04.395 2100 FEE 442178 1180 6102005 2024-02-28 16:55:04.395 2024-02-28 16:55:04.395 18900 TIP 442178 15463 6102007 2024-02-28 16:55:08.41 2024-02-28 16:55:08.41 1000 FEE 442389 638 6102008 2024-02-28 16:55:15.504 2024-02-28 16:55:15.504 1000 POLL 442163 15941 6102032 2024-02-28 16:56:41.441 2024-02-28 16:56:41.441 2100 FEE 442358 11522 6102033 2024-02-28 16:56:41.441 2024-02-28 16:56:41.441 18900 TIP 442358 2942 6102039 2024-02-28 16:56:46.042 2024-02-28 16:56:46.042 2500 FEE 442370 20993 6102040 2024-02-28 16:56:46.042 2024-02-28 16:56:46.042 22500 TIP 442370 5057 6102075 2024-02-28 16:59:54.343 2024-02-28 16:59:54.343 1000 FEE 442403 10554 6102078 2024-02-28 16:59:58.98 2024-02-28 16:59:58.98 1000 FEE 442404 6191 6102150 2024-02-28 17:02:20.944 2024-02-28 17:02:20.944 100 FEE 442298 20825 6102151 2024-02-28 17:02:20.944 2024-02-28 17:02:20.944 900 TIP 442298 2156 6102154 2024-02-28 17:02:21.213 2024-02-28 17:02:21.213 100 FEE 442298 20837 6102155 2024-02-28 17:02:21.213 2024-02-28 17:02:21.213 900 TIP 442298 21387 6102162 2024-02-28 17:02:21.871 2024-02-28 17:02:21.871 100 FEE 442298 11417 6102163 2024-02-28 17:02:21.871 2024-02-28 17:02:21.871 900 TIP 442298 9333 6102168 2024-02-28 17:02:22.415 2024-02-28 17:02:22.415 100 FEE 442298 18892 6102169 2024-02-28 17:02:22.415 2024-02-28 17:02:22.415 900 TIP 442298 7903 6102194 2024-02-28 17:02:24.365 2024-02-28 17:02:24.365 100 FEE 442298 18101 6102195 2024-02-28 17:02:24.365 2024-02-28 17:02:24.365 900 TIP 442298 6136 6102212 2024-02-28 17:02:26.167 2024-02-28 17:02:26.167 100 FEE 442298 20730 6102213 2024-02-28 17:02:26.167 2024-02-28 17:02:26.167 900 TIP 442298 1717 6102248 2024-02-28 17:02:28.872 2024-02-28 17:02:28.872 100 FEE 442298 10690 6102249 2024-02-28 17:02:28.872 2024-02-28 17:02:28.872 900 TIP 442298 16406 6102252 2024-02-28 17:02:29.178 2024-02-28 17:02:29.178 100 FEE 442298 20849 6102253 2024-02-28 17:02:29.178 2024-02-28 17:02:29.178 900 TIP 442298 20243 6102258 2024-02-28 17:02:29.752 2024-02-28 17:02:29.752 100 FEE 442298 11075 6102259 2024-02-28 17:02:29.752 2024-02-28 17:02:29.752 900 TIP 442298 3745 6102270 2024-02-28 17:02:30.929 2024-02-28 17:02:30.929 100 FEE 442298 21303 6102271 2024-02-28 17:02:30.929 2024-02-28 17:02:30.929 900 TIP 442298 10112 6102288 2024-02-28 17:02:39.247 2024-02-28 17:02:39.247 300 FEE 442299 9833 6102289 2024-02-28 17:02:39.247 2024-02-28 17:02:39.247 2700 TIP 442299 20120 6102314 2024-02-28 17:03:21.784 2024-02-28 17:03:21.784 21000 FEE 442416 18862 6102328 2024-02-28 17:04:43.561 2024-02-28 17:04:43.561 1000 FEE 442420 1983 6102348 2024-02-28 17:09:39.55 2024-02-28 17:09:39.55 1000 POLL 442163 9330 6102415 2024-02-28 17:15:51.471 2024-02-28 17:15:51.471 1000 FEE 442442 880 6102429 2024-02-28 17:17:48.081 2024-02-28 17:17:48.081 5000 FEE 442441 21216 6102430 2024-02-28 17:17:48.081 2024-02-28 17:17:48.081 45000 TIP 442441 1261 6102450 2024-02-28 17:18:52.47 2024-02-28 17:18:52.47 1000 FEE 442450 6777 6102451 2024-02-28 17:18:52.736 2024-02-28 17:18:52.736 1000 FEE 442451 11942 6102454 2024-02-28 17:18:56.609 2024-02-28 17:18:56.609 1000 FEE 442163 4654 6102455 2024-02-28 17:18:56.609 2024-02-28 17:18:56.609 9000 TIP 442163 19637 6102461 2024-02-28 17:19:01.121 2024-02-28 17:19:01.121 10000 FEE 429352 20062 6102462 2024-02-28 17:19:01.121 2024-02-28 17:19:01.121 90000 TIP 429352 9341 6102475 2024-02-28 17:19:43.491 2024-02-28 17:19:43.491 3300 FEE 442446 9758 6102476 2024-02-28 17:19:43.491 2024-02-28 17:19:43.491 29700 TIP 442446 18640 6102483 2024-02-28 17:20:03.081 2024-02-28 17:20:03.081 100 FEE 442434 21417 6102484 2024-02-28 17:20:03.081 2024-02-28 17:20:03.081 900 TIP 442434 7766 6102517 2024-02-28 17:25:05.924 2024-02-28 17:25:05.924 2100 FEE 442084 16660 6102518 2024-02-28 17:25:05.924 2024-02-28 17:25:05.924 18900 TIP 442084 16276 6102540 2024-02-28 17:25:19.679 2024-02-28 17:25:19.679 2100 FEE 442170 18409 6102541 2024-02-28 17:25:19.679 2024-02-28 17:25:19.679 18900 TIP 442170 12334 6102586 2024-02-28 17:31:13.184 2024-02-28 17:31:13.184 2100 FEE 442467 9351 6102587 2024-02-28 17:31:13.184 2024-02-28 17:31:13.184 18900 TIP 442467 17041 6102591 2024-02-28 17:31:26.935 2024-02-28 17:31:26.935 2100 FEE 441682 12507 6102592 2024-02-28 17:31:26.935 2024-02-28 17:31:26.935 18900 TIP 441682 20430 6102599 2024-02-28 17:33:25.124 2024-02-28 17:33:25.124 10000 FEE 442313 736 6102600 2024-02-28 17:33:25.124 2024-02-28 17:33:25.124 90000 TIP 442313 1970 6102601 2024-02-28 17:33:33.712 2024-02-28 17:33:33.712 2100 FEE 442460 777 6102602 2024-02-28 17:33:33.712 2024-02-28 17:33:33.712 18900 TIP 442460 18525 6102608 2024-02-28 17:34:08.444 2024-02-28 17:34:08.444 1000 FEE 442469 787 6102622 2024-02-28 17:35:11.507 2024-02-28 17:35:11.507 1000 POLL 442163 2156 6102625 2024-02-28 17:35:20.006 2024-02-28 17:35:20.006 10000 FEE 442313 11527 6102626 2024-02-28 17:35:20.006 2024-02-28 17:35:20.006 90000 TIP 442313 17109 6102629 2024-02-28 17:35:20.914 2024-02-28 17:35:20.914 10000 FEE 442313 18199 6102630 2024-02-28 17:35:20.914 2024-02-28 17:35:20.914 90000 TIP 442313 12160 6102649 2024-02-28 17:37:09.678 2024-02-28 17:37:09.678 77000 DONT_LIKE_THIS 442474 18637 6102672 2024-02-28 17:41:03.813 2024-02-28 17:41:03.813 10000 FEE 442482 12606 6102673 2024-02-28 17:41:24.104 2024-02-28 17:41:24.104 100000 FEE 442483 20657 6102674 2024-02-28 17:41:24.104 2024-02-28 17:41:24.104 25000000 BOOST 442483 19459 6102681 2024-02-28 17:42:54.895 2024-02-28 17:42:54.895 10100 FEE 442170 671 6102682 2024-02-28 17:42:54.895 2024-02-28 17:42:54.895 90900 TIP 442170 12768 6102749 2024-02-28 17:48:18.752 2024-02-28 17:48:18.752 5700 FEE 442489 9171 6102750 2024-02-28 17:48:18.752 2024-02-28 17:48:18.752 51300 TIP 442489 776 6102771 2024-02-28 17:49:42.448 2024-02-28 17:49:42.448 5700 FEE 442494 18344 6102772 2024-02-28 17:49:42.448 2024-02-28 17:49:42.448 51300 TIP 442494 4487 6102784 2024-02-28 17:51:44.802 2024-02-28 17:51:44.802 700 FEE 442313 18177 6102785 2024-02-28 17:51:44.802 2024-02-28 17:51:44.802 6300 TIP 442313 992 6102811 2024-02-28 17:55:12.309 2024-02-28 17:55:12.309 1000 FEE 442485 19094 6102812 2024-02-28 17:55:12.309 2024-02-28 17:55:12.309 9000 TIP 442485 20881 6101838 2024-02-28 16:43:02.773 2024-02-28 16:43:02.773 1000 STREAM 141924 635 6101849 2024-02-28 16:44:02.782 2024-02-28 16:44:02.782 1000 STREAM 141924 20276 6101898 2024-02-28 16:50:02.839 2024-02-28 16:50:02.839 1000 STREAM 141924 12566 6101939 2024-02-28 16:51:02.883 2024-02-28 16:51:02.883 1000 STREAM 141924 20701 6101945 2024-02-28 16:52:02.915 2024-02-28 16:52:02.915 1000 STREAM 141924 19826 6102058 2024-02-28 16:58:02.909 2024-02-28 16:58:02.909 1000 STREAM 141924 20849 6102063 2024-02-28 16:59:02.906 2024-02-28 16:59:02.906 1000 STREAM 141924 9331 6102081 2024-02-28 17:00:02.976 2024-02-28 17:00:02.976 1000 STREAM 141924 794 6102104 2024-02-28 17:02:03.003 2024-02-28 17:02:03.003 1000 STREAM 141924 6361 6102352 2024-02-28 17:10:03.119 2024-02-28 17:10:03.119 1000 STREAM 141924 14909 6102425 2024-02-28 17:17:03.195 2024-02-28 17:17:03.195 1000 STREAM 141924 21624 6101914 2024-02-28 16:50:29.604 2024-02-28 16:50:29.604 9000 TIP 442360 15624 6101928 2024-02-28 16:50:50.138 2024-02-28 16:50:50.138 800 FEE 442325 12218 6101929 2024-02-28 16:50:50.138 2024-02-28 16:50:50.138 7200 TIP 442325 21208 6101943 2024-02-28 16:51:52.026 2024-02-28 16:51:52.026 1000 FEE 442377 21522 6101961 2024-02-28 16:53:58.44 2024-02-28 16:53:58.44 0 FEE 442371 722 6101987 2024-02-28 16:54:43.607 2024-02-28 16:54:43.607 900 FEE 442313 20993 6101988 2024-02-28 16:54:43.607 2024-02-28 16:54:43.607 8100 TIP 442313 21492 6102049 2024-02-28 16:56:56.723 2024-02-28 16:56:56.723 1000 FEE 442395 17741 6102059 2024-02-28 16:58:08.64 2024-02-28 16:58:08.64 1000 FEE 442398 769 6102082 2024-02-28 17:00:03.391 2024-02-28 17:00:03.391 100000 FEE 442406 629 6102084 2024-02-28 17:00:05.34 2024-02-28 17:00:05.34 1000 FEE 442408 19759 6102088 2024-02-28 17:00:08.99 2024-02-28 17:00:08.99 1000 FEE 442366 3213 6102089 2024-02-28 17:00:08.99 2024-02-28 17:00:08.99 9000 TIP 442366 19494 6102101 2024-02-28 17:01:25.965 2024-02-28 17:01:25.965 2100 FEE 442325 928 6102102 2024-02-28 17:01:25.965 2024-02-28 17:01:25.965 18900 TIP 442325 761 6102116 2024-02-28 17:02:18.063 2024-02-28 17:02:18.063 100 FEE 442298 20022 6102117 2024-02-28 17:02:18.063 2024-02-28 17:02:18.063 900 TIP 442298 722 6102118 2024-02-28 17:02:18.466 2024-02-28 17:02:18.466 100 FEE 442298 17514 6102119 2024-02-28 17:02:18.466 2024-02-28 17:02:18.466 900 TIP 442298 21067 6102124 2024-02-28 17:02:18.899 2024-02-28 17:02:18.899 100 FEE 442298 7587 6102125 2024-02-28 17:02:18.899 2024-02-28 17:02:18.899 900 TIP 442298 882 6102166 2024-02-28 17:02:22.259 2024-02-28 17:02:22.259 100 FEE 442298 18265 6102167 2024-02-28 17:02:22.259 2024-02-28 17:02:22.259 900 TIP 442298 17682 6102174 2024-02-28 17:02:22.811 2024-02-28 17:02:22.811 100 FEE 442298 18526 6102175 2024-02-28 17:02:22.811 2024-02-28 17:02:22.811 900 TIP 442298 19854 6102178 2024-02-28 17:02:23.086 2024-02-28 17:02:23.086 100 FEE 442298 993 6102179 2024-02-28 17:02:23.086 2024-02-28 17:02:23.086 900 TIP 442298 15409 6102184 2024-02-28 17:02:23.587 2024-02-28 17:02:23.587 100 FEE 442298 18829 6102185 2024-02-28 17:02:23.587 2024-02-28 17:02:23.587 900 TIP 442298 21401 6102186 2024-02-28 17:02:23.727 2024-02-28 17:02:23.727 100 FEE 442298 21578 6102187 2024-02-28 17:02:23.727 2024-02-28 17:02:23.727 900 TIP 442298 16406 6102190 2024-02-28 17:02:23.974 2024-02-28 17:02:23.974 100 FEE 442298 19981 6102191 2024-02-28 17:02:23.974 2024-02-28 17:02:23.974 900 TIP 442298 1697 6102216 2024-02-28 17:02:26.481 2024-02-28 17:02:26.481 100 FEE 442298 5757 6102217 2024-02-28 17:02:26.481 2024-02-28 17:02:26.481 900 TIP 442298 713 6102224 2024-02-28 17:02:26.898 2024-02-28 17:02:26.898 100 FEE 442298 20837 6102225 2024-02-28 17:02:26.898 2024-02-28 17:02:26.898 900 TIP 442298 11314 6102226 2024-02-28 17:02:27.051 2024-02-28 17:02:27.051 100 FEE 442298 16679 6102227 2024-02-28 17:02:27.051 2024-02-28 17:02:27.051 900 TIP 442298 1817 6102228 2024-02-28 17:02:27.152 2024-02-28 17:02:27.152 100 FEE 442298 21062 6102229 2024-02-28 17:02:27.152 2024-02-28 17:02:27.152 900 TIP 442298 21498 6102246 2024-02-28 17:02:28.725 2024-02-28 17:02:28.725 100 FEE 442298 21263 6102247 2024-02-28 17:02:28.725 2024-02-28 17:02:28.725 900 TIP 442298 15180 6102264 2024-02-28 17:02:30.295 2024-02-28 17:02:30.295 100 FEE 442298 1047 6102265 2024-02-28 17:02:30.295 2024-02-28 17:02:30.295 900 TIP 442298 1480 6102274 2024-02-28 17:02:31.41 2024-02-28 17:02:31.41 100 FEE 442298 20036 6102275 2024-02-28 17:02:31.41 2024-02-28 17:02:31.41 900 TIP 442298 20464 6102276 2024-02-28 17:02:36.093 2024-02-28 17:02:36.093 100 FEE 442311 15510 6102277 2024-02-28 17:02:36.093 2024-02-28 17:02:36.093 900 TIP 442311 19005 6102292 2024-02-28 17:02:39.411 2024-02-28 17:02:39.411 100 FEE 442299 16341 6102293 2024-02-28 17:02:39.411 2024-02-28 17:02:39.411 900 TIP 442299 5520 6102298 2024-02-28 17:02:39.848 2024-02-28 17:02:39.848 100 FEE 442299 21164 6102299 2024-02-28 17:02:39.848 2024-02-28 17:02:39.848 900 TIP 442299 21338 6102321 2024-02-28 17:04:15.46 2024-02-28 17:04:15.46 2100 FEE 442298 13759 6102322 2024-02-28 17:04:15.46 2024-02-28 17:04:15.46 18900 TIP 442298 15119 6102323 2024-02-28 17:04:20.243 2024-02-28 17:04:20.243 2100 FEE 442313 5904 6102324 2024-02-28 17:04:20.243 2024-02-28 17:04:20.243 18900 TIP 442313 20564 6102333 2024-02-28 17:05:25.521 2024-02-28 17:05:25.521 100 FEE 442416 13781 6102334 2024-02-28 17:05:25.521 2024-02-28 17:05:25.521 900 TIP 442416 763 6102342 2024-02-28 17:06:40.54 2024-02-28 17:06:40.54 1000 FEE 442424 21620 6102353 2024-02-28 17:10:06.681 2024-02-28 17:10:06.681 1000 FEE 442429 1136 6102359 2024-02-28 17:11:25.262 2024-02-28 17:11:25.262 10000 FEE 441843 12368 6102360 2024-02-28 17:11:25.262 2024-02-28 17:11:25.262 90000 TIP 441843 11144 6102361 2024-02-28 17:11:25.833 2024-02-28 17:11:25.833 1000 FEE 442430 14381 6102393 2024-02-28 17:13:43.796 2024-02-28 17:13:43.796 1000 FEE 442436 8045 6102414 2024-02-28 17:15:48.854 2024-02-28 17:15:48.854 1000 FEE 442441 16998 6102418 2024-02-28 17:16:20.846 2024-02-28 17:16:20.846 0 FEE 442432 17838 6102435 2024-02-28 17:17:57.394 2024-02-28 17:17:57.394 400 FEE 442417 20090 6102436 2024-02-28 17:17:57.394 2024-02-28 17:17:57.394 3600 TIP 442417 18119 6102443 2024-02-28 17:18:23.263 2024-02-28 17:18:23.263 3300 FEE 442445 899 6102444 2024-02-28 17:18:23.263 2024-02-28 17:18:23.263 29700 TIP 442445 18714 6102458 2024-02-28 17:18:58.574 2024-02-28 17:18:58.574 3300 FEE 442444 20218 6102459 2024-02-28 17:18:58.574 2024-02-28 17:18:58.574 29700 TIP 442444 8535 6102464 2024-02-28 17:19:03.879 2024-02-28 17:19:03.879 5000 FEE 442448 828 6102465 2024-02-28 17:19:03.879 2024-02-28 17:19:03.879 45000 TIP 442448 12289 6102466 2024-02-28 17:19:07.871 2024-02-28 17:19:07.871 1000 FEE 442191 20525 6102467 2024-02-28 17:19:07.871 2024-02-28 17:19:07.871 9000 TIP 442191 20852 6102491 2024-02-28 17:21:43.209 2024-02-28 17:21:43.209 4000 FEE 442084 633 6102492 2024-02-28 17:21:43.209 2024-02-28 17:21:43.209 36000 TIP 442084 12606 6102504 2024-02-28 17:24:29.021 2024-02-28 17:24:29.021 2100 FEE 442441 20099 6102505 2024-02-28 17:24:29.021 2024-02-28 17:24:29.021 18900 TIP 442441 20897 6102546 2024-02-28 17:25:23.298 2024-02-28 17:25:23.298 2100 FEE 441660 21334 6102547 2024-02-28 17:25:23.298 2024-02-28 17:25:23.298 18900 TIP 441660 2077 6102558 2024-02-28 17:27:05.426 2024-02-28 17:27:05.426 2100 FEE 442429 21527 6102559 2024-02-28 17:27:05.426 2024-02-28 17:27:05.426 18900 TIP 442429 20464 6102568 2024-02-28 17:28:50.498 2024-02-28 17:28:50.498 1000 POLL 442163 20889 6102572 2024-02-28 17:29:21.416 2024-02-28 17:29:21.416 1000 FEE 442466 19661 6102577 2024-02-28 17:30:40.829 2024-02-28 17:30:40.829 2100 FEE 441843 1806 6102578 2024-02-28 17:30:40.829 2024-02-28 17:30:40.829 18900 TIP 441843 18473 6102631 2024-02-28 17:35:20.996 2024-02-28 17:35:20.996 10000 FEE 442313 17091 6102632 2024-02-28 17:35:20.996 2024-02-28 17:35:20.996 90000 TIP 442313 2309 6102634 2024-02-28 17:35:30.068 2024-02-28 17:35:30.068 1000 FEE 442475 20817 6102677 2024-02-28 17:42:01.356 2024-02-28 17:42:01.356 1000 FEE 442484 14651 6102685 2024-02-28 17:43:20.52 2024-02-28 17:43:20.52 1000 FEE 442272 11153 6102686 2024-02-28 17:43:20.52 2024-02-28 17:43:20.52 9000 TIP 442272 17446 6102691 2024-02-28 17:43:52.699 2024-02-28 17:43:52.699 1000 FEE 442488 11075 6101920 2024-02-28 16:50:32.054 2024-02-28 16:50:32.054 9000 TIP 442360 14195 6101941 2024-02-28 16:51:49.755 2024-02-28 16:51:49.755 1000 FEE 442375 20153 6101946 2024-02-28 16:52:06.424 2024-02-28 16:52:06.424 1000 FEE 442379 18727 6101952 2024-02-28 16:52:46.89 2024-02-28 16:52:46.89 1000 FEE 442381 21314 6101983 2024-02-28 16:54:43.245 2024-02-28 16:54:43.245 2100 FEE 442201 2614 6101984 2024-02-28 16:54:43.245 2024-02-28 16:54:43.245 18900 TIP 442201 880 6101985 2024-02-28 16:54:43.404 2024-02-28 16:54:43.404 100 FEE 442313 18402 6101986 2024-02-28 16:54:43.404 2024-02-28 16:54:43.404 900 TIP 442313 891 6101989 2024-02-28 16:54:44.47 2024-02-28 16:54:44.47 9000 FEE 442313 7766 6101990 2024-02-28 16:54:44.47 2024-02-28 16:54:44.47 81000 TIP 442313 1564 6101999 2024-02-28 16:55:02.112 2024-02-28 16:55:02.112 7700 FEE 442325 16042 6102000 2024-02-28 16:55:02.112 2024-02-28 16:55:02.112 69300 TIP 442325 3706 6102014 2024-02-28 16:55:29.501 2024-02-28 16:55:29.501 100 FEE 442358 17411 6102015 2024-02-28 16:55:29.501 2024-02-28 16:55:29.501 900 TIP 442358 16212 6102028 2024-02-28 16:56:23.793 2024-02-28 16:56:23.793 2100 FEE 442163 2329 6102029 2024-02-28 16:56:23.793 2024-02-28 16:56:23.793 18900 TIP 442163 20655 6102047 2024-02-28 16:56:47.091 2024-02-28 16:56:47.091 2500 FEE 442370 21116 6102048 2024-02-28 16:56:47.091 2024-02-28 16:56:47.091 22500 TIP 442370 18904 6102064 2024-02-28 16:59:11.586 2024-02-28 16:59:11.586 1000 FEE 442400 19259 6102090 2024-02-28 17:00:09.368 2024-02-28 17:00:09.368 1000 FEE 442366 18409 6102091 2024-02-28 17:00:09.368 2024-02-28 17:00:09.368 9000 TIP 442366 14213 6102126 2024-02-28 17:02:19.121 2024-02-28 17:02:19.121 100 FEE 442298 11938 6102127 2024-02-28 17:02:19.121 2024-02-28 17:02:19.121 900 TIP 442298 19815 6102130 2024-02-28 17:02:19.425 2024-02-28 17:02:19.425 100 FEE 442298 17714 6102131 2024-02-28 17:02:19.425 2024-02-28 17:02:19.425 900 TIP 442298 19905 6102132 2024-02-28 17:02:19.507 2024-02-28 17:02:19.507 100 FEE 442298 10668 6102133 2024-02-28 17:02:19.507 2024-02-28 17:02:19.507 900 TIP 442298 18138 6102140 2024-02-28 17:02:20.084 2024-02-28 17:02:20.084 100 FEE 442298 18230 6102141 2024-02-28 17:02:20.084 2024-02-28 17:02:20.084 900 TIP 442298 3360 6102170 2024-02-28 17:02:22.569 2024-02-28 17:02:22.569 100 FEE 442298 6268 6102171 2024-02-28 17:02:22.569 2024-02-28 17:02:22.569 900 TIP 442298 5057 6102198 2024-02-28 17:02:24.627 2024-02-28 17:02:24.627 100 FEE 442298 4062 6102199 2024-02-28 17:02:24.627 2024-02-28 17:02:24.627 900 TIP 442298 1224 6102214 2024-02-28 17:02:26.373 2024-02-28 17:02:26.373 100 FEE 442298 15119 6102215 2024-02-28 17:02:26.373 2024-02-28 17:02:26.373 900 TIP 442298 4570 6102222 2024-02-28 17:02:26.796 2024-02-28 17:02:26.796 100 FEE 442298 6573 6102223 2024-02-28 17:02:26.796 2024-02-28 17:02:26.796 900 TIP 442298 19138 6102234 2024-02-28 17:02:27.684 2024-02-28 17:02:27.684 100 FEE 442298 9906 6102235 2024-02-28 17:02:27.684 2024-02-28 17:02:27.684 900 TIP 442298 9366 6102254 2024-02-28 17:02:29.337 2024-02-28 17:02:29.337 100 FEE 442298 5173 6102255 2024-02-28 17:02:29.337 2024-02-28 17:02:29.337 900 TIP 442298 963 6102262 2024-02-28 17:02:30.043 2024-02-28 17:02:30.043 100 FEE 442298 11423 6102263 2024-02-28 17:02:30.043 2024-02-28 17:02:30.043 900 TIP 442298 11288 6102266 2024-02-28 17:02:30.493 2024-02-28 17:02:30.493 100 FEE 442298 698 6102267 2024-02-28 17:02:30.493 2024-02-28 17:02:30.493 900 TIP 442298 5776 6102294 2024-02-28 17:02:39.543 2024-02-28 17:02:39.543 100 FEE 442299 18500 6102295 2024-02-28 17:02:39.543 2024-02-28 17:02:39.543 900 TIP 442299 3342 6102307 2024-02-28 17:03:00.342 2024-02-28 17:03:00.342 1000 FEE 442413 7869 6102315 2024-02-28 17:03:26.205 2024-02-28 17:03:26.205 1000 POLL 441333 634 6102330 2024-02-28 17:05:15.26 2024-02-28 17:05:15.26 1000 FEE 441698 18208 6102331 2024-02-28 17:05:15.26 2024-02-28 17:05:15.26 9000 TIP 441698 623 6102336 2024-02-28 17:06:03.135 2024-02-28 17:06:03.135 1000 FEE 442423 16406 6101992 2024-02-28 16:54:46.397 2024-02-28 16:54:46.397 18900 TIP 442211 4650 6101997 2024-02-28 16:55:01.248 2024-02-28 16:55:01.248 900 FEE 442325 3544 6101998 2024-02-28 16:55:01.248 2024-02-28 16:55:01.248 8100 TIP 442325 19689 6102013 2024-02-28 16:55:21.72 2024-02-28 16:55:21.72 10000 DONT_LIKE_THIS 442339 21589 6102018 2024-02-28 16:55:35.589 2024-02-28 16:55:35.589 1000 FEE 442390 16684 6102050 2024-02-28 16:56:58.374 2024-02-28 16:56:58.374 100 FEE 442332 21019 6102051 2024-02-28 16:56:58.374 2024-02-28 16:56:58.374 900 TIP 442332 18817 6102069 2024-02-28 16:59:45.774 2024-02-28 16:59:45.774 5000 FEE 442283 19770 6102070 2024-02-28 16:59:45.774 2024-02-28 16:59:45.774 45000 TIP 442283 11144 6102080 2024-02-28 17:00:02.763 2024-02-28 17:00:02.763 1000 FEE 442405 21344 6102083 2024-02-28 17:00:04.951 2024-02-28 17:00:04.951 100000 FEE 442407 1326 6102092 2024-02-28 17:00:09.692 2024-02-28 17:00:09.692 1000 FEE 442366 19030 6102093 2024-02-28 17:00:09.692 2024-02-28 17:00:09.692 9000 TIP 442366 4043 6102094 2024-02-28 17:00:10.018 2024-02-28 17:00:10.018 1000 FEE 442366 19854 6102095 2024-02-28 17:00:10.018 2024-02-28 17:00:10.018 9000 TIP 442366 18076 6102096 2024-02-28 17:00:12.658 2024-02-28 17:00:12.658 1000 FEE 442406 694 6102097 2024-02-28 17:00:12.658 2024-02-28 17:00:12.658 9000 TIP 442406 1438 6102098 2024-02-28 17:00:40.857 2024-02-28 17:00:40.857 0 FEE 442405 18378 6102103 2024-02-28 17:02:00.161 2024-02-28 17:02:00.161 0 FEE 442405 21060 6102122 2024-02-28 17:02:18.817 2024-02-28 17:02:18.817 100 FEE 442298 21624 6102123 2024-02-28 17:02:18.817 2024-02-28 17:02:18.817 900 TIP 442298 20539 6102142 2024-02-28 17:02:20.223 2024-02-28 17:02:20.223 100 FEE 442298 18264 6102143 2024-02-28 17:02:20.223 2024-02-28 17:02:20.223 900 TIP 442298 9334 6102152 2024-02-28 17:02:21.097 2024-02-28 17:02:21.097 100 FEE 442298 18357 6102153 2024-02-28 17:02:21.097 2024-02-28 17:02:21.097 900 TIP 442298 19524 6102160 2024-02-28 17:02:21.728 2024-02-28 17:02:21.728 100 FEE 442298 3990 6102161 2024-02-28 17:02:21.728 2024-02-28 17:02:21.728 900 TIP 442298 21214 6102176 2024-02-28 17:02:22.939 2024-02-28 17:02:22.939 100 FEE 442298 2326 6102177 2024-02-28 17:02:22.939 2024-02-28 17:02:22.939 900 TIP 442298 13327 6102196 2024-02-28 17:02:24.475 2024-02-28 17:02:24.475 100 FEE 442298 1429 6102197 2024-02-28 17:02:24.475 2024-02-28 17:02:24.475 900 TIP 442298 18862 6102200 2024-02-28 17:02:24.886 2024-02-28 17:02:24.886 200 FEE 442298 6421 6102201 2024-02-28 17:02:24.886 2024-02-28 17:02:24.886 1800 TIP 442298 16948 6102202 2024-02-28 17:02:25.523 2024-02-28 17:02:25.523 100 FEE 442298 15351 6102203 2024-02-28 17:02:25.523 2024-02-28 17:02:25.523 900 TIP 442298 7772 6102238 2024-02-28 17:02:27.955 2024-02-28 17:02:27.955 100 FEE 442298 9177 6102239 2024-02-28 17:02:27.955 2024-02-28 17:02:27.955 900 TIP 442298 18180 6102240 2024-02-28 17:02:28.126 2024-02-28 17:02:28.126 100 FEE 442298 706 6102241 2024-02-28 17:02:28.126 2024-02-28 17:02:28.126 900 TIP 442298 21208 6102242 2024-02-28 17:02:28.229 2024-02-28 17:02:28.229 100 FEE 442298 16178 6102243 2024-02-28 17:02:28.229 2024-02-28 17:02:28.229 900 TIP 442298 15226 6102304 2024-02-28 17:02:42.338 2024-02-28 17:02:42.338 1000 FEE 442412 11820 6102325 2024-02-28 17:04:26.982 2024-02-28 17:04:26.982 2100 FEE 442283 1354 6102326 2024-02-28 17:04:26.982 2024-02-28 17:04:26.982 18900 TIP 442283 20381 6102340 2024-02-28 17:06:26.512 2024-02-28 17:06:26.512 7700 FEE 442423 19857 6102341 2024-02-28 17:06:26.512 2024-02-28 17:06:26.512 69300 TIP 442423 2000 6102349 2024-02-28 17:09:45.089 2024-02-28 17:09:45.089 1000 FEE 442427 16309 6102373 2024-02-28 17:11:37.296 2024-02-28 17:11:37.296 500 FEE 442420 5003 6102374 2024-02-28 17:11:37.296 2024-02-28 17:11:37.296 4500 TIP 442420 17094 6102380 2024-02-28 17:12:23.856 2024-02-28 17:12:23.856 2100 FEE 442084 18423 6102381 2024-02-28 17:12:23.856 2024-02-28 17:12:23.856 18900 TIP 442084 20434 6102387 2024-02-28 17:13:04.004 2024-02-28 17:13:04.004 2100 FEE 442393 16680 6102388 2024-02-28 17:13:04.004 2024-02-28 17:13:04.004 18900 TIP 442393 19500 6102411 2024-02-28 17:15:28.553 2024-02-28 17:15:28.553 1000 FEE 442439 5725 6102420 2024-02-28 17:16:25.73 2024-02-28 17:16:25.73 6400 FEE 442437 1845 6102421 2024-02-28 17:16:25.73 2024-02-28 17:16:25.73 57600 TIP 442437 14950 6102422 2024-02-28 17:16:35.207 2024-02-28 17:16:35.207 10100 FEE 442313 8569 6102423 2024-02-28 17:16:35.207 2024-02-28 17:16:35.207 90900 TIP 442313 4079 6102424 2024-02-28 17:16:53.243 2024-02-28 17:16:53.243 0 FEE 442432 8133 6102426 2024-02-28 17:17:21.355 2024-02-28 17:17:21.355 100 FEE 442433 10490 6102427 2024-02-28 17:17:21.355 2024-02-28 17:17:21.355 900 TIP 442433 640 6102447 2024-02-28 17:18:25.38 2024-02-28 17:18:25.38 1000 FEE 442447 19661 6102473 2024-02-28 17:19:41.588 2024-02-28 17:19:41.588 3300 FEE 442446 5791 6102474 2024-02-28 17:19:41.588 2024-02-28 17:19:41.588 29700 TIP 442446 761 6102477 2024-02-28 17:19:43.736 2024-02-28 17:19:43.736 3300 FEE 442446 19320 6102478 2024-02-28 17:19:43.736 2024-02-28 17:19:43.736 29700 TIP 442446 14795 6102498 2024-02-28 17:22:24.211 2024-02-28 17:22:24.211 0 FEE 442449 726 6102500 2024-02-28 17:22:53.235 2024-02-28 17:22:53.235 1000 FEE 442457 21532 6102508 2024-02-28 17:25:01.148 2024-02-28 17:25:01.148 2100 FEE 442404 1596 6102509 2024-02-28 17:25:01.148 2024-02-28 17:25:01.148 18900 TIP 442404 21349 6102521 2024-02-28 17:25:07.221 2024-02-28 17:25:07.221 2100 FEE 442163 21521 6102522 2024-02-28 17:25:07.221 2024-02-28 17:25:07.221 18900 TIP 442163 1064 6102527 2024-02-28 17:25:11.486 2024-02-28 17:25:11.486 2100 FEE 441944 21222 6102528 2024-02-28 17:25:11.486 2024-02-28 17:25:11.486 18900 TIP 441944 685 6102561 2024-02-28 17:28:00.05 2024-02-28 17:28:00.05 1000 FEE 442298 20881 6102562 2024-02-28 17:28:00.05 2024-02-28 17:28:00.05 9000 TIP 442298 4313 6102566 2024-02-28 17:28:30.942 2024-02-28 17:28:30.942 1000 FEE 442464 20479 6102583 2024-02-28 17:30:42.137 2024-02-28 17:30:42.137 2100 FEE 441843 19537 6102584 2024-02-28 17:30:42.137 2024-02-28 17:30:42.137 18900 TIP 441843 16301 6102588 2024-02-28 17:31:14.544 2024-02-28 17:31:14.544 1000 FEE 442468 20715 6102589 2024-02-28 17:31:19.713 2024-02-28 17:31:19.713 2100 FEE 441447 17682 6102590 2024-02-28 17:31:19.713 2024-02-28 17:31:19.713 18900 TIP 441447 17275 6102596 2024-02-28 17:32:56.073 2024-02-28 17:32:56.073 10100 FEE 442325 3544 6102597 2024-02-28 17:32:56.073 2024-02-28 17:32:56.073 90900 TIP 442325 2514 6102605 2024-02-28 17:34:02.419 2024-02-28 17:34:02.419 2100 FEE 442423 18453 6102606 2024-02-28 17:34:02.419 2024-02-28 17:34:02.419 18900 TIP 442423 15115 6102650 2024-02-28 17:37:14.092 2024-02-28 17:37:14.092 2100 FEE 441973 20581 6102651 2024-02-28 17:37:14.092 2024-02-28 17:37:14.092 18900 TIP 441973 680 6102652 2024-02-28 17:37:28.29 2024-02-28 17:37:28.29 1000 FEE 442478 760 6102698 2024-02-28 17:44:23.214 2024-02-28 17:44:23.214 7700 FEE 442483 5557 6102699 2024-02-28 17:44:23.214 2024-02-28 17:44:23.214 69300 TIP 442483 21523 6102702 2024-02-28 17:44:23.79 2024-02-28 17:44:23.79 7700 FEE 442483 9330 6102703 2024-02-28 17:44:23.79 2024-02-28 17:44:23.79 69300 TIP 442483 21501 6102720 2024-02-28 17:46:17.425 2024-02-28 17:46:17.425 1000 POLL 442163 657 6102722 2024-02-28 17:46:22.741 2024-02-28 17:46:22.741 1000 FEE 442492 14271 6102735 2024-02-28 17:47:18.344 2024-02-28 17:47:18.344 5700 FEE 442483 11698 6102736 2024-02-28 17:47:18.344 2024-02-28 17:47:18.344 51300 TIP 442483 6537 6102741 2024-02-28 17:47:54.184 2024-02-28 17:47:54.184 1000 FEE 442494 20036 6102759 2024-02-28 17:49:14.559 2024-02-28 17:49:14.559 0 FEE 442483 5828 6102765 2024-02-28 17:49:34.132 2024-02-28 17:49:34.132 1000 FEE 442023 21033 6102766 2024-02-28 17:49:34.132 2024-02-28 17:49:34.132 9000 TIP 442023 9496 6101995 2024-02-28 16:55:01.051 2024-02-28 16:55:01.051 100 FEE 442325 18357 6101996 2024-02-28 16:55:01.051 2024-02-28 16:55:01.051 900 TIP 442325 18452 6102023 2024-02-28 16:56:00.093 2024-02-28 16:56:00.093 0 FEE 442386 1617 6102031 2024-02-28 16:56:34.245 2024-02-28 16:56:34.245 10000 FEE 442393 9334 6102035 2024-02-28 16:56:44.902 2024-02-28 16:56:44.902 2500 FEE 442370 4415 6102036 2024-02-28 16:56:44.902 2024-02-28 16:56:44.902 22500 TIP 442370 12356 6102041 2024-02-28 16:56:46.198 2024-02-28 16:56:46.198 2500 FEE 442370 2508 6102042 2024-02-28 16:56:46.198 2024-02-28 16:56:46.198 22500 TIP 442370 7425 6102085 2024-02-28 17:00:05.899 2024-02-28 17:00:05.899 1000 FEE 442409 11220 6102112 2024-02-28 17:02:17.706 2024-02-28 17:02:17.706 100 FEE 442298 11450 6102113 2024-02-28 17:02:17.706 2024-02-28 17:02:17.706 900 TIP 442298 674 6102128 2024-02-28 17:02:19.313 2024-02-28 17:02:19.313 100 FEE 442298 20523 6102129 2024-02-28 17:02:19.313 2024-02-28 17:02:19.313 900 TIP 442298 1272 6102134 2024-02-28 17:02:19.723 2024-02-28 17:02:19.723 100 FEE 442298 18507 6102135 2024-02-28 17:02:19.723 2024-02-28 17:02:19.723 900 TIP 442298 18448 6102136 2024-02-28 17:02:19.842 2024-02-28 17:02:19.842 100 FEE 442298 21469 6102137 2024-02-28 17:02:19.842 2024-02-28 17:02:19.842 900 TIP 442298 1745 6102138 2024-02-28 17:02:19.955 2024-02-28 17:02:19.955 100 FEE 442298 7827 6102139 2024-02-28 17:02:19.955 2024-02-28 17:02:19.955 900 TIP 442298 21418 6102164 2024-02-28 17:02:22.007 2024-02-28 17:02:22.007 100 FEE 442298 951 6102165 2024-02-28 17:02:22.007 2024-02-28 17:02:22.007 900 TIP 442298 19987 6102206 2024-02-28 17:02:25.918 2024-02-28 17:02:25.918 100 FEE 442298 9421 6102207 2024-02-28 17:02:25.918 2024-02-28 17:02:25.918 900 TIP 442298 18784 6102218 2024-02-28 17:02:26.555 2024-02-28 17:02:26.555 100 FEE 442298 20310 6102219 2024-02-28 17:02:26.555 2024-02-28 17:02:26.555 900 TIP 442298 634 6102230 2024-02-28 17:02:27.39 2024-02-28 17:02:27.39 100 FEE 442298 10849 6102231 2024-02-28 17:02:27.39 2024-02-28 17:02:27.39 900 TIP 442298 704 6102232 2024-02-28 17:02:27.543 2024-02-28 17:02:27.543 100 FEE 442298 21520 6102233 2024-02-28 17:02:27.543 2024-02-28 17:02:27.543 900 TIP 442298 5904 6102244 2024-02-28 17:02:28.48 2024-02-28 17:02:28.48 100 FEE 442298 20657 6102245 2024-02-28 17:02:28.48 2024-02-28 17:02:28.48 900 TIP 442298 19773 6102256 2024-02-28 17:02:29.605 2024-02-28 17:02:29.605 100 FEE 442298 19346 6102257 2024-02-28 17:02:29.605 2024-02-28 17:02:29.605 900 TIP 442298 1823 6102280 2024-02-28 17:02:36.389 2024-02-28 17:02:36.389 100 FEE 442311 21395 6102281 2024-02-28 17:02:36.389 2024-02-28 17:02:36.389 900 TIP 442311 10063 6102302 2024-02-28 17:02:40.85 2024-02-28 17:02:40.85 100 FEE 442299 6260 6102303 2024-02-28 17:02:40.85 2024-02-28 17:02:40.85 900 TIP 442299 9036 6102310 2024-02-28 17:03:04.453 2024-02-28 17:03:04.453 5000 FEE 442084 1291 6102311 2024-02-28 17:03:04.453 2024-02-28 17:03:04.453 45000 TIP 442084 4173 6102313 2024-02-28 17:03:20.329 2024-02-28 17:03:20.329 1000 POLL 442163 20208 6102320 2024-02-28 17:04:08.9 2024-02-28 17:04:08.9 1000 FEE 442418 17800 6102363 2024-02-28 17:11:36.46 2024-02-28 17:11:36.46 500 FEE 442420 7986 6102364 2024-02-28 17:11:36.46 2024-02-28 17:11:36.46 4500 TIP 442420 6137 6102367 2024-02-28 17:11:36.67 2024-02-28 17:11:36.67 500 FEE 442420 15941 6102368 2024-02-28 17:11:36.67 2024-02-28 17:11:36.67 4500 TIP 442420 716 6102371 2024-02-28 17:11:37.21 2024-02-28 17:11:37.21 1000 FEE 440898 7097 6102372 2024-02-28 17:11:37.21 2024-02-28 17:11:37.21 9000 TIP 440898 981 6102402 2024-02-28 17:14:42.184 2024-02-28 17:14:42.184 0 FEE 442432 6393 6102405 2024-02-28 17:14:55.337 2024-02-28 17:14:55.337 2500 FEE 442313 16456 6102406 2024-02-28 17:14:55.337 2024-02-28 17:14:55.337 22500 TIP 442313 16309 6102413 2024-02-28 17:15:45.144 2024-02-28 17:15:45.144 100000 FEE 442440 10771 6102448 2024-02-28 17:18:40.894 2024-02-28 17:18:40.894 1000 FEE 442448 8173 6102493 2024-02-28 17:21:43.239 2024-02-28 17:21:43.239 36000 FEE 442084 9200 6102494 2024-02-28 17:21:43.239 2024-02-28 17:21:43.239 324000 TIP 442084 19263 6102506 2024-02-28 17:24:32.792 2024-02-28 17:24:32.792 2100 FEE 442376 8269 6102507 2024-02-28 17:24:32.792 2024-02-28 17:24:32.792 18900 TIP 442376 18529 6102510 2024-02-28 17:25:02.051 2024-02-28 17:25:02.051 2100 FEE 442023 16594 6102511 2024-02-28 17:25:02.051 2024-02-28 17:25:02.051 18900 TIP 442023 695 6102512 2024-02-28 17:25:02.606 2024-02-28 17:25:02.606 2100 FEE 442313 2042 6102513 2024-02-28 17:25:02.606 2024-02-28 17:25:02.606 18900 TIP 442313 19652 6102519 2024-02-28 17:25:06.455 2024-02-28 17:25:06.455 2100 FEE 442298 20495 6102520 2024-02-28 17:25:06.455 2024-02-28 17:25:06.455 18900 TIP 442298 20157 6102523 2024-02-28 17:25:08.446 2024-02-28 17:25:08.446 2100 FEE 442065 4128 6102524 2024-02-28 17:25:08.446 2024-02-28 17:25:08.446 18900 TIP 442065 18468 6102529 2024-02-28 17:25:11.957 2024-02-28 17:25:11.957 2100 FEE 442283 14774 6102530 2024-02-28 17:25:11.957 2024-02-28 17:25:11.957 18900 TIP 442283 882 6102533 2024-02-28 17:25:16.864 2024-02-28 17:25:16.864 2100 FEE 441854 18524 6102534 2024-02-28 17:25:16.864 2024-02-28 17:25:16.864 18900 TIP 441854 19842 6102537 2024-02-28 17:25:18.343 2024-02-28 17:25:18.343 2100 FEE 442328 19007 6102538 2024-02-28 17:25:18.343 2024-02-28 17:25:18.343 18900 TIP 442328 9845 6102548 2024-02-28 17:25:24.232 2024-02-28 17:25:24.232 2100 FEE 442230 21119 6102549 2024-02-28 17:25:24.232 2024-02-28 17:25:24.232 18900 TIP 442230 8289 6102563 2024-02-28 17:28:02.823 2024-02-28 17:28:02.823 10000 FEE 442463 18528 6102567 2024-02-28 17:28:40.801 2024-02-28 17:28:40.801 1000 FEE 442465 15060 6102570 2024-02-28 17:29:21.175 2024-02-28 17:29:21.175 10000 FEE 442432 19465 6102571 2024-02-28 17:29:21.175 2024-02-28 17:29:21.175 90000 TIP 442432 16284 6102603 2024-02-28 17:33:38.267 2024-02-28 17:33:38.267 2100 FEE 442440 2075 6102604 2024-02-28 17:33:38.267 2024-02-28 17:33:38.267 18900 TIP 442440 1454 6102614 2024-02-28 17:35:00.324 2024-02-28 17:35:00.324 1000 FEE 442473 14404 6102617 2024-02-28 17:35:02.674 2024-02-28 17:35:02.674 1000 FEE 442446 1825 6102618 2024-02-28 17:35:02.674 2024-02-28 17:35:02.674 9000 TIP 442446 20326 6102620 2024-02-28 17:35:03.621 2024-02-28 17:35:03.621 1000 FEE 442446 1198 6102621 2024-02-28 17:35:03.621 2024-02-28 17:35:03.621 9000 TIP 442446 18774 6102635 2024-02-28 17:35:39.901 2024-02-28 17:35:39.901 1000 FEE 442476 19087 6102639 2024-02-28 17:36:08.03 2024-02-28 17:36:08.03 200 FEE 442434 18454 6102640 2024-02-28 17:36:08.03 2024-02-28 17:36:08.03 1800 TIP 442434 2196 6102679 2024-02-28 17:42:44.49 2024-02-28 17:42:44.49 0 FEE 442483 16848 6102708 2024-02-28 17:44:51.096 2024-02-28 17:44:51.096 200 FEE 442483 18178 6102709 2024-02-28 17:44:51.096 2024-02-28 17:44:51.096 1800 TIP 442483 21148 6102721 2024-02-28 17:46:21.072 2024-02-28 17:46:21.072 1000 FEE 442491 657 6102780 2024-02-28 17:51:09.111 2024-02-28 17:51:09.111 5000 FEE 442490 15200 6102781 2024-02-28 17:51:09.111 2024-02-28 17:51:09.111 45000 TIP 442490 20495 6102800 2024-02-28 17:54:19.239 2024-02-28 17:54:19.239 3300 FEE 442490 7847 6102801 2024-02-28 17:54:19.239 2024-02-28 17:54:19.239 29700 TIP 442490 2710 6102804 2024-02-28 17:54:53.101 2024-02-28 17:54:53.101 100 FEE 442313 6515 6102805 2024-02-28 17:54:53.101 2024-02-28 17:54:53.101 900 TIP 442313 19193 6102810 2024-02-28 17:55:10.713 2024-02-28 17:55:10.713 1000 POLL 442163 620 6102829 2024-02-28 17:57:18.871 2024-02-28 17:57:18.871 1000 FEE 441843 18678 6102830 2024-02-28 17:57:18.871 2024-02-28 17:57:18.871 9000 TIP 441843 13843 6102831 2024-02-28 17:57:19.366 2024-02-28 17:57:19.366 1000 FEE 441843 12768 6102832 2024-02-28 17:57:19.366 2024-02-28 17:57:19.366 9000 TIP 441843 18230 6102848 2024-02-28 18:00:05.535 2024-02-28 18:00:05.535 100000 FEE 442508 11075 6102880 2024-02-28 18:03:56.919 2024-02-28 18:03:56.919 2500 FEE 442073 9169 6102881 2024-02-28 18:03:56.919 2024-02-28 18:03:56.919 22500 TIP 442073 11144 6102016 2024-02-28 16:55:29.67 2024-02-28 16:55:29.67 900 FEE 442358 18280 6102017 2024-02-28 16:55:29.67 2024-02-28 16:55:29.67 8100 TIP 442358 827 6102021 2024-02-28 16:55:45.643 2024-02-28 16:55:45.643 10000 FEE 442371 21064 6102022 2024-02-28 16:55:45.643 2024-02-28 16:55:45.643 90000 TIP 442371 9669 6102025 2024-02-28 16:56:10.617 2024-02-28 16:56:10.617 1000 FEE 442391 16965 6102045 2024-02-28 16:56:46.946 2024-02-28 16:56:46.946 2500 FEE 442370 13076 6102046 2024-02-28 16:56:46.946 2024-02-28 16:56:46.946 22500 TIP 442370 19303 6102052 2024-02-28 16:57:00.934 2024-02-28 16:57:00.934 1000 FEE 442396 17411 6102054 2024-02-28 16:57:10.767 2024-02-28 16:57:10.767 0 FEE 442394 951 6102055 2024-02-28 16:57:15.083 2024-02-28 16:57:15.083 10100 FEE 442023 21491 6102056 2024-02-28 16:57:15.083 2024-02-28 16:57:15.083 90900 TIP 442023 4074 6102071 2024-02-28 16:59:47.159 2024-02-28 16:59:47.159 5000 FEE 442285 19902 6102072 2024-02-28 16:59:47.159 2024-02-28 16:59:47.159 45000 TIP 442285 20326 6102073 2024-02-28 16:59:49.462 2024-02-28 16:59:49.462 10000 FEE 442179 3642 6102074 2024-02-28 16:59:49.462 2024-02-28 16:59:49.462 90000 TIP 442179 19118 6102076 2024-02-28 16:59:58.244 2024-02-28 16:59:58.244 5700 FEE 442393 18208 6102077 2024-02-28 16:59:58.244 2024-02-28 16:59:58.244 51300 TIP 442393 19381 6102079 2024-02-28 17:00:00.121 2024-02-28 17:00:00.121 0 FEE 442380 14267 6102105 2024-02-28 17:02:03.367 2024-02-28 17:02:03.367 100000 FEE 442411 1515 6102120 2024-02-28 17:02:18.653 2024-02-28 17:02:18.653 100 FEE 442298 20647 6102121 2024-02-28 17:02:18.653 2024-02-28 17:02:18.653 900 TIP 442298 5057 6102148 2024-02-28 17:02:20.705 2024-02-28 17:02:20.705 100 FEE 442298 19906 6102149 2024-02-28 17:02:20.705 2024-02-28 17:02:20.705 900 TIP 442298 15697 6102156 2024-02-28 17:02:21.356 2024-02-28 17:02:21.356 100 FEE 442298 2459 6102157 2024-02-28 17:02:21.356 2024-02-28 17:02:21.356 900 TIP 442298 20376 6102208 2024-02-28 17:02:25.934 2024-02-28 17:02:25.934 100 FEE 442298 15408 6102209 2024-02-28 17:02:25.934 2024-02-28 17:02:25.934 900 TIP 442298 9669 6102220 2024-02-28 17:02:26.732 2024-02-28 17:02:26.732 100 FEE 442298 19263 6102221 2024-02-28 17:02:26.732 2024-02-28 17:02:26.732 900 TIP 442298 963 6102250 2024-02-28 17:02:29.085 2024-02-28 17:02:29.085 100 FEE 442298 1142 6102251 2024-02-28 17:02:29.085 2024-02-28 17:02:29.085 900 TIP 442298 20109 6102286 2024-02-28 17:02:37.036 2024-02-28 17:02:37.036 100 FEE 442311 14202 6102287 2024-02-28 17:02:37.036 2024-02-28 17:02:37.036 900 TIP 442311 11798 6102290 2024-02-28 17:02:39.308 2024-02-28 17:02:39.308 100 FEE 442299 19813 6102291 2024-02-28 17:02:39.308 2024-02-28 17:02:39.308 900 TIP 442299 686 6102296 2024-02-28 17:02:39.654 2024-02-28 17:02:39.654 100 FEE 442299 20185 6102297 2024-02-28 17:02:39.654 2024-02-28 17:02:39.654 900 TIP 442299 21506 6102312 2024-02-28 17:03:16.634 2024-02-28 17:03:16.634 1000 FEE 442415 7877 6102332 2024-02-28 17:05:20.808 2024-02-28 17:05:20.808 1000 FEE 442421 12606 6102350 2024-02-28 17:09:49.685 2024-02-28 17:09:49.685 1000 POLL 442163 19924 6102384 2024-02-28 17:12:43.488 2024-02-28 17:12:43.488 2100 FEE 442328 14152 6102385 2024-02-28 17:12:43.488 2024-02-28 17:12:43.488 18900 TIP 442328 18945 6102410 2024-02-28 17:15:04.578 2024-02-28 17:15:04.578 1000 FEE 442438 1426 6102419 2024-02-28 17:16:23.738 2024-02-28 17:16:23.738 1000 FEE 442444 21263 6102449 2024-02-28 17:18:45.79 2024-02-28 17:18:45.79 1000 FEE 442449 5637 6102460 2024-02-28 17:19:00.152 2024-02-28 17:19:00.152 1000 FEE 442452 20657 6102468 2024-02-28 17:19:08.912 2024-02-28 17:19:08.912 10000 FEE 429352 15159 6102469 2024-02-28 17:19:08.912 2024-02-28 17:19:08.912 90000 TIP 429352 21291 6102499 2024-02-28 17:22:37.236 2024-02-28 17:22:37.236 90000 FEE 442456 16282 6102542 2024-02-28 17:25:20.414 2024-02-28 17:25:20.414 2100 FEE 441749 18209 6102543 2024-02-28 17:25:20.414 2024-02-28 17:25:20.414 18900 TIP 441749 19462 6102544 2024-02-28 17:25:21.417 2024-02-28 17:25:21.417 2100 FEE 441951 4502 6102545 2024-02-28 17:25:21.417 2024-02-28 17:25:21.417 18900 TIP 441951 20837 6102554 2024-02-28 17:26:03.313 2024-02-28 17:26:03.313 1000 FEE 442461 5444 6102565 2024-02-28 17:28:09.233 2024-02-28 17:28:09.233 1000 POLL 442163 2514 6102579 2024-02-28 17:30:41.224 2024-02-28 17:30:41.224 2100 FEE 441843 9099 6102580 2024-02-28 17:30:41.224 2024-02-28 17:30:41.224 18900 TIP 441843 21446 6102612 2024-02-28 17:34:44.95 2024-02-28 17:34:44.95 1000 FEE 442471 11866 6102636 2024-02-28 17:35:44.634 2024-02-28 17:35:44.634 10000 FEE 442399 20852 6102637 2024-02-28 17:35:44.634 2024-02-28 17:35:44.634 90000 TIP 442399 9166 6102663 2024-02-28 17:40:33.151 2024-02-28 17:40:33.151 2100 FEE 442023 18402 6102664 2024-02-28 17:40:33.151 2024-02-28 17:40:33.151 18900 TIP 442023 19156 6102668 2024-02-28 17:40:37.632 2024-02-28 17:40:37.632 3000 FEE 442406 6499 6102669 2024-02-28 17:40:37.632 2024-02-28 17:40:37.632 27000 TIP 442406 21216 6102675 2024-02-28 17:41:56.63 2024-02-28 17:41:56.63 1600 FEE 442483 19378 6102676 2024-02-28 17:41:56.63 2024-02-28 17:41:56.63 14400 TIP 442483 16809 6102680 2024-02-28 17:42:50.07 2024-02-28 17:42:50.07 1000 FEE 442485 17147 6102692 2024-02-28 17:43:54.803 2024-02-28 17:43:54.803 3300 FEE 442485 21398 6102693 2024-02-28 17:43:54.803 2024-02-28 17:43:54.803 29700 TIP 442485 14657 6102696 2024-02-28 17:44:23.156 2024-02-28 17:44:23.156 7700 FEE 442483 21424 6102697 2024-02-28 17:44:23.156 2024-02-28 17:44:23.156 69300 TIP 442483 19888 6102700 2024-02-28 17:44:23.681 2024-02-28 17:44:23.681 7700 FEE 442483 9246 6102701 2024-02-28 17:44:23.681 2024-02-28 17:44:23.681 69300 TIP 442483 8037 6102713 2024-02-28 17:45:15.508 2024-02-28 17:45:15.508 500 FEE 442378 4654 6102714 2024-02-28 17:45:15.508 2024-02-28 17:45:15.508 4500 TIP 442378 20602 6102715 2024-02-28 17:45:34.758 2024-02-28 17:45:34.758 1000 FEE 442489 896 6102718 2024-02-28 17:46:09.812 2024-02-28 17:46:09.812 1000 FEE 442484 16296 6102719 2024-02-28 17:46:09.812 2024-02-28 17:46:09.812 9000 TIP 442484 964 6102726 2024-02-28 17:47:01.307 2024-02-28 17:47:01.307 2100 FEE 441843 766 6102727 2024-02-28 17:47:01.307 2024-02-28 17:47:01.307 18900 TIP 441843 21320 6102728 2024-02-28 17:47:01.478 2024-02-28 17:47:01.478 2100 FEE 441843 7760 6102729 2024-02-28 17:47:01.478 2024-02-28 17:47:01.478 18900 TIP 441843 11443 6102730 2024-02-28 17:47:01.709 2024-02-28 17:47:01.709 2100 FEE 441843 1272 6102731 2024-02-28 17:47:01.709 2024-02-28 17:47:01.709 18900 TIP 441843 18269 6102733 2024-02-28 17:47:05.08 2024-02-28 17:47:05.08 1000 FEE 442170 5449 6102734 2024-02-28 17:47:05.08 2024-02-28 17:47:05.08 9000 TIP 442170 18517 6102786 2024-02-28 17:51:44.927 2024-02-28 17:51:44.927 700 FEE 442313 18659 6102787 2024-02-28 17:51:44.927 2024-02-28 17:51:44.927 6300 TIP 442313 17535 6102788 2024-02-28 17:51:45.209 2024-02-28 17:51:45.209 700 FEE 442313 16867 6102789 2024-02-28 17:51:45.209 2024-02-28 17:51:45.209 6300 TIP 442313 2338 6102791 2024-02-28 17:52:30.86 2024-02-28 17:52:30.86 1000 FEE 442500 6003 6102815 2024-02-28 17:55:34.916 2024-02-28 17:55:34.916 1000 FEE 442503 1737 6102845 2024-02-28 17:59:48.799 2024-02-28 17:59:48.799 1000 FEE 442507 1180 6102862 2024-02-28 18:02:15.632 2024-02-28 18:02:15.632 100 FEE 442298 18230 6102863 2024-02-28 18:02:15.632 2024-02-28 18:02:15.632 900 TIP 442298 620 6102864 2024-02-28 18:02:23.463 2024-02-28 18:02:23.463 500 FEE 440692 18817 6102865 2024-02-28 18:02:23.463 2024-02-28 18:02:23.463 4500 TIP 440692 2000 6102885 2024-02-28 18:04:11.081 2024-02-28 18:04:11.081 1000 FEE 442512 20613 6102887 2024-02-28 18:04:41.048 2024-02-28 18:04:41.048 1000 FEE 442514 14376 6102936 2024-02-28 18:08:30.506 2024-02-28 18:08:30.506 1000 POLL 442163 13046 6102937 2024-02-28 18:08:43.159 2024-02-28 18:08:43.159 1000 FEE 442522 19878 6102958 2024-02-28 18:09:46.072 2024-02-28 18:09:46.072 5700 FEE 442522 27 6102959 2024-02-28 18:09:46.072 2024-02-28 18:09:46.072 51300 TIP 442522 20546 6103008 2024-02-28 18:16:22.948 2024-02-28 18:16:22.948 2000 FEE 442508 20619 6103009 2024-02-28 18:16:22.948 2024-02-28 18:16:22.948 18000 TIP 442508 20704 6103020 2024-02-28 18:16:26.319 2024-02-28 18:16:26.319 1000 FEE 442526 6268 6102065 2024-02-28 16:59:33.482 2024-02-28 16:59:33.482 1000 FEE 442401 21116 6102067 2024-02-28 16:59:35.435 2024-02-28 16:59:35.435 1000 FEE 442402 20781 6102086 2024-02-28 17:00:08.684 2024-02-28 17:00:08.684 1000 FEE 442366 16194 6102087 2024-02-28 17:00:08.684 2024-02-28 17:00:08.684 9000 TIP 442366 8541 6102099 2024-02-28 17:00:52.98 2024-02-28 17:00:52.98 1000 FEE 442410 19601 6102108 2024-02-28 17:02:17.309 2024-02-28 17:02:17.309 100 FEE 442298 21481 6102109 2024-02-28 17:02:17.309 2024-02-28 17:02:17.309 900 TIP 442298 999 6102110 2024-02-28 17:02:17.571 2024-02-28 17:02:17.571 100 FEE 442298 726 6102111 2024-02-28 17:02:17.571 2024-02-28 17:02:17.571 900 TIP 442298 5173 6102146 2024-02-28 17:02:20.458 2024-02-28 17:02:20.458 100 FEE 442298 18470 6102147 2024-02-28 17:02:20.458 2024-02-28 17:02:20.458 900 TIP 442298 694 6102158 2024-02-28 17:02:21.495 2024-02-28 17:02:21.495 100 FEE 442298 20218 6102159 2024-02-28 17:02:21.495 2024-02-28 17:02:21.495 900 TIP 442298 19417 6102172 2024-02-28 17:02:22.695 2024-02-28 17:02:22.695 100 FEE 442298 5519 6102173 2024-02-28 17:02:22.695 2024-02-28 17:02:22.695 900 TIP 442298 18076 6102182 2024-02-28 17:02:23.459 2024-02-28 17:02:23.459 100 FEE 442298 20987 6102183 2024-02-28 17:02:23.459 2024-02-28 17:02:23.459 900 TIP 442298 17001 6102188 2024-02-28 17:02:23.822 2024-02-28 17:02:23.822 100 FEE 442298 695 6102189 2024-02-28 17:02:23.822 2024-02-28 17:02:23.822 900 TIP 442298 7978 6102192 2024-02-28 17:02:24.213 2024-02-28 17:02:24.213 100 FEE 442298 1044 6102193 2024-02-28 17:02:24.213 2024-02-28 17:02:24.213 900 TIP 442298 19494 6102236 2024-02-28 17:02:27.841 2024-02-28 17:02:27.841 100 FEE 442298 5522 6102237 2024-02-28 17:02:27.841 2024-02-28 17:02:27.841 900 TIP 442298 725 6102260 2024-02-28 17:02:29.902 2024-02-28 17:02:29.902 100 FEE 442298 1307 6102261 2024-02-28 17:02:29.902 2024-02-28 17:02:29.902 900 TIP 442298 19309 6102282 2024-02-28 17:02:36.49 2024-02-28 17:02:36.49 100 FEE 442311 9107 6102283 2024-02-28 17:02:36.49 2024-02-28 17:02:36.49 900 TIP 442311 14515 6102305 2024-02-28 17:02:58.252 2024-02-28 17:02:58.252 100 FEE 442406 17212 6102306 2024-02-28 17:02:58.252 2024-02-28 17:02:58.252 900 TIP 442406 12277 6102317 2024-02-28 17:03:59.099 2024-02-28 17:03:59.099 5000 FEE 442219 8870 6102318 2024-02-28 17:03:59.099 2024-02-28 17:03:59.099 45000 TIP 442219 18774 6102327 2024-02-28 17:04:38.168 2024-02-28 17:04:38.168 1000 FEE 442419 1620 6102344 2024-02-28 17:07:10.278 2024-02-28 17:07:10.278 1000 FEE 442425 21012 6102392 2024-02-28 17:13:32.594 2024-02-28 17:13:32.594 1000 FEE 442435 15588 6102395 2024-02-28 17:14:03.998 2024-02-28 17:14:03.998 3300 FEE 442404 20776 6102396 2024-02-28 17:14:03.998 2024-02-28 17:14:03.998 29700 TIP 442404 2639 6102397 2024-02-28 17:14:04.453 2024-02-28 17:14:04.453 3300 FEE 442404 19902 6102398 2024-02-28 17:14:04.453 2024-02-28 17:14:04.453 29700 TIP 442404 2741 6102399 2024-02-28 17:14:05.2 2024-02-28 17:14:05.2 3300 FEE 442404 5758 6102400 2024-02-28 17:14:05.2 2024-02-28 17:14:05.2 29700 TIP 442404 19031 6102403 2024-02-28 17:14:47.199 2024-02-28 17:14:47.199 10100 FEE 442421 19151 6102404 2024-02-28 17:14:47.199 2024-02-28 17:14:47.199 90900 TIP 442421 12609 6102407 2024-02-28 17:14:58.825 2024-02-28 17:14:58.825 2100 FEE 442406 19652 6102408 2024-02-28 17:14:58.825 2024-02-28 17:14:58.825 18900 TIP 442406 20514 6102437 2024-02-28 17:17:57.424 2024-02-28 17:17:57.424 400 FEE 442375 14169 6102438 2024-02-28 17:17:57.424 2024-02-28 17:17:57.424 3600 TIP 442375 16562 6102445 2024-02-28 17:18:23.306 2024-02-28 17:18:23.306 3300 FEE 442445 1585 6102446 2024-02-28 17:18:23.306 2024-02-28 17:18:23.306 29700 TIP 442445 854 6102456 2024-02-28 17:18:56.833 2024-02-28 17:18:56.833 3300 FEE 442444 20152 6102457 2024-02-28 17:18:56.833 2024-02-28 17:18:56.833 29700 TIP 442444 9339 6102487 2024-02-28 17:20:29.023 2024-02-28 17:20:29.023 5000 FEE 442454 2444 6102488 2024-02-28 17:20:29.023 2024-02-28 17:20:29.023 45000 TIP 442454 780 6102535 2024-02-28 17:25:17.445 2024-02-28 17:25:17.445 2100 FEE 442325 16276 6102536 2024-02-28 17:25:17.445 2024-02-28 17:25:17.445 18900 TIP 442325 19296 6102552 2024-02-28 17:26:02.621 2024-02-28 17:26:02.621 1000 FEE 442460 15488 6102555 2024-02-28 17:26:49.87 2024-02-28 17:26:49.87 2100 FEE 442084 20858 6102556 2024-02-28 17:26:49.87 2024-02-28 17:26:49.87 18900 TIP 442084 2577 6102593 2024-02-28 17:31:46.949 2024-02-28 17:31:46.949 100 FEE 442463 894 6102594 2024-02-28 17:31:46.949 2024-02-28 17:31:46.949 900 TIP 442463 19105 6102642 2024-02-28 17:36:26.385 2024-02-28 17:36:26.385 1000 FEE 439576 1585 6102643 2024-02-28 17:36:26.385 2024-02-28 17:36:26.385 9000 TIP 439576 18727 6102687 2024-02-28 17:43:25.392 2024-02-28 17:43:25.392 1000 FEE 442486 9159 6102688 2024-02-28 17:43:42.334 2024-02-28 17:43:42.334 1000 FEE 442487 638 6102689 2024-02-28 17:43:42.906 2024-02-28 17:43:42.906 5700 FEE 442473 19320 6102690 2024-02-28 17:43:42.906 2024-02-28 17:43:42.906 51300 TIP 442473 1002 6102695 2024-02-28 17:44:12.066 2024-02-28 17:44:12.066 0 FEE 442486 20998 6102723 2024-02-28 17:46:57.48 2024-02-28 17:46:57.48 4200 FEE 442223 20479 6102724 2024-02-28 17:46:57.48 2024-02-28 17:46:57.48 37800 TIP 442223 17106 6102742 2024-02-28 17:47:56.847 2024-02-28 17:47:56.847 1000 FEE 442490 7916 6102743 2024-02-28 17:47:56.847 2024-02-28 17:47:56.847 9000 TIP 442490 12291 6102760 2024-02-28 17:49:22.68 2024-02-28 17:49:22.68 1000 FEE 442498 19284 6102763 2024-02-28 17:49:33.741 2024-02-28 17:49:33.741 1000 FEE 442023 3456 6102764 2024-02-28 17:49:33.741 2024-02-28 17:49:33.741 9000 TIP 442023 4763 6102776 2024-02-28 17:50:29.731 2024-02-28 17:50:29.731 100 FEE 442483 15510 6102777 2024-02-28 17:50:29.731 2024-02-28 17:50:29.731 900 TIP 442483 736 6102793 2024-02-28 17:53:54.37 2024-02-28 17:53:54.37 21000 FEE 442462 14489 6102794 2024-02-28 17:53:54.37 2024-02-28 17:53:54.37 189000 TIP 442462 718 6102795 2024-02-28 17:53:54.843 2024-02-28 17:53:54.843 5700 FEE 442496 7659 6102796 2024-02-28 17:53:54.843 2024-02-28 17:53:54.843 51300 TIP 442496 2098 6102806 2024-02-28 17:54:54.439 2024-02-28 17:54:54.439 1000 FEE 442502 21588 6102808 2024-02-28 17:55:07.743 2024-02-28 17:55:07.743 5700 FEE 442502 2176 6102809 2024-02-28 17:55:07.743 2024-02-28 17:55:07.743 51300 TIP 442502 9341 6102817 2024-02-28 17:56:18.136 2024-02-28 17:56:18.136 1000 FEE 442504 2577 6102860 2024-02-28 18:02:08.339 2024-02-28 18:02:08.339 100 FEE 442313 18208 6102861 2024-02-28 18:02:08.339 2024-02-28 18:02:08.339 900 TIP 442313 19329 6102868 2024-02-28 18:02:23.83 2024-02-28 18:02:23.83 500 FEE 440692 15336 6102869 2024-02-28 18:02:23.83 2024-02-28 18:02:23.83 4500 TIP 440692 17708 6102876 2024-02-28 18:03:33.756 2024-02-28 18:03:33.756 5700 FEE 442511 21287 6102877 2024-02-28 18:03:33.756 2024-02-28 18:03:33.756 51300 TIP 442511 21342 6102909 2024-02-28 18:06:46.611 2024-02-28 18:06:46.611 100 FEE 442313 21214 6102910 2024-02-28 18:06:46.611 2024-02-28 18:06:46.611 900 TIP 442313 7998 6102924 2024-02-28 18:07:40.038 2024-02-28 18:07:40.038 2100 FEE 442449 19980 6102925 2024-02-28 18:07:40.038 2024-02-28 18:07:40.038 18900 TIP 442449 620 6102928 2024-02-28 18:07:54.656 2024-02-28 18:07:54.656 1000 FEE 442520 11798 6102942 2024-02-28 18:08:50.471 2024-02-28 18:08:50.471 1000 FEE 442498 20500 6102943 2024-02-28 18:08:50.471 2024-02-28 18:08:50.471 9000 TIP 442498 2188 6102964 2024-02-28 18:11:09.279 2024-02-28 18:11:09.279 1600 FEE 442508 9494 6102965 2024-02-28 18:11:09.279 2024-02-28 18:11:09.279 14400 TIP 442508 2347 6102969 2024-02-28 18:12:01.338 2024-02-28 18:12:01.338 2000 FEE 442511 21413 6102970 2024-02-28 18:12:01.338 2024-02-28 18:12:01.338 18000 TIP 442511 5776 6102100 2024-02-28 17:01:03.957 2024-02-28 17:01:03.957 1000 STREAM 141924 3518 6102309 2024-02-28 17:03:03.828 2024-02-28 17:03:03.828 1000 STREAM 141924 11018 6102329 2024-02-28 17:05:03.808 2024-02-28 17:05:03.808 1000 STREAM 141924 14074 6102337 2024-02-28 17:06:03.813 2024-02-28 17:06:03.813 1000 STREAM 141924 5865 6102343 2024-02-28 17:07:03.841 2024-02-28 17:07:03.841 1000 STREAM 141924 15337 6102347 2024-02-28 17:09:03.833 2024-02-28 17:09:03.833 1000 STREAM 141924 21412 6102386 2024-02-28 17:13:03.873 2024-02-28 17:13:03.873 1000 STREAM 141924 15367 6102394 2024-02-28 17:14:03.866 2024-02-28 17:14:03.866 1000 STREAM 141924 683 6102338 2024-02-28 17:06:13.992 2024-02-28 17:06:13.992 2100 FEE 441854 12769 6102339 2024-02-28 17:06:13.992 2024-02-28 17:06:13.992 18900 TIP 441854 1772 6102351 2024-02-28 17:09:56.767 2024-02-28 17:09:56.767 1000 FEE 442428 2963 6102354 2024-02-28 17:10:09.986 2024-02-28 17:10:09.986 1000 FEE 442154 937 6102355 2024-02-28 17:10:09.986 2024-02-28 17:10:09.986 9000 TIP 442154 12768 6102356 2024-02-28 17:10:51.701 2024-02-28 17:10:51.701 100000 FEE 442313 21609 6102357 2024-02-28 17:10:51.701 2024-02-28 17:10:51.701 900000 TIP 442313 8173 6102369 2024-02-28 17:11:36.88 2024-02-28 17:11:36.88 500 FEE 442420 7960 6102370 2024-02-28 17:11:36.88 2024-02-28 17:11:36.88 4500 TIP 442420 14258 6102377 2024-02-28 17:12:05.582 2024-02-28 17:12:05.582 5000 FEE 442433 1472 6102401 2024-02-28 17:14:30.43 2024-02-28 17:14:30.43 1000 FEE 442437 21271 6102417 2024-02-28 17:16:10.246 2024-02-28 17:16:10.246 10000 FEE 442443 14295 6102431 2024-02-28 17:17:55.343 2024-02-28 17:17:55.343 400 FEE 442430 16267 6102432 2024-02-28 17:17:55.343 2024-02-28 17:17:55.343 3600 TIP 442430 1713 6102441 2024-02-28 17:18:23.015 2024-02-28 17:18:23.015 3300 FEE 442445 19690 6102442 2024-02-28 17:18:23.015 2024-02-28 17:18:23.015 29700 TIP 442445 623 6102472 2024-02-28 17:19:16.359 2024-02-28 17:19:16.359 1000 FEE 442453 18774 6102479 2024-02-28 17:19:49.752 2024-02-28 17:19:49.752 100 FEE 442443 2577 6102480 2024-02-28 17:19:49.752 2024-02-28 17:19:49.752 900 TIP 442443 21379 6102490 2024-02-28 17:21:36.86 2024-02-28 17:21:36.86 1000 FEE 442455 7389 6102503 2024-02-28 17:24:24.112 2024-02-28 17:24:24.112 1000 FEE 442458 17201 6102539 2024-02-28 17:25:18.77 2024-02-28 17:25:18.77 1000 FEE 442459 4322 6102550 2024-02-28 17:25:54.268 2024-02-28 17:25:54.268 2100 FEE 442392 16406 6102551 2024-02-28 17:25:54.268 2024-02-28 17:25:54.268 18900 TIP 442392 19909 6102575 2024-02-28 17:30:40.342 2024-02-28 17:30:40.342 2100 FEE 441843 692 6102576 2024-02-28 17:30:40.342 2024-02-28 17:30:40.342 18900 TIP 441843 12769 6102581 2024-02-28 17:30:41.722 2024-02-28 17:30:41.722 2100 FEE 441843 4654 6102582 2024-02-28 17:30:41.722 2024-02-28 17:30:41.722 18900 TIP 441843 4831 6102613 2024-02-28 17:34:53.195 2024-02-28 17:34:53.195 1000 FEE 442472 6741 6102627 2024-02-28 17:35:20.59 2024-02-28 17:35:20.59 10000 FEE 442313 4126 6102628 2024-02-28 17:35:20.59 2024-02-28 17:35:20.59 90000 TIP 442313 10469 6102633 2024-02-28 17:35:28.839 2024-02-28 17:35:28.839 10000 FEE 442474 7119 6102644 2024-02-28 17:36:42.214 2024-02-28 17:36:42.214 1000 FEE 442408 712 6102645 2024-02-28 17:36:42.214 2024-02-28 17:36:42.214 9000 TIP 442408 10591 6102653 2024-02-28 17:37:52.569 2024-02-28 17:37:52.569 1000 FEE 442479 19463 6102661 2024-02-28 17:40:32.993 2024-02-28 17:40:32.993 2100 FEE 442023 16097 6102662 2024-02-28 17:40:32.993 2024-02-28 17:40:32.993 18900 TIP 442023 20891 6102667 2024-02-28 17:40:37.429 2024-02-28 17:40:37.429 1000 FEE 442480 20691 6102684 2024-02-28 17:43:20.427 2024-02-28 17:43:20.427 0 FEE 442483 6136 6102706 2024-02-28 17:44:32.983 2024-02-28 17:44:32.983 2100 FEE 442416 6137 6102707 2024-02-28 17:44:32.983 2024-02-28 17:44:32.983 18900 TIP 442416 21575 6102744 2024-02-28 17:47:57.268 2024-02-28 17:47:57.268 1000 FEE 442490 2075 6102745 2024-02-28 17:47:57.268 2024-02-28 17:47:57.268 9000 TIP 442490 19613 6102747 2024-02-28 17:48:05.602 2024-02-28 17:48:05.602 100000 FEE 442496 20267 6102767 2024-02-28 17:49:34.569 2024-02-28 17:49:34.569 1000 FEE 442023 644 6102768 2024-02-28 17:49:34.569 2024-02-28 17:49:34.569 9000 TIP 442023 19777 6102774 2024-02-28 17:50:23.93 2024-02-28 17:50:23.93 100 FEE 442496 5752 6102775 2024-02-28 17:50:23.93 2024-02-28 17:50:23.93 900 TIP 442496 16230 6102778 2024-02-28 17:50:48.293 2024-02-28 17:50:48.293 1000 FEE 442499 9426 6102798 2024-02-28 17:54:19.201 2024-02-28 17:54:19.201 3300 FEE 442490 12736 6102799 2024-02-28 17:54:19.201 2024-02-28 17:54:19.201 29700 TIP 442490 993 6102802 2024-02-28 17:54:19.418 2024-02-28 17:54:19.418 3300 FEE 442490 882 6102803 2024-02-28 17:54:19.418 2024-02-28 17:54:19.418 29700 TIP 442490 9418 6102825 2024-02-28 17:57:17.421 2024-02-28 17:57:17.421 1000 FEE 441843 4831 6102826 2024-02-28 17:57:17.421 2024-02-28 17:57:17.421 9000 TIP 441843 6765 6102834 2024-02-28 17:58:09.921 2024-02-28 17:58:09.921 0 FEE 442505 20162 6102866 2024-02-28 18:02:23.8 2024-02-28 18:02:23.8 500 FEE 440692 21033 6102867 2024-02-28 18:02:23.8 2024-02-28 18:02:23.8 4500 TIP 440692 697 6102872 2024-02-28 18:02:31.011 2024-02-28 18:02:31.011 100 FEE 442193 16348 6102873 2024-02-28 18:02:31.011 2024-02-28 18:02:31.011 900 TIP 442193 15239 6102896 2024-02-28 18:06:08.521 2024-02-28 18:06:08.521 1000 FEE 442516 1175 6102901 2024-02-28 18:06:38.767 2024-02-28 18:06:38.767 10000 FEE 442023 18452 6102902 2024-02-28 18:06:38.767 2024-02-28 18:06:38.767 90000 TIP 442023 14663 6102918 2024-02-28 18:07:16.004 2024-02-28 18:07:16.004 0 FEE 442519 21339 6102933 2024-02-28 18:08:22.269 2024-02-28 18:08:22.269 5700 FEE 442508 19638 6102934 2024-02-28 18:08:22.269 2024-02-28 18:08:22.269 51300 TIP 442508 929 6102940 2024-02-28 18:08:49.337 2024-02-28 18:08:49.337 1000 FEE 442498 7847 6102941 2024-02-28 18:08:49.337 2024-02-28 18:08:49.337 9000 TIP 442498 20555 6102946 2024-02-28 18:08:52.849 2024-02-28 18:08:52.849 1000 FEE 442499 16097 6102947 2024-02-28 18:08:52.849 2024-02-28 18:08:52.849 9000 TIP 442499 19199 6102951 2024-02-28 18:09:08.374 2024-02-28 18:09:08.374 2100 FEE 442513 15408 6102952 2024-02-28 18:09:08.374 2024-02-28 18:09:08.374 18900 TIP 442513 2639 6102961 2024-02-28 18:10:29.517 2024-02-28 18:10:29.517 1000 FEE 442524 18923 6102962 2024-02-28 18:11:02.558 2024-02-28 18:11:02.558 1000 POLL 442163 1738 6102980 2024-02-28 18:12:57.378 2024-02-28 18:12:57.378 3300 FEE 442513 623 6102981 2024-02-28 18:12:57.378 2024-02-28 18:12:57.378 29700 TIP 442513 1401 6102998 2024-02-28 18:16:09.096 2024-02-28 18:16:09.096 1000 FEE 442526 6164 6102999 2024-02-28 18:16:09.096 2024-02-28 18:16:09.096 9000 TIP 442526 18735 6103006 2024-02-28 18:16:22.68 2024-02-28 18:16:22.68 1000 FEE 442508 902 6103007 2024-02-28 18:16:22.68 2024-02-28 18:16:22.68 9000 TIP 442508 14225 6103063 2024-02-28 18:24:52.883 2024-02-28 18:24:52.883 1000 FEE 442538 15474 6103085 2024-02-28 18:27:03.839 2024-02-28 18:27:03.839 0 FEE 442538 10311 6103105 2024-02-28 18:32:19.037 2024-02-28 18:32:19.037 1000 FEE 442507 21498 6103106 2024-02-28 18:32:19.037 2024-02-28 18:32:19.037 9000 TIP 442507 20523 6103128 2024-02-28 18:34:49.888 2024-02-28 18:34:49.888 0 FEE 442541 21063 6103137 2024-02-28 18:37:11.811 2024-02-28 18:37:11.811 100000 FEE 442548 666 6103149 2024-02-28 18:39:06.985 2024-02-28 18:39:06.985 1000 FEE 442406 14258 6103150 2024-02-28 18:39:06.985 2024-02-28 18:39:06.985 9000 TIP 442406 1298 6103156 2024-02-28 18:40:05.197 2024-02-28 18:40:05.197 400 FEE 442546 876 6103157 2024-02-28 18:40:05.197 2024-02-28 18:40:05.197 3600 TIP 442546 16667 6103171 2024-02-28 18:42:21.161 2024-02-28 18:42:21.161 10000 FEE 441843 977 6103172 2024-02-28 18:42:21.161 2024-02-28 18:42:21.161 90000 TIP 441843 672 6103173 2024-02-28 18:43:01.768 2024-02-28 18:43:01.768 2100 FEE 442346 2722 6103174 2024-02-28 18:43:01.768 2024-02-28 18:43:01.768 18900 TIP 442346 19615 6103180 2024-02-28 18:45:49.107 2024-02-28 18:45:49.107 1000000 FEE 442553 19690 6103187 2024-02-28 18:48:54.853 2024-02-28 18:48:54.853 100000 DONT_LIKE_THIS 442177 13767 6103225 2024-02-28 18:51:09.253 2024-02-28 18:51:09.253 2100 FEE 441853 9655 6103226 2024-02-28 18:51:09.253 2024-02-28 18:51:09.253 18900 TIP 441853 19105 6103251 2024-02-28 18:52:04.093 2024-02-28 18:52:04.093 2100 FEE 442120 19785 6103252 2024-02-28 18:52:04.093 2024-02-28 18:52:04.093 18900 TIP 442120 17001 6103280 2024-02-28 18:54:37.725 2024-02-28 18:54:37.725 1000 FEE 442553 13361 6103281 2024-02-28 18:54:37.725 2024-02-28 18:54:37.725 9000 TIP 442553 19966 6103293 2024-02-28 18:55:15.77 2024-02-28 18:55:15.77 1000 FEE 442551 21614 6102470 2024-02-28 17:19:13.868 2024-02-28 17:19:13.868 1000 FEE 442230 21522 6102471 2024-02-28 17:19:13.868 2024-02-28 17:19:13.868 9000 TIP 442230 18269 6102481 2024-02-28 17:20:02.772 2024-02-28 17:20:02.772 100 FEE 442440 21612 6102482 2024-02-28 17:20:02.772 2024-02-28 17:20:02.772 900 TIP 442440 676 6102486 2024-02-28 17:20:13.823 2024-02-28 17:20:13.823 1000 FEE 442454 5597 6102495 2024-02-28 17:21:44.044 2024-02-28 17:21:44.044 360000 FEE 442084 1003 6102496 2024-02-28 17:21:44.044 2024-02-28 17:21:44.044 3240000 TIP 442084 6578 6102515 2024-02-28 17:25:03.319 2024-02-28 17:25:03.319 2100 FEE 441843 1983 6102516 2024-02-28 17:25:03.319 2024-02-28 17:25:03.319 18900 TIP 441843 663 6102525 2024-02-28 17:25:10.315 2024-02-28 17:25:10.315 2100 FEE 441968 1236 6102526 2024-02-28 17:25:10.315 2024-02-28 17:25:10.315 18900 TIP 441968 13781 6102531 2024-02-28 17:25:12.918 2024-02-28 17:25:12.918 2100 FEE 442191 1490 6102532 2024-02-28 17:25:12.918 2024-02-28 17:25:12.918 18900 TIP 442191 9920 6102560 2024-02-28 17:27:18.561 2024-02-28 17:27:18.561 1000 FEE 442462 21021 6102574 2024-02-28 17:30:13.384 2024-02-28 17:30:13.384 1000 FEE 442467 16556 6102609 2024-02-28 17:34:14.406 2024-02-28 17:34:14.406 2100 FEE 441247 15408 6102610 2024-02-28 17:34:14.406 2024-02-28 17:34:14.406 18900 TIP 441247 8385 6102611 2024-02-28 17:34:35.612 2024-02-28 17:34:35.612 1000 FEE 442470 686 6102615 2024-02-28 17:35:00.649 2024-02-28 17:35:00.649 2100 FEE 442446 1740 6102616 2024-02-28 17:35:00.649 2024-02-28 17:35:00.649 18900 TIP 442446 20901 6102623 2024-02-28 17:35:19.137 2024-02-28 17:35:19.137 10000 FEE 442313 15762 6102624 2024-02-28 17:35:19.137 2024-02-28 17:35:19.137 90000 TIP 442313 17172 6102646 2024-02-28 17:36:42.907 2024-02-28 17:36:42.907 1000 FEE 442408 18174 6102647 2024-02-28 17:36:42.907 2024-02-28 17:36:42.907 9000 TIP 442408 17800 6102657 2024-02-28 17:40:09.015 2024-02-28 17:40:09.015 2100 FEE 442432 12356 6102658 2024-02-28 17:40:09.015 2024-02-28 17:40:09.015 18900 TIP 442432 13076 6102659 2024-02-28 17:40:28.341 2024-02-28 17:40:28.341 5700 FEE 442230 1051 6102660 2024-02-28 17:40:28.341 2024-02-28 17:40:28.341 51300 TIP 442230 2367 6102665 2024-02-28 17:40:33.393 2024-02-28 17:40:33.393 2100 FEE 442023 1208 6102666 2024-02-28 17:40:33.393 2024-02-28 17:40:33.393 18900 TIP 442023 15148 6102711 2024-02-28 17:45:09.25 2024-02-28 17:45:09.25 5000 FEE 442473 18680 6102712 2024-02-28 17:45:09.25 2024-02-28 17:45:09.25 45000 TIP 442473 10280 6102725 2024-02-28 17:46:58.857 2024-02-28 17:46:58.857 1000 POLL 442163 19018 6102737 2024-02-28 17:47:31.225 2024-02-28 17:47:31.225 2500 FEE 442170 12769 6102738 2024-02-28 17:47:31.225 2024-02-28 17:47:31.225 22500 TIP 442170 9084 6102739 2024-02-28 17:47:32.414 2024-02-28 17:47:32.414 2500 FEE 442170 16747 6102740 2024-02-28 17:47:32.414 2024-02-28 17:47:32.414 22500 TIP 442170 10409 6102748 2024-02-28 17:48:13.467 2024-02-28 17:48:13.467 0 FEE 442483 20730 6102753 2024-02-28 17:48:21.926 2024-02-28 17:48:21.926 2100 FEE 442084 657 6102754 2024-02-28 17:48:21.926 2024-02-28 17:48:21.926 18900 TIP 442084 8423 6102755 2024-02-28 17:48:22.141 2024-02-28 17:48:22.141 2100 FEE 442084 18114 6102756 2024-02-28 17:48:22.141 2024-02-28 17:48:22.141 18900 TIP 442084 8541 6102758 2024-02-28 17:49:10.448 2024-02-28 17:49:10.448 1000 FEE 442497 13169 6102769 2024-02-28 17:49:34.906 2024-02-28 17:49:34.906 1000 FEE 442023 19836 6102770 2024-02-28 17:49:34.906 2024-02-28 17:49:34.906 9000 TIP 442023 20674 6102782 2024-02-28 17:51:14.498 2024-02-28 17:51:14.498 5000 FEE 442498 1825 6102783 2024-02-28 17:51:14.498 2024-02-28 17:51:14.498 45000 TIP 442498 17001 6102841 2024-02-28 17:59:33.047 2024-02-28 17:59:33.047 1000 FEE 442506 1784 6102857 2024-02-28 18:01:21.424 2024-02-28 18:01:21.424 1000 FEE 442510 1718 6102858 2024-02-28 18:01:56.763 2024-02-28 18:01:56.763 1000 POLL 442163 16194 6102889 2024-02-28 18:05:48.509 2024-02-28 18:05:48.509 1000 FEE 441799 9159 6102890 2024-02-28 18:05:48.509 2024-02-28 18:05:48.509 9000 TIP 441799 9476 6102894 2024-02-28 18:06:05.283 2024-02-28 18:06:05.283 100 FEE 441800 6430 6102895 2024-02-28 18:06:05.283 2024-02-28 18:06:05.283 900 TIP 441800 635 6102897 2024-02-28 18:06:16.807 2024-02-28 18:06:16.807 1000 FEE 442517 18525 6102905 2024-02-28 18:06:41.354 2024-02-28 18:06:41.354 100 FEE 442313 9796 6102906 2024-02-28 18:06:41.354 2024-02-28 18:06:41.354 900 TIP 442313 18892 6102911 2024-02-28 18:06:54.356 2024-02-28 18:06:54.356 1000 FEE 442519 1692 6102913 2024-02-28 18:07:03.47 2024-02-28 18:07:03.47 100 FEE 442163 4014 6102914 2024-02-28 18:07:03.47 2024-02-28 18:07:03.47 900 TIP 442163 19524 6102919 2024-02-28 18:07:20.188 2024-02-28 18:07:20.188 10000 DONT_LIKE_THIS 442070 16633 6102966 2024-02-28 18:11:20.193 2024-02-28 18:11:20.193 1000 FEE 442525 18557 6102982 2024-02-28 18:13:01.691 2024-02-28 18:13:01.691 1100 FEE 442513 11716 6102983 2024-02-28 18:13:01.691 2024-02-28 18:13:01.691 9900 TIP 442513 7395 6102485 2024-02-28 17:20:03.213 2024-02-28 17:20:03.213 1000 STREAM 141924 20738 6102489 2024-02-28 17:21:03.21 2024-02-28 17:21:03.21 1000 STREAM 141924 12609 6102497 2024-02-28 17:22:03.223 2024-02-28 17:22:03.223 1000 STREAM 141924 20509 6102501 2024-02-28 17:23:03.218 2024-02-28 17:23:03.218 1000 STREAM 141924 20412 6102502 2024-02-28 17:24:03.242 2024-02-28 17:24:03.242 1000 STREAM 141924 997 6102514 2024-02-28 17:25:03.258 2024-02-28 17:25:03.258 1000 STREAM 141924 1647 6102553 2024-02-28 17:26:03.25 2024-02-28 17:26:03.25 1000 STREAM 141924 692 6102564 2024-02-28 17:28:03.245 2024-02-28 17:28:03.245 1000 STREAM 141924 9695 6102585 2024-02-28 17:31:03.251 2024-02-28 17:31:03.251 1000 STREAM 141924 649 6102598 2024-02-28 17:33:03.259 2024-02-28 17:33:03.259 1000 STREAM 141924 10007 6102638 2024-02-28 17:36:03.291 2024-02-28 17:36:03.291 1000 STREAM 141924 8448 6102648 2024-02-28 17:37:03.281 2024-02-28 17:37:03.281 1000 STREAM 141924 1047 6102655 2024-02-28 17:39:03.299 2024-02-28 17:39:03.299 1000 STREAM 141924 14404 6102683 2024-02-28 17:43:03.302 2024-02-28 17:43:03.302 1000 STREAM 141924 641 6102694 2024-02-28 17:44:03.317 2024-02-28 17:44:03.317 1000 STREAM 141924 21387 6102710 2024-02-28 17:45:03.326 2024-02-28 17:45:03.326 1000 STREAM 141924 13399 6102717 2024-02-28 17:46:03.34 2024-02-28 17:46:03.34 1000 STREAM 141924 18472 6102757 2024-02-28 17:49:03.36 2024-02-28 17:49:03.36 1000 STREAM 141924 11498 6102779 2024-02-28 17:51:03.361 2024-02-28 17:51:03.361 1000 STREAM 141924 1454 6102874 2024-02-28 18:03:03.513 2024-02-28 18:03:03.513 1000 STREAM 141924 956 6102990 2024-02-28 18:14:03.604 2024-02-28 18:14:03.604 1000 STREAM 141924 2010 6102995 2024-02-28 18:16:03.614 2024-02-28 18:16:03.614 1000 STREAM 141924 18270 6103035 2024-02-28 18:18:03.631 2024-02-28 18:18:03.631 1000 STREAM 141924 8945 6103061 2024-02-28 18:24:03.644 2024-02-28 18:24:03.644 1000 STREAM 141924 19501 6103102 2024-02-28 18:32:03.686 2024-02-28 18:32:03.686 1000 STREAM 141924 17106 6103141 2024-02-28 18:38:03.763 2024-02-28 18:38:03.763 1000 STREAM 141924 20788 6103169 2024-02-28 18:41:03.77 2024-02-28 18:41:03.77 1000 STREAM 141924 12951 6102704 2024-02-28 17:44:23.877 2024-02-28 17:44:23.877 7700 FEE 442483 13587 6102705 2024-02-28 17:44:23.877 2024-02-28 17:44:23.877 69300 TIP 442483 21103 6102716 2024-02-28 17:45:35.517 2024-02-28 17:45:35.517 1000 FEE 442490 5794 6102751 2024-02-28 17:48:21.804 2024-02-28 17:48:21.804 2100 FEE 442084 19524 6102752 2024-02-28 17:48:21.804 2024-02-28 17:48:21.804 18900 TIP 442084 20972 6102761 2024-02-28 17:49:33.281 2024-02-28 17:49:33.281 1000 FEE 442023 10611 6102762 2024-02-28 17:49:33.281 2024-02-28 17:49:33.281 9000 TIP 442023 20713 6102813 2024-02-28 17:55:23.151 2024-02-28 17:55:23.151 3000 FEE 442469 782 6102814 2024-02-28 17:55:23.151 2024-02-28 17:55:23.151 27000 TIP 442469 700 6102818 2024-02-28 17:56:21.302 2024-02-28 17:56:21.302 100000 FEE 442505 1631 6102819 2024-02-28 17:56:27.234 2024-02-28 17:56:27.234 1000 FEE 440882 20906 6102820 2024-02-28 17:56:27.234 2024-02-28 17:56:27.234 9000 TIP 440882 12911 6102842 2024-02-28 17:59:36.67 2024-02-28 17:59:36.67 16200 FEE 442496 19284 6102843 2024-02-28 17:59:36.67 2024-02-28 17:59:36.67 145800 TIP 442496 9705 6102846 2024-02-28 17:59:53.731 2024-02-28 17:59:53.731 77000 DONT_LIKE_THIS 442501 13547 6102849 2024-02-28 18:00:06.115 2024-02-28 18:00:06.115 1000 FEE 442509 658 6102855 2024-02-28 18:01:11.126 2024-02-28 18:01:11.126 200 FEE 442496 3377 6102856 2024-02-28 18:01:11.126 2024-02-28 18:01:11.126 1800 TIP 442496 10719 6102883 2024-02-28 18:04:09.708 2024-02-28 18:04:09.708 100 FEE 441896 626 6102884 2024-02-28 18:04:09.708 2024-02-28 18:04:09.708 900 TIP 441896 1162 6102899 2024-02-28 18:06:38.548 2024-02-28 18:06:38.548 100 FEE 442313 10979 6102900 2024-02-28 18:06:38.548 2024-02-28 18:06:38.548 900 TIP 442313 14168 6102920 2024-02-28 18:07:24.738 2024-02-28 18:07:24.738 100 FEE 442170 16301 6102921 2024-02-28 18:07:24.738 2024-02-28 18:07:24.738 900 TIP 442170 20680 6102932 2024-02-28 18:08:15.438 2024-02-28 18:08:15.438 1000 FEE 442521 20525 6102935 2024-02-28 18:08:29.819 2024-02-28 18:08:29.819 1000 POLL 442163 900 6102948 2024-02-28 18:09:03.129 2024-02-28 18:09:03.129 2100 FEE 442460 14489 6102949 2024-02-28 18:09:03.129 2024-02-28 18:09:03.129 18900 TIP 442460 21329 6102956 2024-02-28 18:09:40.82 2024-02-28 18:09:40.82 5700 FEE 442523 12976 6102957 2024-02-28 18:09:40.82 2024-02-28 18:09:40.82 51300 TIP 442523 9099 6102967 2024-02-28 18:11:29.947 2024-02-28 18:11:29.947 100000 FEE 442526 20306 6102974 2024-02-28 18:12:29.535 2024-02-28 18:12:29.535 1000 FEE 442528 2444 6102976 2024-02-28 18:12:44.312 2024-02-28 18:12:44.312 5700 FEE 442529 20254 6102977 2024-02-28 18:12:44.312 2024-02-28 18:12:44.312 51300 TIP 442529 699 6103051 2024-02-28 18:20:54.374 2024-02-28 18:20:54.374 2100 FEE 442496 12289 6103052 2024-02-28 18:20:54.374 2024-02-28 18:20:54.374 18900 TIP 442496 18608 6103058 2024-02-28 18:22:54.175 2024-02-28 18:22:54.175 4200 FEE 441991 6058 6103059 2024-02-28 18:22:54.175 2024-02-28 18:22:54.175 37800 TIP 441991 8926 6103062 2024-02-28 18:24:11.621 2024-02-28 18:24:11.621 100000 FEE 442537 18995 6103072 2024-02-28 18:26:41.394 2024-02-28 18:26:41.394 2100 FEE 441715 5522 6103073 2024-02-28 18:26:41.394 2024-02-28 18:26:41.394 18900 TIP 441715 13406 6103074 2024-02-28 18:27:01.605 2024-02-28 18:27:01.605 1000 FEE 442396 11450 6103075 2024-02-28 18:27:01.605 2024-02-28 18:27:01.605 9000 TIP 442396 16754 6103081 2024-02-28 18:27:02.374 2024-02-28 18:27:02.374 1000 FEE 442396 20208 6103082 2024-02-28 18:27:02.374 2024-02-28 18:27:02.374 9000 TIP 442396 9159 6103101 2024-02-28 18:31:50.966 2024-02-28 18:31:50.966 1000 FEE 442543 844 6103107 2024-02-28 18:32:19.556 2024-02-28 18:32:19.556 1000 FEE 442507 15624 6103108 2024-02-28 18:32:19.556 2024-02-28 18:32:19.556 9000 TIP 442507 7989 6103147 2024-02-28 18:39:06.573 2024-02-28 18:39:06.573 1000 FEE 442406 18380 6103148 2024-02-28 18:39:06.573 2024-02-28 18:39:06.573 9000 TIP 442406 19126 6103160 2024-02-28 18:40:07.13 2024-02-28 18:40:07.13 400 FEE 442521 658 6103161 2024-02-28 18:40:07.13 2024-02-28 18:40:07.13 3600 TIP 442521 18641 6103212 2024-02-28 18:50:21.39 2024-02-28 18:50:21.39 2100 FEE 442553 9843 6103213 2024-02-28 18:50:21.39 2024-02-28 18:50:21.39 18900 TIP 442553 20788 6103223 2024-02-28 18:51:04.671 2024-02-28 18:51:04.671 2100 FEE 441592 8985 6103224 2024-02-28 18:51:04.671 2024-02-28 18:51:04.671 18900 TIP 441592 7979 6103231 2024-02-28 18:51:17.132 2024-02-28 18:51:17.132 1000 FEE 442560 13348 6103237 2024-02-28 18:51:23.621 2024-02-28 18:51:23.621 2100 FEE 442100 10016 6103238 2024-02-28 18:51:23.621 2024-02-28 18:51:23.621 18900 TIP 442100 1800 6103242 2024-02-28 18:51:42.582 2024-02-28 18:51:42.582 2100 FEE 442086 20152 6103243 2024-02-28 18:51:42.582 2024-02-28 18:51:42.582 18900 TIP 442086 19967 6103246 2024-02-28 18:51:56.501 2024-02-28 18:51:56.501 100 FEE 442191 3439 6103247 2024-02-28 18:51:56.501 2024-02-28 18:51:56.501 900 TIP 442191 9362 6103275 2024-02-28 18:54:20.585 2024-02-28 18:54:20.585 1000 FEE 442563 20436 6103276 2024-02-28 18:54:20.585 2024-02-28 18:54:20.585 9000 TIP 442563 21472 6103303 2024-02-28 18:55:59.308 2024-02-28 18:55:59.308 900 FEE 442556 18828 6103304 2024-02-28 18:55:59.308 2024-02-28 18:55:59.308 8100 TIP 442556 19910 6103306 2024-02-28 18:56:03.435 2024-02-28 18:56:03.435 1000 FEE 442565 9339 6103317 2024-02-28 18:58:25.389 2024-02-28 18:58:25.389 1000 POLL 441660 17030 6103320 2024-02-28 18:58:50.858 2024-02-28 18:58:50.858 100 FEE 442496 6798 6103321 2024-02-28 18:58:50.858 2024-02-28 18:58:50.858 900 TIP 442496 20892 6103322 2024-02-28 18:58:51.866 2024-02-28 18:58:51.866 900 FEE 442496 2390 6103323 2024-02-28 18:58:51.866 2024-02-28 18:58:51.866 8100 TIP 442496 11621 6103353 2024-02-28 19:00:06.566 2024-02-28 19:00:06.566 5700 FEE 442551 1564 6103354 2024-02-28 19:00:06.566 2024-02-28 19:00:06.566 51300 TIP 442551 2088 6103476 2024-02-28 19:23:59.748 2024-02-28 19:23:59.748 90000 FEE 442170 21466 6103477 2024-02-28 19:23:59.748 2024-02-28 19:23:59.748 810000 TIP 442170 20509 6103478 2024-02-28 19:24:01.701 2024-02-28 19:24:01.701 90000 FEE 441854 15925 6103479 2024-02-28 19:24:01.701 2024-02-28 19:24:01.701 810000 TIP 441854 17166 6103533 2024-02-28 19:27:44.543 2024-02-28 19:27:44.543 7700 FEE 442551 16194 6103534 2024-02-28 19:27:44.543 2024-02-28 19:27:44.543 69300 TIP 442551 21037 6103551 2024-02-28 19:27:45.407 2024-02-28 19:27:45.407 7700 FEE 442551 10013 6103552 2024-02-28 19:27:45.407 2024-02-28 19:27:45.407 69300 TIP 442551 17707 6103559 2024-02-28 19:27:55.126 2024-02-28 19:27:55.126 1000 FEE 442266 807 6103560 2024-02-28 19:27:55.126 2024-02-28 19:27:55.126 9000 TIP 442266 15367 6103574 2024-02-28 19:32:27.776 2024-02-28 19:32:27.776 1100 FEE 442548 16513 6103575 2024-02-28 19:32:27.776 2024-02-28 19:32:27.776 9900 TIP 442548 2206 6103589 2024-02-28 19:36:20.896 2024-02-28 19:36:20.896 1100 FEE 442023 19996 6103590 2024-02-28 19:36:20.896 2024-02-28 19:36:20.896 9900 TIP 442023 964 6103612 2024-02-28 19:41:34.048 2024-02-28 19:41:34.048 100000 FEE 442023 1576 6103613 2024-02-28 19:41:34.048 2024-02-28 19:41:34.048 900000 TIP 442023 19967 6103619 2024-02-28 19:41:46.263 2024-02-28 19:41:46.263 100 FEE 442603 8173 6103620 2024-02-28 19:41:46.263 2024-02-28 19:41:46.263 900 TIP 442603 4763 6103640 2024-02-28 19:45:16.725 2024-02-28 19:45:16.725 1100 FEE 441749 712 6103641 2024-02-28 19:45:16.725 2024-02-28 19:45:16.725 9900 TIP 441749 20745 6103655 2024-02-28 19:47:00.224 2024-02-28 19:47:00.224 2100 FEE 437269 7916 6103656 2024-02-28 19:47:00.224 2024-02-28 19:47:00.224 18900 TIP 437269 9363 6103663 2024-02-28 19:47:02.201 2024-02-28 19:47:02.201 2100 FEE 437269 10273 6103664 2024-02-28 19:47:02.201 2024-02-28 19:47:02.201 18900 TIP 437269 1316 6103679 2024-02-28 19:47:35.575 2024-02-28 19:47:35.575 2100 FEE 437269 644 6103680 2024-02-28 19:47:35.575 2024-02-28 19:47:35.575 18900 TIP 437269 19637 6103681 2024-02-28 19:47:35.977 2024-02-28 19:47:35.977 2100 FEE 437269 7675 6103682 2024-02-28 19:47:35.977 2024-02-28 19:47:35.977 18900 TIP 437269 21609 6103683 2024-02-28 19:47:39.192 2024-02-28 19:47:39.192 1000 FEE 442611 9342 6103724 2024-02-28 19:47:54.012 2024-02-28 19:47:54.012 2100 FEE 437269 20972 6103725 2024-02-28 19:47:54.012 2024-02-28 19:47:54.012 18900 TIP 437269 20642 6102807 2024-02-28 17:55:04.036 2024-02-28 17:55:04.036 1000 STREAM 141924 7986 6102833 2024-02-28 17:58:02.09 2024-02-28 17:58:02.09 1000 STREAM 141924 5306 6102821 2024-02-28 17:56:47.395 2024-02-28 17:56:47.395 0 FEE 442505 989 6102823 2024-02-28 17:57:16.843 2024-02-28 17:57:16.843 1000 FEE 441843 12768 6102824 2024-02-28 17:57:16.843 2024-02-28 17:57:16.843 9000 TIP 441843 16954 6102827 2024-02-28 17:57:17.909 2024-02-28 17:57:17.909 1000 FEE 441843 6555 6102828 2024-02-28 17:57:17.909 2024-02-28 17:57:17.909 9000 TIP 441843 17218 6102836 2024-02-28 17:58:47.316 2024-02-28 17:58:47.316 10000 FEE 442023 19553 6102837 2024-02-28 17:58:47.316 2024-02-28 17:58:47.316 90000 TIP 442023 3709 6102839 2024-02-28 17:59:07.306 2024-02-28 17:59:07.306 2100 FEE 442503 17690 6102840 2024-02-28 17:59:07.306 2024-02-28 17:59:07.306 18900 TIP 442503 13398 6102850 2024-02-28 18:00:16.628 2024-02-28 18:00:16.628 2100 FEE 442507 21577 6102851 2024-02-28 18:00:16.628 2024-02-28 18:00:16.628 18900 TIP 442507 1195 6102852 2024-02-28 18:01:02.335 2024-02-28 18:01:02.335 10000 FEE 442084 3478 6102853 2024-02-28 18:01:02.335 2024-02-28 18:01:02.335 90000 TIP 442084 2789 6102870 2024-02-28 18:02:23.949 2024-02-28 18:02:23.949 500 FEE 440692 5308 6102871 2024-02-28 18:02:23.949 2024-02-28 18:02:23.949 4500 TIP 440692 15617 6102875 2024-02-28 18:03:12.631 2024-02-28 18:03:12.631 120000 FEE 442511 4079 6102912 2024-02-28 18:07:01.285 2024-02-28 18:07:01.285 100000 DONT_LIKE_THIS 442480 4292 6102922 2024-02-28 18:07:35.254 2024-02-28 18:07:35.254 900 FEE 442325 13046 6102923 2024-02-28 18:07:35.254 2024-02-28 18:07:35.254 8100 TIP 442325 3717 6102926 2024-02-28 18:07:43.06 2024-02-28 18:07:43.06 2100 FEE 442479 6555 6102927 2024-02-28 18:07:43.06 2024-02-28 18:07:43.06 18900 TIP 442479 17522 6102938 2024-02-28 18:08:45.881 2024-02-28 18:08:45.881 6900 FEE 442516 929 6102939 2024-02-28 18:08:45.881 2024-02-28 18:08:45.881 62100 TIP 442516 2077 6102953 2024-02-28 18:09:25.862 2024-02-28 18:09:25.862 1000 FEE 442507 10719 6102954 2024-02-28 18:09:25.862 2024-02-28 18:09:25.862 9000 TIP 442507 21180 6102987 2024-02-28 18:13:57.808 2024-02-28 18:13:57.808 5000 FEE 442522 17535 6102988 2024-02-28 18:13:57.808 2024-02-28 18:13:57.808 45000 TIP 442522 8133 6102989 2024-02-28 18:14:00.133 2024-02-28 18:14:00.133 1000 FEE 442532 11443 6102991 2024-02-28 18:14:38.05 2024-02-28 18:14:38.05 5000 FEE 442508 12779 6102992 2024-02-28 18:14:38.05 2024-02-28 18:14:38.05 45000 TIP 442508 15159 6103016 2024-02-28 18:16:25.987 2024-02-28 18:16:25.987 1000 FEE 442526 8472 6103017 2024-02-28 18:16:25.987 2024-02-28 18:16:25.987 9000 TIP 442526 8729 6103018 2024-02-28 18:16:26.155 2024-02-28 18:16:26.155 1000 FEE 442526 20525 6103019 2024-02-28 18:16:26.155 2024-02-28 18:16:26.155 9000 TIP 442526 5809 6103022 2024-02-28 18:16:26.48 2024-02-28 18:16:26.48 1000 FEE 442526 20706 6103023 2024-02-28 18:16:26.48 2024-02-28 18:16:26.48 9000 TIP 442526 20108 6103024 2024-02-28 18:16:41.883 2024-02-28 18:16:41.883 10000 FEE 442529 16956 6103025 2024-02-28 18:16:41.883 2024-02-28 18:16:41.883 90000 TIP 442529 2773 6103042 2024-02-28 18:19:08.582 2024-02-28 18:19:08.582 1000 FEE 442535 21238 6103047 2024-02-28 18:19:55.2 2024-02-28 18:19:55.2 3100 FEE 442511 16353 6103048 2024-02-28 18:19:55.2 2024-02-28 18:19:55.2 27900 TIP 442511 4118 6103088 2024-02-28 18:27:42.527 2024-02-28 18:27:42.527 1000 FEE 442313 17519 6103089 2024-02-28 18:27:42.527 2024-02-28 18:27:42.527 9000 TIP 442313 21070 6103103 2024-02-28 18:32:12.296 2024-02-28 18:32:12.296 1000 FEE 442496 13076 6103104 2024-02-28 18:32:12.296 2024-02-28 18:32:12.296 9000 TIP 442496 20655 6103112 2024-02-28 18:33:27.617 2024-02-28 18:33:27.617 1000 FEE 442544 20849 6103117 2024-02-28 18:34:20.969 2024-02-28 18:34:20.969 0 FEE 442541 2330 6103142 2024-02-28 18:38:50.443 2024-02-28 18:38:50.443 100 FEE 442548 21469 6103143 2024-02-28 18:38:50.443 2024-02-28 18:38:50.443 900 TIP 442548 20381 6103153 2024-02-28 18:39:07.833 2024-02-28 18:39:07.833 1000 FEE 442406 16289 6103154 2024-02-28 18:39:07.833 2024-02-28 18:39:07.833 9000 TIP 442406 718 6103162 2024-02-28 18:40:08.472 2024-02-28 18:40:08.472 400 FEE 442507 20906 6103163 2024-02-28 18:40:08.472 2024-02-28 18:40:08.472 3600 TIP 442507 20706 6103178 2024-02-28 18:44:52.449 2024-02-28 18:44:52.449 100000 FEE 442552 3683 6103204 2024-02-28 18:49:45.443 2024-02-28 18:49:45.443 2100 FEE 436074 21090 6103205 2024-02-28 18:49:45.443 2024-02-28 18:49:45.443 18900 TIP 436074 8926 6103209 2024-02-28 18:50:15.289 2024-02-28 18:50:15.289 2100 FEE 439263 11670 6103210 2024-02-28 18:50:15.289 2024-02-28 18:50:15.289 18900 TIP 439263 21373 6103232 2024-02-28 18:51:17.414 2024-02-28 18:51:17.414 2100 FEE 441974 18402 6103233 2024-02-28 18:51:17.414 2024-02-28 18:51:17.414 18900 TIP 441974 3544 6103239 2024-02-28 18:51:31.005 2024-02-28 18:51:31.005 1000 POLL 442163 2264 6103240 2024-02-28 18:51:37.904 2024-02-28 18:51:37.904 2100 FEE 442096 19878 6103241 2024-02-28 18:51:37.904 2024-02-28 18:51:37.904 18900 TIP 442096 19488 6103244 2024-02-28 18:51:53.084 2024-02-28 18:51:53.084 2100 FEE 442136 1175 6102835 2024-02-28 17:58:36.75 2024-02-28 17:58:36.75 0 FEE 442504 964 6102844 2024-02-28 17:59:37.232 2024-02-28 17:59:37.232 77000 DONT_LIKE_THIS 442505 19352 6102878 2024-02-28 18:03:37.718 2024-02-28 18:03:37.718 5700 FEE 442510 2952 6102879 2024-02-28 18:03:37.718 2024-02-28 18:03:37.718 51300 TIP 442510 20623 6102891 2024-02-28 18:05:51.277 2024-02-28 18:05:51.277 100 FEE 441886 10393 6102892 2024-02-28 18:05:51.277 2024-02-28 18:05:51.277 900 TIP 441886 9330 6102898 2024-02-28 18:06:32.051 2024-02-28 18:06:32.051 1000 FEE 442518 18393 6102907 2024-02-28 18:06:42.215 2024-02-28 18:06:42.215 100 FEE 442313 3745 6102908 2024-02-28 18:06:42.215 2024-02-28 18:06:42.215 900 TIP 442313 19848 6102916 2024-02-28 18:07:04.083 2024-02-28 18:07:04.083 100 FEE 442163 5427 6102917 2024-02-28 18:07:04.083 2024-02-28 18:07:04.083 900 TIP 442163 2061 6102930 2024-02-28 18:08:06.415 2024-02-28 18:08:06.415 1000 FEE 442023 16556 6102931 2024-02-28 18:08:06.415 2024-02-28 18:08:06.415 9000 TIP 442023 937 6102944 2024-02-28 18:08:52.263 2024-02-28 18:08:52.263 1000 FEE 442499 17166 6102945 2024-02-28 18:08:52.263 2024-02-28 18:08:52.263 9000 TIP 442499 12911 6102975 2024-02-28 18:12:32.554 2024-02-28 18:12:32.554 11000 FEE 442529 9982 6102986 2024-02-28 18:13:53.12 2024-02-28 18:13:53.12 1000 FEE 442531 18837 6102993 2024-02-28 18:14:55.151 2024-02-28 18:14:55.151 0 FEE 442532 882 6103002 2024-02-28 18:16:10.16 2024-02-28 18:16:10.16 1000 FEE 442526 20730 6103003 2024-02-28 18:16:10.16 2024-02-28 18:16:10.16 9000 TIP 442526 17183 6103010 2024-02-28 18:16:24.338 2024-02-28 18:16:24.338 1000 FEE 442508 6148 6103011 2024-02-28 18:16:24.338 2024-02-28 18:16:24.338 9000 TIP 442508 660 6103012 2024-02-28 18:16:24.509 2024-02-28 18:16:24.509 1000 FEE 442508 16193 6103013 2024-02-28 18:16:24.509 2024-02-28 18:16:24.509 9000 TIP 442508 15226 6103036 2024-02-28 18:18:15.526 2024-02-28 18:18:15.526 0 FEE 442525 19537 6103078 2024-02-28 18:27:02.126 2024-02-28 18:27:02.126 1000 FEE 442396 14122 6103079 2024-02-28 18:27:02.126 2024-02-28 18:27:02.126 9000 TIP 442396 3518 6103086 2024-02-28 18:27:41.871 2024-02-28 18:27:41.871 1000 FEE 442313 16355 6103087 2024-02-28 18:27:41.871 2024-02-28 18:27:41.871 9000 TIP 442313 4225 6103130 2024-02-28 18:35:14.923 2024-02-28 18:35:14.923 0 FEE 442547 9365 6103131 2024-02-28 18:35:41.85 2024-02-28 18:35:41.85 100 FEE 442537 19501 6103132 2024-02-28 18:35:41.85 2024-02-28 18:35:41.85 900 TIP 442537 1209 6103184 2024-02-28 18:47:43.924 2024-02-28 18:47:43.924 1000 FEE 442554 1439 6103211 2024-02-28 18:50:19.699 2024-02-28 18:50:19.699 1000 FEE 442559 10016 6103259 2024-02-28 18:53:05.89 2024-02-28 18:53:05.89 1000 FEE 442558 12122 6103260 2024-02-28 18:53:05.89 2024-02-28 18:53:05.89 9000 TIP 442558 21422 6103262 2024-02-28 18:53:23.863 2024-02-28 18:53:23.863 1000 POLL 442163 6384 6103288 2024-02-28 18:54:49.808 2024-02-28 18:54:49.808 2100 FEE 442551 11498 6103289 2024-02-28 18:54:49.808 2024-02-28 18:54:49.808 18900 TIP 442551 21067 6103290 2024-02-28 18:54:49.899 2024-02-28 18:54:49.899 2100 FEE 442551 16194 6103291 2024-02-28 18:54:49.899 2024-02-28 18:54:49.899 18900 TIP 442551 836 6103295 2024-02-28 18:55:16.377 2024-02-28 18:55:16.377 2000 FEE 442551 917 6103296 2024-02-28 18:55:16.377 2024-02-28 18:55:16.377 18000 TIP 442551 15536 6103315 2024-02-28 18:58:24.478 2024-02-28 18:58:24.478 3300 FEE 442553 6260 6103316 2024-02-28 18:58:24.478 2024-02-28 18:58:24.478 29700 TIP 442553 2711 6103332 2024-02-28 18:59:10.244 2024-02-28 18:59:10.244 900 FEE 442551 14465 6103333 2024-02-28 18:59:10.244 2024-02-28 18:59:10.244 8100 TIP 442551 2735 6103342 2024-02-28 18:59:40.773 2024-02-28 18:59:40.773 9000 FEE 442513 2390 6103343 2024-02-28 18:59:40.773 2024-02-28 18:59:40.773 81000 TIP 442513 19153 6103360 2024-02-28 19:00:46.224 2024-02-28 19:00:46.224 9000 FEE 442508 670 6103361 2024-02-28 19:00:46.224 2024-02-28 19:00:46.224 81000 TIP 442508 6382 6103369 2024-02-28 19:01:31.05 2024-02-28 19:01:31.05 1000 FEE 442571 2773 6103384 2024-02-28 19:06:24.319 2024-02-28 19:06:24.319 2100 FEE 442508 2329 6103385 2024-02-28 19:06:24.319 2024-02-28 19:06:24.319 18900 TIP 442508 10591 6103388 2024-02-28 19:07:27.017 2024-02-28 19:07:27.017 2100 FEE 442313 21051 6103389 2024-02-28 19:07:27.017 2024-02-28 19:07:27.017 18900 TIP 442313 16867 6103403 2024-02-28 19:09:28.568 2024-02-28 19:09:28.568 10000 FEE 442580 20624 6103442 2024-02-28 19:15:23.253 2024-02-28 19:15:23.253 1000 FEE 442585 15588 6103446 2024-02-28 19:16:32.347 2024-02-28 19:16:32.347 1000 FEE 442583 1428 6103447 2024-02-28 19:16:32.347 2024-02-28 19:16:32.347 9000 TIP 442583 4048 6103460 2024-02-28 19:21:06.574 2024-02-28 19:21:06.574 1000 FEE 442587 21395 6103473 2024-02-28 19:23:17.822 2024-02-28 19:23:17.822 100 FEE 442577 749 6103474 2024-02-28 19:23:17.822 2024-02-28 19:23:17.822 900 TIP 442577 10818 6103491 2024-02-28 19:24:17.213 2024-02-28 19:24:17.213 9000 FEE 442206 8045 6103492 2024-02-28 19:24:17.213 2024-02-28 19:24:17.213 81000 TIP 442206 13143 6103493 2024-02-28 19:24:20.216 2024-02-28 19:24:20.216 100 FEE 441560 7773 6103494 2024-02-28 19:24:20.216 2024-02-28 19:24:20.216 900 TIP 441560 19018 6103521 2024-02-28 19:26:34.468 2024-02-28 19:26:34.468 170000 FEE 442594 21398 6103535 2024-02-28 19:27:44.57 2024-02-28 19:27:44.57 7700 FEE 442551 2703 6103536 2024-02-28 19:27:44.57 2024-02-28 19:27:44.57 69300 TIP 442551 4064 6103569 2024-02-28 19:31:00.595 2024-02-28 19:31:00.595 1000 FEE 442597 8242 6103576 2024-02-28 19:32:44.323 2024-02-28 19:32:44.323 1000 FEE 442598 21014 6103579 2024-02-28 19:33:28.353 2024-02-28 19:33:28.353 1000 FEE 442600 1817 6103606 2024-02-28 19:39:53.065 2024-02-28 19:39:53.065 1000 POLL 442163 17817 6103661 2024-02-28 19:47:00.839 2024-02-28 19:47:00.839 2100 FEE 437269 12561 6103662 2024-02-28 19:47:00.839 2024-02-28 19:47:00.839 18900 TIP 437269 1784 6103690 2024-02-28 19:47:50.082 2024-02-28 19:47:50.082 2100 FEE 437269 1039 6103691 2024-02-28 19:47:50.082 2024-02-28 19:47:50.082 18900 TIP 437269 12268 6103694 2024-02-28 19:47:50.538 2024-02-28 19:47:50.538 10000 FEE 442467 8416 6103695 2024-02-28 19:47:50.538 2024-02-28 19:47:50.538 90000 TIP 442467 20231 6103718 2024-02-28 19:47:53.47 2024-02-28 19:47:53.47 2100 FEE 437269 1624 6103719 2024-02-28 19:47:53.47 2024-02-28 19:47:53.47 18900 TIP 437269 5036 6103720 2024-02-28 19:47:53.543 2024-02-28 19:47:53.543 10000 FEE 442432 11789 6103721 2024-02-28 19:47:53.543 2024-02-28 19:47:53.543 90000 TIP 442432 21485 6103757 2024-02-28 19:51:48.641 2024-02-28 19:51:48.641 10000 FEE 442541 7674 6103758 2024-02-28 19:51:48.641 2024-02-28 19:51:48.641 90000 TIP 442541 14791 6103770 2024-02-28 19:54:27.707 2024-02-28 19:54:27.707 1000 FEE 442614 20073 6103771 2024-02-28 19:54:27.707 2024-02-28 19:54:27.707 9000 TIP 442614 15196 6103782 2024-02-28 19:54:29.133 2024-02-28 19:54:29.133 1000 FEE 442614 9242 6103783 2024-02-28 19:54:29.133 2024-02-28 19:54:29.133 9000 TIP 442614 20660 6103853 2024-02-28 19:59:53.65 2024-02-28 19:59:53.65 1000 FEE 442433 11956 6103854 2024-02-28 19:59:53.65 2024-02-28 19:59:53.65 9000 TIP 442433 1221 6103859 2024-02-28 20:00:01.235 2024-02-28 20:00:01.235 1000 FEE 442621 11621 6103877 2024-02-28 20:04:01.809 2024-02-28 20:04:01.809 6900 FEE 442618 5794 6103878 2024-02-28 20:04:01.809 2024-02-28 20:04:01.809 62100 TIP 442618 14381 6103928 2024-02-28 20:13:07.895 2024-02-28 20:13:07.895 1000 FEE 442623 11522 6103929 2024-02-28 20:13:07.895 2024-02-28 20:13:07.895 9000 TIP 442623 20717 6103930 2024-02-28 20:13:16.878 2024-02-28 20:13:16.878 1000 FEE 442637 6777 6103936 2024-02-28 20:14:34.314 2024-02-28 20:14:34.314 3000 FEE 442170 6202 6103937 2024-02-28 20:14:34.314 2024-02-28 20:14:34.314 27000 TIP 442170 7654 6103943 2024-02-28 20:15:00.514 2024-02-28 20:15:00.514 3300 FEE 442628 20655 6102859 2024-02-28 18:02:02.105 2024-02-28 18:02:02.105 1000 STREAM 141924 21494 6102971 2024-02-28 18:12:02.15 2024-02-28 18:12:02.15 1000 STREAM 141924 13921 6102994 2024-02-28 18:15:02.146 2024-02-28 18:15:02.146 1000 STREAM 141924 4502 6103028 2024-02-28 18:17:02.148 2024-02-28 18:17:02.148 1000 STREAM 141924 2196 6103039 2024-02-28 18:19:02.158 2024-02-28 18:19:02.158 1000 STREAM 141924 722 6103053 2024-02-28 18:21:02.159 2024-02-28 18:21:02.159 1000 STREAM 141924 20120 6103060 2024-02-28 18:23:02.161 2024-02-28 18:23:02.161 1000 STREAM 141924 11378 6103092 2024-02-28 18:29:02.205 2024-02-28 18:29:02.205 1000 STREAM 141924 21600 6103129 2024-02-28 18:35:02.234 2024-02-28 18:35:02.234 1000 STREAM 141924 1737 6103136 2024-02-28 18:37:02.249 2024-02-28 18:37:02.249 1000 STREAM 141924 1720 6103144 2024-02-28 18:39:02.26 2024-02-28 18:39:02.26 1000 STREAM 141924 12516 6103250 2024-02-28 18:52:02.484 2024-02-28 18:52:02.484 1000 STREAM 141924 4322 6103386 2024-02-28 19:07:02.604 2024-02-28 19:07:02.604 1000 STREAM 141924 628 6102886 2024-02-28 18:04:37.898 2024-02-28 18:04:37.898 210000 FEE 442513 21357 6102903 2024-02-28 18:06:41.056 2024-02-28 18:06:41.056 100 FEE 442313 2508 6102904 2024-02-28 18:06:41.056 2024-02-28 18:06:41.056 900 TIP 442313 18984 6102955 2024-02-28 18:09:27.489 2024-02-28 18:09:27.489 1000 FEE 442523 21060 6102968 2024-02-28 18:11:54.092 2024-02-28 18:11:54.092 21000 FEE 442527 20340 6102972 2024-02-28 18:12:08.117 2024-02-28 18:12:08.117 100 FEE 442513 1960 6102973 2024-02-28 18:12:08.117 2024-02-28 18:12:08.117 900 TIP 442513 2773 6102996 2024-02-28 18:16:08.925 2024-02-28 18:16:08.925 1000 FEE 442526 16665 6102997 2024-02-28 18:16:08.925 2024-02-28 18:16:08.925 9000 TIP 442526 18772 6103000 2024-02-28 18:16:09.302 2024-02-28 18:16:09.302 1000 FEE 442526 20782 6103001 2024-02-28 18:16:09.302 2024-02-28 18:16:09.302 9000 TIP 442526 9843 6103014 2024-02-28 18:16:24.635 2024-02-28 18:16:24.635 1000 FEE 442508 19601 6103015 2024-02-28 18:16:24.635 2024-02-28 18:16:24.635 9000 TIP 442508 12721 6103026 2024-02-28 18:17:01.289 2024-02-28 18:17:01.289 1500 FEE 442456 2328 6103027 2024-02-28 18:17:01.289 2024-02-28 18:17:01.289 13500 TIP 442456 11789 6103031 2024-02-28 18:17:41.728 2024-02-28 18:17:41.728 100 FEE 442529 6688 6103032 2024-02-28 18:17:41.728 2024-02-28 18:17:41.728 900 TIP 442529 19005 6103043 2024-02-28 18:19:44.714 2024-02-28 18:19:44.714 1000 FEE 442534 14195 6103044 2024-02-28 18:19:44.714 2024-02-28 18:19:44.714 9000 TIP 442534 1105 6103070 2024-02-28 18:26:26.348 2024-02-28 18:26:26.348 2100 FEE 442291 4322 6103071 2024-02-28 18:26:26.348 2024-02-28 18:26:26.348 18900 TIP 442291 6533 6103097 2024-02-28 18:30:14.18 2024-02-28 18:30:14.18 0 FEE 442541 20646 6103110 2024-02-28 18:33:03.908 2024-02-28 18:33:03.908 1000 POLL 442163 12422 6103113 2024-02-28 18:33:31.435 2024-02-28 18:33:31.435 1000 FEE 442545 12561 6103118 2024-02-28 18:34:24.226 2024-02-28 18:34:24.226 2100 FEE 442496 21159 6103119 2024-02-28 18:34:24.226 2024-02-28 18:34:24.226 18900 TIP 442496 5852 6103120 2024-02-28 18:34:24.345 2024-02-28 18:34:24.345 1000 FEE 442546 636 6103125 2024-02-28 18:34:42.723 2024-02-28 18:34:42.723 1000 FEE 442547 6136 6103126 2024-02-28 18:34:44.351 2024-02-28 18:34:44.351 2100 FEE 442490 10690 6103127 2024-02-28 18:34:44.351 2024-02-28 18:34:44.351 18900 TIP 442490 21026 6103166 2024-02-28 18:40:18.409 2024-02-28 18:40:18.409 1000 FEE 442550 18368 6103197 2024-02-28 18:49:21.041 2024-02-28 18:49:21.041 1000 FEE 442529 11328 6103198 2024-02-28 18:49:21.041 2024-02-28 18:49:21.041 9000 TIP 442529 4989 6103201 2024-02-28 18:49:29.413 2024-02-28 18:49:29.413 0 FEE 442557 17984 6103202 2024-02-28 18:49:37.483 2024-02-28 18:49:37.483 2100 FEE 435988 18667 6103203 2024-02-28 18:49:37.483 2024-02-28 18:49:37.483 18900 TIP 435988 4128 6103214 2024-02-28 18:50:49.841 2024-02-28 18:50:49.841 2100 FEE 442041 21389 6103215 2024-02-28 18:50:49.841 2024-02-28 18:50:49.841 18900 TIP 442041 989 6103216 2024-02-28 18:50:51.22 2024-02-28 18:50:51.22 2100 FEE 441979 8416 6103217 2024-02-28 18:50:51.22 2024-02-28 18:50:51.22 18900 TIP 441979 20674 6103220 2024-02-28 18:50:54.553 2024-02-28 18:50:54.553 2100 FEE 441959 17124 6103221 2024-02-28 18:50:54.553 2024-02-28 18:50:54.553 18900 TIP 441959 688 6103269 2024-02-28 18:53:29.513 2024-02-28 18:53:29.513 100 FEE 442163 20377 6103270 2024-02-28 18:53:29.513 2024-02-28 18:53:29.513 900 TIP 442163 14404 6103274 2024-02-28 18:54:18.402 2024-02-28 18:54:18.402 1000 FEE 442564 17953 6103282 2024-02-28 18:54:37.885 2024-02-28 18:54:37.885 1000 FEE 442553 12277 6103283 2024-02-28 18:54:37.885 2024-02-28 18:54:37.885 9000 TIP 442553 9276 6103284 2024-02-28 18:54:38.043 2024-02-28 18:54:38.043 1000 FEE 442553 21472 6103285 2024-02-28 18:54:38.043 2024-02-28 18:54:38.043 9000 TIP 442553 1890 6103307 2024-02-28 18:56:08.608 2024-02-28 18:56:08.608 9000 FEE 442556 2583 6103308 2024-02-28 18:56:08.608 2024-02-28 18:56:08.608 81000 TIP 442556 649 6103326 2024-02-28 18:58:56.999 2024-02-28 18:58:56.999 1000 FEE 442566 6765 6103340 2024-02-28 18:59:37.919 2024-02-28 18:59:37.919 900 FEE 442513 10862 6103341 2024-02-28 18:59:37.919 2024-02-28 18:59:37.919 8100 TIP 442513 20981 6103362 2024-02-28 19:00:46.975 2024-02-28 19:00:46.975 90000 FEE 442508 1817 6103363 2024-02-28 19:00:46.975 2024-02-28 19:00:46.975 810000 TIP 442508 4487 6103364 2024-02-28 19:00:48.802 2024-02-28 19:00:48.802 100 FEE 442553 19511 6103365 2024-02-28 19:00:48.802 2024-02-28 19:00:48.802 900 TIP 442553 19199 6102978 2024-02-28 18:12:56.909 2024-02-28 18:12:56.909 3300 FEE 442513 15100 6102979 2024-02-28 18:12:56.909 2024-02-28 18:12:56.909 29700 TIP 442513 16350 6102985 2024-02-28 18:13:33.947 2024-02-28 18:13:33.947 1000 FEE 442530 16354 6103004 2024-02-28 18:16:10.384 2024-02-28 18:16:10.384 1000 FEE 442526 20563 6103005 2024-02-28 18:16:10.384 2024-02-28 18:16:10.384 9000 TIP 442526 6688 6103033 2024-02-28 18:17:48.324 2024-02-28 18:17:48.324 100 FEE 442527 8648 6103034 2024-02-28 18:17:48.324 2024-02-28 18:17:48.324 900 TIP 442527 21343 6103037 2024-02-28 18:18:47.172 2024-02-28 18:18:47.172 1000 FEE 442533 13361 6103040 2024-02-28 18:19:05.518 2024-02-28 18:19:05.518 1600 FEE 441823 9183 6103041 2024-02-28 18:19:05.518 2024-02-28 18:19:05.518 14400 TIP 441823 16357 6103054 2024-02-28 18:21:39.271 2024-02-28 18:21:39.271 1000 POLL 442163 14258 6103067 2024-02-28 18:25:23.206 2024-02-28 18:25:23.206 0 FEE 442538 18673 6103098 2024-02-28 18:30:47.178 2024-02-28 18:30:47.178 0 FEE 442541 18556 6103140 2024-02-28 18:38:00.25 2024-02-28 18:38:00.25 1000 FEE 442549 2444 6103158 2024-02-28 18:40:06.21 2024-02-28 18:40:06.21 400 FEE 442545 14774 6103159 2024-02-28 18:40:06.21 2024-02-28 18:40:06.21 3600 TIP 442545 19813 6103177 2024-02-28 18:44:07.48 2024-02-28 18:44:07.48 100000 FEE 442551 736 6103183 2024-02-28 18:47:12.291 2024-02-28 18:47:12.291 1000 POLL 442163 18470 6103190 2024-02-28 18:49:16.51 2024-02-28 18:49:16.51 1000 FEE 442553 19668 6103191 2024-02-28 18:49:16.51 2024-02-28 18:49:16.51 9000 TIP 442553 14545 6103199 2024-02-28 18:49:21.887 2024-02-28 18:49:21.887 1000 FEE 442513 19132 6103200 2024-02-28 18:49:21.887 2024-02-28 18:49:21.887 9000 TIP 442513 19929 6103227 2024-02-28 18:51:12.335 2024-02-28 18:51:12.335 2100 FEE 441864 14357 6103228 2024-02-28 18:51:12.335 2024-02-28 18:51:12.335 18900 TIP 441864 14080 6103248 2024-02-28 18:51:58.336 2024-02-28 18:51:58.336 2100 FEE 442190 16212 6103249 2024-02-28 18:51:58.336 2024-02-28 18:51:58.336 18900 TIP 442190 20225 6103277 2024-02-28 18:54:21.078 2024-02-28 18:54:21.078 1000 FEE 442563 14195 6103278 2024-02-28 18:54:21.078 2024-02-28 18:54:21.078 9000 TIP 442563 20258 6103279 2024-02-28 18:54:34.995 2024-02-28 18:54:34.995 1000 POLL 442163 6229 6103286 2024-02-28 18:54:49.446 2024-02-28 18:54:49.446 2100 FEE 442551 7587 6103287 2024-02-28 18:54:49.446 2024-02-28 18:54:49.446 18900 TIP 442551 5825 6103310 2024-02-28 18:57:05.951 2024-02-28 18:57:05.951 5700 FEE 442553 1198 6103311 2024-02-28 18:57:05.951 2024-02-28 18:57:05.951 51300 TIP 442553 3360 6103328 2024-02-28 18:59:02.5 2024-02-28 18:59:02.5 10000 DONT_LIKE_THIS 442553 20577 6103344 2024-02-28 18:59:57.52 2024-02-28 18:59:57.52 100 FEE 442511 725 6103345 2024-02-28 18:59:57.52 2024-02-28 18:59:57.52 900 TIP 442511 4474 6103356 2024-02-28 19:00:44.977 2024-02-28 19:00:44.977 100 FEE 442508 9494 6103357 2024-02-28 19:00:44.977 2024-02-28 19:00:44.977 900 TIP 442508 19842 6103396 2024-02-28 19:08:13.329 2024-02-28 19:08:13.329 2100 FEE 442447 21216 6103397 2024-02-28 19:08:13.329 2024-02-28 19:08:13.329 18900 TIP 442447 2065 6103409 2024-02-28 19:10:24.51 2024-02-28 19:10:24.51 1000 FEE 442571 7913 6103410 2024-02-28 19:10:24.51 2024-02-28 19:10:24.51 9000 TIP 442571 11395 6103431 2024-02-28 19:13:24.576 2024-02-28 19:13:24.576 1000 FEE 442583 2077 6103448 2024-02-28 19:16:32.77 2024-02-28 19:16:32.77 1000 FEE 442583 18403 6103449 2024-02-28 19:16:32.77 2024-02-28 19:16:32.77 9000 TIP 442583 1713 6103481 2024-02-28 19:24:03.176 2024-02-28 19:24:03.176 100 FEE 441749 5069 6103482 2024-02-28 19:24:03.176 2024-02-28 19:24:03.176 900 TIP 441749 1596 6103487 2024-02-28 19:24:13.74 2024-02-28 19:24:13.74 100 FEE 442206 685 6103488 2024-02-28 19:24:13.74 2024-02-28 19:24:13.74 900 TIP 442206 21416 6103489 2024-02-28 19:24:14.158 2024-02-28 19:24:14.158 900 FEE 442206 5173 6103490 2024-02-28 19:24:14.158 2024-02-28 19:24:14.158 8100 TIP 442206 20555 6103507 2024-02-28 19:25:18.246 2024-02-28 19:25:18.246 1000 FEE 442590 18704 6103508 2024-02-28 19:25:18.246 2024-02-28 19:25:18.246 9000 TIP 442590 20799 6103511 2024-02-28 19:25:18.745 2024-02-28 19:25:18.745 1000 FEE 442590 4084 6103512 2024-02-28 19:25:18.745 2024-02-28 19:25:18.745 9000 TIP 442590 20674 6103520 2024-02-28 19:26:26.962 2024-02-28 19:26:26.962 17000 FEE 442593 987 6103529 2024-02-28 19:27:42.228 2024-02-28 19:27:42.228 2100 FEE 442539 1836 6103530 2024-02-28 19:27:42.228 2024-02-28 19:27:42.228 18900 TIP 442539 617 6103539 2024-02-28 19:27:44.712 2024-02-28 19:27:44.712 7700 FEE 442551 13399 6103540 2024-02-28 19:27:44.712 2024-02-28 19:27:44.712 69300 TIP 442551 652 6103555 2024-02-28 19:27:53.347 2024-02-28 19:27:53.347 2100 FEE 442513 3686 6103556 2024-02-28 19:27:53.347 2024-02-28 19:27:53.347 18900 TIP 442513 21520 6103557 2024-02-28 19:27:54.331 2024-02-28 19:27:54.331 2100 FEE 442468 814 6103558 2024-02-28 19:27:54.331 2024-02-28 19:27:54.331 18900 TIP 442468 21339 6103578 2024-02-28 19:33:19.206 2024-02-28 19:33:19.206 1000 FEE 442599 20246 6103591 2024-02-28 19:36:22.611 2024-02-28 19:36:22.611 300000 FEE 441886 797 6103592 2024-02-28 19:36:22.611 2024-02-28 19:36:22.611 2700000 TIP 441886 5195 6103597 2024-02-28 19:37:50.447 2024-02-28 19:37:50.447 5700 FEE 442206 14225 6103598 2024-02-28 19:37:50.447 2024-02-28 19:37:50.447 51300 TIP 442206 18271 6103609 2024-02-28 19:41:29.273 2024-02-28 19:41:29.273 1000 DONT_LIKE_THIS 442589 20704 6103617 2024-02-28 19:41:40.608 2024-02-28 19:41:40.608 500 FEE 442313 10668 6103618 2024-02-28 19:41:40.608 2024-02-28 19:41:40.608 4500 TIP 442313 16432 6103626 2024-02-28 19:43:43.818 2024-02-28 19:43:43.818 10000 FEE 442607 1007 6103627 2024-02-28 19:43:43.818 2024-02-28 19:43:43.818 90000 TIP 442607 2780 6103631 2024-02-28 19:45:05.454 2024-02-28 19:45:05.454 10000 FEE 441610 4502 6103632 2024-02-28 19:45:05.454 2024-02-28 19:45:05.454 90000 TIP 441610 9809 6103638 2024-02-28 19:45:14.668 2024-02-28 19:45:14.668 1000 FEE 442591 20182 6103639 2024-02-28 19:45:14.668 2024-02-28 19:45:14.668 9000 TIP 442591 17800 6103647 2024-02-28 19:46:03.695 2024-02-28 19:46:03.695 10000 FEE 442313 20687 6103648 2024-02-28 19:46:03.695 2024-02-28 19:46:03.695 90000 TIP 442313 19852 6103657 2024-02-28 19:47:00.366 2024-02-28 19:47:00.366 2100 FEE 437269 6327 6103021 2024-02-28 18:16:26.319 2024-02-28 18:16:26.319 9000 TIP 442526 7978 6103029 2024-02-28 18:17:14.844 2024-02-28 18:17:14.844 2100 FEE 442463 928 6103030 2024-02-28 18:17:14.844 2024-02-28 18:17:14.844 18900 TIP 442463 13046 6103038 2024-02-28 18:18:49.409 2024-02-28 18:18:49.409 1000 FEE 442534 18472 6103045 2024-02-28 18:19:44.749 2024-02-28 18:19:44.749 1000 FEE 442534 5565 6103046 2024-02-28 18:19:44.749 2024-02-28 18:19:44.749 9000 TIP 442534 746 6103083 2024-02-28 18:27:02.617 2024-02-28 18:27:02.617 1000 FEE 442396 5538 6103084 2024-02-28 18:27:02.617 2024-02-28 18:27:02.617 9000 TIP 442396 2075 6103091 2024-02-28 18:28:50.078 2024-02-28 18:28:50.078 1000 FEE 442541 18836 6103093 2024-02-28 18:29:20.248 2024-02-28 18:29:20.248 1000 FEE 442542 14465 6103100 2024-02-28 18:31:37.286 2024-02-28 18:31:37.286 0 FEE 442541 5522 6103115 2024-02-28 18:34:17.594 2024-02-28 18:34:17.594 2100 FEE 442230 16769 6103116 2024-02-28 18:34:17.594 2024-02-28 18:34:17.594 18900 TIP 442230 5852 6103121 2024-02-28 18:34:29.341 2024-02-28 18:34:29.341 2100 FEE 442206 763 6103122 2024-02-28 18:34:29.341 2024-02-28 18:34:29.341 18900 TIP 442206 19105 6103138 2024-02-28 18:37:54.89 2024-02-28 18:37:54.89 2100 FEE 442542 19943 6103139 2024-02-28 18:37:54.89 2024-02-28 18:37:54.89 18900 TIP 442542 2508 6103145 2024-02-28 18:39:06.06 2024-02-28 18:39:06.06 1000 FEE 442406 1745 6103146 2024-02-28 18:39:06.06 2024-02-28 18:39:06.06 9000 TIP 442406 9476 6103164 2024-02-28 18:40:09.285 2024-02-28 18:40:09.285 400 FEE 442475 19158 6103165 2024-02-28 18:40:09.285 2024-02-28 18:40:09.285 3600 TIP 442475 9345 6103189 2024-02-28 18:49:11.095 2024-02-28 18:49:11.095 1000 FEE 442556 16653 6103192 2024-02-28 18:49:17.31 2024-02-28 18:49:17.31 1000 FEE 442557 15843 6103193 2024-02-28 18:49:18.461 2024-02-28 18:49:18.461 1000 FEE 442551 10270 6103194 2024-02-28 18:49:18.461 2024-02-28 18:49:18.461 9000 TIP 442551 6594 6103195 2024-02-28 18:49:19.541 2024-02-28 18:49:19.541 1000 FEE 442537 20825 6103196 2024-02-28 18:49:19.541 2024-02-28 18:49:19.541 9000 TIP 442537 20993 6103207 2024-02-28 18:50:06.75 2024-02-28 18:50:06.75 2100 FEE 442254 16052 6103208 2024-02-28 18:50:06.75 2024-02-28 18:50:06.75 18900 TIP 442254 1493 6103234 2024-02-28 18:51:20.35 2024-02-28 18:51:20.35 2100 FEE 442106 15226 6103235 2024-02-28 18:51:20.35 2024-02-28 18:51:20.35 18900 TIP 442106 19570 6103255 2024-02-28 18:52:23.063 2024-02-28 18:52:23.063 2100 FEE 442078 21061 6103256 2024-02-28 18:52:23.063 2024-02-28 18:52:23.063 18900 TIP 442078 1145 6103257 2024-02-28 18:52:45.972 2024-02-28 18:52:45.972 1000 FEE 442562 4175 6103261 2024-02-28 18:53:16.54 2024-02-28 18:53:16.54 1000 FEE 442563 20663 6103267 2024-02-28 18:53:28.76 2024-02-28 18:53:28.76 100 FEE 442163 14650 6103268 2024-02-28 18:53:28.76 2024-02-28 18:53:28.76 900 TIP 442163 5590 6103271 2024-02-28 18:53:29.701 2024-02-28 18:53:29.701 100 FEE 442163 20614 6103272 2024-02-28 18:53:29.701 2024-02-28 18:53:29.701 900 TIP 442163 627 6103301 2024-02-28 18:55:59.13 2024-02-28 18:55:59.13 100 FEE 442556 21057 6103302 2024-02-28 18:55:59.13 2024-02-28 18:55:59.13 900 TIP 442556 16356 6103313 2024-02-28 18:57:36.84 2024-02-28 18:57:36.84 1000 POLL 442163 780 6103348 2024-02-28 18:59:58.833 2024-02-28 18:59:58.833 9000 FEE 442511 9366 6103349 2024-02-28 18:59:58.833 2024-02-28 18:59:58.833 81000 TIP 442511 16950 6103352 2024-02-28 19:00:05.493 2024-02-28 19:00:05.493 1000 FEE 442569 13903 6103372 2024-02-28 19:03:12.573 2024-02-28 19:03:12.573 100000 FEE 442572 18235 6103373 2024-02-28 19:03:54.859 2024-02-28 19:03:54.859 2100 FEE 442548 21563 6103374 2024-02-28 19:03:54.859 2024-02-28 19:03:54.859 18900 TIP 442548 12744 6103377 2024-02-28 19:04:41.393 2024-02-28 19:04:41.393 100 FEE 442572 8045 6103378 2024-02-28 19:04:41.393 2024-02-28 19:04:41.393 900 TIP 442572 3506 6103393 2024-02-28 19:08:00.59 2024-02-28 19:08:00.59 1000 FEE 442577 9551 6103395 2024-02-28 19:08:04.461 2024-02-28 19:08:04.461 1000 FEE 442578 1603 6103398 2024-02-28 19:08:25.721 2024-02-28 19:08:25.721 2100 FEE 442399 16542 6103399 2024-02-28 19:08:25.721 2024-02-28 19:08:25.721 18900 TIP 442399 13133 6103406 2024-02-28 19:10:21.032 2024-02-28 19:10:21.032 1000 FEE 442582 4633 6103413 2024-02-28 19:10:24.803 2024-02-28 19:10:24.803 1000 FEE 442571 7675 6103414 2024-02-28 19:10:24.803 2024-02-28 19:10:24.803 9000 TIP 442571 21323 6103427 2024-02-28 19:13:08.997 2024-02-28 19:13:08.997 3400 FEE 442313 19043 6103428 2024-02-28 19:13:08.997 2024-02-28 19:13:08.997 30600 TIP 442313 891 6103451 2024-02-28 19:18:00.302 2024-02-28 19:18:00.302 1000 FEE 442569 12139 6103452 2024-02-28 19:18:00.302 2024-02-28 19:18:00.302 9000 TIP 442569 11158 6103458 2024-02-28 19:20:48.759 2024-02-28 19:20:48.759 1000 FEE 442586 12779 6103469 2024-02-28 19:22:41.465 2024-02-28 19:22:41.465 2100 FEE 442511 15544 6103470 2024-02-28 19:22:41.465 2024-02-28 19:22:41.465 18900 TIP 442511 20258 6103471 2024-02-28 19:22:46.69 2024-02-28 19:22:46.69 1000 FEE 442589 19329 6103483 2024-02-28 19:24:03.931 2024-02-28 19:24:03.931 900 FEE 441749 6164 6103484 2024-02-28 19:24:03.931 2024-02-28 19:24:03.931 8100 TIP 441749 7587 6103485 2024-02-28 19:24:04.906 2024-02-28 19:24:04.906 9000 FEE 441749 4177 6103486 2024-02-28 19:24:04.906 2024-02-28 19:24:04.906 81000 TIP 441749 1310 6103495 2024-02-28 19:24:20.735 2024-02-28 19:24:20.735 900 FEE 441560 1261 6103496 2024-02-28 19:24:20.735 2024-02-28 19:24:20.735 8100 TIP 441560 21091 6103501 2024-02-28 19:24:53.236 2024-02-28 19:24:53.236 3200 FEE 442551 12265 6103502 2024-02-28 19:24:53.236 2024-02-28 19:24:53.236 28800 TIP 442551 19105 6103515 2024-02-28 19:25:21.237 2024-02-28 19:25:21.237 4200 FEE 442578 17095 6103516 2024-02-28 19:25:21.237 2024-02-28 19:25:21.237 37800 TIP 442578 18904 6103050 2024-02-28 18:20:37.99 2024-02-28 18:20:37.99 1000 FEE 442536 20066 6103055 2024-02-28 18:21:50.782 2024-02-28 18:21:50.782 100 FEE 442511 9695 6103056 2024-02-28 18:21:50.782 2024-02-28 18:21:50.782 900 TIP 442511 20904 6103064 2024-02-28 18:24:55.688 2024-02-28 18:24:55.688 10000 FEE 442535 20781 6103065 2024-02-28 18:24:55.688 2024-02-28 18:24:55.688 90000 TIP 442535 717 6103068 2024-02-28 18:25:26.309 2024-02-28 18:25:26.309 1000 FEE 442539 17030 6103076 2024-02-28 18:27:01.853 2024-02-28 18:27:01.853 1000 FEE 442396 21522 6103077 2024-02-28 18:27:01.853 2024-02-28 18:27:01.853 9000 TIP 442396 19661 6103094 2024-02-28 18:29:24.275 2024-02-28 18:29:24.275 100 FEE 441951 18984 6103095 2024-02-28 18:29:24.275 2024-02-28 18:29:24.275 900 TIP 441951 1769 6103111 2024-02-28 18:33:16.96 2024-02-28 18:33:16.96 1000 POLL 442163 2735 6103123 2024-02-28 18:34:37.139 2024-02-28 18:34:37.139 2100 FEE 442483 628 6103124 2024-02-28 18:34:37.139 2024-02-28 18:34:37.139 18900 TIP 442483 8506 6103134 2024-02-28 18:36:05.83 2024-02-28 18:36:05.83 5700 FEE 442545 10112 6103135 2024-02-28 18:36:05.83 2024-02-28 18:36:05.83 51300 TIP 442545 7979 6103151 2024-02-28 18:39:07.486 2024-02-28 18:39:07.486 1000 FEE 442406 20287 6103152 2024-02-28 18:39:07.486 2024-02-28 18:39:07.486 9000 TIP 442406 17217 6103167 2024-02-28 18:40:53.112 2024-02-28 18:40:53.112 1000000 FEE 442313 634 6103168 2024-02-28 18:40:53.112 2024-02-28 18:40:53.112 9000000 TIP 442313 2347 6103186 2024-02-28 18:48:13.706 2024-02-28 18:48:13.706 1000 FEE 442555 16309 6103218 2024-02-28 18:50:53.022 2024-02-28 18:50:53.022 2100 FEE 441917 18412 6103219 2024-02-28 18:50:53.022 2024-02-28 18:50:53.022 18900 TIP 441917 20084 6103229 2024-02-28 18:51:13.561 2024-02-28 18:51:13.561 10100 FEE 442551 5865 6103230 2024-02-28 18:51:13.561 2024-02-28 18:51:13.561 90900 TIP 442551 19966 6103236 2024-02-28 18:51:21.298 2024-02-28 18:51:21.298 1000 FEE 442561 18517 6103265 2024-02-28 18:53:28.316 2024-02-28 18:53:28.316 100 FEE 442163 12959 6103266 2024-02-28 18:53:28.316 2024-02-28 18:53:28.316 900 TIP 442163 20663 6103318 2024-02-28 18:58:35.015 2024-02-28 18:58:35.015 1000 FEE 442177 1723 6103319 2024-02-28 18:58:35.015 2024-02-28 18:58:35.015 9000 TIP 442177 18174 6103324 2024-02-28 18:58:53.65 2024-02-28 18:58:53.65 9000 FEE 442496 15119 6103325 2024-02-28 18:58:53.65 2024-02-28 18:58:53.65 81000 TIP 442496 18378 6103327 2024-02-28 18:59:01.158 2024-02-28 18:59:01.158 1000 FEE 442567 19153 6103334 2024-02-28 18:59:15.386 2024-02-28 18:59:15.386 9000 FEE 442551 5293 6103335 2024-02-28 18:59:15.386 2024-02-28 18:59:15.386 81000 TIP 442551 14213 6103336 2024-02-28 18:59:19.001 2024-02-28 18:59:19.001 90000 FEE 442551 20287 6103337 2024-02-28 18:59:19.001 2024-02-28 18:59:19.001 810000 TIP 442551 18989 6103338 2024-02-28 18:59:36.844 2024-02-28 18:59:36.844 100 FEE 442513 12738 6103339 2024-02-28 18:59:36.844 2024-02-28 18:59:36.844 900 TIP 442513 683 6103375 2024-02-28 19:04:00.218 2024-02-28 19:04:00.218 1000 FEE 442573 2151 6103390 2024-02-28 19:07:30.32 2024-02-28 19:07:30.32 100000 FEE 442576 11698 6103391 2024-02-28 19:07:45.269 2024-02-28 19:07:45.269 2100 FEE 442396 1044 6103392 2024-02-28 19:07:45.269 2024-02-28 19:07:45.269 18900 TIP 442396 20683 6103407 2024-02-28 19:10:23.749 2024-02-28 19:10:23.749 1000 FEE 442466 10728 6103408 2024-02-28 19:10:23.749 2024-02-28 19:10:23.749 9000 TIP 442466 4173 6103419 2024-02-28 19:10:56.489 2024-02-28 19:10:56.489 0 FEE 442572 2963 6103435 2024-02-28 19:13:56.981 2024-02-28 19:13:56.981 5000 FEE 442555 21352 6103436 2024-02-28 19:13:56.981 2024-02-28 19:13:56.981 45000 TIP 442555 805 6103443 2024-02-28 19:15:34.251 2024-02-28 19:15:34.251 100 FEE 442580 21356 6103444 2024-02-28 19:15:34.251 2024-02-28 19:15:34.251 900 TIP 442580 5757 6103475 2024-02-28 19:23:30.398 2024-02-28 19:23:30.398 0 FEE 442589 2151 6103503 2024-02-28 19:24:57.419 2024-02-28 19:24:57.419 1000 FEE 442591 13782 6103543 2024-02-28 19:27:45.068 2024-02-28 19:27:45.068 7700 FEE 442551 2537 6103544 2024-02-28 19:27:45.068 2024-02-28 19:27:45.068 69300 TIP 442551 15159 6103563 2024-02-28 19:28:48.359 2024-02-28 19:28:48.359 10000 FEE 442596 13198 6103583 2024-02-28 19:34:15.393 2024-02-28 19:34:15.393 1000 POLL 442163 9330 6103587 2024-02-28 19:36:16.208 2024-02-28 19:36:16.208 1000 FEE 442526 14545 6103588 2024-02-28 19:36:16.208 2024-02-28 19:36:16.208 9000 TIP 442526 8544 6103604 2024-02-28 19:39:30.007 2024-02-28 19:39:30.007 5000 FEE 442595 18219 6103605 2024-02-28 19:39:30.007 2024-02-28 19:39:30.007 45000 TIP 442595 18232 6103624 2024-02-28 19:42:21.636 2024-02-28 19:42:21.636 1000 FEE 442607 2709 6103629 2024-02-28 19:44:16.544 2024-02-28 19:44:16.544 1000 FEE 442608 5852 6103666 2024-02-28 19:47:03.268 2024-02-28 19:47:03.268 1000 FEE 442610 1051 6103677 2024-02-28 19:47:35.065 2024-02-28 19:47:35.065 2100 FEE 437269 2233 6103678 2024-02-28 19:47:35.065 2024-02-28 19:47:35.065 18900 TIP 437269 16532 6103696 2024-02-28 19:47:51.311 2024-02-28 19:47:51.311 2100 FEE 437269 1483 6103697 2024-02-28 19:47:51.311 2024-02-28 19:47:51.311 18900 TIP 437269 5085 6103722 2024-02-28 19:47:53.678 2024-02-28 19:47:53.678 2100 FEE 437269 2718 6103723 2024-02-28 19:47:53.678 2024-02-28 19:47:53.678 18900 TIP 437269 16598 6103732 2024-02-28 19:48:00.943 2024-02-28 19:48:00.943 2100 FEE 437269 20143 6103733 2024-02-28 19:48:00.943 2024-02-28 19:48:00.943 18900 TIP 437269 10393 6103734 2024-02-28 19:48:01.153 2024-02-28 19:48:01.153 2100 FEE 437269 1585 6103735 2024-02-28 19:48:01.153 2024-02-28 19:48:01.153 18900 TIP 437269 21421 6103743 2024-02-28 19:48:03.089 2024-02-28 19:48:03.089 2100 FEE 437269 20981 6103744 2024-02-28 19:48:03.089 2024-02-28 19:48:03.089 18900 TIP 437269 17331 6103774 2024-02-28 19:54:28.278 2024-02-28 19:54:28.278 1000 FEE 442614 9107 6103775 2024-02-28 19:54:28.278 2024-02-28 19:54:28.278 9000 TIP 442614 16680 6103786 2024-02-28 19:54:40.647 2024-02-28 19:54:40.647 10000 FEE 442396 18945 6103787 2024-02-28 19:54:40.647 2024-02-28 19:54:40.647 90000 TIP 442396 9843 6103802 2024-02-28 19:56:23.555 2024-02-28 19:56:23.555 2100 FEE 442467 21373 6103803 2024-02-28 19:56:23.555 2024-02-28 19:56:23.555 18900 TIP 442467 19777 6103831 2024-02-28 19:59:07.39 2024-02-28 19:59:07.39 2100 FEE 442406 18262 6103832 2024-02-28 19:59:07.39 2024-02-28 19:59:07.39 18900 TIP 442406 828 6103836 2024-02-28 19:59:46.841 2024-02-28 19:59:46.841 1000 FEE 441370 642 6103837 2024-02-28 19:59:46.841 2024-02-28 19:59:46.841 9000 TIP 441370 2016 6103838 2024-02-28 19:59:47.067 2024-02-28 19:59:47.067 1000 FEE 441370 13133 6103133 2024-02-28 18:36:04.511 2024-02-28 18:36:04.511 1000 STREAM 141924 10668 6103170 2024-02-28 18:42:02.568 2024-02-28 18:42:02.568 1000 STREAM 141924 7809 6103176 2024-02-28 18:44:02.579 2024-02-28 18:44:02.579 1000 STREAM 141924 19132 6103181 2024-02-28 18:46:02.608 2024-02-28 18:46:02.608 1000 STREAM 141924 7916 6103206 2024-02-28 18:50:02.634 2024-02-28 18:50:02.634 1000 STREAM 141924 11328 6103175 2024-02-28 18:43:05.077 2024-02-28 18:43:05.077 1000 STREAM 141924 21619 6103179 2024-02-28 18:45:02.592 2024-02-28 18:45:02.592 1000 STREAM 141924 19007 6103182 2024-02-28 18:47:02.629 2024-02-28 18:47:02.629 1000 STREAM 141924 6419 6103185 2024-02-28 18:48:02.621 2024-02-28 18:48:02.621 1000 STREAM 141924 17082 6103273 2024-02-28 18:54:02.692 2024-02-28 18:54:02.692 1000 STREAM 141924 2151 6103350 2024-02-28 19:00:02.751 2024-02-28 19:00:02.751 1000 STREAM 141924 16212 6103368 2024-02-28 19:01:02.739 2024-02-28 19:01:02.739 1000 STREAM 141924 18533 6103370 2024-02-28 19:02:02.742 2024-02-28 19:02:02.742 1000 STREAM 141924 687 6103402 2024-02-28 19:09:02.815 2024-02-28 19:09:02.815 1000 STREAM 141924 4225 6103420 2024-02-28 19:11:02.812 2024-02-28 19:11:02.812 1000 STREAM 141924 20778 6103423 2024-02-28 19:12:02.821 2024-02-28 19:12:02.821 1000 STREAM 141924 17522 6103426 2024-02-28 19:13:02.828 2024-02-28 19:13:02.828 1000 STREAM 141924 2609 6103439 2024-02-28 19:14:02.861 2024-02-28 19:14:02.861 1000 STREAM 141924 1394 6103462 2024-02-28 19:22:02.866 2024-02-28 19:22:02.866 1000 STREAM 141924 20504 6103504 2024-02-28 19:25:02.893 2024-02-28 19:25:02.893 1000 STREAM 141924 10549 6103561 2024-02-28 19:28:02.912 2024-02-28 19:28:02.912 1000 STREAM 141924 5495 6103572 2024-02-28 19:31:02.921 2024-02-28 19:31:02.921 1000 STREAM 141924 20756 6103573 2024-02-28 19:32:02.917 2024-02-28 19:32:02.917 1000 STREAM 141924 4538 6103582 2024-02-28 19:34:02.925 2024-02-28 19:34:02.925 1000 STREAM 141924 8004 6103584 2024-02-28 19:35:02.932 2024-02-28 19:35:02.932 1000 STREAM 141924 2075 6103599 2024-02-28 19:38:02.941 2024-02-28 19:38:02.941 1000 STREAM 141924 20687 6103608 2024-02-28 19:41:02.98 2024-02-28 19:41:02.98 1000 STREAM 141924 12072 6103623 2024-02-28 19:42:02.975 2024-02-28 19:42:02.975 1000 STREAM 141924 16724 6103742 2024-02-28 19:48:03.014 2024-02-28 19:48:03.014 1000 STREAM 141924 1773 6103748 2024-02-28 19:49:03.025 2024-02-28 19:49:03.025 1000 STREAM 141924 2583 6103754 2024-02-28 19:51:03.063 2024-02-28 19:51:03.063 1000 STREAM 141924 8326 6103759 2024-02-28 19:52:03.062 2024-02-28 19:52:03.062 1000 STREAM 141924 9985 6103760 2024-02-28 19:53:03.107 2024-02-28 19:53:03.107 1000 STREAM 141924 15326 6103761 2024-02-28 19:54:03.093 2024-02-28 19:54:03.093 1000 STREAM 141924 1439 6103791 2024-02-28 19:55:03.115 2024-02-28 19:55:03.115 1000 STREAM 141924 2734 6103808 2024-02-28 19:58:03.127 2024-02-28 19:58:03.127 1000 STREAM 141924 18124 6103826 2024-02-28 19:59:03.142 2024-02-28 19:59:03.142 1000 STREAM 141924 8173 6103860 2024-02-28 20:00:03.188 2024-02-28 20:00:03.188 1000 STREAM 141924 14905 6103863 2024-02-28 20:01:03.141 2024-02-28 20:01:03.141 1000 STREAM 141924 9336 6103866 2024-02-28 20:02:03.124 2024-02-28 20:02:03.124 1000 STREAM 141924 2000 6103868 2024-02-28 20:03:03.137 2024-02-28 20:03:03.137 1000 STREAM 141924 18909 6103883 2024-02-28 20:04:03.141 2024-02-28 20:04:03.141 1000 STREAM 141924 2711 6103888 2024-02-28 20:06:03.146 2024-02-28 20:06:03.146 1000 STREAM 141924 20616 6103891 2024-02-28 20:07:03.146 2024-02-28 20:07:03.146 1000 STREAM 141924 21238 6103900 2024-02-28 20:08:03.169 2024-02-28 20:08:03.169 1000 STREAM 141924 882 6103905 2024-02-28 20:09:03.148 2024-02-28 20:09:03.148 1000 STREAM 141924 18837 6103908 2024-02-28 20:11:03.163 2024-02-28 20:11:03.163 1000 STREAM 141924 5387 6103912 2024-02-28 20:12:03.167 2024-02-28 20:12:03.167 1000 STREAM 141924 18679 6103934 2024-02-28 20:14:03.179 2024-02-28 20:14:03.179 1000 STREAM 141924 9342 6103945 2024-02-28 20:15:03.184 2024-02-28 20:15:03.184 1000 STREAM 141924 18909 6103967 2024-02-28 20:17:03.193 2024-02-28 20:17:03.193 1000 STREAM 141924 21119 6103970 2024-02-28 20:18:03.191 2024-02-28 20:18:03.191 1000 STREAM 141924 21218 6103980 2024-02-28 20:19:03.212 2024-02-28 20:19:03.212 1000 STREAM 141924 14657 6103990 2024-02-28 20:21:03.215 2024-02-28 20:21:03.215 1000 STREAM 141924 3478 6103994 2024-02-28 20:22:03.224 2024-02-28 20:22:03.224 1000 STREAM 141924 11443 6103998 2024-02-28 20:23:03.238 2024-02-28 20:23:03.238 1000 STREAM 141924 16754 6104006 2024-02-28 20:24:03.242 2024-02-28 20:24:03.242 1000 STREAM 141924 695 6104013 2024-02-28 20:25:03.229 2024-02-28 20:25:03.229 1000 STREAM 141924 16097 6104029 2024-02-28 20:27:03.249 2024-02-28 20:27:03.249 1000 STREAM 141924 4692 6104031 2024-02-28 20:28:03.271 2024-02-28 20:28:03.271 1000 STREAM 141924 18629 6104035 2024-02-28 20:29:03.271 2024-02-28 20:29:03.271 1000 STREAM 141924 16145 6104041 2024-02-28 20:30:03.275 2024-02-28 20:30:03.275 1000 STREAM 141924 18817 6103188 2024-02-28 18:49:02.464 2024-02-28 18:49:02.464 1000 STREAM 141924 20208 6103222 2024-02-28 18:51:02.641 2024-02-28 18:51:02.641 1000 STREAM 141924 12268 6103258 2024-02-28 18:53:02.66 2024-02-28 18:53:02.66 1000 STREAM 141924 7877 6103292 2024-02-28 18:55:02.672 2024-02-28 18:55:02.672 1000 STREAM 141924 21457 6103305 2024-02-28 18:56:02.695 2024-02-28 18:56:02.695 1000 STREAM 141924 19906 6103309 2024-02-28 18:57:02.708 2024-02-28 18:57:02.708 1000 STREAM 141924 21585 6103314 2024-02-28 18:58:02.709 2024-02-28 18:58:02.709 1000 STREAM 141924 2513 6103329 2024-02-28 18:59:02.724 2024-02-28 18:59:02.724 1000 STREAM 141924 21201 6103371 2024-02-28 19:03:02.75 2024-02-28 19:03:02.75 1000 STREAM 141924 2773 6103380 2024-02-28 19:05:02.766 2024-02-28 19:05:02.766 1000 STREAM 141924 9796 6103383 2024-02-28 19:06:02.774 2024-02-28 19:06:02.774 1000 STREAM 141924 10493 6103394 2024-02-28 19:08:02.804 2024-02-28 19:08:02.804 1000 STREAM 141924 18731 6103404 2024-02-28 19:10:02.821 2024-02-28 19:10:02.821 1000 STREAM 141924 620 6103441 2024-02-28 19:15:02.829 2024-02-28 19:15:02.829 1000 STREAM 141924 4118 6103445 2024-02-28 19:16:02.84 2024-02-28 19:16:02.84 1000 STREAM 141924 11820 6103453 2024-02-28 19:18:02.839 2024-02-28 19:18:02.839 1000 STREAM 141924 6688 6103480 2024-02-28 19:24:02.882 2024-02-28 19:24:02.882 1000 STREAM 141924 2431 6103519 2024-02-28 19:26:02.886 2024-02-28 19:26:02.886 1000 STREAM 141924 618 6103522 2024-02-28 19:27:02.897 2024-02-28 19:27:02.897 1000 STREAM 141924 1723 6103577 2024-02-28 19:33:02.921 2024-02-28 19:33:02.921 1000 STREAM 141924 3709 6103586 2024-02-28 19:36:02.927 2024-02-28 19:36:02.927 1000 STREAM 141924 17592 6103607 2024-02-28 19:40:02.962 2024-02-28 19:40:02.962 1000 STREAM 141924 12169 6103665 2024-02-28 19:47:03.017 2024-02-28 19:47:03.017 1000 STREAM 141924 1490 6103749 2024-02-28 19:50:03.045 2024-02-28 19:50:03.045 1000 STREAM 141924 16594 6103800 2024-02-28 19:56:03.106 2024-02-28 19:56:03.106 1000 STREAM 141924 1310 6103805 2024-02-28 19:57:03.11 2024-02-28 19:57:03.11 1000 STREAM 141924 15697 6103885 2024-02-28 20:05:03.174 2024-02-28 20:05:03.174 1000 STREAM 141924 12122 6103907 2024-02-28 20:10:03.158 2024-02-28 20:10:03.158 1000 STREAM 141924 1136 6103924 2024-02-28 20:13:03.164 2024-02-28 20:13:03.164 1000 STREAM 141924 2961 6103953 2024-02-28 20:16:03.196 2024-02-28 20:16:03.196 1000 STREAM 141924 6160 6103985 2024-02-28 20:20:03.205 2024-02-28 20:20:03.205 1000 STREAM 141924 20554 6104025 2024-02-28 20:26:03.237 2024-02-28 20:26:03.237 1000 STREAM 141924 15271 6104048 2024-02-28 20:31:03.272 2024-02-28 20:31:03.272 1000 STREAM 141924 7978 6103245 2024-02-28 18:51:53.084 2024-02-28 18:51:53.084 18900 TIP 442136 21140 6103253 2024-02-28 18:52:18.046 2024-02-28 18:52:18.046 2100 FEE 442123 21136 6103254 2024-02-28 18:52:18.046 2024-02-28 18:52:18.046 18900 TIP 442123 11819 6103263 2024-02-28 18:53:27.815 2024-02-28 18:53:27.815 100 FEE 442163 18468 6103264 2024-02-28 18:53:27.815 2024-02-28 18:53:27.815 900 TIP 442163 8954 6103312 2024-02-28 18:57:31.994 2024-02-28 18:57:31.994 10000 DONT_LIKE_THIS 442230 21427 6103330 2024-02-28 18:59:09.88 2024-02-28 18:59:09.88 100 FEE 442551 2508 6103331 2024-02-28 18:59:09.88 2024-02-28 18:59:09.88 900 TIP 442551 16442 6103346 2024-02-28 18:59:57.985 2024-02-28 18:59:57.985 900 FEE 442511 696 6103347 2024-02-28 18:59:57.985 2024-02-28 18:59:57.985 8100 TIP 442511 761 6103351 2024-02-28 19:00:04.933 2024-02-28 19:00:04.933 100000 FEE 442568 2844 6103381 2024-02-28 19:05:13.211 2024-02-28 19:05:13.211 200 FEE 442553 11996 6103382 2024-02-28 19:05:13.211 2024-02-28 19:05:13.211 1800 TIP 442553 19759 6103387 2024-02-28 19:07:20.899 2024-02-28 19:07:20.899 1000 FEE 442575 19021 6103415 2024-02-28 19:10:24.973 2024-02-28 19:10:24.973 1000 FEE 442571 19848 6103416 2024-02-28 19:10:24.973 2024-02-28 19:10:24.973 9000 TIP 442571 624 6103421 2024-02-28 19:11:35.377 2024-02-28 19:11:35.377 4000 FEE 442403 20861 6103422 2024-02-28 19:11:35.377 2024-02-28 19:11:35.377 36000 TIP 442403 20251 6103434 2024-02-28 19:13:53.71 2024-02-28 19:13:53.71 1000 FEE 442584 21609 6103437 2024-02-28 19:13:57.284 2024-02-28 19:13:57.284 5000 FEE 442564 20267 6103438 2024-02-28 19:13:57.284 2024-02-28 19:13:57.284 45000 TIP 442564 4259 6103457 2024-02-28 19:20:18.492 2024-02-28 19:20:18.492 1000 DONT_LIKE_THIS 442515 18344 6103467 2024-02-28 19:22:37.089 2024-02-28 19:22:37.089 1000 FEE 442151 18472 6103468 2024-02-28 19:22:37.089 2024-02-28 19:22:37.089 9000 TIP 442151 21180 6103497 2024-02-28 19:24:21.703 2024-02-28 19:24:21.703 9000 FEE 441560 21275 6103498 2024-02-28 19:24:21.703 2024-02-28 19:24:21.703 81000 TIP 441560 10554 6103505 2024-02-28 19:25:06.961 2024-02-28 19:25:06.961 1000 POLL 442163 7395 6103506 2024-02-28 19:25:15.655 2024-02-28 19:25:15.655 1000 FEE 442592 1221 6103545 2024-02-28 19:27:45.093 2024-02-28 19:27:45.093 7700 FEE 442551 622 6103546 2024-02-28 19:27:45.093 2024-02-28 19:27:45.093 69300 TIP 442551 18659 6103566 2024-02-28 19:30:11.131 2024-02-28 19:30:11.131 100 FEE 442588 1060 6103567 2024-02-28 19:30:11.131 2024-02-28 19:30:11.131 900 TIP 442588 20162 6103580 2024-02-28 19:33:58.413 2024-02-28 19:33:58.413 9000 FEE 442325 17494 6103581 2024-02-28 19:33:58.413 2024-02-28 19:33:58.413 81000 TIP 442325 21575 6103603 2024-02-28 19:39:12.916 2024-02-28 19:39:12.916 1000 FEE 442605 659 6103637 2024-02-28 19:45:06.776 2024-02-28 19:45:06.776 1000 FEE 442609 19322 6103649 2024-02-28 19:46:03.892 2024-02-28 19:46:03.892 10000 FEE 442313 13348 6103650 2024-02-28 19:46:03.892 2024-02-28 19:46:03.892 90000 TIP 442313 20109 6103651 2024-02-28 19:46:07.112 2024-02-28 19:46:07.112 11100 FEE 442505 15337 6103652 2024-02-28 19:46:07.112 2024-02-28 19:46:07.112 99900 TIP 442505 15115 6103653 2024-02-28 19:46:56.111 2024-02-28 19:46:56.111 10000 FEE 442527 13365 6103654 2024-02-28 19:46:56.111 2024-02-28 19:46:56.111 90000 TIP 442527 1105 6103671 2024-02-28 19:47:34.33 2024-02-28 19:47:34.33 2100 FEE 437269 11164 6103672 2024-02-28 19:47:34.33 2024-02-28 19:47:34.33 18900 TIP 437269 2710 6103675 2024-02-28 19:47:34.749 2024-02-28 19:47:34.749 2100 FEE 437269 7960 6103676 2024-02-28 19:47:34.749 2024-02-28 19:47:34.749 18900 TIP 437269 20062 6103688 2024-02-28 19:47:49.875 2024-02-28 19:47:49.875 2100 FEE 437269 700 6103689 2024-02-28 19:47:49.875 2024-02-28 19:47:49.875 18900 TIP 437269 18897 6103700 2024-02-28 19:47:51.925 2024-02-28 19:47:51.925 2100 FEE 437269 16004 6103701 2024-02-28 19:47:51.925 2024-02-28 19:47:51.925 18900 TIP 437269 15180 6103716 2024-02-28 19:47:53.307 2024-02-28 19:47:53.307 2100 FEE 437269 21178 6103717 2024-02-28 19:47:53.307 2024-02-28 19:47:53.307 18900 TIP 437269 9342 6103752 2024-02-28 19:50:52.212 2024-02-28 19:50:52.212 20000 FEE 442508 11430 6103753 2024-02-28 19:50:52.212 2024-02-28 19:50:52.212 180000 TIP 442508 20464 6103778 2024-02-28 19:54:28.817 2024-02-28 19:54:28.817 1000 FEE 442614 671 6103779 2024-02-28 19:54:28.817 2024-02-28 19:54:28.817 9000 TIP 442614 4538 6103780 2024-02-28 19:54:28.979 2024-02-28 19:54:28.979 1000 FEE 442614 3396 6103781 2024-02-28 19:54:28.979 2024-02-28 19:54:28.979 9000 TIP 442614 21620 6103804 2024-02-28 19:56:44.262 2024-02-28 19:56:44.262 1000 FEE 442616 14472 6103809 2024-02-28 19:58:11.228 2024-02-28 19:58:11.228 0 FEE 442615 12744 6103812 2024-02-28 19:58:25.657 2024-02-28 19:58:25.657 1000 FEE 442617 21591 6103824 2024-02-28 19:59:01.96 2024-02-28 19:59:01.96 2100 FEE 442496 21104 6103825 2024-02-28 19:59:01.96 2024-02-28 19:59:01.96 18900 TIP 442496 5725 6103835 2024-02-28 19:59:37.153 2024-02-28 19:59:37.153 1000 FEE 442619 18225 6103847 2024-02-28 19:59:51.674 2024-02-28 19:59:51.674 1000 FEE 441563 18608 6103848 2024-02-28 19:59:51.674 2024-02-28 19:59:51.674 9000 TIP 441563 4084 6103862 2024-02-28 20:00:05.015 2024-02-28 20:00:05.015 1000 FEE 442623 19158 6103870 2024-02-28 20:03:06.997 2024-02-28 20:03:06.997 1000 FEE 442626 11378 6103881 2024-02-28 20:04:02.902 2024-02-28 20:04:02.902 6900 FEE 442618 5085 6103882 2024-02-28 20:04:02.902 2024-02-28 20:04:02.902 62100 TIP 442618 16154 6103884 2024-02-28 20:04:51.846 2024-02-28 20:04:51.846 0 FEE 442626 651 6103886 2024-02-28 20:05:12.082 2024-02-28 20:05:12.082 10000 FEE 442439 8841 6103887 2024-02-28 20:05:12.082 2024-02-28 20:05:12.082 90000 TIP 442439 2829 6103899 2024-02-28 20:08:00.203 2024-02-28 20:08:00.203 1000 FEE 442631 19815 6103922 2024-02-28 20:12:55.355 2024-02-28 20:12:55.355 2100 FEE 441288 6749 6103923 2024-02-28 20:12:55.355 2024-02-28 20:12:55.355 18900 TIP 441288 9833 6103938 2024-02-28 20:14:41.036 2024-02-28 20:14:41.036 3100 FEE 442615 5725 6103939 2024-02-28 20:14:41.036 2024-02-28 20:14:41.036 27900 TIP 442615 9335 6103946 2024-02-28 20:15:27.473 2024-02-28 20:15:27.473 100000 FEE 442640 15266 6103947 2024-02-28 20:15:28.245 2024-02-28 20:15:28.245 1000 FEE 442641 1697 6103952 2024-02-28 20:15:55.706 2024-02-28 20:15:55.706 1000 FEE 442642 18368 6103995 2024-02-28 20:22:22.905 2024-02-28 20:22:22.905 1000 FEE 442650 20715 6104001 2024-02-28 20:23:41.025 2024-02-28 20:23:41.025 21000 FEE 442651 21374 6104027 2024-02-28 20:26:45.653 2024-02-28 20:26:45.653 2100 FEE 442313 21578 6104028 2024-02-28 20:26:45.653 2024-02-28 20:26:45.653 18900 TIP 442313 21036 6104042 2024-02-28 20:30:13.244 2024-02-28 20:30:13.244 1000 FEE 442660 9349 6104054 2024-02-28 20:31:50.86 2024-02-28 20:31:50.86 3000 FEE 442163 20901 6104055 2024-02-28 20:31:50.86 2024-02-28 20:31:50.86 27000 TIP 442163 11458 6104068 2024-02-28 20:32:39.953 2024-02-28 20:32:39.953 1000 POLL 442163 14669 6104079 2024-02-28 20:33:50.175 2024-02-28 20:33:50.175 15000 FEE 442669 11515 6104082 2024-02-28 20:34:31.493 2024-02-28 20:34:31.493 1000 FEE 442671 2256 6104087 2024-02-28 20:36:19.93 2024-02-28 20:36:19.93 6400 FEE 442655 1490 6104088 2024-02-28 20:36:19.93 2024-02-28 20:36:19.93 57600 TIP 442655 21357 6104089 2024-02-28 20:36:23.239 2024-02-28 20:36:23.239 1000 FEE 442672 15549 6104104 2024-02-28 20:38:37.267 2024-02-28 20:38:37.267 1000 FEE 442676 16789 6104146 2024-02-28 20:41:13.021 2024-02-28 20:41:13.021 1000 FEE 442636 20647 6104147 2024-02-28 20:41:13.021 2024-02-28 20:41:13.021 9000 TIP 442636 787 6104152 2024-02-28 20:41:13.553 2024-02-28 20:41:13.553 1000 FEE 442636 17064 6104153 2024-02-28 20:41:13.553 2024-02-28 20:41:13.553 9000 TIP 442636 10536 6104169 2024-02-28 20:42:57.94 2024-02-28 20:42:57.94 1000 FEE 442023 21532 6104170 2024-02-28 20:42:57.94 2024-02-28 20:42:57.94 9000 TIP 442023 15243 6104190 2024-02-28 20:43:21.663 2024-02-28 20:43:21.663 100 FEE 441843 4062 6104191 2024-02-28 20:43:21.663 2024-02-28 20:43:21.663 900 TIP 441843 15484 6104196 2024-02-28 20:43:51.652 2024-02-28 20:43:51.652 1000 FEE 442684 21091 6104209 2024-02-28 20:46:41.452 2024-02-28 20:46:41.452 1000 FEE 442690 18727 6104230 2024-02-28 20:50:11.731 2024-02-28 20:50:11.731 100 FEE 442391 15139 6103294 2024-02-28 18:55:15.77 2024-02-28 18:55:15.77 9000 TIP 442551 21603 6103297 2024-02-28 18:55:17.8 2024-02-28 18:55:17.8 1000 FEE 442551 20066 6103298 2024-02-28 18:55:17.8 2024-02-28 18:55:17.8 9000 TIP 442551 6327 6103299 2024-02-28 18:55:18.693 2024-02-28 18:55:18.693 1000 FEE 442551 12289 6103300 2024-02-28 18:55:18.693 2024-02-28 18:55:18.693 9000 TIP 442551 19910 6103355 2024-02-28 19:00:44.368 2024-02-28 19:00:44.368 10000 FEE 442570 19038 6103358 2024-02-28 19:00:45.469 2024-02-28 19:00:45.469 900 FEE 442508 6058 6103359 2024-02-28 19:00:45.469 2024-02-28 19:00:45.469 8100 TIP 442508 18626 6103366 2024-02-28 19:00:49.186 2024-02-28 19:00:49.186 100 FEE 442551 9348 6103367 2024-02-28 19:00:49.186 2024-02-28 19:00:49.186 900 TIP 442551 6688 6103379 2024-02-28 19:04:48.028 2024-02-28 19:04:48.028 1000 FEE 442574 21136 6103400 2024-02-28 19:08:57.642 2024-02-28 19:08:57.642 1000 POLL 442163 3417 6103405 2024-02-28 19:10:07.792 2024-02-28 19:10:07.792 1000 FEE 442581 16513 6103411 2024-02-28 19:10:24.642 2024-02-28 19:10:24.642 1000 FEE 442571 8037 6103412 2024-02-28 19:10:24.642 2024-02-28 19:10:24.642 9000 TIP 442571 12334 6103417 2024-02-28 19:10:28.619 2024-02-28 19:10:28.619 1000 FEE 442461 20563 6103418 2024-02-28 19:10:28.619 2024-02-28 19:10:28.619 9000 TIP 442461 21194 6103440 2024-02-28 19:14:32.132 2024-02-28 19:14:32.132 1000 POLL 442163 18426 6103465 2024-02-28 19:22:32.693 2024-02-28 19:22:32.693 2100 FEE 442508 17183 6103466 2024-02-28 19:22:32.693 2024-02-28 19:22:32.693 18900 TIP 442508 2322 6103499 2024-02-28 19:24:25.326 2024-02-28 19:24:25.326 0 FEE 442589 976 6103509 2024-02-28 19:25:18.666 2024-02-28 19:25:18.666 1000 FEE 442590 19664 6103376 2024-02-28 19:04:02.547 2024-02-28 19:04:02.547 1000 STREAM 141924 1175 6103472 2024-02-28 19:23:02.661 2024-02-28 19:23:02.661 1000 STREAM 141924 13782 6103401 2024-02-28 19:09:02.443 2024-02-28 19:09:02.443 1000 FEE 442579 17455 6103424 2024-02-28 19:13:00.995 2024-02-28 19:13:00.995 7700 FEE 442566 848 6103425 2024-02-28 19:13:00.995 2024-02-28 19:13:00.995 69300 TIP 442566 5036 6103429 2024-02-28 19:13:20.098 2024-02-28 19:13:20.098 2100 FEE 442582 1720 6103430 2024-02-28 19:13:20.098 2024-02-28 19:13:20.098 18900 TIP 442582 17011 6103432 2024-02-28 19:13:44.87 2024-02-28 19:13:44.87 10000 FEE 442551 5637 6103433 2024-02-28 19:13:44.87 2024-02-28 19:13:44.87 90000 TIP 442551 16097 6103455 2024-02-28 19:19:56.765 2024-02-28 19:19:56.765 1000 DONT_LIKE_THIS 442505 5449 6103461 2024-02-28 19:21:22.718 2024-02-28 19:21:22.718 125000 FEE 442588 15161 6103463 2024-02-28 19:22:27.992 2024-02-28 19:22:27.992 2100 FEE 442551 17696 6103464 2024-02-28 19:22:27.992 2024-02-28 19:22:27.992 18900 TIP 442551 9427 6103500 2024-02-28 19:24:38.205 2024-02-28 19:24:38.205 1000 FEE 442590 21037 6103513 2024-02-28 19:25:18.804 2024-02-28 19:25:18.804 1000 FEE 442590 10393 6103514 2024-02-28 19:25:18.804 2024-02-28 19:25:18.804 9000 TIP 442590 21612 6103553 2024-02-28 19:27:49.125 2024-02-28 19:27:49.125 1000 FEE 442361 630 6103554 2024-02-28 19:27:49.125 2024-02-28 19:27:49.125 9000 TIP 442361 19126 6103570 2024-02-28 19:31:02.7 2024-02-28 19:31:02.7 1100 FEE 442526 12334 6103571 2024-02-28 19:31:02.7 2024-02-28 19:31:02.7 9900 TIP 442526 21159 6103593 2024-02-28 19:36:37.072 2024-02-28 19:36:37.072 1000 FEE 442602 654 6103595 2024-02-28 19:37:50.247 2024-02-28 19:37:50.247 100 FEE 442313 18743 6103596 2024-02-28 19:37:50.247 2024-02-28 19:37:50.247 900 TIP 442313 20669 6103614 2024-02-28 19:41:34.559 2024-02-28 19:41:34.559 500 FEE 442488 21361 6103615 2024-02-28 19:41:34.559 2024-02-28 19:41:34.559 4500 TIP 442488 20062 6103642 2024-02-28 19:45:47.026 2024-02-28 19:45:47.026 1000 POLL 442163 15938 6103644 2024-02-28 19:45:57.556 2024-02-28 19:45:57.556 1000 FEE 442589 16704 6103645 2024-02-28 19:45:57.556 2024-02-28 19:45:57.556 9000 TIP 442589 17517 6103667 2024-02-28 19:47:04.686 2024-02-28 19:47:04.686 10000 FEE 441611 2293 6103668 2024-02-28 19:47:04.686 2024-02-28 19:47:04.686 90000 TIP 441611 6717 6103673 2024-02-28 19:47:34.656 2024-02-28 19:47:34.656 2100 FEE 437269 5728 6103674 2024-02-28 19:47:34.656 2024-02-28 19:47:34.656 18900 TIP 437269 1006 6103684 2024-02-28 19:47:45.981 2024-02-28 19:47:45.981 1000 FEE 441854 3642 6103685 2024-02-28 19:47:45.981 2024-02-28 19:47:45.981 9000 TIP 441854 2042 6103686 2024-02-28 19:47:49.804 2024-02-28 19:47:49.804 2100 FEE 437269 17166 6103687 2024-02-28 19:47:49.804 2024-02-28 19:47:49.804 18900 TIP 437269 19105 6103740 2024-02-28 19:48:02.878 2024-02-28 19:48:02.878 2100 FEE 437269 20272 6103741 2024-02-28 19:48:02.878 2024-02-28 19:48:02.878 18900 TIP 437269 1006 6103747 2024-02-28 19:49:02.988 2024-02-28 19:49:02.988 100000 FEE 442612 16447 6103755 2024-02-28 19:51:45.863 2024-02-28 19:51:45.863 100 FEE 442608 18208 6103756 2024-02-28 19:51:45.863 2024-02-28 19:51:45.863 900 TIP 442608 16440 6103762 2024-02-28 19:54:04.396 2024-02-28 19:54:04.396 1000 FEE 442613 15336 6103763 2024-02-28 19:54:14.362 2024-02-28 19:54:14.362 10000 FEE 442614 18615 6103789 2024-02-28 19:54:53.32 2024-02-28 19:54:53.32 1000 FEE 442614 20208 6103790 2024-02-28 19:54:53.32 2024-02-28 19:54:53.32 9000 TIP 442614 2537 6103801 2024-02-28 19:56:17.926 2024-02-28 19:56:17.926 1000 FEE 442615 18837 6103819 2024-02-28 19:58:53.379 2024-02-28 19:58:53.379 2100 FEE 442483 16956 6103820 2024-02-28 19:58:53.379 2024-02-28 19:58:53.379 18900 TIP 442483 11091 6103855 2024-02-28 19:59:55.097 2024-02-28 19:59:55.097 1000 FEE 442433 8176 6103856 2024-02-28 19:59:55.097 2024-02-28 19:59:55.097 9000 TIP 442433 3745 6103864 2024-02-28 20:01:59.974 2024-02-28 20:01:59.974 2100 FEE 442313 20969 6103865 2024-02-28 20:01:59.974 2024-02-28 20:01:59.974 18900 TIP 442313 18265 6103873 2024-02-28 20:03:15.427 2024-02-28 20:03:15.427 4200 FEE 442283 19458 6103874 2024-02-28 20:03:15.427 2024-02-28 20:03:15.427 37800 TIP 442283 20551 6103890 2024-02-28 20:06:43.276 2024-02-28 20:06:43.276 210000 FEE 442628 21083 6103898 2024-02-28 20:07:34.605 2024-02-28 20:07:34.605 1000 FEE 442629 5761 6103450 2024-02-28 19:17:02.6 2024-02-28 19:17:02.6 1000 STREAM 141924 21427 6103454 2024-02-28 19:19:02.599 2024-02-28 19:19:02.599 1000 STREAM 141924 20871 6103456 2024-02-28 19:20:02.607 2024-02-28 19:20:02.607 1000 STREAM 141924 11038 6103564 2024-02-28 19:29:02.696 2024-02-28 19:29:02.696 1000 STREAM 141924 7847 6103565 2024-02-28 19:30:02.725 2024-02-28 19:30:02.725 1000 STREAM 141924 919 6103594 2024-02-28 19:37:02.911 2024-02-28 19:37:02.911 1000 STREAM 141924 827 6103602 2024-02-28 19:39:02.903 2024-02-28 19:39:02.903 1000 STREAM 141924 1135 6103628 2024-02-28 19:44:02.973 2024-02-28 19:44:02.973 1000 STREAM 141924 622 6103646 2024-02-28 19:46:02.972 2024-02-28 19:46:02.972 1000 STREAM 141924 10771 6103459 2024-02-28 19:21:03.962 2024-02-28 19:21:03.962 1000 STREAM 141924 11073 6103510 2024-02-28 19:25:18.666 2024-02-28 19:25:18.666 9000 TIP 442590 20156 6103517 2024-02-28 19:25:21.895 2024-02-28 19:25:21.895 90000 FEE 440988 20023 6103518 2024-02-28 19:25:21.895 2024-02-28 19:25:21.895 810000 TIP 440988 20963 6103523 2024-02-28 19:27:15.151 2024-02-28 19:27:15.151 30000 FEE 442592 20924 6103524 2024-02-28 19:27:15.151 2024-02-28 19:27:15.151 270000 TIP 442592 12609 6103525 2024-02-28 19:27:17.145 2024-02-28 19:27:17.145 500 FEE 442283 998 6103526 2024-02-28 19:27:17.145 2024-02-28 19:27:17.145 4500 TIP 442283 700 6103527 2024-02-28 19:27:41.088 2024-02-28 19:27:41.088 4200 FEE 442023 18359 6103528 2024-02-28 19:27:41.088 2024-02-28 19:27:41.088 37800 TIP 442023 12291 6103537 2024-02-28 19:27:44.603 2024-02-28 19:27:44.603 7700 FEE 442551 21218 6103538 2024-02-28 19:27:44.603 2024-02-28 19:27:44.603 69300 TIP 442551 670 6103541 2024-02-28 19:27:44.834 2024-02-28 19:27:44.834 7700 FEE 442551 2042 6103542 2024-02-28 19:27:44.834 2024-02-28 19:27:44.834 69300 TIP 442551 21575 6103549 2024-02-28 19:27:45.247 2024-02-28 19:27:45.247 7700 FEE 442551 21281 6103550 2024-02-28 19:27:45.247 2024-02-28 19:27:45.247 69300 TIP 442551 9347 6103562 2024-02-28 19:28:41.939 2024-02-28 19:28:41.939 100000 FEE 442595 15200 6103585 2024-02-28 19:35:54.516 2024-02-28 19:35:54.516 1000 FEE 442601 10393 6103600 2024-02-28 19:38:32.981 2024-02-28 19:38:32.981 1000 FEE 442603 21292 6103616 2024-02-28 19:41:37.503 2024-02-28 19:41:37.503 1000 FEE 442606 20717 6103621 2024-02-28 19:41:54.046 2024-02-28 19:41:54.046 1100 FEE 442191 10934 6103622 2024-02-28 19:41:54.046 2024-02-28 19:41:54.046 9900 TIP 442191 14258 6103635 2024-02-28 19:45:05.79 2024-02-28 19:45:05.79 10000 FEE 441610 8423 6103636 2024-02-28 19:45:05.79 2024-02-28 19:45:05.79 90000 TIP 441610 9796 6103643 2024-02-28 19:45:51.445 2024-02-28 19:45:51.445 10000000 DONT_LIKE_THIS 440692 19601 6103669 2024-02-28 19:47:34.113 2024-02-28 19:47:34.113 2100 FEE 437269 9611 6103670 2024-02-28 19:47:34.113 2024-02-28 19:47:34.113 18900 TIP 437269 14308 6103708 2024-02-28 19:47:52.485 2024-02-28 19:47:52.485 10000 FEE 442467 20090 6103709 2024-02-28 19:47:52.485 2024-02-28 19:47:52.485 90000 TIP 442467 20015 6103712 2024-02-28 19:47:52.783 2024-02-28 19:47:52.783 10000 FEE 442467 19826 6103713 2024-02-28 19:47:52.783 2024-02-28 19:47:52.783 90000 TIP 442467 703 6103714 2024-02-28 19:47:53.099 2024-02-28 19:47:53.099 2100 FEE 437269 19553 6103715 2024-02-28 19:47:53.099 2024-02-28 19:47:53.099 18900 TIP 437269 17221 6103728 2024-02-28 19:48:00.516 2024-02-28 19:48:00.516 2100 FEE 437269 2734 6103729 2024-02-28 19:48:00.516 2024-02-28 19:48:00.516 18900 TIP 437269 17682 6103730 2024-02-28 19:48:00.744 2024-02-28 19:48:00.744 2100 FEE 437269 6578 6103731 2024-02-28 19:48:00.744 2024-02-28 19:48:00.744 18900 TIP 437269 4102 6103738 2024-02-28 19:48:02.783 2024-02-28 19:48:02.783 2100 FEE 437269 12222 6103739 2024-02-28 19:48:02.783 2024-02-28 19:48:02.783 18900 TIP 437269 4958 6103768 2024-02-28 19:54:27.528 2024-02-28 19:54:27.528 1000 FEE 442614 1122 6103769 2024-02-28 19:54:27.528 2024-02-28 19:54:27.528 9000 TIP 442614 11897 6103796 2024-02-28 19:55:22.562 2024-02-28 19:55:22.562 2100 FEE 442613 16867 6103797 2024-02-28 19:55:22.562 2024-02-28 19:55:22.562 18900 TIP 442613 14774 6103798 2024-02-28 19:55:31.483 2024-02-28 19:55:31.483 2100 FEE 442556 21481 6103799 2024-02-28 19:55:31.483 2024-02-28 19:55:31.483 18900 TIP 442556 1002 6103806 2024-02-28 19:57:26.493 2024-02-28 19:57:26.493 90000 FEE 442313 11153 6103807 2024-02-28 19:57:26.493 2024-02-28 19:57:26.493 810000 TIP 442313 1713 6103821 2024-02-28 19:58:55.573 2024-02-28 19:58:55.573 2100 FEE 442508 15925 6103822 2024-02-28 19:58:55.573 2024-02-28 19:58:55.573 18900 TIP 442508 19156 6103842 2024-02-28 19:59:48.432 2024-02-28 19:59:48.432 1000 FEE 441383 1039 6103843 2024-02-28 19:59:48.432 2024-02-28 19:59:48.432 9000 TIP 441383 3979 6103851 2024-02-28 19:59:52.704 2024-02-28 19:59:52.704 1000 FEE 441890 696 6103852 2024-02-28 19:59:52.704 2024-02-28 19:59:52.704 9000 TIP 441890 6041 6103879 2024-02-28 20:04:02.481 2024-02-28 20:04:02.481 6900 FEE 442618 12930 6103880 2024-02-28 20:04:02.481 2024-02-28 20:04:02.481 62100 TIP 442618 10690 6103906 2024-02-28 20:09:25.942 2024-02-28 20:09:25.942 1000 FEE 442633 19546 6103909 2024-02-28 20:11:26.217 2024-02-28 20:11:26.217 1000 FEE 442634 19907 6103918 2024-02-28 20:12:45.948 2024-02-28 20:12:45.948 1000 FEE 442298 19905 6103919 2024-02-28 20:12:45.948 2024-02-28 20:12:45.948 9000 TIP 442298 21249 6103968 2024-02-28 20:17:04.752 2024-02-28 20:17:04.752 9000 FEE 442628 2347 6103969 2024-02-28 20:17:04.752 2024-02-28 20:17:04.752 81000 TIP 442628 5449 6103971 2024-02-28 20:18:03.759 2024-02-28 20:18:03.759 1000 FEE 442645 17944 6103978 2024-02-28 20:18:59.914 2024-02-28 20:18:59.914 35500 FEE 442647 19044 6103979 2024-02-28 20:18:59.914 2024-02-28 20:18:59.914 319500 TIP 442647 1596 6103991 2024-02-28 20:21:50.924 2024-02-28 20:21:50.924 1000 FEE 442649 18524 6104007 2024-02-28 20:24:11.695 2024-02-28 20:24:11.695 1000 FEE 442652 9705 6104011 2024-02-28 20:25:02.617 2024-02-28 20:25:02.617 10000 FEE 442633 1628 6104012 2024-02-28 20:25:02.617 2024-02-28 20:25:02.617 90000 TIP 442633 8360 6104015 2024-02-28 20:25:08.03 2024-02-28 20:25:08.03 6900 FEE 442649 18235 6104016 2024-02-28 20:25:08.03 2024-02-28 20:25:08.03 62100 TIP 442649 20109 6104017 2024-02-28 20:25:15.505 2024-02-28 20:25:15.505 30000 FEE 442636 20963 6104018 2024-02-28 20:25:15.505 2024-02-28 20:25:15.505 270000 TIP 442636 5527 6104021 2024-02-28 20:25:51.405 2024-02-28 20:25:51.405 2100 FEE 442396 21012 6104022 2024-02-28 20:25:51.405 2024-02-28 20:25:51.405 18900 TIP 442396 626 6104030 2024-02-28 20:27:33.039 2024-02-28 20:27:33.039 1000 FEE 442657 21061 6104036 2024-02-28 20:29:35.638 2024-02-28 20:29:35.638 1000 FEE 442659 19987 6104051 2024-02-28 20:31:30.896 2024-02-28 20:31:30.896 4200 FEE 442613 20479 6104052 2024-02-28 20:31:30.896 2024-02-28 20:31:30.896 37800 TIP 442613 999 6104057 2024-02-28 20:31:57.503 2024-02-28 20:31:57.503 1000 FEE 442589 18660 6104058 2024-02-28 20:31:57.503 2024-02-28 20:31:57.503 9000 TIP 442589 21057 6104063 2024-02-28 20:31:59.665 2024-02-28 20:31:59.665 1000 FEE 442641 4177 6104064 2024-02-28 20:31:59.665 2024-02-28 20:31:59.665 9000 TIP 442641 4474 6104070 2024-02-28 20:32:46.368 2024-02-28 20:32:46.368 1000 FEE 442641 18667 6104071 2024-02-28 20:32:46.368 2024-02-28 20:32:46.368 9000 TIP 442641 21212 6104090 2024-02-28 20:36:26.8 2024-02-28 20:36:26.8 1000 FEE 442673 18896 6103531 2024-02-28 19:27:44.253 2024-02-28 19:27:44.253 7700 FEE 442551 18909 6103532 2024-02-28 19:27:44.253 2024-02-28 19:27:44.253 69300 TIP 442551 14515 6103547 2024-02-28 19:27:45.144 2024-02-28 19:27:45.144 7700 FEE 442551 7125 6103548 2024-02-28 19:27:45.144 2024-02-28 19:27:45.144 69300 TIP 442551 20504 6103568 2024-02-28 19:30:26.622 2024-02-28 19:30:26.622 0 FEE 442589 20495 6103601 2024-02-28 19:38:33.773 2024-02-28 19:38:33.773 100000 FEE 442604 9334 6103610 2024-02-28 19:41:32.975 2024-02-28 19:41:32.975 500 FEE 442497 4313 6103611 2024-02-28 19:41:32.975 2024-02-28 19:41:32.975 4500 TIP 442497 8095 6103633 2024-02-28 19:45:05.626 2024-02-28 19:45:05.626 10000 FEE 441610 20606 6103634 2024-02-28 19:45:05.626 2024-02-28 19:45:05.626 90000 TIP 441610 1472 6103659 2024-02-28 19:47:00.639 2024-02-28 19:47:00.639 2100 FEE 437269 11819 6103660 2024-02-28 19:47:00.639 2024-02-28 19:47:00.639 18900 TIP 437269 16194 6103698 2024-02-28 19:47:51.531 2024-02-28 19:47:51.531 2100 FEE 437269 15463 6103699 2024-02-28 19:47:51.531 2024-02-28 19:47:51.531 18900 TIP 437269 10493 6103704 2024-02-28 19:47:52.293 2024-02-28 19:47:52.293 2100 FEE 437269 14785 6103705 2024-02-28 19:47:52.293 2024-02-28 19:47:52.293 18900 TIP 437269 1326 6103710 2024-02-28 19:47:52.69 2024-02-28 19:47:52.69 2100 FEE 437269 17713 6103711 2024-02-28 19:47:52.69 2024-02-28 19:47:52.69 18900 TIP 437269 19662 6103750 2024-02-28 19:50:36.905 2024-02-28 19:50:36.905 2400 FEE 442065 882 6103751 2024-02-28 19:50:36.905 2024-02-28 19:50:36.905 21600 TIP 442065 20636 6103764 2024-02-28 19:54:26.691 2024-02-28 19:54:26.691 1000 FEE 442614 660 6103765 2024-02-28 19:54:26.691 2024-02-28 19:54:26.691 9000 TIP 442614 19034 6103772 2024-02-28 19:54:27.869 2024-02-28 19:54:27.869 1000 FEE 442614 21242 6103773 2024-02-28 19:54:27.869 2024-02-28 19:54:27.869 9000 TIP 442614 12158 6103784 2024-02-28 19:54:29.896 2024-02-28 19:54:29.896 1000 FEE 442614 20861 6103785 2024-02-28 19:54:29.896 2024-02-28 19:54:29.896 9000 TIP 442614 20243 6103813 2024-02-28 19:58:41.832 2024-02-28 19:58:41.832 2100 FEE 442553 4973 6103814 2024-02-28 19:58:41.832 2024-02-28 19:58:41.832 18900 TIP 442553 1224 6103827 2024-02-28 19:59:04.76 2024-02-28 19:59:04.76 2100 FEE 442511 18862 6103828 2024-02-28 19:59:04.76 2024-02-28 19:59:04.76 18900 TIP 442511 701 6103829 2024-02-28 19:59:05.552 2024-02-28 19:59:05.552 2100 FEE 442206 10668 6103830 2024-02-28 19:59:05.552 2024-02-28 19:59:05.552 18900 TIP 442206 19967 6103840 2024-02-28 19:59:48.328 2024-02-28 19:59:48.328 1000 FEE 441383 6499 6103841 2024-02-28 19:59:48.328 2024-02-28 19:59:48.328 9000 TIP 441383 21103 6103845 2024-02-28 19:59:51.55 2024-02-28 19:59:51.55 1000 FEE 441563 12277 6103846 2024-02-28 19:59:51.55 2024-02-28 19:59:51.55 9000 TIP 441563 14906 6103857 2024-02-28 19:59:55.217 2024-02-28 19:59:55.217 1000 FEE 442433 14045 6103858 2024-02-28 19:59:55.217 2024-02-28 19:59:55.217 9000 TIP 442433 16424 6103861 2024-02-28 20:00:04.679 2024-02-28 20:00:04.679 100000 FEE 442622 21485 6103889 2024-02-28 20:06:12.638 2024-02-28 20:06:12.638 21000 FEE 442627 16447 6103913 2024-02-28 20:12:14.698 2024-02-28 20:12:14.698 3000 FEE 442496 4064 6103914 2024-02-28 20:12:14.698 2024-02-28 20:12:14.698 27000 TIP 442496 688 6103926 2024-02-28 20:13:06.73 2024-02-28 20:13:06.73 1000 FEE 442623 12965 6103927 2024-02-28 20:13:06.73 2024-02-28 20:13:06.73 9000 TIP 442623 18313 6103931 2024-02-28 20:13:38.583 2024-02-28 20:13:38.583 21000 DONT_LIKE_THIS 442632 1105 6103940 2024-02-28 20:14:43.508 2024-02-28 20:14:43.508 27900 FEE 442615 14489 6103941 2024-02-28 20:14:43.508 2024-02-28 20:14:43.508 251100 TIP 442615 8505 6103955 2024-02-28 20:16:10.127 2024-02-28 20:16:10.127 62400 FEE 442642 13517 6103956 2024-02-28 20:16:10.127 2024-02-28 20:16:10.127 561600 TIP 442642 20243 6103957 2024-02-28 20:16:29.507 2024-02-28 20:16:29.507 6900 FEE 442639 19154 6103958 2024-02-28 20:16:29.507 2024-02-28 20:16:29.507 62100 TIP 442639 17415 6103981 2024-02-28 20:19:04.587 2024-02-28 20:19:04.587 6900 FEE 442551 9433 6103982 2024-02-28 20:19:04.587 2024-02-28 20:19:04.587 62100 TIP 442551 15271 6104002 2024-02-28 20:23:43.615 2024-02-28 20:23:43.615 500 FEE 442109 15833 6104003 2024-02-28 20:23:43.615 2024-02-28 20:23:43.615 4500 TIP 442109 1552 6104046 2024-02-28 20:30:53.23 2024-02-28 20:30:53.23 10000 FEE 442636 3213 6104047 2024-02-28 20:30:53.23 2024-02-28 20:30:53.23 90000 TIP 442636 21271 6104050 2024-02-28 20:31:17.324 2024-02-28 20:31:17.324 1000 FEE 442663 20539 6104056 2024-02-28 20:31:50.987 2024-02-28 20:31:50.987 100000 FEE 442665 20110 6104075 2024-02-28 20:33:01.298 2024-02-28 20:33:01.298 1000 FEE 442668 20163 6104077 2024-02-28 20:33:07.544 2024-02-28 20:33:07.544 10000 FEE 442636 18956 6104078 2024-02-28 20:33:07.544 2024-02-28 20:33:07.544 90000 TIP 442636 3417 6104093 2024-02-28 20:37:33.362 2024-02-28 20:37:33.362 6900 FEE 442670 15326 6104094 2024-02-28 20:37:33.362 2024-02-28 20:37:33.362 62100 TIP 442670 18232 6104098 2024-02-28 20:37:44.713 2024-02-28 20:37:44.713 1000 FEE 442675 21605 6104118 2024-02-28 20:41:08.126 2024-02-28 20:41:08.126 1000 FEE 442636 1291 6104119 2024-02-28 20:41:08.126 2024-02-28 20:41:08.126 9000 TIP 442636 21605 6104132 2024-02-28 20:41:09.85 2024-02-28 20:41:09.85 1000 FEE 442636 20084 6104133 2024-02-28 20:41:09.85 2024-02-28 20:41:09.85 9000 TIP 442636 5708 6104138 2024-02-28 20:41:11.663 2024-02-28 20:41:11.663 1000 FEE 442636 683 6104139 2024-02-28 20:41:11.663 2024-02-28 20:41:11.663 9000 TIP 442636 19235 6104144 2024-02-28 20:41:12.729 2024-02-28 20:41:12.729 2000 FEE 442636 13169 6104145 2024-02-28 20:41:12.729 2024-02-28 20:41:12.729 18000 TIP 442636 20129 6104188 2024-02-28 20:43:18.429 2024-02-28 20:43:18.429 100 FEE 442551 2328 6104189 2024-02-28 20:43:18.429 2024-02-28 20:43:18.429 900 TIP 442551 2098 6104201 2024-02-28 20:45:21.476 2024-02-28 20:45:21.476 1000 FEE 442687 20464 6104208 2024-02-28 20:46:08.042 2024-02-28 20:46:08.042 1000 FEE 442689 660 6104220 2024-02-28 20:48:21.015 2024-02-28 20:48:21.015 100 FEE 442185 20370 6103625 2024-02-28 19:43:02.942 2024-02-28 19:43:02.942 1000 STREAM 141924 16704 6103630 2024-02-28 19:45:02.981 2024-02-28 19:45:02.981 1000 STREAM 141924 17201 6103658 2024-02-28 19:47:00.366 2024-02-28 19:47:00.366 18900 TIP 437269 928 6103692 2024-02-28 19:47:50.358 2024-02-28 19:47:50.358 4200 FEE 437269 17183 6103693 2024-02-28 19:47:50.358 2024-02-28 19:47:50.358 37800 TIP 437269 18615 6103702 2024-02-28 19:47:52.071 2024-02-28 19:47:52.071 2100 FEE 437269 20106 6103703 2024-02-28 19:47:52.071 2024-02-28 19:47:52.071 18900 TIP 437269 3456 6103706 2024-02-28 19:47:52.45 2024-02-28 19:47:52.45 2100 FEE 437269 12562 6103707 2024-02-28 19:47:52.45 2024-02-28 19:47:52.45 18900 TIP 437269 8796 6103745 2024-02-28 19:48:03.235 2024-02-28 19:48:03.235 2100 FEE 437269 19016 6103726 2024-02-28 19:48:00.324 2024-02-28 19:48:00.324 2100 FEE 437269 6533 6103727 2024-02-28 19:48:00.324 2024-02-28 19:48:00.324 18900 TIP 437269 18658 6103736 2024-02-28 19:48:02.293 2024-02-28 19:48:02.293 2100 FEE 437269 1236 6103737 2024-02-28 19:48:02.293 2024-02-28 19:48:02.293 18900 TIP 437269 16665 6103766 2024-02-28 19:54:27.368 2024-02-28 19:54:27.368 1000 FEE 442614 5661 6103767 2024-02-28 19:54:27.368 2024-02-28 19:54:27.368 9000 TIP 442614 16154 6103788 2024-02-28 19:54:41.765 2024-02-28 19:54:41.765 1000 POLL 442163 19506 6103815 2024-02-28 19:58:49.699 2024-02-28 19:58:49.699 2100 FEE 442505 669 6103816 2024-02-28 19:58:49.699 2024-02-28 19:58:49.699 18900 TIP 442505 2016 6103817 2024-02-28 19:58:52.043 2024-02-28 19:58:52.043 2100 FEE 442551 16341 6103818 2024-02-28 19:58:52.043 2024-02-28 19:58:52.043 18900 TIP 442551 14857 6103844 2024-02-28 19:59:50.342 2024-02-28 19:59:50.342 100000 FEE 442620 20246 6103867 2024-02-28 20:02:21.016 2024-02-28 20:02:21.016 1000 FEE 442624 14258 6103894 2024-02-28 20:07:26.267 2024-02-28 20:07:26.267 100 FEE 442609 6382 6103895 2024-02-28 20:07:26.267 2024-02-28 20:07:26.267 900 TIP 442609 1745 6103901 2024-02-28 20:08:07.888 2024-02-28 20:08:07.888 100 FEE 442252 880 6103902 2024-02-28 20:08:07.888 2024-02-28 20:08:07.888 900 TIP 442252 18517 6103917 2024-02-28 20:12:26.304 2024-02-28 20:12:26.304 1000 FEE 442635 3360 6103935 2024-02-28 20:14:31.815 2024-02-28 20:14:31.815 1000 FEE 442638 4259 6103948 2024-02-28 20:15:31.104 2024-02-28 20:15:31.104 3000 FEE 442508 5444 6103949 2024-02-28 20:15:31.104 2024-02-28 20:15:31.104 27000 TIP 442508 2502 6103950 2024-02-28 20:15:46.806 2024-02-28 20:15:46.806 400 FEE 442635 17891 6103951 2024-02-28 20:15:46.806 2024-02-28 20:15:46.806 3600 TIP 442635 19785 6103973 2024-02-28 20:18:23.559 2024-02-28 20:18:23.559 400 FEE 442618 16638 6103974 2024-02-28 20:18:23.559 2024-02-28 20:18:23.559 3600 TIP 442618 21343 6103975 2024-02-28 20:18:23.676 2024-02-28 20:18:23.676 400 FEE 442618 5377 6103976 2024-02-28 20:18:23.676 2024-02-28 20:18:23.676 3600 TIP 442618 10342 6103992 2024-02-28 20:22:01.283 2024-02-28 20:22:01.283 3200 FEE 442628 3392 6103993 2024-02-28 20:22:01.283 2024-02-28 20:22:01.283 28800 TIP 442628 4776 6104019 2024-02-28 20:25:49.188 2024-02-28 20:25:49.188 2100 FEE 442396 19638 6104020 2024-02-28 20:25:49.188 2024-02-28 20:25:49.188 18900 TIP 442396 8796 6104037 2024-02-28 20:29:36.879 2024-02-28 20:29:36.879 2000 FEE 442657 14657 6103746 2024-02-28 19:48:03.235 2024-02-28 19:48:03.235 18900 TIP 437269 20481 6103776 2024-02-28 19:54:28.477 2024-02-28 19:54:28.477 1000 FEE 442614 18336 6103777 2024-02-28 19:54:28.477 2024-02-28 19:54:28.477 9000 TIP 442614 20687 6103792 2024-02-28 19:55:13.538 2024-02-28 19:55:13.538 2100 FEE 442524 20220 6103793 2024-02-28 19:55:13.538 2024-02-28 19:55:13.538 18900 TIP 442524 21201 6103794 2024-02-28 19:55:19.321 2024-02-28 19:55:19.321 10000 FEE 442313 21401 6103795 2024-02-28 19:55:19.321 2024-02-28 19:55:19.321 90000 TIP 442313 4624 6103810 2024-02-28 19:58:14.986 2024-02-28 19:58:14.986 5700 FEE 442614 14168 6103811 2024-02-28 19:58:14.986 2024-02-28 19:58:14.986 51300 TIP 442614 21430 6103823 2024-02-28 19:58:57.28 2024-02-28 19:58:57.28 100000 FEE 442618 4313 6103833 2024-02-28 19:59:29.1 2024-02-28 19:59:29.1 2100 FEE 442418 2952 6103834 2024-02-28 19:59:29.1 2024-02-28 19:59:29.1 18900 TIP 442418 18344 6103892 2024-02-28 20:07:12.28 2024-02-28 20:07:12.28 2100 FEE 442627 11716 6103893 2024-02-28 20:07:12.28 2024-02-28 20:07:12.28 18900 TIP 442627 4314 6103896 2024-02-28 20:07:33.652 2024-02-28 20:07:33.652 2000 FEE 442609 20062 6103897 2024-02-28 20:07:33.652 2024-02-28 20:07:33.652 18000 TIP 442609 15526 6103903 2024-02-28 20:08:09.245 2024-02-28 20:08:09.245 0 FEE 442628 12261 6103942 2024-02-28 20:14:56.835 2024-02-28 20:14:56.835 1000 FEE 442639 7668 6103959 2024-02-28 20:16:43.895 2024-02-28 20:16:43.895 100000 DONT_LIKE_THIS 442640 16097 6103962 2024-02-28 20:16:49.212 2024-02-28 20:16:49.212 1000 FEE 442644 18659 6103983 2024-02-28 20:19:05.037 2024-02-28 20:19:05.037 6900 FEE 442551 2775 6103984 2024-02-28 20:19:05.037 2024-02-28 20:19:05.037 62100 TIP 442551 1631 6103986 2024-02-28 20:20:15.786 2024-02-28 20:20:15.786 1000 FEE 442648 993 6103996 2024-02-28 20:22:45.238 2024-02-28 20:22:45.238 1100 FEE 442455 1438 6103997 2024-02-28 20:22:45.238 2024-02-28 20:22:45.238 9900 TIP 442455 1319 6104004 2024-02-28 20:23:46.26 2024-02-28 20:23:46.26 5700 FEE 442632 4118 6103839 2024-02-28 19:59:47.067 2024-02-28 19:59:47.067 9000 TIP 441370 12158 6103849 2024-02-28 19:59:52.614 2024-02-28 19:59:52.614 1000 FEE 441890 21116 6103850 2024-02-28 19:59:52.614 2024-02-28 19:59:52.614 9000 TIP 441890 10719 6103869 2024-02-28 20:03:03.948 2024-02-28 20:03:03.948 100000 FEE 442625 16341 6103871 2024-02-28 20:03:10.452 2024-02-28 20:03:10.452 6900 FEE 442530 8726 6103872 2024-02-28 20:03:10.452 2024-02-28 20:03:10.452 62100 TIP 442530 17552 6103875 2024-02-28 20:03:29.353 2024-02-28 20:03:29.353 6900 FEE 442605 17218 6103876 2024-02-28 20:03:29.353 2024-02-28 20:03:29.353 62100 TIP 442605 977 6103904 2024-02-28 20:08:35 2024-02-28 20:08:35 97000 FEE 442632 13198 6103915 2024-02-28 20:12:22.203 2024-02-28 20:12:22.203 2100 FEE 442544 16571 6103916 2024-02-28 20:12:22.203 2024-02-28 20:12:22.203 18900 TIP 442544 12057 6103954 2024-02-28 20:16:09.447 2024-02-28 20:16:09.447 1000 FEE 442643 21493 6103963 2024-02-28 20:17:00.284 2024-02-28 20:17:00.284 100 FEE 442628 21329 6103964 2024-02-28 20:17:00.284 2024-02-28 20:17:00.284 900 TIP 442628 6260 6103965 2024-02-28 20:17:00.477 2024-02-28 20:17:00.477 900 FEE 442628 20434 6103966 2024-02-28 20:17:00.477 2024-02-28 20:17:00.477 8100 TIP 442628 17095 6103972 2024-02-28 20:18:08.368 2024-02-28 20:18:08.368 1000 FEE 442646 749 6103977 2024-02-28 20:18:48.219 2024-02-28 20:18:48.219 1000 FEE 442647 4763 6103988 2024-02-28 20:20:49.166 2024-02-28 20:20:49.166 6900 FEE 442648 18476 6103989 2024-02-28 20:20:49.166 2024-02-28 20:20:49.166 62100 TIP 442648 628 6104008 2024-02-28 20:24:51.521 2024-02-28 20:24:51.521 1000 FEE 442653 19096 6104024 2024-02-28 20:26:00.312 2024-02-28 20:26:00.312 0 FEE 442655 8664 6104099 2024-02-28 20:38:00.595 2024-02-28 20:38:00.595 800 FEE 442657 19966 6104100 2024-02-28 20:38:00.595 2024-02-28 20:38:00.595 7200 TIP 442657 21157 6104111 2024-02-28 20:39:22.928 2024-02-28 20:39:22.928 100000 FEE 442678 19622 6104120 2024-02-28 20:41:08.825 2024-02-28 20:41:08.825 1000 FEE 442636 718 6104121 2024-02-28 20:41:08.825 2024-02-28 20:41:08.825 9000 TIP 442636 5129 6104136 2024-02-28 20:41:10.444 2024-02-28 20:41:10.444 1000 POLL 442163 19689 6104137 2024-02-28 20:41:11.144 2024-02-28 20:41:11.144 1000 FEE 442681 5128 6104175 2024-02-28 20:42:59.341 2024-02-28 20:42:59.341 100 FEE 442206 14552 6104176 2024-02-28 20:42:59.341 2024-02-28 20:42:59.341 900 TIP 442206 15336 6104214 2024-02-28 20:47:29.627 2024-02-28 20:47:29.627 1000 FEE 442691 19309 6104215 2024-02-28 20:47:40.998 2024-02-28 20:47:40.998 1000 FEE 442692 3439 6104246 2024-02-28 20:50:38.816 2024-02-28 20:50:38.816 1000 POLL 442163 18468 6104248 2024-02-28 20:50:43.542 2024-02-28 20:50:43.542 1000 FEE 441285 18357 6104249 2024-02-28 20:50:43.542 2024-02-28 20:50:43.542 9000 TIP 441285 10536 6104255 2024-02-28 20:51:05.587 2024-02-28 20:51:05.587 6900 FEE 442539 11561 6104256 2024-02-28 20:51:05.587 2024-02-28 20:51:05.587 62100 TIP 442539 2213 6104260 2024-02-28 20:51:47.802 2024-02-28 20:51:47.802 100 FEE 442657 21062 6104261 2024-02-28 20:51:47.802 2024-02-28 20:51:47.802 900 TIP 442657 1354 6104299 2024-02-28 20:55:22.822 2024-02-28 20:55:22.822 2100 FEE 442551 9809 6104300 2024-02-28 20:55:22.822 2024-02-28 20:55:22.822 18900 TIP 442551 21342 6104330 2024-02-28 20:59:01.949 2024-02-28 20:59:01.949 1000 FEE 442399 12422 6104331 2024-02-28 20:59:01.949 2024-02-28 20:59:01.949 9000 TIP 442399 10536 6104341 2024-02-28 20:59:23.322 2024-02-28 20:59:23.322 1000 FEE 442084 2741 6104342 2024-02-28 20:59:23.322 2024-02-28 20:59:23.322 9000 TIP 442084 12188 6104344 2024-02-28 21:00:26.829 2024-02-28 21:00:26.829 1000 FEE 442701 12921 6104372 2024-02-28 21:05:23.822 2024-02-28 21:05:23.822 1000 FEE 442146 16684 6104373 2024-02-28 21:05:23.822 2024-02-28 21:05:23.822 9000 TIP 442146 7185 6104410 2024-02-28 21:09:12.062 2024-02-28 21:09:12.062 100 FEE 442702 11091 6104411 2024-02-28 21:09:12.062 2024-02-28 21:09:12.062 900 TIP 442702 18208 6104420 2024-02-28 21:09:48.95 2024-02-28 21:09:48.95 1000 FEE 442711 17392 6104456 2024-02-28 21:13:41.793 2024-02-28 21:13:41.793 1000 FEE 442710 9036 6104457 2024-02-28 21:13:41.793 2024-02-28 21:13:41.793 9000 TIP 442710 21369 6104462 2024-02-28 21:14:19.365 2024-02-28 21:14:19.365 900 FEE 442678 1823 6104463 2024-02-28 21:14:19.365 2024-02-28 21:14:19.365 8100 TIP 442678 675 6104464 2024-02-28 21:14:31.136 2024-02-28 21:14:31.136 1000 FEE 442710 16876 6104465 2024-02-28 21:14:31.136 2024-02-28 21:14:31.136 9000 TIP 442710 21091 6104477 2024-02-28 21:15:16.969 2024-02-28 21:15:16.969 900 FEE 442669 13927 6104478 2024-02-28 21:15:16.969 2024-02-28 21:15:16.969 8100 TIP 442669 5003 6104484 2024-02-28 21:15:25.227 2024-02-28 21:15:25.227 900 FEE 442704 5703 6104485 2024-02-28 21:15:25.227 2024-02-28 21:15:25.227 8100 TIP 442704 18291 6104491 2024-02-28 21:16:21.03 2024-02-28 21:16:21.03 1000 FEE 442710 20430 6104492 2024-02-28 21:16:21.03 2024-02-28 21:16:21.03 9000 TIP 442710 7979 6104496 2024-02-28 21:16:40.453 2024-02-28 21:16:40.453 1000 POLL 442163 985 6104530 2024-02-28 21:18:31.365 2024-02-28 21:18:31.365 1000 FEE 442582 699 6104531 2024-02-28 21:18:31.365 2024-02-28 21:18:31.365 9000 TIP 442582 21482 6104543 2024-02-28 21:20:22.109 2024-02-28 21:20:22.109 1000 FEE 442725 20370 6104545 2024-02-28 21:20:43.522 2024-02-28 21:20:43.522 100000 FEE 442726 1773 6104568 2024-02-28 21:22:43.797 2024-02-28 21:22:43.797 1000 FEE 442718 19235 6104569 2024-02-28 21:22:43.797 2024-02-28 21:22:43.797 9000 TIP 442718 989 6104576 2024-02-28 21:22:44.596 2024-02-28 21:22:44.596 1000 FEE 442718 17109 6104577 2024-02-28 21:22:44.596 2024-02-28 21:22:44.596 9000 TIP 442718 20782 6104578 2024-02-28 21:22:53.816 2024-02-28 21:22:53.816 2100 FEE 442681 9329 6104579 2024-02-28 21:22:53.816 2024-02-28 21:22:53.816 18900 TIP 442681 1609 6104613 2024-02-28 21:24:08.988 2024-02-28 21:24:08.988 0 FEE 442718 18271 6104635 2024-02-28 21:24:44.574 2024-02-28 21:24:44.574 500 FEE 442096 20272 6104636 2024-02-28 21:24:44.574 2024-02-28 21:24:44.574 4500 TIP 442096 18314 6104645 2024-02-28 21:25:17.174 2024-02-28 21:25:17.174 1000 POLL 442163 19633 6104649 2024-02-28 21:26:06.238 2024-02-28 21:26:06.238 200 FEE 442718 658 6104650 2024-02-28 21:26:06.238 2024-02-28 21:26:06.238 1800 TIP 442718 16004 6104673 2024-02-28 21:28:58.987 2024-02-28 21:28:58.987 500 FEE 442201 736 6104674 2024-02-28 21:28:58.987 2024-02-28 21:28:58.987 4500 TIP 442201 7978 6104712 2024-02-28 21:33:05.45 2024-02-28 21:33:05.45 100000 FEE 442751 16847 6104718 2024-02-28 21:33:35.409 2024-02-28 21:33:35.409 1000 FEE 442751 2213 6104719 2024-02-28 21:33:35.409 2024-02-28 21:33:35.409 9000 TIP 442751 7877 6104737 2024-02-28 21:33:49.917 2024-02-28 21:33:49.917 2100 FEE 441843 21172 6104738 2024-02-28 21:33:49.917 2024-02-28 21:33:49.917 18900 TIP 441843 9356 6103910 2024-02-28 20:11:55.521 2024-02-28 20:11:55.521 500 FEE 441843 10484 6103911 2024-02-28 20:11:55.521 2024-02-28 20:11:55.521 4500 TIP 441843 18280 6103920 2024-02-28 20:12:46.126 2024-02-28 20:12:46.126 1000 FEE 442298 12160 6103921 2024-02-28 20:12:46.126 2024-02-28 20:12:46.126 9000 TIP 442298 9026 6103925 2024-02-28 20:13:06.711 2024-02-28 20:13:06.711 125000 FEE 442636 20563 6103932 2024-02-28 20:13:45.194 2024-02-28 20:13:45.194 1100 FEE 441956 15148 6103933 2024-02-28 20:13:45.194 2024-02-28 20:13:45.194 9900 TIP 441956 19806 6103987 2024-02-28 20:20:46.93 2024-02-28 20:20:46.93 0 FEE 442646 12768 6104023 2024-02-28 20:25:56.162 2024-02-28 20:25:56.162 100000 FEE 442656 19557 6104039 2024-02-28 20:29:51.579 2024-02-28 20:29:51.579 2100 FEE 442391 21048 6104040 2024-02-28 20:29:51.579 2024-02-28 20:29:51.579 18900 TIP 442391 17183 6104053 2024-02-28 20:31:49.311 2024-02-28 20:31:49.311 1000 FEE 442664 5160 6104066 2024-02-28 20:32:07.925 2024-02-28 20:32:07.925 7700 FEE 442657 18608 6104067 2024-02-28 20:32:07.925 2024-02-28 20:32:07.925 69300 TIP 442657 19662 6104095 2024-02-28 20:37:34.864 2024-02-28 20:37:34.864 1000 FEE 442647 1105 6104096 2024-02-28 20:37:34.864 2024-02-28 20:37:34.864 9000 TIP 442647 1603 6104107 2024-02-28 20:38:43.262 2024-02-28 20:38:43.262 1000 FEE 442178 4487 6104108 2024-02-28 20:38:43.262 2024-02-28 20:38:43.262 9000 TIP 442178 711 6104113 2024-02-28 20:40:36.183 2024-02-28 20:40:36.183 1000 FEE 442679 21400 6104116 2024-02-28 20:41:07.877 2024-02-28 20:41:07.877 2000 FEE 442636 16839 6104117 2024-02-28 20:41:07.877 2024-02-28 20:41:07.877 18000 TIP 442636 20555 6104142 2024-02-28 20:41:11.946 2024-02-28 20:41:11.946 1000 FEE 442636 18330 6104143 2024-02-28 20:41:11.946 2024-02-28 20:41:11.946 9000 TIP 442636 18426 6104160 2024-02-28 20:42:32.625 2024-02-28 20:42:32.625 1000 FEE 442683 19581 6104165 2024-02-28 20:42:57.653 2024-02-28 20:42:57.653 1000 FEE 442023 19911 6104166 2024-02-28 20:42:57.653 2024-02-28 20:42:57.653 9000 TIP 442023 5129 6104180 2024-02-28 20:43:13.576 2024-02-28 20:43:13.576 100 FEE 442313 20646 6104181 2024-02-28 20:43:13.576 2024-02-28 20:43:13.576 900 TIP 442313 21218 6104184 2024-02-28 20:43:17.584 2024-02-28 20:43:17.584 100 FEE 442551 7418 6104185 2024-02-28 20:43:17.584 2024-02-28 20:43:17.584 900 TIP 442551 699 6104198 2024-02-28 20:44:47.058 2024-02-28 20:44:47.058 1000 FEE 442685 4304 6104202 2024-02-28 20:45:29.347 2024-02-28 20:45:29.347 1000 FEE 442529 14818 6104203 2024-02-28 20:45:29.347 2024-02-28 20:45:29.347 9000 TIP 442529 14950 6104222 2024-02-28 20:48:22.655 2024-02-28 20:48:22.655 100 FEE 442177 12097 6104223 2024-02-28 20:48:22.655 2024-02-28 20:48:22.655 900 TIP 442177 21061 6104234 2024-02-28 20:50:25.892 2024-02-28 20:50:25.892 6900 FEE 442627 19462 6104235 2024-02-28 20:50:25.892 2024-02-28 20:50:25.892 62100 TIP 442627 18448 6104277 2024-02-28 20:53:39.333 2024-02-28 20:53:39.333 100 FEE 442389 18138 6104278 2024-02-28 20:53:39.333 2024-02-28 20:53:39.333 900 TIP 442389 17226 6104281 2024-02-28 20:53:47.034 2024-02-28 20:53:47.034 1100 FEE 442019 5776 6104282 2024-02-28 20:53:47.034 2024-02-28 20:53:47.034 9900 TIP 442019 21539 6104285 2024-02-28 20:53:55.546 2024-02-28 20:53:55.546 100 FEE 442234 21437 6104286 2024-02-28 20:53:55.546 2024-02-28 20:53:55.546 900 TIP 442234 20706 6104312 2024-02-28 20:56:58.545 2024-02-28 20:56:58.545 0 FEE 442693 5387 6104335 2024-02-28 20:59:05.306 2024-02-28 20:59:05.306 1000 FEE 442313 11158 6104336 2024-02-28 20:59:05.306 2024-02-28 20:59:05.306 9000 TIP 442313 20254 6104379 2024-02-28 21:05:50.263 2024-02-28 21:05:50.263 1000 FEE 442600 18660 6104380 2024-02-28 21:05:50.263 2024-02-28 21:05:50.263 9000 TIP 442600 18923 6104382 2024-02-28 21:06:14.582 2024-02-28 21:06:14.582 1000 FEE 441886 18923 6104383 2024-02-28 21:06:14.582 2024-02-28 21:06:14.582 9000 TIP 441886 1970 6104393 2024-02-28 21:07:16.322 2024-02-28 21:07:16.322 1000 FEE 442706 11621 6104396 2024-02-28 21:07:42.836 2024-02-28 21:07:42.836 0 FEE 442706 1141 6104406 2024-02-28 21:08:34.88 2024-02-28 21:08:34.88 100000 FEE 442708 18690 6104424 2024-02-28 21:10:05.324 2024-02-28 21:10:05.324 1000 FEE 442712 21555 6104452 2024-02-28 21:13:40.951 2024-02-28 21:13:40.951 1000 FEE 442710 19462 6104453 2024-02-28 21:13:40.951 2024-02-28 21:13:40.951 9000 TIP 442710 20657 6104489 2024-02-28 21:16:03.136 2024-02-28 21:16:03.136 1000 FEE 442719 4391 6104495 2024-02-28 21:16:31.994 2024-02-28 21:16:31.994 0 FEE 442718 18658 6104497 2024-02-28 21:16:40.733 2024-02-28 21:16:40.733 1000 FEE 442698 20340 6104498 2024-02-28 21:16:40.733 2024-02-28 21:16:40.733 9000 TIP 442698 5757 6104499 2024-02-28 21:16:41.197 2024-02-28 21:16:41.197 1000 FEE 442698 11018 6104500 2024-02-28 21:16:41.197 2024-02-28 21:16:41.197 9000 TIP 442698 21599 6104507 2024-02-28 21:16:43.481 2024-02-28 21:16:43.481 1000 FEE 442698 646 6104508 2024-02-28 21:16:43.481 2024-02-28 21:16:43.481 9000 TIP 442698 18640 6104521 2024-02-28 21:17:37.302 2024-02-28 21:17:37.302 1000 FEE 442551 20208 6104522 2024-02-28 21:17:37.302 2024-02-28 21:17:37.302 9000 TIP 442551 15806 6104527 2024-02-28 21:18:20.275 2024-02-28 21:18:20.275 0 FEE 442721 21063 6104544 2024-02-28 21:20:32.23 2024-02-28 21:20:32.23 0 FEE 368845 19902 6104570 2024-02-28 21:22:43.992 2024-02-28 21:22:43.992 1000 FEE 442718 13133 6104571 2024-02-28 21:22:43.992 2024-02-28 21:22:43.992 9000 TIP 442718 6471 6104589 2024-02-28 21:23:03.622 2024-02-28 21:23:03.622 1000 FEE 442731 20412 6104590 2024-02-28 21:23:03.622 2024-02-28 21:23:03.622 9000 TIP 442731 814 6104623 2024-02-28 21:24:29.39 2024-02-28 21:24:29.39 2100 FEE 442718 20254 6104624 2024-02-28 21:24:29.39 2024-02-28 21:24:29.39 18900 TIP 442718 19087 6103944 2024-02-28 20:15:00.514 2024-02-28 20:15:00.514 29700 TIP 442628 2460 6103960 2024-02-28 20:16:45.338 2024-02-28 20:16:45.338 5000 FEE 442627 16250 6103961 2024-02-28 20:16:45.338 2024-02-28 20:16:45.338 45000 TIP 442627 20251 6103999 2024-02-28 20:23:39.965 2024-02-28 20:23:39.965 10000 FEE 442420 18306 6104000 2024-02-28 20:23:39.965 2024-02-28 20:23:39.965 90000 TIP 442420 13246 6104014 2024-02-28 20:25:06.53 2024-02-28 20:25:06.53 0 FEE 442655 4314 6104069 2024-02-28 20:32:42.286 2024-02-28 20:32:42.286 1000 FEE 442666 7979 6104072 2024-02-28 20:32:47.89 2024-02-28 20:32:47.89 1000 FEE 442641 6384 6104073 2024-02-28 20:32:47.89 2024-02-28 20:32:47.89 9000 TIP 442641 20657 6104102 2024-02-28 20:38:07.591 2024-02-28 20:38:07.591 10000 FEE 442632 2016 6104103 2024-02-28 20:38:07.591 2024-02-28 20:38:07.591 90000 TIP 442632 21342 6104110 2024-02-28 20:39:13.753 2024-02-28 20:39:13.753 1000 FEE 442677 12721 6104122 2024-02-28 20:41:08.959 2024-02-28 20:41:08.959 1000 FEE 442636 16706 6104123 2024-02-28 20:41:08.959 2024-02-28 20:41:08.959 9000 TIP 442636 20306 6104124 2024-02-28 20:41:09.128 2024-02-28 20:41:09.128 1000 FEE 442636 1425 6104125 2024-02-28 20:41:09.128 2024-02-28 20:41:09.128 9000 TIP 442636 999 6104128 2024-02-28 20:41:09.374 2024-02-28 20:41:09.374 1000 FEE 442636 768 6104129 2024-02-28 20:41:09.374 2024-02-28 20:41:09.374 9000 TIP 442636 11862 6104156 2024-02-28 20:41:28.503 2024-02-28 20:41:28.503 100 FEE 442450 16004 6104157 2024-02-28 20:41:28.503 2024-02-28 20:41:28.503 900 TIP 442450 21523 6104163 2024-02-28 20:42:54.353 2024-02-28 20:42:54.353 100 FEE 442511 16356 6104164 2024-02-28 20:42:54.353 2024-02-28 20:42:54.353 900 TIP 442511 9529 6104186 2024-02-28 20:43:18.016 2024-02-28 20:43:18.016 100 FEE 442551 658 6104187 2024-02-28 20:43:18.016 2024-02-28 20:43:18.016 900 TIP 442551 1198 6104204 2024-02-28 20:45:30.711 2024-02-28 20:45:30.711 1000 FEE 442529 1959 6104205 2024-02-28 20:45:30.711 2024-02-28 20:45:30.711 9000 TIP 442529 20090 6104210 2024-02-28 20:46:45.769 2024-02-28 20:46:45.769 2100 FEE 442685 20280 6104211 2024-02-28 20:46:45.769 2024-02-28 20:46:45.769 18900 TIP 442685 13575 6104216 2024-02-28 20:47:56.452 2024-02-28 20:47:56.452 1000 FEE 441322 19118 6104217 2024-02-28 20:47:56.452 2024-02-28 20:47:56.452 9000 TIP 441322 18828 6104219 2024-02-28 20:48:04.952 2024-02-28 20:48:04.952 1000 FEE 442693 19924 6104224 2024-02-28 20:48:50.731 2024-02-28 20:48:50.731 1000 POLL 442163 17514 6104247 2024-02-28 20:50:39.28 2024-02-28 20:50:39.28 1000 FEE 442695 11967 6104250 2024-02-28 20:50:56.127 2024-02-28 20:50:56.127 6900 FEE 442693 13217 6104251 2024-02-28 20:50:56.127 2024-02-28 20:50:56.127 62100 TIP 442693 21416 6104287 2024-02-28 20:53:58.208 2024-02-28 20:53:58.208 100 FEE 442175 11458 6104288 2024-02-28 20:53:58.208 2024-02-28 20:53:58.208 900 TIP 442175 7773 6104339 2024-02-28 20:59:22.992 2024-02-28 20:59:22.992 1000 FEE 442084 3347 6104340 2024-02-28 20:59:22.992 2024-02-28 20:59:22.992 9000 TIP 442084 5377 6104346 2024-02-28 21:01:39.677 2024-02-28 21:01:39.677 1000 FEE 442701 14663 6104347 2024-02-28 21:01:39.677 2024-02-28 21:01:39.677 9000 TIP 442701 1567 6104348 2024-02-28 21:01:39.733 2024-02-28 21:01:39.733 1000 FEE 442701 20006 6104349 2024-02-28 21:01:39.733 2024-02-28 21:01:39.733 9000 TIP 442701 19243 6104427 2024-02-28 21:10:06.886 2024-02-28 21:10:06.886 1000 FEE 442193 1620 6104428 2024-02-28 21:10:06.886 2024-02-28 21:10:06.886 9000 TIP 442193 1626 6104431 2024-02-28 21:10:12.756 2024-02-28 21:10:12.756 1000 FEE 442713 2256 6104436 2024-02-28 21:11:09.609 2024-02-28 21:11:09.609 1000 FEE 442715 4395 6104437 2024-02-28 21:11:42.709 2024-02-28 21:11:42.709 2500 FEE 442712 14168 6104438 2024-02-28 21:11:42.709 2024-02-28 21:11:42.709 22500 TIP 442712 21060 6104459 2024-02-28 21:14:15.872 2024-02-28 21:14:15.872 1000 FEE 442717 987 6104466 2024-02-28 21:14:42.012 2024-02-28 21:14:42.012 100 FEE 442682 14449 6104467 2024-02-28 21:14:42.012 2024-02-28 21:14:42.012 900 TIP 442682 16956 6104468 2024-02-28 21:14:42.227 2024-02-28 21:14:42.227 900 FEE 442682 19864 6104469 2024-02-28 21:14:42.227 2024-02-28 21:14:42.227 8100 TIP 442682 20243 6104472 2024-02-28 21:14:43.889 2024-02-28 21:14:43.889 900 FEE 442632 940 6104473 2024-02-28 21:14:43.889 2024-02-28 21:14:43.889 8100 TIP 442632 18507 6104479 2024-02-28 21:15:17.508 2024-02-28 21:15:17.508 21000 FEE 442718 12744 6104501 2024-02-28 21:16:41.516 2024-02-28 21:16:41.516 1000 FEE 442698 19524 6104502 2024-02-28 21:16:41.516 2024-02-28 21:16:41.516 9000 TIP 442698 685 6104559 2024-02-28 21:21:40.108 2024-02-28 21:21:40.108 1000 FEE 442731 19118 6104585 2024-02-28 21:23:03.234 2024-02-28 21:23:03.234 1000 FEE 442731 3377 6104586 2024-02-28 21:23:03.234 2024-02-28 21:23:03.234 9000 TIP 442731 9078 6104644 2024-02-28 21:25:16.125 2024-02-28 21:25:16.125 0 FEE 442718 9982 6104646 2024-02-28 21:25:18.321 2024-02-28 21:25:18.321 1000 FEE 442736 20963 6104653 2024-02-28 21:26:06.603 2024-02-28 21:26:06.603 200 FEE 442718 1465 6104654 2024-02-28 21:26:06.603 2024-02-28 21:26:06.603 1800 TIP 442718 18230 6104657 2024-02-28 21:27:04.639 2024-02-28 21:27:04.639 12800 FEE 442718 4128 6104658 2024-02-28 21:27:04.639 2024-02-28 21:27:04.639 115200 TIP 442718 14515 6104691 2024-02-28 21:31:04.161 2024-02-28 21:31:04.161 1000 FEE 442747 20892 6104692 2024-02-28 21:31:04.959 2024-02-28 21:31:04.959 1000 FEE 442748 5171 6104705 2024-02-28 21:32:40.572 2024-02-28 21:32:40.572 200 FEE 442538 1298 6104706 2024-02-28 21:32:40.572 2024-02-28 21:32:40.572 1800 TIP 442538 19378 6104707 2024-02-28 21:32:43.071 2024-02-28 21:32:43.071 200 FEE 442535 11820 6104708 2024-02-28 21:32:43.071 2024-02-28 21:32:43.071 1800 TIP 442535 10818 6104713 2024-02-28 21:33:19.445 2024-02-28 21:33:19.445 0 FEE 442751 16858 6104741 2024-02-28 21:33:50.316 2024-02-28 21:33:50.316 2100 FEE 441843 19193 6104742 2024-02-28 21:33:50.316 2024-02-28 21:33:50.316 18900 TIP 441843 18618 6104757 2024-02-28 21:34:14.729 2024-02-28 21:34:14.729 2100 FEE 442163 1740 6104758 2024-02-28 21:34:14.729 2024-02-28 21:34:14.729 18900 TIP 442163 16004 6104771 2024-02-28 21:34:24.027 2024-02-28 21:34:24.027 2100 FEE 441238 4776 6104772 2024-02-28 21:34:24.027 2024-02-28 21:34:24.027 18900 TIP 441238 20133 6104773 2024-02-28 21:34:25.264 2024-02-28 21:34:25.264 1000 POLL 442163 18601 6104779 2024-02-28 21:34:40.283 2024-02-28 21:34:40.283 2100 FEE 442627 21509 6104780 2024-02-28 21:34:40.283 2024-02-28 21:34:40.283 18900 TIP 442627 2529 6104787 2024-02-28 21:34:41.253 2024-02-28 21:34:41.253 2100 FEE 442627 12516 6104788 2024-02-28 21:34:41.253 2024-02-28 21:34:41.253 18900 TIP 442627 8954 6104789 2024-02-28 21:34:41.67 2024-02-28 21:34:41.67 4200 FEE 442627 17291 6104790 2024-02-28 21:34:41.67 2024-02-28 21:34:41.67 37800 TIP 442627 16679 6104798 2024-02-28 21:35:09.456 2024-02-28 21:35:09.456 200 FEE 442751 20560 6104799 2024-02-28 21:35:09.456 2024-02-28 21:35:09.456 1800 TIP 442751 9362 6104810 2024-02-28 21:35:38.36 2024-02-28 21:35:38.36 2100 FEE 442079 5085 6104811 2024-02-28 21:35:38.36 2024-02-28 21:35:38.36 18900 TIP 442079 18311 6104862 2024-02-28 21:37:12.844 2024-02-28 21:37:12.844 1000 FEE 442761 14688 6104865 2024-02-28 21:37:15.316 2024-02-28 21:37:15.316 1000 FEE 442757 12102 6104866 2024-02-28 21:37:15.316 2024-02-28 21:37:15.316 9000 TIP 442757 4831 6104867 2024-02-28 21:37:21.946 2024-02-28 21:37:21.946 1000 FEE 442762 5160 6104880 2024-02-28 21:38:03.161 2024-02-28 21:38:03.161 2100 FEE 442721 5752 6104881 2024-02-28 21:38:03.161 2024-02-28 21:38:03.161 18900 TIP 442721 18494 6104890 2024-02-28 21:38:05.103 2024-02-28 21:38:05.103 2100 FEE 442721 17001 6104891 2024-02-28 21:38:05.103 2024-02-28 21:38:05.103 18900 TIP 442721 16809 6104916 2024-02-28 21:38:30.02 2024-02-28 21:38:30.02 2100 FEE 442717 18220 6104917 2024-02-28 21:38:30.02 2024-02-28 21:38:30.02 18900 TIP 442717 2233 6104931 2024-02-28 21:39:21.988 2024-02-28 21:39:21.988 2100 FEE 442721 20562 6104932 2024-02-28 21:39:21.988 2024-02-28 21:39:21.988 18900 TIP 442721 20691 6104935 2024-02-28 21:39:23.271 2024-02-28 21:39:23.271 900 FEE 442762 3642 6104936 2024-02-28 21:39:23.271 2024-02-28 21:39:23.271 8100 TIP 442762 19854 6104005 2024-02-28 20:23:46.26 2024-02-28 20:23:46.26 51300 TIP 442632 21019 6104009 2024-02-28 20:24:53.656 2024-02-28 20:24:53.656 1000 FEE 442654 18842 6104010 2024-02-28 20:24:54.598 2024-02-28 20:24:54.598 1000 FEE 442655 746 6104026 2024-02-28 20:26:17.025 2024-02-28 20:26:17.025 0 FEE 442655 17708 6104032 2024-02-28 20:28:16.676 2024-02-28 20:28:16.676 2100 FEE 442185 9669 6104033 2024-02-28 20:28:16.676 2024-02-28 20:28:16.676 18900 TIP 442185 8506 6104034 2024-02-28 20:28:55.244 2024-02-28 20:28:55.244 1000 FEE 442658 18309 6104043 2024-02-28 20:30:14.996 2024-02-28 20:30:14.996 3000 FEE 441843 19924 6104044 2024-02-28 20:30:14.996 2024-02-28 20:30:14.996 27000 TIP 441843 5359 6104045 2024-02-28 20:30:49.836 2024-02-28 20:30:49.836 1000 FEE 442661 704 6104049 2024-02-28 20:31:15.273 2024-02-28 20:31:15.273 1000 FEE 442662 9427 6104061 2024-02-28 20:31:59.276 2024-02-28 20:31:59.276 1000 FEE 442641 10056 6104062 2024-02-28 20:31:59.276 2024-02-28 20:31:59.276 9000 TIP 442641 10591 6104074 2024-02-28 20:32:57.001 2024-02-28 20:32:57.001 1000 FEE 442667 20208 6104091 2024-02-28 20:36:56.719 2024-02-28 20:36:56.719 1000 POLL 442163 14357 6104105 2024-02-28 20:38:40.757 2024-02-28 20:38:40.757 1000 FEE 442178 10690 6104106 2024-02-28 20:38:40.757 2024-02-28 20:38:40.757 9000 TIP 442178 1800 6104126 2024-02-28 20:41:09.262 2024-02-28 20:41:09.262 1000 FEE 442636 5519 6104127 2024-02-28 20:41:09.262 2024-02-28 20:41:09.262 9000 TIP 442636 8037 6104150 2024-02-28 20:41:13.367 2024-02-28 20:41:13.367 1000 FEE 442636 9985 6104151 2024-02-28 20:41:13.367 2024-02-28 20:41:13.367 9000 TIP 442636 1454 6104159 2024-02-28 20:42:09.551 2024-02-28 20:42:09.551 1000 FEE 442682 14449 6104161 2024-02-28 20:42:46.536 2024-02-28 20:42:46.536 100 FEE 442483 11523 6104162 2024-02-28 20:42:46.536 2024-02-28 20:42:46.536 900 TIP 442483 20108 6104173 2024-02-28 20:42:59.034 2024-02-28 20:42:59.034 1000 FEE 442023 11938 6104174 2024-02-28 20:42:59.034 2024-02-28 20:42:59.034 9000 TIP 442023 7418 6104038 2024-02-28 20:29:36.879 2024-02-28 20:29:36.879 18000 TIP 442657 17891 6104059 2024-02-28 20:31:59.012 2024-02-28 20:31:59.012 1000 FEE 442641 9809 6104060 2024-02-28 20:31:59.012 2024-02-28 20:31:59.012 9000 TIP 442641 14370 6104081 2024-02-28 20:34:05.238 2024-02-28 20:34:05.238 1000 FEE 442670 21501 6104083 2024-02-28 20:34:52.991 2024-02-28 20:34:52.991 2600 FEE 442313 21057 6104084 2024-02-28 20:34:52.991 2024-02-28 20:34:52.991 23400 TIP 442313 20573 6104097 2024-02-28 20:37:41.604 2024-02-28 20:37:41.604 1000 FEE 442674 20267 6104130 2024-02-28 20:41:09.709 2024-02-28 20:41:09.709 1000 FEE 442636 19570 6104131 2024-02-28 20:41:09.709 2024-02-28 20:41:09.709 9000 TIP 442636 21391 6104134 2024-02-28 20:41:09.971 2024-02-28 20:41:09.971 1000 FEE 442636 9378 6104135 2024-02-28 20:41:09.971 2024-02-28 20:41:09.971 9000 TIP 442636 18393 6104171 2024-02-28 20:42:58.114 2024-02-28 20:42:58.114 1000 FEE 442023 13921 6104172 2024-02-28 20:42:58.114 2024-02-28 20:42:58.114 9000 TIP 442023 12721 6104178 2024-02-28 20:43:02.532 2024-02-28 20:43:02.532 100 FEE 442170 13759 6104179 2024-02-28 20:43:02.532 2024-02-28 20:43:02.532 900 TIP 442170 19809 6104182 2024-02-28 20:43:14.521 2024-02-28 20:43:14.521 100 FEE 442313 18040 6104183 2024-02-28 20:43:14.521 2024-02-28 20:43:14.521 900 TIP 442313 18330 6104232 2024-02-28 20:50:12.592 2024-02-28 20:50:12.592 100 FEE 442223 12738 6104233 2024-02-28 20:50:12.592 2024-02-28 20:50:12.592 900 TIP 442223 13249 6104242 2024-02-28 20:50:28.023 2024-02-28 20:50:28.023 6900 FEE 442627 20094 6104243 2024-02-28 20:50:28.023 2024-02-28 20:50:28.023 62100 TIP 442627 5578 6104272 2024-02-28 20:53:06.948 2024-02-28 20:53:06.948 10000 FEE 442698 18336 6104301 2024-02-28 20:55:25.407 2024-02-28 20:55:25.407 2100 FEE 442483 18235 6104302 2024-02-28 20:55:25.407 2024-02-28 20:55:25.407 18900 TIP 442483 1006 6104305 2024-02-28 20:55:33.382 2024-02-28 20:55:33.382 2100 FEE 442496 15463 6104306 2024-02-28 20:55:33.382 2024-02-28 20:55:33.382 18900 TIP 442496 15806 6104307 2024-02-28 20:55:34.499 2024-02-28 20:55:34.499 2100 FEE 442511 1833 6104308 2024-02-28 20:55:34.499 2024-02-28 20:55:34.499 18900 TIP 442511 21339 6104337 2024-02-28 20:59:08.456 2024-02-28 20:59:08.456 2500 FEE 441843 13174 6104338 2024-02-28 20:59:08.456 2024-02-28 20:59:08.456 22500 TIP 441843 16149 6104352 2024-02-28 21:01:49.957 2024-02-28 21:01:49.957 1000 FEE 442701 9845 6104353 2024-02-28 21:01:49.957 2024-02-28 21:01:49.957 9000 TIP 442701 831 6104354 2024-02-28 21:01:50.116 2024-02-28 21:01:50.116 1000 FEE 442701 20500 6104355 2024-02-28 21:01:50.116 2024-02-28 21:01:50.116 9000 TIP 442701 4048 6104359 2024-02-28 21:03:41.835 2024-02-28 21:03:41.835 1000 FEE 442703 15336 6104388 2024-02-28 21:06:46.249 2024-02-28 21:06:46.249 2500 FEE 441816 10013 6104389 2024-02-28 21:06:46.249 2024-02-28 21:06:46.249 22500 TIP 441816 20326 6104395 2024-02-28 21:07:27.318 2024-02-28 21:07:27.318 0 FEE 442707 21619 6104408 2024-02-28 21:09:10.92 2024-02-28 21:09:10.92 100000 FEE 442629 21458 6104409 2024-02-28 21:09:10.92 2024-02-28 21:09:10.92 900000 TIP 442629 20972 6104419 2024-02-28 21:09:48.025 2024-02-28 21:09:48.025 100000 FEE 442710 794 6104432 2024-02-28 21:11:00.61 2024-02-28 21:11:00.61 2100 FEE 442698 715 6104433 2024-02-28 21:11:00.61 2024-02-28 21:11:00.61 18900 TIP 442698 766 6104443 2024-02-28 21:12:24.928 2024-02-28 21:12:24.928 900 FEE 442627 20704 6104444 2024-02-28 21:12:24.928 2024-02-28 21:12:24.928 8100 TIP 442627 5195 6104482 2024-02-28 21:15:25.046 2024-02-28 21:15:25.046 100 FEE 442704 761 6104483 2024-02-28 21:15:25.046 2024-02-28 21:15:25.046 900 TIP 442704 2773 6104486 2024-02-28 21:15:33.041 2024-02-28 21:15:33.041 9000 FEE 442704 9346 6104487 2024-02-28 21:15:33.041 2024-02-28 21:15:33.041 81000 TIP 442704 20185 6104493 2024-02-28 21:16:21.999 2024-02-28 21:16:21.999 1000 FEE 442710 21116 6104494 2024-02-28 21:16:21.999 2024-02-28 21:16:21.999 9000 TIP 442710 19320 6104512 2024-02-28 21:17:21.249 2024-02-28 21:17:21.249 1000 FEE 442721 20782 6104537 2024-02-28 21:18:49.987 2024-02-28 21:18:49.987 100000 FEE 442723 5171 6104539 2024-02-28 21:19:42.854 2024-02-28 21:19:42.854 1000 FEE 442724 676 6104562 2024-02-28 21:21:44.489 2024-02-28 21:21:44.489 2100 FEE 441502 1136 6104563 2024-02-28 21:21:44.489 2024-02-28 21:21:44.489 18900 TIP 441502 1261 6104587 2024-02-28 21:23:03.401 2024-02-28 21:23:03.401 1000 FEE 442731 15367 6104588 2024-02-28 21:23:03.401 2024-02-28 21:23:03.401 9000 TIP 442731 18199 6104591 2024-02-28 21:23:04.799 2024-02-28 21:23:04.799 1000 FEE 442731 1236 6104592 2024-02-28 21:23:04.799 2024-02-28 21:23:04.799 9000 TIP 442731 18178 6104602 2024-02-28 21:23:58.277 2024-02-28 21:23:58.277 500 FEE 442313 4313 6104603 2024-02-28 21:23:58.277 2024-02-28 21:23:58.277 4500 TIP 442313 11819 6104629 2024-02-28 21:24:36.344 2024-02-28 21:24:36.344 500 FEE 442106 946 6104630 2024-02-28 21:24:36.344 2024-02-28 21:24:36.344 4500 TIP 442106 15617 6104642 2024-02-28 21:25:05.944 2024-02-28 21:25:05.944 2100 FEE 442483 16042 6104643 2024-02-28 21:25:05.944 2024-02-28 21:25:05.944 18900 TIP 442483 13361 6104651 2024-02-28 21:26:06.282 2024-02-28 21:26:06.282 200 FEE 442718 687 6104652 2024-02-28 21:26:06.282 2024-02-28 21:26:06.282 1800 TIP 442718 21412 6104661 2024-02-28 21:27:52.507 2024-02-28 21:27:52.507 0 FEE 442738 1401 6104664 2024-02-28 21:28:38.101 2024-02-28 21:28:38.101 21000 FEE 442741 20481 6104678 2024-02-28 21:29:31.18 2024-02-28 21:29:31.18 10000 FEE 442743 5661 6104685 2024-02-28 21:30:08.603 2024-02-28 21:30:08.603 1000 FEE 442746 1512 6104726 2024-02-28 21:33:48.844 2024-02-28 21:33:48.844 2100 FEE 441843 21603 6104727 2024-02-28 21:33:48.844 2024-02-28 21:33:48.844 18900 TIP 441843 21116 6104728 2024-02-28 21:33:48.998 2024-02-28 21:33:48.998 2100 FEE 441843 18873 6104729 2024-02-28 21:33:48.998 2024-02-28 21:33:48.998 18900 TIP 441843 5057 6104765 2024-02-28 21:34:16.573 2024-02-28 21:34:16.573 1000 FEE 442751 21387 6104766 2024-02-28 21:34:16.573 2024-02-28 21:34:16.573 9000 TIP 442751 802 6104800 2024-02-28 21:35:26.707 2024-02-28 21:35:26.707 10000 FEE 442746 2293 6104801 2024-02-28 21:35:26.707 2024-02-28 21:35:26.707 90000 TIP 442746 19902 6104802 2024-02-28 21:35:35.551 2024-02-28 21:35:35.551 100 FEE 442755 20588 6104803 2024-02-28 21:35:35.551 2024-02-28 21:35:35.551 900 TIP 442755 11329 6104806 2024-02-28 21:35:36.713 2024-02-28 21:35:36.713 9000 FEE 442755 2293 6104807 2024-02-28 21:35:36.713 2024-02-28 21:35:36.713 81000 TIP 442755 9335 6104822 2024-02-28 21:36:00.172 2024-02-28 21:36:00.172 42300 FEE 442551 21060 6104823 2024-02-28 21:36:00.172 2024-02-28 21:36:00.172 380700 TIP 442551 761 6104828 2024-02-28 21:36:12.578 2024-02-28 21:36:12.578 1000 FEE 442757 16847 6104065 2024-02-28 20:32:03.161 2024-02-28 20:32:03.161 1000 STREAM 141924 14045 6104076 2024-02-28 20:33:03.152 2024-02-28 20:33:03.152 1000 STREAM 141924 2529 6104080 2024-02-28 20:34:03.16 2024-02-28 20:34:03.16 1000 STREAM 141924 19821 6104085 2024-02-28 20:35:03.161 2024-02-28 20:35:03.161 1000 STREAM 141924 20327 6104092 2024-02-28 20:37:03.156 2024-02-28 20:37:03.156 1000 STREAM 141924 15337 6104101 2024-02-28 20:38:03.159 2024-02-28 20:38:03.159 1000 STREAM 141924 2256 6104109 2024-02-28 20:39:03.167 2024-02-28 20:39:03.167 1000 STREAM 141924 16178 6104115 2024-02-28 20:41:03.168 2024-02-28 20:41:03.168 1000 STREAM 141924 21178 6104158 2024-02-28 20:42:03.172 2024-02-28 20:42:03.172 1000 STREAM 141924 12057 6104197 2024-02-28 20:44:03.17 2024-02-28 20:44:03.17 1000 STREAM 141924 720 6104213 2024-02-28 20:47:03.174 2024-02-28 20:47:03.174 1000 STREAM 141924 20439 6104218 2024-02-28 20:48:03.193 2024-02-28 20:48:03.193 1000 STREAM 141924 17064 6104254 2024-02-28 20:51:03.186 2024-02-28 20:51:03.186 1000 STREAM 141924 21571 6104265 2024-02-28 20:52:03.188 2024-02-28 20:52:03.188 1000 STREAM 141924 10979 6104086 2024-02-28 20:36:03.153 2024-02-28 20:36:03.153 1000 STREAM 141924 1480 6104112 2024-02-28 20:40:03.161 2024-02-28 20:40:03.161 1000 STREAM 141924 20231 6104207 2024-02-28 20:46:03.196 2024-02-28 20:46:03.196 1000 STREAM 141924 13042 6104229 2024-02-28 20:50:03.182 2024-02-28 20:50:03.182 1000 STREAM 141924 21314 6104271 2024-02-28 20:53:03.191 2024-02-28 20:53:03.191 1000 STREAM 141924 14774 6104290 2024-02-28 20:54:03.22 2024-02-28 20:54:03.22 1000 STREAM 141924 6361 6104297 2024-02-28 20:55:03.212 2024-02-28 20:55:03.212 1000 STREAM 141924 20993 6104447 2024-02-28 21:13:01.59 2024-02-28 21:13:01.59 1000 STREAM 141924 16879 6104488 2024-02-28 21:16:01.593 2024-02-28 21:16:01.593 1000 STREAM 141924 14959 6104525 2024-02-28 21:18:01.584 2024-02-28 21:18:01.584 1000 STREAM 141924 20430 6104566 2024-02-28 21:22:03.584 2024-02-28 21:22:03.584 1000 STREAM 141924 20276 6104604 2024-02-28 21:24:03.59 2024-02-28 21:24:03.59 1000 STREAM 141924 6003 6104711 2024-02-28 21:33:03.615 2024-02-28 21:33:03.615 1000 STREAM 141924 10586 6104793 2024-02-28 21:35:03.626 2024-02-28 21:35:03.626 1000 STREAM 141924 2529 6104930 2024-02-28 21:39:03.635 2024-02-28 21:39:03.635 1000 STREAM 141924 15617 6104996 2024-02-28 21:47:03.678 2024-02-28 21:47:03.678 1000 STREAM 141924 1647 6105026 2024-02-28 21:48:01.679 2024-02-28 21:48:01.679 1000 STREAM 141924 21048 6105048 2024-02-28 21:50:03.723 2024-02-28 21:50:03.723 1000 STREAM 141924 20208 6105063 2024-02-28 21:53:03.711 2024-02-28 21:53:03.711 1000 STREAM 141924 681 6105086 2024-02-28 22:00:03.763 2024-02-28 22:00:03.763 1000 STREAM 141924 2735 6105089 2024-02-28 22:02:03.779 2024-02-28 22:02:03.779 1000 STREAM 141924 16965 6105097 2024-02-28 22:05:03.766 2024-02-28 22:05:03.766 1000 STREAM 141924 19976 6105130 2024-02-28 22:09:03.787 2024-02-28 22:09:03.787 1000 STREAM 141924 9844 6105140 2024-02-28 22:13:03.819 2024-02-28 22:13:03.819 1000 STREAM 141924 19826 6105159 2024-02-28 22:15:03.827 2024-02-28 22:15:03.827 1000 STREAM 141924 11491 6105176 2024-02-28 22:18:03.832 2024-02-28 22:18:03.832 1000 STREAM 141924 18816 6105227 2024-02-28 22:21:03.851 2024-02-28 22:21:03.851 1000 STREAM 141924 18396 6105237 2024-02-28 22:24:03.846 2024-02-28 22:24:03.846 1000 STREAM 141924 6687 6105246 2024-02-28 22:27:03.845 2024-02-28 22:27:03.845 1000 STREAM 141924 16876 6105255 2024-02-28 22:32:03.854 2024-02-28 22:32:03.854 1000 STREAM 141924 925 6104114 2024-02-28 20:40:49.618 2024-02-28 20:40:49.618 42000 FEE 442680 10549 6104140 2024-02-28 20:41:11.816 2024-02-28 20:41:11.816 1000 FEE 442636 1173 6104141 2024-02-28 20:41:11.816 2024-02-28 20:41:11.816 9000 TIP 442636 13878 6104148 2024-02-28 20:41:13.127 2024-02-28 20:41:13.127 1000 FEE 442636 21620 6104149 2024-02-28 20:41:13.127 2024-02-28 20:41:13.127 9000 TIP 442636 20647 6104154 2024-02-28 20:41:20.603 2024-02-28 20:41:20.603 1000 FEE 442178 14959 6104155 2024-02-28 20:41:20.603 2024-02-28 20:41:20.603 9000 TIP 442178 11716 6104167 2024-02-28 20:42:57.82 2024-02-28 20:42:57.82 100 FEE 442496 11165 6104168 2024-02-28 20:42:57.82 2024-02-28 20:42:57.82 900 TIP 442496 828 6104200 2024-02-28 20:45:07.984 2024-02-28 20:45:07.984 42000 FEE 442686 11897 6104206 2024-02-28 20:45:45.598 2024-02-28 20:45:45.598 1000 FEE 442688 14404 6104212 2024-02-28 20:47:00.652 2024-02-28 20:47:00.652 1000 POLL 442163 1135 6104226 2024-02-28 20:49:23.582 2024-02-28 20:49:23.582 1100 FEE 442640 12158 6104227 2024-02-28 20:49:23.582 2024-02-28 20:49:23.582 9900 TIP 442640 2256 6104228 2024-02-28 20:50:02.036 2024-02-28 20:50:02.036 21000 FEE 442694 2046 6104236 2024-02-28 20:50:26.073 2024-02-28 20:50:26.073 6900 FEE 442627 21269 6104237 2024-02-28 20:50:26.073 2024-02-28 20:50:26.073 62100 TIP 442627 4973 6104257 2024-02-28 20:51:06.008 2024-02-28 20:51:06.008 6900 FEE 442539 19888 6104258 2024-02-28 20:51:06.008 2024-02-28 20:51:06.008 62100 TIP 442539 20156 6104273 2024-02-28 20:53:36.344 2024-02-28 20:53:36.344 1100 FEE 442019 985 6104274 2024-02-28 20:53:36.344 2024-02-28 20:53:36.344 9900 TIP 442019 9669 6104291 2024-02-28 20:54:25.141 2024-02-28 20:54:25.141 1000 FEE 442629 9159 6104292 2024-02-28 20:54:25.141 2024-02-28 20:54:25.141 9000 TIP 442629 4415 6104309 2024-02-28 20:55:35.773 2024-02-28 20:55:35.773 2100 FEE 442406 18896 6104310 2024-02-28 20:55:35.773 2024-02-28 20:55:35.773 18900 TIP 442406 16301 6104324 2024-02-28 20:59:01.135 2024-02-28 20:59:01.135 1000 FEE 442399 1717 6104325 2024-02-28 20:59:01.135 2024-02-28 20:59:01.135 9000 TIP 442399 12819 6104350 2024-02-28 21:01:46.155 2024-02-28 21:01:46.155 1000 FEE 442701 1983 6104351 2024-02-28 21:01:46.155 2024-02-28 21:01:46.155 9000 TIP 442701 21140 6104364 2024-02-28 21:05:23.121 2024-02-28 21:05:23.121 1000 FEE 442146 5775 6104365 2024-02-28 21:05:23.121 2024-02-28 21:05:23.121 9000 TIP 442146 1576 6104370 2024-02-28 21:05:23.549 2024-02-28 21:05:23.549 1000 FEE 442146 19259 6104371 2024-02-28 21:05:23.549 2024-02-28 21:05:23.549 9000 TIP 442146 18837 6104374 2024-02-28 21:05:40.557 2024-02-28 21:05:40.557 1000 POLL 442163 21207 6104377 2024-02-28 21:05:49.887 2024-02-28 21:05:49.887 1000 FEE 442600 18816 6104378 2024-02-28 21:05:49.887 2024-02-28 21:05:49.887 9000 TIP 442600 1571 6104386 2024-02-28 21:06:37.288 2024-02-28 21:06:37.288 100000 FEE 442704 2724 6104400 2024-02-28 21:08:05.797 2024-02-28 21:08:05.797 10000 FEE 442678 20162 6104401 2024-02-28 21:08:05.797 2024-02-28 21:08:05.797 90000 TIP 442678 10530 6104402 2024-02-28 21:08:11.418 2024-02-28 21:08:11.418 100 FEE 442381 5829 6104403 2024-02-28 21:08:11.418 2024-02-28 21:08:11.418 900 TIP 442381 21139 6104404 2024-02-28 21:08:11.851 2024-02-28 21:08:11.851 900 FEE 442381 13143 6104405 2024-02-28 21:08:11.851 2024-02-28 21:08:11.851 8100 TIP 442381 18751 6104177 2024-02-28 20:43:02.059 2024-02-28 20:43:02.059 1000 STREAM 141924 2361 6104199 2024-02-28 20:45:02.079 2024-02-28 20:45:02.079 1000 STREAM 141924 21155 6104192 2024-02-28 20:43:22.716 2024-02-28 20:43:22.716 100 FEE 442298 992 6104193 2024-02-28 20:43:22.716 2024-02-28 20:43:22.716 900 TIP 442298 21296 6104194 2024-02-28 20:43:23.578 2024-02-28 20:43:23.578 100 FEE 442023 18956 6104195 2024-02-28 20:43:23.578 2024-02-28 20:43:23.578 900 TIP 442023 2537 6104240 2024-02-28 20:50:26.433 2024-02-28 20:50:26.433 6900 FEE 442627 13854 6104241 2024-02-28 20:50:26.433 2024-02-28 20:50:26.433 62100 TIP 442627 15719 6104252 2024-02-28 20:51:02.398 2024-02-28 20:51:02.398 2100 FEE 442551 11862 6104253 2024-02-28 20:51:02.398 2024-02-28 20:51:02.398 18900 TIP 442551 2681 6104259 2024-02-28 20:51:32.69 2024-02-28 20:51:32.69 1000 POLL 442163 681 6104262 2024-02-28 20:51:48.233 2024-02-28 20:51:48.233 100 FEE 442657 9992 6104263 2024-02-28 20:51:48.233 2024-02-28 20:51:48.233 900 TIP 442657 5708 6104283 2024-02-28 20:53:48.202 2024-02-28 20:53:48.202 1100 FEE 441836 20180 6104284 2024-02-28 20:53:48.202 2024-02-28 20:53:48.202 9900 TIP 441836 21060 6104293 2024-02-28 20:54:31.907 2024-02-28 20:54:31.907 1000 FEE 442551 20602 6104294 2024-02-28 20:54:31.907 2024-02-28 20:54:31.907 9000 TIP 442551 7760 6104295 2024-02-28 20:54:37.614 2024-02-28 20:54:37.614 100 FEE 442344 19471 6104296 2024-02-28 20:54:37.614 2024-02-28 20:54:37.614 900 TIP 442344 20973 6104298 2024-02-28 20:55:14.621 2024-02-28 20:55:14.621 100000 FEE 442699 19660 6104314 2024-02-28 20:57:46.92 2024-02-28 20:57:46.92 2100 FEE 442298 17042 6104315 2024-02-28 20:57:46.92 2024-02-28 20:57:46.92 18900 TIP 442298 1552 6104316 2024-02-28 20:58:00.302 2024-02-28 20:58:00.302 2100 FEE 442396 4314 6104317 2024-02-28 20:58:00.302 2024-02-28 20:58:00.302 18900 TIP 442396 20291 6104326 2024-02-28 20:59:01.402 2024-02-28 20:59:01.402 1000 FEE 442399 20302 6104327 2024-02-28 20:59:01.402 2024-02-28 20:59:01.402 9000 TIP 442399 1658 6104328 2024-02-28 20:59:01.751 2024-02-28 20:59:01.751 1000 FEE 442399 1180 6104329 2024-02-28 20:59:01.751 2024-02-28 20:59:01.751 9000 TIP 442399 17148 6104358 2024-02-28 21:03:13.467 2024-02-28 21:03:13.467 1000 FEE 442702 672 6104366 2024-02-28 21:05:23.128 2024-02-28 21:05:23.128 1000 FEE 442146 8506 6104367 2024-02-28 21:05:23.128 2024-02-28 21:05:23.128 9000 TIP 442146 20573 6104368 2024-02-28 21:05:23.416 2024-02-28 21:05:23.416 1000 FEE 442146 17209 6104369 2024-02-28 21:05:23.416 2024-02-28 21:05:23.416 9000 TIP 442146 11523 6104390 2024-02-28 21:06:55.452 2024-02-28 21:06:55.452 1000 FEE 441896 940 6104391 2024-02-28 21:06:55.452 2024-02-28 21:06:55.452 9000 TIP 441896 726 6104412 2024-02-28 21:09:12.223 2024-02-28 21:09:12.223 900 FEE 442702 18630 6104413 2024-02-28 21:09:12.223 2024-02-28 21:09:12.223 8100 TIP 442702 1584 6104221 2024-02-28 20:48:21.015 2024-02-28 20:48:21.015 900 TIP 442185 21457 6104264 2024-02-28 20:51:55.235 2024-02-28 20:51:55.235 1000 FEE 442696 16965 6104266 2024-02-28 20:52:07.408 2024-02-28 20:52:07.408 100 FEE 442565 18265 6104267 2024-02-28 20:52:07.408 2024-02-28 20:52:07.408 900 TIP 442565 17392 6104268 2024-02-28 20:52:18.3 2024-02-28 20:52:18.3 100 FEE 442547 21019 6104269 2024-02-28 20:52:18.3 2024-02-28 20:52:18.3 900 TIP 442547 14472 6104279 2024-02-28 20:53:41.599 2024-02-28 20:53:41.599 2100 FEE 442696 1772 6104280 2024-02-28 20:53:41.599 2024-02-28 20:53:41.599 18900 TIP 442696 910 6104289 2024-02-28 20:54:01.996 2024-02-28 20:54:01.996 0 FEE 442693 17514 6104303 2024-02-28 20:55:26.451 2024-02-28 20:55:26.451 2100 FEE 442508 20243 6104304 2024-02-28 20:55:26.451 2024-02-28 20:55:26.451 18900 TIP 442508 1712 6104318 2024-02-28 20:58:00.884 2024-02-28 20:58:00.884 0 FEE 442693 1718 6104322 2024-02-28 20:58:48.522 2024-02-28 20:58:48.522 11700 FEE 442699 21402 6104323 2024-02-28 20:58:48.522 2024-02-28 20:58:48.522 105300 TIP 442699 19502 6104362 2024-02-28 21:05:22.681 2024-02-28 21:05:22.681 1000 FEE 442146 16289 6104363 2024-02-28 21:05:22.681 2024-02-28 21:05:22.681 9000 TIP 442146 2529 6104397 2024-02-28 21:07:47.903 2024-02-28 21:07:47.903 90000 FEE 442556 9150 6104398 2024-02-28 21:07:47.903 2024-02-28 21:07:47.903 810000 TIP 442556 18231 6104414 2024-02-28 21:09:13.69 2024-02-28 21:09:13.69 9000 FEE 442702 13100 6104415 2024-02-28 21:09:13.69 2024-02-28 21:09:13.69 81000 TIP 442702 21469 6104480 2024-02-28 21:15:17.574 2024-02-28 21:15:17.574 9000 FEE 442669 10821 6104481 2024-02-28 21:15:17.574 2024-02-28 21:15:17.574 81000 TIP 442669 10944 6104526 2024-02-28 21:18:02.355 2024-02-28 21:18:02.355 100000 FEE 442722 965 6104548 2024-02-28 21:20:52.237 2024-02-28 21:20:52.237 2100 FEE 442556 20901 6104549 2024-02-28 21:20:52.237 2024-02-28 21:20:52.237 18900 TIP 442556 708 6104550 2024-02-28 21:20:52.384 2024-02-28 21:20:52.384 1000 FEE 442727 19030 6104551 2024-02-28 21:20:54.665 2024-02-28 21:20:54.665 2100 FEE 442399 17690 6104552 2024-02-28 21:20:54.665 2024-02-28 21:20:54.665 18900 TIP 442399 6616 6104556 2024-02-28 21:21:23.742 2024-02-28 21:21:23.742 1000 FEE 442730 18892 6104560 2024-02-28 21:21:44.199 2024-02-28 21:21:44.199 2100 FEE 441502 7587 6104561 2024-02-28 21:21:44.199 2024-02-28 21:21:44.199 18900 TIP 441502 19615 6104567 2024-02-28 21:22:20.144 2024-02-28 21:22:20.144 1000 FEE 442732 11609 6104581 2024-02-28 21:23:02.849 2024-02-28 21:23:02.849 1000 FEE 442731 21573 6104582 2024-02-28 21:23:02.849 2024-02-28 21:23:02.849 9000 TIP 442731 14990 6104583 2024-02-28 21:23:03.043 2024-02-28 21:23:03.043 1000 FEE 442731 20674 6104584 2024-02-28 21:23:03.043 2024-02-28 21:23:03.043 9000 TIP 442731 18909 6104598 2024-02-28 21:23:57.935 2024-02-28 21:23:57.935 2000 FEE 442313 9348 6104599 2024-02-28 21:23:57.935 2024-02-28 21:23:57.935 18000 TIP 442313 19638 6104600 2024-02-28 21:23:58.09 2024-02-28 21:23:58.09 1000 FEE 442313 20981 6104601 2024-02-28 21:23:58.09 2024-02-28 21:23:58.09 9000 TIP 442313 15336 6104605 2024-02-28 21:24:06.533 2024-02-28 21:24:06.533 1000 FEE 442084 18199 6104606 2024-02-28 21:24:06.533 2024-02-28 21:24:06.533 9000 TIP 442084 14774 6104615 2024-02-28 21:24:18.872 2024-02-28 21:24:18.872 500 FEE 442084 20981 6104616 2024-02-28 21:24:18.872 2024-02-28 21:24:18.872 4500 TIP 442084 17800 6104633 2024-02-28 21:24:43.948 2024-02-28 21:24:43.948 500 FEE 442096 11776 6104634 2024-02-28 21:24:43.948 2024-02-28 21:24:43.948 4500 TIP 442096 16562 6104665 2024-02-28 21:28:52.788 2024-02-28 21:28:52.788 500 FEE 442177 1136 6104666 2024-02-28 21:28:52.788 2024-02-28 21:28:52.788 4500 TIP 442177 714 6104669 2024-02-28 21:28:53.151 2024-02-28 21:28:53.151 500 FEE 442177 19507 6104670 2024-02-28 21:28:53.151 2024-02-28 21:28:53.151 4500 TIP 442177 10311 6104681 2024-02-28 21:29:45.022 2024-02-28 21:29:45.022 100 FEE 442313 8926 6104682 2024-02-28 21:29:45.022 2024-02-28 21:29:45.022 900 TIP 442313 19795 6104693 2024-02-28 21:31:05.725 2024-02-28 21:31:05.725 9000 FEE 442678 18673 6104694 2024-02-28 21:31:05.725 2024-02-28 21:31:05.725 81000 TIP 442678 649 6104703 2024-02-28 21:32:39.299 2024-02-28 21:32:39.299 2100 FEE 442692 8004 6104704 2024-02-28 21:32:39.299 2024-02-28 21:32:39.299 18900 TIP 442692 15148 6104733 2024-02-28 21:33:49.361 2024-02-28 21:33:49.361 2100 FEE 441843 9921 6104734 2024-02-28 21:33:49.361 2024-02-28 21:33:49.361 18900 TIP 441843 20619 6104769 2024-02-28 21:34:16.927 2024-02-28 21:34:16.927 1000 FEE 442751 18816 6104770 2024-02-28 21:34:16.927 2024-02-28 21:34:16.927 9000 TIP 442751 7376 6104812 2024-02-28 21:35:38.463 2024-02-28 21:35:38.463 2100 FEE 442079 6030 6104813 2024-02-28 21:35:38.463 2024-02-28 21:35:38.463 18900 TIP 442079 9330 6104854 2024-02-28 21:36:30.878 2024-02-28 21:36:30.878 2100 FEE 442710 6360 6104855 2024-02-28 21:36:30.878 2024-02-28 21:36:30.878 18900 TIP 442710 19992 6104858 2024-02-28 21:36:39.396 2024-02-28 21:36:39.396 10000 FEE 442313 19511 6104859 2024-02-28 21:36:39.396 2024-02-28 21:36:39.396 90000 TIP 442313 7818 6104868 2024-02-28 21:37:38.792 2024-02-28 21:37:38.792 2100 FEE 442551 21540 6104869 2024-02-28 21:37:38.792 2024-02-28 21:37:38.792 18900 TIP 442551 16052 6104877 2024-02-28 21:37:44.277 2024-02-28 21:37:44.277 1000 FEE 442758 5646 6104878 2024-02-28 21:37:44.277 2024-02-28 21:37:44.277 9000 TIP 442758 21323 6104892 2024-02-28 21:38:06.477 2024-02-28 21:38:06.477 2100 FEE 442710 1316 6104893 2024-02-28 21:38:06.477 2024-02-28 21:38:06.477 18900 TIP 442710 1717 6104900 2024-02-28 21:38:06.911 2024-02-28 21:38:06.911 2100 FEE 442710 20788 6104901 2024-02-28 21:38:06.911 2024-02-28 21:38:06.911 18900 TIP 442710 16834 6104902 2024-02-28 21:38:07.573 2024-02-28 21:38:07.573 2100 FEE 442710 15161 6104903 2024-02-28 21:38:07.573 2024-02-28 21:38:07.573 18900 TIP 442710 7773 6104906 2024-02-28 21:38:20.222 2024-02-28 21:38:20.222 2100 FEE 442721 10102 6104907 2024-02-28 21:38:20.222 2024-02-28 21:38:20.222 18900 TIP 442721 4989 6104908 2024-02-28 21:38:20.576 2024-02-28 21:38:20.576 2100 FEE 442721 9349 6104909 2024-02-28 21:38:20.576 2024-02-28 21:38:20.576 18900 TIP 442721 3709 6104912 2024-02-28 21:38:22.541 2024-02-28 21:38:22.541 2100 FEE 442721 2196 6104913 2024-02-28 21:38:22.541 2024-02-28 21:38:22.541 18900 TIP 442721 21523 6104914 2024-02-28 21:38:28.493 2024-02-28 21:38:28.493 2100 FEE 442717 19537 6104915 2024-02-28 21:38:28.493 2024-02-28 21:38:28.493 18900 TIP 442717 1401 6104928 2024-02-28 21:38:55.767 2024-02-28 21:38:55.767 10000 FEE 442749 20841 6104929 2024-02-28 21:38:55.767 2024-02-28 21:38:55.767 90000 TIP 442749 17455 6104937 2024-02-28 21:39:23.662 2024-02-28 21:39:23.662 9000 FEE 442762 2576 6104938 2024-02-28 21:39:23.662 2024-02-28 21:39:23.662 81000 TIP 442762 18473 6104950 2024-02-28 21:41:04.427 2024-02-28 21:41:04.427 500 FEE 442206 644 6104951 2024-02-28 21:41:04.427 2024-02-28 21:41:04.427 4500 TIP 442206 20340 6104974 2024-02-28 21:43:11.106 2024-02-28 21:43:11.106 2100 FEE 442751 21577 6104975 2024-02-28 21:43:11.106 2024-02-28 21:43:11.106 18900 TIP 442751 13204 6104979 2024-02-28 21:43:54.162 2024-02-28 21:43:54.162 5700 FEE 442627 16145 6104980 2024-02-28 21:43:54.162 2024-02-28 21:43:54.162 51300 TIP 442627 14503 6105002 2024-02-28 21:47:52.735 2024-02-28 21:47:52.735 1000 FEE 442769 13361 6105003 2024-02-28 21:47:52.735 2024-02-28 21:47:52.735 9000 TIP 442769 18232 6105040 2024-02-28 21:49:04.412 2024-02-28 21:49:04.412 1000 FEE 442697 9332 6105041 2024-02-28 21:49:04.412 2024-02-28 21:49:04.412 9000 TIP 442697 11897 6105046 2024-02-28 21:49:06.452 2024-02-28 21:49:06.452 1000 FEE 442659 21421 6105047 2024-02-28 21:49:06.452 2024-02-28 21:49:06.452 9000 TIP 442659 1352 6105076 2024-02-28 21:56:02.038 2024-02-28 21:56:02.038 2100 FEE 442628 6160 6105077 2024-02-28 21:56:02.038 2024-02-28 21:56:02.038 18900 TIP 442628 2061 6105090 2024-02-28 22:02:54.818 2024-02-28 22:02:54.818 3200 FEE 442745 725 6105091 2024-02-28 22:02:54.818 2024-02-28 22:02:54.818 28800 TIP 442745 11220 6105111 2024-02-28 22:07:35.839 2024-02-28 22:07:35.839 2100 FEE 442551 19281 6105112 2024-02-28 22:07:35.839 2024-02-28 22:07:35.839 18900 TIP 442551 12346 6104225 2024-02-28 20:49:02.108 2024-02-28 20:49:02.108 1000 STREAM 141924 20892 6104231 2024-02-28 20:50:11.731 2024-02-28 20:50:11.731 900 TIP 442391 1729 6104238 2024-02-28 20:50:26.269 2024-02-28 20:50:26.269 6900 FEE 442627 1051 6104239 2024-02-28 20:50:26.269 2024-02-28 20:50:26.269 62100 TIP 442627 19309 6104244 2024-02-28 20:50:28.225 2024-02-28 20:50:28.225 6900 FEE 442627 21083 6104245 2024-02-28 20:50:28.225 2024-02-28 20:50:28.225 62100 TIP 442627 4292 6104270 2024-02-28 20:52:53.346 2024-02-28 20:52:53.346 1000 FEE 442697 19660 6104275 2024-02-28 20:53:36.38 2024-02-28 20:53:36.38 1100 FEE 441836 13931 6104276 2024-02-28 20:53:36.38 2024-02-28 20:53:36.38 9900 TIP 441836 14489 6104320 2024-02-28 20:58:17.039 2024-02-28 20:58:17.039 5700 FEE 442698 17798 6104321 2024-02-28 20:58:17.039 2024-02-28 20:58:17.039 51300 TIP 442698 1051 6104333 2024-02-28 20:59:05.274 2024-02-28 20:59:05.274 1000 FEE 442313 14731 6104334 2024-02-28 20:59:05.274 2024-02-28 20:59:05.274 9000 TIP 442313 20669 6104375 2024-02-28 21:05:49.39 2024-02-28 21:05:49.39 1000 FEE 442600 6229 6104376 2024-02-28 21:05:49.39 2024-02-28 21:05:49.39 9000 TIP 442600 16649 6104384 2024-02-28 21:06:18.781 2024-02-28 21:06:18.781 3000 FEE 442668 21469 6104385 2024-02-28 21:06:18.781 2024-02-28 21:06:18.781 27000 TIP 442668 21040 6104387 2024-02-28 21:06:42.725 2024-02-28 21:06:42.725 1000 FEE 442705 18387 6104394 2024-02-28 21:07:20.294 2024-02-28 21:07:20.294 1000 FEE 442707 17042 6104418 2024-02-28 21:09:22.141 2024-02-28 21:09:22.141 10000 FEE 442709 20137 6104429 2024-02-28 21:10:11.974 2024-02-28 21:10:11.974 2000 FEE 442705 18774 6104430 2024-02-28 21:10:11.974 2024-02-28 21:10:11.974 18000 TIP 442705 19566 6104441 2024-02-28 21:12:24.748 2024-02-28 21:12:24.748 100 FEE 442627 1618 6104442 2024-02-28 21:12:24.748 2024-02-28 21:12:24.748 900 TIP 442627 21624 6104445 2024-02-28 21:12:26.491 2024-02-28 21:12:26.491 9000 FEE 442627 18751 6104446 2024-02-28 21:12:26.491 2024-02-28 21:12:26.491 81000 TIP 442627 12049 6104450 2024-02-28 21:13:32.768 2024-02-28 21:13:32.768 2100 FEE 442614 2013 6104451 2024-02-28 21:13:32.768 2024-02-28 21:13:32.768 18900 TIP 442614 5809 6104490 2024-02-28 21:16:20.256 2024-02-28 21:16:20.256 1000 FEE 442720 11165 6104505 2024-02-28 21:16:41.89 2024-02-28 21:16:41.89 1000 FEE 442698 14503 6104506 2024-02-28 21:16:41.89 2024-02-28 21:16:41.89 9000 TIP 442698 20881 6104509 2024-02-28 21:16:43.568 2024-02-28 21:16:43.568 1000 FEE 442698 1180 6104510 2024-02-28 21:16:43.568 2024-02-28 21:16:43.568 9000 TIP 442698 656 6104546 2024-02-28 21:20:49.456 2024-02-28 21:20:49.456 2100 FEE 442313 20577 6104547 2024-02-28 21:20:49.456 2024-02-28 21:20:49.456 18900 TIP 442313 19524 6104572 2024-02-28 21:22:44.208 2024-02-28 21:22:44.208 1000 FEE 442718 17638 6104573 2024-02-28 21:22:44.208 2024-02-28 21:22:44.208 9000 TIP 442718 19189 6104574 2024-02-28 21:22:44.402 2024-02-28 21:22:44.402 1000 FEE 442718 21263 6104575 2024-02-28 21:22:44.402 2024-02-28 21:22:44.402 9000 TIP 442718 859 6104617 2024-02-28 21:24:19.396 2024-02-28 21:24:19.396 500 FEE 442084 13931 6104618 2024-02-28 21:24:19.396 2024-02-28 21:24:19.396 4500 TIP 442084 13174 6104627 2024-02-28 21:24:36.221 2024-02-28 21:24:36.221 2100 FEE 442718 2330 6104628 2024-02-28 21:24:36.221 2024-02-28 21:24:36.221 18900 TIP 442718 21136 6104655 2024-02-28 21:26:25.565 2024-02-28 21:26:25.565 1000 FEE 442738 11621 6104686 2024-02-28 21:30:54.336 2024-02-28 21:30:54.336 2500 FEE 442551 1478 6104687 2024-02-28 21:30:54.336 2024-02-28 21:30:54.336 22500 TIP 442551 21274 6104739 2024-02-28 21:33:50.21 2024-02-28 21:33:50.21 2100 FEE 441843 18667 6104740 2024-02-28 21:33:50.21 2024-02-28 21:33:50.21 18900 TIP 441843 18678 6104749 2024-02-28 21:34:09.197 2024-02-28 21:34:09.197 2100 FEE 442570 11522 6104750 2024-02-28 21:34:09.197 2024-02-28 21:34:09.197 18900 TIP 442570 9084 6104751 2024-02-28 21:34:13.024 2024-02-28 21:34:13.024 10000 FEE 442567 21014 6104752 2024-02-28 21:34:13.024 2024-02-28 21:34:13.024 90000 TIP 442567 18280 6104753 2024-02-28 21:34:14.157 2024-02-28 21:34:14.157 2100 FEE 442163 12566 6104754 2024-02-28 21:34:14.157 2024-02-28 21:34:14.157 18900 TIP 442163 18101 6104763 2024-02-28 21:34:16.55 2024-02-28 21:34:16.55 1000 FEE 442751 16259 6104764 2024-02-28 21:34:16.55 2024-02-28 21:34:16.55 9000 TIP 442751 21172 6104774 2024-02-28 21:34:28.592 2024-02-28 21:34:28.592 10000 FEE 442616 20613 6104775 2024-02-28 21:34:28.592 2024-02-28 21:34:28.592 90000 TIP 442616 19435 6104781 2024-02-28 21:34:40.642 2024-02-28 21:34:40.642 2100 FEE 442627 7979 6104782 2024-02-28 21:34:40.642 2024-02-28 21:34:40.642 18900 TIP 442627 20837 6104795 2024-02-28 21:35:06.906 2024-02-28 21:35:06.906 1000 FEE 442758 1881 6104808 2024-02-28 21:35:38.139 2024-02-28 21:35:38.139 2100 FEE 442079 10698 6104809 2024-02-28 21:35:38.139 2024-02-28 21:35:38.139 18900 TIP 442079 1094 6104820 2024-02-28 21:35:52.613 2024-02-28 21:35:52.613 1000 FEE 442551 18008 6104821 2024-02-28 21:35:52.613 2024-02-28 21:35:52.613 9000 TIP 442551 20090 6104830 2024-02-28 21:36:12.737 2024-02-28 21:36:12.737 1000 FEE 442757 20871 6104831 2024-02-28 21:36:12.737 2024-02-28 21:36:12.737 9000 TIP 442757 6594 6104840 2024-02-28 21:36:20.514 2024-02-28 21:36:20.514 2100 FEE 441116 8269 6104841 2024-02-28 21:36:20.514 2024-02-28 21:36:20.514 18900 TIP 441116 14650 6104875 2024-02-28 21:37:43.614 2024-02-28 21:37:43.614 1000 FEE 442758 624 6104876 2024-02-28 21:37:43.614 2024-02-28 21:37:43.614 9000 TIP 442758 16753 6104904 2024-02-28 21:38:09.655 2024-02-28 21:38:09.655 2100 FEE 442721 2741 6104905 2024-02-28 21:38:09.655 2024-02-28 21:38:09.655 18900 TIP 442721 20301 6104943 2024-02-28 21:40:02.428 2024-02-28 21:40:02.428 1000 FEE 442764 659 6104944 2024-02-28 21:40:04.687 2024-02-28 21:40:04.687 1000 POLL 442751 18453 6104945 2024-02-28 21:40:51.417 2024-02-28 21:40:51.417 500 FEE 442571 6578 6104946 2024-02-28 21:40:51.417 2024-02-28 21:40:51.417 4500 TIP 442571 17568 6104952 2024-02-28 21:41:07.431 2024-02-28 21:41:07.431 1000 POLL 442751 18262 6104953 2024-02-28 21:41:26.591 2024-02-28 21:41:26.591 1000 FEE 442736 20901 6104954 2024-02-28 21:41:26.591 2024-02-28 21:41:26.591 9000 TIP 442736 21178 6104957 2024-02-28 21:41:26.652 2024-02-28 21:41:26.652 1000 FEE 442736 16679 6104958 2024-02-28 21:41:26.652 2024-02-28 21:41:26.652 9000 TIP 442736 3506 6104959 2024-02-28 21:41:27.136 2024-02-28 21:41:27.136 1000 FEE 442736 13903 6104960 2024-02-28 21:41:27.136 2024-02-28 21:41:27.136 9000 TIP 442736 14705 6104976 2024-02-28 21:43:22.449 2024-02-28 21:43:22.449 1000 FEE 442767 21131 6104977 2024-02-28 21:43:30.535 2024-02-28 21:43:30.535 5700 FEE 442751 18114 6104978 2024-02-28 21:43:30.535 2024-02-28 21:43:30.535 51300 TIP 442751 15938 6104987 2024-02-28 21:45:23.152 2024-02-28 21:45:23.152 1000 FEE 442768 20539 6104990 2024-02-28 21:45:58.49 2024-02-28 21:45:58.49 1000 POLL 442751 7827 6104998 2024-02-28 21:47:52.394 2024-02-28 21:47:52.394 1000 FEE 442769 20871 6104999 2024-02-28 21:47:52.394 2024-02-28 21:47:52.394 9000 TIP 442769 16876 6105004 2024-02-28 21:47:52.91 2024-02-28 21:47:52.91 1000 FEE 442769 3347 6105005 2024-02-28 21:47:52.91 2024-02-28 21:47:52.91 9000 TIP 442769 18989 6105016 2024-02-28 21:47:55.275 2024-02-28 21:47:55.275 1000 FEE 442769 18188 6105017 2024-02-28 21:47:55.275 2024-02-28 21:47:55.275 9000 TIP 442769 17602 6105018 2024-02-28 21:47:55.507 2024-02-28 21:47:55.507 1000 FEE 442769 894 6105019 2024-02-28 21:47:55.507 2024-02-28 21:47:55.507 9000 TIP 442769 20133 6105107 2024-02-28 22:06:53.535 2024-02-28 22:06:53.535 100000 FEE 442781 9874 6105113 2024-02-28 22:07:42.863 2024-02-28 22:07:42.863 2100 FEE 442508 20717 6105114 2024-02-28 22:07:42.863 2024-02-28 22:07:42.863 18900 TIP 442508 21599 6105122 2024-02-28 22:08:06.701 2024-02-28 22:08:06.701 6600 FEE 442313 18225 6105123 2024-02-28 22:08:06.701 2024-02-28 22:08:06.701 59400 TIP 442313 5112 6105137 2024-02-28 22:11:24.211 2024-02-28 22:11:24.211 500 FEE 442781 20502 6105138 2024-02-28 22:11:24.211 2024-02-28 22:11:24.211 4500 TIP 442781 11714 6105143 2024-02-28 22:14:00.723 2024-02-28 22:14:00.723 15400 FEE 442751 681 6104311 2024-02-28 20:56:04.638 2024-02-28 20:56:04.638 1000 STREAM 141924 5829 6104313 2024-02-28 20:57:03.812 2024-02-28 20:57:03.812 1000 STREAM 141924 17976 6104361 2024-02-28 21:05:03.894 2024-02-28 21:05:03.894 1000 STREAM 141924 20738 6104381 2024-02-28 21:06:03.893 2024-02-28 21:06:03.893 1000 STREAM 141924 18188 6104423 2024-02-28 21:10:03.947 2024-02-28 21:10:03.947 1000 STREAM 141924 1769 6104434 2024-02-28 21:11:03.96 2024-02-28 21:11:03.96 1000 STREAM 141924 17696 6104439 2024-02-28 21:12:03.989 2024-02-28 21:12:03.989 1000 STREAM 141924 17321 6104474 2024-02-28 21:15:03.995 2024-02-28 21:15:03.995 1000 STREAM 141924 4076 6104319 2024-02-28 20:58:03.798 2024-02-28 20:58:03.798 1000 STREAM 141924 9366 6104343 2024-02-28 21:00:03.89 2024-02-28 21:00:03.89 1000 STREAM 141924 13361 6104345 2024-02-28 21:01:03.854 2024-02-28 21:01:03.854 1000 STREAM 141924 11523 6104357 2024-02-28 21:03:03.849 2024-02-28 21:03:03.849 1000 STREAM 141924 18351 6104360 2024-02-28 21:04:03.867 2024-02-28 21:04:03.867 1000 STREAM 141924 7097 6104392 2024-02-28 21:07:03.907 2024-02-28 21:07:03.907 1000 STREAM 141924 17050 6104399 2024-02-28 21:08:03.931 2024-02-28 21:08:03.931 1000 STREAM 141924 20108 6104407 2024-02-28 21:09:03.939 2024-02-28 21:09:03.939 1000 STREAM 141924 19462 6104538 2024-02-28 21:19:02.153 2024-02-28 21:19:02.153 1000 STREAM 141924 21503 6104745 2024-02-28 21:34:02.303 2024-02-28 21:34:02.303 1000 STREAM 141924 10554 6104879 2024-02-28 21:38:02.33 2024-02-28 21:38:02.33 1000 STREAM 141924 2233 6104967 2024-02-28 21:42:02.374 2024-02-28 21:42:02.374 1000 STREAM 141924 20730 6104983 2024-02-28 21:44:02.389 2024-02-28 21:44:02.389 1000 STREAM 141924 20973 6104332 2024-02-28 20:59:02.157 2024-02-28 20:59:02.157 1000 STREAM 141924 21480 6104356 2024-02-28 21:02:02.153 2024-02-28 21:02:02.153 1000 STREAM 141924 9863 6104416 2024-02-28 21:09:15.53 2024-02-28 21:09:15.53 2500 FEE 441749 20963 6104417 2024-02-28 21:09:15.53 2024-02-28 21:09:15.53 22500 TIP 441749 21585 6104421 2024-02-28 21:10:00.943 2024-02-28 21:10:00.943 1000 FEE 442608 15147 6104422 2024-02-28 21:10:00.943 2024-02-28 21:10:00.943 9000 TIP 442608 6310 6104435 2024-02-28 21:11:04.098 2024-02-28 21:11:04.098 1000 FEE 442714 19462 6104448 2024-02-28 21:13:20.354 2024-02-28 21:13:20.354 2100 FEE 442628 17514 6104449 2024-02-28 21:13:20.354 2024-02-28 21:13:20.354 18900 TIP 442628 1003 6104460 2024-02-28 21:14:19.166 2024-02-28 21:14:19.166 100 FEE 442678 21148 6104461 2024-02-28 21:14:19.166 2024-02-28 21:14:19.166 900 TIP 442678 675 6104475 2024-02-28 21:15:16.74 2024-02-28 21:15:16.74 100 FEE 442669 12744 6104476 2024-02-28 21:15:16.74 2024-02-28 21:15:16.74 900 TIP 442669 5961 6104515 2024-02-28 21:17:36.212 2024-02-28 21:17:36.212 1000 FEE 442551 1602 6104516 2024-02-28 21:17:36.212 2024-02-28 21:17:36.212 9000 TIP 442551 20036 6104523 2024-02-28 21:17:39.344 2024-02-28 21:17:39.344 10000 FEE 442710 1960 6104524 2024-02-28 21:17:39.344 2024-02-28 21:17:39.344 90000 TIP 442710 16988 6104528 2024-02-28 21:18:29.592 2024-02-28 21:18:29.592 1000 FEE 442571 11716 6104529 2024-02-28 21:18:29.592 2024-02-28 21:18:29.592 9000 TIP 442571 1030 6104534 2024-02-28 21:18:37.585 2024-02-28 21:18:37.585 1000 FEE 442590 9200 6104535 2024-02-28 21:18:37.585 2024-02-28 21:18:37.585 9000 TIP 442590 14791 6104536 2024-02-28 21:18:38.468 2024-02-28 21:18:38.468 0 FEE 442718 19541 6104541 2024-02-28 21:20:07.563 2024-02-28 21:20:07.563 100 FEE 442721 20706 6104542 2024-02-28 21:20:07.563 2024-02-28 21:20:07.563 900 TIP 442721 9551 6104555 2024-02-28 21:21:04.2 2024-02-28 21:21:04.2 1000 FEE 442729 16704 6104557 2024-02-28 21:21:33.578 2024-02-28 21:21:33.578 2100 FEE 442403 16747 6104558 2024-02-28 21:21:33.578 2024-02-28 21:21:33.578 18900 TIP 442403 642 6104593 2024-02-28 21:23:25.914 2024-02-28 21:23:25.914 1000 FEE 442733 15662 6104594 2024-02-28 21:23:56.716 2024-02-28 21:23:56.716 500 FEE 442313 21485 6104595 2024-02-28 21:23:56.716 2024-02-28 21:23:56.716 4500 TIP 442313 15588 6104607 2024-02-28 21:24:06.902 2024-02-28 21:24:06.902 500 FEE 442084 20906 6104608 2024-02-28 21:24:06.902 2024-02-28 21:24:06.902 4500 TIP 442084 19622 6104609 2024-02-28 21:24:07.314 2024-02-28 21:24:07.314 500 FEE 442084 20018 6104610 2024-02-28 21:24:07.314 2024-02-28 21:24:07.314 4500 TIP 442084 5057 6104611 2024-02-28 21:24:07.474 2024-02-28 21:24:07.474 500 FEE 442084 21051 6104612 2024-02-28 21:24:07.474 2024-02-28 21:24:07.474 4500 TIP 442084 19878 6104619 2024-02-28 21:24:25.047 2024-02-28 21:24:25.047 500 FEE 442084 16942 6104620 2024-02-28 21:24:25.047 2024-02-28 21:24:25.047 4500 TIP 442084 17741 6104647 2024-02-28 21:25:42.607 2024-02-28 21:25:42.607 10000 FEE 442737 18743 6104667 2024-02-28 21:28:52.952 2024-02-28 21:28:52.952 500 FEE 442177 854 6104668 2024-02-28 21:28:52.952 2024-02-28 21:28:52.952 4500 TIP 442177 21040 6104671 2024-02-28 21:28:53.297 2024-02-28 21:28:53.297 500 FEE 442177 5359 6104672 2024-02-28 21:28:53.297 2024-02-28 21:28:53.297 4500 TIP 442177 18426 6104688 2024-02-28 21:30:59.551 2024-02-28 21:30:59.551 2500 FEE 442551 20109 6104689 2024-02-28 21:30:59.551 2024-02-28 21:30:59.551 22500 TIP 442551 18209 6104698 2024-02-28 21:31:55.057 2024-02-28 21:31:55.057 2100 FEE 442681 12976 6104699 2024-02-28 21:31:55.057 2024-02-28 21:31:55.057 18900 TIP 442681 21492 6104714 2024-02-28 21:33:27.279 2024-02-28 21:33:27.279 5700 FEE 442749 16562 6104715 2024-02-28 21:33:27.279 2024-02-28 21:33:27.279 51300 TIP 442749 20479 6104722 2024-02-28 21:33:48.651 2024-02-28 21:33:48.651 2100 FEE 441843 17552 6104723 2024-02-28 21:33:48.651 2024-02-28 21:33:48.651 18900 TIP 441843 704 6104732 2024-02-28 21:33:49.256 2024-02-28 21:33:49.256 1000 FEE 442754 16336 6104748 2024-02-28 21:34:09.194 2024-02-28 21:34:09.194 1000 POLL 442163 17148 6104767 2024-02-28 21:34:16.744 2024-02-28 21:34:16.744 1000 FEE 442751 16858 6104768 2024-02-28 21:34:16.744 2024-02-28 21:34:16.744 9000 TIP 442751 16954 6104791 2024-02-28 21:34:42.061 2024-02-28 21:34:42.061 2100 FEE 442627 4391 6104792 2024-02-28 21:34:42.061 2024-02-28 21:34:42.061 18900 TIP 442627 9906 6104794 2024-02-28 21:35:05.467 2024-02-28 21:35:05.467 1000 FEE 442757 703 6104796 2024-02-28 21:35:07.023 2024-02-28 21:35:07.023 10100 FEE 441843 5961 6104797 2024-02-28 21:35:07.023 2024-02-28 21:35:07.023 90900 TIP 441843 19938 6104825 2024-02-28 21:36:03.319 2024-02-28 21:36:03.319 10000 FEE 442729 2204 6104826 2024-02-28 21:36:03.319 2024-02-28 21:36:03.319 90000 TIP 442729 4989 6104827 2024-02-28 21:36:06.537 2024-02-28 21:36:06.537 0 FEE 442751 1603 6104888 2024-02-28 21:38:04.094 2024-02-28 21:38:04.094 2100 FEE 442721 18344 6104889 2024-02-28 21:38:04.094 2024-02-28 21:38:04.094 18900 TIP 442721 10728 6104896 2024-02-28 21:38:06.656 2024-02-28 21:38:06.656 10000 FEE 442627 21228 6104897 2024-02-28 21:38:06.656 2024-02-28 21:38:06.656 90000 TIP 442627 15697 6104898 2024-02-28 21:38:06.785 2024-02-28 21:38:06.785 2100 FEE 442710 21491 6104899 2024-02-28 21:38:06.785 2024-02-28 21:38:06.785 18900 TIP 442710 987 6104920 2024-02-28 21:38:30.944 2024-02-28 21:38:30.944 2100 FEE 442717 11716 6104921 2024-02-28 21:38:30.944 2024-02-28 21:38:30.944 18900 TIP 442717 5128 6104924 2024-02-28 21:38:34.109 2024-02-28 21:38:34.109 2100 FEE 442716 19785 6104925 2024-02-28 21:38:34.109 2024-02-28 21:38:34.109 18900 TIP 442716 5752 6104926 2024-02-28 21:38:44.318 2024-02-28 21:38:44.318 2100 FEE 442508 1772 6104927 2024-02-28 21:38:44.318 2024-02-28 21:38:44.318 18900 TIP 442508 7847 6104939 2024-02-28 21:39:28.012 2024-02-28 21:39:28.012 1000 FEE 442763 646 6104940 2024-02-28 21:39:59.826 2024-02-28 21:39:59.826 2100 FEE 442710 19193 6104941 2024-02-28 21:39:59.826 2024-02-28 21:39:59.826 18900 TIP 442710 20430 6104947 2024-02-28 21:40:52.705 2024-02-28 21:40:52.705 500 FEE 442571 16154 6104948 2024-02-28 21:40:52.705 2024-02-28 21:40:52.705 4500 TIP 442571 16485 6104988 2024-02-28 21:45:29.252 2024-02-28 21:45:29.252 5000 FEE 442325 6499 6104989 2024-02-28 21:45:29.252 2024-02-28 21:45:29.252 45000 TIP 442325 21577 6105000 2024-02-28 21:47:52.563 2024-02-28 21:47:52.563 1000 FEE 442769 18209 6105001 2024-02-28 21:47:52.563 2024-02-28 21:47:52.563 9000 TIP 442769 18658 6105006 2024-02-28 21:47:53.207 2024-02-28 21:47:53.207 1000 FEE 442769 21148 6105007 2024-02-28 21:47:53.207 2024-02-28 21:47:53.207 9000 TIP 442769 6515 6105008 2024-02-28 21:47:53.28 2024-02-28 21:47:53.28 1000 FEE 442769 18068 6105009 2024-02-28 21:47:53.28 2024-02-28 21:47:53.28 9000 TIP 442769 20299 6104425 2024-02-28 21:10:06.631 2024-02-28 21:10:06.631 100 FEE 442705 993 6104426 2024-02-28 21:10:06.631 2024-02-28 21:10:06.631 900 TIP 442705 20802 6104440 2024-02-28 21:12:13.864 2024-02-28 21:12:13.864 1000 FEE 442716 5171 6104454 2024-02-28 21:13:41.096 2024-02-28 21:13:41.096 1000 FEE 442710 8326 6104455 2024-02-28 21:13:41.096 2024-02-28 21:13:41.096 9000 TIP 442710 5728 6104470 2024-02-28 21:14:43.679 2024-02-28 21:14:43.679 100 FEE 442632 13878 6104471 2024-02-28 21:14:43.679 2024-02-28 21:14:43.679 900 TIP 442632 2285 6104503 2024-02-28 21:16:41.677 2024-02-28 21:16:41.677 1000 FEE 442698 20657 6104504 2024-02-28 21:16:41.677 2024-02-28 21:16:41.677 9000 TIP 442698 10719 6104513 2024-02-28 21:17:35.867 2024-02-28 21:17:35.867 1000 FEE 442551 18017 6104514 2024-02-28 21:17:35.867 2024-02-28 21:17:35.867 9000 TIP 442551 21172 6104517 2024-02-28 21:17:36.699 2024-02-28 21:17:36.699 1000 FEE 442551 14449 6104518 2024-02-28 21:17:36.699 2024-02-28 21:17:36.699 9000 TIP 442551 21201 6104519 2024-02-28 21:17:36.976 2024-02-28 21:17:36.976 1000 FEE 442551 17891 6104520 2024-02-28 21:17:36.976 2024-02-28 21:17:36.976 9000 TIP 442551 6229 6104532 2024-02-28 21:18:32.302 2024-02-28 21:18:32.302 1000 FEE 442583 19857 6104533 2024-02-28 21:18:32.302 2024-02-28 21:18:32.302 9000 TIP 442583 21063 6104553 2024-02-28 21:21:01.189 2024-02-28 21:21:01.189 1000 FEE 442728 14657 6104564 2024-02-28 21:22:01.351 2024-02-28 21:22:01.351 2100 FEE 442320 2204 6104565 2024-02-28 21:22:01.351 2024-02-28 21:22:01.351 18900 TIP 442320 16350 6104596 2024-02-28 21:23:56.923 2024-02-28 21:23:56.923 500 FEE 442313 20560 6104597 2024-02-28 21:23:56.923 2024-02-28 21:23:56.923 4500 TIP 442313 18581 6104614 2024-02-28 21:24:09.335 2024-02-28 21:24:09.335 100000 FEE 442734 19576 6104621 2024-02-28 21:24:25.413 2024-02-28 21:24:25.413 500 FEE 442084 5961 6104622 2024-02-28 21:24:25.413 2024-02-28 21:24:25.413 4500 TIP 442084 717 6104631 2024-02-28 21:24:36.536 2024-02-28 21:24:36.536 500 FEE 442106 618 6104632 2024-02-28 21:24:36.536 2024-02-28 21:24:36.536 4500 TIP 442106 674 6104637 2024-02-28 21:24:47.832 2024-02-28 21:24:47.832 500 FEE 442105 14472 6104638 2024-02-28 21:24:47.832 2024-02-28 21:24:47.832 4500 TIP 442105 20964 6104639 2024-02-28 21:24:48.118 2024-02-28 21:24:48.118 500 FEE 442105 20577 6104640 2024-02-28 21:24:48.118 2024-02-28 21:24:48.118 4500 TIP 442105 14037 6104663 2024-02-28 21:28:10.563 2024-02-28 21:28:10.563 0 FEE 442738 1175 6104676 2024-02-28 21:29:15.289 2024-02-28 21:29:15.289 1000 POLL 442163 925 6104677 2024-02-28 21:29:19.99 2024-02-28 21:29:19.99 1000 FEE 442742 19031 6104679 2024-02-28 21:29:39.013 2024-02-28 21:29:39.013 500 FEE 442234 1890 6104680 2024-02-28 21:29:39.013 2024-02-28 21:29:39.013 4500 TIP 442234 21148 6104684 2024-02-28 21:30:07.747 2024-02-28 21:30:07.747 1000 FEE 442745 9099 6104695 2024-02-28 21:31:09.272 2024-02-28 21:31:09.272 10000 FEE 442749 9335 6104700 2024-02-28 21:32:00.717 2024-02-28 21:32:00.717 2100 FEE 442674 6578 6104701 2024-02-28 21:32:00.717 2024-02-28 21:32:00.717 18900 TIP 442674 15662 6104716 2024-02-28 21:33:35.117 2024-02-28 21:33:35.117 1000 FEE 442751 19924 6104717 2024-02-28 21:33:35.117 2024-02-28 21:33:35.117 9000 TIP 442751 9906 6104720 2024-02-28 21:33:35.645 2024-02-28 21:33:35.645 1000 FEE 442751 12976 6104721 2024-02-28 21:33:35.645 2024-02-28 21:33:35.645 9000 TIP 442751 18717 6104725 2024-02-28 21:33:48.684 2024-02-28 21:33:48.684 1000 FEE 442753 4292 6104730 2024-02-28 21:33:49.155 2024-02-28 21:33:49.155 2100 FEE 441843 13177 6104731 2024-02-28 21:33:49.155 2024-02-28 21:33:49.155 18900 TIP 441843 15243 6104735 2024-02-28 21:33:49.593 2024-02-28 21:33:49.593 2100 FEE 441843 17103 6104736 2024-02-28 21:33:49.593 2024-02-28 21:33:49.593 18900 TIP 441843 6361 6104743 2024-02-28 21:33:50.569 2024-02-28 21:33:50.569 2100 FEE 441843 19842 6104744 2024-02-28 21:33:50.569 2024-02-28 21:33:50.569 18900 TIP 441843 7553 6104816 2024-02-28 21:35:39.288 2024-02-28 21:35:39.288 2100 FEE 442079 19156 6104817 2024-02-28 21:35:39.288 2024-02-28 21:35:39.288 18900 TIP 442079 712 6104818 2024-02-28 21:35:51.119 2024-02-28 21:35:51.119 1000 FEE 442551 16350 6104819 2024-02-28 21:35:51.119 2024-02-28 21:35:51.119 9000 TIP 442551 5779 6104458 2024-02-28 21:14:02.223 2024-02-28 21:14:02.223 1000 STREAM 141924 18321 6104991 2024-02-28 21:46:02.456 2024-02-28 21:46:02.456 1000 STREAM 141924 986 6105083 2024-02-28 21:59:02.52 2024-02-28 21:59:02.52 1000 STREAM 141924 866 6105088 2024-02-28 22:01:02.529 2024-02-28 22:01:02.529 1000 STREAM 141924 18932 6105095 2024-02-28 22:04:02.539 2024-02-28 22:04:02.539 1000 STREAM 141924 16594 6105121 2024-02-28 22:08:02.558 2024-02-28 22:08:02.558 1000 STREAM 141924 9551 6105139 2024-02-28 22:12:02.584 2024-02-28 22:12:02.584 1000 STREAM 141924 14080 6105153 2024-02-28 22:14:02.573 2024-02-28 22:14:02.573 1000 STREAM 141924 19557 6105164 2024-02-28 22:16:02.609 2024-02-28 22:16:02.609 1000 STREAM 141924 20201 6105194 2024-02-28 22:19:02.619 2024-02-28 22:19:02.619 1000 STREAM 141924 18387 6105214 2024-02-28 22:20:02.628 2024-02-28 22:20:02.628 1000 STREAM 141924 5828 6105251 2024-02-28 22:30:02.752 2024-02-28 22:30:02.752 1000 STREAM 141924 14663 6105252 2024-02-28 22:31:02.71 2024-02-28 22:31:02.71 1000 STREAM 141924 21422 6105309 2024-02-28 22:34:02.711 2024-02-28 22:34:02.711 1000 STREAM 141924 17722 6105323 2024-02-28 22:35:02.744 2024-02-28 22:35:02.744 1000 STREAM 141924 1326 6105358 2024-02-28 22:36:02.742 2024-02-28 22:36:02.742 1000 STREAM 141924 14472 6105377 2024-02-28 22:38:02.752 2024-02-28 22:38:02.752 1000 STREAM 141924 1272 6104511 2024-02-28 21:17:04.143 2024-02-28 21:17:04.143 1000 STREAM 141924 13348 6104540 2024-02-28 21:20:04.209 2024-02-28 21:20:04.209 1000 STREAM 141924 21458 6104554 2024-02-28 21:21:02.177 2024-02-28 21:21:02.177 1000 STREAM 141924 13931 6104580 2024-02-28 21:23:02.202 2024-02-28 21:23:02.202 1000 STREAM 141924 20120 6104641 2024-02-28 21:25:02.216 2024-02-28 21:25:02.216 1000 STREAM 141924 7966 6104662 2024-02-28 21:28:02.245 2024-02-28 21:28:02.245 1000 STREAM 141924 11378 6104683 2024-02-28 21:30:02.317 2024-02-28 21:30:02.317 1000 STREAM 141924 21627 6104702 2024-02-28 21:32:02.283 2024-02-28 21:32:02.283 1000 STREAM 141924 2196 6104824 2024-02-28 21:36:02.317 2024-02-28 21:36:02.317 1000 STREAM 141924 21609 6104942 2024-02-28 21:40:02.361 2024-02-28 21:40:02.361 1000 STREAM 141924 633 6104625 2024-02-28 21:24:36.21 2024-02-28 21:24:36.21 500 FEE 442106 9985 6104626 2024-02-28 21:24:36.21 2024-02-28 21:24:36.21 4500 TIP 442106 21492 6104659 2024-02-28 21:27:41.551 2024-02-28 21:27:41.551 12800 FEE 442718 15556 6104660 2024-02-28 21:27:41.551 2024-02-28 21:27:41.551 115200 TIP 442718 20683 6104696 2024-02-28 21:31:37.995 2024-02-28 21:31:37.995 2100 FEE 442706 19663 6104697 2024-02-28 21:31:37.995 2024-02-28 21:31:37.995 18900 TIP 442706 1162 6104709 2024-02-28 21:32:56.63 2024-02-28 21:32:56.63 2100 FEE 442724 20450 6104710 2024-02-28 21:32:56.63 2024-02-28 21:32:56.63 18900 TIP 442724 27 6104755 2024-02-28 21:34:14.378 2024-02-28 21:34:14.378 2100 FEE 442163 2741 6104756 2024-02-28 21:34:14.378 2024-02-28 21:34:14.378 18900 TIP 442163 14278 6104777 2024-02-28 21:34:40.086 2024-02-28 21:34:40.086 2100 FEE 442627 889 6104778 2024-02-28 21:34:40.086 2024-02-28 21:34:40.086 18900 TIP 442627 19601 6104783 2024-02-28 21:34:40.826 2024-02-28 21:34:40.826 2100 FEE 442627 20180 6104784 2024-02-28 21:34:40.826 2024-02-28 21:34:40.826 18900 TIP 442627 1401 6104648 2024-02-28 21:26:03.6 2024-02-28 21:26:03.6 1000 STREAM 141924 19153 6104656 2024-02-28 21:27:01.596 2024-02-28 21:27:01.596 1000 STREAM 141924 20094 6104675 2024-02-28 21:29:03.596 2024-02-28 21:29:03.596 1000 STREAM 141924 963 6104690 2024-02-28 21:31:03.605 2024-02-28 21:31:03.605 1000 STREAM 141924 19837 6104861 2024-02-28 21:37:03.639 2024-02-28 21:37:03.639 1000 STREAM 141924 12911 6104949 2024-02-28 21:41:03.649 2024-02-28 21:41:03.649 1000 STREAM 141924 20454 6104973 2024-02-28 21:43:03.67 2024-02-28 21:43:03.67 1000 STREAM 141924 20251 6104986 2024-02-28 21:45:03.665 2024-02-28 21:45:03.665 1000 STREAM 141924 10273 6105078 2024-02-28 21:56:03.736 2024-02-28 21:56:03.736 1000 STREAM 141924 20655 6105082 2024-02-28 21:58:03.752 2024-02-28 21:58:03.752 1000 STREAM 141924 19016 6105108 2024-02-28 22:07:03.779 2024-02-28 22:07:03.779 1000 STREAM 141924 1124 6105136 2024-02-28 22:11:03.789 2024-02-28 22:11:03.789 1000 STREAM 141924 9348 6104746 2024-02-28 21:34:05.34 2024-02-28 21:34:05.34 2100 FEE 442579 19036 6104747 2024-02-28 21:34:05.34 2024-02-28 21:34:05.34 18900 TIP 442579 6533 6104759 2024-02-28 21:34:14.863 2024-02-28 21:34:14.863 2100 FEE 442163 18629 6104760 2024-02-28 21:34:14.863 2024-02-28 21:34:14.863 18900 TIP 442163 1209 6104761 2024-02-28 21:34:16.234 2024-02-28 21:34:16.234 1000 FEE 442751 16355 6104762 2024-02-28 21:34:16.234 2024-02-28 21:34:16.234 9000 TIP 442751 1195 6104776 2024-02-28 21:34:36.171 2024-02-28 21:34:36.171 1000 FEE 442755 19576 6104804 2024-02-28 21:35:35.743 2024-02-28 21:35:35.743 900 FEE 442755 20280 6104805 2024-02-28 21:35:35.743 2024-02-28 21:35:35.743 8100 TIP 442755 9337 6104834 2024-02-28 21:36:20.011 2024-02-28 21:36:20.011 2100 FEE 441116 1465 6104835 2024-02-28 21:36:20.011 2024-02-28 21:36:20.011 18900 TIP 441116 2232 6104836 2024-02-28 21:36:20.188 2024-02-28 21:36:20.188 2100 FEE 441116 19854 6104837 2024-02-28 21:36:20.188 2024-02-28 21:36:20.188 18900 TIP 441116 1261 6104850 2024-02-28 21:36:27.223 2024-02-28 21:36:27.223 2100 FEE 442325 14122 6104851 2024-02-28 21:36:27.223 2024-02-28 21:36:27.223 18900 TIP 442325 6160 6104852 2024-02-28 21:36:27.83 2024-02-28 21:36:27.83 2100 FEE 442325 21139 6104853 2024-02-28 21:36:27.83 2024-02-28 21:36:27.83 18900 TIP 442325 21178 6104870 2024-02-28 21:37:38.81 2024-02-28 21:37:38.81 1000 POLL 442751 1631 6104785 2024-02-28 21:34:41.025 2024-02-28 21:34:41.025 2100 FEE 442627 20409 6104786 2024-02-28 21:34:41.025 2024-02-28 21:34:41.025 18900 TIP 442627 3392 6104814 2024-02-28 21:35:38.61 2024-02-28 21:35:38.61 2100 FEE 442079 17696 6104815 2024-02-28 21:35:38.61 2024-02-28 21:35:38.61 18900 TIP 442079 2195 6104842 2024-02-28 21:36:21.226 2024-02-28 21:36:21.226 2100 FEE 441116 5069 6104843 2024-02-28 21:36:21.226 2024-02-28 21:36:21.226 18900 TIP 441116 18819 6104844 2024-02-28 21:36:25.694 2024-02-28 21:36:25.694 2100 FEE 442325 2748 6104845 2024-02-28 21:36:25.694 2024-02-28 21:36:25.694 18900 TIP 442325 1221 6104856 2024-02-28 21:36:32.204 2024-02-28 21:36:32.204 2100 FEE 442710 6041 6104857 2024-02-28 21:36:32.204 2024-02-28 21:36:32.204 18900 TIP 442710 8459 6104894 2024-02-28 21:38:06.623 2024-02-28 21:38:06.623 2100 FEE 442710 3396 6104895 2024-02-28 21:38:06.623 2024-02-28 21:38:06.623 18900 TIP 442710 8095 6104995 2024-02-28 21:46:59.488 2024-02-28 21:46:59.488 1000 FEE 442769 19148 6105012 2024-02-28 21:47:54.939 2024-02-28 21:47:54.939 1000 FEE 442769 16929 6105013 2024-02-28 21:47:54.939 2024-02-28 21:47:54.939 9000 TIP 442769 4115 6105066 2024-02-28 21:53:34.364 2024-02-28 21:53:34.364 10000 FEE 442346 18625 6105067 2024-02-28 21:53:34.364 2024-02-28 21:53:34.364 90000 TIP 442346 8376 6105079 2024-02-28 21:56:55.548 2024-02-28 21:56:55.548 1000 POLL 442163 1209 6105084 2024-02-28 21:59:08.922 2024-02-28 21:59:08.922 10000 FEE 442775 629 6105110 2024-02-28 22:07:28.047 2024-02-28 22:07:28.047 1000 FEE 442783 1307 6105117 2024-02-28 22:08:00.514 2024-02-28 22:08:00.514 700 FEE 442556 15594 6105118 2024-02-28 22:08:00.514 2024-02-28 22:08:00.514 6300 TIP 442556 18727 6105131 2024-02-28 22:09:27.764 2024-02-28 22:09:27.764 1000 FEE 442784 19193 6105149 2024-02-28 22:14:01.827 2024-02-28 22:14:01.827 7700 FEE 442751 5306 6105150 2024-02-28 22:14:01.827 2024-02-28 22:14:01.827 69300 TIP 442751 11220 6105162 2024-02-28 22:15:51.644 2024-02-28 22:15:51.644 5000 FEE 442170 2061 6105163 2024-02-28 22:15:51.644 2024-02-28 22:15:51.644 45000 TIP 442170 16956 6105199 2024-02-28 22:19:07.969 2024-02-28 22:19:07.969 100 FEE 442636 21393 6105200 2024-02-28 22:19:07.969 2024-02-28 22:19:07.969 900 TIP 442636 21614 6105205 2024-02-28 22:19:24.594 2024-02-28 22:19:24.594 1000 FEE 442790 1307 6105215 2024-02-28 22:20:03.473 2024-02-28 22:20:03.473 100 FEE 442708 861 6105216 2024-02-28 22:20:03.473 2024-02-28 22:20:03.473 900 TIP 442708 21563 6105217 2024-02-28 22:20:03.693 2024-02-28 22:20:03.693 900 FEE 442708 763 6105218 2024-02-28 22:20:03.693 2024-02-28 22:20:03.693 8100 TIP 442708 20624 6105230 2024-02-28 22:22:21.177 2024-02-28 22:22:21.177 5700 FEE 442612 7986 6105231 2024-02-28 22:22:21.177 2024-02-28 22:22:21.177 51300 TIP 442612 16126 6105244 2024-02-28 22:26:24.329 2024-02-28 22:26:24.329 500 FEE 442786 19996 6105245 2024-02-28 22:26:24.329 2024-02-28 22:26:24.329 4500 TIP 442786 21624 6105265 2024-02-28 22:32:24.48 2024-02-28 22:32:24.48 1000 FEE 442795 18829 6105278 2024-02-28 22:32:27.157 2024-02-28 22:32:27.157 2100 FEE 442751 16042 6105279 2024-02-28 22:32:27.157 2024-02-28 22:32:27.157 18900 TIP 442751 21578 6105306 2024-02-28 22:33:22.411 2024-02-28 22:33:22.411 2100 FEE 441854 7766 6105307 2024-02-28 22:33:22.411 2024-02-28 22:33:22.411 18900 TIP 441854 20183 6105310 2024-02-28 22:34:13.532 2024-02-28 22:34:13.532 1000 FEE 442769 3411 6105311 2024-02-28 22:34:13.532 2024-02-28 22:34:13.532 9000 TIP 442769 2718 6105334 2024-02-28 22:35:11.287 2024-02-28 22:35:11.287 1000 FEE 442751 18909 6105335 2024-02-28 22:35:11.287 2024-02-28 22:35:11.287 9000 TIP 442751 12808 6105342 2024-02-28 22:35:14.827 2024-02-28 22:35:14.827 1000 FEE 442551 13599 6105343 2024-02-28 22:35:14.827 2024-02-28 22:35:14.827 9000 TIP 442551 1603 6105373 2024-02-28 22:37:38.217 2024-02-28 22:37:38.217 300 FEE 442786 18494 6105374 2024-02-28 22:37:38.217 2024-02-28 22:37:38.217 2700 TIP 442786 8245 6105408 2024-02-28 22:43:18.101 2024-02-28 22:43:18.101 1000 FEE 442774 14515 6105409 2024-02-28 22:43:18.101 2024-02-28 22:43:18.101 9000 TIP 442774 20964 6105471 2024-02-28 22:52:07.288 2024-02-28 22:52:07.288 1000 FEE 442809 18745 6105503 2024-02-28 22:55:28.072 2024-02-28 22:55:28.072 1000 FEE 442812 18941 6105511 2024-02-28 22:56:21.609 2024-02-28 22:56:21.609 2500 FEE 440870 18581 6105512 2024-02-28 22:56:21.609 2024-02-28 22:56:21.609 22500 TIP 440870 1394 6105534 2024-02-28 22:57:35.867 2024-02-28 22:57:35.867 1000 FEE 442813 616 6105555 2024-02-28 22:58:27.162 2024-02-28 22:58:27.162 1000 FEE 442795 5757 6105556 2024-02-28 22:58:27.162 2024-02-28 22:58:27.162 9000 TIP 442795 2609 6105587 2024-02-28 23:01:28.688 2024-02-28 23:01:28.688 1000 FEE 442821 18016 6105617 2024-02-28 23:05:02.457 2024-02-28 23:05:02.457 1000 FEE 442814 8380 6105618 2024-02-28 23:05:02.457 2024-02-28 23:05:02.457 9000 TIP 442814 7668 6105621 2024-02-28 23:05:02.763 2024-02-28 23:05:02.763 1000 FEE 442814 1478 6105622 2024-02-28 23:05:02.763 2024-02-28 23:05:02.763 9000 TIP 442814 10469 6105632 2024-02-28 23:06:28.121 2024-02-28 23:06:28.121 1000 FEE 442828 7847 6105638 2024-02-28 23:07:27.182 2024-02-28 23:07:27.182 3100 FEE 442828 19995 6105639 2024-02-28 23:07:27.182 2024-02-28 23:07:27.182 27900 TIP 442828 2264 6105641 2024-02-28 23:07:36.683 2024-02-28 23:07:36.683 0 FEE 442822 1658 6105670 2024-02-28 23:11:13.964 2024-02-28 23:11:13.964 1000 POLL 442751 10731 6105671 2024-02-28 23:11:33.263 2024-02-28 23:11:33.263 2100 FEE 442508 622 6105672 2024-02-28 23:11:33.263 2024-02-28 23:11:33.263 18900 TIP 442508 20254 6105686 2024-02-28 23:11:48.619 2024-02-28 23:11:48.619 6900 FEE 442831 1180 6105687 2024-02-28 23:11:48.619 2024-02-28 23:11:48.619 62100 TIP 442831 669 6105710 2024-02-28 23:15:41.524 2024-02-28 23:15:41.524 1000 FEE 442844 2390 6105722 2024-02-28 23:16:20.068 2024-02-28 23:16:20.068 1000 FEE 442722 4177 6105723 2024-02-28 23:16:20.068 2024-02-28 23:16:20.068 9000 TIP 442722 998 6105725 2024-02-28 23:16:28.923 2024-02-28 23:16:28.923 1000 FEE 442846 2513 6105771 2024-02-28 23:22:22.768 2024-02-28 23:22:22.768 1000 FEE 442855 21166 6105800 2024-02-28 23:25:49.724 2024-02-28 23:25:49.724 1000 FEE 442860 18154 6105806 2024-02-28 23:26:22.351 2024-02-28 23:26:22.351 2600 FEE 442848 16680 6105807 2024-02-28 23:26:22.351 2024-02-28 23:26:22.351 23400 TIP 442848 687 6105849 2024-02-28 23:27:00.743 2024-02-28 23:27:00.743 7700 FEE 442820 1881 6105850 2024-02-28 23:27:00.743 2024-02-28 23:27:00.743 69300 TIP 442820 11450 6105864 2024-02-28 23:27:20.189 2024-02-28 23:27:20.189 1000 POLL 442751 11165 6105890 2024-02-28 23:29:09.955 2024-02-28 23:29:09.955 2100 FEE 442636 15075 6105891 2024-02-28 23:29:09.955 2024-02-28 23:29:09.955 18900 TIP 442636 20157 6105900 2024-02-28 23:30:53.785 2024-02-28 23:30:53.785 500 FEE 442332 6149 6105901 2024-02-28 23:30:53.785 2024-02-28 23:30:53.785 4500 TIP 442332 19375 6105929 2024-02-28 23:33:29.952 2024-02-28 23:33:29.952 1000 FEE 442872 13921 6105959 2024-02-28 23:35:00.825 2024-02-28 23:35:00.825 500 FEE 442781 805 6105960 2024-02-28 23:35:00.825 2024-02-28 23:35:00.825 4500 TIP 442781 15351 6105966 2024-02-28 23:35:36.163 2024-02-28 23:35:36.163 1000 FEE 442023 1307 6105967 2024-02-28 23:35:36.163 2024-02-28 23:35:36.163 9000 TIP 442023 20022 6105968 2024-02-28 23:35:36.38 2024-02-28 23:35:36.38 1000 FEE 442023 13921 6105969 2024-02-28 23:35:36.38 2024-02-28 23:35:36.38 9000 TIP 442023 18815 6105987 2024-02-28 23:35:56.255 2024-02-28 23:35:56.255 2100 FEE 442722 14731 6105988 2024-02-28 23:35:56.255 2024-02-28 23:35:56.255 18900 TIP 442722 11038 6105998 2024-02-28 23:36:13.01 2024-02-28 23:36:13.01 2600 FEE 442790 18230 6105999 2024-02-28 23:36:13.01 2024-02-28 23:36:13.01 23400 TIP 442790 15617 6106000 2024-02-28 23:36:24.61 2024-02-28 23:36:24.61 1000 FEE 442876 16653 6106001 2024-02-28 23:36:30.654 2024-02-28 23:36:30.654 100 FEE 442723 20825 6106002 2024-02-28 23:36:30.654 2024-02-28 23:36:30.654 900 TIP 442723 1505 6106005 2024-02-28 23:36:51.088 2024-02-28 23:36:51.088 1000 FEE 442878 11897 6106039 2024-02-28 23:38:29.153 2024-02-28 23:38:29.153 1000 FEE 442879 19637 6106040 2024-02-28 23:38:48.895 2024-02-28 23:38:48.895 1000 FEE 442880 1175 6104829 2024-02-28 21:36:12.578 2024-02-28 21:36:12.578 9000 TIP 442757 19777 6104838 2024-02-28 21:36:20.35 2024-02-28 21:36:20.35 2100 FEE 441116 20881 6104839 2024-02-28 21:36:20.35 2024-02-28 21:36:20.35 18900 TIP 441116 20073 6104860 2024-02-28 21:36:44.117 2024-02-28 21:36:44.117 1000 FEE 442760 18714 6104863 2024-02-28 21:37:14.154 2024-02-28 21:37:14.154 1000 FEE 442757 9916 6104864 2024-02-28 21:37:14.154 2024-02-28 21:37:14.154 9000 TIP 442757 2614 6104873 2024-02-28 21:37:43.443 2024-02-28 21:37:43.443 1000 FEE 442758 15806 6104874 2024-02-28 21:37:43.443 2024-02-28 21:37:43.443 9000 TIP 442758 2065 6104882 2024-02-28 21:38:03.317 2024-02-28 21:38:03.317 2100 FEE 442721 3745 6104883 2024-02-28 21:38:03.317 2024-02-28 21:38:03.317 18900 TIP 442721 651 6104884 2024-02-28 21:38:03.686 2024-02-28 21:38:03.686 2100 FEE 442721 18641 6104885 2024-02-28 21:38:03.686 2024-02-28 21:38:03.686 18900 TIP 442721 12277 6104918 2024-02-28 21:38:30.34 2024-02-28 21:38:30.34 2100 FEE 442717 16513 6104919 2024-02-28 21:38:30.34 2024-02-28 21:38:30.34 18900 TIP 442717 21033 6104933 2024-02-28 21:39:22.944 2024-02-28 21:39:22.944 100 FEE 442762 18314 6104934 2024-02-28 21:39:22.944 2024-02-28 21:39:22.944 900 TIP 442762 5175 6104961 2024-02-28 21:41:27.491 2024-02-28 21:41:27.491 1000 FEE 442736 4167 6104962 2024-02-28 21:41:27.491 2024-02-28 21:41:27.491 9000 TIP 442736 21166 6104966 2024-02-28 21:42:01.848 2024-02-28 21:42:01.848 0 FEE 442765 11165 6104969 2024-02-28 21:42:47.209 2024-02-28 21:42:47.209 2100 FEE 442678 12102 6104970 2024-02-28 21:42:47.209 2024-02-28 21:42:47.209 18900 TIP 442678 10283 6104984 2024-02-28 21:44:57.303 2024-02-28 21:44:57.303 6900 FEE 442751 18231 6104985 2024-02-28 21:44:57.303 2024-02-28 21:44:57.303 62100 TIP 442751 21491 6105020 2024-02-28 21:47:56.01 2024-02-28 21:47:56.01 2100 FEE 442751 18507 6105021 2024-02-28 21:47:56.01 2024-02-28 21:47:56.01 18900 TIP 442751 21014 6105024 2024-02-28 21:48:01.156 2024-02-28 21:48:01.156 1000 FEE 442767 18178 6105025 2024-02-28 21:48:01.156 2024-02-28 21:48:01.156 9000 TIP 442767 16406 6105032 2024-02-28 21:48:25.949 2024-02-28 21:48:25.949 1000 FEE 442770 18351 6105044 2024-02-28 21:49:05.574 2024-02-28 21:49:05.574 1000 FEE 442660 9816 6105045 2024-02-28 21:49:05.574 2024-02-28 21:49:05.574 9000 TIP 442660 17064 6105068 2024-02-28 21:53:37.542 2024-02-28 21:53:37.542 300 FEE 439234 21485 6105069 2024-02-28 21:53:37.542 2024-02-28 21:53:37.542 2700 TIP 439234 4014 6105128 2024-02-28 22:08:59.522 2024-02-28 22:08:59.522 10000 FEE 442699 21371 6105129 2024-02-28 22:08:59.522 2024-02-28 22:08:59.522 90000 TIP 442699 19732 6105133 2024-02-28 22:10:18.706 2024-02-28 22:10:18.706 5000 FEE 442643 4126 6105134 2024-02-28 22:10:18.706 2024-02-28 22:10:18.706 45000 TIP 442643 14905 6105135 2024-02-28 22:10:59.919 2024-02-28 22:10:59.919 1000 FEE 442785 17046 6105160 2024-02-28 22:15:03.902 2024-02-28 22:15:03.902 1000 FEE 442781 9365 6105161 2024-02-28 22:15:03.902 2024-02-28 22:15:03.902 9000 TIP 442781 686 6105165 2024-02-28 22:16:24.013 2024-02-28 22:16:24.013 1000 FEE 442786 8472 6105171 2024-02-28 22:17:35.979 2024-02-28 22:17:35.979 1000 POLL 442163 19961 6105179 2024-02-28 22:18:22.633 2024-02-28 22:18:22.633 900 FEE 442785 18280 6105180 2024-02-28 22:18:22.633 2024-02-28 22:18:22.633 8100 TIP 442785 21047 6105197 2024-02-28 22:19:05.215 2024-02-28 22:19:05.215 900 FEE 442683 7185 6105198 2024-02-28 22:19:05.215 2024-02-28 22:19:05.215 8100 TIP 442683 8498 6105210 2024-02-28 22:19:52.405 2024-02-28 22:19:52.405 1300 FEE 442214 4388 6105211 2024-02-28 22:19:52.405 2024-02-28 22:19:52.405 11700 TIP 442214 18704 6105234 2024-02-28 22:23:43.507 2024-02-28 22:23:43.507 1000 FEE 442791 21140 6105235 2024-02-28 22:23:49.877 2024-02-28 22:23:49.877 500 FEE 442721 15060 6105236 2024-02-28 22:23:49.877 2024-02-28 22:23:49.877 4500 TIP 442721 4763 6105240 2024-02-28 22:24:59.991 2024-02-28 22:24:59.991 1000 DONT_LIKE_THIS 442700 16348 6105257 2024-02-28 22:32:21.554 2024-02-28 22:32:21.554 2100 FEE 442313 909 6105258 2024-02-28 22:32:21.554 2024-02-28 22:32:21.554 18900 TIP 442313 4175 6105274 2024-02-28 22:32:26.773 2024-02-28 22:32:26.773 2100 FEE 442751 14267 6105275 2024-02-28 22:32:26.773 2024-02-28 22:32:26.773 18900 TIP 442751 19902 6105328 2024-02-28 22:35:10.706 2024-02-28 22:35:10.706 1000 FEE 442751 13798 6105329 2024-02-28 22:35:10.706 2024-02-28 22:35:10.706 9000 TIP 442751 21472 6105330 2024-02-28 22:35:10.908 2024-02-28 22:35:10.908 1000 FEE 442751 20717 6105331 2024-02-28 22:35:10.908 2024-02-28 22:35:10.908 9000 TIP 442751 18453 6105338 2024-02-28 22:35:11.602 2024-02-28 22:35:11.602 1000 FEE 442751 14515 6105339 2024-02-28 22:35:11.602 2024-02-28 22:35:11.602 9000 TIP 442751 21275 6105340 2024-02-28 22:35:11.777 2024-02-28 22:35:11.777 1000 FEE 442751 13878 6105341 2024-02-28 22:35:11.777 2024-02-28 22:35:11.777 9000 TIP 442751 7425 6105354 2024-02-28 22:35:15.987 2024-02-28 22:35:15.987 1000 FEE 442551 21281 6105355 2024-02-28 22:35:15.987 2024-02-28 22:35:15.987 9000 TIP 442551 12160 6105369 2024-02-28 22:37:37.702 2024-02-28 22:37:37.702 300 FEE 442786 16124 6105370 2024-02-28 22:37:37.702 2024-02-28 22:37:37.702 2700 TIP 442786 11298 6105375 2024-02-28 22:37:38.433 2024-02-28 22:37:38.433 300 FEE 442786 2338 6105376 2024-02-28 22:37:38.433 2024-02-28 22:37:38.433 2700 TIP 442786 18735 6105381 2024-02-28 22:39:30.375 2024-02-28 22:39:30.375 10000 FEE 442800 981 6105385 2024-02-28 22:39:56.48 2024-02-28 22:39:56.48 500 FEE 442170 9171 6105386 2024-02-28 22:39:56.48 2024-02-28 22:39:56.48 4500 TIP 442170 18877 6105406 2024-02-28 22:42:53.831 2024-02-28 22:42:53.831 1000 FEE 442802 7979 6105452 2024-02-28 22:50:33.946 2024-02-28 22:50:33.946 3200 FEE 441843 15577 6105453 2024-02-28 22:50:33.946 2024-02-28 22:50:33.946 28800 TIP 441843 18473 6105466 2024-02-28 22:51:43.031 2024-02-28 22:51:43.031 2100 FEE 442781 15938 6105467 2024-02-28 22:51:43.031 2024-02-28 22:51:43.031 18900 TIP 442781 20243 6105477 2024-02-28 22:53:31.882 2024-02-28 22:53:31.882 1000 POLL 442751 21051 6105478 2024-02-28 22:53:45.456 2024-02-28 22:53:45.456 12800 FEE 441752 12965 6105479 2024-02-28 22:53:45.456 2024-02-28 22:53:45.456 115200 TIP 441752 667 6105481 2024-02-28 22:53:59.719 2024-02-28 22:53:59.719 3200 FEE 441854 16753 6105482 2024-02-28 22:53:59.719 2024-02-28 22:53:59.719 28800 TIP 441854 17275 6105486 2024-02-28 22:54:08.538 2024-02-28 22:54:08.538 10000 FEE 441995 18270 6105487 2024-02-28 22:54:08.538 2024-02-28 22:54:08.538 90000 TIP 441995 15732 6105509 2024-02-28 22:56:08.535 2024-02-28 22:56:08.535 800 FEE 441917 21589 6105510 2024-02-28 22:56:08.535 2024-02-28 22:56:08.535 7200 TIP 441917 17517 6105535 2024-02-28 22:57:40.96 2024-02-28 22:57:40.96 800 FEE 441523 13759 6105536 2024-02-28 22:57:40.96 2024-02-28 22:57:40.96 7200 TIP 441523 21361 6105551 2024-02-28 22:58:12.687 2024-02-28 22:58:12.687 9000 FEE 442796 760 6105552 2024-02-28 22:58:12.687 2024-02-28 22:58:12.687 81000 TIP 442796 16309 6105562 2024-02-28 22:59:24.745 2024-02-28 22:59:24.745 1000 POLL 442751 12278 6105579 2024-02-28 23:01:02.684 2024-02-28 23:01:02.684 1000 FEE 442751 12222 6105580 2024-02-28 23:01:02.684 2024-02-28 23:01:02.684 9000 TIP 442751 12921 6105611 2024-02-28 23:04:28.043 2024-02-28 23:04:28.043 12800 FEE 442468 1772 6105612 2024-02-28 23:04:28.043 2024-02-28 23:04:28.043 115200 TIP 442468 18714 6105623 2024-02-28 23:05:16.792 2024-02-28 23:05:16.792 1000 FEE 442826 633 6105631 2024-02-28 23:06:20.763 2024-02-28 23:06:20.763 1000 POLL 442751 20564 6105642 2024-02-28 23:07:38.579 2024-02-28 23:07:38.579 1000 FEE 442831 2459 6105649 2024-02-28 23:08:45.367 2024-02-28 23:08:45.367 1000 FEE 442815 12946 6105650 2024-02-28 23:08:45.367 2024-02-28 23:08:45.367 9000 TIP 442815 17316 6105675 2024-02-28 23:11:41.862 2024-02-28 23:11:41.862 6900 FEE 442822 17690 6105676 2024-02-28 23:11:41.862 2024-02-28 23:11:41.862 62100 TIP 442822 12774 6105689 2024-02-28 23:12:30.657 2024-02-28 23:12:30.657 1000 POLL 442751 5306 6105693 2024-02-28 23:13:05.079 2024-02-28 23:13:05.079 1000 FEE 442841 2042 6105696 2024-02-28 23:13:28.814 2024-02-28 23:13:28.814 2100 FEE 442825 16357 6105697 2024-02-28 23:13:28.814 2024-02-28 23:13:28.814 18900 TIP 442825 19193 6104832 2024-02-28 21:36:12.908 2024-02-28 21:36:12.908 1000 FEE 442757 20826 6104833 2024-02-28 21:36:12.908 2024-02-28 21:36:12.908 9000 TIP 442757 9346 6104846 2024-02-28 21:36:26.169 2024-02-28 21:36:26.169 2100 FEE 442325 1173 6104847 2024-02-28 21:36:26.169 2024-02-28 21:36:26.169 18900 TIP 442325 649 6104848 2024-02-28 21:36:26.759 2024-02-28 21:36:26.759 2100 FEE 442325 13174 6104849 2024-02-28 21:36:26.759 2024-02-28 21:36:26.759 18900 TIP 442325 4043 6104910 2024-02-28 21:38:21.049 2024-02-28 21:38:21.049 2100 FEE 442721 7746 6104911 2024-02-28 21:38:21.049 2024-02-28 21:38:21.049 18900 TIP 442721 2952 6104963 2024-02-28 21:41:42.973 2024-02-28 21:41:42.973 1000 FEE 442765 1617 6104964 2024-02-28 21:41:58.866 2024-02-28 21:41:58.866 5000 FEE 442226 11956 6104965 2024-02-28 21:41:58.866 2024-02-28 21:41:58.866 45000 TIP 442226 4768 6104968 2024-02-28 21:42:11.507 2024-02-28 21:42:11.507 1000 FEE 442766 2502 6104994 2024-02-28 21:46:47.449 2024-02-28 21:46:47.449 1000 POLL 442751 1064 6105022 2024-02-28 21:48:00.987 2024-02-28 21:48:00.987 1000 FEE 442767 1802 6105023 2024-02-28 21:48:00.987 2024-02-28 21:48:00.987 9000 TIP 442767 11866 6105030 2024-02-28 21:48:19.631 2024-02-28 21:48:19.631 1000 FEE 442724 16929 6105031 2024-02-28 21:48:19.631 2024-02-28 21:48:19.631 9000 TIP 442724 7877 6105033 2024-02-28 21:48:35.993 2024-02-28 21:48:35.993 1000 FEE 442771 18119 6105035 2024-02-28 21:48:59.371 2024-02-28 21:48:59.371 1000 FEE 442657 9242 6105036 2024-02-28 21:48:59.371 2024-02-28 21:48:59.371 9000 TIP 442657 20504 6105052 2024-02-28 21:51:02.548 2024-02-28 21:51:02.548 200 FEE 442170 4126 6105053 2024-02-28 21:51:02.548 2024-02-28 21:51:02.548 1800 TIP 442170 11018 6105056 2024-02-28 21:51:47.01 2024-02-28 21:51:47.01 1000 FEE 442772 703 6105073 2024-02-28 21:54:16.225 2024-02-28 21:54:16.225 0 FEE 442771 18904 6105081 2024-02-28 21:57:22.074 2024-02-28 21:57:22.074 10000 FEE 442774 5758 6105085 2024-02-28 21:59:45.258 2024-02-28 21:59:45.258 1000 FEE 442776 21275 6105087 2024-02-28 22:00:56.248 2024-02-28 22:00:56.248 1000 FEE 442777 9246 6105096 2024-02-28 22:04:05.859 2024-02-28 22:04:05.859 100000 FEE 442778 18608 6105098 2024-02-28 22:05:36.497 2024-02-28 22:05:36.497 2100 FEE 442751 992 6105099 2024-02-28 22:05:36.497 2024-02-28 22:05:36.497 18900 TIP 442751 10056 6105103 2024-02-28 22:06:00.206 2024-02-28 22:06:00.206 1000 FEE 442780 9169 6105109 2024-02-28 22:07:08.82 2024-02-28 22:07:08.82 1000 FEE 442782 20258 6105119 2024-02-28 22:08:00.691 2024-02-28 22:08:00.691 700 FEE 442556 20094 6105120 2024-02-28 22:08:00.691 2024-02-28 22:08:00.691 6300 TIP 442556 20108 6105126 2024-02-28 22:08:50.167 2024-02-28 22:08:50.167 700 FEE 442396 876 6105127 2024-02-28 22:08:50.167 2024-02-28 22:08:50.167 6300 TIP 442396 20616 6105151 2024-02-28 22:14:01.968 2024-02-28 22:14:01.968 7700 FEE 442751 19005 6105152 2024-02-28 22:14:01.968 2024-02-28 22:14:01.968 69300 TIP 442751 21401 6105156 2024-02-28 22:14:09.926 2024-02-28 22:14:09.926 7700 FEE 442769 12516 6105157 2024-02-28 22:14:09.926 2024-02-28 22:14:09.926 69300 TIP 442769 18068 6105282 2024-02-28 22:32:30 2024-02-28 22:32:30 100000 FEE 442796 11298 6105302 2024-02-28 22:33:20.773 2024-02-28 22:33:20.773 2100 FEE 442628 10608 6105303 2024-02-28 22:33:20.773 2024-02-28 22:33:20.773 18900 TIP 442628 19836 6105314 2024-02-28 22:34:31.604 2024-02-28 22:34:31.604 1000 FEE 442789 1585 6105315 2024-02-28 22:34:31.604 2024-02-28 22:34:31.604 9000 TIP 442789 20340 6105316 2024-02-28 22:34:45.957 2024-02-28 22:34:45.957 1000 FEE 442796 658 6105317 2024-02-28 22:34:45.957 2024-02-28 22:34:45.957 9000 TIP 442796 12291 6105363 2024-02-28 22:37:37.048 2024-02-28 22:37:37.048 300 FEE 442786 12911 6105364 2024-02-28 22:37:37.048 2024-02-28 22:37:37.048 2700 TIP 442786 1316 6105379 2024-02-28 22:38:30.248 2024-02-28 22:38:30.248 100000 FEE 442799 19333 6105405 2024-02-28 22:42:24.135 2024-02-28 22:42:24.135 1000 POLL 442751 21334 6105412 2024-02-28 22:43:18.648 2024-02-28 22:43:18.648 1000 FEE 442774 8954 6105413 2024-02-28 22:43:18.648 2024-02-28 22:43:18.648 9000 TIP 442774 14449 6105435 2024-02-28 22:45:21.975 2024-02-28 22:45:21.975 500 FEE 441077 21539 6105436 2024-02-28 22:45:21.975 2024-02-28 22:45:21.975 4500 TIP 441077 768 6105450 2024-02-28 22:50:14.63 2024-02-28 22:50:14.63 3200 FEE 442751 9418 6105451 2024-02-28 22:50:14.63 2024-02-28 22:50:14.63 28800 TIP 442751 3656 6105468 2024-02-28 22:51:47.082 2024-02-28 22:51:47.082 2100 FEE 442628 3400 6105469 2024-02-28 22:51:47.082 2024-02-28 22:51:47.082 18900 TIP 442628 1970 6105472 2024-02-28 22:52:28.988 2024-02-28 22:52:28.988 1600 FEE 442751 761 6105473 2024-02-28 22:52:28.988 2024-02-28 22:52:28.988 14400 TIP 442751 21400 6105517 2024-02-28 22:56:24.465 2024-02-28 22:56:24.465 800 FEE 441959 7119 6105518 2024-02-28 22:56:24.465 2024-02-28 22:56:24.465 7200 TIP 441959 17568 6105521 2024-02-28 22:56:52.189 2024-02-28 22:56:52.189 800 FEE 441399 2039 6105522 2024-02-28 22:56:52.189 2024-02-28 22:56:52.189 7200 TIP 441399 3411 6105530 2024-02-28 22:57:20.108 2024-02-28 22:57:20.108 1600 FEE 442106 794 6105531 2024-02-28 22:57:20.108 2024-02-28 22:57:20.108 14400 TIP 442106 15367 6105544 2024-02-28 22:57:55.008 2024-02-28 22:57:55.008 1000 FEE 442813 3439 6105545 2024-02-28 22:57:55.008 2024-02-28 22:57:55.008 9000 TIP 442813 5487 6105567 2024-02-28 23:00:05.327 2024-02-28 23:00:05.327 3100 FEE 442639 12951 6105568 2024-02-28 23:00:05.327 2024-02-28 23:00:05.327 27900 TIP 442639 4570 6105583 2024-02-28 23:01:08.113 2024-02-28 23:01:08.113 1000 FEE 442769 3461 6105584 2024-02-28 23:01:08.113 2024-02-28 23:01:08.113 9000 TIP 442769 19533 6105630 2024-02-28 23:06:17.72 2024-02-28 23:06:17.72 0 FEE 442822 2176 6105637 2024-02-28 23:07:23.91 2024-02-28 23:07:23.91 0 FEE 442822 19660 6105646 2024-02-28 23:08:43.47 2024-02-28 23:08:43.47 1000 FEE 442832 1120 6105651 2024-02-28 23:08:45.551 2024-02-28 23:08:45.551 1000 FEE 442815 21281 6105652 2024-02-28 23:08:45.551 2024-02-28 23:08:45.551 9000 TIP 442815 14152 6105674 2024-02-28 23:11:40.544 2024-02-28 23:11:40.544 1000 POLL 442751 1741 6105715 2024-02-28 23:15:43.869 2024-02-28 23:15:43.869 1000 FEE 442803 9421 6105716 2024-02-28 23:15:43.869 2024-02-28 23:15:43.869 9000 TIP 442803 19289 6105737 2024-02-28 23:18:06.804 2024-02-28 23:18:06.804 0 FEE 442846 6382 6105740 2024-02-28 23:18:32.454 2024-02-28 23:18:32.454 100 FEE 442769 8176 6105741 2024-02-28 23:18:32.454 2024-02-28 23:18:32.454 900 TIP 442769 4118 6105753 2024-02-28 23:20:18.85 2024-02-28 23:20:18.85 100000 FEE 442853 14791 6105754 2024-02-28 23:20:38.552 2024-02-28 23:20:38.552 100 FEE 442710 17639 6105755 2024-02-28 23:20:38.552 2024-02-28 23:20:38.552 900 TIP 442710 10698 6105765 2024-02-28 23:21:39.019 2024-02-28 23:21:39.019 1000 FEE 442810 706 6105766 2024-02-28 23:21:39.019 2024-02-28 23:21:39.019 9000 TIP 442810 1030 6105788 2024-02-28 23:24:00.03 2024-02-28 23:24:00.03 5700 FEE 442840 1046 6105789 2024-02-28 23:24:00.03 2024-02-28 23:24:00.03 51300 TIP 442840 17541 6104871 2024-02-28 21:37:41.383 2024-02-28 21:37:41.383 200 FEE 442761 620 6104872 2024-02-28 21:37:41.383 2024-02-28 21:37:41.383 1800 TIP 442761 5057 6104886 2024-02-28 21:38:03.88 2024-02-28 21:38:03.88 2100 FEE 442721 16879 6104887 2024-02-28 21:38:03.88 2024-02-28 21:38:03.88 18900 TIP 442721 1224 6104922 2024-02-28 21:38:31.588 2024-02-28 21:38:31.588 2100 FEE 442717 8287 6104923 2024-02-28 21:38:31.588 2024-02-28 21:38:31.588 18900 TIP 442717 18357 6104971 2024-02-28 21:42:57.08 2024-02-28 21:42:57.08 2100 FEE 442627 16348 6104972 2024-02-28 21:42:57.08 2024-02-28 21:42:57.08 18900 TIP 442627 21361 6104981 2024-02-28 21:43:57.721 2024-02-28 21:43:57.721 5700 FEE 442678 18139 6104982 2024-02-28 21:43:57.721 2024-02-28 21:43:57.721 51300 TIP 442678 1135 6104992 2024-02-28 21:46:11.539 2024-02-28 21:46:11.539 1000 FEE 442751 696 6104993 2024-02-28 21:46:11.539 2024-02-28 21:46:11.539 9000 TIP 442751 1474 6104997 2024-02-28 21:47:48.484 2024-02-28 21:47:48.484 0 FEE 442769 15271 6105010 2024-02-28 21:47:54.785 2024-02-28 21:47:54.785 1000 FEE 442769 9356 6105011 2024-02-28 21:47:54.785 2024-02-28 21:47:54.785 9000 TIP 442769 9159 6105014 2024-02-28 21:47:55.116 2024-02-28 21:47:55.116 1000 FEE 442769 18449 6105015 2024-02-28 21:47:55.116 2024-02-28 21:47:55.116 9000 TIP 442769 9307 6105061 2024-02-28 21:52:18.485 2024-02-28 21:52:18.485 2100 FEE 442772 19531 6105062 2024-02-28 21:52:18.485 2024-02-28 21:52:18.485 18900 TIP 442772 12911 6105070 2024-02-28 21:53:37.561 2024-02-28 21:53:37.561 200 FEE 439234 16542 6105071 2024-02-28 21:53:37.561 2024-02-28 21:53:37.561 1800 TIP 439234 20450 6105093 2024-02-28 22:04:00.625 2024-02-28 22:04:00.625 2500 FEE 442059 16229 6105094 2024-02-28 22:04:00.625 2024-02-28 22:04:00.625 22500 TIP 442059 18231 6105102 2024-02-28 22:05:41.084 2024-02-28 22:05:41.084 10000 FEE 442779 1465 6105115 2024-02-28 22:07:50.919 2024-02-28 22:07:50.919 4200 FEE 442313 8985 6105116 2024-02-28 22:07:50.919 2024-02-28 22:07:50.919 37800 TIP 442313 20754 6105154 2024-02-28 22:14:08.691 2024-02-28 22:14:08.691 7700 FEE 442769 2156 6105155 2024-02-28 22:14:08.691 2024-02-28 22:14:08.691 69300 TIP 442769 19118 6105170 2024-02-28 22:17:21.381 2024-02-28 22:17:21.381 0 FEE 442787 1002 6105184 2024-02-28 22:18:45.135 2024-02-28 22:18:45.135 1000 FEE 442788 18923 6105221 2024-02-28 22:20:15.703 2024-02-28 22:20:15.703 500 FEE 442719 16562 6105222 2024-02-28 22:20:15.703 2024-02-28 22:20:15.703 4500 TIP 442719 20594 6105247 2024-02-28 22:27:27.346 2024-02-28 22:27:27.346 1000 FEE 442792 20218 6105261 2024-02-28 22:32:22.169 2024-02-28 22:32:22.169 2100 FEE 442313 19511 6105262 2024-02-28 22:32:22.169 2024-02-28 22:32:22.169 18900 TIP 442313 15239 6105276 2024-02-28 22:32:27.022 2024-02-28 22:32:27.022 2100 FEE 442751 7583 6105277 2024-02-28 22:32:27.022 2024-02-28 22:32:27.022 18900 TIP 442751 17091 6105280 2024-02-28 22:32:27.472 2024-02-28 22:32:27.472 2100 FEE 442751 674 6105281 2024-02-28 22:32:27.472 2024-02-28 22:32:27.472 18900 TIP 442751 14950 6105284 2024-02-28 22:32:57.498 2024-02-28 22:32:57.498 2100 FEE 442769 7989 6105285 2024-02-28 22:32:57.498 2024-02-28 22:32:57.498 18900 TIP 442769 13076 6105286 2024-02-28 22:33:01.987 2024-02-28 22:33:01.987 2100 FEE 442757 2330 6105287 2024-02-28 22:33:01.987 2024-02-28 22:33:01.987 18900 TIP 442757 19502 6105291 2024-02-28 22:33:03.542 2024-02-28 22:33:03.542 0 FEE 442796 15549 6105312 2024-02-28 22:34:13.71 2024-02-28 22:34:13.71 1000 FEE 442769 628 6105313 2024-02-28 22:34:13.71 2024-02-28 22:34:13.71 9000 TIP 442769 17050 6105336 2024-02-28 22:35:11.421 2024-02-28 22:35:11.421 1000 FEE 442751 19689 6105337 2024-02-28 22:35:11.421 2024-02-28 22:35:11.421 9000 TIP 442751 18909 6105346 2024-02-28 22:35:15.138 2024-02-28 22:35:15.138 1000 FEE 442551 16670 6105347 2024-02-28 22:35:15.138 2024-02-28 22:35:15.138 9000 TIP 442551 6160 6105350 2024-02-28 22:35:15.576 2024-02-28 22:35:15.576 1000 FEE 442551 20006 6105351 2024-02-28 22:35:15.576 2024-02-28 22:35:15.576 9000 TIP 442551 2196 6105352 2024-02-28 22:35:15.826 2024-02-28 22:35:15.826 1000 FEE 442551 11164 6105353 2024-02-28 22:35:15.826 2024-02-28 22:35:15.826 9000 TIP 442551 18357 6105382 2024-02-28 22:39:45.737 2024-02-28 22:39:45.737 1000 POLL 442751 2361 6105390 2024-02-28 22:40:57.725 2024-02-28 22:40:57.725 1000 FEE 442796 19886 6105391 2024-02-28 22:40:57.725 2024-02-28 22:40:57.725 9000 TIP 442796 12779 6105394 2024-02-28 22:40:58.971 2024-02-28 22:40:58.971 1000 FEE 442678 14247 6105395 2024-02-28 22:40:58.971 2024-02-28 22:40:58.971 9000 TIP 442678 19501 6104955 2024-02-28 21:41:26.616 2024-02-28 21:41:26.616 1000 FEE 442736 16562 6104956 2024-02-28 21:41:26.616 2024-02-28 21:41:26.616 9000 TIP 442736 20084 6105027 2024-02-28 21:48:04.758 2024-02-28 21:48:04.758 1000 POLL 442751 21275 6105028 2024-02-28 21:48:18.181 2024-02-28 21:48:18.181 1000 FEE 442724 12769 6105029 2024-02-28 21:48:18.181 2024-02-28 21:48:18.181 9000 TIP 442724 2537 6105049 2024-02-28 21:50:36.169 2024-02-28 21:50:36.169 5000 FEE 442751 1439 6105050 2024-02-28 21:50:36.169 2024-02-28 21:50:36.169 45000 TIP 442751 10094 6105054 2024-02-28 21:51:02.579 2024-02-28 21:51:02.579 300 FEE 442170 913 6105055 2024-02-28 21:51:02.579 2024-02-28 21:51:02.579 2700 TIP 442170 1632 6105058 2024-02-28 21:52:09.192 2024-02-28 21:52:09.192 100 FEE 442508 12566 6105059 2024-02-28 21:52:09.192 2024-02-28 21:52:09.192 900 TIP 442508 20715 6105060 2024-02-28 21:52:16.712 2024-02-28 21:52:16.712 1000 FEE 442773 1180 6105075 2024-02-28 21:55:52.575 2024-02-28 21:55:52.575 1000 POLL 442751 998 6105141 2024-02-28 22:13:52.899 2024-02-28 22:13:52.899 7700 FEE 442781 19996 6105142 2024-02-28 22:13:52.899 2024-02-28 22:13:52.899 69300 TIP 442781 18735 6105186 2024-02-28 22:18:47.545 2024-02-28 22:18:47.545 100 FEE 442751 18262 6105187 2024-02-28 22:18:47.545 2024-02-28 22:18:47.545 900 TIP 442751 703 6105203 2024-02-28 22:19:15.56 2024-02-28 22:19:15.56 9000 FEE 442636 20370 6105204 2024-02-28 22:19:15.56 2024-02-28 22:19:15.56 81000 TIP 442636 20066 6105206 2024-02-28 22:19:48.797 2024-02-28 22:19:48.797 1300 FEE 442214 18220 6105207 2024-02-28 22:19:48.797 2024-02-28 22:19:48.797 11700 TIP 442214 2776 6105228 2024-02-28 22:21:35.94 2024-02-28 22:21:35.94 1000 POLL 442751 19346 6105233 2024-02-28 22:23:36.42 2024-02-28 22:23:36.42 0 FEE 442790 21091 6105242 2024-02-28 22:25:51.763 2024-02-28 22:25:51.763 1000 POLL 442751 7877 6105253 2024-02-28 22:31:33.981 2024-02-28 22:31:33.981 3300 FEE 442313 5904 6105254 2024-02-28 22:31:33.981 2024-02-28 22:31:33.981 29700 TIP 442313 18828 6105270 2024-02-28 22:32:26.188 2024-02-28 22:32:26.188 2100 FEE 442751 977 6105271 2024-02-28 22:32:26.188 2024-02-28 22:32:26.188 18900 TIP 442751 16653 6105272 2024-02-28 22:32:26.302 2024-02-28 22:32:26.302 2100 FEE 442751 1784 6105273 2024-02-28 22:32:26.302 2024-02-28 22:32:26.302 18900 TIP 442751 19118 6105294 2024-02-28 22:33:19.841 2024-02-28 22:33:19.841 2100 FEE 442628 19576 6105295 2024-02-28 22:33:19.841 2024-02-28 22:33:19.841 18900 TIP 442628 698 6105304 2024-02-28 22:33:21.943 2024-02-28 22:33:21.943 2100 FEE 441854 20470 6105305 2024-02-28 22:33:21.943 2024-02-28 22:33:21.943 18900 TIP 441854 21562 6105318 2024-02-28 22:34:46.144 2024-02-28 22:34:46.144 1000 FEE 442796 2513 6105319 2024-02-28 22:34:46.144 2024-02-28 22:34:46.144 9000 TIP 442796 20502 6105322 2024-02-28 22:34:48.644 2024-02-28 22:34:48.644 1000 FEE 442797 1769 6105348 2024-02-28 22:35:15.409 2024-02-28 22:35:15.409 1000 FEE 442551 17741 6105349 2024-02-28 22:35:15.409 2024-02-28 22:35:15.409 9000 TIP 442551 11609 6105367 2024-02-28 22:37:37.444 2024-02-28 22:37:37.444 300 FEE 442786 797 6105368 2024-02-28 22:37:37.444 2024-02-28 22:37:37.444 2700 TIP 442786 20889 6105378 2024-02-28 22:38:19.359 2024-02-28 22:38:19.359 1000 FEE 442798 20970 6105383 2024-02-28 22:39:55.85 2024-02-28 22:39:55.85 500 FEE 442170 8535 6105384 2024-02-28 22:39:55.85 2024-02-28 22:39:55.85 4500 TIP 442170 20511 6105396 2024-02-28 22:40:59.874 2024-02-28 22:40:59.874 1000 FEE 442669 1890 6105397 2024-02-28 22:40:59.874 2024-02-28 22:40:59.874 9000 TIP 442669 803 6105398 2024-02-28 22:41:02.148 2024-02-28 22:41:02.148 1000 FEE 442632 13177 6105399 2024-02-28 22:41:02.148 2024-02-28 22:41:02.148 9000 TIP 442632 954 6105416 2024-02-28 22:43:18.741 2024-02-28 22:43:18.741 1000 FEE 442774 622 6105417 2024-02-28 22:43:18.741 2024-02-28 22:43:18.741 9000 TIP 442774 19502 6105423 2024-02-28 22:44:35.943 2024-02-28 22:44:35.943 5700 FEE 442800 21400 6105424 2024-02-28 22:44:35.943 2024-02-28 22:44:35.943 51300 TIP 442800 2718 6105428 2024-02-28 22:45:01.347 2024-02-28 22:45:01.347 1000 FEE 442721 3347 6105429 2024-02-28 22:45:01.347 2024-02-28 22:45:01.347 9000 TIP 442721 19501 6105433 2024-02-28 22:45:21.354 2024-02-28 22:45:21.354 500 FEE 441077 16867 6105434 2024-02-28 22:45:21.354 2024-02-28 22:45:21.354 4500 TIP 441077 19638 6105444 2024-02-28 22:46:39.536 2024-02-28 22:46:39.536 1000 FEE 442807 673 6105446 2024-02-28 22:47:22.251 2024-02-28 22:47:22.251 1000 FEE 442808 18704 6105460 2024-02-28 22:51:30.821 2024-02-28 22:51:30.821 2100 FEE 442678 20018 6105461 2024-02-28 22:51:30.821 2024-02-28 22:51:30.821 18900 TIP 442678 19282 6105500 2024-02-28 22:55:15.589 2024-02-28 22:55:15.589 1000 POLL 442751 979 6105519 2024-02-28 22:56:34.447 2024-02-28 22:56:34.447 1600 FEE 442769 15161 6105520 2024-02-28 22:56:34.447 2024-02-28 22:56:34.447 14400 TIP 442769 1047 6105537 2024-02-28 22:57:52.95 2024-02-28 22:57:52.95 10000 FEE 442814 18526 6105542 2024-02-28 22:57:54.824 2024-02-28 22:57:54.824 1000 FEE 442813 8037 6105543 2024-02-28 22:57:54.824 2024-02-28 22:57:54.824 9000 TIP 442813 21506 6105564 2024-02-28 23:00:00.437 2024-02-28 23:00:00.437 1000 FEE 442816 11698 6105570 2024-02-28 23:00:57.554 2024-02-28 23:00:57.554 3100 FEE 442628 14905 6105571 2024-02-28 23:00:57.554 2024-02-28 23:00:57.554 27900 TIP 442628 2088 6105581 2024-02-28 23:01:07.243 2024-02-28 23:01:07.243 1000 FEE 442769 11240 6105582 2024-02-28 23:01:07.243 2024-02-28 23:01:07.243 9000 TIP 442769 8648 6105588 2024-02-28 23:01:30.135 2024-02-28 23:01:30.135 3100 FEE 442670 20816 6105589 2024-02-28 23:01:30.135 2024-02-28 23:01:30.135 27900 TIP 442670 19346 6105591 2024-02-28 23:02:21.903 2024-02-28 23:02:21.903 1000 FEE 442822 2046 6105598 2024-02-28 23:03:58.586 2024-02-28 23:03:58.586 10000 FEE 442483 19907 6105599 2024-02-28 23:03:58.586 2024-02-28 23:03:58.586 90000 TIP 442483 8004 6105600 2024-02-28 23:04:01.328 2024-02-28 23:04:01.328 1000 FEE 442821 20106 6105601 2024-02-28 23:04:01.328 2024-02-28 23:04:01.328 9000 TIP 442821 19132 6105609 2024-02-28 23:04:08.48 2024-02-28 23:04:08.48 10000 FEE 442786 15833 6105610 2024-02-28 23:04:08.48 2024-02-28 23:04:08.48 90000 TIP 442786 9845 6105629 2024-02-28 23:06:15.623 2024-02-28 23:06:15.623 1000 FEE 442827 1122 6105634 2024-02-28 23:07:09.86 2024-02-28 23:07:09.86 2500 FEE 442678 9167 6105635 2024-02-28 23:07:09.86 2024-02-28 23:07:09.86 22500 TIP 442678 20981 6105644 2024-02-28 23:08:15.991 2024-02-28 23:08:15.991 12800 FEE 441334 1745 6105645 2024-02-28 23:08:15.991 2024-02-28 23:08:15.991 115200 TIP 441334 6310 6105659 2024-02-28 23:09:43.001 2024-02-28 23:09:43.001 1000 FEE 442836 7847 6105677 2024-02-28 23:11:42.013 2024-02-28 23:11:42.013 6900 FEE 442822 5129 6105678 2024-02-28 23:11:42.013 2024-02-28 23:11:42.013 62100 TIP 442822 20353 6105684 2024-02-28 23:11:45.379 2024-02-28 23:11:45.379 6900 FEE 442831 9078 6105685 2024-02-28 23:11:45.379 2024-02-28 23:11:45.379 62100 TIP 442831 9342 6105707 2024-02-28 23:15:17.862 2024-02-28 23:15:17.862 1000 FEE 442843 19980 6105717 2024-02-28 23:15:45.849 2024-02-28 23:15:45.849 1000 FEE 442803 19535 6105718 2024-02-28 23:15:45.849 2024-02-28 23:15:45.849 9000 TIP 442803 17690 6105751 2024-02-28 23:20:14.215 2024-02-28 23:20:14.215 100 FEE 442848 1245 6105752 2024-02-28 23:20:14.215 2024-02-28 23:20:14.215 900 TIP 442848 21214 6105757 2024-02-28 23:21:04.192 2024-02-28 23:21:04.192 1000 FEE 442853 20523 6105758 2024-02-28 23:21:04.192 2024-02-28 23:21:04.192 9000 TIP 442853 19296 6105763 2024-02-28 23:21:38.703 2024-02-28 23:21:38.703 1000 FEE 442810 2757 6105764 2024-02-28 23:21:38.703 2024-02-28 23:21:38.703 9000 TIP 442810 21178 6105773 2024-02-28 23:23:01.163 2024-02-28 23:23:01.163 100 FEE 442848 7583 6105774 2024-02-28 23:23:01.163 2024-02-28 23:23:01.163 900 TIP 442848 6419 6105034 2024-02-28 21:48:49.286 2024-02-28 21:48:49.286 0 FEE 442769 622 6105037 2024-02-28 21:49:00.049 2024-02-28 21:49:00.049 2100 FEE 442539 4650 6105038 2024-02-28 21:49:00.049 2024-02-28 21:49:00.049 18900 TIP 442539 3417 6105042 2024-02-28 21:49:04.916 2024-02-28 21:49:04.916 1000 FEE 442675 19502 6105043 2024-02-28 21:49:04.916 2024-02-28 21:49:04.916 9000 TIP 442675 699 6105064 2024-02-28 21:53:19.64 2024-02-28 21:53:19.64 2100 FEE 442766 20509 6105065 2024-02-28 21:53:19.64 2024-02-28 21:53:19.64 18900 TIP 442766 8570 6105100 2024-02-28 22:05:39.822 2024-02-28 22:05:39.822 2100 FEE 442749 20778 6105101 2024-02-28 22:05:39.822 2024-02-28 22:05:39.822 18900 TIP 442749 17030 6105105 2024-02-28 22:06:02.635 2024-02-28 22:06:02.635 2100 FEE 442710 629 6105106 2024-02-28 22:06:02.635 2024-02-28 22:06:02.635 18900 TIP 442710 9346 6105145 2024-02-28 22:14:00.927 2024-02-28 22:14:00.927 7700 FEE 442751 4487 6105146 2024-02-28 22:14:00.927 2024-02-28 22:14:00.927 69300 TIP 442751 21349 6105174 2024-02-28 22:17:42.655 2024-02-28 22:17:42.655 1100 FEE 442781 18154 6105175 2024-02-28 22:17:42.655 2024-02-28 22:17:42.655 9900 TIP 442781 20080 6105181 2024-02-28 22:18:23.688 2024-02-28 22:18:23.688 9000 FEE 442785 13781 6105182 2024-02-28 22:18:23.688 2024-02-28 22:18:23.688 81000 TIP 442785 11430 6105183 2024-02-28 22:18:43.727 2024-02-28 22:18:43.727 1000 POLL 442751 11996 6105190 2024-02-28 22:18:48.214 2024-02-28 22:18:48.214 3000 FEE 442683 1122 6105191 2024-02-28 22:18:48.214 2024-02-28 22:18:48.214 27000 TIP 442683 5173 6105201 2024-02-28 22:19:08.152 2024-02-28 22:19:08.152 900 FEE 442636 9969 6105202 2024-02-28 22:19:08.152 2024-02-28 22:19:08.152 8100 TIP 442636 19839 6105208 2024-02-28 22:19:52.305 2024-02-28 22:19:52.305 1300 FEE 442214 5112 6105209 2024-02-28 22:19:52.305 2024-02-28 22:19:52.305 11700 TIP 442214 13575 6105238 2024-02-28 22:24:30.147 2024-02-28 22:24:30.147 500 FEE 442710 16309 6105239 2024-02-28 22:24:30.147 2024-02-28 22:24:30.147 4500 TIP 442710 6003 6105249 2024-02-28 22:28:26.489 2024-02-28 22:28:26.489 1000 FEE 442793 620 6105283 2024-02-28 22:32:38.896 2024-02-28 22:32:38.896 1000 POLL 442751 1120 6105288 2024-02-28 22:33:02.521 2024-02-28 22:33:02.521 2100 FEE 442761 697 6105289 2024-02-28 22:33:02.521 2024-02-28 22:33:02.521 18900 TIP 442761 836 6105292 2024-02-28 22:33:05.436 2024-02-28 22:33:05.436 2100 FEE 442795 6515 6105293 2024-02-28 22:33:05.436 2024-02-28 22:33:05.436 18900 TIP 442795 18359 6105296 2024-02-28 22:33:20.294 2024-02-28 22:33:20.294 2100 FEE 442628 20187 6105297 2024-02-28 22:33:20.294 2024-02-28 22:33:20.294 18900 TIP 442628 19381 6105298 2024-02-28 22:33:20.464 2024-02-28 22:33:20.464 2100 FEE 442628 21343 6105299 2024-02-28 22:33:20.464 2024-02-28 22:33:20.464 18900 TIP 442628 4048 6105300 2024-02-28 22:33:20.597 2024-02-28 22:33:20.597 2100 FEE 442628 16341 6105301 2024-02-28 22:33:20.597 2024-02-28 22:33:20.597 18900 TIP 442628 12272 6105324 2024-02-28 22:35:10.33 2024-02-28 22:35:10.33 1000 FEE 442751 19663 6105325 2024-02-28 22:35:10.33 2024-02-28 22:35:10.33 9000 TIP 442751 16929 6105344 2024-02-28 22:35:14.927 2024-02-28 22:35:14.927 1000 FEE 442551 2075 6105345 2024-02-28 22:35:14.927 2024-02-28 22:35:14.927 9000 TIP 442551 21571 6105356 2024-02-28 22:35:16.212 2024-02-28 22:35:16.212 1000 FEE 442551 14225 6105357 2024-02-28 22:35:16.212 2024-02-28 22:35:16.212 9000 TIP 442551 1291 6105361 2024-02-28 22:37:07.873 2024-02-28 22:37:07.873 1000 FEE 442710 11220 6105362 2024-02-28 22:37:07.873 2024-02-28 22:37:07.873 9000 TIP 442710 994 6105420 2024-02-28 22:44:33.207 2024-02-28 22:44:33.207 1000 FEE 442803 21453 6105425 2024-02-28 22:44:42.91 2024-02-28 22:44:42.91 1000 FEE 442804 7992 6105443 2024-02-28 22:46:23.391 2024-02-28 22:46:23.391 1000 FEE 442806 3440 6105457 2024-02-28 22:51:21.315 2024-02-28 22:51:21.315 2100 FEE 442627 16571 6105458 2024-02-28 22:51:21.315 2024-02-28 22:51:21.315 18900 TIP 442627 20257 6105464 2024-02-28 22:51:36.942 2024-02-28 22:51:36.942 2100 FEE 442710 8059 6105465 2024-02-28 22:51:36.942 2024-02-28 22:51:36.942 18900 TIP 442710 12334 6105474 2024-02-28 22:52:48.925 2024-02-28 22:52:48.925 3200 FEE 442781 20715 6105475 2024-02-28 22:52:48.925 2024-02-28 22:52:48.925 28800 TIP 442781 763 6105490 2024-02-28 22:54:40.685 2024-02-28 22:54:40.685 1000 FEE 442811 10112 6105491 2024-02-28 22:54:42.407 2024-02-28 22:54:42.407 7700 FEE 442710 19398 6105492 2024-02-28 22:54:42.407 2024-02-28 22:54:42.407 69300 TIP 442710 16250 6105506 2024-02-28 22:55:46.569 2024-02-28 22:55:46.569 1600 FEE 441979 8729 6105507 2024-02-28 22:55:46.569 2024-02-28 22:55:46.569 14400 TIP 441979 6533 6105532 2024-02-28 22:57:25.624 2024-02-28 22:57:25.624 2100 FEE 442795 21493 6105533 2024-02-28 22:57:25.624 2024-02-28 22:57:25.624 18900 TIP 442795 705 6105538 2024-02-28 22:57:54.508 2024-02-28 22:57:54.508 1000 FEE 442813 940 6105539 2024-02-28 22:57:54.508 2024-02-28 22:57:54.508 9000 TIP 442813 1785 6105540 2024-02-28 22:57:54.67 2024-02-28 22:57:54.67 1000 FEE 442813 976 6105541 2024-02-28 22:57:54.67 2024-02-28 22:57:54.67 9000 TIP 442813 18446 6105566 2024-02-28 23:00:04.874 2024-02-28 23:00:04.874 100000 FEE 442817 15408 6105574 2024-02-28 23:01:00.864 2024-02-28 23:01:00.864 1000 FEE 442751 18220 6105575 2024-02-28 23:01:00.864 2024-02-28 23:01:00.864 9000 TIP 442751 15556 6105576 2024-02-28 23:01:01.618 2024-02-28 23:01:01.618 1000 FEE 442751 21521 6105577 2024-02-28 23:01:01.618 2024-02-28 23:01:01.618 9000 TIP 442751 736 6105668 2024-02-28 23:11:09.727 2024-02-28 23:11:09.727 1000 FEE 442837 20817 6105673 2024-02-28 23:11:33.928 2024-02-28 23:11:33.928 1000 FEE 442839 8505 6105694 2024-02-28 23:13:16.878 2024-02-28 23:13:16.878 12800 FEE 441351 20301 6105695 2024-02-28 23:13:16.878 2024-02-28 23:13:16.878 115200 TIP 441351 844 6105727 2024-02-28 23:16:55.758 2024-02-28 23:16:55.758 1000 POLL 442163 10342 6105732 2024-02-28 23:17:13.331 2024-02-28 23:17:13.331 3400 FEE 442645 5590 6105733 2024-02-28 23:17:13.331 2024-02-28 23:17:13.331 30600 TIP 442645 18235 6105735 2024-02-28 23:18:03.818 2024-02-28 23:18:03.818 100 FEE 442793 1468 6105736 2024-02-28 23:18:03.818 2024-02-28 23:18:03.818 900 TIP 442793 1519 6105738 2024-02-28 23:18:11.721 2024-02-28 23:18:11.721 900 FEE 442793 7986 6105739 2024-02-28 23:18:11.721 2024-02-28 23:18:11.721 8100 TIP 442793 1817 6105747 2024-02-28 23:19:19.861 2024-02-28 23:19:19.861 100000 FEE 442851 4076 6105762 2024-02-28 23:21:25.135 2024-02-28 23:21:25.135 1000 POLL 442751 9433 6105770 2024-02-28 23:22:11.724 2024-02-28 23:22:11.724 1000 POLL 442751 13042 6105772 2024-02-28 23:22:47.538 2024-02-28 23:22:47.538 0 FEE 442853 5806 6105791 2024-02-28 23:24:10.13 2024-02-28 23:24:10.13 2100 FEE 442551 1195 6105039 2024-02-28 21:49:02.457 2024-02-28 21:49:02.457 1000 STREAM 141924 7654 6105051 2024-02-28 21:51:02.457 2024-02-28 21:51:02.457 1000 STREAM 141924 8380 6105057 2024-02-28 21:52:02.465 2024-02-28 21:52:02.465 1000 STREAM 141924 21349 6105400 2024-02-28 22:41:02.92 2024-02-28 22:41:02.92 1000 STREAM 141924 2188 6105403 2024-02-28 22:42:02.754 2024-02-28 22:42:02.754 1000 STREAM 141924 4079 6105407 2024-02-28 22:43:02.755 2024-02-28 22:43:02.755 1000 STREAM 141924 12265 6105418 2024-02-28 22:44:02.749 2024-02-28 22:44:02.749 1000 STREAM 141924 20452 6105430 2024-02-28 22:45:02.753 2024-02-28 22:45:02.753 1000 STREAM 141924 19007 6105445 2024-02-28 22:47:02.756 2024-02-28 22:47:02.756 1000 STREAM 141924 13517 6105448 2024-02-28 22:49:02.749 2024-02-28 22:49:02.749 1000 STREAM 141924 8245 6105449 2024-02-28 22:50:02.755 2024-02-28 22:50:02.755 1000 STREAM 141924 21242 6105454 2024-02-28 22:51:02.757 2024-02-28 22:51:02.757 1000 STREAM 141924 13406 6105476 2024-02-28 22:53:02.771 2024-02-28 22:53:02.771 1000 STREAM 141924 2188 6105483 2024-02-28 22:54:02.782 2024-02-28 22:54:02.782 1000 STREAM 141924 1173 6105072 2024-02-28 21:54:02.513 2024-02-28 21:54:02.513 1000 STREAM 141924 18678 6105074 2024-02-28 21:55:02.548 2024-02-28 21:55:02.548 1000 STREAM 141924 19806 6105080 2024-02-28 21:57:02.507 2024-02-28 21:57:02.507 1000 STREAM 141924 9350 6105092 2024-02-28 22:03:02.511 2024-02-28 22:03:02.511 1000 STREAM 141924 19888 6105104 2024-02-28 22:06:02.559 2024-02-28 22:06:02.559 1000 STREAM 141924 16456 6105132 2024-02-28 22:10:02.605 2024-02-28 22:10:02.605 1000 STREAM 141924 2256 6105169 2024-02-28 22:17:02.616 2024-02-28 22:17:02.616 1000 STREAM 141924 14260 6105229 2024-02-28 22:22:02.645 2024-02-28 22:22:02.645 1000 STREAM 141924 18359 6105232 2024-02-28 22:23:02.653 2024-02-28 22:23:02.653 1000 STREAM 141924 19583 6105241 2024-02-28 22:25:02.637 2024-02-28 22:25:02.637 1000 STREAM 141924 19886 6105243 2024-02-28 22:26:02.675 2024-02-28 22:26:02.675 1000 STREAM 141924 8729 6105248 2024-02-28 22:28:02.691 2024-02-28 22:28:02.691 1000 STREAM 141924 17708 6105250 2024-02-28 22:29:02.697 2024-02-28 22:29:02.697 1000 STREAM 141924 14247 6105290 2024-02-28 22:33:02.722 2024-02-28 22:33:02.722 1000 STREAM 141924 21523 6105360 2024-02-28 22:37:02.744 2024-02-28 22:37:02.744 1000 STREAM 141924 12911 6105124 2024-02-28 22:08:49.88 2024-02-28 22:08:49.88 700 FEE 442396 8648 6105125 2024-02-28 22:08:49.88 2024-02-28 22:08:49.88 6300 TIP 442396 16542 6105166 2024-02-28 22:16:28.395 2024-02-28 22:16:28.395 5700 FEE 442781 20120 6105167 2024-02-28 22:16:28.395 2024-02-28 22:16:28.395 51300 TIP 442781 11938 6105172 2024-02-28 22:17:37.273 2024-02-28 22:17:37.273 0 FEE 442787 19842 6105188 2024-02-28 22:18:47.729 2024-02-28 22:18:47.729 900 FEE 442751 3456 6105189 2024-02-28 22:18:47.729 2024-02-28 22:18:47.729 8100 TIP 442751 9551 6105192 2024-02-28 22:18:48.9 2024-02-28 22:18:48.9 9000 FEE 442751 1806 6105193 2024-02-28 22:18:48.9 2024-02-28 22:18:48.9 81000 TIP 442751 18583 6105212 2024-02-28 22:20:00.615 2024-02-28 22:20:00.615 500 FEE 442784 620 6105213 2024-02-28 22:20:00.615 2024-02-28 22:20:00.615 4500 TIP 442784 708 6105219 2024-02-28 22:20:07.705 2024-02-28 22:20:07.705 9000 FEE 442708 20586 6105220 2024-02-28 22:20:07.705 2024-02-28 22:20:07.705 81000 TIP 442708 20563 6105225 2024-02-28 22:20:26.753 2024-02-28 22:20:26.753 500 FEE 442784 9356 6105226 2024-02-28 22:20:26.753 2024-02-28 22:20:26.753 4500 TIP 442784 21481 6105266 2024-02-28 22:32:25.76 2024-02-28 22:32:25.76 4200 FEE 442751 6578 6105267 2024-02-28 22:32:25.76 2024-02-28 22:32:25.76 37800 TIP 442751 4345 6105268 2024-02-28 22:32:25.904 2024-02-28 22:32:25.904 2100 FEE 442751 1658 6105269 2024-02-28 22:32:25.904 2024-02-28 22:32:25.904 18900 TIP 442751 17166 6105308 2024-02-28 22:33:44.061 2024-02-28 22:33:44.061 0 FEE 442796 17106 6105320 2024-02-28 22:34:46.358 2024-02-28 22:34:46.358 1000 FEE 442796 5069 6105321 2024-02-28 22:34:46.358 2024-02-28 22:34:46.358 9000 TIP 442796 8037 6105326 2024-02-28 22:35:10.513 2024-02-28 22:35:10.513 1000 FEE 442751 17094 6105327 2024-02-28 22:35:10.513 2024-02-28 22:35:10.513 9000 TIP 442751 21469 6105359 2024-02-28 22:36:40.298 2024-02-28 22:36:40.298 0 FEE 442797 21446 6105387 2024-02-28 22:40:01.894 2024-02-28 22:40:01.894 10000 FEE 442769 20963 6105388 2024-02-28 22:40:01.894 2024-02-28 22:40:01.894 90000 TIP 442769 5904 6105401 2024-02-28 22:41:03.366 2024-02-28 22:41:03.366 1000 FEE 442628 5497 6105402 2024-02-28 22:41:03.366 2024-02-28 22:41:03.366 9000 TIP 442628 17592 6105410 2024-02-28 22:43:18.251 2024-02-28 22:43:18.251 1000 FEE 442774 19888 6105411 2024-02-28 22:43:18.251 2024-02-28 22:43:18.251 9000 TIP 442774 13782 6105441 2024-02-28 22:45:32.5 2024-02-28 22:45:32.5 1000 FEE 442805 21485 6105455 2024-02-28 22:51:17.143 2024-02-28 22:51:17.143 2100 FEE 442751 19527 6105456 2024-02-28 22:51:17.143 2024-02-28 22:51:17.143 18900 TIP 442751 6688 6105459 2024-02-28 22:51:29.397 2024-02-28 22:51:29.397 1000 POLL 442751 15075 6105515 2024-02-28 22:56:22.996 2024-02-28 22:56:22.996 2500 FEE 440870 20901 6105516 2024-02-28 22:56:22.996 2024-02-28 22:56:22.996 22500 TIP 440870 19906 6105547 2024-02-28 22:58:11.469 2024-02-28 22:58:11.469 100 FEE 442796 20280 6105548 2024-02-28 22:58:11.469 2024-02-28 22:58:11.469 900 TIP 442796 736 6105557 2024-02-28 22:58:27.512 2024-02-28 22:58:27.512 1000 FEE 442795 9099 6105558 2024-02-28 22:58:27.512 2024-02-28 22:58:27.512 9000 TIP 442795 8045 6105572 2024-02-28 23:00:58.45 2024-02-28 23:00:58.45 27900 FEE 442628 8505 6105573 2024-02-28 23:00:58.45 2024-02-28 23:00:58.45 251100 TIP 442628 3409 6105585 2024-02-28 23:01:15.15 2024-02-28 23:01:15.15 1000 FEE 442751 21139 6105586 2024-02-28 23:01:15.15 2024-02-28 23:01:15.15 9000 TIP 442751 19535 6105594 2024-02-28 23:03:00.876 2024-02-28 23:03:00.876 1000 FEE 442823 20353 6105596 2024-02-28 23:03:03.048 2024-02-28 23:03:03.048 1000 POLL 442751 21498 6105597 2024-02-28 23:03:37.671 2024-02-28 23:03:37.671 1000 FEE 442824 8289 6105604 2024-02-28 23:04:01.672 2024-02-28 23:04:01.672 1000 FEE 442821 16665 6105605 2024-02-28 23:04:01.672 2024-02-28 23:04:01.672 9000 TIP 442821 18526 6105613 2024-02-28 23:04:58.901 2024-02-28 23:04:58.901 1000 FEE 442825 20745 6105624 2024-02-28 23:05:52.192 2024-02-28 23:05:52.192 1000 FEE 440692 6191 6105625 2024-02-28 23:05:52.192 2024-02-28 23:05:52.192 9000 TIP 440692 9242 6105627 2024-02-28 23:06:14.664 2024-02-28 23:06:14.664 12800 FEE 441312 3213 6105628 2024-02-28 23:06:14.664 2024-02-28 23:06:14.664 115200 TIP 441312 17817 6105657 2024-02-28 23:09:10.456 2024-02-28 23:09:10.456 1000 FEE 442834 9275 6105658 2024-02-28 23:09:42.642 2024-02-28 23:09:42.642 1000 FEE 442835 20906 6105661 2024-02-28 23:10:10.53 2024-02-28 23:10:10.53 12800 FEE 441397 11145 6105662 2024-02-28 23:10:10.53 2024-02-28 23:10:10.53 115200 TIP 441397 1472 6105679 2024-02-28 23:11:42.692 2024-02-28 23:11:42.692 12800 FEE 441481 15806 6105680 2024-02-28 23:11:42.692 2024-02-28 23:11:42.692 115200 TIP 441481 21373 6105681 2024-02-28 23:11:43.456 2024-02-28 23:11:43.456 1000 FEE 442840 11145 6105708 2024-02-28 23:15:23.612 2024-02-28 23:15:23.612 3300 FEE 442824 15594 6105709 2024-02-28 23:15:23.612 2024-02-28 23:15:23.612 29700 TIP 442824 782 6105720 2024-02-28 23:16:09.189 2024-02-28 23:16:09.189 1000 FEE 442751 16633 6105144 2024-02-28 22:14:00.723 2024-02-28 22:14:00.723 138600 TIP 442751 20603 6105147 2024-02-28 22:14:01.513 2024-02-28 22:14:01.513 7700 FEE 442751 9705 6105148 2024-02-28 22:14:01.513 2024-02-28 22:14:01.513 69300 TIP 442751 8242 6105158 2024-02-28 22:14:15.398 2024-02-28 22:14:15.398 1000 POLL 442751 7809 6105168 2024-02-28 22:16:58.786 2024-02-28 22:16:58.786 1000 FEE 442787 20588 6105173 2024-02-28 22:17:40.702 2024-02-28 22:17:40.702 1000 POLL 442751 2367 6105177 2024-02-28 22:18:22.425 2024-02-28 22:18:22.425 100 FEE 442785 8004 6105178 2024-02-28 22:18:22.425 2024-02-28 22:18:22.425 900 TIP 442785 900 6105185 2024-02-28 22:18:45.212 2024-02-28 22:18:45.212 1000 FEE 442789 20554 6105195 2024-02-28 22:19:04.982 2024-02-28 22:19:04.982 100 FEE 442683 628 6105196 2024-02-28 22:19:04.982 2024-02-28 22:19:04.982 900 TIP 442683 676 6105223 2024-02-28 22:20:21.725 2024-02-28 22:20:21.725 500 FEE 442719 16834 6105224 2024-02-28 22:20:21.725 2024-02-28 22:20:21.725 4500 TIP 442719 2709 6105256 2024-02-28 22:32:06.301 2024-02-28 22:32:06.301 1000 FEE 442794 7979 6105259 2024-02-28 22:32:22.027 2024-02-28 22:32:22.027 2100 FEE 442313 2347 6105260 2024-02-28 22:32:22.027 2024-02-28 22:32:22.027 18900 TIP 442313 21067 6105263 2024-02-28 22:32:22.841 2024-02-28 22:32:22.841 2100 FEE 442313 8416 6105264 2024-02-28 22:32:22.841 2024-02-28 22:32:22.841 18900 TIP 442313 11298 6105332 2024-02-28 22:35:11.088 2024-02-28 22:35:11.088 1000 FEE 442751 11938 6105333 2024-02-28 22:35:11.088 2024-02-28 22:35:11.088 9000 TIP 442751 19494 6105365 2024-02-28 22:37:37.226 2024-02-28 22:37:37.226 300 FEE 442786 2431 6105366 2024-02-28 22:37:37.226 2024-02-28 22:37:37.226 2700 TIP 442786 12808 6105371 2024-02-28 22:37:37.942 2024-02-28 22:37:37.942 300 FEE 442786 20980 6105372 2024-02-28 22:37:37.942 2024-02-28 22:37:37.942 2700 TIP 442786 10536 6105392 2024-02-28 22:40:57.743 2024-02-28 22:40:57.743 1000 FEE 442751 8506 6105393 2024-02-28 22:40:57.743 2024-02-28 22:40:57.743 9000 TIP 442751 4083 6105404 2024-02-28 22:42:12.351 2024-02-28 22:42:12.351 1000 FEE 442801 8544 6105426 2024-02-28 22:45:01.214 2024-02-28 22:45:01.214 1000 FEE 442721 18772 6105427 2024-02-28 22:45:01.214 2024-02-28 22:45:01.214 9000 TIP 442721 13249 6105437 2024-02-28 22:45:30.174 2024-02-28 22:45:30.174 1000 FEE 442784 9349 6105438 2024-02-28 22:45:30.174 2024-02-28 22:45:30.174 9000 TIP 442784 1490 6105439 2024-02-28 22:45:30.337 2024-02-28 22:45:30.337 1000 FEE 442784 960 6105440 2024-02-28 22:45:30.337 2024-02-28 22:45:30.337 9000 TIP 442784 21116 6105480 2024-02-28 22:53:52.286 2024-02-28 22:53:52.286 1000 FEE 442810 12768 6105484 2024-02-28 22:54:06.164 2024-02-28 22:54:06.164 3200 FEE 442084 1552 6105485 2024-02-28 22:54:06.164 2024-02-28 22:54:06.164 28800 TIP 442084 1006 6105495 2024-02-28 22:54:44.527 2024-02-28 22:54:44.527 800 FEE 441986 20036 6105496 2024-02-28 22:54:44.527 2024-02-28 22:54:44.527 7200 TIP 441986 15052 6105497 2024-02-28 22:54:52.895 2024-02-28 22:54:52.895 7700 FEE 442784 940 6105498 2024-02-28 22:54:52.895 2024-02-28 22:54:52.895 69300 TIP 442784 1221 6105501 2024-02-28 22:55:22.547 2024-02-28 22:55:22.547 800 FEE 442556 17171 6105502 2024-02-28 22:55:22.547 2024-02-28 22:55:22.547 7200 TIP 442556 7979 6105504 2024-02-28 22:55:41.217 2024-02-28 22:55:41.217 800 FEE 442041 1428 6105505 2024-02-28 22:55:41.217 2024-02-28 22:55:41.217 7200 TIP 442041 21138 6105525 2024-02-28 22:57:05.924 2024-02-28 22:57:05.924 1000 FEE 442722 10591 6105526 2024-02-28 22:57:05.924 2024-02-28 22:57:05.924 9000 TIP 442722 5499 6105529 2024-02-28 22:57:19.942 2024-02-28 22:57:19.942 1000 POLL 442751 14650 6105559 2024-02-28 22:58:27.528 2024-02-28 22:58:27.528 1000 FEE 442795 20817 6105560 2024-02-28 22:58:27.528 2024-02-28 22:58:27.528 9000 TIP 442795 14267 6105592 2024-02-28 23:02:49.821 2024-02-28 23:02:49.821 2500 FEE 441113 15160 6105593 2024-02-28 23:02:49.821 2024-02-28 23:02:49.821 22500 TIP 441113 19030 6105602 2024-02-28 23:04:01.498 2024-02-28 23:04:01.498 1000 FEE 442821 18449 6105380 2024-02-28 22:39:02.751 2024-02-28 22:39:02.751 1000 STREAM 141924 7877 6105389 2024-02-28 22:40:02.769 2024-02-28 22:40:02.769 1000 STREAM 141924 20084 6105499 2024-02-28 22:55:02.783 2024-02-28 22:55:02.783 1000 STREAM 141924 16665 6105508 2024-02-28 22:56:02.784 2024-02-28 22:56:02.784 1000 STREAM 141924 2703 6105414 2024-02-28 22:43:18.675 2024-02-28 22:43:18.675 1000 FEE 442774 16816 6105415 2024-02-28 22:43:18.675 2024-02-28 22:43:18.675 9000 TIP 442774 20087 6105419 2024-02-28 22:44:18.902 2024-02-28 22:44:18.902 1000 POLL 442751 1006 6105421 2024-02-28 22:44:35.813 2024-02-28 22:44:35.813 100 FEE 442084 21609 6105422 2024-02-28 22:44:35.813 2024-02-28 22:44:35.813 900 TIP 442084 21274 6105431 2024-02-28 22:45:03.453 2024-02-28 22:45:03.453 12800 FEE 442065 8380 6105432 2024-02-28 22:45:03.453 2024-02-28 22:45:03.453 115200 TIP 442065 20246 6105462 2024-02-28 22:51:31.357 2024-02-28 22:51:31.357 2100 FEE 442636 20022 6105463 2024-02-28 22:51:31.357 2024-02-28 22:51:31.357 18900 TIP 442636 1468 6105488 2024-02-28 22:54:10.835 2024-02-28 22:54:10.835 800 FEE 441749 8506 6105489 2024-02-28 22:54:10.835 2024-02-28 22:54:10.835 7200 TIP 441749 17741 6105493 2024-02-28 22:54:42.97 2024-02-28 22:54:42.97 7700 FEE 442710 21379 6105494 2024-02-28 22:54:42.97 2024-02-28 22:54:42.97 69300 TIP 442710 10112 6105513 2024-02-28 22:56:22.479 2024-02-28 22:56:22.479 2500 FEE 440870 16562 6105514 2024-02-28 22:56:22.479 2024-02-28 22:56:22.479 22500 TIP 440870 21573 6105523 2024-02-28 22:57:01.923 2024-02-28 22:57:01.923 1000 POLL 442751 16353 6105527 2024-02-28 22:57:09.185 2024-02-28 22:57:09.185 800 FEE 441853 11298 6105528 2024-02-28 22:57:09.185 2024-02-28 22:57:09.185 7200 TIP 441853 1519 6105549 2024-02-28 22:58:12.074 2024-02-28 22:58:12.074 900 FEE 442796 20581 6105550 2024-02-28 22:58:12.074 2024-02-28 22:58:12.074 8100 TIP 442796 10818 6105553 2024-02-28 22:58:26.991 2024-02-28 22:58:26.991 1000 FEE 442795 19044 6105554 2024-02-28 22:58:26.991 2024-02-28 22:58:26.991 9000 TIP 442795 704 6105563 2024-02-28 22:59:54.236 2024-02-28 22:59:54.236 1000 FEE 442815 18423 6105569 2024-02-28 23:00:05.366 2024-02-28 23:00:05.366 1000 FEE 442819 17570 6105614 2024-02-28 23:05:02.286 2024-02-28 23:05:02.286 1000 FEE 442814 21556 6105615 2024-02-28 23:05:02.286 2024-02-28 23:05:02.286 9000 TIP 442814 19553 6105619 2024-02-28 23:05:02.625 2024-02-28 23:05:02.625 1000 FEE 442814 19848 6105620 2024-02-28 23:05:02.625 2024-02-28 23:05:02.625 9000 TIP 442814 15510 6105442 2024-02-28 22:46:03.926 2024-02-28 22:46:03.926 1000 STREAM 141924 626 6105447 2024-02-28 22:48:03.927 2024-02-28 22:48:03.927 1000 STREAM 141924 2016 6105546 2024-02-28 22:58:02.268 2024-02-28 22:58:02.268 1000 STREAM 141924 21506 6105565 2024-02-28 23:00:02.28 2024-02-28 23:00:02.28 1000 STREAM 141924 19524 6105578 2024-02-28 23:01:02.284 2024-02-28 23:01:02.284 1000 STREAM 141924 7760 6105595 2024-02-28 23:03:02.287 2024-02-28 23:03:02.287 1000 STREAM 141924 19943 6105626 2024-02-28 23:06:02.297 2024-02-28 23:06:02.297 1000 STREAM 141924 21201 6105633 2024-02-28 23:07:02.3 2024-02-28 23:07:02.3 1000 STREAM 141924 750 6105643 2024-02-28 23:08:02.309 2024-02-28 23:08:02.309 1000 STREAM 141924 19087 6105667 2024-02-28 23:11:02.311 2024-02-28 23:11:02.311 1000 STREAM 141924 636 6105692 2024-02-28 23:13:02.328 2024-02-28 23:13:02.328 1000 STREAM 141924 21627 6105706 2024-02-28 23:15:02.341 2024-02-28 23:15:02.341 1000 STREAM 141924 16598 6105748 2024-02-28 23:20:02.363 2024-02-28 23:20:02.363 1000 STREAM 141924 1046 6105756 2024-02-28 23:21:02.386 2024-02-28 23:21:02.386 1000 STREAM 141924 18269 6105790 2024-02-28 23:24:02.407 2024-02-28 23:24:02.407 1000 STREAM 141924 21620 6105801 2024-02-28 23:26:02.417 2024-02-28 23:26:02.417 1000 STREAM 141924 15273 6106041 2024-02-28 23:39:02.496 2024-02-28 23:39:02.496 1000 STREAM 141924 9427 6106069 2024-02-28 23:40:02.521 2024-02-28 23:40:02.521 1000 STREAM 141924 16177 6106080 2024-02-28 23:41:02.511 2024-02-28 23:41:02.511 1000 STREAM 141924 20594 6106096 2024-02-28 23:43:02.537 2024-02-28 23:43:02.537 1000 STREAM 141924 19138 6106108 2024-02-28 23:44:02.529 2024-02-28 23:44:02.529 1000 STREAM 141924 20036 6106127 2024-02-28 23:45:02.531 2024-02-28 23:45:02.531 1000 STREAM 141924 21079 6105470 2024-02-28 22:52:03.925 2024-02-28 22:52:03.925 1000 STREAM 141924 9200 6105688 2024-02-28 23:12:02.246 2024-02-28 23:12:02.246 1000 STREAM 141924 19557 6105698 2024-02-28 23:14:02.261 2024-02-28 23:14:02.261 1000 STREAM 141924 726 6105871 2024-02-28 23:28:02.433 2024-02-28 23:28:02.433 1000 STREAM 141924 20775 6105885 2024-02-28 23:29:02.448 2024-02-28 23:29:02.448 1000 STREAM 141924 19459 6105897 2024-02-28 23:30:02.493 2024-02-28 23:30:02.493 1000 STREAM 141924 16193 6105920 2024-02-28 23:32:02.466 2024-02-28 23:32:02.466 1000 STREAM 141924 1505 6105961 2024-02-28 23:35:02.488 2024-02-28 23:35:02.488 1000 STREAM 141924 876 6105989 2024-02-28 23:36:02.48 2024-02-28 23:36:02.48 1000 STREAM 141924 14376 6106006 2024-02-28 23:37:02.499 2024-02-28 23:37:02.499 1000 STREAM 141924 5449 6106150 2024-02-28 23:48:02.562 2024-02-28 23:48:02.562 1000 STREAM 141924 16301 6106180 2024-02-28 23:52:02.583 2024-02-28 23:52:02.583 1000 STREAM 141924 21466 6106197 2024-02-28 23:53:02.59 2024-02-28 23:53:02.59 1000 STREAM 141924 13076 6106206 2024-02-28 23:54:02.597 2024-02-28 23:54:02.597 1000 STREAM 141924 9167 6106226 2024-02-28 23:55:02.61 2024-02-28 23:55:02.61 1000 STREAM 141924 15978 6106266 2024-02-28 23:56:02.597 2024-02-28 23:56:02.597 1000 STREAM 141924 1090 6106341 2024-02-28 23:57:02.618 2024-02-28 23:57:02.618 1000 STREAM 141924 21492 6106467 2024-02-29 00:00:02.629 2024-02-29 00:00:02.629 1000 STREAM 141924 18518 6106503 2024-02-29 00:03:02.647 2024-02-29 00:03:02.647 1000 STREAM 141924 13574 6105524 2024-02-28 22:57:03.98 2024-02-28 22:57:03.98 1000 STREAM 141924 20062 6105590 2024-02-28 23:02:04.181 2024-02-28 23:02:04.181 1000 STREAM 141924 21003 6105660 2024-02-28 23:10:02.238 2024-02-28 23:10:02.238 1000 STREAM 141924 19151 6105719 2024-02-28 23:16:02.279 2024-02-28 23:16:02.279 1000 STREAM 141924 1136 6105905 2024-02-28 23:31:02.469 2024-02-28 23:31:02.469 1000 STREAM 141924 11165 6105927 2024-02-28 23:33:02.483 2024-02-28 23:33:02.483 1000 STREAM 141924 19967 6105939 2024-02-28 23:34:02.483 2024-02-28 23:34:02.483 1000 STREAM 141924 18124 6106031 2024-02-28 23:38:02.499 2024-02-28 23:38:02.499 1000 STREAM 141924 1650 6106141 2024-02-28 23:47:02.56 2024-02-28 23:47:02.56 1000 STREAM 141924 18368 6106162 2024-02-28 23:49:02.563 2024-02-28 23:49:02.563 1000 STREAM 141924 13753 6106169 2024-02-28 23:50:02.579 2024-02-28 23:50:02.579 1000 STREAM 141924 4633 6106175 2024-02-28 23:51:02.591 2024-02-28 23:51:02.591 1000 STREAM 141924 19572 6106396 2024-02-28 23:58:02.616 2024-02-28 23:58:02.616 1000 STREAM 141924 15052 6106446 2024-02-28 23:59:02.613 2024-02-28 23:59:02.613 1000 STREAM 141924 21356 6106486 2024-02-29 00:01:02.639 2024-02-29 00:01:02.639 1000 STREAM 141924 5499 6106500 2024-02-29 00:02:02.645 2024-02-29 00:02:02.645 1000 STREAM 141924 21379 6106508 2024-02-29 00:04:02.658 2024-02-29 00:04:02.658 1000 STREAM 141924 2056 6106794 2024-02-29 00:18:02.723 2024-02-29 00:18:02.723 1000 STREAM 141924 10359 6106846 2024-02-29 00:21:02.723 2024-02-29 00:21:02.723 1000 STREAM 141924 21455 6106886 2024-02-29 00:22:02.744 2024-02-29 00:22:02.744 1000 STREAM 141924 21139 6106953 2024-02-29 00:25:02.756 2024-02-29 00:25:02.756 1000 STREAM 141924 15588 6106987 2024-02-29 00:27:02.729 2024-02-29 00:27:02.729 1000 STREAM 141924 12911 6107005 2024-02-29 00:28:02.749 2024-02-29 00:28:02.749 1000 STREAM 141924 15560 6107008 2024-02-29 00:29:02.751 2024-02-29 00:29:02.751 1000 STREAM 141924 21247 6107153 2024-02-29 00:38:02.77 2024-02-29 00:38:02.77 1000 STREAM 141924 18736 6107170 2024-02-29 00:41:02.782 2024-02-29 00:41:02.782 1000 STREAM 141924 10016 6107221 2024-02-29 00:44:02.804 2024-02-29 00:44:02.804 1000 STREAM 141924 1825 6107236 2024-02-29 00:45:02.827 2024-02-29 00:45:02.827 1000 STREAM 141924 1745 6107248 2024-02-29 00:46:02.823 2024-02-29 00:46:02.823 1000 STREAM 141924 6700 6107255 2024-02-29 00:47:02.815 2024-02-29 00:47:02.815 1000 STREAM 141924 20655 6107267 2024-02-29 00:51:02.867 2024-02-29 00:51:02.867 1000 STREAM 141924 13133 6107270 2024-02-29 00:52:02.86 2024-02-29 00:52:02.86 1000 STREAM 141924 6798 6107271 2024-02-29 00:53:02.861 2024-02-29 00:53:02.861 1000 STREAM 141924 902 6107288 2024-02-29 00:54:02.853 2024-02-29 00:54:02.853 1000 STREAM 141924 19909 6107317 2024-02-29 00:55:02.855 2024-02-29 00:55:02.855 1000 STREAM 141924 17316 6107326 2024-02-29 00:56:02.867 2024-02-29 00:56:02.867 1000 STREAM 141924 18819 6107347 2024-02-29 00:57:02.879 2024-02-29 00:57:02.879 1000 STREAM 141924 1012 6105561 2024-02-28 22:59:02.268 2024-02-28 22:59:02.268 1000 STREAM 141924 16788 6105608 2024-02-28 23:04:02.295 2024-02-28 23:04:02.295 1000 STREAM 141924 2459 6105616 2024-02-28 23:05:02.299 2024-02-28 23:05:02.299 1000 STREAM 141924 11145 6105656 2024-02-28 23:09:02.305 2024-02-28 23:09:02.305 1000 STREAM 141924 7891 6105734 2024-02-28 23:18:02.353 2024-02-28 23:18:02.353 1000 STREAM 141924 6578 6105744 2024-02-28 23:19:02.37 2024-02-28 23:19:02.37 1000 STREAM 141924 794 6105769 2024-02-28 23:22:02.387 2024-02-28 23:22:02.387 1000 STREAM 141924 18543 6105775 2024-02-28 23:23:02.408 2024-02-28 23:23:02.408 1000 STREAM 141924 10484 6105795 2024-02-28 23:25:02.408 2024-02-28 23:25:02.408 1000 STREAM 141924 20669 6105855 2024-02-28 23:27:02.427 2024-02-28 23:27:02.427 1000 STREAM 141924 766 6106092 2024-02-28 23:42:02.518 2024-02-28 23:42:02.518 1000 STREAM 141924 12057 6106130 2024-02-28 23:46:02.537 2024-02-28 23:46:02.537 1000 STREAM 141924 19148 6106518 2024-02-29 00:05:02.647 2024-02-29 00:05:02.647 1000 STREAM 141924 20257 6106530 2024-02-29 00:07:02.661 2024-02-29 00:07:02.661 1000 STREAM 141924 20706 6106577 2024-02-29 00:09:02.658 2024-02-29 00:09:02.658 1000 STREAM 141924 16406 6106655 2024-02-29 00:12:02.693 2024-02-29 00:12:02.693 1000 STREAM 141924 20337 6106773 2024-02-29 00:16:02.695 2024-02-29 00:16:02.695 1000 STREAM 141924 7185 6105603 2024-02-28 23:04:01.498 2024-02-28 23:04:01.498 9000 TIP 442821 20554 6105606 2024-02-28 23:04:01.848 2024-02-28 23:04:01.848 1000 FEE 442821 16970 6105607 2024-02-28 23:04:01.848 2024-02-28 23:04:01.848 9000 TIP 442821 19943 6105636 2024-02-28 23:07:20.735 2024-02-28 23:07:20.735 1000 FEE 442829 9356 6105640 2024-02-28 23:07:27.931 2024-02-28 23:07:27.931 1000 FEE 442830 16212 6105647 2024-02-28 23:08:45.194 2024-02-28 23:08:45.194 1000 FEE 442815 20826 6105648 2024-02-28 23:08:45.194 2024-02-28 23:08:45.194 9000 TIP 442815 12921 6105653 2024-02-28 23:08:45.69 2024-02-28 23:08:45.69 1000 FEE 442815 12169 6105654 2024-02-28 23:08:45.69 2024-02-28 23:08:45.69 9000 TIP 442815 21365 6105655 2024-02-28 23:09:00.203 2024-02-28 23:09:00.203 1000 FEE 442833 1433 6105682 2024-02-28 23:11:45.24 2024-02-28 23:11:45.24 6900 FEE 442831 16788 6105683 2024-02-28 23:11:45.24 2024-02-28 23:11:45.24 62100 TIP 442831 17494 6105704 2024-02-28 23:14:43.634 2024-02-28 23:14:43.634 2100 FEE 442751 14376 6105705 2024-02-28 23:14:43.634 2024-02-28 23:14:43.634 18900 TIP 442751 4415 6105724 2024-02-28 23:16:27.289 2024-02-28 23:16:27.289 1000 FEE 442845 12609 6105726 2024-02-28 23:16:52.183 2024-02-28 23:16:52.183 1000 FEE 442847 1307 6105731 2024-02-28 23:17:03.213 2024-02-28 23:17:03.213 1000 FEE 442848 18178 6105742 2024-02-28 23:18:58.823 2024-02-28 23:18:58.823 9000 FEE 442793 19773 6105743 2024-02-28 23:18:58.823 2024-02-28 23:18:58.823 81000 TIP 442793 16424 6105767 2024-02-28 23:21:39.082 2024-02-28 23:21:39.082 1000 FEE 442810 18449 6105768 2024-02-28 23:21:39.082 2024-02-28 23:21:39.082 9000 TIP 442810 15544 6105793 2024-02-28 23:24:24.043 2024-02-28 23:24:24.043 2100 FEE 442736 1094 6105794 2024-02-28 23:24:24.043 2024-02-28 23:24:24.043 18900 TIP 442736 5069 6105798 2024-02-28 23:25:39.847 2024-02-28 23:25:39.847 10000 FEE 442857 20969 6105799 2024-02-28 23:25:39.847 2024-02-28 23:25:39.847 90000 TIP 442857 1175 6105810 2024-02-28 23:26:54.547 2024-02-28 23:26:54.547 7700 FEE 442820 998 6105811 2024-02-28 23:26:54.547 2024-02-28 23:26:54.547 69300 TIP 442820 17455 6105816 2024-02-28 23:26:54.988 2024-02-28 23:26:54.988 7700 FEE 442820 18526 6105817 2024-02-28 23:26:54.988 2024-02-28 23:26:54.988 69300 TIP 442820 18615 6105826 2024-02-28 23:26:55.694 2024-02-28 23:26:55.694 7700 FEE 442820 19398 6105827 2024-02-28 23:26:55.694 2024-02-28 23:26:55.694 69300 TIP 442820 27 6105828 2024-02-28 23:26:56.038 2024-02-28 23:26:56.038 7700 FEE 442820 4259 6105829 2024-02-28 23:26:56.038 2024-02-28 23:26:56.038 69300 TIP 442820 9367 6105867 2024-02-28 23:27:46.904 2024-02-28 23:27:46.904 2100 FEE 442793 18068 6105868 2024-02-28 23:27:46.904 2024-02-28 23:27:46.904 18900 TIP 442793 7978 6105881 2024-02-28 23:28:48.392 2024-02-28 23:28:48.392 1000 FEE 442856 18005 6105882 2024-02-28 23:28:48.392 2024-02-28 23:28:48.392 9000 TIP 442856 19785 6105894 2024-02-28 23:29:19.421 2024-02-28 23:29:19.421 2100 FEE 442781 21291 6105895 2024-02-28 23:29:19.421 2024-02-28 23:29:19.421 18900 TIP 442781 1433 6105911 2024-02-28 23:31:12.448 2024-02-28 23:31:12.448 5700 FEE 442820 17741 6105912 2024-02-28 23:31:12.448 2024-02-28 23:31:12.448 51300 TIP 442820 19117 6105916 2024-02-28 23:31:26.808 2024-02-28 23:31:26.808 100 FEE 442710 1064 6105917 2024-02-28 23:31:26.808 2024-02-28 23:31:26.808 900 TIP 442710 19335 6105925 2024-02-28 23:32:25.99 2024-02-28 23:32:25.99 100 FEE 442660 20854 6105926 2024-02-28 23:32:25.99 2024-02-28 23:32:25.99 900 TIP 442660 15326 6105951 2024-02-28 23:34:58.692 2024-02-28 23:34:58.692 500 FEE 442781 1433 6105952 2024-02-28 23:34:58.692 2024-02-28 23:34:58.692 4500 TIP 442781 14225 6105953 2024-02-28 23:34:59.171 2024-02-28 23:34:59.171 500 FEE 442781 4314 6105954 2024-02-28 23:34:59.171 2024-02-28 23:34:59.171 4500 TIP 442781 7125 6105962 2024-02-28 23:35:04.398 2024-02-28 23:35:04.398 100 FEE 442796 5003 6105963 2024-02-28 23:35:04.398 2024-02-28 23:35:04.398 900 TIP 442796 17927 6105972 2024-02-28 23:35:36.771 2024-02-28 23:35:36.771 3400 FEE 442636 9920 6105973 2024-02-28 23:35:36.771 2024-02-28 23:35:36.771 30600 TIP 442636 5069 6105985 2024-02-28 23:35:53.665 2024-02-28 23:35:53.665 6900 FEE 442848 16536 6105986 2024-02-28 23:35:53.665 2024-02-28 23:35:53.665 62100 TIP 442848 4313 6106012 2024-02-28 23:37:47.695 2024-02-28 23:37:47.695 2100 FEE 442313 19007 6106013 2024-02-28 23:37:47.695 2024-02-28 23:37:47.695 18900 TIP 442313 658 6106024 2024-02-28 23:37:48.671 2024-02-28 23:37:48.671 2100 FEE 442313 18393 6106025 2024-02-28 23:37:48.671 2024-02-28 23:37:48.671 18900 TIP 442313 20906 6106048 2024-02-28 23:39:25.238 2024-02-28 23:39:25.238 3500 FEE 442747 21064 6106049 2024-02-28 23:39:25.238 2024-02-28 23:39:25.238 31500 TIP 442747 1047 6106052 2024-02-28 23:39:45.664 2024-02-28 23:39:45.664 3300 FEE 442796 11144 6106053 2024-02-28 23:39:45.664 2024-02-28 23:39:45.664 29700 TIP 442796 19570 6106056 2024-02-28 23:39:50.254 2024-02-28 23:39:50.254 3300 FEE 442628 11288 6106057 2024-02-28 23:39:50.254 2024-02-28 23:39:50.254 29700 TIP 442628 15577 6106058 2024-02-28 23:39:51.147 2024-02-28 23:39:51.147 3300 FEE 442628 1745 6106059 2024-02-28 23:39:51.147 2024-02-28 23:39:51.147 29700 TIP 442628 18769 6106061 2024-02-28 23:39:52.261 2024-02-28 23:39:52.261 0 FEE 442880 18581 6106087 2024-02-28 23:41:43.587 2024-02-28 23:41:43.587 1000 FEE 442884 5828 6106093 2024-02-28 23:42:06.483 2024-02-28 23:42:06.483 1000 FEE 442885 14818 6106098 2024-02-28 23:43:55.568 2024-02-28 23:43:55.568 1000 FEE 442800 4292 6106099 2024-02-28 23:43:55.568 2024-02-28 23:43:55.568 9000 TIP 442800 10493 6106110 2024-02-28 23:44:09.605 2024-02-28 23:44:09.605 1000 FEE 442888 19156 6106129 2024-02-28 23:45:57.373 2024-02-28 23:45:57.373 1000 FEE 442890 17411 6106132 2024-02-28 23:46:42.27 2024-02-28 23:46:42.27 0 FEE 442890 910 6106135 2024-02-28 23:46:51.008 2024-02-28 23:46:51.008 100 FEE 442751 21216 6106136 2024-02-28 23:46:51.008 2024-02-28 23:46:51.008 900 TIP 442751 3979 6106149 2024-02-28 23:47:43.782 2024-02-28 23:47:43.782 1000 FEE 442891 1429 6106151 2024-02-28 23:48:27.735 2024-02-28 23:48:27.735 2100 FEE 442710 18357 6106152 2024-02-28 23:48:27.735 2024-02-28 23:48:27.735 18900 TIP 442710 21398 6106167 2024-02-28 23:49:45.203 2024-02-28 23:49:45.203 2100 FEE 442813 19668 6106168 2024-02-28 23:49:45.203 2024-02-28 23:49:45.203 18900 TIP 442813 16296 6106211 2024-02-28 23:54:35.586 2024-02-28 23:54:35.586 100 FEE 442895 15978 6106212 2024-02-28 23:54:35.586 2024-02-28 23:54:35.586 900 TIP 442895 12346 6106227 2024-02-28 23:55:02.862 2024-02-28 23:55:02.862 2100 FEE 442084 18310 6106228 2024-02-28 23:55:02.862 2024-02-28 23:55:02.862 18900 TIP 442084 17514 6106237 2024-02-28 23:55:18.581 2024-02-28 23:55:18.581 2100 FEE 442702 10056 6106238 2024-02-28 23:55:18.581 2024-02-28 23:55:18.581 18900 TIP 442702 14122 6106243 2024-02-28 23:55:20.723 2024-02-28 23:55:20.723 2100 FEE 442810 6137 6106244 2024-02-28 23:55:20.723 2024-02-28 23:55:20.723 18900 TIP 442810 19637 6106256 2024-02-28 23:55:34.71 2024-02-28 23:55:34.71 2100 FEE 442785 18714 6105663 2024-02-28 23:10:16.037 2024-02-28 23:10:16.037 2100 FEE 442453 15336 6105664 2024-02-28 23:10:16.037 2024-02-28 23:10:16.037 18900 TIP 442453 18116 6105665 2024-02-28 23:11:00.47 2024-02-28 23:11:00.47 1000 FEE 442688 9551 6105666 2024-02-28 23:11:00.47 2024-02-28 23:11:00.47 9000 TIP 442688 19888 6105669 2024-02-28 23:11:12.318 2024-02-28 23:11:12.318 1000 FEE 442838 18174 6105690 2024-02-28 23:12:48.873 2024-02-28 23:12:48.873 2100 FEE 442751 20109 6105691 2024-02-28 23:12:48.873 2024-02-28 23:12:48.873 18900 TIP 442751 13878 6105699 2024-02-28 23:14:12.636 2024-02-28 23:14:12.636 21100 FEE 442751 3440 6105700 2024-02-28 23:14:12.636 2024-02-28 23:14:12.636 189900 TIP 442751 18154 6105701 2024-02-28 23:14:26.501 2024-02-28 23:14:26.501 10000 FEE 442769 17331 6105702 2024-02-28 23:14:26.501 2024-02-28 23:14:26.501 90000 TIP 442769 19016 6105750 2024-02-28 23:20:13.205 2024-02-28 23:20:13.205 10000 FEE 442852 19488 6105759 2024-02-28 23:21:04.317 2024-02-28 23:21:04.317 1000 FEE 442853 21539 6105760 2024-02-28 23:21:04.317 2024-02-28 23:21:04.317 9000 TIP 442853 1611 6105869 2024-02-28 23:27:49.764 2024-02-28 23:27:49.764 1000 FEE 442865 10398 6105872 2024-02-28 23:28:07.381 2024-02-28 23:28:07.381 2100 FEE 442787 1720 6105873 2024-02-28 23:28:07.381 2024-02-28 23:28:07.381 18900 TIP 442787 2326 6105892 2024-02-28 23:29:17.05 2024-02-28 23:29:17.05 2100 FEE 442796 20799 6105893 2024-02-28 23:29:17.05 2024-02-28 23:29:17.05 18900 TIP 442796 15690 6105896 2024-02-28 23:29:34.6 2024-02-28 23:29:34.6 1000 FEE 442868 11275 6105915 2024-02-28 23:31:26.136 2024-02-28 23:31:26.136 1000 POLL 442751 20205 6105923 2024-02-28 23:32:19.67 2024-02-28 23:32:19.67 100 FEE 442675 9517 6105924 2024-02-28 23:32:19.67 2024-02-28 23:32:19.67 900 TIP 442675 20143 6105928 2024-02-28 23:33:09.436 2024-02-28 23:33:09.436 1000 FEE 442871 19987 6105957 2024-02-28 23:34:59.709 2024-02-28 23:34:59.709 500 FEE 442781 8506 6105958 2024-02-28 23:34:59.709 2024-02-28 23:34:59.709 4500 TIP 442781 20276 6105970 2024-02-28 23:35:36.62 2024-02-28 23:35:36.62 1000 FEE 442023 14295 6105971 2024-02-28 23:35:36.62 2024-02-28 23:35:36.62 9000 TIP 442023 19156 6105992 2024-02-28 23:36:08.456 2024-02-28 23:36:08.456 2600 FEE 442845 21619 6105993 2024-02-28 23:36:08.456 2024-02-28 23:36:08.456 23400 TIP 442845 15484 6106003 2024-02-28 23:36:32.387 2024-02-28 23:36:32.387 1000 FEE 442877 9992 6106007 2024-02-28 23:37:20.351 2024-02-28 23:37:20.351 100 FEE 442620 19320 6106008 2024-02-28 23:37:20.351 2024-02-28 23:37:20.351 900 TIP 442620 15719 6105703 2024-02-28 23:14:36.465 2024-02-28 23:14:36.465 1000 FEE 442842 20754 6105711 2024-02-28 23:15:43.532 2024-02-28 23:15:43.532 1000 FEE 442803 9150 6105712 2024-02-28 23:15:43.532 2024-02-28 23:15:43.532 9000 TIP 442803 21051 6105713 2024-02-28 23:15:43.701 2024-02-28 23:15:43.701 1000 FEE 442803 19235 6105714 2024-02-28 23:15:43.701 2024-02-28 23:15:43.701 9000 TIP 442803 20183 6105745 2024-02-28 23:19:08.13 2024-02-28 23:19:08.13 1000 FEE 442849 6003 6105749 2024-02-28 23:20:11.769 2024-02-28 23:20:11.769 0 FEE 442851 6384 6105782 2024-02-28 23:23:12.571 2024-02-28 23:23:12.571 1000 FEE 442854 2519 6105783 2024-02-28 23:23:12.571 2024-02-28 23:23:12.571 9000 TIP 442854 9331 6105785 2024-02-28 23:23:47.658 2024-02-28 23:23:47.658 1000 FEE 442857 20660 6105796 2024-02-28 23:25:14.565 2024-02-28 23:25:14.565 1000 FEE 442858 21365 6105804 2024-02-28 23:26:09.429 2024-02-28 23:26:09.429 1000 FEE 442861 1784 6105834 2024-02-28 23:26:56.374 2024-02-28 23:26:56.374 7700 FEE 442820 12057 6105835 2024-02-28 23:26:56.374 2024-02-28 23:26:56.374 69300 TIP 442820 21386 6105838 2024-02-28 23:26:56.647 2024-02-28 23:26:56.647 7700 FEE 442820 8506 6105839 2024-02-28 23:26:56.647 2024-02-28 23:26:56.647 69300 TIP 442820 20326 6105842 2024-02-28 23:26:57.303 2024-02-28 23:26:57.303 7700 FEE 442820 19378 6105843 2024-02-28 23:26:57.303 2024-02-28 23:26:57.303 69300 TIP 442820 2347 6105851 2024-02-28 23:27:01.588 2024-02-28 23:27:01.588 7700 FEE 442820 1632 6105852 2024-02-28 23:27:01.588 2024-02-28 23:27:01.588 69300 TIP 442820 13042 6105879 2024-02-28 23:28:48.236 2024-02-28 23:28:48.236 1000 FEE 442856 21212 6105880 2024-02-28 23:28:48.236 2024-02-28 23:28:48.236 9000 TIP 442856 16356 6105888 2024-02-28 23:29:09.917 2024-02-28 23:29:09.917 2100 FEE 442628 9159 6105889 2024-02-28 23:29:09.917 2024-02-28 23:29:09.917 18900 TIP 442628 15367 6105909 2024-02-28 23:31:10.952 2024-02-28 23:31:10.952 5700 FEE 442628 21371 6105910 2024-02-28 23:31:10.952 2024-02-28 23:31:10.952 51300 TIP 442628 733 6105918 2024-02-28 23:31:51.377 2024-02-28 23:31:51.377 100 FEE 442686 15148 6105919 2024-02-28 23:31:51.377 2024-02-28 23:31:51.377 900 TIP 442686 21498 6105933 2024-02-28 23:33:56.405 2024-02-28 23:33:56.405 6900 FEE 442846 5520 6105934 2024-02-28 23:33:56.405 2024-02-28 23:33:56.405 62100 TIP 442846 16543 6105943 2024-02-28 23:34:57.412 2024-02-28 23:34:57.412 500 FEE 442781 19235 6105944 2024-02-28 23:34:57.412 2024-02-28 23:34:57.412 4500 TIP 442781 16948 6105977 2024-02-28 23:35:51.632 2024-02-28 23:35:51.632 6900 FEE 442848 20450 6105978 2024-02-28 23:35:51.632 2024-02-28 23:35:51.632 62100 TIP 442848 19857 6105979 2024-02-28 23:35:51.786 2024-02-28 23:35:51.786 6900 FEE 442848 10536 6105980 2024-02-28 23:35:51.786 2024-02-28 23:35:51.786 62100 TIP 442848 5017 6105983 2024-02-28 23:35:52.209 2024-02-28 23:35:52.209 12800 FEE 442041 19094 6105984 2024-02-28 23:35:52.209 2024-02-28 23:35:52.209 115200 TIP 442041 21418 6106020 2024-02-28 23:37:48.397 2024-02-28 23:37:48.397 2100 FEE 442313 19810 6106021 2024-02-28 23:37:48.397 2024-02-28 23:37:48.397 18900 TIP 442313 1007 6106065 2024-02-28 23:39:59.949 2024-02-28 23:39:59.949 3300 FEE 442557 977 6106066 2024-02-28 23:39:59.949 2024-02-28 23:39:59.949 29700 TIP 442557 19142 6106067 2024-02-28 23:40:00.409 2024-02-28 23:40:00.409 3300 FEE 442557 1512 6106068 2024-02-28 23:40:00.409 2024-02-28 23:40:00.409 29700 TIP 442557 19581 6106085 2024-02-28 23:41:43.579 2024-02-28 23:41:43.579 1000 FEE 442627 14731 6106086 2024-02-28 23:41:43.579 2024-02-28 23:41:43.579 9000 TIP 442627 11158 6106119 2024-02-28 23:44:19.281 2024-02-28 23:44:19.281 1000 FEE 442800 18321 6106120 2024-02-28 23:44:19.281 2024-02-28 23:44:19.281 9000 TIP 442800 18784 6106125 2024-02-28 23:44:25.103 2024-02-28 23:44:25.103 42300 FEE 442800 20973 6106126 2024-02-28 23:44:25.103 2024-02-28 23:44:25.103 380700 TIP 442800 2195 6106161 2024-02-28 23:48:59.711 2024-02-28 23:48:59.711 42000 FEE 442892 2537 6106181 2024-02-28 23:52:04.946 2024-02-28 23:52:04.946 2100 FEE 442188 17157 6106182 2024-02-28 23:52:04.946 2024-02-28 23:52:04.946 18900 TIP 442188 2513 6106184 2024-02-28 23:52:27.793 2024-02-28 23:52:27.793 100 FEE 442796 6383 6106185 2024-02-28 23:52:27.793 2024-02-28 23:52:27.793 900 TIP 442796 11192 6106207 2024-02-28 23:54:17.75 2024-02-28 23:54:17.75 2500 FEE 442799 11165 6106208 2024-02-28 23:54:17.75 2024-02-28 23:54:17.75 22500 TIP 442799 18409 6106281 2024-02-28 23:56:12.531 2024-02-28 23:56:12.531 2100 FEE 442243 16753 6106282 2024-02-28 23:56:12.531 2024-02-28 23:56:12.531 18900 TIP 442243 2329 6106301 2024-02-28 23:56:30.855 2024-02-28 23:56:30.855 2100 FEE 442258 3396 6106302 2024-02-28 23:56:30.855 2024-02-28 23:56:30.855 18900 TIP 442258 9982 6106327 2024-02-28 23:56:44.15 2024-02-28 23:56:44.15 1700 FEE 442901 10280 6106328 2024-02-28 23:56:44.15 2024-02-28 23:56:44.15 15300 TIP 442901 9335 6106329 2024-02-28 23:56:45 2024-02-28 23:56:45 2100 FEE 442149 20470 6106330 2024-02-28 23:56:45 2024-02-28 23:56:45 18900 TIP 442149 2722 6106342 2024-02-28 23:57:02.656 2024-02-28 23:57:02.656 2100 FEE 442751 2942 6106343 2024-02-28 23:57:02.656 2024-02-28 23:57:02.656 18900 TIP 442751 13046 6106382 2024-02-28 23:57:58.908 2024-02-28 23:57:58.908 2100 FEE 442146 21424 6106383 2024-02-28 23:57:58.908 2024-02-28 23:57:58.908 18900 TIP 442146 1733 6106392 2024-02-28 23:58:00.3 2024-02-28 23:58:00.3 2100 FEE 442146 1105 6106393 2024-02-28 23:58:00.3 2024-02-28 23:58:00.3 18900 TIP 442146 1474 6106400 2024-02-28 23:58:19.023 2024-02-28 23:58:19.023 2100 FEE 442449 8664 6106401 2024-02-28 23:58:19.023 2024-02-28 23:58:19.023 18900 TIP 442449 14785 6106404 2024-02-28 23:58:19.339 2024-02-28 23:58:19.339 2100 FEE 442449 10393 6106405 2024-02-28 23:58:19.339 2024-02-28 23:58:19.339 18900 TIP 442449 10013 6106408 2024-02-28 23:58:19.723 2024-02-28 23:58:19.723 2100 FEE 442449 11075 6106409 2024-02-28 23:58:19.723 2024-02-28 23:58:19.723 18900 TIP 442449 13198 6106436 2024-02-28 23:58:29.55 2024-02-28 23:58:29.55 2100 FEE 442479 18877 6106437 2024-02-28 23:58:29.55 2024-02-28 23:58:29.55 18900 TIP 442479 11450 6106457 2024-02-28 23:59:44.772 2024-02-28 23:59:44.772 2100 FEE 442543 4292 6106458 2024-02-28 23:59:44.772 2024-02-28 23:59:44.772 18900 TIP 442543 20523 6106472 2024-02-29 00:00:18.741 2024-02-29 00:00:18.741 1000 FEE 442468 19484 6106473 2024-02-29 00:00:18.741 2024-02-29 00:00:18.741 9000 TIP 442468 15213 6106478 2024-02-29 00:00:36.143 2024-02-29 00:00:36.143 2100 FEE 442023 3392 6106479 2024-02-29 00:00:36.143 2024-02-29 00:00:36.143 18900 TIP 442023 20511 6106497 2024-02-29 00:01:43.769 2024-02-29 00:01:43.769 1000 POLL 442751 11275 6106501 2024-02-29 00:02:06.64 2024-02-29 00:02:06.64 1000 FEE 442796 19309 6106502 2024-02-29 00:02:06.64 2024-02-29 00:02:06.64 9000 TIP 442796 15491 6106505 2024-02-29 00:03:38.03 2024-02-29 00:03:38.03 1000 FEE 442628 16988 6106506 2024-02-29 00:03:38.03 2024-02-29 00:03:38.03 9000 TIP 442628 20272 6106580 2024-02-29 00:09:05.401 2024-02-29 00:09:05.401 900 FEE 442812 9517 6106581 2024-02-29 00:09:05.401 2024-02-29 00:09:05.401 8100 TIP 442812 16867 6105721 2024-02-28 23:16:09.189 2024-02-28 23:16:09.189 9000 TIP 442751 13133 6105728 2024-02-28 23:16:57.899 2024-02-28 23:16:57.899 12800 FEE 442163 15526 6105729 2024-02-28 23:16:57.899 2024-02-28 23:16:57.899 115200 TIP 442163 2285 6105746 2024-02-28 23:19:18.077 2024-02-28 23:19:18.077 1000 FEE 442850 16355 6105761 2024-02-28 23:21:23.725 2024-02-28 23:21:23.725 1000 FEE 442854 20500 6105776 2024-02-28 23:23:12.007 2024-02-28 23:23:12.007 1000 FEE 442854 2718 6105777 2024-02-28 23:23:12.007 2024-02-28 23:23:12.007 9000 TIP 442854 16301 6105778 2024-02-28 23:23:12.371 2024-02-28 23:23:12.371 1000 FEE 442854 19158 6105779 2024-02-28 23:23:12.371 2024-02-28 23:23:12.371 9000 TIP 442854 895 6105784 2024-02-28 23:23:13.683 2024-02-28 23:23:13.683 1000 FEE 442856 10554 6105786 2024-02-28 23:23:53.331 2024-02-28 23:23:53.331 100 FEE 442587 896 6105787 2024-02-28 23:23:53.331 2024-02-28 23:23:53.331 900 TIP 442587 21463 6105809 2024-02-28 23:26:49.845 2024-02-28 23:26:49.845 1000 POLL 442751 738 6105812 2024-02-28 23:26:54.69 2024-02-28 23:26:54.69 7700 FEE 442820 712 6105813 2024-02-28 23:26:54.69 2024-02-28 23:26:54.69 69300 TIP 442820 20291 6105814 2024-02-28 23:26:54.821 2024-02-28 23:26:54.821 7700 FEE 442820 2543 6105815 2024-02-28 23:26:54.821 2024-02-28 23:26:54.821 69300 TIP 442820 16354 6105832 2024-02-28 23:26:56.219 2024-02-28 23:26:56.219 7700 FEE 442820 21157 6105730 2024-02-28 23:17:02.868 2024-02-28 23:17:02.868 1000 STREAM 141924 711 6105780 2024-02-28 23:23:12.4 2024-02-28 23:23:12.4 1000 FEE 442854 18454 6105781 2024-02-28 23:23:12.4 2024-02-28 23:23:12.4 9000 TIP 442854 1836 6105797 2024-02-28 23:25:17.046 2024-02-28 23:25:17.046 11000 FEE 442859 828 6105802 2024-02-28 23:26:04.137 2024-02-28 23:26:04.137 100 FEE 440891 9171 6105803 2024-02-28 23:26:04.137 2024-02-28 23:26:04.137 900 TIP 440891 21627 6105818 2024-02-28 23:26:55.169 2024-02-28 23:26:55.169 7700 FEE 442820 2640 6105819 2024-02-28 23:26:55.169 2024-02-28 23:26:55.169 69300 TIP 442820 18673 6105824 2024-02-28 23:26:55.549 2024-02-28 23:26:55.549 7700 FEE 442820 18154 6105825 2024-02-28 23:26:55.549 2024-02-28 23:26:55.549 69300 TIP 442820 2101 6105830 2024-02-28 23:26:56.077 2024-02-28 23:26:56.077 7700 FEE 442820 8176 6105831 2024-02-28 23:26:56.077 2024-02-28 23:26:56.077 69300 TIP 442820 18941 6105844 2024-02-28 23:26:57.491 2024-02-28 23:26:57.491 7700 FEE 442820 21238 6105845 2024-02-28 23:26:57.491 2024-02-28 23:26:57.491 69300 TIP 442820 913 6105853 2024-02-28 23:27:01.805 2024-02-28 23:27:01.805 7700 FEE 442820 19005 6105854 2024-02-28 23:27:01.805 2024-02-28 23:27:01.805 69300 TIP 442820 12606 6105874 2024-02-28 23:28:08.058 2024-02-28 23:28:08.058 2100 FEE 442812 979 6105875 2024-02-28 23:28:08.058 2024-02-28 23:28:08.058 18900 TIP 442812 21492 6105876 2024-02-28 23:28:38.847 2024-02-28 23:28:38.847 1000 FEE 442867 1617 6105908 2024-02-28 23:31:08.684 2024-02-28 23:31:08.684 1000 FEE 442870 976 6105937 2024-02-28 23:33:56.682 2024-02-28 23:33:56.682 6900 FEE 442846 21493 6105938 2024-02-28 23:33:56.682 2024-02-28 23:33:56.682 62100 TIP 442846 720 6105974 2024-02-28 23:35:38.051 2024-02-28 23:35:38.051 6900 FEE 442721 14905 6105975 2024-02-28 23:35:38.051 2024-02-28 23:35:38.051 62100 TIP 442721 11417 6105976 2024-02-28 23:35:46.337 2024-02-28 23:35:46.337 1000 FEE 442875 19500 6106004 2024-02-28 23:36:50.014 2024-02-28 23:36:50.014 1000 POLL 442859 3686 6106018 2024-02-28 23:37:48.09 2024-02-28 23:37:48.09 2100 FEE 442313 21212 6106019 2024-02-28 23:37:48.09 2024-02-28 23:37:48.09 18900 TIP 442313 4126 6106022 2024-02-28 23:37:48.536 2024-02-28 23:37:48.536 2100 FEE 442313 16059 6106023 2024-02-28 23:37:48.536 2024-02-28 23:37:48.536 18900 TIP 442313 17541 6106028 2024-02-28 23:37:49.757 2024-02-28 23:37:49.757 0 FEE 442876 1692 6106032 2024-02-28 23:38:10.637 2024-02-28 23:38:10.637 0 FEE 442876 1438 6106033 2024-02-28 23:38:14.738 2024-02-28 23:38:14.738 100 FEE 442656 18274 6106034 2024-02-28 23:38:14.738 2024-02-28 23:38:14.738 900 TIP 442656 20182 6106044 2024-02-28 23:39:19.405 2024-02-28 23:39:19.405 100 FEE 442880 10554 6106045 2024-02-28 23:39:19.405 2024-02-28 23:39:19.405 900 TIP 442880 8423 6106050 2024-02-28 23:39:45.534 2024-02-28 23:39:45.534 3300 FEE 442796 3979 6106051 2024-02-28 23:39:45.534 2024-02-28 23:39:45.534 29700 TIP 442796 3409 6106079 2024-02-28 23:40:34.718 2024-02-28 23:40:34.718 130000 DONT_LIKE_THIS 442859 2264 6105792 2024-02-28 23:24:10.13 2024-02-28 23:24:10.13 18900 TIP 442551 1577 6105820 2024-02-28 23:26:55.267 2024-02-28 23:26:55.267 7700 FEE 442820 11897 6105821 2024-02-28 23:26:55.267 2024-02-28 23:26:55.267 69300 TIP 442820 5701 6105846 2024-02-28 23:27:00.242 2024-02-28 23:27:00.242 1000 FEE 442863 18446 6105847 2024-02-28 23:27:00.573 2024-02-28 23:27:00.573 7700 FEE 442820 4831 6105848 2024-02-28 23:27:00.573 2024-02-28 23:27:00.573 69300 TIP 442820 18528 6105857 2024-02-28 23:27:09.819 2024-02-28 23:27:09.819 1000 FEE 442864 13249 6105865 2024-02-28 23:27:37.662 2024-02-28 23:27:37.662 3400 FEE 442645 15367 6105866 2024-02-28 23:27:37.662 2024-02-28 23:27:37.662 30600 TIP 442645 1960 6105870 2024-02-28 23:27:55.324 2024-02-28 23:27:55.324 1000 FEE 442866 18836 6105883 2024-02-28 23:28:48.533 2024-02-28 23:28:48.533 1000 FEE 442856 19103 6105884 2024-02-28 23:28:48.533 2024-02-28 23:28:48.533 9000 TIP 442856 10611 6105902 2024-02-28 23:30:59.573 2024-02-28 23:30:59.573 10000 FEE 442869 3461 6105903 2024-02-28 23:31:01.542 2024-02-28 23:31:01.542 5700 FEE 442636 3371 6105904 2024-02-28 23:31:01.542 2024-02-28 23:31:01.542 51300 TIP 442636 19199 6105955 2024-02-28 23:34:59.427 2024-02-28 23:34:59.427 500 FEE 442781 2444 6105956 2024-02-28 23:34:59.427 2024-02-28 23:34:59.427 4500 TIP 442781 21323 6105964 2024-02-28 23:35:28.922 2024-02-28 23:35:28.922 100 FEE 442781 5128 6105965 2024-02-28 23:35:28.922 2024-02-28 23:35:28.922 900 TIP 442781 16876 6105994 2024-02-28 23:36:10.174 2024-02-28 23:36:10.174 2600 FEE 442823 3304 6105995 2024-02-28 23:36:10.174 2024-02-28 23:36:10.174 23400 TIP 442823 7583 6105996 2024-02-28 23:36:12.465 2024-02-28 23:36:12.465 2600 FEE 442802 1697 6105997 2024-02-28 23:36:12.465 2024-02-28 23:36:12.465 23400 TIP 442802 642 6106011 2024-02-28 23:37:46.226 2024-02-28 23:37:46.226 1000 POLL 442751 5377 6106016 2024-02-28 23:37:47.958 2024-02-28 23:37:47.958 2100 FEE 442313 6578 6106017 2024-02-28 23:37:47.958 2024-02-28 23:37:47.958 18900 TIP 442313 1652 6106035 2024-02-28 23:38:25.598 2024-02-28 23:38:25.598 2100 FEE 442848 12769 6106036 2024-02-28 23:38:25.598 2024-02-28 23:38:25.598 18900 TIP 442848 12368 6106062 2024-02-28 23:39:58.335 2024-02-28 23:39:58.335 1000 FEE 442882 18138 6106063 2024-02-28 23:39:59.781 2024-02-28 23:39:59.781 3300 FEE 442557 8945 6106064 2024-02-28 23:39:59.781 2024-02-28 23:39:59.781 29700 TIP 442557 18904 6106088 2024-02-28 23:41:43.853 2024-02-28 23:41:43.853 1000 FEE 442627 3518 6106089 2024-02-28 23:41:43.853 2024-02-28 23:41:43.853 9000 TIP 442627 992 6106111 2024-02-28 23:44:15.952 2024-02-28 23:44:15.952 1000 FEE 442800 18892 6106112 2024-02-28 23:44:15.952 2024-02-28 23:44:15.952 9000 TIP 442800 19502 6106137 2024-02-28 23:46:53.078 2024-02-28 23:46:53.078 100 FEE 442751 17526 6106138 2024-02-28 23:46:53.078 2024-02-28 23:46:53.078 900 TIP 442751 11698 6106146 2024-02-28 23:47:32.501 2024-02-28 23:47:32.501 1000 POLL 442751 2459 6106163 2024-02-28 23:49:34.128 2024-02-28 23:49:34.128 10000 FEE 442854 9184 6106164 2024-02-28 23:49:34.128 2024-02-28 23:49:34.128 90000 TIP 442854 21413 6106165 2024-02-28 23:49:40.746 2024-02-28 23:49:40.746 1000 FEE 442893 8954 6106171 2024-02-28 23:50:15.667 2024-02-28 23:50:15.667 1000 FEE 442895 10273 6106190 2024-02-28 23:52:46.501 2024-02-28 23:52:46.501 1000 POLL 442751 19813 6106193 2024-02-28 23:52:50.3 2024-02-28 23:52:50.3 100 FEE 442859 5701 6106194 2024-02-28 23:52:50.3 2024-02-28 23:52:50.3 900 TIP 442859 19886 6106198 2024-02-28 23:53:36.581 2024-02-28 23:53:36.581 100 FEE 442781 18830 6106199 2024-02-28 23:53:36.581 2024-02-28 23:53:36.581 900 TIP 442781 20904 6106213 2024-02-28 23:54:35.784 2024-02-28 23:54:35.784 900 FEE 442895 16532 6106214 2024-02-28 23:54:35.784 2024-02-28 23:54:35.784 8100 TIP 442895 21624 6106218 2024-02-28 23:54:49.63 2024-02-28 23:54:49.63 100 FEE 442880 1124 6106219 2024-02-28 23:54:49.63 2024-02-28 23:54:49.63 900 TIP 442880 8998 6106235 2024-02-28 23:55:18.116 2024-02-28 23:55:18.116 2100 FEE 442702 2390 6106236 2024-02-28 23:55:18.116 2024-02-28 23:55:18.116 18900 TIP 442702 2016 6106241 2024-02-28 23:55:19.685 2024-02-28 23:55:19.685 2100 FEE 442702 1064 6106242 2024-02-28 23:55:19.685 2024-02-28 23:55:19.685 18900 TIP 442702 9992 6106255 2024-02-28 23:55:34.412 2024-02-28 23:55:34.412 1000 POLL 442751 18663 6106262 2024-02-28 23:55:43.327 2024-02-28 23:55:43.327 1000 FEE 442551 21501 6106263 2024-02-28 23:55:43.327 2024-02-28 23:55:43.327 9000 TIP 442551 10490 6106277 2024-02-28 23:56:12.044 2024-02-28 23:56:12.044 2100 FEE 442243 14688 6106278 2024-02-28 23:56:12.044 2024-02-28 23:56:12.044 18900 TIP 442243 21556 6106295 2024-02-28 23:56:24.384 2024-02-28 23:56:24.384 2100 FEE 442138 21400 6106296 2024-02-28 23:56:24.384 2024-02-28 23:56:24.384 18900 TIP 442138 10352 6106303 2024-02-28 23:56:33.674 2024-02-28 23:56:33.674 2100 FEE 442279 6688 6106304 2024-02-28 23:56:33.674 2024-02-28 23:56:33.674 18900 TIP 442279 16847 6106344 2024-02-28 23:57:10.869 2024-02-28 23:57:10.869 2100 FEE 442345 4692 6106345 2024-02-28 23:57:10.869 2024-02-28 23:57:10.869 18900 TIP 442345 960 6106348 2024-02-28 23:57:12.202 2024-02-28 23:57:12.202 2100 FEE 442345 4650 6106349 2024-02-28 23:57:12.202 2024-02-28 23:57:12.202 18900 TIP 442345 6382 6106359 2024-02-28 23:57:39.452 2024-02-28 23:57:39.452 1000 POLL 442751 1806 6106434 2024-02-28 23:58:24.682 2024-02-28 23:58:24.682 2100 FEE 442449 11967 6106435 2024-02-28 23:58:24.682 2024-02-28 23:58:24.682 18900 TIP 442449 17275 6106438 2024-02-28 23:58:29.809 2024-02-28 23:58:29.809 2100 FEE 442479 18017 6106439 2024-02-28 23:58:29.809 2024-02-28 23:58:29.809 18900 TIP 442479 14074 6106476 2024-02-29 00:00:35.984 2024-02-29 00:00:35.984 2100 FEE 442023 21238 6106477 2024-02-29 00:00:35.984 2024-02-29 00:00:35.984 18900 TIP 442023 19890 6106480 2024-02-29 00:00:36.34 2024-02-29 00:00:36.34 2100 FEE 442023 6268 6106481 2024-02-29 00:00:36.34 2024-02-29 00:00:36.34 18900 TIP 442023 15103 6106482 2024-02-29 00:00:36.497 2024-02-29 00:00:36.497 2100 FEE 442023 11153 6106483 2024-02-29 00:00:36.497 2024-02-29 00:00:36.497 18900 TIP 442023 15544 6106519 2024-02-29 00:05:11.879 2024-02-29 00:05:11.879 1000 FEE 442834 13133 6106520 2024-02-29 00:05:11.879 2024-02-29 00:05:11.879 9000 TIP 442834 18690 6106537 2024-02-29 00:07:20.136 2024-02-29 00:07:20.136 2100 FEE 442692 18664 6106538 2024-02-29 00:07:20.136 2024-02-29 00:07:20.136 18900 TIP 442692 16842 6106540 2024-02-29 00:07:31.805 2024-02-29 00:07:31.805 2100 FEE 442704 16052 6106541 2024-02-29 00:07:31.805 2024-02-29 00:07:31.805 18900 TIP 442704 687 6106554 2024-02-29 00:07:44.86 2024-02-29 00:07:44.86 100 FEE 442896 18678 6106555 2024-02-29 00:07:44.86 2024-02-29 00:07:44.86 900 TIP 442896 7675 6105805 2024-02-28 23:26:16.987 2024-02-28 23:26:16.987 1000 FEE 442862 14857 6105808 2024-02-28 23:26:39.763 2024-02-28 23:26:39.763 1000 POLL 442751 18533 6105822 2024-02-28 23:26:55.388 2024-02-28 23:26:55.388 7700 FEE 442820 12744 6105823 2024-02-28 23:26:55.388 2024-02-28 23:26:55.388 69300 TIP 442820 814 6105836 2024-02-28 23:26:56.55 2024-02-28 23:26:56.55 7700 FEE 442820 1647 6105837 2024-02-28 23:26:56.55 2024-02-28 23:26:56.55 69300 TIP 442820 9342 6105856 2024-02-28 23:27:02.469 2024-02-28 23:27:02.469 1000 POLL 442751 7674 6105858 2024-02-28 23:27:14.883 2024-02-28 23:27:14.883 2100 FEE 442781 7992 6105859 2024-02-28 23:27:14.883 2024-02-28 23:27:14.883 18900 TIP 442781 6268 6105862 2024-02-28 23:27:17.716 2024-02-28 23:27:17.716 2100 FEE 442861 17042 6105863 2024-02-28 23:27:17.716 2024-02-28 23:27:17.716 18900 TIP 442861 15690 6105877 2024-02-28 23:28:48.086 2024-02-28 23:28:48.086 1000 FEE 442856 19836 6105878 2024-02-28 23:28:48.086 2024-02-28 23:28:48.086 9000 TIP 442856 16406 6105898 2024-02-28 23:30:51.853 2024-02-28 23:30:51.853 1000 FEE 442757 822 6105899 2024-02-28 23:30:51.853 2024-02-28 23:30:51.853 9000 TIP 442757 15556 6105906 2024-02-28 23:31:04.188 2024-02-28 23:31:04.188 5700 FEE 442710 1712 6105907 2024-02-28 23:31:04.188 2024-02-28 23:31:04.188 51300 TIP 442710 19320 6105913 2024-02-28 23:31:14.023 2024-02-28 23:31:14.023 5700 FEE 442796 993 6105914 2024-02-28 23:31:14.023 2024-02-28 23:31:14.023 51300 TIP 442796 1175 6105935 2024-02-28 23:33:56.569 2024-02-28 23:33:56.569 6900 FEE 442846 20602 6105936 2024-02-28 23:33:56.569 2024-02-28 23:33:56.569 62100 TIP 442846 1692 6105940 2024-02-28 23:34:31.753 2024-02-28 23:34:31.753 2100 FEE 442808 16939 6105941 2024-02-28 23:34:31.753 2024-02-28 23:34:31.753 18900 TIP 442808 12334 6105942 2024-02-28 23:34:35.528 2024-02-28 23:34:35.528 1000 FEE 442874 13100 6105945 2024-02-28 23:34:57.724 2024-02-28 23:34:57.724 500 FEE 442781 18658 6105946 2024-02-28 23:34:57.724 2024-02-28 23:34:57.724 4500 TIP 442781 18402 6105949 2024-02-28 23:34:58.21 2024-02-28 23:34:58.21 500 FEE 442781 19007 6105950 2024-02-28 23:34:58.21 2024-02-28 23:34:58.21 4500 TIP 442781 717 6105981 2024-02-28 23:35:51.955 2024-02-28 23:35:51.955 6900 FEE 442848 9166 6105982 2024-02-28 23:35:51.955 2024-02-28 23:35:51.955 62100 TIP 442848 20597 6106009 2024-02-28 23:37:28.15 2024-02-28 23:37:28.15 1000 FEE 442820 20090 6106010 2024-02-28 23:37:28.15 2024-02-28 23:37:28.15 9000 TIP 442820 3371 6106014 2024-02-28 23:37:47.812 2024-02-28 23:37:47.812 2100 FEE 442313 20109 6106015 2024-02-28 23:37:47.812 2024-02-28 23:37:47.812 18900 TIP 442313 2514 6106043 2024-02-28 23:39:08.176 2024-02-28 23:39:08.176 0 FEE 442876 20812 6106054 2024-02-28 23:39:45.826 2024-02-28 23:39:45.826 3300 FEE 442796 20015 6106055 2024-02-28 23:39:45.826 2024-02-28 23:39:45.826 29700 TIP 442796 18727 6106094 2024-02-28 23:42:14.215 2024-02-28 23:42:14.215 1000 FEE 442886 940 6106142 2024-02-28 23:47:20.693 2024-02-28 23:47:20.693 100 FEE 442820 18511 6106143 2024-02-28 23:47:20.693 2024-02-28 23:47:20.693 900 TIP 442820 17001 6106155 2024-02-28 23:48:39.752 2024-02-28 23:48:39.752 2100 FEE 442751 14857 6106156 2024-02-28 23:48:39.752 2024-02-28 23:48:39.752 18900 TIP 442751 5085 6106157 2024-02-28 23:48:44.472 2024-02-28 23:48:44.472 10000 FEE 442769 16754 6106158 2024-02-28 23:48:44.472 2024-02-28 23:48:44.472 90000 TIP 442769 14959 6106166 2024-02-28 23:49:41.801 2024-02-28 23:49:41.801 1000000 FEE 442894 844 6106191 2024-02-28 23:52:48.804 2024-02-28 23:52:48.804 1000 FEE 442894 10981 6106192 2024-02-28 23:52:48.804 2024-02-28 23:52:48.804 9000 TIP 442894 4076 6106203 2024-02-28 23:53:40.299 2024-02-28 23:53:40.299 1000 FEE 442900 5499 6106251 2024-02-28 23:55:31.184 2024-02-28 23:55:31.184 2100 FEE 442785 5590 6106252 2024-02-28 23:55:31.184 2024-02-28 23:55:31.184 18900 TIP 442785 18528 6106253 2024-02-28 23:55:33.06 2024-02-28 23:55:33.06 2100 FEE 442785 21022 6106254 2024-02-28 23:55:33.06 2024-02-28 23:55:33.06 18900 TIP 442785 21547 6106260 2024-02-28 23:55:38.972 2024-02-28 23:55:38.972 1000 FEE 442313 12049 6106261 2024-02-28 23:55:38.972 2024-02-28 23:55:38.972 9000 TIP 442313 18169 6106273 2024-02-28 23:56:03.625 2024-02-28 23:56:03.625 2100 FEE 442109 20340 6106274 2024-02-28 23:56:03.625 2024-02-28 23:56:03.625 18900 TIP 442109 4084 6106279 2024-02-28 23:56:12.297 2024-02-28 23:56:12.297 2100 FEE 442243 2502 6106280 2024-02-28 23:56:12.297 2024-02-28 23:56:12.297 18900 TIP 442243 4314 6106285 2024-02-28 23:56:15.041 2024-02-28 23:56:15.041 2100 FEE 442252 776 6106286 2024-02-28 23:56:15.041 2024-02-28 23:56:15.041 18900 TIP 442252 6537 6106297 2024-02-28 23:56:29.94 2024-02-28 23:56:29.94 2100 FEE 442258 2460 6106298 2024-02-28 23:56:29.94 2024-02-28 23:56:29.94 18900 TIP 442258 18581 6106317 2024-02-28 23:56:42.919 2024-02-28 23:56:42.919 2100 FEE 442149 9 6106318 2024-02-28 23:56:42.919 2024-02-28 23:56:42.919 18900 TIP 442149 7978 6106346 2024-02-28 23:57:11.687 2024-02-28 23:57:11.687 2100 FEE 442345 8173 6106347 2024-02-28 23:57:11.687 2024-02-28 23:57:11.687 18900 TIP 442345 16440 6106350 2024-02-28 23:57:25.466 2024-02-28 23:57:25.466 1000 FEE 442731 17209 6106351 2024-02-28 23:57:25.466 2024-02-28 23:57:25.466 9000 TIP 442731 18454 6105833 2024-02-28 23:26:56.219 2024-02-28 23:26:56.219 69300 TIP 442820 9333 6105840 2024-02-28 23:26:57.08 2024-02-28 23:26:57.08 7700 FEE 442820 10096 6105841 2024-02-28 23:26:57.08 2024-02-28 23:26:57.08 69300 TIP 442820 5487 6105860 2024-02-28 23:27:15.217 2024-02-28 23:27:15.217 2100 FEE 441571 18897 6105861 2024-02-28 23:27:15.217 2024-02-28 23:27:15.217 18900 TIP 441571 19941 6105886 2024-02-28 23:29:03.949 2024-02-28 23:29:03.949 2100 FEE 442710 3656 6105887 2024-02-28 23:29:03.949 2024-02-28 23:29:03.949 18900 TIP 442710 19465 6105921 2024-02-28 23:32:12.076 2024-02-28 23:32:12.076 100 FEE 442657 925 6105922 2024-02-28 23:32:12.076 2024-02-28 23:32:12.076 900 TIP 442657 9354 6105930 2024-02-28 23:33:35.019 2024-02-28 23:33:35.019 1000 FEE 442873 1425 6105931 2024-02-28 23:33:38.341 2024-02-28 23:33:38.341 2100 FEE 442508 4391 6105932 2024-02-28 23:33:38.341 2024-02-28 23:33:38.341 18900 TIP 442508 2709 6105947 2024-02-28 23:34:57.943 2024-02-28 23:34:57.943 500 FEE 442781 8176 6105948 2024-02-28 23:34:57.943 2024-02-28 23:34:57.943 4500 TIP 442781 14650 6105990 2024-02-28 23:36:05.939 2024-02-28 23:36:05.939 2600 FEE 442719 16350 6105991 2024-02-28 23:36:05.939 2024-02-28 23:36:05.939 23400 TIP 442719 18219 6106026 2024-02-28 23:37:48.821 2024-02-28 23:37:48.821 2100 FEE 442313 21361 6106027 2024-02-28 23:37:48.821 2024-02-28 23:37:48.821 18900 TIP 442313 762 6106029 2024-02-28 23:37:51.328 2024-02-28 23:37:51.328 100 FEE 157847 9177 6106030 2024-02-28 23:37:51.328 2024-02-28 23:37:51.328 900 TIP 157847 20353 6106037 2024-02-28 23:38:26.199 2024-02-28 23:38:26.199 2100 FEE 442848 12930 6106038 2024-02-28 23:38:26.199 2024-02-28 23:38:26.199 18900 TIP 442848 1490 6106042 2024-02-28 23:39:05.852 2024-02-28 23:39:05.852 0 FEE 442880 20706 6106075 2024-02-28 23:40:24.47 2024-02-28 23:40:24.47 1000 FEE 442870 19826 6106076 2024-02-28 23:40:24.47 2024-02-28 23:40:24.47 9000 TIP 442870 14357 6106077 2024-02-28 23:40:27.378 2024-02-28 23:40:27.378 2100 FEE 442508 9705 6106078 2024-02-28 23:40:27.378 2024-02-28 23:40:27.378 18900 TIP 442508 18174 6106083 2024-02-28 23:41:43.241 2024-02-28 23:41:43.241 1000 FEE 442627 15060 6106084 2024-02-28 23:41:43.241 2024-02-28 23:41:43.241 9000 TIP 442627 993 6106090 2024-02-28 23:41:47.757 2024-02-28 23:41:47.757 2600 FEE 442869 3504 6106091 2024-02-28 23:41:47.757 2024-02-28 23:41:47.757 23400 TIP 442869 14449 6106113 2024-02-28 23:44:16.523 2024-02-28 23:44:16.523 1000 FEE 442800 18199 6106114 2024-02-28 23:44:16.523 2024-02-28 23:44:16.523 9000 TIP 442800 5794 6106131 2024-02-28 23:46:18.529 2024-02-28 23:46:18.529 0 FEE 442890 11967 6106139 2024-02-28 23:46:56.265 2024-02-28 23:46:56.265 3400 FEE 439298 20353 6106140 2024-02-28 23:46:56.265 2024-02-28 23:46:56.265 30600 TIP 439298 9084 6106144 2024-02-28 23:47:23.673 2024-02-28 23:47:23.673 100 FEE 442023 18601 6106145 2024-02-28 23:47:23.673 2024-02-28 23:47:23.673 900 TIP 442023 2502 6106177 2024-02-28 23:51:08.444 2024-02-28 23:51:08.444 1000 FEE 442897 20470 6106220 2024-02-28 23:54:49.772 2024-02-28 23:54:49.772 100 FEE 442893 19322 6106221 2024-02-28 23:54:49.772 2024-02-28 23:54:49.772 900 TIP 442893 20433 6106229 2024-02-28 23:55:03.04 2024-02-28 23:55:03.04 2100 FEE 442084 10608 6106230 2024-02-28 23:55:03.04 2024-02-28 23:55:03.04 18900 TIP 442084 20852 6106231 2024-02-28 23:55:03.234 2024-02-28 23:55:03.234 2100 FEE 442084 10016 6106232 2024-02-28 23:55:03.234 2024-02-28 23:55:03.234 18900 TIP 442084 660 6106239 2024-02-28 23:55:18.692 2024-02-28 23:55:18.692 2100 FEE 442702 15139 6106240 2024-02-28 23:55:18.692 2024-02-28 23:55:18.692 18900 TIP 442702 5519 6106258 2024-02-28 23:55:37.515 2024-02-28 23:55:37.515 1000 FEE 442751 8544 6106259 2024-02-28 23:55:37.515 2024-02-28 23:55:37.515 9000 TIP 442751 9809 6106269 2024-02-28 23:56:03.175 2024-02-28 23:56:03.175 2100 FEE 442109 9 6106270 2024-02-28 23:56:03.175 2024-02-28 23:56:03.175 18900 TIP 442109 4035 6106287 2024-02-28 23:56:15.364 2024-02-28 23:56:15.364 2100 FEE 442252 21624 6106288 2024-02-28 23:56:15.364 2024-02-28 23:56:15.364 18900 TIP 442252 11275 6106291 2024-02-28 23:56:15.784 2024-02-28 23:56:15.784 2100 FEE 442252 2735 6106292 2024-02-28 23:56:15.784 2024-02-28 23:56:15.784 18900 TIP 442252 16042 6106311 2024-02-28 23:56:37.109 2024-02-28 23:56:37.109 2100 FEE 442279 8423 6106312 2024-02-28 23:56:37.109 2024-02-28 23:56:37.109 18900 TIP 442279 5160 6106333 2024-02-28 23:56:57.787 2024-02-28 23:56:57.787 2100 FEE 442303 14818 6106334 2024-02-28 23:56:57.787 2024-02-28 23:56:57.787 18900 TIP 442303 17741 6106360 2024-02-28 23:57:43.874 2024-02-28 23:57:43.874 2100 FEE 442544 14990 6106361 2024-02-28 23:57:43.874 2024-02-28 23:57:43.874 18900 TIP 442544 20564 6106376 2024-02-28 23:57:58.353 2024-02-28 23:57:58.353 1000 FEE 442582 11443 6106377 2024-02-28 23:57:58.353 2024-02-28 23:57:58.353 9000 TIP 442582 1316 6106046 2024-02-28 23:39:19.573 2024-02-28 23:39:19.573 900 FEE 442880 19398 6106047 2024-02-28 23:39:19.573 2024-02-28 23:39:19.573 8100 TIP 442880 21033 6106060 2024-02-28 23:39:51.813 2024-02-28 23:39:51.813 1000 FEE 442881 20972 6106072 2024-02-28 23:40:18.833 2024-02-28 23:40:18.833 2600 FEE 442868 11866 6106073 2024-02-28 23:40:18.833 2024-02-28 23:40:18.833 23400 TIP 442868 2459 6106109 2024-02-28 23:44:05.478 2024-02-28 23:44:05.478 1000 POLL 442859 21048 6106115 2024-02-28 23:44:17.315 2024-02-28 23:44:17.315 1000 FEE 442800 5519 6106116 2024-02-28 23:44:17.315 2024-02-28 23:44:17.315 9000 TIP 442800 20704 6106133 2024-02-28 23:46:50.373 2024-02-28 23:46:50.373 100 FEE 442751 20514 6106134 2024-02-28 23:46:50.373 2024-02-28 23:46:50.373 900 TIP 442751 19581 6106153 2024-02-28 23:48:28.795 2024-02-28 23:48:28.795 2100 FEE 442710 21599 6106154 2024-02-28 23:48:28.795 2024-02-28 23:48:28.795 18900 TIP 442710 5661 6106186 2024-02-28 23:52:29.986 2024-02-28 23:52:29.986 100 FEE 442896 18675 6106187 2024-02-28 23:52:29.986 2024-02-28 23:52:29.986 900 TIP 442896 675 6106209 2024-02-28 23:54:26.591 2024-02-28 23:54:26.591 100 FEE 442876 1465 6106210 2024-02-28 23:54:26.591 2024-02-28 23:54:26.591 900 TIP 442876 13143 6106233 2024-02-28 23:55:03.853 2024-02-28 23:55:03.853 2100 FEE 442084 21444 6106234 2024-02-28 23:55:03.853 2024-02-28 23:55:03.853 18900 TIP 442084 17708 6106271 2024-02-28 23:56:03.339 2024-02-28 23:56:03.339 2100 FEE 442109 2529 6106272 2024-02-28 23:56:03.339 2024-02-28 23:56:03.339 18900 TIP 442109 2056 6106299 2024-02-28 23:56:30.595 2024-02-28 23:56:30.595 2100 FEE 442258 19332 6106300 2024-02-28 23:56:30.595 2024-02-28 23:56:30.595 18900 TIP 442258 10102 6106307 2024-02-28 23:56:34.279 2024-02-28 23:56:34.279 2100 FEE 442279 14370 6106308 2024-02-28 23:56:34.279 2024-02-28 23:56:34.279 18900 TIP 442279 8173 6106321 2024-02-28 23:56:43.811 2024-02-28 23:56:43.811 1700 FEE 442901 1471 6106322 2024-02-28 23:56:43.811 2024-02-28 23:56:43.811 15300 TIP 442901 6268 6106325 2024-02-28 23:56:44.127 2024-02-28 23:56:44.127 2100 FEE 442260 19465 6106326 2024-02-28 23:56:44.127 2024-02-28 23:56:44.127 18900 TIP 442260 18265 6106331 2024-02-28 23:56:46.259 2024-02-28 23:56:46.259 2100 FEE 442149 21523 6106332 2024-02-28 23:56:46.259 2024-02-28 23:56:46.259 18900 TIP 442149 20614 6106335 2024-02-28 23:56:58.339 2024-02-28 23:56:58.339 2100 FEE 442303 680 6106336 2024-02-28 23:56:58.339 2024-02-28 23:56:58.339 18900 TIP 442303 2077 6106366 2024-02-28 23:57:44.244 2024-02-28 23:57:44.244 2100 FEE 442544 11698 6106367 2024-02-28 23:57:44.244 2024-02-28 23:57:44.244 18900 TIP 442544 5449 6106397 2024-02-28 23:58:13.403 2024-02-28 23:58:13.403 1000 FEE 442903 12736 6106406 2024-02-28 23:58:19.53 2024-02-28 23:58:19.53 2100 FEE 442449 19576 6106407 2024-02-28 23:58:19.53 2024-02-28 23:58:19.53 18900 TIP 442449 20452 6106432 2024-02-28 23:58:24.244 2024-02-28 23:58:24.244 2100 FEE 442449 7675 6106433 2024-02-28 23:58:24.244 2024-02-28 23:58:24.244 18900 TIP 442449 14271 6106465 2024-02-29 00:00:01.502 2024-02-29 00:00:01.502 2100 FEE 442543 10849 6106466 2024-02-29 00:00:01.502 2024-02-29 00:00:01.502 18900 TIP 442543 11996 6106487 2024-02-29 00:01:03.43 2024-02-29 00:01:03.43 1000 FEE 442332 19198 6106488 2024-02-29 00:01:03.43 2024-02-29 00:01:03.43 9000 TIP 442332 19286 6106491 2024-02-29 00:01:09.162 2024-02-29 00:01:09.162 1000 FEE 442539 15088 6106492 2024-02-29 00:01:09.162 2024-02-29 00:01:09.162 9000 TIP 442539 17217 6106507 2024-02-29 00:04:01.232 2024-02-29 00:04:01.232 1000 FEE 442906 20597 6106070 2024-02-28 23:40:02.909 2024-02-28 23:40:02.909 3500 FEE 442722 10398 6106071 2024-02-28 23:40:02.909 2024-02-28 23:40:02.909 31500 TIP 442722 9426 6106074 2024-02-28 23:40:22.404 2024-02-28 23:40:22.404 1000 FEE 442883 8506 6106081 2024-02-28 23:41:43.007 2024-02-28 23:41:43.007 1000 FEE 442627 19259 6106082 2024-02-28 23:41:43.007 2024-02-28 23:41:43.007 9000 TIP 442627 1673 6106097 2024-02-28 23:43:13.232 2024-02-28 23:43:13.232 1000 FEE 442887 2329 6106100 2024-02-28 23:43:55.807 2024-02-28 23:43:55.807 1000 FEE 442800 19905 6106101 2024-02-28 23:43:55.807 2024-02-28 23:43:55.807 9000 TIP 442800 16301 6106106 2024-02-28 23:43:56.309 2024-02-28 23:43:56.309 1000 FEE 442800 8713 6106107 2024-02-28 23:43:56.309 2024-02-28 23:43:56.309 9000 TIP 442800 20264 6106147 2024-02-28 23:47:43.589 2024-02-28 23:47:43.589 2100 FEE 442848 15491 6106148 2024-02-28 23:47:43.589 2024-02-28 23:47:43.589 18900 TIP 442848 9078 6106170 2024-02-28 23:50:04.615 2024-02-28 23:50:04.615 1000 POLL 442751 2502 6106172 2024-02-28 23:50:35.321 2024-02-28 23:50:35.321 10000 FEE 442896 4118 6106176 2024-02-28 23:51:05.148 2024-02-28 23:51:05.148 1000 POLL 442751 894 6106183 2024-02-28 23:52:09.581 2024-02-28 23:52:09.581 1000 FEE 442898 679 6106200 2024-02-28 23:53:37.714 2024-02-28 23:53:37.714 100 FEE 442781 18608 6106201 2024-02-28 23:53:37.714 2024-02-28 23:53:37.714 900 TIP 442781 9906 6106204 2024-02-28 23:53:54.521 2024-02-28 23:53:54.521 100 FEE 442820 21334 6106205 2024-02-28 23:53:54.521 2024-02-28 23:53:54.521 900 TIP 442820 963 6106224 2024-02-28 23:55:02.529 2024-02-28 23:55:02.529 2100 FEE 442084 9353 6106225 2024-02-28 23:55:02.529 2024-02-28 23:55:02.529 18900 TIP 442084 21555 6106245 2024-02-28 23:55:20.96 2024-02-28 23:55:20.96 10000 FEE 442800 11314 6106246 2024-02-28 23:55:20.96 2024-02-28 23:55:20.96 90000 TIP 442800 1802 6106249 2024-02-28 23:55:31.006 2024-02-28 23:55:31.006 2100 FEE 442785 16879 6106250 2024-02-28 23:55:31.006 2024-02-28 23:55:31.006 18900 TIP 442785 19583 6106264 2024-02-28 23:55:50.717 2024-02-28 23:55:50.717 2100 FEE 442096 7682 6106265 2024-02-28 23:55:50.717 2024-02-28 23:55:50.717 18900 TIP 442096 18956 6106275 2024-02-28 23:56:04.576 2024-02-28 23:56:04.576 2100 FEE 442109 20108 6106276 2024-02-28 23:56:04.576 2024-02-28 23:56:04.576 18900 TIP 442109 716 6106283 2024-02-28 23:56:13.318 2024-02-28 23:56:13.318 2100 FEE 442243 3504 6106284 2024-02-28 23:56:13.318 2024-02-28 23:56:13.318 18900 TIP 442243 775 6106289 2024-02-28 23:56:15.494 2024-02-28 23:56:15.494 2100 FEE 442252 21591 6106290 2024-02-28 23:56:15.494 2024-02-28 23:56:15.494 18900 TIP 442252 16097 6106293 2024-02-28 23:56:20.168 2024-02-28 23:56:20.168 2100 FEE 442252 17522 6106294 2024-02-28 23:56:20.168 2024-02-28 23:56:20.168 18900 TIP 442252 854 6106305 2024-02-28 23:56:33.983 2024-02-28 23:56:33.983 2100 FEE 442279 722 6106306 2024-02-28 23:56:33.983 2024-02-28 23:56:33.983 18900 TIP 442279 18219 6106323 2024-02-28 23:56:43.995 2024-02-28 23:56:43.995 1700 FEE 442901 7587 6106324 2024-02-28 23:56:43.995 2024-02-28 23:56:43.995 15300 TIP 442901 20340 6106352 2024-02-28 23:57:29.523 2024-02-28 23:57:29.523 2100 FEE 442557 18529 6106353 2024-02-28 23:57:29.523 2024-02-28 23:57:29.523 18900 TIP 442557 18673 6106368 2024-02-28 23:57:44.443 2024-02-28 23:57:44.443 2100 FEE 442544 11698 6106369 2024-02-28 23:57:44.443 2024-02-28 23:57:44.443 18900 TIP 442544 20179 6106372 2024-02-28 23:57:48.224 2024-02-28 23:57:48.224 2100 FEE 442809 1173 6106373 2024-02-28 23:57:48.224 2024-02-28 23:57:48.224 18900 TIP 442809 11164 6106386 2024-02-28 23:57:59.302 2024-02-28 23:57:59.302 2100 FEE 442146 20680 6106387 2024-02-28 23:57:59.302 2024-02-28 23:57:59.302 18900 TIP 442146 14688 6106412 2024-02-28 23:58:20.237 2024-02-28 23:58:20.237 2100 FEE 442449 1673 6106413 2024-02-28 23:58:20.237 2024-02-28 23:58:20.237 18900 TIP 442449 21356 6106416 2024-02-28 23:58:20.634 2024-02-28 23:58:20.634 2100 FEE 442449 3506 6106417 2024-02-28 23:58:20.634 2024-02-28 23:58:20.634 18900 TIP 442449 18517 6106449 2024-02-28 23:59:42.072 2024-02-28 23:59:42.072 2100 FEE 442543 16769 6106450 2024-02-28 23:59:42.072 2024-02-28 23:59:42.072 18900 TIP 442543 19796 6106455 2024-02-28 23:59:43.104 2024-02-28 23:59:43.104 2100 FEE 442543 20481 6106456 2024-02-28 23:59:43.104 2024-02-28 23:59:43.104 18900 TIP 442543 3717 6106459 2024-02-28 23:59:50.943 2024-02-28 23:59:50.943 2100 FEE 442798 5694 6106460 2024-02-28 23:59:50.943 2024-02-28 23:59:50.943 18900 TIP 442798 17519 6106493 2024-02-29 00:01:33.535 2024-02-29 00:01:33.535 1000 FEE 442342 15200 6106494 2024-02-29 00:01:33.535 2024-02-29 00:01:33.535 9000 TIP 442342 4314 6106527 2024-02-29 00:06:25.894 2024-02-29 00:06:25.894 3000 FEE 442904 9352 6106528 2024-02-29 00:06:25.894 2024-02-29 00:06:25.894 27000 TIP 442904 15161 6106566 2024-02-29 00:08:02.06 2024-02-29 00:08:02.06 100 FEE 442904 3439 6106567 2024-02-29 00:08:02.06 2024-02-29 00:08:02.06 900 TIP 442904 16348 6106590 2024-02-29 00:09:24.77 2024-02-29 00:09:24.77 100 FEE 442502 12291 6106591 2024-02-29 00:09:24.77 2024-02-29 00:09:24.77 900 TIP 442502 20901 6106604 2024-02-29 00:09:36.642 2024-02-29 00:09:36.642 900 FEE 442499 18518 6106605 2024-02-29 00:09:36.642 2024-02-29 00:09:36.642 8100 TIP 442499 4313 6106620 2024-02-29 00:09:54.933 2024-02-29 00:09:54.933 900 FEE 442330 11164 6106621 2024-02-29 00:09:54.933 2024-02-29 00:09:54.933 8100 TIP 442330 8080 6106628 2024-02-29 00:10:02.659 2024-02-29 00:10:02.659 6900 FEE 442893 2151 6106629 2024-02-29 00:10:02.659 2024-02-29 00:10:02.659 62100 TIP 442893 19924 6106635 2024-02-29 00:10:46.83 2024-02-29 00:10:46.83 10000 FEE 442912 18533 6106647 2024-02-29 00:11:23.66 2024-02-29 00:11:23.66 1700 FEE 442907 18525 6106648 2024-02-29 00:11:23.66 2024-02-29 00:11:23.66 15300 TIP 442907 713 6106666 2024-02-29 00:12:20.409 2024-02-29 00:12:20.409 6900 FEE 442904 21430 6106667 2024-02-29 00:12:20.409 2024-02-29 00:12:20.409 62100 TIP 442904 21371 6106670 2024-02-29 00:12:20.721 2024-02-29 00:12:20.721 6900 FEE 442904 3456 6106671 2024-02-29 00:12:20.721 2024-02-29 00:12:20.721 62100 TIP 442904 9026 6106680 2024-02-29 00:12:22.061 2024-02-29 00:12:22.061 6900 FEE 442904 1515 6106681 2024-02-29 00:12:22.061 2024-02-29 00:12:22.061 62100 TIP 442904 974 6106708 2024-02-29 00:14:36.061 2024-02-29 00:14:36.061 300 FEE 441517 2963 6106709 2024-02-29 00:14:36.061 2024-02-29 00:14:36.061 2700 TIP 441517 16988 6106723 2024-02-29 00:15:18.016 2024-02-29 00:15:18.016 15400 FEE 442904 20084 6106724 2024-02-29 00:15:18.016 2024-02-29 00:15:18.016 138600 TIP 442904 2431 6106725 2024-02-29 00:15:18.116 2024-02-29 00:15:18.116 7700 FEE 442904 19459 6106726 2024-02-29 00:15:18.116 2024-02-29 00:15:18.116 69300 TIP 442904 974 6106731 2024-02-29 00:15:18.535 2024-02-29 00:15:18.535 7700 FEE 442904 6749 6106732 2024-02-29 00:15:18.535 2024-02-29 00:15:18.535 69300 TIP 442904 20102 6106735 2024-02-29 00:15:18.726 2024-02-29 00:15:18.726 7700 FEE 442904 9982 6106095 2024-02-28 23:42:38.179 2024-02-28 23:42:38.179 1000 POLL 442163 1320 6106102 2024-02-28 23:43:55.935 2024-02-28 23:43:55.935 1000 FEE 442800 1751 6106103 2024-02-28 23:43:55.935 2024-02-28 23:43:55.935 9000 TIP 442800 17526 6106104 2024-02-28 23:43:56.073 2024-02-28 23:43:56.073 1000 FEE 442800 987 6106105 2024-02-28 23:43:56.073 2024-02-28 23:43:56.073 9000 TIP 442800 19527 6106117 2024-02-28 23:44:18.225 2024-02-28 23:44:18.225 1000 FEE 442800 16456 6106118 2024-02-28 23:44:18.225 2024-02-28 23:44:18.225 9000 TIP 442800 2710 6106121 2024-02-28 23:44:20.065 2024-02-28 23:44:20.065 1000 FEE 442800 19907 6106122 2024-02-28 23:44:20.065 2024-02-28 23:44:20.065 9000 TIP 442800 14267 6106123 2024-02-28 23:44:20.926 2024-02-28 23:44:20.926 1000 FEE 442800 14168 6106124 2024-02-28 23:44:20.926 2024-02-28 23:44:20.926 9000 TIP 442800 4173 6106128 2024-02-28 23:45:55.204 2024-02-28 23:45:55.204 1000 FEE 442889 9843 6106159 2024-02-28 23:48:59.584 2024-02-28 23:48:59.584 2100 FEE 442757 21386 6106160 2024-02-28 23:48:59.584 2024-02-28 23:48:59.584 18900 TIP 442757 5661 6106173 2024-02-28 23:50:56.55 2024-02-28 23:50:56.55 2100 FEE 442890 13174 6106174 2024-02-28 23:50:56.55 2024-02-28 23:50:56.55 18900 TIP 442890 679 6106178 2024-02-28 23:51:15.891 2024-02-28 23:51:15.891 2100 FEE 442628 9517 6106179 2024-02-28 23:51:15.891 2024-02-28 23:51:15.891 18900 TIP 442628 21148 6106188 2024-02-28 23:52:38.92 2024-02-28 23:52:38.92 100 FEE 442894 18412 6106189 2024-02-28 23:52:38.92 2024-02-28 23:52:38.92 900 TIP 442894 16704 6106195 2024-02-28 23:52:59.439 2024-02-28 23:52:59.439 21000 FEE 442859 21393 6106196 2024-02-28 23:52:59.439 2024-02-28 23:52:59.439 189000 TIP 442859 16876 6106202 2024-02-28 23:53:39.472 2024-02-28 23:53:39.472 1000 FEE 442899 654 6106215 2024-02-28 23:54:38.554 2024-02-28 23:54:38.554 1000 FEE 442901 1652 6106216 2024-02-28 23:54:47.016 2024-02-28 23:54:47.016 100 FEE 442870 6149 6106217 2024-02-28 23:54:47.016 2024-02-28 23:54:47.016 900 TIP 442870 20546 6106222 2024-02-28 23:54:50.018 2024-02-28 23:54:50.018 900 FEE 442893 1632 6106223 2024-02-28 23:54:50.018 2024-02-28 23:54:50.018 8100 TIP 442893 1426 6106247 2024-02-28 23:55:30.81 2024-02-28 23:55:30.81 2100 FEE 442785 694 6106248 2024-02-28 23:55:30.81 2024-02-28 23:55:30.81 18900 TIP 442785 12139 6106267 2024-02-28 23:56:02.795 2024-02-28 23:56:02.795 2100 FEE 442109 12721 6106268 2024-02-28 23:56:02.795 2024-02-28 23:56:02.795 18900 TIP 442109 667 6106309 2024-02-28 23:56:34.875 2024-02-28 23:56:34.875 2100 FEE 442279 2431 6106310 2024-02-28 23:56:34.875 2024-02-28 23:56:34.875 18900 TIP 442279 18426 6106315 2024-02-28 23:56:42.753 2024-02-28 23:56:42.753 2100 FEE 442149 19153 6106316 2024-02-28 23:56:42.753 2024-02-28 23:56:42.753 18900 TIP 442149 1130 6106337 2024-02-28 23:56:58.491 2024-02-28 23:56:58.491 2100 FEE 442303 9611 6106338 2024-02-28 23:56:58.491 2024-02-28 23:56:58.491 18900 TIP 442303 6653 6106354 2024-02-28 23:57:33.267 2024-02-28 23:57:33.267 1000 FEE 442758 720 6106355 2024-02-28 23:57:33.267 2024-02-28 23:57:33.267 9000 TIP 442758 13763 6106356 2024-02-28 23:57:35.902 2024-02-28 23:57:35.902 1000 FEE 442902 11609 6106370 2024-02-28 23:57:47.775 2024-02-28 23:57:47.775 2100 FEE 442809 18372 6106371 2024-02-28 23:57:47.775 2024-02-28 23:57:47.775 18900 TIP 442809 19267 6106374 2024-02-28 23:57:58.179 2024-02-28 23:57:58.179 2100 FEE 442146 16598 6106375 2024-02-28 23:57:58.179 2024-02-28 23:57:58.179 18900 TIP 442146 5578 6106398 2024-02-28 23:58:19.006 2024-02-28 23:58:19.006 2100 FEE 442449 21214 6106399 2024-02-28 23:58:19.006 2024-02-28 23:58:19.006 18900 TIP 442449 21541 6106447 2024-02-28 23:59:41.898 2024-02-28 23:59:41.898 2100 FEE 442543 5746 6106448 2024-02-28 23:59:41.898 2024-02-28 23:59:41.898 18900 TIP 442543 15833 6106453 2024-02-28 23:59:42.559 2024-02-28 23:59:42.559 2100 FEE 442543 6555 6106454 2024-02-28 23:59:42.559 2024-02-28 23:59:42.559 18900 TIP 442543 766 6106463 2024-02-28 23:59:52.14 2024-02-28 23:59:52.14 2100 FEE 442798 2774 6106464 2024-02-28 23:59:52.14 2024-02-28 23:59:52.14 18900 TIP 442798 21334 6106484 2024-02-29 00:00:36.643 2024-02-29 00:00:36.643 2100 FEE 442023 21060 6106485 2024-02-29 00:00:36.643 2024-02-29 00:00:36.643 18900 TIP 442023 21164 6106556 2024-02-29 00:07:44.95 2024-02-29 00:07:44.95 2100 FEE 442708 1245 6106557 2024-02-29 00:07:44.95 2024-02-29 00:07:44.95 18900 TIP 442708 10728 6106560 2024-02-29 00:07:45.141 2024-02-29 00:07:45.141 2100 FEE 442708 5578 6106561 2024-02-29 00:07:45.141 2024-02-29 00:07:45.141 18900 TIP 442708 15119 6106573 2024-02-29 00:08:52.481 2024-02-29 00:08:52.481 100 FEE 442551 15200 6106574 2024-02-29 00:08:52.481 2024-02-29 00:08:52.481 900 TIP 442551 6471 6106582 2024-02-29 00:09:08.078 2024-02-29 00:09:08.078 100 FEE 442631 16788 6106583 2024-02-29 00:09:08.078 2024-02-29 00:09:08.078 900 TIP 442631 19132 6106592 2024-02-29 00:09:24.941 2024-02-29 00:09:24.941 900 FEE 442502 18368 6106593 2024-02-29 00:09:24.941 2024-02-29 00:09:24.941 8100 TIP 442502 9921 6106610 2024-02-29 00:09:39.127 2024-02-29 00:09:39.127 900 FEE 442454 712 6106611 2024-02-29 00:09:39.127 2024-02-29 00:09:39.127 8100 TIP 442454 19292 6106639 2024-02-29 00:11:08.527 2024-02-29 00:11:08.527 3300 FEE 442894 1647 6106640 2024-02-29 00:11:08.527 2024-02-29 00:11:08.527 29700 TIP 442894 11164 6106672 2024-02-29 00:12:21.444 2024-02-29 00:12:21.444 6900 FEE 442904 703 6106673 2024-02-29 00:12:21.444 2024-02-29 00:12:21.444 62100 TIP 442904 5112 6106683 2024-02-29 00:13:14.11 2024-02-29 00:13:14.11 1000 FEE 442913 19535 6106729 2024-02-29 00:15:18.352 2024-02-29 00:15:18.352 7700 FEE 442904 17690 6106730 2024-02-29 00:15:18.352 2024-02-29 00:15:18.352 69300 TIP 442904 12245 6106733 2024-02-29 00:15:18.607 2024-02-29 00:15:18.607 7700 FEE 442904 21275 6106734 2024-02-29 00:15:18.607 2024-02-29 00:15:18.607 69300 TIP 442904 14818 6106747 2024-02-29 00:15:19.507 2024-02-29 00:15:19.507 7700 FEE 442904 18680 6106748 2024-02-29 00:15:19.507 2024-02-29 00:15:19.507 69300 TIP 442904 17011 6106755 2024-02-29 00:15:21.606 2024-02-29 00:15:21.606 2100 FEE 442913 2829 6106756 2024-02-29 00:15:21.606 2024-02-29 00:15:21.606 18900 TIP 442913 11165 6106806 2024-02-29 00:19:06.327 2024-02-29 00:19:06.327 2100 FEE 442820 4538 6106807 2024-02-29 00:19:06.327 2024-02-29 00:19:06.327 18900 TIP 442820 11523 6106816 2024-02-29 00:19:35.37 2024-02-29 00:19:35.37 1000 FEE 442769 14663 6106817 2024-02-29 00:19:35.37 2024-02-29 00:19:35.37 9000 TIP 442769 20106 6106820 2024-02-29 00:19:44.39 2024-02-29 00:19:44.39 2000 FEE 442003 10094 6106821 2024-02-29 00:19:44.39 2024-02-29 00:19:44.39 18000 TIP 442003 16754 6106832 2024-02-29 00:20:01.276 2024-02-29 00:20:01.276 2100 FEE 442399 17331 6106833 2024-02-29 00:20:01.276 2024-02-29 00:20:01.276 18900 TIP 442399 5527 6106847 2024-02-29 00:21:18.932 2024-02-29 00:21:18.932 1000 FEE 442820 21119 6106848 2024-02-29 00:21:18.932 2024-02-29 00:21:18.932 9000 TIP 442820 9482 6106912 2024-02-29 00:23:02.89 2024-02-29 00:23:02.89 1000 FEE 442785 2748 6106913 2024-02-29 00:23:02.89 2024-02-29 00:23:02.89 9000 TIP 442785 17291 6107006 2024-02-29 00:28:40.584 2024-02-29 00:28:40.584 5700 FEE 442917 19147 6107007 2024-02-29 00:28:40.584 2024-02-29 00:28:40.584 51300 TIP 442917 634 6107036 2024-02-29 00:30:49.509 2024-02-29 00:30:49.509 2100 FEE 442023 18472 6107037 2024-02-29 00:30:49.509 2024-02-29 00:30:49.509 18900 TIP 442023 19601 6107044 2024-02-29 00:32:19.915 2024-02-29 00:32:19.915 2100 FEE 442904 19910 6107045 2024-02-29 00:32:19.915 2024-02-29 00:32:19.915 18900 TIP 442904 986 6107052 2024-02-29 00:32:21.612 2024-02-29 00:32:21.612 2100 FEE 442904 12265 6106257 2024-02-28 23:55:34.71 2024-02-28 23:55:34.71 18900 TIP 442785 19996 6106313 2024-02-28 23:56:42.314 2024-02-28 23:56:42.314 2100 FEE 442149 20891 6106314 2024-02-28 23:56:42.314 2024-02-28 23:56:42.314 18900 TIP 442149 16193 6106319 2024-02-28 23:56:43.633 2024-02-28 23:56:43.633 1700 FEE 442901 7376 6106320 2024-02-28 23:56:43.633 2024-02-28 23:56:43.633 15300 TIP 442901 19663 6106339 2024-02-28 23:57:02.55 2024-02-28 23:57:02.55 2100 FEE 442345 5173 6106340 2024-02-28 23:57:02.55 2024-02-28 23:57:02.55 18900 TIP 442345 12356 6106357 2024-02-28 23:57:38.088 2024-02-28 23:57:38.088 1000 FEE 442590 17568 6106358 2024-02-28 23:57:38.088 2024-02-28 23:57:38.088 9000 TIP 442590 18941 6106362 2024-02-28 23:57:43.921 2024-02-28 23:57:43.921 1000 FEE 442786 7097 6106363 2024-02-28 23:57:43.921 2024-02-28 23:57:43.921 9000 TIP 442786 13547 6106364 2024-02-28 23:57:44.109 2024-02-28 23:57:44.109 2100 FEE 442544 9200 6106365 2024-02-28 23:57:44.109 2024-02-28 23:57:44.109 18900 TIP 442544 13055 6106380 2024-02-28 23:57:58.714 2024-02-28 23:57:58.714 2100 FEE 442146 1620 6106381 2024-02-28 23:57:58.714 2024-02-28 23:57:58.714 18900 TIP 442146 5175 6106388 2024-02-28 23:57:59.462 2024-02-28 23:57:59.462 2100 FEE 442146 2042 6106389 2024-02-28 23:57:59.462 2024-02-28 23:57:59.462 18900 TIP 442146 9758 6106420 2024-02-28 23:58:23.138 2024-02-28 23:58:23.138 2100 FEE 442449 18675 6106421 2024-02-28 23:58:23.138 2024-02-28 23:58:23.138 18900 TIP 442449 20006 6106424 2024-02-28 23:58:23.448 2024-02-28 23:58:23.448 2100 FEE 442449 951 6106425 2024-02-28 23:58:23.448 2024-02-28 23:58:23.448 18900 TIP 442449 5444 6106430 2024-02-28 23:58:24.078 2024-02-28 23:58:24.078 2100 FEE 442449 4570 6106431 2024-02-28 23:58:24.078 2024-02-28 23:58:24.078 18900 TIP 442449 8472 6106442 2024-02-28 23:58:30.298 2024-02-28 23:58:30.298 2100 FEE 442479 15147 6106443 2024-02-28 23:58:30.298 2024-02-28 23:58:30.298 18900 TIP 442479 7913 6106461 2024-02-28 23:59:51.375 2024-02-28 23:59:51.375 2100 FEE 442798 18528 6106462 2024-02-28 23:59:51.375 2024-02-28 23:59:51.375 18900 TIP 442798 782 6106468 2024-02-29 00:00:03.238 2024-02-29 00:00:03.238 1000 FEE 442566 2596 6106469 2024-02-29 00:00:03.238 2024-02-29 00:00:03.238 9000 TIP 442566 20156 6106474 2024-02-29 00:00:33.084 2024-02-29 00:00:33.084 1000 FEE 442325 21254 6106475 2024-02-29 00:00:33.084 2024-02-29 00:00:33.084 9000 TIP 442325 20162 6106495 2024-02-29 00:01:43.307 2024-02-29 00:01:43.307 1000 FEE 442693 12097 6106496 2024-02-29 00:01:43.307 2024-02-29 00:01:43.307 9000 TIP 442693 10586 6106498 2024-02-29 00:01:58.931 2024-02-29 00:01:58.931 1000 FEE 442826 20433 6106499 2024-02-29 00:01:58.931 2024-02-29 00:01:58.931 9000 TIP 442826 16289 6106513 2024-02-29 00:04:50.958 2024-02-29 00:04:50.958 1000 FEE 442824 21416 6106514 2024-02-29 00:04:50.958 2024-02-29 00:04:50.958 9000 TIP 442824 4502 6106515 2024-02-29 00:04:58.193 2024-02-29 00:04:58.193 1000 FEE 442828 19282 6106516 2024-02-29 00:04:58.193 2024-02-29 00:04:58.193 9000 TIP 442828 16633 6106521 2024-02-29 00:05:57.942 2024-02-29 00:05:57.942 1000 FEE 442907 1209 6106550 2024-02-29 00:07:36.368 2024-02-29 00:07:36.368 2100 FEE 442704 1515 6106551 2024-02-29 00:07:36.368 2024-02-29 00:07:36.368 18900 TIP 442704 16809 6106564 2024-02-29 00:07:49.735 2024-02-29 00:07:49.735 2100 FEE 442708 787 6106565 2024-02-29 00:07:49.735 2024-02-29 00:07:49.735 18900 TIP 442708 15588 6106575 2024-02-29 00:08:55.143 2024-02-29 00:08:55.143 1000 FEE 442910 4076 6106578 2024-02-29 00:09:05.203 2024-02-29 00:09:05.203 100 FEE 442812 18817 6106579 2024-02-29 00:09:05.203 2024-02-29 00:09:05.203 900 TIP 442812 20817 6106586 2024-02-29 00:09:14.246 2024-02-29 00:09:14.246 100 FEE 442490 21571 6106587 2024-02-29 00:09:14.246 2024-02-29 00:09:14.246 900 TIP 442490 19843 6106588 2024-02-29 00:09:14.422 2024-02-29 00:09:14.422 900 FEE 442490 750 6106589 2024-02-29 00:09:14.422 2024-02-29 00:09:14.422 8100 TIP 442490 18625 6106594 2024-02-29 00:09:25.948 2024-02-29 00:09:25.948 100 FEE 442510 9107 6106595 2024-02-29 00:09:25.948 2024-02-29 00:09:25.948 900 TIP 442510 17568 6106645 2024-02-29 00:11:23.448 2024-02-29 00:11:23.448 1700 FEE 442907 11073 6106646 2024-02-29 00:11:23.448 2024-02-29 00:11:23.448 15300 TIP 442907 12946 6106658 2024-02-29 00:12:19.755 2024-02-29 00:12:19.755 6900 FEE 442904 21480 6106659 2024-02-29 00:12:19.755 2024-02-29 00:12:19.755 62100 TIP 442904 20826 6106660 2024-02-29 00:12:19.929 2024-02-29 00:12:19.929 6900 FEE 442904 1733 6106661 2024-02-29 00:12:19.929 2024-02-29 00:12:19.929 62100 TIP 442904 20143 6106662 2024-02-29 00:12:20.088 2024-02-29 00:12:20.088 6900 FEE 442904 622 6106663 2024-02-29 00:12:20.088 2024-02-29 00:12:20.088 62100 TIP 442904 18528 6106668 2024-02-29 00:12:20.582 2024-02-29 00:12:20.582 6900 FEE 442904 10536 6106669 2024-02-29 00:12:20.582 2024-02-29 00:12:20.582 62100 TIP 442904 21379 6106678 2024-02-29 00:12:21.919 2024-02-29 00:12:21.919 6900 FEE 442904 21296 6106679 2024-02-29 00:12:21.919 2024-02-29 00:12:21.919 62100 TIP 442904 17526 6106684 2024-02-29 00:13:24.288 2024-02-29 00:13:24.288 100 FEE 442894 20663 6106685 2024-02-29 00:13:24.288 2024-02-29 00:13:24.288 900 TIP 442894 10981 6106706 2024-02-29 00:14:25.403 2024-02-29 00:14:25.403 700 FEE 441527 3213 6106707 2024-02-29 00:14:25.403 2024-02-29 00:14:25.403 6300 TIP 441527 17800 6106727 2024-02-29 00:15:18.255 2024-02-29 00:15:18.255 7700 FEE 442904 913 6106728 2024-02-29 00:15:18.255 2024-02-29 00:15:18.255 69300 TIP 442904 1237 6106759 2024-02-29 00:15:22.119 2024-02-29 00:15:22.119 2100 FEE 442913 14295 6106760 2024-02-29 00:15:22.119 2024-02-29 00:15:22.119 18900 TIP 442913 2775 6106765 2024-02-29 00:15:24.492 2024-02-29 00:15:24.492 10000 FEE 442467 1039 6106766 2024-02-29 00:15:24.492 2024-02-29 00:15:24.492 90000 TIP 442467 675 6106785 2024-02-29 00:17:17.649 2024-02-29 00:17:17.649 2100 FEE 442796 7827 6106786 2024-02-29 00:17:17.649 2024-02-29 00:17:17.649 18900 TIP 442796 16867 6106793 2024-02-29 00:17:53.15 2024-02-29 00:17:53.15 1000 POLL 442163 20782 6106800 2024-02-29 00:19:04.15 2024-02-29 00:19:04.15 2100 FEE 442876 19375 6106801 2024-02-29 00:19:04.15 2024-02-29 00:19:04.15 18900 TIP 442876 9246 6106812 2024-02-29 00:19:10.077 2024-02-29 00:19:10.077 1000 FEE 442678 6202 6106813 2024-02-29 00:19:10.077 2024-02-29 00:19:10.077 9000 TIP 442678 1468 6106865 2024-02-29 00:21:29.388 2024-02-29 00:21:29.388 7700 FEE 442894 8423 6106866 2024-02-29 00:21:29.388 2024-02-29 00:21:29.388 69300 TIP 442894 18525 6106873 2024-02-29 00:21:38.021 2024-02-29 00:21:38.021 5700 FEE 442904 14472 6106874 2024-02-29 00:21:38.021 2024-02-29 00:21:38.021 51300 TIP 442904 8287 6106887 2024-02-29 00:22:02.733 2024-02-29 00:22:02.733 1000 FEE 442916 18819 6106892 2024-02-29 00:22:14.552 2024-02-29 00:22:14.552 5700 FEE 442896 16347 6106893 2024-02-29 00:22:14.552 2024-02-29 00:22:14.552 51300 TIP 442896 700 6106896 2024-02-29 00:22:16.183 2024-02-29 00:22:16.183 5700 FEE 442912 13931 6106897 2024-02-29 00:22:16.183 2024-02-29 00:22:16.183 51300 TIP 442912 1307 6106916 2024-02-29 00:23:04.398 2024-02-29 00:23:04.398 7700 FEE 442904 21614 6106917 2024-02-29 00:23:04.398 2024-02-29 00:23:04.398 69300 TIP 442904 18772 6106933 2024-02-29 00:24:34.284 2024-02-29 00:24:34.284 1000 FEE 442123 16950 6106934 2024-02-29 00:24:34.284 2024-02-29 00:24:34.284 9000 TIP 442123 21588 6106964 2024-02-29 00:26:04.141 2024-02-29 00:26:04.141 1000 FEE 442781 20301 6106965 2024-02-29 00:26:04.141 2024-02-29 00:26:04.141 9000 TIP 442781 1471 6106970 2024-02-29 00:26:07.036 2024-02-29 00:26:07.036 1000 FEE 442109 9331 6106971 2024-02-29 00:26:07.036 2024-02-29 00:26:07.036 9000 TIP 442109 21416 6106981 2024-02-29 00:26:33.15 2024-02-29 00:26:33.15 6900 FEE 442918 11829 6106982 2024-02-29 00:26:33.15 2024-02-29 00:26:33.15 62100 TIP 442918 726 6107004 2024-02-29 00:27:36.033 2024-02-29 00:27:36.033 1000 POLL 442859 21051 6107046 2024-02-29 00:32:20.125 2024-02-29 00:32:20.125 2100 FEE 442904 618 6107047 2024-02-29 00:32:20.125 2024-02-29 00:32:20.125 18900 TIP 442904 19553 6107062 2024-02-29 00:32:22.603 2024-02-29 00:32:22.603 2100 FEE 442904 15703 6107063 2024-02-29 00:32:22.603 2024-02-29 00:32:22.603 18900 TIP 442904 10944 6106378 2024-02-28 23:57:58.474 2024-02-28 23:57:58.474 2100 FEE 442146 21063 6106379 2024-02-28 23:57:58.474 2024-02-28 23:57:58.474 18900 TIP 442146 17741 6106402 2024-02-28 23:58:19.193 2024-02-28 23:58:19.193 2100 FEE 442449 2361 6106403 2024-02-28 23:58:19.193 2024-02-28 23:58:19.193 18900 TIP 442449 20970 6106414 2024-02-28 23:58:20.436 2024-02-28 23:58:20.436 2100 FEE 442449 13198 6106415 2024-02-28 23:58:20.436 2024-02-28 23:58:20.436 18900 TIP 442449 20301 6106428 2024-02-28 23:58:23.758 2024-02-28 23:58:23.758 2100 FEE 442449 16998 6106429 2024-02-28 23:58:23.758 2024-02-28 23:58:23.758 18900 TIP 442449 21233 6106440 2024-02-28 23:58:30.042 2024-02-28 23:58:30.042 2100 FEE 442479 21398 6106441 2024-02-28 23:58:30.042 2024-02-28 23:58:30.042 18900 TIP 442479 694 6106451 2024-02-28 23:59:42.237 2024-02-28 23:59:42.237 2100 FEE 442543 21424 6106452 2024-02-28 23:59:42.237 2024-02-28 23:59:42.237 18900 TIP 442543 6687 6106504 2024-02-29 00:03:27.77 2024-02-29 00:03:27.77 1000 FEE 442905 16214 6106523 2024-02-29 00:06:06.911 2024-02-29 00:06:06.911 2100 FEE 442724 3686 6106524 2024-02-29 00:06:06.911 2024-02-29 00:06:06.911 18900 TIP 442724 10291 6106525 2024-02-29 00:06:11.515 2024-02-29 00:06:11.515 2100 FEE 442508 9655 6106526 2024-02-29 00:06:11.515 2024-02-29 00:06:11.515 18900 TIP 442508 1135 6106533 2024-02-29 00:07:14.227 2024-02-29 00:07:14.227 10000 FEE 442908 928 6106534 2024-02-29 00:07:14.227 2024-02-29 00:07:14.227 90000 TIP 442908 2203 6106535 2024-02-29 00:07:18.289 2024-02-29 00:07:18.289 2100 FEE 442677 1090 6106536 2024-02-29 00:07:18.289 2024-02-29 00:07:18.289 18900 TIP 442677 17838 6106576 2024-02-29 00:09:00.545 2024-02-29 00:09:00.545 1000 FEE 442911 15588 6106602 2024-02-29 00:09:36.476 2024-02-29 00:09:36.476 100 FEE 442499 623 6106603 2024-02-29 00:09:36.476 2024-02-29 00:09:36.476 900 TIP 442499 20225 6106612 2024-02-29 00:09:43.719 2024-02-29 00:09:43.719 2100 FEE 442508 20182 6106613 2024-02-29 00:09:43.719 2024-02-29 00:09:43.719 18900 TIP 442508 16536 6106653 2024-02-29 00:11:56.272 2024-02-29 00:11:56.272 1700 FEE 442906 18180 6106654 2024-02-29 00:11:56.272 2024-02-29 00:11:56.272 15300 TIP 442906 20452 6106674 2024-02-29 00:12:21.591 2024-02-29 00:12:21.591 6900 FEE 442904 1814 6106675 2024-02-29 00:12:21.591 2024-02-29 00:12:21.591 62100 TIP 442904 5590 6106689 2024-02-29 00:13:49.676 2024-02-29 00:13:49.676 1700 FEE 441724 2749 6106690 2024-02-29 00:13:49.676 2024-02-29 00:13:49.676 15300 TIP 441724 20603 6106717 2024-02-29 00:15:17.019 2024-02-29 00:15:17.019 7700 FEE 442904 18601 6106718 2024-02-29 00:15:17.019 2024-02-29 00:15:17.019 69300 TIP 442904 21104 6106751 2024-02-29 00:15:20.301 2024-02-29 00:15:20.301 7700 FEE 442904 4345 6106752 2024-02-29 00:15:20.301 2024-02-29 00:15:20.301 69300 TIP 442904 2749 6106767 2024-02-29 00:15:29.414 2024-02-29 00:15:29.414 10000 FEE 442432 5520 6106768 2024-02-29 00:15:29.414 2024-02-29 00:15:29.414 90000 TIP 442432 1658 6106774 2024-02-29 00:16:38.995 2024-02-29 00:16:38.995 3100 FEE 442710 18837 6106775 2024-02-29 00:16:38.995 2024-02-29 00:16:38.995 27900 TIP 442710 21320 6106798 2024-02-29 00:19:03.906 2024-02-29 00:19:03.906 2100 FEE 442876 20744 6106799 2024-02-29 00:19:03.906 2024-02-29 00:19:03.906 18900 TIP 442876 17316 6106804 2024-02-29 00:19:04.448 2024-02-29 00:19:04.448 2100 FEE 442876 18387 6106805 2024-02-29 00:19:04.448 2024-02-29 00:19:04.448 18900 TIP 442876 18270 6106844 2024-02-29 00:20:58.951 2024-02-29 00:20:58.951 1000 FEE 442904 683 6106845 2024-02-29 00:20:58.951 2024-02-29 00:20:58.951 9000 TIP 442904 21334 6106851 2024-02-29 00:21:23.527 2024-02-29 00:21:23.527 7700 FEE 442904 8544 6106852 2024-02-29 00:21:23.527 2024-02-29 00:21:23.527 69300 TIP 442904 21228 6106861 2024-02-29 00:21:27.042 2024-02-29 00:21:27.042 1000 FEE 442627 15577 6106862 2024-02-29 00:21:27.042 2024-02-29 00:21:27.042 9000 TIP 442627 5522 6106867 2024-02-29 00:21:29.758 2024-02-29 00:21:29.758 7700 FEE 442894 16966 6106868 2024-02-29 00:21:29.758 2024-02-29 00:21:29.758 69300 TIP 442894 21374 6106898 2024-02-29 00:22:24.692 2024-02-29 00:22:24.692 100 FEE 442912 20152 6106899 2024-02-29 00:22:24.692 2024-02-29 00:22:24.692 900 TIP 442912 807 6106907 2024-02-29 00:22:55.304 2024-02-29 00:22:55.304 2500 FEE 442848 5809 6106908 2024-02-29 00:22:55.304 2024-02-29 00:22:55.304 22500 TIP 442848 695 6106939 2024-02-29 00:24:58.215 2024-02-29 00:24:58.215 2100 FEE 442920 16485 6106940 2024-02-29 00:24:58.215 2024-02-29 00:24:58.215 18900 TIP 442920 9920 6106945 2024-02-29 00:24:58.634 2024-02-29 00:24:58.634 3300 FEE 442915 2537 6106946 2024-02-29 00:24:58.634 2024-02-29 00:24:58.634 29700 TIP 442915 15271 6106959 2024-02-29 00:25:53.014 2024-02-29 00:25:53.014 1000 FEE 442136 18680 6106960 2024-02-29 00:25:53.014 2024-02-29 00:25:53.014 9000 TIP 442136 20816 6106972 2024-02-29 00:26:09.999 2024-02-29 00:26:09.999 6900 FEE 442918 2329 6106973 2024-02-29 00:26:09.999 2024-02-29 00:26:09.999 62100 TIP 442918 18180 6106974 2024-02-29 00:26:10.117 2024-02-29 00:26:10.117 6900 FEE 442918 21166 6106975 2024-02-29 00:26:10.117 2024-02-29 00:26:10.117 62100 TIP 442918 9078 6106978 2024-02-29 00:26:29.772 2024-02-29 00:26:29.772 1000 FEE 442923 21562 6107000 2024-02-29 00:27:23.024 2024-02-29 00:27:23.024 1000 FEE 442146 15049 6107001 2024-02-29 00:27:23.024 2024-02-29 00:27:23.024 9000 TIP 442146 1549 6107011 2024-02-29 00:29:28.976 2024-02-29 00:29:28.976 1000 FEE 442775 10821 6107012 2024-02-29 00:29:28.976 2024-02-29 00:29:28.976 9000 TIP 442775 9109 6107032 2024-02-29 00:30:40.779 2024-02-29 00:30:40.779 2100 FEE 442023 891 6107033 2024-02-29 00:30:40.779 2024-02-29 00:30:40.779 18900 TIP 442023 17184 6107056 2024-02-29 00:32:21.997 2024-02-29 00:32:21.997 2100 FEE 442904 8326 6107057 2024-02-29 00:32:21.997 2024-02-29 00:32:21.997 18900 TIP 442904 7553 6107071 2024-02-29 00:32:23.479 2024-02-29 00:32:23.479 2100 FEE 442904 20904 6107072 2024-02-29 00:32:23.479 2024-02-29 00:32:23.479 18900 TIP 442904 994 6107075 2024-02-29 00:32:43.242 2024-02-29 00:32:43.242 2100 FEE 442904 21466 6107076 2024-02-29 00:32:43.242 2024-02-29 00:32:43.242 18900 TIP 442904 803 6107087 2024-02-29 00:32:44.215 2024-02-29 00:32:44.215 2100 FEE 442904 2639 6107088 2024-02-29 00:32:44.215 2024-02-29 00:32:44.215 18900 TIP 442904 18830 6107093 2024-02-29 00:32:45.653 2024-02-29 00:32:45.653 2100 FEE 442904 15941 6107094 2024-02-29 00:32:45.653 2024-02-29 00:32:45.653 18900 TIP 442904 16289 6106384 2024-02-28 23:57:59.133 2024-02-28 23:57:59.133 2100 FEE 442146 20681 6106385 2024-02-28 23:57:59.133 2024-02-28 23:57:59.133 18900 TIP 442146 18896 6106390 2024-02-28 23:57:59.672 2024-02-28 23:57:59.672 2100 FEE 442146 19403 6106391 2024-02-28 23:57:59.672 2024-02-28 23:57:59.672 18900 TIP 442146 5387 6106394 2024-02-28 23:58:01.156 2024-02-28 23:58:01.156 2100 FEE 442146 687 6106395 2024-02-28 23:58:01.156 2024-02-28 23:58:01.156 18900 TIP 442146 10469 6106410 2024-02-28 23:58:20.056 2024-02-28 23:58:20.056 2100 FEE 442449 17713 6106411 2024-02-28 23:58:20.056 2024-02-28 23:58:20.056 18900 TIP 442449 20599 6106418 2024-02-28 23:58:20.939 2024-02-28 23:58:20.939 2100 FEE 442449 19031 6106419 2024-02-28 23:58:20.939 2024-02-28 23:58:20.939 18900 TIP 442449 6384 6106422 2024-02-28 23:58:23.249 2024-02-28 23:58:23.249 2100 FEE 442449 1064 6106423 2024-02-28 23:58:23.249 2024-02-28 23:58:23.249 18900 TIP 442449 21541 6106426 2024-02-28 23:58:23.584 2024-02-28 23:58:23.584 2100 FEE 442449 12562 6106427 2024-02-28 23:58:23.584 2024-02-28 23:58:23.584 18900 TIP 442449 1620 6106444 2024-02-28 23:58:40.816 2024-02-28 23:58:40.816 69000 FEE 442904 4798 6106445 2024-02-28 23:58:40.816 2024-02-28 23:58:40.816 25000000 BOOST 442904 9906 6106470 2024-02-29 00:00:14.886 2024-02-29 00:00:14.886 1000 FEE 442513 622 6106471 2024-02-29 00:00:14.886 2024-02-29 00:00:14.886 9000 TIP 442513 15063 6106489 2024-02-29 00:01:07.251 2024-02-29 00:01:07.251 1000 FEE 442516 19378 6106490 2024-02-29 00:01:07.251 2024-02-29 00:01:07.251 9000 TIP 442516 683 6106511 2024-02-29 00:04:24.174 2024-02-29 00:04:24.174 1000 FEE 442890 1650 6106512 2024-02-29 00:04:24.174 2024-02-29 00:04:24.174 9000 TIP 442890 18659 6106517 2024-02-29 00:05:00.143 2024-02-29 00:05:00.143 1000 POLL 442751 19976 6106531 2024-02-29 00:07:07.101 2024-02-29 00:07:07.101 2100 FEE 442886 1208 6106532 2024-02-29 00:07:07.101 2024-02-29 00:07:07.101 18900 TIP 442886 17103 6106544 2024-02-29 00:07:32.423 2024-02-29 00:07:32.423 2100 FEE 442704 4322 6106545 2024-02-29 00:07:32.423 2024-02-29 00:07:32.423 18900 TIP 442704 18830 6106509 2024-02-29 00:04:10.248 2024-02-29 00:04:10.248 3100 FEE 442843 20272 6106510 2024-02-29 00:04:10.248 2024-02-29 00:04:10.248 27900 TIP 442843 21104 6106529 2024-02-29 00:06:40.466 2024-02-29 00:06:40.466 1000 FEE 442908 17106 6106539 2024-02-29 00:07:22.785 2024-02-29 00:07:22.785 1000 FEE 442909 20624 6106542 2024-02-29 00:07:32.039 2024-02-29 00:07:32.039 2100 FEE 442704 1624 6106543 2024-02-29 00:07:32.039 2024-02-29 00:07:32.039 18900 TIP 442704 4079 6106546 2024-02-29 00:07:32.586 2024-02-29 00:07:32.586 2100 FEE 442704 16942 6106547 2024-02-29 00:07:32.586 2024-02-29 00:07:32.586 18900 TIP 442704 16485 6106552 2024-02-29 00:07:44.789 2024-02-29 00:07:44.789 2100 FEE 442708 19044 6106553 2024-02-29 00:07:44.789 2024-02-29 00:07:44.789 18900 TIP 442708 1845 6106584 2024-02-29 00:09:08.269 2024-02-29 00:09:08.269 900 FEE 442631 18727 6106585 2024-02-29 00:09:08.269 2024-02-29 00:09:08.269 8100 TIP 442631 18119 6106649 2024-02-29 00:11:55.775 2024-02-29 00:11:55.775 1700 FEE 442906 4802 6106650 2024-02-29 00:11:55.775 2024-02-29 00:11:55.775 15300 TIP 442906 15147 6106691 2024-02-29 00:13:54.274 2024-02-29 00:13:54.274 1700 FEE 441910 11153 6106692 2024-02-29 00:13:54.274 2024-02-29 00:13:54.274 15300 TIP 441910 2010 6106700 2024-02-29 00:14:10.963 2024-02-29 00:14:10.963 300 FEE 442830 6383 6106701 2024-02-29 00:14:10.963 2024-02-29 00:14:10.963 2700 TIP 442830 19622 6106714 2024-02-29 00:14:54.369 2024-02-29 00:14:54.369 1700 FEE 442912 16954 6106715 2024-02-29 00:14:54.369 2024-02-29 00:14:54.369 15300 TIP 442912 20340 6106721 2024-02-29 00:15:17.823 2024-02-29 00:15:17.823 7700 FEE 442904 986 6106722 2024-02-29 00:15:17.823 2024-02-29 00:15:17.823 69300 TIP 442904 10698 6106745 2024-02-29 00:15:19.28 2024-02-29 00:15:19.28 7700 FEE 442904 21070 6106746 2024-02-29 00:15:19.28 2024-02-29 00:15:19.28 69300 TIP 442904 787 6106779 2024-02-29 00:17:06.964 2024-02-29 00:17:06.964 2100 FEE 442904 21446 6106780 2024-02-29 00:17:06.964 2024-02-29 00:17:06.964 18900 TIP 442904 7998 6106787 2024-02-29 00:17:30.715 2024-02-29 00:17:30.715 2100 FEE 442911 19018 6106788 2024-02-29 00:17:30.715 2024-02-29 00:17:30.715 18900 TIP 442911 10096 6106830 2024-02-29 00:19:52.648 2024-02-29 00:19:52.648 10000 FEE 442313 4395 6106831 2024-02-29 00:19:52.648 2024-02-29 00:19:52.648 90000 TIP 442313 1244 6106837 2024-02-29 00:20:18.162 2024-02-29 00:20:18.162 1000 FEE 442854 13517 6106838 2024-02-29 00:20:18.162 2024-02-29 00:20:18.162 9000 TIP 442854 16753 6106842 2024-02-29 00:20:33.832 2024-02-29 00:20:33.832 1000 FEE 442856 21334 6106843 2024-02-29 00:20:33.832 2024-02-29 00:20:33.832 9000 TIP 442856 17513 6106863 2024-02-29 00:21:29.27 2024-02-29 00:21:29.27 7700 FEE 442894 1471 6106864 2024-02-29 00:21:29.27 2024-02-29 00:21:29.27 69300 TIP 442894 19320 6106877 2024-02-29 00:21:52.164 2024-02-29 00:21:52.164 1000 FEE 442861 20180 6106878 2024-02-29 00:21:52.164 2024-02-29 00:21:52.164 9000 TIP 442861 19335 6106894 2024-02-29 00:22:15.493 2024-02-29 00:22:15.493 5700 FEE 442904 18896 6106895 2024-02-29 00:22:15.493 2024-02-29 00:22:15.493 51300 TIP 442904 19484 6106906 2024-02-29 00:22:55.176 2024-02-29 00:22:55.176 0 FEE 442916 8074 6106954 2024-02-29 00:25:06.376 2024-02-29 00:25:06.376 1000 FEE 442921 21463 6106955 2024-02-29 00:25:24.91 2024-02-29 00:25:24.91 1000 FEE 442922 4802 6106968 2024-02-29 00:26:05.301 2024-02-29 00:26:05.301 1000 FEE 442781 16354 6106969 2024-02-29 00:26:05.301 2024-02-29 00:26:05.301 9000 TIP 442781 19403 6106985 2024-02-29 00:26:56.945 2024-02-29 00:26:56.945 1000 FEE 442809 6361 6106986 2024-02-29 00:26:56.945 2024-02-29 00:26:56.945 9000 TIP 442809 19087 6106998 2024-02-29 00:27:15.487 2024-02-29 00:27:15.487 1000 FEE 442023 13843 6106999 2024-02-29 00:27:15.487 2024-02-29 00:27:15.487 9000 TIP 442023 12188 6107026 2024-02-29 00:30:37.885 2024-02-29 00:30:37.885 1700 FEE 442919 16059 6107027 2024-02-29 00:30:37.885 2024-02-29 00:30:37.885 15300 TIP 442919 11561 6107028 2024-02-29 00:30:38.207 2024-02-29 00:30:38.207 1000 FEE 442657 712 6107029 2024-02-29 00:30:38.207 2024-02-29 00:30:38.207 9000 TIP 442657 21012 6107048 2024-02-29 00:32:20.445 2024-02-29 00:32:20.445 2100 FEE 442904 11996 6107049 2024-02-29 00:32:20.445 2024-02-29 00:32:20.445 18900 TIP 442904 18072 6107068 2024-02-29 00:32:23.074 2024-02-29 00:32:23.074 1000 FEE 442926 20450 6107069 2024-02-29 00:32:23.283 2024-02-29 00:32:23.283 2100 FEE 442904 14663 6107070 2024-02-29 00:32:23.283 2024-02-29 00:32:23.283 18900 TIP 442904 20687 6107073 2024-02-29 00:32:26.099 2024-02-29 00:32:26.099 100000 FEE 442904 1425 6107074 2024-02-29 00:32:26.099 2024-02-29 00:32:26.099 900000 TIP 442904 650 6107095 2024-02-29 00:32:52.998 2024-02-29 00:32:52.998 2100 FEE 442913 11670 6107096 2024-02-29 00:32:52.998 2024-02-29 00:32:52.998 18900 TIP 442913 20058 6107101 2024-02-29 00:32:53.898 2024-02-29 00:32:53.898 2100 FEE 442913 10096 6107102 2024-02-29 00:32:53.898 2024-02-29 00:32:53.898 18900 TIP 442913 20185 6107131 2024-02-29 00:34:03.3 2024-02-29 00:34:03.3 1000 FEE 442929 10060 6107169 2024-02-29 00:40:58.894 2024-02-29 00:40:58.894 1000 FEE 442935 21296 6107192 2024-02-29 00:42:03.174 2024-02-29 00:42:03.174 100 FEE 442896 10270 6107193 2024-02-29 00:42:03.174 2024-02-29 00:42:03.174 900 TIP 442896 4768 6107206 2024-02-29 00:42:40.658 2024-02-29 00:42:40.658 1000 FEE 442870 12769 6107207 2024-02-29 00:42:40.658 2024-02-29 00:42:40.658 9000 TIP 442870 12708 6107208 2024-02-29 00:42:41.69 2024-02-29 00:42:41.69 1000 FEE 442870 20669 6107209 2024-02-29 00:42:41.69 2024-02-29 00:42:41.69 9000 TIP 442870 21600 6107215 2024-02-29 00:42:58.415 2024-02-29 00:42:58.415 1000 FEE 442936 12738 6107241 2024-02-29 00:45:31.485 2024-02-29 00:45:31.485 1000 FEE 442872 21374 6107242 2024-02-29 00:45:31.485 2024-02-29 00:45:31.485 9000 TIP 442872 1090 6107268 2024-02-29 00:51:27.519 2024-02-29 00:51:27.519 6900 FEE 442930 673 6107269 2024-02-29 00:51:27.519 2024-02-29 00:51:27.519 62100 TIP 442930 21238 6106522 2024-02-29 00:06:02.66 2024-02-29 00:06:02.66 1000 STREAM 141924 19842 6106570 2024-02-29 00:08:02.652 2024-02-29 00:08:02.652 1000 STREAM 141924 14168 6106630 2024-02-29 00:10:02.681 2024-02-29 00:10:02.681 1000 STREAM 141924 3717 6106638 2024-02-29 00:11:02.677 2024-02-29 00:11:02.677 1000 STREAM 141924 8498 6106682 2024-02-29 00:13:02.676 2024-02-29 00:13:02.676 1000 STREAM 141924 17201 6106697 2024-02-29 00:14:02.689 2024-02-29 00:14:02.689 1000 STREAM 141924 21541 6106716 2024-02-29 00:15:02.682 2024-02-29 00:15:02.682 1000 STREAM 141924 12356 6106778 2024-02-29 00:17:02.687 2024-02-29 00:17:02.687 1000 STREAM 141924 17365 6107384 2024-02-29 01:00:02.88 2024-02-29 01:00:02.88 1000 STREAM 141924 4487 6107387 2024-02-29 01:01:02.883 2024-02-29 01:01:02.883 1000 STREAM 141924 19842 6107388 2024-02-29 01:02:02.877 2024-02-29 01:02:02.877 1000 STREAM 141924 20450 6107393 2024-02-29 01:03:02.887 2024-02-29 01:03:02.887 1000 STREAM 141924 9167 6107429 2024-02-29 01:06:02.891 2024-02-29 01:06:02.891 1000 STREAM 141924 20129 6107492 2024-02-29 01:08:02.922 2024-02-29 01:08:02.922 1000 STREAM 141924 631 6107585 2024-02-29 01:12:02.921 2024-02-29 01:12:02.921 1000 STREAM 141924 17217 6107592 2024-02-29 01:13:02.923 2024-02-29 01:13:02.923 1000 STREAM 141924 5703 6107593 2024-02-29 01:14:02.944 2024-02-29 01:14:02.944 1000 STREAM 141924 8729 6107621 2024-02-29 01:17:02.953 2024-02-29 01:17:02.953 1000 STREAM 141924 17291 6107663 2024-02-29 01:21:02.992 2024-02-29 01:21:02.992 1000 STREAM 141924 21472 6107681 2024-02-29 01:23:02.997 2024-02-29 01:23:02.997 1000 STREAM 141924 9695 6107687 2024-02-29 01:24:03.023 2024-02-29 01:24:03.023 1000 STREAM 141924 2016 6107724 2024-02-29 01:27:03.034 2024-02-29 01:27:03.034 1000 STREAM 141924 3400 6107735 2024-02-29 01:28:03.05 2024-02-29 01:28:03.05 1000 STREAM 141924 12222 6107751 2024-02-29 01:32:03.057 2024-02-29 01:32:03.057 1000 STREAM 141924 5173 6107755 2024-02-29 01:33:03.071 2024-02-29 01:33:03.071 1000 STREAM 141924 21400 6107762 2024-02-29 01:34:03.084 2024-02-29 01:34:03.084 1000 STREAM 141924 1474 6107766 2024-02-29 01:35:03.098 2024-02-29 01:35:03.098 1000 STREAM 141924 3686 6107768 2024-02-29 01:36:03.107 2024-02-29 01:36:03.107 1000 STREAM 141924 17011 6107770 2024-02-29 01:37:03.097 2024-02-29 01:37:03.097 1000 STREAM 141924 7916 6107912 2024-02-29 01:46:03.15 2024-02-29 01:46:03.15 1000 STREAM 141924 2309 6107925 2024-02-29 01:50:03.184 2024-02-29 01:50:03.184 1000 STREAM 141924 14168 6107933 2024-02-29 01:53:03.183 2024-02-29 01:53:03.183 1000 STREAM 141924 14258 6107956 2024-02-29 01:57:03.215 2024-02-29 01:57:03.215 1000 STREAM 141924 2042 6107962 2024-02-29 01:58:03.216 2024-02-29 01:58:03.216 1000 STREAM 141924 20183 6107969 2024-02-29 02:00:03.24 2024-02-29 02:00:03.24 1000 STREAM 141924 17523 6107979 2024-02-29 02:04:03.273 2024-02-29 02:04:03.273 1000 STREAM 141924 21292 6107986 2024-02-29 02:05:03.278 2024-02-29 02:05:03.278 1000 STREAM 141924 8926 6108001 2024-02-29 02:07:03.281 2024-02-29 02:07:03.281 1000 STREAM 141924 15890 6108025 2024-02-29 02:09:03.295 2024-02-29 02:09:03.295 1000 STREAM 141924 18511 6108027 2024-02-29 02:10:03.309 2024-02-29 02:10:03.309 1000 STREAM 141924 1564 6108029 2024-02-29 02:11:03.307 2024-02-29 02:11:03.307 1000 STREAM 141924 19243 6108036 2024-02-29 02:12:03.311 2024-02-29 02:12:03.311 1000 STREAM 141924 9276 6108058 2024-02-29 02:15:03.332 2024-02-29 02:15:03.332 1000 STREAM 141924 4650 6108085 2024-02-29 02:16:03.337 2024-02-29 02:16:03.337 1000 STREAM 141924 5069 6108089 2024-02-29 02:18:03.348 2024-02-29 02:18:03.348 1000 STREAM 141924 827 6108091 2024-02-29 02:19:03.365 2024-02-29 02:19:03.365 1000 STREAM 141924 21555 6108122 2024-02-29 02:22:03.377 2024-02-29 02:22:03.377 1000 STREAM 141924 19924 6108161 2024-02-29 02:23:03.386 2024-02-29 02:23:03.386 1000 STREAM 141924 19016 6108165 2024-02-29 02:24:03.4 2024-02-29 02:24:03.4 1000 STREAM 141924 8360 6108168 2024-02-29 02:25:03.409 2024-02-29 02:25:03.409 1000 STREAM 141924 15239 6108241 2024-02-29 02:48:03.505 2024-02-29 02:48:03.505 1000 STREAM 141924 13753 6108255 2024-02-29 02:49:03.495 2024-02-29 02:49:03.495 1000 STREAM 141924 19535 6108257 2024-02-29 02:50:03.494 2024-02-29 02:50:03.494 1000 STREAM 141924 4128 6108259 2024-02-29 02:51:03.527 2024-02-29 02:51:03.527 1000 STREAM 141924 12769 6108307 2024-02-29 02:53:03.503 2024-02-29 02:53:03.503 1000 STREAM 141924 8242 6108336 2024-02-29 02:57:03.545 2024-02-29 02:57:03.545 1000 STREAM 141924 20099 6108339 2024-02-29 02:58:03.563 2024-02-29 02:58:03.563 1000 STREAM 141924 21589 6106548 2024-02-29 00:07:33.49 2024-02-29 00:07:33.49 2100 FEE 442704 1006 6106549 2024-02-29 00:07:33.49 2024-02-29 00:07:33.49 18900 TIP 442704 19569 6106606 2024-02-29 00:09:38.931 2024-02-29 00:09:38.931 100 FEE 442454 1060 6106607 2024-02-29 00:09:38.931 2024-02-29 00:09:38.931 900 TIP 442454 14472 6106608 2024-02-29 00:09:39.105 2024-02-29 00:09:39.105 2100 FEE 442678 18690 6106609 2024-02-29 00:09:39.105 2024-02-29 00:09:39.105 18900 TIP 442678 4035 6106616 2024-02-29 00:09:49.201 2024-02-29 00:09:49.201 2100 FEE 442873 656 6106617 2024-02-29 00:09:49.201 2024-02-29 00:09:49.201 18900 TIP 442873 20993 6106618 2024-02-29 00:09:54.787 2024-02-29 00:09:54.787 100 FEE 442330 4654 6106619 2024-02-29 00:09:54.787 2024-02-29 00:09:54.787 900 TIP 442330 1493 6106626 2024-02-29 00:10:01.437 2024-02-29 00:10:01.437 900 FEE 442359 8176 6106627 2024-02-29 00:10:01.437 2024-02-29 00:10:01.437 8100 TIP 442359 2195 6106633 2024-02-29 00:10:09.647 2024-02-29 00:10:09.647 900 FEE 442153 16329 6106634 2024-02-29 00:10:09.647 2024-02-29 00:10:09.647 8100 TIP 442153 18836 6106636 2024-02-29 00:10:52.13 2024-02-29 00:10:52.13 100 FEE 442904 20168 6106637 2024-02-29 00:10:52.13 2024-02-29 00:10:52.13 900 TIP 442904 14959 6106695 2024-02-29 00:14:02.388 2024-02-29 00:14:02.388 1700 FEE 442515 10060 6106696 2024-02-29 00:14:02.388 2024-02-29 00:14:02.388 15300 TIP 442515 17693 6106739 2024-02-29 00:15:18.984 2024-02-29 00:15:18.984 7700 FEE 442904 18533 6106740 2024-02-29 00:15:18.984 2024-02-29 00:15:18.984 69300 TIP 442904 9109 6106743 2024-02-29 00:15:19.143 2024-02-29 00:15:19.143 7700 FEE 442904 21021 6106744 2024-02-29 00:15:19.143 2024-02-29 00:15:19.143 69300 TIP 442904 20108 6106757 2024-02-29 00:15:21.857 2024-02-29 00:15:21.857 2100 FEE 442913 15556 6106758 2024-02-29 00:15:21.857 2024-02-29 00:15:21.857 18900 TIP 442913 20972 6106558 2024-02-29 00:07:45.007 2024-02-29 00:07:45.007 900 FEE 442896 5646 6106559 2024-02-29 00:07:45.007 2024-02-29 00:07:45.007 8100 TIP 442896 703 6106562 2024-02-29 00:07:49.135 2024-02-29 00:07:49.135 2100 FEE 442708 997 6106563 2024-02-29 00:07:49.135 2024-02-29 00:07:49.135 18900 TIP 442708 20585 6106568 2024-02-29 00:08:02.182 2024-02-29 00:08:02.182 900 FEE 442904 18583 6106569 2024-02-29 00:08:02.182 2024-02-29 00:08:02.182 8100 TIP 442904 1145 6106571 2024-02-29 00:08:04.12 2024-02-29 00:08:04.12 9000 FEE 442904 17091 6106572 2024-02-29 00:08:04.12 2024-02-29 00:08:04.12 81000 TIP 442904 15266 6106596 2024-02-29 00:09:26.108 2024-02-29 00:09:26.108 900 FEE 442510 14651 6106597 2024-02-29 00:09:26.108 2024-02-29 00:09:26.108 8100 TIP 442510 4768 6106598 2024-02-29 00:09:32.112 2024-02-29 00:09:32.112 100 FEE 442446 1825 6106599 2024-02-29 00:09:32.112 2024-02-29 00:09:32.112 900 TIP 442446 20596 6106614 2024-02-29 00:09:44.107 2024-02-29 00:09:44.107 2100 FEE 442508 1426 6106615 2024-02-29 00:09:44.107 2024-02-29 00:09:44.107 18900 TIP 442508 17095 6106676 2024-02-29 00:12:21.78 2024-02-29 00:12:21.78 6900 FEE 442904 12057 6106677 2024-02-29 00:12:21.78 2024-02-29 00:12:21.78 62100 TIP 442904 20353 6106710 2024-02-29 00:14:44.111 2024-02-29 00:14:44.111 1000 FEE 442820 21159 6106711 2024-02-29 00:14:44.111 2024-02-29 00:14:44.111 9000 TIP 442820 20502 6106712 2024-02-29 00:14:45.221 2024-02-29 00:14:45.221 700 FEE 441519 7913 6106713 2024-02-29 00:14:45.221 2024-02-29 00:14:45.221 6300 TIP 441519 8416 6106719 2024-02-29 00:15:17.691 2024-02-29 00:15:17.691 7700 FEE 442904 20564 6106720 2024-02-29 00:15:17.691 2024-02-29 00:15:17.691 69300 TIP 442904 12708 6106737 2024-02-29 00:15:18.83 2024-02-29 00:15:18.83 7700 FEE 442904 18817 6106738 2024-02-29 00:15:18.83 2024-02-29 00:15:18.83 69300 TIP 442904 6137 6106741 2024-02-29 00:15:19.062 2024-02-29 00:15:19.062 7700 FEE 442904 14247 6106742 2024-02-29 00:15:19.062 2024-02-29 00:15:19.062 69300 TIP 442904 691 6106763 2024-02-29 00:15:23.134 2024-02-29 00:15:23.134 2100 FEE 442913 21386 6106764 2024-02-29 00:15:23.134 2024-02-29 00:15:23.134 18900 TIP 442913 19906 6106808 2024-02-29 00:19:06.509 2024-02-29 00:19:06.509 2100 FEE 442820 13782 6106600 2024-02-29 00:09:32.14 2024-02-29 00:09:32.14 900 FEE 442446 20058 6106601 2024-02-29 00:09:32.14 2024-02-29 00:09:32.14 8100 TIP 442446 18727 6106622 2024-02-29 00:09:59.712 2024-02-29 00:09:59.712 6900 FEE 442910 738 6106623 2024-02-29 00:09:59.712 2024-02-29 00:09:59.712 62100 TIP 442910 20546 6106624 2024-02-29 00:10:01.259 2024-02-29 00:10:01.259 100 FEE 442359 19553 6106625 2024-02-29 00:10:01.259 2024-02-29 00:10:01.259 900 TIP 442359 15463 6106631 2024-02-29 00:10:09.476 2024-02-29 00:10:09.476 100 FEE 442153 1650 6106632 2024-02-29 00:10:09.476 2024-02-29 00:10:09.476 900 TIP 442153 19660 6106641 2024-02-29 00:11:09.519 2024-02-29 00:11:09.519 3300 FEE 442890 20861 6106642 2024-02-29 00:11:09.519 2024-02-29 00:11:09.519 29700 TIP 442890 1515 6106643 2024-02-29 00:11:23.232 2024-02-29 00:11:23.232 1700 FEE 442907 708 6106644 2024-02-29 00:11:23.232 2024-02-29 00:11:23.232 15300 TIP 442907 9482 6106651 2024-02-29 00:11:55.998 2024-02-29 00:11:55.998 1700 FEE 442906 15100 6106652 2024-02-29 00:11:55.998 2024-02-29 00:11:55.998 15300 TIP 442906 18274 6106656 2024-02-29 00:12:19.607 2024-02-29 00:12:19.607 6900 FEE 442904 21139 6106657 2024-02-29 00:12:19.607 2024-02-29 00:12:19.607 62100 TIP 442904 20381 6106664 2024-02-29 00:12:20.223 2024-02-29 00:12:20.223 6900 FEE 442904 5703 6106665 2024-02-29 00:12:20.223 2024-02-29 00:12:20.223 62100 TIP 442904 8841 6106686 2024-02-29 00:13:24.432 2024-02-29 00:13:24.432 900 FEE 442894 1012 6106687 2024-02-29 00:13:24.432 2024-02-29 00:13:24.432 8100 TIP 442894 8954 6106688 2024-02-29 00:13:41.554 2024-02-29 00:13:41.554 0 FEE 442910 21469 6106693 2024-02-29 00:13:58.165 2024-02-29 00:13:58.165 1700 FEE 442319 15536 6106694 2024-02-29 00:13:58.165 2024-02-29 00:13:58.165 15300 TIP 442319 13544 6106698 2024-02-29 00:14:09.51 2024-02-29 00:14:09.51 300 FEE 442529 15556 6106699 2024-02-29 00:14:09.51 2024-02-29 00:14:09.51 2700 TIP 442529 18524 6106702 2024-02-29 00:14:12.477 2024-02-29 00:14:12.477 300 FEE 442859 10690 6106703 2024-02-29 00:14:12.477 2024-02-29 00:14:12.477 2700 TIP 442859 20433 6106704 2024-02-29 00:14:18.225 2024-02-29 00:14:18.225 300 FEE 441663 4395 6106705 2024-02-29 00:14:18.225 2024-02-29 00:14:18.225 2700 TIP 441663 1718 6106753 2024-02-29 00:15:20.415 2024-02-29 00:15:20.415 7700 FEE 442904 993 6106754 2024-02-29 00:15:20.415 2024-02-29 00:15:20.415 69300 TIP 442904 1620 6106776 2024-02-29 00:16:42.696 2024-02-29 00:16:42.696 27900 FEE 442710 897 6106777 2024-02-29 00:16:42.696 2024-02-29 00:16:42.696 251100 TIP 442710 15488 6106783 2024-02-29 00:17:10.244 2024-02-29 00:17:10.244 2100 FEE 442820 19471 6106784 2024-02-29 00:17:10.244 2024-02-29 00:17:10.244 18900 TIP 442820 11073 6106791 2024-02-29 00:17:38.922 2024-02-29 00:17:38.922 10000 FEE 442313 20980 6106792 2024-02-29 00:17:38.922 2024-02-29 00:17:38.922 90000 TIP 442313 12483 6106826 2024-02-29 00:19:45.936 2024-02-29 00:19:45.936 2000 FEE 442003 18923 6106827 2024-02-29 00:19:45.936 2024-02-29 00:19:45.936 18000 TIP 442003 889 6106839 2024-02-29 00:20:27.436 2024-02-29 00:20:27.436 1000 FEE 442861 16336 6106840 2024-02-29 00:20:27.436 2024-02-29 00:20:27.436 9000 TIP 442861 1751 6106841 2024-02-29 00:20:31.999 2024-02-29 00:20:31.999 1000 POLL 442751 13553 6106853 2024-02-29 00:21:23.725 2024-02-29 00:21:23.725 7700 FEE 442904 1713 6106854 2024-02-29 00:21:23.725 2024-02-29 00:21:23.725 69300 TIP 442904 1801 6106871 2024-02-29 00:21:30.661 2024-02-29 00:21:30.661 1000 FEE 442084 19243 6106872 2024-02-29 00:21:30.661 2024-02-29 00:21:30.661 9000 TIP 442084 766 6106875 2024-02-29 00:21:51.387 2024-02-29 00:21:51.387 1000 FEE 442861 20881 6106876 2024-02-29 00:21:51.387 2024-02-29 00:21:51.387 9000 TIP 442861 19537 6106890 2024-02-29 00:22:13.37 2024-02-29 00:22:13.37 2500 FEE 442904 17106 6106891 2024-02-29 00:22:13.37 2024-02-29 00:22:13.37 22500 TIP 442904 20436 6106900 2024-02-29 00:22:34.488 2024-02-29 00:22:34.488 1000 FEE 442751 20143 6106901 2024-02-29 00:22:34.488 2024-02-29 00:22:34.488 9000 TIP 442751 14959 6106902 2024-02-29 00:22:35.19 2024-02-29 00:22:35.19 1000 FEE 442751 14818 6106903 2024-02-29 00:22:35.19 2024-02-29 00:22:35.19 9000 TIP 442751 5597 6106909 2024-02-29 00:22:56.262 2024-02-29 00:22:56.262 2500 FEE 442848 12821 6106910 2024-02-29 00:22:56.262 2024-02-29 00:22:56.262 22500 TIP 442848 21395 6106918 2024-02-29 00:23:04.643 2024-02-29 00:23:04.643 15400 FEE 442904 20715 6106919 2024-02-29 00:23:04.643 2024-02-29 00:23:04.643 138600 TIP 442904 20892 6106921 2024-02-29 00:23:38.104 2024-02-29 00:23:38.104 1000 FEE 442917 21387 6106922 2024-02-29 00:23:48.22 2024-02-29 00:23:48.22 100 FEE 442721 20636 6106923 2024-02-29 00:23:48.22 2024-02-29 00:23:48.22 900 TIP 442721 21131 6106924 2024-02-29 00:23:48.396 2024-02-29 00:23:48.396 900 FEE 442721 6327 6106925 2024-02-29 00:23:48.396 2024-02-29 00:23:48.396 8100 TIP 442721 11523 6106951 2024-02-29 00:25:01.787 2024-02-29 00:25:01.787 1000 FEE 442096 980 6106952 2024-02-29 00:25:01.787 2024-02-29 00:25:01.787 9000 TIP 442096 2431 6106966 2024-02-29 00:26:04.749 2024-02-29 00:26:04.749 1000 FEE 442781 8080 6106967 2024-02-29 00:26:04.749 2024-02-29 00:26:04.749 9000 TIP 442781 5449 6106736 2024-02-29 00:15:18.726 2024-02-29 00:15:18.726 69300 TIP 442904 2537 6106749 2024-02-29 00:15:20.16 2024-02-29 00:15:20.16 7700 FEE 442904 14168 6106750 2024-02-29 00:15:20.16 2024-02-29 00:15:20.16 69300 TIP 442904 2703 6106761 2024-02-29 00:15:22.875 2024-02-29 00:15:22.875 2100 FEE 442913 20245 6106762 2024-02-29 00:15:22.875 2024-02-29 00:15:22.875 18900 TIP 442913 19943 6106769 2024-02-29 00:15:39.221 2024-02-29 00:15:39.221 10000 FEE 442313 685 6106770 2024-02-29 00:15:39.221 2024-02-29 00:15:39.221 90000 TIP 442313 21540 6106771 2024-02-29 00:15:53.423 2024-02-29 00:15:53.423 5700 FEE 442912 18262 6106772 2024-02-29 00:15:53.423 2024-02-29 00:15:53.423 51300 TIP 442912 19034 6106781 2024-02-29 00:17:08.47 2024-02-29 00:17:08.47 5700 FEE 442912 8423 6106782 2024-02-29 00:17:08.47 2024-02-29 00:17:08.47 51300 TIP 442912 19303 6106789 2024-02-29 00:17:33.006 2024-02-29 00:17:33.006 1000 FEE 442313 19841 6106790 2024-02-29 00:17:33.006 2024-02-29 00:17:33.006 9000 TIP 442313 9796 6106802 2024-02-29 00:19:04.281 2024-02-29 00:19:04.281 2100 FEE 442876 21451 6106803 2024-02-29 00:19:04.281 2024-02-29 00:19:04.281 18900 TIP 442876 8059 6106818 2024-02-29 00:19:43.861 2024-02-29 00:19:43.861 2000 FEE 442003 9367 6106819 2024-02-29 00:19:43.861 2024-02-29 00:19:43.861 18000 TIP 442003 18423 6106857 2024-02-29 00:21:24.194 2024-02-29 00:21:24.194 15400 FEE 442904 20713 6106858 2024-02-29 00:21:24.194 2024-02-29 00:21:24.194 138600 TIP 442904 13246 6106883 2024-02-29 00:21:57.419 2024-02-29 00:21:57.419 5700 FEE 442896 21503 6106884 2024-02-29 00:21:57.419 2024-02-29 00:21:57.419 51300 TIP 442896 3213 6106885 2024-02-29 00:21:57.541 2024-02-29 00:21:57.541 1000 FEE 442915 15526 6106914 2024-02-29 00:23:04.29 2024-02-29 00:23:04.29 7700 FEE 442904 10490 6106915 2024-02-29 00:23:04.29 2024-02-29 00:23:04.29 69300 TIP 442904 9275 6106920 2024-02-29 00:23:35.88 2024-02-29 00:23:35.88 0 FEE 442916 1605 6106926 2024-02-29 00:23:48.436 2024-02-29 00:23:48.436 1000 FEE 442702 12422 6106927 2024-02-29 00:23:48.436 2024-02-29 00:23:48.436 9000 TIP 442702 8505 6106928 2024-02-29 00:23:51.632 2024-02-29 00:23:51.632 1000 FEE 442918 20179 6106932 2024-02-29 00:24:30.21 2024-02-29 00:24:30.21 1000 FEE 442920 19796 6106935 2024-02-29 00:24:48.969 2024-02-29 00:24:48.969 1000 FEE 442142 18470 6106936 2024-02-29 00:24:48.969 2024-02-29 00:24:48.969 9000 TIP 442142 8505 6106941 2024-02-29 00:24:58.406 2024-02-29 00:24:58.406 2100 FEE 442920 17166 6106942 2024-02-29 00:24:58.406 2024-02-29 00:24:58.406 18900 TIP 442920 20310 6106949 2024-02-29 00:24:58.952 2024-02-29 00:24:58.952 2100 FEE 442920 19118 6106950 2024-02-29 00:24:58.952 2024-02-29 00:24:58.952 18900 TIP 442920 18663 6106956 2024-02-29 00:25:28.863 2024-02-29 00:25:28.863 1000 POLL 442163 647 6106979 2024-02-29 00:26:32.104 2024-02-29 00:26:32.104 6900 FEE 442918 20642 6106980 2024-02-29 00:26:32.104 2024-02-29 00:26:32.104 62100 TIP 442918 18892 6106983 2024-02-29 00:26:34.907 2024-02-29 00:26:34.907 1000 FEE 442544 20190 6106984 2024-02-29 00:26:34.907 2024-02-29 00:26:34.907 9000 TIP 442544 895 6106994 2024-02-29 00:27:04.938 2024-02-29 00:27:04.938 1000 FEE 442896 16176 6106995 2024-02-29 00:27:04.938 2024-02-29 00:27:04.938 9000 TIP 442896 21042 6107013 2024-02-29 00:29:29.63 2024-02-29 00:29:29.63 1000 FEE 442775 1286 6107014 2024-02-29 00:29:29.63 2024-02-29 00:29:29.63 9000 TIP 442775 19030 6107017 2024-02-29 00:29:48.456 2024-02-29 00:29:48.456 1000 FEE 442924 16309 6107034 2024-02-29 00:30:46.777 2024-02-29 00:30:46.777 2100 FEE 442023 9341 6107035 2024-02-29 00:30:46.777 2024-02-29 00:30:46.777 18900 TIP 442023 20701 6107039 2024-02-29 00:31:43.399 2024-02-29 00:31:43.399 2100 FEE 442817 20291 6106795 2024-02-29 00:19:02.709 2024-02-29 00:19:02.709 1000 STREAM 141924 16950 6106834 2024-02-29 00:20:02.74 2024-02-29 00:20:02.74 1000 STREAM 141924 696 6106911 2024-02-29 00:23:02.743 2024-02-29 00:23:02.743 1000 STREAM 141924 20646 6106929 2024-02-29 00:24:02.742 2024-02-29 00:24:02.742 1000 STREAM 141924 12422 6106963 2024-02-29 00:26:02.748 2024-02-29 00:26:02.748 1000 STREAM 141924 19286 6107024 2024-02-29 00:30:02.787 2024-02-29 00:30:02.787 1000 STREAM 141924 12346 6107038 2024-02-29 00:31:02.754 2024-02-29 00:31:02.754 1000 STREAM 141924 19810 6107041 2024-02-29 00:32:02.762 2024-02-29 00:32:02.762 1000 STREAM 141924 20106 6107124 2024-02-29 00:33:02.764 2024-02-29 00:33:02.764 1000 STREAM 141924 3411 6107130 2024-02-29 00:34:02.773 2024-02-29 00:34:02.773 1000 STREAM 141924 20660 6107142 2024-02-29 00:35:02.79 2024-02-29 00:35:02.79 1000 STREAM 141924 5942 6107145 2024-02-29 00:36:02.779 2024-02-29 00:36:02.779 1000 STREAM 141924 15160 6107151 2024-02-29 00:37:02.782 2024-02-29 00:37:02.782 1000 STREAM 141924 18344 6107162 2024-02-29 00:39:02.775 2024-02-29 00:39:02.775 1000 STREAM 141924 5708 6107166 2024-02-29 00:40:02.798 2024-02-29 00:40:02.798 1000 STREAM 141924 16229 6107191 2024-02-29 00:42:02.794 2024-02-29 00:42:02.794 1000 STREAM 141924 18178 6107216 2024-02-29 00:43:02.806 2024-02-29 00:43:02.806 1000 STREAM 141924 17014 6107256 2024-02-29 00:48:02.829 2024-02-29 00:48:02.829 1000 STREAM 141924 9084 6107259 2024-02-29 00:49:02.818 2024-02-29 00:49:02.818 1000 STREAM 141924 14247 6107260 2024-02-29 00:50:02.861 2024-02-29 00:50:02.861 1000 STREAM 141924 3729 6107377 2024-02-29 00:58:02.89 2024-02-29 00:58:02.89 1000 STREAM 141924 20987 6106796 2024-02-29 00:19:03.756 2024-02-29 00:19:03.756 2100 FEE 442876 20353 6106797 2024-02-29 00:19:03.756 2024-02-29 00:19:03.756 18900 TIP 442876 21040 6106814 2024-02-29 00:19:21.129 2024-02-29 00:19:21.129 1000 FEE 442914 620 6106824 2024-02-29 00:19:45.915 2024-02-29 00:19:45.915 2000 FEE 442003 5942 6106825 2024-02-29 00:19:45.915 2024-02-29 00:19:45.915 18000 TIP 442003 11328 6106835 2024-02-29 00:20:06.238 2024-02-29 00:20:06.238 1000 FEE 442906 17827 6106836 2024-02-29 00:20:06.238 2024-02-29 00:20:06.238 9000 TIP 442906 20623 6106849 2024-02-29 00:21:20.626 2024-02-29 00:21:20.626 1000 FEE 442710 7659 6106809 2024-02-29 00:19:06.509 2024-02-29 00:19:06.509 18900 TIP 442820 18815 6106810 2024-02-29 00:19:06.667 2024-02-29 00:19:06.667 2100 FEE 442820 12245 6106811 2024-02-29 00:19:06.667 2024-02-29 00:19:06.667 18900 TIP 442820 1490 6106815 2024-02-29 00:19:28.76 2024-02-29 00:19:28.76 1000 POLL 442751 5828 6106822 2024-02-29 00:19:44.672 2024-02-29 00:19:44.672 2000 FEE 442003 1713 6106823 2024-02-29 00:19:44.672 2024-02-29 00:19:44.672 18000 TIP 442003 706 6106828 2024-02-29 00:19:48.739 2024-02-29 00:19:48.739 1000 FEE 442795 20073 6106829 2024-02-29 00:19:48.739 2024-02-29 00:19:48.739 9000 TIP 442795 17984 6106855 2024-02-29 00:21:23.985 2024-02-29 00:21:23.985 7700 FEE 442904 9378 6106856 2024-02-29 00:21:23.985 2024-02-29 00:21:23.985 69300 TIP 442904 2330 6106879 2024-02-29 00:21:52.81 2024-02-29 00:21:52.81 1000 FEE 442861 12738 6106880 2024-02-29 00:21:52.81 2024-02-29 00:21:52.81 9000 TIP 442861 19976 6106937 2024-02-29 00:24:54.372 2024-02-29 00:24:54.372 1000 FEE 442249 20018 6106938 2024-02-29 00:24:54.372 2024-02-29 00:24:54.372 9000 TIP 442249 1800 6106943 2024-02-29 00:24:58.582 2024-02-29 00:24:58.582 2100 FEE 442920 19952 6106944 2024-02-29 00:24:58.582 2024-02-29 00:24:58.582 18900 TIP 442920 664 6106957 2024-02-29 00:25:45.885 2024-02-29 00:25:45.885 1000 FEE 442455 9184 6106958 2024-02-29 00:25:45.885 2024-02-29 00:25:45.885 9000 TIP 442455 20231 6106992 2024-02-29 00:27:04.314 2024-02-29 00:27:04.314 1000 FEE 442896 10056 6106993 2024-02-29 00:27:04.314 2024-02-29 00:27:04.314 9000 TIP 442896 13204 6106996 2024-02-29 00:27:07.304 2024-02-29 00:27:07.304 1000 FEE 442503 8916 6106997 2024-02-29 00:27:07.304 2024-02-29 00:27:07.304 9000 TIP 442503 1426 6107009 2024-02-29 00:29:28.422 2024-02-29 00:29:28.422 1000 FEE 442775 21541 6107010 2024-02-29 00:29:28.422 2024-02-29 00:29:28.422 9000 TIP 442775 18675 6107018 2024-02-29 00:29:53.013 2024-02-29 00:29:53.013 2100 FEE 442805 14255 6107019 2024-02-29 00:29:53.013 2024-02-29 00:29:53.013 18900 TIP 442805 20099 6107060 2024-02-29 00:32:22.347 2024-02-29 00:32:22.347 2100 FEE 442904 16194 6107061 2024-02-29 00:32:22.347 2024-02-29 00:32:22.347 18900 TIP 442904 17046 6107081 2024-02-29 00:32:43.726 2024-02-29 00:32:43.726 2100 FEE 442904 21591 6107082 2024-02-29 00:32:43.726 2024-02-29 00:32:43.726 18900 TIP 442904 19501 6107085 2024-02-29 00:32:44.063 2024-02-29 00:32:44.063 2100 FEE 442904 15556 6107086 2024-02-29 00:32:44.063 2024-02-29 00:32:44.063 18900 TIP 442904 19836 6107099 2024-02-29 00:32:53.531 2024-02-29 00:32:53.531 2100 FEE 442913 19863 6107100 2024-02-29 00:32:53.531 2024-02-29 00:32:53.531 18900 TIP 442913 20257 6107104 2024-02-29 00:32:54.098 2024-02-29 00:32:54.098 2100 FEE 442913 14552 6107105 2024-02-29 00:32:54.098 2024-02-29 00:32:54.098 18900 TIP 442913 6555 6107108 2024-02-29 00:32:55.779 2024-02-29 00:32:55.779 2100 FEE 442920 1803 6107109 2024-02-29 00:32:55.779 2024-02-29 00:32:55.779 18900 TIP 442920 12346 6107129 2024-02-29 00:33:55.666 2024-02-29 00:33:55.666 1000 FEE 442928 9833 6107160 2024-02-29 00:38:40.798 2024-02-29 00:38:40.798 1000 FEE 442933 19795 6107161 2024-02-29 00:39:00.202 2024-02-29 00:39:00.202 1000 FEE 442934 17523 6107179 2024-02-29 00:41:35.823 2024-02-29 00:41:35.823 2100 FEE 442848 919 6107180 2024-02-29 00:41:35.823 2024-02-29 00:41:35.823 18900 TIP 442848 21104 6107234 2024-02-29 00:45:02.751 2024-02-29 00:45:02.751 1000 FEE 442786 12965 6107235 2024-02-29 00:45:02.751 2024-02-29 00:45:02.751 9000 TIP 442786 20412 6107246 2024-02-29 00:45:57.346 2024-02-29 00:45:57.346 1000 FEE 442788 993 6107247 2024-02-29 00:45:57.346 2024-02-29 00:45:57.346 9000 TIP 442788 9261 6107261 2024-02-29 00:50:13.424 2024-02-29 00:50:13.424 1000 FEE 442939 3990 6107279 2024-02-29 00:53:31.171 2024-02-29 00:53:31.171 5000 FEE 442321 18470 6107280 2024-02-29 00:53:31.171 2024-02-29 00:53:31.171 45000 TIP 442321 14213 6107289 2024-02-29 00:54:15.652 2024-02-29 00:54:15.652 1000 POLL 442751 10291 6107293 2024-02-29 00:54:42.574 2024-02-29 00:54:42.574 5000 FEE 442769 12959 6107294 2024-02-29 00:54:42.574 2024-02-29 00:54:42.574 45000 TIP 442769 4225 6107299 2024-02-29 00:54:54.468 2024-02-29 00:54:54.468 2100 FEE 442941 2776 6107300 2024-02-29 00:54:54.468 2024-02-29 00:54:54.468 18900 TIP 442941 667 6107305 2024-02-29 00:54:55.019 2024-02-29 00:54:55.019 2100 FEE 442941 21605 6107306 2024-02-29 00:54:55.019 2024-02-29 00:54:55.019 18900 TIP 442941 16867 6107307 2024-02-29 00:54:55.201 2024-02-29 00:54:55.201 2100 FEE 442941 19572 6107308 2024-02-29 00:54:55.201 2024-02-29 00:54:55.201 18900 TIP 442941 16212 6107319 2024-02-29 00:55:36.977 2024-02-29 00:55:36.977 1000 FEE 442943 20713 6107339 2024-02-29 00:56:39.388 2024-02-29 00:56:39.388 5000 FEE 442396 895 6107340 2024-02-29 00:56:39.388 2024-02-29 00:56:39.388 45000 TIP 442396 21389 6107354 2024-02-29 00:57:13.053 2024-02-29 00:57:13.053 5000 FEE 442706 691 6107355 2024-02-29 00:57:13.053 2024-02-29 00:57:13.053 45000 TIP 442706 15843 6107372 2024-02-29 00:57:20.044 2024-02-29 00:57:20.044 5000 FEE 442313 15196 6107373 2024-02-29 00:57:20.044 2024-02-29 00:57:20.044 45000 TIP 442313 3683 6107389 2024-02-29 01:02:06.004 2024-02-29 01:02:06.004 11700 FEE 442501 18235 6107390 2024-02-29 01:02:06.004 2024-02-29 01:02:06.004 105300 TIP 442501 16097 6107394 2024-02-29 01:03:17.941 2024-02-29 01:03:17.941 1000 FEE 442949 17411 6107398 2024-02-29 01:04:16.008 2024-02-29 01:04:16.008 1000 FEE 442950 21201 6107399 2024-02-29 01:04:29.363 2024-02-29 01:04:29.363 1000 POLL 442751 18533 6107421 2024-02-29 01:05:53.003 2024-02-29 01:05:53.003 1100 FEE 442188 19507 6107422 2024-02-29 01:05:53.003 2024-02-29 01:05:53.003 9900 TIP 442188 5557 6107423 2024-02-29 01:05:53.232 2024-02-29 01:05:53.232 1100 FEE 442188 18460 6107424 2024-02-29 01:05:53.232 2024-02-29 01:05:53.232 9900 TIP 442188 20681 6107427 2024-02-29 01:05:53.997 2024-02-29 01:05:53.997 1100 FEE 442188 20500 6107428 2024-02-29 01:05:53.997 2024-02-29 01:05:53.997 9900 TIP 442188 12334 6107455 2024-02-29 01:07:53.171 2024-02-29 01:07:53.171 1000 FEE 442751 9352 6107456 2024-02-29 01:07:53.171 2024-02-29 01:07:53.171 9000 TIP 442751 17095 6107471 2024-02-29 01:07:56.991 2024-02-29 01:07:56.991 1000 FEE 442313 9078 6107472 2024-02-29 01:07:56.991 2024-02-29 01:07:56.991 9000 TIP 442313 21343 6107488 2024-02-29 01:08:02.655 2024-02-29 01:08:02.655 1100 FEE 442177 18178 6107489 2024-02-29 01:08:02.655 2024-02-29 01:08:02.655 9900 TIP 442177 666 6107490 2024-02-29 01:08:02.807 2024-02-29 01:08:02.807 1100 FEE 442177 20642 6107491 2024-02-29 01:08:02.807 2024-02-29 01:08:02.807 9900 TIP 442177 5646 6107505 2024-02-29 01:08:10.533 2024-02-29 01:08:10.533 1100 FEE 442185 636 6107506 2024-02-29 01:08:10.533 2024-02-29 01:08:10.533 9900 TIP 442185 15690 6106850 2024-02-29 00:21:20.626 2024-02-29 00:21:20.626 9000 TIP 442710 13987 6106859 2024-02-29 00:21:24.47 2024-02-29 00:21:24.47 7700 FEE 442904 20205 6106860 2024-02-29 00:21:24.47 2024-02-29 00:21:24.47 69300 TIP 442904 21131 6106869 2024-02-29 00:21:29.923 2024-02-29 00:21:29.923 7700 FEE 442894 10094 6106870 2024-02-29 00:21:29.923 2024-02-29 00:21:29.923 69300 TIP 442894 17976 6106881 2024-02-29 00:21:53.844 2024-02-29 00:21:53.844 1000 FEE 442861 6741 6106882 2024-02-29 00:21:53.844 2024-02-29 00:21:53.844 9000 TIP 442861 5487 6106888 2024-02-29 00:22:13.345 2024-02-29 00:22:13.345 2500 FEE 442904 11866 6106889 2024-02-29 00:22:13.345 2024-02-29 00:22:13.345 22500 TIP 442904 671 6106904 2024-02-29 00:22:35.871 2024-02-29 00:22:35.871 1000 FEE 442751 1261 6106905 2024-02-29 00:22:35.871 2024-02-29 00:22:35.871 9000 TIP 442751 18231 6106930 2024-02-29 00:24:06.042 2024-02-29 00:24:06.042 1000 FEE 442106 1802 6106931 2024-02-29 00:24:06.042 2024-02-29 00:24:06.042 9000 TIP 442106 18774 6106947 2024-02-29 00:24:58.764 2024-02-29 00:24:58.764 2100 FEE 442920 16336 6106948 2024-02-29 00:24:58.764 2024-02-29 00:24:58.764 18900 TIP 442920 17064 6106961 2024-02-29 00:25:58.683 2024-02-29 00:25:58.683 6900 FEE 442921 15139 6106962 2024-02-29 00:25:58.683 2024-02-29 00:25:58.683 62100 TIP 442921 20220 6106976 2024-02-29 00:26:10.942 2024-02-29 00:26:10.942 6900 FEE 442918 21481 6106977 2024-02-29 00:26:10.942 2024-02-29 00:26:10.942 62100 TIP 442918 20464 6107020 2024-02-29 00:29:54.93 2024-02-29 00:29:54.93 2100 FEE 442133 11450 6107021 2024-02-29 00:29:54.93 2024-02-29 00:29:54.93 18900 TIP 442133 10094 6107022 2024-02-29 00:29:56.052 2024-02-29 00:29:56.052 1100 FEE 442848 21332 6107023 2024-02-29 00:29:56.052 2024-02-29 00:29:56.052 9900 TIP 442848 21072 6107042 2024-02-29 00:32:09.967 2024-02-29 00:32:09.967 100 FEE 442919 11885 6107043 2024-02-29 00:32:09.967 2024-02-29 00:32:09.967 900 TIP 442919 8945 6107054 2024-02-29 00:32:21.797 2024-02-29 00:32:21.797 2100 FEE 442904 13327 6107055 2024-02-29 00:32:21.797 2024-02-29 00:32:21.797 18900 TIP 442904 16704 6107079 2024-02-29 00:32:43.564 2024-02-29 00:32:43.564 2100 FEE 442904 14213 6107080 2024-02-29 00:32:43.564 2024-02-29 00:32:43.564 18900 TIP 442904 14731 6107114 2024-02-29 00:32:57.362 2024-02-29 00:32:57.362 2100 FEE 442922 20802 6107115 2024-02-29 00:32:57.362 2024-02-29 00:32:57.362 18900 TIP 442922 19902 6107143 2024-02-29 00:35:29.618 2024-02-29 00:35:29.618 1000 FEE 442930 5057 6107144 2024-02-29 00:35:41.941 2024-02-29 00:35:41.941 1000 POLL 442163 9916 6107183 2024-02-29 00:41:38.884 2024-02-29 00:41:38.884 2100 FEE 442721 20377 6106988 2024-02-29 00:27:03.1 2024-02-29 00:27:03.1 1000 FEE 442896 13517 6106989 2024-02-29 00:27:03.1 2024-02-29 00:27:03.1 9000 TIP 442896 696 6106990 2024-02-29 00:27:03.703 2024-02-29 00:27:03.703 1000 FEE 442896 632 6106991 2024-02-29 00:27:03.703 2024-02-29 00:27:03.703 9000 TIP 442896 18731 6107002 2024-02-29 00:27:27.925 2024-02-29 00:27:27.925 6400 FEE 442894 9669 6107003 2024-02-29 00:27:27.925 2024-02-29 00:27:27.925 57600 TIP 442894 10608 6107015 2024-02-29 00:29:30.043 2024-02-29 00:29:30.043 1000 FEE 442775 664 6107016 2024-02-29 00:29:30.043 2024-02-29 00:29:30.043 9000 TIP 442775 9350 6107025 2024-02-29 00:30:06.448 2024-02-29 00:30:06.448 1000 FEE 442925 2514 6107030 2024-02-29 00:30:38.251 2024-02-29 00:30:38.251 1700 FEE 442919 7389 6107031 2024-02-29 00:30:38.251 2024-02-29 00:30:38.251 15300 TIP 442919 20614 6107058 2024-02-29 00:32:22.178 2024-02-29 00:32:22.178 2100 FEE 442904 15491 6107059 2024-02-29 00:32:22.178 2024-02-29 00:32:22.178 18900 TIP 442904 12951 6107066 2024-02-29 00:32:22.89 2024-02-29 00:32:22.89 2100 FEE 442904 19502 6107067 2024-02-29 00:32:22.89 2024-02-29 00:32:22.89 18900 TIP 442904 10668 6107077 2024-02-29 00:32:43.376 2024-02-29 00:32:43.376 2100 FEE 442904 17218 6107040 2024-02-29 00:31:43.399 2024-02-29 00:31:43.399 18900 TIP 442817 680 6107050 2024-02-29 00:32:21.317 2024-02-29 00:32:21.317 6300 FEE 442904 19952 6107051 2024-02-29 00:32:21.317 2024-02-29 00:32:21.317 56700 TIP 442904 20272 6107091 2024-02-29 00:32:45.218 2024-02-29 00:32:45.218 2100 FEE 442904 21104 6107092 2024-02-29 00:32:45.218 2024-02-29 00:32:45.218 18900 TIP 442904 18209 6107136 2024-02-29 00:34:36.131 2024-02-29 00:34:36.131 1700 FEE 442894 19158 6107137 2024-02-29 00:34:36.131 2024-02-29 00:34:36.131 15300 TIP 442894 12483 6107171 2024-02-29 00:41:13.854 2024-02-29 00:41:13.854 2100 FEE 442894 15243 6107172 2024-02-29 00:41:13.854 2024-02-29 00:41:13.854 18900 TIP 442894 21413 6107175 2024-02-29 00:41:32.015 2024-02-29 00:41:32.015 5700 FEE 442927 18378 6107176 2024-02-29 00:41:32.015 2024-02-29 00:41:32.015 51300 TIP 442927 16250 6107200 2024-02-29 00:42:39.435 2024-02-29 00:42:39.435 1000 FEE 442870 19105 6107201 2024-02-29 00:42:39.435 2024-02-29 00:42:39.435 9000 TIP 442870 21026 6107202 2024-02-29 00:42:39.826 2024-02-29 00:42:39.826 1000 FEE 442870 1173 6107203 2024-02-29 00:42:39.826 2024-02-29 00:42:39.826 9000 TIP 442870 14651 6107219 2024-02-29 00:43:10.239 2024-02-29 00:43:10.239 1000 POLL 442751 1512 6107220 2024-02-29 00:43:20.115 2024-02-29 00:43:20.115 1000 POLL 442751 5173 6107222 2024-02-29 00:44:42.935 2024-02-29 00:44:42.935 1000 FEE 442781 16753 6107223 2024-02-29 00:44:42.935 2024-02-29 00:44:42.935 9000 TIP 442781 638 6107243 2024-02-29 00:45:38.865 2024-02-29 00:45:38.865 1000 FEE 442891 15337 6107244 2024-02-29 00:45:38.865 2024-02-29 00:45:38.865 9000 TIP 442891 629 6107249 2024-02-29 00:46:08.579 2024-02-29 00:46:08.579 1000 FEE 442804 19154 6107250 2024-02-29 00:46:08.579 2024-02-29 00:46:08.579 9000 TIP 442804 19541 6107251 2024-02-29 00:46:28.791 2024-02-29 00:46:28.791 1000 FEE 442937 1472 6107252 2024-02-29 00:46:46.447 2024-02-29 00:46:46.447 2100 FEE 442922 18230 6107253 2024-02-29 00:46:46.447 2024-02-29 00:46:46.447 18900 TIP 442922 20102 6107262 2024-02-29 00:50:35.245 2024-02-29 00:50:35.245 2100 FEE 442939 1273 6107263 2024-02-29 00:50:35.245 2024-02-29 00:50:35.245 18900 TIP 442939 18816 6107275 2024-02-29 00:53:08.587 2024-02-29 00:53:08.587 5000 FEE 442904 15226 6107276 2024-02-29 00:53:08.587 2024-02-29 00:53:08.587 45000 TIP 442904 13622 6107291 2024-02-29 00:54:42.365 2024-02-29 00:54:42.365 5000 FEE 442769 18460 6107292 2024-02-29 00:54:42.365 2024-02-29 00:54:42.365 45000 TIP 442769 17148 6107321 2024-02-29 00:55:50.693 2024-02-29 00:55:50.693 5000 FEE 442942 20706 6107322 2024-02-29 00:55:50.693 2024-02-29 00:55:50.693 45000 TIP 442942 21405 6107327 2024-02-29 00:56:11.991 2024-02-29 00:56:11.991 1000 POLL 442751 4345 6107334 2024-02-29 00:56:19.885 2024-02-29 00:56:19.885 100 FEE 442313 19151 6107335 2024-02-29 00:56:19.885 2024-02-29 00:56:19.885 900 TIP 442313 9036 6107368 2024-02-29 00:57:19.525 2024-02-29 00:57:19.525 5000 FEE 442313 13599 6107369 2024-02-29 00:57:19.525 2024-02-29 00:57:19.525 45000 TIP 442313 10359 6107385 2024-02-29 01:00:05.979 2024-02-29 01:00:05.979 2100 FEE 442883 17365 6107386 2024-02-29 01:00:05.979 2024-02-29 01:00:05.979 18900 TIP 442883 4388 6107391 2024-02-29 01:02:26.814 2024-02-29 01:02:26.814 2100 FEE 441560 14939 6107392 2024-02-29 01:02:26.814 2024-02-29 01:02:26.814 18900 TIP 441560 8506 6107400 2024-02-29 01:04:55.918 2024-02-29 01:04:55.918 5700 FEE 442932 19929 6107401 2024-02-29 01:04:55.918 2024-02-29 01:04:55.918 51300 TIP 442932 19639 6107413 2024-02-29 01:05:52.413 2024-02-29 01:05:52.413 1100 FEE 442188 20581 6107414 2024-02-29 01:05:52.413 2024-02-29 01:05:52.413 9900 TIP 442188 21627 6107415 2024-02-29 01:05:52.589 2024-02-29 01:05:52.589 1100 FEE 442188 628 6107416 2024-02-29 01:05:52.589 2024-02-29 01:05:52.589 9900 TIP 442188 21520 6107451 2024-02-29 01:07:52.623 2024-02-29 01:07:52.623 1000 FEE 442751 976 6107452 2024-02-29 01:07:52.623 2024-02-29 01:07:52.623 9000 TIP 442751 19535 6107453 2024-02-29 01:07:52.903 2024-02-29 01:07:52.903 1000 FEE 442751 11220 6107454 2024-02-29 01:07:52.903 2024-02-29 01:07:52.903 9000 TIP 442751 19033 6107534 2024-02-29 01:08:18.695 2024-02-29 01:08:18.695 1100 FEE 442219 21022 6107535 2024-02-29 01:08:18.695 2024-02-29 01:08:18.695 9900 TIP 442219 20287 6107538 2024-02-29 01:08:18.983 2024-02-29 01:08:18.983 1100 FEE 442219 17157 6107539 2024-02-29 01:08:18.983 2024-02-29 01:08:18.983 9900 TIP 442219 10056 6107562 2024-02-29 01:10:52.953 2024-02-29 01:10:52.953 100 FEE 442950 13575 6107563 2024-02-29 01:10:52.953 2024-02-29 01:10:52.953 900 TIP 442950 2780 6107566 2024-02-29 01:10:55.209 2024-02-29 01:10:55.209 9000 FEE 442950 6310 6107567 2024-02-29 01:10:55.209 2024-02-29 01:10:55.209 81000 TIP 442950 10554 6107573 2024-02-29 01:11:21.622 2024-02-29 01:11:21.622 9000 FEE 442820 20871 6107574 2024-02-29 01:11:21.622 2024-02-29 01:11:21.622 81000 TIP 442820 20220 6107579 2024-02-29 01:11:52.029 2024-02-29 01:11:52.029 900 FEE 442931 19235 6107580 2024-02-29 01:11:52.029 2024-02-29 01:11:52.029 8100 TIP 442931 1784 6107581 2024-02-29 01:11:54.941 2024-02-29 01:11:54.941 2100 FEE 442657 12272 6107582 2024-02-29 01:11:54.941 2024-02-29 01:11:54.941 18900 TIP 442657 18897 6107590 2024-02-29 01:12:47.625 2024-02-29 01:12:47.625 2100 FEE 442629 12951 6107591 2024-02-29 01:12:47.625 2024-02-29 01:12:47.625 18900 TIP 442629 7998 6107622 2024-02-29 01:17:09.139 2024-02-29 01:17:09.139 2100 FEE 442861 17602 6107623 2024-02-29 01:17:09.139 2024-02-29 01:17:09.139 18900 TIP 442861 18309 6107626 2024-02-29 01:17:18.663 2024-02-29 01:17:18.663 2100 FEE 442906 11523 6107627 2024-02-29 01:17:18.663 2024-02-29 01:17:18.663 18900 TIP 442906 20225 6107628 2024-02-29 01:17:19.771 2024-02-29 01:17:19.771 2100 FEE 442856 5519 6107629 2024-02-29 01:17:19.771 2024-02-29 01:17:19.771 18900 TIP 442856 17321 6107630 2024-02-29 01:17:52.92 2024-02-29 01:17:52.92 0 FEE 442957 4654 6107636 2024-02-29 01:19:05.522 2024-02-29 01:19:05.522 2100 FEE 442941 16649 6107637 2024-02-29 01:19:05.522 2024-02-29 01:19:05.522 18900 TIP 442941 16942 6107640 2024-02-29 01:19:08.573 2024-02-29 01:19:08.573 2100 FEE 442913 17494 6107641 2024-02-29 01:19:08.573 2024-02-29 01:19:08.573 18900 TIP 442913 12819 6107642 2024-02-29 01:19:11.679 2024-02-29 01:19:11.679 2100 FEE 442920 1489 6107643 2024-02-29 01:19:11.679 2024-02-29 01:19:11.679 18900 TIP 442920 15833 6107644 2024-02-29 01:19:12.502 2024-02-29 01:19:12.502 2100 FEE 442921 18630 6107645 2024-02-29 01:19:12.502 2024-02-29 01:19:12.502 18900 TIP 442921 5961 6107727 2024-02-29 01:27:04.734 2024-02-29 01:27:04.734 2100 FEE 442932 5828 6107728 2024-02-29 01:27:04.734 2024-02-29 01:27:04.734 18900 TIP 442932 16432 6107729 2024-02-29 01:27:05.116 2024-02-29 01:27:05.116 100 FEE 442065 13216 6107730 2024-02-29 01:27:05.116 2024-02-29 01:27:05.116 900 TIP 442065 632 6107758 2024-02-29 01:33:26.146 2024-02-29 01:33:26.146 0 FEE 442965 14280 6107759 2024-02-29 01:33:43.38 2024-02-29 01:33:43.38 1000 FEE 442966 18832 6107760 2024-02-29 01:34:00.233 2024-02-29 01:34:00.233 2100 FEE 442084 2748 6107761 2024-02-29 01:34:00.233 2024-02-29 01:34:00.233 18900 TIP 442084 19524 6107774 2024-02-29 01:37:31.783 2024-02-29 01:37:31.783 7700 FEE 442931 16769 6107775 2024-02-29 01:37:31.783 2024-02-29 01:37:31.783 69300 TIP 442931 14260 6107053 2024-02-29 00:32:21.612 2024-02-29 00:32:21.612 18900 TIP 442904 5308 6107064 2024-02-29 00:32:22.716 2024-02-29 00:32:22.716 2100 FEE 442904 21469 6107065 2024-02-29 00:32:22.716 2024-02-29 00:32:22.716 18900 TIP 442904 20588 6107078 2024-02-29 00:32:43.376 2024-02-29 00:32:43.376 18900 TIP 442904 4654 6107089 2024-02-29 00:32:44.381 2024-02-29 00:32:44.381 2100 FEE 442904 20087 6107090 2024-02-29 00:32:44.381 2024-02-29 00:32:44.381 18900 TIP 442904 20504 6107106 2024-02-29 00:32:55.126 2024-02-29 00:32:55.126 2100 FEE 442921 18454 6107107 2024-02-29 00:32:55.126 2024-02-29 00:32:55.126 18900 TIP 442921 13544 6107112 2024-02-29 00:32:56.405 2024-02-29 00:32:56.405 2100 FEE 442920 17817 6107113 2024-02-29 00:32:56.405 2024-02-29 00:32:56.405 18900 TIP 442920 19303 6107125 2024-02-29 00:33:16.932 2024-02-29 00:33:16.932 2100 FEE 442914 16194 6107126 2024-02-29 00:33:16.932 2024-02-29 00:33:16.932 18900 TIP 442914 11144 6107149 2024-02-29 00:36:39.84 2024-02-29 00:36:39.84 100 FEE 442931 880 6107150 2024-02-29 00:36:39.84 2024-02-29 00:36:39.84 900 TIP 442931 5757 6107154 2024-02-29 00:38:06.875 2024-02-29 00:38:06.875 100 FEE 442932 21116 6107155 2024-02-29 00:38:06.875 2024-02-29 00:38:06.875 900 TIP 442932 18016 6107167 2024-02-29 00:40:20.233 2024-02-29 00:40:20.233 100 FEE 442922 18170 6107168 2024-02-29 00:40:20.233 2024-02-29 00:40:20.233 900 TIP 442922 977 6107189 2024-02-29 00:41:51.872 2024-02-29 00:41:51.872 100 FEE 442912 11144 6107190 2024-02-29 00:41:51.872 2024-02-29 00:41:51.872 900 TIP 442912 17124 6107228 2024-02-29 00:44:43.674 2024-02-29 00:44:43.674 1700 FEE 442936 8648 6107229 2024-02-29 00:44:43.674 2024-02-29 00:44:43.674 15300 TIP 442936 13327 6107254 2024-02-29 00:46:57.567 2024-02-29 00:46:57.567 1000 FEE 442938 4570 6107265 2024-02-29 00:51:00.05 2024-02-29 00:51:00.05 6400 FEE 442904 20464 6107266 2024-02-29 00:51:00.05 2024-02-29 00:51:00.05 57600 TIP 442904 641 6107273 2024-02-29 00:53:08.373 2024-02-29 00:53:08.373 5000 FEE 442904 21269 6107274 2024-02-29 00:53:08.373 2024-02-29 00:53:08.373 45000 TIP 442904 21387 6107283 2024-02-29 00:53:40.283 2024-02-29 00:53:40.283 1000 POLL 442751 5761 6107318 2024-02-29 00:55:06.629 2024-02-29 00:55:06.629 1000 FEE 442942 2367 6107338 2024-02-29 00:56:39.181 2024-02-29 00:56:39.181 1000 FEE 442946 18235 6107358 2024-02-29 00:57:16.724 2024-02-29 00:57:16.724 2100 FEE 442946 2195 6107359 2024-02-29 00:57:16.724 2024-02-29 00:57:16.724 18900 TIP 442946 1389 6107378 2024-02-29 00:58:11.369 2024-02-29 00:58:11.369 5000 FEE 442880 11698 6107379 2024-02-29 00:58:11.369 2024-02-29 00:58:11.369 45000 TIP 442880 17707 6107404 2024-02-29 01:05:13.278 2024-02-29 01:05:13.278 1000 FEE 442952 21263 6107407 2024-02-29 01:05:43.224 2024-02-29 01:05:43.224 1100 FEE 442084 19459 6107408 2024-02-29 01:05:43.224 2024-02-29 01:05:43.224 9900 TIP 442084 14663 6107449 2024-02-29 01:07:52.378 2024-02-29 01:07:52.378 1000 FEE 442751 19864 6107450 2024-02-29 01:07:52.378 2024-02-29 01:07:52.378 9000 TIP 442751 9916 6107459 2024-02-29 01:07:55.433 2024-02-29 01:07:55.433 1000 FEE 442313 21103 6107460 2024-02-29 01:07:55.433 2024-02-29 01:07:55.433 9000 TIP 442313 20026 6107473 2024-02-29 01:07:57.205 2024-02-29 01:07:57.205 1000 FEE 442313 919 6107474 2024-02-29 01:07:57.205 2024-02-29 01:07:57.205 9000 TIP 442313 18941 6107475 2024-02-29 01:07:57.687 2024-02-29 01:07:57.687 1000 FEE 442313 8544 6107476 2024-02-29 01:07:57.687 2024-02-29 01:07:57.687 9000 TIP 442313 21430 6107479 2024-02-29 01:07:58.09 2024-02-29 01:07:58.09 1000 FEE 442313 19117 6107480 2024-02-29 01:07:58.09 2024-02-29 01:07:58.09 9000 TIP 442313 660 6107483 2024-02-29 01:07:59.182 2024-02-29 01:07:59.182 1000 FEE 442953 18608 6107540 2024-02-29 01:08:22.828 2024-02-29 01:08:22.828 1000 FEE 442710 8162 6107541 2024-02-29 01:08:22.828 2024-02-29 01:08:22.828 9000 TIP 442710 16177 6107546 2024-02-29 01:08:23.497 2024-02-29 01:08:23.497 1000 FEE 442710 20802 6107547 2024-02-29 01:08:23.497 2024-02-29 01:08:23.497 9000 TIP 442710 7125 6107577 2024-02-29 01:11:51.47 2024-02-29 01:11:51.47 100 FEE 442931 10979 6107578 2024-02-29 01:11:51.47 2024-02-29 01:11:51.47 900 TIP 442931 19289 6107586 2024-02-29 01:12:05.703 2024-02-29 01:12:05.703 1000 FEE 442955 1712 6107589 2024-02-29 01:12:44.774 2024-02-29 01:12:44.774 10000 FEE 442956 18448 6107598 2024-02-29 01:14:35.226 2024-02-29 01:14:35.226 5700 FEE 442894 16839 6107599 2024-02-29 01:14:35.226 2024-02-29 01:14:35.226 51300 TIP 442894 2196 6107602 2024-02-29 01:14:38.733 2024-02-29 01:14:38.733 10100 FEE 442950 12356 6107603 2024-02-29 01:14:38.733 2024-02-29 01:14:38.733 90900 TIP 442950 18637 6107609 2024-02-29 01:15:20.243 2024-02-29 01:15:20.243 1000 POLL 442751 20267 6107617 2024-02-29 01:16:24.85 2024-02-29 01:16:24.85 1000 FEE 442886 659 6107618 2024-02-29 01:16:24.85 2024-02-29 01:16:24.85 9000 TIP 442886 1881 6107624 2024-02-29 01:17:15.761 2024-02-29 01:17:15.761 2100 FEE 442772 889 6107625 2024-02-29 01:17:15.761 2024-02-29 01:17:15.761 18900 TIP 442772 20781 6107776 2024-02-29 01:37:31.917 2024-02-29 01:37:31.917 7700 FEE 442931 18170 6107777 2024-02-29 01:37:31.917 2024-02-29 01:37:31.917 69300 TIP 442931 2309 6107780 2024-02-29 01:37:32.06 2024-02-29 01:37:32.06 7700 FEE 442931 21079 6107781 2024-02-29 01:37:32.06 2024-02-29 01:37:32.06 69300 TIP 442931 20106 6107784 2024-02-29 01:37:32.44 2024-02-29 01:37:32.44 7700 FEE 442931 19987 6107785 2024-02-29 01:37:32.44 2024-02-29 01:37:32.44 69300 TIP 442931 19462 6107788 2024-02-29 01:37:32.568 2024-02-29 01:37:32.568 7700 FEE 442931 1047 6107789 2024-02-29 01:37:32.568 2024-02-29 01:37:32.568 69300 TIP 442931 19463 6107832 2024-02-29 01:37:36.152 2024-02-29 01:37:36.152 15400 FEE 442931 1483 6107833 2024-02-29 01:37:36.152 2024-02-29 01:37:36.152 138600 TIP 442931 14545 6107834 2024-02-29 01:37:36.349 2024-02-29 01:37:36.349 7700 FEE 442931 18618 6107835 2024-02-29 01:37:36.349 2024-02-29 01:37:36.349 69300 TIP 442931 5758 6107844 2024-02-29 01:37:45.672 2024-02-29 01:37:45.672 7700 FEE 442931 19796 6107845 2024-02-29 01:37:45.672 2024-02-29 01:37:45.672 69300 TIP 442931 21458 6107856 2024-02-29 01:37:50.357 2024-02-29 01:37:50.357 9000 FEE 442965 9705 6107857 2024-02-29 01:37:50.357 2024-02-29 01:37:50.357 81000 TIP 442965 20045 6107889 2024-02-29 01:43:01.573 2024-02-29 01:43:01.573 10000 FEE 442820 18660 6107890 2024-02-29 01:43:01.573 2024-02-29 01:43:01.573 90000 TIP 442820 17798 6107900 2024-02-29 01:44:34.358 2024-02-29 01:44:34.358 800 FEE 442838 2722 6107901 2024-02-29 01:44:34.358 2024-02-29 01:44:34.358 7200 TIP 442838 12921 6107083 2024-02-29 00:32:43.89 2024-02-29 00:32:43.89 2100 FEE 442904 8045 6107084 2024-02-29 00:32:43.89 2024-02-29 00:32:43.89 18900 TIP 442904 929 6107103 2024-02-29 00:32:53.96 2024-02-29 00:32:53.96 10000 FEE 442927 20973 6107116 2024-02-29 00:32:57.622 2024-02-29 00:32:57.622 2100 FEE 442922 929 6107117 2024-02-29 00:32:57.622 2024-02-29 00:32:57.622 18900 TIP 442922 6058 6107140 2024-02-29 00:34:36.609 2024-02-29 00:34:36.609 1700 FEE 442894 21088 6107141 2024-02-29 00:34:36.609 2024-02-29 00:34:36.609 15300 TIP 442894 705 6107146 2024-02-29 00:36:28.9 2024-02-29 00:36:28.9 100 FEE 442904 8459 6107147 2024-02-29 00:36:28.9 2024-02-29 00:36:28.9 900 TIP 442904 7827 6107158 2024-02-29 00:38:13.164 2024-02-29 00:38:13.164 100 FEE 442927 6765 6107159 2024-02-29 00:38:13.164 2024-02-29 00:38:13.164 900 TIP 442927 7659 6107164 2024-02-29 00:39:27.344 2024-02-29 00:39:27.344 10000 FEE 442931 18241 6107165 2024-02-29 00:39:27.344 2024-02-29 00:39:27.344 90000 TIP 442931 1090 6107177 2024-02-29 00:41:32.664 2024-02-29 00:41:32.664 2100 FEE 442556 12965 6107178 2024-02-29 00:41:32.664 2024-02-29 00:41:32.664 18900 TIP 442556 9611 6107194 2024-02-29 00:42:11.832 2024-02-29 00:42:11.832 100 FEE 442859 2460 6107195 2024-02-29 00:42:11.832 2024-02-29 00:42:11.832 900 TIP 442859 656 6107204 2024-02-29 00:42:40.211 2024-02-29 00:42:40.211 1000 FEE 442870 21485 6107205 2024-02-29 00:42:40.211 2024-02-29 00:42:40.211 9000 TIP 442870 21214 6107212 2024-02-29 00:42:43.007 2024-02-29 00:42:43.007 1000 FEE 442870 8945 6107213 2024-02-29 00:42:43.007 2024-02-29 00:42:43.007 9000 TIP 442870 1060 6107226 2024-02-29 00:44:43.497 2024-02-29 00:44:43.497 1700 FEE 442936 1515 6107227 2024-02-29 00:44:43.497 2024-02-29 00:44:43.497 15300 TIP 442936 12291 6107232 2024-02-29 00:44:44.161 2024-02-29 00:44:44.161 1700 FEE 442936 20901 6107233 2024-02-29 00:44:44.161 2024-02-29 00:44:44.161 15300 TIP 442936 2329 6107290 2024-02-29 00:54:37.515 2024-02-29 00:54:37.515 1000 POLL 442751 17927 6107297 2024-02-29 00:54:54.262 2024-02-29 00:54:54.262 2100 FEE 442941 21037 6107298 2024-02-29 00:54:54.262 2024-02-29 00:54:54.262 18900 TIP 442941 21446 6107315 2024-02-29 00:55:00.945 2024-02-29 00:55:00.945 4200 FEE 442820 19864 6107316 2024-02-29 00:55:00.945 2024-02-29 00:55:00.945 37800 TIP 442820 940 6107336 2024-02-29 00:56:20.013 2024-02-29 00:56:20.013 100 FEE 442313 886 6107337 2024-02-29 00:56:20.013 2024-02-29 00:56:20.013 900 TIP 442313 18581 6107348 2024-02-29 00:57:07.405 2024-02-29 00:57:07.405 5000 FEE 442706 20616 6107349 2024-02-29 00:57:07.405 2024-02-29 00:57:07.405 45000 TIP 442706 16214 6107370 2024-02-29 00:57:19.752 2024-02-29 00:57:19.752 5000 FEE 442313 12736 6107371 2024-02-29 00:57:19.752 2024-02-29 00:57:19.752 45000 TIP 442313 880 6107380 2024-02-29 00:58:11.675 2024-02-29 00:58:11.675 5000 FEE 442880 10862 6107381 2024-02-29 00:58:11.675 2024-02-29 00:58:11.675 45000 TIP 442880 20674 6107405 2024-02-29 01:05:42.949 2024-02-29 01:05:42.949 1100 FEE 442084 1733 6107406 2024-02-29 01:05:42.949 2024-02-29 01:05:42.949 9900 TIP 442084 20642 6107409 2024-02-29 01:05:43.783 2024-02-29 01:05:43.783 1100 FEE 442084 9331 6107410 2024-02-29 01:05:43.783 2024-02-29 01:05:43.783 9900 TIP 442084 17091 6107433 2024-02-29 01:07:42.092 2024-02-29 01:07:42.092 1700 FEE 442945 19037 6107434 2024-02-29 01:07:42.092 2024-02-29 01:07:42.092 15300 TIP 442945 21344 6107437 2024-02-29 01:07:48.356 2024-02-29 01:07:48.356 1700 FEE 442944 18678 6107438 2024-02-29 01:07:48.356 2024-02-29 01:07:48.356 15300 TIP 442944 18454 6107467 2024-02-29 01:07:56.438 2024-02-29 01:07:56.438 1000 FEE 442313 18751 6107468 2024-02-29 01:07:56.438 2024-02-29 01:07:56.438 9000 TIP 442313 6160 6107484 2024-02-29 01:08:02.226 2024-02-29 01:08:02.226 1100 FEE 442177 1136 6107485 2024-02-29 01:08:02.226 2024-02-29 01:08:02.226 9900 TIP 442177 20802 6107495 2024-02-29 01:08:04.703 2024-02-29 01:08:04.703 1100 FEE 442177 4388 6107496 2024-02-29 01:08:04.703 2024-02-29 01:08:04.703 9900 TIP 442177 16309 6107501 2024-02-29 01:08:10.281 2024-02-29 01:08:10.281 1100 FEE 442185 20257 6107502 2024-02-29 01:08:10.281 2024-02-29 01:08:10.281 9900 TIP 442185 1272 6107503 2024-02-29 01:08:10.399 2024-02-29 01:08:10.399 1100 FEE 442185 20090 6107504 2024-02-29 01:08:10.399 2024-02-29 01:08:10.399 9900 TIP 442185 3706 6107509 2024-02-29 01:08:11.426 2024-02-29 01:08:11.426 1100 FEE 442201 18412 6107510 2024-02-29 01:08:11.426 2024-02-29 01:08:11.426 9900 TIP 442201 13406 6107526 2024-02-29 01:08:17.246 2024-02-29 01:08:17.246 1100 FEE 442211 4633 6107527 2024-02-29 01:08:17.246 2024-02-29 01:08:17.246 9900 TIP 442211 9655 6107530 2024-02-29 01:08:17.499 2024-02-29 01:08:17.499 1100 FEE 442211 10094 6107531 2024-02-29 01:08:17.499 2024-02-29 01:08:17.499 9900 TIP 442211 20849 6107587 2024-02-29 01:12:40.551 2024-02-29 01:12:40.551 2100 FEE 442625 17976 6107588 2024-02-29 01:12:40.551 2024-02-29 01:12:40.551 18900 TIP 442625 9350 6107594 2024-02-29 01:14:13.334 2024-02-29 01:14:13.334 18200 FEE 442956 18269 6107595 2024-02-29 01:14:13.334 2024-02-29 01:14:13.334 163800 TIP 442956 1534 6107611 2024-02-29 01:15:39.301 2024-02-29 01:15:39.301 2100 FEE 442769 6335 6107612 2024-02-29 01:15:39.301 2024-02-29 01:15:39.301 18900 TIP 442769 4624 6107655 2024-02-29 01:20:48.781 2024-02-29 01:20:48.781 5000 FEE 442719 2065 6107656 2024-02-29 01:20:48.781 2024-02-29 01:20:48.781 45000 TIP 442719 9916 6107675 2024-02-29 01:21:25.251 2024-02-29 01:21:25.251 7700 FEE 442904 10352 6107676 2024-02-29 01:21:25.251 2024-02-29 01:21:25.251 69300 TIP 442904 16848 6107682 2024-02-29 01:23:19.926 2024-02-29 01:23:19.926 1700 FEE 442958 9985 6107683 2024-02-29 01:23:19.926 2024-02-29 01:23:19.926 15300 TIP 442958 2224 6107684 2024-02-29 01:23:20.345 2024-02-29 01:23:20.345 1700 FEE 442958 5637 6107685 2024-02-29 01:23:20.345 2024-02-29 01:23:20.345 15300 TIP 442958 5069 6107688 2024-02-29 01:25:01.083 2024-02-29 01:25:01.083 100000 FEE 442962 21522 6107700 2024-02-29 01:26:53.826 2024-02-29 01:26:53.826 100 FEE 442820 14074 6107701 2024-02-29 01:26:53.826 2024-02-29 01:26:53.826 900 TIP 442820 21026 6107725 2024-02-29 01:27:04.696 2024-02-29 01:27:04.696 100 FEE 442678 19663 6107726 2024-02-29 01:27:04.696 2024-02-29 01:27:04.696 900 TIP 442678 20117 6107767 2024-02-29 01:35:46.397 2024-02-29 01:35:46.397 1000 FEE 442967 20782 6107782 2024-02-29 01:37:32.169 2024-02-29 01:37:32.169 7700 FEE 442931 12049 6107783 2024-02-29 01:37:32.169 2024-02-29 01:37:32.169 69300 TIP 442931 18543 6107798 2024-02-29 01:37:33.227 2024-02-29 01:37:33.227 7700 FEE 442931 18678 6107799 2024-02-29 01:37:33.227 2024-02-29 01:37:33.227 69300 TIP 442931 12738 6107859 2024-02-29 01:38:12.995 2024-02-29 01:38:12.995 90000 FEE 442965 17696 6107860 2024-02-29 01:38:12.995 2024-02-29 01:38:12.995 810000 TIP 442965 21374 6107863 2024-02-29 01:38:29.928 2024-02-29 01:38:29.928 6900 FEE 442931 3478 6107864 2024-02-29 01:38:29.928 2024-02-29 01:38:29.928 62100 TIP 442931 21323 6107097 2024-02-29 00:32:53.338 2024-02-29 00:32:53.338 2100 FEE 442913 4654 6107098 2024-02-29 00:32:53.338 2024-02-29 00:32:53.338 18900 TIP 442913 7097 6107110 2024-02-29 00:32:56.215 2024-02-29 00:32:56.215 2100 FEE 442920 18306 6107111 2024-02-29 00:32:56.215 2024-02-29 00:32:56.215 18900 TIP 442920 17094 6107120 2024-02-29 00:32:59.121 2024-02-29 00:32:59.121 2100 FEE 442920 706 6107121 2024-02-29 00:32:59.121 2024-02-29 00:32:59.121 18900 TIP 442920 11714 6107122 2024-02-29 00:32:59.851 2024-02-29 00:32:59.851 2100 FEE 442922 14552 6107123 2024-02-29 00:32:59.851 2024-02-29 00:32:59.851 18900 TIP 442922 20799 6107132 2024-02-29 00:34:14.588 2024-02-29 00:34:14.588 100 FEE 442925 7899 6107133 2024-02-29 00:34:14.588 2024-02-29 00:34:14.588 900 TIP 442925 21103 6107138 2024-02-29 00:34:36.377 2024-02-29 00:34:36.377 1700 FEE 442894 9351 6107139 2024-02-29 00:34:36.377 2024-02-29 00:34:36.377 15300 TIP 442894 21314 6107173 2024-02-29 00:41:28.606 2024-02-29 00:41:28.606 2100 FEE 442769 21620 6107174 2024-02-29 00:41:28.606 2024-02-29 00:41:28.606 18900 TIP 442769 4802 6107185 2024-02-29 00:41:41.175 2024-02-29 00:41:41.175 2100 FEE 442893 2508 6107186 2024-02-29 00:41:41.175 2024-02-29 00:41:41.175 18900 TIP 442893 19502 6107196 2024-02-29 00:42:27.782 2024-02-29 00:42:27.782 100 FEE 442820 6202 6107197 2024-02-29 00:42:27.782 2024-02-29 00:42:27.782 900 TIP 442820 17707 6107198 2024-02-29 00:42:38.598 2024-02-29 00:42:38.598 1000 FEE 442870 642 6107199 2024-02-29 00:42:38.598 2024-02-29 00:42:38.598 9000 TIP 442870 21555 6107214 2024-02-29 00:42:46.649 2024-02-29 00:42:46.649 1000 POLL 442163 19043 6107217 2024-02-29 00:43:03.97 2024-02-29 00:43:03.97 10000 FEE 442551 10280 6107218 2024-02-29 00:43:03.97 2024-02-29 00:43:03.97 90000 TIP 442551 14669 6107245 2024-02-29 00:45:42.343 2024-02-29 00:45:42.343 1000 POLL 442751 1007 6107264 2024-02-29 00:50:45.926 2024-02-29 00:50:45.926 1000 FEE 442940 739 6107272 2024-02-29 00:53:05.279 2024-02-29 00:53:05.279 1000 FEE 442941 664 6107284 2024-02-29 00:53:52.614 2024-02-29 00:53:52.614 2100 FEE 442769 9421 6107285 2024-02-29 00:53:52.614 2024-02-29 00:53:52.614 18900 TIP 442769 628 6107286 2024-02-29 00:53:54.966 2024-02-29 00:53:54.966 2100 FEE 442751 20090 6107287 2024-02-29 00:53:54.966 2024-02-29 00:53:54.966 18900 TIP 442751 3729 6107303 2024-02-29 00:54:54.844 2024-02-29 00:54:54.844 2100 FEE 442941 21371 6107304 2024-02-29 00:54:54.844 2024-02-29 00:54:54.844 18900 TIP 442941 27 6107313 2024-02-29 00:54:55.75 2024-02-29 00:54:55.75 2100 FEE 442941 12738 6107314 2024-02-29 00:54:55.75 2024-02-29 00:54:55.75 18900 TIP 442941 20706 6107323 2024-02-29 00:55:50.849 2024-02-29 00:55:50.849 5000 FEE 442942 722 6107324 2024-02-29 00:55:50.849 2024-02-29 00:55:50.849 45000 TIP 442942 19329 6107328 2024-02-29 00:56:19.313 2024-02-29 00:56:19.313 100 FEE 442313 891 6107329 2024-02-29 00:56:19.313 2024-02-29 00:56:19.313 900 TIP 442313 19615 6107352 2024-02-29 00:57:08.663 2024-02-29 00:57:08.663 5000 FEE 442706 21060 6107353 2024-02-29 00:57:08.663 2024-02-29 00:57:08.663 45000 TIP 442706 919 6107364 2024-02-29 00:57:17.303 2024-02-29 00:57:17.303 2100 FEE 442946 3440 6107365 2024-02-29 00:57:17.303 2024-02-29 00:57:17.303 18900 TIP 442946 18270 6107376 2024-02-29 00:57:47.692 2024-02-29 00:57:47.692 1000 FEE 442947 4035 6107395 2024-02-29 01:03:31.389 2024-02-29 01:03:31.389 2100 FEE 442734 20596 6107396 2024-02-29 01:03:31.389 2024-02-29 01:03:31.389 18900 TIP 442734 13854 6107411 2024-02-29 01:05:52.283 2024-02-29 01:05:52.283 1100 FEE 442188 713 6107412 2024-02-29 01:05:52.283 2024-02-29 01:05:52.283 9900 TIP 442188 13348 6107431 2024-02-29 01:07:41.904 2024-02-29 01:07:41.904 1700 FEE 442945 20614 6107432 2024-02-29 01:07:41.904 2024-02-29 01:07:41.904 15300 TIP 442945 20059 6107447 2024-02-29 01:07:52.152 2024-02-29 01:07:52.152 1000 FEE 442751 17494 6107448 2024-02-29 01:07:52.152 2024-02-29 01:07:52.152 9000 TIP 442751 20660 6107463 2024-02-29 01:07:55.988 2024-02-29 01:07:55.988 1000 FEE 442313 5175 6107464 2024-02-29 01:07:55.988 2024-02-29 01:07:55.988 9000 TIP 442313 10409 6107497 2024-02-29 01:08:04.834 2024-02-29 01:08:04.834 1100 FEE 442177 20906 6107498 2024-02-29 01:08:04.834 2024-02-29 01:08:04.834 9900 TIP 442177 721 6107511 2024-02-29 01:08:11.724 2024-02-29 01:08:11.724 1100 FEE 442201 12965 6107512 2024-02-29 01:08:11.724 2024-02-29 01:08:11.724 9900 TIP 442201 18453 6107536 2024-02-29 01:08:18.744 2024-02-29 01:08:18.744 1100 FEE 442219 20642 6107537 2024-02-29 01:08:18.744 2024-02-29 01:08:18.744 9900 TIP 442219 7097 6107596 2024-02-29 01:14:35.087 2024-02-29 01:14:35.087 10100 FEE 442820 9150 6107597 2024-02-29 01:14:35.087 2024-02-29 01:14:35.087 90900 TIP 442820 2123 6107607 2024-02-29 01:15:14.586 2024-02-29 01:15:14.586 10000 FEE 442862 21148 6107608 2024-02-29 01:15:14.586 2024-02-29 01:15:14.586 90000 TIP 442862 4238 6107665 2024-02-29 01:21:23.8 2024-02-29 01:21:23.8 7700 FEE 442904 1394 6107666 2024-02-29 01:21:23.8 2024-02-29 01:21:23.8 69300 TIP 442904 20881 6107686 2024-02-29 01:23:40.675 2024-02-29 01:23:40.675 1000 FEE 442961 4388 6107690 2024-02-29 01:25:27.59 2024-02-29 01:25:27.59 1000 FEE 442963 10409 6107696 2024-02-29 01:26:51.265 2024-02-29 01:26:51.265 100 FEE 442904 15200 6107697 2024-02-29 01:26:51.265 2024-02-29 01:26:51.265 900 TIP 442904 12158 6107737 2024-02-29 01:28:26.46 2024-02-29 01:28:26.46 2100 FEE 442880 16350 6107738 2024-02-29 01:28:26.46 2024-02-29 01:28:26.46 18900 TIP 442880 706 6107742 2024-02-29 01:29:36.277 2024-02-29 01:29:36.277 97000 FEE 442964 11862 6107749 2024-02-29 01:31:24.323 2024-02-29 01:31:24.323 10000 FEE 442894 2577 6107750 2024-02-29 01:31:24.323 2024-02-29 01:31:24.323 90000 TIP 442894 7682 6107778 2024-02-29 01:37:31.947 2024-02-29 01:37:31.947 7700 FEE 442931 1726 6107779 2024-02-29 01:37:31.947 2024-02-29 01:37:31.947 69300 TIP 442931 18241 6107790 2024-02-29 01:37:32.691 2024-02-29 01:37:32.691 7700 FEE 442931 1733 6107791 2024-02-29 01:37:32.691 2024-02-29 01:37:32.691 69300 TIP 442931 9438 6107812 2024-02-29 01:37:34.248 2024-02-29 01:37:34.248 7700 FEE 442931 8713 6107813 2024-02-29 01:37:34.248 2024-02-29 01:37:34.248 69300 TIP 442931 8506 6107820 2024-02-29 01:37:34.801 2024-02-29 01:37:34.801 7700 FEE 442931 624 6107821 2024-02-29 01:37:34.801 2024-02-29 01:37:34.801 69300 TIP 442931 959 6107842 2024-02-29 01:37:45.55 2024-02-29 01:37:45.55 7700 FEE 442931 620 6107843 2024-02-29 01:37:45.55 2024-02-29 01:37:45.55 69300 TIP 442931 18815 6107846 2024-02-29 01:37:46.006 2024-02-29 01:37:46.006 7700 FEE 442931 1673 6107847 2024-02-29 01:37:46.006 2024-02-29 01:37:46.006 69300 TIP 442931 15161 6107118 2024-02-29 00:32:57.898 2024-02-29 00:32:57.898 2100 FEE 442922 19773 6107119 2024-02-29 00:32:57.898 2024-02-29 00:32:57.898 18900 TIP 442922 15115 6107127 2024-02-29 00:33:54.382 2024-02-29 00:33:54.382 2100 FEE 442901 20911 6107128 2024-02-29 00:33:54.382 2024-02-29 00:33:54.382 18900 TIP 442901 9844 6107134 2024-02-29 00:34:35.831 2024-02-29 00:34:35.831 1700 FEE 442894 4624 6107135 2024-02-29 00:34:35.831 2024-02-29 00:34:35.831 15300 TIP 442894 7992 6107148 2024-02-29 00:36:31.726 2024-02-29 00:36:31.726 21000 FEE 442931 3656 6107152 2024-02-29 00:37:54.431 2024-02-29 00:37:54.431 100000 FEE 442932 9365 6107156 2024-02-29 00:38:08.996 2024-02-29 00:38:08.996 100 FEE 442931 11240 6107157 2024-02-29 00:38:08.996 2024-02-29 00:38:08.996 900 TIP 442931 9353 6107163 2024-02-29 00:39:08.628 2024-02-29 00:39:08.628 0 FEE 442934 5590 6107181 2024-02-29 00:41:37.264 2024-02-29 00:41:37.264 100 FEE 442927 20430 6107182 2024-02-29 00:41:37.264 2024-02-29 00:41:37.264 900 TIP 442927 18138 6107184 2024-02-29 00:41:38.884 2024-02-29 00:41:38.884 18900 TIP 442721 9341 6107187 2024-02-29 00:41:45.813 2024-02-29 00:41:45.813 2100 FEE 442918 20981 6107188 2024-02-29 00:41:45.813 2024-02-29 00:41:45.813 18900 TIP 442918 8400 6107230 2024-02-29 00:44:43.915 2024-02-29 00:44:43.915 1700 FEE 442936 20094 6107231 2024-02-29 00:44:43.915 2024-02-29 00:44:43.915 15300 TIP 442936 17237 6107237 2024-02-29 00:45:06.392 2024-02-29 00:45:06.392 1000 FEE 442840 15732 6107238 2024-02-29 00:45:06.392 2024-02-29 00:45:06.392 9000 TIP 442840 21562 6107239 2024-02-29 00:45:16.998 2024-02-29 00:45:16.998 1000 FEE 442793 666 6107240 2024-02-29 00:45:16.998 2024-02-29 00:45:16.998 9000 TIP 442793 21014 6107257 2024-02-29 00:48:58.742 2024-02-29 00:48:58.742 2100 FEE 442931 9109 6107258 2024-02-29 00:48:58.742 2024-02-29 00:48:58.742 18900 TIP 442931 20156 6107301 2024-02-29 00:54:54.672 2024-02-29 00:54:54.672 2100 FEE 442941 19981 6107302 2024-02-29 00:54:54.672 2024-02-29 00:54:54.672 18900 TIP 442941 12422 6107309 2024-02-29 00:54:55.392 2024-02-29 00:54:55.392 2100 FEE 442941 8945 6107310 2024-02-29 00:54:55.392 2024-02-29 00:54:55.392 18900 TIP 442941 18321 6107325 2024-02-29 00:56:01.331 2024-02-29 00:56:01.331 1000 FEE 442945 20225 6107330 2024-02-29 00:56:19.534 2024-02-29 00:56:19.534 100 FEE 442313 12516 6107331 2024-02-29 00:56:19.534 2024-02-29 00:56:19.534 900 TIP 442313 876 6107210 2024-02-29 00:42:42.35 2024-02-29 00:42:42.35 1000 FEE 442870 5746 6107211 2024-02-29 00:42:42.35 2024-02-29 00:42:42.35 9000 TIP 442870 4225 6107224 2024-02-29 00:44:43.214 2024-02-29 00:44:43.214 1700 FEE 442936 18557 6107225 2024-02-29 00:44:43.214 2024-02-29 00:44:43.214 15300 TIP 442936 16336 6107277 2024-02-29 00:53:31.021 2024-02-29 00:53:31.021 5000 FEE 442321 8448 6107278 2024-02-29 00:53:31.021 2024-02-29 00:53:31.021 45000 TIP 442321 5961 6107281 2024-02-29 00:53:31.35 2024-02-29 00:53:31.35 5000 FEE 442321 21172 6107282 2024-02-29 00:53:31.35 2024-02-29 00:53:31.35 45000 TIP 442321 16214 6107295 2024-02-29 00:54:54.068 2024-02-29 00:54:54.068 2100 FEE 442941 2775 6107296 2024-02-29 00:54:54.068 2024-02-29 00:54:54.068 18900 TIP 442941 16259 6107311 2024-02-29 00:54:55.572 2024-02-29 00:54:55.572 2100 FEE 442941 981 6107312 2024-02-29 00:54:55.572 2024-02-29 00:54:55.572 18900 TIP 442941 9353 6107320 2024-02-29 00:55:39.719 2024-02-29 00:55:39.719 1000 FEE 442944 20190 6107341 2024-02-29 00:56:40.285 2024-02-29 00:56:40.285 5000 FEE 442396 20168 6107342 2024-02-29 00:56:40.285 2024-02-29 00:56:40.285 45000 TIP 442396 18836 6107350 2024-02-29 00:57:08.078 2024-02-29 00:57:08.078 5000 FEE 442706 20854 6107351 2024-02-29 00:57:08.078 2024-02-29 00:57:08.078 45000 TIP 442706 980 6107356 2024-02-29 00:57:16.535 2024-02-29 00:57:16.535 2100 FEE 442946 706 6107357 2024-02-29 00:57:16.535 2024-02-29 00:57:16.535 18900 TIP 442946 12561 6107360 2024-02-29 00:57:16.923 2024-02-29 00:57:16.923 2100 FEE 442946 9476 6107361 2024-02-29 00:57:16.923 2024-02-29 00:57:16.923 18900 TIP 442946 16194 6107441 2024-02-29 01:07:51.411 2024-02-29 01:07:51.411 1000 FEE 442751 4388 6107442 2024-02-29 01:07:51.411 2024-02-29 01:07:51.411 9000 TIP 442751 1124 6107445 2024-02-29 01:07:51.905 2024-02-29 01:07:51.905 1000 FEE 442751 21356 6107446 2024-02-29 01:07:51.905 2024-02-29 01:07:51.905 9000 TIP 442751 19888 6107457 2024-02-29 01:07:55.217 2024-02-29 01:07:55.217 1000 FEE 442820 14795 6107458 2024-02-29 01:07:55.217 2024-02-29 01:07:55.217 9000 TIP 442820 19952 6107461 2024-02-29 01:07:55.737 2024-02-29 01:07:55.737 1000 FEE 442313 6360 6107462 2024-02-29 01:07:55.737 2024-02-29 01:07:55.737 9000 TIP 442313 16753 6107513 2024-02-29 01:08:11.818 2024-02-29 01:08:11.818 1100 FEE 442201 17184 6107514 2024-02-29 01:08:11.818 2024-02-29 01:08:11.818 9900 TIP 442201 5085 6107516 2024-02-29 01:08:14.026 2024-02-29 01:08:14.026 1100 FEE 442208 21233 6107517 2024-02-29 01:08:14.026 2024-02-29 01:08:14.026 9900 TIP 442208 14791 6107518 2024-02-29 01:08:14.153 2024-02-29 01:08:14.153 1100 FEE 442208 9329 6107519 2024-02-29 01:08:14.153 2024-02-29 01:08:14.153 9900 TIP 442208 7978 6107554 2024-02-29 01:08:24.41 2024-02-29 01:08:24.41 1000 FEE 442710 20841 6107555 2024-02-29 01:08:24.41 2024-02-29 01:08:24.41 9000 TIP 442710 20102 6107558 2024-02-29 01:08:24.856 2024-02-29 01:08:24.856 1000 FEE 442710 622 6107559 2024-02-29 01:08:24.856 2024-02-29 01:08:24.856 9000 TIP 442710 18449 6107568 2024-02-29 01:11:00.689 2024-02-29 01:11:00.689 100 FEE 442951 1705 6107569 2024-02-29 01:11:00.689 2024-02-29 01:11:00.689 900 TIP 442951 13246 6107583 2024-02-29 01:12:02.327 2024-02-29 01:12:02.327 9000 FEE 442931 917 6107584 2024-02-29 01:12:02.327 2024-02-29 01:12:02.327 81000 TIP 442931 11820 6107614 2024-02-29 01:16:06.193 2024-02-29 01:16:06.193 1000 FEE 442957 21430 6107653 2024-02-29 01:20:15.522 2024-02-29 01:20:15.522 3000 FEE 442751 12334 6107654 2024-02-29 01:20:15.522 2024-02-29 01:20:15.522 27000 TIP 442751 11789 6107657 2024-02-29 01:20:49.263 2024-02-29 01:20:49.263 5000 FEE 442719 20681 6107658 2024-02-29 01:20:49.263 2024-02-29 01:20:49.263 45000 TIP 442719 13767 6107661 2024-02-29 01:20:59.298 2024-02-29 01:20:59.298 5000 FEE 442952 1697 6107662 2024-02-29 01:20:59.298 2024-02-29 01:20:59.298 45000 TIP 442952 9200 6107673 2024-02-29 01:21:25.095 2024-02-29 01:21:25.095 7700 FEE 442904 1310 6107674 2024-02-29 01:21:25.095 2024-02-29 01:21:25.095 69300 TIP 442904 20062 6107677 2024-02-29 01:21:25.392 2024-02-29 01:21:25.392 7700 FEE 442904 1175 6107678 2024-02-29 01:21:25.392 2024-02-29 01:21:25.392 69300 TIP 442904 780 6107680 2024-02-29 01:22:19.157 2024-02-29 01:22:19.157 1000 FEE 442960 21369 6107694 2024-02-29 01:26:39.809 2024-02-29 01:26:39.809 2100 FEE 442680 17602 6107695 2024-02-29 01:26:39.809 2024-02-29 01:26:39.809 18900 TIP 442680 16267 6107702 2024-02-29 01:26:54.533 2024-02-29 01:26:54.533 100 FEE 442313 17817 6107703 2024-02-29 01:26:54.533 2024-02-29 01:26:54.533 900 TIP 442313 9348 6107708 2024-02-29 01:26:57.656 2024-02-29 01:26:57.656 100 FEE 442551 14258 6107709 2024-02-29 01:26:57.656 2024-02-29 01:26:57.656 900 TIP 442551 17046 6107712 2024-02-29 01:26:59.74 2024-02-29 01:26:59.74 100 FEE 442084 13204 6107713 2024-02-29 01:26:59.74 2024-02-29 01:26:59.74 900 TIP 442084 17050 6107714 2024-02-29 01:27:00.305 2024-02-29 01:27:00.305 100 FEE 442298 5449 6107715 2024-02-29 01:27:00.305 2024-02-29 01:27:00.305 900 TIP 442298 18494 6107752 2024-02-29 01:32:04.055 2024-02-29 01:32:04.055 1000 FEE 442965 19132 6107763 2024-02-29 01:34:30.868 2024-02-29 01:34:30.868 0 FEE 442965 14503 6107769 2024-02-29 01:36:13.918 2024-02-29 01:36:13.918 1000 POLL 442163 4345 6107786 2024-02-29 01:37:32.465 2024-02-29 01:37:32.465 7700 FEE 442931 986 6107787 2024-02-29 01:37:32.465 2024-02-29 01:37:32.465 69300 TIP 442931 2088 6107792 2024-02-29 01:37:32.847 2024-02-29 01:37:32.847 7700 FEE 442931 16956 6107793 2024-02-29 01:37:32.847 2024-02-29 01:37:32.847 69300 TIP 442931 21090 6107802 2024-02-29 01:37:33.711 2024-02-29 01:37:33.711 7700 FEE 442931 6058 6107803 2024-02-29 01:37:33.711 2024-02-29 01:37:33.711 69300 TIP 442931 664 6107804 2024-02-29 01:37:33.729 2024-02-29 01:37:33.729 7700 FEE 442931 19848 6107805 2024-02-29 01:37:33.729 2024-02-29 01:37:33.729 69300 TIP 442931 18387 6107838 2024-02-29 01:37:36.639 2024-02-29 01:37:36.639 7700 FEE 442931 16680 6107839 2024-02-29 01:37:36.639 2024-02-29 01:37:36.639 69300 TIP 442931 15408 6107852 2024-02-29 01:37:49.449 2024-02-29 01:37:49.449 100 FEE 442965 681 6107853 2024-02-29 01:37:49.449 2024-02-29 01:37:49.449 900 TIP 442965 20094 6107876 2024-02-29 01:40:45.625 2024-02-29 01:40:45.625 210000 FEE 442967 1713 6107877 2024-02-29 01:40:45.625 2024-02-29 01:40:45.625 1890000 TIP 442967 10536 6107894 2024-02-29 01:43:49.133 2024-02-29 01:43:49.133 2600 FEE 442959 5809 6107895 2024-02-29 01:43:49.133 2024-02-29 01:43:49.133 23400 TIP 442959 17237 6107924 2024-02-29 01:49:41.015 2024-02-29 01:49:41.015 1000 FEE 442976 18241 6107942 2024-02-29 01:54:50.838 2024-02-29 01:54:50.838 1000 FEE 442977 18919 6107943 2024-02-29 01:54:50.838 2024-02-29 01:54:50.838 9000 TIP 442977 20163 6107950 2024-02-29 01:56:44.494 2024-02-29 01:56:44.494 10000 FEE 442894 1632 6107951 2024-02-29 01:56:44.494 2024-02-29 01:56:44.494 90000 TIP 442894 692 6107958 2024-02-29 01:57:29.061 2024-02-29 01:57:29.061 2500 FEE 442862 19286 6107959 2024-02-29 01:57:29.061 2024-02-29 01:57:29.061 22500 TIP 442862 13246 6108000 2024-02-29 02:06:15.207 2024-02-29 02:06:15.207 7000 FEE 442985 15159 6108004 2024-02-29 02:07:20.983 2024-02-29 02:07:20.983 3500 FEE 442904 9450 6108005 2024-02-29 02:07:20.983 2024-02-29 02:07:20.983 31500 TIP 442904 14552 6108031 2024-02-29 02:11:18.669 2024-02-29 02:11:18.669 300 FEE 442974 16336 6108032 2024-02-29 02:11:18.669 2024-02-29 02:11:18.669 2700 TIP 442974 2213 6107332 2024-02-29 00:56:19.682 2024-02-29 00:56:19.682 100 FEE 442313 2203 6107333 2024-02-29 00:56:19.682 2024-02-29 00:56:19.682 900 TIP 442313 14260 6107366 2024-02-29 00:57:18.999 2024-02-29 00:57:18.999 5000 FEE 442313 11288 6107367 2024-02-29 00:57:18.999 2024-02-29 00:57:18.999 45000 TIP 442313 9705 6107374 2024-02-29 00:57:20.233 2024-02-29 00:57:20.233 5000 FEE 442313 681 6107375 2024-02-29 00:57:20.233 2024-02-29 00:57:20.233 45000 TIP 442313 13177 6107403 2024-02-29 01:05:09.662 2024-02-29 01:05:09.662 1000 FEE 442951 14080 6107417 2024-02-29 01:05:52.746 2024-02-29 01:05:52.746 1100 FEE 442188 18995 6107418 2024-02-29 01:05:52.746 2024-02-29 01:05:52.746 9900 TIP 442188 4345 6107425 2024-02-29 01:05:53.444 2024-02-29 01:05:53.444 1100 FEE 442188 18270 6107426 2024-02-29 01:05:53.444 2024-02-29 01:05:53.444 9900 TIP 442188 20841 6107469 2024-02-29 01:07:56.714 2024-02-29 01:07:56.714 1000 FEE 442313 11527 6107470 2024-02-29 01:07:56.714 2024-02-29 01:07:56.714 9000 TIP 442313 10536 6107481 2024-02-29 01:07:58.327 2024-02-29 01:07:58.327 1000 FEE 442313 21455 6107482 2024-02-29 01:07:58.327 2024-02-29 01:07:58.327 9000 TIP 442313 2502 6107486 2024-02-29 01:08:02.388 2024-02-29 01:08:02.388 1100 FEE 442177 17103 6107487 2024-02-29 01:08:02.388 2024-02-29 01:08:02.388 9900 TIP 442177 16706 6107493 2024-02-29 01:08:04.387 2024-02-29 01:08:04.387 1100 FEE 442177 20811 6107494 2024-02-29 01:08:04.387 2024-02-29 01:08:04.387 9900 TIP 442177 2724 6107499 2024-02-29 01:08:05.759 2024-02-29 01:08:05.759 10000 FEE 442904 6717 6107500 2024-02-29 01:08:05.759 2024-02-29 01:08:05.759 90000 TIP 442904 4259 6107515 2024-02-29 01:08:11.941 2024-02-29 01:08:11.941 100000 FEE 442954 882 6107522 2024-02-29 01:08:14.427 2024-02-29 01:08:14.427 1100 FEE 442208 12122 6107523 2024-02-29 01:08:14.427 2024-02-29 01:08:14.427 9900 TIP 442208 16948 6107552 2024-02-29 01:08:24.176 2024-02-29 01:08:24.176 1000 FEE 442710 18817 6107553 2024-02-29 01:08:24.176 2024-02-29 01:08:24.176 9000 TIP 442710 618 6107632 2024-02-29 01:18:20.647 2024-02-29 01:18:20.647 0 FEE 442957 1213 6107633 2024-02-29 01:18:27.833 2024-02-29 01:18:27.833 2100 FEE 442710 2327 6107634 2024-02-29 01:18:27.833 2024-02-29 01:18:27.833 18900 TIP 442710 5069 6107646 2024-02-29 01:19:16.002 2024-02-29 01:19:16.002 2100 FEE 442904 7960 6107647 2024-02-29 01:19:16.002 2024-02-29 01:19:16.002 18900 TIP 442904 13097 6107704 2024-02-29 01:26:55.27 2024-02-29 01:26:55.27 100 FEE 442894 19403 6107705 2024-02-29 01:26:55.27 2024-02-29 01:26:55.27 900 TIP 442894 2390 6107716 2024-02-29 01:27:01.019 2024-02-29 01:27:01.019 100 FEE 442627 20599 6107717 2024-02-29 01:27:01.019 2024-02-29 01:27:01.019 900 TIP 442627 12261 6107718 2024-02-29 01:27:01.65 2024-02-29 01:27:01.65 100 FEE 442781 19142 6107719 2024-02-29 01:27:01.65 2024-02-29 01:27:01.65 900 TIP 442781 9 6107722 2024-02-29 01:27:03.015 2024-02-29 01:27:03.015 100 FEE 442163 21342 6107723 2024-02-29 01:27:03.015 2024-02-29 01:27:03.015 900 TIP 442163 21281 6107731 2024-02-29 01:27:05.676 2024-02-29 01:27:05.676 100 FEE 442628 9307 6107732 2024-02-29 01:27:05.676 2024-02-29 01:27:05.676 900 TIP 442628 17944 6107739 2024-02-29 01:29:02.705 2024-02-29 01:29:02.705 2100 FEE 442820 15662 6107740 2024-02-29 01:29:02.705 2024-02-29 01:29:02.705 18900 TIP 442820 18930 6107743 2024-02-29 01:29:36.956 2024-02-29 01:29:36.956 1000 FEE 442904 21228 6107744 2024-02-29 01:29:36.956 2024-02-29 01:29:36.956 9000 TIP 442904 21334 6107745 2024-02-29 01:29:37.109 2024-02-29 01:29:37.109 1000 FEE 442904 5425 6107746 2024-02-29 01:29:37.109 2024-02-29 01:29:37.109 9000 TIP 442904 16543 6107756 2024-02-29 01:33:04.746 2024-02-29 01:33:04.746 0 FEE 442965 9167 6107757 2024-02-29 01:33:20.418 2024-02-29 01:33:20.418 0 FEE 442965 18170 6107764 2024-02-29 01:34:58.991 2024-02-29 01:34:58.991 2100 FEE 442870 16830 6107765 2024-02-29 01:34:58.991 2024-02-29 01:34:58.991 18900 TIP 442870 18500 6107771 2024-02-29 01:37:17.995 2024-02-29 01:37:17.995 1000 FEE 442968 10586 6107772 2024-02-29 01:37:31.555 2024-02-29 01:37:31.555 7700 FEE 442931 21003 6107773 2024-02-29 01:37:31.555 2024-02-29 01:37:31.555 69300 TIP 442931 18188 6107796 2024-02-29 01:37:33.171 2024-02-29 01:37:33.171 7700 FEE 442931 19459 6107797 2024-02-29 01:37:33.171 2024-02-29 01:37:33.171 69300 TIP 442931 19660 6107808 2024-02-29 01:37:34.014 2024-02-29 01:37:34.014 7700 FEE 442931 18016 6107809 2024-02-29 01:37:34.014 2024-02-29 01:37:34.014 69300 TIP 442931 4984 6107818 2024-02-29 01:37:34.731 2024-02-29 01:37:34.731 7700 FEE 442931 19967 6107819 2024-02-29 01:37:34.731 2024-02-29 01:37:34.731 69300 TIP 442931 2322 6107824 2024-02-29 01:37:35.166 2024-02-29 01:37:35.166 7700 FEE 442931 4059 6107825 2024-02-29 01:37:35.166 2024-02-29 01:37:35.166 69300 TIP 442931 12220 6107840 2024-02-29 01:37:36.828 2024-02-29 01:37:36.828 7700 FEE 442931 11561 6107841 2024-02-29 01:37:36.828 2024-02-29 01:37:36.828 69300 TIP 442931 2942 6107850 2024-02-29 01:37:46.297 2024-02-29 01:37:46.297 15400 FEE 442931 811 6107851 2024-02-29 01:37:46.297 2024-02-29 01:37:46.297 138600 TIP 442931 18208 6107867 2024-02-29 01:38:30.646 2024-02-29 01:38:30.646 6900 FEE 442931 20861 6107868 2024-02-29 01:38:30.646 2024-02-29 01:38:30.646 62100 TIP 442931 20889 6107869 2024-02-29 01:38:30.783 2024-02-29 01:38:30.783 6900 FEE 442931 4292 6107870 2024-02-29 01:38:30.783 2024-02-29 01:38:30.783 62100 TIP 442931 5427 6107878 2024-02-29 01:40:56.353 2024-02-29 01:40:56.353 10000 FEE 441843 15239 6107879 2024-02-29 01:40:56.353 2024-02-29 01:40:56.353 90000 TIP 441843 19777 6107885 2024-02-29 01:42:06.377 2024-02-29 01:42:06.377 1000 FEE 442971 17708 6107923 2024-02-29 01:49:33.541 2024-02-29 01:49:33.541 1000 FEE 442975 18230 6107934 2024-02-29 01:53:11.081 2024-02-29 01:53:11.081 1000 POLL 442163 10359 6107937 2024-02-29 01:54:41.946 2024-02-29 01:54:41.946 10000 FEE 442977 18704 6107938 2024-02-29 01:54:41.946 2024-02-29 01:54:41.946 90000 TIP 442977 814 6107939 2024-02-29 01:54:44.543 2024-02-29 01:54:44.543 1000 FEE 442979 19346 6107963 2024-02-29 01:58:03.971 2024-02-29 01:58:03.971 100 FEE 442820 20180 6107964 2024-02-29 01:58:03.971 2024-02-29 01:58:03.971 900 TIP 442820 14152 6107995 2024-02-29 02:05:30.132 2024-02-29 02:05:30.132 1000 FEE 442931 14950 6107996 2024-02-29 02:05:30.132 2024-02-29 02:05:30.132 9000 TIP 442931 16505 6108006 2024-02-29 02:07:35.89 2024-02-29 02:07:35.89 100000 FEE 442986 21573 6108011 2024-02-29 02:08:08.005 2024-02-29 02:08:08.005 7700 FEE 442982 15510 6108012 2024-02-29 02:08:08.005 2024-02-29 02:08:08.005 69300 TIP 442982 4238 6108019 2024-02-29 02:08:09.052 2024-02-29 02:08:09.052 7700 FEE 442982 16356 6108020 2024-02-29 02:08:09.052 2024-02-29 02:08:09.052 69300 TIP 442982 4027 6108049 2024-02-29 02:13:53.097 2024-02-29 02:13:53.097 5700 FEE 442982 6526 6108050 2024-02-29 02:13:53.097 2024-02-29 02:13:53.097 51300 TIP 442982 9335 6108061 2024-02-29 02:15:10.891 2024-02-29 02:15:10.891 1100 FEE 442178 15271 6108062 2024-02-29 02:15:10.891 2024-02-29 02:15:10.891 9900 TIP 442178 2640 6108073 2024-02-29 02:15:35.017 2024-02-29 02:15:35.017 1100 FEE 442192 18494 6108074 2024-02-29 02:15:35.017 2024-02-29 02:15:35.017 9900 TIP 442192 10719 6108098 2024-02-29 02:19:16.85 2024-02-29 02:19:16.85 1100 FEE 442223 8080 6108099 2024-02-29 02:19:16.85 2024-02-29 02:19:16.85 9900 TIP 442223 20660 6108137 2024-02-29 02:22:54.943 2024-02-29 02:22:54.943 1100 FEE 442565 3417 6108138 2024-02-29 02:22:54.943 2024-02-29 02:22:54.943 9900 TIP 442565 9433 6108177 2024-02-29 02:28:32.867 2024-02-29 02:28:32.867 5700 FEE 443003 8505 6108178 2024-02-29 02:28:32.867 2024-02-29 02:28:32.867 51300 TIP 443003 13398 6108225 2024-02-29 02:44:27.301 2024-02-29 02:44:27.301 10000 FEE 442909 1577 6108226 2024-02-29 02:44:27.301 2024-02-29 02:44:27.301 90000 TIP 442909 14045 6108239 2024-02-29 02:47:38.922 2024-02-29 02:47:38.922 6900 FEE 443011 19005 6108240 2024-02-29 02:47:38.922 2024-02-29 02:47:38.922 62100 TIP 443011 20546 6108242 2024-02-29 02:48:04.943 2024-02-29 02:48:04.943 10000 FEE 443012 19992 6107343 2024-02-29 00:56:48.538 2024-02-29 00:56:48.538 5000 FEE 442432 19570 6107344 2024-02-29 00:56:48.538 2024-02-29 00:56:48.538 45000 TIP 442432 9084 6107345 2024-02-29 00:56:50.256 2024-02-29 00:56:50.256 2600 FEE 442904 16513 6107346 2024-02-29 00:56:50.256 2024-02-29 00:56:50.256 23400 TIP 442904 1401 6107362 2024-02-29 00:57:17.125 2024-02-29 00:57:17.125 2100 FEE 442946 770 6107363 2024-02-29 00:57:17.125 2024-02-29 00:57:17.125 18900 TIP 442946 12291 6107383 2024-02-29 00:59:18.591 2024-02-29 00:59:18.591 1000 FEE 442948 11820 6107419 2024-02-29 01:05:52.887 2024-02-29 01:05:52.887 1100 FEE 442188 9109 6107420 2024-02-29 01:05:52.887 2024-02-29 01:05:52.887 9900 TIP 442188 21379 6107435 2024-02-29 01:07:48.144 2024-02-29 01:07:48.144 1700 FEE 442944 1718 6107436 2024-02-29 01:07:48.144 2024-02-29 01:07:48.144 15300 TIP 442944 18188 6107439 2024-02-29 01:07:51.103 2024-02-29 01:07:51.103 1000 FEE 442751 14037 6107440 2024-02-29 01:07:51.103 2024-02-29 01:07:51.103 9000 TIP 442751 20109 6107443 2024-02-29 01:07:51.663 2024-02-29 01:07:51.663 1000 FEE 442751 19037 6107444 2024-02-29 01:07:51.663 2024-02-29 01:07:51.663 9000 TIP 442751 837 6107465 2024-02-29 01:07:56.231 2024-02-29 01:07:56.231 1000 FEE 442313 19148 6107466 2024-02-29 01:07:56.231 2024-02-29 01:07:56.231 9000 TIP 442313 19322 6107477 2024-02-29 01:07:57.899 2024-02-29 01:07:57.899 1000 FEE 442313 11789 6107478 2024-02-29 01:07:57.899 2024-02-29 01:07:57.899 9000 TIP 442313 21332 6107507 2024-02-29 01:08:10.674 2024-02-29 01:08:10.674 1100 FEE 442185 844 6107508 2024-02-29 01:08:10.674 2024-02-29 01:08:10.674 9900 TIP 442185 17827 6107532 2024-02-29 01:08:17.592 2024-02-29 01:08:17.592 1100 FEE 442211 844 6107533 2024-02-29 01:08:17.592 2024-02-29 01:08:17.592 9900 TIP 442211 19043 6107542 2024-02-29 01:08:23.074 2024-02-29 01:08:23.074 1000 FEE 442710 9517 6107543 2024-02-29 01:08:23.074 2024-02-29 01:08:23.074 9000 TIP 442710 15409 6107556 2024-02-29 01:08:24.619 2024-02-29 01:08:24.619 1000 FEE 442710 672 6107557 2024-02-29 01:08:24.619 2024-02-29 01:08:24.619 9000 TIP 442710 9551 6107570 2024-02-29 01:11:01.205 2024-02-29 01:11:01.205 900 FEE 442951 5829 6107571 2024-02-29 01:11:01.205 2024-02-29 01:11:01.205 8100 TIP 442951 13348 6107619 2024-02-29 01:16:55.33 2024-02-29 01:16:55.33 1000 FEE 442873 9809 6107620 2024-02-29 01:16:55.33 2024-02-29 01:16:55.33 9000 TIP 442873 18809 6107638 2024-02-29 01:19:06.843 2024-02-29 01:19:06.843 2100 FEE 442942 18008 6107639 2024-02-29 01:19:06.843 2024-02-29 01:19:06.843 18900 TIP 442942 18930 6107648 2024-02-29 01:19:18.321 2024-02-29 01:19:18.321 0 FEE 442957 5708 6107659 2024-02-29 01:20:52.778 2024-02-29 01:20:52.778 3000 FEE 442781 21498 6107660 2024-02-29 01:20:52.778 2024-02-29 01:20:52.778 27000 TIP 442781 21254 6107664 2024-02-29 01:21:09.845 2024-02-29 01:21:09.845 1000 FEE 442959 20099 6107692 2024-02-29 01:26:38.711 2024-02-29 01:26:38.711 2100 FEE 442680 21540 6107693 2024-02-29 01:26:38.711 2024-02-29 01:26:38.711 18900 TIP 442680 5852 6107736 2024-02-29 01:28:06.466 2024-02-29 01:28:06.466 1000 POLL 442163 21416 6107753 2024-02-29 01:32:10.666 2024-02-29 01:32:10.666 1100 FEE 442882 13527 6107754 2024-02-29 01:32:10.666 2024-02-29 01:32:10.666 9900 TIP 442882 673 6107836 2024-02-29 01:37:36.487 2024-02-29 01:37:36.487 7700 FEE 442931 5865 6107837 2024-02-29 01:37:36.487 2024-02-29 01:37:36.487 69300 TIP 442931 680 6107854 2024-02-29 01:37:49.646 2024-02-29 01:37:49.646 900 FEE 442965 1135 6107855 2024-02-29 01:37:49.646 2024-02-29 01:37:49.646 8100 TIP 442965 18511 6107871 2024-02-29 01:38:30.925 2024-02-29 01:38:30.925 6900 FEE 442931 963 6107872 2024-02-29 01:38:30.925 2024-02-29 01:38:30.925 62100 TIP 442931 21578 6107886 2024-02-29 01:42:09.025 2024-02-29 01:42:09.025 5400 FEE 442551 3745 6107887 2024-02-29 01:42:09.025 2024-02-29 01:42:09.025 48600 TIP 442551 19690 6107899 2024-02-29 01:44:19.342 2024-02-29 01:44:19.342 1000 POLL 442163 9450 6107908 2024-02-29 01:45:19.156 2024-02-29 01:45:19.156 10000 FEE 442973 7766 6107915 2024-02-29 01:46:39.375 2024-02-29 01:46:39.375 7700 FEE 442627 17638 6107916 2024-02-29 01:46:39.375 2024-02-29 01:46:39.375 69300 TIP 442627 19259 6107946 2024-02-29 01:56:06.401 2024-02-29 01:56:06.401 1000 FEE 442980 18769 6107960 2024-02-29 01:57:34.006 2024-02-29 01:57:34.006 200 FEE 442904 20502 6107961 2024-02-29 01:57:34.006 2024-02-29 01:57:34.006 1800 TIP 442904 2757 6107977 2024-02-29 02:03:47.096 2024-02-29 02:03:47.096 1000 FEE 442918 641 6107978 2024-02-29 02:03:47.096 2024-02-29 02:03:47.096 9000 TIP 442918 1090 6108028 2024-02-29 02:10:40.034 2024-02-29 02:10:40.034 1000 FEE 442989 17064 6108033 2024-02-29 02:11:34.13 2024-02-29 02:11:34.13 1000 FEE 442991 9261 6108034 2024-02-29 02:11:45.204 2024-02-29 02:11:45.204 1000 FEE 442992 14515 6108038 2024-02-29 02:12:29.244 2024-02-29 02:12:29.244 1000 FEE 442995 797 6108041 2024-02-29 02:13:30.291 2024-02-29 02:13:30.291 100 FEE 422335 807 6108042 2024-02-29 02:13:30.291 2024-02-29 02:13:30.291 900 TIP 422335 12507 6108054 2024-02-29 02:15:01.278 2024-02-29 02:15:01.278 1100 FEE 442751 660 6108055 2024-02-29 02:15:01.278 2024-02-29 02:15:01.278 9900 TIP 442751 9171 6108059 2024-02-29 02:15:10.76 2024-02-29 02:15:10.76 1100 FEE 442178 848 6108060 2024-02-29 02:15:10.76 2024-02-29 02:15:10.76 9900 TIP 442178 19034 6108092 2024-02-29 02:19:16.265 2024-02-29 02:19:16.265 1100 FEE 442223 6030 6108093 2024-02-29 02:19:16.265 2024-02-29 02:19:16.265 9900 TIP 442223 7998 6108096 2024-02-29 02:19:16.684 2024-02-29 02:19:16.684 1100 FEE 442223 18557 6108097 2024-02-29 02:19:16.684 2024-02-29 02:19:16.684 9900 TIP 442223 19018 6108112 2024-02-29 02:20:20.042 2024-02-29 02:20:20.042 1100 FEE 442391 10359 6108113 2024-02-29 02:20:20.042 2024-02-29 02:20:20.042 9900 TIP 442391 3360 6108143 2024-02-29 02:22:57.255 2024-02-29 02:22:57.255 1100 FEE 442565 19843 6108144 2024-02-29 02:22:57.255 2024-02-29 02:22:57.255 9900 TIP 442565 8168 6108149 2024-02-29 02:22:57.567 2024-02-29 02:22:57.567 1100 FEE 442565 2832 6108150 2024-02-29 02:22:57.567 2024-02-29 02:22:57.567 9900 TIP 442565 9809 6108179 2024-02-29 02:28:33.674 2024-02-29 02:28:33.674 5700 FEE 443008 2162 6108180 2024-02-29 02:28:33.674 2024-02-29 02:28:33.674 51300 TIP 443008 14122 6108195 2024-02-29 02:32:12.856 2024-02-29 02:32:12.856 7700 FEE 442946 6419 6108196 2024-02-29 02:32:12.856 2024-02-29 02:32:12.856 69300 TIP 442946 16543 6108197 2024-02-29 02:32:18.739 2024-02-29 02:32:18.739 7700 FEE 442960 732 6108198 2024-02-29 02:32:18.739 2024-02-29 02:32:18.739 69300 TIP 442960 3506 6108210 2024-02-29 02:35:40.182 2024-02-29 02:35:40.182 1000 FEE 443009 18904 6108233 2024-02-29 02:47:38.425 2024-02-29 02:47:38.425 6900 FEE 443011 2674 6108234 2024-02-29 02:47:38.425 2024-02-29 02:47:38.425 62100 TIP 443011 20585 6108251 2024-02-29 02:48:51.76 2024-02-29 02:48:51.76 0 FEE 443013 974 6108254 2024-02-29 02:49:03.475 2024-02-29 02:49:03.475 1000 FEE 443015 8713 6108276 2024-02-29 02:51:15.369 2024-02-29 02:51:15.369 1000 FEE 442946 19857 6108277 2024-02-29 02:51:15.369 2024-02-29 02:51:15.369 9000 TIP 442946 678 6108296 2024-02-29 02:51:24.807 2024-02-29 02:51:24.807 1000 FEE 442904 910 6108297 2024-02-29 02:51:24.807 2024-02-29 02:51:24.807 9000 TIP 442904 9331 6108298 2024-02-29 02:51:29.213 2024-02-29 02:51:29.213 1000 FEE 441779 2195 6107382 2024-02-29 00:59:02.868 2024-02-29 00:59:02.868 1000 STREAM 141924 8498 6107397 2024-02-29 01:04:02.882 2024-02-29 01:04:02.882 1000 STREAM 141924 12102 6107402 2024-02-29 01:05:02.884 2024-02-29 01:05:02.884 1000 STREAM 141924 20299 6107430 2024-02-29 01:07:02.901 2024-02-29 01:07:02.901 1000 STREAM 141924 17682 6107560 2024-02-29 01:09:02.902 2024-02-29 01:09:02.902 1000 STREAM 141924 14990 6107561 2024-02-29 01:10:02.904 2024-02-29 01:10:02.904 1000 STREAM 141924 20084 6107572 2024-02-29 01:11:02.908 2024-02-29 01:11:02.908 1000 STREAM 141924 14663 6107604 2024-02-29 01:15:02.952 2024-02-29 01:15:02.952 1000 STREAM 141924 7916 6107679 2024-02-29 01:22:02.992 2024-02-29 01:22:02.992 1000 STREAM 141924 20251 6107689 2024-02-29 01:25:03.023 2024-02-29 01:25:03.023 1000 STREAM 141924 9438 6107741 2024-02-29 01:29:03.061 2024-02-29 01:29:03.061 1000 STREAM 141924 1493 6107747 2024-02-29 01:30:03.075 2024-02-29 01:30:03.075 1000 STREAM 141924 1175 6107748 2024-02-29 01:31:03.055 2024-02-29 01:31:03.055 1000 STREAM 141924 896 6107858 2024-02-29 01:38:03.101 2024-02-29 01:38:03.101 1000 STREAM 141924 19566 6107873 2024-02-29 01:39:03.105 2024-02-29 01:39:03.105 1000 STREAM 141924 1286 6107880 2024-02-29 01:41:03.145 2024-02-29 01:41:03.145 1000 STREAM 141924 18311 6107520 2024-02-29 01:08:14.292 2024-02-29 01:08:14.292 1100 FEE 442208 21036 6107521 2024-02-29 01:08:14.292 2024-02-29 01:08:14.292 9900 TIP 442208 20585 6107524 2024-02-29 01:08:14.698 2024-02-29 01:08:14.698 1100 FEE 442208 15337 6107525 2024-02-29 01:08:14.698 2024-02-29 01:08:14.698 9900 TIP 442208 859 6107528 2024-02-29 01:08:17.392 2024-02-29 01:08:17.392 1100 FEE 442211 21334 6107529 2024-02-29 01:08:17.392 2024-02-29 01:08:17.392 9900 TIP 442211 1817 6107544 2024-02-29 01:08:23.302 2024-02-29 01:08:23.302 1000 FEE 442710 2620 6107545 2024-02-29 01:08:23.302 2024-02-29 01:08:23.302 9000 TIP 442710 4238 6107548 2024-02-29 01:08:23.708 2024-02-29 01:08:23.708 1000 FEE 442710 16177 6107549 2024-02-29 01:08:23.708 2024-02-29 01:08:23.708 9000 TIP 442710 19030 6107550 2024-02-29 01:08:23.941 2024-02-29 01:08:23.941 1000 FEE 442710 20185 6107551 2024-02-29 01:08:23.941 2024-02-29 01:08:23.941 9000 TIP 442710 17522 6107564 2024-02-29 01:10:53.188 2024-02-29 01:10:53.188 900 FEE 442950 1726 6107565 2024-02-29 01:10:53.188 2024-02-29 01:10:53.188 8100 TIP 442950 20022 6107575 2024-02-29 01:11:27.477 2024-02-29 01:11:27.477 2100 FEE 442710 8945 6107576 2024-02-29 01:11:27.477 2024-02-29 01:11:27.477 18900 TIP 442710 17891 6107600 2024-02-29 01:14:36.731 2024-02-29 01:14:36.731 2100 FEE 442576 21338 6107601 2024-02-29 01:14:36.731 2024-02-29 01:14:36.731 18900 TIP 442576 9552 6107605 2024-02-29 01:15:08.793 2024-02-29 01:15:08.793 2100 FEE 442751 899 6107606 2024-02-29 01:15:08.793 2024-02-29 01:15:08.793 18900 TIP 442751 15560 6107610 2024-02-29 01:15:35.683 2024-02-29 01:15:35.683 1000 POLL 442751 19996 6107615 2024-02-29 01:16:12.215 2024-02-29 01:16:12.215 2100 FEE 442853 20424 6107616 2024-02-29 01:16:12.215 2024-02-29 01:16:12.215 18900 TIP 442853 17707 6107650 2024-02-29 01:20:09.989 2024-02-29 01:20:09.989 1000 FEE 442958 19512 6107651 2024-02-29 01:20:13.309 2024-02-29 01:20:13.309 2100 FEE 441843 20276 6107652 2024-02-29 01:20:13.309 2024-02-29 01:20:13.309 18900 TIP 441843 6148 6107667 2024-02-29 01:21:24.595 2024-02-29 01:21:24.595 7700 FEE 442904 17696 6107668 2024-02-29 01:21:24.595 2024-02-29 01:21:24.595 69300 TIP 442904 16042 6107669 2024-02-29 01:21:24.767 2024-02-29 01:21:24.767 7700 FEE 442904 9529 6107670 2024-02-29 01:21:24.767 2024-02-29 01:21:24.767 69300 TIP 442904 2232 6107671 2024-02-29 01:21:24.949 2024-02-29 01:21:24.949 7700 FEE 442904 714 6107672 2024-02-29 01:21:24.949 2024-02-29 01:21:24.949 69300 TIP 442904 11288 6107698 2024-02-29 01:26:52.787 2024-02-29 01:26:52.787 100 FEE 442751 8664 6107699 2024-02-29 01:26:52.787 2024-02-29 01:26:52.787 900 TIP 442751 671 6107706 2024-02-29 01:26:56.891 2024-02-29 01:26:56.891 100 FEE 442710 20470 6107707 2024-02-29 01:26:56.891 2024-02-29 01:26:56.891 900 TIP 442710 620 6107710 2024-02-29 01:26:59.115 2024-02-29 01:26:59.115 100 FEE 442796 20006 6107711 2024-02-29 01:26:59.115 2024-02-29 01:26:59.115 900 TIP 442796 1090 6107720 2024-02-29 01:27:02.594 2024-02-29 01:27:02.594 100 FEE 442636 20254 6107721 2024-02-29 01:27:02.594 2024-02-29 01:27:02.594 900 TIP 442636 3342 6107733 2024-02-29 01:27:06.508 2024-02-29 01:27:06.508 100 FEE 442931 19494 6107734 2024-02-29 01:27:06.508 2024-02-29 01:27:06.508 900 TIP 442931 18423 6107794 2024-02-29 01:37:33.027 2024-02-29 01:37:33.027 7700 FEE 442931 1047 6107795 2024-02-29 01:37:33.027 2024-02-29 01:37:33.027 69300 TIP 442931 9109 6107806 2024-02-29 01:37:33.853 2024-02-29 01:37:33.853 7700 FEE 442931 21136 6107807 2024-02-29 01:37:33.853 2024-02-29 01:37:33.853 69300 TIP 442931 5565 6107814 2024-02-29 01:37:34.391 2024-02-29 01:37:34.391 7700 FEE 442931 9353 6107815 2024-02-29 01:37:34.391 2024-02-29 01:37:34.391 69300 TIP 442931 14939 6107816 2024-02-29 01:37:34.538 2024-02-29 01:37:34.538 7700 FEE 442931 21320 6107817 2024-02-29 01:37:34.538 2024-02-29 01:37:34.538 69300 TIP 442931 20922 6107828 2024-02-29 01:37:35.654 2024-02-29 01:37:35.654 7700 FEE 442931 14545 6107829 2024-02-29 01:37:35.654 2024-02-29 01:37:35.654 69300 TIP 442931 5708 6107830 2024-02-29 01:37:35.809 2024-02-29 01:37:35.809 7700 FEE 442931 14651 6107831 2024-02-29 01:37:35.809 2024-02-29 01:37:35.809 69300 TIP 442931 19033 6107874 2024-02-29 01:39:06.874 2024-02-29 01:39:06.874 1000 FEE 442969 2206 6107902 2024-02-29 01:44:35.931 2024-02-29 01:44:35.931 800 FEE 442838 19981 6107903 2024-02-29 01:44:35.931 2024-02-29 01:44:35.931 7200 TIP 442838 17827 6107909 2024-02-29 01:45:41.881 2024-02-29 01:45:41.881 1000 POLL 442751 5522 6107940 2024-02-29 01:54:46.112 2024-02-29 01:54:46.112 52100 FEE 442978 6573 6107941 2024-02-29 01:54:46.112 2024-02-29 01:54:46.112 468900 TIP 442978 13622 6107967 2024-02-29 01:58:25.979 2024-02-29 01:58:25.979 1000 FEE 442983 929 6107997 2024-02-29 02:05:32.587 2024-02-29 02:05:32.587 1000 FEE 442894 4083 6107998 2024-02-29 02:05:32.587 2024-02-29 02:05:32.587 9000 TIP 442894 11192 6108035 2024-02-29 02:11:56.667 2024-02-29 02:11:56.667 1000 FEE 442993 17817 6108043 2024-02-29 02:13:30.449 2024-02-29 02:13:30.449 900 FEE 422335 2952 6108044 2024-02-29 02:13:30.449 2024-02-29 02:13:30.449 8100 TIP 422335 5637 6108131 2024-02-29 02:22:54.563 2024-02-29 02:22:54.563 1100 FEE 442565 15806 6108132 2024-02-29 02:22:54.563 2024-02-29 02:22:54.563 9900 TIP 442565 21491 6108145 2024-02-29 02:22:57.337 2024-02-29 02:22:57.337 1100 FEE 442565 1439 6108146 2024-02-29 02:22:57.337 2024-02-29 02:22:57.337 9900 TIP 442565 703 6108151 2024-02-29 02:22:57.716 2024-02-29 02:22:57.716 1100 FEE 442565 21061 6108152 2024-02-29 02:22:57.716 2024-02-29 02:22:57.716 9900 TIP 442565 15148 6108155 2024-02-29 02:22:57.965 2024-02-29 02:22:57.965 1100 FEE 442565 663 6108156 2024-02-29 02:22:57.965 2024-02-29 02:22:57.965 9900 TIP 442565 10638 6108167 2024-02-29 02:24:39.221 2024-02-29 02:24:39.221 1000 FEE 443005 1010 6108171 2024-02-29 02:26:45.293 2024-02-29 02:26:45.293 1000 FEE 443007 21361 6108193 2024-02-29 02:32:11.421 2024-02-29 02:32:11.421 7700 FEE 442946 1130 6108194 2024-02-29 02:32:11.421 2024-02-29 02:32:11.421 69300 TIP 442946 21247 6108211 2024-02-29 02:35:43.95 2024-02-29 02:35:43.95 5700 FEE 440259 18232 6108212 2024-02-29 02:35:43.95 2024-02-29 02:35:43.95 51300 TIP 440259 2330 6108231 2024-02-29 02:47:32.706 2024-02-29 02:47:32.706 21000 FEE 440520 21609 6108232 2024-02-29 02:47:32.706 2024-02-29 02:47:32.706 189000 TIP 440520 20841 6108235 2024-02-29 02:47:38.61 2024-02-29 02:47:38.61 6900 FEE 443011 18581 6108236 2024-02-29 02:47:38.61 2024-02-29 02:47:38.61 62100 TIP 443011 18640 6108270 2024-02-29 02:51:14.585 2024-02-29 02:51:14.585 1000 FEE 442960 1480 6108271 2024-02-29 02:51:14.585 2024-02-29 02:51:14.585 9000 TIP 442960 18842 6108286 2024-02-29 02:51:23.726 2024-02-29 02:51:23.726 1000 FEE 442904 17217 6108287 2024-02-29 02:51:23.726 2024-02-29 02:51:23.726 9000 TIP 442904 11820 6108288 2024-02-29 02:51:23.908 2024-02-29 02:51:23.908 1000 FEE 442904 17001 6108289 2024-02-29 02:51:23.908 2024-02-29 02:51:23.908 9000 TIP 442904 21482 6108310 2024-02-29 02:54:02.882 2024-02-29 02:54:02.882 1100 FEE 442389 5728 6108311 2024-02-29 02:54:02.882 2024-02-29 02:54:02.882 9900 TIP 442389 16680 6108335 2024-02-29 02:56:50.996 2024-02-29 02:56:50.996 1000 FEE 443020 20058 6108342 2024-02-29 02:58:19.64 2024-02-29 02:58:19.64 0 FEE 443021 16341 6108370 2024-02-29 03:01:27.471 2024-02-29 03:01:27.471 1100 FEE 442743 8954 6108371 2024-02-29 03:01:27.471 2024-02-29 03:01:27.471 9900 TIP 442743 16706 6108401 2024-02-29 03:04:17.602 2024-02-29 03:04:17.602 2100 FEE 442930 19810 6108402 2024-02-29 03:04:17.602 2024-02-29 03:04:17.602 18900 TIP 442930 14774 6108403 2024-02-29 03:04:18.252 2024-02-29 03:04:18.252 2100 FEE 442925 963 6108404 2024-02-29 03:04:18.252 2024-02-29 03:04:18.252 18900 TIP 442925 9482 6108422 2024-02-29 03:06:04.33 2024-02-29 03:06:04.33 10000 FEE 442396 688 6108423 2024-02-29 03:06:04.33 2024-02-29 03:06:04.33 90000 TIP 442396 20788 6108424 2024-02-29 03:06:44.217 2024-02-29 03:06:44.217 1000 FEE 443032 3411 6108439 2024-02-29 03:09:41.987 2024-02-29 03:09:41.987 1700 FEE 443029 701 6107613 2024-02-29 01:16:02.977 2024-02-29 01:16:02.977 1000 STREAM 141924 13076 6107631 2024-02-29 01:18:02.97 2024-02-29 01:18:02.97 1000 STREAM 141924 19637 6107635 2024-02-29 01:19:02.977 2024-02-29 01:19:02.977 1000 STREAM 141924 18678 6107649 2024-02-29 01:20:02.988 2024-02-29 01:20:02.988 1000 STREAM 141924 18956 6107691 2024-02-29 01:26:03.861 2024-02-29 01:26:03.861 1000 STREAM 141924 21494 6107800 2024-02-29 01:37:33.489 2024-02-29 01:37:33.489 15400 FEE 442931 8448 6107801 2024-02-29 01:37:33.489 2024-02-29 01:37:33.489 138600 TIP 442931 19189 6107810 2024-02-29 01:37:34.103 2024-02-29 01:37:34.103 7700 FEE 442931 13217 6107811 2024-02-29 01:37:34.103 2024-02-29 01:37:34.103 69300 TIP 442931 6555 6107822 2024-02-29 01:37:34.94 2024-02-29 01:37:34.94 7700 FEE 442931 19105 6107823 2024-02-29 01:37:34.94 2024-02-29 01:37:34.94 69300 TIP 442931 732 6107826 2024-02-29 01:37:35.349 2024-02-29 01:37:35.349 15400 FEE 442931 19189 6107827 2024-02-29 01:37:35.349 2024-02-29 01:37:35.349 138600 TIP 442931 6191 6107861 2024-02-29 01:38:20.858 2024-02-29 01:38:20.858 6900 FEE 442951 21451 6107862 2024-02-29 01:38:20.858 2024-02-29 01:38:20.858 62100 TIP 442951 3304 6107883 2024-02-29 01:42:06.083 2024-02-29 01:42:06.083 1300 FEE 442889 17095 6107884 2024-02-29 01:42:06.083 2024-02-29 01:42:06.083 11700 TIP 442889 14941 6107892 2024-02-29 01:43:40.313 2024-02-29 01:43:40.313 10000 FEE 404908 13327 6107893 2024-02-29 01:43:40.313 2024-02-29 01:43:40.313 90000 TIP 404908 20257 6107952 2024-02-29 01:56:44.688 2024-02-29 01:56:44.688 10000 FEE 442894 16154 6107953 2024-02-29 01:56:44.688 2024-02-29 01:56:44.688 90000 TIP 442894 21116 6107954 2024-02-29 01:56:44.918 2024-02-29 01:56:44.918 10000 FEE 442894 18372 6107955 2024-02-29 01:56:44.918 2024-02-29 01:56:44.918 90000 TIP 442894 18446 6107982 2024-02-29 02:04:08.89 2024-02-29 02:04:08.89 1000 FEE 442984 21352 6107985 2024-02-29 02:04:47.295 2024-02-29 02:04:47.295 0 FEE 442984 1030 6107989 2024-02-29 02:05:21.571 2024-02-29 02:05:21.571 2100 FEE 442931 13361 6107990 2024-02-29 02:05:21.571 2024-02-29 02:05:21.571 18900 TIP 442931 12965 6107991 2024-02-29 02:05:21.937 2024-02-29 02:05:21.937 2100 FEE 442820 2061 6107992 2024-02-29 02:05:21.937 2024-02-29 02:05:21.937 18900 TIP 442820 1985 6108002 2024-02-29 02:07:07.329 2024-02-29 02:07:07.329 3300 FEE 442721 18448 6108003 2024-02-29 02:07:07.329 2024-02-29 02:07:07.329 29700 TIP 442721 12334 6108009 2024-02-29 02:08:05.543 2024-02-29 02:08:05.543 3300 FEE 442710 9346 6108010 2024-02-29 02:08:05.543 2024-02-29 02:08:05.543 29700 TIP 442710 3709 6108015 2024-02-29 02:08:08.119 2024-02-29 02:08:08.119 7700 FEE 442982 9496 6108016 2024-02-29 02:08:08.119 2024-02-29 02:08:08.119 69300 TIP 442982 19924 6108017 2024-02-29 02:08:08.264 2024-02-29 02:08:08.264 7700 FEE 442982 3506 6108018 2024-02-29 02:08:08.264 2024-02-29 02:08:08.264 69300 TIP 442982 7877 6108051 2024-02-29 02:13:53.941 2024-02-29 02:13:53.941 5700 FEE 442978 4521 6108052 2024-02-29 02:13:53.941 2024-02-29 02:13:53.941 51300 TIP 442978 20802 6108069 2024-02-29 02:15:34.774 2024-02-29 02:15:34.774 1100 FEE 442192 18640 6108070 2024-02-29 02:15:34.774 2024-02-29 02:15:34.774 9900 TIP 442192 780 6108081 2024-02-29 02:15:36.352 2024-02-29 02:15:36.352 1100 FEE 442192 1495 6108082 2024-02-29 02:15:36.352 2024-02-29 02:15:36.352 9900 TIP 442192 19462 6108125 2024-02-29 02:22:53.418 2024-02-29 02:22:53.418 1100 FEE 442565 1692 6108126 2024-02-29 02:22:53.418 2024-02-29 02:22:53.418 9900 TIP 442565 2952 6108127 2024-02-29 02:22:53.53 2024-02-29 02:22:53.53 1100 FEE 442565 21083 6108128 2024-02-29 02:22:53.53 2024-02-29 02:22:53.53 9900 TIP 442565 1438 6107848 2024-02-29 01:37:46.076 2024-02-29 01:37:46.076 7700 FEE 442931 18675 6107849 2024-02-29 01:37:46.076 2024-02-29 01:37:46.076 69300 TIP 442931 4624 6107865 2024-02-29 01:38:30.114 2024-02-29 01:38:30.114 6900 FEE 442931 21338 6107866 2024-02-29 01:38:30.114 2024-02-29 01:38:30.114 62100 TIP 442931 9366 6107897 2024-02-29 01:44:08.318 2024-02-29 01:44:08.318 2600 FEE 442952 12609 6107898 2024-02-29 01:44:08.318 2024-02-29 01:44:08.318 23400 TIP 442952 19044 6107904 2024-02-29 01:44:36.936 2024-02-29 01:44:36.936 800 FEE 441491 2367 6107905 2024-02-29 01:44:36.936 2024-02-29 01:44:36.936 7200 TIP 441491 899 6107907 2024-02-29 01:45:18.492 2024-02-29 01:45:18.492 1000 FEE 442972 769 6107910 2024-02-29 01:45:49.383 2024-02-29 01:45:49.383 1000 FEE 442751 16387 6107911 2024-02-29 01:45:49.383 2024-02-29 01:45:49.383 9000 TIP 442751 18387 6107921 2024-02-29 01:49:11.144 2024-02-29 01:49:11.144 4200 FEE 441969 20198 6107922 2024-02-29 01:49:11.144 2024-02-29 01:49:11.144 37800 TIP 441969 10063 6107928 2024-02-29 01:51:00.585 2024-02-29 01:51:00.585 0 FEE 442977 16717 6107970 2024-02-29 02:00:56.397 2024-02-29 02:00:56.397 2100 FEE 442931 19151 6107971 2024-02-29 02:00:56.397 2024-02-29 02:00:56.397 18900 TIP 442931 19488 6107980 2024-02-29 02:04:03.509 2024-02-29 02:04:03.509 1000 FEE 442929 1983 6107981 2024-02-29 02:04:03.509 2024-02-29 02:04:03.509 9000 TIP 442929 6573 6107983 2024-02-29 02:04:13.357 2024-02-29 02:04:13.357 5700 FEE 442931 2529 6107984 2024-02-29 02:04:13.357 2024-02-29 02:04:13.357 51300 TIP 442931 5306 6107987 2024-02-29 02:05:21.181 2024-02-29 02:05:21.181 2100 FEE 442904 16562 6107988 2024-02-29 02:05:21.181 2024-02-29 02:05:21.181 18900 TIP 442904 11938 6107993 2024-02-29 02:05:22.997 2024-02-29 02:05:22.997 2100 FEE 442894 19174 6107994 2024-02-29 02:05:22.997 2024-02-29 02:05:22.997 18900 TIP 442894 18772 6108013 2024-02-29 02:08:08.035 2024-02-29 02:08:08.035 7700 FEE 442982 16808 6108014 2024-02-29 02:08:08.035 2024-02-29 02:08:08.035 69300 TIP 442982 19952 6108030 2024-02-29 02:11:15.968 2024-02-29 02:11:15.968 1000 FEE 442990 20450 6108045 2024-02-29 02:13:37.759 2024-02-29 02:13:37.759 100 FEE 421309 21083 6108046 2024-02-29 02:13:37.759 2024-02-29 02:13:37.759 900 TIP 421309 8176 6108071 2024-02-29 02:15:34.954 2024-02-29 02:15:34.954 1100 FEE 442192 11516 6107875 2024-02-29 01:40:03.168 2024-02-29 01:40:03.168 1000 STREAM 141924 715 6107896 2024-02-29 01:44:03.177 2024-02-29 01:44:03.177 1000 STREAM 141924 1213 6107881 2024-02-29 01:41:43.06 2024-02-29 01:41:43.06 1000 FEE 442970 20099 6107888 2024-02-29 01:42:58.514 2024-02-29 01:42:58.514 0 FEE 442971 9916 6107930 2024-02-29 01:51:32.574 2024-02-29 01:51:32.574 3300 FEE 442848 21520 6107931 2024-02-29 01:51:32.574 2024-02-29 01:51:32.574 29700 TIP 442848 16341 6107936 2024-02-29 01:54:26.528 2024-02-29 01:54:26.528 21000 FEE 442978 19417 6107947 2024-02-29 01:56:09.432 2024-02-29 01:56:09.432 100000 FEE 442981 18664 6107948 2024-02-29 01:56:44.165 2024-02-29 01:56:44.165 10000 FEE 442894 3478 6107949 2024-02-29 01:56:44.165 2024-02-29 01:56:44.165 90000 TIP 442894 2204 6107975 2024-02-29 02:03:29.031 2024-02-29 02:03:29.031 1000 FEE 442954 13854 6107976 2024-02-29 02:03:29.031 2024-02-29 02:03:29.031 9000 TIP 442954 9275 6108007 2024-02-29 02:07:37.015 2024-02-29 02:07:37.015 1000 FEE 442987 18629 6108021 2024-02-29 02:08:09.114 2024-02-29 02:08:09.114 7700 FEE 442982 649 6108022 2024-02-29 02:08:09.114 2024-02-29 02:08:09.114 69300 TIP 442982 1564 6108023 2024-02-29 02:08:52.099 2024-02-29 02:08:52.099 7700 FEE 442978 18904 6108024 2024-02-29 02:08:52.099 2024-02-29 02:08:52.099 69300 TIP 442978 15491 6108040 2024-02-29 02:13:08.215 2024-02-29 02:13:08.215 1000 FEE 442996 9992 6108056 2024-02-29 02:15:01.579 2024-02-29 02:15:01.579 1100 FEE 442751 1611 6108057 2024-02-29 02:15:01.579 2024-02-29 02:15:01.579 9900 TIP 442751 4345 6108063 2024-02-29 02:15:11.128 2024-02-29 02:15:11.128 1100 FEE 442178 2674 6108064 2024-02-29 02:15:11.128 2024-02-29 02:15:11.128 9900 TIP 442178 14791 6108067 2024-02-29 02:15:11.602 2024-02-29 02:15:11.602 1100 FEE 442178 21599 6108068 2024-02-29 02:15:11.602 2024-02-29 02:15:11.602 9900 TIP 442178 9347 6108079 2024-02-29 02:15:35.371 2024-02-29 02:15:35.371 1100 FEE 442192 14255 6108080 2024-02-29 02:15:35.371 2024-02-29 02:15:35.371 9900 TIP 442192 6393 6108102 2024-02-29 02:20:02.054 2024-02-29 02:20:02.054 3300 FEE 442234 6164 6108103 2024-02-29 02:20:02.054 2024-02-29 02:20:02.054 29700 TIP 442234 9669 6108183 2024-02-29 02:30:22.269 2024-02-29 02:30:22.269 10000 FEE 442931 4062 6108184 2024-02-29 02:30:22.269 2024-02-29 02:30:22.269 90000 TIP 442931 683 6108201 2024-02-29 02:32:23.043 2024-02-29 02:32:23.043 7700 FEE 442960 21361 6108202 2024-02-29 02:32:23.043 2024-02-29 02:32:23.043 69300 TIP 442960 20080 6108228 2024-02-29 02:45:58.652 2024-02-29 02:45:58.652 210000 FEE 443011 6798 6108237 2024-02-29 02:47:38.79 2024-02-29 02:47:38.79 6900 FEE 443011 18380 6108238 2024-02-29 02:47:38.79 2024-02-29 02:47:38.79 62100 TIP 443011 13406 6108274 2024-02-29 02:51:15.2 2024-02-29 02:51:15.2 1000 FEE 442946 18476 6108275 2024-02-29 02:51:15.2 2024-02-29 02:51:15.2 9000 TIP 442946 1236 6108305 2024-02-29 02:52:56.825 2024-02-29 02:52:56.825 1000 FEE 442298 13527 6108306 2024-02-29 02:52:56.825 2024-02-29 02:52:56.825 9000 TIP 442298 15386 6108309 2024-02-29 02:53:38.875 2024-02-29 02:53:38.875 1000 FEE 443019 17690 6108317 2024-02-29 02:54:04.104 2024-02-29 02:54:04.104 1100 FEE 442389 2674 6108318 2024-02-29 02:54:04.104 2024-02-29 02:54:04.104 9900 TIP 442389 20094 6108343 2024-02-29 02:58:23.728 2024-02-29 02:58:23.728 1000 POLL 442751 20889 6108352 2024-02-29 02:59:01.974 2024-02-29 02:59:01.974 1100 FEE 442847 20858 6108353 2024-02-29 02:59:01.974 2024-02-29 02:59:01.974 9900 TIP 442847 5171 6108384 2024-02-29 03:01:56.485 2024-02-29 03:01:56.485 1100 FEE 442676 5942 6108385 2024-02-29 03:01:56.485 2024-02-29 03:01:56.485 9900 TIP 442676 663 6108386 2024-02-29 03:01:58.065 2024-02-29 03:01:58.065 1100 FEE 442676 8289 6108387 2024-02-29 03:01:58.065 2024-02-29 03:01:58.065 9900 TIP 442676 17094 6108389 2024-02-29 03:02:41.14 2024-02-29 03:02:41.14 1000 FEE 443026 14650 6108405 2024-02-29 03:04:52.791 2024-02-29 03:04:52.791 1000 FEE 443029 21374 6108462 2024-02-29 03:14:30.44 2024-02-29 03:14:30.44 2100 FEE 442754 6688 6108463 2024-02-29 03:14:30.44 2024-02-29 03:14:30.44 18900 TIP 442754 10016 6108481 2024-02-29 03:16:50.294 2024-02-29 03:16:50.294 1000 FEE 441886 4014 6108482 2024-02-29 03:16:50.294 2024-02-29 03:16:50.294 9000 TIP 441886 5728 6108537 2024-02-29 03:20:36.671 2024-02-29 03:20:36.671 1000 FEE 442608 6136 6108538 2024-02-29 03:20:36.671 2024-02-29 03:20:36.671 9000 TIP 442608 17727 6108539 2024-02-29 03:20:36.743 2024-02-29 03:20:36.743 3300 FEE 442662 9290 6108540 2024-02-29 03:20:36.743 2024-02-29 03:20:36.743 29700 TIP 442662 8541 6108559 2024-02-29 03:24:56.565 2024-02-29 03:24:56.565 1000 FEE 443039 18170 6108563 2024-02-29 03:25:06.646 2024-02-29 03:25:06.646 1000 FEE 443040 8168 6108579 2024-02-29 03:30:12.507 2024-02-29 03:30:12.507 1000 FEE 443043 19843 6108654 2024-02-29 03:54:25.584 2024-02-29 03:54:25.584 2100 FEE 443039 6310 6108655 2024-02-29 03:54:25.584 2024-02-29 03:54:25.584 18900 TIP 443039 21159 6108658 2024-02-29 03:54:26.479 2024-02-29 03:54:26.479 2100 FEE 443039 2330 6108659 2024-02-29 03:54:26.479 2024-02-29 03:54:26.479 18900 TIP 443039 15703 6108678 2024-02-29 03:54:43.447 2024-02-29 03:54:43.447 2100 FEE 442894 2735 6108679 2024-02-29 03:54:43.447 2024-02-29 03:54:43.447 18900 TIP 442894 9355 6108688 2024-02-29 03:54:45.025 2024-02-29 03:54:45.025 1000 FEE 443054 20852 6108691 2024-02-29 03:55:00.378 2024-02-29 03:55:00.378 2100 FEE 442831 19309 6108692 2024-02-29 03:55:00.378 2024-02-29 03:55:00.378 18900 TIP 442831 10690 6108699 2024-02-29 03:55:09.911 2024-02-29 03:55:09.911 2100 FEE 442846 16858 6108700 2024-02-29 03:55:09.911 2024-02-29 03:55:09.911 18900 TIP 442846 15045 6108713 2024-02-29 03:55:11.51 2024-02-29 03:55:11.51 2100 FEE 442846 10981 6108714 2024-02-29 03:55:11.51 2024-02-29 03:55:11.51 18900 TIP 442846 21539 6108715 2024-02-29 03:55:11.705 2024-02-29 03:55:11.705 2100 FEE 442846 974 6108716 2024-02-29 03:55:11.705 2024-02-29 03:55:11.705 18900 TIP 442846 12356 6108731 2024-02-29 04:00:04.756 2024-02-29 04:00:04.756 100000 FEE 443055 9365 6108753 2024-02-29 04:04:36.176 2024-02-29 04:04:36.176 1000 FEE 443059 7125 6108761 2024-02-29 04:06:05.1 2024-02-29 04:06:05.1 100 FEE 442981 14015 6108762 2024-02-29 04:06:05.1 2024-02-29 04:06:05.1 900 TIP 442981 651 6108792 2024-02-29 04:10:45.844 2024-02-29 04:10:45.844 500 FEE 442904 11716 6108793 2024-02-29 04:10:45.844 2024-02-29 04:10:45.844 4500 TIP 442904 1817 6108879 2024-02-29 04:17:26.038 2024-02-29 04:17:26.038 2700 FEE 443058 2293 6107882 2024-02-29 01:42:03.135 2024-02-29 01:42:03.135 1000 STREAM 141924 18393 6107891 2024-02-29 01:43:03.14 2024-02-29 01:43:03.14 1000 STREAM 141924 2780 6107906 2024-02-29 01:45:03.148 2024-02-29 01:45:03.148 1000 STREAM 141924 17707 6107917 2024-02-29 01:47:03.149 2024-02-29 01:47:03.149 1000 STREAM 141924 616 6107918 2024-02-29 01:48:03.17 2024-02-29 01:48:03.17 1000 STREAM 141924 21139 6107920 2024-02-29 01:49:03.183 2024-02-29 01:49:03.183 1000 STREAM 141924 976 6107929 2024-02-29 01:51:03.175 2024-02-29 01:51:03.175 1000 STREAM 141924 17514 6107932 2024-02-29 01:52:03.174 2024-02-29 01:52:03.174 1000 STREAM 141924 21139 6107935 2024-02-29 01:54:03.189 2024-02-29 01:54:03.189 1000 STREAM 141924 21563 6107944 2024-02-29 01:55:03.204 2024-02-29 01:55:03.204 1000 STREAM 141924 17172 6107945 2024-02-29 01:56:03.209 2024-02-29 01:56:03.209 1000 STREAM 141924 7425 6107968 2024-02-29 01:59:03.24 2024-02-29 01:59:03.24 1000 STREAM 141924 14941 6107972 2024-02-29 02:01:03.231 2024-02-29 02:01:03.231 1000 STREAM 141924 4415 6107973 2024-02-29 02:02:03.249 2024-02-29 02:02:03.249 1000 STREAM 141924 18727 6107974 2024-02-29 02:03:03.263 2024-02-29 02:03:03.263 1000 STREAM 141924 7966 6107999 2024-02-29 02:06:03.282 2024-02-29 02:06:03.282 1000 STREAM 141924 2335 6108008 2024-02-29 02:08:03.298 2024-02-29 02:08:03.298 1000 STREAM 141924 5978 6108039 2024-02-29 02:13:03.328 2024-02-29 02:13:03.328 1000 STREAM 141924 17226 6108053 2024-02-29 02:14:03.334 2024-02-29 02:14:03.334 1000 STREAM 141924 15728 6108087 2024-02-29 02:17:03.34 2024-02-29 02:17:03.34 1000 STREAM 141924 21400 6108106 2024-02-29 02:20:03.36 2024-02-29 02:20:03.36 1000 STREAM 141924 20036 6108120 2024-02-29 02:21:03.371 2024-02-29 02:21:03.371 1000 STREAM 141924 1726 6108169 2024-02-29 02:26:03.394 2024-02-29 02:26:03.394 1000 STREAM 141924 19044 6107913 2024-02-29 01:46:38.576 2024-02-29 01:46:38.576 7700 FEE 442627 20924 6107914 2024-02-29 01:46:38.576 2024-02-29 01:46:38.576 69300 TIP 442627 21263 6107919 2024-02-29 01:48:56.116 2024-02-29 01:48:56.116 1000 FEE 442974 9336 6107926 2024-02-29 01:50:33.883 2024-02-29 01:50:33.883 1000 FEE 442977 16214 6107927 2024-02-29 01:50:53.661 2024-02-29 01:50:53.661 0 FEE 442977 19533 6107957 2024-02-29 01:57:15.702 2024-02-29 01:57:15.702 210000 FEE 442982 20751 6107965 2024-02-29 01:58:05.743 2024-02-29 01:58:05.743 2600 FEE 442974 18842 6107966 2024-02-29 01:58:05.743 2024-02-29 01:58:05.743 23400 TIP 442974 16706 6108026 2024-02-29 02:09:28.415 2024-02-29 02:09:28.415 1000 FEE 442988 11515 6108037 2024-02-29 02:12:08.489 2024-02-29 02:12:08.489 1000 FEE 442994 1489 6108047 2024-02-29 02:13:38.324 2024-02-29 02:13:38.324 900 FEE 421309 16970 6108048 2024-02-29 02:13:38.324 2024-02-29 02:13:38.324 8100 TIP 421309 19777 6108083 2024-02-29 02:15:36.399 2024-02-29 02:15:36.399 1100 FEE 442192 19154 6108084 2024-02-29 02:15:36.399 2024-02-29 02:15:36.399 9900 TIP 442192 16858 6108090 2024-02-29 02:18:57.58 2024-02-29 02:18:57.58 1000 FEE 442998 20424 6108094 2024-02-29 02:19:16.437 2024-02-29 02:19:16.437 1100 FEE 442223 10063 6108095 2024-02-29 02:19:16.437 2024-02-29 02:19:16.437 9900 TIP 442223 2204 6108101 2024-02-29 02:19:56.439 2024-02-29 02:19:56.439 1000 FEE 443000 16965 6108104 2024-02-29 02:20:02.082 2024-02-29 02:20:02.082 1100 FEE 442234 688 6108105 2024-02-29 02:20:02.082 2024-02-29 02:20:02.082 9900 TIP 442234 19572 6108107 2024-02-29 02:20:15.331 2024-02-29 02:20:15.331 1000 FEE 443001 15624 6108108 2024-02-29 02:20:19.703 2024-02-29 02:20:19.703 1100 FEE 442391 5775 6108109 2024-02-29 02:20:19.703 2024-02-29 02:20:19.703 9900 TIP 442391 19096 6108110 2024-02-29 02:20:19.832 2024-02-29 02:20:19.832 1100 FEE 442391 20781 6108111 2024-02-29 02:20:19.832 2024-02-29 02:20:19.832 9900 TIP 442391 13100 6108129 2024-02-29 02:22:54.227 2024-02-29 02:22:54.227 1100 FEE 442565 10849 6108130 2024-02-29 02:22:54.227 2024-02-29 02:22:54.227 9900 TIP 442565 4027 6108135 2024-02-29 02:22:54.827 2024-02-29 02:22:54.827 1100 FEE 442565 13903 6108136 2024-02-29 02:22:54.827 2024-02-29 02:22:54.827 9900 TIP 442565 1488 6108147 2024-02-29 02:22:57.455 2024-02-29 02:22:57.455 1100 FEE 442565 21612 6108148 2024-02-29 02:22:57.455 2024-02-29 02:22:57.455 9900 TIP 442565 15147 6108176 2024-02-29 02:28:13.471 2024-02-29 02:28:13.471 10000 FEE 443008 807 6108185 2024-02-29 02:30:54.325 2024-02-29 02:30:54.325 7700 FEE 443008 14295 6108186 2024-02-29 02:30:54.325 2024-02-29 02:30:54.325 69300 TIP 443008 2065 6108187 2024-02-29 02:30:54.512 2024-02-29 02:30:54.512 7700 FEE 443008 21379 6108188 2024-02-29 02:30:54.512 2024-02-29 02:30:54.512 69300 TIP 443008 19309 6108199 2024-02-29 02:32:22.032 2024-02-29 02:32:22.032 7700 FEE 442961 1729 6108200 2024-02-29 02:32:22.032 2024-02-29 02:32:22.032 69300 TIP 442961 17976 6108243 2024-02-29 02:48:29.656 2024-02-29 02:48:29.656 2100 FEE 442982 19535 6108244 2024-02-29 02:48:29.656 2024-02-29 02:48:29.656 18900 TIP 442982 2775 6108249 2024-02-29 02:48:38.648 2024-02-29 02:48:38.648 1000 FEE 443013 10608 6108272 2024-02-29 02:51:14.671 2024-02-29 02:51:14.671 1000 FEE 442960 1609 6108273 2024-02-29 02:51:14.671 2024-02-29 02:51:14.671 9000 TIP 442960 13042 6108290 2024-02-29 02:51:24.039 2024-02-29 02:51:24.039 1000 FEE 442904 20744 6108291 2024-02-29 02:51:24.039 2024-02-29 02:51:24.039 9000 TIP 442904 21139 6108344 2024-02-29 02:58:34.105 2024-02-29 02:58:34.105 1100 FEE 442344 12261 6108345 2024-02-29 02:58:34.105 2024-02-29 02:58:34.105 9900 TIP 442344 19199 6108346 2024-02-29 02:58:34.231 2024-02-29 02:58:34.231 1100 FEE 442344 746 6108347 2024-02-29 02:58:34.231 2024-02-29 02:58:34.231 9900 TIP 442344 19888 6108348 2024-02-29 02:58:34.366 2024-02-29 02:58:34.366 1100 FEE 442344 17237 6108349 2024-02-29 02:58:34.366 2024-02-29 02:58:34.366 9900 TIP 442344 20464 6108408 2024-02-29 03:05:03.906 2024-02-29 03:05:03.906 1100 FEE 442464 20788 6108409 2024-02-29 03:05:03.906 2024-02-29 03:05:03.906 9900 TIP 442464 3392 6108412 2024-02-29 03:05:06.31 2024-02-29 03:05:06.31 1100 FEE 442464 1729 6108413 2024-02-29 03:05:06.31 2024-02-29 03:05:06.31 9900 TIP 442464 19857 6108418 2024-02-29 03:05:53.273 2024-02-29 03:05:53.273 10000 FEE 442556 18815 6108419 2024-02-29 03:05:53.273 2024-02-29 03:05:53.273 90000 TIP 442556 21501 6108436 2024-02-29 03:08:03.2 2024-02-29 03:08:03.2 0 FEE 443033 19506 6108450 2024-02-29 03:12:07.886 2024-02-29 03:12:07.886 1100 FEE 442836 15594 6108451 2024-02-29 03:12:07.886 2024-02-29 03:12:07.886 9900 TIP 442836 644 6108501 2024-02-29 03:19:16.542 2024-02-29 03:19:16.542 1000 FEE 440966 9669 6108502 2024-02-29 03:19:16.542 2024-02-29 03:19:16.542 9000 TIP 440966 21064 6108507 2024-02-29 03:19:17.158 2024-02-29 03:19:17.158 1000 FEE 440966 20280 6108508 2024-02-29 03:19:17.158 2024-02-29 03:19:17.158 9000 TIP 440966 8448 6108531 2024-02-29 03:20:35.619 2024-02-29 03:20:35.619 3300 FEE 442650 19795 6108532 2024-02-29 03:20:35.619 2024-02-29 03:20:35.619 29700 TIP 442650 15094 6108543 2024-02-29 03:20:37.234 2024-02-29 03:20:37.234 3300 FEE 442662 18005 6108544 2024-02-29 03:20:37.234 2024-02-29 03:20:37.234 29700 TIP 442662 896 6108550 2024-02-29 03:21:40.204 2024-02-29 03:21:40.204 1000 FEE 443037 5637 6108572 2024-02-29 03:28:23.943 2024-02-29 03:28:23.943 100 FEE 442676 2514 6108573 2024-02-29 03:28:23.943 2024-02-29 03:28:23.943 900 TIP 442676 9346 6108574 2024-02-29 03:28:37.687 2024-02-29 03:28:37.687 100 FEE 442547 1801 6108575 2024-02-29 03:28:37.687 2024-02-29 03:28:37.687 900 TIP 442547 20616 6108577 2024-02-29 03:29:05.063 2024-02-29 03:29:05.063 1000 FEE 443042 891 6108588 2024-02-29 03:35:53.992 2024-02-29 03:35:53.992 3300 FEE 442834 6360 6108589 2024-02-29 03:35:53.992 2024-02-29 03:35:53.992 29700 TIP 442834 738 6108601 2024-02-29 03:38:42.592 2024-02-29 03:38:42.592 7700 FEE 443011 5538 6108602 2024-02-29 03:38:42.592 2024-02-29 03:38:42.592 69300 TIP 443011 16653 6108630 2024-02-29 03:51:53.853 2024-02-29 03:51:53.853 2000 FEE 443051 21180 6108631 2024-02-29 03:51:53.853 2024-02-29 03:51:53.853 18000 TIP 443051 3440 6108644 2024-02-29 03:54:13.51 2024-02-29 03:54:13.51 2100 FEE 442894 11678 6108645 2024-02-29 03:54:13.51 2024-02-29 03:54:13.51 18900 TIP 442894 21201 6108650 2024-02-29 03:54:25.132 2024-02-29 03:54:25.132 2100 FEE 443039 16301 6108651 2024-02-29 03:54:25.132 2024-02-29 03:54:25.132 18900 TIP 443039 21451 6108666 2024-02-29 03:54:42.326 2024-02-29 03:54:42.326 2100 FEE 442894 14225 6108667 2024-02-29 03:54:42.326 2024-02-29 03:54:42.326 18900 TIP 442894 21485 6108676 2024-02-29 03:54:43.269 2024-02-29 03:54:43.269 2100 FEE 442894 20090 6108677 2024-02-29 03:54:43.269 2024-02-29 03:54:43.269 18900 TIP 442894 10554 6108701 2024-02-29 03:55:10.084 2024-02-29 03:55:10.084 2100 FEE 442846 14857 6108702 2024-02-29 03:55:10.084 2024-02-29 03:55:10.084 18900 TIP 442846 20258 6108737 2024-02-29 04:01:58.518 2024-02-29 04:01:58.518 1000 POLL 442751 19777 6108741 2024-02-29 04:02:50.005 2024-02-29 04:02:50.005 0 FEE 443057 18714 6108745 2024-02-29 04:03:19.617 2024-02-29 04:03:19.617 0 FEE 443057 14295 6108769 2024-02-29 04:07:51.956 2024-02-29 04:07:51.956 100 FEE 442973 21356 6108770 2024-02-29 04:07:51.956 2024-02-29 04:07:51.956 900 TIP 442973 18862 6108784 2024-02-29 04:10:27.416 2024-02-29 04:10:27.416 500 FEE 441843 17221 6108785 2024-02-29 04:10:27.416 2024-02-29 04:10:27.416 4500 TIP 441843 9107 6108798 2024-02-29 04:10:48.782 2024-02-29 04:10:48.782 500 FEE 442163 19910 6108065 2024-02-29 02:15:11.375 2024-02-29 02:15:11.375 1100 FEE 442178 5694 6108066 2024-02-29 02:15:11.375 2024-02-29 02:15:11.375 9900 TIP 442178 1010 6108077 2024-02-29 02:15:35.247 2024-02-29 02:15:35.247 1100 FEE 442192 15094 6108078 2024-02-29 02:15:35.247 2024-02-29 02:15:35.247 9900 TIP 442192 18174 6108088 2024-02-29 02:17:16.057 2024-02-29 02:17:16.057 0 FEE 85385 16950 6108118 2024-02-29 02:20:41.029 2024-02-29 02:20:41.029 2100 FEE 442987 5701 6108119 2024-02-29 02:20:41.029 2024-02-29 02:20:41.029 18900 TIP 442987 1000 6108121 2024-02-29 02:21:27.687 2024-02-29 02:21:27.687 1000 FEE 443002 18230 6108123 2024-02-29 02:22:53.247 2024-02-29 02:22:53.247 1100 FEE 442565 1142 6108124 2024-02-29 02:22:53.247 2024-02-29 02:22:53.247 9900 TIP 442565 18208 6108133 2024-02-29 02:22:54.703 2024-02-29 02:22:54.703 1100 FEE 442565 20245 6108134 2024-02-29 02:22:54.703 2024-02-29 02:22:54.703 9900 TIP 442565 9969 6108163 2024-02-29 02:23:38.232 2024-02-29 02:23:38.232 10000 FEE 442820 18809 6108164 2024-02-29 02:23:38.232 2024-02-29 02:23:38.232 90000 TIP 442820 16177 6108166 2024-02-29 02:24:11.813 2024-02-29 02:24:11.813 1000 FEE 443004 896 6108173 2024-02-29 02:27:41.222 2024-02-29 02:27:41.222 2100 FEE 442954 20254 6108174 2024-02-29 02:27:41.222 2024-02-29 02:27:41.222 18900 TIP 442954 1833 6108207 2024-02-29 02:34:29.737 2024-02-29 02:34:29.737 5700 FEE 440259 18637 6108208 2024-02-29 02:34:29.737 2024-02-29 02:34:29.737 51300 TIP 440259 20681 6108245 2024-02-29 02:48:33.533 2024-02-29 02:48:33.533 2100 FEE 442978 4415 6108246 2024-02-29 02:48:33.533 2024-02-29 02:48:33.533 18900 TIP 442978 9352 6108250 2024-02-29 02:48:43.334 2024-02-29 02:48:43.334 1000 FEE 443014 18828 6108256 2024-02-29 02:49:07.151 2024-02-29 02:49:07.151 1000 FEE 443016 13517 6108262 2024-02-29 02:51:12.704 2024-02-29 02:51:12.704 1000 FEE 442961 21605 6108263 2024-02-29 02:51:12.704 2024-02-29 02:51:12.704 9000 TIP 442961 6688 6108301 2024-02-29 02:52:34.121 2024-02-29 02:52:34.121 1000 FEE 441894 20326 6108302 2024-02-29 02:52:34.121 2024-02-29 02:52:34.121 9000 TIP 441894 10280 6108350 2024-02-29 02:58:36.743 2024-02-29 02:58:36.743 1100 FEE 442344 21349 6108351 2024-02-29 02:58:36.743 2024-02-29 02:58:36.743 9900 TIP 442344 18769 6108354 2024-02-29 02:59:02.499 2024-02-29 02:59:02.499 1100 FEE 442847 18262 6108355 2024-02-29 02:59:02.499 2024-02-29 02:59:02.499 9900 TIP 442847 1438 6108365 2024-02-29 03:00:05.154 2024-02-29 03:00:05.154 1000 FEE 443024 4459 6108382 2024-02-29 03:01:56.44 2024-02-29 03:01:56.44 1100 FEE 442676 9517 6108383 2024-02-29 03:01:56.44 2024-02-29 03:01:56.44 9900 TIP 442676 19463 6108392 2024-02-29 03:03:17.47 2024-02-29 03:03:17.47 0 FEE 443027 8380 6108397 2024-02-29 03:03:22.275 2024-02-29 03:03:22.275 1100 FEE 442664 11862 6108398 2024-02-29 03:03:22.275 2024-02-29 03:03:22.275 9900 TIP 442664 20246 6108414 2024-02-29 03:05:06.338 2024-02-29 03:05:06.338 1100 FEE 442464 683 6108415 2024-02-29 03:05:06.338 2024-02-29 03:05:06.338 9900 TIP 442464 18139 6108416 2024-02-29 03:05:38.611 2024-02-29 03:05:38.611 1000 FEE 442823 21263 6108417 2024-02-29 03:05:38.611 2024-02-29 03:05:38.611 9000 TIP 442823 16341 6108429 2024-02-29 03:07:29.611 2024-02-29 03:07:29.611 2100 FEE 442848 5806 6108430 2024-02-29 03:07:29.611 2024-02-29 03:07:29.611 18900 TIP 442848 16351 6108435 2024-02-29 03:07:53.221 2024-02-29 03:07:53.221 0 FEE 443033 3439 6108443 2024-02-29 03:09:42.462 2024-02-29 03:09:42.462 1700 FEE 443029 17639 6108444 2024-02-29 03:09:42.462 2024-02-29 03:09:42.462 15300 TIP 443029 19930 6108454 2024-02-29 03:13:48.654 2024-02-29 03:13:48.654 1100 FEE 442371 4654 6108455 2024-02-29 03:13:48.654 2024-02-29 03:13:48.654 9900 TIP 442371 738 6108459 2024-02-29 03:14:13.254 2024-02-29 03:14:13.254 1000 FEE 443035 1652 6108460 2024-02-29 03:14:15.173 2024-02-29 03:14:15.173 210000 FEE 441048 11820 6108461 2024-02-29 03:14:15.173 2024-02-29 03:14:15.173 1890000 TIP 441048 9169 6108468 2024-02-29 03:14:45.673 2024-02-29 03:14:45.673 1000 POLL 442163 997 6108477 2024-02-29 03:16:49.614 2024-02-29 03:16:49.614 1000 FEE 441886 18714 6108478 2024-02-29 03:16:49.614 2024-02-29 03:16:49.614 9000 TIP 441886 19836 6108494 2024-02-29 03:17:33.407 2024-02-29 03:17:33.407 1000 FEE 443036 6421 6108519 2024-02-29 03:20:25.019 2024-02-29 03:20:25.019 3300 FEE 442953 21391 6108520 2024-02-29 03:20:25.019 2024-02-29 03:20:25.019 29700 TIP 442953 21022 6108527 2024-02-29 03:20:31.244 2024-02-29 03:20:31.244 3300 FEE 442902 18956 6108528 2024-02-29 03:20:31.244 2024-02-29 03:20:31.244 29700 TIP 442902 12334 6108533 2024-02-29 03:20:35.797 2024-02-29 03:20:35.797 3300 FEE 442650 5377 6108534 2024-02-29 03:20:35.797 2024-02-29 03:20:35.797 29700 TIP 442650 992 6108656 2024-02-29 03:54:25.85 2024-02-29 03:54:25.85 2100 FEE 443039 14910 6108657 2024-02-29 03:54:25.85 2024-02-29 03:54:25.85 18900 TIP 443039 2327 6108733 2024-02-29 04:00:50.764 2024-02-29 04:00:50.764 1000 FEE 443057 9 6108749 2024-02-29 04:04:19.584 2024-02-29 04:04:19.584 2100 FEE 442904 1209 6108750 2024-02-29 04:04:19.584 2024-02-29 04:04:19.584 18900 TIP 442904 18154 6108756 2024-02-29 04:05:30.669 2024-02-29 04:05:30.669 1000 FEE 443060 4076 6108757 2024-02-29 04:05:50.056 2024-02-29 04:05:50.056 0 FEE 443057 15728 6108788 2024-02-29 04:10:32.119 2024-02-29 04:10:32.119 500 FEE 442023 21620 6108789 2024-02-29 04:10:32.119 2024-02-29 04:10:32.119 4500 TIP 442023 16633 6108804 2024-02-29 04:10:54.476 2024-02-29 04:10:54.476 500 FEE 442931 20183 6108805 2024-02-29 04:10:54.476 2024-02-29 04:10:54.476 4500 TIP 442931 21048 6108824 2024-02-29 04:13:12.505 2024-02-29 04:13:12.505 500 FEE 442033 17714 6108825 2024-02-29 04:13:12.505 2024-02-29 04:13:12.505 4500 TIP 442033 4118 6108828 2024-02-29 04:13:46.61 2024-02-29 04:13:46.61 500 FEE 442106 17094 6108829 2024-02-29 04:13:46.61 2024-02-29 04:13:46.61 4500 TIP 442106 5175 6108837 2024-02-29 04:14:26.571 2024-02-29 04:14:26.571 1000 FEE 442795 1717 6108838 2024-02-29 04:14:26.571 2024-02-29 04:14:26.571 9000 TIP 442795 12097 6108847 2024-02-29 04:16:37.149 2024-02-29 04:16:37.149 1000 POLL 442163 19153 6108863 2024-02-29 04:17:14.301 2024-02-29 04:17:14.301 2100 FEE 443025 1493 6108864 2024-02-29 04:17:14.301 2024-02-29 04:17:14.301 18900 TIP 443025 7418 6108877 2024-02-29 04:17:25.889 2024-02-29 04:17:25.889 2700 FEE 443058 776 6108878 2024-02-29 04:17:25.889 2024-02-29 04:17:25.889 24300 TIP 443058 18635 6108881 2024-02-29 04:17:26.246 2024-02-29 04:17:26.246 2700 FEE 443058 16177 6108882 2024-02-29 04:17:26.246 2024-02-29 04:17:26.246 24300 TIP 443058 16250 6108072 2024-02-29 02:15:34.954 2024-02-29 02:15:34.954 9900 TIP 442192 19243 6108075 2024-02-29 02:15:35.202 2024-02-29 02:15:35.202 1100 FEE 442192 13903 6108076 2024-02-29 02:15:35.202 2024-02-29 02:15:35.202 9900 TIP 442192 13378 6108086 2024-02-29 02:16:32.792 2024-02-29 02:16:32.792 42000 FEE 442997 21405 6108100 2024-02-29 02:19:28.109 2024-02-29 02:19:28.109 1000 FEE 442999 9336 6108114 2024-02-29 02:20:20.478 2024-02-29 02:20:20.478 1100 FEE 442391 1596 6108115 2024-02-29 02:20:20.478 2024-02-29 02:20:20.478 9900 TIP 442391 1425 6108116 2024-02-29 02:20:21.091 2024-02-29 02:20:21.091 1100 FEE 442391 11158 6108117 2024-02-29 02:20:21.091 2024-02-29 02:20:21.091 9900 TIP 442391 1549 6108153 2024-02-29 02:22:57.843 2024-02-29 02:22:57.843 1100 FEE 442565 9517 6108154 2024-02-29 02:22:57.843 2024-02-29 02:22:57.843 9900 TIP 442565 9331 6108203 2024-02-29 02:32:23.557 2024-02-29 02:32:23.557 7700 FEE 442961 19417 6108204 2024-02-29 02:32:23.557 2024-02-29 02:32:23.557 69300 TIP 442961 21620 6108213 2024-02-29 02:35:44.593 2024-02-29 02:35:44.593 5700 FEE 440259 5293 6108214 2024-02-29 02:35:44.593 2024-02-29 02:35:44.593 51300 TIP 440259 4763 6108258 2024-02-29 02:51:00.241 2024-02-29 02:51:00.241 1000 FEE 443017 20706 6108260 2024-02-29 02:51:12.526 2024-02-29 02:51:12.526 1000 FEE 442961 16594 6108261 2024-02-29 02:51:12.526 2024-02-29 02:51:12.526 9000 TIP 442961 14939 6108264 2024-02-29 02:51:12.863 2024-02-29 02:51:12.863 1000 FEE 442961 19570 6108265 2024-02-29 02:51:12.863 2024-02-29 02:51:12.863 9000 TIP 442961 827 6108266 2024-02-29 02:51:13.047 2024-02-29 02:51:13.047 1000 FEE 442961 20251 6108267 2024-02-29 02:51:13.047 2024-02-29 02:51:13.047 9000 TIP 442961 1175 6108268 2024-02-29 02:51:13.235 2024-02-29 02:51:13.235 1000 FEE 442961 2367 6108269 2024-02-29 02:51:13.235 2024-02-29 02:51:13.235 9000 TIP 442961 5779 6108278 2024-02-29 02:51:22.099 2024-02-29 02:51:22.099 1100 FEE 442547 20099 6108279 2024-02-29 02:51:22.099 2024-02-29 02:51:22.099 9900 TIP 442547 2508 6108282 2024-02-29 02:51:22.133 2024-02-29 02:51:22.133 1100 FEE 442547 940 6108283 2024-02-29 02:51:22.133 2024-02-29 02:51:22.133 9900 TIP 442547 13798 6108303 2024-02-29 02:52:55.51 2024-02-29 02:52:55.51 1000 FEE 442298 19773 6108304 2024-02-29 02:52:55.51 2024-02-29 02:52:55.51 9000 TIP 442298 2361 6108319 2024-02-29 02:54:04.276 2024-02-29 02:54:04.276 1100 FEE 442389 2519 6108320 2024-02-29 02:54:04.276 2024-02-29 02:54:04.276 9900 TIP 442389 959 6108326 2024-02-29 02:55:33.713 2024-02-29 02:55:33.713 1100 FEE 442175 1493 6108327 2024-02-29 02:55:33.713 2024-02-29 02:55:33.713 9900 TIP 442175 21520 6108332 2024-02-29 02:55:36.206 2024-02-29 02:55:36.206 1100 FEE 442175 17030 6108333 2024-02-29 02:55:36.206 2024-02-29 02:55:36.206 9900 TIP 442175 16289 6108337 2024-02-29 02:57:22.514 2024-02-29 02:57:22.514 2100 FEE 442313 19281 6108338 2024-02-29 02:57:22.514 2024-02-29 02:57:22.514 18900 TIP 442313 736 6108364 2024-02-29 03:00:04.722 2024-02-29 03:00:04.722 100000 FEE 443023 827 6108372 2024-02-29 03:01:27.645 2024-02-29 03:01:27.645 1100 FEE 442743 17455 6108373 2024-02-29 03:01:27.645 2024-02-29 03:01:27.645 9900 TIP 442743 8423 6108378 2024-02-29 03:01:39.187 2024-02-29 03:01:39.187 1100 FEE 442720 1552 6108379 2024-02-29 03:01:39.187 2024-02-29 03:01:39.187 9900 TIP 442720 2577 6108410 2024-02-29 03:05:03.941 2024-02-29 03:05:03.941 1100 FEE 442464 21455 6108411 2024-02-29 03:05:03.941 2024-02-29 03:05:03.941 9900 TIP 442464 705 6108421 2024-02-29 03:06:03.916 2024-02-29 03:06:03.916 1000 FEE 443031 2514 6108433 2024-02-29 03:07:30.478 2024-02-29 03:07:30.478 2100 FEE 442848 1493 6108434 2024-02-29 03:07:30.478 2024-02-29 03:07:30.478 18900 TIP 442848 21051 6108483 2024-02-29 03:16:50.695 2024-02-29 03:16:50.695 1000 FEE 441886 20826 6108484 2024-02-29 03:16:50.695 2024-02-29 03:16:50.695 9000 TIP 441886 19557 6108497 2024-02-29 03:19:15.672 2024-02-29 03:19:15.672 1000 FEE 440966 21064 6108498 2024-02-29 03:19:15.672 2024-02-29 03:19:15.672 9000 TIP 440966 13854 6108499 2024-02-29 03:19:16.255 2024-02-29 03:19:16.255 1000 FEE 440966 13878 6108500 2024-02-29 03:19:16.255 2024-02-29 03:19:16.255 9000 TIP 440966 20511 6108509 2024-02-29 03:19:17.446 2024-02-29 03:19:17.446 1000 FEE 440966 20757 6108510 2024-02-29 03:19:17.446 2024-02-29 03:19:17.446 9000 TIP 440966 694 6108521 2024-02-29 03:20:25.437 2024-02-29 03:20:25.437 3300 FEE 442953 19911 6108522 2024-02-29 03:20:25.437 2024-02-29 03:20:25.437 29700 TIP 442953 1245 6108548 2024-02-29 03:21:24.142 2024-02-29 03:21:24.142 10000 FEE 443034 7827 6108549 2024-02-29 03:21:24.142 2024-02-29 03:21:24.142 90000 TIP 443034 21627 6108595 2024-02-29 03:38:29.224 2024-02-29 03:38:29.224 7700 FEE 443011 19785 6108596 2024-02-29 03:38:29.224 2024-02-29 03:38:29.224 69300 TIP 443011 5578 6108597 2024-02-29 03:38:29.44 2024-02-29 03:38:29.44 15400 FEE 443011 4692 6108598 2024-02-29 03:38:29.44 2024-02-29 03:38:29.44 138600 TIP 443011 10112 6108670 2024-02-29 03:54:42.775 2024-02-29 03:54:42.775 2100 FEE 442894 18476 6108671 2024-02-29 03:54:42.775 2024-02-29 03:54:42.775 18900 TIP 442894 19332 6108705 2024-02-29 03:55:10.487 2024-02-29 03:55:10.487 2100 FEE 442846 1316 6108706 2024-02-29 03:55:10.487 2024-02-29 03:55:10.487 18900 TIP 442846 18543 6108139 2024-02-29 02:22:55.391 2024-02-29 02:22:55.391 1100 FEE 442565 9330 6108140 2024-02-29 02:22:55.391 2024-02-29 02:22:55.391 9900 TIP 442565 9482 6108141 2024-02-29 02:22:57.204 2024-02-29 02:22:57.204 2200 FEE 442565 19459 6108142 2024-02-29 02:22:57.204 2024-02-29 02:22:57.204 19800 TIP 442565 18262 6108157 2024-02-29 02:22:58.084 2024-02-29 02:22:58.084 1100 FEE 442565 669 6108158 2024-02-29 02:22:58.084 2024-02-29 02:22:58.084 9900 TIP 442565 20585 6108159 2024-02-29 02:22:58.216 2024-02-29 02:22:58.216 1100 FEE 442565 1652 6108160 2024-02-29 02:22:58.216 2024-02-29 02:22:58.216 9900 TIP 442565 15337 6108162 2024-02-29 02:23:20.377 2024-02-29 02:23:20.377 10000 FEE 443003 3506 6108170 2024-02-29 02:26:24.821 2024-02-29 02:26:24.821 1000 FEE 443006 21003 6108189 2024-02-29 02:31:00.665 2024-02-29 02:31:00.665 7700 FEE 443008 9669 6108190 2024-02-29 02:31:00.665 2024-02-29 02:31:00.665 69300 TIP 443008 19815 6108218 2024-02-29 02:38:37.288 2024-02-29 02:38:37.288 1000 FEE 443010 993 6108247 2024-02-29 02:48:37.835 2024-02-29 02:48:37.835 2100 FEE 443008 697 6108248 2024-02-29 02:48:37.835 2024-02-29 02:48:37.835 18900 TIP 443008 10519 6108284 2024-02-29 02:51:22.828 2024-02-29 02:51:22.828 1100 FEE 442547 18526 6108285 2024-02-29 02:51:22.828 2024-02-29 02:51:22.828 9900 TIP 442547 1603 6108294 2024-02-29 02:51:24.631 2024-02-29 02:51:24.631 2000 FEE 442904 15594 6108295 2024-02-29 02:51:24.631 2024-02-29 02:51:24.631 18000 TIP 442904 822 6108308 2024-02-29 02:53:23.762 2024-02-29 02:53:23.762 1000 FEE 443018 17817 6108315 2024-02-29 02:54:03.741 2024-02-29 02:54:03.741 1100 FEE 442389 20059 6108316 2024-02-29 02:54:03.741 2024-02-29 02:54:03.741 9900 TIP 442389 861 6108340 2024-02-29 02:58:09.341 2024-02-29 02:58:09.341 1000 FEE 443021 19613 6108341 2024-02-29 02:58:13.06 2024-02-29 02:58:13.06 1000 FEE 443022 1772 6108361 2024-02-29 02:59:04.595 2024-02-29 02:59:04.595 1100 FEE 442847 14941 6108362 2024-02-29 02:59:04.595 2024-02-29 02:59:04.595 9900 TIP 442847 21427 6108393 2024-02-29 03:03:21.591 2024-02-29 03:03:21.591 1100 FEE 442664 15890 6108394 2024-02-29 03:03:21.591 2024-02-29 03:03:21.591 9900 TIP 442664 16633 6108426 2024-02-29 03:07:23.305 2024-02-29 03:07:23.305 1000 FEE 443033 2151 6108431 2024-02-29 03:07:30.036 2024-02-29 03:07:30.036 2100 FEE 442848 20302 6108432 2024-02-29 03:07:30.036 2024-02-29 03:07:30.036 18900 TIP 442848 15408 6108447 2024-02-29 03:11:21.6 2024-02-29 03:11:21.6 1100 FEE 442870 11220 6108448 2024-02-29 03:11:21.6 2024-02-29 03:11:21.6 9900 TIP 442870 6148 6108471 2024-02-29 03:16:23.307 2024-02-29 03:16:23.307 1000 FEE 441886 20623 6108472 2024-02-29 03:16:23.307 2024-02-29 03:16:23.307 9000 TIP 441886 20370 6108491 2024-02-29 03:16:57.604 2024-02-29 03:16:57.604 1000 FEE 443023 17201 6108492 2024-02-29 03:16:57.604 2024-02-29 03:16:57.604 9000 TIP 443023 15180 6108505 2024-02-29 03:19:16.973 2024-02-29 03:19:16.973 1000 FEE 440966 20701 6108506 2024-02-29 03:19:16.973 2024-02-29 03:19:16.973 9000 TIP 440966 2328 6108511 2024-02-29 03:19:17.771 2024-02-29 03:19:17.771 1000 FEE 440966 19902 6108512 2024-02-29 03:19:17.771 2024-02-29 03:19:17.771 9000 TIP 440966 17707 6108517 2024-02-29 03:20:07.255 2024-02-29 03:20:07.255 1000 FEE 441137 19096 6108518 2024-02-29 03:20:07.255 2024-02-29 03:20:07.255 9000 TIP 441137 17147 6108603 2024-02-29 03:38:42.69 2024-02-29 03:38:42.69 7700 FEE 443011 16789 6108604 2024-02-29 03:38:42.69 2024-02-29 03:38:42.69 69300 TIP 443011 21365 6108607 2024-02-29 03:38:42.881 2024-02-29 03:38:42.881 7700 FEE 443011 19193 6108608 2024-02-29 03:38:42.881 2024-02-29 03:38:42.881 69300 TIP 443011 5646 6108620 2024-02-29 03:47:17.767 2024-02-29 03:47:17.767 1000 FEE 443050 711 6108626 2024-02-29 03:50:07.365 2024-02-29 03:50:07.365 0 FEE 443052 18051 6108638 2024-02-29 03:54:05.857 2024-02-29 03:54:05.857 2100 FEE 442931 17568 6108639 2024-02-29 03:54:05.857 2024-02-29 03:54:05.857 18900 TIP 442931 20059 6108648 2024-02-29 03:54:13.863 2024-02-29 03:54:13.863 2100 FEE 442894 16808 6108649 2024-02-29 03:54:13.863 2024-02-29 03:54:13.863 18900 TIP 442894 15115 6108680 2024-02-29 03:54:43.61 2024-02-29 03:54:43.61 2100 FEE 442894 1806 6108681 2024-02-29 03:54:43.61 2024-02-29 03:54:43.61 18900 TIP 442894 11897 6108727 2024-02-29 03:57:41.573 2024-02-29 03:57:41.573 0 FEE 443054 14037 6108742 2024-02-29 04:02:54.426 2024-02-29 04:02:54.426 10000 FEE 442679 20564 6108743 2024-02-29 04:02:54.426 2024-02-29 04:02:54.426 90000 TIP 442679 1602 6108763 2024-02-29 04:06:53.563 2024-02-29 04:06:53.563 1000 POLL 442751 21547 6108767 2024-02-29 04:07:25.407 2024-02-29 04:07:25.407 100 FEE 442985 1114 6108768 2024-02-29 04:07:25.407 2024-02-29 04:07:25.407 900 TIP 442985 3656 6108772 2024-02-29 04:08:27.792 2024-02-29 04:08:27.792 1000 FEE 443062 19512 6108830 2024-02-29 04:13:47.758 2024-02-29 04:13:47.758 500 FEE 442106 14381 6108831 2024-02-29 04:13:47.758 2024-02-29 04:13:47.758 4500 TIP 442106 652 6108843 2024-02-29 04:15:24.513 2024-02-29 04:15:24.513 21000 FEE 443067 16042 6108844 2024-02-29 04:15:57.577 2024-02-29 04:15:57.577 2100 FEE 442313 21398 6108845 2024-02-29 04:15:57.577 2024-02-29 04:15:57.577 18900 TIP 442313 1478 6108850 2024-02-29 04:16:55.577 2024-02-29 04:16:55.577 1000 FEE 442396 17227 6108851 2024-02-29 04:16:55.577 2024-02-29 04:16:55.577 9000 TIP 442396 7682 6108873 2024-02-29 04:17:25.499 2024-02-29 04:17:25.499 2100 FEE 442565 18735 6108874 2024-02-29 04:17:25.499 2024-02-29 04:17:25.499 18900 TIP 442565 20452 6108900 2024-02-29 04:19:39.471 2024-02-29 04:19:39.471 500 FEE 442023 19852 6108901 2024-02-29 04:19:39.471 2024-02-29 04:19:39.471 4500 TIP 442023 8168 6108172 2024-02-29 02:27:03.297 2024-02-29 02:27:03.297 1000 STREAM 141924 20744 6108181 2024-02-29 02:29:03.336 2024-02-29 02:29:03.336 1000 STREAM 141924 18556 6108191 2024-02-29 02:31:03.356 2024-02-29 02:31:03.356 1000 STREAM 141924 20554 6108192 2024-02-29 02:32:03.341 2024-02-29 02:32:03.341 1000 STREAM 141924 19118 6108205 2024-02-29 02:33:03.357 2024-02-29 02:33:03.357 1000 STREAM 141924 20912 6108206 2024-02-29 02:34:03.355 2024-02-29 02:34:03.355 1000 STREAM 141924 5703 6108209 2024-02-29 02:35:03.348 2024-02-29 02:35:03.348 1000 STREAM 141924 2029 6108215 2024-02-29 02:36:03.37 2024-02-29 02:36:03.37 1000 STREAM 141924 20094 6108217 2024-02-29 02:38:03.376 2024-02-29 02:38:03.376 1000 STREAM 141924 20257 6108220 2024-02-29 02:40:03.46 2024-02-29 02:40:03.46 1000 STREAM 141924 4079 6108221 2024-02-29 02:41:03.414 2024-02-29 02:41:03.414 1000 STREAM 141924 15273 6108224 2024-02-29 02:44:03.467 2024-02-29 02:44:03.467 1000 STREAM 141924 20152 6108227 2024-02-29 02:45:03.484 2024-02-29 02:45:03.484 1000 STREAM 141924 15094 6108229 2024-02-29 02:46:03.495 2024-02-29 02:46:03.495 1000 STREAM 141924 21374 6108230 2024-02-29 02:47:03.506 2024-02-29 02:47:03.506 1000 STREAM 141924 2013 6108437 2024-02-29 03:08:03.657 2024-02-29 03:08:03.657 1000 STREAM 141924 2703 6108438 2024-02-29 03:09:03.677 2024-02-29 03:09:03.677 1000 STREAM 141924 6382 6108446 2024-02-29 03:11:03.697 2024-02-29 03:11:03.697 1000 STREAM 141924 6421 6108453 2024-02-29 03:13:03.701 2024-02-29 03:13:03.701 1000 STREAM 141924 12368 6108469 2024-02-29 03:15:03.707 2024-02-29 03:15:03.707 1000 STREAM 141924 9863 6108175 2024-02-29 02:28:03.31 2024-02-29 02:28:03.31 1000 STREAM 141924 1741 6108182 2024-02-29 02:30:03.351 2024-02-29 02:30:03.351 1000 STREAM 141924 13575 6108216 2024-02-29 02:37:03.386 2024-02-29 02:37:03.386 1000 STREAM 141924 3213 6108219 2024-02-29 02:39:03.433 2024-02-29 02:39:03.433 1000 STREAM 141924 2459 6108222 2024-02-29 02:42:03.452 2024-02-29 02:42:03.452 1000 STREAM 141924 16789 6108223 2024-02-29 02:43:03.456 2024-02-29 02:43:03.456 1000 STREAM 141924 19639 6108252 2024-02-29 02:48:56.166 2024-02-29 02:48:56.166 1000 FEE 442848 866 6108253 2024-02-29 02:48:56.166 2024-02-29 02:48:56.166 9000 TIP 442848 20179 6108280 2024-02-29 02:51:22.123 2024-02-29 02:51:22.123 1100 FEE 442547 20581 6108281 2024-02-29 02:51:22.123 2024-02-29 02:51:22.123 9900 TIP 442547 20337 6108292 2024-02-29 02:51:24.289 2024-02-29 02:51:24.289 1000 FEE 442904 20381 6108293 2024-02-29 02:51:24.289 2024-02-29 02:51:24.289 9000 TIP 442904 19458 6108321 2024-02-29 02:54:11.753 2024-02-29 02:54:11.753 2100 FEE 442904 19992 6108322 2024-02-29 02:54:11.753 2024-02-29 02:54:11.753 18900 TIP 442904 4292 6108367 2024-02-29 03:01:24.047 2024-02-29 03:01:24.047 1000 FEE 443025 940 6108376 2024-02-29 03:01:39.07 2024-02-29 03:01:39.07 1100 FEE 442720 8400 6108377 2024-02-29 03:01:39.07 2024-02-29 03:01:39.07 9900 TIP 442720 19689 6108380 2024-02-29 03:01:56.416 2024-02-29 03:01:56.416 1100 FEE 442676 14357 6108381 2024-02-29 03:01:56.416 2024-02-29 03:01:56.416 9900 TIP 442676 1245 6108406 2024-02-29 03:04:59.386 2024-02-29 03:04:59.386 1000 FEE 443030 21620 6108441 2024-02-29 03:09:42.219 2024-02-29 03:09:42.219 1700 FEE 443029 12911 6108442 2024-02-29 03:09:42.219 2024-02-29 03:09:42.219 15300 TIP 443029 20340 6108452 2024-02-29 03:12:10.072 2024-02-29 03:12:10.072 1000 FEE 443034 20717 6108466 2024-02-29 03:14:38.226 2024-02-29 03:14:38.226 10000 FEE 440870 13854 6108467 2024-02-29 03:14:38.226 2024-02-29 03:14:38.226 90000 TIP 440870 10536 6108473 2024-02-29 03:16:24.292 2024-02-29 03:16:24.292 1000 FEE 441886 19103 6108474 2024-02-29 03:16:24.292 2024-02-29 03:16:24.292 9000 TIP 441886 18660 6108475 2024-02-29 03:16:49.216 2024-02-29 03:16:49.216 1000 FEE 441886 700 6108476 2024-02-29 03:16:49.216 2024-02-29 03:16:49.216 9000 TIP 441886 16706 6108479 2024-02-29 03:16:49.895 2024-02-29 03:16:49.895 1000 FEE 441886 20479 6108480 2024-02-29 03:16:49.895 2024-02-29 03:16:49.895 9000 TIP 441886 19449 6108485 2024-02-29 03:16:56.524 2024-02-29 03:16:56.524 1000 FEE 443023 9364 6108486 2024-02-29 03:16:56.524 2024-02-29 03:16:56.524 9000 TIP 443023 20267 6108487 2024-02-29 03:16:56.715 2024-02-29 03:16:56.715 1000 FEE 443023 20436 6108488 2024-02-29 03:16:56.715 2024-02-29 03:16:56.715 9000 TIP 443023 6160 6108489 2024-02-29 03:16:57.12 2024-02-29 03:16:57.12 2000 FEE 443023 5646 6108490 2024-02-29 03:16:57.12 2024-02-29 03:16:57.12 18000 TIP 443023 5085 6108525 2024-02-29 03:20:31.058 2024-02-29 03:20:31.058 3300 FEE 442902 1697 6108526 2024-02-29 03:20:31.058 2024-02-29 03:20:31.058 29700 TIP 442902 16571 6108529 2024-02-29 03:20:31.429 2024-02-29 03:20:31.429 3300 FEE 442902 17321 6108530 2024-02-29 03:20:31.429 2024-02-29 03:20:31.429 29700 TIP 442902 4225 6108545 2024-02-29 03:20:47.825 2024-02-29 03:20:47.825 1000 FEE 441170 5171 6108546 2024-02-29 03:20:47.825 2024-02-29 03:20:47.825 9000 TIP 441170 650 6108554 2024-02-29 03:22:12.204 2024-02-29 03:22:12.204 21000 FEE 443013 5746 6108555 2024-02-29 03:22:12.204 2024-02-29 03:22:12.204 189000 TIP 443013 19941 6108560 2024-02-29 03:24:59.45 2024-02-29 03:24:59.45 21000 FEE 442982 1720 6108561 2024-02-29 03:24:59.45 2024-02-29 03:24:59.45 189000 TIP 442982 987 6108565 2024-02-29 03:27:01.366 2024-02-29 03:27:01.366 1000 FEE 443041 3642 6108570 2024-02-29 03:28:21.373 2024-02-29 03:28:21.373 2600 FEE 443017 18359 6108571 2024-02-29 03:28:21.373 2024-02-29 03:28:21.373 23400 TIP 443017 11967 6108583 2024-02-29 03:33:11.711 2024-02-29 03:33:11.711 1000 FEE 442904 10554 6108584 2024-02-29 03:33:11.711 2024-02-29 03:33:11.711 9000 TIP 442904 9166 6108591 2024-02-29 03:36:43.828 2024-02-29 03:36:43.828 1000 FEE 443047 2367 6108605 2024-02-29 03:38:42.854 2024-02-29 03:38:42.854 7700 FEE 443011 1626 6108606 2024-02-29 03:38:42.854 2024-02-29 03:38:42.854 69300 TIP 443011 11750 6108640 2024-02-29 03:54:06.056 2024-02-29 03:54:06.056 2100 FEE 442931 2075 6108641 2024-02-29 03:54:06.056 2024-02-29 03:54:06.056 18900 TIP 442931 21575 6108660 2024-02-29 03:54:28.401 2024-02-29 03:54:28.401 2100 FEE 443027 1472 6108661 2024-02-29 03:54:28.401 2024-02-29 03:54:28.401 18900 TIP 443027 6537 6108662 2024-02-29 03:54:28.64 2024-02-29 03:54:28.64 2100 FEE 443027 19332 6108663 2024-02-29 03:54:28.64 2024-02-29 03:54:28.64 18900 TIP 443027 2757 6108674 2024-02-29 03:54:43.091 2024-02-29 03:54:43.091 2100 FEE 442894 18470 6108675 2024-02-29 03:54:43.091 2024-02-29 03:54:43.091 18900 TIP 442894 2330 6108695 2024-02-29 03:55:01.079 2024-02-29 03:55:01.079 2100 FEE 442831 1692 6108696 2024-02-29 03:55:01.079 2024-02-29 03:55:01.079 18900 TIP 442831 6578 6108697 2024-02-29 03:55:01.207 2024-02-29 03:55:01.207 1000 POLL 442751 14941 6108719 2024-02-29 03:55:12.257 2024-02-29 03:55:12.257 2100 FEE 442846 9705 6108720 2024-02-29 03:55:12.257 2024-02-29 03:55:12.257 18900 TIP 442846 21104 6108724 2024-02-29 03:56:00.714 2024-02-29 03:56:00.714 0 FEE 443054 15147 6108766 2024-02-29 04:07:07.687 2024-02-29 04:07:07.687 0 FEE 443057 2508 6108777 2024-02-29 04:09:09.193 2024-02-29 04:09:09.193 100000 FEE 443064 14074 6108778 2024-02-29 04:09:10.209 2024-02-29 04:09:10.209 10000 FEE 442986 19841 6108779 2024-02-29 04:09:10.209 2024-02-29 04:09:10.209 90000 TIP 442986 18494 6108790 2024-02-29 04:10:44.906 2024-02-29 04:10:44.906 500 FEE 442084 2529 6108791 2024-02-29 04:10:44.906 2024-02-29 04:10:44.906 4500 TIP 442084 20713 6108833 2024-02-29 04:14:11.536 2024-02-29 04:14:11.536 500 FEE 442946 18423 6108834 2024-02-29 04:14:11.536 2024-02-29 04:14:11.536 4500 TIP 442946 9809 6108835 2024-02-29 04:14:12.826 2024-02-29 04:14:12.826 500 FEE 442946 19469 6108836 2024-02-29 04:14:12.826 2024-02-29 04:14:12.826 4500 TIP 442946 649 6108839 2024-02-29 04:15:03.8 2024-02-29 04:15:03.8 100 FEE 443064 11240 6108840 2024-02-29 04:15:03.8 2024-02-29 04:15:03.8 900 TIP 443064 20581 6108854 2024-02-29 04:17:00.261 2024-02-29 04:17:00.261 2100 FEE 442185 19996 6108855 2024-02-29 04:17:00.261 2024-02-29 04:17:00.261 18900 TIP 442185 19087 6108865 2024-02-29 04:17:18.52 2024-02-29 04:17:18.52 2100 FEE 442565 690 6108866 2024-02-29 04:17:18.52 2024-02-29 04:17:18.52 18900 TIP 442565 16942 6108871 2024-02-29 04:17:21.005 2024-02-29 04:17:21.005 2100 FEE 442565 21155 6108872 2024-02-29 04:17:21.005 2024-02-29 04:17:21.005 18900 TIP 442565 16353 6108894 2024-02-29 04:19:00.914 2024-02-29 04:19:00.914 1000 FEE 443068 21401 6108906 2024-02-29 04:19:47.459 2024-02-29 04:19:47.459 500 FEE 442751 21136 6108907 2024-02-29 04:19:47.459 2024-02-29 04:19:47.459 4500 TIP 442751 21480 6108921 2024-02-29 04:20:41.514 2024-02-29 04:20:41.514 500 FEE 442769 9107 6108922 2024-02-29 04:20:41.514 2024-02-29 04:20:41.514 4500 TIP 442769 20504 6108941 2024-02-29 04:21:26.902 2024-02-29 04:21:26.902 500 FEE 442805 19193 6108942 2024-02-29 04:21:26.902 2024-02-29 04:21:26.902 4500 TIP 442805 6537 6108943 2024-02-29 04:21:41.978 2024-02-29 04:21:41.978 500 FEE 442299 5761 6108944 2024-02-29 04:21:41.978 2024-02-29 04:21:41.978 4500 TIP 442299 11153 6108967 2024-02-29 04:23:15.94 2024-02-29 04:23:15.94 100000 DONT_LIKE_THIS 443064 9355 6109002 2024-02-29 04:29:03.022 2024-02-29 04:29:03.022 100 FEE 442298 19501 6109003 2024-02-29 04:29:03.022 2024-02-29 04:29:03.022 900 TIP 442298 15521 6109007 2024-02-29 04:29:07.886 2024-02-29 04:29:07.886 100 FEE 442298 5904 6109008 2024-02-29 04:29:07.886 2024-02-29 04:29:07.886 900 TIP 442298 629 6109034 2024-02-29 04:33:55.131 2024-02-29 04:33:55.131 1700 FEE 443064 18735 6109035 2024-02-29 04:33:55.131 2024-02-29 04:33:55.131 15300 TIP 443064 20701 6109070 2024-02-29 04:40:05.855 2024-02-29 04:40:05.855 1000 FEE 442805 12277 6109071 2024-02-29 04:40:05.855 2024-02-29 04:40:05.855 9000 TIP 442805 14152 6109084 2024-02-29 04:47:14.754 2024-02-29 04:47:14.754 1000 FEE 442084 1474 6108299 2024-02-29 02:51:29.213 2024-02-29 02:51:29.213 9000 TIP 441779 8916 6108312 2024-02-29 02:54:03.385 2024-02-29 02:54:03.385 1100 FEE 442389 19886 6108313 2024-02-29 02:54:03.385 2024-02-29 02:54:03.385 9900 TIP 442389 21248 6108323 2024-02-29 02:54:26.798 2024-02-29 02:54:26.798 2100 FEE 442978 1298 6108324 2024-02-29 02:54:26.798 2024-02-29 02:54:26.798 18900 TIP 442978 900 6108328 2024-02-29 02:55:33.907 2024-02-29 02:55:33.907 1100 FEE 442175 2749 6108329 2024-02-29 02:55:33.907 2024-02-29 02:55:33.907 9900 TIP 442175 14905 6108330 2024-02-29 02:55:35.056 2024-02-29 02:55:35.056 1100 FEE 442175 21064 6108331 2024-02-29 02:55:35.056 2024-02-29 02:55:35.056 9900 TIP 442175 15088 6108356 2024-02-29 02:59:02.845 2024-02-29 02:59:02.845 1100 FEE 442847 17570 6108357 2024-02-29 02:59:02.845 2024-02-29 02:59:02.845 9900 TIP 442847 12368 6108359 2024-02-29 02:59:03.73 2024-02-29 02:59:03.73 1100 FEE 442847 19403 6108360 2024-02-29 02:59:03.73 2024-02-29 02:59:03.73 9900 TIP 442847 14552 6108368 2024-02-29 03:01:25.212 2024-02-29 03:01:25.212 2100 FEE 442894 12222 6108369 2024-02-29 03:01:25.212 2024-02-29 03:01:25.212 18900 TIP 442894 18815 6108374 2024-02-29 03:01:38.745 2024-02-29 03:01:38.745 1100 FEE 442720 11443 6108375 2024-02-29 03:01:38.745 2024-02-29 03:01:38.745 9900 TIP 442720 10063 6108391 2024-02-29 03:03:10.62 2024-02-29 03:03:10.62 1000 FEE 443027 4177 6108395 2024-02-29 03:03:21.875 2024-02-29 03:03:21.875 1100 FEE 442664 9427 6108396 2024-02-29 03:03:21.875 2024-02-29 03:03:21.875 9900 TIP 442664 20706 6108399 2024-02-29 03:04:03.493 2024-02-29 03:04:03.493 1000 FEE 443028 14280 6108427 2024-02-29 03:07:29.216 2024-02-29 03:07:29.216 2100 FEE 442848 1180 6108428 2024-02-29 03:07:29.216 2024-02-29 03:07:29.216 18900 TIP 442848 7992 6108464 2024-02-29 03:14:31.656 2024-02-29 03:14:31.656 2100 FEE 443011 17707 6108465 2024-02-29 03:14:31.656 2024-02-29 03:14:31.656 18900 TIP 443011 822 6108503 2024-02-29 03:19:16.742 2024-02-29 03:19:16.742 1000 FEE 440966 2256 6108504 2024-02-29 03:19:16.742 2024-02-29 03:19:16.742 9000 TIP 440966 17411 6108535 2024-02-29 03:20:36.078 2024-02-29 03:20:36.078 3300 FEE 442650 9200 6108536 2024-02-29 03:20:36.078 2024-02-29 03:20:36.078 29700 TIP 442650 1092 6108541 2024-02-29 03:20:36.847 2024-02-29 03:20:36.847 3300 FEE 442662 18932 6108542 2024-02-29 03:20:36.847 2024-02-29 03:20:36.847 29700 TIP 442662 20481 6108567 2024-02-29 03:27:23.552 2024-02-29 03:27:23.552 2600 FEE 443033 14169 6108568 2024-02-29 03:27:23.552 2024-02-29 03:27:23.552 23400 TIP 443033 17124 6108599 2024-02-29 03:38:42.389 2024-02-29 03:38:42.389 7700 FEE 443011 2013 6108600 2024-02-29 03:38:42.389 2024-02-29 03:38:42.389 69300 TIP 443011 3745 6108612 2024-02-29 03:41:11.981 2024-02-29 03:41:11.981 1000 POLL 442751 16808 6108622 2024-02-29 03:48:26.159 2024-02-29 03:48:26.159 1000 FEE 443051 19812 6108624 2024-02-29 03:49:51.222 2024-02-29 03:49:51.222 1000 FEE 443052 18518 6108627 2024-02-29 03:50:40.294 2024-02-29 03:50:40.294 0 FEE 443052 20778 6108633 2024-02-29 03:52:23.281 2024-02-29 03:52:23.281 0 FEE 443053 20560 6108636 2024-02-29 03:54:05.677 2024-02-29 03:54:05.677 2100 FEE 442931 1307 6108637 2024-02-29 03:54:05.677 2024-02-29 03:54:05.677 18900 TIP 442931 19929 6108642 2024-02-29 03:54:11.396 2024-02-29 03:54:11.396 2100 FEE 443011 13927 6108643 2024-02-29 03:54:11.396 2024-02-29 03:54:11.396 18900 TIP 443011 5522 6108646 2024-02-29 03:54:13.731 2024-02-29 03:54:13.731 2100 FEE 442894 1609 6108647 2024-02-29 03:54:13.731 2024-02-29 03:54:13.731 18900 TIP 442894 5597 6108652 2024-02-29 03:54:25.356 2024-02-29 03:54:25.356 2100 FEE 443039 16276 6108653 2024-02-29 03:54:25.356 2024-02-29 03:54:25.356 18900 TIP 443039 666 6108664 2024-02-29 03:54:29.143 2024-02-29 03:54:29.143 2100 FEE 443027 14663 6108665 2024-02-29 03:54:29.143 2024-02-29 03:54:29.143 18900 TIP 443027 680 6108672 2024-02-29 03:54:42.935 2024-02-29 03:54:42.935 2100 FEE 442894 19030 6108673 2024-02-29 03:54:42.935 2024-02-29 03:54:42.935 18900 TIP 442894 9351 6108689 2024-02-29 03:54:59.731 2024-02-29 03:54:59.731 2100 FEE 442831 9426 6108690 2024-02-29 03:54:59.731 2024-02-29 03:54:59.731 18900 TIP 442831 20912 6108703 2024-02-29 03:55:10.307 2024-02-29 03:55:10.307 2100 FEE 442846 10493 6108704 2024-02-29 03:55:10.307 2024-02-29 03:55:10.307 18900 TIP 442846 16348 6108732 2024-02-29 04:00:05.24 2024-02-29 04:00:05.24 1000 FEE 443056 13781 6108740 2024-02-29 04:02:33.736 2024-02-29 04:02:33.736 10000 FEE 443058 782 6108747 2024-02-29 04:04:17.506 2024-02-29 04:04:17.506 4200 FEE 442904 10818 6108748 2024-02-29 04:04:17.506 2024-02-29 04:04:17.506 37800 TIP 442904 993 6108765 2024-02-29 04:07:07.198 2024-02-29 04:07:07.198 1000 FEE 443061 782 6108774 2024-02-29 04:08:43.348 2024-02-29 04:08:43.348 100 FEE 442978 18311 6108775 2024-02-29 04:08:43.348 2024-02-29 04:08:43.348 900 TIP 442978 2741 6108780 2024-02-29 04:09:29.544 2024-02-29 04:09:29.544 100 FEE 443048 2101 6108781 2024-02-29 04:09:29.544 2024-02-29 04:09:29.544 900 TIP 443048 4388 6108807 2024-02-29 04:11:12.242 2024-02-29 04:11:12.242 1000 FEE 443066 16542 6108808 2024-02-29 04:11:53.93 2024-02-29 04:11:53.93 100 FEE 443066 722 6108809 2024-02-29 04:11:53.93 2024-02-29 04:11:53.93 900 TIP 443066 642 6108826 2024-02-29 04:13:13.818 2024-02-29 04:13:13.818 500 FEE 442041 6164 6108827 2024-02-29 04:13:13.818 2024-02-29 04:13:13.818 4500 TIP 442041 8074 6108904 2024-02-29 04:19:45.268 2024-02-29 04:19:45.268 500 FEE 442904 9353 6108905 2024-02-29 04:19:45.268 2024-02-29 04:19:45.268 4500 TIP 442904 1472 6108910 2024-02-29 04:19:49.051 2024-02-29 04:19:49.051 500 FEE 442163 20168 6108911 2024-02-29 04:19:49.051 2024-02-29 04:19:49.051 4500 TIP 442163 730 6108925 2024-02-29 04:20:56.052 2024-02-29 04:20:56.052 500 FEE 442936 20826 6108926 2024-02-29 04:20:56.052 2024-02-29 04:20:56.052 4500 TIP 442936 9337 6108939 2024-02-29 04:21:24.479 2024-02-29 04:21:24.479 2100 FEE 442490 20370 6108940 2024-02-29 04:21:24.479 2024-02-29 04:21:24.479 18900 TIP 442490 21485 6108951 2024-02-29 04:21:51.957 2024-02-29 04:21:51.957 2100 FEE 442445 5757 6108952 2024-02-29 04:21:51.957 2024-02-29 04:21:51.957 18900 TIP 442445 20963 6108957 2024-02-29 04:21:56.337 2024-02-29 04:21:56.337 2100 FEE 442448 21417 6108958 2024-02-29 04:21:56.337 2024-02-29 04:21:56.337 18900 TIP 442448 15617 6108959 2024-02-29 04:21:57.396 2024-02-29 04:21:57.396 10000 FEE 443058 16059 6108300 2024-02-29 02:52:03.501 2024-02-29 02:52:03.501 1000 STREAM 141924 19235 6108314 2024-02-29 02:54:03.512 2024-02-29 02:54:03.512 1000 STREAM 141924 19640 6108325 2024-02-29 02:55:03.53 2024-02-29 02:55:03.53 1000 STREAM 141924 660 6108334 2024-02-29 02:56:03.52 2024-02-29 02:56:03.52 1000 STREAM 141924 14195 6108363 2024-02-29 03:00:03.554 2024-02-29 03:00:03.554 1000 STREAM 141924 16929 6108366 2024-02-29 03:01:03.557 2024-02-29 03:01:03.557 1000 STREAM 141924 1038 6108390 2024-02-29 03:03:03.57 2024-02-29 03:03:03.57 1000 STREAM 141924 14795 6108400 2024-02-29 03:04:03.573 2024-02-29 03:04:03.573 1000 STREAM 141924 18177 6108420 2024-02-29 03:06:03.579 2024-02-29 03:06:03.579 1000 STREAM 141924 17592 6108425 2024-02-29 03:07:03.58 2024-02-29 03:07:03.58 1000 STREAM 141924 20504 6108729 2024-02-29 03:59:03.812 2024-02-29 03:59:03.812 1000 STREAM 141924 19320 6108734 2024-02-29 04:01:03.828 2024-02-29 04:01:03.828 1000 STREAM 141924 18877 6108746 2024-02-29 04:04:03.863 2024-02-29 04:04:03.863 1000 STREAM 141924 21303 6108754 2024-02-29 04:05:03.866 2024-02-29 04:05:03.866 1000 STREAM 141924 10013 6108760 2024-02-29 04:06:03.868 2024-02-29 04:06:03.868 1000 STREAM 141924 1064 6108764 2024-02-29 04:07:03.861 2024-02-29 04:07:03.861 1000 STREAM 141924 20109 6108771 2024-02-29 04:08:03.868 2024-02-29 04:08:03.868 1000 STREAM 141924 20691 6108812 2024-02-29 04:12:03.881 2024-02-29 04:12:03.881 1000 STREAM 141924 20156 6108980 2024-02-29 04:27:04.013 2024-02-29 04:27:04.013 1000 STREAM 141924 4323 6109004 2024-02-29 04:29:04.014 2024-02-29 04:29:04.014 1000 STREAM 141924 20998 6109019 2024-02-29 04:30:04.029 2024-02-29 04:30:04.029 1000 STREAM 141924 675 6109069 2024-02-29 04:40:04.064 2024-02-29 04:40:04.064 1000 STREAM 141924 19021 6109080 2024-02-29 04:46:04.098 2024-02-29 04:46:04.098 1000 STREAM 141924 16145 6109104 2024-02-29 04:49:04.121 2024-02-29 04:49:04.121 1000 STREAM 141924 16270 6109107 2024-02-29 04:50:04.126 2024-02-29 04:50:04.126 1000 STREAM 141924 17944 6109108 2024-02-29 04:51:04.131 2024-02-29 04:51:04.131 1000 STREAM 141924 1471 6109109 2024-02-29 04:52:04.147 2024-02-29 04:52:04.147 1000 STREAM 141924 19138 6109122 2024-02-29 04:54:04.159 2024-02-29 04:54:04.159 1000 STREAM 141924 14122 6109135 2024-02-29 04:55:04.161 2024-02-29 04:55:04.161 1000 STREAM 141924 17415 6109185 2024-02-29 05:00:04.176 2024-02-29 05:00:04.176 1000 STREAM 141924 9342 6108358 2024-02-29 02:59:03.555 2024-02-29 02:59:03.555 1000 STREAM 141924 19398 6108388 2024-02-29 03:02:03.563 2024-02-29 03:02:03.563 1000 STREAM 141924 6383 6108407 2024-02-29 03:05:03.578 2024-02-29 03:05:03.578 1000 STREAM 141924 6160 6108440 2024-02-29 03:09:41.987 2024-02-29 03:09:41.987 15300 TIP 443029 1141 6108456 2024-02-29 03:13:56.437 2024-02-29 03:13:56.437 1100 FEE 442860 616 6108457 2024-02-29 03:13:56.437 2024-02-29 03:13:56.437 9900 TIP 442860 11561 6108513 2024-02-29 03:19:18.324 2024-02-29 03:19:18.324 1000 FEE 440966 19259 6108514 2024-02-29 03:19:18.324 2024-02-29 03:19:18.324 9000 TIP 440966 19506 6108515 2024-02-29 03:19:24.33 2024-02-29 03:19:24.33 1000 POLL 442751 1105 6108523 2024-02-29 03:20:25.543 2024-02-29 03:20:25.543 3300 FEE 442953 11609 6108524 2024-02-29 03:20:25.543 2024-02-29 03:20:25.543 29700 TIP 442953 13599 6108552 2024-02-29 03:22:05.52 2024-02-29 03:22:05.52 10000 FEE 442985 4521 6108553 2024-02-29 03:22:05.52 2024-02-29 03:22:05.52 90000 TIP 442985 5444 6108556 2024-02-29 03:22:45.965 2024-02-29 03:22:45.965 1000 FEE 443038 18124 6108587 2024-02-29 03:35:21.057 2024-02-29 03:35:21.057 1000 FEE 443046 2039 6108593 2024-02-29 03:37:05.821 2024-02-29 03:37:05.821 1000 FEE 443048 2156 6108614 2024-02-29 03:42:38.491 2024-02-29 03:42:38.491 1000 FEE 443049 14370 6108629 2024-02-29 03:51:28.185 2024-02-29 03:51:28.185 1000 FEE 443053 11192 6108668 2024-02-29 03:54:42.623 2024-02-29 03:54:42.623 2100 FEE 442894 1198 6108669 2024-02-29 03:54:42.623 2024-02-29 03:54:42.623 18900 TIP 442894 13378 6108682 2024-02-29 03:54:43.819 2024-02-29 03:54:43.819 2100 FEE 442894 8376 6108683 2024-02-29 03:54:43.819 2024-02-29 03:54:43.819 18900 TIP 442894 5761 6108684 2024-02-29 03:54:44.008 2024-02-29 03:54:44.008 2100 FEE 442894 18280 6108685 2024-02-29 03:54:44.008 2024-02-29 03:54:44.008 18900 TIP 442894 2206 6108686 2024-02-29 03:54:44.249 2024-02-29 03:54:44.249 2100 FEE 442894 16754 6108687 2024-02-29 03:54:44.249 2024-02-29 03:54:44.249 18900 TIP 442894 20613 6108693 2024-02-29 03:55:00.652 2024-02-29 03:55:00.652 2100 FEE 442831 11942 6108694 2024-02-29 03:55:00.652 2024-02-29 03:55:00.652 18900 TIP 442831 20972 6108707 2024-02-29 03:55:10.698 2024-02-29 03:55:10.698 2100 FEE 442846 2204 6108708 2024-02-29 03:55:10.698 2024-02-29 03:55:10.698 18900 TIP 442846 1571 6108711 2024-02-29 03:55:11.233 2024-02-29 03:55:11.233 2100 FEE 442846 20220 6108712 2024-02-29 03:55:11.233 2024-02-29 03:55:11.233 18900 TIP 442846 940 6108717 2024-02-29 03:55:12.073 2024-02-29 03:55:12.073 2100 FEE 442846 18809 6108718 2024-02-29 03:55:12.073 2024-02-29 03:55:12.073 18900 TIP 442846 2681 6108721 2024-02-29 03:55:12.895 2024-02-29 03:55:12.895 2100 FEE 442846 694 6108722 2024-02-29 03:55:12.895 2024-02-29 03:55:12.895 18900 TIP 442846 9796 6108735 2024-02-29 04:01:45.44 2024-02-29 04:01:45.44 2100 FEE 443042 17494 6108736 2024-02-29 04:01:45.44 2024-02-29 04:01:45.44 18900 TIP 443042 6537 6108751 2024-02-29 04:04:33.844 2024-02-29 04:04:33.844 100 FEE 442986 705 6108752 2024-02-29 04:04:33.844 2024-02-29 04:04:33.844 900 TIP 442986 15075 6108758 2024-02-29 04:05:55.055 2024-02-29 04:05:55.055 100 FEE 442982 16270 6108759 2024-02-29 04:05:55.055 2024-02-29 04:05:55.055 900 TIP 442982 17984 6108786 2024-02-29 04:10:29.767 2024-02-29 04:10:29.767 500 FEE 442313 18321 6108787 2024-02-29 04:10:29.767 2024-02-29 04:10:29.767 4500 TIP 442313 5359 6108794 2024-02-29 04:10:46.969 2024-02-29 04:10:46.969 500 FEE 442751 3506 6108795 2024-02-29 04:10:46.969 2024-02-29 04:10:46.969 4500 TIP 442751 18601 6108796 2024-02-29 04:10:48.315 2024-02-29 04:10:48.315 500 FEE 442551 5036 6108797 2024-02-29 04:10:48.315 2024-02-29 04:10:48.315 4500 TIP 442551 1307 6108815 2024-02-29 04:12:26.776 2024-02-29 04:12:26.776 500 FEE 441979 13574 6108816 2024-02-29 04:12:26.776 2024-02-29 04:12:26.776 4500 TIP 441979 18403 6108819 2024-02-29 04:12:50.121 2024-02-29 04:12:50.121 500 FEE 442556 21591 6108820 2024-02-29 04:12:50.121 2024-02-29 04:12:50.121 4500 TIP 442556 1549 6108821 2024-02-29 04:12:52.428 2024-02-29 04:12:52.428 500 FEE 442556 14663 6108822 2024-02-29 04:12:52.428 2024-02-29 04:12:52.428 4500 TIP 442556 17415 6108842 2024-02-29 04:15:11.633 2024-02-29 04:15:11.633 1000 POLL 442751 18667 6108852 2024-02-29 04:16:59.871 2024-02-29 04:16:59.871 2100 FEE 442185 21379 6108853 2024-02-29 04:16:59.871 2024-02-29 04:16:59.871 18900 TIP 442185 14906 6108856 2024-02-29 04:17:00.72 2024-02-29 04:17:00.72 2100 FEE 442185 3656 6108857 2024-02-29 04:17:00.72 2024-02-29 04:17:00.72 18900 TIP 442185 1261 6108869 2024-02-29 04:17:20.858 2024-02-29 04:17:20.858 2100 FEE 442565 20157 6108870 2024-02-29 04:17:20.858 2024-02-29 04:17:20.858 18900 TIP 442565 20858 6108883 2024-02-29 04:17:26.406 2024-02-29 04:17:26.406 2700 FEE 443058 21446 6108884 2024-02-29 04:17:26.406 2024-02-29 04:17:26.406 24300 TIP 443058 15617 6108908 2024-02-29 04:19:48.316 2024-02-29 04:19:48.316 500 FEE 442551 1718 6108909 2024-02-29 04:19:48.316 2024-02-29 04:19:48.316 4500 TIP 442551 18269 6108914 2024-02-29 04:19:50.797 2024-02-29 04:19:50.797 500 FEE 442298 15200 6108915 2024-02-29 04:19:50.797 2024-02-29 04:19:50.797 4500 TIP 442298 2077 6108916 2024-02-29 04:19:54.404 2024-02-29 04:19:54.404 500 FEE 442931 9336 6108917 2024-02-29 04:19:54.404 2024-02-29 04:19:54.404 4500 TIP 442931 986 6108930 2024-02-29 04:21:09.777 2024-02-29 04:21:09.777 500 FEE 442177 11829 6108931 2024-02-29 04:21:09.777 2024-02-29 04:21:09.777 4500 TIP 442177 17552 6108949 2024-02-29 04:21:51.192 2024-02-29 04:21:51.192 2100 FEE 442445 13544 6108950 2024-02-29 04:21:51.192 2024-02-29 04:21:51.192 18900 TIP 442445 18017 6108961 2024-02-29 04:21:59.427 2024-02-29 04:21:59.427 2100 FEE 442445 8535 6108962 2024-02-29 04:21:59.427 2024-02-29 04:21:59.427 18900 TIP 442445 1602 6108974 2024-02-29 04:25:08.958 2024-02-29 04:25:08.958 1000 FEE 443071 20841 6108978 2024-02-29 04:26:50.258 2024-02-29 04:26:50.258 1000 POLL 442163 6688 6108981 2024-02-29 04:27:09.73 2024-02-29 04:27:09.73 1000 FEE 442904 4084 6108982 2024-02-29 04:27:09.73 2024-02-29 04:27:09.73 9000 TIP 442904 6419 6108983 2024-02-29 04:27:10.954 2024-02-29 04:27:10.954 1000 FEE 442931 19037 6108984 2024-02-29 04:27:10.954 2024-02-29 04:27:10.954 9000 TIP 442931 4989 6108991 2024-02-29 04:27:55.829 2024-02-29 04:27:55.829 1000 FEE 443019 8954 6108992 2024-02-29 04:27:55.829 2024-02-29 04:27:55.829 9000 TIP 443019 15624 6109032 2024-02-29 04:33:54.744 2024-02-29 04:33:54.744 1700 FEE 443064 9845 6109033 2024-02-29 04:33:54.744 2024-02-29 04:33:54.744 15300 TIP 443064 11609 6109040 2024-02-29 04:33:57.008 2024-02-29 04:33:57.008 1700 FEE 443064 671 6109041 2024-02-29 04:33:57.008 2024-02-29 04:33:57.008 15300 TIP 443064 12779 6109054 2024-02-29 04:37:51.411 2024-02-29 04:37:51.411 1000 FEE 442551 15409 6109055 2024-02-29 04:37:51.411 2024-02-29 04:37:51.411 9000 TIP 442551 14213 6109086 2024-02-29 04:47:16.909 2024-02-29 04:47:16.909 1000 FEE 442751 1162 6109087 2024-02-29 04:47:16.909 2024-02-29 04:47:16.909 9000 TIP 442751 21614 6109088 2024-02-29 04:47:19.475 2024-02-29 04:47:19.475 1000 FEE 442163 5728 6109089 2024-02-29 04:47:19.475 2024-02-29 04:47:19.475 9000 TIP 442163 12368 6109138 2024-02-29 04:56:27.906 2024-02-29 04:56:27.906 1000 FEE 443080 15938 6109159 2024-02-29 04:58:53.128 2024-02-29 04:58:53.128 500 FEE 442769 12930 6109160 2024-02-29 04:58:53.128 2024-02-29 04:58:53.128 4500 TIP 442769 11862 6109184 2024-02-29 04:59:58.808 2024-02-29 04:59:58.808 1000 POLL 442163 2061 6109220 2024-02-29 05:10:16.744 2024-02-29 05:10:16.744 200 FEE 442283 7818 6109221 2024-02-29 05:10:16.744 2024-02-29 05:10:16.744 1800 TIP 442283 18704 6109224 2024-02-29 05:10:17.014 2024-02-29 05:10:17.014 200 FEE 442283 14489 6109225 2024-02-29 05:10:17.014 2024-02-29 05:10:17.014 1800 TIP 442283 21062 6109236 2024-02-29 05:10:17.948 2024-02-29 05:10:17.948 200 FEE 442283 15139 6109237 2024-02-29 05:10:17.948 2024-02-29 05:10:17.948 1800 TIP 442283 19030 6108445 2024-02-29 03:10:03.723 2024-02-29 03:10:03.723 1000 STREAM 141924 5171 6108449 2024-02-29 03:12:03.694 2024-02-29 03:12:03.694 1000 STREAM 141924 2614 6108458 2024-02-29 03:14:03.705 2024-02-29 03:14:03.705 1000 STREAM 141924 16301 6108566 2024-02-29 03:27:03.767 2024-02-29 03:27:03.767 1000 STREAM 141924 21493 6108569 2024-02-29 03:28:03.743 2024-02-29 03:28:03.743 1000 STREAM 141924 21242 6108580 2024-02-29 03:31:03.779 2024-02-29 03:31:03.779 1000 STREAM 141924 5069 6108590 2024-02-29 03:36:03.804 2024-02-29 03:36:03.804 1000 STREAM 141924 18626 6108592 2024-02-29 03:37:03.802 2024-02-29 03:37:03.802 1000 STREAM 141924 18772 6108594 2024-02-29 03:38:03.803 2024-02-29 03:38:03.803 1000 STREAM 141924 9985 6108610 2024-02-29 03:40:03.81 2024-02-29 03:40:03.81 1000 STREAM 141924 17984 6108611 2024-02-29 03:41:03.848 2024-02-29 03:41:03.848 1000 STREAM 141924 18751 6108613 2024-02-29 03:42:03.844 2024-02-29 03:42:03.844 1000 STREAM 141924 4083 6108615 2024-02-29 03:43:03.853 2024-02-29 03:43:03.853 1000 STREAM 141924 1286 6108616 2024-02-29 03:44:03.842 2024-02-29 03:44:03.842 1000 STREAM 141924 10821 6108619 2024-02-29 03:47:03.83 2024-02-29 03:47:03.83 1000 STREAM 141924 1611 6108621 2024-02-29 03:48:03.818 2024-02-29 03:48:03.818 1000 STREAM 141924 1007 6108628 2024-02-29 03:51:03.838 2024-02-29 03:51:03.838 1000 STREAM 141924 17798 6108632 2024-02-29 03:52:03.858 2024-02-29 03:52:03.858 1000 STREAM 141924 674 6108634 2024-02-29 03:53:03.856 2024-02-29 03:53:03.856 1000 STREAM 141924 762 6108698 2024-02-29 03:55:03.866 2024-02-29 03:55:03.866 1000 STREAM 141924 18678 6108725 2024-02-29 03:56:03.872 2024-02-29 03:56:03.872 1000 STREAM 141924 1631 6108823 2024-02-29 04:13:04.007 2024-02-29 04:13:04.007 1000 STREAM 141924 20302 6108832 2024-02-29 04:14:03.996 2024-02-29 04:14:03.996 1000 STREAM 141924 7998 6108841 2024-02-29 04:15:04.023 2024-02-29 04:15:04.023 1000 STREAM 141924 19613 6108893 2024-02-29 04:18:04.045 2024-02-29 04:18:04.045 1000 STREAM 141924 10393 6108470 2024-02-29 03:16:03.918 2024-02-29 03:16:03.918 1000 STREAM 141924 18393 6108495 2024-02-29 03:18:03.926 2024-02-29 03:18:03.926 1000 STREAM 141924 21588 6108516 2024-02-29 03:20:03.925 2024-02-29 03:20:03.925 1000 STREAM 141924 715 6108547 2024-02-29 03:21:03.942 2024-02-29 03:21:03.942 1000 STREAM 141924 20904 6108558 2024-02-29 03:24:03.948 2024-02-29 03:24:03.948 1000 STREAM 141924 16214 6108493 2024-02-29 03:17:03.919 2024-02-29 03:17:03.919 1000 STREAM 141924 2829 6108496 2024-02-29 03:19:03.923 2024-02-29 03:19:03.923 1000 STREAM 141924 11144 6108551 2024-02-29 03:22:03.94 2024-02-29 03:22:03.94 1000 STREAM 141924 640 6108557 2024-02-29 03:23:03.938 2024-02-29 03:23:03.938 1000 STREAM 141924 17042 6108562 2024-02-29 03:25:03.956 2024-02-29 03:25:03.956 1000 STREAM 141924 15196 6108564 2024-02-29 03:26:03.966 2024-02-29 03:26:03.966 1000 STREAM 141924 5825 6108576 2024-02-29 03:29:03.769 2024-02-29 03:29:03.769 1000 STREAM 141924 18139 6108578 2024-02-29 03:30:03.758 2024-02-29 03:30:03.758 1000 STREAM 141924 4102 6108581 2024-02-29 03:32:03.787 2024-02-29 03:32:03.787 1000 STREAM 141924 20080 6108582 2024-02-29 03:33:03.782 2024-02-29 03:33:03.782 1000 STREAM 141924 19888 6108585 2024-02-29 03:34:03.788 2024-02-29 03:34:03.788 1000 STREAM 141924 21463 6108586 2024-02-29 03:35:03.8 2024-02-29 03:35:03.8 1000 STREAM 141924 987 6108609 2024-02-29 03:39:03.801 2024-02-29 03:39:03.801 1000 STREAM 141924 16505 6108617 2024-02-29 03:45:03.827 2024-02-29 03:45:03.827 1000 STREAM 141924 19581 6108618 2024-02-29 03:46:03.833 2024-02-29 03:46:03.833 1000 STREAM 141924 17707 6108623 2024-02-29 03:49:03.843 2024-02-29 03:49:03.843 1000 STREAM 141924 21469 6108625 2024-02-29 03:50:03.832 2024-02-29 03:50:03.832 1000 STREAM 141924 21469 6108635 2024-02-29 03:54:03.865 2024-02-29 03:54:03.865 1000 STREAM 141924 21057 6108726 2024-02-29 03:57:03.86 2024-02-29 03:57:03.86 1000 STREAM 141924 21139 6108709 2024-02-29 03:55:10.926 2024-02-29 03:55:10.926 2100 FEE 442846 20108 6108710 2024-02-29 03:55:10.926 2024-02-29 03:55:10.926 18900 TIP 442846 21393 6108723 2024-02-29 03:55:38.325 2024-02-29 03:55:38.325 0 FEE 443054 21405 6108739 2024-02-29 04:02:27.652 2024-02-29 04:02:27.652 0 FEE 443054 17064 6108755 2024-02-29 04:05:27.841 2024-02-29 04:05:27.841 0 FEE 443057 7827 6108773 2024-02-29 04:08:41.908 2024-02-29 04:08:41.908 1000 FEE 443063 19902 6108783 2024-02-29 04:10:05.173 2024-02-29 04:10:05.173 1000 FEE 443065 21387 6108802 2024-02-29 04:10:52.483 2024-02-29 04:10:52.483 500 FEE 442298 20376 6108803 2024-02-29 04:10:52.483 2024-02-29 04:10:52.483 4500 TIP 442298 9695 6108813 2024-02-29 04:12:25.16 2024-02-29 04:12:25.16 500 FEE 441979 19303 6108814 2024-02-29 04:12:25.16 2024-02-29 04:12:25.16 4500 TIP 441979 18507 6108817 2024-02-29 04:12:29.922 2024-02-29 04:12:29.922 500 FEE 441979 2735 6108818 2024-02-29 04:12:29.922 2024-02-29 04:12:29.922 4500 TIP 441979 14795 6108848 2024-02-29 04:16:50.359 2024-02-29 04:16:50.359 1000 FEE 442706 20015 6108849 2024-02-29 04:16:50.359 2024-02-29 04:16:50.359 9000 TIP 442706 7847 6108859 2024-02-29 04:17:09.578 2024-02-29 04:17:09.578 1000 FEE 442399 20500 6108860 2024-02-29 04:17:09.578 2024-02-29 04:17:09.578 9000 TIP 442399 861 6108867 2024-02-29 04:17:18.732 2024-02-29 04:17:18.732 2100 FEE 442565 5961 6108868 2024-02-29 04:17:18.732 2024-02-29 04:17:18.732 18900 TIP 442565 18717 6108875 2024-02-29 04:17:25.611 2024-02-29 04:17:25.611 2100 FEE 442565 20090 6108876 2024-02-29 04:17:25.611 2024-02-29 04:17:25.611 18900 TIP 442565 18529 6108891 2024-02-29 04:17:31.998 2024-02-29 04:17:31.998 2100 FEE 443005 20504 6108892 2024-02-29 04:17:31.998 2024-02-29 04:17:31.998 18900 TIP 443005 13046 6108934 2024-02-29 04:21:17.841 2024-02-29 04:21:17.841 1000 FEE 443069 802 6108945 2024-02-29 04:21:44.166 2024-02-29 04:21:44.166 500 FEE 442311 16858 6108946 2024-02-29 04:21:44.166 2024-02-29 04:21:44.166 4500 TIP 442311 618 6108955 2024-02-29 04:21:56.204 2024-02-29 04:21:56.204 2100 FEE 442448 19320 6108956 2024-02-29 04:21:56.204 2024-02-29 04:21:56.204 18900 TIP 442448 18525 6108977 2024-02-29 04:26:13.203 2024-02-29 04:26:13.203 0 FEE 443071 12736 6108996 2024-02-29 04:28:17.198 2024-02-29 04:28:17.198 500 FEE 442311 20434 6108997 2024-02-29 04:28:17.198 2024-02-29 04:28:17.198 4500 TIP 442311 21249 6109000 2024-02-29 04:28:42.511 2024-02-29 04:28:42.511 1000 FEE 442033 1985 6109001 2024-02-29 04:28:42.511 2024-02-29 04:28:42.511 9000 TIP 442033 20246 6109024 2024-02-29 04:31:03.068 2024-02-29 04:31:03.068 0 FEE 443072 9816 6109045 2024-02-29 04:36:43.121 2024-02-29 04:36:43.121 1000 FEE 443074 18829 6109048 2024-02-29 04:37:44.287 2024-02-29 04:37:44.287 1000 FEE 441843 16250 6109049 2024-02-29 04:37:44.287 2024-02-29 04:37:44.287 9000 TIP 441843 21469 6109059 2024-02-29 04:38:18.66 2024-02-29 04:38:18.66 1000 FEE 442556 5865 6109060 2024-02-29 04:38:18.66 2024-02-29 04:38:18.66 9000 TIP 442556 1845 6109075 2024-02-29 04:42:03.563 2024-02-29 04:42:03.563 0 FEE 443076 15103 6109111 2024-02-29 04:52:51.781 2024-02-29 04:52:51.781 1000 FEE 441979 8326 6109112 2024-02-29 04:52:51.781 2024-02-29 04:52:51.781 9000 TIP 441979 20581 6109127 2024-02-29 04:55:00.077 2024-02-29 04:55:00.077 1000 FEE 442551 1488 6109128 2024-02-29 04:55:00.077 2024-02-29 04:55:00.077 9000 TIP 442551 9242 6109131 2024-02-29 04:55:01.966 2024-02-29 04:55:01.966 1000 FEE 442298 634 6109132 2024-02-29 04:55:01.966 2024-02-29 04:55:01.966 9000 TIP 442298 20087 6109151 2024-02-29 04:58:20.824 2024-02-29 04:58:20.824 1000 FEE 442904 8162 6109152 2024-02-29 04:58:20.824 2024-02-29 04:58:20.824 9000 TIP 442904 21343 6109174 2024-02-29 04:59:32.431 2024-02-29 04:59:32.431 500 FEE 441843 18005 6109175 2024-02-29 04:59:32.431 2024-02-29 04:59:32.431 4500 TIP 441843 17172 6109193 2024-02-29 05:04:07.223 2024-02-29 05:04:07.223 1000 FEE 443074 19154 6109194 2024-02-29 05:04:07.223 2024-02-29 05:04:07.223 9000 TIP 443074 15063 6109211 2024-02-29 05:07:06.735 2024-02-29 05:07:06.735 1000 FEE 442636 6421 6109212 2024-02-29 05:07:06.735 2024-02-29 05:07:06.735 9000 TIP 442636 19506 6109232 2024-02-29 05:10:17.633 2024-02-29 05:10:17.633 200 FEE 442283 20225 6109233 2024-02-29 05:10:17.633 2024-02-29 05:10:17.633 1800 TIP 442283 20624 6109244 2024-02-29 05:10:21.686 2024-02-29 05:10:21.686 200 FEE 442283 21344 6109245 2024-02-29 05:10:21.686 2024-02-29 05:10:21.686 1800 TIP 442283 5497 6109283 2024-02-29 05:21:10.422 2024-02-29 05:21:10.422 0 FEE 443083 654 6109303 2024-02-29 05:31:49.336 2024-02-29 05:31:49.336 1000 FEE 443088 676 6109331 2024-02-29 05:41:10.22 2024-02-29 05:41:10.22 0 FEE 443092 7989 6109341 2024-02-29 05:46:23.846 2024-02-29 05:46:23.846 900 FEE 442982 3729 6109342 2024-02-29 05:46:23.846 2024-02-29 05:46:23.846 8100 TIP 442982 13100 6109370 2024-02-29 05:47:13.349 2024-02-29 05:47:13.349 2100 FEE 442978 9339 6109371 2024-02-29 05:47:13.349 2024-02-29 05:47:13.349 18900 TIP 442978 12708 6109374 2024-02-29 05:47:15.036 2024-02-29 05:47:15.036 2100 FEE 442627 2203 6109375 2024-02-29 05:47:15.036 2024-02-29 05:47:15.036 18900 TIP 442627 626 6109392 2024-02-29 05:50:23.466 2024-02-29 05:50:23.466 1000 FEE 443094 21148 6109409 2024-02-29 05:51:28.873 2024-02-29 05:51:28.873 100 FEE 442904 15196 6109410 2024-02-29 05:51:28.873 2024-02-29 05:51:28.873 900 TIP 442904 11515 6109425 2024-02-29 05:54:01.614 2024-02-29 05:54:01.614 1000 POLL 442751 14906 6109435 2024-02-29 05:59:10.638 2024-02-29 05:59:10.638 1000 FEE 443098 18772 6109458 2024-02-29 06:09:41.391 2024-02-29 06:09:41.391 1000 FEE 442842 20185 6109459 2024-02-29 06:09:41.391 2024-02-29 06:09:41.391 9000 TIP 442842 13921 6109481 2024-02-29 06:16:27.194 2024-02-29 06:16:27.194 1000 FEE 443110 17710 6109505 2024-02-29 06:25:22.159 2024-02-29 06:25:22.159 100 FEE 443107 15408 6109506 2024-02-29 06:25:22.159 2024-02-29 06:25:22.159 900 TIP 443107 12277 6109507 2024-02-29 06:25:40.999 2024-02-29 06:25:40.999 100 FEE 443097 3371 6109508 2024-02-29 06:25:40.999 2024-02-29 06:25:40.999 900 TIP 443097 660 6109516 2024-02-29 06:27:39.247 2024-02-29 06:27:39.247 1000 POLL 442163 20066 6109531 2024-02-29 06:30:05.956 2024-02-29 06:30:05.956 0 FEE 443116 12507 6109534 2024-02-29 06:30:52.593 2024-02-29 06:30:52.593 1000 FEE 443117 18626 6109543 2024-02-29 06:31:49.494 2024-02-29 06:31:49.494 1000 FEE 443118 19138 6109550 2024-02-29 06:32:34.934 2024-02-29 06:32:34.934 1000 FEE 442904 9036 6109551 2024-02-29 06:32:34.934 2024-02-29 06:32:34.934 9000 TIP 442904 2233 6109567 2024-02-29 06:34:33.333 2024-02-29 06:34:33.333 100 FEE 443083 12911 6109568 2024-02-29 06:34:33.333 2024-02-29 06:34:33.333 900 TIP 443083 21539 6109576 2024-02-29 06:35:17.288 2024-02-29 06:35:17.288 100000 FEE 443122 19036 6109614 2024-02-29 06:38:20.265 2024-02-29 06:38:20.265 1000 FEE 443020 19842 6109615 2024-02-29 06:38:20.265 2024-02-29 06:38:20.265 9000 TIP 443020 19126 6109616 2024-02-29 06:38:23.681 2024-02-29 06:38:23.681 1000 FEE 443014 20163 6109617 2024-02-29 06:38:23.681 2024-02-29 06:38:23.681 9000 TIP 443014 17172 6109627 2024-02-29 06:39:08.121 2024-02-29 06:39:08.121 1000 FEE 442820 10981 6109628 2024-02-29 06:39:08.121 2024-02-29 06:39:08.121 9000 TIP 442820 20306 6109641 2024-02-29 06:39:47.304 2024-02-29 06:39:47.304 300 FEE 443120 20409 6109642 2024-02-29 06:39:47.304 2024-02-29 06:39:47.304 2700 TIP 443120 15351 6109643 2024-02-29 06:39:47.369 2024-02-29 06:39:47.369 300 FEE 443120 20106 6109644 2024-02-29 06:39:47.369 2024-02-29 06:39:47.369 2700 TIP 443120 739 6109649 2024-02-29 06:39:48.446 2024-02-29 06:39:48.446 300 FEE 443120 21090 6109650 2024-02-29 06:39:48.446 2024-02-29 06:39:48.446 2700 TIP 443120 18630 6109672 2024-02-29 06:45:20.592 2024-02-29 06:45:20.592 0 FEE 443128 20657 6109718 2024-02-29 06:58:21.196 2024-02-29 06:58:21.196 2100 FEE 443118 11378 6109719 2024-02-29 06:58:21.196 2024-02-29 06:58:21.196 18900 TIP 443118 1751 6108728 2024-02-29 03:58:03.819 2024-02-29 03:58:03.819 1000 STREAM 141924 12368 6108730 2024-02-29 04:00:03.844 2024-02-29 04:00:03.844 1000 STREAM 141924 5694 6108738 2024-02-29 04:02:03.836 2024-02-29 04:02:03.836 1000 STREAM 141924 16912 6108744 2024-02-29 04:03:03.848 2024-02-29 04:03:03.848 1000 STREAM 141924 8133 6108776 2024-02-29 04:09:03.873 2024-02-29 04:09:03.873 1000 STREAM 141924 18402 6108782 2024-02-29 04:10:03.883 2024-02-29 04:10:03.883 1000 STREAM 141924 9916 6108806 2024-02-29 04:11:03.872 2024-02-29 04:11:03.872 1000 STREAM 141924 15521 6108799 2024-02-29 04:10:48.782 2024-02-29 04:10:48.782 4500 TIP 442163 1495 6108800 2024-02-29 04:10:50.624 2024-02-29 04:10:50.624 500 FEE 442065 13798 6108801 2024-02-29 04:10:50.624 2024-02-29 04:10:50.624 4500 TIP 442065 18154 6108810 2024-02-29 04:11:59.854 2024-02-29 04:11:59.854 100 FEE 442996 18704 6108811 2024-02-29 04:11:59.854 2024-02-29 04:11:59.854 900 TIP 442996 15100 6108861 2024-02-29 04:17:11.916 2024-02-29 04:17:11.916 2100 FEE 442847 6335 6108862 2024-02-29 04:17:11.916 2024-02-29 04:17:11.916 18900 TIP 442847 8242 6108898 2024-02-29 04:19:38.588 2024-02-29 04:19:38.588 500 FEE 442313 20775 6108899 2024-02-29 04:19:38.588 2024-02-29 04:19:38.588 4500 TIP 442313 16649 6108918 2024-02-29 04:19:54.876 2024-02-29 04:19:54.876 500 FEE 441854 4118 6108919 2024-02-29 04:19:54.876 2024-02-29 04:19:54.876 4500 TIP 441854 19980 6108963 2024-02-29 04:21:59.555 2024-02-29 04:21:59.555 2100 FEE 442445 21430 6108964 2024-02-29 04:21:59.555 2024-02-29 04:21:59.555 18900 TIP 442445 1564 6108985 2024-02-29 04:27:21.108 2024-02-29 04:27:21.108 1000 FEE 442751 20490 6108986 2024-02-29 04:27:21.108 2024-02-29 04:27:21.108 9000 TIP 442751 708 6109005 2024-02-29 04:29:06.161 2024-02-29 04:29:06.161 1000 FEE 442106 20730 6109006 2024-02-29 04:29:06.161 2024-02-29 04:29:06.161 9000 TIP 442106 11523 6109011 2024-02-29 04:29:08.934 2024-02-29 04:29:08.934 100 FEE 442298 6383 6109012 2024-02-29 04:29:08.934 2024-02-29 04:29:08.934 900 TIP 442298 10771 6109013 2024-02-29 04:29:09.396 2024-02-29 04:29:09.396 100 FEE 442298 17091 6109014 2024-02-29 04:29:09.396 2024-02-29 04:29:09.396 900 TIP 442298 11621 6109038 2024-02-29 04:33:56.846 2024-02-29 04:33:56.846 1700 FEE 443064 652 6109039 2024-02-29 04:33:56.846 2024-02-29 04:33:56.846 15300 TIP 443064 19864 6109064 2024-02-29 04:39:07.235 2024-02-29 04:39:07.235 1000 FEE 442769 624 6109065 2024-02-29 04:39:07.235 2024-02-29 04:39:07.235 9000 TIP 442769 20922 6109066 2024-02-29 04:39:33.244 2024-02-29 04:39:33.244 1000 FEE 442177 21556 6109067 2024-02-29 04:39:33.244 2024-02-29 04:39:33.244 9000 TIP 442177 716 6109098 2024-02-29 04:48:17.766 2024-02-29 04:48:17.766 2100 FEE 442927 9352 6109099 2024-02-29 04:48:17.766 2024-02-29 04:48:17.766 18900 TIP 442927 2010 6109102 2024-02-29 04:48:56.302 2024-02-29 04:48:56.302 1000 FEE 442936 5427 6109103 2024-02-29 04:48:56.302 2024-02-29 04:48:56.302 9000 TIP 442936 1198 6109129 2024-02-29 04:55:01.088 2024-02-29 04:55:01.088 1000 FEE 442163 1817 6109130 2024-02-29 04:55:01.088 2024-02-29 04:55:01.088 9000 TIP 442163 19527 6109182 2024-02-29 04:59:39.528 2024-02-29 04:59:39.528 500 FEE 442023 20683 6109183 2024-02-29 04:59:39.528 2024-02-29 04:59:39.528 4500 TIP 442023 7674 6109226 2024-02-29 05:10:17.184 2024-02-29 05:10:17.184 200 FEE 442283 5752 6109227 2024-02-29 05:10:17.184 2024-02-29 05:10:17.184 1800 TIP 442283 21139 6109228 2024-02-29 05:10:17.343 2024-02-29 05:10:17.343 200 FEE 442283 859 6109229 2024-02-29 05:10:17.343 2024-02-29 05:10:17.343 1800 TIP 442283 12272 6109246 2024-02-29 05:10:22.137 2024-02-29 05:10:22.137 200 FEE 442283 2832 6109247 2024-02-29 05:10:22.137 2024-02-29 05:10:22.137 1800 TIP 442283 19403 6109251 2024-02-29 05:11:14.282 2024-02-29 05:11:14.282 10000 FEE 443083 20619 6109279 2024-02-29 05:19:17.511 2024-02-29 05:19:17.511 100 FEE 442978 827 6109280 2024-02-29 05:19:17.511 2024-02-29 05:19:17.511 900 TIP 442978 14080 6109319 2024-02-29 05:36:55.367 2024-02-29 05:36:55.367 21000 FEE 442386 3979 6109320 2024-02-29 05:36:55.367 2024-02-29 05:36:55.367 189000 TIP 442386 640 6109357 2024-02-29 05:47:03.698 2024-02-29 05:47:03.698 2100 FEE 442931 21405 6109358 2024-02-29 05:47:03.698 2024-02-29 05:47:03.698 18900 TIP 442931 4415 6109394 2024-02-29 05:51:12.182 2024-02-29 05:51:12.182 1000 FEE 443095 16301 6109403 2024-02-29 05:51:26.896 2024-02-29 05:51:26.896 100 FEE 442904 690 6109404 2024-02-29 05:51:26.896 2024-02-29 05:51:26.896 900 TIP 442904 18727 6109453 2024-02-29 06:06:32.019 2024-02-29 06:06:32.019 1000 FEE 443102 5942 6109463 2024-02-29 06:12:12.101 2024-02-29 06:12:12.101 1000 FEE 443104 4989 6109464 2024-02-29 06:12:19.893 2024-02-29 06:12:19.893 69000 FEE 443105 18994 6109470 2024-02-29 06:13:54.303 2024-02-29 06:13:54.303 1000 FEE 443105 15180 6109471 2024-02-29 06:13:54.303 2024-02-29 06:13:54.303 9000 TIP 443105 644 6109477 2024-02-29 06:16:02.076 2024-02-29 06:16:02.076 1000 FEE 443109 21178 6109512 2024-02-29 06:26:29.643 2024-02-29 06:26:29.643 1000 FEE 443115 18393 6109518 2024-02-29 06:27:58.969 2024-02-29 06:27:58.969 2100 FEE 443108 21575 6109519 2024-02-29 06:27:58.969 2024-02-29 06:27:58.969 18900 TIP 443108 17696 6109521 2024-02-29 06:28:27.939 2024-02-29 06:28:27.939 2100 FEE 443115 708 6109522 2024-02-29 06:28:27.939 2024-02-29 06:28:27.939 18900 TIP 443115 19524 6109536 2024-02-29 06:31:14.979 2024-02-29 06:31:14.979 1000 FEE 443107 19378 6109537 2024-02-29 06:31:14.979 2024-02-29 06:31:14.979 9000 TIP 443107 19929 6109540 2024-02-29 06:31:25.06 2024-02-29 06:31:25.06 1000 FEE 443112 19576 6109541 2024-02-29 06:31:25.06 2024-02-29 06:31:25.06 9000 TIP 443112 20596 6109571 2024-02-29 06:34:43.182 2024-02-29 06:34:43.182 1000 FEE 443120 10063 6109577 2024-02-29 06:35:27.956 2024-02-29 06:35:27.956 1000 FEE 442946 21547 6109578 2024-02-29 06:35:27.956 2024-02-29 06:35:27.956 9000 TIP 442946 19043 6109596 2024-02-29 06:36:08.117 2024-02-29 06:36:08.117 1000 FEE 442939 2264 6109597 2024-02-29 06:36:08.117 2024-02-29 06:36:08.117 9000 TIP 442939 18930 6109609 2024-02-29 06:37:09.697 2024-02-29 06:37:09.697 1000 FEE 443067 19966 6109610 2024-02-29 06:37:09.697 2024-02-29 06:37:09.697 9000 TIP 443067 18178 6109659 2024-02-29 06:41:44.122 2024-02-29 06:41:44.122 1000 FEE 443127 17891 6109666 2024-02-29 06:44:00.991 2024-02-29 06:44:00.991 1000 POLL 442163 1833 6109707 2024-02-29 06:56:00.752 2024-02-29 06:56:00.752 1000 FEE 442160 1141 6109708 2024-02-29 06:56:00.752 2024-02-29 06:56:00.752 9000 TIP 442160 18705 6109744 2024-02-29 07:06:58.071 2024-02-29 07:06:58.071 100 FEE 443132 19394 6109745 2024-02-29 07:06:58.071 2024-02-29 07:06:58.071 900 TIP 443132 3409 6109768 2024-02-29 07:12:52.67 2024-02-29 07:12:52.67 2100 FEE 443105 19663 6109769 2024-02-29 07:12:52.67 2024-02-29 07:12:52.67 18900 TIP 443105 21164 6109801 2024-02-29 07:13:52.355 2024-02-29 07:13:52.355 1000 FEE 443147 1705 6109811 2024-02-29 07:16:27.49 2024-02-29 07:16:27.49 2100 FEE 443144 2609 6109812 2024-02-29 07:16:27.49 2024-02-29 07:16:27.49 18900 TIP 443144 14489 6109838 2024-02-29 07:24:15.282 2024-02-29 07:24:15.282 21000 FEE 443150 14122 6109869 2024-02-29 07:33:53.471 2024-02-29 07:33:53.471 1000 FEE 420221 2264 6109870 2024-02-29 07:33:53.471 2024-02-29 07:33:53.471 9000 TIP 420221 13553 6109885 2024-02-29 07:36:18.564 2024-02-29 07:36:18.564 21000 FEE 443129 21254 6108846 2024-02-29 04:16:04.046 2024-02-29 04:16:04.046 1000 STREAM 141924 769 6108858 2024-02-29 04:17:04.032 2024-02-29 04:17:04.032 1000 STREAM 141924 5017 6108895 2024-02-29 04:19:04.063 2024-02-29 04:19:04.063 1000 STREAM 141924 21441 6109025 2024-02-29 04:31:04.164 2024-02-29 04:31:04.164 1000 STREAM 141924 21214 6109043 2024-02-29 04:35:04.191 2024-02-29 04:35:04.191 1000 STREAM 141924 1609 6109044 2024-02-29 04:36:04.174 2024-02-29 04:36:04.174 1000 STREAM 141924 10291 6109058 2024-02-29 04:38:04.196 2024-02-29 04:38:04.196 1000 STREAM 141924 9330 6108880 2024-02-29 04:17:26.038 2024-02-29 04:17:26.038 24300 TIP 443058 17514 6108885 2024-02-29 04:17:27.216 2024-02-29 04:17:27.216 2100 FEE 442565 16939 6108886 2024-02-29 04:17:27.216 2024-02-29 04:17:27.216 18900 TIP 442565 18772 6108896 2024-02-29 04:19:38.516 2024-02-29 04:19:38.516 500 FEE 441843 11885 6108897 2024-02-29 04:19:38.516 2024-02-29 04:19:38.516 4500 TIP 441843 17321 6108947 2024-02-29 04:21:49.79 2024-02-29 04:21:49.79 2100 FEE 442445 18241 6108948 2024-02-29 04:21:49.79 2024-02-29 04:21:49.79 18900 TIP 442445 9084 6108968 2024-02-29 04:23:35.576 2024-02-29 04:23:35.576 0 FEE 443069 1401 6108989 2024-02-29 04:27:21.636 2024-02-29 04:27:21.636 1000 FEE 442820 15336 6108990 2024-02-29 04:27:21.636 2024-02-29 04:27:21.636 9000 TIP 442820 10102 6108998 2024-02-29 04:28:25.428 2024-02-29 04:28:25.428 1000 FEE 442556 20464 6108999 2024-02-29 04:28:25.428 2024-02-29 04:28:25.428 9000 TIP 442556 19332 6109017 2024-02-29 04:29:38.108 2024-02-29 04:29:38.108 0 FEE 443071 17927 6109036 2024-02-29 04:33:55.33 2024-02-29 04:33:55.33 1700 FEE 443064 21044 6109037 2024-02-29 04:33:55.33 2024-02-29 04:33:55.33 15300 TIP 443064 2309 6109068 2024-02-29 04:40:01.101 2024-02-29 04:40:01.101 1000 FEE 443076 19806 6109082 2024-02-29 04:47:13.396 2024-02-29 04:47:13.396 1000 FEE 442313 21494 6109083 2024-02-29 04:47:13.396 2024-02-29 04:47:13.396 9000 TIP 442313 18679 6109094 2024-02-29 04:47:43.514 2024-02-29 04:47:43.514 1000 FEE 443077 18618 6109095 2024-02-29 04:47:57.741 2024-02-29 04:47:57.741 1000 FEE 442033 4798 6109096 2024-02-29 04:47:57.741 2024-02-29 04:47:57.741 9000 TIP 442033 1208 6109123 2024-02-29 04:54:40.189 2024-02-29 04:54:40.189 1000 FEE 442946 16965 6109124 2024-02-29 04:54:40.189 2024-02-29 04:54:40.189 9000 TIP 442946 8326 6109145 2024-02-29 04:58:17.315 2024-02-29 04:58:17.315 1000 FEE 442313 19007 6109146 2024-02-29 04:58:17.315 2024-02-29 04:58:17.315 9000 TIP 442313 21155 6109147 2024-02-29 04:58:18.246 2024-02-29 04:58:18.246 1000 FEE 442023 18675 6109148 2024-02-29 04:58:18.246 2024-02-29 04:58:18.246 9000 TIP 442023 12819 6109190 2024-02-29 05:03:53.497 2024-02-29 05:03:53.497 1000 FEE 443051 20509 6109191 2024-02-29 05:03:53.497 2024-02-29 05:03:53.497 9000 TIP 443051 12272 6109198 2024-02-29 05:05:47.364 2024-02-29 05:05:47.364 100000 FEE 442931 902 6109199 2024-02-29 05:05:47.364 2024-02-29 05:05:47.364 900000 TIP 442931 8841 6109222 2024-02-29 05:10:16.883 2024-02-29 05:10:16.883 200 FEE 442283 686 6109223 2024-02-29 05:10:16.883 2024-02-29 05:10:16.883 1800 TIP 442283 14370 6109258 2024-02-29 05:15:27.836 2024-02-29 05:15:27.836 1000 FEE 443085 13406 6109299 2024-02-29 05:30:32.93 2024-02-29 05:30:32.93 2100 FEE 442904 2042 6109300 2024-02-29 05:30:32.93 2024-02-29 05:30:32.93 18900 TIP 442904 10490 6109307 2024-02-29 05:32:53.01 2024-02-29 05:32:53.01 2100 FEE 442820 14785 6109308 2024-02-29 05:32:53.01 2024-02-29 05:32:53.01 18900 TIP 442820 19259 6109313 2024-02-29 05:34:47.622 2024-02-29 05:34:47.622 1000 FEE 443091 19378 6109318 2024-02-29 05:36:06.203 2024-02-29 05:36:06.203 0 FEE 443092 18262 6109325 2024-02-29 05:37:58.111 2024-02-29 05:37:58.111 2100 FEE 442848 15890 6109326 2024-02-29 05:37:58.111 2024-02-29 05:37:58.111 18900 TIP 442848 18452 6109345 2024-02-29 05:46:39.494 2024-02-29 05:46:39.494 100 FEE 442710 20969 6109346 2024-02-29 05:46:39.494 2024-02-29 05:46:39.494 900 TIP 442710 20302 6109347 2024-02-29 05:46:39.629 2024-02-29 05:46:39.629 900 FEE 442710 11491 6109348 2024-02-29 05:46:39.629 2024-02-29 05:46:39.629 8100 TIP 442710 10490 6109355 2024-02-29 05:47:03.516 2024-02-29 05:47:03.516 2100 FEE 443011 15273 6109356 2024-02-29 05:47:03.516 2024-02-29 05:47:03.516 18900 TIP 443011 2502 6109376 2024-02-29 05:47:28.085 2024-02-29 05:47:28.085 2100 FEE 442730 5293 6109377 2024-02-29 05:47:28.085 2024-02-29 05:47:28.085 18900 TIP 442730 5377 6109378 2024-02-29 05:48:01.389 2024-02-29 05:48:01.389 100 FEE 442973 1960 6109379 2024-02-29 05:48:01.389 2024-02-29 05:48:01.389 900 TIP 442973 16542 6109385 2024-02-29 05:48:22.213 2024-02-29 05:48:22.213 900 FEE 442956 19465 6109386 2024-02-29 05:48:22.213 2024-02-29 05:48:22.213 8100 TIP 442956 20120 6109411 2024-02-29 05:51:29.423 2024-02-29 05:51:29.423 100 FEE 442904 4238 6109412 2024-02-29 05:51:29.423 2024-02-29 05:51:29.423 900 TIP 442904 18809 6109418 2024-02-29 05:52:06.468 2024-02-29 05:52:06.468 2100 FEE 443009 18640 6109419 2024-02-29 05:52:06.468 2024-02-29 05:52:06.468 18900 TIP 443009 678 6109451 2024-02-29 06:05:23.103 2024-02-29 06:05:23.103 1000 POLL 442751 1221 6109465 2024-02-29 06:12:34.969 2024-02-29 06:12:34.969 2100 FEE 443101 18660 6109466 2024-02-29 06:12:34.969 2024-02-29 06:12:34.969 18900 TIP 443101 18177 6109495 2024-02-29 06:22:02.223 2024-02-29 06:22:02.223 100 FEE 443108 10554 6109496 2024-02-29 06:22:02.223 2024-02-29 06:22:02.223 900 TIP 443108 9695 6109517 2024-02-29 06:27:55.637 2024-02-29 06:27:55.637 1000 FEE 443116 2188 6109525 2024-02-29 06:28:47.565 2024-02-29 06:28:47.565 2100 FEE 443105 17172 6109526 2024-02-29 06:28:47.565 2024-02-29 06:28:47.565 18900 TIP 443105 2335 6109544 2024-02-29 06:31:58.054 2024-02-29 06:31:58.054 100 FEE 443083 20023 6109545 2024-02-29 06:31:58.054 2024-02-29 06:31:58.054 900 TIP 443083 1801 6109557 2024-02-29 06:34:25.095 2024-02-29 06:34:25.095 100 FEE 443108 15474 6109558 2024-02-29 06:34:25.095 2024-02-29 06:34:25.095 900 TIP 443108 18412 6109602 2024-02-29 06:36:57.267 2024-02-29 06:36:57.267 0 FEE 443122 15271 6109657 2024-02-29 06:41:09.853 2024-02-29 06:41:09.853 1000 FEE 443125 7916 6109687 2024-02-29 06:48:35.105 2024-02-29 06:48:35.105 1000 FEE 443132 14278 6109689 2024-02-29 06:49:21.138 2024-02-29 06:49:21.138 0 FEE 443132 19773 6109690 2024-02-29 06:49:49.898 2024-02-29 06:49:49.898 1000 FEE 443133 12368 6109697 2024-02-29 06:54:09.155 2024-02-29 06:54:09.155 1000 FEE 442911 6136 6109698 2024-02-29 06:54:09.155 2024-02-29 06:54:09.155 9000 TIP 442911 1195 6109701 2024-02-29 06:55:56.64 2024-02-29 06:55:56.64 1000 FEE 442157 1130 6109702 2024-02-29 06:55:56.64 2024-02-29 06:55:56.64 9000 TIP 442157 18837 6109713 2024-02-29 06:57:15.931 2024-02-29 06:57:15.931 2100 FEE 443130 20280 6109714 2024-02-29 06:57:15.931 2024-02-29 06:57:15.931 18900 TIP 443130 20109 6109722 2024-02-29 06:58:22.773 2024-02-29 06:58:22.773 1000 FEE 442173 16867 6109723 2024-02-29 06:58:22.773 2024-02-29 06:58:22.773 9000 TIP 442173 14074 6109733 2024-02-29 07:03:37.733 2024-02-29 07:03:37.733 1000 FEE 443140 14404 6109742 2024-02-29 07:05:37.739 2024-02-29 07:05:37.739 1000 FEE 443141 18809 6109789 2024-02-29 07:13:23.253 2024-02-29 07:13:23.253 800 FEE 442313 683 6109790 2024-02-29 07:13:23.253 2024-02-29 07:13:23.253 7200 TIP 442313 19557 6109818 2024-02-29 07:17:25.355 2024-02-29 07:17:25.355 800 FEE 442848 19118 6109819 2024-02-29 07:17:25.355 2024-02-29 07:17:25.355 7200 TIP 442848 708 6108887 2024-02-29 04:17:28.79 2024-02-29 04:17:28.79 2100 FEE 442565 4076 6108888 2024-02-29 04:17:28.79 2024-02-29 04:17:28.79 18900 TIP 442565 10112 6108889 2024-02-29 04:17:28.932 2024-02-29 04:17:28.932 2100 FEE 442565 9367 6108890 2024-02-29 04:17:28.932 2024-02-29 04:17:28.932 18900 TIP 442565 20370 6108923 2024-02-29 04:20:43.01 2024-02-29 04:20:43.01 500 FEE 442769 629 6108924 2024-02-29 04:20:43.01 2024-02-29 04:20:43.01 4500 TIP 442769 1007 6108932 2024-02-29 04:21:10.563 2024-02-29 04:21:10.563 500 FEE 442177 769 6108933 2024-02-29 04:21:10.563 2024-02-29 04:21:10.563 4500 TIP 442177 16704 6108935 2024-02-29 04:21:22.864 2024-02-29 04:21:22.864 500 FEE 442805 20326 6108936 2024-02-29 04:21:22.864 2024-02-29 04:21:22.864 4500 TIP 442805 7389 6108937 2024-02-29 04:21:24.122 2024-02-29 04:21:24.122 2100 FEE 442490 2232 6108938 2024-02-29 04:21:24.122 2024-02-29 04:21:24.122 18900 TIP 442490 8380 6109022 2024-02-29 04:30:30.675 2024-02-29 04:30:30.675 1000 FEE 441560 17953 6109023 2024-02-29 04:30:30.675 2024-02-29 04:30:30.675 9000 TIP 441560 2196 6109026 2024-02-29 04:32:02.391 2024-02-29 04:32:02.391 1000 FEE 442771 17237 6109027 2024-02-29 04:32:02.391 2024-02-29 04:32:02.391 9000 TIP 442771 9655 6109061 2024-02-29 04:38:44.708 2024-02-29 04:38:44.708 1000 FEE 442106 3371 6109062 2024-02-29 04:38:44.708 2024-02-29 04:38:44.708 9000 TIP 442106 12561 6109090 2024-02-29 04:47:21.791 2024-02-29 04:47:21.791 1000 FEE 442065 3396 6109091 2024-02-29 04:47:21.791 2024-02-29 04:47:21.791 9000 TIP 442065 629 6109118 2024-02-29 04:53:49.531 2024-02-29 04:53:49.531 1000 FEE 442785 12291 6109119 2024-02-29 04:53:49.531 2024-02-29 04:53:49.531 9000 TIP 442785 10821 6109120 2024-02-29 04:53:55.191 2024-02-29 04:53:55.191 1000 FEE 442106 9816 6109121 2024-02-29 04:53:55.191 2024-02-29 04:53:55.191 9000 TIP 442106 5852 6109133 2024-02-29 04:55:03.215 2024-02-29 04:55:03.215 1000 FEE 442065 9169 6109134 2024-02-29 04:55:03.215 2024-02-29 04:55:03.215 9000 TIP 442065 14258 6109153 2024-02-29 04:58:36.329 2024-02-29 04:58:36.329 1000 FEE 442969 17638 6109154 2024-02-29 04:58:36.329 2024-02-29 04:58:36.329 9000 TIP 442969 16670 6109166 2024-02-29 04:59:07.255 2024-02-29 04:59:07.255 500 FEE 442848 2013 6109167 2024-02-29 04:59:07.255 2024-02-29 04:59:07.255 4500 TIP 442848 19043 6109170 2024-02-29 04:59:19.165 2024-02-29 04:59:19.165 1000 FEE 442965 17713 6109171 2024-02-29 04:59:19.165 2024-02-29 04:59:19.165 9000 TIP 442965 1726 6109196 2024-02-29 05:05:40.519 2024-02-29 05:05:40.519 100 FEE 442931 4043 6109197 2024-02-29 05:05:40.519 2024-02-29 05:05:40.519 900 TIP 442931 19484 6109249 2024-02-29 05:11:07.114 2024-02-29 05:11:07.114 1000 FEE 442854 5829 6109250 2024-02-29 05:11:07.114 2024-02-29 05:11:07.114 9000 TIP 442854 7418 6109269 2024-02-29 05:18:03.199 2024-02-29 05:18:03.199 21000 FEE 443064 18209 6109270 2024-02-29 05:18:03.199 2024-02-29 05:18:03.199 189000 TIP 443064 4973 6109273 2024-02-29 05:19:10.405 2024-02-29 05:19:10.405 100 FEE 443011 1960 6109274 2024-02-29 05:19:10.405 2024-02-29 05:19:10.405 900 TIP 443011 18909 6109277 2024-02-29 05:19:14.261 2024-02-29 05:19:14.261 100 FEE 443008 17602 6109278 2024-02-29 05:19:14.261 2024-02-29 05:19:14.261 900 TIP 443008 17891 6109294 2024-02-29 05:29:01.285 2024-02-29 05:29:01.285 10000 FEE 442313 21374 6109295 2024-02-29 05:29:01.285 2024-02-29 05:29:01.285 90000 TIP 442313 1483 6109302 2024-02-29 05:31:41.895 2024-02-29 05:31:41.895 1000 FEE 443087 994 6109306 2024-02-29 05:32:45.337 2024-02-29 05:32:45.337 1000 FEE 443090 1705 6109321 2024-02-29 05:36:59.26 2024-02-29 05:36:59.26 100 FEE 443083 701 6109322 2024-02-29 05:36:59.26 2024-02-29 05:36:59.26 900 TIP 443083 16912 6109368 2024-02-29 05:47:12.203 2024-02-29 05:47:12.203 2100 FEE 442982 18005 6109369 2024-02-29 05:47:12.203 2024-02-29 05:47:12.203 18900 TIP 442982 15336 6109380 2024-02-29 05:48:01.627 2024-02-29 05:48:01.627 900 FEE 442973 18705 6109381 2024-02-29 05:48:01.627 2024-02-29 05:48:01.627 8100 TIP 442973 5701 6109401 2024-02-29 05:51:26.32 2024-02-29 05:51:26.32 100 FEE 442904 6515 6109402 2024-02-29 05:51:26.32 2024-02-29 05:51:26.32 900 TIP 442904 20409 6109430 2024-02-29 05:57:32.789 2024-02-29 05:57:32.789 2100 FEE 441646 20190 6109431 2024-02-29 05:57:32.789 2024-02-29 05:57:32.789 18900 TIP 441646 16309 6109447 2024-02-29 06:03:29.78 2024-02-29 06:03:29.78 1000 FEE 443100 14080 6109510 2024-02-29 06:26:20.586 2024-02-29 06:26:20.586 1000 FEE 443113 10493 6109511 2024-02-29 06:26:25.01 2024-02-29 06:26:25.01 1000 FEE 443114 15526 6109523 2024-02-29 06:28:34.04 2024-02-29 06:28:34.04 2100 FEE 443112 7983 6109524 2024-02-29 06:28:34.04 2024-02-29 06:28:34.04 18900 TIP 443112 21412 6109527 2024-02-29 06:28:50.904 2024-02-29 06:28:50.904 2100 FEE 443099 5427 6109528 2024-02-29 06:28:50.904 2024-02-29 06:28:50.904 18900 TIP 443099 4802 6109542 2024-02-29 06:31:46.51 2024-02-29 06:31:46.51 1000 POLL 442163 16747 6109561 2024-02-29 06:34:28.28 2024-02-29 06:34:28.28 100 FEE 443105 17162 6109562 2024-02-29 06:34:28.28 2024-02-29 06:34:28.28 900 TIP 443105 848 6109565 2024-02-29 06:34:31.087 2024-02-29 06:34:31.087 100 FEE 443097 17707 6109566 2024-02-29 06:34:31.087 2024-02-29 06:34:31.087 900 TIP 443097 12708 6109587 2024-02-29 06:35:53.24 2024-02-29 06:35:53.24 1000 FEE 442913 18124 6109588 2024-02-29 06:35:53.24 2024-02-29 06:35:53.24 9000 TIP 442913 650 6109611 2024-02-29 06:37:38.148 2024-02-29 06:37:38.148 1000 FEE 443057 21509 6109612 2024-02-29 06:37:38.148 2024-02-29 06:37:38.148 9000 TIP 443057 20109 6109625 2024-02-29 06:39:07.945 2024-02-29 06:39:07.945 1000 FEE 442820 8541 6109626 2024-02-29 06:39:07.945 2024-02-29 06:39:07.945 9000 TIP 442820 10291 6109635 2024-02-29 06:39:27.334 2024-02-29 06:39:27.334 100 FEE 443064 15160 6109636 2024-02-29 06:39:27.334 2024-02-29 06:39:27.334 900 TIP 443064 18809 6109658 2024-02-29 06:41:26.196 2024-02-29 06:41:26.196 1000 FEE 443126 20713 6109679 2024-02-29 06:47:54.711 2024-02-29 06:47:54.711 1000 FEE 443106 11956 6109680 2024-02-29 06:47:54.711 2024-02-29 06:47:54.711 9000 TIP 443106 1286 6109703 2024-02-29 06:55:57.045 2024-02-29 06:55:57.045 1000 FEE 442157 20243 6109704 2024-02-29 06:55:57.045 2024-02-29 06:55:57.045 9000 TIP 442157 19770 6109710 2024-02-29 06:56:40.36 2024-02-29 06:56:40.36 2100 FEE 442769 6361 6109711 2024-02-29 06:56:40.36 2024-02-29 06:56:40.36 18900 TIP 442769 7674 6109717 2024-02-29 06:58:20.067 2024-02-29 06:58:20.067 1000 FEE 443136 2330 6109728 2024-02-29 06:59:14.77 2024-02-29 06:59:14.77 1000 FEE 443138 16347 6109740 2024-02-29 07:05:24.465 2024-02-29 07:05:24.465 100 FEE 442565 12261 6109741 2024-02-29 07:05:24.465 2024-02-29 07:05:24.465 900 TIP 442565 14295 6109762 2024-02-29 07:12:12.844 2024-02-29 07:12:12.844 2100 FEE 442894 20251 6109763 2024-02-29 07:12:12.844 2024-02-29 07:12:12.844 18900 TIP 442894 17082 6109777 2024-02-29 07:13:22.026 2024-02-29 07:13:22.026 800 FEE 442313 16939 6109778 2024-02-29 07:13:22.026 2024-02-29 07:13:22.026 7200 TIP 442313 20327 6109781 2024-02-29 07:13:22.394 2024-02-29 07:13:22.394 800 FEE 442313 10591 6109782 2024-02-29 07:13:22.394 2024-02-29 07:13:22.394 7200 TIP 442313 8870 6109813 2024-02-29 07:17:01.696 2024-02-29 07:17:01.696 1200 FEE 442751 11956 6109814 2024-02-29 07:17:01.696 2024-02-29 07:17:01.696 10800 TIP 442751 686 6109816 2024-02-29 07:17:25.185 2024-02-29 07:17:25.185 800 FEE 442848 2046 6109817 2024-02-29 07:17:25.185 2024-02-29 07:17:25.185 7200 TIP 442848 19836 6109833 2024-02-29 07:20:47.386 2024-02-29 07:20:47.386 1000 POLL 442163 21422 6109863 2024-02-29 07:32:36.003 2024-02-29 07:32:36.003 1000 FEE 443153 20066 6109904 2024-02-29 07:37:34.03 2024-02-29 07:37:34.03 2100 FEE 443058 16929 6109905 2024-02-29 07:37:34.03 2024-02-29 07:37:34.03 18900 TIP 443058 15526 6109923 2024-02-29 07:42:37.64 2024-02-29 07:42:37.64 2100 FEE 442710 2016 6109924 2024-02-29 07:42:37.64 2024-02-29 07:42:37.64 18900 TIP 442710 17568 6108902 2024-02-29 04:19:43.824 2024-02-29 04:19:43.824 500 FEE 442084 1585 6108903 2024-02-29 04:19:43.824 2024-02-29 04:19:43.824 4500 TIP 442084 18994 6108912 2024-02-29 04:19:49.842 2024-02-29 04:19:49.842 500 FEE 442065 805 6108913 2024-02-29 04:19:49.842 2024-02-29 04:19:49.842 4500 TIP 442065 18448 6108927 2024-02-29 04:20:59.578 2024-02-29 04:20:59.578 500 FEE 442936 3544 6108928 2024-02-29 04:20:59.578 2024-02-29 04:20:59.578 4500 TIP 442936 17392 6108953 2024-02-29 04:21:54.635 2024-02-29 04:21:54.635 10000 FEE 443058 10409 6108954 2024-02-29 04:21:54.635 2024-02-29 04:21:54.635 90000 TIP 443058 6421 6108970 2024-02-29 04:24:05.535 2024-02-29 04:24:05.535 5000 FEE 443069 676 6108971 2024-02-29 04:24:05.535 2024-02-29 04:24:05.535 45000 TIP 443069 5017 6108920 2024-02-29 04:20:04.538 2024-02-29 04:20:04.538 1000 STREAM 141924 21292 6108929 2024-02-29 04:21:03.981 2024-02-29 04:21:03.981 1000 STREAM 141924 19281 6108965 2024-02-29 04:22:03.98 2024-02-29 04:22:03.98 1000 STREAM 141924 7389 6108966 2024-02-29 04:23:03.987 2024-02-29 04:23:03.987 1000 STREAM 141924 20775 6108969 2024-02-29 04:24:03.989 2024-02-29 04:24:03.989 1000 STREAM 141924 21157 6108973 2024-02-29 04:25:04.004 2024-02-29 04:25:04.004 1000 STREAM 141924 686 6108976 2024-02-29 04:26:04.03 2024-02-29 04:26:04.03 1000 STREAM 141924 15594 6108993 2024-02-29 04:28:04.029 2024-02-29 04:28:04.029 1000 STREAM 141924 21274 6109063 2024-02-29 04:39:04.06 2024-02-29 04:39:04.06 1000 STREAM 141924 20924 6109074 2024-02-29 04:41:04.073 2024-02-29 04:41:04.073 1000 STREAM 141924 2508 6109076 2024-02-29 04:42:04.083 2024-02-29 04:42:04.083 1000 STREAM 141924 1044 6109077 2024-02-29 04:43:04.091 2024-02-29 04:43:04.091 1000 STREAM 141924 21457 6109078 2024-02-29 04:44:04.09 2024-02-29 04:44:04.09 1000 STREAM 141924 14910 6109079 2024-02-29 04:45:04.095 2024-02-29 04:45:04.095 1000 STREAM 141924 14857 6109081 2024-02-29 04:47:04.112 2024-02-29 04:47:04.112 1000 STREAM 141924 1519 6109097 2024-02-29 04:48:04.119 2024-02-29 04:48:04.119 1000 STREAM 141924 12930 6109113 2024-02-29 04:53:04.139 2024-02-29 04:53:04.139 1000 STREAM 141924 979 6109137 2024-02-29 04:56:04.164 2024-02-29 04:56:04.164 1000 STREAM 141924 2046 6109139 2024-02-29 04:57:04.163 2024-02-29 04:57:04.163 1000 STREAM 141924 16653 6109140 2024-02-29 04:58:04.172 2024-02-29 04:58:04.172 1000 STREAM 141924 20439 6109186 2024-02-29 05:01:04.174 2024-02-29 05:01:04.174 1000 STREAM 141924 1493 6108960 2024-02-29 04:21:57.396 2024-02-29 04:21:57.396 90000 TIP 443058 20376 6108975 2024-02-29 04:25:19.107 2024-02-29 04:25:19.107 1000 POLL 442751 20246 6108979 2024-02-29 04:26:57.709 2024-02-29 04:26:57.709 1000 FEE 443072 775 6108987 2024-02-29 04:27:21.127 2024-02-29 04:27:21.127 1000 FEE 443011 2614 6108988 2024-02-29 04:27:21.127 2024-02-29 04:27:21.127 9000 TIP 443011 9150 6109009 2024-02-29 04:29:08.461 2024-02-29 04:29:08.461 100 FEE 442298 19581 6109010 2024-02-29 04:29:08.461 2024-02-29 04:29:08.461 900 TIP 442298 2528 6109015 2024-02-29 04:29:29.141 2024-02-29 04:29:29.141 1000 FEE 442936 5160 6109016 2024-02-29 04:29:29.141 2024-02-29 04:29:29.141 9000 TIP 442936 17157 6109020 2024-02-29 04:30:08.971 2024-02-29 04:30:08.971 100 FEE 443064 1425 6109021 2024-02-29 04:30:08.971 2024-02-29 04:30:08.971 900 TIP 443064 10359 6109046 2024-02-29 04:36:44.662 2024-02-29 04:36:44.662 1000 FEE 443075 21051 6109052 2024-02-29 04:37:47.413 2024-02-29 04:37:47.413 1000 FEE 442904 15941 6109053 2024-02-29 04:37:47.413 2024-02-29 04:37:47.413 9000 TIP 442904 21627 6109072 2024-02-29 04:40:10.325 2024-02-29 04:40:10.325 2100 FEE 442826 21418 6109073 2024-02-29 04:40:10.325 2024-02-29 04:40:10.325 18900 TIP 442826 6300 6109105 2024-02-29 04:49:17.653 2024-02-29 04:49:17.653 1000 FEE 442311 20775 6109106 2024-02-29 04:49:17.653 2024-02-29 04:49:17.653 9000 TIP 442311 15200 6109110 2024-02-29 04:52:26.931 2024-02-29 04:52:26.931 1000 FEE 443078 20861 6109116 2024-02-29 04:53:33.252 2024-02-29 04:53:33.252 1000 FEE 442033 18626 6109117 2024-02-29 04:53:33.252 2024-02-29 04:53:33.252 9000 TIP 442033 17838 6109125 2024-02-29 04:54:58.896 2024-02-29 04:54:58.896 1000 FEE 442751 21287 6109126 2024-02-29 04:54:58.896 2024-02-29 04:54:58.896 9000 TIP 442751 16432 6109136 2024-02-29 04:55:57.723 2024-02-29 04:55:57.723 1000 FEE 443079 794 6109141 2024-02-29 04:58:10.181 2024-02-29 04:58:10.181 2100 FEE 443067 640 6109142 2024-02-29 04:58:10.181 2024-02-29 04:58:10.181 18900 TIP 443067 16950 6109143 2024-02-29 04:58:16.413 2024-02-29 04:58:16.413 1000 FEE 441843 8045 6109144 2024-02-29 04:58:16.413 2024-02-29 04:58:16.413 9000 TIP 441843 714 6109178 2024-02-29 04:59:32.645 2024-02-29 04:59:32.645 1000 FEE 443008 21194 6109179 2024-02-29 04:59:32.645 2024-02-29 04:59:32.645 9000 TIP 443008 1803 6109188 2024-02-29 05:02:48.675 2024-02-29 05:02:48.675 1000 FEE 443081 880 6109204 2024-02-29 05:06:30.795 2024-02-29 05:06:30.795 1000 FEE 443011 2176 6109205 2024-02-29 05:06:30.795 2024-02-29 05:06:30.795 9000 TIP 443011 19943 6109230 2024-02-29 05:10:17.487 2024-02-29 05:10:17.487 200 FEE 442283 19198 6109231 2024-02-29 05:10:17.487 2024-02-29 05:10:17.487 1800 TIP 442283 1433 6109234 2024-02-29 05:10:17.801 2024-02-29 05:10:17.801 200 FEE 442283 20717 6109235 2024-02-29 05:10:17.801 2024-02-29 05:10:17.801 1800 TIP 442283 18680 6109240 2024-02-29 05:10:21.217 2024-02-29 05:10:21.217 400 FEE 442283 1801 6109241 2024-02-29 05:10:21.217 2024-02-29 05:10:21.217 3600 TIP 442283 7760 6109242 2024-02-29 05:10:21.514 2024-02-29 05:10:21.514 400 FEE 442283 1493 6109243 2024-02-29 05:10:21.514 2024-02-29 05:10:21.514 3600 TIP 442283 20891 6109253 2024-02-29 05:11:55.591 2024-02-29 05:11:55.591 0 FEE 443084 998 6109265 2024-02-29 05:17:20.374 2024-02-29 05:17:20.374 21000 FEE 443083 10530 6109266 2024-02-29 05:17:20.374 2024-02-29 05:17:20.374 189000 TIP 443083 18769 6109298 2024-02-29 05:30:29.422 2024-02-29 05:30:29.422 1000 POLL 442751 21296 6109314 2024-02-29 05:34:55.645 2024-02-29 05:34:55.645 1000 FEE 443092 15762 6109316 2024-02-29 05:35:34.414 2024-02-29 05:35:34.414 0 FEE 443092 19512 6109324 2024-02-29 05:37:36.113 2024-02-29 05:37:36.113 0 FEE 443092 7978 6109335 2024-02-29 05:43:13.371 2024-02-29 05:43:13.371 1000 POLL 442751 4521 6109362 2024-02-29 05:47:08.26 2024-02-29 05:47:08.26 2100 FEE 442710 8544 6109363 2024-02-29 05:47:08.26 2024-02-29 05:47:08.26 18900 TIP 442710 11523 6109424 2024-02-29 05:53:46.13 2024-02-29 05:53:46.13 0 FEE 443096 18769 6109432 2024-02-29 05:57:38.06 2024-02-29 05:57:38.06 100000 FEE 443097 1738 6109441 2024-02-29 06:02:14.936 2024-02-29 06:02:14.936 69000 FEE 443099 10490 6109455 2024-02-29 06:07:50.296 2024-02-29 06:07:50.296 1000 FEE 443103 14152 6109472 2024-02-29 06:14:04.417 2024-02-29 06:14:04.417 1000 FEE 443106 18663 6109475 2024-02-29 06:15:02.951 2024-02-29 06:15:02.951 100000 FEE 443108 20481 6109492 2024-02-29 06:20:24.386 2024-02-29 06:20:24.386 5000 FEE 442503 8544 6109493 2024-02-29 06:20:24.386 2024-02-29 06:20:24.386 45000 TIP 442503 1298 6109501 2024-02-29 06:24:08.553 2024-02-29 06:24:08.553 1000 POLL 442163 8505 6109532 2024-02-29 06:30:18.778 2024-02-29 06:30:18.778 100 FEE 443105 19906 6109533 2024-02-29 06:30:18.778 2024-02-29 06:30:18.778 900 TIP 443105 2256 6109538 2024-02-29 06:31:24.119 2024-02-29 06:31:24.119 1000 FEE 443115 11698 6109539 2024-02-29 06:31:24.119 2024-02-29 06:31:24.119 9000 TIP 443115 5806 6109569 2024-02-29 06:34:35.38 2024-02-29 06:34:35.38 100 FEE 443067 9669 6109570 2024-02-29 06:34:35.38 2024-02-29 06:34:35.38 900 TIP 443067 12139 6109585 2024-02-29 06:35:49.872 2024-02-29 06:35:49.872 1000 FEE 442922 16948 6109586 2024-02-29 06:35:49.872 2024-02-29 06:35:49.872 9000 TIP 442922 20573 6109598 2024-02-29 06:36:13.232 2024-02-29 06:36:13.232 1000 FEE 442940 10591 6109599 2024-02-29 06:36:13.232 2024-02-29 06:36:13.232 9000 TIP 442940 5759 6109629 2024-02-29 06:39:11.328 2024-02-29 06:39:11.328 1000 FEE 442820 19036 6109630 2024-02-29 06:39:11.328 2024-02-29 06:39:11.328 9000 TIP 442820 19458 6109631 2024-02-29 06:39:11.493 2024-02-29 06:39:11.493 1000 FEE 442820 21271 6109632 2024-02-29 06:39:11.493 2024-02-29 06:39:11.493 9000 TIP 442820 16839 6109637 2024-02-29 06:39:46.847 2024-02-29 06:39:46.847 600 FEE 443120 705 6109638 2024-02-29 06:39:46.847 2024-02-29 06:39:46.847 5400 TIP 443120 19148 6109668 2024-02-29 06:44:19.222 2024-02-29 06:44:19.222 1000 FEE 443128 13622 6109669 2024-02-29 06:44:57.765 2024-02-29 06:44:57.765 2100 FEE 443127 19663 6109670 2024-02-29 06:44:57.765 2024-02-29 06:44:57.765 18900 TIP 443127 18524 6109673 2024-02-29 06:45:20.878 2024-02-29 06:45:20.878 2100 FEE 443097 696 6109674 2024-02-29 06:45:20.878 2024-02-29 06:45:20.878 18900 TIP 443097 2077 6109683 2024-02-29 06:48:27.545 2024-02-29 06:48:27.545 2100 FEE 443064 11776 6109684 2024-02-29 06:48:27.545 2024-02-29 06:48:27.545 18900 TIP 443064 20062 6109685 2024-02-29 06:48:29.848 2024-02-29 06:48:29.848 2100 FEE 443126 18736 6109686 2024-02-29 06:48:29.848 2024-02-29 06:48:29.848 18900 TIP 443126 1729 6109758 2024-02-29 07:11:21.986 2024-02-29 07:11:21.986 1000 POLL 442751 17541 6109779 2024-02-29 07:13:22.231 2024-02-29 07:13:22.231 800 FEE 442313 20554 6109780 2024-02-29 07:13:22.231 2024-02-29 07:13:22.231 7200 TIP 442313 1823 6109785 2024-02-29 07:13:22.805 2024-02-29 07:13:22.805 800 FEE 442313 2709 6109786 2024-02-29 07:13:22.805 2024-02-29 07:13:22.805 7200 TIP 442313 10771 6109799 2024-02-29 07:13:25.218 2024-02-29 07:13:25.218 800 FEE 442313 19512 6109800 2024-02-29 07:13:25.218 2024-02-29 07:13:25.218 7200 TIP 442313 6137 6109827 2024-02-29 07:18:24.53 2024-02-29 07:18:24.53 100 FEE 443147 8498 6109828 2024-02-29 07:18:24.53 2024-02-29 07:18:24.53 900 TIP 443147 16004 6109844 2024-02-29 07:29:05.821 2024-02-29 07:29:05.821 1000 FEE 443103 3347 6109845 2024-02-29 07:29:05.821 2024-02-29 07:29:05.821 9000 TIP 443103 4064 6109853 2024-02-29 07:31:19.245 2024-02-29 07:31:19.245 1000 FEE 370690 2844 6109854 2024-02-29 07:31:19.245 2024-02-29 07:31:19.245 9000 TIP 370690 18336 6109857 2024-02-29 07:31:46.544 2024-02-29 07:31:46.544 1000 FEE 398696 21405 6109858 2024-02-29 07:31:46.544 2024-02-29 07:31:46.544 9000 TIP 398696 21119 6109860 2024-02-29 07:31:52.391 2024-02-29 07:31:52.391 1000 FEE 398085 14267 6109861 2024-02-29 07:31:52.391 2024-02-29 07:31:52.391 9000 TIP 398085 17226 6109875 2024-02-29 07:35:39.356 2024-02-29 07:35:39.356 1000 FEE 409945 1584 6109876 2024-02-29 07:35:39.356 2024-02-29 07:35:39.356 9000 TIP 409945 17891 6108972 2024-02-29 04:24:57.619 2024-02-29 04:24:57.619 1000 FEE 443070 4259 6108994 2024-02-29 04:28:11.24 2024-02-29 04:28:11.24 1000 FEE 441979 21417 6108995 2024-02-29 04:28:11.24 2024-02-29 04:28:11.24 9000 TIP 441979 19138 6109018 2024-02-29 04:29:49.669 2024-02-29 04:29:49.669 1000 FEE 443073 13763 6109030 2024-02-29 04:33:54.533 2024-02-29 04:33:54.533 1700 FEE 443064 1426 6109031 2024-02-29 04:33:54.533 2024-02-29 04:33:54.533 15300 TIP 443064 5779 6109050 2024-02-29 04:37:45.213 2024-02-29 04:37:45.213 1000 FEE 442023 7583 6109051 2024-02-29 04:37:45.213 2024-02-29 04:37:45.213 9000 TIP 442023 11992 6109056 2024-02-29 04:37:52.974 2024-02-29 04:37:52.974 1000 FEE 442298 1800 6109057 2024-02-29 04:37:52.974 2024-02-29 04:37:52.974 9000 TIP 442298 19622 6109100 2024-02-29 04:48:33.232 2024-02-29 04:48:33.232 1000 FEE 442946 7916 6109101 2024-02-29 04:48:33.232 2024-02-29 04:48:33.232 9000 TIP 442946 19030 6109114 2024-02-29 04:53:05.21 2024-02-29 04:53:05.21 1000 FEE 442556 10094 6109115 2024-02-29 04:53:05.21 2024-02-29 04:53:05.21 9000 TIP 442556 10013 6109161 2024-02-29 04:59:00.897 2024-02-29 04:59:00.897 500 FEE 441986 718 6109162 2024-02-29 04:59:00.897 2024-02-29 04:59:00.897 4500 TIP 441986 11609 6109168 2024-02-29 04:59:15.718 2024-02-29 04:59:15.718 500 FEE 441699 4415 6109169 2024-02-29 04:59:15.718 2024-02-29 04:59:15.718 4500 TIP 441699 13216 6109172 2024-02-29 04:59:32.036 2024-02-29 04:59:32.036 1000 FEE 442982 1983 6109173 2024-02-29 04:59:32.036 2024-02-29 04:59:32.036 9000 TIP 442982 13878 6109176 2024-02-29 04:59:32.434 2024-02-29 04:59:32.434 1000 FEE 442978 1130 6109177 2024-02-29 04:59:32.434 2024-02-29 04:59:32.434 9000 TIP 442978 1273 6109200 2024-02-29 05:05:58.819 2024-02-29 05:05:58.819 100 FEE 442969 15159 6109201 2024-02-29 05:05:58.819 2024-02-29 05:05:58.819 900 TIP 442969 8242 6109203 2024-02-29 05:06:25.394 2024-02-29 05:06:25.394 1000 FEE 443082 1135 6109213 2024-02-29 05:07:50.171 2024-02-29 05:07:50.171 1000 FEE 442797 2709 6109214 2024-02-29 05:07:50.171 2024-02-29 05:07:50.171 9000 TIP 442797 11776 6109217 2024-02-29 05:09:38.199 2024-02-29 05:09:38.199 1000 FEE 442769 1047 6109218 2024-02-29 05:09:38.199 2024-02-29 05:09:38.199 9000 TIP 442769 16259 6109238 2024-02-29 05:10:18.146 2024-02-29 05:10:18.146 200 FEE 442283 18169 6109239 2024-02-29 05:10:18.146 2024-02-29 05:10:18.146 1800 TIP 442283 16753 6109252 2024-02-29 05:11:19.472 2024-02-29 05:11:19.472 1000 FEE 443084 20251 6109259 2024-02-29 05:15:44.801 2024-02-29 05:15:44.801 21000 FEE 443082 16724 6109260 2024-02-29 05:15:44.801 2024-02-29 05:15:44.801 189000 TIP 443082 19147 6109332 2024-02-29 05:41:21.272 2024-02-29 05:41:21.272 1000 POLL 442163 16004 6109339 2024-02-29 05:46:23.575 2024-02-29 05:46:23.575 100 FEE 442982 16543 6109340 2024-02-29 05:46:23.575 2024-02-29 05:46:23.575 900 TIP 442982 20560 6109351 2024-02-29 05:47:01.418 2024-02-29 05:47:01.418 2100 FEE 442904 21541 6109352 2024-02-29 05:47:01.418 2024-02-29 05:47:01.418 18900 TIP 442904 4391 6109372 2024-02-29 05:47:13.889 2024-02-29 05:47:13.889 2100 FEE 442628 13198 6109373 2024-02-29 05:47:13.889 2024-02-29 05:47:13.889 18900 TIP 442628 1825 6109395 2024-02-29 05:51:24.522 2024-02-29 05:51:24.522 100 FEE 442904 3213 6109396 2024-02-29 05:51:24.522 2024-02-29 05:51:24.522 900 TIP 442904 5497 6109399 2024-02-29 05:51:25.676 2024-02-29 05:51:25.676 100 FEE 442904 7913 6109400 2024-02-29 05:51:25.676 2024-02-29 05:51:25.676 900 TIP 442904 886 6109420 2024-02-29 05:53:00.475 2024-02-29 05:53:00.475 1000 FEE 443096 4238 6109445 2024-02-29 06:03:16.437 2024-02-29 06:03:16.437 3500 FEE 443012 19158 6109446 2024-02-29 06:03:16.437 2024-02-29 06:03:16.437 31500 TIP 443012 13759 6109467 2024-02-29 06:13:04.448 2024-02-29 06:13:04.448 5000 FEE 442869 21139 6109468 2024-02-29 06:13:04.448 2024-02-29 06:13:04.448 45000 TIP 442869 21521 6109474 2024-02-29 06:14:32.927 2024-02-29 06:14:32.927 21000 FEE 443107 17707 6109486 2024-02-29 06:18:59.387 2024-02-29 06:18:59.387 1000 POLL 442751 17517 6109513 2024-02-29 06:26:29.86 2024-02-29 06:26:29.86 100 FEE 443099 19007 6109514 2024-02-29 06:26:29.86 2024-02-29 06:26:29.86 900 TIP 443099 20825 6109559 2024-02-29 06:34:26.549 2024-02-29 06:34:26.549 100 FEE 443107 20551 6109560 2024-02-29 06:34:26.549 2024-02-29 06:34:26.549 900 TIP 443107 11523 6109572 2024-02-29 06:34:45.119 2024-02-29 06:34:45.119 1000 FEE 443121 10112 6109591 2024-02-29 06:35:58.403 2024-02-29 06:35:58.403 1000 FEE 442941 20218 6109592 2024-02-29 06:35:58.403 2024-02-29 06:35:58.403 9000 TIP 442941 19966 6109604 2024-02-29 06:37:04.896 2024-02-29 06:37:04.896 1000 FEE 443092 698 6109605 2024-02-29 06:37:04.896 2024-02-29 06:37:04.896 9000 TIP 443092 11829 6109607 2024-02-29 06:37:06.335 2024-02-29 06:37:06.335 100 FEE 443122 21208 6109608 2024-02-29 06:37:06.335 2024-02-29 06:37:06.335 900 TIP 443122 1320 6109633 2024-02-29 06:39:21.465 2024-02-29 06:39:21.465 100 FEE 443122 3347 6109634 2024-02-29 06:39:21.465 2024-02-29 06:39:21.465 900 TIP 443122 9426 6109639 2024-02-29 06:39:47.074 2024-02-29 06:39:47.074 300 FEE 443120 17707 6109640 2024-02-29 06:39:47.074 2024-02-29 06:39:47.074 2700 TIP 443120 2508 6109647 2024-02-29 06:39:48.264 2024-02-29 06:39:48.264 300 FEE 443120 4064 6109648 2024-02-29 06:39:48.264 2024-02-29 06:39:48.264 2700 TIP 443120 685 6109676 2024-02-29 06:46:06.625 2024-02-29 06:46:06.625 100000 FEE 443129 17046 6109681 2024-02-29 06:47:57.88 2024-02-29 06:47:57.88 1000 FEE 443131 15690 6109693 2024-02-29 06:51:28.658 2024-02-29 06:51:28.658 0 FEE 443132 1426 6109700 2024-02-29 06:55:54.885 2024-02-29 06:55:54.885 1000 FEE 443134 19488 6109734 2024-02-29 07:03:57.561 2024-02-29 07:03:57.561 1000 POLL 442163 2519 6109750 2024-02-29 07:08:36.249 2024-02-29 07:08:36.249 1000 FEE 443143 21485 6109755 2024-02-29 07:10:20.888 2024-02-29 07:10:20.888 1000 FEE 443144 5306 6109766 2024-02-29 07:12:40.399 2024-02-29 07:12:40.399 2100 FEE 442931 19267 6109767 2024-02-29 07:12:40.399 2024-02-29 07:12:40.399 18900 TIP 442931 18114 6109770 2024-02-29 07:12:54.337 2024-02-29 07:12:54.337 2100 FEE 443099 11714 6109771 2024-02-29 07:12:54.337 2024-02-29 07:12:54.337 18900 TIP 443099 2596 6109795 2024-02-29 07:13:24.567 2024-02-29 07:13:24.567 800 FEE 442313 5500 6109796 2024-02-29 07:13:24.567 2024-02-29 07:13:24.567 7200 TIP 442313 19640 6109825 2024-02-29 07:18:23.809 2024-02-29 07:18:23.809 100 FEE 443123 9353 6109826 2024-02-29 07:18:23.809 2024-02-29 07:18:23.809 900 TIP 443123 18533 6109894 2024-02-29 07:37:11.628 2024-02-29 07:37:11.628 2100 FEE 443107 18526 6109895 2024-02-29 07:37:11.628 2024-02-29 07:37:11.628 18900 TIP 443107 19501 6109906 2024-02-29 07:37:37.197 2024-02-29 07:37:37.197 2100 FEE 443064 913 6109907 2024-02-29 07:37:37.197 2024-02-29 07:37:37.197 18900 TIP 443064 14651 6109919 2024-02-29 07:41:28.76 2024-02-29 07:41:28.76 2100 FEE 442721 17162 6109920 2024-02-29 07:41:28.76 2024-02-29 07:41:28.76 18900 TIP 442721 1428 6109939 2024-02-29 07:44:40.252 2024-02-29 07:44:40.252 21000 FEE 443160 3439 6109943 2024-02-29 07:47:09.483 2024-02-29 07:47:09.483 100 FEE 443160 4973 6109944 2024-02-29 07:47:09.483 2024-02-29 07:47:09.483 900 TIP 443160 3360 6109028 2024-02-29 04:32:04.174 2024-02-29 04:32:04.174 1000 STREAM 141924 10728 6109029 2024-02-29 04:33:04.17 2024-02-29 04:33:04.17 1000 STREAM 141924 9341 6109042 2024-02-29 04:34:04.183 2024-02-29 04:34:04.183 1000 STREAM 141924 11829 6109047 2024-02-29 04:37:04.178 2024-02-29 04:37:04.178 1000 STREAM 141924 16347 6109165 2024-02-29 04:59:04.341 2024-02-29 04:59:04.341 1000 STREAM 141924 1180 6109187 2024-02-29 05:02:04.355 2024-02-29 05:02:04.355 1000 STREAM 141924 20744 6109195 2024-02-29 05:05:04.394 2024-02-29 05:05:04.394 1000 STREAM 141924 13763 6109210 2024-02-29 05:07:04.39 2024-02-29 05:07:04.39 1000 STREAM 141924 21416 6109216 2024-02-29 05:09:04.391 2024-02-29 05:09:04.391 1000 STREAM 141924 5112 6109219 2024-02-29 05:10:04.413 2024-02-29 05:10:04.413 1000 STREAM 141924 7891 6109248 2024-02-29 05:11:04.42 2024-02-29 05:11:04.42 1000 STREAM 141924 16754 6109254 2024-02-29 05:12:04.417 2024-02-29 05:12:04.417 1000 STREAM 141924 671 6109255 2024-02-29 05:13:04.422 2024-02-29 05:13:04.422 1000 STREAM 141924 11477 6109256 2024-02-29 05:14:04.41 2024-02-29 05:14:04.41 1000 STREAM 141924 2293 6109261 2024-02-29 05:16:04.466 2024-02-29 05:16:04.466 1000 STREAM 141924 6616 6109271 2024-02-29 05:18:04.464 2024-02-29 05:18:04.464 1000 STREAM 141924 638 6109272 2024-02-29 05:19:04.459 2024-02-29 05:19:04.459 1000 STREAM 141924 18363 6109281 2024-02-29 05:20:04.489 2024-02-29 05:20:04.489 1000 STREAM 141924 7389 6109282 2024-02-29 05:21:04.476 2024-02-29 05:21:04.476 1000 STREAM 141924 11714 6109290 2024-02-29 05:25:04.508 2024-02-29 05:25:04.508 1000 STREAM 141924 20573 6109291 2024-02-29 05:26:04.516 2024-02-29 05:26:04.516 1000 STREAM 141924 20190 6109293 2024-02-29 05:28:04.552 2024-02-29 05:28:04.552 1000 STREAM 141924 11885 6109305 2024-02-29 05:32:04.553 2024-02-29 05:32:04.553 1000 STREAM 141924 12736 6109312 2024-02-29 05:34:04.578 2024-02-29 05:34:04.578 1000 STREAM 141924 21140 6109315 2024-02-29 05:35:04.554 2024-02-29 05:35:04.554 1000 STREAM 141924 6578 6109317 2024-02-29 05:36:04.573 2024-02-29 05:36:04.573 1000 STREAM 141924 21242 6109323 2024-02-29 05:37:04.587 2024-02-29 05:37:04.587 1000 STREAM 141924 16126 6109327 2024-02-29 05:38:04.586 2024-02-29 05:38:04.586 1000 STREAM 141924 21514 6109328 2024-02-29 05:39:04.593 2024-02-29 05:39:04.593 1000 STREAM 141924 21036 6109333 2024-02-29 05:42:04.613 2024-02-29 05:42:04.613 1000 STREAM 141924 17446 6109334 2024-02-29 05:43:04.62 2024-02-29 05:43:04.62 1000 STREAM 141924 14267 6109337 2024-02-29 05:45:04.642 2024-02-29 05:45:04.642 1000 STREAM 141924 19910 6109338 2024-02-29 05:46:04.644 2024-02-29 05:46:04.644 1000 STREAM 141924 9655 6109359 2024-02-29 05:47:04.649 2024-02-29 05:47:04.649 1000 STREAM 141924 17798 6109391 2024-02-29 05:50:04.697 2024-02-29 05:50:04.697 1000 STREAM 141924 10719 6109393 2024-02-29 05:51:04.677 2024-02-29 05:51:04.677 1000 STREAM 141924 13782 6109429 2024-02-29 05:57:04.742 2024-02-29 05:57:04.742 1000 STREAM 141924 1060 6109437 2024-02-29 06:01:04.814 2024-02-29 06:01:04.814 1000 STREAM 141924 18511 6109440 2024-02-29 06:02:04.794 2024-02-29 06:02:04.794 1000 STREAM 141924 946 6109448 2024-02-29 06:04:04.811 2024-02-29 06:04:04.811 1000 STREAM 141924 9334 6109450 2024-02-29 06:05:04.844 2024-02-29 06:05:04.844 1000 STREAM 141924 20099 6109457 2024-02-29 06:09:04.854 2024-02-29 06:09:04.854 1000 STREAM 141924 18269 6109461 2024-02-29 06:11:04.885 2024-02-29 06:11:04.885 1000 STREAM 141924 986 6109469 2024-02-29 06:13:04.877 2024-02-29 06:13:04.877 1000 STREAM 141924 5003 6109478 2024-02-29 06:16:04.904 2024-02-29 06:16:04.904 1000 STREAM 141924 20208 6109500 2024-02-29 06:24:04.949 2024-02-29 06:24:04.949 1000 STREAM 141924 2361 6109529 2024-02-29 06:29:04.982 2024-02-29 06:29:04.982 1000 STREAM 141924 11561 6109535 2024-02-29 06:31:04.996 2024-02-29 06:31:04.996 1000 STREAM 141924 18675 6109546 2024-02-29 06:32:05.016 2024-02-29 06:32:05.016 1000 STREAM 141924 5746 6109085 2024-02-29 04:47:14.754 2024-02-29 04:47:14.754 9000 TIP 442084 16124 6109092 2024-02-29 04:47:39.876 2024-02-29 04:47:39.876 1000 FEE 441979 20799 6109093 2024-02-29 04:47:39.876 2024-02-29 04:47:39.876 9000 TIP 441979 8245 6109149 2024-02-29 04:58:19.227 2024-02-29 04:58:19.227 1000 FEE 442084 5701 6109150 2024-02-29 04:58:19.227 2024-02-29 04:58:19.227 9000 TIP 442084 18380 6109155 2024-02-29 04:58:48.499 2024-02-29 04:58:48.499 500 FEE 442556 16562 6109156 2024-02-29 04:58:48.499 2024-02-29 04:58:48.499 4500 TIP 442556 2188 6109157 2024-02-29 04:58:50.772 2024-02-29 04:58:50.772 1000 FEE 443013 19906 6109158 2024-02-29 04:58:50.772 2024-02-29 04:58:50.772 9000 TIP 443013 14795 6109163 2024-02-29 04:59:01.825 2024-02-29 04:59:01.825 1000 FEE 442769 976 6109164 2024-02-29 04:59:01.825 2024-02-29 04:59:01.825 9000 TIP 442769 6578 6109180 2024-02-29 04:59:35.402 2024-02-29 04:59:35.402 500 FEE 442313 20152 6109181 2024-02-29 04:59:35.402 2024-02-29 04:59:35.402 4500 TIP 442313 15488 6109206 2024-02-29 05:06:34.797 2024-02-29 05:06:34.797 100 FEE 442023 624 6109207 2024-02-29 05:06:34.797 2024-02-29 05:06:34.797 900 TIP 442023 20340 6109208 2024-02-29 05:06:36.112 2024-02-29 05:06:36.112 100 FEE 442023 16594 6109209 2024-02-29 05:06:36.112 2024-02-29 05:06:36.112 900 TIP 442023 1261 6109267 2024-02-29 05:17:55.766 2024-02-29 05:17:55.766 1000 FEE 443083 6537 6109268 2024-02-29 05:17:55.766 2024-02-29 05:17:55.766 9000 TIP 443083 9275 6109304 2024-02-29 05:31:55.896 2024-02-29 05:31:55.896 1000 FEE 443089 18309 6109353 2024-02-29 05:47:02.851 2024-02-29 05:47:02.851 2100 FEE 442751 6526 6109354 2024-02-29 05:47:02.851 2024-02-29 05:47:02.851 18900 TIP 442751 19815 6109360 2024-02-29 05:47:07.581 2024-02-29 05:47:07.581 2100 FEE 442820 2256 6109361 2024-02-29 05:47:07.581 2024-02-29 05:47:07.581 18900 TIP 442820 19888 6109364 2024-02-29 05:47:10.617 2024-02-29 05:47:10.617 2100 FEE 442894 21555 6109365 2024-02-29 05:47:10.617 2024-02-29 05:47:10.617 18900 TIP 442894 2000 6109387 2024-02-29 05:48:24.428 2024-02-29 05:48:24.428 9000 FEE 442973 18017 6109388 2024-02-29 05:48:24.428 2024-02-29 05:48:24.428 81000 TIP 442973 5725 6109416 2024-02-29 05:52:06.343 2024-02-29 05:52:06.343 2100 FEE 443009 16442 6109417 2024-02-29 05:52:06.343 2024-02-29 05:52:06.343 18900 TIP 443009 1320 6109438 2024-02-29 06:01:26.098 2024-02-29 06:01:26.098 5000 FEE 442313 20897 6109439 2024-02-29 06:01:26.098 2024-02-29 06:01:26.098 45000 TIP 442313 5057 6109442 2024-02-29 06:02:34.971 2024-02-29 06:02:34.971 1000 FEE 443099 9843 6109443 2024-02-29 06:02:34.971 2024-02-29 06:02:34.971 9000 TIP 443099 18507 6109479 2024-02-29 06:16:06.31 2024-02-29 06:16:06.31 2100 FEE 443095 19378 6109480 2024-02-29 06:16:06.31 2024-02-29 06:16:06.31 18900 TIP 443095 13931 6109488 2024-02-29 06:19:14.053 2024-02-29 06:19:14.053 5000 FEE 442904 9242 6109489 2024-02-29 06:19:14.053 2024-02-29 06:19:14.053 45000 TIP 442904 19303 6109502 2024-02-29 06:24:31.342 2024-02-29 06:24:31.342 10000 FEE 443108 4654 6109503 2024-02-29 06:24:31.342 2024-02-29 06:24:31.342 90000 TIP 443108 21014 6109547 2024-02-29 06:32:06.717 2024-02-29 06:32:06.717 100 FEE 443067 19193 6109548 2024-02-29 06:32:06.717 2024-02-29 06:32:06.717 900 TIP 443067 19902 6109573 2024-02-29 06:34:48.966 2024-02-29 06:34:48.966 4200 FEE 443117 19282 6109574 2024-02-29 06:34:48.966 2024-02-29 06:34:48.966 37800 TIP 443117 15148 6109579 2024-02-29 06:35:31.446 2024-02-29 06:35:31.446 1000 FEE 442960 2674 6109580 2024-02-29 06:35:31.446 2024-02-29 06:35:31.446 9000 TIP 442960 19878 6109581 2024-02-29 06:35:40.834 2024-02-29 06:35:40.834 1000 FEE 442961 1120 6109582 2024-02-29 06:35:40.834 2024-02-29 06:35:40.834 9000 TIP 442961 21494 6109583 2024-02-29 06:35:43.574 2024-02-29 06:35:43.574 1000 FEE 442920 670 6109584 2024-02-29 06:35:43.574 2024-02-29 06:35:43.574 9000 TIP 442920 977 6109618 2024-02-29 06:38:32.847 2024-02-29 06:38:32.847 1000 FEE 443123 11621 6109621 2024-02-29 06:39:07.016 2024-02-29 06:39:07.016 1000 FEE 442820 19117 6109622 2024-02-29 06:39:07.016 2024-02-29 06:39:07.016 9000 TIP 442820 5942 6109623 2024-02-29 06:39:07.426 2024-02-29 06:39:07.426 1000 FEE 442820 16988 6109624 2024-02-29 06:39:07.426 2024-02-29 06:39:07.426 9000 TIP 442820 21022 6109651 2024-02-29 06:39:48.693 2024-02-29 06:39:48.693 300 FEE 443120 18995 6109652 2024-02-29 06:39:48.693 2024-02-29 06:39:48.693 2700 TIP 443120 18124 6109653 2024-02-29 06:39:48.826 2024-02-29 06:39:48.826 300 FEE 443120 20706 6109654 2024-02-29 06:39:48.826 2024-02-29 06:39:48.826 2700 TIP 443120 20775 6109663 2024-02-29 06:42:43.163 2024-02-29 06:42:43.163 2100 FEE 443119 18877 6109664 2024-02-29 06:42:43.163 2024-02-29 06:42:43.163 18900 TIP 443119 19553 6109678 2024-02-29 06:47:43.311 2024-02-29 06:47:43.311 69000 FEE 443130 21599 6109752 2024-02-29 07:10:00.298 2024-02-29 07:10:00.298 2100 FEE 443129 15728 6109753 2024-02-29 07:10:00.298 2024-02-29 07:10:00.298 18900 TIP 443129 787 6109775 2024-02-29 07:13:21.88 2024-02-29 07:13:21.88 800 FEE 442313 1310 6109776 2024-02-29 07:13:21.88 2024-02-29 07:13:21.88 7200 TIP 442313 19576 6109787 2024-02-29 07:13:23.031 2024-02-29 07:13:23.031 800 FEE 442313 910 6109788 2024-02-29 07:13:23.031 2024-02-29 07:13:23.031 7200 TIP 442313 19352 6109803 2024-02-29 07:13:56.383 2024-02-29 07:13:56.383 10000 FEE 443145 14122 6109804 2024-02-29 07:13:56.383 2024-02-29 07:13:56.383 90000 TIP 443145 15806 6109810 2024-02-29 07:16:23.396 2024-02-29 07:16:23.396 1000 FEE 443149 21503 6109823 2024-02-29 07:18:21.565 2024-02-29 07:18:21.565 100 FEE 443133 1745 6109824 2024-02-29 07:18:21.565 2024-02-29 07:18:21.565 900 TIP 443133 21291 6109877 2024-02-29 07:35:40.71 2024-02-29 07:35:40.71 1000 FEE 443156 1803 6109887 2024-02-29 07:36:36.2 2024-02-29 07:36:36.2 1000 FEE 410136 630 6109888 2024-02-29 07:36:36.2 2024-02-29 07:36:36.2 9000 TIP 410136 20045 6109889 2024-02-29 07:36:48.854 2024-02-29 07:36:48.854 2100 FEE 443129 21612 6109890 2024-02-29 07:36:48.854 2024-02-29 07:36:48.854 18900 TIP 443129 756 6109896 2024-02-29 07:37:17.705 2024-02-29 07:37:17.705 2100 FEE 443105 1142 6109897 2024-02-29 07:37:17.705 2024-02-29 07:37:17.705 18900 TIP 443105 17602 6109972 2024-02-29 07:52:23.839 2024-02-29 07:52:23.839 100 FEE 443164 14152 6109973 2024-02-29 07:52:23.839 2024-02-29 07:52:23.839 900 TIP 443164 19961 6109981 2024-02-29 07:53:48 2024-02-29 07:53:48 1000 FEE 442396 1631 6109982 2024-02-29 07:53:48 2024-02-29 07:53:48 9000 TIP 442396 14152 6109985 2024-02-29 07:54:00.022 2024-02-29 07:54:00.022 1000 FEE 442674 1000 6109986 2024-02-29 07:54:00.022 2024-02-29 07:54:00.022 9000 TIP 442674 10693 6109988 2024-02-29 07:54:13.679 2024-02-29 07:54:13.679 1000 FEE 442706 19572 6109989 2024-02-29 07:54:13.679 2024-02-29 07:54:13.679 9000 TIP 442706 641 6110000 2024-02-29 07:55:03.631 2024-02-29 07:55:03.631 1000 FEE 442447 21079 6110001 2024-02-29 07:55:03.631 2024-02-29 07:55:03.631 9000 TIP 442447 18829 6110004 2024-02-29 07:55:28.974 2024-02-29 07:55:28.974 2100 FEE 443164 8080 6110005 2024-02-29 07:55:28.974 2024-02-29 07:55:28.974 18900 TIP 443164 6430 6110007 2024-02-29 07:56:09.857 2024-02-29 07:56:09.857 2100 FEE 443166 20691 6110008 2024-02-29 07:56:09.857 2024-02-29 07:56:09.857 18900 TIP 443166 18909 6110019 2024-02-29 08:00:05.294 2024-02-29 08:00:05.294 100000 FEE 443171 19021 6110046 2024-02-29 08:10:27.928 2024-02-29 08:10:27.928 100 FEE 443157 21058 6110047 2024-02-29 08:10:27.928 2024-02-29 08:10:27.928 900 TIP 443157 925 6109189 2024-02-29 05:03:04.371 2024-02-29 05:03:04.371 1000 STREAM 141924 6148 6109192 2024-02-29 05:04:04.365 2024-02-29 05:04:04.365 1000 STREAM 141924 14651 6109202 2024-02-29 05:06:04.381 2024-02-29 05:06:04.381 1000 STREAM 141924 17984 6109215 2024-02-29 05:08:04.392 2024-02-29 05:08:04.392 1000 STREAM 141924 2322 6109257 2024-02-29 05:15:04.43 2024-02-29 05:15:04.43 1000 STREAM 141924 11240 6109264 2024-02-29 05:17:04.449 2024-02-29 05:17:04.449 1000 STREAM 141924 1352 6109284 2024-02-29 05:22:04.483 2024-02-29 05:22:04.483 1000 STREAM 141924 720 6109286 2024-02-29 05:23:04.49 2024-02-29 05:23:04.49 1000 STREAM 141924 17797 6109289 2024-02-29 05:24:04.509 2024-02-29 05:24:04.509 1000 STREAM 141924 19557 6109292 2024-02-29 05:27:04.523 2024-02-29 05:27:04.523 1000 STREAM 141924 2459 6109296 2024-02-29 05:29:04.536 2024-02-29 05:29:04.536 1000 STREAM 141924 18235 6109297 2024-02-29 05:30:04.595 2024-02-29 05:30:04.595 1000 STREAM 141924 17455 6109301 2024-02-29 05:31:04.553 2024-02-29 05:31:04.553 1000 STREAM 141924 9348 6109309 2024-02-29 05:33:04.566 2024-02-29 05:33:04.566 1000 STREAM 141924 15549 6109329 2024-02-29 05:40:04.624 2024-02-29 05:40:04.624 1000 STREAM 141924 9476 6109330 2024-02-29 05:41:04.63 2024-02-29 05:41:04.63 1000 STREAM 141924 2361 6109336 2024-02-29 05:44:04.624 2024-02-29 05:44:04.624 1000 STREAM 141924 4692 6109382 2024-02-29 05:48:04.692 2024-02-29 05:48:04.692 1000 STREAM 141924 16789 6109390 2024-02-29 05:49:04.672 2024-02-29 05:49:04.672 1000 STREAM 141924 2596 6109415 2024-02-29 05:52:04.658 2024-02-29 05:52:04.658 1000 STREAM 141924 4802 6109423 2024-02-29 05:53:04.669 2024-02-29 05:53:04.669 1000 STREAM 141924 4798 6109426 2024-02-29 05:54:04.698 2024-02-29 05:54:04.698 1000 STREAM 141924 620 6109427 2024-02-29 05:55:04.712 2024-02-29 05:55:04.712 1000 STREAM 141924 12566 6109428 2024-02-29 05:56:04.719 2024-02-29 05:56:04.719 1000 STREAM 141924 6382 6109433 2024-02-29 05:58:04.711 2024-02-29 05:58:04.711 1000 STREAM 141924 21014 6109434 2024-02-29 05:59:04.72 2024-02-29 05:59:04.72 1000 STREAM 141924 10493 6109436 2024-02-29 06:00:04.836 2024-02-29 06:00:04.836 1000 STREAM 141924 14950 6109444 2024-02-29 06:03:04.802 2024-02-29 06:03:04.802 1000 STREAM 141924 16556 6109452 2024-02-29 06:06:04.845 2024-02-29 06:06:04.845 1000 STREAM 141924 2528 6109454 2024-02-29 06:07:04.825 2024-02-29 06:07:04.825 1000 STREAM 141924 18774 6109456 2024-02-29 06:08:04.856 2024-02-29 06:08:04.856 1000 STREAM 141924 704 6109460 2024-02-29 06:10:04.891 2024-02-29 06:10:04.891 1000 STREAM 141924 18837 6109462 2024-02-29 06:12:04.87 2024-02-29 06:12:04.87 1000 STREAM 141924 13204 6109473 2024-02-29 06:14:04.88 2024-02-29 06:14:04.88 1000 STREAM 141924 21588 6109504 2024-02-29 06:25:04.943 2024-02-29 06:25:04.943 1000 STREAM 141924 1658 6109509 2024-02-29 06:26:04.967 2024-02-29 06:26:04.967 1000 STREAM 141924 6515 6109515 2024-02-29 06:27:04.965 2024-02-29 06:27:04.965 1000 STREAM 141924 4048 6109530 2024-02-29 06:30:05.025 2024-02-29 06:30:05.025 1000 STREAM 141924 19352 6109262 2024-02-29 05:16:27.614 2024-02-29 05:16:27.614 1000 FEE 442904 6717 6109263 2024-02-29 05:16:27.614 2024-02-29 05:16:27.614 9000 TIP 442904 4259 6109275 2024-02-29 05:19:12.862 2024-02-29 05:19:12.862 100 FEE 442982 20911 6109276 2024-02-29 05:19:12.862 2024-02-29 05:19:12.862 900 TIP 442982 4175 6109285 2024-02-29 05:22:49.52 2024-02-29 05:22:49.52 1000 FEE 443086 21458 6109287 2024-02-29 05:23:28.964 2024-02-29 05:23:28.964 1000 FEE 442986 5036 6109288 2024-02-29 05:23:28.964 2024-02-29 05:23:28.964 9000 TIP 442986 1585 6109310 2024-02-29 05:33:39.396 2024-02-29 05:33:39.396 10000 FEE 442794 19622 6109311 2024-02-29 05:33:39.396 2024-02-29 05:33:39.396 90000 TIP 442794 12951 6109343 2024-02-29 05:46:31.337 2024-02-29 05:46:31.337 9000 FEE 442982 6533 6109344 2024-02-29 05:46:31.337 2024-02-29 05:46:31.337 81000 TIP 442982 4250 6109349 2024-02-29 05:46:42.118 2024-02-29 05:46:42.118 9000 FEE 442710 6300 6109350 2024-02-29 05:46:42.118 2024-02-29 05:46:42.118 81000 TIP 442710 13100 6109366 2024-02-29 05:47:11.782 2024-02-29 05:47:11.782 2100 FEE 443008 11288 6109367 2024-02-29 05:47:11.782 2024-02-29 05:47:11.782 18900 TIP 443008 10549 6109383 2024-02-29 05:48:22.035 2024-02-29 05:48:22.035 100 FEE 442956 861 6109384 2024-02-29 05:48:22.035 2024-02-29 05:48:22.035 900 TIP 442956 4459 6109389 2024-02-29 05:48:41.074 2024-02-29 05:48:41.074 1000 FEE 443093 750 6109397 2024-02-29 05:51:25.096 2024-02-29 05:51:25.096 100 FEE 442904 20152 6109398 2024-02-29 05:51:25.096 2024-02-29 05:51:25.096 900 TIP 442904 16536 6109405 2024-02-29 05:51:27.511 2024-02-29 05:51:27.511 100 FEE 442904 16684 6109406 2024-02-29 05:51:27.511 2024-02-29 05:51:27.511 900 TIP 442904 9183 6109407 2024-02-29 05:51:28.189 2024-02-29 05:51:28.189 100 FEE 442904 19044 6109408 2024-02-29 05:51:28.189 2024-02-29 05:51:28.189 900 TIP 442904 14669 6109413 2024-02-29 05:51:29.971 2024-02-29 05:51:29.971 100 FEE 442904 21532 6109414 2024-02-29 05:51:29.971 2024-02-29 05:51:29.971 900 TIP 442904 10611 6109421 2024-02-29 05:53:02.755 2024-02-29 05:53:02.755 2100 FEE 442844 19837 6109422 2024-02-29 05:53:02.755 2024-02-29 05:53:02.755 18900 TIP 442844 14169 6109449 2024-02-29 06:04:36.14 2024-02-29 06:04:36.14 1000 FEE 443101 14449 6109482 2024-02-29 06:16:47.824 2024-02-29 06:16:47.824 1000 POLL 442751 13133 6109483 2024-02-29 06:16:48.997 2024-02-29 06:16:48.997 1000 POLL 442751 21441 6109490 2024-02-29 06:19:40.041 2024-02-29 06:19:40.041 1000 FEE 443111 21458 6109499 2024-02-29 06:23:47.555 2024-02-29 06:23:47.555 1000 FEE 443112 15060 6109549 2024-02-29 06:32:32.277 2024-02-29 06:32:32.277 1000 POLL 442751 21131 6109552 2024-02-29 06:33:00.142 2024-02-29 06:33:00.142 1000 FEE 443119 19809 6109554 2024-02-29 06:33:39.162 2024-02-29 06:33:39.162 100 FEE 443011 1488 6109555 2024-02-29 06:33:39.162 2024-02-29 06:33:39.162 900 TIP 443011 7960 6109563 2024-02-29 06:34:29.946 2024-02-29 06:34:29.946 100 FEE 443099 7682 6109564 2024-02-29 06:34:29.946 2024-02-29 06:34:29.946 900 TIP 443099 20163 6109589 2024-02-29 06:35:55.036 2024-02-29 06:35:55.036 1000 FEE 442921 21291 6109590 2024-02-29 06:35:55.036 2024-02-29 06:35:55.036 9000 TIP 442921 965 6109593 2024-02-29 06:36:00.678 2024-02-29 06:36:00.678 1000 FEE 442942 20023 6109594 2024-02-29 06:36:00.678 2024-02-29 06:36:00.678 9000 TIP 442942 13042 6109600 2024-02-29 06:36:18.237 2024-02-29 06:36:18.237 1000 FEE 443111 776 6109601 2024-02-29 06:36:18.237 2024-02-29 06:36:18.237 9000 TIP 443111 1745 6109606 2024-02-29 06:37:05.194 2024-02-29 06:37:05.194 1000 POLL 442751 18311 6109619 2024-02-29 06:39:01.137 2024-02-29 06:39:01.137 1000 FEE 443124 20892 6109645 2024-02-29 06:39:48.008 2024-02-29 06:39:48.008 300 FEE 443120 2328 6109646 2024-02-29 06:39:48.008 2024-02-29 06:39:48.008 2700 TIP 443120 10731 6109661 2024-02-29 06:42:18.448 2024-02-29 06:42:18.448 300 FEE 442934 7877 6109662 2024-02-29 06:42:18.448 2024-02-29 06:42:18.448 2700 TIP 442934 18829 6109705 2024-02-29 06:56:00.348 2024-02-29 06:56:00.348 1000 FEE 442160 12072 6109706 2024-02-29 06:56:00.348 2024-02-29 06:56:00.348 9000 TIP 442160 20251 6109715 2024-02-29 06:57:47.572 2024-02-29 06:57:47.572 1000 FEE 443135 15762 6109720 2024-02-29 06:58:22.567 2024-02-29 06:58:22.567 1000 FEE 442173 660 6109721 2024-02-29 06:58:22.567 2024-02-29 06:58:22.567 9000 TIP 442173 9166 6109724 2024-02-29 06:58:37.764 2024-02-29 06:58:37.764 2100 FEE 443116 4415 6109725 2024-02-29 06:58:37.764 2024-02-29 06:58:37.764 18900 TIP 443116 9337 6109757 2024-02-29 07:11:17.549 2024-02-29 07:11:17.549 1000 FEE 443145 10060 6109760 2024-02-29 07:11:51.824 2024-02-29 07:11:51.824 1000 FEE 443146 12049 6109773 2024-02-29 07:13:21.64 2024-02-29 07:13:21.64 800 FEE 442313 20555 6109774 2024-02-29 07:13:21.64 2024-02-29 07:13:21.64 7200 TIP 442313 9611 6109783 2024-02-29 07:13:22.599 2024-02-29 07:13:22.599 800 FEE 442313 2367 6109784 2024-02-29 07:13:22.599 2024-02-29 07:13:22.599 7200 TIP 442313 19839 6109791 2024-02-29 07:13:23.494 2024-02-29 07:13:23.494 800 FEE 442313 20858 6109792 2024-02-29 07:13:23.494 2024-02-29 07:13:23.494 7200 TIP 442313 17011 6109797 2024-02-29 07:13:24.833 2024-02-29 07:13:24.833 800 FEE 442313 21070 6109798 2024-02-29 07:13:24.833 2024-02-29 07:13:24.833 7200 TIP 442313 11240 6109806 2024-02-29 07:14:21.503 2024-02-29 07:14:21.503 10000 FEE 442904 10060 6109807 2024-02-29 07:14:21.503 2024-02-29 07:14:21.503 90000 TIP 442904 17046 6109829 2024-02-29 07:18:41.241 2024-02-29 07:18:41.241 800 FEE 442721 8985 6109830 2024-02-29 07:18:41.241 2024-02-29 07:18:41.241 7200 TIP 442721 9517 6109846 2024-02-29 07:29:43.493 2024-02-29 07:29:43.493 1000 FEE 443151 19535 6109859 2024-02-29 07:31:47.013 2024-02-29 07:31:47.013 1000 FEE 443152 21274 6109865 2024-02-29 07:33:02.061 2024-02-29 07:33:02.061 10000 FEE 443039 960 6109866 2024-02-29 07:33:02.061 2024-02-29 07:33:02.061 90000 TIP 443039 1983 6109868 2024-02-29 07:33:25.457 2024-02-29 07:33:25.457 1000 FEE 443155 11443 6109476 2024-02-29 06:15:04.449 2024-02-29 06:15:04.449 1000 STREAM 141924 14080 6109487 2024-02-29 06:19:04.46 2024-02-29 06:19:04.46 1000 STREAM 141924 19841 6109494 2024-02-29 06:21:04.476 2024-02-29 06:21:04.476 1000 STREAM 141924 16653 6109498 2024-02-29 06:23:04.478 2024-02-29 06:23:04.478 1000 STREAM 141924 21379 6109520 2024-02-29 06:28:04.488 2024-02-29 06:28:04.488 1000 STREAM 141924 6430 6109556 2024-02-29 06:34:04.511 2024-02-29 06:34:04.511 1000 STREAM 141924 11821 6109595 2024-02-29 06:36:04.539 2024-02-29 06:36:04.539 1000 STREAM 141924 9809 6109655 2024-02-29 06:40:04.603 2024-02-29 06:40:04.603 1000 STREAM 141924 1806 6109660 2024-02-29 06:42:04.62 2024-02-29 06:42:04.62 1000 STREAM 141924 21374 6109665 2024-02-29 06:43:04.639 2024-02-29 06:43:04.639 1000 STREAM 141924 18310 6109667 2024-02-29 06:44:04.652 2024-02-29 06:44:04.652 1000 STREAM 141924 14906 6109671 2024-02-29 06:45:04.644 2024-02-29 06:45:04.644 1000 STREAM 141924 21247 6109675 2024-02-29 06:46:04.638 2024-02-29 06:46:04.638 1000 STREAM 141924 11075 6109677 2024-02-29 06:47:04.659 2024-02-29 06:47:04.659 1000 STREAM 141924 20187 6109682 2024-02-29 06:48:04.687 2024-02-29 06:48:04.687 1000 STREAM 141924 1122 6109688 2024-02-29 06:49:04.696 2024-02-29 06:49:04.696 1000 STREAM 141924 13217 6109484 2024-02-29 06:17:04.465 2024-02-29 06:17:04.465 1000 STREAM 141924 1044 6109485 2024-02-29 06:18:04.45 2024-02-29 06:18:04.45 1000 STREAM 141924 8289 6109491 2024-02-29 06:20:04.472 2024-02-29 06:20:04.472 1000 STREAM 141924 10668 6109497 2024-02-29 06:22:04.481 2024-02-29 06:22:04.481 1000 STREAM 141924 12721 6109553 2024-02-29 06:33:04.504 2024-02-29 06:33:04.504 1000 STREAM 141924 21387 6109575 2024-02-29 06:35:04.529 2024-02-29 06:35:04.529 1000 STREAM 141924 9335 6109603 2024-02-29 06:37:04.55 2024-02-29 06:37:04.55 1000 STREAM 141924 19289 6109613 2024-02-29 06:38:04.593 2024-02-29 06:38:04.593 1000 STREAM 141924 12245 6109620 2024-02-29 06:39:04.594 2024-02-29 06:39:04.594 1000 STREAM 141924 20964 6109656 2024-02-29 06:41:04.611 2024-02-29 06:41:04.611 1000 STREAM 141924 9496 6109691 2024-02-29 06:50:04.7 2024-02-29 06:50:04.7 1000 STREAM 141924 17392 6109692 2024-02-29 06:51:04.593 2024-02-29 06:51:04.593 1000 STREAM 141924 20162 6109694 2024-02-29 06:52:04.583 2024-02-29 06:52:04.583 1000 STREAM 141924 17526 6109696 2024-02-29 06:54:04.613 2024-02-29 06:54:04.613 1000 STREAM 141924 10102 6109709 2024-02-29 06:56:04.644 2024-02-29 06:56:04.644 1000 STREAM 141924 20646 6109712 2024-02-29 06:57:04.65 2024-02-29 06:57:04.65 1000 STREAM 141924 17541 6109726 2024-02-29 06:59:04.691 2024-02-29 06:59:04.691 1000 STREAM 141924 2519 6109729 2024-02-29 07:00:04.749 2024-02-29 07:00:04.749 1000 STREAM 141924 21320 6109730 2024-02-29 07:01:02.71 2024-02-29 07:01:02.71 1000 STREAM 141924 2322 6109731 2024-02-29 07:02:04.708 2024-02-29 07:02:04.708 1000 STREAM 141924 12049 6109732 2024-02-29 07:03:04.726 2024-02-29 07:03:04.726 1000 STREAM 141924 21048 6109735 2024-02-29 07:04:04.754 2024-02-29 07:04:04.754 1000 STREAM 141924 16808 6109695 2024-02-29 06:53:04.6 2024-02-29 06:53:04.6 1000 STREAM 141924 9921 6109699 2024-02-29 06:55:04.629 2024-02-29 06:55:04.629 1000 STREAM 141924 18368 6109716 2024-02-29 06:58:02.674 2024-02-29 06:58:02.674 1000 STREAM 141924 1825 6109727 2024-02-29 06:59:08.919 2024-02-29 06:59:08.919 1000 FEE 443137 18403 6109736 2024-02-29 07:04:15.188 2024-02-29 07:04:15.188 1000 POLL 442751 3544 6109737 2024-02-29 07:04:23.892 2024-02-29 07:04:23.892 100 FEE 442953 18357 6109738 2024-02-29 07:04:23.892 2024-02-29 07:04:23.892 900 TIP 442953 20970 6109748 2024-02-29 07:08:10.662 2024-02-29 07:08:10.662 100 FEE 442691 5752 6109749 2024-02-29 07:08:10.662 2024-02-29 07:08:10.662 900 TIP 442691 19826 6109759 2024-02-29 07:11:46.632 2024-02-29 07:11:46.632 0 FEE 443145 19320 6109764 2024-02-29 07:12:20.491 2024-02-29 07:12:20.491 2100 FEE 442298 21619 6109765 2024-02-29 07:12:20.491 2024-02-29 07:12:20.491 18900 TIP 442298 21589 6109793 2024-02-29 07:13:24.376 2024-02-29 07:13:24.376 800 FEE 442313 19902 6109794 2024-02-29 07:13:24.376 2024-02-29 07:13:24.376 7200 TIP 442313 11992 6109802 2024-02-29 07:13:54.454 2024-02-29 07:13:54.454 1000 FEE 443148 11423 6109820 2024-02-29 07:17:43.849 2024-02-29 07:17:43.849 800 FEE 443033 20201 6109821 2024-02-29 07:17:43.849 2024-02-29 07:17:43.849 7200 TIP 443033 16176 6109848 2024-02-29 07:30:38.782 2024-02-29 07:30:38.782 1000 FEE 443102 11829 6109849 2024-02-29 07:30:38.782 2024-02-29 07:30:38.782 9000 TIP 443102 18679 6109891 2024-02-29 07:37:00.737 2024-02-29 07:37:00.737 2100 FEE 443108 18138 6109892 2024-02-29 07:37:00.737 2024-02-29 07:37:00.737 18900 TIP 443108 18309 6109911 2024-02-29 07:38:55.29 2024-02-29 07:38:55.29 1000 FEE 443157 15762 6109912 2024-02-29 07:38:56.508 2024-02-29 07:38:56.508 1000 POLL 442751 15243 6109951 2024-02-29 07:47:49.238 2024-02-29 07:47:49.238 1000 FEE 443161 19512 6109953 2024-02-29 07:48:17.706 2024-02-29 07:48:17.706 0 FEE 443161 21605 6109961 2024-02-29 07:49:35.473 2024-02-29 07:49:35.473 5000 FEE 442769 12057 6109962 2024-02-29 07:49:35.473 2024-02-29 07:49:35.473 45000 TIP 442769 20585 6109967 2024-02-29 07:50:51.543 2024-02-29 07:50:51.543 1000 FEE 443165 16879 6109978 2024-02-29 07:53:34.304 2024-02-29 07:53:34.304 300 FEE 442925 19961 6109979 2024-02-29 07:53:34.304 2024-02-29 07:53:34.304 2700 TIP 442925 937 6109990 2024-02-29 07:54:22.58 2024-02-29 07:54:22.58 1000 FEE 442381 19292 6109991 2024-02-29 07:54:22.58 2024-02-29 07:54:22.58 9000 TIP 442381 17707 6109994 2024-02-29 07:54:37.223 2024-02-29 07:54:37.223 10000 FEE 443168 14168 6110011 2024-02-29 07:57:09.362 2024-02-29 07:57:09.362 100 FEE 443052 11621 6110012 2024-02-29 07:57:09.362 2024-02-29 07:57:09.362 900 TIP 443052 8423 6110057 2024-02-29 08:12:57.744 2024-02-29 08:12:57.744 1000000 FEE 443179 16670 6110086 2024-02-29 08:14:22.217 2024-02-29 08:14:22.217 100 FEE 443101 19158 6110087 2024-02-29 08:14:22.217 2024-02-29 08:14:22.217 900 TIP 443101 17147 6110091 2024-02-29 08:15:07.807 2024-02-29 08:15:07.807 2100 FEE 443173 6430 6110092 2024-02-29 08:15:07.807 2024-02-29 08:15:07.807 18900 TIP 443173 19375 6110128 2024-02-29 08:19:30.013 2024-02-29 08:19:30.013 1000 POLL 442163 12951 6110168 2024-02-29 08:24:56.898 2024-02-29 08:24:56.898 100 FEE 442170 722 6110169 2024-02-29 08:24:56.898 2024-02-29 08:24:56.898 900 TIP 442170 19007 6110171 2024-02-29 08:25:11.25 2024-02-29 08:25:11.25 10000 FEE 443184 660 6110172 2024-02-29 08:25:11.25 2024-02-29 08:25:11.25 90000 TIP 443184 14545 6110190 2024-02-29 08:26:25.734 2024-02-29 08:26:25.734 200 FEE 443178 837 6110191 2024-02-29 08:26:25.734 2024-02-29 08:26:25.734 1800 TIP 443178 16154 6110192 2024-02-29 08:26:25.912 2024-02-29 08:26:25.912 200 FEE 443178 21373 6110193 2024-02-29 08:26:25.912 2024-02-29 08:26:25.912 1800 TIP 443178 20036 6110209 2024-02-29 08:33:41.24 2024-02-29 08:33:41.24 1000 POLL 442163 1845 6110238 2024-02-29 08:48:07.693 2024-02-29 08:48:07.693 0 FEE 443193 18956 6110239 2024-02-29 08:48:19.094 2024-02-29 08:48:19.094 100 FEE 443105 11275 6110240 2024-02-29 08:48:19.094 2024-02-29 08:48:19.094 900 TIP 443105 19821 6110247 2024-02-29 08:48:20.381 2024-02-29 08:48:20.381 100 FEE 443105 9341 6110248 2024-02-29 08:48:20.381 2024-02-29 08:48:20.381 900 TIP 443105 20973 6110380 2024-02-29 09:10:49.282 2024-02-29 09:10:49.282 4200 FEE 442283 13348 6110381 2024-02-29 09:10:49.282 2024-02-29 09:10:49.282 37800 TIP 442283 20108 6110405 2024-02-29 09:16:03.097 2024-02-29 09:16:03.097 100000 FEE 443208 12774 6110410 2024-02-29 09:16:17.153 2024-02-29 09:16:17.153 2100 FEE 443199 21090 6110411 2024-02-29 09:16:17.153 2024-02-29 09:16:17.153 18900 TIP 443199 9833 6110436 2024-02-29 09:19:37.644 2024-02-29 09:19:37.644 1000 FEE 443213 1136 6110445 2024-02-29 09:21:43.985 2024-02-29 09:21:43.985 100 FEE 443213 10519 6110446 2024-02-29 09:21:43.985 2024-02-29 09:21:43.985 900 TIP 443213 9921 6110451 2024-02-29 09:21:45.112 2024-02-29 09:21:45.112 100 FEE 443213 10530 6110452 2024-02-29 09:21:45.112 2024-02-29 09:21:45.112 900 TIP 443213 7978 6110456 2024-02-29 09:22:00.166 2024-02-29 09:22:00.166 100 FEE 443211 2748 6110457 2024-02-29 09:22:00.166 2024-02-29 09:22:00.166 900 TIP 443211 691 6110458 2024-02-29 09:22:00.404 2024-02-29 09:22:00.404 100 FEE 443211 7809 6110459 2024-02-29 09:22:00.404 2024-02-29 09:22:00.404 900 TIP 443211 18909 6110480 2024-02-29 09:25:23.796 2024-02-29 09:25:23.796 2100 FEE 443185 16660 6110481 2024-02-29 09:25:23.796 2024-02-29 09:25:23.796 18900 TIP 443185 21605 6110488 2024-02-29 09:25:30.636 2024-02-29 09:25:30.636 1000 FEE 443218 992 6110489 2024-02-29 09:25:35.651 2024-02-29 09:25:35.651 2100 FEE 443175 19966 6110490 2024-02-29 09:25:35.651 2024-02-29 09:25:35.651 18900 TIP 443175 21532 6110495 2024-02-29 09:25:59.244 2024-02-29 09:25:59.244 2100 FEE 443168 16684 6110496 2024-02-29 09:25:59.244 2024-02-29 09:25:59.244 18900 TIP 443168 11523 6110520 2024-02-29 09:27:14.569 2024-02-29 09:27:14.569 100 FEE 443192 21014 6110521 2024-02-29 09:27:14.569 2024-02-29 09:27:14.569 900 TIP 443192 9758 6110538 2024-02-29 09:28:03.956 2024-02-29 09:28:03.956 100 FEE 443210 1800 6110539 2024-02-29 09:28:03.956 2024-02-29 09:28:03.956 900 TIP 443210 2775 6110563 2024-02-29 09:35:27.25 2024-02-29 09:35:27.25 1000 FEE 442856 633 6110564 2024-02-29 09:35:27.25 2024-02-29 09:35:27.25 9000 TIP 442856 700 6110575 2024-02-29 09:37:03.613 2024-02-29 09:37:03.613 2100 FEE 443208 12057 6110576 2024-02-29 09:37:03.613 2024-02-29 09:37:03.613 18900 TIP 443208 17710 6110583 2024-02-29 09:40:01.165 2024-02-29 09:40:01.165 1000 FEE 443172 18114 6110584 2024-02-29 09:40:01.165 2024-02-29 09:40:01.165 9000 TIP 443172 21523 6110587 2024-02-29 09:40:32.152 2024-02-29 09:40:32.152 1000 FEE 443224 21472 6110615 2024-02-29 09:49:48.38 2024-02-29 09:49:48.38 1000 FEE 443231 16839 6110633 2024-02-29 09:52:11.927 2024-02-29 09:52:11.927 1000 FEE 443234 4314 6110651 2024-02-29 09:53:51.535 2024-02-29 09:53:51.535 1000 FEE 442023 13100 6110652 2024-02-29 09:53:51.535 2024-02-29 09:53:51.535 9000 TIP 442023 999 6110663 2024-02-29 09:54:02.115 2024-02-29 09:54:02.115 1000 FEE 442982 2056 6109739 2024-02-29 07:05:02.776 2024-02-29 07:05:02.776 1000 STREAM 141924 20243 6109743 2024-02-29 07:06:04.749 2024-02-29 07:06:04.749 1000 STREAM 141924 14404 6109747 2024-02-29 07:08:04.763 2024-02-29 07:08:04.763 1000 STREAM 141924 21242 6109751 2024-02-29 07:09:02.765 2024-02-29 07:09:02.765 1000 STREAM 141924 16355 6109754 2024-02-29 07:10:02.77 2024-02-29 07:10:02.77 1000 STREAM 141924 2232 6109772 2024-02-29 07:13:02.787 2024-02-29 07:13:02.787 1000 STREAM 141924 6137 6109805 2024-02-29 07:14:04.787 2024-02-29 07:14:04.787 1000 STREAM 141924 1512 6109808 2024-02-29 07:15:02.786 2024-02-29 07:15:02.786 1000 STREAM 141924 21067 6109834 2024-02-29 07:21:02.829 2024-02-29 07:21:02.829 1000 STREAM 141924 17541 6109836 2024-02-29 07:23:02.84 2024-02-29 07:23:02.84 1000 STREAM 141924 15521 6109837 2024-02-29 07:24:04.844 2024-02-29 07:24:04.844 1000 STREAM 141924 20901 6109840 2024-02-29 07:26:02.854 2024-02-29 07:26:02.854 1000 STREAM 141924 18271 6109842 2024-02-29 07:28:02.864 2024-02-29 07:28:02.864 1000 STREAM 141924 18476 6109847 2024-02-29 07:30:04.882 2024-02-29 07:30:04.882 1000 STREAM 141924 20563 6109867 2024-02-29 07:33:04.927 2024-02-29 07:33:04.927 1000 STREAM 141924 21588 6109871 2024-02-29 07:34:02.943 2024-02-29 07:34:02.943 1000 STREAM 141924 11648 6109872 2024-02-29 07:35:02.933 2024-02-29 07:35:02.933 1000 STREAM 141924 15052 6109882 2024-02-29 07:36:04.933 2024-02-29 07:36:04.933 1000 STREAM 141924 19777 6109908 2024-02-29 07:38:02.967 2024-02-29 07:38:02.967 1000 STREAM 141924 18225 6109917 2024-02-29 07:41:02.976 2024-02-29 07:41:02.976 1000 STREAM 141924 646 6109921 2024-02-29 07:42:03 2024-02-29 07:42:03 1000 STREAM 141924 770 6109941 2024-02-29 07:46:03.015 2024-02-29 07:46:03.015 1000 STREAM 141924 756 6109952 2024-02-29 07:48:03.036 2024-02-29 07:48:03.036 1000 STREAM 141924 8726 6109958 2024-02-29 07:49:03.047 2024-02-29 07:49:03.047 1000 STREAM 141924 13378 6109968 2024-02-29 07:51:05.042 2024-02-29 07:51:05.042 1000 STREAM 141924 697 6109971 2024-02-29 07:52:03.048 2024-02-29 07:52:03.048 1000 STREAM 141924 7097 6109987 2024-02-29 07:54:03.054 2024-02-29 07:54:03.054 1000 STREAM 141924 5500 6110010 2024-02-29 07:57:03.073 2024-02-29 07:57:03.073 1000 STREAM 141924 1272 6110013 2024-02-29 07:58:03.081 2024-02-29 07:58:03.081 1000 STREAM 141924 1632 6110016 2024-02-29 07:59:03.086 2024-02-29 07:59:03.086 1000 STREAM 141924 21067 6110036 2024-02-29 08:07:03.114 2024-02-29 08:07:03.114 1000 STREAM 141924 20117 6110040 2024-02-29 08:09:03.107 2024-02-29 08:09:03.107 1000 STREAM 141924 5728 6110051 2024-02-29 08:11:03.135 2024-02-29 08:11:03.135 1000 STREAM 141924 20381 6110058 2024-02-29 08:13:03.117 2024-02-29 08:13:03.117 1000 STREAM 141924 19660 6109746 2024-02-29 07:07:02.765 2024-02-29 07:07:02.765 1000 STREAM 141924 1474 6109756 2024-02-29 07:11:04.785 2024-02-29 07:11:04.785 1000 STREAM 141924 17291 6109761 2024-02-29 07:12:02.788 2024-02-29 07:12:02.788 1000 STREAM 141924 8535 6109809 2024-02-29 07:16:02.797 2024-02-29 07:16:02.797 1000 STREAM 141924 18368 6109815 2024-02-29 07:17:04.965 2024-02-29 07:17:04.965 1000 STREAM 141924 21021 6109822 2024-02-29 07:18:02.813 2024-02-29 07:18:02.813 1000 STREAM 141924 21048 6109831 2024-02-29 07:19:02.816 2024-02-29 07:19:02.816 1000 STREAM 141924 9036 6109832 2024-02-29 07:20:02.82 2024-02-29 07:20:02.82 1000 STREAM 141924 21349 6109835 2024-02-29 07:22:04.868 2024-02-29 07:22:04.868 1000 STREAM 141924 1740 6109839 2024-02-29 07:25:02.849 2024-02-29 07:25:02.849 1000 STREAM 141924 1213 6109841 2024-02-29 07:27:04.859 2024-02-29 07:27:04.859 1000 STREAM 141924 9655 6109843 2024-02-29 07:29:02.875 2024-02-29 07:29:02.875 1000 STREAM 141924 9166 6109852 2024-02-29 07:31:02.891 2024-02-29 07:31:02.891 1000 STREAM 141924 11240 6109862 2024-02-29 07:32:02.9 2024-02-29 07:32:02.9 1000 STREAM 141924 21556 6109893 2024-02-29 07:37:02.945 2024-02-29 07:37:02.945 1000 STREAM 141924 21233 6109913 2024-02-29 07:39:02.955 2024-02-29 07:39:02.955 1000 STREAM 141924 9150 6109916 2024-02-29 07:40:04.976 2024-02-29 07:40:04.976 1000 STREAM 141924 17157 6109927 2024-02-29 07:43:02.994 2024-02-29 07:43:02.994 1000 STREAM 141924 17682 6109936 2024-02-29 07:44:03 2024-02-29 07:44:03 1000 STREAM 141924 15408 6109940 2024-02-29 07:45:03.016 2024-02-29 07:45:03.016 1000 STREAM 141924 2232 6109942 2024-02-29 07:47:05.024 2024-02-29 07:47:05.024 1000 STREAM 141924 5195 6109964 2024-02-29 07:50:03.05 2024-02-29 07:50:03.05 1000 STREAM 141924 15594 6109976 2024-02-29 07:53:03.045 2024-02-29 07:53:03.045 1000 STREAM 141924 18637 6109999 2024-02-29 07:55:03.065 2024-02-29 07:55:03.065 1000 STREAM 141924 11522 6110006 2024-02-29 07:56:03.075 2024-02-29 07:56:03.075 1000 STREAM 141924 9418 6110018 2024-02-29 08:00:03.111 2024-02-29 08:00:03.111 1000 STREAM 141924 20287 6110025 2024-02-29 08:01:03.092 2024-02-29 08:01:03.092 1000 STREAM 141924 21417 6110028 2024-02-29 08:02:03.096 2024-02-29 08:02:03.096 1000 STREAM 141924 1564 6110031 2024-02-29 08:03:03.1 2024-02-29 08:03:03.1 1000 STREAM 141924 16212 6110033 2024-02-29 08:05:03.106 2024-02-29 08:05:03.106 1000 STREAM 141924 18235 6110055 2024-02-29 08:12:03.126 2024-02-29 08:12:03.126 1000 STREAM 141924 15577 6110089 2024-02-29 08:15:03.118 2024-02-29 08:15:03.118 1000 STREAM 141924 1145 6110145 2024-02-29 08:21:03.181 2024-02-29 08:21:03.181 1000 STREAM 141924 10063 6110162 2024-02-29 08:22:03.149 2024-02-29 08:22:03.149 1000 STREAM 141924 18119 6110165 2024-02-29 08:23:03.149 2024-02-29 08:23:03.149 1000 STREAM 141924 21498 6110167 2024-02-29 08:24:03.161 2024-02-29 08:24:03.161 1000 STREAM 141924 21599 6110201 2024-02-29 08:29:03.182 2024-02-29 08:29:03.182 1000 STREAM 141924 11873 6110205 2024-02-29 08:31:03.19 2024-02-29 08:31:03.19 1000 STREAM 141924 15510 6110211 2024-02-29 08:35:03.249 2024-02-29 08:35:03.249 1000 STREAM 141924 910 6110214 2024-02-29 08:37:03.247 2024-02-29 08:37:03.247 1000 STREAM 141924 16532 6110220 2024-02-29 08:41:03.278 2024-02-29 08:41:03.278 1000 STREAM 141924 14271 6110221 2024-02-29 08:42:03.27 2024-02-29 08:42:03.27 1000 STREAM 141924 17183 6110225 2024-02-29 08:43:03.276 2024-02-29 08:43:03.276 1000 STREAM 141924 21361 6109850 2024-02-29 07:30:55.92 2024-02-29 07:30:55.92 1000 FEE 442836 5701 6109851 2024-02-29 07:30:55.92 2024-02-29 07:30:55.92 9000 TIP 442836 12976 6109855 2024-02-29 07:31:24.074 2024-02-29 07:31:24.074 1000 FEE 398367 16282 6109856 2024-02-29 07:31:24.074 2024-02-29 07:31:24.074 9000 TIP 398367 18727 6109864 2024-02-29 07:33:01.309 2024-02-29 07:33:01.309 1000 FEE 443154 20280 6109873 2024-02-29 07:35:30.981 2024-02-29 07:35:30.981 1000 FEE 409987 2206 6109874 2024-02-29 07:35:30.981 2024-02-29 07:35:30.981 9000 TIP 409987 2338 6109878 2024-02-29 07:35:50.818 2024-02-29 07:35:50.818 21000 FEE 443129 20778 6109879 2024-02-29 07:35:50.818 2024-02-29 07:35:50.818 189000 TIP 443129 21492 6109898 2024-02-29 07:37:20.368 2024-02-29 07:37:20.368 2100 FEE 443099 10063 6109899 2024-02-29 07:37:20.368 2024-02-29 07:37:20.368 18900 TIP 443099 9166 6109930 2024-02-29 07:43:48.955 2024-02-29 07:43:48.955 2100 FEE 442313 1064 6109931 2024-02-29 07:43:48.955 2024-02-29 07:43:48.955 18900 TIP 442313 9184 6109934 2024-02-29 07:44:00.783 2024-02-29 07:44:00.783 2100 FEE 442710 18989 6109935 2024-02-29 07:44:00.783 2024-02-29 07:44:00.783 18900 TIP 442710 19924 6109947 2024-02-29 07:47:28.146 2024-02-29 07:47:28.146 100 FEE 443129 18321 6109948 2024-02-29 07:47:28.146 2024-02-29 07:47:28.146 900 TIP 443129 18678 6109956 2024-02-29 07:48:30.733 2024-02-29 07:48:30.733 1000 FEE 443162 1030 6109957 2024-02-29 07:48:45.277 2024-02-29 07:48:45.277 100000 FEE 443163 10280 6109983 2024-02-29 07:53:50.268 2024-02-29 07:53:50.268 1000 FEE 442403 20436 6109984 2024-02-29 07:53:50.268 2024-02-29 07:53:50.268 9000 TIP 442403 19033 6110014 2024-02-29 07:59:00.351 2024-02-29 07:59:00.351 10000 FEE 443170 19296 6110054 2024-02-29 08:11:59.582 2024-02-29 08:11:59.582 0 FEE 443174 18673 6110066 2024-02-29 08:14:13.397 2024-02-29 08:14:13.397 100 FEE 443099 894 6110067 2024-02-29 08:14:13.397 2024-02-29 08:14:13.397 900 TIP 443099 19553 6110078 2024-02-29 08:14:17.451 2024-02-29 08:14:17.451 100 FEE 443101 19690 6110079 2024-02-29 08:14:17.451 2024-02-29 08:14:17.451 900 TIP 443101 16442 6110094 2024-02-29 08:15:40.518 2024-02-29 08:15:40.518 10100 FEE 443129 2367 6110095 2024-02-29 08:15:40.518 2024-02-29 08:15:40.518 90900 TIP 443129 4128 6110105 2024-02-29 08:17:19.692 2024-02-29 08:17:19.692 100 FEE 443179 1394 6110106 2024-02-29 08:17:19.692 2024-02-29 08:17:19.692 900 TIP 443179 6136 6110111 2024-02-29 08:17:23.826 2024-02-29 08:17:23.826 100 FEE 443175 11590 6110112 2024-02-29 08:17:23.826 2024-02-29 08:17:23.826 900 TIP 443175 20059 6110131 2024-02-29 08:19:52.841 2024-02-29 08:19:52.841 100 FEE 442185 7960 6110132 2024-02-29 08:19:52.841 2024-02-29 08:19:52.841 900 TIP 442185 16387 6110163 2024-02-29 08:22:08.583 2024-02-29 08:22:08.583 100 FEE 442840 20674 6110164 2024-02-29 08:22:08.583 2024-02-29 08:22:08.583 900 TIP 442840 19030 6110178 2024-02-29 08:26:24.76 2024-02-29 08:26:24.76 200 FEE 443178 16684 6110179 2024-02-29 08:26:24.76 2024-02-29 08:26:24.76 1800 TIP 443178 4259 6110182 2024-02-29 08:26:25.074 2024-02-29 08:26:25.074 200 FEE 443178 19462 6110183 2024-02-29 08:26:25.074 2024-02-29 08:26:25.074 1800 TIP 443178 19662 6110227 2024-02-29 08:44:36.877 2024-02-29 08:44:36.877 1000 FEE 443192 14515 6110232 2024-02-29 08:46:03.039 2024-02-29 08:46:03.039 1000 FEE 443193 16059 6110245 2024-02-29 08:48:19.866 2024-02-29 08:48:19.866 100 FEE 443105 21472 6110246 2024-02-29 08:48:19.866 2024-02-29 08:48:19.866 900 TIP 443105 19929 6110256 2024-02-29 08:50:25.943 2024-02-29 08:50:25.943 100000 FEE 443197 19309 6110264 2024-02-29 08:52:57.791 2024-02-29 08:52:57.791 21000 FEE 443199 2829 6110293 2024-02-29 09:00:45.102 2024-02-29 09:00:45.102 2100 FEE 443178 18344 6110294 2024-02-29 09:00:45.102 2024-02-29 09:00:45.102 18900 TIP 443178 19303 6110299 2024-02-29 09:03:13.648 2024-02-29 09:03:13.648 1000 FEE 442931 19096 6110300 2024-02-29 09:03:13.648 2024-02-29 09:03:13.648 9000 TIP 442931 616 6110325 2024-02-29 09:03:16.742 2024-02-29 09:03:16.742 1000 FEE 442931 20715 6110326 2024-02-29 09:03:16.742 2024-02-29 09:03:16.742 9000 TIP 442931 17041 6110329 2024-02-29 09:03:17.125 2024-02-29 09:03:17.125 1000 FEE 442931 14202 6110330 2024-02-29 09:03:17.125 2024-02-29 09:03:17.125 9000 TIP 442931 617 6110384 2024-02-29 09:12:22.415 2024-02-29 09:12:22.415 2100 FEE 443164 663 6110385 2024-02-29 09:12:22.415 2024-02-29 09:12:22.415 18900 TIP 443164 18426 6110390 2024-02-29 09:12:42.134 2024-02-29 09:12:42.134 2100 FEE 443097 18784 6110391 2024-02-29 09:12:42.134 2024-02-29 09:12:42.134 18900 TIP 443097 1692 6110398 2024-02-29 09:14:17.522 2024-02-29 09:14:17.522 2100 FEE 443163 15941 6110399 2024-02-29 09:14:17.522 2024-02-29 09:14:17.522 18900 TIP 443163 19841 6110408 2024-02-29 09:16:13.196 2024-02-29 09:16:13.196 1000 FEE 443209 19303 6110414 2024-02-29 09:16:33.114 2024-02-29 09:16:33.114 2100 FEE 443186 1352 6110415 2024-02-29 09:16:33.114 2024-02-29 09:16:33.114 18900 TIP 443186 2734 6110427 2024-02-29 09:17:29.624 2024-02-29 09:17:29.624 2100 FEE 443198 19809 6110428 2024-02-29 09:17:29.624 2024-02-29 09:17:29.624 18900 TIP 443198 5565 6110429 2024-02-29 09:17:30.275 2024-02-29 09:17:30.275 2100 FEE 443201 19907 6110430 2024-02-29 09:17:30.275 2024-02-29 09:17:30.275 18900 TIP 443201 13399 6110432 2024-02-29 09:18:03.646 2024-02-29 09:18:03.646 1000 FEE 443212 19154 6110433 2024-02-29 09:18:44.739 2024-02-29 09:18:44.739 2100 FEE 443188 1273 6110434 2024-02-29 09:18:44.739 2024-02-29 09:18:44.739 18900 TIP 443188 20454 6110443 2024-02-29 09:21:43.666 2024-02-29 09:21:43.666 100 FEE 443213 12609 6110444 2024-02-29 09:21:43.666 2024-02-29 09:21:43.666 900 TIP 443213 21339 6110470 2024-02-29 09:22:47.095 2024-02-29 09:22:47.095 100 FEE 443217 18533 6110471 2024-02-29 09:22:47.095 2024-02-29 09:22:47.095 900 TIP 443217 13216 6110491 2024-02-29 09:25:50.408 2024-02-29 09:25:50.408 2100 FEE 443170 21386 6110492 2024-02-29 09:25:50.408 2024-02-29 09:25:50.408 18900 TIP 443170 19333 6110498 2024-02-29 09:26:04.301 2024-02-29 09:26:04.301 2100 FEE 443173 733 6110499 2024-02-29 09:26:04.301 2024-02-29 09:26:04.301 18900 TIP 443173 20504 6110506 2024-02-29 09:26:59.028 2024-02-29 09:26:59.028 2100 FEE 442731 6741 6110507 2024-02-29 09:26:59.028 2024-02-29 09:26:59.028 18900 TIP 442731 2330 6110514 2024-02-29 09:27:03.563 2024-02-29 09:27:03.563 2100 FEE 442767 21166 6110515 2024-02-29 09:27:03.563 2024-02-29 09:27:03.563 18900 TIP 442767 4323 6110516 2024-02-29 09:27:04.83 2024-02-29 09:27:04.83 2100 FEE 442590 21412 6110517 2024-02-29 09:27:04.83 2024-02-29 09:27:04.83 18900 TIP 442590 5708 6110527 2024-02-29 09:28:02.709 2024-02-29 09:28:02.709 100 FEE 443210 18452 6110528 2024-02-29 09:28:02.709 2024-02-29 09:28:02.709 900 TIP 443210 17041 6110540 2024-02-29 09:28:05.078 2024-02-29 09:28:05.078 200 FEE 443210 10311 6110541 2024-02-29 09:28:05.078 2024-02-29 09:28:05.078 1800 TIP 443210 21575 6110542 2024-02-29 09:28:05.689 2024-02-29 09:28:05.689 100 FEE 443210 5495 6110543 2024-02-29 09:28:05.689 2024-02-29 09:28:05.689 900 TIP 443210 21386 6110549 2024-02-29 09:30:38.46 2024-02-29 09:30:38.46 1000 FEE 443221 19633 6110568 2024-02-29 09:36:49.857 2024-02-29 09:36:49.857 500 FEE 443220 9332 6110569 2024-02-29 09:36:49.857 2024-02-29 09:36:49.857 4500 TIP 443220 13622 6110605 2024-02-29 09:46:31.698 2024-02-29 09:46:31.698 1100 FEE 443228 20370 6110606 2024-02-29 09:46:31.698 2024-02-29 09:46:31.698 9900 TIP 443228 1175 6110637 2024-02-29 09:53:35.266 2024-02-29 09:53:35.266 0 FEE 443231 4633 6110638 2024-02-29 09:53:36.748 2024-02-29 09:53:36.748 1000 FEE 443235 19639 6109880 2024-02-29 07:36:02.221 2024-02-29 07:36:02.221 1000 FEE 409732 16447 6109881 2024-02-29 07:36:02.221 2024-02-29 07:36:02.221 9000 TIP 409732 18271 6109883 2024-02-29 07:36:16.868 2024-02-29 07:36:16.868 1000 FEE 409943 11443 6109884 2024-02-29 07:36:16.868 2024-02-29 07:36:16.868 9000 TIP 409943 13055 6109900 2024-02-29 07:37:25.835 2024-02-29 07:37:25.835 2100 FEE 443097 1584 6109901 2024-02-29 07:37:25.835 2024-02-29 07:37:25.835 18900 TIP 443097 17184 6109902 2024-02-29 07:37:29.174 2024-02-29 07:37:29.174 2100 FEE 443083 19094 6109903 2024-02-29 07:37:29.174 2024-02-29 07:37:29.174 18900 TIP 443083 7097 6109914 2024-02-29 07:39:44.974 2024-02-29 07:39:44.974 2100 FEE 442848 7674 6109915 2024-02-29 07:39:44.974 2024-02-29 07:39:44.974 18900 TIP 442848 992 6109922 2024-02-29 07:42:05.193 2024-02-29 07:42:05.193 1000 FEE 443159 1162 6109932 2024-02-29 07:43:52.428 2024-02-29 07:43:52.428 2100 FEE 442904 21249 6109933 2024-02-29 07:43:52.428 2024-02-29 07:43:52.428 18900 TIP 442904 12278 6109949 2024-02-29 07:47:31.475 2024-02-29 07:47:31.475 100 FEE 443150 4624 6109950 2024-02-29 07:47:31.475 2024-02-29 07:47:31.475 900 TIP 443150 20015 6109992 2024-02-29 07:54:27.928 2024-02-29 07:54:27.928 1000 FEE 442399 9496 6109993 2024-02-29 07:54:27.928 2024-02-29 07:54:27.928 9000 TIP 442399 19309 6109995 2024-02-29 07:54:46.748 2024-02-29 07:54:46.748 1000 FEE 442578 11091 6109996 2024-02-29 07:54:46.748 2024-02-29 07:54:46.748 9000 TIP 442578 2123 6110020 2024-02-29 08:00:06.113 2024-02-29 08:00:06.113 1000 FEE 443172 16296 6110021 2024-02-29 08:00:51.953 2024-02-29 08:00:51.953 100 FEE 443170 1519 6110022 2024-02-29 08:00:51.953 2024-02-29 08:00:51.953 900 TIP 443170 5538 6109886 2024-02-29 07:36:18.564 2024-02-29 07:36:18.564 189000 TIP 443129 21083 6109909 2024-02-29 07:38:20.437 2024-02-29 07:38:20.437 2100 FEE 443003 18232 6109910 2024-02-29 07:38:20.437 2024-02-29 07:38:20.437 18900 TIP 443003 19158 6109980 2024-02-29 07:53:42.958 2024-02-29 07:53:42.958 1000 FEE 443167 19333 6110029 2024-02-29 08:02:17.367 2024-02-29 08:02:17.367 1000 FEE 443173 16424 6110041 2024-02-29 08:09:48.822 2024-02-29 08:09:48.822 0 FEE 443175 20901 6110080 2024-02-29 08:14:18.642 2024-02-29 08:14:18.642 100 FEE 443100 19796 6110081 2024-02-29 08:14:18.642 2024-02-29 08:14:18.642 900 TIP 443100 20452 6110097 2024-02-29 08:16:32.571 2024-02-29 08:16:32.571 2100 FEE 443179 1552 6110098 2024-02-29 08:16:32.571 2024-02-29 08:16:32.571 18900 TIP 443179 16747 6110123 2024-02-29 08:19:06.863 2024-02-29 08:19:06.863 10000 FEE 442848 805 6110124 2024-02-29 08:19:06.863 2024-02-29 08:19:06.863 90000 TIP 442848 19911 6110129 2024-02-29 08:19:40.048 2024-02-29 08:19:40.048 100 FEE 442177 5904 6110130 2024-02-29 08:19:40.048 2024-02-29 08:19:40.048 900 TIP 442177 658 6110139 2024-02-29 08:20:16.962 2024-02-29 08:20:16.962 100 FEE 442188 21172 6110140 2024-02-29 08:20:16.962 2024-02-29 08:20:16.962 900 TIP 442188 19494 6110150 2024-02-29 08:21:29.882 2024-02-29 08:21:29.882 1000 FEE 442904 5829 6110151 2024-02-29 08:21:29.882 2024-02-29 08:21:29.882 9000 TIP 442904 16351 6110158 2024-02-29 08:21:31.505 2024-02-29 08:21:31.505 1000 FEE 442904 17570 6110159 2024-02-29 08:21:31.505 2024-02-29 08:21:31.505 9000 TIP 442904 1273 6110166 2024-02-29 08:23:05.222 2024-02-29 08:23:05.222 1000 FEE 443184 21369 6110175 2024-02-29 08:26:12.903 2024-02-29 08:26:12.903 1000 POLL 442751 2029 6110188 2024-02-29 08:26:25.559 2024-02-29 08:26:25.559 200 FEE 443178 777 6110189 2024-02-29 08:26:25.559 2024-02-29 08:26:25.559 1800 TIP 443178 12774 6110279 2024-02-29 08:59:00.714 2024-02-29 08:59:00.714 800 FEE 442982 19446 6110280 2024-02-29 08:59:00.714 2024-02-29 08:59:00.714 7200 TIP 442982 16965 6110292 2024-02-29 09:00:18.141 2024-02-29 09:00:18.141 1000 FEE 443203 1136 6110305 2024-02-29 09:03:14.164 2024-02-29 09:03:14.164 100 FEE 443201 18359 6110306 2024-02-29 09:03:14.164 2024-02-29 09:03:14.164 900 TIP 443201 19036 6110323 2024-02-29 09:03:16.54 2024-02-29 09:03:16.54 1000 FEE 442931 18904 6110324 2024-02-29 09:03:16.54 2024-02-29 09:03:16.54 9000 TIP 442931 18119 6110351 2024-02-29 09:03:22.658 2024-02-29 09:03:22.658 2000 FEE 442084 16284 6110352 2024-02-29 09:03:22.658 2024-02-29 09:03:22.658 18000 TIP 442084 10519 6110359 2024-02-29 09:03:32.311 2024-02-29 09:03:32.311 100 FEE 443187 4624 6110360 2024-02-29 09:03:32.311 2024-02-29 09:03:32.311 900 TIP 443187 21395 6110366 2024-02-29 09:05:48.457 2024-02-29 09:05:48.457 1000 FEE 442894 7389 6110367 2024-02-29 09:05:48.457 2024-02-29 09:05:48.457 9000 TIP 442894 766 6110416 2024-02-29 09:16:35.289 2024-02-29 09:16:35.289 2100 FEE 443187 16350 6110417 2024-02-29 09:16:35.289 2024-02-29 09:16:35.289 18900 TIP 443187 1733 6110438 2024-02-29 09:20:19.749 2024-02-29 09:20:19.749 2100 FEE 443177 1740 6110439 2024-02-29 09:20:19.749 2024-02-29 09:20:19.749 18900 TIP 443177 11164 6110447 2024-02-29 09:21:44.296 2024-02-29 09:21:44.296 100 FEE 443213 5520 6109918 2024-02-29 07:41:12.917 2024-02-29 07:41:12.917 1000 FEE 443158 798 6109928 2024-02-29 07:43:41.598 2024-02-29 07:43:41.598 2100 FEE 442820 2652 6109929 2024-02-29 07:43:41.598 2024-02-29 07:43:41.598 18900 TIP 442820 20788 6109959 2024-02-29 07:49:23.175 2024-02-29 07:49:23.175 500 FEE 443160 8985 6109960 2024-02-29 07:49:23.175 2024-02-29 07:49:23.175 4500 TIP 443160 11996 6109977 2024-02-29 07:53:15.053 2024-02-29 07:53:15.053 1000 FEE 443166 5694 6110002 2024-02-29 07:55:25.683 2024-02-29 07:55:25.683 1000 FEE 442624 1745 6110003 2024-02-29 07:55:25.683 2024-02-29 07:55:25.683 9000 TIP 442624 9171 6110035 2024-02-29 08:06:23.784 2024-02-29 08:06:23.784 21000 FEE 443175 18359 6110042 2024-02-29 08:09:57.936 2024-02-29 08:09:57.936 1000 FEE 443177 21591 6110059 2024-02-29 08:13:09.758 2024-02-29 08:13:09.758 100 FEE 443098 2741 6110060 2024-02-29 08:13:09.758 2024-02-29 08:13:09.758 900 TIP 443098 19142 6110061 2024-02-29 08:13:10.349 2024-02-29 08:13:10.349 100 FEE 443098 10493 6110062 2024-02-29 08:13:10.349 2024-02-29 08:13:10.349 900 TIP 443098 2075 6110063 2024-02-29 08:13:43.974 2024-02-29 08:13:43.974 3000 FEE 443179 10690 6110064 2024-02-29 08:13:43.974 2024-02-29 08:13:43.974 27000 TIP 443179 5306 6110074 2024-02-29 08:14:14.885 2024-02-29 08:14:14.885 100 FEE 443099 16351 6110075 2024-02-29 08:14:14.885 2024-02-29 08:14:14.885 900 TIP 443099 2402 6110076 2024-02-29 08:14:17.158 2024-02-29 08:14:17.158 100 FEE 443101 19501 6110077 2024-02-29 08:14:17.158 2024-02-29 08:14:17.158 900 TIP 443101 2013 6110102 2024-02-29 08:17:07.976 2024-02-29 08:17:07.976 2100 FEE 443178 20924 6110103 2024-02-29 08:17:07.976 2024-02-29 08:17:07.976 18900 TIP 443178 5173 6110113 2024-02-29 08:17:25.064 2024-02-29 08:17:25.064 100 FEE 443174 16270 6110114 2024-02-29 08:17:25.064 2024-02-29 08:17:25.064 900 TIP 443174 16954 6110125 2024-02-29 08:19:08.837 2024-02-29 08:19:08.837 1000 FEE 443183 17707 6110156 2024-02-29 08:21:31.308 2024-02-29 08:21:31.308 1000 FEE 442904 1833 6110157 2024-02-29 08:21:31.308 2024-02-29 08:21:31.308 9000 TIP 442904 732 6110173 2024-02-29 08:25:59.592 2024-02-29 08:25:59.592 21000 FEE 443185 6688 6110196 2024-02-29 08:26:32.363 2024-02-29 08:26:32.363 100 FEE 442485 12821 6110197 2024-02-29 08:26:32.363 2024-02-29 08:26:32.363 900 TIP 442485 21314 6110212 2024-02-29 08:36:02.006 2024-02-29 08:36:02.006 1000 FEE 443190 4314 6110224 2024-02-29 08:42:29.984 2024-02-29 08:42:29.984 1000 FEE 443191 19664 6110241 2024-02-29 08:48:19.325 2024-02-29 08:48:19.325 100 FEE 443105 1624 6110242 2024-02-29 08:48:19.325 2024-02-29 08:48:19.325 900 TIP 443105 19759 6110252 2024-02-29 08:49:55.643 2024-02-29 08:49:55.643 1000 FEE 443196 17696 6110284 2024-02-29 08:59:28.13 2024-02-29 08:59:28.13 100 FEE 442854 16410 6110285 2024-02-29 08:59:28.13 2024-02-29 08:59:28.13 900 TIP 442854 19837 6110286 2024-02-29 08:59:32.065 2024-02-29 08:59:32.065 2100 FEE 443063 1585 6110287 2024-02-29 08:59:32.065 2024-02-29 08:59:32.065 18900 TIP 443063 644 6110290 2024-02-29 09:00:13.324 2024-02-29 09:00:13.324 1600 FEE 443178 12819 6110291 2024-02-29 09:00:13.324 2024-02-29 09:00:13.324 14400 TIP 443178 19888 6110303 2024-02-29 09:03:14.031 2024-02-29 09:03:14.031 1000 FEE 442931 722 6110304 2024-02-29 09:03:14.031 2024-02-29 09:03:14.031 9000 TIP 442931 15843 6110321 2024-02-29 09:03:16.349 2024-02-29 09:03:16.349 1000 FEE 442931 1060 6110322 2024-02-29 09:03:16.349 2024-02-29 09:03:16.349 9000 TIP 442931 18629 6110335 2024-02-29 09:03:17.692 2024-02-29 09:03:17.692 1000 FEE 442931 1173 6110336 2024-02-29 09:03:17.692 2024-02-29 09:03:17.692 9000 TIP 442931 18635 6110347 2024-02-29 09:03:21.49 2024-02-29 09:03:21.49 1000 FEE 442084 17171 6110348 2024-02-29 09:03:21.49 2024-02-29 09:03:21.49 9000 TIP 442084 16355 6110377 2024-02-29 09:08:56.179 2024-02-29 09:08:56.179 1000 FEE 443206 16284 6110412 2024-02-29 09:16:17.835 2024-02-29 09:16:17.835 2100 FEE 443199 15119 6110413 2024-02-29 09:16:17.835 2024-02-29 09:16:17.835 18900 TIP 443199 876 6110440 2024-02-29 09:20:28.95 2024-02-29 09:20:28.95 1000 FEE 443214 16296 6110468 2024-02-29 09:22:15.371 2024-02-29 09:22:15.371 2100 FEE 443092 9655 6110469 2024-02-29 09:22:15.371 2024-02-29 09:22:15.371 18900 TIP 443092 18446 6110476 2024-02-29 09:24:15.347 2024-02-29 09:24:15.347 100 FEE 443201 20187 6110477 2024-02-29 09:24:15.347 2024-02-29 09:24:15.347 900 TIP 443201 18995 6110478 2024-02-29 09:24:34.96 2024-02-29 09:24:34.96 1000 POLL 442751 20163 6110508 2024-02-29 09:26:59.851 2024-02-29 09:26:59.851 2100 FEE 442936 2844 6110509 2024-02-29 09:26:59.851 2024-02-29 09:26:59.851 18900 TIP 442936 12278 6110522 2024-02-29 09:27:34.324 2024-02-29 09:27:34.324 2100 FEE 442627 18956 6110523 2024-02-29 09:27:34.324 2024-02-29 09:27:34.324 18900 TIP 442627 18040 6110524 2024-02-29 09:27:50.794 2024-02-29 09:27:50.794 0 FEE 443219 8916 6110525 2024-02-29 09:28:01.35 2024-02-29 09:28:01.35 100 FEE 443210 19126 6110526 2024-02-29 09:28:01.35 2024-02-29 09:28:01.35 900 TIP 443210 3717 6110552 2024-02-29 09:32:47.879 2024-02-29 09:32:47.879 12800 FEE 443197 14705 6110553 2024-02-29 09:32:47.879 2024-02-29 09:32:47.879 115200 TIP 443197 10731 6110566 2024-02-29 09:36:20.345 2024-02-29 09:36:20.345 2100 FEE 443222 4126 6109925 2024-02-29 07:42:38.1 2024-02-29 07:42:38.1 2100 FEE 442710 10821 6109926 2024-02-29 07:42:38.1 2024-02-29 07:42:38.1 18900 TIP 442710 1717 6109937 2024-02-29 07:44:05.457 2024-02-29 07:44:05.457 2100 FEE 442298 20979 6109938 2024-02-29 07:44:05.457 2024-02-29 07:44:05.457 18900 TIP 442298 5527 6109945 2024-02-29 07:47:22.097 2024-02-29 07:47:22.097 100 FEE 443130 19660 6109946 2024-02-29 07:47:22.097 2024-02-29 07:47:22.097 900 TIP 443130 2773 6109969 2024-02-29 07:51:54.474 2024-02-29 07:51:54.474 100 FEE 443146 21413 6109970 2024-02-29 07:51:54.474 2024-02-29 07:51:54.474 900 TIP 443146 9347 6109974 2024-02-29 07:52:30.689 2024-02-29 07:52:30.689 1000 FEE 442313 21585 6109975 2024-02-29 07:52:30.689 2024-02-29 07:52:30.689 9000 TIP 442313 814 6109997 2024-02-29 07:54:52.814 2024-02-29 07:54:52.814 1000 FEE 442320 1713 6109998 2024-02-29 07:54:52.814 2024-02-29 07:54:52.814 9000 TIP 442320 21609 6110026 2024-02-29 08:01:07.186 2024-02-29 08:01:07.186 100 FEE 443139 18472 6110027 2024-02-29 08:01:07.186 2024-02-29 08:01:07.186 900 TIP 443139 18784 6110030 2024-02-29 08:02:17.565 2024-02-29 08:02:17.565 100000 FEE 443174 2844 6110043 2024-02-29 08:10:01.721 2024-02-29 08:10:01.721 300 FEE 443098 17446 6110044 2024-02-29 08:10:01.721 2024-02-29 08:10:01.721 2700 TIP 443098 19465 6110072 2024-02-29 08:14:14.32 2024-02-29 08:14:14.32 100 FEE 443099 21275 6110073 2024-02-29 08:14:14.32 2024-02-29 08:14:14.32 900 TIP 443099 20778 6110084 2024-02-29 08:14:20.366 2024-02-29 08:14:20.366 100 FEE 443100 21463 6110085 2024-02-29 08:14:20.366 2024-02-29 08:14:20.366 900 TIP 443100 10056 6110093 2024-02-29 08:15:37.735 2024-02-29 08:15:37.735 1000 FEE 443182 795 6110107 2024-02-29 08:17:19.721 2024-02-29 08:17:19.721 100 FEE 443178 16956 6110108 2024-02-29 08:17:19.721 2024-02-29 08:17:19.721 900 TIP 443178 1596 6110118 2024-02-29 08:18:31.5 2024-02-29 08:18:31.5 100 FEE 442848 7978 6110119 2024-02-29 08:18:31.5 2024-02-29 08:18:31.5 900 TIP 442848 9307 6110126 2024-02-29 08:19:19.984 2024-02-29 08:19:19.984 100 FEE 442163 19463 6110127 2024-02-29 08:19:19.984 2024-02-29 08:19:19.984 900 TIP 442163 11417 6110135 2024-02-29 08:19:57.822 2024-02-29 08:19:57.822 100 FEE 442208 9438 6110136 2024-02-29 08:19:57.822 2024-02-29 08:19:57.822 900 TIP 442208 16789 6110138 2024-02-29 08:20:13.385 2024-02-29 08:20:13.385 1000 POLL 442751 20327 6110184 2024-02-29 08:26:25.229 2024-02-29 08:26:25.229 200 FEE 443178 15103 6110185 2024-02-29 08:26:25.229 2024-02-29 08:26:25.229 1800 TIP 443178 16684 6110194 2024-02-29 08:26:26.102 2024-02-29 08:26:26.102 200 FEE 443178 21048 6110195 2024-02-29 08:26:26.102 2024-02-29 08:26:26.102 1800 TIP 443178 16876 6110233 2024-02-29 08:46:35.026 2024-02-29 08:46:35.026 1000 FEE 443194 19332 6110257 2024-02-29 08:50:27.849 2024-02-29 08:50:27.849 10000 FEE 443198 7877 6110272 2024-02-29 08:56:30.897 2024-02-29 08:56:30.897 10000 FEE 443186 1003 6110273 2024-02-29 08:56:30.897 2024-02-29 08:56:30.897 90000 TIP 443186 14169 6110301 2024-02-29 09:03:13.849 2024-02-29 09:03:13.849 1000 FEE 442931 21033 6110302 2024-02-29 09:03:13.849 2024-02-29 09:03:13.849 9000 TIP 442931 616 6110309 2024-02-29 09:03:15.434 2024-02-29 09:03:15.434 1000 FEE 442931 18446 6110310 2024-02-29 09:03:15.434 2024-02-29 09:03:15.434 9000 TIP 442931 21481 6110319 2024-02-29 09:03:16.16 2024-02-29 09:03:16.16 1000 FEE 442931 4798 6110320 2024-02-29 09:03:16.16 2024-02-29 09:03:16.16 9000 TIP 442931 4624 6110345 2024-02-29 09:03:19.592 2024-02-29 09:03:19.592 100 FEE 443198 21619 6110346 2024-02-29 09:03:19.592 2024-02-29 09:03:19.592 900 TIP 443198 993 6110349 2024-02-29 09:03:22.066 2024-02-29 09:03:22.066 3000 FEE 442084 12334 6110350 2024-02-29 09:03:22.066 2024-02-29 09:03:22.066 27000 TIP 442084 20162 6110392 2024-02-29 09:12:47.446 2024-02-29 09:12:47.446 2100 FEE 443122 19118 6110393 2024-02-29 09:12:47.446 2024-02-29 09:12:47.446 18900 TIP 443122 6499 6109954 2024-02-29 07:48:29.86 2024-02-29 07:48:29.86 100 FEE 443088 13753 6109955 2024-02-29 07:48:29.86 2024-02-29 07:48:29.86 900 TIP 443088 20409 6109963 2024-02-29 07:49:45.322 2024-02-29 07:49:45.322 100000 FEE 443164 21338 6109965 2024-02-29 07:50:45.932 2024-02-29 07:50:45.932 1000 FEE 442065 19243 6109966 2024-02-29 07:50:45.932 2024-02-29 07:50:45.932 9000 TIP 442065 10013 6110009 2024-02-29 07:56:56.852 2024-02-29 07:56:56.852 100000 FEE 443169 19381 6110015 2024-02-29 07:59:02.849 2024-02-29 07:59:02.849 1000 POLL 442751 21344 6110017 2024-02-29 07:59:10.347 2024-02-29 07:59:10.347 0 FEE 443169 18904 6110023 2024-02-29 08:01:02.709 2024-02-29 08:01:02.709 100 FEE 443168 15119 6110024 2024-02-29 08:01:02.709 2024-02-29 08:01:02.709 900 TIP 443168 4388 6110037 2024-02-29 08:07:07.709 2024-02-29 08:07:07.709 1000 FEE 443176 11648 6110039 2024-02-29 08:08:07.735 2024-02-29 08:08:07.735 0 FEE 383547 17798 6110070 2024-02-29 08:14:14.044 2024-02-29 08:14:14.044 100 FEE 443099 16353 6110071 2024-02-29 08:14:14.044 2024-02-29 08:14:14.044 900 TIP 443099 18956 6110099 2024-02-29 08:16:58.209 2024-02-29 08:16:58.209 2100 FEE 443171 6160 6110100 2024-02-29 08:16:58.209 2024-02-29 08:16:58.209 18900 TIP 443171 15139 6110120 2024-02-29 08:18:40.244 2024-02-29 08:18:40.244 100 FEE 442862 21406 6110121 2024-02-29 08:18:40.244 2024-02-29 08:18:40.244 900 TIP 442862 6361 6110154 2024-02-29 08:21:31.158 2024-02-29 08:21:31.158 1000 FEE 442904 1576 6110155 2024-02-29 08:21:31.158 2024-02-29 08:21:31.158 9000 TIP 442904 15282 6110215 2024-02-29 08:37:05.143 2024-02-29 08:37:05.143 1000 FEE 443162 1094 6110216 2024-02-29 08:37:05.143 2024-02-29 08:37:05.143 9000 TIP 443162 19189 6110229 2024-02-29 08:45:03.899 2024-02-29 08:45:03.899 2100 FEE 442532 9982 6110230 2024-02-29 08:45:03.899 2024-02-29 08:45:03.899 18900 TIP 442532 2156 6110266 2024-02-29 08:53:53.075 2024-02-29 08:53:53.075 1600 FEE 442820 2774 6110267 2024-02-29 08:53:53.075 2024-02-29 08:53:53.075 14400 TIP 442820 18809 6110269 2024-02-29 08:54:18.62 2024-02-29 08:54:18.62 1000 FEE 443200 10862 6110278 2024-02-29 08:58:54.829 2024-02-29 08:58:54.829 10000 FEE 443201 1046 6110331 2024-02-29 09:03:17.29 2024-02-29 09:03:17.29 1000 FEE 442931 673 6110332 2024-02-29 09:03:17.29 2024-02-29 09:03:17.29 9000 TIP 442931 1480 6110341 2024-02-29 09:03:18.253 2024-02-29 09:03:18.253 1000 FEE 442931 20710 6110342 2024-02-29 09:03:18.253 2024-02-29 09:03:18.253 9000 TIP 442931 21062 6110355 2024-02-29 09:03:23.058 2024-02-29 09:03:23.058 1000 FEE 442084 1094 6110356 2024-02-29 09:03:23.058 2024-02-29 09:03:23.058 9000 TIP 442084 3417 6110357 2024-02-29 09:03:29.519 2024-02-29 09:03:29.519 100 FEE 443189 19924 6110358 2024-02-29 09:03:29.519 2024-02-29 09:03:29.519 900 TIP 443189 21207 6110363 2024-02-29 09:03:42.323 2024-02-29 09:03:42.323 1000 FEE 443205 9341 6110369 2024-02-29 09:06:07.891 2024-02-29 09:06:07.891 100 FEE 443198 9346 6110370 2024-02-29 09:06:07.891 2024-02-29 09:06:07.891 900 TIP 443198 10273 6110371 2024-02-29 09:06:52.981 2024-02-29 09:06:52.981 2100 FEE 443155 18359 6110372 2024-02-29 09:06:52.981 2024-02-29 09:06:52.981 18900 TIP 443155 20059 6110386 2024-02-29 09:12:34.574 2024-02-29 09:12:34.574 2100 FEE 443129 14370 6110387 2024-02-29 09:12:34.574 2024-02-29 09:12:34.574 18900 TIP 443129 16309 6110400 2024-02-29 09:14:58.523 2024-02-29 09:14:58.523 1000 FEE 443207 9906 6110406 2024-02-29 09:16:09.506 2024-02-29 09:16:09.506 3000 FEE 443176 19394 6110407 2024-02-29 09:16:09.506 2024-02-29 09:16:09.506 27000 TIP 443176 19147 6110418 2024-02-29 09:16:37.225 2024-02-29 09:16:37.225 1000 FEE 443211 14651 6110421 2024-02-29 09:16:47.702 2024-02-29 09:16:47.702 0 FEE 443209 20551 6110462 2024-02-29 09:22:01.022 2024-02-29 09:22:01.022 100 FEE 443211 20370 6110463 2024-02-29 09:22:01.022 2024-02-29 09:22:01.022 900 TIP 443211 6515 6110482 2024-02-29 09:25:25.743 2024-02-29 09:25:25.743 100 FEE 443178 11458 6110483 2024-02-29 09:25:25.743 2024-02-29 09:25:25.743 900 TIP 443178 14688 6110531 2024-02-29 09:28:03.032 2024-02-29 09:28:03.032 100 FEE 443210 1012 6110532 2024-02-29 09:28:03.032 2024-02-29 09:28:03.032 900 TIP 443210 13599 6110536 2024-02-29 09:28:03.808 2024-02-29 09:28:03.808 100 FEE 443210 18336 6110537 2024-02-29 09:28:03.808 2024-02-29 09:28:03.808 900 TIP 443210 14472 6110596 2024-02-29 09:44:36.719 2024-02-29 09:44:36.719 1000 FEE 443227 5499 6110613 2024-02-29 09:49:44.007 2024-02-29 09:49:44.007 1600 FEE 443228 15239 6110614 2024-02-29 09:49:44.007 2024-02-29 09:49:44.007 14400 TIP 443228 657 6110624 2024-02-29 09:51:06.944 2024-02-29 09:51:06.944 21000 DONT_LIKE_THIS 443232 780 6110625 2024-02-29 09:51:17.065 2024-02-29 09:51:17.065 1000 FEE 442870 18819 6110626 2024-02-29 09:51:17.065 2024-02-29 09:51:17.065 9000 TIP 442870 3417 6110640 2024-02-29 09:53:47.21 2024-02-29 09:53:47.21 1100 FEE 443197 11417 6110641 2024-02-29 09:53:47.21 2024-02-29 09:53:47.21 9900 TIP 443197 21603 6110657 2024-02-29 09:53:57.143 2024-02-29 09:53:57.143 1000 FEE 442313 11378 6110658 2024-02-29 09:53:57.143 2024-02-29 09:53:57.143 9000 TIP 442313 19902 6110672 2024-02-29 09:54:08.839 2024-02-29 09:54:08.839 1000 FEE 442551 17707 6110673 2024-02-29 09:54:08.839 2024-02-29 09:54:08.839 9000 TIP 442551 16747 6110686 2024-02-29 09:54:23.879 2024-02-29 09:54:23.879 1000 FEE 443228 10342 6110687 2024-02-29 09:54:23.879 2024-02-29 09:54:23.879 9000 TIP 443228 16059 6110698 2024-02-29 09:54:25.934 2024-02-29 09:54:25.934 1000 FEE 443198 19640 6110699 2024-02-29 09:54:25.934 2024-02-29 09:54:25.934 9000 TIP 443198 19132 6110700 2024-02-29 09:54:26.422 2024-02-29 09:54:26.422 1000 FEE 443197 8416 6110701 2024-02-29 09:54:26.422 2024-02-29 09:54:26.422 9000 TIP 443197 2326 6110719 2024-02-29 09:54:30.241 2024-02-29 09:54:30.241 1000 FEE 443175 2460 6110720 2024-02-29 09:54:30.241 2024-02-29 09:54:30.241 9000 TIP 443175 10342 6110725 2024-02-29 09:54:31.269 2024-02-29 09:54:31.269 1000 FEE 443171 959 6110726 2024-02-29 09:54:31.269 2024-02-29 09:54:31.269 9000 TIP 443171 3656 6110766 2024-02-29 09:58:22.607 2024-02-29 09:58:22.607 800 FEE 443129 21379 6110767 2024-02-29 09:58:22.607 2024-02-29 09:58:22.607 7200 TIP 443129 1970 6110785 2024-02-29 10:00:12.659 2024-02-29 10:00:12.659 1000 FEE 443129 11621 6110786 2024-02-29 10:00:12.659 2024-02-29 10:00:12.659 9000 TIP 443129 21033 6110793 2024-02-29 10:00:44.857 2024-02-29 10:00:44.857 1000 FEE 442820 19809 6110794 2024-02-29 10:00:44.857 2024-02-29 10:00:44.857 9000 TIP 442820 20912 6110032 2024-02-29 08:04:01.791 2024-02-29 08:04:01.791 1000 STREAM 141924 2444 6110038 2024-02-29 08:08:01.787 2024-02-29 08:08:01.787 1000 STREAM 141924 12220 6110045 2024-02-29 08:10:01.929 2024-02-29 08:10:01.929 1000 STREAM 141924 13599 6110065 2024-02-29 08:14:01.833 2024-02-29 08:14:01.833 1000 STREAM 141924 15719 6110117 2024-02-29 08:18:01.85 2024-02-29 08:18:01.85 1000 STREAM 141924 20163 6110034 2024-02-29 08:06:01.791 2024-02-29 08:06:01.791 1000 STREAM 141924 19021 6110096 2024-02-29 08:16:01.843 2024-02-29 08:16:01.843 1000 STREAM 141924 897 6110137 2024-02-29 08:20:01.876 2024-02-29 08:20:01.876 1000 STREAM 141924 5112 6110048 2024-02-29 08:10:27.965 2024-02-29 08:10:27.965 10000 FEE 443157 880 6110049 2024-02-29 08:10:27.965 2024-02-29 08:10:27.965 90000 TIP 443157 909 6110050 2024-02-29 08:11:02.095 2024-02-29 08:11:02.095 100000 FEE 443178 16680 6110052 2024-02-29 08:11:37.085 2024-02-29 08:11:37.085 3000 FEE 443178 977 6110053 2024-02-29 08:11:37.085 2024-02-29 08:11:37.085 27000 TIP 443178 3686 6110056 2024-02-29 08:12:15.362 2024-02-29 08:12:15.362 0 FEE 443174 14950 6110088 2024-02-29 08:15:03.052 2024-02-29 08:15:03.052 1000 FEE 443180 6300 6110109 2024-02-29 08:17:22.811 2024-02-29 08:17:22.811 100 FEE 442769 628 6110110 2024-02-29 08:17:22.811 2024-02-29 08:17:22.811 900 TIP 442769 716 6110133 2024-02-29 08:19:54.489 2024-02-29 08:19:54.489 100 FEE 442201 2832 6110134 2024-02-29 08:19:54.489 2024-02-29 08:19:54.489 900 TIP 442201 16704 6110141 2024-02-29 08:20:23.61 2024-02-29 08:20:23.61 100 FEE 442953 1697 6110142 2024-02-29 08:20:23.61 2024-02-29 08:20:23.61 900 TIP 442953 17800 6110143 2024-02-29 08:20:25.522 2024-02-29 08:20:25.522 100 FEE 442178 19309 6110144 2024-02-29 08:20:25.522 2024-02-29 08:20:25.522 900 TIP 442178 16939 6110160 2024-02-29 08:22:01.34 2024-02-29 08:22:01.34 100 FEE 442786 1745 6110161 2024-02-29 08:22:01.34 2024-02-29 08:22:01.34 900 TIP 442786 18930 6110180 2024-02-29 08:26:24.923 2024-02-29 08:26:24.923 200 FEE 443178 18507 6110181 2024-02-29 08:26:24.923 2024-02-29 08:26:24.923 1800 TIP 443178 14260 6110202 2024-02-29 08:29:05.446 2024-02-29 08:29:05.446 100000 FEE 443187 1124 6110206 2024-02-29 08:31:18.449 2024-02-29 08:31:18.449 10000 FEE 443189 15326 6110222 2024-02-29 08:42:16.792 2024-02-29 08:42:16.792 1000 FEE 443187 5017 6110223 2024-02-29 08:42:16.792 2024-02-29 08:42:16.792 9000 TIP 443187 10484 6110235 2024-02-29 08:47:01.73 2024-02-29 08:47:01.73 1000 FEE 443195 19839 6110250 2024-02-29 08:49:31.037 2024-02-29 08:49:31.037 1600 FEE 442904 21469 6110251 2024-02-29 08:49:31.037 2024-02-29 08:49:31.037 14400 TIP 442904 20987 6110253 2024-02-29 08:50:00.525 2024-02-29 08:50:00.525 1600 FEE 442931 937 6110254 2024-02-29 08:50:00.525 2024-02-29 08:50:00.525 14400 TIP 442931 18114 6110307 2024-02-29 09:03:14.414 2024-02-29 09:03:14.414 1000 FEE 442931 21400 6110308 2024-02-29 09:03:14.414 2024-02-29 09:03:14.414 9000 TIP 442931 21588 6110311 2024-02-29 09:03:15.639 2024-02-29 09:03:15.639 1000 FEE 442931 16706 6110312 2024-02-29 09:03:15.639 2024-02-29 09:03:15.639 9000 TIP 442931 19995 6110337 2024-02-29 09:03:17.887 2024-02-29 09:03:17.887 1000 FEE 442931 9307 6110338 2024-02-29 09:03:17.887 2024-02-29 09:03:17.887 9000 TIP 442931 17275 6110361 2024-02-29 09:03:36.521 2024-02-29 09:03:36.521 100 FEE 443186 1488 6110362 2024-02-29 09:03:36.521 2024-02-29 09:03:36.521 900 TIP 443186 16176 6110395 2024-02-29 09:13:17.118 2024-02-29 09:13:17.118 2100 FEE 443174 5171 6110396 2024-02-29 09:13:17.118 2024-02-29 09:13:17.118 18900 TIP 443174 18402 6110453 2024-02-29 09:21:46.08 2024-02-29 09:21:46.08 1000 FEE 443216 9036 6110460 2024-02-29 09:22:00.639 2024-02-29 09:22:00.639 100 FEE 443211 20778 6110461 2024-02-29 09:22:00.639 2024-02-29 09:22:00.639 900 TIP 443211 1505 6110484 2024-02-29 09:25:28.938 2024-02-29 09:25:28.938 2100 FEE 443185 13798 6110485 2024-02-29 09:25:28.938 2024-02-29 09:25:28.938 18900 TIP 443185 18984 6110529 2024-02-29 09:28:02.903 2024-02-29 09:28:02.903 100 FEE 443210 986 6110530 2024-02-29 09:28:02.903 2024-02-29 09:28:02.903 900 TIP 443210 16154 6110533 2024-02-29 09:28:03.182 2024-02-29 09:28:03.182 100 FEE 443210 5377 6110534 2024-02-29 09:28:03.182 2024-02-29 09:28:03.182 900 TIP 443210 12289 6110577 2024-02-29 09:37:15.693 2024-02-29 09:37:15.693 1000 FEE 442849 18177 6110578 2024-02-29 09:37:15.693 2024-02-29 09:37:15.693 9000 TIP 442849 17082 6110616 2024-02-29 09:49:49.021 2024-02-29 09:49:49.021 1000 FEE 443232 18529 6110620 2024-02-29 09:50:38.235 2024-02-29 09:50:38.235 0 FEE 443231 11829 6110632 2024-02-29 09:52:05.789 2024-02-29 09:52:05.789 0 FEE 443231 20433 6110636 2024-02-29 09:53:34.051 2024-02-29 09:53:34.051 1000 POLL 442751 18359 6110649 2024-02-29 09:53:50.956 2024-02-29 09:53:50.956 2100 FEE 443206 2789 6110650 2024-02-29 09:53:50.956 2024-02-29 09:53:50.956 18900 TIP 443206 18828 6110659 2024-02-29 09:53:57.791 2024-02-29 09:53:57.791 1000 FEE 442931 18533 6110660 2024-02-29 09:53:57.791 2024-02-29 09:53:57.791 9000 TIP 442931 844 6110661 2024-02-29 09:53:59.022 2024-02-29 09:53:59.022 1000 FEE 442904 797 6110662 2024-02-29 09:53:59.022 2024-02-29 09:53:59.022 9000 TIP 442904 19286 6110676 2024-02-29 09:54:14.669 2024-02-29 09:54:14.669 1000 FEE 442163 20306 6110677 2024-02-29 09:54:14.669 2024-02-29 09:54:14.669 9000 TIP 442163 20084 6110690 2024-02-29 09:54:24.43 2024-02-29 09:54:24.43 1000 FEE 443201 16284 6110691 2024-02-29 09:54:24.43 2024-02-29 09:54:24.43 9000 TIP 443201 18378 6110068 2024-02-29 08:14:13.743 2024-02-29 08:14:13.743 100 FEE 443099 7125 6110069 2024-02-29 08:14:13.743 2024-02-29 08:14:13.743 900 TIP 443099 15662 6110082 2024-02-29 08:14:18.954 2024-02-29 08:14:18.954 100 FEE 443100 9084 6110083 2024-02-29 08:14:18.954 2024-02-29 08:14:18.954 900 TIP 443100 3979 6110090 2024-02-29 08:15:03.244 2024-02-29 08:15:03.244 1000 FEE 443181 651 6110104 2024-02-29 08:17:08.461 2024-02-29 08:17:08.461 1000 POLL 442751 19905 6110115 2024-02-29 08:17:32.664 2024-02-29 08:17:32.664 100 FEE 442821 20220 6110116 2024-02-29 08:17:32.664 2024-02-29 08:17:32.664 900 TIP 442821 16950 6110146 2024-02-29 08:21:26.809 2024-02-29 08:21:26.809 1000 FEE 442904 14122 6110147 2024-02-29 08:21:26.809 2024-02-29 08:21:26.809 9000 TIP 442904 18336 6110148 2024-02-29 08:21:29.697 2024-02-29 08:21:29.697 1000 FEE 442904 21491 6110149 2024-02-29 08:21:29.697 2024-02-29 08:21:29.697 9000 TIP 442904 19329 6110152 2024-02-29 08:21:30.058 2024-02-29 08:21:30.058 1000 FEE 442904 18119 6110153 2024-02-29 08:21:30.058 2024-02-29 08:21:30.058 9000 TIP 442904 21131 6110176 2024-02-29 08:26:24.613 2024-02-29 08:26:24.613 400 FEE 443178 3440 6110177 2024-02-29 08:26:24.613 2024-02-29 08:26:24.613 3600 TIP 443178 19531 6110186 2024-02-29 08:26:25.391 2024-02-29 08:26:25.391 200 FEE 443178 15100 6110187 2024-02-29 08:26:25.391 2024-02-29 08:26:25.391 1800 TIP 443178 1046 6110199 2024-02-29 08:28:01.447 2024-02-29 08:28:01.447 10000 FEE 443186 21062 6110204 2024-02-29 08:30:56.603 2024-02-29 08:30:56.603 1000 FEE 443188 1726 6110234 2024-02-29 08:46:52.34 2024-02-29 08:46:52.34 1000 POLL 442163 15103 6110243 2024-02-29 08:48:19.591 2024-02-29 08:48:19.591 100 FEE 443105 16594 6110244 2024-02-29 08:48:19.591 2024-02-29 08:48:19.591 900 TIP 443105 650 6110258 2024-02-29 08:50:33.256 2024-02-29 08:50:33.256 800 FEE 443011 656 6110259 2024-02-29 08:50:33.256 2024-02-29 08:50:33.256 7200 TIP 443011 21208 6110261 2024-02-29 08:51:48.261 2024-02-29 08:51:48.261 800 FEE 442710 18116 6110262 2024-02-29 08:51:48.261 2024-02-29 08:51:48.261 7200 TIP 442710 2718 6110276 2024-02-29 08:58:43.553 2024-02-29 08:58:43.553 2100 FEE 443064 6361 6110277 2024-02-29 08:58:43.553 2024-02-29 08:58:43.553 18900 TIP 443064 20439 6110282 2024-02-29 08:59:07.09 2024-02-29 08:59:07.09 2100 FEE 442986 9874 6110283 2024-02-29 08:59:07.09 2024-02-29 08:59:07.09 18900 TIP 442986 17275 6110288 2024-02-29 08:59:55.328 2024-02-29 08:59:55.328 1000 FEE 443202 889 6110296 2024-02-29 09:01:31.351 2024-02-29 09:01:31.351 1000 FEE 443204 2537 6110313 2024-02-29 09:03:15.805 2024-02-29 09:03:15.805 1000 FEE 442931 16571 6110314 2024-02-29 09:03:15.805 2024-02-29 09:03:15.805 9000 TIP 442931 2748 6110315 2024-02-29 09:03:15.973 2024-02-29 09:03:15.973 1000 FEE 442931 18101 6110316 2024-02-29 09:03:15.973 2024-02-29 09:03:15.973 9000 TIP 442931 19966 6110317 2024-02-29 09:03:16.159 2024-02-29 09:03:16.159 100 FEE 443199 20889 6110318 2024-02-29 09:03:16.159 2024-02-29 09:03:16.159 900 TIP 443199 2056 6110327 2024-02-29 09:03:16.94 2024-02-29 09:03:16.94 1000 FEE 442931 8535 6110328 2024-02-29 09:03:16.94 2024-02-29 09:03:16.94 9000 TIP 442931 14959 6110333 2024-02-29 09:03:17.474 2024-02-29 09:03:17.474 1000 FEE 442931 21136 6110334 2024-02-29 09:03:17.474 2024-02-29 09:03:17.474 9000 TIP 442931 828 6110339 2024-02-29 09:03:18.058 2024-02-29 09:03:18.058 1000 FEE 442931 20871 6110340 2024-02-29 09:03:18.058 2024-02-29 09:03:18.058 9000 TIP 442931 2431 6110343 2024-02-29 09:03:18.446 2024-02-29 09:03:18.446 1000 FEE 442931 20691 6110344 2024-02-29 09:03:18.446 2024-02-29 09:03:18.446 9000 TIP 442931 9329 6110353 2024-02-29 09:03:23.027 2024-02-29 09:03:23.027 100 FEE 443197 18470 6110354 2024-02-29 09:03:23.027 2024-02-29 09:03:23.027 900 TIP 443197 20663 6110375 2024-02-29 09:08:18.377 2024-02-29 09:08:18.377 4200 FEE 442283 16571 6110376 2024-02-29 09:08:18.377 2024-02-29 09:08:18.377 37800 TIP 442283 1571 6110388 2024-02-29 09:12:39.637 2024-02-29 09:12:39.637 2100 FEE 443108 1658 6110389 2024-02-29 09:12:39.637 2024-02-29 09:12:39.637 18900 TIP 443108 2703 6110409 2024-02-29 09:16:15.608 2024-02-29 09:16:15.608 1000 FEE 443210 21062 6110473 2024-02-29 09:23:12.431 2024-02-29 09:23:12.431 100 FEE 443208 15577 6110474 2024-02-29 09:23:12.431 2024-02-29 09:23:12.431 900 TIP 443208 1141 6110502 2024-02-29 09:26:10.458 2024-02-29 09:26:10.458 2100 FEE 443169 5757 6110503 2024-02-29 09:26:10.458 2024-02-29 09:26:10.458 18900 TIP 443169 18829 6110546 2024-02-29 09:29:01.449 2024-02-29 09:29:01.449 1000 FEE 443220 19842 6110555 2024-02-29 09:33:08.689 2024-02-29 09:33:08.689 1000 FEE 442751 1823 6110556 2024-02-29 09:33:08.689 2024-02-29 09:33:08.689 9000 TIP 442751 20756 6110586 2024-02-29 09:40:16.677 2024-02-29 09:40:16.677 1000 FEE 443223 21329 6110598 2024-02-29 09:44:58.543 2024-02-29 09:44:58.543 100 FEE 443228 9418 6110599 2024-02-29 09:44:58.543 2024-02-29 09:44:58.543 900 TIP 443228 16052 6110601 2024-02-29 09:45:52.923 2024-02-29 09:45:52.923 1000 FEE 443229 14074 6110602 2024-02-29 09:45:59.497 2024-02-29 09:45:59.497 2100 FEE 443227 20911 6110603 2024-02-29 09:45:59.497 2024-02-29 09:45:59.497 18900 TIP 443227 15474 6110618 2024-02-29 09:50:28.953 2024-02-29 09:50:28.953 800 FEE 443208 11378 6110619 2024-02-29 09:50:28.953 2024-02-29 09:50:28.953 7200 TIP 443208 18923 6110627 2024-02-29 09:51:26.615 2024-02-29 09:51:26.615 1600 FEE 443197 736 6110628 2024-02-29 09:51:26.615 2024-02-29 09:51:26.615 14400 TIP 443197 19796 6110639 2024-02-29 09:53:38.57 2024-02-29 09:53:38.57 1000 FEE 443236 1007 6110680 2024-02-29 09:54:18.864 2024-02-29 09:54:18.864 1000 FEE 443178 12507 6110681 2024-02-29 09:54:18.864 2024-02-29 09:54:18.864 9000 TIP 443178 993 6110688 2024-02-29 09:54:23.909 2024-02-29 09:54:23.909 1000 FEE 443208 17212 6110689 2024-02-29 09:54:23.909 2024-02-29 09:54:23.909 9000 TIP 443208 5757 6110715 2024-02-29 09:54:29.107 2024-02-29 09:54:29.107 1000 FEE 443185 13763 6110716 2024-02-29 09:54:29.107 2024-02-29 09:54:29.107 9000 TIP 443185 2528 6110723 2024-02-29 09:54:30.879 2024-02-29 09:54:30.879 1000 FEE 443174 12738 6110724 2024-02-29 09:54:30.879 2024-02-29 09:54:30.879 9000 TIP 443174 3544 6110733 2024-02-29 09:54:33.08 2024-02-29 09:54:33.08 1000 FEE 443164 21033 6110734 2024-02-29 09:54:33.08 2024-02-29 09:54:33.08 9000 TIP 443164 16543 6110735 2024-02-29 09:54:35.235 2024-02-29 09:54:35.235 1000 FEE 443150 3396 6110736 2024-02-29 09:54:35.235 2024-02-29 09:54:35.235 9000 TIP 443150 782 6110745 2024-02-29 09:55:13.49 2024-02-29 09:55:13.49 500 FEE 443223 661 6110746 2024-02-29 09:55:13.49 2024-02-29 09:55:13.49 4500 TIP 443223 16004 6110753 2024-02-29 09:55:54.893 2024-02-29 09:55:54.893 2100 FEE 442023 20586 6110754 2024-02-29 09:55:54.893 2024-02-29 09:55:54.893 18900 TIP 442023 18932 6110787 2024-02-29 10:00:35.852 2024-02-29 10:00:35.852 1000 FEE 442931 1626 6110788 2024-02-29 10:00:35.852 2024-02-29 10:00:35.852 9000 TIP 442931 21437 6110800 2024-02-29 10:01:03.141 2024-02-29 10:01:03.141 1000 FEE 442627 19663 6110801 2024-02-29 10:01:03.141 2024-02-29 10:01:03.141 9000 TIP 442627 6537 6110823 2024-02-29 10:01:54.521 2024-02-29 10:01:54.521 2100 FEE 443195 17184 6110824 2024-02-29 10:01:54.521 2024-02-29 10:01:54.521 18900 TIP 443195 20246 6110846 2024-02-29 10:03:33.064 2024-02-29 10:03:33.064 1000 FEE 443197 18188 6110847 2024-02-29 10:03:33.064 2024-02-29 10:03:33.064 9000 TIP 443197 19601 6110855 2024-02-29 10:04:25.155 2024-02-29 10:04:25.155 2100 FEE 442396 9494 6110856 2024-02-29 10:04:25.155 2024-02-29 10:04:25.155 18900 TIP 442396 13198 6110865 2024-02-29 10:04:51.083 2024-02-29 10:04:51.083 1000 FEE 430350 15978 6110866 2024-02-29 10:04:51.083 2024-02-29 10:04:51.083 9000 TIP 430350 16149 6110882 2024-02-29 10:05:28.906 2024-02-29 10:05:28.906 1000 FEE 442702 19553 6110883 2024-02-29 10:05:28.906 2024-02-29 10:05:28.906 9000 TIP 442702 19352 6110888 2024-02-29 10:06:01.131 2024-02-29 10:06:01.131 1000 FEE 443253 18528 6110917 2024-02-29 10:07:27.562 2024-02-29 10:07:27.562 1000 FEE 443101 6687 6110918 2024-02-29 10:07:27.562 2024-02-29 10:07:27.562 9000 TIP 443101 20754 6110101 2024-02-29 08:17:02.604 2024-02-29 08:17:02.604 1000 STREAM 141924 5806 6110122 2024-02-29 08:19:02.631 2024-02-29 08:19:02.631 1000 STREAM 141924 4250 6110170 2024-02-29 08:25:03.173 2024-02-29 08:25:03.173 1000 STREAM 141924 20310 6110198 2024-02-29 08:27:03.177 2024-02-29 08:27:03.177 1000 STREAM 141924 19507 6110208 2024-02-29 08:33:03.245 2024-02-29 08:33:03.245 1000 STREAM 141924 701 6110218 2024-02-29 08:39:03.256 2024-02-29 08:39:03.256 1000 STREAM 141924 19292 6110226 2024-02-29 08:44:03.285 2024-02-29 08:44:03.285 1000 STREAM 141924 14545 6110174 2024-02-29 08:26:02.261 2024-02-29 08:26:02.261 1000 STREAM 141924 14168 6110200 2024-02-29 08:28:02.232 2024-02-29 08:28:02.232 1000 STREAM 141924 9433 6110203 2024-02-29 08:30:02.304 2024-02-29 08:30:02.304 1000 STREAM 141924 21522 6110228 2024-02-29 08:45:02.404 2024-02-29 08:45:02.404 1000 STREAM 141924 20717 6110260 2024-02-29 08:51:02.388 2024-02-29 08:51:02.388 1000 STREAM 141924 675 6110270 2024-02-29 08:55:02.411 2024-02-29 08:55:02.411 1000 STREAM 141924 1120 6110271 2024-02-29 08:56:02.42 2024-02-29 08:56:02.42 1000 STREAM 141924 13753 6110274 2024-02-29 08:57:02.429 2024-02-29 08:57:02.429 1000 STREAM 141924 2576 6110289 2024-02-29 09:00:02.43 2024-02-29 09:00:02.43 1000 STREAM 141924 691 6110207 2024-02-29 08:32:02.29 2024-02-29 08:32:02.29 1000 STREAM 141924 10638 6110210 2024-02-29 08:34:02.299 2024-02-29 08:34:02.299 1000 STREAM 141924 18618 6110213 2024-02-29 08:36:02.313 2024-02-29 08:36:02.313 1000 STREAM 141924 21444 6110217 2024-02-29 08:38:02.042 2024-02-29 08:38:02.042 1000 STREAM 141924 21026 6110219 2024-02-29 08:40:02.099 2024-02-29 08:40:02.099 1000 STREAM 141924 21422 6110231 2024-02-29 08:46:02.798 2024-02-29 08:46:02.798 1000 STREAM 141924 10586 6110249 2024-02-29 08:49:02.783 2024-02-29 08:49:02.783 1000 STREAM 141924 17147 6110281 2024-02-29 08:59:02.792 2024-02-29 08:59:02.792 1000 STREAM 141924 20022 6110394 2024-02-29 09:13:02.862 2024-02-29 09:13:02.862 1000 STREAM 141924 21493 6110397 2024-02-29 09:14:02.872 2024-02-29 09:14:02.872 1000 STREAM 141924 13931 6110464 2024-02-29 09:22:02.885 2024-02-29 09:22:02.885 1000 STREAM 141924 15491 6110475 2024-02-29 09:24:02.903 2024-02-29 09:24:02.903 1000 STREAM 141924 21222 6110497 2024-02-29 09:26:02.896 2024-02-29 09:26:02.896 1000 STREAM 141924 17166 6110580 2024-02-29 09:39:02.934 2024-02-29 09:39:02.934 1000 STREAM 141924 14941 6110585 2024-02-29 09:40:02.975 2024-02-29 09:40:02.975 1000 STREAM 141924 13217 6110595 2024-02-29 09:44:02.96 2024-02-29 09:44:02.96 1000 STREAM 141924 1611 6110611 2024-02-29 09:48:02.986 2024-02-29 09:48:02.986 1000 STREAM 141924 5752 6110612 2024-02-29 09:49:02.98 2024-02-29 09:49:02.98 1000 STREAM 141924 8287 6110617 2024-02-29 09:50:03.018 2024-02-29 09:50:03.018 1000 STREAM 141924 18124 6111109 2024-02-29 10:35:03.511 2024-02-29 10:35:03.511 1000 STREAM 141924 5961 6111112 2024-02-29 10:36:03.524 2024-02-29 10:36:03.524 1000 STREAM 141924 20751 6111145 2024-02-29 10:45:03.571 2024-02-29 10:45:03.571 1000 STREAM 141924 12819 6111167 2024-02-29 10:47:03.579 2024-02-29 10:47:03.579 1000 STREAM 141924 5597 6111267 2024-02-29 11:04:03.731 2024-02-29 11:04:03.731 1000 STREAM 141924 5725 6111288 2024-02-29 11:06:03.733 2024-02-29 11:06:03.733 1000 STREAM 141924 2583 6111293 2024-02-29 11:07:03.733 2024-02-29 11:07:03.733 1000 STREAM 141924 1697 6111323 2024-02-29 11:11:03.766 2024-02-29 11:11:03.766 1000 STREAM 141924 2652 6111326 2024-02-29 11:12:03.755 2024-02-29 11:12:03.755 1000 STREAM 141924 21012 6110236 2024-02-29 08:47:02.229 2024-02-29 08:47:02.229 1000 STREAM 141924 21079 6110237 2024-02-29 08:48:02.212 2024-02-29 08:48:02.212 1000 STREAM 141924 21480 6110255 2024-02-29 08:50:02.26 2024-02-29 08:50:02.26 1000 STREAM 141924 14941 6110265 2024-02-29 08:53:02.259 2024-02-29 08:53:02.259 1000 STREAM 141924 17046 6110268 2024-02-29 08:54:02.263 2024-02-29 08:54:02.263 1000 STREAM 141924 19795 6110297 2024-02-29 09:02:02.397 2024-02-29 09:02:02.397 1000 STREAM 141924 2176 6110298 2024-02-29 09:03:02.408 2024-02-29 09:03:02.408 1000 STREAM 141924 21296 6110364 2024-02-29 09:04:02.422 2024-02-29 09:04:02.422 1000 STREAM 141924 19147 6110373 2024-02-29 09:07:02.431 2024-02-29 09:07:02.431 1000 STREAM 141924 16950 6110479 2024-02-29 09:25:02.766 2024-02-29 09:25:02.766 1000 STREAM 141924 11165 6110554 2024-02-29 09:33:02.817 2024-02-29 09:33:02.817 1000 STREAM 141924 1114 6110558 2024-02-29 09:34:02.81 2024-02-29 09:34:02.81 1000 STREAM 141924 4128 6110263 2024-02-29 08:52:02.39 2024-02-29 08:52:02.39 1000 STREAM 141924 12097 6110275 2024-02-29 08:58:02.801 2024-02-29 08:58:02.801 1000 STREAM 141924 12122 6110295 2024-02-29 09:01:03.354 2024-02-29 09:01:03.354 1000 STREAM 141924 20110 6110378 2024-02-29 09:09:03.396 2024-02-29 09:09:03.396 1000 STREAM 141924 4654 6110382 2024-02-29 09:11:03.39 2024-02-29 09:11:03.39 1000 STREAM 141924 1012 6110424 2024-02-29 09:17:03.42 2024-02-29 09:17:03.42 1000 STREAM 141924 21605 6110431 2024-02-29 09:18:03.411 2024-02-29 09:18:03.411 1000 STREAM 141924 2514 6110435 2024-02-29 09:19:03.409 2024-02-29 09:19:03.409 1000 STREAM 141924 20502 6110365 2024-02-29 09:05:03.357 2024-02-29 09:05:03.357 1000 STREAM 141924 7773 6110368 2024-02-29 09:06:03.374 2024-02-29 09:06:03.374 1000 STREAM 141924 1145 6110374 2024-02-29 09:08:03.394 2024-02-29 09:08:03.394 1000 STREAM 141924 19259 6110379 2024-02-29 09:10:03.375 2024-02-29 09:10:03.375 1000 STREAM 141924 17172 6110383 2024-02-29 09:12:02.866 2024-02-29 09:12:02.866 1000 STREAM 141924 20624 6110401 2024-02-29 09:15:02.868 2024-02-29 09:15:02.868 1000 STREAM 141924 1122 6110404 2024-02-29 09:16:02.87 2024-02-29 09:16:02.87 1000 STREAM 141924 15925 6110437 2024-02-29 09:20:02.884 2024-02-29 09:20:02.884 1000 STREAM 141924 19322 6110472 2024-02-29 09:23:02.894 2024-02-29 09:23:02.894 1000 STREAM 141924 1602 6110402 2024-02-29 09:15:21.647 2024-02-29 09:15:21.647 2100 FEE 443193 20816 6110403 2024-02-29 09:15:21.647 2024-02-29 09:15:21.647 18900 TIP 443193 16270 6110419 2024-02-29 09:16:44.067 2024-02-29 09:16:44.067 2100 FEE 443189 14465 6110420 2024-02-29 09:16:44.067 2024-02-29 09:16:44.067 18900 TIP 443189 15159 6110422 2024-02-29 09:16:57.35 2024-02-29 09:16:57.35 2100 FEE 443197 3411 6110423 2024-02-29 09:16:57.35 2024-02-29 09:16:57.35 18900 TIP 443197 21624 6110425 2024-02-29 09:17:05.773 2024-02-29 09:17:05.773 2100 FEE 443182 21249 6110426 2024-02-29 09:17:05.773 2024-02-29 09:17:05.773 18900 TIP 443182 15146 6110442 2024-02-29 09:21:04.852 2024-02-29 09:21:04.852 1000 FEE 443215 2204 6110449 2024-02-29 09:21:44.635 2024-02-29 09:21:44.635 100 FEE 443213 19843 6110450 2024-02-29 09:21:44.635 2024-02-29 09:21:44.635 900 TIP 443213 20597 6110465 2024-02-29 09:22:03.21 2024-02-29 09:22:03.21 1000 FEE 443217 21393 6110466 2024-02-29 09:22:06.009 2024-02-29 09:22:06.009 10000 FEE 443169 1286 6110467 2024-02-29 09:22:06.009 2024-02-29 09:22:06.009 90000 TIP 443169 21208 6110493 2024-02-29 09:25:50.942 2024-02-29 09:25:50.942 2100 FEE 443171 7418 6110494 2024-02-29 09:25:50.942 2024-02-29 09:25:50.942 18900 TIP 443171 2013 6110504 2024-02-29 09:26:53.137 2024-02-29 09:26:53.137 2100 FEE 442551 722 6110505 2024-02-29 09:26:53.137 2024-02-29 09:26:53.137 18900 TIP 442551 21417 6110512 2024-02-29 09:27:03.063 2024-02-29 09:27:03.063 1000 FEE 443219 18359 6110518 2024-02-29 09:27:04.946 2024-02-29 09:27:04.946 100 FEE 443196 19633 6110519 2024-02-29 09:27:04.946 2024-02-29 09:27:04.946 900 TIP 443196 4654 6110557 2024-02-29 09:33:57.989 2024-02-29 09:33:57.989 1000 POLL 442751 12930 6110562 2024-02-29 09:35:07.945 2024-02-29 09:35:07.945 42000 FEE 443222 1030 6110670 2024-02-29 09:54:08.33 2024-02-29 09:54:08.33 1000 FEE 442298 19087 6110671 2024-02-29 09:54:08.33 2024-02-29 09:54:08.33 9000 TIP 442298 5865 6110678 2024-02-29 09:54:18.257 2024-02-29 09:54:18.257 1000 FEE 443008 9307 6110679 2024-02-29 09:54:18.257 2024-02-29 09:54:18.257 9000 TIP 443008 21148 6110729 2024-02-29 09:54:32.064 2024-02-29 09:54:32.064 1000 FEE 443169 1631 6110730 2024-02-29 09:54:32.064 2024-02-29 09:54:32.064 9000 TIP 443169 17800 6110731 2024-02-29 09:54:32.611 2024-02-29 09:54:32.611 1000 FEE 443168 20245 6110732 2024-02-29 09:54:32.611 2024-02-29 09:54:32.611 9000 TIP 443168 1003 6110741 2024-02-29 09:54:39.634 2024-02-29 09:54:39.634 0 FEE 443236 12911 6110742 2024-02-29 09:54:45.127 2024-02-29 09:54:45.127 0 FEE 443235 20424 6110743 2024-02-29 09:54:48.758 2024-02-29 09:54:48.758 1000 FEE 443239 946 6110747 2024-02-29 09:55:19.372 2024-02-29 09:55:19.372 0 FEE 443233 6310 6110781 2024-02-29 10:00:10.118 2024-02-29 10:00:10.118 1000 FEE 443179 9796 6110782 2024-02-29 10:00:10.118 2024-02-29 10:00:10.118 9000 TIP 443179 21573 6110802 2024-02-29 10:01:03.321 2024-02-29 10:01:03.321 100 FEE 443081 2101 6110803 2024-02-29 10:01:03.321 2024-02-29 10:01:03.321 900 TIP 443081 8173 6110805 2024-02-29 10:01:04.593 2024-02-29 10:01:04.593 1000 FEE 442978 16769 6110806 2024-02-29 10:01:04.593 2024-02-29 10:01:04.593 9000 TIP 442978 18005 6110816 2024-02-29 10:01:20.419 2024-02-29 10:01:20.419 1000 FEE 443243 17109 6110884 2024-02-29 10:05:36.383 2024-02-29 10:05:36.383 1000 FEE 443226 18865 6110885 2024-02-29 10:05:36.383 2024-02-29 10:05:36.383 9000 TIP 443226 21522 6110914 2024-02-29 10:07:15.521 2024-02-29 10:07:15.521 6400 FEE 443242 15088 6110915 2024-02-29 10:07:15.521 2024-02-29 10:07:15.521 57600 TIP 443242 14959 6110926 2024-02-29 10:07:47.08 2024-02-29 10:07:47.08 1000 FEE 442982 18119 6110927 2024-02-29 10:07:47.08 2024-02-29 10:07:47.08 9000 TIP 442982 21207 6110974 2024-02-29 10:10:46.497 2024-02-29 10:10:46.497 2100 FEE 441864 14950 6110975 2024-02-29 10:10:46.497 2024-02-29 10:10:46.497 18900 TIP 441864 20849 6111006 2024-02-29 10:14:34.887 2024-02-29 10:14:34.887 1000 FEE 443255 12422 6111007 2024-02-29 10:14:34.887 2024-02-29 10:14:34.887 9000 TIP 443255 18180 6111030 2024-02-29 10:24:56.804 2024-02-29 10:24:56.804 21000 FEE 443266 18865 6111036 2024-02-29 10:25:25.273 2024-02-29 10:25:25.273 5700 FEE 443134 7654 6111037 2024-02-29 10:25:25.273 2024-02-29 10:25:25.273 51300 TIP 443134 917 6111044 2024-02-29 10:26:03.026 2024-02-29 10:26:03.026 5700 FEE 443179 19132 6111045 2024-02-29 10:26:03.026 2024-02-29 10:26:03.026 51300 TIP 443179 18274 6111058 2024-02-29 10:26:48.123 2024-02-29 10:26:48.123 2100 FEE 443179 20246 6111059 2024-02-29 10:26:48.123 2024-02-29 10:26:48.123 18900 TIP 443179 16194 6111069 2024-02-29 10:27:22.014 2024-02-29 10:27:22.014 69000 FEE 443268 18984 6111104 2024-02-29 10:33:54.369 2024-02-29 10:33:54.369 800 FEE 442985 18220 6111105 2024-02-29 10:33:54.369 2024-02-29 10:33:54.369 7200 TIP 442985 11263 6111133 2024-02-29 10:40:00.689 2024-02-29 10:40:00.689 1000 FEE 443279 18351 6111149 2024-02-29 10:46:09.956 2024-02-29 10:46:09.956 2100 FEE 443178 19449 6111150 2024-02-29 10:46:09.956 2024-02-29 10:46:09.956 18900 TIP 443178 14959 6111181 2024-02-29 10:49:55.196 2024-02-29 10:49:55.196 1000 FEE 443285 21164 6111187 2024-02-29 10:51:11.947 2024-02-29 10:51:11.947 10000 FEE 442904 13204 6111188 2024-02-29 10:51:11.947 2024-02-29 10:51:11.947 90000 TIP 442904 21416 6111191 2024-02-29 10:51:43.439 2024-02-29 10:51:43.439 1000 FEE 443291 7760 6111197 2024-02-29 10:52:43.491 2024-02-29 10:52:43.491 1000 FEE 443282 2335 6111198 2024-02-29 10:52:43.491 2024-02-29 10:52:43.491 9000 TIP 443282 11164 6111220 2024-02-29 10:58:33.346 2024-02-29 10:58:33.346 1600 FEE 443288 20157 6111221 2024-02-29 10:58:33.346 2024-02-29 10:58:33.346 14400 TIP 443288 21164 6111227 2024-02-29 11:00:08.912 2024-02-29 11:00:08.912 1000 FEE 443296 19417 6111254 2024-02-29 11:03:25.27 2024-02-29 11:03:25.27 1000 FEE 443297 617 6111255 2024-02-29 11:03:25.27 2024-02-29 11:03:25.27 9000 TIP 443297 21527 6111259 2024-02-29 11:03:50.767 2024-02-29 11:03:50.767 1000 FEE 443301 9843 6110441 2024-02-29 09:21:03.415 2024-02-29 09:21:03.415 1000 STREAM 141924 16594 6110513 2024-02-29 09:27:03.455 2024-02-29 09:27:03.455 1000 STREAM 141924 18640 6110535 2024-02-29 09:28:03.437 2024-02-29 09:28:03.437 1000 STREAM 141924 18311 6110547 2024-02-29 09:29:03.442 2024-02-29 09:29:03.442 1000 STREAM 141924 20981 6110550 2024-02-29 09:31:03.436 2024-02-29 09:31:03.436 1000 STREAM 141924 19622 6110448 2024-02-29 09:21:44.296 2024-02-29 09:21:44.296 900 TIP 443213 2039 6110454 2024-02-29 09:21:59.875 2024-02-29 09:21:59.875 100 FEE 443211 16276 6110455 2024-02-29 09:21:59.875 2024-02-29 09:21:59.875 900 TIP 443211 900 6110486 2024-02-29 09:25:29.981 2024-02-29 09:25:29.981 2100 FEE 443179 9332 6110487 2024-02-29 09:25:29.981 2024-02-29 09:25:29.981 18900 TIP 443179 17321 6110500 2024-02-29 09:26:06.08 2024-02-29 09:26:06.08 2100 FEE 443181 20993 6110501 2024-02-29 09:26:06.08 2024-02-29 09:26:06.08 18900 TIP 443181 16842 6110510 2024-02-29 09:27:01.641 2024-02-29 09:27:01.641 2100 FEE 442758 19980 6110511 2024-02-29 09:27:01.641 2024-02-29 09:27:01.641 18900 TIP 442758 19469 6110544 2024-02-29 09:28:14.094 2024-02-29 09:28:14.094 1600 FEE 442627 16485 6110545 2024-02-29 09:28:14.094 2024-02-29 09:28:14.094 14400 TIP 442627 5590 6110559 2024-02-29 09:34:43.089 2024-02-29 09:34:43.089 1000 FEE 442825 760 6110560 2024-02-29 09:34:43.089 2024-02-29 09:34:43.089 9000 TIP 442825 14381 6110570 2024-02-29 09:36:58.179 2024-02-29 09:36:58.179 1000 FEE 442806 5597 6110571 2024-02-29 09:36:58.179 2024-02-29 09:36:58.179 9000 TIP 442806 946 6110572 2024-02-29 09:36:58.599 2024-02-29 09:36:58.599 1000 FEE 442803 2703 6110573 2024-02-29 09:36:58.599 2024-02-29 09:36:58.599 9000 TIP 442803 8287 6110581 2024-02-29 09:39:58.113 2024-02-29 09:39:58.113 1000 FEE 443172 13216 6110582 2024-02-29 09:39:58.113 2024-02-29 09:39:58.113 9000 TIP 443172 21493 6110590 2024-02-29 09:42:06.103 2024-02-29 09:42:06.103 1100 FEE 442701 18941 6110591 2024-02-29 09:42:06.103 2024-02-29 09:42:06.103 9900 TIP 442701 20816 6110592 2024-02-29 09:42:19.362 2024-02-29 09:42:19.362 1000 FEE 443225 4819 6110597 2024-02-29 09:44:49.635 2024-02-29 09:44:49.635 100000 FEE 443228 11443 6110609 2024-02-29 09:47:34.984 2024-02-29 09:47:34.984 6900 FEE 441774 876 6110610 2024-02-29 09:47:34.984 2024-02-29 09:47:34.984 62100 TIP 441774 13782 6110621 2024-02-29 09:50:59.414 2024-02-29 09:50:59.414 1000 FEE 443233 13903 6110622 2024-02-29 09:51:01.662 2024-02-29 09:51:01.662 0 FEE 443231 8360 6110634 2024-02-29 09:52:59.871 2024-02-29 09:52:59.871 0 FEE 443231 4043 6110647 2024-02-29 09:53:50.912 2024-02-29 09:53:50.912 1000 FEE 443011 10536 6110648 2024-02-29 09:53:50.912 2024-02-29 09:53:50.912 9000 TIP 443011 9166 6110668 2024-02-29 09:54:07.862 2024-02-29 09:54:07.862 1000 FEE 442627 11165 6110669 2024-02-29 09:54:07.862 2024-02-29 09:54:07.862 9000 TIP 442627 21563 6110737 2024-02-29 09:54:35.616 2024-02-29 09:54:35.616 1000 FEE 443160 1712 6110738 2024-02-29 09:54:35.616 2024-02-29 09:54:35.616 9000 TIP 443160 18472 6110748 2024-02-29 09:55:30.952 2024-02-29 09:55:30.952 1000 FEE 443240 12965 6110812 2024-02-29 10:01:16.926 2024-02-29 10:01:16.926 100 FEE 443166 18829 6110813 2024-02-29 10:01:16.926 2024-02-29 10:01:16.926 900 TIP 443166 9843 6110834 2024-02-29 10:03:01.105 2024-02-29 10:03:01.105 100 FEE 442892 20972 6110835 2024-02-29 10:03:01.105 2024-02-29 10:03:01.105 900 TIP 442892 675 6110839 2024-02-29 10:03:09.452 2024-02-29 10:03:09.452 1000 FEE 443246 956 6110842 2024-02-29 10:03:18.973 2024-02-29 10:03:18.973 6900 FEE 442374 19502 6110843 2024-02-29 10:03:18.973 2024-02-29 10:03:18.973 62100 TIP 442374 20901 6110844 2024-02-29 10:03:29.233 2024-02-29 10:03:29.233 1000 FEE 443197 20646 6110845 2024-02-29 10:03:29.233 2024-02-29 10:03:29.233 9000 TIP 443197 21339 6110848 2024-02-29 10:03:43.377 2024-02-29 10:03:43.377 1000 FEE 443197 10007 6110849 2024-02-29 10:03:43.377 2024-02-29 10:03:43.377 9000 TIP 443197 4502 6110853 2024-02-29 10:04:09.326 2024-02-29 10:04:09.326 2100 FEE 442313 18717 6110854 2024-02-29 10:04:09.326 2024-02-29 10:04:09.326 18900 TIP 442313 18188 6110873 2024-02-29 10:05:25.117 2024-02-29 10:05:25.117 10000 FEE 443251 20998 6110891 2024-02-29 10:06:03.52 2024-02-29 10:06:03.52 1000 FEE 441843 18625 6110892 2024-02-29 10:06:03.52 2024-02-29 10:06:03.52 9000 TIP 441843 20596 6110896 2024-02-29 10:06:09.101 2024-02-29 10:06:09.101 1100 FEE 443105 2640 6110897 2024-02-29 10:06:09.101 2024-02-29 10:06:09.101 9900 TIP 443105 8360 6110906 2024-02-29 10:07:00.594 2024-02-29 10:07:00.594 1000 FEE 443254 19770 6110938 2024-02-29 10:08:10.322 2024-02-29 10:08:10.322 1000 FEE 442188 3377 6110939 2024-02-29 10:08:10.322 2024-02-29 10:08:10.322 9000 TIP 442188 679 6110940 2024-02-29 10:08:17.831 2024-02-29 10:08:17.831 1000 FEE 441981 18174 6110941 2024-02-29 10:08:17.831 2024-02-29 10:08:17.831 9000 TIP 441981 21062 6110964 2024-02-29 10:10:32.274 2024-02-29 10:10:32.274 2100 FEE 442129 2963 6110965 2024-02-29 10:10:32.274 2024-02-29 10:10:32.274 18900 TIP 442129 18679 6111008 2024-02-29 10:14:45.88 2024-02-29 10:14:45.88 1000 FEE 443264 4692 6111017 2024-02-29 10:18:13.555 2024-02-29 10:18:13.555 6900 FEE 442325 2513 6111018 2024-02-29 10:18:13.555 2024-02-29 10:18:13.555 62100 TIP 442325 21514 6111028 2024-02-29 10:24:46.415 2024-02-29 10:24:46.415 5700 FEE 443263 18460 6111029 2024-02-29 10:24:46.415 2024-02-29 10:24:46.415 51300 TIP 443263 20730 6111038 2024-02-29 10:25:39.276 2024-02-29 10:25:39.276 5700 FEE 443127 9705 6111039 2024-02-29 10:25:39.276 2024-02-29 10:25:39.276 51300 TIP 443127 1319 6111056 2024-02-29 10:26:47.83 2024-02-29 10:26:47.83 2100 FEE 443179 909 6111057 2024-02-29 10:26:47.83 2024-02-29 10:26:47.83 18900 TIP 443179 10094 6111062 2024-02-29 10:26:53.629 2024-02-29 10:26:53.629 2100 FEE 443011 20861 6111063 2024-02-29 10:26:53.629 2024-02-29 10:26:53.629 18900 TIP 443011 17365 6111066 2024-02-29 10:26:56.846 2024-02-29 10:26:56.846 2100 FEE 442627 18930 6111067 2024-02-29 10:26:56.846 2024-02-29 10:26:56.846 18900 TIP 442627 21060 6111085 2024-02-29 10:29:45.512 2024-02-29 10:29:45.512 1600 FEE 442997 17817 6111086 2024-02-29 10:29:45.512 2024-02-29 10:29:45.512 14400 TIP 442997 889 6111114 2024-02-29 10:36:45.391 2024-02-29 10:36:45.391 15000 FEE 443277 979 6111126 2024-02-29 10:38:04.485 2024-02-29 10:38:04.485 9000 FEE 443274 19664 6111127 2024-02-29 10:38:04.485 2024-02-29 10:38:04.485 81000 TIP 443274 15271 6111161 2024-02-29 10:46:50.282 2024-02-29 10:46:50.282 2100 FEE 441719 8570 6111162 2024-02-29 10:46:50.282 2024-02-29 10:46:50.282 18900 TIP 441719 19459 6111164 2024-02-29 10:46:57.165 2024-02-29 10:46:57.165 2100 FEE 441986 699 6111165 2024-02-29 10:46:57.165 2024-02-29 10:46:57.165 18900 TIP 441986 11275 6111168 2024-02-29 10:47:18.472 2024-02-29 10:47:18.472 1000 FEE 443282 16259 6111172 2024-02-29 10:47:52.546 2024-02-29 10:47:52.546 0 FEE 443282 10944 6111184 2024-02-29 10:50:29.487 2024-02-29 10:50:29.487 15000 FEE 443287 19465 6111202 2024-02-29 10:54:09.935 2024-02-29 10:54:09.935 1000 FEE 443287 697 6111203 2024-02-29 10:54:09.935 2024-02-29 10:54:09.935 9000 TIP 443287 20301 6111240 2024-02-29 11:01:39.664 2024-02-29 11:01:39.664 700 FEE 443297 14909 6111241 2024-02-29 11:01:39.664 2024-02-29 11:01:39.664 6300 TIP 443297 9356 6111262 2024-02-29 11:03:53.254 2024-02-29 11:03:53.254 1000 FEE 443296 11240 6111263 2024-02-29 11:03:53.254 2024-02-29 11:03:53.254 9000 TIP 443296 16706 6111269 2024-02-29 11:04:06.88 2024-02-29 11:04:06.88 15000 FEE 443304 17526 6111295 2024-02-29 11:07:57.054 2024-02-29 11:07:57.054 2100 FEE 443274 21591 6111296 2024-02-29 11:07:57.054 2024-02-29 11:07:57.054 18900 TIP 443274 6765 6111328 2024-02-29 11:12:46.536 2024-02-29 11:12:46.536 2100 FEE 443303 1092 6111329 2024-02-29 11:12:46.536 2024-02-29 11:12:46.536 18900 TIP 443303 16178 6111341 2024-02-29 11:15:40.975 2024-02-29 11:15:40.975 1000 FEE 443320 18219 6111359 2024-02-29 11:18:03.646 2024-02-29 11:18:03.646 5700 FEE 443322 21303 6111360 2024-02-29 11:18:03.646 2024-02-29 11:18:03.646 51300 TIP 443322 21466 6111370 2024-02-29 11:20:15.537 2024-02-29 11:20:15.537 800 FEE 443297 19378 6111371 2024-02-29 11:20:15.537 2024-02-29 11:20:15.537 7200 TIP 443297 18473 6111375 2024-02-29 11:21:15.154 2024-02-29 11:21:15.154 1000 FEE 443329 2322 6111381 2024-02-29 11:22:25.944 2024-02-29 11:22:25.944 1000 FEE 443330 16939 6111383 2024-02-29 11:23:22.7 2024-02-29 11:23:22.7 100 FEE 442729 891 6110548 2024-02-29 09:30:03.45 2024-02-29 09:30:03.45 1000 STREAM 141924 4502 6110551 2024-02-29 09:32:03.463 2024-02-29 09:32:03.463 1000 STREAM 141924 14404 6110561 2024-02-29 09:35:05.471 2024-02-29 09:35:05.471 1000 STREAM 141924 635 6110589 2024-02-29 09:42:05.518 2024-02-29 09:42:05.518 1000 STREAM 141924 18930 6110604 2024-02-29 09:46:03.521 2024-02-29 09:46:03.521 1000 STREAM 141924 18139 6110608 2024-02-29 09:47:03.522 2024-02-29 09:47:03.522 1000 STREAM 141924 896 6110631 2024-02-29 09:52:03.541 2024-02-29 09:52:03.541 1000 STREAM 141924 20257 6110635 2024-02-29 09:53:03.55 2024-02-29 09:53:03.55 1000 STREAM 141924 18989 6110756 2024-02-29 09:57:03.582 2024-02-29 09:57:03.582 1000 STREAM 141924 19435 6110838 2024-02-29 10:03:03.598 2024-02-29 10:03:03.598 1000 STREAM 141924 1478 6110867 2024-02-29 10:05:03.601 2024-02-29 10:05:03.601 1000 STREAM 141924 18231 6110893 2024-02-29 10:06:03.607 2024-02-29 10:06:03.607 1000 STREAM 141924 18877 6110977 2024-02-29 10:11:03.611 2024-02-29 10:11:03.611 1000 STREAM 141924 8535 6111005 2024-02-29 10:14:03.621 2024-02-29 10:14:03.621 1000 STREAM 141924 7989 6111011 2024-02-29 10:17:03.635 2024-02-29 10:17:03.635 1000 STREAM 141924 1354 6111016 2024-02-29 10:18:03.636 2024-02-29 10:18:03.636 1000 STREAM 141924 14080 6111020 2024-02-29 10:19:03.638 2024-02-29 10:19:03.638 1000 STREAM 141924 11240 6111021 2024-02-29 10:20:03.652 2024-02-29 10:20:03.652 1000 STREAM 141924 17147 6111022 2024-02-29 10:21:03.637 2024-02-29 10:21:03.637 1000 STREAM 141924 9026 6111025 2024-02-29 10:22:03.632 2024-02-29 10:22:03.632 1000 STREAM 141924 19952 6111026 2024-02-29 10:23:03.64 2024-02-29 10:23:03.64 1000 STREAM 141924 19576 6111070 2024-02-29 10:28:03.655 2024-02-29 10:28:03.655 1000 STREAM 141924 16562 6111092 2024-02-29 10:31:03.67 2024-02-29 10:31:03.67 1000 STREAM 141924 18368 6111106 2024-02-29 10:34:03.682 2024-02-29 10:34:03.682 1000 STREAM 141924 1596 6110565 2024-02-29 09:36:02.827 2024-02-29 09:36:02.827 1000 STREAM 141924 661 6110567 2024-02-29 09:36:20.345 2024-02-29 09:36:20.345 18900 TIP 443222 19043 6110594 2024-02-29 09:43:15.554 2024-02-29 09:43:15.554 1000 FEE 443226 20084 6110607 2024-02-29 09:46:47.19 2024-02-29 09:46:47.19 1000 FEE 443230 8360 6110629 2024-02-29 09:51:53.819 2024-02-29 09:51:53.819 12800 FEE 443175 4768 6110630 2024-02-29 09:51:53.819 2024-02-29 09:51:53.819 115200 TIP 443175 12819 6110655 2024-02-29 09:53:52.71 2024-02-29 09:53:52.71 1000 FEE 441843 9330 6110656 2024-02-29 09:53:52.71 2024-02-29 09:53:52.71 9000 TIP 441843 18180 6110682 2024-02-29 09:54:19.58 2024-02-29 09:54:19.58 1000 FEE 441944 21451 6110683 2024-02-29 09:54:19.58 2024-02-29 09:54:19.58 9000 TIP 441944 21051 6110776 2024-02-29 10:00:01.561 2024-02-29 10:00:01.561 100 FEE 442904 1209 6110777 2024-02-29 10:00:01.561 2024-02-29 10:00:01.561 900 TIP 442904 8998 6110783 2024-02-29 10:00:11.336 2024-02-29 10:00:11.336 1000 FEE 443178 20660 6110784 2024-02-29 10:00:11.336 2024-02-29 10:00:11.336 9000 TIP 443178 15063 6110831 2024-02-29 10:02:47.452 2024-02-29 10:02:47.452 6900 FEE 442606 15703 6110832 2024-02-29 10:02:47.452 2024-02-29 10:02:47.452 62100 TIP 442606 18209 6110894 2024-02-29 10:06:06.514 2024-02-29 10:06:06.514 6900 FEE 442216 964 6110895 2024-02-29 10:06:06.514 2024-02-29 10:06:06.514 62100 TIP 442216 2508 6110898 2024-02-29 10:06:23.778 2024-02-29 10:06:23.778 1000 FEE 441979 8985 6110899 2024-02-29 10:06:23.778 2024-02-29 10:06:23.778 9000 TIP 441979 16149 6110910 2024-02-29 10:07:05.237 2024-02-29 10:07:05.237 1000 FEE 442396 18524 6110911 2024-02-29 10:07:05.237 2024-02-29 10:07:05.237 9000 TIP 442396 21356 6110916 2024-02-29 10:07:15.722 2024-02-29 10:07:15.722 1000 FEE 443255 21343 6110930 2024-02-29 10:07:57.409 2024-02-29 10:07:57.409 1000 FEE 442848 1352 6110931 2024-02-29 10:07:57.409 2024-02-29 10:07:57.409 9000 TIP 442848 5160 6110942 2024-02-29 10:08:18.242 2024-02-29 10:08:18.242 1000 FEE 443257 14785 6110947 2024-02-29 10:08:37.671 2024-02-29 10:08:37.671 1000 FEE 443258 10484 6110956 2024-02-29 10:10:22.566 2024-02-29 10:10:22.566 2100 FEE 441979 13055 6110957 2024-02-29 10:10:22.566 2024-02-29 10:10:22.566 18900 TIP 441979 21166 6110976 2024-02-29 10:10:55.582 2024-02-29 10:10:55.582 1000 FEE 443259 652 6110986 2024-02-29 10:12:02.554 2024-02-29 10:12:02.554 1000 FEE 443262 9342 6110988 2024-02-29 10:12:04.344 2024-02-29 10:12:04.344 2100 FEE 442796 1741 6110989 2024-02-29 10:12:04.344 2024-02-29 10:12:04.344 18900 TIP 442796 16998 6111019 2024-02-29 10:18:51.589 2024-02-29 10:18:51.589 1000 FEE 443265 2775 6111023 2024-02-29 10:21:29.599 2024-02-29 10:21:29.599 1600 FEE 443058 15367 6111024 2024-02-29 10:21:29.599 2024-02-29 10:21:29.599 14400 TIP 443058 21274 6111042 2024-02-29 10:26:01.963 2024-02-29 10:26:01.963 5700 FEE 443178 20310 6111043 2024-02-29 10:26:01.963 2024-02-29 10:26:01.963 51300 TIP 443178 14785 6111082 2024-02-29 10:29:18.815 2024-02-29 10:29:18.815 100 FEE 443266 20816 6111083 2024-02-29 10:29:18.815 2024-02-29 10:29:18.815 900 TIP 443266 5171 6111088 2024-02-29 10:30:05.576 2024-02-29 10:30:05.576 1000 FEE 443271 16789 6111113 2024-02-29 10:36:42.047 2024-02-29 10:36:42.047 1000 FEE 443276 15484 6111121 2024-02-29 10:37:32.019 2024-02-29 10:37:32.019 100 FEE 443274 2528 6111122 2024-02-29 10:37:32.019 2024-02-29 10:37:32.019 900 TIP 443274 20180 6111131 2024-02-29 10:39:47.503 2024-02-29 10:39:47.503 10000 FEE 443178 17522 6111132 2024-02-29 10:39:47.503 2024-02-29 10:39:47.503 90000 TIP 443178 854 6111139 2024-02-29 10:43:08.075 2024-02-29 10:43:08.075 10000 FEE 443272 13553 6111140 2024-02-29 10:43:08.075 2024-02-29 10:43:08.075 90000 TIP 443272 21444 6111151 2024-02-29 10:46:10.951 2024-02-29 10:46:10.951 2100 FEE 443179 676 6111152 2024-02-29 10:46:10.951 2024-02-29 10:46:10.951 18900 TIP 443179 9350 6111163 2024-02-29 10:46:55.264 2024-02-29 10:46:55.264 1000 FEE 443280 19147 6111178 2024-02-29 10:49:16.437 2024-02-29 10:49:16.437 2500 FEE 442710 8664 6111179 2024-02-29 10:49:16.437 2024-02-29 10:49:16.437 22500 TIP 442710 12072 6111189 2024-02-29 10:51:12.138 2024-02-29 10:51:12.138 1000 FEE 443289 18426 6111195 2024-02-29 10:52:32.775 2024-02-29 10:52:32.775 100 FEE 443288 7978 6111196 2024-02-29 10:52:32.775 2024-02-29 10:52:32.775 900 TIP 443288 20745 6111200 2024-02-29 10:53:08.773 2024-02-29 10:53:08.773 1000 FEE 443292 9611 6111204 2024-02-29 10:54:27.912 2024-02-29 10:54:27.912 2100 FEE 443281 5017 6111205 2024-02-29 10:54:27.912 2024-02-29 10:54:27.912 18900 TIP 443281 14552 6111244 2024-02-29 11:01:42.217 2024-02-29 11:01:42.217 700 FEE 443296 8648 6111245 2024-02-29 11:01:42.217 2024-02-29 11:01:42.217 6300 TIP 443296 1426 6111260 2024-02-29 11:03:51.718 2024-02-29 11:03:51.718 500 FEE 442313 1433 6111261 2024-02-29 11:03:51.718 2024-02-29 11:03:51.718 4500 TIP 442313 18518 6111270 2024-02-29 11:04:17.162 2024-02-29 11:04:17.162 1000 FEE 443305 18446 6111271 2024-02-29 11:04:17.221 2024-02-29 11:04:17.221 20000 FEE 443306 21395 6111282 2024-02-29 11:05:06.171 2024-02-29 11:05:06.171 1000 FEE 443308 6594 6111284 2024-02-29 11:06:00.383 2024-02-29 11:06:00.383 1000 FEE 443302 16347 6111285 2024-02-29 11:06:00.383 2024-02-29 11:06:00.383 9000 TIP 443302 3979 6111302 2024-02-29 11:08:00.569 2024-02-29 11:08:00.569 2100 FEE 443293 9365 6111303 2024-02-29 11:08:00.569 2024-02-29 11:08:00.569 18900 TIP 443293 6041 6111305 2024-02-29 11:08:05.382 2024-02-29 11:08:05.382 10000 FEE 443312 2674 6111315 2024-02-29 11:08:52.295 2024-02-29 11:08:52.295 1000 FEE 443313 19910 6111322 2024-02-29 11:10:55.677 2024-02-29 11:10:55.677 0 FEE 443315 20222 6111324 2024-02-29 11:11:24.007 2024-02-29 11:11:24.007 1000 FEE 443316 20464 6111350 2024-02-29 11:17:08.65 2024-02-29 11:17:08.65 800 FEE 443296 20826 6111351 2024-02-29 11:17:08.65 2024-02-29 11:17:08.65 7200 TIP 443296 20555 6111355 2024-02-29 11:17:47.367 2024-02-29 11:17:47.367 6900 FEE 443311 10283 6111356 2024-02-29 11:17:47.367 2024-02-29 11:17:47.367 62100 TIP 443311 1712 6111373 2024-02-29 11:21:08.314 2024-02-29 11:21:08.314 1000 FEE 443228 18473 6111374 2024-02-29 11:21:08.314 2024-02-29 11:21:08.314 9000 TIP 443228 17673 6111398 2024-02-29 11:26:26.741 2024-02-29 11:26:26.741 21000 FEE 443332 891 6111399 2024-02-29 11:26:26.741 2024-02-29 11:26:26.741 189000 TIP 443332 20187 6111403 2024-02-29 11:26:34.489 2024-02-29 11:26:34.489 100 FEE 428021 14271 6111404 2024-02-29 11:26:34.489 2024-02-29 11:26:34.489 900 TIP 428021 21287 6111423 2024-02-29 11:27:03.88 2024-02-29 11:27:03.88 1000 FEE 443336 10398 6111438 2024-02-29 11:27:51.288 2024-02-29 11:27:51.288 1000 FEE 443337 7389 6111468 2024-02-29 11:34:52.674 2024-02-29 11:34:52.674 1000 FEE 443342 6419 6111470 2024-02-29 11:35:45.15 2024-02-29 11:35:45.15 100000 FEE 443343 10102 6111476 2024-02-29 11:36:42.627 2024-02-29 11:36:42.627 1000 FEE 443197 981 6111477 2024-02-29 11:36:42.627 2024-02-29 11:36:42.627 9000 TIP 443197 704 6111478 2024-02-29 11:36:58.152 2024-02-29 11:36:58.152 1000 FEE 443164 9378 6111479 2024-02-29 11:36:58.152 2024-02-29 11:36:58.152 9000 TIP 443164 20852 6111538 2024-02-29 11:43:25.595 2024-02-29 11:43:25.595 2800 FEE 442854 3990 6111539 2024-02-29 11:43:25.595 2024-02-29 11:43:25.595 25200 TIP 442854 716 6111543 2024-02-29 11:44:45.823 2024-02-29 11:44:45.823 5000 FEE 442751 19576 6111544 2024-02-29 11:44:45.823 2024-02-29 11:44:45.823 45000 TIP 442751 6335 6111568 2024-02-29 11:46:15.585 2024-02-29 11:46:15.585 1300 FEE 443319 12245 6111569 2024-02-29 11:46:15.585 2024-02-29 11:46:15.585 11700 TIP 443319 20222 6111576 2024-02-29 11:46:16.381 2024-02-29 11:46:16.381 1300 FEE 443319 19967 6111577 2024-02-29 11:46:16.381 2024-02-29 11:46:16.381 11700 TIP 443319 787 6111590 2024-02-29 11:46:17.506 2024-02-29 11:46:17.506 1300 FEE 443319 21506 6111591 2024-02-29 11:46:17.506 2024-02-29 11:46:17.506 11700 TIP 443319 10393 6111645 2024-02-29 11:47:46.732 2024-02-29 11:47:46.732 1000 FEE 443296 2963 6111646 2024-02-29 11:47:46.732 2024-02-29 11:47:46.732 9000 TIP 443296 8926 6110574 2024-02-29 09:37:02.958 2024-02-29 09:37:02.958 1000 STREAM 141924 1173 6110579 2024-02-29 09:38:02.954 2024-02-29 09:38:02.954 1000 STREAM 141924 2204 6110588 2024-02-29 09:41:02.944 2024-02-29 09:41:02.944 1000 STREAM 141924 18040 6110593 2024-02-29 09:43:02.941 2024-02-29 09:43:02.941 1000 STREAM 141924 20337 6110600 2024-02-29 09:45:02.957 2024-02-29 09:45:02.957 1000 STREAM 141924 21062 6110623 2024-02-29 09:51:03.537 2024-02-29 09:51:03.537 1000 STREAM 141924 9349 6110665 2024-02-29 09:54:03.549 2024-02-29 09:54:03.549 1000 STREAM 141924 6798 6110642 2024-02-29 09:53:48.01 2024-02-29 09:53:48.01 1000 FEE 443237 20990 6110643 2024-02-29 09:53:49.355 2024-02-29 09:53:49.355 1000 FEE 442084 21563 6110644 2024-02-29 09:53:49.355 2024-02-29 09:53:49.355 9000 TIP 442084 8985 6110645 2024-02-29 09:53:50.25 2024-02-29 09:53:50.25 1000 FEE 442820 2232 6110646 2024-02-29 09:53:50.25 2024-02-29 09:53:50.25 9000 TIP 442820 10719 6110653 2024-02-29 09:53:51.923 2024-02-29 09:53:51.923 1000 FEE 442751 20220 6110654 2024-02-29 09:53:51.923 2024-02-29 09:53:51.923 9000 TIP 442751 17365 6110666 2024-02-29 09:54:05.605 2024-02-29 09:54:05.605 1000 FEE 442710 641 6110667 2024-02-29 09:54:05.605 2024-02-29 09:54:05.605 9000 TIP 442710 20546 6110674 2024-02-29 09:54:10.441 2024-02-29 09:54:10.441 1000 FEE 442065 19147 6110675 2024-02-29 09:54:10.441 2024-02-29 09:54:10.441 9000 TIP 442065 21216 6110711 2024-02-29 09:54:28.083 2024-02-29 09:54:28.083 1000 FEE 443187 16680 6110712 2024-02-29 09:54:28.083 2024-02-29 09:54:28.083 9000 TIP 443187 15052 6110717 2024-02-29 09:54:29.474 2024-02-29 09:54:29.474 1000 FEE 443179 16834 6110718 2024-02-29 09:54:29.474 2024-02-29 09:54:29.474 9000 TIP 443179 17552 6110739 2024-02-29 09:54:35.627 2024-02-29 09:54:35.627 6900 FEE 441830 21051 6110740 2024-02-29 09:54:35.627 2024-02-29 09:54:35.627 62100 TIP 441830 18995 6110757 2024-02-29 09:57:24.452 2024-02-29 09:57:24.452 2000 FEE 443212 5538 6110758 2024-02-29 09:57:24.452 2024-02-29 09:57:24.452 18000 TIP 443212 2156 6110770 2024-02-29 09:58:27.905 2024-02-29 09:58:27.905 2100 FEE 443237 14122 6110771 2024-02-29 09:58:27.905 2024-02-29 09:58:27.905 18900 TIP 443237 19890 6110772 2024-02-29 09:58:38.009 2024-02-29 09:58:38.009 100 FEE 443169 18625 6110773 2024-02-29 09:58:38.009 2024-02-29 09:58:38.009 900 TIP 443169 9333 6110789 2024-02-29 10:00:37.216 2024-02-29 10:00:37.216 1000 FEE 442904 20745 6110790 2024-02-29 10:00:37.216 2024-02-29 10:00:37.216 9000 TIP 442904 746 6110791 2024-02-29 10:00:40.296 2024-02-29 10:00:40.296 1000 FEE 443011 21060 6110792 2024-02-29 10:00:40.296 2024-02-29 10:00:40.296 9000 TIP 443011 18865 6110795 2024-02-29 10:00:47.563 2024-02-29 10:00:47.563 1000 FEE 442710 19622 6110796 2024-02-29 10:00:47.563 2024-02-29 10:00:47.563 9000 TIP 442710 20377 6110664 2024-02-29 09:54:02.115 2024-02-29 09:54:02.115 9000 TIP 442982 19335 6110684 2024-02-29 09:54:20.472 2024-02-29 09:54:20.472 1000 FEE 442978 16289 6110685 2024-02-29 09:54:20.472 2024-02-29 09:54:20.472 9000 TIP 442978 20291 6110692 2024-02-29 09:54:24.984 2024-02-29 09:54:24.984 1000 FEE 443199 19537 6110693 2024-02-29 09:54:24.984 2024-02-29 09:54:24.984 9000 TIP 443199 20861 6110696 2024-02-29 09:54:25.683 2024-02-29 09:54:25.683 1000 FEE 443198 1773 6110697 2024-02-29 09:54:25.683 2024-02-29 09:54:25.683 9000 TIP 443198 19132 6110704 2024-02-29 09:54:26.753 2024-02-29 09:54:26.753 1000 FEE 443197 6749 6110705 2024-02-29 09:54:26.753 2024-02-29 09:54:26.753 9000 TIP 443197 15103 6110727 2024-02-29 09:54:31.682 2024-02-29 09:54:31.682 1000 FEE 443170 11395 6110728 2024-02-29 09:54:31.682 2024-02-29 09:54:31.682 9000 TIP 443170 21242 6110749 2024-02-29 09:55:40.525 2024-02-29 09:55:40.525 800 FEE 443169 6533 6110750 2024-02-29 09:55:40.525 2024-02-29 09:55:40.525 7200 TIP 443169 15049 6110761 2024-02-29 09:57:28.934 2024-02-29 09:57:28.934 5000 FEE 443100 21119 6110762 2024-02-29 09:57:28.934 2024-02-29 09:57:28.934 45000 TIP 443100 925 6110775 2024-02-29 10:00:00.297 2024-02-29 10:00:00.297 1000 FEE 443241 21271 6110779 2024-02-29 10:00:08.889 2024-02-29 10:00:08.889 1000 FEE 443198 708 6110780 2024-02-29 10:00:08.889 2024-02-29 10:00:08.889 9000 TIP 443198 3417 6110808 2024-02-29 10:01:11.881 2024-02-29 10:01:11.881 10000 FEE 443234 17523 6110809 2024-02-29 10:01:11.881 2024-02-29 10:01:11.881 90000 TIP 443234 20904 6110819 2024-02-29 10:01:46.213 2024-02-29 10:01:46.213 2100 FEE 443236 16353 6110820 2024-02-29 10:01:46.213 2024-02-29 10:01:46.213 18900 TIP 443236 19812 6110828 2024-02-29 10:02:23.516 2024-02-29 10:02:23.516 1000 FEE 443244 18372 6110829 2024-02-29 10:02:42.045 2024-02-29 10:02:42.045 10000 FEE 443238 12272 6110830 2024-02-29 10:02:42.045 2024-02-29 10:02:42.045 90000 TIP 443238 21393 6110860 2024-02-29 10:04:36.087 2024-02-29 10:04:36.087 1000 FEE 443249 20433 6110861 2024-02-29 10:04:37.079 2024-02-29 10:04:37.079 1000 FEE 443223 19943 6110862 2024-02-29 10:04:37.079 2024-02-29 10:04:37.079 9000 TIP 443223 21522 6110886 2024-02-29 10:05:49.535 2024-02-29 10:05:49.535 1000 FEE 442106 20715 6110887 2024-02-29 10:05:49.535 2024-02-29 10:05:49.535 9000 TIP 442106 6191 6110889 2024-02-29 10:06:02.56 2024-02-29 10:06:02.56 1000 FEE 443197 4763 6110890 2024-02-29 10:06:02.56 2024-02-29 10:06:02.56 9000 TIP 443197 1478 6110908 2024-02-29 10:07:03.92 2024-02-29 10:07:03.92 2000 FEE 442892 20251 6110909 2024-02-29 10:07:03.92 2024-02-29 10:07:03.92 18000 TIP 442892 18904 6110912 2024-02-29 10:07:05.848 2024-02-29 10:07:05.848 1000 FEE 442556 1718 6110913 2024-02-29 10:07:05.848 2024-02-29 10:07:05.848 9000 TIP 442556 20523 6110919 2024-02-29 10:07:33.42 2024-02-29 10:07:33.42 1000 FEE 443256 20231 6110932 2024-02-29 10:07:58.83 2024-02-29 10:07:58.83 1000 FEE 442710 21012 6110933 2024-02-29 10:07:58.83 2024-02-29 10:07:58.83 9000 TIP 442710 889 6110935 2024-02-29 10:08:06.762 2024-02-29 10:08:06.762 1000 POLL 442163 4654 6110981 2024-02-29 10:11:47.285 2024-02-29 10:11:47.285 15000 FEE 443261 20892 6110982 2024-02-29 10:11:47.738 2024-02-29 10:11:47.738 6900 FEE 442358 20301 6110983 2024-02-29 10:11:47.738 2024-02-29 10:11:47.738 62100 TIP 442358 21469 6110993 2024-02-29 10:12:41.832 2024-02-29 10:12:41.832 2100 FEE 442786 16816 6110994 2024-02-29 10:12:41.832 2024-02-29 10:12:41.832 18900 TIP 442786 18040 6111001 2024-02-29 10:13:11.944 2024-02-29 10:13:11.944 2100 FEE 442325 17392 6111002 2024-02-29 10:13:11.944 2024-02-29 10:13:11.944 18900 TIP 442325 4323 6111052 2024-02-29 10:26:33.631 2024-02-29 10:26:33.631 1000 FEE 443266 10530 6111053 2024-02-29 10:26:33.631 2024-02-29 10:26:33.631 9000 TIP 443266 21585 6111078 2024-02-29 10:29:17.084 2024-02-29 10:29:17.084 100 FEE 442478 5359 6111079 2024-02-29 10:29:17.084 2024-02-29 10:29:17.084 900 TIP 442478 18068 6111094 2024-02-29 10:31:57.633 2024-02-29 10:31:57.633 10000 FEE 443260 7899 6111095 2024-02-29 10:31:57.633 2024-02-29 10:31:57.633 90000 TIP 443260 18543 6111110 2024-02-29 10:35:42.623 2024-02-29 10:35:42.623 1000 FEE 443274 9985 6111111 2024-02-29 10:35:42.623 2024-02-29 10:35:42.623 9000 TIP 443274 16329 6111123 2024-02-29 10:37:54.925 2024-02-29 10:37:54.925 1000 FEE 443277 2264 6111124 2024-02-29 10:37:54.925 2024-02-29 10:37:54.925 9000 TIP 443277 13587 6111141 2024-02-29 10:43:15.052 2024-02-29 10:43:15.052 1000 POLL 442751 20254 6111157 2024-02-29 10:46:15.888 2024-02-29 10:46:15.888 2100 FEE 443266 20059 6111158 2024-02-29 10:46:15.888 2024-02-29 10:46:15.888 18900 TIP 443266 4654 6111169 2024-02-29 10:47:27.81 2024-02-29 10:47:27.81 1000 FEE 443283 13763 6111183 2024-02-29 10:50:08.456 2024-02-29 10:50:08.456 1000 FEE 443286 19471 6111219 2024-02-29 10:58:25.214 2024-02-29 10:58:25.214 1000 FEE 443294 14959 6111231 2024-02-29 11:00:27.984 2024-02-29 11:00:27.984 1000 FEE 443297 17541 6111248 2024-02-29 11:01:48.623 2024-02-29 11:01:48.623 0 FEE 443299 16289 6111266 2024-02-29 11:04:02.045 2024-02-29 11:04:02.045 1000 FEE 443302 4048 6111279 2024-02-29 11:04:57.088 2024-02-29 11:04:57.088 1000 FEE 443286 13055 6111280 2024-02-29 11:04:57.088 2024-02-29 11:04:57.088 9000 TIP 443286 2576 6111298 2024-02-29 11:08:00.079 2024-02-29 11:08:00.079 1000 FEE 443308 12965 6111299 2024-02-29 11:08:00.079 2024-02-29 11:08:00.079 9000 TIP 443308 11298 6111306 2024-02-29 11:08:22.655 2024-02-29 11:08:22.655 2100 FEE 443290 10668 6111307 2024-02-29 11:08:22.655 2024-02-29 11:08:22.655 18900 TIP 443290 1603 6111313 2024-02-29 11:08:47.236 2024-02-29 11:08:47.236 5000 FEE 442628 20090 6111314 2024-02-29 11:08:47.236 2024-02-29 11:08:47.236 45000 TIP 442628 19449 6111386 2024-02-29 11:24:44.345 2024-02-29 11:24:44.345 5700 FEE 443274 19796 6111387 2024-02-29 11:24:44.345 2024-02-29 11:24:44.345 51300 TIP 443274 2256 6111400 2024-02-29 11:26:26.876 2024-02-29 11:26:26.876 3200 FEE 443330 21506 6111401 2024-02-29 11:26:26.876 2024-02-29 11:26:26.876 28800 TIP 443330 10821 6111406 2024-02-29 11:26:45.012 2024-02-29 11:26:45.012 100 FEE 443321 18368 6111407 2024-02-29 11:26:45.012 2024-02-29 11:26:45.012 900 TIP 443321 4521 6111408 2024-02-29 11:26:45.32 2024-02-29 11:26:45.32 100 FEE 443321 18678 6111409 2024-02-29 11:26:45.32 2024-02-29 11:26:45.32 900 TIP 443321 20464 6111444 2024-02-29 11:28:25.228 2024-02-29 11:28:25.228 1100 FEE 443300 8423 6111445 2024-02-29 11:28:25.228 2024-02-29 11:28:25.228 9900 TIP 443300 18945 6111452 2024-02-29 11:30:32.987 2024-02-29 11:30:32.987 1000 FEE 443340 13174 6111510 2024-02-29 11:42:09.808 2024-02-29 11:42:09.808 5000 FEE 442313 18494 6111511 2024-02-29 11:42:09.808 2024-02-29 11:42:09.808 45000 TIP 442313 15146 6111514 2024-02-29 11:42:10.322 2024-02-29 11:42:10.322 5000 FEE 442313 19459 6111515 2024-02-29 11:42:10.322 2024-02-29 11:42:10.322 45000 TIP 442313 2088 6111525 2024-02-29 11:43:01.748 2024-02-29 11:43:01.748 5000 FEE 442399 20301 6111526 2024-02-29 11:43:01.748 2024-02-29 11:43:01.748 45000 TIP 442399 6361 6111530 2024-02-29 11:43:07.317 2024-02-29 11:43:07.317 1000 FEE 443350 18101 6111584 2024-02-29 11:46:17.028 2024-02-29 11:46:17.028 1300 FEE 443319 14791 6111585 2024-02-29 11:46:17.028 2024-02-29 11:46:17.028 11700 TIP 443319 9036 6111610 2024-02-29 11:46:19.392 2024-02-29 11:46:19.392 1300 FEE 443319 1602 6111611 2024-02-29 11:46:19.392 2024-02-29 11:46:19.392 11700 TIP 443319 4654 6111638 2024-02-29 11:47:05.389 2024-02-29 11:47:05.389 1000 FEE 443355 21427 6111684 2024-02-29 11:52:03.147 2024-02-29 11:52:03.147 10000 FEE 443359 21417 6111693 2024-02-29 11:54:14.993 2024-02-29 11:54:14.993 3200 FEE 443354 11670 6111694 2024-02-29 11:54:14.993 2024-02-29 11:54:14.993 28800 TIP 443354 4819 6111718 2024-02-29 12:01:42.615 2024-02-29 12:01:42.615 2100 FEE 443336 10771 6111719 2024-02-29 12:01:42.615 2024-02-29 12:01:42.615 18900 TIP 443336 8385 6111759 2024-02-29 12:08:22.852 2024-02-29 12:08:22.852 1000 FEE 443365 20525 6111760 2024-02-29 12:08:22.852 2024-02-29 12:08:22.852 9000 TIP 443365 14795 6111771 2024-02-29 12:10:55.042 2024-02-29 12:10:55.042 1000 FEE 443373 16594 6111825 2024-02-29 12:23:31.635 2024-02-29 12:23:31.635 1000 FEE 443338 17082 6110694 2024-02-29 09:54:25.518 2024-02-29 09:54:25.518 1000 FEE 443198 1064 6110695 2024-02-29 09:54:25.518 2024-02-29 09:54:25.518 9000 TIP 443198 13753 6110702 2024-02-29 09:54:26.605 2024-02-29 09:54:26.605 1000 FEE 443197 5776 6110703 2024-02-29 09:54:26.605 2024-02-29 09:54:26.605 9000 TIP 443197 3990 6110706 2024-02-29 09:54:26.857 2024-02-29 09:54:26.857 1000 FEE 443238 18051 6110707 2024-02-29 09:54:27.309 2024-02-29 09:54:27.309 1000 FEE 443189 2204 6110708 2024-02-29 09:54:27.309 2024-02-29 09:54:27.309 9000 TIP 443189 14657 6110709 2024-02-29 09:54:27.832 2024-02-29 09:54:27.832 1000 FEE 443187 1495 6110710 2024-02-29 09:54:27.832 2024-02-29 09:54:27.832 9000 TIP 443187 770 6110713 2024-02-29 09:54:28.863 2024-02-29 09:54:28.863 1000 FEE 443186 8326 6110714 2024-02-29 09:54:28.863 2024-02-29 09:54:28.863 9000 TIP 443186 17166 6110721 2024-02-29 09:54:30.76 2024-02-29 09:54:30.76 100 FEE 443185 19506 6110722 2024-02-29 09:54:30.76 2024-02-29 09:54:30.76 900 TIP 443185 21329 6110751 2024-02-29 09:55:51.199 2024-02-29 09:55:51.199 100 FEE 443228 17602 6110752 2024-02-29 09:55:51.199 2024-02-29 09:55:51.199 900 TIP 443228 4115 6110759 2024-02-29 09:57:26.286 2024-02-29 09:57:26.286 1100 FEE 443099 21148 6110760 2024-02-29 09:57:26.286 2024-02-29 09:57:26.286 9900 TIP 443099 11491 6110763 2024-02-29 09:58:00.791 2024-02-29 09:58:00.791 300 FEE 443182 20156 6110764 2024-02-29 09:58:00.791 2024-02-29 09:58:00.791 2700 TIP 443182 8664 6110768 2024-02-29 09:58:24.45 2024-02-29 09:58:24.45 2100 FEE 443228 18119 6110769 2024-02-29 09:58:24.45 2024-02-29 09:58:24.45 18900 TIP 443228 2952 6110797 2024-02-29 10:00:48.598 2024-02-29 10:00:48.598 21000 DONT_LIKE_THIS 443241 19668 6110807 2024-02-29 10:01:08.851 2024-02-29 10:01:08.851 1000 FEE 443242 7966 6110814 2024-02-29 10:01:19.372 2024-02-29 10:01:19.372 10000 FEE 443226 19906 6110815 2024-02-29 10:01:19.372 2024-02-29 10:01:19.372 90000 TIP 443226 21051 6110817 2024-02-29 10:01:23.845 2024-02-29 10:01:23.845 2100 FEE 443228 21627 6110818 2024-02-29 10:01:23.845 2024-02-29 10:01:23.845 18900 TIP 443228 16633 6110850 2024-02-29 10:04:01.361 2024-02-29 10:04:01.361 1000 FEE 443192 16809 6110851 2024-02-29 10:04:01.361 2024-02-29 10:04:01.361 9000 TIP 443192 21047 6110859 2024-02-29 10:04:32.881 2024-02-29 10:04:32.881 1000 FEE 443248 18680 6110868 2024-02-29 10:05:15.772 2024-02-29 10:05:15.772 1000 FEE 443250 15938 6110876 2024-02-29 10:05:25.44 2024-02-29 10:05:25.44 1000 FEE 442084 2101 6110877 2024-02-29 10:05:25.44 2024-02-29 10:05:25.44 9000 TIP 442084 1273 6110878 2024-02-29 10:05:25.554 2024-02-29 10:05:25.554 1000 FEE 442084 2775 6110879 2024-02-29 10:05:25.554 2024-02-29 10:05:25.554 9000 TIP 442084 18809 6110924 2024-02-29 10:07:46.928 2024-02-29 10:07:46.928 1000 FEE 442982 18225 6110925 2024-02-29 10:07:46.928 2024-02-29 10:07:46.928 9000 TIP 442982 21365 6110945 2024-02-29 10:08:25.839 2024-02-29 10:08:25.839 6900 FEE 442215 21164 6110946 2024-02-29 10:08:25.839 2024-02-29 10:08:25.839 62100 TIP 442215 21437 6110953 2024-02-29 10:09:11.863 2024-02-29 10:09:11.863 100 FEE 443251 4035 6110954 2024-02-29 10:09:11.863 2024-02-29 10:09:11.863 900 TIP 443251 21343 6110958 2024-02-29 10:10:28.452 2024-02-29 10:10:28.452 2100 FEE 442092 1652 6110959 2024-02-29 10:10:28.452 2024-02-29 10:10:28.452 18900 TIP 442092 6260 6110962 2024-02-29 10:10:30.983 2024-02-29 10:10:30.983 2100 FEE 442108 4798 6110963 2024-02-29 10:10:30.983 2024-02-29 10:10:30.983 18900 TIP 442108 18556 6110968 2024-02-29 10:10:36.737 2024-02-29 10:10:36.737 2100 FEE 442159 17124 6110969 2024-02-29 10:10:36.737 2024-02-29 10:10:36.737 18900 TIP 442159 12483 6110972 2024-02-29 10:10:41.201 2024-02-29 10:10:41.201 2100 FEE 441959 20802 6110973 2024-02-29 10:10:41.201 2024-02-29 10:10:41.201 18900 TIP 441959 1751 6110998 2024-02-29 10:13:02.994 2024-02-29 10:13:02.994 2100 FEE 442793 20969 6110999 2024-02-29 10:13:02.994 2024-02-29 10:13:02.994 18900 TIP 442793 19132 6111034 2024-02-29 10:25:23.308 2024-02-29 10:25:23.308 2100 FEE 443266 11073 6111035 2024-02-29 10:25:23.308 2024-02-29 10:25:23.308 18900 TIP 443266 19976 6111054 2024-02-29 10:26:46.618 2024-02-29 10:26:46.618 2100 FEE 443178 20272 6111055 2024-02-29 10:26:46.618 2024-02-29 10:26:46.618 18900 TIP 443178 21040 6111064 2024-02-29 10:26:55.144 2024-02-29 10:26:55.144 2100 FEE 442982 19662 6111065 2024-02-29 10:26:55.144 2024-02-29 10:26:55.144 18900 TIP 442982 20500 6111072 2024-02-29 10:29:15.619 2024-02-29 10:29:15.619 100 FEE 442478 2437 6111073 2024-02-29 10:29:15.619 2024-02-29 10:29:15.619 900 TIP 442478 5557 6111099 2024-02-29 10:33:10.29 2024-02-29 10:33:10.29 10000 FEE 443183 733 6111100 2024-02-29 10:33:10.29 2024-02-29 10:33:10.29 90000 TIP 443183 20500 6111119 2024-02-29 10:37:28.267 2024-02-29 10:37:28.267 100 FEE 443277 21357 6111120 2024-02-29 10:37:28.267 2024-02-29 10:37:28.267 900 TIP 443277 21262 6111170 2024-02-29 10:47:46.393 2024-02-29 10:47:46.393 2100 FEE 443282 19037 6111171 2024-02-29 10:47:46.393 2024-02-29 10:47:46.393 18900 TIP 443282 21343 6111185 2024-02-29 10:50:45.176 2024-02-29 10:50:45.176 17000 FEE 443288 1881 6111190 2024-02-29 10:51:15.005 2024-02-29 10:51:15.005 1000 FEE 443290 1488 6111229 2024-02-29 11:00:25.462 2024-02-29 11:00:25.462 100000 FEE 443192 21040 6111230 2024-02-29 11:00:25.462 2024-02-29 11:00:25.462 900000 TIP 443192 18449 6111233 2024-02-29 11:00:58.632 2024-02-29 11:00:58.632 1000 FEE 443299 18819 6111242 2024-02-29 11:01:40.293 2024-02-29 11:01:40.293 700 FEE 443297 5069 6111243 2024-02-29 11:01:40.293 2024-02-29 11:01:40.293 6300 TIP 443297 14169 6111250 2024-02-29 11:02:25.558 2024-02-29 11:02:25.558 0 FEE 443294 19732 6111258 2024-02-29 11:03:44.638 2024-02-29 11:03:44.638 1000 FEE 443300 20680 6111289 2024-02-29 11:06:36.646 2024-02-29 11:06:36.646 1000 FEE 443310 16867 6111312 2024-02-29 11:08:38.67 2024-02-29 11:08:38.67 0 FEE 443300 20430 6111317 2024-02-29 11:09:07.036 2024-02-29 11:09:07.036 1000 FEE 443314 15833 6111320 2024-02-29 11:10:16.541 2024-02-29 11:10:16.541 5700 FEE 443310 3706 6111321 2024-02-29 11:10:16.541 2024-02-29 11:10:16.541 51300 TIP 443310 19105 6111345 2024-02-29 11:16:18.657 2024-02-29 11:16:18.657 1000 FEE 443321 2098 6111352 2024-02-29 11:17:13.761 2024-02-29 11:17:13.761 800 FEE 443297 21503 6111353 2024-02-29 11:17:13.761 2024-02-29 11:17:13.761 7200 TIP 443297 16126 6111358 2024-02-29 11:17:58.078 2024-02-29 11:17:58.078 1000 FEE 443325 18235 6111367 2024-02-29 11:19:25.93 2024-02-29 11:19:25.93 1000 FEE 443327 2213 6111369 2024-02-29 11:20:07.014 2024-02-29 11:20:07.014 1000 FEE 443328 7553 6111397 2024-02-29 11:26:24.221 2024-02-29 11:26:24.221 1000 FEE 443335 13076 6111412 2024-02-29 11:26:45.765 2024-02-29 11:26:45.765 100 FEE 443321 5444 6111413 2024-02-29 11:26:45.765 2024-02-29 11:26:45.765 900 TIP 443321 19243 6111416 2024-02-29 11:26:46.108 2024-02-29 11:26:46.108 100 FEE 443321 1712 6111417 2024-02-29 11:26:46.108 2024-02-29 11:26:46.108 900 TIP 443321 15049 6111474 2024-02-29 11:36:23.528 2024-02-29 11:36:23.528 5000 FEE 443268 1567 6111475 2024-02-29 11:36:23.528 2024-02-29 11:36:23.528 45000 TIP 443268 16212 6111481 2024-02-29 11:37:15.103 2024-02-29 11:37:15.103 1000 FEE 443336 9551 6111482 2024-02-29 11:37:15.103 2024-02-29 11:37:15.103 9000 TIP 443336 10536 6111484 2024-02-29 11:38:00.674 2024-02-29 11:38:00.674 1000 FEE 443329 5306 6110744 2024-02-29 09:55:03.553 2024-02-29 09:55:03.553 1000 STREAM 141924 11038 6110755 2024-02-29 09:56:03.56 2024-02-29 09:56:03.56 1000 STREAM 141924 6382 6110765 2024-02-29 09:58:03.571 2024-02-29 09:58:03.571 1000 STREAM 141924 21562 6110774 2024-02-29 09:59:03.578 2024-02-29 09:59:03.578 1000 STREAM 141924 9378 6110778 2024-02-29 10:00:03.58 2024-02-29 10:00:03.58 1000 STREAM 141924 20168 6110804 2024-02-29 10:01:03.588 2024-02-29 10:01:03.588 1000 STREAM 141924 10007 6110852 2024-02-29 10:04:03.595 2024-02-29 10:04:03.595 1000 STREAM 141924 20730 6110907 2024-02-29 10:07:03.605 2024-02-29 10:07:03.605 1000 STREAM 141924 9552 6110934 2024-02-29 10:08:03.614 2024-02-29 10:08:03.614 1000 STREAM 141924 2460 6110952 2024-02-29 10:09:03.609 2024-02-29 10:09:03.609 1000 STREAM 141924 717 6110955 2024-02-29 10:10:03.619 2024-02-29 10:10:03.619 1000 STREAM 141924 1609 6110987 2024-02-29 10:12:03.614 2024-02-29 10:12:03.614 1000 STREAM 141924 13046 6111000 2024-02-29 10:13:03.623 2024-02-29 10:13:03.623 1000 STREAM 141924 21060 6111010 2024-02-29 10:16:03.63 2024-02-29 10:16:03.63 1000 STREAM 141924 2022 6111027 2024-02-29 10:24:03.637 2024-02-29 10:24:03.637 1000 STREAM 141924 20143 6111033 2024-02-29 10:25:03.644 2024-02-29 10:25:03.644 1000 STREAM 141924 13587 6111046 2024-02-29 10:26:03.649 2024-02-29 10:26:03.649 1000 STREAM 141924 20993 6111068 2024-02-29 10:27:03.652 2024-02-29 10:27:03.652 1000 STREAM 141924 17316 6111071 2024-02-29 10:29:03.688 2024-02-29 10:29:03.688 1000 STREAM 141924 19038 6111118 2024-02-29 10:37:03.767 2024-02-29 10:37:03.767 1000 STREAM 141924 13398 6111201 2024-02-29 10:54:03.838 2024-02-29 10:54:03.838 1000 STREAM 141924 12708 6111218 2024-02-29 10:58:03.838 2024-02-29 10:58:03.838 1000 STREAM 141924 9355 6111224 2024-02-29 10:59:03.841 2024-02-29 10:59:03.841 1000 STREAM 141924 15938 6110798 2024-02-29 10:01:00.395 2024-02-29 10:01:00.395 1000 FEE 442982 9341 6110799 2024-02-29 10:01:00.395 2024-02-29 10:01:00.395 9000 TIP 442982 19333 6110810 2024-02-29 10:01:14.525 2024-02-29 10:01:14.525 10000 FEE 443223 2431 6110811 2024-02-29 10:01:14.525 2024-02-29 10:01:14.525 90000 TIP 443223 7553 6110836 2024-02-29 10:03:01.135 2024-02-29 10:03:01.135 6900 FEE 442561 21401 6110837 2024-02-29 10:03:01.135 2024-02-29 10:03:01.135 62100 TIP 442561 15463 6110857 2024-02-29 10:04:25.718 2024-02-29 10:04:25.718 2100 FEE 442556 21421 6110858 2024-02-29 10:04:25.718 2024-02-29 10:04:25.718 18900 TIP 442556 2681 6110869 2024-02-29 10:05:18.126 2024-02-29 10:05:18.126 1000 FEE 443234 21157 6110870 2024-02-29 10:05:18.126 2024-02-29 10:05:18.126 9000 TIP 443234 18511 6110874 2024-02-29 10:05:25.217 2024-02-29 10:05:25.217 1000 FEE 442084 19839 6110875 2024-02-29 10:05:25.217 2024-02-29 10:05:25.217 9000 TIP 442084 17891 6110900 2024-02-29 10:06:29.962 2024-02-29 10:06:29.962 1000 FEE 441843 17212 6110901 2024-02-29 10:06:29.962 2024-02-29 10:06:29.962 9000 TIP 441843 20594 6110902 2024-02-29 10:06:30.134 2024-02-29 10:06:30.134 1000 FEE 441843 1064 6110903 2024-02-29 10:06:30.134 2024-02-29 10:06:30.134 9000 TIP 441843 13753 6110904 2024-02-29 10:06:30.589 2024-02-29 10:06:30.589 1000 FEE 441843 18472 6110905 2024-02-29 10:06:30.589 2024-02-29 10:06:30.589 9000 TIP 441843 1534 6110920 2024-02-29 10:07:35.132 2024-02-29 10:07:35.132 1000 FEE 442904 886 6110921 2024-02-29 10:07:35.132 2024-02-29 10:07:35.132 9000 TIP 442904 21194 6110922 2024-02-29 10:07:46.756 2024-02-29 10:07:46.756 1000 FEE 442982 5775 6110923 2024-02-29 10:07:46.756 2024-02-29 10:07:46.756 9000 TIP 442982 4487 6110928 2024-02-29 10:07:47.24 2024-02-29 10:07:47.24 1000 FEE 442982 21083 6110929 2024-02-29 10:07:47.24 2024-02-29 10:07:47.24 9000 TIP 442982 8570 6110948 2024-02-29 10:08:54.924 2024-02-29 10:08:54.924 1000 FEE 441699 16542 6110949 2024-02-29 10:08:54.924 2024-02-29 10:08:54.924 9000 TIP 441699 20539 6110950 2024-02-29 10:08:58.085 2024-02-29 10:08:58.085 1000 FEE 441529 14122 6110951 2024-02-29 10:08:58.085 2024-02-29 10:08:58.085 9000 TIP 441529 16939 6110960 2024-02-29 10:10:29.278 2024-02-29 10:10:29.278 2100 FEE 442099 2963 6110961 2024-02-29 10:10:29.278 2024-02-29 10:10:29.278 18900 TIP 442099 1483 6110978 2024-02-29 10:11:10.633 2024-02-29 10:11:10.633 1000 FEE 443260 1611 6110991 2024-02-29 10:12:08.081 2024-02-29 10:12:08.081 2100 FEE 442781 1584 6110992 2024-02-29 10:12:08.081 2024-02-29 10:12:08.081 18900 TIP 442781 16149 6111047 2024-02-29 10:26:04.748 2024-02-29 10:26:04.748 5700 FEE 443129 20257 6111048 2024-02-29 10:26:04.748 2024-02-29 10:26:04.748 51300 TIP 443129 19148 6111060 2024-02-29 10:26:51.252 2024-02-29 10:26:51.252 2100 FEE 443129 19471 6111061 2024-02-29 10:26:51.252 2024-02-29 10:26:51.252 18900 TIP 443129 12819 6111080 2024-02-29 10:29:17.913 2024-02-29 10:29:17.913 100 FEE 442478 19638 6111081 2024-02-29 10:29:17.913 2024-02-29 10:29:17.913 900 TIP 442478 14688 6111089 2024-02-29 10:30:31.243 2024-02-29 10:30:31.243 21000 FEE 443272 2703 6111090 2024-02-29 10:30:57.825 2024-02-29 10:30:57.825 100 FEE 443272 16747 6111091 2024-02-29 10:30:57.825 2024-02-29 10:30:57.825 900 TIP 443272 822 6111135 2024-02-29 10:40:14.6 2024-02-29 10:40:14.6 0 FEE 443279 21349 6111153 2024-02-29 10:46:12.722 2024-02-29 10:46:12.722 2100 FEE 443129 11516 6111154 2024-02-29 10:46:12.722 2024-02-29 10:46:12.722 18900 TIP 443129 17838 6111180 2024-02-29 10:49:52.731 2024-02-29 10:49:52.731 1000 FEE 443284 5852 6111210 2024-02-29 10:56:11.061 2024-02-29 10:56:11.061 1000 FEE 443228 18072 6111211 2024-02-29 10:56:11.061 2024-02-29 10:56:11.061 9000 TIP 443228 1515 6111212 2024-02-29 10:56:21.36 2024-02-29 10:56:21.36 1000 FEE 443293 1003 6111214 2024-02-29 10:57:06.993 2024-02-29 10:57:06.993 1000 FEE 443105 2774 6111215 2024-02-29 10:57:06.993 2024-02-29 10:57:06.993 9000 TIP 443105 18543 6111225 2024-02-29 10:59:46.825 2024-02-29 10:59:46.825 0 FEE 443293 17411 6111228 2024-02-29 11:00:14.056 2024-02-29 11:00:14.056 0 FEE 443296 20454 6111275 2024-02-29 11:04:27.48 2024-02-29 11:04:27.48 1000 FEE 443304 20156 6111276 2024-02-29 11:04:27.48 2024-02-29 11:04:27.48 9000 TIP 443304 14552 6111290 2024-02-29 11:06:40.528 2024-02-29 11:06:40.528 6900 FEE 443302 18625 6111291 2024-02-29 11:06:40.528 2024-02-29 11:06:40.528 62100 TIP 443302 1620 6111297 2024-02-29 11:07:58.079 2024-02-29 11:07:58.079 0 FEE 443311 7899 6111300 2024-02-29 11:08:00.419 2024-02-29 11:08:00.419 1000 FEE 443308 20555 6111301 2024-02-29 11:08:00.419 2024-02-29 11:08:00.419 9000 TIP 443308 6384 6111332 2024-02-29 11:14:23.061 2024-02-29 11:14:23.061 1000 FEE 443317 1802 6111333 2024-02-29 11:14:23.061 2024-02-29 11:14:23.061 9000 TIP 443317 21275 6111334 2024-02-29 11:14:40.617 2024-02-29 11:14:40.617 1000 FEE 443318 21371 6111339 2024-02-29 11:15:19.33 2024-02-29 11:15:19.33 100 FEE 443319 7418 6111340 2024-02-29 11:15:19.33 2024-02-29 11:15:19.33 900 TIP 443319 8870 6111354 2024-02-29 11:17:18.016 2024-02-29 11:17:18.016 10000 FEE 443323 16717 6111376 2024-02-29 11:21:41.935 2024-02-29 11:21:41.935 5700 FEE 443328 10638 6111377 2024-02-29 11:21:41.935 2024-02-29 11:21:41.935 51300 TIP 443328 20776 6111402 2024-02-29 11:26:26.929 2024-02-29 11:26:26.929 0 FEE 443331 17392 6111414 2024-02-29 11:26:46.057 2024-02-29 11:26:46.057 5000 FEE 443280 18543 6111415 2024-02-29 11:26:46.057 2024-02-29 11:26:46.057 45000 TIP 443280 19153 6111420 2024-02-29 11:26:48.483 2024-02-29 11:26:48.483 5000 FEE 443281 21509 6111421 2024-02-29 11:26:48.483 2024-02-29 11:26:48.483 45000 TIP 443281 14080 6111456 2024-02-29 11:31:20.207 2024-02-29 11:31:20.207 10000 FEE 357403 910 6111457 2024-02-29 11:31:20.207 2024-02-29 11:31:20.207 90000 TIP 357403 18220 6111460 2024-02-29 11:33:10.312 2024-02-29 11:33:10.312 2100 FEE 443336 21588 6111461 2024-02-29 11:33:10.312 2024-02-29 11:33:10.312 18900 TIP 443336 21521 6111462 2024-02-29 11:33:55.003 2024-02-29 11:33:55.003 1000 FEE 443339 739 6111463 2024-02-29 11:33:55.003 2024-02-29 11:33:55.003 9000 TIP 443339 1291 6111472 2024-02-29 11:36:10.996 2024-02-29 11:36:10.996 1000 FEE 443303 14785 6111473 2024-02-29 11:36:10.996 2024-02-29 11:36:10.996 9000 TIP 443303 16848 6111483 2024-02-29 11:37:51.151 2024-02-29 11:37:51.151 1000 FEE 443344 18984 6111494 2024-02-29 11:39:09.73 2024-02-29 11:39:09.73 1000 FEE 443312 19121 6111495 2024-02-29 11:39:09.73 2024-02-29 11:39:09.73 9000 TIP 443312 4474 6111496 2024-02-29 11:39:44.803 2024-02-29 11:39:44.803 10000 FEE 443344 11678 6111497 2024-02-29 11:39:44.803 2024-02-29 11:39:44.803 90000 TIP 443344 1142 6111504 2024-02-29 11:40:48.388 2024-02-29 11:40:48.388 1000 FEE 443278 5852 6111505 2024-02-29 11:40:48.388 2024-02-29 11:40:48.388 9000 TIP 443278 20409 6111516 2024-02-29 11:42:10.479 2024-02-29 11:42:10.479 5000 FEE 442313 18241 6111517 2024-02-29 11:42:10.479 2024-02-29 11:42:10.479 45000 TIP 442313 20717 6111522 2024-02-29 11:42:33.385 2024-02-29 11:42:33.385 1000 FEE 443347 762 6111523 2024-02-29 11:42:50.207 2024-02-29 11:42:50.207 1000 FEE 443348 20058 6111545 2024-02-29 11:44:52.086 2024-02-29 11:44:52.086 1000 FEE 443352 17535 6111547 2024-02-29 11:45:14.455 2024-02-29 11:45:14.455 1000 POLL 442163 15491 6111548 2024-02-29 11:45:16.811 2024-02-29 11:45:16.811 5000 FEE 442163 9330 6111549 2024-02-29 11:45:16.811 2024-02-29 11:45:16.811 45000 TIP 442163 5865 6111560 2024-02-29 11:46:13.659 2024-02-29 11:46:13.659 1300 FEE 443319 19263 6111561 2024-02-29 11:46:13.659 2024-02-29 11:46:13.659 11700 TIP 443319 1173 6111572 2024-02-29 11:46:16.155 2024-02-29 11:46:16.155 1300 FEE 443319 4819 6111573 2024-02-29 11:46:16.155 2024-02-29 11:46:16.155 11700 TIP 443319 960 6111608 2024-02-29 11:46:19.204 2024-02-29 11:46:19.204 1300 FEE 443319 2640 6111609 2024-02-29 11:46:19.204 2024-02-29 11:46:19.204 11700 TIP 443319 1173 6111616 2024-02-29 11:46:19.915 2024-02-29 11:46:19.915 1300 FEE 443319 19878 6111617 2024-02-29 11:46:19.915 2024-02-29 11:46:19.915 11700 TIP 443319 11862 6111618 2024-02-29 11:46:20.075 2024-02-29 11:46:20.075 1300 FEE 443319 17116 6110821 2024-02-29 10:01:47.47 2024-02-29 10:01:47.47 2100 FEE 443206 9695 6110822 2024-02-29 10:01:47.47 2024-02-29 10:01:47.47 18900 TIP 443206 2330 6110826 2024-02-29 10:02:08.089 2024-02-29 10:02:08.089 100 FEE 443008 20276 6110827 2024-02-29 10:02:08.089 2024-02-29 10:02:08.089 900 TIP 443008 4984 6110833 2024-02-29 10:02:57.796 2024-02-29 10:02:57.796 1000 FEE 443245 1122 6110840 2024-02-29 10:03:18.667 2024-02-29 10:03:18.667 1000 FEE 443178 5425 6110841 2024-02-29 10:03:18.667 2024-02-29 10:03:18.667 9000 TIP 443178 14515 6110863 2024-02-29 10:04:48.239 2024-02-29 10:04:48.239 1600 FEE 443108 19284 6110864 2024-02-29 10:04:48.239 2024-02-29 10:04:48.239 14400 TIP 443108 14449 6110871 2024-02-29 10:05:23.56 2024-02-29 10:05:23.56 1000 FEE 443242 21155 6110872 2024-02-29 10:05:23.56 2024-02-29 10:05:23.56 9000 TIP 443242 21563 6110880 2024-02-29 10:05:27.412 2024-02-29 10:05:27.412 1000 FEE 442785 19995 6110881 2024-02-29 10:05:27.412 2024-02-29 10:05:27.412 9000 TIP 442785 20757 6110943 2024-02-29 10:08:20.383 2024-02-29 10:08:20.383 1000 FEE 441975 2942 6110944 2024-02-29 10:08:20.383 2024-02-29 10:08:20.383 9000 TIP 441975 18051 6110979 2024-02-29 10:11:41.655 2024-02-29 10:11:41.655 2100 FEE 443011 5809 6110980 2024-02-29 10:11:41.655 2024-02-29 10:11:41.655 18900 TIP 443011 10469 6110990 2024-02-29 10:12:06.433 2024-02-29 10:12:06.433 0 FEE 443261 2748 6110995 2024-02-29 10:12:57.942 2024-02-29 10:12:57.942 1000 FEE 443263 19663 6111049 2024-02-29 10:26:05.102 2024-02-29 10:26:05.102 5700 FEE 443011 1286 6111050 2024-02-29 10:26:05.102 2024-02-29 10:26:05.102 51300 TIP 443011 16684 6111051 2024-02-29 10:26:24.875 2024-02-29 10:26:24.875 1000 FEE 443267 15060 6111076 2024-02-29 10:29:16.638 2024-02-29 10:29:16.638 100 FEE 442478 19785 6111077 2024-02-29 10:29:16.638 2024-02-29 10:29:16.638 900 TIP 442478 19535 6111093 2024-02-29 10:31:35.608 2024-02-29 10:31:35.608 1000 FEE 443273 18177 6111097 2024-02-29 10:32:42.249 2024-02-29 10:32:42.249 100000 FEE 443274 2514 6111107 2024-02-29 10:34:55.422 2024-02-29 10:34:55.422 800 FEE 442894 1552 6111108 2024-02-29 10:34:55.422 2024-02-29 10:34:55.422 7200 TIP 442894 19292 6111115 2024-02-29 10:36:53.695 2024-02-29 10:36:53.695 10000 FEE 443278 1605 6111143 2024-02-29 10:44:07.103 2024-02-29 10:44:07.103 2100 FEE 442854 18368 6111144 2024-02-29 10:44:07.103 2024-02-29 10:44:07.103 18900 TIP 442854 16354 6111146 2024-02-29 10:45:49.442 2024-02-29 10:45:49.442 2100 FEE 443268 20811 6111147 2024-02-29 10:45:49.442 2024-02-29 10:45:49.442 18900 TIP 443268 3990 6111155 2024-02-29 10:46:15.206 2024-02-29 10:46:15.206 2100 FEE 443274 20062 6111156 2024-02-29 10:46:15.206 2024-02-29 10:46:15.206 18900 TIP 443274 20599 6111159 2024-02-29 10:46:22.303 2024-02-29 10:46:22.303 800 FEE 443272 4014 6111160 2024-02-29 10:46:22.303 2024-02-29 10:46:22.303 7200 TIP 443272 7983 6111166 2024-02-29 10:47:02.955 2024-02-29 10:47:02.955 1000 FEE 443281 5455 6111174 2024-02-29 10:48:15.447 2024-02-29 10:48:15.447 1600 FEE 443274 19281 6111175 2024-02-29 10:48:15.447 2024-02-29 10:48:15.447 14400 TIP 443274 1596 6111192 2024-02-29 10:51:56.812 2024-02-29 10:51:56.812 500 FEE 443282 21058 6111193 2024-02-29 10:51:56.812 2024-02-29 10:51:56.812 4500 TIP 443282 20180 6111208 2024-02-29 10:56:08.302 2024-02-29 10:56:08.302 1000 FEE 443274 11862 6110825 2024-02-29 10:02:03.156 2024-02-29 10:02:03.156 1000 STREAM 141924 11430 6110936 2024-02-29 10:08:09.011 2024-02-29 10:08:09.011 1000 FEE 442178 21254 6110937 2024-02-29 10:08:09.011 2024-02-29 10:08:09.011 9000 TIP 442178 20619 6110966 2024-02-29 10:10:33.078 2024-02-29 10:10:33.078 2100 FEE 442139 2773 6110967 2024-02-29 10:10:33.078 2024-02-29 10:10:33.078 18900 TIP 442139 1426 6110970 2024-02-29 10:10:38.773 2024-02-29 10:10:38.773 2100 FEE 442061 16706 6110971 2024-02-29 10:10:38.773 2024-02-29 10:10:38.773 18900 TIP 442061 1784 6110984 2024-02-29 10:11:54.941 2024-02-29 10:11:54.941 2100 FEE 443008 7583 6110985 2024-02-29 10:11:54.941 2024-02-29 10:11:54.941 18900 TIP 443008 4084 6110996 2024-02-29 10:13:00.177 2024-02-29 10:13:00.177 2100 FEE 442840 1817 6110997 2024-02-29 10:13:00.177 2024-02-29 10:13:00.177 18900 TIP 442840 21480 6111003 2024-02-29 10:13:23.916 2024-02-29 10:13:23.916 2100 FEE 442516 18945 6111004 2024-02-29 10:13:23.916 2024-02-29 10:13:23.916 18900 TIP 442516 8074 6111012 2024-02-29 10:17:19.781 2024-02-29 10:17:19.781 100 FEE 443261 21042 6111013 2024-02-29 10:17:19.781 2024-02-29 10:17:19.781 900 TIP 443261 16176 6111014 2024-02-29 10:17:21.455 2024-02-29 10:17:21.455 100 FEE 443261 1705 6111015 2024-02-29 10:17:21.455 2024-02-29 10:17:21.455 900 TIP 443261 21338 6111031 2024-02-29 10:25:03.445 2024-02-29 10:25:03.445 5700 FEE 443189 20439 6111032 2024-02-29 10:25:03.445 2024-02-29 10:25:03.445 51300 TIP 443189 20452 6111040 2024-02-29 10:25:50.044 2024-02-29 10:25:50.044 1000 FEE 443266 21412 6111041 2024-02-29 10:25:50.044 2024-02-29 10:25:50.044 9000 TIP 443266 2029 6111074 2024-02-29 10:29:16.044 2024-02-29 10:29:16.044 100 FEE 442478 19785 6111075 2024-02-29 10:29:16.044 2024-02-29 10:29:16.044 900 TIP 442478 902 6111084 2024-02-29 10:29:25.977 2024-02-29 10:29:25.977 1000 FEE 443270 6573 6111101 2024-02-29 10:33:14.421 2024-02-29 10:33:14.421 10000 FEE 443059 1221 6111102 2024-02-29 10:33:14.421 2024-02-29 10:33:14.421 90000 TIP 443059 20099 6111103 2024-02-29 10:33:44.877 2024-02-29 10:33:44.877 1000 FEE 443275 14213 6111116 2024-02-29 10:36:56.067 2024-02-29 10:36:56.067 100 FEE 443092 18923 6111117 2024-02-29 10:36:56.067 2024-02-29 10:36:56.067 900 TIP 443092 20090 6111128 2024-02-29 10:38:39.614 2024-02-29 10:38:39.614 10000 FEE 443274 16680 6111129 2024-02-29 10:38:39.614 2024-02-29 10:38:39.614 90000 TIP 443274 2459 6111176 2024-02-29 10:48:16.966 2024-02-29 10:48:16.966 0 FEE 443282 19282 6111216 2024-02-29 10:57:38.099 2024-02-29 10:57:38.099 1000 FEE 443293 19773 6111217 2024-02-29 10:57:38.099 2024-02-29 10:57:38.099 9000 TIP 443293 4084 6111232 2024-02-29 11:00:43.289 2024-02-29 11:00:43.289 1000 FEE 443298 21254 6111235 2024-02-29 11:01:07.532 2024-02-29 11:01:07.532 700 FEE 443296 803 6111236 2024-02-29 11:01:07.532 2024-02-29 11:01:07.532 6300 TIP 443296 20106 6111272 2024-02-29 11:04:17.378 2024-02-29 11:04:17.378 5700 FEE 443301 21021 6111273 2024-02-29 11:04:17.378 2024-02-29 11:04:17.378 51300 TIP 443301 19759 6111277 2024-02-29 11:04:28.321 2024-02-29 11:04:28.321 1000 POLL 442163 18344 6111283 2024-02-29 11:05:56.078 2024-02-29 11:05:56.078 1000 FEE 443309 13100 6111327 2024-02-29 11:12:39.415 2024-02-29 11:12:39.415 1000 FEE 443317 13782 6111357 2024-02-29 11:17:55.857 2024-02-29 11:17:55.857 1000 FEE 443324 20337 6111391 2024-02-29 11:26:01.954 2024-02-29 11:26:01.954 1000 FEE 443332 4624 6111405 2024-02-29 11:26:41.602 2024-02-29 11:26:41.602 0 FEE 443331 4083 6111410 2024-02-29 11:26:45.52 2024-02-29 11:26:45.52 100 FEE 443321 19016 6111411 2024-02-29 11:26:45.52 2024-02-29 11:26:45.52 900 TIP 443321 10096 6111428 2024-02-29 11:27:20.904 2024-02-29 11:27:20.904 100 FEE 443331 19103 6111429 2024-02-29 11:27:20.904 2024-02-29 11:27:20.904 900 TIP 443331 4064 6111430 2024-02-29 11:27:21.149 2024-02-29 11:27:21.149 100 FEE 443331 21498 6111431 2024-02-29 11:27:21.149 2024-02-29 11:27:21.149 900 TIP 443331 18539 6111432 2024-02-29 11:27:21.852 2024-02-29 11:27:21.852 100 FEE 443331 10771 6111433 2024-02-29 11:27:21.852 2024-02-29 11:27:21.852 900 TIP 443331 3392 6111439 2024-02-29 11:27:53.596 2024-02-29 11:27:53.596 5000 FEE 443305 2757 6111440 2024-02-29 11:27:53.596 2024-02-29 11:27:53.596 45000 TIP 443305 10611 6111442 2024-02-29 11:28:11.442 2024-02-29 11:28:11.442 5700 FEE 443333 18139 6111443 2024-02-29 11:28:11.442 2024-02-29 11:28:11.442 51300 TIP 443333 15100 6111447 2024-02-29 11:29:05.708 2024-02-29 11:29:05.708 1000 FEE 443338 21048 6111465 2024-02-29 11:34:18.836 2024-02-29 11:34:18.836 1000 FEE 443341 11165 6111466 2024-02-29 11:34:28.649 2024-02-29 11:34:28.649 400 FEE 443300 17106 6111467 2024-02-29 11:34:28.649 2024-02-29 11:34:28.649 3600 TIP 443300 1439 6111527 2024-02-29 11:43:02.007 2024-02-29 11:43:02.007 5000 FEE 442399 3478 6111528 2024-02-29 11:43:02.007 2024-02-29 11:43:02.007 45000 TIP 442399 2213 6111535 2024-02-29 11:43:17.618 2024-02-29 11:43:17.618 0 FEE 443350 14225 6111536 2024-02-29 11:43:20.631 2024-02-29 11:43:20.631 2100 FEE 443335 18994 6111537 2024-02-29 11:43:20.631 2024-02-29 11:43:20.631 18900 TIP 443335 18310 6111555 2024-02-29 11:45:42.201 2024-02-29 11:45:42.201 1000 FEE 443350 16442 6111556 2024-02-29 11:45:42.201 2024-02-29 11:45:42.201 9000 TIP 443350 21172 6111557 2024-02-29 11:45:42.299 2024-02-29 11:45:42.299 2200 FEE 442894 10342 6111558 2024-02-29 11:45:42.299 2024-02-29 11:45:42.299 19800 TIP 442894 1141 6111580 2024-02-29 11:46:16.705 2024-02-29 11:46:16.705 1300 FEE 443319 16059 6111581 2024-02-29 11:46:16.705 2024-02-29 11:46:16.705 11700 TIP 443319 4831 6111626 2024-02-29 11:46:20.81 2024-02-29 11:46:20.81 1300 FEE 443319 18673 6111627 2024-02-29 11:46:20.81 2024-02-29 11:46:20.81 11700 TIP 443319 21482 6111639 2024-02-29 11:47:36.752 2024-02-29 11:47:36.752 1000 FEE 443011 8448 6111640 2024-02-29 11:47:36.752 2024-02-29 11:47:36.752 9000 TIP 443011 20904 6111643 2024-02-29 11:47:46.531 2024-02-29 11:47:46.531 1000 FEE 443296 18630 6111644 2024-02-29 11:47:46.531 2024-02-29 11:47:46.531 9000 TIP 443296 12291 6111674 2024-02-29 11:51:09.931 2024-02-29 11:51:09.931 100 FEE 442931 19690 6111675 2024-02-29 11:51:09.931 2024-02-29 11:51:09.931 900 TIP 442931 2528 6111691 2024-02-29 11:54:04.088 2024-02-29 11:54:04.088 1000 FEE 443360 18507 6111716 2024-02-29 12:00:06.046 2024-02-29 12:00:06.046 1000 FEE 443365 4079 6111009 2024-02-29 10:15:03.326 2024-02-29 10:15:03.326 1000 STREAM 141924 1319 6111087 2024-02-29 10:30:03.521 2024-02-29 10:30:03.521 1000 STREAM 141924 6191 6111096 2024-02-29 10:32:03.475 2024-02-29 10:32:03.475 1000 STREAM 141924 15160 6111134 2024-02-29 10:40:03.559 2024-02-29 10:40:03.559 1000 STREAM 141924 5865 6111177 2024-02-29 10:49:03.589 2024-02-29 10:49:03.589 1000 STREAM 141924 15409 6111098 2024-02-29 10:33:03.48 2024-02-29 10:33:03.48 1000 STREAM 141924 5487 6111125 2024-02-29 10:38:03.523 2024-02-29 10:38:03.523 1000 STREAM 141924 19938 6111137 2024-02-29 10:42:03.541 2024-02-29 10:42:03.541 1000 STREAM 141924 12951 6111138 2024-02-29 10:43:03.568 2024-02-29 10:43:03.568 1000 STREAM 141924 18072 6111173 2024-02-29 10:48:03.583 2024-02-29 10:48:03.583 1000 STREAM 141924 10719 6111182 2024-02-29 10:50:03.599 2024-02-29 10:50:03.599 1000 STREAM 141924 21357 6111251 2024-02-29 11:03:03.645 2024-02-29 11:03:03.645 1000 STREAM 141924 20301 6111338 2024-02-29 11:15:03.792 2024-02-29 11:15:03.792 1000 STREAM 141924 2098 6111344 2024-02-29 11:16:03.789 2024-02-29 11:16:03.789 1000 STREAM 141924 18608 6111349 2024-02-29 11:17:03.779 2024-02-29 11:17:03.779 1000 STREAM 141924 683 6111361 2024-02-29 11:18:03.785 2024-02-29 11:18:03.785 1000 STREAM 141924 20102 6111364 2024-02-29 11:19:03.788 2024-02-29 11:19:03.788 1000 STREAM 141924 12516 6111368 2024-02-29 11:20:03.788 2024-02-29 11:20:03.788 1000 STREAM 141924 7654 6111372 2024-02-29 11:21:03.79 2024-02-29 11:21:03.79 1000 STREAM 141924 21103 6111380 2024-02-29 11:22:03.795 2024-02-29 11:22:03.795 1000 STREAM 141924 21138 6111392 2024-02-29 11:26:03.813 2024-02-29 11:26:03.813 1000 STREAM 141924 13133 6111441 2024-02-29 11:28:03.818 2024-02-29 11:28:03.818 1000 STREAM 141924 1145 6111446 2024-02-29 11:29:03.823 2024-02-29 11:29:03.823 1000 STREAM 141924 1817 6111130 2024-02-29 10:39:03.525 2024-02-29 10:39:03.525 1000 STREAM 141924 9796 6111136 2024-02-29 10:41:03.539 2024-02-29 10:41:03.539 1000 STREAM 141924 18984 6111142 2024-02-29 10:44:03.568 2024-02-29 10:44:03.568 1000 STREAM 141924 11716 6111148 2024-02-29 10:46:03.581 2024-02-29 10:46:03.581 1000 STREAM 141924 21492 6111186 2024-02-29 10:51:03.621 2024-02-29 10:51:03.621 1000 STREAM 141924 663 6111194 2024-02-29 10:52:03.829 2024-02-29 10:52:03.829 1000 STREAM 141924 999 6111199 2024-02-29 10:53:03.829 2024-02-29 10:53:03.829 1000 STREAM 141924 20120 6111206 2024-02-29 10:55:03.836 2024-02-29 10:55:03.836 1000 STREAM 141924 17513 6111207 2024-02-29 10:56:03.832 2024-02-29 10:56:03.832 1000 STREAM 141924 20340 6111213 2024-02-29 10:57:03.833 2024-02-29 10:57:03.833 1000 STREAM 141924 21314 6111249 2024-02-29 11:02:03.9 2024-02-29 11:02:03.9 1000 STREAM 141924 621 6111316 2024-02-29 11:09:03.929 2024-02-29 11:09:03.929 1000 STREAM 141924 3745 6111458 2024-02-29 11:32:04.136 2024-02-29 11:32:04.136 1000 STREAM 141924 20993 6111506 2024-02-29 11:41:04.16 2024-02-29 11:41:04.16 1000 STREAM 141924 9705 6111529 2024-02-29 11:43:04.302 2024-02-29 11:43:04.302 1000 STREAM 141924 17392 6111540 2024-02-29 11:44:04.322 2024-02-29 11:44:04.322 1000 STREAM 141924 20310 6111546 2024-02-29 11:45:04.311 2024-02-29 11:45:04.311 1000 STREAM 141924 21344 6111209 2024-02-29 10:56:08.302 2024-02-29 10:56:08.302 9000 TIP 443274 1298 6111222 2024-02-29 10:58:52.535 2024-02-29 10:58:52.535 2100 FEE 443187 20337 6111223 2024-02-29 10:58:52.535 2024-02-29 10:58:52.535 18900 TIP 443187 18829 6111237 2024-02-29 11:01:11.457 2024-02-29 11:01:11.457 0 FEE 443296 9655 6111238 2024-02-29 11:01:39.086 2024-02-29 11:01:39.086 700 FEE 443297 9348 6111239 2024-02-29 11:01:39.086 2024-02-29 11:01:39.086 6300 TIP 443297 8287 6111246 2024-02-29 11:01:42.753 2024-02-29 11:01:42.753 700 FEE 443296 20163 6111247 2024-02-29 11:01:42.753 2024-02-29 11:01:42.753 6300 TIP 443296 20231 6111252 2024-02-29 11:03:21.733 2024-02-29 11:03:21.733 5700 FEE 443296 18923 6111253 2024-02-29 11:03:21.733 2024-02-29 11:03:21.733 51300 TIP 443296 11329 6111256 2024-02-29 11:03:25.757 2024-02-29 11:03:25.757 1000 FEE 443297 19044 6111257 2024-02-29 11:03:25.757 2024-02-29 11:03:25.757 9000 TIP 443297 18784 6111286 2024-02-29 11:06:01.026 2024-02-29 11:06:01.026 1000 FEE 443302 4388 6111287 2024-02-29 11:06:01.026 2024-02-29 11:06:01.026 9000 TIP 443302 20837 6111292 2024-02-29 11:07:00.727 2024-02-29 11:07:00.727 0 FEE 233747 11491 6111308 2024-02-29 11:08:24.04 2024-02-29 11:08:24.04 2100 FEE 443292 8664 6111309 2024-02-29 11:08:24.04 2024-02-29 11:08:24.04 18900 TIP 443292 16424 6111318 2024-02-29 11:09:46.466 2024-02-29 11:09:46.466 1000 FEE 443315 13622 6111325 2024-02-29 11:11:34.634 2024-02-29 11:11:34.634 0 FEE 443316 8505 6111335 2024-02-29 11:14:42.136 2024-02-29 11:14:42.136 10000 FEE 443319 6335 6111336 2024-02-29 11:14:55.376 2024-02-29 11:14:55.376 2100 FEE 443296 2437 6111337 2024-02-29 11:14:55.376 2024-02-29 11:14:55.376 18900 TIP 443296 11716 6111365 2024-02-29 11:19:13.689 2024-02-29 11:19:13.689 1000 FEE 443303 776 6111366 2024-02-29 11:19:13.689 2024-02-29 11:19:13.689 9000 TIP 443303 19863 6111388 2024-02-29 11:24:48.69 2024-02-29 11:24:48.69 1000 FEE 443331 18470 6111394 2024-02-29 11:26:17.512 2024-02-29 11:26:17.512 2000 FEE 443286 2734 6111395 2024-02-29 11:26:17.512 2024-02-29 11:26:17.512 18000 TIP 443286 13547 6111418 2024-02-29 11:26:46.75 2024-02-29 11:26:46.75 100 FEE 443321 5661 6111419 2024-02-29 11:26:46.75 2024-02-29 11:26:46.75 900 TIP 443321 9496 6111424 2024-02-29 11:27:20.178 2024-02-29 11:27:20.178 100 FEE 443331 11942 6111425 2024-02-29 11:27:20.178 2024-02-29 11:27:20.178 900 TIP 443331 8664 6111426 2024-02-29 11:27:20.617 2024-02-29 11:27:20.617 100 FEE 443331 19435 6111427 2024-02-29 11:27:20.617 2024-02-29 11:27:20.617 900 TIP 443331 9351 6111434 2024-02-29 11:27:34.429 2024-02-29 11:27:34.429 1600 FEE 443336 17797 6111435 2024-02-29 11:27:34.429 2024-02-29 11:27:34.429 14400 TIP 443336 19449 6111436 2024-02-29 11:27:35.083 2024-02-29 11:27:35.083 5000 FEE 443316 15703 6111437 2024-02-29 11:27:35.083 2024-02-29 11:27:35.083 45000 TIP 443316 21208 6111487 2024-02-29 11:38:10.831 2024-02-29 11:38:10.831 1000 FEE 443320 1145 6111488 2024-02-29 11:38:10.831 2024-02-29 11:38:10.831 9000 TIP 443320 14939 6111531 2024-02-29 11:43:09.367 2024-02-29 11:43:09.367 2100 FEE 443331 11477 6111532 2024-02-29 11:43:09.367 2024-02-29 11:43:09.367 18900 TIP 443331 12278 6111542 2024-02-29 11:44:41.305 2024-02-29 11:44:41.305 1000 POLL 442751 4819 6111550 2024-02-29 11:45:20.862 2024-02-29 11:45:20.862 1000 FEE 443348 14015 6111551 2024-02-29 11:45:20.862 2024-02-29 11:45:20.862 9000 TIP 443348 21391 6111552 2024-02-29 11:45:35.409 2024-02-29 11:45:35.409 2100 FEE 443300 20669 6111553 2024-02-29 11:45:35.409 2024-02-29 11:45:35.409 18900 TIP 443300 14959 6111554 2024-02-29 11:45:41.352 2024-02-29 11:45:41.352 1000 FEE 443353 715 6111566 2024-02-29 11:46:15.388 2024-02-29 11:46:15.388 1300 FEE 443319 3709 6111567 2024-02-29 11:46:15.388 2024-02-29 11:46:15.388 11700 TIP 443319 15045 6111582 2024-02-29 11:46:16.897 2024-02-29 11:46:16.897 1300 FEE 443319 21343 6111583 2024-02-29 11:46:16.897 2024-02-29 11:46:16.897 11700 TIP 443319 6148 6111588 2024-02-29 11:46:17.336 2024-02-29 11:46:17.336 1300 FEE 443319 10342 6111589 2024-02-29 11:46:17.336 2024-02-29 11:46:17.336 11700 TIP 443319 15697 6111592 2024-02-29 11:46:17.734 2024-02-29 11:46:17.734 1300 FEE 443319 21033 6111593 2024-02-29 11:46:17.734 2024-02-29 11:46:17.734 11700 TIP 443319 20152 6111630 2024-02-29 11:46:21.206 2024-02-29 11:46:21.206 1300 FEE 443319 701 6111631 2024-02-29 11:46:21.206 2024-02-29 11:46:21.206 11700 TIP 443319 20180 6111632 2024-02-29 11:46:21.854 2024-02-29 11:46:21.854 1300 FEE 443319 1124 6111633 2024-02-29 11:46:21.854 2024-02-29 11:46:21.854 11700 TIP 443319 11522 6111652 2024-02-29 11:48:41.904 2024-02-29 11:48:41.904 2600 FEE 443159 15491 6111653 2024-02-29 11:48:41.904 2024-02-29 11:48:41.904 23400 TIP 443159 18174 6111670 2024-02-29 11:51:06.473 2024-02-29 11:51:06.473 100 FEE 443274 12606 6111671 2024-02-29 11:51:06.473 2024-02-29 11:51:06.473 900 TIP 443274 18321 6111672 2024-02-29 11:51:08.787 2024-02-29 11:51:08.787 100 FEE 443178 9169 6111673 2024-02-29 11:51:08.787 2024-02-29 11:51:08.787 900 TIP 443178 716 6111705 2024-02-29 11:57:52.104 2024-02-29 11:57:52.104 20000 FEE 443362 15408 6111727 2024-02-29 12:03:08.706 2024-02-29 12:03:08.706 500 FEE 442904 5069 6111728 2024-02-29 12:03:08.706 2024-02-29 12:03:08.706 4500 TIP 442904 692 6111747 2024-02-29 12:06:47.585 2024-02-29 12:06:47.585 1000 FEE 443368 658 6111774 2024-02-29 12:11:43.709 2024-02-29 12:11:43.709 1000 FEE 443374 18426 6111782 2024-02-29 12:12:34.384 2024-02-29 12:12:34.384 1000 FEE 443337 8095 6111783 2024-02-29 12:12:34.384 2024-02-29 12:12:34.384 9000 TIP 443337 2322 6111802 2024-02-29 12:18:27.463 2024-02-29 12:18:27.463 1000 FEE 443379 2326 6111818 2024-02-29 12:22:15.582 2024-02-29 12:22:15.582 2100 FEE 442862 20231 6111819 2024-02-29 12:22:15.582 2024-02-29 12:22:15.582 18900 TIP 442862 18403 6111858 2024-02-29 12:29:29.308 2024-02-29 12:29:29.308 10000 FEE 443391 19096 6111871 2024-02-29 12:31:43.146 2024-02-29 12:31:43.146 5700 FEE 443392 15282 6111872 2024-02-29 12:31:43.146 2024-02-29 12:31:43.146 51300 TIP 443392 21159 6111873 2024-02-29 12:31:52.386 2024-02-29 12:31:52.386 1000 FEE 443394 19259 6111893 2024-02-29 12:34:29.335 2024-02-29 12:34:29.335 400 FEE 443387 739 6111894 2024-02-29 12:34:29.335 2024-02-29 12:34:29.335 3600 TIP 443387 3683 6111901 2024-02-29 12:35:07.48 2024-02-29 12:35:07.48 2100 FEE 442608 8037 6111902 2024-02-29 12:35:07.48 2024-02-29 12:35:07.48 18900 TIP 442608 2206 6111920 2024-02-29 12:38:00.583 2024-02-29 12:38:00.583 2100 FEE 443146 5449 6111921 2024-02-29 12:38:00.583 2024-02-29 12:38:00.583 18900 TIP 443146 11942 6111923 2024-02-29 12:38:22.99 2024-02-29 12:38:22.99 1000 FEE 443402 20094 6111939 2024-02-29 12:42:48.598 2024-02-29 12:42:48.598 500 FEE 443274 686 6111940 2024-02-29 12:42:48.598 2024-02-29 12:42:48.598 4500 TIP 443274 11621 6111945 2024-02-29 12:42:49.109 2024-02-29 12:42:49.109 500 FEE 443274 16357 6111946 2024-02-29 12:42:49.109 2024-02-29 12:42:49.109 4500 TIP 443274 14795 6111947 2024-02-29 12:42:49.273 2024-02-29 12:42:49.273 500 FEE 443274 9366 6111948 2024-02-29 12:42:49.273 2024-02-29 12:42:49.273 4500 TIP 443274 17446 6111951 2024-02-29 12:42:50.967 2024-02-29 12:42:50.967 500 FEE 443274 13553 6111952 2024-02-29 12:42:50.967 2024-02-29 12:42:50.967 4500 TIP 443274 21172 6111954 2024-02-29 12:43:13.634 2024-02-29 12:43:13.634 21000 FEE 443404 663 6111962 2024-02-29 12:44:37.377 2024-02-29 12:44:37.377 5700 FEE 443396 16970 6111963 2024-02-29 12:44:37.377 2024-02-29 12:44:37.377 51300 TIP 443396 9529 6111985 2024-02-29 12:50:07.4 2024-02-29 12:50:07.4 1000 FEE 443411 17365 6111995 2024-02-29 12:51:07.75 2024-02-29 12:51:07.75 1600 FEE 443403 19557 6111996 2024-02-29 12:51:07.75 2024-02-29 12:51:07.75 14400 TIP 443403 1002 6111999 2024-02-29 12:51:31.955 2024-02-29 12:51:31.955 1000 FEE 443413 4079 6112001 2024-02-29 12:52:28.016 2024-02-29 12:52:28.016 1000 FEE 443414 4074 6112029 2024-02-29 13:01:40.384 2024-02-29 13:01:40.384 1000 FEE 443423 7992 6111226 2024-02-29 11:00:04.98 2024-02-29 11:00:04.98 1000 STREAM 141924 18743 6111234 2024-02-29 11:01:06.982 2024-02-29 11:01:06.982 1000 STREAM 141924 19857 6111264 2024-02-29 11:03:53.549 2024-02-29 11:03:53.549 1000 FEE 443296 18274 6111265 2024-02-29 11:03:53.549 2024-02-29 11:03:53.549 9000 TIP 443296 21416 6111268 2024-02-29 11:04:04.561 2024-02-29 11:04:04.561 100000 FEE 443303 7119 6111274 2024-02-29 11:04:22.84 2024-02-29 11:04:22.84 1000 FEE 443307 19033 6111278 2024-02-29 11:04:42.323 2024-02-29 11:04:42.323 0 FEE 443300 18830 6111294 2024-02-29 11:07:50.802 2024-02-29 11:07:50.802 1000 FEE 443311 16571 6111310 2024-02-29 11:08:30.157 2024-02-29 11:08:30.157 5700 FEE 443311 21437 6111311 2024-02-29 11:08:30.157 2024-02-29 11:08:30.157 51300 TIP 443311 20624 6111342 2024-02-29 11:15:48.597 2024-02-29 11:15:48.597 2100 FEE 443319 18169 6111343 2024-02-29 11:15:48.597 2024-02-29 11:15:48.597 18900 TIP 443319 21033 6111346 2024-02-29 11:16:43.912 2024-02-29 11:16:43.912 6900 FEE 443312 21556 6111347 2024-02-29 11:16:43.912 2024-02-29 11:16:43.912 62100 TIP 443312 19581 6111348 2024-02-29 11:16:59.907 2024-02-29 11:16:59.907 1000 FEE 443322 7772 6111362 2024-02-29 11:18:08.079 2024-02-29 11:18:08.079 5700 FEE 443305 18637 6111363 2024-02-29 11:18:08.079 2024-02-29 11:18:08.079 51300 TIP 443305 21401 6111378 2024-02-29 11:21:48.672 2024-02-29 11:21:48.672 100 FEE 443233 5455 6111379 2024-02-29 11:21:48.672 2024-02-29 11:21:48.672 900 TIP 443233 1316 6111393 2024-02-29 11:26:11.044 2024-02-29 11:26:11.044 1000 FEE 443333 10549 6111396 2024-02-29 11:26:19.534 2024-02-29 11:26:19.534 1000 FEE 443334 4487 6111489 2024-02-29 11:38:20.122 2024-02-29 11:38:20.122 1000 FEE 443316 15196 6111490 2024-02-29 11:38:20.122 2024-02-29 11:38:20.122 9000 TIP 443316 21539 6111507 2024-02-29 11:41:36.173 2024-02-29 11:41:36.173 4200 FEE 443274 2309 6111508 2024-02-29 11:41:36.173 2024-02-29 11:41:36.173 37800 TIP 443274 21469 6111518 2024-02-29 11:42:10.704 2024-02-29 11:42:10.704 5000 FEE 442313 21207 6111519 2024-02-29 11:42:10.704 2024-02-29 11:42:10.704 45000 TIP 442313 13399 6111524 2024-02-29 11:43:00.756 2024-02-29 11:43:00.756 1000 FEE 443349 5519 6111594 2024-02-29 11:46:17.859 2024-02-29 11:46:17.859 1300 FEE 443319 9921 6111595 2024-02-29 11:46:17.859 2024-02-29 11:46:17.859 11700 TIP 443319 1354 6111614 2024-02-29 11:46:19.746 2024-02-29 11:46:19.746 1300 FEE 443319 7389 6111615 2024-02-29 11:46:19.746 2024-02-29 11:46:19.746 11700 TIP 443319 6741 6111624 2024-02-29 11:46:20.623 2024-02-29 11:46:20.623 1300 FEE 443319 9426 6111625 2024-02-29 11:46:20.623 2024-02-29 11:46:20.623 11700 TIP 443319 18230 6111641 2024-02-29 11:47:41.911 2024-02-29 11:47:41.911 2600 FEE 443065 8729 6111642 2024-02-29 11:47:41.911 2024-02-29 11:47:41.911 23400 TIP 443065 688 6111649 2024-02-29 11:48:23.395 2024-02-29 11:48:23.395 2600 FEE 443161 9496 6111650 2024-02-29 11:48:23.395 2024-02-29 11:48:23.395 23400 TIP 443161 19105 6111651 2024-02-29 11:48:36.397 2024-02-29 11:48:36.397 1000 FEE 443357 21563 6111659 2024-02-29 11:49:29.686 2024-02-29 11:49:29.686 1000 FEE 443358 18241 6111686 2024-02-29 11:52:45.928 2024-02-29 11:52:45.928 100 FEE 442163 19193 6111687 2024-02-29 11:52:45.928 2024-02-29 11:52:45.928 900 TIP 442163 631 6111699 2024-02-29 11:55:26.146 2024-02-29 11:55:26.146 5700 FEE 443319 14465 6111700 2024-02-29 11:55:26.146 2024-02-29 11:55:26.146 51300 TIP 443319 4538 6111702 2024-02-29 11:56:31.918 2024-02-29 11:56:31.918 2100 FEE 442912 17827 6111703 2024-02-29 11:56:31.918 2024-02-29 11:56:31.918 18900 TIP 442912 4225 6111706 2024-02-29 11:57:58.745 2024-02-29 11:57:58.745 1000 FEE 443341 21090 6111707 2024-02-29 11:57:58.745 2024-02-29 11:57:58.745 9000 TIP 443341 21040 6111748 2024-02-29 12:06:53.953 2024-02-29 12:06:53.953 2100 FEE 443352 8400 6111749 2024-02-29 12:06:53.953 2024-02-29 12:06:53.953 18900 TIP 443352 644 6111750 2024-02-29 12:06:56.279 2024-02-29 12:06:56.279 2100 FEE 443020 2264 6111751 2024-02-29 12:06:56.279 2024-02-29 12:06:56.279 18900 TIP 443020 16660 6111753 2024-02-29 12:08:00.862 2024-02-29 12:08:00.862 1000 FEE 443369 21620 6111778 2024-02-29 12:12:14.254 2024-02-29 12:12:14.254 0 FEE 443372 12738 6111779 2024-02-29 12:12:31.415 2024-02-29 12:12:31.415 1000 FEE 443375 15094 6111799 2024-02-29 12:17:43.423 2024-02-29 12:17:43.423 100000 FEE 443377 18178 6111801 2024-02-29 12:18:11.656 2024-02-29 12:18:11.656 1000 FEE 443378 20717 6111816 2024-02-29 12:22:07.515 2024-02-29 12:22:07.515 2100 FEE 442848 11395 6111817 2024-02-29 12:22:07.515 2024-02-29 12:22:07.515 18900 TIP 442848 17201 6111823 2024-02-29 12:23:30.908 2024-02-29 12:23:30.908 1000 FEE 443338 18138 6111824 2024-02-29 12:23:30.908 2024-02-29 12:23:30.908 9000 TIP 443338 8326 6111833 2024-02-29 12:24:33.792 2024-02-29 12:24:33.792 1000 FEE 443374 21585 6111834 2024-02-29 12:24:33.792 2024-02-29 12:24:33.792 9000 TIP 443374 1784 6111838 2024-02-29 12:25:25.716 2024-02-29 12:25:25.716 1000 FEE 443384 21339 6111839 2024-02-29 12:25:53.375 2024-02-29 12:25:53.375 1000 FEE 443385 18169 6111845 2024-02-29 12:27:03.22 2024-02-29 12:27:03.22 10000 FEE 443372 21627 6111846 2024-02-29 12:27:03.22 2024-02-29 12:27:03.22 90000 TIP 443372 4763 6111857 2024-02-29 12:29:23.077 2024-02-29 12:29:23.077 1000 FEE 443390 5427 6111865 2024-02-29 12:30:20.185 2024-02-29 12:30:20.185 1000 FEE 443315 18139 6111866 2024-02-29 12:30:20.185 2024-02-29 12:30:20.185 9000 TIP 443315 14774 6111876 2024-02-29 12:31:54.564 2024-02-29 12:31:54.564 1000 FEE 443325 20775 6111877 2024-02-29 12:31:54.564 2024-02-29 12:31:54.564 9000 TIP 443325 16410 6111897 2024-02-29 12:35:02.761 2024-02-29 12:35:02.761 10000 FEE 443399 18615 6111924 2024-02-29 12:38:58.346 2024-02-29 12:38:58.346 11700 FEE 443399 18507 6111925 2024-02-29 12:38:58.346 2024-02-29 12:38:58.346 105300 TIP 443399 13544 6111959 2024-02-29 12:44:31.104 2024-02-29 12:44:31.104 5000 FEE 443052 21139 6111960 2024-02-29 12:44:31.104 2024-02-29 12:44:31.104 45000 TIP 443052 20183 6111964 2024-02-29 12:44:43.532 2024-02-29 12:44:43.532 5700 FEE 443391 683 6111965 2024-02-29 12:44:43.532 2024-02-29 12:44:43.532 51300 TIP 443391 18543 6111970 2024-02-29 12:45:33.076 2024-02-29 12:45:33.076 0 FEE 443404 5069 6111973 2024-02-29 12:46:21.096 2024-02-29 12:46:21.096 5000 FEE 443389 21349 6111974 2024-02-29 12:46:21.096 2024-02-29 12:46:21.096 45000 TIP 443389 2718 6111986 2024-02-29 12:50:10.625 2024-02-29 12:50:10.625 2100 FEE 443384 19501 6111987 2024-02-29 12:50:10.625 2024-02-29 12:50:10.625 18900 TIP 443384 7553 6111997 2024-02-29 12:51:10.724 2024-02-29 12:51:10.724 2100 FEE 443359 21591 6111998 2024-02-29 12:51:10.724 2024-02-29 12:51:10.724 18900 TIP 443359 9150 6111281 2024-02-29 11:05:03.713 2024-02-29 11:05:03.713 1000 STREAM 141924 1652 6111319 2024-02-29 11:10:03.753 2024-02-29 11:10:03.753 1000 STREAM 141924 13097 6111451 2024-02-29 11:30:03.855 2024-02-29 11:30:03.855 1000 STREAM 141924 21343 5999553 2024-02-19 15:09:03.845 2024-02-19 15:09:03.845 1000 STREAM 141924 16848 5999617 2024-02-19 15:12:03.857 2024-02-19 15:12:03.857 1000 STREAM 141924 18751 5999670 2024-02-19 15:14:03.863 2024-02-19 15:14:03.863 1000 STREAM 141924 20889 5999676 2024-02-19 15:15:03.859 2024-02-19 15:15:03.859 1000 STREAM 141924 12102 5999682 2024-02-19 15:17:03.941 2024-02-19 15:17:03.941 1000 STREAM 141924 19622 5999708 2024-02-19 15:22:03.897 2024-02-19 15:22:03.897 1000 STREAM 141924 8400 5999740 2024-02-19 15:24:03.893 2024-02-19 15:24:03.893 1000 STREAM 141924 21021 5999760 2024-02-19 15:25:03.905 2024-02-19 15:25:03.905 1000 STREAM 141924 1647 5999766 2024-02-19 15:26:03.918 2024-02-19 15:26:03.918 1000 STREAM 141924 10611 5999784 2024-02-19 15:28:03.942 2024-02-19 15:28:03.942 1000 STREAM 141924 17050 5999808 2024-02-19 15:31:03.917 2024-02-19 15:31:03.917 1000 STREAM 141924 20922 5999814 2024-02-19 15:32:03.917 2024-02-19 15:32:03.917 1000 STREAM 141924 686 5999874 2024-02-19 15:35:03.924 2024-02-19 15:35:03.924 1000 STREAM 141924 18994 5999917 2024-02-19 15:38:03.937 2024-02-19 15:38:03.937 1000 STREAM 141924 12169 5999936 2024-02-19 15:39:03.938 2024-02-19 15:39:03.938 1000 STREAM 141924 18877 5999974 2024-02-19 15:41:03.954 2024-02-19 15:41:03.954 1000 STREAM 141924 19005 5999986 2024-02-19 15:45:03.976 2024-02-19 15:45:03.976 1000 STREAM 141924 963 5999989 2024-02-19 15:46:03.985 2024-02-19 15:46:03.985 1000 STREAM 141924 19924 6000002 2024-02-19 15:47:04.022 2024-02-19 15:47:04.022 1000 STREAM 141924 17517 6000018 2024-02-19 15:49:04.019 2024-02-19 15:49:04.019 1000 STREAM 141924 15594 6000030 2024-02-19 15:50:04.03 2024-02-19 15:50:04.03 1000 STREAM 141924 20715 6000064 2024-02-19 15:54:04.049 2024-02-19 15:54:04.049 1000 STREAM 141924 2963 6000171 2024-02-19 16:00:04.13 2024-02-19 16:00:04.13 1000 STREAM 141924 13547 6000196 2024-02-19 16:04:04.094 2024-02-19 16:04:04.094 1000 STREAM 141924 10409 6000260 2024-02-19 16:08:04.127 2024-02-19 16:08:04.127 1000 STREAM 141924 1354 6000264 2024-02-19 16:10:04.146 2024-02-19 16:10:04.146 1000 STREAM 141924 11240 5999489 2024-02-19 15:06:53.372 2024-02-19 15:06:53.372 1000 FEE 430823 5942 5999509 2024-02-19 15:07:19.184 2024-02-19 15:07:19.184 2000 FEE 430746 5942 5999510 2024-02-19 15:07:19.184 2024-02-19 15:07:19.184 18000 TIP 430746 9758 5999542 2024-02-19 15:08:41.536 2024-02-19 15:08:41.536 2100 FEE 430521 9816 5999543 2024-02-19 15:08:41.536 2024-02-19 15:08:41.536 18900 TIP 430521 1426 5999550 2024-02-19 15:08:59.451 2024-02-19 15:08:59.451 2100 FEE 430784 10719 5999551 2024-02-19 15:08:59.451 2024-02-19 15:08:59.451 18900 TIP 430784 11590 5999556 2024-02-19 15:09:08.617 2024-02-19 15:09:08.617 1000 POLL 430524 1738 5999557 2024-02-19 15:09:13.217 2024-02-19 15:09:13.217 1000 FEE 430826 18412 5999564 2024-02-19 15:09:31.864 2024-02-19 15:09:31.864 1000 FEE 430599 11648 5999565 2024-02-19 15:09:31.864 2024-02-19 15:09:31.864 9000 TIP 430599 5036 5999606 2024-02-19 15:11:25.721 2024-02-19 15:11:25.721 1100 FEE 430790 19018 5999607 2024-02-19 15:11:25.721 2024-02-19 15:11:25.721 9900 TIP 430790 2195 5999621 2024-02-19 15:12:29.141 2024-02-19 15:12:29.141 2100 FEE 430685 4126 5999622 2024-02-19 15:12:29.141 2024-02-19 15:12:29.141 18900 TIP 430685 21003 5999623 2024-02-19 15:12:33.761 2024-02-19 15:12:33.761 1100 FEE 430733 16267 5999624 2024-02-19 15:12:33.761 2024-02-19 15:12:33.761 9900 TIP 430733 965 5999634 2024-02-19 15:12:55.356 2024-02-19 15:12:55.356 7500 FEE 430715 21412 5999635 2024-02-19 15:12:55.356 2024-02-19 15:12:55.356 67500 TIP 430715 6382 5999644 2024-02-19 15:13:00.433 2024-02-19 15:13:00.433 7500 FEE 430715 1495 5999645 2024-02-19 15:13:00.433 2024-02-19 15:13:00.433 67500 TIP 430715 1354 5999646 2024-02-19 15:13:00.539 2024-02-19 15:13:00.539 7500 FEE 430715 20551 5999647 2024-02-19 15:13:00.539 2024-02-19 15:13:00.539 67500 TIP 430715 10693 5999667 2024-02-19 15:13:31.353 2024-02-19 15:13:31.353 1000 FEE 430816 11477 5999668 2024-02-19 15:13:31.353 2024-02-19 15:13:31.353 9000 TIP 430816 18745 5999683 2024-02-19 15:17:20.706 2024-02-19 15:17:20.706 0 FEE 430837 21493 5999696 2024-02-19 15:19:41.553 2024-02-19 15:19:41.553 500 FEE 430776 18892 5999697 2024-02-19 15:19:41.553 2024-02-19 15:19:41.553 4500 TIP 430776 21048 5999721 2024-02-19 15:22:44.575 2024-02-19 15:22:44.575 2300 FEE 430843 20490 5999722 2024-02-19 15:22:44.575 2024-02-19 15:22:44.575 20700 TIP 430843 1738 5999739 2024-02-19 15:24:02.355 2024-02-19 15:24:02.355 1000 FEE 430848 10728 5999742 2024-02-19 15:24:25.969 2024-02-19 15:24:25.969 500 FEE 430805 712 5999743 2024-02-19 15:24:25.969 2024-02-19 15:24:25.969 4500 TIP 430805 19037 5999748 2024-02-19 15:24:33.815 2024-02-19 15:24:33.815 900 FEE 430824 20267 5999749 2024-02-19 15:24:33.815 2024-02-19 15:24:33.815 8100 TIP 430824 10981 5999752 2024-02-19 15:24:47.224 2024-02-19 15:24:47.224 10000 FEE 430837 4415 5999753 2024-02-19 15:24:47.224 2024-02-19 15:24:47.224 90000 TIP 430837 6137 5999758 2024-02-19 15:24:48.535 2024-02-19 15:24:48.535 9000 FEE 430597 9078 5999759 2024-02-19 15:24:48.535 2024-02-19 15:24:48.535 81000 TIP 430597 2776 5999765 2024-02-19 15:26:01.963 2024-02-19 15:26:01.963 1000 FEE 430852 8289 5999776 2024-02-19 15:26:42.622 2024-02-19 15:26:42.622 1100 FEE 430776 13878 5999777 2024-02-19 15:26:42.622 2024-02-19 15:26:42.622 9900 TIP 430776 4250 5999778 2024-02-19 15:26:59.268 2024-02-19 15:26:59.268 4000 FEE 430853 3396 5999779 2024-02-19 15:26:59.268 2024-02-19 15:26:59.268 36000 TIP 430853 21262 5999781 2024-02-19 15:27:20.859 2024-02-19 15:27:20.859 1100 FEE 430799 5746 5999488 2024-02-19 15:06:49.524 2024-02-19 15:06:49.524 2000 FEE 430822 10536 5999497 2024-02-19 15:07:04.636 2024-02-19 15:07:04.636 100 FEE 430736 21003 5999498 2024-02-19 15:07:04.636 2024-02-19 15:07:04.636 900 TIP 430736 14910 5999499 2024-02-19 15:07:04.655 2024-02-19 15:07:04.655 900 FEE 430736 2749 5999500 2024-02-19 15:07:04.655 2024-02-19 15:07:04.655 8100 TIP 430736 18630 5999503 2024-02-19 15:07:14.569 2024-02-19 15:07:14.569 2100 FEE 430607 652 5999504 2024-02-19 15:07:14.569 2024-02-19 15:07:14.569 18900 TIP 430607 15161 5999507 2024-02-19 15:07:15.615 2024-02-19 15:07:15.615 900 FEE 430727 1733 5999508 2024-02-19 15:07:15.615 2024-02-19 15:07:15.615 8100 TIP 430727 19537 5999517 2024-02-19 15:07:23.493 2024-02-19 15:07:23.493 2500 FEE 430567 6383 5999518 2024-02-19 15:07:23.493 2024-02-19 15:07:23.493 22500 TIP 430567 4819 5999540 2024-02-19 15:08:36.825 2024-02-19 15:08:36.825 2100 FEE 430770 17050 5999541 2024-02-19 15:08:36.825 2024-02-19 15:08:36.825 18900 TIP 430770 14650 5999562 2024-02-19 15:09:28.844 2024-02-19 15:09:28.844 2100 FEE 430736 12921 5999563 2024-02-19 15:09:28.844 2024-02-19 15:09:28.844 18900 TIP 430736 11885 5999567 2024-02-19 15:09:35.612 2024-02-19 15:09:35.612 1000 FEE 430828 9874 5999574 2024-02-19 15:10:02.861 2024-02-19 15:10:02.861 1000 FEE 430829 20058 5999580 2024-02-19 15:10:15.946 2024-02-19 15:10:15.946 2100 FEE 430727 19996 5999581 2024-02-19 15:10:15.946 2024-02-19 15:10:15.946 18900 TIP 430727 12097 5999588 2024-02-19 15:10:32.074 2024-02-19 15:10:32.074 100 FEE 430825 5425 5999589 2024-02-19 15:10:32.074 2024-02-19 15:10:32.074 900 TIP 430825 13921 5999602 2024-02-19 15:11:21.306 2024-02-19 15:11:21.306 1100 FEE 430779 20087 5999603 2024-02-19 15:11:21.306 2024-02-19 15:11:21.306 9900 TIP 430779 20502 5999614 2024-02-19 15:11:54.069 2024-02-19 15:11:54.069 2100 FEE 430508 20757 5999615 2024-02-19 15:11:54.069 2024-02-19 15:11:54.069 18900 TIP 430508 2963 5999482 2024-02-19 15:06:31.624 2024-02-19 15:06:31.624 500 FEE 430626 21271 5999483 2024-02-19 15:06:31.624 2024-02-19 15:06:31.624 4500 TIP 430626 10359 5999492 2024-02-19 15:07:00.782 2024-02-19 15:07:00.782 100 FEE 430802 12160 5999493 2024-02-19 15:07:00.782 2024-02-19 15:07:00.782 900 TIP 430802 18626 5999513 2024-02-19 15:07:20.117 2024-02-19 15:07:20.117 9000 FEE 430727 1825 5999514 2024-02-19 15:07:20.117 2024-02-19 15:07:20.117 81000 TIP 430727 21138 5999524 2024-02-19 15:07:44.827 2024-02-19 15:07:44.827 500 FEE 430593 21349 5999525 2024-02-19 15:07:44.827 2024-02-19 15:07:44.827 4500 TIP 430593 5175 5999570 2024-02-19 15:09:59.092 2024-02-19 15:09:59.092 500 FEE 430462 18836 5999571 2024-02-19 15:09:59.092 2024-02-19 15:09:59.092 4500 TIP 430462 15488 5999584 2024-02-19 15:10:28.908 2024-02-19 15:10:28.908 900 FEE 430795 9362 5999585 2024-02-19 15:10:28.908 2024-02-19 15:10:28.908 8100 TIP 430795 14990 5999586 2024-02-19 15:10:29.869 2024-02-19 15:10:29.869 9000 FEE 430795 19836 5999587 2024-02-19 15:10:29.869 2024-02-19 15:10:29.869 81000 TIP 430795 861 5999610 2024-02-19 15:11:35.746 2024-02-19 15:11:35.746 2100 FEE 430518 20594 5999611 2024-02-19 15:11:35.746 2024-02-19 15:11:35.746 18900 TIP 430518 20564 5999619 2024-02-19 15:12:08.082 2024-02-19 15:12:08.082 1000 FEE 430833 13198 5999627 2024-02-19 15:12:47.806 2024-02-19 15:12:47.806 1000 FEE 430752 19795 5999628 2024-02-19 15:12:47.806 2024-02-19 15:12:47.806 9000 TIP 430752 5590 5999632 2024-02-19 15:12:55.03 2024-02-19 15:12:55.03 7500 FEE 430715 18615 5999633 2024-02-19 15:12:55.03 2024-02-19 15:12:55.03 67500 TIP 430715 17523 5999699 2024-02-19 15:20:05.263 2024-02-19 15:20:05.263 500 FEE 430755 1472 5999700 2024-02-19 15:20:05.263 2024-02-19 15:20:05.263 4500 TIP 430755 20452 5999701 2024-02-19 15:20:11.96 2024-02-19 15:20:11.96 200 FEE 430635 18817 5999702 2024-02-19 15:20:11.96 2024-02-19 15:20:11.96 1800 TIP 430635 15160 5999704 2024-02-19 15:20:36.299 2024-02-19 15:20:36.299 75000 DONT_LIKE_THIS 430839 4654 5999713 2024-02-19 15:22:36.202 2024-02-19 15:22:36.202 2100 FEE 430839 19524 5999714 2024-02-19 15:22:36.202 2024-02-19 15:22:36.202 18900 TIP 430839 6136 5999737 2024-02-19 15:23:52.999 2024-02-19 15:23:52.999 1000 FEE 430771 2013 5999738 2024-02-19 15:23:52.999 2024-02-19 15:23:52.999 9000 TIP 430771 12708 5999805 2024-02-19 15:30:09.639 2024-02-19 15:30:09.639 1000 FEE 430859 18368 5999807 2024-02-19 15:30:48.728 2024-02-19 15:30:48.728 1000 FEE 430861 664 5999809 2024-02-19 15:31:16.397 2024-02-19 15:31:16.397 10000 FEE 430862 20058 5999819 2024-02-19 15:32:18.835 2024-02-19 15:32:18.835 1000 FEE 430795 16562 5999820 2024-02-19 15:32:18.835 2024-02-19 15:32:18.835 9000 TIP 430795 10690 5999825 2024-02-19 15:32:20.705 2024-02-19 15:32:20.705 1000 FEE 430795 9705 5999826 2024-02-19 15:32:20.705 2024-02-19 15:32:20.705 9000 TIP 430795 20187 5999835 2024-02-19 15:32:29.925 2024-02-19 15:32:29.925 2000 FEE 430723 4084 5999836 2024-02-19 15:32:29.925 2024-02-19 15:32:29.925 18000 TIP 430723 15337 5999846 2024-02-19 15:33:23.009 2024-02-19 15:33:23.009 1000 FEE 430549 21287 5999847 2024-02-19 15:33:23.009 2024-02-19 15:33:23.009 9000 TIP 430549 937 5999848 2024-02-19 15:33:23.629 2024-02-19 15:33:23.629 1000 FEE 430496 1723 5999849 2024-02-19 15:33:23.629 2024-02-19 15:33:23.629 9000 TIP 430496 1626 5999480 2024-02-19 15:06:30.515 2024-02-19 15:06:30.515 500 FEE 430626 20156 5999481 2024-02-19 15:06:30.515 2024-02-19 15:06:30.515 4500 TIP 430626 20993 5999505 2024-02-19 15:07:15.386 2024-02-19 15:07:15.386 100 FEE 430727 15536 5999506 2024-02-19 15:07:15.386 2024-02-19 15:07:15.386 900 TIP 430727 3518 5999515 2024-02-19 15:07:21.9 2024-02-19 15:07:21.9 10000 FEE 430795 9200 5999516 2024-02-19 15:07:21.9 2024-02-19 15:07:21.9 90000 TIP 430795 20642 5999544 2024-02-19 15:08:50.006 2024-02-19 15:08:50.006 2100 FEE 430524 711 5999545 2024-02-19 15:08:50.006 2024-02-19 15:08:50.006 18900 TIP 430524 746 5999554 2024-02-19 15:09:03.945 2024-02-19 15:09:03.945 500 FEE 430524 11458 5999555 2024-02-19 15:09:03.945 2024-02-19 15:09:03.945 4500 TIP 430524 696 5999560 2024-02-19 15:09:16.148 2024-02-19 15:09:16.148 2100 FEE 430823 12606 5999561 2024-02-19 15:09:16.148 2024-02-19 15:09:16.148 18900 TIP 430823 20152 5999576 2024-02-19 15:10:08.759 2024-02-19 15:10:08.759 500 FEE 429764 20775 5999577 2024-02-19 15:10:08.759 2024-02-19 15:10:08.759 4500 TIP 429764 622 5999592 2024-02-19 15:10:32.994 2024-02-19 15:10:32.994 9000 FEE 430825 1488 5999593 2024-02-19 15:10:32.994 2024-02-19 15:10:32.994 81000 TIP 430825 3342 5999597 2024-02-19 15:10:52.87 2024-02-19 15:10:52.87 2100 FEE 430808 19732 5999598 2024-02-19 15:10:52.87 2024-02-19 15:10:52.87 18900 TIP 430808 2061 5999608 2024-02-19 15:11:31.59 2024-02-19 15:11:31.59 2100 FEE 430510 17415 5999609 2024-02-19 15:11:31.59 2024-02-19 15:11:31.59 18900 TIP 430510 2046 5999612 2024-02-19 15:11:44.725 2024-02-19 15:11:44.725 2100 FEE 430503 21453 5999613 2024-02-19 15:11:44.725 2024-02-19 15:11:44.725 18900 TIP 430503 19839 5999648 2024-02-19 15:13:00.994 2024-02-19 15:13:00.994 7500 FEE 430715 628 5999649 2024-02-19 15:13:00.994 2024-02-19 15:13:00.994 67500 TIP 430715 20525 5999674 2024-02-19 15:14:54.502 2024-02-19 15:14:54.502 1500 FEE 430829 20137 5999675 2024-02-19 15:14:54.502 2024-02-19 15:14:54.502 13500 TIP 430829 6361 5999680 2024-02-19 15:16:47.719 2024-02-19 15:16:47.719 0 FEE 430837 5757 5999725 2024-02-19 15:22:44.986 2024-02-19 15:22:44.986 2300 FEE 430843 19199 5999726 2024-02-19 15:22:44.986 2024-02-19 15:22:44.986 20700 TIP 430843 16965 5999763 2024-02-19 15:25:41.182 2024-02-19 15:25:41.182 4000 FEE 430836 1571 5999764 2024-02-19 15:25:41.182 2024-02-19 15:25:41.182 36000 TIP 430836 21398 5999801 2024-02-19 15:29:04.674 2024-02-19 15:29:04.674 1000 FEE 430857 1505 5999810 2024-02-19 15:31:17.944 2024-02-19 15:31:17.944 2100 FEE 430662 9290 5999811 2024-02-19 15:31:17.944 2024-02-19 15:31:17.944 18900 TIP 430662 20026 5999821 2024-02-19 15:32:19.685 2024-02-19 15:32:19.685 1000 FEE 430795 20183 5999822 2024-02-19 15:32:19.685 2024-02-19 15:32:19.685 9000 TIP 430795 18220 5999833 2024-02-19 15:32:28.833 2024-02-19 15:32:28.833 2100 FEE 430749 20655 5999834 2024-02-19 15:32:28.833 2024-02-19 15:32:28.833 18900 TIP 430749 1352 5999859 2024-02-19 15:33:47.828 2024-02-19 15:33:47.828 1000 FEE 430721 18581 5999860 2024-02-19 15:33:47.828 2024-02-19 15:33:47.828 9000 TIP 430721 18837 5999864 2024-02-19 15:34:19.148 2024-02-19 15:34:19.148 1000 FEE 430755 708 5999865 2024-02-19 15:34:19.148 2024-02-19 15:34:19.148 9000 TIP 430755 2780 5999875 2024-02-19 15:35:16.07 2024-02-19 15:35:16.07 2100 FEE 430837 721 5999876 2024-02-19 15:35:16.07 2024-02-19 15:35:16.07 18900 TIP 430837 7674 5999881 2024-02-19 15:36:18.579 2024-02-19 15:36:18.579 7500 FEE 430779 9551 5999882 2024-02-19 15:36:18.579 2024-02-19 15:36:18.579 67500 TIP 430779 6616 5999883 2024-02-19 15:36:27.391 2024-02-19 15:36:27.391 1000 FEE 430867 15409 5999943 2024-02-19 15:39:35.229 2024-02-19 15:39:35.229 1000 FEE 430619 6765 5999944 2024-02-19 15:39:35.229 2024-02-19 15:39:35.229 9000 TIP 430619 21166 5999955 2024-02-19 15:39:55.803 2024-02-19 15:39:55.803 2300 FEE 430852 15510 5999956 2024-02-19 15:39:55.803 2024-02-19 15:39:55.803 20700 TIP 430852 16724 5999976 2024-02-19 15:42:26.071 2024-02-19 15:42:26.071 10000 FEE 430875 3506 6000005 2024-02-19 15:47:24.916 2024-02-19 15:47:24.916 1000 FEE 430842 18640 6000006 2024-02-19 15:47:24.916 2024-02-19 15:47:24.916 9000 TIP 430842 5829 6000015 2024-02-19 15:48:31.53 2024-02-19 15:48:31.53 1000 FEE 430881 2293 6000066 2024-02-19 15:54:08.408 2024-02-19 15:54:08.408 2100 FEE 430149 1609 6000067 2024-02-19 15:54:08.408 2024-02-19 15:54:08.408 18900 TIP 430149 650 6000084 2024-02-19 15:55:56.115 2024-02-19 15:55:56.115 1000 FEE 430890 19886 6000093 2024-02-19 15:57:50.593 2024-02-19 15:57:50.593 75000 DONT_LIKE_THIS 430891 9184 5999520 2024-02-19 15:07:34.145 2024-02-19 15:07:34.145 500 FEE 430601 6798 5999521 2024-02-19 15:07:34.145 2024-02-19 15:07:34.145 4500 TIP 430601 1007 5999548 2024-02-19 15:08:57.281 2024-02-19 15:08:57.281 2300 FEE 430790 14260 5999549 2024-02-19 15:08:57.281 2024-02-19 15:08:57.281 20700 TIP 430790 21238 5999578 2024-02-19 15:10:12.052 2024-02-19 15:10:12.052 10000 FEE 430607 2309 5999579 2024-02-19 15:10:12.052 2024-02-19 15:10:12.052 90000 TIP 430607 2335 5999582 2024-02-19 15:10:28.705 2024-02-19 15:10:28.705 100 FEE 430795 913 5999583 2024-02-19 15:10:28.705 2024-02-19 15:10:28.705 900 TIP 430795 12946 5999590 2024-02-19 15:10:32.32 2024-02-19 15:10:32.32 900 FEE 430825 21320 5999591 2024-02-19 15:10:32.32 2024-02-19 15:10:32.32 8100 TIP 430825 1221 5999594 2024-02-19 15:10:37.916 2024-02-19 15:10:37.916 1000 FEE 430830 5694 5999595 2024-02-19 15:10:49.451 2024-02-19 15:10:49.451 2100 FEE 430622 18119 5999596 2024-02-19 15:10:49.451 2024-02-19 15:10:49.451 18900 TIP 430622 684 5999600 2024-02-19 15:11:04.031 2024-02-19 15:11:04.031 2100 FEE 430533 18169 5999601 2024-02-19 15:11:04.031 2024-02-19 15:11:04.031 18900 TIP 430533 894 5999604 2024-02-19 15:11:23.395 2024-02-19 15:11:23.395 1100 FEE 430789 1000 5999605 2024-02-19 15:11:23.395 2024-02-19 15:11:23.395 9900 TIP 430789 13987 5999654 2024-02-19 15:13:03.141 2024-02-19 15:13:03.141 7500 FEE 430715 1737 5999655 2024-02-19 15:13:03.141 2024-02-19 15:13:03.141 67500 TIP 430715 20840 5999656 2024-02-19 15:13:03.16 2024-02-19 15:13:03.16 7500 FEE 430715 669 5999657 2024-02-19 15:13:03.16 2024-02-19 15:13:03.16 67500 TIP 430715 1291 5999660 2024-02-19 15:13:03.586 2024-02-19 15:13:03.586 1000 FEE 430591 18865 5999661 2024-02-19 15:13:03.586 2024-02-19 15:13:03.586 9000 TIP 430591 1609 5999669 2024-02-19 15:13:35.384 2024-02-19 15:13:35.384 1000 FEE 430836 894 5999723 2024-02-19 15:22:44.726 2024-02-19 15:22:44.726 2300 FEE 430843 21262 5999724 2024-02-19 15:22:44.726 2024-02-19 15:22:44.726 20700 TIP 430843 20523 5999730 2024-02-19 15:23:24.091 2024-02-19 15:23:24.091 2100 FEE 430734 861 5999731 2024-02-19 15:23:24.091 2024-02-19 15:23:24.091 18900 TIP 430734 20680 5999741 2024-02-19 15:24:20.721 2024-02-19 15:24:20.721 1000 FEE 430849 7998 5999761 2024-02-19 15:25:27.899 2024-02-19 15:25:27.899 1000 FEE 430850 8535 5999787 2024-02-19 15:28:17.426 2024-02-19 15:28:17.426 1000 FEE 426891 6260 5999788 2024-02-19 15:28:17.426 2024-02-19 15:28:17.426 9000 TIP 426891 18270 5999827 2024-02-19 15:32:20.887 2024-02-19 15:32:20.887 1000 FEE 430795 21148 5999828 2024-02-19 15:32:20.887 2024-02-19 15:32:20.887 9000 TIP 430795 16638 5999872 2024-02-19 15:34:26.747 2024-02-19 15:34:26.747 1000 FEE 430550 19995 5999873 2024-02-19 15:34:26.747 2024-02-19 15:34:26.747 9000 TIP 430550 8945 5999892 2024-02-19 15:36:58.021 2024-02-19 15:36:58.021 75000 DONT_LIKE_THIS 430864 7553 5999914 2024-02-19 15:37:41.769 2024-02-19 15:37:41.769 1000 FEE 430872 19907 5999915 2024-02-19 15:37:47.212 2024-02-19 15:37:47.212 1000 FEE 430869 19583 5999916 2024-02-19 15:37:47.212 2024-02-19 15:37:47.212 9000 TIP 430869 4102 5999949 2024-02-19 15:39:38.607 2024-02-19 15:39:38.607 1000 FEE 430549 2347 5999950 2024-02-19 15:39:38.607 2024-02-19 15:39:38.607 9000 TIP 430549 20751 5999951 2024-02-19 15:39:40.898 2024-02-19 15:39:40.898 10000 FEE 430873 5128 5999953 2024-02-19 15:39:55.617 2024-02-19 15:39:55.617 2300 FEE 430852 20430 5999954 2024-02-19 15:39:55.617 2024-02-19 15:39:55.617 20700 TIP 430852 1712 5999998 2024-02-19 15:46:54.219 2024-02-19 15:46:54.219 1000 FEE 430817 14774 5999999 2024-02-19 15:46:54.219 2024-02-19 15:46:54.219 9000 TIP 430817 2710 6000003 2024-02-19 15:47:16.382 2024-02-19 15:47:16.382 4000 FEE 430869 17046 6000004 2024-02-19 15:47:16.382 2024-02-19 15:47:16.382 36000 TIP 430869 1064 6000007 2024-02-19 15:47:29.141 2024-02-19 15:47:29.141 1000 FEE 430880 891 6000036 2024-02-19 15:51:02.057 2024-02-19 15:51:02.057 2100 FEE 430638 1047 6000037 2024-02-19 15:51:02.057 2024-02-19 15:51:02.057 18900 TIP 430638 15266 6000059 2024-02-19 15:52:20.623 2024-02-19 15:52:20.623 2100 FEE 430869 16485 6000060 2024-02-19 15:52:20.623 2024-02-19 15:52:20.623 18900 TIP 430869 12024 6000062 2024-02-19 15:53:05.639 2024-02-19 15:53:05.639 7500 FEE 430876 19435 6000063 2024-02-19 15:53:05.639 2024-02-19 15:53:05.639 67500 TIP 430876 21541 6000065 2024-02-19 15:54:08.349 2024-02-19 15:54:08.349 1000 FEE 430884 4395 6000083 2024-02-19 15:55:50.255 2024-02-19 15:55:50.255 10000 FEE 430889 12222 6000091 2024-02-19 15:57:28.833 2024-02-19 15:57:28.833 2100 FEE 430795 2652 6000092 2024-02-19 15:57:28.833 2024-02-19 15:57:28.833 18900 TIP 430795 19967 6000117 2024-02-19 15:58:13.476 2024-02-19 15:58:13.476 7500 FEE 430892 17030 6000118 2024-02-19 15:58:13.476 2024-02-19 15:58:13.476 67500 TIP 430892 19105 6000127 2024-02-19 15:58:15.221 2024-02-19 15:58:15.221 15000 FEE 430892 18170 6000128 2024-02-19 15:58:15.221 2024-02-19 15:58:15.221 135000 TIP 430892 21509 6000131 2024-02-19 15:58:16.263 2024-02-19 15:58:16.263 15000 FEE 430892 2213 6000132 2024-02-19 15:58:16.263 2024-02-19 15:58:16.263 135000 TIP 430892 19333 6000137 2024-02-19 15:58:24.317 2024-02-19 15:58:24.317 7500 FEE 430892 1881 6000138 2024-02-19 15:58:24.317 2024-02-19 15:58:24.317 67500 TIP 430892 6030 6000172 2024-02-19 16:00:04.507 2024-02-19 16:00:04.507 10000 FEE 430896 1729 6000194 2024-02-19 16:03:46.076 2024-02-19 16:03:46.076 1000 FEE 430901 1389 6000254 2024-02-19 16:07:35.77 2024-02-19 16:07:35.77 7500 FEE 430892 2029 6000255 2024-02-19 16:07:35.77 2024-02-19 16:07:35.77 67500 TIP 430892 19394 6000282 2024-02-19 16:14:55.725 2024-02-19 16:14:55.725 1000 FEE 430781 21387 6000283 2024-02-19 16:14:55.725 2024-02-19 16:14:55.725 9000 TIP 430781 11942 6000291 2024-02-19 16:15:09.686 2024-02-19 16:15:09.686 100 FEE 430892 5069 5999484 2024-02-19 15:06:46.982 2024-02-19 15:06:46.982 500 FEE 430569 6137 5999485 2024-02-19 15:06:46.982 2024-02-19 15:06:46.982 4500 TIP 430569 20133 5999486 2024-02-19 15:06:49.402 2024-02-19 15:06:49.402 500 FEE 430569 11648 5999487 2024-02-19 15:06:49.402 2024-02-19 15:06:49.402 4500 TIP 430569 8385 5999496 2024-02-19 15:07:04.522 2024-02-19 15:07:04.522 1000 STREAM 141924 7659 5999501 2024-02-19 15:07:06.839 2024-02-19 15:07:06.839 2500 FEE 430565 19263 5999502 2024-02-19 15:07:06.839 2024-02-19 15:07:06.839 22500 TIP 430565 18116 5999519 2024-02-19 15:07:26.676 2024-02-19 15:07:26.676 100000 FEE 430824 18984 5999526 2024-02-19 15:07:52.373 2024-02-19 15:07:52.373 100000 FEE 430795 19121 5999527 2024-02-19 15:07:52.373 2024-02-19 15:07:52.373 900000 TIP 430795 21208 5999530 2024-02-19 15:08:21.24 2024-02-19 15:08:21.24 2100 FEE 430822 20276 5999531 2024-02-19 15:08:21.24 2024-02-19 15:08:21.24 18900 TIP 430822 16571 5999552 2024-02-19 15:09:01.792 2024-02-19 15:09:01.792 1000 FEE 430825 20106 5999618 2024-02-19 15:12:07.039 2024-02-19 15:12:07.039 1000 FEE 430832 16124 5999636 2024-02-19 15:12:55.525 2024-02-19 15:12:55.525 7500 FEE 430715 12507 5999637 2024-02-19 15:12:55.525 2024-02-19 15:12:55.525 67500 TIP 430715 3417 5999650 2024-02-19 15:13:01.075 2024-02-19 15:13:01.075 7500 FEE 430715 13843 5999651 2024-02-19 15:13:01.075 2024-02-19 15:13:01.075 67500 TIP 430715 4570 5999678 2024-02-19 15:16:18.528 2024-02-19 15:16:18.528 1000 FEE 429764 7097 5999679 2024-02-19 15:16:18.528 2024-02-19 15:16:18.528 9000 TIP 429764 16848 5999681 2024-02-19 15:16:58.131 2024-02-19 15:16:58.131 1000 FEE 430838 10849 5999691 2024-02-19 15:19:04.44 2024-02-19 15:19:04.44 1000 FEE 430842 15728 5999694 2024-02-19 15:19:22.64 2024-02-19 15:19:22.64 500 FEE 430799 16556 5999695 2024-02-19 15:19:22.64 2024-02-19 15:19:22.64 4500 TIP 430799 2256 5999709 2024-02-19 15:22:08.522 2024-02-19 15:22:08.522 1000 FEE 430844 976 5999736 2024-02-19 15:23:46.151 2024-02-19 15:23:46.151 1000 FEE 430847 2576 5999744 2024-02-19 15:24:28.804 2024-02-19 15:24:28.804 7500 FEE 430848 9367 5999745 2024-02-19 15:24:28.804 2024-02-19 15:24:28.804 67500 TIP 430848 16876 5999746 2024-02-19 15:24:33.496 2024-02-19 15:24:33.496 100 FEE 430824 1429 5999747 2024-02-19 15:24:33.496 2024-02-19 15:24:33.496 900 TIP 430824 21571 5999750 2024-02-19 15:24:34.76 2024-02-19 15:24:34.76 9000 FEE 430824 674 5999751 2024-02-19 15:24:34.76 2024-02-19 15:24:34.76 81000 TIP 430824 20495 5999774 2024-02-19 15:26:42.28 2024-02-19 15:26:42.28 500 FEE 430748 15271 5999775 2024-02-19 15:26:42.28 2024-02-19 15:26:42.28 4500 TIP 430748 15103 5999815 2024-02-19 15:32:04.1 2024-02-19 15:32:04.1 100 FEE 430723 4502 5999816 2024-02-19 15:32:04.1 2024-02-19 15:32:04.1 900 TIP 430723 16830 5999823 2024-02-19 15:32:20.395 2024-02-19 15:32:20.395 1000 FEE 430795 19943 5999824 2024-02-19 15:32:20.395 2024-02-19 15:32:20.395 9000 TIP 430795 1628 5999878 2024-02-19 15:36:07.145 2024-02-19 15:36:07.145 3000 DONT_LIKE_THIS 430864 20781 5999522 2024-02-19 15:07:35.231 2024-02-19 15:07:35.231 500 FEE 430601 18557 5999523 2024-02-19 15:07:35.231 2024-02-19 15:07:35.231 4500 TIP 430601 3213 5999529 2024-02-19 15:08:10.688 2024-02-19 15:08:10.688 100000 DONT_LIKE_THIS 430822 770 5999536 2024-02-19 15:08:34.722 2024-02-19 15:08:34.722 2100 FEE 430507 18629 5999537 2024-02-19 15:08:34.722 2024-02-19 15:08:34.722 18900 TIP 430507 1291 5999538 2024-02-19 15:08:34.754 2024-02-19 15:08:34.754 2300 FEE 430811 20084 5999539 2024-02-19 15:08:34.754 2024-02-19 15:08:34.754 20700 TIP 430811 12951 5999566 2024-02-19 15:09:35.025 2024-02-19 15:09:35.025 1000 FEE 430827 3642 5999568 2024-02-19 15:09:58.205 2024-02-19 15:09:58.205 200 FEE 430824 5387 5999569 2024-02-19 15:09:58.205 2024-02-19 15:09:58.205 1800 TIP 430824 861 5999572 2024-02-19 15:10:01.814 2024-02-19 15:10:01.814 2100 FEE 430792 20657 5999573 2024-02-19 15:10:01.814 2024-02-19 15:10:01.814 18900 TIP 430792 822 5999620 2024-02-19 15:12:28.685 2024-02-19 15:12:28.685 1000 FEE 430834 6688 5999629 2024-02-19 15:12:52.374 2024-02-19 15:12:52.374 21000 FEE 430835 20452 5999638 2024-02-19 15:12:59.906 2024-02-19 15:12:59.906 1500 FEE 430578 17514 5999639 2024-02-19 15:12:59.906 2024-02-19 15:12:59.906 13500 TIP 430578 19615 5999640 2024-02-19 15:13:00.159 2024-02-19 15:13:00.159 7500 FEE 430715 1092 5999641 2024-02-19 15:13:00.159 2024-02-19 15:13:00.159 67500 TIP 430715 1650 5999652 2024-02-19 15:13:01.268 2024-02-19 15:13:01.268 7500 FEE 430715 16684 5999653 2024-02-19 15:13:01.268 2024-02-19 15:13:01.268 67500 TIP 430715 954 5999665 2024-02-19 15:13:22.664 2024-02-19 15:13:22.664 1000 FEE 430556 20603 5999666 2024-02-19 15:13:22.664 2024-02-19 15:13:22.664 9000 TIP 430556 9427 5999672 2024-02-19 15:14:46.131 2024-02-19 15:14:46.131 1000 FEE 430824 16929 5999673 2024-02-19 15:14:46.131 2024-02-19 15:14:46.131 9000 TIP 430824 16542 5999687 2024-02-19 15:18:28.055 2024-02-19 15:18:28.055 1000 FEE 430841 7675 5999692 2024-02-19 15:19:10.037 2024-02-19 15:19:10.037 5000 FEE 430795 9476 5999693 2024-02-19 15:19:10.037 2024-02-19 15:19:10.037 45000 TIP 430795 715 5999710 2024-02-19 15:22:11.801 2024-02-19 15:22:11.801 1000 FEE 430845 13798 5999711 2024-02-19 15:22:18.572 2024-02-19 15:22:18.572 1100 FEE 430824 20291 5999712 2024-02-19 15:22:18.572 2024-02-19 15:22:18.572 9900 TIP 430824 20152 5999715 2024-02-19 15:22:38.946 2024-02-19 15:22:38.946 2300 FEE 430845 659 5999716 2024-02-19 15:22:38.946 2024-02-19 15:22:38.946 20700 TIP 430845 18170 5999717 2024-02-19 15:22:39.099 2024-02-19 15:22:39.099 2300 FEE 430845 17184 5999718 2024-02-19 15:22:39.099 2024-02-19 15:22:39.099 20700 TIP 430845 11716 5999734 2024-02-19 15:23:42.672 2024-02-19 15:23:42.672 1100 FEE 430771 16847 5999735 2024-02-19 15:23:42.672 2024-02-19 15:23:42.672 9900 TIP 430771 12175 5999770 2024-02-19 15:26:31.047 2024-02-19 15:26:31.047 10000 FEE 430397 16178 5999771 2024-02-19 15:26:31.047 2024-02-19 15:26:31.047 90000 TIP 430397 19103 5999783 2024-02-19 15:27:22.748 2024-02-19 15:27:22.748 17000 FEE 430854 9036 5999786 2024-02-19 15:28:06.633 2024-02-19 15:28:06.633 1000 FEE 430856 760 5999793 2024-02-19 15:28:36.825 2024-02-19 15:28:36.825 2100 FEE 430788 16178 5999794 2024-02-19 15:28:36.825 2024-02-19 15:28:36.825 18900 TIP 430788 5752 5999796 2024-02-19 15:28:51.608 2024-02-19 15:28:51.608 100 FEE 147261 18745 5999797 2024-02-19 15:28:51.608 2024-02-19 15:28:51.608 900 TIP 147261 5500 5999817 2024-02-19 15:32:13.967 2024-02-19 15:32:13.967 100 FEE 430841 16998 5999818 2024-02-19 15:32:13.967 2024-02-19 15:32:13.967 900 TIP 430841 12188 5999829 2024-02-19 15:32:21.556 2024-02-19 15:32:21.556 1000 FEE 430795 8385 5999830 2024-02-19 15:32:21.556 2024-02-19 15:32:21.556 9000 TIP 430795 21494 5999839 2024-02-19 15:33:14.335 2024-02-19 15:33:14.335 1000 FEE 430865 5003 5999854 2024-02-19 15:33:24.765 2024-02-19 15:33:24.765 1000 FEE 430771 18635 5999855 2024-02-19 15:33:24.765 2024-02-19 15:33:24.765 9000 TIP 430771 19531 5999866 2024-02-19 15:34:22.662 2024-02-19 15:34:22.662 100 FEE 430863 20577 5999867 2024-02-19 15:34:22.662 2024-02-19 15:34:22.662 900 TIP 430863 19930 5999879 2024-02-19 15:36:18.446 2024-02-19 15:36:18.446 1000 FEE 430861 1609 5999880 2024-02-19 15:36:18.446 2024-02-19 15:36:18.446 9000 TIP 430861 20190 5999900 2024-02-19 15:37:05.627 2024-02-19 15:37:05.627 2000 FEE 430859 1007 5999901 2024-02-19 15:37:05.627 2024-02-19 15:37:05.627 18000 TIP 430859 9337 5999904 2024-02-19 15:37:06.346 2024-02-19 15:37:06.346 1000 FEE 430859 20613 5999905 2024-02-19 15:37:06.346 2024-02-19 15:37:06.346 9000 TIP 430859 1823 5999968 2024-02-19 15:40:29.048 2024-02-19 15:40:29.048 2000 FEE 430862 836 5999969 2024-02-19 15:40:29.048 2024-02-19 15:40:29.048 18000 TIP 430862 19282 5999981 2024-02-19 15:43:30.713 2024-02-19 15:43:30.713 2500 FEE 430601 18472 5999982 2024-02-19 15:43:30.713 2024-02-19 15:43:30.713 22500 TIP 430601 681 5999985 2024-02-19 15:45:00.636 2024-02-19 15:45:00.636 1000 FEE 430877 10484 5999996 2024-02-19 15:46:17.751 2024-02-19 15:46:17.751 300 FEE 430868 9335 5999997 2024-02-19 15:46:17.751 2024-02-19 15:46:17.751 2700 TIP 430868 797 6000016 2024-02-19 15:48:38.661 2024-02-19 15:48:38.661 100 FEE 430828 9350 6000017 2024-02-19 15:48:38.661 2024-02-19 15:48:38.661 900 TIP 430828 2710 6000078 2024-02-19 15:54:52.791 2024-02-19 15:54:52.791 1000 FEE 430887 2077 6000080 2024-02-19 15:55:05.606 2024-02-19 15:55:05.606 1000 FEE 430888 16867 6000115 2024-02-19 15:58:13.344 2024-02-19 15:58:13.344 7500 FEE 430892 20424 6000116 2024-02-19 15:58:13.344 2024-02-19 15:58:13.344 67500 TIP 430892 18629 6000125 2024-02-19 15:58:14.939 2024-02-19 15:58:14.939 7500 FEE 430892 20168 6000126 2024-02-19 15:58:14.939 2024-02-19 15:58:14.939 67500 TIP 430892 9843 6000145 2024-02-19 15:58:24.802 2024-02-19 15:58:24.802 7500 FEE 430892 20502 6000146 2024-02-19 15:58:24.802 2024-02-19 15:58:24.802 67500 TIP 430892 20514 6000153 2024-02-19 15:58:25.25 2024-02-19 15:58:25.25 7500 FEE 430892 2098 6000154 2024-02-19 15:58:25.25 2024-02-19 15:58:25.25 67500 TIP 430892 19281 6000155 2024-02-19 15:58:25.35 2024-02-19 15:58:25.35 7500 FEE 430892 2640 5999490 2024-02-19 15:06:53.669 2024-02-19 15:06:53.669 500 FEE 430496 9655 5999491 2024-02-19 15:06:53.669 2024-02-19 15:06:53.669 4500 TIP 430496 17673 5999494 2024-02-19 15:07:00.977 2024-02-19 15:07:00.977 900 FEE 430802 775 5999495 2024-02-19 15:07:00.977 2024-02-19 15:07:00.977 8100 TIP 430802 11967 5999511 2024-02-19 15:07:19.345 2024-02-19 15:07:19.345 10000 FEE 430795 7389 5999512 2024-02-19 15:07:19.345 2024-02-19 15:07:19.345 90000 TIP 430795 1723 5999528 2024-02-19 15:08:03.826 2024-02-19 15:08:03.826 1000 STREAM 141924 1316 5999532 2024-02-19 15:08:33.817 2024-02-19 15:08:33.817 2300 FEE 430811 9796 5999533 2024-02-19 15:08:33.817 2024-02-19 15:08:33.817 20700 TIP 430811 18076 5999534 2024-02-19 15:08:34.725 2024-02-19 15:08:34.725 2300 FEE 430811 5758 5999535 2024-02-19 15:08:34.725 2024-02-19 15:08:34.725 20700 TIP 430811 16556 5999546 2024-02-19 15:08:56.566 2024-02-19 15:08:56.566 2300 FEE 430789 21323 5999547 2024-02-19 15:08:56.566 2024-02-19 15:08:56.566 20700 TIP 430789 21398 5999558 2024-02-19 15:09:13.721 2024-02-19 15:09:13.721 500 FEE 430155 1173 5999559 2024-02-19 15:09:13.721 2024-02-19 15:09:13.721 4500 TIP 430155 18330 5999575 2024-02-19 15:10:03.897 2024-02-19 15:10:03.897 1000 STREAM 141924 12738 5999599 2024-02-19 15:11:03.851 2024-02-19 15:11:03.851 1000 STREAM 141924 9350 5999642 2024-02-19 15:13:00.415 2024-02-19 15:13:00.415 7500 FEE 430715 19151 5999643 2024-02-19 15:13:00.415 2024-02-19 15:13:00.415 67500 TIP 430715 16505 5999658 2024-02-19 15:13:03.208 2024-02-19 15:13:03.208 7500 FEE 430715 1605 5999659 2024-02-19 15:13:03.208 2024-02-19 15:13:03.208 67500 TIP 430715 18264 5999662 2024-02-19 15:13:03.854 2024-02-19 15:13:03.854 1000 STREAM 141924 15890 5999663 2024-02-19 15:13:05.822 2024-02-19 15:13:05.822 1000 FEE 430603 21057 5999664 2024-02-19 15:13:05.822 2024-02-19 15:13:05.822 9000 TIP 430603 16848 5999677 2024-02-19 15:16:03.889 2024-02-19 15:16:03.889 1000 STREAM 141924 822 5999684 2024-02-19 15:17:25.168 2024-02-19 15:17:25.168 1000 FEE 430839 21402 5999685 2024-02-19 15:18:03.761 2024-02-19 15:18:03.761 10000 FEE 430840 6537 5999686 2024-02-19 15:18:03.876 2024-02-19 15:18:03.876 1000 STREAM 141924 14959 5999690 2024-02-19 15:19:03.886 2024-02-19 15:19:03.886 1000 STREAM 141924 11821 5999698 2024-02-19 15:20:04.072 2024-02-19 15:20:04.072 1000 STREAM 141924 21063 5999705 2024-02-19 15:21:03.884 2024-02-19 15:21:03.884 1000 STREAM 141924 21040 5999706 2024-02-19 15:21:21.766 2024-02-19 15:21:21.766 6400 FEE 430795 20751 5999707 2024-02-19 15:21:21.766 2024-02-19 15:21:21.766 57600 TIP 430795 6160 5999727 2024-02-19 15:23:03.902 2024-02-19 15:23:03.902 1000 STREAM 141924 21422 5999728 2024-02-19 15:23:12.21 2024-02-19 15:23:12.21 2100 FEE 430812 16336 5999729 2024-02-19 15:23:12.21 2024-02-19 15:23:12.21 18900 TIP 430812 16847 5999732 2024-02-19 15:23:28.046 2024-02-19 15:23:28.046 2100 FEE 430824 18873 5999733 2024-02-19 15:23:28.046 2024-02-19 15:23:28.046 18900 TIP 430824 20436 5999756 2024-02-19 15:24:48.032 2024-02-19 15:24:48.032 900 FEE 430597 16858 5999757 2024-02-19 15:24:48.032 2024-02-19 15:24:48.032 8100 TIP 430597 1647 5999769 2024-02-19 15:26:30.982 2024-02-19 15:26:30.982 1000 FEE 430853 10291 5999780 2024-02-19 15:27:03.907 2024-02-19 15:27:03.907 1000 STREAM 141924 11609 5999791 2024-02-19 15:28:25.217 2024-02-19 15:28:25.217 1000 FEE 430823 7682 5999792 2024-02-19 15:28:25.217 2024-02-19 15:28:25.217 9000 TIP 430823 672 5999800 2024-02-19 15:29:03.908 2024-02-19 15:29:03.908 1000 STREAM 141924 1740 5999803 2024-02-19 15:29:33.792 2024-02-19 15:29:33.792 10000 FEE 430858 18690 5999804 2024-02-19 15:30:03.915 2024-02-19 15:30:03.915 1000 STREAM 141924 19459 5999812 2024-02-19 15:31:23.941 2024-02-19 15:31:23.941 2000 FEE 430544 19500 5999813 2024-02-19 15:31:23.941 2024-02-19 15:31:23.941 18000 TIP 430544 669 5999838 2024-02-19 15:33:03.922 2024-02-19 15:33:03.922 1000 STREAM 141924 732 5999842 2024-02-19 15:33:21.725 2024-02-19 15:33:21.725 1000 FEE 430569 15103 5999843 2024-02-19 15:33:21.725 2024-02-19 15:33:21.725 9000 TIP 430569 19639 5999852 2024-02-19 15:33:24.225 2024-02-19 15:33:24.225 1000 FEE 430619 18892 5999853 2024-02-19 15:33:24.225 2024-02-19 15:33:24.225 9000 TIP 430619 3717 5999856 2024-02-19 15:33:37.828 2024-02-19 15:33:37.828 100 FEE 430863 20757 5999857 2024-02-19 15:33:37.828 2024-02-19 15:33:37.828 900 TIP 430863 16556 5999861 2024-02-19 15:34:03.934 2024-02-19 15:34:03.934 1000 STREAM 141924 15161 5999877 2024-02-19 15:36:04.013 2024-02-19 15:36:04.013 1000 STREAM 141924 18751 5999893 2024-02-19 15:37:04.042 2024-02-19 15:37:04.042 1000 STREAM 141924 13204 5999906 2024-02-19 15:37:07.001 2024-02-19 15:37:07.001 1000 FEE 430859 13599 5999907 2024-02-19 15:37:07.001 2024-02-19 15:37:07.001 9000 TIP 430859 7916 5999910 2024-02-19 15:37:10.153 2024-02-19 15:37:10.153 1000 FEE 430870 18274 5999957 2024-02-19 15:39:56.464 2024-02-19 15:39:56.464 2300 FEE 430852 16717 5999958 2024-02-19 15:39:56.464 2024-02-19 15:39:56.464 20700 TIP 430852 18517 5999965 2024-02-19 15:40:04.023 2024-02-19 15:40:04.023 1000 STREAM 141924 21509 5999975 2024-02-19 15:42:03.957 2024-02-19 15:42:03.957 1000 STREAM 141924 18472 5999980 2024-02-19 15:43:03.956 2024-02-19 15:43:03.956 1000 STREAM 141924 9356 5999983 2024-02-19 15:44:03.965 2024-02-19 15:44:03.965 1000 STREAM 141924 20450 6000000 2024-02-19 15:46:57.242 2024-02-19 15:46:57.242 100 FEE 430749 20327 6000001 2024-02-19 15:46:57.242 2024-02-19 15:46:57.242 900 TIP 430749 17046 6000014 2024-02-19 15:48:04.011 2024-02-19 15:48:04.011 1000 STREAM 141924 1433 6000019 2024-02-19 15:49:07.314 2024-02-19 15:49:07.314 100 FEE 430821 16354 6000020 2024-02-19 15:49:07.314 2024-02-19 15:49:07.314 900 TIP 430821 2101 6000028 2024-02-19 15:49:59.936 2024-02-19 15:49:59.936 100 FEE 430739 1729 6000029 2024-02-19 15:49:59.936 2024-02-19 15:49:59.936 900 TIP 430739 20573 6000038 2024-02-19 15:51:04.037 2024-02-19 15:51:04.037 1000 STREAM 141924 5306 6000041 2024-02-19 15:51:17.381 2024-02-19 15:51:17.381 2100 FEE 430689 13753 6000042 2024-02-19 15:51:17.381 2024-02-19 15:51:17.381 18900 TIP 430689 17109 6000043 2024-02-19 15:51:23.938 2024-02-19 15:51:23.938 2100 FEE 430699 4064 6000044 2024-02-19 15:51:23.938 2024-02-19 15:51:23.938 18900 TIP 430699 21441 6000045 2024-02-19 15:51:33.651 2024-02-19 15:51:33.651 100 FEE 430439 979 6000046 2024-02-19 15:51:33.651 2024-02-19 15:51:33.651 900 TIP 430439 18717 6000054 2024-02-19 15:52:04.041 2024-02-19 15:52:04.041 1000 STREAM 141924 687 6000061 2024-02-19 15:53:04.047 2024-02-19 15:53:04.047 1000 STREAM 141924 1208 6000075 2024-02-19 15:54:16.786 2024-02-19 15:54:16.786 7500 FEE 430883 18659 6000076 2024-02-19 15:54:16.786 2024-02-19 15:54:16.786 67500 TIP 430883 876 6000079 2024-02-19 15:55:04.05 2024-02-19 15:55:04.05 1000 STREAM 141924 1429 6000086 2024-02-19 15:56:04.064 2024-02-19 15:56:04.064 1000 STREAM 141924 19637 6000089 2024-02-19 15:57:04.071 2024-02-19 15:57:04.071 1000 STREAM 141924 20623 6000094 2024-02-19 15:58:04.07 2024-02-19 15:58:04.07 1000 STREAM 141924 18472 6000097 2024-02-19 15:58:07.459 2024-02-19 15:58:07.459 7500 FEE 430892 5308 6000098 2024-02-19 15:58:07.459 2024-02-19 15:58:07.459 67500 TIP 430892 9084 6000099 2024-02-19 15:58:07.487 2024-02-19 15:58:07.487 7500 FEE 430892 3304 6000100 2024-02-19 15:58:07.487 2024-02-19 15:58:07.487 67500 TIP 430892 21342 6000113 2024-02-19 15:58:13.224 2024-02-19 15:58:13.224 7500 FEE 430892 20642 6000114 2024-02-19 15:58:13.224 2024-02-19 15:58:13.224 67500 TIP 430892 3213 6000123 2024-02-19 15:58:14.888 2024-02-19 15:58:14.888 7500 FEE 430892 16354 6000124 2024-02-19 15:58:14.888 2024-02-19 15:58:14.888 67500 TIP 430892 16440 6000143 2024-02-19 15:58:24.656 2024-02-19 15:58:24.656 7500 FEE 430892 18270 6000144 2024-02-19 15:58:24.656 2024-02-19 15:58:24.656 67500 TIP 430892 18932 6000162 2024-02-19 15:59:04.082 2024-02-19 15:59:04.082 1000 STREAM 141924 17226 6000168 2024-02-19 15:59:32.275 2024-02-19 15:59:32.275 700 FEE 430704 19435 6000169 2024-02-19 15:59:32.275 2024-02-19 15:59:32.275 6300 TIP 430704 18892 6000170 2024-02-19 15:59:56.066 2024-02-19 15:59:56.066 1000 FEE 430895 19281 6000176 2024-02-19 16:00:40.175 2024-02-19 16:00:40.175 1000 FEE 430898 20225 6000183 2024-02-19 16:00:43.064 2024-02-19 16:00:43.064 2300 FEE 430892 21379 5999616 2024-02-19 15:11:55.406 2024-02-19 15:11:55.406 2000 FEE 430831 10849 5999625 2024-02-19 15:12:35.863 2024-02-19 15:12:35.863 10000 FEE 430685 18664 5999626 2024-02-19 15:12:35.863 2024-02-19 15:12:35.863 90000 TIP 430685 19033 5999630 2024-02-19 15:12:54.823 2024-02-19 15:12:54.823 7500 FEE 430715 20849 5999631 2024-02-19 15:12:54.823 2024-02-19 15:12:54.823 67500 TIP 430715 16178 5999671 2024-02-19 15:14:08.721 2024-02-19 15:14:08.721 10000 FEE 430837 20562 5999688 2024-02-19 15:18:41.991 2024-02-19 15:18:41.991 6400 FEE 430771 19103 5999689 2024-02-19 15:18:41.991 2024-02-19 15:18:41.991 57600 TIP 430771 21026 5999703 2024-02-19 15:20:30.136 2024-02-19 15:20:30.136 1000 FEE 430843 18640 5999719 2024-02-19 15:22:39.229 2024-02-19 15:22:39.229 2300 FEE 430845 17708 5999720 2024-02-19 15:22:39.229 2024-02-19 15:22:39.229 20700 TIP 430845 7682 5999754 2024-02-19 15:24:47.744 2024-02-19 15:24:47.744 100 FEE 430597 21131 5999755 2024-02-19 15:24:47.744 2024-02-19 15:24:47.744 900 TIP 430597 5806 5999762 2024-02-19 15:25:39.396 2024-02-19 15:25:39.396 1000 FEE 430851 14169 5999767 2024-02-19 15:26:15.802 2024-02-19 15:26:15.802 10000 FEE 430323 16858 5999768 2024-02-19 15:26:15.802 2024-02-19 15:26:15.802 90000 TIP 430323 4115 5999772 2024-02-19 15:26:38.288 2024-02-19 15:26:38.288 500 FEE 430742 20117 5999773 2024-02-19 15:26:38.288 2024-02-19 15:26:38.288 4500 TIP 430742 828 5999785 2024-02-19 15:28:05.385 2024-02-19 15:28:05.385 1000 FEE 430855 21064 5999789 2024-02-19 15:28:20.68 2024-02-19 15:28:20.68 100 FEE 147162 21218 5999790 2024-02-19 15:28:20.68 2024-02-19 15:28:20.68 900 TIP 147162 20560 5999802 2024-02-19 15:29:21.001 2024-02-19 15:29:21.001 0 FEE 430856 21400 5999806 2024-02-19 15:30:14.641 2024-02-19 15:30:14.641 10000 FEE 430860 3377 5999831 2024-02-19 15:32:22.592 2024-02-19 15:32:22.592 3000 FEE 430795 6335 5999832 2024-02-19 15:32:22.592 2024-02-19 15:32:22.592 27000 TIP 430795 19105 5999837 2024-02-19 15:32:48.993 2024-02-19 15:32:48.993 1000 FEE 430863 8360 5999891 2024-02-19 15:36:46.267 2024-02-19 15:36:46.267 10000 FEE 430869 19154 5999902 2024-02-19 15:37:06.072 2024-02-19 15:37:06.072 2000 FEE 430859 9906 5999903 2024-02-19 15:37:06.072 2024-02-19 15:37:06.072 18000 TIP 430859 18919 5999908 2024-02-19 15:37:07.713 2024-02-19 15:37:07.713 1000 FEE 430859 1631 5999909 2024-02-19 15:37:07.713 2024-02-19 15:37:07.713 9000 TIP 430859 18359 5999911 2024-02-19 15:37:20.517 2024-02-19 15:37:20.517 500 FEE 430740 4763 5999912 2024-02-19 15:37:20.517 2024-02-19 15:37:20.517 4500 TIP 430740 20585 5999939 2024-02-19 15:39:24.221 2024-02-19 15:39:24.221 1000 FEE 430560 21072 5999940 2024-02-19 15:39:24.221 2024-02-19 15:39:24.221 9000 TIP 430560 18116 5999941 2024-02-19 15:39:34.755 2024-02-19 15:39:34.755 1000 FEE 430771 18629 5999942 2024-02-19 15:39:34.755 2024-02-19 15:39:34.755 9000 TIP 430771 9365 5999961 2024-02-19 15:39:56.689 2024-02-19 15:39:56.689 2300 FEE 430852 4043 5999962 2024-02-19 15:39:56.689 2024-02-19 15:39:56.689 20700 TIP 430852 14037 5999963 2024-02-19 15:39:57.194 2024-02-19 15:39:57.194 2300 FEE 430852 4323 5999964 2024-02-19 15:39:57.194 2024-02-19 15:39:57.194 20700 TIP 430852 5427 5999972 2024-02-19 15:40:30.739 2024-02-19 15:40:30.739 2000 FEE 430862 8544 5999973 2024-02-19 15:40:30.739 2024-02-19 15:40:30.739 18000 TIP 430862 11378 5999978 2024-02-19 15:42:51.805 2024-02-19 15:42:51.805 1000 FEE 430818 9339 5999979 2024-02-19 15:42:51.805 2024-02-19 15:42:51.805 9000 TIP 430818 8095 6000010 2024-02-19 15:47:48.618 2024-02-19 15:47:48.618 100 FEE 430859 21457 6000011 2024-02-19 15:47:48.618 2024-02-19 15:47:48.618 900 TIP 430859 19961 6000012 2024-02-19 15:47:55.471 2024-02-19 15:47:55.471 100 FEE 430848 18231 6000013 2024-02-19 15:47:55.471 2024-02-19 15:47:55.471 900 TIP 430848 17446 6000021 2024-02-19 15:49:19.216 2024-02-19 15:49:19.216 10000 FEE 430882 4238 6000051 2024-02-19 15:51:42.342 2024-02-19 15:51:42.342 2100 FEE 430717 19174 6000052 2024-02-19 15:51:42.342 2024-02-19 15:51:42.342 18900 TIP 430717 19193 6000053 2024-02-19 15:52:02.393 2024-02-19 15:52:02.393 1000 FEE 430883 9427 6000057 2024-02-19 15:52:11.99 2024-02-19 15:52:11.99 2100 FEE 430688 10280 6000058 2024-02-19 15:52:11.99 2024-02-19 15:52:11.99 18900 TIP 430688 1549 6000090 2024-02-19 15:57:28.623 2024-02-19 15:57:28.623 100000 FEE 430892 10102 6000101 2024-02-19 15:58:09.45 2024-02-19 15:58:09.45 7500 FEE 430892 18660 6000102 2024-02-19 15:58:09.45 2024-02-19 15:58:09.45 67500 TIP 430892 21480 6000103 2024-02-19 15:58:12.626 2024-02-19 15:58:12.626 7500 FEE 430892 9336 6000104 2024-02-19 15:58:12.626 2024-02-19 15:58:12.626 67500 TIP 430892 21356 6000105 2024-02-19 15:58:12.778 2024-02-19 15:58:12.778 7500 FEE 430892 21509 6000106 2024-02-19 15:58:12.778 2024-02-19 15:58:12.778 67500 TIP 430892 647 6000111 2024-02-19 15:58:13.15 2024-02-19 15:58:13.15 7500 FEE 430892 1741 6000112 2024-02-19 15:58:13.15 2024-02-19 15:58:13.15 67500 TIP 430892 6300 6000135 2024-02-19 15:58:24.129 2024-02-19 15:58:24.129 15000 FEE 430892 20129 6000136 2024-02-19 15:58:24.129 2024-02-19 15:58:24.129 135000 TIP 430892 9356 6000139 2024-02-19 15:58:24.423 2024-02-19 15:58:24.423 7500 FEE 430892 1800 6000140 2024-02-19 15:58:24.423 2024-02-19 15:58:24.423 67500 TIP 430892 21571 6000163 2024-02-19 15:59:06.866 2024-02-19 15:59:06.866 1600 FEE 430626 13198 6000164 2024-02-19 15:59:06.866 2024-02-19 15:59:06.866 14400 TIP 430626 16485 6000165 2024-02-19 15:59:15.194 2024-02-19 15:59:15.194 1000 FEE 430894 1718 6000199 2024-02-19 16:04:36.447 2024-02-19 16:04:36.447 1100 FEE 430535 2741 6000200 2024-02-19 16:04:36.447 2024-02-19 16:04:36.447 9900 TIP 430535 1769 6000211 2024-02-19 16:04:47.676 2024-02-19 16:04:47.676 1100 FEE 430520 4378 6000212 2024-02-19 16:04:47.676 2024-02-19 16:04:47.676 9900 TIP 430520 9348 6000213 2024-02-19 16:04:47.831 2024-02-19 16:04:47.831 1100 FEE 430520 4118 6000214 2024-02-19 16:04:47.831 2024-02-19 16:04:47.831 9900 TIP 430520 17817 6000217 2024-02-19 16:04:52.071 2024-02-19 16:04:52.071 1100 FEE 430787 17106 6000218 2024-02-19 16:04:52.071 2024-02-19 16:04:52.071 9900 TIP 430787 18454 6000224 2024-02-19 16:05:14.38 2024-02-19 16:05:14.38 800 FEE 430258 13878 6000225 2024-02-19 16:05:14.38 2024-02-19 16:05:14.38 7200 TIP 430258 14308 6000226 2024-02-19 16:05:18.791 2024-02-19 16:05:18.791 1100 FEE 430787 19639 6000227 2024-02-19 16:05:18.791 2024-02-19 16:05:18.791 9900 TIP 430787 19902 6000235 2024-02-19 16:05:35.588 2024-02-19 16:05:35.588 700 FEE 430818 18679 6000236 2024-02-19 16:05:35.588 2024-02-19 16:05:35.588 6300 TIP 430818 4395 6000263 2024-02-19 16:09:19.669 2024-02-19 16:09:19.669 1000 FEE 430906 17800 6000266 2024-02-19 16:11:22.783 2024-02-19 16:11:22.783 4000 FEE 430601 2724 6000267 2024-02-19 16:11:22.783 2024-02-19 16:11:22.783 36000 TIP 430601 13544 6000271 2024-02-19 16:12:23.278 2024-02-19 16:12:23.278 4200 FEE 430713 19732 6000272 2024-02-19 16:12:23.278 2024-02-19 16:12:23.278 37800 TIP 430713 1726 6000295 2024-02-19 16:15:22.823 2024-02-19 16:15:22.823 100 FEE 430903 15617 6000296 2024-02-19 16:15:22.823 2024-02-19 16:15:22.823 900 TIP 430903 21578 6000304 2024-02-19 16:18:11.792 2024-02-19 16:18:11.792 4000 FEE 430619 14260 6000305 2024-02-19 16:18:11.792 2024-02-19 16:18:11.792 36000 TIP 430619 20026 6000326 2024-02-19 16:20:48.818 2024-02-19 16:20:48.818 100 FEE 430881 19352 6000327 2024-02-19 16:20:48.818 2024-02-19 16:20:48.818 900 TIP 430881 16556 6000366 2024-02-19 16:21:57.883 2024-02-19 16:21:57.883 500 FEE 430826 16004 6000367 2024-02-19 16:21:57.883 2024-02-19 16:21:57.883 4500 TIP 430826 9339 6000388 2024-02-19 16:24:50.369 2024-02-19 16:24:50.369 500 FEE 430859 16447 6000389 2024-02-19 16:24:50.369 2024-02-19 16:24:50.369 4500 TIP 430859 11458 6000406 2024-02-19 16:25:52.177 2024-02-19 16:25:52.177 1000 FEE 430927 681 6000410 2024-02-19 16:26:08.208 2024-02-19 16:26:08.208 1000 FEE 430337 2757 6000411 2024-02-19 16:26:08.208 2024-02-19 16:26:08.208 9000 TIP 430337 9330 6000416 2024-02-19 16:26:23.696 2024-02-19 16:26:23.696 15000 FEE 430920 675 6000417 2024-02-19 16:26:23.696 2024-02-19 16:26:23.696 135000 TIP 430920 21501 6000418 2024-02-19 16:26:24.652 2024-02-19 16:26:24.652 7500 FEE 430920 20581 6000419 2024-02-19 16:26:24.652 2024-02-19 16:26:24.652 67500 TIP 430920 1697 5999782 2024-02-19 15:27:20.859 2024-02-19 15:27:20.859 9900 TIP 430799 16667 5999795 2024-02-19 15:28:45.607 2024-02-19 15:28:45.607 0 FEE 430856 18526 5999798 2024-02-19 15:28:55.306 2024-02-19 15:28:55.306 100 FEE 147269 16447 5999799 2024-02-19 15:28:55.306 2024-02-19 15:28:55.306 900 TIP 147269 8376 5999840 2024-02-19 15:33:20.751 2024-02-19 15:33:20.751 1000 FEE 430626 20616 5999841 2024-02-19 15:33:20.751 2024-02-19 15:33:20.751 9000 TIP 430626 1713 5999844 2024-02-19 15:33:22.487 2024-02-19 15:33:22.487 1000 FEE 430795 6361 5999845 2024-02-19 15:33:22.487 2024-02-19 15:33:22.487 9000 TIP 430795 775 5999850 2024-02-19 15:33:24.103 2024-02-19 15:33:24.103 2100 FEE 430695 803 5999851 2024-02-19 15:33:24.103 2024-02-19 15:33:24.103 18900 TIP 430695 18618 5999870 2024-02-19 15:34:24.286 2024-02-19 15:34:24.286 9000 FEE 430863 18446 5999871 2024-02-19 15:34:24.286 2024-02-19 15:34:24.286 81000 TIP 430863 6555 5999896 2024-02-19 15:37:05.056 2024-02-19 15:37:05.056 1000 FEE 430859 18877 5999897 2024-02-19 15:37:05.056 2024-02-19 15:37:05.056 9000 TIP 430859 13055 5999898 2024-02-19 15:37:05.278 2024-02-19 15:37:05.278 1000 FEE 430859 11609 5999899 2024-02-19 15:37:05.278 2024-02-19 15:37:05.278 9000 TIP 430859 21180 5999918 2024-02-19 15:38:36.808 2024-02-19 15:38:36.808 1000 FEE 430861 9246 5999919 2024-02-19 15:38:36.808 2024-02-19 15:38:36.808 9000 TIP 430861 20137 5999924 2024-02-19 15:38:37.168 2024-02-19 15:38:37.168 1000 FEE 430861 21389 5999925 2024-02-19 15:38:37.168 2024-02-19 15:38:37.168 9000 TIP 430861 13575 5999926 2024-02-19 15:38:37.333 2024-02-19 15:38:37.333 1000 FEE 430861 19087 5999927 2024-02-19 15:38:37.333 2024-02-19 15:38:37.333 9000 TIP 430861 15890 5999932 2024-02-19 15:38:38.248 2024-02-19 15:38:38.248 1000 FEE 430861 721 5999933 2024-02-19 15:38:38.248 2024-02-19 15:38:38.248 9000 TIP 430861 732 5999937 2024-02-19 15:39:15.816 2024-02-19 15:39:15.816 1000 FEE 430525 711 5999938 2024-02-19 15:39:15.816 2024-02-19 15:39:15.816 9000 TIP 430525 20245 5999959 2024-02-19 15:39:56.529 2024-02-19 15:39:56.529 2300 FEE 430852 14688 5999960 2024-02-19 15:39:56.529 2024-02-19 15:39:56.529 20700 TIP 430852 15978 5999966 2024-02-19 15:40:28.87 2024-02-19 15:40:28.87 2000 FEE 430862 1596 5999967 2024-02-19 15:40:28.87 2024-02-19 15:40:28.87 18000 TIP 430862 1310 5999970 2024-02-19 15:40:30.436 2024-02-19 15:40:30.436 2100 FEE 213313 20306 5999971 2024-02-19 15:40:30.436 2024-02-19 15:40:30.436 18900 TIP 213313 1198 5999988 2024-02-19 15:45:56.395 2024-02-19 15:45:56.395 10000 FEE 430879 13921 5999990 2024-02-19 15:46:12.522 2024-02-19 15:46:12.522 2300 FEE 430876 18114 5999991 2024-02-19 15:46:12.522 2024-02-19 15:46:12.522 20700 TIP 430876 21453 5999994 2024-02-19 15:46:15.107 2024-02-19 15:46:15.107 2100 FEE 429220 8376 5999995 2024-02-19 15:46:15.107 2024-02-19 15:46:15.107 18900 TIP 429220 697 6000024 2024-02-19 15:49:36.981 2024-02-19 15:49:36.981 100 FEE 430750 6602 6000025 2024-02-19 15:49:36.981 2024-02-19 15:49:36.981 900 TIP 430750 18449 6000026 2024-02-19 15:49:39.278 2024-02-19 15:49:39.278 100 FEE 430749 8289 6000027 2024-02-19 15:49:39.278 2024-02-19 15:49:39.278 900 TIP 430749 15806 6000032 2024-02-19 15:50:54.246 2024-02-19 15:50:54.246 1000 FEE 430795 13174 6000033 2024-02-19 15:50:54.246 2024-02-19 15:50:54.246 9000 TIP 430795 8448 6000039 2024-02-19 15:51:08.818 2024-02-19 15:51:08.818 2100 FEE 430692 1145 6000040 2024-02-19 15:51:08.818 2024-02-19 15:51:08.818 18900 TIP 430692 10821 6000055 2024-02-19 15:52:09.496 2024-02-19 15:52:09.496 2100 FEE 430749 1534 6000056 2024-02-19 15:52:09.496 2024-02-19 15:52:09.496 18900 TIP 430749 20812 6000077 2024-02-19 15:54:31.125 2024-02-19 15:54:31.125 1000 FEE 430886 780 6000085 2024-02-19 15:55:56.689 2024-02-19 15:55:56.689 9000 FEE 430891 16562 6000087 2024-02-19 15:56:24.581 2024-02-19 15:56:24.581 700 FEE 430699 15226 6000088 2024-02-19 15:56:24.581 2024-02-19 15:56:24.581 6300 TIP 430699 16747 6000157 2024-02-19 15:58:25.473 2024-02-19 15:58:25.473 7500 FEE 430892 1772 6000158 2024-02-19 15:58:25.473 2024-02-19 15:58:25.473 67500 TIP 430892 13042 6000166 2024-02-19 15:59:29.424 2024-02-19 15:59:29.424 700 FEE 430704 1438 6000167 2024-02-19 15:59:29.424 2024-02-19 15:59:29.424 6300 TIP 430704 20302 6000177 2024-02-19 16:00:42.542 2024-02-19 16:00:42.542 2300 FEE 430892 20220 6000178 2024-02-19 16:00:42.542 2024-02-19 16:00:42.542 20700 TIP 430892 21072 6000179 2024-02-19 16:00:42.728 2024-02-19 16:00:42.728 2300 FEE 430892 19403 6000180 2024-02-19 16:00:42.728 2024-02-19 16:00:42.728 20700 TIP 430892 20026 6000231 2024-02-19 16:05:26.144 2024-02-19 16:05:26.144 1100 FEE 430127 4502 6000232 2024-02-19 16:05:26.144 2024-02-19 16:05:26.144 9900 TIP 430127 21040 6000244 2024-02-19 16:06:15.234 2024-02-19 16:06:15.234 1600 FEE 430892 20424 6000245 2024-02-19 16:06:15.234 2024-02-19 16:06:15.234 14400 TIP 430892 886 6000281 2024-02-19 16:14:24.709 2024-02-19 16:14:24.709 1000 FEE 430909 17226 6000306 2024-02-19 16:18:14.596 2024-02-19 16:18:14.596 1000 FEE 430912 21563 6000307 2024-02-19 16:18:23.244 2024-02-19 16:18:23.244 4000 FEE 430549 16347 6000308 2024-02-19 16:18:23.244 2024-02-19 16:18:23.244 36000 TIP 430549 6749 6000315 2024-02-19 16:18:53.922 2024-02-19 16:18:53.922 1000 FEE 430915 16788 6000333 2024-02-19 16:20:59.342 2024-02-19 16:20:59.342 100 FEE 430916 732 6000334 2024-02-19 16:20:59.342 2024-02-19 16:20:59.342 900 TIP 430916 11275 6000342 2024-02-19 16:21:34.931 2024-02-19 16:21:34.931 1000 FEE 430790 18705 6000343 2024-02-19 16:21:34.931 2024-02-19 16:21:34.931 9000 TIP 430790 917 6000360 2024-02-19 16:21:52.491 2024-02-19 16:21:52.491 10000 FEE 430869 17316 6000361 2024-02-19 16:21:52.491 2024-02-19 16:21:52.491 90000 TIP 430869 20776 6000383 2024-02-19 16:24:08.731 2024-02-19 16:24:08.731 0 FEE 430920 17109 6000398 2024-02-19 16:24:58.542 2024-02-19 16:24:58.542 500 FEE 430859 18932 6000399 2024-02-19 16:24:58.542 2024-02-19 16:24:58.542 4500 TIP 430859 1141 6000424 2024-02-19 16:26:25.208 2024-02-19 16:26:25.208 7500 FEE 430920 12422 6000425 2024-02-19 16:26:25.208 2024-02-19 16:26:25.208 67500 TIP 430920 4076 6000453 2024-02-19 16:29:35.873 2024-02-19 16:29:35.873 2100 FEE 430752 20881 6000454 2024-02-19 16:29:35.873 2024-02-19 16:29:35.873 18900 TIP 430752 19403 6000468 2024-02-19 16:31:03.52 2024-02-19 16:31:03.52 2300 FEE 430933 17106 6000469 2024-02-19 16:31:03.52 2024-02-19 16:31:03.52 20700 TIP 430933 20858 6000473 2024-02-19 16:31:33.679 2024-02-19 16:31:33.679 1000 FEE 430937 6361 6000488 2024-02-19 16:32:40.703 2024-02-19 16:32:40.703 8300 FEE 429764 7979 6000489 2024-02-19 16:32:40.703 2024-02-19 16:32:40.703 74700 TIP 429764 13042 6000494 2024-02-19 16:32:41.165 2024-02-19 16:32:41.165 16600 FEE 429764 1512 6000495 2024-02-19 16:32:41.165 2024-02-19 16:32:41.165 149400 TIP 429764 21062 6000524 2024-02-19 16:32:58.919 2024-02-19 16:32:58.919 10000 FEE 375811 20353 6000525 2024-02-19 16:32:58.919 2024-02-19 16:32:58.919 90000 TIP 375811 4521 6000531 2024-02-19 16:33:25.48 2024-02-19 16:33:25.48 700 FEE 430934 9874 6000532 2024-02-19 16:33:25.48 2024-02-19 16:33:25.48 6300 TIP 430934 16447 6000535 2024-02-19 16:33:27.92 2024-02-19 16:33:27.92 700 FEE 430934 5578 6000536 2024-02-19 16:33:27.92 2024-02-19 16:33:27.92 6300 TIP 430934 21164 6000544 2024-02-19 16:34:32.029 2024-02-19 16:34:32.029 1000 FEE 430941 925 6000554 2024-02-19 16:35:20.985 2024-02-19 16:35:20.985 0 FEE 430931 2741 6000563 2024-02-19 16:35:48.204 2024-02-19 16:35:48.204 2100 FEE 430731 21521 6000564 2024-02-19 16:35:48.204 2024-02-19 16:35:48.204 18900 TIP 430731 12744 6000565 2024-02-19 16:35:51.696 2024-02-19 16:35:51.696 500 FEE 430857 18630 6000566 2024-02-19 16:35:51.696 2024-02-19 16:35:51.696 4500 TIP 430857 21498 6000602 2024-02-19 16:39:55.746 2024-02-19 16:39:55.746 10000 FEE 430920 14080 6000603 2024-02-19 16:39:55.746 2024-02-19 16:39:55.746 90000 TIP 430920 21369 6000639 2024-02-19 16:42:30.736 2024-02-19 16:42:30.736 100 FEE 430890 18231 6000640 2024-02-19 16:42:30.736 2024-02-19 16:42:30.736 900 TIP 430890 21180 6000645 2024-02-19 16:42:46.293 2024-02-19 16:42:46.293 1000 FEE 430385 8074 6000646 2024-02-19 16:42:46.293 2024-02-19 16:42:46.293 9000 TIP 430385 16848 6000653 2024-02-19 16:42:56.833 2024-02-19 16:42:56.833 500 FEE 430890 21070 5999858 2024-02-19 15:33:39.286 2024-02-19 15:33:39.286 1000 FEE 430866 20585 5999862 2024-02-19 15:34:12.64 2024-02-19 15:34:12.64 2100 FEE 430860 17116 5999863 2024-02-19 15:34:12.64 2024-02-19 15:34:12.64 18900 TIP 430860 15806 5999868 2024-02-19 15:34:22.833 2024-02-19 15:34:22.833 900 FEE 430863 12160 5999869 2024-02-19 15:34:22.833 2024-02-19 15:34:22.833 8100 TIP 430863 4250 5999887 2024-02-19 15:36:40.519 2024-02-19 15:36:40.519 200 FEE 430818 13398 5999888 2024-02-19 15:36:40.519 2024-02-19 15:36:40.519 1800 TIP 430818 21539 5999894 2024-02-19 15:37:04.857 2024-02-19 15:37:04.857 1000 FEE 430859 6229 5999895 2024-02-19 15:37:04.857 2024-02-19 15:37:04.857 9000 TIP 430859 2614 5999920 2024-02-19 15:38:36.991 2024-02-19 15:38:36.991 1000 FEE 430861 9695 5999921 2024-02-19 15:38:36.991 2024-02-19 15:38:36.991 9000 TIP 430861 708 5999928 2024-02-19 15:38:37.437 2024-02-19 15:38:37.437 1000 FEE 430861 1717 5999929 2024-02-19 15:38:37.437 2024-02-19 15:38:37.437 9000 TIP 430861 16194 5999930 2024-02-19 15:38:38.043 2024-02-19 15:38:38.043 2000 FEE 430861 20434 5999931 2024-02-19 15:38:38.043 2024-02-19 15:38:38.043 18000 TIP 430861 20306 5999945 2024-02-19 15:39:36.718 2024-02-19 15:39:36.718 1000 FEE 430626 20509 5999946 2024-02-19 15:39:36.718 2024-02-19 15:39:36.718 9000 TIP 430626 18008 5999952 2024-02-19 15:39:43.736 2024-02-19 15:39:43.736 1000 FEE 430874 7877 5999977 2024-02-19 15:42:43.838 2024-02-19 15:42:43.838 100000 DONT_LIKE_THIS 430875 15978 5999984 2024-02-19 15:44:31.233 2024-02-19 15:44:31.233 1000 FEE 430876 1495 5999992 2024-02-19 15:46:12.989 2024-02-19 15:46:12.989 2300 FEE 430876 12278 5999993 2024-02-19 15:46:12.989 2024-02-19 15:46:12.989 20700 TIP 430876 12277 6000022 2024-02-19 15:49:26.383 2024-02-19 15:49:26.383 100 FEE 430766 21180 6000023 2024-02-19 15:49:26.383 2024-02-19 15:49:26.383 900 TIP 430766 6777 6000049 2024-02-19 15:51:33.993 2024-02-19 15:51:33.993 100 FEE 430439 2056 6000050 2024-02-19 15:51:33.993 2024-02-19 15:51:33.993 900 TIP 430439 15941 6000068 2024-02-19 15:54:09.722 2024-02-19 15:54:09.722 1000 FEE 430885 633 6000073 2024-02-19 15:54:16.141 2024-02-19 15:54:16.141 7500 FEE 430883 21271 6000074 2024-02-19 15:54:16.141 2024-02-19 15:54:16.141 67500 TIP 430883 3396 6000107 2024-02-19 15:58:12.869 2024-02-19 15:58:12.869 7500 FEE 430892 20182 6000108 2024-02-19 15:58:12.869 2024-02-19 15:58:12.869 67500 TIP 430892 14657 6000141 2024-02-19 15:58:24.535 2024-02-19 15:58:24.535 7500 FEE 430892 16296 6000142 2024-02-19 15:58:24.535 2024-02-19 15:58:24.535 67500 TIP 430892 18659 6000147 2024-02-19 15:58:24.907 2024-02-19 15:58:24.907 7500 FEE 430892 18923 6000148 2024-02-19 15:58:24.907 2024-02-19 15:58:24.907 67500 TIP 430892 18270 6000151 2024-02-19 15:58:25.182 2024-02-19 15:58:25.182 7500 FEE 430892 13169 6000152 2024-02-19 15:58:25.182 2024-02-19 15:58:25.182 67500 TIP 430892 9 6000188 2024-02-19 16:01:50.572 2024-02-19 16:01:50.572 0 FEE 430899 10862 6000191 2024-02-19 16:02:57.742 2024-02-19 16:02:57.742 0 FEE 430899 19576 6000203 2024-02-19 16:04:45.107 2024-02-19 16:04:45.107 2200 FEE 430535 1647 6000204 2024-02-19 16:04:45.107 2024-02-19 16:04:45.107 19800 TIP 430535 5308 6000205 2024-02-19 16:04:46.391 2024-02-19 16:04:46.391 1100 FEE 430624 19289 6000206 2024-02-19 16:04:46.391 2024-02-19 16:04:46.391 9900 TIP 430624 876 6000209 2024-02-19 16:04:46.818 2024-02-19 16:04:46.818 1100 FEE 430737 4177 6000210 2024-02-19 16:04:46.818 2024-02-19 16:04:46.818 9900 TIP 430737 21072 6000215 2024-02-19 16:04:51.91 2024-02-19 16:04:51.91 1100 FEE 430787 18051 6000216 2024-02-19 16:04:51.91 2024-02-19 16:04:51.91 9900 TIP 430787 1718 6000219 2024-02-19 16:04:52.176 2024-02-19 16:04:52.176 1100 FEE 430787 1030 6000220 2024-02-19 16:04:52.176 2024-02-19 16:04:52.176 9900 TIP 430787 19198 6000237 2024-02-19 16:05:36.548 2024-02-19 16:05:36.548 700 FEE 430818 631 6000238 2024-02-19 16:05:36.548 2024-02-19 16:05:36.548 6300 TIP 430818 18727 6000246 2024-02-19 16:06:30.955 2024-02-19 16:06:30.955 4000 FEE 430892 9364 6000247 2024-02-19 16:06:30.955 2024-02-19 16:06:30.955 36000 TIP 430892 19121 6000252 2024-02-19 16:07:34.421 2024-02-19 16:07:34.421 7500 FEE 430892 12102 6000253 2024-02-19 16:07:34.421 2024-02-19 16:07:34.421 67500 TIP 430892 19235 6000256 2024-02-19 16:07:37.389 2024-02-19 16:07:37.389 7500 FEE 430892 9529 6000257 2024-02-19 16:07:37.389 2024-02-19 16:07:37.389 67500 TIP 430892 7510 6000276 2024-02-19 16:13:31.843 2024-02-19 16:13:31.843 4200 FEE 430843 20152 6000277 2024-02-19 16:13:31.843 2024-02-19 16:13:31.843 37800 TIP 430843 19886 6000286 2024-02-19 16:14:58.498 2024-02-19 16:14:58.498 1000 FEE 430781 20327 6000287 2024-02-19 16:14:58.498 2024-02-19 16:14:58.498 9000 TIP 430781 1960 6000288 2024-02-19 16:14:59.633 2024-02-19 16:14:59.633 1000 FEE 430781 20272 6000289 2024-02-19 16:14:59.633 2024-02-19 16:14:59.633 9000 TIP 430781 4776 6000331 2024-02-19 16:20:54.591 2024-02-19 16:20:54.591 1000 FEE 430755 2780 6000332 2024-02-19 16:20:54.591 2024-02-19 16:20:54.591 9000 TIP 430755 6555 6000358 2024-02-19 16:21:52.235 2024-02-19 16:21:52.235 10000 FEE 430869 18138 6000359 2024-02-19 16:21:52.235 2024-02-19 16:21:52.235 90000 TIP 430869 16230 6000364 2024-02-19 16:21:53.508 2024-02-19 16:21:53.508 10000 FEE 430869 768 6000365 2024-02-19 16:21:53.508 2024-02-19 16:21:53.508 90000 TIP 430869 15326 6000374 2024-02-19 16:22:38.978 2024-02-19 16:22:38.978 0 FEE 430923 20301 6000392 2024-02-19 16:24:52.132 2024-02-19 16:24:52.132 500 FEE 430859 20802 6000393 2024-02-19 16:24:52.132 2024-02-19 16:24:52.132 4500 TIP 430859 11873 6000442 2024-02-19 16:28:20.405 2024-02-19 16:28:20.405 10000 FEE 430930 15266 6000464 2024-02-19 16:30:39.815 2024-02-19 16:30:39.815 1000 FEE 430936 925 6000465 2024-02-19 16:30:52.339 2024-02-19 16:30:52.339 0 FEE 430931 14950 6000474 2024-02-19 16:31:40.161 2024-02-19 16:31:40.161 1000 FEE 430938 11523 6000508 2024-02-19 16:32:42.539 2024-02-19 16:32:42.539 8300 FEE 429764 20744 6000509 2024-02-19 16:32:42.539 2024-02-19 16:32:42.539 74700 TIP 429764 2942 6000510 2024-02-19 16:32:42.661 2024-02-19 16:32:42.661 8300 FEE 429764 9992 6000511 2024-02-19 16:32:42.661 2024-02-19 16:32:42.661 74700 TIP 429764 1881 6000529 2024-02-19 16:33:24.083 2024-02-19 16:33:24.083 700 FEE 430934 10393 6000530 2024-02-19 16:33:24.083 2024-02-19 16:33:24.083 6300 TIP 430934 20006 6000557 2024-02-19 16:35:24.92 2024-02-19 16:35:24.92 1000 FEE 430920 998 6000558 2024-02-19 16:35:24.92 2024-02-19 16:35:24.92 9000 TIP 430920 19103 6000578 2024-02-19 16:38:33.806 2024-02-19 16:38:33.806 0 FEE 430947 15045 6000583 2024-02-19 16:39:11.993 2024-02-19 16:39:11.993 700 FEE 430900 9346 6000584 2024-02-19 16:39:11.993 2024-02-19 16:39:11.993 6300 TIP 430900 21332 6000601 2024-02-19 16:39:52.058 2024-02-19 16:39:52.058 1000 FEE 430952 18543 6000614 2024-02-19 16:41:18.699 2024-02-19 16:41:18.699 1000 FEE 415222 616 6000615 2024-02-19 16:41:18.699 2024-02-19 16:41:18.699 9000 TIP 415222 18454 6000633 2024-02-19 16:42:07.144 2024-02-19 16:42:07.144 8300 FEE 430953 12346 6000634 2024-02-19 16:42:07.144 2024-02-19 16:42:07.144 74700 TIP 430953 2614 6000689 2024-02-19 16:45:00.428 2024-02-19 16:45:00.428 100 FEE 430920 622 6000690 2024-02-19 16:45:00.428 2024-02-19 16:45:00.428 900 TIP 430920 11523 6000691 2024-02-19 16:45:04.217 2024-02-19 16:45:04.217 100 FEE 430607 18641 6000692 2024-02-19 16:45:04.217 2024-02-19 16:45:04.217 900 TIP 430607 13378 6000698 2024-02-19 16:45:26.707 2024-02-19 16:45:26.707 1000 FEE 430651 20183 6000699 2024-02-19 16:45:26.707 2024-02-19 16:45:26.707 9000 TIP 430651 4128 6000724 2024-02-19 16:45:48.109 2024-02-19 16:45:48.109 2100 FEE 430894 19043 6000725 2024-02-19 16:45:48.109 2024-02-19 16:45:48.109 18900 TIP 430894 17011 6000727 2024-02-19 16:46:02.426 2024-02-19 16:46:02.426 500 FEE 430755 21573 6000728 2024-02-19 16:46:02.426 2024-02-19 16:46:02.426 4500 TIP 430755 20687 6000734 2024-02-19 16:46:18.139 2024-02-19 16:46:18.139 500 FEE 430779 4395 6000735 2024-02-19 16:46:18.139 2024-02-19 16:46:18.139 4500 TIP 430779 627 6000745 2024-02-19 16:47:48.638 2024-02-19 16:47:48.638 1000 FEE 405529 18664 6000746 2024-02-19 16:47:48.638 2024-02-19 16:47:48.638 9000 TIP 405529 18368 6000755 2024-02-19 16:50:04.11 2024-02-19 16:50:04.11 2100 FEE 430920 10934 5999884 2024-02-19 15:36:31.284 2024-02-19 15:36:31.284 7500 FEE 430755 2329 5999885 2024-02-19 15:36:31.284 2024-02-19 15:36:31.284 67500 TIP 430755 19909 5999886 2024-02-19 15:36:35.849 2024-02-19 15:36:35.849 1000 FEE 430868 21275 5999889 2024-02-19 15:36:44.463 2024-02-19 15:36:44.463 7500 FEE 430770 18402 5999890 2024-02-19 15:36:44.463 2024-02-19 15:36:44.463 67500 TIP 430770 21455 5999913 2024-02-19 15:37:39.652 2024-02-19 15:37:39.652 10000 FEE 430871 14688 5999922 2024-02-19 15:38:37.021 2024-02-19 15:38:37.021 1000 FEE 430861 8796 5999923 2024-02-19 15:38:37.021 2024-02-19 15:38:37.021 9000 TIP 430861 2775 5999934 2024-02-19 15:38:41.091 2024-02-19 15:38:41.091 1000 FEE 430861 21036 5999935 2024-02-19 15:38:41.091 2024-02-19 15:38:41.091 9000 TIP 430861 9494 5999947 2024-02-19 15:39:37.275 2024-02-19 15:39:37.275 1000 FEE 430795 1472 5999948 2024-02-19 15:39:37.275 2024-02-19 15:39:37.275 9000 TIP 430795 20964 5999987 2024-02-19 15:45:10.916 2024-02-19 15:45:10.916 1000 FEE 430878 16447 6000008 2024-02-19 15:47:41.008 2024-02-19 15:47:41.008 100 FEE 430878 20861 6000009 2024-02-19 15:47:41.008 2024-02-19 15:47:41.008 900 TIP 430878 12334 6000031 2024-02-19 15:50:52.07 2024-02-19 15:50:52.07 100000 DONT_LIKE_THIS 430882 15180 6000034 2024-02-19 15:50:56.793 2024-02-19 15:50:56.793 100 FEE 430879 2444 6000035 2024-02-19 15:50:56.793 2024-02-19 15:50:56.793 900 TIP 430879 9 6000047 2024-02-19 15:51:33.855 2024-02-19 15:51:33.855 100 FEE 430439 20225 6000048 2024-02-19 15:51:33.855 2024-02-19 15:51:33.855 900 TIP 430439 8168 6000069 2024-02-19 15:54:15.884 2024-02-19 15:54:15.884 700 FEE 430642 19105 6000070 2024-02-19 15:54:15.884 2024-02-19 15:54:15.884 6300 TIP 430642 5865 6000071 2024-02-19 15:54:16.127 2024-02-19 15:54:16.127 7500 FEE 430883 21208 6000072 2024-02-19 15:54:16.127 2024-02-19 15:54:16.127 67500 TIP 430883 726 6000081 2024-02-19 15:55:43.258 2024-02-19 15:55:43.258 700 FEE 430677 17693 6000082 2024-02-19 15:55:43.258 2024-02-19 15:55:43.258 6300 TIP 430677 8506 6000109 2024-02-19 15:58:13.119 2024-02-19 15:58:13.119 7500 FEE 430892 18174 6000110 2024-02-19 15:58:13.119 2024-02-19 15:58:13.119 67500 TIP 430892 4574 6000119 2024-02-19 15:58:14.576 2024-02-19 15:58:14.576 7500 FEE 430892 14037 6000120 2024-02-19 15:58:14.576 2024-02-19 15:58:14.576 67500 TIP 430892 959 6000133 2024-02-19 15:58:23.888 2024-02-19 15:58:23.888 7500 FEE 430892 21281 6000134 2024-02-19 15:58:23.888 2024-02-19 15:58:23.888 67500 TIP 430892 1801 6000159 2024-02-19 15:58:27.889 2024-02-19 15:58:27.889 1000 FEE 430893 13574 6000185 2024-02-19 16:00:45.883 2024-02-19 16:00:45.883 700 FEE 430663 14651 6000186 2024-02-19 16:00:45.883 2024-02-19 16:00:45.883 6300 TIP 430663 5661 6000197 2024-02-19 16:04:34.868 2024-02-19 16:04:34.868 1100 FEE 430535 20276 6000198 2024-02-19 16:04:34.868 2024-02-19 16:04:34.868 9900 TIP 430535 21494 6000201 2024-02-19 16:04:37.624 2024-02-19 16:04:37.624 1100 FEE 430535 2101 6000202 2024-02-19 16:04:37.624 2024-02-19 16:04:37.624 9900 TIP 430535 994 6000230 2024-02-19 16:05:22.924 2024-02-19 16:05:22.924 1000 FEE 430903 4313 6000284 2024-02-19 16:14:57.917 2024-02-19 16:14:57.917 1000 FEE 430781 805 6000285 2024-02-19 16:14:57.917 2024-02-19 16:14:57.917 9000 TIP 430781 20198 6000319 2024-02-19 16:20:03.116 2024-02-19 16:20:03.116 100 FEE 430626 16193 6000320 2024-02-19 16:20:03.116 2024-02-19 16:20:03.116 900 TIP 430626 20663 6000322 2024-02-19 16:20:33.452 2024-02-19 16:20:33.452 100 FEE 430909 4304 6000323 2024-02-19 16:20:33.452 2024-02-19 16:20:33.452 900 TIP 430909 19198 6000330 2024-02-19 16:20:52.401 2024-02-19 16:20:52.401 1000 FEE 430918 21405 6000340 2024-02-19 16:21:34.489 2024-02-19 16:21:34.489 1000 FEE 430789 20660 6000341 2024-02-19 16:21:34.489 2024-02-19 16:21:34.489 9000 TIP 430789 1310 6000352 2024-02-19 16:21:50.968 2024-02-19 16:21:50.968 10000 FEE 430869 861 6000353 2024-02-19 16:21:50.968 2024-02-19 16:21:50.968 90000 TIP 430869 18409 6000354 2024-02-19 16:21:51.315 2024-02-19 16:21:51.315 10000 FEE 430869 10094 6000355 2024-02-19 16:21:51.315 2024-02-19 16:21:51.315 90000 TIP 430869 20220 6000362 2024-02-19 16:21:52.943 2024-02-19 16:21:52.943 10000 FEE 430869 21155 6000363 2024-02-19 16:21:52.943 2024-02-19 16:21:52.943 90000 TIP 430869 16154 6000379 2024-02-19 16:23:06.138 2024-02-19 16:23:06.138 1000 FEE 430869 5828 6000380 2024-02-19 16:23:06.138 2024-02-19 16:23:06.138 9000 TIP 430869 19907 6000405 2024-02-19 16:25:20.91 2024-02-19 16:25:20.91 1000 FEE 430926 19535 6000431 2024-02-19 16:26:25.961 2024-02-19 16:26:25.961 7500 FEE 430920 1751 6000432 2024-02-19 16:26:25.961 2024-02-19 16:26:25.961 67500 TIP 430920 1173 6000435 2024-02-19 16:26:50.697 2024-02-19 16:26:50.697 10000 FEE 430929 1617 6000440 2024-02-19 16:27:31.049 2024-02-19 16:27:31.049 100000 DONT_LIKE_THIS 430919 1585 6000445 2024-02-19 16:29:20.31 2024-02-19 16:29:20.31 10000 FEE 399226 2402 6000446 2024-02-19 16:29:20.31 2024-02-19 16:29:20.31 90000 TIP 399226 14472 6000459 2024-02-19 16:29:57.72 2024-02-19 16:29:57.72 10000 FEE 430892 5637 6000460 2024-02-19 16:29:57.72 2024-02-19 16:29:57.72 90000 TIP 430892 3729 6000498 2024-02-19 16:32:41.515 2024-02-19 16:32:41.515 8300 FEE 429764 17552 6000499 2024-02-19 16:32:41.515 2024-02-19 16:32:41.515 74700 TIP 429764 19661 6000504 2024-02-19 16:32:42.149 2024-02-19 16:32:42.149 8300 FEE 429764 11164 6000505 2024-02-19 16:32:42.149 2024-02-19 16:32:42.149 74700 TIP 429764 13759 6000553 2024-02-19 16:35:09.735 2024-02-19 16:35:09.735 1000 FEE 430944 21172 6000574 2024-02-19 16:38:08.467 2024-02-19 16:38:08.467 1000 FEE 430860 21427 6000575 2024-02-19 16:38:08.467 2024-02-19 16:38:08.467 9000 TIP 430860 16867 6000581 2024-02-19 16:39:10.405 2024-02-19 16:39:10.405 1400 FEE 430900 19043 6000582 2024-02-19 16:39:10.405 2024-02-19 16:39:10.405 12600 TIP 430900 19841 6000585 2024-02-19 16:39:18.204 2024-02-19 16:39:18.204 100 FEE 430762 16301 6000586 2024-02-19 16:39:18.204 2024-02-19 16:39:18.204 900 TIP 430762 18877 6000605 2024-02-19 16:40:28.657 2024-02-19 16:40:28.657 100000 FEE 430953 964 6000664 2024-02-19 16:43:08.152 2024-02-19 16:43:08.152 1000 FEE 430263 21262 6000665 2024-02-19 16:43:08.152 2024-02-19 16:43:08.152 9000 TIP 430263 6749 6000696 2024-02-19 16:45:26.486 2024-02-19 16:45:26.486 1000 FEE 430651 6003 6000697 2024-02-19 16:45:26.486 2024-02-19 16:45:26.486 9000 TIP 430651 13759 6000702 2024-02-19 16:45:27.277 2024-02-19 16:45:27.277 1000 FEE 430651 2077 6000703 2024-02-19 16:45:27.277 2024-02-19 16:45:27.277 9000 TIP 430651 21344 6000718 2024-02-19 16:45:29.758 2024-02-19 16:45:29.758 1000 FEE 430651 21591 6000719 2024-02-19 16:45:29.758 2024-02-19 16:45:29.758 9000 TIP 430651 8926 6000742 2024-02-19 16:47:20.352 2024-02-19 16:47:20.352 1000 FEE 430961 19661 6000753 2024-02-19 16:50:00.972 2024-02-19 16:50:00.972 1000 FEE 430967 3544 6000770 2024-02-19 16:51:56.842 2024-02-19 16:51:56.842 1000 FEE 430969 16355 6000806 2024-02-19 16:58:31.859 2024-02-19 16:58:31.859 4000 FEE 430967 18016 6000807 2024-02-19 16:58:31.859 2024-02-19 16:58:31.859 36000 TIP 430967 21562 6000820 2024-02-19 16:58:50.206 2024-02-19 16:58:50.206 1000 FEE 430331 4624 6000821 2024-02-19 16:58:50.206 2024-02-19 16:58:50.206 9000 TIP 430331 2042 6000834 2024-02-19 17:00:45.039 2024-02-19 17:00:45.039 100 FEE 430675 1051 6000835 2024-02-19 17:00:45.039 2024-02-19 17:00:45.039 900 TIP 430675 18556 6000836 2024-02-19 17:00:45.541 2024-02-19 17:00:45.541 100 FEE 430675 18309 6000837 2024-02-19 17:00:45.541 2024-02-19 17:00:45.541 900 TIP 430675 782 6000838 2024-02-19 17:00:45.786 2024-02-19 17:00:45.786 10000 FEE 430981 18262 6000857 2024-02-19 17:00:59.607 2024-02-19 17:00:59.607 100 FEE 430695 21116 6000858 2024-02-19 17:00:59.607 2024-02-19 17:00:59.607 900 TIP 430695 18274 6000871 2024-02-19 17:01:52.348 2024-02-19 17:01:52.348 1000 FEE 430923 19320 6000872 2024-02-19 17:01:52.348 2024-02-19 17:01:52.348 9000 TIP 430923 8059 6000882 2024-02-19 17:02:08.461 2024-02-19 17:02:08.461 10000 FEE 430985 746 6000887 2024-02-19 17:02:37.368 2024-02-19 17:02:37.368 1000 FEE 430986 12122 6000896 2024-02-19 17:03:31.616 2024-02-19 17:03:31.616 100 FEE 430690 20066 6000897 2024-02-19 17:03:31.616 2024-02-19 17:03:31.616 900 TIP 430690 15544 6000936 2024-02-19 17:04:49.972 2024-02-19 17:04:49.972 100 FEE 430655 18518 6000095 2024-02-19 15:58:07.109 2024-02-19 15:58:07.109 7500 FEE 430892 2224 6000096 2024-02-19 15:58:07.109 2024-02-19 15:58:07.109 67500 TIP 430892 5449 6000121 2024-02-19 15:58:14.705 2024-02-19 15:58:14.705 7500 FEE 430892 3342 6000122 2024-02-19 15:58:14.705 2024-02-19 15:58:14.705 67500 TIP 430892 20756 6000129 2024-02-19 15:58:15.986 2024-02-19 15:58:15.986 7500 FEE 430892 15367 6000130 2024-02-19 15:58:15.986 2024-02-19 15:58:15.986 67500 TIP 430892 19809 6000149 2024-02-19 15:58:25.016 2024-02-19 15:58:25.016 7500 FEE 430892 6335 6000150 2024-02-19 15:58:25.016 2024-02-19 15:58:25.016 67500 TIP 430892 17707 6000160 2024-02-19 15:58:39.122 2024-02-19 15:58:39.122 2100 FEE 430879 20647 6000161 2024-02-19 15:58:39.122 2024-02-19 15:58:39.122 18900 TIP 430879 20717 6000193 2024-02-19 16:03:23.382 2024-02-19 16:03:23.382 0 FEE 430899 2640 6000207 2024-02-19 16:04:46.652 2024-02-19 16:04:46.652 1100 FEE 430737 5703 6000208 2024-02-19 16:04:46.652 2024-02-19 16:04:46.652 9900 TIP 430737 13198 6000228 2024-02-19 16:05:19.181 2024-02-19 16:05:19.181 1100 FEE 430787 19500 6000229 2024-02-19 16:05:19.181 2024-02-19 16:05:19.181 9900 TIP 430787 19148 6000258 2024-02-19 16:07:46.735 2024-02-19 16:07:46.735 10000 FEE 430608 21349 6000259 2024-02-19 16:07:46.735 2024-02-19 16:07:46.735 90000 TIP 430608 16250 6000273 2024-02-19 16:12:34.765 2024-02-19 16:12:34.765 1000 FEE 430907 21398 6000278 2024-02-19 16:13:37.275 2024-02-19 16:13:37.275 4200 FEE 430824 21539 6000279 2024-02-19 16:13:37.275 2024-02-19 16:13:37.275 37800 TIP 430824 14404 6000301 2024-02-19 16:17:09.472 2024-02-19 16:17:09.472 4000 FEE 430837 18680 6000302 2024-02-19 16:17:09.472 2024-02-19 16:17:09.472 36000 TIP 430837 20280 6000317 2024-02-19 16:19:17.041 2024-02-19 16:19:17.041 1000 FEE 430916 3990 6000328 2024-02-19 16:20:51.769 2024-02-19 16:20:51.769 7500 FEE 430913 11897 6000329 2024-02-19 16:20:51.769 2024-02-19 16:20:51.769 67500 TIP 430913 12708 6000336 2024-02-19 16:21:14.138 2024-02-19 16:21:14.138 100 FEE 430433 17291 6000337 2024-02-19 16:21:14.138 2024-02-19 16:21:14.138 900 TIP 430433 20619 6000344 2024-02-19 16:21:42.446 2024-02-19 16:21:42.446 10000 FEE 430919 7847 6000348 2024-02-19 16:21:50.161 2024-02-19 16:21:50.161 10000 FEE 430869 20133 6000349 2024-02-19 16:21:50.161 2024-02-19 16:21:50.161 90000 TIP 430869 10668 6000350 2024-02-19 16:21:50.592 2024-02-19 16:21:50.592 10000 FEE 430869 1130 6000351 2024-02-19 16:21:50.592 2024-02-19 16:21:50.592 90000 TIP 430869 8284 6000368 2024-02-19 16:22:00.229 2024-02-19 16:22:00.229 1000 FEE 430921 9167 6000376 2024-02-19 16:22:56.933 2024-02-19 16:22:56.933 1000 FEE 430897 1652 6000377 2024-02-19 16:22:56.933 2024-02-19 16:22:56.933 9000 TIP 430897 717 6000394 2024-02-19 16:24:52.809 2024-02-19 16:24:52.809 500 FEE 430859 18832 6000395 2024-02-19 16:24:52.809 2024-02-19 16:24:52.809 4500 TIP 430859 658 6000396 2024-02-19 16:24:53.66 2024-02-19 16:24:53.66 500 FEE 430859 15075 6000397 2024-02-19 16:24:53.66 2024-02-19 16:24:53.66 4500 TIP 430859 15049 6000400 2024-02-19 16:24:59.247 2024-02-19 16:24:59.247 500 FEE 430859 4102 6000401 2024-02-19 16:24:59.247 2024-02-19 16:24:59.247 4500 TIP 430859 15139 6000412 2024-02-19 16:26:09.799 2024-02-19 16:26:09.799 1000 FEE 430289 17714 6000413 2024-02-19 16:26:09.799 2024-02-19 16:26:09.799 9000 TIP 430289 12102 6000420 2024-02-19 16:26:24.895 2024-02-19 16:26:24.895 7500 FEE 430920 19910 6000421 2024-02-19 16:26:24.895 2024-02-19 16:26:24.895 67500 TIP 430920 21238 6000426 2024-02-19 16:26:25.407 2024-02-19 16:26:25.407 1000 FEE 430928 11714 6000427 2024-02-19 16:26:25.701 2024-02-19 16:26:25.701 7500 FEE 430920 1718 6000428 2024-02-19 16:26:25.701 2024-02-19 16:26:25.701 67500 TIP 430920 11158 6000429 2024-02-19 16:26:25.828 2024-02-19 16:26:25.828 7500 FEE 430920 20799 6000430 2024-02-19 16:26:25.828 2024-02-19 16:26:25.828 67500 TIP 430920 739 6000433 2024-02-19 16:26:26.057 2024-02-19 16:26:26.057 7500 FEE 430920 19031 6000434 2024-02-19 16:26:26.057 2024-02-19 16:26:26.057 67500 TIP 430920 1814 6000447 2024-02-19 16:29:21.708 2024-02-19 16:29:21.708 10000 FEE 411435 4076 6000448 2024-02-19 16:29:21.708 2024-02-19 16:29:21.708 90000 TIP 411435 13575 6000458 2024-02-19 16:29:44.53 2024-02-19 16:29:44.53 10000 FEE 430934 2528 6000466 2024-02-19 16:31:03.387 2024-02-19 16:31:03.387 2300 FEE 430933 1723 6000467 2024-02-19 16:31:03.387 2024-02-19 16:31:03.387 20700 TIP 430933 8505 6000482 2024-02-19 16:32:40.133 2024-02-19 16:32:40.133 8300 FEE 429764 21401 6000483 2024-02-19 16:32:40.133 2024-02-19 16:32:40.133 74700 TIP 429764 1060 6000486 2024-02-19 16:32:40.594 2024-02-19 16:32:40.594 8300 FEE 429764 5308 6000487 2024-02-19 16:32:40.594 2024-02-19 16:32:40.594 74700 TIP 429764 20168 6000490 2024-02-19 16:32:40.894 2024-02-19 16:32:40.894 8300 FEE 429764 20560 6000491 2024-02-19 16:32:40.894 2024-02-19 16:32:40.894 74700 TIP 429764 6300 6000512 2024-02-19 16:32:48.264 2024-02-19 16:32:48.264 8300 FEE 430155 18673 6000513 2024-02-19 16:32:48.264 2024-02-19 16:32:48.264 74700 TIP 430155 20153 6000545 2024-02-19 16:34:49.829 2024-02-19 16:34:49.829 1000 FEE 430942 21090 6000555 2024-02-19 16:35:23.781 2024-02-19 16:35:23.781 1000 FEE 430923 917 6000556 2024-02-19 16:35:23.781 2024-02-19 16:35:23.781 9000 TIP 430923 20551 6000569 2024-02-19 16:37:04.621 2024-02-19 16:37:04.621 1000 FEE 430945 20646 6000589 2024-02-19 16:39:36.986 2024-02-19 16:39:36.986 100 FEE 430771 21609 6000590 2024-02-19 16:39:36.986 2024-02-19 16:39:36.986 900 TIP 430771 8045 6000591 2024-02-19 16:39:37.098 2024-02-19 16:39:37.098 100 FEE 430771 19151 6000592 2024-02-19 16:39:37.098 2024-02-19 16:39:37.098 900 TIP 430771 15491 6000610 2024-02-19 16:40:50.602 2024-02-19 16:40:50.602 1000 FEE 414936 2000 6000611 2024-02-19 16:40:50.602 2024-02-19 16:40:50.602 9000 TIP 414936 16347 6000612 2024-02-19 16:41:03.906 2024-02-19 16:41:03.906 10000 FEE 430954 20981 6000621 2024-02-19 16:41:52.172 2024-02-19 16:41:52.172 100 FEE 430948 21395 6000622 2024-02-19 16:41:52.172 2024-02-19 16:41:52.172 900 TIP 430948 19117 6000627 2024-02-19 16:41:52.957 2024-02-19 16:41:52.957 100 FEE 430948 9845 6000628 2024-02-19 16:41:52.957 2024-02-19 16:41:52.957 900 TIP 430948 11515 6000655 2024-02-19 16:43:01.972 2024-02-19 16:43:01.972 800 FEE 430747 1717 6000656 2024-02-19 16:43:01.972 2024-02-19 16:43:01.972 7200 TIP 430747 14465 6000662 2024-02-19 16:43:07.612 2024-02-19 16:43:07.612 1000 FEE 430263 19569 6000663 2024-02-19 16:43:07.612 2024-02-19 16:43:07.612 9000 TIP 430263 1195 6000674 2024-02-19 16:43:37.528 2024-02-19 16:43:37.528 1000 FEE 430957 13622 6000694 2024-02-19 16:45:23.621 2024-02-19 16:45:23.621 8300 FEE 430942 794 6000695 2024-02-19 16:45:23.621 2024-02-19 16:45:23.621 74700 TIP 430942 717 6000708 2024-02-19 16:45:28.412 2024-02-19 16:45:28.412 1000 FEE 430651 14545 6000709 2024-02-19 16:45:28.412 2024-02-19 16:45:28.412 9000 TIP 430651 11648 6000712 2024-02-19 16:45:28.75 2024-02-19 16:45:28.75 1000 FEE 430651 17741 6000713 2024-02-19 16:45:28.75 2024-02-19 16:45:28.75 9000 TIP 430651 2577 6000716 2024-02-19 16:45:29.163 2024-02-19 16:45:29.163 1000 FEE 430651 13378 6000717 2024-02-19 16:45:29.163 2024-02-19 16:45:29.163 9000 TIP 430651 13100 6000720 2024-02-19 16:45:34.258 2024-02-19 16:45:34.258 2100 FEE 430638 21194 6000721 2024-02-19 16:45:34.258 2024-02-19 16:45:34.258 18900 TIP 430638 6578 6000748 2024-02-19 16:48:09.743 2024-02-19 16:48:09.743 10000 FEE 430963 5036 6000761 2024-02-19 16:50:19.435 2024-02-19 16:50:19.435 100 FEE 430771 19980 6000762 2024-02-19 16:50:19.435 2024-02-19 16:50:19.435 900 TIP 430771 10016 6000775 2024-02-19 16:52:23.405 2024-02-19 16:52:23.405 1000 FEE 430941 4166 6000776 2024-02-19 16:52:23.405 2024-02-19 16:52:23.405 9000 TIP 430941 2718 6000796 2024-02-19 16:56:38.851 2024-02-19 16:56:38.851 1000 FEE 430975 20922 6000799 2024-02-19 16:56:44.569 2024-02-19 16:56:44.569 1000 FEE 430971 10536 6000800 2024-02-19 16:56:44.569 2024-02-19 16:56:44.569 9000 TIP 430971 21021 6000801 2024-02-19 16:56:45.025 2024-02-19 16:56:45.025 1000 FEE 430971 18533 6000802 2024-02-19 16:56:45.025 2024-02-19 16:56:45.025 9000 TIP 430971 2776 6000808 2024-02-19 16:58:33.356 2024-02-19 16:58:33.356 1000 FEE 430977 4624 6000822 2024-02-19 16:58:50.535 2024-02-19 16:58:50.535 1000 FEE 430331 21523 6000156 2024-02-19 15:58:25.35 2024-02-19 15:58:25.35 67500 TIP 430892 12175 6000173 2024-02-19 16:00:04.962 2024-02-19 16:00:04.962 1000 FEE 430897 1564 6000174 2024-02-19 16:00:05.947 2024-02-19 16:00:05.947 3200 FEE 430795 2322 6000175 2024-02-19 16:00:05.947 2024-02-19 16:00:05.947 28800 TIP 430795 8242 6000181 2024-02-19 16:00:42.936 2024-02-19 16:00:42.936 2300 FEE 430892 20117 6000182 2024-02-19 16:00:42.936 2024-02-19 16:00:42.936 20700 TIP 430892 19613 6000233 2024-02-19 16:05:27.23 2024-02-19 16:05:27.23 1100 FEE 430127 16194 6000234 2024-02-19 16:05:27.23 2024-02-19 16:05:27.23 9900 TIP 430127 18500 6000239 2024-02-19 16:05:36.583 2024-02-19 16:05:36.583 700 FEE 430818 9816 6000240 2024-02-19 16:05:36.583 2024-02-19 16:05:36.583 6300 TIP 430818 18101 6000261 2024-02-19 16:08:47.688 2024-02-19 16:08:47.688 1000 FEE 430905 19034 6000268 2024-02-19 16:11:24.209 2024-02-19 16:11:24.209 36000 FEE 430601 21119 6000269 2024-02-19 16:11:24.209 2024-02-19 16:11:24.209 324000 TIP 430601 18743 6000338 2024-02-19 16:21:33.938 2024-02-19 16:21:33.938 1000 FEE 430779 14370 6000339 2024-02-19 16:21:33.938 2024-02-19 16:21:33.938 9000 TIP 430779 7185 6000370 2024-02-19 16:22:09.105 2024-02-19 16:22:09.105 1000 FEE 430922 19809 6000371 2024-02-19 16:22:18.013 2024-02-19 16:22:18.013 10000 FEE 430923 16424 6000403 2024-02-19 16:25:17.505 2024-02-19 16:25:17.505 10000 FEE 427762 10638 6000404 2024-02-19 16:25:17.505 2024-02-19 16:25:17.505 90000 TIP 427762 19501 6000414 2024-02-19 16:26:10.15 2024-02-19 16:26:10.15 1000 FEE 430291 18313 6000415 2024-02-19 16:26:10.15 2024-02-19 16:26:10.15 9000 TIP 430291 18396 6000437 2024-02-19 16:27:04.561 2024-02-19 16:27:04.561 0 FEE 430929 705 6000452 2024-02-19 16:29:30.5 2024-02-19 16:29:30.5 1000 FEE 430933 17411 6000496 2024-02-19 16:32:41.418 2024-02-19 16:32:41.418 8300 FEE 429764 21222 6000497 2024-02-19 16:32:41.418 2024-02-19 16:32:41.418 74700 TIP 429764 9346 6000502 2024-02-19 16:32:41.993 2024-02-19 16:32:41.993 8300 FEE 429764 17682 6000503 2024-02-19 16:32:41.993 2024-02-19 16:32:41.993 74700 TIP 429764 16424 6000506 2024-02-19 16:32:42.364 2024-02-19 16:32:42.364 8300 FEE 429764 4692 6000507 2024-02-19 16:32:42.364 2024-02-19 16:32:42.364 74700 TIP 429764 17212 6000516 2024-02-19 16:32:48.952 2024-02-19 16:32:48.952 8300 FEE 430155 21157 6000517 2024-02-19 16:32:48.952 2024-02-19 16:32:48.952 74700 TIP 430155 2309 6000522 2024-02-19 16:32:49.801 2024-02-19 16:32:49.801 8300 FEE 430155 13076 6000523 2024-02-19 16:32:49.801 2024-02-19 16:32:49.801 74700 TIP 430155 19777 6000527 2024-02-19 16:33:23.929 2024-02-19 16:33:23.929 700 FEE 430934 20439 6000528 2024-02-19 16:33:23.929 2024-02-19 16:33:23.929 6300 TIP 430934 19018 6000541 2024-02-19 16:33:59.195 2024-02-19 16:33:59.195 2100 FEE 430834 1806 6000542 2024-02-19 16:33:59.195 2024-02-19 16:33:59.195 18900 TIP 430834 21104 6000546 2024-02-19 16:34:50.906 2024-02-19 16:34:50.906 4000 FEE 430934 633 6000547 2024-02-19 16:34:50.906 2024-02-19 16:34:50.906 36000 TIP 430934 10094 6000549 2024-02-19 16:34:57.028 2024-02-19 16:34:57.028 0 FEE 430931 9166 6000550 2024-02-19 16:34:59.891 2024-02-19 16:34:59.891 1000 FEE 430700 19566 6000551 2024-02-19 16:34:59.891 2024-02-19 16:34:59.891 9000 TIP 430700 13517 6000559 2024-02-19 16:35:26.036 2024-02-19 16:35:26.036 1000 FEE 430879 20623 6000560 2024-02-19 16:35:26.036 2024-02-19 16:35:26.036 9000 TIP 430879 928 6000641 2024-02-19 16:42:44.644 2024-02-19 16:42:44.644 100 FEE 430747 7746 6000642 2024-02-19 16:42:44.644 2024-02-19 16:42:44.644 900 TIP 430747 21067 6000666 2024-02-19 16:43:08.353 2024-02-19 16:43:08.353 1000 FEE 430263 18507 6000667 2024-02-19 16:43:08.353 2024-02-19 16:43:08.353 9000 TIP 430263 4521 6000670 2024-02-19 16:43:36.566 2024-02-19 16:43:36.566 400 FEE 430908 17415 6000671 2024-02-19 16:43:36.566 2024-02-19 16:43:36.566 3600 TIP 430908 11430 6000679 2024-02-19 16:44:08.184 2024-02-19 16:44:08.184 15000 FEE 430321 4014 6000680 2024-02-19 16:44:08.184 2024-02-19 16:44:08.184 135000 TIP 430321 21208 6000683 2024-02-19 16:44:19.726 2024-02-19 16:44:19.726 100 FEE 430795 18357 6000684 2024-02-19 16:44:19.726 2024-02-19 16:44:19.726 900 TIP 430795 18629 6000687 2024-02-19 16:44:28.911 2024-02-19 16:44:28.911 100 FEE 430770 20901 6000688 2024-02-19 16:44:28.911 2024-02-19 16:44:28.911 900 TIP 430770 21451 6000730 2024-02-19 16:46:13.293 2024-02-19 16:46:13.293 1000 FEE 415310 687 6000731 2024-02-19 16:46:13.293 2024-02-19 16:46:13.293 9000 TIP 415310 9342 6000741 2024-02-19 16:47:17.431 2024-02-19 16:47:17.431 1000 FEE 430960 1209 6000765 2024-02-19 16:50:26.149 2024-02-19 16:50:26.149 1000 FEE 404205 18836 6000766 2024-02-19 16:50:26.149 2024-02-19 16:50:26.149 9000 TIP 404205 11789 6000772 2024-02-19 16:52:09.481 2024-02-19 16:52:09.481 1000 FEE 430970 12102 6000782 2024-02-19 16:53:30.037 2024-02-19 16:53:30.037 700 FEE 430478 721 6000783 2024-02-19 16:53:30.037 2024-02-19 16:53:30.037 6300 TIP 430478 836 6000784 2024-02-19 16:53:44.772 2024-02-19 16:53:44.772 1700 FEE 430499 20657 6000785 2024-02-19 16:53:44.772 2024-02-19 16:53:44.772 15300 TIP 430499 12808 6000792 2024-02-19 16:55:17.688 2024-02-19 16:55:17.688 1000 FEE 430974 13361 6000793 2024-02-19 16:55:27.368 2024-02-19 16:55:27.368 300 FEE 430605 1389 6000794 2024-02-19 16:55:27.368 2024-02-19 16:55:27.368 2700 TIP 430605 7418 6000805 2024-02-19 16:58:24.357 2024-02-19 16:58:24.357 1000 FEE 430976 1609 6000839 2024-02-19 17:00:45.999 2024-02-19 17:00:45.999 100 FEE 430675 1273 6000840 2024-02-19 17:00:45.999 2024-02-19 17:00:45.999 900 TIP 430675 1394 6000843 2024-02-19 17:00:46.873 2024-02-19 17:00:46.873 100 FEE 430675 1454 6000844 2024-02-19 17:00:46.873 2024-02-19 17:00:46.873 900 TIP 430675 2460 6000847 2024-02-19 17:00:47.811 2024-02-19 17:00:47.811 100 FEE 430675 10668 6000848 2024-02-19 17:00:47.811 2024-02-19 17:00:47.811 900 TIP 430675 10728 6000885 2024-02-19 17:02:12.302 2024-02-19 17:02:12.302 27000 FEE 430892 7376 6000886 2024-02-19 17:02:12.302 2024-02-19 17:02:12.302 243000 TIP 430892 14037 6000892 2024-02-19 17:03:30.788 2024-02-19 17:03:30.788 100 FEE 430690 1802 6000893 2024-02-19 17:03:30.788 2024-02-19 17:03:30.788 900 TIP 430690 14545 6000914 2024-02-19 17:03:50.358 2024-02-19 17:03:50.358 0 FEE 430986 831 6000915 2024-02-19 17:03:58.914 2024-02-19 17:03:58.914 10000 FEE 430918 18658 6000916 2024-02-19 17:03:58.914 2024-02-19 17:03:58.914 90000 TIP 430918 19888 6000920 2024-02-19 17:04:40.456 2024-02-19 17:04:40.456 100 FEE 430658 1465 6000921 2024-02-19 17:04:40.456 2024-02-19 17:04:40.456 900 TIP 430658 20272 6000934 2024-02-19 17:04:49.316 2024-02-19 17:04:49.316 100 FEE 430655 21588 6000935 2024-02-19 17:04:49.316 2024-02-19 17:04:49.316 900 TIP 430655 19036 6000950 2024-02-19 17:05:01.113 2024-02-19 17:05:01.113 20000 FEE 430920 16177 6000951 2024-02-19 17:05:01.113 2024-02-19 17:05:01.113 180000 TIP 430920 9551 6000973 2024-02-19 17:05:14.064 2024-02-19 17:05:14.064 100 FEE 430633 9345 6000974 2024-02-19 17:05:14.064 2024-02-19 17:05:14.064 900 TIP 430633 5597 6000995 2024-02-19 17:05:46.038 2024-02-19 17:05:46.038 1000 FEE 430200 13927 6000996 2024-02-19 17:05:46.038 2024-02-19 17:05:46.038 9000 TIP 430200 2513 6001001 2024-02-19 17:05:47.298 2024-02-19 17:05:47.298 1000 FEE 430200 21430 6001002 2024-02-19 17:05:47.298 2024-02-19 17:05:47.298 9000 TIP 430200 11967 6001003 2024-02-19 17:05:49.914 2024-02-19 17:05:49.914 100 FEE 430766 17095 6001004 2024-02-19 17:05:49.914 2024-02-19 17:05:49.914 900 TIP 430766 21064 6001009 2024-02-19 17:05:50.703 2024-02-19 17:05:50.703 100 FEE 430766 2256 6001010 2024-02-19 17:05:50.703 2024-02-19 17:05:50.703 900 TIP 430766 732 6001032 2024-02-19 17:13:35.285 2024-02-19 17:13:35.285 1000 FEE 430771 15119 6001033 2024-02-19 17:13:35.285 2024-02-19 17:13:35.285 9000 TIP 430771 1429 6001044 2024-02-19 17:14:18.906 2024-02-19 17:14:18.906 1000 DONT_LIKE_THIS 430770 19174 6001072 2024-02-19 17:17:25.592 2024-02-19 17:17:25.592 1000 FEE 430607 1007 6001073 2024-02-19 17:17:25.592 2024-02-19 17:17:25.592 9000 TIP 430607 12744 6001089 2024-02-19 17:19:41.223 2024-02-19 17:19:41.223 1000 FEE 431001 6058 6001096 2024-02-19 17:20:44.194 2024-02-19 17:20:44.194 1000 FEE 431003 18815 6001102 2024-02-19 17:21:20.797 2024-02-19 17:21:20.797 1000 FEE 431008 11491 6000184 2024-02-19 16:00:43.064 2024-02-19 16:00:43.064 20700 TIP 430892 2293 6000190 2024-02-19 16:02:23.585 2024-02-19 16:02:23.585 10000 FEE 430900 19378 6000195 2024-02-19 16:04:01.917 2024-02-19 16:04:01.917 1000 FEE 430902 19332 6000221 2024-02-19 16:04:52.429 2024-02-19 16:04:52.429 1100 FEE 430787 18473 6000222 2024-02-19 16:04:52.429 2024-02-19 16:04:52.429 9900 TIP 430787 8569 6000241 2024-02-19 16:05:42.846 2024-02-19 16:05:42.846 800 FEE 430507 2513 6000242 2024-02-19 16:05:42.846 2024-02-19 16:05:42.846 7200 TIP 430507 1970 6000249 2024-02-19 16:07:06.657 2024-02-19 16:07:06.657 1000 FEE 430904 19992 6000250 2024-02-19 16:07:34.39 2024-02-19 16:07:34.39 7500 FEE 430892 19292 6000251 2024-02-19 16:07:34.39 2024-02-19 16:07:34.39 67500 TIP 430892 14404 6000274 2024-02-19 16:12:38.613 2024-02-19 16:12:38.613 1000 FEE 430908 12819 6000293 2024-02-19 16:15:17.069 2024-02-19 16:15:17.069 100 FEE 430898 18774 6000294 2024-02-19 16:15:17.069 2024-02-19 16:15:17.069 900 TIP 430898 7877 6000297 2024-02-19 16:15:33.757 2024-02-19 16:15:33.757 1000 FEE 430910 18470 6000309 2024-02-19 16:18:27.715 2024-02-19 16:18:27.715 10000 FEE 430913 618 6000318 2024-02-19 16:19:17.481 2024-02-19 16:19:17.481 1000 FEE 430917 8664 6000356 2024-02-19 16:21:51.674 2024-02-19 16:21:51.674 10000 FEE 430869 20326 6000357 2024-02-19 16:21:51.674 2024-02-19 16:21:51.674 90000 TIP 430869 18897 6000372 2024-02-19 16:22:35.026 2024-02-19 16:22:35.026 1000 FEE 430824 726 6000373 2024-02-19 16:22:35.026 2024-02-19 16:22:35.026 9000 TIP 430824 1273 6000381 2024-02-19 16:23:11.055 2024-02-19 16:23:11.055 1000 FEE 430925 738 6000390 2024-02-19 16:24:51.255 2024-02-19 16:24:51.255 500 FEE 430859 633 6000391 2024-02-19 16:24:51.255 2024-02-19 16:24:51.255 4500 TIP 430859 11862 6000407 2024-02-19 16:25:52.807 2024-02-19 16:25:52.807 200 FEE 430919 11829 6000408 2024-02-19 16:25:52.807 2024-02-19 16:25:52.807 1800 TIP 430919 11829 6000456 2024-02-19 16:29:39.412 2024-02-19 16:29:39.412 2100 FEE 430865 12049 6000457 2024-02-19 16:29:39.412 2024-02-19 16:29:39.412 18900 TIP 430865 1326 6000463 2024-02-19 16:30:34.817 2024-02-19 16:30:34.817 0 FEE 430931 9335 6000471 2024-02-19 16:31:15.163 2024-02-19 16:31:15.163 4000 FEE 430931 19886 6000472 2024-02-19 16:31:15.163 2024-02-19 16:31:15.163 36000 TIP 430931 6384 6000476 2024-02-19 16:32:11.392 2024-02-19 16:32:11.392 1600 FEE 430920 5308 6000477 2024-02-19 16:32:11.392 2024-02-19 16:32:11.392 14400 TIP 430920 4819 6000480 2024-02-19 16:32:39.999 2024-02-19 16:32:39.999 8300 FEE 429764 18581 6000481 2024-02-19 16:32:39.999 2024-02-19 16:32:39.999 74700 TIP 429764 18470 6000514 2024-02-19 16:32:48.428 2024-02-19 16:32:48.428 8300 FEE 430155 21573 6000515 2024-02-19 16:32:48.428 2024-02-19 16:32:48.428 74700 TIP 430155 2328 6000520 2024-02-19 16:32:49.612 2024-02-19 16:32:49.612 8300 FEE 430155 21033 6000521 2024-02-19 16:32:49.612 2024-02-19 16:32:49.612 74700 TIP 430155 913 6000537 2024-02-19 16:33:28.675 2024-02-19 16:33:28.675 700 FEE 430934 14122 6000538 2024-02-19 16:33:28.675 2024-02-19 16:33:28.675 6300 TIP 430934 1454 6000587 2024-02-19 16:39:36.762 2024-02-19 16:39:36.762 100 FEE 430771 20502 6000588 2024-02-19 16:39:36.762 2024-02-19 16:39:36.762 900 TIP 430771 20495 6000606 2024-02-19 16:40:33.294 2024-02-19 16:40:33.294 1000 FEE 362242 917 6000607 2024-02-19 16:40:33.294 2024-02-19 16:40:33.294 9000 TIP 362242 14472 6000617 2024-02-19 16:41:50.866 2024-02-19 16:41:50.866 4000 FEE 430648 8713 6000618 2024-02-19 16:41:50.866 2024-02-19 16:41:50.866 36000 TIP 430648 992 6000619 2024-02-19 16:41:51.436 2024-02-19 16:41:51.436 36000 FEE 430648 828 6000620 2024-02-19 16:41:51.436 2024-02-19 16:41:51.436 324000 TIP 430648 16354 6000631 2024-02-19 16:41:58.012 2024-02-19 16:41:58.012 1000 FEE 430956 1626 6000637 2024-02-19 16:42:23.193 2024-02-19 16:42:23.193 8300 FEE 430955 21037 6000638 2024-02-19 16:42:23.193 2024-02-19 16:42:23.193 74700 TIP 430955 14465 6000643 2024-02-19 16:42:45.702 2024-02-19 16:42:45.702 1000 FEE 430385 18679 6000644 2024-02-19 16:42:45.702 2024-02-19 16:42:45.702 9000 TIP 430385 2749 6000672 2024-02-19 16:43:37.521 2024-02-19 16:43:37.521 400 FEE 430938 4259 6000673 2024-02-19 16:43:37.521 2024-02-19 16:43:37.521 3600 TIP 430938 9916 6000677 2024-02-19 16:43:51.467 2024-02-19 16:43:51.467 10000 FEE 430958 21492 6000722 2024-02-19 16:45:34.696 2024-02-19 16:45:34.696 2100 FEE 430638 12265 6000723 2024-02-19 16:45:34.696 2024-02-19 16:45:34.696 18900 TIP 430638 8796 6000751 2024-02-19 16:49:34.348 2024-02-19 16:49:34.348 1000 FEE 430965 5359 6000752 2024-02-19 16:49:36.906 2024-02-19 16:49:36.906 1000 FEE 430966 11450 6000754 2024-02-19 16:50:03.428 2024-02-19 16:50:03.428 0 FEE 430964 16598 6000758 2024-02-19 16:50:10.642 2024-02-19 16:50:10.642 8300 FEE 430960 636 6000759 2024-02-19 16:50:10.642 2024-02-19 16:50:10.642 74700 TIP 430960 1224 6000768 2024-02-19 16:51:12.556 2024-02-19 16:51:12.556 700 FEE 430417 13398 6000769 2024-02-19 16:51:12.556 2024-02-19 16:51:12.556 6300 TIP 430417 1817 6000787 2024-02-19 16:54:14.093 2024-02-19 16:54:14.093 0 FEE 430964 16858 6000813 2024-02-19 16:58:44.38 2024-02-19 16:58:44.38 1000 FEE 430978 18690 6000818 2024-02-19 16:58:49.927 2024-02-19 16:58:49.927 1000 FEE 430331 940 6000819 2024-02-19 16:58:49.927 2024-02-19 16:58:49.927 9000 TIP 430331 19524 6000831 2024-02-19 17:00:06.436 2024-02-19 17:00:06.436 1000 FEE 430980 987 6000849 2024-02-19 17:00:58.166 2024-02-19 17:00:58.166 100 FEE 430695 14278 6000850 2024-02-19 17:00:58.166 2024-02-19 17:00:58.166 900 TIP 430695 981 6000902 2024-02-19 17:03:37.286 2024-02-19 17:03:37.286 1000 FEE 430987 7978 6000944 2024-02-19 17:04:56.387 2024-02-19 17:04:56.387 1000 FEE 430195 20156 6000945 2024-02-19 17:04:56.387 2024-02-19 17:04:56.387 9000 TIP 430195 21573 6000953 2024-02-19 17:05:06.35 2024-02-19 17:05:06.35 100 FEE 430653 17218 6000954 2024-02-19 17:05:06.35 2024-02-19 17:05:06.35 900 TIP 430653 2724 6000957 2024-02-19 17:05:07.202 2024-02-19 17:05:07.202 100 FEE 430653 6310 6000958 2024-02-19 17:05:07.202 2024-02-19 17:05:07.202 900 TIP 430653 21228 6000991 2024-02-19 17:05:41.929 2024-02-19 17:05:41.929 100 FEE 430878 14357 6000992 2024-02-19 17:05:41.929 2024-02-19 17:05:41.929 900 TIP 430878 20287 6001015 2024-02-19 17:08:06.988 2024-02-19 17:08:06.988 1000 FEE 430991 18230 6001031 2024-02-19 17:13:23.941 2024-02-19 17:13:23.941 10000 FEE 430994 1439 6001064 2024-02-19 17:16:36.416 2024-02-19 17:16:36.416 10000 FEE 430762 18659 6001065 2024-02-19 17:16:36.416 2024-02-19 17:16:36.416 90000 TIP 430762 8004 6001066 2024-02-19 17:16:39.668 2024-02-19 17:16:39.668 800 FEE 430771 20624 6001067 2024-02-19 17:16:39.668 2024-02-19 17:16:39.668 7200 TIP 430771 13878 6001115 2024-02-19 17:21:47.943 2024-02-19 17:21:47.943 1000 FEE 431017 9347 6001119 2024-02-19 17:21:58.294 2024-02-19 17:21:58.294 1000 FEE 431021 9183 6001120 2024-02-19 17:22:00.992 2024-02-19 17:22:00.992 1000 FEE 431022 19576 6001124 2024-02-19 17:22:31.163 2024-02-19 17:22:31.163 1000 FEE 431025 9476 6001126 2024-02-19 17:22:37.19 2024-02-19 17:22:37.19 1000 FEE 431027 696 6001128 2024-02-19 17:22:40.852 2024-02-19 17:22:40.852 1000 FEE 431029 18139 6001130 2024-02-19 17:22:46.08 2024-02-19 17:22:46.08 1000 FEE 431031 21555 6001132 2024-02-19 17:22:51.716 2024-02-19 17:22:51.716 1000 FEE 431033 18637 6001143 2024-02-19 17:23:00.168 2024-02-19 17:23:00.168 100 FEE 430906 19147 6001144 2024-02-19 17:23:00.168 2024-02-19 17:23:00.168 900 TIP 430906 15060 6001155 2024-02-19 17:23:02.628 2024-02-19 17:23:02.628 100 FEE 430906 5160 6001156 2024-02-19 17:23:02.628 2024-02-19 17:23:02.628 900 TIP 430906 21501 6001176 2024-02-19 17:23:06.628 2024-02-19 17:23:06.628 100 FEE 430794 7983 6001177 2024-02-19 17:23:06.628 2024-02-19 17:23:06.628 900 TIP 430794 7827 6001194 2024-02-19 17:23:14.67 2024-02-19 17:23:14.67 2100 FEE 430771 19033 6001195 2024-02-19 17:23:14.67 2024-02-19 17:23:14.67 18900 TIP 430771 20715 6001233 2024-02-19 17:24:19.579 2024-02-19 17:24:19.579 1000 FEE 431044 2367 6001239 2024-02-19 17:24:43.637 2024-02-19 17:24:43.637 1000 FEE 431050 6058 6001242 2024-02-19 17:24:51.168 2024-02-19 17:24:51.168 1000 FEE 431053 9611 6001243 2024-02-19 17:24:53.295 2024-02-19 17:24:53.295 1000 FEE 431054 1718 6000187 2024-02-19 16:01:04.082 2024-02-19 16:01:04.082 1000 STREAM 141924 9078 6000189 2024-02-19 16:02:04.083 2024-02-19 16:02:04.083 1000 STREAM 141924 897 6000192 2024-02-19 16:03:04.081 2024-02-19 16:03:04.081 1000 STREAM 141924 19309 6000223 2024-02-19 16:05:04.099 2024-02-19 16:05:04.099 1000 STREAM 141924 1493 6000243 2024-02-19 16:06:04.104 2024-02-19 16:06:04.104 1000 STREAM 141924 928 6000248 2024-02-19 16:07:04.117 2024-02-19 16:07:04.117 1000 STREAM 141924 4128 6000262 2024-02-19 16:09:04.131 2024-02-19 16:09:04.131 1000 STREAM 141924 13097 6000280 2024-02-19 16:14:04.132 2024-02-19 16:14:04.132 1000 STREAM 141924 1465 6000290 2024-02-19 16:15:04.136 2024-02-19 16:15:04.136 1000 STREAM 141924 10096 6000300 2024-02-19 16:17:04.157 2024-02-19 16:17:04.157 1000 STREAM 141924 7668 6000316 2024-02-19 16:19:04.163 2024-02-19 16:19:04.163 1000 STREAM 141924 688 6000321 2024-02-19 16:20:04.182 2024-02-19 16:20:04.182 1000 STREAM 141924 7425 6000335 2024-02-19 16:21:04.173 2024-02-19 16:21:04.173 1000 STREAM 141924 20871 6000378 2024-02-19 16:23:04.179 2024-02-19 16:23:04.179 1000 STREAM 141924 20597 6000382 2024-02-19 16:24:04.304 2024-02-19 16:24:04.304 1000 STREAM 141924 5487 6000409 2024-02-19 16:26:04.19 2024-02-19 16:26:04.19 1000 STREAM 141924 21021 6000436 2024-02-19 16:27:04.188 2024-02-19 16:27:04.188 1000 STREAM 141924 11288 6000441 2024-02-19 16:28:04.199 2024-02-19 16:28:04.199 1000 STREAM 141924 21389 6000443 2024-02-19 16:29:04.208 2024-02-19 16:29:04.208 1000 STREAM 141924 21458 6000475 2024-02-19 16:32:04.207 2024-02-19 16:32:04.207 1000 STREAM 141924 3506 6000526 2024-02-19 16:33:04.216 2024-02-19 16:33:04.216 1000 STREAM 141924 4984 6000543 2024-02-19 16:34:04.234 2024-02-19 16:34:04.234 1000 STREAM 141924 14950 6000552 2024-02-19 16:35:04.233 2024-02-19 16:35:04.233 1000 STREAM 141924 897 6000567 2024-02-19 16:36:04.245 2024-02-19 16:36:04.245 1000 STREAM 141924 917 6000613 2024-02-19 16:41:04.32 2024-02-19 16:41:04.32 1000 STREAM 141924 20073 6000632 2024-02-19 16:42:04.271 2024-02-19 16:42:04.271 1000 STREAM 141924 13544 6000657 2024-02-19 16:43:04.268 2024-02-19 16:43:04.268 1000 STREAM 141924 6268 6000678 2024-02-19 16:44:04.343 2024-02-19 16:44:04.343 1000 STREAM 141924 9494 6000740 2024-02-19 16:47:04.319 2024-02-19 16:47:04.319 1000 STREAM 141924 19446 6000749 2024-02-19 16:49:04.286 2024-02-19 16:49:04.286 1000 STREAM 141924 21393 6000786 2024-02-19 16:54:04.411 2024-02-19 16:54:04.411 1000 STREAM 141924 15728 6000859 2024-02-19 17:01:04.378 2024-02-19 17:01:04.378 1000 STREAM 141924 15266 6000881 2024-02-19 17:02:04.374 2024-02-19 17:02:04.374 1000 STREAM 141924 13174 6000891 2024-02-19 17:03:04.389 2024-02-19 17:03:04.389 1000 STREAM 141924 19296 6000917 2024-02-19 17:04:04.384 2024-02-19 17:04:04.384 1000 STREAM 141924 16848 6001011 2024-02-19 17:06:04.441 2024-02-19 17:06:04.441 1000 STREAM 141924 11164 6001030 2024-02-19 17:13:04.435 2024-02-19 17:13:04.435 1000 STREAM 141924 21369 6001047 2024-02-19 17:15:04.466 2024-02-19 17:15:04.466 1000 STREAM 141924 21603 6001070 2024-02-19 17:17:04.476 2024-02-19 17:17:04.476 1000 STREAM 141924 21021 6001079 2024-02-19 17:18:04.474 2024-02-19 17:18:04.474 1000 STREAM 141924 17519 6001088 2024-02-19 17:19:04.484 2024-02-19 17:19:04.484 1000 STREAM 141924 20751 6001167 2024-02-19 17:23:04.513 2024-02-19 17:23:04.513 1000 STREAM 141924 9345 6001248 2024-02-19 17:25:04.526 2024-02-19 17:25:04.526 1000 STREAM 141924 4378 6001296 2024-02-19 17:30:04.591 2024-02-19 17:30:04.591 1000 STREAM 141924 15526 6001316 2024-02-19 17:32:04.593 2024-02-19 17:32:04.593 1000 STREAM 141924 21344 6001380 2024-02-19 17:37:04.625 2024-02-19 17:37:04.625 1000 STREAM 141924 2347 6001412 2024-02-19 17:41:04.636 2024-02-19 17:41:04.636 1000 STREAM 141924 14152 6000265 2024-02-19 16:11:04.136 2024-02-19 16:11:04.136 1000 STREAM 141924 20788 6000270 2024-02-19 16:12:04.163 2024-02-19 16:12:04.163 1000 STREAM 141924 18040 6000275 2024-02-19 16:13:04.128 2024-02-19 16:13:04.128 1000 STREAM 141924 9084 6000299 2024-02-19 16:16:04.152 2024-02-19 16:16:04.152 1000 STREAM 141924 13759 6000303 2024-02-19 16:18:04.162 2024-02-19 16:18:04.162 1000 STREAM 141924 1142 6000369 2024-02-19 16:22:04.17 2024-02-19 16:22:04.17 1000 STREAM 141924 976 6000402 2024-02-19 16:25:04.19 2024-02-19 16:25:04.19 1000 STREAM 141924 18714 6000461 2024-02-19 16:30:04.237 2024-02-19 16:30:04.237 1000 STREAM 141924 19506 6000470 2024-02-19 16:31:04.211 2024-02-19 16:31:04.211 1000 STREAM 141924 632 6000568 2024-02-19 16:37:04.256 2024-02-19 16:37:04.256 1000 STREAM 141924 21338 6000573 2024-02-19 16:38:04.261 2024-02-19 16:38:04.261 1000 STREAM 141924 854 6000580 2024-02-19 16:39:04.251 2024-02-19 16:39:04.251 1000 STREAM 141924 16259 6000604 2024-02-19 16:40:04.359 2024-02-19 16:40:04.359 1000 STREAM 141924 15100 6000693 2024-02-19 16:45:04.279 2024-02-19 16:45:04.279 1000 STREAM 141924 12779 6000729 2024-02-19 16:46:04.291 2024-02-19 16:46:04.291 1000 STREAM 141924 11678 6000747 2024-02-19 16:48:04.297 2024-02-19 16:48:04.297 1000 STREAM 141924 20231 6000757 2024-02-19 16:50:04.302 2024-02-19 16:50:04.302 1000 STREAM 141924 3392 6000767 2024-02-19 16:51:04.308 2024-02-19 16:51:04.308 1000 STREAM 141924 3392 6000771 2024-02-19 16:52:04.339 2024-02-19 16:52:04.339 1000 STREAM 141924 20963 6000779 2024-02-19 16:53:04.32 2024-02-19 16:53:04.32 1000 STREAM 141924 617 6000791 2024-02-19 16:55:04.426 2024-02-19 16:55:04.426 1000 STREAM 141924 16329 6000795 2024-02-19 16:56:04.367 2024-02-19 16:56:04.367 1000 STREAM 141924 19888 6000803 2024-02-19 16:57:04.353 2024-02-19 16:57:04.353 1000 STREAM 141924 16809 6000804 2024-02-19 16:58:04.352 2024-02-19 16:58:04.352 1000 STREAM 141924 14267 6000827 2024-02-19 16:59:04.451 2024-02-19 16:59:04.451 1000 STREAM 141924 759 6000830 2024-02-19 17:00:04.386 2024-02-19 17:00:04.386 1000 STREAM 141924 9874 6000952 2024-02-19 17:05:04.4 2024-02-19 17:05:04.4 1000 STREAM 141924 16667 6001012 2024-02-19 17:07:04.41 2024-02-19 17:07:04.41 1000 STREAM 141924 18524 6001014 2024-02-19 17:08:04.409 2024-02-19 17:08:04.409 1000 STREAM 141924 1738 6001018 2024-02-19 17:09:04.5 2024-02-19 17:09:04.5 1000 STREAM 141924 11716 6001019 2024-02-19 17:10:04.436 2024-02-19 17:10:04.436 1000 STREAM 141924 16808 6001021 2024-02-19 17:11:04.434 2024-02-19 17:11:04.434 1000 STREAM 141924 17365 6001026 2024-02-19 17:12:04.457 2024-02-19 17:12:04.457 1000 STREAM 141924 652 6001042 2024-02-19 17:14:04.463 2024-02-19 17:14:04.463 1000 STREAM 141924 4079 6001059 2024-02-19 17:16:04.463 2024-02-19 17:16:04.463 1000 STREAM 141924 20981 6001094 2024-02-19 17:20:04.483 2024-02-19 17:20:04.483 1000 STREAM 141924 1124 6001098 2024-02-19 17:21:04.48 2024-02-19 17:21:04.48 1000 STREAM 141924 6137 6001121 2024-02-19 17:22:04.499 2024-02-19 17:22:04.499 1000 STREAM 141924 10056 6001232 2024-02-19 17:24:04.588 2024-02-19 17:24:04.588 1000 STREAM 141924 15697 6001264 2024-02-19 17:27:04.576 2024-02-19 17:27:04.576 1000 STREAM 141924 18828 6001286 2024-02-19 17:29:04.58 2024-02-19 17:29:04.58 1000 STREAM 141924 12946 6001336 2024-02-19 17:35:04.611 2024-02-19 17:35:04.611 1000 STREAM 141924 19533 6001387 2024-02-19 17:39:04.632 2024-02-19 17:39:04.632 1000 STREAM 141924 1209 6001496 2024-02-19 17:47:04.684 2024-02-19 17:47:04.684 1000 STREAM 141924 16542 6001653 2024-02-19 18:01:04.75 2024-02-19 18:01:04.75 1000 STREAM 141924 16998 6001748 2024-02-19 18:11:02.831 2024-02-19 18:11:02.831 1000 STREAM 141924 19967 6001859 2024-02-19 18:18:04.908 2024-02-19 18:18:04.908 1000 STREAM 141924 20871 6000292 2024-02-19 16:15:09.686 2024-02-19 16:15:09.686 900 TIP 430892 9367 6000298 2024-02-19 16:15:58.529 2024-02-19 16:15:58.529 1000 FEE 430911 866 6000310 2024-02-19 16:18:29.286 2024-02-19 16:18:29.286 1000 FEE 430914 19533 6000311 2024-02-19 16:18:36.533 2024-02-19 16:18:36.533 4000 FEE 430607 651 6000312 2024-02-19 16:18:36.533 2024-02-19 16:18:36.533 36000 TIP 430607 9969 6000313 2024-02-19 16:18:37.456 2024-02-19 16:18:37.456 1000 FEE 430608 16809 6000314 2024-02-19 16:18:37.456 2024-02-19 16:18:37.456 9000 TIP 430608 17209 6000324 2024-02-19 16:20:45.102 2024-02-19 16:20:45.102 100 FEE 430901 17415 6000325 2024-02-19 16:20:45.102 2024-02-19 16:20:45.102 900 TIP 430901 17014 6000345 2024-02-19 16:21:44.098 2024-02-19 16:21:44.098 10000 FEE 430920 21603 6000346 2024-02-19 16:21:49.57 2024-02-19 16:21:49.57 10000 FEE 430869 9184 6000347 2024-02-19 16:21:49.57 2024-02-19 16:21:49.57 90000 TIP 430869 21320 6000375 2024-02-19 16:22:48.148 2024-02-19 16:22:48.148 10000 FEE 430924 9351 6000384 2024-02-19 16:24:11.071 2024-02-19 16:24:11.071 10000 FEE 430892 18557 6000385 2024-02-19 16:24:11.071 2024-02-19 16:24:11.071 90000 TIP 430892 17727 6000386 2024-02-19 16:24:49.489 2024-02-19 16:24:49.489 500 FEE 430859 649 6000387 2024-02-19 16:24:49.489 2024-02-19 16:24:49.489 4500 TIP 430859 13204 6000449 2024-02-19 16:29:22.287 2024-02-19 16:29:22.287 1000 FEE 430932 21342 6000478 2024-02-19 16:32:22.894 2024-02-19 16:32:22.894 2100 FEE 430771 19981 6000479 2024-02-19 16:32:22.894 2024-02-19 16:32:22.894 18900 TIP 430771 5377 6000492 2024-02-19 16:32:40.931 2024-02-19 16:32:40.931 8300 FEE 429764 18714 6000493 2024-02-19 16:32:40.931 2024-02-19 16:32:40.931 74700 TIP 429764 9863 6000500 2024-02-19 16:32:41.637 2024-02-19 16:32:41.637 8300 FEE 429764 4776 6000501 2024-02-19 16:32:41.637 2024-02-19 16:32:41.637 74700 TIP 429764 19459 6000539 2024-02-19 16:33:34.852 2024-02-19 16:33:34.852 1000 FEE 430939 10280 6000540 2024-02-19 16:33:37.166 2024-02-19 16:33:37.166 1000 FEE 430940 16513 6000548 2024-02-19 16:34:54.527 2024-02-19 16:34:54.527 1000 FEE 430943 5497 6000561 2024-02-19 16:35:43.802 2024-02-19 16:35:43.802 2100 FEE 430884 965 6000562 2024-02-19 16:35:43.802 2024-02-19 16:35:43.802 18900 TIP 430884 9350 6000570 2024-02-19 16:37:05.758 2024-02-19 16:37:05.758 1000 FEE 430946 4378 6000571 2024-02-19 16:37:46.554 2024-02-19 16:37:46.554 1000 FEE 430947 10731 6000572 2024-02-19 16:38:02.637 2024-02-19 16:38:02.637 1000 FEE 430948 20246 6000577 2024-02-19 16:38:29.927 2024-02-19 16:38:29.927 10000 FEE 430950 12606 6000579 2024-02-19 16:38:35.262 2024-02-19 16:38:35.262 1000 FEE 430951 5708 6000593 2024-02-19 16:39:37.283 2024-02-19 16:39:37.283 100 FEE 430771 7827 6000594 2024-02-19 16:39:37.283 2024-02-19 16:39:37.283 900 TIP 430771 18403 6000597 2024-02-19 16:39:44.864 2024-02-19 16:39:44.864 4000 FEE 430672 1611 6000598 2024-02-19 16:39:44.864 2024-02-19 16:39:44.864 36000 TIP 430672 12976 6000608 2024-02-19 16:40:45.644 2024-02-19 16:40:45.644 4000 FEE 430952 827 6000609 2024-02-19 16:40:45.644 2024-02-19 16:40:45.644 36000 TIP 430952 19198 6000616 2024-02-19 16:41:19.819 2024-02-19 16:41:19.819 1000 FEE 430955 18557 6000635 2024-02-19 16:42:22.414 2024-02-19 16:42:22.414 100 FEE 430751 15491 6000636 2024-02-19 16:42:22.414 2024-02-19 16:42:22.414 900 TIP 430751 21603 6000647 2024-02-19 16:42:46.79 2024-02-19 16:42:46.79 1000 FEE 430385 1425 6000648 2024-02-19 16:42:46.79 2024-02-19 16:42:46.79 9000 TIP 430385 18448 6000675 2024-02-19 16:43:40.339 2024-02-19 16:43:40.339 400 FEE 430849 20623 6000676 2024-02-19 16:43:40.339 2024-02-19 16:43:40.339 3600 TIP 430849 640 6000681 2024-02-19 16:44:16.65 2024-02-19 16:44:16.65 500 FEE 430795 12169 6000682 2024-02-19 16:44:16.65 2024-02-19 16:44:16.65 4500 TIP 430795 12356 6000700 2024-02-19 16:45:26.995 2024-02-19 16:45:26.995 1000 FEE 430651 11590 6000701 2024-02-19 16:45:26.995 2024-02-19 16:45:26.995 9000 TIP 430651 10728 6000736 2024-02-19 16:46:18.814 2024-02-19 16:46:18.814 500 FEE 430789 10698 6000737 2024-02-19 16:46:18.814 2024-02-19 16:46:18.814 4500 TIP 430789 18154 6000738 2024-02-19 16:46:27.899 2024-02-19 16:46:27.899 4000 FEE 430958 12277 6000739 2024-02-19 16:46:27.899 2024-02-19 16:46:27.899 36000 TIP 430958 9171 6000744 2024-02-19 16:47:39.554 2024-02-19 16:47:39.554 0 FEE 430962 13365 6000750 2024-02-19 16:49:29.584 2024-02-19 16:49:29.584 1000 FEE 430964 17226 6000780 2024-02-19 16:53:23.908 2024-02-19 16:53:23.908 700 FEE 430478 627 6000781 2024-02-19 16:53:23.908 2024-02-19 16:53:23.908 6300 TIP 430478 2203 6000788 2024-02-19 16:54:16.788 2024-02-19 16:54:16.788 1000 FEE 430971 998 6000790 2024-02-19 16:54:44.022 2024-02-19 16:54:44.022 10000 FEE 430973 16387 6000811 2024-02-19 16:58:42.646 2024-02-19 16:58:42.646 5000 FEE 430328 1960 6000812 2024-02-19 16:58:42.646 2024-02-19 16:58:42.646 45000 TIP 430328 11165 6000826 2024-02-19 16:58:56.903 2024-02-19 16:58:56.903 1000 FEE 430979 18663 6000832 2024-02-19 17:00:44.56 2024-02-19 17:00:44.56 100 FEE 430675 20897 6000833 2024-02-19 17:00:44.56 2024-02-19 17:00:44.56 900 TIP 430675 17535 6000853 2024-02-19 17:00:58.884 2024-02-19 17:00:58.884 100 FEE 430695 12768 6000854 2024-02-19 17:00:58.884 2024-02-19 17:00:58.884 900 TIP 430695 18664 6000868 2024-02-19 17:01:34.7 2024-02-19 17:01:34.7 100000 FEE 430984 21374 6000869 2024-02-19 17:01:38.368 2024-02-19 17:01:38.368 10000 FEE 430955 16998 6000870 2024-02-19 17:01:38.368 2024-02-19 17:01:38.368 90000 TIP 430955 20623 6000888 2024-02-19 17:02:50.428 2024-02-19 17:02:50.428 0 FEE 430986 18897 6000910 2024-02-19 17:03:48.059 2024-02-19 17:03:48.059 1000 FEE 409610 16513 6000911 2024-02-19 17:03:48.059 2024-02-19 17:03:48.059 9000 TIP 409610 21103 6000924 2024-02-19 17:04:41.703 2024-02-19 17:04:41.703 100 FEE 430658 16406 6000925 2024-02-19 17:04:41.703 2024-02-19 17:04:41.703 900 TIP 430658 18877 6000938 2024-02-19 17:04:50.099 2024-02-19 17:04:50.099 100 FEE 430655 2576 6000939 2024-02-19 17:04:50.099 2024-02-19 17:04:50.099 900 TIP 430655 3411 6000940 2024-02-19 17:04:55.453 2024-02-19 17:04:55.453 1000 FEE 430195 5538 6000941 2024-02-19 17:04:55.453 2024-02-19 17:04:55.453 9000 TIP 430195 12516 6000942 2024-02-19 17:04:55.997 2024-02-19 17:04:55.997 1000 FEE 430195 12368 6000943 2024-02-19 17:04:55.997 2024-02-19 17:04:55.997 9000 TIP 430195 14295 6000948 2024-02-19 17:04:57.222 2024-02-19 17:04:57.222 1000 FEE 430195 13042 6000949 2024-02-19 17:04:57.222 2024-02-19 17:04:57.222 9000 TIP 430195 17817 6000967 2024-02-19 17:05:13.221 2024-02-19 17:05:13.221 100 FEE 430633 19329 6000968 2024-02-19 17:05:13.221 2024-02-19 17:05:13.221 900 TIP 430633 19810 6001034 2024-02-19 17:13:35.852 2024-02-19 17:13:35.852 1000 FEE 430771 13759 6001035 2024-02-19 17:13:35.852 2024-02-19 17:13:35.852 9000 TIP 430771 19848 6001038 2024-02-19 17:13:36.851 2024-02-19 17:13:36.851 1000 FEE 430771 21287 6001039 2024-02-19 17:13:36.851 2024-02-19 17:13:36.851 9000 TIP 430771 21207 6001081 2024-02-19 17:18:26.833 2024-02-19 17:18:26.833 700 FEE 430923 21472 6001082 2024-02-19 17:18:26.833 2024-02-19 17:18:26.833 6300 TIP 430923 19142 6001086 2024-02-19 17:18:58.581 2024-02-19 17:18:58.581 700 FEE 430924 9348 6001087 2024-02-19 17:18:58.581 2024-02-19 17:18:58.581 6300 TIP 430924 18705 6001110 2024-02-19 17:21:32.208 2024-02-19 17:21:32.208 1000 FEE 431012 16154 6001116 2024-02-19 17:21:50.586 2024-02-19 17:21:50.586 1000 FEE 431018 14818 6001129 2024-02-19 17:22:43.496 2024-02-19 17:22:43.496 1000 FEE 431030 16942 6001147 2024-02-19 17:23:00.462 2024-02-19 17:23:00.462 100 FEE 430906 11430 6001148 2024-02-19 17:23:00.462 2024-02-19 17:23:00.462 900 TIP 430906 1738 6001161 2024-02-19 17:23:03.781 2024-02-19 17:23:03.781 100 FEE 430972 8916 6001162 2024-02-19 17:23:03.781 2024-02-19 17:23:03.781 900 TIP 430972 20715 6001168 2024-02-19 17:23:05.961 2024-02-19 17:23:05.961 100 FEE 430794 17147 6001169 2024-02-19 17:23:05.961 2024-02-19 17:23:05.961 900 TIP 430794 6717 6001170 2024-02-19 17:23:06.129 2024-02-19 17:23:06.129 100 FEE 430794 895 6001171 2024-02-19 17:23:06.129 2024-02-19 17:23:06.129 900 TIP 430794 1483 6001172 2024-02-19 17:23:06.342 2024-02-19 17:23:06.342 100 FEE 430794 9517 6001173 2024-02-19 17:23:06.342 2024-02-19 17:23:06.342 900 TIP 430794 2335 6000422 2024-02-19 16:26:25.175 2024-02-19 16:26:25.175 7500 FEE 430920 15409 6000423 2024-02-19 16:26:25.175 2024-02-19 16:26:25.175 67500 TIP 430920 18704 6000438 2024-02-19 16:27:10.307 2024-02-19 16:27:10.307 8300 FEE 430924 20409 6000439 2024-02-19 16:27:10.307 2024-02-19 16:27:10.307 74700 TIP 430924 15690 6000444 2024-02-19 16:29:09.858 2024-02-19 16:29:09.858 1000 FEE 430931 16653 6000450 2024-02-19 16:29:22.855 2024-02-19 16:29:22.855 10000 FEE 404171 9166 6000451 2024-02-19 16:29:22.855 2024-02-19 16:29:22.855 90000 TIP 404171 16556 6000455 2024-02-19 16:29:38.979 2024-02-19 16:29:38.979 0 FEE 430931 14404 6000462 2024-02-19 16:30:05.237 2024-02-19 16:30:05.237 1000 FEE 430935 20782 6000484 2024-02-19 16:32:40.363 2024-02-19 16:32:40.363 8300 FEE 429764 977 6000485 2024-02-19 16:32:40.363 2024-02-19 16:32:40.363 74700 TIP 429764 6653 6000518 2024-02-19 16:32:49.288 2024-02-19 16:32:49.288 8300 FEE 430155 20310 6000519 2024-02-19 16:32:49.288 2024-02-19 16:32:49.288 74700 TIP 430155 977 6000533 2024-02-19 16:33:25.745 2024-02-19 16:33:25.745 700 FEE 430934 18751 6000534 2024-02-19 16:33:25.745 2024-02-19 16:33:25.745 6300 TIP 430934 14015 6000576 2024-02-19 16:38:17.138 2024-02-19 16:38:17.138 42000 FEE 430949 11789 6000595 2024-02-19 16:39:37.43 2024-02-19 16:39:37.43 100 FEE 430771 4395 6000596 2024-02-19 16:39:37.43 2024-02-19 16:39:37.43 900 TIP 430771 21522 6000599 2024-02-19 16:39:49.013 2024-02-19 16:39:49.013 36000 FEE 430672 13365 6000600 2024-02-19 16:39:49.013 2024-02-19 16:39:49.013 324000 TIP 430672 9354 6000623 2024-02-19 16:41:52.384 2024-02-19 16:41:52.384 100 FEE 430948 21314 6000624 2024-02-19 16:41:52.384 2024-02-19 16:41:52.384 900 TIP 430948 1114 6000625 2024-02-19 16:41:52.819 2024-02-19 16:41:52.819 100 FEE 430948 4175 6000626 2024-02-19 16:41:52.819 2024-02-19 16:41:52.819 900 TIP 430948 980 6000629 2024-02-19 16:41:54.206 2024-02-19 16:41:54.206 100 FEE 430948 11678 6000630 2024-02-19 16:41:54.206 2024-02-19 16:41:54.206 900 TIP 430948 21303 6000649 2024-02-19 16:42:47.296 2024-02-19 16:42:47.296 1000 FEE 430385 20816 6000650 2024-02-19 16:42:47.296 2024-02-19 16:42:47.296 9000 TIP 430385 16704 6000651 2024-02-19 16:42:47.69 2024-02-19 16:42:47.69 1000 FEE 430385 18581 6000652 2024-02-19 16:42:47.69 2024-02-19 16:42:47.69 9000 TIP 430385 19770 6000658 2024-02-19 16:43:06.753 2024-02-19 16:43:06.753 1000 FEE 430263 18051 6000659 2024-02-19 16:43:06.753 2024-02-19 16:43:06.753 9000 TIP 430263 1803 6000668 2024-02-19 16:43:09.61 2024-02-19 16:43:09.61 1000 FEE 430263 21547 6000669 2024-02-19 16:43:09.61 2024-02-19 16:43:09.61 9000 TIP 430263 16126 6000685 2024-02-19 16:44:24.882 2024-02-19 16:44:24.882 500 FEE 430700 18923 6000686 2024-02-19 16:44:24.882 2024-02-19 16:44:24.882 4500 TIP 430700 20715 6000706 2024-02-19 16:45:27.801 2024-02-19 16:45:27.801 1000 FEE 430651 17673 6000707 2024-02-19 16:45:27.801 2024-02-19 16:45:27.801 9000 TIP 430651 15488 6000710 2024-02-19 16:45:28.558 2024-02-19 16:45:28.558 1000 FEE 430651 18717 6000711 2024-02-19 16:45:28.558 2024-02-19 16:45:28.558 9000 TIP 430651 18220 6000732 2024-02-19 16:46:17.573 2024-02-19 16:46:17.573 500 FEE 430790 1490 6000733 2024-02-19 16:46:17.573 2024-02-19 16:46:17.573 4500 TIP 430790 20153 6000760 2024-02-19 16:50:16.619 2024-02-19 16:50:16.619 1000 FEE 430968 21003 6000773 2024-02-19 16:52:19.538 2024-02-19 16:52:19.538 700 FEE 430425 21356 6000774 2024-02-19 16:52:19.538 2024-02-19 16:52:19.538 6300 TIP 430425 18114 6000789 2024-02-19 16:54:38.751 2024-02-19 16:54:38.751 1000 FEE 430972 9378 6000841 2024-02-19 17:00:46.605 2024-02-19 17:00:46.605 100 FEE 430675 21119 6000842 2024-02-19 17:00:46.605 2024-02-19 17:00:46.605 900 TIP 430675 5085 6000845 2024-02-19 17:00:47.311 2024-02-19 17:00:47.311 100 FEE 430675 21463 6000846 2024-02-19 17:00:47.311 2024-02-19 17:00:47.311 900 TIP 430675 17592 6000900 2024-02-19 17:03:32.34 2024-02-19 17:03:32.34 100 FEE 430690 17001 6000901 2024-02-19 17:03:32.34 2024-02-19 17:03:32.34 900 TIP 430690 831 6000919 2024-02-19 17:04:40.318 2024-02-19 17:04:40.318 1000 FEE 430989 7891 6000959 2024-02-19 17:05:07.647 2024-02-19 17:05:07.647 100 FEE 430653 4776 6000960 2024-02-19 17:05:07.647 2024-02-19 17:05:07.647 900 TIP 430653 5308 6000961 2024-02-19 17:05:07.77 2024-02-19 17:05:07.77 12800 FEE 430883 16354 6000962 2024-02-19 17:05:07.77 2024-02-19 17:05:07.77 115200 TIP 430883 18945 6000963 2024-02-19 17:05:07.91 2024-02-19 17:05:07.91 100 FEE 430653 8400 6000964 2024-02-19 17:05:07.91 2024-02-19 17:05:07.91 900 TIP 430653 13217 6000971 2024-02-19 17:05:13.925 2024-02-19 17:05:13.925 100 FEE 430633 11220 6000972 2024-02-19 17:05:13.925 2024-02-19 17:05:13.925 900 TIP 430633 5728 6000997 2024-02-19 17:05:46.578 2024-02-19 17:05:46.578 1000 FEE 430200 19689 6000998 2024-02-19 17:05:46.578 2024-02-19 17:05:46.578 9000 TIP 430200 16387 6001013 2024-02-19 17:07:49.953 2024-02-19 17:07:49.953 1000 FEE 430990 831 6001020 2024-02-19 17:10:06.657 2024-02-19 17:10:06.657 1000 FEE 430992 15938 6001022 2024-02-19 17:11:43.821 2024-02-19 17:11:43.821 100000 FEE 240442 2844 6001023 2024-02-19 17:11:43.821 2024-02-19 17:11:43.821 900000 TIP 240442 17513 6001043 2024-02-19 17:14:05.121 2024-02-19 17:14:05.121 1000 FEE 430995 15843 6001050 2024-02-19 17:15:16.693 2024-02-19 17:15:16.693 1000 FEE 421684 1439 6001051 2024-02-19 17:15:16.693 2024-02-19 17:15:16.693 9000 TIP 421684 1198 6001052 2024-02-19 17:15:19.374 2024-02-19 17:15:19.374 1000 FEE 430645 16177 6001053 2024-02-19 17:15:19.374 2024-02-19 17:15:19.374 9000 TIP 430645 19398 6001054 2024-02-19 17:15:27.722 2024-02-19 17:15:27.722 1000 FEE 421802 6361 6001055 2024-02-19 17:15:27.722 2024-02-19 17:15:27.722 9000 TIP 421802 20577 6001068 2024-02-19 17:16:50.446 2024-02-19 17:16:50.446 1000 FEE 421567 15474 6001069 2024-02-19 17:16:50.446 2024-02-19 17:16:50.446 9000 TIP 421567 18008 6001071 2024-02-19 17:17:04.951 2024-02-19 17:17:04.951 1000 FEE 430997 9150 6001080 2024-02-19 17:18:04.903 2024-02-19 17:18:04.903 1000 FEE 430999 11158 6001099 2024-02-19 17:21:05.639 2024-02-19 17:21:05.639 1000 FEE 431005 2065 6001125 2024-02-19 17:22:33.844 2024-02-19 17:22:33.844 1000 FEE 431026 5661 6001157 2024-02-19 17:23:03.432 2024-02-19 17:23:03.432 100 FEE 430972 10934 6001158 2024-02-19 17:23:03.432 2024-02-19 17:23:03.432 900 TIP 430972 1697 6001182 2024-02-19 17:23:07.128 2024-02-19 17:23:07.128 100 FEE 430794 5499 6001183 2024-02-19 17:23:07.128 2024-02-19 17:23:07.128 900 TIP 430794 16214 6001203 2024-02-19 17:23:20.11 2024-02-19 17:23:20.11 2100 FEE 430619 1472 6001204 2024-02-19 17:23:20.11 2024-02-19 17:23:20.11 18900 TIP 430619 20980 6001208 2024-02-19 17:23:24.983 2024-02-19 17:23:24.983 2100 FEE 430920 18351 6001209 2024-02-19 17:23:24.983 2024-02-19 17:23:24.983 18900 TIP 430920 21589 6001223 2024-02-19 17:23:41.637 2024-02-19 17:23:41.637 1000 FEE 431043 675 6001237 2024-02-19 17:24:33.799 2024-02-19 17:24:33.799 1000 FEE 431048 10611 6001247 2024-02-19 17:25:02.53 2024-02-19 17:25:02.53 1000 FEE 431058 19394 6001269 2024-02-19 17:27:43.832 2024-02-19 17:27:43.832 1000 FEE 431067 15100 6001270 2024-02-19 17:27:50.934 2024-02-19 17:27:50.934 3200 FEE 431006 14168 6001271 2024-02-19 17:27:50.934 2024-02-19 17:27:50.934 28800 TIP 431006 640 6001288 2024-02-19 17:29:19.282 2024-02-19 17:29:19.282 3000 FEE 430607 5825 6001289 2024-02-19 17:29:19.282 2024-02-19 17:29:19.282 27000 TIP 430607 9844 6001302 2024-02-19 17:30:23.521 2024-02-19 17:30:23.521 1000 FEE 431075 18543 6001305 2024-02-19 17:30:39.562 2024-02-19 17:30:39.562 1000 FEE 431076 21062 6001309 2024-02-19 17:30:57.847 2024-02-19 17:30:57.847 1000 FEE 430891 19263 6001310 2024-02-19 17:30:57.847 2024-02-19 17:30:57.847 9000 TIP 430891 21371 6001335 2024-02-19 17:34:51.198 2024-02-19 17:34:51.198 1000 FEE 431086 9333 6001339 2024-02-19 17:35:29.806 2024-02-19 17:35:29.806 100 FEE 430607 21090 6001340 2024-02-19 17:35:29.806 2024-02-19 17:35:29.806 900 TIP 430607 18736 6001343 2024-02-19 17:36:00.372 2024-02-19 17:36:00.372 1000 FEE 431087 8385 6001360 2024-02-19 17:36:19.882 2024-02-19 17:36:19.882 200 FEE 430283 6149 6001361 2024-02-19 17:36:19.882 2024-02-19 17:36:19.882 1800 TIP 430283 8245 6001376 2024-02-19 17:36:48.447 2024-02-19 17:36:48.447 100 FEE 430349 1468 6000654 2024-02-19 16:42:56.833 2024-02-19 16:42:56.833 4500 TIP 430890 16250 6000660 2024-02-19 16:43:07.335 2024-02-19 16:43:07.335 1000 FEE 430263 6653 6000661 2024-02-19 16:43:07.335 2024-02-19 16:43:07.335 9000 TIP 430263 16052 6000704 2024-02-19 16:45:27.533 2024-02-19 16:45:27.533 1000 FEE 430651 6383 6000705 2024-02-19 16:45:27.533 2024-02-19 16:45:27.533 9000 TIP 430651 20563 6000714 2024-02-19 16:45:28.913 2024-02-19 16:45:28.913 1000 FEE 430651 15510 6000715 2024-02-19 16:45:28.913 2024-02-19 16:45:28.913 9000 TIP 430651 19094 6000726 2024-02-19 16:45:57.755 2024-02-19 16:45:57.755 1000 FEE 430959 20110 6000743 2024-02-19 16:47:27.648 2024-02-19 16:47:27.648 1000 FEE 430962 5961 6000763 2024-02-19 16:50:22.688 2024-02-19 16:50:22.688 100 FEE 430811 11091 6000764 2024-02-19 16:50:22.688 2024-02-19 16:50:22.688 900 TIP 430811 19864 6000777 2024-02-19 16:52:36.857 2024-02-19 16:52:36.857 1700 FEE 430460 10731 6000778 2024-02-19 16:52:36.857 2024-02-19 16:52:36.857 15300 TIP 430460 10490 6000809 2024-02-19 16:58:35.885 2024-02-19 16:58:35.885 1000 FEE 430917 15273 6000810 2024-02-19 16:58:35.885 2024-02-19 16:58:35.885 9000 TIP 430917 993 6000816 2024-02-19 16:58:49.256 2024-02-19 16:58:49.256 1000 FEE 430331 10731 6000817 2024-02-19 16:58:49.256 2024-02-19 16:58:49.256 9000 TIP 430331 2444 6000828 2024-02-19 16:59:58.359 2024-02-19 16:59:58.359 500 FEE 430608 1620 6000829 2024-02-19 16:59:58.359 2024-02-19 16:59:58.359 4500 TIP 430608 13517 6000860 2024-02-19 17:01:27.374 2024-02-19 17:01:27.374 3000 FEE 430944 12946 6000861 2024-02-19 17:01:27.374 2024-02-19 17:01:27.374 27000 TIP 430944 17514 6000863 2024-02-19 17:01:29.137 2024-02-19 17:01:29.137 1000 FEE 430983 13246 6000864 2024-02-19 17:01:30.629 2024-02-19 17:01:30.629 1000 FEE 430920 716 6000865 2024-02-19 17:01:30.629 2024-02-19 17:01:30.629 9000 TIP 430920 1092 6000877 2024-02-19 17:01:53.341 2024-02-19 17:01:53.341 1000 FEE 430923 6160 6000878 2024-02-19 17:01:53.341 2024-02-19 17:01:53.341 9000 TIP 430923 21216 6000879 2024-02-19 17:01:53.699 2024-02-19 17:01:53.699 1000 FEE 430923 15146 6000880 2024-02-19 17:01:53.699 2024-02-19 17:01:53.699 9000 TIP 430923 16638 6000883 2024-02-19 17:02:11.511 2024-02-19 17:02:11.511 3000 FEE 430892 1519 6000884 2024-02-19 17:02:11.511 2024-02-19 17:02:11.511 27000 TIP 430892 9363 6000894 2024-02-19 17:03:31.168 2024-02-19 17:03:31.168 100 FEE 430690 20998 6000895 2024-02-19 17:03:31.168 2024-02-19 17:03:31.168 900 TIP 430690 1307 6000898 2024-02-19 17:03:31.986 2024-02-19 17:03:31.986 100 FEE 430690 18017 6000899 2024-02-19 17:03:31.986 2024-02-19 17:03:31.986 900 TIP 430690 17212 6000905 2024-02-19 17:03:40.507 2024-02-19 17:03:40.507 300 FEE 430679 16178 6000906 2024-02-19 17:03:40.507 2024-02-19 17:03:40.507 2700 TIP 430679 9353 6000909 2024-02-19 17:03:43.438 2024-02-19 17:03:43.438 0 FEE 430986 20655 6000918 2024-02-19 17:04:21.065 2024-02-19 17:04:21.065 1000 FEE 430988 13133 6000930 2024-02-19 17:04:48.454 2024-02-19 17:04:48.454 100 FEE 430655 19795 6000931 2024-02-19 17:04:48.454 2024-02-19 17:04:48.454 900 TIP 430655 4415 6000969 2024-02-19 17:05:13.576 2024-02-19 17:05:13.576 100 FEE 430633 20596 6000970 2024-02-19 17:05:13.576 2024-02-19 17:05:13.576 900 TIP 430633 19806 6001029 2024-02-19 17:12:38.552 2024-02-19 17:12:38.552 10000 FEE 430993 4345 6001058 2024-02-19 17:15:57.301 2024-02-19 17:15:57.301 10000 FEE 430996 21103 6001074 2024-02-19 17:17:42.998 2024-02-19 17:17:42.998 1000 FEE 430998 848 6001090 2024-02-19 17:19:52.865 2024-02-19 17:19:52.865 1000 FEE 431000 1478 6001091 2024-02-19 17:19:52.865 2024-02-19 17:19:52.865 9000 TIP 431000 1130 6001095 2024-02-19 17:20:19.756 2024-02-19 17:20:19.756 1000 FEE 431002 3353 6001104 2024-02-19 17:21:25.839 2024-02-19 17:21:25.839 10000 FEE 430984 20775 6001105 2024-02-19 17:21:25.839 2024-02-19 17:21:25.839 90000 TIP 430984 21291 6001106 2024-02-19 17:21:26.908 2024-02-19 17:21:26.908 10100 FEE 430892 19813 6001107 2024-02-19 17:21:26.908 2024-02-19 17:21:26.908 90900 TIP 430892 11220 6001109 2024-02-19 17:21:29.733 2024-02-19 17:21:29.733 1000 FEE 431011 3717 6001113 2024-02-19 17:21:42.326 2024-02-19 17:21:42.326 1000 FEE 431015 19507 6001117 2024-02-19 17:21:52.82 2024-02-19 17:21:52.82 1000 FEE 431019 956 6001122 2024-02-19 17:22:05.978 2024-02-19 17:22:05.978 1000 FEE 431023 9330 6001135 2024-02-19 17:22:56.759 2024-02-19 17:22:56.759 400 FEE 430972 18453 6001136 2024-02-19 17:22:56.759 2024-02-19 17:22:56.759 3600 TIP 430972 18138 6001153 2024-02-19 17:23:01.594 2024-02-19 17:23:01.594 100 FEE 430906 20452 6001154 2024-02-19 17:23:01.594 2024-02-19 17:23:01.594 900 TIP 430906 18828 6001159 2024-02-19 17:23:03.537 2024-02-19 17:23:03.537 100 FEE 430972 14950 6001160 2024-02-19 17:23:03.537 2024-02-19 17:23:03.537 900 TIP 430972 18556 6001178 2024-02-19 17:23:06.79 2024-02-19 17:23:06.79 100 FEE 430794 4650 6001179 2024-02-19 17:23:06.79 2024-02-19 17:23:06.79 900 TIP 430794 2342 6001205 2024-02-19 17:23:20.869 2024-02-19 17:23:20.869 2100 FEE 430549 4313 6001206 2024-02-19 17:23:20.869 2024-02-19 17:23:20.869 18900 TIP 430549 12072 6001215 2024-02-19 17:23:35.767 2024-02-19 17:23:35.767 2100 FEE 430607 7376 6001216 2024-02-19 17:23:35.767 2024-02-19 17:23:35.767 18900 TIP 430607 993 6001234 2024-02-19 17:24:22.679 2024-02-19 17:24:22.679 1000 FEE 431045 17392 6001244 2024-02-19 17:24:55.499 2024-02-19 17:24:55.499 1000 FEE 431055 18679 6001253 2024-02-19 17:25:44.536 2024-02-19 17:25:44.536 1000 FEE 431063 17014 6001274 2024-02-19 17:28:08.248 2024-02-19 17:28:08.248 100 FEE 430713 650 6001275 2024-02-19 17:28:08.248 2024-02-19 17:28:08.248 900 TIP 430713 20156 6001276 2024-02-19 17:28:20.782 2024-02-19 17:28:20.782 2100 FEE 431028 1817 6001277 2024-02-19 17:28:20.782 2024-02-19 17:28:20.782 18900 TIP 431028 2162 6001278 2024-02-19 17:28:47.872 2024-02-19 17:28:47.872 1000 FEE 431069 14225 6001303 2024-02-19 17:30:34.323 2024-02-19 17:30:34.323 4000 FEE 430667 21619 6001304 2024-02-19 17:30:34.323 2024-02-19 17:30:34.323 36000 TIP 430667 17046 6001318 2024-02-19 17:32:20.756 2024-02-19 17:32:20.756 0 FEE 431072 18243 6001345 2024-02-19 17:36:08.266 2024-02-19 17:36:08.266 1000 FEE 431088 951 6001352 2024-02-19 17:36:14.715 2024-02-19 17:36:14.715 100 FEE 430439 21238 6001353 2024-02-19 17:36:14.715 2024-02-19 17:36:14.715 900 TIP 430439 10016 6001362 2024-02-19 17:36:20.191 2024-02-19 17:36:20.191 100 FEE 430283 20287 6001363 2024-02-19 17:36:20.191 2024-02-19 17:36:20.191 900 TIP 430283 21371 6001368 2024-02-19 17:36:26.095 2024-02-19 17:36:26.095 0 FEE 431086 19535 6001388 2024-02-19 17:39:06.361 2024-02-19 17:39:06.361 400 FEE 431083 2749 6001389 2024-02-19 17:39:06.361 2024-02-19 17:39:06.361 3600 TIP 431083 13133 6001404 2024-02-19 17:40:19.545 2024-02-19 17:40:19.545 1000 FEE 431103 19378 6001417 2024-02-19 17:41:35.83 2024-02-19 17:41:35.83 10000 FEE 431109 6361 6001421 2024-02-19 17:41:55.986 2024-02-19 17:41:55.986 1000 FEE 431111 20701 6001431 2024-02-19 17:42:16.331 2024-02-19 17:42:16.331 1000 FEE 431119 17568 6001434 2024-02-19 17:42:26.196 2024-02-19 17:42:26.196 10000 FEE 431122 18357 6001437 2024-02-19 17:42:46.511 2024-02-19 17:42:46.511 1000 FEE 431109 15703 6001438 2024-02-19 17:42:46.511 2024-02-19 17:42:46.511 9000 TIP 431109 5978 6001445 2024-02-19 17:43:14.963 2024-02-19 17:43:14.963 1000 FEE 431067 21207 6001446 2024-02-19 17:43:14.963 2024-02-19 17:43:14.963 9000 TIP 431067 8287 6001458 2024-02-19 17:43:47.259 2024-02-19 17:43:47.259 9000 FEE 430869 1454 6001459 2024-02-19 17:43:47.259 2024-02-19 17:43:47.259 81000 TIP 430869 19132 6001465 2024-02-19 17:44:04.383 2024-02-19 17:44:04.383 1000 FEE 431125 13763 6001466 2024-02-19 17:44:09.927 2024-02-19 17:44:09.927 100 FEE 431074 19546 6001467 2024-02-19 17:44:09.927 2024-02-19 17:44:09.927 900 TIP 431074 16456 6001475 2024-02-19 17:44:34.692 2024-02-19 17:44:34.692 1700 FEE 413738 14663 6001476 2024-02-19 17:44:34.692 2024-02-19 17:44:34.692 15300 TIP 413738 1505 6001482 2024-02-19 17:45:42.788 2024-02-19 17:45:42.788 1000 FEE 424911 11153 6001483 2024-02-19 17:45:42.788 2024-02-19 17:45:42.788 9000 TIP 424911 1833 6001495 2024-02-19 17:46:55.328 2024-02-19 17:46:55.328 1000 FEE 431133 894 6001503 2024-02-19 17:48:03.237 2024-02-19 17:48:03.237 1000 FEE 431137 761 6000756 2024-02-19 16:50:04.11 2024-02-19 16:50:04.11 18900 TIP 430920 14909 6000797 2024-02-19 16:56:44.002 2024-02-19 16:56:44.002 1000 FEE 430971 10862 6000798 2024-02-19 16:56:44.002 2024-02-19 16:56:44.002 9000 TIP 430971 1438 6000814 2024-02-19 16:58:47.123 2024-02-19 16:58:47.123 5000 FEE 430330 678 6000815 2024-02-19 16:58:47.123 2024-02-19 16:58:47.123 45000 TIP 430330 21522 6000866 2024-02-19 17:01:32.632 2024-02-19 17:01:32.632 1000 FEE 430920 2525 6000867 2024-02-19 17:01:32.632 2024-02-19 17:01:32.632 9000 TIP 430920 5708 6000873 2024-02-19 17:01:52.725 2024-02-19 17:01:52.725 1000 FEE 430923 18310 6000874 2024-02-19 17:01:52.725 2024-02-19 17:01:52.725 9000 TIP 430923 1658 6000875 2024-02-19 17:01:53.008 2024-02-19 17:01:53.008 1000 FEE 430923 5520 6000876 2024-02-19 17:01:53.008 2024-02-19 17:01:53.008 9000 TIP 430923 16724 6000889 2024-02-19 17:02:54.655 2024-02-19 17:02:54.655 1700 FEE 430856 6798 6000890 2024-02-19 17:02:54.655 2024-02-19 17:02:54.655 15300 TIP 430856 2722 6000903 2024-02-19 17:03:39.35 2024-02-19 17:03:39.35 100 FEE 430679 18178 6000904 2024-02-19 17:03:39.35 2024-02-19 17:03:39.35 900 TIP 430679 13398 6000912 2024-02-19 17:03:49.433 2024-02-19 17:03:49.433 700 FEE 430954 20738 6000913 2024-02-19 17:03:49.433 2024-02-19 17:03:49.433 6300 TIP 430954 6360 6000932 2024-02-19 17:04:48.873 2024-02-19 17:04:48.873 100 FEE 430655 19103 6000933 2024-02-19 17:04:48.873 2024-02-19 17:04:48.873 900 TIP 430655 768 6000965 2024-02-19 17:05:12.863 2024-02-19 17:05:12.863 100 FEE 430633 18909 6000966 2024-02-19 17:05:12.863 2024-02-19 17:05:12.863 900 TIP 430633 1751 6000975 2024-02-19 17:05:17.005 2024-02-19 17:05:17.005 1000 FEE 430199 3461 6000976 2024-02-19 17:05:17.005 2024-02-19 17:05:17.005 9000 TIP 430199 12821 6000981 2024-02-19 17:05:19.414 2024-02-19 17:05:19.414 1000 FEE 430201 16680 6000982 2024-02-19 17:05:19.414 2024-02-19 17:05:19.414 9000 TIP 430201 9365 6000983 2024-02-19 17:05:20.577 2024-02-19 17:05:20.577 1000 FEE 430219 882 6000984 2024-02-19 17:05:20.577 2024-02-19 17:05:20.577 9000 TIP 430219 654 6000985 2024-02-19 17:05:20.835 2024-02-19 17:05:20.835 1000 FEE 430219 19034 6000986 2024-02-19 17:05:20.835 2024-02-19 17:05:20.835 9000 TIP 430219 9496 6001005 2024-02-19 17:05:50.361 2024-02-19 17:05:50.361 100 FEE 430766 18392 6001006 2024-02-19 17:05:50.361 2024-02-19 17:05:50.361 900 TIP 430766 704 6001007 2024-02-19 17:05:50.585 2024-02-19 17:05:50.585 100 FEE 430766 21619 6001008 2024-02-19 17:05:50.585 2024-02-19 17:05:50.585 900 TIP 430766 3213 6001027 2024-02-19 17:12:11.937 2024-02-19 17:12:11.937 300 FEE 430975 5646 6001028 2024-02-19 17:12:11.937 2024-02-19 17:12:11.937 2700 TIP 430975 10638 6001036 2024-02-19 17:13:36.385 2024-02-19 17:13:36.385 1000 FEE 430771 5961 6001037 2024-02-19 17:13:36.385 2024-02-19 17:13:36.385 9000 TIP 430771 1605 6001045 2024-02-19 17:14:42.471 2024-02-19 17:14:42.471 1700 FEE 430989 17514 6001046 2024-02-19 17:14:42.471 2024-02-19 17:14:42.471 15300 TIP 430989 21620 6001048 2024-02-19 17:15:12.474 2024-02-19 17:15:12.474 1000 FEE 430648 17707 6001049 2024-02-19 17:15:12.474 2024-02-19 17:15:12.474 9000 TIP 430648 666 6001056 2024-02-19 17:15:28.511 2024-02-19 17:15:28.511 4000 FEE 430992 12057 6001057 2024-02-19 17:15:28.511 2024-02-19 17:15:28.511 36000 TIP 430992 6471 6001060 2024-02-19 17:16:07.053 2024-02-19 17:16:07.053 1000 FEE 421586 11075 6001061 2024-02-19 17:16:07.053 2024-02-19 17:16:07.053 9000 TIP 421586 11498 6001062 2024-02-19 17:16:35.676 2024-02-19 17:16:35.676 800 FEE 430619 2075 6001063 2024-02-19 17:16:35.676 2024-02-19 17:16:35.676 7200 TIP 430619 759 6001077 2024-02-19 17:17:52.171 2024-02-19 17:17:52.171 800 FEE 430245 20841 6001078 2024-02-19 17:17:52.171 2024-02-19 17:17:52.171 7200 TIP 430245 16282 6001083 2024-02-19 17:18:27.064 2024-02-19 17:18:27.064 1400 FEE 430923 14785 6001084 2024-02-19 17:18:27.064 2024-02-19 17:18:27.064 12600 TIP 430923 9171 6001108 2024-02-19 17:21:27.123 2024-02-19 17:21:27.123 1000 FEE 431010 5497 6001139 2024-02-19 17:22:59.878 2024-02-19 17:22:59.878 100 FEE 430906 14357 6001140 2024-02-19 17:22:59.878 2024-02-19 17:22:59.878 900 TIP 430906 3683 6001174 2024-02-19 17:23:06.471 2024-02-19 17:23:06.471 100 FEE 430794 17124 6001175 2024-02-19 17:23:06.471 2024-02-19 17:23:06.471 900 TIP 430794 12139 6001189 2024-02-19 17:23:11.249 2024-02-19 17:23:11.249 1000 FEE 431035 17218 6001196 2024-02-19 17:23:15.423 2024-02-19 17:23:15.423 2100 FEE 430770 16598 6001197 2024-02-19 17:23:15.423 2024-02-19 17:23:15.423 18900 TIP 430770 7766 6001198 2024-02-19 17:23:16.737 2024-02-19 17:23:16.737 1000 FEE 431036 640 6001210 2024-02-19 17:23:25.567 2024-02-19 17:23:25.567 1000 FEE 431038 13378 6001211 2024-02-19 17:23:25.785 2024-02-19 17:23:25.785 2100 FEE 430496 16970 6001212 2024-02-19 17:23:25.785 2024-02-19 17:23:25.785 18900 TIP 430496 2780 6001213 2024-02-19 17:23:31.167 2024-02-19 17:23:31.167 1000 FEE 431039 19941 6001218 2024-02-19 17:23:39.048 2024-02-19 17:23:39.048 1000 FEE 431042 9184 6001219 2024-02-19 17:23:39.646 2024-02-19 17:23:39.646 2100 FEE 430811 16059 6001220 2024-02-19 17:23:39.646 2024-02-19 17:23:39.646 18900 TIP 430811 4167 6001228 2024-02-19 17:23:44.349 2024-02-19 17:23:44.349 2100 FEE 430869 5703 6001229 2024-02-19 17:23:44.349 2024-02-19 17:23:44.349 18900 TIP 430869 20990 6001230 2024-02-19 17:23:51.996 2024-02-19 17:23:51.996 400 FEE 431035 7989 6001231 2024-02-19 17:23:51.996 2024-02-19 17:23:51.996 3600 TIP 431035 21441 6001240 2024-02-19 17:24:46.4 2024-02-19 17:24:46.4 1000 FEE 431051 16542 6001245 2024-02-19 17:24:57.965 2024-02-19 17:24:57.965 1000 FEE 431056 706 6001260 2024-02-19 17:26:28.425 2024-02-19 17:26:28.425 1000 FEE 404189 3518 6001261 2024-02-19 17:26:28.425 2024-02-19 17:26:28.425 9000 TIP 404189 20059 6001293 2024-02-19 17:29:48.741 2024-02-19 17:29:48.741 1000 FEE 427054 18717 6001294 2024-02-19 17:29:48.741 2024-02-19 17:29:48.741 9000 TIP 427054 18199 6001297 2024-02-19 17:30:07.224 2024-02-19 17:30:07.224 1000 FEE 426365 18842 6001298 2024-02-19 17:30:07.224 2024-02-19 17:30:07.224 9000 TIP 426365 18865 6001300 2024-02-19 17:30:19.969 2024-02-19 17:30:19.969 10000 FEE 430934 8385 6001301 2024-02-19 17:30:19.969 2024-02-19 17:30:19.969 90000 TIP 430934 20825 6001328 2024-02-19 17:33:13.115 2024-02-19 17:33:13.115 500 FEE 430545 16754 6001329 2024-02-19 17:33:13.115 2024-02-19 17:33:13.115 4500 TIP 430545 16442 6001372 2024-02-19 17:36:47.803 2024-02-19 17:36:47.803 100 FEE 430349 642 6001373 2024-02-19 17:36:47.803 2024-02-19 17:36:47.803 900 TIP 430349 13055 6001378 2024-02-19 17:36:48.959 2024-02-19 17:36:48.959 100 FEE 430349 19813 6001379 2024-02-19 17:36:48.959 2024-02-19 17:36:48.959 900 TIP 430349 14376 6001392 2024-02-19 17:39:52.521 2024-02-19 17:39:52.521 1000 FEE 431092 1136 6001402 2024-02-19 17:40:16.831 2024-02-19 17:40:16.831 1000 FEE 431101 4345 6001409 2024-02-19 17:40:34.417 2024-02-19 17:40:34.417 1000 FEE 431108 7673 6001435 2024-02-19 17:42:42.172 2024-02-19 17:42:42.172 100 FEE 431109 10342 6001436 2024-02-19 17:42:42.172 2024-02-19 17:42:42.172 900 TIP 431109 14906 6001468 2024-02-19 17:44:13.682 2024-02-19 17:44:13.682 1000 FEE 431126 19043 6001499 2024-02-19 17:47:36.009 2024-02-19 17:47:36.009 0 FEE 431134 17713 6001515 2024-02-19 17:49:04.133 2024-02-19 17:49:04.133 10000 FEE 430626 848 6001516 2024-02-19 17:49:04.133 2024-02-19 17:49:04.133 90000 TIP 430626 4958 6001517 2024-02-19 17:49:04.544 2024-02-19 17:49:04.544 10000 FEE 430626 17014 6001518 2024-02-19 17:49:04.544 2024-02-19 17:49:04.544 90000 TIP 430626 20778 6001527 2024-02-19 17:49:20.978 2024-02-19 17:49:20.978 1100 FEE 430847 19292 6001528 2024-02-19 17:49:20.978 2024-02-19 17:49:20.978 9900 TIP 430847 18235 6001534 2024-02-19 17:50:04.709 2024-02-19 17:50:04.709 1100 FEE 430920 2961 6001535 2024-02-19 17:50:04.709 2024-02-19 17:50:04.709 9900 TIP 430920 21532 6001553 2024-02-19 17:52:31.343 2024-02-19 17:52:31.343 2100 FEE 431002 14357 6001554 2024-02-19 17:52:31.343 2024-02-19 17:52:31.343 18900 TIP 431002 10359 6001573 2024-02-19 17:55:20.848 2024-02-19 17:55:20.848 2100 FEE 430953 13622 6001574 2024-02-19 17:55:20.848 2024-02-19 17:55:20.848 18900 TIP 430953 4059 6001590 2024-02-19 17:56:36.166 2024-02-19 17:56:36.166 1000 FEE 430638 13174 6000823 2024-02-19 16:58:50.535 2024-02-19 16:58:50.535 9000 TIP 430331 19961 6000824 2024-02-19 16:58:50.845 2024-02-19 16:58:50.845 1000 FEE 430331 638 6000825 2024-02-19 16:58:50.845 2024-02-19 16:58:50.845 9000 TIP 430331 14950 6000851 2024-02-19 17:00:58.573 2024-02-19 17:00:58.573 100 FEE 430695 9833 6000852 2024-02-19 17:00:58.573 2024-02-19 17:00:58.573 900 TIP 430695 20849 6000855 2024-02-19 17:00:59.308 2024-02-19 17:00:59.308 100 FEE 430695 21026 6000856 2024-02-19 17:00:59.308 2024-02-19 17:00:59.308 900 TIP 430695 19469 6000862 2024-02-19 17:01:28.254 2024-02-19 17:01:28.254 1000 FEE 430982 2525 6000907 2024-02-19 17:03:41.745 2024-02-19 17:03:41.745 100 FEE 430679 19826 6000908 2024-02-19 17:03:41.745 2024-02-19 17:03:41.745 900 TIP 430679 17014 6000922 2024-02-19 17:04:41.523 2024-02-19 17:04:41.523 100 FEE 430658 20163 6000923 2024-02-19 17:04:41.523 2024-02-19 17:04:41.523 900 TIP 430658 21540 6000926 2024-02-19 17:04:41.784 2024-02-19 17:04:41.784 100 FEE 430658 4238 6000927 2024-02-19 17:04:41.784 2024-02-19 17:04:41.784 900 TIP 430658 9159 6000928 2024-02-19 17:04:42.181 2024-02-19 17:04:42.181 100 FEE 430658 720 6000929 2024-02-19 17:04:42.181 2024-02-19 17:04:42.181 900 TIP 430658 899 6000955 2024-02-19 17:05:06.861 2024-02-19 17:05:06.861 100 FEE 430653 15762 6000956 2024-02-19 17:05:06.861 2024-02-19 17:05:06.861 900 TIP 430653 11698 6000979 2024-02-19 17:05:19.149 2024-02-19 17:05:19.149 1000 FEE 430201 8242 6000980 2024-02-19 17:05:19.149 2024-02-19 17:05:19.149 9000 TIP 430201 16212 6000987 2024-02-19 17:05:39.076 2024-02-19 17:05:39.076 100 FEE 430878 2232 6000988 2024-02-19 17:05:39.076 2024-02-19 17:05:39.076 900 TIP 430878 17693 6000989 2024-02-19 17:05:40.116 2024-02-19 17:05:40.116 200 FEE 430878 18528 6000990 2024-02-19 17:05:40.116 2024-02-19 17:05:40.116 1800 TIP 430878 20826 6001024 2024-02-19 17:11:51.078 2024-02-19 17:11:51.078 12800 FEE 430892 794 6001025 2024-02-19 17:11:51.078 2024-02-19 17:11:51.078 115200 TIP 430892 12175 6001092 2024-02-19 17:19:53.032 2024-02-19 17:19:53.032 1000 FEE 431000 21405 6001093 2024-02-19 17:19:53.032 2024-02-19 17:19:53.032 9000 TIP 431000 20596 6001097 2024-02-19 17:21:01.797 2024-02-19 17:21:01.797 1000 FEE 431004 16442 6001100 2024-02-19 17:21:15.317 2024-02-19 17:21:15.317 1000 FEE 431006 18448 6001101 2024-02-19 17:21:20.452 2024-02-19 17:21:20.452 1000 FEE 431007 11670 6001112 2024-02-19 17:21:39.754 2024-02-19 17:21:39.754 1000 FEE 431014 9346 6001114 2024-02-19 17:21:45.188 2024-02-19 17:21:45.188 1000 FEE 431016 19735 6001141 2024-02-19 17:22:59.969 2024-02-19 17:22:59.969 100 FEE 430906 11430 6001142 2024-02-19 17:22:59.969 2024-02-19 17:22:59.969 900 TIP 430906 1124 6001145 2024-02-19 17:23:00.315 2024-02-19 17:23:00.315 100 FEE 430906 10007 6001146 2024-02-19 17:23:00.315 2024-02-19 17:23:00.315 900 TIP 430906 679 6001149 2024-02-19 17:23:01.222 2024-02-19 17:23:01.222 100 FEE 430906 18704 6001150 2024-02-19 17:23:01.222 2024-02-19 17:23:01.222 900 TIP 430906 18836 6001163 2024-02-19 17:23:03.904 2024-02-19 17:23:03.904 100 FEE 430972 19967 6001164 2024-02-19 17:23:03.904 2024-02-19 17:23:03.904 900 TIP 430972 13406 6001184 2024-02-19 17:23:07.684 2024-02-19 17:23:07.684 200 FEE 430794 11158 6001185 2024-02-19 17:23:07.684 2024-02-19 17:23:07.684 1800 TIP 430794 2749 6001187 2024-02-19 17:23:09.954 2024-02-19 17:23:09.954 2100 FEE 430892 20738 6001188 2024-02-19 17:23:09.954 2024-02-19 17:23:09.954 18900 TIP 430892 21212 6001217 2024-02-19 17:23:36.591 2024-02-19 17:23:36.591 1000 FEE 431041 21103 6001224 2024-02-19 17:23:41.738 2024-02-19 17:23:41.738 2100 FEE 430507 8498 6001225 2024-02-19 17:23:41.738 2024-02-19 17:23:41.738 18900 TIP 430507 15843 6001236 2024-02-19 17:24:31.74 2024-02-19 17:24:31.74 1000 FEE 431047 21441 6001238 2024-02-19 17:24:42.889 2024-02-19 17:24:42.889 1000 FEE 431049 19449 6001241 2024-02-19 17:24:49.226 2024-02-19 17:24:49.226 1000 FEE 431052 739 6001285 2024-02-19 17:29:01.127 2024-02-19 17:29:01.127 1000 FEE 431070 5449 6001308 2024-02-19 17:30:54.731 2024-02-19 17:30:54.731 1000 FEE 431077 21480 6001324 2024-02-19 17:32:33.514 2024-02-19 17:32:33.514 1000 FEE 431082 20581 6001346 2024-02-19 17:36:13.604 2024-02-19 17:36:13.604 1000 FEE 361726 19018 6001347 2024-02-19 17:36:13.604 2024-02-19 17:36:13.604 9000 TIP 361726 20267 6001364 2024-02-19 17:36:20.471 2024-02-19 17:36:20.471 100 FEE 430283 7869 6001365 2024-02-19 17:36:20.471 2024-02-19 17:36:20.471 900 TIP 430283 814 6001381 2024-02-19 17:37:08.226 2024-02-19 17:37:08.226 1000 FEE 431089 21469 6001394 2024-02-19 17:39:59.608 2024-02-19 17:39:59.608 1000 FEE 431094 20310 6001406 2024-02-19 17:40:25.69 2024-02-19 17:40:25.69 1000 FEE 431105 2652 6001410 2024-02-19 17:40:49.327 2024-02-19 17:40:49.327 1000 FEE 427990 1298 6001411 2024-02-19 17:40:49.327 2024-02-19 17:40:49.327 9000 TIP 427990 21492 6001418 2024-02-19 17:41:44.33 2024-02-19 17:41:44.33 1000 FEE 425402 4083 6001419 2024-02-19 17:41:44.33 2024-02-19 17:41:44.33 9000 TIP 425402 10016 6001420 2024-02-19 17:41:51.222 2024-02-19 17:41:51.222 1000 FEE 431110 16667 6001427 2024-02-19 17:42:06.823 2024-02-19 17:42:06.823 1000 FEE 431115 6555 6001428 2024-02-19 17:42:09.903 2024-02-19 17:42:09.903 1000 FEE 431116 17042 6001429 2024-02-19 17:42:12.116 2024-02-19 17:42:12.116 1000 FEE 431117 2390 6001473 2024-02-19 17:44:29.849 2024-02-19 17:44:29.849 1700 FEE 413751 18392 6001474 2024-02-19 17:44:29.849 2024-02-19 17:44:29.849 15300 TIP 413751 8133 6001481 2024-02-19 17:45:37.436 2024-02-19 17:45:37.436 5000 FEE 431130 21057 6001497 2024-02-19 17:47:25.355 2024-02-19 17:47:25.355 0 FEE 431131 5775 6001498 2024-02-19 17:47:31.478 2024-02-19 17:47:31.478 1000 FEE 431134 7773 6001521 2024-02-19 17:49:05.029 2024-02-19 17:49:05.029 10000 FEE 430626 16097 6001522 2024-02-19 17:49:05.029 2024-02-19 17:49:05.029 90000 TIP 430626 10484 6001525 2024-02-19 17:49:05.852 2024-02-19 17:49:05.852 10000 FEE 430626 746 6001526 2024-02-19 17:49:05.852 2024-02-19 17:49:05.852 90000 TIP 430626 10698 6001530 2024-02-19 17:50:03.495 2024-02-19 17:50:03.495 1100 FEE 430920 6717 6001531 2024-02-19 17:50:03.495 2024-02-19 17:50:03.495 9900 TIP 430920 8385 6001544 2024-02-19 17:51:29.13 2024-02-19 17:51:29.13 2100 FEE 430968 20646 6001545 2024-02-19 17:51:29.13 2024-02-19 17:51:29.13 18900 TIP 430968 14688 6001582 2024-02-19 17:56:33.527 2024-02-19 17:56:33.527 1000 FEE 430638 1320 6001583 2024-02-19 17:56:33.527 2024-02-19 17:56:33.527 9000 TIP 430638 19839 6001586 2024-02-19 17:56:35.563 2024-02-19 17:56:35.563 1000 FEE 430638 20424 6001587 2024-02-19 17:56:35.563 2024-02-19 17:56:35.563 9000 TIP 430638 2065 6001592 2024-02-19 17:56:36.33 2024-02-19 17:56:36.33 1000 FEE 430638 6149 6001593 2024-02-19 17:56:36.33 2024-02-19 17:56:36.33 9000 TIP 430638 9551 6001597 2024-02-19 17:56:57.87 2024-02-19 17:56:57.87 1000 FEE 431147 21619 6001600 2024-02-19 17:57:35.985 2024-02-19 17:57:35.985 2100 FEE 430569 15094 6001601 2024-02-19 17:57:35.985 2024-02-19 17:57:35.985 18900 TIP 430569 1114 6001616 2024-02-19 17:58:25.502 2024-02-19 17:58:25.502 2100 FEE 430496 12265 6001617 2024-02-19 17:58:25.502 2024-02-19 17:58:25.502 18900 TIP 430496 19527 6001634 2024-02-19 17:59:45.311 2024-02-19 17:59:45.311 700 FEE 431129 6058 6001635 2024-02-19 17:59:45.311 2024-02-19 17:59:45.311 6300 TIP 431129 20180 6001638 2024-02-19 17:59:45.569 2024-02-19 17:59:45.569 700 FEE 431129 19007 6001639 2024-02-19 17:59:45.569 2024-02-19 17:59:45.569 6300 TIP 431129 5538 6001649 2024-02-19 18:00:53.848 2024-02-19 18:00:53.848 1000 FEE 431156 1617 6001658 2024-02-19 18:01:32.566 2024-02-19 18:01:32.566 1000 FEE 431160 19375 6001675 2024-02-19 18:02:54.051 2024-02-19 18:02:54.051 100 FEE 431158 1806 6001676 2024-02-19 18:02:54.051 2024-02-19 18:02:54.051 900 TIP 431158 4250 6001685 2024-02-19 18:04:39.156 2024-02-19 18:04:39.156 1000 FEE 431166 18311 6001693 2024-02-19 18:06:25.472 2024-02-19 18:06:25.472 2100 FEE 431156 20669 6001694 2024-02-19 18:06:25.472 2024-02-19 18:06:25.472 18900 TIP 431156 11091 6001698 2024-02-19 18:07:50.809 2024-02-19 18:07:50.809 1000 FEE 431161 1320 6001699 2024-02-19 18:07:50.809 2024-02-19 18:07:50.809 9000 TIP 431161 17708 6001709 2024-02-19 18:08:11.946 2024-02-19 18:08:11.946 10000 FEE 260858 18989 6000937 2024-02-19 17:04:49.972 2024-02-19 17:04:49.972 900 TIP 430655 18896 6000946 2024-02-19 17:04:56.833 2024-02-19 17:04:56.833 1000 FEE 430195 18583 6000947 2024-02-19 17:04:56.833 2024-02-19 17:04:56.833 9000 TIP 430195 9184 6000977 2024-02-19 17:05:17.507 2024-02-19 17:05:17.507 1000 FEE 430199 7992 6000978 2024-02-19 17:05:17.507 2024-02-19 17:05:17.507 9000 TIP 430199 13575 6000993 2024-02-19 17:05:45.51 2024-02-19 17:05:45.51 1000 FEE 430200 15719 6000994 2024-02-19 17:05:45.51 2024-02-19 17:05:45.51 9000 TIP 430200 15697 6000999 2024-02-19 17:05:46.971 2024-02-19 17:05:46.971 1000 FEE 430200 17741 6001000 2024-02-19 17:05:46.971 2024-02-19 17:05:46.971 9000 TIP 430200 13097 6001016 2024-02-19 17:08:13.309 2024-02-19 17:08:13.309 4000 FEE 430984 9335 6001017 2024-02-19 17:08:13.309 2024-02-19 17:08:13.309 36000 TIP 430984 683 6001040 2024-02-19 17:13:37.27 2024-02-19 17:13:37.27 1000 FEE 430771 16301 6001041 2024-02-19 17:13:37.27 2024-02-19 17:13:37.27 9000 TIP 430771 13216 6001075 2024-02-19 17:17:46.108 2024-02-19 17:17:46.108 800 FEE 430496 20906 6001076 2024-02-19 17:17:46.108 2024-02-19 17:17:46.108 7200 TIP 430496 687 6001085 2024-02-19 17:18:44.792 2024-02-19 17:18:44.792 1000 FEE 431000 16177 6001133 2024-02-19 17:22:55.188 2024-02-19 17:22:55.188 100 FEE 430972 3392 6001134 2024-02-19 17:22:55.188 2024-02-19 17:22:55.188 900 TIP 430972 18680 6001137 2024-02-19 17:22:59.621 2024-02-19 17:22:59.621 100 FEE 430906 18984 6001138 2024-02-19 17:22:59.621 2024-02-19 17:22:59.621 900 TIP 430906 20981 6001151 2024-02-19 17:23:01.523 2024-02-19 17:23:01.523 100 FEE 430906 18291 6001152 2024-02-19 17:23:01.523 2024-02-19 17:23:01.523 900 TIP 430906 18170 6001180 2024-02-19 17:23:06.969 2024-02-19 17:23:06.969 100 FEE 430794 20377 6001181 2024-02-19 17:23:06.969 2024-02-19 17:23:06.969 900 TIP 430794 2514 6001190 2024-02-19 17:23:12.788 2024-02-19 17:23:12.788 2100 FEE 430795 5495 6001191 2024-02-19 17:23:12.788 2024-02-19 17:23:12.788 18900 TIP 430795 8541 6001207 2024-02-19 17:23:21.23 2024-02-19 17:23:21.23 1000 FEE 431037 20353 6001235 2024-02-19 17:24:26.038 2024-02-19 17:24:26.038 1000 FEE 431046 19909 6001249 2024-02-19 17:25:04.69 2024-02-19 17:25:04.69 1000 FEE 431059 20163 6001258 2024-02-19 17:26:24.589 2024-02-19 17:26:24.589 1000 FEE 404421 19322 6001259 2024-02-19 17:26:24.589 2024-02-19 17:26:24.589 9000 TIP 404421 5003 6001306 2024-02-19 17:30:49.322 2024-02-19 17:30:49.322 1000 FEE 430837 690 6001307 2024-02-19 17:30:49.322 2024-02-19 17:30:49.322 9000 TIP 430837 15213 6001312 2024-02-19 17:31:10.846 2024-02-19 17:31:10.846 700 FEE 431068 17976 6001313 2024-02-19 17:31:10.846 2024-02-19 17:31:10.846 6300 TIP 431068 8841 6001317 2024-02-19 17:32:16.941 2024-02-19 17:32:16.941 1000 FEE 431080 15484 6001319 2024-02-19 17:32:20.929 2024-02-19 17:32:20.929 1300 FEE 430962 6229 6001320 2024-02-19 17:32:20.929 2024-02-19 17:32:20.929 11700 TIP 430962 1298 6001322 2024-02-19 17:32:25.343 2024-02-19 17:32:25.343 1000 FEE 431040 9355 6001323 2024-02-19 17:32:25.343 2024-02-19 17:32:25.343 9000 TIP 431040 13987 6001337 2024-02-19 17:35:29.452 2024-02-19 17:35:29.452 100 FEE 430607 3347 6001338 2024-02-19 17:35:29.452 2024-02-19 17:35:29.452 900 TIP 430607 20133 6001341 2024-02-19 17:35:30.29 2024-02-19 17:35:30.29 100 FEE 430607 19333 6001342 2024-02-19 17:35:30.29 2024-02-19 17:35:30.29 900 TIP 430607 20963 6001356 2024-02-19 17:36:15.72 2024-02-19 17:36:15.72 100 FEE 430439 18138 6001357 2024-02-19 17:36:15.72 2024-02-19 17:36:15.72 900 TIP 430439 18923 6001397 2024-02-19 17:40:03.996 2024-02-19 17:40:03.996 1000 FEE 431096 16432 6001408 2024-02-19 17:40:31.208 2024-02-19 17:40:31.208 1000 FEE 431107 20738 6001433 2024-02-19 17:42:22.467 2024-02-19 17:42:22.467 1000 FEE 431121 11897 6001443 2024-02-19 17:43:14.601 2024-02-19 17:43:14.601 1000 FEE 431067 14774 6001444 2024-02-19 17:43:14.601 2024-02-19 17:43:14.601 9000 TIP 431067 14357 6001447 2024-02-19 17:43:15.304 2024-02-19 17:43:15.304 1000 FEE 431067 21292 6001448 2024-02-19 17:43:15.304 2024-02-19 17:43:15.304 9000 TIP 431067 13878 6001456 2024-02-19 17:43:45.92 2024-02-19 17:43:45.92 900 FEE 430869 2640 6001457 2024-02-19 17:43:45.92 2024-02-19 17:43:45.92 8100 TIP 430869 9171 6001493 2024-02-19 17:46:50.798 2024-02-19 17:46:50.798 21000 FEE 430953 1007 6001494 2024-02-19 17:46:50.798 2024-02-19 17:46:50.798 189000 TIP 430953 630 6001500 2024-02-19 17:47:39.495 2024-02-19 17:47:39.495 1000 FEE 431135 21402 6001540 2024-02-19 17:50:43.012 2024-02-19 17:50:43.012 1000 FEE 431138 19664 6001542 2024-02-19 17:51:23.624 2024-02-19 17:51:23.624 2100 FEE 430626 9433 6001543 2024-02-19 17:51:23.624 2024-02-19 17:51:23.624 18900 TIP 430626 12561 6001551 2024-02-19 17:52:24.926 2024-02-19 17:52:24.926 2100 FEE 430892 21521 6001552 2024-02-19 17:52:24.926 2024-02-19 17:52:24.926 18900 TIP 430892 1319 6001555 2024-02-19 17:52:45.48 2024-02-19 17:52:45.48 10000 FEE 431139 2741 6001556 2024-02-19 17:52:51.451 2024-02-19 17:52:51.451 2100 FEE 430975 20337 6001557 2024-02-19 17:52:51.451 2024-02-19 17:52:51.451 18900 TIP 430975 18396 6001564 2024-02-19 17:53:24.084 2024-02-19 17:53:24.084 2100 FEE 430959 19852 6001565 2024-02-19 17:53:24.084 2024-02-19 17:53:24.084 18900 TIP 430959 9159 6001599 2024-02-19 17:57:13.91 2024-02-19 17:57:13.91 1000 FEE 431148 9433 6001611 2024-02-19 17:58:08.113 2024-02-19 17:58:08.113 100 FEE 430607 9906 6001612 2024-02-19 17:58:08.113 2024-02-19 17:58:08.113 900 TIP 430607 10342 6001643 2024-02-19 18:00:05.682 2024-02-19 18:00:05.682 10000 FEE 431152 20655 6001666 2024-02-19 18:01:57.139 2024-02-19 18:01:57.139 1000 FEE 431137 11091 6001667 2024-02-19 18:01:57.139 2024-02-19 18:01:57.139 9000 TIP 431137 686 6001677 2024-02-19 18:02:58.152 2024-02-19 18:02:58.152 1000 FEE 431162 1733 6001704 2024-02-19 18:07:52.157 2024-02-19 18:07:52.157 1000 FEE 431161 787 6001705 2024-02-19 18:07:52.157 2024-02-19 18:07:52.157 9000 TIP 431161 16665 6001722 2024-02-19 18:09:32.427 2024-02-19 18:09:32.427 1000 FEE 431161 21291 6001723 2024-02-19 18:09:32.427 2024-02-19 18:09:32.427 9000 TIP 431161 19031 6001740 2024-02-19 18:10:56.446 2024-02-19 18:10:56.446 1000 FEE 431167 18265 6001741 2024-02-19 18:10:56.446 2024-02-19 18:10:56.446 9000 TIP 431167 5865 6001744 2024-02-19 18:10:57.867 2024-02-19 18:10:57.867 1000 FEE 431167 16769 6001745 2024-02-19 18:10:57.867 2024-02-19 18:10:57.867 9000 TIP 431167 20904 6001746 2024-02-19 18:10:58.076 2024-02-19 18:10:58.076 1000 FEE 431167 19375 6001747 2024-02-19 18:10:58.076 2024-02-19 18:10:58.076 9000 TIP 431167 19668 6001775 2024-02-19 18:14:09.12 2024-02-19 18:14:09.12 600 FEE 431150 825 6001776 2024-02-19 18:14:09.12 2024-02-19 18:14:09.12 5400 TIP 431150 16808 6001780 2024-02-19 18:14:21.597 2024-02-19 18:14:21.597 1000 FEE 431184 11498 6001785 2024-02-19 18:14:41.485 2024-02-19 18:14:41.485 1000 FEE 431189 891 6001786 2024-02-19 18:14:44.867 2024-02-19 18:14:44.867 1000 FEE 431190 9992 6001789 2024-02-19 18:14:52.553 2024-02-19 18:14:52.553 1000 FEE 431193 8080 6001819 2024-02-19 18:16:17.401 2024-02-19 18:16:17.401 1000 FEE 431219 20585 6001842 2024-02-19 18:17:25.376 2024-02-19 18:17:25.376 1000 FEE 431225 1490 6001844 2024-02-19 18:17:28.51 2024-02-19 18:17:28.51 2100 FEE 431212 9339 6001845 2024-02-19 18:17:28.51 2024-02-19 18:17:28.51 18900 TIP 431212 13843 6001857 2024-02-19 18:18:00.892 2024-02-19 18:18:00.892 1000 FEE 431238 9421 6001886 2024-02-19 18:20:21.826 2024-02-19 18:20:21.826 1000 FEE 431246 18005 6001896 2024-02-19 18:20:47.226 2024-02-19 18:20:47.226 1000 FEE 431256 19494 6001910 2024-02-19 18:21:03.951 2024-02-19 18:21:03.951 100 FEE 430439 1737 6001911 2024-02-19 18:21:03.951 2024-02-19 18:21:03.951 900 TIP 430439 14255 6001918 2024-02-19 18:21:06.871 2024-02-19 18:21:06.871 1000 FEE 430593 1650 6001919 2024-02-19 18:21:06.871 2024-02-19 18:21:06.871 9000 TIP 430593 18396 6001920 2024-02-19 18:21:06.909 2024-02-19 18:21:06.909 100 FEE 430283 12057 6001921 2024-02-19 18:21:06.909 2024-02-19 18:21:06.909 900 TIP 430283 1720 6001924 2024-02-19 18:21:07.531 2024-02-19 18:21:07.531 100 FEE 430283 12609 6001925 2024-02-19 18:21:07.531 2024-02-19 18:21:07.531 900 TIP 430283 18897 6001971 2024-02-19 18:22:33.845 2024-02-19 18:22:33.845 1000 FEE 431271 913 6001103 2024-02-19 17:21:24.757 2024-02-19 17:21:24.757 1000 FEE 431009 7674 6001111 2024-02-19 17:21:36.888 2024-02-19 17:21:36.888 1000 FEE 431013 15075 6001118 2024-02-19 17:21:55.842 2024-02-19 17:21:55.842 1000 FEE 431020 18114 6001123 2024-02-19 17:22:28.097 2024-02-19 17:22:28.097 1000 FEE 431024 20788 6001127 2024-02-19 17:22:39.5 2024-02-19 17:22:39.5 1000 FEE 431028 19841 6001131 2024-02-19 17:22:48.567 2024-02-19 17:22:48.567 1000 FEE 431032 16912 6001165 2024-02-19 17:23:04.08 2024-02-19 17:23:04.08 100 FEE 430972 20756 6001166 2024-02-19 17:23:04.08 2024-02-19 17:23:04.08 900 TIP 430972 18626 6001199 2024-02-19 17:23:17.108 2024-02-19 17:23:17.108 2100 FEE 430700 8448 6001200 2024-02-19 17:23:17.108 2024-02-19 17:23:17.108 18900 TIP 430700 1320 6001201 2024-02-19 17:23:17.906 2024-02-19 17:23:17.906 2100 FEE 430569 5794 6001202 2024-02-19 17:23:17.906 2024-02-19 17:23:17.906 18900 TIP 430569 20514 6001221 2024-02-19 17:23:41.023 2024-02-19 17:23:41.023 2100 FEE 430824 18557 6001222 2024-02-19 17:23:41.023 2024-02-19 17:23:41.023 18900 TIP 430824 7587 6001226 2024-02-19 17:23:43.279 2024-02-19 17:23:43.279 2100 FEE 430837 9863 6001227 2024-02-19 17:23:43.279 2024-02-19 17:23:43.279 18900 TIP 430837 18180 6001256 2024-02-19 17:25:49.396 2024-02-19 17:25:49.396 10000 FEE 431066 18556 6001265 2024-02-19 17:27:05.904 2024-02-19 17:27:05.904 700 FEE 431066 19938 6001266 2024-02-19 17:27:05.904 2024-02-19 17:27:05.904 6300 TIP 431066 4692 6001267 2024-02-19 17:27:26.577 2024-02-19 17:27:26.577 2100 FEE 431004 3411 6001268 2024-02-19 17:27:26.577 2024-02-19 17:27:26.577 18900 TIP 431004 15624 6001283 2024-02-19 17:28:59.312 2024-02-19 17:28:59.312 2500 FEE 430852 21003 6001284 2024-02-19 17:28:59.312 2024-02-19 17:28:59.312 22500 TIP 430852 10731 6001287 2024-02-19 17:29:09.139 2024-02-19 17:29:09.139 1000 FEE 431071 20258 6001295 2024-02-19 17:30:00.934 2024-02-19 17:30:00.934 1000 FEE 431073 8284 6001314 2024-02-19 17:31:35.131 2024-02-19 17:31:35.131 1000 FEE 431078 18016 6001366 2024-02-19 17:36:20.986 2024-02-19 17:36:20.986 100 FEE 430283 17116 6001367 2024-02-19 17:36:20.986 2024-02-19 17:36:20.986 900 TIP 430283 20201 6001369 2024-02-19 17:36:46.598 2024-02-19 17:36:46.598 0 FEE 431072 4345 6001395 2024-02-19 17:40:01.675 2024-02-19 17:40:01.675 1000 FEE 431095 21323 6001398 2024-02-19 17:40:06.968 2024-02-19 17:40:06.968 1000 FEE 431097 15052 6001405 2024-02-19 17:40:21.856 2024-02-19 17:40:21.856 1000 FEE 431104 18396 6001424 2024-02-19 17:42:02.462 2024-02-19 17:42:02.462 0 FEE 431110 20564 6001441 2024-02-19 17:43:14.132 2024-02-19 17:43:14.132 1000 FEE 431067 21303 6001442 2024-02-19 17:43:14.132 2024-02-19 17:43:14.132 9000 TIP 431067 19346 6001477 2024-02-19 17:44:40.566 2024-02-19 17:44:40.566 1000 FEE 431127 687 6001507 2024-02-19 17:49:02.818 2024-02-19 17:49:02.818 10000 FEE 430626 9337 6001508 2024-02-19 17:49:02.818 2024-02-19 17:49:02.818 90000 TIP 430626 18453 6001513 2024-02-19 17:49:03.929 2024-02-19 17:49:03.929 10000 FEE 430626 666 6001514 2024-02-19 17:49:03.929 2024-02-19 17:49:03.929 90000 TIP 430626 16929 6001519 2024-02-19 17:49:04.802 2024-02-19 17:49:04.802 10000 FEE 430626 6594 6001520 2024-02-19 17:49:04.802 2024-02-19 17:49:04.802 90000 TIP 430626 19381 6001538 2024-02-19 17:50:19.825 2024-02-19 17:50:19.825 1000 FEE 430924 11992 6001539 2024-02-19 17:50:19.825 2024-02-19 17:50:19.825 9000 TIP 430924 18076 6001549 2024-02-19 17:52:21.468 2024-02-19 17:52:21.468 2100 FEE 430920 20153 6001550 2024-02-19 17:52:21.468 2024-02-19 17:52:21.468 18900 TIP 430920 15703 6001579 2024-02-19 17:56:20.741 2024-02-19 17:56:20.741 1000 FEE 431145 9167 6001594 2024-02-19 17:56:45.224 2024-02-19 17:56:45.224 1000 FEE 431146 1705 6001613 2024-02-19 17:58:12.091 2024-02-19 17:58:12.091 100 FEE 430811 718 6001614 2024-02-19 17:58:12.091 2024-02-19 17:58:12.091 900 TIP 430811 21514 6001620 2024-02-19 17:58:44.126 2024-02-19 17:58:44.126 100 FEE 430771 6058 6001621 2024-02-19 17:58:44.126 2024-02-19 17:58:44.126 900 TIP 430771 9099 6001626 2024-02-19 17:58:58.234 2024-02-19 17:58:58.234 100 FEE 430892 1142 6001627 2024-02-19 17:58:58.234 2024-02-19 17:58:58.234 900 TIP 430892 9845 6001632 2024-02-19 17:59:38.526 2024-02-19 17:59:38.526 500 FEE 431109 18336 6001633 2024-02-19 17:59:38.526 2024-02-19 17:59:38.526 4500 TIP 431109 19837 6001647 2024-02-19 18:00:28.639 2024-02-19 18:00:28.639 1000 FEE 431154 15594 6001681 2024-02-19 18:03:08.863 2024-02-19 18:03:08.863 1000 FEE 431163 20588 6001697 2024-02-19 18:07:45.142 2024-02-19 18:07:45.142 1000 FEE 431170 20562 6001713 2024-02-19 18:08:48.995 2024-02-19 18:08:48.995 3200 FEE 431163 18393 6001714 2024-02-19 18:08:48.995 2024-02-19 18:08:48.995 28800 TIP 431163 7675 6001728 2024-02-19 18:09:33.952 2024-02-19 18:09:33.952 1000 FEE 431161 14818 6001729 2024-02-19 18:09:33.952 2024-02-19 18:09:33.952 9000 TIP 431161 14308 6001730 2024-02-19 18:09:34.507 2024-02-19 18:09:34.507 1000 FEE 431161 14545 6001731 2024-02-19 18:09:34.507 2024-02-19 18:09:34.507 9000 TIP 431161 19535 6001756 2024-02-19 18:13:49.125 2024-02-19 18:13:49.125 400 FEE 431127 21609 6001757 2024-02-19 18:13:49.125 2024-02-19 18:13:49.125 3600 TIP 431127 732 6001772 2024-02-19 18:14:02.601 2024-02-19 18:14:02.601 1000 FEE 431178 1959 6001773 2024-02-19 18:14:05.623 2024-02-19 18:14:05.623 1000 FEE 431179 20858 6001777 2024-02-19 18:14:13.192 2024-02-19 18:14:13.192 1000 FEE 431181 20267 6001778 2024-02-19 18:14:15.786 2024-02-19 18:14:15.786 1000 FEE 431182 8505 6001787 2024-02-19 18:14:47.507 2024-02-19 18:14:47.507 1000 FEE 431191 4487 6001822 2024-02-19 18:16:25.619 2024-02-19 18:16:25.619 1000 FEE 431222 2329 6001829 2024-02-19 18:17:14.439 2024-02-19 18:17:14.439 100 FEE 431187 21040 6001830 2024-02-19 18:17:14.439 2024-02-19 18:17:14.439 900 TIP 431187 13055 6001854 2024-02-19 18:17:53.777 2024-02-19 18:17:53.777 1000 FEE 431235 807 6001903 2024-02-19 18:21:02.36 2024-02-19 18:21:02.36 100 FEE 430439 16998 6001904 2024-02-19 18:21:02.36 2024-02-19 18:21:02.36 900 TIP 430439 620 6001908 2024-02-19 18:21:03.345 2024-02-19 18:21:03.345 100 FEE 430439 16653 6001909 2024-02-19 18:21:03.345 2024-02-19 18:21:03.345 900 TIP 430439 8173 6001914 2024-02-19 18:21:06.163 2024-02-19 18:21:06.163 100 FEE 430283 10060 6001915 2024-02-19 18:21:06.163 2024-02-19 18:21:06.163 900 TIP 430283 19852 6001922 2024-02-19 18:21:07.444 2024-02-19 18:21:07.444 1000 FEE 430593 2460 6001923 2024-02-19 18:21:07.444 2024-02-19 18:21:07.444 9000 TIP 430593 1803 6001926 2024-02-19 18:21:08.001 2024-02-19 18:21:08.001 1000 FEE 430593 19987 6001927 2024-02-19 18:21:08.001 2024-02-19 18:21:08.001 9000 TIP 430593 19796 6001960 2024-02-19 18:22:13.586 2024-02-19 18:22:13.586 2000 FEE 430538 10342 6001961 2024-02-19 18:22:13.586 2024-02-19 18:22:13.586 18000 TIP 430538 16809 6001963 2024-02-19 18:22:15.956 2024-02-19 18:22:15.956 1000 FEE 431264 2162 6001969 2024-02-19 18:22:27.182 2024-02-19 18:22:27.182 1000 FEE 431268 9107 6001991 2024-02-19 18:23:26.6 2024-02-19 18:23:26.6 1000 FEE 431288 899 6001992 2024-02-19 18:23:30.483 2024-02-19 18:23:30.483 1000 FEE 431289 20973 6002000 2024-02-19 18:24:51.719 2024-02-19 18:24:51.719 1000 FEE 431290 21562 6002020 2024-02-19 18:27:17.204 2024-02-19 18:27:17.204 2100 FEE 431243 17523 6002021 2024-02-19 18:27:17.204 2024-02-19 18:27:17.204 18900 TIP 431243 2844 6002031 2024-02-19 18:28:51.87 2024-02-19 18:28:51.87 2000 FEE 431161 1135 6002032 2024-02-19 18:28:51.87 2024-02-19 18:28:51.87 18000 TIP 431161 5057 6002095 2024-02-19 18:32:54.649 2024-02-19 18:32:54.649 1000 FEE 431312 2502 6002098 2024-02-19 18:33:02.612 2024-02-19 18:33:02.612 1000 FEE 431315 17116 6002102 2024-02-19 18:33:12.014 2024-02-19 18:33:12.014 1000 FEE 431318 1738 6002108 2024-02-19 18:33:23.15 2024-02-19 18:33:23.15 1000 FEE 431323 9352 6002110 2024-02-19 18:33:28.691 2024-02-19 18:33:28.691 1000 FEE 431325 18528 6002129 2024-02-19 18:34:36.546 2024-02-19 18:34:36.546 100 FEE 430770 12516 6002130 2024-02-19 18:34:36.546 2024-02-19 18:34:36.546 900 TIP 430770 5829 6002139 2024-02-19 18:34:38.536 2024-02-19 18:34:38.536 100 FEE 430770 894 6002140 2024-02-19 18:34:38.536 2024-02-19 18:34:38.536 900 TIP 430770 18225 6002151 2024-02-19 18:35:09.024 2024-02-19 18:35:09.024 1000 FEE 431342 20243 6001186 2024-02-19 17:23:09.687 2024-02-19 17:23:09.687 1000 FEE 431034 21247 6001192 2024-02-19 17:23:13.603 2024-02-19 17:23:13.603 2100 FEE 430626 21369 6001193 2024-02-19 17:23:13.603 2024-02-19 17:23:13.603 18900 TIP 430626 21083 6001214 2024-02-19 17:23:33.847 2024-02-19 17:23:33.847 1000 FEE 431040 1429 6001250 2024-02-19 17:25:07.297 2024-02-19 17:25:07.297 1000 FEE 431060 20183 6001252 2024-02-19 17:25:12.377 2024-02-19 17:25:12.377 1000 FEE 431062 18403 6001262 2024-02-19 17:26:50.33 2024-02-19 17:26:50.33 1000 FEE 404182 20904 6001263 2024-02-19 17:26:50.33 2024-02-19 17:26:50.33 9000 TIP 404182 21624 6001281 2024-02-19 17:28:53.906 2024-02-19 17:28:53.906 1000 FEE 430972 8245 6001282 2024-02-19 17:28:53.906 2024-02-19 17:28:53.906 9000 TIP 430972 694 6001290 2024-02-19 17:29:31.685 2024-02-19 17:29:31.685 1000 FEE 431072 19502 6001291 2024-02-19 17:29:47.518 2024-02-19 17:29:47.518 1000 FEE 431057 1471 6001292 2024-02-19 17:29:47.518 2024-02-19 17:29:47.518 9000 TIP 431057 1985 6001299 2024-02-19 17:30:17.047 2024-02-19 17:30:17.047 1000 FEE 431074 21485 6001325 2024-02-19 17:32:40.733 2024-02-19 17:32:40.733 1000 FEE 431083 3717 6001330 2024-02-19 17:33:19.451 2024-02-19 17:33:19.451 1000 FEE 430530 14774 6001331 2024-02-19 17:33:19.451 2024-02-19 17:33:19.451 9000 TIP 430530 9438 6001333 2024-02-19 17:33:50.739 2024-02-19 17:33:50.739 0 FEE 431082 19335 6001358 2024-02-19 17:36:16.401 2024-02-19 17:36:16.401 100 FEE 430439 19335 6001359 2024-02-19 17:36:16.401 2024-02-19 17:36:16.401 900 TIP 430439 9552 6001370 2024-02-19 17:36:47.58 2024-02-19 17:36:47.58 100 FEE 430349 15549 6001371 2024-02-19 17:36:47.58 2024-02-19 17:36:47.58 900 TIP 430349 17741 6001374 2024-02-19 17:36:47.954 2024-02-19 17:36:47.954 100 FEE 430349 20642 6001375 2024-02-19 17:36:47.954 2024-02-19 17:36:47.954 900 TIP 430349 6137 6001391 2024-02-19 17:39:49.801 2024-02-19 17:39:49.801 1000 FEE 431091 6149 6001393 2024-02-19 17:39:55.891 2024-02-19 17:39:55.891 1000 FEE 431093 13217 6001401 2024-02-19 17:40:14.58 2024-02-19 17:40:14.58 1000 FEE 431100 14688 6001449 2024-02-19 17:43:15.577 2024-02-19 17:43:15.577 1000 FEE 431067 18359 6001450 2024-02-19 17:43:15.577 2024-02-19 17:43:15.577 9000 TIP 431067 2681 6001451 2024-02-19 17:43:27.231 2024-02-19 17:43:27.231 21000 FEE 431124 1316 6001471 2024-02-19 17:44:23.314 2024-02-19 17:44:23.314 1700 FEE 431103 11821 6001472 2024-02-19 17:44:23.314 2024-02-19 17:44:23.314 15300 TIP 431103 20156 6001487 2024-02-19 17:46:37.281 2024-02-19 17:46:37.281 1000 FEE 431131 18637 6001488 2024-02-19 17:46:42.357 2024-02-19 17:46:42.357 2100 FEE 431124 16789 6001489 2024-02-19 17:46:42.357 2024-02-19 17:46:42.357 18900 TIP 431124 795 6001491 2024-02-19 17:46:44.47 2024-02-19 17:46:44.47 10000 FEE 430549 15200 6001492 2024-02-19 17:46:44.47 2024-02-19 17:46:44.47 90000 TIP 430549 6360 6001501 2024-02-19 17:47:46.26 2024-02-19 17:47:46.26 1000 FEE 431136 4323 6001504 2024-02-19 17:48:09.329 2024-02-19 17:48:09.329 6400 FEE 431123 3440 6001505 2024-02-19 17:48:09.329 2024-02-19 17:48:09.329 57600 TIP 431123 16842 6001511 2024-02-19 17:49:03.713 2024-02-19 17:49:03.713 10000 FEE 430626 16176 6001512 2024-02-19 17:49:03.713 2024-02-19 17:49:03.713 90000 TIP 430626 3439 6001560 2024-02-19 17:53:07.708 2024-02-19 17:53:07.708 3200 FEE 431131 4076 6001561 2024-02-19 17:53:07.708 2024-02-19 17:53:07.708 28800 TIP 431131 1825 6001562 2024-02-19 17:53:20.58 2024-02-19 17:53:20.58 8900 FEE 430892 2256 6001563 2024-02-19 17:53:20.58 2024-02-19 17:53:20.58 80100 TIP 430892 2329 6001570 2024-02-19 17:55:05.722 2024-02-19 17:55:05.722 10000 FEE 431141 18618 6001576 2024-02-19 17:56:08.426 2024-02-19 17:56:08.426 2100 FEE 430503 1692 6001577 2024-02-19 17:56:08.426 2024-02-19 17:56:08.426 18900 TIP 430503 18984 6001588 2024-02-19 17:56:35.966 2024-02-19 17:56:35.966 1000 FEE 430638 1307 6001589 2024-02-19 17:56:35.966 2024-02-19 17:56:35.966 9000 TIP 430638 15226 6001609 2024-02-19 17:58:02.466 2024-02-19 17:58:02.466 100 FEE 430700 2203 6001610 2024-02-19 17:58:02.466 2024-02-19 17:58:02.466 900 TIP 430700 18543 6001615 2024-02-19 17:58:23.546 2024-02-19 17:58:23.546 1000 FEE 431150 17817 6001629 2024-02-19 17:59:17.433 2024-02-19 17:59:17.433 500 FEE 430651 699 6001630 2024-02-19 17:59:17.433 2024-02-19 17:59:17.433 4500 TIP 430651 2942 6001660 2024-02-19 18:01:56.025 2024-02-19 18:01:56.025 1000 FEE 431137 2718 6001661 2024-02-19 18:01:56.025 2024-02-19 18:01:56.025 9000 TIP 431137 19375 6001668 2024-02-19 18:01:57.816 2024-02-19 18:01:57.816 1000 FEE 431137 1985 6001669 2024-02-19 18:01:57.816 2024-02-19 18:01:57.816 9000 TIP 431137 20353 6001683 2024-02-19 18:03:36.598 2024-02-19 18:03:36.598 1000 FEE 431165 1130 6001696 2024-02-19 18:07:14.663 2024-02-19 18:07:14.663 1000 FEE 431169 8544 6001702 2024-02-19 18:07:51.615 2024-02-19 18:07:51.615 1000 FEE 431161 9183 6001703 2024-02-19 18:07:51.615 2024-02-19 18:07:51.615 9000 TIP 431161 7983 6001706 2024-02-19 18:07:52.711 2024-02-19 18:07:52.711 1000 FEE 431161 20117 6001707 2024-02-19 18:07:52.711 2024-02-19 18:07:52.711 9000 TIP 431161 18476 6001718 2024-02-19 18:09:04.499 2024-02-19 18:09:04.499 100 FEE 430869 1609 6001719 2024-02-19 18:09:04.499 2024-02-19 18:09:04.499 900 TIP 430869 14910 6001732 2024-02-19 18:09:49.728 2024-02-19 18:09:49.728 1000 FEE 431171 2390 6001758 2024-02-19 18:13:52.295 2024-02-19 18:13:52.295 1000 FEE 431177 7682 6001761 2024-02-19 18:13:57.054 2024-02-19 18:13:57.054 100 FEE 431161 4415 6001762 2024-02-19 18:13:57.054 2024-02-19 18:13:57.054 900 TIP 431161 19633 6001784 2024-02-19 18:14:39.06 2024-02-19 18:14:39.06 1000 FEE 431188 11165 6001790 2024-02-19 18:14:54.771 2024-02-19 18:14:54.771 1000 FEE 431194 17722 6001794 2024-02-19 18:15:02.733 2024-02-19 18:15:02.733 1000 FEE 431197 12606 6001797 2024-02-19 18:15:10.838 2024-02-19 18:15:10.838 1000 FEE 431200 11165 6001802 2024-02-19 18:15:23.596 2024-02-19 18:15:23.596 1000 FEE 431205 617 6001806 2024-02-19 18:15:50.609 2024-02-19 18:15:50.609 1000 FEE 431209 15560 6001825 2024-02-19 18:16:35.206 2024-02-19 18:16:35.206 75000 FEE 431223 20539 6001826 2024-02-19 18:16:49.392 2024-02-19 18:16:49.392 2100 FEE 431187 1611 6001827 2024-02-19 18:16:49.392 2024-02-19 18:16:49.392 18900 TIP 431187 9969 6001839 2024-02-19 18:17:22.552 2024-02-19 18:17:22.552 1000 FEE 431224 19018 6001843 2024-02-19 18:17:27.542 2024-02-19 18:17:27.542 1000 FEE 431226 11288 6001850 2024-02-19 18:17:40.643 2024-02-19 18:17:40.643 1000 FEE 431231 21342 6001858 2024-02-19 18:18:03.054 2024-02-19 18:18:03.054 1000 FEE 431239 1617 6001874 2024-02-19 18:20:03.364 2024-02-19 18:20:03.364 100 FEE 430607 3360 6001875 2024-02-19 18:20:03.364 2024-02-19 18:20:03.364 900 TIP 430607 18528 6001892 2024-02-19 18:20:37.758 2024-02-19 18:20:37.758 1000 FEE 431252 14267 6001893 2024-02-19 18:20:40.14 2024-02-19 18:20:40.14 1000 FEE 431253 13927 6001912 2024-02-19 18:21:05.833 2024-02-19 18:21:05.833 100 FEE 430283 20892 6001913 2024-02-19 18:21:05.833 2024-02-19 18:21:05.833 900 TIP 430283 695 6001938 2024-02-19 18:21:15.897 2024-02-19 18:21:15.897 100 FEE 430349 4831 6001939 2024-02-19 18:21:15.897 2024-02-19 18:21:15.897 900 TIP 430349 3642 6001944 2024-02-19 18:21:39.895 2024-02-19 18:21:39.895 1000 FEE 430522 9362 6001945 2024-02-19 18:21:39.895 2024-02-19 18:21:39.895 9000 TIP 430522 21012 6001956 2024-02-19 18:22:05.854 2024-02-19 18:22:05.854 1000 FEE 431261 15282 6001967 2024-02-19 18:22:23.737 2024-02-19 18:22:23.737 1000 FEE 431266 21136 6001970 2024-02-19 18:22:30.812 2024-02-19 18:22:30.812 1000 FEE 431270 20109 6001976 2024-02-19 18:22:46.779 2024-02-19 18:22:46.779 1000 FEE 431274 4313 6001980 2024-02-19 18:22:59.433 2024-02-19 18:22:59.433 1000 FEE 431278 7119 6001987 2024-02-19 18:23:15.963 2024-02-19 18:23:15.963 1000 FEE 431284 19961 6002012 2024-02-19 18:26:09.072 2024-02-19 18:26:09.072 0 FEE 421367 16556 6002013 2024-02-19 18:26:11.71 2024-02-19 18:26:11.71 10000 FEE 431294 11298 6002017 2024-02-19 18:27:00.934 2024-02-19 18:27:00.934 2100 FEE 430885 11829 6002018 2024-02-19 18:27:00.934 2024-02-19 18:27:00.934 18900 TIP 430885 10979 6002024 2024-02-19 18:27:20.24 2024-02-19 18:27:20.24 21100 FEE 431223 16942 6002025 2024-02-19 18:27:20.24 2024-02-19 18:27:20.24 189900 TIP 431223 18500 6001246 2024-02-19 17:25:00.413 2024-02-19 17:25:00.413 1000 FEE 431057 11165 6001251 2024-02-19 17:25:09.466 2024-02-19 17:25:09.466 1000 FEE 431061 8954 6001254 2024-02-19 17:25:45.676 2024-02-19 17:25:45.676 1000 FEE 431064 19553 6001255 2024-02-19 17:25:47.649 2024-02-19 17:25:47.649 1000 FEE 431065 21349 6001257 2024-02-19 17:26:01.991 2024-02-19 17:26:01.991 1000 STREAM 141924 21430 6001272 2024-02-19 17:28:02.02 2024-02-19 17:28:02.02 1000 STREAM 141924 5173 6001273 2024-02-19 17:28:06.125 2024-02-19 17:28:06.125 1000 FEE 431068 12736 6001279 2024-02-19 17:28:49.729 2024-02-19 17:28:49.729 2100 FEE 430771 5308 6001280 2024-02-19 17:28:49.729 2024-02-19 17:28:49.729 18900 TIP 430771 17365 6001311 2024-02-19 17:31:02.089 2024-02-19 17:31:02.089 1000 STREAM 141924 19638 6001315 2024-02-19 17:31:44.72 2024-02-19 17:31:44.72 1000 FEE 431079 18446 6001321 2024-02-19 17:32:22.737 2024-02-19 17:32:22.737 1000 FEE 431081 20066 6001326 2024-02-19 17:32:43.208 2024-02-19 17:32:43.208 1000 FEE 431084 5637 6001327 2024-02-19 17:33:02.122 2024-02-19 17:33:02.122 1000 STREAM 141924 20143 6001332 2024-02-19 17:33:28.821 2024-02-19 17:33:28.821 1000 FEE 431085 21228 6001334 2024-02-19 17:34:02.109 2024-02-19 17:34:02.109 1000 STREAM 141924 18714 6001344 2024-02-19 17:36:02.295 2024-02-19 17:36:02.295 1000 STREAM 141924 19992 6001348 2024-02-19 17:36:13.925 2024-02-19 17:36:13.925 1000 FEE 343141 13100 6001349 2024-02-19 17:36:13.925 2024-02-19 17:36:13.925 9000 TIP 343141 10668 6001350 2024-02-19 17:36:14.56 2024-02-19 17:36:14.56 100 FEE 430439 17226 6001351 2024-02-19 17:36:14.56 2024-02-19 17:36:14.56 900 TIP 430439 7097 6001354 2024-02-19 17:36:14.987 2024-02-19 17:36:14.987 100 FEE 430439 18909 6001355 2024-02-19 17:36:14.987 2024-02-19 17:36:14.987 900 TIP 430439 21334 6001382 2024-02-19 17:37:09.784 2024-02-19 17:37:09.784 1000 FEE 343058 4973 6001383 2024-02-19 17:37:09.784 2024-02-19 17:37:09.784 9000 TIP 343058 19394 6001396 2024-02-19 17:40:02.168 2024-02-19 17:40:02.168 1000 STREAM 141924 1002 6001399 2024-02-19 17:40:09.463 2024-02-19 17:40:09.463 1000 FEE 431098 960 6001403 2024-02-19 17:40:17.895 2024-02-19 17:40:17.895 10000 FEE 431102 629 6001413 2024-02-19 17:41:14.245 2024-02-19 17:41:14.245 1000 FEE 428645 12277 6001414 2024-02-19 17:41:14.245 2024-02-19 17:41:14.245 9000 TIP 428645 16456 6001423 2024-02-19 17:42:02.321 2024-02-19 17:42:02.321 1000 STREAM 141924 16848 6001430 2024-02-19 17:42:14.229 2024-02-19 17:42:14.229 1000 FEE 431118 7119 6001432 2024-02-19 17:42:19.717 2024-02-19 17:42:19.717 1000 FEE 431120 20881 6001440 2024-02-19 17:43:12.65 2024-02-19 17:43:12.65 1000 FEE 431123 9347 6001460 2024-02-19 17:43:52.741 2024-02-19 17:43:52.741 100 FEE 430920 7668 6001461 2024-02-19 17:43:52.741 2024-02-19 17:43:52.741 900 TIP 430920 20972 6001478 2024-02-19 17:44:55.889 2024-02-19 17:44:55.889 1000 FEE 431128 1000 6001479 2024-02-19 17:45:02.236 2024-02-19 17:45:02.236 1000 STREAM 141924 15196 6001486 2024-02-19 17:46:02.274 2024-02-19 17:46:02.274 1000 STREAM 141924 8269 6001490 2024-02-19 17:46:43.67 2024-02-19 17:46:43.67 1000 FEE 431132 6533 6001502 2024-02-19 17:48:02.279 2024-02-19 17:48:02.279 1000 STREAM 141924 18076 6001506 2024-02-19 17:49:02.265 2024-02-19 17:49:02.265 1000 STREAM 141924 13132 6001523 2024-02-19 17:49:05.475 2024-02-19 17:49:05.475 10000 FEE 430626 19005 6001524 2024-02-19 17:49:05.475 2024-02-19 17:49:05.475 90000 TIP 430626 19640 6001532 2024-02-19 17:50:03.682 2024-02-19 17:50:03.682 1100 FEE 430920 8416 6001533 2024-02-19 17:50:03.682 2024-02-19 17:50:03.682 9900 TIP 430920 17064 6001541 2024-02-19 17:51:02.274 2024-02-19 17:51:02.274 1000 STREAM 141924 18225 6001546 2024-02-19 17:51:33.083 2024-02-19 17:51:33.083 20100 FEE 430626 17148 6001547 2024-02-19 17:51:33.083 2024-02-19 17:51:33.083 180900 TIP 430626 9418 6001548 2024-02-19 17:52:02.269 2024-02-19 17:52:02.269 1000 STREAM 141924 18526 6001558 2024-02-19 17:53:02.285 2024-02-19 17:53:02.285 1000 STREAM 141924 1845 6001559 2024-02-19 17:53:02.535 2024-02-19 17:53:02.535 1000 FEE 431140 717 6001568 2024-02-19 17:54:02.285 2024-02-19 17:54:02.285 1000 STREAM 141924 7979 6001569 2024-02-19 17:55:02.285 2024-02-19 17:55:02.285 1000 STREAM 141924 10698 6001575 2024-02-19 17:56:02.305 2024-02-19 17:56:02.305 1000 STREAM 141924 18772 6001580 2024-02-19 17:56:25.826 2024-02-19 17:56:25.826 2100 FEE 431124 1000 6001581 2024-02-19 17:56:25.826 2024-02-19 17:56:25.826 18900 TIP 431124 16229 6001598 2024-02-19 17:57:02.305 2024-02-19 17:57:02.305 1000 STREAM 141924 13055 6001608 2024-02-19 17:58:02.411 2024-02-19 17:58:02.411 1000 STREAM 141924 897 6001618 2024-02-19 17:58:36.078 2024-02-19 17:58:36.078 2100 FEE 430453 20523 6001619 2024-02-19 17:58:36.078 2024-02-19 17:58:36.078 18900 TIP 430453 17817 6001628 2024-02-19 17:59:02.393 2024-02-19 17:59:02.393 1000 STREAM 141924 1319 6001631 2024-02-19 17:59:32.892 2024-02-19 17:59:32.892 1000 FEE 431151 1692 6001636 2024-02-19 17:59:45.544 2024-02-19 17:59:45.544 700 FEE 431129 15978 6001637 2024-02-19 17:59:45.544 2024-02-19 17:59:45.544 6300 TIP 431129 18989 6001640 2024-02-19 18:00:01.856 2024-02-19 18:00:01.856 4000 FEE 431136 16284 6001641 2024-02-19 18:00:01.856 2024-02-19 18:00:01.856 36000 TIP 431136 10063 6001642 2024-02-19 18:00:02.355 2024-02-19 18:00:02.355 1000 STREAM 141924 13575 6001648 2024-02-19 18:00:49.637 2024-02-19 18:00:49.637 1000 FEE 431155 20120 6001652 2024-02-19 18:00:56.031 2024-02-19 18:00:56.031 1000 FEE 431157 7746 6001678 2024-02-19 18:03:02.485 2024-02-19 18:03:02.485 1000 STREAM 141924 5761 6001679 2024-02-19 18:03:04.062 2024-02-19 18:03:04.062 3200 FEE 431148 4115 6001680 2024-02-19 18:03:04.062 2024-02-19 18:03:04.062 28800 TIP 431148 10862 6001682 2024-02-19 18:03:14.276 2024-02-19 18:03:14.276 1000 FEE 431164 21563 6001689 2024-02-19 18:06:02.457 2024-02-19 18:06:02.457 1000 STREAM 141924 9356 6001690 2024-02-19 18:06:08.166 2024-02-19 18:06:08.166 0 FEE 431163 4292 6001717 2024-02-19 18:09:02.44 2024-02-19 18:09:02.44 1000 STREAM 141924 16356 6001726 2024-02-19 18:09:33.635 2024-02-19 18:09:33.635 1000 FEE 431161 2437 6001727 2024-02-19 18:09:33.635 2024-02-19 18:09:33.635 9000 TIP 431161 20490 6001733 2024-02-19 18:09:53.825 2024-02-19 18:09:53.825 2100 FEE 431151 4624 6001734 2024-02-19 18:09:53.825 2024-02-19 18:09:53.825 18900 TIP 431151 6555 6001749 2024-02-19 18:11:31.444 2024-02-19 18:11:31.444 0 FEE 431170 20619 6001750 2024-02-19 18:12:02.515 2024-02-19 18:12:02.515 1000 STREAM 141924 657 6001754 2024-02-19 18:13:41.398 2024-02-19 18:13:41.398 1000 FEE 431175 16929 6001763 2024-02-19 18:13:57.573 2024-02-19 18:13:57.573 100 FEE 431161 21344 6001764 2024-02-19 18:13:57.573 2024-02-19 18:13:57.573 900 TIP 431161 21391 6001799 2024-02-19 18:15:16.338 2024-02-19 18:15:16.338 1000 FEE 431202 18635 6001800 2024-02-19 18:15:18.909 2024-02-19 18:15:18.909 1000 FEE 431203 994 6001801 2024-02-19 18:15:21.396 2024-02-19 18:15:21.396 1000 FEE 431204 21063 6001807 2024-02-19 18:15:52.805 2024-02-19 18:15:52.805 1000 FEE 431210 19488 6001812 2024-02-19 18:16:05.459 2024-02-19 18:16:05.459 1000 FEE 431214 14669 6001817 2024-02-19 18:16:12.933 2024-02-19 18:16:12.933 1000 FEE 431217 21291 6001856 2024-02-19 18:17:58.886 2024-02-19 18:17:58.886 1000 FEE 431237 9418 6001867 2024-02-19 18:18:49.526 2024-02-19 18:18:49.526 10000 FEE 431241 14376 6001873 2024-02-19 18:20:02.554 2024-02-19 18:20:02.554 1000 STREAM 141924 14247 6001878 2024-02-19 18:20:14.09 2024-02-19 18:20:14.09 2100 FEE 430879 733 6001879 2024-02-19 18:20:14.09 2024-02-19 18:20:14.09 18900 TIP 430879 12808 6001880 2024-02-19 18:20:14.287 2024-02-19 18:20:14.287 2100 FEE 430967 1890 6001881 2024-02-19 18:20:14.287 2024-02-19 18:20:14.287 18900 TIP 430967 17212 6001897 2024-02-19 18:20:49.321 2024-02-19 18:20:49.321 1000 FEE 431257 16649 6001906 2024-02-19 18:21:02.842 2024-02-19 18:21:02.842 100 FEE 430439 2529 6001907 2024-02-19 18:21:02.842 2024-02-19 18:21:02.842 900 TIP 430439 4459 6001916 2024-02-19 18:21:06.533 2024-02-19 18:21:06.533 100 FEE 430283 769 6001917 2024-02-19 18:21:06.533 2024-02-19 18:21:06.533 900 TIP 430283 16839 6001934 2024-02-19 18:21:15.13 2024-02-19 18:21:15.13 100 FEE 430349 10690 6001935 2024-02-19 18:21:15.13 2024-02-19 18:21:15.13 900 TIP 430349 797 6001946 2024-02-19 18:21:48.932 2024-02-19 18:21:48.932 1000 FEE 430613 20120 6001377 2024-02-19 17:36:48.447 2024-02-19 17:36:48.447 900 TIP 430349 18220 6001384 2024-02-19 17:37:28.929 2024-02-19 17:37:28.929 1000 FEE 430762 21451 6001385 2024-02-19 17:37:28.929 2024-02-19 17:37:28.929 9000 TIP 430762 17526 6001386 2024-02-19 17:38:02.302 2024-02-19 17:38:02.302 1000 STREAM 141924 19660 6001390 2024-02-19 17:39:46.911 2024-02-19 17:39:46.911 1000 FEE 431090 13177 6001400 2024-02-19 17:40:12.227 2024-02-19 17:40:12.227 1000 FEE 431099 965 6001407 2024-02-19 17:40:28.599 2024-02-19 17:40:28.599 1000 FEE 431106 1738 6001415 2024-02-19 17:41:35.394 2024-02-19 17:41:35.394 1000 FEE 426704 2681 6001416 2024-02-19 17:41:35.394 2024-02-19 17:41:35.394 9000 TIP 426704 700 6001422 2024-02-19 17:42:00.16 2024-02-19 17:42:00.16 1000 FEE 431112 21541 6001425 2024-02-19 17:42:02.804 2024-02-19 17:42:02.804 1000 FEE 431113 20619 6001426 2024-02-19 17:42:04.871 2024-02-19 17:42:04.871 1000 FEE 431114 1047 6001439 2024-02-19 17:43:05.54 2024-02-19 17:43:05.54 1000 STREAM 141924 1650 6001452 2024-02-19 17:43:28.35 2024-02-19 17:43:28.35 1000 FEE 430771 7673 6001453 2024-02-19 17:43:28.35 2024-02-19 17:43:28.35 9000 TIP 430771 629 6001454 2024-02-19 17:43:45.758 2024-02-19 17:43:45.758 100 FEE 430869 11145 6001455 2024-02-19 17:43:45.758 2024-02-19 17:43:45.758 900 TIP 430869 18291 6001462 2024-02-19 17:43:52.944 2024-02-19 17:43:52.944 900 FEE 430920 6058 6001463 2024-02-19 17:43:52.944 2024-02-19 17:43:52.944 8100 TIP 430920 20619 6001464 2024-02-19 17:44:02.33 2024-02-19 17:44:02.33 1000 STREAM 141924 1624 6001469 2024-02-19 17:44:14.364 2024-02-19 17:44:14.364 2000 FEE 431074 12738 6001470 2024-02-19 17:44:14.364 2024-02-19 17:44:14.364 18000 TIP 431074 1468 6001480 2024-02-19 17:45:02.983 2024-02-19 17:45:02.983 10000 FEE 431129 1720 6001484 2024-02-19 17:45:49.942 2024-02-19 17:45:49.942 1000 FEE 424028 17984 6001485 2024-02-19 17:45:49.942 2024-02-19 17:45:49.942 9000 TIP 424028 1823 6001529 2024-02-19 17:50:02.385 2024-02-19 17:50:02.385 1000 STREAM 141924 19286 6001536 2024-02-19 17:50:04.883 2024-02-19 17:50:04.883 1100 FEE 430920 20993 6001537 2024-02-19 17:50:04.883 2024-02-19 17:50:04.883 9900 TIP 430920 19329 6001566 2024-02-19 17:53:53.606 2024-02-19 17:53:53.606 2100 FEE 430795 5387 6001567 2024-02-19 17:53:53.606 2024-02-19 17:53:53.606 18900 TIP 430795 19462 6001572 2024-02-19 17:55:19.238 2024-02-19 17:55:19.238 1000 FEE 431143 20912 6001584 2024-02-19 17:56:35.404 2024-02-19 17:56:35.404 1000 FEE 430638 15577 6001585 2024-02-19 17:56:35.404 2024-02-19 17:56:35.404 9000 TIP 430638 6382 6001603 2024-02-19 17:57:38.289 2024-02-19 17:57:38.289 2100 FEE 430549 1092 6001604 2024-02-19 17:57:38.289 2024-02-19 17:57:38.289 18900 TIP 430549 951 6001605 2024-02-19 17:57:45.384 2024-02-19 17:57:45.384 2100 FEE 430507 13406 6001606 2024-02-19 17:57:45.384 2024-02-19 17:57:45.384 18900 TIP 430507 16194 6001622 2024-02-19 17:58:51.279 2024-02-19 17:58:51.279 100 FEE 430626 9352 6001623 2024-02-19 17:58:51.279 2024-02-19 17:58:51.279 900 TIP 430626 19537 6001659 2024-02-19 18:01:36.873 2024-02-19 18:01:36.873 21000 FEE 431161 1286 6001664 2024-02-19 18:01:56.663 2024-02-19 18:01:56.663 1000 FEE 431137 11145 6001665 2024-02-19 18:01:56.663 2024-02-19 18:01:56.663 9000 TIP 431137 21060 6001684 2024-02-19 18:04:02.447 2024-02-19 18:04:02.447 1000 STREAM 141924 20225 6001686 2024-02-19 18:05:02.43 2024-02-19 18:05:02.43 1000 STREAM 141924 3396 6001692 2024-02-19 18:06:20.465 2024-02-19 18:06:20.465 1000 FEE 431168 666 6001700 2024-02-19 18:07:51.164 2024-02-19 18:07:51.164 1000 FEE 431161 20669 6001701 2024-02-19 18:07:51.164 2024-02-19 18:07:51.164 9000 TIP 431161 2741 6001735 2024-02-19 18:10:02.525 2024-02-19 18:10:02.525 1000 STREAM 141924 17316 6001738 2024-02-19 18:10:56.08 2024-02-19 18:10:56.08 1000 FEE 431167 20436 6001739 2024-02-19 18:10:56.08 2024-02-19 18:10:56.08 9000 TIP 431167 18072 6001774 2024-02-19 18:14:08.031 2024-02-19 18:14:08.031 1000 FEE 431180 17519 6001782 2024-02-19 18:14:35.658 2024-02-19 18:14:35.658 1000 FEE 431186 21262 6001791 2024-02-19 18:14:56.996 2024-02-19 18:14:56.996 1000 FEE 431195 9159 6001792 2024-02-19 18:14:59.649 2024-02-19 18:14:59.649 1000 FEE 431196 15463 6001808 2024-02-19 18:15:55.435 2024-02-19 18:15:55.435 1000 FEE 431211 21131 6001820 2024-02-19 18:16:19.341 2024-02-19 18:16:19.341 1000 FEE 431220 12561 6001831 2024-02-19 18:17:14.647 2024-02-19 18:17:14.647 100 FEE 431187 5085 6001832 2024-02-19 18:17:14.647 2024-02-19 18:17:14.647 900 TIP 431187 11873 6001833 2024-02-19 18:17:15.175 2024-02-19 18:17:15.175 100 FEE 431187 12220 6001834 2024-02-19 18:17:15.175 2024-02-19 18:17:15.175 900 TIP 431187 16350 6001837 2024-02-19 18:17:16.44 2024-02-19 18:17:16.44 100 FEE 431187 2502 6001838 2024-02-19 18:17:16.44 2024-02-19 18:17:16.44 900 TIP 431187 15336 6001846 2024-02-19 18:17:30.984 2024-02-19 18:17:30.984 1000 FEE 431227 19759 6001853 2024-02-19 18:17:48.982 2024-02-19 18:17:48.982 1000 FEE 431234 617 6001863 2024-02-19 18:18:37.92 2024-02-19 18:18:37.92 2100 FEE 430795 18274 6001864 2024-02-19 18:18:37.92 2024-02-19 18:18:37.92 18900 TIP 430795 13177 6001870 2024-02-19 18:19:02.706 2024-02-19 18:19:02.706 1000 STREAM 141924 15938 6001876 2024-02-19 18:20:04.011 2024-02-19 18:20:04.011 200 FEE 430607 9339 6001877 2024-02-19 18:20:04.011 2024-02-19 18:20:04.011 1800 TIP 430607 811 6001883 2024-02-19 18:20:17.248 2024-02-19 18:20:17.248 2100 FEE 430920 21555 6001884 2024-02-19 18:20:17.248 2024-02-19 18:20:17.248 18900 TIP 430920 20272 6001887 2024-02-19 18:20:24.636 2024-02-19 18:20:24.636 1000 FEE 431247 18008 6001895 2024-02-19 18:20:45.194 2024-02-19 18:20:45.194 1000 FEE 431255 20891 6001899 2024-02-19 18:20:58.308 2024-02-19 18:20:58.308 1000 FEE 431153 5497 6001900 2024-02-19 18:20:58.308 2024-02-19 18:20:58.308 9000 TIP 431153 19909 6001901 2024-02-19 18:21:01.982 2024-02-19 18:21:01.982 100 FEE 430439 15060 6001902 2024-02-19 18:21:01.982 2024-02-19 18:21:01.982 900 TIP 430439 10484 6001905 2024-02-19 18:21:02.708 2024-02-19 18:21:02.708 1000 STREAM 141924 20099 6001928 2024-02-19 18:21:08.486 2024-02-19 18:21:08.486 1000 FEE 430593 5776 6001929 2024-02-19 18:21:08.486 2024-02-19 18:21:08.486 9000 TIP 430593 18387 6001948 2024-02-19 18:21:49.513 2024-02-19 18:21:49.513 1000 FEE 430613 18231 6001949 2024-02-19 18:21:49.513 2024-02-19 18:21:49.513 9000 TIP 430613 20904 6001962 2024-02-19 18:22:14.152 2024-02-19 18:22:14.152 1000 FEE 431263 10554 6001965 2024-02-19 18:22:20.186 2024-02-19 18:22:20.186 1000 FEE 431150 5590 6001966 2024-02-19 18:22:20.186 2024-02-19 18:22:20.186 9000 TIP 431150 21405 6001983 2024-02-19 18:23:07.698 2024-02-19 18:23:07.698 1000 FEE 431280 1785 6001989 2024-02-19 18:23:19.444 2024-02-19 18:23:19.444 1000 FEE 431286 18262 6001996 2024-02-19 18:24:28.241 2024-02-19 18:24:28.241 1000 FEE 431187 19506 6001997 2024-02-19 18:24:28.241 2024-02-19 18:24:28.241 9000 TIP 431187 20157 6001998 2024-02-19 18:24:28.971 2024-02-19 18:24:28.971 2000 FEE 431187 12946 6001999 2024-02-19 18:24:28.971 2024-02-19 18:24:28.971 18000 TIP 431187 19174 6002042 2024-02-19 18:29:06.731 2024-02-19 18:29:06.731 1000 FEE 431297 1286 6002049 2024-02-19 18:30:05.499 2024-02-19 18:30:05.499 1000 FEE 431298 8284 6002070 2024-02-19 18:32:02.802 2024-02-19 18:32:02.802 1000 STREAM 141924 9426 6002077 2024-02-19 18:32:37.887 2024-02-19 18:32:37.887 1000 FEE 431306 21281 6002078 2024-02-19 18:32:40.926 2024-02-19 18:32:40.926 1000 FEE 431307 16939 6002080 2024-02-19 18:32:43.995 2024-02-19 18:32:43.995 8300 FEE 431293 16950 6002081 2024-02-19 18:32:43.995 2024-02-19 18:32:43.995 74700 TIP 431293 9669 6002082 2024-02-19 18:32:44.404 2024-02-19 18:32:44.404 16600 FEE 431293 11829 6002083 2024-02-19 18:32:44.404 2024-02-19 18:32:44.404 149400 TIP 431293 15100 6002084 2024-02-19 18:32:44.493 2024-02-19 18:32:44.493 16600 FEE 431293 10094 6002085 2024-02-19 18:32:44.493 2024-02-19 18:32:44.493 149400 TIP 431293 6361 6002090 2024-02-19 18:32:46.692 2024-02-19 18:32:46.692 8300 FEE 431293 21501 6002091 2024-02-19 18:32:46.692 2024-02-19 18:32:46.692 74700 TIP 431293 20198 6002096 2024-02-19 18:32:57.203 2024-02-19 18:32:57.203 1000 FEE 431313 1090 6002109 2024-02-19 18:33:25.877 2024-02-19 18:33:25.877 1000 FEE 431324 6594 6002117 2024-02-19 18:33:44.783 2024-02-19 18:33:44.783 1000 FEE 431330 663 6001509 2024-02-19 17:49:03.476 2024-02-19 17:49:03.476 10000 FEE 430626 15075 6001510 2024-02-19 17:49:03.476 2024-02-19 17:49:03.476 90000 TIP 430626 1602 6001571 2024-02-19 17:55:15.085 2024-02-19 17:55:15.085 1000 FEE 431142 9816 6001578 2024-02-19 17:56:12.389 2024-02-19 17:56:12.389 1000 FEE 431144 19286 6001624 2024-02-19 17:58:56.917 2024-02-19 17:58:56.917 100 FEE 430892 987 6001625 2024-02-19 17:58:56.917 2024-02-19 17:58:56.917 900 TIP 430892 1316 6001645 2024-02-19 18:00:09.361 2024-02-19 18:00:09.361 100 FEE 431147 18470 6001646 2024-02-19 18:00:09.361 2024-02-19 18:00:09.361 900 TIP 431147 9433 6001655 2024-02-19 18:01:27.715 2024-02-19 18:01:27.715 2100 FEE 431021 19569 6001656 2024-02-19 18:01:27.715 2024-02-19 18:01:27.715 18900 TIP 431021 1611 6001673 2024-02-19 18:02:27.633 2024-02-19 18:02:27.633 2100 FEE 430795 2046 6001674 2024-02-19 18:02:27.633 2024-02-19 18:02:27.633 18900 TIP 430795 692 6001691 2024-02-19 18:06:15.362 2024-02-19 18:06:15.362 10000 FEE 431167 21481 6001753 2024-02-19 18:13:33.626 2024-02-19 18:13:33.626 10000 FEE 431174 15560 6001755 2024-02-19 18:13:44.235 2024-02-19 18:13:44.235 1000 FEE 431176 1008 6001759 2024-02-19 18:13:55.525 2024-02-19 18:13:55.525 400 FEE 431070 20183 6001760 2024-02-19 18:13:55.525 2024-02-19 18:13:55.525 3600 TIP 431070 20881 6001781 2024-02-19 18:14:25.735 2024-02-19 18:14:25.735 1000 FEE 431185 21062 6001788 2024-02-19 18:14:50.036 2024-02-19 18:14:50.036 1000 FEE 431192 21216 6001795 2024-02-19 18:15:05.494 2024-02-19 18:15:05.494 1000 FEE 431198 16939 6001796 2024-02-19 18:15:08.03 2024-02-19 18:15:08.03 1000 FEE 431199 13921 6001804 2024-02-19 18:15:27.811 2024-02-19 18:15:27.811 1000 FEE 431207 20066 6001809 2024-02-19 18:15:57.496 2024-02-19 18:15:57.496 1000 FEE 431212 9349 6001818 2024-02-19 18:16:15.23 2024-02-19 18:16:15.23 1000 FEE 431218 11821 6001823 2024-02-19 18:16:27.183 2024-02-19 18:16:27.183 2100 FEE 431187 12218 6001824 2024-02-19 18:16:27.183 2024-02-19 18:16:27.183 18900 TIP 431187 17042 6001835 2024-02-19 18:17:15.79 2024-02-19 18:17:15.79 100 FEE 431187 16289 6001836 2024-02-19 18:17:15.79 2024-02-19 18:17:15.79 900 TIP 431187 19156 6001848 2024-02-19 18:17:35.516 2024-02-19 18:17:35.516 1000 FEE 431229 4064 6001861 2024-02-19 18:18:33.531 2024-02-19 18:18:33.531 2100 FEE 430920 21485 6001862 2024-02-19 18:18:33.531 2024-02-19 18:18:33.531 18900 TIP 430920 20964 6001868 2024-02-19 18:18:50.25 2024-02-19 18:18:50.25 2100 FEE 430869 11395 6001869 2024-02-19 18:18:50.25 2024-02-19 18:18:50.25 18900 TIP 430869 638 6001888 2024-02-19 18:20:27.649 2024-02-19 18:20:27.649 1000 FEE 431248 1468 6001889 2024-02-19 18:20:29.991 2024-02-19 18:20:29.991 1000 FEE 431249 20912 6001890 2024-02-19 18:20:32.098 2024-02-19 18:20:32.098 1000 FEE 431250 18076 6001894 2024-02-19 18:20:42.423 2024-02-19 18:20:42.423 1000 FEE 431254 15521 6001930 2024-02-19 18:21:14.586 2024-02-19 18:21:14.586 100 FEE 430349 14074 6001931 2024-02-19 18:21:14.586 2024-02-19 18:21:14.586 900 TIP 430349 2233 6001936 2024-02-19 18:21:15.389 2024-02-19 18:21:15.389 100 FEE 430349 19030 6001937 2024-02-19 18:21:15.389 2024-02-19 18:21:15.389 900 TIP 430349 21427 6001940 2024-02-19 18:21:38.831 2024-02-19 18:21:38.831 1000 FEE 430522 9992 6001941 2024-02-19 18:21:38.831 2024-02-19 18:21:38.831 9000 TIP 430522 2347 6001975 2024-02-19 18:22:42.951 2024-02-19 18:22:42.951 1000 FEE 431273 19821 6001979 2024-02-19 18:22:56.192 2024-02-19 18:22:56.192 1000 FEE 431277 5499 6001982 2024-02-19 18:23:04.803 2024-02-19 18:23:04.803 1000 FEE 431279 7766 6002027 2024-02-19 18:28:45.255 2024-02-19 18:28:45.255 0 FEE 431150 15213 6002037 2024-02-19 18:28:55.875 2024-02-19 18:28:55.875 1000 FEE 431161 660 6002038 2024-02-19 18:28:55.875 2024-02-19 18:28:55.875 9000 TIP 431161 18178 6002045 2024-02-19 18:29:16.9 2024-02-19 18:29:16.9 0 FEE 431150 17827 6002046 2024-02-19 18:29:27.021 2024-02-19 18:29:27.021 300 FEE 431110 18460 6002047 2024-02-19 18:29:27.021 2024-02-19 18:29:27.021 2700 TIP 431110 12291 6002065 2024-02-19 18:31:29.987 2024-02-19 18:31:29.987 8300 FEE 431079 11018 6002066 2024-02-19 18:31:29.987 2024-02-19 18:31:29.987 74700 TIP 431079 20680 6002074 2024-02-19 18:32:27.474 2024-02-19 18:32:27.474 1000 FEE 431303 8242 6002119 2024-02-19 18:33:50.531 2024-02-19 18:33:50.531 1000 FEE 431332 782 6002120 2024-02-19 18:33:53.185 2024-02-19 18:33:53.185 1000 FEE 431333 10352 6002131 2024-02-19 18:34:36.867 2024-02-19 18:34:36.867 100 FEE 430770 15063 6002132 2024-02-19 18:34:36.867 2024-02-19 18:34:36.867 900 TIP 430770 20251 6002133 2024-02-19 18:34:37.266 2024-02-19 18:34:37.266 100 FEE 430770 1567 6002134 2024-02-19 18:34:37.266 2024-02-19 18:34:37.266 900 TIP 430770 19537 6002135 2024-02-19 18:34:37.725 2024-02-19 18:34:37.725 100 FEE 430770 18472 6002136 2024-02-19 18:34:37.725 2024-02-19 18:34:37.725 900 TIP 430770 20222 6002146 2024-02-19 18:34:58.643 2024-02-19 18:34:58.643 1000 FEE 431338 1051 6002150 2024-02-19 18:35:06.889 2024-02-19 18:35:06.889 1000 FEE 431341 5752 6002158 2024-02-19 18:35:28.921 2024-02-19 18:35:28.921 1000 FEE 431349 15367 6002168 2024-02-19 18:35:45.57 2024-02-19 18:35:45.57 1000 FEE 431354 11164 6002202 2024-02-19 18:36:41.917 2024-02-19 18:36:41.917 1000 FEE 430762 2203 6002203 2024-02-19 18:36:41.917 2024-02-19 18:36:41.917 9000 TIP 430762 19303 6002208 2024-02-19 18:36:43.594 2024-02-19 18:36:43.594 1000 FEE 431374 13878 6002218 2024-02-19 18:37:03.059 2024-02-19 18:37:03.059 1000 FEE 430651 20663 6002219 2024-02-19 18:37:03.059 2024-02-19 18:37:03.059 9000 TIP 430651 18116 6002233 2024-02-19 18:38:00.155 2024-02-19 18:38:00.155 1000 FEE 430878 18232 6002234 2024-02-19 18:38:00.155 2024-02-19 18:38:00.155 9000 TIP 430878 21405 6002236 2024-02-19 18:38:04.723 2024-02-19 18:38:04.723 75000 FEE 431378 9345 6002268 2024-02-19 18:42:47.622 2024-02-19 18:42:47.622 1000 FEE 431079 20669 6002269 2024-02-19 18:42:47.622 2024-02-19 18:42:47.622 9000 TIP 431079 5538 6002276 2024-02-19 18:43:41.415 2024-02-19 18:43:41.415 1000 FEE 431386 21116 6002302 2024-02-19 18:48:49.061 2024-02-19 18:48:49.061 1000 FEE 430883 20187 6002303 2024-02-19 18:48:49.061 2024-02-19 18:48:49.061 9000 TIP 430883 1471 6002345 2024-02-19 18:51:20.003 2024-02-19 18:51:20.003 2000 FEE 430920 16432 6002346 2024-02-19 18:51:20.003 2024-02-19 18:51:20.003 18000 TIP 430920 10409 6002399 2024-02-19 18:57:23.416 2024-02-19 18:57:23.416 5000 FEE 431401 12959 6002400 2024-02-19 18:57:24.489 2024-02-19 18:57:24.489 1000 FEE 431145 1564 6002401 2024-02-19 18:57:24.489 2024-02-19 18:57:24.489 9000 TIP 431145 9669 6002420 2024-02-19 18:59:14.522 2024-02-19 18:59:14.522 1000 FEE 431413 21138 6002423 2024-02-19 18:59:21.532 2024-02-19 18:59:21.532 1000 FEE 431414 9355 6002427 2024-02-19 18:59:36.426 2024-02-19 18:59:36.426 1000 FEE 431418 18904 6002476 2024-02-19 19:01:15.675 2024-02-19 19:01:15.675 1000 FEE 431446 1692 6002485 2024-02-19 19:01:29.765 2024-02-19 19:01:29.765 1000 FEE 431451 1135 6002494 2024-02-19 19:01:50.9 2024-02-19 19:01:50.9 1000 FEE 431458 16230 6002510 2024-02-19 19:02:12.802 2024-02-19 19:02:12.802 1000 FEE 431467 17103 6002537 2024-02-19 19:03:52.087 2024-02-19 19:03:52.087 1000 FEE 431475 13398 6002555 2024-02-19 19:04:09.659 2024-02-19 19:04:09.659 2500 FEE 430472 18309 6002556 2024-02-19 19:04:09.659 2024-02-19 19:04:09.659 22500 TIP 430472 696 6002559 2024-02-19 19:04:11.481 2024-02-19 19:04:11.481 2100 FEE 430597 21103 6002560 2024-02-19 19:04:11.481 2024-02-19 19:04:11.481 18900 TIP 430597 19500 6002563 2024-02-19 19:04:11.793 2024-02-19 19:04:11.793 1000 FEE 431482 18517 6002569 2024-02-19 19:04:23.443 2024-02-19 19:04:23.443 1000 FEE 431486 9341 6002587 2024-02-19 19:04:55.921 2024-02-19 19:04:55.921 2500 FEE 431066 15196 6002588 2024-02-19 19:04:55.921 2024-02-19 19:04:55.921 22500 TIP 431066 697 6002642 2024-02-19 19:05:06.112 2024-02-19 19:05:06.112 2100 FEE 430795 1425 6002643 2024-02-19 19:05:06.112 2024-02-19 19:05:06.112 18900 TIP 430795 18896 6002652 2024-02-19 19:05:28.741 2024-02-19 19:05:28.741 1000 FEE 431490 9109 6002655 2024-02-19 19:05:31.07 2024-02-19 19:05:31.07 1000 FEE 431491 965 6002664 2024-02-19 19:05:43.125 2024-02-19 19:05:43.125 0 FEE 431479 718 6002672 2024-02-19 19:06:01.561 2024-02-19 19:06:01.561 1000 FEE 431503 20509 6001591 2024-02-19 17:56:36.166 2024-02-19 17:56:36.166 9000 TIP 430638 1723 6001595 2024-02-19 17:56:49.77 2024-02-19 17:56:49.77 1000 FEE 430689 20276 6001596 2024-02-19 17:56:49.77 2024-02-19 17:56:49.77 9000 TIP 430689 9655 6001602 2024-02-19 17:57:37.713 2024-02-19 17:57:37.713 1000 FEE 431149 18837 6001607 2024-02-19 17:57:52.647 2024-02-19 17:57:52.647 0 FEE 431143 11417 6001644 2024-02-19 18:00:06.16 2024-02-19 18:00:06.16 1000 FEE 431153 9150 6001650 2024-02-19 18:00:55.773 2024-02-19 18:00:55.773 10000 FEE 430825 20981 6001651 2024-02-19 18:00:55.773 2024-02-19 18:00:55.773 90000 TIP 430825 11288 6001654 2024-02-19 18:01:18.762 2024-02-19 18:01:18.762 1000 FEE 431158 1114 6001657 2024-02-19 18:01:31.617 2024-02-19 18:01:31.617 1000 FEE 431159 16052 6001662 2024-02-19 18:01:56.376 2024-02-19 18:01:56.376 1000 FEE 431137 17714 6001663 2024-02-19 18:01:56.376 2024-02-19 18:01:56.376 9000 TIP 431137 776 6001670 2024-02-19 18:02:02.418 2024-02-19 18:02:02.418 1000 STREAM 141924 10549 6001671 2024-02-19 18:02:13.417 2024-02-19 18:02:13.417 100 FEE 431156 11714 6001672 2024-02-19 18:02:13.417 2024-02-19 18:02:13.417 900 TIP 431156 6717 6001687 2024-02-19 18:05:47.449 2024-02-19 18:05:47.449 10000 FEE 425928 20691 6001688 2024-02-19 18:05:47.449 2024-02-19 18:05:47.449 90000 TIP 425928 12169 6001695 2024-02-19 18:07:02.485 2024-02-19 18:07:02.485 1000 STREAM 141924 10818 6001708 2024-02-19 18:08:02.468 2024-02-19 18:08:02.468 1000 STREAM 141924 19118 6001724 2024-02-19 18:09:32.925 2024-02-19 18:09:32.925 1000 FEE 431161 10283 6001725 2024-02-19 18:09:32.925 2024-02-19 18:09:32.925 9000 TIP 431161 12158 6001737 2024-02-19 18:10:48.796 2024-02-19 18:10:48.796 0 FEE 431170 16753 6001742 2024-02-19 18:10:57.037 2024-02-19 18:10:57.037 1000 FEE 431167 708 6001743 2024-02-19 18:10:57.037 2024-02-19 18:10:57.037 9000 TIP 431167 19864 6001752 2024-02-19 18:13:02.479 2024-02-19 18:13:02.479 1000 STREAM 141924 18525 6001765 2024-02-19 18:13:57.746 2024-02-19 18:13:57.746 100 FEE 431161 14503 6001766 2024-02-19 18:13:57.746 2024-02-19 18:13:57.746 900 TIP 431161 5794 6001767 2024-02-19 18:13:58.063 2024-02-19 18:13:58.063 100 FEE 431161 17415 6001768 2024-02-19 18:13:58.063 2024-02-19 18:13:58.063 900 TIP 431161 17710 6001769 2024-02-19 18:13:58.466 2024-02-19 18:13:58.466 100 FEE 431161 20454 6001770 2024-02-19 18:13:58.466 2024-02-19 18:13:58.466 900 TIP 431161 21042 6001771 2024-02-19 18:14:02.49 2024-02-19 18:14:02.49 1000 STREAM 141924 20495 6001779 2024-02-19 18:14:18.983 2024-02-19 18:14:18.983 1000 FEE 431183 16834 6001793 2024-02-19 18:15:02.472 2024-02-19 18:15:02.472 1000 STREAM 141924 12122 6001798 2024-02-19 18:15:13.613 2024-02-19 18:15:13.613 1000 FEE 431201 7986 6001805 2024-02-19 18:15:47.912 2024-02-19 18:15:47.912 1000 FEE 431208 11522 6001810 2024-02-19 18:16:02.047 2024-02-19 18:16:02.047 1000 FEE 431213 20015 6001813 2024-02-19 18:16:07.163 2024-02-19 18:16:07.163 2100 FEE 430613 8400 6001814 2024-02-19 18:16:07.163 2024-02-19 18:16:07.163 18900 TIP 430613 20246 6001815 2024-02-19 18:16:07.597 2024-02-19 18:16:07.597 1000 FEE 431215 18274 6001816 2024-02-19 18:16:09.766 2024-02-19 18:16:09.766 1000 FEE 431216 18265 6001821 2024-02-19 18:16:23.023 2024-02-19 18:16:23.023 1000 FEE 431221 20525 6001847 2024-02-19 18:17:33.423 2024-02-19 18:17:33.423 1000 FEE 431228 27 6001849 2024-02-19 18:17:37.727 2024-02-19 18:17:37.727 1000 FEE 431230 14669 6001855 2024-02-19 18:17:56.574 2024-02-19 18:17:56.574 1000 FEE 431236 19842 6001860 2024-02-19 18:18:05.971 2024-02-19 18:18:05.971 1000 FEE 431240 20613 6001865 2024-02-19 18:18:41.047 2024-02-19 18:18:41.047 2100 FEE 430892 2162 6001866 2024-02-19 18:18:41.047 2024-02-19 18:18:41.047 18900 TIP 430892 18359 6001898 2024-02-19 18:20:51.665 2024-02-19 18:20:51.665 1000 FEE 431258 11395 6001932 2024-02-19 18:21:14.88 2024-02-19 18:21:14.88 100 FEE 430349 14785 6001933 2024-02-19 18:21:14.88 2024-02-19 18:21:14.88 900 TIP 430349 15180 6001950 2024-02-19 18:21:50.08 2024-02-19 18:21:50.08 1000 FEE 430613 18306 6001951 2024-02-19 18:21:50.08 2024-02-19 18:21:50.08 9000 TIP 430613 21062 6001952 2024-02-19 18:21:50.5 2024-02-19 18:21:50.5 0 FEE 421367 12072 6001964 2024-02-19 18:22:19.765 2024-02-19 18:22:19.765 1000 FEE 431265 21494 6001972 2024-02-19 18:22:37.513 2024-02-19 18:22:37.513 2100 FEE 430770 19105 6001973 2024-02-19 18:22:37.513 2024-02-19 18:22:37.513 18900 TIP 430770 1705 6001984 2024-02-19 18:23:08.935 2024-02-19 18:23:08.935 1000 FEE 431281 8416 6001985 2024-02-19 18:23:10.876 2024-02-19 18:23:10.876 1000 FEE 431282 10469 6001993 2024-02-19 18:23:53.923 2024-02-19 18:23:53.923 1000 FEE 431177 6594 6001994 2024-02-19 18:23:53.923 2024-02-19 18:23:53.923 9000 TIP 431177 16948 6002014 2024-02-19 18:26:31.911 2024-02-19 18:26:31.911 2100 FEE 431150 19151 6002015 2024-02-19 18:26:31.911 2024-02-19 18:26:31.911 18900 TIP 431150 13878 6002022 2024-02-19 18:27:18.401 2024-02-19 18:27:18.401 2100 FEE 431290 20906 6002023 2024-02-19 18:27:18.401 2024-02-19 18:27:18.401 18900 TIP 431290 14651 6002028 2024-02-19 18:28:50.31 2024-02-19 18:28:50.31 1000 FEE 431296 16966 6002033 2024-02-19 18:28:53.526 2024-02-19 18:28:53.526 1000 FEE 431161 1609 6002034 2024-02-19 18:28:53.526 2024-02-19 18:28:53.526 9000 TIP 431161 18402 6002055 2024-02-19 18:31:15.89 2024-02-19 18:31:15.89 8300 FEE 431079 14552 6002056 2024-02-19 18:31:15.89 2024-02-19 18:31:15.89 74700 TIP 431079 9843 6002057 2024-02-19 18:31:16.031 2024-02-19 18:31:16.031 8300 FEE 431079 20636 6002058 2024-02-19 18:31:16.031 2024-02-19 18:31:16.031 74700 TIP 431079 9655 6002063 2024-02-19 18:31:29.948 2024-02-19 18:31:29.948 16600 FEE 431079 10484 6002064 2024-02-19 18:31:29.948 2024-02-19 18:31:29.948 149400 TIP 431079 19484 6002079 2024-02-19 18:32:43.964 2024-02-19 18:32:43.964 1000 FEE 431308 5557 6002092 2024-02-19 18:32:47.131 2024-02-19 18:32:47.131 1000 FEE 431309 814 6002106 2024-02-19 18:33:20.118 2024-02-19 18:33:20.118 0 FEE 431298 21503 6002111 2024-02-19 18:33:30.211 2024-02-19 18:33:30.211 10000 FEE 430795 9426 6002112 2024-02-19 18:33:30.211 2024-02-19 18:33:30.211 90000 TIP 430795 6526 6002122 2024-02-19 18:34:05.781 2024-02-19 18:34:05.781 1000 FEE 431334 2711 6002125 2024-02-19 18:34:35.496 2024-02-19 18:34:35.496 100 FEE 430770 20156 6002126 2024-02-19 18:34:35.496 2024-02-19 18:34:35.496 900 TIP 430770 20754 6002137 2024-02-19 18:34:38.115 2024-02-19 18:34:38.115 100 FEE 430770 20642 6002138 2024-02-19 18:34:38.115 2024-02-19 18:34:38.115 900 TIP 430770 18336 6002162 2024-02-19 18:35:39.873 2024-02-19 18:35:39.873 2100 FEE 431161 9758 6002163 2024-02-19 18:35:39.873 2024-02-19 18:35:39.873 18900 TIP 431161 12368 6002192 2024-02-19 18:36:32.01 2024-02-19 18:36:32.01 1000 FEE 431370 20701 6002240 2024-02-19 18:38:17.596 2024-02-19 18:38:17.596 1000 FEE 430690 688 6002241 2024-02-19 18:38:17.596 2024-02-19 18:38:17.596 9000 TIP 430690 15147 6002251 2024-02-19 18:40:14.583 2024-02-19 18:40:14.583 1000 FEE 431380 3417 6002255 2024-02-19 18:42:10.774 2024-02-19 18:42:10.774 1000 FEE 431382 13169 6002280 2024-02-19 18:44:46.78 2024-02-19 18:44:46.78 1000 FEE 240484 16788 6002281 2024-02-19 18:44:46.78 2024-02-19 18:44:46.78 9000 TIP 240484 19435 6002315 2024-02-19 18:49:26.921 2024-02-19 18:49:26.921 1000 FEE 430584 2963 6002316 2024-02-19 18:49:26.921 2024-02-19 18:49:26.921 9000 TIP 430584 15386 6002317 2024-02-19 18:49:27.62 2024-02-19 18:49:27.62 1000 FEE 430322 20495 6002318 2024-02-19 18:49:27.62 2024-02-19 18:49:27.62 9000 TIP 430322 19992 6002332 2024-02-19 18:50:29.777 2024-02-19 18:50:29.777 1000 FEE 431392 21405 6002358 2024-02-19 18:54:01.155 2024-02-19 18:54:01.155 1000 FEE 431396 1801 6002410 2024-02-19 18:58:08.958 2024-02-19 18:58:08.958 1000 FEE 431408 11240 6002421 2024-02-19 18:59:20.087 2024-02-19 18:59:20.087 1000 FEE 431002 1316 6002422 2024-02-19 18:59:20.087 2024-02-19 18:59:20.087 9000 TIP 431002 20301 6002425 2024-02-19 18:59:29.047 2024-02-19 18:59:29.047 1000 FEE 431416 4378 6002430 2024-02-19 18:59:40.776 2024-02-19 18:59:40.776 1000 FEE 431419 17042 6002431 2024-02-19 18:59:42.855 2024-02-19 18:59:42.855 1000 FEE 431001 14152 6002432 2024-02-19 18:59:42.855 2024-02-19 18:59:42.855 9000 TIP 431001 20560 6002457 2024-02-19 19:00:33.534 2024-02-19 19:00:33.534 1000 FEE 430949 20084 6001710 2024-02-19 18:08:11.946 2024-02-19 18:08:11.946 90000 TIP 260858 11590 6001711 2024-02-19 18:08:31.792 2024-02-19 18:08:31.792 2100 FEE 431133 19966 6001712 2024-02-19 18:08:31.792 2024-02-19 18:08:31.792 18900 TIP 431133 1221 6001715 2024-02-19 18:08:56.442 2024-02-19 18:08:56.442 4000 FEE 431161 15697 6001716 2024-02-19 18:08:56.442 2024-02-19 18:08:56.442 36000 TIP 431161 14650 6001720 2024-02-19 18:09:23.141 2024-02-19 18:09:23.141 4000 FEE 431166 630 6001721 2024-02-19 18:09:23.141 2024-02-19 18:09:23.141 36000 TIP 431166 19465 6001736 2024-02-19 18:10:38.026 2024-02-19 18:10:38.026 1000 FEE 431172 14278 6001751 2024-02-19 18:12:49.631 2024-02-19 18:12:49.631 1000 FEE 431173 18243 6001783 2024-02-19 18:14:36.085 2024-02-19 18:14:36.085 10000 FEE 431187 2640 6001803 2024-02-19 18:15:25.862 2024-02-19 18:15:25.862 1000 FEE 431206 12272 6001811 2024-02-19 18:16:04.868 2024-02-19 18:16:04.868 1000 STREAM 141924 18865 6001828 2024-02-19 18:17:04.896 2024-02-19 18:17:04.896 1000 STREAM 141924 5701 6001840 2024-02-19 18:17:22.658 2024-02-19 18:17:22.658 2100 FEE 430984 16145 6001841 2024-02-19 18:17:22.658 2024-02-19 18:17:22.658 18900 TIP 430984 713 6001851 2024-02-19 18:17:43.405 2024-02-19 18:17:43.405 1000 FEE 431232 2329 6001852 2024-02-19 18:17:46.413 2024-02-19 18:17:46.413 1000 FEE 431233 1046 6001871 2024-02-19 18:19:42.412 2024-02-19 18:19:42.412 10000 FEE 431242 7818 6001872 2024-02-19 18:19:55.105 2024-02-19 18:19:55.105 1000 FEE 431243 16956 6001882 2024-02-19 18:20:15.799 2024-02-19 18:20:15.799 1000 FEE 431244 8448 6001885 2024-02-19 18:20:19.011 2024-02-19 18:20:19.011 1000 FEE 431245 977 6001891 2024-02-19 18:20:35.463 2024-02-19 18:20:35.463 1000 FEE 431251 9529 6001942 2024-02-19 18:21:39.47 2024-02-19 18:21:39.47 1000 FEE 430522 12245 6001943 2024-02-19 18:21:39.47 2024-02-19 18:21:39.47 9000 TIP 430522 16347 6001954 2024-02-19 18:22:01.061 2024-02-19 18:22:01.061 1000 FEE 431260 20370 6001957 2024-02-19 18:22:10.13 2024-02-19 18:22:10.13 1000 FEE 431262 1833 6001958 2024-02-19 18:22:12.345 2024-02-19 18:22:12.345 1000 FEE 430538 2525 6001959 2024-02-19 18:22:12.345 2024-02-19 18:22:12.345 9000 TIP 430538 1845 6001977 2024-02-19 18:22:52.747 2024-02-19 18:22:52.747 1000 FEE 431275 12951 6001988 2024-02-19 18:23:17.806 2024-02-19 18:23:17.806 1000 FEE 431285 18994 6001990 2024-02-19 18:23:22.749 2024-02-19 18:23:22.749 1000 FEE 431287 17184 6002005 2024-02-19 18:25:49.95 2024-02-19 18:25:49.95 1000 FEE 431292 2543 6002006 2024-02-19 18:25:52.348 2024-02-19 18:25:52.348 1000 FEE 430892 18817 6002007 2024-02-19 18:25:52.348 2024-02-19 18:25:52.348 9000 TIP 430892 17221 6002035 2024-02-19 18:28:53.987 2024-02-19 18:28:53.987 10100 FEE 430771 902 6002036 2024-02-19 18:28:53.987 2024-02-19 18:28:53.987 90900 TIP 430771 5865 6002050 2024-02-19 18:30:08.685 2024-02-19 18:30:08.685 10000 FEE 431299 15094 6002053 2024-02-19 18:30:53.294 2024-02-19 18:30:53.294 10000 FEE 431300 657 6002059 2024-02-19 18:31:16.183 2024-02-19 18:31:16.183 8300 FEE 431079 21444 6002060 2024-02-19 18:31:16.183 2024-02-19 18:31:16.183 74700 TIP 431079 19037 6002069 2024-02-19 18:31:51.155 2024-02-19 18:31:51.155 10000 FEE 431301 1825 6002076 2024-02-19 18:32:35.293 2024-02-19 18:32:35.293 1000 FEE 431305 10484 6002088 2024-02-19 18:32:46.265 2024-02-19 18:32:46.265 8300 FEE 431293 1585 6002089 2024-02-19 18:32:46.265 2024-02-19 18:32:46.265 74700 TIP 431293 21614 6002094 2024-02-19 18:32:52.195 2024-02-19 18:32:52.195 1000 FEE 431311 9496 6002104 2024-02-19 18:33:18.338 2024-02-19 18:33:18.338 1000 FEE 431320 14515 6002105 2024-02-19 18:33:19.656 2024-02-19 18:33:19.656 1000 FEE 431321 21356 6002113 2024-02-19 18:33:32.167 2024-02-19 18:33:32.167 1000 FEE 431326 12946 6002116 2024-02-19 18:33:40.92 2024-02-19 18:33:40.92 1000 FEE 431329 2285 6002161 2024-02-19 18:35:38.713 2024-02-19 18:35:38.713 1000 FEE 431352 21334 6002171 2024-02-19 18:35:54.474 2024-02-19 18:35:54.474 1000 FEE 431357 12721 6002172 2024-02-19 18:35:57.33 2024-02-19 18:35:57.33 1000 FEE 431358 1713 6002182 2024-02-19 18:36:19.86 2024-02-19 18:36:19.86 1000 FEE 431366 5112 6002201 2024-02-19 18:36:41.141 2024-02-19 18:36:41.141 1000 FEE 431373 19038 6002211 2024-02-19 18:36:55.411 2024-02-19 18:36:55.411 1000 FEE 430763 1003 6002212 2024-02-19 18:36:55.411 2024-02-19 18:36:55.411 9000 TIP 430763 13365 6002215 2024-02-19 18:36:56.537 2024-02-19 18:36:56.537 1000 FEE 430763 2088 6002216 2024-02-19 18:36:56.537 2024-02-19 18:36:56.537 9000 TIP 430763 650 6002231 2024-02-19 18:37:50.469 2024-02-19 18:37:50.469 1000 FEE 430688 20062 6002232 2024-02-19 18:37:50.469 2024-02-19 18:37:50.469 9000 TIP 430688 19952 6002237 2024-02-19 18:38:11.59 2024-02-19 18:38:11.59 1000 FEE 430657 1401 6002238 2024-02-19 18:38:11.59 2024-02-19 18:38:11.59 9000 TIP 430657 7673 6002253 2024-02-19 18:41:35.417 2024-02-19 18:41:35.417 1000 FEE 431381 20603 6002263 2024-02-19 18:42:38.687 2024-02-19 18:42:38.687 10000 FEE 431384 20555 6002274 2024-02-19 18:43:39.549 2024-02-19 18:43:39.549 1000 FEE 430898 20858 6002275 2024-02-19 18:43:39.549 2024-02-19 18:43:39.549 9000 TIP 430898 19193 6002287 2024-02-19 18:45:36.839 2024-02-19 18:45:36.839 2100 FEE 431243 985 6002288 2024-02-19 18:45:36.839 2024-02-19 18:45:36.839 18900 TIP 431243 17116 6002294 2024-02-19 18:46:14.156 2024-02-19 18:46:14.156 1000 FEE 431390 19941 6002313 2024-02-19 18:49:26.109 2024-02-19 18:49:26.109 1000 FEE 430326 21060 6002314 2024-02-19 18:49:26.109 2024-02-19 18:49:26.109 9000 TIP 430326 1628 6002337 2024-02-19 18:50:50.041 2024-02-19 18:50:50.041 1000 FEE 431173 12609 6002338 2024-02-19 18:50:50.041 2024-02-19 18:50:50.041 9000 TIP 431173 18641 6002343 2024-02-19 18:51:19.029 2024-02-19 18:51:19.029 2000 FEE 430920 17727 6002344 2024-02-19 18:51:19.029 2024-02-19 18:51:19.029 18000 TIP 430920 16706 6002348 2024-02-19 18:52:58.887 2024-02-19 18:52:58.887 1000 FEE 430984 7773 6002349 2024-02-19 18:52:58.887 2024-02-19 18:52:58.887 9000 TIP 430984 1584 6002377 2024-02-19 18:55:17.855 2024-02-19 18:55:17.855 9000 FEE 431389 1198 6002378 2024-02-19 18:55:17.855 2024-02-19 18:55:17.855 81000 TIP 431389 10690 6002405 2024-02-19 18:57:56.803 2024-02-19 18:57:56.803 1000 FEE 431405 7766 6002434 2024-02-19 18:59:49.393 2024-02-19 18:59:49.393 112100 FEE 431401 9354 6002435 2024-02-19 18:59:49.393 2024-02-19 18:59:49.393 1008900 TIP 431401 18199 6002436 2024-02-19 18:59:49.864 2024-02-19 18:59:49.864 1000 FEE 431422 2390 6002439 2024-02-19 18:59:53.661 2024-02-19 18:59:53.661 1000 FEE 430990 21463 6002440 2024-02-19 18:59:53.661 2024-02-19 18:59:53.661 9000 TIP 430990 12965 6002452 2024-02-19 19:00:26.984 2024-02-19 19:00:26.984 1000 FEE 431429 15556 6002456 2024-02-19 19:00:33.099 2024-02-19 19:00:33.099 1000 FEE 431431 19322 6002493 2024-02-19 19:01:48.648 2024-02-19 19:01:48.648 1000 FEE 431457 13763 6002496 2024-02-19 19:01:55.38 2024-02-19 19:01:55.38 1000 FEE 431460 16406 6002498 2024-02-19 19:02:02.148 2024-02-19 19:02:02.148 1000 FEE 431462 8648 6002524 2024-02-19 19:03:32.867 2024-02-19 19:03:32.867 1000 FEE 431470 16284 6002528 2024-02-19 19:03:39.62 2024-02-19 19:03:39.62 2100 FEE 430549 4345 6002529 2024-02-19 19:03:39.62 2024-02-19 19:03:39.62 18900 TIP 430549 659 6002533 2024-02-19 19:03:45.099 2024-02-19 19:03:45.099 1000 FEE 431473 6749 6002541 2024-02-19 19:03:58.606 2024-02-19 19:03:58.606 1000 FEE 431477 14909 6002544 2024-02-19 19:04:01.225 2024-02-19 19:04:01.225 2100 FEE 430507 11430 6002545 2024-02-19 19:04:01.225 2024-02-19 19:04:01.225 18900 TIP 430507 21159 6002546 2024-02-19 19:04:01.796 2024-02-19 19:04:01.796 2100 FEE 430507 6202 6002547 2024-02-19 19:04:01.796 2024-02-19 19:04:01.796 18900 TIP 430507 11942 6002557 2024-02-19 19:04:11.312 2024-02-19 19:04:11.312 2100 FEE 430597 10698 6002558 2024-02-19 19:04:11.312 2024-02-19 19:04:11.312 18900 TIP 430597 21292 6002565 2024-02-19 19:04:17.286 2024-02-19 19:04:17.286 1000 FEE 431484 2444 6002578 2024-02-19 19:04:34.981 2024-02-19 19:04:34.981 1000 FEE 431487 6594 6002598 2024-02-19 19:05:02.824 2024-02-19 19:05:02.824 8300 FEE 431401 1567 6002599 2024-02-19 19:05:02.824 2024-02-19 19:05:02.824 74700 TIP 431401 7389 6002614 2024-02-19 19:05:03.871 2024-02-19 19:05:03.871 8300 FEE 431401 20577 6002615 2024-02-19 19:05:03.871 2024-02-19 19:05:03.871 74700 TIP 431401 20973 6001947 2024-02-19 18:21:48.932 2024-02-19 18:21:48.932 9000 TIP 430613 4521 6001953 2024-02-19 18:21:55.653 2024-02-19 18:21:55.653 1000 FEE 431259 6526 6001968 2024-02-19 18:22:26.743 2024-02-19 18:22:26.743 1000 FEE 431267 678 6001974 2024-02-19 18:22:37.868 2024-02-19 18:22:37.868 1000 FEE 431272 17517 6002002 2024-02-19 18:24:59.491 2024-02-19 18:24:59.491 1000 FEE 430678 19511 6002003 2024-02-19 18:24:59.491 2024-02-19 18:24:59.491 9000 TIP 430678 4250 6002010 2024-02-19 18:25:57.16 2024-02-19 18:25:57.16 21000 FEE 431293 2065 6002016 2024-02-19 18:26:46.019 2024-02-19 18:26:46.019 1000 FEE 431295 20162 6002029 2024-02-19 18:28:50.606 2024-02-19 18:28:50.606 1000 FEE 431161 5565 6002030 2024-02-19 18:28:50.606 2024-02-19 18:28:50.606 9000 TIP 431161 21430 6002073 2024-02-19 18:32:22.182 2024-02-19 18:32:22.182 1000 FEE 431302 14818 6002093 2024-02-19 18:32:49.659 2024-02-19 18:32:49.659 1000 FEE 431310 19286 6002107 2024-02-19 18:33:20.638 2024-02-19 18:33:20.638 1000 FEE 431322 16276 6002114 2024-02-19 18:33:34.881 2024-02-19 18:33:34.881 1000 FEE 431327 1286 6002127 2024-02-19 18:34:35.956 2024-02-19 18:34:35.956 100 FEE 430770 19622 6002128 2024-02-19 18:34:35.956 2024-02-19 18:34:35.956 900 TIP 430770 7376 6002141 2024-02-19 18:34:39.015 2024-02-19 18:34:39.015 100 FEE 430770 18119 6002142 2024-02-19 18:34:39.015 2024-02-19 18:34:39.015 900 TIP 430770 1493 6002143 2024-02-19 18:34:42.245 2024-02-19 18:34:42.245 1000 FEE 431335 21395 6002144 2024-02-19 18:34:45.917 2024-02-19 18:34:45.917 1000 FEE 431336 9 6002145 2024-02-19 18:34:55.996 2024-02-19 18:34:55.996 1000 FEE 431337 9920 6002156 2024-02-19 18:35:23.113 2024-02-19 18:35:23.113 1000 FEE 431347 17827 6002160 2024-02-19 18:35:35.744 2024-02-19 18:35:35.744 1000 FEE 431351 19158 6002167 2024-02-19 18:35:43.7 2024-02-19 18:35:43.7 0 FEE 431298 21485 6002176 2024-02-19 18:36:03.033 2024-02-19 18:36:03.033 0 FEE 431298 2437 6002178 2024-02-19 18:36:08.483 2024-02-19 18:36:08.483 1000 FEE 431362 20218 6002187 2024-02-19 18:36:22.229 2024-02-19 18:36:22.229 1000 FEE 431367 17838 6002188 2024-02-19 18:36:24.61 2024-02-19 18:36:24.61 1000 FEE 430721 9335 6002189 2024-02-19 18:36:24.61 2024-02-19 18:36:24.61 9000 TIP 430721 21605 6002197 2024-02-19 18:36:33.478 2024-02-19 18:36:33.478 1000 FEE 430728 18313 6002198 2024-02-19 18:36:33.478 2024-02-19 18:36:33.478 9000 TIP 430728 15577 6002206 2024-02-19 18:36:43.012 2024-02-19 18:36:43.012 1000 FEE 430762 21194 6002207 2024-02-19 18:36:43.012 2024-02-19 18:36:43.012 9000 TIP 430762 19465 6002213 2024-02-19 18:36:56.003 2024-02-19 18:36:56.003 1000 FEE 430763 20849 6002214 2024-02-19 18:36:56.003 2024-02-19 18:36:56.003 9000 TIP 430763 19494 6002222 2024-02-19 18:37:34.321 2024-02-19 18:37:34.321 10000 FEE 431377 1720 6002264 2024-02-19 18:42:44.984 2024-02-19 18:42:44.984 1000 FEE 430933 4115 6002265 2024-02-19 18:42:44.984 2024-02-19 18:42:44.984 9000 TIP 430933 9352 6002270 2024-02-19 18:42:49.869 2024-02-19 18:42:49.869 1000 FEE 431385 7510 6002291 2024-02-19 18:45:56.933 2024-02-19 18:45:56.933 1000 FEE 431187 14385 6002292 2024-02-19 18:45:56.933 2024-02-19 18:45:56.933 9000 TIP 431187 19852 6002319 2024-02-19 18:49:28.331 2024-02-19 18:49:28.331 1000 FEE 429740 685 6002320 2024-02-19 18:49:28.331 2024-02-19 18:49:28.331 9000 TIP 429740 1806 6002323 2024-02-19 18:49:29.435 2024-02-19 18:49:29.435 1000 FEE 427784 5829 6002324 2024-02-19 18:49:29.435 2024-02-19 18:49:29.435 9000 TIP 427784 14255 6002328 2024-02-19 18:50:16.167 2024-02-19 18:50:16.167 1000 FEE 431180 15697 6002329 2024-02-19 18:50:16.167 2024-02-19 18:50:16.167 9000 TIP 431180 5637 6002335 2024-02-19 18:50:39.671 2024-02-19 18:50:39.671 1000 FEE 431290 3642 6002336 2024-02-19 18:50:39.671 2024-02-19 18:50:39.671 9000 TIP 431290 19911 6002339 2024-02-19 18:50:54.385 2024-02-19 18:50:54.385 10000 FEE 431393 5499 6002352 2024-02-19 18:53:19.245 2024-02-19 18:53:19.245 0 FEE 431394 16939 6002369 2024-02-19 18:54:49.171 2024-02-19 18:54:49.171 900 FEE 431223 20683 6002370 2024-02-19 18:54:49.171 2024-02-19 18:54:49.171 8100 TIP 431223 8289 6002391 2024-02-19 18:56:31.509 2024-02-19 18:56:31.509 800 FEE 431281 738 6002392 2024-02-19 18:56:31.509 2024-02-19 18:56:31.509 7200 TIP 431281 21164 6002393 2024-02-19 18:56:48.109 2024-02-19 18:56:48.109 1000 FEE 431400 19332 6002403 2024-02-19 18:57:44.803 2024-02-19 18:57:44.803 1000 FEE 431403 18494 6002408 2024-02-19 18:58:04.013 2024-02-19 18:58:04.013 1000 FEE 431406 9426 6002412 2024-02-19 18:58:32.353 2024-02-19 18:58:32.353 1000 FEE 431125 18539 6002413 2024-02-19 18:58:32.353 2024-02-19 18:58:32.353 9000 TIP 431125 20594 6002416 2024-02-19 18:58:45.691 2024-02-19 18:58:45.691 1000 FEE 431410 10821 6002419 2024-02-19 18:59:08.856 2024-02-19 18:59:08.856 10000 FEE 431412 1105 6002428 2024-02-19 18:59:40.057 2024-02-19 18:59:40.057 1000 FEE 430993 20066 6002429 2024-02-19 18:59:40.057 2024-02-19 18:59:40.057 9000 TIP 430993 2224 6002469 2024-02-19 19:01:02.736 2024-02-19 19:01:02.736 1000 FEE 430857 925 6002470 2024-02-19 19:01:02.736 2024-02-19 19:01:02.736 9000 TIP 430857 21275 6002480 2024-02-19 19:01:20.895 2024-02-19 19:01:20.895 1000 FEE 431448 2077 6002497 2024-02-19 19:01:57.67 2024-02-19 19:01:57.67 1000 FEE 431461 18363 6002503 2024-02-19 19:02:05.252 2024-02-19 19:02:05.252 1000 FEE 431464 1060 6002566 2024-02-19 19:04:19.52 2024-02-19 19:04:19.52 1000 FEE 430843 1602 6002567 2024-02-19 19:04:19.52 2024-02-19 19:04:19.52 9000 TIP 430843 1471 6002585 2024-02-19 19:04:53.041 2024-02-19 19:04:53.041 2100 FEE 430824 18500 6002586 2024-02-19 19:04:53.041 2024-02-19 19:04:53.041 18900 TIP 430824 14255 6002589 2024-02-19 19:05:02.183 2024-02-19 19:05:02.183 8300 FEE 431401 17124 6002590 2024-02-19 19:05:02.183 2024-02-19 19:05:02.183 74700 TIP 431401 20143 6002604 2024-02-19 19:05:03.237 2024-02-19 19:05:03.237 8300 FEE 431401 17041 6002605 2024-02-19 19:05:03.237 2024-02-19 19:05:03.237 74700 TIP 431401 14080 6002661 2024-02-19 19:05:40.973 2024-02-19 19:05:40.973 10000 FEE 430497 7966 6002662 2024-02-19 19:05:40.973 2024-02-19 19:05:40.973 90000 TIP 430497 16542 6002665 2024-02-19 19:05:43.35 2024-02-19 19:05:43.35 1000 FEE 431496 5565 6002667 2024-02-19 19:05:48.165 2024-02-19 19:05:48.165 1000 FEE 431498 18387 6002668 2024-02-19 19:05:50.55 2024-02-19 19:05:50.55 1000 FEE 431499 10469 6002675 2024-02-19 19:06:06.25 2024-02-19 19:06:06.25 1000 FEE 431505 12368 6002688 2024-02-19 19:07:09.64 2024-02-19 19:07:09.64 1000 FEE 431511 7674 6002713 2024-02-19 19:07:45.65 2024-02-19 19:07:45.65 1000 FEE 431522 20087 6002717 2024-02-19 19:07:56.076 2024-02-19 19:07:56.076 1000 FEE 430530 11522 6002718 2024-02-19 19:07:56.076 2024-02-19 19:07:56.076 9000 TIP 430530 18138 6002720 2024-02-19 19:08:02.707 2024-02-19 19:08:02.707 12100 FEE 430725 4079 6002721 2024-02-19 19:08:02.707 2024-02-19 19:08:02.707 108900 TIP 430725 16717 6002725 2024-02-19 19:08:12.324 2024-02-19 19:08:12.324 1000 FEE 431530 1631 6002741 2024-02-19 19:08:26.447 2024-02-19 19:08:26.447 2100 FEE 430575 21314 6002742 2024-02-19 19:08:26.447 2024-02-19 19:08:26.447 18900 TIP 430575 17673 6002759 2024-02-19 19:08:51.245 2024-02-19 19:08:51.245 1000 FEE 431545 10693 6002766 2024-02-19 19:09:10.518 2024-02-19 19:09:10.518 2100 FEE 430244 5427 6002767 2024-02-19 19:09:10.518 2024-02-19 19:09:10.518 18900 TIP 430244 622 6002783 2024-02-19 19:09:20.139 2024-02-19 19:09:20.139 2100 FEE 429883 21329 6002784 2024-02-19 19:09:20.139 2024-02-19 19:09:20.139 18900 TIP 429883 21139 6002805 2024-02-19 19:09:58.049 2024-02-19 19:09:58.049 2500 FEE 430265 6749 6002806 2024-02-19 19:09:58.049 2024-02-19 19:09:58.049 22500 TIP 430265 1584 6002818 2024-02-19 19:10:53.314 2024-02-19 19:10:53.314 400 FEE 431487 2123 6002819 2024-02-19 19:10:53.314 2024-02-19 19:10:53.314 3600 TIP 431487 14669 6002839 2024-02-19 19:12:16.567 2024-02-19 19:12:16.567 2100 FEE 430607 9476 6002840 2024-02-19 19:12:16.567 2024-02-19 19:12:16.567 18900 TIP 430607 19732 6002850 2024-02-19 19:12:43.525 2024-02-19 19:12:43.525 2100 FEE 430755 1273 6002851 2024-02-19 19:12:43.525 2024-02-19 19:12:43.525 18900 TIP 430755 16594 6002874 2024-02-19 19:12:50.109 2024-02-19 19:12:50.109 2100 FEE 430755 4487 6002875 2024-02-19 19:12:50.109 2024-02-19 19:12:50.109 18900 TIP 430755 20183 6001955 2024-02-19 18:22:02.553 2024-02-19 18:22:02.553 1000 STREAM 141924 9331 6001981 2024-02-19 18:23:02.575 2024-02-19 18:23:02.575 1000 STREAM 141924 11298 6001995 2024-02-19 18:24:02.593 2024-02-19 18:24:02.593 1000 STREAM 141924 11328 6002011 2024-02-19 18:26:02.793 2024-02-19 18:26:02.793 1000 STREAM 141924 15762 6002019 2024-02-19 18:27:02.62 2024-02-19 18:27:02.62 1000 STREAM 141924 7746 6002048 2024-02-19 18:30:02.625 2024-02-19 18:30:02.625 1000 STREAM 141924 5759 6002054 2024-02-19 18:31:02.643 2024-02-19 18:31:02.643 1000 STREAM 141924 3478 6002121 2024-02-19 18:34:02.656 2024-02-19 18:34:02.656 1000 STREAM 141924 21609 6002148 2024-02-19 18:35:02.684 2024-02-19 18:35:02.684 1000 STREAM 141924 16353 6002217 2024-02-19 18:37:02.698 2024-02-19 18:37:02.698 1000 STREAM 141924 16154 6002235 2024-02-19 18:38:02.679 2024-02-19 18:38:02.679 1000 STREAM 141924 691 6002245 2024-02-19 18:39:02.684 2024-02-19 18:39:02.684 1000 STREAM 141924 19284 6002254 2024-02-19 18:42:02.71 2024-02-19 18:42:02.71 1000 STREAM 141924 669 6002271 2024-02-19 18:43:02.725 2024-02-19 18:43:02.725 1000 STREAM 141924 18169 6002282 2024-02-19 18:45:02.738 2024-02-19 18:45:02.738 1000 STREAM 141924 11798 6002295 2024-02-19 18:47:02.739 2024-02-19 18:47:02.739 1000 STREAM 141924 1602 6002306 2024-02-19 18:49:02.734 2024-02-19 18:49:02.734 1000 STREAM 141924 19494 6002387 2024-02-19 18:56:02.78 2024-02-19 18:56:02.78 1000 STREAM 141924 2703 6002394 2024-02-19 18:57:02.788 2024-02-19 18:57:02.788 1000 STREAM 141924 17365 6002407 2024-02-19 18:58:02.768 2024-02-19 18:58:02.768 1000 STREAM 141924 1030 6002444 2024-02-19 19:00:02.8 2024-02-19 19:00:02.8 1000 STREAM 141924 16505 6002597 2024-02-19 19:05:02.805 2024-02-19 19:05:02.805 1000 STREAM 141924 9350 6002673 2024-02-19 19:06:02.821 2024-02-19 19:06:02.821 1000 STREAM 141924 1130 6002763 2024-02-19 19:09:02.842 2024-02-19 19:09:02.842 1000 STREAM 141924 3396 6002836 2024-02-19 19:12:02.869 2024-02-19 19:12:02.869 1000 STREAM 141924 979 6002929 2024-02-19 19:14:02.883 2024-02-19 19:14:02.883 1000 STREAM 141924 18188 6003010 2024-02-19 19:16:02.887 2024-02-19 19:16:02.887 1000 STREAM 141924 21214 6003022 2024-02-19 19:17:02.894 2024-02-19 19:17:02.894 1000 STREAM 141924 7772 6003033 2024-02-19 19:18:02.911 2024-02-19 19:18:02.911 1000 STREAM 141924 18517 6003066 2024-02-19 19:19:02.905 2024-02-19 19:19:02.905 1000 STREAM 141924 13132 6003080 2024-02-19 19:20:02.917 2024-02-19 19:20:02.917 1000 STREAM 141924 9450 6003110 2024-02-19 19:22:02.932 2024-02-19 19:22:02.932 1000 STREAM 141924 18170 6003148 2024-02-19 19:23:02.926 2024-02-19 19:23:02.926 1000 STREAM 141924 7119 6003168 2024-02-19 19:25:02.991 2024-02-19 19:25:02.991 1000 STREAM 141924 2829 6003258 2024-02-19 19:31:03.027 2024-02-19 19:31:03.027 1000 STREAM 141924 5809 6003281 2024-02-19 19:32:03.028 2024-02-19 19:32:03.028 1000 STREAM 141924 10586 6003410 2024-02-19 19:36:03.064 2024-02-19 19:36:03.064 1000 STREAM 141924 9362 6003447 2024-02-19 19:38:03.07 2024-02-19 19:38:03.07 1000 STREAM 141924 19174 6003467 2024-02-19 19:39:03.086 2024-02-19 19:39:03.086 1000 STREAM 141924 11885 6003523 2024-02-19 19:42:03.086 2024-02-19 19:42:03.086 1000 STREAM 141924 4115 6003548 2024-02-19 19:44:03.111 2024-02-19 19:44:03.111 1000 STREAM 141924 11561 6003633 2024-02-19 19:51:03.11 2024-02-19 19:51:03.11 1000 STREAM 141924 9352 6001978 2024-02-19 18:22:52.914 2024-02-19 18:22:52.914 1000 FEE 431276 7979 6001986 2024-02-19 18:23:14.942 2024-02-19 18:23:14.942 1000 FEE 431283 20594 6002001 2024-02-19 18:24:53.335 2024-02-19 18:24:53.335 1000 FEE 431291 1319 6002008 2024-02-19 18:25:53.443 2024-02-19 18:25:53.443 1000 FEE 430892 976 6002009 2024-02-19 18:25:53.443 2024-02-19 18:25:53.443 9000 TIP 430892 11523 6002067 2024-02-19 18:31:50.305 2024-02-19 18:31:50.305 4000 FEE 431283 14657 6002068 2024-02-19 18:31:50.305 2024-02-19 18:31:50.305 36000 TIP 431283 11967 6002071 2024-02-19 18:32:08.182 2024-02-19 18:32:08.182 100 FEE 430918 822 6002072 2024-02-19 18:32:08.182 2024-02-19 18:32:08.182 900 TIP 430918 19458 6002075 2024-02-19 18:32:32.262 2024-02-19 18:32:32.262 1000 FEE 431304 17708 6002086 2024-02-19 18:32:46.01 2024-02-19 18:32:46.01 8300 FEE 431293 20738 6002087 2024-02-19 18:32:46.01 2024-02-19 18:32:46.01 74700 TIP 431293 27 6002097 2024-02-19 18:32:59.879 2024-02-19 18:32:59.879 1000 FEE 431314 2460 6002100 2024-02-19 18:33:05.207 2024-02-19 18:33:05.207 1000 FEE 431316 7998 6002101 2024-02-19 18:33:08.893 2024-02-19 18:33:08.893 1000 FEE 431317 20205 6002103 2024-02-19 18:33:15.245 2024-02-19 18:33:15.245 1000 FEE 431319 21194 6002115 2024-02-19 18:33:37.568 2024-02-19 18:33:37.568 1000 FEE 431328 1549 6002123 2024-02-19 18:34:35.004 2024-02-19 18:34:35.004 100 FEE 430770 1603 6002124 2024-02-19 18:34:35.004 2024-02-19 18:34:35.004 900 TIP 430770 895 6002153 2024-02-19 18:35:14.408 2024-02-19 18:35:14.408 1000 FEE 431344 1515 6002154 2024-02-19 18:35:17.554 2024-02-19 18:35:17.554 1000 FEE 431345 4395 6002157 2024-02-19 18:35:26.121 2024-02-19 18:35:26.121 1000 FEE 431348 4173 6002159 2024-02-19 18:35:32.821 2024-02-19 18:35:32.821 1000 FEE 431350 8505 6002170 2024-02-19 18:35:50.574 2024-02-19 18:35:50.574 1000 FEE 431356 20287 6002185 2024-02-19 18:36:21.258 2024-02-19 18:36:21.258 1000 FEE 430721 18904 6002186 2024-02-19 18:36:21.258 2024-02-19 18:36:21.258 9000 TIP 430721 20180 6002193 2024-02-19 18:36:32.157 2024-02-19 18:36:32.157 1000 FEE 430728 15213 6002194 2024-02-19 18:36:32.157 2024-02-19 18:36:32.157 9000 TIP 430728 16270 6002195 2024-02-19 18:36:32.823 2024-02-19 18:36:32.823 1000 FEE 430728 17517 6002196 2024-02-19 18:36:32.823 2024-02-19 18:36:32.823 9000 TIP 430728 15843 6002209 2024-02-19 18:36:46.047 2024-02-19 18:36:46.047 1000 FEE 431375 18220 6002223 2024-02-19 18:37:36.263 2024-02-19 18:37:36.263 1000 FEE 430943 8998 6002224 2024-02-19 18:37:36.263 2024-02-19 18:37:36.263 9000 TIP 430943 21207 6002229 2024-02-19 18:37:43.299 2024-02-19 18:37:43.299 1000 FEE 430749 16789 6002230 2024-02-19 18:37:43.299 2024-02-19 18:37:43.299 9000 TIP 430749 19038 6002242 2024-02-19 18:38:23.966 2024-02-19 18:38:23.966 1000 FEE 430679 8985 6002243 2024-02-19 18:38:23.966 2024-02-19 18:38:23.966 9000 TIP 430679 15115 6002246 2024-02-19 18:39:15.915 2024-02-19 18:39:15.915 1000 FEE 430669 14950 6002247 2024-02-19 18:39:15.915 2024-02-19 18:39:15.915 9000 TIP 430669 1960 6002257 2024-02-19 18:42:13.264 2024-02-19 18:42:13.264 1000 FEE 430986 2327 6002258 2024-02-19 18:42:13.264 2024-02-19 18:42:13.264 9000 TIP 430986 2437 6002284 2024-02-19 18:45:28.644 2024-02-19 18:45:28.644 0 FEE 431389 17392 6002299 2024-02-19 18:48:08.356 2024-02-19 18:48:08.356 10000 FEE 431391 17291 6002304 2024-02-19 18:48:57.171 2024-02-19 18:48:57.171 1000 FEE 430593 16177 6002305 2024-02-19 18:48:57.171 2024-02-19 18:48:57.171 9000 TIP 430593 3411 6002307 2024-02-19 18:49:14.728 2024-02-19 18:49:14.728 1000 FEE 430799 5499 6002308 2024-02-19 18:49:14.728 2024-02-19 18:49:14.728 9000 TIP 430799 17713 6002326 2024-02-19 18:50:15.356 2024-02-19 18:50:15.356 1000 FEE 431180 19812 6002327 2024-02-19 18:50:15.356 2024-02-19 18:50:15.356 9000 TIP 431180 21249 6002333 2024-02-19 18:50:32.545 2024-02-19 18:50:32.545 2100 FEE 431267 6300 6002334 2024-02-19 18:50:32.545 2024-02-19 18:50:32.545 18900 TIP 431267 629 6002353 2024-02-19 18:53:30.657 2024-02-19 18:53:30.657 100 FEE 430811 1224 6002354 2024-02-19 18:53:30.657 2024-02-19 18:53:30.657 900 TIP 430811 1471 6002355 2024-02-19 18:53:30.719 2024-02-19 18:53:30.719 900 FEE 430811 12139 6002356 2024-02-19 18:53:30.719 2024-02-19 18:53:30.719 8100 TIP 430811 681 6002388 2024-02-19 18:56:13.283 2024-02-19 18:56:13.283 2100 FEE 431378 17682 6002389 2024-02-19 18:56:13.283 2024-02-19 18:56:13.283 18900 TIP 431378 20409 6002390 2024-02-19 18:56:23.208 2024-02-19 18:56:23.208 1000 FEE 431399 3360 6002397 2024-02-19 18:57:18.576 2024-02-19 18:57:18.576 1000 FEE 431158 999 6002398 2024-02-19 18:57:18.576 2024-02-19 18:57:18.576 9000 TIP 431158 1429 6002404 2024-02-19 18:57:49.56 2024-02-19 18:57:49.56 1000 FEE 431404 17106 6002409 2024-02-19 18:58:05.442 2024-02-19 18:58:05.442 1000 FEE 431407 15624 6002426 2024-02-19 18:59:32.613 2024-02-19 18:59:32.613 1000 FEE 431417 8569 6002443 2024-02-19 18:59:55.46 2024-02-19 18:59:55.46 1000 FEE 431423 20963 6002447 2024-02-19 19:00:18.044 2024-02-19 19:00:18.044 1000 FEE 431426 5538 6002462 2024-02-19 19:00:46.451 2024-02-19 19:00:46.451 1000 FEE 431435 9354 6002463 2024-02-19 19:00:50.038 2024-02-19 19:00:50.038 1000 FEE 431436 16966 6002465 2024-02-19 19:00:55.086 2024-02-19 19:00:55.086 1000 FEE 431438 5752 6002473 2024-02-19 19:01:07.832 2024-02-19 19:01:07.832 1000 FEE 431443 20525 6002478 2024-02-19 19:01:20.714 2024-02-19 19:01:20.714 2500 FEE 431187 20683 6002479 2024-02-19 19:01:20.714 2024-02-19 19:01:20.714 22500 TIP 431187 18372 6002487 2024-02-19 19:01:35.167 2024-02-19 19:01:35.167 1000 FEE 431453 19906 6002491 2024-02-19 19:01:40.737 2024-02-19 19:01:40.737 1000 FEE 431455 3400 6002548 2024-02-19 19:04:01.947 2024-02-19 19:04:01.947 1000 FEE 431478 18017 6002572 2024-02-19 19:04:31.12 2024-02-19 19:04:31.12 400 FEE 431468 9906 6002573 2024-02-19 19:04:31.12 2024-02-19 19:04:31.12 3600 TIP 431468 4059 6002579 2024-02-19 19:04:47.043 2024-02-19 19:04:47.043 2100 FEE 430924 18772 6002580 2024-02-19 19:04:47.043 2024-02-19 19:04:47.043 18900 TIP 430924 10311 6002583 2024-02-19 19:04:52.293 2024-02-19 19:04:52.293 2100 FEE 430824 7553 6002584 2024-02-19 19:04:52.293 2024-02-19 19:04:52.293 18900 TIP 430824 15491 6002595 2024-02-19 19:05:02.614 2024-02-19 19:05:02.614 8300 FEE 431401 9833 6002596 2024-02-19 19:05:02.614 2024-02-19 19:05:02.614 74700 TIP 431401 19044 6002610 2024-02-19 19:05:03.544 2024-02-19 19:05:03.544 8300 FEE 431401 14213 6002611 2024-02-19 19:05:03.544 2024-02-19 19:05:03.544 74700 TIP 431401 1003 6002620 2024-02-19 19:05:04.215 2024-02-19 19:05:04.215 2100 FEE 430795 21599 6002621 2024-02-19 19:05:04.215 2024-02-19 19:05:04.215 18900 TIP 430795 18154 6002630 2024-02-19 19:05:04.848 2024-02-19 19:05:04.848 2100 FEE 430795 3411 6002631 2024-02-19 19:05:04.848 2024-02-19 19:05:04.848 18900 TIP 430795 21482 6002658 2024-02-19 19:05:33.52 2024-02-19 19:05:33.52 1000 FEE 431492 638 6002659 2024-02-19 19:05:35.778 2024-02-19 19:05:35.778 1000 FEE 431493 13921 6002660 2024-02-19 19:05:38.102 2024-02-19 19:05:38.102 1000 FEE 431494 3396 6002669 2024-02-19 19:05:52.971 2024-02-19 19:05:52.971 1000 FEE 431500 2724 6002676 2024-02-19 19:06:08.781 2024-02-19 19:06:08.781 1000 FEE 431506 9242 6002677 2024-02-19 19:06:08.892 2024-02-19 19:06:08.892 1000 FEE 431462 4323 6002678 2024-02-19 19:06:08.892 2024-02-19 19:06:08.892 9000 TIP 431462 7989 6002693 2024-02-19 19:07:24.418 2024-02-19 19:07:24.418 100 FEE 367984 21521 6002694 2024-02-19 19:07:24.418 2024-02-19 19:07:24.418 900 TIP 367984 16176 6002710 2024-02-19 19:07:34.169 2024-02-19 19:07:34.169 1000 FEE 431519 18321 6002729 2024-02-19 19:08:21.206 2024-02-19 19:08:21.206 1000 FEE 431533 20816 6002743 2024-02-19 19:08:27.436 2024-02-19 19:08:27.436 2100 FEE 430575 13216 6002744 2024-02-19 19:08:27.436 2024-02-19 19:08:27.436 18900 TIP 430575 1549 6002745 2024-02-19 19:08:27.619 2024-02-19 19:08:27.619 1000 FEE 431535 21145 6002757 2024-02-19 19:08:46.209 2024-02-19 19:08:46.209 1000 FEE 431543 14074 6002758 2024-02-19 19:08:47.842 2024-02-19 19:08:47.842 1000 FEE 431544 9078 6002768 2024-02-19 19:09:10.981 2024-02-19 19:09:10.981 2100 FEE 430244 9169 6002769 2024-02-19 19:09:10.981 2024-02-19 19:09:10.981 18900 TIP 430244 1740 6002778 2024-02-19 19:09:18.976 2024-02-19 19:09:18.976 2100 FEE 429883 8326 6002004 2024-02-19 18:25:02.609 2024-02-19 18:25:02.609 1000 STREAM 141924 21539 6002026 2024-02-19 18:28:02.612 2024-02-19 18:28:02.612 1000 STREAM 141924 19938 6002041 2024-02-19 18:29:02.62 2024-02-19 18:29:02.62 1000 STREAM 141924 2519 6002099 2024-02-19 18:33:02.664 2024-02-19 18:33:02.664 1000 STREAM 141924 15180 6002174 2024-02-19 18:36:02.673 2024-02-19 18:36:02.673 1000 STREAM 141924 18311 6002250 2024-02-19 18:40:02.67 2024-02-19 18:40:02.67 1000 STREAM 141924 9833 6002252 2024-02-19 18:41:02.697 2024-02-19 18:41:02.697 1000 STREAM 141924 1198 6002278 2024-02-19 18:44:02.723 2024-02-19 18:44:02.723 1000 STREAM 141924 20327 6002293 2024-02-19 18:46:02.805 2024-02-19 18:46:02.805 1000 STREAM 141924 1291 6002298 2024-02-19 18:48:02.738 2024-02-19 18:48:02.738 1000 STREAM 141924 19735 6002325 2024-02-19 18:50:02.756 2024-02-19 18:50:02.756 1000 STREAM 141924 10273 6002340 2024-02-19 18:51:02.738 2024-02-19 18:51:02.738 1000 STREAM 141924 6616 6002351 2024-02-19 18:53:02.769 2024-02-19 18:53:02.769 1000 STREAM 141924 6602 6002359 2024-02-19 18:54:02.758 2024-02-19 18:54:02.758 1000 STREAM 141924 17116 6002371 2024-02-19 18:55:02.759 2024-02-19 18:55:02.759 1000 STREAM 141924 8326 6002417 2024-02-19 18:59:02.78 2024-02-19 18:59:02.78 1000 STREAM 141924 21334 6002502 2024-02-19 19:02:02.803 2024-02-19 19:02:02.803 1000 STREAM 141924 1124 6002522 2024-02-19 19:03:02.795 2024-02-19 19:03:02.795 1000 STREAM 141924 16788 6002549 2024-02-19 19:04:02.826 2024-02-19 19:04:02.826 1000 STREAM 141924 9307 6002685 2024-02-19 19:07:02.862 2024-02-19 19:07:02.862 1000 STREAM 141924 12768 6002723 2024-02-19 19:08:02.837 2024-02-19 19:08:02.837 1000 STREAM 141924 999 6002807 2024-02-19 19:10:02.841 2024-02-19 19:10:02.841 1000 STREAM 141924 20713 6002825 2024-02-19 19:11:02.868 2024-02-19 19:11:02.868 1000 STREAM 141924 919 6002975 2024-02-19 19:15:02.893 2024-02-19 19:15:02.893 1000 STREAM 141924 14195 6003095 2024-02-19 19:21:02.932 2024-02-19 19:21:02.932 1000 STREAM 141924 1122 6003165 2024-02-19 19:24:03.03 2024-02-19 19:24:03.03 1000 STREAM 141924 9906 6003169 2024-02-19 19:26:02.989 2024-02-19 19:26:02.989 1000 STREAM 141924 15491 6003202 2024-02-19 19:28:03.001 2024-02-19 19:28:03.001 1000 STREAM 141924 638 6003437 2024-02-19 19:37:03.074 2024-02-19 19:37:03.074 1000 STREAM 141924 20509 6003507 2024-02-19 19:41:03.098 2024-02-19 19:41:03.098 1000 STREAM 141924 18178 6003536 2024-02-19 19:43:03.081 2024-02-19 19:43:03.081 1000 STREAM 141924 21357 6003557 2024-02-19 19:45:03.104 2024-02-19 19:45:03.104 1000 STREAM 141924 9529 6003610 2024-02-19 19:49:03.104 2024-02-19 19:49:03.104 1000 STREAM 141924 20906 6002039 2024-02-19 18:28:56.82 2024-02-19 18:28:56.82 1000 FEE 431161 20970 6002040 2024-02-19 18:28:56.82 2024-02-19 18:28:56.82 9000 TIP 431161 20180 6002043 2024-02-19 18:29:08.646 2024-02-19 18:29:08.646 1000 FEE 431293 2525 6002044 2024-02-19 18:29:08.646 2024-02-19 18:29:08.646 9000 TIP 431293 2335 6002051 2024-02-19 18:30:50.262 2024-02-19 18:30:50.262 100000 FEE 430030 20588 6002052 2024-02-19 18:30:50.262 2024-02-19 18:30:50.262 900000 TIP 430030 15049 6002061 2024-02-19 18:31:22.801 2024-02-19 18:31:22.801 16600 FEE 430933 3396 6002062 2024-02-19 18:31:22.801 2024-02-19 18:31:22.801 149400 TIP 430933 2640 6002118 2024-02-19 18:33:47.605 2024-02-19 18:33:47.605 1000 FEE 431331 20276 6002147 2024-02-19 18:35:01.302 2024-02-19 18:35:01.302 1000 FEE 431339 1030 6002155 2024-02-19 18:35:20.556 2024-02-19 18:35:20.556 1000 FEE 431346 16042 6002164 2024-02-19 18:35:41.222 2024-02-19 18:35:41.222 1000 FEE 430695 19151 6002165 2024-02-19 18:35:41.222 2024-02-19 18:35:41.222 9000 TIP 430695 4624 6002166 2024-02-19 18:35:42.101 2024-02-19 18:35:42.101 1000 FEE 431353 19471 6002169 2024-02-19 18:35:48.077 2024-02-19 18:35:48.077 1000 FEE 431355 19282 6002175 2024-02-19 18:36:02.816 2024-02-19 18:36:02.816 1000 FEE 431360 14278 6002183 2024-02-19 18:36:20.701 2024-02-19 18:36:20.701 1000 FEE 430721 20084 6002184 2024-02-19 18:36:20.701 2024-02-19 18:36:20.701 9000 TIP 430721 2367 6002200 2024-02-19 18:36:38.75 2024-02-19 18:36:38.75 1000 FEE 431372 919 6002244 2024-02-19 18:38:31.819 2024-02-19 18:38:31.819 10000 DONT_LIKE_THIS 430700 16178 6002248 2024-02-19 18:39:58.145 2024-02-19 18:39:58.145 1000 FEE 430986 9820 6002249 2024-02-19 18:39:58.145 2024-02-19 18:39:58.145 9000 TIP 430986 13399 6002261 2024-02-19 18:42:36.634 2024-02-19 18:42:36.634 1000 FEE 240442 1823 6002262 2024-02-19 18:42:36.634 2024-02-19 18:42:36.634 9000 TIP 240442 21064 6002279 2024-02-19 18:44:25.685 2024-02-19 18:44:25.685 1000 FEE 431388 9166 6002309 2024-02-19 18:49:24.565 2024-02-19 18:49:24.565 1000 FEE 431130 2016 6002310 2024-02-19 18:49:24.565 2024-02-19 18:49:24.565 9000 TIP 431130 959 6002321 2024-02-19 18:49:28.835 2024-02-19 18:49:28.835 1000 FEE 429393 9920 6002322 2024-02-19 18:49:28.835 2024-02-19 18:49:28.835 9000 TIP 429393 16348 6002330 2024-02-19 18:50:19.31 2024-02-19 18:50:19.31 5000 FEE 431144 20871 6002331 2024-02-19 18:50:19.31 2024-02-19 18:50:19.31 45000 TIP 431144 6430 6002357 2024-02-19 18:53:39.885 2024-02-19 18:53:39.885 1000 FEE 431395 12175 6002360 2024-02-19 18:54:19.779 2024-02-19 18:54:19.779 100 FEE 430913 848 6002361 2024-02-19 18:54:19.779 2024-02-19 18:54:19.779 900 TIP 430913 19541 6002362 2024-02-19 18:54:19.92 2024-02-19 18:54:19.92 900 FEE 430913 669 6002363 2024-02-19 18:54:19.92 2024-02-19 18:54:19.92 8100 TIP 430913 11609 6002367 2024-02-19 18:54:48.996 2024-02-19 18:54:48.996 100 FEE 431223 12368 6002368 2024-02-19 18:54:48.996 2024-02-19 18:54:48.996 900 TIP 431223 1261 6002381 2024-02-19 18:55:31.937 2024-02-19 18:55:31.937 900 FEE 431152 6526 6002382 2024-02-19 18:55:31.937 2024-02-19 18:55:31.937 8100 TIP 431152 19815 6002383 2024-02-19 18:55:35.762 2024-02-19 18:55:35.762 100 FEE 431150 866 6002384 2024-02-19 18:55:35.762 2024-02-19 18:55:35.762 900 TIP 431150 718 6002395 2024-02-19 18:57:08.056 2024-02-19 18:57:08.056 1000 FEE 431163 928 6002396 2024-02-19 18:57:08.056 2024-02-19 18:57:08.056 9000 TIP 431163 20701 6002406 2024-02-19 18:57:56.85 2024-02-19 18:57:56.85 0 FEE 431401 9345 6002433 2024-02-19 18:59:44.781 2024-02-19 18:59:44.781 1000 FEE 431420 2674 6002445 2024-02-19 19:00:06.55 2024-02-19 19:00:06.55 1000 FEE 430992 2640 6002446 2024-02-19 19:00:06.55 2024-02-19 19:00:06.55 9000 TIP 430992 21501 6002459 2024-02-19 19:00:36.16 2024-02-19 19:00:36.16 10000 FEE 431432 705 6002460 2024-02-19 19:00:42.114 2024-02-19 19:00:42.114 1000 FEE 431433 2576 6002461 2024-02-19 19:00:44.173 2024-02-19 19:00:44.173 1000 FEE 431434 674 6002466 2024-02-19 19:00:57.994 2024-02-19 19:00:57.994 1000 FEE 431439 18641 6002472 2024-02-19 19:01:05.282 2024-02-19 19:01:05.282 1000 FEE 431442 15488 6002474 2024-02-19 19:01:10.709 2024-02-19 19:01:10.709 1000 FEE 431444 9276 6002475 2024-02-19 19:01:13.046 2024-02-19 19:01:13.046 1000 FEE 431445 18641 6002483 2024-02-19 19:01:23.67 2024-02-19 19:01:23.67 1000 FEE 431449 19640 6002489 2024-02-19 19:01:39.956 2024-02-19 19:01:39.956 1000 FEE 430748 14795 6002490 2024-02-19 19:01:39.956 2024-02-19 19:01:39.956 9000 TIP 430748 9863 6002495 2024-02-19 19:01:53.203 2024-02-19 19:01:53.203 1000 FEE 431459 13133 6002505 2024-02-19 19:02:10.21 2024-02-19 19:02:10.21 1000 FEE 431466 19557 6002517 2024-02-19 19:02:25.672 2024-02-19 19:02:25.672 200 FEE 431363 20110 6002518 2024-02-19 19:02:25.672 2024-02-19 19:02:25.672 1800 TIP 431363 18539 6002519 2024-02-19 19:02:53.121 2024-02-19 19:02:53.121 2500 FEE 429227 2508 6002520 2024-02-19 19:02:53.121 2024-02-19 19:02:53.121 22500 TIP 429227 17064 6002527 2024-02-19 19:03:37.388 2024-02-19 19:03:37.388 10000 FEE 431471 7376 6002530 2024-02-19 19:03:42.024 2024-02-19 19:03:42.024 1000 FEE 431472 8729 6002531 2024-02-19 19:03:43.925 2024-02-19 19:03:43.925 2100 FEE 430619 10102 6002532 2024-02-19 19:03:43.925 2024-02-19 19:03:43.925 18900 TIP 430619 1122 6002535 2024-02-19 19:03:51.402 2024-02-19 19:03:51.402 2100 FEE 429517 7674 6002536 2024-02-19 19:03:51.402 2024-02-19 19:03:51.402 18900 TIP 429517 6515 6002552 2024-02-19 19:04:08.535 2024-02-19 19:04:08.535 1000 FEE 431481 15213 6002574 2024-02-19 19:04:33.671 2024-02-19 19:04:33.671 2100 FEE 430569 16536 6002575 2024-02-19 19:04:33.671 2024-02-19 19:04:33.671 18900 TIP 430569 5377 6002581 2024-02-19 19:04:48.201 2024-02-19 19:04:48.201 2100 FEE 430924 8173 6002582 2024-02-19 19:04:48.201 2024-02-19 19:04:48.201 18900 TIP 430924 19118 6002591 2024-02-19 19:05:02.348 2024-02-19 19:05:02.348 8300 FEE 431401 1602 6002592 2024-02-19 19:05:02.348 2024-02-19 19:05:02.348 74700 TIP 431401 13132 6002593 2024-02-19 19:05:02.468 2024-02-19 19:05:02.468 8300 FEE 431401 21365 6002594 2024-02-19 19:05:02.468 2024-02-19 19:05:02.468 74700 TIP 431401 9365 6002602 2024-02-19 19:05:02.956 2024-02-19 19:05:02.956 8300 FEE 431401 5728 6002603 2024-02-19 19:05:02.956 2024-02-19 19:05:02.956 74700 TIP 431401 20430 6002608 2024-02-19 19:05:03.421 2024-02-19 19:05:03.421 8300 FEE 431401 9348 6002609 2024-02-19 19:05:03.421 2024-02-19 19:05:03.421 74700 TIP 431401 2718 6002624 2024-02-19 19:05:04.469 2024-02-19 19:05:04.469 8300 FEE 431401 659 6002625 2024-02-19 19:05:04.469 2024-02-19 19:05:04.469 74700 TIP 431401 18984 6002626 2024-02-19 19:05:04.603 2024-02-19 19:05:04.603 8300 FEE 431401 687 6002627 2024-02-19 19:05:04.603 2024-02-19 19:05:04.603 74700 TIP 431401 7899 6002634 2024-02-19 19:05:04.992 2024-02-19 19:05:04.992 8300 FEE 431401 9421 6002635 2024-02-19 19:05:04.992 2024-02-19 19:05:04.992 74700 TIP 431401 20198 6002638 2024-02-19 19:05:05.348 2024-02-19 19:05:05.348 8300 FEE 431401 19952 6002639 2024-02-19 19:05:05.348 2024-02-19 19:05:05.348 74700 TIP 431401 18306 6002640 2024-02-19 19:05:05.435 2024-02-19 19:05:05.435 2100 FEE 430795 6533 6002641 2024-02-19 19:05:05.435 2024-02-19 19:05:05.435 18900 TIP 430795 19732 6002686 2024-02-19 19:07:03.794 2024-02-19 19:07:03.794 1000 FEE 431509 20433 6002696 2024-02-19 19:07:24.604 2024-02-19 19:07:24.604 900 FEE 367984 20970 6002697 2024-02-19 19:07:24.604 2024-02-19 19:07:24.604 8100 TIP 367984 2156 6002700 2024-02-19 19:07:27.7 2024-02-19 19:07:27.7 2100 FEE 430453 17570 6002701 2024-02-19 19:07:27.7 2024-02-19 19:07:27.7 18900 TIP 430453 2734 6002722 2024-02-19 19:08:02.753 2024-02-19 19:08:02.753 1000 FEE 431528 13143 6002724 2024-02-19 19:08:09.084 2024-02-19 19:08:09.084 1000 FEE 431529 12483 6002750 2024-02-19 19:08:35.427 2024-02-19 19:08:35.427 1000 FEE 431538 15617 6002762 2024-02-19 19:08:59.005 2024-02-19 19:08:59.005 1000 FEE 431548 21342 6002787 2024-02-19 19:09:23.887 2024-02-19 19:09:23.887 1000 FEE 431550 6229 6002820 2024-02-19 19:10:55.6 2024-02-19 19:10:55.6 400 FEE 431285 837 6002821 2024-02-19 19:10:55.6 2024-02-19 19:10:55.6 3600 TIP 431285 2776 6002824 2024-02-19 19:11:00.779 2024-02-19 19:11:00.779 1000 FEE 431564 989 6002826 2024-02-19 19:11:12.235 2024-02-19 19:11:12.235 1000 FEE 430460 21361 6002149 2024-02-19 18:35:03.938 2024-02-19 18:35:03.938 1000 FEE 431340 6260 6002173 2024-02-19 18:35:59.98 2024-02-19 18:35:59.98 1000 FEE 431359 20623 6002180 2024-02-19 18:36:14.826 2024-02-19 18:36:14.826 1000 FEE 431364 1729 6002191 2024-02-19 18:36:27.981 2024-02-19 18:36:27.981 1000 FEE 431369 13398 6002199 2024-02-19 18:36:35.282 2024-02-19 18:36:35.282 1000 FEE 431371 3213 6002210 2024-02-19 18:36:48.777 2024-02-19 18:36:48.777 1000 FEE 431376 11866 6002225 2024-02-19 18:37:36.93 2024-02-19 18:37:36.93 1000 FEE 430943 11153 6002226 2024-02-19 18:37:36.93 2024-02-19 18:37:36.93 9000 TIP 430943 15890 6002259 2024-02-19 18:42:27.344 2024-02-19 18:42:27.344 1000 FEE 431276 9109 6002260 2024-02-19 18:42:27.344 2024-02-19 18:42:27.344 9000 TIP 431276 18040 6002272 2024-02-19 18:43:26.701 2024-02-19 18:43:26.701 1000 FEE 431150 21249 6002273 2024-02-19 18:43:26.701 2024-02-19 18:43:26.701 9000 TIP 431150 20490 6002366 2024-02-19 18:54:33.139 2024-02-19 18:54:33.139 1000 FEE 431397 4831 6002373 2024-02-19 18:55:17.202 2024-02-19 18:55:17.202 100 FEE 431389 4831 6002374 2024-02-19 18:55:17.202 2024-02-19 18:55:17.202 900 TIP 431389 6749 6002375 2024-02-19 18:55:17.367 2024-02-19 18:55:17.367 900 FEE 431389 9916 6002376 2024-02-19 18:55:17.367 2024-02-19 18:55:17.367 8100 TIP 431389 18989 6002379 2024-02-19 18:55:31.245 2024-02-19 18:55:31.245 100 FEE 431152 20647 6002380 2024-02-19 18:55:31.245 2024-02-19 18:55:31.245 900 TIP 431152 21463 6002402 2024-02-19 18:57:37.632 2024-02-19 18:57:37.632 1000 FEE 431402 20841 6002411 2024-02-19 18:58:28.251 2024-02-19 18:58:28.251 1000 FEE 431409 18460 6002418 2024-02-19 18:59:06.375 2024-02-19 18:59:06.375 1000 FEE 431411 21588 6002437 2024-02-19 18:59:52.911 2024-02-19 18:59:52.911 1000 FEE 430990 21393 6002438 2024-02-19 18:59:52.911 2024-02-19 18:59:52.911 9000 TIP 430990 9276 6002451 2024-02-19 19:00:23.347 2024-02-19 19:00:23.347 1000 FEE 431428 21239 6002453 2024-02-19 19:00:30.429 2024-02-19 19:00:30.429 1000 FEE 431430 20573 6002467 2024-02-19 19:01:00.315 2024-02-19 19:01:00.315 1000 FEE 431440 9275 6002504 2024-02-19 19:02:07.625 2024-02-19 19:02:07.625 1000 FEE 431465 16432 6002515 2024-02-19 19:02:14.142 2024-02-19 19:02:14.142 1000 FEE 431400 12930 6002516 2024-02-19 19:02:14.142 2024-02-19 19:02:14.142 9000 TIP 431400 20198 6002521 2024-02-19 19:02:57.971 2024-02-19 19:02:57.971 1000 FEE 431468 14857 6002523 2024-02-19 19:03:30.069 2024-02-19 19:03:30.069 1000 FEE 431469 6149 6002538 2024-02-19 19:03:55.255 2024-02-19 19:03:55.255 1000 FEE 431476 19199 6002561 2024-02-19 19:04:11.652 2024-02-19 19:04:11.652 2100 FEE 430597 19030 6002562 2024-02-19 19:04:11.652 2024-02-19 19:04:11.652 18900 TIP 430597 667 6002576 2024-02-19 19:04:34.253 2024-02-19 19:04:34.253 2100 FEE 430569 630 6002577 2024-02-19 19:04:34.253 2024-02-19 19:04:34.253 18900 TIP 430569 11996 6002600 2024-02-19 19:05:02.848 2024-02-19 19:05:02.848 8300 FEE 431401 18830 6002601 2024-02-19 19:05:02.848 2024-02-19 19:05:02.848 74700 TIP 431401 12946 6002616 2024-02-19 19:05:04.067 2024-02-19 19:05:04.067 8300 FEE 431401 13544 6002617 2024-02-19 19:05:04.067 2024-02-19 19:05:04.067 74700 TIP 431401 6384 6002628 2024-02-19 19:05:04.738 2024-02-19 19:05:04.738 8300 FEE 431401 3656 6002629 2024-02-19 19:05:04.738 2024-02-19 19:05:04.738 74700 TIP 431401 3456 6002644 2024-02-19 19:05:15.743 2024-02-19 19:05:15.743 2100 FEE 430453 1094 6002645 2024-02-19 19:05:15.743 2024-02-19 19:05:15.743 18900 TIP 430453 8506 6002646 2024-02-19 19:05:16.36 2024-02-19 19:05:16.36 2100 FEE 430453 18994 6002647 2024-02-19 19:05:16.36 2024-02-19 19:05:16.36 18900 TIP 430453 15491 6002653 2024-02-19 19:05:30.096 2024-02-19 19:05:30.096 4000 FEE 431080 17064 6002654 2024-02-19 19:05:30.096 2024-02-19 19:05:30.096 36000 TIP 431080 7425 6002670 2024-02-19 19:05:56.613 2024-02-19 19:05:56.613 1000 FEE 431501 11192 6002679 2024-02-19 19:06:12.662 2024-02-19 19:06:12.662 1000 FEE 431507 21541 6002680 2024-02-19 19:06:44.657 2024-02-19 19:06:44.657 1000 FEE 430879 20687 6002681 2024-02-19 19:06:44.657 2024-02-19 19:06:44.657 9000 TIP 430879 19553 6002684 2024-02-19 19:06:58.792 2024-02-19 19:06:58.792 1000 FEE 431508 20162 6002695 2024-02-19 19:07:24.492 2024-02-19 19:07:24.492 1000 FEE 431516 17984 6002714 2024-02-19 19:07:49.811 2024-02-19 19:07:49.811 1000 FEE 431523 18658 6002719 2024-02-19 19:07:59.173 2024-02-19 19:07:59.173 1000 FEE 431526 21352 6002727 2024-02-19 19:08:18.603 2024-02-19 19:08:18.603 1000 FEE 431532 18896 6002732 2024-02-19 19:08:22.283 2024-02-19 19:08:22.283 2100 FEE 430524 20287 6002733 2024-02-19 19:08:22.283 2024-02-19 19:08:22.283 18900 TIP 430524 21044 6002736 2024-02-19 19:08:23.301 2024-02-19 19:08:23.301 2100 FEE 430524 17541 6002737 2024-02-19 19:08:23.301 2024-02-19 19:08:23.301 18900 TIP 430524 3342 6002739 2024-02-19 19:08:23.934 2024-02-19 19:08:23.934 2100 FEE 430524 14213 6002740 2024-02-19 19:08:23.934 2024-02-19 19:08:23.934 18900 TIP 430524 20066 6002746 2024-02-19 19:08:28.034 2024-02-19 19:08:28.034 2100 FEE 430575 20073 6002747 2024-02-19 19:08:28.034 2024-02-19 19:08:28.034 18900 TIP 430575 21218 6002752 2024-02-19 19:08:38.505 2024-02-19 19:08:38.505 1000 FEE 431540 18269 6002755 2024-02-19 19:08:40.987 2024-02-19 19:08:40.987 1000 FEE 431541 861 6002791 2024-02-19 19:09:29.397 2024-02-19 19:09:29.397 1000 FEE 431552 19501 6002792 2024-02-19 19:09:32.27 2024-02-19 19:09:32.27 1000 FEE 431553 10693 6002793 2024-02-19 19:09:34.595 2024-02-19 19:09:34.595 1000 FEE 431554 19806 6002800 2024-02-19 19:09:45.314 2024-02-19 19:09:45.314 1000 FEE 431558 20185 6002828 2024-02-19 19:11:26.441 2024-02-19 19:11:26.441 2100 FEE 431187 5195 6002829 2024-02-19 19:11:26.441 2024-02-19 19:11:26.441 18900 TIP 431187 3456 6002854 2024-02-19 19:12:44.919 2024-02-19 19:12:44.919 2100 FEE 430755 20751 6002855 2024-02-19 19:12:44.919 2024-02-19 19:12:44.919 18900 TIP 430755 2620 6002870 2024-02-19 19:12:49.604 2024-02-19 19:12:49.604 2100 FEE 430755 17217 6002871 2024-02-19 19:12:49.604 2024-02-19 19:12:49.604 18900 TIP 430755 4388 6002876 2024-02-19 19:12:50.63 2024-02-19 19:12:50.63 2100 FEE 430755 1175 6002877 2024-02-19 19:12:50.63 2024-02-19 19:12:50.63 18900 TIP 430755 9844 6002880 2024-02-19 19:12:52.131 2024-02-19 19:12:52.131 10000 FEE 431568 861 6002895 2024-02-19 19:13:05.113 2024-02-19 19:13:05.113 2100 FEE 430918 15762 6002896 2024-02-19 19:13:05.113 2024-02-19 19:13:05.113 18900 TIP 430918 19864 6002899 2024-02-19 19:13:11.128 2024-02-19 19:13:11.128 2100 FEE 430986 697 6002900 2024-02-19 19:13:11.128 2024-02-19 19:13:11.128 18900 TIP 430986 21281 6002919 2024-02-19 19:13:54.382 2024-02-19 19:13:54.382 2100 FEE 430779 19770 6002920 2024-02-19 19:13:54.382 2024-02-19 19:13:54.382 18900 TIP 430779 6515 6002925 2024-02-19 19:14:01.813 2024-02-19 19:14:01.813 4200 FEE 430789 9150 6002926 2024-02-19 19:14:01.813 2024-02-19 19:14:01.813 37800 TIP 430789 21062 6002930 2024-02-19 19:14:04.502 2024-02-19 19:14:04.502 2100 FEE 430790 18667 6002931 2024-02-19 19:14:04.502 2024-02-19 19:14:04.502 18900 TIP 430790 11430 6002964 2024-02-19 19:14:32.825 2024-02-19 19:14:32.825 4200 FEE 430635 16341 6002965 2024-02-19 19:14:32.825 2024-02-19 19:14:32.825 37800 TIP 430635 640 6002995 2024-02-19 19:15:29.229 2024-02-19 19:15:29.229 2100 FEE 430931 16230 6002996 2024-02-19 19:15:29.229 2024-02-19 19:15:29.229 18900 TIP 430931 19987 6003001 2024-02-19 19:15:34.835 2024-02-19 19:15:34.835 1000 FEE 431572 16505 6003036 2024-02-19 19:18:12.013 2024-02-19 19:18:12.013 1000 FEE 431578 18690 6003058 2024-02-19 19:18:39.15 2024-02-19 19:18:39.15 8300 FEE 430710 1802 6003059 2024-02-19 19:18:39.15 2024-02-19 19:18:39.15 74700 TIP 430710 7903 6003062 2024-02-19 19:18:39.38 2024-02-19 19:18:39.38 8300 FEE 430710 13246 6003063 2024-02-19 19:18:39.38 2024-02-19 19:18:39.38 74700 TIP 430710 4624 6003064 2024-02-19 19:18:40.303 2024-02-19 19:18:40.303 1000 FEE 431588 10728 6003104 2024-02-19 19:21:26.367 2024-02-19 19:21:26.367 8300 FEE 430663 21453 6003105 2024-02-19 19:21:26.367 2024-02-19 19:21:26.367 74700 TIP 430663 2437 6003130 2024-02-19 19:22:35.615 2024-02-19 19:22:35.615 8300 FEE 430775 21063 6003131 2024-02-19 19:22:35.615 2024-02-19 19:22:35.615 74700 TIP 430775 11515 6003134 2024-02-19 19:22:36.311 2024-02-19 19:22:36.311 8300 FEE 430775 16754 6002152 2024-02-19 18:35:10.227 2024-02-19 18:35:10.227 1000 FEE 431343 616 6002177 2024-02-19 18:36:05.415 2024-02-19 18:36:05.415 1000 FEE 431361 7119 6002179 2024-02-19 18:36:11.144 2024-02-19 18:36:11.144 1000 FEE 431363 992 6002181 2024-02-19 18:36:17.444 2024-02-19 18:36:17.444 1000 FEE 431365 16988 6002190 2024-02-19 18:36:24.797 2024-02-19 18:36:24.797 1000 FEE 431368 21422 6002204 2024-02-19 18:36:42.436 2024-02-19 18:36:42.436 1000 FEE 430762 825 6002205 2024-02-19 18:36:42.436 2024-02-19 18:36:42.436 9000 TIP 430762 16948 6002220 2024-02-19 18:37:15.795 2024-02-19 18:37:15.795 1000 FEE 430677 20892 6002221 2024-02-19 18:37:15.795 2024-02-19 18:37:15.795 9000 TIP 430677 21563 6002227 2024-02-19 18:37:37.544 2024-02-19 18:37:37.544 1000 FEE 430943 19463 6002228 2024-02-19 18:37:37.544 2024-02-19 18:37:37.544 9000 TIP 430943 20669 6002239 2024-02-19 18:38:13.672 2024-02-19 18:38:13.672 1000 FEE 431379 7654 6002256 2024-02-19 18:42:11.457 2024-02-19 18:42:11.457 1000 FEE 431383 9816 6002266 2024-02-19 18:42:46.573 2024-02-19 18:42:46.573 2100 FEE 431294 18932 6002267 2024-02-19 18:42:46.573 2024-02-19 18:42:46.573 18900 TIP 431294 13198 6002277 2024-02-19 18:43:45.38 2024-02-19 18:43:45.38 10000 FEE 431387 717 6002283 2024-02-19 18:45:04.216 2024-02-19 18:45:04.216 1000 FEE 431389 21446 6002285 2024-02-19 18:45:36.43 2024-02-19 18:45:36.43 2100 FEE 431290 17517 6002286 2024-02-19 18:45:36.43 2024-02-19 18:45:36.43 18900 TIP 431290 2703 6002289 2024-02-19 18:45:39.316 2024-02-19 18:45:39.316 2100 FEE 431187 20642 6002290 2024-02-19 18:45:39.316 2024-02-19 18:45:39.316 18900 TIP 431187 16124 6002296 2024-02-19 18:47:16.267 2024-02-19 18:47:16.267 1000 FEE 430892 18101 6002297 2024-02-19 18:47:16.267 2024-02-19 18:47:16.267 9000 TIP 430892 17638 6002300 2024-02-19 18:48:20.46 2024-02-19 18:48:20.46 10000 FEE 431390 19839 6002301 2024-02-19 18:48:20.46 2024-02-19 18:48:20.46 90000 TIP 431390 21527 6002311 2024-02-19 18:49:25.851 2024-02-19 18:49:25.851 1000 FEE 430326 20969 6002312 2024-02-19 18:49:25.851 2024-02-19 18:49:25.851 9000 TIP 430326 21455 6002341 2024-02-19 18:51:18.805 2024-02-19 18:51:18.805 2000 FEE 430920 1454 6002342 2024-02-19 18:51:18.805 2024-02-19 18:51:18.805 18000 TIP 430920 20481 6002350 2024-02-19 18:53:00.749 2024-02-19 18:53:00.749 1000 FEE 431394 10638 6002364 2024-02-19 18:54:23.486 2024-02-19 18:54:23.486 1000 FEE 430892 17291 6002365 2024-02-19 18:54:23.486 2024-02-19 18:54:23.486 9000 TIP 430892 21369 6002372 2024-02-19 18:55:12.344 2024-02-19 18:55:12.344 1000 FEE 431398 16680 6002385 2024-02-19 18:55:35.91 2024-02-19 18:55:35.91 900 FEE 431150 1474 6002386 2024-02-19 18:55:35.91 2024-02-19 18:55:35.91 8100 TIP 431150 6164 6002414 2024-02-19 18:58:44.427 2024-02-19 18:58:44.427 2100 FEE 431223 17682 6002415 2024-02-19 18:58:44.427 2024-02-19 18:58:44.427 18900 TIP 431223 20182 6002424 2024-02-19 18:59:25.923 2024-02-19 18:59:25.923 1000 FEE 431415 725 6002441 2024-02-19 18:59:54.759 2024-02-19 18:59:54.759 1000 FEE 430990 13782 6002442 2024-02-19 18:59:54.759 2024-02-19 18:59:54.759 9000 TIP 430990 8541 6002448 2024-02-19 19:00:20.729 2024-02-19 19:00:20.729 1000 FEE 431427 9261 6002449 2024-02-19 19:00:23.073 2024-02-19 19:00:23.073 1000 FEE 430970 18368 6002450 2024-02-19 19:00:23.073 2024-02-19 19:00:23.073 9000 TIP 430970 19449 6002454 2024-02-19 19:00:31.862 2024-02-19 19:00:31.862 1000 FEE 430949 1478 6002455 2024-02-19 19:00:31.862 2024-02-19 19:00:31.862 9000 TIP 430949 2256 6002464 2024-02-19 19:00:52.742 2024-02-19 19:00:52.742 1000 FEE 431437 4314 6002468 2024-02-19 19:01:02.72 2024-02-19 19:01:02.72 1000 FEE 431441 20901 6002477 2024-02-19 19:01:18.235 2024-02-19 19:01:18.235 1000 FEE 431447 19126 6002481 2024-02-19 19:01:21.184 2024-02-19 19:01:21.184 1000 FEE 430726 15521 6002482 2024-02-19 19:01:21.184 2024-02-19 19:01:21.184 9000 TIP 430726 11477 6002488 2024-02-19 19:01:37.53 2024-02-19 19:01:37.53 10000 FEE 431454 9167 6002492 2024-02-19 19:01:44.072 2024-02-19 19:01:44.072 1000 FEE 431456 8173 6002501 2024-02-19 19:02:02.409 2024-02-19 19:02:02.409 1000 FEE 431463 19961 6002511 2024-02-19 19:02:12.99 2024-02-19 19:02:12.99 1000 FEE 431400 18511 6002512 2024-02-19 19:02:12.99 2024-02-19 19:02:12.99 9000 TIP 431400 9517 6002513 2024-02-19 19:02:13.364 2024-02-19 19:02:13.364 1000 FEE 431400 18618 6002514 2024-02-19 19:02:13.364 2024-02-19 19:02:13.364 9000 TIP 431400 633 6002525 2024-02-19 19:03:35.177 2024-02-19 19:03:35.177 4200 FEE 430892 10016 6002526 2024-02-19 19:03:35.177 2024-02-19 19:03:35.177 37800 TIP 430892 2460 6002534 2024-02-19 19:03:48.75 2024-02-19 19:03:48.75 1000 FEE 431474 14280 6002539 2024-02-19 19:03:57.593 2024-02-19 19:03:57.593 2100 FEE 430953 1806 6002540 2024-02-19 19:03:57.593 2024-02-19 19:03:57.593 18900 TIP 430953 18828 6002553 2024-02-19 19:04:09.283 2024-02-19 19:04:09.283 1000 FEE 430845 20581 6002554 2024-02-19 19:04:09.283 2024-02-19 19:04:09.283 9000 TIP 430845 6421 6002564 2024-02-19 19:04:14.745 2024-02-19 19:04:14.745 1000 FEE 431483 17514 6002568 2024-02-19 19:04:20.466 2024-02-19 19:04:20.466 1000 FEE 431485 2844 6002570 2024-02-19 19:04:29.7 2024-02-19 19:04:29.7 400 FEE 431469 9330 6002571 2024-02-19 19:04:29.7 2024-02-19 19:04:29.7 3600 TIP 431469 16667 6002606 2024-02-19 19:05:03.383 2024-02-19 19:05:03.383 8300 FEE 431401 720 6002607 2024-02-19 19:05:03.383 2024-02-19 19:05:03.383 74700 TIP 431401 21379 6002612 2024-02-19 19:05:03.725 2024-02-19 19:05:03.725 2100 FEE 430795 17316 6002613 2024-02-19 19:05:03.725 2024-02-19 19:05:03.725 18900 TIP 430795 18452 6002618 2024-02-19 19:05:04.128 2024-02-19 19:05:04.128 8300 FEE 431401 814 6002619 2024-02-19 19:05:04.128 2024-02-19 19:05:04.128 74700 TIP 431401 766 6002650 2024-02-19 19:05:18.093 2024-02-19 19:05:18.093 1000 FEE 431488 16747 6002666 2024-02-19 19:05:45.828 2024-02-19 19:05:45.828 1000 FEE 431497 13575 6002674 2024-02-19 19:06:03.894 2024-02-19 19:06:03.894 1000 FEE 431504 20751 6002689 2024-02-19 19:07:12.151 2024-02-19 19:07:12.151 1000 FEE 431512 6164 6002690 2024-02-19 19:07:16.336 2024-02-19 19:07:16.336 1000 FEE 431513 19105 6002691 2024-02-19 19:07:19.581 2024-02-19 19:07:19.581 1000 FEE 431514 16653 6002692 2024-02-19 19:07:22.002 2024-02-19 19:07:22.002 1000 FEE 431515 18583 6002698 2024-02-19 19:07:27.51 2024-02-19 19:07:27.51 2100 FEE 430453 5809 6002699 2024-02-19 19:07:27.51 2024-02-19 19:07:27.51 18900 TIP 430453 694 6002707 2024-02-19 19:07:30.71 2024-02-19 19:07:30.71 1000 FEE 431518 21238 6002712 2024-02-19 19:07:41.246 2024-02-19 19:07:41.246 1000 FEE 431521 2232 6002738 2024-02-19 19:08:23.876 2024-02-19 19:08:23.876 1000 FEE 431534 16176 6002748 2024-02-19 19:08:30.614 2024-02-19 19:08:30.614 1000 FEE 431536 20636 6002774 2024-02-19 19:09:15.163 2024-02-19 19:09:15.163 4200 FEE 430241 19044 6002775 2024-02-19 19:09:15.163 2024-02-19 19:09:15.163 37800 TIP 430241 19105 6002776 2024-02-19 19:09:15.709 2024-02-19 19:09:15.709 4200 FEE 430241 624 6002777 2024-02-19 19:09:15.709 2024-02-19 19:09:15.709 37800 TIP 430241 6384 6002789 2024-02-19 19:09:27.424 2024-02-19 19:09:27.424 2100 FEE 428593 5758 6002790 2024-02-19 19:09:27.424 2024-02-19 19:09:27.424 18900 TIP 428593 4474 6002804 2024-02-19 19:09:55.412 2024-02-19 19:09:55.412 1000 FEE 431562 21352 6002808 2024-02-19 19:10:22.668 2024-02-19 19:10:22.668 0 FEE 431538 19484 6002837 2024-02-19 19:12:15.769 2024-02-19 19:12:15.769 2100 FEE 430607 2123 6002838 2024-02-19 19:12:15.769 2024-02-19 19:12:15.769 18900 TIP 430607 21522 6002841 2024-02-19 19:12:29.921 2024-02-19 19:12:29.921 2100 FEE 430755 889 6002842 2024-02-19 19:12:29.921 2024-02-19 19:12:29.921 18900 TIP 430755 663 6002843 2024-02-19 19:12:30.787 2024-02-19 19:12:30.787 1000 FEE 431565 5128 6002844 2024-02-19 19:12:31.096 2024-02-19 19:12:31.096 4200 FEE 430755 10608 6002845 2024-02-19 19:12:31.096 2024-02-19 19:12:31.096 37800 TIP 430755 20854 6002865 2024-02-19 19:12:49.124 2024-02-19 19:12:49.124 2100 FEE 430755 19967 6002866 2024-02-19 19:12:49.124 2024-02-19 19:12:49.124 18900 TIP 430755 9367 6002901 2024-02-19 19:13:11.538 2024-02-19 19:13:11.538 2100 FEE 430986 987 6002902 2024-02-19 19:13:11.538 2024-02-19 19:13:11.538 18900 TIP 430986 20687 6002914 2024-02-19 19:13:27.095 2024-02-19 19:13:27.095 1000 FEE 431243 21164 6002347 2024-02-19 18:52:02.886 2024-02-19 18:52:02.886 1000 STREAM 141924 1772 6002458 2024-02-19 19:00:33.534 2024-02-19 19:00:33.534 9000 TIP 430949 644 6002471 2024-02-19 19:01:05.199 2024-02-19 19:01:05.199 1000 STREAM 141924 19375 6002484 2024-02-19 19:01:26.656 2024-02-19 19:01:26.656 1000 FEE 431450 15161 6002486 2024-02-19 19:01:32.211 2024-02-19 19:01:32.211 1000 FEE 431452 11862 6002499 2024-02-19 19:02:02.376 2024-02-19 19:02:02.376 1000 FEE 430824 4238 6002500 2024-02-19 19:02:02.376 2024-02-19 19:02:02.376 9000 TIP 430824 12289 6002506 2024-02-19 19:02:11.983 2024-02-19 19:02:11.983 1000 FEE 431400 19243 6002507 2024-02-19 19:02:11.983 2024-02-19 19:02:11.983 9000 TIP 431400 9969 6002508 2024-02-19 19:02:12.552 2024-02-19 19:02:12.552 1000 FEE 431400 1038 6002509 2024-02-19 19:02:12.552 2024-02-19 19:02:12.552 9000 TIP 431400 6383 6002542 2024-02-19 19:04:00.394 2024-02-19 19:04:00.394 2100 FEE 430507 5387 6002543 2024-02-19 19:04:00.394 2024-02-19 19:04:00.394 18900 TIP 430507 19016 6002550 2024-02-19 19:04:03.415 2024-02-19 19:04:03.415 1000 FEE 431479 19854 6002551 2024-02-19 19:04:05.616 2024-02-19 19:04:05.616 1000 FEE 431480 18904 6002622 2024-02-19 19:05:04.448 2024-02-19 19:05:04.448 8300 FEE 431401 8459 6002623 2024-02-19 19:05:04.448 2024-02-19 19:05:04.448 74700 TIP 431401 14650 6002632 2024-02-19 19:05:04.925 2024-02-19 19:05:04.925 8300 FEE 431401 9366 6002633 2024-02-19 19:05:04.925 2024-02-19 19:05:04.925 74700 TIP 431401 19886 6002636 2024-02-19 19:05:05.128 2024-02-19 19:05:05.128 8300 FEE 431401 1135 6002637 2024-02-19 19:05:05.128 2024-02-19 19:05:05.128 74700 TIP 431401 2327 6002651 2024-02-19 19:05:25.712 2024-02-19 19:05:25.712 1000 FEE 431489 1585 6002671 2024-02-19 19:05:59.054 2024-02-19 19:05:59.054 1000 FEE 431502 1286 6002687 2024-02-19 19:07:06.642 2024-02-19 19:07:06.642 1000 FEE 431510 7877 6002702 2024-02-19 19:07:27.977 2024-02-19 19:07:27.977 2100 FEE 430453 12222 6002703 2024-02-19 19:07:27.977 2024-02-19 19:07:27.977 18900 TIP 430453 1213 6002705 2024-02-19 19:07:29.79 2024-02-19 19:07:29.79 2100 FEE 430453 20745 6002706 2024-02-19 19:07:29.79 2024-02-19 19:07:29.79 18900 TIP 430453 17722 6002711 2024-02-19 19:07:37.547 2024-02-19 19:07:37.547 1000 FEE 431520 27 6002716 2024-02-19 19:07:54.568 2024-02-19 19:07:54.568 100000 FEE 431525 4076 6002734 2024-02-19 19:08:22.78 2024-02-19 19:08:22.78 2100 FEE 430524 19995 6002735 2024-02-19 19:08:22.78 2024-02-19 19:08:22.78 18900 TIP 430524 2961 6002764 2024-02-19 19:09:03.235 2024-02-19 19:09:03.235 1000 FEE 430496 959 6002765 2024-02-19 19:09:03.235 2024-02-19 19:09:03.235 9000 TIP 430496 5701 6002770 2024-02-19 19:09:11.654 2024-02-19 19:09:11.654 2100 FEE 430244 1478 6002771 2024-02-19 19:09:11.654 2024-02-19 19:09:11.654 18900 TIP 430244 1030 6002794 2024-02-19 19:09:36.78 2024-02-19 19:09:36.78 1000 FEE 430582 9916 6002795 2024-02-19 19:09:36.78 2024-02-19 19:09:36.78 9000 TIP 430582 20470 6002846 2024-02-19 19:12:31.382 2024-02-19 19:12:31.382 2100 FEE 430755 21159 6002847 2024-02-19 19:12:31.382 2024-02-19 19:12:31.382 18900 TIP 430755 3360 6002859 2024-02-19 19:12:46.413 2024-02-19 19:12:46.413 2100 FEE 430755 11942 6002860 2024-02-19 19:12:46.413 2024-02-19 19:12:46.413 18900 TIP 430755 657 6002867 2024-02-19 19:12:49.384 2024-02-19 19:12:49.384 2100 FEE 430755 20581 6002868 2024-02-19 19:12:49.384 2024-02-19 19:12:49.384 18900 TIP 430755 1624 6002884 2024-02-19 19:13:03.795 2024-02-19 19:13:03.795 1000 STREAM 141924 19996 6002897 2024-02-19 19:13:05.484 2024-02-19 19:13:05.484 2100 FEE 430918 759 6002898 2024-02-19 19:13:05.484 2024-02-19 19:13:05.484 18900 TIP 430918 19346 6002903 2024-02-19 19:13:11.964 2024-02-19 19:13:11.964 4200 FEE 430986 16456 6002904 2024-02-19 19:13:11.964 2024-02-19 19:13:11.964 37800 TIP 430986 12346 6002909 2024-02-19 19:13:14.176 2024-02-19 19:13:14.176 2100 FEE 430892 19292 6002910 2024-02-19 19:13:14.176 2024-02-19 19:13:14.176 18900 TIP 430892 19810 6002934 2024-02-19 19:14:05.631 2024-02-19 19:14:05.631 2100 FEE 430790 5500 6002935 2024-02-19 19:14:05.631 2024-02-19 19:14:05.631 18900 TIP 430790 16842 6002946 2024-02-19 19:14:16.737 2024-02-19 19:14:16.737 3300 FEE 431383 20680 6002947 2024-02-19 19:14:16.737 2024-02-19 19:14:16.737 29700 TIP 431383 5444 6002950 2024-02-19 19:14:20.474 2024-02-19 19:14:20.474 2100 FEE 430960 19976 6002951 2024-02-19 19:14:20.474 2024-02-19 19:14:20.474 18900 TIP 430960 9167 6002962 2024-02-19 19:14:31.719 2024-02-19 19:14:31.719 6300 FEE 430635 21547 6002963 2024-02-19 19:14:31.719 2024-02-19 19:14:31.719 56700 TIP 430635 1488 6002966 2024-02-19 19:14:42.913 2024-02-19 19:14:42.913 100000 DONT_LIKE_THIS 431568 21269 6002978 2024-02-19 19:15:05.152 2024-02-19 19:15:05.152 2100 FEE 430674 676 6002979 2024-02-19 19:15:05.152 2024-02-19 19:15:05.152 18900 TIP 430674 2065 6002983 2024-02-19 19:15:19.928 2024-02-19 19:15:19.928 2100 FEE 430863 19005 6002984 2024-02-19 19:15:19.928 2024-02-19 19:15:19.928 18900 TIP 430863 5128 6003030 2024-02-19 19:17:21.188 2024-02-19 19:17:21.188 9000 FEE 431401 1208 6003031 2024-02-19 19:17:21.188 2024-02-19 19:17:21.188 81000 TIP 431401 16858 6003032 2024-02-19 19:18:01.441 2024-02-19 19:18:01.441 1000 FEE 431575 21588 6003035 2024-02-19 19:18:07.099 2024-02-19 19:18:07.099 1000 FEE 431577 910 6003070 2024-02-19 19:19:33.296 2024-02-19 19:19:33.296 8300 FEE 430758 3417 6003071 2024-02-19 19:19:33.296 2024-02-19 19:19:33.296 74700 TIP 430758 4079 6003076 2024-02-19 19:19:33.874 2024-02-19 19:19:33.874 8300 FEE 430758 21079 6003077 2024-02-19 19:19:33.874 2024-02-19 19:19:33.874 74700 TIP 430758 21503 6003087 2024-02-19 19:20:39.615 2024-02-19 19:20:39.615 1000 FEE 430601 21356 6003088 2024-02-19 19:20:39.615 2024-02-19 19:20:39.615 9000 TIP 430601 21040 6003111 2024-02-19 19:22:13.044 2024-02-19 19:22:13.044 1000 FEE 431592 17014 6003146 2024-02-19 19:22:40.016 2024-02-19 19:22:40.016 1000 FEE 430952 18372 6003147 2024-02-19 19:22:40.016 2024-02-19 19:22:40.016 9000 TIP 430952 5775 6003245 2024-02-19 19:30:03.97 2024-02-19 19:30:03.97 1000 STREAM 141924 964 6003369 2024-02-19 19:35:03.985 2024-02-19 19:35:03.985 1000 STREAM 141924 21157 6002648 2024-02-19 19:05:16.922 2024-02-19 19:05:16.922 2100 FEE 430453 6136 6002649 2024-02-19 19:05:16.922 2024-02-19 19:05:16.922 18900 TIP 430453 959 6002656 2024-02-19 19:05:32.789 2024-02-19 19:05:32.789 36000 FEE 431080 17638 6002657 2024-02-19 19:05:32.789 2024-02-19 19:05:32.789 324000 TIP 431080 20133 6002663 2024-02-19 19:05:41.073 2024-02-19 19:05:41.073 1000 FEE 431495 2709 6002682 2024-02-19 19:06:45.705 2024-02-19 19:06:45.705 4200 FEE 430453 7746 6002683 2024-02-19 19:06:45.705 2024-02-19 19:06:45.705 37800 TIP 430453 20511 6002728 2024-02-19 19:08:18.945 2024-02-19 19:08:18.945 1000 POLL 430524 2444 6002749 2024-02-19 19:08:33.3 2024-02-19 19:08:33.3 1000 FEE 431537 715 6002751 2024-02-19 19:08:36.07 2024-02-19 19:08:36.07 1000 FEE 431539 19907 6002756 2024-02-19 19:08:43.474 2024-02-19 19:08:43.474 1000 FEE 431542 10270 6002760 2024-02-19 19:08:53.982 2024-02-19 19:08:53.982 1000 FEE 431546 859 6002761 2024-02-19 19:08:56.712 2024-02-19 19:08:56.712 1000 FEE 431547 17817 6002772 2024-02-19 19:09:12.028 2024-02-19 19:09:12.028 1000 FEE 430592 10731 6002773 2024-02-19 19:09:12.028 2024-02-19 19:09:12.028 9000 TIP 430592 12220 6002780 2024-02-19 19:09:19.594 2024-02-19 19:09:19.594 2100 FEE 429883 18169 6002781 2024-02-19 19:09:19.594 2024-02-19 19:09:19.594 18900 TIP 429883 11898 6002782 2024-02-19 19:09:19.975 2024-02-19 19:09:19.975 1000 FEE 431549 2711 6002799 2024-02-19 19:09:42.622 2024-02-19 19:09:42.622 1000 FEE 431557 15536 6002801 2024-02-19 19:09:47.659 2024-02-19 19:09:47.659 1000 FEE 431559 5597 6002802 2024-02-19 19:09:50.59 2024-02-19 19:09:50.59 1000 FEE 431560 5557 6002813 2024-02-19 19:10:35.91 2024-02-19 19:10:35.91 100000 FEE 431563 9611 6002814 2024-02-19 19:10:43.525 2024-02-19 19:10:43.525 400 FEE 431544 21547 6002815 2024-02-19 19:10:43.525 2024-02-19 19:10:43.525 3600 TIP 431544 9337 6002816 2024-02-19 19:10:47.997 2024-02-19 19:10:47.997 400 FEE 431538 624 6002817 2024-02-19 19:10:47.997 2024-02-19 19:10:47.997 3600 TIP 431538 4487 6002848 2024-02-19 19:12:37.914 2024-02-19 19:12:37.914 1000 FEE 430303 9916 6002849 2024-02-19 19:12:37.914 2024-02-19 19:12:37.914 9000 TIP 430303 18139 6002852 2024-02-19 19:12:44.036 2024-02-19 19:12:44.036 2100 FEE 430755 14267 6002853 2024-02-19 19:12:44.036 2024-02-19 19:12:44.036 18900 TIP 430755 17050 6002885 2024-02-19 19:13:03.962 2024-02-19 19:13:03.962 2100 FEE 430918 20802 6002886 2024-02-19 19:13:03.962 2024-02-19 19:13:03.962 18900 TIP 430918 17209 6002887 2024-02-19 19:13:04.176 2024-02-19 19:13:04.176 2100 FEE 430918 5500 6002888 2024-02-19 19:13:04.176 2024-02-19 19:13:04.176 18900 TIP 430918 18274 6002907 2024-02-19 19:13:13.964 2024-02-19 19:13:13.964 2100 FEE 430892 2519 6002908 2024-02-19 19:13:13.964 2024-02-19 19:13:13.964 18900 TIP 430892 12561 6002913 2024-02-19 19:13:26.809 2024-02-19 19:13:26.809 1000 FEE 431569 897 6002927 2024-02-19 19:14:02.497 2024-02-19 19:14:02.497 2100 FEE 430789 14015 6002928 2024-02-19 19:14:02.497 2024-02-19 19:14:02.497 18900 TIP 430789 5661 6002932 2024-02-19 19:14:05.022 2024-02-19 19:14:05.022 2100 FEE 430790 15336 6002933 2024-02-19 19:14:05.022 2024-02-19 19:14:05.022 18900 TIP 430790 695 6002936 2024-02-19 19:14:07.435 2024-02-19 19:14:07.435 2100 FEE 430790 9336 6002937 2024-02-19 19:14:07.435 2024-02-19 19:14:07.435 18900 TIP 430790 18930 6002954 2024-02-19 19:14:24.993 2024-02-19 19:14:24.993 2100 FEE 430960 21303 6002955 2024-02-19 19:14:24.993 2024-02-19 19:14:24.993 18900 TIP 430960 19105 6002956 2024-02-19 19:14:25.668 2024-02-19 19:14:25.668 2100 FEE 430960 18772 6002957 2024-02-19 19:14:25.668 2024-02-19 19:14:25.668 18900 TIP 430960 21532 6002969 2024-02-19 19:14:56.627 2024-02-19 19:14:56.627 2100 FEE 430641 7960 6002970 2024-02-19 19:14:56.627 2024-02-19 19:14:56.627 18900 TIP 430641 20264 6002973 2024-02-19 19:15:01.751 2024-02-19 19:15:01.751 2100 FEE 430670 640 6002974 2024-02-19 19:15:01.751 2024-02-19 19:15:01.751 18900 TIP 430670 17331 6003011 2024-02-19 19:16:04.792 2024-02-19 19:16:04.792 2100 FEE 430932 3990 6003012 2024-02-19 19:16:04.792 2024-02-19 19:16:04.792 18900 TIP 430932 21387 6003013 2024-02-19 19:16:08.22 2024-02-19 19:16:08.22 2100 FEE 430970 1723 6003014 2024-02-19 19:16:08.22 2024-02-19 19:16:08.22 18900 TIP 430970 9992 6003015 2024-02-19 19:16:09.122 2024-02-19 19:16:09.122 2100 FEE 430970 18040 6003016 2024-02-19 19:16:09.122 2024-02-19 19:16:09.122 18900 TIP 430970 2773 6003023 2024-02-19 19:17:03.637 2024-02-19 19:17:03.637 100 FEE 430920 8245 6003024 2024-02-19 19:17:03.637 2024-02-19 19:17:03.637 900 TIP 430920 20337 6003025 2024-02-19 19:17:05.972 2024-02-19 19:17:05.972 1000 FEE 431574 1221 6003034 2024-02-19 19:18:04.504 2024-02-19 19:18:04.504 1000 FEE 431576 19381 6003041 2024-02-19 19:18:22.97 2024-02-19 19:18:22.97 1000 FEE 431583 5003 6003044 2024-02-19 19:18:31.209 2024-02-19 19:18:31.209 1000 FEE 431586 2963 6003046 2024-02-19 19:18:37.913 2024-02-19 19:18:37.913 8300 FEE 430710 17217 6003047 2024-02-19 19:18:37.913 2024-02-19 19:18:37.913 74700 TIP 430710 19911 6003048 2024-02-19 19:18:38.241 2024-02-19 19:18:38.241 16600 FEE 430710 684 6003049 2024-02-19 19:18:38.241 2024-02-19 19:18:38.241 149400 TIP 430710 13622 6003050 2024-02-19 19:18:38.427 2024-02-19 19:18:38.427 8300 FEE 430710 13763 6003051 2024-02-19 19:18:38.427 2024-02-19 19:18:38.427 74700 TIP 430710 11698 6003096 2024-02-19 19:21:09.403 2024-02-19 19:21:09.403 1000 FEE 431385 18378 6003097 2024-02-19 19:21:09.403 2024-02-19 19:21:09.403 9000 TIP 431385 11698 6003098 2024-02-19 19:21:25.699 2024-02-19 19:21:25.699 8300 FEE 430663 20756 6003099 2024-02-19 19:21:25.699 2024-02-19 19:21:25.699 74700 TIP 430663 4692 6003100 2024-02-19 19:21:26.045 2024-02-19 19:21:26.045 24900 FEE 430663 10519 6003101 2024-02-19 19:21:26.045 2024-02-19 19:21:26.045 224100 TIP 430663 9261 6003114 2024-02-19 19:22:32.737 2024-02-19 19:22:32.737 2100 FEE 430411 2741 6003115 2024-02-19 19:22:32.737 2024-02-19 19:22:32.737 18900 TIP 430411 18309 6003120 2024-02-19 19:22:34.925 2024-02-19 19:22:34.925 8300 FEE 430775 711 6003121 2024-02-19 19:22:34.925 2024-02-19 19:22:34.925 74700 TIP 430775 5590 6003140 2024-02-19 19:22:36.649 2024-02-19 19:22:36.649 8300 FEE 430775 21083 6003141 2024-02-19 19:22:36.649 2024-02-19 19:22:36.649 74700 TIP 430775 21207 6003144 2024-02-19 19:22:38.369 2024-02-19 19:22:38.369 8300 FEE 430775 2022 6003145 2024-02-19 19:22:38.369 2024-02-19 19:22:38.369 74700 TIP 430775 3544 6003178 2024-02-19 19:26:55.121 2024-02-19 19:26:55.121 1000 FEE 413366 1650 6003179 2024-02-19 19:26:55.121 2024-02-19 19:26:55.121 9000 TIP 413366 21060 6003210 2024-02-19 19:29:07.134 2024-02-19 19:29:07.134 100 FEE 431393 1092 6003211 2024-02-19 19:29:07.134 2024-02-19 19:29:07.134 900 TIP 431393 21222 6003212 2024-02-19 19:29:07.236 2024-02-19 19:29:07.236 900 FEE 431393 5160 6003213 2024-02-19 19:29:07.236 2024-02-19 19:29:07.236 8100 TIP 431393 20143 6003230 2024-02-19 19:29:12.961 2024-02-19 19:29:12.961 100 FEE 430892 16556 6003231 2024-02-19 19:29:12.961 2024-02-19 19:29:12.961 900 TIP 430892 8242 6003252 2024-02-19 19:30:50.844 2024-02-19 19:30:50.844 2500 FEE 430473 5597 6003253 2024-02-19 19:30:50.844 2024-02-19 19:30:50.844 22500 TIP 430473 21532 6003256 2024-02-19 19:30:53.566 2024-02-19 19:30:53.566 8300 FEE 431596 10530 6003257 2024-02-19 19:30:53.566 2024-02-19 19:30:53.566 74700 TIP 431596 20816 6003260 2024-02-19 19:31:15.98 2024-02-19 19:31:15.98 1000 FEE 431600 12139 6003262 2024-02-19 19:31:29.273 2024-02-19 19:31:29.273 1000 FEE 431602 9356 6003283 2024-02-19 19:32:12.151 2024-02-19 19:32:12.151 1000 FEE 431611 11670 6003295 2024-02-19 19:32:29.411 2024-02-19 19:32:29.411 1000 FEE 431619 9921 6003296 2024-02-19 19:32:32.728 2024-02-19 19:32:32.728 1000 FEE 431620 5520 6003319 2024-02-19 19:33:14.683 2024-02-19 19:33:14.683 1000 FEE 431636 5160 6003332 2024-02-19 19:33:30.029 2024-02-19 19:33:30.029 1000 FEE 431643 15510 6003342 2024-02-19 19:33:58.939 2024-02-19 19:33:58.939 1000 FEE 431653 18357 6003347 2024-02-19 19:34:34.142 2024-02-19 19:34:34.142 100 FEE 431618 16912 6003348 2024-02-19 19:34:34.142 2024-02-19 19:34:34.142 900 TIP 431618 11395 6003362 2024-02-19 19:34:56.555 2024-02-19 19:34:56.555 100 FEE 430931 20243 6003363 2024-02-19 19:34:56.555 2024-02-19 19:34:56.555 900 TIP 430931 12175 6002704 2024-02-19 19:07:28.029 2024-02-19 19:07:28.029 1000 FEE 431517 2437 6002708 2024-02-19 19:07:30.888 2024-02-19 19:07:30.888 9000 FEE 367984 19777 6002709 2024-02-19 19:07:30.888 2024-02-19 19:07:30.888 81000 TIP 367984 11714 6002715 2024-02-19 19:07:53.521 2024-02-19 19:07:53.521 1000 FEE 431524 3392 6002726 2024-02-19 19:08:15.424 2024-02-19 19:08:15.424 1000 FEE 431531 17639 6002730 2024-02-19 19:08:21.739 2024-02-19 19:08:21.739 2100 FEE 430524 12356 6002731 2024-02-19 19:08:21.739 2024-02-19 19:08:21.739 18900 TIP 430524 19199 6002753 2024-02-19 19:08:39.596 2024-02-19 19:08:39.596 2100 FEE 430249 8459 6002754 2024-02-19 19:08:39.596 2024-02-19 19:08:39.596 18900 TIP 430249 21463 6002788 2024-02-19 19:09:26.605 2024-02-19 19:09:26.605 1000 FEE 431551 15271 6002797 2024-02-19 19:09:38.882 2024-02-19 19:09:38.882 0 FEE 431538 20613 6002822 2024-02-19 19:10:55.74 2024-02-19 19:10:55.74 1000 FEE 430012 14959 6002823 2024-02-19 19:10:55.74 2024-02-19 19:10:55.74 9000 TIP 430012 17109 6002856 2024-02-19 19:12:46.173 2024-02-19 19:12:46.173 1000 FEE 429891 616 6002857 2024-02-19 19:12:46.173 2024-02-19 19:12:46.173 9000 TIP 429891 1751 6002869 2024-02-19 19:12:49.55 2024-02-19 19:12:49.55 1000 FEE 431567 10469 6002944 2024-02-19 19:14:13.7 2024-02-19 19:14:13.7 75000 FEE 431570 17927 6002945 2024-02-19 19:14:15.913 2024-02-19 19:14:15.913 1000 FEE 431571 4345 6002948 2024-02-19 19:14:18.927 2024-02-19 19:14:18.927 2100 FEE 430960 18403 6002949 2024-02-19 19:14:18.927 2024-02-19 19:14:18.927 18900 TIP 430960 2123 6002980 2024-02-19 19:15:06.237 2024-02-19 19:15:06.237 100000 DONT_LIKE_THIS 431570 17392 6002991 2024-02-19 19:15:28.653 2024-02-19 19:15:28.653 2100 FEE 430931 17095 6002992 2024-02-19 19:15:28.653 2024-02-19 19:15:28.653 18900 TIP 430931 8360 6002997 2024-02-19 19:15:30.732 2024-02-19 19:15:30.732 2100 FEE 430931 11776 6002998 2024-02-19 19:15:30.732 2024-02-19 19:15:30.732 18900 TIP 430931 6260 6002999 2024-02-19 19:15:31.978 2024-02-19 19:15:31.978 2100 FEE 430931 4064 6003000 2024-02-19 19:15:31.978 2024-02-19 19:15:31.978 18900 TIP 430931 965 6003002 2024-02-19 19:15:36.858 2024-02-19 19:15:36.858 2100 FEE 430838 20892 6003003 2024-02-19 19:15:36.858 2024-02-19 19:15:36.858 18900 TIP 430838 11477 6003017 2024-02-19 19:16:13.564 2024-02-19 19:16:13.564 1000 FEE 431573 21019 6003037 2024-02-19 19:18:14.658 2024-02-19 19:18:14.658 1000 FEE 431579 21356 6003108 2024-02-19 19:22:00.116 2024-02-19 19:22:00.116 16600 FEE 431081 1105 6003109 2024-02-19 19:22:00.116 2024-02-19 19:22:00.116 149400 TIP 431081 21091 6003118 2024-02-19 19:22:33.763 2024-02-19 19:22:33.763 2100 FEE 430411 5500 6003119 2024-02-19 19:22:33.763 2024-02-19 19:22:33.763 18900 TIP 430411 8045 6003122 2024-02-19 19:22:34.994 2024-02-19 19:22:34.994 2100 FEE 431592 19148 6003123 2024-02-19 19:22:34.994 2024-02-19 19:22:34.994 18900 TIP 431592 6717 6003136 2024-02-19 19:22:36.409 2024-02-19 19:22:36.409 8300 FEE 430775 19446 6003137 2024-02-19 19:22:36.409 2024-02-19 19:22:36.409 74700 TIP 430775 17209 6003138 2024-02-19 19:22:36.512 2024-02-19 19:22:36.512 8300 FEE 430775 629 6003139 2024-02-19 19:22:36.512 2024-02-19 19:22:36.512 74700 TIP 430775 15386 6003142 2024-02-19 19:22:38.143 2024-02-19 19:22:38.143 8300 FEE 430775 16660 6003143 2024-02-19 19:22:38.143 2024-02-19 19:22:38.143 74700 TIP 430775 9353 6003166 2024-02-19 19:24:07.989 2024-02-19 19:24:07.989 2100 FEE 431294 18271 6003167 2024-02-19 19:24:07.989 2024-02-19 19:24:07.989 18900 TIP 431294 21349 6003204 2024-02-19 19:28:37.607 2024-02-19 19:28:37.607 26000 FEE 430761 20776 6003205 2024-02-19 19:28:37.607 2024-02-19 19:28:37.607 234000 TIP 430761 19471 6003208 2024-02-19 19:29:06.769 2024-02-19 19:29:06.769 1000 FEE 431580 17714 6003209 2024-02-19 19:29:06.769 2024-02-19 19:29:06.769 9000 TIP 431580 21482 6003224 2024-02-19 19:29:10.246 2024-02-19 19:29:10.246 100 FEE 430795 21386 6003225 2024-02-19 19:29:10.246 2024-02-19 19:29:10.246 900 TIP 430795 19837 6003241 2024-02-19 19:29:48.706 2024-02-19 19:29:48.706 100 FEE 431223 20080 6003242 2024-02-19 19:29:48.706 2024-02-19 19:29:48.706 900 TIP 431223 11288 6003243 2024-02-19 19:29:55.887 2024-02-19 19:29:55.887 2500 FEE 430561 4521 6003244 2024-02-19 19:29:55.887 2024-02-19 19:29:55.887 22500 TIP 430561 20058 6003246 2024-02-19 19:30:35.387 2024-02-19 19:30:35.387 21000 FEE 431598 17722 6003250 2024-02-19 19:30:41.368 2024-02-19 19:30:41.368 2500 FEE 430541 17106 6003251 2024-02-19 19:30:41.368 2024-02-19 19:30:41.368 22500 TIP 430541 1038 6003254 2024-02-19 19:30:53.497 2024-02-19 19:30:53.497 8300 FEE 431596 12278 6003255 2024-02-19 19:30:53.497 2024-02-19 19:30:53.497 74700 TIP 431596 15161 6003272 2024-02-19 19:31:49.912 2024-02-19 19:31:49.912 1000 FEE 431606 1002 6003276 2024-02-19 19:31:54.017 2024-02-19 19:31:54.017 2100 FEE 430920 20710 6003277 2024-02-19 19:31:54.017 2024-02-19 19:31:54.017 18900 TIP 430920 20603 6003284 2024-02-19 19:32:13.808 2024-02-19 19:32:13.808 1000 FEE 431612 4973 6003285 2024-02-19 19:32:13.845 2024-02-19 19:32:13.845 100 FEE 431155 2614 6003286 2024-02-19 19:32:13.845 2024-02-19 19:32:13.845 900 TIP 431155 670 6003292 2024-02-19 19:32:23.957 2024-02-19 19:32:23.957 1000 FEE 431616 2328 6003318 2024-02-19 19:33:11.597 2024-02-19 19:33:11.597 1000 FEE 431635 20969 6003320 2024-02-19 19:33:15.157 2024-02-19 19:33:15.157 100 FEE 431122 19902 6003321 2024-02-19 19:33:15.157 2024-02-19 19:33:15.157 900 TIP 431122 4487 6003330 2024-02-19 19:33:27.395 2024-02-19 19:33:27.395 1000 FEE 431641 20560 6003335 2024-02-19 19:33:35.334 2024-02-19 19:33:35.334 1000 FEE 431646 12057 6003370 2024-02-19 19:35:20.132 2024-02-19 19:35:20.132 1000 FEE 431659 18533 6003386 2024-02-19 19:35:38.634 2024-02-19 19:35:38.634 1000 FEE 431668 1488 6003389 2024-02-19 19:35:39.806 2024-02-19 19:35:39.806 2100 FEE 430607 21482 6003390 2024-02-19 19:35:39.806 2024-02-19 19:35:39.806 18900 TIP 430607 4989 6003409 2024-02-19 19:36:02.315 2024-02-19 19:36:02.315 1000 FEE 431677 7587 6003433 2024-02-19 19:36:42.327 2024-02-19 19:36:42.327 2100 FEE 431401 2156 6003434 2024-02-19 19:36:42.327 2024-02-19 19:36:42.327 18900 TIP 431401 15139 6003460 2024-02-19 19:38:24.646 2024-02-19 19:38:24.646 100 FEE 430854 4984 6003461 2024-02-19 19:38:24.646 2024-02-19 19:38:24.646 900 TIP 430854 21079 6003466 2024-02-19 19:38:47.112 2024-02-19 19:38:47.112 10000 DONT_LIKE_THIS 430839 1286 6003476 2024-02-19 19:39:31.05 2024-02-19 19:39:31.05 1000 FEE 431696 21600 6003489 2024-02-19 19:40:02.109 2024-02-19 19:40:02.109 1000 FEE 431707 4118 6003493 2024-02-19 19:40:11.802 2024-02-19 19:40:11.802 10000 FEE 426540 15094 6003494 2024-02-19 19:40:11.802 2024-02-19 19:40:11.802 90000 TIP 426540 1733 6003497 2024-02-19 19:40:19.029 2024-02-19 19:40:19.029 1000 FEE 431712 18828 6003502 2024-02-19 19:40:26.236 2024-02-19 19:40:26.236 1000 FEE 431715 10693 6003506 2024-02-19 19:41:00.682 2024-02-19 19:41:00.682 10000 DONT_LIKE_THIS 430571 13216 6003509 2024-02-19 19:41:12.554 2024-02-19 19:41:12.554 100 FEE 430548 5128 6003510 2024-02-19 19:41:12.554 2024-02-19 19:41:12.554 900 TIP 430548 8242 6003513 2024-02-19 19:41:13.361 2024-02-19 19:41:13.361 1000 FEE 431716 3456 6003521 2024-02-19 19:41:36.733 2024-02-19 19:41:36.733 2100 FEE 431598 12139 6003522 2024-02-19 19:41:36.733 2024-02-19 19:41:36.733 18900 TIP 431598 844 6003534 2024-02-19 19:43:02.251 2024-02-19 19:43:02.251 1000 FEE 430450 1286 6003535 2024-02-19 19:43:02.251 2024-02-19 19:43:02.251 9000 TIP 430450 1515 6003560 2024-02-19 19:45:08.97 2024-02-19 19:45:08.97 900 FEE 430230 11561 6003561 2024-02-19 19:45:08.97 2024-02-19 19:45:08.97 8100 TIP 430230 2367 6003565 2024-02-19 19:46:02.633 2024-02-19 19:46:02.633 100 FEE 430116 4322 6003566 2024-02-19 19:46:02.633 2024-02-19 19:46:02.633 900 TIP 430116 19777 6003580 2024-02-19 19:47:16.973 2024-02-19 19:47:16.973 1000 FEE 431725 18629 6003592 2024-02-19 19:47:48.216 2024-02-19 19:47:48.216 1000 FEE 431737 8535 6003599 2024-02-19 19:48:04.538 2024-02-19 19:48:04.538 1000 FEE 431743 696 6003632 2024-02-19 19:50:53.047 2024-02-19 19:50:53.047 1000 FEE 431754 20912 6003667 2024-02-19 19:54:01.289 2024-02-19 19:54:01.289 1000 FEE 431782 750 6003671 2024-02-19 19:54:09.36 2024-02-19 19:54:09.36 1000 FEE 431785 21361 6003698 2024-02-19 19:56:35.661 2024-02-19 19:56:35.661 1000 FEE 431688 10549 6002779 2024-02-19 19:09:18.976 2024-02-19 19:09:18.976 18900 TIP 429883 5597 6002785 2024-02-19 19:09:22.008 2024-02-19 19:09:22.008 2100 FEE 429443 14280 6002786 2024-02-19 19:09:22.008 2024-02-19 19:09:22.008 18900 TIP 429443 886 6002796 2024-02-19 19:09:37.525 2024-02-19 19:09:37.525 1000 FEE 431555 20826 6002798 2024-02-19 19:09:40.088 2024-02-19 19:09:40.088 1000 FEE 431556 3409 6002803 2024-02-19 19:09:53.006 2024-02-19 19:09:53.006 1000 FEE 431561 21540 6002809 2024-02-19 19:10:32.617 2024-02-19 19:10:32.617 1000 FEE 430237 660 6002810 2024-02-19 19:10:32.617 2024-02-19 19:10:32.617 9000 TIP 430237 17713 6002811 2024-02-19 19:10:35.135 2024-02-19 19:10:35.135 1000 FEE 429794 11220 6002812 2024-02-19 19:10:35.135 2024-02-19 19:10:35.135 9000 TIP 429794 4027 6002832 2024-02-19 19:11:40.337 2024-02-19 19:11:40.337 2100 FEE 427868 10342 6002833 2024-02-19 19:11:40.337 2024-02-19 19:11:40.337 18900 TIP 427868 17707 6002858 2024-02-19 19:12:46.329 2024-02-19 19:12:46.329 1000 FEE 431566 3342 6002863 2024-02-19 19:12:48.874 2024-02-19 19:12:48.874 2100 FEE 430755 18640 6002864 2024-02-19 19:12:48.874 2024-02-19 19:12:48.874 18900 TIP 430755 7760 6002881 2024-02-19 19:12:53.035 2024-02-19 19:12:53.035 2100 FEE 431298 19836 6002882 2024-02-19 19:12:53.035 2024-02-19 19:12:53.035 18900 TIP 431298 19335 6002891 2024-02-19 19:13:04.635 2024-02-19 19:13:04.635 2100 FEE 430918 20606 6002892 2024-02-19 19:13:04.635 2024-02-19 19:13:04.635 18900 TIP 430918 7989 6002905 2024-02-19 19:13:13.824 2024-02-19 19:13:13.824 2100 FEE 430892 19118 6002906 2024-02-19 19:13:13.824 2024-02-19 19:13:13.824 18900 TIP 430892 7903 6002911 2024-02-19 19:13:26.009 2024-02-19 19:13:26.009 1000 FEE 430916 2829 6002912 2024-02-19 19:13:26.009 2024-02-19 19:13:26.009 9000 TIP 430916 14381 6002958 2024-02-19 19:14:26.112 2024-02-19 19:14:26.112 2100 FEE 430960 18005 6002959 2024-02-19 19:14:26.112 2024-02-19 19:14:26.112 18900 TIP 430960 21214 6002967 2024-02-19 19:14:53.846 2024-02-19 19:14:53.846 2100 FEE 430617 15226 6002968 2024-02-19 19:14:53.846 2024-02-19 19:14:53.846 18900 TIP 430617 17953 6003006 2024-02-19 19:15:41.939 2024-02-19 19:15:41.939 2500 FEE 429612 16950 6003007 2024-02-19 19:15:41.939 2024-02-19 19:15:41.939 22500 TIP 429612 6419 6003038 2024-02-19 19:18:16.007 2024-02-19 19:18:16.007 1000 FEE 431580 18423 6003052 2024-02-19 19:18:38.635 2024-02-19 19:18:38.635 8300 FEE 430710 9339 6003053 2024-02-19 19:18:38.635 2024-02-19 19:18:38.635 74700 TIP 430710 16259 6003078 2024-02-19 19:19:59.002 2024-02-19 19:19:59.002 2500 FEE 431124 2347 6003079 2024-02-19 19:19:59.002 2024-02-19 19:19:59.002 22500 TIP 431124 9906 6003089 2024-02-19 19:20:41.998 2024-02-19 19:20:41.998 2100 FEE 431297 18511 6003090 2024-02-19 19:20:41.998 2024-02-19 19:20:41.998 18900 TIP 431297 17001 6003102 2024-02-19 19:21:26.241 2024-02-19 19:21:26.241 8300 FEE 430663 17094 6003103 2024-02-19 19:21:26.241 2024-02-19 19:21:26.241 74700 TIP 430663 21401 6003106 2024-02-19 19:21:29.961 2024-02-19 19:21:29.961 10000 FEE 430333 15271 6003107 2024-02-19 19:21:29.961 2024-02-19 19:21:29.961 90000 TIP 430333 14663 6003128 2024-02-19 19:22:35.465 2024-02-19 19:22:35.465 8300 FEE 430775 20788 6003129 2024-02-19 19:22:35.465 2024-02-19 19:22:35.465 74700 TIP 430775 12188 6003155 2024-02-19 19:23:24.589 2024-02-19 19:23:24.589 8300 FEE 430710 16145 6003156 2024-02-19 19:23:24.589 2024-02-19 19:23:24.589 74700 TIP 430710 13767 6003157 2024-02-19 19:23:24.7 2024-02-19 19:23:24.7 8300 FEE 430710 12188 6003158 2024-02-19 19:23:24.7 2024-02-19 19:23:24.7 74700 TIP 430710 9450 6003161 2024-02-19 19:23:26.081 2024-02-19 19:23:26.081 8300 FEE 430710 21379 6003162 2024-02-19 19:23:26.081 2024-02-19 19:23:26.081 74700 TIP 430710 19281 6003182 2024-02-19 19:26:57.268 2024-02-19 19:26:57.268 100 FEE 413366 21371 6003183 2024-02-19 19:26:57.268 2024-02-19 19:26:57.268 900 TIP 413366 21599 6003203 2024-02-19 19:28:20.098 2024-02-19 19:28:20.098 10000 DONT_LIKE_THIS 431591 20022 6003206 2024-02-19 19:28:51.906 2024-02-19 19:28:51.906 1000 FEE 431595 19005 6003228 2024-02-19 19:29:10.943 2024-02-19 19:29:10.943 900 FEE 429301 9367 6003229 2024-02-19 19:29:10.943 2024-02-19 19:29:10.943 8100 TIP 429301 9362 6003234 2024-02-19 19:29:17.034 2024-02-19 19:29:17.034 9000 FEE 429301 9333 6003235 2024-02-19 19:29:17.034 2024-02-19 19:29:17.034 81000 TIP 429301 14381 6003236 2024-02-19 19:29:37.17 2024-02-19 19:29:37.17 2500 FEE 430752 17212 6003237 2024-02-19 19:29:37.17 2024-02-19 19:29:37.17 22500 TIP 430752 9026 6003238 2024-02-19 19:29:39.946 2024-02-19 19:29:39.946 2500 FEE 430865 14465 6003239 2024-02-19 19:29:39.946 2024-02-19 19:29:39.946 22500 TIP 430865 5425 6003270 2024-02-19 19:31:48.776 2024-02-19 19:31:48.776 300 FEE 431572 11621 6003271 2024-02-19 19:31:48.776 2024-02-19 19:31:48.776 2700 TIP 431572 12911 6003274 2024-02-19 19:31:53.854 2024-02-19 19:31:53.854 2100 FEE 430920 7966 6003275 2024-02-19 19:31:53.854 2024-02-19 19:31:53.854 18900 TIP 430920 21485 6003278 2024-02-19 19:31:55.039 2024-02-19 19:31:55.039 1000 FEE 431608 4083 6003290 2024-02-19 19:32:17.915 2024-02-19 19:32:17.915 1000 FEE 431614 21003 6003314 2024-02-19 19:33:05.678 2024-02-19 19:33:05.678 1000 FEE 431633 675 6003331 2024-02-19 19:33:28.357 2024-02-19 19:33:28.357 1000 FEE 431642 663 6003344 2024-02-19 19:34:01.936 2024-02-19 19:34:01.936 1000 FEE 431655 15103 6003346 2024-02-19 19:34:05.301 2024-02-19 19:34:05.301 1000 FEE 431656 17316 6003354 2024-02-19 19:34:49.081 2024-02-19 19:34:49.081 100 FEE 430939 21239 6003355 2024-02-19 19:34:49.081 2024-02-19 19:34:49.081 900 TIP 430939 3729 6003360 2024-02-19 19:34:50.112 2024-02-19 19:34:50.112 100 FEE 430939 14015 6003361 2024-02-19 19:34:50.112 2024-02-19 19:34:50.112 900 TIP 430939 11609 6003366 2024-02-19 19:34:58.64 2024-02-19 19:34:58.64 9000 FEE 430931 19320 6003367 2024-02-19 19:34:58.64 2024-02-19 19:34:58.64 81000 TIP 430931 21619 6003373 2024-02-19 19:35:22.942 2024-02-19 19:35:22.942 1000 FEE 431662 1833 6003377 2024-02-19 19:35:27.769 2024-02-19 19:35:27.769 1000 FEE 431664 7989 6003396 2024-02-19 19:35:41.849 2024-02-19 19:35:41.849 9000 FEE 431102 18930 6003397 2024-02-19 19:35:41.849 2024-02-19 19:35:41.849 81000 TIP 431102 692 6003406 2024-02-19 19:35:55.159 2024-02-19 19:35:55.159 1000 FEE 431674 16816 6003413 2024-02-19 19:36:10.026 2024-02-19 19:36:10.026 1000 FEE 431680 18658 6003431 2024-02-19 19:36:35.925 2024-02-19 19:36:35.925 100 FEE 431658 21088 6003432 2024-02-19 19:36:35.925 2024-02-19 19:36:35.925 900 TIP 431658 19852 6003444 2024-02-19 19:37:36.328 2024-02-19 19:37:36.328 2100 FEE 431293 1474 6003445 2024-02-19 19:37:36.328 2024-02-19 19:37:36.328 18900 TIP 431293 20152 6003456 2024-02-19 19:38:23.341 2024-02-19 19:38:23.341 2300 FEE 430984 17116 6003457 2024-02-19 19:38:23.341 2024-02-19 19:38:23.341 20700 TIP 430984 6798 6003473 2024-02-19 19:39:20.849 2024-02-19 19:39:20.849 1000 FEE 431693 16229 6003484 2024-02-19 19:39:47.109 2024-02-19 19:39:47.109 0 FEE 431696 20980 6003495 2024-02-19 19:40:11.9 2024-02-19 19:40:11.9 1000 FEE 431710 19148 6003511 2024-02-19 19:41:12.73 2024-02-19 19:41:12.73 900 FEE 430548 4388 6003512 2024-02-19 19:41:12.73 2024-02-19 19:41:12.73 8100 TIP 430548 2832 6003547 2024-02-19 19:43:54.435 2024-02-19 19:43:54.435 0 FEE 342936 5759 6003553 2024-02-19 19:44:29.986 2024-02-19 19:44:29.986 2500 FEE 431299 21021 6003554 2024-02-19 19:44:29.986 2024-02-19 19:44:29.986 22500 TIP 431299 3440 6003581 2024-02-19 19:47:20.262 2024-02-19 19:47:20.262 1000 FEE 431726 8004 6003585 2024-02-19 19:47:29.778 2024-02-19 19:47:29.778 1000 FEE 431730 16154 6003586 2024-02-19 19:47:33.285 2024-02-19 19:47:33.285 1000 FEE 431731 717 6003602 2024-02-19 19:48:12.663 2024-02-19 19:48:12.663 1000 FEE 431746 2431 6003639 2024-02-19 19:52:57.751 2024-02-19 19:52:57.751 1000 FEE 431759 21509 6003648 2024-02-19 19:53:18.633 2024-02-19 19:53:18.633 1000 FEE 431767 657 6003649 2024-02-19 19:53:21.384 2024-02-19 19:53:21.384 1000 FEE 431768 675 6003653 2024-02-19 19:53:26.631 2024-02-19 19:53:26.631 1000 FEE 431770 7583 6003661 2024-02-19 19:53:49.693 2024-02-19 19:53:49.693 2400 FEE 430953 993 6003662 2024-02-19 19:53:49.693 2024-02-19 19:53:49.693 21600 TIP 430953 1605 6003666 2024-02-19 19:53:58.388 2024-02-19 19:53:58.388 1000 FEE 431781 1307 6002827 2024-02-19 19:11:12.235 2024-02-19 19:11:12.235 9000 TIP 430460 18525 6002830 2024-02-19 19:11:35.175 2024-02-19 19:11:35.175 2100 FEE 430265 18556 6002831 2024-02-19 19:11:35.175 2024-02-19 19:11:35.175 18900 TIP 430265 19938 6002834 2024-02-19 19:11:50.836 2024-02-19 19:11:50.836 1700 FEE 431407 2639 6002835 2024-02-19 19:11:50.836 2024-02-19 19:11:50.836 15300 TIP 431407 19864 6002861 2024-02-19 19:12:47.865 2024-02-19 19:12:47.865 2100 FEE 430755 8037 6002862 2024-02-19 19:12:47.865 2024-02-19 19:12:47.865 18900 TIP 430755 18393 6002872 2024-02-19 19:12:49.857 2024-02-19 19:12:49.857 2100 FEE 430755 19449 6002873 2024-02-19 19:12:49.857 2024-02-19 19:12:49.857 18900 TIP 430755 12158 6002878 2024-02-19 19:12:50.87 2024-02-19 19:12:50.87 2100 FEE 430755 10530 6002879 2024-02-19 19:12:50.87 2024-02-19 19:12:50.87 18900 TIP 430755 635 6002893 2024-02-19 19:13:04.875 2024-02-19 19:13:04.875 2100 FEE 430918 1814 6002894 2024-02-19 19:13:04.875 2024-02-19 19:13:04.875 18900 TIP 430918 8059 6002938 2024-02-19 19:14:07.89 2024-02-19 19:14:07.89 2100 FEE 430790 15147 6002939 2024-02-19 19:14:07.89 2024-02-19 19:14:07.89 18900 TIP 430790 1802 6002987 2024-02-19 19:15:21.245 2024-02-19 19:15:21.245 1000 FEE 430733 20897 6002988 2024-02-19 19:15:21.245 2024-02-19 19:15:21.245 9000 TIP 430733 16594 6003004 2024-02-19 19:15:37.461 2024-02-19 19:15:37.461 2100 FEE 430838 1959 6003005 2024-02-19 19:15:37.461 2024-02-19 19:15:37.461 18900 TIP 430838 19507 6003008 2024-02-19 19:15:46.675 2024-02-19 19:15:46.675 25000 FEE 429612 9365 6003009 2024-02-19 19:15:46.675 2024-02-19 19:15:46.675 225000 TIP 429612 21329 6003020 2024-02-19 19:16:52.853 2024-02-19 19:16:52.853 2100 FEE 431396 21573 6003021 2024-02-19 19:16:52.853 2024-02-19 19:16:52.853 18900 TIP 431396 17184 6003042 2024-02-19 19:18:25.503 2024-02-19 19:18:25.503 1000 FEE 431584 17212 6003054 2024-02-19 19:18:38.897 2024-02-19 19:18:38.897 8300 FEE 430710 11220 6003055 2024-02-19 19:18:38.897 2024-02-19 19:18:38.897 74700 TIP 430710 15146 6003065 2024-02-19 19:18:44.519 2024-02-19 19:18:44.519 1000 FEE 431589 20267 6003083 2024-02-19 19:20:27.401 2024-02-19 19:20:27.401 1000 FEE 430496 661 6003084 2024-02-19 19:20:27.401 2024-02-19 19:20:27.401 9000 TIP 430496 17041 6003091 2024-02-19 19:20:45.859 2024-02-19 19:20:45.859 1000 FEE 431380 2942 6003092 2024-02-19 19:20:45.859 2024-02-19 19:20:45.859 9000 TIP 431380 4819 6003126 2024-02-19 19:22:35.342 2024-02-19 19:22:35.342 8300 FEE 430775 21588 6003127 2024-02-19 19:22:35.342 2024-02-19 19:22:35.342 74700 TIP 430775 21357 6003132 2024-02-19 19:22:35.746 2024-02-19 19:22:35.746 8300 FEE 430775 12268 6003133 2024-02-19 19:22:35.746 2024-02-19 19:22:35.746 74700 TIP 430775 697 6003172 2024-02-19 19:26:51.653 2024-02-19 19:26:51.653 1000 FEE 413309 21417 6003173 2024-02-19 19:26:51.653 2024-02-19 19:26:51.653 9000 TIP 413309 20306 6003176 2024-02-19 19:26:54.145 2024-02-19 19:26:54.145 100 FEE 413309 19138 6003177 2024-02-19 19:26:54.145 2024-02-19 19:26:54.145 900 TIP 413309 21466 6003192 2024-02-19 19:27:55.465 2024-02-19 19:27:55.465 1000 FEE 431590 15938 6003193 2024-02-19 19:27:55.465 2024-02-19 19:27:55.465 9000 TIP 431590 17172 6003196 2024-02-19 19:27:55.955 2024-02-19 19:27:55.955 1000 FEE 431590 18396 6003197 2024-02-19 19:27:55.955 2024-02-19 19:27:55.955 9000 TIP 431590 20267 6003248 2024-02-19 19:30:38.939 2024-02-19 19:30:38.939 1000 FEE 431591 5809 6003249 2024-02-19 19:30:38.939 2024-02-19 19:30:38.939 9000 TIP 431591 14080 6003263 2024-02-19 19:31:30.007 2024-02-19 19:31:30.007 15000 FEE 431598 9171 6003264 2024-02-19 19:31:30.007 2024-02-19 19:31:30.007 135000 TIP 431598 7395 6003268 2024-02-19 19:31:35.923 2024-02-19 19:31:35.923 1000 FEE 431604 17166 6003273 2024-02-19 19:31:52.43 2024-02-19 19:31:52.43 1000 FEE 431607 16354 6003293 2024-02-19 19:32:26.665 2024-02-19 19:32:26.665 1000 FEE 431617 1814 6003294 2024-02-19 19:32:27.24 2024-02-19 19:32:27.24 1000 FEE 431618 5703 6003308 2024-02-19 19:32:53.399 2024-02-19 19:32:53.399 1000 FEE 431628 4574 6003326 2024-02-19 19:33:17.209 2024-02-19 19:33:17.209 1000 FEE 431637 688 6003329 2024-02-19 19:33:24.86 2024-02-19 19:33:24.86 1000 FEE 431640 19417 6003337 2024-02-19 19:33:41.269 2024-02-19 19:33:41.269 1000 FEE 431648 19018 6003340 2024-02-19 19:33:49.457 2024-02-19 19:33:49.457 1000 FEE 431651 17166 6003364 2024-02-19 19:34:56.794 2024-02-19 19:34:56.794 900 FEE 430931 18393 6003365 2024-02-19 19:34:56.794 2024-02-19 19:34:56.794 8100 TIP 430931 21494 6003421 2024-02-19 19:36:30.867 2024-02-19 19:36:30.867 1000 FEE 431688 17218 6003425 2024-02-19 19:36:34.625 2024-02-19 19:36:34.625 100 FEE 431658 19174 6003426 2024-02-19 19:36:34.625 2024-02-19 19:36:34.625 900 TIP 431658 2233 6003475 2024-02-19 19:39:30.679 2024-02-19 19:39:30.679 1000 FEE 431695 16282 6003488 2024-02-19 19:39:58.859 2024-02-19 19:39:58.859 1000 FEE 431706 2195 6003496 2024-02-19 19:40:16.08 2024-02-19 19:40:16.08 1000 FEE 431711 16447 6003516 2024-02-19 19:41:23.783 2024-02-19 19:41:23.783 1000 FEE 431717 11820 6003537 2024-02-19 19:43:08.46 2024-02-19 19:43:08.46 1000 FEE 431718 15484 6003538 2024-02-19 19:43:09.174 2024-02-19 19:43:09.174 1000 FEE 431719 20660 6003551 2024-02-19 19:44:03.405 2024-02-19 19:44:03.405 900 FEE 430322 1740 6003552 2024-02-19 19:44:03.405 2024-02-19 19:44:03.405 8100 TIP 430322 795 6003558 2024-02-19 19:45:08.773 2024-02-19 19:45:08.773 100 FEE 430230 8245 6003559 2024-02-19 19:45:08.773 2024-02-19 19:45:08.773 900 TIP 430230 2773 6003572 2024-02-19 19:46:21.579 2024-02-19 19:46:21.579 10000 DONT_LIKE_THIS 430040 13782 6003573 2024-02-19 19:46:38.685 2024-02-19 19:46:38.685 1000 FEE 431723 10342 6003578 2024-02-19 19:47:16.839 2024-02-19 19:47:16.839 1000 FEE 430568 20826 6003579 2024-02-19 19:47:16.839 2024-02-19 19:47:16.839 9000 TIP 430568 17166 6003593 2024-02-19 19:47:50.507 2024-02-19 19:47:50.507 1000 FEE 431738 18941 6003594 2024-02-19 19:47:52.771 2024-02-19 19:47:52.771 1000 FEE 431739 1480 6003595 2024-02-19 19:47:55.095 2024-02-19 19:47:55.095 1000 FEE 431740 20614 6003604 2024-02-19 19:48:19.072 2024-02-19 19:48:19.072 1000 FEE 431748 5961 6003611 2024-02-19 19:49:46.221 2024-02-19 19:49:46.221 1000 FEE 431752 14657 6003613 2024-02-19 19:50:16.699 2024-02-19 19:50:16.699 2100 FEE 430953 20326 6003614 2024-02-19 19:50:16.699 2024-02-19 19:50:16.699 18900 TIP 430953 11328 6003621 2024-02-19 19:50:17.772 2024-02-19 19:50:17.772 2100 FEE 430953 715 6003622 2024-02-19 19:50:17.772 2024-02-19 19:50:17.772 18900 TIP 430953 2022 6003634 2024-02-19 19:51:26.383 2024-02-19 19:51:26.383 1000 FEE 431755 770 6003637 2024-02-19 19:52:51.466 2024-02-19 19:52:51.466 1000 FEE 431757 18923 6003638 2024-02-19 19:52:55.2 2024-02-19 19:52:55.2 1000 FEE 431758 8037 6003640 2024-02-19 19:53:00.551 2024-02-19 19:53:00.551 1000 FEE 431760 15941 6003642 2024-02-19 19:53:03.978 2024-02-19 19:53:03.978 1000 FEE 431761 5359 6003655 2024-02-19 19:53:32.475 2024-02-19 19:53:32.475 1000 FEE 431772 16950 6003663 2024-02-19 19:53:49.906 2024-02-19 19:53:49.906 1000 FEE 431778 20642 6003672 2024-02-19 19:54:11.623 2024-02-19 19:54:11.623 1000 FEE 431786 14857 6003676 2024-02-19 19:54:20.559 2024-02-19 19:54:20.559 1000 FEE 431790 10493 6003682 2024-02-19 19:55:03.242 2024-02-19 19:55:03.242 7700 FEE 430549 16970 6003683 2024-02-19 19:55:03.242 2024-02-19 19:55:03.242 69300 TIP 430549 8423 6003707 2024-02-19 19:57:04.937 2024-02-19 19:57:04.937 83000 DONT_LIKE_THIS 431300 4415 6003764 2024-02-19 19:58:22.03 2024-02-19 19:58:22.03 7700 FEE 430854 16562 6003765 2024-02-19 19:58:22.03 2024-02-19 19:58:22.03 69300 TIP 430854 7992 6003772 2024-02-19 19:58:52.173 2024-02-19 19:58:52.173 1000 FEE 431401 13169 6003773 2024-02-19 19:58:52.173 2024-02-19 19:58:52.173 9000 TIP 431401 16301 6003781 2024-02-19 19:59:23.152 2024-02-19 19:59:23.152 1000 FEE 431591 19263 6003782 2024-02-19 19:59:23.152 2024-02-19 19:59:23.152 9000 TIP 431591 17714 6003819 2024-02-19 20:00:49.998 2024-02-19 20:00:49.998 1000 FEE 431807 19987 6003821 2024-02-19 20:01:45.364 2024-02-19 20:01:45.364 23000 DONT_LIKE_THIS 431806 13753 6003846 2024-02-19 20:06:24.065 2024-02-19 20:06:24.065 100000 FEE 431813 10493 6003871 2024-02-19 20:11:25.427 2024-02-19 20:11:25.427 1000 FEE 430699 5519 6003872 2024-02-19 20:11:25.427 2024-02-19 20:11:25.427 9000 TIP 430699 3353 6002883 2024-02-19 19:12:56.46 2024-02-19 19:12:56.46 75000 DONT_LIKE_THIS 431525 16929 6002889 2024-02-19 19:13:04.396 2024-02-19 19:13:04.396 2100 FEE 430918 673 6002890 2024-02-19 19:13:04.396 2024-02-19 19:13:04.396 18900 TIP 430918 5701 6002916 2024-02-19 19:13:29.672 2024-02-19 19:13:29.672 100000 DONT_LIKE_THIS 431393 18313 6002942 2024-02-19 19:14:09.57 2024-02-19 19:14:09.57 2100 FEE 430789 2029 6002943 2024-02-19 19:14:09.57 2024-02-19 19:14:09.57 18900 TIP 430789 20094 6002952 2024-02-19 19:14:23.569 2024-02-19 19:14:23.569 2100 FEE 430960 17827 6002953 2024-02-19 19:14:23.569 2024-02-19 19:14:23.569 18900 TIP 430960 17523 6002971 2024-02-19 19:14:58.511 2024-02-19 19:14:58.511 1000 FEE 430789 19633 6002972 2024-02-19 19:14:58.511 2024-02-19 19:14:58.511 9000 TIP 430789 974 6002976 2024-02-19 19:15:04.659 2024-02-19 19:15:04.659 2100 FEE 430674 14657 6002977 2024-02-19 19:15:04.659 2024-02-19 19:15:04.659 18900 TIP 430674 9354 6002981 2024-02-19 19:15:16.07 2024-02-19 19:15:16.07 2100 FEE 430836 16970 6002982 2024-02-19 19:15:16.07 2024-02-19 19:15:16.07 18900 TIP 430836 10611 6002993 2024-02-19 19:15:28.939 2024-02-19 19:15:28.939 2100 FEE 430931 16442 6002994 2024-02-19 19:15:28.939 2024-02-19 19:15:28.939 18900 TIP 430931 21599 6003018 2024-02-19 19:16:14.387 2024-02-19 19:16:14.387 2100 FEE 430607 6160 6003019 2024-02-19 19:16:14.387 2024-02-19 19:16:14.387 18900 TIP 430607 21159 6003039 2024-02-19 19:18:17.672 2024-02-19 19:18:17.672 1000 FEE 431581 18472 6003040 2024-02-19 19:18:20.533 2024-02-19 19:18:20.533 1000 FEE 431582 17041 6003043 2024-02-19 19:18:27.799 2024-02-19 19:18:27.799 1000 FEE 431585 2335 6003060 2024-02-19 19:18:39.33 2024-02-19 19:18:39.33 8300 FEE 430710 15728 6003061 2024-02-19 19:18:39.33 2024-02-19 19:18:39.33 74700 TIP 430710 1718 6003067 2024-02-19 19:19:07.002 2024-02-19 19:19:07.002 10000 FEE 429472 21455 6003068 2024-02-19 19:19:07.002 2024-02-19 19:19:07.002 90000 TIP 429472 15266 6003074 2024-02-19 19:19:33.817 2024-02-19 19:19:33.817 8300 FEE 430758 9351 6003075 2024-02-19 19:19:33.817 2024-02-19 19:19:33.817 74700 TIP 430758 5791 6003085 2024-02-19 19:20:38.84 2024-02-19 19:20:38.84 2100 FEE 431392 21398 6003086 2024-02-19 19:20:38.84 2024-02-19 19:20:38.84 18900 TIP 431392 11609 6003093 2024-02-19 19:20:56.814 2024-02-19 19:20:56.814 1000 FEE 431379 4763 6003094 2024-02-19 19:20:56.814 2024-02-19 19:20:56.814 9000 TIP 431379 9496 6003116 2024-02-19 19:22:33.105 2024-02-19 19:22:33.105 2100 FEE 430411 2338 6003117 2024-02-19 19:22:33.105 2024-02-19 19:22:33.105 18900 TIP 430411 20434 6003124 2024-02-19 19:22:35.22 2024-02-19 19:22:35.22 16600 FEE 430775 18403 6003125 2024-02-19 19:22:35.22 2024-02-19 19:22:35.22 149400 TIP 430775 7966 6003151 2024-02-19 19:23:20.421 2024-02-19 19:23:20.421 1000 FEE 431394 919 6003152 2024-02-19 19:23:20.421 2024-02-19 19:23:20.421 9000 TIP 431394 16842 6003171 2024-02-19 19:26:32.557 2024-02-19 19:26:32.557 1000 FEE 431594 20353 6003186 2024-02-19 19:26:58.285 2024-02-19 19:26:58.285 1000 FEE 431108 11820 6003187 2024-02-19 19:26:58.285 2024-02-19 19:26:58.285 9000 TIP 431108 20117 6003216 2024-02-19 19:29:07.722 2024-02-19 19:29:07.722 1000 FEE 431580 8416 6003217 2024-02-19 19:29:07.722 2024-02-19 19:29:07.722 9000 TIP 431580 20245 6003218 2024-02-19 19:29:08.016 2024-02-19 19:29:08.016 1000 FEE 431580 9364 6003219 2024-02-19 19:29:08.016 2024-02-19 19:29:08.016 9000 TIP 431580 21291 6003222 2024-02-19 19:29:08.788 2024-02-19 19:29:08.788 100 FEE 430920 3461 6003223 2024-02-19 19:29:08.788 2024-02-19 19:29:08.788 900 TIP 430920 8080 6003247 2024-02-19 19:30:36.017 2024-02-19 19:30:36.017 1000 FEE 431599 21019 6003265 2024-02-19 19:31:32.985 2024-02-19 19:31:32.985 1000 FEE 431603 5519 6003280 2024-02-19 19:31:58.169 2024-02-19 19:31:58.169 1000 FEE 431609 15115 6003307 2024-02-19 19:32:50.679 2024-02-19 19:32:50.679 1000 FEE 431627 16212 6003310 2024-02-19 19:32:58.415 2024-02-19 19:32:58.415 1000 FEE 431630 15075 6003338 2024-02-19 19:33:43.944 2024-02-19 19:33:43.944 1000 FEE 431649 894 6003341 2024-02-19 19:33:52.142 2024-02-19 19:33:52.142 1000 FEE 431652 21614 6003378 2024-02-19 19:35:28.418 2024-02-19 19:35:28.418 0 FEE 431658 2459 6003385 2024-02-19 19:35:36.093 2024-02-19 19:35:36.093 1000 FEE 431667 19381 6003393 2024-02-19 19:35:40.952 2024-02-19 19:35:40.952 1000 FEE 431669 1030 6003394 2024-02-19 19:35:40.976 2024-02-19 19:35:40.976 2100 FEE 430607 7125 6003395 2024-02-19 19:35:40.976 2024-02-19 19:35:40.976 18900 TIP 430607 20287 6003411 2024-02-19 19:36:04.662 2024-02-19 19:36:04.662 1000 FEE 431678 1618 6003412 2024-02-19 19:36:07.375 2024-02-19 19:36:07.375 1000 FEE 431679 10944 6003438 2024-02-19 19:37:05.048 2024-02-19 19:37:05.048 100 FEE 430879 8242 6003439 2024-02-19 19:37:05.048 2024-02-19 19:37:05.048 900 TIP 430879 16948 6003454 2024-02-19 19:38:22.816 2024-02-19 19:38:22.816 2300 FEE 430984 2347 6003455 2024-02-19 19:38:22.816 2024-02-19 19:38:22.816 20700 TIP 430984 9084 6003464 2024-02-19 19:38:26.356 2024-02-19 19:38:26.356 9000 FEE 430854 19037 6003465 2024-02-19 19:38:26.356 2024-02-19 19:38:26.356 81000 TIP 430854 19458 6003487 2024-02-19 19:39:55.975 2024-02-19 19:39:55.975 1000 FEE 431705 925 6003492 2024-02-19 19:40:09.084 2024-02-19 19:40:09.084 1000 FEE 431709 21571 6003501 2024-02-19 19:40:21.897 2024-02-19 19:40:21.897 1000 FEE 431714 21605 6003505 2024-02-19 19:40:43.48 2024-02-19 19:40:43.48 10000 DONT_LIKE_THIS 430599 16350 6003539 2024-02-19 19:43:11.704 2024-02-19 19:43:11.704 100000 FEE 431720 20710 6003562 2024-02-19 19:45:11.203 2024-02-19 19:45:11.203 2500 FEE 430500 11288 6003563 2024-02-19 19:45:11.203 2024-02-19 19:45:11.203 22500 TIP 430500 6430 6003570 2024-02-19 19:46:03.514 2024-02-19 19:46:03.514 2100 FEE 430929 640 6003571 2024-02-19 19:46:03.514 2024-02-19 19:46:03.514 18900 TIP 430929 19118 6003575 2024-02-19 19:47:03.497 2024-02-19 19:47:03.497 1000 FEE 431724 2162 6003590 2024-02-19 19:47:43.768 2024-02-19 19:47:43.768 1000 FEE 431735 20861 6003606 2024-02-19 19:48:25.165 2024-02-19 19:48:25.165 1000 FEE 431750 21395 6003635 2024-02-19 19:51:56.016 2024-02-19 19:51:56.016 1000 FEE 431756 14939 6003647 2024-02-19 19:53:15.564 2024-02-19 19:53:15.564 1000 FEE 431766 15266 6003657 2024-02-19 19:53:37.744 2024-02-19 19:53:37.744 1000 FEE 431774 12562 6003659 2024-02-19 19:53:42.719 2024-02-19 19:53:42.719 1000 FEE 431776 21624 6003674 2024-02-19 19:54:16.972 2024-02-19 19:54:16.972 1000 FEE 431788 4776 6003677 2024-02-19 19:54:24.875 2024-02-19 19:54:24.875 1000 FEE 431791 19037 6003694 2024-02-19 19:55:05.225 2024-02-19 19:55:05.225 7700 FEE 430549 13517 6003695 2024-02-19 19:55:05.225 2024-02-19 19:55:05.225 69300 TIP 430549 10944 6003708 2024-02-19 19:57:09.77 2024-02-19 19:57:09.77 83000 DONT_LIKE_THIS 430871 859 6003712 2024-02-19 19:57:24.546 2024-02-19 19:57:24.546 100 FEE 431566 21555 6003713 2024-02-19 19:57:24.546 2024-02-19 19:57:24.546 900 TIP 431566 811 6003744 2024-02-19 19:58:00.134 2024-02-19 19:58:00.134 1000 FEE 431799 9342 6003752 2024-02-19 19:58:08.313 2024-02-19 19:58:08.313 83000 DONT_LIKE_THIS 431798 12808 6003779 2024-02-19 19:59:22.986 2024-02-19 19:59:22.986 1000 FEE 431591 1006 6003780 2024-02-19 19:59:22.986 2024-02-19 19:59:22.986 9000 TIP 431591 21058 6003790 2024-02-19 19:59:42.245 2024-02-19 19:59:42.245 8300 FEE 431800 12265 6003791 2024-02-19 19:59:42.245 2024-02-19 19:59:42.245 74700 TIP 431800 4313 6003800 2024-02-19 19:59:42.769 2024-02-19 19:59:42.769 8300 FEE 431800 3400 6003801 2024-02-19 19:59:42.769 2024-02-19 19:59:42.769 74700 TIP 431800 19961 6003806 2024-02-19 19:59:43.161 2024-02-19 19:59:43.161 8300 FEE 431800 15115 6003807 2024-02-19 19:59:43.161 2024-02-19 19:59:43.161 74700 TIP 431800 9450 6003830 2024-02-19 20:02:44.039 2024-02-19 20:02:44.039 1000 FEE 431807 981 6003831 2024-02-19 20:02:44.039 2024-02-19 20:02:44.039 9000 TIP 431807 19103 6003854 2024-02-19 20:07:49.231 2024-02-19 20:07:49.231 1000 DONT_LIKE_THIS 430911 928 6003909 2024-02-19 20:13:25.256 2024-02-19 20:13:25.256 8300 FEE 431809 13217 6003910 2024-02-19 20:13:25.256 2024-02-19 20:13:25.256 74700 TIP 431809 19031 6003929 2024-02-19 20:13:27.158 2024-02-19 20:13:27.158 8300 FEE 431809 18310 6003930 2024-02-19 20:13:27.158 2024-02-19 20:13:27.158 74700 TIP 431809 649 6003942 2024-02-19 20:14:17.069 2024-02-19 20:14:17.069 1000 FEE 431821 20849 6002915 2024-02-19 19:13:27.095 2024-02-19 19:13:27.095 9000 TIP 431243 20987 6002917 2024-02-19 19:13:47.158 2024-02-19 19:13:47.158 700 FEE 431565 19941 6002918 2024-02-19 19:13:47.158 2024-02-19 19:13:47.158 6300 TIP 431565 2961 6002921 2024-02-19 19:13:55.688 2024-02-19 19:13:55.688 2100 FEE 430779 21079 6002922 2024-02-19 19:13:55.688 2024-02-19 19:13:55.688 18900 TIP 430779 705 6002923 2024-02-19 19:13:56.608 2024-02-19 19:13:56.608 2100 FEE 430779 21051 6002924 2024-02-19 19:13:56.608 2024-02-19 19:13:56.608 18900 TIP 430779 17316 6002940 2024-02-19 19:14:09.053 2024-02-19 19:14:09.053 2100 FEE 430789 16250 6002941 2024-02-19 19:14:09.053 2024-02-19 19:14:09.053 18900 TIP 430789 20599 6002960 2024-02-19 19:14:31.017 2024-02-19 19:14:31.017 2100 FEE 430635 6229 6002961 2024-02-19 19:14:31.017 2024-02-19 19:14:31.017 18900 TIP 430635 19105 6002985 2024-02-19 19:15:20.535 2024-02-19 19:15:20.535 2100 FEE 430863 10493 6002986 2024-02-19 19:15:20.535 2024-02-19 19:15:20.535 18900 TIP 430863 20564 6002989 2024-02-19 19:15:28.194 2024-02-19 19:15:28.194 2100 FEE 430931 18409 6002990 2024-02-19 19:15:28.194 2024-02-19 19:15:28.194 18900 TIP 430931 21003 6003026 2024-02-19 19:17:20.408 2024-02-19 19:17:20.408 100 FEE 431401 4692 6003027 2024-02-19 19:17:20.408 2024-02-19 19:17:20.408 900 TIP 431401 17095 6003028 2024-02-19 19:17:20.561 2024-02-19 19:17:20.561 900 FEE 431401 3706 6003029 2024-02-19 19:17:20.561 2024-02-19 19:17:20.561 8100 TIP 431401 20306 6003045 2024-02-19 19:18:34.096 2024-02-19 19:18:34.096 1000 FEE 431587 21061 6003056 2024-02-19 19:18:39.007 2024-02-19 19:18:39.007 8300 FEE 430710 18659 6003057 2024-02-19 19:18:39.007 2024-02-19 19:18:39.007 74700 TIP 430710 20969 6003069 2024-02-19 19:19:22.015 2024-02-19 19:19:22.015 1000 FEE 431590 19243 6003072 2024-02-19 19:19:33.533 2024-02-19 19:19:33.533 8300 FEE 430758 21138 6003073 2024-02-19 19:19:33.533 2024-02-19 19:19:33.533 74700 TIP 430758 21589 6003081 2024-02-19 19:20:07.674 2024-02-19 19:20:07.674 1000 FEE 430607 19142 6003082 2024-02-19 19:20:07.674 2024-02-19 19:20:07.674 9000 TIP 430607 2188 6003112 2024-02-19 19:22:32.677 2024-02-19 19:22:32.677 2100 FEE 430411 1426 6003113 2024-02-19 19:22:32.677 2024-02-19 19:22:32.677 18900 TIP 430411 21421 6003149 2024-02-19 19:23:08.178 2024-02-19 19:23:08.178 1000 FEE 430958 13217 6003150 2024-02-19 19:23:08.178 2024-02-19 19:23:08.178 9000 TIP 430958 21037 6003174 2024-02-19 19:26:51.821 2024-02-19 19:26:51.821 1000 FEE 413309 1426 6003175 2024-02-19 19:26:51.821 2024-02-19 19:26:51.821 9000 TIP 413309 20990 6003180 2024-02-19 19:26:55.17 2024-02-19 19:26:55.17 1000 FEE 413366 9844 6003181 2024-02-19 19:26:55.17 2024-02-19 19:26:55.17 9000 TIP 413366 21361 6003188 2024-02-19 19:27:00.291 2024-02-19 19:27:00.291 100 FEE 431108 21424 6003189 2024-02-19 19:27:00.291 2024-02-19 19:27:00.291 900 TIP 431108 19462 6003198 2024-02-19 19:27:56.354 2024-02-19 19:27:56.354 1000 FEE 431590 14990 6003199 2024-02-19 19:27:56.354 2024-02-19 19:27:56.354 9000 TIP 431590 1512 6003214 2024-02-19 19:29:07.337 2024-02-19 19:29:07.337 1000 FEE 431580 18836 6003215 2024-02-19 19:29:07.337 2024-02-19 19:29:07.337 9000 TIP 431580 985 6003220 2024-02-19 19:29:08.313 2024-02-19 19:29:08.313 1000 FEE 431580 20090 6003221 2024-02-19 19:29:08.313 2024-02-19 19:29:08.313 9000 TIP 431580 1000 6003300 2024-02-19 19:32:44.857 2024-02-19 19:32:44.857 1000 FEE 431624 5825 6003302 2024-02-19 19:32:47.094 2024-02-19 19:32:47.094 2100 FEE 430931 20246 6003303 2024-02-19 19:32:47.094 2024-02-19 19:32:47.094 18900 TIP 430931 631 6003304 2024-02-19 19:32:47.949 2024-02-19 19:32:47.949 1000 FEE 431626 999 6003311 2024-02-19 19:33:00.902 2024-02-19 19:33:00.902 1000 FEE 431631 3392 6003316 2024-02-19 19:33:08.171 2024-02-19 19:33:08.171 5000 FEE 430197 16350 6003317 2024-02-19 19:33:08.171 2024-02-19 19:33:08.171 45000 TIP 430197 14278 6003322 2024-02-19 19:33:15.472 2024-02-19 19:33:15.472 900 FEE 431122 20243 6003323 2024-02-19 19:33:15.472 2024-02-19 19:33:15.472 8100 TIP 431122 20987 6003324 2024-02-19 19:33:15.941 2024-02-19 19:33:15.941 9000 FEE 431122 21521 6003325 2024-02-19 19:33:15.941 2024-02-19 19:33:15.941 81000 TIP 431122 17157 6003328 2024-02-19 19:33:22.468 2024-02-19 19:33:22.468 1000 FEE 431639 13217 6003334 2024-02-19 19:33:32.765 2024-02-19 19:33:32.765 1000 FEE 431645 1352 6003372 2024-02-19 19:35:22.655 2024-02-19 19:35:22.655 1000 FEE 431661 13046 6003400 2024-02-19 19:35:48.826 2024-02-19 19:35:48.826 1000 FEE 431672 3213 6003401 2024-02-19 19:35:50.712 2024-02-19 19:35:50.712 100 FEE 431028 16301 6003402 2024-02-19 19:35:50.712 2024-02-19 19:35:50.712 900 TIP 431028 11716 6003408 2024-02-19 19:35:59.916 2024-02-19 19:35:59.916 1000 FEE 431676 2620 6003414 2024-02-19 19:36:12.36 2024-02-19 19:36:12.36 1000 FEE 431681 19576 6003427 2024-02-19 19:36:34.86 2024-02-19 19:36:34.86 100 FEE 431658 20430 6003428 2024-02-19 19:36:34.86 2024-02-19 19:36:34.86 900 TIP 431658 20327 6003448 2024-02-19 19:38:07.196 2024-02-19 19:38:07.196 2100 FEE 431574 18116 6003449 2024-02-19 19:38:07.196 2024-02-19 19:38:07.196 18900 TIP 431574 19813 6003450 2024-02-19 19:38:22.093 2024-02-19 19:38:22.093 2300 FEE 430984 15271 6003451 2024-02-19 19:38:22.093 2024-02-19 19:38:22.093 20700 TIP 430984 4064 6003471 2024-02-19 19:39:14.925 2024-02-19 19:39:14.925 1000 FEE 431691 2309 6003480 2024-02-19 19:39:36.13 2024-02-19 19:39:36.13 1000 FEE 431699 17708 6003482 2024-02-19 19:39:42.294 2024-02-19 19:39:42.294 1000 FEE 431701 1030 6003483 2024-02-19 19:39:45.846 2024-02-19 19:39:45.846 1000 FEE 431702 11999 6003524 2024-02-19 19:42:07.059 2024-02-19 19:42:07.059 100 FEE 430481 21427 6003525 2024-02-19 19:42:07.059 2024-02-19 19:42:07.059 900 TIP 430481 1007 6003526 2024-02-19 19:42:07.205 2024-02-19 19:42:07.205 900 FEE 430481 18819 6003527 2024-02-19 19:42:07.205 2024-02-19 19:42:07.205 8100 TIP 430481 17042 6003528 2024-02-19 19:42:32.554 2024-02-19 19:42:32.554 100 FEE 430472 16309 6003529 2024-02-19 19:42:32.554 2024-02-19 19:42:32.554 900 TIP 430472 19854 6003545 2024-02-19 19:43:45.246 2024-02-19 19:43:45.246 900 FEE 430326 19044 6003546 2024-02-19 19:43:45.246 2024-02-19 19:43:45.246 8100 TIP 430326 8242 6003583 2024-02-19 19:47:25.033 2024-02-19 19:47:25.033 1000 FEE 431728 18705 6003587 2024-02-19 19:47:35.85 2024-02-19 19:47:35.85 1000 FEE 431732 5752 6003588 2024-02-19 19:47:38.346 2024-02-19 19:47:38.346 1000 FEE 431733 770 6003601 2024-02-19 19:48:09.499 2024-02-19 19:48:09.499 1000 FEE 431745 14906 6003617 2024-02-19 19:50:17.187 2024-02-19 19:50:17.187 2100 FEE 430953 12779 6003618 2024-02-19 19:50:17.187 2024-02-19 19:50:17.187 18900 TIP 430953 19809 6003626 2024-02-19 19:50:42.6 2024-02-19 19:50:42.6 700 FEE 431427 7772 6003627 2024-02-19 19:50:42.6 2024-02-19 19:50:42.6 6300 TIP 431427 7746 6003628 2024-02-19 19:50:49.811 2024-02-19 19:50:49.811 700 FEE 431427 2335 6003629 2024-02-19 19:50:49.811 2024-02-19 19:50:49.811 6300 TIP 431427 13553 6003630 2024-02-19 19:50:50.485 2024-02-19 19:50:50.485 700 FEE 431427 2639 6003631 2024-02-19 19:50:50.485 2024-02-19 19:50:50.485 6300 TIP 431427 6602 6003650 2024-02-19 19:53:23.965 2024-02-19 19:53:23.965 1000 FEE 431769 6688 6003656 2024-02-19 19:53:35.254 2024-02-19 19:53:35.254 1000 FEE 431773 20523 6003660 2024-02-19 19:53:46.335 2024-02-19 19:53:46.335 1000 FEE 431777 13348 6003665 2024-02-19 19:53:55.461 2024-02-19 19:53:55.461 1000 FEE 431780 13622 6003697 2024-02-19 19:56:13.949 2024-02-19 19:56:13.949 1000 FEE 431795 17526 6003720 2024-02-19 19:57:27.9 2024-02-19 19:57:27.9 83000 DONT_LIKE_THIS 427305 13143 6003727 2024-02-19 19:57:31.208 2024-02-19 19:57:31.208 800 FEE 430607 21522 6003728 2024-02-19 19:57:31.208 2024-02-19 19:57:31.208 7200 TIP 430607 11458 6003742 2024-02-19 19:57:45.941 2024-02-19 19:57:45.941 111100 FEE 430498 8380 6003743 2024-02-19 19:57:45.941 2024-02-19 19:57:45.941 999900 TIP 430498 15045 6003746 2024-02-19 19:58:06.376 2024-02-19 19:58:06.376 1000 FEE 430811 12334 6003747 2024-02-19 19:58:06.376 2024-02-19 19:58:06.376 9000 TIP 430811 18745 6003758 2024-02-19 19:58:16.232 2024-02-19 19:58:16.232 7700 FEE 430854 19126 6003759 2024-02-19 19:58:16.232 2024-02-19 19:58:16.232 69300 TIP 430854 18932 6003760 2024-02-19 19:58:20.556 2024-02-19 19:58:20.556 7700 FEE 430854 18116 6003135 2024-02-19 19:22:36.311 2024-02-19 19:22:36.311 74700 TIP 430775 9333 6003153 2024-02-19 19:23:24.507 2024-02-19 19:23:24.507 8300 FEE 430710 3518 6003154 2024-02-19 19:23:24.507 2024-02-19 19:23:24.507 74700 TIP 430710 5758 6003159 2024-02-19 19:23:25.377 2024-02-19 19:23:25.377 8300 FEE 430710 21201 6003160 2024-02-19 19:23:25.377 2024-02-19 19:23:25.377 74700 TIP 430710 21520 6003163 2024-02-19 19:24:02.788 2024-02-19 19:24:02.788 2100 FEE 431378 19770 6003164 2024-02-19 19:24:02.788 2024-02-19 19:24:02.788 18900 TIP 431378 15938 6003170 2024-02-19 19:26:31.525 2024-02-19 19:26:31.525 1000 FEE 431593 6148 6003184 2024-02-19 19:26:58.216 2024-02-19 19:26:58.216 1000 FEE 431108 11240 6003185 2024-02-19 19:26:58.216 2024-02-19 19:26:58.216 9000 TIP 431108 20799 6003190 2024-02-19 19:27:03.041 2024-02-19 19:27:03.041 1000 STREAM 141924 14370 6003191 2024-02-19 19:27:14.088 2024-02-19 19:27:14.088 0 FEE 431593 14545 6003194 2024-02-19 19:27:55.534 2024-02-19 19:27:55.534 1000 FEE 431590 2061 6003195 2024-02-19 19:27:55.534 2024-02-19 19:27:55.534 9000 TIP 431590 17568 6003200 2024-02-19 19:27:56.692 2024-02-19 19:27:56.692 1000 FEE 431590 16177 6003201 2024-02-19 19:27:56.692 2024-02-19 19:27:56.692 9000 TIP 431590 2596 6003207 2024-02-19 19:29:03.039 2024-02-19 19:29:03.039 1000 STREAM 141924 16301 6003226 2024-02-19 19:29:10.752 2024-02-19 19:29:10.752 100 FEE 429301 14489 6003227 2024-02-19 19:29:10.752 2024-02-19 19:29:10.752 900 TIP 429301 1221 6003232 2024-02-19 19:29:16.895 2024-02-19 19:29:16.895 100 FEE 430626 711 6003233 2024-02-19 19:29:16.895 2024-02-19 19:29:16.895 900 TIP 430626 1576 6003240 2024-02-19 19:29:47.031 2024-02-19 19:29:47.031 1000 FEE 431596 10530 6003259 2024-02-19 19:31:09.246 2024-02-19 19:31:09.246 100000 DONT_LIKE_THIS 431391 12911 6003261 2024-02-19 19:31:25.903 2024-02-19 19:31:25.903 1000 FEE 431601 18188 6003266 2024-02-19 19:31:33.71 2024-02-19 19:31:33.71 2500 FEE 430412 15806 6003267 2024-02-19 19:31:33.71 2024-02-19 19:31:33.71 22500 TIP 430412 9330 6003269 2024-02-19 19:31:47.159 2024-02-19 19:31:47.159 1000 FEE 431605 5701 6003279 2024-02-19 19:31:57.724 2024-02-19 19:31:57.724 10000 DONT_LIKE_THIS 431187 902 6003282 2024-02-19 19:32:09.141 2024-02-19 19:32:09.141 1000 FEE 431610 16052 6003287 2024-02-19 19:32:13.96 2024-02-19 19:32:13.96 900 FEE 431155 4502 6003288 2024-02-19 19:32:13.96 2024-02-19 19:32:13.96 8100 TIP 431155 21413 6003289 2024-02-19 19:32:14.941 2024-02-19 19:32:14.941 1000 FEE 431613 667 6003291 2024-02-19 19:32:20.632 2024-02-19 19:32:20.632 1000 FEE 431615 19637 6003297 2024-02-19 19:32:36.291 2024-02-19 19:32:36.291 1000 FEE 431621 902 6003298 2024-02-19 19:32:39.163 2024-02-19 19:32:39.163 1000 FEE 431622 9365 6003299 2024-02-19 19:32:42.137 2024-02-19 19:32:42.137 1000 FEE 431623 18269 6003301 2024-02-19 19:32:44.95 2024-02-19 19:32:44.95 1000 FEE 431625 10273 6003305 2024-02-19 19:32:47.993 2024-02-19 19:32:47.993 2100 FEE 430931 15148 6003306 2024-02-19 19:32:47.993 2024-02-19 19:32:47.993 18900 TIP 430931 6573 6003309 2024-02-19 19:32:56.021 2024-02-19 19:32:56.021 1000 FEE 431629 20180 6003312 2024-02-19 19:33:03.243 2024-02-19 19:33:03.243 1000 FEE 431632 2156 6003313 2024-02-19 19:33:03.959 2024-02-19 19:33:03.959 1000 STREAM 141924 18016 6003315 2024-02-19 19:33:08.045 2024-02-19 19:33:08.045 1000 FEE 431634 1162 6003327 2024-02-19 19:33:19.703 2024-02-19 19:33:19.703 1000 FEE 431638 16876 6003333 2024-02-19 19:33:31.441 2024-02-19 19:33:31.441 1000 FEE 431644 1326 6003336 2024-02-19 19:33:38.16 2024-02-19 19:33:38.16 1000 FEE 431647 664 6003339 2024-02-19 19:33:46.825 2024-02-19 19:33:46.825 1000 FEE 431650 14152 6003343 2024-02-19 19:34:01.195 2024-02-19 19:34:01.195 1000 FEE 431654 7746 6003345 2024-02-19 19:34:03.974 2024-02-19 19:34:03.974 1000 STREAM 141924 650 6003349 2024-02-19 19:34:34.351 2024-02-19 19:34:34.351 900 FEE 431618 20525 6003350 2024-02-19 19:34:34.351 2024-02-19 19:34:34.351 8100 TIP 431618 20663 6003351 2024-02-19 19:34:46.446 2024-02-19 19:34:46.446 1000 FEE 431657 9246 6003352 2024-02-19 19:34:48.729 2024-02-19 19:34:48.729 100 FEE 430939 20182 6003353 2024-02-19 19:34:48.729 2024-02-19 19:34:48.729 900 TIP 430939 621 6003356 2024-02-19 19:34:49.413 2024-02-19 19:34:49.413 100 FEE 430939 20302 6003357 2024-02-19 19:34:49.413 2024-02-19 19:34:49.413 900 TIP 430939 20015 6003358 2024-02-19 19:34:49.755 2024-02-19 19:34:49.755 100 FEE 430939 21369 6003359 2024-02-19 19:34:49.755 2024-02-19 19:34:49.755 900 TIP 430939 11153 6003368 2024-02-19 19:35:02.103 2024-02-19 19:35:02.103 1000 FEE 431658 21539 6003371 2024-02-19 19:35:22.57 2024-02-19 19:35:22.57 100000 FEE 431660 20246 6003376 2024-02-19 19:35:25.235 2024-02-19 19:35:25.235 1000 FEE 431663 17157 6003379 2024-02-19 19:35:30.763 2024-02-19 19:35:30.763 1000 FEE 431665 21228 6003380 2024-02-19 19:35:33.27 2024-02-19 19:35:33.27 100 FEE 431102 19806 6003381 2024-02-19 19:35:33.27 2024-02-19 19:35:33.27 900 TIP 431102 20799 6003382 2024-02-19 19:35:33.445 2024-02-19 19:35:33.445 900 FEE 431102 21207 6003383 2024-02-19 19:35:33.445 2024-02-19 19:35:33.445 8100 TIP 431102 15624 6003384 2024-02-19 19:35:33.667 2024-02-19 19:35:33.667 1000 FEE 431666 13767 6003387 2024-02-19 19:35:39.541 2024-02-19 19:35:39.541 2100 FEE 430607 20980 6003388 2024-02-19 19:35:39.541 2024-02-19 19:35:39.541 18900 TIP 430607 21344 6003391 2024-02-19 19:35:40.032 2024-02-19 19:35:40.032 2100 FEE 430607 1505 6003392 2024-02-19 19:35:40.032 2024-02-19 19:35:40.032 18900 TIP 430607 807 6003398 2024-02-19 19:35:43.373 2024-02-19 19:35:43.373 1000 FEE 431670 19943 6003403 2024-02-19 19:35:51.088 2024-02-19 19:35:51.088 100 FEE 431028 1007 6003404 2024-02-19 19:35:51.088 2024-02-19 19:35:51.088 900 TIP 431028 1571 6003405 2024-02-19 19:35:52.077 2024-02-19 19:35:52.077 1000 FEE 431673 17148 6003407 2024-02-19 19:35:57.51 2024-02-19 19:35:57.51 1000 FEE 431675 20563 6003415 2024-02-19 19:36:15.198 2024-02-19 19:36:15.198 1000 FEE 431682 618 6003417 2024-02-19 19:36:20.723 2024-02-19 19:36:20.723 1000 FEE 431684 622 6003418 2024-02-19 19:36:23.61 2024-02-19 19:36:23.61 1000 FEE 431685 15226 6003419 2024-02-19 19:36:25.938 2024-02-19 19:36:25.938 1000 FEE 431686 21214 6003420 2024-02-19 19:36:28.402 2024-02-19 19:36:28.402 1000 FEE 431687 15351 6003422 2024-02-19 19:36:31.075 2024-02-19 19:36:31.075 1000 FEE 431689 4323 6003423 2024-02-19 19:36:34.387 2024-02-19 19:36:34.387 100 FEE 431658 2330 6003424 2024-02-19 19:36:34.387 2024-02-19 19:36:34.387 900 TIP 431658 16532 6003429 2024-02-19 19:36:35.396 2024-02-19 19:36:35.396 100 FEE 431658 691 6003430 2024-02-19 19:36:35.396 2024-02-19 19:36:35.396 900 TIP 431658 2123 6003435 2024-02-19 19:36:51.439 2024-02-19 19:36:51.439 10000 FEE 431401 20713 6003436 2024-02-19 19:36:51.439 2024-02-19 19:36:51.439 90000 TIP 431401 10519 6003442 2024-02-19 19:37:05.848 2024-02-19 19:37:05.848 9000 FEE 430879 1549 6003443 2024-02-19 19:37:05.848 2024-02-19 19:37:05.848 81000 TIP 430879 21012 6003446 2024-02-19 19:37:42.548 2024-02-19 19:37:42.548 100000 DONT_LIKE_THIS 430858 19148 6003452 2024-02-19 19:38:22.27 2024-02-19 19:38:22.27 2300 FEE 430984 4314 6003453 2024-02-19 19:38:22.27 2024-02-19 19:38:22.27 20700 TIP 430984 19773 6003468 2024-02-19 19:39:04.064 2024-02-19 19:39:04.064 2100 FEE 430913 11158 6003469 2024-02-19 19:39:04.064 2024-02-19 19:39:04.064 18900 TIP 430913 700 6003472 2024-02-19 19:39:17.458 2024-02-19 19:39:17.458 1000 FEE 431692 3411 6003474 2024-02-19 19:39:23.3 2024-02-19 19:39:23.3 1000 FEE 431694 21155 6003477 2024-02-19 19:39:33.688 2024-02-19 19:39:33.688 1000 FEE 431698 21164 6003478 2024-02-19 19:39:35.916 2024-02-19 19:39:35.916 2100 FEE 431598 837 6003479 2024-02-19 19:39:35.916 2024-02-19 19:39:35.916 18900 TIP 431598 11714 6003481 2024-02-19 19:39:39.103 2024-02-19 19:39:39.103 1000 FEE 431700 18526 6003485 2024-02-19 19:39:48.498 2024-02-19 19:39:48.498 1000 FEE 431703 19638 6003486 2024-02-19 19:39:51.677 2024-02-19 19:39:51.677 1000 FEE 431704 18828 6003491 2024-02-19 19:40:06.019 2024-02-19 19:40:06.019 1000 FEE 431708 2233 6003498 2024-02-19 19:40:20.005 2024-02-19 19:40:20.005 1000 FEE 431713 725 6003508 2024-02-19 19:41:12.469 2024-02-19 19:41:12.469 23000 DONT_LIKE_THIS 431660 8506 6003517 2024-02-19 19:41:33.003 2024-02-19 19:41:33.003 100 FEE 430523 9844 6003374 2024-02-19 19:35:24.975 2024-02-19 19:35:24.975 200 FEE 428344 6003 6003375 2024-02-19 19:35:24.975 2024-02-19 19:35:24.975 1800 TIP 428344 21578 6003399 2024-02-19 19:35:45.781 2024-02-19 19:35:45.781 1000 FEE 431671 11776 6003416 2024-02-19 19:36:17.969 2024-02-19 19:36:17.969 1000 FEE 431683 3656 6003440 2024-02-19 19:37:05.207 2024-02-19 19:37:05.207 900 FEE 430879 8284 6003441 2024-02-19 19:37:05.207 2024-02-19 19:37:05.207 8100 TIP 430879 15833 6003458 2024-02-19 19:38:24.517 2024-02-19 19:38:24.517 2300 FEE 430984 10849 6003459 2024-02-19 19:38:24.517 2024-02-19 19:38:24.517 20700 TIP 430984 5825 6003462 2024-02-19 19:38:25.06 2024-02-19 19:38:25.06 900 FEE 430854 19581 6003463 2024-02-19 19:38:25.06 2024-02-19 19:38:25.06 8100 TIP 430854 8360 6003470 2024-02-19 19:39:07.603 2024-02-19 19:39:07.603 1000 FEE 431690 21104 6003499 2024-02-19 19:40:20.929 2024-02-19 19:40:20.929 2500 FEE 431612 11527 6003500 2024-02-19 19:40:20.929 2024-02-19 19:40:20.929 22500 TIP 431612 20560 6003503 2024-02-19 19:40:39.333 2024-02-19 19:40:39.333 2100 FEE 431642 15367 6003504 2024-02-19 19:40:39.333 2024-02-19 19:40:39.333 18900 TIP 431642 6191 6003514 2024-02-19 19:41:14.084 2024-02-19 19:41:14.084 9000 FEE 430548 19581 6003515 2024-02-19 19:41:14.084 2024-02-19 19:41:14.084 81000 TIP 430548 6749 6003540 2024-02-19 19:43:25.002 2024-02-19 19:43:25.002 10000 FEE 430923 16296 6003541 2024-02-19 19:43:25.002 2024-02-19 19:43:25.002 90000 TIP 430923 19637 6003543 2024-02-19 19:43:45.067 2024-02-19 19:43:45.067 100 FEE 430326 18306 6003544 2024-02-19 19:43:45.067 2024-02-19 19:43:45.067 900 TIP 430326 896 6003549 2024-02-19 19:44:03.346 2024-02-19 19:44:03.346 100 FEE 430322 9355 6003550 2024-02-19 19:44:03.346 2024-02-19 19:44:03.346 900 TIP 430322 6798 6003564 2024-02-19 19:45:19.54 2024-02-19 19:45:19.54 1000 FEE 431722 13097 6003589 2024-02-19 19:47:41.69 2024-02-19 19:47:41.69 1000 FEE 431734 9 6003597 2024-02-19 19:48:00.375 2024-02-19 19:48:00.375 1000 FEE 431742 18313 6003600 2024-02-19 19:48:06.869 2024-02-19 19:48:06.869 1000 FEE 431744 21413 6003603 2024-02-19 19:48:15.742 2024-02-19 19:48:15.742 1000 FEE 431747 18170 6003615 2024-02-19 19:50:16.902 2024-02-19 19:50:16.902 2100 FEE 430953 19976 6003616 2024-02-19 19:50:16.902 2024-02-19 19:50:16.902 18900 TIP 430953 13544 6003619 2024-02-19 19:50:17.552 2024-02-19 19:50:17.552 2100 FEE 430953 15728 6003620 2024-02-19 19:50:17.552 2024-02-19 19:50:17.552 18900 TIP 430953 21416 6003623 2024-02-19 19:50:21.488 2024-02-19 19:50:21.488 400 FEE 430953 9450 6003624 2024-02-19 19:50:21.488 2024-02-19 19:50:21.488 3600 TIP 430953 10979 6003625 2024-02-19 19:50:41.069 2024-02-19 19:50:41.069 1000 FEE 431753 2309 6003643 2024-02-19 19:53:06.876 2024-02-19 19:53:06.876 1000 FEE 431762 1003 6003645 2024-02-19 19:53:12.655 2024-02-19 19:53:12.655 1000 FEE 431764 18679 6003678 2024-02-19 19:54:32.415 2024-02-19 19:54:32.415 1000 FEE 431792 18114 6003702 2024-02-19 19:56:58.332 2024-02-19 19:56:58.332 1000 FEE 431797 17827 6003721 2024-02-19 19:57:30.679 2024-02-19 19:57:30.679 800 FEE 430607 1425 6003722 2024-02-19 19:57:30.679 2024-02-19 19:57:30.679 7200 TIP 430607 2330 6003729 2024-02-19 19:57:31.557 2024-02-19 19:57:31.557 800 FEE 430607 14278 6003730 2024-02-19 19:57:31.557 2024-02-19 19:57:31.557 7200 TIP 430607 21619 6003754 2024-02-19 19:58:14.882 2024-02-19 19:58:14.882 7700 FEE 430854 21291 6003755 2024-02-19 19:58:14.882 2024-02-19 19:58:14.882 69300 TIP 430854 2609 6003792 2024-02-19 19:59:42.354 2024-02-19 19:59:42.354 8300 FEE 431800 1631 6003793 2024-02-19 19:59:42.354 2024-02-19 19:59:42.354 74700 TIP 431800 628 6003812 2024-02-19 20:00:05.656 2024-02-19 20:00:05.656 100000 FEE 431804 11145 6003855 2024-02-19 20:07:59.967 2024-02-19 20:07:59.967 100 FEE 431150 21365 6003856 2024-02-19 20:07:59.967 2024-02-19 20:07:59.967 900 TIP 431150 16250 6003869 2024-02-19 20:11:25.267 2024-02-19 20:11:25.267 1000 FEE 430699 14472 6003870 2024-02-19 20:11:25.267 2024-02-19 20:11:25.267 9000 TIP 430699 913 6003873 2024-02-19 20:11:37.003 2024-02-19 20:11:37.003 10000 FEE 430699 797 6003874 2024-02-19 20:11:37.003 2024-02-19 20:11:37.003 90000 TIP 430699 15094 6003894 2024-02-19 20:13:00.837 2024-02-19 20:13:00.837 8300 FEE 431816 9329 6003895 2024-02-19 20:13:00.837 2024-02-19 20:13:00.837 74700 TIP 431816 21609 6003900 2024-02-19 20:13:02.183 2024-02-19 20:13:02.183 16600 FEE 431816 4064 6003901 2024-02-19 20:13:02.183 2024-02-19 20:13:02.183 149400 TIP 431816 16176 6003911 2024-02-19 20:13:25.445 2024-02-19 20:13:25.445 8300 FEE 431809 16704 6003912 2024-02-19 20:13:25.445 2024-02-19 20:13:25.445 74700 TIP 431809 19640 6003935 2024-02-19 20:13:28.605 2024-02-19 20:13:28.605 8300 FEE 431809 5794 6003936 2024-02-19 20:13:28.605 2024-02-19 20:13:28.605 74700 TIP 431809 11942 6003953 2024-02-19 20:14:40.825 2024-02-19 20:14:40.825 0 FEE 431821 4177 6003976 2024-02-19 20:15:44.483 2024-02-19 20:15:44.483 3300 FEE 431293 2459 6003977 2024-02-19 20:15:44.483 2024-02-19 20:15:44.483 29700 TIP 431293 14650 6003981 2024-02-19 20:15:47.868 2024-02-19 20:15:47.868 3300 FEE 430607 798 6003982 2024-02-19 20:15:47.868 2024-02-19 20:15:47.868 29700 TIP 430607 16309 6004032 2024-02-19 20:18:32.877 2024-02-19 20:18:32.877 3300 FEE 430755 12346 6004033 2024-02-19 20:18:32.877 2024-02-19 20:18:32.877 29700 TIP 430755 12516 6004057 2024-02-19 20:20:15.908 2024-02-19 20:20:15.908 3300 FEE 431293 9551 6004058 2024-02-19 20:20:15.908 2024-02-19 20:20:15.908 29700 TIP 431293 4314 6004068 2024-02-19 20:20:57.022 2024-02-19 20:20:57.022 6800 FEE 430823 18816 6004069 2024-02-19 20:20:57.022 2024-02-19 20:20:57.022 61200 TIP 430823 12368 6004077 2024-02-19 20:21:36.556 2024-02-19 20:21:36.556 3300 FEE 431800 20464 6004078 2024-02-19 20:21:36.556 2024-02-19 20:21:36.556 29700 TIP 431800 13759 6004087 2024-02-19 20:22:11.6 2024-02-19 20:22:11.6 1000 FEE 431828 18862 6004112 2024-02-19 20:24:21.021 2024-02-19 20:24:21.021 2100 FEE 431816 20826 6004113 2024-02-19 20:24:21.021 2024-02-19 20:24:21.021 18900 TIP 431816 19911 6004132 2024-02-19 20:24:32.111 2024-02-19 20:24:32.111 1000 FEE 431831 1697 6004133 2024-02-19 20:24:32.111 2024-02-19 20:24:32.111 9000 TIP 431831 6765 6004162 2024-02-19 20:30:21.687 2024-02-19 20:30:21.687 1000 FEE 431836 20799 6004163 2024-02-19 20:30:21.687 2024-02-19 20:30:21.687 9000 TIP 431836 17519 6004169 2024-02-19 20:31:03.726 2024-02-19 20:31:03.726 1000 FEE 431837 8133 6004201 2024-02-19 20:32:40.733 2024-02-19 20:32:40.733 2300 FEE 431816 10060 6004202 2024-02-19 20:32:40.733 2024-02-19 20:32:40.733 20700 TIP 431816 999 6004221 2024-02-19 20:32:47.028 2024-02-19 20:32:47.028 1000 FEE 431836 19286 6004222 2024-02-19 20:32:47.028 2024-02-19 20:32:47.028 9000 TIP 431836 11395 6004239 2024-02-19 20:32:49.803 2024-02-19 20:32:49.803 1000 FEE 431836 20826 6004240 2024-02-19 20:32:49.803 2024-02-19 20:32:49.803 9000 TIP 431836 20817 6004243 2024-02-19 20:32:51.791 2024-02-19 20:32:51.791 1000 FEE 431839 828 6004252 2024-02-19 20:33:28.177 2024-02-19 20:33:28.177 2100 FEE 431756 20969 6004253 2024-02-19 20:33:28.177 2024-02-19 20:33:28.177 18900 TIP 431756 895 6004286 2024-02-19 20:39:53.874 2024-02-19 20:39:53.874 2100 FEE 430920 16816 6004287 2024-02-19 20:39:53.874 2024-02-19 20:39:53.874 18900 TIP 430920 19154 6004291 2024-02-19 20:40:24.552 2024-02-19 20:40:24.552 1000 FEE 431849 20825 6004335 2024-02-19 20:50:11.033 2024-02-19 20:50:11.033 90000 FEE 430258 17927 6004336 2024-02-19 20:50:11.033 2024-02-19 20:50:11.033 810000 TIP 430258 1145 6004361 2024-02-19 20:51:43.336 2024-02-19 20:51:43.336 100 FEE 431831 5961 6004362 2024-02-19 20:51:43.336 2024-02-19 20:51:43.336 900 TIP 431831 6384 6004371 2024-02-19 20:52:32.549 2024-02-19 20:52:32.549 9000 FEE 430920 19507 6004372 2024-02-19 20:52:32.549 2024-02-19 20:52:32.549 81000 TIP 430920 2583 6004426 2024-02-19 20:54:52.718 2024-02-19 20:54:52.718 2100 FEE 430984 10493 6004427 2024-02-19 20:54:52.718 2024-02-19 20:54:52.718 18900 TIP 430984 17184 6004429 2024-02-19 20:55:18.658 2024-02-19 20:55:18.658 1000 FEE 431813 8472 6004430 2024-02-19 20:55:18.658 2024-02-19 20:55:18.658 9000 TIP 431813 16848 6004435 2024-02-19 20:55:19.858 2024-02-19 20:55:19.858 1000 FEE 431813 19087 6004436 2024-02-19 20:55:19.858 2024-02-19 20:55:19.858 9000 TIP 431813 14906 6003490 2024-02-19 19:40:02.899 2024-02-19 19:40:02.899 1000 STREAM 141924 20168 6003569 2024-02-19 19:46:02.893 2024-02-19 19:46:02.893 1000 STREAM 141924 9169 6003612 2024-02-19 19:50:02.912 2024-02-19 19:50:02.912 1000 STREAM 141924 16753 6003636 2024-02-19 19:52:02.937 2024-02-19 19:52:02.937 1000 STREAM 141924 1658 6003641 2024-02-19 19:53:02.947 2024-02-19 19:53:02.947 1000 STREAM 141924 8059 6003668 2024-02-19 19:54:02.93 2024-02-19 19:54:02.93 1000 STREAM 141924 18705 6003820 2024-02-19 20:01:02.966 2024-02-19 20:01:02.966 1000 STREAM 141924 2748 6003836 2024-02-19 20:03:02.976 2024-02-19 20:03:02.976 1000 STREAM 141924 12222 6003845 2024-02-19 20:06:02.999 2024-02-19 20:06:02.999 1000 STREAM 141924 21480 6003859 2024-02-19 20:09:03.006 2024-02-19 20:09:03.006 1000 STREAM 141924 2749 6003866 2024-02-19 20:11:03.022 2024-02-19 20:11:03.022 1000 STREAM 141924 16355 6003876 2024-02-19 20:12:03.024 2024-02-19 20:12:03.024 1000 STREAM 141924 5499 6003904 2024-02-19 20:13:03.034 2024-02-19 20:13:03.034 1000 STREAM 141924 17106 6003518 2024-02-19 19:41:33.003 2024-02-19 19:41:33.003 900 TIP 430523 21457 6003532 2024-02-19 19:42:33.841 2024-02-19 19:42:33.841 9000 FEE 430472 15351 6003533 2024-02-19 19:42:33.841 2024-02-19 19:42:33.841 81000 TIP 430472 9352 6003542 2024-02-19 19:43:25.983 2024-02-19 19:43:25.983 1000 FEE 431721 629 6003584 2024-02-19 19:47:27.551 2024-02-19 19:47:27.551 1000 FEE 431729 19154 6003596 2024-02-19 19:47:57.973 2024-02-19 19:47:57.973 1000 FEE 431741 2390 6003605 2024-02-19 19:48:21.9 2024-02-19 19:48:21.9 1000 FEE 431749 10608 6003607 2024-02-19 19:48:44.023 2024-02-19 19:48:44.023 1000 FEE 431751 6137 6003644 2024-02-19 19:53:09.889 2024-02-19 19:53:09.889 1000 FEE 431763 2734 6003651 2024-02-19 19:53:25.099 2024-02-19 19:53:25.099 2100 FEE 431139 18446 6003652 2024-02-19 19:53:25.099 2024-02-19 19:53:25.099 18900 TIP 431139 18772 6003654 2024-02-19 19:53:29.688 2024-02-19 19:53:29.688 1000 FEE 431771 21238 6003658 2024-02-19 19:53:40.165 2024-02-19 19:53:40.165 1000 FEE 431775 20897 6003664 2024-02-19 19:53:52.912 2024-02-19 19:53:52.912 1000 FEE 431779 18663 6003670 2024-02-19 19:54:06.818 2024-02-19 19:54:06.818 1000 FEE 431784 15526 6003675 2024-02-19 19:54:17.806 2024-02-19 19:54:17.806 1000 FEE 431789 17798 6003680 2024-02-19 19:54:38.975 2024-02-19 19:54:38.975 1000 FEE 431794 18897 6003684 2024-02-19 19:55:04.202 2024-02-19 19:55:04.202 7700 FEE 430549 16229 6003685 2024-02-19 19:55:04.202 2024-02-19 19:55:04.202 69300 TIP 430549 897 6003690 2024-02-19 19:55:04.903 2024-02-19 19:55:04.903 7700 FEE 430549 4323 6003691 2024-02-19 19:55:04.903 2024-02-19 19:55:04.903 69300 TIP 430549 21466 6003700 2024-02-19 19:56:41.263 2024-02-19 19:56:41.263 10000 FEE 431796 21014 6003703 2024-02-19 19:57:00.452 2024-02-19 19:57:00.452 21000 FEE 430953 3347 6003704 2024-02-19 19:57:00.452 2024-02-19 19:57:00.452 189000 TIP 430953 20502 6003710 2024-02-19 19:57:22.768 2024-02-19 19:57:22.768 800 FEE 430680 18470 6003711 2024-02-19 19:57:22.768 2024-02-19 19:57:22.768 7200 TIP 430680 4313 6003732 2024-02-19 19:57:31.943 2024-02-19 19:57:31.943 800 FEE 430607 20657 6003733 2024-02-19 19:57:31.943 2024-02-19 19:57:31.943 7200 TIP 430607 20754 6003740 2024-02-19 19:57:41.195 2024-02-19 19:57:41.195 100 FEE 431145 20433 6003741 2024-02-19 19:57:41.195 2024-02-19 19:57:41.195 900 TIP 431145 987 6003748 2024-02-19 19:58:06.57 2024-02-19 19:58:06.57 1000 FEE 430811 1609 6003749 2024-02-19 19:58:06.57 2024-02-19 19:58:06.57 9000 TIP 430811 3478 6003774 2024-02-19 19:58:52.284 2024-02-19 19:58:52.284 1000 FEE 431401 21263 6003775 2024-02-19 19:58:52.284 2024-02-19 19:58:52.284 9000 TIP 431401 16571 6003786 2024-02-19 19:59:40.226 2024-02-19 19:59:40.226 1000 FEE 431597 2431 6003787 2024-02-19 19:59:40.226 2024-02-19 19:59:40.226 9000 TIP 431597 15115 6003796 2024-02-19 19:59:42.634 2024-02-19 19:59:42.634 8300 FEE 431800 2098 6003797 2024-02-19 19:59:42.634 2024-02-19 19:59:42.634 74700 TIP 431800 21458 6003798 2024-02-19 19:59:42.68 2024-02-19 19:59:42.68 8300 FEE 431800 1389 6003799 2024-02-19 19:59:42.68 2024-02-19 19:59:42.68 74700 TIP 431800 8037 6003813 2024-02-19 20:00:06.007 2024-02-19 20:00:06.007 1000 FEE 431805 1519 6003816 2024-02-19 20:00:17.607 2024-02-19 20:00:17.607 10000 FEE 431806 15239 6003817 2024-02-19 20:00:19.874 2024-02-19 20:00:19.874 2300 FEE 431800 17221 6003818 2024-02-19 20:00:19.874 2024-02-19 20:00:19.874 20700 TIP 431800 9347 6003828 2024-02-19 20:02:43.756 2024-02-19 20:02:43.756 1000 FEE 431807 708 6003829 2024-02-19 20:02:43.756 2024-02-19 20:02:43.756 9000 TIP 431807 3506 6003834 2024-02-19 20:02:44.615 2024-02-19 20:02:44.615 1000 FEE 431807 18199 6003835 2024-02-19 20:02:44.615 2024-02-19 20:02:44.615 9000 TIP 431807 16769 6003839 2024-02-19 20:04:24.513 2024-02-19 20:04:24.513 100 FEE 430794 15594 6003840 2024-02-19 20:04:24.513 2024-02-19 20:04:24.513 900 TIP 430794 20586 6003844 2024-02-19 20:05:19.6 2024-02-19 20:05:19.6 1000 FEE 431812 18640 6003865 2024-02-19 20:10:27.496 2024-02-19 20:10:27.496 100000 FEE 431819 16809 6003877 2024-02-19 20:12:32.484 2024-02-19 20:12:32.484 1000 FEE 431820 19198 6003892 2024-02-19 20:13:00.819 2024-02-19 20:13:00.819 8300 FEE 431816 9365 6003893 2024-02-19 20:13:00.819 2024-02-19 20:13:00.819 74700 TIP 431816 20490 6003913 2024-02-19 20:13:25.493 2024-02-19 20:13:25.493 8300 FEE 431809 18635 6003914 2024-02-19 20:13:25.493 2024-02-19 20:13:25.493 74700 TIP 431809 19263 6003917 2024-02-19 20:13:25.774 2024-02-19 20:13:25.774 8300 FEE 431809 10484 6003918 2024-02-19 20:13:25.774 2024-02-19 20:13:25.774 74700 TIP 431809 746 6003921 2024-02-19 20:13:25.971 2024-02-19 20:13:25.971 8300 FEE 431809 10818 6003922 2024-02-19 20:13:25.971 2024-02-19 20:13:25.971 74700 TIP 431809 3396 6003937 2024-02-19 20:13:28.705 2024-02-19 20:13:28.705 8300 FEE 431809 21180 6003938 2024-02-19 20:13:28.705 2024-02-19 20:13:28.705 74700 TIP 431809 17696 6003945 2024-02-19 20:14:27.348 2024-02-19 20:14:27.348 8300 FEE 430984 18736 6003946 2024-02-19 20:14:27.348 2024-02-19 20:14:27.348 74700 TIP 430984 21422 6003965 2024-02-19 20:15:29.138 2024-02-19 20:15:29.138 3300 FEE 430892 18470 6003966 2024-02-19 20:15:29.138 2024-02-19 20:15:29.138 29700 TIP 430892 20340 6003970 2024-02-19 20:15:38.624 2024-02-19 20:15:38.624 2100 FEE 431721 20434 6003971 2024-02-19 20:15:38.624 2024-02-19 20:15:38.624 18900 TIP 431721 21391 6003972 2024-02-19 20:15:38.897 2024-02-19 20:15:38.897 3300 FEE 431800 1428 6003973 2024-02-19 20:15:38.897 2024-02-19 20:15:38.897 29700 TIP 431800 9433 6003980 2024-02-19 20:15:45.978 2024-02-19 20:15:45.978 1000 DONT_LIKE_THIS 430887 9367 6003985 2024-02-19 20:15:55.556 2024-02-19 20:15:55.556 3300 FEE 430619 10586 6003986 2024-02-19 20:15:55.556 2024-02-19 20:15:55.556 29700 TIP 430619 18641 6003989 2024-02-19 20:16:02.686 2024-02-19 20:16:02.686 3300 FEE 430869 16250 6003990 2024-02-19 20:16:02.686 2024-02-19 20:16:02.686 29700 TIP 430869 21344 6003998 2024-02-19 20:16:31.875 2024-02-19 20:16:31.875 3300 FEE 430879 17209 6003999 2024-02-19 20:16:31.875 2024-02-19 20:16:31.875 29700 TIP 430879 11144 6004000 2024-02-19 20:16:32.52 2024-02-19 20:16:32.52 3300 FEE 430824 3504 6004001 2024-02-19 20:16:32.52 2024-02-19 20:16:32.52 29700 TIP 430824 10698 6004017 2024-02-19 20:17:07.604 2024-02-19 20:17:07.604 2100 FEE 404367 20619 6004018 2024-02-19 20:17:07.604 2024-02-19 20:17:07.604 18900 TIP 404367 20490 6004024 2024-02-19 20:17:48.92 2024-02-19 20:17:48.92 3300 FEE 430847 18472 6004025 2024-02-19 20:17:48.92 2024-02-19 20:17:48.92 29700 TIP 430847 6499 6004035 2024-02-19 20:19:06.26 2024-02-19 20:19:06.26 2000 FEE 430779 18378 6004036 2024-02-19 20:19:06.26 2024-02-19 20:19:06.26 18000 TIP 430779 19151 6004053 2024-02-19 20:20:13.629 2024-02-19 20:20:13.629 3300 FEE 431293 1114 6004054 2024-02-19 20:20:13.629 2024-02-19 20:20:13.629 29700 TIP 431293 7587 6004089 2024-02-19 20:23:00.864 2024-02-19 20:23:00.864 10000 FEE 431401 1135 6004090 2024-02-19 20:23:00.864 2024-02-19 20:23:00.864 90000 TIP 431401 20409 6004098 2024-02-19 20:23:03.78 2024-02-19 20:23:03.78 8300 FEE 431828 14370 6004099 2024-02-19 20:23:03.78 2024-02-19 20:23:03.78 74700 TIP 431828 19576 6004130 2024-02-19 20:24:31.075 2024-02-19 20:24:31.075 1000 FEE 431831 20840 6004131 2024-02-19 20:24:31.075 2024-02-19 20:24:31.075 9000 TIP 431831 18745 6004156 2024-02-19 20:28:47.719 2024-02-19 20:28:47.719 1000 FEE 431836 20588 6004166 2024-02-19 20:30:52.287 2024-02-19 20:30:52.287 2300 FEE 431830 20523 6004167 2024-02-19 20:30:52.287 2024-02-19 20:30:52.287 20700 TIP 431830 7899 6004172 2024-02-19 20:31:43.71 2024-02-19 20:31:43.71 12800 FEE 431223 19938 6004173 2024-02-19 20:31:43.71 2024-02-19 20:31:43.71 115200 TIP 431223 9334 6004177 2024-02-19 20:31:59.549 2024-02-19 20:31:59.549 4000 FEE 430761 19030 6004178 2024-02-19 20:31:59.549 2024-02-19 20:31:59.549 36000 TIP 430761 2529 6004186 2024-02-19 20:32:11.397 2024-02-19 20:32:11.397 4000 FEE 431654 681 6004187 2024-02-19 20:32:11.397 2024-02-19 20:32:11.397 36000 TIP 431654 882 6004197 2024-02-19 20:32:32.978 2024-02-19 20:32:32.978 2300 FEE 431838 20993 6004198 2024-02-19 20:32:32.978 2024-02-19 20:32:32.978 20700 TIP 431838 18680 6004203 2024-02-19 20:32:40.885 2024-02-19 20:32:40.885 2300 FEE 431816 12346 6004204 2024-02-19 20:32:40.885 2024-02-19 20:32:40.885 20700 TIP 431816 11498 6003519 2024-02-19 19:41:33.035 2024-02-19 19:41:33.035 900 FEE 430523 18615 6003520 2024-02-19 19:41:33.035 2024-02-19 19:41:33.035 8100 TIP 430523 6537 6003530 2024-02-19 19:42:33.104 2024-02-19 19:42:33.104 900 FEE 430472 12768 6003531 2024-02-19 19:42:33.104 2024-02-19 19:42:33.104 8100 TIP 430472 3642 6003555 2024-02-19 19:44:39.7 2024-02-19 19:44:39.7 2100 FEE 431378 2528 6003556 2024-02-19 19:44:39.7 2024-02-19 19:44:39.7 18900 TIP 431378 16830 6003567 2024-02-19 19:46:02.766 2024-02-19 19:46:02.766 900 FEE 430116 910 6003568 2024-02-19 19:46:02.766 2024-02-19 19:46:02.766 8100 TIP 430116 20182 6003574 2024-02-19 19:47:02.9 2024-02-19 19:47:02.9 1000 STREAM 141924 1060 6003576 2024-02-19 19:47:11.533 2024-02-19 19:47:11.533 400 FEE 431717 15617 6003577 2024-02-19 19:47:11.533 2024-02-19 19:47:11.533 3600 TIP 431717 13042 6003582 2024-02-19 19:47:22.681 2024-02-19 19:47:22.681 1000 FEE 431727 18892 6003591 2024-02-19 19:47:45.88 2024-02-19 19:47:45.88 1000 FEE 431736 19394 6003598 2024-02-19 19:48:02.904 2024-02-19 19:48:02.904 1000 STREAM 141924 656 6003608 2024-02-19 19:48:45.152 2024-02-19 19:48:45.152 200 FEE 431597 2029 6003609 2024-02-19 19:48:45.152 2024-02-19 19:48:45.152 1800 TIP 431597 1030 6003646 2024-02-19 19:53:13.772 2024-02-19 19:53:13.772 10000 FEE 431765 18984 6003673 2024-02-19 19:54:13.915 2024-02-19 19:54:13.915 1000 FEE 431787 19633 6003679 2024-02-19 19:54:35.696 2024-02-19 19:54:35.696 1000 FEE 431793 20826 6003681 2024-02-19 19:55:02.936 2024-02-19 19:55:02.936 1000 STREAM 141924 4062 6003688 2024-02-19 19:55:04.742 2024-02-19 19:55:04.742 7700 FEE 430549 18873 6003689 2024-02-19 19:55:04.742 2024-02-19 19:55:04.742 69300 TIP 430549 17690 6003692 2024-02-19 19:55:05.079 2024-02-19 19:55:05.079 7700 FEE 430549 2774 6003693 2024-02-19 19:55:05.079 2024-02-19 19:55:05.079 69300 TIP 430549 11621 6003696 2024-02-19 19:56:02.93 2024-02-19 19:56:02.93 1000 STREAM 141924 18862 6003705 2024-02-19 19:57:02.512 2024-02-19 19:57:02.512 21000 FEE 431798 18932 6003706 2024-02-19 19:57:02.945 2024-02-19 19:57:02.945 1000 STREAM 141924 963 6003718 2024-02-19 19:57:27.677 2024-02-19 19:57:27.677 100 FEE 431173 8326 6003719 2024-02-19 19:57:27.677 2024-02-19 19:57:27.677 900 TIP 431173 20276 6003723 2024-02-19 19:57:30.763 2024-02-19 19:57:30.763 800 FEE 430607 2010 6003724 2024-02-19 19:57:30.763 2024-02-19 19:57:30.763 7200 TIP 430607 18809 6003745 2024-02-19 19:58:02.954 2024-02-19 19:58:02.954 1000 STREAM 141924 18865 6003756 2024-02-19 19:58:16.051 2024-02-19 19:58:16.051 7700 FEE 430854 9450 6003757 2024-02-19 19:58:16.051 2024-02-19 19:58:16.051 69300 TIP 430854 11590 6003766 2024-02-19 19:58:43.305 2024-02-19 19:58:43.305 100 FEE 431081 3979 6003767 2024-02-19 19:58:43.305 2024-02-19 19:58:43.305 900 TIP 431081 18139 6003776 2024-02-19 19:58:55.403 2024-02-19 19:58:55.403 21000 FEE 431800 17446 6003777 2024-02-19 19:59:02.946 2024-02-19 19:59:02.946 1000 STREAM 141924 20120 6003794 2024-02-19 19:59:42.522 2024-02-19 19:59:42.522 8300 FEE 431800 13854 6003795 2024-02-19 19:59:42.522 2024-02-19 19:59:42.522 74700 TIP 431800 18919 6003810 2024-02-19 19:59:47.956 2024-02-19 19:59:47.956 1000 FEE 431803 722 6003811 2024-02-19 20:00:02.977 2024-02-19 20:00:02.977 1000 STREAM 141924 16259 6003822 2024-02-19 20:02:02.99 2024-02-19 20:02:02.99 1000 STREAM 141924 8074 6003826 2024-02-19 20:02:43.417 2024-02-19 20:02:43.417 1000 FEE 431807 9276 6003827 2024-02-19 20:02:43.417 2024-02-19 20:02:43.417 9000 TIP 431807 21503 6003832 2024-02-19 20:02:44.317 2024-02-19 20:02:44.317 1000 FEE 431807 9353 6003833 2024-02-19 20:02:44.317 2024-02-19 20:02:44.317 9000 TIP 431807 21406 6003838 2024-02-19 20:04:02.989 2024-02-19 20:04:02.989 1000 STREAM 141924 20704 6003843 2024-02-19 20:05:02.979 2024-02-19 20:05:02.979 1000 STREAM 141924 11263 6003847 2024-02-19 20:06:24.503 2024-02-19 20:06:24.503 1000 FEE 431805 3400 6003848 2024-02-19 20:06:24.503 2024-02-19 20:06:24.503 9000 TIP 431805 1136 6003849 2024-02-19 20:06:26.919 2024-02-19 20:06:26.919 1000 FEE 431814 16842 6003850 2024-02-19 20:06:30.404 2024-02-19 20:06:30.404 1000 FEE 431815 18380 6003851 2024-02-19 20:07:03.005 2024-02-19 20:07:03.005 1000 STREAM 141924 13198 6003857 2024-02-19 20:08:03.004 2024-02-19 20:08:03.004 1000 STREAM 141924 683 6003860 2024-02-19 20:09:09.205 2024-02-19 20:09:09.205 1000 FEE 431817 8168 6003862 2024-02-19 20:09:14.264 2024-02-19 20:09:14.264 1600 FEE 431743 20094 6003863 2024-02-19 20:09:14.264 2024-02-19 20:09:14.264 14400 TIP 431743 7986 6003864 2024-02-19 20:10:03.008 2024-02-19 20:10:03.008 1000 STREAM 141924 12819 6003867 2024-02-19 20:11:25.109 2024-02-19 20:11:25.109 1000 FEE 430699 10821 6003868 2024-02-19 20:11:25.109 2024-02-19 20:11:25.109 9000 TIP 430699 15337 6003880 2024-02-19 20:12:59.17 2024-02-19 20:12:59.17 8300 FEE 431816 16965 6003881 2024-02-19 20:12:59.17 2024-02-19 20:12:59.17 74700 TIP 431816 1836 6003898 2024-02-19 20:13:01.208 2024-02-19 20:13:01.208 8300 FEE 431816 896 6003899 2024-02-19 20:13:01.208 2024-02-19 20:13:01.208 74700 TIP 431816 19303 6003905 2024-02-19 20:13:24.922 2024-02-19 20:13:24.922 8300 FEE 431809 1433 6003906 2024-02-19 20:13:24.922 2024-02-19 20:13:24.922 74700 TIP 431809 19576 6003927 2024-02-19 20:13:27.038 2024-02-19 20:13:27.038 8300 FEE 431809 4259 6003928 2024-02-19 20:13:27.038 2024-02-19 20:13:27.038 74700 TIP 431809 11999 6003941 2024-02-19 20:14:03.034 2024-02-19 20:14:03.034 1000 STREAM 141924 13076 6003949 2024-02-19 20:14:37.917 2024-02-19 20:14:37.917 8300 FEE 430984 19890 6003950 2024-02-19 20:14:37.917 2024-02-19 20:14:37.917 74700 TIP 430984 19938 6003954 2024-02-19 20:14:58.923 2024-02-19 20:14:58.923 1000 FEE 431816 777 6003955 2024-02-19 20:14:58.923 2024-02-19 20:14:58.923 9000 TIP 431816 9347 6003956 2024-02-19 20:14:59.334 2024-02-19 20:14:59.334 1000 FEE 431816 16970 6003957 2024-02-19 20:14:59.334 2024-02-19 20:14:59.334 9000 TIP 431816 14404 6003968 2024-02-19 20:15:33.996 2024-02-19 20:15:33.996 3300 FEE 430626 18828 6003969 2024-02-19 20:15:33.996 2024-02-19 20:15:33.996 29700 TIP 430626 5809 6003974 2024-02-19 20:15:42.233 2024-02-19 20:15:42.233 3300 FEE 431293 19094 6003975 2024-02-19 20:15:42.233 2024-02-19 20:15:42.233 29700 TIP 431293 20424 6003996 2024-02-19 20:16:31.614 2024-02-19 20:16:31.614 3300 FEE 430879 1493 6003997 2024-02-19 20:16:31.614 2024-02-19 20:16:31.614 29700 TIP 430879 4538 6004006 2024-02-19 20:16:52.412 2024-02-19 20:16:52.412 2100 FEE 345420 695 6004007 2024-02-19 20:16:52.412 2024-02-19 20:16:52.412 18900 TIP 345420 7772 6004012 2024-02-19 20:16:59.661 2024-02-19 20:16:59.661 2100 FEE 345258 6653 6004013 2024-02-19 20:16:59.661 2024-02-19 20:16:59.661 18900 TIP 345258 17800 6004014 2024-02-19 20:17:02.342 2024-02-19 20:17:02.342 16600 FEE 431808 4323 6004015 2024-02-19 20:17:02.342 2024-02-19 20:17:02.342 149400 TIP 431808 19535 6004026 2024-02-19 20:17:55.133 2024-02-19 20:17:55.133 2200 FEE 430847 1209 6004027 2024-02-19 20:17:55.133 2024-02-19 20:17:55.133 19800 TIP 430847 2508 6004048 2024-02-19 20:19:47.029 2024-02-19 20:19:47.029 3300 FEE 430836 21332 6004049 2024-02-19 20:19:47.029 2024-02-19 20:19:47.029 29700 TIP 430836 18601 6004073 2024-02-19 20:21:25.49 2024-02-19 20:21:25.49 2100 FEE 431803 20680 6004074 2024-02-19 20:21:25.49 2024-02-19 20:21:25.49 18900 TIP 431803 8570 6004081 2024-02-19 20:21:53.413 2024-02-19 20:21:53.413 1000 FEE 431827 19332 6004085 2024-02-19 20:22:04.175 2024-02-19 20:22:04.175 2100 FEE 431387 9820 6004086 2024-02-19 20:22:04.175 2024-02-19 20:22:04.175 18900 TIP 431387 20837 6004088 2024-02-19 20:22:25.457 2024-02-19 20:22:25.457 0 FEE 431828 5758 6004095 2024-02-19 20:23:02.659 2024-02-19 20:23:02.659 8300 FEE 431828 634 6004096 2024-02-19 20:23:02.659 2024-02-19 20:23:02.659 74700 TIP 431828 886 6004116 2024-02-19 20:24:29.467 2024-02-19 20:24:29.467 1000 FEE 431831 20023 6004117 2024-02-19 20:24:29.467 2024-02-19 20:24:29.467 9000 TIP 431831 21591 6004122 2024-02-19 20:24:30.042 2024-02-19 20:24:30.042 1000 FEE 431831 711 6004123 2024-02-19 20:24:30.042 2024-02-19 20:24:30.042 9000 TIP 431831 19126 6004124 2024-02-19 20:24:30.21 2024-02-19 20:24:30.21 1000 FEE 431831 18219 6004125 2024-02-19 20:24:30.21 2024-02-19 20:24:30.21 9000 TIP 431831 20624 6004179 2024-02-19 20:31:59.843 2024-02-19 20:31:59.843 36000 FEE 430761 14074 6003669 2024-02-19 19:54:03.921 2024-02-19 19:54:03.921 1000 FEE 431783 9346 6003686 2024-02-19 19:55:04.541 2024-02-19 19:55:04.541 7700 FEE 430549 19839 6003687 2024-02-19 19:55:04.541 2024-02-19 19:55:04.541 69300 TIP 430549 11165 6003709 2024-02-19 19:57:21.606 2024-02-19 19:57:21.606 83000 DONT_LIKE_THIS 427655 4115 6003714 2024-02-19 19:57:25.004 2024-02-19 19:57:25.004 800 FEE 430680 5806 6003715 2024-02-19 19:57:25.004 2024-02-19 19:57:25.004 7200 TIP 430680 3411 6003716 2024-02-19 19:57:27.675 2024-02-19 19:57:27.675 800 FEE 430680 9450 6003717 2024-02-19 19:57:27.675 2024-02-19 19:57:27.675 7200 TIP 430680 18403 6003734 2024-02-19 19:57:32.197 2024-02-19 19:57:32.197 800 FEE 430607 5775 6003735 2024-02-19 19:57:32.197 2024-02-19 19:57:32.197 7200 TIP 430607 16562 6003738 2024-02-19 19:57:33.954 2024-02-19 19:57:33.954 800 FEE 430607 20450 6003739 2024-02-19 19:57:33.954 2024-02-19 19:57:33.954 7200 TIP 430607 5779 6003753 2024-02-19 19:58:12.489 2024-02-19 19:58:12.489 0 FEE 431799 12057 6003762 2024-02-19 19:58:21.54 2024-02-19 19:58:21.54 7700 FEE 430854 19117 6003763 2024-02-19 19:58:21.54 2024-02-19 19:58:21.54 69300 TIP 430854 18873 6003768 2024-02-19 19:58:51.788 2024-02-19 19:58:51.788 1000 FEE 431401 20470 6003769 2024-02-19 19:58:51.788 2024-02-19 19:58:51.788 9000 TIP 431401 19732 6003770 2024-02-19 19:58:51.955 2024-02-19 19:58:51.955 1000 FEE 431401 19796 6003771 2024-02-19 19:58:51.955 2024-02-19 19:58:51.955 9000 TIP 431401 18306 6003783 2024-02-19 19:59:23.364 2024-02-19 19:59:23.364 1000 FEE 431591 6419 6003784 2024-02-19 19:59:23.364 2024-02-19 19:59:23.364 9000 TIP 431591 8242 6003785 2024-02-19 19:59:29.935 2024-02-19 19:59:29.935 1000 FEE 431802 699 6003802 2024-02-19 19:59:42.891 2024-02-19 19:59:42.891 8300 FEE 431800 17103 6003803 2024-02-19 19:59:42.891 2024-02-19 19:59:42.891 74700 TIP 431800 13759 6003804 2024-02-19 19:59:43.005 2024-02-19 19:59:43.005 8300 FEE 431800 21493 6003805 2024-02-19 19:59:43.005 2024-02-19 19:59:43.005 74700 TIP 431800 14950 6003814 2024-02-19 20:00:14.593 2024-02-19 20:00:14.593 100 FEE 430927 15941 6003815 2024-02-19 20:00:14.593 2024-02-19 20:00:14.593 900 TIP 430927 9418 6003837 2024-02-19 20:03:47.817 2024-02-19 20:03:47.817 100000 FEE 431809 17741 6003841 2024-02-19 20:04:33.571 2024-02-19 20:04:33.571 1000 FEE 431810 14404 6003858 2024-02-19 20:08:33.108 2024-02-19 20:08:33.108 100000 FEE 431816 15588 6003861 2024-02-19 20:09:11.766 2024-02-19 20:09:11.766 1000 FEE 431818 21494 6003875 2024-02-19 20:11:46.942 2024-02-19 20:11:46.942 0 FEE 431816 18468 6003890 2024-02-19 20:13:00.651 2024-02-19 20:13:00.651 8300 FEE 431816 963 6003891 2024-02-19 20:13:00.651 2024-02-19 20:13:00.651 74700 TIP 431816 16532 6003951 2024-02-19 20:14:38.126 2024-02-19 20:14:38.126 8300 FEE 430984 733 6003952 2024-02-19 20:14:38.126 2024-02-19 20:14:38.126 74700 TIP 430984 18705 6003987 2024-02-19 20:16:00.779 2024-02-19 20:16:00.779 3300 FEE 430869 762 6003988 2024-02-19 20:16:00.779 2024-02-19 20:16:00.779 29700 TIP 430869 5806 6004008 2024-02-19 20:16:53.861 2024-02-19 20:16:53.861 2100 FEE 345312 4415 6004009 2024-02-19 20:16:53.861 2024-02-19 20:16:53.861 18900 TIP 345312 21263 6004019 2024-02-19 20:17:12.983 2024-02-19 20:17:12.983 11700 FEE 431087 1401 6004020 2024-02-19 20:17:12.983 2024-02-19 20:17:12.983 105300 TIP 431087 2328 6004021 2024-02-19 20:17:40.806 2024-02-19 20:17:40.806 1000 FEE 431823 695 6004022 2024-02-19 20:17:48.788 2024-02-19 20:17:48.788 3300 FEE 430847 16284 6004023 2024-02-19 20:17:48.788 2024-02-19 20:17:48.788 29700 TIP 430847 706 6004039 2024-02-19 20:19:11.848 2024-02-19 20:19:11.848 6000 FEE 430789 21091 6004040 2024-02-19 20:19:11.848 2024-02-19 20:19:11.848 54000 TIP 430789 787 6004059 2024-02-19 20:20:23.962 2024-02-19 20:20:23.962 3300 FEE 431574 20825 6004060 2024-02-19 20:20:23.962 2024-02-19 20:20:23.962 29700 TIP 431574 19966 6004071 2024-02-19 20:21:24.178 2024-02-19 20:21:24.178 2100 FEE 431597 21527 6004072 2024-02-19 20:21:24.178 2024-02-19 20:21:24.178 18900 TIP 431597 1985 6004075 2024-02-19 20:21:25.964 2024-02-19 20:21:25.964 2100 FEE 431751 9345 6004076 2024-02-19 20:21:25.964 2024-02-19 20:21:25.964 18900 TIP 431751 12819 6004091 2024-02-19 20:23:02.308 2024-02-19 20:23:02.308 8300 FEE 431828 19417 6004092 2024-02-19 20:23:02.308 2024-02-19 20:23:02.308 74700 TIP 431828 14688 6004100 2024-02-19 20:23:05.082 2024-02-19 20:23:05.082 8300 FEE 431828 19759 6004101 2024-02-19 20:23:05.082 2024-02-19 20:23:05.082 74700 TIP 431828 4250 6004118 2024-02-19 20:24:29.632 2024-02-19 20:24:29.632 1000 FEE 431831 10536 6004119 2024-02-19 20:24:29.632 2024-02-19 20:24:29.632 9000 TIP 431831 12422 6004141 2024-02-19 20:25:12.209 2024-02-19 20:25:12.209 2100 FEE 431597 17690 6004142 2024-02-19 20:25:12.209 2024-02-19 20:25:12.209 18900 TIP 431597 21373 6004150 2024-02-19 20:26:37.155 2024-02-19 20:26:37.155 1000 FEE 431834 12819 6004152 2024-02-19 20:28:00.861 2024-02-19 20:28:00.861 2100 FEE 431831 20251 6004153 2024-02-19 20:28:00.861 2024-02-19 20:28:00.861 18900 TIP 431831 9350 6004158 2024-02-19 20:29:24.699 2024-02-19 20:29:24.699 4300 FEE 431642 18640 6004159 2024-02-19 20:29:24.699 2024-02-19 20:29:24.699 38700 TIP 431642 20208 6004174 2024-02-19 20:31:44.482 2024-02-19 20:31:44.482 0 FEE 431835 21037 6004181 2024-02-19 20:32:00.406 2024-02-19 20:32:00.406 360000 FEE 430761 20717 6004182 2024-02-19 20:32:00.406 2024-02-19 20:32:00.406 3240000 TIP 430761 1044 6004219 2024-02-19 20:32:46.853 2024-02-19 20:32:46.853 1000 FEE 431836 21281 6004220 2024-02-19 20:32:46.853 2024-02-19 20:32:46.853 9000 TIP 431836 2224 6004241 2024-02-19 20:32:50.209 2024-02-19 20:32:50.209 1000 FEE 431836 16350 6004242 2024-02-19 20:32:50.209 2024-02-19 20:32:50.209 9000 TIP 431836 14552 6004267 2024-02-19 20:36:23.892 2024-02-19 20:36:23.892 2100 FEE 431412 19660 6004268 2024-02-19 20:36:23.892 2024-02-19 20:36:23.892 18900 TIP 431412 16267 6004272 2024-02-19 20:36:59.16 2024-02-19 20:36:59.16 2100 FEE 431838 733 6004273 2024-02-19 20:36:59.16 2024-02-19 20:36:59.16 18900 TIP 431838 19909 6004280 2024-02-19 20:38:02.054 2024-02-19 20:38:02.054 1000 FEE 431847 19785 6004297 2024-02-19 20:41:18.415 2024-02-19 20:41:18.415 1000 FEE 431852 2075 6004324 2024-02-19 20:49:35.158 2024-02-19 20:49:35.158 900 FEE 431809 2123 6004325 2024-02-19 20:49:35.158 2024-02-19 20:49:35.158 8100 TIP 431809 1631 6004332 2024-02-19 20:50:00.998 2024-02-19 20:50:00.998 90000 FEE 430700 18626 6004333 2024-02-19 20:50:00.998 2024-02-19 20:50:00.998 810000 TIP 430700 1801 6004343 2024-02-19 20:50:40.265 2024-02-19 20:50:40.265 900 FEE 431844 1180 6004344 2024-02-19 20:50:40.265 2024-02-19 20:50:40.265 8100 TIP 431844 1624 6004345 2024-02-19 20:50:40.975 2024-02-19 20:50:40.975 1000 FEE 431855 1483 6004359 2024-02-19 20:51:38.121 2024-02-19 20:51:38.121 1000 FEE 431856 12768 6004369 2024-02-19 20:52:30.739 2024-02-19 20:52:30.739 9000 FEE 430549 1051 6004370 2024-02-19 20:52:30.739 2024-02-19 20:52:30.739 81000 TIP 430549 8505 6004375 2024-02-19 20:52:42.318 2024-02-19 20:52:42.318 90000 FEE 430496 17519 6004376 2024-02-19 20:52:42.318 2024-02-19 20:52:42.318 810000 TIP 430496 18583 6004381 2024-02-19 20:52:57.66 2024-02-19 20:52:57.66 9000 FEE 430794 4521 6004382 2024-02-19 20:52:57.66 2024-02-19 20:52:57.66 81000 TIP 430794 11898 6004387 2024-02-19 20:53:14.011 2024-02-19 20:53:14.011 900 FEE 430619 19810 6004388 2024-02-19 20:53:14.011 2024-02-19 20:53:14.011 8100 TIP 430619 7992 6004397 2024-02-19 20:53:18.187 2024-02-19 20:53:18.187 1000 FEE 431835 1585 6004398 2024-02-19 20:53:18.187 2024-02-19 20:53:18.187 9000 TIP 431835 1512 6004411 2024-02-19 20:53:46.526 2024-02-19 20:53:46.526 100 FEE 431823 20788 6004412 2024-02-19 20:53:46.526 2024-02-19 20:53:46.526 900 TIP 431823 1717 6004416 2024-02-19 20:54:32.028 2024-02-19 20:54:32.028 2100 FEE 431816 897 6004417 2024-02-19 20:54:32.028 2024-02-19 20:54:32.028 18900 TIP 431816 20757 6004439 2024-02-19 20:55:49.436 2024-02-19 20:55:49.436 1000 FEE 431858 21218 6004449 2024-02-19 20:57:26.113 2024-02-19 20:57:26.113 100 FEE 431816 1438 6004450 2024-02-19 20:57:26.113 2024-02-19 20:57:26.113 900 TIP 431816 3411 6004453 2024-02-19 20:57:26.445 2024-02-19 20:57:26.445 100 FEE 431816 20881 6004454 2024-02-19 20:57:26.445 2024-02-19 20:57:26.445 900 TIP 431816 14663 6003699 2024-02-19 19:56:35.661 2024-02-19 19:56:35.661 9000 TIP 431688 3686 6003701 2024-02-19 19:56:56.311 2024-02-19 19:56:56.311 83000 DONT_LIKE_THIS 431765 18357 6003725 2024-02-19 19:57:30.957 2024-02-19 19:57:30.957 800 FEE 430607 19941 6003726 2024-02-19 19:57:30.957 2024-02-19 19:57:30.957 7200 TIP 430607 11192 6003731 2024-02-19 19:57:31.704 2024-02-19 19:57:31.704 83000 DONT_LIKE_THIS 427467 18690 6003736 2024-02-19 19:57:33.285 2024-02-19 19:57:33.285 1600 FEE 430607 9366 6003737 2024-02-19 19:57:33.285 2024-02-19 19:57:33.285 14400 TIP 430607 18368 6003750 2024-02-19 19:58:06.737 2024-02-19 19:58:06.737 1000 FEE 430811 18426 6003751 2024-02-19 19:58:06.737 2024-02-19 19:58:06.737 9000 TIP 430811 18269 6003778 2024-02-19 19:59:04.825 2024-02-19 19:59:04.825 1000 FEE 431801 6688 6003808 2024-02-19 19:59:43.225 2024-02-19 19:59:43.225 8300 FEE 431800 965 6003809 2024-02-19 19:59:43.225 2024-02-19 19:59:43.225 74700 TIP 431800 654 6003823 2024-02-19 20:02:31.44 2024-02-19 20:02:31.44 100 FEE 430496 4378 6003824 2024-02-19 20:02:31.44 2024-02-19 20:02:31.44 900 TIP 430496 974 6003842 2024-02-19 20:04:56.367 2024-02-19 20:04:56.367 1000 FEE 431811 673 6003852 2024-02-19 20:07:32.864 2024-02-19 20:07:32.864 300 FEE 430956 1326 6003853 2024-02-19 20:07:32.864 2024-02-19 20:07:32.864 2700 TIP 430956 1602 6003882 2024-02-19 20:12:59.333 2024-02-19 20:12:59.333 8300 FEE 431816 861 6003883 2024-02-19 20:12:59.333 2024-02-19 20:12:59.333 74700 TIP 431816 714 6003896 2024-02-19 20:13:01.136 2024-02-19 20:13:01.136 8300 FEE 431816 960 6003897 2024-02-19 20:13:01.136 2024-02-19 20:13:01.136 74700 TIP 431816 20183 6003915 2024-02-19 20:13:25.604 2024-02-19 20:13:25.604 8300 FEE 431809 20376 6003916 2024-02-19 20:13:25.604 2024-02-19 20:13:25.604 74700 TIP 431809 6573 6003925 2024-02-19 20:13:26.925 2024-02-19 20:13:26.925 8300 FEE 431809 2188 6003926 2024-02-19 20:13:26.925 2024-02-19 20:13:26.925 74700 TIP 431809 17091 6003960 2024-02-19 20:15:00.116 2024-02-19 20:15:00.116 1000 FEE 431816 9334 6003961 2024-02-19 20:15:00.116 2024-02-19 20:15:00.116 9000 TIP 431816 9332 6003967 2024-02-19 20:15:30.205 2024-02-19 20:15:30.205 1000 FEE 431822 691 6003992 2024-02-19 20:16:19.73 2024-02-19 20:16:19.73 3300 FEE 430619 21148 6003993 2024-02-19 20:16:19.73 2024-02-19 20:16:19.73 29700 TIP 430619 21180 6003994 2024-02-19 20:16:28.544 2024-02-19 20:16:28.544 2100 FEE 431517 16667 6003995 2024-02-19 20:16:28.544 2024-02-19 20:16:28.544 18900 TIP 431517 18815 6004037 2024-02-19 20:19:08.838 2024-02-19 20:19:08.838 10000 FEE 430323 8360 6004038 2024-02-19 20:19:08.838 2024-02-19 20:19:08.838 90000 TIP 430323 859 6004041 2024-02-19 20:19:16.85 2024-02-19 20:19:16.85 7000 FEE 430790 14857 6004042 2024-02-19 20:19:16.85 2024-02-19 20:19:16.85 63000 TIP 430790 3461 6004044 2024-02-19 20:19:31.573 2024-02-19 20:19:31.573 3300 FEE 430635 15491 6004045 2024-02-19 20:19:31.573 2024-02-19 20:19:31.573 29700 TIP 430635 15200 6004067 2024-02-19 20:20:54.366 2024-02-19 20:20:54.366 1000 FEE 431826 17817 6004105 2024-02-19 20:23:30.43 2024-02-19 20:23:30.43 2300 FEE 431828 15337 6004106 2024-02-19 20:23:30.43 2024-02-19 20:23:30.43 20700 TIP 431828 19967 6004114 2024-02-19 20:24:29.425 2024-02-19 20:24:29.425 1000 FEE 431831 1784 6004115 2024-02-19 20:24:29.425 2024-02-19 20:24:29.425 9000 TIP 431831 17722 6004128 2024-02-19 20:24:30.894 2024-02-19 20:24:30.894 1000 FEE 431831 15271 6004129 2024-02-19 20:24:30.894 2024-02-19 20:24:30.894 9000 TIP 431831 1039 6004148 2024-02-19 20:26:17.118 2024-02-19 20:26:17.118 2100 FEE 431167 20744 6004149 2024-02-19 20:26:17.118 2024-02-19 20:26:17.118 18900 TIP 431167 20272 6004155 2024-02-19 20:28:46.732 2024-02-19 20:28:46.732 1000 FEE 431835 20889 6004170 2024-02-19 20:31:39.576 2024-02-19 20:31:39.576 4000 FEE 431831 8376 6004171 2024-02-19 20:31:39.576 2024-02-19 20:31:39.576 36000 TIP 431831 9426 6004190 2024-02-19 20:32:14.306 2024-02-19 20:32:14.306 4000 FEE 430764 17166 6004191 2024-02-19 20:32:14.306 2024-02-19 20:32:14.306 36000 TIP 430764 21356 6004194 2024-02-19 20:32:14.792 2024-02-19 20:32:14.792 1000 FEE 431838 4388 6004207 2024-02-19 20:32:45.808 2024-02-19 20:32:45.808 1000 FEE 430856 964 6004208 2024-02-19 20:32:45.808 2024-02-19 20:32:45.808 9000 TIP 430856 19037 6004211 2024-02-19 20:32:46.118 2024-02-19 20:32:46.118 1000 FEE 431836 21532 6004212 2024-02-19 20:32:46.118 2024-02-19 20:32:46.118 9000 TIP 431836 1426 6004217 2024-02-19 20:32:46.631 2024-02-19 20:32:46.631 1000 FEE 431836 14669 6004218 2024-02-19 20:32:46.631 2024-02-19 20:32:46.631 9000 TIP 431836 20754 6004233 2024-02-19 20:32:48.106 2024-02-19 20:32:48.106 1000 FEE 431836 20573 6004234 2024-02-19 20:32:48.106 2024-02-19 20:32:48.106 9000 TIP 431836 13927 6004263 2024-02-19 20:35:53.568 2024-02-19 20:35:53.568 1000 FEE 430755 21104 6004264 2024-02-19 20:35:53.568 2024-02-19 20:35:53.568 9000 TIP 430755 19663 6004278 2024-02-19 20:37:37.402 2024-02-19 20:37:37.402 1000 FEE 431845 20757 6004288 2024-02-19 20:39:54.352 2024-02-19 20:39:54.352 2100 FEE 430920 12122 6004289 2024-02-19 20:39:54.352 2024-02-19 20:39:54.352 18900 TIP 430920 10519 6004299 2024-02-19 20:42:31.922 2024-02-19 20:42:31.922 2600 FEE 430650 21047 6004300 2024-02-19 20:42:31.922 2024-02-19 20:42:31.922 23400 TIP 430650 17838 6004310 2024-02-19 20:45:01.646 2024-02-19 20:45:01.646 4000 FEE 431849 2065 6004311 2024-02-19 20:45:01.646 2024-02-19 20:45:01.646 36000 TIP 431849 20817 6004315 2024-02-19 20:47:12.042 2024-02-19 20:47:12.042 2600 FEE 430927 1094 6004316 2024-02-19 20:47:12.042 2024-02-19 20:47:12.042 23400 TIP 430927 9354 6004348 2024-02-19 20:50:53.991 2024-02-19 20:50:53.991 10000 FEE 431567 20479 6004349 2024-02-19 20:50:53.991 2024-02-19 20:50:53.991 90000 TIP 431567 1733 6004367 2024-02-19 20:52:30.265 2024-02-19 20:52:30.265 1000 FEE 431846 18243 6004368 2024-02-19 20:52:30.265 2024-02-19 20:52:30.265 9000 TIP 431846 18269 6004377 2024-02-19 20:52:56.336 2024-02-19 20:52:56.336 100 FEE 430794 14308 6004378 2024-02-19 20:52:56.336 2024-02-19 20:52:56.336 900 TIP 430794 21413 6004401 2024-02-19 20:53:41.207 2024-02-19 20:53:41.207 10000 FEE 431823 16145 6004402 2024-02-19 20:53:41.207 2024-02-19 20:53:41.207 90000 TIP 431823 19531 6004405 2024-02-19 20:53:44.453 2024-02-19 20:53:44.453 100 FEE 431823 20680 6004406 2024-02-19 20:53:44.453 2024-02-19 20:53:44.453 900 TIP 431823 622 6004407 2024-02-19 20:53:44.712 2024-02-19 20:53:44.712 100 FEE 431823 9200 6004408 2024-02-19 20:53:44.712 2024-02-19 20:53:44.712 900 TIP 431823 18675 6004413 2024-02-19 20:53:51.941 2024-02-19 20:53:51.941 600 FEE 431823 6594 6004414 2024-02-19 20:53:51.941 2024-02-19 20:53:51.941 5400 TIP 431823 1489 6004418 2024-02-19 20:54:36.457 2024-02-19 20:54:36.457 2100 FEE 431800 19031 6004419 2024-02-19 20:54:36.457 2024-02-19 20:54:36.457 18900 TIP 431800 12921 6004431 2024-02-19 20:55:19.022 2024-02-19 20:55:19.022 1000 FEE 431813 2010 6004432 2024-02-19 20:55:19.022 2024-02-19 20:55:19.022 9000 TIP 431813 17106 6004462 2024-02-19 20:58:12.001 2024-02-19 20:58:12.001 2100 FEE 430811 19030 6004463 2024-02-19 20:58:12.001 2024-02-19 20:58:12.001 18900 TIP 430811 2075 6004472 2024-02-19 20:59:22.702 2024-02-19 20:59:22.702 2300 FEE 431854 18941 6004473 2024-02-19 20:59:22.702 2024-02-19 20:59:22.702 20700 TIP 431854 19381 6004495 2024-02-19 21:00:18.61 2024-02-19 21:00:18.61 1000 FEE 431844 16250 6004496 2024-02-19 21:00:18.61 2024-02-19 21:00:18.61 9000 TIP 431844 18008 6004506 2024-02-19 21:00:36.639 2024-02-19 21:00:36.639 2100 FEE 431800 1800 6004507 2024-02-19 21:00:36.639 2024-02-19 21:00:36.639 18900 TIP 431800 928 6004524 2024-02-19 21:01:36.714 2024-02-19 21:01:36.714 4000 FEE 431401 18138 6004525 2024-02-19 21:01:36.714 2024-02-19 21:01:36.714 36000 TIP 431401 4126 6004543 2024-02-19 21:02:30.03 2024-02-19 21:02:30.03 1000 FEE 431867 8385 6004569 2024-02-19 21:06:17.183 2024-02-19 21:06:17.183 5100 FEE 431830 19987 6004570 2024-02-19 21:06:17.183 2024-02-19 21:06:17.183 45900 TIP 431830 21555 6004576 2024-02-19 21:08:29.357 2024-02-19 21:08:29.357 1000 FEE 431870 11590 6004577 2024-02-19 21:08:43.886 2024-02-19 21:08:43.886 2100 FEE 431593 18690 6004578 2024-02-19 21:08:43.886 2024-02-19 21:08:43.886 18900 TIP 431593 5852 6004588 2024-02-19 21:12:07.729 2024-02-19 21:12:07.729 100000 FEE 431872 3504 6003761 2024-02-19 19:58:20.556 2024-02-19 19:58:20.556 69300 TIP 430854 986 6003788 2024-02-19 19:59:40.577 2024-02-19 19:59:40.577 2000 FEE 431597 14774 6003789 2024-02-19 19:59:40.577 2024-02-19 19:59:40.577 18000 TIP 431597 21159 6003825 2024-02-19 20:02:39.878 2024-02-19 20:02:39.878 1000 FEE 431808 14295 6003878 2024-02-19 20:12:59.091 2024-02-19 20:12:59.091 8300 FEE 431816 4079 6003879 2024-02-19 20:12:59.091 2024-02-19 20:12:59.091 74700 TIP 431816 19537 6003886 2024-02-19 20:12:59.758 2024-02-19 20:12:59.758 8300 FEE 431816 21614 6003887 2024-02-19 20:12:59.758 2024-02-19 20:12:59.758 74700 TIP 431816 19322 6003888 2024-02-19 20:13:00.619 2024-02-19 20:13:00.619 8300 FEE 431816 1801 6003889 2024-02-19 20:13:00.619 2024-02-19 20:13:00.619 74700 TIP 431816 18412 6003902 2024-02-19 20:13:02.271 2024-02-19 20:13:02.271 8300 FEE 431816 9329 6003903 2024-02-19 20:13:02.271 2024-02-19 20:13:02.271 74700 TIP 431816 9985 6003931 2024-02-19 20:13:27.358 2024-02-19 20:13:27.358 8300 FEE 431809 17535 6003932 2024-02-19 20:13:27.358 2024-02-19 20:13:27.358 74700 TIP 431809 1120 6003947 2024-02-19 20:14:37.777 2024-02-19 20:14:37.777 8300 FEE 430984 6361 6003948 2024-02-19 20:14:37.777 2024-02-19 20:14:37.777 74700 TIP 430984 6058 6003958 2024-02-19 20:14:59.863 2024-02-19 20:14:59.863 1000 FEE 431816 19795 6003959 2024-02-19 20:14:59.863 2024-02-19 20:14:59.863 9000 TIP 431816 7654 6003983 2024-02-19 20:15:51.913 2024-02-19 20:15:51.913 3300 FEE 430984 13174 6003984 2024-02-19 20:15:51.913 2024-02-19 20:15:51.913 29700 TIP 430984 20099 6004002 2024-02-19 20:16:32.615 2024-02-19 20:16:32.615 3300 FEE 430824 13782 6004003 2024-02-19 20:16:32.615 2024-02-19 20:16:32.615 29700 TIP 430824 4177 6004004 2024-02-19 20:16:49.948 2024-02-19 20:16:49.948 2100 FEE 346002 1316 6004005 2024-02-19 20:16:49.948 2024-02-19 20:16:49.948 18900 TIP 346002 4415 6004010 2024-02-19 20:16:57.407 2024-02-19 20:16:57.407 2100 FEE 345292 21562 6004011 2024-02-19 20:16:57.407 2024-02-19 20:16:57.407 18900 TIP 345292 17541 6004029 2024-02-19 20:18:23.649 2024-02-19 20:18:23.649 1000 FEE 431824 825 6004043 2024-02-19 20:19:19.615 2024-02-19 20:19:19.615 1000 FEE 431825 6687 6004063 2024-02-19 20:20:27.253 2024-02-19 20:20:27.253 1200 FEE 431574 5069 6004064 2024-02-19 20:20:27.253 2024-02-19 20:20:27.253 10800 TIP 431574 18658 6004065 2024-02-19 20:20:34.651 2024-02-19 20:20:34.651 2100 FEE 431816 20704 6004066 2024-02-19 20:20:34.651 2024-02-19 20:20:34.651 18900 TIP 431816 11240 6004079 2024-02-19 20:21:40.087 2024-02-19 20:21:40.087 3300 FEE 431401 4059 6004080 2024-02-19 20:21:40.087 2024-02-19 20:21:40.087 29700 TIP 431401 21379 6004102 2024-02-19 20:23:19.534 2024-02-19 20:23:19.534 1000 FEE 431829 13574 6004103 2024-02-19 20:23:29.62 2024-02-19 20:23:29.62 2300 FEE 431828 1428 6004104 2024-02-19 20:23:29.62 2024-02-19 20:23:29.62 20700 TIP 431828 16447 6004107 2024-02-19 20:23:44.863 2024-02-19 20:23:44.863 10000 FEE 431593 13204 6004108 2024-02-19 20:23:44.863 2024-02-19 20:23:44.863 90000 TIP 431593 18817 6004137 2024-02-19 20:25:09.308 2024-02-19 20:25:09.308 2100 FEE 431800 21609 6004138 2024-02-19 20:25:09.308 2024-02-19 20:25:09.308 18900 TIP 431800 10554 6004146 2024-02-19 20:26:05.571 2024-02-19 20:26:05.571 2100 FEE 431720 895 6004147 2024-02-19 20:26:05.571 2024-02-19 20:26:05.571 18900 TIP 431720 1803 6004164 2024-02-19 20:30:52.177 2024-02-19 20:30:52.177 2300 FEE 431830 20636 6004165 2024-02-19 20:30:52.177 2024-02-19 20:30:52.177 20700 TIP 431830 1180 6004192 2024-02-19 20:32:14.582 2024-02-19 20:32:14.582 36000 FEE 430764 19909 6004193 2024-02-19 20:32:14.582 2024-02-19 20:32:14.582 324000 TIP 430764 20381 6004195 2024-02-19 20:32:15.254 2024-02-19 20:32:15.254 2100 FEE 431836 16633 6004196 2024-02-19 20:32:15.254 2024-02-19 20:32:15.254 18900 TIP 431836 12057 6004205 2024-02-19 20:32:41 2024-02-19 20:32:41 2300 FEE 431816 18264 6004206 2024-02-19 20:32:41 2024-02-19 20:32:41 20700 TIP 431816 21292 6004225 2024-02-19 20:32:47.404 2024-02-19 20:32:47.404 1000 FEE 431836 14195 6004226 2024-02-19 20:32:47.404 2024-02-19 20:32:47.404 9000 TIP 431836 20143 6004235 2024-02-19 20:32:48.526 2024-02-19 20:32:48.526 1000 FEE 431836 18625 6004236 2024-02-19 20:32:48.526 2024-02-19 20:32:48.526 9000 TIP 431836 11298 6004251 2024-02-19 20:33:27.437 2024-02-19 20:33:27.437 1000 FEE 431840 16154 6004256 2024-02-19 20:33:51.432 2024-02-19 20:33:51.432 10000 FEE 431839 1785 6004257 2024-02-19 20:33:51.432 2024-02-19 20:33:51.432 90000 TIP 431839 5455 6004269 2024-02-19 20:36:33.245 2024-02-19 20:36:33.245 1000 FEE 431843 21455 6004270 2024-02-19 20:36:51.014 2024-02-19 20:36:51.014 2100 FEE 431840 16485 6004271 2024-02-19 20:36:51.014 2024-02-19 20:36:51.014 18900 TIP 431840 17091 6004283 2024-02-19 20:39:42.164 2024-02-19 20:39:42.164 1000 FEE 431848 9177 6004296 2024-02-19 20:41:17.547 2024-02-19 20:41:17.547 1000 FEE 431851 18351 6004328 2024-02-19 20:49:46.408 2024-02-19 20:49:46.408 9000 FEE 430771 20972 6004329 2024-02-19 20:49:46.408 2024-02-19 20:49:46.408 81000 TIP 430771 1803 6004337 2024-02-19 20:50:14.092 2024-02-19 20:50:14.092 90000 FEE 430824 4768 6004338 2024-02-19 20:50:14.092 2024-02-19 20:50:14.092 810000 TIP 430824 20225 6004353 2024-02-19 20:51:03.702 2024-02-19 20:51:03.702 900 FEE 431804 965 6004354 2024-02-19 20:51:03.702 2024-02-19 20:51:03.702 8100 TIP 431804 17713 6004366 2024-02-19 20:52:07.346 2024-02-19 20:52:07.346 10000 DONT_LIKE_THIS 431525 21417 6004379 2024-02-19 20:52:56.511 2024-02-19 20:52:56.511 900 FEE 430794 18635 6004380 2024-02-19 20:52:56.511 2024-02-19 20:52:56.511 8100 TIP 430794 20826 6004424 2024-02-19 20:54:45.981 2024-02-19 20:54:45.981 2100 FEE 431223 937 6004425 2024-02-19 20:54:45.981 2024-02-19 20:54:45.981 18900 TIP 431223 20143 6004445 2024-02-19 20:56:06.718 2024-02-19 20:56:06.718 9000 FEE 431830 20603 6004446 2024-02-19 20:56:06.718 2024-02-19 20:56:06.718 81000 TIP 431830 11716 6004448 2024-02-19 20:57:24.769 2024-02-19 20:57:24.769 1000 FEE 431859 691 6004466 2024-02-19 20:58:18.499 2024-02-19 20:58:18.499 1000 FEE 431825 16633 6004467 2024-02-19 20:58:18.499 2024-02-19 20:58:18.499 9000 TIP 431825 20812 6004470 2024-02-19 20:58:49.595 2024-02-19 20:58:49.595 1000 FEE 431860 19096 6004488 2024-02-19 21:00:05.853 2024-02-19 21:00:05.853 100000 FEE 431862 5519 6004489 2024-02-19 21:00:06.6 2024-02-19 21:00:06.6 1000 FEE 431863 17707 6004553 2024-02-19 21:03:55.224 2024-02-19 21:03:55.224 0 FEE 431867 21369 6004555 2024-02-19 21:04:17.829 2024-02-19 21:04:17.829 1000 FEE 431862 19905 6004556 2024-02-19 21:04:17.829 2024-02-19 21:04:17.829 9000 TIP 431862 20267 6004563 2024-02-19 21:05:00.711 2024-02-19 21:05:00.711 0 FEE 431867 9 6004565 2024-02-19 21:05:18.728 2024-02-19 21:05:18.728 0 FEE 431867 634 6004604 2024-02-19 21:20:25.75 2024-02-19 21:20:25.75 1000 FEE 431816 13249 6004605 2024-02-19 21:20:25.75 2024-02-19 21:20:25.75 9000 TIP 431816 9351 6004616 2024-02-19 21:21:36.553 2024-02-19 21:21:36.553 15000 FEE 431721 18945 6004617 2024-02-19 21:21:36.553 2024-02-19 21:21:36.553 135000 TIP 431721 900 6004619 2024-02-19 21:22:07.643 2024-02-19 21:22:07.643 1000 FEE 431875 15282 6004663 2024-02-19 21:26:41.742 2024-02-19 21:26:41.742 1000 FEE 431884 777 6004679 2024-02-19 21:28:50.164 2024-02-19 21:28:50.164 1000 FEE 431887 14015 6004683 2024-02-19 21:29:13.345 2024-02-19 21:29:13.345 1000 FEE 431890 15484 6004684 2024-02-19 21:29:24.971 2024-02-19 21:29:24.971 1000 FEE 431891 3360 6004693 2024-02-19 21:30:34.164 2024-02-19 21:30:34.164 1000 FEE 431882 15556 6004694 2024-02-19 21:30:34.164 2024-02-19 21:30:34.164 9000 TIP 431882 1401 6004697 2024-02-19 21:30:35.024 2024-02-19 21:30:35.024 1000 FEE 431882 1320 6004698 2024-02-19 21:30:35.024 2024-02-19 21:30:35.024 9000 TIP 431882 17722 6004704 2024-02-19 21:31:07.121 2024-02-19 21:31:07.121 2100 FEE 431869 9349 6004705 2024-02-19 21:31:07.121 2024-02-19 21:31:07.121 18900 TIP 431869 5557 6004706 2024-02-19 21:31:07.738 2024-02-19 21:31:07.738 1000 FEE 431895 20525 6004714 2024-02-19 21:31:39.628 2024-02-19 21:31:39.628 2700 FEE 431844 1534 6004715 2024-02-19 21:31:39.628 2024-02-19 21:31:39.628 24300 TIP 431844 2347 6004743 2024-02-19 21:32:18.295 2024-02-19 21:32:18.295 900 FEE 431864 20704 6004744 2024-02-19 21:32:18.295 2024-02-19 21:32:18.295 8100 TIP 431864 18230 6003884 2024-02-19 20:12:59.56 2024-02-19 20:12:59.56 16600 FEE 431816 18473 6003885 2024-02-19 20:12:59.56 2024-02-19 20:12:59.56 149400 TIP 431816 18819 6003907 2024-02-19 20:13:25.063 2024-02-19 20:13:25.063 8300 FEE 431809 18615 6003908 2024-02-19 20:13:25.063 2024-02-19 20:13:25.063 74700 TIP 431809 20500 6003919 2024-02-19 20:13:25.838 2024-02-19 20:13:25.838 8300 FEE 431809 15271 6003920 2024-02-19 20:13:25.838 2024-02-19 20:13:25.838 74700 TIP 431809 20825 6003923 2024-02-19 20:13:26.821 2024-02-19 20:13:26.821 8300 FEE 431809 10393 6003924 2024-02-19 20:13:26.821 2024-02-19 20:13:26.821 74700 TIP 431809 17116 6003933 2024-02-19 20:13:27.409 2024-02-19 20:13:27.409 8300 FEE 431809 18470 6003934 2024-02-19 20:13:27.409 2024-02-19 20:13:27.409 74700 TIP 431809 18230 6003939 2024-02-19 20:13:28.924 2024-02-19 20:13:28.924 16600 FEE 431809 694 6003940 2024-02-19 20:13:28.924 2024-02-19 20:13:28.924 149400 TIP 431809 18919 6003943 2024-02-19 20:14:27.32 2024-02-19 20:14:27.32 8300 FEE 430984 19148 6003944 2024-02-19 20:14:27.32 2024-02-19 20:14:27.32 74700 TIP 430984 1549 6004030 2024-02-19 20:18:32.083 2024-02-19 20:18:32.083 3300 FEE 430755 21155 6004031 2024-02-19 20:18:32.083 2024-02-19 20:18:32.083 29700 TIP 430755 12566 6004046 2024-02-19 20:19:36.705 2024-02-19 20:19:36.705 6400 FEE 431756 1495 6004047 2024-02-19 20:19:36.705 2024-02-19 20:19:36.705 57600 TIP 431756 2088 6004055 2024-02-19 20:20:14.258 2024-02-19 20:20:14.258 3300 FEE 431293 8870 6004056 2024-02-19 20:20:14.258 2024-02-19 20:20:14.258 29700 TIP 431293 14271 6004061 2024-02-19 20:20:24.448 2024-02-19 20:20:24.448 3300 FEE 431574 20087 6004062 2024-02-19 20:20:24.448 2024-02-19 20:20:24.448 29700 TIP 431574 15510 6004126 2024-02-19 20:24:30.412 2024-02-19 20:24:30.412 1000 FEE 431831 19992 6004127 2024-02-19 20:24:30.412 2024-02-19 20:24:30.412 9000 TIP 431831 8074 6004135 2024-02-19 20:25:05.65 2024-02-19 20:25:05.65 2100 FEE 431831 15243 6004136 2024-02-19 20:25:05.65 2024-02-19 20:25:05.65 18900 TIP 431831 1549 6004139 2024-02-19 20:25:11.416 2024-02-19 20:25:11.416 2100 FEE 431598 1261 6004140 2024-02-19 20:25:11.416 2024-02-19 20:25:11.416 18900 TIP 431598 15226 6004144 2024-02-19 20:26:01.358 2024-02-19 20:26:01.358 1000 FEE 431833 762 6004175 2024-02-19 20:31:53.9 2024-02-19 20:31:53.9 4000 FEE 431800 16556 6004176 2024-02-19 20:31:53.9 2024-02-19 20:31:53.9 36000 TIP 431800 866 6004213 2024-02-19 20:32:46.295 2024-02-19 20:32:46.295 1000 FEE 431836 5500 6004214 2024-02-19 20:32:46.295 2024-02-19 20:32:46.295 9000 TIP 431836 17217 6004223 2024-02-19 20:32:47.234 2024-02-19 20:32:47.234 1000 FEE 431836 9982 6004224 2024-02-19 20:32:47.234 2024-02-19 20:32:47.234 9000 TIP 431836 762 6004229 2024-02-19 20:32:47.772 2024-02-19 20:32:47.772 1000 FEE 431836 760 6004230 2024-02-19 20:32:47.772 2024-02-19 20:32:47.772 9000 TIP 431836 651 6004237 2024-02-19 20:32:48.998 2024-02-19 20:32:48.998 4000 FEE 431836 17741 6004238 2024-02-19 20:32:48.998 2024-02-19 20:32:48.998 36000 TIP 431836 937 6004260 2024-02-19 20:34:24.67 2024-02-19 20:34:24.67 12800 FEE 310418 14503 6004261 2024-02-19 20:34:24.67 2024-02-19 20:34:24.67 115200 TIP 310418 7827 6004266 2024-02-19 20:36:10.748 2024-02-19 20:36:10.748 10000 FEE 431842 7773 6004274 2024-02-19 20:37:01.722 2024-02-19 20:37:01.722 100000 FEE 431844 13365 6004284 2024-02-19 20:39:52.674 2024-02-19 20:39:52.674 2100 FEE 430920 5308 6004285 2024-02-19 20:39:52.674 2024-02-19 20:39:52.674 18900 TIP 430920 20911 6004303 2024-02-19 20:43:22.824 2024-02-19 20:43:22.824 2100 FEE 370350 18321 6004304 2024-02-19 20:43:22.824 2024-02-19 20:43:22.824 18900 TIP 370350 636 6004308 2024-02-19 20:44:17.076 2024-02-19 20:44:17.076 2600 FEE 430658 19637 6004309 2024-02-19 20:44:17.076 2024-02-19 20:44:17.076 23400 TIP 430658 17046 6004346 2024-02-19 20:50:41.631 2024-02-19 20:50:41.631 9000 FEE 431844 12774 6004347 2024-02-19 20:50:41.631 2024-02-19 20:50:41.631 81000 TIP 431844 21374 6004355 2024-02-19 20:51:31.335 2024-02-19 20:51:31.335 100 FEE 431806 10469 6004356 2024-02-19 20:51:31.335 2024-02-19 20:51:31.335 900 TIP 431806 6798 6004373 2024-02-19 20:52:36.911 2024-02-19 20:52:36.911 9000 FEE 430569 18842 6004374 2024-02-19 20:52:36.911 2024-02-19 20:52:36.911 81000 TIP 430569 6578 6004389 2024-02-19 20:53:16.511 2024-02-19 20:53:16.511 1000 FEE 431835 9863 6004390 2024-02-19 20:53:16.511 2024-02-19 20:53:16.511 9000 TIP 431835 21539 6004409 2024-02-19 20:53:45.072 2024-02-19 20:53:45.072 100 FEE 431823 21522 6004410 2024-02-19 20:53:45.072 2024-02-19 20:53:45.072 900 TIP 431823 759 6004433 2024-02-19 20:55:19.451 2024-02-19 20:55:19.451 1000 FEE 431813 20523 6004434 2024-02-19 20:55:19.451 2024-02-19 20:55:19.451 9000 TIP 431813 19843 6004460 2024-02-19 20:58:06.026 2024-02-19 20:58:06.026 2100 FEE 430984 2942 6004461 2024-02-19 20:58:06.026 2024-02-19 20:58:06.026 18900 TIP 430984 17014 6004468 2024-02-19 20:58:18.687 2024-02-19 20:58:18.687 1000 FEE 431825 13753 6004469 2024-02-19 20:58:18.687 2024-02-19 20:58:18.687 9000 TIP 431825 20889 6004476 2024-02-19 20:59:22.854 2024-02-19 20:59:22.854 2300 FEE 431854 17095 6004477 2024-02-19 20:59:22.854 2024-02-19 20:59:22.854 20700 TIP 431854 15409 6004493 2024-02-19 21:00:18.086 2024-02-19 21:00:18.086 1000 FEE 431844 16289 6004494 2024-02-19 21:00:18.086 2024-02-19 21:00:18.086 9000 TIP 431844 3417 6004513 2024-02-19 21:01:00.321 2024-02-19 21:01:00.321 2100 FEE 431293 705 6004514 2024-02-19 21:01:00.321 2024-02-19 21:01:00.321 18900 TIP 431293 16406 6004516 2024-02-19 21:01:08.999 2024-02-19 21:01:08.999 2100 FEE 431161 1493 6004517 2024-02-19 21:01:08.999 2024-02-19 21:01:08.999 18900 TIP 431161 20208 6004532 2024-02-19 21:01:56.491 2024-02-19 21:01:56.491 4000 FEE 431223 21413 6004533 2024-02-19 21:01:56.491 2024-02-19 21:01:56.491 36000 TIP 431223 21389 6004536 2024-02-19 21:02:02.672 2024-02-19 21:02:02.672 1000 FEE 431223 14950 6004537 2024-02-19 21:02:02.672 2024-02-19 21:02:02.672 9000 TIP 431223 18359 6004567 2024-02-19 21:06:06.42 2024-02-19 21:06:06.42 12800 FEE 431401 2329 6004568 2024-02-19 21:06:06.42 2024-02-19 21:06:06.42 115200 TIP 431401 16485 6004589 2024-02-19 21:12:10.452 2024-02-19 21:12:10.452 2100 FEE 430920 20597 6004590 2024-02-19 21:12:10.452 2024-02-19 21:12:10.452 18900 TIP 430920 4345 6004620 2024-02-19 21:22:53.523 2024-02-19 21:22:53.523 0 FEE 431873 1130 6004654 2024-02-19 21:25:34.264 2024-02-19 21:25:34.264 2700 FEE 430960 17042 6004655 2024-02-19 21:25:34.264 2024-02-19 21:25:34.264 24300 TIP 430960 19570 6004666 2024-02-19 21:28:02.143 2024-02-19 21:28:02.143 1000 FEE 431886 21091 6004673 2024-02-19 21:28:38.067 2024-02-19 21:28:38.067 1000 FEE 431877 20687 6004674 2024-02-19 21:28:38.067 2024-02-19 21:28:38.067 9000 TIP 431877 20573 6004769 2024-02-19 21:32:45.717 2024-02-19 21:32:45.717 2100 FEE 428952 15536 6004770 2024-02-19 21:32:45.717 2024-02-19 21:32:45.717 18900 TIP 428952 10060 6004787 2024-02-19 21:35:13.67 2024-02-19 21:35:13.67 9000 FEE 431888 16097 6004788 2024-02-19 21:35:13.67 2024-02-19 21:35:13.67 81000 TIP 431888 18139 6004839 2024-02-19 21:37:55.59 2024-02-19 21:37:55.59 400 FEE 431876 21491 6004840 2024-02-19 21:37:55.59 2024-02-19 21:37:55.59 3600 TIP 431876 803 6004887 2024-02-19 21:42:15.162 2024-02-19 21:42:15.162 2700 FEE 431904 16154 6004888 2024-02-19 21:42:15.162 2024-02-19 21:42:15.162 24300 TIP 431904 7395 6004902 2024-02-19 21:43:27.089 2024-02-19 21:43:27.089 2300 FEE 431909 21060 6004903 2024-02-19 21:43:27.089 2024-02-19 21:43:27.089 20700 TIP 431909 20616 6004912 2024-02-19 21:43:50.918 2024-02-19 21:43:50.918 800 FEE 430811 21296 6004913 2024-02-19 21:43:50.918 2024-02-19 21:43:50.918 7200 TIP 430811 18016 6004974 2024-02-19 21:49:14.977 2024-02-19 21:49:14.977 1000 FEE 431914 20168 6005014 2024-02-19 21:53:34.746 2024-02-19 21:53:34.746 1000 FEE 431792 20479 6005015 2024-02-19 21:53:34.746 2024-02-19 21:53:34.746 9000 TIP 431792 9184 6005021 2024-02-19 21:55:34.508 2024-02-19 21:55:34.508 1000 FEE 431922 4763 6005047 2024-02-19 21:57:38.069 2024-02-19 21:57:38.069 1000 FEE 431924 630 6005057 2024-02-19 21:59:44.512 2024-02-19 21:59:44.512 2100 FEE 430892 822 6005058 2024-02-19 21:59:44.512 2024-02-19 21:59:44.512 18900 TIP 430892 21588 6005077 2024-02-19 22:01:01.417 2024-02-19 22:01:01.417 1000 FEE 431401 7746 6003962 2024-02-19 20:15:00.567 2024-02-19 20:15:00.567 1000 FEE 431816 6268 6003963 2024-02-19 20:15:00.567 2024-02-19 20:15:00.567 9000 TIP 431816 4128 6003964 2024-02-19 20:15:03.241 2024-02-19 20:15:03.241 1000 STREAM 141924 9427 6003978 2024-02-19 20:15:44.691 2024-02-19 20:15:44.691 3300 FEE 431293 20563 6003979 2024-02-19 20:15:44.691 2024-02-19 20:15:44.691 29700 TIP 431293 21503 6003991 2024-02-19 20:16:03.253 2024-02-19 20:16:03.253 1000 STREAM 141924 19007 6004016 2024-02-19 20:17:03.259 2024-02-19 20:17:03.259 1000 STREAM 141924 21164 6004028 2024-02-19 20:18:03.251 2024-02-19 20:18:03.251 1000 STREAM 141924 16867 6004034 2024-02-19 20:19:03.264 2024-02-19 20:19:03.264 1000 STREAM 141924 12959 6004050 2024-02-19 20:19:48.765 2024-02-19 20:19:48.765 3300 FEE 430836 10112 6004051 2024-02-19 20:19:48.765 2024-02-19 20:19:48.765 29700 TIP 430836 844 6004052 2024-02-19 20:20:03.266 2024-02-19 20:20:03.266 1000 STREAM 141924 19777 6004070 2024-02-19 20:21:03.273 2024-02-19 20:21:03.273 1000 STREAM 141924 21248 6004082 2024-02-19 20:22:03.28 2024-02-19 20:22:03.28 1000 STREAM 141924 2285 6004083 2024-02-19 20:22:03.391 2024-02-19 20:22:03.391 1000 FEE 431826 21138 6004084 2024-02-19 20:22:03.391 2024-02-19 20:22:03.391 9000 TIP 431826 5500 6004093 2024-02-19 20:23:02.523 2024-02-19 20:23:02.523 8300 FEE 431828 16059 6004094 2024-02-19 20:23:02.523 2024-02-19 20:23:02.523 74700 TIP 431828 21323 6004097 2024-02-19 20:23:03.272 2024-02-19 20:23:03.272 1000 STREAM 141924 6741 6004109 2024-02-19 20:23:57.706 2024-02-19 20:23:57.706 1000 FEE 431830 17446 6004110 2024-02-19 20:24:03.303 2024-02-19 20:24:03.303 1000 STREAM 141924 1692 6004111 2024-02-19 20:24:15.033 2024-02-19 20:24:15.033 10000 FEE 431831 20744 6004120 2024-02-19 20:24:29.826 2024-02-19 20:24:29.826 1000 FEE 431831 4064 6004121 2024-02-19 20:24:29.826 2024-02-19 20:24:29.826 9000 TIP 431831 15266 6004134 2024-02-19 20:25:03.287 2024-02-19 20:25:03.287 1000 STREAM 141924 20337 6004143 2024-02-19 20:25:43.564 2024-02-19 20:25:43.564 1000 FEE 431832 6160 6004145 2024-02-19 20:26:03.276 2024-02-19 20:26:03.276 1000 STREAM 141924 19613 6004151 2024-02-19 20:27:03.289 2024-02-19 20:27:03.289 1000 STREAM 141924 15890 6004154 2024-02-19 20:28:03.309 2024-02-19 20:28:03.309 1000 STREAM 141924 5809 6004157 2024-02-19 20:29:03.324 2024-02-19 20:29:03.324 1000 STREAM 141924 14168 6004160 2024-02-19 20:30:01.438 2024-02-19 20:30:01.438 0 FEE 431836 8541 6004161 2024-02-19 20:30:03.311 2024-02-19 20:30:03.311 1000 STREAM 141924 20554 6004168 2024-02-19 20:31:03.325 2024-02-19 20:31:03.325 1000 STREAM 141924 5565 6004183 2024-02-19 20:32:03.359 2024-02-19 20:32:03.359 1000 STREAM 141924 20799 6004184 2024-02-19 20:32:10.77 2024-02-19 20:32:10.77 2100 FEE 431828 12122 6004185 2024-02-19 20:32:10.77 2024-02-19 20:32:10.77 18900 TIP 431828 859 6004188 2024-02-19 20:32:11.769 2024-02-19 20:32:11.769 36000 FEE 431654 19821 6004189 2024-02-19 20:32:11.769 2024-02-19 20:32:11.769 324000 TIP 431654 13216 6004209 2024-02-19 20:32:45.944 2024-02-19 20:32:45.944 1000 FEE 431836 18829 6004210 2024-02-19 20:32:45.944 2024-02-19 20:32:45.944 9000 TIP 431836 21090 6004231 2024-02-19 20:32:47.935 2024-02-19 20:32:47.935 1000 FEE 431836 11821 6004232 2024-02-19 20:32:47.935 2024-02-19 20:32:47.935 9000 TIP 431836 2232 6004246 2024-02-19 20:33:03.35 2024-02-19 20:33:03.35 1000 STREAM 141924 5173 6004249 2024-02-19 20:33:17.522 2024-02-19 20:33:17.522 1000 FEE 431838 10554 6004250 2024-02-19 20:33:17.522 2024-02-19 20:33:17.522 9000 TIP 431838 17171 6004254 2024-02-19 20:33:34.194 2024-02-19 20:33:34.194 2300 FEE 431839 1673 6004255 2024-02-19 20:33:34.194 2024-02-19 20:33:34.194 20700 TIP 431839 746 6004258 2024-02-19 20:34:03.374 2024-02-19 20:34:03.374 1000 STREAM 141924 18076 6004262 2024-02-19 20:35:03.422 2024-02-19 20:35:03.422 1000 STREAM 141924 3353 6004265 2024-02-19 20:36:03.367 2024-02-19 20:36:03.367 1000 STREAM 141924 19193 6004275 2024-02-19 20:37:03.37 2024-02-19 20:37:03.37 1000 STREAM 141924 21344 6004279 2024-02-19 20:37:48.669 2024-02-19 20:37:48.669 1000 FEE 431846 16301 6004281 2024-02-19 20:38:03.412 2024-02-19 20:38:03.412 1000 STREAM 141924 2525 6004282 2024-02-19 20:39:03.413 2024-02-19 20:39:03.413 1000 STREAM 141924 7425 6004290 2024-02-19 20:40:03.463 2024-02-19 20:40:03.463 1000 STREAM 141924 739 6004295 2024-02-19 20:41:03.503 2024-02-19 20:41:03.503 1000 STREAM 141924 11165 6004298 2024-02-19 20:42:03.435 2024-02-19 20:42:03.435 1000 STREAM 141924 1737 6004301 2024-02-19 20:42:37.725 2024-02-19 20:42:37.725 100000 FEE 431853 3353 6004302 2024-02-19 20:43:03.448 2024-02-19 20:43:03.448 1000 STREAM 141924 9171 6004307 2024-02-19 20:44:03.454 2024-02-19 20:44:03.454 1000 STREAM 141924 18743 6004312 2024-02-19 20:45:03.47 2024-02-19 20:45:03.47 1000 STREAM 141924 20257 6004314 2024-02-19 20:47:03.491 2024-02-19 20:47:03.491 1000 STREAM 141924 9307 6004317 2024-02-19 20:47:39.113 2024-02-19 20:47:39.113 1000 FEE 431854 18543 6004320 2024-02-19 20:48:03.502 2024-02-19 20:48:03.502 1000 STREAM 141924 20190 6004321 2024-02-19 20:49:03.497 2024-02-19 20:49:03.497 1000 STREAM 141924 9346 6004334 2024-02-19 20:50:03.533 2024-02-19 20:50:03.533 1000 STREAM 141924 20504 6004341 2024-02-19 20:50:40.081 2024-02-19 20:50:40.081 100 FEE 431844 11516 6004342 2024-02-19 20:50:40.081 2024-02-19 20:50:40.081 900 TIP 431844 18008 6004350 2024-02-19 20:51:03.49 2024-02-19 20:51:03.49 1000 STREAM 141924 20706 6004365 2024-02-19 20:52:03.503 2024-02-19 20:52:03.503 1000 STREAM 141924 16830 6004384 2024-02-19 20:53:03.519 2024-02-19 20:53:03.519 1000 STREAM 141924 15213 6004391 2024-02-19 20:53:17.044 2024-02-19 20:53:17.044 1000 FEE 431835 9906 6004392 2024-02-19 20:53:17.044 2024-02-19 20:53:17.044 9000 TIP 431835 4574 6004393 2024-02-19 20:53:17.463 2024-02-19 20:53:17.463 1000 FEE 431835 19809 6004394 2024-02-19 20:53:17.463 2024-02-19 20:53:17.463 9000 TIP 431835 11164 6004403 2024-02-19 20:53:43.958 2024-02-19 20:53:43.958 100 FEE 431823 2710 6004404 2024-02-19 20:53:43.958 2024-02-19 20:53:43.958 900 TIP 431823 16956 6004415 2024-02-19 20:54:03.533 2024-02-19 20:54:03.533 1000 STREAM 141924 1030 6004420 2024-02-19 20:54:37.79 2024-02-19 20:54:37.79 12800 FEE 431079 4958 6004421 2024-02-19 20:54:37.79 2024-02-19 20:54:37.79 115200 TIP 431079 10818 6004422 2024-02-19 20:54:41.826 2024-02-19 20:54:41.826 2100 FEE 431809 1428 6004423 2024-02-19 20:54:41.826 2024-02-19 20:54:41.826 18900 TIP 431809 17927 6004428 2024-02-19 20:55:03.518 2024-02-19 20:55:03.518 1000 STREAM 141924 17682 6004442 2024-02-19 20:56:03.53 2024-02-19 20:56:03.53 1000 STREAM 141924 14731 6004447 2024-02-19 20:57:03.538 2024-02-19 20:57:03.538 1000 STREAM 141924 17535 6004459 2024-02-19 20:58:03.544 2024-02-19 20:58:03.544 1000 STREAM 141924 20180 6004464 2024-02-19 20:58:14.515 2024-02-19 20:58:14.515 2100 FEE 430770 20963 6004465 2024-02-19 20:58:14.515 2024-02-19 20:58:14.515 18900 TIP 430770 16347 6004471 2024-02-19 20:59:03.554 2024-02-19 20:59:03.554 1000 STREAM 141924 14688 6004480 2024-02-19 20:59:24.627 2024-02-19 20:59:24.627 1100 FEE 431171 19806 6004481 2024-02-19 20:59:24.627 2024-02-19 20:59:24.627 9900 TIP 431171 16289 6004490 2024-02-19 21:00:15.875 2024-02-19 21:00:15.875 1000 FEE 431864 8998 6004508 2024-02-19 21:00:44.48 2024-02-19 21:00:44.48 0 FEE 431861 20660 6004522 2024-02-19 21:01:30.225 2024-02-19 21:01:30.225 2100 FEE 431816 19535 6004523 2024-02-19 21:01:30.225 2024-02-19 21:01:30.225 18900 TIP 431816 21079 6004530 2024-02-19 21:01:51.466 2024-02-19 21:01:51.466 4000 FEE 431809 16808 6004531 2024-02-19 21:01:51.466 2024-02-19 21:01:51.466 36000 TIP 431809 13759 6004541 2024-02-19 21:02:10.277 2024-02-19 21:02:10.277 700 FEE 431223 6030 6004542 2024-02-19 21:02:10.277 2024-02-19 21:02:10.277 6300 TIP 431223 19329 6004548 2024-02-19 21:03:03.587 2024-02-19 21:03:03.587 1000 STREAM 141924 750 6004549 2024-02-19 21:03:15.12 2024-02-19 21:03:15.12 1000 FEE 430700 696 6004550 2024-02-19 21:03:15.12 2024-02-19 21:03:15.12 9000 TIP 430700 15549 6004551 2024-02-19 21:03:41.167 2024-02-19 21:03:41.167 1000 FEE 431868 4323 6004559 2024-02-19 21:04:18.126 2024-02-19 21:04:18.126 1000 FEE 431862 17638 6004560 2024-02-19 21:04:18.126 2024-02-19 21:04:18.126 9000 TIP 431862 19381 6004564 2024-02-19 21:05:03.598 2024-02-19 21:05:03.598 1000 STREAM 141924 20231 6004566 2024-02-19 21:06:03.622 2024-02-19 21:06:03.622 1000 STREAM 141924 2431 6004180 2024-02-19 20:31:59.843 2024-02-19 20:31:59.843 324000 TIP 430761 6798 6004199 2024-02-19 20:32:40.613 2024-02-19 20:32:40.613 2300 FEE 431816 12562 6004200 2024-02-19 20:32:40.613 2024-02-19 20:32:40.613 20700 TIP 431816 21599 6004244 2024-02-19 20:32:53.811 2024-02-19 20:32:53.811 100000 FEE 431836 8416 6004245 2024-02-19 20:32:53.811 2024-02-19 20:32:53.811 900000 TIP 431836 3440 6004247 2024-02-19 20:33:07.652 2024-02-19 20:33:07.652 1000 FEE 431839 17291 6004248 2024-02-19 20:33:07.652 2024-02-19 20:33:07.652 9000 TIP 431839 7979 6004259 2024-02-19 20:34:10.922 2024-02-19 20:34:10.922 1000 FEE 431841 1490 6004305 2024-02-19 20:43:46.421 2024-02-19 20:43:46.421 2100 FEE 203404 19096 6004306 2024-02-19 20:43:46.421 2024-02-19 20:43:46.421 18900 TIP 203404 19981 6004318 2024-02-19 20:47:58.55 2024-02-19 20:47:58.55 2600 FEE 430963 14857 6004319 2024-02-19 20:47:58.55 2024-02-19 20:47:58.55 23400 TIP 430963 16145 6004326 2024-02-19 20:49:43.378 2024-02-19 20:49:43.378 9000 FEE 431809 13378 6004327 2024-02-19 20:49:43.378 2024-02-19 20:49:43.378 81000 TIP 431809 8080 6004339 2024-02-19 20:50:20.058 2024-02-19 20:50:20.058 9000 FEE 430362 16276 6004340 2024-02-19 20:50:20.058 2024-02-19 20:50:20.058 81000 TIP 430362 20681 6004351 2024-02-19 20:51:03.513 2024-02-19 20:51:03.513 100 FEE 431804 644 6004352 2024-02-19 20:51:03.513 2024-02-19 20:51:03.513 900 TIP 431804 1611 6004357 2024-02-19 20:51:31.943 2024-02-19 20:51:31.943 900 FEE 431806 760 6004358 2024-02-19 20:51:31.943 2024-02-19 20:51:31.943 8100 TIP 431806 8648 6004360 2024-02-19 20:51:41.768 2024-02-19 20:51:41.768 1000 FEE 431857 3686 6004383 2024-02-19 20:53:02.858 2024-02-19 20:53:02.858 0 FEE 431857 11328 6004385 2024-02-19 20:53:13.84 2024-02-19 20:53:13.84 100 FEE 430619 8080 6004386 2024-02-19 20:53:13.84 2024-02-19 20:53:13.84 900 TIP 430619 11561 6004395 2024-02-19 20:53:17.881 2024-02-19 20:53:17.881 1000 FEE 431835 649 6004396 2024-02-19 20:53:17.881 2024-02-19 20:53:17.881 9000 TIP 431835 21323 6004399 2024-02-19 20:53:30.371 2024-02-19 20:53:30.371 10000 FEE 431855 19284 6004400 2024-02-19 20:53:30.371 2024-02-19 20:53:30.371 90000 TIP 431855 6268 6004443 2024-02-19 20:56:06.147 2024-02-19 20:56:06.147 1000 FEE 431830 16350 6004444 2024-02-19 20:56:06.147 2024-02-19 20:56:06.147 9000 TIP 431830 17673 6004451 2024-02-19 20:57:26.4 2024-02-19 20:57:26.4 100 FEE 431816 20858 6004452 2024-02-19 20:57:26.4 2024-02-19 20:57:26.4 900 TIP 431816 19537 6004482 2024-02-19 20:59:24.744 2024-02-19 20:59:24.744 2300 FEE 431858 1044 6004483 2024-02-19 20:59:24.744 2024-02-19 20:59:24.744 20700 TIP 431858 20782 6004484 2024-02-19 20:59:24.856 2024-02-19 20:59:24.856 2300 FEE 431858 7185 6004485 2024-02-19 20:59:24.856 2024-02-19 20:59:24.856 20700 TIP 431858 17602 6004497 2024-02-19 21:00:19.071 2024-02-19 21:00:19.071 1000 FEE 431844 18412 6004498 2024-02-19 21:00:19.071 2024-02-19 21:00:19.071 9000 TIP 431844 1326 6004501 2024-02-19 21:00:22.88 2024-02-19 21:00:22.88 1000 FEE 431865 17106 6004502 2024-02-19 21:00:32.813 2024-02-19 21:00:32.813 1000 FEE 431598 18423 6004503 2024-02-19 21:00:32.813 2024-02-19 21:00:32.813 9000 TIP 431598 21463 6004504 2024-02-19 21:00:32.937 2024-02-19 21:00:32.937 1000 FEE 431139 17714 6004505 2024-02-19 21:00:32.937 2024-02-19 21:00:32.937 9000 TIP 431139 1505 6004509 2024-02-19 21:00:52.056 2024-02-19 21:00:52.056 2100 FEE 431223 618 6004510 2024-02-19 21:00:52.056 2024-02-19 21:00:52.056 18900 TIP 431223 18309 6004526 2024-02-19 21:01:36.991 2024-02-19 21:01:36.991 2100 FEE 431796 18393 6004527 2024-02-19 21:01:36.991 2024-02-19 21:01:36.991 18900 TIP 431796 17708 6004571 2024-02-19 21:06:26.612 2024-02-19 21:06:26.612 2600 FEE 431596 18658 6004572 2024-02-19 21:06:26.612 2024-02-19 21:06:26.612 23400 TIP 431596 20180 6004579 2024-02-19 21:08:57.567 2024-02-19 21:08:57.567 1000 FEE 431871 11561 6004610 2024-02-19 21:20:54.975 2024-02-19 21:20:54.975 1300 FEE 430962 2724 6004611 2024-02-19 21:20:54.975 2024-02-19 21:20:54.975 11700 TIP 430962 6382 6004612 2024-02-19 21:20:56.317 2024-02-19 21:20:56.317 1300 FEE 430962 19043 6004613 2024-02-19 21:20:56.317 2024-02-19 21:20:56.317 11700 TIP 430962 6537 6004628 2024-02-19 21:24:03.486 2024-02-19 21:24:03.486 1000 FEE 430811 18393 6004629 2024-02-19 21:24:03.486 2024-02-19 21:24:03.486 9000 TIP 430811 7877 6004680 2024-02-19 21:28:59.188 2024-02-19 21:28:59.188 1000 FEE 431888 15367 6004688 2024-02-19 21:30:10.22 2024-02-19 21:30:10.22 1000 FEE 431892 21262 6004691 2024-02-19 21:30:33.73 2024-02-19 21:30:33.73 1000 FEE 431882 18751 6004692 2024-02-19 21:30:33.73 2024-02-19 21:30:33.73 9000 TIP 431882 16309 6004720 2024-02-19 21:31:40.634 2024-02-19 21:31:40.634 2700 FEE 431844 18618 6004721 2024-02-19 21:31:40.634 2024-02-19 21:31:40.634 24300 TIP 431844 20901 6004777 2024-02-19 21:33:11.534 2024-02-19 21:33:11.534 0 FEE 431888 1773 6004809 2024-02-19 21:35:50.591 2024-02-19 21:35:50.591 1000 FEE 431902 19500 6004848 2024-02-19 21:38:07.165 2024-02-19 21:38:07.165 27000 FEE 431161 951 6004849 2024-02-19 21:38:07.165 2024-02-19 21:38:07.165 243000 TIP 431161 20251 6004860 2024-02-19 21:39:47.375 2024-02-19 21:39:47.375 1000 FEE 431905 21058 6004861 2024-02-19 21:39:47.375 2024-02-19 21:39:47.375 9000 TIP 431905 18291 6004862 2024-02-19 21:39:47.755 2024-02-19 21:39:47.755 1000 FEE 431905 7766 6004863 2024-02-19 21:39:47.755 2024-02-19 21:39:47.755 9000 TIP 431905 17209 6004874 2024-02-19 21:40:19.305 2024-02-19 21:40:19.305 1000 FEE 431883 21413 6004875 2024-02-19 21:40:19.305 2024-02-19 21:40:19.305 9000 TIP 431883 11527 6004915 2024-02-19 21:44:08.671 2024-02-19 21:44:08.671 1600 FEE 431809 17042 6004916 2024-02-19 21:44:08.671 2024-02-19 21:44:08.671 14400 TIP 431809 18470 6004925 2024-02-19 21:45:07.795 2024-02-19 21:45:07.795 0 FEE 361611 1298 6004957 2024-02-19 21:48:59.187 2024-02-19 21:48:59.187 1000 FEE 431903 17103 6004958 2024-02-19 21:48:59.187 2024-02-19 21:48:59.187 9000 TIP 431903 18271 6004959 2024-02-19 21:48:59.338 2024-02-19 21:48:59.338 1000 FEE 431903 1493 6004960 2024-02-19 21:48:59.338 2024-02-19 21:48:59.338 9000 TIP 431903 18714 6004963 2024-02-19 21:48:59.672 2024-02-19 21:48:59.672 1000 FEE 431903 11862 6004964 2024-02-19 21:48:59.672 2024-02-19 21:48:59.672 9000 TIP 431903 21416 6004965 2024-02-19 21:49:02.647 2024-02-19 21:49:02.647 1000 FEE 431903 718 6004966 2024-02-19 21:49:02.647 2024-02-19 21:49:02.647 9000 TIP 431903 11458 6004984 2024-02-19 21:49:41.122 2024-02-19 21:49:41.122 1000 FEE 431916 13216 6004987 2024-02-19 21:49:55.37 2024-02-19 21:49:55.37 100 FEE 431909 19909 6004988 2024-02-19 21:49:55.37 2024-02-19 21:49:55.37 900 TIP 431909 1718 6004995 2024-02-19 21:50:28.922 2024-02-19 21:50:28.922 1000 FEE 431917 21494 6005001 2024-02-19 21:51:53.719 2024-02-19 21:51:53.719 1000 FEE 431913 628 6005002 2024-02-19 21:51:53.719 2024-02-19 21:51:53.719 9000 TIP 431913 14015 6005003 2024-02-19 21:51:53.878 2024-02-19 21:51:53.878 1000 FEE 431913 20744 6005004 2024-02-19 21:51:53.878 2024-02-19 21:51:53.878 9000 TIP 431913 1729 6005009 2024-02-19 21:52:02.771 2024-02-19 21:52:02.771 21000 FEE 431918 16296 6005045 2024-02-19 21:57:18.397 2024-02-19 21:57:18.397 2100 FEE 431914 20470 6005046 2024-02-19 21:57:18.397 2024-02-19 21:57:18.397 18900 TIP 431914 6310 6005049 2024-02-19 21:58:00.278 2024-02-19 21:58:00.278 1000 FEE 431926 21356 6005052 2024-02-19 21:58:55.059 2024-02-19 21:58:55.059 4000 FEE 431920 21503 6005053 2024-02-19 21:58:55.059 2024-02-19 21:58:55.059 36000 TIP 431920 21070 6005055 2024-02-19 21:59:28.668 2024-02-19 21:59:28.668 1000 FEE 431844 17713 6005056 2024-02-19 21:59:28.668 2024-02-19 21:59:28.668 9000 TIP 431844 4177 6005060 2024-02-19 22:00:06.192 2024-02-19 22:00:06.192 10000 FEE 431928 20310 6005062 2024-02-19 22:00:06.923 2024-02-19 22:00:06.923 1000 FEE 431930 20597 6005069 2024-02-19 22:00:40.276 2024-02-19 22:00:40.276 1000 FEE 431924 21482 6005070 2024-02-19 22:00:40.276 2024-02-19 22:00:40.276 9000 TIP 431924 21501 6005086 2024-02-19 22:01:59.917 2024-02-19 22:01:59.917 2100 FEE 240442 10690 6005087 2024-02-19 22:01:59.917 2024-02-19 22:01:59.917 18900 TIP 240442 21541 6005089 2024-02-19 22:02:34.343 2024-02-19 22:02:34.343 3000 FEE 431927 19541 6005090 2024-02-19 22:02:34.343 2024-02-19 22:02:34.343 27000 TIP 431927 27 6004215 2024-02-19 20:32:46.464 2024-02-19 20:32:46.464 1000 FEE 431836 1136 6004216 2024-02-19 20:32:46.464 2024-02-19 20:32:46.464 9000 TIP 431836 18235 6004227 2024-02-19 20:32:47.599 2024-02-19 20:32:47.599 1000 FEE 431836 4802 6004228 2024-02-19 20:32:47.599 2024-02-19 20:32:47.599 9000 TIP 431836 11395 6004276 2024-02-19 20:37:26.915 2024-02-19 20:37:26.915 10000 FEE 431813 21387 6004277 2024-02-19 20:37:26.915 2024-02-19 20:37:26.915 90000 TIP 431813 2741 6004292 2024-02-19 20:40:25.89 2024-02-19 20:40:25.89 1000 FEE 431850 2196 6004293 2024-02-19 20:40:27.885 2024-02-19 20:40:27.885 1600 FEE 431834 21334 6004294 2024-02-19 20:40:27.885 2024-02-19 20:40:27.885 14400 TIP 431834 18274 6004313 2024-02-19 20:46:03.677 2024-02-19 20:46:03.677 1000 STREAM 141924 733 6004322 2024-02-19 20:49:34.899 2024-02-19 20:49:34.899 100 FEE 431809 672 6004323 2024-02-19 20:49:34.899 2024-02-19 20:49:34.899 900 TIP 431809 18423 6004330 2024-02-19 20:49:49.91 2024-02-19 20:49:49.91 9000 FEE 430811 19995 6004331 2024-02-19 20:49:49.91 2024-02-19 20:49:49.91 81000 TIP 430811 17514 6004363 2024-02-19 20:51:43.514 2024-02-19 20:51:43.514 900 FEE 431831 2022 6004364 2024-02-19 20:51:43.514 2024-02-19 20:51:43.514 8100 TIP 431831 16176 6004455 2024-02-19 20:57:26.602 2024-02-19 20:57:26.602 100 FEE 431816 14247 6004456 2024-02-19 20:57:26.602 2024-02-19 20:57:26.602 900 TIP 431816 20817 6004474 2024-02-19 20:59:22.75 2024-02-19 20:59:22.75 2300 FEE 431854 19909 6004475 2024-02-19 20:59:22.75 2024-02-19 20:59:22.75 20700 TIP 431854 1175 6004478 2024-02-19 20:59:24.603 2024-02-19 20:59:24.603 2300 FEE 431858 1803 6004479 2024-02-19 20:59:24.603 2024-02-19 20:59:24.603 20700 TIP 431858 20660 6004486 2024-02-19 20:59:44.551 2024-02-19 20:59:44.551 1000 FEE 431861 18280 6004491 2024-02-19 21:00:17.681 2024-02-19 21:00:17.681 1000 FEE 431844 20430 6004492 2024-02-19 21:00:17.681 2024-02-19 21:00:17.681 9000 TIP 431844 18819 6004499 2024-02-19 21:00:19.487 2024-02-19 21:00:19.487 1000 FEE 431844 20502 6004500 2024-02-19 21:00:19.487 2024-02-19 21:00:19.487 9000 TIP 431844 16267 6004518 2024-02-19 21:01:17.524 2024-02-19 21:01:17.524 0 FEE 431861 19117 6004528 2024-02-19 21:01:43.206 2024-02-19 21:01:43.206 4000 FEE 431816 1124 6004529 2024-02-19 21:01:43.206 2024-02-19 21:01:43.206 36000 TIP 431816 4084 6004539 2024-02-19 21:02:03.6 2024-02-19 21:02:03.6 4000 FEE 431293 19888 6004540 2024-02-19 21:02:03.6 2024-02-19 21:02:03.6 36000 TIP 431293 11314 6004557 2024-02-19 21:04:18.004 2024-02-19 21:04:18.004 1000 FEE 431862 11073 6004558 2024-02-19 21:04:18.004 2024-02-19 21:04:18.004 9000 TIP 431862 7119 6004581 2024-02-19 21:09:35.805 2024-02-19 21:09:35.805 12800 FEE 431080 19905 6004582 2024-02-19 21:09:35.805 2024-02-19 21:09:35.805 115200 TIP 431080 15719 6004596 2024-02-19 21:17:47.707 2024-02-19 21:17:47.707 1000 FEE 431873 876 6004597 2024-02-19 21:17:51.547 2024-02-19 21:17:51.547 200 FEE 431872 7510 6004598 2024-02-19 21:17:51.547 2024-02-19 21:17:51.547 1800 TIP 431872 10352 6004624 2024-02-19 21:23:32.939 2024-02-19 21:23:32.939 1000 FEE 431876 18270 6004626 2024-02-19 21:23:50.968 2024-02-19 21:23:50.968 0 FEE 431873 1534 6004630 2024-02-19 21:24:03.601 2024-02-19 21:24:03.601 10000 FEE 431872 18660 6004631 2024-02-19 21:24:03.601 2024-02-19 21:24:03.601 90000 TIP 431872 5003 6004650 2024-02-19 21:25:33.873 2024-02-19 21:25:33.873 2700 FEE 430960 21061 6004651 2024-02-19 21:25:33.873 2024-02-19 21:25:33.873 24300 TIP 430960 11523 6004662 2024-02-19 21:26:20.111 2024-02-19 21:26:20.111 1000 FEE 431883 12175 6004682 2024-02-19 21:29:05.993 2024-02-19 21:29:05.993 10000 FEE 431889 21242 6004690 2024-02-19 21:30:32.293 2024-02-19 21:30:32.293 1000 FEE 431894 21466 6004708 2024-02-19 21:31:38.891 2024-02-19 21:31:38.891 5400 FEE 431844 20674 6004709 2024-02-19 21:31:38.891 2024-02-19 21:31:38.891 48600 TIP 431844 19030 6004740 2024-02-19 21:32:16.243 2024-02-19 21:32:16.243 0 FEE 431888 21446 6004751 2024-02-19 21:32:20.987 2024-02-19 21:32:20.987 2700 FEE 430811 634 6004752 2024-02-19 21:32:20.987 2024-02-19 21:32:20.987 24300 TIP 430811 20412 6004761 2024-02-19 21:32:27.573 2024-02-19 21:32:27.573 100 FEE 431894 1960 6004762 2024-02-19 21:32:27.573 2024-02-19 21:32:27.573 900 TIP 431894 620 6004773 2024-02-19 21:33:01.872 2024-02-19 21:33:01.872 2700 FEE 430892 12024 6004774 2024-02-19 21:33:01.872 2024-02-19 21:33:01.872 24300 TIP 430892 6268 6004776 2024-02-19 21:33:09.529 2024-02-19 21:33:09.529 1000 FEE 431899 15160 6004780 2024-02-19 21:34:59.994 2024-02-19 21:34:59.994 10000 FEE 431900 16912 6004791 2024-02-19 21:35:27.31 2024-02-19 21:35:27.31 300 FEE 431890 5806 6004792 2024-02-19 21:35:27.31 2024-02-19 21:35:27.31 2700 TIP 431890 19446 6004823 2024-02-19 21:36:11.553 2024-02-19 21:36:11.553 2100 FEE 429157 5487 6004824 2024-02-19 21:36:11.553 2024-02-19 21:36:11.553 18900 TIP 429157 2609 6004827 2024-02-19 21:36:19.11 2024-02-19 21:36:19.11 10100 FEE 431809 12122 6004828 2024-02-19 21:36:19.11 2024-02-19 21:36:19.11 90900 TIP 431809 16387 6004829 2024-02-19 21:36:43.256 2024-02-19 21:36:43.256 2100 FEE 370589 1773 6004830 2024-02-19 21:36:43.256 2024-02-19 21:36:43.256 18900 TIP 370589 18897 6004850 2024-02-19 21:38:09.346 2024-02-19 21:38:09.346 400 FEE 431817 11999 6004851 2024-02-19 21:38:09.346 2024-02-19 21:38:09.346 3600 TIP 431817 12566 6004856 2024-02-19 21:39:46.328 2024-02-19 21:39:46.328 1000 FEE 431905 18139 6004857 2024-02-19 21:39:46.328 2024-02-19 21:39:46.328 9000 TIP 431905 5519 6004868 2024-02-19 21:40:17.509 2024-02-19 21:40:17.509 1000 FEE 431883 6499 6004869 2024-02-19 21:40:17.509 2024-02-19 21:40:17.509 9000 TIP 431883 9427 6004880 2024-02-19 21:41:28.963 2024-02-19 21:41:28.963 4000 FEE 431908 2206 6004881 2024-02-19 21:41:28.963 2024-02-19 21:41:28.963 36000 TIP 431908 2710 6004884 2024-02-19 21:41:37.262 2024-02-19 21:41:37.262 100000 FEE 431909 18816 6004895 2024-02-19 21:42:55.346 2024-02-19 21:42:55.346 0 FEE 361611 17316 6004926 2024-02-19 21:45:20.618 2024-02-19 21:45:20.618 1000 FEE 431912 11716 6004932 2024-02-19 21:46:12.518 2024-02-19 21:46:12.518 800 FEE 431830 11423 6004933 2024-02-19 21:46:12.518 2024-02-19 21:46:12.518 7200 TIP 431830 21314 6004944 2024-02-19 21:47:40.268 2024-02-19 21:47:40.268 2600 FEE 431878 21523 6004945 2024-02-19 21:47:40.268 2024-02-19 21:47:40.268 23400 TIP 431878 8916 6004951 2024-02-19 21:48:12.11 2024-02-19 21:48:12.11 800 FEE 431894 5828 6004952 2024-02-19 21:48:12.11 2024-02-19 21:48:12.11 7200 TIP 431894 16571 6004955 2024-02-19 21:48:54.699 2024-02-19 21:48:54.699 2000 FEE 431912 1785 6004956 2024-02-19 21:48:54.699 2024-02-19 21:48:54.699 18000 TIP 431912 20045 6004975 2024-02-19 21:49:17.53 2024-02-19 21:49:17.53 1000 FEE 431915 16830 6004982 2024-02-19 21:49:30.901 2024-02-19 21:49:30.901 1000 FEE 431859 2674 6004983 2024-02-19 21:49:30.901 2024-02-19 21:49:30.901 9000 TIP 431859 20479 6004989 2024-02-19 21:49:55.546 2024-02-19 21:49:55.546 900 FEE 431909 21083 6004990 2024-02-19 21:49:55.546 2024-02-19 21:49:55.546 8100 TIP 431909 1175 6005012 2024-02-19 21:52:58.809 2024-02-19 21:52:58.809 10000 FEE 431920 19005 6005038 2024-02-19 21:56:59.715 2024-02-19 21:56:59.715 1000 FEE 431922 3709 6005039 2024-02-19 21:56:59.715 2024-02-19 21:56:59.715 9000 TIP 431922 9438 6005067 2024-02-19 22:00:40.086 2024-02-19 22:00:40.086 1000 FEE 431924 12102 6005068 2024-02-19 22:00:40.086 2024-02-19 22:00:40.086 9000 TIP 431924 17592 6005073 2024-02-19 22:00:50.914 2024-02-19 22:00:50.914 1000 FEE 431926 12606 6005074 2024-02-19 22:00:50.914 2024-02-19 22:00:50.914 9000 TIP 431926 6202 6005083 2024-02-19 22:01:38.62 2024-02-19 22:01:38.62 2100 FEE 431823 17415 6005084 2024-02-19 22:01:38.62 2024-02-19 22:01:38.62 18900 TIP 431823 9167 6005085 2024-02-19 22:01:47.516 2024-02-19 22:01:47.516 1000 FEE 431932 19284 6005108 2024-02-19 22:03:40.196 2024-02-19 22:03:40.196 0 FEE 431932 13174 6005138 2024-02-19 22:10:52.51 2024-02-19 22:10:52.51 1000 FEE 431942 17218 6005151 2024-02-19 22:13:31.921 2024-02-19 22:13:31.921 10000 FEE 431946 6384 6005157 2024-02-19 22:15:02.091 2024-02-19 22:15:02.091 1000 FEE 431947 19938 6005159 2024-02-19 22:15:23.775 2024-02-19 22:15:23.775 1000 FEE 431948 17514 6005163 2024-02-19 22:16:10.817 2024-02-19 22:16:10.817 100000 FEE 431949 1712 6004437 2024-02-19 20:55:20.222 2024-02-19 20:55:20.222 1000 FEE 431813 4128 6004438 2024-02-19 20:55:20.222 2024-02-19 20:55:20.222 9000 TIP 431813 16649 6004440 2024-02-19 20:55:55.587 2024-02-19 20:55:55.587 200 FEE 431654 1114 6004441 2024-02-19 20:55:55.587 2024-02-19 20:55:55.587 1800 TIP 431654 11144 6004544 2024-02-19 21:02:45.218 2024-02-19 21:02:45.218 4000 FEE 431297 19839 6004545 2024-02-19 21:02:45.218 2024-02-19 21:02:45.218 36000 TIP 431297 19569 6004546 2024-02-19 21:02:58.606 2024-02-19 21:02:58.606 1000 FEE 431845 1751 6004547 2024-02-19 21:02:58.606 2024-02-19 21:02:58.606 9000 TIP 431845 9329 6004608 2024-02-19 21:20:42.037 2024-02-19 21:20:42.037 1300 FEE 430962 1617 6004609 2024-02-19 21:20:42.037 2024-02-19 21:20:42.037 11700 TIP 430962 12346 6004615 2024-02-19 21:21:24.13 2024-02-19 21:21:24.13 1000 FEE 431874 17639 6004627 2024-02-19 21:23:51.023 2024-02-19 21:23:51.023 1000 FEE 431878 15925 6004635 2024-02-19 21:24:11.294 2024-02-19 21:24:11.294 2300 FEE 431864 9200 6004636 2024-02-19 21:24:11.294 2024-02-19 21:24:11.294 20700 TIP 431864 21159 6004637 2024-02-19 21:24:11.888 2024-02-19 21:24:11.888 2300 FEE 431864 10530 6004638 2024-02-19 21:24:11.888 2024-02-19 21:24:11.888 20700 TIP 431864 4798 6004640 2024-02-19 21:24:23.945 2024-02-19 21:24:23.945 100 FEE 431862 18923 6004641 2024-02-19 21:24:23.945 2024-02-19 21:24:23.945 900 TIP 431862 9337 6004642 2024-02-19 21:24:24.142 2024-02-19 21:24:24.142 900 FEE 431862 20840 6004643 2024-02-19 21:24:24.142 2024-02-19 21:24:24.142 8100 TIP 431862 11789 6004665 2024-02-19 21:28:01.601 2024-02-19 21:28:01.601 1000 FEE 431885 9482 6004710 2024-02-19 21:31:39.265 2024-02-19 21:31:39.265 2700 FEE 431844 10821 6004711 2024-02-19 21:31:39.265 2024-02-19 21:31:39.265 24300 TIP 431844 17708 6004716 2024-02-19 21:31:39.815 2024-02-19 21:31:39.815 2700 FEE 431844 6030 6004717 2024-02-19 21:31:39.815 2024-02-19 21:31:39.815 24300 TIP 431844 671 6004722 2024-02-19 21:31:45.97 2024-02-19 21:31:45.97 1000 FEE 431897 19995 6004723 2024-02-19 21:32:02.348 2024-02-19 21:32:02.348 2500 FEE 431816 10536 6004724 2024-02-19 21:32:02.348 2024-02-19 21:32:02.348 22500 TIP 431816 9334 6004726 2024-02-19 21:32:05.249 2024-02-19 21:32:05.249 2100 FEE 429016 4292 6004727 2024-02-19 21:32:05.249 2024-02-19 21:32:05.249 18900 TIP 429016 14152 6004730 2024-02-19 21:32:12.085 2024-02-19 21:32:12.085 100 FEE 431896 18231 6004731 2024-02-19 21:32:12.085 2024-02-19 21:32:12.085 900 TIP 431896 19335 6004736 2024-02-19 21:32:14.132 2024-02-19 21:32:14.132 100 FEE 431854 9331 6004737 2024-02-19 21:32:14.132 2024-02-19 21:32:14.132 900 TIP 431854 9920 6004738 2024-02-19 21:32:14.31 2024-02-19 21:32:14.31 900 FEE 431854 9330 6004739 2024-02-19 21:32:14.31 2024-02-19 21:32:14.31 8100 TIP 431854 19941 6004747 2024-02-19 21:32:20.308 2024-02-19 21:32:20.308 2100 FEE 429011 2734 6004748 2024-02-19 21:32:20.308 2024-02-19 21:32:20.308 18900 TIP 429011 19132 6004753 2024-02-19 21:32:21.196 2024-02-19 21:32:21.196 2700 FEE 430811 5779 6004754 2024-02-19 21:32:21.196 2024-02-19 21:32:21.196 24300 TIP 430811 9331 6004759 2024-02-19 21:32:21.736 2024-02-19 21:32:21.736 5400 FEE 430811 19267 6004760 2024-02-19 21:32:21.736 2024-02-19 21:32:21.736 48600 TIP 430811 3478 6004778 2024-02-19 21:33:40.137 2024-02-19 21:33:40.137 0 FEE 431888 11145 6004793 2024-02-19 21:35:31.421 2024-02-19 21:35:31.421 8300 FEE 431893 19826 6004794 2024-02-19 21:35:31.421 2024-02-19 21:35:31.421 74700 TIP 431893 15484 6004797 2024-02-19 21:35:36.916 2024-02-19 21:35:36.916 16600 FEE 431894 18363 6004798 2024-02-19 21:35:36.916 2024-02-19 21:35:36.916 149400 TIP 431894 7376 6004799 2024-02-19 21:35:38.721 2024-02-19 21:35:38.721 8300 FEE 431894 16966 6004800 2024-02-19 21:35:38.721 2024-02-19 21:35:38.721 74700 TIP 431894 11018 6004805 2024-02-19 21:35:43.935 2024-02-19 21:35:43.935 300 FEE 431900 2224 6004806 2024-02-19 21:35:43.935 2024-02-19 21:35:43.935 2700 TIP 431900 11789 6004810 2024-02-19 21:35:55.471 2024-02-19 21:35:55.471 1000 FEE 431229 18745 6004811 2024-02-19 21:35:55.471 2024-02-19 21:35:55.471 9000 TIP 431229 21481 6004818 2024-02-19 21:35:56.36 2024-02-19 21:35:56.36 2300 FEE 431896 21281 6004819 2024-02-19 21:35:56.36 2024-02-19 21:35:56.36 20700 TIP 431896 9985 6004821 2024-02-19 21:36:08.417 2024-02-19 21:36:08.417 30000 FEE 431816 13903 6004822 2024-02-19 21:36:08.417 2024-02-19 21:36:08.417 270000 TIP 431816 1426 6004852 2024-02-19 21:38:21.869 2024-02-19 21:38:21.869 1000 FEE 431904 5775 6004858 2024-02-19 21:39:47.047 2024-02-19 21:39:47.047 1000 FEE 431905 18772 6004859 2024-02-19 21:39:47.047 2024-02-19 21:39:47.047 9000 TIP 431905 19639 6004878 2024-02-19 21:40:54.075 2024-02-19 21:40:54.075 1000 FEE 431908 652 6004897 2024-02-19 21:43:07.388 2024-02-19 21:43:07.388 0 FEE 361611 21057 6004920 2024-02-19 21:44:25.609 2024-02-19 21:44:25.609 800 FEE 431800 638 6004921 2024-02-19 21:44:25.609 2024-02-19 21:44:25.609 7200 TIP 431800 18116 6004922 2024-02-19 21:44:53.739 2024-02-19 21:44:53.739 1000 FEE 431910 9529 6004928 2024-02-19 21:45:40.931 2024-02-19 21:45:40.931 800 FEE 430755 805 6004929 2024-02-19 21:45:40.931 2024-02-19 21:45:40.931 7200 TIP 430755 20663 6004930 2024-02-19 21:45:50.832 2024-02-19 21:45:50.832 0 FEE 431912 12921 6004953 2024-02-19 21:48:30.919 2024-02-19 21:48:30.919 800 FEE 430502 20222 6004954 2024-02-19 21:48:30.919 2024-02-19 21:48:30.919 7200 TIP 430502 1618 6004961 2024-02-19 21:48:59.51 2024-02-19 21:48:59.51 1000 FEE 431903 8385 6004962 2024-02-19 21:48:59.51 2024-02-19 21:48:59.51 9000 TIP 431903 664 6004967 2024-02-19 21:49:02.798 2024-02-19 21:49:02.798 1000 FEE 431903 21072 6004968 2024-02-19 21:49:02.798 2024-02-19 21:49:02.798 9000 TIP 431903 18372 6004980 2024-02-19 21:49:21.598 2024-02-19 21:49:21.598 1000 FEE 431862 5829 6004981 2024-02-19 21:49:21.598 2024-02-19 21:49:21.598 9000 TIP 431862 20108 6004985 2024-02-19 21:49:41.266 2024-02-19 21:49:41.266 2100 FEE 430619 696 6004986 2024-02-19 21:49:41.266 2024-02-19 21:49:41.266 18900 TIP 430619 11443 6004997 2024-02-19 21:51:38.371 2024-02-19 21:51:38.371 2100 FEE 430713 766 6004998 2024-02-19 21:51:38.371 2024-02-19 21:51:38.371 18900 TIP 430713 17639 6005011 2024-02-19 21:52:28.951 2024-02-19 21:52:28.951 1000 FEE 431919 18984 6005025 2024-02-19 21:56:04.111 2024-02-19 21:56:04.111 100 FEE 431722 12779 6005026 2024-02-19 21:56:04.111 2024-02-19 21:56:04.111 900 TIP 431722 6616 6005028 2024-02-19 21:56:07.997 2024-02-19 21:56:07.997 100 FEE 431719 16126 6005029 2024-02-19 21:56:07.997 2024-02-19 21:56:07.997 900 TIP 431719 21482 6005063 2024-02-19 22:00:38.071 2024-02-19 22:00:38.071 4000 FEE 431844 2335 6005064 2024-02-19 22:00:38.071 2024-02-19 22:00:38.071 36000 TIP 431844 946 6005065 2024-02-19 22:00:39.71 2024-02-19 22:00:39.71 1000 FEE 431924 678 6005066 2024-02-19 22:00:39.71 2024-02-19 22:00:39.71 9000 TIP 431924 21577 6005075 2024-02-19 22:00:51.065 2024-02-19 22:00:51.065 1000 FEE 431926 11192 6005076 2024-02-19 22:00:51.065 2024-02-19 22:00:51.065 9000 TIP 431926 19910 6005094 2024-02-19 22:02:44.582 2024-02-19 22:02:44.582 2100 FEE 430942 7827 6005095 2024-02-19 22:02:44.582 2024-02-19 22:02:44.582 18900 TIP 430942 12072 6005103 2024-02-19 22:03:16.082 2024-02-19 22:03:16.082 100 FEE 431852 20551 6005104 2024-02-19 22:03:16.082 2024-02-19 22:03:16.082 900 TIP 431852 2101 6005124 2024-02-19 22:05:36.318 2024-02-19 22:05:36.318 1000 FEE 431938 13854 6005153 2024-02-19 22:14:27.443 2024-02-19 22:14:27.443 25600 FEE 431828 21061 6005154 2024-02-19 22:14:27.443 2024-02-19 22:14:27.443 230400 TIP 431828 19005 6005199 2024-02-19 22:19:30.548 2024-02-19 22:19:30.548 1000 FEE 431909 16353 6005200 2024-02-19 22:19:30.548 2024-02-19 22:19:30.548 9000 TIP 431909 795 6005203 2024-02-19 22:19:32.992 2024-02-19 22:19:32.992 100 FEE 431938 16350 6005204 2024-02-19 22:19:32.992 2024-02-19 22:19:32.992 900 TIP 431938 1881 6005207 2024-02-19 22:19:33.395 2024-02-19 22:19:33.395 100 FEE 431938 21578 6005208 2024-02-19 22:19:33.395 2024-02-19 22:19:33.395 900 TIP 431938 21164 6005215 2024-02-19 22:19:34.564 2024-02-19 22:19:34.564 100 FEE 431938 16250 6005216 2024-02-19 22:19:34.564 2024-02-19 22:19:34.564 900 TIP 431938 16717 6005219 2024-02-19 22:19:35.285 2024-02-19 22:19:35.285 100 FEE 431938 11314 6004457 2024-02-19 20:57:26.777 2024-02-19 20:57:26.777 100 FEE 431816 660 6004458 2024-02-19 20:57:26.777 2024-02-19 20:57:26.777 900 TIP 431816 18919 6004487 2024-02-19 21:00:03.578 2024-02-19 21:00:03.578 1000 STREAM 141924 19094 6004511 2024-02-19 21:00:56.59 2024-02-19 21:00:56.59 1000 FEE 431863 7125 6004512 2024-02-19 21:00:56.59 2024-02-19 21:00:56.59 9000 TIP 431863 713 6004515 2024-02-19 21:01:03.559 2024-02-19 21:01:03.559 1000 STREAM 141924 7376 6004519 2024-02-19 21:01:24.074 2024-02-19 21:01:24.074 1000 FEE 431866 1806 6004520 2024-02-19 21:01:24.443 2024-02-19 21:01:24.443 1000 FEE 431752 10311 6004521 2024-02-19 21:01:24.443 2024-02-19 21:01:24.443 9000 TIP 431752 2195 6004534 2024-02-19 21:01:57.348 2024-02-19 21:01:57.348 1000 FEE 431223 5495 6004535 2024-02-19 21:01:57.348 2024-02-19 21:01:57.348 9000 TIP 431223 10280 6004538 2024-02-19 21:02:03.008 2024-02-19 21:02:03.008 1000 STREAM 141924 20280 6004552 2024-02-19 21:03:46.971 2024-02-19 21:03:46.971 0 FEE 431861 20412 6004554 2024-02-19 21:04:03.02 2024-02-19 21:04:03.02 1000 STREAM 141924 4378 6004561 2024-02-19 21:04:22.876 2024-02-19 21:04:22.876 0 FEE 431861 1326 6004562 2024-02-19 21:04:36.646 2024-02-19 21:04:36.646 0 FEE 431861 9438 6004592 2024-02-19 21:14:03.076 2024-02-19 21:14:03.076 1000 STREAM 141924 21627 6004606 2024-02-19 21:20:30.2 2024-02-19 21:20:30.2 15000 FEE 431721 19615 6004607 2024-02-19 21:20:30.2 2024-02-19 21:20:30.2 135000 TIP 431721 5175 6004625 2024-02-19 21:23:38.677 2024-02-19 21:23:38.677 21000 FEE 431877 6383 6004633 2024-02-19 21:24:11.144 2024-02-19 21:24:11.144 2300 FEE 431864 2749 6004634 2024-02-19 21:24:11.144 2024-02-19 21:24:11.144 20700 TIP 431864 21401 6004645 2024-02-19 21:24:33.67 2024-02-19 21:24:33.67 9000 FEE 431862 14385 6004646 2024-02-19 21:24:33.67 2024-02-19 21:24:33.67 81000 TIP 431862 1624 6004652 2024-02-19 21:25:34.075 2024-02-19 21:25:34.075 2700 FEE 430960 1483 6004653 2024-02-19 21:25:34.075 2024-02-19 21:25:34.075 24300 TIP 430960 16542 6004658 2024-02-19 21:25:49.249 2024-02-19 21:25:49.249 1000 FEE 431882 16532 6004677 2024-02-19 21:28:39.893 2024-02-19 21:28:39.893 1000 FEE 431877 21612 6004678 2024-02-19 21:28:39.893 2024-02-19 21:28:39.893 9000 TIP 431877 16747 6004689 2024-02-19 21:30:31.85 2024-02-19 21:30:31.85 1000 FEE 431893 3656 6004701 2024-02-19 21:30:35.407 2024-02-19 21:30:35.407 1000 FEE 431882 21588 6004702 2024-02-19 21:30:35.407 2024-02-19 21:30:35.407 9000 TIP 431882 20901 6004712 2024-02-19 21:31:39.472 2024-02-19 21:31:39.472 2700 FEE 431844 20713 6004713 2024-02-19 21:31:39.472 2024-02-19 21:31:39.472 24300 TIP 431844 7986 6004728 2024-02-19 21:32:07.26 2024-02-19 21:32:07.26 2500 FEE 431816 13763 6004729 2024-02-19 21:32:07.26 2024-02-19 21:32:07.26 22500 TIP 431816 19199 6004767 2024-02-19 21:32:37.745 2024-02-19 21:32:37.745 2100 FEE 429306 10728 6004768 2024-02-19 21:32:37.745 2024-02-19 21:32:37.745 18900 TIP 429306 17227 6004771 2024-02-19 21:33:01.687 2024-02-19 21:33:01.687 2700 FEE 430892 2361 6004772 2024-02-19 21:33:01.687 2024-02-19 21:33:01.687 24300 TIP 430892 9330 6004814 2024-02-19 21:35:56.1 2024-02-19 21:35:56.1 2300 FEE 431896 10818 6004815 2024-02-19 21:35:56.1 2024-02-19 21:35:56.1 20700 TIP 431896 9874 6004841 2024-02-19 21:38:02.548 2024-02-19 21:38:02.548 400 FEE 431811 8729 6004842 2024-02-19 21:38:02.548 2024-02-19 21:38:02.548 3600 TIP 431811 10934 6004844 2024-02-19 21:38:04.277 2024-02-19 21:38:04.277 400 FEE 431814 15103 6004845 2024-02-19 21:38:04.277 2024-02-19 21:38:04.277 3600 TIP 431814 15732 6004864 2024-02-19 21:39:48.126 2024-02-19 21:39:48.126 1000 FEE 431905 1817 6004865 2024-02-19 21:39:48.126 2024-02-19 21:39:48.126 9000 TIP 431905 20470 6004886 2024-02-19 21:42:09.09 2024-02-19 21:42:09.09 0 FEE 431904 2342 6004904 2024-02-19 21:43:27.681 2024-02-19 21:43:27.681 2300 FEE 431909 13921 6004905 2024-02-19 21:43:27.681 2024-02-19 21:43:27.681 20700 TIP 431909 2718 6004917 2024-02-19 21:44:15.388 2024-02-19 21:44:15.388 0 FEE 361611 20502 6004934 2024-02-19 21:46:26.37 2024-02-19 21:46:26.37 1600 FEE 430715 19094 6004935 2024-02-19 21:46:26.37 2024-02-19 21:46:26.37 14400 TIP 430715 4654 6004936 2024-02-19 21:46:36.434 2024-02-19 21:46:36.434 800 FEE 431079 7668 6004937 2024-02-19 21:46:36.434 2024-02-19 21:46:36.434 7200 TIP 431079 19459 6004969 2024-02-19 21:49:03.173 2024-02-19 21:49:03.173 1000 FEE 431903 5455 6004970 2024-02-19 21:49:03.173 2024-02-19 21:49:03.173 9000 TIP 431903 656 6004972 2024-02-19 21:49:04.875 2024-02-19 21:49:04.875 5000 FEE 431451 7587 6004973 2024-02-19 21:49:04.875 2024-02-19 21:49:04.875 45000 TIP 431451 1741 6004992 2024-02-19 21:50:11.565 2024-02-19 21:50:11.565 1000 FEE 431597 15941 6004993 2024-02-19 21:50:11.565 2024-02-19 21:50:11.565 9000 TIP 431597 18828 6005016 2024-02-19 21:53:47.437 2024-02-19 21:53:47.437 1000 FEE 431921 19512 6005022 2024-02-19 21:55:59.619 2024-02-19 21:55:59.619 100 FEE 431389 19826 6005023 2024-02-19 21:55:59.619 2024-02-19 21:55:59.619 900 TIP 431389 20990 6005032 2024-02-19 21:56:58.067 2024-02-19 21:56:58.067 700 FEE 431571 21620 6005033 2024-02-19 21:56:58.067 2024-02-19 21:56:58.067 6300 TIP 431571 16193 6005040 2024-02-19 21:57:00.166 2024-02-19 21:57:00.166 1000 FEE 431922 19303 6005041 2024-02-19 21:57:00.166 2024-02-19 21:57:00.166 9000 TIP 431922 20306 6005080 2024-02-19 22:01:05.79 2024-02-19 22:01:05.79 1000 FEE 431931 20120 6005101 2024-02-19 22:03:11.778 2024-02-19 22:03:11.778 1000 FEE 431852 673 6005102 2024-02-19 22:03:11.778 2024-02-19 22:03:11.778 9000 TIP 431852 2042 6005105 2024-02-19 22:03:20.249 2024-02-19 22:03:20.249 0 FEE 431931 20299 6005110 2024-02-19 22:03:53.135 2024-02-19 22:03:53.135 2100 FEE 431861 18472 6005111 2024-02-19 22:03:53.135 2024-02-19 22:03:53.135 18900 TIP 431861 17221 6005132 2024-02-19 22:08:56.642 2024-02-19 22:08:56.642 1000 FEE 431940 1495 6005139 2024-02-19 22:11:01.249 2024-02-19 22:11:01.249 300 FEE 431908 20636 6005140 2024-02-19 22:11:01.249 2024-02-19 22:11:01.249 2700 TIP 431908 12289 6005142 2024-02-19 22:11:04.438 2024-02-19 22:11:04.438 300 FEE 431907 18664 6005143 2024-02-19 22:11:04.438 2024-02-19 22:11:04.438 2700 TIP 431907 15088 6005144 2024-02-19 22:11:30.814 2024-02-19 22:11:30.814 1000 FEE 431943 836 6005171 2024-02-19 22:17:28.641 2024-02-19 22:17:28.641 4200 FEE 430593 1221 6005172 2024-02-19 22:17:28.641 2024-02-19 22:17:28.641 37800 TIP 430593 20258 6005173 2024-02-19 22:17:58.387 2024-02-19 22:17:58.387 1000 FEE 431952 16789 6005182 2024-02-19 22:19:09.956 2024-02-19 22:19:09.956 1000 FEE 431946 676 6005183 2024-02-19 22:19:09.956 2024-02-19 22:19:09.956 9000 TIP 431946 16950 6005184 2024-02-19 22:19:10.124 2024-02-19 22:19:10.124 1000 FEE 431928 10771 6005185 2024-02-19 22:19:10.124 2024-02-19 22:19:10.124 9000 TIP 431928 20717 6005205 2024-02-19 22:19:33.197 2024-02-19 22:19:33.197 100 FEE 431938 15049 6005206 2024-02-19 22:19:33.197 2024-02-19 22:19:33.197 900 TIP 431938 17526 6005233 2024-02-19 22:21:18.116 2024-02-19 22:21:18.116 300 FEE 431899 5852 6005234 2024-02-19 22:21:18.116 2024-02-19 22:21:18.116 2700 TIP 431899 17095 6005273 2024-02-19 22:34:21.884 2024-02-19 22:34:21.884 2100 FEE 430924 9171 6005274 2024-02-19 22:34:21.884 2024-02-19 22:34:21.884 18900 TIP 430924 828 6005275 2024-02-19 22:34:30.143 2024-02-19 22:34:30.143 1000 FEE 431962 15159 6005313 2024-02-19 22:39:29.233 2024-02-19 22:39:29.233 1000 FEE 431967 11145 6005316 2024-02-19 22:39:49.456 2024-02-19 22:39:49.456 2100 FEE 430824 9026 6005317 2024-02-19 22:39:49.456 2024-02-19 22:39:49.456 18900 TIP 430824 5776 6005351 2024-02-19 22:44:29.872 2024-02-19 22:44:29.872 2100 FEE 431869 15094 6005352 2024-02-19 22:44:29.872 2024-02-19 22:44:29.872 18900 TIP 431869 18660 6005355 2024-02-19 22:44:36.245 2024-02-19 22:44:36.245 1000 FEE 430569 18641 6005356 2024-02-19 22:44:36.245 2024-02-19 22:44:36.245 9000 TIP 430569 18680 6005357 2024-02-19 22:44:42.804 2024-02-19 22:44:42.804 2100 FEE 431910 20745 6005358 2024-02-19 22:44:42.804 2024-02-19 22:44:42.804 18900 TIP 431910 20681 6005372 2024-02-19 22:46:23.193 2024-02-19 22:46:23.193 900 FEE 431963 5497 6005373 2024-02-19 22:46:23.193 2024-02-19 22:46:23.193 8100 TIP 431963 17095 6005386 2024-02-19 22:48:24.15 2024-02-19 22:48:24.15 900 FEE 431962 20208 6004573 2024-02-19 21:07:03.59 2024-02-19 21:07:03.59 1000 STREAM 141924 18232 6004575 2024-02-19 21:08:03.603 2024-02-19 21:08:03.603 1000 STREAM 141924 18448 6004584 2024-02-19 21:11:03.622 2024-02-19 21:11:03.622 1000 STREAM 141924 6030 6004591 2024-02-19 21:13:03.63 2024-02-19 21:13:03.63 1000 STREAM 141924 2056 6004603 2024-02-19 21:20:03.686 2024-02-19 21:20:03.686 1000 STREAM 141924 20854 6004618 2024-02-19 21:22:03.698 2024-02-19 21:22:03.698 1000 STREAM 141924 11862 6004661 2024-02-19 21:26:03.729 2024-02-19 21:26:03.729 1000 STREAM 141924 3544 6004664 2024-02-19 21:27:03.728 2024-02-19 21:27:03.728 1000 STREAM 141924 16442 6004687 2024-02-19 21:30:03.754 2024-02-19 21:30:03.754 1000 STREAM 141924 4391 6004725 2024-02-19 21:32:03.777 2024-02-19 21:32:03.777 1000 STREAM 141924 7877 6004779 2024-02-19 21:34:03.788 2024-02-19 21:34:03.788 1000 STREAM 141924 19843 6004820 2024-02-19 21:36:03.788 2024-02-19 21:36:03.788 1000 STREAM 141924 1046 6004914 2024-02-19 21:44:03.84 2024-02-19 21:44:03.84 1000 STREAM 141924 1064 6005010 2024-02-19 21:52:03.936 2024-02-19 21:52:03.936 1000 STREAM 141924 19852 6005141 2024-02-19 22:11:03.97 2024-02-19 22:11:03.97 1000 STREAM 141924 730 6004574 2024-02-19 21:07:07.957 2024-02-19 21:07:07.957 21000 FEE 431869 10013 6004585 2024-02-19 21:11:37.067 2024-02-19 21:11:37.067 2100 FEE 431813 4345 6004586 2024-02-19 21:11:37.067 2024-02-19 21:11:37.067 18900 TIP 431813 17001 6004639 2024-02-19 21:24:21.699 2024-02-19 21:24:21.699 1000 FEE 431879 18372 6004648 2024-02-19 21:25:11.065 2024-02-19 21:25:11.065 300 FEE 431663 1495 6004649 2024-02-19 21:25:11.065 2024-02-19 21:25:11.065 2700 TIP 431663 21520 6004659 2024-02-19 21:25:54.981 2024-02-19 21:25:54.981 4000 FEE 431877 16706 6004660 2024-02-19 21:25:54.981 2024-02-19 21:25:54.981 36000 TIP 431877 15577 6004669 2024-02-19 21:28:37.167 2024-02-19 21:28:37.167 1000 FEE 431877 21022 6004670 2024-02-19 21:28:37.167 2024-02-19 21:28:37.167 9000 TIP 431877 6653 6004695 2024-02-19 21:30:34.545 2024-02-19 21:30:34.545 1000 FEE 431882 8242 6004696 2024-02-19 21:30:34.545 2024-02-19 21:30:34.545 9000 TIP 431882 12024 6004699 2024-02-19 21:30:35.244 2024-02-19 21:30:35.244 10100 FEE 431844 9845 6004700 2024-02-19 21:30:35.244 2024-02-19 21:30:35.244 90900 TIP 431844 997 6004718 2024-02-19 21:31:40.019 2024-02-19 21:31:40.019 2700 FEE 431844 12346 6004719 2024-02-19 21:31:40.019 2024-02-19 21:31:40.019 24300 TIP 431844 20353 6004732 2024-02-19 21:32:12.256 2024-02-19 21:32:12.256 900 FEE 431896 20381 6004733 2024-02-19 21:32:12.256 2024-02-19 21:32:12.256 8100 TIP 431896 695 6004741 2024-02-19 21:32:18.115 2024-02-19 21:32:18.115 100 FEE 431864 20811 6004742 2024-02-19 21:32:18.115 2024-02-19 21:32:18.115 900 TIP 431864 634 6004801 2024-02-19 21:35:43.674 2024-02-19 21:35:43.674 2700 FEE 431862 21458 6004802 2024-02-19 21:35:43.674 2024-02-19 21:35:43.674 24300 TIP 431862 19507 6004807 2024-02-19 21:35:44.02 2024-02-19 21:35:44.02 2700 FEE 431862 6602 6004808 2024-02-19 21:35:44.02 2024-02-19 21:35:44.02 24300 TIP 431862 16348 6004816 2024-02-19 21:35:56.204 2024-02-19 21:35:56.204 2300 FEE 431896 631 6004817 2024-02-19 21:35:56.204 2024-02-19 21:35:56.204 20700 TIP 431896 14906 6004837 2024-02-19 21:37:54.841 2024-02-19 21:37:54.841 400 FEE 431891 20137 6004838 2024-02-19 21:37:54.841 2024-02-19 21:37:54.841 3600 TIP 431891 2724 6004846 2024-02-19 21:38:04.609 2024-02-19 21:38:04.609 3000 FEE 431161 20450 6004847 2024-02-19 21:38:04.609 2024-02-19 21:38:04.609 27000 TIP 431161 621 6004870 2024-02-19 21:40:17.984 2024-02-19 21:40:17.984 1000 FEE 431883 15273 6004871 2024-02-19 21:40:17.984 2024-02-19 21:40:17.984 9000 TIP 431883 19501 6004872 2024-02-19 21:40:18.985 2024-02-19 21:40:18.985 1000 FEE 431883 20117 6004873 2024-02-19 21:40:18.985 2024-02-19 21:40:18.985 9000 TIP 431883 1717 6004876 2024-02-19 21:40:19.648 2024-02-19 21:40:19.648 1000 FEE 431883 20573 6004877 2024-02-19 21:40:19.648 2024-02-19 21:40:19.648 9000 TIP 431883 21238 6004891 2024-02-19 21:42:15.56 2024-02-19 21:42:15.56 2700 FEE 431904 10728 6004892 2024-02-19 21:42:15.56 2024-02-19 21:42:15.56 24300 TIP 431904 3304 6004908 2024-02-19 21:43:28.038 2024-02-19 21:43:28.038 2300 FEE 431909 15161 6004909 2024-02-19 21:43:28.038 2024-02-19 21:43:28.038 20700 TIP 431909 18446 6004910 2024-02-19 21:43:31.139 2024-02-19 21:43:31.139 1600 FEE 431401 14663 6004911 2024-02-19 21:43:31.139 2024-02-19 21:43:31.139 14400 TIP 431401 10493 6004923 2024-02-19 21:44:59.984 2024-02-19 21:44:59.984 1000 FEE 431911 909 6004939 2024-02-19 21:47:03.687 2024-02-19 21:47:03.687 1000 FEE 431913 13174 6004976 2024-02-19 21:49:20.396 2024-02-19 21:49:20.396 1000 FEE 431862 631 6004977 2024-02-19 21:49:20.396 2024-02-19 21:49:20.396 9000 TIP 431862 4391 6005005 2024-02-19 21:51:54.3 2024-02-19 21:51:54.3 1000 FEE 431913 17331 6005006 2024-02-19 21:51:54.3 2024-02-19 21:51:54.3 9000 TIP 431913 18068 6005007 2024-02-19 21:51:54.866 2024-02-19 21:51:54.866 1000 FEE 431913 19664 6005008 2024-02-19 21:51:54.866 2024-02-19 21:51:54.866 9000 TIP 431913 659 6005027 2024-02-19 21:56:07.015 2024-02-19 21:56:07.015 1000 FEE 431923 18380 6005034 2024-02-19 21:56:58.287 2024-02-19 21:56:58.287 700 FEE 431571 10409 6005035 2024-02-19 21:56:58.287 2024-02-19 21:56:58.287 6300 TIP 431571 716 6005051 2024-02-19 21:58:14.059 2024-02-19 21:58:14.059 1000 FEE 431927 15925 6005071 2024-02-19 22:00:47.364 2024-02-19 22:00:47.364 1000 FEE 431926 16097 6005072 2024-02-19 22:00:47.364 2024-02-19 22:00:47.364 9000 TIP 431926 11018 6005091 2024-02-19 22:02:35.574 2024-02-19 22:02:35.574 1000 FEE 431933 2195 6005092 2024-02-19 22:02:36.856 2024-02-19 22:02:36.856 2100 FEE 430933 700 6005093 2024-02-19 22:02:36.856 2024-02-19 22:02:36.856 18900 TIP 430933 19469 6005099 2024-02-19 22:03:11.648 2024-02-19 22:03:11.648 1000 FEE 431852 21578 6005100 2024-02-19 22:03:11.648 2024-02-19 22:03:11.648 9000 TIP 431852 20208 6005122 2024-02-19 22:05:27.354 2024-02-19 22:05:27.354 2100 FEE 431936 11996 6005123 2024-02-19 22:05:27.354 2024-02-19 22:05:27.354 18900 TIP 431936 11714 6005178 2024-02-19 22:19:07.966 2024-02-19 22:19:07.966 1000 FEE 431949 673 6005179 2024-02-19 22:19:07.966 2024-02-19 22:19:07.966 9000 TIP 431949 5173 6005186 2024-02-19 22:19:12.376 2024-02-19 22:19:12.376 1000 FEE 431918 9275 6005187 2024-02-19 22:19:12.376 2024-02-19 22:19:12.376 9000 TIP 431918 16998 6005190 2024-02-19 22:19:25.563 2024-02-19 22:19:25.563 1000 FEE 431953 987 6005195 2024-02-19 22:19:30.355 2024-02-19 22:19:30.355 2100 FEE 431938 20452 6005196 2024-02-19 22:19:30.355 2024-02-19 22:19:30.355 18900 TIP 431938 11819 6005201 2024-02-19 22:19:32.819 2024-02-19 22:19:32.819 100 FEE 431938 11898 6005202 2024-02-19 22:19:32.819 2024-02-19 22:19:32.819 900 TIP 431938 5757 6005209 2024-02-19 22:19:33.559 2024-02-19 22:19:33.559 100 FEE 431938 5597 6005210 2024-02-19 22:19:33.559 2024-02-19 22:19:33.559 900 TIP 431938 21218 6005223 2024-02-19 22:19:35.779 2024-02-19 22:19:35.779 100 FEE 431938 1047 6005224 2024-02-19 22:19:35.779 2024-02-19 22:19:35.779 900 TIP 431938 1002 6005282 2024-02-19 22:35:43.669 2024-02-19 22:35:43.669 1000 FEE 431964 21334 6005326 2024-02-19 22:40:38.219 2024-02-19 22:40:38.219 2100 FEE 431965 19796 6005327 2024-02-19 22:40:38.219 2024-02-19 22:40:38.219 18900 TIP 431965 20597 6005334 2024-02-19 22:43:23.084 2024-02-19 22:43:23.084 1000 FEE 431816 21624 6005335 2024-02-19 22:43:23.084 2024-02-19 22:43:23.084 9000 TIP 431816 1673 6005344 2024-02-19 22:43:38.064 2024-02-19 22:43:38.064 1000 FEE 431970 21620 6005345 2024-02-19 22:43:51.058 2024-02-19 22:43:51.058 1000 FEE 431971 763 6005353 2024-02-19 22:44:33.285 2024-02-19 22:44:33.285 2100 FEE 431872 626 6005354 2024-02-19 22:44:33.285 2024-02-19 22:44:33.285 18900 TIP 431872 638 6005366 2024-02-19 22:45:38.387 2024-02-19 22:45:38.387 2100 FEE 430957 7558 6005367 2024-02-19 22:45:38.387 2024-02-19 22:45:38.387 18900 TIP 430957 18836 6005374 2024-02-19 22:46:23.664 2024-02-19 22:46:23.664 9000 FEE 431963 18751 6005375 2024-02-19 22:46:23.664 2024-02-19 22:46:23.664 81000 TIP 431963 18393 6005390 2024-02-19 22:48:36.83 2024-02-19 22:48:36.83 2100 FEE 431816 4763 6005391 2024-02-19 22:48:36.83 2024-02-19 22:48:36.83 18900 TIP 431816 16633 6005392 2024-02-19 22:48:37.233 2024-02-19 22:48:37.233 2100 FEE 431401 6653 6005393 2024-02-19 22:48:37.233 2024-02-19 22:48:37.233 18900 TIP 431401 19018 6005394 2024-02-19 22:48:37.715 2024-02-19 22:48:37.715 2100 FEE 431809 14818 6005395 2024-02-19 22:48:37.715 2024-02-19 22:48:37.715 18900 TIP 431809 12218 6005420 2024-02-19 22:48:47.703 2024-02-19 22:48:47.703 2100 FEE 431909 6421 6005421 2024-02-19 22:48:47.703 2024-02-19 22:48:47.703 18900 TIP 431909 15119 6005426 2024-02-19 22:48:50.585 2024-02-19 22:48:50.585 2100 FEE 430569 19995 6005427 2024-02-19 22:48:50.585 2024-02-19 22:48:50.585 18900 TIP 430569 640 6005428 2024-02-19 22:48:50.848 2024-02-19 22:48:50.848 2100 FEE 430811 6058 6005429 2024-02-19 22:48:50.848 2024-02-19 22:48:50.848 18900 TIP 430811 4487 6005469 2024-02-19 22:55:15.847 2024-02-19 22:55:15.847 1000 FEE 431979 19105 6005483 2024-02-19 22:57:06.664 2024-02-19 22:57:06.664 1000 FEE 430673 20811 6005484 2024-02-19 22:57:06.664 2024-02-19 22:57:06.664 9000 TIP 430673 652 6005485 2024-02-19 22:57:16.877 2024-02-19 22:57:16.877 1000 FEE 430668 1647 6005486 2024-02-19 22:57:16.877 2024-02-19 22:57:16.877 9000 TIP 430668 6419 6005534 2024-02-19 23:07:28.459 2024-02-19 23:07:28.459 1000 FEE 431988 16680 6004580 2024-02-19 21:09:03.617 2024-02-19 21:09:03.617 1000 STREAM 141924 2056 6004583 2024-02-19 21:10:03.087 2024-02-19 21:10:03.087 1000 STREAM 141924 20889 6004587 2024-02-19 21:12:03.602 2024-02-19 21:12:03.602 1000 STREAM 141924 7587 6004593 2024-02-19 21:15:03.642 2024-02-19 21:15:03.642 1000 STREAM 141924 9809 6004594 2024-02-19 21:16:03.66 2024-02-19 21:16:03.66 1000 STREAM 141924 20889 6004595 2024-02-19 21:17:03.676 2024-02-19 21:17:03.676 1000 STREAM 141924 16680 6004599 2024-02-19 21:18:03.671 2024-02-19 21:18:03.671 1000 STREAM 141924 6003 6004602 2024-02-19 21:19:03.131 2024-02-19 21:19:03.131 1000 STREAM 141924 8133 6004623 2024-02-19 21:23:03.148 2024-02-19 21:23:03.148 1000 STREAM 141924 9183 6004632 2024-02-19 21:24:03.714 2024-02-19 21:24:03.714 1000 STREAM 141924 1718 6004667 2024-02-19 21:28:03.726 2024-02-19 21:28:03.726 1000 STREAM 141924 21389 6004681 2024-02-19 21:29:03.17 2024-02-19 21:29:03.17 1000 STREAM 141924 18336 6004775 2024-02-19 21:33:03.19 2024-02-19 21:33:03.19 1000 STREAM 141924 20109 6004781 2024-02-19 21:35:03.193 2024-02-19 21:35:03.193 1000 STREAM 141924 992 6004835 2024-02-19 21:37:03.212 2024-02-19 21:37:03.212 1000 STREAM 141924 11942 6004843 2024-02-19 21:38:03.808 2024-02-19 21:38:03.808 1000 STREAM 141924 19381 6004866 2024-02-19 21:40:03.807 2024-02-19 21:40:03.807 1000 STREAM 141924 19021 6004879 2024-02-19 21:41:03.249 2024-02-19 21:41:03.249 1000 STREAM 141924 21057 6004885 2024-02-19 21:42:03.8 2024-02-19 21:42:03.8 1000 STREAM 141924 21239 6004931 2024-02-19 21:46:03.864 2024-02-19 21:46:03.864 1000 STREAM 141924 19352 6004938 2024-02-19 21:47:03.27 2024-02-19 21:47:03.27 1000 STREAM 141924 16842 6004950 2024-02-19 21:48:03.871 2024-02-19 21:48:03.871 1000 STREAM 141924 5759 6004971 2024-02-19 21:49:03.274 2024-02-19 21:49:03.274 1000 STREAM 141924 3304 6004991 2024-02-19 21:50:03.897 2024-02-19 21:50:03.897 1000 STREAM 141924 20291 6004996 2024-02-19 21:51:03.301 2024-02-19 21:51:03.301 1000 STREAM 141924 6798 6005013 2024-02-19 21:53:03.273 2024-02-19 21:53:03.273 1000 STREAM 141924 2710 6005017 2024-02-19 21:54:03.908 2024-02-19 21:54:03.908 1000 STREAM 141924 10493 6005020 2024-02-19 21:55:03.307 2024-02-19 21:55:03.307 1000 STREAM 141924 2123 6005024 2024-02-19 21:56:03.908 2024-02-19 21:56:03.908 1000 STREAM 141924 18828 6005042 2024-02-19 21:57:03.312 2024-02-19 21:57:03.312 1000 STREAM 141924 16717 6005054 2024-02-19 21:59:03.914 2024-02-19 21:59:03.914 1000 STREAM 141924 19810 6005126 2024-02-19 22:07:03.355 2024-02-19 22:07:03.355 1000 STREAM 141924 19902 6005131 2024-02-19 22:08:03.389 2024-02-19 22:08:03.389 1000 STREAM 141924 18629 6005148 2024-02-19 22:13:03.396 2024-02-19 22:13:03.396 1000 STREAM 141924 886 6005162 2024-02-19 22:16:03.407 2024-02-19 22:16:03.407 1000 STREAM 141924 4059 6005167 2024-02-19 22:17:03.414 2024-02-19 22:17:03.414 1000 STREAM 141924 19770 6005174 2024-02-19 22:18:03.407 2024-02-19 22:18:03.407 1000 STREAM 141924 16357 6005225 2024-02-19 22:20:03.431 2024-02-19 22:20:03.431 1000 STREAM 141924 721 6005232 2024-02-19 22:21:03.471 2024-02-19 22:21:03.471 1000 STREAM 141924 18208 6005236 2024-02-19 22:22:03.435 2024-02-19 22:22:03.435 1000 STREAM 141924 2963 6005247 2024-02-19 22:24:03.437 2024-02-19 22:24:03.437 1000 STREAM 141924 1751 6005250 2024-02-19 22:25:03.444 2024-02-19 22:25:03.444 1000 STREAM 141924 1122 6005251 2024-02-19 22:26:03.453 2024-02-19 22:26:03.453 1000 STREAM 141924 6602 6005258 2024-02-19 22:30:03.531 2024-02-19 22:30:03.531 1000 STREAM 141924 9184 6005265 2024-02-19 22:32:03.483 2024-02-19 22:32:03.483 1000 STREAM 141924 21589 6005278 2024-02-19 22:35:03.495 2024-02-19 22:35:03.495 1000 STREAM 141924 21624 6005320 2024-02-19 22:40:03.587 2024-02-19 22:40:03.587 1000 STREAM 141924 20581 6005332 2024-02-19 22:42:03.563 2024-02-19 22:42:03.563 1000 STREAM 141924 17148 6005368 2024-02-19 22:46:03.569 2024-02-19 22:46:03.569 1000 STREAM 141924 20710 6005450 2024-02-19 22:50:03.605 2024-02-19 22:50:03.605 1000 STREAM 141924 1652 6005456 2024-02-19 22:51:03.599 2024-02-19 22:51:03.599 1000 STREAM 141924 6421 6005460 2024-02-19 22:52:03.596 2024-02-19 22:52:03.596 1000 STREAM 141924 825 6005467 2024-02-19 22:54:03.602 2024-02-19 22:54:03.602 1000 STREAM 141924 17411 6005482 2024-02-19 22:57:03.621 2024-02-19 22:57:03.621 1000 STREAM 141924 20623 6005489 2024-02-19 22:58:03.632 2024-02-19 22:58:03.632 1000 STREAM 141924 8245 6005510 2024-02-19 23:02:03.681 2024-02-19 23:02:03.681 1000 STREAM 141924 2528 6005516 2024-02-19 23:03:03.706 2024-02-19 23:03:03.706 1000 STREAM 141924 1845 6005528 2024-02-19 23:05:03.735 2024-02-19 23:05:03.735 1000 STREAM 141924 21254 6005529 2024-02-19 23:06:03.752 2024-02-19 23:06:03.752 1000 STREAM 141924 14295 6005538 2024-02-19 23:08:03.782 2024-02-19 23:08:03.782 1000 STREAM 141924 18659 6005557 2024-02-19 23:10:03.842 2024-02-19 23:10:03.842 1000 STREAM 141924 12921 6005563 2024-02-19 23:13:03.837 2024-02-19 23:13:03.837 1000 STREAM 141924 1740 6005564 2024-02-19 23:14:03.835 2024-02-19 23:14:03.835 1000 STREAM 141924 18396 6005566 2024-02-19 23:16:03.868 2024-02-19 23:16:03.868 1000 STREAM 141924 7583 6005567 2024-02-19 23:17:03.878 2024-02-19 23:17:03.878 1000 STREAM 141924 11956 6005574 2024-02-19 23:19:03.91 2024-02-19 23:19:03.91 1000 STREAM 141924 1576 6005581 2024-02-19 23:21:03.934 2024-02-19 23:21:03.934 1000 STREAM 141924 18178 6005583 2024-02-19 23:22:03.954 2024-02-19 23:22:03.954 1000 STREAM 141924 998 6005585 2024-02-19 23:24:03.964 2024-02-19 23:24:03.964 1000 STREAM 141924 19848 6005588 2024-02-19 23:25:03.985 2024-02-19 23:25:03.985 1000 STREAM 141924 2780 6005589 2024-02-19 23:26:03.989 2024-02-19 23:26:03.989 1000 STREAM 141924 17116 6005600 2024-02-19 23:27:04.013 2024-02-19 23:27:04.013 1000 STREAM 141924 16965 6005606 2024-02-19 23:28:04.033 2024-02-19 23:28:04.033 1000 STREAM 141924 16350 6005634 2024-02-19 23:30:04.143 2024-02-19 23:30:04.143 1000 STREAM 141924 4459 6005641 2024-02-19 23:31:04.044 2024-02-19 23:31:04.044 1000 STREAM 141924 2330 6005646 2024-02-19 23:32:04.044 2024-02-19 23:32:04.044 1000 STREAM 141924 17109 6005660 2024-02-19 23:35:04.08 2024-02-19 23:35:04.08 1000 STREAM 141924 4521 6005690 2024-02-19 23:40:04.24 2024-02-19 23:40:04.24 1000 STREAM 141924 17552 6005697 2024-02-19 23:41:04.172 2024-02-19 23:41:04.172 1000 STREAM 141924 17639 6005700 2024-02-19 23:42:04.192 2024-02-19 23:42:04.192 1000 STREAM 141924 20157 6005715 2024-02-19 23:44:04.214 2024-02-19 23:44:04.214 1000 STREAM 141924 5791 6005724 2024-02-19 23:45:04.225 2024-02-19 23:45:04.225 1000 STREAM 141924 7587 6006188 2024-02-20 00:33:03.252 2024-02-20 00:33:03.252 1000 STREAM 141924 17095 6006201 2024-02-20 00:36:03.326 2024-02-20 00:36:03.326 1000 STREAM 141924 19981 6006207 2024-02-20 00:38:03.324 2024-02-20 00:38:03.324 1000 STREAM 141924 11750 6006228 2024-02-20 00:42:03.496 2024-02-20 00:42:03.496 1000 STREAM 141924 12218 6006241 2024-02-20 00:45:03.404 2024-02-20 00:45:03.404 1000 STREAM 141924 7583 6006243 2024-02-20 00:47:03.401 2024-02-20 00:47:03.401 1000 STREAM 141924 3729 6006244 2024-02-20 00:48:03.403 2024-02-20 00:48:03.403 1000 STREAM 141924 8870 6006247 2024-02-20 00:51:03.424 2024-02-20 00:51:03.424 1000 STREAM 141924 19663 6006249 2024-02-20 00:53:03.429 2024-02-20 00:53:03.429 1000 STREAM 141924 20802 6006251 2024-02-20 00:54:03.466 2024-02-20 00:54:03.466 1000 STREAM 141924 1092 6006253 2024-02-20 00:56:03.427 2024-02-20 00:56:03.427 1000 STREAM 141924 9348 6006255 2024-02-20 00:57:03.495 2024-02-20 00:57:03.495 1000 STREAM 141924 9246 6006257 2024-02-20 00:59:03.444 2024-02-20 00:59:03.444 1000 STREAM 141924 1845 6006259 2024-02-20 01:00:03.49 2024-02-20 01:00:03.49 1000 STREAM 141924 5112 6006277 2024-02-20 01:03:03.47 2024-02-20 01:03:03.47 1000 STREAM 141924 4173 6006293 2024-02-20 01:07:03.495 2024-02-20 01:07:03.495 1000 STREAM 141924 16348 6006298 2024-02-20 01:09:03.505 2024-02-20 01:09:03.505 1000 STREAM 141924 21003 6006302 2024-02-20 01:11:03.508 2024-02-20 01:11:03.508 1000 STREAM 141924 19309 6006312 2024-02-20 01:14:03.526 2024-02-20 01:14:03.526 1000 STREAM 141924 658 6006314 2024-02-20 01:15:03.533 2024-02-20 01:15:03.533 1000 STREAM 141924 14552 6004600 2024-02-19 21:18:22.523 2024-02-19 21:18:22.523 2100 FEE 431600 18321 6004601 2024-02-19 21:18:22.523 2024-02-19 21:18:22.523 18900 TIP 431600 1802 6004614 2024-02-19 21:21:03.126 2024-02-19 21:21:03.126 1000 STREAM 141924 17106 6004621 2024-02-19 21:22:57.926 2024-02-19 21:22:57.926 1000 FEE 431800 21249 6004622 2024-02-19 21:22:57.926 2024-02-19 21:22:57.926 9000 TIP 431800 10638 6004644 2024-02-19 21:24:33.062 2024-02-19 21:24:33.062 1000 FEE 431880 20854 6004647 2024-02-19 21:25:03.158 2024-02-19 21:25:03.158 1000 STREAM 141924 1773 6004656 2024-02-19 21:25:35.423 2024-02-19 21:25:35.423 2700 FEE 430960 910 6004657 2024-02-19 21:25:35.423 2024-02-19 21:25:35.423 24300 TIP 430960 683 6004668 2024-02-19 21:28:09.113 2024-02-19 21:28:09.113 100000 DONT_LIKE_THIS 431881 20881 6004671 2024-02-19 21:28:37.81 2024-02-19 21:28:37.81 1000 FEE 431877 4768 6004672 2024-02-19 21:28:37.81 2024-02-19 21:28:37.81 9000 TIP 431877 21563 6004675 2024-02-19 21:28:38.971 2024-02-19 21:28:38.971 2000 FEE 431877 20045 6004676 2024-02-19 21:28:38.971 2024-02-19 21:28:38.971 18000 TIP 431877 20687 6004685 2024-02-19 21:29:34.596 2024-02-19 21:29:34.596 300 FEE 431883 1803 6004686 2024-02-19 21:29:34.596 2024-02-19 21:29:34.596 2700 TIP 431883 4074 6004703 2024-02-19 21:31:03.17 2024-02-19 21:31:03.17 1000 STREAM 141924 2952 6004707 2024-02-19 21:31:28.778 2024-02-19 21:31:28.778 1000 FEE 431896 20152 6004734 2024-02-19 21:32:13.218 2024-02-19 21:32:13.218 9000 FEE 431896 4574 6004735 2024-02-19 21:32:13.218 2024-02-19 21:32:13.218 81000 TIP 431896 20062 6004745 2024-02-19 21:32:19.318 2024-02-19 21:32:19.318 9000 FEE 431864 1632 6004746 2024-02-19 21:32:19.318 2024-02-19 21:32:19.318 81000 TIP 431864 642 6004749 2024-02-19 21:32:20.867 2024-02-19 21:32:20.867 9000 FEE 431854 11275 6004750 2024-02-19 21:32:20.867 2024-02-19 21:32:20.867 81000 TIP 431854 669 6004763 2024-02-19 21:32:27.768 2024-02-19 21:32:27.768 900 FEE 431894 20924 6004764 2024-02-19 21:32:27.768 2024-02-19 21:32:27.768 8100 TIP 431894 19996 6004765 2024-02-19 21:32:31.439 2024-02-19 21:32:31.439 9000 FEE 431894 14909 6004766 2024-02-19 21:32:31.439 2024-02-19 21:32:31.439 81000 TIP 431894 20502 6004785 2024-02-19 21:35:13.073 2024-02-19 21:35:13.073 900 FEE 431888 21269 6004786 2024-02-19 21:35:13.073 2024-02-19 21:35:13.073 8100 TIP 431888 15549 6004803 2024-02-19 21:35:43.884 2024-02-19 21:35:43.884 2700 FEE 431862 19121 6004804 2024-02-19 21:35:43.884 2024-02-19 21:35:43.884 24300 TIP 431862 17411 6004812 2024-02-19 21:35:55.978 2024-02-19 21:35:55.978 2300 FEE 431896 11590 6004813 2024-02-19 21:35:55.978 2024-02-19 21:35:55.978 20700 TIP 431896 12097 6004833 2024-02-19 21:36:45.635 2024-02-19 21:36:45.635 2100 FEE 370086 15148 6004834 2024-02-19 21:36:45.635 2024-02-19 21:36:45.635 18900 TIP 370086 9171 6004853 2024-02-19 21:38:28.476 2024-02-19 21:38:28.476 1000 FEE 431905 21172 6004855 2024-02-19 21:39:03.227 2024-02-19 21:39:03.227 1000 STREAM 141924 2013 6004882 2024-02-19 21:41:29.194 2024-02-19 21:41:29.194 4000 FEE 431908 21527 6004883 2024-02-19 21:41:29.194 2024-02-19 21:41:29.194 36000 TIP 431908 19615 6004889 2024-02-19 21:42:15.363 2024-02-19 21:42:15.363 2700 FEE 431904 11275 6004890 2024-02-19 21:42:15.363 2024-02-19 21:42:15.363 24300 TIP 431904 6717 6004896 2024-02-19 21:43:03.251 2024-02-19 21:43:03.251 1000 STREAM 141924 5527 6004906 2024-02-19 21:43:27.845 2024-02-19 21:43:27.845 2300 FEE 431909 20546 6004907 2024-02-19 21:43:27.845 2024-02-19 21:43:27.845 20700 TIP 431909 12220 6004918 2024-02-19 21:44:19.296 2024-02-19 21:44:19.296 800 FEE 430700 663 6004919 2024-02-19 21:44:19.296 2024-02-19 21:44:19.296 7200 TIP 430700 1729 6004924 2024-02-19 21:45:03.256 2024-02-19 21:45:03.256 1000 STREAM 141924 19569 6004927 2024-02-19 21:45:21.389 2024-02-19 21:45:21.389 0 FEE 361611 16097 6004940 2024-02-19 21:47:38.329 2024-02-19 21:47:38.329 2600 FEE 431910 9329 6004941 2024-02-19 21:47:38.329 2024-02-19 21:47:38.329 23400 TIP 431910 20980 6004946 2024-02-19 21:47:41.087 2024-02-19 21:47:41.087 2600 FEE 431873 10096 6004947 2024-02-19 21:47:41.087 2024-02-19 21:47:41.087 23400 TIP 431873 21521 6004948 2024-02-19 21:47:53.84 2024-02-19 21:47:53.84 800 FEE 430779 19346 6004949 2024-02-19 21:47:53.84 2024-02-19 21:47:53.84 7200 TIP 430779 1286 6004978 2024-02-19 21:49:21.007 2024-02-19 21:49:21.007 1000 FEE 431862 19417 6004979 2024-02-19 21:49:21.007 2024-02-19 21:49:21.007 9000 TIP 431862 19189 6005036 2024-02-19 21:56:58.412 2024-02-19 21:56:58.412 700 FEE 431571 16276 6005037 2024-02-19 21:56:58.412 2024-02-19 21:56:58.412 6300 TIP 431571 18309 6005048 2024-02-19 21:57:39.269 2024-02-19 21:57:39.269 1000 FEE 431925 21091 6005050 2024-02-19 21:58:03.342 2024-02-19 21:58:03.342 1000 STREAM 141924 15662 6005059 2024-02-19 22:00:03.556 2024-02-19 22:00:03.556 1000 STREAM 141924 8945 6005088 2024-02-19 22:02:03.47 2024-02-19 22:02:03.47 1000 STREAM 141924 18663 6005096 2024-02-19 22:02:56.119 2024-02-19 22:02:56.119 2100 FEE 431921 1261 6005097 2024-02-19 22:02:56.119 2024-02-19 22:02:56.119 18900 TIP 431921 19289 6005112 2024-02-19 22:04:03.355 2024-02-19 22:04:03.355 1000 STREAM 141924 21485 6005113 2024-02-19 22:04:16.903 2024-02-19 22:04:16.903 1000 FEE 431934 5036 6005125 2024-02-19 22:06:03.394 2024-02-19 22:06:03.394 1000 STREAM 141924 2293 6005134 2024-02-19 22:10:03.421 2024-02-19 22:10:03.421 1000 STREAM 141924 18174 6005135 2024-02-19 22:10:44.499 2024-02-19 22:10:44.499 3000 FEE 431853 16230 6005136 2024-02-19 22:10:44.499 2024-02-19 22:10:44.499 27000 TIP 431853 19193 6005137 2024-02-19 22:10:47.237 2024-02-19 22:10:47.237 1000 FEE 431941 1002 6005146 2024-02-19 22:12:03.481 2024-02-19 22:12:03.481 1000 STREAM 141924 18626 6005147 2024-02-19 22:12:06.457 2024-02-19 22:12:06.457 1000 FEE 431945 18101 6005152 2024-02-19 22:14:03.404 2024-02-19 22:14:03.404 1000 STREAM 141924 3439 6005158 2024-02-19 22:15:03.43 2024-02-19 22:15:03.43 1000 STREAM 141924 21320 6005160 2024-02-19 22:15:59.599 2024-02-19 22:15:59.599 2100 FEE 431877 9290 6005161 2024-02-19 22:15:59.599 2024-02-19 22:15:59.599 18900 TIP 431877 19494 6005191 2024-02-19 22:19:29.754 2024-02-19 22:19:29.754 1000 FEE 431872 5308 6005192 2024-02-19 22:19:29.754 2024-02-19 22:19:29.754 9000 TIP 431872 20015 6005244 2024-02-19 22:23:03.432 2024-02-19 22:23:03.432 1000 STREAM 141924 9482 6005252 2024-02-19 22:27:03.466 2024-02-19 22:27:03.466 1000 STREAM 141924 1310 6005254 2024-02-19 22:28:03.463 2024-02-19 22:28:03.463 1000 STREAM 141924 1195 6005255 2024-02-19 22:28:57.731 2024-02-19 22:28:57.731 500 FEE 431858 20157 6005256 2024-02-19 22:28:57.731 2024-02-19 22:28:57.731 4500 TIP 431858 19533 6005257 2024-02-19 22:29:03.477 2024-02-19 22:29:03.477 1000 STREAM 141924 19640 6005260 2024-02-19 22:31:03.479 2024-02-19 22:31:03.479 1000 STREAM 141924 21480 6005267 2024-02-19 22:33:03.477 2024-02-19 22:33:03.477 1000 STREAM 141924 20062 6005268 2024-02-19 22:34:03.525 2024-02-19 22:34:03.525 1000 STREAM 141924 18896 6005285 2024-02-19 22:36:03.551 2024-02-19 22:36:03.551 1000 STREAM 141924 2013 6005294 2024-02-19 22:36:28.909 2024-02-19 22:36:28.909 2100 FEE 430569 7847 6005295 2024-02-19 22:36:28.909 2024-02-19 22:36:28.909 18900 TIP 430569 17171 6005296 2024-02-19 22:36:48.947 2024-02-19 22:36:48.947 2100 FEE 430811 16562 6005297 2024-02-19 22:36:48.947 2024-02-19 22:36:48.947 18900 TIP 430811 18995 6005298 2024-02-19 22:37:03.534 2024-02-19 22:37:03.534 1000 STREAM 141924 3990 6005303 2024-02-19 22:38:03.534 2024-02-19 22:38:03.534 1000 STREAM 141924 19557 6005304 2024-02-19 22:38:10.697 2024-02-19 22:38:10.697 2100 FEE 431242 16660 6005305 2024-02-19 22:38:10.697 2024-02-19 22:38:10.697 18900 TIP 431242 19735 6005311 2024-02-19 22:39:03.548 2024-02-19 22:39:03.548 1000 STREAM 141924 687 6005328 2024-02-19 22:41:03.557 2024-02-19 22:41:03.557 1000 STREAM 141924 20802 6005333 2024-02-19 22:43:03.578 2024-02-19 22:43:03.578 1000 STREAM 141924 16194 6005336 2024-02-19 22:43:26.875 2024-02-19 22:43:26.875 2100 FEE 430845 14015 6005337 2024-02-19 22:43:26.875 2024-02-19 22:43:26.875 18900 TIP 430845 16259 6005348 2024-02-19 22:44:03.568 2024-02-19 22:44:03.568 1000 STREAM 141924 19531 6005361 2024-02-19 22:45:03.575 2024-02-19 22:45:03.575 1000 STREAM 141924 4831 6005369 2024-02-19 22:46:20.959 2024-02-19 22:46:20.959 1000 FEE 431972 14267 6005377 2024-02-19 22:47:03.572 2024-02-19 22:47:03.572 1000 STREAM 141924 946 6004755 2024-02-19 21:32:21.443 2024-02-19 21:32:21.443 2700 FEE 430811 20179 6004756 2024-02-19 21:32:21.443 2024-02-19 21:32:21.443 24300 TIP 430811 16858 6004757 2024-02-19 21:32:21.577 2024-02-19 21:32:21.577 2100 FEE 429016 7510 6004758 2024-02-19 21:32:21.577 2024-02-19 21:32:21.577 18900 TIP 429016 13854 6004782 2024-02-19 21:35:08.053 2024-02-19 21:35:08.053 1000 FEE 431901 19759 6004783 2024-02-19 21:35:12.914 2024-02-19 21:35:12.914 100 FEE 431888 21287 6004784 2024-02-19 21:35:12.914 2024-02-19 21:35:12.914 900 TIP 431888 21532 6004789 2024-02-19 21:35:23.811 2024-02-19 21:35:23.811 16600 FEE 431896 19320 6004790 2024-02-19 21:35:23.811 2024-02-19 21:35:23.811 149400 TIP 431896 20110 6004795 2024-02-19 21:35:31.549 2024-02-19 21:35:31.549 8300 FEE 431893 7891 6004796 2024-02-19 21:35:31.549 2024-02-19 21:35:31.549 74700 TIP 431893 18659 6004825 2024-02-19 21:36:15.7 2024-02-19 21:36:15.7 2100 FEE 429159 21491 6004826 2024-02-19 21:36:15.7 2024-02-19 21:36:15.7 18900 TIP 429159 5500 6004831 2024-02-19 21:36:45.55 2024-02-19 21:36:45.55 500 FEE 430920 6202 6004832 2024-02-19 21:36:45.55 2024-02-19 21:36:45.55 4500 TIP 430920 19469 6004836 2024-02-19 21:37:11.246 2024-02-19 21:37:11.246 1000 FEE 431903 14308 6004854 2024-02-19 21:38:47.808 2024-02-19 21:38:47.808 1000 FEE 431906 12265 6004867 2024-02-19 21:40:15.623 2024-02-19 21:40:15.623 1000 FEE 431907 19759 6004893 2024-02-19 21:42:16.102 2024-02-19 21:42:16.102 2700 FEE 431904 18051 6004894 2024-02-19 21:42:16.102 2024-02-19 21:42:16.102 24300 TIP 431904 8173 6004898 2024-02-19 21:43:26.721 2024-02-19 21:43:26.721 2300 FEE 431909 7675 6004899 2024-02-19 21:43:26.721 2024-02-19 21:43:26.721 20700 TIP 431909 646 6004900 2024-02-19 21:43:26.872 2024-02-19 21:43:26.872 2300 FEE 431909 19576 6004901 2024-02-19 21:43:26.872 2024-02-19 21:43:26.872 20700 TIP 431909 21228 6004942 2024-02-19 21:47:39.564 2024-02-19 21:47:39.564 2600 FEE 431887 848 6004943 2024-02-19 21:47:39.564 2024-02-19 21:47:39.564 23400 TIP 431887 14152 6004994 2024-02-19 21:50:13.921 2024-02-19 21:50:13.921 10000 DONT_LIKE_THIS 431881 4624 6004999 2024-02-19 21:51:53.408 2024-02-19 21:51:53.408 1000 FEE 431913 21600 6005000 2024-02-19 21:51:53.408 2024-02-19 21:51:53.408 9000 TIP 431913 17103 6005018 2024-02-19 21:54:31.596 2024-02-19 21:54:31.596 2100 FEE 431916 9290 6005019 2024-02-19 21:54:31.596 2024-02-19 21:54:31.596 18900 TIP 431916 2437 6005030 2024-02-19 21:56:10.089 2024-02-19 21:56:10.089 100 FEE 431386 16653 6005031 2024-02-19 21:56:10.089 2024-02-19 21:56:10.089 900 TIP 431386 15941 6005043 2024-02-19 21:57:15.557 2024-02-19 21:57:15.557 2100 FEE 431903 7773 6005044 2024-02-19 21:57:15.557 2024-02-19 21:57:15.557 18900 TIP 431903 17050 6005061 2024-02-19 22:00:06.271 2024-02-19 22:00:06.271 100000 FEE 431929 19016 6005175 2024-02-19 22:18:28.526 2024-02-19 22:18:28.526 10000 FEE 431816 21466 6005176 2024-02-19 22:18:28.526 2024-02-19 22:18:28.526 90000 TIP 431816 1605 6005188 2024-02-19 22:19:12.634 2024-02-19 22:19:12.634 1000 FEE 431920 21090 6005189 2024-02-19 22:19:12.634 2024-02-19 22:19:12.634 9000 TIP 431920 16948 6005213 2024-02-19 22:19:34.2 2024-02-19 22:19:34.2 100 FEE 431938 2016 6005214 2024-02-19 22:19:34.2 2024-02-19 22:19:34.2 900 TIP 431938 19375 6005237 2024-02-19 22:22:10.629 2024-02-19 22:22:10.629 700 FEE 431869 9921 6005238 2024-02-19 22:22:10.629 2024-02-19 22:22:10.629 6300 TIP 431869 20412 6005239 2024-02-19 22:22:10.877 2024-02-19 22:22:10.877 700 FEE 431869 8400 6005240 2024-02-19 22:22:10.877 2024-02-19 22:22:10.877 6300 TIP 431869 21588 6005243 2024-02-19 22:22:54.181 2024-02-19 22:22:54.181 10000 FEE 431955 21577 6005245 2024-02-19 22:23:33.148 2024-02-19 22:23:33.148 1000 FEE 431956 659 6005248 2024-02-19 22:24:12.082 2024-02-19 22:24:12.082 4000 FEE 431955 4177 6005249 2024-02-19 22:24:12.082 2024-02-19 22:24:12.082 36000 TIP 431955 18743 6005279 2024-02-19 22:35:22.778 2024-02-19 22:35:22.778 1000 FEE 431963 19660 6005292 2024-02-19 22:36:26.685 2024-02-19 22:36:26.685 2100 FEE 430771 3979 6005293 2024-02-19 22:36:26.685 2024-02-19 22:36:26.685 18900 TIP 430771 11515 6005301 2024-02-19 22:37:47.258 2024-02-19 22:37:47.258 2100 FEE 431813 20243 6005302 2024-02-19 22:37:47.258 2024-02-19 22:37:47.258 18900 TIP 431813 20340 6005312 2024-02-19 22:39:19.18 2024-02-19 22:39:19.18 100000 FEE 431966 18704 6005321 2024-02-19 22:40:19.483 2024-02-19 22:40:19.483 1000 FEE 431968 21600 6005324 2024-02-19 22:40:33.24 2024-02-19 22:40:33.24 2100 FEE 431965 4035 6005325 2024-02-19 22:40:33.24 2024-02-19 22:40:33.24 18900 TIP 431965 705 6005376 2024-02-19 22:46:58.47 2024-02-19 22:46:58.47 0 FEE 431972 17682 6005384 2024-02-19 22:48:23.987 2024-02-19 22:48:23.987 100 FEE 431962 1697 6005385 2024-02-19 22:48:23.987 2024-02-19 22:48:23.987 900 TIP 431962 10554 6005388 2024-02-19 22:48:24.913 2024-02-19 22:48:24.913 9000 FEE 431962 4043 6005389 2024-02-19 22:48:24.913 2024-02-19 22:48:24.913 81000 TIP 431962 9334 6005398 2024-02-19 22:48:39.986 2024-02-19 22:48:39.986 2100 FEE 431844 17552 6005399 2024-02-19 22:48:39.986 2024-02-19 22:48:39.986 18900 TIP 431844 20470 6005422 2024-02-19 22:48:48.962 2024-02-19 22:48:48.962 2100 FEE 430549 16042 6005423 2024-02-19 22:48:48.962 2024-02-19 22:48:48.962 18900 TIP 430549 21070 6005436 2024-02-19 22:49:19.116 2024-02-19 22:49:19.116 700 FEE 431925 12356 6005437 2024-02-19 22:49:19.116 2024-02-19 22:49:19.116 6300 TIP 431925 15549 6005440 2024-02-19 22:49:28.009 2024-02-19 22:49:28.009 900 FEE 431918 13365 6005441 2024-02-19 22:49:28.009 2024-02-19 22:49:28.009 8100 TIP 431918 7809 6005452 2024-02-19 22:50:19.063 2024-02-19 22:50:19.063 1000 FEE 430662 1012 6005453 2024-02-19 22:50:19.063 2024-02-19 22:50:19.063 9000 TIP 430662 20816 6005454 2024-02-19 22:50:55.173 2024-02-19 22:50:55.173 2500 FEE 431949 15147 6005455 2024-02-19 22:50:55.173 2024-02-19 22:50:55.173 22500 TIP 431949 2326 6005470 2024-02-19 22:55:28.115 2024-02-19 22:55:28.115 100 FEE 431974 7916 6005471 2024-02-19 22:55:28.115 2024-02-19 22:55:28.115 900 TIP 431974 4391 6005475 2024-02-19 22:55:54.433 2024-02-19 22:55:54.433 1000 FEE 430704 13055 6005476 2024-02-19 22:55:54.433 2024-02-19 22:55:54.433 9000 TIP 430704 7766 6005477 2024-02-19 22:56:00.833 2024-02-19 22:56:00.833 2500 FEE 430514 660 6005478 2024-02-19 22:56:00.833 2024-02-19 22:56:00.833 22500 TIP 430514 5527 6005509 2024-02-19 23:01:55.561 2024-02-19 23:01:55.561 10000 FEE 431985 21509 6005511 2024-02-19 23:02:11.376 2024-02-19 23:02:11.376 1000 FEE 431986 8998 6005531 2024-02-19 23:06:46.845 2024-02-19 23:06:46.845 6900 FEE 174240 6430 6005532 2024-02-19 23:06:46.845 2024-02-19 23:06:46.845 62100 TIP 174240 14202 6005548 2024-02-19 23:08:43.771 2024-02-19 23:08:43.771 2300 FEE 431975 15719 6005549 2024-02-19 23:08:43.771 2024-02-19 23:08:43.771 20700 TIP 431975 7587 6005579 2024-02-19 23:20:32.517 2024-02-19 23:20:32.517 1000 FEE 431998 14489 6005594 2024-02-19 23:26:50.381 2024-02-19 23:26:50.381 1000 FEE 431804 1718 6005595 2024-02-19 23:26:50.381 2024-02-19 23:26:50.381 9000 TIP 431804 20045 6005603 2024-02-19 23:27:24.626 2024-02-19 23:27:24.626 900 FEE 431966 19417 6005604 2024-02-19 23:27:24.626 2024-02-19 23:27:24.626 8100 TIP 431966 2640 6005613 2024-02-19 23:28:47.867 2024-02-19 23:28:47.867 1100 FEE 430892 5449 6005614 2024-02-19 23:28:47.867 2024-02-19 23:28:47.867 9900 TIP 430892 21003 6005639 2024-02-19 23:30:46.877 2024-02-19 23:30:46.877 1000 FEE 432004 20554 6005640 2024-02-19 23:30:46.877 2024-02-19 23:30:46.877 9000 TIP 432004 17455 6005655 2024-02-19 23:34:48.474 2024-02-19 23:34:48.474 1000 FEE 431871 20084 6005656 2024-02-19 23:34:48.474 2024-02-19 23:34:48.474 9000 TIP 431871 10944 6005661 2024-02-19 23:35:18.778 2024-02-19 23:35:18.778 1100 FEE 431839 7877 6005662 2024-02-19 23:35:18.778 2024-02-19 23:35:18.778 9900 TIP 431839 16598 6005698 2024-02-19 23:41:37.49 2024-02-19 23:41:37.49 1000 FEE 432018 2213 6005716 2024-02-19 23:44:37.394 2024-02-19 23:44:37.394 1000 FEE 432023 1729 6005722 2024-02-19 23:45:01.78 2024-02-19 23:45:01.78 2100 FEE 431990 18663 6005723 2024-02-19 23:45:01.78 2024-02-19 23:45:01.78 18900 TIP 431990 636 6005731 2024-02-19 23:46:03.899 2024-02-19 23:46:03.899 1000 FEE 432013 13574 6005732 2024-02-19 23:46:03.899 2024-02-19 23:46:03.899 9000 TIP 432013 5129 6005078 2024-02-19 22:01:01.417 2024-02-19 22:01:01.417 9000 TIP 431401 14906 6005079 2024-02-19 22:01:03.925 2024-02-19 22:01:03.925 1000 STREAM 141924 12245 6005081 2024-02-19 22:01:33.197 2024-02-19 22:01:33.197 2100 FEE 431079 15463 6005082 2024-02-19 22:01:33.197 2024-02-19 22:01:33.197 18900 TIP 431079 21247 6005098 2024-02-19 22:03:03.914 2024-02-19 22:03:03.914 1000 STREAM 141924 19905 6005109 2024-02-19 22:03:44.403 2024-02-19 22:03:44.403 0 FEE 431931 652 6005116 2024-02-19 22:04:48.037 2024-02-19 22:04:48.037 1000 FEE 431935 7668 6005121 2024-02-19 22:05:17.864 2024-02-19 22:05:17.864 1000 FEE 431937 10693 6005129 2024-02-19 22:07:40.258 2024-02-19 22:07:40.258 2100 FEE 431753 20614 6005130 2024-02-19 22:07:40.258 2024-02-19 22:07:40.258 18900 TIP 431753 16456 6005149 2024-02-19 22:13:05.922 2024-02-19 22:13:05.922 400 FEE 431917 14255 6005150 2024-02-19 22:13:05.922 2024-02-19 22:13:05.922 3600 TIP 431917 18539 6005170 2024-02-19 22:17:20.991 2024-02-19 22:17:20.991 1000 FEE 431951 20990 6005211 2024-02-19 22:19:34.037 2024-02-19 22:19:34.037 100 FEE 431938 1823 6005212 2024-02-19 22:19:34.037 2024-02-19 22:19:34.037 900 TIP 431938 7425 6005235 2024-02-19 22:21:33.637 2024-02-19 22:21:33.637 1000 FEE 431954 7899 6005280 2024-02-19 22:35:39.354 2024-02-19 22:35:39.354 1000 FEE 431816 1800 6005281 2024-02-19 22:35:39.354 2024-02-19 22:35:39.354 9000 TIP 431816 20409 6005290 2024-02-19 22:36:25.257 2024-02-19 22:36:25.257 2100 FEE 431862 14990 6005291 2024-02-19 22:36:25.257 2024-02-19 22:36:25.257 18900 TIP 431862 9378 6005329 2024-02-19 22:41:04.558 2024-02-19 22:41:04.558 2100 FEE 431918 21070 6005330 2024-02-19 22:41:04.558 2024-02-19 22:41:04.558 18900 TIP 431918 20837 6005338 2024-02-19 22:43:27.712 2024-02-19 22:43:27.712 1000 FEE 431926 10393 6005339 2024-02-19 22:43:27.712 2024-02-19 22:43:27.712 9000 TIP 431926 3683 6005349 2024-02-19 22:44:11.661 2024-02-19 22:44:11.661 2100 FEE 431966 2681 6005350 2024-02-19 22:44:11.661 2024-02-19 22:44:11.661 18900 TIP 431966 6041 6005383 2024-02-19 22:48:22.844 2024-02-19 22:48:22.844 1000 FEE 431973 19929 6005400 2024-02-19 22:48:41.004 2024-02-19 22:48:41.004 2100 FEE 430892 19952 6005401 2024-02-19 22:48:41.004 2024-02-19 22:48:41.004 18900 TIP 430892 15273 6005408 2024-02-19 22:48:45.261 2024-02-19 22:48:45.261 2100 FEE 430771 20218 6005409 2024-02-19 22:48:45.261 2024-02-19 22:48:45.261 18900 TIP 430771 795 6005410 2024-02-19 22:48:45.407 2024-02-19 22:48:45.407 2100 FEE 430771 3745 6005411 2024-02-19 22:48:45.407 2024-02-19 22:48:45.407 18900 TIP 430771 5978 6005416 2024-02-19 22:48:47.108 2024-02-19 22:48:47.108 2100 FEE 431862 10608 6005417 2024-02-19 22:48:47.108 2024-02-19 22:48:47.108 18900 TIP 431862 20450 6005432 2024-02-19 22:48:52.357 2024-02-19 22:48:52.357 2100 FEE 431831 21556 6005433 2024-02-19 22:48:52.357 2024-02-19 22:48:52.357 18900 TIP 431831 18068 6005451 2024-02-19 22:50:04.032 2024-02-19 22:50:04.032 1000 FEE 431975 19488 6005462 2024-02-19 22:52:59.988 2024-02-19 22:52:59.988 2500 FEE 431241 21060 6005463 2024-02-19 22:52:59.988 2024-02-19 22:52:59.988 22500 TIP 431241 20099 6005492 2024-02-19 22:58:52.62 2024-02-19 22:58:52.62 2100 FEE 430330 19795 6005493 2024-02-19 22:58:52.62 2024-02-19 22:58:52.62 18900 TIP 430330 19259 6005496 2024-02-19 23:00:04.505 2024-02-19 23:00:04.505 100000 FEE 431983 902 6005498 2024-02-19 23:00:30.831 2024-02-19 23:00:30.831 700 FEE 430134 9552 6005499 2024-02-19 23:00:30.831 2024-02-19 23:00:30.831 6300 TIP 430134 17523 6005519 2024-02-19 23:03:48.61 2024-02-19 23:03:48.61 1000 FEE 431830 8287 6005520 2024-02-19 23:03:48.61 2024-02-19 23:03:48.61 9000 TIP 431830 1471 6005522 2024-02-19 23:04:04.158 2024-02-19 23:04:04.158 1000 FEE 431888 20258 6005523 2024-02-19 23:04:04.158 2024-02-19 23:04:04.158 9000 TIP 431888 21159 6005542 2024-02-19 23:08:37.474 2024-02-19 23:08:37.474 2300 FEE 431978 1162 6005543 2024-02-19 23:08:37.474 2024-02-19 23:08:37.474 20700 TIP 431978 886 6005544 2024-02-19 23:08:37.61 2024-02-19 23:08:37.61 2300 FEE 431978 19322 6005545 2024-02-19 23:08:37.61 2024-02-19 23:08:37.61 20700 TIP 431978 1647 6005553 2024-02-19 23:09:07.564 2024-02-19 23:09:07.564 1000 FEE 431991 20891 6005568 2024-02-19 23:17:07.564 2024-02-19 23:17:07.564 6900 FEE 404046 16876 6005569 2024-02-19 23:17:07.564 2024-02-19 23:17:07.564 62100 TIP 404046 15474 6005590 2024-02-19 23:26:22.42 2024-02-19 23:26:22.42 2100 FEE 431393 15690 6005591 2024-02-19 23:26:22.42 2024-02-19 23:26:22.42 18900 TIP 431393 20222 6005630 2024-02-19 23:30:01.673 2024-02-19 23:30:01.673 100 FEE 430892 717 6005631 2024-02-19 23:30:01.673 2024-02-19 23:30:01.673 900 TIP 430892 859 6005648 2024-02-19 23:33:42.014 2024-02-19 23:33:42.014 1000 FEE 432009 9427 6005704 2024-02-19 23:43:00.392 2024-02-19 23:43:00.392 1000 FEE 432021 18008 6005742 2024-02-19 23:46:38.242 2024-02-19 23:46:38.242 1000 FEE 431985 16270 6005743 2024-02-19 23:46:38.242 2024-02-19 23:46:38.242 9000 TIP 431985 19770 6005748 2024-02-19 23:48:37.814 2024-02-19 23:48:37.814 1000 FEE 432029 16124 6005762 2024-02-19 23:50:53.535 2024-02-19 23:50:53.535 100 FEE 431844 19839 6005763 2024-02-19 23:50:53.535 2024-02-19 23:50:53.535 900 TIP 431844 9496 6005769 2024-02-19 23:51:37.285 2024-02-19 23:51:37.285 1000 FEE 432032 5590 6005790 2024-02-19 23:52:40.829 2024-02-19 23:52:40.829 800 FEE 431844 20906 6005791 2024-02-19 23:52:40.829 2024-02-19 23:52:40.829 7200 TIP 431844 5160 6005792 2024-02-19 23:52:42.333 2024-02-19 23:52:42.333 1000 FEE 432034 18188 6005801 2024-02-19 23:53:34.858 2024-02-19 23:53:34.858 1000 FEE 432021 12139 6005802 2024-02-19 23:53:34.858 2024-02-19 23:53:34.858 9000 TIP 432021 9330 6005803 2024-02-19 23:53:43.217 2024-02-19 23:53:43.217 1000 FEE 431975 21242 6005804 2024-02-19 23:53:43.217 2024-02-19 23:53:43.217 9000 TIP 431975 11648 6005813 2024-02-19 23:54:35.732 2024-02-19 23:54:35.732 1000 FEE 432012 699 6005814 2024-02-19 23:54:35.732 2024-02-19 23:54:35.732 9000 TIP 432012 17592 6005819 2024-02-19 23:54:52.374 2024-02-19 23:54:52.374 1000 FEE 432037 999 6005831 2024-02-19 23:56:23.344 2024-02-19 23:56:23.344 1000 FEE 431909 3417 6005832 2024-02-19 23:56:23.344 2024-02-19 23:56:23.344 9000 TIP 431909 9261 6005833 2024-02-19 23:56:25.929 2024-02-19 23:56:25.929 1000 FEE 431862 19566 6005834 2024-02-19 23:56:25.929 2024-02-19 23:56:25.929 9000 TIP 431862 19785 6005849 2024-02-19 23:59:33.929 2024-02-19 23:59:33.929 2300 FEE 432032 5646 6005850 2024-02-19 23:59:33.929 2024-02-19 23:59:33.929 20700 TIP 432032 21614 6005865 2024-02-19 23:59:43.43 2024-02-19 23:59:43.43 2300 FEE 431896 18829 6005866 2024-02-19 23:59:43.43 2024-02-19 23:59:43.43 20700 TIP 431896 18448 6005873 2024-02-19 23:59:44.235 2024-02-19 23:59:44.235 4600 FEE 431896 19815 6005874 2024-02-19 23:59:44.235 2024-02-19 23:59:44.235 41400 TIP 431896 2952 6005936 2024-02-20 00:00:10.738 2024-02-20 00:00:10.738 400 FEE 432040 9552 6005937 2024-02-20 00:00:10.738 2024-02-20 00:00:10.738 3600 TIP 432040 17001 6005938 2024-02-20 00:00:11.702 2024-02-20 00:00:11.702 2300 FEE 431998 652 6005939 2024-02-20 00:00:11.702 2024-02-20 00:00:11.702 20700 TIP 431998 15560 6005950 2024-02-20 00:00:14.092 2024-02-20 00:00:14.092 2300 FEE 432022 21599 6005951 2024-02-20 00:00:14.092 2024-02-20 00:00:14.092 20700 TIP 432022 780 6005956 2024-02-20 00:00:15.095 2024-02-20 00:00:15.095 2300 FEE 432022 19292 6005957 2024-02-20 00:00:15.095 2024-02-20 00:00:15.095 20700 TIP 432022 18280 6006032 2024-02-20 00:01:16.945 2024-02-20 00:01:16.945 2300 FEE 431998 19484 6006033 2024-02-20 00:01:16.945 2024-02-20 00:01:16.945 20700 TIP 431998 5487 6006040 2024-02-20 00:01:18.376 2024-02-20 00:01:18.376 2300 FEE 431998 12930 6006041 2024-02-20 00:01:18.376 2024-02-20 00:01:18.376 20700 TIP 431998 13517 6006062 2024-02-20 00:05:48.895 2024-02-20 00:05:48.895 5000 FEE 431844 3400 6006063 2024-02-20 00:05:48.895 2024-02-20 00:05:48.895 45000 TIP 431844 6717 6006080 2024-02-20 00:07:27.973 2024-02-20 00:07:27.973 5000 FEE 431979 15367 6006081 2024-02-20 00:07:27.973 2024-02-20 00:07:27.973 45000 TIP 431979 989 6006084 2024-02-20 00:09:19.48 2024-02-20 00:09:19.48 2000 FEE 431345 5746 6006085 2024-02-20 00:09:19.48 2024-02-20 00:09:19.48 18000 TIP 431345 1141 6006116 2024-02-20 00:13:34.693 2024-02-20 00:13:34.693 5000 FEE 431855 9167 6005106 2024-02-19 22:03:38.707 2024-02-19 22:03:38.707 10000 FEE 431856 20225 6005107 2024-02-19 22:03:38.707 2024-02-19 22:03:38.707 90000 TIP 431856 21603 6005114 2024-02-19 22:04:30.651 2024-02-19 22:04:30.651 2100 FEE 430842 18392 6005115 2024-02-19 22:04:30.651 2024-02-19 22:04:30.651 18900 TIP 430842 1726 6005117 2024-02-19 22:04:50.896 2024-02-19 22:04:50.896 1000 FEE 431936 9438 6005118 2024-02-19 22:05:02.86 2024-02-19 22:05:02.86 2100 FEE 431856 21072 6005119 2024-02-19 22:05:02.86 2024-02-19 22:05:02.86 18900 TIP 431856 12721 6005120 2024-02-19 22:05:03.937 2024-02-19 22:05:03.937 1000 STREAM 141924 18313 6005127 2024-02-19 22:07:30.588 2024-02-19 22:07:30.588 2100 FEE 431723 18220 6005128 2024-02-19 22:07:30.588 2024-02-19 22:07:30.588 18900 TIP 431723 7891 6005133 2024-02-19 22:09:03.963 2024-02-19 22:09:03.963 1000 STREAM 141924 21040 6005145 2024-02-19 22:11:49.878 2024-02-19 22:11:49.878 1000 FEE 431944 1316 6005155 2024-02-19 22:14:42.844 2024-02-19 22:14:42.844 12800 FEE 431914 5776 6005156 2024-02-19 22:14:42.844 2024-02-19 22:14:42.844 115200 TIP 431914 20470 6005166 2024-02-19 22:17:00.194 2024-02-19 22:17:00.194 1000 FEE 431950 2000 6005177 2024-02-19 22:19:03.975 2024-02-19 22:19:03.975 1000 STREAM 141924 18675 6005180 2024-02-19 22:19:09.256 2024-02-19 22:19:09.256 1000 FEE 431929 1959 6005181 2024-02-19 22:19:09.256 2024-02-19 22:19:09.256 9000 TIP 431929 20514 6005217 2024-02-19 22:19:34.82 2024-02-19 22:19:34.82 100 FEE 431938 19193 6005218 2024-02-19 22:19:34.82 2024-02-19 22:19:34.82 900 TIP 431938 3377 6005221 2024-02-19 22:19:35.471 2024-02-19 22:19:35.471 100 FEE 431938 16839 6005222 2024-02-19 22:19:35.471 2024-02-19 22:19:35.471 900 TIP 431938 5701 6005230 2024-02-19 22:20:16.229 2024-02-19 22:20:16.229 2300 FEE 431952 16562 6005231 2024-02-19 22:20:16.229 2024-02-19 22:20:16.229 20700 TIP 431952 780 6005241 2024-02-19 22:22:10.994 2024-02-19 22:22:10.994 700 FEE 431869 18904 6005242 2024-02-19 22:22:10.994 2024-02-19 22:22:10.994 6300 TIP 431869 19943 6005246 2024-02-19 22:23:50.924 2024-02-19 22:23:50.924 1000 FEE 431957 21057 6005283 2024-02-19 22:35:55.199 2024-02-19 22:35:55.199 2100 FEE 431809 640 6005284 2024-02-19 22:35:55.199 2024-02-19 22:35:55.199 18900 TIP 431809 18995 6005299 2024-02-19 22:37:29.962 2024-02-19 22:37:29.962 2100 FEE 431961 828 6005300 2024-02-19 22:37:29.962 2024-02-19 22:37:29.962 18900 TIP 431961 18930 6005314 2024-02-19 22:39:42.925 2024-02-19 22:39:42.925 2100 FEE 431161 2390 6005315 2024-02-19 22:39:42.925 2024-02-19 22:39:42.925 18900 TIP 431161 3709 6005322 2024-02-19 22:40:26.982 2024-02-19 22:40:26.982 2100 FEE 431956 20825 6005323 2024-02-19 22:40:26.982 2024-02-19 22:40:26.982 18900 TIP 431956 20222 6005340 2024-02-19 22:43:27.87 2024-02-19 22:43:27.87 2100 FEE 430843 4250 6005341 2024-02-19 22:43:27.87 2024-02-19 22:43:27.87 18900 TIP 430843 886 6005370 2024-02-19 22:46:23.031 2024-02-19 22:46:23.031 100 FEE 431963 17523 6005371 2024-02-19 22:46:23.031 2024-02-19 22:46:23.031 900 TIP 431963 11038 6005412 2024-02-19 22:48:45.86 2024-02-19 22:48:45.86 2100 FEE 430795 7376 6005413 2024-02-19 22:48:45.86 2024-02-19 22:48:45.86 18900 TIP 430795 10693 6005424 2024-02-19 22:48:49.189 2024-02-19 22:48:49.189 2100 FEE 430984 4313 6005425 2024-02-19 22:48:49.189 2024-02-19 22:48:49.189 18900 TIP 430984 895 6005430 2024-02-19 22:48:52.012 2024-02-19 22:48:52.012 2100 FEE 430496 2774 6005431 2024-02-19 22:48:52.012 2024-02-19 22:48:52.012 18900 TIP 430496 1012 6005442 2024-02-19 22:49:30.264 2024-02-19 22:49:30.264 9000 FEE 431918 1105 6005443 2024-02-19 22:49:30.264 2024-02-19 22:49:30.264 81000 TIP 431918 5701 6005487 2024-02-19 22:57:37.578 2024-02-19 22:57:37.578 1000 FEE 430660 826 6005488 2024-02-19 22:57:37.578 2024-02-19 22:57:37.578 9000 TIP 430660 7395 6005505 2024-02-19 23:01:21.57 2024-02-19 23:01:21.57 1000 FEE 430569 3518 6005506 2024-02-19 23:01:21.57 2024-02-19 23:01:21.57 9000 TIP 430569 21247 6005556 2024-02-19 23:09:41.531 2024-02-19 23:09:41.531 1000 FEE 431992 1354 6005571 2024-02-19 23:18:11.948 2024-02-19 23:18:11.948 5000 FEE 430619 15408 6005572 2024-02-19 23:18:11.948 2024-02-19 23:18:11.948 45000 TIP 430619 18941 6005598 2024-02-19 23:27:03.653 2024-02-19 23:27:03.653 900 FEE 431955 9669 6005599 2024-02-19 23:27:03.653 2024-02-19 23:27:03.653 8100 TIP 431955 694 6005616 2024-02-19 23:29:12.025 2024-02-19 23:29:12.025 1000 FEE 432004 16680 6005617 2024-02-19 23:29:24.915 2024-02-19 23:29:24.915 90000 FEE 430626 2151 6005618 2024-02-19 23:29:24.915 2024-02-19 23:29:24.915 810000 TIP 430626 21291 6005624 2024-02-19 23:29:52.533 2024-02-19 23:29:52.533 100000 DONT_LIKE_THIS 431816 16004 6005627 2024-02-19 23:29:57.164 2024-02-19 23:29:57.164 90000 FEE 431844 14791 6005628 2024-02-19 23:29:57.164 2024-02-19 23:29:57.164 810000 TIP 431844 5752 6005629 2024-02-19 23:29:58.866 2024-02-19 23:29:58.866 1000 FEE 432006 20602 6005642 2024-02-19 23:31:08.651 2024-02-19 23:31:08.651 100000 FEE 432007 2203 6005643 2024-02-19 23:31:37.889 2024-02-19 23:31:37.889 1000 FEE 432008 18220 6005663 2024-02-19 23:35:54.775 2024-02-19 23:35:54.775 500 FEE 431816 18472 6005664 2024-02-19 23:35:54.775 2024-02-19 23:35:54.775 4500 TIP 431816 20180 6005671 2024-02-19 23:36:56.081 2024-02-19 23:36:56.081 12800 FEE 431079 2195 6005672 2024-02-19 23:36:56.081 2024-02-19 23:36:56.081 115200 TIP 431079 1611 6005677 2024-02-19 23:37:43.306 2024-02-19 23:37:43.306 1000 FEE 432014 14376 6005678 2024-02-19 23:37:45.461 2024-02-19 23:37:45.461 12800 FEE 431823 16424 6005679 2024-02-19 23:37:45.461 2024-02-19 23:37:45.461 115200 TIP 431823 8570 6005703 2024-02-19 23:42:06.739 2024-02-19 23:42:06.739 1000 FEE 432020 12261 6005713 2024-02-19 23:43:50.422 2024-02-19 23:43:50.422 1000 FEE 431800 16839 6005714 2024-02-19 23:43:50.422 2024-02-19 23:43:50.422 9000 TIP 431800 2609 6005720 2024-02-19 23:44:59.726 2024-02-19 23:44:59.726 400 FEE 431918 20257 6005721 2024-02-19 23:44:59.726 2024-02-19 23:44:59.726 3600 TIP 431918 16052 6005725 2024-02-19 23:45:05.342 2024-02-19 23:45:05.342 1000 FEE 432001 20616 6005726 2024-02-19 23:45:05.342 2024-02-19 23:45:05.342 9000 TIP 432001 12738 6005739 2024-02-19 23:46:18.589 2024-02-19 23:46:18.589 2100 FEE 431877 13767 6005740 2024-02-19 23:46:18.589 2024-02-19 23:46:18.589 18900 TIP 431877 811 6005753 2024-02-19 23:49:55.23 2024-02-19 23:49:55.23 1000 FEE 432030 1803 6005755 2024-02-19 23:50:43.211 2024-02-19 23:50:43.211 1000 FEE 432031 20602 6005772 2024-02-19 23:51:50.369 2024-02-19 23:51:50.369 2100 FEE 431946 20337 6005773 2024-02-19 23:51:50.369 2024-02-19 23:51:50.369 18900 TIP 431946 20970 6005778 2024-02-19 23:52:07.941 2024-02-19 23:52:07.941 1000 FEE 431894 15200 6005779 2024-02-19 23:52:07.941 2024-02-19 23:52:07.941 9000 TIP 431894 19852 6005809 2024-02-19 23:54:20.183 2024-02-19 23:54:20.183 1000 FEE 432031 7827 6005810 2024-02-19 23:54:20.183 2024-02-19 23:54:20.183 9000 TIP 432031 18896 6005815 2024-02-19 23:54:40.971 2024-02-19 23:54:40.971 1000 FEE 431998 19902 6005816 2024-02-19 23:54:40.971 2024-02-19 23:54:40.971 9000 TIP 431998 16830 6005827 2024-02-19 23:55:51.753 2024-02-19 23:55:51.753 5000000 DONT_LIKE_THIS 430781 12959 6005859 2024-02-19 23:59:38.659 2024-02-19 23:59:38.659 2300 FEE 432031 1733 6005860 2024-02-19 23:59:38.659 2024-02-19 23:59:38.659 20700 TIP 432031 21103 6005875 2024-02-19 23:59:44.616 2024-02-19 23:59:44.616 2300 FEE 431896 18769 6005876 2024-02-19 23:59:44.616 2024-02-19 23:59:44.616 20700 TIP 431896 11395 6005889 2024-02-19 23:59:55.213 2024-02-19 23:59:55.213 2300 FEE 431965 16939 6005890 2024-02-19 23:59:55.213 2024-02-19 23:59:55.213 20700 TIP 431965 3360 6005893 2024-02-19 23:59:55.555 2024-02-19 23:59:55.555 2300 FEE 431965 2056 6005894 2024-02-19 23:59:55.555 2024-02-19 23:59:55.555 20700 TIP 431965 19924 6005920 2024-02-20 00:00:06.848 2024-02-20 00:00:06.848 2300 FEE 432025 672 6005921 2024-02-20 00:00:06.848 2024-02-20 00:00:06.848 20700 TIP 432025 2367 6005922 2024-02-20 00:00:06.994 2024-02-20 00:00:06.994 2300 FEE 432025 18909 6005923 2024-02-20 00:00:06.994 2024-02-20 00:00:06.994 20700 TIP 432025 15544 6005924 2024-02-20 00:00:07.163 2024-02-20 00:00:07.163 2300 FEE 432025 18630 6005925 2024-02-20 00:00:07.163 2024-02-20 00:00:07.163 20700 TIP 432025 683 6005958 2024-02-20 00:00:15.203 2024-02-20 00:00:15.203 2300 FEE 432022 20276 6005164 2024-02-19 22:16:37.434 2024-02-19 22:16:37.434 300 FEE 431947 20613 6005165 2024-02-19 22:16:37.434 2024-02-19 22:16:37.434 2700 TIP 431947 12769 6005168 2024-02-19 22:17:15.275 2024-02-19 22:17:15.275 12800 FEE 431816 20969 6005169 2024-02-19 22:17:15.275 2024-02-19 22:17:15.275 115200 TIP 431816 10094 6005193 2024-02-19 22:19:30.046 2024-02-19 22:19:30.046 1000 FEE 431877 11670 6005194 2024-02-19 22:19:30.046 2024-02-19 22:19:30.046 9000 TIP 431877 6578 6005197 2024-02-19 22:19:30.389 2024-02-19 22:19:30.389 1000 FEE 431889 7916 6005198 2024-02-19 22:19:30.389 2024-02-19 22:19:30.389 9000 TIP 431889 1890 6005228 2024-02-19 22:20:15.282 2024-02-19 22:20:15.282 2300 FEE 431952 1611 6005229 2024-02-19 22:20:15.282 2024-02-19 22:20:15.282 20700 TIP 431952 6300 6005259 2024-02-19 22:30:48.103 2024-02-19 22:30:48.103 1000 FEE 431960 20706 6005263 2024-02-19 22:32:00.863 2024-02-19 22:32:00.863 2100 FEE 431874 19924 6005264 2024-02-19 22:32:00.863 2024-02-19 22:32:00.863 18900 TIP 431874 20254 6005269 2024-02-19 22:34:18.434 2024-02-19 22:34:18.434 2100 FEE 429319 1221 6005270 2024-02-19 22:34:18.434 2024-02-19 22:34:18.434 18900 TIP 429319 20276 6005288 2024-02-19 22:36:21.055 2024-02-19 22:36:21.055 2100 FEE 431909 9275 6005289 2024-02-19 22:36:21.055 2024-02-19 22:36:21.055 18900 TIP 431909 1135 6005306 2024-02-19 22:38:19.397 2024-02-19 22:38:19.397 2100 FEE 431066 14037 6005307 2024-02-19 22:38:19.397 2024-02-19 22:38:19.397 18900 TIP 431066 18170 6005318 2024-02-19 22:39:57.838 2024-02-19 22:39:57.838 2100 FEE 431844 10393 6005319 2024-02-19 22:39:57.838 2024-02-19 22:39:57.838 18900 TIP 431844 661 6005359 2024-02-19 22:44:46.135 2024-02-19 22:44:46.135 2100 FEE 431887 18494 6005360 2024-02-19 22:44:46.135 2024-02-19 22:44:46.135 18900 TIP 431887 21058 6005378 2024-02-19 22:47:15.839 2024-02-19 22:47:15.839 1000 FEE 431836 2010 6005379 2024-02-19 22:47:15.839 2024-02-19 22:47:15.839 9000 TIP 431836 18836 6005396 2024-02-19 22:48:39.431 2024-02-19 22:48:39.431 2100 FEE 431800 20045 6005397 2024-02-19 22:48:39.431 2024-02-19 22:48:39.431 18900 TIP 431800 20624 6005414 2024-02-19 22:48:46.459 2024-02-19 22:48:46.459 1000 FEE 430651 11897 6005415 2024-02-19 22:48:46.459 2024-02-19 22:48:46.459 9000 TIP 430651 623 6005457 2024-02-19 22:51:25.794 2024-02-19 22:51:25.794 2500 FEE 431635 20852 6005458 2024-02-19 22:51:25.794 2024-02-19 22:51:25.794 22500 TIP 431635 1489 6005459 2024-02-19 22:51:26.752 2024-02-19 22:51:26.752 1000 FEE 431976 16536 6005461 2024-02-19 22:52:55.425 2024-02-19 22:52:55.425 1000 FEE 431977 21609 6005466 2024-02-19 22:53:52.484 2024-02-19 22:53:52.484 1000 FEE 431978 919 6005503 2024-02-19 23:01:20.645 2024-02-19 23:01:20.645 1000 FEE 430569 828 6005504 2024-02-19 23:01:20.645 2024-02-19 23:01:20.645 9000 TIP 430569 18005 6005507 2024-02-19 23:01:34.565 2024-02-19 23:01:34.565 1000 FEE 430981 1751 6005508 2024-02-19 23:01:34.565 2024-02-19 23:01:34.565 9000 TIP 430981 19535 6005512 2024-02-19 23:02:14.089 2024-02-19 23:02:14.089 4200 FEE 431836 18526 6005513 2024-02-19 23:02:14.089 2024-02-19 23:02:14.089 37800 TIP 431836 8173 6005514 2024-02-19 23:02:33.233 2024-02-19 23:02:33.233 4200 FEE 431816 946 6005515 2024-02-19 23:02:33.233 2024-02-19 23:02:33.233 37800 TIP 431816 4084 6005554 2024-02-19 23:09:31.684 2024-02-19 23:09:31.684 6900 FEE 423146 21424 6005555 2024-02-19 23:09:31.684 2024-02-19 23:09:31.684 62100 TIP 423146 14909 6005575 2024-02-19 23:19:10.147 2024-02-19 23:19:10.147 6900 FEE 404085 976 6005576 2024-02-19 23:19:10.147 2024-02-19 23:19:10.147 62100 TIP 404085 18658 6005587 2024-02-19 23:24:40.393 2024-02-19 23:24:40.393 21000 FEE 432002 18816 6005592 2024-02-19 23:26:44.943 2024-02-19 23:26:44.943 90000 FEE 430549 18930 6005593 2024-02-19 23:26:44.943 2024-02-19 23:26:44.943 810000 TIP 430549 5069 6005607 2024-02-19 23:28:21.058 2024-02-19 23:28:21.058 2100 FEE 431989 21577 6005608 2024-02-19 23:28:21.058 2024-02-19 23:28:21.058 18900 TIP 431989 2513 6005635 2024-02-19 23:30:31.933 2024-02-19 23:30:31.933 9000 FEE 430619 14308 6005636 2024-02-19 23:30:31.933 2024-02-19 23:30:31.933 81000 TIP 430619 18658 6005688 2024-02-19 23:39:35.442 2024-02-19 23:39:35.442 10000 FEE 431862 794 6005689 2024-02-19 23:39:35.442 2024-02-19 23:39:35.442 90000 TIP 431862 10944 6005707 2024-02-19 23:43:35.653 2024-02-19 23:43:35.653 1000 FEE 431816 1326 6005708 2024-02-19 23:43:35.653 2024-02-19 23:43:35.653 9000 TIP 431816 21332 6005711 2024-02-19 23:43:45.325 2024-02-19 23:43:45.325 1000 FEE 431844 13174 6005712 2024-02-19 23:43:45.325 2024-02-19 23:43:45.325 9000 TIP 431844 10007 6005717 2024-02-19 23:44:46.344 2024-02-19 23:44:46.344 1000 FEE 432024 11621 6005741 2024-02-19 23:46:23.941 2024-02-19 23:46:23.941 1000 FEE 432028 16809 6005750 2024-02-19 23:49:04.812 2024-02-19 23:49:04.812 1000000 DONT_LIKE_THIS 431816 10359 6005767 2024-02-19 23:51:34.008 2024-02-19 23:51:34.008 9000 FEE 432030 15488 6005768 2024-02-19 23:51:34.008 2024-02-19 23:51:34.008 81000 TIP 432030 16954 6005776 2024-02-19 23:52:03.348 2024-02-19 23:52:03.348 1000 FEE 432033 20906 6005797 2024-02-19 23:53:28.898 2024-02-19 23:53:28.898 1000 FEE 431978 17800 6005798 2024-02-19 23:53:28.898 2024-02-19 23:53:28.898 9000 TIP 431978 1245 6005799 2024-02-19 23:53:34.119 2024-02-19 23:53:34.119 10000 FEE 431862 15408 6005800 2024-02-19 23:53:34.119 2024-02-19 23:53:34.119 90000 TIP 431862 14278 6005807 2024-02-19 23:54:13.869 2024-02-19 23:54:13.869 1000 FEE 431956 3360 6005808 2024-02-19 23:54:13.869 2024-02-19 23:54:13.869 9000 TIP 431956 20470 6005826 2024-02-19 23:55:35.306 2024-02-19 23:55:35.306 1000 FEE 432039 2293 6005835 2024-02-19 23:57:01.045 2024-02-19 23:57:01.045 1000 FEE 431863 19198 6005836 2024-02-19 23:57:01.045 2024-02-19 23:57:01.045 9000 TIP 431863 12976 6005841 2024-02-19 23:57:55.618 2024-02-19 23:57:55.618 1000 FEE 164155 20015 6005842 2024-02-19 23:57:55.618 2024-02-19 23:57:55.618 9000 TIP 164155 1090 6005905 2024-02-20 00:00:02.213 2024-02-20 00:00:02.213 2300 FEE 431956 18124 6005906 2024-02-20 00:00:02.213 2024-02-20 00:00:02.213 20700 TIP 431956 633 6005914 2024-02-20 00:00:06.393 2024-02-20 00:00:06.393 2300 FEE 432025 16571 6005915 2024-02-20 00:00:06.393 2024-02-20 00:00:06.393 20700 TIP 432025 9184 6005926 2024-02-20 00:00:07.753 2024-02-20 00:00:07.753 2300 FEE 432025 5175 6005927 2024-02-20 00:00:07.753 2024-02-20 00:00:07.753 20700 TIP 432025 21060 6005932 2024-02-20 00:00:08.527 2024-02-20 00:00:08.527 2300 FEE 432025 12609 6005933 2024-02-20 00:00:08.527 2024-02-20 00:00:08.527 20700 TIP 432025 18667 6005934 2024-02-20 00:00:08.663 2024-02-20 00:00:08.663 2300 FEE 432025 21048 6005935 2024-02-20 00:00:08.663 2024-02-20 00:00:08.663 20700 TIP 432025 621 6005940 2024-02-20 00:00:11.873 2024-02-20 00:00:11.873 2300 FEE 431998 18412 6005941 2024-02-20 00:00:11.873 2024-02-20 00:00:11.873 20700 TIP 431998 9339 6005944 2024-02-20 00:00:12.183 2024-02-20 00:00:12.183 2300 FEE 431998 13348 6005945 2024-02-20 00:00:12.183 2024-02-20 00:00:12.183 20700 TIP 431998 19795 6005966 2024-02-20 00:00:37.598 2024-02-20 00:00:37.598 2300 FEE 431896 21036 6005967 2024-02-20 00:00:37.598 2024-02-20 00:00:37.598 20700 TIP 431896 16816 6005972 2024-02-20 00:00:38.076 2024-02-20 00:00:38.076 2300 FEE 431896 20490 6005973 2024-02-20 00:00:38.076 2024-02-20 00:00:38.076 20700 TIP 431896 683 6005986 2024-02-20 00:00:42.352 2024-02-20 00:00:42.352 2300 FEE 431864 21072 6005987 2024-02-20 00:00:42.352 2024-02-20 00:00:42.352 20700 TIP 431864 21485 6005990 2024-02-20 00:00:42.772 2024-02-20 00:00:42.772 2300 FEE 431864 6471 6005991 2024-02-20 00:00:42.772 2024-02-20 00:00:42.772 20700 TIP 431864 12072 6006011 2024-02-20 00:01:11.585 2024-02-20 00:01:11.585 2300 FEE 431998 14015 6006012 2024-02-20 00:01:11.585 2024-02-20 00:01:11.585 20700 TIP 431998 5703 6006014 2024-02-20 00:01:11.745 2024-02-20 00:01:11.745 2300 FEE 431998 4487 6006015 2024-02-20 00:01:11.745 2024-02-20 00:01:11.745 20700 TIP 431998 2735 6006020 2024-02-20 00:01:12.547 2024-02-20 00:01:12.547 2300 FEE 431998 10493 6006021 2024-02-20 00:01:12.547 2024-02-20 00:01:12.547 20700 TIP 431998 3440 6006030 2024-02-20 00:01:16.827 2024-02-20 00:01:16.827 2300 FEE 431998 18995 6006031 2024-02-20 00:01:16.827 2024-02-20 00:01:16.827 20700 TIP 431998 7587 6006038 2024-02-20 00:01:18.206 2024-02-20 00:01:18.206 2300 FEE 431998 4819 6005220 2024-02-19 22:19:35.285 2024-02-19 22:19:35.285 900 TIP 431938 16842 6005226 2024-02-19 22:20:15.166 2024-02-19 22:20:15.166 2300 FEE 431952 13767 6005227 2024-02-19 22:20:15.166 2024-02-19 22:20:15.166 20700 TIP 431952 19570 6005253 2024-02-19 22:27:29.384 2024-02-19 22:27:29.384 1000 FEE 431958 21248 6005261 2024-02-19 22:31:34.857 2024-02-19 22:31:34.857 2100 FEE 431844 699 6005262 2024-02-19 22:31:34.857 2024-02-19 22:31:34.857 18900 TIP 431844 635 6005266 2024-02-19 22:32:44.327 2024-02-19 22:32:44.327 100000 FEE 431961 16440 6005271 2024-02-19 22:34:19.496 2024-02-19 22:34:19.496 2100 FEE 429926 2460 6005272 2024-02-19 22:34:19.496 2024-02-19 22:34:19.496 18900 TIP 429926 1008 6005276 2024-02-19 22:34:59.039 2024-02-19 22:34:59.039 2100 FEE 431809 7097 6005277 2024-02-19 22:34:59.039 2024-02-19 22:34:59.039 18900 TIP 431809 18743 6005286 2024-02-19 22:36:05.103 2024-02-19 22:36:05.103 2100 FEE 430892 18836 6005287 2024-02-19 22:36:05.103 2024-02-19 22:36:05.103 18900 TIP 430892 21051 6005308 2024-02-19 22:38:59.89 2024-02-19 22:38:59.89 1000 FEE 431965 21417 6005309 2024-02-19 22:39:01.907 2024-02-19 22:39:01.907 2100 FEE 431844 17094 6005310 2024-02-19 22:39:01.907 2024-02-19 22:39:01.907 18900 TIP 431844 4102 6005331 2024-02-19 22:41:34.911 2024-02-19 22:41:34.911 1000 FEE 431969 11443 6005342 2024-02-19 22:43:28.437 2024-02-19 22:43:28.437 2100 FEE 430847 13406 6005343 2024-02-19 22:43:28.437 2024-02-19 22:43:28.437 18900 TIP 430847 11776 6005346 2024-02-19 22:43:53.218 2024-02-19 22:43:53.218 2100 FEE 431969 4391 6005347 2024-02-19 22:43:53.218 2024-02-19 22:43:53.218 18900 TIP 431969 21556 6005362 2024-02-19 22:45:04.486 2024-02-19 22:45:04.486 1000 FEE 430640 2614 6005363 2024-02-19 22:45:04.486 2024-02-19 22:45:04.486 9000 TIP 430640 14404 6005364 2024-02-19 22:45:21.096 2024-02-19 22:45:21.096 1000 FEE 431816 17147 6005365 2024-02-19 22:45:21.096 2024-02-19 22:45:21.096 9000 TIP 431816 694 6005380 2024-02-19 22:47:23.936 2024-02-19 22:47:23.936 2600 FEE 431868 21498 6005381 2024-02-19 22:47:23.936 2024-02-19 22:47:23.936 23400 TIP 431868 6499 6005435 2024-02-19 22:49:07.329 2024-02-19 22:49:07.329 1000 FEE 431974 20816 6005444 2024-02-19 22:49:59.464 2024-02-19 22:49:59.464 100 FEE 431942 652 6005445 2024-02-19 22:49:59.464 2024-02-19 22:49:59.464 900 TIP 431942 1010 6005448 2024-02-19 22:50:00.225 2024-02-19 22:50:00.225 9000 FEE 431942 8506 6005449 2024-02-19 22:50:00.225 2024-02-19 22:50:00.225 81000 TIP 431942 12368 6005472 2024-02-19 22:55:28.302 2024-02-19 22:55:28.302 900 FEE 431974 16387 6005473 2024-02-19 22:55:28.302 2024-02-19 22:55:28.302 8100 TIP 431974 21091 6005480 2024-02-19 22:56:59.033 2024-02-19 22:56:59.033 2100 FEE 431711 19320 6005481 2024-02-19 22:56:59.033 2024-02-19 22:56:59.033 18900 TIP 431711 20825 6005491 2024-02-19 22:58:49.813 2024-02-19 22:58:49.813 1000 FEE 431982 631 6005517 2024-02-19 23:03:30.679 2024-02-19 23:03:30.679 1000 FEE 430888 18449 6005518 2024-02-19 23:03:30.679 2024-02-19 23:03:30.679 9000 TIP 430888 12222 6005573 2024-02-19 23:18:50.675 2024-02-19 23:18:50.675 1000 FEE 431996 20970 6005605 2024-02-19 23:28:02.698 2024-02-19 23:28:02.698 50000 FEE 432003 18225 6005611 2024-02-19 23:28:26.036 2024-02-19 23:28:26.036 100 FEE 431989 13574 6005612 2024-02-19 23:28:26.036 2024-02-19 23:28:26.036 900 TIP 431989 8870 6005625 2024-02-19 23:29:55.225 2024-02-19 23:29:55.225 2100 FEE 431565 21343 6005626 2024-02-19 23:29:55.225 2024-02-19 23:29:55.225 18900 TIP 431565 21609 6005632 2024-02-19 23:30:01.699 2024-02-19 23:30:01.699 900 FEE 430892 1478 6005633 2024-02-19 23:30:01.699 2024-02-19 23:30:01.699 8100 TIP 430892 20987 6005637 2024-02-19 23:30:36.249 2024-02-19 23:30:36.249 90000 FEE 431918 19843 6005638 2024-02-19 23:30:36.249 2024-02-19 23:30:36.249 810000 TIP 431918 2734 6005659 2024-02-19 23:34:54.554 2024-02-19 23:34:54.554 1000 FEE 432011 5112 6005674 2024-02-19 23:37:12.069 2024-02-19 23:37:12.069 4000 FEE 432009 18690 6005675 2024-02-19 23:37:12.069 2024-02-19 23:37:12.069 36000 TIP 432009 2039 6005682 2024-02-19 23:38:08.139 2024-02-19 23:38:08.139 12800 FEE 240442 1605 6005683 2024-02-19 23:38:08.139 2024-02-19 23:38:08.139 115200 TIP 240442 1519 6005687 2024-02-19 23:39:33.224 2024-02-19 23:39:33.224 1000 FEE 432016 20619 6005709 2024-02-19 23:43:40.665 2024-02-19 23:43:40.665 1000 FEE 431401 705 6005710 2024-02-19 23:43:40.665 2024-02-19 23:43:40.665 9000 TIP 431401 15266 6005734 2024-02-19 23:46:05.8 2024-02-19 23:46:05.8 1000 FEE 432027 19924 6005737 2024-02-19 23:46:12.349 2024-02-19 23:46:12.349 1000 FEE 432005 19886 6005738 2024-02-19 23:46:12.349 2024-02-19 23:46:12.349 9000 TIP 432005 20490 6005746 2024-02-19 23:48:25.978 2024-02-19 23:48:25.978 1000 FEE 431595 18409 6005747 2024-02-19 23:48:25.978 2024-02-19 23:48:25.978 9000 TIP 431595 8926 6005811 2024-02-19 23:54:28.398 2024-02-19 23:54:28.398 1000 FEE 432025 8448 6005812 2024-02-19 23:54:28.398 2024-02-19 23:54:28.398 9000 TIP 432025 19309 6005879 2024-02-19 23:59:47.22 2024-02-19 23:59:47.22 2300 FEE 431894 14271 6005880 2024-02-19 23:59:47.22 2024-02-19 23:59:47.22 20700 TIP 431894 11328 6005895 2024-02-20 00:00:00.811 2024-02-20 00:00:00.811 2300 FEE 431956 17042 6005896 2024-02-20 00:00:00.811 2024-02-20 00:00:00.811 20700 TIP 431956 18336 6005897 2024-02-20 00:00:00.932 2024-02-20 00:00:00.932 4600 FEE 431956 4323 6005898 2024-02-20 00:00:00.932 2024-02-20 00:00:00.932 41400 TIP 431956 16042 6005912 2024-02-20 00:00:06.242 2024-02-20 00:00:06.242 2300 FEE 432025 951 6005913 2024-02-20 00:00:06.242 2024-02-20 00:00:06.242 20700 TIP 432025 16276 6005916 2024-02-20 00:00:06.545 2024-02-20 00:00:06.545 2300 FEE 432025 16351 6005917 2024-02-20 00:00:06.545 2024-02-20 00:00:06.545 20700 TIP 432025 13198 6005928 2024-02-20 00:00:08.203 2024-02-20 00:00:08.203 2300 FEE 432025 1433 6005929 2024-02-20 00:00:08.203 2024-02-20 00:00:08.203 20700 TIP 432025 21430 6005942 2024-02-20 00:00:12.033 2024-02-20 00:00:12.033 2300 FEE 431998 1401 6005943 2024-02-20 00:00:12.033 2024-02-20 00:00:12.033 20700 TIP 431998 10013 6005946 2024-02-20 00:00:12.982 2024-02-20 00:00:12.982 4600 FEE 431998 635 6005947 2024-02-20 00:00:12.982 2024-02-20 00:00:12.982 41400 TIP 431998 5538 6005952 2024-02-20 00:00:14.209 2024-02-20 00:00:14.209 2300 FEE 432022 12024 6005953 2024-02-20 00:00:14.209 2024-02-20 00:00:14.209 20700 TIP 432022 17331 6005960 2024-02-20 00:00:37.204 2024-02-20 00:00:37.204 2300 FEE 431896 9036 6005961 2024-02-20 00:00:37.204 2024-02-20 00:00:37.204 20700 TIP 431896 20090 6005962 2024-02-20 00:00:37.283 2024-02-20 00:00:37.283 2300 FEE 431896 2293 6005963 2024-02-20 00:00:37.283 2024-02-20 00:00:37.283 20700 TIP 431896 18368 6005970 2024-02-20 00:00:37.945 2024-02-20 00:00:37.945 2300 FEE 431896 18658 6005971 2024-02-20 00:00:37.945 2024-02-20 00:00:37.945 20700 TIP 431896 5387 6005974 2024-02-20 00:00:38.197 2024-02-20 00:00:38.197 2300 FEE 431896 14785 6005975 2024-02-20 00:00:38.197 2024-02-20 00:00:38.197 20700 TIP 431896 18231 6006044 2024-02-20 00:02:42.709 2024-02-20 00:02:42.709 1000 FEE 432043 19332 6006045 2024-02-20 00:02:45.669 2024-02-20 00:02:45.669 1000 FEE 432044 9916 6006054 2024-02-20 00:04:52.313 2024-02-20 00:04:52.313 1000 FEE 431956 1628 6006055 2024-02-20 00:04:52.313 2024-02-20 00:04:52.313 9000 TIP 431956 21451 6006061 2024-02-20 00:05:41.431 2024-02-20 00:05:41.431 1000 FEE 432047 16876 6006095 2024-02-20 00:11:59.923 2024-02-20 00:11:59.923 100 FEE 431146 20554 6006096 2024-02-20 00:11:59.923 2024-02-20 00:11:59.923 900 TIP 431146 20970 6006105 2024-02-20 00:12:01.191 2024-02-20 00:12:01.191 100 FEE 431146 7986 6006106 2024-02-20 00:12:01.191 2024-02-20 00:12:01.191 900 TIP 431146 19572 6006142 2024-02-20 00:18:54.654 2024-02-20 00:18:54.654 2100 FEE 421805 19886 6006143 2024-02-20 00:18:54.654 2024-02-20 00:18:54.654 18900 TIP 421805 21233 6006160 2024-02-20 00:25:04.793 2024-02-20 00:25:04.793 2000 FEE 432052 9351 6006161 2024-02-20 00:25:04.793 2024-02-20 00:25:04.793 18000 TIP 432052 650 6006213 2024-02-20 00:39:38.452 2024-02-20 00:39:38.452 1000 FEE 431941 18188 6006214 2024-02-20 00:39:38.452 2024-02-20 00:39:38.452 9000 TIP 431941 11192 6006215 2024-02-20 00:39:57.663 2024-02-20 00:39:57.663 100 FEE 432060 4322 6006216 2024-02-20 00:39:57.663 2024-02-20 00:39:57.663 900 TIP 432060 20180 6005382 2024-02-19 22:48:03.572 2024-02-19 22:48:03.572 1000 STREAM 141924 992 6005434 2024-02-19 22:49:03.58 2024-02-19 22:49:03.58 1000 STREAM 141924 1769 6005464 2024-02-19 22:53:03.611 2024-02-19 22:53:03.611 1000 STREAM 141924 8841 6005468 2024-02-19 22:55:03.602 2024-02-19 22:55:03.602 1000 STREAM 141924 18180 6005479 2024-02-19 22:56:03.613 2024-02-19 22:56:03.613 1000 STREAM 141924 19462 6005494 2024-02-19 22:59:03.644 2024-02-19 22:59:03.644 1000 STREAM 141924 6777 6005495 2024-02-19 23:00:03.713 2024-02-19 23:00:03.713 1000 STREAM 141924 19036 6005502 2024-02-19 23:01:03.691 2024-02-19 23:01:03.691 1000 STREAM 141924 14370 6005521 2024-02-19 23:04:03.727 2024-02-19 23:04:03.727 1000 STREAM 141924 14941 6005533 2024-02-19 23:07:03.772 2024-02-19 23:07:03.772 1000 STREAM 141924 20450 6005552 2024-02-19 23:09:03.794 2024-02-19 23:09:03.794 1000 STREAM 141924 20585 6005559 2024-02-19 23:11:03.812 2024-02-19 23:11:03.812 1000 STREAM 141924 19907 6005561 2024-02-19 23:12:03.823 2024-02-19 23:12:03.823 1000 STREAM 141924 15556 6005565 2024-02-19 23:15:03.856 2024-02-19 23:15:03.856 1000 STREAM 141924 15732 6005570 2024-02-19 23:18:03.893 2024-02-19 23:18:03.893 1000 STREAM 141924 2789 6005578 2024-02-19 23:20:03.953 2024-02-19 23:20:03.953 1000 STREAM 141924 17944 6005584 2024-02-19 23:23:03.969 2024-02-19 23:23:03.969 1000 STREAM 141924 19773 6005615 2024-02-19 23:29:04.036 2024-02-19 23:29:04.036 1000 STREAM 141924 15560 6005647 2024-02-19 23:33:04.055 2024-02-19 23:33:04.055 1000 STREAM 141924 19189 6005652 2024-02-19 23:34:04.07 2024-02-19 23:34:04.07 1000 STREAM 141924 8385 6005669 2024-02-19 23:36:04.097 2024-02-19 23:36:04.097 1000 STREAM 141924 11820 6005673 2024-02-19 23:37:04.123 2024-02-19 23:37:04.123 1000 STREAM 141924 12930 6005681 2024-02-19 23:38:04.14 2024-02-19 23:38:04.14 1000 STREAM 141924 959 6005686 2024-02-19 23:39:04.146 2024-02-19 23:39:04.146 1000 STREAM 141924 16406 6005705 2024-02-19 23:43:04.202 2024-02-19 23:43:04.202 1000 STREAM 141924 12024 6005387 2024-02-19 22:48:24.15 2024-02-19 22:48:24.15 8100 TIP 431962 736 6005406 2024-02-19 22:48:43.552 2024-02-19 22:48:43.552 2100 FEE 430920 20026 6005407 2024-02-19 22:48:43.552 2024-02-19 22:48:43.552 18900 TIP 430920 15488 6005438 2024-02-19 22:49:27.831 2024-02-19 22:49:27.831 100 FEE 431918 18472 6005439 2024-02-19 22:49:27.831 2024-02-19 22:49:27.831 900 TIP 431918 7418 6005490 2024-02-19 22:58:13.514 2024-02-19 22:58:13.514 1000 FEE 431981 20691 6005497 2024-02-19 23:00:05.042 2024-02-19 23:00:05.042 1000 FEE 431984 10719 6005500 2024-02-19 23:00:57.462 2024-02-19 23:00:57.462 6900 FEE 429683 2609 6005501 2024-02-19 23:00:57.462 2024-02-19 23:00:57.462 62100 TIP 429683 20564 6005524 2024-02-19 23:04:22.806 2024-02-19 23:04:22.806 1000 FEE 431593 4059 6005525 2024-02-19 23:04:22.806 2024-02-19 23:04:22.806 9000 TIP 431593 9845 6005539 2024-02-19 23:08:15.098 2024-02-19 23:08:15.098 1000 FEE 431990 18269 6005546 2024-02-19 23:08:43.652 2024-02-19 23:08:43.652 2300 FEE 431975 730 6005547 2024-02-19 23:08:43.652 2024-02-19 23:08:43.652 20700 TIP 431975 811 6005558 2024-02-19 23:10:34.837 2024-02-19 23:10:34.837 1000 FEE 431993 18817 6005582 2024-02-19 23:21:58.659 2024-02-19 23:21:58.659 1000 FEE 432000 20782 6005649 2024-02-19 23:33:49.063 2024-02-19 23:33:49.063 500 FEE 432005 18524 6005650 2024-02-19 23:33:49.063 2024-02-19 23:33:49.063 4500 TIP 432005 20470 6005653 2024-02-19 23:34:37.034 2024-02-19 23:34:37.034 1100 FEE 432008 671 6005654 2024-02-19 23:34:37.034 2024-02-19 23:34:37.034 9900 TIP 432008 1985 6005665 2024-02-19 23:35:59.368 2024-02-19 23:35:59.368 400 FEE 432010 20987 6005666 2024-02-19 23:35:59.368 2024-02-19 23:35:59.368 3600 TIP 432010 13798 6005684 2024-02-19 23:38:26.923 2024-02-19 23:38:26.923 5000 FEE 432013 8059 6005685 2024-02-19 23:38:26.923 2024-02-19 23:38:26.923 45000 TIP 432013 19662 6005695 2024-02-19 23:40:59.731 2024-02-19 23:40:59.731 2100 FEE 432006 17415 6005696 2024-02-19 23:40:59.731 2024-02-19 23:40:59.731 18900 TIP 432006 18635 6005699 2024-02-19 23:41:39.943 2024-02-19 23:41:39.943 1000 FEE 432019 14990 6005701 2024-02-19 23:42:05.376 2024-02-19 23:42:05.376 12800 FEE 431844 2022 6005702 2024-02-19 23:42:05.376 2024-02-19 23:42:05.376 115200 TIP 431844 19263 6005706 2024-02-19 23:43:33.726 2024-02-19 23:43:33.726 1000 FEE 432022 15577 6005719 2024-02-19 23:44:59.429 2024-02-19 23:44:59.429 1000 FEE 432026 4177 6005729 2024-02-19 23:45:46.536 2024-02-19 23:45:46.536 1000 FEE 432024 14515 6005730 2024-02-19 23:45:46.536 2024-02-19 23:45:46.536 9000 TIP 432024 21406 6005770 2024-02-19 23:51:40.798 2024-02-19 23:51:40.798 4000 FEE 432016 18231 6005771 2024-02-19 23:51:40.798 2024-02-19 23:51:40.798 36000 TIP 432016 11698 6005784 2024-02-19 23:52:29.402 2024-02-19 23:52:29.402 1600 FEE 431816 10056 6005785 2024-02-19 23:52:29.402 2024-02-19 23:52:29.402 14400 TIP 431816 825 6005805 2024-02-19 23:53:55.659 2024-02-19 23:53:55.659 1000 FEE 432036 1478 6005825 2024-02-19 23:55:22.007 2024-02-19 23:55:22.007 1000 FEE 432038 20006 6005838 2024-02-19 23:57:09.759 2024-02-19 23:57:09.759 1000 FEE 432038 12921 6005839 2024-02-19 23:57:09.759 2024-02-19 23:57:09.759 9000 TIP 432038 13076 6005844 2024-02-19 23:58:49.949 2024-02-19 23:58:49.949 1000 FEE 346695 6041 6005845 2024-02-19 23:58:49.949 2024-02-19 23:58:49.949 9000 TIP 346695 15180 6005847 2024-02-19 23:59:33.817 2024-02-19 23:59:33.817 2300 FEE 432032 2614 6005848 2024-02-19 23:59:33.817 2024-02-19 23:59:33.817 20700 TIP 432032 13399 6005857 2024-02-19 23:59:34.927 2024-02-19 23:59:34.927 2300 FEE 432032 11443 6005858 2024-02-19 23:59:34.927 2024-02-19 23:59:34.927 20700 TIP 432032 18816 6005869 2024-02-19 23:59:43.742 2024-02-19 23:59:43.742 2300 FEE 431896 21398 6005870 2024-02-19 23:59:43.742 2024-02-19 23:59:43.742 20700 TIP 431896 10484 6005881 2024-02-19 23:59:47.334 2024-02-19 23:59:47.334 2300 FEE 431894 15351 6005882 2024-02-19 23:59:47.334 2024-02-19 23:59:47.334 20700 TIP 431894 695 6005883 2024-02-19 23:59:47.424 2024-02-19 23:59:47.424 2300 FEE 431894 16948 6005884 2024-02-19 23:59:47.424 2024-02-19 23:59:47.424 20700 TIP 431894 19484 6005885 2024-02-19 23:59:47.585 2024-02-19 23:59:47.585 2300 FEE 431894 4175 6005886 2024-02-19 23:59:47.585 2024-02-19 23:59:47.585 20700 TIP 431894 17046 6005887 2024-02-19 23:59:47.758 2024-02-19 23:59:47.758 2300 FEE 431894 19976 6005888 2024-02-19 23:59:47.758 2024-02-19 23:59:47.758 20700 TIP 431894 780 6005899 2024-02-20 00:00:01.222 2024-02-20 00:00:01.222 2300 FEE 431956 21374 6005900 2024-02-20 00:00:01.222 2024-02-20 00:00:01.222 20700 TIP 431956 20613 6005910 2024-02-20 00:00:05.821 2024-02-20 00:00:05.821 6900 FEE 432025 21212 6005911 2024-02-20 00:00:05.821 2024-02-20 00:00:05.821 62100 TIP 432025 20603 6005930 2024-02-20 00:00:08.349 2024-02-20 00:00:08.349 2300 FEE 432025 20751 6005931 2024-02-20 00:00:08.349 2024-02-20 00:00:08.349 20700 TIP 432025 1611 6005982 2024-02-20 00:00:40.929 2024-02-20 00:00:40.929 2300 FEE 431894 20585 6005983 2024-02-20 00:00:40.929 2024-02-20 00:00:40.929 20700 TIP 431894 7425 6005984 2024-02-20 00:00:42.217 2024-02-20 00:00:42.217 2300 FEE 431864 21070 6005985 2024-02-20 00:00:42.217 2024-02-20 00:00:42.217 20700 TIP 431864 9336 6005992 2024-02-20 00:00:43.376 2024-02-20 00:00:43.376 2300 FEE 431864 3990 6005993 2024-02-20 00:00:43.376 2024-02-20 00:00:43.376 20700 TIP 431864 1006 6005997 2024-02-20 00:01:05.503 2024-02-20 00:01:05.503 2300 FEE 431854 4763 6005998 2024-02-20 00:01:05.503 2024-02-20 00:01:05.503 20700 TIP 431854 21374 6006001 2024-02-20 00:01:05.817 2024-02-20 00:01:05.817 2300 FEE 431854 9906 6006002 2024-02-20 00:01:05.817 2024-02-20 00:01:05.817 20700 TIP 431854 17411 6006003 2024-02-20 00:01:05.894 2024-02-20 00:01:05.894 2300 FEE 431854 8416 6006004 2024-02-20 00:01:05.894 2024-02-20 00:01:05.894 20700 TIP 431854 18119 6006005 2024-02-20 00:01:06.664 2024-02-20 00:01:06.664 2300 FEE 431854 9167 6006006 2024-02-20 00:01:06.664 2024-02-20 00:01:06.664 20700 TIP 431854 19030 6006016 2024-02-20 00:01:11.908 2024-02-20 00:01:11.908 2300 FEE 431998 20577 6006017 2024-02-20 00:01:11.908 2024-02-20 00:01:11.908 20700 TIP 431998 20680 6006018 2024-02-20 00:01:12.005 2024-02-20 00:01:12.005 2300 FEE 431998 18892 6006019 2024-02-20 00:01:12.005 2024-02-20 00:01:12.005 20700 TIP 431998 11522 6006026 2024-02-20 00:01:16.493 2024-02-20 00:01:16.493 2300 FEE 431998 13042 6006027 2024-02-20 00:01:16.493 2024-02-20 00:01:16.493 20700 TIP 431998 795 6006050 2024-02-20 00:04:47.656 2024-02-20 00:04:47.656 5000 FEE 431800 13622 6006051 2024-02-20 00:04:47.656 2024-02-20 00:04:47.656 45000 TIP 431800 9874 6006059 2024-02-20 00:05:17.528 2024-02-20 00:05:17.528 5000 FEE 431904 19198 6006060 2024-02-20 00:05:17.528 2024-02-20 00:05:17.528 45000 TIP 431904 1658 6006070 2024-02-20 00:06:11.688 2024-02-20 00:06:11.688 2100 FEE 431112 20500 6006071 2024-02-20 00:06:11.688 2024-02-20 00:06:11.688 18900 TIP 431112 17984 6006092 2024-02-20 00:11:32.114 2024-02-20 00:11:32.114 1000 FEE 432050 937 6006107 2024-02-20 00:12:02.797 2024-02-20 00:12:02.797 100 FEE 431146 3709 6006108 2024-02-20 00:12:02.797 2024-02-20 00:12:02.797 900 TIP 431146 19995 6006114 2024-02-20 00:13:34.194 2024-02-20 00:13:34.194 5000 FEE 431855 20222 6006115 2024-02-20 00:13:34.194 2024-02-20 00:13:34.194 45000 TIP 431855 8998 6006122 2024-02-20 00:14:01.443 2024-02-20 00:14:01.443 1000 FEE 430522 672 6006123 2024-02-20 00:14:01.443 2024-02-20 00:14:01.443 9000 TIP 430522 6537 6006129 2024-02-20 00:14:35.505 2024-02-20 00:14:35.505 1000 DONT_LIKE_THIS 430682 20594 6006149 2024-02-20 00:21:22.751 2024-02-20 00:21:22.751 100 FEE 431938 17162 6006150 2024-02-20 00:21:22.751 2024-02-20 00:21:22.751 900 TIP 431938 14213 6006167 2024-02-20 00:28:19.968 2024-02-20 00:28:19.968 100 FEE 432003 15063 6006168 2024-02-20 00:28:19.968 2024-02-20 00:28:19.968 900 TIP 432003 13143 6006171 2024-02-20 00:28:54.99 2024-02-20 00:28:54.99 1000 FEE 432056 9494 6006180 2024-02-20 00:30:41.491 2024-02-20 00:30:41.491 1000 FEE 432059 1008 6006212 2024-02-20 00:39:13.743 2024-02-20 00:39:13.743 1000 FEE 432067 14015 6006219 2024-02-20 00:39:58.389 2024-02-20 00:39:58.389 9000 FEE 432060 11821 6006220 2024-02-20 00:39:58.389 2024-02-20 00:39:58.389 81000 TIP 432060 650 6006258 2024-02-20 00:59:49.035 2024-02-20 00:59:49.035 1000 FEE 432070 17696 6005402 2024-02-19 22:48:42.158 2024-02-19 22:48:42.158 2100 FEE 430626 20687 6005403 2024-02-19 22:48:42.158 2024-02-19 22:48:42.158 18900 TIP 430626 17082 6005404 2024-02-19 22:48:42.988 2024-02-19 22:48:42.988 2100 FEE 431223 16954 6005405 2024-02-19 22:48:42.988 2024-02-19 22:48:42.988 18900 TIP 431223 18608 6005418 2024-02-19 22:48:47.411 2024-02-19 22:48:47.411 2100 FEE 431293 16839 6005419 2024-02-19 22:48:47.411 2024-02-19 22:48:47.411 18900 TIP 431293 1320 6005446 2024-02-19 22:49:59.629 2024-02-19 22:49:59.629 900 FEE 431942 17523 6005447 2024-02-19 22:49:59.629 2024-02-19 22:49:59.629 8100 TIP 431942 21138 6005465 2024-02-19 22:53:49.94 2024-02-19 22:53:49.94 0 FEE 431977 4973 6005474 2024-02-19 22:55:32.01 2024-02-19 22:55:32.01 1000 FEE 431980 18618 6005526 2024-02-19 23:04:30.953 2024-02-19 23:04:30.953 2100 FEE 431970 15094 6005527 2024-02-19 23:04:30.953 2024-02-19 23:04:30.953 18900 TIP 431970 20479 6005530 2024-02-19 23:06:46.494 2024-02-19 23:06:46.494 10000 FEE 431987 10056 6005535 2024-02-19 23:07:29.753 2024-02-19 23:07:29.753 1000 FEE 431989 20924 6005536 2024-02-19 23:07:51.589 2024-02-19 23:07:51.589 1000 FEE 430646 8796 6005537 2024-02-19 23:07:51.589 2024-02-19 23:07:51.589 9000 TIP 430646 21600 6005540 2024-02-19 23:08:37.367 2024-02-19 23:08:37.367 2300 FEE 431978 21090 6005541 2024-02-19 23:08:37.367 2024-02-19 23:08:37.367 20700 TIP 431978 20353 6005586 2024-02-19 23:24:13.145 2024-02-19 23:24:13.145 1000 FEE 432001 18984 6005596 2024-02-19 23:27:03.476 2024-02-19 23:27:03.476 100 FEE 431955 11750 6005597 2024-02-19 23:27:03.476 2024-02-19 23:27:03.476 900 TIP 431955 17535 6005601 2024-02-19 23:27:24.472 2024-02-19 23:27:24.472 100 FEE 431966 15148 6005602 2024-02-19 23:27:24.472 2024-02-19 23:27:24.472 900 TIP 431966 18635 6005644 2024-02-19 23:31:49.264 2024-02-19 23:31:49.264 1000 FEE 431844 19320 6005645 2024-02-19 23:31:49.264 2024-02-19 23:31:49.264 9000 TIP 431844 1000 6005651 2024-02-19 23:34:00.218 2024-02-19 23:34:00.218 1000 FEE 432010 18877 6005657 2024-02-19 23:34:53.443 2024-02-19 23:34:53.443 2100 FEE 431871 8004 6005658 2024-02-19 23:34:53.443 2024-02-19 23:34:53.443 18900 TIP 431871 1038 6005676 2024-02-19 23:37:37.403 2024-02-19 23:37:37.403 1000 FEE 432013 16717 6005680 2024-02-19 23:37:59.865 2024-02-19 23:37:59.865 1000 FEE 432015 21539 6005692 2024-02-19 23:40:06.617 2024-02-19 23:40:06.617 5000 DONT_LIKE_THIS 432003 4084 6005693 2024-02-19 23:40:25.436 2024-02-19 23:40:25.436 12800 FEE 431856 1394 6005694 2024-02-19 23:40:25.436 2024-02-19 23:40:25.436 115200 TIP 431856 10934 6005718 2024-02-19 23:44:55.97 2024-02-19 23:44:55.97 1000 FEE 432025 14280 6005756 2024-02-19 23:50:51.768 2024-02-19 23:50:51.768 100 FEE 432030 21501 6005757 2024-02-19 23:50:51.768 2024-02-19 23:50:51.768 900 TIP 432030 20623 6005760 2024-02-19 23:50:52.852 2024-02-19 23:50:52.852 100 FEE 431844 9183 6005761 2024-02-19 23:50:52.852 2024-02-19 23:50:52.852 900 TIP 431844 20854 6005774 2024-02-19 23:51:50.541 2024-02-19 23:51:50.541 1000 FEE 431896 15408 6005775 2024-02-19 23:51:50.541 2024-02-19 23:51:50.541 9000 TIP 431896 1389 6005794 2024-02-19 23:53:21.965 2024-02-19 23:53:21.965 100 FEE 430496 12024 6005795 2024-02-19 23:53:21.965 2024-02-19 23:53:21.965 900 TIP 430496 19930 6005823 2024-02-19 23:55:13.333 2024-02-19 23:55:13.333 1000 FEE 432021 16289 6005824 2024-02-19 23:55:13.333 2024-02-19 23:55:13.333 9000 TIP 432021 20018 6005829 2024-02-19 23:56:05.026 2024-02-19 23:56:05.026 1000 FEE 431242 20185 6005830 2024-02-19 23:56:05.026 2024-02-19 23:56:05.026 9000 TIP 431242 960 6005840 2024-02-19 23:57:29.701 2024-02-19 23:57:29.701 1000 FEE 432040 17116 6005851 2024-02-19 23:59:34.118 2024-02-19 23:59:34.118 2300 FEE 432032 2773 6005852 2024-02-19 23:59:34.118 2024-02-19 23:59:34.118 20700 TIP 432032 1618 6005855 2024-02-19 23:59:34.769 2024-02-19 23:59:34.769 2300 FEE 432032 2757 6005856 2024-02-19 23:59:34.769 2024-02-19 23:59:34.769 20700 TIP 432032 19852 6005863 2024-02-19 23:59:43.333 2024-02-19 23:59:43.333 2300 FEE 431896 828 6005864 2024-02-19 23:59:43.333 2024-02-19 23:59:43.333 20700 TIP 431896 16842 6005948 2024-02-20 00:00:14.049 2024-02-20 00:00:14.049 2300 FEE 432022 15063 6005949 2024-02-20 00:00:14.049 2024-02-20 00:00:14.049 20700 TIP 432022 14195 6005976 2024-02-20 00:00:40.539 2024-02-20 00:00:40.539 2300 FEE 431894 1320 6005977 2024-02-20 00:00:40.539 2024-02-20 00:00:40.539 20700 TIP 431894 5728 6005980 2024-02-20 00:00:40.835 2024-02-20 00:00:40.835 2300 FEE 431894 17064 6005981 2024-02-20 00:00:40.835 2024-02-20 00:00:40.835 20700 TIP 431894 16724 6005995 2024-02-20 00:01:05.378 2024-02-20 00:01:05.378 2300 FEE 431854 6137 6005996 2024-02-20 00:01:05.378 2024-02-20 00:01:05.378 20700 TIP 431854 18174 6005999 2024-02-20 00:01:05.656 2024-02-20 00:01:05.656 2300 FEE 431854 19553 6006000 2024-02-20 00:01:05.656 2024-02-20 00:01:05.656 20700 TIP 431854 10719 6006090 2024-02-20 00:11:11.59 2024-02-20 00:11:11.59 10000 FEE 431880 16633 6006091 2024-02-20 00:11:11.59 2024-02-20 00:11:11.59 90000 TIP 431880 17727 6006109 2024-02-20 00:12:02.95 2024-02-20 00:12:02.95 100 FEE 431146 21201 6006110 2024-02-20 00:12:02.95 2024-02-20 00:12:02.95 900 TIP 431146 15617 6006113 2024-02-20 00:13:04.816 2024-02-20 00:13:04.816 1000 FEE 432051 12721 6006127 2024-02-20 00:14:34.17 2024-02-20 00:14:34.17 5000 FEE 431856 21405 6006128 2024-02-20 00:14:34.17 2024-02-20 00:14:34.17 45000 TIP 431856 6136 6006131 2024-02-20 00:15:18.709 2024-02-20 00:15:18.709 1000 FEE 430611 4259 6006132 2024-02-20 00:15:18.709 2024-02-20 00:15:18.709 9000 TIP 430611 696 6006151 2024-02-20 00:21:22.926 2024-02-20 00:21:22.926 900 FEE 431938 1175 6006152 2024-02-20 00:21:22.926 2024-02-20 00:21:22.926 8100 TIP 431938 21140 6006162 2024-02-20 00:25:56.525 2024-02-20 00:25:56.525 2100 FEE 432018 2640 6006163 2024-02-20 00:25:56.525 2024-02-20 00:25:56.525 18900 TIP 432018 16267 6006179 2024-02-20 00:30:23.241 2024-02-20 00:30:23.241 1000 FEE 432058 1141 6006186 2024-02-20 00:32:28.967 2024-02-20 00:32:28.967 2100 FEE 432003 17519 6006187 2024-02-20 00:32:28.967 2024-02-20 00:32:28.967 18900 TIP 432003 650 6006190 2024-02-20 00:33:42.932 2024-02-20 00:33:42.932 1000 FEE 432062 10016 6006223 2024-02-20 00:41:00.201 2024-02-20 00:41:00.201 2100 FEE 431985 19394 6006224 2024-02-20 00:41:00.201 2024-02-20 00:41:00.201 18900 TIP 431985 2749 6005550 2024-02-19 23:08:43.894 2024-02-19 23:08:43.894 2300 FEE 431975 5791 6005551 2024-02-19 23:08:43.894 2024-02-19 23:08:43.894 20700 TIP 431975 6310 6005560 2024-02-19 23:11:27.563 2024-02-19 23:11:27.563 10000 FEE 431994 19890 6005562 2024-02-19 23:12:56.391 2024-02-19 23:12:56.391 1000 FEE 431995 15484 6005577 2024-02-19 23:19:35.049 2024-02-19 23:19:35.049 1000 FEE 431997 7986 6005580 2024-02-19 23:21:01.366 2024-02-19 23:21:01.366 1000 FEE 431999 18068 6005609 2024-02-19 23:28:22.855 2024-02-19 23:28:22.855 100 FEE 431989 16667 6005610 2024-02-19 23:28:22.855 2024-02-19 23:28:22.855 900 TIP 431989 20337 6005619 2024-02-19 23:29:32.135 2024-02-19 23:29:32.135 12800 FEE 431187 1195 6005620 2024-02-19 23:29:32.135 2024-02-19 23:29:32.135 115200 TIP 431187 2077 6005621 2024-02-19 23:29:34.887 2024-02-19 23:29:34.887 1000 FEE 432005 1658 6005622 2024-02-19 23:29:40.793 2024-02-19 23:29:40.793 90000 FEE 431401 19292 6005623 2024-02-19 23:29:40.793 2024-02-19 23:29:40.793 810000 TIP 431401 21166 6005667 2024-02-19 23:36:02.607 2024-02-19 23:36:02.607 400 FEE 432008 21275 6005668 2024-02-19 23:36:02.607 2024-02-19 23:36:02.607 3600 TIP 432008 19987 6005670 2024-02-19 23:36:23.051 2024-02-19 23:36:23.051 1000 FEE 432012 12291 6005691 2024-02-19 23:40:05.488 2024-02-19 23:40:05.488 1000 FEE 432017 891 6005727 2024-02-19 23:45:37.781 2024-02-19 23:45:37.781 2100 FEE 432014 17707 6005728 2024-02-19 23:45:37.781 2024-02-19 23:45:37.781 18900 TIP 432014 20891 6005733 2024-02-19 23:46:04.339 2024-02-19 23:46:04.339 1000 STREAM 141924 19154 6005735 2024-02-19 23:46:05.913 2024-02-19 23:46:05.913 12800 FEE 432003 15938 6005736 2024-02-19 23:46:05.913 2024-02-19 23:46:05.913 115200 TIP 432003 9350 6005744 2024-02-19 23:47:04.316 2024-02-19 23:47:04.316 1000 STREAM 141924 11423 6005745 2024-02-19 23:48:04.32 2024-02-19 23:48:04.32 1000 STREAM 141924 5725 6005749 2024-02-19 23:49:04.321 2024-02-19 23:49:04.321 1000 STREAM 141924 18832 6005754 2024-02-19 23:50:04.326 2024-02-19 23:50:04.326 1000 STREAM 141924 20454 6005758 2024-02-19 23:50:52.105 2024-02-19 23:50:52.105 900 FEE 432030 18819 6005759 2024-02-19 23:50:52.105 2024-02-19 23:50:52.105 8100 TIP 432030 11648 6005764 2024-02-19 23:51:04.324 2024-02-19 23:51:04.324 1000 STREAM 141924 2061 6005765 2024-02-19 23:51:22.971 2024-02-19 23:51:22.971 12800 FEE 179891 3396 6005766 2024-02-19 23:51:22.971 2024-02-19 23:51:22.971 115200 TIP 179891 21571 6005777 2024-02-19 23:52:04.328 2024-02-19 23:52:04.328 1000 STREAM 141924 18280 6005793 2024-02-19 23:53:04.342 2024-02-19 23:53:04.342 1000 STREAM 141924 20246 6005796 2024-02-19 23:53:24.063 2024-02-19 23:53:24.063 1000 FEE 432035 19639 6005806 2024-02-19 23:54:04.339 2024-02-19 23:54:04.339 1000 STREAM 141924 12218 6005820 2024-02-19 23:55:04.352 2024-02-19 23:55:04.352 1000 STREAM 141924 3709 6005821 2024-02-19 23:55:11.481 2024-02-19 23:55:11.481 700 FEE 432027 17001 6005822 2024-02-19 23:55:11.481 2024-02-19 23:55:11.481 6300 TIP 432027 19153 6005828 2024-02-19 23:56:04.34 2024-02-19 23:56:04.34 1000 STREAM 141924 20778 6005837 2024-02-19 23:57:04.357 2024-02-19 23:57:04.357 1000 STREAM 141924 19795 6005843 2024-02-19 23:58:04.357 2024-02-19 23:58:04.357 1000 STREAM 141924 21603 6005846 2024-02-19 23:59:04.352 2024-02-19 23:59:04.352 1000 STREAM 141924 16250 6005853 2024-02-19 23:59:34.639 2024-02-19 23:59:34.639 2300 FEE 432032 629 6005854 2024-02-19 23:59:34.639 2024-02-19 23:59:34.639 20700 TIP 432032 4415 6005861 2024-02-19 23:59:38.782 2024-02-19 23:59:38.782 2300 FEE 432031 4776 6005862 2024-02-19 23:59:38.782 2024-02-19 23:59:38.782 20700 TIP 432031 16830 6005867 2024-02-19 23:59:43.732 2024-02-19 23:59:43.732 2300 FEE 431896 993 6005868 2024-02-19 23:59:43.732 2024-02-19 23:59:43.732 20700 TIP 431896 9820 6005877 2024-02-19 23:59:44.941 2024-02-19 23:59:44.941 2300 FEE 431896 17592 6005878 2024-02-19 23:59:44.941 2024-02-19 23:59:44.941 20700 TIP 431896 14080 6005901 2024-02-20 00:00:01.95 2024-02-20 00:00:01.95 2300 FEE 431956 10311 6005902 2024-02-20 00:00:01.95 2024-02-20 00:00:01.95 20700 TIP 431956 9348 6005903 2024-02-20 00:00:02.073 2024-02-20 00:00:02.073 2300 FEE 431956 9347 6005904 2024-02-20 00:00:02.073 2024-02-20 00:00:02.073 20700 TIP 431956 19174 6005907 2024-02-20 00:00:04.367 2024-02-20 00:00:04.367 1000 STREAM 141924 18601 6005918 2024-02-20 00:00:06.73 2024-02-20 00:00:06.73 2300 FEE 432025 6765 6005919 2024-02-20 00:00:06.73 2024-02-20 00:00:06.73 20700 TIP 432025 17517 6005964 2024-02-20 00:00:37.441 2024-02-20 00:00:37.441 2300 FEE 431896 21281 6005965 2024-02-20 00:00:37.441 2024-02-20 00:00:37.441 20700 TIP 431896 720 6005978 2024-02-20 00:00:40.656 2024-02-20 00:00:40.656 2300 FEE 431894 1092 6005979 2024-02-20 00:00:40.656 2024-02-20 00:00:40.656 20700 TIP 431894 11328 6005988 2024-02-20 00:00:42.516 2024-02-20 00:00:42.516 2300 FEE 431864 20603 6005989 2024-02-20 00:00:42.516 2024-02-20 00:00:42.516 20700 TIP 431864 8423 6005994 2024-02-20 00:01:04.454 2024-02-20 00:01:04.454 1000 STREAM 141924 13599 6006007 2024-02-20 00:01:06.804 2024-02-20 00:01:06.804 2300 FEE 431854 18321 6006008 2024-02-20 00:01:06.804 2024-02-20 00:01:06.804 20700 TIP 431854 3504 6006009 2024-02-20 00:01:11.465 2024-02-20 00:01:11.465 2300 FEE 431998 5828 6006010 2024-02-20 00:01:11.465 2024-02-20 00:01:11.465 20700 TIP 431998 12708 6006022 2024-02-20 00:01:12.808 2024-02-20 00:01:12.808 2300 FEE 431998 4079 6006023 2024-02-20 00:01:12.808 2024-02-20 00:01:12.808 20700 TIP 431998 19810 6006042 2024-02-20 00:02:04.365 2024-02-20 00:02:04.365 1000 STREAM 141924 20376 6006046 2024-02-20 00:03:04.377 2024-02-20 00:03:04.377 1000 STREAM 141924 21026 6006048 2024-02-20 00:04:04.389 2024-02-20 00:04:04.389 1000 STREAM 141924 2576 6006056 2024-02-20 00:05:04.391 2024-02-20 00:05:04.391 1000 STREAM 141924 20562 6006057 2024-02-20 00:05:16.807 2024-02-20 00:05:16.807 5000 FEE 431904 2596 6006058 2024-02-20 00:05:16.807 2024-02-20 00:05:16.807 45000 TIP 431904 9482 6006067 2024-02-20 00:06:04.387 2024-02-20 00:06:04.387 1000 STREAM 141924 5565 6006068 2024-02-20 00:06:04.498 2024-02-20 00:06:04.498 5000 FEE 431915 633 6006069 2024-02-20 00:06:04.498 2024-02-20 00:06:04.498 45000 TIP 431915 6688 6006078 2024-02-20 00:07:04.404 2024-02-20 00:07:04.404 1000 STREAM 141924 19375 6006082 2024-02-20 00:08:04.409 2024-02-20 00:08:04.409 1000 STREAM 141924 19664 6006083 2024-02-20 00:09:04.525 2024-02-20 00:09:04.525 1000 STREAM 141924 13055 6006088 2024-02-20 00:10:04.422 2024-02-20 00:10:04.422 1000 STREAM 141924 1534 6006089 2024-02-20 00:11:04.426 2024-02-20 00:11:04.426 1000 STREAM 141924 15521 6006093 2024-02-20 00:11:59.777 2024-02-20 00:11:59.777 100 FEE 431146 27 6006094 2024-02-20 00:11:59.777 2024-02-20 00:11:59.777 900 TIP 431146 5455 6006111 2024-02-20 00:12:04.521 2024-02-20 00:12:04.521 1000 STREAM 141924 14280 6006112 2024-02-20 00:13:04.512 2024-02-20 00:13:04.512 1000 STREAM 141924 21577 6006124 2024-02-20 00:14:04.42 2024-02-20 00:14:04.42 1000 STREAM 141924 16124 6006130 2024-02-20 00:15:04.428 2024-02-20 00:15:04.428 1000 STREAM 141924 3544 6006135 2024-02-20 00:16:04.423 2024-02-20 00:16:04.423 1000 STREAM 141924 21091 6006136 2024-02-20 00:17:04.444 2024-02-20 00:17:04.444 1000 STREAM 141924 1394 6006138 2024-02-20 00:18:04.429 2024-02-20 00:18:04.429 1000 STREAM 141924 15690 6006139 2024-02-20 00:18:30.73 2024-02-20 00:18:30.73 1000 FEE 430997 5637 6006140 2024-02-20 00:18:30.73 2024-02-20 00:18:30.73 9000 TIP 430997 20099 6006144 2024-02-20 00:19:04.423 2024-02-20 00:19:04.423 1000 STREAM 141924 18188 6006145 2024-02-20 00:20:04.426 2024-02-20 00:20:04.426 1000 STREAM 141924 827 6006148 2024-02-20 00:21:04.422 2024-02-20 00:21:04.422 1000 STREAM 141924 21061 6006153 2024-02-20 00:21:24.075 2024-02-20 00:21:24.075 9000 FEE 431938 1064 6006154 2024-02-20 00:21:24.075 2024-02-20 00:21:24.075 81000 TIP 431938 3377 6006155 2024-02-20 00:22:04.426 2024-02-20 00:22:04.426 1000 STREAM 141924 7746 6006157 2024-02-20 00:23:04.426 2024-02-20 00:23:04.426 1000 STREAM 141924 3745 6006158 2024-02-20 00:24:04.444 2024-02-20 00:24:04.444 1000 STREAM 141924 4388 6006159 2024-02-20 00:25:04.433 2024-02-20 00:25:04.433 1000 STREAM 141924 10934 6006164 2024-02-20 00:26:04.473 2024-02-20 00:26:04.473 1000 STREAM 141924 657 6006165 2024-02-20 00:27:04.512 2024-02-20 00:27:04.512 1000 STREAM 141924 15161 6006166 2024-02-20 00:28:04.515 2024-02-20 00:28:04.515 1000 STREAM 141924 19633 6005751 2024-02-19 23:49:22.514 2024-02-19 23:49:22.514 4000 FEE 432028 16830 6005752 2024-02-19 23:49:22.514 2024-02-19 23:49:22.514 36000 TIP 432028 13076 6005780 2024-02-19 23:52:17.746 2024-02-19 23:52:17.746 1000 FEE 431864 20754 6005781 2024-02-19 23:52:17.746 2024-02-19 23:52:17.746 9000 TIP 431864 17707 6005782 2024-02-19 23:52:26.485 2024-02-19 23:52:26.485 1000 FEE 431893 2195 6005783 2024-02-19 23:52:26.485 2024-02-19 23:52:26.485 9000 TIP 431893 18470 6005786 2024-02-19 23:52:34.645 2024-02-19 23:52:34.645 4000 FEE 431918 20179 6005787 2024-02-19 23:52:34.645 2024-02-19 23:52:34.645 36000 TIP 431918 19815 6005788 2024-02-19 23:52:38.313 2024-02-19 23:52:38.313 1000 FEE 431858 7913 6005789 2024-02-19 23:52:38.313 2024-02-19 23:52:38.313 9000 TIP 431858 17639 6005817 2024-02-19 23:54:41.621 2024-02-19 23:54:41.621 1000 FEE 432022 11999 6005818 2024-02-19 23:54:41.621 2024-02-19 23:54:41.621 9000 TIP 432022 1136 6005871 2024-02-19 23:59:43.867 2024-02-19 23:59:43.867 2300 FEE 431896 11038 6005872 2024-02-19 23:59:43.867 2024-02-19 23:59:43.867 20700 TIP 431896 19036 6005891 2024-02-19 23:59:55.376 2024-02-19 23:59:55.376 2300 FEE 431965 11038 6005892 2024-02-19 23:59:55.376 2024-02-19 23:59:55.376 20700 TIP 431965 17217 6005908 2024-02-20 00:00:05.354 2024-02-20 00:00:05.354 2300 FEE 432025 5761 6005909 2024-02-20 00:00:05.354 2024-02-20 00:00:05.354 20700 TIP 432025 8168 6005954 2024-02-20 00:00:14.843 2024-02-20 00:00:14.843 2300 FEE 432022 617 6005955 2024-02-20 00:00:14.843 2024-02-20 00:00:14.843 20700 TIP 432022 3304 6005968 2024-02-20 00:00:37.806 2024-02-20 00:00:37.806 2300 FEE 431896 12562 6005969 2024-02-20 00:00:37.806 2024-02-20 00:00:37.806 20700 TIP 431896 12268 6006013 2024-02-20 00:01:11.593 2024-02-20 00:01:11.593 1000 FEE 432041 20657 6006034 2024-02-20 00:01:17.1 2024-02-20 00:01:17.1 2300 FEE 431998 16653 6006035 2024-02-20 00:01:17.1 2024-02-20 00:01:17.1 20700 TIP 431998 21079 6006036 2024-02-20 00:01:18.057 2024-02-20 00:01:18.057 2300 FEE 431998 6058 6006037 2024-02-20 00:01:18.057 2024-02-20 00:01:18.057 20700 TIP 431998 749 6006043 2024-02-20 00:02:23.244 2024-02-20 00:02:23.244 100000 FEE 432042 10270 6006064 2024-02-20 00:05:49.687 2024-02-20 00:05:49.687 5000 FEE 431844 14213 6006065 2024-02-20 00:05:49.687 2024-02-20 00:05:49.687 45000 TIP 431844 15594 6006086 2024-02-20 00:09:55.06 2024-02-20 00:09:55.06 5000 FEE 430984 19189 6006087 2024-02-20 00:09:55.06 2024-02-20 00:09:55.06 45000 TIP 430984 16194 6006097 2024-02-20 00:12:00.618 2024-02-20 00:12:00.618 100 FEE 431146 14910 6006098 2024-02-20 00:12:00.618 2024-02-20 00:12:00.618 900 TIP 431146 4692 6006099 2024-02-20 00:12:00.789 2024-02-20 00:12:00.789 200 FEE 431146 19569 6006100 2024-02-20 00:12:00.789 2024-02-20 00:12:00.789 1800 TIP 431146 17030 6006101 2024-02-20 00:12:00.806 2024-02-20 00:12:00.806 100 FEE 431146 20246 6006102 2024-02-20 00:12:00.806 2024-02-20 00:12:00.806 900 TIP 431146 5752 6006141 2024-02-20 00:18:39.632 2024-02-20 00:18:39.632 1000 FEE 432053 18862 6006146 2024-02-20 00:20:24.048 2024-02-20 00:20:24.048 1000 FEE 432054 5487 6006147 2024-02-20 00:20:50.809 2024-02-20 00:20:50.809 0 FEE 432054 19967 6006192 2024-02-20 00:33:58.605 2024-02-20 00:33:58.605 2100 FEE 432057 761 6006193 2024-02-20 00:33:58.605 2024-02-20 00:33:58.605 18900 TIP 432057 1726 6006197 2024-02-20 00:34:41.334 2024-02-20 00:34:41.334 0 FEE 432061 2029 6006202 2024-02-20 00:36:05.889 2024-02-20 00:36:05.889 1000 FEE 432065 9378 6006222 2024-02-20 00:40:36.977 2024-02-20 00:40:36.977 1000 FEE 432068 8059 6006226 2024-02-20 00:41:16.132 2024-02-20 00:41:16.132 0 FEE 432068 2213 6006227 2024-02-20 00:41:46.756 2024-02-20 00:41:46.756 0 FEE 432068 1326 6006231 2024-02-20 00:42:52.812 2024-02-20 00:42:52.812 2100 FEE 432052 19031 6006232 2024-02-20 00:42:52.812 2024-02-20 00:42:52.812 18900 TIP 432052 18640 6006261 2024-02-20 01:02:00.333 2024-02-20 01:02:00.333 2300 FEE 432047 21520 6006262 2024-02-20 01:02:00.333 2024-02-20 01:02:00.333 20700 TIP 432047 20751 6006263 2024-02-20 01:02:00.575 2024-02-20 01:02:00.575 2300 FEE 432047 1729 6006264 2024-02-20 01:02:00.575 2024-02-20 01:02:00.575 20700 TIP 432047 18714 6006285 2024-02-20 01:05:52.614 2024-02-20 01:05:52.614 1000 FEE 431918 13587 6006286 2024-02-20 01:05:52.614 2024-02-20 01:05:52.614 9000 TIP 431918 20183 6006288 2024-02-20 01:06:08.538 2024-02-20 01:06:08.538 1000 FEE 432073 16747 6006304 2024-02-20 01:11:54.492 2024-02-20 01:11:54.492 1000 FEE 432076 9177 6006324 2024-02-20 01:17:14.811 2024-02-20 01:17:14.811 0 FEE 432075 17042 6006333 2024-02-20 01:22:03.93 2024-02-20 01:22:03.93 1000 FEE 431298 14651 6006334 2024-02-20 01:22:03.93 2024-02-20 01:22:03.93 9000 TIP 431298 20646 6006342 2024-02-20 01:22:05.172 2024-02-20 01:22:05.172 1000 FEE 431298 1512 6006343 2024-02-20 01:22:05.172 2024-02-20 01:22:05.172 9000 TIP 431298 9695 6006364 2024-02-20 01:22:07.761 2024-02-20 01:22:07.761 1000 FEE 431298 9438 6006365 2024-02-20 01:22:07.761 2024-02-20 01:22:07.761 9000 TIP 431298 20738 6006376 2024-02-20 01:22:09.518 2024-02-20 01:22:09.518 1000 FEE 431298 20495 6006377 2024-02-20 01:22:09.518 2024-02-20 01:22:09.518 9000 TIP 431298 5828 6006388 2024-02-20 01:22:10.725 2024-02-20 01:22:10.725 1000 FEE 431298 21281 6006389 2024-02-20 01:22:10.725 2024-02-20 01:22:10.725 9000 TIP 431298 15728 6006404 2024-02-20 01:22:12.206 2024-02-20 01:22:12.206 1000 FEE 431298 16052 6006405 2024-02-20 01:22:12.206 2024-02-20 01:22:12.206 9000 TIP 431298 9242 6006416 2024-02-20 01:22:15.916 2024-02-20 01:22:15.916 1000 FEE 431298 14213 6006417 2024-02-20 01:22:15.916 2024-02-20 01:22:15.916 9000 TIP 431298 5701 6006432 2024-02-20 01:22:19.063 2024-02-20 01:22:19.063 1000 FEE 431298 919 6006433 2024-02-20 01:22:19.063 2024-02-20 01:22:19.063 9000 TIP 431298 18664 6006464 2024-02-20 01:22:22.629 2024-02-20 01:22:22.629 1000 FEE 431298 18274 6006465 2024-02-20 01:22:22.629 2024-02-20 01:22:22.629 9000 TIP 431298 8448 6006474 2024-02-20 01:22:23.626 2024-02-20 01:22:23.626 1000 FEE 431298 3371 6006475 2024-02-20 01:22:23.626 2024-02-20 01:22:23.626 9000 TIP 431298 1652 6006488 2024-02-20 01:22:25.259 2024-02-20 01:22:25.259 1000 FEE 431298 15282 6006489 2024-02-20 01:22:25.259 2024-02-20 01:22:25.259 9000 TIP 431298 9366 6006502 2024-02-20 01:22:28.544 2024-02-20 01:22:28.544 1000 FEE 431298 20596 6006503 2024-02-20 01:22:28.544 2024-02-20 01:22:28.544 9000 TIP 431298 825 6006504 2024-02-20 01:22:28.71 2024-02-20 01:22:28.71 1000 FEE 431298 21218 6006505 2024-02-20 01:22:28.71 2024-02-20 01:22:28.71 9000 TIP 431298 17673 6006506 2024-02-20 01:22:28.959 2024-02-20 01:22:28.959 1000 FEE 431298 18473 6006507 2024-02-20 01:22:28.959 2024-02-20 01:22:28.959 9000 TIP 431298 18892 6006508 2024-02-20 01:22:29.206 2024-02-20 01:22:29.206 1000 FEE 431298 20811 6006509 2024-02-20 01:22:29.206 2024-02-20 01:22:29.206 9000 TIP 431298 14225 6006516 2024-02-20 01:22:30.57 2024-02-20 01:22:30.57 1000 FEE 431298 4624 6006517 2024-02-20 01:22:30.57 2024-02-20 01:22:30.57 9000 TIP 431298 621 6006530 2024-02-20 01:22:32.967 2024-02-20 01:22:32.967 2000 FEE 431298 1465 6006531 2024-02-20 01:22:32.967 2024-02-20 01:22:32.967 18000 TIP 431298 20470 6006544 2024-02-20 01:22:35.269 2024-02-20 01:22:35.269 1000 FEE 431298 11515 6006545 2024-02-20 01:22:35.269 2024-02-20 01:22:35.269 9000 TIP 431298 664 6006558 2024-02-20 01:22:38.841 2024-02-20 01:22:38.841 1000 FEE 431298 19381 6006559 2024-02-20 01:22:38.841 2024-02-20 01:22:38.841 9000 TIP 431298 21262 6006560 2024-02-20 01:22:39.038 2024-02-20 01:22:39.038 1000 FEE 431298 19938 6006561 2024-02-20 01:22:39.038 2024-02-20 01:22:39.038 9000 TIP 431298 17682 6006572 2024-02-20 01:22:40.447 2024-02-20 01:22:40.447 1000 FEE 431298 20701 6006573 2024-02-20 01:22:40.447 2024-02-20 01:22:40.447 9000 TIP 431298 20243 6006582 2024-02-20 01:22:42.376 2024-02-20 01:22:42.376 1000 FEE 431298 20102 6006583 2024-02-20 01:22:42.376 2024-02-20 01:22:42.376 9000 TIP 431298 18932 6006586 2024-02-20 01:22:42.747 2024-02-20 01:22:42.747 1000 FEE 431298 1090 6006587 2024-02-20 01:22:42.747 2024-02-20 01:22:42.747 9000 TIP 431298 5171 6006594 2024-02-20 01:22:43.686 2024-02-20 01:22:43.686 1000 FEE 431298 16432 6006595 2024-02-20 01:22:43.686 2024-02-20 01:22:43.686 9000 TIP 431298 2583 6005959 2024-02-20 00:00:15.203 2024-02-20 00:00:15.203 20700 TIP 432022 2829 6006024 2024-02-20 00:01:13.484 2024-02-20 00:01:13.484 2300 FEE 431998 9982 6006025 2024-02-20 00:01:13.484 2024-02-20 00:01:13.484 20700 TIP 431998 17011 6006028 2024-02-20 00:01:16.672 2024-02-20 00:01:16.672 2300 FEE 431998 11329 6006029 2024-02-20 00:01:16.672 2024-02-20 00:01:16.672 20700 TIP 431998 5806 6006047 2024-02-20 00:03:58.623 2024-02-20 00:03:58.623 1000 FEE 432045 20681 6006049 2024-02-20 00:04:43.703 2024-02-20 00:04:43.703 1000 FEE 432046 20287 6006052 2024-02-20 00:04:47.974 2024-02-20 00:04:47.974 5000 FEE 431800 1307 6006053 2024-02-20 00:04:47.974 2024-02-20 00:04:47.974 45000 TIP 431800 19036 6006072 2024-02-20 00:06:24.097 2024-02-20 00:06:24.097 1000 FEE 431830 20912 6006073 2024-02-20 00:06:24.097 2024-02-20 00:06:24.097 9000 TIP 431830 701 6006076 2024-02-20 00:07:01.277 2024-02-20 00:07:01.277 5000 FEE 430503 960 6006077 2024-02-20 00:07:01.277 2024-02-20 00:07:01.277 45000 TIP 430503 4175 6006103 2024-02-20 00:12:00.871 2024-02-20 00:12:00.871 100 FEE 431146 9833 6006104 2024-02-20 00:12:00.871 2024-02-20 00:12:00.871 900 TIP 431146 10102 6006120 2024-02-20 00:13:51.661 2024-02-20 00:13:51.661 1000 FEE 430593 14247 6006121 2024-02-20 00:13:51.661 2024-02-20 00:13:51.661 9000 TIP 430593 7903 6006137 2024-02-20 00:17:17.537 2024-02-20 00:17:17.537 100000 FEE 432052 18743 6006156 2024-02-20 00:23:01.757 2024-02-20 00:23:01.757 1000 FEE 432055 20683 6006169 2024-02-20 00:28:20.349 2024-02-20 00:28:20.349 900 FEE 432003 8508 6006170 2024-02-20 00:28:20.349 2024-02-20 00:28:20.349 8100 TIP 432003 12422 6006173 2024-02-20 00:29:30.723 2024-02-20 00:29:30.723 1000 FEE 432057 20504 6006184 2024-02-20 00:32:00.069 2024-02-20 00:32:00.069 5000 FEE 432060 19333 6006199 2024-02-20 00:35:52.643 2024-02-20 00:35:52.643 2100 FEE 432007 980 6006200 2024-02-20 00:35:52.643 2024-02-20 00:35:52.643 18900 TIP 432007 7869 6006217 2024-02-20 00:39:57.795 2024-02-20 00:39:57.795 900 FEE 432060 21455 6006218 2024-02-20 00:39:57.795 2024-02-20 00:39:57.795 8100 TIP 432060 21612 6006310 2024-02-20 01:12:56.91 2024-02-20 01:12:56.91 0 FEE 432075 11378 6006320 2024-02-20 01:16:55.344 2024-02-20 01:16:55.344 10000 FEE 430247 15978 6006321 2024-02-20 01:16:55.344 2024-02-20 01:16:55.344 90000 TIP 430247 10342 6006335 2024-02-20 01:22:04.338 2024-02-20 01:22:04.338 1000 FEE 431298 3377 6006336 2024-02-20 01:22:04.338 2024-02-20 01:22:04.338 9000 TIP 431298 20246 6006344 2024-02-20 01:22:05.368 2024-02-20 01:22:05.368 1000 FEE 431298 4487 6006345 2024-02-20 01:22:05.368 2024-02-20 01:22:05.368 9000 TIP 431298 16347 6006360 2024-02-20 01:22:07.358 2024-02-20 01:22:07.358 1000 FEE 431298 3656 6006361 2024-02-20 01:22:07.358 2024-02-20 01:22:07.358 9000 TIP 431298 18618 6006384 2024-02-20 01:22:10.326 2024-02-20 01:22:10.326 1000 FEE 431298 21369 6006385 2024-02-20 01:22:10.326 2024-02-20 01:22:10.326 9000 TIP 431298 989 6006410 2024-02-20 01:22:14.021 2024-02-20 01:22:14.021 1000 FEE 431298 21589 6006411 2024-02-20 01:22:14.021 2024-02-20 01:22:14.021 9000 TIP 431298 4062 6006418 2024-02-20 01:22:16.213 2024-02-20 01:22:16.213 1000 FEE 431298 19303 6006419 2024-02-20 01:22:16.213 2024-02-20 01:22:16.213 9000 TIP 431298 3461 6006442 2024-02-20 01:22:20.473 2024-02-20 01:22:20.473 1000 FEE 431298 9816 6006443 2024-02-20 01:22:20.473 2024-02-20 01:22:20.473 9000 TIP 431298 20430 6006448 2024-02-20 01:22:21.064 2024-02-20 01:22:21.064 1000 FEE 431298 4126 6006449 2024-02-20 01:22:21.064 2024-02-20 01:22:21.064 9000 TIP 431298 12561 6006466 2024-02-20 01:22:22.799 2024-02-20 01:22:22.799 1000 FEE 431298 9551 6006467 2024-02-20 01:22:22.799 2024-02-20 01:22:22.799 9000 TIP 431298 20243 6006522 2024-02-20 01:22:31.125 2024-02-20 01:22:31.125 1000 FEE 431298 9356 6006523 2024-02-20 01:22:31.125 2024-02-20 01:22:31.125 9000 TIP 431298 18170 6006524 2024-02-20 01:22:32.138 2024-02-20 01:22:32.138 1000 FEE 431298 15196 6006525 2024-02-20 01:22:32.138 2024-02-20 01:22:32.138 9000 TIP 431298 16410 6006526 2024-02-20 01:22:32.177 2024-02-20 01:22:32.177 1000 FEE 431298 4102 6006527 2024-02-20 01:22:32.177 2024-02-20 01:22:32.177 9000 TIP 431298 16724 6006536 2024-02-20 01:22:33.47 2024-02-20 01:22:33.47 1000 FEE 431298 19507 6006537 2024-02-20 01:22:33.47 2024-02-20 01:22:33.47 9000 TIP 431298 9334 6006554 2024-02-20 01:22:38.341 2024-02-20 01:22:38.341 1000 FEE 431298 8380 6006555 2024-02-20 01:22:38.341 2024-02-20 01:22:38.341 9000 TIP 431298 6382 6006584 2024-02-20 01:22:42.568 2024-02-20 01:22:42.568 1000 FEE 431298 20776 6006585 2024-02-20 01:22:42.568 2024-02-20 01:22:42.568 9000 TIP 431298 766 6006604 2024-02-20 01:22:44.645 2024-02-20 01:22:44.645 1000 FEE 431298 5377 6006605 2024-02-20 01:22:44.645 2024-02-20 01:22:44.645 9000 TIP 431298 7960 6006610 2024-02-20 01:22:51.881 2024-02-20 01:22:51.881 500000 FEE 431298 11288 6006611 2024-02-20 01:22:51.881 2024-02-20 01:22:51.881 4500000 TIP 431298 15719 6006617 2024-02-20 01:23:38.686 2024-02-20 01:23:38.686 1000 FEE 430149 685 6006618 2024-02-20 01:23:38.686 2024-02-20 01:23:38.686 9000 TIP 430149 1890 6006641 2024-02-20 01:23:42.121 2024-02-20 01:23:42.121 1000 FEE 430885 1534 6006642 2024-02-20 01:23:42.121 2024-02-20 01:23:42.121 9000 TIP 430885 13046 6006643 2024-02-20 01:23:42.309 2024-02-20 01:23:42.309 1000 FEE 430885 1717 6006644 2024-02-20 01:23:42.309 2024-02-20 01:23:42.309 9000 TIP 430885 21578 6006661 2024-02-20 01:23:46.206 2024-02-20 01:23:46.206 1000 FEE 430149 759 6006662 2024-02-20 01:23:46.206 2024-02-20 01:23:46.206 9000 TIP 430149 9183 6006679 2024-02-20 01:24:13.488 2024-02-20 01:24:13.488 1000 FEE 430885 21424 6006680 2024-02-20 01:24:13.488 2024-02-20 01:24:13.488 9000 TIP 430885 964 6006705 2024-02-20 01:27:29.889 2024-02-20 01:27:29.889 2100 FEE 430819 18904 6006706 2024-02-20 01:27:29.889 2024-02-20 01:27:29.889 18900 TIP 430819 7992 6006745 2024-02-20 01:38:04.075 2024-02-20 01:38:04.075 6900 FEE 430984 11798 6006746 2024-02-20 01:38:04.075 2024-02-20 01:38:04.075 62100 TIP 430984 20120 6006749 2024-02-20 01:38:04.732 2024-02-20 01:38:04.732 2300 FEE 430984 20026 6006750 2024-02-20 01:38:04.732 2024-02-20 01:38:04.732 20700 TIP 430984 11491 6006751 2024-02-20 01:38:05.218 2024-02-20 01:38:05.218 2300 FEE 430984 20816 6006752 2024-02-20 01:38:05.218 2024-02-20 01:38:05.218 20700 TIP 430984 678 6006763 2024-02-20 01:38:06.463 2024-02-20 01:38:06.463 2300 FEE 430984 5171 6006764 2024-02-20 01:38:06.463 2024-02-20 01:38:06.463 20700 TIP 430984 8045 6006799 2024-02-20 01:40:19.323 2024-02-20 01:40:19.323 1000 FEE 432086 10728 6006807 2024-02-20 01:44:11.816 2024-02-20 01:44:11.816 400 FEE 432071 19471 6006808 2024-02-20 01:44:11.816 2024-02-20 01:44:11.816 3600 TIP 432071 4322 6006809 2024-02-20 01:44:19.102 2024-02-20 01:44:19.102 400 FEE 432063 2774 6006810 2024-02-20 01:44:19.102 2024-02-20 01:44:19.102 3600 TIP 432063 17030 6006827 2024-02-20 01:49:00.85 2024-02-20 01:49:00.85 10000 FEE 431816 6688 6006828 2024-02-20 01:49:00.85 2024-02-20 01:49:00.85 90000 TIP 431816 18658 6006867 2024-02-20 01:51:28.762 2024-02-20 01:51:28.762 8300 FEE 432008 18116 6006868 2024-02-20 01:51:28.762 2024-02-20 01:51:28.762 74700 TIP 432008 1354 6006883 2024-02-20 01:52:29.314 2024-02-20 01:52:29.314 9000 FEE 430892 1354 6006884 2024-02-20 01:52:29.314 2024-02-20 01:52:29.314 81000 TIP 430892 14213 6006888 2024-02-20 01:53:08.992 2024-02-20 01:53:08.992 900 FEE 432088 18452 6006889 2024-02-20 01:53:08.992 2024-02-20 01:53:08.992 8100 TIP 432088 9421 6006894 2024-02-20 01:53:22.535 2024-02-20 01:53:22.535 8300 FEE 432003 7558 6006895 2024-02-20 01:53:22.535 2024-02-20 01:53:22.535 74700 TIP 432003 5500 6006921 2024-02-20 01:53:40.363 2024-02-20 01:53:40.363 8300 FEE 432063 1769 6006922 2024-02-20 01:53:40.363 2024-02-20 01:53:40.363 74700 TIP 432063 679 6006937 2024-02-20 01:53:46.651 2024-02-20 01:53:46.651 8300 FEE 432063 1584 6006938 2024-02-20 01:53:46.651 2024-02-20 01:53:46.651 74700 TIP 432063 980 6006944 2024-02-20 01:55:02.362 2024-02-20 01:55:02.362 0 FEE 405202 659 6006946 2024-02-20 01:55:23.408 2024-02-20 01:55:23.408 0 FEE 405202 9796 6006971 2024-02-20 02:04:23.124 2024-02-20 02:04:23.124 8300 FEE 432085 2322 6006972 2024-02-20 02:04:23.124 2024-02-20 02:04:23.124 74700 TIP 432085 2022 6006039 2024-02-20 00:01:18.206 2024-02-20 00:01:18.206 20700 TIP 431998 2077 6006066 2024-02-20 00:05:55.342 2024-02-20 00:05:55.342 1000 FEE 432048 692 6006074 2024-02-20 00:06:59.856 2024-02-20 00:06:59.856 5000 FEE 430510 18412 6006075 2024-02-20 00:06:59.856 2024-02-20 00:06:59.856 45000 TIP 430510 11819 6006079 2024-02-20 00:07:06.896 2024-02-20 00:07:06.896 1000 FEE 432049 9874 6006133 2024-02-20 00:15:51.73 2024-02-20 00:15:51.73 2100 FEE 421805 11164 6006134 2024-02-20 00:15:51.73 2024-02-20 00:15:51.73 18900 TIP 421805 994 6006176 2024-02-20 00:29:51.122 2024-02-20 00:29:51.122 900 FEE 432042 12965 6006177 2024-02-20 00:29:51.122 2024-02-20 00:29:51.122 8100 TIP 432042 9109 6006182 2024-02-20 00:31:26.544 2024-02-20 00:31:26.544 2100 FEE 432052 21104 6006183 2024-02-20 00:31:26.544 2024-02-20 00:31:26.544 18900 TIP 432052 646 6006189 2024-02-20 00:33:29.484 2024-02-20 00:33:29.484 1000 FEE 432061 684 6006195 2024-02-20 00:34:25.345 2024-02-20 00:34:25.345 2100 FEE 432002 20310 6006196 2024-02-20 00:34:25.345 2024-02-20 00:34:25.345 18900 TIP 432002 3461 6006206 2024-02-20 00:37:31.78 2024-02-20 00:37:31.78 10000 FEE 432066 959 6006229 2024-02-20 00:42:12.446 2024-02-20 00:42:12.446 2100 FEE 431598 6382 6006230 2024-02-20 00:42:12.446 2024-02-20 00:42:12.446 18900 TIP 431598 20655 6006254 2024-02-20 00:56:10.832 2024-02-20 00:56:10.832 1000 FEE 432069 20246 6006271 2024-02-20 01:02:02.172 2024-02-20 01:02:02.172 2300 FEE 432047 21387 6006272 2024-02-20 01:02:02.172 2024-02-20 01:02:02.172 20700 TIP 432047 19906 6006279 2024-02-20 01:03:38.47 2024-02-20 01:03:38.47 1000 FEE 432057 19524 6006280 2024-02-20 01:03:38.47 2024-02-20 01:03:38.47 9000 TIP 432057 722 6006297 2024-02-20 01:08:36.965 2024-02-20 01:08:36.965 1000 FEE 432074 19533 6006301 2024-02-20 01:10:44.326 2024-02-20 01:10:44.326 0 FEE 432075 18473 6006306 2024-02-20 01:12:05.245 2024-02-20 01:12:05.245 1000 FEE 432077 2780 6006323 2024-02-20 01:17:04.15 2024-02-20 01:17:04.15 1000 FEE 432082 18717 6006337 2024-02-20 01:22:04.682 2024-02-20 01:22:04.682 1000 FEE 431298 15408 6006338 2024-02-20 01:22:04.682 2024-02-20 01:22:04.682 9000 TIP 431298 21481 6006368 2024-02-20 01:22:08.164 2024-02-20 01:22:08.164 1000 FEE 431298 12356 6006369 2024-02-20 01:22:08.164 2024-02-20 01:22:08.164 9000 TIP 431298 4027 6006374 2024-02-20 01:22:09.245 2024-02-20 01:22:09.245 1000 FEE 431298 20502 6006375 2024-02-20 01:22:09.245 2024-02-20 01:22:09.245 9000 TIP 431298 19773 6006382 2024-02-20 01:22:10.132 2024-02-20 01:22:10.132 1000 FEE 431298 19033 6006383 2024-02-20 01:22:10.132 2024-02-20 01:22:10.132 9000 TIP 431298 20554 6006390 2024-02-20 01:22:10.907 2024-02-20 01:22:10.907 1000 FEE 431298 21527 6006391 2024-02-20 01:22:10.907 2024-02-20 01:22:10.907 9000 TIP 431298 19375 6006406 2024-02-20 01:22:13.317 2024-02-20 01:22:13.317 1000 FEE 431298 16839 6006407 2024-02-20 01:22:13.317 2024-02-20 01:22:13.317 9000 TIP 431298 18230 6006426 2024-02-20 01:22:18.394 2024-02-20 01:22:18.394 1000 FEE 431298 1352 6006427 2024-02-20 01:22:18.394 2024-02-20 01:22:18.394 9000 TIP 431298 2224 6006482 2024-02-20 01:22:24.656 2024-02-20 01:22:24.656 1000 FEE 431298 20624 6006483 2024-02-20 01:22:24.656 2024-02-20 01:22:24.656 9000 TIP 431298 21469 6006490 2024-02-20 01:22:25.478 2024-02-20 01:22:25.478 1000 FEE 431298 7891 6006491 2024-02-20 01:22:25.478 2024-02-20 01:22:25.478 9000 TIP 431298 9362 6006528 2024-02-20 01:22:32.263 2024-02-20 01:22:32.263 1000 FEE 431298 15159 6006529 2024-02-20 01:22:32.263 2024-02-20 01:22:32.263 9000 TIP 431298 5160 6006540 2024-02-20 01:22:33.932 2024-02-20 01:22:33.932 1000 FEE 431298 12272 6006541 2024-02-20 01:22:33.932 2024-02-20 01:22:33.932 9000 TIP 431298 18994 6006576 2024-02-20 01:22:41.173 2024-02-20 01:22:41.173 1000 FEE 431298 657 6006577 2024-02-20 01:22:41.173 2024-02-20 01:22:41.173 9000 TIP 431298 1488 6006598 2024-02-20 01:22:44.046 2024-02-20 01:22:44.046 1000 FEE 431298 10096 6006599 2024-02-20 01:22:44.046 2024-02-20 01:22:44.046 9000 TIP 431298 20972 6006608 2024-02-20 01:22:45.065 2024-02-20 01:22:45.065 1000 FEE 431298 17535 6006609 2024-02-20 01:22:45.065 2024-02-20 01:22:45.065 9000 TIP 431298 641 6006621 2024-02-20 01:23:40.149 2024-02-20 01:23:40.149 1000 FEE 430885 20514 6006622 2024-02-20 01:23:40.149 2024-02-20 01:23:40.149 9000 TIP 430885 7654 6006633 2024-02-20 01:23:41.217 2024-02-20 01:23:41.217 1000 FEE 430885 2111 6006634 2024-02-20 01:23:41.217 2024-02-20 01:23:41.217 9000 TIP 430885 16424 6006637 2024-02-20 01:23:41.733 2024-02-20 01:23:41.733 1000 FEE 430885 1221 6006638 2024-02-20 01:23:41.733 2024-02-20 01:23:41.733 9000 TIP 430885 20310 6006651 2024-02-20 01:23:43.181 2024-02-20 01:23:43.181 1000 FEE 430885 21349 6006652 2024-02-20 01:23:43.181 2024-02-20 01:23:43.181 9000 TIP 430885 2576 6006653 2024-02-20 01:23:43.357 2024-02-20 01:23:43.357 1000 FEE 430885 18533 6006654 2024-02-20 01:23:43.357 2024-02-20 01:23:43.357 9000 TIP 430885 1611 6006655 2024-02-20 01:23:43.535 2024-02-20 01:23:43.535 1000 FEE 430885 19044 6006656 2024-02-20 01:23:43.535 2024-02-20 01:23:43.535 9000 TIP 430885 20636 6006657 2024-02-20 01:23:45.841 2024-02-20 01:23:45.841 1000 FEE 430149 20681 6006658 2024-02-20 01:23:45.841 2024-02-20 01:23:45.841 9000 TIP 430149 19813 6006675 2024-02-20 01:24:13.212 2024-02-20 01:24:13.212 1000 FEE 430885 13249 6006676 2024-02-20 01:24:13.212 2024-02-20 01:24:13.212 9000 TIP 430885 828 6006689 2024-02-20 01:24:15.443 2024-02-20 01:24:15.443 1000 FEE 430885 827 6006690 2024-02-20 01:24:15.443 2024-02-20 01:24:15.443 9000 TIP 430885 12139 6006691 2024-02-20 01:24:23.599 2024-02-20 01:24:23.599 2500 FEE 432055 19615 6006692 2024-02-20 01:24:23.599 2024-02-20 01:24:23.599 22500 TIP 432055 1505 6006718 2024-02-20 01:33:35.38 2024-02-20 01:33:35.38 2100 FEE 431809 20799 6006719 2024-02-20 01:33:35.38 2024-02-20 01:33:35.38 18900 TIP 431809 21555 6006736 2024-02-20 01:37:12.734 2024-02-20 01:37:12.734 2300 FEE 432077 1577 6006737 2024-02-20 01:37:12.734 2024-02-20 01:37:12.734 20700 TIP 432077 21339 6006738 2024-02-20 01:37:12.877 2024-02-20 01:37:12.877 2300 FEE 432077 16665 6006739 2024-02-20 01:37:12.877 2024-02-20 01:37:12.877 20700 TIP 432077 18409 6006747 2024-02-20 01:38:04.173 2024-02-20 01:38:04.173 2300 FEE 430984 19638 6006748 2024-02-20 01:38:04.173 2024-02-20 01:38:04.173 20700 TIP 430984 2293 6006759 2024-02-20 01:38:05.9 2024-02-20 01:38:05.9 2300 FEE 430984 17331 6006760 2024-02-20 01:38:05.9 2024-02-20 01:38:05.9 20700 TIP 430984 1286 6006767 2024-02-20 01:38:07.081 2024-02-20 01:38:07.081 2300 FEE 430984 10519 6006768 2024-02-20 01:38:07.081 2024-02-20 01:38:07.081 20700 TIP 430984 9992 6006803 2024-02-20 01:43:11.484 2024-02-20 01:43:11.484 100000 FEE 432087 12291 6006804 2024-02-20 01:43:46.044 2024-02-20 01:43:46.044 21000 FEE 432088 14225 6006811 2024-02-20 01:44:20.475 2024-02-20 01:44:20.475 400 FEE 432057 18932 6006812 2024-02-20 01:44:20.475 2024-02-20 01:44:20.475 3600 TIP 432057 2203 6006833 2024-02-20 01:50:25.944 2024-02-20 01:50:25.944 8300 FEE 431864 13759 6006834 2024-02-20 01:50:25.944 2024-02-20 01:50:25.944 74700 TIP 431864 21207 6006835 2024-02-20 01:50:28.492 2024-02-20 01:50:28.492 0 FEE 432087 13132 6006836 2024-02-20 01:50:29.713 2024-02-20 01:50:29.713 8300 FEE 432025 10981 6006837 2024-02-20 01:50:29.713 2024-02-20 01:50:29.713 74700 TIP 432025 15719 6006842 2024-02-20 01:50:34.306 2024-02-20 01:50:34.306 8300 FEE 432080 14688 6006843 2024-02-20 01:50:34.306 2024-02-20 01:50:34.306 74700 TIP 432080 17707 6006861 2024-02-20 01:51:17.299 2024-02-20 01:51:17.299 8300 FEE 431926 696 6006862 2024-02-20 01:51:17.299 2024-02-20 01:51:17.299 74700 TIP 431926 16543 6006919 2024-02-20 01:53:35.409 2024-02-20 01:53:35.409 8300 FEE 432057 11516 6006920 2024-02-20 01:53:35.409 2024-02-20 01:53:35.409 74700 TIP 432057 20588 6006931 2024-02-20 01:53:42.565 2024-02-20 01:53:42.565 8300 FEE 432029 669 6006932 2024-02-20 01:53:42.565 2024-02-20 01:53:42.565 74700 TIP 432029 11288 6006933 2024-02-20 01:53:43.71 2024-02-20 01:53:43.71 8300 FEE 432029 8648 6006934 2024-02-20 01:53:43.71 2024-02-20 01:53:43.71 74700 TIP 432029 6688 6006947 2024-02-20 01:55:41.552 2024-02-20 01:55:41.552 0 FEE 405202 2444 6006969 2024-02-20 02:04:22.89 2024-02-20 02:04:22.89 8300 FEE 432085 21242 6006117 2024-02-20 00:13:34.693 2024-02-20 00:13:34.693 45000 TIP 431855 20479 6006118 2024-02-20 00:13:37.696 2024-02-20 00:13:37.696 400 FEE 432041 16296 6006119 2024-02-20 00:13:37.696 2024-02-20 00:13:37.696 3600 TIP 432041 15577 6006125 2024-02-20 00:14:33.783 2024-02-20 00:14:33.783 5000 FEE 431856 2961 6006126 2024-02-20 00:14:33.783 2024-02-20 00:14:33.783 45000 TIP 431856 695 6006174 2024-02-20 00:29:50.921 2024-02-20 00:29:50.921 100 FEE 432042 1624 6006175 2024-02-20 00:29:50.921 2024-02-20 00:29:50.921 900 TIP 432042 7673 6006208 2024-02-20 00:38:22.828 2024-02-20 00:38:22.828 0 FEE 432066 14247 6006210 2024-02-20 00:39:06.63 2024-02-20 00:39:06.63 12800 FEE 430854 19016 6006211 2024-02-20 00:39:06.63 2024-02-20 00:39:06.63 115200 TIP 430854 20911 6006265 2024-02-20 01:02:00.761 2024-02-20 01:02:00.761 4600 FEE 432047 5057 6006266 2024-02-20 01:02:00.761 2024-02-20 01:02:00.761 41400 TIP 432047 10981 6006278 2024-02-20 01:03:16.12 2024-02-20 01:03:16.12 1000 FEE 432072 2056 6006283 2024-02-20 01:05:43.725 2024-02-20 01:05:43.725 10000 FEE 431844 16769 6006284 2024-02-20 01:05:43.725 2024-02-20 01:05:43.725 90000 TIP 431844 2088 6006289 2024-02-20 01:07:00.83 2024-02-20 01:07:00.83 2100 FEE 431918 13553 6006290 2024-02-20 01:07:00.83 2024-02-20 01:07:00.83 18900 TIP 431918 13574 6006352 2024-02-20 01:22:06.107 2024-02-20 01:22:06.107 1000 FEE 431298 14795 6006353 2024-02-20 01:22:06.107 2024-02-20 01:22:06.107 9000 TIP 431298 14663 6006356 2024-02-20 01:22:06.799 2024-02-20 01:22:06.799 1000 FEE 431298 19398 6006357 2024-02-20 01:22:06.799 2024-02-20 01:22:06.799 9000 TIP 431298 1120 6006378 2024-02-20 01:22:09.735 2024-02-20 01:22:09.735 1000 FEE 431298 13544 6006379 2024-02-20 01:22:09.735 2024-02-20 01:22:09.735 9000 TIP 431298 15045 6006380 2024-02-20 01:22:09.931 2024-02-20 01:22:09.931 1000 FEE 431298 895 6006381 2024-02-20 01:22:09.931 2024-02-20 01:22:09.931 9000 TIP 431298 20588 6006392 2024-02-20 01:22:11.093 2024-02-20 01:22:11.093 1000 FEE 431298 15536 6006393 2024-02-20 01:22:11.093 2024-02-20 01:22:11.093 9000 TIP 431298 14258 6006408 2024-02-20 01:22:13.796 2024-02-20 01:22:13.796 1000 FEE 431298 20117 6006409 2024-02-20 01:22:13.796 2024-02-20 01:22:13.796 9000 TIP 431298 3347 6006444 2024-02-20 01:22:20.667 2024-02-20 01:22:20.667 1000 FEE 431298 17953 6006445 2024-02-20 01:22:20.667 2024-02-20 01:22:20.667 9000 TIP 431298 10586 6006454 2024-02-20 01:22:21.607 2024-02-20 01:22:21.607 1000 FEE 431298 632 6006455 2024-02-20 01:22:21.607 2024-02-20 01:22:21.607 9000 TIP 431298 7847 6006500 2024-02-20 01:22:27.956 2024-02-20 01:22:27.956 1000 FEE 431298 17094 6006501 2024-02-20 01:22:27.956 2024-02-20 01:22:27.956 9000 TIP 431298 17171 6006556 2024-02-20 01:22:38.66 2024-02-20 01:22:38.66 1000 FEE 431298 4128 6006557 2024-02-20 01:22:38.66 2024-02-20 01:22:38.66 9000 TIP 431298 5904 6006562 2024-02-20 01:22:39.203 2024-02-20 01:22:39.203 1000 FEE 431298 17171 6006563 2024-02-20 01:22:39.203 2024-02-20 01:22:39.203 9000 TIP 431298 21061 6006564 2024-02-20 01:22:39.409 2024-02-20 01:22:39.409 1000 FEE 431298 16513 6006565 2024-02-20 01:22:39.409 2024-02-20 01:22:39.409 9000 TIP 431298 20370 6006568 2024-02-20 01:22:40.013 2024-02-20 01:22:40.013 1000 FEE 431298 21352 6006569 2024-02-20 01:22:40.013 2024-02-20 01:22:40.013 9000 TIP 431298 21254 6006574 2024-02-20 01:22:40.58 2024-02-20 01:22:40.58 1000 FEE 431298 20596 6006575 2024-02-20 01:22:40.58 2024-02-20 01:22:40.58 9000 TIP 431298 17275 6006600 2024-02-20 01:22:44.251 2024-02-20 01:22:44.251 1000 FEE 431298 15386 6006601 2024-02-20 01:22:44.251 2024-02-20 01:22:44.251 9000 TIP 431298 21271 6006615 2024-02-20 01:23:38.515 2024-02-20 01:23:38.515 1000 FEE 430149 21207 6006616 2024-02-20 01:23:38.515 2024-02-20 01:23:38.515 9000 TIP 430149 1320 6006623 2024-02-20 01:23:40.345 2024-02-20 01:23:40.345 1000 FEE 430885 9099 6006624 2024-02-20 01:23:40.345 2024-02-20 01:23:40.345 9000 TIP 430885 5112 6006685 2024-02-20 01:24:15.023 2024-02-20 01:24:15.023 1000 FEE 430885 19839 6006686 2024-02-20 01:24:15.023 2024-02-20 01:24:15.023 9000 TIP 430885 19837 6006701 2024-02-20 01:25:34.409 2024-02-20 01:25:34.409 1000 FEE 432003 13987 6006702 2024-02-20 01:25:34.409 2024-02-20 01:25:34.409 9000 TIP 432003 18751 6006708 2024-02-20 01:28:11.516 2024-02-20 01:28:11.516 1000 DONT_LIKE_THIS 430820 1237 6006753 2024-02-20 01:38:05.35 2024-02-20 01:38:05.35 2300 FEE 430984 18040 6006754 2024-02-20 01:38:05.35 2024-02-20 01:38:05.35 20700 TIP 430984 21263 6006765 2024-02-20 01:38:06.982 2024-02-20 01:38:06.982 2300 FEE 430984 7510 6006766 2024-02-20 01:38:06.982 2024-02-20 01:38:06.982 20700 TIP 430984 18583 6006769 2024-02-20 01:38:07.316 2024-02-20 01:38:07.316 2300 FEE 430984 8242 6006770 2024-02-20 01:38:07.316 2024-02-20 01:38:07.316 20700 TIP 430984 1489 6006771 2024-02-20 01:38:21.806 2024-02-20 01:38:21.806 2300 FEE 431854 14552 6006772 2024-02-20 01:38:21.806 2024-02-20 01:38:21.806 20700 TIP 431854 5085 6006777 2024-02-20 01:38:25.136 2024-02-20 01:38:25.136 2300 FEE 432022 19930 6006778 2024-02-20 01:38:25.136 2024-02-20 01:38:25.136 20700 TIP 432022 5794 6006789 2024-02-20 01:38:52.674 2024-02-20 01:38:52.674 1100 FEE 413112 5036 6006790 2024-02-20 01:38:52.674 2024-02-20 01:38:52.674 9900 TIP 413112 3504 6006792 2024-02-20 01:39:40.935 2024-02-20 01:39:40.935 1000 FEE 431926 7418 6006793 2024-02-20 01:39:40.935 2024-02-20 01:39:40.935 9000 TIP 431926 20871 6006796 2024-02-20 01:39:56.643 2024-02-20 01:39:56.643 1000 FEE 432074 9356 6006797 2024-02-20 01:39:56.643 2024-02-20 01:39:56.643 9000 TIP 432074 20137 6006852 2024-02-20 01:50:51.709 2024-02-20 01:50:51.709 8300 FEE 431952 19501 6006853 2024-02-20 01:50:51.709 2024-02-20 01:50:51.709 74700 TIP 431952 886 6006856 2024-02-20 01:50:53.111 2024-02-20 01:50:53.111 8300 FEE 432031 13781 6006857 2024-02-20 01:50:53.111 2024-02-20 01:50:53.111 74700 TIP 432031 622 6006863 2024-02-20 01:51:28.387 2024-02-20 01:51:28.387 8300 FEE 432008 940 6006864 2024-02-20 01:51:28.387 2024-02-20 01:51:28.387 74700 TIP 432008 2061 6006873 2024-02-20 01:51:39.791 2024-02-20 01:51:39.791 1100 FEE 431844 2757 6006874 2024-02-20 01:51:39.791 2024-02-20 01:51:39.791 9900 TIP 431844 21509 6006911 2024-02-20 01:53:33.054 2024-02-20 01:53:33.054 8300 FEE 432029 886 6006912 2024-02-20 01:53:33.054 2024-02-20 01:53:33.054 74700 TIP 432029 8095 6007018 2024-02-20 02:16:17.592 2024-02-20 02:16:17.592 1000 FEE 432091 8954 6007019 2024-02-20 02:16:17.592 2024-02-20 02:16:17.592 9000 TIP 432091 739 6007035 2024-02-20 02:17:24.541 2024-02-20 02:17:24.541 1000 FEE 432088 20987 6007036 2024-02-20 02:17:24.541 2024-02-20 02:17:24.541 9000 TIP 432088 716 6007044 2024-02-20 02:20:38.75 2024-02-20 02:20:38.75 800 FEE 427551 1773 6007045 2024-02-20 02:20:38.75 2024-02-20 02:20:38.75 7200 TIP 427551 4654 6007046 2024-02-20 02:20:38.915 2024-02-20 02:20:38.915 800 FEE 427551 20108 6007047 2024-02-20 02:20:38.915 2024-02-20 02:20:38.915 7200 TIP 427551 11819 6007061 2024-02-20 02:21:23.504 2024-02-20 02:21:23.504 800 FEE 420785 16485 6007062 2024-02-20 02:21:23.504 2024-02-20 02:21:23.504 7200 TIP 420785 18819 6007073 2024-02-20 02:21:24.527 2024-02-20 02:21:24.527 800 FEE 420785 2703 6007074 2024-02-20 02:21:24.527 2024-02-20 02:21:24.527 7200 TIP 420785 1567 6007077 2024-02-20 02:22:13.541 2024-02-20 02:22:13.541 500 FEE 430861 641 6007078 2024-02-20 02:22:13.541 2024-02-20 02:22:13.541 4500 TIP 430861 5519 6007111 2024-02-20 02:23:14.322 2024-02-20 02:23:14.322 500 FEE 430872 20562 6007112 2024-02-20 02:23:14.322 2024-02-20 02:23:14.322 4500 TIP 430872 16912 6007113 2024-02-20 02:23:14.568 2024-02-20 02:23:14.568 500 FEE 430872 16788 6007114 2024-02-20 02:23:14.568 2024-02-20 02:23:14.568 4500 TIP 430872 708 6007115 2024-02-20 02:23:14.76 2024-02-20 02:23:14.76 500 FEE 430872 20084 6007116 2024-02-20 02:23:14.76 2024-02-20 02:23:14.76 4500 TIP 430872 19352 6007117 2024-02-20 02:23:14.929 2024-02-20 02:23:14.929 500 FEE 430872 10063 6007118 2024-02-20 02:23:14.929 2024-02-20 02:23:14.929 4500 TIP 430872 9916 6007121 2024-02-20 02:23:30.902 2024-02-20 02:23:30.902 500 FEE 430569 21172 6007122 2024-02-20 02:23:30.902 2024-02-20 02:23:30.902 4500 TIP 430569 641 6007129 2024-02-20 02:27:03.153 2024-02-20 02:27:03.153 2100 FEE 431401 12049 6006172 2024-02-20 00:29:04.438 2024-02-20 00:29:04.438 1000 STREAM 141924 18640 6006185 2024-02-20 00:32:04.433 2024-02-20 00:32:04.433 1000 STREAM 141924 19096 6006178 2024-02-20 00:30:04.453 2024-02-20 00:30:04.453 1000 STREAM 141924 20225 6006181 2024-02-20 00:31:04.442 2024-02-20 00:31:04.442 1000 STREAM 141924 1039 6006339 2024-02-20 01:22:04.695 2024-02-20 01:22:04.695 1000 STREAM 141924 756 6006703 2024-02-20 01:26:04.711 2024-02-20 01:26:04.711 1000 STREAM 141924 998 6006191 2024-02-20 00:33:43.662 2024-02-20 00:33:43.662 1000 FEE 432063 18837 6006194 2024-02-20 00:34:03.288 2024-02-20 00:34:03.288 1000 STREAM 141924 21247 6006198 2024-02-20 00:35:03.307 2024-02-20 00:35:03.307 1000 STREAM 141924 956 6006203 2024-02-20 00:36:35.236 2024-02-20 00:36:35.236 2100 FEE 431994 17365 6006204 2024-02-20 00:36:35.236 2024-02-20 00:36:35.236 18900 TIP 431994 9438 6006205 2024-02-20 00:37:03.329 2024-02-20 00:37:03.329 1000 STREAM 141924 9200 6006209 2024-02-20 00:39:03.313 2024-02-20 00:39:03.313 1000 STREAM 141924 959 6006221 2024-02-20 00:40:03.461 2024-02-20 00:40:03.461 1000 STREAM 141924 17944 6006225 2024-02-20 00:41:03.352 2024-02-20 00:41:03.352 1000 STREAM 141924 20452 6006233 2024-02-20 00:43:03.393 2024-02-20 00:43:03.393 1000 STREAM 141924 2039 6006234 2024-02-20 00:43:21.075 2024-02-20 00:43:21.075 2100 FEE 432056 9349 6006235 2024-02-20 00:43:21.075 2024-02-20 00:43:21.075 18900 TIP 432056 20376 6006236 2024-02-20 00:44:03.393 2024-02-20 00:44:03.393 1000 STREAM 141924 18815 6006237 2024-02-20 00:44:08.971 2024-02-20 00:44:08.971 0 FEE 432068 7998 6006239 2024-02-20 00:44:49.701 2024-02-20 00:44:49.701 2100 FEE 431862 19943 6006240 2024-02-20 00:44:49.701 2024-02-20 00:44:49.701 18900 TIP 431862 20376 6006242 2024-02-20 00:46:03.403 2024-02-20 00:46:03.403 1000 STREAM 141924 2829 6006245 2024-02-20 00:49:03.403 2024-02-20 00:49:03.403 1000 STREAM 141924 8569 6006246 2024-02-20 00:50:03.53 2024-02-20 00:50:03.53 1000 STREAM 141924 10056 6006248 2024-02-20 00:52:03.419 2024-02-20 00:52:03.419 1000 STREAM 141924 1772 6006250 2024-02-20 00:53:37.42 2024-02-20 00:53:37.42 100000 DONT_LIKE_THIS 431959 5757 6006252 2024-02-20 00:55:03.437 2024-02-20 00:55:03.437 1000 STREAM 141924 9655 6006256 2024-02-20 00:58:03.442 2024-02-20 00:58:03.442 1000 STREAM 141924 749 6006260 2024-02-20 01:01:03.461 2024-02-20 01:01:03.461 1000 STREAM 141924 17638 6006269 2024-02-20 01:02:02.091 2024-02-20 01:02:02.091 4600 FEE 432047 20058 6006270 2024-02-20 01:02:02.091 2024-02-20 01:02:02.091 41400 TIP 432047 19105 6006273 2024-02-20 01:02:03.47 2024-02-20 01:02:03.47 1000 STREAM 141924 18608 6006281 2024-02-20 01:04:03.482 2024-02-20 01:04:03.482 1000 STREAM 141924 17707 6006282 2024-02-20 01:05:03.491 2024-02-20 01:05:03.491 1000 STREAM 141924 11378 6006287 2024-02-20 01:06:03.484 2024-02-20 01:06:03.484 1000 STREAM 141924 14152 6006296 2024-02-20 01:08:03.503 2024-02-20 01:08:03.503 1000 STREAM 141924 675 6006299 2024-02-20 01:10:03.524 2024-02-20 01:10:03.524 1000 STREAM 141924 1577 6006303 2024-02-20 01:11:29.495 2024-02-20 01:11:29.495 0 FEE 432075 15890 6006305 2024-02-20 01:12:03.52 2024-02-20 01:12:03.52 1000 STREAM 141924 1673 6006307 2024-02-20 01:12:44.658 2024-02-20 01:12:44.658 0 FEE 432075 685 6006311 2024-02-20 01:13:03.519 2024-02-20 01:13:03.519 1000 STREAM 141924 2327 6006313 2024-02-20 01:14:18.322 2024-02-20 01:14:18.322 1000 FEE 432080 20301 6006318 2024-02-20 01:16:03.531 2024-02-20 01:16:03.531 1000 STREAM 141924 20187 6006319 2024-02-20 01:16:43.406 2024-02-20 01:16:43.406 0 FEE 432075 9816 6006322 2024-02-20 01:17:03.538 2024-02-20 01:17:03.538 1000 STREAM 141924 12609 6006370 2024-02-20 01:22:08.445 2024-02-20 01:22:08.445 1000 FEE 431298 15510 6006371 2024-02-20 01:22:08.445 2024-02-20 01:22:08.445 9000 TIP 431298 1047 6006394 2024-02-20 01:22:11.27 2024-02-20 01:22:11.27 1000 FEE 431298 2710 6006395 2024-02-20 01:22:11.27 2024-02-20 01:22:11.27 9000 TIP 431298 696 6006402 2024-02-20 01:22:11.999 2024-02-20 01:22:11.999 1000 FEE 431298 759 6006403 2024-02-20 01:22:11.999 2024-02-20 01:22:11.999 9000 TIP 431298 7659 6006420 2024-02-20 01:22:17.092 2024-02-20 01:22:17.092 1000 FEE 431298 1401 6006421 2024-02-20 01:22:17.092 2024-02-20 01:22:17.092 9000 TIP 431298 20596 6006428 2024-02-20 01:22:18.561 2024-02-20 01:22:18.561 1000 FEE 431298 642 6006429 2024-02-20 01:22:18.561 2024-02-20 01:22:18.561 9000 TIP 431298 14015 6006430 2024-02-20 01:22:18.849 2024-02-20 01:22:18.849 1000 FEE 431298 18178 6006431 2024-02-20 01:22:18.849 2024-02-20 01:22:18.849 9000 TIP 431298 19813 6006460 2024-02-20 01:22:22.209 2024-02-20 01:22:22.209 1000 FEE 431298 14472 6006461 2024-02-20 01:22:22.209 2024-02-20 01:22:22.209 9000 TIP 431298 1617 6006470 2024-02-20 01:22:23.216 2024-02-20 01:22:23.216 1000 FEE 431298 18470 6006471 2024-02-20 01:22:23.216 2024-02-20 01:22:23.216 9000 TIP 431298 1354 6006512 2024-02-20 01:22:29.593 2024-02-20 01:22:29.593 1000 FEE 431298 17798 6006513 2024-02-20 01:22:29.593 2024-02-20 01:22:29.593 9000 TIP 431298 795 6006514 2024-02-20 01:22:29.809 2024-02-20 01:22:29.809 1000 FEE 431298 15719 6006515 2024-02-20 01:22:29.809 2024-02-20 01:22:29.809 9000 TIP 431298 1720 6006518 2024-02-20 01:22:30.759 2024-02-20 01:22:30.759 1000 FEE 431298 1534 6006519 2024-02-20 01:22:30.759 2024-02-20 01:22:30.759 9000 TIP 431298 20523 6006520 2024-02-20 01:22:30.938 2024-02-20 01:22:30.938 1000 FEE 431298 4292 6006521 2024-02-20 01:22:30.938 2024-02-20 01:22:30.938 9000 TIP 431298 17095 6006534 2024-02-20 01:22:33.218 2024-02-20 01:22:33.218 1000 FEE 431298 21527 6006535 2024-02-20 01:22:33.218 2024-02-20 01:22:33.218 9000 TIP 431298 3440 6006546 2024-02-20 01:22:35.451 2024-02-20 01:22:35.451 1000 FEE 431298 12819 6006547 2024-02-20 01:22:35.451 2024-02-20 01:22:35.451 9000 TIP 431298 21138 6006570 2024-02-20 01:22:40.247 2024-02-20 01:22:40.247 1000 FEE 431298 19117 6006571 2024-02-20 01:22:40.247 2024-02-20 01:22:40.247 9000 TIP 431298 18178 6006578 2024-02-20 01:22:41.4 2024-02-20 01:22:41.4 1000 FEE 431298 18529 6006579 2024-02-20 01:22:41.4 2024-02-20 01:22:41.4 9000 TIP 431298 1272 6006580 2024-02-20 01:22:41.597 2024-02-20 01:22:41.597 1000 FEE 431298 18321 6006581 2024-02-20 01:22:41.597 2024-02-20 01:22:41.597 9000 TIP 431298 21395 6006596 2024-02-20 01:22:43.865 2024-02-20 01:22:43.865 1000 FEE 431298 4259 6006597 2024-02-20 01:22:43.865 2024-02-20 01:22:43.865 9000 TIP 431298 8416 6006614 2024-02-20 01:23:35.535 2024-02-20 01:23:35.535 1000 FEE 432083 5661 6006627 2024-02-20 01:23:40.779 2024-02-20 01:23:40.779 1000 FEE 430885 13587 6006628 2024-02-20 01:23:40.779 2024-02-20 01:23:40.779 9000 TIP 430885 1162 6006639 2024-02-20 01:23:41.97 2024-02-20 01:23:41.97 1000 FEE 430885 12139 6006640 2024-02-20 01:23:41.97 2024-02-20 01:23:41.97 9000 TIP 430885 20585 6006694 2024-02-20 01:24:29.783 2024-02-20 01:24:29.783 2500 FEE 432073 1474 6006695 2024-02-20 01:24:29.783 2024-02-20 01:24:29.783 22500 TIP 432073 12218 6006707 2024-02-20 01:28:03.749 2024-02-20 01:28:03.749 1000 STREAM 141924 7558 6006714 2024-02-20 01:32:03.819 2024-02-20 01:32:03.819 1000 STREAM 141924 9171 6006717 2024-02-20 01:33:03.845 2024-02-20 01:33:03.845 1000 STREAM 141924 15119 6006723 2024-02-20 01:35:03.868 2024-02-20 01:35:03.868 1000 STREAM 141924 14489 6006742 2024-02-20 01:37:13.144 2024-02-20 01:37:13.144 2300 FEE 432077 10771 6006743 2024-02-20 01:37:13.144 2024-02-20 01:37:13.144 20700 TIP 432077 736 6006744 2024-02-20 01:38:03.884 2024-02-20 01:38:03.884 1000 STREAM 141924 2614 6006773 2024-02-20 01:38:22.137 2024-02-20 01:38:22.137 2300 FEE 431854 1713 6006774 2024-02-20 01:38:22.137 2024-02-20 01:38:22.137 20700 TIP 431854 21228 6006787 2024-02-20 01:38:49.276 2024-02-20 01:38:49.276 4000 FEE 432062 831 6006788 2024-02-20 01:38:49.276 2024-02-20 01:38:49.276 36000 TIP 432062 623 6006798 2024-02-20 01:40:03.916 2024-02-20 01:40:03.916 1000 STREAM 141924 16954 6006801 2024-02-20 01:42:03.927 2024-02-20 01:42:03.927 1000 STREAM 141924 17713 6006806 2024-02-20 01:44:03.94 2024-02-20 01:44:03.94 1000 STREAM 141924 17727 6006815 2024-02-20 01:44:37.11 2024-02-20 01:44:37.11 0 FEE 405202 21233 6006823 2024-02-20 01:46:15.01 2024-02-20 01:46:15.01 0 FEE 432087 10273 6006825 2024-02-20 01:48:01.343 2024-02-20 01:48:01.343 0 FEE 432087 1493 6006826 2024-02-20 01:48:04.043 2024-02-20 01:48:04.043 1000 STREAM 141924 17316 6006829 2024-02-20 01:49:03.985 2024-02-20 01:49:03.985 1000 STREAM 141924 9421 6006832 2024-02-20 01:50:04.017 2024-02-20 01:50:04.017 1000 STREAM 141924 17227 6006838 2024-02-20 01:50:29.859 2024-02-20 01:50:29.859 8300 FEE 432025 11423 6006839 2024-02-20 01:50:29.859 2024-02-20 01:50:29.859 74700 TIP 432025 1401 6006846 2024-02-20 01:50:40.125 2024-02-20 01:50:40.125 8300 FEE 432077 12222 6006847 2024-02-20 01:50:40.125 2024-02-20 01:50:40.125 74700 TIP 432077 1480 6006238 2024-02-20 00:44:10.576 2024-02-20 00:44:10.576 100000 DONT_LIKE_THIS 432066 2322 6006274 2024-02-20 01:02:09.113 2024-02-20 01:02:09.113 1000 FEE 432071 12265 6006291 2024-02-20 01:07:01.01 2024-02-20 01:07:01.01 10000 FEE 431868 18231 6006292 2024-02-20 01:07:01.01 2024-02-20 01:07:01.01 90000 TIP 431868 1647 6006294 2024-02-20 01:07:05.971 2024-02-20 01:07:05.971 2100 FEE 431844 11144 6006295 2024-02-20 01:07:05.971 2024-02-20 01:07:05.971 18900 TIP 431844 9275 6006300 2024-02-20 01:10:11.471 2024-02-20 01:10:11.471 1000 FEE 432075 9332 6006308 2024-02-20 01:12:45.389 2024-02-20 01:12:45.389 10000 FEE 432078 16350 6006328 2024-02-20 01:20:16.798 2024-02-20 01:20:16.798 10000 FEE 430269 20906 6006329 2024-02-20 01:20:16.798 2024-02-20 01:20:16.798 90000 TIP 430269 20479 6006331 2024-02-20 01:22:03.021 2024-02-20 01:22:03.021 1000 FEE 431298 18629 6006332 2024-02-20 01:22:03.021 2024-02-20 01:22:03.021 9000 TIP 431298 4128 6006340 2024-02-20 01:22:04.948 2024-02-20 01:22:04.948 1000 FEE 431298 18932 6006341 2024-02-20 01:22:04.948 2024-02-20 01:22:04.948 9000 TIP 431298 1180 6006354 2024-02-20 01:22:06.274 2024-02-20 01:22:06.274 1000 FEE 431298 21427 6006355 2024-02-20 01:22:06.274 2024-02-20 01:22:06.274 9000 TIP 431298 640 6006366 2024-02-20 01:22:07.954 2024-02-20 01:22:07.954 1000 FEE 431298 624 6006367 2024-02-20 01:22:07.954 2024-02-20 01:22:07.954 9000 TIP 431298 999 6006414 2024-02-20 01:22:15.495 2024-02-20 01:22:15.495 1000 FEE 431298 16834 6006415 2024-02-20 01:22:15.495 2024-02-20 01:22:15.495 9000 TIP 431298 16834 6006436 2024-02-20 01:22:19.455 2024-02-20 01:22:19.455 1000 FEE 431298 18138 6006437 2024-02-20 01:22:19.455 2024-02-20 01:22:19.455 9000 TIP 431298 16753 6006458 2024-02-20 01:22:21.995 2024-02-20 01:22:21.995 1000 FEE 431298 15484 6006459 2024-02-20 01:22:21.995 2024-02-20 01:22:21.995 9000 TIP 431298 18460 6006472 2024-02-20 01:22:23.455 2024-02-20 01:22:23.455 1000 FEE 431298 15266 6006473 2024-02-20 01:22:23.455 2024-02-20 01:22:23.455 9000 TIP 431298 12024 6006476 2024-02-20 01:22:23.887 2024-02-20 01:22:23.887 1000 FEE 431298 13854 6006477 2024-02-20 01:22:23.887 2024-02-20 01:22:23.887 9000 TIP 431298 18076 6006480 2024-02-20 01:22:24.507 2024-02-20 01:22:24.507 1000 FEE 431298 12222 6006481 2024-02-20 01:22:24.507 2024-02-20 01:22:24.507 9000 TIP 431298 13097 6006496 2024-02-20 01:22:26.443 2024-02-20 01:22:26.443 1000 FEE 431298 18199 6006497 2024-02-20 01:22:26.443 2024-02-20 01:22:26.443 9000 TIP 431298 9334 6006538 2024-02-20 01:22:33.768 2024-02-20 01:22:33.768 2000 FEE 431298 19459 6006539 2024-02-20 01:22:33.768 2024-02-20 01:22:33.768 18000 TIP 431298 20912 6006542 2024-02-20 01:22:35.069 2024-02-20 01:22:35.069 1000 FEE 431298 8360 6006543 2024-02-20 01:22:35.069 2024-02-20 01:22:35.069 9000 TIP 431298 19465 6006548 2024-02-20 01:22:35.636 2024-02-20 01:22:35.636 1000 FEE 431298 14045 6006549 2024-02-20 01:22:35.636 2024-02-20 01:22:35.636 9000 TIP 431298 9844 6006588 2024-02-20 01:22:43.053 2024-02-20 01:22:43.053 1000 FEE 431298 12768 6006589 2024-02-20 01:22:43.053 2024-02-20 01:22:43.053 9000 TIP 431298 18816 6006602 2024-02-20 01:22:44.445 2024-02-20 01:22:44.445 1000 FEE 431298 9349 6006603 2024-02-20 01:22:44.445 2024-02-20 01:22:44.445 9000 TIP 431298 18919 6006663 2024-02-20 01:23:46.43 2024-02-20 01:23:46.43 1000 FEE 430149 798 6006664 2024-02-20 01:23:46.43 2024-02-20 01:23:46.43 9000 TIP 430149 21216 6006665 2024-02-20 01:23:46.56 2024-02-20 01:23:46.56 1000 FEE 430149 12516 6006666 2024-02-20 01:23:46.56 2024-02-20 01:23:46.56 9000 TIP 430149 730 6006670 2024-02-20 01:24:08.225 2024-02-20 01:24:08.225 1000 FEE 432084 981 6006693 2024-02-20 01:24:26.099 2024-02-20 01:24:26.099 100000 FEE 432085 2832 6006699 2024-02-20 01:25:34.166 2024-02-20 01:25:34.166 1000 FEE 432003 20539 6006700 2024-02-20 01:25:34.166 2024-02-20 01:25:34.166 9000 TIP 432003 6058 6006730 2024-02-20 01:37:06.495 2024-02-20 01:37:06.495 2300 FEE 432080 18675 6006731 2024-02-20 01:37:06.495 2024-02-20 01:37:06.495 20700 TIP 432080 9167 6006734 2024-02-20 01:37:07.561 2024-02-20 01:37:07.561 2300 FEE 432080 1465 6006735 2024-02-20 01:37:07.561 2024-02-20 01:37:07.561 20700 TIP 432080 3656 6006757 2024-02-20 01:38:05.736 2024-02-20 01:38:05.736 2300 FEE 430984 19668 6006758 2024-02-20 01:38:05.736 2024-02-20 01:38:05.736 20700 TIP 430984 18403 6006775 2024-02-20 01:38:22.514 2024-02-20 01:38:22.514 2300 FEE 431854 19566 6006776 2024-02-20 01:38:22.514 2024-02-20 01:38:22.514 20700 TIP 431854 21402 6006813 2024-02-20 01:44:23.855 2024-02-20 01:44:23.855 400 FEE 432056 5293 6006814 2024-02-20 01:44:23.855 2024-02-20 01:44:23.855 3600 TIP 432056 18892 6006840 2024-02-20 01:50:34.054 2024-02-20 01:50:34.054 8300 FEE 432080 16660 6006841 2024-02-20 01:50:34.054 2024-02-20 01:50:34.054 74700 TIP 432080 20258 6006844 2024-02-20 01:50:37.056 2024-02-20 01:50:37.056 8300 FEE 432077 17976 6006845 2024-02-20 01:50:37.056 2024-02-20 01:50:37.056 74700 TIP 432077 7587 6006877 2024-02-20 01:52:23.426 2024-02-20 01:52:23.426 100 FEE 432085 20674 6006878 2024-02-20 01:52:23.426 2024-02-20 01:52:23.426 900 TIP 432085 11516 6006886 2024-02-20 01:53:08.803 2024-02-20 01:53:08.803 100 FEE 432088 10862 6006887 2024-02-20 01:53:08.803 2024-02-20 01:53:08.803 900 TIP 432088 21061 6006907 2024-02-20 01:53:30.405 2024-02-20 01:53:30.405 8300 FEE 432063 1959 6006908 2024-02-20 01:53:30.405 2024-02-20 01:53:30.405 74700 TIP 432063 876 6006909 2024-02-20 01:53:32.844 2024-02-20 01:53:32.844 8300 FEE 432029 980 6006910 2024-02-20 01:53:32.844 2024-02-20 01:53:32.844 74700 TIP 432029 13198 6006917 2024-02-20 01:53:34.947 2024-02-20 01:53:34.947 8300 FEE 432057 19759 6006918 2024-02-20 01:53:34.947 2024-02-20 01:53:34.947 74700 TIP 432057 9348 6006935 2024-02-20 01:53:44.557 2024-02-20 01:53:44.557 8300 FEE 432029 19841 6006936 2024-02-20 01:53:44.557 2024-02-20 01:53:44.557 74700 TIP 432029 1552 6006958 2024-02-20 02:00:35.584 2024-02-20 02:00:35.584 2100 FEE 432091 18769 6006959 2024-02-20 02:00:35.584 2024-02-20 02:00:35.584 18900 TIP 432091 17602 6006967 2024-02-20 02:04:22.726 2024-02-20 02:04:22.726 8300 FEE 432085 12951 6006968 2024-02-20 02:04:22.726 2024-02-20 02:04:22.726 74700 TIP 432085 21563 6006986 2024-02-20 02:08:02.19 2024-02-20 02:08:02.19 400 FEE 432029 20554 6006987 2024-02-20 02:08:02.19 2024-02-20 02:08:02.19 3600 TIP 432029 18368 6006996 2024-02-20 02:12:33.29 2024-02-20 02:12:33.29 1000 FEE 431844 19910 6006997 2024-02-20 02:12:33.29 2024-02-20 02:12:33.29 9000 TIP 431844 16753 6007000 2024-02-20 02:13:11.305 2024-02-20 02:13:11.305 1000 FEE 431904 16998 6007001 2024-02-20 02:13:11.305 2024-02-20 02:13:11.305 9000 TIP 431904 17827 6007007 2024-02-20 02:14:48.975 2024-02-20 02:14:48.975 1000 FEE 432097 18274 6007016 2024-02-20 02:16:17.426 2024-02-20 02:16:17.426 1000 FEE 432091 6058 6007017 2024-02-20 02:16:17.426 2024-02-20 02:16:17.426 9000 TIP 432091 14818 6007063 2024-02-20 02:21:23.663 2024-02-20 02:21:23.663 800 FEE 420785 690 6007064 2024-02-20 02:21:23.663 2024-02-20 02:21:23.663 7200 TIP 420785 685 6007071 2024-02-20 02:21:24.407 2024-02-20 02:21:24.407 800 FEE 420785 3461 6007072 2024-02-20 02:21:24.407 2024-02-20 02:21:24.407 7200 TIP 420785 11873 6007081 2024-02-20 02:22:15.807 2024-02-20 02:22:15.807 500 FEE 430861 15806 6007082 2024-02-20 02:22:15.807 2024-02-20 02:22:15.807 4500 TIP 430861 19770 6007092 2024-02-20 02:22:46.785 2024-02-20 02:22:46.785 500 FEE 430626 5708 6007093 2024-02-20 02:22:46.785 2024-02-20 02:22:46.785 4500 TIP 430626 18659 6007094 2024-02-20 02:22:47.904 2024-02-20 02:22:47.904 500 FEE 430892 1650 6007095 2024-02-20 02:22:47.904 2024-02-20 02:22:47.904 4500 TIP 430892 19810 6007104 2024-02-20 02:22:57.802 2024-02-20 02:22:57.802 500 FEE 430771 1490 6007105 2024-02-20 02:22:57.802 2024-02-20 02:22:57.802 4500 TIP 430771 1577 6007119 2024-02-20 02:23:15.184 2024-02-20 02:23:15.184 500 FEE 430872 8059 6007120 2024-02-20 02:23:15.184 2024-02-20 02:23:15.184 4500 TIP 430872 12097 6007134 2024-02-20 02:27:46.681 2024-02-20 02:27:46.681 100 FEE 430958 2652 6007135 2024-02-20 02:27:46.681 2024-02-20 02:27:46.681 900 TIP 430958 15049 6007141 2024-02-20 02:30:43.609 2024-02-20 02:30:43.609 1000 FEE 432105 654 6007156 2024-02-20 02:31:55.928 2024-02-20 02:31:55.928 2100 FEE 432052 10979 6006267 2024-02-20 01:02:01.842 2024-02-20 01:02:01.842 2300 FEE 432047 4323 6006268 2024-02-20 01:02:01.842 2024-02-20 01:02:01.842 20700 TIP 432047 16424 6006275 2024-02-20 01:03:03.238 2024-02-20 01:03:03.238 1000 FEE 432003 1114 6006276 2024-02-20 01:03:03.238 2024-02-20 01:03:03.238 9000 TIP 432003 19449 6006309 2024-02-20 01:12:56.324 2024-02-20 01:12:56.324 1000 FEE 432079 635 6006315 2024-02-20 01:15:24.007 2024-02-20 01:15:24.007 1000 FEE 432081 19663 6006316 2024-02-20 01:15:53.701 2024-02-20 01:15:53.701 1000 FEE 431122 17639 6006317 2024-02-20 01:15:53.701 2024-02-20 01:15:53.701 9000 TIP 431122 21356 6006325 2024-02-20 01:18:05.106 2024-02-20 01:18:05.106 1000 STREAM 141924 19581 6006326 2024-02-20 01:19:05.075 2024-02-20 01:19:05.075 1000 STREAM 141924 21466 6006327 2024-02-20 01:20:05.134 2024-02-20 01:20:05.134 1000 STREAM 141924 5637 6006330 2024-02-20 01:21:05.106 2024-02-20 01:21:05.106 1000 STREAM 141924 6430 6006346 2024-02-20 01:22:05.541 2024-02-20 01:22:05.541 1000 FEE 431298 1272 6006347 2024-02-20 01:22:05.541 2024-02-20 01:22:05.541 9000 TIP 431298 9356 6006348 2024-02-20 01:22:05.732 2024-02-20 01:22:05.732 1000 FEE 431298 2709 6006349 2024-02-20 01:22:05.732 2024-02-20 01:22:05.732 9000 TIP 431298 21014 6006350 2024-02-20 01:22:05.924 2024-02-20 01:22:05.924 1000 FEE 431298 19524 6006351 2024-02-20 01:22:05.924 2024-02-20 01:22:05.924 9000 TIP 431298 19292 6006358 2024-02-20 01:22:06.968 2024-02-20 01:22:06.968 1000 FEE 431298 19038 6006359 2024-02-20 01:22:06.968 2024-02-20 01:22:06.968 9000 TIP 431298 7998 6006362 2024-02-20 01:22:07.56 2024-02-20 01:22:07.56 1000 FEE 431298 7983 6006363 2024-02-20 01:22:07.56 2024-02-20 01:22:07.56 9000 TIP 431298 9352 6006372 2024-02-20 01:22:08.745 2024-02-20 01:22:08.745 2000 FEE 431298 1046 6006373 2024-02-20 01:22:08.745 2024-02-20 01:22:08.745 18000 TIP 431298 2577 6006386 2024-02-20 01:22:10.645 2024-02-20 01:22:10.645 1000 FEE 431298 2327 6006387 2024-02-20 01:22:10.645 2024-02-20 01:22:10.645 9000 TIP 431298 4027 6006396 2024-02-20 01:22:11.444 2024-02-20 01:22:11.444 1000 FEE 431298 20674 6006397 2024-02-20 01:22:11.444 2024-02-20 01:22:11.444 9000 TIP 431298 897 6006398 2024-02-20 01:22:11.662 2024-02-20 01:22:11.662 1000 FEE 431298 666 6006399 2024-02-20 01:22:11.662 2024-02-20 01:22:11.662 9000 TIP 431298 27 6006400 2024-02-20 01:22:11.814 2024-02-20 01:22:11.814 1000 FEE 431298 11329 6006401 2024-02-20 01:22:11.814 2024-02-20 01:22:11.814 9000 TIP 431298 15273 6006412 2024-02-20 01:22:14.429 2024-02-20 01:22:14.429 1000 FEE 431298 9863 6006413 2024-02-20 01:22:14.429 2024-02-20 01:22:14.429 9000 TIP 431298 20006 6006422 2024-02-20 01:22:17.156 2024-02-20 01:22:17.156 1000 FEE 431298 19153 6006423 2024-02-20 01:22:17.156 2024-02-20 01:22:17.156 9000 TIP 431298 1173 6006424 2024-02-20 01:22:17.867 2024-02-20 01:22:17.867 1000 FEE 431298 9307 6006425 2024-02-20 01:22:17.867 2024-02-20 01:22:17.867 9000 TIP 431298 10102 6006434 2024-02-20 01:22:19.27 2024-02-20 01:22:19.27 1000 FEE 431298 14381 6006435 2024-02-20 01:22:19.27 2024-02-20 01:22:19.27 9000 TIP 431298 14213 6006438 2024-02-20 01:22:19.652 2024-02-20 01:22:19.652 1000 FEE 431298 21314 6006439 2024-02-20 01:22:19.652 2024-02-20 01:22:19.652 9000 TIP 431298 20302 6006440 2024-02-20 01:22:20.286 2024-02-20 01:22:20.286 1000 FEE 431298 18114 6006441 2024-02-20 01:22:20.286 2024-02-20 01:22:20.286 9000 TIP 431298 7654 6006446 2024-02-20 01:22:20.883 2024-02-20 01:22:20.883 1000 FEE 431298 2502 6006447 2024-02-20 01:22:20.883 2024-02-20 01:22:20.883 9000 TIP 431298 18494 6006450 2024-02-20 01:22:21.258 2024-02-20 01:22:21.258 1000 FEE 431298 2195 6006451 2024-02-20 01:22:21.258 2024-02-20 01:22:21.258 9000 TIP 431298 1030 6006452 2024-02-20 01:22:21.451 2024-02-20 01:22:21.451 1000 FEE 431298 15100 6006453 2024-02-20 01:22:21.451 2024-02-20 01:22:21.451 9000 TIP 431298 20973 6006456 2024-02-20 01:22:21.822 2024-02-20 01:22:21.822 1000 FEE 431298 20781 6006457 2024-02-20 01:22:21.822 2024-02-20 01:22:21.822 9000 TIP 431298 18784 6006462 2024-02-20 01:22:22.398 2024-02-20 01:22:22.398 1000 FEE 431298 7425 6006463 2024-02-20 01:22:22.398 2024-02-20 01:22:22.398 9000 TIP 431298 17693 6006468 2024-02-20 01:22:23.032 2024-02-20 01:22:23.032 1000 FEE 431298 14472 6006469 2024-02-20 01:22:23.032 2024-02-20 01:22:23.032 9000 TIP 431298 20120 6006478 2024-02-20 01:22:24.245 2024-02-20 01:22:24.245 1000 FEE 431298 20495 6006479 2024-02-20 01:22:24.245 2024-02-20 01:22:24.245 9000 TIP 431298 19810 6006484 2024-02-20 01:22:24.87 2024-02-20 01:22:24.87 1000 FEE 431298 20243 6006485 2024-02-20 01:22:24.87 2024-02-20 01:22:24.87 9000 TIP 431298 1003 6006486 2024-02-20 01:22:25.085 2024-02-20 01:22:25.085 1000 FEE 431298 20706 6006487 2024-02-20 01:22:25.085 2024-02-20 01:22:25.085 9000 TIP 431298 18919 6006492 2024-02-20 01:22:25.91 2024-02-20 01:22:25.91 1000 FEE 431298 18704 6006493 2024-02-20 01:22:25.91 2024-02-20 01:22:25.91 9000 TIP 431298 19773 6006494 2024-02-20 01:22:26.265 2024-02-20 01:22:26.265 1000 FEE 431298 18543 6006495 2024-02-20 01:22:26.265 2024-02-20 01:22:26.265 9000 TIP 431298 8245 6006498 2024-02-20 01:22:27.443 2024-02-20 01:22:27.443 2000 FEE 431298 4177 6006499 2024-02-20 01:22:27.443 2024-02-20 01:22:27.443 18000 TIP 431298 899 6006510 2024-02-20 01:22:29.426 2024-02-20 01:22:29.426 1000 FEE 431298 1567 6006511 2024-02-20 01:22:29.426 2024-02-20 01:22:29.426 9000 TIP 431298 11073 6006532 2024-02-20 01:22:32.994 2024-02-20 01:22:32.994 1000 FEE 431298 21249 6006533 2024-02-20 01:22:32.994 2024-02-20 01:22:32.994 9000 TIP 431298 20551 6006550 2024-02-20 01:22:37.591 2024-02-20 01:22:37.591 1000 FEE 431298 20525 6006551 2024-02-20 01:22:37.591 2024-02-20 01:22:37.591 9000 TIP 431298 4064 6006552 2024-02-20 01:22:37.978 2024-02-20 01:22:37.978 1000 FEE 431298 16939 6006553 2024-02-20 01:22:37.978 2024-02-20 01:22:37.978 9000 TIP 431298 15200 6006566 2024-02-20 01:22:39.807 2024-02-20 01:22:39.807 1000 FEE 431298 18923 6006567 2024-02-20 01:22:39.807 2024-02-20 01:22:39.807 9000 TIP 431298 27 6006590 2024-02-20 01:22:43.3 2024-02-20 01:22:43.3 1000 FEE 431298 16059 6006591 2024-02-20 01:22:43.3 2024-02-20 01:22:43.3 9000 TIP 431298 5057 6006592 2024-02-20 01:22:43.469 2024-02-20 01:22:43.469 1000 FEE 431298 1825 6006593 2024-02-20 01:22:43.469 2024-02-20 01:22:43.469 9000 TIP 431298 15941 6006612 2024-02-20 01:23:05.113 2024-02-20 01:23:05.113 1000 STREAM 141924 2529 6006613 2024-02-20 01:23:14.398 2024-02-20 01:23:14.398 1000 DONT_LIKE_THIS 431296 3504 6006625 2024-02-20 01:23:40.524 2024-02-20 01:23:40.524 1000 FEE 430885 13169 6006626 2024-02-20 01:23:40.524 2024-02-20 01:23:40.524 9000 TIP 430885 5825 6006629 2024-02-20 01:23:40.865 2024-02-20 01:23:40.865 1000 FEE 430885 20816 6006630 2024-02-20 01:23:40.865 2024-02-20 01:23:40.865 9000 TIP 430885 11820 6006645 2024-02-20 01:23:42.502 2024-02-20 01:23:42.502 1000 FEE 430885 1030 6006646 2024-02-20 01:23:42.502 2024-02-20 01:23:42.502 9000 TIP 430885 13042 6006647 2024-02-20 01:23:42.649 2024-02-20 01:23:42.649 1000 FEE 430885 18526 6006648 2024-02-20 01:23:42.649 2024-02-20 01:23:42.649 9000 TIP 430885 3409 6006649 2024-02-20 01:23:42.819 2024-02-20 01:23:42.819 1000 FEE 430885 18625 6006650 2024-02-20 01:23:42.819 2024-02-20 01:23:42.819 9000 TIP 430885 2776 6006659 2024-02-20 01:23:46.032 2024-02-20 01:23:46.032 1000 FEE 430149 18264 6006660 2024-02-20 01:23:46.032 2024-02-20 01:23:46.032 9000 TIP 430149 837 6006667 2024-02-20 01:23:46.882 2024-02-20 01:23:46.882 2000 FEE 430149 18524 6006668 2024-02-20 01:23:46.882 2024-02-20 01:23:46.882 18000 TIP 430149 910 6006673 2024-02-20 01:24:13.013 2024-02-20 01:24:13.013 1000 FEE 430885 14080 6006674 2024-02-20 01:24:13.013 2024-02-20 01:24:13.013 9000 TIP 430885 1114 6006677 2024-02-20 01:24:13.339 2024-02-20 01:24:13.339 1000 FEE 430885 19581 6006678 2024-02-20 01:24:13.339 2024-02-20 01:24:13.339 9000 TIP 430885 9844 6006687 2024-02-20 01:24:15.156 2024-02-20 01:24:15.156 1000 FEE 430885 11165 6006688 2024-02-20 01:24:15.156 2024-02-20 01:24:15.156 9000 TIP 430885 20340 6006697 2024-02-20 01:25:33.999 2024-02-20 01:25:33.999 1000 FEE 432003 20254 6006698 2024-02-20 01:25:33.999 2024-02-20 01:25:33.999 9000 TIP 432003 13042 6006711 2024-02-20 01:31:05.207 2024-02-20 01:31:05.207 1000 STREAM 141924 17523 6006606 2024-02-20 01:22:44.86 2024-02-20 01:22:44.86 1000 FEE 431298 2233 6006607 2024-02-20 01:22:44.86 2024-02-20 01:22:44.86 9000 TIP 431298 11561 6006619 2024-02-20 01:23:38.865 2024-02-20 01:23:38.865 1000 FEE 430149 9969 6006620 2024-02-20 01:23:38.865 2024-02-20 01:23:38.865 9000 TIP 430149 14370 6006631 2024-02-20 01:23:41.026 2024-02-20 01:23:41.026 1000 FEE 430885 20251 6006632 2024-02-20 01:23:41.026 2024-02-20 01:23:41.026 9000 TIP 430885 5499 6006635 2024-02-20 01:23:41.543 2024-02-20 01:23:41.543 1000 FEE 430885 20225 6006636 2024-02-20 01:23:41.543 2024-02-20 01:23:41.543 9000 TIP 430885 20554 6006669 2024-02-20 01:24:04.702 2024-02-20 01:24:04.702 1000 STREAM 141924 2757 6006671 2024-02-20 01:24:12.812 2024-02-20 01:24:12.812 1000 FEE 430885 8535 6006672 2024-02-20 01:24:12.812 2024-02-20 01:24:12.812 9000 TIP 430885 15160 6006681 2024-02-20 01:24:13.94 2024-02-20 01:24:13.94 2000 FEE 430885 15925 6006682 2024-02-20 01:24:13.94 2024-02-20 01:24:13.94 18000 TIP 430885 1007 6006683 2024-02-20 01:24:14.995 2024-02-20 01:24:14.995 1000 FEE 430885 896 6006684 2024-02-20 01:24:14.995 2024-02-20 01:24:14.995 9000 TIP 430885 17082 6006696 2024-02-20 01:25:04.695 2024-02-20 01:25:04.695 1000 STREAM 141924 696 6006704 2024-02-20 01:27:03.754 2024-02-20 01:27:03.754 1000 STREAM 141924 10719 6006709 2024-02-20 01:29:03.745 2024-02-20 01:29:03.745 1000 STREAM 141924 9366 6006710 2024-02-20 01:30:03.807 2024-02-20 01:30:03.807 1000 STREAM 141924 21571 6006722 2024-02-20 01:34:03.858 2024-02-20 01:34:03.858 1000 STREAM 141924 5703 6006724 2024-02-20 01:36:03.876 2024-02-20 01:36:03.876 1000 STREAM 141924 18836 6006727 2024-02-20 01:37:03.898 2024-02-20 01:37:03.898 1000 STREAM 141924 9655 6006740 2024-02-20 01:37:13.018 2024-02-20 01:37:13.018 2300 FEE 432077 18264 6006741 2024-02-20 01:37:13.018 2024-02-20 01:37:13.018 20700 TIP 432077 5173 6006761 2024-02-20 01:38:06.037 2024-02-20 01:38:06.037 2300 FEE 430984 20310 6006762 2024-02-20 01:38:06.037 2024-02-20 01:38:06.037 20700 TIP 430984 897 6006781 2024-02-20 01:38:25.67 2024-02-20 01:38:25.67 2300 FEE 432022 21242 6006782 2024-02-20 01:38:25.67 2024-02-20 01:38:25.67 20700 TIP 432022 14905 6006783 2024-02-20 01:38:25.815 2024-02-20 01:38:25.815 2300 FEE 432022 994 6006784 2024-02-20 01:38:25.815 2024-02-20 01:38:25.815 20700 TIP 432022 20381 6006785 2024-02-20 01:38:26.186 2024-02-20 01:38:26.186 2300 FEE 432022 8385 6006786 2024-02-20 01:38:26.186 2024-02-20 01:38:26.186 20700 TIP 432022 15094 6006791 2024-02-20 01:39:04.805 2024-02-20 01:39:04.805 1000 STREAM 141924 2065 6006800 2024-02-20 01:41:03.921 2024-02-20 01:41:03.921 1000 STREAM 141924 20205 6006802 2024-02-20 01:43:03.933 2024-02-20 01:43:03.933 1000 STREAM 141924 14385 6006805 2024-02-20 01:43:51.074 2024-02-20 01:43:51.074 1000 FEE 432089 16809 6006816 2024-02-20 01:44:45.311 2024-02-20 01:44:45.311 0 FEE 405202 10096 6006817 2024-02-20 01:44:49.876 2024-02-20 01:44:49.876 400 FEE 432089 19138 6006818 2024-02-20 01:44:49.876 2024-02-20 01:44:49.876 3600 TIP 432089 18231 6006819 2024-02-20 01:45:03.944 2024-02-20 01:45:03.944 1000 STREAM 141924 7119 6006822 2024-02-20 01:46:03.964 2024-02-20 01:46:03.964 1000 STREAM 141924 19601 6006824 2024-02-20 01:47:03.966 2024-02-20 01:47:03.966 1000 STREAM 141924 2042 6006871 2024-02-20 01:51:35.523 2024-02-20 01:51:35.523 8300 FEE 431916 8535 6006872 2024-02-20 01:51:35.523 2024-02-20 01:51:35.523 74700 TIP 431916 3417 6006876 2024-02-20 01:52:04.009 2024-02-20 01:52:04.009 1000 STREAM 141924 5085 6006879 2024-02-20 01:52:23.62 2024-02-20 01:52:23.62 900 FEE 432085 21248 6006880 2024-02-20 01:52:23.62 2024-02-20 01:52:23.62 8100 TIP 432085 21233 6006899 2024-02-20 01:53:28.357 2024-02-20 01:53:28.357 8300 FEE 432057 13753 6006900 2024-02-20 01:53:28.357 2024-02-20 01:53:28.357 74700 TIP 432057 726 6006913 2024-02-20 01:53:33.163 2024-02-20 01:53:33.163 8300 FEE 432029 1584 6006914 2024-02-20 01:53:33.163 2024-02-20 01:53:33.163 74700 TIP 432029 18209 6006915 2024-02-20 01:53:34.769 2024-02-20 01:53:34.769 8300 FEE 432029 18448 6006916 2024-02-20 01:53:34.769 2024-02-20 01:53:34.769 74700 TIP 432029 7389 6006927 2024-02-20 01:53:40.889 2024-02-20 01:53:40.889 8300 FEE 432063 10094 6006928 2024-02-20 01:53:40.889 2024-02-20 01:53:40.889 74700 TIP 432063 15624 6006939 2024-02-20 01:53:46.709 2024-02-20 01:53:46.709 8300 FEE 432063 5003 6006940 2024-02-20 01:53:46.709 2024-02-20 01:53:46.709 74700 TIP 432063 1740 6006943 2024-02-20 01:54:35.826 2024-02-20 01:54:35.826 0 FEE 405202 19615 6006952 2024-02-20 01:58:05.094 2024-02-20 01:58:05.094 1000 STREAM 141924 624 6006953 2024-02-20 01:59:05.112 2024-02-20 01:59:05.112 1000 STREAM 141924 9084 6006955 2024-02-20 02:00:02.415 2024-02-20 02:00:02.415 1000 STREAM 141924 21446 6006956 2024-02-20 02:00:26.776 2024-02-20 02:00:26.776 2100 FEE 432084 8535 6006957 2024-02-20 02:00:26.776 2024-02-20 02:00:26.776 18900 TIP 432084 9339 6006961 2024-02-20 02:01:28.956 2024-02-20 02:01:28.956 2100 FEE 431401 10359 6006962 2024-02-20 02:01:28.956 2024-02-20 02:01:28.956 18900 TIP 431401 2514 6006975 2024-02-20 02:04:31.343 2024-02-20 02:04:31.343 8300 FEE 431856 3518 6006976 2024-02-20 02:04:31.343 2024-02-20 02:04:31.343 74700 TIP 431856 15146 6006981 2024-02-20 02:07:04.464 2024-02-20 02:07:04.464 1000 STREAM 141924 17602 6006988 2024-02-20 02:08:04.494 2024-02-20 02:08:04.494 1000 STREAM 141924 17523 6006989 2024-02-20 02:09:04.522 2024-02-20 02:09:04.522 1000 STREAM 141924 9529 6006992 2024-02-20 02:11:04.575 2024-02-20 02:11:04.575 1000 STREAM 141924 18232 6006993 2024-02-20 02:11:05.234 2024-02-20 02:11:05.234 1000 FEE 432067 4084 6006994 2024-02-20 02:11:05.234 2024-02-20 02:11:05.234 9000 TIP 432067 1692 6006995 2024-02-20 02:12:04.552 2024-02-20 02:12:04.552 1000 STREAM 141924 17927 6006999 2024-02-20 02:13:04.586 2024-02-20 02:13:04.586 1000 STREAM 141924 17446 6007004 2024-02-20 02:14:04.626 2024-02-20 02:14:04.626 1000 STREAM 141924 21070 6007008 2024-02-20 02:15:04.629 2024-02-20 02:15:04.629 1000 STREAM 141924 20137 6007028 2024-02-20 02:16:19.954 2024-02-20 02:16:19.954 1000 FEE 432091 11821 6007029 2024-02-20 02:16:19.954 2024-02-20 02:16:19.954 9000 TIP 432091 21271 6007033 2024-02-20 02:17:04.646 2024-02-20 02:17:04.646 1000 STREAM 141924 16336 6007037 2024-02-20 02:18:01.886 2024-02-20 02:18:01.886 1000 FEE 432100 19890 6007038 2024-02-20 02:18:02.645 2024-02-20 02:18:02.645 1000 STREAM 141924 17226 6007040 2024-02-20 02:19:04.664 2024-02-20 02:19:04.664 1000 STREAM 141924 632 6007053 2024-02-20 02:21:22.772 2024-02-20 02:21:22.772 800 FEE 420785 10731 6007054 2024-02-20 02:21:22.772 2024-02-20 02:21:22.772 7200 TIP 420785 1090 6007055 2024-02-20 02:21:22.954 2024-02-20 02:21:22.954 800 FEE 420785 19458 6007056 2024-02-20 02:21:22.954 2024-02-20 02:21:22.954 7200 TIP 420785 19795 6007065 2024-02-20 02:21:23.837 2024-02-20 02:21:23.837 800 FEE 420785 681 6007066 2024-02-20 02:21:23.837 2024-02-20 02:21:23.837 7200 TIP 420785 20452 6007076 2024-02-20 02:22:02.69 2024-02-20 02:22:02.69 1000 STREAM 141924 21547 6007124 2024-02-20 02:24:02.72 2024-02-20 02:24:02.72 1000 STREAM 141924 9450 6007139 2024-02-20 02:29:04.82 2024-02-20 02:29:04.82 1000 STREAM 141924 18667 6007140 2024-02-20 02:30:02.846 2024-02-20 02:30:02.846 1000 STREAM 141924 19199 6007146 2024-02-20 02:31:16.611 2024-02-20 02:31:16.611 1000 FEE 430601 6777 6007147 2024-02-20 02:31:16.611 2024-02-20 02:31:16.611 9000 TIP 430601 9844 6007151 2024-02-20 02:31:39.356 2024-02-20 02:31:39.356 1000 FEE 432107 19462 6007158 2024-02-20 02:32:04.845 2024-02-20 02:32:04.845 1000 STREAM 141924 19381 6007167 2024-02-20 02:34:04.905 2024-02-20 02:34:04.905 1000 STREAM 141924 16004 6007173 2024-02-20 02:34:58.582 2024-02-20 02:34:58.582 2100 FEE 432060 18529 6007174 2024-02-20 02:34:58.582 2024-02-20 02:34:58.582 18900 TIP 432060 19403 6007175 2024-02-20 02:34:59.59 2024-02-20 02:34:59.59 1000 FEE 432003 18679 6007176 2024-02-20 02:34:59.59 2024-02-20 02:34:59.59 9000 TIP 432003 9758 6007177 2024-02-20 02:35:02.894 2024-02-20 02:35:02.894 1000 STREAM 141924 2232 6007205 2024-02-20 02:36:34.524 2024-02-20 02:36:34.524 2100 FEE 429604 15115 6007206 2024-02-20 02:36:34.524 2024-02-20 02:36:34.524 18900 TIP 429604 1505 6007238 2024-02-20 02:45:04.591 2024-02-20 02:45:04.591 100 FEE 432113 8400 6007239 2024-02-20 02:45:04.591 2024-02-20 02:45:04.591 900 TIP 432113 8385 6006712 2024-02-20 01:31:43.885 2024-02-20 01:31:43.885 2100 FEE 431844 1008 6006713 2024-02-20 01:31:43.885 2024-02-20 01:31:43.885 18900 TIP 431844 8945 6006720 2024-02-20 01:33:41.131 2024-02-20 01:33:41.131 2100 FEE 431800 21563 6006721 2024-02-20 01:33:41.131 2024-02-20 01:33:41.131 18900 TIP 431800 14168 6006725 2024-02-20 01:36:11.112 2024-02-20 01:36:11.112 1000 FEE 432083 17095 6006726 2024-02-20 01:36:11.112 2024-02-20 01:36:11.112 9000 TIP 432083 1836 6006728 2024-02-20 01:37:06.371 2024-02-20 01:37:06.371 2300 FEE 432080 10273 6006729 2024-02-20 01:37:06.371 2024-02-20 01:37:06.371 20700 TIP 432080 21457 6006732 2024-02-20 01:37:06.777 2024-02-20 01:37:06.777 2300 FEE 432080 21466 6006733 2024-02-20 01:37:06.777 2024-02-20 01:37:06.777 20700 TIP 432080 1729 6006755 2024-02-20 01:38:05.521 2024-02-20 01:38:05.521 2300 FEE 430984 19910 6006756 2024-02-20 01:38:05.521 2024-02-20 01:38:05.521 20700 TIP 430984 9346 6006848 2024-02-20 01:50:40.261 2024-02-20 01:50:40.261 8300 FEE 432077 13767 6006849 2024-02-20 01:50:40.261 2024-02-20 01:50:40.261 74700 TIP 432077 8242 6006869 2024-02-20 01:51:34.291 2024-02-20 01:51:34.291 8300 FEE 431912 1723 6006870 2024-02-20 01:51:34.291 2024-02-20 01:51:34.291 74700 TIP 431912 5828 6006881 2024-02-20 01:52:24.284 2024-02-20 01:52:24.284 9000 FEE 432085 11938 6006882 2024-02-20 01:52:24.284 2024-02-20 01:52:24.284 81000 TIP 432085 997 6006898 2024-02-20 01:53:24.174 2024-02-20 01:53:24.174 1000 FEE 432091 986 6006901 2024-02-20 01:53:29.406 2024-02-20 01:53:29.406 8300 FEE 432063 10311 6006902 2024-02-20 01:53:29.406 2024-02-20 01:53:29.406 74700 TIP 432063 1652 6006925 2024-02-20 01:53:40.743 2024-02-20 01:53:40.743 8300 FEE 432063 630 6006926 2024-02-20 01:53:40.743 2024-02-20 01:53:40.743 74700 TIP 432063 994 6006949 2024-02-20 01:56:30.756 2024-02-20 01:56:30.756 1100 FEE 430230 20597 6006950 2024-02-20 01:56:30.756 2024-02-20 01:56:30.756 9900 TIP 430230 9150 6006954 2024-02-20 01:59:58.098 2024-02-20 01:59:58.098 0 FEE 432091 1959 6006965 2024-02-20 02:03:08.352 2024-02-20 02:03:08.352 1000 FEE 432092 5538 6006979 2024-02-20 02:06:31.798 2024-02-20 02:06:31.798 2100 FEE 432083 20094 6006980 2024-02-20 02:06:31.798 2024-02-20 02:06:31.798 18900 TIP 432083 7395 6006984 2024-02-20 02:08:02.028 2024-02-20 02:08:02.028 400 FEE 432029 17011 6006985 2024-02-20 02:08:02.028 2024-02-20 02:08:02.028 3600 TIP 432029 1136 6007026 2024-02-20 02:16:19.405 2024-02-20 02:16:19.405 1000 FEE 432091 15160 6007027 2024-02-20 02:16:19.405 2024-02-20 02:16:19.405 9000 TIP 432091 19967 6007042 2024-02-20 02:20:38.593 2024-02-20 02:20:38.593 800 FEE 427551 992 6007043 2024-02-20 02:20:38.593 2024-02-20 02:20:38.593 7200 TIP 427551 19941 6007049 2024-02-20 02:21:11.226 2024-02-20 02:21:11.226 1000 FEE 432003 2735 6007050 2024-02-20 02:21:11.226 2024-02-20 02:21:11.226 9000 TIP 432003 16988 6007051 2024-02-20 02:21:22.567 2024-02-20 02:21:22.567 800 FEE 420785 14381 6007052 2024-02-20 02:21:22.567 2024-02-20 02:21:22.567 7200 TIP 420785 837 6007083 2024-02-20 02:22:16.965 2024-02-20 02:22:16.965 500 FEE 430861 21578 6007084 2024-02-20 02:22:16.965 2024-02-20 02:22:16.965 4500 TIP 430861 18673 6007089 2024-02-20 02:22:27.18 2024-02-20 02:22:27.18 1000 FEE 432103 7125 6007100 2024-02-20 02:22:52.144 2024-02-20 02:22:52.144 500 FEE 430258 17162 6007101 2024-02-20 02:22:52.144 2024-02-20 02:22:52.144 4500 TIP 430258 5293 6007106 2024-02-20 02:22:58.504 2024-02-20 02:22:58.504 500 FEE 431844 21463 6007107 2024-02-20 02:22:58.504 2024-02-20 02:22:58.504 4500 TIP 431844 19961 6007132 2024-02-20 02:27:15.456 2024-02-20 02:27:15.456 2100 FEE 431816 18310 6007133 2024-02-20 02:27:15.456 2024-02-20 02:27:15.456 18900 TIP 431816 4074 6007136 2024-02-20 02:27:53.914 2024-02-20 02:27:53.914 4200 FEE 431280 15594 6007137 2024-02-20 02:27:53.914 2024-02-20 02:27:53.914 37800 TIP 431280 19038 6007152 2024-02-20 02:31:50.04 2024-02-20 02:31:50.04 2100 FEE 432060 10280 6007153 2024-02-20 02:31:50.04 2024-02-20 02:31:50.04 18900 TIP 432060 12160 6007169 2024-02-20 02:34:55.751 2024-02-20 02:34:55.751 1000 FEE 431401 17800 6007170 2024-02-20 02:34:55.751 2024-02-20 02:34:55.751 9000 TIP 431401 13398 6007184 2024-02-20 02:35:22.117 2024-02-20 02:35:22.117 1000 FEE 431079 19417 6007185 2024-02-20 02:35:22.117 2024-02-20 02:35:22.117 9000 TIP 431079 18199 6007198 2024-02-20 02:36:08.929 2024-02-20 02:36:08.929 1000 FEE 431830 7847 6007199 2024-02-20 02:36:08.929 2024-02-20 02:36:08.929 9000 TIP 431830 726 6007211 2024-02-20 02:36:44.717 2024-02-20 02:36:44.717 1000 FEE 432043 16354 6007212 2024-02-20 02:36:44.717 2024-02-20 02:36:44.717 9000 TIP 432043 5978 6007214 2024-02-20 02:37:09.192 2024-02-20 02:37:09.192 1000 FEE 430859 12289 6007215 2024-02-20 02:37:09.192 2024-02-20 02:37:09.192 9000 TIP 430859 1474 6007223 2024-02-20 02:38:44.598 2024-02-20 02:38:44.598 1000 FEE 432114 9334 6007236 2024-02-20 02:44:24.371 2024-02-20 02:44:24.371 2100 FEE 431401 5637 6007237 2024-02-20 02:44:24.371 2024-02-20 02:44:24.371 18900 TIP 431401 6537 6007249 2024-02-20 02:45:08.631 2024-02-20 02:45:08.631 9000 FEE 432102 10668 6007250 2024-02-20 02:45:08.631 2024-02-20 02:45:08.631 81000 TIP 432102 15484 6007251 2024-02-20 02:45:48.312 2024-02-20 02:45:48.312 1000 FEE 432003 20619 6007252 2024-02-20 02:45:48.312 2024-02-20 02:45:48.312 9000 TIP 432003 5519 6007256 2024-02-20 02:46:15.834 2024-02-20 02:46:15.834 100 FEE 432101 20972 6007257 2024-02-20 02:46:15.834 2024-02-20 02:46:15.834 900 TIP 432101 20120 6007288 2024-02-20 02:47:36.73 2024-02-20 02:47:36.73 1000 FEE 432071 21599 6007289 2024-02-20 02:47:36.73 2024-02-20 02:47:36.73 9000 TIP 432071 1628 6007296 2024-02-20 02:48:55.567 2024-02-20 02:48:55.567 500 FEE 431926 17522 6007297 2024-02-20 02:48:55.567 2024-02-20 02:48:55.567 4500 TIP 431926 18673 6007331 2024-02-20 02:52:31.552 2024-02-20 02:52:31.552 1000 FEE 432124 20577 6007359 2024-02-20 02:55:58.177 2024-02-20 02:55:58.177 1000 FEE 432127 822 6007368 2024-02-20 02:57:11.178 2024-02-20 02:57:11.178 1000 FEE 432128 8729 6007407 2024-02-20 03:07:01.406 2024-02-20 03:07:01.406 1000 FEE 430626 12606 6007408 2024-02-20 03:07:01.406 2024-02-20 03:07:01.406 9000 TIP 430626 20717 6007420 2024-02-20 03:08:27.84 2024-02-20 03:08:27.84 11700 FEE 430920 10821 6007421 2024-02-20 03:08:27.84 2024-02-20 03:08:27.84 105300 TIP 430920 20152 6007427 2024-02-20 03:09:09.215 2024-02-20 03:09:09.215 2100 FEE 432113 2196 6007428 2024-02-20 03:09:09.215 2024-02-20 03:09:09.215 18900 TIP 432113 632 6007436 2024-02-20 03:11:03.142 2024-02-20 03:11:03.142 2300 FEE 432132 2609 6007437 2024-02-20 03:11:03.142 2024-02-20 03:11:03.142 20700 TIP 432132 19189 6007467 2024-02-20 03:11:17.196 2024-02-20 03:11:17.196 2300 FEE 432121 13143 6007468 2024-02-20 03:11:17.196 2024-02-20 03:11:17.196 20700 TIP 432121 15337 6007473 2024-02-20 03:11:49.905 2024-02-20 03:11:49.905 2300 FEE 432113 2330 6007474 2024-02-20 03:11:49.905 2024-02-20 03:11:49.905 20700 TIP 432113 19785 6007480 2024-02-20 03:13:29.611 2024-02-20 03:13:29.611 1000 FEE 430859 703 6007481 2024-02-20 03:13:29.611 2024-02-20 03:13:29.611 9000 TIP 430859 14910 6007501 2024-02-20 03:15:04.606 2024-02-20 03:15:04.606 8300 FEE 432113 13622 6007502 2024-02-20 03:15:04.606 2024-02-20 03:15:04.606 74700 TIP 432113 1803 6007517 2024-02-20 03:15:26.501 2024-02-20 03:15:26.501 1000 FEE 432140 15115 6007532 2024-02-20 03:17:19.497 2024-02-20 03:17:19.497 400 FEE 432123 14381 6007533 2024-02-20 03:17:19.497 2024-02-20 03:17:19.497 3600 TIP 432123 17827 6007546 2024-02-20 03:17:57.123 2024-02-20 03:17:57.123 400 FEE 432103 837 6007547 2024-02-20 03:17:57.123 2024-02-20 03:17:57.123 3600 TIP 432103 20182 6007549 2024-02-20 03:18:21.165 2024-02-20 03:18:21.165 1000 FEE 432135 21138 6007550 2024-02-20 03:18:21.165 2024-02-20 03:18:21.165 9000 TIP 432135 20183 6007553 2024-02-20 03:18:22.165 2024-02-20 03:18:22.165 1000 FEE 432135 13100 6007554 2024-02-20 03:18:22.165 2024-02-20 03:18:22.165 9000 TIP 432135 20479 6007560 2024-02-20 03:18:53.959 2024-02-20 03:18:53.959 0 FEE 432140 19506 6007574 2024-02-20 03:19:56.463 2024-02-20 03:19:56.463 1000 FEE 432113 10311 6007575 2024-02-20 03:19:56.463 2024-02-20 03:19:56.463 9000 TIP 432113 19199 6007595 2024-02-20 03:25:49.85 2024-02-20 03:25:49.85 1000 FEE 432119 2525 6006715 2024-02-20 01:33:03.558 2024-02-20 01:33:03.558 2100 FEE 431918 8385 6006716 2024-02-20 01:33:03.558 2024-02-20 01:33:03.558 18900 TIP 431918 20979 6006779 2024-02-20 01:38:25.307 2024-02-20 01:38:25.307 2300 FEE 432022 19021 6006780 2024-02-20 01:38:25.307 2024-02-20 01:38:25.307 20700 TIP 432022 19500 6006794 2024-02-20 01:39:41.147 2024-02-20 01:39:41.147 10000 FEE 431109 7877 6006795 2024-02-20 01:39:41.147 2024-02-20 01:39:41.147 90000 TIP 431109 20045 6006820 2024-02-20 01:45:58.975 2024-02-20 01:45:58.975 2100 FEE 431915 1478 6006821 2024-02-20 01:45:58.975 2024-02-20 01:45:58.975 18900 TIP 431915 13216 6006830 2024-02-20 01:49:51.156 2024-02-20 01:49:51.156 10000 FEE 431918 4819 6006831 2024-02-20 01:49:51.156 2024-02-20 01:49:51.156 90000 TIP 431918 16004 6006854 2024-02-20 01:50:52.062 2024-02-20 01:50:52.062 8300 FEE 431952 21061 6006855 2024-02-20 01:50:52.062 2024-02-20 01:50:52.062 74700 TIP 431952 2042 6006865 2024-02-20 01:51:28.581 2024-02-20 01:51:28.581 8300 FEE 432008 14552 6006866 2024-02-20 01:51:28.581 2024-02-20 01:51:28.581 74700 TIP 432008 13527 6006875 2024-02-20 01:51:57.632 2024-02-20 01:51:57.632 0 FEE 432087 4304 6006890 2024-02-20 01:53:09.632 2024-02-20 01:53:09.632 9000 FEE 432088 11999 6006891 2024-02-20 01:53:09.632 2024-02-20 01:53:09.632 81000 TIP 432088 4521 6006896 2024-02-20 01:53:22.588 2024-02-20 01:53:22.588 8300 FEE 432003 21212 6006897 2024-02-20 01:53:22.588 2024-02-20 01:53:22.588 74700 TIP 432003 20120 6006903 2024-02-20 01:53:29.681 2024-02-20 01:53:29.681 8300 FEE 432063 642 6006904 2024-02-20 01:53:29.681 2024-02-20 01:53:29.681 74700 TIP 432063 19924 6006923 2024-02-20 01:53:40.626 2024-02-20 01:53:40.626 8300 FEE 432063 17891 6006924 2024-02-20 01:53:40.626 2024-02-20 01:53:40.626 74700 TIP 432063 16847 6006929 2024-02-20 01:53:42.459 2024-02-20 01:53:42.459 8300 FEE 432029 9433 6006930 2024-02-20 01:53:42.459 2024-02-20 01:53:42.459 74700 TIP 432029 19821 6007005 2024-02-20 02:14:06.912 2024-02-20 02:14:06.912 10000 FEE 431946 4166 6007006 2024-02-20 02:14:06.912 2024-02-20 02:14:06.912 90000 TIP 431946 8870 6007011 2024-02-20 02:15:55.87 2024-02-20 02:15:55.87 1000 FEE 430811 20577 6007012 2024-02-20 02:15:55.87 2024-02-20 02:15:55.87 9000 TIP 430811 1135 6007020 2024-02-20 02:16:18.189 2024-02-20 02:16:18.189 1000 FEE 432091 7913 6007021 2024-02-20 02:16:18.189 2024-02-20 02:16:18.189 9000 TIP 432091 17976 6007024 2024-02-20 02:16:18.572 2024-02-20 02:16:18.572 1000 FEE 432091 1618 6007025 2024-02-20 02:16:18.572 2024-02-20 02:16:18.572 9000 TIP 432091 1814 6007057 2024-02-20 02:21:23.142 2024-02-20 02:21:23.142 800 FEE 420785 12808 6007058 2024-02-20 02:21:23.142 2024-02-20 02:21:23.142 7200 TIP 420785 21254 6007067 2024-02-20 02:21:24.019 2024-02-20 02:21:24.019 800 FEE 420785 766 6007068 2024-02-20 02:21:24.019 2024-02-20 02:21:24.019 7200 TIP 420785 1480 6007075 2024-02-20 02:22:02.324 2024-02-20 02:22:02.324 1000000 FEE 432102 1620 6007087 2024-02-20 02:22:19.827 2024-02-20 02:22:19.827 500 FEE 430861 20788 6007088 2024-02-20 02:22:19.827 2024-02-20 02:22:19.827 4500 TIP 430861 9820 6007090 2024-02-20 02:22:46.166 2024-02-20 02:22:46.166 500 FEE 430892 20924 6007091 2024-02-20 02:22:46.166 2024-02-20 02:22:46.166 4500 TIP 430892 1784 6007098 2024-02-20 02:22:51.129 2024-02-20 02:22:51.129 500 FEE 430549 21599 6007099 2024-02-20 02:22:51.129 2024-02-20 02:22:51.129 4500 TIP 430549 13843 6007102 2024-02-20 02:22:54.091 2024-02-20 02:22:54.091 500 FEE 430496 20246 6007103 2024-02-20 02:22:54.091 2024-02-20 02:22:54.091 4500 TIP 430496 1488 6007108 2024-02-20 02:23:00.506 2024-02-20 02:23:00.506 500 FEE 430795 6335 6007109 2024-02-20 02:23:00.506 2024-02-20 02:23:00.506 4500 TIP 430795 1426 6007220 2024-02-20 02:38:01.946 2024-02-20 02:38:01.946 1000 FEE 432112 20163 6007225 2024-02-20 02:39:12.276 2024-02-20 02:39:12.276 1000 FEE 430568 21090 6007226 2024-02-20 02:39:12.276 2024-02-20 02:39:12.276 9000 TIP 430568 5085 6007245 2024-02-20 02:45:07.242 2024-02-20 02:45:07.242 100 FEE 432102 12422 6007246 2024-02-20 02:45:07.242 2024-02-20 02:45:07.242 900 TIP 432102 836 6007264 2024-02-20 02:46:24.348 2024-02-20 02:46:24.348 1000 FEE 432057 624 6007265 2024-02-20 02:46:24.348 2024-02-20 02:46:24.348 9000 TIP 432057 20108 6007291 2024-02-20 02:47:58.064 2024-02-20 02:47:58.064 1000 FEE 432116 683 6007292 2024-02-20 02:47:58.064 2024-02-20 02:47:58.064 9000 TIP 432116 2326 6007327 2024-02-20 02:51:37.04 2024-02-20 02:51:37.04 1000 FEE 432123 20717 6007366 2024-02-20 02:57:06.807 2024-02-20 02:57:06.807 1000 FEE 431994 9916 6007367 2024-02-20 02:57:06.807 2024-02-20 02:57:06.807 9000 TIP 431994 15703 6007385 2024-02-20 03:03:09.89 2024-02-20 03:03:09.89 1000 FEE 432003 1611 6007386 2024-02-20 03:03:09.89 2024-02-20 03:03:09.89 9000 TIP 432003 13348 6007411 2024-02-20 03:07:03.114 2024-02-20 03:07:03.114 1000 FEE 430258 12921 6007412 2024-02-20 03:07:03.114 2024-02-20 03:07:03.114 9000 TIP 430258 15243 6007416 2024-02-20 03:07:57.723 2024-02-20 03:07:57.723 20000 FEE 430872 17526 6007417 2024-02-20 03:07:57.723 2024-02-20 03:07:57.723 180000 TIP 430872 675 6007442 2024-02-20 03:11:03.481 2024-02-20 03:11:03.481 2300 FEE 432132 15510 6007443 2024-02-20 03:11:03.481 2024-02-20 03:11:03.481 20700 TIP 432132 4378 6007458 2024-02-20 03:11:09.052 2024-02-20 03:11:09.052 2300 FEE 432132 21481 6007459 2024-02-20 03:11:09.052 2024-02-20 03:11:09.052 20700 TIP 432132 3439 6007492 2024-02-20 03:14:49.699 2024-02-20 03:14:49.699 2100 FEE 432135 20837 6007493 2024-02-20 03:14:49.699 2024-02-20 03:14:49.699 18900 TIP 432135 20596 6007495 2024-02-20 03:15:04.044 2024-02-20 03:15:04.044 8300 FEE 432113 659 6007496 2024-02-20 03:15:04.044 2024-02-20 03:15:04.044 74700 TIP 432113 17103 6007511 2024-02-20 03:15:05.582 2024-02-20 03:15:05.582 8300 FEE 432113 2681 6007512 2024-02-20 03:15:05.582 2024-02-20 03:15:05.582 74700 TIP 432113 18678 6007534 2024-02-20 03:17:22.477 2024-02-20 03:17:22.477 400 FEE 432120 5128 6007535 2024-02-20 03:17:22.477 2024-02-20 03:17:22.477 3600 TIP 432120 20162 6007540 2024-02-20 03:17:34.385 2024-02-20 03:17:34.385 1000 FEE 432137 20897 6007541 2024-02-20 03:17:34.385 2024-02-20 03:17:34.385 9000 TIP 432137 21334 6007544 2024-02-20 03:17:47.641 2024-02-20 03:17:47.641 400 FEE 432105 13921 6007545 2024-02-20 03:17:47.641 2024-02-20 03:17:47.641 3600 TIP 432105 10359 6007572 2024-02-20 03:19:55.928 2024-02-20 03:19:55.928 1000 FEE 432113 1650 6007573 2024-02-20 03:19:55.928 2024-02-20 03:19:55.928 9000 TIP 432113 19103 6007579 2024-02-20 03:20:27.45 2024-02-20 03:20:27.45 1000 FEE 430859 21501 6007580 2024-02-20 03:20:27.45 2024-02-20 03:20:27.45 9000 TIP 430859 14449 6007582 2024-02-20 03:21:26.585 2024-02-20 03:21:26.585 2300 FEE 432141 9345 6007583 2024-02-20 03:21:26.585 2024-02-20 03:21:26.585 20700 TIP 432141 6594 6007588 2024-02-20 03:21:45.802 2024-02-20 03:21:45.802 2300 FEE 430710 13216 6007589 2024-02-20 03:21:45.802 2024-02-20 03:21:45.802 20700 TIP 430710 20969 6007590 2024-02-20 03:21:56.431 2024-02-20 03:21:56.431 10000 FEE 432142 9426 6007622 2024-02-20 03:30:46.121 2024-02-20 03:30:46.121 1000 FEE 432001 7989 6007623 2024-02-20 03:30:46.121 2024-02-20 03:30:46.121 9000 TIP 432001 17291 6007626 2024-02-20 03:30:47.026 2024-02-20 03:30:47.026 1000 FEE 432001 21323 6007627 2024-02-20 03:30:47.026 2024-02-20 03:30:47.026 9000 TIP 432001 18241 6007633 2024-02-20 03:31:39.94 2024-02-20 03:31:39.94 1000 FEE 432026 9363 6007634 2024-02-20 03:31:39.94 2024-02-20 03:31:39.94 9000 TIP 432026 19689 6007673 2024-02-20 03:32:33.281 2024-02-20 03:32:33.281 100 FEE 431844 18040 6007674 2024-02-20 03:32:33.281 2024-02-20 03:32:33.281 900 TIP 431844 18199 6007675 2024-02-20 03:32:34.043 2024-02-20 03:32:34.043 200 FEE 431844 21332 6007676 2024-02-20 03:32:34.043 2024-02-20 03:32:34.043 1800 TIP 431844 1817 6007685 2024-02-20 03:32:35.69 2024-02-20 03:32:35.69 100 FEE 431844 14122 6007686 2024-02-20 03:32:35.69 2024-02-20 03:32:35.69 900 TIP 431844 20276 6007710 2024-02-20 03:33:58.88 2024-02-20 03:33:58.88 1000 FEE 432151 16858 6007715 2024-02-20 03:34:17.395 2024-02-20 03:34:17.395 1000 FEE 432060 1845 6007716 2024-02-20 03:34:17.395 2024-02-20 03:34:17.395 9000 TIP 432060 1650 6007723 2024-02-20 03:34:19.702 2024-02-20 03:34:19.702 1000 FEE 432060 652 6006850 2024-02-20 01:50:43.15 2024-02-20 01:50:43.15 8300 FEE 431975 20539 6006851 2024-02-20 01:50:43.15 2024-02-20 01:50:43.15 74700 TIP 431975 5293 6006858 2024-02-20 01:50:53.47 2024-02-20 01:50:53.47 8300 FEE 432031 18557 6006859 2024-02-20 01:50:53.47 2024-02-20 01:50:53.47 74700 TIP 432031 17221 6006892 2024-02-20 01:53:22.245 2024-02-20 01:53:22.245 8300 FEE 432003 1213 6006893 2024-02-20 01:53:22.245 2024-02-20 01:53:22.245 74700 TIP 432003 21216 6006905 2024-02-20 01:53:30.068 2024-02-20 01:53:30.068 8300 FEE 432063 13365 6006906 2024-02-20 01:53:30.068 2024-02-20 01:53:30.068 74700 TIP 432063 2204 6006941 2024-02-20 01:53:59.498 2024-02-20 01:53:59.498 0 FEE 405202 21369 6006982 2024-02-20 02:07:45.638 2024-02-20 02:07:45.638 1000 FEE 432093 18745 6006998 2024-02-20 02:12:40.473 2024-02-20 02:12:40.473 21000 FEE 432096 19153 6007030 2024-02-20 02:16:46.792 2024-02-20 02:16:46.792 1000 FEE 430755 3409 6007031 2024-02-20 02:16:46.792 2024-02-20 02:16:46.792 9000 TIP 430755 21424 6007039 2024-02-20 02:18:08.999 2024-02-20 02:18:08.999 15000 FEE 432101 660 6007154 2024-02-20 02:31:52.606 2024-02-20 02:31:52.606 2100 FEE 432052 21480 6007155 2024-02-20 02:31:52.606 2024-02-20 02:31:52.606 18900 TIP 432052 21532 6007186 2024-02-20 02:35:41.939 2024-02-20 02:35:41.939 1000 FEE 432076 20152 6007187 2024-02-20 02:35:41.939 2024-02-20 02:35:41.939 9000 TIP 432076 10611 6007188 2024-02-20 02:35:44.652 2024-02-20 02:35:44.652 1000 FEE 432069 696 6007189 2024-02-20 02:35:44.652 2024-02-20 02:35:44.652 9000 TIP 432069 1751 6007197 2024-02-20 02:36:08.222 2024-02-20 02:36:08.222 1000 FEE 432110 5359 6007216 2024-02-20 02:37:10.773 2024-02-20 02:37:10.773 1000 FEE 430859 21263 6007217 2024-02-20 02:37:10.773 2024-02-20 02:37:10.773 9000 TIP 430859 2077 6007218 2024-02-20 02:37:13.042 2024-02-20 02:37:13.042 1000 FEE 430859 20841 6007219 2024-02-20 02:37:13.042 2024-02-20 02:37:13.042 9000 TIP 430859 1046 6007258 2024-02-20 02:46:16.02 2024-02-20 02:46:16.02 900 FEE 432101 9150 6007259 2024-02-20 02:46:16.02 2024-02-20 02:46:16.02 8100 TIP 432101 20454 6007262 2024-02-20 02:46:19.323 2024-02-20 02:46:19.323 9000 FEE 432101 21539 6007263 2024-02-20 02:46:19.323 2024-02-20 02:46:19.323 81000 TIP 432101 20906 6007290 2024-02-20 02:47:49.535 2024-02-20 02:47:49.535 1000 FEE 432120 18291 6007303 2024-02-20 02:49:15.377 2024-02-20 02:49:15.377 500 FEE 431830 16753 6007304 2024-02-20 02:49:15.377 2024-02-20 02:49:15.377 4500 TIP 431830 8796 6007314 2024-02-20 02:49:59.096 2024-02-20 02:49:59.096 500 FEE 430859 4304 6007315 2024-02-20 02:49:59.096 2024-02-20 02:49:59.096 4500 TIP 430859 21083 6007323 2024-02-20 02:50:13.441 2024-02-20 02:50:13.441 1000 FEE 432080 20647 6007324 2024-02-20 02:50:13.441 2024-02-20 02:50:13.441 9000 TIP 432080 11158 6007332 2024-02-20 02:52:55.749 2024-02-20 02:52:55.749 3300 FEE 432088 8162 6007333 2024-02-20 02:52:55.749 2024-02-20 02:52:55.749 29700 TIP 432088 1618 6007336 2024-02-20 02:52:56.535 2024-02-20 02:52:56.535 3300 FEE 432088 12959 6007337 2024-02-20 02:52:56.535 2024-02-20 02:52:56.535 29700 TIP 432088 18180 6007342 2024-02-20 02:53:00.196 2024-02-20 02:53:00.196 3300 FEE 431844 5578 6007343 2024-02-20 02:53:00.196 2024-02-20 02:53:00.196 29700 TIP 431844 1273 6007357 2024-02-20 02:54:11.668 2024-02-20 02:54:11.668 1000 FEE 432126 17166 6007379 2024-02-20 03:02:50.687 2024-02-20 03:02:50.687 1000 FEE 432132 12507 6007382 2024-02-20 03:02:54.049 2024-02-20 03:02:54.049 3300 FEE 432088 763 6007383 2024-02-20 03:02:54.049 2024-02-20 03:02:54.049 29700 TIP 432088 8498 6007431 2024-02-20 03:09:39.404 2024-02-20 03:09:39.404 100000 FEE 432135 15161 6007432 2024-02-20 03:10:00.676 2024-02-20 03:10:00.676 1000 FEE 431807 2780 6007433 2024-02-20 03:10:00.676 2024-02-20 03:10:00.676 9000 TIP 431807 19583 6007450 2024-02-20 03:11:03.929 2024-02-20 03:11:03.929 2300 FEE 432132 17415 6007451 2024-02-20 03:11:03.929 2024-02-20 03:11:03.929 20700 TIP 432132 17552 6007454 2024-02-20 03:11:08.825 2024-02-20 03:11:08.825 2300 FEE 432132 20276 6007455 2024-02-20 03:11:08.825 2024-02-20 03:11:08.825 20700 TIP 432132 5495 6007462 2024-02-20 03:11:09.3 2024-02-20 03:11:09.3 2300 FEE 432132 20006 6007463 2024-02-20 03:11:09.3 2024-02-20 03:11:09.3 20700 TIP 432132 19759 6007465 2024-02-20 03:11:17.053 2024-02-20 03:11:17.053 2300 FEE 432121 19690 6007466 2024-02-20 03:11:17.053 2024-02-20 03:11:17.053 20700 TIP 432121 9551 6007487 2024-02-20 03:14:05.948 2024-02-20 03:14:05.948 1000 FEE 430795 15161 6007488 2024-02-20 03:14:05.948 2024-02-20 03:14:05.948 9000 TIP 430795 15728 6007497 2024-02-20 03:15:04.255 2024-02-20 03:15:04.255 8300 FEE 432113 4768 6007498 2024-02-20 03:15:04.255 2024-02-20 03:15:04.255 74700 TIP 432113 12169 6007515 2024-02-20 03:15:08.278 2024-02-20 03:15:08.278 8300 FEE 431844 9517 6007516 2024-02-20 03:15:08.278 2024-02-20 03:15:08.278 74700 TIP 431844 9552 6007525 2024-02-20 03:16:46.244 2024-02-20 03:16:46.244 400 FEE 432127 5761 6007526 2024-02-20 03:16:46.244 2024-02-20 03:16:46.244 3600 TIP 432127 3706 6007536 2024-02-20 03:17:22.913 2024-02-20 03:17:22.913 400 FEE 432119 19292 6007537 2024-02-20 03:17:22.913 2024-02-20 03:17:22.913 3600 TIP 432119 2576 6007538 2024-02-20 03:17:31.567 2024-02-20 03:17:31.567 400 FEE 432117 1705 6007539 2024-02-20 03:17:31.567 2024-02-20 03:17:31.567 3600 TIP 432117 20090 6007562 2024-02-20 03:19:24.094 2024-02-20 03:19:24.094 1000 FEE 431896 18909 6007563 2024-02-20 03:19:24.094 2024-02-20 03:19:24.094 9000 TIP 431896 21624 6007624 2024-02-20 03:30:46.572 2024-02-20 03:30:46.572 1000 FEE 432001 21072 6007625 2024-02-20 03:30:46.572 2024-02-20 03:30:46.572 9000 TIP 432001 19924 6007635 2024-02-20 03:31:41.991 2024-02-20 03:31:41.991 1000 FEE 432026 1596 6007636 2024-02-20 03:31:41.991 2024-02-20 03:31:41.991 9000 TIP 432026 13249 6007699 2024-02-20 03:33:31.259 2024-02-20 03:33:31.259 0 FEE 432146 21482 6007706 2024-02-20 03:33:40.531 2024-02-20 03:33:40.531 1000 FEE 431953 20110 6007707 2024-02-20 03:33:40.531 2024-02-20 03:33:40.531 9000 TIP 431953 10719 6007727 2024-02-20 03:36:37.209 2024-02-20 03:36:37.209 2100 FEE 432088 19142 6007728 2024-02-20 03:36:37.209 2024-02-20 03:36:37.209 18900 TIP 432088 16830 6007763 2024-02-20 03:43:06.734 2024-02-20 03:43:06.734 1000 DONT_LIKE_THIS 432129 16562 6007766 2024-02-20 03:43:53.607 2024-02-20 03:43:53.607 1000 FEE 431869 8506 6007767 2024-02-20 03:43:53.607 2024-02-20 03:43:53.607 9000 TIP 431869 19198 6007781 2024-02-20 03:47:08.518 2024-02-20 03:47:08.518 1000 FEE 432145 4973 6007782 2024-02-20 03:47:08.518 2024-02-20 03:47:08.518 9000 TIP 432145 7389 6007783 2024-02-20 03:47:08.657 2024-02-20 03:47:08.657 1000 FEE 432145 9026 6007784 2024-02-20 03:47:08.657 2024-02-20 03:47:08.657 9000 TIP 432145 9969 6007787 2024-02-20 03:47:08.735 2024-02-20 03:47:08.735 1000 FEE 432145 5171 6007788 2024-02-20 03:47:08.735 2024-02-20 03:47:08.735 9000 TIP 432145 9332 6007791 2024-02-20 03:47:09.504 2024-02-20 03:47:09.504 1000 FEE 432145 1039 6007792 2024-02-20 03:47:09.504 2024-02-20 03:47:09.504 9000 TIP 432145 708 6007843 2024-02-20 04:03:56.239 2024-02-20 04:03:56.239 1000 FEE 432155 11491 6007844 2024-02-20 04:03:56.239 2024-02-20 04:03:56.239 9000 TIP 432155 4768 6007863 2024-02-20 04:08:25.8 2024-02-20 04:08:25.8 2100 FEE 432155 3304 6007864 2024-02-20 04:08:25.8 2024-02-20 04:08:25.8 18900 TIP 432155 1596 6007873 2024-02-20 04:11:12.453 2024-02-20 04:11:12.453 1000 FEE 432162 21391 6007882 2024-02-20 04:12:52.483 2024-02-20 04:12:52.483 2100 FEE 432102 7125 6007883 2024-02-20 04:12:52.483 2024-02-20 04:12:52.483 18900 TIP 432102 756 6007932 2024-02-20 04:31:34.52 2024-02-20 04:31:34.52 2100 FEE 432088 699 6007933 2024-02-20 04:31:34.52 2024-02-20 04:31:34.52 18900 TIP 432088 2614 6007958 2024-02-20 04:43:57.631 2024-02-20 04:43:57.631 2500 FEE 432124 20117 6007959 2024-02-20 04:43:57.631 2024-02-20 04:43:57.631 22500 TIP 432124 14941 6007981 2024-02-20 04:53:25.083 2024-02-20 04:53:25.083 1000 FEE 431465 19854 6007982 2024-02-20 04:53:25.083 2024-02-20 04:53:25.083 9000 TIP 431465 20901 6007997 2024-02-20 04:57:05.293 2024-02-20 04:57:05.293 1000 FEE 432172 7847 6008008 2024-02-20 05:00:20.688 2024-02-20 05:00:20.688 800 FEE 432166 21556 6008009 2024-02-20 05:00:20.688 2024-02-20 05:00:20.688 7200 TIP 432166 1465 6006860 2024-02-20 01:51:03.992 2024-02-20 01:51:03.992 1000 STREAM 141924 5427 6006885 2024-02-20 01:53:05.381 2024-02-20 01:53:05.381 1000 STREAM 141924 9551 6006942 2024-02-20 01:54:04.037 2024-02-20 01:54:04.037 1000 STREAM 141924 20979 6006945 2024-02-20 01:55:04.079 2024-02-20 01:55:04.079 1000 STREAM 141924 18507 6006948 2024-02-20 01:56:05.37 2024-02-20 01:56:05.37 1000 STREAM 141924 623 6006951 2024-02-20 01:57:04.083 2024-02-20 01:57:04.083 1000 STREAM 141924 6327 6006960 2024-02-20 02:01:04.386 2024-02-20 02:01:04.386 1000 STREAM 141924 19941 6006963 2024-02-20 02:02:02.446 2024-02-20 02:02:02.446 1000 STREAM 141924 10554 6006964 2024-02-20 02:03:04.423 2024-02-20 02:03:04.423 1000 STREAM 141924 8713 6006966 2024-02-20 02:04:04.417 2024-02-20 02:04:04.417 1000 STREAM 141924 18448 6006977 2024-02-20 02:05:04.441 2024-02-20 02:05:04.441 1000 STREAM 141924 21413 6006978 2024-02-20 02:06:04.453 2024-02-20 02:06:04.453 1000 STREAM 141924 13763 6006990 2024-02-20 02:10:04.55 2024-02-20 02:10:04.55 1000 STREAM 141924 15703 6007013 2024-02-20 02:16:04.646 2024-02-20 02:16:04.646 1000 STREAM 141924 5538 6007041 2024-02-20 02:20:04.697 2024-02-20 02:20:04.697 1000 STREAM 141924 21369 6007048 2024-02-20 02:21:04.71 2024-02-20 02:21:04.71 1000 STREAM 141924 19987 6007110 2024-02-20 02:23:04.722 2024-02-20 02:23:04.722 1000 STREAM 141924 624 6007125 2024-02-20 02:25:04.766 2024-02-20 02:25:04.766 1000 STREAM 141924 5597 6007126 2024-02-20 02:26:02.747 2024-02-20 02:26:02.747 1000 STREAM 141924 8162 6007131 2024-02-20 02:27:04.771 2024-02-20 02:27:04.771 1000 STREAM 141924 688 6007138 2024-02-20 02:28:02.797 2024-02-20 02:28:02.797 1000 STREAM 141924 2543 6007143 2024-02-20 02:31:04.849 2024-02-20 02:31:04.849 1000 STREAM 141924 16808 6007161 2024-02-20 02:33:02.856 2024-02-20 02:33:02.856 1000 STREAM 141924 7395 6007196 2024-02-20 02:36:04.931 2024-02-20 02:36:04.931 1000 STREAM 141924 1726 6007213 2024-02-20 02:37:02.934 2024-02-20 02:37:02.934 1000 STREAM 141924 21040 6007221 2024-02-20 02:38:04.969 2024-02-20 02:38:04.969 1000 STREAM 141924 18264 6007224 2024-02-20 02:39:02.96 2024-02-20 02:39:02.96 1000 STREAM 141924 16059 6007230 2024-02-20 02:40:05.018 2024-02-20 02:40:05.018 1000 STREAM 141924 18528 6007231 2024-02-20 02:41:02.998 2024-02-20 02:41:02.998 1000 STREAM 141924 16505 6007232 2024-02-20 02:42:05.044 2024-02-20 02:42:05.044 1000 STREAM 141924 21247 6007233 2024-02-20 02:43:03.019 2024-02-20 02:43:03.019 1000 STREAM 141924 9339 6007234 2024-02-20 02:44:05.034 2024-02-20 02:44:05.034 1000 STREAM 141924 3709 6007242 2024-02-20 02:45:05.062 2024-02-20 02:45:05.062 1000 STREAM 141924 4173 6007285 2024-02-20 02:47:05.08 2024-02-20 02:47:05.08 1000 STREAM 141924 880 6007293 2024-02-20 02:48:03.077 2024-02-20 02:48:03.077 1000 STREAM 141924 6310 6007300 2024-02-20 02:49:05.092 2024-02-20 02:49:05.092 1000 STREAM 141924 10013 6007326 2024-02-20 02:51:05.11 2024-02-20 02:51:05.11 1000 STREAM 141924 21614 6007330 2024-02-20 02:52:03.148 2024-02-20 02:52:03.148 1000 STREAM 141924 5828 6007350 2024-02-20 02:53:05.133 2024-02-20 02:53:05.133 1000 STREAM 141924 1881 6007371 2024-02-20 02:58:05.228 2024-02-20 02:58:05.228 1000 STREAM 141924 20245 6007376 2024-02-20 03:01:05.263 2024-02-20 03:01:05.263 1000 STREAM 141924 14857 6007401 2024-02-20 03:05:05.322 2024-02-20 03:05:05.322 1000 STREAM 141924 2639 6007413 2024-02-20 03:07:05.332 2024-02-20 03:07:05.332 1000 STREAM 141924 16848 6007475 2024-02-20 03:12:05.392 2024-02-20 03:12:05.392 1000 STREAM 141924 19021 6006970 2024-02-20 02:04:22.89 2024-02-20 02:04:22.89 74700 TIP 432085 4474 6006973 2024-02-20 02:04:23.18 2024-02-20 02:04:23.18 8300 FEE 432085 8506 6006974 2024-02-20 02:04:23.18 2024-02-20 02:04:23.18 74700 TIP 432085 2077 6006991 2024-02-20 02:10:56.978 2024-02-20 02:10:56.978 1000 FEE 432095 1836 6007022 2024-02-20 02:16:18.397 2024-02-20 02:16:18.397 1000 FEE 432091 20871 6007023 2024-02-20 02:16:18.397 2024-02-20 02:16:18.397 9000 TIP 432091 11523 6007034 2024-02-20 02:17:08.391 2024-02-20 02:17:08.391 1000 FEE 432099 6687 6007085 2024-02-20 02:22:17.893 2024-02-20 02:22:17.893 500 FEE 430861 1549 6007086 2024-02-20 02:22:17.893 2024-02-20 02:22:17.893 4500 TIP 430861 666 6007123 2024-02-20 02:23:52.033 2024-02-20 02:23:52.033 1000 FEE 432104 9421 6007127 2024-02-20 02:26:53.374 2024-02-20 02:26:53.374 100 FEE 430952 4395 6007128 2024-02-20 02:26:53.374 2024-02-20 02:26:53.374 900 TIP 430952 18403 6007150 2024-02-20 02:31:28.597 2024-02-20 02:31:28.597 0 FEE 432105 1745 6007163 2024-02-20 02:33:58.736 2024-02-20 02:33:58.736 2100 FEE 430920 17513 6007164 2024-02-20 02:33:58.736 2024-02-20 02:33:58.736 18900 TIP 430920 6160 6007182 2024-02-20 02:35:08.503 2024-02-20 02:35:08.503 2100 FEE 429517 1652 6007183 2024-02-20 02:35:08.503 2024-02-20 02:35:08.503 18900 TIP 429517 17455 6007207 2024-02-20 02:36:37.185 2024-02-20 02:36:37.185 2100 FEE 430185 18452 6007208 2024-02-20 02:36:37.185 2024-02-20 02:36:37.185 18900 TIP 430185 8726 6007260 2024-02-20 02:46:16.428 2024-02-20 02:46:16.428 1000 FEE 432117 20220 6007270 2024-02-20 02:46:37.857 2024-02-20 02:46:37.857 1000 FEE 432119 5597 6007271 2024-02-20 02:46:46.434 2024-02-20 02:46:46.434 500 FEE 432088 12779 6007272 2024-02-20 02:46:46.434 2024-02-20 02:46:46.434 4500 TIP 432088 974 6007275 2024-02-20 02:46:49.094 2024-02-20 02:46:49.094 500 FEE 431800 766 6007276 2024-02-20 02:46:49.094 2024-02-20 02:46:49.094 4500 TIP 431800 20573 6007277 2024-02-20 02:46:49.664 2024-02-20 02:46:49.664 1000 FEE 432105 8287 6007278 2024-02-20 02:46:49.664 2024-02-20 02:46:49.664 9000 TIP 432105 19189 6007286 2024-02-20 02:47:25.074 2024-02-20 02:47:25.074 1000 FEE 432091 1720 6007287 2024-02-20 02:47:25.074 2024-02-20 02:47:25.074 9000 TIP 432091 20998 6007307 2024-02-20 02:49:46.138 2024-02-20 02:49:46.138 1000 FEE 432121 9307 6007312 2024-02-20 02:49:58.384 2024-02-20 02:49:58.384 500 FEE 430859 1959 6007313 2024-02-20 02:49:58.384 2024-02-20 02:49:58.384 4500 TIP 430859 3461 6007325 2024-02-20 02:50:27.038 2024-02-20 02:50:27.038 1000 FEE 432122 17094 6007340 2024-02-20 02:52:59.288 2024-02-20 02:52:59.288 3300 FEE 431844 1310 6007341 2024-02-20 02:52:59.288 2024-02-20 02:52:59.288 29700 TIP 431844 4225 6007344 2024-02-20 02:53:03.068 2024-02-20 02:53:03.068 500 FEE 432003 20756 6007345 2024-02-20 02:53:03.068 2024-02-20 02:53:03.068 4500 TIP 432003 21413 6007380 2024-02-20 03:02:53.842 2024-02-20 03:02:53.842 3300 FEE 432088 4692 6007381 2024-02-20 03:02:53.842 2024-02-20 03:02:53.842 29700 TIP 432088 16988 6007460 2024-02-20 03:11:09.157 2024-02-20 03:11:09.157 2300 FEE 432132 2309 6007461 2024-02-20 03:11:09.157 2024-02-20 03:11:09.157 20700 TIP 432132 1000 6007471 2024-02-20 03:11:49.784 2024-02-20 03:11:49.784 2300 FEE 432113 3456 6007472 2024-02-20 03:11:49.784 2024-02-20 03:11:49.784 20700 TIP 432113 18372 6007491 2024-02-20 03:14:47.035 2024-02-20 03:14:47.035 1000 FEE 432139 1836 6007527 2024-02-20 03:16:49.288 2024-02-20 03:16:49.288 400 FEE 432126 11523 6007528 2024-02-20 03:16:49.288 2024-02-20 03:16:49.288 3600 TIP 432126 2640 6007564 2024-02-20 03:19:43.261 2024-02-20 03:19:43.261 1000 FEE 431926 8400 6007565 2024-02-20 03:19:43.261 2024-02-20 03:19:43.261 9000 TIP 431926 21287 6007608 2024-02-20 03:30:31.536 2024-02-20 03:30:31.536 1000 FEE 431986 19809 6007609 2024-02-20 03:30:31.536 2024-02-20 03:30:31.536 9000 TIP 431986 1008 6007641 2024-02-20 03:31:44.507 2024-02-20 03:31:44.507 1000 FEE 432026 13046 6007642 2024-02-20 03:31:44.507 2024-02-20 03:31:44.507 9000 TIP 432026 5519 6007651 2024-02-20 03:31:55.839 2024-02-20 03:31:55.839 1000 FEE 432046 1047 6007652 2024-02-20 03:31:55.839 2024-02-20 03:31:55.839 9000 TIP 432046 11760 6007663 2024-02-20 03:32:31.503 2024-02-20 03:32:31.503 100 FEE 431844 20490 6007664 2024-02-20 03:32:31.503 2024-02-20 03:32:31.503 900 TIP 431844 831 6007667 2024-02-20 03:32:32.463 2024-02-20 03:32:32.463 100 FEE 431844 9833 6007668 2024-02-20 03:32:32.463 2024-02-20 03:32:32.463 900 TIP 431844 12218 6007704 2024-02-20 03:33:38.483 2024-02-20 03:33:38.483 1000 FEE 431945 20998 6007705 2024-02-20 03:33:38.483 2024-02-20 03:33:38.483 9000 TIP 431945 759 6007708 2024-02-20 03:33:41.49 2024-02-20 03:33:41.49 1000 FEE 431953 18220 6007709 2024-02-20 03:33:41.49 2024-02-20 03:33:41.49 9000 TIP 431953 8498 6007738 2024-02-20 03:41:05.821 2024-02-20 03:41:05.821 8300 FEE 432135 18817 6007739 2024-02-20 03:41:05.821 2024-02-20 03:41:05.821 74700 TIP 432135 4027 6007742 2024-02-20 03:41:05.977 2024-02-20 03:41:05.977 8300 FEE 432135 3544 6007743 2024-02-20 03:41:05.977 2024-02-20 03:41:05.977 74700 TIP 432135 687 6007802 2024-02-20 03:52:59.365 2024-02-20 03:52:59.365 1000 FEE 431804 722 6007803 2024-02-20 03:52:59.365 2024-02-20 03:52:59.365 9000 TIP 431804 21624 6007828 2024-02-20 03:59:20.812 2024-02-20 03:59:20.812 1000 FEE 431378 10016 6007829 2024-02-20 03:59:20.812 2024-02-20 03:59:20.812 9000 TIP 431378 18452 6007867 2024-02-20 04:09:11.913 2024-02-20 04:09:11.913 1000 FEE 432159 4798 6007892 2024-02-20 04:19:53.248 2024-02-20 04:19:53.248 700 FEE 430675 12708 6007893 2024-02-20 04:19:53.248 2024-02-20 04:19:53.248 6300 TIP 430675 658 6007919 2024-02-20 04:27:32.12 2024-02-20 04:27:32.12 1000 FEE 432167 1823 6007927 2024-02-20 04:30:01.469 2024-02-20 04:30:01.469 2100 FEE 431896 2077 6007928 2024-02-20 04:30:01.469 2024-02-20 04:30:01.469 18900 TIP 431896 17331 6007944 2024-02-20 04:38:47.97 2024-02-20 04:38:47.97 400 FEE 432161 14545 6007945 2024-02-20 04:38:47.97 2024-02-20 04:38:47.97 3600 TIP 432161 1354 6008025 2024-02-20 05:07:18.968 2024-02-20 05:07:18.968 2100 FEE 432129 11145 6008026 2024-02-20 05:07:18.968 2024-02-20 05:07:18.968 18900 TIP 432129 18528 6008047 2024-02-20 05:18:34.446 2024-02-20 05:18:34.446 7700 FEE 431940 15588 6008048 2024-02-20 05:18:34.446 2024-02-20 05:18:34.446 69300 TIP 431940 14295 6008057 2024-02-20 05:20:21.503 2024-02-20 05:20:21.503 3300 FEE 432137 14449 6008058 2024-02-20 05:20:21.503 2024-02-20 05:20:21.503 29700 TIP 432137 20588 6008059 2024-02-20 05:20:21.995 2024-02-20 05:20:21.995 3300 FEE 432137 21233 6008060 2024-02-20 05:20:21.995 2024-02-20 05:20:21.995 29700 TIP 432137 13398 6008070 2024-02-20 05:23:32.313 2024-02-20 05:23:32.313 1000 FEE 432113 14905 6008071 2024-02-20 05:23:32.313 2024-02-20 05:23:32.313 9000 TIP 432113 8926 6008076 2024-02-20 05:23:41.038 2024-02-20 05:23:41.038 1000 FEE 432113 21494 6008077 2024-02-20 05:23:41.038 2024-02-20 05:23:41.038 9000 TIP 432113 21627 6008078 2024-02-20 05:23:41.251 2024-02-20 05:23:41.251 1000 FEE 432113 9906 6008079 2024-02-20 05:23:41.251 2024-02-20 05:23:41.251 9000 TIP 432113 5757 6008161 2024-02-20 05:49:04.111 2024-02-20 05:49:04.111 1000 FEE 431816 18393 6008162 2024-02-20 05:49:04.111 2024-02-20 05:49:04.111 9000 TIP 431816 20310 6008171 2024-02-20 05:49:07.445 2024-02-20 05:49:07.445 1000 FEE 431816 3683 6008172 2024-02-20 05:49:07.445 2024-02-20 05:49:07.445 9000 TIP 431816 20674 6008175 2024-02-20 05:49:07.858 2024-02-20 05:49:07.858 1000 FEE 431816 19322 6008176 2024-02-20 05:49:07.858 2024-02-20 05:49:07.858 9000 TIP 431816 1046 6008203 2024-02-20 05:49:12.781 2024-02-20 05:49:12.781 1000 FEE 431816 15806 6008204 2024-02-20 05:49:12.781 2024-02-20 05:49:12.781 9000 TIP 431816 8985 6008215 2024-02-20 05:49:14.478 2024-02-20 05:49:14.478 2000 FEE 431816 19664 6008216 2024-02-20 05:49:14.478 2024-02-20 05:49:14.478 18000 TIP 431816 20680 6008251 2024-02-20 06:09:31.504 2024-02-20 06:09:31.504 2100 FEE 431844 18819 6008252 2024-02-20 06:09:31.504 2024-02-20 06:09:31.504 18900 TIP 431844 3656 6008296 2024-02-20 06:31:49.118 2024-02-20 06:31:49.118 1000 FEE 432185 12821 6008315 2024-02-20 06:42:57.908 2024-02-20 06:42:57.908 12800 FEE 431804 11288 6008316 2024-02-20 06:42:57.908 2024-02-20 06:42:57.908 115200 TIP 431804 12188 6006983 2024-02-20 02:07:55.76 2024-02-20 02:07:55.76 1000 FEE 432094 20551 6007002 2024-02-20 02:14:01.312 2024-02-20 02:14:01.312 10000 FEE 431387 11395 6007003 2024-02-20 02:14:01.312 2024-02-20 02:14:01.312 90000 TIP 431387 21058 6007009 2024-02-20 02:15:11.082 2024-02-20 02:15:11.082 1000 FEE 430795 19557 6007010 2024-02-20 02:15:11.082 2024-02-20 02:15:11.082 9000 TIP 430795 3409 6007014 2024-02-20 02:16:17.241 2024-02-20 02:16:17.241 1000 FEE 432091 15196 6007015 2024-02-20 02:16:17.241 2024-02-20 02:16:17.241 9000 TIP 432091 18280 6007032 2024-02-20 02:16:58.753 2024-02-20 02:16:58.753 1000 FEE 432098 7395 6007059 2024-02-20 02:21:23.313 2024-02-20 02:21:23.313 800 FEE 420785 11192 6007060 2024-02-20 02:21:23.313 2024-02-20 02:21:23.313 7200 TIP 420785 16789 6007069 2024-02-20 02:21:24.186 2024-02-20 02:21:24.186 800 FEE 420785 5449 6007070 2024-02-20 02:21:24.186 2024-02-20 02:21:24.186 7200 TIP 420785 2757 6007079 2024-02-20 02:22:13.786 2024-02-20 02:22:13.786 500 FEE 430861 11073 6007080 2024-02-20 02:22:13.786 2024-02-20 02:22:13.786 4500 TIP 430861 19507 6007096 2024-02-20 02:22:50 2024-02-20 02:22:50 500 FEE 431401 16769 6007097 2024-02-20 02:22:50 2024-02-20 02:22:50 4500 TIP 431401 1428 6007142 2024-02-20 02:30:49.12 2024-02-20 02:30:49.12 21000 FEE 432106 21494 6007159 2024-02-20 02:32:09.713 2024-02-20 02:32:09.713 2100 FEE 432088 5758 6007160 2024-02-20 02:32:09.713 2024-02-20 02:32:09.713 18900 TIP 432088 19435 6007180 2024-02-20 02:35:06.061 2024-02-20 02:35:06.061 1000 FEE 431844 20299 6007181 2024-02-20 02:35:06.061 2024-02-20 02:35:06.061 9000 TIP 431844 2098 6007200 2024-02-20 02:36:17.42 2024-02-20 02:36:17.42 1000 FEE 432111 1567 6007201 2024-02-20 02:36:25.237 2024-02-20 02:36:25.237 100000 FEE 429517 20502 6007202 2024-02-20 02:36:25.237 2024-02-20 02:36:25.237 900000 TIP 429517 688 6007240 2024-02-20 02:45:04.745 2024-02-20 02:45:04.745 900 FEE 432113 2652 6007241 2024-02-20 02:45:04.745 2024-02-20 02:45:04.745 8100 TIP 432113 4415 6007243 2024-02-20 02:45:05.911 2024-02-20 02:45:05.911 9000 FEE 432113 21334 6007244 2024-02-20 02:45:05.911 2024-02-20 02:45:05.911 81000 TIP 432113 895 6007247 2024-02-20 02:45:07.368 2024-02-20 02:45:07.368 900 FEE 432102 21242 6007248 2024-02-20 02:45:07.368 2024-02-20 02:45:07.368 8100 TIP 432102 8508 6007273 2024-02-20 02:46:47.439 2024-02-20 02:46:47.439 500 FEE 430626 4083 6007274 2024-02-20 02:46:47.439 2024-02-20 02:46:47.439 4500 TIP 430626 18051 6007318 2024-02-20 02:50:00.667 2024-02-20 02:50:00.667 500 FEE 430859 18403 6007319 2024-02-20 02:50:00.667 2024-02-20 02:50:00.667 4500 TIP 430859 20187 6007328 2024-02-20 02:51:56.028 2024-02-20 02:51:56.028 2100 FEE 432003 4378 6007329 2024-02-20 02:51:56.028 2024-02-20 02:51:56.028 18900 TIP 432003 19303 6007334 2024-02-20 02:52:56.29 2024-02-20 02:52:56.29 3300 FEE 432088 19043 6007335 2024-02-20 02:52:56.29 2024-02-20 02:52:56.29 29700 TIP 432088 2577 6007351 2024-02-20 02:53:06.328 2024-02-20 02:53:06.328 500 FEE 431844 19905 6007352 2024-02-20 02:53:06.328 2024-02-20 02:53:06.328 4500 TIP 431844 9347 6007355 2024-02-20 02:53:50.05 2024-02-20 02:53:50.05 1000 FEE 432125 8416 6007389 2024-02-20 03:03:11.201 2024-02-20 03:03:11.201 1000 FEE 431816 18640 6007390 2024-02-20 03:03:11.201 2024-02-20 03:03:11.201 9000 TIP 431816 13100 6007405 2024-02-20 03:07:00.531 2024-02-20 03:07:00.531 1000 FEE 431401 11516 6007406 2024-02-20 03:07:00.531 2024-02-20 03:07:00.531 9000 TIP 431401 18423 6007469 2024-02-20 03:11:45.968 2024-02-20 03:11:45.968 1000 FEE 431942 704 6007470 2024-02-20 03:11:45.968 2024-02-20 03:11:45.968 9000 TIP 431942 11091 6007476 2024-02-20 03:12:05.79 2024-02-20 03:12:05.79 0 FEE 432135 19193 6007484 2024-02-20 03:13:36.102 2024-02-20 03:13:36.102 1000 FEE 430859 19198 6007485 2024-02-20 03:13:36.102 2024-02-20 03:13:36.102 9000 TIP 430859 5520 6007505 2024-02-20 03:15:04.695 2024-02-20 03:15:04.695 8300 FEE 432113 20110 6007506 2024-02-20 03:15:04.695 2024-02-20 03:15:04.695 74700 TIP 432113 20756 6007507 2024-02-20 03:15:04.808 2024-02-20 03:15:04.808 8300 FEE 432113 20045 6007508 2024-02-20 03:15:04.808 2024-02-20 03:15:04.808 74700 TIP 432113 20353 6007513 2024-02-20 03:15:05.658 2024-02-20 03:15:05.658 8300 FEE 432113 10731 6007514 2024-02-20 03:15:05.658 2024-02-20 03:15:05.658 74700 TIP 432113 663 6007559 2024-02-20 03:18:50.028 2024-02-20 03:18:50.028 1000 FEE 432141 20015 6007584 2024-02-20 03:21:44.54 2024-02-20 03:21:44.54 2300 FEE 430710 670 6007585 2024-02-20 03:21:44.54 2024-02-20 03:21:44.54 20700 TIP 430710 17838 6007637 2024-02-20 03:31:42.731 2024-02-20 03:31:42.731 1000 FEE 432026 7395 6007638 2024-02-20 03:31:42.731 2024-02-20 03:31:42.731 9000 TIP 432026 9529 6007643 2024-02-20 03:31:53.692 2024-02-20 03:31:53.692 1000 FEE 432046 14990 6007644 2024-02-20 03:31:53.692 2024-02-20 03:31:53.692 9000 TIP 432046 697 6007661 2024-02-20 03:32:31.146 2024-02-20 03:32:31.146 100 FEE 431844 7960 6007662 2024-02-20 03:32:31.146 2024-02-20 03:32:31.146 900 TIP 431844 4388 6007677 2024-02-20 03:32:34.253 2024-02-20 03:32:34.253 100 FEE 431844 730 6007678 2024-02-20 03:32:34.253 2024-02-20 03:32:34.253 900 TIP 431844 12261 6007679 2024-02-20 03:32:34.469 2024-02-20 03:32:34.469 100 FEE 431844 21501 6007680 2024-02-20 03:32:34.469 2024-02-20 03:32:34.469 900 TIP 431844 5129 6007691 2024-02-20 03:32:36.325 2024-02-20 03:32:36.325 100 FEE 431844 2232 6007692 2024-02-20 03:32:36.325 2024-02-20 03:32:36.325 900 TIP 431844 628 6007693 2024-02-20 03:32:49.802 2024-02-20 03:32:49.802 1000 FEE 432150 16212 6007713 2024-02-20 03:34:12.499 2024-02-20 03:34:12.499 2100 FEE 432101 10342 6007714 2024-02-20 03:34:12.499 2024-02-20 03:34:12.499 18900 TIP 432101 20799 6007734 2024-02-20 03:39:38.638 2024-02-20 03:39:38.638 0 FEE 432146 20353 6007752 2024-02-20 03:41:07.06 2024-02-20 03:41:07.06 8300 FEE 432135 1006 6007753 2024-02-20 03:41:07.06 2024-02-20 03:41:07.06 74700 TIP 432135 16562 6007760 2024-02-20 03:43:00.11 2024-02-20 03:43:00.11 300 FEE 432151 12738 6007761 2024-02-20 03:43:00.11 2024-02-20 03:43:00.11 2700 TIP 432151 2347 6007770 2024-02-20 03:43:54.18 2024-02-20 03:43:54.18 1000 FEE 431869 15100 6007771 2024-02-20 03:43:54.18 2024-02-20 03:43:54.18 9000 TIP 431869 18731 6007772 2024-02-20 03:43:54.581 2024-02-20 03:43:54.581 1000 FEE 431869 759 6007773 2024-02-20 03:43:54.581 2024-02-20 03:43:54.581 9000 TIP 431869 21247 6007778 2024-02-20 03:46:36.117 2024-02-20 03:46:36.117 1000 FEE 432131 9350 6007779 2024-02-20 03:46:36.117 2024-02-20 03:46:36.117 9000 TIP 432131 18387 6007804 2024-02-20 03:52:59.878 2024-02-20 03:52:59.878 1000 FEE 431804 16354 6007805 2024-02-20 03:52:59.878 2024-02-20 03:52:59.878 9000 TIP 431804 18704 6007820 2024-02-20 03:59:10.948 2024-02-20 03:59:10.948 1000 FEE 431294 21033 6007821 2024-02-20 03:59:10.948 2024-02-20 03:59:10.948 9000 TIP 431294 21262 6007832 2024-02-20 03:59:28.046 2024-02-20 03:59:28.046 100000 FEE 432155 6594 6007838 2024-02-20 04:01:44.442 2024-02-20 04:01:44.442 1000 FEE 432158 2961 6007845 2024-02-20 04:03:56.736 2024-02-20 04:03:56.736 1000 FEE 432155 21014 6007846 2024-02-20 04:03:56.736 2024-02-20 04:03:56.736 9000 TIP 432155 11164 6007851 2024-02-20 04:04:58.61 2024-02-20 04:04:58.61 3300 FEE 432088 20811 6007852 2024-02-20 04:04:58.61 2024-02-20 04:04:58.61 29700 TIP 432088 21398 6007853 2024-02-20 04:04:58.772 2024-02-20 04:04:58.772 3300 FEE 432088 1713 6007854 2024-02-20 04:04:58.772 2024-02-20 04:04:58.772 29700 TIP 432088 16329 6007859 2024-02-20 04:06:48.68 2024-02-20 04:06:48.68 5100 FEE 432060 2703 6007860 2024-02-20 04:06:48.68 2024-02-20 04:06:48.68 45900 TIP 432060 7809 6007880 2024-02-20 04:12:43.199 2024-02-20 04:12:43.199 2100 FEE 432101 17041 6007881 2024-02-20 04:12:43.199 2024-02-20 04:12:43.199 18900 TIP 432101 10554 6007910 2024-02-20 04:24:09.371 2024-02-20 04:24:09.371 4400 FEE 417690 770 6007911 2024-02-20 04:24:09.371 2024-02-20 04:24:09.371 39600 TIP 417690 5427 6007920 2024-02-20 04:27:42.84 2024-02-20 04:27:42.84 2100 FEE 432101 14939 6007921 2024-02-20 04:27:42.84 2024-02-20 04:27:42.84 18900 TIP 432101 11885 6007931 2024-02-20 04:31:31.725 2024-02-20 04:31:31.725 21000 DONT_LIKE_THIS 432121 5308 6007951 2024-02-20 04:41:15.782 2024-02-20 04:41:15.782 2500 FEE 431856 13348 6007130 2024-02-20 02:27:03.153 2024-02-20 02:27:03.153 18900 TIP 431401 11866 6007144 2024-02-20 02:31:09.332 2024-02-20 02:31:09.332 2100 FEE 432096 21444 6007145 2024-02-20 02:31:09.332 2024-02-20 02:31:09.332 18900 TIP 432096 21070 6007148 2024-02-20 02:31:22.028 2024-02-20 02:31:22.028 2100 FEE 432106 13361 6007149 2024-02-20 02:31:22.028 2024-02-20 02:31:22.028 18900 TIP 432106 20674 6007168 2024-02-20 02:34:08.2 2024-02-20 02:34:08.2 1000 FEE 432109 3717 6007178 2024-02-20 02:35:03.556 2024-02-20 02:35:03.556 1000 FEE 431816 807 6007179 2024-02-20 02:35:03.556 2024-02-20 02:35:03.556 9000 TIP 431816 17042 6007194 2024-02-20 02:35:57.674 2024-02-20 02:35:57.674 1000 FEE 432074 777 6007195 2024-02-20 02:35:57.674 2024-02-20 02:35:57.674 9000 TIP 432074 20756 6007203 2024-02-20 02:36:33.183 2024-02-20 02:36:33.183 1000 FEE 431716 937 6007204 2024-02-20 02:36:33.183 2024-02-20 02:36:33.183 9000 TIP 431716 20970 6007227 2024-02-20 02:39:23.588 2024-02-20 02:39:23.588 1000 FEE 430408 7983 6007228 2024-02-20 02:39:23.588 2024-02-20 02:39:23.588 9000 TIP 430408 7966 6007229 2024-02-20 02:39:38.685 2024-02-20 02:39:38.685 1000 FEE 432115 12562 6007298 2024-02-20 02:48:55.952 2024-02-20 02:48:55.952 500 FEE 431926 21060 6007299 2024-02-20 02:48:55.952 2024-02-20 02:48:55.952 4500 TIP 431926 18556 6007301 2024-02-20 02:49:05.942 2024-02-20 02:49:05.942 1000 FEE 431079 15491 6007302 2024-02-20 02:49:05.942 2024-02-20 02:49:05.942 9000 TIP 431079 20163 6007320 2024-02-20 02:50:02.274 2024-02-20 02:50:02.274 1000 FEE 432077 19038 6007321 2024-02-20 02:50:02.274 2024-02-20 02:50:02.274 9000 TIP 432077 16956 6007338 2024-02-20 02:52:59.174 2024-02-20 02:52:59.174 3300 FEE 431844 814 6007339 2024-02-20 02:52:59.174 2024-02-20 02:52:59.174 29700 TIP 431844 2639 6007348 2024-02-20 02:53:04.64 2024-02-20 02:53:04.64 500 FEE 430892 19909 6007349 2024-02-20 02:53:04.64 2024-02-20 02:53:04.64 4500 TIP 430892 4027 6007374 2024-02-20 03:00:08.803 2024-02-20 03:00:08.803 100000 FEE 432129 17171 6007378 2024-02-20 03:02:42.789 2024-02-20 03:02:42.789 1000 FEE 432131 18583 6007397 2024-02-20 03:03:59.561 2024-02-20 03:03:59.561 12800 FEE 432113 18170 6007398 2024-02-20 03:03:59.561 2024-02-20 03:03:59.561 115200 TIP 432113 1673 6007400 2024-02-20 03:04:05.822 2024-02-20 03:04:05.822 1000 FEE 432133 13076 6007403 2024-02-20 03:06:59.487 2024-02-20 03:06:59.487 1000 FEE 430892 17046 6007404 2024-02-20 03:06:59.487 2024-02-20 03:06:59.487 9000 TIP 430892 6578 6007423 2024-02-20 03:09:06.951 2024-02-20 03:09:06.951 2000 FEE 430861 925 6007424 2024-02-20 03:09:06.951 2024-02-20 03:09:06.951 18000 TIP 430861 4035 6007429 2024-02-20 03:09:26.372 2024-02-20 03:09:26.372 2100 FEE 432003 21178 6007430 2024-02-20 03:09:26.372 2024-02-20 03:09:26.372 18900 TIP 432003 21501 6007438 2024-02-20 03:11:03.244 2024-02-20 03:11:03.244 2300 FEE 432132 7425 6007439 2024-02-20 03:11:03.244 2024-02-20 03:11:03.244 20700 TIP 432132 16665 6007444 2024-02-20 03:11:03.593 2024-02-20 03:11:03.593 2300 FEE 432132 3683 6007445 2024-02-20 03:11:03.593 2024-02-20 03:11:03.593 20700 TIP 432132 21469 6007446 2024-02-20 03:11:03.71 2024-02-20 03:11:03.71 2300 FEE 432132 5828 6007447 2024-02-20 03:11:03.71 2024-02-20 03:11:03.71 20700 TIP 432132 13216 6007448 2024-02-20 03:11:03.83 2024-02-20 03:11:03.83 2300 FEE 432132 2508 6007449 2024-02-20 03:11:03.83 2024-02-20 03:11:03.83 20700 TIP 432132 981 6007456 2024-02-20 03:11:08.954 2024-02-20 03:11:08.954 2300 FEE 432132 20409 6007457 2024-02-20 03:11:08.954 2024-02-20 03:11:08.954 20700 TIP 432132 673 6007478 2024-02-20 03:13:28.644 2024-02-20 03:13:28.644 1000 FEE 430859 12911 6007479 2024-02-20 03:13:28.644 2024-02-20 03:13:28.644 9000 TIP 430859 635 6007489 2024-02-20 03:14:20.636 2024-02-20 03:14:20.636 1000 FEE 432137 18830 6007490 2024-02-20 03:14:35.891 2024-02-20 03:14:35.891 1000 FEE 432138 6765 6007499 2024-02-20 03:15:04.531 2024-02-20 03:15:04.531 8300 FEE 432113 21248 6007500 2024-02-20 03:15:04.531 2024-02-20 03:15:04.531 74700 TIP 432113 17116 6007509 2024-02-20 03:15:05.235 2024-02-20 03:15:05.235 8300 FEE 432113 6260 6007510 2024-02-20 03:15:05.235 2024-02-20 03:15:05.235 74700 TIP 432113 1006 6007530 2024-02-20 03:17:09.521 2024-02-20 03:17:09.521 2100 FEE 432088 19309 6007531 2024-02-20 03:17:09.521 2024-02-20 03:17:09.521 18900 TIP 432088 21296 6007542 2024-02-20 03:17:35.564 2024-02-20 03:17:35.564 400 FEE 432116 19005 6007543 2024-02-20 03:17:35.564 2024-02-20 03:17:35.564 3600 TIP 432116 20143 6007557 2024-02-20 03:18:23.858 2024-02-20 03:18:23.858 1000 FEE 432135 646 6007558 2024-02-20 03:18:23.858 2024-02-20 03:18:23.858 9000 TIP 432135 5578 6007566 2024-02-20 03:19:54.672 2024-02-20 03:19:54.672 1000 FEE 432113 19531 6007567 2024-02-20 03:19:54.672 2024-02-20 03:19:54.672 9000 TIP 432113 19533 6007586 2024-02-20 03:21:45.204 2024-02-20 03:21:45.204 2300 FEE 430710 1208 6007587 2024-02-20 03:21:45.204 2024-02-20 03:21:45.204 20700 TIP 430710 20841 6007601 2024-02-20 03:26:38.707 2024-02-20 03:26:38.707 1000 FEE 432144 20436 6007602 2024-02-20 03:26:55.46 2024-02-20 03:26:55.46 1000 FEE 432145 18528 6007649 2024-02-20 03:31:55.282 2024-02-20 03:31:55.282 1000 FEE 432046 18402 6007650 2024-02-20 03:31:55.282 2024-02-20 03:31:55.282 9000 TIP 432046 19484 6007665 2024-02-20 03:32:32.171 2024-02-20 03:32:32.171 100 FEE 431844 1272 6007666 2024-02-20 03:32:32.171 2024-02-20 03:32:32.171 900 TIP 431844 13406 6007671 2024-02-20 03:32:32.828 2024-02-20 03:32:32.828 100 FEE 431844 19941 6007672 2024-02-20 03:32:32.828 2024-02-20 03:32:32.828 900 TIP 431844 21228 6007702 2024-02-20 03:33:33.997 2024-02-20 03:33:33.997 1000 FEE 431947 2734 6007703 2024-02-20 03:33:33.997 2024-02-20 03:33:33.997 9000 TIP 431947 20901 6007719 2024-02-20 03:34:18.539 2024-02-20 03:34:18.539 1000 FEE 432060 9330 6007720 2024-02-20 03:34:18.539 2024-02-20 03:34:18.539 9000 TIP 432060 20594 6007731 2024-02-20 03:38:07.401 2024-02-20 03:38:07.401 0 FEE 432146 20201 6007746 2024-02-20 03:41:06.342 2024-02-20 03:41:06.342 8300 FEE 432135 21103 6007747 2024-02-20 03:41:06.342 2024-02-20 03:41:06.342 74700 TIP 432135 19777 6007759 2024-02-20 03:42:46.867 2024-02-20 03:42:46.867 1000 DONT_LIKE_THIS 432149 1745 6007806 2024-02-20 03:53:00.673 2024-02-20 03:53:00.673 1000 FEE 431804 17797 6007807 2024-02-20 03:53:00.673 2024-02-20 03:53:00.673 9000 TIP 431804 6537 6007810 2024-02-20 03:54:14.865 2024-02-20 03:54:14.865 7000 FEE 432153 9353 6007824 2024-02-20 03:59:19.828 2024-02-20 03:59:19.828 1000 FEE 431378 21329 6007825 2024-02-20 03:59:19.828 2024-02-20 03:59:19.828 9000 TIP 431378 848 6007849 2024-02-20 04:04:58.441 2024-02-20 04:04:58.441 3300 FEE 432088 18524 6007850 2024-02-20 04:04:58.441 2024-02-20 04:04:58.441 29700 TIP 432088 4076 6007874 2024-02-20 04:11:31.237 2024-02-20 04:11:31.237 1000 FEE 432163 21339 6007953 2024-02-20 04:42:02.506 2024-02-20 04:42:02.506 10000 FEE 432170 21624 6007970 2024-02-20 04:45:53.028 2024-02-20 04:45:53.028 10000 FEE 430795 9084 6007971 2024-02-20 04:45:53.028 2024-02-20 04:45:53.028 90000 TIP 430795 6382 6008004 2024-02-20 05:00:18.09 2024-02-20 05:00:18.09 800 FEE 432154 2195 6008005 2024-02-20 05:00:18.09 2024-02-20 05:00:18.09 7200 TIP 432154 17517 6008055 2024-02-20 05:20:09.14 2024-02-20 05:20:09.14 3300 FEE 432137 11164 6008056 2024-02-20 05:20:09.14 2024-02-20 05:20:09.14 29700 TIP 432137 16309 6008063 2024-02-20 05:22:09.169 2024-02-20 05:22:09.169 2100 FEE 432007 12188 6008064 2024-02-20 05:22:09.169 2024-02-20 05:22:09.169 18900 TIP 432007 19967 6008150 2024-02-20 05:48:38.938 2024-02-20 05:48:38.938 400 FEE 432172 20816 6008151 2024-02-20 05:48:38.938 2024-02-20 05:48:38.938 3600 TIP 432172 20022 6008169 2024-02-20 05:49:07.236 2024-02-20 05:49:07.236 1000 FEE 431816 18177 6008170 2024-02-20 05:49:07.236 2024-02-20 05:49:07.236 9000 TIP 431816 7425 6008173 2024-02-20 05:49:07.65 2024-02-20 05:49:07.65 1000 FEE 431816 7510 6008174 2024-02-20 05:49:07.65 2024-02-20 05:49:07.65 9000 TIP 431816 5746 6008181 2024-02-20 05:49:08.47 2024-02-20 05:49:08.47 1000 FEE 431816 21455 6008182 2024-02-20 05:49:08.47 2024-02-20 05:49:08.47 9000 TIP 431816 19506 6008193 2024-02-20 05:49:09.669 2024-02-20 05:49:09.669 1000 FEE 431816 20776 6008194 2024-02-20 05:49:09.669 2024-02-20 05:49:09.669 9000 TIP 431816 1717 6007157 2024-02-20 02:31:55.928 2024-02-20 02:31:55.928 18900 TIP 432052 16440 6007162 2024-02-20 02:33:05.078 2024-02-20 02:33:05.078 1000 FEE 432108 12277 6007165 2024-02-20 02:34:01.098 2024-02-20 02:34:01.098 2100 FEE 430854 21485 6007166 2024-02-20 02:34:01.098 2024-02-20 02:34:01.098 18900 TIP 430854 10352 6007171 2024-02-20 02:34:57.784 2024-02-20 02:34:57.784 1000 FEE 430892 6717 6007172 2024-02-20 02:34:57.784 2024-02-20 02:34:57.784 9000 TIP 430892 985 6007190 2024-02-20 02:35:45.477 2024-02-20 02:35:45.477 1000 FEE 432069 2652 6007191 2024-02-20 02:35:45.477 2024-02-20 02:35:45.477 9000 TIP 432069 4973 6007192 2024-02-20 02:35:46.671 2024-02-20 02:35:46.671 1000 FEE 432076 19007 6007193 2024-02-20 02:35:46.671 2024-02-20 02:35:46.671 9000 TIP 432076 21131 6007209 2024-02-20 02:36:37.469 2024-02-20 02:36:37.469 2100 FEE 430055 11678 6007210 2024-02-20 02:36:37.469 2024-02-20 02:36:37.469 18900 TIP 430055 14489 6007222 2024-02-20 02:38:22.019 2024-02-20 02:38:22.019 100000 FEE 432113 3683 6007235 2024-02-20 02:44:08.704 2024-02-20 02:44:08.704 1000 FEE 432116 11819 6007253 2024-02-20 02:45:57.77 2024-02-20 02:45:57.77 1000 FEE 432063 11776 6007254 2024-02-20 02:45:57.77 2024-02-20 02:45:57.77 9000 TIP 432063 21503 6007281 2024-02-20 02:46:52.006 2024-02-20 02:46:52.006 500 FEE 431918 3396 6007282 2024-02-20 02:46:52.006 2024-02-20 02:46:52.006 4500 TIP 431918 19459 6007316 2024-02-20 02:49:59.755 2024-02-20 02:49:59.755 500 FEE 430859 20117 6007317 2024-02-20 02:49:59.755 2024-02-20 02:49:59.755 4500 TIP 430859 8385 6007360 2024-02-20 02:55:59.992 2024-02-20 02:55:59.992 1000 FEE 432029 977 6007361 2024-02-20 02:55:59.992 2024-02-20 02:55:59.992 9000 TIP 432029 977 6007362 2024-02-20 02:56:02.305 2024-02-20 02:56:02.305 4000 FEE 432113 21091 6007363 2024-02-20 02:56:02.305 2024-02-20 02:56:02.305 36000 TIP 432113 17944 6007369 2024-02-20 02:57:24.115 2024-02-20 02:57:24.115 9000 FEE 431994 18815 6007370 2024-02-20 02:57:24.115 2024-02-20 02:57:24.115 81000 TIP 431994 12921 6007387 2024-02-20 03:03:11.162 2024-02-20 03:03:11.162 1000 FEE 431816 4035 6007388 2024-02-20 03:03:11.162 2024-02-20 03:03:11.162 9000 TIP 431816 12774 6007391 2024-02-20 03:03:12.669 2024-02-20 03:03:12.669 1000 FEE 431844 21387 6007392 2024-02-20 03:03:12.669 2024-02-20 03:03:12.669 9000 TIP 431844 2681 6007409 2024-02-20 03:07:02.314 2024-02-20 03:07:02.314 1000 FEE 430549 5597 6007410 2024-02-20 03:07:02.314 2024-02-20 03:07:02.314 9000 TIP 430549 1713 6007414 2024-02-20 03:07:20.145 2024-02-20 03:07:20.145 1000 FEE 430525 2224 6007415 2024-02-20 03:07:20.145 2024-02-20 03:07:20.145 9000 TIP 430525 19732 6007452 2024-02-20 03:11:08.7 2024-02-20 03:11:08.7 2300 FEE 432132 15925 6007453 2024-02-20 03:11:08.7 2024-02-20 03:11:08.7 20700 TIP 432132 9341 6007464 2024-02-20 03:11:13.64 2024-02-20 03:11:13.64 1000 FEE 432136 5779 6007482 2024-02-20 03:13:30.983 2024-02-20 03:13:30.983 1000 FEE 430859 9345 6007483 2024-02-20 03:13:30.983 2024-02-20 03:13:30.983 9000 TIP 430859 4487 6007519 2024-02-20 03:16:11.514 2024-02-20 03:16:11.514 1000 FEE 431918 19557 6007520 2024-02-20 03:16:11.514 2024-02-20 03:16:11.514 9000 TIP 431918 19235 6007568 2024-02-20 03:19:54.976 2024-02-20 03:19:54.976 1000 FEE 432113 20588 6007569 2024-02-20 03:19:54.976 2024-02-20 03:19:54.976 9000 TIP 432113 1626 6007570 2024-02-20 03:19:55.485 2024-02-20 03:19:55.485 1000 FEE 432113 19661 6007571 2024-02-20 03:19:55.485 2024-02-20 03:19:55.485 9000 TIP 432113 18625 6007612 2024-02-20 03:30:32.62 2024-02-20 03:30:32.62 1000 FEE 431986 7979 6007613 2024-02-20 03:30:32.62 2024-02-20 03:30:32.62 9000 TIP 431986 21207 6007614 2024-02-20 03:30:33.07 2024-02-20 03:30:33.07 1000 FEE 431986 894 6007615 2024-02-20 03:30:33.07 2024-02-20 03:30:33.07 9000 TIP 431986 20871 6007631 2024-02-20 03:31:21.754 2024-02-20 03:31:21.754 1000 FEE 432147 4175 6007632 2024-02-20 03:31:37.627 2024-02-20 03:31:37.627 1000 FEE 432148 18225 6007647 2024-02-20 03:31:54.75 2024-02-20 03:31:54.75 1000 FEE 432046 18280 6007648 2024-02-20 03:31:54.75 2024-02-20 03:31:54.75 9000 TIP 432046 2010 6007654 2024-02-20 03:32:16.106 2024-02-20 03:32:16.106 100000 FEE 432149 17891 6007683 2024-02-20 03:32:35.498 2024-02-20 03:32:35.498 100 FEE 431844 18877 6007684 2024-02-20 03:32:35.498 2024-02-20 03:32:35.498 900 TIP 431844 5171 6007689 2024-02-20 03:32:36.091 2024-02-20 03:32:36.091 100 FEE 431844 16355 6007690 2024-02-20 03:32:36.091 2024-02-20 03:32:36.091 900 TIP 431844 18629 6007694 2024-02-20 03:33:00.326 2024-02-20 03:33:00.326 4200 FEE 431839 4391 6007695 2024-02-20 03:33:00.326 2024-02-20 03:33:00.326 37800 TIP 431839 20663 6007697 2024-02-20 03:33:14.59 2024-02-20 03:33:14.59 4200 FEE 431838 18641 6007698 2024-02-20 03:33:14.59 2024-02-20 03:33:14.59 37800 TIP 431838 1439 6007711 2024-02-20 03:34:01.091 2024-02-20 03:34:01.091 0 FEE 432146 1519 6007717 2024-02-20 03:34:18 2024-02-20 03:34:18 1000 FEE 432060 960 6007718 2024-02-20 03:34:18 2024-02-20 03:34:18 9000 TIP 432060 18357 6007785 2024-02-20 03:47:08.669 2024-02-20 03:47:08.669 100 FEE 432135 3544 6007786 2024-02-20 03:47:08.669 2024-02-20 03:47:08.669 900 TIP 432135 17800 6007789 2024-02-20 03:47:09.007 2024-02-20 03:47:09.007 1000 FEE 432145 12291 6007790 2024-02-20 03:47:09.007 2024-02-20 03:47:09.007 9000 TIP 432145 12976 6007818 2024-02-20 03:58:54.384 2024-02-20 03:58:54.384 0 FEE 432154 9809 6007822 2024-02-20 03:59:19.235 2024-02-20 03:59:19.235 1000 FEE 431378 20157 6007823 2024-02-20 03:59:19.235 2024-02-20 03:59:19.235 9000 TIP 431378 11590 6007826 2024-02-20 03:59:20.365 2024-02-20 03:59:20.365 1000 FEE 431378 19158 6007827 2024-02-20 03:59:20.365 2024-02-20 03:59:20.365 9000 TIP 431378 2735 6007830 2024-02-20 03:59:21.124 2024-02-20 03:59:21.124 1000 FEE 431378 21155 6007831 2024-02-20 03:59:21.124 2024-02-20 03:59:21.124 9000 TIP 431378 6533 6007833 2024-02-20 03:59:57.382 2024-02-20 03:59:57.382 0 FEE 432154 2111 6007841 2024-02-20 04:03:55.896 2024-02-20 04:03:55.896 1000 FEE 432155 997 6007842 2024-02-20 04:03:55.896 2024-02-20 04:03:55.896 9000 TIP 432155 16680 6007848 2024-02-20 04:04:19.17 2024-02-20 04:04:19.17 0 FEE 185956 19732 6007868 2024-02-20 04:09:38.005 2024-02-20 04:09:38.005 100000 FEE 432160 21614 6007904 2024-02-20 04:23:49.29 2024-02-20 04:23:49.29 0 FEE 144708 21343 6007938 2024-02-20 04:35:15.852 2024-02-20 04:35:15.852 1000 FEE 432169 20023 6007956 2024-02-20 04:43:51.974 2024-02-20 04:43:51.974 2500 FEE 432124 18626 6007957 2024-02-20 04:43:51.974 2024-02-20 04:43:51.974 22500 TIP 432124 3544 6007962 2024-02-20 04:43:58.01 2024-02-20 04:43:58.01 2500 FEE 432124 8448 6007963 2024-02-20 04:43:58.01 2024-02-20 04:43:58.01 22500 TIP 432124 15521 6007965 2024-02-20 04:44:17.839 2024-02-20 04:44:17.839 2500 FEE 431926 20964 6007966 2024-02-20 04:44:17.839 2024-02-20 04:44:17.839 22500 TIP 431926 1354 6007967 2024-02-20 04:45:01.43 2024-02-20 04:45:01.43 2500 FEE 432069 13399 6007968 2024-02-20 04:45:01.43 2024-02-20 04:45:01.43 22500 TIP 432069 20782 6007994 2024-02-20 04:56:48.465 2024-02-20 04:56:48.465 900 FEE 432171 4250 6007995 2024-02-20 04:56:48.465 2024-02-20 04:56:48.465 8100 TIP 432171 15100 6008016 2024-02-20 05:00:31.61 2024-02-20 05:00:31.61 1700 FEE 431003 4633 6008017 2024-02-20 05:00:31.61 2024-02-20 05:00:31.61 15300 TIP 431003 20781 6008035 2024-02-20 05:08:29.401 2024-02-20 05:08:29.401 2100 FEE 432060 5444 6008036 2024-02-20 05:08:29.401 2024-02-20 05:08:29.401 18900 TIP 432060 16680 6008103 2024-02-20 05:33:21.769 2024-02-20 05:33:21.769 100 FEE 432167 19943 6008104 2024-02-20 05:33:21.769 2024-02-20 05:33:21.769 900 TIP 432167 1632 6008122 2024-02-20 05:37:31.412 2024-02-20 05:37:31.412 10000 FEE 431949 9366 6008123 2024-02-20 05:37:31.412 2024-02-20 05:37:31.412 90000 TIP 431949 11999 6008130 2024-02-20 05:41:20.746 2024-02-20 05:41:20.746 1000 FEE 432177 19773 6008145 2024-02-20 05:47:17.539 2024-02-20 05:47:17.539 100 FEE 432147 15703 6008146 2024-02-20 05:47:17.539 2024-02-20 05:47:17.539 900 TIP 432147 20059 6008156 2024-02-20 05:49:03.382 2024-02-20 05:49:03.382 1000 FEE 431816 2039 6008157 2024-02-20 05:49:03.382 2024-02-20 05:49:03.382 9000 TIP 431816 21446 6008177 2024-02-20 05:49:08.057 2024-02-20 05:49:08.057 1000 FEE 431816 3642 6007255 2024-02-20 02:46:03.046 2024-02-20 02:46:03.046 1000 STREAM 141924 21334 6007322 2024-02-20 02:50:03.095 2024-02-20 02:50:03.095 1000 STREAM 141924 19333 6007356 2024-02-20 02:54:03.146 2024-02-20 02:54:03.146 1000 STREAM 141924 6160 6007358 2024-02-20 02:55:05.174 2024-02-20 02:55:05.174 1000 STREAM 141924 15351 6007364 2024-02-20 02:56:03.197 2024-02-20 02:56:03.197 1000 STREAM 141924 1162 6007365 2024-02-20 02:57:05.207 2024-02-20 02:57:05.207 1000 STREAM 141924 4973 6007372 2024-02-20 02:59:05.239 2024-02-20 02:59:05.239 1000 STREAM 141924 18678 6007384 2024-02-20 03:03:05.272 2024-02-20 03:03:05.272 1000 STREAM 141924 18829 6007422 2024-02-20 03:09:05.373 2024-02-20 03:09:05.373 1000 STREAM 141924 831 6007261 2024-02-20 02:46:16.455 2024-02-20 02:46:16.455 1000 FEE 432118 18932 6007266 2024-02-20 02:46:29.706 2024-02-20 02:46:29.706 100 FEE 432106 11789 6007267 2024-02-20 02:46:29.706 2024-02-20 02:46:29.706 900 TIP 432106 4487 6007268 2024-02-20 02:46:29.853 2024-02-20 02:46:29.853 900 FEE 432106 11789 6007269 2024-02-20 02:46:29.853 2024-02-20 02:46:29.853 8100 TIP 432106 20327 6007279 2024-02-20 02:46:50.621 2024-02-20 02:46:50.621 500 FEE 431809 20018 6007280 2024-02-20 02:46:50.621 2024-02-20 02:46:50.621 4500 TIP 431809 27 6007283 2024-02-20 02:47:00.926 2024-02-20 02:47:00.926 1000 FEE 432103 1046 6007284 2024-02-20 02:47:00.926 2024-02-20 02:47:00.926 9000 TIP 432103 13878 6007294 2024-02-20 02:48:45.275 2024-02-20 02:48:45.275 500 FEE 432063 19435 6007295 2024-02-20 02:48:45.275 2024-02-20 02:48:45.275 4500 TIP 432063 20084 6007305 2024-02-20 02:49:15.863 2024-02-20 02:49:15.863 500 FEE 431830 1552 6007306 2024-02-20 02:49:15.863 2024-02-20 02:49:15.863 4500 TIP 431830 17455 6007308 2024-02-20 02:49:54.53 2024-02-20 02:49:54.53 500 FEE 430859 997 6007309 2024-02-20 02:49:54.53 2024-02-20 02:49:54.53 4500 TIP 430859 20586 6007310 2024-02-20 02:49:55.455 2024-02-20 02:49:55.455 500 FEE 430859 21501 6007311 2024-02-20 02:49:55.455 2024-02-20 02:49:55.455 4500 TIP 430859 17710 6007346 2024-02-20 02:53:04.024 2024-02-20 02:53:04.024 500 FEE 431816 4388 6007347 2024-02-20 02:53:04.024 2024-02-20 02:53:04.024 4500 TIP 431816 6335 6007353 2024-02-20 02:53:07.214 2024-02-20 02:53:07.214 500 FEE 431401 16929 6007354 2024-02-20 02:53:07.214 2024-02-20 02:53:07.214 4500 TIP 431401 20781 6007373 2024-02-20 03:00:02.262 2024-02-20 03:00:02.262 1000 STREAM 141924 21292 6007375 2024-02-20 03:00:27.435 2024-02-20 03:00:27.435 1000 FEE 432130 20183 6007377 2024-02-20 03:02:02.706 2024-02-20 03:02:02.706 1000 STREAM 141924 703 6007393 2024-02-20 03:03:14.044 2024-02-20 03:03:14.044 1000 FEE 430892 13759 6007394 2024-02-20 03:03:14.044 2024-02-20 03:03:14.044 9000 TIP 430892 18387 6007395 2024-02-20 03:03:15.216 2024-02-20 03:03:15.216 1000 FEE 431401 9863 6007396 2024-02-20 03:03:15.216 2024-02-20 03:03:15.216 9000 TIP 431401 8459 6007399 2024-02-20 03:04:02.722 2024-02-20 03:04:02.722 1000 STREAM 141924 20326 6007402 2024-02-20 03:06:02.743 2024-02-20 03:06:02.743 1000 STREAM 141924 19615 6007418 2024-02-20 03:08:02.76 2024-02-20 03:08:02.76 1000 STREAM 141924 18819 6007419 2024-02-20 03:08:26.244 2024-02-20 03:08:26.244 1000 FEE 432134 20525 6007425 2024-02-20 03:09:07.561 2024-02-20 03:09:07.561 1000 FEE 430861 12072 6007426 2024-02-20 03:09:07.561 2024-02-20 03:09:07.561 9000 TIP 430861 17639 6007434 2024-02-20 03:10:02.797 2024-02-20 03:10:02.797 1000 STREAM 141924 19446 6007435 2024-02-20 03:11:02.81 2024-02-20 03:11:02.81 1000 STREAM 141924 21369 6007440 2024-02-20 03:11:03.379 2024-02-20 03:11:03.379 2300 FEE 432132 19030 6007441 2024-02-20 03:11:03.379 2024-02-20 03:11:03.379 20700 TIP 432132 951 6007477 2024-02-20 03:13:02.823 2024-02-20 03:13:02.823 1000 STREAM 141924 21494 6007486 2024-02-20 03:14:02.831 2024-02-20 03:14:02.831 1000 STREAM 141924 20546 6007494 2024-02-20 03:15:02.842 2024-02-20 03:15:02.842 1000 STREAM 141924 18956 6007503 2024-02-20 03:15:04.677 2024-02-20 03:15:04.677 8300 FEE 432113 1624 6007504 2024-02-20 03:15:04.677 2024-02-20 03:15:04.677 74700 TIP 432113 8535 6007518 2024-02-20 03:16:02.869 2024-02-20 03:16:02.869 1000 STREAM 141924 4128 6007521 2024-02-20 03:16:12.974 2024-02-20 03:16:12.974 400 FEE 432138 11885 6007522 2024-02-20 03:16:12.974 2024-02-20 03:16:12.974 3600 TIP 432138 18188 6007523 2024-02-20 03:16:32.025 2024-02-20 03:16:32.025 400 FEE 432131 20969 6007524 2024-02-20 03:16:32.025 2024-02-20 03:16:32.025 3600 TIP 432131 2075 6007529 2024-02-20 03:17:02.862 2024-02-20 03:17:02.862 1000 STREAM 141924 20964 6007548 2024-02-20 03:18:02.875 2024-02-20 03:18:02.875 1000 STREAM 141924 1007 6007551 2024-02-20 03:18:21.648 2024-02-20 03:18:21.648 1000 FEE 432135 19976 6007552 2024-02-20 03:18:21.648 2024-02-20 03:18:21.648 9000 TIP 432135 1814 6007555 2024-02-20 03:18:23.29 2024-02-20 03:18:23.29 1000 FEE 432135 17817 6007556 2024-02-20 03:18:23.29 2024-02-20 03:18:23.29 9000 TIP 432135 15762 6007561 2024-02-20 03:19:02.885 2024-02-20 03:19:02.885 1000 STREAM 141924 2077 6007576 2024-02-20 03:20:02.905 2024-02-20 03:20:02.905 1000 STREAM 141924 17183 6007577 2024-02-20 03:20:26.352 2024-02-20 03:20:26.352 1000 FEE 430859 866 6007578 2024-02-20 03:20:26.352 2024-02-20 03:20:26.352 9000 TIP 430859 20187 6007581 2024-02-20 03:21:02.918 2024-02-20 03:21:02.918 1000 STREAM 141924 12965 6007591 2024-02-20 03:22:02.912 2024-02-20 03:22:02.912 1000 STREAM 141924 18815 6007592 2024-02-20 03:23:02.918 2024-02-20 03:23:02.918 1000 STREAM 141924 688 6007593 2024-02-20 03:24:02.905 2024-02-20 03:24:02.905 1000 STREAM 141924 19615 6007594 2024-02-20 03:25:02.935 2024-02-20 03:25:02.935 1000 STREAM 141924 20287 6007597 2024-02-20 03:25:59.602 2024-02-20 03:25:59.602 1000 FEE 432143 15491 6007598 2024-02-20 03:26:02.943 2024-02-20 03:26:02.943 1000 STREAM 141924 18751 6007603 2024-02-20 03:27:02.967 2024-02-20 03:27:02.967 1000 STREAM 141924 17411 6007604 2024-02-20 03:28:02.974 2024-02-20 03:28:02.974 1000 STREAM 141924 14213 6007605 2024-02-20 03:29:02.973 2024-02-20 03:29:02.973 1000 STREAM 141924 11288 6007606 2024-02-20 03:30:03.103 2024-02-20 03:30:03.103 1000 STREAM 141924 18231 6007607 2024-02-20 03:30:07.552 2024-02-20 03:30:07.552 1000 FEE 432146 4084 6007610 2024-02-20 03:30:32.112 2024-02-20 03:30:32.112 1000 FEE 431986 6300 6007611 2024-02-20 03:30:32.112 2024-02-20 03:30:32.112 9000 TIP 431986 19622 6007628 2024-02-20 03:30:57.284 2024-02-20 03:30:57.284 4000 FEE 432135 9353 6007629 2024-02-20 03:30:57.284 2024-02-20 03:30:57.284 36000 TIP 432135 18660 6007630 2024-02-20 03:31:02.979 2024-02-20 03:31:02.979 1000 STREAM 141924 20109 6007639 2024-02-20 03:31:43.957 2024-02-20 03:31:43.957 1000 FEE 432026 5942 6007640 2024-02-20 03:31:43.957 2024-02-20 03:31:43.957 9000 TIP 432026 19199 6007645 2024-02-20 03:31:54.417 2024-02-20 03:31:54.417 1000 FEE 432046 9476 6007646 2024-02-20 03:31:54.417 2024-02-20 03:31:54.417 9000 TIP 432046 12516 6007653 2024-02-20 03:32:02.994 2024-02-20 03:32:02.994 1000 STREAM 141924 18862 6007655 2024-02-20 03:32:30.277 2024-02-20 03:32:30.277 100 FEE 431844 3729 6007656 2024-02-20 03:32:30.277 2024-02-20 03:32:30.277 900 TIP 431844 899 6007657 2024-02-20 03:32:30.621 2024-02-20 03:32:30.621 100 FEE 431844 10536 6007658 2024-02-20 03:32:30.621 2024-02-20 03:32:30.621 900 TIP 431844 3396 6007659 2024-02-20 03:32:30.912 2024-02-20 03:32:30.912 100 FEE 431844 7675 6007660 2024-02-20 03:32:30.912 2024-02-20 03:32:30.912 900 TIP 431844 10728 6007669 2024-02-20 03:32:32.64 2024-02-20 03:32:32.64 100 FEE 431844 14357 6007670 2024-02-20 03:32:32.64 2024-02-20 03:32:32.64 900 TIP 431844 4763 6007687 2024-02-20 03:32:35.89 2024-02-20 03:32:35.89 100 FEE 431844 14909 6007688 2024-02-20 03:32:35.89 2024-02-20 03:32:35.89 900 TIP 431844 20614 6007696 2024-02-20 03:33:02.998 2024-02-20 03:33:02.998 1000 STREAM 141924 19465 6007712 2024-02-20 03:34:02.976 2024-02-20 03:34:02.976 1000 STREAM 141924 642 6007721 2024-02-20 03:34:19.058 2024-02-20 03:34:19.058 1000 FEE 432060 8423 6007722 2024-02-20 03:34:19.058 2024-02-20 03:34:19.058 9000 TIP 432060 1489 6007725 2024-02-20 03:35:02.999 2024-02-20 03:35:02.999 1000 STREAM 141924 15941 6007726 2024-02-20 03:36:03.014 2024-02-20 03:36:03.014 1000 STREAM 141924 21342 6007729 2024-02-20 03:37:03.026 2024-02-20 03:37:03.026 1000 STREAM 141924 4304 6007730 2024-02-20 03:38:03.041 2024-02-20 03:38:03.041 1000 STREAM 141924 21379 6007732 2024-02-20 03:38:30.814 2024-02-20 03:38:30.814 0 FEE 432146 20264 6007733 2024-02-20 03:39:03.051 2024-02-20 03:39:03.051 1000 STREAM 141924 18124 6007736 2024-02-20 03:40:03.072 2024-02-20 03:40:03.072 1000 STREAM 141924 8380 6007737 2024-02-20 03:41:03.077 2024-02-20 03:41:03.077 1000 STREAM 141924 19821 6007740 2024-02-20 03:41:05.843 2024-02-20 03:41:05.843 8300 FEE 432135 11018 6007741 2024-02-20 03:41:05.843 2024-02-20 03:41:05.843 74700 TIP 432135 5978 6007750 2024-02-20 03:41:06.494 2024-02-20 03:41:06.494 8300 FEE 432135 17226 6007751 2024-02-20 03:41:06.494 2024-02-20 03:41:06.494 74700 TIP 432135 18743 6007756 2024-02-20 03:42:03.084 2024-02-20 03:42:03.084 1000 STREAM 141924 4521 6007596 2024-02-20 03:25:49.85 2024-02-20 03:25:49.85 9000 TIP 432119 18220 6007599 2024-02-20 03:26:10.946 2024-02-20 03:26:10.946 1000 FEE 432131 10007 6007600 2024-02-20 03:26:10.946 2024-02-20 03:26:10.946 9000 TIP 432131 5160 6007616 2024-02-20 03:30:33.543 2024-02-20 03:30:33.543 1000 FEE 431986 976 6007617 2024-02-20 03:30:33.543 2024-02-20 03:30:33.543 9000 TIP 431986 20276 6007618 2024-02-20 03:30:45.265 2024-02-20 03:30:45.265 1000 FEE 432001 2330 6007619 2024-02-20 03:30:45.265 2024-02-20 03:30:45.265 9000 TIP 432001 11263 6007620 2024-02-20 03:30:45.723 2024-02-20 03:30:45.723 1000 FEE 432001 697 6007621 2024-02-20 03:30:45.723 2024-02-20 03:30:45.723 9000 TIP 432001 6515 6007681 2024-02-20 03:32:34.737 2024-02-20 03:32:34.737 100 FEE 431844 20717 6007682 2024-02-20 03:32:34.737 2024-02-20 03:32:34.737 900 TIP 431844 20594 6007700 2024-02-20 03:33:32.18 2024-02-20 03:33:32.18 1000 FEE 431947 8400 6007701 2024-02-20 03:33:32.18 2024-02-20 03:33:32.18 9000 TIP 431947 1817 6007764 2024-02-20 03:43:53.503 2024-02-20 03:43:53.503 1000 FEE 431869 9336 6007765 2024-02-20 03:43:53.503 2024-02-20 03:43:53.503 9000 TIP 431869 20179 6007817 2024-02-20 03:58:26.271 2024-02-20 03:58:26.271 1000 FEE 432154 20825 6007835 2024-02-20 04:00:04.535 2024-02-20 04:00:04.535 100000 FEE 432156 666 6007865 2024-02-20 04:08:56.986 2024-02-20 04:08:56.986 0 FEE 85385 1609 6007869 2024-02-20 04:10:02.635 2024-02-20 04:10:02.635 0 FEE 432160 17953 6007876 2024-02-20 04:12:27.106 2024-02-20 04:12:27.106 2100 FEE 432135 21417 6007877 2024-02-20 04:12:27.106 2024-02-20 04:12:27.106 18900 TIP 432135 6164 6007897 2024-02-20 04:20:55.828 2024-02-20 04:20:55.828 1000 FEE 432147 20616 6007898 2024-02-20 04:20:55.828 2024-02-20 04:20:55.828 9000 TIP 432147 16638 6007901 2024-02-20 04:22:32.078 2024-02-20 04:22:32.078 2100 FEE 432154 13599 6007902 2024-02-20 04:22:32.078 2024-02-20 04:22:32.078 18900 TIP 432154 2203 6007907 2024-02-20 04:23:58.228 2024-02-20 04:23:58.228 4400 FEE 428355 20642 6007908 2024-02-20 04:23:58.228 2024-02-20 04:23:58.228 39600 TIP 428355 1291 6007914 2024-02-20 04:26:25.882 2024-02-20 04:26:25.882 98000 FEE 432165 21401 6007946 2024-02-20 04:38:50.712 2024-02-20 04:38:50.712 400 FEE 432162 9333 6007947 2024-02-20 04:38:50.712 2024-02-20 04:38:50.712 3600 TIP 432162 11898 6008014 2024-02-20 05:00:21.63 2024-02-20 05:00:21.63 800 FEE 432166 1047 6008015 2024-02-20 05:00:21.63 2024-02-20 05:00:21.63 7200 TIP 432166 2961 6008053 2024-02-20 05:20:05.031 2024-02-20 05:20:05.031 3300 FEE 432135 21424 6008054 2024-02-20 05:20:05.031 2024-02-20 05:20:05.031 29700 TIP 432135 20245 6008074 2024-02-20 05:23:32.679 2024-02-20 05:23:32.679 1000 FEE 432113 20973 6008075 2024-02-20 05:23:32.679 2024-02-20 05:23:32.679 9000 TIP 432113 12911 6008185 2024-02-20 05:49:08.87 2024-02-20 05:49:08.87 1000 FEE 431816 17106 6008186 2024-02-20 05:49:08.87 2024-02-20 05:49:08.87 9000 TIP 431816 18625 6008187 2024-02-20 05:49:09.083 2024-02-20 05:49:09.083 1000 FEE 431816 721 6008188 2024-02-20 05:49:09.083 2024-02-20 05:49:09.083 9000 TIP 431816 12220 6008201 2024-02-20 05:49:12.308 2024-02-20 05:49:12.308 1000 FEE 431816 2061 6008202 2024-02-20 05:49:12.308 2024-02-20 05:49:12.308 9000 TIP 431816 12245 6008205 2024-02-20 05:49:12.848 2024-02-20 05:49:12.848 1000 FEE 431816 1272 6008206 2024-02-20 05:49:12.848 2024-02-20 05:49:12.848 9000 TIP 431816 20087 6008232 2024-02-20 06:00:06.415 2024-02-20 06:00:06.415 100000 FEE 432179 20190 6008233 2024-02-20 06:00:07.021 2024-02-20 06:00:07.021 1000 FEE 432180 10469 6008236 2024-02-20 06:02:34.203 2024-02-20 06:02:34.203 1000 FEE 432181 977 6008246 2024-02-20 06:08:49.84 2024-02-20 06:08:49.84 2100 FEE 432178 20306 6008247 2024-02-20 06:08:49.84 2024-02-20 06:08:49.84 18900 TIP 432178 6533 6008272 2024-02-20 06:21:40.418 2024-02-20 06:21:40.418 100000 DONT_LIKE_THIS 432178 18271 6008275 2024-02-20 06:21:50.892 2024-02-20 06:21:50.892 900 FEE 432179 21386 6008276 2024-02-20 06:21:50.892 2024-02-20 06:21:50.892 8100 TIP 432179 21386 6008278 2024-02-20 06:22:35.906 2024-02-20 06:22:35.906 12800 FEE 430771 9330 6008279 2024-02-20 06:22:35.906 2024-02-20 06:22:35.906 115200 TIP 430771 21214 6008305 2024-02-20 06:38:56.112 2024-02-20 06:38:56.112 1000 FEE 432060 18608 6008306 2024-02-20 06:38:56.112 2024-02-20 06:38:56.112 9000 TIP 432060 1438 6008370 2024-02-20 06:55:12.761 2024-02-20 06:55:12.761 12800 FEE 432088 10393 6008371 2024-02-20 06:55:12.761 2024-02-20 06:55:12.761 115200 TIP 432088 19952 6008389 2024-02-20 07:00:17.22 2024-02-20 07:00:17.22 1000 FEE 432104 8242 6008390 2024-02-20 07:00:17.22 2024-02-20 07:00:17.22 9000 TIP 432104 6777 6008397 2024-02-20 07:00:18.309 2024-02-20 07:00:18.309 1000 FEE 432104 9349 6008398 2024-02-20 07:00:18.309 2024-02-20 07:00:18.309 9000 TIP 432104 6594 6008435 2024-02-20 07:11:52.301 2024-02-20 07:11:52.301 2100 FEE 432113 17639 6008436 2024-02-20 07:11:52.301 2024-02-20 07:11:52.301 18900 TIP 432113 21072 6008447 2024-02-20 07:11:55.567 2024-02-20 07:11:55.567 800 FEE 431079 651 6008448 2024-02-20 07:11:55.567 2024-02-20 07:11:55.567 7200 TIP 431079 16309 6008453 2024-02-20 07:11:56.36 2024-02-20 07:11:56.36 2100 FEE 431816 20646 6008454 2024-02-20 07:11:56.36 2024-02-20 07:11:56.36 18900 TIP 431816 17710 6008459 2024-02-20 07:11:58.958 2024-02-20 07:11:58.958 2100 FEE 431918 1825 6008460 2024-02-20 07:11:58.958 2024-02-20 07:11:58.958 18900 TIP 431918 13878 6008471 2024-02-20 07:12:02.19 2024-02-20 07:12:02.19 2100 FEE 431809 617 6008472 2024-02-20 07:12:02.19 2024-02-20 07:12:02.19 18900 TIP 431809 21492 6008476 2024-02-20 07:12:33.336 2024-02-20 07:12:33.336 2100 FEE 431982 20901 6008477 2024-02-20 07:12:33.336 2024-02-20 07:12:33.336 18900 TIP 431982 19158 6008497 2024-02-20 07:15:11.652 2024-02-20 07:15:11.652 21000 FEE 432203 4323 6008517 2024-02-20 07:20:56.997 2024-02-20 07:20:56.997 1000 FEE 432208 5129 6008520 2024-02-20 07:22:50.985 2024-02-20 07:22:50.985 1000 FEE 432209 4074 6008525 2024-02-20 07:25:12.591 2024-02-20 07:25:12.591 2100 FEE 431913 959 6008526 2024-02-20 07:25:12.591 2024-02-20 07:25:12.591 18900 TIP 431913 9159 6008541 2024-02-20 07:27:10.738 2024-02-20 07:27:10.738 15000 FEE 432211 19660 6008553 2024-02-20 07:31:42.311 2024-02-20 07:31:42.311 800 FEE 430612 17221 6008554 2024-02-20 07:31:42.311 2024-02-20 07:31:42.311 7200 TIP 430612 12356 6008564 2024-02-20 07:34:47.37 2024-02-20 07:34:47.37 1000 POLL 432211 20120 6008633 2024-02-20 07:52:56.22 2024-02-20 07:52:56.22 0 FEE 432226 20327 6008670 2024-02-20 08:15:50.588 2024-02-20 08:15:50.588 1000 FEE 432231 18280 6008671 2024-02-20 08:15:50.588 2024-02-20 08:15:50.588 9000 TIP 432231 10731 6008700 2024-02-20 08:17:42.712 2024-02-20 08:17:42.712 1000 FEE 432236 2543 6008707 2024-02-20 08:17:52.037 2024-02-20 08:17:52.037 2100 FEE 240060 18625 6008708 2024-02-20 08:17:52.037 2024-02-20 08:17:52.037 18900 TIP 240060 20377 6007724 2024-02-20 03:34:19.702 2024-02-20 03:34:19.702 9000 TIP 432060 19689 6007735 2024-02-20 03:39:57.593 2024-02-20 03:39:57.593 0 FEE 432146 20045 6007744 2024-02-20 03:41:06.181 2024-02-20 03:41:06.181 8300 FEE 432135 8726 6007745 2024-02-20 03:41:06.181 2024-02-20 03:41:06.181 74700 TIP 432135 18727 6007748 2024-02-20 03:41:06.401 2024-02-20 03:41:06.401 8300 FEE 432135 16387 6007749 2024-02-20 03:41:06.401 2024-02-20 03:41:06.401 74700 TIP 432135 928 6007754 2024-02-20 03:41:48.505 2024-02-20 03:41:48.505 2100 FEE 432113 15200 6007755 2024-02-20 03:41:48.505 2024-02-20 03:41:48.505 18900 TIP 432113 20717 6007757 2024-02-20 03:42:31.072 2024-02-20 03:42:31.072 21800 FEE 432146 21291 6007758 2024-02-20 03:42:31.072 2024-02-20 03:42:31.072 196200 TIP 432146 8269 6007768 2024-02-20 03:43:53.693 2024-02-20 03:43:53.693 1000 FEE 431869 17513 6007769 2024-02-20 03:43:53.693 2024-02-20 03:43:53.693 9000 TIP 431869 18923 6007775 2024-02-20 03:44:43.043 2024-02-20 03:44:43.043 1000 FEE 432152 19036 6007871 2024-02-20 04:10:46.49 2024-02-20 04:10:46.49 1000 FEE 432161 2529 6007878 2024-02-20 04:12:32.932 2024-02-20 04:12:32.932 2100 FEE 432163 1136 6007879 2024-02-20 04:12:32.932 2024-02-20 04:12:32.932 18900 TIP 432163 3409 6007894 2024-02-20 04:19:58.351 2024-02-20 04:19:58.351 700 FEE 430685 18473 6007895 2024-02-20 04:19:58.351 2024-02-20 04:19:58.351 6300 TIP 430685 21493 6007924 2024-02-20 04:29:01.524 2024-02-20 04:29:01.524 10000 FEE 432135 19303 6007925 2024-02-20 04:29:01.524 2024-02-20 04:29:01.524 90000 TIP 432135 902 6007977 2024-02-20 04:50:06.352 2024-02-20 04:50:06.352 100000 FEE 432171 16149 6008012 2024-02-20 05:00:21.048 2024-02-20 05:00:21.048 800 FEE 432166 20998 6008013 2024-02-20 05:00:21.048 2024-02-20 05:00:21.048 7200 TIP 432166 14950 6008068 2024-02-20 05:23:32.075 2024-02-20 05:23:32.075 1000 FEE 432113 18897 6008069 2024-02-20 05:23:32.075 2024-02-20 05:23:32.075 9000 TIP 432113 4083 6008072 2024-02-20 05:23:32.502 2024-02-20 05:23:32.502 1000 FEE 432113 8508 6008073 2024-02-20 05:23:32.502 2024-02-20 05:23:32.502 9000 TIP 432113 21131 6008085 2024-02-20 05:26:51.431 2024-02-20 05:26:51.431 200 FEE 432170 19570 6008086 2024-02-20 05:26:51.431 2024-02-20 05:26:51.431 1800 TIP 432170 18919 6008136 2024-02-20 05:46:40.725 2024-02-20 05:46:40.725 100 FEE 432156 10484 6008137 2024-02-20 05:46:40.725 2024-02-20 05:46:40.725 900 TIP 432156 3990 6008138 2024-02-20 05:46:41.131 2024-02-20 05:46:41.131 900 FEE 432156 15484 6008139 2024-02-20 05:46:41.131 2024-02-20 05:46:41.131 8100 TIP 432156 17708 6008147 2024-02-20 05:47:18.758 2024-02-20 05:47:18.758 900 FEE 432147 2639 6008148 2024-02-20 05:47:18.758 2024-02-20 05:47:18.758 8100 TIP 432147 20264 6008152 2024-02-20 05:49:02.259 2024-02-20 05:49:02.259 1000 FEE 431816 775 6008153 2024-02-20 05:49:02.259 2024-02-20 05:49:02.259 9000 TIP 431816 1389 6008197 2024-02-20 05:49:10.141 2024-02-20 05:49:10.141 1000 FEE 431816 8985 6008198 2024-02-20 05:49:10.141 2024-02-20 05:49:10.141 9000 TIP 431816 8570 6008199 2024-02-20 05:49:11.972 2024-02-20 05:49:11.972 1000 FEE 431816 13843 6008200 2024-02-20 05:49:11.972 2024-02-20 05:49:11.972 9000 TIP 431816 21172 6008207 2024-02-20 05:49:13.049 2024-02-20 05:49:13.049 1000 FEE 431816 18828 6008208 2024-02-20 05:49:13.049 2024-02-20 05:49:13.049 9000 TIP 431816 14774 6008347 2024-02-20 06:51:18.218 2024-02-20 06:51:18.218 2100 FEE 432149 15271 6008348 2024-02-20 06:51:18.218 2024-02-20 06:51:18.218 18900 TIP 432149 13782 6008349 2024-02-20 06:51:27.886 2024-02-20 06:51:27.886 2100 FEE 432186 6229 6008350 2024-02-20 06:51:27.886 2024-02-20 06:51:27.886 18900 TIP 432186 19193 6008351 2024-02-20 06:52:02.108 2024-02-20 06:52:02.108 33300 FEE 430656 4118 6008352 2024-02-20 06:52:02.108 2024-02-20 06:52:02.108 299700 TIP 430656 16194 6008374 2024-02-20 06:55:59.594 2024-02-20 06:55:59.594 1000 FEE 432191 8416 6008401 2024-02-20 07:00:18.774 2024-02-20 07:00:18.774 1000 FEE 432104 20272 6008402 2024-02-20 07:00:18.774 2024-02-20 07:00:18.774 9000 TIP 432104 631 6008439 2024-02-20 07:11:53.501 2024-02-20 07:11:53.501 2100 FEE 432135 7986 6008440 2024-02-20 07:11:53.501 2024-02-20 07:11:53.501 18900 TIP 432135 4345 6008457 2024-02-20 07:11:57.919 2024-02-20 07:11:57.919 2100 FEE 432170 2042 6008458 2024-02-20 07:11:57.919 2024-02-20 07:11:57.919 18900 TIP 432170 19151 6008479 2024-02-20 07:13:12.073 2024-02-20 07:13:12.073 1000 FEE 432202 954 6008485 2024-02-20 07:13:59.259 2024-02-20 07:13:59.259 800 FEE 431921 2502 6008486 2024-02-20 07:13:59.259 2024-02-20 07:13:59.259 7200 TIP 431921 14381 6008521 2024-02-20 07:22:51.01 2024-02-20 07:22:51.01 1000 FEE 432210 14271 6008527 2024-02-20 07:25:13.859 2024-02-20 07:25:13.859 2100 FEE 431927 13143 6008528 2024-02-20 07:25:13.859 2024-02-20 07:25:13.859 18900 TIP 431927 17157 6008546 2024-02-20 07:29:20.36 2024-02-20 07:29:20.36 1000 FEE 432214 718 6008567 2024-02-20 07:35:08.203 2024-02-20 07:35:08.203 1000 FEE 432218 11298 6008605 2024-02-20 07:43:49.422 2024-02-20 07:43:49.422 1000 FEE 432220 4415 6008609 2024-02-20 07:45:53.259 2024-02-20 07:45:53.259 1000 FEE 432222 19322 6008617 2024-02-20 07:47:53.12 2024-02-20 07:47:53.12 1000 FEE 432224 20022 6008627 2024-02-20 07:52:13.497 2024-02-20 07:52:13.497 3000 FEE 431994 9421 6008628 2024-02-20 07:52:13.497 2024-02-20 07:52:13.497 27000 TIP 431994 5694 6008629 2024-02-20 07:52:16.921 2024-02-20 07:52:16.921 1000 FEE 432227 21119 6008647 2024-02-20 08:00:05.269 2024-02-20 08:00:05.269 100000 FEE 432230 11621 6008648 2024-02-20 08:00:05.823 2024-02-20 08:00:05.823 1000 FEE 432231 1136 6008656 2024-02-20 08:06:14.676 2024-02-20 08:06:14.676 50000 FEE 432233 7978 6008657 2024-02-20 08:06:46.598 2024-02-20 08:06:46.598 0 FEE 432233 19863 6008681 2024-02-20 08:16:11.711 2024-02-20 08:16:11.711 1000 FEE 432231 1474 6008682 2024-02-20 08:16:11.711 2024-02-20 08:16:11.711 9000 TIP 432231 13365 6007762 2024-02-20 03:43:03.094 2024-02-20 03:43:03.094 1000 STREAM 141924 10849 6007777 2024-02-20 03:46:03.13 2024-02-20 03:46:03.13 1000 STREAM 141924 19995 6007812 2024-02-20 03:56:03.252 2024-02-20 03:56:03.252 1000 STREAM 141924 15577 6007813 2024-02-20 03:57:03.224 2024-02-20 03:57:03.224 1000 STREAM 141924 15762 6007816 2024-02-20 03:58:03.236 2024-02-20 03:58:03.236 1000 STREAM 141924 2640 6007819 2024-02-20 03:59:03.237 2024-02-20 03:59:03.237 1000 STREAM 141924 20180 6007837 2024-02-20 04:01:03.258 2024-02-20 04:01:03.258 1000 STREAM 141924 7682 6007839 2024-02-20 04:02:03.268 2024-02-20 04:02:03.268 1000 STREAM 141924 20257 6007866 2024-02-20 04:09:03.315 2024-02-20 04:09:03.315 1000 STREAM 141924 11491 6007870 2024-02-20 04:10:03.319 2024-02-20 04:10:03.319 1000 STREAM 141924 20619 6007884 2024-02-20 04:13:03.333 2024-02-20 04:13:03.333 1000 STREAM 141924 7558 6007886 2024-02-20 04:14:03.339 2024-02-20 04:14:03.339 1000 STREAM 141924 21578 6007890 2024-02-20 04:18:03.372 2024-02-20 04:18:03.372 1000 STREAM 141924 8385 6007917 2024-02-20 04:27:03.422 2024-02-20 04:27:03.422 1000 STREAM 141924 15697 6007922 2024-02-20 04:28:03.424 2024-02-20 04:28:03.424 1000 STREAM 141924 21012 6007929 2024-02-20 04:30:03.475 2024-02-20 04:30:03.475 1000 STREAM 141924 13076 6007930 2024-02-20 04:31:03.448 2024-02-20 04:31:03.448 1000 STREAM 141924 18262 6007934 2024-02-20 04:32:03.454 2024-02-20 04:32:03.454 1000 STREAM 141924 18583 6008045 2024-02-20 05:17:03.721 2024-02-20 05:17:03.721 1000 STREAM 141924 16867 6008046 2024-02-20 05:18:03.716 2024-02-20 05:18:03.716 1000 STREAM 141924 1047 6008084 2024-02-20 05:26:03.725 2024-02-20 05:26:03.725 1000 STREAM 141924 16954 6008092 2024-02-20 05:29:03.768 2024-02-20 05:29:03.768 1000 STREAM 141924 18372 6008093 2024-02-20 05:30:03.798 2024-02-20 05:30:03.798 1000 STREAM 141924 15367 6008117 2024-02-20 05:34:03.787 2024-02-20 05:34:03.787 1000 STREAM 141924 16816 6008119 2024-02-20 05:36:03.795 2024-02-20 05:36:03.795 1000 STREAM 141924 4083 6008120 2024-02-20 05:37:03.806 2024-02-20 05:37:03.806 1000 STREAM 141924 6717 6008125 2024-02-20 05:39:03.815 2024-02-20 05:39:03.815 1000 STREAM 141924 3729 6008126 2024-02-20 05:40:03.819 2024-02-20 05:40:03.819 1000 STREAM 141924 8726 6008129 2024-02-20 05:41:03.848 2024-02-20 05:41:03.848 1000 STREAM 141924 20182 6008131 2024-02-20 05:42:03.837 2024-02-20 05:42:03.837 1000 STREAM 141924 16988 6008132 2024-02-20 05:43:03.841 2024-02-20 05:43:03.841 1000 STREAM 141924 20669 6008133 2024-02-20 05:44:03.858 2024-02-20 05:44:03.858 1000 STREAM 141924 15213 6008134 2024-02-20 05:45:03.861 2024-02-20 05:45:03.861 1000 STREAM 141924 1425 6008140 2024-02-20 05:47:03.865 2024-02-20 05:47:03.865 1000 STREAM 141924 16296 6008220 2024-02-20 05:51:03.919 2024-02-20 05:51:03.919 1000 STREAM 141924 15806 6008223 2024-02-20 05:52:03.898 2024-02-20 05:52:03.898 1000 STREAM 141924 20663 6008224 2024-02-20 05:53:03.902 2024-02-20 05:53:03.902 1000 STREAM 141924 17741 6008226 2024-02-20 05:55:03.91 2024-02-20 05:55:03.91 1000 STREAM 141924 19309 6008234 2024-02-20 06:01:03.956 2024-02-20 06:01:03.956 1000 STREAM 141924 21422 6008235 2024-02-20 06:02:03.96 2024-02-20 06:02:03.96 1000 STREAM 141924 14225 6008237 2024-02-20 06:03:03.97 2024-02-20 06:03:03.97 1000 STREAM 141924 7891 6008238 2024-02-20 06:04:03.981 2024-02-20 06:04:03.981 1000 STREAM 141924 20581 6008239 2024-02-20 06:05:03.986 2024-02-20 06:05:03.986 1000 STREAM 141924 15336 6008241 2024-02-20 06:06:03.984 2024-02-20 06:06:03.984 1000 STREAM 141924 10728 6008242 2024-02-20 06:07:04.005 2024-02-20 06:07:04.005 1000 STREAM 141924 16594 6008243 2024-02-20 06:08:04.007 2024-02-20 06:08:04.007 1000 STREAM 141924 5829 6008250 2024-02-20 06:09:04.014 2024-02-20 06:09:04.014 1000 STREAM 141924 20849 6008253 2024-02-20 06:10:04.019 2024-02-20 06:10:04.019 1000 STREAM 141924 11298 6008254 2024-02-20 06:11:04.024 2024-02-20 06:11:04.024 1000 STREAM 141924 20891 6008269 2024-02-20 06:19:04.076 2024-02-20 06:19:04.076 1000 STREAM 141924 14015 6008277 2024-02-20 06:22:04.101 2024-02-20 06:22:04.101 1000 STREAM 141924 21063 6008281 2024-02-20 06:23:04.114 2024-02-20 06:23:04.114 1000 STREAM 141924 11275 6007774 2024-02-20 03:44:03.1 2024-02-20 03:44:03.1 1000 STREAM 141924 21040 6007776 2024-02-20 03:45:03.114 2024-02-20 03:45:03.114 1000 STREAM 141924 11999 6007780 2024-02-20 03:47:02.47 2024-02-20 03:47:02.47 1000 STREAM 141924 17415 6007793 2024-02-20 03:48:03.154 2024-02-20 03:48:03.154 1000 STREAM 141924 661 6007794 2024-02-20 03:49:02.471 2024-02-20 03:49:02.471 1000 STREAM 141924 19773 6007795 2024-02-20 03:50:02.532 2024-02-20 03:50:02.532 1000 STREAM 141924 11314 6007796 2024-02-20 03:51:02.472 2024-02-20 03:51:02.472 1000 STREAM 141924 8074 6007797 2024-02-20 03:52:02.476 2024-02-20 03:52:02.476 1000 STREAM 141924 9169 6007808 2024-02-20 03:53:02.481 2024-02-20 03:53:02.481 1000 STREAM 141924 17800 6007809 2024-02-20 03:54:02.468 2024-02-20 03:54:02.468 1000 STREAM 141924 20087 6007811 2024-02-20 03:55:02.472 2024-02-20 03:55:02.472 1000 STREAM 141924 14271 6007936 2024-02-20 04:34:03.199 2024-02-20 04:34:03.199 1000 STREAM 141924 2188 6007948 2024-02-20 04:39:03.218 2024-02-20 04:39:03.218 1000 STREAM 141924 20099 6007949 2024-02-20 04:40:03.261 2024-02-20 04:40:03.261 1000 STREAM 141924 1552 6007955 2024-02-20 04:43:03.246 2024-02-20 04:43:03.246 1000 STREAM 141924 746 6007964 2024-02-20 04:44:03.262 2024-02-20 04:44:03.262 1000 STREAM 141924 18819 6007969 2024-02-20 04:45:03.263 2024-02-20 04:45:03.263 1000 STREAM 141924 946 6007972 2024-02-20 04:46:03.27 2024-02-20 04:46:03.27 1000 STREAM 141924 21457 6007798 2024-02-20 03:52:58.43 2024-02-20 03:52:58.43 1000 FEE 431804 18114 6007799 2024-02-20 03:52:58.43 2024-02-20 03:52:58.43 9000 TIP 431804 2734 6007800 2024-02-20 03:52:58.816 2024-02-20 03:52:58.816 1000 FEE 431804 9482 6007801 2024-02-20 03:52:58.816 2024-02-20 03:52:58.816 9000 TIP 431804 5538 6007814 2024-02-20 03:57:46.501 2024-02-20 03:57:46.501 2100 FEE 432113 10693 6007815 2024-02-20 03:57:46.501 2024-02-20 03:57:46.501 18900 TIP 432113 9107 6007834 2024-02-20 04:00:02.617 2024-02-20 04:00:02.617 1000 STREAM 141924 8176 6007836 2024-02-20 04:00:05.053 2024-02-20 04:00:05.053 1000 FEE 432157 16177 6007840 2024-02-20 04:03:02.78 2024-02-20 04:03:02.78 1000 STREAM 141924 1002 6007847 2024-02-20 04:04:03.282 2024-02-20 04:04:03.282 1000 STREAM 141924 20546 6007855 2024-02-20 04:05:02.783 2024-02-20 04:05:02.783 1000 STREAM 141924 1145 6007856 2024-02-20 04:05:05.574 2024-02-20 04:05:05.574 5700 FEE 432088 14225 6007857 2024-02-20 04:05:05.574 2024-02-20 04:05:05.574 51300 TIP 432088 5527 6007858 2024-02-20 04:06:02.795 2024-02-20 04:06:02.795 1000 STREAM 141924 17014 6007861 2024-02-20 04:07:02.803 2024-02-20 04:07:02.803 1000 STREAM 141924 18626 6007862 2024-02-20 04:08:03.313 2024-02-20 04:08:03.313 1000 STREAM 141924 1585 6007872 2024-02-20 04:11:03.324 2024-02-20 04:11:03.324 1000 STREAM 141924 18336 6007875 2024-02-20 04:12:03.337 2024-02-20 04:12:03.337 1000 STREAM 141924 4570 6007885 2024-02-20 04:13:22.929 2024-02-20 04:13:22.929 1000 FEE 432164 9517 6007887 2024-02-20 04:15:03.348 2024-02-20 04:15:03.348 1000 STREAM 141924 12736 6007888 2024-02-20 04:16:02.855 2024-02-20 04:16:02.855 1000 STREAM 141924 11820 6007889 2024-02-20 04:17:02.874 2024-02-20 04:17:02.874 1000 STREAM 141924 4819 6007891 2024-02-20 04:19:02.859 2024-02-20 04:19:02.859 1000 STREAM 141924 20756 6007896 2024-02-20 04:20:03.385 2024-02-20 04:20:03.385 1000 STREAM 141924 676 6007899 2024-02-20 04:21:02.874 2024-02-20 04:21:02.874 1000 STREAM 141924 19506 6007900 2024-02-20 04:22:02.873 2024-02-20 04:22:02.873 1000 STREAM 141924 8985 6007903 2024-02-20 04:23:03.386 2024-02-20 04:23:03.386 1000 STREAM 141924 19638 6007905 2024-02-20 04:23:53.733 2024-02-20 04:23:53.733 4400 FEE 431533 18658 6007906 2024-02-20 04:23:53.733 2024-02-20 04:23:53.733 39600 TIP 431533 19878 6007909 2024-02-20 04:24:03.39 2024-02-20 04:24:03.39 1000 STREAM 141924 20062 6007912 2024-02-20 04:25:03.411 2024-02-20 04:25:03.411 1000 STREAM 141924 630 6007913 2024-02-20 04:26:02.888 2024-02-20 04:26:02.888 1000 STREAM 141924 19189 6007915 2024-02-20 04:26:44.881 2024-02-20 04:26:44.881 10100 FEE 432135 2338 6007916 2024-02-20 04:26:44.881 2024-02-20 04:26:44.881 90900 TIP 432135 4173 6007918 2024-02-20 04:27:31.397 2024-02-20 04:27:31.397 1000 FEE 432166 20981 6007923 2024-02-20 04:28:53.366 2024-02-20 04:28:53.366 1000 FEE 432168 4984 6007926 2024-02-20 04:29:03.437 2024-02-20 04:29:03.437 1000 STREAM 141924 18232 6007935 2024-02-20 04:33:06.406 2024-02-20 04:33:06.406 1000 STREAM 141924 704 6007937 2024-02-20 04:35:03.209 2024-02-20 04:35:03.209 1000 STREAM 141924 20525 6007939 2024-02-20 04:36:06.457 2024-02-20 04:36:06.457 1000 STREAM 141924 21047 6007940 2024-02-20 04:37:03.229 2024-02-20 04:37:03.229 1000 STREAM 141924 19826 6007941 2024-02-20 04:38:03.221 2024-02-20 04:38:03.221 1000 STREAM 141924 15526 6007942 2024-02-20 04:38:47.032 2024-02-20 04:38:47.032 400 FEE 432145 2327 6007943 2024-02-20 04:38:47.032 2024-02-20 04:38:47.032 3600 TIP 432145 2206 6007950 2024-02-20 04:41:03.244 2024-02-20 04:41:03.244 1000 STREAM 141924 18368 6007954 2024-02-20 04:42:03.245 2024-02-20 04:42:03.245 1000 STREAM 141924 666 6007960 2024-02-20 04:43:57.949 2024-02-20 04:43:57.949 2500 FEE 432124 21136 6007961 2024-02-20 04:43:57.949 2024-02-20 04:43:57.949 22500 TIP 432124 20799 6007973 2024-02-20 04:47:03.269 2024-02-20 04:47:03.269 1000 STREAM 141924 622 6007974 2024-02-20 04:48:03.266 2024-02-20 04:48:03.266 1000 STREAM 141924 1221 6007978 2024-02-20 04:51:03.279 2024-02-20 04:51:03.279 1000 STREAM 141924 16717 6007988 2024-02-20 04:55:03.258 2024-02-20 04:55:03.258 1000 STREAM 141924 11153 6007991 2024-02-20 04:56:03.27 2024-02-20 04:56:03.27 1000 STREAM 141924 13327 6007996 2024-02-20 04:57:03.271 2024-02-20 04:57:03.271 1000 STREAM 141924 18667 6007998 2024-02-20 04:58:03.266 2024-02-20 04:58:03.266 1000 STREAM 141924 14202 6008000 2024-02-20 05:00:03.294 2024-02-20 05:00:03.294 1000 STREAM 141924 9985 6008018 2024-02-20 05:01:03.283 2024-02-20 05:01:03.283 1000 STREAM 141924 697 6008019 2024-02-20 05:02:03.348 2024-02-20 05:02:03.348 1000 STREAM 141924 17162 6008020 2024-02-20 05:03:03.285 2024-02-20 05:03:03.285 1000 STREAM 141924 20327 6008021 2024-02-20 05:04:03.289 2024-02-20 05:04:03.289 1000 STREAM 141924 1493 6008023 2024-02-20 05:06:03.296 2024-02-20 05:06:03.296 1000 STREAM 141924 12959 6008032 2024-02-20 05:08:03.303 2024-02-20 05:08:03.303 1000 STREAM 141924 18139 6008033 2024-02-20 05:08:26.375 2024-02-20 05:08:26.375 2100 FEE 432078 19394 6008034 2024-02-20 05:08:26.375 2024-02-20 05:08:26.375 18900 TIP 432078 1439 6008080 2024-02-20 05:23:41.411 2024-02-20 05:23:41.411 1000 FEE 432113 13198 6008081 2024-02-20 05:23:41.411 2024-02-20 05:23:41.411 9000 TIP 432113 925 6008090 2024-02-20 05:28:41.243 2024-02-20 05:28:41.243 100100 FEE 430951 21262 6008091 2024-02-20 05:28:41.243 2024-02-20 05:28:41.243 900900 TIP 430951 9099 6008107 2024-02-20 05:33:26.384 2024-02-20 05:33:26.384 100 FEE 432165 1006 6008108 2024-02-20 05:33:26.384 2024-02-20 05:33:26.384 900 TIP 432165 6602 6008109 2024-02-20 05:33:26.608 2024-02-20 05:33:26.608 900 FEE 432165 20059 6008110 2024-02-20 05:33:26.608 2024-02-20 05:33:26.608 8100 TIP 432165 18816 6008111 2024-02-20 05:33:36.683 2024-02-20 05:33:36.683 100 FEE 432170 20717 6008112 2024-02-20 05:33:36.683 2024-02-20 05:33:36.683 900 TIP 432170 5425 6008115 2024-02-20 05:33:38.447 2024-02-20 05:33:38.447 9000 FEE 432170 4175 6008116 2024-02-20 05:33:38.447 2024-02-20 05:33:38.447 81000 TIP 432170 13544 6008154 2024-02-20 05:49:03.119 2024-02-20 05:49:03.119 1000 FEE 431816 19281 6008155 2024-02-20 05:49:03.119 2024-02-20 05:49:03.119 9000 TIP 431816 11992 6008165 2024-02-20 05:49:04.553 2024-02-20 05:49:04.553 1000 FEE 431816 8508 6008166 2024-02-20 05:49:04.553 2024-02-20 05:49:04.553 9000 TIP 431816 9109 6008167 2024-02-20 05:49:06.794 2024-02-20 05:49:06.794 1000 FEE 431816 21455 6008168 2024-02-20 05:49:06.794 2024-02-20 05:49:06.794 9000 TIP 431816 21214 6008195 2024-02-20 05:49:09.874 2024-02-20 05:49:09.874 1000 FEE 431816 20969 6008196 2024-02-20 05:49:09.874 2024-02-20 05:49:09.874 9000 TIP 431816 825 6008211 2024-02-20 05:49:13.472 2024-02-20 05:49:13.472 1000 FEE 431816 18941 6008212 2024-02-20 05:49:13.472 2024-02-20 05:49:13.472 9000 TIP 431816 837 6008288 2024-02-20 06:26:03.162 2024-02-20 06:26:03.162 2100 FEE 431931 998 6008289 2024-02-20 06:26:03.162 2024-02-20 06:26:03.162 18900 TIP 431931 7809 6008300 2024-02-20 06:34:24.242 2024-02-20 06:34:24.242 10000 FEE 432186 21417 6008321 2024-02-20 06:44:00.688 2024-02-20 06:44:00.688 5000 FEE 431816 18714 6008322 2024-02-20 06:44:00.688 2024-02-20 06:44:00.688 45000 TIP 431816 20470 6008328 2024-02-20 06:45:56.682 2024-02-20 06:45:56.682 5000 FEE 432113 1505 6008329 2024-02-20 06:45:56.682 2024-02-20 06:45:56.682 45000 TIP 432113 9482 6008335 2024-02-20 06:46:58.709 2024-02-20 06:46:58.709 100 FEE 432135 16724 6008336 2024-02-20 06:46:58.709 2024-02-20 06:46:58.709 900 TIP 432135 9809 6008367 2024-02-20 06:54:36.852 2024-02-20 06:54:36.852 8600 FEE 430638 5825 6008368 2024-02-20 06:54:36.852 2024-02-20 06:54:36.852 77400 TIP 430638 18932 6008378 2024-02-20 06:56:17.263 2024-02-20 06:56:17.263 500 FEE 321241 807 6008379 2024-02-20 06:56:17.263 2024-02-20 06:56:17.263 4500 TIP 321241 11395 6008382 2024-02-20 06:57:06.378 2024-02-20 06:57:06.378 1000 FEE 432193 5794 6008393 2024-02-20 07:00:17.871 2024-02-20 07:00:17.871 1000 FEE 432104 12268 6008394 2024-02-20 07:00:17.871 2024-02-20 07:00:17.871 9000 TIP 432104 1737 6008407 2024-02-20 07:00:20.416 2024-02-20 07:00:20.416 1000 FEE 432104 20781 6008408 2024-02-20 07:00:20.416 2024-02-20 07:00:20.416 9000 TIP 432104 21400 6008420 2024-02-20 07:04:39.729 2024-02-20 07:04:39.729 800 FEE 431918 631 6008421 2024-02-20 07:04:39.729 2024-02-20 07:04:39.729 7200 TIP 431918 10493 6008441 2024-02-20 07:11:54.32 2024-02-20 07:11:54.32 2100 FEE 431401 18635 6007952 2024-02-20 04:41:15.782 2024-02-20 04:41:15.782 22500 TIP 431856 6419 6007975 2024-02-20 04:49:03.264 2024-02-20 04:49:03.264 1000 STREAM 141924 1785 6007976 2024-02-20 04:50:03.261 2024-02-20 04:50:03.261 1000 STREAM 141924 7510 6007979 2024-02-20 04:52:03.269 2024-02-20 04:52:03.269 1000 STREAM 141924 17042 6007980 2024-02-20 04:53:03.262 2024-02-20 04:53:03.262 1000 STREAM 141924 2010 6007983 2024-02-20 04:53:28.327 2024-02-20 04:53:28.327 1000 FEE 431465 10638 6007984 2024-02-20 04:53:28.327 2024-02-20 04:53:28.327 9000 TIP 431465 20560 6007985 2024-02-20 04:53:28.862 2024-02-20 04:53:28.862 1000 FEE 431465 21398 6007986 2024-02-20 04:53:28.862 2024-02-20 04:53:28.862 9000 TIP 431465 18842 6007987 2024-02-20 04:54:03.263 2024-02-20 04:54:03.263 1000 STREAM 141924 6393 6007989 2024-02-20 04:55:04.465 2024-02-20 04:55:04.465 1000 FEE 432157 7773 6007990 2024-02-20 04:55:04.465 2024-02-20 04:55:04.465 9000 TIP 432157 1236 6007992 2024-02-20 04:56:48.189 2024-02-20 04:56:48.189 100 FEE 432171 9378 6007993 2024-02-20 04:56:48.189 2024-02-20 04:56:48.189 900 TIP 432171 703 6007999 2024-02-20 04:59:03.276 2024-02-20 04:59:03.276 1000 STREAM 141924 4650 6008001 2024-02-20 05:00:15.573 2024-02-20 05:00:15.573 1000 FEE 432173 4102 6008002 2024-02-20 05:00:17.913 2024-02-20 05:00:17.913 800 FEE 432154 19126 6008003 2024-02-20 05:00:17.913 2024-02-20 05:00:17.913 7200 TIP 432154 9367 6008006 2024-02-20 05:00:18.769 2024-02-20 05:00:18.769 800 FEE 432154 1712 6008007 2024-02-20 05:00:18.769 2024-02-20 05:00:18.769 7200 TIP 432154 17514 6008010 2024-02-20 05:00:20.865 2024-02-20 05:00:20.865 800 FEE 432166 15488 6008011 2024-02-20 05:00:20.865 2024-02-20 05:00:20.865 7200 TIP 432166 18231 6008022 2024-02-20 05:05:03.297 2024-02-20 05:05:03.297 1000 STREAM 141924 7389 6008024 2024-02-20 05:07:03.3 2024-02-20 05:07:03.3 1000 STREAM 141924 5759 6008027 2024-02-20 05:07:25.239 2024-02-20 05:07:25.239 2100 FEE 432135 19886 6008028 2024-02-20 05:07:25.239 2024-02-20 05:07:25.239 18900 TIP 432135 4062 6008031 2024-02-20 05:07:58.164 2024-02-20 05:07:58.164 1000 FEE 432174 11609 6008049 2024-02-20 05:19:03.346 2024-02-20 05:19:03.346 1000 STREAM 141924 4059 6008050 2024-02-20 05:20:03.349 2024-02-20 05:20:03.349 1000 STREAM 141924 18170 6008062 2024-02-20 05:22:03.36 2024-02-20 05:22:03.36 1000 STREAM 141924 20156 6008096 2024-02-20 05:32:28.579 2024-02-20 05:32:28.579 100 FEE 432149 21239 6008097 2024-02-20 05:32:28.579 2024-02-20 05:32:28.579 900 TIP 432149 703 6008098 2024-02-20 05:32:29.462 2024-02-20 05:32:29.462 900 FEE 432149 19469 6008099 2024-02-20 05:32:29.462 2024-02-20 05:32:29.462 8100 TIP 432149 10728 6008100 2024-02-20 05:32:29.471 2024-02-20 05:32:29.471 9000 FEE 432149 1474 6008101 2024-02-20 05:32:29.471 2024-02-20 05:32:29.471 81000 TIP 432149 19906 6008105 2024-02-20 05:33:22.048 2024-02-20 05:33:22.048 900 FEE 432167 9705 6008106 2024-02-20 05:33:22.048 2024-02-20 05:33:22.048 8100 TIP 432167 16194 6008113 2024-02-20 05:33:36.91 2024-02-20 05:33:36.91 900 FEE 432170 13169 6008114 2024-02-20 05:33:36.91 2024-02-20 05:33:36.91 8100 TIP 432170 622 6008127 2024-02-20 05:40:29.804 2024-02-20 05:40:29.804 10100 FEE 432152 14202 6008128 2024-02-20 05:40:29.804 2024-02-20 05:40:29.804 90900 TIP 432152 14990 6008141 2024-02-20 05:47:08.72 2024-02-20 05:47:08.72 100 FEE 432176 19511 6008142 2024-02-20 05:47:08.72 2024-02-20 05:47:08.72 900 TIP 432176 1175 6008143 2024-02-20 05:47:08.932 2024-02-20 05:47:08.932 900 FEE 432176 5500 6008144 2024-02-20 05:47:08.932 2024-02-20 05:47:08.932 8100 TIP 432176 976 6008163 2024-02-20 05:49:04.33 2024-02-20 05:49:04.33 1000 FEE 431816 21577 6008164 2024-02-20 05:49:04.33 2024-02-20 05:49:04.33 9000 TIP 431816 6058 6008179 2024-02-20 05:49:08.272 2024-02-20 05:49:08.272 1000 FEE 431816 1438 6008180 2024-02-20 05:49:08.272 2024-02-20 05:49:08.272 9000 TIP 431816 4474 6008209 2024-02-20 05:49:13.276 2024-02-20 05:49:13.276 1000 FEE 431816 20276 6008210 2024-02-20 05:49:13.276 2024-02-20 05:49:13.276 9000 TIP 431816 14650 6008244 2024-02-20 06:08:26.66 2024-02-20 06:08:26.66 2100 FEE 432113 6777 6008245 2024-02-20 06:08:26.66 2024-02-20 06:08:26.66 18900 TIP 432113 20280 6008256 2024-02-20 06:13:03.018 2024-02-20 06:13:03.018 2100 FEE 430440 9184 6008257 2024-02-20 06:13:03.018 2024-02-20 06:13:03.018 18900 TIP 430440 19500 6008259 2024-02-20 06:13:28.938 2024-02-20 06:13:28.938 1000 FEE 432183 6700 6008283 2024-02-20 06:24:18.509 2024-02-20 06:24:18.509 2600 FEE 431981 4388 6008284 2024-02-20 06:24:18.509 2024-02-20 06:24:18.509 23400 TIP 431981 12139 6008345 2024-02-20 06:51:08.53 2024-02-20 06:51:08.53 2100 FEE 432170 21463 6008346 2024-02-20 06:51:08.53 2024-02-20 06:51:08.53 18900 TIP 432170 10056 6008356 2024-02-20 06:52:44.891 2024-02-20 06:52:44.891 2100 FEE 430744 19292 6008357 2024-02-20 06:52:44.891 2024-02-20 06:52:44.891 18900 TIP 430744 1162 6008360 2024-02-20 06:52:47.631 2024-02-20 06:52:47.631 1000 FEE 432190 6260 6008365 2024-02-20 06:54:13.381 2024-02-20 06:54:13.381 33300 FEE 430640 18387 6008366 2024-02-20 06:54:13.381 2024-02-20 06:54:13.381 299700 TIP 430640 15719 6008376 2024-02-20 06:56:12.103 2024-02-20 06:56:12.103 500 FEE 431758 20972 6008377 2024-02-20 06:56:12.103 2024-02-20 06:56:12.103 4500 TIP 431758 17001 6008405 2024-02-20 07:00:19.705 2024-02-20 07:00:19.705 1000 FEE 432104 4048 6008406 2024-02-20 07:00:19.705 2024-02-20 07:00:19.705 9000 TIP 432104 2757 6008418 2024-02-20 07:04:38.821 2024-02-20 07:04:38.821 800 FEE 431918 13553 6008419 2024-02-20 07:04:38.821 2024-02-20 07:04:38.821 7200 TIP 431918 20704 6008455 2024-02-20 07:11:56.877 2024-02-20 07:11:56.877 2100 FEE 432003 3360 6008456 2024-02-20 07:11:56.877 2024-02-20 07:11:56.877 18900 TIP 432003 19821 6008474 2024-02-20 07:12:05.878 2024-02-20 07:12:05.878 2100 FEE 431800 15732 6008475 2024-02-20 07:12:05.878 2024-02-20 07:12:05.878 18900 TIP 431800 5175 6008500 2024-02-20 07:15:15.305 2024-02-20 07:15:15.305 2100 FEE 430497 1489 6008501 2024-02-20 07:15:15.305 2024-02-20 07:15:15.305 18900 TIP 430497 18830 6008504 2024-02-20 07:16:34.802 2024-02-20 07:16:34.802 1000 FEE 432205 3377 6008512 2024-02-20 07:18:51.723 2024-02-20 07:18:51.723 2100 FEE 432206 20302 6008513 2024-02-20 07:18:51.723 2024-02-20 07:18:51.723 18900 TIP 432206 5444 6008533 2024-02-20 07:25:31.295 2024-02-20 07:25:31.295 2100 FEE 431161 910 6008534 2024-02-20 07:25:31.295 2024-02-20 07:25:31.295 18900 TIP 431161 8916 6008536 2024-02-20 07:26:14.976 2024-02-20 07:26:14.976 2100 FEE 431913 20776 6008537 2024-02-20 07:26:14.976 2024-02-20 07:26:14.976 18900 TIP 431913 14941 6008549 2024-02-20 07:30:49.835 2024-02-20 07:30:49.835 1000 FEE 432215 2010 6008569 2024-02-20 07:36:56.76 2024-02-20 07:36:56.76 1000 FEE 432212 21067 6008570 2024-02-20 07:36:56.76 2024-02-20 07:36:56.76 9000 TIP 432212 20306 6008580 2024-02-20 07:39:20.032 2024-02-20 07:39:20.032 2100 FEE 432218 8954 6008581 2024-02-20 07:39:20.032 2024-02-20 07:39:20.032 18900 TIP 432218 2710 6008602 2024-02-20 07:42:28.552 2024-02-20 07:42:28.552 300 FEE 431830 17517 6008603 2024-02-20 07:42:28.552 2024-02-20 07:42:28.552 2700 TIP 431830 16229 6008613 2024-02-20 07:47:19.748 2024-02-20 07:47:19.748 1000 FEE 431926 15266 6008614 2024-02-20 07:47:19.748 2024-02-20 07:47:19.748 9000 TIP 431926 15139 6008674 2024-02-20 08:15:57.817 2024-02-20 08:15:57.817 1000 FEE 432180 11670 6008675 2024-02-20 08:15:57.817 2024-02-20 08:15:57.817 9000 TIP 432180 7916 6008683 2024-02-20 08:16:18.804 2024-02-20 08:16:18.804 1000 FEE 432085 20504 6008684 2024-02-20 08:16:18.804 2024-02-20 08:16:18.804 9000 TIP 432085 20717 6008688 2024-02-20 08:16:26.803 2024-02-20 08:16:26.803 1000 FEE 430933 654 6008689 2024-02-20 08:16:26.803 2024-02-20 08:16:26.803 9000 TIP 430933 21070 6008715 2024-02-20 08:20:14.94 2024-02-20 08:20:14.94 0 FEE 383547 11423 6008723 2024-02-20 08:24:13.437 2024-02-20 08:24:13.437 11100 FEE 430827 3396 6008724 2024-02-20 08:24:13.437 2024-02-20 08:24:13.437 99900 TIP 430827 19907 6008749 2024-02-20 08:38:29.162 2024-02-20 08:38:29.162 1600 FEE 432215 4502 6008750 2024-02-20 08:38:29.162 2024-02-20 08:38:29.162 14400 TIP 432215 18743 6008756 2024-02-20 08:40:49.285 2024-02-20 08:40:49.285 2500 FEE 431842 2065 6008757 2024-02-20 08:40:49.285 2024-02-20 08:40:49.285 22500 TIP 431842 18892 6008029 2024-02-20 05:07:39.267 2024-02-20 05:07:39.267 2100 FEE 432106 21139 6008030 2024-02-20 05:07:39.267 2024-02-20 05:07:39.267 18900 TIP 432106 19462 6008037 2024-02-20 05:09:03.357 2024-02-20 05:09:03.357 1000 STREAM 141924 20889 6008038 2024-02-20 05:10:03.373 2024-02-20 05:10:03.373 1000 STREAM 141924 15160 6008039 2024-02-20 05:11:03.354 2024-02-20 05:11:03.354 1000 STREAM 141924 15094 6008040 2024-02-20 05:12:03.358 2024-02-20 05:12:03.358 1000 STREAM 141924 8570 6008041 2024-02-20 05:13:03.395 2024-02-20 05:13:03.395 1000 STREAM 141924 2709 6008042 2024-02-20 05:14:03.359 2024-02-20 05:14:03.359 1000 STREAM 141924 684 6008043 2024-02-20 05:15:03.358 2024-02-20 05:15:03.358 1000 STREAM 141924 16879 6008044 2024-02-20 05:16:03.368 2024-02-20 05:16:03.368 1000 STREAM 141924 7125 6008051 2024-02-20 05:20:04.535 2024-02-20 05:20:04.535 3300 FEE 432135 4083 6008052 2024-02-20 05:20:04.535 2024-02-20 05:20:04.535 29700 TIP 432135 10728 6008061 2024-02-20 05:21:03.716 2024-02-20 05:21:03.716 1000 STREAM 141924 18932 6008065 2024-02-20 05:23:03.356 2024-02-20 05:23:03.356 1000 STREAM 141924 21079 6008066 2024-02-20 05:23:31.883 2024-02-20 05:23:31.883 1000 FEE 432113 2620 6008067 2024-02-20 05:23:31.883 2024-02-20 05:23:31.883 9000 TIP 432113 1244 6008082 2024-02-20 05:24:03.736 2024-02-20 05:24:03.736 1000 STREAM 141924 1488 6008083 2024-02-20 05:25:03.743 2024-02-20 05:25:03.743 1000 STREAM 141924 17526 6008087 2024-02-20 05:27:02.375 2024-02-20 05:27:02.375 1000 FEE 432175 9427 6008088 2024-02-20 05:27:03.761 2024-02-20 05:27:03.761 1000 STREAM 141924 18736 6008089 2024-02-20 05:28:03.764 2024-02-20 05:28:03.764 1000 STREAM 141924 20562 6008094 2024-02-20 05:31:03.777 2024-02-20 05:31:03.777 1000 STREAM 141924 9342 6008095 2024-02-20 05:32:03.78 2024-02-20 05:32:03.78 1000 STREAM 141924 17673 6008102 2024-02-20 05:33:03.781 2024-02-20 05:33:03.781 1000 STREAM 141924 18829 6008118 2024-02-20 05:35:03.795 2024-02-20 05:35:03.795 1000 STREAM 141924 2431 6008121 2024-02-20 05:37:05.812 2024-02-20 05:37:05.812 1000 FEE 432176 979 6008124 2024-02-20 05:38:03.811 2024-02-20 05:38:03.811 1000 STREAM 141924 9705 6008135 2024-02-20 05:46:03.874 2024-02-20 05:46:03.874 1000 STREAM 141924 15833 6008149 2024-02-20 05:48:03.884 2024-02-20 05:48:03.884 1000 STREAM 141924 3717 6008158 2024-02-20 05:49:03.613 2024-02-20 05:49:03.613 1000 FEE 431816 2293 6008159 2024-02-20 05:49:03.613 2024-02-20 05:49:03.613 9000 TIP 431816 12222 6008160 2024-02-20 05:49:03.89 2024-02-20 05:49:03.89 1000 STREAM 141924 8541 6008183 2024-02-20 05:49:08.677 2024-02-20 05:49:08.677 1000 FEE 431816 16753 6008184 2024-02-20 05:49:08.677 2024-02-20 05:49:08.677 9000 TIP 431816 8648 6008189 2024-02-20 05:49:09.29 2024-02-20 05:49:09.29 1000 FEE 431816 1740 6008190 2024-02-20 05:49:09.29 2024-02-20 05:49:09.29 9000 TIP 431816 21271 6008219 2024-02-20 05:50:03.605 2024-02-20 05:50:03.605 1000 STREAM 141924 6688 6008228 2024-02-20 05:57:03.927 2024-02-20 05:57:03.927 1000 STREAM 141924 21021 6008229 2024-02-20 05:58:03.937 2024-02-20 05:58:03.937 1000 STREAM 141924 1488 6008230 2024-02-20 05:59:03.942 2024-02-20 05:59:03.942 1000 STREAM 141924 19471 6008231 2024-02-20 06:00:03.961 2024-02-20 06:00:03.961 1000 STREAM 141924 18460 6008262 2024-02-20 06:13:35.06 2024-02-20 06:13:35.06 2100 FEE 432149 21303 6008263 2024-02-20 06:13:35.06 2024-02-20 06:13:35.06 18900 TIP 432149 1236 6008265 2024-02-20 06:15:03.822 2024-02-20 06:15:03.822 1000 STREAM 141924 16848 6008266 2024-02-20 06:16:04.057 2024-02-20 06:16:04.057 1000 STREAM 141924 11158 6008268 2024-02-20 06:18:04.067 2024-02-20 06:18:04.067 1000 STREAM 141924 18816 6008270 2024-02-20 06:20:04.098 2024-02-20 06:20:04.098 1000 STREAM 141924 21157 6008271 2024-02-20 06:21:04.091 2024-02-20 06:21:04.091 1000 STREAM 141924 11716 6008273 2024-02-20 06:21:50.625 2024-02-20 06:21:50.625 100 FEE 432179 14785 6008274 2024-02-20 06:21:50.625 2024-02-20 06:21:50.625 900 TIP 432179 11698 6008313 2024-02-20 06:42:30.798 2024-02-20 06:42:30.798 5000 FEE 432166 673 6008314 2024-02-20 06:42:30.798 2024-02-20 06:42:30.798 45000 TIP 432166 882 6008317 2024-02-20 06:42:59.418 2024-02-20 06:42:59.418 5000 FEE 432166 1836 6008318 2024-02-20 06:42:59.418 2024-02-20 06:42:59.418 45000 TIP 432166 20871 6008325 2024-02-20 06:45:50.669 2024-02-20 06:45:50.669 100 FEE 432170 20450 6008326 2024-02-20 06:45:50.669 2024-02-20 06:45:50.669 900 TIP 432170 7869 6008327 2024-02-20 06:45:53.585 2024-02-20 06:45:53.585 1000 FEE 432188 691 6008354 2024-02-20 06:52:17.199 2024-02-20 06:52:17.199 100000 FEE 430642 1105 6008355 2024-02-20 06:52:17.199 2024-02-20 06:52:17.199 900000 TIP 430642 18640 6008372 2024-02-20 06:55:45.948 2024-02-20 06:55:45.948 500 FEE 431818 16177 6008373 2024-02-20 06:55:45.948 2024-02-20 06:55:45.948 4500 TIP 431818 9307 6008385 2024-02-20 06:59:07.769 2024-02-20 06:59:07.769 1000 FEE 432194 15213 6008388 2024-02-20 07:00:05.126 2024-02-20 07:00:05.126 1000 FEE 432196 4819 6008409 2024-02-20 07:00:49.759 2024-02-20 07:00:49.759 0 FEE 432194 889 6008414 2024-02-20 07:04:38.49 2024-02-20 07:04:38.49 800 FEE 431918 18865 6008415 2024-02-20 07:04:38.49 2024-02-20 07:04:38.49 7200 TIP 431918 20680 6008469 2024-02-20 07:12:01.081 2024-02-20 07:12:01.081 2100 FEE 432149 722 6008470 2024-02-20 07:12:01.081 2024-02-20 07:12:01.081 18900 TIP 432149 6137 6008482 2024-02-20 07:13:29.615 2024-02-20 07:13:29.615 800 FEE 430942 19458 6008483 2024-02-20 07:13:29.615 2024-02-20 07:13:29.615 7200 TIP 430942 16867 6008493 2024-02-20 07:15:09.187 2024-02-20 07:15:09.187 800 FEE 430892 21509 6008494 2024-02-20 07:15:09.187 2024-02-20 07:15:09.187 7200 TIP 430892 10934 6008503 2024-02-20 07:16:16.146 2024-02-20 07:16:16.146 1000 FEE 432204 1198 6008529 2024-02-20 07:25:14.93 2024-02-20 07:25:14.93 2100 FEE 431935 928 6008530 2024-02-20 07:25:14.93 2024-02-20 07:25:14.93 18900 TIP 431935 20036 6008538 2024-02-20 07:26:19.196 2024-02-20 07:26:19.196 2100 FEE 432199 658 6008539 2024-02-20 07:26:19.196 2024-02-20 07:26:19.196 18900 TIP 432199 16432 6008557 2024-02-20 07:31:48.983 2024-02-20 07:31:48.983 21000 FEE 432216 725 6008589 2024-02-20 07:41:21.991 2024-02-20 07:41:21.991 21000 FEE 430656 1030 6008590 2024-02-20 07:41:21.991 2024-02-20 07:41:21.991 189000 TIP 430656 2776 6008600 2024-02-20 07:42:28.311 2024-02-20 07:42:28.311 600 FEE 431830 18816 6008601 2024-02-20 07:42:28.311 2024-02-20 07:42:28.311 5400 TIP 431830 1261 6008611 2024-02-20 07:46:05.826 2024-02-20 07:46:05.826 1000 FEE 432223 4048 6008622 2024-02-20 07:51:05.882 2024-02-20 07:51:05.882 1000 FEE 432225 21600 6008623 2024-02-20 07:51:24.398 2024-02-20 07:51:24.398 3000 FEE 432186 14122 6008624 2024-02-20 07:51:24.398 2024-02-20 07:51:24.398 27000 TIP 432186 21216 6008625 2024-02-20 07:51:46.625 2024-02-20 07:51:46.625 1000 FEE 432226 699 6008630 2024-02-20 07:52:25.653 2024-02-20 07:52:25.653 1000 FEE 431816 647 6008631 2024-02-20 07:52:25.653 2024-02-20 07:52:25.653 9000 TIP 431816 19465 6008645 2024-02-20 07:59:55.44 2024-02-20 07:59:55.44 0 FEE 432225 895 6008685 2024-02-20 08:16:22.682 2024-02-20 08:16:22.682 0 FEE 432234 19038 6008178 2024-02-20 05:49:08.057 2024-02-20 05:49:08.057 9000 TIP 431816 19153 6008191 2024-02-20 05:49:09.48 2024-02-20 05:49:09.48 1000 FEE 431816 999 6008192 2024-02-20 05:49:09.48 2024-02-20 05:49:09.48 9000 TIP 431816 21356 6008217 2024-02-20 05:49:14.591 2024-02-20 05:49:14.591 2000 FEE 431816 2757 6008218 2024-02-20 05:49:14.591 2024-02-20 05:49:14.591 18000 TIP 431816 18909 6008221 2024-02-20 05:51:42.939 2024-02-20 05:51:42.939 3300 FEE 431904 882 6008222 2024-02-20 05:51:42.939 2024-02-20 05:51:42.939 29700 TIP 431904 5160 6008248 2024-02-20 06:09:01.632 2024-02-20 06:09:01.632 5000 FEE 432049 10771 6008249 2024-02-20 06:09:01.632 2024-02-20 06:09:01.632 45000 TIP 432049 20539 6008280 2024-02-20 06:22:49.906 2024-02-20 06:22:49.906 1000 FEE 432184 18472 6008285 2024-02-20 06:24:26.205 2024-02-20 06:24:26.205 2600 FEE 432020 19966 6008286 2024-02-20 06:24:26.205 2024-02-20 06:24:26.205 23400 TIP 432020 667 6008330 2024-02-20 06:45:57.996 2024-02-20 06:45:57.996 100 FEE 432149 6310 6008331 2024-02-20 06:45:57.996 2024-02-20 06:45:57.996 900 TIP 432149 14705 6008358 2024-02-20 06:52:44.948 2024-02-20 06:52:44.948 33300 FEE 430640 5057 6008359 2024-02-20 06:52:44.948 2024-02-20 06:52:44.948 299700 TIP 430640 4798 6008387 2024-02-20 07:00:04.71 2024-02-20 07:00:04.71 100000 FEE 432195 12779 6008422 2024-02-20 07:04:55.147 2024-02-20 07:04:55.147 1000 FEE 432197 4776 6008426 2024-02-20 07:07:13.794 2024-02-20 07:07:13.794 1000 FEE 432176 19857 6008427 2024-02-20 07:07:13.794 2024-02-20 07:07:13.794 9000 TIP 432176 5961 6008431 2024-02-20 07:10:28.439 2024-02-20 07:10:28.439 100000 FEE 432198 18679 6008432 2024-02-20 07:10:33.004 2024-02-20 07:10:33.004 100000 FEE 432199 18230 6008434 2024-02-20 07:11:27.401 2024-02-20 07:11:27.401 1000 FEE 432200 894 6008445 2024-02-20 07:11:55.309 2024-02-20 07:11:55.309 800 FEE 431079 5377 6008446 2024-02-20 07:11:55.309 2024-02-20 07:11:55.309 7200 TIP 431079 18679 6008451 2024-02-20 07:11:55.987 2024-02-20 07:11:55.987 800 FEE 431079 10668 6008452 2024-02-20 07:11:55.987 2024-02-20 07:11:55.987 7200 TIP 431079 981 6008463 2024-02-20 07:11:59.773 2024-02-20 07:11:59.773 800 FEE 432014 746 6008464 2024-02-20 07:11:59.773 2024-02-20 07:11:59.773 7200 TIP 432014 3342 6008480 2024-02-20 07:13:29.416 2024-02-20 07:13:29.416 800 FEE 430942 1596 6008481 2024-02-20 07:13:29.416 2024-02-20 07:13:29.416 7200 TIP 430942 20412 6008490 2024-02-20 07:14:06.011 2024-02-20 07:14:06.011 0 FEE 432199 17116 6008508 2024-02-20 07:17:51.282 2024-02-20 07:17:51.282 2100 FEE 432202 21344 6008509 2024-02-20 07:17:51.282 2024-02-20 07:17:51.282 18900 TIP 432202 5757 6008511 2024-02-20 07:18:08.919 2024-02-20 07:18:08.919 1000 FEE 432206 14247 6008562 2024-02-20 07:34:10.521 2024-02-20 07:34:10.521 100 FEE 431920 8284 6008563 2024-02-20 07:34:10.521 2024-02-20 07:34:10.521 900 TIP 431920 12097 6008565 2024-02-20 07:35:02.809 2024-02-20 07:35:02.809 1000 FEE 432217 20674 6008575 2024-02-20 07:38:37.262 2024-02-20 07:38:37.262 10000 FEE 432113 889 6008576 2024-02-20 07:38:37.262 2024-02-20 07:38:37.262 90000 TIP 432113 19034 6008585 2024-02-20 07:40:55.849 2024-02-20 07:40:55.849 1000 FEE 432219 17103 6008594 2024-02-20 07:42:27.634 2024-02-20 07:42:27.634 300 FEE 431830 5852 6008595 2024-02-20 07:42:27.634 2024-02-20 07:42:27.634 2700 TIP 431830 20299 6008632 2024-02-20 07:52:52.376 2024-02-20 07:52:52.376 1000 FEE 432228 16270 6008672 2024-02-20 08:15:55.686 2024-02-20 08:15:55.686 1000 FEE 432196 9342 6008673 2024-02-20 08:15:55.686 2024-02-20 08:15:55.686 9000 TIP 432196 18525 6008694 2024-02-20 08:16:39.176 2024-02-20 08:16:39.176 1000 FEE 430942 18816 6008695 2024-02-20 08:16:39.176 2024-02-20 08:16:39.176 9000 TIP 430942 20059 6008742 2024-02-20 08:35:20.207 2024-02-20 08:35:20.207 1000 FEE 432245 9332 6008753 2024-02-20 08:39:52.216 2024-02-20 08:39:52.216 2500 FEE 432203 21036 6008754 2024-02-20 08:39:52.216 2024-02-20 08:39:52.216 22500 TIP 432203 1628 6008760 2024-02-20 08:41:25.711 2024-02-20 08:41:25.711 2500 FEE 432216 4633 6008761 2024-02-20 08:41:25.711 2024-02-20 08:41:25.711 22500 TIP 432216 16485 6008769 2024-02-20 08:42:42.598 2024-02-20 08:42:42.598 500 FEE 432203 11821 6008770 2024-02-20 08:42:42.598 2024-02-20 08:42:42.598 4500 TIP 432203 705 6008784 2024-02-20 08:48:05.789 2024-02-20 08:48:05.789 1000 FEE 432254 20153 6008791 2024-02-20 08:50:56.781 2024-02-20 08:50:56.781 2000 FEE 432255 4521 6008799 2024-02-20 08:54:20.763 2024-02-20 08:54:20.763 2100 FEE 432203 17166 6008800 2024-02-20 08:54:20.763 2024-02-20 08:54:20.763 18900 TIP 432203 1478 6008827 2024-02-20 09:03:30.852 2024-02-20 09:03:30.852 2500 FEE 430854 20353 6008828 2024-02-20 09:03:30.852 2024-02-20 09:03:30.852 22500 TIP 430854 18659 6008850 2024-02-20 09:13:23.734 2024-02-20 09:13:23.734 100 FEE 432204 20036 6008851 2024-02-20 09:13:23.734 2024-02-20 09:13:23.734 900 TIP 432204 12930 6008854 2024-02-20 09:13:24.501 2024-02-20 09:13:24.501 100 FEE 432204 1291 6008855 2024-02-20 09:13:24.501 2024-02-20 09:13:24.501 900 TIP 432204 19569 6008870 2024-02-20 09:21:15.892 2024-02-20 09:21:15.892 1000 FEE 432266 13987 6008885 2024-02-20 09:27:00.784 2024-02-20 09:27:00.784 1000 FEE 432273 19637 6008890 2024-02-20 09:28:59.064 2024-02-20 09:28:59.064 100 FEE 432257 18363 6008891 2024-02-20 09:28:59.064 2024-02-20 09:28:59.064 900 TIP 432257 18956 6008929 2024-02-20 09:36:47.25 2024-02-20 09:36:47.25 2100 FEE 432276 16939 6008930 2024-02-20 09:36:47.25 2024-02-20 09:36:47.25 18900 TIP 432276 21088 6008963 2024-02-20 09:40:23.964 2024-02-20 09:40:23.964 100 FEE 432290 2711 6008964 2024-02-20 09:40:23.964 2024-02-20 09:40:23.964 900 TIP 432290 8289 6008970 2024-02-20 09:40:31.176 2024-02-20 09:40:31.176 12800 FEE 432085 18243 6008971 2024-02-20 09:40:31.176 2024-02-20 09:40:31.176 115200 TIP 432085 854 6008979 2024-02-20 09:41:41.94 2024-02-20 09:41:41.94 1000 FEE 432191 1236 6008980 2024-02-20 09:41:41.94 2024-02-20 09:41:41.94 9000 TIP 432191 16532 6009010 2024-02-20 09:42:07.433 2024-02-20 09:42:07.433 1000 FEE 431171 20251 6009011 2024-02-20 09:42:07.433 2024-02-20 09:42:07.433 9000 TIP 431171 16149 6009020 2024-02-20 09:42:18.402 2024-02-20 09:42:18.402 1000 FEE 430155 15858 6009021 2024-02-20 09:42:18.402 2024-02-20 09:42:18.402 9000 TIP 430155 1060 6009032 2024-02-20 09:42:21.417 2024-02-20 09:42:21.417 1000 FEE 432179 14669 6009033 2024-02-20 09:42:21.417 2024-02-20 09:42:21.417 9000 TIP 432179 929 6009091 2024-02-20 09:47:16.093 2024-02-20 09:47:16.093 1000 FEE 430692 16485 6009092 2024-02-20 09:47:16.093 2024-02-20 09:47:16.093 9000 TIP 430692 14939 6009140 2024-02-20 09:49:44.334 2024-02-20 09:49:44.334 4000 FEE 432186 811 6009141 2024-02-20 09:49:44.334 2024-02-20 09:49:44.334 36000 TIP 432186 18468 6009171 2024-02-20 09:51:42.754 2024-02-20 09:51:42.754 2100 FEE 432113 21393 6009172 2024-02-20 09:51:42.754 2024-02-20 09:51:42.754 18900 TIP 432113 20751 6009177 2024-02-20 09:51:47.102 2024-02-20 09:51:47.102 2100 FEE 432088 18446 6009178 2024-02-20 09:51:47.102 2024-02-20 09:51:47.102 18900 TIP 432088 9150 6009191 2024-02-20 09:51:57.197 2024-02-20 09:51:57.197 2100 FEE 432106 12057 6009192 2024-02-20 09:51:57.197 2024-02-20 09:51:57.197 18900 TIP 432106 5017 6009200 2024-02-20 09:52:20.034 2024-02-20 09:52:20.034 1000 FEE 430976 9438 6009201 2024-02-20 09:52:20.034 2024-02-20 09:52:20.034 9000 TIP 430976 19524 6009213 2024-02-20 09:53:25.924 2024-02-20 09:53:25.924 1000 FEE 430601 4118 6009214 2024-02-20 09:53:25.924 2024-02-20 09:53:25.924 9000 TIP 430601 19488 6009224 2024-02-20 09:54:36.822 2024-02-20 09:54:36.822 1000 FEE 432303 8269 6009236 2024-02-20 09:58:04.795 2024-02-20 09:58:04.795 100 FEE 432304 20099 6009237 2024-02-20 09:58:04.795 2024-02-20 09:58:04.795 900 TIP 432304 20006 6009238 2024-02-20 09:58:05.218 2024-02-20 09:58:05.218 100 FEE 432304 717 6009239 2024-02-20 09:58:05.218 2024-02-20 09:58:05.218 900 TIP 432304 10484 6009240 2024-02-20 09:58:05.504 2024-02-20 09:58:05.504 100 FEE 432304 18220 6009241 2024-02-20 09:58:05.504 2024-02-20 09:58:05.504 900 TIP 432304 641 6009278 2024-02-20 10:13:18.182 2024-02-20 10:13:18.182 2100 FEE 432300 12097 6009279 2024-02-20 10:13:18.182 2024-02-20 10:13:18.182 18900 TIP 432300 2206 6009301 2024-02-20 10:17:07.456 2024-02-20 10:17:07.456 10000 FEE 432320 11670 6008213 2024-02-20 05:49:13.668 2024-02-20 05:49:13.668 1000 FEE 431816 18897 6008214 2024-02-20 05:49:13.668 2024-02-20 05:49:13.668 9000 TIP 431816 19566 6008225 2024-02-20 05:54:07.116 2024-02-20 05:54:07.116 1000 STREAM 141924 16432 6008227 2024-02-20 05:56:04.18 2024-02-20 05:56:04.18 1000 STREAM 141924 21624 6008240 2024-02-20 06:05:18.92 2024-02-20 06:05:18.92 1000 FEE 432182 21281 6008255 2024-02-20 06:12:05.204 2024-02-20 06:12:05.204 1000 STREAM 141924 2844 6008258 2024-02-20 06:13:03.801 2024-02-20 06:13:03.801 1000 STREAM 141924 18772 6008260 2024-02-20 06:13:31.941 2024-02-20 06:13:31.941 2600 FEE 432113 20258 6008261 2024-02-20 06:13:31.941 2024-02-20 06:13:31.941 23400 TIP 432113 19034 6008264 2024-02-20 06:14:05.181 2024-02-20 06:14:05.181 1000 STREAM 141924 20470 6008267 2024-02-20 06:17:03.823 2024-02-20 06:17:03.823 1000 STREAM 141924 10693 6008282 2024-02-20 06:24:03.835 2024-02-20 06:24:03.835 1000 STREAM 141924 14939 6008287 2024-02-20 06:25:04.369 2024-02-20 06:25:04.369 1000 STREAM 141924 8541 6008290 2024-02-20 06:26:03.827 2024-02-20 06:26:03.827 1000 STREAM 141924 13767 6008291 2024-02-20 06:27:04.057 2024-02-20 06:27:04.057 1000 STREAM 141924 14278 6008292 2024-02-20 06:28:04.054 2024-02-20 06:28:04.054 1000 STREAM 141924 16670 6008293 2024-02-20 06:29:04.059 2024-02-20 06:29:04.059 1000 STREAM 141924 16988 6008294 2024-02-20 06:30:03.88 2024-02-20 06:30:03.88 1000 STREAM 141924 21349 6008295 2024-02-20 06:31:03.881 2024-02-20 06:31:03.881 1000 STREAM 141924 20424 6008297 2024-02-20 06:32:03.908 2024-02-20 06:32:03.908 1000 STREAM 141924 9758 6008298 2024-02-20 06:33:03.928 2024-02-20 06:33:03.928 1000 STREAM 141924 21612 6008299 2024-02-20 06:34:03.923 2024-02-20 06:34:03.923 1000 STREAM 141924 17011 6008301 2024-02-20 06:35:03.961 2024-02-20 06:35:03.961 1000 STREAM 141924 6202 6008302 2024-02-20 06:36:03.963 2024-02-20 06:36:03.963 1000 STREAM 141924 20775 6008303 2024-02-20 06:37:03.989 2024-02-20 06:37:03.989 1000 STREAM 141924 20006 6008304 2024-02-20 06:38:04.005 2024-02-20 06:38:04.005 1000 STREAM 141924 11328 6008307 2024-02-20 06:39:04.022 2024-02-20 06:39:04.022 1000 STREAM 141924 2361 6008308 2024-02-20 06:40:04.069 2024-02-20 06:40:04.069 1000 STREAM 141924 21104 6008309 2024-02-20 06:41:04.062 2024-02-20 06:41:04.062 1000 STREAM 141924 11522 6008310 2024-02-20 06:42:04.074 2024-02-20 06:42:04.074 1000 STREAM 141924 21014 6008311 2024-02-20 06:42:11.465 2024-02-20 06:42:11.465 5000 FEE 432154 19281 6008312 2024-02-20 06:42:11.465 2024-02-20 06:42:11.465 45000 TIP 432154 2176 6008319 2024-02-20 06:43:04.079 2024-02-20 06:43:04.079 1000 STREAM 141924 19398 6008323 2024-02-20 06:44:04.106 2024-02-20 06:44:04.106 1000 STREAM 141924 18865 6008324 2024-02-20 06:45:04.105 2024-02-20 06:45:04.105 1000 STREAM 141924 21357 6008339 2024-02-20 06:47:04.12 2024-02-20 06:47:04.12 1000 STREAM 141924 1584 6008340 2024-02-20 06:48:04.126 2024-02-20 06:48:04.126 1000 STREAM 141924 1603 6008344 2024-02-20 06:51:04.124 2024-02-20 06:51:04.124 1000 STREAM 141924 18941 6008361 2024-02-20 06:53:04.17 2024-02-20 06:53:04.17 1000 STREAM 141924 1122 6008369 2024-02-20 06:55:04.171 2024-02-20 06:55:04.171 1000 STREAM 141924 5557 6008375 2024-02-20 06:56:04.184 2024-02-20 06:56:04.184 1000 STREAM 141924 14795 6008381 2024-02-20 06:57:04.178 2024-02-20 06:57:04.178 1000 STREAM 141924 8133 6008384 2024-02-20 06:59:04.207 2024-02-20 06:59:04.207 1000 STREAM 141924 21494 6008391 2024-02-20 07:00:17.514 2024-02-20 07:00:17.514 1000 FEE 432104 8326 6008392 2024-02-20 07:00:17.514 2024-02-20 07:00:17.514 9000 TIP 432104 17212 6008395 2024-02-20 07:00:18.049 2024-02-20 07:00:18.049 1000 FEE 432104 671 6008396 2024-02-20 07:00:18.049 2024-02-20 07:00:18.049 9000 TIP 432104 9833 6008399 2024-02-20 07:00:18.493 2024-02-20 07:00:18.493 1000 FEE 432104 10536 6008400 2024-02-20 07:00:18.493 2024-02-20 07:00:18.493 9000 TIP 432104 20596 6008403 2024-02-20 07:00:18.953 2024-02-20 07:00:18.953 1000 FEE 432104 1488 6008404 2024-02-20 07:00:18.953 2024-02-20 07:00:18.953 9000 TIP 432104 19151 6008416 2024-02-20 07:04:38.601 2024-02-20 07:04:38.601 800 FEE 431918 12959 6008417 2024-02-20 07:04:38.601 2024-02-20 07:04:38.601 7200 TIP 431918 18774 6008437 2024-02-20 07:11:52.848 2024-02-20 07:11:52.848 2100 FEE 431844 19117 6008438 2024-02-20 07:11:52.848 2024-02-20 07:11:52.848 18900 TIP 431844 20546 6008461 2024-02-20 07:11:59.612 2024-02-20 07:11:59.612 800 FEE 432014 16753 6008462 2024-02-20 07:11:59.612 2024-02-20 07:11:59.612 7200 TIP 432014 986 6008484 2024-02-20 07:13:54.36 2024-02-20 07:13:54.36 0 FEE 432199 18072 6008491 2024-02-20 07:14:23.445 2024-02-20 07:14:23.445 0 FEE 432199 13927 6008506 2024-02-20 07:17:45.084 2024-02-20 07:17:45.084 2100 FEE 431877 18473 6008507 2024-02-20 07:17:45.084 2024-02-20 07:17:45.084 18900 TIP 431877 21509 6008516 2024-02-20 07:20:53.113 2024-02-20 07:20:53.113 1000 FEE 432207 16830 6008518 2024-02-20 07:21:04.336 2024-02-20 07:21:04.336 1000 STREAM 141924 5444 6008531 2024-02-20 07:25:30.273 2024-02-20 07:25:30.273 2100 FEE 431162 18393 6008532 2024-02-20 07:25:30.273 2024-02-20 07:25:30.273 18900 TIP 431162 19980 6008535 2024-02-20 07:26:04.343 2024-02-20 07:26:04.343 1000 STREAM 141924 20340 6008540 2024-02-20 07:27:04.353 2024-02-20 07:27:04.353 1000 STREAM 141924 21373 6008542 2024-02-20 07:27:44.562 2024-02-20 07:27:44.562 1000 FEE 432212 19848 6008543 2024-02-20 07:28:04.364 2024-02-20 07:28:04.364 1000 STREAM 141924 21292 6008552 2024-02-20 07:31:04.404 2024-02-20 07:31:04.404 1000 STREAM 141924 2789 6008555 2024-02-20 07:31:42.507 2024-02-20 07:31:42.507 800 FEE 430612 18543 6008556 2024-02-20 07:31:42.507 2024-02-20 07:31:42.507 7200 TIP 430612 19033 6008558 2024-02-20 07:32:04.395 2024-02-20 07:32:04.395 1000 STREAM 141924 20616 6008566 2024-02-20 07:35:04.459 2024-02-20 07:35:04.459 1000 STREAM 141924 18138 6008568 2024-02-20 07:36:04.466 2024-02-20 07:36:04.466 1000 STREAM 141924 16858 6008572 2024-02-20 07:37:59.657 2024-02-20 07:37:59.657 100 FEE 431122 20681 6008573 2024-02-20 07:37:59.657 2024-02-20 07:37:59.657 900 TIP 431122 2502 6008592 2024-02-20 07:42:27.44 2024-02-20 07:42:27.44 300 FEE 431830 21216 6008593 2024-02-20 07:42:27.44 2024-02-20 07:42:27.44 2700 TIP 431830 725 6008621 2024-02-20 07:51:04.714 2024-02-20 07:51:04.714 1000 STREAM 141924 1030 6008626 2024-02-20 07:52:03.043 2024-02-20 07:52:03.043 1000 STREAM 141924 7818 6008638 2024-02-20 07:55:04.713 2024-02-20 07:55:04.713 1000 STREAM 141924 21119 6008640 2024-02-20 07:57:04.724 2024-02-20 07:57:04.724 1000 STREAM 141924 19583 6008652 2024-02-20 08:03:04.721 2024-02-20 08:03:04.721 1000 STREAM 141924 19484 6008654 2024-02-20 08:05:04.741 2024-02-20 08:05:04.741 1000 STREAM 141924 9611 6008658 2024-02-20 08:07:04.725 2024-02-20 08:07:04.725 1000 STREAM 141924 20802 6008660 2024-02-20 08:08:24.979 2024-02-20 08:08:24.979 10000 FEE 432199 3683 6008661 2024-02-20 08:08:24.979 2024-02-20 08:08:24.979 90000 TIP 432199 20674 6008664 2024-02-20 08:11:04.751 2024-02-20 08:11:04.751 1000 STREAM 141924 16178 6008666 2024-02-20 08:13:04.78 2024-02-20 08:13:04.78 1000 STREAM 141924 6148 6008669 2024-02-20 08:15:11.304 2024-02-20 08:15:11.304 21000 FEE 432234 21320 6008677 2024-02-20 08:16:05.843 2024-02-20 08:16:05.843 1000 FEE 432180 2748 6008678 2024-02-20 08:16:05.843 2024-02-20 08:16:05.843 9000 TIP 432180 8498 6008686 2024-02-20 08:16:23.883 2024-02-20 08:16:23.883 1000 FEE 431079 20094 6008687 2024-02-20 08:16:23.883 2024-02-20 08:16:23.883 9000 TIP 431079 20573 6008690 2024-02-20 08:16:29.079 2024-02-20 08:16:29.079 1000 FEE 431856 18330 6008691 2024-02-20 08:16:29.079 2024-02-20 08:16:29.079 9000 TIP 431856 20434 6008701 2024-02-20 08:17:50.638 2024-02-20 08:17:50.638 2100 FEE 240060 721 6008702 2024-02-20 08:17:50.638 2024-02-20 08:17:50.638 18900 TIP 240060 1738 6008730 2024-02-20 08:27:49.353 2024-02-20 08:27:49.353 17000 FEE 432241 21233 6008739 2024-02-20 08:34:09.993 2024-02-20 08:34:09.993 21000 FEE 432243 6798 6008762 2024-02-20 08:41:36.329 2024-02-20 08:41:36.329 100000 FEE 432249 20554 6008765 2024-02-20 08:41:45.466 2024-02-20 08:41:45.466 2500 FEE 432204 11829 6008766 2024-02-20 08:41:45.466 2024-02-20 08:41:45.466 22500 TIP 432204 7097 6008767 2024-02-20 08:42:00.196 2024-02-20 08:42:00.196 1000 FEE 432250 3342 6008781 2024-02-20 08:47:43.272 2024-02-20 08:47:43.272 500 FEE 431816 8376 6008782 2024-02-20 08:47:43.272 2024-02-20 08:47:43.272 4500 TIP 431816 670 6008320 2024-02-20 06:43:20.75 2024-02-20 06:43:20.75 1000 FEE 432187 3506 6008332 2024-02-20 06:46:04.122 2024-02-20 06:46:04.122 1000 STREAM 141924 20117 6008333 2024-02-20 06:46:15.689 2024-02-20 06:46:15.689 100 FEE 432101 21412 6008334 2024-02-20 06:46:15.689 2024-02-20 06:46:15.689 900 TIP 432101 1273 6008337 2024-02-20 06:47:00.121 2024-02-20 06:47:00.121 100 FEE 432113 20258 6008338 2024-02-20 06:47:00.121 2024-02-20 06:47:00.121 900 TIP 432113 17171 6008341 2024-02-20 06:49:04.133 2024-02-20 06:49:04.133 1000 STREAM 141924 14247 6008342 2024-02-20 06:50:04.15 2024-02-20 06:50:04.15 1000 STREAM 141924 21416 6008343 2024-02-20 06:51:00.044 2024-02-20 06:51:00.044 1000 FEE 432189 9290 6008353 2024-02-20 06:52:04.198 2024-02-20 06:52:04.198 1000 STREAM 141924 17446 6008362 2024-02-20 06:53:13.824 2024-02-20 06:53:13.824 50000 FEE 430656 1261 6008363 2024-02-20 06:53:13.824 2024-02-20 06:53:13.824 450000 TIP 430656 21091 6008364 2024-02-20 06:54:04.171 2024-02-20 06:54:04.171 1000 STREAM 141924 7986 6008380 2024-02-20 06:56:36.994 2024-02-20 06:56:36.994 1000 FEE 432192 21021 6008383 2024-02-20 06:58:04.2 2024-02-20 06:58:04.2 1000 STREAM 141924 7097 6008386 2024-02-20 07:00:04.243 2024-02-20 07:00:04.243 1000 STREAM 141924 10934 6008410 2024-02-20 07:01:04.284 2024-02-20 07:01:04.284 1000 STREAM 141924 19810 6008411 2024-02-20 07:02:04.258 2024-02-20 07:02:04.258 1000 STREAM 141924 14255 6008412 2024-02-20 07:03:04.264 2024-02-20 07:03:04.264 1000 STREAM 141924 9426 6008413 2024-02-20 07:04:04.266 2024-02-20 07:04:04.266 1000 STREAM 141924 5828 6008423 2024-02-20 07:05:04.294 2024-02-20 07:05:04.294 1000 STREAM 141924 16571 6008424 2024-02-20 07:06:04.296 2024-02-20 07:06:04.296 1000 STREAM 141924 20439 6008425 2024-02-20 07:07:04.299 2024-02-20 07:07:04.299 1000 STREAM 141924 977 6008428 2024-02-20 07:08:04.294 2024-02-20 07:08:04.294 1000 STREAM 141924 19570 6008429 2024-02-20 07:09:04.278 2024-02-20 07:09:04.278 1000 STREAM 141924 21373 6008430 2024-02-20 07:10:04.297 2024-02-20 07:10:04.297 1000 STREAM 141924 9332 6008433 2024-02-20 07:11:04.289 2024-02-20 07:11:04.289 1000 STREAM 141924 16532 6008443 2024-02-20 07:11:55.213 2024-02-20 07:11:55.213 2100 FEE 432088 20717 6008444 2024-02-20 07:11:55.213 2024-02-20 07:11:55.213 18900 TIP 432088 9364 6008449 2024-02-20 07:11:55.761 2024-02-20 07:11:55.761 800 FEE 431079 20990 6008450 2024-02-20 07:11:55.761 2024-02-20 07:11:55.761 7200 TIP 431079 2514 6008473 2024-02-20 07:12:04.311 2024-02-20 07:12:04.311 1000 STREAM 141924 14657 6008478 2024-02-20 07:13:04.301 2024-02-20 07:13:04.301 1000 STREAM 141924 1823 6008489 2024-02-20 07:14:04.306 2024-02-20 07:14:04.306 1000 STREAM 141924 21427 6008492 2024-02-20 07:15:04.33 2024-02-20 07:15:04.33 1000 STREAM 141924 16250 6008495 2024-02-20 07:15:09.359 2024-02-20 07:15:09.359 800 FEE 430892 18243 6008496 2024-02-20 07:15:09.359 2024-02-20 07:15:09.359 7200 TIP 430892 18583 6008498 2024-02-20 07:15:14.305 2024-02-20 07:15:14.305 2100 FEE 430835 20377 6008499 2024-02-20 07:15:14.305 2024-02-20 07:15:14.305 18900 TIP 430835 20657 6008502 2024-02-20 07:16:04.326 2024-02-20 07:16:04.326 1000 STREAM 141924 12334 6008505 2024-02-20 07:17:04.328 2024-02-20 07:17:04.328 1000 STREAM 141924 20090 6008510 2024-02-20 07:18:04.334 2024-02-20 07:18:04.334 1000 STREAM 141924 19909 6008514 2024-02-20 07:19:04.358 2024-02-20 07:19:04.358 1000 STREAM 141924 17827 6008524 2024-02-20 07:25:04.425 2024-02-20 07:25:04.425 1000 STREAM 141924 9992 6008545 2024-02-20 07:29:04.429 2024-02-20 07:29:04.429 1000 STREAM 141924 8162 6008547 2024-02-20 07:29:39.315 2024-02-20 07:29:39.315 0 FEE 432211 21391 6008582 2024-02-20 07:40:04.565 2024-02-20 07:40:04.565 1000 STREAM 141924 19296 6008583 2024-02-20 07:40:41.715 2024-02-20 07:40:41.715 1000 FEE 432131 19601 6008584 2024-02-20 07:40:41.715 2024-02-20 07:40:41.715 9000 TIP 432131 2233 6008591 2024-02-20 07:42:04.544 2024-02-20 07:42:04.544 1000 STREAM 141924 17147 6008608 2024-02-20 07:45:09.371 2024-02-20 07:45:09.371 1000 FEE 432221 18314 6008610 2024-02-20 07:46:04.58 2024-02-20 07:46:04.58 1000 STREAM 141924 1960 6008618 2024-02-20 07:48:04.552 2024-02-20 07:48:04.552 1000 STREAM 141924 882 6008620 2024-02-20 07:50:04.581 2024-02-20 07:50:04.581 1000 STREAM 141924 10352 6008635 2024-02-20 07:54:04.606 2024-02-20 07:54:04.606 1000 STREAM 141924 4624 6008636 2024-02-20 07:54:44.964 2024-02-20 07:54:44.964 0 FEE 432228 722 6008637 2024-02-20 07:54:57.157 2024-02-20 07:54:57.157 1000 FEE 432229 18270 6008639 2024-02-20 07:56:04.616 2024-02-20 07:56:04.616 1000 STREAM 141924 954 6008643 2024-02-20 07:59:25.016 2024-02-20 07:59:25.016 400 FEE 431293 21269 6008644 2024-02-20 07:59:25.016 2024-02-20 07:59:25.016 3600 TIP 431293 20464 6008646 2024-02-20 08:00:04.966 2024-02-20 08:00:04.966 1000 STREAM 141924 12483 6008651 2024-02-20 08:02:12.263 2024-02-20 08:02:12.263 1000 FEE 432232 14795 6008726 2024-02-20 08:25:26.581 2024-02-20 08:25:26.581 1000 FEE 432239 2213 6008728 2024-02-20 08:26:59.744 2024-02-20 08:26:59.744 1000 FEE 432240 7809 6008777 2024-02-20 08:45:55.091 2024-02-20 08:45:55.091 1000 FEE 432252 11038 6008818 2024-02-20 09:00:59.219 2024-02-20 09:00:59.219 2000 FEE 432258 19403 6008823 2024-02-20 09:02:19.521 2024-02-20 09:02:19.521 100000 FEE 432259 20183 6008830 2024-02-20 09:04:50.387 2024-02-20 09:04:50.387 21000 FEE 432260 4084 6008883 2024-02-20 09:25:55.618 2024-02-20 09:25:55.618 1000 FEE 432272 17713 6008918 2024-02-20 09:35:55.137 2024-02-20 09:35:55.137 1000 FEE 432281 15549 6008933 2024-02-20 09:38:04.733 2024-02-20 09:38:04.733 1000 FEE 432287 6537 6008947 2024-02-20 09:39:28.402 2024-02-20 09:39:28.402 1000 FEE 432200 19021 6008948 2024-02-20 09:39:28.402 2024-02-20 09:39:28.402 9000 TIP 432200 977 6008985 2024-02-20 09:41:56.627 2024-02-20 09:41:56.627 1000 FEE 432135 16356 6008986 2024-02-20 09:41:56.627 2024-02-20 09:41:56.627 9000 TIP 432135 10849 6008989 2024-02-20 09:42:00.524 2024-02-20 09:42:00.524 1000 FEE 431816 8400 6008990 2024-02-20 09:42:00.524 2024-02-20 09:42:00.524 9000 TIP 431816 17321 6008991 2024-02-20 09:42:01.234 2024-02-20 09:42:01.234 1000 FEE 430626 2010 6008992 2024-02-20 09:42:01.234 2024-02-20 09:42:01.234 9000 TIP 430626 20310 6008993 2024-02-20 09:42:02.944 2024-02-20 09:42:02.944 1000 FEE 430549 15843 6008994 2024-02-20 09:42:02.944 2024-02-20 09:42:02.944 9000 TIP 430549 15115 6009014 2024-02-20 09:42:08.901 2024-02-20 09:42:08.901 1000 FEE 430920 656 6009015 2024-02-20 09:42:08.901 2024-02-20 09:42:08.901 9000 TIP 430920 11750 6009026 2024-02-20 09:42:20.02 2024-02-20 09:42:20.02 1000 FEE 430700 6300 6009027 2024-02-20 09:42:20.02 2024-02-20 09:42:20.02 9000 TIP 430700 20680 6009034 2024-02-20 09:42:21.851 2024-02-20 09:42:21.851 1000 FEE 430771 20433 6009035 2024-02-20 09:42:21.851 2024-02-20 09:42:21.851 9000 TIP 430771 13599 6009038 2024-02-20 09:42:39.079 2024-02-20 09:42:39.079 12800 FEE 431292 19398 6009039 2024-02-20 09:42:39.079 2024-02-20 09:42:39.079 115200 TIP 431292 5694 6009043 2024-02-20 09:44:06.975 2024-02-20 09:44:06.975 1600 FEE 432251 15200 6009044 2024-02-20 09:44:06.975 2024-02-20 09:44:06.975 14400 TIP 432251 688 6009056 2024-02-20 09:45:56.021 2024-02-20 09:45:56.021 1000 FEE 431864 12188 6009057 2024-02-20 09:45:56.021 2024-02-20 09:45:56.021 9000 TIP 431864 16830 6009058 2024-02-20 09:45:56.484 2024-02-20 09:45:56.484 1000 FEE 432025 640 6009059 2024-02-20 09:45:56.484 2024-02-20 09:45:56.484 9000 TIP 432025 21417 6009072 2024-02-20 09:46:32.714 2024-02-20 09:46:32.714 1000 FEE 430710 992 6009073 2024-02-20 09:46:32.714 2024-02-20 09:46:32.714 9000 TIP 430710 21329 6009109 2024-02-20 09:48:05.521 2024-02-20 09:48:05.521 1000 FEE 430685 18359 6009110 2024-02-20 09:48:05.521 2024-02-20 09:48:05.521 9000 TIP 430685 1352 6009128 2024-02-20 09:48:51.8 2024-02-20 09:48:51.8 1000 FEE 430649 18372 6009129 2024-02-20 09:48:51.8 2024-02-20 09:48:51.8 9000 TIP 430649 12976 6009210 2024-02-20 09:52:55.903 2024-02-20 09:52:55.903 1000 FEE 137071 16513 6009211 2024-02-20 09:52:55.903 2024-02-20 09:52:55.903 9000 TIP 137071 11897 6009221 2024-02-20 09:53:57.28 2024-02-20 09:53:57.28 1000 FEE 432302 15119 6009242 2024-02-20 09:58:05.999 2024-02-20 09:58:05.999 100 FEE 432304 16329 6009243 2024-02-20 09:58:05.999 2024-02-20 09:58:05.999 900 TIP 432304 18359 6009248 2024-02-20 10:01:15.611 2024-02-20 10:01:15.611 100 FEE 432141 4175 6008442 2024-02-20 07:11:54.32 2024-02-20 07:11:54.32 18900 TIP 431401 21019 6008465 2024-02-20 07:11:59.985 2024-02-20 07:11:59.985 2100 FEE 432101 18017 6008466 2024-02-20 07:11:59.985 2024-02-20 07:11:59.985 18900 TIP 432101 9365 6008467 2024-02-20 07:12:00.529 2024-02-20 07:12:00.529 2100 FEE 432060 1209 6008468 2024-02-20 07:12:00.529 2024-02-20 07:12:00.529 18900 TIP 432060 21303 6008487 2024-02-20 07:13:59.482 2024-02-20 07:13:59.482 800 FEE 431921 1836 6008488 2024-02-20 07:13:59.482 2024-02-20 07:13:59.482 7200 TIP 431921 21352 6008515 2024-02-20 07:20:04.329 2024-02-20 07:20:04.329 1000 STREAM 141924 12218 6008519 2024-02-20 07:22:04.33 2024-02-20 07:22:04.33 1000 STREAM 141924 669 6008522 2024-02-20 07:23:04.337 2024-02-20 07:23:04.337 1000 STREAM 141924 20586 6008523 2024-02-20 07:24:04.34 2024-02-20 07:24:04.34 1000 STREAM 141924 14688 6008544 2024-02-20 07:28:14.307 2024-02-20 07:28:14.307 1000 FEE 432213 19929 6008548 2024-02-20 07:30:04.437 2024-02-20 07:30:04.437 1000 STREAM 141924 5308 6008550 2024-02-20 07:31:03.484 2024-02-20 07:31:03.484 10000 FEE 431926 20023 6008551 2024-02-20 07:31:03.484 2024-02-20 07:31:03.484 90000 TIP 431926 18626 6008559 2024-02-20 07:33:04.434 2024-02-20 07:33:04.434 1000 STREAM 141924 9985 6008560 2024-02-20 07:33:58.704 2024-02-20 07:33:58.704 0 FEE 432215 20980 6008561 2024-02-20 07:34:04.442 2024-02-20 07:34:04.442 1000 STREAM 141924 19796 6008571 2024-02-20 07:37:04.71 2024-02-20 07:37:04.71 1000 STREAM 141924 18736 6008574 2024-02-20 07:38:04.52 2024-02-20 07:38:04.52 1000 STREAM 141924 19535 6008577 2024-02-20 07:38:46.089 2024-02-20 07:38:46.089 2100 FEE 432216 1584 6008578 2024-02-20 07:38:46.089 2024-02-20 07:38:46.089 18900 TIP 432216 20434 6008579 2024-02-20 07:39:04.677 2024-02-20 07:39:04.677 1000 STREAM 141924 795 6008586 2024-02-20 07:41:04.683 2024-02-20 07:41:04.683 1000 STREAM 141924 635 6008587 2024-02-20 07:41:11.78 2024-02-20 07:41:11.78 21000 FEE 430642 19836 6008588 2024-02-20 07:41:11.78 2024-02-20 07:41:11.78 189000 TIP 430642 20680 6008596 2024-02-20 07:42:27.826 2024-02-20 07:42:27.826 300 FEE 431830 5746 6008597 2024-02-20 07:42:27.826 2024-02-20 07:42:27.826 2700 TIP 431830 678 6008598 2024-02-20 07:42:28.164 2024-02-20 07:42:28.164 300 FEE 431830 1745 6008599 2024-02-20 07:42:28.164 2024-02-20 07:42:28.164 2700 TIP 431830 4570 6008604 2024-02-20 07:43:04.723 2024-02-20 07:43:04.723 1000 STREAM 141924 2328 6008606 2024-02-20 07:44:04.559 2024-02-20 07:44:04.559 1000 STREAM 141924 17166 6008607 2024-02-20 07:45:04.716 2024-02-20 07:45:04.716 1000 STREAM 141924 21254 6008612 2024-02-20 07:47:04.722 2024-02-20 07:47:04.722 1000 STREAM 141924 4692 6008615 2024-02-20 07:47:36.753 2024-02-20 07:47:36.753 2100 FEE 432207 16848 6008616 2024-02-20 07:47:36.753 2024-02-20 07:47:36.753 18900 TIP 432207 21455 6008619 2024-02-20 07:49:04.715 2024-02-20 07:49:04.715 1000 STREAM 141924 20094 6008634 2024-02-20 07:53:04.722 2024-02-20 07:53:04.722 1000 STREAM 141924 20554 6008641 2024-02-20 07:58:04.624 2024-02-20 07:58:04.624 1000 STREAM 141924 17095 6008642 2024-02-20 07:59:04.734 2024-02-20 07:59:04.734 1000 STREAM 141924 20892 6008649 2024-02-20 08:01:04.732 2024-02-20 08:01:04.732 1000 STREAM 141924 9331 6008650 2024-02-20 08:02:04.746 2024-02-20 08:02:04.746 1000 STREAM 141924 5752 6008653 2024-02-20 08:04:04.744 2024-02-20 08:04:04.744 1000 STREAM 141924 8423 6008655 2024-02-20 08:06:04.751 2024-02-20 08:06:04.751 1000 STREAM 141924 1845 6008659 2024-02-20 08:08:04.73 2024-02-20 08:08:04.73 1000 STREAM 141924 17817 6008662 2024-02-20 08:09:04.736 2024-02-20 08:09:04.736 1000 STREAM 141924 19613 6008663 2024-02-20 08:10:04.746 2024-02-20 08:10:04.746 1000 STREAM 141924 20710 6008665 2024-02-20 08:12:03.247 2024-02-20 08:12:03.247 1000 STREAM 141924 19458 6008667 2024-02-20 08:14:02.795 2024-02-20 08:14:02.795 1000 STREAM 141924 19906 6008668 2024-02-20 08:15:03.273 2024-02-20 08:15:03.273 1000 STREAM 141924 1142 6008676 2024-02-20 08:16:04.775 2024-02-20 08:16:04.775 1000 STREAM 141924 12158 6008679 2024-02-20 08:16:08.385 2024-02-20 08:16:08.385 1000 FEE 432196 20816 6008680 2024-02-20 08:16:08.385 2024-02-20 08:16:08.385 9000 TIP 432196 19995 6008692 2024-02-20 08:16:35.663 2024-02-20 08:16:35.663 1000 FEE 431823 14990 6008693 2024-02-20 08:16:35.663 2024-02-20 08:16:35.663 9000 TIP 431823 974 6008696 2024-02-20 08:16:44.55 2024-02-20 08:16:44.55 1000 FEE 431723 2329 6008697 2024-02-20 08:16:44.55 2024-02-20 08:16:44.55 9000 TIP 431723 18208 6008698 2024-02-20 08:17:03.689 2024-02-20 08:17:03.689 1000 STREAM 141924 4624 6008699 2024-02-20 08:17:05.351 2024-02-20 08:17:05.351 1000 FEE 432235 5377 6008703 2024-02-20 08:17:50.861 2024-02-20 08:17:50.861 2100 FEE 240060 3360 6008704 2024-02-20 08:17:50.861 2024-02-20 08:17:50.861 18900 TIP 240060 12774 6008705 2024-02-20 08:17:51.687 2024-02-20 08:17:51.687 2100 FEE 240060 18862 6008706 2024-02-20 08:17:51.687 2024-02-20 08:17:51.687 18900 TIP 240060 20586 6008709 2024-02-20 08:17:52.128 2024-02-20 08:17:52.128 2100 FEE 240060 14650 6008710 2024-02-20 08:17:52.128 2024-02-20 08:17:52.128 18900 TIP 240060 19289 6008711 2024-02-20 08:18:03.285 2024-02-20 08:18:03.285 1000 STREAM 141924 3456 6008712 2024-02-20 08:18:22.527 2024-02-20 08:18:22.527 21000 FEE 432237 826 6008713 2024-02-20 08:19:02.777 2024-02-20 08:19:02.777 1000 STREAM 141924 13753 6008714 2024-02-20 08:20:03.326 2024-02-20 08:20:03.326 1000 STREAM 141924 1515 6008716 2024-02-20 08:21:02.756 2024-02-20 08:21:02.756 1000 STREAM 141924 21263 6008717 2024-02-20 08:21:56.223 2024-02-20 08:21:56.223 1000 FEE 432238 19021 6008718 2024-02-20 08:21:59.162 2024-02-20 08:21:59.162 10000 FEE 432226 19126 6008719 2024-02-20 08:21:59.162 2024-02-20 08:21:59.162 90000 TIP 432226 11288 6008720 2024-02-20 08:22:03.364 2024-02-20 08:22:03.364 1000 STREAM 141924 1273 6008721 2024-02-20 08:23:02.782 2024-02-20 08:23:02.782 1000 STREAM 141924 16839 6008722 2024-02-20 08:24:03.335 2024-02-20 08:24:03.335 1000 STREAM 141924 16259 6008725 2024-02-20 08:25:02.799 2024-02-20 08:25:02.799 1000 STREAM 141924 6148 6008727 2024-02-20 08:26:03.387 2024-02-20 08:26:03.387 1000 STREAM 141924 1298 6008729 2024-02-20 08:27:02.898 2024-02-20 08:27:02.898 1000 STREAM 141924 17365 6008731 2024-02-20 08:28:02.895 2024-02-20 08:28:02.895 1000 STREAM 141924 20597 6008732 2024-02-20 08:29:02.903 2024-02-20 08:29:02.903 1000 STREAM 141924 2088 6008733 2024-02-20 08:30:02.913 2024-02-20 08:30:02.913 1000 STREAM 141924 19839 6008734 2024-02-20 08:31:02.91 2024-02-20 08:31:02.91 1000 STREAM 141924 4250 6008735 2024-02-20 08:31:55.687 2024-02-20 08:31:55.687 1000 FEE 432242 15762 6008736 2024-02-20 08:32:03.432 2024-02-20 08:32:03.432 1000 STREAM 141924 16653 6008737 2024-02-20 08:33:02.925 2024-02-20 08:33:02.925 1000 STREAM 141924 11670 6008738 2024-02-20 08:34:03.413 2024-02-20 08:34:03.413 1000 STREAM 141924 19500 6008740 2024-02-20 08:34:55.833 2024-02-20 08:34:55.833 1000 FEE 432244 11527 6008741 2024-02-20 08:35:02.93 2024-02-20 08:35:02.93 1000 STREAM 141924 17535 6008743 2024-02-20 08:36:02.931 2024-02-20 08:36:02.931 1000 STREAM 141924 18101 6008744 2024-02-20 08:37:02.936 2024-02-20 08:37:02.936 1000 STREAM 141924 18387 6008745 2024-02-20 08:37:07.04 2024-02-20 08:37:07.04 0 FEE 432243 14404 6008746 2024-02-20 08:38:02.937 2024-02-20 08:38:02.937 1000 STREAM 141924 9705 6008747 2024-02-20 08:38:03.309 2024-02-20 08:38:03.309 1000 POLL 432211 10530 6008748 2024-02-20 08:38:20.907 2024-02-20 08:38:20.907 1000 FEE 432246 4831 6008751 2024-02-20 08:38:59.223 2024-02-20 08:38:59.223 17000 FEE 432247 9920 6008752 2024-02-20 08:39:02.953 2024-02-20 08:39:02.953 1000 STREAM 141924 1705 6008755 2024-02-20 08:40:02.983 2024-02-20 08:40:02.983 1000 STREAM 141924 4984 6008758 2024-02-20 08:41:02.968 2024-02-20 08:41:02.968 1000 STREAM 141924 1881 6008763 2024-02-20 08:41:39.255 2024-02-20 08:41:39.255 2500 FEE 432248 10693 6008764 2024-02-20 08:41:39.255 2024-02-20 08:41:39.255 22500 TIP 432248 2952 6008768 2024-02-20 08:42:03.482 2024-02-20 08:42:03.482 1000 STREAM 141924 20969 6008771 2024-02-20 08:42:43.997 2024-02-20 08:42:43.997 50000 FEE 432251 13097 6008772 2024-02-20 08:43:02.06 2024-02-20 08:43:02.06 0 FEE 432251 18392 6008773 2024-02-20 08:43:02.98 2024-02-20 08:43:02.98 1000 STREAM 141924 14247 6008774 2024-02-20 08:43:24.762 2024-02-20 08:43:24.762 0 FEE 432251 21485 6008775 2024-02-20 08:44:02.983 2024-02-20 08:44:02.983 1000 STREAM 141924 2335 6008759 2024-02-20 08:41:08.812 2024-02-20 08:41:08.812 1000 FEE 432248 20811 6008780 2024-02-20 08:47:14.107 2024-02-20 08:47:14.107 100000 FEE 432253 18556 6008789 2024-02-20 08:50:17.813 2024-02-20 08:50:17.813 1000 FEE 431816 7869 6008790 2024-02-20 08:50:17.813 2024-02-20 08:50:17.813 9000 TIP 431816 10342 6008809 2024-02-20 08:58:39.302 2024-02-20 08:58:39.302 3000 FEE 432235 649 6008810 2024-02-20 08:58:39.302 2024-02-20 08:58:39.302 27000 TIP 432235 20849 6008845 2024-02-20 09:11:03.407 2024-02-20 09:11:03.407 2000 FEE 432262 2232 6008882 2024-02-20 09:25:25.84 2024-02-20 09:25:25.84 1000 FEE 432271 1603 6008917 2024-02-20 09:35:26.277 2024-02-20 09:35:26.277 0 FEE 432280 13763 6008927 2024-02-20 09:36:32.24 2024-02-20 09:36:32.24 1000 FEE 432285 4487 6008940 2024-02-20 09:39:10.593 2024-02-20 09:39:10.593 1000 FEE 432287 917 6008941 2024-02-20 09:39:10.593 2024-02-20 09:39:10.593 9000 TIP 432287 9427 6008945 2024-02-20 09:39:25.255 2024-02-20 09:39:25.255 1000 FEE 432263 18453 6008946 2024-02-20 09:39:25.255 2024-02-20 09:39:25.255 9000 TIP 432263 5500 6008951 2024-02-20 09:39:42.791 2024-02-20 09:39:42.791 1000 FEE 432148 18409 6008952 2024-02-20 09:39:42.791 2024-02-20 09:39:42.791 9000 TIP 432148 1175 6008969 2024-02-20 09:40:26.311 2024-02-20 09:40:26.311 1000 FEE 432291 13622 6008972 2024-02-20 09:40:53.921 2024-02-20 09:40:53.921 1000 FEE 432292 20972 6008975 2024-02-20 09:41:32.29 2024-02-20 09:41:32.29 1000 FEE 431963 18984 6008976 2024-02-20 09:41:32.29 2024-02-20 09:41:32.29 9000 TIP 431963 15045 6009002 2024-02-20 09:42:05.36 2024-02-20 09:42:05.36 1000 FEE 431809 9159 6009003 2024-02-20 09:42:05.36 2024-02-20 09:42:05.36 9000 TIP 431809 21057 6009018 2024-02-20 09:42:14.999 2024-02-20 09:42:14.999 1000 FEE 431223 18321 6009019 2024-02-20 09:42:14.999 2024-02-20 09:42:14.999 9000 TIP 431223 20998 6009028 2024-02-20 09:42:20.42 2024-02-20 09:42:20.42 1000 FEE 432088 8498 6009029 2024-02-20 09:42:20.42 2024-02-20 09:42:20.42 9000 TIP 432088 16485 6009041 2024-02-20 09:43:51.408 2024-02-20 09:43:51.408 1000 POLL 432274 18837 6009064 2024-02-20 09:45:58.329 2024-02-20 09:45:58.329 1000 FEE 431894 721 6009065 2024-02-20 09:45:58.329 2024-02-20 09:45:58.329 9000 TIP 431894 2674 6009066 2024-02-20 09:45:59.433 2024-02-20 09:45:59.433 1000 FEE 432296 12721 6009076 2024-02-20 09:46:56.956 2024-02-20 09:46:56.956 2100 FEE 432289 20691 6009077 2024-02-20 09:46:56.956 2024-02-20 09:46:56.956 18900 TIP 432289 19346 6009126 2024-02-20 09:48:45.242 2024-02-20 09:48:45.242 4000 FEE 432197 16939 6009127 2024-02-20 09:48:45.242 2024-02-20 09:48:45.242 36000 TIP 432197 16834 6009130 2024-02-20 09:48:53.464 2024-02-20 09:48:53.464 1000 FEE 430690 2077 6009131 2024-02-20 09:48:53.464 2024-02-20 09:48:53.464 9000 TIP 430690 16830 6009150 2024-02-20 09:50:00.63 2024-02-20 09:50:00.63 300 FEE 432277 19735 6009151 2024-02-20 09:50:00.63 2024-02-20 09:50:00.63 2700 TIP 432277 1571 6009160 2024-02-20 09:50:50.762 2024-02-20 09:50:50.762 1000 FEE 432300 9169 6009161 2024-02-20 09:50:58.471 2024-02-20 09:50:58.471 1000 FEE 430668 20045 6009162 2024-02-20 09:50:58.471 2024-02-20 09:50:58.471 9000 TIP 430668 19662 6009164 2024-02-20 09:51:08.191 2024-02-20 09:51:08.191 1000 FEE 430634 19566 6009165 2024-02-20 09:51:08.191 2024-02-20 09:51:08.191 9000 TIP 430634 14857 6009166 2024-02-20 09:51:12.517 2024-02-20 09:51:12.517 1600 FEE 432259 19199 6009167 2024-02-20 09:51:12.517 2024-02-20 09:51:12.517 14400 TIP 432259 2330 6009173 2024-02-20 09:51:43.657 2024-02-20 09:51:43.657 2100 FEE 432135 18664 6009174 2024-02-20 09:51:43.657 2024-02-20 09:51:43.657 18900 TIP 432135 7773 6009251 2024-02-20 10:02:13.509 2024-02-20 10:02:13.509 5000 FEE 432308 18412 6009283 2024-02-20 10:13:37.084 2024-02-20 10:13:37.084 1000 FEE 432115 20430 6009284 2024-02-20 10:13:37.084 2024-02-20 10:13:37.084 9000 TIP 432115 18321 6009285 2024-02-20 10:13:38.26 2024-02-20 10:13:38.26 1000 FEE 432110 5978 6009286 2024-02-20 10:13:38.26 2024-02-20 10:13:38.26 9000 TIP 432110 6041 6009299 2024-02-20 10:16:47.604 2024-02-20 10:16:47.604 1000 FEE 432319 18330 6009305 2024-02-20 10:18:26.778 2024-02-20 10:18:26.778 1000 FEE 432321 17526 6009308 2024-02-20 10:18:58.025 2024-02-20 10:18:58.025 2100 FEE 432283 15690 6009309 2024-02-20 10:18:58.025 2024-02-20 10:18:58.025 18900 TIP 432283 4062 6009311 2024-02-20 10:20:02.72 2024-02-20 10:20:02.72 1000 FEE 432324 10291 6009313 2024-02-20 10:20:50.69 2024-02-20 10:20:50.69 0 FEE 432324 17568 6009318 2024-02-20 10:22:24.713 2024-02-20 10:22:24.713 2100 FEE 432317 21119 6009319 2024-02-20 10:22:24.713 2024-02-20 10:22:24.713 18900 TIP 432317 10393 6009333 2024-02-20 10:28:18.146 2024-02-20 10:28:18.146 1000 FEE 432328 1237 6009349 2024-02-20 10:32:47.396 2024-02-20 10:32:47.396 12800 FEE 432261 20231 6009350 2024-02-20 10:32:47.396 2024-02-20 10:32:47.396 115200 TIP 432261 13055 6009377 2024-02-20 10:39:43.188 2024-02-20 10:39:43.188 4000 FEE 432088 17673 6009378 2024-02-20 10:39:43.188 2024-02-20 10:39:43.188 36000 TIP 432088 7668 6009379 2024-02-20 10:39:47.495 2024-02-20 10:39:47.495 0 FEE 432336 12139 6009380 2024-02-20 10:39:48.2 2024-02-20 10:39:48.2 200 FEE 432186 5779 6009381 2024-02-20 10:39:48.2 2024-02-20 10:39:48.2 1800 TIP 432186 11288 6009447 2024-02-20 11:03:03.485 2024-02-20 11:03:03.485 4000 FEE 432349 16052 6009448 2024-02-20 11:03:03.485 2024-02-20 11:03:03.485 36000 TIP 432349 20264 6009456 2024-02-20 11:03:50.943 2024-02-20 11:03:50.943 1000 FEE 432353 19987 6009475 2024-02-20 11:07:58.743 2024-02-20 11:07:58.743 1000 FEE 432358 4083 6009477 2024-02-20 11:08:55.851 2024-02-20 11:08:55.851 1000 FEE 432359 11821 6009493 2024-02-20 11:15:26.375 2024-02-20 11:15:26.375 1000 FEE 432362 15463 6009494 2024-02-20 11:15:35.803 2024-02-20 11:15:35.803 1000 FEE 432363 5761 6009557 2024-02-20 11:34:45.426 2024-02-20 11:34:45.426 1000 FEE 432375 2162 6009569 2024-02-20 11:39:20.697 2024-02-20 11:39:20.697 0 FEE 432375 15266 6009571 2024-02-20 11:40:31.556 2024-02-20 11:40:31.556 1000 FEE 432380 2013 6009594 2024-02-20 11:45:00.608 2024-02-20 11:45:00.608 100 FEE 422778 18274 6009595 2024-02-20 11:45:00.608 2024-02-20 11:45:00.608 900 TIP 422778 2722 6009598 2024-02-20 11:45:02.742 2024-02-20 11:45:02.742 100 FEE 422793 11477 6009599 2024-02-20 11:45:02.742 2024-02-20 11:45:02.742 900 TIP 422793 3213 6009601 2024-02-20 11:45:04.656 2024-02-20 11:45:04.656 1000 FEE 432383 2256 6009622 2024-02-20 11:50:37.655 2024-02-20 11:50:37.655 5000 FEE 432383 1960 6009623 2024-02-20 11:50:37.655 2024-02-20 11:50:37.655 45000 TIP 432383 5359 6009633 2024-02-20 11:52:55.039 2024-02-20 11:52:55.039 10000 FEE 432389 20222 6009643 2024-02-20 11:56:57.536 2024-02-20 11:56:57.536 2100 FEE 432382 17321 6009644 2024-02-20 11:56:57.536 2024-02-20 11:56:57.536 18900 TIP 432382 15063 6009665 2024-02-20 12:01:41.841 2024-02-20 12:01:41.841 50000 FEE 432400 20663 6009676 2024-02-20 12:03:51.903 2024-02-20 12:03:51.903 1000 FEE 432398 18608 6009677 2024-02-20 12:03:51.903 2024-02-20 12:03:51.903 9000 TIP 432398 2075 6009698 2024-02-20 12:08:58.611 2024-02-20 12:08:58.611 400 FEE 432311 20525 6009699 2024-02-20 12:08:58.611 2024-02-20 12:08:58.611 3600 TIP 432311 5487 6009703 2024-02-20 12:09:06.448 2024-02-20 12:09:06.448 400 FEE 432186 1833 6009704 2024-02-20 12:09:06.448 2024-02-20 12:09:06.448 3600 TIP 432186 7553 6009709 2024-02-20 12:09:16.34 2024-02-20 12:09:16.34 400 FEE 432339 14015 6009710 2024-02-20 12:09:16.34 2024-02-20 12:09:16.34 3600 TIP 432339 8926 6009712 2024-02-20 12:10:16.788 2024-02-20 12:10:16.788 10000 FEE 432404 844 6009713 2024-02-20 12:10:34.604 2024-02-20 12:10:34.604 1000 FEE 432400 10409 6009714 2024-02-20 12:10:34.604 2024-02-20 12:10:34.604 9000 TIP 432400 795 6009735 2024-02-20 12:15:17.652 2024-02-20 12:15:17.652 1000 FEE 432386 828 6009736 2024-02-20 12:15:17.652 2024-02-20 12:15:17.652 9000 TIP 432386 12422 6009769 2024-02-20 12:21:37.397 2024-02-20 12:21:37.397 1600 FEE 432382 20782 6009770 2024-02-20 12:21:37.397 2024-02-20 12:21:37.397 14400 TIP 432382 20337 6009775 2024-02-20 12:21:58.744 2024-02-20 12:21:58.744 4000 FEE 432413 4831 6009776 2024-02-20 12:21:58.744 2024-02-20 12:21:58.744 36000 TIP 432413 21421 6009790 2024-02-20 12:22:23.806 2024-02-20 12:22:23.806 2100 FEE 432410 16834 6008776 2024-02-20 08:45:02.987 2024-02-20 08:45:02.987 1000 STREAM 141924 1515 6008778 2024-02-20 08:46:03.004 2024-02-20 08:46:03.004 1000 STREAM 141924 2614 6008792 2024-02-20 08:51:03.033 2024-02-20 08:51:03.033 1000 STREAM 141924 18836 6008795 2024-02-20 08:52:03.025 2024-02-20 08:52:03.025 1000 STREAM 141924 20904 6008796 2024-02-20 08:53:03.034 2024-02-20 08:53:03.034 1000 STREAM 141924 3347 6008801 2024-02-20 08:55:03.029 2024-02-20 08:55:03.029 1000 STREAM 141924 15560 6008803 2024-02-20 08:57:03.028 2024-02-20 08:57:03.028 1000 STREAM 141924 12744 6008811 2024-02-20 08:59:03.038 2024-02-20 08:59:03.038 1000 STREAM 141924 2963 6008817 2024-02-20 09:00:03.055 2024-02-20 09:00:03.055 1000 STREAM 141924 1624 6008819 2024-02-20 09:01:03.078 2024-02-20 09:01:03.078 1000 STREAM 141924 15239 6008832 2024-02-20 09:06:03.079 2024-02-20 09:06:03.079 1000 STREAM 141924 13575 6008839 2024-02-20 09:08:03.08 2024-02-20 09:08:03.08 1000 STREAM 141924 17526 6008843 2024-02-20 09:10:03.099 2024-02-20 09:10:03.099 1000 STREAM 141924 9921 6008844 2024-02-20 09:11:03.103 2024-02-20 09:11:03.103 1000 STREAM 141924 9843 6008848 2024-02-20 09:12:03.098 2024-02-20 09:12:03.098 1000 STREAM 141924 1273 6008864 2024-02-20 09:17:03.135 2024-02-20 09:17:03.135 1000 STREAM 141924 16847 6008866 2024-02-20 09:19:03.135 2024-02-20 09:19:03.135 1000 STREAM 141924 18635 6008868 2024-02-20 09:20:03.14 2024-02-20 09:20:03.14 1000 STREAM 141924 19259 6008881 2024-02-20 09:25:03.157 2024-02-20 09:25:03.157 1000 STREAM 141924 679 6008884 2024-02-20 09:26:03.168 2024-02-20 09:26:03.168 1000 STREAM 141924 15337 6008892 2024-02-20 09:29:03.184 2024-02-20 09:29:03.184 1000 STREAM 141924 18675 6008893 2024-02-20 09:30:03.181 2024-02-20 09:30:03.181 1000 STREAM 141924 664 6008903 2024-02-20 09:32:03.185 2024-02-20 09:32:03.185 1000 STREAM 141924 19031 6008907 2024-02-20 09:34:03.197 2024-02-20 09:34:03.197 1000 STREAM 141924 17552 6008912 2024-02-20 09:35:03.199 2024-02-20 09:35:03.199 1000 STREAM 141924 18005 6008931 2024-02-20 09:37:03.212 2024-02-20 09:37:03.212 1000 STREAM 141924 18526 6009040 2024-02-20 09:43:03.225 2024-02-20 09:43:03.225 1000 STREAM 141924 18842 6009042 2024-02-20 09:44:03.229 2024-02-20 09:44:03.229 1000 STREAM 141924 21573 6009048 2024-02-20 09:45:03.228 2024-02-20 09:45:03.228 1000 STREAM 141924 2961 6009136 2024-02-20 09:49:03.241 2024-02-20 09:49:03.241 1000 STREAM 141924 9159 6009212 2024-02-20 09:53:03.242 2024-02-20 09:53:03.242 1000 STREAM 141924 13574 6009222 2024-02-20 09:54:03.244 2024-02-20 09:54:03.244 1000 STREAM 141924 2046 6009227 2024-02-20 09:56:03.244 2024-02-20 09:56:03.244 1000 STREAM 141924 16259 6009233 2024-02-20 09:58:03.256 2024-02-20 09:58:03.256 1000 STREAM 141924 14381 6009244 2024-02-20 09:59:03.257 2024-02-20 09:59:03.257 1000 STREAM 141924 7553 6009246 2024-02-20 10:01:03.272 2024-02-20 10:01:03.272 1000 STREAM 141924 20267 6009250 2024-02-20 10:02:03.278 2024-02-20 10:02:03.278 1000 STREAM 141924 1474 6009253 2024-02-20 10:04:03.294 2024-02-20 10:04:03.294 1000 STREAM 141924 5499 6009256 2024-02-20 10:05:03.315 2024-02-20 10:05:03.315 1000 STREAM 141924 5500 6009265 2024-02-20 10:08:03.326 2024-02-20 10:08:03.326 1000 STREAM 141924 7992 6009272 2024-02-20 10:10:03.345 2024-02-20 10:10:03.345 1000 STREAM 141924 21180 6009275 2024-02-20 10:12:03.361 2024-02-20 10:12:03.361 1000 STREAM 141924 9099 6009290 2024-02-20 10:15:03.367 2024-02-20 10:15:03.367 1000 STREAM 141924 632 6009300 2024-02-20 10:17:03.375 2024-02-20 10:17:03.375 1000 STREAM 141924 11714 6009310 2024-02-20 10:19:03.383 2024-02-20 10:19:03.383 1000 STREAM 141924 12175 6009312 2024-02-20 10:20:03.396 2024-02-20 10:20:03.396 1000 STREAM 141924 661 6009324 2024-02-20 10:26:03.405 2024-02-20 10:26:03.405 1000 STREAM 141924 17891 6009332 2024-02-20 10:28:03.416 2024-02-20 10:28:03.416 1000 STREAM 141924 20006 6008779 2024-02-20 08:47:03.002 2024-02-20 08:47:03.002 1000 STREAM 141924 17046 6008783 2024-02-20 08:48:03.01 2024-02-20 08:48:03.01 1000 STREAM 141924 2543 6008785 2024-02-20 08:49:03.026 2024-02-20 08:49:03.026 1000 STREAM 141924 12272 6008788 2024-02-20 08:50:03.046 2024-02-20 08:50:03.046 1000 STREAM 141924 17415 6008798 2024-02-20 08:54:03.028 2024-02-20 08:54:03.028 1000 STREAM 141924 18199 6008802 2024-02-20 08:56:03.031 2024-02-20 08:56:03.031 1000 STREAM 141924 21332 6008808 2024-02-20 08:58:03.029 2024-02-20 08:58:03.029 1000 STREAM 141924 14515 6008822 2024-02-20 09:02:03.082 2024-02-20 09:02:03.082 1000 STREAM 141924 2942 6008826 2024-02-20 09:03:03.076 2024-02-20 09:03:03.076 1000 STREAM 141924 19243 6008829 2024-02-20 09:04:03.079 2024-02-20 09:04:03.079 1000 STREAM 141924 1208 6008831 2024-02-20 09:05:03.084 2024-02-20 09:05:03.084 1000 STREAM 141924 11999 6008835 2024-02-20 09:07:03.077 2024-02-20 09:07:03.077 1000 STREAM 141924 19886 6008842 2024-02-20 09:09:03.083 2024-02-20 09:09:03.083 1000 STREAM 141924 21116 6008849 2024-02-20 09:13:03.101 2024-02-20 09:13:03.101 1000 STREAM 141924 1697 6008860 2024-02-20 09:14:03.115 2024-02-20 09:14:03.115 1000 STREAM 141924 2709 6008861 2024-02-20 09:15:03.132 2024-02-20 09:15:03.132 1000 STREAM 141924 4313 6008862 2024-02-20 09:16:03.131 2024-02-20 09:16:03.131 1000 STREAM 141924 1429 6008865 2024-02-20 09:18:03.139 2024-02-20 09:18:03.139 1000 STREAM 141924 9350 6008869 2024-02-20 09:21:03.148 2024-02-20 09:21:03.148 1000 STREAM 141924 647 6008871 2024-02-20 09:22:03.148 2024-02-20 09:22:03.148 1000 STREAM 141924 20464 6008876 2024-02-20 09:23:03.173 2024-02-20 09:23:03.173 1000 STREAM 141924 11498 6008878 2024-02-20 09:24:03.164 2024-02-20 09:24:03.164 1000 STREAM 141924 21406 6008886 2024-02-20 09:27:03.165 2024-02-20 09:27:03.165 1000 STREAM 141924 20687 6008887 2024-02-20 09:28:03.172 2024-02-20 09:28:03.172 1000 STREAM 141924 20470 6008899 2024-02-20 09:31:03.193 2024-02-20 09:31:03.193 1000 STREAM 141924 21361 6008906 2024-02-20 09:33:03.189 2024-02-20 09:33:03.189 1000 STREAM 141924 3709 6008923 2024-02-20 09:36:03.205 2024-02-20 09:36:03.205 1000 STREAM 141924 9337 6008932 2024-02-20 09:38:03.211 2024-02-20 09:38:03.211 1000 STREAM 141924 14959 6008939 2024-02-20 09:39:03.226 2024-02-20 09:39:03.226 1000 STREAM 141924 7097 6008960 2024-02-20 09:40:03.221 2024-02-20 09:40:03.221 1000 STREAM 141924 621 6008973 2024-02-20 09:41:03.215 2024-02-20 09:41:03.215 1000 STREAM 141924 21491 6008995 2024-02-20 09:42:03.237 2024-02-20 09:42:03.237 1000 STREAM 141924 14465 6009071 2024-02-20 09:46:03.231 2024-02-20 09:46:03.231 1000 STREAM 141924 6777 6009084 2024-02-20 09:47:03.23 2024-02-20 09:47:03.23 1000 STREAM 141924 16276 6009106 2024-02-20 09:48:03.238 2024-02-20 09:48:03.238 1000 STREAM 141924 21136 6009152 2024-02-20 09:50:03.23 2024-02-20 09:50:03.23 1000 STREAM 141924 13753 6009163 2024-02-20 09:51:03.228 2024-02-20 09:51:03.228 1000 STREAM 141924 17331 6009197 2024-02-20 09:52:03.237 2024-02-20 09:52:03.237 1000 STREAM 141924 1429 6009225 2024-02-20 09:55:03.235 2024-02-20 09:55:03.235 1000 STREAM 141924 20973 6009230 2024-02-20 09:57:03.248 2024-02-20 09:57:03.248 1000 STREAM 141924 5661 6009245 2024-02-20 10:00:03.265 2024-02-20 10:00:03.265 1000 STREAM 141924 10102 6009252 2024-02-20 10:03:03.281 2024-02-20 10:03:03.281 1000 STREAM 141924 6616 6009260 2024-02-20 10:06:03.306 2024-02-20 10:06:03.306 1000 STREAM 141924 18409 6009264 2024-02-20 10:07:03.318 2024-02-20 10:07:03.318 1000 STREAM 141924 2639 6009269 2024-02-20 10:09:03.335 2024-02-20 10:09:03.335 1000 STREAM 141924 670 6009274 2024-02-20 10:11:03.338 2024-02-20 10:11:03.338 1000 STREAM 141924 19841 6009291 2024-02-20 10:16:03.382 2024-02-20 10:16:03.382 1000 STREAM 141924 16341 6009304 2024-02-20 10:18:03.38 2024-02-20 10:18:03.38 1000 STREAM 141924 1596 6009323 2024-02-20 10:25:03.415 2024-02-20 10:25:03.415 1000 STREAM 141924 18274 6009325 2024-02-20 10:27:03.41 2024-02-20 10:27:03.41 1000 STREAM 141924 11670 6009334 2024-02-20 10:29:03.409 2024-02-20 10:29:03.409 1000 STREAM 141924 11967 6009337 2024-02-20 10:30:03.421 2024-02-20 10:30:03.421 1000 STREAM 141924 11477 6009339 2024-02-20 10:31:03.428 2024-02-20 10:31:03.428 1000 STREAM 141924 19806 6009577 2024-02-20 11:44:04.093 2024-02-20 11:44:04.093 1000 STREAM 141924 20775 6008786 2024-02-20 08:49:34.093 2024-02-20 08:49:34.093 1000 FEE 432176 16665 6008787 2024-02-20 08:49:34.093 2024-02-20 08:49:34.093 9000 TIP 432176 679 6008793 2024-02-20 08:51:32.289 2024-02-20 08:51:32.289 5000 FEE 432179 7125 6008794 2024-02-20 08:51:32.289 2024-02-20 08:51:32.289 45000 TIP 432179 16329 6008806 2024-02-20 08:57:48.297 2024-02-20 08:57:48.297 2100 FEE 432199 20683 6008807 2024-02-20 08:57:48.297 2024-02-20 08:57:48.297 18900 TIP 432199 9171 6008852 2024-02-20 09:13:24.229 2024-02-20 09:13:24.229 100 FEE 432204 18877 6008853 2024-02-20 09:13:24.229 2024-02-20 09:13:24.229 900 TIP 432204 10112 6008867 2024-02-20 09:19:45.25 2024-02-20 09:19:45.25 1000 FEE 432265 10063 6008880 2024-02-20 09:24:56.676 2024-02-20 09:24:56.676 1000 FEE 432270 18995 6008925 2024-02-20 09:36:12.773 2024-02-20 09:36:12.773 2100 FEE 432256 20117 6008926 2024-02-20 09:36:12.773 2024-02-20 09:36:12.773 18900 TIP 432256 3506 6008934 2024-02-20 09:38:14.17 2024-02-20 09:38:14.17 2100 FEE 432278 17673 6008935 2024-02-20 09:38:14.17 2024-02-20 09:38:14.17 18900 TIP 432278 17209 6008936 2024-02-20 09:38:59.913 2024-02-20 09:38:59.913 1000 FEE 432288 16988 6008942 2024-02-20 09:39:19.463 2024-02-20 09:39:19.463 1000 FEE 432161 21014 6008943 2024-02-20 09:39:19.463 2024-02-20 09:39:19.463 9000 TIP 432161 18736 6008944 2024-02-20 09:39:22.227 2024-02-20 09:39:22.227 10000 FEE 432289 6616 6008967 2024-02-20 09:40:25.445 2024-02-20 09:40:25.445 100 FEE 432290 18452 6008968 2024-02-20 09:40:25.445 2024-02-20 09:40:25.445 900 TIP 432290 1478 6008996 2024-02-20 09:42:03.526 2024-02-20 09:42:03.526 1000 FEE 432170 18396 6008997 2024-02-20 09:42:03.526 2024-02-20 09:42:03.526 9000 TIP 432170 1515 6009000 2024-02-20 09:42:04.905 2024-02-20 09:42:04.905 1000 FEE 432060 18842 6009001 2024-02-20 09:42:04.905 2024-02-20 09:42:04.905 9000 TIP 432060 3683 6009004 2024-02-20 09:42:06.095 2024-02-20 09:42:06.095 1000 FEE 432101 681 6009005 2024-02-20 09:42:06.095 2024-02-20 09:42:06.095 9000 TIP 432101 4521 6009012 2024-02-20 09:42:07.708 2024-02-20 09:42:07.708 1000 FEE 430496 999 6009013 2024-02-20 09:42:07.708 2024-02-20 09:42:07.708 9000 TIP 430496 20243 6009080 2024-02-20 09:46:57.605 2024-02-20 09:46:57.605 1000 FEE 430642 17517 6009081 2024-02-20 09:46:57.605 2024-02-20 09:46:57.605 9000 TIP 430642 21457 6009082 2024-02-20 09:47:01.336 2024-02-20 09:47:01.336 1000 FEE 430656 7119 6009083 2024-02-20 09:47:01.336 2024-02-20 09:47:01.336 9000 TIP 430656 21599 6009085 2024-02-20 09:47:10.458 2024-02-20 09:47:10.458 1000 FEE 430638 10291 6009086 2024-02-20 09:47:10.458 2024-02-20 09:47:10.458 9000 TIP 430638 4538 6009093 2024-02-20 09:47:23.708 2024-02-20 09:47:23.708 1000 FEE 430636 11298 6009094 2024-02-20 09:47:23.708 2024-02-20 09:47:23.708 9000 TIP 430636 12261 6009100 2024-02-20 09:47:43.485 2024-02-20 09:47:43.485 1000 FEE 430689 807 6009101 2024-02-20 09:47:43.485 2024-02-20 09:47:43.485 9000 TIP 430689 736 6009102 2024-02-20 09:47:50.524 2024-02-20 09:47:50.524 1000 FEE 430677 20198 6009103 2024-02-20 09:47:50.524 2024-02-20 09:47:50.524 9000 TIP 430677 5112 6009148 2024-02-20 09:49:57.497 2024-02-20 09:49:57.497 4000 FEE 432101 17050 6009149 2024-02-20 09:49:57.497 2024-02-20 09:49:57.497 36000 TIP 432101 20889 6009168 2024-02-20 09:51:15.415 2024-02-20 09:51:15.415 21000 FEE 432301 1175 6009175 2024-02-20 09:51:44.656 2024-02-20 09:51:44.656 2100 FEE 432186 4084 6009176 2024-02-20 09:51:44.656 2024-02-20 09:51:44.656 18900 TIP 432186 16406 6009179 2024-02-20 09:51:47.635 2024-02-20 09:51:47.635 2100 FEE 432003 18809 6009180 2024-02-20 09:51:47.635 2024-02-20 09:51:47.635 18900 TIP 432003 18995 6009187 2024-02-20 09:51:52.578 2024-02-20 09:51:52.578 2100 FEE 431918 21387 6009188 2024-02-20 09:51:52.578 2024-02-20 09:51:52.578 18900 TIP 431918 9438 6009195 2024-02-20 09:52:01.34 2024-02-20 09:52:01.34 1000 FEE 430750 11885 6009196 2024-02-20 09:52:01.34 2024-02-20 09:52:01.34 9000 TIP 430750 1286 6009217 2024-02-20 09:53:29.104 2024-02-20 09:53:29.104 1000 FEE 430593 5449 6009218 2024-02-20 09:53:29.104 2024-02-20 09:53:29.104 9000 TIP 430593 5557 6009228 2024-02-20 09:56:59.402 2024-02-20 09:56:59.402 100 FEE 432101 4238 6009229 2024-02-20 09:56:59.402 2024-02-20 09:56:59.402 900 TIP 432101 16309 6009247 2024-02-20 10:01:08.944 2024-02-20 10:01:08.944 1000 FEE 432307 16282 6009289 2024-02-20 10:14:49.068 2024-02-20 10:14:49.068 1000 FEE 432317 11885 6009307 2024-02-20 10:18:50.67 2024-02-20 10:18:50.67 1000 FEE 432323 5794 6009340 2024-02-20 10:31:13.252 2024-02-20 10:31:13.252 1000 FEE 432330 2460 6009403 2024-02-20 10:50:17.213 2024-02-20 10:50:17.213 100 FEE 432338 17064 6009404 2024-02-20 10:50:17.213 2024-02-20 10:50:17.213 900 TIP 432338 19929 6009422 2024-02-20 11:00:10.455 2024-02-20 11:00:10.455 1000 FEE 432345 8544 6009444 2024-02-20 11:02:05.531 2024-02-20 11:02:05.531 1000 FEE 432349 17147 6009457 2024-02-20 11:03:53.953 2024-02-20 11:03:53.953 4000 FEE 432346 18454 6009458 2024-02-20 11:03:53.953 2024-02-20 11:03:53.953 36000 TIP 432346 17415 6009501 2024-02-20 11:17:33.782 2024-02-20 11:17:33.782 1000 FEE 432364 19018 6009522 2024-02-20 11:23:24.005 2024-02-20 11:23:24.005 2100 FEE 432283 19664 6009523 2024-02-20 11:23:24.005 2024-02-20 11:23:24.005 18900 TIP 432283 1438 6009526 2024-02-20 11:24:14.642 2024-02-20 11:24:14.642 1000 FEE 432368 732 6009531 2024-02-20 11:25:33.839 2024-02-20 11:25:33.839 1000 FEE 432370 20704 6009538 2024-02-20 11:28:30.601 2024-02-20 11:28:30.601 10000 FEE 432372 17696 6009561 2024-02-20 11:36:46.85 2024-02-20 11:36:46.85 1000 FEE 432377 19507 6009563 2024-02-20 11:37:45.151 2024-02-20 11:37:45.151 100000 FEE 432378 20980 6009584 2024-02-20 11:44:59.132 2024-02-20 11:44:59.132 100 FEE 422784 8544 6009585 2024-02-20 11:44:59.132 2024-02-20 11:44:59.132 900 TIP 422784 1803 6009586 2024-02-20 11:44:59.267 2024-02-20 11:44:59.267 100 FEE 422784 946 6009587 2024-02-20 11:44:59.267 2024-02-20 11:44:59.267 900 TIP 422784 19566 6009616 2024-02-20 11:50:37.133 2024-02-20 11:50:37.133 5000 FEE 432383 4250 6009617 2024-02-20 11:50:37.133 2024-02-20 11:50:37.133 45000 TIP 432383 17953 6009632 2024-02-20 11:52:26.488 2024-02-20 11:52:26.488 1000 FEE 432388 21263 6009649 2024-02-20 11:58:16.784 2024-02-20 11:58:16.784 1000 FEE 432394 10693 6009696 2024-02-20 12:08:51.493 2024-02-20 12:08:51.493 400 FEE 432283 12122 6009697 2024-02-20 12:08:51.493 2024-02-20 12:08:51.493 3600 TIP 432283 3353 6009744 2024-02-20 12:17:53.159 2024-02-20 12:17:53.159 4000 FEE 432412 16571 6009745 2024-02-20 12:17:53.159 2024-02-20 12:17:53.159 36000 TIP 432412 736 6009748 2024-02-20 12:17:59.582 2024-02-20 12:17:59.582 10000 FEE 430920 12265 6009749 2024-02-20 12:17:59.582 2024-02-20 12:17:59.582 90000 TIP 430920 861 6009757 2024-02-20 12:20:56.901 2024-02-20 12:20:56.901 3300 FEE 430642 2952 6009758 2024-02-20 12:20:56.901 2024-02-20 12:20:56.901 29700 TIP 430642 16679 6009767 2024-02-20 12:21:24.061 2024-02-20 12:21:24.061 3300 FEE 430656 1712 6009768 2024-02-20 12:21:24.061 2024-02-20 12:21:24.061 29700 TIP 430656 20099 6009806 2024-02-20 12:22:53.738 2024-02-20 12:22:53.738 2100 FEE 432337 13587 6009807 2024-02-20 12:22:53.738 2024-02-20 12:22:53.738 18900 TIP 432337 19282 6009823 2024-02-20 12:25:44.421 2024-02-20 12:25:44.421 1000 FEE 432416 16847 6009849 2024-02-20 12:32:28.501 2024-02-20 12:32:28.501 0 FEE 432419 5852 6009879 2024-02-20 12:38:13.403 2024-02-20 12:38:13.403 1000 FEE 431852 616 6009880 2024-02-20 12:38:13.403 2024-02-20 12:38:13.403 9000 TIP 431852 19929 6009925 2024-02-20 12:46:50.932 2024-02-20 12:46:50.932 5000 FEE 432392 20754 6009926 2024-02-20 12:46:50.932 2024-02-20 12:46:50.932 45000 TIP 432392 2326 6009949 2024-02-20 12:50:06.427 2024-02-20 12:50:06.427 100 FEE 432251 919 6009950 2024-02-20 12:50:06.427 2024-02-20 12:50:06.427 900 TIP 432251 5057 6009976 2024-02-20 12:53:13.009 2024-02-20 12:53:13.009 900 FEE 432311 5637 6009977 2024-02-20 12:53:13.009 2024-02-20 12:53:13.009 8100 TIP 432311 12959 6009995 2024-02-20 12:55:06.166 2024-02-20 12:55:06.166 900 FEE 432339 646 6009996 2024-02-20 12:55:06.166 2024-02-20 12:55:06.166 8100 TIP 432339 3656 6010009 2024-02-20 12:56:40.35 2024-02-20 12:56:40.35 900 FEE 432400 18225 6010010 2024-02-20 12:56:40.35 2024-02-20 12:56:40.35 8100 TIP 432400 15662 6008797 2024-02-20 08:53:24.864 2024-02-20 08:53:24.864 1000 FEE 432256 18524 6008814 2024-02-20 08:59:07.887 2024-02-20 08:59:07.887 10000 FEE 432257 7675 6008820 2024-02-20 09:01:22.483 2024-02-20 09:01:22.483 2500 FEE 430602 11862 6008821 2024-02-20 09:01:22.483 2024-02-20 09:01:22.483 22500 TIP 430602 13174 6008840 2024-02-20 09:08:59.58 2024-02-20 09:08:59.58 2100 FEE 432257 1785 6008841 2024-02-20 09:08:59.58 2024-02-20 09:08:59.58 18900 TIP 432257 8870 6008858 2024-02-20 09:13:25.231 2024-02-20 09:13:25.231 100 FEE 432204 17446 6008859 2024-02-20 09:13:25.231 2024-02-20 09:13:25.231 900 TIP 432204 1489 6008895 2024-02-20 09:30:34.354 2024-02-20 09:30:34.354 100 FEE 432269 1044 6008896 2024-02-20 09:30:34.354 2024-02-20 09:30:34.354 900 TIP 432269 21522 6008913 2024-02-20 09:35:12.137 2024-02-20 09:35:12.137 1000 FEE 432279 6537 6009036 2024-02-20 09:42:29.801 2024-02-20 09:42:29.801 1000 FEE 430700 12122 6009037 2024-02-20 09:42:29.801 2024-02-20 09:42:29.801 9000 TIP 430700 4238 6009045 2024-02-20 09:44:32.333 2024-02-20 09:44:32.333 1600 FEE 432113 15617 6009046 2024-02-20 09:44:32.333 2024-02-20 09:44:32.333 14400 TIP 432113 21412 6009049 2024-02-20 09:45:34.639 2024-02-20 09:45:34.639 1000 FEE 432295 9329 6009074 2024-02-20 09:46:34.892 2024-02-20 09:46:34.892 1000 FEE 430758 13076 6009075 2024-02-20 09:46:34.892 2024-02-20 09:46:34.892 9000 TIP 430758 1505 6009104 2024-02-20 09:47:58.627 2024-02-20 09:47:58.627 1000 FEE 430747 13547 6009105 2024-02-20 09:47:58.627 2024-02-20 09:47:58.627 9000 TIP 430747 20370 6009111 2024-02-20 09:48:05.696 2024-02-20 09:48:05.696 1000 FEE 430685 15728 6009112 2024-02-20 09:48:05.696 2024-02-20 09:48:05.696 9000 TIP 430685 7746 6009115 2024-02-20 09:48:25.237 2024-02-20 09:48:25.237 1000 FEE 430695 21090 6009116 2024-02-20 09:48:25.237 2024-02-20 09:48:25.237 9000 TIP 430695 797 6009117 2024-02-20 09:48:27.293 2024-02-20 09:48:27.293 1000 FEE 430749 1438 6009118 2024-02-20 09:48:27.293 2024-02-20 09:48:27.293 9000 TIP 430749 15617 6009119 2024-02-20 09:48:33.011 2024-02-20 09:48:33.011 1000 FEE 430662 9655 6009120 2024-02-20 09:48:33.011 2024-02-20 09:48:33.011 9000 TIP 430662 19930 6009132 2024-02-20 09:48:57.089 2024-02-20 09:48:57.089 1000 FEE 430679 15588 6009133 2024-02-20 09:48:57.089 2024-02-20 09:48:57.089 9000 TIP 430679 17708 6009142 2024-02-20 09:49:48.35 2024-02-20 09:49:48.35 100 FEE 431809 16387 6009143 2024-02-20 09:49:48.35 2024-02-20 09:49:48.35 900 TIP 431809 16432 6009146 2024-02-20 09:49:51.726 2024-02-20 09:49:51.726 4000 FEE 432170 18625 6009147 2024-02-20 09:49:51.726 2024-02-20 09:49:51.726 36000 TIP 432170 16284 6009183 2024-02-20 09:51:51.209 2024-02-20 09:51:51.209 2100 FEE 432060 12562 6009184 2024-02-20 09:51:51.209 2024-02-20 09:51:51.209 18900 TIP 432060 19021 6009223 2024-02-20 09:54:08.422 2024-02-20 09:54:08.422 0 FEE 432302 989 6009234 2024-02-20 09:58:04.497 2024-02-20 09:58:04.497 100 FEE 432304 19335 6009235 2024-02-20 09:58:04.497 2024-02-20 09:58:04.497 900 TIP 432304 8570 6009258 2024-02-20 10:05:47.378 2024-02-20 10:05:47.378 500 FEE 432306 10273 6009259 2024-02-20 10:05:47.378 2024-02-20 10:05:47.378 4500 TIP 432306 699 6009261 2024-02-20 10:06:28.785 2024-02-20 10:06:28.785 1000 FEE 432310 20710 6009273 2024-02-20 10:10:29.589 2024-02-20 10:10:29.589 1000 FEE 432313 1784 6009294 2024-02-20 10:16:23.405 2024-02-20 10:16:23.405 300 FEE 432176 5522 6009295 2024-02-20 10:16:23.405 2024-02-20 10:16:23.405 2700 TIP 432176 11491 6009321 2024-02-20 10:23:34.068 2024-02-20 10:23:34.068 0 FEE 432325 20897 6009373 2024-02-20 10:38:51.492 2024-02-20 10:38:51.492 0 FEE 432336 20185 6009400 2024-02-20 10:48:44.56 2024-02-20 10:48:44.56 1000 FEE 432340 1198 6009420 2024-02-20 10:59:15.536 2024-02-20 10:59:15.536 1000 FEE 432343 19541 6009436 2024-02-20 11:01:19.424 2024-02-20 11:01:19.424 1000 FEE 432348 4304 6009452 2024-02-20 11:03:44.73 2024-02-20 11:03:44.73 100 FEE 432311 1389 6009453 2024-02-20 11:03:44.73 2024-02-20 11:03:44.73 900 TIP 432311 7395 6009463 2024-02-20 11:05:16.07 2024-02-20 11:05:16.07 3300 FEE 432353 21605 6009464 2024-02-20 11:05:16.07 2024-02-20 11:05:16.07 29700 TIP 432353 9845 6009470 2024-02-20 11:06:37.196 2024-02-20 11:06:37.196 1000 FEE 432356 8544 6009489 2024-02-20 11:14:26.831 2024-02-20 11:14:26.831 2400 FEE 431809 14015 6009490 2024-02-20 11:14:26.831 2024-02-20 11:14:26.831 21600 TIP 431809 19394 6009541 2024-02-20 11:30:24.932 2024-02-20 11:30:24.932 1000 FEE 432373 16329 6009553 2024-02-20 11:34:24.114 2024-02-20 11:34:24.114 500 FEE 430892 7376 6009554 2024-02-20 11:34:24.114 2024-02-20 11:34:24.114 4500 TIP 430892 21627 6009566 2024-02-20 11:38:29.624 2024-02-20 11:38:29.624 200 FEE 432378 18601 6009567 2024-02-20 11:38:29.624 2024-02-20 11:38:29.624 1800 TIP 432378 21051 6009573 2024-02-20 11:41:52.863 2024-02-20 11:41:52.863 10000 FEE 432381 17091 6009610 2024-02-20 11:49:23.815 2024-02-20 11:49:23.815 100 FEE 431809 16154 6009611 2024-02-20 11:49:23.815 2024-02-20 11:49:23.815 900 TIP 431809 1549 6009618 2024-02-20 11:50:37.309 2024-02-20 11:50:37.309 5000 FEE 432383 3544 6009619 2024-02-20 11:50:37.309 2024-02-20 11:50:37.309 45000 TIP 432383 19153 6009626 2024-02-20 11:51:22.151 2024-02-20 11:51:22.151 5000 FEE 431844 19773 6009627 2024-02-20 11:51:22.151 2024-02-20 11:51:22.151 45000 TIP 431844 19243 6009658 2024-02-20 12:00:05.6 2024-02-20 12:00:05.6 1000 FEE 432397 20090 6009671 2024-02-20 12:03:31.431 2024-02-20 12:03:31.431 1000 FEE 432402 14857 6009674 2024-02-20 12:03:43.076 2024-02-20 12:03:43.076 4000 FEE 432283 18454 6009675 2024-02-20 12:03:43.076 2024-02-20 12:03:43.076 36000 TIP 432283 19966 6009717 2024-02-20 12:10:37.559 2024-02-20 12:10:37.559 1000 FEE 432372 2061 6009718 2024-02-20 12:10:37.559 2024-02-20 12:10:37.559 9000 TIP 432372 4570 6009734 2024-02-20 12:15:14.729 2024-02-20 12:15:14.729 1000 FEE 432409 20577 6009740 2024-02-20 12:16:09.722 2024-02-20 12:16:09.722 100000 FEE 432410 20502 6009762 2024-02-20 12:21:04.63 2024-02-20 12:21:04.63 3300 FEE 430642 929 6009763 2024-02-20 12:21:04.63 2024-02-20 12:21:04.63 29700 TIP 430642 17226 6009773 2024-02-20 12:21:45.417 2024-02-20 12:21:45.417 3300 FEE 430656 2460 6009774 2024-02-20 12:21:45.417 2024-02-20 12:21:45.417 29700 TIP 430656 14169 6009838 2024-02-20 12:29:16.147 2024-02-20 12:29:16.147 9000 FEE 432419 20511 6009848 2024-02-20 12:32:13.813 2024-02-20 12:32:13.813 0 FEE 432419 9336 6009853 2024-02-20 12:32:39.46 2024-02-20 12:32:39.46 0 FEE 432421 2963 6009857 2024-02-20 12:33:10.363 2024-02-20 12:33:10.363 7000 FEE 432422 4043 6009859 2024-02-20 12:33:43.401 2024-02-20 12:33:43.401 4000 FEE 431003 20717 6009860 2024-02-20 12:33:43.401 2024-02-20 12:33:43.401 36000 TIP 431003 17727 6009872 2024-02-20 12:35:30.086 2024-02-20 12:35:30.086 4000 FEE 431003 5160 6009873 2024-02-20 12:35:30.086 2024-02-20 12:35:30.086 36000 TIP 431003 17082 6009891 2024-02-20 12:39:40.257 2024-02-20 12:39:40.257 1000 FEE 432378 17797 6009892 2024-02-20 12:39:40.257 2024-02-20 12:39:40.257 9000 TIP 432378 21178 6009906 2024-02-20 12:41:33.09 2024-02-20 12:41:33.09 10000 FEE 432416 9985 6009907 2024-02-20 12:41:33.09 2024-02-20 12:41:33.09 90000 TIP 432416 18235 6009909 2024-02-20 12:42:03.599 2024-02-20 12:42:03.599 2100 FEE 432427 5195 6009910 2024-02-20 12:42:03.599 2024-02-20 12:42:03.599 18900 TIP 432427 5195 6009923 2024-02-20 12:46:50.784 2024-02-20 12:46:50.784 5000 FEE 432392 21314 6009924 2024-02-20 12:46:50.784 2024-02-20 12:46:50.784 45000 TIP 432392 4323 6009980 2024-02-20 12:54:18.754 2024-02-20 12:54:18.754 100 FEE 432320 10690 6009981 2024-02-20 12:54:18.754 2024-02-20 12:54:18.754 900 TIP 432320 15148 6009990 2024-02-20 12:54:53.393 2024-02-20 12:54:53.393 9000 FEE 432337 9476 6009991 2024-02-20 12:54:53.393 2024-02-20 12:54:53.393 81000 TIP 432337 828 6010033 2024-02-20 12:58:09.963 2024-02-20 12:58:09.963 100 FEE 432419 21155 6010034 2024-02-20 12:58:09.963 2024-02-20 12:58:09.963 900 TIP 432419 19138 6010041 2024-02-20 12:58:29.181 2024-02-20 12:58:29.181 100 FEE 432428 19033 6010042 2024-02-20 12:58:29.181 2024-02-20 12:58:29.181 900 TIP 432428 636 6010043 2024-02-20 12:58:29.379 2024-02-20 12:58:29.379 900 FEE 432428 14909 6010044 2024-02-20 12:58:29.379 2024-02-20 12:58:29.379 8100 TIP 432428 18518 6008804 2024-02-20 08:57:14.448 2024-02-20 08:57:14.448 2100 FEE 432251 19156 6008805 2024-02-20 08:57:14.448 2024-02-20 08:57:14.448 18900 TIP 432251 19118 6008815 2024-02-20 08:59:14.712 2024-02-20 08:59:14.712 2100 FEE 432179 8508 6008816 2024-02-20 08:59:14.712 2024-02-20 08:59:14.712 18900 TIP 432179 15690 6008824 2024-02-20 09:02:41.21 2024-02-20 09:02:41.21 1000 FEE 430892 12024 6008825 2024-02-20 09:02:41.21 2024-02-20 09:02:41.21 9000 TIP 430892 19105 6008833 2024-02-20 09:06:12.832 2024-02-20 09:06:12.832 2100 FEE 432259 14688 6008834 2024-02-20 09:06:12.832 2024-02-20 09:06:12.832 18900 TIP 432259 16354 6008846 2024-02-20 09:11:17.255 2024-02-20 09:11:17.255 1000 FEE 432263 1141 6008847 2024-02-20 09:11:28.183 2024-02-20 09:11:28.183 0 FEE 432261 909 6008877 2024-02-20 09:23:59.972 2024-02-20 09:23:59.972 10000 FEE 432269 9345 6008888 2024-02-20 09:28:09.572 2024-02-20 09:28:09.572 100000 FEE 432274 20577 6008889 2024-02-20 09:28:24.058 2024-02-20 09:28:24.058 1000 POLL 432274 7376 6008894 2024-02-20 09:30:25.06 2024-02-20 09:30:25.06 1000 POLL 432274 3342 6008897 2024-02-20 09:30:36.891 2024-02-20 09:30:36.891 1000 FEE 432275 20185 6008904 2024-02-20 09:32:11.875 2024-02-20 09:32:11.875 100000 FEE 432277 4989 6008908 2024-02-20 09:34:37.944 2024-02-20 09:34:37.944 1000 FEE 432135 9184 6008909 2024-02-20 09:34:37.944 2024-02-20 09:34:37.944 9000 TIP 432135 5761 6008920 2024-02-20 09:35:59.892 2024-02-20 09:35:59.892 2100 FEE 432248 1772 6008921 2024-02-20 09:35:59.892 2024-02-20 09:35:59.892 18900 TIP 432248 21458 6008924 2024-02-20 09:36:07.734 2024-02-20 09:36:07.734 1000 FEE 432284 16270 6008928 2024-02-20 09:36:42.924 2024-02-20 09:36:42.924 1000 FEE 432286 21218 6008953 2024-02-20 09:39:49.166 2024-02-20 09:39:49.166 1000 FEE 432290 19795 6008956 2024-02-20 09:39:57.471 2024-02-20 09:39:57.471 1000 FEE 431972 20073 6008957 2024-02-20 09:39:57.471 2024-02-20 09:39:57.471 9000 TIP 431972 16440 6008958 2024-02-20 09:40:00.209 2024-02-20 09:40:00.209 1000 FEE 432054 20036 6008959 2024-02-20 09:40:00.209 2024-02-20 09:40:00.209 9000 TIP 432054 20564 6008961 2024-02-20 09:40:23.559 2024-02-20 09:40:23.559 100 FEE 432290 7682 6008962 2024-02-20 09:40:23.559 2024-02-20 09:40:23.559 900 TIP 432290 4118 6008987 2024-02-20 09:41:58.077 2024-02-20 09:41:58.077 1000 FEE 431844 1173 6008988 2024-02-20 09:41:58.077 2024-02-20 09:41:58.077 9000 TIP 431844 671 6009030 2024-02-20 09:42:20.802 2024-02-20 09:42:20.802 1000 FEE 430854 1620 6009031 2024-02-20 09:42:20.802 2024-02-20 09:42:20.802 9000 TIP 430854 20778 6009052 2024-02-20 09:45:45.575 2024-02-20 09:45:45.575 1000 FEE 431896 1141 6009053 2024-02-20 09:45:45.575 2024-02-20 09:45:45.575 9000 TIP 431896 822 6009054 2024-02-20 09:45:48.976 2024-02-20 09:45:48.976 12800 FEE 431980 20183 6009055 2024-02-20 09:45:48.976 2024-02-20 09:45:48.976 115200 TIP 431980 19282 6009060 2024-02-20 09:45:57.07 2024-02-20 09:45:57.07 1000 FEE 432080 9669 6009061 2024-02-20 09:45:57.07 2024-02-20 09:45:57.07 9000 TIP 432080 18828 6009062 2024-02-20 09:45:57.801 2024-02-20 09:45:57.801 1000 FEE 432077 20614 6009063 2024-02-20 09:45:57.801 2024-02-20 09:45:57.801 9000 TIP 432077 19156 6009095 2024-02-20 09:47:28.098 2024-02-20 09:47:28.098 1000 FEE 432297 19911 6009098 2024-02-20 09:47:41.969 2024-02-20 09:47:41.969 1000 FEE 430848 21444 6009099 2024-02-20 09:47:41.969 2024-02-20 09:47:41.969 9000 TIP 430848 9352 6009107 2024-02-20 09:48:03.397 2024-02-20 09:48:03.397 1000 FEE 430699 16912 6009108 2024-02-20 09:48:03.397 2024-02-20 09:48:03.397 9000 TIP 430699 19243 6009125 2024-02-20 09:48:38.341 2024-02-20 09:48:38.341 1000 FEE 432298 16706 6009139 2024-02-20 09:49:33.374 2024-02-20 09:49:33.374 1000 FEE 432299 11996 6009153 2024-02-20 09:50:25.722 2024-02-20 09:50:25.722 1000 POLL 432274 18306 6009181 2024-02-20 09:51:49.851 2024-02-20 09:51:49.851 2100 FEE 432170 17798 6009182 2024-02-20 09:51:49.851 2024-02-20 09:51:49.851 18900 TIP 432170 16440 6009189 2024-02-20 09:51:53.193 2024-02-20 09:51:53.193 1000 FEE 430909 18449 6009190 2024-02-20 09:51:53.193 2024-02-20 09:51:53.193 9000 TIP 430909 17522 6009193 2024-02-20 09:51:58.184 2024-02-20 09:51:58.184 1000 FEE 430901 4048 6009194 2024-02-20 09:51:58.184 2024-02-20 09:51:58.184 9000 TIP 430901 18101 6009204 2024-02-20 09:52:45.472 2024-02-20 09:52:45.472 1000 FEE 430702 4831 6009205 2024-02-20 09:52:45.472 2024-02-20 09:52:45.472 9000 TIP 430702 20509 6009219 2024-02-20 09:53:41.707 2024-02-20 09:53:41.707 1000 FEE 430771 21064 6009220 2024-02-20 09:53:41.707 2024-02-20 09:53:41.707 9000 TIP 430771 647 6009267 2024-02-20 10:08:35.633 2024-02-20 10:08:35.633 3000 FEE 432311 21012 6009268 2024-02-20 10:08:35.633 2024-02-20 10:08:35.633 27000 TIP 432311 21387 6009270 2024-02-20 10:10:00.276 2024-02-20 10:10:00.276 1100 FEE 432135 10060 6009271 2024-02-20 10:10:00.276 2024-02-20 10:10:00.276 9900 TIP 432135 21051 6009288 2024-02-20 10:14:05.79 2024-02-20 10:14:05.79 1000 FEE 432316 11522 6009292 2024-02-20 10:16:13.174 2024-02-20 10:16:13.174 2100 FEE 432303 20340 6009293 2024-02-20 10:16:13.174 2024-02-20 10:16:13.174 18900 TIP 432303 17526 6009296 2024-02-20 10:16:29.449 2024-02-20 10:16:29.449 1000 FEE 432318 13132 6009316 2024-02-20 10:22:03.604 2024-02-20 10:22:03.604 1000 FEE 432325 738 6009338 2024-02-20 10:30:03.565 2024-02-20 10:30:03.565 15000 FEE 432329 3745 6009352 2024-02-20 10:33:33.554 2024-02-20 10:33:33.554 1000 FEE 432332 7979 6009451 2024-02-20 11:03:42.885 2024-02-20 11:03:42.885 1000 FEE 432352 19096 6009462 2024-02-20 11:05:11.302 2024-02-20 11:05:11.302 1000 FEE 432355 19296 6009469 2024-02-20 11:06:05.723 2024-02-20 11:06:05.723 0 FEE 432355 16747 6009480 2024-02-20 11:10:22.16 2024-02-20 11:10:22.16 300 FEE 432311 909 6009481 2024-02-20 11:10:22.16 2024-02-20 11:10:22.16 2700 TIP 432311 16754 6009510 2024-02-20 11:20:58.263 2024-02-20 11:20:58.263 2100 FEE 432309 11328 6009511 2024-02-20 11:20:58.263 2024-02-20 11:20:58.263 18900 TIP 432309 7827 6009513 2024-02-20 11:21:20.703 2024-02-20 11:21:20.703 1000 FEE 432366 9307 6009518 2024-02-20 11:23:03.887 2024-02-20 11:23:03.887 2100 FEE 432311 15577 6009519 2024-02-20 11:23:03.887 2024-02-20 11:23:03.887 18900 TIP 432311 10771 6009527 2024-02-20 11:24:27.319 2024-02-20 11:24:27.319 2100 FEE 432277 20291 6009528 2024-02-20 11:24:27.319 2024-02-20 11:24:27.319 18900 TIP 432277 11192 6009542 2024-02-20 11:30:28.903 2024-02-20 11:30:28.903 2100 FEE 432371 2942 6009543 2024-02-20 11:30:28.903 2024-02-20 11:30:28.903 18900 TIP 432371 1483 6009582 2024-02-20 11:44:58.985 2024-02-20 11:44:58.985 100 FEE 422784 20858 6009583 2024-02-20 11:44:58.985 2024-02-20 11:44:58.985 900 TIP 422784 2460 6009592 2024-02-20 11:45:00.465 2024-02-20 11:45:00.465 100 FEE 422778 20892 6009593 2024-02-20 11:45:00.465 2024-02-20 11:45:00.465 900 TIP 422778 13927 6009605 2024-02-20 11:47:37.874 2024-02-20 11:47:37.874 100000 FEE 432385 16717 6009620 2024-02-20 11:50:37.485 2024-02-20 11:50:37.485 5000 FEE 432383 1465 6009621 2024-02-20 11:50:37.485 2024-02-20 11:50:37.485 45000 TIP 432383 1352 6009636 2024-02-20 11:54:21.907 2024-02-20 11:54:21.907 1000 FEE 432390 4802 6009641 2024-02-20 11:56:49.203 2024-02-20 11:56:49.203 1000 FEE 432391 20245 6009642 2024-02-20 11:56:51.739 2024-02-20 11:56:51.739 1000 FEE 432392 18068 6009654 2024-02-20 11:59:54.966 2024-02-20 11:59:54.966 1000 FEE 432311 9 6009655 2024-02-20 11:59:54.966 2024-02-20 11:59:54.966 9000 TIP 432311 811 6009664 2024-02-20 12:01:36.422 2024-02-20 12:01:36.422 1000 FEE 432399 20979 6009672 2024-02-20 12:03:34.013 2024-02-20 12:03:34.013 1000 FEE 430795 10493 6009673 2024-02-20 12:03:34.013 2024-02-20 12:03:34.013 9000 TIP 430795 20376 6009679 2024-02-20 12:04:13.741 2024-02-20 12:04:13.741 1000 FEE 432403 16950 6009684 2024-02-20 12:06:04.476 2024-02-20 12:06:04.476 3300 FEE 430656 21527 6009685 2024-02-20 12:06:04.476 2024-02-20 12:06:04.476 29700 TIP 430656 11648 6009690 2024-02-20 12:08:26.801 2024-02-20 12:08:26.801 1000 FEE 430771 9171 6009691 2024-02-20 12:08:26.801 2024-02-20 12:08:26.801 9000 TIP 430771 10818 6009719 2024-02-20 12:10:50.296 2024-02-20 12:10:50.296 3300 FEE 430642 632 6009720 2024-02-20 12:10:50.296 2024-02-20 12:10:50.296 29700 TIP 430642 17116 6009724 2024-02-20 12:11:56.156 2024-02-20 12:11:56.156 1000 FEE 432407 20754 6008812 2024-02-20 08:59:06.537 2024-02-20 08:59:06.537 2100 FEE 432186 1180 6008813 2024-02-20 08:59:06.537 2024-02-20 08:59:06.537 18900 TIP 432186 2749 6008836 2024-02-20 09:07:05.279 2024-02-20 09:07:05.279 2100 FEE 432259 2710 6008837 2024-02-20 09:07:05.279 2024-02-20 09:07:05.279 18900 TIP 432259 20511 6008838 2024-02-20 09:07:32.224 2024-02-20 09:07:32.224 1000 FEE 432261 690 6008872 2024-02-20 09:22:03.772 2024-02-20 09:22:03.772 1000 FEE 432267 19888 6008900 2024-02-20 09:31:16.587 2024-02-20 09:31:16.587 1000 FEE 432276 21357 6008901 2024-02-20 09:31:37.45 2024-02-20 09:31:37.45 700 FEE 432219 20523 6008902 2024-02-20 09:31:37.45 2024-02-20 09:31:37.45 6300 TIP 432219 16276 6008916 2024-02-20 09:35:16.937 2024-02-20 09:35:16.937 1000 FEE 432280 16178 6008949 2024-02-20 09:39:40.2 2024-02-20 09:39:40.2 1000 FEE 432172 1291 6008950 2024-02-20 09:39:40.2 2024-02-20 09:39:40.2 9000 TIP 432172 3304 6008965 2024-02-20 09:40:24.588 2024-02-20 09:40:24.588 200 FEE 432290 17944 6008966 2024-02-20 09:40:24.588 2024-02-20 09:40:24.588 1800 TIP 432290 17800 6008974 2024-02-20 09:41:17.201 2024-02-20 09:41:17.201 1000 FEE 432293 20981 6008977 2024-02-20 09:41:35.455 2024-02-20 09:41:35.455 1000 FEE 431915 1291 6008978 2024-02-20 09:41:35.455 2024-02-20 09:41:35.455 9000 TIP 431915 5487 6008981 2024-02-20 09:41:50.364 2024-02-20 09:41:50.364 1000 FEE 432088 4014 6008982 2024-02-20 09:41:50.364 2024-02-20 09:41:50.364 9000 TIP 432088 20715 6008983 2024-02-20 09:41:55.417 2024-02-20 09:41:55.417 1000 FEE 430892 17693 6008984 2024-02-20 09:41:55.417 2024-02-20 09:41:55.417 9000 TIP 430892 12289 6008998 2024-02-20 09:42:04.305 2024-02-20 09:42:04.305 1000 FEE 430795 21180 6008999 2024-02-20 09:42:04.305 2024-02-20 09:42:04.305 9000 TIP 430795 18344 6009006 2024-02-20 09:42:06.638 2024-02-20 09:42:06.638 1000 FEE 431800 1224 6009007 2024-02-20 09:42:06.638 2024-02-20 09:42:06.638 9000 TIP 431800 21577 6009008 2024-02-20 09:42:07.117 2024-02-20 09:42:07.117 1000 FEE 430569 20551 6009009 2024-02-20 09:42:07.117 2024-02-20 09:42:07.117 9000 TIP 430569 20776 6009016 2024-02-20 09:42:11.332 2024-02-20 09:42:11.332 1000 FEE 432003 992 6009017 2024-02-20 09:42:11.332 2024-02-20 09:42:11.332 9000 TIP 432003 5557 6009024 2024-02-20 09:42:18.748 2024-02-20 09:42:18.748 1000 FEE 430811 19320 6009025 2024-02-20 09:42:18.748 2024-02-20 09:42:18.748 9000 TIP 430811 15094 6009047 2024-02-20 09:44:45.377 2024-02-20 09:44:45.377 1000 FEE 432294 14295 6009067 2024-02-20 09:46:00.786 2024-02-20 09:46:00.786 1000 FEE 431904 20811 6009068 2024-02-20 09:46:00.786 2024-02-20 09:46:00.786 9000 TIP 431904 14503 6009089 2024-02-20 09:47:15.569 2024-02-20 09:47:15.569 1000 FEE 430645 739 6009090 2024-02-20 09:47:15.569 2024-02-20 09:47:15.569 9000 TIP 430645 18941 6009096 2024-02-20 09:47:39.881 2024-02-20 09:47:39.881 1000 FEE 430689 20187 6009097 2024-02-20 09:47:39.881 2024-02-20 09:47:39.881 9000 TIP 430689 13527 6009121 2024-02-20 09:48:35.909 2024-02-20 09:48:35.909 1000 FEE 430688 704 6009122 2024-02-20 09:48:35.909 2024-02-20 09:48:35.909 9000 TIP 430688 1605 6009134 2024-02-20 09:49:01.392 2024-02-20 09:49:01.392 1000 FEE 430658 16816 6009135 2024-02-20 09:49:01.392 2024-02-20 09:49:01.392 9000 TIP 430658 9529 6009144 2024-02-20 09:49:49.103 2024-02-20 09:49:49.103 4000 FEE 432060 1605 6009145 2024-02-20 09:49:49.103 2024-02-20 09:49:49.103 36000 TIP 432060 21155 6009154 2024-02-20 09:50:32.049 2024-02-20 09:50:32.049 2100 FEE 432221 651 6009155 2024-02-20 09:50:32.049 2024-02-20 09:50:32.049 18900 TIP 432221 11885 6009158 2024-02-20 09:50:42.688 2024-02-20 09:50:42.688 300 FEE 432274 1519 6009159 2024-02-20 09:50:42.688 2024-02-20 09:50:42.688 2700 TIP 432274 13782 6009185 2024-02-20 09:51:51.594 2024-02-20 09:51:51.594 2100 FEE 432101 9421 6009186 2024-02-20 09:51:51.594 2024-02-20 09:51:51.594 18900 TIP 432101 928 6009198 2024-02-20 09:52:19.829 2024-02-20 09:52:19.829 1000 FEE 430976 20306 6009199 2024-02-20 09:52:19.829 2024-02-20 09:52:19.829 9000 TIP 430976 9084 6009202 2024-02-20 09:52:20.151 2024-02-20 09:52:20.151 1000 FEE 430976 1881 6009203 2024-02-20 09:52:20.151 2024-02-20 09:52:20.151 9000 TIP 430976 8570 6009206 2024-02-20 09:52:53.728 2024-02-20 09:52:53.728 1000 FEE 431223 16939 6009207 2024-02-20 09:52:53.728 2024-02-20 09:52:53.728 9000 TIP 431223 19322 6009208 2024-02-20 09:52:55.177 2024-02-20 09:52:55.177 1000 FEE 386557 21563 6009209 2024-02-20 09:52:55.177 2024-02-20 09:52:55.177 9000 TIP 386557 14308 6009232 2024-02-20 09:58:02.754 2024-02-20 09:58:02.754 1000 FEE 432306 5752 6009257 2024-02-20 10:05:09.013 2024-02-20 10:05:09.013 10000 FEE 432309 9552 6009266 2024-02-20 10:08:26.787 2024-02-20 10:08:26.787 1000 FEE 432312 2780 6009282 2024-02-20 10:13:35.22 2024-02-20 10:13:35.22 1000 FEE 432315 8648 6009297 2024-02-20 10:16:34.624 2024-02-20 10:16:34.624 500 FEE 432147 3706 6009298 2024-02-20 10:16:34.624 2024-02-20 10:16:34.624 4500 TIP 432147 4115 6009328 2024-02-20 10:27:29.572 2024-02-20 10:27:29.572 12800 FEE 432259 18629 6009329 2024-02-20 10:27:29.572 2024-02-20 10:27:29.572 115200 TIP 432259 986 6009387 2024-02-20 10:42:08.546 2024-02-20 10:42:08.546 100000 DONT_LIKE_THIS 432329 20479 6009396 2024-02-20 10:46:57.447 2024-02-20 10:46:57.447 700 FEE 432322 13927 6009397 2024-02-20 10:46:57.447 2024-02-20 10:46:57.447 6300 TIP 432322 16212 6009419 2024-02-20 10:59:04.043 2024-02-20 10:59:04.043 1000 FEE 432342 20306 6009425 2024-02-20 11:00:31.615 2024-02-20 11:00:31.615 100 FEE 432345 16356 6009426 2024-02-20 11:00:31.615 2024-02-20 11:00:31.615 900 TIP 432345 3417 6009450 2024-02-20 11:03:07.155 2024-02-20 11:03:07.155 1000 FEE 432351 1438 6009483 2024-02-20 11:11:52.753 2024-02-20 11:11:52.753 1000 FEE 432360 11789 6009491 2024-02-20 11:15:01.345 2024-02-20 11:15:01.345 100000 FEE 432361 21349 6009530 2024-02-20 11:25:32.873 2024-02-20 11:25:32.873 2000 FEE 432369 6268 6009546 2024-02-20 11:32:15.994 2024-02-20 11:32:15.994 500 FEE 432146 21040 6009547 2024-02-20 11:32:15.994 2024-02-20 11:32:15.994 4500 TIP 432146 987 6009551 2024-02-20 11:33:35.697 2024-02-20 11:33:35.697 1000 FEE 432374 15662 6009555 2024-02-20 11:34:30.789 2024-02-20 11:34:30.789 500 FEE 432085 19193 6009556 2024-02-20 11:34:30.789 2024-02-20 11:34:30.789 4500 TIP 432085 5175 6009560 2024-02-20 11:36:33.205 2024-02-20 11:36:33.205 1000 FEE 432376 12561 6009578 2024-02-20 11:44:57.84 2024-02-20 11:44:57.84 100 FEE 422776 19117 6009579 2024-02-20 11:44:57.84 2024-02-20 11:44:57.84 900 TIP 422776 1002 6009590 2024-02-20 11:45:00.253 2024-02-20 11:45:00.253 100 FEE 422778 19836 6009591 2024-02-20 11:45:00.253 2024-02-20 11:45:00.253 900 TIP 422778 18909 6009653 2024-02-20 11:59:35.369 2024-02-20 11:59:35.369 1000 FEE 432395 1628 6009657 2024-02-20 12:00:04.962 2024-02-20 12:00:04.962 100000 FEE 432396 14074 6009660 2024-02-20 12:00:11.987 2024-02-20 12:00:11.987 1000 FEE 432398 19030 6009686 2024-02-20 12:06:18.117 2024-02-20 12:06:18.117 3300 FEE 430892 13553 6009687 2024-02-20 12:06:18.117 2024-02-20 12:06:18.117 29700 TIP 430892 690 6009694 2024-02-20 12:08:51.317 2024-02-20 12:08:51.317 400 FEE 432283 9985 6009695 2024-02-20 12:08:51.317 2024-02-20 12:08:51.317 3600 TIP 432283 886 6009723 2024-02-20 12:11:54.967 2024-02-20 12:11:54.967 1000 FEE 432406 14503 6009730 2024-02-20 12:14:12.485 2024-02-20 12:14:12.485 1000 FEE 432240 20525 6009731 2024-02-20 12:14:12.485 2024-02-20 12:14:12.485 9000 TIP 432240 6573 6009746 2024-02-20 12:17:54.492 2024-02-20 12:17:54.492 10000 FEE 432140 15094 6009747 2024-02-20 12:17:54.492 2024-02-20 12:17:54.492 90000 TIP 432140 20264 6009764 2024-02-20 12:21:05.45 2024-02-20 12:21:05.45 1000 FEE 432413 19105 6009771 2024-02-20 12:21:43.518 2024-02-20 12:21:43.518 3300 FEE 430642 20663 6009772 2024-02-20 12:21:43.518 2024-02-20 12:21:43.518 29700 TIP 430642 21614 6009780 2024-02-20 12:22:06.846 2024-02-20 12:22:06.846 3300 FEE 430642 18664 6009781 2024-02-20 12:22:06.846 2024-02-20 12:22:06.846 29700 TIP 430642 20817 6009784 2024-02-20 12:22:15.516 2024-02-20 12:22:15.516 3300 FEE 430656 19842 6009785 2024-02-20 12:22:15.516 2024-02-20 12:22:15.516 29700 TIP 430656 9378 6009788 2024-02-20 12:22:23.049 2024-02-20 12:22:23.049 2100 FEE 432404 2844 6009789 2024-02-20 12:22:23.049 2024-02-20 12:22:23.049 18900 TIP 432404 1647 6008856 2024-02-20 09:13:24.908 2024-02-20 09:13:24.908 100 FEE 432204 3717 6008857 2024-02-20 09:13:24.908 2024-02-20 09:13:24.908 900 TIP 432204 650 6008863 2024-02-20 09:16:24.386 2024-02-20 09:16:24.386 1000 FEE 432264 21157 6008873 2024-02-20 09:22:15.623 2024-02-20 09:22:15.623 1000 FEE 432268 5728 6008874 2024-02-20 09:22:20.721 2024-02-20 09:22:20.721 2100 FEE 432175 6300 6008875 2024-02-20 09:22:20.721 2024-02-20 09:22:20.721 18900 TIP 432175 17094 6008879 2024-02-20 09:24:13.756 2024-02-20 09:24:13.756 0 FEE 432268 21070 6008898 2024-02-20 09:31:02.894 2024-02-20 09:31:02.894 0 FEE 432275 16638 6008905 2024-02-20 09:32:18.87 2024-02-20 09:32:18.87 1000 FEE 432278 21466 6008910 2024-02-20 09:34:41.872 2024-02-20 09:34:41.872 12800 FEE 432170 21194 6008911 2024-02-20 09:34:41.872 2024-02-20 09:34:41.872 115200 TIP 432170 17103 6008914 2024-02-20 09:35:13.995 2024-02-20 09:35:13.995 2100 FEE 432264 17722 6008915 2024-02-20 09:35:13.995 2024-02-20 09:35:13.995 18900 TIP 432264 21207 6008919 2024-02-20 09:35:57.937 2024-02-20 09:35:57.937 1000 FEE 432282 20231 6008922 2024-02-20 09:36:02.853 2024-02-20 09:36:02.853 100000 FEE 432283 20436 6008937 2024-02-20 09:39:01.274 2024-02-20 09:39:01.274 1000 FEE 432123 18679 6008938 2024-02-20 09:39:01.274 2024-02-20 09:39:01.274 9000 TIP 432123 16879 6008954 2024-02-20 09:39:51.664 2024-02-20 09:39:51.664 2100 FEE 432280 20340 6008955 2024-02-20 09:39:51.664 2024-02-20 09:39:51.664 18900 TIP 432280 16594 6009022 2024-02-20 09:42:18.43 2024-02-20 09:42:18.43 1000 FEE 431055 18769 6009023 2024-02-20 09:42:18.43 2024-02-20 09:42:18.43 9000 TIP 431055 17976 6009050 2024-02-20 09:45:45.039 2024-02-20 09:45:45.039 1000 FEE 431896 14370 6009051 2024-02-20 09:45:45.039 2024-02-20 09:45:45.039 9000 TIP 431896 16357 6009069 2024-02-20 09:46:02.759 2024-02-20 09:46:02.759 1000 FEE 432047 20218 6009070 2024-02-20 09:46:02.759 2024-02-20 09:46:02.759 9000 TIP 432047 19689 6009078 2024-02-20 09:46:57.379 2024-02-20 09:46:57.379 1000 FEE 430642 17526 6009079 2024-02-20 09:46:57.379 2024-02-20 09:46:57.379 9000 TIP 430642 828 6009087 2024-02-20 09:47:13.05 2024-02-20 09:47:13.05 1000 FEE 430648 20551 6009088 2024-02-20 09:47:13.05 2024-02-20 09:47:13.05 9000 TIP 430648 8569 6009113 2024-02-20 09:48:12.847 2024-02-20 09:48:12.847 1000 FEE 430672 10530 6009114 2024-02-20 09:48:12.847 2024-02-20 09:48:12.847 9000 TIP 430672 3400 6009123 2024-02-20 09:48:36.686 2024-02-20 09:48:36.686 10000 FEE 432283 11522 6009124 2024-02-20 09:48:36.686 2024-02-20 09:48:36.686 90000 TIP 432283 14818 6009137 2024-02-20 09:49:14.812 2024-02-20 09:49:14.812 1000 FEE 430633 13575 6009138 2024-02-20 09:49:14.812 2024-02-20 09:49:14.812 9000 TIP 430633 7418 6009156 2024-02-20 09:50:38.393 2024-02-20 09:50:38.393 1000 FEE 430644 822 6009157 2024-02-20 09:50:38.393 2024-02-20 09:50:38.393 9000 TIP 430644 14267 6009169 2024-02-20 09:51:37.736 2024-02-20 09:51:37.736 1000 FEE 430888 16309 6009170 2024-02-20 09:51:37.736 2024-02-20 09:51:37.736 9000 TIP 430888 925 6009215 2024-02-20 09:53:26.831 2024-02-20 09:53:26.831 1000 FEE 430525 19967 6009216 2024-02-20 09:53:26.831 2024-02-20 09:53:26.831 9000 TIP 430525 20993 6009226 2024-02-20 09:55:21.237 2024-02-20 09:55:21.237 1000 FEE 432304 20045 6009231 2024-02-20 09:57:48.615 2024-02-20 09:57:48.615 1000 FEE 432305 20881 6009254 2024-02-20 10:04:58.571 2024-02-20 10:04:58.571 100 FEE 432274 20710 6009255 2024-02-20 10:04:58.571 2024-02-20 10:04:58.571 900 TIP 432274 626 6009276 2024-02-20 10:12:38.875 2024-02-20 10:12:38.875 1000 FEE 432314 2596 6009280 2024-02-20 10:13:20.026 2024-02-20 10:13:20.026 2100 FEE 432301 17713 6009281 2024-02-20 10:13:20.026 2024-02-20 10:13:20.026 18900 TIP 432301 16270 6009326 2024-02-20 10:27:20.875 2024-02-20 10:27:20.875 1000 FEE 432327 837 6009335 2024-02-20 10:29:23.488 2024-02-20 10:29:23.488 1600 FEE 432101 1620 6009336 2024-02-20 10:29:23.488 2024-02-20 10:29:23.488 14400 TIP 432101 776 6009357 2024-02-20 10:35:02.153 2024-02-20 10:35:02.153 1000 FEE 432334 19531 6009384 2024-02-20 10:40:25.763 2024-02-20 10:40:25.763 0 FEE 432336 9351 6009394 2024-02-20 10:46:56.191 2024-02-20 10:46:56.191 700 FEE 432327 18615 6009395 2024-02-20 10:46:56.191 2024-02-20 10:46:56.191 6300 TIP 432327 2022 6009414 2024-02-20 10:57:43.874 2024-02-20 10:57:43.874 4000 FEE 432339 18635 6009415 2024-02-20 10:57:43.874 2024-02-20 10:57:43.874 36000 TIP 432339 6136 6009416 2024-02-20 10:57:44.466 2024-02-20 10:57:44.466 1000 FEE 432341 20006 6009430 2024-02-20 11:01:13.242 2024-02-20 11:01:13.242 0 FEE 432345 3642 6009437 2024-02-20 11:01:21.819 2024-02-20 11:01:21.819 3200 FEE 432345 18426 6009438 2024-02-20 11:01:21.819 2024-02-20 11:01:21.819 28800 TIP 432345 5444 6009460 2024-02-20 11:04:21.047 2024-02-20 11:04:21.047 1000 FEE 432354 7847 6009498 2024-02-20 11:16:19.391 2024-02-20 11:16:19.391 1000 FEE 432168 658 6009499 2024-02-20 11:16:19.391 2024-02-20 11:16:19.391 9000 TIP 432168 19030 6009502 2024-02-20 11:17:39.007 2024-02-20 11:17:39.007 2100 FEE 432363 18989 6009503 2024-02-20 11:17:39.007 2024-02-20 11:17:39.007 18900 TIP 432363 20180 6009504 2024-02-20 11:17:57.663 2024-02-20 11:17:57.663 1000 FEE 432365 16876 6009506 2024-02-20 11:18:38.065 2024-02-20 11:18:38.065 2100 FEE 432186 11760 6009507 2024-02-20 11:18:38.065 2024-02-20 11:18:38.065 18900 TIP 432186 8400 6009580 2024-02-20 11:44:57.963 2024-02-20 11:44:57.963 100 FEE 422776 663 6009581 2024-02-20 11:44:57.963 2024-02-20 11:44:57.963 900 TIP 422776 1549 6009613 2024-02-20 11:50:17.445 2024-02-20 11:50:17.445 10000 FEE 432386 13143 6009630 2024-02-20 11:51:48.745 2024-02-20 11:51:48.745 0 FEE 432384 13217 6009639 2024-02-20 11:56:14.943 2024-02-20 11:56:14.943 2100 FEE 432387 19992 6009640 2024-02-20 11:56:14.943 2024-02-20 11:56:14.943 18900 TIP 432387 9350 6009646 2024-02-20 11:58:00.159 2024-02-20 11:58:00.159 10000 FEE 432393 17147 6009648 2024-02-20 11:58:12.855 2024-02-20 11:58:12.855 0 FEE 432393 16351 6009659 2024-02-20 12:00:11.547 2024-02-20 12:00:11.547 1000 POLL 432274 21047 6009670 2024-02-20 12:03:27.238 2024-02-20 12:03:27.238 1000 FEE 432401 20450 6009681 2024-02-20 12:05:47.325 2024-02-20 12:05:47.325 2100 FEE 432378 21212 6009682 2024-02-20 12:05:47.325 2024-02-20 12:05:47.325 18900 TIP 432378 14385 6009701 2024-02-20 12:09:06.308 2024-02-20 12:09:06.308 400 FEE 432186 2952 6009702 2024-02-20 12:09:06.308 2024-02-20 12:09:06.308 3600 TIP 432186 20811 6009707 2024-02-20 12:09:16.207 2024-02-20 12:09:16.207 400 FEE 432339 8380 6009708 2024-02-20 12:09:16.207 2024-02-20 12:09:16.207 3600 TIP 432339 21494 6009759 2024-02-20 12:21:00.56 2024-02-20 12:21:00.56 3300 FEE 430642 2111 6009760 2024-02-20 12:21:00.56 2024-02-20 12:21:00.56 29700 TIP 430642 20713 6009765 2024-02-20 12:21:13.101 2024-02-20 12:21:13.101 3300 FEE 430656 16858 6009766 2024-02-20 12:21:13.101 2024-02-20 12:21:13.101 29700 TIP 430656 1733 6009782 2024-02-20 12:22:13.754 2024-02-20 12:22:13.754 2100 FEE 432411 16154 6009783 2024-02-20 12:22:13.754 2024-02-20 12:22:13.754 18900 TIP 432411 10270 6009786 2024-02-20 12:22:19.958 2024-02-20 12:22:19.958 3300 FEE 430656 16912 6009787 2024-02-20 12:22:19.958 2024-02-20 12:22:19.958 29700 TIP 430656 15510 6009792 2024-02-20 12:22:24.296 2024-02-20 12:22:24.296 3300 FEE 430642 756 6009793 2024-02-20 12:22:24.296 2024-02-20 12:22:24.296 29700 TIP 430642 19967 6009794 2024-02-20 12:22:28.336 2024-02-20 12:22:28.336 3300 FEE 430642 721 6009795 2024-02-20 12:22:28.336 2024-02-20 12:22:28.336 29700 TIP 430642 3396 6009804 2024-02-20 12:22:51.257 2024-02-20 12:22:51.257 2100 FEE 432309 13132 6009805 2024-02-20 12:22:51.257 2024-02-20 12:22:51.257 18900 TIP 432309 13169 6009808 2024-02-20 12:22:55.637 2024-02-20 12:22:55.637 2100 FEE 432339 20969 6009809 2024-02-20 12:22:55.637 2024-02-20 12:22:55.637 18900 TIP 432339 20642 6009812 2024-02-20 12:24:03.508 2024-02-20 12:24:03.508 100 FEE 432372 14651 6009813 2024-02-20 12:24:03.508 2024-02-20 12:24:03.508 900 TIP 432372 19031 6009814 2024-02-20 12:24:04.19 2024-02-20 12:24:04.19 100 FEE 432378 19663 6009815 2024-02-20 12:24:04.19 2024-02-20 12:24:04.19 900 TIP 432378 19566 6009816 2024-02-20 12:24:32.446 2024-02-20 12:24:32.446 1000 FEE 432414 21090 6009839 2024-02-20 12:29:20.047 2024-02-20 12:29:20.047 4000 FEE 432416 21079 6009249 2024-02-20 10:01:15.611 2024-02-20 10:01:15.611 900 TIP 432141 16154 6009262 2024-02-20 10:06:39.601 2024-02-20 10:06:39.601 210000 FEE 432311 19329 6009263 2024-02-20 10:06:54.919 2024-02-20 10:06:54.919 0 FEE 432310 706 6009277 2024-02-20 10:13:03.086 2024-02-20 10:13:03.086 1000 STREAM 141924 9346 6009287 2024-02-20 10:14:03.081 2024-02-20 10:14:03.081 1000 STREAM 141924 21044 6009306 2024-02-20 10:18:42.591 2024-02-20 10:18:42.591 1000 FEE 432322 1286 6009327 2024-02-20 10:27:25.315 2024-02-20 10:27:25.315 1000 POLL 432211 11897 6009341 2024-02-20 10:31:15.596 2024-02-20 10:31:15.596 4000 FEE 432311 5725 6009342 2024-02-20 10:31:15.596 2024-02-20 10:31:15.596 36000 TIP 432311 21320 6009343 2024-02-20 10:31:22.252 2024-02-20 10:31:22.252 2100 FEE 432311 700 6009344 2024-02-20 10:31:22.252 2024-02-20 10:31:22.252 18900 TIP 432311 20272 6009356 2024-02-20 10:34:41.408 2024-02-20 10:34:41.408 1000 FEE 432333 11561 6009361 2024-02-20 10:35:41.842 2024-02-20 10:35:41.842 100 FEE 432170 4692 6009362 2024-02-20 10:35:41.842 2024-02-20 10:35:41.842 900 TIP 432170 14785 6009366 2024-02-20 10:37:03.863 2024-02-20 10:37:03.863 2100 FEE 429450 20680 6009367 2024-02-20 10:37:03.863 2024-02-20 10:37:03.863 18900 TIP 429450 2335 6009368 2024-02-20 10:37:23.893 2024-02-20 10:37:23.893 1000 POLL 432274 1845 6009370 2024-02-20 10:38:14.901 2024-02-20 10:38:14.901 1000 FEE 432336 8664 6009371 2024-02-20 10:38:18.342 2024-02-20 10:38:18.342 1000 FEE 431223 21444 6009372 2024-02-20 10:38:18.342 2024-02-20 10:38:18.342 9000 TIP 431223 6136 6009375 2024-02-20 10:39:00.693 2024-02-20 10:39:00.693 0 FEE 432336 621 6009405 2024-02-20 10:50:28.868 2024-02-20 10:50:28.868 100 FEE 432329 21624 6009406 2024-02-20 10:50:28.868 2024-02-20 10:50:28.868 900 TIP 432329 656 6009427 2024-02-20 11:00:56.82 2024-02-20 11:00:56.82 1000 FEE 432346 16149 6009429 2024-02-20 11:01:04.438 2024-02-20 11:01:04.438 1000 DONT_LIKE_THIS 432170 18556 6009431 2024-02-20 11:01:14.599 2024-02-20 11:01:14.599 1000 FEE 432347 16177 6009432 2024-02-20 11:01:14.792 2024-02-20 11:01:14.792 1000 FEE 431844 6268 6009433 2024-02-20 11:01:14.792 2024-02-20 11:01:14.792 9000 TIP 431844 17415 6009439 2024-02-20 11:01:44.637 2024-02-20 11:01:44.637 4000 FEE 432345 2367 6009440 2024-02-20 11:01:44.637 2024-02-20 11:01:44.637 36000 TIP 432345 15719 6009441 2024-02-20 11:01:59.314 2024-02-20 11:01:59.314 4000 FEE 432347 20969 6009442 2024-02-20 11:01:59.314 2024-02-20 11:01:59.314 36000 TIP 432347 21057 6009445 2024-02-20 11:02:23.674 2024-02-20 11:02:23.674 0 FEE 432349 805 6009465 2024-02-20 11:05:20.616 2024-02-20 11:05:20.616 0 FEE 432355 7097 6009466 2024-02-20 11:05:56.502 2024-02-20 11:05:56.502 4000 FEE 432355 2609 6009467 2024-02-20 11:05:56.502 2024-02-20 11:05:56.502 36000 TIP 432355 7989 6009471 2024-02-20 11:06:59.977 2024-02-20 11:06:59.977 10000 FEE 432334 21164 6009472 2024-02-20 11:06:59.977 2024-02-20 11:06:59.977 90000 TIP 432334 656 6009474 2024-02-20 11:07:33.046 2024-02-20 11:07:33.046 1000 FEE 432357 10849 6009486 2024-02-20 11:13:48.19 2024-02-20 11:13:48.19 10000 FEE 432283 20573 6009487 2024-02-20 11:13:48.19 2024-02-20 11:13:48.19 90000 TIP 432283 3656 6009520 2024-02-20 11:23:15.967 2024-02-20 11:23:15.967 2100 FEE 432289 13553 6009521 2024-02-20 11:23:15.967 2024-02-20 11:23:15.967 18900 TIP 432289 18660 6009548 2024-02-20 11:32:46.416 2024-02-20 11:32:46.416 2000 FEE 432319 20539 6009549 2024-02-20 11:32:46.416 2024-02-20 11:32:46.416 18000 TIP 432319 12261 6009565 2024-02-20 11:38:06.831 2024-02-20 11:38:06.831 1000 FEE 432379 4984 6009588 2024-02-20 11:45:00.16 2024-02-20 11:45:00.16 100 FEE 422778 20059 6009589 2024-02-20 11:45:00.16 2024-02-20 11:45:00.16 900 TIP 422778 8245 6009606 2024-02-20 11:47:39.248 2024-02-20 11:47:39.248 4000 FEE 432378 9476 6009607 2024-02-20 11:47:39.248 2024-02-20 11:47:39.248 36000 TIP 432378 20969 6009651 2024-02-20 11:59:33.783 2024-02-20 11:59:33.783 2100 FEE 432263 640 6009652 2024-02-20 11:59:33.783 2024-02-20 11:59:33.783 18900 TIP 432263 1802 6009668 2024-02-20 12:03:20.41 2024-02-20 12:03:20.41 4000 FEE 432400 16177 6009669 2024-02-20 12:03:20.41 2024-02-20 12:03:20.41 36000 TIP 432400 20782 6009692 2024-02-20 12:08:31.119 2024-02-20 12:08:31.119 3300 FEE 430656 6360 6009693 2024-02-20 12:08:31.119 2024-02-20 12:08:31.119 29700 TIP 430656 2204 6009705 2024-02-20 12:09:15.792 2024-02-20 12:09:15.792 400 FEE 432339 19309 6009706 2024-02-20 12:09:15.792 2024-02-20 12:09:15.792 3600 TIP 432339 10519 6009715 2024-02-20 12:10:35.587 2024-02-20 12:10:35.587 1000 FEE 432378 18178 6009716 2024-02-20 12:10:35.587 2024-02-20 12:10:35.587 9000 TIP 432378 17124 6009722 2024-02-20 12:11:18.425 2024-02-20 12:11:18.425 1000 FEE 432405 18673 6009737 2024-02-20 12:15:18.478 2024-02-20 12:15:18.478 1000 FEE 432382 5806 6009738 2024-02-20 12:15:18.478 2024-02-20 12:15:18.478 9000 TIP 432382 12768 6009742 2024-02-20 12:17:14.984 2024-02-20 12:17:14.984 100000 FEE 432411 1814 6009819 2024-02-20 12:24:43.314 2024-02-20 12:24:43.314 2100 FEE 432367 21421 6009820 2024-02-20 12:24:43.314 2024-02-20 12:24:43.314 18900 TIP 432367 19583 6009833 2024-02-20 12:27:35.335 2024-02-20 12:27:35.335 2100 FEE 432375 1814 6009834 2024-02-20 12:27:35.335 2024-02-20 12:27:35.335 18900 TIP 432375 13100 6009851 2024-02-20 12:32:37.413 2024-02-20 12:32:37.413 2100 FEE 432420 15491 6009852 2024-02-20 12:32:37.413 2024-02-20 12:32:37.413 18900 TIP 432420 16309 6009875 2024-02-20 12:36:26.413 2024-02-20 12:36:26.413 1000 FEE 432283 2101 6009876 2024-02-20 12:36:26.413 2024-02-20 12:36:26.413 9000 TIP 432283 16356 6009901 2024-02-20 12:40:32.781 2024-02-20 12:40:32.781 1000 FEE 432427 21600 6009955 2024-02-20 12:50:38.783 2024-02-20 12:50:38.783 1000 FEE 432397 11378 6009956 2024-02-20 12:50:38.783 2024-02-20 12:50:38.783 9000 TIP 432397 18473 6009964 2024-02-20 12:51:24.381 2024-02-20 12:51:24.381 9000 FEE 432259 2963 6009965 2024-02-20 12:51:24.381 2024-02-20 12:51:24.381 81000 TIP 432259 7891 6009967 2024-02-20 12:52:32.588 2024-02-20 12:52:32.588 100 FEE 432308 4250 6009968 2024-02-20 12:52:32.588 2024-02-20 12:52:32.588 900 TIP 432308 21222 6009984 2024-02-20 12:54:23.059 2024-02-20 12:54:23.059 9000 FEE 432320 16939 6009985 2024-02-20 12:54:23.059 2024-02-20 12:54:23.059 81000 TIP 432320 16753 6009999 2024-02-20 12:55:30.454 2024-02-20 12:55:30.454 1000 FEE 432433 14376 6010005 2024-02-20 12:56:08.604 2024-02-20 12:56:08.604 1000 FEE 432434 15226 6010057 2024-02-20 13:01:01.174 2024-02-20 13:01:01.174 1000 FEE 432438 20981 6010096 2024-02-20 13:05:11.547 2024-02-20 13:05:11.547 2100 FEE 432251 1726 6010097 2024-02-20 13:05:11.547 2024-02-20 13:05:11.547 18900 TIP 432251 5758 6010100 2024-02-20 13:05:44.196 2024-02-20 13:05:44.196 1000 FEE 432445 837 6010106 2024-02-20 13:06:19.071 2024-02-20 13:06:19.071 2100 FEE 430913 15088 6010107 2024-02-20 13:06:19.071 2024-02-20 13:06:19.071 18900 TIP 430913 6594 6010110 2024-02-20 13:06:22.218 2024-02-20 13:06:22.218 1000 FEE 432446 19087 6010114 2024-02-20 13:07:28.138 2024-02-20 13:07:28.138 2100 FEE 432389 16848 6010115 2024-02-20 13:07:28.138 2024-02-20 13:07:28.138 18900 TIP 432389 10283 6010117 2024-02-20 13:07:29.697 2024-02-20 13:07:29.697 2100 FEE 432289 782 6010118 2024-02-20 13:07:29.697 2024-02-20 13:07:29.697 18900 TIP 432289 14255 6010123 2024-02-20 13:08:16.079 2024-02-20 13:08:16.079 10000 FEE 431661 1046 6010124 2024-02-20 13:08:16.079 2024-02-20 13:08:16.079 90000 TIP 431661 21556 6010140 2024-02-20 13:13:45.252 2024-02-20 13:13:45.252 2100 FEE 432452 11091 6010141 2024-02-20 13:13:45.252 2024-02-20 13:13:45.252 18900 TIP 432452 20257 6010164 2024-02-20 13:14:18.065 2024-02-20 13:14:18.065 2300 FEE 432311 9611 6010165 2024-02-20 13:14:18.065 2024-02-20 13:14:18.065 20700 TIP 432311 21485 6010168 2024-02-20 13:14:18.35 2024-02-20 13:14:18.35 2300 FEE 432311 1576 6010169 2024-02-20 13:14:18.35 2024-02-20 13:14:18.35 20700 TIP 432311 11395 6010176 2024-02-20 13:14:19.219 2024-02-20 13:14:19.219 500 FEE 432311 5701 6010177 2024-02-20 13:14:19.219 2024-02-20 13:14:19.219 4500 TIP 432311 21263 6010242 2024-02-20 13:15:25.458 2024-02-20 13:15:25.458 2300 FEE 432311 12561 6010243 2024-02-20 13:15:25.458 2024-02-20 13:15:25.458 20700 TIP 432311 14080 6010244 2024-02-20 13:15:25.701 2024-02-20 13:15:25.701 2300 FEE 432311 21083 6009302 2024-02-20 10:17:51.521 2024-02-20 10:17:51.521 4000 FEE 432297 1723 6009303 2024-02-20 10:17:51.521 2024-02-20 10:17:51.521 36000 TIP 432297 3745 6009314 2024-02-20 10:21:03.141 2024-02-20 10:21:03.141 1000 STREAM 141924 12356 6009315 2024-02-20 10:22:03.122 2024-02-20 10:22:03.122 1000 STREAM 141924 16879 6009317 2024-02-20 10:22:13.534 2024-02-20 10:22:13.534 1000 FEE 432326 20257 6009320 2024-02-20 10:23:03.124 2024-02-20 10:23:03.124 1000 STREAM 141924 1624 6009322 2024-02-20 10:24:03.129 2024-02-20 10:24:03.129 1000 STREAM 141924 19601 6009330 2024-02-20 10:27:49.042 2024-02-20 10:27:49.042 10000 FEE 432113 19813 6009331 2024-02-20 10:27:49.042 2024-02-20 10:27:49.042 90000 TIP 432113 7986 6009345 2024-02-20 10:31:39.225 2024-02-20 10:31:39.225 2100 FEE 432269 20409 6009346 2024-02-20 10:31:39.225 2024-02-20 10:31:39.225 18900 TIP 432269 1960 6009347 2024-02-20 10:31:56.194 2024-02-20 10:31:56.194 10000 FEE 432331 15119 6009348 2024-02-20 10:32:03.2 2024-02-20 10:32:03.2 1000 STREAM 141924 889 6009351 2024-02-20 10:33:03.167 2024-02-20 10:33:03.167 1000 STREAM 141924 14818 6009353 2024-02-20 10:34:03.152 2024-02-20 10:34:03.152 1000 STREAM 141924 960 6009354 2024-02-20 10:34:27.294 2024-02-20 10:34:27.294 12800 FEE 430942 19511 6009355 2024-02-20 10:34:27.294 2024-02-20 10:34:27.294 115200 TIP 430942 18897 6009358 2024-02-20 10:35:03.164 2024-02-20 10:35:03.164 1000 STREAM 141924 18945 6009359 2024-02-20 10:35:05.041 2024-02-20 10:35:05.041 12800 FEE 431921 2013 6009360 2024-02-20 10:35:05.041 2024-02-20 10:35:05.041 115200 TIP 431921 21044 6009363 2024-02-20 10:36:03.271 2024-02-20 10:36:03.271 1000 STREAM 141924 1959 6009364 2024-02-20 10:36:11.964 2024-02-20 10:36:11.964 1000 FEE 432335 18473 6009365 2024-02-20 10:37:03.291 2024-02-20 10:37:03.291 1000 STREAM 141924 4167 6009369 2024-02-20 10:38:03.198 2024-02-20 10:38:03.198 1000 STREAM 141924 7983 6009374 2024-02-20 10:38:54.592 2024-02-20 10:38:54.592 100000 FEE 432337 1534 6009376 2024-02-20 10:39:03.315 2024-02-20 10:39:03.315 1000 STREAM 141924 20015 6009382 2024-02-20 10:40:03.355 2024-02-20 10:40:03.355 1000 STREAM 141924 1549 6009383 2024-02-20 10:40:19.162 2024-02-20 10:40:19.162 0 FEE 432334 1135 6009385 2024-02-20 10:41:03.357 2024-02-20 10:41:03.357 1000 STREAM 141924 20340 6009386 2024-02-20 10:42:03.356 2024-02-20 10:42:03.356 1000 STREAM 141924 16724 6009388 2024-02-20 10:43:03.366 2024-02-20 10:43:03.366 1000 STREAM 141924 19235 6009389 2024-02-20 10:44:03.366 2024-02-20 10:44:03.366 1000 STREAM 141924 19038 6009390 2024-02-20 10:44:07.833 2024-02-20 10:44:07.833 21000 FEE 432338 5578 6009391 2024-02-20 10:45:03.375 2024-02-20 10:45:03.375 1000 STREAM 141924 9107 6009392 2024-02-20 10:46:03.379 2024-02-20 10:46:03.379 1000 STREAM 141924 1784 6009393 2024-02-20 10:46:19.346 2024-02-20 10:46:19.346 10000 FEE 432339 17184 6009398 2024-02-20 10:47:03.366 2024-02-20 10:47:03.366 1000 STREAM 141924 684 6009399 2024-02-20 10:48:03.322 2024-02-20 10:48:03.322 1000 STREAM 141924 16301 6009401 2024-02-20 10:49:03.407 2024-02-20 10:49:03.407 1000 STREAM 141924 21263 6009402 2024-02-20 10:50:03.358 2024-02-20 10:50:03.358 1000 STREAM 141924 1751 6009407 2024-02-20 10:51:03.339 2024-02-20 10:51:03.339 1000 STREAM 141924 925 6009408 2024-02-20 10:52:03.348 2024-02-20 10:52:03.348 1000 STREAM 141924 9184 6009409 2024-02-20 10:53:03.36 2024-02-20 10:53:03.36 1000 STREAM 141924 21523 6009410 2024-02-20 10:54:03.355 2024-02-20 10:54:03.355 1000 STREAM 141924 12277 6009411 2024-02-20 10:55:03.357 2024-02-20 10:55:03.357 1000 STREAM 141924 1737 6009412 2024-02-20 10:56:03.359 2024-02-20 10:56:03.359 1000 STREAM 141924 21072 6009413 2024-02-20 10:57:03.37 2024-02-20 10:57:03.37 1000 STREAM 141924 12422 6009417 2024-02-20 10:58:03.463 2024-02-20 10:58:03.463 1000 STREAM 141924 16939 6009418 2024-02-20 10:59:03.434 2024-02-20 10:59:03.434 1000 STREAM 141924 9920 6009421 2024-02-20 11:00:03.468 2024-02-20 11:00:03.468 1000 STREAM 141924 717 6009423 2024-02-20 11:00:30.326 2024-02-20 11:00:30.326 10000 FEE 430593 1584 6009424 2024-02-20 11:00:30.326 2024-02-20 11:00:30.326 90000 TIP 430593 6030 6009428 2024-02-20 11:01:03.451 2024-02-20 11:01:03.451 1000 STREAM 141924 18016 6009434 2024-02-20 11:01:18.283 2024-02-20 11:01:18.283 2100 FEE 432342 21042 6009435 2024-02-20 11:01:18.283 2024-02-20 11:01:18.283 18900 TIP 432342 21044 6009443 2024-02-20 11:02:03.453 2024-02-20 11:02:03.453 1000 STREAM 141924 19976 6009446 2024-02-20 11:03:03.467 2024-02-20 11:03:03.467 1000 STREAM 141924 16598 6009449 2024-02-20 11:03:05.993 2024-02-20 11:03:05.993 1000 FEE 432350 7766 6009454 2024-02-20 11:03:47.556 2024-02-20 11:03:47.556 12800 FEE 398085 18923 6009455 2024-02-20 11:03:47.556 2024-02-20 11:03:47.556 115200 TIP 398085 19507 6009459 2024-02-20 11:04:03.415 2024-02-20 11:04:03.415 1000 STREAM 141924 629 6009461 2024-02-20 11:05:03.474 2024-02-20 11:05:03.474 1000 STREAM 141924 12609 6009468 2024-02-20 11:06:03.407 2024-02-20 11:06:03.407 1000 STREAM 141924 2402 6009473 2024-02-20 11:07:03.412 2024-02-20 11:07:03.412 1000 STREAM 141924 21338 6009476 2024-02-20 11:08:03.535 2024-02-20 11:08:03.535 1000 STREAM 141924 11288 6009478 2024-02-20 11:09:03.541 2024-02-20 11:09:03.541 1000 STREAM 141924 2347 6009479 2024-02-20 11:10:03.427 2024-02-20 11:10:03.427 1000 STREAM 141924 12102 6009482 2024-02-20 11:11:03.431 2024-02-20 11:11:03.431 1000 STREAM 141924 19016 6009484 2024-02-20 11:12:03.435 2024-02-20 11:12:03.435 1000 STREAM 141924 18675 6009485 2024-02-20 11:13:03.431 2024-02-20 11:13:03.431 1000 STREAM 141924 681 6009488 2024-02-20 11:14:03.434 2024-02-20 11:14:03.434 1000 STREAM 141924 14552 6009492 2024-02-20 11:15:03.458 2024-02-20 11:15:03.458 1000 STREAM 141924 19652 6009495 2024-02-20 11:16:03.449 2024-02-20 11:16:03.449 1000 STREAM 141924 1488 6009496 2024-02-20 11:16:19.059 2024-02-20 11:16:19.059 1000 FEE 432168 19043 6009497 2024-02-20 11:16:19.059 2024-02-20 11:16:19.059 9000 TIP 432168 18309 6009500 2024-02-20 11:17:03.449 2024-02-20 11:17:03.449 1000 STREAM 141924 1745 6009505 2024-02-20 11:18:03.458 2024-02-20 11:18:03.458 1000 STREAM 141924 20852 6009508 2024-02-20 11:19:03.471 2024-02-20 11:19:03.471 1000 STREAM 141924 19494 6009509 2024-02-20 11:20:03.478 2024-02-20 11:20:03.478 1000 STREAM 141924 21116 6009512 2024-02-20 11:21:03.477 2024-02-20 11:21:03.477 1000 STREAM 141924 21329 6009514 2024-02-20 11:22:03.5 2024-02-20 11:22:03.5 1000 STREAM 141924 15408 6009515 2024-02-20 11:22:46.436 2024-02-20 11:22:46.436 2100 FEE 432337 1490 6009516 2024-02-20 11:22:46.436 2024-02-20 11:22:46.436 18900 TIP 432337 19533 6009517 2024-02-20 11:23:03.501 2024-02-20 11:23:03.501 1000 STREAM 141924 6191 6009524 2024-02-20 11:23:43.204 2024-02-20 11:23:43.204 1000 FEE 432367 8074 6009525 2024-02-20 11:24:03.507 2024-02-20 11:24:03.507 1000 STREAM 141924 732 6009529 2024-02-20 11:25:03.51 2024-02-20 11:25:03.51 1000 STREAM 141924 21292 6009532 2024-02-20 11:26:03.525 2024-02-20 11:26:03.525 1000 STREAM 141924 2151 6009533 2024-02-20 11:26:07.941 2024-02-20 11:26:07.941 10000 FEE 432368 16282 6009534 2024-02-20 11:26:07.941 2024-02-20 11:26:07.941 90000 TIP 432368 623 6009535 2024-02-20 11:27:03.527 2024-02-20 11:27:03.527 1000 STREAM 141924 20973 6009536 2024-02-20 11:27:21.322 2024-02-20 11:27:21.322 1000 FEE 432371 10063 6009537 2024-02-20 11:28:03.522 2024-02-20 11:28:03.522 1000 STREAM 141924 18403 6009539 2024-02-20 11:29:03.533 2024-02-20 11:29:03.533 1000 STREAM 141924 21485 6009540 2024-02-20 11:30:03.536 2024-02-20 11:30:03.536 1000 STREAM 141924 18170 6009544 2024-02-20 11:31:03.528 2024-02-20 11:31:03.528 1000 STREAM 141924 21405 6009545 2024-02-20 11:32:03.525 2024-02-20 11:32:03.525 1000 STREAM 141924 17446 6009550 2024-02-20 11:33:03.536 2024-02-20 11:33:03.536 1000 STREAM 141924 6555 6009552 2024-02-20 11:34:03.53 2024-02-20 11:34:03.53 1000 STREAM 141924 9036 6009558 2024-02-20 11:35:03.536 2024-02-20 11:35:03.536 1000 STREAM 141924 11897 6009559 2024-02-20 11:36:03.537 2024-02-20 11:36:03.537 1000 STREAM 141924 9169 6009562 2024-02-20 11:37:03.803 2024-02-20 11:37:03.803 1000 STREAM 141924 20481 6009564 2024-02-20 11:38:03.797 2024-02-20 11:38:03.797 1000 STREAM 141924 20892 6009568 2024-02-20 11:39:03.803 2024-02-20 11:39:03.803 1000 STREAM 141924 8385 6009570 2024-02-20 11:40:03.841 2024-02-20 11:40:03.841 1000 STREAM 141924 8168 6009572 2024-02-20 11:41:03.828 2024-02-20 11:41:03.828 1000 STREAM 141924 21242 6009574 2024-02-20 11:42:03.791 2024-02-20 11:42:03.791 1000 STREAM 141924 9611 6009575 2024-02-20 11:43:03.817 2024-02-20 11:43:03.817 1000 STREAM 141924 21365 6009711 2024-02-20 12:10:02.653 2024-02-20 12:10:02.653 1000 STREAM 141924 15094 6009721 2024-02-20 12:11:02.682 2024-02-20 12:11:02.682 1000 STREAM 141924 2264 6009726 2024-02-20 12:13:02.655 2024-02-20 12:13:02.655 1000 STREAM 141924 11776 6009733 2024-02-20 12:15:02.698 2024-02-20 12:15:02.698 1000 STREAM 141924 18714 6009739 2024-02-20 12:16:02.715 2024-02-20 12:16:02.715 1000 STREAM 141924 20254 6009750 2024-02-20 12:18:02.723 2024-02-20 12:18:02.723 1000 STREAM 141924 19843 6009752 2024-02-20 12:20:02.762 2024-02-20 12:20:02.762 1000 STREAM 141924 19465 6009810 2024-02-20 12:23:02.747 2024-02-20 12:23:02.747 1000 STREAM 141924 651 6009845 2024-02-20 12:31:02.79 2024-02-20 12:31:02.79 1000 STREAM 141924 16357 6009856 2024-02-20 12:33:02.834 2024-02-20 12:33:02.834 1000 STREAM 141924 13781 6009868 2024-02-20 12:35:02.853 2024-02-20 12:35:02.853 1000 STREAM 141924 11527 6009874 2024-02-20 12:36:02.85 2024-02-20 12:36:02.85 1000 STREAM 141924 11609 6009886 2024-02-20 12:39:02.848 2024-02-20 12:39:02.848 1000 STREAM 141924 11417 6009895 2024-02-20 12:40:02.87 2024-02-20 12:40:02.87 1000 STREAM 141924 20162 6009908 2024-02-20 12:42:02.867 2024-02-20 12:42:02.867 1000 STREAM 141924 683 6009914 2024-02-20 12:43:02.865 2024-02-20 12:43:02.865 1000 STREAM 141924 21417 6009576 2024-02-20 11:43:52.208 2024-02-20 11:43:52.208 1000 FEE 432382 4776 6009596 2024-02-20 11:45:02.595 2024-02-20 11:45:02.595 100 FEE 422793 11789 6009597 2024-02-20 11:45:02.595 2024-02-20 11:45:02.595 900 TIP 422793 17001 6009600 2024-02-20 11:45:04.091 2024-02-20 11:45:04.091 1000 STREAM 141924 1291 6009602 2024-02-20 11:46:04.095 2024-02-20 11:46:04.095 1000 STREAM 141924 989 6009603 2024-02-20 11:46:41.63 2024-02-20 11:46:41.63 1000 FEE 432384 6260 6009604 2024-02-20 11:47:04.096 2024-02-20 11:47:04.096 1000 STREAM 141924 1162 6009608 2024-02-20 11:48:03.716 2024-02-20 11:48:03.716 1000 STREAM 141924 18896 6009609 2024-02-20 11:49:03.73 2024-02-20 11:49:03.73 1000 STREAM 141924 761 6009612 2024-02-20 11:50:03.785 2024-02-20 11:50:03.785 1000 STREAM 141924 13903 6009614 2024-02-20 11:50:36.95 2024-02-20 11:50:36.95 5000 FEE 432383 11498 6009615 2024-02-20 11:50:36.95 2024-02-20 11:50:36.95 45000 TIP 432383 20596 6009624 2024-02-20 11:50:56.825 2024-02-20 11:50:56.825 1000 FEE 432387 18923 6009628 2024-02-20 11:51:39.417 2024-02-20 11:51:39.417 1000 FEE 432244 6765 6009629 2024-02-20 11:51:39.417 2024-02-20 11:51:39.417 9000 TIP 432244 14688 6009638 2024-02-20 11:56:03.836 2024-02-20 11:56:03.836 1000 STREAM 141924 19843 6009650 2024-02-20 11:59:04.14 2024-02-20 11:59:04.14 1000 STREAM 141924 17713 6009656 2024-02-20 12:00:04.197 2024-02-20 12:00:04.197 1000 STREAM 141924 7869 6009661 2024-02-20 12:00:16.756 2024-02-20 12:00:16.756 2100 FEE 432394 21342 6009662 2024-02-20 12:00:16.756 2024-02-20 12:00:16.756 18900 TIP 432394 811 6009666 2024-02-20 12:02:04.152 2024-02-20 12:02:04.152 1000 STREAM 141924 21155 6009678 2024-02-20 12:04:04.332 2024-02-20 12:04:04.332 1000 STREAM 141924 15088 6009688 2024-02-20 12:07:04.165 2024-02-20 12:07:04.165 1000 STREAM 141924 19841 6009689 2024-02-20 12:08:02.172 2024-02-20 12:08:02.172 1000 STREAM 141924 19929 6009755 2024-02-20 12:20:53.098 2024-02-20 12:20:53.098 3300 FEE 430642 18819 6009756 2024-02-20 12:20:53.098 2024-02-20 12:20:53.098 29700 TIP 430642 2293 6009778 2024-02-20 12:22:04.461 2024-02-20 12:22:04.461 3300 FEE 430642 4819 6009779 2024-02-20 12:22:04.461 2024-02-20 12:22:04.461 29700 TIP 430642 7395 6009802 2024-02-20 12:22:41.958 2024-02-20 12:22:41.958 2100 FEE 432378 5112 6009803 2024-02-20 12:22:41.958 2024-02-20 12:22:41.958 18900 TIP 432378 16638 6009870 2024-02-20 12:35:29.78 2024-02-20 12:35:29.78 4000 FEE 431003 18372 6009871 2024-02-20 12:35:29.78 2024-02-20 12:35:29.78 36000 TIP 431003 14906 6009889 2024-02-20 12:39:35.333 2024-02-20 12:39:35.333 1000 FEE 432311 20980 6009890 2024-02-20 12:39:35.333 2024-02-20 12:39:35.333 9000 TIP 432311 15703 6009898 2024-02-20 12:40:10.397 2024-02-20 12:40:10.397 1000 FEE 432426 21620 6009902 2024-02-20 12:40:36.315 2024-02-20 12:40:36.315 6300 FEE 432348 19857 6009903 2024-02-20 12:40:36.315 2024-02-20 12:40:36.315 56700 TIP 432348 18897 6009929 2024-02-20 12:46:51.362 2024-02-20 12:46:51.362 5000 FEE 432392 21427 6009930 2024-02-20 12:46:51.362 2024-02-20 12:46:51.362 45000 TIP 432392 19907 6009933 2024-02-20 12:46:53.373 2024-02-20 12:46:53.373 5000 FEE 432408 696 6009934 2024-02-20 12:46:53.373 2024-02-20 12:46:53.373 45000 TIP 432408 1105 6009941 2024-02-20 12:48:14.473 2024-02-20 12:48:14.473 1000 FEE 432430 18138 6009944 2024-02-20 12:48:21.482 2024-02-20 12:48:21.482 10000 FEE 432431 7818 6009953 2024-02-20 12:50:19.495 2024-02-20 12:50:19.495 9000 FEE 432251 20109 6009954 2024-02-20 12:50:19.495 2024-02-20 12:50:19.495 81000 TIP 432251 635 6009957 2024-02-20 12:50:51.388 2024-02-20 12:50:51.388 100 FEE 432395 17392 6009958 2024-02-20 12:50:51.388 2024-02-20 12:50:51.388 900 TIP 432395 13767 6009971 2024-02-20 12:52:35.491 2024-02-20 12:52:35.491 9000 FEE 432308 859 6009972 2024-02-20 12:52:35.491 2024-02-20 12:52:35.491 81000 TIP 432308 1389 6009986 2024-02-20 12:54:50.195 2024-02-20 12:54:50.195 100 FEE 432337 7395 6009987 2024-02-20 12:54:50.195 2024-02-20 12:54:50.195 900 TIP 432337 21481 6010002 2024-02-20 12:55:45.545 2024-02-20 12:55:45.545 900 FEE 432361 17331 6010003 2024-02-20 12:55:45.545 2024-02-20 12:55:45.545 8100 TIP 432361 19494 6010006 2024-02-20 12:56:11.739 2024-02-20 12:56:11.739 100000 FEE 432435 1213 6010007 2024-02-20 12:56:39.702 2024-02-20 12:56:39.702 100 FEE 432400 18139 6010008 2024-02-20 12:56:39.702 2024-02-20 12:56:39.702 900 TIP 432400 2711 6010012 2024-02-20 12:57:02.711 2024-02-20 12:57:02.711 100 FEE 432389 12930 6010013 2024-02-20 12:57:02.711 2024-02-20 12:57:02.711 900 TIP 432389 1512 6010024 2024-02-20 12:57:36.637 2024-02-20 12:57:36.637 900 FEE 432410 20602 6010025 2024-02-20 12:57:36.637 2024-02-20 12:57:36.637 8100 TIP 432410 2264 6010035 2024-02-20 12:58:10.382 2024-02-20 12:58:10.382 900 FEE 432419 21021 6010036 2024-02-20 12:58:10.382 2024-02-20 12:58:10.382 8100 TIP 432419 21287 6010046 2024-02-20 12:59:43.516 2024-02-20 12:59:43.516 5000 FEE 432390 6616 6010047 2024-02-20 12:59:43.516 2024-02-20 12:59:43.516 45000 TIP 432390 692 6010089 2024-02-20 13:04:51.424 2024-02-20 13:04:51.424 2100 FEE 432320 7654 6010090 2024-02-20 13:04:51.424 2024-02-20 13:04:51.424 18900 TIP 432320 4574 6010094 2024-02-20 13:05:07.037 2024-02-20 13:05:07.037 2100 FEE 432186 1465 6010095 2024-02-20 13:05:07.037 2024-02-20 13:05:07.037 18900 TIP 432186 21563 6010098 2024-02-20 13:05:11.986 2024-02-20 13:05:11.986 1000 FEE 430478 21356 6010099 2024-02-20 13:05:11.986 2024-02-20 13:05:11.986 9000 TIP 430478 17041 6010120 2024-02-20 13:07:55.914 2024-02-20 13:07:55.914 7000 FEE 432449 17541 6010121 2024-02-20 13:07:55.914 2024-02-20 13:07:55.914 63000 TIP 432449 2330 6010129 2024-02-20 13:11:27.258 2024-02-20 13:11:27.258 1000 FEE 432452 910 6010134 2024-02-20 13:12:50.235 2024-02-20 13:12:50.235 2100 FEE 432348 17552 6010135 2024-02-20 13:12:50.235 2024-02-20 13:12:50.235 18900 TIP 432348 725 6010152 2024-02-20 13:14:17.216 2024-02-20 13:14:17.216 2300 FEE 432311 8423 6010153 2024-02-20 13:14:17.216 2024-02-20 13:14:17.216 20700 TIP 432311 19016 6010158 2024-02-20 13:14:17.655 2024-02-20 13:14:17.655 2300 FEE 432311 8796 6010159 2024-02-20 13:14:17.655 2024-02-20 13:14:17.655 20700 TIP 432311 18673 6010160 2024-02-20 13:14:17.786 2024-02-20 13:14:17.786 2300 FEE 432311 15160 6010161 2024-02-20 13:14:17.786 2024-02-20 13:14:17.786 20700 TIP 432311 21208 6010174 2024-02-20 13:14:19.019 2024-02-20 13:14:19.019 500 FEE 432311 1564 6010175 2024-02-20 13:14:19.019 2024-02-20 13:14:19.019 4500 TIP 432311 3417 6010188 2024-02-20 13:14:20.851 2024-02-20 13:14:20.851 2300 FEE 432311 8544 6010189 2024-02-20 13:14:20.851 2024-02-20 13:14:20.851 20700 TIP 432311 5425 6010192 2024-02-20 13:14:21.13 2024-02-20 13:14:21.13 2300 FEE 432311 13753 6010193 2024-02-20 13:14:21.13 2024-02-20 13:14:21.13 20700 TIP 432311 2338 6010196 2024-02-20 13:14:21.455 2024-02-20 13:14:21.455 2300 FEE 432311 20353 6010197 2024-02-20 13:14:21.455 2024-02-20 13:14:21.455 20700 TIP 432311 1515 6010204 2024-02-20 13:14:22.588 2024-02-20 13:14:22.588 2300 FEE 432311 14260 6010205 2024-02-20 13:14:22.588 2024-02-20 13:14:22.588 20700 TIP 432311 21263 6010226 2024-02-20 13:14:24.938 2024-02-20 13:14:24.938 2300 FEE 432311 20301 6010227 2024-02-20 13:14:24.938 2024-02-20 13:14:24.938 20700 TIP 432311 822 6010248 2024-02-20 13:15:26.077 2024-02-20 13:15:26.077 2300 FEE 432311 20026 6010249 2024-02-20 13:15:26.077 2024-02-20 13:15:26.077 20700 TIP 432311 2029 6010252 2024-02-20 13:15:26.34 2024-02-20 13:15:26.34 2300 FEE 432311 11873 6010253 2024-02-20 13:15:26.34 2024-02-20 13:15:26.34 20700 TIP 432311 8004 6010278 2024-02-20 13:15:29.027 2024-02-20 13:15:29.027 2300 FEE 432311 20706 6010279 2024-02-20 13:15:29.027 2024-02-20 13:15:29.027 20700 TIP 432311 18641 6010282 2024-02-20 13:15:29.237 2024-02-20 13:15:29.237 2300 FEE 432311 9084 6010283 2024-02-20 13:15:29.237 2024-02-20 13:15:29.237 20700 TIP 432311 20220 6010298 2024-02-20 13:15:30.571 2024-02-20 13:15:30.571 2300 FEE 432311 16867 6010299 2024-02-20 13:15:30.571 2024-02-20 13:15:30.571 20700 TIP 432311 1478 6010306 2024-02-20 13:15:32.072 2024-02-20 13:15:32.072 2300 FEE 432311 16653 6010307 2024-02-20 13:15:32.072 2024-02-20 13:15:32.072 20700 TIP 432311 18470 6010312 2024-02-20 13:15:48.786 2024-02-20 13:15:48.786 1600 FEE 432135 974 6010313 2024-02-20 13:15:48.786 2024-02-20 13:15:48.786 14400 TIP 432135 17727 6009625 2024-02-20 11:51:03.78 2024-02-20 11:51:03.78 1000 STREAM 141924 13782 6009631 2024-02-20 11:52:03.784 2024-02-20 11:52:03.784 1000 STREAM 141924 19381 6009634 2024-02-20 11:53:03.809 2024-02-20 11:53:03.809 1000 STREAM 141924 3417 6009635 2024-02-20 11:54:03.822 2024-02-20 11:54:03.822 1000 STREAM 141924 5852 6009637 2024-02-20 11:55:03.851 2024-02-20 11:55:03.851 1000 STREAM 141924 20006 6009645 2024-02-20 11:57:04.131 2024-02-20 11:57:04.131 1000 STREAM 141924 18139 6009647 2024-02-20 11:58:04.135 2024-02-20 11:58:04.135 1000 STREAM 141924 5017 6009663 2024-02-20 12:01:04.164 2024-02-20 12:01:04.164 1000 STREAM 141924 18994 6009667 2024-02-20 12:03:04.174 2024-02-20 12:03:04.174 1000 STREAM 141924 1803 6009680 2024-02-20 12:05:04.149 2024-02-20 12:05:04.149 1000 STREAM 141924 19096 6009683 2024-02-20 12:06:02.157 2024-02-20 12:06:02.157 1000 STREAM 141924 11776 6009700 2024-02-20 12:09:03.973 2024-02-20 12:09:03.973 1000 STREAM 141924 14552 6009725 2024-02-20 12:12:02.643 2024-02-20 12:12:02.643 1000 STREAM 141924 2748 6009729 2024-02-20 12:14:04.222 2024-02-20 12:14:04.222 1000 STREAM 141924 19864 6009751 2024-02-20 12:19:02.747 2024-02-20 12:19:02.747 1000 STREAM 141924 7903 6009761 2024-02-20 12:21:02.735 2024-02-20 12:21:02.735 1000 STREAM 141924 21361 6009777 2024-02-20 12:22:02.76 2024-02-20 12:22:02.76 1000 STREAM 141924 12422 6009811 2024-02-20 12:24:02.299 2024-02-20 12:24:02.299 1000 STREAM 141924 15326 6009824 2024-02-20 12:26:02.457 2024-02-20 12:26:02.457 1000 STREAM 141924 15732 6009827 2024-02-20 12:27:02.345 2024-02-20 12:27:02.345 1000 STREAM 141924 11018 6009835 2024-02-20 12:28:02.771 2024-02-20 12:28:02.771 1000 STREAM 141924 16336 6009847 2024-02-20 12:32:02.788 2024-02-20 12:32:02.788 1000 STREAM 141924 18116 6009861 2024-02-20 12:34:02.822 2024-02-20 12:34:02.822 1000 STREAM 141924 11145 6009877 2024-02-20 12:37:02.4 2024-02-20 12:37:02.4 1000 STREAM 141924 20062 6009904 2024-02-20 12:41:02.87 2024-02-20 12:41:02.87 1000 STREAM 141924 20090 6009937 2024-02-20 12:47:02.445 2024-02-20 12:47:02.445 1000 STREAM 141924 12218 6009940 2024-02-20 12:48:02.917 2024-02-20 12:48:02.917 1000 STREAM 141924 687 6009948 2024-02-20 12:50:02.482 2024-02-20 12:50:02.482 1000 STREAM 141924 826 6009959 2024-02-20 12:51:02.49 2024-02-20 12:51:02.49 1000 STREAM 141924 9336 6009973 2024-02-20 12:53:02.503 2024-02-20 12:53:02.503 1000 STREAM 141924 1624 6009979 2024-02-20 12:54:02.49 2024-02-20 12:54:02.49 1000 STREAM 141924 19138 6009992 2024-02-20 12:55:02.494 2024-02-20 12:55:02.494 1000 STREAM 141924 14278 6010004 2024-02-20 12:56:02.503 2024-02-20 12:56:02.503 1000 STREAM 141924 21522 6010045 2024-02-20 12:59:02.514 2024-02-20 12:59:02.514 1000 STREAM 141924 8713 6010073 2024-02-20 13:02:02.546 2024-02-20 13:02:02.546 1000 STREAM 141924 1237 6010076 2024-02-20 13:04:02.556 2024-02-20 13:04:02.556 1000 STREAM 141924 634 6010093 2024-02-20 13:05:02.549 2024-02-20 13:05:02.549 1000 STREAM 141924 18072 6010101 2024-02-20 13:06:02.556 2024-02-20 13:06:02.556 1000 STREAM 141924 19403 6010112 2024-02-20 13:07:02.559 2024-02-20 13:07:02.559 1000 STREAM 141924 9796 6010122 2024-02-20 13:08:02.57 2024-02-20 13:08:02.57 1000 STREAM 141924 3544 6010126 2024-02-20 13:10:02.553 2024-02-20 13:10:02.553 1000 STREAM 141924 9969 6010128 2024-02-20 13:11:02.557 2024-02-20 13:11:02.557 1000 STREAM 141924 19785 6010133 2024-02-20 13:12:02.554 2024-02-20 13:12:02.554 1000 STREAM 141924 2577 6010143 2024-02-20 13:14:02.577 2024-02-20 13:14:02.577 1000 STREAM 141924 8541 6010231 2024-02-20 13:15:02.62 2024-02-20 13:15:02.62 1000 STREAM 141924 1162 6010314 2024-02-20 13:16:02.598 2024-02-20 13:16:02.598 1000 STREAM 141924 11158 6010363 2024-02-20 13:18:02.592 2024-02-20 13:18:02.592 1000 STREAM 141924 9246 6010401 2024-02-20 13:21:02.591 2024-02-20 13:21:02.591 1000 STREAM 141924 17797 6010411 2024-02-20 13:23:02.598 2024-02-20 13:23:02.598 1000 STREAM 141924 675 6010415 2024-02-20 13:24:02.598 2024-02-20 13:24:02.598 1000 STREAM 141924 20599 6010421 2024-02-20 13:26:02.599 2024-02-20 13:26:02.599 1000 STREAM 141924 12220 6009727 2024-02-20 12:14:02.879 2024-02-20 12:14:02.879 1000 FEE 432135 17800 6009728 2024-02-20 12:14:02.879 2024-02-20 12:14:02.879 9000 TIP 432135 1006 6009732 2024-02-20 12:14:41.326 2024-02-20 12:14:41.326 1000 FEE 432408 18601 6009741 2024-02-20 12:17:04.037 2024-02-20 12:17:04.037 1000 STREAM 141924 20208 6009743 2024-02-20 12:17:25.53 2024-02-20 12:17:25.53 1000 FEE 432412 736 6009753 2024-02-20 12:20:27.639 2024-02-20 12:20:27.639 1000 FEE 432411 20551 6009754 2024-02-20 12:20:27.639 2024-02-20 12:20:27.639 9000 TIP 432411 20073 6009796 2024-02-20 12:22:32.313 2024-02-20 12:22:32.313 3300 FEE 430642 18524 6009797 2024-02-20 12:22:32.313 2024-02-20 12:22:32.313 29700 TIP 430642 16229 6009800 2024-02-20 12:22:38.162 2024-02-20 12:22:38.162 2100 FEE 432400 18449 6009801 2024-02-20 12:22:38.162 2024-02-20 12:22:38.162 18900 TIP 432400 3729 6009821 2024-02-20 12:24:49.562 2024-02-20 12:24:49.562 1000 FEE 432415 20023 6009829 2024-02-20 12:27:25.416 2024-02-20 12:27:25.416 100 FEE 432243 21398 6009830 2024-02-20 12:27:25.416 2024-02-20 12:27:25.416 900 TIP 432243 17984 6009841 2024-02-20 12:29:25.225 2024-02-20 12:29:25.225 4000 FEE 432416 12744 6009842 2024-02-20 12:29:25.225 2024-02-20 12:29:25.225 36000 TIP 432416 9348 6009844 2024-02-20 12:30:04.13 2024-02-20 12:30:04.13 1000 STREAM 141924 925 6009866 2024-02-20 12:34:53.389 2024-02-20 12:34:53.389 10000 FEE 432247 20015 6009867 2024-02-20 12:34:53.389 2024-02-20 12:34:53.389 90000 TIP 432247 16970 6009878 2024-02-20 12:38:04.132 2024-02-20 12:38:04.132 1000 STREAM 141924 20058 6009881 2024-02-20 12:38:17.97 2024-02-20 12:38:17.97 1000 FEE 431852 18941 6009882 2024-02-20 12:38:17.97 2024-02-20 12:38:17.97 9000 TIP 431852 2224 6009885 2024-02-20 12:38:45.138 2024-02-20 12:38:45.138 1000 FEE 432425 20663 6009896 2024-02-20 12:40:04.606 2024-02-20 12:40:04.606 1000 FEE 431844 21145 6009897 2024-02-20 12:40:04.606 2024-02-20 12:40:04.606 9000 TIP 431844 9084 6009899 2024-02-20 12:40:24.729 2024-02-20 12:40:24.729 1000 FEE 431844 1585 6009900 2024-02-20 12:40:24.729 2024-02-20 12:40:24.729 9000 TIP 431844 19346 6009912 2024-02-20 12:42:40.974 2024-02-20 12:42:40.974 1000 FEE 432424 21157 6009913 2024-02-20 12:42:40.974 2024-02-20 12:42:40.974 9000 TIP 432424 16059 6009919 2024-02-20 12:45:39.685 2024-02-20 12:45:39.685 100000 FEE 432428 1000 6009946 2024-02-20 12:49:33.174 2024-02-20 12:49:33.174 10000 FEE 432378 768 6009947 2024-02-20 12:49:33.174 2024-02-20 12:49:33.174 90000 TIP 432378 956 6009951 2024-02-20 12:50:06.982 2024-02-20 12:50:06.982 900 FEE 432251 8416 6009952 2024-02-20 12:50:06.982 2024-02-20 12:50:06.982 8100 TIP 432251 5646 6009960 2024-02-20 12:51:22.235 2024-02-20 12:51:22.235 100 FEE 432259 2256 6009961 2024-02-20 12:51:22.235 2024-02-20 12:51:22.235 900 TIP 432259 14939 6009974 2024-02-20 12:53:12.418 2024-02-20 12:53:12.418 100 FEE 432311 12562 6009975 2024-02-20 12:53:12.418 2024-02-20 12:53:12.418 900 TIP 432311 827 6009982 2024-02-20 12:54:19.941 2024-02-20 12:54:19.941 900 FEE 432320 20585 6009983 2024-02-20 12:54:19.941 2024-02-20 12:54:19.941 8100 TIP 432320 1773 6010000 2024-02-20 12:55:43.443 2024-02-20 12:55:43.443 100 FEE 432361 19044 6010001 2024-02-20 12:55:43.443 2024-02-20 12:55:43.443 900 TIP 432361 1426 6010016 2024-02-20 12:57:14.464 2024-02-20 12:57:14.464 100 FEE 432404 636 6010017 2024-02-20 12:57:14.464 2024-02-20 12:57:14.464 900 TIP 432404 2196 6010020 2024-02-20 12:57:26.908 2024-02-20 12:57:26.908 9000 FEE 432404 10530 6010021 2024-02-20 12:57:26.908 2024-02-20 12:57:26.908 81000 TIP 432404 13781 6010026 2024-02-20 12:57:48.695 2024-02-20 12:57:48.695 100 FEE 432411 20646 6010027 2024-02-20 12:57:48.695 2024-02-20 12:57:48.695 900 TIP 432411 4313 6010037 2024-02-20 12:58:12.475 2024-02-20 12:58:12.475 9000 FEE 432419 21485 6010038 2024-02-20 12:58:12.475 2024-02-20 12:58:12.475 81000 TIP 432419 20555 6010059 2024-02-20 13:01:04.09 2024-02-20 13:01:04.09 1000 FEE 432439 10094 6010065 2024-02-20 13:01:22.583 2024-02-20 13:01:22.583 100 FEE 432135 21003 6010066 2024-02-20 13:01:22.583 2024-02-20 13:01:22.583 900 TIP 432135 16059 6010067 2024-02-20 13:01:22.808 2024-02-20 13:01:22.808 900 FEE 432135 4831 6010068 2024-02-20 13:01:22.808 2024-02-20 13:01:22.808 8100 TIP 432135 8133 6010078 2024-02-20 13:04:21.097 2024-02-20 13:04:21.097 10000 FEE 432316 12049 6010079 2024-02-20 13:04:21.097 2024-02-20 13:04:21.097 90000 TIP 432316 18188 6010083 2024-02-20 13:04:43.549 2024-02-20 13:04:43.549 2100 FEE 432417 21441 6010084 2024-02-20 13:04:43.549 2024-02-20 13:04:43.549 18900 TIP 432417 2327 6010119 2024-02-20 13:07:30.531 2024-02-20 13:07:30.531 1000 FEE 432450 20370 6010130 2024-02-20 13:11:40.419 2024-02-20 13:11:40.419 4100 FEE 432339 6360 6010131 2024-02-20 13:11:40.419 2024-02-20 13:11:40.419 36900 TIP 432339 2016 6010132 2024-02-20 13:11:54.603 2024-02-20 13:11:54.603 100000 FEE 432453 9863 6010182 2024-02-20 13:14:20.128 2024-02-20 13:14:20.128 2300 FEE 432311 20490 6010183 2024-02-20 13:14:20.128 2024-02-20 13:14:20.128 20700 TIP 432311 20799 6010222 2024-02-20 13:14:24.639 2024-02-20 13:14:24.639 2300 FEE 432311 720 6010223 2024-02-20 13:14:24.639 2024-02-20 13:14:24.639 20700 TIP 432311 654 6010224 2024-02-20 13:14:24.79 2024-02-20 13:14:24.79 2300 FEE 432311 696 6010225 2024-02-20 13:14:24.79 2024-02-20 13:14:24.79 20700 TIP 432311 634 6010254 2024-02-20 13:15:26.46 2024-02-20 13:15:26.46 2300 FEE 432311 11942 6010255 2024-02-20 13:15:26.46 2024-02-20 13:15:26.46 20700 TIP 432311 749 6010276 2024-02-20 13:15:28.715 2024-02-20 13:15:28.715 2300 FEE 432311 770 6010277 2024-02-20 13:15:28.715 2024-02-20 13:15:28.715 20700 TIP 432311 9350 6010284 2024-02-20 13:15:29.269 2024-02-20 13:15:29.269 2300 FEE 432311 2525 6010285 2024-02-20 13:15:29.269 2024-02-20 13:15:29.269 20700 TIP 432311 5761 6010286 2024-02-20 13:15:29.388 2024-02-20 13:15:29.388 2300 FEE 432311 1890 6010287 2024-02-20 13:15:29.388 2024-02-20 13:15:29.388 20700 TIP 432311 7583 6010296 2024-02-20 13:15:30.328 2024-02-20 13:15:30.328 2300 FEE 432311 14939 6010297 2024-02-20 13:15:30.328 2024-02-20 13:15:30.328 20700 TIP 432311 7809 6010368 2024-02-20 13:18:07.905 2024-02-20 13:18:07.905 500 FEE 432404 19795 6010369 2024-02-20 13:18:07.905 2024-02-20 13:18:07.905 4500 TIP 432404 4459 6010370 2024-02-20 13:18:08.074 2024-02-20 13:18:08.074 500 FEE 432404 12959 6010371 2024-02-20 13:18:08.074 2024-02-20 13:18:08.074 4500 TIP 432404 17171 6010389 2024-02-20 13:19:21.111 2024-02-20 13:19:21.111 1000 FEE 432460 4064 6010400 2024-02-20 13:20:08.11 2024-02-20 13:20:08.11 10000 FEE 432461 16966 6010417 2024-02-20 13:25:13.571 2024-02-20 13:25:13.571 2100 FEE 431003 21562 6010418 2024-02-20 13:25:13.571 2024-02-20 13:25:13.571 18900 TIP 431003 1652 6010449 2024-02-20 13:30:13.247 2024-02-20 13:30:13.247 100000 DONT_LIKE_THIS 432461 11760 6010478 2024-02-20 13:45:32.892 2024-02-20 13:45:32.892 2100 FEE 432394 16267 6010479 2024-02-20 13:45:32.892 2024-02-20 13:45:32.892 18900 TIP 432394 9705 6010498 2024-02-20 13:49:35.295 2024-02-20 13:49:35.295 100 FEE 431809 13246 6010499 2024-02-20 13:49:35.295 2024-02-20 13:49:35.295 900 TIP 431809 1745 6010504 2024-02-20 13:50:56.894 2024-02-20 13:50:56.894 0 FEE 432473 20681 6010508 2024-02-20 13:51:33.969 2024-02-20 13:51:33.969 200 FEE 432468 3417 6010509 2024-02-20 13:51:33.969 2024-02-20 13:51:33.969 1800 TIP 432468 20152 6010517 2024-02-20 13:53:49.409 2024-02-20 13:53:49.409 1000 FEE 432475 16998 6010536 2024-02-20 13:59:10.872 2024-02-20 13:59:10.872 1000 FEE 432451 17148 6010537 2024-02-20 13:59:10.872 2024-02-20 13:59:10.872 9000 TIP 432451 17183 6010540 2024-02-20 13:59:29.535 2024-02-20 13:59:29.535 5500 FEE 432322 805 6010541 2024-02-20 13:59:29.535 2024-02-20 13:59:29.535 49500 TIP 432322 18138 6010551 2024-02-20 14:00:35.348 2024-02-20 14:00:35.348 1000 FEE 432466 13399 6010552 2024-02-20 14:00:35.348 2024-02-20 14:00:35.348 9000 TIP 432466 2844 6010574 2024-02-20 14:01:22.748 2024-02-20 14:01:22.748 1000 FEE 432259 21263 6010575 2024-02-20 14:01:22.748 2024-02-20 14:01:22.748 9000 TIP 432259 15697 6010600 2024-02-20 14:02:34.057 2024-02-20 14:02:34.057 10000 FEE 432479 9307 6010618 2024-02-20 14:06:51.571 2024-02-20 14:06:51.571 1000 FEE 432485 20840 6010621 2024-02-20 14:07:29.452 2024-02-20 14:07:29.452 100000 FEE 432486 10273 6009791 2024-02-20 12:22:23.806 2024-02-20 12:22:23.806 18900 TIP 432410 10586 6009828 2024-02-20 12:27:05.448 2024-02-20 12:27:05.448 1000 FEE 432417 18119 6009854 2024-02-20 12:32:44.792 2024-02-20 12:32:44.792 5000 FEE 432378 985 6009855 2024-02-20 12:32:44.792 2024-02-20 12:32:44.792 45000 TIP 432378 13204 6009864 2024-02-20 12:34:35.498 2024-02-20 12:34:35.498 200 FEE 430795 763 6009865 2024-02-20 12:34:35.498 2024-02-20 12:34:35.498 1800 TIP 430795 6202 6009887 2024-02-20 12:39:05.596 2024-02-20 12:39:05.596 6300 FEE 431816 18219 6009888 2024-02-20 12:39:05.596 2024-02-20 12:39:05.596 56700 TIP 431816 16447 6009931 2024-02-20 12:46:51.875 2024-02-20 12:46:51.875 5000 FEE 432393 19282 6009932 2024-02-20 12:46:51.875 2024-02-20 12:46:51.875 45000 TIP 432393 19961 6009935 2024-02-20 12:46:53.695 2024-02-20 12:46:53.695 5000 FEE 432409 20187 6009936 2024-02-20 12:46:53.695 2024-02-20 12:46:53.695 45000 TIP 432409 1145 6009938 2024-02-20 12:47:03.153 2024-02-20 12:47:03.153 21000 DONT_LIKE_THIS 432358 688 6009939 2024-02-20 12:47:59.403 2024-02-20 12:47:59.403 1000 FEE 432429 2056 6009942 2024-02-20 12:48:15.599 2024-02-20 12:48:15.599 2100 FEE 432414 6393 6009943 2024-02-20 12:48:15.599 2024-02-20 12:48:15.599 18900 TIP 432414 12516 6009969 2024-02-20 12:52:32.794 2024-02-20 12:52:32.794 900 FEE 432308 826 6009970 2024-02-20 12:52:32.794 2024-02-20 12:52:32.794 8100 TIP 432308 21103 6009978 2024-02-20 12:53:57.169 2024-02-20 12:53:57.169 100000 FEE 432432 20523 6009988 2024-02-20 12:54:50.94 2024-02-20 12:54:50.94 900 FEE 432337 1650 6009989 2024-02-20 12:54:50.94 2024-02-20 12:54:50.94 8100 TIP 432337 4819 6010053 2024-02-20 13:00:58.48 2024-02-20 13:00:58.48 100 FEE 430385 2832 6010054 2024-02-20 13:00:58.48 2024-02-20 13:00:58.48 900 TIP 430385 14385 6010061 2024-02-20 13:01:09.731 2024-02-20 13:01:09.731 90000 FEE 432259 21373 6010062 2024-02-20 13:01:09.731 2024-02-20 13:01:09.731 810000 TIP 432259 14074 6010069 2024-02-20 13:01:27.05 2024-02-20 13:01:27.05 2100 FEE 432430 760 6010070 2024-02-20 13:01:27.05 2024-02-20 13:01:27.05 18900 TIP 432430 730 6010074 2024-02-20 13:02:11.829 2024-02-20 13:02:11.829 1000 FEE 432443 16536 6010091 2024-02-20 13:04:58.126 2024-02-20 13:04:58.126 2100 FEE 432308 1438 6010092 2024-02-20 13:04:58.126 2024-02-20 13:04:58.126 18900 TIP 432308 2724 6010104 2024-02-20 13:06:13.256 2024-02-20 13:06:13.256 2100 FEE 432101 14295 6010105 2024-02-20 13:06:13.256 2024-02-20 13:06:13.256 18900 TIP 432101 1567 6010108 2024-02-20 13:06:20.236 2024-02-20 13:06:20.236 2100 FEE 432170 1723 6010109 2024-02-20 13:06:20.236 2024-02-20 13:06:20.236 18900 TIP 432170 6798 6010138 2024-02-20 13:13:04.613 2024-02-20 13:13:04.613 2100 FEE 432345 664 6010139 2024-02-20 13:13:04.613 2024-02-20 13:13:04.613 18900 TIP 432345 2162 6010144 2024-02-20 13:14:15.965 2024-02-20 13:14:15.965 2300 FEE 432311 14941 6010145 2024-02-20 13:14:15.965 2024-02-20 13:14:15.965 20700 TIP 432311 1624 6010166 2024-02-20 13:14:18.218 2024-02-20 13:14:18.218 2300 FEE 432311 15326 6010167 2024-02-20 13:14:18.218 2024-02-20 13:14:18.218 20700 TIP 432311 9796 6010184 2024-02-20 13:14:20.274 2024-02-20 13:14:20.274 2300 FEE 432311 20015 6010185 2024-02-20 13:14:20.274 2024-02-20 13:14:20.274 20700 TIP 432311 1618 6010230 2024-02-20 13:14:59.697 2024-02-20 13:14:59.697 100000 FEE 432456 20062 6010240 2024-02-20 13:15:25.285 2024-02-20 13:15:25.285 2300 FEE 432311 19785 6010241 2024-02-20 13:15:25.285 2024-02-20 13:15:25.285 20700 TIP 432311 21446 6010280 2024-02-20 13:15:29.163 2024-02-20 13:15:29.163 2300 FEE 432311 6537 6010281 2024-02-20 13:15:29.163 2024-02-20 13:15:29.163 20700 TIP 432311 12139 6010288 2024-02-20 13:15:29.56 2024-02-20 13:15:29.56 2300 FEE 432311 14774 6010289 2024-02-20 13:15:29.56 2024-02-20 13:15:29.56 20700 TIP 432311 19494 6010292 2024-02-20 13:15:29.888 2024-02-20 13:15:29.888 2300 FEE 432311 20168 6010293 2024-02-20 13:15:29.888 2024-02-20 13:15:29.888 20700 TIP 432311 19016 6010315 2024-02-20 13:16:09.317 2024-02-20 13:16:09.317 2300 FEE 432182 17103 6010316 2024-02-20 13:16:09.317 2024-02-20 13:16:09.317 20700 TIP 432182 9796 6010325 2024-02-20 13:16:13.75 2024-02-20 13:16:13.75 2300 FEE 432239 2056 6010326 2024-02-20 13:16:13.75 2024-02-20 13:16:13.75 20700 TIP 432239 1130 6010366 2024-02-20 13:18:07.718 2024-02-20 13:18:07.718 500 FEE 432404 21138 6010367 2024-02-20 13:18:07.718 2024-02-20 13:18:07.718 4500 TIP 432404 6191 6010434 2024-02-20 13:29:11.865 2024-02-20 13:29:11.865 4000 FEE 432320 7978 6010435 2024-02-20 13:29:11.865 2024-02-20 13:29:11.865 36000 TIP 432320 21178 6010438 2024-02-20 13:29:20.158 2024-02-20 13:29:20.158 4000 FEE 432337 18704 6010439 2024-02-20 13:29:20.158 2024-02-20 13:29:20.158 36000 TIP 432337 3642 6010539 2024-02-20 13:59:28.619 2024-02-20 13:59:28.619 21000 DONT_LIKE_THIS 432378 725 6010542 2024-02-20 13:59:43.136 2024-02-20 13:59:43.136 2100 FEE 432470 3377 6010543 2024-02-20 13:59:43.136 2024-02-20 13:59:43.136 18900 TIP 432470 19094 6010549 2024-02-20 14:00:20.381 2024-02-20 14:00:20.381 2100 FEE 432476 11716 6010550 2024-02-20 14:00:20.381 2024-02-20 14:00:20.381 18900 TIP 432476 19541 6010561 2024-02-20 14:01:05.553 2024-02-20 14:01:05.553 0 FEE 432476 8360 6010564 2024-02-20 14:01:17.285 2024-02-20 14:01:17.285 1000 FEE 432411 1585 6010565 2024-02-20 14:01:17.285 2024-02-20 14:01:17.285 9000 TIP 432411 21441 6010566 2024-02-20 14:01:18.226 2024-02-20 14:01:18.226 1000 FEE 432339 5306 6010567 2024-02-20 14:01:18.226 2024-02-20 14:01:18.226 9000 TIP 432339 21588 6010572 2024-02-20 14:01:21.44 2024-02-20 14:01:21.44 1000 FEE 432400 21463 6010573 2024-02-20 14:01:21.44 2024-02-20 14:01:21.44 9000 TIP 432400 807 6010578 2024-02-20 14:01:24.524 2024-02-20 14:01:24.524 1000 FEE 432419 16988 6010579 2024-02-20 14:01:24.524 2024-02-20 14:01:24.524 9000 TIP 432419 17011 6010584 2024-02-20 14:01:33.443 2024-02-20 14:01:33.443 1000 FEE 431401 20636 6010585 2024-02-20 14:01:33.443 2024-02-20 14:01:33.443 9000 TIP 431401 994 6010588 2024-02-20 14:01:34.852 2024-02-20 14:01:34.852 1000 FEE 432308 12368 6010589 2024-02-20 14:01:34.852 2024-02-20 14:01:34.852 9000 TIP 432308 4084 6010615 2024-02-20 14:06:11.071 2024-02-20 14:06:11.071 1000 FEE 432484 21498 6010616 2024-02-20 14:06:40.622 2024-02-20 14:06:40.622 7700 FEE 432365 10398 6010617 2024-02-20 14:06:40.622 2024-02-20 14:06:40.622 69300 TIP 432365 19281 6010622 2024-02-20 14:07:30.269 2024-02-20 14:07:30.269 0 FEE 432481 12072 6010627 2024-02-20 14:08:09.955 2024-02-20 14:08:09.955 1000 FEE 432487 19511 6010631 2024-02-20 14:09:07.829 2024-02-20 14:09:07.829 1000 FEE 432488 5036 6010656 2024-02-20 14:14:17.871 2024-02-20 14:14:17.871 10000 FEE 432493 19911 6010680 2024-02-20 14:16:59.841 2024-02-20 14:16:59.841 100 FEE 432444 15409 6010681 2024-02-20 14:16:59.841 2024-02-20 14:16:59.841 900 TIP 432444 18472 6010689 2024-02-20 14:17:49.192 2024-02-20 14:17:49.192 100 FEE 432348 18076 6010690 2024-02-20 14:17:49.192 2024-02-20 14:17:49.192 900 TIP 432348 21506 6010702 2024-02-20 14:20:05.729 2024-02-20 14:20:05.729 100 FEE 432493 17494 6010703 2024-02-20 14:20:05.729 2024-02-20 14:20:05.729 900 TIP 432493 18581 6010705 2024-02-20 14:20:31.426 2024-02-20 14:20:31.426 1000 FEE 432500 15941 6010708 2024-02-20 14:20:43.08 2024-02-20 14:20:43.08 800 FEE 430652 21323 6010709 2024-02-20 14:20:43.08 2024-02-20 14:20:43.08 7200 TIP 430652 1488 6010714 2024-02-20 14:20:58.837 2024-02-20 14:20:58.837 1000 FEE 432435 1489 6010715 2024-02-20 14:20:58.837 2024-02-20 14:20:58.837 9000 TIP 432435 940 6010718 2024-02-20 14:21:04.333 2024-02-20 14:21:04.333 1000 FEE 432449 21463 6010719 2024-02-20 14:21:04.333 2024-02-20 14:21:04.333 9000 TIP 432449 18625 6010738 2024-02-20 14:21:14.875 2024-02-20 14:21:14.875 8300 FEE 432311 1881 6010739 2024-02-20 14:21:14.875 2024-02-20 14:21:14.875 74700 TIP 432311 16282 6010754 2024-02-20 14:21:16.972 2024-02-20 14:21:16.972 8300 FEE 432320 4763 6010755 2024-02-20 14:21:16.972 2024-02-20 14:21:16.972 74700 TIP 432320 20523 6010758 2024-02-20 14:21:17.11 2024-02-20 14:21:17.11 8300 FEE 432320 18393 6010759 2024-02-20 14:21:17.11 2024-02-20 14:21:17.11 74700 TIP 432320 910 6010762 2024-02-20 14:21:17.347 2024-02-20 14:21:17.347 8300 FEE 432320 21178 6010763 2024-02-20 14:21:17.347 2024-02-20 14:21:17.347 74700 TIP 432320 16704 6009798 2024-02-20 12:22:36.081 2024-02-20 12:22:36.081 3300 FEE 430656 4102 6009799 2024-02-20 12:22:36.081 2024-02-20 12:22:36.081 29700 TIP 430656 6515 6009817 2024-02-20 12:24:43.001 2024-02-20 12:24:43.001 2100 FEE 432367 21406 6009818 2024-02-20 12:24:43.001 2024-02-20 12:24:43.001 18900 TIP 432367 21361 6009822 2024-02-20 12:25:02.313 2024-02-20 12:25:02.313 1000 STREAM 141924 15271 6009825 2024-02-20 12:26:18.307 2024-02-20 12:26:18.307 2100 FEE 432326 19352 6009826 2024-02-20 12:26:18.307 2024-02-20 12:26:18.307 18900 TIP 432326 18736 6009831 2024-02-20 12:27:33.599 2024-02-20 12:27:33.599 2000 FEE 432243 20036 6009832 2024-02-20 12:27:33.599 2024-02-20 12:27:33.599 18000 TIP 432243 9969 6009836 2024-02-20 12:28:18.177 2024-02-20 12:28:18.177 1000 FEE 432418 9843 6009837 2024-02-20 12:29:04.107 2024-02-20 12:29:04.107 1000 STREAM 141924 2367 6009843 2024-02-20 12:30:03.08 2024-02-20 12:30:03.08 1000 FEE 432420 10693 6009858 2024-02-20 12:33:42.294 2024-02-20 12:33:42.294 1000 FEE 432423 4167 6009862 2024-02-20 12:34:04.214 2024-02-20 12:34:04.214 200 FEE 432385 6327 6009863 2024-02-20 12:34:04.214 2024-02-20 12:34:04.214 1800 TIP 432385 21539 6009893 2024-02-20 12:39:44.241 2024-02-20 12:39:44.241 6300 FEE 432419 11443 6009894 2024-02-20 12:39:44.241 2024-02-20 12:39:44.241 56700 TIP 432419 15858 6009905 2024-02-20 12:41:20.498 2024-02-20 12:41:20.498 0 FEE 432427 2722 6009911 2024-02-20 12:42:04.938 2024-02-20 12:42:04.938 0 FEE 432427 18772 6009921 2024-02-20 12:46:50.537 2024-02-20 12:46:50.537 5000 FEE 432392 2065 6009922 2024-02-20 12:46:50.537 2024-02-20 12:46:50.537 45000 TIP 432392 3347 6009962 2024-02-20 12:51:22.795 2024-02-20 12:51:22.795 900 FEE 432259 6653 6009963 2024-02-20 12:51:22.795 2024-02-20 12:51:22.795 8100 TIP 432259 8080 6009993 2024-02-20 12:55:05.575 2024-02-20 12:55:05.575 100 FEE 432339 9517 6009994 2024-02-20 12:55:05.575 2024-02-20 12:55:05.575 900 TIP 432339 20198 6010051 2024-02-20 13:00:53.626 2024-02-20 13:00:53.626 1000 FEE 432436 6393 6010052 2024-02-20 13:00:57.692 2024-02-20 13:00:57.692 1000 FEE 432437 18138 6010063 2024-02-20 13:01:14.847 2024-02-20 13:01:14.847 1000 FEE 432441 1310 6010085 2024-02-20 13:04:44.943 2024-02-20 13:04:44.943 2100 FEE 432311 19930 6010086 2024-02-20 13:04:44.943 2024-02-20 13:04:44.943 18900 TIP 432311 2444 6010111 2024-02-20 13:06:38.566 2024-02-20 13:06:38.566 10000 FEE 432447 1030 6010116 2024-02-20 13:07:29.305 2024-02-20 13:07:29.305 5000 FEE 432449 13348 6010150 2024-02-20 13:14:17.1 2024-02-20 13:14:17.1 2300 FEE 432311 10270 6010151 2024-02-20 13:14:17.1 2024-02-20 13:14:17.1 20700 TIP 432311 21422 6010156 2024-02-20 13:14:17.568 2024-02-20 13:14:17.568 2300 FEE 432311 647 6010157 2024-02-20 13:14:17.568 2024-02-20 13:14:17.568 20700 TIP 432311 11458 6010162 2024-02-20 13:14:17.912 2024-02-20 13:14:17.912 2300 FEE 432311 9330 6010163 2024-02-20 13:14:17.912 2024-02-20 13:14:17.912 20700 TIP 432311 7877 6010172 2024-02-20 13:14:18.595 2024-02-20 13:14:18.595 2300 FEE 432311 10398 6010173 2024-02-20 13:14:18.595 2024-02-20 13:14:18.595 20700 TIP 432311 17639 6010186 2024-02-20 13:14:20.555 2024-02-20 13:14:20.555 2300 FEE 432311 17535 6010187 2024-02-20 13:14:20.555 2024-02-20 13:14:20.555 20700 TIP 432311 18583 6010250 2024-02-20 13:15:26.191 2024-02-20 13:15:26.191 2300 FEE 432311 12959 6010251 2024-02-20 13:15:26.191 2024-02-20 13:15:26.191 20700 TIP 432311 11942 6010256 2024-02-20 13:15:26.595 2024-02-20 13:15:26.595 2300 FEE 432311 20062 6010257 2024-02-20 13:15:26.595 2024-02-20 13:15:26.595 20700 TIP 432311 11458 6010258 2024-02-20 13:15:26.723 2024-02-20 13:15:26.723 2300 FEE 432311 3656 6010259 2024-02-20 13:15:26.723 2024-02-20 13:15:26.723 20700 TIP 432311 19118 6010264 2024-02-20 13:15:27.162 2024-02-20 13:15:27.162 2300 FEE 432311 13759 6010265 2024-02-20 13:15:27.162 2024-02-20 13:15:27.162 20700 TIP 432311 989 6010266 2024-02-20 13:15:27.295 2024-02-20 13:15:27.295 2300 FEE 432311 19662 6010267 2024-02-20 13:15:27.295 2024-02-20 13:15:27.295 20700 TIP 432311 5085 6010272 2024-02-20 13:15:27.723 2024-02-20 13:15:27.723 2300 FEE 432311 8400 6010273 2024-02-20 13:15:27.723 2024-02-20 13:15:27.723 20700 TIP 432311 2709 6010300 2024-02-20 13:15:31.544 2024-02-20 13:15:31.544 2300 FEE 432311 20509 6010301 2024-02-20 13:15:31.544 2024-02-20 13:15:31.544 20700 TIP 432311 1006 6010319 2024-02-20 13:16:13.293 2024-02-20 13:16:13.293 2300 FEE 432239 15560 6010320 2024-02-20 13:16:13.293 2024-02-20 13:16:13.293 20700 TIP 432239 19147 6010321 2024-02-20 13:16:13.426 2024-02-20 13:16:13.426 2300 FEE 432239 17708 6010322 2024-02-20 13:16:13.426 2024-02-20 13:16:13.426 20700 TIP 432239 10493 6010334 2024-02-20 13:16:30.357 2024-02-20 13:16:30.357 400 FEE 432263 18528 6010335 2024-02-20 13:16:30.357 2024-02-20 13:16:30.357 3600 TIP 432263 20168 6010338 2024-02-20 13:16:32.257 2024-02-20 13:16:32.257 400 FEE 432252 15159 6010339 2024-02-20 13:16:32.257 2024-02-20 13:16:32.257 3600 TIP 432252 21514 6010351 2024-02-20 13:17:27.979 2024-02-20 13:17:27.979 4600 FEE 432320 21157 6010352 2024-02-20 13:17:27.979 2024-02-20 13:17:27.979 41400 TIP 432320 20258 6010355 2024-02-20 13:17:29.294 2024-02-20 13:17:29.294 2300 FEE 432320 1705 6010356 2024-02-20 13:17:29.294 2024-02-20 13:17:29.294 20700 TIP 432320 21332 6010359 2024-02-20 13:17:29.628 2024-02-20 13:17:29.628 2300 FEE 432320 6717 6010360 2024-02-20 13:17:29.628 2024-02-20 13:17:29.628 20700 TIP 432320 21609 6010374 2024-02-20 13:18:08.552 2024-02-20 13:18:08.552 500 FEE 432404 1617 6010375 2024-02-20 13:18:08.552 2024-02-20 13:18:08.552 4500 TIP 432404 18815 6010378 2024-02-20 13:18:08.94 2024-02-20 13:18:08.94 500 FEE 432404 15560 6010379 2024-02-20 13:18:08.94 2024-02-20 13:18:08.94 4500 TIP 432404 6499 6010398 2024-02-20 13:20:02.334 2024-02-20 13:20:02.334 0 FEE 432460 12291 6010456 2024-02-20 13:35:02.864 2024-02-20 13:35:02.864 100000 FEE 432466 1769 6010470 2024-02-20 13:43:29.869 2024-02-20 13:43:29.869 100 FEE 432379 19909 6010471 2024-02-20 13:43:29.869 2024-02-20 13:43:29.869 900 TIP 432379 5725 6010483 2024-02-20 13:46:45.534 2024-02-20 13:46:45.534 15000 FEE 432469 20602 6010500 2024-02-20 13:49:46.98 2024-02-20 13:49:46.98 800 FEE 432337 21416 6010501 2024-02-20 13:49:46.98 2024-02-20 13:49:46.98 7200 TIP 432337 15938 6010524 2024-02-20 13:57:18.759 2024-02-20 13:57:18.759 10000 FEE 432419 16667 6010525 2024-02-20 13:57:18.759 2024-02-20 13:57:18.759 90000 TIP 432419 20094 6010548 2024-02-20 14:00:05.64 2024-02-20 14:00:05.64 1000 FEE 432478 9242 6010553 2024-02-20 14:00:35.692 2024-02-20 14:00:35.692 2000 FEE 432466 632 6010554 2024-02-20 14:00:35.692 2024-02-20 14:00:35.692 18000 TIP 432466 21216 6010559 2024-02-20 14:00:53.124 2024-02-20 14:00:53.124 0 FEE 432476 18313 6010570 2024-02-20 14:01:20.693 2024-02-20 14:01:20.693 1000 FEE 432113 4128 6010571 2024-02-20 14:01:20.693 2024-02-20 14:01:20.693 9000 TIP 432113 1836 6010576 2024-02-20 14:01:23.983 2024-02-20 14:01:23.983 1000 FEE 432378 1617 6010577 2024-02-20 14:01:23.983 2024-02-20 14:01:23.983 9000 TIP 432378 19541 6010601 2024-02-20 14:02:55.547 2024-02-20 14:02:55.547 10000 FEE 432480 19243 6010619 2024-02-20 14:06:53.174 2024-02-20 14:06:53.174 21000 DONT_LIKE_THIS 432472 20377 6010634 2024-02-20 14:10:19.144 2024-02-20 14:10:19.144 2100 FEE 432472 1064 6010635 2024-02-20 14:10:19.144 2024-02-20 14:10:19.144 18900 TIP 432472 12606 6010636 2024-02-20 14:10:23.689 2024-02-20 14:10:23.689 0 FEE 432489 21356 6010660 2024-02-20 14:14:57.742 2024-02-20 14:14:57.742 1000 FEE 432469 21501 6010661 2024-02-20 14:14:57.742 2024-02-20 14:14:57.742 9000 TIP 432469 4014 6010666 2024-02-20 14:15:27.956 2024-02-20 14:15:27.956 10000 FEE 288370 14663 6010667 2024-02-20 14:15:27.956 2024-02-20 14:15:27.956 90000 TIP 288370 13782 6010674 2024-02-20 14:16:14.899 2024-02-20 14:16:14.899 1000 FEE 432495 19815 6010675 2024-02-20 14:16:18.986 2024-02-20 14:16:18.986 21000 FEE 432337 1647 6010676 2024-02-20 14:16:18.986 2024-02-20 14:16:18.986 189000 TIP 432337 13365 6010678 2024-02-20 14:16:47.465 2024-02-20 14:16:47.465 1000 FEE 432496 13553 6010684 2024-02-20 14:17:31.227 2024-02-20 14:17:31.227 0 FEE 432491 15351 6010730 2024-02-20 14:21:14.013 2024-02-20 14:21:14.013 8300 FEE 432311 18174 6010731 2024-02-20 14:21:14.013 2024-02-20 14:21:14.013 74700 TIP 432311 9476 6009840 2024-02-20 12:29:20.047 2024-02-20 12:29:20.047 36000 TIP 432416 14385 6009846 2024-02-20 12:31:19.452 2024-02-20 12:31:19.452 0 FEE 432419 18154 6009850 2024-02-20 12:32:28.75 2024-02-20 12:32:28.75 1000 FEE 432421 18994 6009869 2024-02-20 12:35:11.613 2024-02-20 12:35:11.613 100000 FEE 432424 2203 6009883 2024-02-20 12:38:25.299 2024-02-20 12:38:25.299 100 FEE 431852 1480 6009884 2024-02-20 12:38:25.299 2024-02-20 12:38:25.299 900 TIP 431852 20826 6009915 2024-02-20 12:43:02.986 2024-02-20 12:43:02.986 2100 FEE 432421 13100 6009916 2024-02-20 12:43:02.986 2024-02-20 12:43:02.986 18900 TIP 432421 9418 6009917 2024-02-20 12:44:02.433 2024-02-20 12:44:02.433 1000 STREAM 141924 20861 6009918 2024-02-20 12:45:02.431 2024-02-20 12:45:02.431 1000 STREAM 141924 13553 6009920 2024-02-20 12:46:02.436 2024-02-20 12:46:02.436 1000 STREAM 141924 18243 6009927 2024-02-20 12:46:51.146 2024-02-20 12:46:51.146 5000 FEE 432392 9426 6009928 2024-02-20 12:46:51.146 2024-02-20 12:46:51.146 45000 TIP 432392 1124 6009945 2024-02-20 12:49:02.449 2024-02-20 12:49:02.449 1000 STREAM 141924 20573 6009966 2024-02-20 12:52:02.488 2024-02-20 12:52:02.488 1000 STREAM 141924 19494 6009997 2024-02-20 12:55:08.707 2024-02-20 12:55:08.707 9000 FEE 432339 17817 6009998 2024-02-20 12:55:08.707 2024-02-20 12:55:08.707 81000 TIP 432339 14774 6010011 2024-02-20 12:57:02.499 2024-02-20 12:57:02.499 1000 STREAM 141924 16214 6010018 2024-02-20 12:57:14.814 2024-02-20 12:57:14.814 900 FEE 432404 20062 6010019 2024-02-20 12:57:14.814 2024-02-20 12:57:14.814 8100 TIP 432404 16536 6010022 2024-02-20 12:57:36.32 2024-02-20 12:57:36.32 100 FEE 432410 18243 6010023 2024-02-20 12:57:36.32 2024-02-20 12:57:36.32 900 TIP 432410 19511 6010032 2024-02-20 12:58:02.508 2024-02-20 12:58:02.508 1000 STREAM 141924 20087 6010048 2024-02-20 13:00:02.562 2024-02-20 13:00:02.562 1000 STREAM 141924 16956 6010049 2024-02-20 13:00:12.398 2024-02-20 13:00:12.398 9000 FEE 432311 13055 6010050 2024-02-20 13:00:12.398 2024-02-20 13:00:12.398 81000 TIP 432311 20616 6010058 2024-02-20 13:01:02.558 2024-02-20 13:01:02.558 1000 STREAM 141924 6383 6010060 2024-02-20 13:01:06.899 2024-02-20 13:01:06.899 1000 FEE 432440 1733 6010075 2024-02-20 13:03:02.548 2024-02-20 13:03:02.548 1000 STREAM 141924 20287 6010081 2024-02-20 13:04:32.922 2024-02-20 13:04:32.922 2100 FEE 432419 8037 6010082 2024-02-20 13:04:32.922 2024-02-20 13:04:32.922 18900 TIP 432419 17638 6010087 2024-02-20 13:04:47.156 2024-02-20 13:04:47.156 2100 FEE 432283 20258 6010088 2024-02-20 13:04:47.156 2024-02-20 13:04:47.156 18900 TIP 432283 15556 6010113 2024-02-20 13:07:16.771 2024-02-20 13:07:16.771 1000 FEE 432448 19929 6010125 2024-02-20 13:09:02.555 2024-02-20 13:09:02.555 1000 STREAM 141924 1352 6010137 2024-02-20 13:13:02.565 2024-02-20 13:13:02.565 1000 STREAM 141924 20287 6010206 2024-02-20 13:14:22.737 2024-02-20 13:14:22.737 2300 FEE 432311 19463 6010207 2024-02-20 13:14:22.737 2024-02-20 13:14:22.737 20700 TIP 432311 768 6010208 2024-02-20 13:14:22.922 2024-02-20 13:14:22.922 2300 FEE 432311 19138 6010209 2024-02-20 13:14:22.922 2024-02-20 13:14:22.922 20700 TIP 432311 2000 6010216 2024-02-20 13:14:23.516 2024-02-20 13:14:23.516 2300 FEE 432311 21605 6010217 2024-02-20 13:14:23.516 2024-02-20 13:14:23.516 20700 TIP 432311 20826 6010232 2024-02-20 13:15:09.487 2024-02-20 13:15:09.487 1600 FEE 432311 6137 6010233 2024-02-20 13:15:09.487 2024-02-20 13:15:09.487 14400 TIP 432311 21072 6010234 2024-02-20 13:15:18.402 2024-02-20 13:15:18.402 1000 FEE 432457 10693 6010246 2024-02-20 13:15:25.984 2024-02-20 13:15:25.984 2300 FEE 432311 20812 6010247 2024-02-20 13:15:25.984 2024-02-20 13:15:25.984 20700 TIP 432311 18138 6010260 2024-02-20 13:15:26.875 2024-02-20 13:15:26.875 2300 FEE 432311 18529 6010261 2024-02-20 13:15:26.875 2024-02-20 13:15:26.875 20700 TIP 432311 14465 6010270 2024-02-20 13:15:27.608 2024-02-20 13:15:27.608 2300 FEE 432311 16351 6010271 2024-02-20 13:15:27.608 2024-02-20 13:15:27.608 20700 TIP 432311 21242 6010302 2024-02-20 13:15:31.696 2024-02-20 13:15:31.696 2300 FEE 432311 21356 6010303 2024-02-20 13:15:31.696 2024-02-20 13:15:31.696 20700 TIP 432311 15147 6010308 2024-02-20 13:15:32.723 2024-02-20 13:15:32.723 2300 FEE 432311 10611 6010309 2024-02-20 13:15:32.723 2024-02-20 13:15:32.723 20700 TIP 432311 20117 6010323 2024-02-20 13:16:13.612 2024-02-20 13:16:13.612 2300 FEE 432239 18403 6010324 2024-02-20 13:16:13.612 2024-02-20 13:16:13.612 20700 TIP 432239 16954 6010336 2024-02-20 13:16:31.657 2024-02-20 13:16:31.657 400 FEE 432254 20291 6010337 2024-02-20 13:16:31.657 2024-02-20 13:16:31.657 3600 TIP 432254 4175 6010342 2024-02-20 13:16:33.4 2024-02-20 13:16:33.4 400 FEE 432200 9341 6010343 2024-02-20 13:16:33.4 2024-02-20 13:16:33.4 3600 TIP 432200 16562 6010350 2024-02-20 13:17:02.583 2024-02-20 13:17:02.583 1000 STREAM 141924 20006 6010361 2024-02-20 13:17:34.727 2024-02-20 13:17:34.727 2100 FEE 432327 19016 6010362 2024-02-20 13:17:34.727 2024-02-20 13:17:34.727 18900 TIP 432327 3371 6010372 2024-02-20 13:18:08.261 2024-02-20 13:18:08.261 500 FEE 432404 21446 6010373 2024-02-20 13:18:08.261 2024-02-20 13:18:08.261 4500 TIP 432404 18892 6010382 2024-02-20 13:18:09.344 2024-02-20 13:18:09.344 500 FEE 432404 1433 6010383 2024-02-20 13:18:09.344 2024-02-20 13:18:09.344 4500 TIP 432404 21422 6010388 2024-02-20 13:19:02.589 2024-02-20 13:19:02.589 1000 STREAM 141924 18945 6010396 2024-02-20 13:19:42.039 2024-02-20 13:19:42.039 500 FEE 431401 20381 6010397 2024-02-20 13:19:42.039 2024-02-20 13:19:42.039 4500 TIP 431401 21532 6010399 2024-02-20 13:20:02.607 2024-02-20 13:20:02.607 1000 STREAM 141924 11527 6010404 2024-02-20 13:21:20.038 2024-02-20 13:21:20.038 500 FEE 431844 798 6010405 2024-02-20 13:21:20.038 2024-02-20 13:21:20.038 4500 TIP 431844 989 6010408 2024-02-20 13:22:02.589 2024-02-20 13:22:02.589 1000 STREAM 141924 19661 6010409 2024-02-20 13:22:36.24 2024-02-20 13:22:36.24 2100 FEE 432410 9920 6010410 2024-02-20 13:22:36.24 2024-02-20 13:22:36.24 18900 TIP 432410 20220 6010416 2024-02-20 13:25:02.598 2024-02-20 13:25:02.598 1000 STREAM 141924 3656 6010442 2024-02-20 13:29:24.129 2024-02-20 13:29:24.129 4000 FEE 432259 17541 6010443 2024-02-20 13:29:24.129 2024-02-20 13:29:24.129 36000 TIP 432259 19322 6010444 2024-02-20 13:29:32.46 2024-02-20 13:29:32.46 4000 FEE 432251 12265 6010445 2024-02-20 13:29:32.46 2024-02-20 13:29:32.46 36000 TIP 432251 3506 6010490 2024-02-20 13:48:48.421 2024-02-20 13:48:48.421 100 FEE 432337 9166 6010491 2024-02-20 13:48:48.421 2024-02-20 13:48:48.421 900 TIP 432337 9695 6010521 2024-02-20 13:57:02.76 2024-02-20 13:57:02.76 1000 STREAM 141924 20892 6010526 2024-02-20 13:57:18.997 2024-02-20 13:57:18.997 10000 FEE 432419 13782 6010527 2024-02-20 13:57:18.997 2024-02-20 13:57:18.997 90000 TIP 432419 17147 6010533 2024-02-20 13:58:44.05 2024-02-20 13:58:44.05 5100 FEE 432327 18815 6010534 2024-02-20 13:58:44.05 2024-02-20 13:58:44.05 45900 TIP 432327 9107 6010535 2024-02-20 13:59:02.776 2024-02-20 13:59:02.776 1000 STREAM 141924 1124 6010546 2024-02-20 14:00:02.817 2024-02-20 14:00:02.817 1000 STREAM 141924 18518 6010555 2024-02-20 14:00:36.166 2024-02-20 14:00:36.166 1000 FEE 432466 18344 6010556 2024-02-20 14:00:36.166 2024-02-20 14:00:36.166 9000 TIP 432466 951 6010560 2024-02-20 14:01:02.783 2024-02-20 14:01:02.783 1000 STREAM 141924 12516 6010613 2024-02-20 14:06:05.709 2024-02-20 14:06:05.709 1000 FEE 432478 3745 6010614 2024-02-20 14:06:05.709 2024-02-20 14:06:05.709 9000 TIP 432478 21349 6010623 2024-02-20 14:07:51.233 2024-02-20 14:07:51.233 2100 FEE 432483 17446 6010624 2024-02-20 14:07:51.233 2024-02-20 14:07:51.233 18900 TIP 432483 19878 6010668 2024-02-20 14:15:52.17 2024-02-20 14:15:52.17 1000 FEE 432378 19507 6010669 2024-02-20 14:15:52.17 2024-02-20 14:15:52.17 9000 TIP 432378 15196 6010698 2024-02-20 14:19:02.858 2024-02-20 14:19:02.858 1000 STREAM 141924 1064 6010722 2024-02-20 14:21:11.142 2024-02-20 14:21:11.142 1000 FEE 432472 11621 6010723 2024-02-20 14:21:11.142 2024-02-20 14:21:11.142 9000 TIP 432472 18208 6010774 2024-02-20 14:21:18.046 2024-02-20 14:21:18.046 8300 FEE 432320 732 6010775 2024-02-20 14:21:18.046 2024-02-20 14:21:18.046 74700 TIP 432320 4027 6010778 2024-02-20 14:21:18.238 2024-02-20 14:21:18.238 800 FEE 430644 21466 6010779 2024-02-20 14:21:18.238 2024-02-20 14:21:18.238 7200 TIP 430644 16808 6010014 2024-02-20 12:57:02.905 2024-02-20 12:57:02.905 900 FEE 432389 2204 6010015 2024-02-20 12:57:02.905 2024-02-20 12:57:02.905 8100 TIP 432389 20500 6010028 2024-02-20 12:57:48.915 2024-02-20 12:57:48.915 900 FEE 432411 1468 6010029 2024-02-20 12:57:48.915 2024-02-20 12:57:48.915 8100 TIP 432411 16513 6010030 2024-02-20 12:57:51.267 2024-02-20 12:57:51.267 9000 FEE 432411 20596 6010031 2024-02-20 12:57:51.267 2024-02-20 12:57:51.267 81000 TIP 432411 13798 6010039 2024-02-20 12:58:14.616 2024-02-20 12:58:14.616 200 FEE 432435 16879 6010040 2024-02-20 12:58:14.616 2024-02-20 12:58:14.616 1800 TIP 432435 21418 6010064 2024-02-20 13:01:18.005 2024-02-20 13:01:18.005 1000 FEE 432442 20623 6010077 2024-02-20 13:04:13.386 2024-02-20 13:04:13.386 1000 FEE 432444 10056 6010080 2024-02-20 13:04:23.652 2024-02-20 13:04:23.652 0 FEE 432444 1039 6010136 2024-02-20 13:12:59.312 2024-02-20 13:12:59.312 1000 FEE 432454 18896 6010142 2024-02-20 13:14:00.482 2024-02-20 13:14:00.482 1000 FEE 432455 1720 6010146 2024-02-20 13:14:16.297 2024-02-20 13:14:16.297 4600 FEE 432311 13177 6010147 2024-02-20 13:14:16.297 2024-02-20 13:14:16.297 41400 TIP 432311 15588 6010170 2024-02-20 13:14:18.445 2024-02-20 13:14:18.445 2300 FEE 432311 11527 6010171 2024-02-20 13:14:18.445 2024-02-20 13:14:18.445 20700 TIP 432311 2942 6010180 2024-02-20 13:14:19.739 2024-02-20 13:14:19.739 4600 FEE 432311 13517 6010181 2024-02-20 13:14:19.739 2024-02-20 13:14:19.739 41400 TIP 432311 16649 6010190 2024-02-20 13:14:20.872 2024-02-20 13:14:20.872 2300 FEE 432311 16442 6010191 2024-02-20 13:14:20.872 2024-02-20 13:14:20.872 20700 TIP 432311 15100 6010210 2024-02-20 13:14:23.019 2024-02-20 13:14:23.019 2300 FEE 432311 2640 6010211 2024-02-20 13:14:23.019 2024-02-20 13:14:23.019 20700 TIP 432311 13076 6010218 2024-02-20 13:14:24.355 2024-02-20 13:14:24.355 2300 FEE 432311 18745 6010219 2024-02-20 13:14:24.355 2024-02-20 13:14:24.355 20700 TIP 432311 9982 6010220 2024-02-20 13:14:24.542 2024-02-20 13:14:24.542 2300 FEE 432311 21427 6010221 2024-02-20 13:14:24.542 2024-02-20 13:14:24.542 20700 TIP 432311 19471 6010236 2024-02-20 13:15:24.918 2024-02-20 13:15:24.918 2300 FEE 432311 20109 6010237 2024-02-20 13:15:24.918 2024-02-20 13:15:24.918 20700 TIP 432311 13398 6010364 2024-02-20 13:18:07.532 2024-02-20 13:18:07.532 500 FEE 432404 2329 6010365 2024-02-20 13:18:07.532 2024-02-20 13:18:07.532 4500 TIP 432404 19878 6010402 2024-02-20 13:21:19.832 2024-02-20 13:21:19.832 500 FEE 431844 11165 6010403 2024-02-20 13:21:19.832 2024-02-20 13:21:19.832 4500 TIP 431844 1008 6010412 2024-02-20 13:23:06.376 2024-02-20 13:23:06.376 2100 FEE 432449 16789 6010413 2024-02-20 13:23:06.376 2024-02-20 13:23:06.376 18900 TIP 432449 20964 6010426 2024-02-20 13:27:23.286 2024-02-20 13:27:23.286 1100 FEE 432170 3392 6010427 2024-02-20 13:27:23.286 2024-02-20 13:27:23.286 9900 TIP 432170 20087 6010428 2024-02-20 13:28:00.862 2024-02-20 13:28:00.862 210000 FEE 432464 1658 6010440 2024-02-20 13:29:20.564 2024-02-20 13:29:20.564 4000 FEE 432404 9426 6010441 2024-02-20 13:29:20.564 2024-02-20 13:29:20.564 36000 TIP 432404 9307 6010467 2024-02-20 13:42:20.782 2024-02-20 13:42:20.782 10000 FEE 432467 17124 6010488 2024-02-20 13:48:38.902 2024-02-20 13:48:38.902 100 FEE 432411 5520 6010489 2024-02-20 13:48:38.902 2024-02-20 13:48:38.902 900 TIP 432411 14037 6010497 2024-02-20 13:49:32.675 2024-02-20 13:49:32.675 10000 FEE 432472 11298 6010506 2024-02-20 13:51:22.845 2024-02-20 13:51:22.845 2100 FEE 432432 21281 6010507 2024-02-20 13:51:22.845 2024-02-20 13:51:22.845 18900 TIP 432432 4074 6010538 2024-02-20 13:59:19.189 2024-02-20 13:59:19.189 1000 FEE 432476 6202 6010544 2024-02-20 13:59:43.811 2024-02-20 13:59:43.811 2100 FEE 432472 21514 6010545 2024-02-20 13:59:43.811 2024-02-20 13:59:43.811 18900 TIP 432472 2735 6010586 2024-02-20 14:01:34.174 2024-02-20 14:01:34.174 1000 FEE 432251 7418 6010587 2024-02-20 14:01:34.174 2024-02-20 14:01:34.174 9000 TIP 432251 1603 6010596 2024-02-20 14:01:54.686 2024-02-20 14:01:54.686 0 FEE 432476 19463 6010603 2024-02-20 14:03:13.308 2024-02-20 14:03:13.308 1000 FEE 432481 3396 6010650 2024-02-20 14:13:19.169 2024-02-20 14:13:19.169 100 FEE 432458 13378 6010651 2024-02-20 14:13:19.169 2024-02-20 14:13:19.169 900 TIP 432458 1751 6010670 2024-02-20 14:16:02.285 2024-02-20 14:16:02.285 1000 FEE 432259 9177 6010671 2024-02-20 14:16:02.285 2024-02-20 14:16:02.285 9000 TIP 432259 21064 6010724 2024-02-20 14:21:13.301 2024-02-20 14:21:13.301 8300 FEE 432311 16556 6010725 2024-02-20 14:21:13.301 2024-02-20 14:21:13.301 74700 TIP 432311 6749 6010734 2024-02-20 14:21:14.511 2024-02-20 14:21:14.511 8300 FEE 432311 19174 6010735 2024-02-20 14:21:14.511 2024-02-20 14:21:14.511 74700 TIP 432311 18660 6010750 2024-02-20 14:21:16.558 2024-02-20 14:21:16.558 8300 FEE 432320 19332 6010751 2024-02-20 14:21:16.558 2024-02-20 14:21:16.558 74700 TIP 432320 18524 6010780 2024-02-20 14:21:18.423 2024-02-20 14:21:18.423 800 FEE 430644 828 6010781 2024-02-20 14:21:18.423 2024-02-20 14:21:18.423 7200 TIP 430644 21365 6010790 2024-02-20 14:23:16.384 2024-02-20 14:23:16.384 10000 FEE 432451 694 6010791 2024-02-20 14:23:16.384 2024-02-20 14:23:16.384 90000 TIP 432451 9107 6010793 2024-02-20 14:23:36.568 2024-02-20 14:23:36.568 1600 FEE 432497 20701 6010794 2024-02-20 14:23:36.568 2024-02-20 14:23:36.568 14400 TIP 432497 20993 6010808 2024-02-20 14:24:57.384 2024-02-20 14:24:57.384 800 FEE 430631 2609 6010809 2024-02-20 14:24:57.384 2024-02-20 14:24:57.384 7200 TIP 430631 9517 6010830 2024-02-20 14:26:45.133 2024-02-20 14:26:45.133 1000 FEE 432509 16660 6010849 2024-02-20 14:27:34.246 2024-02-20 14:27:34.246 1000 FEE 432227 726 6010850 2024-02-20 14:27:34.246 2024-02-20 14:27:34.246 9000 TIP 432227 6191 6010948 2024-02-20 14:36:40.639 2024-02-20 14:36:40.639 10000 FEE 432166 10849 6010949 2024-02-20 14:36:40.639 2024-02-20 14:36:40.639 90000 TIP 432166 16350 6010952 2024-02-20 14:37:00.698 2024-02-20 14:37:00.698 2100 FEE 432464 18291 6010953 2024-02-20 14:37:00.698 2024-02-20 14:37:00.698 18900 TIP 432464 14774 6010966 2024-02-20 14:37:31.057 2024-02-20 14:37:31.057 2100 FEE 432519 19469 6010967 2024-02-20 14:37:31.057 2024-02-20 14:37:31.057 18900 TIP 432519 18330 6010971 2024-02-20 14:38:04.196 2024-02-20 14:38:04.196 8300 FEE 432464 4391 6010972 2024-02-20 14:38:04.196 2024-02-20 14:38:04.196 74700 TIP 432464 10393 6010980 2024-02-20 14:38:54.348 2024-02-20 14:38:54.348 2700 FEE 432526 9276 6010981 2024-02-20 14:38:54.348 2024-02-20 14:38:54.348 24300 TIP 432526 19030 6010993 2024-02-20 14:40:06.617 2024-02-20 14:40:06.617 2300 FEE 432517 10731 6010994 2024-02-20 14:40:06.617 2024-02-20 14:40:06.617 20700 TIP 432517 1692 6010995 2024-02-20 14:40:08.74 2024-02-20 14:40:08.74 6900 FEE 432517 7986 6010996 2024-02-20 14:40:08.74 2024-02-20 14:40:08.74 62100 TIP 432517 11443 6010998 2024-02-20 14:40:23.777 2024-02-20 14:40:23.777 10000 FEE 432530 917 6010999 2024-02-20 14:40:44.929 2024-02-20 14:40:44.929 1000 FEE 432507 1611 6011000 2024-02-20 14:40:44.929 2024-02-20 14:40:44.929 9000 TIP 432507 3709 6011004 2024-02-20 14:41:30.203 2024-02-20 14:41:30.203 21000 FEE 432533 770 6011013 2024-02-20 14:42:48.608 2024-02-20 14:42:48.608 1000 FEE 432536 20775 6011018 2024-02-20 14:42:53.732 2024-02-20 14:42:53.732 1000 FEE 432537 21361 6011024 2024-02-20 14:43:05.345 2024-02-20 14:43:05.345 2100 FEE 432415 2703 6011025 2024-02-20 14:43:05.345 2024-02-20 14:43:05.345 18900 TIP 432415 19332 6011032 2024-02-20 14:43:34.137 2024-02-20 14:43:34.137 1000 FEE 432538 807 6011033 2024-02-20 14:43:36.933 2024-02-20 14:43:36.933 2300 FEE 432527 1120 6011034 2024-02-20 14:43:36.933 2024-02-20 14:43:36.933 20700 TIP 432527 7674 6011039 2024-02-20 14:43:37.322 2024-02-20 14:43:37.322 2300 FEE 432527 894 6011040 2024-02-20 14:43:37.322 2024-02-20 14:43:37.322 20700 TIP 432527 13055 6011051 2024-02-20 14:43:38.191 2024-02-20 14:43:38.191 2300 FEE 432527 2039 6011052 2024-02-20 14:43:38.191 2024-02-20 14:43:38.191 20700 TIP 432527 21228 6011092 2024-02-20 14:45:33.14 2024-02-20 14:45:33.14 9000 FEE 432517 16948 6011093 2024-02-20 14:45:33.14 2024-02-20 14:45:33.14 81000 TIP 432517 9655 6011106 2024-02-20 14:45:52.943 2024-02-20 14:45:52.943 2700 FEE 432535 18640 6011107 2024-02-20 14:45:52.943 2024-02-20 14:45:52.943 24300 TIP 432535 20302 6010055 2024-02-20 13:00:58.928 2024-02-20 13:00:58.928 900 FEE 430385 1468 6010056 2024-02-20 13:00:58.928 2024-02-20 13:00:58.928 8100 TIP 430385 19121 6010071 2024-02-20 13:01:33.385 2024-02-20 13:01:33.385 2100 FEE 432429 20539 6010072 2024-02-20 13:01:33.385 2024-02-20 13:01:33.385 18900 TIP 432429 4304 6010102 2024-02-20 13:06:08.353 2024-02-20 13:06:08.353 2100 FEE 431223 12188 6010103 2024-02-20 13:06:08.353 2024-02-20 13:06:08.353 18900 TIP 431223 16867 6010127 2024-02-20 13:11:01.175 2024-02-20 13:11:01.175 1000 FEE 432451 6717 6010148 2024-02-20 13:14:16.956 2024-02-20 13:14:16.956 2300 FEE 432311 1002 6010149 2024-02-20 13:14:16.956 2024-02-20 13:14:16.956 20700 TIP 432311 20490 6010154 2024-02-20 13:14:17.419 2024-02-20 13:14:17.419 2300 FEE 432311 739 6010155 2024-02-20 13:14:17.419 2024-02-20 13:14:17.419 20700 TIP 432311 20596 6010178 2024-02-20 13:14:19.667 2024-02-20 13:14:19.667 1000 FEE 432311 16939 6010179 2024-02-20 13:14:19.667 2024-02-20 13:14:19.667 9000 TIP 432311 10821 6010194 2024-02-20 13:14:21.307 2024-02-20 13:14:21.307 2300 FEE 432311 1705 6010195 2024-02-20 13:14:21.307 2024-02-20 13:14:21.307 20700 TIP 432311 20660 6010198 2024-02-20 13:14:21.552 2024-02-20 13:14:21.552 2300 FEE 432311 18679 6010199 2024-02-20 13:14:21.552 2024-02-20 13:14:21.552 20700 TIP 432311 18727 6010200 2024-02-20 13:14:21.684 2024-02-20 13:14:21.684 2300 FEE 432311 21343 6010201 2024-02-20 13:14:21.684 2024-02-20 13:14:21.684 20700 TIP 432311 19193 6010202 2024-02-20 13:14:21.843 2024-02-20 13:14:21.843 2300 FEE 432311 1845 6010203 2024-02-20 13:14:21.843 2024-02-20 13:14:21.843 20700 TIP 432311 16406 6010212 2024-02-20 13:14:23.26 2024-02-20 13:14:23.26 2300 FEE 432311 649 6010213 2024-02-20 13:14:23.26 2024-02-20 13:14:23.26 20700 TIP 432311 5522 6010214 2024-02-20 13:14:23.384 2024-02-20 13:14:23.384 2300 FEE 432311 1064 6010215 2024-02-20 13:14:23.384 2024-02-20 13:14:23.384 20700 TIP 432311 19469 6010228 2024-02-20 13:14:25.112 2024-02-20 13:14:25.112 2300 FEE 432311 17710 6010229 2024-02-20 13:14:25.112 2024-02-20 13:14:25.112 20700 TIP 432311 17209 6010235 2024-02-20 13:15:20.755 2024-02-20 13:15:20.755 1000 FEE 432458 1426 6010238 2024-02-20 13:15:25.049 2024-02-20 13:15:25.049 2300 FEE 432311 19886 6010239 2024-02-20 13:15:25.049 2024-02-20 13:15:25.049 20700 TIP 432311 9438 6010274 2024-02-20 13:15:28.553 2024-02-20 13:15:28.553 2300 FEE 432311 18409 6010275 2024-02-20 13:15:28.553 2024-02-20 13:15:28.553 20700 TIP 432311 11275 6010290 2024-02-20 13:15:29.728 2024-02-20 13:15:29.728 2300 FEE 432311 19394 6010291 2024-02-20 13:15:29.728 2024-02-20 13:15:29.728 20700 TIP 432311 18225 6010310 2024-02-20 13:15:33.139 2024-02-20 13:15:33.139 2300 FEE 432311 5003 6010311 2024-02-20 13:15:33.139 2024-02-20 13:15:33.139 20700 TIP 432311 19259 6010327 2024-02-20 13:16:21.242 2024-02-20 13:16:21.242 1000 FEE 432459 20713 6010340 2024-02-20 13:16:32.78 2024-02-20 13:16:32.78 400 FEE 432222 7989 6010341 2024-02-20 13:16:32.78 2024-02-20 13:16:32.78 3600 TIP 432222 1650 6010344 2024-02-20 13:16:56.652 2024-02-20 13:16:56.652 500 FEE 432320 19394 6010345 2024-02-20 13:16:56.652 2024-02-20 13:16:56.652 4500 TIP 432320 17042 6010348 2024-02-20 13:16:57.056 2024-02-20 13:16:57.056 500 FEE 432320 5828 6010349 2024-02-20 13:16:57.056 2024-02-20 13:16:57.056 4500 TIP 432320 919 6010376 2024-02-20 13:18:08.737 2024-02-20 13:18:08.737 500 FEE 432404 20551 6010377 2024-02-20 13:18:08.737 2024-02-20 13:18:08.737 4500 TIP 432404 8726 6010384 2024-02-20 13:18:19.71 2024-02-20 13:18:19.71 2100 FEE 432240 20980 6010385 2024-02-20 13:18:19.71 2024-02-20 13:18:19.71 18900 TIP 432240 1617 6010394 2024-02-20 13:19:41.732 2024-02-20 13:19:41.732 500 FEE 431401 20802 6010395 2024-02-20 13:19:41.732 2024-02-20 13:19:41.732 4500 TIP 431401 16562 6010414 2024-02-20 13:23:58.963 2024-02-20 13:23:58.963 1000 FEE 432462 1261 6010422 2024-02-20 13:26:09.215 2024-02-20 13:26:09.215 1100 FEE 432378 5779 6010423 2024-02-20 13:26:09.215 2024-02-20 13:26:09.215 9900 TIP 432378 15271 6010424 2024-02-20 13:26:41.382 2024-02-20 13:26:41.382 1000 FEE 432463 4292 6010432 2024-02-20 13:28:19.909 2024-02-20 13:28:19.909 1000 FEE 432465 17710 6010447 2024-02-20 13:30:07.289 2024-02-20 13:30:07.289 2100 FEE 432464 21421 6010448 2024-02-20 13:30:07.289 2024-02-20 13:30:07.289 18900 TIP 432464 21472 6010451 2024-02-20 13:31:24.431 2024-02-20 13:31:24.431 10000 FEE 432311 16954 6010452 2024-02-20 13:31:24.431 2024-02-20 13:31:24.431 90000 TIP 432311 20022 6010476 2024-02-20 13:45:17.827 2024-02-20 13:45:17.827 2100 FEE 432404 986 6010477 2024-02-20 13:45:17.827 2024-02-20 13:45:17.827 18900 TIP 432404 13246 6010480 2024-02-20 13:45:34.344 2024-02-20 13:45:34.344 2100 FEE 432398 2776 6010481 2024-02-20 13:45:34.344 2024-02-20 13:45:34.344 18900 TIP 432398 11158 6010485 2024-02-20 13:47:05.771 2024-02-20 13:47:05.771 10000 FEE 432470 20117 6010502 2024-02-20 13:49:52.618 2024-02-20 13:49:52.618 1000 FEE 432473 14650 6010510 2024-02-20 13:51:37.9 2024-02-20 13:51:37.9 1000 FEE 432466 10007 6010511 2024-02-20 13:51:37.9 2024-02-20 13:51:37.9 9000 TIP 432466 16954 6010514 2024-02-20 13:53:05.767 2024-02-20 13:53:05.767 1000 FEE 432474 18774 6010522 2024-02-20 13:57:18.374 2024-02-20 13:57:18.374 10000 FEE 432419 9496 6010523 2024-02-20 13:57:18.374 2024-02-20 13:57:18.374 90000 TIP 432419 21373 6010547 2024-02-20 14:00:05.242 2024-02-20 14:00:05.242 100000 FEE 432477 10493 6010568 2024-02-20 14:01:18.894 2024-02-20 14:01:18.894 1000 FEE 432337 18714 6010569 2024-02-20 14:01:18.894 2024-02-20 14:01:18.894 9000 TIP 432337 1237 6010598 2024-02-20 14:02:06.724 2024-02-20 14:02:06.724 5000 FEE 432311 1064 6010599 2024-02-20 14:02:06.724 2024-02-20 14:02:06.724 45000 TIP 432311 10007 6010604 2024-02-20 14:03:16.066 2024-02-20 14:03:16.066 1000 FEE 432467 726 6010605 2024-02-20 14:03:16.066 2024-02-20 14:03:16.066 9000 TIP 432467 4415 6010638 2024-02-20 14:10:58.287 2024-02-20 14:10:58.287 2100 FEE 432472 13599 6010639 2024-02-20 14:10:58.287 2024-02-20 14:10:58.287 18900 TIP 432472 15491 6010643 2024-02-20 14:11:25.836 2024-02-20 14:11:25.836 3200 FEE 432485 10821 6010644 2024-02-20 14:11:25.836 2024-02-20 14:11:25.836 28800 TIP 432485 19537 6010645 2024-02-20 14:11:32.079 2024-02-20 14:11:32.079 0 FEE 432489 19821 6010647 2024-02-20 14:12:53.538 2024-02-20 14:12:53.538 1000 FEE 432490 713 6010652 2024-02-20 14:13:29.796 2024-02-20 14:13:29.796 0 FEE 432491 20619 6010665 2024-02-20 14:15:14.494 2024-02-20 14:15:14.494 0 FEE 432491 17091 6010683 2024-02-20 14:17:12.094 2024-02-20 14:17:12.094 0 FEE 432491 21157 6010687 2024-02-20 14:17:35.466 2024-02-20 14:17:35.466 100 FEE 432382 3360 6010688 2024-02-20 14:17:35.466 2024-02-20 14:17:35.466 900 TIP 432382 12024 6010704 2024-02-20 14:20:30.923 2024-02-20 14:20:30.923 1000 FEE 432499 14295 6010736 2024-02-20 14:21:14.646 2024-02-20 14:21:14.646 8300 FEE 432311 21047 6010737 2024-02-20 14:21:14.646 2024-02-20 14:21:14.646 74700 TIP 432311 10611 6010748 2024-02-20 14:21:16.466 2024-02-20 14:21:16.466 8300 FEE 432320 19320 6010749 2024-02-20 14:21:16.466 2024-02-20 14:21:16.466 74700 TIP 432320 21386 6010752 2024-02-20 14:21:16.761 2024-02-20 14:21:16.761 8300 FEE 432320 19417 6010753 2024-02-20 14:21:16.761 2024-02-20 14:21:16.761 74700 TIP 432320 20162 6010764 2024-02-20 14:21:17.498 2024-02-20 14:21:17.498 8300 FEE 432320 2773 6010765 2024-02-20 14:21:17.498 2024-02-20 14:21:17.498 74700 TIP 432320 18330 6010768 2024-02-20 14:21:17.698 2024-02-20 14:21:17.698 8300 FEE 432320 17713 6010769 2024-02-20 14:21:17.698 2024-02-20 14:21:17.698 74700 TIP 432320 20073 6010770 2024-02-20 14:21:17.884 2024-02-20 14:21:17.884 8300 FEE 432320 21541 6010771 2024-02-20 14:21:17.884 2024-02-20 14:21:17.884 74700 TIP 432320 641 6010772 2024-02-20 14:21:17.927 2024-02-20 14:21:17.927 8300 FEE 432320 1652 6010773 2024-02-20 14:21:17.927 2024-02-20 14:21:17.927 74700 TIP 432320 18896 6010776 2024-02-20 14:21:18.218 2024-02-20 14:21:18.218 8300 FEE 432320 5776 6010777 2024-02-20 14:21:18.218 2024-02-20 14:21:18.218 74700 TIP 432320 17184 6010782 2024-02-20 14:21:48.031 2024-02-20 14:21:48.031 5000000 FEE 430710 20185 6010783 2024-02-20 14:21:48.031 2024-02-20 14:21:48.031 45000000 TIP 430710 690 6010801 2024-02-20 14:23:52.694 2024-02-20 14:23:52.694 1000 FEE 432505 14080 6010245 2024-02-20 13:15:25.701 2024-02-20 13:15:25.701 20700 TIP 432311 9758 6010262 2024-02-20 13:15:27.033 2024-02-20 13:15:27.033 2300 FEE 432311 11164 6010263 2024-02-20 13:15:27.033 2024-02-20 13:15:27.033 20700 TIP 432311 19924 6010268 2024-02-20 13:15:27.415 2024-02-20 13:15:27.415 2300 FEE 432311 12959 6010269 2024-02-20 13:15:27.415 2024-02-20 13:15:27.415 20700 TIP 432311 19863 6010294 2024-02-20 13:15:30.165 2024-02-20 13:15:30.165 2300 FEE 432311 16753 6010295 2024-02-20 13:15:30.165 2024-02-20 13:15:30.165 20700 TIP 432311 3456 6010304 2024-02-20 13:15:31.845 2024-02-20 13:15:31.845 2300 FEE 432311 12175 6010305 2024-02-20 13:15:31.845 2024-02-20 13:15:31.845 20700 TIP 432311 701 6010317 2024-02-20 13:16:09.535 2024-02-20 13:16:09.535 2300 FEE 432182 19446 6010318 2024-02-20 13:16:09.535 2024-02-20 13:16:09.535 20700 TIP 432182 16154 6010328 2024-02-20 13:16:27.532 2024-02-20 13:16:27.532 400 FEE 432370 15488 6010329 2024-02-20 13:16:27.532 2024-02-20 13:16:27.532 3600 TIP 432370 21342 6010330 2024-02-20 13:16:29.518 2024-02-20 13:16:29.518 400 FEE 432302 11091 6010331 2024-02-20 13:16:29.518 2024-02-20 13:16:29.518 3600 TIP 432302 7773 6010332 2024-02-20 13:16:29.898 2024-02-20 13:16:29.898 400 FEE 432288 21036 6010333 2024-02-20 13:16:29.898 2024-02-20 13:16:29.898 3600 TIP 432288 1195 6010346 2024-02-20 13:16:56.864 2024-02-20 13:16:56.864 500 FEE 432320 8080 6010347 2024-02-20 13:16:56.864 2024-02-20 13:16:56.864 4500 TIP 432320 17693 6010357 2024-02-20 13:17:29.448 2024-02-20 13:17:29.448 2300 FEE 432320 10849 6010358 2024-02-20 13:17:29.448 2024-02-20 13:17:29.448 20700 TIP 432320 21140 6010406 2024-02-20 13:21:20.253 2024-02-20 13:21:20.253 500 FEE 431844 2077 6010407 2024-02-20 13:21:20.253 2024-02-20 13:21:20.253 4500 TIP 431844 11491 6010419 2024-02-20 13:25:17.819 2024-02-20 13:25:17.819 1100 FEE 432339 18583 6010420 2024-02-20 13:25:17.819 2024-02-20 13:25:17.819 9900 TIP 432339 7659 6010459 2024-02-20 13:36:56.086 2024-02-20 13:36:56.086 800 FEE 432466 1803 6010460 2024-02-20 13:36:56.086 2024-02-20 13:36:56.086 7200 TIP 432466 1495 6010468 2024-02-20 13:42:28.573 2024-02-20 13:42:28.573 100000 FEE 432468 10849 6010472 2024-02-20 13:43:35.182 2024-02-20 13:43:35.182 100 FEE 432415 17710 6010473 2024-02-20 13:43:35.182 2024-02-20 13:43:35.182 900 TIP 432415 13204 6010492 2024-02-20 13:48:56.109 2024-02-20 13:48:56.109 100 FEE 432259 12289 6010493 2024-02-20 13:48:56.109 2024-02-20 13:48:56.109 900 TIP 432259 19995 6010495 2024-02-20 13:49:03.883 2024-02-20 13:49:03.883 100 FEE 432283 14037 6010496 2024-02-20 13:49:03.883 2024-02-20 13:49:03.883 900 TIP 432283 21249 6010531 2024-02-20 13:58:32.23 2024-02-20 13:58:32.23 5100 FEE 432327 814 6010532 2024-02-20 13:58:32.23 2024-02-20 13:58:32.23 45900 TIP 432327 15925 6010557 2024-02-20 14:00:36.336 2024-02-20 14:00:36.336 1000 FEE 432466 14195 6010558 2024-02-20 14:00:36.336 2024-02-20 14:00:36.336 9000 TIP 432466 2775 6010562 2024-02-20 14:01:16.489 2024-02-20 14:01:16.489 1000 FEE 432320 19888 6010563 2024-02-20 14:01:16.489 2024-02-20 14:01:16.489 9000 TIP 432320 18774 6010594 2024-02-20 14:01:37.663 2024-02-20 14:01:37.663 1000 FEE 431816 6419 6010595 2024-02-20 14:01:37.663 2024-02-20 14:01:37.663 9000 TIP 431816 770 6010607 2024-02-20 14:05:01.394 2024-02-20 14:05:01.394 1000 FEE 432482 19841 6010609 2024-02-20 14:05:34.682 2024-02-20 14:05:34.682 1000 FEE 432483 20481 6010633 2024-02-20 14:10:03.956 2024-02-20 14:10:03.956 1000 FEE 432489 12220 6010648 2024-02-20 14:13:01.557 2024-02-20 14:13:01.557 10000 FEE 432491 21416 6010654 2024-02-20 14:13:49.687 2024-02-20 14:13:49.687 0 FEE 432491 17095 6010685 2024-02-20 14:17:31.975 2024-02-20 14:17:31.975 100 FEE 432392 1394 6010686 2024-02-20 14:17:31.975 2024-02-20 14:17:31.975 900 TIP 432392 12268 6010691 2024-02-20 14:17:51.925 2024-02-20 14:17:51.925 100 FEE 432349 18402 6010692 2024-02-20 14:17:51.925 2024-02-20 14:17:51.925 900 TIP 432349 12422 6010696 2024-02-20 14:18:37.387 2024-02-20 14:18:37.387 1000 FEE 432497 4378 6010712 2024-02-20 14:20:45.602 2024-02-20 14:20:45.602 1000 FEE 432501 9920 6010713 2024-02-20 14:20:51.27 2024-02-20 14:20:51.27 1000 FEE 432502 994 6010803 2024-02-20 14:24:25.386 2024-02-20 14:24:25.386 2100 FEE 432400 1310 6010804 2024-02-20 14:24:25.386 2024-02-20 14:24:25.386 18900 TIP 432400 19322 6010818 2024-02-20 14:25:41.947 2024-02-20 14:25:41.947 800 FEE 430664 9494 6010819 2024-02-20 14:25:41.947 2024-02-20 14:25:41.947 7200 TIP 430664 803 6010826 2024-02-20 14:26:05.531 2024-02-20 14:26:05.531 1000 FEE 432432 1673 6010827 2024-02-20 14:26:05.531 2024-02-20 14:26:05.531 9000 TIP 432432 17415 6010831 2024-02-20 14:26:59.549 2024-02-20 14:26:59.549 1000 FEE 432510 5487 6010835 2024-02-20 14:27:17.478 2024-02-20 14:27:17.478 1000 FEE 432428 19044 6010836 2024-02-20 14:27:17.478 2024-02-20 14:27:17.478 9000 TIP 432428 9920 6010837 2024-02-20 14:27:21.751 2024-02-20 14:27:21.751 1000 FEE 432361 10393 6010838 2024-02-20 14:27:21.751 2024-02-20 14:27:21.751 9000 TIP 432361 16966 6010841 2024-02-20 14:27:25.668 2024-02-20 14:27:25.668 1000 FEE 430920 11153 6010842 2024-02-20 14:27:25.668 2024-02-20 14:27:25.668 9000 TIP 430920 16301 6010843 2024-02-20 14:27:27.222 2024-02-20 14:27:27.222 1000 FEE 430920 12965 6010844 2024-02-20 14:27:27.222 2024-02-20 14:27:27.222 9000 TIP 430920 18731 6010860 2024-02-20 14:28:46.883 2024-02-20 14:28:46.883 2500000 FEE 430758 633 6010861 2024-02-20 14:28:46.883 2024-02-20 14:28:46.883 22500000 TIP 430758 18460 6010866 2024-02-20 14:29:23.179 2024-02-20 14:29:23.179 1000 FEE 432512 19007 6010871 2024-02-20 14:31:13.189 2024-02-20 14:31:13.189 200 FEE 432511 2000 6010872 2024-02-20 14:31:13.189 2024-02-20 14:31:13.189 1800 TIP 432511 2832 6010888 2024-02-20 14:33:40.955 2024-02-20 14:33:40.955 2100 FEE 432480 18941 6010889 2024-02-20 14:33:40.955 2024-02-20 14:33:40.955 18900 TIP 432480 20246 6010894 2024-02-20 14:33:48.336 2024-02-20 14:33:48.336 2100 FEE 432472 11714 6010895 2024-02-20 14:33:48.336 2024-02-20 14:33:48.336 18900 TIP 432472 20452 6010900 2024-02-20 14:34:26.698 2024-02-20 14:34:26.698 1000 FEE 432519 671 6010932 2024-02-20 14:35:20.782 2024-02-20 14:35:20.782 8300 FEE 432517 21083 6010933 2024-02-20 14:35:20.782 2024-02-20 14:35:20.782 74700 TIP 432517 11898 6010935 2024-02-20 14:35:35.619 2024-02-20 14:35:35.619 2100 FEE 432468 5171 6010936 2024-02-20 14:35:35.619 2024-02-20 14:35:35.619 18900 TIP 432468 20573 6010977 2024-02-20 14:38:51.513 2024-02-20 14:38:51.513 1000 FEE 432527 4043 6011007 2024-02-20 14:41:46.236 2024-02-20 14:41:46.236 0 FEE 432533 18660 6011012 2024-02-20 14:42:42.775 2024-02-20 14:42:42.775 1000 FEE 432535 2224 6011016 2024-02-20 14:42:49.218 2024-02-20 14:42:49.218 2100 FEE 432311 925 6011017 2024-02-20 14:42:49.218 2024-02-20 14:42:49.218 18900 TIP 432311 4819 6011022 2024-02-20 14:43:03.223 2024-02-20 14:43:03.223 2100 FEE 432458 12483 6011023 2024-02-20 14:43:03.223 2024-02-20 14:43:03.223 18900 TIP 432458 700 6011026 2024-02-20 14:43:07.652 2024-02-20 14:43:07.652 2100 FEE 432379 21329 6011027 2024-02-20 14:43:07.652 2024-02-20 14:43:07.652 18900 TIP 432379 959 6011055 2024-02-20 14:43:39.763 2024-02-20 14:43:39.763 2300 FEE 432527 19458 6011056 2024-02-20 14:43:39.763 2024-02-20 14:43:39.763 20700 TIP 432527 1772 6011067 2024-02-20 14:43:41.337 2024-02-20 14:43:41.337 2300 FEE 432527 18309 6011068 2024-02-20 14:43:41.337 2024-02-20 14:43:41.337 20700 TIP 432527 21083 6011083 2024-02-20 14:44:35.238 2024-02-20 14:44:35.238 2100 FEE 432525 17321 6011084 2024-02-20 14:44:35.238 2024-02-20 14:44:35.238 18900 TIP 432525 21521 6011087 2024-02-20 14:45:28.594 2024-02-20 14:45:28.594 100 FEE 432517 18380 6011088 2024-02-20 14:45:28.594 2024-02-20 14:45:28.594 900 TIP 432517 21248 6011089 2024-02-20 14:45:28.797 2024-02-20 14:45:28.797 1000 FEE 432542 20523 6011102 2024-02-20 14:45:52.595 2024-02-20 14:45:52.595 2700 FEE 432535 19796 6011103 2024-02-20 14:45:52.595 2024-02-20 14:45:52.595 24300 TIP 432535 1394 6011121 2024-02-20 14:46:57.132 2024-02-20 14:46:57.132 21000 FEE 432405 9275 6011122 2024-02-20 14:46:57.132 2024-02-20 14:46:57.132 189000 TIP 432405 9365 6011125 2024-02-20 14:47:09.942 2024-02-20 14:47:09.942 1000 FEE 431809 17172 6011126 2024-02-20 14:47:09.942 2024-02-20 14:47:09.942 9000 TIP 431809 20681 6010353 2024-02-20 13:17:28.492 2024-02-20 13:17:28.492 2300 FEE 432320 6515 6010354 2024-02-20 13:17:28.492 2024-02-20 13:17:28.492 20700 TIP 432320 18359 6010380 2024-02-20 13:18:09.157 2024-02-20 13:18:09.157 500 FEE 432404 3400 6010381 2024-02-20 13:18:09.157 2024-02-20 13:18:09.157 4500 TIP 432404 15408 6010386 2024-02-20 13:18:45.464 2024-02-20 13:18:45.464 500 FEE 432308 18330 6010387 2024-02-20 13:18:45.464 2024-02-20 13:18:45.464 4500 TIP 432308 3518 6010390 2024-02-20 13:19:22.293 2024-02-20 13:19:22.293 500 FEE 430892 21216 6010391 2024-02-20 13:19:22.293 2024-02-20 13:19:22.293 4500 TIP 430892 20430 6010392 2024-02-20 13:19:41.504 2024-02-20 13:19:41.504 500 FEE 431401 20901 6010393 2024-02-20 13:19:41.504 2024-02-20 13:19:41.504 4500 TIP 431401 20231 6010425 2024-02-20 13:27:03.189 2024-02-20 13:27:03.189 1000 STREAM 141924 2437 6010429 2024-02-20 13:28:03.208 2024-02-20 13:28:03.208 1000 STREAM 141924 21494 6010430 2024-02-20 13:28:08.171 2024-02-20 13:28:08.171 1100 FEE 432410 13143 6010431 2024-02-20 13:28:08.171 2024-02-20 13:28:08.171 9900 TIP 432410 9796 6010433 2024-02-20 13:29:03.217 2024-02-20 13:29:03.217 1000 STREAM 141924 12222 6010436 2024-02-20 13:29:17.112 2024-02-20 13:29:17.112 4000 FEE 432411 21521 6010437 2024-02-20 13:29:17.112 2024-02-20 13:29:17.112 36000 TIP 432411 21070 6010446 2024-02-20 13:30:03.237 2024-02-20 13:30:03.237 1000 STREAM 141924 672 6010450 2024-02-20 13:31:03.242 2024-02-20 13:31:03.242 1000 STREAM 141924 2614 6010453 2024-02-20 13:32:03.264 2024-02-20 13:32:03.264 1000 STREAM 141924 16124 6010454 2024-02-20 13:33:03.278 2024-02-20 13:33:03.278 1000 STREAM 141924 18008 6010455 2024-02-20 13:34:03.275 2024-02-20 13:34:03.275 1000 STREAM 141924 18528 6010457 2024-02-20 13:35:03.299 2024-02-20 13:35:03.299 1000 STREAM 141924 1038 6010458 2024-02-20 13:36:03.299 2024-02-20 13:36:03.299 1000 STREAM 141924 1712 6010461 2024-02-20 13:37:03.308 2024-02-20 13:37:03.308 1000 STREAM 141924 18877 6010462 2024-02-20 13:38:03.327 2024-02-20 13:38:03.327 1000 STREAM 141924 20586 6010463 2024-02-20 13:39:03.343 2024-02-20 13:39:03.343 1000 STREAM 141924 8998 6010464 2024-02-20 13:40:03.355 2024-02-20 13:40:03.355 1000 STREAM 141924 11263 6010465 2024-02-20 13:41:03.39 2024-02-20 13:41:03.39 1000 STREAM 141924 642 6010466 2024-02-20 13:42:03.393 2024-02-20 13:42:03.393 1000 STREAM 141924 9351 6010469 2024-02-20 13:43:03.377 2024-02-20 13:43:03.377 1000 STREAM 141924 780 6010474 2024-02-20 13:44:03.395 2024-02-20 13:44:03.395 1000 STREAM 141924 9159 6010475 2024-02-20 13:45:03.402 2024-02-20 13:45:03.402 1000 STREAM 141924 19785 6010482 2024-02-20 13:46:03.412 2024-02-20 13:46:03.412 1000 STREAM 141924 16950 6010484 2024-02-20 13:47:03.422 2024-02-20 13:47:03.422 1000 STREAM 141924 20969 6010486 2024-02-20 13:48:03.42 2024-02-20 13:48:03.42 1000 STREAM 141924 21320 6010487 2024-02-20 13:48:04.818 2024-02-20 13:48:04.818 1000 FEE 432471 16965 6010494 2024-02-20 13:49:03.425 2024-02-20 13:49:03.425 1000 STREAM 141924 844 6010503 2024-02-20 13:50:03.47 2024-02-20 13:50:03.47 1000 STREAM 141924 15762 6010505 2024-02-20 13:51:03.456 2024-02-20 13:51:03.456 1000 STREAM 141924 20245 6010512 2024-02-20 13:52:03.461 2024-02-20 13:52:03.461 1000 STREAM 141924 27 6010513 2024-02-20 13:53:03.466 2024-02-20 13:53:03.466 1000 STREAM 141924 18321 6010515 2024-02-20 13:53:21.907 2024-02-20 13:53:21.907 2500 FEE 432463 20730 6010516 2024-02-20 13:53:21.907 2024-02-20 13:53:21.907 22500 TIP 432463 2431 6010518 2024-02-20 13:54:03.461 2024-02-20 13:54:03.461 1000 STREAM 141924 17030 6010519 2024-02-20 13:55:03.467 2024-02-20 13:55:03.467 1000 STREAM 141924 1006 6010520 2024-02-20 13:56:03.473 2024-02-20 13:56:03.473 1000 STREAM 141924 18743 6010528 2024-02-20 13:57:19.083 2024-02-20 13:57:19.083 10000 FEE 432419 18310 6010529 2024-02-20 13:57:19.083 2024-02-20 13:57:19.083 90000 TIP 432419 21314 6010530 2024-02-20 13:58:02.759 2024-02-20 13:58:02.759 1000 STREAM 141924 6421 6010580 2024-02-20 14:01:28.634 2024-02-20 14:01:28.634 1000 FEE 432283 2963 6010581 2024-02-20 14:01:28.634 2024-02-20 14:01:28.634 9000 TIP 432283 21263 6010582 2024-02-20 14:01:31.006 2024-02-20 14:01:31.006 1000 FEE 430892 16356 6010583 2024-02-20 14:01:31.006 2024-02-20 14:01:31.006 9000 TIP 430892 5520 6010590 2024-02-20 14:01:35.686 2024-02-20 14:01:35.686 1000 FEE 431844 21600 6010591 2024-02-20 14:01:35.686 2024-02-20 14:01:35.686 9000 TIP 431844 9363 6010592 2024-02-20 14:01:37.144 2024-02-20 14:01:37.144 1000 FEE 432135 794 6010593 2024-02-20 14:01:37.144 2024-02-20 14:01:37.144 9000 TIP 432135 1221 6010597 2024-02-20 14:02:03.524 2024-02-20 14:02:03.524 1000 STREAM 141924 770 6010602 2024-02-20 14:03:03.571 2024-02-20 14:03:03.571 1000 STREAM 141924 12220 6010606 2024-02-20 14:04:03.52 2024-02-20 14:04:03.52 1000 STREAM 141924 5387 6010608 2024-02-20 14:05:03.531 2024-02-20 14:05:03.531 1000 STREAM 141924 6515 6010610 2024-02-20 14:05:59.555 2024-02-20 14:05:59.555 1000 FEE 432478 21342 6010611 2024-02-20 14:05:59.555 2024-02-20 14:05:59.555 9000 TIP 432478 1609 6010612 2024-02-20 14:06:03.515 2024-02-20 14:06:03.515 1000 STREAM 141924 12744 6010620 2024-02-20 14:07:03.554 2024-02-20 14:07:03.554 1000 STREAM 141924 7553 6010626 2024-02-20 14:08:03.558 2024-02-20 14:08:03.558 1000 STREAM 141924 16842 6010628 2024-02-20 14:08:14.689 2024-02-20 14:08:14.689 1600 FEE 432476 9845 6010629 2024-02-20 14:08:14.689 2024-02-20 14:08:14.689 14400 TIP 432476 733 6010630 2024-02-20 14:09:03.556 2024-02-20 14:09:03.556 1000 STREAM 141924 20205 6010632 2024-02-20 14:10:03.558 2024-02-20 14:10:03.558 1000 STREAM 141924 11621 6010640 2024-02-20 14:11:01.05 2024-02-20 14:11:01.05 3300 FEE 432487 18842 6010641 2024-02-20 14:11:01.05 2024-02-20 14:11:01.05 29700 TIP 432487 2075 6010642 2024-02-20 14:11:03.574 2024-02-20 14:11:03.574 1000 STREAM 141924 21481 6010646 2024-02-20 14:12:03.592 2024-02-20 14:12:03.592 1000 STREAM 141924 7418 6010649 2024-02-20 14:13:03.565 2024-02-20 14:13:03.565 1000 STREAM 141924 20066 6010653 2024-02-20 14:13:32.246 2024-02-20 14:13:32.246 1000 FEE 432492 9496 6010655 2024-02-20 14:14:03.571 2024-02-20 14:14:03.571 1000 STREAM 141924 19980 6010657 2024-02-20 14:14:40.857 2024-02-20 14:14:40.857 0 FEE 432491 5500 6010662 2024-02-20 14:15:03.575 2024-02-20 14:15:03.575 1000 STREAM 141924 21274 6010672 2024-02-20 14:16:03.582 2024-02-20 14:16:03.582 1000 STREAM 141924 18784 6010682 2024-02-20 14:17:03.59 2024-02-20 14:17:03.59 1000 STREAM 141924 891 6010693 2024-02-20 14:18:03.591 2024-02-20 14:18:03.591 1000 STREAM 141924 16966 6010694 2024-02-20 14:18:16.961 2024-02-20 14:18:16.961 100 FEE 432346 769 6010695 2024-02-20 14:18:16.961 2024-02-20 14:18:16.961 900 TIP 432346 19154 6010699 2024-02-20 14:19:11.805 2024-02-20 14:19:11.805 1000 FEE 432498 13133 6010700 2024-02-20 14:19:17.582 2024-02-20 14:19:17.582 0 FEE 432489 16424 6010706 2024-02-20 14:20:42.893 2024-02-20 14:20:42.893 800 FEE 430652 21555 6010707 2024-02-20 14:20:42.893 2024-02-20 14:20:42.893 7200 TIP 430652 20015 6010710 2024-02-20 14:20:44.291 2024-02-20 14:20:44.291 800 FEE 430652 21090 6010711 2024-02-20 14:20:44.291 2024-02-20 14:20:44.291 7200 TIP 430652 20272 6010720 2024-02-20 14:21:07.89 2024-02-20 14:21:07.89 1000 FEE 432464 21599 6010721 2024-02-20 14:21:07.89 2024-02-20 14:21:07.89 9000 TIP 432464 20080 6010797 2024-02-20 14:23:43.111 2024-02-20 14:23:43.111 800 FEE 430901 21521 6010798 2024-02-20 14:23:43.111 2024-02-20 14:23:43.111 7200 TIP 430901 10849 6010799 2024-02-20 14:23:43.313 2024-02-20 14:23:43.313 800 FEE 430901 7553 6010800 2024-02-20 14:23:43.313 2024-02-20 14:23:43.313 7200 TIP 430901 19569 6010812 2024-02-20 14:25:21.84 2024-02-20 14:25:21.84 1000 FEE 432479 18989 6010813 2024-02-20 14:25:21.84 2024-02-20 14:25:21.84 9000 TIP 432479 6430 6010855 2024-02-20 14:27:42.2 2024-02-20 14:27:42.2 3400 FEE 432339 19907 6010856 2024-02-20 14:27:42.2 2024-02-20 14:27:42.2 30600 TIP 432339 21585 6010886 2024-02-20 14:33:40.834 2024-02-20 14:33:40.834 800 FEE 432426 20987 6010887 2024-02-20 14:33:40.834 2024-02-20 14:33:40.834 7200 TIP 432426 17218 6010912 2024-02-20 14:35:15.805 2024-02-20 14:35:15.805 8300 FEE 432517 13055 6010913 2024-02-20 14:35:15.805 2024-02-20 14:35:15.805 74700 TIP 432517 19512 6010924 2024-02-20 14:35:19.472 2024-02-20 14:35:19.472 8300 FEE 432517 1738 6010925 2024-02-20 14:35:19.472 2024-02-20 14:35:19.472 74700 TIP 432517 17592 6010625 2024-02-20 14:07:52.259 2024-02-20 14:07:52.259 0 FEE 432481 7389 6010637 2024-02-20 14:10:34.54 2024-02-20 14:10:34.54 21000 DONT_LIKE_THIS 432472 10818 6010658 2024-02-20 14:14:52.117 2024-02-20 14:14:52.117 5000 FEE 432458 12334 6010659 2024-02-20 14:14:52.117 2024-02-20 14:14:52.117 45000 TIP 432458 12278 6010663 2024-02-20 14:15:08.193 2024-02-20 14:15:08.193 1000 FEE 432466 20108 6010664 2024-02-20 14:15:08.193 2024-02-20 14:15:08.193 9000 TIP 432466 21398 6010673 2024-02-20 14:16:10.861 2024-02-20 14:16:10.861 1000 FEE 432494 5017 6010677 2024-02-20 14:16:32.277 2024-02-20 14:16:32.277 0 FEE 432491 21338 6010679 2024-02-20 14:16:53.394 2024-02-20 14:16:53.394 0 FEE 432496 1817 6010697 2024-02-20 14:18:48.469 2024-02-20 14:18:48.469 0 FEE 432489 6499 6010701 2024-02-20 14:20:02.871 2024-02-20 14:20:02.871 1000 STREAM 141924 7675 6010716 2024-02-20 14:21:01.042 2024-02-20 14:21:01.042 1000 FEE 432503 992 6010717 2024-02-20 14:21:02.864 2024-02-20 14:21:02.864 1000 STREAM 141924 974 6010726 2024-02-20 14:21:13.531 2024-02-20 14:21:13.531 8300 FEE 432311 951 6010727 2024-02-20 14:21:13.531 2024-02-20 14:21:13.531 74700 TIP 432311 8284 6010728 2024-02-20 14:21:13.866 2024-02-20 14:21:13.866 8300 FEE 432311 4654 6010729 2024-02-20 14:21:13.866 2024-02-20 14:21:13.866 74700 TIP 432311 20577 6010740 2024-02-20 14:21:15.023 2024-02-20 14:21:15.023 1000 FEE 432477 8796 6010741 2024-02-20 14:21:15.023 2024-02-20 14:21:15.023 9000 TIP 432477 6030 6010756 2024-02-20 14:21:17.017 2024-02-20 14:21:17.017 8300 FEE 432320 670 6010757 2024-02-20 14:21:17.017 2024-02-20 14:21:17.017 74700 TIP 432320 19446 6010787 2024-02-20 14:23:02.88 2024-02-20 14:23:02.88 1000 STREAM 141924 17011 6010821 2024-02-20 14:25:53.119 2024-02-20 14:25:53.119 1000 FEE 432493 16704 6010822 2024-02-20 14:25:53.119 2024-02-20 14:25:53.119 9000 TIP 432493 21466 6010823 2024-02-20 14:26:02.918 2024-02-20 14:26:02.918 1000 STREAM 141924 16289 6010832 2024-02-20 14:27:02.925 2024-02-20 14:27:02.925 1000 STREAM 141924 19661 6010853 2024-02-20 14:27:40.908 2024-02-20 14:27:40.908 3400 FEE 432339 1428 6010854 2024-02-20 14:27:40.908 2024-02-20 14:27:40.908 30600 TIP 432339 4322 6010865 2024-02-20 14:29:17.218 2024-02-20 14:29:17.218 100000 FEE 432511 19976 6010869 2024-02-20 14:31:02.954 2024-02-20 14:31:02.954 1000 STREAM 141924 4654 6010873 2024-02-20 14:31:38.635 2024-02-20 14:31:38.635 1000 FEE 432515 8360 6010892 2024-02-20 14:33:42.183 2024-02-20 14:33:42.183 800 FEE 432426 8985 6010893 2024-02-20 14:33:42.183 2024-02-20 14:33:42.183 7200 TIP 432426 18208 6010898 2024-02-20 14:33:59.014 2024-02-20 14:33:59.014 1000 FEE 432518 18231 6010922 2024-02-20 14:35:19.185 2024-02-20 14:35:19.185 8300 FEE 432517 15762 6010923 2024-02-20 14:35:19.185 2024-02-20 14:35:19.185 74700 TIP 432517 17526 6010934 2024-02-20 14:35:21.25 2024-02-20 14:35:21.25 1000 FEE 432522 19332 6010939 2024-02-20 14:36:03.015 2024-02-20 14:36:03.015 1000 STREAM 141924 17106 6010944 2024-02-20 14:36:25.806 2024-02-20 14:36:25.806 1000 FEE 432525 11491 6010957 2024-02-20 14:37:03.021 2024-02-20 14:37:03.021 1000 STREAM 141924 5701 6010968 2024-02-20 14:38:03.025 2024-02-20 14:38:03.025 1000 STREAM 141924 19572 6010975 2024-02-20 14:38:48.78 2024-02-20 14:38:48.78 1000 FEE 432472 19151 6010976 2024-02-20 14:38:48.78 2024-02-20 14:38:48.78 9000 TIP 432472 21480 6010988 2024-02-20 14:39:03.031 2024-02-20 14:39:03.031 1000 STREAM 141924 1970 6010997 2024-02-20 14:40:17.977 2024-02-20 14:40:17.977 1000 FEE 432529 20376 6011009 2024-02-20 14:42:35.267 2024-02-20 14:42:35.267 1000 FEE 432534 7185 6011021 2024-02-20 14:43:03.055 2024-02-20 14:43:03.055 1000 STREAM 141924 1983 6011069 2024-02-20 14:43:41.396 2024-02-20 14:43:41.396 2300 FEE 432527 18517 6011070 2024-02-20 14:43:41.396 2024-02-20 14:43:41.396 20700 TIP 432527 2264 6011072 2024-02-20 14:43:53.873 2024-02-20 14:43:53.873 400 FEE 432495 16532 6011073 2024-02-20 14:43:53.873 2024-02-20 14:43:53.873 3600 TIP 432495 7891 6011074 2024-02-20 14:43:56.511 2024-02-20 14:43:56.511 400 FEE 432343 4304 6011075 2024-02-20 14:43:56.511 2024-02-20 14:43:56.511 3600 TIP 432343 18816 6011077 2024-02-20 14:44:03.069 2024-02-20 14:44:03.069 1000 STREAM 141924 9290 6011086 2024-02-20 14:45:25.74 2024-02-20 14:45:25.74 1000 FEE 432541 14941 6011104 2024-02-20 14:45:52.777 2024-02-20 14:45:52.777 2700 FEE 432535 20133 6011105 2024-02-20 14:45:52.777 2024-02-20 14:45:52.777 24300 TIP 432535 20588 6011123 2024-02-20 14:47:05.107 2024-02-20 14:47:05.107 1000 STREAM 141924 1549 6011135 2024-02-20 14:48:02.513 2024-02-20 14:48:02.513 1000 FEE 432545 4043 6011146 2024-02-20 14:50:11.05 2024-02-20 14:50:11.05 50000 FEE 432547 10530 6011151 2024-02-20 14:51:50.063 2024-02-20 14:51:50.063 1000 FEE 432426 9418 6011152 2024-02-20 14:51:50.063 2024-02-20 14:51:50.063 9000 TIP 432426 9833 6011176 2024-02-20 14:53:17.83 2024-02-20 14:53:17.83 1000 FEE 432517 10393 6011177 2024-02-20 14:53:17.83 2024-02-20 14:53:17.83 9000 TIP 432517 21624 6011202 2024-02-20 14:55:22.2 2024-02-20 14:55:22.2 900 FEE 432477 3456 6011203 2024-02-20 14:55:22.2 2024-02-20 14:55:22.2 8100 TIP 432477 11458 6011204 2024-02-20 14:55:24.12 2024-02-20 14:55:24.12 9000 FEE 432477 9364 6011205 2024-02-20 14:55:24.12 2024-02-20 14:55:24.12 81000 TIP 432477 21172 6011222 2024-02-20 14:57:19.005 2024-02-20 14:57:19.005 1000 FEE 432553 1092 6011232 2024-02-20 14:57:51.194 2024-02-20 14:57:51.194 900 FEE 432444 644 6011233 2024-02-20 14:57:51.194 2024-02-20 14:57:51.194 8100 TIP 432444 14271 6011253 2024-02-20 14:58:26.399 2024-02-20 14:58:26.399 2100 FEE 431844 5725 6011254 2024-02-20 14:58:26.399 2024-02-20 14:58:26.399 18900 TIP 431844 20646 6011269 2024-02-20 14:58:35.417 2024-02-20 14:58:35.417 2100 FEE 432259 21521 6011270 2024-02-20 14:58:35.417 2024-02-20 14:58:35.417 18900 TIP 432259 1003 6011277 2024-02-20 14:59:19.945 2024-02-20 14:59:19.945 1000 FEE 432557 20663 6011297 2024-02-20 15:00:45.063 2024-02-20 15:00:45.063 1000 FEE 432491 777 6011298 2024-02-20 15:00:45.063 2024-02-20 15:00:45.063 9000 TIP 432491 21612 6011301 2024-02-20 15:03:03.163 2024-02-20 15:03:03.163 1000 STREAM 141924 9166 6011302 2024-02-20 15:03:33.39 2024-02-20 15:03:33.39 5000 FEE 432564 21014 6011320 2024-02-20 15:06:03.169 2024-02-20 15:06:03.169 1000 STREAM 141924 900 6011332 2024-02-20 15:07:03.175 2024-02-20 15:07:03.175 1000 STREAM 141924 10007 6011335 2024-02-20 15:07:30.207 2024-02-20 15:07:30.207 1000 FEE 432571 1468 6011344 2024-02-20 15:08:56.41 2024-02-20 15:08:56.41 2100 FEE 432571 20066 6011345 2024-02-20 15:08:56.41 2024-02-20 15:08:56.41 18900 TIP 432571 19484 6011360 2024-02-20 15:10:01.205 2024-02-20 15:10:01.205 2100 FEE 432464 9337 6011361 2024-02-20 15:10:01.205 2024-02-20 15:10:01.205 18900 TIP 432464 20619 6011367 2024-02-20 15:10:31.335 2024-02-20 15:10:31.335 2100 FEE 432477 14385 6011368 2024-02-20 15:10:31.335 2024-02-20 15:10:31.335 18900 TIP 432477 6361 6011369 2024-02-20 15:10:34.321 2024-02-20 15:10:34.321 1000 FEE 432574 1611 6011373 2024-02-20 15:10:37.872 2024-02-20 15:10:37.872 2300 FEE 432563 12334 6011374 2024-02-20 15:10:37.872 2024-02-20 15:10:37.872 20700 TIP 432563 10731 6011375 2024-02-20 15:10:38.005 2024-02-20 15:10:38.005 2300 FEE 432563 657 6011376 2024-02-20 15:10:38.005 2024-02-20 15:10:38.005 20700 TIP 432563 6555 6011398 2024-02-20 15:12:03.196 2024-02-20 15:12:03.196 1000 STREAM 141924 2056 6011405 2024-02-20 15:12:37.241 2024-02-20 15:12:37.241 10000 FEE 432575 3544 6011406 2024-02-20 15:12:37.241 2024-02-20 15:12:37.241 90000 TIP 432575 1773 6011408 2024-02-20 15:13:03.195 2024-02-20 15:13:03.195 1000 STREAM 141924 12139 6011410 2024-02-20 15:14:03.199 2024-02-20 15:14:03.199 1000 STREAM 141924 18743 6011428 2024-02-20 15:15:03.198 2024-02-20 15:15:03.198 1000 STREAM 141924 9669 6011462 2024-02-20 15:17:03.199 2024-02-20 15:17:03.199 1000 STREAM 141924 4313 6011477 2024-02-20 15:17:36.201 2024-02-20 15:17:36.201 2100 FEE 432566 18637 6011478 2024-02-20 15:17:36.201 2024-02-20 15:17:36.201 18900 TIP 432566 7827 6011484 2024-02-20 15:18:03.201 2024-02-20 15:18:03.201 1000 STREAM 141924 20157 6011498 2024-02-20 15:20:00.491 2024-02-20 15:20:00.491 1000 FEE 432590 13544 6011499 2024-02-20 15:20:00.491 2024-02-20 15:20:00.491 9000 TIP 432590 13365 6011500 2024-02-20 15:20:03.204 2024-02-20 15:20:03.204 1000 STREAM 141924 1495 6010732 2024-02-20 14:21:14.361 2024-02-20 14:21:14.361 8300 FEE 432311 1044 6010733 2024-02-20 14:21:14.361 2024-02-20 14:21:14.361 74700 TIP 432311 18101 6010742 2024-02-20 14:21:15.919 2024-02-20 14:21:15.919 8300 FEE 432320 21296 6010743 2024-02-20 14:21:15.919 2024-02-20 14:21:15.919 74700 TIP 432320 20858 6010744 2024-02-20 14:21:15.948 2024-02-20 14:21:15.948 8300 FEE 432320 18357 6010745 2024-02-20 14:21:15.948 2024-02-20 14:21:15.948 74700 TIP 432320 18815 6010746 2024-02-20 14:21:16.447 2024-02-20 14:21:16.447 8300 FEE 432320 998 6010747 2024-02-20 14:21:16.447 2024-02-20 14:21:16.447 74700 TIP 432320 1596 6010760 2024-02-20 14:21:17.225 2024-02-20 14:21:17.225 8300 FEE 432320 18832 6010761 2024-02-20 14:21:17.225 2024-02-20 14:21:17.225 74700 TIP 432320 19886 6010785 2024-02-20 14:23:00.625 2024-02-20 14:23:00.625 4000 FEE 432493 6327 6010786 2024-02-20 14:23:00.625 2024-02-20 14:23:00.625 36000 TIP 432493 19435 6010788 2024-02-20 14:23:11.528 2024-02-20 14:23:11.528 2100 FEE 432411 622 6010789 2024-02-20 14:23:11.528 2024-02-20 14:23:11.528 18900 TIP 432411 2776 6010805 2024-02-20 14:24:42.61 2024-02-20 14:24:42.61 1000 FEE 432506 20563 6010820 2024-02-20 14:25:46.62 2024-02-20 14:25:46.62 1000 FEE 432508 14731 6010824 2024-02-20 14:26:03.27 2024-02-20 14:26:03.27 1000 FEE 432432 9863 6010825 2024-02-20 14:26:03.27 2024-02-20 14:26:03.27 9000 TIP 432432 16250 6010857 2024-02-20 14:27:48.057 2024-02-20 14:27:48.057 1000 FEE 432208 5852 6010858 2024-02-20 14:27:48.057 2024-02-20 14:27:48.057 9000 TIP 432208 13798 6010876 2024-02-20 14:33:02.642 2024-02-20 14:33:02.642 3400 FEE 432311 10469 6010877 2024-02-20 14:33:02.642 2024-02-20 14:33:02.642 30600 TIP 432311 12220 6010910 2024-02-20 14:35:13.962 2024-02-20 14:35:13.962 24900 FEE 432517 18005 6010911 2024-02-20 14:35:13.962 2024-02-20 14:35:13.962 224100 TIP 432517 20059 6010914 2024-02-20 14:35:16.011 2024-02-20 14:35:16.011 16600 FEE 432517 19158 6010915 2024-02-20 14:35:16.011 2024-02-20 14:35:16.011 149400 TIP 432517 21556 6010916 2024-02-20 14:35:16.334 2024-02-20 14:35:16.334 8300 FEE 432517 14910 6010917 2024-02-20 14:35:16.334 2024-02-20 14:35:16.334 74700 TIP 432517 18829 6010920 2024-02-20 14:35:19.028 2024-02-20 14:35:19.028 8300 FEE 432517 6555 6010921 2024-02-20 14:35:19.028 2024-02-20 14:35:19.028 74700 TIP 432517 10530 6010926 2024-02-20 14:35:19.855 2024-02-20 14:35:19.855 8300 FEE 432517 5538 6010927 2024-02-20 14:35:19.855 2024-02-20 14:35:19.855 74700 TIP 432517 17727 6010928 2024-02-20 14:35:19.974 2024-02-20 14:35:19.974 8300 FEE 432517 16954 6010929 2024-02-20 14:35:19.974 2024-02-20 14:35:19.974 74700 TIP 432517 11443 6010940 2024-02-20 14:36:03.488 2024-02-20 14:36:03.488 100 FEE 432113 21271 6010941 2024-02-20 14:36:03.488 2024-02-20 14:36:03.488 900 TIP 432113 18865 6010942 2024-02-20 14:36:04.172 2024-02-20 14:36:04.172 1000 FEE 432523 15160 6010945 2024-02-20 14:36:26.881 2024-02-20 14:36:26.881 1000 FEE 432526 20302 6010989 2024-02-20 14:39:04.757 2024-02-20 14:39:04.757 1000 FEE 432528 17172 6011019 2024-02-20 14:42:57.166 2024-02-20 14:42:57.166 2100 FEE 426052 2195 6011020 2024-02-20 14:42:57.166 2024-02-20 14:42:57.166 18900 TIP 426052 21437 6011076 2024-02-20 14:44:02.681 2024-02-20 14:44:02.681 210000 FEE 432539 9366 6011119 2024-02-20 14:46:46.136 2024-02-20 14:46:46.136 5000 FEE 432517 20861 6011120 2024-02-20 14:46:46.136 2024-02-20 14:46:46.136 45000 TIP 432517 20058 6011133 2024-02-20 14:47:42.522 2024-02-20 14:47:42.522 1000 FEE 432542 13361 6011134 2024-02-20 14:47:42.522 2024-02-20 14:47:42.522 9000 TIP 432542 7772 6011162 2024-02-20 14:53:07.675 2024-02-20 14:53:07.675 1000 FEE 432428 20102 6011163 2024-02-20 14:53:07.675 2024-02-20 14:53:07.675 9000 TIP 432428 16706 6011195 2024-02-20 14:54:53.851 2024-02-20 14:54:53.851 1000 FEE 432311 2525 6011196 2024-02-20 14:54:53.851 2024-02-20 14:54:53.851 9000 TIP 432311 19243 6011207 2024-02-20 14:55:35.645 2024-02-20 14:55:35.645 83000 DONT_LIKE_THIS 432530 7125 6011219 2024-02-20 14:56:52.283 2024-02-20 14:56:52.283 1000 FEE 432491 19836 6011220 2024-02-20 14:56:52.283 2024-02-20 14:56:52.283 9000 TIP 432491 16848 6011234 2024-02-20 14:57:52.068 2024-02-20 14:57:52.068 1000 FEE 432511 18736 6011235 2024-02-20 14:57:52.068 2024-02-20 14:57:52.068 9000 TIP 432511 21139 6011239 2024-02-20 14:58:07.595 2024-02-20 14:58:07.595 700 FEE 432471 21083 6011240 2024-02-20 14:58:07.595 2024-02-20 14:58:07.595 6300 TIP 432471 16954 6011259 2024-02-20 14:58:31.837 2024-02-20 14:58:31.837 2100 FEE 432337 15925 6011260 2024-02-20 14:58:31.837 2024-02-20 14:58:31.837 18900 TIP 432337 3729 6011261 2024-02-20 14:58:33.013 2024-02-20 14:58:33.013 2100 FEE 432466 17217 6011262 2024-02-20 14:58:33.013 2024-02-20 14:58:33.013 18900 TIP 432466 1611 6011278 2024-02-20 14:59:30.188 2024-02-20 14:59:30.188 1000 FEE 432517 7869 6011279 2024-02-20 14:59:30.188 2024-02-20 14:59:30.188 9000 TIP 432517 699 6011289 2024-02-20 15:00:09.738 2024-02-20 15:00:09.738 1000 FEE 432562 19570 6011303 2024-02-20 15:03:38.226 2024-02-20 15:03:38.226 1000 FEE 432565 20555 6011314 2024-02-20 15:05:23.868 2024-02-20 15:05:23.868 1000 FEE 432566 18717 6011337 2024-02-20 15:08:05.299 2024-02-20 15:08:05.299 2100 FEE 432517 1751 6011338 2024-02-20 15:08:05.299 2024-02-20 15:08:05.299 18900 TIP 432517 5527 6011349 2024-02-20 15:09:24.349 2024-02-20 15:09:24.349 1000 FEE 432563 21406 6011350 2024-02-20 15:09:24.349 2024-02-20 15:09:24.349 9000 TIP 432563 9496 6011352 2024-02-20 15:09:34.759 2024-02-20 15:09:34.759 2100 FEE 432311 2596 6011353 2024-02-20 15:09:34.759 2024-02-20 15:09:34.759 18900 TIP 432311 4062 6011392 2024-02-20 15:11:18.664 2024-02-20 15:11:18.664 2100 FEE 432382 1092 6011393 2024-02-20 15:11:18.664 2024-02-20 15:11:18.664 18900 TIP 432382 21520 6011394 2024-02-20 15:11:21.422 2024-02-20 15:11:21.422 2100 FEE 432392 19267 6011395 2024-02-20 15:11:21.422 2024-02-20 15:11:21.422 18900 TIP 432392 1602 6011415 2024-02-20 15:14:34.713 2024-02-20 15:14:34.713 1000 FEE 432582 20424 6011416 2024-02-20 15:14:39.521 2024-02-20 15:14:39.521 800 FEE 432572 768 6011417 2024-02-20 15:14:39.521 2024-02-20 15:14:39.521 7200 TIP 432572 20751 6011432 2024-02-20 15:15:51.004 2024-02-20 15:15:51.004 2300 FEE 432551 21275 6011433 2024-02-20 15:15:51.004 2024-02-20 15:15:51.004 20700 TIP 432551 20439 6011444 2024-02-20 15:15:52.415 2024-02-20 15:15:52.415 2300 FEE 432551 15075 6011445 2024-02-20 15:15:52.415 2024-02-20 15:15:52.415 20700 TIP 432551 14489 6011456 2024-02-20 15:16:47.584 2024-02-20 15:16:47.584 800 FEE 432563 4118 6011457 2024-02-20 15:16:47.584 2024-02-20 15:16:47.584 7200 TIP 432563 889 6011479 2024-02-20 15:17:38.778 2024-02-20 15:17:38.778 2100 FEE 432581 4313 6011480 2024-02-20 15:17:38.778 2024-02-20 15:17:38.778 18900 TIP 432581 16355 6011487 2024-02-20 15:18:43.052 2024-02-20 15:18:43.052 1000 FEE 432587 21463 6011497 2024-02-20 15:19:48.019 2024-02-20 15:19:48.019 1000 FEE 432590 3979 6011518 2024-02-20 15:24:57.434 2024-02-20 15:24:57.434 900 FEE 432576 19263 6011519 2024-02-20 15:24:57.434 2024-02-20 15:24:57.434 8100 TIP 432576 6419 6011525 2024-02-20 15:25:31.216 2024-02-20 15:25:31.216 100 FEE 432596 13398 6011526 2024-02-20 15:25:31.216 2024-02-20 15:25:31.216 900 TIP 432596 8385 6011527 2024-02-20 15:25:31.542 2024-02-20 15:25:31.542 100 FEE 432596 21339 6011528 2024-02-20 15:25:31.542 2024-02-20 15:25:31.542 900 TIP 432596 917 6011534 2024-02-20 15:25:36.32 2024-02-20 15:25:36.32 100 FEE 432529 12272 6011535 2024-02-20 15:25:36.32 2024-02-20 15:25:36.32 900 TIP 432529 9367 6011542 2024-02-20 15:25:38.39 2024-02-20 15:25:38.39 100 FEE 432580 837 6011543 2024-02-20 15:25:38.39 2024-02-20 15:25:38.39 900 TIP 432580 19690 6011544 2024-02-20 15:25:38.594 2024-02-20 15:25:38.594 100 FEE 432580 1007 6011545 2024-02-20 15:25:38.594 2024-02-20 15:25:38.594 900 TIP 432580 13198 6011554 2024-02-20 15:25:41.067 2024-02-20 15:25:41.067 100 FEE 432534 18956 6011555 2024-02-20 15:25:41.067 2024-02-20 15:25:41.067 900 TIP 432534 16004 6011571 2024-02-20 15:25:49.857 2024-02-20 15:25:49.857 100 FEE 432414 18310 6011572 2024-02-20 15:25:49.857 2024-02-20 15:25:49.857 900 TIP 432414 14857 6011585 2024-02-20 15:29:48.727 2024-02-20 15:29:48.727 4400 FEE 428356 19615 6011586 2024-02-20 15:29:48.727 2024-02-20 15:29:48.727 39600 TIP 428356 6384 6010766 2024-02-20 14:21:17.566 2024-02-20 14:21:17.566 8300 FEE 432320 20891 6010767 2024-02-20 14:21:17.566 2024-02-20 14:21:17.566 74700 TIP 432320 4079 6010795 2024-02-20 14:23:42.921 2024-02-20 14:23:42.921 800 FEE 430901 770 6010796 2024-02-20 14:23:42.921 2024-02-20 14:23:42.921 7200 TIP 430901 5806 6010806 2024-02-20 14:24:57.206 2024-02-20 14:24:57.206 800 FEE 430631 12930 6010807 2024-02-20 14:24:57.206 2024-02-20 14:24:57.206 7200 TIP 430631 5728 6010811 2024-02-20 14:25:13.986 2024-02-20 14:25:13.986 1000 FEE 432507 16948 6010816 2024-02-20 14:25:41.773 2024-02-20 14:25:41.773 800 FEE 430664 4378 6010817 2024-02-20 14:25:41.773 2024-02-20 14:25:41.773 7200 TIP 430664 7989 6010828 2024-02-20 14:26:23.212 2024-02-20 14:26:23.212 1000 FEE 432410 633 6010829 2024-02-20 14:26:23.212 2024-02-20 14:26:23.212 9000 TIP 432410 998 6010847 2024-02-20 14:27:29.345 2024-02-20 14:27:29.345 1000 FEE 432384 19785 6010848 2024-02-20 14:27:29.345 2024-02-20 14:27:29.345 9000 TIP 432384 21361 6010883 2024-02-20 14:33:28.302 2024-02-20 14:33:28.302 10000 FEE 432517 16929 6010896 2024-02-20 14:33:54.841 2024-02-20 14:33:54.841 2100 FEE 432477 20087 6010897 2024-02-20 14:33:54.841 2024-02-20 14:33:54.841 18900 TIP 432477 14260 6010901 2024-02-20 14:34:33.923 2024-02-20 14:34:33.923 1000 FEE 432520 19282 6010906 2024-02-20 14:35:13.264 2024-02-20 14:35:13.264 8300 FEE 432517 4250 6010907 2024-02-20 14:35:13.264 2024-02-20 14:35:13.264 74700 TIP 432517 18402 6010946 2024-02-20 14:36:34.241 2024-02-20 14:36:34.241 2100 FEE 432487 9350 6010947 2024-02-20 14:36:34.241 2024-02-20 14:36:34.241 18900 TIP 432487 21457 6010950 2024-02-20 14:36:54.995 2024-02-20 14:36:54.995 100 FEE 256770 16942 6010951 2024-02-20 14:36:54.995 2024-02-20 14:36:54.995 900 TIP 256770 1881 6010954 2024-02-20 14:37:01.134 2024-02-20 14:37:01.134 900 FEE 256770 18392 6010955 2024-02-20 14:37:01.134 2024-02-20 14:37:01.134 8100 TIP 256770 977 6010958 2024-02-20 14:37:11.169 2024-02-20 14:37:11.169 100000 DONT_LIKE_THIS 432479 2390 6010969 2024-02-20 14:38:03.481 2024-02-20 14:38:03.481 8300 FEE 432464 2327 6010970 2024-02-20 14:38:03.481 2024-02-20 14:38:03.481 74700 TIP 432464 20546 6011002 2024-02-20 14:41:26.522 2024-02-20 14:41:26.522 100000 FEE 432531 10094 6011003 2024-02-20 14:41:27.102 2024-02-20 14:41:27.102 1000 FEE 432532 14650 6011053 2024-02-20 14:43:39.526 2024-02-20 14:43:39.526 2300 FEE 432527 4079 6011054 2024-02-20 14:43:39.526 2024-02-20 14:43:39.526 20700 TIP 432527 20596 6011059 2024-02-20 14:43:39.916 2024-02-20 14:43:39.916 2300 FEE 432527 7992 6011060 2024-02-20 14:43:39.916 2024-02-20 14:43:39.916 20700 TIP 432527 897 6011071 2024-02-20 14:43:47.777 2024-02-20 14:43:47.777 0 FEE 432537 15119 6011078 2024-02-20 14:44:14.119 2024-02-20 14:44:14.119 1000 FEE 432536 21274 6011079 2024-02-20 14:44:14.119 2024-02-20 14:44:14.119 9000 TIP 432536 20045 6011094 2024-02-20 14:45:36.701 2024-02-20 14:45:36.701 2700 FEE 432538 9350 6011095 2024-02-20 14:45:36.701 2024-02-20 14:45:36.701 24300 TIP 432538 11165 6011098 2024-02-20 14:45:37.033 2024-02-20 14:45:37.033 2700 FEE 432538 891 6011099 2024-02-20 14:45:37.033 2024-02-20 14:45:37.033 24300 TIP 432538 11450 6011100 2024-02-20 14:45:37.489 2024-02-20 14:45:37.489 2700 FEE 432538 937 6011101 2024-02-20 14:45:37.489 2024-02-20 14:45:37.489 24300 TIP 432538 12289 6011108 2024-02-20 14:45:53.17 2024-02-20 14:45:53.17 2700 FEE 432535 19458 6011109 2024-02-20 14:45:53.17 2024-02-20 14:45:53.17 24300 TIP 432535 10611 6011124 2024-02-20 14:47:08.242 2024-02-20 14:47:08.242 1000 FEE 432544 10698 6011149 2024-02-20 14:50:36.901 2024-02-20 14:50:36.901 1000 FEE 432548 14731 6011160 2024-02-20 14:52:46.306 2024-02-20 14:52:46.306 1000 FEE 432549 14688 6011164 2024-02-20 14:53:11.833 2024-02-20 14:53:11.833 1000 FEE 432517 19502 6011165 2024-02-20 14:53:11.833 2024-02-20 14:53:11.833 9000 TIP 432517 686 6011172 2024-02-20 14:53:16.179 2024-02-20 14:53:16.179 1000 FEE 432517 2000 6011173 2024-02-20 14:53:16.179 2024-02-20 14:53:16.179 9000 TIP 432517 11829 6011237 2024-02-20 14:58:05.531 2024-02-20 14:58:05.531 700 FEE 432492 4654 6011238 2024-02-20 14:58:05.531 2024-02-20 14:58:05.531 6300 TIP 432492 19016 6011241 2024-02-20 14:58:20.162 2024-02-20 14:58:20.162 2100 FEE 432517 15266 6011242 2024-02-20 14:58:20.162 2024-02-20 14:58:20.162 18900 TIP 432517 21437 6011249 2024-02-20 14:58:24.069 2024-02-20 14:58:24.069 2100 FEE 432404 19151 6011250 2024-02-20 14:58:24.069 2024-02-20 14:58:24.069 18900 TIP 432404 3544 6011296 2024-02-20 15:00:33.454 2024-02-20 15:00:33.454 210000 FEE 432563 20495 6011308 2024-02-20 15:03:44.445 2024-02-20 15:03:44.445 700 FEE 432550 2039 6011309 2024-02-20 15:03:44.445 2024-02-20 15:03:44.445 6300 TIP 432550 5637 6011347 2024-02-20 15:09:06.221 2024-02-20 15:09:06.221 2100 FEE 432288 913 6011348 2024-02-20 15:09:06.221 2024-02-20 15:09:06.221 18900 TIP 432288 1576 6011403 2024-02-20 15:12:21.394 2024-02-20 15:12:21.394 1000 FEE 432576 1890 6011404 2024-02-20 15:12:25.141 2024-02-20 15:12:25.141 1000 FEE 432577 1733 6011411 2024-02-20 15:14:14.177 2024-02-20 15:14:14.177 1000 FEE 432580 9084 6011440 2024-02-20 15:15:52.151 2024-02-20 15:15:52.151 2300 FEE 432551 19987 6011441 2024-02-20 15:15:52.151 2024-02-20 15:15:52.151 20700 TIP 432551 21424 6011460 2024-02-20 15:16:47.941 2024-02-20 15:16:47.941 800 FEE 432563 13046 6011461 2024-02-20 15:16:47.941 2024-02-20 15:16:47.941 7200 TIP 432563 14657 6011465 2024-02-20 15:17:17.656 2024-02-20 15:17:17.656 1000 FEE 432579 3400 6011466 2024-02-20 15:17:17.656 2024-02-20 15:17:17.656 9000 TIP 432579 12049 6011483 2024-02-20 15:17:58.827 2024-02-20 15:17:58.827 1000 FEE 432585 12160 6011493 2024-02-20 15:19:11.37 2024-02-20 15:19:11.37 2100 FEE 432582 21422 6011494 2024-02-20 15:19:11.37 2024-02-20 15:19:11.37 18900 TIP 432582 21269 6011512 2024-02-20 15:23:04.69 2024-02-20 15:23:04.69 1000 FEE 432595 20901 6011516 2024-02-20 15:24:57.269 2024-02-20 15:24:57.269 100 FEE 432576 15560 6011517 2024-02-20 15:24:57.269 2024-02-20 15:24:57.269 900 TIP 432576 667 6011538 2024-02-20 15:25:36.693 2024-02-20 15:25:36.693 100 FEE 432529 19905 6011539 2024-02-20 15:25:36.693 2024-02-20 15:25:36.693 900 TIP 432529 2963 6011575 2024-02-20 15:27:14.722 2024-02-20 15:27:14.722 1000 FEE 432600 17722 6011583 2024-02-20 15:29:42.084 2024-02-20 15:29:42.084 1000 FEE 432603 18626 6011587 2024-02-20 15:29:57.144 2024-02-20 15:29:57.144 100 FEE 432563 9611 6011588 2024-02-20 15:29:57.144 2024-02-20 15:29:57.144 900 TIP 432563 9655 6011589 2024-02-20 15:29:57.317 2024-02-20 15:29:57.317 900 FEE 432563 10273 6011590 2024-02-20 15:29:57.317 2024-02-20 15:29:57.317 8100 TIP 432563 19267 6011603 2024-02-20 15:32:37.352 2024-02-20 15:32:37.352 3000 FEE 432517 17514 6011604 2024-02-20 15:32:37.352 2024-02-20 15:32:37.352 27000 TIP 432517 18468 6011619 2024-02-20 15:34:28.934 2024-02-20 15:34:28.934 1100 FEE 432317 985 6011620 2024-02-20 15:34:28.934 2024-02-20 15:34:28.934 9900 TIP 432317 19018 6011632 2024-02-20 15:39:12.517 2024-02-20 15:39:12.517 0 FEE 432608 20963 6011638 2024-02-20 15:40:27.255 2024-02-20 15:40:27.255 1000 FEE 432610 9833 6011642 2024-02-20 15:40:40.457 2024-02-20 15:40:40.457 1000 FEE 432611 16177 6011646 2024-02-20 15:41:20.857 2024-02-20 15:41:20.857 1000 FEE 432612 8380 6011663 2024-02-20 15:42:44.401 2024-02-20 15:42:44.401 100 FEE 432517 17798 6011664 2024-02-20 15:42:44.401 2024-02-20 15:42:44.401 900 TIP 432517 12334 6011673 2024-02-20 15:42:59.937 2024-02-20 15:42:59.937 512000 FEE 432615 11423 6011735 2024-02-20 15:46:45.461 2024-02-20 15:46:45.461 1000 FEE 432623 7760 6011751 2024-02-20 15:47:30.613 2024-02-20 15:47:30.613 100 FEE 432605 16387 6011752 2024-02-20 15:47:30.613 2024-02-20 15:47:30.613 900 TIP 432605 10007 6011793 2024-02-20 15:49:57.959 2024-02-20 15:49:57.959 2000 FEE 430466 11716 6011794 2024-02-20 15:49:57.959 2024-02-20 15:49:57.959 18000 TIP 430466 14818 6011839 2024-02-20 15:54:49.003 2024-02-20 15:54:49.003 1000 FEE 432635 17046 6011843 2024-02-20 15:55:37.53 2024-02-20 15:55:37.53 2100 FEE 432627 8569 6011844 2024-02-20 15:55:37.53 2024-02-20 15:55:37.53 18900 TIP 432627 12821 6011856 2024-02-20 15:57:32.214 2024-02-20 15:57:32.214 900 FEE 432293 19852 6011857 2024-02-20 15:57:32.214 2024-02-20 15:57:32.214 8100 TIP 432293 1136 6010784 2024-02-20 14:22:02.861 2024-02-20 14:22:02.861 1000 STREAM 141924 17116 6010802 2024-02-20 14:24:02.894 2024-02-20 14:24:02.894 1000 STREAM 141924 16004 6010810 2024-02-20 14:25:02.905 2024-02-20 14:25:02.905 1000 STREAM 141924 10007 6010859 2024-02-20 14:28:02.954 2024-02-20 14:28:02.954 1000 STREAM 141924 18956 6010864 2024-02-20 14:29:02.956 2024-02-20 14:29:02.956 1000 STREAM 141924 1602 6010867 2024-02-20 14:30:02.978 2024-02-20 14:30:02.978 1000 STREAM 141924 16212 6010874 2024-02-20 14:32:02.965 2024-02-20 14:32:02.965 1000 STREAM 141924 19158 6010878 2024-02-20 14:33:02.978 2024-02-20 14:33:02.978 1000 STREAM 141924 20102 6010899 2024-02-20 14:34:03.002 2024-02-20 14:34:03.002 1000 STREAM 141924 17708 6010903 2024-02-20 14:35:03.014 2024-02-20 14:35:03.014 1000 STREAM 141924 1244 6010990 2024-02-20 14:40:03.061 2024-02-20 14:40:03.061 1000 STREAM 141924 13547 6011001 2024-02-20 14:41:03.042 2024-02-20 14:41:03.042 1000 STREAM 141924 15978 6011008 2024-02-20 14:42:03.051 2024-02-20 14:42:03.051 1000 STREAM 141924 16998 6010792 2024-02-20 14:23:30.448 2024-02-20 14:23:30.448 98000 FEE 432504 13878 6010814 2024-02-20 14:25:41.602 2024-02-20 14:25:41.602 800 FEE 430664 19034 6010815 2024-02-20 14:25:41.602 2024-02-20 14:25:41.602 7200 TIP 430664 1733 6010833 2024-02-20 14:27:04.532 2024-02-20 14:27:04.532 1000 FEE 432389 1800 6010834 2024-02-20 14:27:04.532 2024-02-20 14:27:04.532 9000 TIP 432389 19309 6010839 2024-02-20 14:27:25 2024-02-20 14:27:25 1000 FEE 430920 899 6010840 2024-02-20 14:27:25 2024-02-20 14:27:25 9000 TIP 430920 18736 6010845 2024-02-20 14:27:27.569 2024-02-20 14:27:27.569 1000 FEE 430920 14080 6010846 2024-02-20 14:27:27.569 2024-02-20 14:27:27.569 9000 TIP 430920 980 6010851 2024-02-20 14:27:40.705 2024-02-20 14:27:40.705 3400 FEE 432339 5003 6010852 2024-02-20 14:27:40.705 2024-02-20 14:27:40.705 30600 TIP 432339 11220 6010862 2024-02-20 14:28:52.379 2024-02-20 14:28:52.379 1000000 FEE 430775 954 6010863 2024-02-20 14:28:52.379 2024-02-20 14:28:52.379 9000000 TIP 430775 20276 6010868 2024-02-20 14:30:34.227 2024-02-20 14:30:34.227 1000 FEE 432513 19329 6010870 2024-02-20 14:31:09.545 2024-02-20 14:31:09.545 1000 FEE 432514 9099 6010875 2024-02-20 14:32:03.5 2024-02-20 14:32:03.5 1000 FEE 432516 9275 6010881 2024-02-20 14:33:22.658 2024-02-20 14:33:22.658 2100 FEE 432493 18017 6010882 2024-02-20 14:33:22.658 2024-02-20 14:33:22.658 18900 TIP 432493 16753 6010890 2024-02-20 14:33:41.055 2024-02-20 14:33:41.055 800 FEE 432426 21119 6010891 2024-02-20 14:33:41.055 2024-02-20 14:33:41.055 7200 TIP 432426 4166 6010904 2024-02-20 14:35:13.19 2024-02-20 14:35:13.19 8300 FEE 432517 14385 6010905 2024-02-20 14:35:13.19 2024-02-20 14:35:13.19 74700 TIP 432517 4076 6010930 2024-02-20 14:35:20.009 2024-02-20 14:35:20.009 8300 FEE 432517 664 6010931 2024-02-20 14:35:20.009 2024-02-20 14:35:20.009 74700 TIP 432517 18330 6010879 2024-02-20 14:33:03.411 2024-02-20 14:33:03.411 3400 FEE 432311 999 6010880 2024-02-20 14:33:03.411 2024-02-20 14:33:03.411 30600 TIP 432311 2042 6010884 2024-02-20 14:33:40.815 2024-02-20 14:33:40.815 1000 FEE 432493 21453 6010885 2024-02-20 14:33:40.815 2024-02-20 14:33:40.815 9000 TIP 432493 725 6010902 2024-02-20 14:34:48.321 2024-02-20 14:34:48.321 1000 FEE 432521 2088 6010908 2024-02-20 14:35:13.536 2024-02-20 14:35:13.536 16600 FEE 432517 21555 6010909 2024-02-20 14:35:13.536 2024-02-20 14:35:13.536 149400 TIP 432517 5597 6010918 2024-02-20 14:35:16.476 2024-02-20 14:35:16.476 8300 FEE 432517 20555 6010919 2024-02-20 14:35:16.476 2024-02-20 14:35:16.476 74700 TIP 432517 9529 6010963 2024-02-20 14:37:23.917 2024-02-20 14:37:23.917 83000 DONT_LIKE_THIS 432456 9874 6010964 2024-02-20 14:37:25.731 2024-02-20 14:37:25.731 2100 FEE 432435 21194 6010965 2024-02-20 14:37:25.731 2024-02-20 14:37:25.731 18900 TIP 432435 20254 6010986 2024-02-20 14:38:58.647 2024-02-20 14:38:58.647 21100 FEE 432469 2444 6010987 2024-02-20 14:38:58.647 2024-02-20 14:38:58.647 189900 TIP 432469 14909 6011005 2024-02-20 14:41:40.91 2024-02-20 14:41:40.91 2100 FEE 432527 9200 6011006 2024-02-20 14:41:40.91 2024-02-20 14:41:40.91 18900 TIP 432527 691 6011010 2024-02-20 14:42:38.684 2024-02-20 14:42:38.684 2100 FEE 432389 13854 6011011 2024-02-20 14:42:38.684 2024-02-20 14:42:38.684 18900 TIP 432389 20660 6011028 2024-02-20 14:43:11.963 2024-02-20 14:43:11.963 2100 FEE 432525 1044 6011029 2024-02-20 14:43:11.963 2024-02-20 14:43:11.963 18900 TIP 432525 21356 6011043 2024-02-20 14:43:37.674 2024-02-20 14:43:37.674 2300 FEE 432527 1985 6011044 2024-02-20 14:43:37.674 2024-02-20 14:43:37.674 20700 TIP 432527 21072 6011047 2024-02-20 14:43:37.842 2024-02-20 14:43:37.842 2300 FEE 432527 11298 6011048 2024-02-20 14:43:37.842 2024-02-20 14:43:37.842 20700 TIP 432527 21577 6011081 2024-02-20 14:44:32.726 2024-02-20 14:44:32.726 1600 FEE 432517 681 6011082 2024-02-20 14:44:32.726 2024-02-20 14:44:32.726 14400 TIP 432517 15103 6011131 2024-02-20 14:47:11.035 2024-02-20 14:47:11.035 1000 FEE 431809 19038 6011132 2024-02-20 14:47:11.035 2024-02-20 14:47:11.035 9000 TIP 431809 12122 6011140 2024-02-20 14:49:24.305 2024-02-20 14:49:24.305 1000 FEE 432546 11714 6011147 2024-02-20 14:50:32.475 2024-02-20 14:50:32.475 2100 FEE 432435 19524 6011148 2024-02-20 14:50:32.475 2024-02-20 14:50:32.475 18900 TIP 432435 19652 6011156 2024-02-20 14:52:40.063 2024-02-20 14:52:40.063 3000 FEE 432213 8796 6011157 2024-02-20 14:52:40.063 2024-02-20 14:52:40.063 27000 TIP 432213 20157 6011168 2024-02-20 14:53:14.614 2024-02-20 14:53:14.614 1000 FEE 432517 6765 6011169 2024-02-20 14:53:14.614 2024-02-20 14:53:14.614 9000 TIP 432517 20990 6011184 2024-02-20 14:53:19.929 2024-02-20 14:53:19.929 1000 FEE 432517 12422 6011185 2024-02-20 14:53:19.929 2024-02-20 14:53:19.929 9000 TIP 432517 20840 6011190 2024-02-20 14:53:35.776 2024-02-20 14:53:35.776 1000 FEE 430005 19303 6011191 2024-02-20 14:53:35.776 2024-02-20 14:53:35.776 9000 TIP 430005 12291 6011230 2024-02-20 14:57:51.036 2024-02-20 14:57:51.036 100 FEE 432444 20434 6011231 2024-02-20 14:57:51.036 2024-02-20 14:57:51.036 900 TIP 432444 18517 6011265 2024-02-20 14:58:33.738 2024-02-20 14:58:33.738 100 FEE 432517 5779 6011266 2024-02-20 14:58:33.738 2024-02-20 14:58:33.738 900 TIP 432517 17800 6011267 2024-02-20 14:58:34.281 2024-02-20 14:58:34.281 2100 FEE 432419 17722 6011268 2024-02-20 14:58:34.281 2024-02-20 14:58:34.281 18900 TIP 432419 1745 6011283 2024-02-20 14:59:52.978 2024-02-20 14:59:52.978 1000 FEE 432559 11443 6011292 2024-02-20 15:00:15.567 2024-02-20 15:00:15.567 4000 FEE 432549 13217 6011293 2024-02-20 15:00:15.567 2024-02-20 15:00:15.567 36000 TIP 432549 20745 6011383 2024-02-20 15:10:59.17 2024-02-20 15:10:59.17 2100 FEE 432552 620 6011384 2024-02-20 15:10:59.17 2024-02-20 15:10:59.17 18900 TIP 432552 19848 6011396 2024-02-20 15:11:50.788 2024-02-20 15:11:50.788 2100 FEE 432348 21457 6011397 2024-02-20 15:11:50.788 2024-02-20 15:11:50.788 18900 TIP 432348 9332 6011418 2024-02-20 15:14:39.673 2024-02-20 15:14:39.673 800 FEE 432572 9261 6011419 2024-02-20 15:14:39.673 2024-02-20 15:14:39.673 7200 TIP 432572 21214 6011434 2024-02-20 15:15:51.266 2024-02-20 15:15:51.266 2300 FEE 432551 9552 6011435 2024-02-20 15:15:51.266 2024-02-20 15:15:51.266 20700 TIP 432551 8400 6011436 2024-02-20 15:15:51.338 2024-02-20 15:15:51.338 2300 FEE 432551 15491 6011437 2024-02-20 15:15:51.338 2024-02-20 15:15:51.338 20700 TIP 432551 7966 6011458 2024-02-20 15:16:47.748 2024-02-20 15:16:47.748 800 FEE 432563 19902 6011459 2024-02-20 15:16:47.748 2024-02-20 15:16:47.748 7200 TIP 432563 624 6011485 2024-02-20 15:18:08.831 2024-02-20 15:18:08.831 1000 FEE 432586 795 6011501 2024-02-20 15:20:24.429 2024-02-20 15:20:24.429 1000 FEE 432591 630 6011504 2024-02-20 15:21:23.421 2024-02-20 15:21:23.421 2100 FEE 432541 21503 6011505 2024-02-20 15:21:23.421 2024-02-20 15:21:23.421 18900 TIP 432541 18640 6011508 2024-02-20 15:22:11.469 2024-02-20 15:22:11.469 1000 FEE 432594 4128 6011532 2024-02-20 15:25:35.994 2024-02-20 15:25:35.994 100 FEE 432529 891 6011533 2024-02-20 15:25:35.994 2024-02-20 15:25:35.994 900 TIP 432529 9353 6011548 2024-02-20 15:25:39.017 2024-02-20 15:25:39.017 100 FEE 432580 20272 6011549 2024-02-20 15:25:39.017 2024-02-20 15:25:39.017 900 TIP 432580 19615 6011550 2024-02-20 15:25:39.539 2024-02-20 15:25:39.539 100 FEE 432580 11288 6011551 2024-02-20 15:25:39.539 2024-02-20 15:25:39.539 900 TIP 432580 20099 6011560 2024-02-20 15:25:42.153 2024-02-20 15:25:42.153 100 FEE 432534 21281 6011561 2024-02-20 15:25:42.153 2024-02-20 15:25:42.153 900 TIP 432534 2101 6011584 2024-02-20 15:29:43.216 2024-02-20 15:29:43.216 1000 FEE 432604 1006 6011598 2024-02-20 15:31:47.142 2024-02-20 15:31:47.142 0 FEE 432604 2776 6011600 2024-02-20 15:32:05.352 2024-02-20 15:32:05.352 10000 FEE 432606 20327 6011613 2024-02-20 15:33:05.62 2024-02-20 15:33:05.62 2100 FEE 432574 20660 6011614 2024-02-20 15:33:05.62 2024-02-20 15:33:05.62 18900 TIP 432574 10063 6011615 2024-02-20 15:33:17.747 2024-02-20 15:33:17.747 0 FEE 432605 15858 6011622 2024-02-20 15:35:17.414 2024-02-20 15:35:17.414 1100 FEE 432276 652 6011623 2024-02-20 15:35:17.414 2024-02-20 15:35:17.414 9900 TIP 432276 11220 6011675 2024-02-20 15:43:15.863 2024-02-20 15:43:15.863 1000 FEE 432616 13217 6011686 2024-02-20 15:44:07.139 2024-02-20 15:44:07.139 1000 FEE 432618 9261 6011698 2024-02-20 15:46:03.282 2024-02-20 15:46:03.282 10000 DONT_LIKE_THIS 432311 19030 6011716 2024-02-20 15:46:06.951 2024-02-20 15:46:06.951 8300 FEE 432619 18274 6011717 2024-02-20 15:46:06.951 2024-02-20 15:46:06.951 74700 TIP 432619 11992 6011718 2024-02-20 15:46:07.197 2024-02-20 15:46:07.197 8300 FEE 432619 1650 6011719 2024-02-20 15:46:07.197 2024-02-20 15:46:07.197 74700 TIP 432619 20849 6011732 2024-02-20 15:46:15.157 2024-02-20 15:46:15.157 100 FEE 432140 896 6011733 2024-02-20 15:46:15.157 2024-02-20 15:46:15.157 900 TIP 432140 8541 6011736 2024-02-20 15:46:53.142 2024-02-20 15:46:53.142 1000 FEE 432624 11897 6011796 2024-02-20 15:50:12.298 2024-02-20 15:50:12.298 100 FEE 430311 19541 6011797 2024-02-20 15:50:12.298 2024-02-20 15:50:12.298 900 TIP 430311 16754 6011801 2024-02-20 15:51:05.464 2024-02-20 15:51:05.464 10000 FEE 432579 12708 6011802 2024-02-20 15:51:05.464 2024-02-20 15:51:05.464 90000 TIP 432579 21395 6011813 2024-02-20 15:51:32.781 2024-02-20 15:51:32.781 10000 FEE 432101 13921 6011814 2024-02-20 15:51:32.781 2024-02-20 15:51:32.781 90000 TIP 432101 17321 6011827 2024-02-20 15:54:09.854 2024-02-20 15:54:09.854 1000 FEE 432632 20090 6011864 2024-02-20 15:57:51.905 2024-02-20 15:57:51.905 9000 FEE 432232 19471 6011865 2024-02-20 15:57:51.905 2024-02-20 15:57:51.905 81000 TIP 432232 19905 6011903 2024-02-20 16:07:39.804 2024-02-20 16:07:39.804 1100 FEE 432111 20495 6011904 2024-02-20 16:07:39.804 2024-02-20 16:07:39.804 9900 TIP 432111 5293 6011916 2024-02-20 16:08:22.748 2024-02-20 16:08:22.748 2200 FEE 432563 770 6011917 2024-02-20 16:08:22.748 2024-02-20 16:08:22.748 19800 TIP 432563 12272 6011959 2024-02-20 16:09:37.178 2024-02-20 16:09:37.178 1000 FEE 432642 16348 6012034 2024-02-20 16:16:58.798 2024-02-20 16:16:58.798 1000 FEE 432571 4798 6012035 2024-02-20 16:16:58.798 2024-02-20 16:16:58.798 9000 TIP 432571 5085 6010937 2024-02-20 14:35:58.939 2024-02-20 14:35:58.939 100 FEE 432400 685 6010938 2024-02-20 14:35:58.939 2024-02-20 14:35:58.939 900 TIP 432400 21070 6010943 2024-02-20 14:36:25.44 2024-02-20 14:36:25.44 1000 FEE 432524 9348 6010956 2024-02-20 14:37:02.989 2024-02-20 14:37:02.989 83000 DONT_LIKE_THIS 432480 19033 6010959 2024-02-20 14:37:17.438 2024-02-20 14:37:17.438 2100 FEE 432497 19557 6010960 2024-02-20 14:37:17.438 2024-02-20 14:37:17.438 18900 TIP 432497 11515 6010961 2024-02-20 14:37:18.02 2024-02-20 14:37:18.02 2100 FEE 432524 9026 6010962 2024-02-20 14:37:18.02 2024-02-20 14:37:18.02 18900 TIP 432524 20754 6010973 2024-02-20 14:38:09.168 2024-02-20 14:38:09.168 1000 FEE 432430 8648 6010974 2024-02-20 14:38:09.168 2024-02-20 14:38:09.168 9000 TIP 432430 5978 6010978 2024-02-20 14:38:53.678 2024-02-20 14:38:53.678 2700 FEE 432526 13216 6010979 2024-02-20 14:38:53.678 2024-02-20 14:38:53.678 24300 TIP 432526 20117 6010982 2024-02-20 14:38:56.151 2024-02-20 14:38:56.151 2700 FEE 432526 20588 6010983 2024-02-20 14:38:56.151 2024-02-20 14:38:56.151 24300 TIP 432526 15367 6010984 2024-02-20 14:38:56.321 2024-02-20 14:38:56.321 2700 FEE 432526 20892 6010985 2024-02-20 14:38:56.321 2024-02-20 14:38:56.321 24300 TIP 432526 21263 6010991 2024-02-20 14:40:06.117 2024-02-20 14:40:06.117 4600 FEE 432517 1772 6010992 2024-02-20 14:40:06.117 2024-02-20 14:40:06.117 41400 TIP 432517 9352 6011014 2024-02-20 14:42:49.111 2024-02-20 14:42:49.111 2100 FEE 428143 11164 6011015 2024-02-20 14:42:49.111 2024-02-20 14:42:49.111 18900 TIP 428143 19507 6011030 2024-02-20 14:43:14.314 2024-02-20 14:43:14.314 2100 FEE 432354 11329 6011031 2024-02-20 14:43:14.314 2024-02-20 14:43:14.314 18900 TIP 432354 11018 6011035 2024-02-20 14:43:37.146 2024-02-20 14:43:37.146 2300 FEE 432527 19263 6011036 2024-02-20 14:43:37.146 2024-02-20 14:43:37.146 20700 TIP 432527 18989 6011037 2024-02-20 14:43:37.196 2024-02-20 14:43:37.196 2300 FEE 432527 15833 6011038 2024-02-20 14:43:37.196 2024-02-20 14:43:37.196 20700 TIP 432527 11298 6011041 2024-02-20 14:43:37.474 2024-02-20 14:43:37.474 2300 FEE 432527 746 6011042 2024-02-20 14:43:37.474 2024-02-20 14:43:37.474 20700 TIP 432527 2077 6011045 2024-02-20 14:43:37.724 2024-02-20 14:43:37.724 2300 FEE 432527 11240 6011046 2024-02-20 14:43:37.724 2024-02-20 14:43:37.724 20700 TIP 432527 17184 6011049 2024-02-20 14:43:38.011 2024-02-20 14:43:38.011 2300 FEE 432527 630 6011050 2024-02-20 14:43:38.011 2024-02-20 14:43:38.011 20700 TIP 432527 13544 6011057 2024-02-20 14:43:39.86 2024-02-20 14:43:39.86 2300 FEE 432527 15732 6011058 2024-02-20 14:43:39.86 2024-02-20 14:43:39.86 20700 TIP 432527 9551 6011061 2024-02-20 14:43:40.819 2024-02-20 14:43:40.819 2300 FEE 432527 16329 6011062 2024-02-20 14:43:40.819 2024-02-20 14:43:40.819 20700 TIP 432527 20811 6011063 2024-02-20 14:43:40.986 2024-02-20 14:43:40.986 2300 FEE 432527 7119 6011064 2024-02-20 14:43:40.986 2024-02-20 14:43:40.986 20700 TIP 432527 775 6011065 2024-02-20 14:43:41.098 2024-02-20 14:43:41.098 2300 FEE 432527 10591 6011066 2024-02-20 14:43:41.098 2024-02-20 14:43:41.098 20700 TIP 432527 19527 6011080 2024-02-20 14:44:30.781 2024-02-20 14:44:30.781 1000 FEE 432540 13517 6011085 2024-02-20 14:45:02.989 2024-02-20 14:45:02.989 1000 STREAM 141924 16830 6011090 2024-02-20 14:45:28.832 2024-02-20 14:45:28.832 900 FEE 432517 18862 6011091 2024-02-20 14:45:28.832 2024-02-20 14:45:28.832 8100 TIP 432517 4415 6011096 2024-02-20 14:45:36.877 2024-02-20 14:45:36.877 2700 FEE 432538 14037 6011097 2024-02-20 14:45:36.877 2024-02-20 14:45:36.877 24300 TIP 432538 2039 6011110 2024-02-20 14:46:01.485 2024-02-20 14:46:01.485 1000 FEE 432523 4395 6011111 2024-02-20 14:46:01.485 2024-02-20 14:46:01.485 9000 TIP 432523 20156 6011112 2024-02-20 14:46:01.758 2024-02-20 14:46:01.758 2100 FEE 432541 20302 6011113 2024-02-20 14:46:01.758 2024-02-20 14:46:01.758 18900 TIP 432541 9084 6011114 2024-02-20 14:46:02.994 2024-02-20 14:46:02.994 1000 STREAM 141924 18941 6011115 2024-02-20 14:46:10.037 2024-02-20 14:46:10.037 10000 DONT_LIKE_THIS 432469 16351 6011118 2024-02-20 14:46:26.716 2024-02-20 14:46:26.716 1000000 FEE 432543 989 6011127 2024-02-20 14:47:10.054 2024-02-20 14:47:10.054 1000 FEE 431809 16351 6011128 2024-02-20 14:47:10.054 2024-02-20 14:47:10.054 9000 TIP 431809 21064 6011158 2024-02-20 14:52:42.995 2024-02-20 14:52:42.995 3000 FEE 432335 17212 6011159 2024-02-20 14:52:42.995 2024-02-20 14:52:42.995 27000 TIP 432335 14650 6011166 2024-02-20 14:53:13.111 2024-02-20 14:53:13.111 1000 FEE 432517 12951 6011167 2024-02-20 14:53:13.111 2024-02-20 14:53:13.111 9000 TIP 432517 20706 6011170 2024-02-20 14:53:15.433 2024-02-20 14:53:15.433 1000 FEE 432517 18199 6011171 2024-02-20 14:53:15.433 2024-02-20 14:53:15.433 9000 TIP 432517 17682 6011178 2024-02-20 14:53:18.637 2024-02-20 14:53:18.637 1000 FEE 432517 20353 6011179 2024-02-20 14:53:18.637 2024-02-20 14:53:18.637 9000 TIP 432517 11522 6011180 2024-02-20 14:53:19.176 2024-02-20 14:53:19.176 1000 FEE 432517 15146 6011181 2024-02-20 14:53:19.176 2024-02-20 14:53:19.176 9000 TIP 432517 659 6011182 2024-02-20 14:53:19.345 2024-02-20 14:53:19.345 1000 FEE 432517 16543 6011183 2024-02-20 14:53:19.345 2024-02-20 14:53:19.345 9000 TIP 432517 12819 6011186 2024-02-20 14:53:25.489 2024-02-20 14:53:25.489 1000 FEE 431831 1320 6011187 2024-02-20 14:53:25.489 2024-02-20 14:53:25.489 9000 TIP 431831 2196 6011188 2024-02-20 14:53:25.656 2024-02-20 14:53:25.656 1000 FEE 431955 20573 6011189 2024-02-20 14:53:25.656 2024-02-20 14:53:25.656 9000 TIP 431955 21342 6011200 2024-02-20 14:55:21.981 2024-02-20 14:55:21.981 100 FEE 432477 4395 6011201 2024-02-20 14:55:21.981 2024-02-20 14:55:21.981 900 TIP 432477 17944 6011208 2024-02-20 14:55:41.492 2024-02-20 14:55:41.492 100 FEE 432511 15161 6011209 2024-02-20 14:55:41.492 2024-02-20 14:55:41.492 900 TIP 432511 20993 6011212 2024-02-20 14:55:49.163 2024-02-20 14:55:49.163 1000 FEE 432551 5694 6011213 2024-02-20 14:55:53.458 2024-02-20 14:55:53.458 9000 FEE 432511 21422 6011214 2024-02-20 14:55:53.458 2024-02-20 14:55:53.458 81000 TIP 432511 18941 6011218 2024-02-20 14:56:35.485 2024-02-20 14:56:35.485 1000 FEE 432552 18393 6011243 2024-02-20 14:58:21.025 2024-02-20 14:58:21.025 2100 FEE 432311 701 6011244 2024-02-20 14:58:21.025 2024-02-20 14:58:21.025 18900 TIP 432311 21344 6011245 2024-02-20 14:58:21.717 2024-02-20 14:58:21.717 2100 FEE 432320 14370 6011246 2024-02-20 14:58:21.717 2024-02-20 14:58:21.717 18900 TIP 432320 21555 6011247 2024-02-20 14:58:23.269 2024-02-20 14:58:23.269 2100 FEE 432411 19842 6011248 2024-02-20 14:58:23.269 2024-02-20 14:58:23.269 18900 TIP 432411 15045 6011251 2024-02-20 14:58:25.68 2024-02-20 14:58:25.68 2100 FEE 432400 3347 6011252 2024-02-20 14:58:25.68 2024-02-20 14:58:25.68 18900 TIP 432400 18956 6011255 2024-02-20 14:58:29.53 2024-02-20 14:58:29.53 2100 FEE 432464 15544 6011256 2024-02-20 14:58:29.53 2024-02-20 14:58:29.53 18900 TIP 432464 1673 6011271 2024-02-20 14:58:36.753 2024-02-20 14:58:36.753 2100 FEE 432283 11165 6011272 2024-02-20 14:58:36.753 2024-02-20 14:58:36.753 18900 TIP 432283 9036 6011274 2024-02-20 14:59:00.896 2024-02-20 14:59:00.896 2100 FEE 432446 21222 6011275 2024-02-20 14:59:00.896 2024-02-20 14:59:00.896 18900 TIP 432446 14503 6011280 2024-02-20 14:59:34.265 2024-02-20 14:59:34.265 1000 FEE 432558 2329 6011287 2024-02-20 15:00:04.774 2024-02-20 15:00:04.774 100000 FEE 432560 20840 6011294 2024-02-20 15:00:17.03 2024-02-20 15:00:17.03 100 FEE 429893 21373 6011295 2024-02-20 15:00:17.03 2024-02-20 15:00:17.03 900 TIP 429893 20594 6011304 2024-02-20 15:03:43.566 2024-02-20 15:03:43.566 700 FEE 432550 18008 6011305 2024-02-20 15:03:43.566 2024-02-20 15:03:43.566 6300 TIP 432550 2775 6011312 2024-02-20 15:05:22.55 2024-02-20 15:05:22.55 8300 FEE 432563 787 6011313 2024-02-20 15:05:22.55 2024-02-20 15:05:22.55 74700 TIP 432563 21575 6011315 2024-02-20 15:05:29.633 2024-02-20 15:05:29.633 1000 FEE 432378 14278 6011316 2024-02-20 15:05:29.633 2024-02-20 15:05:29.633 9000 TIP 432378 20258 6011317 2024-02-20 15:05:29.767 2024-02-20 15:05:29.767 1000 FEE 432378 18774 6011318 2024-02-20 15:05:29.767 2024-02-20 15:05:29.767 9000 TIP 432378 1658 6011323 2024-02-20 15:06:20.116 2024-02-20 15:06:20.116 700 FEE 432549 6003 6011324 2024-02-20 15:06:20.116 2024-02-20 15:06:20.116 6300 TIP 432549 20655 6011116 2024-02-20 14:46:17.973 2024-02-20 14:46:17.973 2100 FEE 432538 21275 6011117 2024-02-20 14:46:17.973 2024-02-20 14:46:17.973 18900 TIP 432538 6573 6011137 2024-02-20 14:48:05.494 2024-02-20 14:48:05.494 2100 FEE 432466 21343 6011138 2024-02-20 14:48:05.494 2024-02-20 14:48:05.494 18900 TIP 432466 15146 6011154 2024-02-20 14:52:12.895 2024-02-20 14:52:12.895 1000 FEE 432517 9611 6011155 2024-02-20 14:52:12.895 2024-02-20 14:52:12.895 9000 TIP 432517 12774 6011192 2024-02-20 14:53:43.359 2024-02-20 14:53:43.359 1000 FEE 429893 4487 6011193 2024-02-20 14:53:43.359 2024-02-20 14:53:43.359 9000 TIP 429893 11192 6011223 2024-02-20 14:57:41.638 2024-02-20 14:57:41.638 1000 FEE 432554 10016 6011226 2024-02-20 14:57:44.41 2024-02-20 14:57:44.41 900 FEE 432491 951 6011227 2024-02-20 14:57:44.41 2024-02-20 14:57:44.41 8100 TIP 432491 13878 6011228 2024-02-20 14:57:47.244 2024-02-20 14:57:47.244 1000 FEE 432489 1631 6011229 2024-02-20 14:57:47.244 2024-02-20 14:57:47.244 9000 TIP 432489 8326 6011257 2024-02-20 14:58:30.361 2024-02-20 14:58:30.361 2100 FEE 432339 12769 6011258 2024-02-20 14:58:30.361 2024-02-20 14:58:30.361 18900 TIP 432339 16753 6011281 2024-02-20 14:59:48.761 2024-02-20 14:59:48.761 2100 FEE 431800 14271 6011282 2024-02-20 14:59:48.761 2024-02-20 14:59:48.761 18900 TIP 431800 14213 6011284 2024-02-20 15:00:02.994 2024-02-20 15:00:02.994 1000 FEE 432552 2327 6011285 2024-02-20 15:00:02.994 2024-02-20 15:00:02.994 9000 TIP 432552 14213 6011288 2024-02-20 15:00:05.266 2024-02-20 15:00:05.266 1000 FEE 432561 11898 6011321 2024-02-20 15:06:19.756 2024-02-20 15:06:19.756 700 FEE 432549 21048 6011322 2024-02-20 15:06:19.756 2024-02-20 15:06:19.756 6300 TIP 432549 925 6011329 2024-02-20 15:06:30.838 2024-02-20 15:06:30.838 2100 FEE 432537 11091 6011330 2024-02-20 15:06:30.838 2024-02-20 15:06:30.838 18900 TIP 432537 760 6011331 2024-02-20 15:06:50.977 2024-02-20 15:06:50.977 1000 FEE 432570 19848 6011354 2024-02-20 15:09:45.464 2024-02-20 15:09:45.464 2100 FEE 432320 12946 6011355 2024-02-20 15:09:45.464 2024-02-20 15:09:45.464 18900 TIP 432320 19132 6011356 2024-02-20 15:09:52.481 2024-02-20 15:09:52.481 2100 FEE 432411 20179 6011357 2024-02-20 15:09:52.481 2024-02-20 15:09:52.481 18900 TIP 432411 5746 6011365 2024-02-20 15:10:25.891 2024-02-20 15:10:25.891 2100 FEE 432419 18396 6011366 2024-02-20 15:10:25.891 2024-02-20 15:10:25.891 18900 TIP 432419 1713 6011377 2024-02-20 15:10:39.388 2024-02-20 15:10:39.388 2300 FEE 432563 18679 6011378 2024-02-20 15:10:39.388 2024-02-20 15:10:39.388 20700 TIP 432563 13575 6011379 2024-02-20 15:10:43.708 2024-02-20 15:10:43.708 1000 FEE 432511 20073 6011380 2024-02-20 15:10:43.708 2024-02-20 15:10:43.708 9000 TIP 432511 634 6011381 2024-02-20 15:10:44.698 2024-02-20 15:10:44.698 2100 FEE 432554 1307 6011382 2024-02-20 15:10:44.698 2024-02-20 15:10:44.698 18900 TIP 432554 649 6011388 2024-02-20 15:11:07.277 2024-02-20 15:11:07.277 2100 FEE 432489 627 6011389 2024-02-20 15:11:07.277 2024-02-20 15:11:07.277 18900 TIP 432489 11698 6011420 2024-02-20 15:14:40.009 2024-02-20 15:14:40.009 1000 FEE 432574 768 6011421 2024-02-20 15:14:40.009 2024-02-20 15:14:40.009 9000 TIP 432574 20280 6011429 2024-02-20 15:15:25.457 2024-02-20 15:15:25.457 1000 FEE 432560 18270 6011430 2024-02-20 15:15:25.457 2024-02-20 15:15:25.457 9000 TIP 432560 18208 6011486 2024-02-20 15:18:37.988 2024-02-20 15:18:37.988 0 FEE 432586 3709 6011523 2024-02-20 15:25:30.957 2024-02-20 15:25:30.957 100 FEE 432596 698 6011524 2024-02-20 15:25:30.957 2024-02-20 15:25:30.957 900 TIP 432596 21287 6011562 2024-02-20 15:25:42.175 2024-02-20 15:25:42.175 11000 FEE 432598 616 6011634 2024-02-20 15:39:26.742 2024-02-20 15:39:26.742 0 FEE 432609 8385 6011635 2024-02-20 15:39:42.127 2024-02-20 15:39:42.127 5000 FEE 432558 15147 6011636 2024-02-20 15:39:42.127 2024-02-20 15:39:42.127 45000 TIP 432558 9705 6011647 2024-02-20 15:41:39.346 2024-02-20 15:41:39.346 1000 FEE 432613 20964 6011651 2024-02-20 15:42:07.603 2024-02-20 15:42:07.603 0 FEE 432599 18068 6011667 2024-02-20 15:42:44.609 2024-02-20 15:42:44.609 100 FEE 432517 20891 6011668 2024-02-20 15:42:44.609 2024-02-20 15:42:44.609 900 TIP 432517 21263 6011720 2024-02-20 15:46:07.45 2024-02-20 15:46:07.45 16600 FEE 432619 6653 6011721 2024-02-20 15:46:07.45 2024-02-20 15:46:07.45 149400 TIP 432619 9916 6011738 2024-02-20 15:47:06.113 2024-02-20 15:47:06.113 100 FEE 432495 16830 6011739 2024-02-20 15:47:06.113 2024-02-20 15:47:06.113 900 TIP 432495 8385 6011742 2024-02-20 15:47:09.764 2024-02-20 15:47:09.764 10000 FEE 432625 20376 6011785 2024-02-20 15:49:12.99 2024-02-20 15:49:12.99 100 FEE 430422 13143 6011786 2024-02-20 15:49:12.99 2024-02-20 15:49:12.99 900 TIP 430422 19381 6011798 2024-02-20 15:50:38.984 2024-02-20 15:50:38.984 1000 FEE 432629 15160 6011811 2024-02-20 15:51:26.983 2024-02-20 15:51:26.983 10000 FEE 432469 20225 6011812 2024-02-20 15:51:26.983 2024-02-20 15:51:26.983 90000 TIP 432469 15147 6011819 2024-02-20 15:53:35.45 2024-02-20 15:53:35.45 1600 FEE 432619 21271 6011820 2024-02-20 15:53:35.45 2024-02-20 15:53:35.45 14400 TIP 432619 17800 6011862 2024-02-20 15:57:48.752 2024-02-20 15:57:48.752 900 FEE 432232 21291 6011863 2024-02-20 15:57:48.752 2024-02-20 15:57:48.752 8100 TIP 432232 13575 6011882 2024-02-20 16:04:32.835 2024-02-20 16:04:32.835 100 FEE 432146 866 6011883 2024-02-20 16:04:32.835 2024-02-20 16:04:32.835 900 TIP 432146 746 6011901 2024-02-20 16:07:39.52 2024-02-20 16:07:39.52 1100 FEE 432111 19103 6011902 2024-02-20 16:07:39.52 2024-02-20 16:07:39.52 9900 TIP 432111 15409 6011905 2024-02-20 16:07:48.444 2024-02-20 16:07:48.444 3300 FEE 430537 6191 6011906 2024-02-20 16:07:48.444 2024-02-20 16:07:48.444 29700 TIP 430537 14037 6011932 2024-02-20 16:08:24.914 2024-02-20 16:08:24.914 1100 FEE 432311 8448 6011933 2024-02-20 16:08:24.914 2024-02-20 16:08:24.914 9900 TIP 432311 15978 6011972 2024-02-20 16:11:32.548 2024-02-20 16:11:32.548 1000 FEE 432158 9275 6011973 2024-02-20 16:11:32.548 2024-02-20 16:11:32.548 9000 TIP 432158 20713 6011979 2024-02-20 16:12:10.431 2024-02-20 16:12:10.431 1000 FEE 432203 20117 6011980 2024-02-20 16:12:10.431 2024-02-20 16:12:10.431 9000 TIP 432203 684 6011987 2024-02-20 16:12:19.225 2024-02-20 16:12:19.225 2100 FEE 432560 2576 6011988 2024-02-20 16:12:19.225 2024-02-20 16:12:19.225 18900 TIP 432560 19007 6012019 2024-02-20 16:15:57.106 2024-02-20 16:15:57.106 12800 FEE 432615 20811 6012020 2024-02-20 16:15:57.106 2024-02-20 16:15:57.106 115200 TIP 432615 10638 6012027 2024-02-20 16:16:33.83 2024-02-20 16:16:33.83 1000 FEE 432634 981 6012028 2024-02-20 16:16:33.83 2024-02-20 16:16:33.83 9000 TIP 432634 21482 6012049 2024-02-20 16:17:13.46 2024-02-20 16:17:13.46 1000 FEE 432562 14669 6012050 2024-02-20 16:17:13.46 2024-02-20 16:17:13.46 9000 TIP 432562 18529 6012076 2024-02-20 16:19:23.002 2024-02-20 16:19:23.002 1000 FEE 432654 712 6012083 2024-02-20 16:21:54.109 2024-02-20 16:21:54.109 1000 FEE 432658 17714 6012127 2024-02-20 16:26:34.507 2024-02-20 16:26:34.507 8300 FEE 432594 18313 6012128 2024-02-20 16:26:34.507 2024-02-20 16:26:34.507 74700 TIP 432594 1465 6012161 2024-02-20 16:29:08.6 2024-02-20 16:29:08.6 1000 FEE 432666 4345 6012182 2024-02-20 16:30:46.066 2024-02-20 16:30:46.066 100000 FEE 432670 14169 6012192 2024-02-20 16:31:46.646 2024-02-20 16:31:46.646 0 FEE 432667 20816 6012208 2024-02-20 16:33:18.75 2024-02-20 16:33:18.75 0 FEE 432678 11862 6012242 2024-02-20 16:35:34.481 2024-02-20 16:35:34.481 10000 FEE 432674 20218 6012243 2024-02-20 16:35:34.481 2024-02-20 16:35:34.481 90000 TIP 432674 18659 6012253 2024-02-20 16:36:48.074 2024-02-20 16:36:48.074 1000 FEE 432684 12976 6012266 2024-02-20 16:38:14.61 2024-02-20 16:38:14.61 1000 FEE 432687 13076 6012290 2024-02-20 16:42:27.242 2024-02-20 16:42:27.242 100 FEE 432690 7418 6012291 2024-02-20 16:42:27.242 2024-02-20 16:42:27.242 900 TIP 432690 8269 6012301 2024-02-20 16:42:48.032 2024-02-20 16:42:48.032 100 FEE 432653 9816 6012302 2024-02-20 16:42:48.032 2024-02-20 16:42:48.032 900 TIP 432653 11750 6011129 2024-02-20 14:47:10.216 2024-02-20 14:47:10.216 1000 FEE 431809 8998 6011130 2024-02-20 14:47:10.216 2024-02-20 14:47:10.216 9000 TIP 431809 2722 6011141 2024-02-20 14:49:36.964 2024-02-20 14:49:36.964 400 FEE 432517 21021 6011142 2024-02-20 14:49:36.964 2024-02-20 14:49:36.964 3600 TIP 432517 21145 6011143 2024-02-20 14:49:37.436 2024-02-20 14:49:37.436 400 FEE 432517 18601 6011144 2024-02-20 14:49:37.436 2024-02-20 14:49:37.436 3600 TIP 432517 3417 6011174 2024-02-20 14:53:16.709 2024-02-20 14:53:16.709 1000 FEE 432517 5828 6011175 2024-02-20 14:53:16.709 2024-02-20 14:53:16.709 9000 TIP 432517 17514 6011198 2024-02-20 14:55:18.279 2024-02-20 14:55:18.279 1000 FEE 429509 5069 6011199 2024-02-20 14:55:18.279 2024-02-20 14:55:18.279 9000 TIP 429509 17030 6011206 2024-02-20 14:55:27.096 2024-02-20 14:55:27.096 1000 FEE 432550 5646 6011210 2024-02-20 14:55:41.721 2024-02-20 14:55:41.721 900 FEE 432511 1571 6011211 2024-02-20 14:55:41.721 2024-02-20 14:55:41.721 8100 TIP 432511 19569 6011216 2024-02-20 14:56:11.901 2024-02-20 14:56:11.901 0 FEE 432551 20987 6011217 2024-02-20 14:56:17.441 2024-02-20 14:56:17.441 83000 DONT_LIKE_THIS 432543 4304 6011224 2024-02-20 14:57:44.218 2024-02-20 14:57:44.218 100 FEE 432491 21369 6011225 2024-02-20 14:57:44.218 2024-02-20 14:57:44.218 900 TIP 432491 1319 6011263 2024-02-20 14:58:33.645 2024-02-20 14:58:33.645 2100 FEE 432378 917 6011264 2024-02-20 14:58:33.645 2024-02-20 14:58:33.645 18900 TIP 432378 20704 6011273 2024-02-20 14:58:52.19 2024-02-20 14:58:52.19 1000000 FEE 432556 9482 6011290 2024-02-20 15:00:11.209 2024-02-20 15:00:11.209 4000 FEE 432551 1008 6011291 2024-02-20 15:00:11.209 2024-02-20 15:00:11.209 36000 TIP 432551 13406 6011306 2024-02-20 15:03:43.967 2024-02-20 15:03:43.967 700 FEE 432550 13216 6011307 2024-02-20 15:03:43.967 2024-02-20 15:03:43.967 6300 TIP 432550 761 6011319 2024-02-20 15:05:35.925 2024-02-20 15:05:35.925 1000 FEE 432567 10352 6011351 2024-02-20 15:09:33.607 2024-02-20 15:09:33.607 1000 FEE 432573 19668 6011363 2024-02-20 15:10:20.07 2024-02-20 15:10:20.07 2100 FEE 432337 14247 6011364 2024-02-20 15:10:20.07 2024-02-20 15:10:20.07 18900 TIP 432337 2780 6011407 2024-02-20 15:13:01.836 2024-02-20 15:13:01.836 1000 FEE 432578 1488 6011424 2024-02-20 15:14:57.262 2024-02-20 15:14:57.262 2300 FEE 432544 20376 6011425 2024-02-20 15:14:57.262 2024-02-20 15:14:57.262 20700 TIP 432544 4487 6011426 2024-02-20 15:14:57.33 2024-02-20 15:14:57.33 2300 FEE 432544 616 6011427 2024-02-20 15:14:57.33 2024-02-20 15:14:57.33 20700 TIP 432544 1773 6011442 2024-02-20 15:15:52.313 2024-02-20 15:15:52.313 2300 FEE 432551 4798 6011443 2024-02-20 15:15:52.313 2024-02-20 15:15:52.313 20700 TIP 432551 9026 6011446 2024-02-20 15:15:52.838 2024-02-20 15:15:52.838 1000 FEE 432560 19796 6011447 2024-02-20 15:15:52.838 2024-02-20 15:15:52.838 9000 TIP 432560 649 6011481 2024-02-20 15:17:51.787 2024-02-20 15:17:51.787 5000 FEE 147657 21021 6011482 2024-02-20 15:17:51.787 2024-02-20 15:17:51.787 45000 TIP 147657 1534 6011488 2024-02-20 15:18:53.635 2024-02-20 15:18:53.635 1000 FEE 432588 18180 6011495 2024-02-20 15:19:17.322 2024-02-20 15:19:17.322 1000 FEE 416408 16177 6011496 2024-02-20 15:19:17.322 2024-02-20 15:19:17.322 9000 TIP 416408 13204 6011521 2024-02-20 15:25:30.731 2024-02-20 15:25:30.731 100 FEE 432596 844 6011522 2024-02-20 15:25:30.731 2024-02-20 15:25:30.731 900 TIP 432596 21036 6011529 2024-02-20 15:25:31.987 2024-02-20 15:25:31.987 100 FEE 432596 16270 6011530 2024-02-20 15:25:31.987 2024-02-20 15:25:31.987 900 TIP 432596 18705 6011546 2024-02-20 15:25:38.804 2024-02-20 15:25:38.804 100 FEE 432580 963 6011547 2024-02-20 15:25:38.804 2024-02-20 15:25:38.804 900 TIP 432580 2390 6011552 2024-02-20 15:25:40.957 2024-02-20 15:25:40.957 100 FEE 432534 19836 6011553 2024-02-20 15:25:40.957 2024-02-20 15:25:40.957 900 TIP 432534 15488 6011558 2024-02-20 15:25:41.669 2024-02-20 15:25:41.669 100 FEE 432534 21239 6011559 2024-02-20 15:25:41.669 2024-02-20 15:25:41.669 900 TIP 432534 20036 6011565 2024-02-20 15:25:47.922 2024-02-20 15:25:47.922 100 FEE 432414 10821 6011566 2024-02-20 15:25:47.922 2024-02-20 15:25:47.922 900 TIP 432414 21480 6011567 2024-02-20 15:25:48.115 2024-02-20 15:25:48.115 100 FEE 432414 7877 6011568 2024-02-20 15:25:48.115 2024-02-20 15:25:48.115 900 TIP 432414 1617 6011579 2024-02-20 15:28:19.877 2024-02-20 15:28:19.877 1000 FEE 432601 20436 6011593 2024-02-20 15:30:33.273 2024-02-20 15:30:33.273 1000 FEE 432605 1772 6011639 2024-02-20 15:40:27.918 2024-02-20 15:40:27.918 1000 POLL 432211 989 6011640 2024-02-20 15:40:35.593 2024-02-20 15:40:35.593 10000 FEE 432553 21369 6011641 2024-02-20 15:40:35.593 2024-02-20 15:40:35.593 90000 TIP 432553 5961 6011653 2024-02-20 15:42:27.408 2024-02-20 15:42:27.408 2100 FEE 432563 20573 6011654 2024-02-20 15:42:27.408 2024-02-20 15:42:27.408 18900 TIP 432563 11967 6011657 2024-02-20 15:42:33.334 2024-02-20 15:42:33.334 2100 FEE 432511 10007 6011658 2024-02-20 15:42:33.334 2024-02-20 15:42:33.334 18900 TIP 432511 21332 6011659 2024-02-20 15:42:39.678 2024-02-20 15:42:39.678 2100 FEE 432466 776 6011660 2024-02-20 15:42:39.678 2024-02-20 15:42:39.678 18900 TIP 432466 21172 6011661 2024-02-20 15:42:44.247 2024-02-20 15:42:44.247 100 FEE 432517 1576 6011662 2024-02-20 15:42:44.247 2024-02-20 15:42:44.247 900 TIP 432517 5825 6011679 2024-02-20 15:43:30.565 2024-02-20 15:43:30.565 1600 FEE 432598 18772 6011680 2024-02-20 15:43:30.565 2024-02-20 15:43:30.565 14400 TIP 432598 15148 6011681 2024-02-20 15:43:43.221 2024-02-20 15:43:43.221 100 FEE 432427 21393 6011682 2024-02-20 15:43:43.221 2024-02-20 15:43:43.221 900 TIP 432427 19417 6011695 2024-02-20 15:45:49.084 2024-02-20 15:45:49.084 1000 FEE 432621 21021 6011745 2024-02-20 15:47:12.049 2024-02-20 15:47:12.049 900 FEE 432523 714 6011746 2024-02-20 15:47:12.049 2024-02-20 15:47:12.049 8100 TIP 432523 2652 6011753 2024-02-20 15:47:30.831 2024-02-20 15:47:30.831 900 FEE 432605 12779 6011754 2024-02-20 15:47:30.831 2024-02-20 15:47:30.831 8100 TIP 432605 20581 6011757 2024-02-20 15:47:40.306 2024-02-20 15:47:40.306 100 FEE 432466 15858 6011758 2024-02-20 15:47:40.306 2024-02-20 15:47:40.306 900 TIP 432466 9332 6011770 2024-02-20 15:48:36.685 2024-02-20 15:48:36.685 900 FEE 432579 12930 6011771 2024-02-20 15:48:36.685 2024-02-20 15:48:36.685 8100 TIP 432579 20409 6011772 2024-02-20 15:48:48.361 2024-02-20 15:48:48.361 2500 FEE 432473 6137 6011773 2024-02-20 15:48:48.361 2024-02-20 15:48:48.361 22500 TIP 432473 876 6011779 2024-02-20 15:49:01.437 2024-02-20 15:49:01.437 1000 FEE 432626 2013 6011799 2024-02-20 15:50:44.66 2024-02-20 15:50:44.66 1000 FEE 432630 660 6011809 2024-02-20 15:51:25.831 2024-02-20 15:51:25.831 10000 FEE 432211 994 6011810 2024-02-20 15:51:25.831 2024-02-20 15:51:25.831 90000 TIP 432211 21619 6011825 2024-02-20 15:54:07.909 2024-02-20 15:54:07.909 6300 FEE 432542 3504 6011826 2024-02-20 15:54:07.909 2024-02-20 15:54:07.909 56700 TIP 432542 1534 6011828 2024-02-20 15:54:11.522 2024-02-20 15:54:11.522 4000 FEE 432466 1478 6011829 2024-02-20 15:54:11.522 2024-02-20 15:54:11.522 36000 TIP 432466 18784 6011835 2024-02-20 15:54:29.38 2024-02-20 15:54:29.38 1000 FEE 432634 2710 6011860 2024-02-20 15:57:48.675 2024-02-20 15:57:48.675 100 FEE 432232 17184 6011861 2024-02-20 15:57:48.675 2024-02-20 15:57:48.675 900 TIP 432232 4819 6011868 2024-02-20 15:58:27.901 2024-02-20 15:58:27.901 1000 FEE 432638 17183 6011870 2024-02-20 15:59:30.922 2024-02-20 15:59:30.922 1500 FEE 432303 777 6011871 2024-02-20 15:59:30.922 2024-02-20 15:59:30.922 13500 TIP 432303 1480 6011875 2024-02-20 16:00:13.409 2024-02-20 16:00:13.409 7000 FEE 432639 13903 6011914 2024-02-20 16:08:21.985 2024-02-20 16:08:21.985 1100 FEE 432517 960 6011915 2024-02-20 16:08:21.985 2024-02-20 16:08:21.985 9900 TIP 432517 21212 6011926 2024-02-20 16:08:24.106 2024-02-20 16:08:24.106 1100 FEE 432320 12738 6011927 2024-02-20 16:08:24.106 2024-02-20 16:08:24.106 9900 TIP 432320 18511 6011936 2024-02-20 16:08:25.078 2024-02-20 16:08:25.078 1100 FEE 432619 15536 6011937 2024-02-20 16:08:25.078 2024-02-20 16:08:25.078 9900 TIP 432619 19848 6011948 2024-02-20 16:08:27.921 2024-02-20 16:08:27.921 1100 FEE 432466 21119 6011949 2024-02-20 16:08:27.921 2024-02-20 16:08:27.921 9900 TIP 432466 6765 6011136 2024-02-20 14:48:03.8 2024-02-20 14:48:03.8 1000 STREAM 141924 3518 6011139 2024-02-20 14:49:03.803 2024-02-20 14:49:03.803 1000 STREAM 141924 19096 6011145 2024-02-20 14:50:03.816 2024-02-20 14:50:03.816 1000 STREAM 141924 15697 6011150 2024-02-20 14:51:03.817 2024-02-20 14:51:03.817 1000 STREAM 141924 20891 6011153 2024-02-20 14:52:03.818 2024-02-20 14:52:03.818 1000 STREAM 141924 12946 6011161 2024-02-20 14:53:03.834 2024-02-20 14:53:03.834 1000 STREAM 141924 19864 6011194 2024-02-20 14:54:03.829 2024-02-20 14:54:03.829 1000 STREAM 141924 16447 6011197 2024-02-20 14:55:03.822 2024-02-20 14:55:03.822 1000 STREAM 141924 3392 6011215 2024-02-20 14:56:03.828 2024-02-20 14:56:03.828 1000 STREAM 141924 825 6011221 2024-02-20 14:57:03.857 2024-02-20 14:57:03.857 1000 STREAM 141924 11678 6011236 2024-02-20 14:58:03.838 2024-02-20 14:58:03.838 1000 STREAM 141924 1970 6011276 2024-02-20 14:59:04.008 2024-02-20 14:59:04.008 1000 STREAM 141924 20162 6011286 2024-02-20 15:00:04.035 2024-02-20 15:00:04.035 1000 STREAM 141924 20502 6011299 2024-02-20 15:01:04.046 2024-02-20 15:01:04.046 1000 STREAM 141924 2232 6011300 2024-02-20 15:02:03.162 2024-02-20 15:02:03.162 1000 STREAM 141924 7746 6011310 2024-02-20 15:04:03.17 2024-02-20 15:04:03.17 1000 STREAM 141924 13527 6011311 2024-02-20 15:05:03.171 2024-02-20 15:05:03.171 1000 STREAM 141924 20190 6011336 2024-02-20 15:08:03.177 2024-02-20 15:08:03.177 1000 STREAM 141924 21103 6011346 2024-02-20 15:09:03.181 2024-02-20 15:09:03.181 1000 STREAM 141924 1030 6011362 2024-02-20 15:10:03.192 2024-02-20 15:10:03.192 1000 STREAM 141924 10771 6011385 2024-02-20 15:11:03.196 2024-02-20 15:11:03.196 1000 STREAM 141924 18330 6011448 2024-02-20 15:16:03.204 2024-02-20 15:16:03.204 1000 STREAM 141924 5520 6011491 2024-02-20 15:19:02.146 2024-02-20 15:19:02.146 1000 STREAM 141924 21472 6011506 2024-02-20 15:22:03.207 2024-02-20 15:22:03.207 1000 STREAM 141924 16680 6011511 2024-02-20 15:23:03.216 2024-02-20 15:23:03.216 1000 STREAM 141924 20781 6011514 2024-02-20 15:24:03.216 2024-02-20 15:24:03.216 1000 STREAM 141924 19622 6011573 2024-02-20 15:26:03.228 2024-02-20 15:26:03.228 1000 STREAM 141924 19469 6011574 2024-02-20 15:27:03.237 2024-02-20 15:27:03.237 1000 STREAM 141924 18314 6011594 2024-02-20 15:31:03.263 2024-02-20 15:31:03.263 1000 STREAM 141924 19839 6011612 2024-02-20 15:33:02.168 2024-02-20 15:33:02.168 1000 STREAM 141924 19815 6011621 2024-02-20 15:35:04.191 2024-02-20 15:35:04.191 1000 STREAM 141924 1320 6011625 2024-02-20 15:36:04.204 2024-02-20 15:36:04.204 1000 STREAM 141924 13854 6011631 2024-02-20 15:39:04.229 2024-02-20 15:39:04.229 1000 STREAM 141924 1002 6011674 2024-02-20 15:43:04.236 2024-02-20 15:43:04.236 1000 STREAM 141924 20058 6011685 2024-02-20 15:44:04.217 2024-02-20 15:44:04.217 1000 STREAM 141924 1480 6011958 2024-02-20 16:09:02.379 2024-02-20 16:09:02.379 1000 STREAM 141924 19038 6011325 2024-02-20 15:06:20.377 2024-02-20 15:06:20.377 700 FEE 432549 21212 6011326 2024-02-20 15:06:20.377 2024-02-20 15:06:20.377 6300 TIP 432549 15052 6011327 2024-02-20 15:06:28.596 2024-02-20 15:06:28.596 1000 FEE 432568 782 6011328 2024-02-20 15:06:28.766 2024-02-20 15:06:28.766 1000 FEE 432569 21371 6011342 2024-02-20 15:08:56.026 2024-02-20 15:08:56.026 2100 FEE 432551 20539 6011343 2024-02-20 15:08:56.026 2024-02-20 15:08:56.026 18900 TIP 432551 18101 6011358 2024-02-20 15:09:56.999 2024-02-20 15:09:56.999 2100 FEE 432404 20585 6011359 2024-02-20 15:09:56.999 2024-02-20 15:09:56.999 18900 TIP 432404 21402 6011371 2024-02-20 15:10:37.596 2024-02-20 15:10:37.596 2100 FEE 432568 21262 6011372 2024-02-20 15:10:37.596 2024-02-20 15:10:37.596 18900 TIP 432568 14688 6011386 2024-02-20 15:11:04.445 2024-02-20 15:11:04.445 2100 FEE 432491 19435 6011387 2024-02-20 15:11:04.445 2024-02-20 15:11:04.445 18900 TIP 432491 21042 6011390 2024-02-20 15:11:12.524 2024-02-20 15:11:12.524 2100 FEE 432444 11789 6011391 2024-02-20 15:11:12.524 2024-02-20 15:11:12.524 18900 TIP 432444 17514 6011401 2024-02-20 15:12:20.079 2024-02-20 15:12:20.079 2100 FEE 432400 7979 6011402 2024-02-20 15:12:20.079 2024-02-20 15:12:20.079 18900 TIP 432400 20479 6011409 2024-02-20 15:13:46.307 2024-02-20 15:13:46.307 15000 FEE 432579 12507 6011431 2024-02-20 15:15:50.085 2024-02-20 15:15:50.085 1000 FEE 432583 18170 6011438 2024-02-20 15:15:51.488 2024-02-20 15:15:51.488 2300 FEE 432551 2077 6011439 2024-02-20 15:15:51.488 2024-02-20 15:15:51.488 20700 TIP 432551 1603 6011449 2024-02-20 15:16:15.573 2024-02-20 15:16:15.573 2300 FEE 432577 18829 6011450 2024-02-20 15:16:15.573 2024-02-20 15:16:15.573 20700 TIP 432577 20563 6011451 2024-02-20 15:16:30.426 2024-02-20 15:16:30.426 1000 FEE 432584 6526 6011452 2024-02-20 15:16:32.334 2024-02-20 15:16:32.334 2300 FEE 432549 1092 6011453 2024-02-20 15:16:32.334 2024-02-20 15:16:32.334 20700 TIP 432549 14045 6011467 2024-02-20 15:17:18.28 2024-02-20 15:17:18.28 1000 FEE 432579 18262 6011468 2024-02-20 15:17:18.28 2024-02-20 15:17:18.28 9000 TIP 432579 651 6011473 2024-02-20 15:17:18.932 2024-02-20 15:17:18.932 1000 FEE 432579 679 6011474 2024-02-20 15:17:18.932 2024-02-20 15:17:18.932 9000 TIP 432579 18219 6011492 2024-02-20 15:19:06.301 2024-02-20 15:19:06.301 1000 FEE 432589 20490 6011509 2024-02-20 15:22:15.365 2024-02-20 15:22:15.365 1600 FEE 432586 11956 6011510 2024-02-20 15:22:15.365 2024-02-20 15:22:15.365 14400 TIP 432586 3456 6011515 2024-02-20 15:24:41.292 2024-02-20 15:24:41.292 1000 FEE 432596 1512 6011531 2024-02-20 15:25:35.037 2024-02-20 15:25:35.037 1000 FEE 432597 18745 6011556 2024-02-20 15:25:41.246 2024-02-20 15:25:41.246 100 FEE 432534 16353 6011557 2024-02-20 15:25:41.246 2024-02-20 15:25:41.246 900 TIP 432534 14731 6011581 2024-02-20 15:29:13.717 2024-02-20 15:29:13.717 0 FEE 432599 15160 6011605 2024-02-20 15:32:38.004 2024-02-20 15:32:38.004 27000 FEE 432517 20153 6011606 2024-02-20 15:32:38.004 2024-02-20 15:32:38.004 243000 TIP 432517 21180 6011607 2024-02-20 15:32:52.241 2024-02-20 15:32:52.241 1000 FEE 432607 2437 6011624 2024-02-20 15:35:41.133 2024-02-20 15:35:41.133 1000 FEE 432608 18017 6011643 2024-02-20 15:40:41.488 2024-02-20 15:40:41.488 2100 FEE 432578 17183 6011644 2024-02-20 15:40:41.488 2024-02-20 15:40:41.488 18900 TIP 432578 18529 6011669 2024-02-20 15:42:44.736 2024-02-20 15:42:44.736 100 FEE 432517 4292 6011670 2024-02-20 15:42:44.736 2024-02-20 15:42:44.736 900 TIP 432517 706 6011676 2024-02-20 15:43:17.976 2024-02-20 15:43:17.976 1000 FEE 432617 20254 6011696 2024-02-20 15:45:57.063 2024-02-20 15:45:57.063 9000 FEE 432563 21334 6011697 2024-02-20 15:45:57.063 2024-02-20 15:45:57.063 81000 TIP 432563 20551 6011700 2024-02-20 15:46:05.877 2024-02-20 15:46:05.877 8300 FEE 432619 21589 6011701 2024-02-20 15:46:05.877 2024-02-20 15:46:05.877 74700 TIP 432619 21063 6011706 2024-02-20 15:46:06.134 2024-02-20 15:46:06.134 8300 FEE 432619 21373 6011707 2024-02-20 15:46:06.134 2024-02-20 15:46:06.134 74700 TIP 432619 21342 6011743 2024-02-20 15:47:11.811 2024-02-20 15:47:11.811 100 FEE 432523 18392 6011744 2024-02-20 15:47:11.811 2024-02-20 15:47:11.811 900 TIP 432523 20817 6011762 2024-02-20 15:48:16.662 2024-02-20 15:48:16.662 1000 FEE 432560 9916 6011763 2024-02-20 15:48:16.662 2024-02-20 15:48:16.662 9000 TIP 432560 632 6011822 2024-02-20 15:54:00.884 2024-02-20 15:54:00.884 4000 FEE 432563 7766 6011823 2024-02-20 15:54:00.884 2024-02-20 15:54:00.884 36000 TIP 432563 974 6011831 2024-02-20 15:54:13.951 2024-02-20 15:54:13.951 100 FEE 432629 8648 6011832 2024-02-20 15:54:13.951 2024-02-20 15:54:13.951 900 TIP 432629 21033 6011833 2024-02-20 15:54:17.596 2024-02-20 15:54:17.596 2000 FEE 432629 21391 6011834 2024-02-20 15:54:17.596 2024-02-20 15:54:17.596 18000 TIP 432629 9482 6011847 2024-02-20 15:56:23.294 2024-02-20 15:56:23.294 6300 FEE 432410 17838 6011848 2024-02-20 15:56:23.294 2024-02-20 15:56:23.294 56700 TIP 432410 21589 6011854 2024-02-20 15:57:32.022 2024-02-20 15:57:32.022 100 FEE 432293 8385 6011855 2024-02-20 15:57:32.022 2024-02-20 15:57:32.022 900 TIP 432293 20778 6011858 2024-02-20 15:57:36.248 2024-02-20 15:57:36.248 9000 FEE 432293 18862 6011859 2024-02-20 15:57:36.248 2024-02-20 15:57:36.248 81000 TIP 432293 17570 6011897 2024-02-20 16:07:23.067 2024-02-20 16:07:23.067 1100 FEE 432640 15337 6011898 2024-02-20 16:07:23.067 2024-02-20 16:07:23.067 9900 TIP 432640 17984 6011907 2024-02-20 16:07:49.634 2024-02-20 16:07:49.634 1100 FEE 430537 6765 6011908 2024-02-20 16:07:49.634 2024-02-20 16:07:49.634 9900 TIP 430537 21485 6011910 2024-02-20 16:08:21.738 2024-02-20 16:08:21.738 1100 FEE 432517 10608 6011911 2024-02-20 16:08:21.738 2024-02-20 16:08:21.738 9900 TIP 432517 11996 6011944 2024-02-20 16:08:26.35 2024-02-20 16:08:26.35 1100 FEE 432411 6384 6011945 2024-02-20 16:08:26.35 2024-02-20 16:08:26.35 9900 TIP 432411 11609 6011950 2024-02-20 16:08:28.038 2024-02-20 16:08:28.038 1100 FEE 432466 19281 6011951 2024-02-20 16:08:28.038 2024-02-20 16:08:28.038 9900 TIP 432466 1007 6011956 2024-02-20 16:08:29.26 2024-02-20 16:08:29.26 1100 FEE 432464 2780 6011957 2024-02-20 16:08:29.26 2024-02-20 16:08:29.26 9900 TIP 432464 12946 6011968 2024-02-20 16:11:31.263 2024-02-20 16:11:31.263 1000 FEE 432158 6533 6011969 2024-02-20 16:11:31.263 2024-02-20 16:11:31.263 9000 TIP 432158 20904 6011975 2024-02-20 16:12:09.52 2024-02-20 16:12:09.52 1000 FEE 432203 3990 6011976 2024-02-20 16:12:09.52 2024-02-20 16:12:09.52 9000 TIP 432203 20889 6011985 2024-02-20 16:12:12.572 2024-02-20 16:12:12.572 1000 FEE 432203 19570 6011986 2024-02-20 16:12:12.572 2024-02-20 16:12:12.572 9000 TIP 432203 16704 6012003 2024-02-20 16:13:08.099 2024-02-20 16:13:08.099 1000 FEE 432645 7773 6012008 2024-02-20 16:15:49.606 2024-02-20 16:15:49.606 1000 FEE 432648 17030 6012013 2024-02-20 16:15:53.381 2024-02-20 16:15:53.381 1000 FEE 431935 1064 6012014 2024-02-20 16:15:53.381 2024-02-20 16:15:53.381 9000 TIP 431935 1784 6012025 2024-02-20 16:16:32.901 2024-02-20 16:16:32.901 1000 FEE 432634 12049 6012026 2024-02-20 16:16:32.901 2024-02-20 16:16:32.901 9000 TIP 432634 19465 6012040 2024-02-20 16:16:59.831 2024-02-20 16:16:59.831 1000 FEE 432571 11328 6012041 2024-02-20 16:16:59.831 2024-02-20 16:16:59.831 9000 TIP 432571 14990 6012045 2024-02-20 16:17:12.79 2024-02-20 16:17:12.79 1000 FEE 432562 16948 6012046 2024-02-20 16:17:12.79 2024-02-20 16:17:12.79 9000 TIP 432562 17800 6012047 2024-02-20 16:17:13.022 2024-02-20 16:17:13.022 1000 FEE 432562 20084 6012048 2024-02-20 16:17:13.022 2024-02-20 16:17:13.022 9000 TIP 432562 17411 6012059 2024-02-20 16:17:57.916 2024-02-20 16:17:57.916 51200 FEE 432615 20811 6012060 2024-02-20 16:17:57.916 2024-02-20 16:17:57.916 460800 TIP 432615 14731 6012062 2024-02-20 16:18:03.901 2024-02-20 16:18:03.901 12800 FEE 432615 5806 6012063 2024-02-20 16:18:03.901 2024-02-20 16:18:03.901 115200 TIP 432615 19976 6012077 2024-02-20 16:19:35.31 2024-02-20 16:19:35.31 1000 FEE 432655 21159 6012123 2024-02-20 16:26:32.861 2024-02-20 16:26:32.861 8300 FEE 432563 1740 6012124 2024-02-20 16:26:32.861 2024-02-20 16:26:32.861 74700 TIP 432563 16649 6012137 2024-02-20 16:28:25.704 2024-02-20 16:28:25.704 8300 FEE 432661 17526 6012138 2024-02-20 16:28:25.704 2024-02-20 16:28:25.704 74700 TIP 432661 21573 6011333 2024-02-20 15:07:19.116 2024-02-20 15:07:19.116 2100 FEE 432517 1213 6011334 2024-02-20 15:07:19.116 2024-02-20 15:07:19.116 18900 TIP 432517 20509 6011339 2024-02-20 15:08:48.341 2024-02-20 15:08:48.341 210000 FEE 432572 11423 6011340 2024-02-20 15:08:54.303 2024-02-20 15:08:54.303 2100 FEE 432549 946 6011341 2024-02-20 15:08:54.303 2024-02-20 15:08:54.303 18900 TIP 432549 14404 6011370 2024-02-20 15:10:34.757 2024-02-20 15:10:34.757 1000 FEE 432575 17415 6011399 2024-02-20 15:12:04.067 2024-02-20 15:12:04.067 2100 FEE 432345 20514 6011400 2024-02-20 15:12:04.067 2024-02-20 15:12:04.067 18900 TIP 432345 20924 6011412 2024-02-20 15:14:15.279 2024-02-20 15:14:15.279 1000 FEE 432581 19890 6011413 2024-02-20 15:14:32.279 2024-02-20 15:14:32.279 1000 FEE 432559 1438 6011414 2024-02-20 15:14:32.279 2024-02-20 15:14:32.279 9000 TIP 432559 16442 6011422 2024-02-20 15:14:54.288 2024-02-20 15:14:54.288 2300 FEE 432544 19732 6011423 2024-02-20 15:14:54.288 2024-02-20 15:14:54.288 20700 TIP 432544 3392 6011454 2024-02-20 15:16:36.76 2024-02-20 15:16:36.76 3200 FEE 432576 16145 6011455 2024-02-20 15:16:36.76 2024-02-20 15:16:36.76 28800 TIP 432576 14950 6011463 2024-02-20 15:17:08.47 2024-02-20 15:17:08.47 4000 FEE 432577 15890 6011464 2024-02-20 15:17:08.47 2024-02-20 15:17:08.47 36000 TIP 432577 4062 6011469 2024-02-20 15:17:18.448 2024-02-20 15:17:18.448 1000 FEE 432579 18842 6011470 2024-02-20 15:17:18.448 2024-02-20 15:17:18.448 9000 TIP 432579 12175 6011471 2024-02-20 15:17:18.713 2024-02-20 15:17:18.713 1000 FEE 432579 20581 6011472 2024-02-20 15:17:18.713 2024-02-20 15:17:18.713 9000 TIP 432579 21339 6011475 2024-02-20 15:17:19.097 2024-02-20 15:17:19.097 1000 FEE 432579 5175 6011476 2024-02-20 15:17:19.097 2024-02-20 15:17:19.097 9000 TIP 432579 886 6011489 2024-02-20 15:18:58.003 2024-02-20 15:18:58.003 5000 FEE 147648 20704 6011490 2024-02-20 15:18:58.003 2024-02-20 15:18:58.003 45000 TIP 147648 19286 6011503 2024-02-20 15:21:11.128 2024-02-20 15:21:11.128 1000 FEE 432592 1552 6011513 2024-02-20 15:23:30.699 2024-02-20 15:23:30.699 0 FEE 432595 704 6011536 2024-02-20 15:25:36.425 2024-02-20 15:25:36.425 100 FEE 432529 1044 6011537 2024-02-20 15:25:36.425 2024-02-20 15:25:36.425 900 TIP 432529 19878 6011540 2024-02-20 15:25:37.393 2024-02-20 15:25:37.393 100 FEE 432529 1493 6011541 2024-02-20 15:25:37.393 2024-02-20 15:25:37.393 900 TIP 432529 1609 6011563 2024-02-20 15:25:47.724 2024-02-20 15:25:47.724 100 FEE 432414 19992 6011564 2024-02-20 15:25:47.724 2024-02-20 15:25:47.724 900 TIP 432414 17162 6011569 2024-02-20 15:25:48.519 2024-02-20 15:25:48.519 100 FEE 432414 20849 6011570 2024-02-20 15:25:48.519 2024-02-20 15:25:48.519 900 TIP 432414 7992 6011617 2024-02-20 15:34:16.845 2024-02-20 15:34:16.845 1100 FEE 432301 1008 6011618 2024-02-20 15:34:16.845 2024-02-20 15:34:16.845 9900 TIP 432301 19459 6011626 2024-02-20 15:36:43.198 2024-02-20 15:36:43.198 5000 FEE 432493 10493 6011627 2024-02-20 15:36:43.198 2024-02-20 15:36:43.198 45000 TIP 432493 20525 6011692 2024-02-20 15:45:30.951 2024-02-20 15:45:30.951 1000 FEE 432615 19193 6011693 2024-02-20 15:45:30.951 2024-02-20 15:45:30.951 9000 TIP 432615 21233 6011704 2024-02-20 15:46:06.042 2024-02-20 15:46:06.042 8300 FEE 432619 21247 6011705 2024-02-20 15:46:06.042 2024-02-20 15:46:06.042 74700 TIP 432619 4035 6011710 2024-02-20 15:46:06.542 2024-02-20 15:46:06.542 8300 FEE 432619 2703 6011711 2024-02-20 15:46:06.542 2024-02-20 15:46:06.542 74700 TIP 432619 20881 6011714 2024-02-20 15:46:06.925 2024-02-20 15:46:06.925 8300 FEE 432619 21303 6011715 2024-02-20 15:46:06.925 2024-02-20 15:46:06.925 74700 TIP 432619 3440 6011722 2024-02-20 15:46:07.843 2024-02-20 15:46:07.843 8300 FEE 432619 8360 6011723 2024-02-20 15:46:07.843 2024-02-20 15:46:07.843 74700 TIP 432619 16485 6011728 2024-02-20 15:46:11.812 2024-02-20 15:46:11.812 90000 FEE 432113 10668 6011729 2024-02-20 15:46:11.812 2024-02-20 15:46:11.812 810000 TIP 432113 7673 6011740 2024-02-20 15:47:06.277 2024-02-20 15:47:06.277 900 FEE 432495 9695 6011741 2024-02-20 15:47:06.277 2024-02-20 15:47:06.277 8100 TIP 432495 15732 6011749 2024-02-20 15:47:27.734 2024-02-20 15:47:27.734 9000 FEE 432428 5175 6011750 2024-02-20 15:47:27.734 2024-02-20 15:47:27.734 81000 TIP 432428 19812 6011768 2024-02-20 15:48:36.51 2024-02-20 15:48:36.51 100 FEE 432579 19996 6011769 2024-02-20 15:48:36.51 2024-02-20 15:48:36.51 900 TIP 432579 21233 6011775 2024-02-20 15:48:55.061 2024-02-20 15:48:55.061 2500 FEE 432611 16670 6011776 2024-02-20 15:48:55.061 2024-02-20 15:48:55.061 22500 TIP 432611 9169 6011788 2024-02-20 15:49:34.312 2024-02-20 15:49:34.312 100 FEE 426203 17513 6011789 2024-02-20 15:49:34.312 2024-02-20 15:49:34.312 900 TIP 426203 11898 6011792 2024-02-20 15:49:47.982 2024-02-20 15:49:47.982 1000 FEE 432628 2322 6011852 2024-02-20 15:57:14.483 2024-02-20 15:57:14.483 900 FEE 432527 20454 6011853 2024-02-20 15:57:14.483 2024-02-20 15:57:14.483 8100 TIP 432527 5538 6011867 2024-02-20 15:58:10.271 2024-02-20 15:58:10.271 1000 FEE 432637 19488 6011884 2024-02-20 16:04:33.032 2024-02-20 16:04:33.032 900 FEE 432146 714 6011885 2024-02-20 16:04:33.032 2024-02-20 16:04:33.032 8100 TIP 432146 9276 6011893 2024-02-20 16:05:18.375 2024-02-20 16:05:18.375 2100 FEE 432636 1673 6011894 2024-02-20 16:05:18.375 2024-02-20 16:05:18.375 18900 TIP 432636 19777 6011912 2024-02-20 16:08:21.874 2024-02-20 16:08:21.874 1100 FEE 432517 9421 6011913 2024-02-20 16:08:21.874 2024-02-20 16:08:21.874 9900 TIP 432517 20500 6011920 2024-02-20 16:08:23.352 2024-02-20 16:08:23.352 1100 FEE 432311 16649 6011921 2024-02-20 16:08:23.352 2024-02-20 16:08:23.352 9900 TIP 432311 12422 6011938 2024-02-20 16:08:25.544 2024-02-20 16:08:25.544 1100 FEE 432404 634 6011939 2024-02-20 16:08:25.544 2024-02-20 16:08:25.544 9900 TIP 432404 21356 6011970 2024-02-20 16:11:32.261 2024-02-20 16:11:32.261 2000 FEE 432158 762 6011971 2024-02-20 16:11:32.261 2024-02-20 16:11:32.261 18000 TIP 432158 16954 6011989 2024-02-20 16:12:38.472 2024-02-20 16:12:38.472 100 FEE 431816 20799 6011990 2024-02-20 16:12:38.472 2024-02-20 16:12:38.472 900 TIP 431816 18583 6011992 2024-02-20 16:12:47.21 2024-02-20 16:12:47.21 100 FEE 431916 3353 6011993 2024-02-20 16:12:47.21 2024-02-20 16:12:47.21 900 TIP 431916 21446 6011998 2024-02-20 16:12:48.515 2024-02-20 16:12:48.515 1000 FEE 432213 1039 6011999 2024-02-20 16:12:48.515 2024-02-20 16:12:48.515 9000 TIP 432213 9177 6012006 2024-02-20 16:14:55.982 2024-02-20 16:14:55.982 1000 FEE 432647 16704 6012009 2024-02-20 16:15:52.434 2024-02-20 16:15:52.434 1000 FEE 431935 16177 6012010 2024-02-20 16:15:52.434 2024-02-20 16:15:52.434 9000 TIP 431935 9863 6012017 2024-02-20 16:15:54.36 2024-02-20 16:15:54.36 1000 FEE 431935 19535 6012018 2024-02-20 16:15:54.36 2024-02-20 16:15:54.36 9000 TIP 431935 21589 6012053 2024-02-20 16:17:14.218 2024-02-20 16:17:14.218 1000 FEE 432562 14857 6012054 2024-02-20 16:17:14.218 2024-02-20 16:17:14.218 9000 TIP 432562 660 6012066 2024-02-20 16:18:12.374 2024-02-20 16:18:12.374 1000 FEE 432377 2326 6012067 2024-02-20 16:18:12.374 2024-02-20 16:18:12.374 9000 TIP 432377 19531 6012072 2024-02-20 16:18:13.848 2024-02-20 16:18:13.848 1000 FEE 432377 14295 6012073 2024-02-20 16:18:13.848 2024-02-20 16:18:13.848 9000 TIP 432377 14376 6012098 2024-02-20 16:23:53.384 2024-02-20 16:23:53.384 10000 FEE 432572 21296 6012099 2024-02-20 16:23:53.384 2024-02-20 16:23:53.384 90000 TIP 432572 4014 6012114 2024-02-20 16:26:11.887 2024-02-20 16:26:11.887 11700 FEE 432658 1198 6012115 2024-02-20 16:26:11.887 2024-02-20 16:26:11.887 105300 TIP 432658 1490 6012184 2024-02-20 16:30:55.397 2024-02-20 16:30:55.397 0 FEE 432667 8570 6012198 2024-02-20 16:32:09.445 2024-02-20 16:32:09.445 10000 FEE 432672 21238 6012199 2024-02-20 16:32:09.445 2024-02-20 16:32:09.445 90000 TIP 432672 20744 6012200 2024-02-20 16:32:10.557 2024-02-20 16:32:10.557 1000 FEE 432676 16847 6012204 2024-02-20 16:33:05.534 2024-02-20 16:33:05.534 1700 FEE 432639 21334 6012205 2024-02-20 16:33:05.534 2024-02-20 16:33:05.534 15300 TIP 432639 20687 6012216 2024-02-20 16:34:02.445 2024-02-20 16:34:02.445 10000 DONT_LIKE_THIS 432536 5565 6012223 2024-02-20 16:34:20.17 2024-02-20 16:34:20.17 0 FEE 432678 18837 6012224 2024-02-20 16:34:23.419 2024-02-20 16:34:23.419 1000 FEE 432679 17710 6011502 2024-02-20 15:21:03.203 2024-02-20 15:21:03.203 1000 STREAM 141924 2111 6011520 2024-02-20 15:25:03.221 2024-02-20 15:25:03.221 1000 STREAM 141924 20117 6011578 2024-02-20 15:28:03.239 2024-02-20 15:28:03.239 1000 STREAM 141924 7827 6011580 2024-02-20 15:29:03.244 2024-02-20 15:29:03.244 1000 STREAM 141924 21047 6011592 2024-02-20 15:30:03.254 2024-02-20 15:30:03.254 1000 STREAM 141924 21491 6011599 2024-02-20 15:32:03.262 2024-02-20 15:32:03.262 1000 STREAM 141924 16432 6011881 2024-02-20 16:04:03.697 2024-02-20 16:04:03.697 1000 STREAM 141924 12821 6011895 2024-02-20 16:06:03.712 2024-02-20 16:06:03.712 1000 STREAM 141924 18068 6011909 2024-02-20 16:08:03.711 2024-02-20 16:08:03.711 1000 STREAM 141924 9352 6011960 2024-02-20 16:10:03.726 2024-02-20 16:10:03.726 1000 STREAM 141924 14705 6012005 2024-02-20 16:14:03.731 2024-02-20 16:14:03.731 1000 STREAM 141924 2514 6012061 2024-02-20 16:18:03.747 2024-02-20 16:18:03.747 1000 STREAM 141924 16284 6012217 2024-02-20 16:34:03.967 2024-02-20 16:34:03.967 1000 STREAM 141924 2151 6012227 2024-02-20 16:35:01.95 2024-02-20 16:35:01.95 1000 STREAM 141924 8080 6012249 2024-02-20 16:36:03.951 2024-02-20 16:36:03.951 1000 STREAM 141924 7673 6012313 2024-02-20 16:44:03.967 2024-02-20 16:44:03.967 1000 STREAM 141924 13217 6012339 2024-02-20 16:46:03.97 2024-02-20 16:46:03.97 1000 STREAM 141924 19640 6012365 2024-02-20 16:48:03.987 2024-02-20 16:48:03.987 1000 STREAM 141924 21342 6012401 2024-02-20 16:52:03.987 2024-02-20 16:52:03.987 1000 STREAM 141924 21296 6012423 2024-02-20 16:57:04.003 2024-02-20 16:57:04.003 1000 STREAM 141924 699 6012466 2024-02-20 17:03:04.037 2024-02-20 17:03:04.037 1000 STREAM 141924 9482 6012502 2024-02-20 17:05:04.052 2024-02-20 17:05:04.052 1000 STREAM 141924 18460 6012518 2024-02-20 17:07:04.064 2024-02-20 17:07:04.064 1000 STREAM 141924 21064 6011507 2024-02-20 15:22:10.154 2024-02-20 15:22:10.154 1000 FEE 432593 5794 6011576 2024-02-20 15:27:59.5 2024-02-20 15:27:59.5 3000 FEE 432599 16406 6011577 2024-02-20 15:27:59.5 2024-02-20 15:27:59.5 27000 TIP 432599 18526 6011582 2024-02-20 15:29:36.205 2024-02-20 15:29:36.205 1000 FEE 432602 17682 6011591 2024-02-20 15:29:58.184 2024-02-20 15:29:58.184 0 FEE 432602 7766 6011595 2024-02-20 15:31:15.809 2024-02-20 15:31:15.809 0 FEE 432604 20208 6011596 2024-02-20 15:31:42.454 2024-02-20 15:31:42.454 3200 FEE 432603 20080 6011597 2024-02-20 15:31:42.454 2024-02-20 15:31:42.454 28800 TIP 432603 18178 6011608 2024-02-20 15:32:55.497 2024-02-20 15:32:55.497 10000 FEE 432579 9494 6011609 2024-02-20 15:32:55.497 2024-02-20 15:32:55.497 90000 TIP 432579 964 6011648 2024-02-20 15:41:52.647 2024-02-20 15:41:52.647 1000 FEE 432334 18040 6011649 2024-02-20 15:41:52.647 2024-02-20 15:41:52.647 9000 TIP 432334 17602 6011677 2024-02-20 15:43:26.984 2024-02-20 15:43:26.984 4000 FEE 432609 13100 6011678 2024-02-20 15:43:26.984 2024-02-20 15:43:26.984 36000 TIP 432609 4118 6011688 2024-02-20 15:44:46.757 2024-02-20 15:44:46.757 100 FEE 432137 15063 6011689 2024-02-20 15:44:46.757 2024-02-20 15:44:46.757 900 TIP 432137 21012 6011690 2024-02-20 15:44:55.361 2024-02-20 15:44:55.361 1000 FEE 432620 21155 6011730 2024-02-20 15:46:12.758 2024-02-20 15:46:12.758 90000 FEE 432404 6202 6011731 2024-02-20 15:46:12.758 2024-02-20 15:46:12.758 810000 TIP 432404 4802 6011760 2024-02-20 15:48:11.984 2024-02-20 15:48:11.984 100 FEE 430827 17798 6011761 2024-02-20 15:48:11.984 2024-02-20 15:48:11.984 900 TIP 430827 16543 6011774 2024-02-20 15:48:51.463 2024-02-20 15:48:51.463 100000 DONT_LIKE_THIS 432599 18675 6011781 2024-02-20 15:49:05.92 2024-02-20 15:49:05.92 100 FEE 432619 7818 6011782 2024-02-20 15:49:05.92 2024-02-20 15:49:05.92 900 TIP 432619 8448 6011807 2024-02-20 15:51:24.393 2024-02-20 15:51:24.393 200 FEE 432619 20687 6011808 2024-02-20 15:51:24.393 2024-02-20 15:51:24.393 1800 TIP 432619 3396 6011815 2024-02-20 15:51:37.031 2024-02-20 15:51:37.031 10000 FEE 428894 9348 6011816 2024-02-20 15:51:37.031 2024-02-20 15:51:37.031 90000 TIP 428894 12139 6011836 2024-02-20 15:54:38.534 2024-02-20 15:54:38.534 4000 FEE 432259 746 6011837 2024-02-20 15:54:38.534 2024-02-20 15:54:38.534 36000 TIP 432259 19105 6011838 2024-02-20 15:54:44.749 2024-02-20 15:54:44.749 0 FEE 432634 18460 6011878 2024-02-20 16:01:23.435 2024-02-20 16:01:23.435 1000 FEE 432641 770 6011924 2024-02-20 16:08:24.068 2024-02-20 16:08:24.068 1100 FEE 432320 18310 6011925 2024-02-20 16:08:24.068 2024-02-20 16:08:24.068 9900 TIP 432320 18040 6011942 2024-02-20 16:08:26.233 2024-02-20 16:08:26.233 1100 FEE 432411 21303 6011943 2024-02-20 16:08:26.233 2024-02-20 16:08:26.233 9900 TIP 432411 14255 6011946 2024-02-20 16:08:26.469 2024-02-20 16:08:26.469 1100 FEE 432411 7818 6011947 2024-02-20 16:08:26.469 2024-02-20 16:08:26.469 9900 TIP 432411 19151 6011977 2024-02-20 16:12:09.99 2024-02-20 16:12:09.99 1000 FEE 432203 12334 6011978 2024-02-20 16:12:09.99 2024-02-20 16:12:09.99 9000 TIP 432203 20464 6012022 2024-02-20 16:16:16.407 2024-02-20 16:16:16.407 1000 FEE 432649 6393 6012055 2024-02-20 16:17:21.295 2024-02-20 16:17:21.295 10000 FEE 432651 1571 6012056 2024-02-20 16:17:35.506 2024-02-20 16:17:35.506 100 FEE 253513 16929 6012057 2024-02-20 16:17:35.506 2024-02-20 16:17:35.506 900 TIP 253513 20509 6012080 2024-02-20 16:20:04.682 2024-02-20 16:20:04.682 1000 FEE 432656 18705 6012082 2024-02-20 16:21:42.586 2024-02-20 16:21:42.586 1000 FEE 432657 617 6012110 2024-02-20 16:26:00.747 2024-02-20 16:26:00.747 210000 FEE 432661 19322 6012119 2024-02-20 16:26:32.36 2024-02-20 16:26:32.36 8300 FEE 432563 20500 6012120 2024-02-20 16:26:32.36 2024-02-20 16:26:32.36 74700 TIP 432563 622 6012121 2024-02-20 16:26:32.736 2024-02-20 16:26:32.736 8300 FEE 432563 19449 6012122 2024-02-20 16:26:32.736 2024-02-20 16:26:32.736 74700 TIP 432563 1631 6012135 2024-02-20 16:27:35.33 2024-02-20 16:27:35.33 100000 FEE 432664 19615 6012143 2024-02-20 16:28:26.002 2024-02-20 16:28:26.002 8300 FEE 432661 18387 6012144 2024-02-20 16:28:26.002 2024-02-20 16:28:26.002 74700 TIP 432661 2718 6012150 2024-02-20 16:28:58.318 2024-02-20 16:28:58.318 10000 FEE 432466 714 6012151 2024-02-20 16:28:58.318 2024-02-20 16:28:58.318 90000 TIP 432466 5527 6012154 2024-02-20 16:29:00.115 2024-02-20 16:29:00.115 1000 FEE 432457 20026 6012155 2024-02-20 16:29:00.115 2024-02-20 16:29:00.115 9000 TIP 432457 704 6012163 2024-02-20 16:29:17.059 2024-02-20 16:29:17.059 1000 FEE 432668 1245 6012170 2024-02-20 16:29:47.024 2024-02-20 16:29:47.024 2300 FEE 432661 9341 6012171 2024-02-20 16:29:47.024 2024-02-20 16:29:47.024 20700 TIP 432661 1585 6012174 2024-02-20 16:29:47.274 2024-02-20 16:29:47.274 2300 FEE 432661 17172 6012175 2024-02-20 16:29:47.274 2024-02-20 16:29:47.274 20700 TIP 432661 4238 6012196 2024-02-20 16:31:58.008 2024-02-20 16:31:58.008 1000 FEE 432675 895 6012201 2024-02-20 16:32:52.957 2024-02-20 16:32:52.957 1000 FEE 432677 19282 6012202 2024-02-20 16:33:01.574 2024-02-20 16:33:01.574 1000 FEE 432678 14357 6012206 2024-02-20 16:33:17.062 2024-02-20 16:33:17.062 1700 FEE 432310 20613 6012207 2024-02-20 16:33:17.062 2024-02-20 16:33:17.062 15300 TIP 432310 20646 6012211 2024-02-20 16:33:25.885 2024-02-20 16:33:25.885 3000 FEE 432646 6393 6012212 2024-02-20 16:33:25.885 2024-02-20 16:33:25.885 27000 TIP 432646 21374 6012213 2024-02-20 16:33:26.57 2024-02-20 16:33:26.57 3000 FEE 432648 17392 6012214 2024-02-20 16:33:26.57 2024-02-20 16:33:26.57 27000 TIP 432648 11091 6012218 2024-02-20 16:34:06.98 2024-02-20 16:34:06.98 10000 DONT_LIKE_THIS 432451 20337 6012250 2024-02-20 16:36:05.746 2024-02-20 16:36:05.746 1000 FEE 432674 20201 6012251 2024-02-20 16:36:05.746 2024-02-20 16:36:05.746 9000 TIP 432674 18313 6012252 2024-02-20 16:36:22.607 2024-02-20 16:36:22.607 10000 FEE 432683 825 6012260 2024-02-20 16:37:24.072 2024-02-20 16:37:24.072 1000 FEE 432686 660 6012272 2024-02-20 16:39:37.135 2024-02-20 16:39:37.135 1700 FEE 432598 5500 6012273 2024-02-20 16:39:37.135 2024-02-20 16:39:37.135 15300 TIP 432598 15273 6012284 2024-02-20 16:42:26.096 2024-02-20 16:42:26.096 100 FEE 432690 19394 6012285 2024-02-20 16:42:26.096 2024-02-20 16:42:26.096 900 TIP 432690 8133 6012299 2024-02-20 16:42:47.644 2024-02-20 16:42:47.644 100 FEE 432653 15159 6012300 2024-02-20 16:42:47.644 2024-02-20 16:42:47.644 900 TIP 432653 5829 6012345 2024-02-20 16:46:35.466 2024-02-20 16:46:35.466 9000 FEE 432694 17030 6012346 2024-02-20 16:46:35.466 2024-02-20 16:46:35.466 81000 TIP 432694 19105 6012350 2024-02-20 16:46:55.742 2024-02-20 16:46:55.742 9000 FEE 432517 20849 6012351 2024-02-20 16:46:55.742 2024-02-20 16:46:55.742 81000 TIP 432517 5701 6012356 2024-02-20 16:47:31.685 2024-02-20 16:47:31.685 100 FEE 432563 15732 6012357 2024-02-20 16:47:31.685 2024-02-20 16:47:31.685 900 TIP 432563 15624 6012374 2024-02-20 16:48:26.023 2024-02-20 16:48:26.023 100 FEE 432674 7668 6012375 2024-02-20 16:48:26.023 2024-02-20 16:48:26.023 900 TIP 432674 20980 6012382 2024-02-20 16:49:47.071 2024-02-20 16:49:47.071 2100 FEE 432643 5425 6012383 2024-02-20 16:49:47.071 2024-02-20 16:49:47.071 18900 TIP 432643 891 6012386 2024-02-20 16:49:57.419 2024-02-20 16:49:57.419 900 FEE 432701 18673 6012387 2024-02-20 16:49:57.419 2024-02-20 16:49:57.419 8100 TIP 432701 2000 6012405 2024-02-20 16:53:08.872 2024-02-20 16:53:08.872 1000 FEE 432706 7827 6012421 2024-02-20 16:57:03.963 2024-02-20 16:57:03.963 800 FEE 432705 21521 6012422 2024-02-20 16:57:03.963 2024-02-20 16:57:03.963 7200 TIP 432705 1114 6012446 2024-02-20 16:59:37.416 2024-02-20 16:59:37.416 90000 FEE 432674 18873 6012447 2024-02-20 16:59:37.416 2024-02-20 16:59:37.416 810000 TIP 432674 894 6012488 2024-02-20 17:03:35.173 2024-02-20 17:03:35.173 10000 FEE 432008 14357 6012489 2024-02-20 17:03:35.173 2024-02-20 17:03:35.173 90000 TIP 432008 664 6012503 2024-02-20 17:05:19.904 2024-02-20 17:05:19.904 2100 FEE 432662 16513 6012504 2024-02-20 17:05:19.904 2024-02-20 17:05:19.904 18900 TIP 432662 21498 6012522 2024-02-20 17:08:20.927 2024-02-20 17:08:20.927 1000 FEE 432734 1564 6012547 2024-02-20 17:12:04.904 2024-02-20 17:12:04.904 1600 FEE 432699 21371 6012548 2024-02-20 17:12:04.904 2024-02-20 17:12:04.904 14400 TIP 432699 2367 6011601 2024-02-20 15:32:11.842 2024-02-20 15:32:11.842 210000 FEE 431267 18751 6011602 2024-02-20 15:32:11.842 2024-02-20 15:32:11.842 1890000 TIP 431267 21620 6011610 2024-02-20 15:32:55.779 2024-02-20 15:32:55.779 10000 FEE 432579 18363 6011611 2024-02-20 15:32:55.779 2024-02-20 15:32:55.779 90000 TIP 432579 919 6011616 2024-02-20 15:34:04.2 2024-02-20 15:34:04.2 1000 STREAM 141924 20981 6011628 2024-02-20 15:37:04.208 2024-02-20 15:37:04.208 1000 STREAM 141924 3342 6011629 2024-02-20 15:38:04.205 2024-02-20 15:38:04.205 1000 STREAM 141924 21492 6011630 2024-02-20 15:38:07.88 2024-02-20 15:38:07.88 1000 FEE 432609 725 6011633 2024-02-20 15:39:14.373 2024-02-20 15:39:14.373 0 FEE 432609 3717 6011637 2024-02-20 15:40:04.219 2024-02-20 15:40:04.219 1000 STREAM 141924 18139 6011645 2024-02-20 15:41:04.231 2024-02-20 15:41:04.231 1000 STREAM 141924 18525 6011650 2024-02-20 15:42:04.225 2024-02-20 15:42:04.225 1000 STREAM 141924 11523 6011652 2024-02-20 15:42:16.931 2024-02-20 15:42:16.931 1000 FEE 432614 617 6011655 2024-02-20 15:42:29.741 2024-02-20 15:42:29.741 10000 FEE 432610 9820 6011656 2024-02-20 15:42:29.741 2024-02-20 15:42:29.741 90000 TIP 432610 19996 6011665 2024-02-20 15:42:44.521 2024-02-20 15:42:44.521 2100 FEE 432259 16754 6011666 2024-02-20 15:42:44.521 2024-02-20 15:42:44.521 18900 TIP 432259 20987 6011671 2024-02-20 15:42:44.905 2024-02-20 15:42:44.905 100 FEE 432517 19037 6011672 2024-02-20 15:42:44.905 2024-02-20 15:42:44.905 900 TIP 432517 17446 6011683 2024-02-20 15:43:54.665 2024-02-20 15:43:54.665 1100 FEE 432287 928 6011684 2024-02-20 15:43:54.665 2024-02-20 15:43:54.665 9900 TIP 432287 21091 6011687 2024-02-20 15:44:13.66 2024-02-20 15:44:13.66 100000 FEE 432619 14080 6011691 2024-02-20 15:45:03.34 2024-02-20 15:45:03.34 1000 STREAM 141924 20623 6011694 2024-02-20 15:45:45.153 2024-02-20 15:45:45.153 100000 DONT_LIKE_THIS 432311 21437 6011699 2024-02-20 15:46:04.244 2024-02-20 15:46:04.244 1000 STREAM 141924 4048 6011702 2024-02-20 15:46:05.966 2024-02-20 15:46:05.966 8300 FEE 432619 19886 6011703 2024-02-20 15:46:05.966 2024-02-20 15:46:05.966 74700 TIP 432619 12057 6011708 2024-02-20 15:46:06.401 2024-02-20 15:46:06.401 8300 FEE 432619 805 6011709 2024-02-20 15:46:06.401 2024-02-20 15:46:06.401 74700 TIP 432619 11590 6011712 2024-02-20 15:46:06.65 2024-02-20 15:46:06.65 8300 FEE 432619 16653 6011713 2024-02-20 15:46:06.65 2024-02-20 15:46:06.65 74700 TIP 432619 19524 6011724 2024-02-20 15:46:08.5 2024-02-20 15:46:08.5 16600 FEE 432619 20606 6011725 2024-02-20 15:46:08.5 2024-02-20 15:46:08.5 149400 TIP 432619 13574 6011726 2024-02-20 15:46:08.803 2024-02-20 15:46:08.803 16600 FEE 432619 21061 6011727 2024-02-20 15:46:08.803 2024-02-20 15:46:08.803 149400 TIP 432619 1603 6011734 2024-02-20 15:46:42.797 2024-02-20 15:46:42.797 1000 FEE 432622 17050 6011737 2024-02-20 15:47:02.247 2024-02-20 15:47:02.247 1000 STREAM 141924 18930 6011747 2024-02-20 15:47:19.75 2024-02-20 15:47:19.75 90000 FEE 430892 686 6011748 2024-02-20 15:47:19.75 2024-02-20 15:47:19.75 810000 TIP 430892 19732 6011755 2024-02-20 15:47:31.356 2024-02-20 15:47:31.356 9000 FEE 432605 12921 6011756 2024-02-20 15:47:31.356 2024-02-20 15:47:31.356 81000 TIP 432605 5306 6011759 2024-02-20 15:48:03.542 2024-02-20 15:48:03.542 1000 STREAM 141924 5057 6011764 2024-02-20 15:48:17.892 2024-02-20 15:48:17.892 9000 FEE 432560 20647 6011765 2024-02-20 15:48:17.892 2024-02-20 15:48:17.892 81000 TIP 432560 1534 6011766 2024-02-20 15:48:19.882 2024-02-20 15:48:19.882 2100 FEE 432427 6765 6011767 2024-02-20 15:48:19.882 2024-02-20 15:48:19.882 18900 TIP 432427 16942 6011777 2024-02-20 15:48:58.747 2024-02-20 15:48:58.747 2500 FEE 432466 998 6011778 2024-02-20 15:48:58.747 2024-02-20 15:48:58.747 22500 TIP 432466 4177 6011780 2024-02-20 15:49:02.245 2024-02-20 15:49:02.245 1000 STREAM 141924 21064 6011783 2024-02-20 15:49:06.081 2024-02-20 15:49:06.081 900 FEE 432619 2525 6011784 2024-02-20 15:49:06.081 2024-02-20 15:49:06.081 8100 TIP 432619 16816 6011787 2024-02-20 15:49:31.106 2024-02-20 15:49:31.106 1000 FEE 432627 4487 6011790 2024-02-20 15:49:42.669 2024-02-20 15:49:42.669 100 FEE 430466 12965 6011791 2024-02-20 15:49:42.669 2024-02-20 15:49:42.669 900 TIP 430466 20811 6011795 2024-02-20 15:50:03.599 2024-02-20 15:50:03.599 1000 STREAM 141924 10102 6011800 2024-02-20 15:51:03.562 2024-02-20 15:51:03.562 1000 STREAM 141924 17166 6011803 2024-02-20 15:51:22.51 2024-02-20 15:51:22.51 2100 FEE 432619 8037 6011804 2024-02-20 15:51:22.51 2024-02-20 15:51:22.51 18900 TIP 432619 9705 6011805 2024-02-20 15:51:23.662 2024-02-20 15:51:23.662 10000 FEE 432329 19094 6011806 2024-02-20 15:51:23.662 2024-02-20 15:51:23.662 90000 TIP 432329 8985 6011817 2024-02-20 15:52:03.556 2024-02-20 15:52:03.556 1000 STREAM 141924 15060 6011818 2024-02-20 15:53:02.262 2024-02-20 15:53:02.262 1000 STREAM 141924 20490 6011821 2024-02-20 15:53:37.851 2024-02-20 15:53:37.851 1000 FEE 432631 1195 6011824 2024-02-20 15:54:03.559 2024-02-20 15:54:03.559 1000 STREAM 141924 20110 6011830 2024-02-20 15:54:12.517 2024-02-20 15:54:12.517 1000 FEE 432633 19848 6011840 2024-02-20 15:55:01.571 2024-02-20 15:55:01.571 1000 STREAM 141924 21356 6011841 2024-02-20 15:55:08.11 2024-02-20 15:55:08.11 100 FEE 432489 15560 6011842 2024-02-20 15:55:08.11 2024-02-20 15:55:08.11 900 TIP 432489 19506 6011845 2024-02-20 15:55:43.452 2024-02-20 15:55:43.452 1000 FEE 432636 21603 6011846 2024-02-20 15:56:03.577 2024-02-20 15:56:03.577 1000 STREAM 141924 2390 6011849 2024-02-20 15:57:02.288 2024-02-20 15:57:02.288 1000 STREAM 141924 13987 6011850 2024-02-20 15:57:14.292 2024-02-20 15:57:14.292 100 FEE 432527 2596 6011851 2024-02-20 15:57:14.292 2024-02-20 15:57:14.292 900 TIP 432527 14202 6011866 2024-02-20 15:58:03.619 2024-02-20 15:58:03.619 1000 STREAM 141924 16562 6011869 2024-02-20 15:59:01.609 2024-02-20 15:59:01.609 1000 STREAM 141924 9551 6011872 2024-02-20 15:59:37.603 2024-02-20 15:59:37.603 1500 FEE 432319 10934 6011873 2024-02-20 15:59:37.603 2024-02-20 15:59:37.603 13500 TIP 432319 19488 6011874 2024-02-20 16:00:03.651 2024-02-20 16:00:03.651 1000 STREAM 141924 18330 6011876 2024-02-20 16:00:26.435 2024-02-20 16:00:26.435 100000 FEE 432640 14280 6011877 2024-02-20 16:01:02.335 2024-02-20 16:01:02.335 1000 STREAM 141924 7960 6011879 2024-02-20 16:02:03.689 2024-02-20 16:02:03.689 1000 STREAM 141924 12268 6011880 2024-02-20 16:03:01.737 2024-02-20 16:03:01.737 1000 STREAM 141924 18357 6011886 2024-02-20 16:04:33.719 2024-02-20 16:04:33.719 9000 FEE 432146 15488 6011887 2024-02-20 16:04:33.719 2024-02-20 16:04:33.719 81000 TIP 432146 20045 6011890 2024-02-20 16:05:02.363 2024-02-20 16:05:02.363 1000 STREAM 141924 20964 6011891 2024-02-20 16:05:10.735 2024-02-20 16:05:10.735 900000 FEE 432113 20180 6011892 2024-02-20 16:05:10.735 2024-02-20 16:05:10.735 8100000 TIP 432113 20802 6011896 2024-02-20 16:07:02.372 2024-02-20 16:07:02.372 1000 STREAM 141924 3400 6011899 2024-02-20 16:07:23.221 2024-02-20 16:07:23.221 1100 FEE 432640 10102 6011900 2024-02-20 16:07:23.221 2024-02-20 16:07:23.221 9900 TIP 432640 8385 6011918 2024-02-20 16:08:23.248 2024-02-20 16:08:23.248 1100 FEE 432563 21088 6011919 2024-02-20 16:08:23.248 2024-02-20 16:08:23.248 9900 TIP 432563 12139 6011961 2024-02-20 16:10:05.076 2024-02-20 16:10:05.076 1000 FEE 432643 18892 6011962 2024-02-20 16:10:08.783 2024-02-20 16:10:08.783 0 FEE 432642 21214 6011965 2024-02-20 16:11:01.797 2024-02-20 16:11:01.797 1000 STREAM 141924 15094 6011974 2024-02-20 16:12:03.721 2024-02-20 16:12:03.721 1000 STREAM 141924 16296 6011981 2024-02-20 16:12:10.915 2024-02-20 16:12:10.915 1000 FEE 432203 20080 6011982 2024-02-20 16:12:10.915 2024-02-20 16:12:10.915 9000 TIP 432203 18751 6011983 2024-02-20 16:12:11.425 2024-02-20 16:12:11.425 1000 FEE 432203 15196 6011984 2024-02-20 16:12:11.425 2024-02-20 16:12:11.425 9000 TIP 432203 6164 6012002 2024-02-20 16:13:02.395 2024-02-20 16:13:02.395 1000 STREAM 141924 14295 6012007 2024-02-20 16:15:01.832 2024-02-20 16:15:01.832 1000 STREAM 141924 999 6012015 2024-02-20 16:15:53.951 2024-02-20 16:15:53.951 1000 FEE 431935 8954 6012016 2024-02-20 16:15:53.951 2024-02-20 16:15:53.951 9000 TIP 431935 900 6012021 2024-02-20 16:16:03.737 2024-02-20 16:16:03.737 1000 STREAM 141924 20837 6012023 2024-02-20 16:16:32.146 2024-02-20 16:16:32.146 1000 FEE 432634 5455 6012024 2024-02-20 16:16:32.146 2024-02-20 16:16:32.146 9000 TIP 432634 21042 6011888 2024-02-20 16:04:44.638 2024-02-20 16:04:44.638 1000 FEE 432554 8796 6011889 2024-02-20 16:04:44.638 2024-02-20 16:04:44.638 9000 TIP 432554 14271 6011922 2024-02-20 16:08:23.471 2024-02-20 16:08:23.471 1100 FEE 432311 2188 6011923 2024-02-20 16:08:23.471 2024-02-20 16:08:23.471 9900 TIP 432311 20562 6011928 2024-02-20 16:08:24.646 2024-02-20 16:08:24.646 1100 FEE 432619 15941 6011929 2024-02-20 16:08:24.646 2024-02-20 16:08:24.646 9900 TIP 432619 16988 6011930 2024-02-20 16:08:24.797 2024-02-20 16:08:24.797 1100 FEE 432619 9036 6011931 2024-02-20 16:08:24.797 2024-02-20 16:08:24.797 9900 TIP 432619 7891 6011934 2024-02-20 16:08:24.938 2024-02-20 16:08:24.938 1100 FEE 432619 20889 6011935 2024-02-20 16:08:24.938 2024-02-20 16:08:24.938 9900 TIP 432619 1094 6011940 2024-02-20 16:08:25.687 2024-02-20 16:08:25.687 1100 FEE 432404 989 6011941 2024-02-20 16:08:25.687 2024-02-20 16:08:25.687 9900 TIP 432404 15052 6011952 2024-02-20 16:08:28.142 2024-02-20 16:08:28.142 1100 FEE 432466 20849 6011953 2024-02-20 16:08:28.142 2024-02-20 16:08:28.142 9900 TIP 432466 12959 6011963 2024-02-20 16:10:58.803 2024-02-20 16:10:58.803 100 FEE 432111 5661 6011964 2024-02-20 16:10:58.803 2024-02-20 16:10:58.803 900 TIP 432111 9921 6011996 2024-02-20 16:12:47.968 2024-02-20 16:12:47.968 1000 FEE 432213 15119 6011997 2024-02-20 16:12:47.968 2024-02-20 16:12:47.968 9000 TIP 432213 21058 6012029 2024-02-20 16:16:34.303 2024-02-20 16:16:34.303 1000 FEE 432634 12566 6012030 2024-02-20 16:16:34.303 2024-02-20 16:16:34.303 9000 TIP 432634 9833 6012075 2024-02-20 16:19:11.621 2024-02-20 16:19:11.621 1000 FEE 432653 722 6012095 2024-02-20 16:22:28.943 2024-02-20 16:22:28.943 9000 FEE 432642 9342 6012096 2024-02-20 16:22:28.943 2024-02-20 16:22:28.943 81000 TIP 432642 17064 6012132 2024-02-20 16:26:52.743 2024-02-20 16:26:52.743 700 FEE 432296 4538 6012133 2024-02-20 16:26:52.743 2024-02-20 16:26:52.743 6300 TIP 432296 21480 6012147 2024-02-20 16:28:39.802 2024-02-20 16:28:39.802 2000 FEE 432536 18714 6012148 2024-02-20 16:28:39.802 2024-02-20 16:28:39.802 18000 TIP 432536 19601 6012166 2024-02-20 16:29:46.194 2024-02-20 16:29:46.194 2300 FEE 432661 621 6012167 2024-02-20 16:29:46.194 2024-02-20 16:29:46.194 20700 TIP 432661 9969 6012190 2024-02-20 16:31:23.727 2024-02-20 16:31:23.727 1000 FEE 432672 16270 6012191 2024-02-20 16:31:32.273 2024-02-20 16:31:32.273 1000 FEE 432673 919 6012195 2024-02-20 16:31:56.983 2024-02-20 16:31:56.983 100000 FEE 432674 14669 6012215 2024-02-20 16:33:38.708 2024-02-20 16:33:38.708 0 FEE 432678 1429 6012228 2024-02-20 16:35:08.789 2024-02-20 16:35:08.789 3000 FEE 432311 19309 6012229 2024-02-20 16:35:08.789 2024-02-20 16:35:08.789 27000 TIP 432311 21103 6012254 2024-02-20 16:36:48.769 2024-02-20 16:36:48.769 1000 FEE 432685 19996 6012267 2024-02-20 16:38:18.115 2024-02-20 16:38:18.115 700 FEE 432462 15488 6012268 2024-02-20 16:38:18.115 2024-02-20 16:38:18.115 6300 TIP 432462 20891 6012277 2024-02-20 16:41:29.598 2024-02-20 16:41:29.598 1000 FEE 432690 20788 6012308 2024-02-20 16:43:51.543 2024-02-20 16:43:51.543 3300 FEE 432677 10821 6012309 2024-02-20 16:43:51.543 2024-02-20 16:43:51.543 29700 TIP 432677 21040 6012317 2024-02-20 16:44:15.374 2024-02-20 16:44:15.374 3000 FEE 432603 16834 6012318 2024-02-20 16:44:15.374 2024-02-20 16:44:15.374 27000 TIP 432603 9330 6012323 2024-02-20 16:44:36.065 2024-02-20 16:44:36.065 900 FEE 432661 18828 6012324 2024-02-20 16:44:36.065 2024-02-20 16:44:36.065 8100 TIP 432661 4973 6012331 2024-02-20 16:44:58.863 2024-02-20 16:44:58.863 9000 FEE 432674 20470 6012332 2024-02-20 16:44:58.863 2024-02-20 16:44:58.863 81000 TIP 432674 18169 6012354 2024-02-20 16:47:28.422 2024-02-20 16:47:28.422 100 FEE 431223 6653 6012355 2024-02-20 16:47:28.422 2024-02-20 16:47:28.422 900 TIP 431223 11716 6012368 2024-02-20 16:48:13.585 2024-02-20 16:48:13.585 1000 FEE 432700 12222 6012371 2024-02-20 16:48:24.477 2024-02-20 16:48:24.477 1000 FEE 432701 11609 6012388 2024-02-20 16:49:57.985 2024-02-20 16:49:57.985 9000 FEE 432701 20901 6012389 2024-02-20 16:49:57.985 2024-02-20 16:49:57.985 81000 TIP 432701 18809 6012392 2024-02-20 16:50:17.158 2024-02-20 16:50:17.158 2100 FEE 432642 1603 6012393 2024-02-20 16:50:17.158 2024-02-20 16:50:17.158 18900 TIP 432642 14404 6012402 2024-02-20 16:52:19.042 2024-02-20 16:52:19.042 2100 FEE 432607 822 6012403 2024-02-20 16:52:19.042 2024-02-20 16:52:19.042 18900 TIP 432607 3377 6012407 2024-02-20 16:54:25.327 2024-02-20 16:54:25.327 1000 FEE 432707 18862 6012419 2024-02-20 16:56:35.316 2024-02-20 16:56:35.316 1000 FEE 432709 18473 6012436 2024-02-20 16:58:53.974 2024-02-20 16:58:53.974 2100 FEE 432661 16839 6012437 2024-02-20 16:58:53.974 2024-02-20 16:58:53.974 18900 TIP 432661 20646 6012443 2024-02-20 16:59:11.158 2024-02-20 16:59:11.158 3000 FEE 432669 10731 6012444 2024-02-20 16:59:11.158 2024-02-20 16:59:11.158 27000 TIP 432669 17523 6012445 2024-02-20 16:59:14.494 2024-02-20 16:59:14.494 10000 FEE 432714 21603 6012471 2024-02-20 17:03:18.245 2024-02-20 17:03:18.245 10000 FEE 432227 13174 6012472 2024-02-20 17:03:18.245 2024-02-20 17:03:18.245 90000 TIP 432227 18919 6012499 2024-02-20 17:04:43.643 2024-02-20 17:04:43.643 2100 FEE 432671 21523 6012500 2024-02-20 17:04:43.643 2024-02-20 17:04:43.643 18900 TIP 432671 20655 6012507 2024-02-20 17:05:36.93 2024-02-20 17:05:36.93 1000 FEE 432730 880 6012511 2024-02-20 17:05:57.221 2024-02-20 17:05:57.221 2100 FEE 432577 10554 6012512 2024-02-20 17:05:57.221 2024-02-20 17:05:57.221 18900 TIP 432577 19613 6012534 2024-02-20 17:10:34.989 2024-02-20 17:10:34.989 1000 FEE 432737 18904 6012540 2024-02-20 17:11:23.38 2024-02-20 17:11:23.38 1600 FEE 432673 20302 6012541 2024-02-20 17:11:23.38 2024-02-20 17:11:23.38 14400 TIP 432673 2056 6012570 2024-02-20 17:14:52.082 2024-02-20 17:14:52.082 27000 FEE 432664 16653 6012571 2024-02-20 17:14:52.082 2024-02-20 17:14:52.082 243000 TIP 432664 910 6012573 2024-02-20 17:15:03.502 2024-02-20 17:15:03.502 4000 FEE 432738 1567 6012574 2024-02-20 17:15:03.502 2024-02-20 17:15:03.502 36000 TIP 432738 1039 6012581 2024-02-20 17:15:08.719 2024-02-20 17:15:08.719 1000 FEE 432730 9362 6012582 2024-02-20 17:15:08.719 2024-02-20 17:15:08.719 9000 TIP 432730 2681 6012585 2024-02-20 17:15:09.3 2024-02-20 17:15:09.3 4000 FEE 432728 17817 6012586 2024-02-20 17:15:09.3 2024-02-20 17:15:09.3 36000 TIP 432728 21374 6012589 2024-02-20 17:15:48.833 2024-02-20 17:15:48.833 21000 FEE 432741 20972 6012606 2024-02-20 17:18:20.356 2024-02-20 17:18:20.356 1600 FEE 431223 1567 6012607 2024-02-20 17:18:20.356 2024-02-20 17:18:20.356 14400 TIP 431223 17714 6012625 2024-02-20 17:18:52.872 2024-02-20 17:18:52.872 1000 FEE 432746 19992 6012666 2024-02-20 17:21:49.51 2024-02-20 17:21:49.51 500 FEE 432473 2077 6012667 2024-02-20 17:21:49.51 2024-02-20 17:21:49.51 4500 TIP 432473 16284 6012668 2024-02-20 17:21:56.583 2024-02-20 17:21:56.583 1000 FEE 432749 13517 6012684 2024-02-20 17:22:33.069 2024-02-20 17:22:33.069 1000 FEE 432750 8569 6012685 2024-02-20 17:22:37.293 2024-02-20 17:22:37.293 3000 FEE 432517 21373 6012686 2024-02-20 17:22:37.293 2024-02-20 17:22:37.293 27000 TIP 432517 18608 6012687 2024-02-20 17:22:39.858 2024-02-20 17:22:39.858 2100 FEE 432473 986 6012688 2024-02-20 17:22:39.858 2024-02-20 17:22:39.858 18900 TIP 432473 16970 6012697 2024-02-20 17:23:55.879 2024-02-20 17:23:55.879 1000 FEE 432753 11938 6012703 2024-02-20 17:23:59.319 2024-02-20 17:23:59.319 100 FEE 432511 19809 6012704 2024-02-20 17:23:59.319 2024-02-20 17:23:59.319 900 TIP 432511 20704 6012749 2024-02-20 17:30:44.309 2024-02-20 17:30:44.309 1000 FEE 432718 15556 6012750 2024-02-20 17:30:44.309 2024-02-20 17:30:44.309 9000 TIP 432718 18473 6012801 2024-02-20 17:33:07.553 2024-02-20 17:33:07.553 1000 FEE 432763 10283 6012809 2024-02-20 17:33:25.653 2024-02-20 17:33:25.653 1000 FEE 432729 8870 6012810 2024-02-20 17:33:25.653 2024-02-20 17:33:25.653 9000 TIP 432729 663 6012815 2024-02-20 17:33:49.092 2024-02-20 17:33:49.092 1000 FEE 432766 16267 6012851 2024-02-20 17:34:47.965 2024-02-20 17:34:47.965 1000 FEE 432769 20409 6012870 2024-02-20 17:36:20.51 2024-02-20 17:36:20.51 1000 FEE 432759 19557 6012871 2024-02-20 17:36:20.51 2024-02-20 17:36:20.51 9000 TIP 432759 7185 6012874 2024-02-20 17:36:21.96 2024-02-20 17:36:21.96 1000 FEE 432759 21424 6011954 2024-02-20 16:08:29.165 2024-02-20 16:08:29.165 2200 FEE 432464 9365 6011955 2024-02-20 16:08:29.165 2024-02-20 16:08:29.165 19800 TIP 432464 5160 6011966 2024-02-20 16:11:30.666 2024-02-20 16:11:30.666 1000 FEE 432158 2681 6011967 2024-02-20 16:11:30.666 2024-02-20 16:11:30.666 9000 TIP 432158 20267 6011991 2024-02-20 16:12:39.723 2024-02-20 16:12:39.723 1000 FEE 432644 4538 6011994 2024-02-20 16:12:47.387 2024-02-20 16:12:47.387 1000 FEE 432213 2075 6011995 2024-02-20 16:12:47.387 2024-02-20 16:12:47.387 9000 TIP 432213 13378 6012000 2024-02-20 16:12:49.962 2024-02-20 16:12:49.962 2000 FEE 432213 3439 6012001 2024-02-20 16:12:49.962 2024-02-20 16:12:49.962 18000 TIP 432213 736 6012004 2024-02-20 16:13:25.82 2024-02-20 16:13:25.82 1000 FEE 432646 17082 6012011 2024-02-20 16:15:52.895 2024-02-20 16:15:52.895 1000 FEE 431935 17638 6012012 2024-02-20 16:15:52.895 2024-02-20 16:15:52.895 9000 TIP 431935 21413 6012038 2024-02-20 16:16:59.655 2024-02-20 16:16:59.655 1000 FEE 432571 8508 6012039 2024-02-20 16:16:59.655 2024-02-20 16:16:59.655 9000 TIP 432571 16879 6012058 2024-02-20 16:17:45.32 2024-02-20 16:17:45.32 1000 FEE 432652 13217 6012078 2024-02-20 16:19:48.618 2024-02-20 16:19:48.618 0 FEE 432655 21021 6012107 2024-02-20 16:25:39.057 2024-02-20 16:25:39.057 1000 FEE 432660 14074 6012108 2024-02-20 16:25:56.841 2024-02-20 16:25:56.841 550500 FEE 432409 18679 6012109 2024-02-20 16:25:56.841 2024-02-20 16:25:56.841 4954500 TIP 432409 18660 6012117 2024-02-20 16:26:26.488 2024-02-20 16:26:26.488 1000 FEE 432619 20015 6012118 2024-02-20 16:26:26.488 2024-02-20 16:26:26.488 9000 TIP 432619 19663 6012125 2024-02-20 16:26:32.897 2024-02-20 16:26:32.897 8300 FEE 432563 19292 6012126 2024-02-20 16:26:32.897 2024-02-20 16:26:32.897 74700 TIP 432563 19394 6012139 2024-02-20 16:28:25.742 2024-02-20 16:28:25.742 8300 FEE 432661 16965 6012140 2024-02-20 16:28:25.742 2024-02-20 16:28:25.742 74700 TIP 432661 21402 6012159 2024-02-20 16:29:05.712 2024-02-20 16:29:05.712 2000 FEE 432536 20871 6012160 2024-02-20 16:29:05.712 2024-02-20 16:29:05.712 18000 TIP 432536 7376 6012172 2024-02-20 16:29:47.136 2024-02-20 16:29:47.136 2300 FEE 432661 18945 6012173 2024-02-20 16:29:47.136 2024-02-20 16:29:47.136 20700 TIP 432661 11073 6012185 2024-02-20 16:30:57.685 2024-02-20 16:30:57.685 2100 FEE 432661 6149 6012186 2024-02-20 16:30:57.685 2024-02-20 16:30:57.685 18900 TIP 432661 18865 6012233 2024-02-20 16:35:28.291 2024-02-20 16:35:28.291 1000 FEE 432681 11609 6012238 2024-02-20 16:35:34.139 2024-02-20 16:35:34.139 10000 FEE 432674 5527 6012239 2024-02-20 16:35:34.139 2024-02-20 16:35:34.139 90000 TIP 432674 20964 6012246 2024-02-20 16:35:47.461 2024-02-20 16:35:47.461 100000 FEE 432682 18336 6012263 2024-02-20 16:37:41.027 2024-02-20 16:37:41.027 27000 FEE 432563 11967 6012264 2024-02-20 16:37:41.027 2024-02-20 16:37:41.027 243000 TIP 432563 18271 6012288 2024-02-20 16:42:26.643 2024-02-20 16:42:26.643 100 FEE 432690 20585 6012289 2024-02-20 16:42:26.643 2024-02-20 16:42:26.643 900 TIP 432690 14074 6012293 2024-02-20 16:42:40.524 2024-02-20 16:42:40.524 2100 FEE 432687 1617 6012294 2024-02-20 16:42:40.524 2024-02-20 16:42:40.524 18900 TIP 432687 11153 6012303 2024-02-20 16:42:48.665 2024-02-20 16:42:48.665 100 FEE 432653 2525 6012304 2024-02-20 16:42:48.665 2024-02-20 16:42:48.665 900 TIP 432653 19030 6012306 2024-02-20 16:43:09.829 2024-02-20 16:43:09.829 1000 FEE 432693 14552 6012315 2024-02-20 16:44:13.974 2024-02-20 16:44:13.974 1000 FEE 432639 20881 6012316 2024-02-20 16:44:13.974 2024-02-20 16:44:13.974 9000 TIP 432639 20647 6012334 2024-02-20 16:45:29.013 2024-02-20 16:45:29.013 100000 DONT_LIKE_THIS 421045 15273 6012340 2024-02-20 16:46:28.136 2024-02-20 16:46:28.136 0 FEE 432696 1960 6012341 2024-02-20 16:46:33.469 2024-02-20 16:46:33.469 100 FEE 432694 21458 6012342 2024-02-20 16:46:33.469 2024-02-20 16:46:33.469 900 TIP 432694 8472 6012343 2024-02-20 16:46:33.655 2024-02-20 16:46:33.655 900 FEE 432694 18174 6012344 2024-02-20 16:46:33.655 2024-02-20 16:46:33.655 8100 TIP 432694 5825 6012347 2024-02-20 16:46:54.481 2024-02-20 16:46:54.481 10000 FEE 432698 11866 6012358 2024-02-20 16:47:41.707 2024-02-20 16:47:41.707 1000 FEE 432699 15266 6012363 2024-02-20 16:48:00.122 2024-02-20 16:48:00.122 400 FEE 432499 20613 6012364 2024-02-20 16:48:00.122 2024-02-20 16:48:00.122 3600 TIP 432499 17331 6012381 2024-02-20 16:49:19.608 2024-02-20 16:49:19.608 1000 FEE 432702 19795 6012399 2024-02-20 16:51:47.539 2024-02-20 16:51:47.539 1000 FEE 432563 6653 6012400 2024-02-20 16:51:47.539 2024-02-20 16:51:47.539 9000 TIP 432563 16309 6012426 2024-02-20 16:57:04.335 2024-02-20 16:57:04.335 800 FEE 432705 15094 6012427 2024-02-20 16:57:04.335 2024-02-20 16:57:04.335 7200 TIP 432705 21314 6012428 2024-02-20 16:57:22.838 2024-02-20 16:57:22.838 1000 FEE 432711 2039 6012432 2024-02-20 16:58:05.865 2024-02-20 16:58:05.865 1000 FEE 432712 19615 6012433 2024-02-20 16:58:21.535 2024-02-20 16:58:21.535 21100 FEE 432674 622 6012434 2024-02-20 16:58:21.535 2024-02-20 16:58:21.535 189900 TIP 432674 20973 6012448 2024-02-20 16:59:57.298 2024-02-20 16:59:57.298 1000 FEE 432715 5129 6012454 2024-02-20 17:00:03.595 2024-02-20 17:00:03.595 9000 FEE 432683 19535 6012455 2024-02-20 17:00:03.595 2024-02-20 17:00:03.595 81000 TIP 432683 15491 6012459 2024-02-20 17:00:47.82 2024-02-20 17:00:47.82 3000 FEE 432614 20254 6012460 2024-02-20 17:00:47.82 2024-02-20 17:00:47.82 27000 TIP 432614 20470 6012463 2024-02-20 17:01:58.172 2024-02-20 17:01:58.172 1000 FEE 432721 1823 6012469 2024-02-20 17:03:13.766 2024-02-20 17:03:13.766 10000 FEE 431912 16562 6012470 2024-02-20 17:03:13.766 2024-02-20 17:03:13.766 90000 TIP 431912 20858 6012475 2024-02-20 17:03:24.461 2024-02-20 17:03:24.461 0 FEE 432723 21216 6012476 2024-02-20 17:03:27.007 2024-02-20 17:03:27.007 10000 FEE 432076 20799 6012477 2024-02-20 17:03:27.007 2024-02-20 17:03:27.007 90000 TIP 432076 12272 6012490 2024-02-20 17:03:40.34 2024-02-20 17:03:40.34 10000 FEE 431903 16842 6012491 2024-02-20 17:03:40.34 2024-02-20 17:03:40.34 90000 TIP 431903 21455 6012505 2024-02-20 17:05:26.75 2024-02-20 17:05:26.75 1000 FEE 432728 3683 6012506 2024-02-20 17:05:31.46 2024-02-20 17:05:31.46 1000 FEE 432729 18945 6012508 2024-02-20 17:05:37.414 2024-02-20 17:05:37.414 1000 DONT_LIKE_THIS 429330 7125 6012524 2024-02-20 17:08:44.487 2024-02-20 17:08:44.487 0 FEE 432732 629 6012542 2024-02-20 17:11:50.908 2024-02-20 17:11:50.908 1600 FEE 432676 10731 6012543 2024-02-20 17:11:50.908 2024-02-20 17:11:50.908 14400 TIP 432676 20980 6012583 2024-02-20 17:15:09.262 2024-02-20 17:15:09.262 1000 FEE 432730 21194 6012584 2024-02-20 17:15:09.262 2024-02-20 17:15:09.262 9000 TIP 432730 21201 6012596 2024-02-20 17:17:29.035 2024-02-20 17:17:29.035 1000 FEE 432705 14122 6012597 2024-02-20 17:17:29.035 2024-02-20 17:17:29.035 9000 TIP 432705 20156 6012602 2024-02-20 17:18:11.107 2024-02-20 17:18:11.107 1600 FEE 432320 17094 6012603 2024-02-20 17:18:11.107 2024-02-20 17:18:11.107 14400 TIP 432320 15484 6012618 2024-02-20 17:18:42.972 2024-02-20 17:18:42.972 1600 FEE 431293 12265 6012619 2024-02-20 17:18:42.972 2024-02-20 17:18:42.972 14400 TIP 431293 13517 6012635 2024-02-20 17:21:01.752 2024-02-20 17:21:01.752 2100 FEE 432455 19463 6012636 2024-02-20 17:21:01.752 2024-02-20 17:21:01.752 18900 TIP 432455 21249 6012644 2024-02-20 17:21:07.473 2024-02-20 17:21:07.473 0 FEE 432744 19329 6012645 2024-02-20 17:21:07.717 2024-02-20 17:21:07.717 2100 FEE 432237 11073 6012646 2024-02-20 17:21:07.717 2024-02-20 17:21:07.717 18900 TIP 432237 8284 6012651 2024-02-20 17:21:25.042 2024-02-20 17:21:25.042 2100 FEE 432705 20251 6012652 2024-02-20 17:21:25.042 2024-02-20 17:21:25.042 18900 TIP 432705 12057 6012663 2024-02-20 17:21:39.2 2024-02-20 17:21:39.2 1000 FEE 432748 18601 6012695 2024-02-20 17:23:46.558 2024-02-20 17:23:46.558 2100 FEE 432517 13046 6012696 2024-02-20 17:23:46.558 2024-02-20 17:23:46.558 18900 TIP 432517 2639 6012698 2024-02-20 17:23:58.622 2024-02-20 17:23:58.622 0 FEE 432744 9364 6012699 2024-02-20 17:23:58.909 2024-02-20 17:23:58.909 100 FEE 432511 6653 6012700 2024-02-20 17:23:58.909 2024-02-20 17:23:58.909 900 TIP 432511 19335 6012709 2024-02-20 17:23:59.959 2024-02-20 17:23:59.959 100 FEE 432511 14939 6012710 2024-02-20 17:23:59.959 2024-02-20 17:23:59.959 900 TIP 432511 4084 6012031 2024-02-20 16:16:34.608 2024-02-20 16:16:34.608 1000 FEE 432634 1697 6012032 2024-02-20 16:16:34.608 2024-02-20 16:16:34.608 9000 TIP 432634 18743 6012033 2024-02-20 16:16:56.577 2024-02-20 16:16:56.577 1000 FEE 432650 19906 6012036 2024-02-20 16:16:59.261 2024-02-20 16:16:59.261 1000 FEE 432571 5775 6012037 2024-02-20 16:16:59.261 2024-02-20 16:16:59.261 9000 TIP 432571 21287 6012064 2024-02-20 16:18:12.009 2024-02-20 16:18:12.009 1000 FEE 432377 3409 6012065 2024-02-20 16:18:12.009 2024-02-20 16:18:12.009 9000 TIP 432377 2652 6012068 2024-02-20 16:18:12.642 2024-02-20 16:18:12.642 1000 FEE 432377 11956 6012069 2024-02-20 16:18:12.642 2024-02-20 16:18:12.642 9000 TIP 432377 895 6012070 2024-02-20 16:18:13.384 2024-02-20 16:18:13.384 1000 FEE 432377 17517 6012071 2024-02-20 16:18:13.384 2024-02-20 16:18:13.384 9000 TIP 432377 20156 6012085 2024-02-20 16:22:13.613 2024-02-20 16:22:13.613 100 FEE 432647 16059 6012086 2024-02-20 16:22:13.613 2024-02-20 16:22:13.613 900 TIP 432647 16267 6012103 2024-02-20 16:24:50.569 2024-02-20 16:24:50.569 776700 FEE 432386 14705 6012104 2024-02-20 16:24:50.569 2024-02-20 16:24:50.569 6990300 TIP 432386 10728 6012106 2024-02-20 16:25:12.434 2024-02-20 16:25:12.434 1000 FEE 432659 18832 6012111 2024-02-20 16:26:01.035 2024-02-20 16:26:01.035 10000 FEE 432554 20370 6012112 2024-02-20 16:26:01.035 2024-02-20 16:26:01.035 90000 TIP 432554 11328 6012129 2024-02-20 16:26:34.627 2024-02-20 16:26:34.627 8300 FEE 432594 20062 6012130 2024-02-20 16:26:34.627 2024-02-20 16:26:34.627 74700 TIP 432594 5160 6012131 2024-02-20 16:26:35.398 2024-02-20 16:26:35.398 1000 FEE 432663 19094 6012141 2024-02-20 16:28:25.898 2024-02-20 16:28:25.898 8300 FEE 432661 20218 6012142 2024-02-20 16:28:25.898 2024-02-20 16:28:25.898 74700 TIP 432661 18837 6012177 2024-02-20 16:30:23.734 2024-02-20 16:30:23.734 1000 FEE 432665 18114 6012178 2024-02-20 16:30:23.734 2024-02-20 16:30:23.734 9000 TIP 432665 16052 6012181 2024-02-20 16:30:29.567 2024-02-20 16:30:29.567 1000 FEE 432669 16267 6012240 2024-02-20 16:35:34.301 2024-02-20 16:35:34.301 10000 FEE 432674 17535 6012241 2024-02-20 16:35:34.301 2024-02-20 16:35:34.301 90000 TIP 432674 7425 6012244 2024-02-20 16:35:45.058 2024-02-20 16:35:45.058 10000 FEE 432680 21269 6012245 2024-02-20 16:35:45.058 2024-02-20 16:35:45.058 90000 TIP 432680 21329 6012321 2024-02-20 16:44:35.872 2024-02-20 16:44:35.872 100 FEE 432661 21418 6012322 2024-02-20 16:44:35.872 2024-02-20 16:44:35.872 900 TIP 432661 2437 6012329 2024-02-20 16:44:57.995 2024-02-20 16:44:57.995 900 FEE 432674 15588 6012330 2024-02-20 16:44:57.995 2024-02-20 16:44:57.995 8100 TIP 432674 7818 6012384 2024-02-20 16:49:57.221 2024-02-20 16:49:57.221 100 FEE 432701 695 6012385 2024-02-20 16:49:57.221 2024-02-20 16:49:57.221 900 TIP 432701 19087 6012397 2024-02-20 16:51:43.179 2024-02-20 16:51:43.179 1000 FEE 432682 6260 6012398 2024-02-20 16:51:43.179 2024-02-20 16:51:43.179 9000 TIP 432682 16193 6012467 2024-02-20 17:03:10.49 2024-02-20 17:03:10.49 1000 FEE 432723 19105 6012478 2024-02-20 17:03:29.541 2024-02-20 17:03:29.541 10000 FEE 432069 20555 6012479 2024-02-20 17:03:29.541 2024-02-20 17:03:29.541 90000 TIP 432069 787 6012497 2024-02-20 17:04:11.418 2024-02-20 17:04:11.418 1000 FEE 432725 15180 6012526 2024-02-20 17:09:00.689 2024-02-20 17:09:00.689 0 FEE 432721 11760 6012529 2024-02-20 17:09:58.36 2024-02-20 17:09:58.36 0 FEE 432721 713 6012538 2024-02-20 17:11:19.06 2024-02-20 17:11:19.06 2100 FEE 432435 8380 6012539 2024-02-20 17:11:19.06 2024-02-20 17:11:19.06 18900 TIP 432435 4958 6012544 2024-02-20 17:11:54.056 2024-02-20 17:11:54.056 3200 FEE 432693 8376 6012545 2024-02-20 17:11:54.056 2024-02-20 17:11:54.056 28800 TIP 432693 18005 6012549 2024-02-20 17:12:18.519 2024-02-20 17:12:18.519 1600 FEE 432702 17602 6012550 2024-02-20 17:12:18.519 2024-02-20 17:12:18.519 14400 TIP 432702 2703 6012558 2024-02-20 17:13:37.249 2024-02-20 17:13:37.249 1600 FEE 432724 7983 6012559 2024-02-20 17:13:37.249 2024-02-20 17:13:37.249 14400 TIP 432724 7376 6012577 2024-02-20 17:15:06.842 2024-02-20 17:15:06.842 1000 FEE 432730 4014 6012578 2024-02-20 17:15:06.842 2024-02-20 17:15:06.842 9000 TIP 432730 623 6012594 2024-02-20 17:17:28.558 2024-02-20 17:17:28.558 2100 FEE 432728 19038 6012595 2024-02-20 17:17:28.558 2024-02-20 17:17:28.558 18900 TIP 432728 8664 6012604 2024-02-20 17:18:11.695 2024-02-20 17:18:11.695 1600 FEE 432674 21329 6012605 2024-02-20 17:18:11.695 2024-02-20 17:18:11.695 14400 TIP 432674 11820 6012626 2024-02-20 17:18:58.726 2024-02-20 17:18:58.726 1000 FEE 432747 20424 6012630 2024-02-20 17:19:15.834 2024-02-20 17:19:15.834 2100 FEE 432311 15226 6012631 2024-02-20 17:19:15.834 2024-02-20 17:19:15.834 18900 TIP 432311 6327 6012657 2024-02-20 17:21:32.445 2024-02-20 17:21:32.445 2100 FEE 432639 20183 6012658 2024-02-20 17:21:32.445 2024-02-20 17:21:32.445 18900 TIP 432639 19018 6012671 2024-02-20 17:21:59.59 2024-02-20 17:21:59.59 2100 FEE 432484 11885 6012672 2024-02-20 17:21:59.59 2024-02-20 17:21:59.59 18900 TIP 432484 1272 6012689 2024-02-20 17:22:41.729 2024-02-20 17:22:41.729 1000 FEE 432751 13076 6012713 2024-02-20 17:24:00.455 2024-02-20 17:24:00.455 100 FEE 432511 16680 6012714 2024-02-20 17:24:00.455 2024-02-20 17:24:00.455 900 TIP 432511 715 6012755 2024-02-20 17:31:17.068 2024-02-20 17:31:17.068 100 FEE 432667 21238 6012756 2024-02-20 17:31:17.068 2024-02-20 17:31:17.068 900 TIP 432667 21119 6012765 2024-02-20 17:31:35.26 2024-02-20 17:31:35.26 27000 FEE 432759 1472 6012766 2024-02-20 17:31:35.26 2024-02-20 17:31:35.26 243000 TIP 432759 12368 6012775 2024-02-20 17:32:48.609 2024-02-20 17:32:48.609 1000 FEE 432762 3706 6012803 2024-02-20 17:33:23.997 2024-02-20 17:33:23.997 1000 FEE 432729 993 6012804 2024-02-20 17:33:23.997 2024-02-20 17:33:23.997 9000 TIP 432729 2309 6012847 2024-02-20 17:34:39.425 2024-02-20 17:34:39.425 1000 FEE 432759 19759 6012848 2024-02-20 17:34:39.425 2024-02-20 17:34:39.425 9000 TIP 432759 19890 6012898 2024-02-20 17:37:55.584 2024-02-20 17:37:55.584 6400 FEE 432661 14168 6012899 2024-02-20 17:37:55.584 2024-02-20 17:37:55.584 57600 TIP 432661 6777 6012900 2024-02-20 17:38:01.933 2024-02-20 17:38:01.933 300 FEE 432492 16571 6012901 2024-02-20 17:38:01.933 2024-02-20 17:38:01.933 2700 TIP 432492 19148 6012921 2024-02-20 17:39:18.28 2024-02-20 17:39:18.28 0 FEE 432776 759 6012934 2024-02-20 17:41:15.313 2024-02-20 17:41:15.313 300 FEE 432256 9916 6012935 2024-02-20 17:41:15.313 2024-02-20 17:41:15.313 2700 TIP 432256 18402 6012966 2024-02-20 17:44:07.308 2024-02-20 17:44:07.308 500 FEE 432743 1208 6012967 2024-02-20 17:44:07.308 2024-02-20 17:44:07.308 4500 TIP 432743 19854 6012968 2024-02-20 17:44:07.773 2024-02-20 17:44:07.773 500 FEE 432743 11263 6012969 2024-02-20 17:44:07.773 2024-02-20 17:44:07.773 4500 TIP 432743 18904 6012970 2024-02-20 17:44:18.652 2024-02-20 17:44:18.652 1600 FEE 431896 16670 6012971 2024-02-20 17:44:18.652 2024-02-20 17:44:18.652 14400 TIP 431896 12220 6012994 2024-02-20 17:45:23.216 2024-02-20 17:45:23.216 1000 FEE 432615 15148 6012995 2024-02-20 17:45:23.216 2024-02-20 17:45:23.216 9000 TIP 432615 17275 6013001 2024-02-20 17:45:42.355 2024-02-20 17:45:42.355 800 FEE 432063 20198 6013002 2024-02-20 17:45:42.355 2024-02-20 17:45:42.355 7200 TIP 432063 1620 6013031 2024-02-20 17:47:10.02 2024-02-20 17:47:10.02 1000 FEE 432782 1046 6013032 2024-02-20 17:47:10.02 2024-02-20 17:47:10.02 9000 TIP 432782 4076 6013039 2024-02-20 17:47:12.294 2024-02-20 17:47:12.294 1000 FEE 432782 18241 6013040 2024-02-20 17:47:12.294 2024-02-20 17:47:12.294 9000 TIP 432782 3392 6013041 2024-02-20 17:47:15.905 2024-02-20 17:47:15.905 100 FEE 432784 20979 6013042 2024-02-20 17:47:15.905 2024-02-20 17:47:15.905 900 TIP 432784 16289 6013043 2024-02-20 17:47:16.231 2024-02-20 17:47:16.231 100 FEE 432784 11698 6013044 2024-02-20 17:47:16.231 2024-02-20 17:47:16.231 900 TIP 432784 9261 6013051 2024-02-20 17:47:33.97 2024-02-20 17:47:33.97 4000 FEE 432788 16769 6013052 2024-02-20 17:47:33.97 2024-02-20 17:47:33.97 36000 TIP 432788 6749 6013058 2024-02-20 17:47:48.778 2024-02-20 17:47:48.778 1000 FEE 432796 21541 6013061 2024-02-20 17:48:49.931 2024-02-20 17:48:49.931 1000 FEE 432798 20811 6013067 2024-02-20 17:50:00.963 2024-02-20 17:50:00.963 3000 FEE 432788 18412 6012042 2024-02-20 16:17:00.181 2024-02-20 16:17:00.181 1000 FEE 432571 21577 6012043 2024-02-20 16:17:00.181 2024-02-20 16:17:00.181 9000 TIP 432571 18072 6012044 2024-02-20 16:17:01.83 2024-02-20 16:17:01.83 1000 STREAM 141924 18581 6012051 2024-02-20 16:17:13.799 2024-02-20 16:17:13.799 1000 FEE 432562 6058 6012052 2024-02-20 16:17:13.799 2024-02-20 16:17:13.799 9000 TIP 432562 974 6012074 2024-02-20 16:19:01.852 2024-02-20 16:19:01.852 1000 STREAM 141924 16145 6012087 2024-02-20 16:22:13.789 2024-02-20 16:22:13.789 900 FEE 432647 18679 6012088 2024-02-20 16:22:13.789 2024-02-20 16:22:13.789 8100 TIP 432647 4102 6012089 2024-02-20 16:22:14.666 2024-02-20 16:22:14.666 9000 FEE 432647 20597 6012090 2024-02-20 16:22:14.666 2024-02-20 16:22:14.666 81000 TIP 432647 19021 6012091 2024-02-20 16:22:28.285 2024-02-20 16:22:28.285 100 FEE 432642 7125 6012092 2024-02-20 16:22:28.285 2024-02-20 16:22:28.285 900 TIP 432642 1012 6012093 2024-02-20 16:22:28.44 2024-02-20 16:22:28.44 900 FEE 432642 6499 6012094 2024-02-20 16:22:28.44 2024-02-20 16:22:28.44 8100 TIP 432642 769 6012101 2024-02-20 16:24:33.274 2024-02-20 16:24:33.274 5000 FEE 432531 20861 6012102 2024-02-20 16:24:33.274 2024-02-20 16:24:33.274 45000 TIP 432531 644 6012116 2024-02-20 16:26:22.003 2024-02-20 16:26:22.003 1000 FEE 432662 14169 6012136 2024-02-20 16:28:03.892 2024-02-20 16:28:03.892 1000 STREAM 141924 11192 6012145 2024-02-20 16:28:39.519 2024-02-20 16:28:39.519 2000 FEE 432536 17221 6012146 2024-02-20 16:28:39.519 2024-02-20 16:28:39.519 18000 TIP 432536 3304 6012149 2024-02-20 16:28:56.375 2024-02-20 16:28:56.375 1000 FEE 432665 10668 6012157 2024-02-20 16:29:05.494 2024-02-20 16:29:05.494 2000 FEE 432536 11328 6012158 2024-02-20 16:29:05.494 2024-02-20 16:29:05.494 18000 TIP 432536 18862 6012168 2024-02-20 16:29:46.901 2024-02-20 16:29:46.901 2300 FEE 432661 859 6012169 2024-02-20 16:29:46.901 2024-02-20 16:29:46.901 20700 TIP 432661 5703 6012176 2024-02-20 16:30:03.954 2024-02-20 16:30:03.954 1000 STREAM 141924 21051 6012183 2024-02-20 16:30:46.893 2024-02-20 16:30:46.893 1000 FEE 432671 1624 6012219 2024-02-20 16:34:10.238 2024-02-20 16:34:10.238 3000 FEE 432339 20246 6012220 2024-02-20 16:34:10.238 2024-02-20 16:34:10.238 27000 TIP 432339 7418 6012230 2024-02-20 16:35:09.322 2024-02-20 16:35:09.322 27000 FEE 432311 6149 6012231 2024-02-20 16:35:09.322 2024-02-20 16:35:09.322 243000 TIP 432311 21131 6012232 2024-02-20 16:35:16.838 2024-02-20 16:35:16.838 1000 FEE 432680 17682 6012257 2024-02-20 16:36:59.547 2024-02-20 16:36:59.547 800 FEE 432560 15510 6012258 2024-02-20 16:36:59.547 2024-02-20 16:36:59.547 7200 TIP 432560 17517 6012259 2024-02-20 16:37:01.967 2024-02-20 16:37:01.967 1000 STREAM 141924 18543 6012269 2024-02-20 16:39:01.983 2024-02-20 16:39:01.983 1000 STREAM 141924 17800 6012270 2024-02-20 16:39:04.169 2024-02-20 16:39:04.169 0 FEE 432684 2042 6012276 2024-02-20 16:41:24.876 2024-02-20 16:41:24.876 1000 FEE 432689 18557 6012280 2024-02-20 16:41:39.092 2024-02-20 16:41:39.092 1000 FEE 432691 5293 6012282 2024-02-20 16:42:25.825 2024-02-20 16:42:25.825 100 FEE 432690 14909 6012283 2024-02-20 16:42:25.825 2024-02-20 16:42:25.825 900 TIP 432690 5527 6012286 2024-02-20 16:42:26.314 2024-02-20 16:42:26.314 100 FEE 432690 16717 6012287 2024-02-20 16:42:26.314 2024-02-20 16:42:26.314 900 TIP 432690 13798 6012292 2024-02-20 16:42:35.512 2024-02-20 16:42:35.512 1000 FEE 432692 14152 6012307 2024-02-20 16:43:42.909 2024-02-20 16:43:42.909 1000 FEE 432694 1195 6012314 2024-02-20 16:44:07.78 2024-02-20 16:44:07.78 1000 FEE 432695 6499 6012337 2024-02-20 16:45:41.21 2024-02-20 16:45:41.21 11000 FEE 432696 14939 6012369 2024-02-20 16:48:17.058 2024-02-20 16:48:17.058 100 FEE 432674 19857 6012370 2024-02-20 16:48:17.058 2024-02-20 16:48:17.058 900 TIP 432674 1564 6012417 2024-02-20 16:56:22.578 2024-02-20 16:56:22.578 30000 FEE 432674 8998 6012418 2024-02-20 16:56:22.578 2024-02-20 16:56:22.578 270000 TIP 432674 802 6012424 2024-02-20 16:57:04.139 2024-02-20 16:57:04.139 800 FEE 432705 15526 6012425 2024-02-20 16:57:04.139 2024-02-20 16:57:04.139 7200 TIP 432705 1316 6012429 2024-02-20 16:57:26.801 2024-02-20 16:57:26.801 6300 FEE 432705 749 6012430 2024-02-20 16:57:26.801 2024-02-20 16:57:26.801 56700 TIP 432705 12277 6012431 2024-02-20 16:58:02.106 2024-02-20 16:58:02.106 1000 STREAM 141924 17275 6012435 2024-02-20 16:58:32.607 2024-02-20 16:58:32.607 1000 FEE 432713 14705 6012449 2024-02-20 17:00:02.17 2024-02-20 17:00:02.17 1000 STREAM 141924 13798 6012464 2024-02-20 17:02:02.146 2024-02-20 17:02:02.146 1000 STREAM 141924 19500 6012496 2024-02-20 17:04:02.167 2024-02-20 17:04:02.167 1000 STREAM 141924 8998 6012515 2024-02-20 17:06:15.326 2024-02-20 17:06:15.326 1000 FEE 432722 8423 6012516 2024-02-20 17:06:15.326 2024-02-20 17:06:15.326 9000 TIP 432722 21166 6012517 2024-02-20 17:06:37.221 2024-02-20 17:06:37.221 0 FEE 432721 14909 6012525 2024-02-20 17:08:46.682 2024-02-20 17:08:46.682 100000 FEE 432736 18581 6012530 2024-02-20 17:10:02.271 2024-02-20 17:10:02.271 1000 STREAM 141924 1833 6012535 2024-02-20 17:11:02.265 2024-02-20 17:11:02.265 1000 STREAM 141924 8004 6012551 2024-02-20 17:12:36.269 2024-02-20 17:12:36.269 800 FEE 432707 651 6012552 2024-02-20 17:12:36.269 2024-02-20 17:12:36.269 7200 TIP 432707 1718 6012555 2024-02-20 17:13:02.277 2024-02-20 17:13:02.277 1000 STREAM 141924 6499 6012567 2024-02-20 17:14:13.788 2024-02-20 17:14:13.788 1000 FEE 432740 2711 6012579 2024-02-20 17:15:08.359 2024-02-20 17:15:08.359 1000 FEE 432730 18511 6012580 2024-02-20 17:15:08.359 2024-02-20 17:15:08.359 9000 TIP 432730 14080 6012590 2024-02-20 17:16:02.305 2024-02-20 17:16:02.305 1000 STREAM 141924 714 6012591 2024-02-20 17:17:02.305 2024-02-20 17:17:02.305 1000 STREAM 141924 17693 6012592 2024-02-20 17:17:24.451 2024-02-20 17:17:24.451 2100 FEE 432735 17798 6012593 2024-02-20 17:17:24.451 2024-02-20 17:17:24.451 18900 TIP 432735 19512 6012601 2024-02-20 17:18:02.319 2024-02-20 17:18:02.319 1000 STREAM 141924 19449 6012610 2024-02-20 17:18:23.954 2024-02-20 17:18:23.954 1000 FEE 432743 14906 6012623 2024-02-20 17:18:47.09 2024-02-20 17:18:47.09 800 FEE 432339 4692 6012624 2024-02-20 17:18:47.09 2024-02-20 17:18:47.09 7200 TIP 432339 17690 6012632 2024-02-20 17:20:02.352 2024-02-20 17:20:02.352 1000 STREAM 141924 21605 6012649 2024-02-20 17:21:24.223 2024-02-20 17:21:24.223 2100 FEE 432722 12334 6012650 2024-02-20 17:21:24.223 2024-02-20 17:21:24.223 18900 TIP 432722 19036 6012676 2024-02-20 17:22:09.985 2024-02-20 17:22:09.985 2100 FEE 432469 699 6012677 2024-02-20 17:22:09.985 2024-02-20 17:22:09.985 18900 TIP 432469 891 6012680 2024-02-20 17:22:25.856 2024-02-20 17:22:25.856 2100 FEE 432464 16954 6012681 2024-02-20 17:22:25.856 2024-02-20 17:22:25.856 18900 TIP 432464 10352 6012691 2024-02-20 17:23:08.541 2024-02-20 17:23:08.541 3000 FEE 432661 16505 6012692 2024-02-20 17:23:08.541 2024-02-20 17:23:08.541 27000 TIP 432661 1060 6012701 2024-02-20 17:23:59.115 2024-02-20 17:23:59.115 100 FEE 432511 4388 6012702 2024-02-20 17:23:59.115 2024-02-20 17:23:59.115 900 TIP 432511 21088 6012711 2024-02-20 17:24:00.189 2024-02-20 17:24:00.189 100 FEE 432511 8916 6012712 2024-02-20 17:24:00.189 2024-02-20 17:24:00.189 900 TIP 432511 6030 6012720 2024-02-20 17:25:02.418 2024-02-20 17:25:02.418 1000 STREAM 141924 11423 6012724 2024-02-20 17:26:17.204 2024-02-20 17:26:17.204 3000 FEE 432647 20614 6012725 2024-02-20 17:26:17.204 2024-02-20 17:26:17.204 27000 TIP 432647 2502 6012727 2024-02-20 17:27:02.446 2024-02-20 17:27:02.446 1000 STREAM 141924 9353 6012729 2024-02-20 17:27:29.756 2024-02-20 17:27:29.756 3300 FEE 432727 2620 6012730 2024-02-20 17:27:29.756 2024-02-20 17:27:29.756 29700 TIP 432727 21527 6012733 2024-02-20 17:28:02.443 2024-02-20 17:28:02.443 1000 STREAM 141924 20327 6012734 2024-02-20 17:28:27.406 2024-02-20 17:28:27.406 0 FEE 432744 10060 6012739 2024-02-20 17:30:02.533 2024-02-20 17:30:02.533 1000 STREAM 141924 20267 6012747 2024-02-20 17:30:43.695 2024-02-20 17:30:43.695 1000 FEE 432718 1505 6012748 2024-02-20 17:30:43.695 2024-02-20 17:30:43.695 9000 TIP 432718 5776 6012751 2024-02-20 17:30:44.945 2024-02-20 17:30:44.945 1000 FEE 432718 2674 6012752 2024-02-20 17:30:44.945 2024-02-20 17:30:44.945 9000 TIP 432718 15271 6012753 2024-02-20 17:30:53.267 2024-02-20 17:30:53.267 10000 FEE 432760 20299 6012079 2024-02-20 16:20:03.752 2024-02-20 16:20:03.752 1000 STREAM 141924 20080 6012081 2024-02-20 16:21:02.45 2024-02-20 16:21:02.45 1000 STREAM 141924 19537 6012084 2024-02-20 16:22:03.753 2024-02-20 16:22:03.753 1000 STREAM 141924 16052 6012100 2024-02-20 16:24:03.763 2024-02-20 16:24:03.763 1000 STREAM 141924 13599 6012134 2024-02-20 16:27:01.934 2024-02-20 16:27:01.934 1000 STREAM 141924 11938 6012380 2024-02-20 16:49:02.543 2024-02-20 16:49:02.543 1000 STREAM 141924 21389 6012404 2024-02-20 16:53:02.559 2024-02-20 16:53:02.559 1000 STREAM 141924 18995 6012097 2024-02-20 16:23:01.865 2024-02-20 16:23:01.865 1000 STREAM 141924 11885 6012113 2024-02-20 16:26:03.891 2024-02-20 16:26:03.891 1000 STREAM 141924 11590 6012156 2024-02-20 16:29:01.91 2024-02-20 16:29:01.91 1000 STREAM 141924 12220 6012187 2024-02-20 16:31:01.941 2024-02-20 16:31:01.941 1000 STREAM 141924 20972 6012197 2024-02-20 16:32:03.932 2024-02-20 16:32:03.932 1000 STREAM 141924 2508 6012203 2024-02-20 16:33:01.942 2024-02-20 16:33:01.942 1000 STREAM 141924 19471 6012105 2024-02-20 16:25:02.46 2024-02-20 16:25:02.46 1000 STREAM 141924 13198 6012152 2024-02-20 16:28:58.878 2024-02-20 16:28:58.878 2000 FEE 432536 5527 6012153 2024-02-20 16:28:58.878 2024-02-20 16:28:58.878 18000 TIP 432536 17331 6012162 2024-02-20 16:29:14.26 2024-02-20 16:29:14.26 1000 FEE 432667 14791 6012164 2024-02-20 16:29:45.287 2024-02-20 16:29:45.287 4600 FEE 432661 18170 6012165 2024-02-20 16:29:45.287 2024-02-20 16:29:45.287 41400 TIP 432661 18336 6012179 2024-02-20 16:30:26.213 2024-02-20 16:30:26.213 1000 FEE 432665 10352 6012180 2024-02-20 16:30:26.213 2024-02-20 16:30:26.213 9000 TIP 432665 21482 6012188 2024-02-20 16:31:22 2024-02-20 16:31:22 1000 FEE 429419 6765 6012189 2024-02-20 16:31:22 2024-02-20 16:31:22 9000 TIP 429419 7979 6012193 2024-02-20 16:31:51.561 2024-02-20 16:31:51.561 1700 FEE 432422 11776 6012194 2024-02-20 16:31:51.561 2024-02-20 16:31:51.561 15300 TIP 432422 18615 6012209 2024-02-20 16:33:21.797 2024-02-20 16:33:21.797 700 FEE 432189 14169 6012210 2024-02-20 16:33:21.797 2024-02-20 16:33:21.797 6300 TIP 432189 675 6012221 2024-02-20 16:34:10.763 2024-02-20 16:34:10.763 27000 FEE 432339 21062 6012222 2024-02-20 16:34:10.763 2024-02-20 16:34:10.763 243000 TIP 432339 913 6012234 2024-02-20 16:35:33.844 2024-02-20 16:35:33.844 10000 FEE 432674 8954 6012235 2024-02-20 16:35:33.844 2024-02-20 16:35:33.844 90000 TIP 432674 5175 6012255 2024-02-20 16:36:59.099 2024-02-20 16:36:59.099 800 FEE 432560 977 6012256 2024-02-20 16:36:59.099 2024-02-20 16:36:59.099 7200 TIP 432560 717 6012261 2024-02-20 16:37:40.042 2024-02-20 16:37:40.042 3000 FEE 432563 14308 6012262 2024-02-20 16:37:40.042 2024-02-20 16:37:40.042 27000 TIP 432563 14489 6012278 2024-02-20 16:41:32.592 2024-02-20 16:41:32.592 2000 FEE 432595 19132 6012279 2024-02-20 16:41:32.592 2024-02-20 16:41:32.592 18000 TIP 432595 19037 6012295 2024-02-20 16:42:47.076 2024-02-20 16:42:47.076 100 FEE 432653 20514 6012296 2024-02-20 16:42:47.076 2024-02-20 16:42:47.076 900 TIP 432653 20272 6012310 2024-02-20 16:43:58.267 2024-02-20 16:43:58.267 0 FEE 432679 21386 6012311 2024-02-20 16:44:00.481 2024-02-20 16:44:00.481 3000 FEE 432576 17046 6012312 2024-02-20 16:44:00.481 2024-02-20 16:44:00.481 27000 TIP 432576 16284 6012394 2024-02-20 16:50:17.311 2024-02-20 16:50:17.311 1000 FEE 432704 12930 6012408 2024-02-20 16:54:57.305 2024-02-20 16:54:57.305 2100 FEE 432491 12911 6012409 2024-02-20 16:54:57.305 2024-02-20 16:54:57.305 18900 TIP 432491 11760 6012458 2024-02-20 17:00:40.359 2024-02-20 17:00:40.359 1000 FEE 432718 3377 6012468 2024-02-20 17:03:11.36 2024-02-20 17:03:11.36 1000 FEE 432724 12562 6012482 2024-02-20 17:03:32.515 2024-02-20 17:03:32.515 10000 FEE 432012 9341 6012483 2024-02-20 17:03:32.515 2024-02-20 17:03:32.515 90000 TIP 432012 2338 6012486 2024-02-20 17:03:35.036 2024-02-20 17:03:35.036 4000 FEE 432712 3478 6012487 2024-02-20 17:03:35.036 2024-02-20 17:03:35.036 36000 TIP 432712 1718 6012494 2024-02-20 17:03:58.738 2024-02-20 17:03:58.738 4200 FEE 432563 15510 6012495 2024-02-20 17:03:58.738 2024-02-20 17:03:58.738 37800 TIP 432563 1428 6012501 2024-02-20 17:04:50.829 2024-02-20 17:04:50.829 1000 FEE 432727 7809 6012509 2024-02-20 17:05:52.866 2024-02-20 17:05:52.866 2100 FEE 432659 12566 6012510 2024-02-20 17:05:52.866 2024-02-20 17:05:52.866 18900 TIP 432659 7553 6012523 2024-02-20 17:08:25.868 2024-02-20 17:08:25.868 1000 FEE 432735 21514 6012531 2024-02-20 17:10:10.354 2024-02-20 17:10:10.354 0 FEE 432736 16704 6012532 2024-02-20 17:10:11.504 2024-02-20 17:10:11.504 1000 FEE 432736 16571 6012533 2024-02-20 17:10:11.504 2024-02-20 17:10:11.504 9000 TIP 432736 12291 6012599 2024-02-20 17:17:53.644 2024-02-20 17:17:53.644 3000 FEE 431993 19138 6012600 2024-02-20 17:17:53.644 2024-02-20 17:17:53.644 27000 TIP 431993 18178 6012627 2024-02-20 17:19:00.98 2024-02-20 17:19:00.98 2100 FEE 432379 14295 6012628 2024-02-20 17:19:00.98 2024-02-20 17:19:00.98 18900 TIP 432379 11240 6012674 2024-02-20 17:22:04.653 2024-02-20 17:22:04.653 2100 FEE 432467 15719 6012675 2024-02-20 17:22:04.653 2024-02-20 17:22:04.653 18900 TIP 432467 15063 6012694 2024-02-20 17:23:16.465 2024-02-20 17:23:16.465 0 FEE 432744 826 6012705 2024-02-20 17:23:59.634 2024-02-20 17:23:59.634 100 FEE 432511 18526 6012706 2024-02-20 17:23:59.634 2024-02-20 17:23:59.634 900 TIP 432511 716 6012743 2024-02-20 17:30:42.75 2024-02-20 17:30:42.75 1000 FEE 432718 12808 6012744 2024-02-20 17:30:42.75 2024-02-20 17:30:42.75 9000 TIP 432718 4474 6012761 2024-02-20 17:31:33.271 2024-02-20 17:31:33.271 2100 FEE 432667 20606 6012762 2024-02-20 17:31:33.271 2024-02-20 17:31:33.271 18900 TIP 432667 21249 6012769 2024-02-20 17:31:52.537 2024-02-20 17:31:52.537 1000 FEE 432761 20554 6012778 2024-02-20 17:32:56.348 2024-02-20 17:32:56.348 7700 FEE 432674 21262 6012779 2024-02-20 17:32:56.348 2024-02-20 17:32:56.348 69300 TIP 432674 1773 6012784 2024-02-20 17:32:57.18 2024-02-20 17:32:57.18 7700 FEE 432674 11498 6012785 2024-02-20 17:32:57.18 2024-02-20 17:32:57.18 69300 TIP 432674 15139 6012825 2024-02-20 17:34:10.565 2024-02-20 17:34:10.565 100 FEE 432755 7418 6012826 2024-02-20 17:34:10.565 2024-02-20 17:34:10.565 900 TIP 432755 14247 6012827 2024-02-20 17:34:11.193 2024-02-20 17:34:11.193 100 FEE 432755 6360 6012828 2024-02-20 17:34:11.193 2024-02-20 17:34:11.193 900 TIP 432755 642 6012834 2024-02-20 17:34:17.548 2024-02-20 17:34:17.548 1000 FEE 432763 21012 6012835 2024-02-20 17:34:17.548 2024-02-20 17:34:17.548 9000 TIP 432763 12561 6012849 2024-02-20 17:34:40.592 2024-02-20 17:34:40.592 1000 FEE 432759 16485 6012850 2024-02-20 17:34:40.592 2024-02-20 17:34:40.592 9000 TIP 432759 8287 6012855 2024-02-20 17:35:26.093 2024-02-20 17:35:26.093 0 FEE 432764 19043 6012866 2024-02-20 17:36:19.347 2024-02-20 17:36:19.347 1000 FEE 432759 18865 6012867 2024-02-20 17:36:19.347 2024-02-20 17:36:19.347 9000 TIP 432759 9339 6012880 2024-02-20 17:36:43.1 2024-02-20 17:36:43.1 1000 FEE 432773 651 6012888 2024-02-20 17:37:45.868 2024-02-20 17:37:45.868 1000 FEE 432759 8535 6012889 2024-02-20 17:37:45.868 2024-02-20 17:37:45.868 9000 TIP 432759 20450 6012905 2024-02-20 17:38:13.114 2024-02-20 17:38:13.114 1000 FEE 432773 2329 6012906 2024-02-20 17:38:13.114 2024-02-20 17:38:13.114 9000 TIP 432773 12930 6012907 2024-02-20 17:38:13.223 2024-02-20 17:38:13.223 6400 FEE 432664 16670 6012908 2024-02-20 17:38:13.223 2024-02-20 17:38:13.223 57600 TIP 432664 20452 6012909 2024-02-20 17:38:13.332 2024-02-20 17:38:13.332 1000 FEE 432774 18529 6012928 2024-02-20 17:40:45.547 2024-02-20 17:40:45.547 2100 FEE 432776 17064 6012929 2024-02-20 17:40:45.547 2024-02-20 17:40:45.547 18900 TIP 432776 20990 6012937 2024-02-20 17:41:58.814 2024-02-20 17:41:58.814 1000 FEE 432780 16876 6012940 2024-02-20 17:42:49.281 2024-02-20 17:42:49.281 10000 FEE 432641 18583 6012941 2024-02-20 17:42:49.281 2024-02-20 17:42:49.281 90000 TIP 432641 5306 6012947 2024-02-20 17:43:02.7 2024-02-20 17:43:02.7 1000 FEE 432780 2328 6012948 2024-02-20 17:43:02.7 2024-02-20 17:43:02.7 9000 TIP 432780 1429 6012962 2024-02-20 17:43:55.232 2024-02-20 17:43:55.232 5000 FEE 432736 15843 6012963 2024-02-20 17:43:55.232 2024-02-20 17:43:55.232 45000 TIP 432736 20701 6012973 2024-02-20 17:44:35.273 2024-02-20 17:44:35.273 800 FEE 431864 4118 6012974 2024-02-20 17:44:35.273 2024-02-20 17:44:35.273 7200 TIP 431864 19235 6012979 2024-02-20 17:44:47.527 2024-02-20 17:44:47.527 3000 DONT_LIKE_THIS 432530 9333 6012980 2024-02-20 17:44:48.261 2024-02-20 17:44:48.261 800 FEE 432025 1705 6012981 2024-02-20 17:44:48.261 2024-02-20 17:44:48.261 7200 TIP 432025 6229 6013005 2024-02-20 17:45:50.746 2024-02-20 17:45:50.746 1000 FEE 432311 16447 6013006 2024-02-20 17:45:50.746 2024-02-20 17:45:50.746 9000 TIP 432311 21238 6013009 2024-02-20 17:45:58.085 2024-02-20 17:45:58.085 1600 FEE 432166 15521 6013010 2024-02-20 17:45:58.085 2024-02-20 17:45:58.085 14400 TIP 432166 4027 6013022 2024-02-20 17:46:31.231 2024-02-20 17:46:31.231 1000 FEE 432792 1611 6013108 2024-02-20 17:54:51.323 2024-02-20 17:54:51.323 5000 FEE 432563 20257 6013109 2024-02-20 17:54:51.323 2024-02-20 17:54:51.323 45000 TIP 432563 2722 6013148 2024-02-20 17:57:14.403 2024-02-20 17:57:14.403 1000 FEE 432812 17237 6013161 2024-02-20 17:57:47.49 2024-02-20 17:57:47.49 5000 FEE 432661 997 6013162 2024-02-20 17:57:47.49 2024-02-20 17:57:47.49 45000 TIP 432661 21480 6012225 2024-02-20 16:34:42.144 2024-02-20 16:34:42.144 1000 FEE 432678 670 6012226 2024-02-20 16:34:42.144 2024-02-20 16:34:42.144 9000 TIP 432678 14195 6012236 2024-02-20 16:35:33.993 2024-02-20 16:35:33.993 10000 FEE 432674 5359 6012237 2024-02-20 16:35:33.993 2024-02-20 16:35:33.993 90000 TIP 432674 21357 6012247 2024-02-20 16:35:49.145 2024-02-20 16:35:49.145 3000 FEE 432635 1705 6012248 2024-02-20 16:35:49.145 2024-02-20 16:35:49.145 27000 TIP 432635 782 6012265 2024-02-20 16:38:03.96 2024-02-20 16:38:03.96 1000 STREAM 141924 1534 6012271 2024-02-20 16:39:15.257 2024-02-20 16:39:15.257 1000 FEE 432688 708 6012274 2024-02-20 16:40:03.967 2024-02-20 16:40:03.967 1000 STREAM 141924 925 6012275 2024-02-20 16:41:02.522 2024-02-20 16:41:02.522 1000 STREAM 141924 626 6012281 2024-02-20 16:42:03.968 2024-02-20 16:42:03.968 1000 STREAM 141924 6268 6012297 2024-02-20 16:42:47.359 2024-02-20 16:42:47.359 100 FEE 432653 18945 6012298 2024-02-20 16:42:47.359 2024-02-20 16:42:47.359 900 TIP 432653 12736 6012305 2024-02-20 16:43:02.513 2024-02-20 16:43:02.513 1000 STREAM 141924 5425 6012319 2024-02-20 16:44:20.016 2024-02-20 16:44:20.016 9000 FEE 432639 18402 6012320 2024-02-20 16:44:20.016 2024-02-20 16:44:20.016 81000 TIP 432639 20454 6012325 2024-02-20 16:44:36.768 2024-02-20 16:44:36.768 9000 FEE 432661 16536 6012326 2024-02-20 16:44:36.768 2024-02-20 16:44:36.768 81000 TIP 432661 21398 6012327 2024-02-20 16:44:57.851 2024-02-20 16:44:57.851 100 FEE 432674 19033 6012328 2024-02-20 16:44:57.851 2024-02-20 16:44:57.851 900 TIP 432674 11999 6012333 2024-02-20 16:45:02.525 2024-02-20 16:45:02.525 1000 STREAM 141924 4521 6012335 2024-02-20 16:45:40.871 2024-02-20 16:45:40.871 1000 FEE 432340 12738 6012336 2024-02-20 16:45:40.871 2024-02-20 16:45:40.871 9000 TIP 432340 21119 6012338 2024-02-20 16:46:01.88 2024-02-20 16:46:01.88 1000 FEE 432697 17798 6012348 2024-02-20 16:46:54.978 2024-02-20 16:46:54.978 1000 FEE 432517 9364 6012349 2024-02-20 16:46:54.978 2024-02-20 16:46:54.978 9000 TIP 432517 20409 6012352 2024-02-20 16:47:02.526 2024-02-20 16:47:02.526 1000 STREAM 141924 9331 6012353 2024-02-20 16:47:09.679 2024-02-20 16:47:09.679 100000 DONT_LIKE_THIS 432311 14663 6012359 2024-02-20 16:47:50.506 2024-02-20 16:47:50.506 2100 FEE 432692 16562 6012360 2024-02-20 16:47:50.506 2024-02-20 16:47:50.506 18900 TIP 432692 18618 6012361 2024-02-20 16:47:59.202 2024-02-20 16:47:59.202 400 FEE 432488 16769 6012362 2024-02-20 16:47:59.202 2024-02-20 16:47:59.202 3600 TIP 432488 21332 6012366 2024-02-20 16:48:08.425 2024-02-20 16:48:08.425 100 FEE 432619 21605 6012367 2024-02-20 16:48:08.425 2024-02-20 16:48:08.425 900 TIP 432619 19569 6012372 2024-02-20 16:48:25.226 2024-02-20 16:48:25.226 100 FEE 432674 2264 6012373 2024-02-20 16:48:25.226 2024-02-20 16:48:25.226 900 TIP 432674 21042 6012376 2024-02-20 16:48:27.27 2024-02-20 16:48:27.27 100 FEE 432674 15594 6012377 2024-02-20 16:48:27.27 2024-02-20 16:48:27.27 900 TIP 432674 18772 6012378 2024-02-20 16:48:31.782 2024-02-20 16:48:31.782 100 FEE 432674 4763 6012379 2024-02-20 16:48:31.782 2024-02-20 16:48:31.782 900 TIP 432674 17030 6012390 2024-02-20 16:50:03.992 2024-02-20 16:50:03.992 1000 STREAM 141924 19398 6012391 2024-02-20 16:50:09.254 2024-02-20 16:50:09.254 1000 FEE 432703 19570 6012395 2024-02-20 16:50:22.153 2024-02-20 16:50:22.153 10000 FEE 432705 6202 6012396 2024-02-20 16:51:02.547 2024-02-20 16:51:02.547 1000 STREAM 141924 679 6012406 2024-02-20 16:54:03.996 2024-02-20 16:54:03.996 1000 STREAM 141924 708 6012410 2024-02-20 16:55:02.574 2024-02-20 16:55:02.574 1000 STREAM 141924 21437 6012411 2024-02-20 16:55:12.492 2024-02-20 16:55:12.492 21100 FEE 432661 1549 6012412 2024-02-20 16:55:12.492 2024-02-20 16:55:12.492 189900 TIP 432661 19511 6012413 2024-02-20 16:56:02.581 2024-02-20 16:56:02.581 1000 STREAM 141924 15139 6012414 2024-02-20 16:56:02.678 2024-02-20 16:56:02.678 3000 FEE 432551 19566 6012415 2024-02-20 16:56:02.678 2024-02-20 16:56:02.678 27000 TIP 432551 21627 6012416 2024-02-20 16:56:14.777 2024-02-20 16:56:14.777 1000 FEE 432708 9758 6012420 2024-02-20 16:56:43.868 2024-02-20 16:56:43.868 1000 FEE 432710 17708 6012438 2024-02-20 16:59:02.915 2024-02-20 16:59:02.915 2100 FEE 432615 17800 6012439 2024-02-20 16:59:02.915 2024-02-20 16:59:02.915 18900 TIP 432615 1628 6012440 2024-02-20 16:59:04.006 2024-02-20 16:59:04.006 1000 STREAM 141924 1209 6012441 2024-02-20 16:59:08.509 2024-02-20 16:59:08.509 2100 FEE 432674 18452 6012442 2024-02-20 16:59:08.509 2024-02-20 16:59:08.509 18900 TIP 432674 632 6012450 2024-02-20 17:00:02.633 2024-02-20 17:00:02.633 100 FEE 432683 4633 6012451 2024-02-20 17:00:02.633 2024-02-20 17:00:02.633 900 TIP 432683 20377 6012452 2024-02-20 17:00:02.808 2024-02-20 17:00:02.808 900 FEE 432683 725 6012453 2024-02-20 17:00:02.808 2024-02-20 17:00:02.808 8100 TIP 432683 16193 6012456 2024-02-20 17:00:04.886 2024-02-20 17:00:04.886 100000 FEE 432716 19938 6012457 2024-02-20 17:00:05.492 2024-02-20 17:00:05.492 1000 FEE 432717 775 6012461 2024-02-20 17:01:04.03 2024-02-20 17:01:04.03 1000 STREAM 141924 19267 6012462 2024-02-20 17:01:51.106 2024-02-20 17:01:51.106 1000 FEE 432719 11873 6012465 2024-02-20 17:03:00.053 2024-02-20 17:03:00.053 100000 FEE 432722 7978 6012473 2024-02-20 17:03:23.483 2024-02-20 17:03:23.483 10000 FEE 432208 644 6012474 2024-02-20 17:03:23.483 2024-02-20 17:03:23.483 90000 TIP 432208 20450 6012480 2024-02-20 17:03:31.346 2024-02-20 17:03:31.346 10000 FEE 432004 17494 6012481 2024-02-20 17:03:31.346 2024-02-20 17:03:31.346 90000 TIP 432004 1012 6012484 2024-02-20 17:03:34.139 2024-02-20 17:03:34.139 10000 FEE 432012 20106 6012485 2024-02-20 17:03:34.139 2024-02-20 17:03:34.139 90000 TIP 432012 11516 6012492 2024-02-20 17:03:56.959 2024-02-20 17:03:56.959 4200 FEE 432603 3717 6012493 2024-02-20 17:03:56.959 2024-02-20 17:03:56.959 37800 TIP 432603 18363 6012498 2024-02-20 17:04:35.493 2024-02-20 17:04:35.493 1000 FEE 432726 16442 6012513 2024-02-20 17:06:02.202 2024-02-20 17:06:02.202 1000 STREAM 141924 19501 6012514 2024-02-20 17:06:11.47 2024-02-20 17:06:11.47 1000 FEE 432731 18311 6012519 2024-02-20 17:07:30.347 2024-02-20 17:07:30.347 1000 FEE 432732 3396 6012520 2024-02-20 17:07:51.35 2024-02-20 17:07:51.35 1000 FEE 432733 7125 6012521 2024-02-20 17:08:02.657 2024-02-20 17:08:02.657 1000 STREAM 141924 12160 6012527 2024-02-20 17:09:02.227 2024-02-20 17:09:02.227 1000 STREAM 141924 20439 6012528 2024-02-20 17:09:18.81 2024-02-20 17:09:18.81 0 FEE 432721 2342 6012536 2024-02-20 17:11:05.276 2024-02-20 17:11:05.276 1600 FEE 432695 20058 6012537 2024-02-20 17:11:05.276 2024-02-20 17:11:05.276 14400 TIP 432695 4345 6012546 2024-02-20 17:12:02.268 2024-02-20 17:12:02.268 1000 STREAM 141924 17523 6012556 2024-02-20 17:13:08.056 2024-02-20 17:13:08.056 800 FEE 432709 20681 6012557 2024-02-20 17:13:08.056 2024-02-20 17:13:08.056 7200 TIP 432709 19689 6012562 2024-02-20 17:14:02.283 2024-02-20 17:14:02.283 1000 STREAM 141924 12561 6012563 2024-02-20 17:14:02.629 2024-02-20 17:14:02.629 4000 FEE 432738 913 6012564 2024-02-20 17:14:02.629 2024-02-20 17:14:02.629 36000 TIP 432738 12289 6012565 2024-02-20 17:14:03.575 2024-02-20 17:14:03.575 4000 FEE 432738 7553 6012566 2024-02-20 17:14:03.575 2024-02-20 17:14:03.575 36000 TIP 432738 12774 6012572 2024-02-20 17:15:02.299 2024-02-20 17:15:02.299 1000 STREAM 141924 16126 6012575 2024-02-20 17:15:06.442 2024-02-20 17:15:06.442 1000 FEE 432730 16145 6012576 2024-02-20 17:15:06.442 2024-02-20 17:15:06.442 9000 TIP 432730 19156 6012587 2024-02-20 17:15:27.083 2024-02-20 17:15:27.083 100 FEE 432714 13198 6012588 2024-02-20 17:15:27.083 2024-02-20 17:15:27.083 900 TIP 432714 664 6012598 2024-02-20 17:17:50.377 2024-02-20 17:17:50.377 1000 FEE 432742 15367 6012608 2024-02-20 17:18:20.783 2024-02-20 17:18:20.783 3000 FEE 432563 21575 6012609 2024-02-20 17:18:20.783 2024-02-20 17:18:20.783 27000 TIP 432563 20353 6012614 2024-02-20 17:18:34.147 2024-02-20 17:18:34.147 800 FEE 431918 7654 6012615 2024-02-20 17:18:34.147 2024-02-20 17:18:34.147 7200 TIP 431918 15719 6012621 2024-02-20 17:18:46.297 2024-02-20 17:18:46.297 1000 FEE 432711 10393 6012622 2024-02-20 17:18:46.297 2024-02-20 17:18:46.297 9000 TIP 432711 19282 6012629 2024-02-20 17:19:02.344 2024-02-20 17:19:02.344 1000 STREAM 141924 650 6012633 2024-02-20 17:20:41.074 2024-02-20 17:20:41.074 50000 FEE 430892 900 6012553 2024-02-20 17:12:37.371 2024-02-20 17:12:37.371 1000 FEE 432738 2952 6012554 2024-02-20 17:12:45.362 2024-02-20 17:12:45.362 1000 FEE 432739 11158 6012560 2024-02-20 17:13:47.645 2024-02-20 17:13:47.645 10000 FEE 432736 17411 6012561 2024-02-20 17:13:47.645 2024-02-20 17:13:47.645 90000 TIP 432736 8945 6012568 2024-02-20 17:14:48.65 2024-02-20 17:14:48.65 3000 FEE 432664 20376 6012569 2024-02-20 17:14:48.65 2024-02-20 17:14:48.65 27000 TIP 432664 18581 6012611 2024-02-20 17:18:29.851 2024-02-20 17:18:29.851 800 FEE 432060 6537 6012612 2024-02-20 17:18:29.851 2024-02-20 17:18:29.851 7200 TIP 432060 5752 6012613 2024-02-20 17:18:30.846 2024-02-20 17:18:30.846 1000 FEE 432744 20861 6012616 2024-02-20 17:18:39.563 2024-02-20 17:18:39.563 800 FEE 432404 11430 6012617 2024-02-20 17:18:39.563 2024-02-20 17:18:39.563 7200 TIP 432404 1720 6012620 2024-02-20 17:18:43.174 2024-02-20 17:18:43.174 1000 FEE 432745 17011 6012638 2024-02-20 17:21:04.827 2024-02-20 17:21:04.827 2100 FEE 432572 631 6012639 2024-02-20 17:21:04.827 2024-02-20 17:21:04.827 18900 TIP 432572 16354 6012642 2024-02-20 17:21:06.968 2024-02-20 17:21:06.968 2100 FEE 432260 20143 6012643 2024-02-20 17:21:06.968 2024-02-20 17:21:06.968 18900 TIP 432260 827 6012661 2024-02-20 17:21:35.532 2024-02-20 17:21:35.532 2100 FEE 432598 21201 6012662 2024-02-20 17:21:35.532 2024-02-20 17:21:35.532 18900 TIP 432598 20187 6012669 2024-02-20 17:21:57.84 2024-02-20 17:21:57.84 1600 FEE 432746 18583 6012670 2024-02-20 17:21:57.84 2024-02-20 17:21:57.84 14400 TIP 432746 21563 6012678 2024-02-20 17:22:15.58 2024-02-20 17:22:15.58 4000 FEE 432736 9845 6012679 2024-02-20 17:22:15.58 2024-02-20 17:22:15.58 36000 TIP 432736 20157 6012693 2024-02-20 17:23:09.929 2024-02-20 17:23:09.929 100000 FEE 432752 21172 6012718 2024-02-20 17:24:30.338 2024-02-20 17:24:30.338 3000 FEE 432683 2789 6012719 2024-02-20 17:24:30.338 2024-02-20 17:24:30.338 27000 TIP 432683 12218 6012721 2024-02-20 17:25:10.615 2024-02-20 17:25:10.615 3000 FEE 432339 16440 6012722 2024-02-20 17:25:10.615 2024-02-20 17:25:10.615 27000 TIP 432339 20581 6012731 2024-02-20 17:27:47.119 2024-02-20 17:27:47.119 700 FEE 432738 20585 6012732 2024-02-20 17:27:47.119 2024-02-20 17:27:47.119 6300 TIP 432738 1002 6012759 2024-02-20 17:31:29.477 2024-02-20 17:31:29.477 10000 FEE 429076 17446 6012760 2024-02-20 17:31:29.477 2024-02-20 17:31:29.477 90000 TIP 429076 10519 6012767 2024-02-20 17:31:37.23 2024-02-20 17:31:37.23 700 FEE 432705 3478 6012768 2024-02-20 17:31:37.23 2024-02-20 17:31:37.23 6300 TIP 432705 1006 6012773 2024-02-20 17:32:46.486 2024-02-20 17:32:46.486 1000 FEE 432618 27 6012774 2024-02-20 17:32:46.486 2024-02-20 17:32:46.486 9000 TIP 432618 13042 6012832 2024-02-20 17:34:17.387 2024-02-20 17:34:17.387 1000 FEE 432763 4084 6012833 2024-02-20 17:34:17.387 2024-02-20 17:34:17.387 9000 TIP 432763 19335 6012862 2024-02-20 17:36:16.671 2024-02-20 17:36:16.671 700 FEE 432664 899 6012863 2024-02-20 17:36:16.671 2024-02-20 17:36:16.671 6300 TIP 432664 19661 6012864 2024-02-20 17:36:18.845 2024-02-20 17:36:18.845 1000 FEE 432759 647 6012865 2024-02-20 17:36:18.845 2024-02-20 17:36:18.845 9000 TIP 432759 10818 6012868 2024-02-20 17:36:19.931 2024-02-20 17:36:19.931 1000 FEE 432759 718 6012869 2024-02-20 17:36:19.931 2024-02-20 17:36:19.931 9000 TIP 432759 19527 6012883 2024-02-20 17:36:58.177 2024-02-20 17:36:58.177 700 FEE 432643 15239 6012884 2024-02-20 17:36:58.177 2024-02-20 17:36:58.177 6300 TIP 432643 19541 6012913 2024-02-20 17:38:30.923 2024-02-20 17:38:30.923 10000 FEE 432766 11165 6012914 2024-02-20 17:38:30.923 2024-02-20 17:38:30.923 90000 TIP 432766 16684 6012926 2024-02-20 17:39:54.399 2024-02-20 17:39:54.399 1000 FEE 432777 1006 6012957 2024-02-20 17:43:50.361 2024-02-20 17:43:50.361 1000 FEE 432782 20701 6012959 2024-02-20 17:43:52.633 2024-02-20 17:43:52.633 1000 FEE 432784 6537 6012964 2024-02-20 17:44:01.497 2024-02-20 17:44:01.497 1000 FEE 432785 7877 6012996 2024-02-20 17:45:28.186 2024-02-20 17:45:28.186 0 FEE 432786 20922 6012998 2024-02-20 17:45:31.891 2024-02-20 17:45:31.891 1600 FEE 431856 20120 6012999 2024-02-20 17:45:31.891 2024-02-20 17:45:31.891 14400 TIP 431856 16847 6013003 2024-02-20 17:45:49.635 2024-02-20 17:45:49.635 800 FEE 432029 20099 6013004 2024-02-20 17:45:49.635 2024-02-20 17:45:49.635 7200 TIP 432029 18265 6013033 2024-02-20 17:47:10.445 2024-02-20 17:47:10.445 1000 FEE 432782 18667 6013034 2024-02-20 17:47:10.445 2024-02-20 17:47:10.445 9000 TIP 432782 17602 6013045 2024-02-20 17:47:16.532 2024-02-20 17:47:16.532 100 FEE 432784 14906 6013046 2024-02-20 17:47:16.532 2024-02-20 17:47:16.532 900 TIP 432784 11938 6013060 2024-02-20 17:48:16.025 2024-02-20 17:48:16.025 1000 FEE 432797 10490 6013072 2024-02-20 17:50:53.639 2024-02-20 17:50:53.639 2100 FEE 432619 6202 6013073 2024-02-20 17:50:53.639 2024-02-20 17:50:53.639 18900 TIP 432619 4831 6013081 2024-02-20 17:51:41.885 2024-02-20 17:51:41.885 21000 DONT_LIKE_THIS 432681 20302 6013098 2024-02-20 17:54:11.127 2024-02-20 17:54:11.127 5000 FEE 432563 21067 6013099 2024-02-20 17:54:11.127 2024-02-20 17:54:11.127 45000 TIP 432563 21249 6013119 2024-02-20 17:55:28.097 2024-02-20 17:55:28.097 1000 FEE 432809 18629 6013120 2024-02-20 17:55:29.574 2024-02-20 17:55:29.574 5000 FEE 432150 1970 6013121 2024-02-20 17:55:29.574 2024-02-20 17:55:29.574 45000 TIP 432150 18543 6013138 2024-02-20 17:55:34.58 2024-02-20 17:55:34.58 5000 FEE 432150 14278 6013139 2024-02-20 17:55:34.58 2024-02-20 17:55:34.58 45000 TIP 432150 776 6013157 2024-02-20 17:57:41.734 2024-02-20 17:57:41.734 700 FEE 432777 14857 6013158 2024-02-20 17:57:41.734 2024-02-20 17:57:41.734 6300 TIP 432777 21620 6013159 2024-02-20 17:57:47.118 2024-02-20 17:57:47.118 5000 FEE 432661 1092 6013160 2024-02-20 17:57:47.118 2024-02-20 17:57:47.118 45000 TIP 432661 18174 6013193 2024-02-20 17:59:29.043 2024-02-20 17:59:29.043 1000 FEE 432802 14465 6013194 2024-02-20 17:59:29.043 2024-02-20 17:59:29.043 9000 TIP 432802 1985 6013195 2024-02-20 17:59:29.5 2024-02-20 17:59:29.5 1000 FEE 432802 15409 6013196 2024-02-20 17:59:29.5 2024-02-20 17:59:29.5 9000 TIP 432802 19333 6013197 2024-02-20 17:59:29.835 2024-02-20 17:59:29.835 1000 FEE 432802 18372 6013198 2024-02-20 17:59:29.835 2024-02-20 17:59:29.835 9000 TIP 432802 18330 6013216 2024-02-20 18:01:13.853 2024-02-20 18:01:13.853 1000 FEE 432816 14225 6013228 2024-02-20 18:02:12.436 2024-02-20 18:02:12.436 1000 FEE 432819 672 6013230 2024-02-20 18:02:15.554 2024-02-20 18:02:15.554 1000 FEE 432809 5129 6013231 2024-02-20 18:02:15.554 2024-02-20 18:02:15.554 9000 TIP 432809 1130 6013252 2024-02-20 18:02:49.109 2024-02-20 18:02:49.109 1000 FEE 432821 16808 6013254 2024-02-20 18:02:53.034 2024-02-20 18:02:53.034 1000 FEE 432823 19810 6013262 2024-02-20 18:03:45.126 2024-02-20 18:03:45.126 3000 FEE 432814 7960 6013263 2024-02-20 18:03:45.126 2024-02-20 18:03:45.126 27000 TIP 432814 21233 6013289 2024-02-20 18:05:12.66 2024-02-20 18:05:12.66 4000 FEE 432822 17218 6013290 2024-02-20 18:05:12.66 2024-02-20 18:05:12.66 36000 TIP 432822 21371 6013314 2024-02-20 18:06:36.678 2024-02-20 18:06:36.678 1000 FEE 432828 20596 6013315 2024-02-20 18:06:36.678 2024-02-20 18:06:36.678 9000 TIP 432828 1726 6013326 2024-02-20 18:07:12.042 2024-02-20 18:07:12.042 0 FEE 432825 15938 6013330 2024-02-20 18:08:03.191 2024-02-20 18:08:03.191 0 FEE 432826 18380 6013340 2024-02-20 18:11:02.222 2024-02-20 18:11:02.222 1000 FEE 432670 1472 6013341 2024-02-20 18:11:02.222 2024-02-20 18:11:02.222 9000 TIP 432670 21349 6013347 2024-02-20 18:12:38.904 2024-02-20 18:12:38.904 2100 FEE 432259 17030 6013348 2024-02-20 18:12:38.904 2024-02-20 18:12:38.904 18900 TIP 432259 17275 6013369 2024-02-20 18:16:53.845 2024-02-20 18:16:53.845 500 FEE 432748 18072 6013370 2024-02-20 18:16:53.845 2024-02-20 18:16:53.845 4500 TIP 432748 5637 6013371 2024-02-20 18:17:01.658 2024-02-20 18:17:01.658 1000 FEE 432705 3709 6013372 2024-02-20 18:17:01.658 2024-02-20 18:17:01.658 9000 TIP 432705 17226 6013422 2024-02-20 18:22:47.634 2024-02-20 18:22:47.634 1000 FEE 430629 19852 6013423 2024-02-20 18:22:47.634 2024-02-20 18:22:47.634 9000 TIP 430629 21145 6013478 2024-02-20 18:24:09.04 2024-02-20 18:24:09.04 2100 FEE 432846 1438 6013479 2024-02-20 18:24:09.04 2024-02-20 18:24:09.04 18900 TIP 432846 2444 6012634 2024-02-20 17:20:41.074 2024-02-20 17:20:41.074 450000 TIP 430892 4633 6012647 2024-02-20 17:21:22.877 2024-02-20 17:21:22.877 2100 FEE 432741 11760 6012648 2024-02-20 17:21:22.877 2024-02-20 17:21:22.877 18900 TIP 432741 19557 6012653 2024-02-20 17:21:27.463 2024-02-20 17:21:27.463 2100 FEE 432683 5752 6012654 2024-02-20 17:21:27.463 2024-02-20 17:21:27.463 18900 TIP 432683 708 6012655 2024-02-20 17:21:29.54 2024-02-20 17:21:29.54 2100 FEE 432664 18170 6012656 2024-02-20 17:21:29.54 2024-02-20 17:21:29.54 18900 TIP 432664 10393 6012682 2024-02-20 17:22:29.751 2024-02-20 17:22:29.751 2100 FEE 432466 6164 6012683 2024-02-20 17:22:29.751 2024-02-20 17:22:29.751 18900 TIP 432466 21343 6012707 2024-02-20 17:23:59.753 2024-02-20 17:23:59.753 100 FEE 432511 16939 6012708 2024-02-20 17:23:59.753 2024-02-20 17:23:59.753 900 TIP 432511 979 6012726 2024-02-20 17:26:56.248 2024-02-20 17:26:56.248 1000 FEE 432756 6499 6012735 2024-02-20 17:28:52.582 2024-02-20 17:28:52.582 1000 FEE 432758 16193 6012736 2024-02-20 17:28:57.212 2024-02-20 17:28:57.212 4000 FEE 432750 5661 6012737 2024-02-20 17:28:57.212 2024-02-20 17:28:57.212 36000 TIP 432750 8162 6012740 2024-02-20 17:30:13.619 2024-02-20 17:30:13.619 21000 FEE 432759 722 6012741 2024-02-20 17:30:22.417 2024-02-20 17:30:22.417 100 FEE 432730 12965 6012742 2024-02-20 17:30:22.417 2024-02-20 17:30:22.417 900 TIP 432730 20852 6012790 2024-02-20 17:32:57.871 2024-02-20 17:32:57.871 7700 FEE 432674 21556 6012791 2024-02-20 17:32:57.871 2024-02-20 17:32:57.871 69300 TIP 432674 704 6012796 2024-02-20 17:33:01.06 2024-02-20 17:33:01.06 900 FEE 432757 4059 6012797 2024-02-20 17:33:01.06 2024-02-20 17:33:01.06 8100 TIP 432757 12102 6012802 2024-02-20 17:33:12.561 2024-02-20 17:33:12.561 0 FEE 432762 16282 6012805 2024-02-20 17:33:24.559 2024-02-20 17:33:24.559 1000 FEE 432729 8945 6012806 2024-02-20 17:33:24.559 2024-02-20 17:33:24.559 9000 TIP 432729 19320 6012817 2024-02-20 17:34:09.949 2024-02-20 17:34:09.949 100 FEE 432755 9982 6012818 2024-02-20 17:34:09.949 2024-02-20 17:34:09.949 900 TIP 432755 16667 6012829 2024-02-20 17:34:15.542 2024-02-20 17:34:15.542 1000 FEE 432763 11820 6012830 2024-02-20 17:34:15.542 2024-02-20 17:34:15.542 9000 TIP 432763 11395 6012841 2024-02-20 17:34:37.639 2024-02-20 17:34:37.639 1000 FEE 432759 697 6012842 2024-02-20 17:34:37.639 2024-02-20 17:34:37.639 9000 TIP 432759 7668 6012856 2024-02-20 17:35:27.684 2024-02-20 17:35:27.684 1000 FEE 432770 6578 6012857 2024-02-20 17:35:58.823 2024-02-20 17:35:58.823 1000 FEE 432771 8541 6012886 2024-02-20 17:37:10.09 2024-02-20 17:37:10.09 100 FEE 432511 19199 6012887 2024-02-20 17:37:10.09 2024-02-20 17:37:10.09 900 TIP 432511 9418 6012894 2024-02-20 17:37:48.602 2024-02-20 17:37:48.602 1000 FEE 432759 16097 6012895 2024-02-20 17:37:48.602 2024-02-20 17:37:48.602 9000 TIP 432759 19622 6012916 2024-02-20 17:38:45.857 2024-02-20 17:38:45.857 2100 FEE 432661 2322 6012917 2024-02-20 17:38:45.857 2024-02-20 17:38:45.857 18900 TIP 432661 1611 6012924 2024-02-20 17:39:49.607 2024-02-20 17:39:49.607 2100 FEE 432767 10094 6012925 2024-02-20 17:39:49.607 2024-02-20 17:39:49.607 18900 TIP 432767 19446 6012958 2024-02-20 17:43:52.381 2024-02-20 17:43:52.381 1000 FEE 432783 9183 6012982 2024-02-20 17:44:48.772 2024-02-20 17:44:48.772 1000 FEE 432787 8505 6012983 2024-02-20 17:44:51.65 2024-02-20 17:44:51.65 500 FEE 432674 683 6012984 2024-02-20 17:44:51.65 2024-02-20 17:44:51.65 4500 TIP 432674 10862 6012990 2024-02-20 17:45:04.011 2024-02-20 17:45:04.011 800 FEE 432080 1046 6012991 2024-02-20 17:45:04.011 2024-02-20 17:45:04.011 7200 TIP 432080 1114 6012997 2024-02-20 17:45:29.353 2024-02-20 17:45:29.353 1000 FEE 432789 10393 6013012 2024-02-20 17:46:10.861 2024-02-20 17:46:10.861 1000 FEE 432638 631 6013013 2024-02-20 17:46:10.861 2024-02-20 17:46:10.861 9000 TIP 432638 8505 6013055 2024-02-20 17:47:44.017 2024-02-20 17:47:44.017 10100 FEE 432705 1628 6013056 2024-02-20 17:47:44.017 2024-02-20 17:47:44.017 90900 TIP 432705 9336 6013084 2024-02-20 17:52:17.227 2024-02-20 17:52:17.227 1000 FEE 432803 18448 6013130 2024-02-20 17:55:32.74 2024-02-20 17:55:32.74 5000 FEE 432150 2513 6013131 2024-02-20 17:55:32.74 2024-02-20 17:55:32.74 45000 TIP 432150 3342 6013166 2024-02-20 17:58:21.446 2024-02-20 17:58:21.446 1600 FEE 432807 2444 6013167 2024-02-20 17:58:21.446 2024-02-20 17:58:21.446 14400 TIP 432807 14669 6013213 2024-02-20 18:00:51.097 2024-02-20 18:00:51.097 5000 FEE 432730 21457 6013214 2024-02-20 18:00:51.097 2024-02-20 18:00:51.097 45000 TIP 432730 16354 6013281 2024-02-20 18:04:36.732 2024-02-20 18:04:36.732 900 FEE 432722 18169 6013282 2024-02-20 18:04:36.732 2024-02-20 18:04:36.732 8100 TIP 432722 1429 6013283 2024-02-20 18:04:56.037 2024-02-20 18:04:56.037 1000 FEE 432826 1039 6013365 2024-02-20 18:16:22.717 2024-02-20 18:16:22.717 1000 FEE 430256 4076 6013366 2024-02-20 18:16:22.717 2024-02-20 18:16:22.717 9000 TIP 430256 687 6013367 2024-02-20 18:16:50.169 2024-02-20 18:16:50.169 500 FEE 432761 19193 6013368 2024-02-20 18:16:50.169 2024-02-20 18:16:50.169 4500 TIP 432761 15139 6013387 2024-02-20 18:19:04.364 2024-02-20 18:19:04.364 0 FEE 432841 18180 6013391 2024-02-20 18:20:05.765 2024-02-20 18:20:05.765 100000 FEE 432845 9159 6013395 2024-02-20 18:20:21.548 2024-02-20 18:20:21.548 1000 FEE 432736 7668 6013396 2024-02-20 18:20:21.548 2024-02-20 18:20:21.548 9000 TIP 432736 21042 6013418 2024-02-20 18:22:46.967 2024-02-20 18:22:46.967 1000 FEE 430629 13246 6013419 2024-02-20 18:22:46.967 2024-02-20 18:22:46.967 9000 TIP 430629 698 6013432 2024-02-20 18:22:48.678 2024-02-20 18:22:48.678 1000 FEE 430629 16848 6013433 2024-02-20 18:22:48.678 2024-02-20 18:22:48.678 9000 TIP 430629 18124 6013455 2024-02-20 18:22:50.76 2024-02-20 18:22:50.76 1000 FEE 430629 21398 6013456 2024-02-20 18:22:50.76 2024-02-20 18:22:50.76 9000 TIP 430629 9345 6013468 2024-02-20 18:23:27.589 2024-02-20 18:23:27.589 500 FEE 432661 1060 6013469 2024-02-20 18:23:27.589 2024-02-20 18:23:27.589 4500 TIP 432661 5520 6013472 2024-02-20 18:23:29.028 2024-02-20 18:23:29.028 1000 FEE 432847 20436 6013488 2024-02-20 18:26:16.283 2024-02-20 18:26:16.283 10100 FEE 432836 10731 6013489 2024-02-20 18:26:16.283 2024-02-20 18:26:16.283 90900 TIP 432836 20778 6013493 2024-02-20 18:27:00.339 2024-02-20 18:27:00.339 1000 FEE 432852 16193 6013530 2024-02-20 18:32:36.357 2024-02-20 18:32:36.357 2500 FEE 432552 18241 6013531 2024-02-20 18:32:36.357 2024-02-20 18:32:36.357 22500 TIP 432552 3979 6013533 2024-02-20 18:32:59.849 2024-02-20 18:32:59.849 1000 FEE 432865 19848 6013544 2024-02-20 18:34:47.33 2024-02-20 18:34:47.33 1000 FEE 432870 7998 6013553 2024-02-20 18:36:18.999 2024-02-20 18:36:18.999 0 FEE 432872 1825 6013563 2024-02-20 18:38:05.794 2024-02-20 18:38:05.794 1000 FEE 432874 1142 6013573 2024-02-20 18:39:56.669 2024-02-20 18:39:56.669 1000 FEE 432875 6030 6013577 2024-02-20 18:41:18.557 2024-02-20 18:41:18.557 2100 FEE 432865 7809 6013578 2024-02-20 18:41:18.557 2024-02-20 18:41:18.557 18900 TIP 432865 20782 6013614 2024-02-20 18:43:07.932 2024-02-20 18:43:07.932 2300 FEE 432736 9330 6013615 2024-02-20 18:43:07.932 2024-02-20 18:43:07.932 20700 TIP 432736 13878 6013616 2024-02-20 18:43:08.103 2024-02-20 18:43:08.103 2300 FEE 432736 11820 6013617 2024-02-20 18:43:08.103 2024-02-20 18:43:08.103 20700 TIP 432736 7389 6013620 2024-02-20 18:43:08.368 2024-02-20 18:43:08.368 2300 FEE 432736 13249 6013621 2024-02-20 18:43:08.368 2024-02-20 18:43:08.368 20700 TIP 432736 21455 6013630 2024-02-20 18:43:09.711 2024-02-20 18:43:09.711 2300 FEE 432736 11885 6013631 2024-02-20 18:43:09.711 2024-02-20 18:43:09.711 20700 TIP 432736 18232 6013634 2024-02-20 18:43:10.389 2024-02-20 18:43:10.389 1000 FEE 432880 21207 6013639 2024-02-20 18:43:55.392 2024-02-20 18:43:55.392 1000 FEE 432876 12566 6013640 2024-02-20 18:43:55.392 2024-02-20 18:43:55.392 9000 TIP 432876 712 6013666 2024-02-20 18:48:33.736 2024-02-20 18:48:33.736 4000 FEE 432863 11450 6013667 2024-02-20 18:48:33.736 2024-02-20 18:48:33.736 36000 TIP 432863 1647 6013673 2024-02-20 18:49:35.724 2024-02-20 18:49:35.724 1000 FEE 432886 20280 6013704 2024-02-20 18:54:14.696 2024-02-20 18:54:14.696 8300 FEE 432873 20756 6013705 2024-02-20 18:54:14.696 2024-02-20 18:54:14.696 74700 TIP 432873 1620 6012637 2024-02-20 17:21:02.348 2024-02-20 17:21:02.348 1000 STREAM 141924 21103 6012673 2024-02-20 17:22:02.361 2024-02-20 17:22:02.361 1000 STREAM 141924 2065 6012715 2024-02-20 17:24:02.401 2024-02-20 17:24:02.401 1000 STREAM 141924 17798 6012738 2024-02-20 17:29:02.473 2024-02-20 17:29:02.473 1000 STREAM 141924 10342 6012770 2024-02-20 17:32:02.506 2024-02-20 17:32:02.506 1000 STREAM 141924 21413 6012858 2024-02-20 17:36:02.595 2024-02-20 17:36:02.595 1000 STREAM 141924 17109 6012885 2024-02-20 17:37:02.612 2024-02-20 17:37:02.612 1000 STREAM 141924 1620 6012902 2024-02-20 17:38:02.625 2024-02-20 17:38:02.625 1000 STREAM 141924 18601 6012938 2024-02-20 17:42:02.667 2024-02-20 17:42:02.667 1000 STREAM 141924 670 6012946 2024-02-20 17:43:02.676 2024-02-20 17:43:02.676 1000 STREAM 141924 18832 6012965 2024-02-20 17:44:02.68 2024-02-20 17:44:02.68 1000 STREAM 141924 8284 6012989 2024-02-20 17:45:02.691 2024-02-20 17:45:02.691 1000 STREAM 141924 736 6013062 2024-02-20 17:49:02.736 2024-02-20 17:49:02.736 1000 STREAM 141924 17568 6013069 2024-02-20 17:50:02.756 2024-02-20 17:50:02.756 1000 STREAM 141924 1712 6013083 2024-02-20 17:52:02.756 2024-02-20 17:52:02.756 1000 STREAM 141924 20251 6013085 2024-02-20 17:53:02.766 2024-02-20 17:53:02.766 1000 STREAM 141924 17184 6013095 2024-02-20 17:54:02.777 2024-02-20 17:54:02.777 1000 STREAM 141924 14449 6013140 2024-02-20 17:56:02.785 2024-02-20 17:56:02.785 1000 STREAM 141924 19094 6013146 2024-02-20 17:57:02.805 2024-02-20 17:57:02.805 1000 STREAM 141924 981 6013185 2024-02-20 17:59:02.819 2024-02-20 17:59:02.819 1000 STREAM 141924 21418 6013224 2024-02-20 18:02:02.809 2024-02-20 18:02:02.809 1000 STREAM 141924 1162 6013272 2024-02-20 18:04:02.834 2024-02-20 18:04:02.834 1000 STREAM 141924 18630 6013288 2024-02-20 18:05:02.851 2024-02-20 18:05:02.851 1000 STREAM 141924 1605 6013338 2024-02-20 18:10:02.895 2024-02-20 18:10:02.895 1000 STREAM 141924 5852 6013343 2024-02-20 18:12:02.894 2024-02-20 18:12:02.894 1000 STREAM 141924 8713 6013349 2024-02-20 18:13:02.903 2024-02-20 18:13:02.903 1000 STREAM 141924 1959 6013358 2024-02-20 18:15:02.934 2024-02-20 18:15:02.934 1000 STREAM 141924 9992 6013364 2024-02-20 18:16:02.935 2024-02-20 18:16:02.935 1000 STREAM 141924 3400 6013378 2024-02-20 18:18:02.96 2024-02-20 18:18:02.96 1000 STREAM 141924 15226 6013386 2024-02-20 18:19:02.958 2024-02-20 18:19:02.958 1000 STREAM 141924 998 6013390 2024-02-20 18:20:02.989 2024-02-20 18:20:02.989 1000 STREAM 141924 19449 6013459 2024-02-20 18:23:03.003 2024-02-20 18:23:03.003 1000 STREAM 141924 17602 6013477 2024-02-20 18:24:03.007 2024-02-20 18:24:03.007 1000 STREAM 141924 16004 6013480 2024-02-20 18:25:03 2024-02-20 18:25:03 1000 STREAM 141924 18873 6013494 2024-02-20 18:27:03.015 2024-02-20 18:27:03.015 1000 STREAM 141924 11714 6013501 2024-02-20 18:28:03.025 2024-02-20 18:28:03.025 1000 STREAM 141924 6687 6013513 2024-02-20 18:30:03.033 2024-02-20 18:30:03.033 1000 STREAM 141924 18231 6013524 2024-02-20 18:31:03.028 2024-02-20 18:31:03.028 1000 STREAM 141924 18426 6013554 2024-02-20 18:37:03.068 2024-02-20 18:37:03.068 1000 STREAM 141924 3478 6013562 2024-02-20 18:38:03.078 2024-02-20 18:38:03.078 1000 STREAM 141924 20563 6013570 2024-02-20 18:39:03.074 2024-02-20 18:39:03.074 1000 STREAM 141924 17800 6013602 2024-02-20 18:42:03.091 2024-02-20 18:42:03.091 1000 STREAM 141924 19153 6013645 2024-02-20 18:45:03.094 2024-02-20 18:45:03.094 1000 STREAM 141924 5565 6013651 2024-02-20 18:46:03.099 2024-02-20 18:46:03.099 1000 STREAM 141924 866 6013655 2024-02-20 18:47:03.101 2024-02-20 18:47:03.101 1000 STREAM 141924 20143 6013658 2024-02-20 18:48:03.111 2024-02-20 18:48:03.111 1000 STREAM 141924 1465 6013670 2024-02-20 18:49:03.119 2024-02-20 18:49:03.119 1000 STREAM 141924 14959 6013681 2024-02-20 18:52:03.137 2024-02-20 18:52:03.137 1000 STREAM 141924 18735 6013698 2024-02-20 18:53:03.142 2024-02-20 18:53:03.142 1000 STREAM 141924 18945 6013699 2024-02-20 18:54:03.144 2024-02-20 18:54:03.144 1000 STREAM 141924 10690 6013732 2024-02-20 18:57:03.204 2024-02-20 18:57:03.204 1000 STREAM 141924 20381 6013736 2024-02-20 18:58:03.152 2024-02-20 18:58:03.152 1000 STREAM 141924 14774 6013746 2024-02-20 18:59:03.158 2024-02-20 18:59:03.158 1000 STREAM 141924 9517 6013755 2024-02-20 19:00:03.204 2024-02-20 19:00:03.204 1000 STREAM 141924 5377 6013776 2024-02-20 19:02:03.227 2024-02-20 19:02:03.227 1000 STREAM 141924 10063 6013853 2024-02-20 19:09:03.278 2024-02-20 19:09:03.278 1000 STREAM 141924 10352 6013863 2024-02-20 19:12:03.304 2024-02-20 19:12:03.304 1000 STREAM 141924 21458 6013866 2024-02-20 19:13:03.312 2024-02-20 19:13:03.312 1000 STREAM 141924 10102 6013887 2024-02-20 19:16:03.344 2024-02-20 19:16:03.344 1000 STREAM 141924 16649 6013890 2024-02-20 19:17:03.344 2024-02-20 19:17:03.344 1000 STREAM 141924 13361 6013894 2024-02-20 19:18:03.356 2024-02-20 19:18:03.356 1000 STREAM 141924 19501 6013901 2024-02-20 19:19:03.351 2024-02-20 19:19:03.351 1000 STREAM 141924 20655 6013919 2024-02-20 19:20:03.393 2024-02-20 19:20:03.393 1000 STREAM 141924 17157 6013920 2024-02-20 19:21:03.359 2024-02-20 19:21:03.359 1000 STREAM 141924 21463 6013925 2024-02-20 19:22:03.374 2024-02-20 19:22:03.374 1000 STREAM 141924 13987 6013926 2024-02-20 19:23:03.376 2024-02-20 19:23:03.376 1000 STREAM 141924 1245 6013962 2024-02-20 19:26:03.409 2024-02-20 19:26:03.409 1000 STREAM 141924 20560 6013977 2024-02-20 19:27:03.412 2024-02-20 19:27:03.412 1000 STREAM 141924 708 6014007 2024-02-20 19:30:03.455 2024-02-20 19:30:03.455 1000 STREAM 141924 20623 6014015 2024-02-20 19:31:03.455 2024-02-20 19:31:03.455 1000 STREAM 141924 18271 6014021 2024-02-20 19:32:03.465 2024-02-20 19:32:03.465 1000 STREAM 141924 10849 6014053 2024-02-20 19:34:03.655 2024-02-20 19:34:03.655 1000 STREAM 141924 18363 6014055 2024-02-20 19:35:03.659 2024-02-20 19:35:03.659 1000 STREAM 141924 18904 6014060 2024-02-20 19:37:03.676 2024-02-20 19:37:03.676 1000 STREAM 141924 3709 6014061 2024-02-20 19:38:03.68 2024-02-20 19:38:03.68 1000 STREAM 141924 964 6014085 2024-02-20 19:40:03.732 2024-02-20 19:40:03.732 1000 STREAM 141924 20225 6014089 2024-02-20 19:42:03.722 2024-02-20 19:42:03.722 1000 STREAM 141924 16177 6014093 2024-02-20 19:43:03.735 2024-02-20 19:43:03.735 1000 STREAM 141924 16809 6014156 2024-02-20 19:45:03.758 2024-02-20 19:45:03.758 1000 STREAM 141924 18235 6014178 2024-02-20 19:46:03.771 2024-02-20 19:46:03.771 1000 STREAM 141924 20022 6014179 2024-02-20 19:47:03.777 2024-02-20 19:47:03.777 1000 STREAM 141924 9109 6014210 2024-02-20 19:48:03.802 2024-02-20 19:48:03.802 1000 STREAM 141924 1823 6014226 2024-02-20 19:49:03.812 2024-02-20 19:49:03.812 1000 STREAM 141924 5646 6014261 2024-02-20 19:50:03.865 2024-02-20 19:50:03.865 1000 STREAM 141924 17042 6014263 2024-02-20 19:51:03.848 2024-02-20 19:51:03.848 1000 STREAM 141924 20326 6014336 2024-02-20 19:56:03.889 2024-02-20 19:56:03.889 1000 STREAM 141924 9552 6014342 2024-02-20 19:57:03.892 2024-02-20 19:57:03.892 1000 STREAM 141924 6136 6014374 2024-02-20 19:59:03.908 2024-02-20 19:59:03.908 1000 STREAM 141924 16876 6014381 2024-02-20 20:00:03.959 2024-02-20 20:00:03.959 1000 STREAM 141924 1307 6014393 2024-02-20 20:02:03.935 2024-02-20 20:02:03.935 1000 STREAM 141924 5175 6014394 2024-02-20 20:03:03.948 2024-02-20 20:03:03.948 1000 STREAM 141924 1738 6014397 2024-02-20 20:04:03.931 2024-02-20 20:04:03.931 1000 STREAM 141924 929 6014401 2024-02-20 20:07:03.944 2024-02-20 20:07:03.944 1000 STREAM 141924 18051 6014402 2024-02-20 20:08:03.946 2024-02-20 20:08:03.946 1000 STREAM 141924 21422 6014423 2024-02-20 20:11:03.959 2024-02-20 20:11:03.959 1000 STREAM 141924 4167 6014437 2024-02-20 20:12:03.96 2024-02-20 20:12:03.96 1000 STREAM 141924 897 6014448 2024-02-20 20:13:03.961 2024-02-20 20:13:03.961 1000 STREAM 141924 27 6014465 2024-02-20 20:14:03.975 2024-02-20 20:14:03.975 1000 STREAM 141924 16965 6014476 2024-02-20 20:15:04.003 2024-02-20 20:15:04.003 1000 STREAM 141924 18673 6014504 2024-02-20 20:20:04.063 2024-02-20 20:20:04.063 1000 STREAM 141924 19848 6014539 2024-02-20 20:21:04.08 2024-02-20 20:21:04.08 1000 STREAM 141924 1272 6014590 2024-02-20 20:23:04.097 2024-02-20 20:23:04.097 1000 STREAM 141924 20775 6014595 2024-02-20 20:24:04.107 2024-02-20 20:24:04.107 1000 STREAM 141924 18923 6014615 2024-02-20 20:26:04.142 2024-02-20 20:26:04.142 1000 STREAM 141924 17042 6014627 2024-02-20 20:27:04.145 2024-02-20 20:27:04.145 1000 STREAM 141924 720 6014637 2024-02-20 20:28:04.131 2024-02-20 20:28:04.131 1000 STREAM 141924 17109 6014651 2024-02-20 20:30:04.165 2024-02-20 20:30:04.165 1000 STREAM 141924 8648 6012640 2024-02-20 17:21:05.979 2024-02-20 17:21:05.979 2100 FEE 432270 1577 6012641 2024-02-20 17:21:05.979 2024-02-20 17:21:05.979 18900 TIP 432270 657 6012659 2024-02-20 17:21:33.76 2024-02-20 17:21:33.76 2100 FEE 432615 12609 6012660 2024-02-20 17:21:33.76 2024-02-20 17:21:33.76 18900 TIP 432615 9349 6012664 2024-02-20 17:21:44.658 2024-02-20 17:21:44.658 2100 FEE 432467 715 6012665 2024-02-20 17:21:44.658 2024-02-20 17:21:44.658 18900 TIP 432467 7891 6012690 2024-02-20 17:23:02.721 2024-02-20 17:23:02.721 1000 STREAM 141924 17148 6012717 2024-02-20 17:24:27.778 2024-02-20 17:24:27.778 1000 FEE 432755 9332 6012745 2024-02-20 17:30:43.267 2024-02-20 17:30:43.267 1000 FEE 432718 16230 6012746 2024-02-20 17:30:43.267 2024-02-20 17:30:43.267 9000 TIP 432718 15200 6012763 2024-02-20 17:31:34.812 2024-02-20 17:31:34.812 3000 FEE 432759 20811 6012764 2024-02-20 17:31:34.812 2024-02-20 17:31:34.812 27000 TIP 432759 15103 6012782 2024-02-20 17:32:57.008 2024-02-20 17:32:57.008 7700 FEE 432674 19770 6012783 2024-02-20 17:32:57.008 2024-02-20 17:32:57.008 69300 TIP 432674 20776 6012786 2024-02-20 17:32:57.37 2024-02-20 17:32:57.37 7700 FEE 432674 2437 6012787 2024-02-20 17:32:57.37 2024-02-20 17:32:57.37 69300 TIP 432674 10112 6012798 2024-02-20 17:33:02.221 2024-02-20 17:33:02.221 9000 FEE 432757 18829 6012799 2024-02-20 17:33:02.221 2024-02-20 17:33:02.221 81000 TIP 432757 1483 6012836 2024-02-20 17:34:17.755 2024-02-20 17:34:17.755 1000 FEE 432763 12057 6012837 2024-02-20 17:34:17.755 2024-02-20 17:34:17.755 9000 TIP 432763 17183 6012859 2024-02-20 17:36:08.369 2024-02-20 17:36:08.369 1000 FEE 432772 1803 6012860 2024-02-20 17:36:13.6 2024-02-20 17:36:13.6 700 FEE 432704 794 6012861 2024-02-20 17:36:13.6 2024-02-20 17:36:13.6 6300 TIP 432704 19890 6012872 2024-02-20 17:36:20.958 2024-02-20 17:36:20.958 1000 FEE 432759 1718 6012873 2024-02-20 17:36:20.958 2024-02-20 17:36:20.958 9000 TIP 432759 15474 6012918 2024-02-20 17:38:53.179 2024-02-20 17:38:53.179 1100 FEE 432493 6260 6012919 2024-02-20 17:38:53.179 2024-02-20 17:38:53.179 9900 TIP 432493 1890 6012933 2024-02-20 17:41:13.196 2024-02-20 17:41:13.196 1000 FEE 432778 1534 6012939 2024-02-20 17:42:42.445 2024-02-20 17:42:42.445 1000 FEE 432781 12721 6012944 2024-02-20 17:43:02.168 2024-02-20 17:43:02.168 1000 FEE 432780 17570 6012945 2024-02-20 17:43:02.168 2024-02-20 17:43:02.168 9000 TIP 432780 7097 6012960 2024-02-20 17:43:53.918 2024-02-20 17:43:53.918 5000 FEE 432736 21547 6012961 2024-02-20 17:43:53.918 2024-02-20 17:43:53.918 45000 TIP 432736 20106 6012972 2024-02-20 17:44:20.839 2024-02-20 17:44:20.839 1000 FEE 432786 12483 6012992 2024-02-20 17:45:16.421 2024-02-20 17:45:16.421 800 FEE 432551 11938 6012993 2024-02-20 17:45:16.421 2024-02-20 17:45:16.421 7200 TIP 432551 7983 6013007 2024-02-20 17:45:51.791 2024-02-20 17:45:51.791 1000 FEE 432791 726 6013020 2024-02-20 17:46:27.071 2024-02-20 17:46:27.071 1000 FEE 432418 8176 6013021 2024-02-20 17:46:27.071 2024-02-20 17:46:27.071 9000 TIP 432418 4313 6013024 2024-02-20 17:46:35.487 2024-02-20 17:46:35.487 1000 FEE 432736 1784 6013025 2024-02-20 17:46:35.487 2024-02-20 17:46:35.487 9000 TIP 432736 2390 6013029 2024-02-20 17:47:05.781 2024-02-20 17:47:05.781 1000 FEE 432670 17713 6013030 2024-02-20 17:47:05.781 2024-02-20 17:47:05.781 9000 TIP 432670 18357 6013037 2024-02-20 17:47:11.88 2024-02-20 17:47:11.88 1000 FEE 432782 21139 6013038 2024-02-20 17:47:11.88 2024-02-20 17:47:11.88 9000 TIP 432782 9159 6013078 2024-02-20 17:51:26.638 2024-02-20 17:51:26.638 1000 FEE 432801 3371 6013087 2024-02-20 17:53:25.685 2024-02-20 17:53:25.685 1000 FEE 432805 5942 6013094 2024-02-20 17:53:55.138 2024-02-20 17:53:55.138 1000 FEE 432806 17800 6013096 2024-02-20 17:54:10.726 2024-02-20 17:54:10.726 5000 FEE 432563 13246 6013097 2024-02-20 17:54:10.726 2024-02-20 17:54:10.726 45000 TIP 432563 19263 6013102 2024-02-20 17:54:22.974 2024-02-20 17:54:22.974 5000 FEE 432576 11992 6013103 2024-02-20 17:54:22.974 2024-02-20 17:54:22.974 45000 TIP 432576 11789 6013107 2024-02-20 17:54:50.33 2024-02-20 17:54:50.33 1000 FEE 432808 5427 6013117 2024-02-20 17:55:22.397 2024-02-20 17:55:22.397 2000 FEE 432434 17817 6013118 2024-02-20 17:55:22.397 2024-02-20 17:55:22.397 18000 TIP 432434 20129 6013124 2024-02-20 17:55:30.906 2024-02-20 17:55:30.906 5000 FEE 432150 11091 6013125 2024-02-20 17:55:30.906 2024-02-20 17:55:30.906 45000 TIP 432150 17976 6013132 2024-02-20 17:55:33.06 2024-02-20 17:55:33.06 5000 FEE 432150 10586 6013133 2024-02-20 17:55:33.06 2024-02-20 17:55:33.06 45000 TIP 432150 1515 6013136 2024-02-20 17:55:33.866 2024-02-20 17:55:33.866 5000 FEE 432150 6700 6013137 2024-02-20 17:55:33.866 2024-02-20 17:55:33.866 45000 TIP 432150 12272 6013155 2024-02-20 17:57:33.551 2024-02-20 17:57:33.551 1000 FEE 432810 2013 6013156 2024-02-20 17:57:33.551 2024-02-20 17:57:33.551 9000 TIP 432810 11018 6013176 2024-02-20 17:59:00.3 2024-02-20 17:59:00.3 5000 FEE 432339 10359 6013177 2024-02-20 17:59:00.3 2024-02-20 17:59:00.3 45000 TIP 432339 19806 6013181 2024-02-20 17:59:01.522 2024-02-20 17:59:01.522 5000 FEE 432339 2963 6013182 2024-02-20 17:59:01.522 2024-02-20 17:59:01.522 45000 TIP 432339 2832 6013186 2024-02-20 17:59:09.995 2024-02-20 17:59:09.995 1000 FEE 432795 9290 6013187 2024-02-20 17:59:09.995 2024-02-20 17:59:09.995 9000 TIP 432795 861 6013191 2024-02-20 17:59:28.441 2024-02-20 17:59:28.441 1000 FEE 432802 20163 6013192 2024-02-20 17:59:28.441 2024-02-20 17:59:28.441 9000 TIP 432802 2529 6013203 2024-02-20 17:59:37.839 2024-02-20 17:59:37.839 2100 FEE 432762 1803 6013204 2024-02-20 17:59:37.839 2024-02-20 17:59:37.839 18900 TIP 432762 11873 6013206 2024-02-20 18:00:14.667 2024-02-20 18:00:14.667 2100 FEE 432778 19541 6013207 2024-02-20 18:00:14.667 2024-02-20 18:00:14.667 18900 TIP 432778 15045 6013220 2024-02-20 18:01:58.615 2024-02-20 18:01:58.615 5000 FEE 432391 986 6013221 2024-02-20 18:01:58.615 2024-02-20 18:01:58.615 45000 TIP 432391 9184 6013229 2024-02-20 18:02:12.978 2024-02-20 18:02:12.978 1000 FEE 432820 626 6013270 2024-02-20 18:03:59.603 2024-02-20 18:03:59.603 10000 FEE 429291 21527 6013271 2024-02-20 18:03:59.603 2024-02-20 18:03:59.603 90000 TIP 429291 21342 6013273 2024-02-20 18:04:20.385 2024-02-20 18:04:20.385 500 FEE 432800 1611 6013274 2024-02-20 18:04:20.385 2024-02-20 18:04:20.385 4500 TIP 432800 16594 6013291 2024-02-20 18:05:20.94 2024-02-20 18:05:20.94 4000 FEE 432811 19033 6013292 2024-02-20 18:05:20.94 2024-02-20 18:05:20.94 36000 TIP 432811 6578 6013293 2024-02-20 18:05:21.816 2024-02-20 18:05:21.816 1000 FEE 432827 20353 6013294 2024-02-20 18:05:23.355 2024-02-20 18:05:23.355 9000 FEE 432811 1044 6013295 2024-02-20 18:05:23.355 2024-02-20 18:05:23.355 81000 TIP 432811 4763 6013297 2024-02-20 18:05:41.529 2024-02-20 18:05:41.529 100 FEE 432822 20840 6013298 2024-02-20 18:05:41.529 2024-02-20 18:05:41.529 900 TIP 432822 20180 6013303 2024-02-20 18:05:57.062 2024-02-20 18:05:57.062 1000 FEE 432829 21588 6013307 2024-02-20 18:06:25.663 2024-02-20 18:06:25.663 1000 FEE 432827 19403 6013308 2024-02-20 18:06:25.663 2024-02-20 18:06:25.663 9000 TIP 432827 956 6013344 2024-02-20 18:12:08.894 2024-02-20 18:12:08.894 1000 FEE 432837 16542 6013354 2024-02-20 18:14:03.198 2024-02-20 18:14:03.198 100 FEE 431241 19243 6013355 2024-02-20 18:14:03.198 2024-02-20 18:14:03.198 900 TIP 431241 11590 6013381 2024-02-20 18:18:06.675 2024-02-20 18:18:06.675 1000 FEE 432842 16665 6013416 2024-02-20 18:22:46.725 2024-02-20 18:22:46.725 1000 FEE 430629 651 6013417 2024-02-20 18:22:46.725 2024-02-20 18:22:46.725 9000 TIP 430629 20596 6013424 2024-02-20 18:22:47.825 2024-02-20 18:22:47.825 1000 FEE 430629 17570 6013425 2024-02-20 18:22:47.825 2024-02-20 18:22:47.825 9000 TIP 430629 5112 6013430 2024-02-20 18:22:48.513 2024-02-20 18:22:48.513 1000 FEE 430629 5701 6013431 2024-02-20 18:22:48.513 2024-02-20 18:22:48.513 9000 TIP 430629 5752 6013453 2024-02-20 18:22:50.541 2024-02-20 18:22:50.541 1000 FEE 430629 5085 6013454 2024-02-20 18:22:50.541 2024-02-20 18:22:50.541 9000 TIP 430629 15063 6013460 2024-02-20 18:23:17.529 2024-02-20 18:23:17.529 500 FEE 432563 19126 6013461 2024-02-20 18:23:17.529 2024-02-20 18:23:17.529 4500 TIP 432563 6687 6013466 2024-02-20 18:23:20.311 2024-02-20 18:23:20.311 500 FEE 432563 8173 6012716 2024-02-20 17:24:09.015 2024-02-20 17:24:09.015 1000 FEE 432754 715 6012728 2024-02-20 17:27:22.805 2024-02-20 17:27:22.805 1000 FEE 432757 2724 6012776 2024-02-20 17:32:50.008 2024-02-20 17:32:50.008 1000 FEE 432666 14449 6012777 2024-02-20 17:32:50.008 2024-02-20 17:32:50.008 9000 TIP 432666 17147 6012780 2024-02-20 17:32:56.806 2024-02-20 17:32:56.806 7700 FEE 432674 2195 6012781 2024-02-20 17:32:56.806 2024-02-20 17:32:56.806 69300 TIP 432674 1720 6012792 2024-02-20 17:32:57.949 2024-02-20 17:32:57.949 7700 FEE 432674 18017 6012793 2024-02-20 17:32:57.949 2024-02-20 17:32:57.949 69300 TIP 432674 20299 6012807 2024-02-20 17:33:25.159 2024-02-20 17:33:25.159 1000 FEE 432729 18321 6012808 2024-02-20 17:33:25.159 2024-02-20 17:33:25.159 9000 TIP 432729 776 6012811 2024-02-20 17:33:26.127 2024-02-20 17:33:26.127 1000 FEE 432729 20231 6012812 2024-02-20 17:33:26.127 2024-02-20 17:33:26.127 9000 TIP 432729 21157 6012819 2024-02-20 17:34:10.052 2024-02-20 17:34:10.052 3000 FEE 432762 20554 6012820 2024-02-20 17:34:10.052 2024-02-20 17:34:10.052 27000 TIP 432762 18815 6012821 2024-02-20 17:34:10.179 2024-02-20 17:34:10.179 100 FEE 432755 21398 6012822 2024-02-20 17:34:10.179 2024-02-20 17:34:10.179 900 TIP 432755 9844 6012838 2024-02-20 17:34:28.858 2024-02-20 17:34:28.858 1000 FEE 432768 20826 6012839 2024-02-20 17:34:37.472 2024-02-20 17:34:37.472 1000 FEE 432759 19142 6012840 2024-02-20 17:34:37.472 2024-02-20 17:34:37.472 9000 TIP 432759 4570 6012843 2024-02-20 17:34:38.255 2024-02-20 17:34:38.255 1000 FEE 432759 20911 6012844 2024-02-20 17:34:38.255 2024-02-20 17:34:38.255 9000 TIP 432759 18873 6012845 2024-02-20 17:34:38.775 2024-02-20 17:34:38.775 1000 FEE 432759 15075 6012846 2024-02-20 17:34:38.775 2024-02-20 17:34:38.775 9000 TIP 432759 19541 6012876 2024-02-20 17:36:30.343 2024-02-20 17:36:30.343 100 FEE 432517 21116 6012877 2024-02-20 17:36:30.343 2024-02-20 17:36:30.343 900 TIP 432517 7185 6012878 2024-02-20 17:36:34.387 2024-02-20 17:36:34.387 100 FEE 432563 695 6012879 2024-02-20 17:36:34.387 2024-02-20 17:36:34.387 900 TIP 432563 2776 6012915 2024-02-20 17:38:39.559 2024-02-20 17:38:39.559 1000 FEE 432776 20657 6012936 2024-02-20 17:41:22.746 2024-02-20 17:41:22.746 1000 FEE 432779 5825 6012942 2024-02-20 17:43:01.595 2024-02-20 17:43:01.595 1000 FEE 432780 21349 6012943 2024-02-20 17:43:01.595 2024-02-20 17:43:01.595 9000 TIP 432780 8506 6012949 2024-02-20 17:43:03.353 2024-02-20 17:43:03.353 1000 FEE 432780 1429 6012950 2024-02-20 17:43:03.353 2024-02-20 17:43:03.353 9000 TIP 432780 8945 6012951 2024-02-20 17:43:03.871 2024-02-20 17:43:03.871 1000 FEE 432780 5828 6012952 2024-02-20 17:43:03.871 2024-02-20 17:43:03.871 9000 TIP 432780 21247 6013023 2024-02-20 17:46:32.915 2024-02-20 17:46:32.915 1000 FEE 432793 10731 6013026 2024-02-20 17:46:36.242 2024-02-20 17:46:36.242 1000 FEE 432794 18378 6013053 2024-02-20 17:47:40.091 2024-02-20 17:47:40.091 1000 FEE 432793 19333 6013054 2024-02-20 17:47:40.091 2024-02-20 17:47:40.091 9000 TIP 432793 18828 6013057 2024-02-20 17:47:47.418 2024-02-20 17:47:47.418 1000 FEE 432795 1740 6013065 2024-02-20 17:49:51.648 2024-02-20 17:49:51.648 2100 FEE 432759 20036 6013066 2024-02-20 17:49:51.648 2024-02-20 17:49:51.648 18900 TIP 432759 721 6013070 2024-02-20 17:50:07.85 2024-02-20 17:50:07.85 2100 FEE 432674 11956 6013071 2024-02-20 17:50:07.85 2024-02-20 17:50:07.85 18900 TIP 432674 13878 6013074 2024-02-20 17:50:55.318 2024-02-20 17:50:55.318 2100 FEE 432670 19018 6013075 2024-02-20 17:50:55.318 2024-02-20 17:50:55.318 18900 TIP 432670 17411 6013088 2024-02-20 17:53:31.96 2024-02-20 17:53:31.96 1000 FEE 432804 9335 6013089 2024-02-20 17:53:31.96 2024-02-20 17:53:31.96 9000 TIP 432804 20066 6013090 2024-02-20 17:53:35.68 2024-02-20 17:53:35.68 10000 FEE 432726 777 6013091 2024-02-20 17:53:35.68 2024-02-20 17:53:35.68 90000 TIP 432726 993 6013110 2024-02-20 17:54:54.065 2024-02-20 17:54:54.065 4000 FEE 432806 21247 6013111 2024-02-20 17:54:54.065 2024-02-20 17:54:54.065 36000 TIP 432806 20058 6013115 2024-02-20 17:55:14.713 2024-02-20 17:55:14.713 5000 FEE 432072 18188 6013116 2024-02-20 17:55:14.713 2024-02-20 17:55:14.713 45000 TIP 432072 19154 6013126 2024-02-20 17:55:31.086 2024-02-20 17:55:31.086 5000 FEE 432150 19094 6013127 2024-02-20 17:55:31.086 2024-02-20 17:55:31.086 45000 TIP 432150 19335 6013134 2024-02-20 17:55:33.461 2024-02-20 17:55:33.461 5000 FEE 432150 3506 6013135 2024-02-20 17:55:33.461 2024-02-20 17:55:33.461 45000 TIP 432150 14663 6013144 2024-02-20 17:56:32.782 2024-02-20 17:56:32.782 5000 FEE 432759 17124 6013145 2024-02-20 17:56:32.782 2024-02-20 17:56:32.782 45000 TIP 432759 897 6013153 2024-02-20 17:57:32.895 2024-02-20 17:57:32.895 1000 FEE 432810 627 6013154 2024-02-20 17:57:32.895 2024-02-20 17:57:32.895 9000 TIP 432810 663 6013174 2024-02-20 17:58:59.641 2024-02-20 17:58:59.641 5000 FEE 432339 20276 6013175 2024-02-20 17:58:59.641 2024-02-20 17:58:59.641 45000 TIP 432339 10981 6013188 2024-02-20 17:59:25.881 2024-02-20 17:59:25.881 1000 FEE 432814 633 6013189 2024-02-20 17:59:28.372 2024-02-20 17:59:28.372 2100 FEE 432669 3400 6013190 2024-02-20 17:59:28.372 2024-02-20 17:59:28.372 18900 TIP 432669 750 6013201 2024-02-20 17:59:31.372 2024-02-20 17:59:31.372 2100 FEE 432718 9494 6013202 2024-02-20 17:59:31.372 2024-02-20 17:59:31.372 18900 TIP 432718 9078 6013264 2024-02-20 18:03:51.274 2024-02-20 18:03:51.274 15000 FEE 432822 17082 6013265 2024-02-20 18:03:51.274 2024-02-20 18:03:51.274 135000 TIP 432822 20084 6013267 2024-02-20 18:03:52.256 2024-02-20 18:03:52.256 1000 FEE 432825 9482 6013305 2024-02-20 18:06:10.9 2024-02-20 18:06:10.9 3000 FEE 432825 2101 6013306 2024-02-20 18:06:10.9 2024-02-20 18:06:10.9 27000 TIP 432825 861 6013310 2024-02-20 18:06:35.781 2024-02-20 18:06:35.781 1000 FEE 432828 636 6013311 2024-02-20 18:06:35.781 2024-02-20 18:06:35.781 9000 TIP 432828 19021 6013332 2024-02-20 18:09:09.331 2024-02-20 18:09:09.331 2100 FEE 432517 750 6013333 2024-02-20 18:09:09.331 2024-02-20 18:09:09.331 18900 TIP 432517 802 6013335 2024-02-20 18:09:30.311 2024-02-20 18:09:30.311 4000 FEE 432829 11819 6013336 2024-02-20 18:09:30.311 2024-02-20 18:09:30.311 36000 TIP 432829 1512 6013374 2024-02-20 18:17:14.253 2024-02-20 18:17:14.253 1000 FEE 432841 21343 6013382 2024-02-20 18:18:06.959 2024-02-20 18:18:06.959 1000 FEE 432822 1603 6013383 2024-02-20 18:18:06.959 2024-02-20 18:18:06.959 9000 TIP 432822 17592 6013393 2024-02-20 18:20:21.295 2024-02-20 18:20:21.295 1000 FEE 432736 2088 6013394 2024-02-20 18:20:21.295 2024-02-20 18:20:21.295 9000 TIP 432736 21339 6013397 2024-02-20 18:20:22.445 2024-02-20 18:20:22.445 3000 FEE 432833 14169 6013398 2024-02-20 18:20:22.445 2024-02-20 18:20:22.445 27000 TIP 432833 20963 6013404 2024-02-20 18:22:44.433 2024-02-20 18:22:44.433 1000 FEE 430629 7674 6013405 2024-02-20 18:22:44.433 2024-02-20 18:22:44.433 9000 TIP 430629 18310 6013406 2024-02-20 18:22:44.959 2024-02-20 18:22:44.959 1000 FEE 430629 5487 6013407 2024-02-20 18:22:44.959 2024-02-20 18:22:44.959 9000 TIP 430629 2293 6013408 2024-02-20 18:22:45.762 2024-02-20 18:22:45.762 1000 FEE 430629 14705 6013409 2024-02-20 18:22:45.762 2024-02-20 18:22:45.762 9000 TIP 430629 19640 6013414 2024-02-20 18:22:46.509 2024-02-20 18:22:46.509 1000 FEE 430629 11158 6013415 2024-02-20 18:22:46.509 2024-02-20 18:22:46.509 9000 TIP 430629 6526 6013451 2024-02-20 18:22:50.357 2024-02-20 18:22:50.357 1000 FEE 430629 15146 6013452 2024-02-20 18:22:50.357 2024-02-20 18:22:50.357 9000 TIP 430629 19303 6013483 2024-02-20 18:25:13.664 2024-02-20 18:25:13.664 500 FEE 432705 21424 6013484 2024-02-20 18:25:13.664 2024-02-20 18:25:13.664 4500 TIP 432705 1712 6013497 2024-02-20 18:27:50.672 2024-02-20 18:27:50.672 2100 FEE 432674 17690 6013498 2024-02-20 18:27:50.672 2024-02-20 18:27:50.672 18900 TIP 432674 2156 6013499 2024-02-20 18:27:53.25 2024-02-20 18:27:53.25 500 FEE 432811 11144 6013500 2024-02-20 18:27:53.25 2024-02-20 18:27:53.25 4500 TIP 432811 21619 6013503 2024-02-20 18:28:23.634 2024-02-20 18:28:23.634 2100 FEE 432851 3371 6013504 2024-02-20 18:28:23.634 2024-02-20 18:28:23.634 18900 TIP 432851 19821 6012723 2024-02-20 17:26:02.748 2024-02-20 17:26:02.748 1000 STREAM 141924 16177 6012754 2024-02-20 17:31:02.499 2024-02-20 17:31:02.499 1000 STREAM 141924 18241 6012800 2024-02-20 17:33:02.525 2024-02-20 17:33:02.525 1000 STREAM 141924 17106 6012816 2024-02-20 17:34:02.543 2024-02-20 17:34:02.543 1000 STREAM 141924 19888 6012920 2024-02-20 17:39:02.64 2024-02-20 17:39:02.64 1000 STREAM 141924 5865 6012927 2024-02-20 17:40:02.662 2024-02-20 17:40:02.662 1000 STREAM 141924 16532 6012932 2024-02-20 17:41:02.656 2024-02-20 17:41:02.656 1000 STREAM 141924 12102 6013011 2024-02-20 17:46:02.7 2024-02-20 17:46:02.7 1000 STREAM 141924 1737 6013076 2024-02-20 17:51:02.742 2024-02-20 17:51:02.742 1000 STREAM 141924 2224 6013114 2024-02-20 17:55:02.78 2024-02-20 17:55:02.78 1000 STREAM 141924 5520 6013163 2024-02-20 17:58:02.821 2024-02-20 17:58:02.821 1000 STREAM 141924 1465 6013205 2024-02-20 18:00:02.868 2024-02-20 18:00:02.868 1000 STREAM 141924 19309 6013255 2024-02-20 18:03:02.828 2024-02-20 18:03:02.828 1000 STREAM 141924 13781 6013304 2024-02-20 18:06:02.845 2024-02-20 18:06:02.845 1000 STREAM 141924 749 6013325 2024-02-20 18:07:02.862 2024-02-20 18:07:02.862 1000 STREAM 141924 12356 6013329 2024-02-20 18:08:02.849 2024-02-20 18:08:02.849 1000 STREAM 141924 6149 6013331 2024-02-20 18:09:02.869 2024-02-20 18:09:02.869 1000 STREAM 141924 626 6013342 2024-02-20 18:11:02.882 2024-02-20 18:11:02.882 1000 STREAM 141924 17183 6013353 2024-02-20 18:14:02.92 2024-02-20 18:14:02.92 1000 STREAM 141924 16879 6013373 2024-02-20 18:17:02.947 2024-02-20 18:17:02.947 1000 STREAM 141924 17321 6013401 2024-02-20 18:21:02.979 2024-02-20 18:21:02.979 1000 STREAM 141924 2162 6013403 2024-02-20 18:22:02.987 2024-02-20 18:22:02.987 1000 STREAM 141924 15147 6013487 2024-02-20 18:26:03.014 2024-02-20 18:26:03.014 1000 STREAM 141924 1000 6013510 2024-02-20 18:29:03.022 2024-02-20 18:29:03.022 1000 STREAM 141924 8448 6013528 2024-02-20 18:32:03.046 2024-02-20 18:32:03.046 1000 STREAM 141924 16830 6013534 2024-02-20 18:33:03.05 2024-02-20 18:33:03.05 1000 STREAM 141924 896 6013543 2024-02-20 18:34:03.054 2024-02-20 18:34:03.054 1000 STREAM 141924 17707 6013548 2024-02-20 18:35:03.057 2024-02-20 18:35:03.057 1000 STREAM 141924 1047 6013552 2024-02-20 18:36:03.06 2024-02-20 18:36:03.06 1000 STREAM 141924 3456 6013574 2024-02-20 18:40:03.105 2024-02-20 18:40:03.105 1000 STREAM 141924 19511 6013575 2024-02-20 18:41:03.088 2024-02-20 18:41:03.088 1000 STREAM 141924 2508 6013604 2024-02-20 18:43:03.088 2024-02-20 18:43:03.088 1000 STREAM 141924 10056 6013642 2024-02-20 18:44:03.102 2024-02-20 18:44:03.102 1000 STREAM 141924 21427 6013674 2024-02-20 18:50:03.132 2024-02-20 18:50:03.132 1000 STREAM 141924 18641 6013676 2024-02-20 18:51:03.138 2024-02-20 18:51:03.138 1000 STREAM 141924 8080 6013728 2024-02-20 18:55:03.139 2024-02-20 18:55:03.139 1000 STREAM 141924 18270 6013729 2024-02-20 18:56:03.15 2024-02-20 18:56:03.15 1000 STREAM 141924 19613 6013800 2024-02-20 19:03:03.23 2024-02-20 19:03:03.23 1000 STREAM 141924 17710 6013829 2024-02-20 19:06:03.273 2024-02-20 19:06:03.273 1000 STREAM 141924 13767 6013834 2024-02-20 19:07:03.271 2024-02-20 19:07:03.271 1000 STREAM 141924 9346 6013838 2024-02-20 19:08:03.27 2024-02-20 19:08:03.27 1000 STREAM 141924 9346 6013861 2024-02-20 19:10:03.305 2024-02-20 19:10:03.305 1000 STREAM 141924 19018 6013862 2024-02-20 19:11:03.289 2024-02-20 19:11:03.289 1000 STREAM 141924 10849 6013874 2024-02-20 19:14:03.318 2024-02-20 19:14:03.318 1000 STREAM 141924 5306 6013877 2024-02-20 19:15:03.329 2024-02-20 19:15:03.329 1000 STREAM 141924 13575 6013945 2024-02-20 19:24:03.402 2024-02-20 19:24:03.402 1000 STREAM 141924 20143 6013946 2024-02-20 19:25:03.409 2024-02-20 19:25:03.409 1000 STREAM 141924 18344 6013989 2024-02-20 19:28:03.429 2024-02-20 19:28:03.429 1000 STREAM 141924 3439 6014000 2024-02-20 19:29:03.454 2024-02-20 19:29:03.454 1000 STREAM 141924 13177 6014056 2024-02-20 19:36:03.661 2024-02-20 19:36:03.661 1000 STREAM 141924 1483 6014070 2024-02-20 19:39:03.706 2024-02-20 19:39:03.706 1000 STREAM 141924 16336 6014088 2024-02-20 19:41:03.717 2024-02-20 19:41:03.717 1000 STREAM 141924 21609 6014117 2024-02-20 19:44:03.74 2024-02-20 19:44:03.74 1000 STREAM 141924 17237 6014271 2024-02-20 19:52:03.887 2024-02-20 19:52:03.887 1000 STREAM 141924 2204 6014277 2024-02-20 19:53:03.889 2024-02-20 19:53:03.889 1000 STREAM 141924 11942 6014286 2024-02-20 19:54:03.905 2024-02-20 19:54:03.905 1000 STREAM 141924 1237 6014309 2024-02-20 19:55:03.887 2024-02-20 19:55:03.887 1000 STREAM 141924 21003 6014364 2024-02-20 19:58:03.899 2024-02-20 19:58:03.899 1000 STREAM 141924 15239 6014390 2024-02-20 20:01:03.926 2024-02-20 20:01:03.926 1000 STREAM 141924 19660 6014398 2024-02-20 20:05:03.934 2024-02-20 20:05:03.934 1000 STREAM 141924 17514 6014399 2024-02-20 20:06:03.94 2024-02-20 20:06:03.94 1000 STREAM 141924 18426 6014404 2024-02-20 20:09:03.959 2024-02-20 20:09:03.959 1000 STREAM 141924 20751 6014408 2024-02-20 20:10:03.978 2024-02-20 20:10:03.978 1000 STREAM 141924 18930 6014479 2024-02-20 20:16:04.016 2024-02-20 20:16:04.016 1000 STREAM 141924 4314 6014491 2024-02-20 20:17:04.027 2024-02-20 20:17:04.027 1000 STREAM 141924 15549 6014493 2024-02-20 20:18:04.032 2024-02-20 20:18:04.032 1000 STREAM 141924 17291 6014500 2024-02-20 20:19:04.056 2024-02-20 20:19:04.056 1000 STREAM 141924 19987 6014550 2024-02-20 20:22:04.08 2024-02-20 20:22:04.08 1000 STREAM 141924 12160 6014609 2024-02-20 20:25:04.109 2024-02-20 20:25:04.109 1000 STREAM 141924 18932 6014641 2024-02-20 20:29:04.149 2024-02-20 20:29:04.149 1000 STREAM 141924 1094 6014662 2024-02-20 20:32:04.176 2024-02-20 20:32:04.176 1000 STREAM 141924 634 6014666 2024-02-20 20:33:04.191 2024-02-20 20:33:04.191 1000 STREAM 141924 9099 6014703 2024-02-20 20:38:04.252 2024-02-20 20:38:04.252 1000 STREAM 141924 1751 6014714 2024-02-20 20:40:04.265 2024-02-20 20:40:04.265 1000 STREAM 141924 12921 6014752 2024-02-20 20:42:04.288 2024-02-20 20:42:04.288 1000 STREAM 141924 9418 6014769 2024-02-20 20:44:04.294 2024-02-20 20:44:04.294 1000 STREAM 141924 644 6014812 2024-02-20 20:49:04.351 2024-02-20 20:49:04.351 1000 STREAM 141924 20701 6014824 2024-02-20 20:51:04.381 2024-02-20 20:51:04.381 1000 STREAM 141924 17570 6014830 2024-02-20 20:53:04.405 2024-02-20 20:53:04.405 1000 STREAM 141924 2459 6014836 2024-02-20 20:55:04.617 2024-02-20 20:55:04.617 1000 STREAM 141924 1298 6014839 2024-02-20 20:57:04.641 2024-02-20 20:57:04.641 1000 STREAM 141924 16410 6012757 2024-02-20 17:31:19.695 2024-02-20 17:31:19.695 5000 FEE 432710 19664 6012758 2024-02-20 17:31:19.695 2024-02-20 17:31:19.695 45000 TIP 432710 16556 6012771 2024-02-20 17:32:16.851 2024-02-20 17:32:16.851 700 FEE 430818 20837 6012772 2024-02-20 17:32:16.851 2024-02-20 17:32:16.851 6300 TIP 430818 20775 6012788 2024-02-20 17:32:57.582 2024-02-20 17:32:57.582 7700 FEE 432674 1652 6012789 2024-02-20 17:32:57.582 2024-02-20 17:32:57.582 69300 TIP 432674 15139 6012794 2024-02-20 17:33:00.906 2024-02-20 17:33:00.906 100 FEE 432757 14939 6012795 2024-02-20 17:33:00.906 2024-02-20 17:33:00.906 900 TIP 432757 18177 6012813 2024-02-20 17:33:46.44 2024-02-20 17:33:46.44 1000 FEE 432764 11992 6012814 2024-02-20 17:33:47.609 2024-02-20 17:33:47.609 10000 FEE 432765 21405 6012823 2024-02-20 17:34:10.355 2024-02-20 17:34:10.355 100 FEE 432755 17209 6012824 2024-02-20 17:34:10.355 2024-02-20 17:34:10.355 900 TIP 432755 954 6012831 2024-02-20 17:34:16.936 2024-02-20 17:34:16.936 1000 FEE 432767 19333 6012852 2024-02-20 17:35:04.06 2024-02-20 17:35:04.06 1000 STREAM 141924 16284 6012853 2024-02-20 17:35:14.633 2024-02-20 17:35:14.633 1000 FEE 432661 18351 6012854 2024-02-20 17:35:14.633 2024-02-20 17:35:14.633 9000 TIP 432661 21509 6012881 2024-02-20 17:36:46.109 2024-02-20 17:36:46.109 100 FEE 432619 20439 6012882 2024-02-20 17:36:46.109 2024-02-20 17:36:46.109 900 TIP 432619 9551 6012890 2024-02-20 17:37:46.386 2024-02-20 17:37:46.386 1000 FEE 432759 12049 6012891 2024-02-20 17:37:46.386 2024-02-20 17:37:46.386 9000 TIP 432759 4521 6012903 2024-02-20 17:38:08.368 2024-02-20 17:38:08.368 1000 FEE 432669 16276 6012904 2024-02-20 17:38:08.368 2024-02-20 17:38:08.368 9000 TIP 432669 21320 6012910 2024-02-20 17:38:16.416 2024-02-20 17:38:16.416 1000 FEE 432683 18533 6012911 2024-02-20 17:38:16.416 2024-02-20 17:38:16.416 9000 TIP 432683 8004 6012930 2024-02-20 17:40:52.367 2024-02-20 17:40:52.367 1000 FEE 432752 1237 6012931 2024-02-20 17:40:52.367 2024-02-20 17:40:52.367 9000 TIP 432752 992 6012953 2024-02-20 17:43:10.624 2024-02-20 17:43:10.624 3000 FEE 432779 19289 6012954 2024-02-20 17:43:10.624 2024-02-20 17:43:10.624 27000 TIP 432779 749 6012977 2024-02-20 17:44:41.194 2024-02-20 17:44:41.194 1600 FEE 432085 7395 6012978 2024-02-20 17:44:41.194 2024-02-20 17:44:41.194 14400 TIP 432085 19938 6012987 2024-02-20 17:44:58.961 2024-02-20 17:44:58.961 1000 FEE 432788 20102 6012988 2024-02-20 17:45:01.489 2024-02-20 17:45:01.489 0 FEE 432786 9169 6013014 2024-02-20 17:46:12.264 2024-02-20 17:46:12.264 1000 FEE 432783 1180 6013015 2024-02-20 17:46:12.264 2024-02-20 17:46:12.264 9000 TIP 432783 635 6013016 2024-02-20 17:46:12.337 2024-02-20 17:46:12.337 1000 FEE 432638 1286 6013017 2024-02-20 17:46:12.337 2024-02-20 17:46:12.337 9000 TIP 432638 656 6013027 2024-02-20 17:46:39.848 2024-02-20 17:46:39.848 0 FEE 432788 20272 6013028 2024-02-20 17:47:04.127 2024-02-20 17:47:04.127 1000 STREAM 141924 10536 6013059 2024-02-20 17:48:04.143 2024-02-20 17:48:04.143 1000 STREAM 141924 1326 6013077 2024-02-20 17:51:25.422 2024-02-20 17:51:25.422 100000 FEE 432800 19398 6013141 2024-02-20 17:56:15.813 2024-02-20 17:56:15.813 1000 FEE 432810 16354 6013147 2024-02-20 17:57:05.882 2024-02-20 17:57:05.882 10000 FEE 432811 14939 6013149 2024-02-20 17:57:20.766 2024-02-20 17:57:20.766 4000 FEE 432800 18387 6013150 2024-02-20 17:57:20.766 2024-02-20 17:57:20.766 36000 TIP 432800 1244 6013172 2024-02-20 17:58:59.109 2024-02-20 17:58:59.109 5000 FEE 432339 2101 6013173 2024-02-20 17:58:59.109 2024-02-20 17:58:59.109 45000 TIP 432339 2111 6013178 2024-02-20 17:59:00.618 2024-02-20 17:59:00.618 1000 FEE 432813 18637 6013240 2024-02-20 18:02:22.824 2024-02-20 18:02:22.824 1000 FEE 432809 21498 6013241 2024-02-20 18:02:22.824 2024-02-20 18:02:22.824 9000 TIP 432809 11220 6013242 2024-02-20 18:02:23.236 2024-02-20 18:02:23.236 1000 FEE 432809 20254 6013243 2024-02-20 18:02:23.236 2024-02-20 18:02:23.236 9000 TIP 432809 1468 6013250 2024-02-20 18:02:25.154 2024-02-20 18:02:25.154 400 FEE 432743 19837 6013251 2024-02-20 18:02:25.154 2024-02-20 18:02:25.154 3600 TIP 432743 6149 6013286 2024-02-20 18:05:01.047 2024-02-20 18:05:01.047 900 FEE 432811 18919 6013287 2024-02-20 18:05:01.047 2024-02-20 18:05:01.047 8100 TIP 432811 10849 6013296 2024-02-20 18:05:34.748 2024-02-20 18:05:34.748 1000 FEE 432828 14774 6013299 2024-02-20 18:05:41.625 2024-02-20 18:05:41.625 900 FEE 432822 20058 6013300 2024-02-20 18:05:41.625 2024-02-20 18:05:41.625 8100 TIP 432822 3990 6013316 2024-02-20 18:06:37.078 2024-02-20 18:06:37.078 1000 FEE 432828 2528 6013317 2024-02-20 18:06:37.078 2024-02-20 18:06:37.078 9000 TIP 432828 21585 6013318 2024-02-20 18:06:37.354 2024-02-20 18:06:37.354 1000 FEE 432828 9863 6013319 2024-02-20 18:06:37.354 2024-02-20 18:06:37.354 9000 TIP 432828 1008 6013345 2024-02-20 18:12:25.096 2024-02-20 18:12:25.096 2100 FEE 432311 9433 6013346 2024-02-20 18:12:25.096 2024-02-20 18:12:25.096 18900 TIP 432311 11527 6013352 2024-02-20 18:13:43.618 2024-02-20 18:13:43.618 1000 FEE 432838 15941 6013359 2024-02-20 18:15:30.669 2024-02-20 18:15:30.669 1100 FEE 432664 13527 6013360 2024-02-20 18:15:30.669 2024-02-20 18:15:30.669 9900 TIP 432664 21040 6013361 2024-02-20 18:15:56.445 2024-02-20 18:15:56.445 21000 FEE 432840 19005 6013362 2024-02-20 18:16:02.667 2024-02-20 18:16:02.667 2100 FEE 432759 11820 6013363 2024-02-20 18:16:02.667 2024-02-20 18:16:02.667 18900 TIP 432759 5387 6013377 2024-02-20 18:17:50.998 2024-02-20 18:17:50.998 0 FEE 432841 2942 6013389 2024-02-20 18:19:50.943 2024-02-20 18:19:50.943 1000 FEE 432844 21527 6013399 2024-02-20 18:20:30.884 2024-02-20 18:20:30.884 1000 FEE 432736 5171 6013400 2024-02-20 18:20:30.884 2024-02-20 18:20:30.884 9000 TIP 432736 1493 6013402 2024-02-20 18:21:23.12 2024-02-20 18:21:23.12 0 FEE 432841 20901 6013445 2024-02-20 18:22:49.656 2024-02-20 18:22:49.656 1000 FEE 430629 14909 6013446 2024-02-20 18:22:49.656 2024-02-20 18:22:49.656 9000 TIP 430629 18539 6013475 2024-02-20 18:23:32.995 2024-02-20 18:23:32.995 10100 FEE 432811 15925 6013476 2024-02-20 18:23:32.995 2024-02-20 18:23:32.995 90900 TIP 432811 21334 6013485 2024-02-20 18:25:14.649 2024-02-20 18:25:14.649 500 FEE 432705 16562 6013486 2024-02-20 18:25:14.649 2024-02-20 18:25:14.649 4500 TIP 432705 5359 6013492 2024-02-20 18:26:50.532 2024-02-20 18:26:50.532 1000 FEE 432851 18154 6013505 2024-02-20 18:28:28.965 2024-02-20 18:28:28.965 50000 FEE 432152 16341 6013506 2024-02-20 18:28:28.965 2024-02-20 18:28:28.965 450000 TIP 432152 9307 6013519 2024-02-20 18:30:41.201 2024-02-20 18:30:41.201 2100 FEE 432853 19458 6013520 2024-02-20 18:30:41.201 2024-02-20 18:30:41.201 18900 TIP 432853 656 6013527 2024-02-20 18:31:44.837 2024-02-20 18:31:44.837 1000 FEE 432862 17331 6013538 2024-02-20 18:33:36.89 2024-02-20 18:33:36.89 100000 FEE 432867 5565 6013566 2024-02-20 18:38:48.655 2024-02-20 18:38:48.655 3000 FEE 432245 21119 6013567 2024-02-20 18:38:48.655 2024-02-20 18:38:48.655 27000 TIP 432245 1141 6013594 2024-02-20 18:41:56.421 2024-02-20 18:41:56.421 100 FEE 432811 2342 6013595 2024-02-20 18:41:56.421 2024-02-20 18:41:56.421 900 TIP 432811 20841 6013605 2024-02-20 18:43:06.055 2024-02-20 18:43:06.055 1000 FEE 432879 9969 6013637 2024-02-20 18:43:45.89 2024-02-20 18:43:45.89 0 FEE 432875 795 6013650 2024-02-20 18:45:44.4 2024-02-20 18:45:44.4 125000 FEE 432884 18507 6013653 2024-02-20 18:46:58.29 2024-02-20 18:46:58.29 7700 FEE 432875 7418 6013654 2024-02-20 18:46:58.29 2024-02-20 18:46:58.29 69300 TIP 432875 2508 6013677 2024-02-20 18:51:25.663 2024-02-20 18:51:25.663 10100 FEE 432822 9200 6013678 2024-02-20 18:51:25.663 2024-02-20 18:51:25.663 90900 TIP 432822 641 6013710 2024-02-20 18:54:15.207 2024-02-20 18:54:15.207 8300 FEE 432873 1474 6013711 2024-02-20 18:54:15.207 2024-02-20 18:54:15.207 74700 TIP 432873 18673 6013737 2024-02-20 18:58:30.737 2024-02-20 18:58:30.737 3300 FEE 432880 3990 6013738 2024-02-20 18:58:30.737 2024-02-20 18:58:30.737 29700 TIP 432880 2519 6013758 2024-02-20 19:01:02.393 2024-02-20 19:01:02.393 2300 FEE 432890 18208 6013759 2024-02-20 19:01:02.393 2024-02-20 19:01:02.393 20700 TIP 432890 10690 6013815 2024-02-20 19:04:56.466 2024-02-20 19:04:56.466 1000 FEE 432901 21563 6013816 2024-02-20 19:04:56.466 2024-02-20 19:04:56.466 9000 TIP 432901 5425 6012875 2024-02-20 17:36:21.96 2024-02-20 17:36:21.96 9000 TIP 432759 18392 6012892 2024-02-20 17:37:47.483 2024-02-20 17:37:47.483 1000 FEE 432759 11516 6012893 2024-02-20 17:37:47.483 2024-02-20 17:37:47.483 9000 TIP 432759 5758 6012896 2024-02-20 17:37:49.963 2024-02-20 17:37:49.963 1000 FEE 432759 19569 6012897 2024-02-20 17:37:49.963 2024-02-20 17:37:49.963 9000 TIP 432759 16649 6012912 2024-02-20 17:38:30.672 2024-02-20 17:38:30.672 1000 FEE 432775 13753 6012922 2024-02-20 17:39:41.927 2024-02-20 17:39:41.927 4000 FEE 432759 18291 6012923 2024-02-20 17:39:41.927 2024-02-20 17:39:41.927 36000 TIP 432759 11862 6012955 2024-02-20 17:43:42.338 2024-02-20 17:43:42.338 10100 FEE 432511 18393 6012956 2024-02-20 17:43:42.338 2024-02-20 17:43:42.338 90900 TIP 432511 13574 6012975 2024-02-20 17:44:39.103 2024-02-20 17:44:39.103 10000 FEE 432773 18372 6012976 2024-02-20 17:44:39.103 2024-02-20 17:44:39.103 90000 TIP 432773 20889 6012985 2024-02-20 17:44:57.603 2024-02-20 17:44:57.603 800 FEE 432077 11477 6012986 2024-02-20 17:44:57.603 2024-02-20 17:44:57.603 7200 TIP 432077 986 6013000 2024-02-20 17:45:39.4 2024-02-20 17:45:39.4 1000 FEE 432790 6229 6013008 2024-02-20 17:45:57.702 2024-02-20 17:45:57.702 0 FEE 432788 21422 6013018 2024-02-20 17:46:18.328 2024-02-20 17:46:18.328 1100 FEE 432619 20713 6013019 2024-02-20 17:46:18.328 2024-02-20 17:46:18.328 9900 TIP 432619 14774 6013035 2024-02-20 17:47:11.417 2024-02-20 17:47:11.417 1000 FEE 432782 5794 6013036 2024-02-20 17:47:11.417 2024-02-20 17:47:11.417 9000 TIP 432782 16912 6013047 2024-02-20 17:47:16.814 2024-02-20 17:47:16.814 100 FEE 432784 21605 6013048 2024-02-20 17:47:16.814 2024-02-20 17:47:16.814 900 TIP 432784 5791 6013049 2024-02-20 17:47:17.364 2024-02-20 17:47:17.364 100 FEE 432784 19375 6013050 2024-02-20 17:47:17.364 2024-02-20 17:47:17.364 900 TIP 432784 20642 6013063 2024-02-20 17:49:10.878 2024-02-20 17:49:10.878 2100 FEE 432661 18076 6013064 2024-02-20 17:49:10.878 2024-02-20 17:49:10.878 18900 TIP 432661 721 6013082 2024-02-20 17:51:49.111 2024-02-20 17:51:49.111 1000 FEE 432802 15115 6013092 2024-02-20 17:53:52.125 2024-02-20 17:53:52.125 2500 FEE 432800 16124 6013093 2024-02-20 17:53:52.125 2024-02-20 17:53:52.125 22500 TIP 432800 21044 6013104 2024-02-20 17:54:23.417 2024-02-20 17:54:23.417 5000 FEE 432576 16679 6013105 2024-02-20 17:54:23.417 2024-02-20 17:54:23.417 45000 TIP 432576 1490 6013106 2024-02-20 17:54:49.26 2024-02-20 17:54:49.26 1000 FEE 432807 2543 6013112 2024-02-20 17:55:02.721 2024-02-20 17:55:02.721 10000 FEE 432579 18403 6013113 2024-02-20 17:55:02.721 2024-02-20 17:55:02.721 90000 TIP 432579 8648 6013128 2024-02-20 17:55:31.622 2024-02-20 17:55:31.622 5000 FEE 432150 17147 6013129 2024-02-20 17:55:31.622 2024-02-20 17:55:31.622 45000 TIP 432150 20280 6013142 2024-02-20 17:56:32.401 2024-02-20 17:56:32.401 5000 FEE 432759 15617 6013143 2024-02-20 17:56:32.401 2024-02-20 17:56:32.401 45000 TIP 432759 8472 6013151 2024-02-20 17:57:23.085 2024-02-20 17:57:23.085 2100 FEE 432759 19996 6013152 2024-02-20 17:57:23.085 2024-02-20 17:57:23.085 18900 TIP 432759 14122 6013164 2024-02-20 17:58:07.889 2024-02-20 17:58:07.889 5000 FEE 432579 6555 6013165 2024-02-20 17:58:07.889 2024-02-20 17:58:07.889 45000 TIP 432579 20710 6013211 2024-02-20 18:00:45.358 2024-02-20 18:00:45.358 2100 FEE 432811 8173 6013212 2024-02-20 18:00:45.358 2024-02-20 18:00:45.358 18900 TIP 432811 18641 6013217 2024-02-20 18:01:25.069 2024-02-20 18:01:25.069 10000 FEE 432817 9290 6013222 2024-02-20 18:01:59.058 2024-02-20 18:01:59.058 5000 FEE 432391 18068 6013223 2024-02-20 18:01:59.058 2024-02-20 18:01:59.058 45000 TIP 432391 12946 6013234 2024-02-20 18:02:16.36 2024-02-20 18:02:16.36 1000 FEE 432809 19821 6013235 2024-02-20 18:02:16.36 2024-02-20 18:02:16.36 9000 TIP 432809 18008 6013244 2024-02-20 18:02:23.632 2024-02-20 18:02:23.632 1000 FEE 432809 9916 6013245 2024-02-20 18:02:23.632 2024-02-20 18:02:23.632 9000 TIP 432809 17411 6013256 2024-02-20 18:03:24.933 2024-02-20 18:03:24.933 2100 FEE 432654 17838 6013257 2024-02-20 18:03:24.933 2024-02-20 18:03:24.933 18900 TIP 432654 16329 6013268 2024-02-20 18:03:56.693 2024-02-20 18:03:56.693 2100 FEE 432726 674 6013269 2024-02-20 18:03:56.693 2024-02-20 18:03:56.693 18900 TIP 432726 1286 6013309 2024-02-20 18:06:26.658 2024-02-20 18:06:26.658 1000 FEE 432830 9276 6013312 2024-02-20 18:06:36.243 2024-02-20 18:06:36.243 1000 FEE 432828 6148 6013313 2024-02-20 18:06:36.243 2024-02-20 18:06:36.243 9000 TIP 432828 802 6013320 2024-02-20 18:06:40.139 2024-02-20 18:06:40.139 1000 FEE 430725 15728 6013321 2024-02-20 18:06:40.139 2024-02-20 18:06:40.139 9000 TIP 430725 12291 6013334 2024-02-20 18:09:18.813 2024-02-20 18:09:18.813 1000 FEE 432834 20412 6013337 2024-02-20 18:09:57.543 2024-02-20 18:09:57.543 100000 FEE 432835 9427 6013350 2024-02-20 18:13:12.876 2024-02-20 18:13:12.876 40300 FEE 430498 20588 6013351 2024-02-20 18:13:12.876 2024-02-20 18:13:12.876 362700 TIP 430498 20891 6013420 2024-02-20 18:22:47.216 2024-02-20 18:22:47.216 1000 FEE 430629 17011 6013421 2024-02-20 18:22:47.216 2024-02-20 18:22:47.216 9000 TIP 430629 21339 6013426 2024-02-20 18:22:48.083 2024-02-20 18:22:48.083 1000 FEE 430629 634 6013427 2024-02-20 18:22:48.083 2024-02-20 18:22:48.083 9000 TIP 430629 18769 6013428 2024-02-20 18:22:48.262 2024-02-20 18:22:48.262 1000 FEE 430629 21547 6013429 2024-02-20 18:22:48.262 2024-02-20 18:22:48.262 9000 TIP 430629 631 6013439 2024-02-20 18:22:49.133 2024-02-20 18:22:49.133 1000 FEE 430629 10096 6013440 2024-02-20 18:22:49.133 2024-02-20 18:22:49.133 9000 TIP 430629 18517 6013449 2024-02-20 18:22:50.115 2024-02-20 18:22:50.115 1000 FEE 430629 18829 6013450 2024-02-20 18:22:50.115 2024-02-20 18:22:50.115 9000 TIP 430629 2077 6013473 2024-02-20 18:23:32.328 2024-02-20 18:23:32.328 10000 FEE 432430 21058 6013474 2024-02-20 18:23:32.328 2024-02-20 18:23:32.328 90000 TIP 432430 15728 6013481 2024-02-20 18:25:06.068 2024-02-20 18:25:06.068 10000 FEE 432848 6136 6013535 2024-02-20 18:33:30.238 2024-02-20 18:33:30.238 1000 FEE 432866 20310 6013568 2024-02-20 18:38:58.265 2024-02-20 18:38:58.265 100000 DONT_LIKE_THIS 432871 21048 6013576 2024-02-20 18:41:11.881 2024-02-20 18:41:11.881 1000 FEE 432876 14074 6013598 2024-02-20 18:41:57.076 2024-02-20 18:41:57.076 100 FEE 432811 11018 6013599 2024-02-20 18:41:57.076 2024-02-20 18:41:57.076 900 TIP 432811 4459 6013600 2024-02-20 18:41:57.704 2024-02-20 18:41:57.704 100 FEE 432811 4989 6013601 2024-02-20 18:41:57.704 2024-02-20 18:41:57.704 900 TIP 432811 1208 6013606 2024-02-20 18:43:06.634 2024-02-20 18:43:06.634 4600 FEE 432736 1534 6013607 2024-02-20 18:43:06.634 2024-02-20 18:43:06.634 41400 TIP 432736 9026 6013668 2024-02-20 18:48:45.581 2024-02-20 18:48:45.581 4000 FEE 432877 6687 6013669 2024-02-20 18:48:45.581 2024-02-20 18:48:45.581 36000 TIP 432877 19043 6013714 2024-02-20 18:54:16.491 2024-02-20 18:54:16.491 8300 FEE 432873 20563 6013715 2024-02-20 18:54:16.491 2024-02-20 18:54:16.491 74700 TIP 432873 7986 6013725 2024-02-20 18:54:22.427 2024-02-20 18:54:22.427 1000 FEE 432683 1647 6013726 2024-02-20 18:54:22.427 2024-02-20 18:54:22.427 9000 TIP 432683 9 6013731 2024-02-20 18:57:03.074 2024-02-20 18:57:03.074 1000 FEE 432892 6268 6013742 2024-02-20 18:59:01.232 2024-02-20 18:59:01.232 2300 FEE 432889 18817 6013743 2024-02-20 18:59:01.232 2024-02-20 18:59:01.232 20700 TIP 432889 11821 6013744 2024-02-20 18:59:01.577 2024-02-20 18:59:01.577 2300 FEE 432889 20963 6013745 2024-02-20 18:59:01.577 2024-02-20 18:59:01.577 20700 TIP 432889 7668 6013762 2024-02-20 19:01:03.103 2024-02-20 19:01:03.103 6900 FEE 432890 18829 6013763 2024-02-20 19:01:03.103 2024-02-20 19:01:03.103 62100 TIP 432890 18727 6013764 2024-02-20 19:01:03.172 2024-02-20 19:01:03.172 2300 FEE 432890 21523 6013765 2024-02-20 19:01:03.172 2024-02-20 19:01:03.172 20700 TIP 432890 1890 6013777 2024-02-20 19:02:19.576 2024-02-20 19:02:19.576 1000 FEE 432900 2098 6013788 2024-02-20 19:02:24.361 2024-02-20 19:02:24.361 2300 FEE 432899 10719 6013789 2024-02-20 19:02:24.361 2024-02-20 19:02:24.361 20700 TIP 432899 21342 6013803 2024-02-20 19:03:14.537 2024-02-20 19:03:14.537 1000 FEE 432905 7869 6013830 2024-02-20 19:06:04.255 2024-02-20 19:06:04.255 3300 FEE 432664 15521 6013831 2024-02-20 19:06:04.255 2024-02-20 19:06:04.255 29700 TIP 432664 21481 6013068 2024-02-20 17:50:00.963 2024-02-20 17:50:00.963 27000 TIP 432788 5703 6013079 2024-02-20 17:51:36.823 2024-02-20 17:51:36.823 2100 FEE 432775 12951 6013080 2024-02-20 17:51:36.823 2024-02-20 17:51:36.823 18900 TIP 432775 20969 6013086 2024-02-20 17:53:22.817 2024-02-20 17:53:22.817 1000 FEE 432804 1465 6013100 2024-02-20 17:54:11.521 2024-02-20 17:54:11.521 5000 FEE 432563 16355 6013101 2024-02-20 17:54:11.521 2024-02-20 17:54:11.521 45000 TIP 432563 18280 6013122 2024-02-20 17:55:29.834 2024-02-20 17:55:29.834 5000 FEE 432150 1488 6013123 2024-02-20 17:55:29.834 2024-02-20 17:55:29.834 45000 TIP 432150 4388 6013179 2024-02-20 17:59:00.91 2024-02-20 17:59:00.91 5000 FEE 432339 19839 6013180 2024-02-20 17:59:00.91 2024-02-20 17:59:00.91 45000 TIP 432339 14247 6013208 2024-02-20 18:00:15.326 2024-02-20 18:00:15.326 1000 FEE 432736 17817 6013209 2024-02-20 18:00:15.326 2024-02-20 18:00:15.326 9000 TIP 432736 5171 6013210 2024-02-20 18:00:16.239 2024-02-20 18:00:16.239 1000 FEE 432815 21022 6013226 2024-02-20 18:02:08.623 2024-02-20 18:02:08.623 5000 FEE 432382 16830 6013227 2024-02-20 18:02:08.623 2024-02-20 18:02:08.623 45000 TIP 432382 18680 6013232 2024-02-20 18:02:15.995 2024-02-20 18:02:15.995 1000 FEE 432809 19909 6013233 2024-02-20 18:02:15.995 2024-02-20 18:02:15.995 9000 TIP 432809 910 6013238 2024-02-20 18:02:17.006 2024-02-20 18:02:17.006 1000 FEE 432809 13217 6013239 2024-02-20 18:02:17.006 2024-02-20 18:02:17.006 9000 TIP 432809 18956 6013246 2024-02-20 18:02:23.979 2024-02-20 18:02:23.979 1000 FEE 432809 19987 6013247 2024-02-20 18:02:23.979 2024-02-20 18:02:23.979 9000 TIP 432809 3440 6013266 2024-02-20 18:03:51.372 2024-02-20 18:03:51.372 1000 FEE 432824 4973 6013275 2024-02-20 18:04:32.312 2024-02-20 18:04:32.312 100 FEE 432752 18351 6013276 2024-02-20 18:04:32.312 2024-02-20 18:04:32.312 900 TIP 432752 17707 6013279 2024-02-20 18:04:36.504 2024-02-20 18:04:36.504 100 FEE 432722 10359 6013280 2024-02-20 18:04:36.504 2024-02-20 18:04:36.504 900 TIP 432722 21620 6013301 2024-02-20 18:05:43.028 2024-02-20 18:05:43.028 9000 FEE 432822 13198 6013302 2024-02-20 18:05:43.028 2024-02-20 18:05:43.028 81000 TIP 432822 9476 6013323 2024-02-20 18:06:49.979 2024-02-20 18:06:49.979 0 FEE 432815 9353 6013324 2024-02-20 18:06:58.601 2024-02-20 18:06:58.601 100000 FEE 432831 9985 6013327 2024-02-20 18:07:21.463 2024-02-20 18:07:21.463 100000 FEE 432832 8954 6013328 2024-02-20 18:07:43.643 2024-02-20 18:07:43.643 1000 FEE 432833 21058 6013339 2024-02-20 18:10:33.912 2024-02-20 18:10:33.912 1000 FEE 432836 20715 6013379 2024-02-20 18:18:04.29 2024-02-20 18:18:04.29 1000 FEE 432811 18119 6013380 2024-02-20 18:18:04.29 2024-02-20 18:18:04.29 9000 TIP 432811 909 6013388 2024-02-20 18:19:04.951 2024-02-20 18:19:04.951 100000 FEE 432843 1124 6013441 2024-02-20 18:22:49.287 2024-02-20 18:22:49.287 1000 FEE 430629 2577 6013442 2024-02-20 18:22:49.287 2024-02-20 18:22:49.287 9000 TIP 430629 5377 6013443 2024-02-20 18:22:49.44 2024-02-20 18:22:49.44 1000 FEE 430629 16670 6013444 2024-02-20 18:22:49.44 2024-02-20 18:22:49.44 9000 TIP 430629 16653 6013447 2024-02-20 18:22:49.919 2024-02-20 18:22:49.919 1000 FEE 430629 4084 6013448 2024-02-20 18:22:49.919 2024-02-20 18:22:49.919 9000 TIP 430629 15617 6013464 2024-02-20 18:23:20.147 2024-02-20 18:23:20.147 500 FEE 432563 18784 6013465 2024-02-20 18:23:20.147 2024-02-20 18:23:20.147 4500 TIP 432563 2347 6013470 2024-02-20 18:23:27.77 2024-02-20 18:23:27.77 500 FEE 432661 2576 6013471 2024-02-20 18:23:27.77 2024-02-20 18:23:27.77 4500 TIP 432661 20680 6013495 2024-02-20 18:27:32.78 2024-02-20 18:27:32.78 1000 FEE 432853 19812 6013512 2024-02-20 18:29:38.546 2024-02-20 18:29:38.546 10000 DONT_LIKE_THIS 432856 8945 6013526 2024-02-20 18:31:39.051 2024-02-20 18:31:39.051 1000 FEE 432861 642 6013539 2024-02-20 18:33:38.554 2024-02-20 18:33:38.554 1000 FEE 432868 9167 6013551 2024-02-20 18:35:45.511 2024-02-20 18:35:45.511 1000 FEE 432872 9427 6013555 2024-02-20 18:37:13.433 2024-02-20 18:37:13.433 500 FEE 432517 15484 6013556 2024-02-20 18:37:13.433 2024-02-20 18:37:13.433 4500 TIP 432517 19465 6013583 2024-02-20 18:41:42.712 2024-02-20 18:41:42.712 2300 FEE 432873 21037 6013584 2024-02-20 18:41:42.712 2024-02-20 18:41:42.712 20700 TIP 432873 19770 6013618 2024-02-20 18:43:08.23 2024-02-20 18:43:08.23 2300 FEE 432736 15367 6013619 2024-02-20 18:43:08.23 2024-02-20 18:43:08.23 20700 TIP 432736 15697 6013624 2024-02-20 18:43:09.367 2024-02-20 18:43:09.367 2300 FEE 432736 18402 6013625 2024-02-20 18:43:09.367 2024-02-20 18:43:09.367 20700 TIP 432736 18409 6013635 2024-02-20 18:43:23.715 2024-02-20 18:43:23.715 2100 FEE 432874 3717 6013636 2024-02-20 18:43:23.715 2024-02-20 18:43:23.715 18900 TIP 432874 2528 6013638 2024-02-20 18:43:49.025 2024-02-20 18:43:49.025 10000 FEE 432881 21178 6013648 2024-02-20 18:45:20.132 2024-02-20 18:45:20.132 0 FEE 432875 10530 6013659 2024-02-20 18:48:10.234 2024-02-20 18:48:10.234 0 FEE 432885 21562 6013679 2024-02-20 18:51:32.599 2024-02-20 18:51:32.599 200 FEE 432884 18658 6013680 2024-02-20 18:51:32.599 2024-02-20 18:51:32.599 1800 TIP 432884 2519 6013682 2024-02-20 18:52:58.679 2024-02-20 18:52:58.679 8300 FEE 432674 17727 6013683 2024-02-20 18:52:58.679 2024-02-20 18:52:58.679 74700 TIP 432674 20680 6013686 2024-02-20 18:52:58.945 2024-02-20 18:52:58.945 8300 FEE 432674 17166 6013687 2024-02-20 18:52:58.945 2024-02-20 18:52:58.945 74700 TIP 432674 5175 6013690 2024-02-20 18:52:59.26 2024-02-20 18:52:59.26 8300 FEE 432674 9985 6013691 2024-02-20 18:52:59.26 2024-02-20 18:52:59.26 74700 TIP 432674 20306 6013708 2024-02-20 18:54:15.071 2024-02-20 18:54:15.071 8300 FEE 432873 9552 6013709 2024-02-20 18:54:15.071 2024-02-20 18:54:15.071 74700 TIP 432873 1549 6013712 2024-02-20 18:54:15.489 2024-02-20 18:54:15.489 16600 FEE 432873 16289 6013713 2024-02-20 18:54:15.489 2024-02-20 18:54:15.489 149400 TIP 432873 2293 6013753 2024-02-20 19:00:02.327 2024-02-20 19:00:02.327 5000 FEE 432884 1114 6013754 2024-02-20 19:00:02.327 2024-02-20 19:00:02.327 45000 TIP 432884 1114 6013786 2024-02-20 19:02:24.068 2024-02-20 19:02:24.068 2300 FEE 432899 21357 6013787 2024-02-20 19:02:24.068 2024-02-20 19:02:24.068 20700 TIP 432899 2734 6013792 2024-02-20 19:02:40.384 2024-02-20 19:02:40.384 1000 FEE 432901 18231 6013795 2024-02-20 19:02:49.623 2024-02-20 19:02:49.623 100 FEE 432693 18819 6013796 2024-02-20 19:02:49.623 2024-02-20 19:02:49.623 900 TIP 432693 16956 6013799 2024-02-20 19:03:02.384 2024-02-20 19:03:02.384 1000 FEE 432904 699 6013813 2024-02-20 19:04:55.329 2024-02-20 19:04:55.329 1000 FEE 432905 16562 6013814 2024-02-20 19:04:55.329 2024-02-20 19:04:55.329 9000 TIP 432905 8376 6013840 2024-02-20 19:08:21.02 2024-02-20 19:08:21.02 1000 FEE 432896 16126 6013841 2024-02-20 19:08:21.02 2024-02-20 19:08:21.02 9000 TIP 432896 2703 6013851 2024-02-20 19:08:48.819 2024-02-20 19:08:48.819 1000 FEE 432889 14950 6013852 2024-02-20 19:08:48.819 2024-02-20 19:08:48.819 9000 TIP 432889 6777 6013856 2024-02-20 19:09:49.816 2024-02-20 19:09:49.816 5000 FEE 432811 18402 6013857 2024-02-20 19:09:49.816 2024-02-20 19:09:49.816 45000 TIP 432811 18235 6013878 2024-02-20 19:15:03.429 2024-02-20 19:15:03.429 1000 FEE 432913 1428 6013879 2024-02-20 19:15:03.429 2024-02-20 19:15:03.429 9000 TIP 432913 16532 6013883 2024-02-20 19:15:40.296 2024-02-20 19:15:40.296 1100 FEE 432470 9982 6013884 2024-02-20 19:15:40.296 2024-02-20 19:15:40.296 9900 TIP 432470 4415 6013906 2024-02-20 19:19:04.065 2024-02-20 19:19:04.065 1000 FEE 432873 635 6013907 2024-02-20 19:19:04.065 2024-02-20 19:19:04.065 9000 TIP 432873 11999 6013923 2024-02-20 19:21:26.268 2024-02-20 19:21:26.268 2100 FEE 432913 20073 6013924 2024-02-20 19:21:26.268 2024-02-20 19:21:26.268 18900 TIP 432913 17227 6013958 2024-02-20 19:25:53.496 2024-02-20 19:25:53.496 1100 FEE 432910 18994 6013959 2024-02-20 19:25:53.496 2024-02-20 19:25:53.496 9900 TIP 432910 2609 6013967 2024-02-20 19:27:00.84 2024-02-20 19:27:00.84 8300 FEE 432736 16667 6013968 2024-02-20 19:27:00.84 2024-02-20 19:27:00.84 74700 TIP 432736 21247 6013973 2024-02-20 19:27:01.191 2024-02-20 19:27:01.191 8300 FEE 432736 20788 6013974 2024-02-20 19:27:01.191 2024-02-20 19:27:01.191 74700 TIP 432736 15544 6013987 2024-02-20 19:27:46.898 2024-02-20 19:27:46.898 2300 FEE 432921 14990 6013168 2024-02-20 17:58:45.258 2024-02-20 17:58:45.258 2100 FEE 432618 16680 6013169 2024-02-20 17:58:45.258 2024-02-20 17:58:45.258 18900 TIP 432618 20243 6013170 2024-02-20 17:58:53.507 2024-02-20 17:58:53.507 1000 FEE 432790 20377 6013171 2024-02-20 17:58:53.507 2024-02-20 17:58:53.507 9000 TIP 432790 15326 6013183 2024-02-20 17:59:02.756 2024-02-20 17:59:02.756 5000 FEE 432339 2514 6013184 2024-02-20 17:59:02.756 2024-02-20 17:59:02.756 45000 TIP 432339 9200 6013199 2024-02-20 17:59:30.201 2024-02-20 17:59:30.201 1000 FEE 432802 680 6013200 2024-02-20 17:59:30.201 2024-02-20 17:59:30.201 9000 TIP 432802 10530 6013215 2024-02-20 18:01:04.247 2024-02-20 18:01:04.247 1000 STREAM 141924 17095 6013218 2024-02-20 18:01:41.194 2024-02-20 18:01:41.194 5000 FEE 432489 1286 6013219 2024-02-20 18:01:41.194 2024-02-20 18:01:41.194 45000 TIP 432489 1162 6013225 2024-02-20 18:02:05.247 2024-02-20 18:02:05.247 1000 FEE 432818 9833 6013236 2024-02-20 18:02:16.8 2024-02-20 18:02:16.8 1000 FEE 432809 986 6013237 2024-02-20 18:02:16.8 2024-02-20 18:02:16.8 9000 TIP 432809 1319 6013248 2024-02-20 18:02:24.573 2024-02-20 18:02:24.573 1000 FEE 432809 2444 6013249 2024-02-20 18:02:24.573 2024-02-20 18:02:24.573 9000 TIP 432809 4984 6013253 2024-02-20 18:02:52.42 2024-02-20 18:02:52.42 10000 FEE 432822 18930 6013258 2024-02-20 18:03:26.287 2024-02-20 18:03:26.287 2100 FEE 432816 14202 6013259 2024-02-20 18:03:26.287 2024-02-20 18:03:26.287 18900 TIP 432816 6058 6013260 2024-02-20 18:03:41.433 2024-02-20 18:03:41.433 2100 FEE 432805 13246 6013261 2024-02-20 18:03:41.433 2024-02-20 18:03:41.433 18900 TIP 432805 2322 6013277 2024-02-20 18:04:33.611 2024-02-20 18:04:33.611 900 FEE 432752 20681 6013278 2024-02-20 18:04:33.611 2024-02-20 18:04:33.611 8100 TIP 432752 859 6013284 2024-02-20 18:05:00.817 2024-02-20 18:05:00.817 100 FEE 432811 16410 6013285 2024-02-20 18:05:00.817 2024-02-20 18:05:00.817 900 TIP 432811 20799 6013322 2024-02-20 18:06:43.148 2024-02-20 18:06:43.148 0 FEE 432825 19961 6013356 2024-02-20 18:14:25.089 2024-02-20 18:14:25.089 1000 FEE 432839 802 6013357 2024-02-20 18:14:39.716 2024-02-20 18:14:39.716 0 FEE 432838 19289 6013375 2024-02-20 18:17:50.319 2024-02-20 18:17:50.319 1000 FEE 432674 19943 6013376 2024-02-20 18:17:50.319 2024-02-20 18:17:50.319 9000 TIP 432674 21036 6013384 2024-02-20 18:18:53.765 2024-02-20 18:18:53.765 1100 FEE 432670 21159 6013385 2024-02-20 18:18:53.765 2024-02-20 18:18:53.765 9900 TIP 432670 960 6013392 2024-02-20 18:20:11.545 2024-02-20 18:20:11.545 1000 FEE 432846 18625 6013410 2024-02-20 18:22:46.098 2024-02-20 18:22:46.098 1000 FEE 430629 19987 6013411 2024-02-20 18:22:46.098 2024-02-20 18:22:46.098 9000 TIP 430629 2361 6013412 2024-02-20 18:22:46.275 2024-02-20 18:22:46.275 1000 FEE 430629 17944 6013413 2024-02-20 18:22:46.275 2024-02-20 18:22:46.275 9000 TIP 430629 1802 6013434 2024-02-20 18:22:48.965 2024-02-20 18:22:48.965 1000 FEE 430629 4043 6013435 2024-02-20 18:22:48.965 2024-02-20 18:22:48.965 9000 TIP 430629 960 6013436 2024-02-20 18:22:49.106 2024-02-20 18:22:49.106 0 FEE 432841 5495 6013457 2024-02-20 18:22:58.554 2024-02-20 18:22:58.554 1000 FEE 430629 2431 6013458 2024-02-20 18:22:58.554 2024-02-20 18:22:58.554 9000 TIP 430629 3396 6013462 2024-02-20 18:23:17.676 2024-02-20 18:23:17.676 500 FEE 432563 13398 6013463 2024-02-20 18:23:17.676 2024-02-20 18:23:17.676 4500 TIP 432563 1468 6013491 2024-02-20 18:26:44.288 2024-02-20 18:26:44.288 1000 FEE 432850 697 6013507 2024-02-20 18:28:52.186 2024-02-20 18:28:52.186 1000 FEE 432808 671 6013508 2024-02-20 18:28:52.186 2024-02-20 18:28:52.186 9000 TIP 432808 7654 6013525 2024-02-20 18:31:29.377 2024-02-20 18:31:29.377 0 FEE 432859 19030 6013529 2024-02-20 18:32:18.155 2024-02-20 18:32:18.155 1000 FEE 432863 17927 6013532 2024-02-20 18:32:37.853 2024-02-20 18:32:37.853 1000 FEE 432864 20179 6013547 2024-02-20 18:35:00.433 2024-02-20 18:35:00.433 1000 FEE 432871 1180 6013549 2024-02-20 18:35:26.117 2024-02-20 18:35:26.117 1000 FEE 432848 20778 6013550 2024-02-20 18:35:26.117 2024-02-20 18:35:26.117 9000 TIP 432848 11897 6013572 2024-02-20 18:39:46.291 2024-02-20 18:39:46.291 100000 DONT_LIKE_THIS 429870 18923 6013579 2024-02-20 18:41:41.481 2024-02-20 18:41:41.481 2300 FEE 432873 5775 6013580 2024-02-20 18:41:41.481 2024-02-20 18:41:41.481 20700 TIP 432873 9275 6013596 2024-02-20 18:41:56.717 2024-02-20 18:41:56.717 100 FEE 432811 16706 6013597 2024-02-20 18:41:56.717 2024-02-20 18:41:56.717 900 TIP 432811 11450 6013608 2024-02-20 18:43:07.329 2024-02-20 18:43:07.329 2300 FEE 432736 17710 6013609 2024-02-20 18:43:07.329 2024-02-20 18:43:07.329 20700 TIP 432736 16193 6013641 2024-02-20 18:43:59.756 2024-02-20 18:43:59.756 0 FEE 432875 2640 6013675 2024-02-20 18:50:29.642 2024-02-20 18:50:29.642 1000 FEE 432887 7119 6013688 2024-02-20 18:52:59.176 2024-02-20 18:52:59.176 8300 FEE 432674 20500 6013689 2024-02-20 18:52:59.176 2024-02-20 18:52:59.176 74700 TIP 432674 999 6013700 2024-02-20 18:54:13.875 2024-02-20 18:54:13.875 8300 FEE 432873 1286 6013701 2024-02-20 18:54:13.875 2024-02-20 18:54:13.875 74700 TIP 432873 18380 6013706 2024-02-20 18:54:14.875 2024-02-20 18:54:14.875 8300 FEE 432873 1620 6013707 2024-02-20 18:54:14.875 2024-02-20 18:54:14.875 74700 TIP 432873 738 6013716 2024-02-20 18:54:16.775 2024-02-20 18:54:16.775 8300 FEE 432873 20614 6013717 2024-02-20 18:54:16.775 2024-02-20 18:54:16.775 74700 TIP 432873 12819 6013735 2024-02-20 18:57:22.898 2024-02-20 18:57:22.898 1000 FEE 432893 6741 6013740 2024-02-20 18:59:00.138 2024-02-20 18:59:00.138 2300 FEE 432889 16442 6013741 2024-02-20 18:59:00.138 2024-02-20 18:59:00.138 20700 TIP 432889 16289 6013747 2024-02-20 18:59:10.493 2024-02-20 18:59:10.493 1000 FEE 432895 14080 6013748 2024-02-20 18:59:12.341 2024-02-20 18:59:12.341 1600 FEE 432847 2061 6013749 2024-02-20 18:59:12.341 2024-02-20 18:59:12.341 14400 TIP 432847 9969 6013756 2024-02-20 19:00:38.154 2024-02-20 19:00:38.154 1000 FEE 432896 7916 6013784 2024-02-20 19:02:23.412 2024-02-20 19:02:23.412 2300 FEE 432899 17321 6013785 2024-02-20 19:02:23.412 2024-02-20 19:02:23.412 20700 TIP 432899 11716 6013790 2024-02-20 19:02:38.645 2024-02-20 19:02:38.645 100 FEE 432661 9166 6013791 2024-02-20 19:02:38.645 2024-02-20 19:02:38.645 900 TIP 432661 21320 6013793 2024-02-20 19:02:46.626 2024-02-20 19:02:46.626 1000 FEE 432902 674 6013806 2024-02-20 19:03:25.277 2024-02-20 19:03:25.277 500 FEE 432525 19469 6013807 2024-02-20 19:03:25.277 2024-02-20 19:03:25.277 4500 TIP 432525 19309 6013844 2024-02-20 19:08:29 2024-02-20 19:08:29 3300 FEE 432563 2061 6013845 2024-02-20 19:08:29 2024-02-20 19:08:29 29700 TIP 432563 20683 6013846 2024-02-20 19:08:33.717 2024-02-20 19:08:33.717 2100 FEE 432894 2347 6013847 2024-02-20 19:08:33.717 2024-02-20 19:08:33.717 18900 TIP 432894 20180 6013869 2024-02-20 19:13:38.939 2024-02-20 19:13:38.939 120000 FEE 432913 1316 6013908 2024-02-20 19:19:04.267 2024-02-20 19:19:04.267 1000 FEE 432873 19105 6013909 2024-02-20 19:19:04.267 2024-02-20 19:19:04.267 9000 TIP 432873 18909 6013927 2024-02-20 19:23:51.813 2024-02-20 19:23:51.813 100 FEE 432311 12921 6013928 2024-02-20 19:23:51.813 2024-02-20 19:23:51.813 900 TIP 432311 2256 6013960 2024-02-20 19:25:53.67 2024-02-20 19:25:53.67 1100 FEE 432910 15536 6013961 2024-02-20 19:25:53.67 2024-02-20 19:25:53.67 9900 TIP 432910 21413 6013971 2024-02-20 19:27:01.16 2024-02-20 19:27:01.16 8300 FEE 432736 19583 6013972 2024-02-20 19:27:01.16 2024-02-20 19:27:01.16 74700 TIP 432736 13378 6013994 2024-02-20 19:28:51.637 2024-02-20 19:28:51.637 100 FEE 432811 15938 6013995 2024-02-20 19:28:51.637 2024-02-20 19:28:51.637 900 TIP 432811 9261 6014001 2024-02-20 19:29:04.205 2024-02-20 19:29:04.205 100 FEE 432889 17552 6014002 2024-02-20 19:29:04.205 2024-02-20 19:29:04.205 900 TIP 432889 20744 6014016 2024-02-20 19:31:21.701 2024-02-20 19:31:21.701 10000 FEE 432925 714 6014083 2024-02-20 19:39:53.631 2024-02-20 19:39:53.631 2100 FEE 432811 21588 6014084 2024-02-20 19:39:53.631 2024-02-20 19:39:53.631 18900 TIP 432811 14774 6014099 2024-02-20 19:43:37.875 2024-02-20 19:43:37.875 900 FEE 432920 14045 6014100 2024-02-20 19:43:37.875 2024-02-20 19:43:37.875 8100 TIP 432920 5520 6014103 2024-02-20 19:43:38.838 2024-02-20 19:43:38.838 0 FEE 432939 20973 6013467 2024-02-20 18:23:20.311 2024-02-20 18:23:20.311 4500 TIP 432563 2741 6013482 2024-02-20 18:25:08.842 2024-02-20 18:25:08.842 0 FEE 432841 19583 6013490 2024-02-20 18:26:30.911 2024-02-20 18:26:30.911 10000 FEE 432849 19037 6013509 2024-02-20 18:29:02.148 2024-02-20 18:29:02.148 1000 FEE 432857 5175 6013511 2024-02-20 18:29:33.987 2024-02-20 18:29:33.987 1000 FEE 432858 14267 6013514 2024-02-20 18:30:29.208 2024-02-20 18:30:29.208 1000 FEE 432859 21402 6013515 2024-02-20 18:30:35.702 2024-02-20 18:30:35.702 2100 FEE 432834 1105 6013516 2024-02-20 18:30:35.702 2024-02-20 18:30:35.702 18900 TIP 432834 10530 6013536 2024-02-20 18:33:32.676 2024-02-20 18:33:32.676 5000 FEE 432822 20970 6013537 2024-02-20 18:33:32.676 2024-02-20 18:33:32.676 45000 TIP 432822 6471 6013540 2024-02-20 18:34:00.322 2024-02-20 18:34:00.322 1000 FEE 432869 20840 6013569 2024-02-20 18:39:01.983 2024-02-20 18:39:01.983 100000 DONT_LIKE_THIS 432860 1493 6013571 2024-02-20 18:39:25.644 2024-02-20 18:39:25.644 100000 DONT_LIKE_THIS 432274 10280 6013585 2024-02-20 18:41:42.872 2024-02-20 18:41:42.872 2300 FEE 432873 716 6013586 2024-02-20 18:41:42.872 2024-02-20 18:41:42.872 20700 TIP 432873 18830 6013603 2024-02-20 18:42:16.144 2024-02-20 18:42:16.144 1000 FEE 432878 13878 6013622 2024-02-20 18:43:09.234 2024-02-20 18:43:09.234 2300 FEE 432736 19639 6013623 2024-02-20 18:43:09.234 2024-02-20 18:43:09.234 20700 TIP 432736 21216 6013643 2024-02-20 18:45:00.968 2024-02-20 18:45:00.968 2100 FEE 432831 21412 6013644 2024-02-20 18:45:00.968 2024-02-20 18:45:00.968 18900 TIP 432831 20717 6013646 2024-02-20 18:45:04.056 2024-02-20 18:45:04.056 1100 FEE 432551 739 6013647 2024-02-20 18:45:04.056 2024-02-20 18:45:04.056 9900 TIP 432551 1198 6013649 2024-02-20 18:45:25.228 2024-02-20 18:45:25.228 1000 FEE 432882 19569 6013662 2024-02-20 18:48:16.618 2024-02-20 18:48:16.618 2100 FEE 432811 1298 6013663 2024-02-20 18:48:16.618 2024-02-20 18:48:16.618 18900 TIP 432811 2123 6013694 2024-02-20 18:52:59.547 2024-02-20 18:52:59.547 8300 FEE 432674 16834 6013695 2024-02-20 18:52:59.547 2024-02-20 18:52:59.547 74700 TIP 432674 1105 6013696 2024-02-20 18:52:59.7 2024-02-20 18:52:59.7 8300 FEE 432674 706 6013697 2024-02-20 18:52:59.7 2024-02-20 18:52:59.7 74700 TIP 432674 18873 6013702 2024-02-20 18:54:14.155 2024-02-20 18:54:14.155 8300 FEE 432873 7425 6013703 2024-02-20 18:54:14.155 2024-02-20 18:54:14.155 74700 TIP 432873 17212 6013720 2024-02-20 18:54:17.469 2024-02-20 18:54:17.469 8300 FEE 432873 21398 6013721 2024-02-20 18:54:17.469 2024-02-20 18:54:17.469 74700 TIP 432873 2010 6013752 2024-02-20 18:59:46.152 2024-02-20 18:59:46.152 0 FEE 432889 7827 6013757 2024-02-20 19:00:46.727 2024-02-20 19:00:46.727 100000 FEE 432897 20180 6013766 2024-02-20 19:01:03.623 2024-02-20 19:01:03.623 2300 FEE 432890 4259 6013767 2024-02-20 19:01:03.623 2024-02-20 19:01:03.623 20700 TIP 432890 18051 6013769 2024-02-20 19:01:26.655 2024-02-20 19:01:26.655 1000 FEE 432898 11648 6013778 2024-02-20 19:02:22.896 2024-02-20 19:02:22.896 2300 FEE 432899 18225 6013779 2024-02-20 19:02:22.896 2024-02-20 19:02:22.896 20700 TIP 432899 21155 6013797 2024-02-20 19:03:01.339 2024-02-20 19:03:01.339 100 FEE 432772 21541 6013798 2024-02-20 19:03:01.339 2024-02-20 19:03:01.339 900 TIP 432772 18452 6013825 2024-02-20 19:05:59.341 2024-02-20 19:05:59.341 3300 FEE 432873 21416 6013826 2024-02-20 19:05:59.341 2024-02-20 19:05:59.341 29700 TIP 432873 20970 6013827 2024-02-20 19:06:01.183 2024-02-20 19:06:01.183 5000 FEE 432873 20251 6013828 2024-02-20 19:06:01.183 2024-02-20 19:06:01.183 45000 TIP 432873 1585 6013848 2024-02-20 19:08:37.083 2024-02-20 19:08:37.083 3300 FEE 432576 20756 6013849 2024-02-20 19:08:37.083 2024-02-20 19:08:37.083 29700 TIP 432576 20613 6013870 2024-02-20 19:13:55.119 2024-02-20 19:13:55.119 4200 FEE 432847 19613 6013871 2024-02-20 19:13:55.119 2024-02-20 19:13:55.119 37800 TIP 432847 5427 6013885 2024-02-20 19:15:57.126 2024-02-20 19:15:57.126 2100 FEE 426595 18454 6013886 2024-02-20 19:15:57.126 2024-02-20 19:15:57.126 18900 TIP 426595 1136 6013892 2024-02-20 19:17:51.489 2024-02-20 19:17:51.489 2100 FEE 432826 13198 6013893 2024-02-20 19:17:51.489 2024-02-20 19:17:51.489 18900 TIP 432826 16355 6013897 2024-02-20 19:19:02.744 2024-02-20 19:19:02.744 1000 FEE 432884 18735 6013898 2024-02-20 19:19:02.744 2024-02-20 19:19:02.744 9000 TIP 432884 2151 6013950 2024-02-20 19:25:41.87 2024-02-20 19:25:41.87 1100 FEE 432661 9816 6013951 2024-02-20 19:25:41.87 2024-02-20 19:25:41.87 9900 TIP 432661 6688 6013956 2024-02-20 19:25:48.23 2024-02-20 19:25:48.23 1100 FEE 432889 664 6013957 2024-02-20 19:25:48.23 2024-02-20 19:25:48.23 9900 TIP 432889 18402 6013985 2024-02-20 19:27:46.74 2024-02-20 19:27:46.74 2300 FEE 432921 14905 6013986 2024-02-20 19:27:46.74 2024-02-20 19:27:46.74 20700 TIP 432921 2309 6013998 2024-02-20 19:28:58.379 2024-02-20 19:28:58.379 100 FEE 432619 11527 6013999 2024-02-20 19:28:58.379 2024-02-20 19:28:58.379 900 TIP 432619 9552 6014010 2024-02-20 19:30:06.105 2024-02-20 19:30:06.105 2100 FEE 432895 937 6014011 2024-02-20 19:30:06.105 2024-02-20 19:30:06.105 18900 TIP 432895 13097 6014026 2024-02-20 19:32:08.46 2024-02-20 19:32:08.46 8300 FEE 432899 10283 6014027 2024-02-20 19:32:08.46 2024-02-20 19:32:08.46 74700 TIP 432899 16353 6014048 2024-02-20 19:32:32.069 2024-02-20 19:32:32.069 2100 FEE 432924 4973 6014049 2024-02-20 19:32:32.069 2024-02-20 19:32:32.069 18900 TIP 432924 17800 6014050 2024-02-20 19:32:58.324 2024-02-20 19:32:58.324 1000 FEE 432928 19378 6014064 2024-02-20 19:38:47.131 2024-02-20 19:38:47.131 1000 FEE 432887 18154 6014065 2024-02-20 19:38:47.131 2024-02-20 19:38:47.131 9000 TIP 432887 11288 6014101 2024-02-20 19:43:38.49 2024-02-20 19:43:38.49 9000 FEE 432920 1785 6014102 2024-02-20 19:43:38.49 2024-02-20 19:43:38.49 81000 TIP 432920 21573 6014138 2024-02-20 19:44:28.449 2024-02-20 19:44:28.449 2100 FEE 432938 4624 6014139 2024-02-20 19:44:28.449 2024-02-20 19:44:28.449 18900 TIP 432938 17800 6014140 2024-02-20 19:44:29.579 2024-02-20 19:44:29.579 9000 FEE 432873 20655 6014141 2024-02-20 19:44:29.579 2024-02-20 19:44:29.579 81000 TIP 432873 21458 6014144 2024-02-20 19:44:35.674 2024-02-20 19:44:35.674 9500 FEE 432603 1244 6014145 2024-02-20 19:44:35.674 2024-02-20 19:44:35.674 85500 TIP 432603 7558 6014163 2024-02-20 19:45:14.928 2024-02-20 19:45:14.928 900 FEE 432889 2674 6014164 2024-02-20 19:45:14.928 2024-02-20 19:45:14.928 8100 TIP 432889 20963 6014171 2024-02-20 19:45:34.189 2024-02-20 19:45:34.189 3300 FEE 432677 1428 6014172 2024-02-20 19:45:34.189 2024-02-20 19:45:34.189 29700 TIP 432677 20301 6014194 2024-02-20 19:47:36.481 2024-02-20 19:47:36.481 1000 FEE 432547 14247 6014195 2024-02-20 19:47:36.481 2024-02-20 19:47:36.481 9000 TIP 432547 3979 6014204 2024-02-20 19:47:48.777 2024-02-20 19:47:48.777 900 FEE 432941 5175 6014205 2024-02-20 19:47:48.777 2024-02-20 19:47:48.777 8100 TIP 432941 12220 6014223 2024-02-20 19:48:35.473 2024-02-20 19:48:35.473 2100 FEE 432930 13527 6014224 2024-02-20 19:48:35.473 2024-02-20 19:48:35.473 18900 TIP 432930 2529 6014227 2024-02-20 19:49:10.816 2024-02-20 19:49:10.816 1000 FEE 432920 20109 6014228 2024-02-20 19:49:10.816 2024-02-20 19:49:10.816 9000 TIP 432920 712 6014284 2024-02-20 19:53:53.165 2024-02-20 19:53:53.165 1000 FEE 432950 2961 6014300 2024-02-20 19:54:47.847 2024-02-20 19:54:47.847 100000 FEE 432953 8985 6014310 2024-02-20 19:55:04.135 2024-02-20 19:55:04.135 3300 FEE 432398 652 6014311 2024-02-20 19:55:04.135 2024-02-20 19:55:04.135 29700 TIP 432398 2529 6014318 2024-02-20 19:55:13.213 2024-02-20 19:55:13.213 3300 FEE 432339 11423 6014319 2024-02-20 19:55:13.213 2024-02-20 19:55:13.213 29700 TIP 432339 19005 6014426 2024-02-20 20:11:38.01 2024-02-20 20:11:38.01 700 FEE 432973 20102 6014427 2024-02-20 20:11:38.01 2024-02-20 20:11:38.01 6300 TIP 432973 3400 6014430 2024-02-20 20:11:43.376 2024-02-20 20:11:43.376 300 FEE 432957 16229 6014431 2024-02-20 20:11:43.376 2024-02-20 20:11:43.376 2700 TIP 432957 12277 6014434 2024-02-20 20:11:50.643 2024-02-20 20:11:50.643 1000 FEE 432974 16847 6014440 2024-02-20 20:12:28.947 2024-02-20 20:12:28.947 100 FEE 296431 19905 6014441 2024-02-20 20:12:28.947 2024-02-20 20:12:28.947 900 TIP 296431 1836 6014446 2024-02-20 20:12:57.972 2024-02-20 20:12:57.972 2100 FEE 432899 19652 6013496 2024-02-20 18:27:42.799 2024-02-20 18:27:42.799 1000 FEE 432854 21091 6013502 2024-02-20 18:28:12.244 2024-02-20 18:28:12.244 1000 FEE 432855 15088 6013523 2024-02-20 18:30:55 2024-02-20 18:30:55 1000 FEE 432860 5455 6013558 2024-02-20 18:37:38.189 2024-02-20 18:37:38.189 1000 FEE 431223 703 6013559 2024-02-20 18:37:38.189 2024-02-20 18:37:38.189 9000 TIP 431223 2460 6013581 2024-02-20 18:41:42.571 2024-02-20 18:41:42.571 2300 FEE 432873 9290 6013582 2024-02-20 18:41:42.571 2024-02-20 18:41:42.571 20700 TIP 432873 14213 6013587 2024-02-20 18:41:43.483 2024-02-20 18:41:43.483 2300 FEE 432873 20636 6013588 2024-02-20 18:41:43.483 2024-02-20 18:41:43.483 20700 TIP 432873 16679 6013589 2024-02-20 18:41:49.779 2024-02-20 18:41:49.779 1000 FEE 432877 2780 6013590 2024-02-20 18:41:56.143 2024-02-20 18:41:56.143 1000 FEE 432848 5865 6013591 2024-02-20 18:41:56.143 2024-02-20 18:41:56.143 9000 TIP 432848 1564 6013592 2024-02-20 18:41:56.169 2024-02-20 18:41:56.169 100 FEE 432811 9171 6013593 2024-02-20 18:41:56.169 2024-02-20 18:41:56.169 900 TIP 432811 20756 6013626 2024-02-20 18:43:09.523 2024-02-20 18:43:09.523 2300 FEE 432736 831 6013627 2024-02-20 18:43:09.523 2024-02-20 18:43:09.523 20700 TIP 432736 4027 6013628 2024-02-20 18:43:09.592 2024-02-20 18:43:09.592 2300 FEE 432736 4043 6013629 2024-02-20 18:43:09.592 2024-02-20 18:43:09.592 20700 TIP 432736 18460 6013656 2024-02-20 18:47:26.658 2024-02-20 18:47:26.658 2100 FEE 432736 21379 6013657 2024-02-20 18:47:26.658 2024-02-20 18:47:26.658 18900 TIP 432736 17209 6013664 2024-02-20 18:48:32.848 2024-02-20 18:48:32.848 4000 FEE 432853 13517 6013665 2024-02-20 18:48:32.848 2024-02-20 18:48:32.848 36000 TIP 432853 18680 6013671 2024-02-20 18:49:20.817 2024-02-20 18:49:20.817 1000 FEE 432781 21254 6013672 2024-02-20 18:49:20.817 2024-02-20 18:49:20.817 9000 TIP 432781 19500 6013722 2024-02-20 18:54:17.496 2024-02-20 18:54:17.496 10000 FEE 432889 15386 6013727 2024-02-20 18:54:38.166 2024-02-20 18:54:38.166 10000 FEE 432890 12277 6013730 2024-02-20 18:56:27.013 2024-02-20 18:56:27.013 1000 FEE 432891 15762 6013733 2024-02-20 18:57:06.108 2024-02-20 18:57:06.108 2100 FEE 432772 20706 6013734 2024-02-20 18:57:06.108 2024-02-20 18:57:06.108 18900 TIP 432772 21352 6013739 2024-02-20 18:58:38.73 2024-02-20 18:58:38.73 1000 FEE 432894 828 6013770 2024-02-20 19:01:34.709 2024-02-20 19:01:34.709 1000 FEE 432873 17696 6013771 2024-02-20 19:01:34.709 2024-02-20 19:01:34.709 9000 TIP 432873 21281 6013775 2024-02-20 19:01:55.003 2024-02-20 19:01:55.003 100000 DONT_LIKE_THIS 432884 7510 6013780 2024-02-20 19:02:23.076 2024-02-20 19:02:23.076 2300 FEE 432899 16724 6013781 2024-02-20 19:02:23.076 2024-02-20 19:02:23.076 20700 TIP 432899 1717 6013810 2024-02-20 19:04:02.847 2024-02-20 19:04:02.847 1000 FEE 432844 15147 6013811 2024-02-20 19:04:02.847 2024-02-20 19:04:02.847 9000 TIP 432844 16653 6013818 2024-02-20 19:05:05.23 2024-02-20 19:05:05.23 1000 FEE 432901 1611 6013819 2024-02-20 19:05:05.23 2024-02-20 19:05:05.23 9000 TIP 432901 8059 6013821 2024-02-20 19:05:28.173 2024-02-20 19:05:28.173 1100 FEE 432897 3347 6013822 2024-02-20 19:05:28.173 2024-02-20 19:05:28.173 9900 TIP 432897 19813 6013839 2024-02-20 19:08:07.204 2024-02-20 19:08:07.204 1000 FEE 432910 11314 6013858 2024-02-20 19:09:53.046 2024-02-20 19:09:53.046 1000 FEE 432912 19488 6013864 2024-02-20 19:12:09.121 2024-02-20 19:12:09.121 1100 FEE 432785 7986 6013865 2024-02-20 19:12:09.121 2024-02-20 19:12:09.121 9900 TIP 432785 12976 6013912 2024-02-20 19:19:04.718 2024-02-20 19:19:04.718 1000 FEE 432873 17707 6013913 2024-02-20 19:19:04.718 2024-02-20 19:19:04.718 9000 TIP 432873 20185 6013916 2024-02-20 19:19:09.158 2024-02-20 19:19:09.158 21000 FEE 432919 1051 6013939 2024-02-20 19:23:57.727 2024-02-20 19:23:57.727 100 FEE 432311 6361 6013940 2024-02-20 19:23:57.727 2024-02-20 19:23:57.727 900 TIP 432311 18615 6013943 2024-02-20 19:23:58.312 2024-02-20 19:23:58.312 100 FEE 432311 20577 6013944 2024-02-20 19:23:58.312 2024-02-20 19:23:58.312 900 TIP 432311 1298 6013948 2024-02-20 19:25:41.547 2024-02-20 19:25:41.547 1100 FEE 432661 20157 6013949 2024-02-20 19:25:41.547 2024-02-20 19:25:41.547 9900 TIP 432661 844 6013963 2024-02-20 19:26:42.279 2024-02-20 19:26:42.279 10000 FEE 432736 20291 6013964 2024-02-20 19:26:42.279 2024-02-20 19:26:42.279 90000 TIP 432736 12049 6013969 2024-02-20 19:27:00.972 2024-02-20 19:27:00.972 8300 FEE 432736 18556 6013970 2024-02-20 19:27:00.972 2024-02-20 19:27:00.972 74700 TIP 432736 21620 6013975 2024-02-20 19:27:01.305 2024-02-20 19:27:01.305 8300 FEE 432736 1007 6013976 2024-02-20 19:27:01.305 2024-02-20 19:27:01.305 74700 TIP 432736 660 6014017 2024-02-20 19:31:28.496 2024-02-20 19:31:28.496 1000 FEE 432926 5701 6014022 2024-02-20 19:32:07.967 2024-02-20 19:32:07.967 8300 FEE 432899 766 6014023 2024-02-20 19:32:07.967 2024-02-20 19:32:07.967 74700 TIP 432899 10979 6014059 2024-02-20 19:36:56.441 2024-02-20 19:36:56.441 1000 FEE 432931 20299 6014062 2024-02-20 19:38:26.492 2024-02-20 19:38:26.492 1000 FEE 432932 13927 6014073 2024-02-20 19:39:21.44 2024-02-20 19:39:21.44 1000 FEE 432935 18772 6014081 2024-02-20 19:39:33.855 2024-02-20 19:39:33.855 700 FEE 432811 20208 6014082 2024-02-20 19:39:33.855 2024-02-20 19:39:33.855 6300 TIP 432811 20924 6014115 2024-02-20 19:44:01.633 2024-02-20 19:44:01.633 3300 FEE 432822 20381 6014116 2024-02-20 19:44:01.633 2024-02-20 19:44:01.633 29700 TIP 432822 1038 6014124 2024-02-20 19:44:15.701 2024-02-20 19:44:15.701 100 FEE 432890 14941 6014125 2024-02-20 19:44:15.701 2024-02-20 19:44:15.701 900 TIP 432890 20973 6014126 2024-02-20 19:44:15.943 2024-02-20 19:44:15.943 900 FEE 432890 21116 6014127 2024-02-20 19:44:15.943 2024-02-20 19:44:15.943 8100 TIP 432890 14278 6014154 2024-02-20 19:45:00.225 2024-02-20 19:45:00.225 9800 FEE 432730 4345 6014155 2024-02-20 19:45:00.225 2024-02-20 19:45:00.225 88200 TIP 432730 21248 6014159 2024-02-20 19:45:07.874 2024-02-20 19:45:07.874 900 FEE 432884 9331 6014160 2024-02-20 19:45:07.874 2024-02-20 19:45:07.874 8100 TIP 432884 19938 6014169 2024-02-20 19:45:34.006 2024-02-20 19:45:34.006 3300 FEE 432677 21349 6014170 2024-02-20 19:45:34.006 2024-02-20 19:45:34.006 29700 TIP 432677 17201 6014221 2024-02-20 19:48:34.992 2024-02-20 19:48:34.992 2100 FEE 432930 20602 6014222 2024-02-20 19:48:34.992 2024-02-20 19:48:34.992 18900 TIP 432930 21233 6014231 2024-02-20 19:49:11.997 2024-02-20 19:49:11.997 1000 FEE 432920 909 6014232 2024-02-20 19:49:11.997 2024-02-20 19:49:11.997 9000 TIP 432920 21263 6014233 2024-02-20 19:49:12.339 2024-02-20 19:49:12.339 1000 FEE 432920 1003 6014234 2024-02-20 19:49:12.339 2024-02-20 19:49:12.339 9000 TIP 432920 8726 6014235 2024-02-20 19:49:12.605 2024-02-20 19:49:12.605 1000 FEE 432920 11443 6014236 2024-02-20 19:49:12.605 2024-02-20 19:49:12.605 9000 TIP 432920 1044 6014262 2024-02-20 19:50:05.049 2024-02-20 19:50:05.049 0 FEE 275480 1316 6014266 2024-02-20 19:51:19.723 2024-02-20 19:51:19.723 2100 FEE 432934 698 6014267 2024-02-20 19:51:19.723 2024-02-20 19:51:19.723 18900 TIP 432934 649 6014280 2024-02-20 19:53:15.884 2024-02-20 19:53:15.884 100000 FEE 432948 20183 6014283 2024-02-20 19:53:39.05 2024-02-20 19:53:39.05 10000 FEE 432949 20183 6014293 2024-02-20 19:54:19.055 2024-02-20 19:54:19.055 1000 FEE 432952 627 6014298 2024-02-20 19:54:36.646 2024-02-20 19:54:36.646 3300 FEE 432705 17171 6014299 2024-02-20 19:54:36.646 2024-02-20 19:54:36.646 29700 TIP 432705 5757 6014303 2024-02-20 19:55:01.182 2024-02-20 19:55:01.182 3300 FEE 432394 19980 6014304 2024-02-20 19:55:01.182 2024-02-20 19:55:01.182 29700 TIP 432394 15662 6014320 2024-02-20 19:55:13.301 2024-02-20 19:55:13.301 3300 FEE 432339 9171 6014321 2024-02-20 19:55:13.301 2024-02-20 19:55:13.301 29700 TIP 432339 673 6014324 2024-02-20 19:55:49.414 2024-02-20 19:55:49.414 300 FEE 432931 10096 6014325 2024-02-20 19:55:49.414 2024-02-20 19:55:49.414 2700 TIP 432931 14278 6014326 2024-02-20 19:55:59.037 2024-02-20 19:55:59.037 3300 FEE 432848 6310 6014327 2024-02-20 19:55:59.037 2024-02-20 19:55:59.037 29700 TIP 432848 18837 6014330 2024-02-20 19:56:00.53 2024-02-20 19:56:00.53 1700 FEE 432944 20669 6014331 2024-02-20 19:56:00.53 2024-02-20 19:56:00.53 15300 TIP 432944 1647 6014340 2024-02-20 19:56:20.267 2024-02-20 19:56:20.267 100000 FEE 432955 917 6013517 2024-02-20 18:30:40.357 2024-02-20 18:30:40.357 2100 FEE 432836 1008 6013518 2024-02-20 18:30:40.357 2024-02-20 18:30:40.357 18900 TIP 432836 18114 6013521 2024-02-20 18:30:42.63 2024-02-20 18:30:42.63 2100 FEE 432854 11018 6013522 2024-02-20 18:30:42.63 2024-02-20 18:30:42.63 18900 TIP 432854 16670 6013541 2024-02-20 18:34:02.895 2024-02-20 18:34:02.895 1100 FEE 431081 21060 6013542 2024-02-20 18:34:02.895 2024-02-20 18:34:02.895 9900 TIP 431081 13931 6013545 2024-02-20 18:34:56.192 2024-02-20 18:34:56.192 1000 FEE 432866 19235 6013546 2024-02-20 18:34:56.192 2024-02-20 18:34:56.192 9000 TIP 432866 1740 6013557 2024-02-20 18:37:29.692 2024-02-20 18:37:29.692 125000 FEE 432873 13759 6013560 2024-02-20 18:37:50.853 2024-02-20 18:37:50.853 3000 FEE 432872 15488 6013561 2024-02-20 18:37:50.853 2024-02-20 18:37:50.853 27000 TIP 432872 16948 6013564 2024-02-20 18:38:12.461 2024-02-20 18:38:12.461 3300 FEE 432848 9177 6013565 2024-02-20 18:38:12.461 2024-02-20 18:38:12.461 29700 TIP 432848 5703 6013610 2024-02-20 18:43:07.477 2024-02-20 18:43:07.477 2300 FEE 432736 16004 6013611 2024-02-20 18:43:07.477 2024-02-20 18:43:07.477 20700 TIP 432736 18124 6013612 2024-02-20 18:43:07.719 2024-02-20 18:43:07.719 2300 FEE 432736 20573 6013613 2024-02-20 18:43:07.719 2024-02-20 18:43:07.719 20700 TIP 432736 6798 6013632 2024-02-20 18:43:09.977 2024-02-20 18:43:09.977 2300 FEE 432736 18817 6013633 2024-02-20 18:43:09.977 2024-02-20 18:43:09.977 20700 TIP 432736 8080 6013652 2024-02-20 18:46:51.292 2024-02-20 18:46:51.292 1000 FEE 432885 20302 6013660 2024-02-20 18:48:10.411 2024-02-20 18:48:10.411 4000 FEE 432862 4250 6013661 2024-02-20 18:48:10.411 2024-02-20 18:48:10.411 36000 TIP 432862 618 6013684 2024-02-20 18:52:58.811 2024-02-20 18:52:58.811 8300 FEE 432674 19512 6013685 2024-02-20 18:52:58.811 2024-02-20 18:52:58.811 74700 TIP 432674 19511 6013692 2024-02-20 18:52:59.412 2024-02-20 18:52:59.412 8300 FEE 432674 1741 6013693 2024-02-20 18:52:59.412 2024-02-20 18:52:59.412 74700 TIP 432674 5306 6013718 2024-02-20 18:54:16.801 2024-02-20 18:54:16.801 8300 FEE 432873 664 6013719 2024-02-20 18:54:16.801 2024-02-20 18:54:16.801 74700 TIP 432873 12222 6013723 2024-02-20 18:54:17.605 2024-02-20 18:54:17.605 8300 FEE 432873 3213 6013724 2024-02-20 18:54:17.605 2024-02-20 18:54:17.605 74700 TIP 432873 20102 6013760 2024-02-20 19:01:02.598 2024-02-20 19:01:02.598 2300 FEE 432890 1051 6013761 2024-02-20 19:01:02.598 2024-02-20 19:01:02.598 20700 TIP 432890 19576 6013772 2024-02-20 19:01:47.423 2024-02-20 19:01:47.423 1000 FEE 432889 18363 6013773 2024-02-20 19:01:47.423 2024-02-20 19:01:47.423 9000 TIP 432889 21547 6013774 2024-02-20 19:01:50.831 2024-02-20 19:01:50.831 50000 FEE 432899 20564 6013794 2024-02-20 19:02:48.309 2024-02-20 19:02:48.309 1000 FEE 432903 15243 6013808 2024-02-20 19:03:38.562 2024-02-20 19:03:38.562 100 FEE 432763 1769 6013809 2024-02-20 19:03:38.562 2024-02-20 19:03:38.562 900 TIP 432763 18363 6013823 2024-02-20 19:05:49.341 2024-02-20 19:05:49.341 3300 FEE 432736 2338 6013824 2024-02-20 19:05:49.341 2024-02-20 19:05:49.341 29700 TIP 432736 6229 6013842 2024-02-20 19:08:28.321 2024-02-20 19:08:28.321 3300 FEE 432563 21233 6013843 2024-02-20 19:08:28.321 2024-02-20 19:08:28.321 29700 TIP 432563 717 6013850 2024-02-20 19:08:44.773 2024-02-20 19:08:44.773 10000 FEE 432911 5646 6013854 2024-02-20 19:09:49.569 2024-02-20 19:09:49.569 5000 FEE 432811 14503 6013855 2024-02-20 19:09:49.569 2024-02-20 19:09:49.569 45000 TIP 432811 19449 6013882 2024-02-20 19:15:14.833 2024-02-20 19:15:14.833 1000 FEE 432914 725 6013888 2024-02-20 19:16:42.866 2024-02-20 19:16:42.866 200 FEE 432873 16970 6013889 2024-02-20 19:16:42.866 2024-02-20 19:16:42.866 1800 TIP 432873 18678 6013891 2024-02-20 19:17:46.79 2024-02-20 19:17:46.79 1000 FEE 432916 18453 6013896 2024-02-20 19:18:56.978 2024-02-20 19:18:56.978 1000 FEE 432918 766 6013914 2024-02-20 19:19:04.929 2024-02-20 19:19:04.929 1000 FEE 432873 5425 6013915 2024-02-20 19:19:04.929 2024-02-20 19:19:04.929 9000 TIP 432873 6717 6013931 2024-02-20 19:23:52.182 2024-02-20 19:23:52.182 100 FEE 432311 9356 6013932 2024-02-20 19:23:52.182 2024-02-20 19:23:52.182 900 TIP 432311 18641 6013933 2024-02-20 19:23:52.382 2024-02-20 19:23:52.382 100 FEE 432311 21139 6013934 2024-02-20 19:23:52.382 2024-02-20 19:23:52.382 900 TIP 432311 5761 6013979 2024-02-20 19:27:29.964 2024-02-20 19:27:29.964 2100 FEE 432913 20511 6013980 2024-02-20 19:27:29.964 2024-02-20 19:27:29.964 18900 TIP 432913 866 6013990 2024-02-20 19:28:39.329 2024-02-20 19:28:39.329 100 FEE 432563 16788 6013991 2024-02-20 19:28:39.329 2024-02-20 19:28:39.329 900 TIP 432563 766 6014003 2024-02-20 19:29:05.804 2024-02-20 19:29:05.804 100 FEE 432889 1120 6014004 2024-02-20 19:29:05.804 2024-02-20 19:29:05.804 900 TIP 432889 2735 6014032 2024-02-20 19:32:13.411 2024-02-20 19:32:13.411 8300 FEE 432889 21281 6014033 2024-02-20 19:32:13.411 2024-02-20 19:32:13.411 74700 TIP 432889 19796 6014034 2024-02-20 19:32:13.7 2024-02-20 19:32:13.7 8300 FEE 432889 20613 6014035 2024-02-20 19:32:13.7 2024-02-20 19:32:13.7 74700 TIP 432889 13987 6014046 2024-02-20 19:32:30.045 2024-02-20 19:32:30.045 8300 FEE 432873 12049 6014047 2024-02-20 19:32:30.045 2024-02-20 19:32:30.045 74700 TIP 432873 1471 6014054 2024-02-20 19:34:45.012 2024-02-20 19:34:45.012 10000 FEE 432930 4074 6014074 2024-02-20 19:39:29.166 2024-02-20 19:39:29.166 1000 FEE 432717 18368 6014075 2024-02-20 19:39:29.166 2024-02-20 19:39:29.166 9000 TIP 432717 1712 6014077 2024-02-20 19:39:33.511 2024-02-20 19:39:33.511 700 FEE 432811 9275 6014078 2024-02-20 19:39:33.511 2024-02-20 19:39:33.511 6300 TIP 432811 1564 6014079 2024-02-20 19:39:33.717 2024-02-20 19:39:33.717 700 FEE 432811 19281 6014080 2024-02-20 19:39:33.717 2024-02-20 19:39:33.717 6300 TIP 432811 8713 6014090 2024-02-20 19:42:04.932 2024-02-20 19:42:04.932 1000 FEE 432937 9335 6014095 2024-02-20 19:43:17.212 2024-02-20 19:43:17.212 2100 FEE 432921 21361 6014096 2024-02-20 19:43:17.212 2024-02-20 19:43:17.212 18900 TIP 432921 16357 6014107 2024-02-20 19:43:50.882 2024-02-20 19:43:50.882 100 FEE 432913 14552 6014108 2024-02-20 19:43:50.882 2024-02-20 19:43:50.882 900 TIP 432913 21451 6014111 2024-02-20 19:43:51.661 2024-02-20 19:43:51.661 9000 FEE 432913 18314 6014112 2024-02-20 19:43:51.661 2024-02-20 19:43:51.661 81000 TIP 432913 21042 6014130 2024-02-20 19:44:21.75 2024-02-20 19:44:21.75 2100 FEE 432930 20776 6014131 2024-02-20 19:44:21.75 2024-02-20 19:44:21.75 18900 TIP 432930 17050 6014136 2024-02-20 19:44:28.113 2024-02-20 19:44:28.113 3000 FEE 432939 16177 6014137 2024-02-20 19:44:28.113 2024-02-20 19:44:28.113 27000 TIP 432939 18472 6014150 2024-02-20 19:44:44.444 2024-02-20 19:44:44.444 900 FEE 432881 15147 6014151 2024-02-20 19:44:44.444 2024-02-20 19:44:44.444 8100 TIP 432881 9482 6014161 2024-02-20 19:45:14.775 2024-02-20 19:45:14.775 100 FEE 432889 11423 6014162 2024-02-20 19:45:14.775 2024-02-20 19:45:14.775 900 TIP 432889 20509 6014165 2024-02-20 19:45:17.321 2024-02-20 19:45:17.321 9000 FEE 432889 17148 6014166 2024-02-20 19:45:17.321 2024-02-20 19:45:17.321 81000 TIP 432889 14939 6014192 2024-02-20 19:47:22.878 2024-02-20 19:47:22.878 1000 FEE 432399 11561 6014193 2024-02-20 19:47:22.878 2024-02-20 19:47:22.878 9000 TIP 432399 16229 6014200 2024-02-20 19:47:37.847 2024-02-20 19:47:37.847 1000 FEE 432564 16176 6014201 2024-02-20 19:47:37.847 2024-02-20 19:47:37.847 9000 TIP 432564 14990 6014208 2024-02-20 19:48:01.717 2024-02-20 19:48:01.717 100000 DONT_LIKE_THIS 432736 15536 6014217 2024-02-20 19:48:34.163 2024-02-20 19:48:34.163 2100 FEE 432930 8648 6014218 2024-02-20 19:48:34.163 2024-02-20 19:48:34.163 18900 TIP 432930 14074 6014243 2024-02-20 19:49:13.458 2024-02-20 19:49:13.458 1000 FEE 432920 21401 6014244 2024-02-20 19:49:13.458 2024-02-20 19:49:13.458 9000 TIP 432920 21166 6014255 2024-02-20 19:49:40.118 2024-02-20 19:49:40.118 1000 FEE 432920 7119 6014256 2024-02-20 19:49:40.118 2024-02-20 19:49:40.118 9000 TIP 432920 627 6014269 2024-02-20 19:51:36.973 2024-02-20 19:51:36.973 1000 FEE 432945 9331 6014275 2024-02-20 19:53:02.587 2024-02-20 19:53:02.587 10000 FEE 432674 974 6014276 2024-02-20 19:53:02.587 2024-02-20 19:53:02.587 90000 TIP 432674 2577 6014285 2024-02-20 19:54:00.234 2024-02-20 19:54:00.234 1000 FEE 432951 20701 6013750 2024-02-20 18:59:19.08 2024-02-20 18:59:19.08 10000 FEE 432811 4624 6013751 2024-02-20 18:59:19.08 2024-02-20 18:59:19.08 90000 TIP 432811 6717 6013768 2024-02-20 19:01:03.842 2024-02-20 19:01:03.842 1000 STREAM 141924 5759 6013782 2024-02-20 19:02:23.312 2024-02-20 19:02:23.312 2300 FEE 432899 5069 6013783 2024-02-20 19:02:23.312 2024-02-20 19:02:23.312 20700 TIP 432899 20701 6013801 2024-02-20 19:03:09.157 2024-02-20 19:03:09.157 4000 FEE 432890 20614 6013802 2024-02-20 19:03:09.157 2024-02-20 19:03:09.157 36000 TIP 432890 15938 6013804 2024-02-20 19:03:21.455 2024-02-20 19:03:21.455 100 FEE 432673 963 6013805 2024-02-20 19:03:21.455 2024-02-20 19:03:21.455 900 TIP 432673 18583 6013812 2024-02-20 19:04:03.861 2024-02-20 19:04:03.861 1000 STREAM 141924 1673 6013817 2024-02-20 19:05:03.875 2024-02-20 19:05:03.875 1000 STREAM 141924 7510 6013832 2024-02-20 19:06:16.333 2024-02-20 19:06:16.333 1000 FEE 432907 19581 6013833 2024-02-20 19:06:39.017 2024-02-20 19:06:39.017 1000 FEE 432908 19795 6013867 2024-02-20 19:13:17.602 2024-02-20 19:13:17.602 10000 FEE 432844 1213 6013868 2024-02-20 19:13:17.602 2024-02-20 19:13:17.602 90000 TIP 432844 5522 6013872 2024-02-20 19:13:55.665 2024-02-20 19:13:55.665 4200 FEE 432847 7772 6013873 2024-02-20 19:13:55.665 2024-02-20 19:13:55.665 37800 TIP 432847 6382 6013895 2024-02-20 19:18:15.974 2024-02-20 19:18:15.974 1000 FEE 432917 21555 6013917 2024-02-20 19:19:34.458 2024-02-20 19:19:34.458 2100 FEE 432913 20674 6013918 2024-02-20 19:19:34.458 2024-02-20 19:19:34.458 18900 TIP 432913 20782 6013937 2024-02-20 19:23:57.547 2024-02-20 19:23:57.547 100 FEE 432311 4989 6013938 2024-02-20 19:23:57.547 2024-02-20 19:23:57.547 900 TIP 432311 9809 6013947 2024-02-20 19:25:32.591 2024-02-20 19:25:32.591 100000 FEE 432920 16532 6013952 2024-02-20 19:25:41.915 2024-02-20 19:25:41.915 1100 FEE 432661 18170 6013953 2024-02-20 19:25:41.915 2024-02-20 19:25:41.915 9900 TIP 432661 1705 6013954 2024-02-20 19:25:46.104 2024-02-20 19:25:46.104 1100 FEE 432889 20683 6013955 2024-02-20 19:25:46.104 2024-02-20 19:25:46.104 9900 TIP 432889 2748 6013965 2024-02-20 19:27:00.762 2024-02-20 19:27:00.762 8300 FEE 432736 1291 6013966 2024-02-20 19:27:00.762 2024-02-20 19:27:00.762 74700 TIP 432736 20137 6013978 2024-02-20 19:27:11.197 2024-02-20 19:27:11.197 100000 FEE 432921 19156 6013983 2024-02-20 19:27:46.552 2024-02-20 19:27:46.552 2300 FEE 432921 16948 6013984 2024-02-20 19:27:46.552 2024-02-20 19:27:46.552 20700 TIP 432921 1729 6013996 2024-02-20 19:28:52.288 2024-02-20 19:28:52.288 100 FEE 432811 1825 6013997 2024-02-20 19:28:52.288 2024-02-20 19:28:52.288 900 TIP 432811 6741 6014008 2024-02-20 19:30:04.861 2024-02-20 19:30:04.861 2100 FEE 432886 20624 6014009 2024-02-20 19:30:04.861 2024-02-20 19:30:04.861 18900 TIP 432886 20036 6014013 2024-02-20 19:30:29.352 2024-02-20 19:30:29.352 2100 FEE 432877 20963 6014014 2024-02-20 19:30:29.352 2024-02-20 19:30:29.352 18900 TIP 432877 1291 6014030 2024-02-20 19:32:13.255 2024-02-20 19:32:13.255 8300 FEE 432889 1772 6014031 2024-02-20 19:32:13.255 2024-02-20 19:32:13.255 74700 TIP 432889 18269 6014040 2024-02-20 19:32:13.936 2024-02-20 19:32:13.936 8300 FEE 432889 4798 6014041 2024-02-20 19:32:13.936 2024-02-20 19:32:13.936 74700 TIP 432889 4059 6014052 2024-02-20 19:33:15.938 2024-02-20 19:33:15.938 1000 FEE 432929 19094 6014057 2024-02-20 19:36:49.849 2024-02-20 19:36:49.849 1000 FEE 432310 12561 6014058 2024-02-20 19:36:49.849 2024-02-20 19:36:49.849 9000 TIP 432310 11621 6014063 2024-02-20 19:38:32.069 2024-02-20 19:38:32.069 1000 FEE 432933 21040 6014066 2024-02-20 19:38:47.813 2024-02-20 19:38:47.813 1000 FEE 432887 9796 6014067 2024-02-20 19:38:47.813 2024-02-20 19:38:47.813 9000 TIP 432887 6041 6014092 2024-02-20 19:42:42.305 2024-02-20 19:42:42.305 100000 DONT_LIKE_THIS 432936 20701 6014104 2024-02-20 19:43:39.183 2024-02-20 19:43:39.183 90000 FEE 432920 9816 6014105 2024-02-20 19:43:39.183 2024-02-20 19:43:39.183 810000 TIP 432920 16212 6014148 2024-02-20 19:44:44.169 2024-02-20 19:44:44.169 100 FEE 432881 15697 6014149 2024-02-20 19:44:44.169 2024-02-20 19:44:44.169 900 TIP 432881 4074 6014190 2024-02-20 19:47:21.962 2024-02-20 19:47:21.962 1000 FEE 432360 711 6014191 2024-02-20 19:47:21.962 2024-02-20 19:47:21.962 9000 TIP 432360 896 6014198 2024-02-20 19:47:37.535 2024-02-20 19:47:37.535 1000 FEE 432564 19158 6014199 2024-02-20 19:47:37.535 2024-02-20 19:47:37.535 9000 TIP 432564 1145 6014209 2024-02-20 19:48:03.051 2024-02-20 19:48:03.051 100000 FEE 432942 20757 6014245 2024-02-20 19:49:38.526 2024-02-20 19:49:38.526 1000 FEE 432920 1488 6014246 2024-02-20 19:49:38.526 2024-02-20 19:49:38.526 9000 TIP 432920 18507 6014264 2024-02-20 19:51:10.071 2024-02-20 19:51:10.071 2100 FEE 432937 17011 6014265 2024-02-20 19:51:10.071 2024-02-20 19:51:10.071 18900 TIP 432937 12566 6014289 2024-02-20 19:54:09.705 2024-02-20 19:54:09.705 100 FEE 432848 16788 6014290 2024-02-20 19:54:09.705 2024-02-20 19:54:09.705 900 TIP 432848 640 6014314 2024-02-20 19:55:10.422 2024-02-20 19:55:10.422 3300 FEE 432342 14449 6014315 2024-02-20 19:55:10.422 2024-02-20 19:55:10.422 29700 TIP 432342 13622 6014343 2024-02-20 19:57:05.766 2024-02-20 19:57:05.766 0 FEE 432956 15719 6014346 2024-02-20 19:57:21.753 2024-02-20 19:57:21.753 2100 FEE 432910 5806 6014347 2024-02-20 19:57:21.753 2024-02-20 19:57:21.753 18900 TIP 432910 18664 6014349 2024-02-20 19:57:27.966 2024-02-20 19:57:27.966 2100 FEE 432889 811 6014350 2024-02-20 19:57:27.966 2024-02-20 19:57:27.966 18900 TIP 432889 20023 6014369 2024-02-20 19:58:21.757 2024-02-20 19:58:21.757 2100 FEE 432957 18174 6014370 2024-02-20 19:58:21.757 2024-02-20 19:58:21.757 18900 TIP 432957 6526 6014383 2024-02-20 20:00:42.11 2024-02-20 20:00:42.11 2100 FEE 432873 19810 6014384 2024-02-20 20:00:42.11 2024-02-20 20:00:42.11 18900 TIP 432873 12368 6014410 2024-02-20 20:10:20.208 2024-02-20 20:10:20.208 200 FEE 432369 16356 6014411 2024-02-20 20:10:20.208 2024-02-20 20:10:20.208 1800 TIP 432369 1729 6014412 2024-02-20 20:10:20.429 2024-02-20 20:10:20.429 200 FEE 432369 11477 6014413 2024-02-20 20:10:20.429 2024-02-20 20:10:20.429 1800 TIP 432369 1478 6014418 2024-02-20 20:10:21.027 2024-02-20 20:10:21.027 200 FEE 432369 11999 6014419 2024-02-20 20:10:21.027 2024-02-20 20:10:21.027 1800 TIP 432369 10519 6014438 2024-02-20 20:12:11.027 2024-02-20 20:12:11.027 1000 FEE 432975 16667 6014439 2024-02-20 20:12:18.206 2024-02-20 20:12:18.206 1000 FEE 432976 831 6014444 2024-02-20 20:12:42.978 2024-02-20 20:12:42.978 100 FEE 296324 19333 6014445 2024-02-20 20:12:42.978 2024-02-20 20:12:42.978 900 TIP 296324 17707 6014449 2024-02-20 20:13:08.261 2024-02-20 20:13:08.261 100 FEE 296238 20301 6014450 2024-02-20 20:13:08.261 2024-02-20 20:13:08.261 900 TIP 296238 18629 6014461 2024-02-20 20:13:51.895 2024-02-20 20:13:51.895 2100 FEE 432973 19138 6014462 2024-02-20 20:13:51.895 2024-02-20 20:13:51.895 18900 TIP 432973 627 6014468 2024-02-20 20:14:06.55 2024-02-20 20:14:06.55 2100 FEE 432932 5487 6014469 2024-02-20 20:14:06.55 2024-02-20 20:14:06.55 18900 TIP 432932 19352 6014489 2024-02-20 20:16:51.473 2024-02-20 20:16:51.473 30000 FEE 432920 19527 6014490 2024-02-20 20:16:51.473 2024-02-20 20:16:51.473 270000 TIP 432920 16754 6014492 2024-02-20 20:17:04.813 2024-02-20 20:17:04.813 1000 FEE 432981 16536 6014535 2024-02-20 20:20:40.06 2024-02-20 20:20:40.06 1000 FEE 432977 2537 6014536 2024-02-20 20:20:40.06 2024-02-20 20:20:40.06 9000 TIP 432977 1825 6014542 2024-02-20 20:21:27.803 2024-02-20 20:21:27.803 7100 FEE 432670 10112 6014543 2024-02-20 20:21:27.803 2024-02-20 20:21:27.803 63900 TIP 432670 21334 6014551 2024-02-20 20:22:10.169 2024-02-20 20:22:10.169 1000 FEE 432986 5708 6014552 2024-02-20 20:22:10.169 2024-02-20 20:22:10.169 9000 TIP 432986 4654 6014559 2024-02-20 20:22:11.223 2024-02-20 20:22:11.223 1000 FEE 432986 2264 6014560 2024-02-20 20:22:11.223 2024-02-20 20:22:11.223 9000 TIP 432986 18897 6014561 2024-02-20 20:22:11.427 2024-02-20 20:22:11.427 1000 FEE 432986 9758 6014562 2024-02-20 20:22:11.427 2024-02-20 20:22:11.427 9000 TIP 432986 17602 6014567 2024-02-20 20:22:15.223 2024-02-20 20:22:15.223 2100 FEE 432889 11018 6014568 2024-02-20 20:22:15.223 2024-02-20 20:22:15.223 18900 TIP 432889 19878 6014570 2024-02-20 20:22:19.746 2024-02-20 20:22:19.746 2100 FEE 432890 14080 6013820 2024-02-20 19:05:21.848 2024-02-20 19:05:21.848 1000 FEE 432906 909 6013835 2024-02-20 19:07:14.133 2024-02-20 19:07:14.133 10000 FEE 432909 13759 6013836 2024-02-20 19:07:29.126 2024-02-20 19:07:29.126 1000 FEE 432907 20987 6013837 2024-02-20 19:07:29.126 2024-02-20 19:07:29.126 9000 TIP 432907 3729 6013859 2024-02-20 19:10:01.84 2024-02-20 19:10:01.84 2100 FEE 432873 721 6013860 2024-02-20 19:10:01.84 2024-02-20 19:10:01.84 18900 TIP 432873 18446 6013880 2024-02-20 19:15:03.851 2024-02-20 19:15:03.851 2000 FEE 432913 1090 6013881 2024-02-20 19:15:03.851 2024-02-20 19:15:03.851 18000 TIP 432913 1803 6013899 2024-02-20 19:19:02.942 2024-02-20 19:19:02.942 1000 FEE 432884 21600 6013900 2024-02-20 19:19:02.942 2024-02-20 19:19:02.942 9000 TIP 432884 20246 6013902 2024-02-20 19:19:03.356 2024-02-20 19:19:03.356 2000 FEE 432884 18714 6013903 2024-02-20 19:19:03.356 2024-02-20 19:19:03.356 18000 TIP 432884 19037 6013904 2024-02-20 19:19:03.558 2024-02-20 19:19:03.558 1000 FEE 432884 10063 6013905 2024-02-20 19:19:03.558 2024-02-20 19:19:03.558 9000 TIP 432884 20730 6013910 2024-02-20 19:19:04.5 2024-02-20 19:19:04.5 1000 FEE 432873 12049 6013911 2024-02-20 19:19:04.5 2024-02-20 19:19:04.5 9000 TIP 432873 15088 6013921 2024-02-20 19:21:25.508 2024-02-20 19:21:25.508 2100 FEE 432918 11158 6013922 2024-02-20 19:21:25.508 2024-02-20 19:21:25.508 18900 TIP 432918 19987 6013929 2024-02-20 19:23:51.989 2024-02-20 19:23:51.989 100 FEE 432311 20409 6013930 2024-02-20 19:23:51.989 2024-02-20 19:23:51.989 900 TIP 432311 658 6013935 2024-02-20 19:23:52.729 2024-02-20 19:23:52.729 100 FEE 432311 11288 6013936 2024-02-20 19:23:52.729 2024-02-20 19:23:52.729 900 TIP 432311 18904 6013941 2024-02-20 19:23:58.112 2024-02-20 19:23:58.112 200 FEE 432311 20246 6013942 2024-02-20 19:23:58.112 2024-02-20 19:23:58.112 1800 TIP 432311 5978 6013992 2024-02-20 19:28:48.542 2024-02-20 19:28:48.542 100 FEE 432873 10934 6013993 2024-02-20 19:28:48.542 2024-02-20 19:28:48.542 900 TIP 432873 21334 6014005 2024-02-20 19:29:51.665 2024-02-20 19:29:51.665 1000 FEE 432922 5499 6014012 2024-02-20 19:30:20.065 2024-02-20 19:30:20.065 1000 FEE 432924 4624 6014028 2024-02-20 19:32:08.987 2024-02-20 19:32:08.987 16600 FEE 432899 1800 6014029 2024-02-20 19:32:08.987 2024-02-20 19:32:08.987 149400 TIP 432899 21472 6014042 2024-02-20 19:32:29.818 2024-02-20 19:32:29.818 8300 FEE 432873 21588 6014043 2024-02-20 19:32:29.818 2024-02-20 19:32:29.818 74700 TIP 432873 21021 6014068 2024-02-20 19:38:48.826 2024-02-20 19:38:48.826 0 FEE 432932 5708 6014086 2024-02-20 19:40:57.115 2024-02-20 19:40:57.115 3000 FEE 432935 8326 6014087 2024-02-20 19:40:57.115 2024-02-20 19:40:57.115 27000 TIP 432935 13547 6014091 2024-02-20 19:42:09.332 2024-02-20 19:42:09.332 1000 FEE 432938 18667 6014097 2024-02-20 19:43:37.713 2024-02-20 19:43:37.713 100 FEE 432920 672 6014098 2024-02-20 19:43:37.713 2024-02-20 19:43:37.713 900 TIP 432920 17927 6014132 2024-02-20 19:44:26.923 2024-02-20 19:44:26.923 100 FEE 432873 9418 6014133 2024-02-20 19:44:26.923 2024-02-20 19:44:26.923 900 TIP 432873 19511 6014146 2024-02-20 19:44:40.385 2024-02-20 19:44:40.385 3300 FEE 432584 691 6014147 2024-02-20 19:44:40.385 2024-02-20 19:44:40.385 29700 TIP 432584 6384 6014177 2024-02-20 19:45:46.833 2024-02-20 19:45:46.833 1000 FEE 432941 12222 6014184 2024-02-20 19:47:13.409 2024-02-20 19:47:13.409 1000 FEE 432267 10728 6014185 2024-02-20 19:47:13.409 2024-02-20 19:47:13.409 9000 TIP 432267 21155 6014186 2024-02-20 19:47:16.519 2024-02-20 19:47:16.519 1000 FEE 432308 2022 6014187 2024-02-20 19:47:16.519 2024-02-20 19:47:16.519 9000 TIP 432308 17166 6014188 2024-02-20 19:47:16.68 2024-02-20 19:47:16.68 1000 FEE 432308 20613 6014189 2024-02-20 19:47:16.68 2024-02-20 19:47:16.68 9000 TIP 432308 21556 6014202 2024-02-20 19:47:48.542 2024-02-20 19:47:48.542 100 FEE 432941 12188 6014203 2024-02-20 19:47:48.542 2024-02-20 19:47:48.542 900 TIP 432941 21393 6014215 2024-02-20 19:48:19.769 2024-02-20 19:48:19.769 800 FEE 432075 1012 6014216 2024-02-20 19:48:19.769 2024-02-20 19:48:19.769 7200 TIP 432075 21571 6014219 2024-02-20 19:48:34.435 2024-02-20 19:48:34.435 2100 FEE 432930 21274 6014220 2024-02-20 19:48:34.435 2024-02-20 19:48:34.435 18900 TIP 432930 11938 6014229 2024-02-20 19:49:11.339 2024-02-20 19:49:11.339 1000 FEE 432920 5779 6014230 2024-02-20 19:49:11.339 2024-02-20 19:49:11.339 9000 TIP 432920 18225 6014239 2024-02-20 19:49:13.043 2024-02-20 19:49:13.043 1000 FEE 432920 730 6014240 2024-02-20 19:49:13.043 2024-02-20 19:49:13.043 9000 TIP 432920 16276 6014241 2024-02-20 19:49:13.226 2024-02-20 19:49:13.226 1000 FEE 432920 21281 6014242 2024-02-20 19:49:13.226 2024-02-20 19:49:13.226 9000 TIP 432920 9845 6014249 2024-02-20 19:49:39.608 2024-02-20 19:49:39.608 1000 FEE 432920 630 6014250 2024-02-20 19:49:39.608 2024-02-20 19:49:39.608 9000 TIP 432920 20218 6014251 2024-02-20 19:49:39.801 2024-02-20 19:49:39.801 1000 FEE 432920 721 6014252 2024-02-20 19:49:39.801 2024-02-20 19:49:39.801 9000 TIP 432920 15367 6014274 2024-02-20 19:53:01.627 2024-02-20 19:53:01.627 1000 FEE 432947 11819 6014312 2024-02-20 19:55:08.288 2024-02-20 19:55:08.288 3300 FEE 432363 19527 6014313 2024-02-20 19:55:08.288 2024-02-20 19:55:08.288 29700 TIP 432363 1012 6014368 2024-02-20 19:58:12.792 2024-02-20 19:58:12.792 1000 FEE 432962 15556 6014380 2024-02-20 19:59:53.618 2024-02-20 19:59:53.618 1000 FEE 432965 11073 6014405 2024-02-20 20:09:05.726 2024-02-20 20:09:05.726 5000 FEE 432937 2711 6014406 2024-02-20 20:09:05.726 2024-02-20 20:09:05.726 45000 TIP 432937 17124 6014424 2024-02-20 20:11:37.481 2024-02-20 20:11:37.481 700 FEE 432973 18659 6014425 2024-02-20 20:11:37.481 2024-02-20 20:11:37.481 6300 TIP 432973 20980 6014463 2024-02-20 20:14:02.459 2024-02-20 20:14:02.459 2100 FEE 432963 8284 6014464 2024-02-20 20:14:02.459 2024-02-20 20:14:02.459 18900 TIP 432963 16842 6014484 2024-02-20 20:16:15.55 2024-02-20 20:16:15.55 1600 FEE 432957 9551 6014485 2024-02-20 20:16:15.55 2024-02-20 20:16:15.55 14400 TIP 432957 21412 6014502 2024-02-20 20:19:31.402 2024-02-20 20:19:31.402 11700 FEE 432153 16965 6014503 2024-02-20 20:19:31.402 2024-02-20 20:19:31.402 105300 TIP 432153 16301 6014505 2024-02-20 20:20:12.958 2024-02-20 20:20:12.958 2100 FEE 432763 19037 6014506 2024-02-20 20:20:12.958 2024-02-20 20:20:12.958 18900 TIP 432763 7983 6014507 2024-02-20 20:20:36.339 2024-02-20 20:20:36.339 1000 FEE 432977 20264 6014508 2024-02-20 20:20:36.339 2024-02-20 20:20:36.339 9000 TIP 432977 16667 6014525 2024-02-20 20:20:38.769 2024-02-20 20:20:38.769 1000 FEE 432977 18446 6014526 2024-02-20 20:20:38.769 2024-02-20 20:20:38.769 9000 TIP 432977 18306 6014540 2024-02-20 20:21:09.546 2024-02-20 20:21:09.546 2100 FEE 432899 5306 6014541 2024-02-20 20:21:09.546 2024-02-20 20:21:09.546 18900 TIP 432899 17568 6014546 2024-02-20 20:21:46.802 2024-02-20 20:21:46.802 7100 FEE 430122 2402 6014547 2024-02-20 20:21:46.802 2024-02-20 20:21:46.802 63900 TIP 430122 20782 6014553 2024-02-20 20:22:10.483 2024-02-20 20:22:10.483 2000 FEE 432986 6419 6014554 2024-02-20 20:22:10.483 2024-02-20 20:22:10.483 18000 TIP 432986 636 6014572 2024-02-20 20:22:23.056 2024-02-20 20:22:23.056 2100 FEE 432811 19810 6014573 2024-02-20 20:22:23.056 2024-02-20 20:22:23.056 18900 TIP 432811 2361 6014580 2024-02-20 20:22:31.761 2024-02-20 20:22:31.761 2100 FEE 432921 1726 6014581 2024-02-20 20:22:31.761 2024-02-20 20:22:31.761 18900 TIP 432921 21514 6014610 2024-02-20 20:25:21.417 2024-02-20 20:25:21.417 100000 FEE 432993 15367 6014621 2024-02-20 20:26:49.797 2024-02-20 20:26:49.797 3000 FEE 432993 20291 6014622 2024-02-20 20:26:49.797 2024-02-20 20:26:49.797 27000 TIP 432993 10530 6014629 2024-02-20 20:27:14.198 2024-02-20 20:27:14.198 1000 FEE 433000 20636 6014633 2024-02-20 20:27:53.592 2024-02-20 20:27:53.592 2100 FEE 432759 20861 6014634 2024-02-20 20:27:53.592 2024-02-20 20:27:53.592 18900 TIP 432759 17316 6014652 2024-02-20 20:30:07.846 2024-02-20 20:30:07.846 2100 FEE 432638 910 6014653 2024-02-20 20:30:07.846 2024-02-20 20:30:07.846 18900 TIP 432638 2196 6014687 2024-02-20 20:36:19.906 2024-02-20 20:36:19.906 100 FEE 432961 894 6014688 2024-02-20 20:36:19.906 2024-02-20 20:36:19.906 900 TIP 432961 1195 6014735 2024-02-20 20:41:56.556 2024-02-20 20:41:56.556 2100 FEE 432736 1135 6013875 2024-02-20 19:15:03.273 2024-02-20 19:15:03.273 1000 FEE 432913 20616 6013876 2024-02-20 19:15:03.273 2024-02-20 19:15:03.273 9000 TIP 432913 684 6013981 2024-02-20 19:27:46.416 2024-02-20 19:27:46.416 2300 FEE 432921 20775 6013982 2024-02-20 19:27:46.416 2024-02-20 19:27:46.416 20700 TIP 432921 19458 6014024 2024-02-20 19:32:08.107 2024-02-20 19:32:08.107 8300 FEE 432899 16154 6014025 2024-02-20 19:32:08.107 2024-02-20 19:32:08.107 74700 TIP 432899 11288 6014134 2024-02-20 19:44:27.069 2024-02-20 19:44:27.069 900 FEE 432873 2309 6014135 2024-02-20 19:44:27.069 2024-02-20 19:44:27.069 8100 TIP 432873 1673 6014142 2024-02-20 19:44:34.711 2024-02-20 19:44:34.711 90000 FEE 432873 5794 6014143 2024-02-20 19:44:34.711 2024-02-20 19:44:34.711 810000 TIP 432873 1836 6014180 2024-02-20 19:47:12.826 2024-02-20 19:47:12.826 1000 FEE 432267 20058 6014181 2024-02-20 19:47:12.826 2024-02-20 19:47:12.826 9000 TIP 432267 15488 6014206 2024-02-20 19:47:49.696 2024-02-20 19:47:49.696 9000 FEE 432941 8423 6014207 2024-02-20 19:47:49.696 2024-02-20 19:47:49.696 81000 TIP 432941 1800 6014213 2024-02-20 19:48:16.823 2024-02-20 19:48:16.823 2100 FEE 432118 16355 6014214 2024-02-20 19:48:16.823 2024-02-20 19:48:16.823 18900 TIP 432118 16867 6014253 2024-02-20 19:49:39.961 2024-02-20 19:49:39.961 1000 FEE 432920 9242 6014254 2024-02-20 19:49:39.961 2024-02-20 19:49:39.961 9000 TIP 432920 21373 6014268 2024-02-20 19:51:30.116 2024-02-20 19:51:30.116 7000 FEE 432944 9426 6014272 2024-02-20 19:52:11.921 2024-02-20 19:52:11.921 3000 FEE 432899 19462 6014273 2024-02-20 19:52:11.921 2024-02-20 19:52:11.921 27000 TIP 432899 20776 6014281 2024-02-20 19:53:31.827 2024-02-20 19:53:31.827 10000 FEE 432947 18625 6014282 2024-02-20 19:53:31.827 2024-02-20 19:53:31.827 90000 TIP 432947 7979 6014316 2024-02-20 19:55:12.912 2024-02-20 19:55:12.912 3300 FEE 432339 1145 6014317 2024-02-20 19:55:12.912 2024-02-20 19:55:12.912 29700 TIP 432339 21406 6014332 2024-02-20 19:56:01.058 2024-02-20 19:56:01.058 3300 FEE 432848 9346 6014333 2024-02-20 19:56:01.058 2024-02-20 19:56:01.058 29700 TIP 432848 13097 6014334 2024-02-20 19:56:02.152 2024-02-20 19:56:02.152 3300 FEE 432881 16351 6014335 2024-02-20 19:56:02.152 2024-02-20 19:56:02.152 29700 TIP 432881 16259 6014337 2024-02-20 19:56:11.866 2024-02-20 19:56:11.866 1000 FEE 432954 3709 6014341 2024-02-20 19:56:45.468 2024-02-20 19:56:45.468 1000 FEE 432956 1611 6014428 2024-02-20 20:11:38.967 2024-02-20 20:11:38.967 700 FEE 432973 1751 6014429 2024-02-20 20:11:38.967 2024-02-20 20:11:38.967 6300 TIP 432973 14169 6014435 2024-02-20 20:12:03.727 2024-02-20 20:12:03.727 100 FEE 296479 11477 6014436 2024-02-20 20:12:03.727 2024-02-20 20:12:03.727 900 TIP 296479 14449 6014453 2024-02-20 20:13:26.378 2024-02-20 20:13:26.378 100 FEE 296328 2942 6014454 2024-02-20 20:13:26.378 2024-02-20 20:13:26.378 900 TIP 296328 19286 6014459 2024-02-20 20:13:48.357 2024-02-20 20:13:48.357 100 FEE 296192 6030 6014460 2024-02-20 20:13:48.357 2024-02-20 20:13:48.357 900 TIP 296192 12346 6014466 2024-02-20 20:14:04.621 2024-02-20 20:14:04.621 2100 FEE 432959 9820 6014467 2024-02-20 20:14:04.621 2024-02-20 20:14:04.621 18900 TIP 432959 20775 6014477 2024-02-20 20:15:19.235 2024-02-20 20:15:19.235 7000 FEE 432979 2061 6014478 2024-02-20 20:15:45.836 2024-02-20 20:15:45.836 0 FEE 432979 18314 6014482 2024-02-20 20:16:13.181 2024-02-20 20:16:13.181 10000 FEE 432970 21563 6014483 2024-02-20 20:16:13.181 2024-02-20 20:16:13.181 90000 TIP 432970 21365 6014509 2024-02-20 20:20:36.475 2024-02-20 20:20:36.475 1000 FEE 432977 14037 6014510 2024-02-20 20:20:36.475 2024-02-20 20:20:36.475 9000 TIP 432977 12738 6014523 2024-02-20 20:20:38.338 2024-02-20 20:20:38.338 1000 FEE 432977 8505 6014524 2024-02-20 20:20:38.338 2024-02-20 20:20:38.338 9000 TIP 432977 699 6014548 2024-02-20 20:21:50.798 2024-02-20 20:21:50.798 10000 FEE 432985 11789 6014582 2024-02-20 20:22:45.252 2024-02-20 20:22:45.252 2100 FEE 432560 8570 6014583 2024-02-20 20:22:45.252 2024-02-20 20:22:45.252 18900 TIP 432560 651 6014586 2024-02-20 20:22:51.584 2024-02-20 20:22:51.584 1000 FEE 432988 11821 6014616 2024-02-20 20:26:04.343 2024-02-20 20:26:04.343 0 FEE 432992 9348 6014617 2024-02-20 20:26:38.435 2024-02-20 20:26:38.435 1000 FEE 432996 15556 6014624 2024-02-20 20:26:51.951 2024-02-20 20:26:51.951 2100 FEE 432386 16717 6014625 2024-02-20 20:26:51.951 2024-02-20 20:26:51.951 18900 TIP 432386 5746 6014639 2024-02-20 20:28:56.293 2024-02-20 20:28:56.293 1000 FEE 433003 18393 6014708 2024-02-20 20:38:27.083 2024-02-20 20:38:27.083 3000 FEE 433009 21575 6014709 2024-02-20 20:38:27.083 2024-02-20 20:38:27.083 27000 TIP 433009 21047 6014716 2024-02-20 20:40:50.646 2024-02-20 20:40:50.646 0 FEE 28119 21072 6014725 2024-02-20 20:41:53.648 2024-02-20 20:41:53.648 1000 FEE 432847 16282 6014726 2024-02-20 20:41:53.648 2024-02-20 20:41:53.648 9000 TIP 432847 5694 6014729 2024-02-20 20:41:54.829 2024-02-20 20:41:54.829 2100 FEE 432889 5708 6014730 2024-02-20 20:41:54.829 2024-02-20 20:41:54.829 18900 TIP 432889 21022 6014755 2024-02-20 20:42:05.903 2024-02-20 20:42:05.903 2100 FEE 432619 17797 6014756 2024-02-20 20:42:05.903 2024-02-20 20:42:05.903 18900 TIP 432619 6717 6014770 2024-02-20 20:44:36.666 2024-02-20 20:44:36.666 1000 FEE 433016 21247 6014783 2024-02-20 20:47:07.323 2024-02-20 20:47:07.323 1000 FEE 113364 8376 6014784 2024-02-20 20:47:07.323 2024-02-20 20:47:07.323 9000 TIP 113364 21238 6014813 2024-02-20 20:49:46.137 2024-02-20 20:49:46.137 1000 FEE 432822 670 6014814 2024-02-20 20:49:46.137 2024-02-20 20:49:46.137 9000 TIP 432822 11491 6014815 2024-02-20 20:49:47.354 2024-02-20 20:49:47.354 0 FEE 433014 2844 6014827 2024-02-20 20:52:07.477 2024-02-20 20:52:07.477 100000 FEE 433022 18679 6014847 2024-02-20 20:59:58.086 2024-02-20 20:59:58.086 8300 FEE 432920 13365 6014848 2024-02-20 20:59:58.086 2024-02-20 20:59:58.086 74700 TIP 432920 19633 6014855 2024-02-20 20:59:58.614 2024-02-20 20:59:58.614 8300 FEE 432920 8176 6014856 2024-02-20 20:59:58.614 2024-02-20 20:59:58.614 74700 TIP 432920 2832 6014903 2024-02-20 21:00:59.265 2024-02-20 21:00:59.265 1000 FEE 433028 21314 6014905 2024-02-20 21:01:32.213 2024-02-20 21:01:32.213 5000 FEE 433014 21437 6014906 2024-02-20 21:01:32.213 2024-02-20 21:01:32.213 45000 TIP 433014 13927 6014922 2024-02-20 21:04:54.543 2024-02-20 21:04:54.543 1000 FEE 433027 21060 6014923 2024-02-20 21:04:54.543 2024-02-20 21:04:54.543 9000 TIP 433027 21339 6014928 2024-02-20 21:04:55.443 2024-02-20 21:04:55.443 1000 FEE 433027 1740 6014929 2024-02-20 21:04:55.443 2024-02-20 21:04:55.443 9000 TIP 433027 1428 6014971 2024-02-20 21:08:21.225 2024-02-20 21:08:21.225 8300 FEE 432894 1576 6014972 2024-02-20 21:08:21.225 2024-02-20 21:08:21.225 74700 TIP 432894 10273 6015000 2024-02-20 21:09:08.805 2024-02-20 21:09:08.805 100 FEE 432987 1602 6015001 2024-02-20 21:09:08.805 2024-02-20 21:09:08.805 900 TIP 432987 4570 6015038 2024-02-20 21:12:42.558 2024-02-20 21:12:42.558 100 FEE 432953 10311 6015039 2024-02-20 21:12:42.558 2024-02-20 21:12:42.558 900 TIP 432953 622 6015044 2024-02-20 21:12:55.591 2024-02-20 21:12:55.591 1000 FEE 433034 4175 6015047 2024-02-20 21:12:57.073 2024-02-20 21:12:57.073 900 FEE 432957 11498 6015048 2024-02-20 21:12:57.073 2024-02-20 21:12:57.073 8100 TIP 432957 20106 6015049 2024-02-20 21:12:57.619 2024-02-20 21:12:57.619 9000 FEE 432957 3392 6015050 2024-02-20 21:12:57.619 2024-02-20 21:12:57.619 81000 TIP 432957 12516 6015054 2024-02-20 21:13:51.314 2024-02-20 21:13:51.314 900 FEE 433001 989 6015055 2024-02-20 21:13:51.314 2024-02-20 21:13:51.314 8100 TIP 433001 21369 6015061 2024-02-20 21:14:15.583 2024-02-20 21:14:15.583 100 FEE 432873 9351 6015062 2024-02-20 21:14:15.583 2024-02-20 21:14:15.583 900 TIP 432873 11590 6015071 2024-02-20 21:14:51.915 2024-02-20 21:14:51.915 800 FEE 432892 1549 6015072 2024-02-20 21:14:51.915 2024-02-20 21:14:51.915 7200 TIP 432892 19507 6015096 2024-02-20 21:19:38.076 2024-02-20 21:19:38.076 2000 FEE 432913 1515 6015097 2024-02-20 21:19:38.076 2024-02-20 21:19:38.076 18000 TIP 432913 14357 6015100 2024-02-20 21:19:55.231 2024-02-20 21:19:55.231 2000 FEE 432982 992 6015101 2024-02-20 21:19:55.231 2024-02-20 21:19:55.231 18000 TIP 432982 8541 6015139 2024-02-20 21:29:14.873 2024-02-20 21:29:14.873 1000 FEE 433045 21498 6013988 2024-02-20 19:27:46.898 2024-02-20 19:27:46.898 20700 TIP 432921 19888 6014006 2024-02-20 19:29:53.376 2024-02-20 19:29:53.376 1000 FEE 432923 8472 6014018 2024-02-20 19:31:58.114 2024-02-20 19:31:58.114 1000 FEE 432926 16753 6014019 2024-02-20 19:31:58.114 2024-02-20 19:31:58.114 9000 TIP 432926 18460 6014020 2024-02-20 19:32:01.984 2024-02-20 19:32:01.984 1000 FEE 432927 20669 6014036 2024-02-20 19:32:13.721 2024-02-20 19:32:13.721 8300 FEE 432889 4574 6014037 2024-02-20 19:32:13.721 2024-02-20 19:32:13.721 74700 TIP 432889 4083 6014038 2024-02-20 19:32:13.838 2024-02-20 19:32:13.838 8300 FEE 432889 16176 6014039 2024-02-20 19:32:13.838 2024-02-20 19:32:13.838 74700 TIP 432889 16059 6014044 2024-02-20 19:32:29.955 2024-02-20 19:32:29.955 8300 FEE 432873 18470 6014045 2024-02-20 19:32:29.955 2024-02-20 19:32:29.955 74700 TIP 432873 19796 6014051 2024-02-20 19:33:04.784 2024-02-20 19:33:04.784 1000 STREAM 141924 21042 6014069 2024-02-20 19:39:00.984 2024-02-20 19:39:00.984 1000 FEE 432934 19852 6014071 2024-02-20 19:39:14.566 2024-02-20 19:39:14.566 3200 FEE 432899 17455 6014072 2024-02-20 19:39:14.566 2024-02-20 19:39:14.566 28800 TIP 432899 19639 6014076 2024-02-20 19:39:29.182 2024-02-20 19:39:29.182 10000 FEE 432936 9427 6014094 2024-02-20 19:43:14.816 2024-02-20 19:43:14.816 1000 FEE 432939 2583 6014106 2024-02-20 19:43:40.855 2024-02-20 19:43:40.855 1000 FEE 432940 21103 6014109 2024-02-20 19:43:51.153 2024-02-20 19:43:51.153 900 FEE 432913 5701 6014110 2024-02-20 19:43:51.153 2024-02-20 19:43:51.153 8100 TIP 432913 5904 6014118 2024-02-20 19:44:14.301 2024-02-20 19:44:14.301 3300 FEE 432759 7809 6014119 2024-02-20 19:44:14.301 2024-02-20 19:44:14.301 29700 TIP 432759 8945 6014152 2024-02-20 19:44:59.862 2024-02-20 19:44:59.862 2100 FEE 432922 19662 6014153 2024-02-20 19:44:59.862 2024-02-20 19:44:59.862 18900 TIP 432922 15925 6014167 2024-02-20 19:45:27.069 2024-02-20 19:45:27.069 6800 FEE 432554 628 6014168 2024-02-20 19:45:27.069 2024-02-20 19:45:27.069 61200 TIP 432554 9427 6014173 2024-02-20 19:45:39.511 2024-02-20 19:45:39.511 3300 FEE 432727 2061 6014174 2024-02-20 19:45:39.511 2024-02-20 19:45:39.511 29700 TIP 432727 13575 6014182 2024-02-20 19:47:13.115 2024-02-20 19:47:13.115 1000 FEE 432267 16282 6014183 2024-02-20 19:47:13.115 2024-02-20 19:47:13.115 9000 TIP 432267 1673 6014211 2024-02-20 19:48:09.702 2024-02-20 19:48:09.702 1000 FEE 432093 3506 6014212 2024-02-20 19:48:09.702 2024-02-20 19:48:09.702 9000 TIP 432093 9496 6014225 2024-02-20 19:48:54.86 2024-02-20 19:48:54.86 1000 FEE 432943 5646 6014237 2024-02-20 19:49:12.901 2024-02-20 19:49:12.901 1000 FEE 432920 6688 6014238 2024-02-20 19:49:12.901 2024-02-20 19:49:12.901 9000 TIP 432920 6471 6014247 2024-02-20 19:49:38.854 2024-02-20 19:49:38.854 2000 FEE 432920 21072 6014248 2024-02-20 19:49:38.854 2024-02-20 19:49:38.854 18000 TIP 432920 14385 6014257 2024-02-20 19:49:47.727 2024-02-20 19:49:47.727 3000 FEE 432943 21491 6014258 2024-02-20 19:49:47.727 2024-02-20 19:49:47.727 27000 TIP 432943 18774 6014259 2024-02-20 19:49:49.448 2024-02-20 19:49:49.448 50000 FEE 432920 21573 6014260 2024-02-20 19:49:49.448 2024-02-20 19:49:49.448 450000 TIP 432920 1394 6014270 2024-02-20 19:52:00.22 2024-02-20 19:52:00.22 1000 FEE 432946 15226 6014294 2024-02-20 19:54:28.955 2024-02-20 19:54:28.955 3300 FEE 432899 16442 6014295 2024-02-20 19:54:28.955 2024-02-20 19:54:28.955 29700 TIP 432899 12175 6014301 2024-02-20 19:54:48.542 2024-02-20 19:54:48.542 100 FEE 432812 11491 6014302 2024-02-20 19:54:48.542 2024-02-20 19:54:48.542 900 TIP 432812 1718 6014305 2024-02-20 19:55:02.548 2024-02-20 19:55:02.548 3300 FEE 432371 18230 6014306 2024-02-20 19:55:02.548 2024-02-20 19:55:02.548 29700 TIP 432371 21249 6014338 2024-02-20 19:56:15.177 2024-02-20 19:56:15.177 100 FEE 432873 9363 6014339 2024-02-20 19:56:15.177 2024-02-20 19:56:15.177 900 TIP 432873 6030 6014367 2024-02-20 19:58:08.064 2024-02-20 19:58:08.064 100000 FEE 432961 20970 6014377 2024-02-20 19:59:07.197 2024-02-20 19:59:07.197 2100 FEE 432962 21329 6014378 2024-02-20 19:59:07.197 2024-02-20 19:59:07.197 18900 TIP 432962 14225 6014388 2024-02-20 20:00:58.08 2024-02-20 20:00:58.08 10000 FEE 432961 3709 6014389 2024-02-20 20:00:58.08 2024-02-20 20:00:58.08 90000 TIP 432961 2961 6014395 2024-02-20 20:03:34.534 2024-02-20 20:03:34.534 210000 FEE 432967 9985 6014113 2024-02-20 19:43:57.874 2024-02-20 19:43:57.874 90000 FEE 432913 18051 6014114 2024-02-20 19:43:57.874 2024-02-20 19:43:57.874 810000 TIP 432913 17365 6014120 2024-02-20 19:44:14.486 2024-02-20 19:44:14.486 3300 FEE 432759 3371 6014121 2024-02-20 19:44:14.486 2024-02-20 19:44:14.486 29700 TIP 432759 18235 6014122 2024-02-20 19:44:15.344 2024-02-20 19:44:15.344 3300 FEE 432759 6393 6014123 2024-02-20 19:44:15.344 2024-02-20 19:44:15.344 29700 TIP 432759 11670 6014128 2024-02-20 19:44:18.633 2024-02-20 19:44:18.633 9000 FEE 432890 9982 6014129 2024-02-20 19:44:18.633 2024-02-20 19:44:18.633 81000 TIP 432890 10063 6014157 2024-02-20 19:45:07.623 2024-02-20 19:45:07.623 100 FEE 432884 11328 6014158 2024-02-20 19:45:07.623 2024-02-20 19:45:07.623 900 TIP 432884 14909 6014175 2024-02-20 19:45:39.601 2024-02-20 19:45:39.601 3300 FEE 432727 1488 6014176 2024-02-20 19:45:39.601 2024-02-20 19:45:39.601 29700 TIP 432727 6300 6014196 2024-02-20 19:47:36.709 2024-02-20 19:47:36.709 1000 FEE 432547 20006 6014197 2024-02-20 19:47:36.709 2024-02-20 19:47:36.709 9000 TIP 432547 1114 6014278 2024-02-20 19:53:06.171 2024-02-20 19:53:06.171 10000 FEE 432873 15239 6014279 2024-02-20 19:53:06.171 2024-02-20 19:53:06.171 90000 TIP 432873 15045 6014287 2024-02-20 19:54:03.927 2024-02-20 19:54:03.927 2100 FEE 432857 749 6014288 2024-02-20 19:54:03.927 2024-02-20 19:54:03.927 18900 TIP 432857 1576 6014296 2024-02-20 19:54:36.621 2024-02-20 19:54:36.621 3300 FEE 432705 21413 6014297 2024-02-20 19:54:36.621 2024-02-20 19:54:36.621 29700 TIP 432705 11956 6014322 2024-02-20 19:55:16.973 2024-02-20 19:55:16.973 400 FEE 432339 9551 6014323 2024-02-20 19:55:16.973 2024-02-20 19:55:16.973 3600 TIP 432339 8045 6014344 2024-02-20 19:57:16.29 2024-02-20 19:57:16.29 5000 FEE 432957 20018 6014345 2024-02-20 19:57:21.111 2024-02-20 19:57:21.111 1000 FEE 432958 17639 6014348 2024-02-20 19:57:22.703 2024-02-20 19:57:22.703 1000 FEE 432959 20871 6014353 2024-02-20 19:57:34.736 2024-02-20 19:57:34.736 100 FEE 432881 3347 6014354 2024-02-20 19:57:34.736 2024-02-20 19:57:34.736 900 TIP 432881 20291 6014361 2024-02-20 19:57:54.142 2024-02-20 19:57:54.142 3000 FEE 432956 1244 6014362 2024-02-20 19:57:54.142 2024-02-20 19:57:54.142 27000 TIP 432956 20310 6014363 2024-02-20 19:58:01.627 2024-02-20 19:58:01.627 1000 FEE 432960 15662 6014375 2024-02-20 19:59:06.961 2024-02-20 19:59:06.961 112100 FEE 432957 15491 6014376 2024-02-20 19:59:06.961 2024-02-20 19:59:06.961 1008900 TIP 432957 9333 6014387 2024-02-20 20:00:49.545 2024-02-20 20:00:49.545 0 FEE 432950 19902 6014391 2024-02-20 20:01:40.452 2024-02-20 20:01:40.452 4000 FEE 432913 711 6014392 2024-02-20 20:01:40.452 2024-02-20 20:01:40.452 36000 TIP 432913 8459 6014396 2024-02-20 20:03:46.303 2024-02-20 20:03:46.303 97000 FEE 432968 8385 6014409 2024-02-20 20:10:04.517 2024-02-20 20:10:04.517 2000 FEE 432972 6700 6014420 2024-02-20 20:10:30.77 2024-02-20 20:10:30.77 1000 FEE 432973 19638 6014421 2024-02-20 20:10:33.168 2024-02-20 20:10:33.168 100 FEE 432967 20776 6014422 2024-02-20 20:10:33.168 2024-02-20 20:10:33.168 900 TIP 432967 18225 6014451 2024-02-20 20:13:11.316 2024-02-20 20:13:11.316 100 FEE 296234 19398 6014452 2024-02-20 20:13:11.316 2024-02-20 20:13:11.316 900 TIP 296234 12268 6014496 2024-02-20 20:18:06.042 2024-02-20 20:18:06.042 3300 FEE 432661 16834 6014497 2024-02-20 20:18:06.042 2024-02-20 20:18:06.042 29700 TIP 432661 18351 6014519 2024-02-20 20:20:37.36 2024-02-20 20:20:37.36 1000 FEE 432977 15239 6014520 2024-02-20 20:20:37.36 2024-02-20 20:20:37.36 9000 TIP 432977 19533 6014527 2024-02-20 20:20:38.925 2024-02-20 20:20:38.925 1000 FEE 432977 4314 6014528 2024-02-20 20:20:38.925 2024-02-20 20:20:38.925 9000 TIP 432977 17522 6014533 2024-02-20 20:20:39.888 2024-02-20 20:20:39.888 1000 FEE 432977 1320 6014534 2024-02-20 20:20:39.888 2024-02-20 20:20:39.888 9000 TIP 432977 6741 6014549 2024-02-20 20:22:00.894 2024-02-20 20:22:00.894 10000 FEE 432986 18357 6014555 2024-02-20 20:22:10.945 2024-02-20 20:22:10.945 1000 FEE 432986 9356 6014556 2024-02-20 20:22:10.945 2024-02-20 20:22:10.945 9000 TIP 432986 19907 6014569 2024-02-20 20:22:15.364 2024-02-20 20:22:15.364 97000 FEE 432987 9378 6014578 2024-02-20 20:22:28.186 2024-02-20 20:22:28.186 5000 FEE 432899 5775 6014579 2024-02-20 20:22:28.186 2024-02-20 20:22:28.186 45000 TIP 432899 10586 6014591 2024-02-20 20:23:16.727 2024-02-20 20:23:16.727 1000 FEE 432989 20153 6014601 2024-02-20 20:24:24.077 2024-02-20 20:24:24.077 0 FEE 432991 20891 6014611 2024-02-20 20:25:25.851 2024-02-20 20:25:25.851 2100 FEE 432660 14258 6014612 2024-02-20 20:25:25.851 2024-02-20 20:25:25.851 18900 TIP 432660 16966 6014618 2024-02-20 20:26:44.44 2024-02-20 20:26:44.44 2100 FEE 432832 12175 6014619 2024-02-20 20:26:44.44 2024-02-20 20:26:44.44 18900 TIP 432832 19096 6014692 2024-02-20 20:36:55.532 2024-02-20 20:36:55.532 2000 FEE 432889 17741 6014693 2024-02-20 20:36:55.532 2024-02-20 20:36:55.532 18000 TIP 432889 913 6014715 2024-02-20 20:40:10.078 2024-02-20 20:40:10.078 1000 FEE 433013 9705 6014793 2024-02-20 20:47:29.476 2024-02-20 20:47:29.476 1000 FEE 432920 18476 6014794 2024-02-20 20:47:29.476 2024-02-20 20:47:29.476 9000 TIP 432920 9336 6014803 2024-02-20 20:48:03.066 2024-02-20 20:48:03.066 2100 FEE 433011 725 6014804 2024-02-20 20:48:03.066 2024-02-20 20:48:03.066 18900 TIP 433011 1298 6014806 2024-02-20 20:48:06.82 2024-02-20 20:48:06.82 2100 FEE 433010 828 6014807 2024-02-20 20:48:06.82 2024-02-20 20:48:06.82 18900 TIP 433010 21332 6014857 2024-02-20 20:59:58.97 2024-02-20 20:59:58.97 8300 FEE 432920 2711 6014858 2024-02-20 20:59:58.97 2024-02-20 20:59:58.97 74700 TIP 432920 4062 6014863 2024-02-20 21:00:00.05 2024-02-20 21:00:00.05 8300 FEE 432920 626 6014864 2024-02-20 21:00:00.05 2024-02-20 21:00:00.05 74700 TIP 432920 14785 6014869 2024-02-20 21:00:00.408 2024-02-20 21:00:00.408 8300 FEE 432920 17638 6014870 2024-02-20 21:00:00.408 2024-02-20 21:00:00.408 74700 TIP 432920 20464 6014891 2024-02-20 21:00:02.295 2024-02-20 21:00:02.295 8300 FEE 432920 7668 6014892 2024-02-20 21:00:02.295 2024-02-20 21:00:02.295 74700 TIP 432920 4076 6014917 2024-02-20 21:03:15.244 2024-02-20 21:03:15.244 2100 FEE 432873 18241 6014918 2024-02-20 21:03:15.244 2024-02-20 21:03:15.244 18900 TIP 432873 7986 6014924 2024-02-20 21:04:54.901 2024-02-20 21:04:54.901 1000 FEE 433027 20080 6014925 2024-02-20 21:04:54.901 2024-02-20 21:04:54.901 9000 TIP 433027 11477 6014949 2024-02-20 21:07:56.467 2024-02-20 21:07:56.467 2100 FEE 433027 9167 6014950 2024-02-20 21:07:56.467 2024-02-20 21:07:56.467 18900 TIP 433027 20613 6014991 2024-02-20 21:08:44.814 2024-02-20 21:08:44.814 8300 FEE 432957 1801 6014992 2024-02-20 21:08:44.814 2024-02-20 21:08:44.814 74700 TIP 432957 2749 6014997 2024-02-20 21:08:51.698 2024-02-20 21:08:51.698 900 FEE 432993 6058 6014998 2024-02-20 21:08:51.698 2024-02-20 21:08:51.698 8100 TIP 432993 20183 6015012 2024-02-20 21:09:36.629 2024-02-20 21:09:36.629 900 FEE 433011 1472 6015013 2024-02-20 21:09:36.629 2024-02-20 21:09:36.629 8100 TIP 433011 1720 6015022 2024-02-20 21:09:46.644 2024-02-20 21:09:46.644 100000 FEE 433031 18311 6015025 2024-02-20 21:09:51.492 2024-02-20 21:09:51.492 900 FEE 432977 12158 6015026 2024-02-20 21:09:51.492 2024-02-20 21:09:51.492 8100 TIP 432977 6137 6015052 2024-02-20 21:13:50.599 2024-02-20 21:13:50.599 100 FEE 433001 2431 6015053 2024-02-20 21:13:50.599 2024-02-20 21:13:50.599 900 TIP 433001 18557 6015079 2024-02-20 21:16:13.949 2024-02-20 21:16:13.949 21000 FEE 433037 20450 6015085 2024-02-20 21:17:44.021 2024-02-20 21:17:44.021 97000 FEE 433038 14280 6015090 2024-02-20 21:19:25.73 2024-02-20 21:19:25.73 2000 FEE 432889 11992 6015091 2024-02-20 21:19:25.73 2024-02-20 21:19:25.73 18000 TIP 432889 19796 6015102 2024-02-20 21:19:57.919 2024-02-20 21:19:57.919 1000 FEE 433034 4395 6015103 2024-02-20 21:19:57.919 2024-02-20 21:19:57.919 9000 TIP 433034 1602 6015104 2024-02-20 21:20:00.496 2024-02-20 21:20:00.496 2000 FEE 432987 825 6015105 2024-02-20 21:20:00.496 2024-02-20 21:20:00.496 18000 TIP 432987 5057 6015118 2024-02-20 21:24:03.081 2024-02-20 21:24:03.081 100 FEE 432988 21441 6015119 2024-02-20 21:24:03.081 2024-02-20 21:24:03.081 900 TIP 432988 11018 6015124 2024-02-20 21:26:02.809 2024-02-20 21:26:02.809 90000 FEE 432957 638 6014291 2024-02-20 19:54:11.118 2024-02-20 19:54:11.118 100 FEE 432846 20018 6014292 2024-02-20 19:54:11.118 2024-02-20 19:54:11.118 900 TIP 432846 20129 6014307 2024-02-20 19:55:03.843 2024-02-20 19:55:03.843 3300 FEE 432398 1478 6014308 2024-02-20 19:55:03.843 2024-02-20 19:55:03.843 29700 TIP 432398 17722 6014328 2024-02-20 19:56:00.159 2024-02-20 19:56:00.159 3300 FEE 432848 4118 6014329 2024-02-20 19:56:00.159 2024-02-20 19:56:00.159 29700 TIP 432848 20272 6014355 2024-02-20 19:57:35.274 2024-02-20 19:57:35.274 100 FEE 432881 17226 6014356 2024-02-20 19:57:35.274 2024-02-20 19:57:35.274 900 TIP 432881 19557 6014359 2024-02-20 19:57:36.177 2024-02-20 19:57:36.177 100 FEE 432881 21228 6014360 2024-02-20 19:57:36.177 2024-02-20 19:57:36.177 900 TIP 432881 12272 6014365 2024-02-20 19:58:05.325 2024-02-20 19:58:05.325 100 FEE 432899 963 6014366 2024-02-20 19:58:05.325 2024-02-20 19:58:05.325 900 TIP 432899 18271 6014371 2024-02-20 19:58:27.871 2024-02-20 19:58:27.871 1000 FEE 432963 4118 6014382 2024-02-20 20:00:27.287 2024-02-20 20:00:27.287 1000 FEE 432966 17714 6014385 2024-02-20 20:00:47.382 2024-02-20 20:00:47.382 2100 FEE 432889 960 6014386 2024-02-20 20:00:47.382 2024-02-20 20:00:47.382 18900 TIP 432889 1603 6014400 2024-02-20 20:06:08.432 2024-02-20 20:06:08.432 10000 FEE 432969 13169 6014407 2024-02-20 20:09:50.368 2024-02-20 20:09:50.368 100000 FEE 432971 19826 6014414 2024-02-20 20:10:20.637 2024-02-20 20:10:20.637 200 FEE 432369 9166 6014415 2024-02-20 20:10:20.637 2024-02-20 20:10:20.637 1800 TIP 432369 17365 6014515 2024-02-20 20:20:37.015 2024-02-20 20:20:37.015 1000 FEE 432977 9353 6014516 2024-02-20 20:20:37.015 2024-02-20 20:20:37.015 9000 TIP 432977 16842 6014517 2024-02-20 20:20:37.177 2024-02-20 20:20:37.177 1000 FEE 432977 730 6014518 2024-02-20 20:20:37.177 2024-02-20 20:20:37.177 9000 TIP 432977 14247 6014529 2024-02-20 20:20:39.518 2024-02-20 20:20:39.518 1000 FEE 432977 1717 6014530 2024-02-20 20:20:39.518 2024-02-20 20:20:39.518 9000 TIP 432977 1047 6014531 2024-02-20 20:20:39.702 2024-02-20 20:20:39.702 1000 FEE 432977 20258 6014532 2024-02-20 20:20:39.702 2024-02-20 20:20:39.702 9000 TIP 432977 2460 6014574 2024-02-20 20:22:26.833 2024-02-20 20:22:26.833 2100 FEE 432759 4574 6014575 2024-02-20 20:22:26.833 2024-02-20 20:22:26.833 18900 TIP 432759 1647 6014584 2024-02-20 20:22:51.098 2024-02-20 20:22:51.098 2100 FEE 432579 9845 6014585 2024-02-20 20:22:51.098 2024-02-20 20:22:51.098 18900 TIP 432579 18423 6014594 2024-02-20 20:23:40.056 2024-02-20 20:23:40.056 1000 FEE 432990 20892 6014606 2024-02-20 20:24:28.845 2024-02-20 20:24:28.845 3000 FEE 432902 2203 6014607 2024-02-20 20:24:28.845 2024-02-20 20:24:28.845 27000 TIP 432902 21021 6014608 2024-02-20 20:24:42.878 2024-02-20 20:24:42.878 1000 FEE 432992 798 6014620 2024-02-20 20:26:45.363 2024-02-20 20:26:45.363 1000 FEE 432997 16956 6014628 2024-02-20 20:27:08.145 2024-02-20 20:27:08.145 1000 FEE 432999 14168 6014642 2024-02-20 20:29:04.317 2024-02-20 20:29:04.317 2100 FEE 432785 10270 6014643 2024-02-20 20:29:04.317 2024-02-20 20:29:04.317 18900 TIP 432785 18188 6014654 2024-02-20 20:30:07.913 2024-02-20 20:30:07.913 3000 FEE 432806 14552 6014655 2024-02-20 20:30:07.913 2024-02-20 20:30:07.913 27000 TIP 432806 19459 6014675 2024-02-20 20:35:40.441 2024-02-20 20:35:40.441 3300 FEE 432984 8926 6014676 2024-02-20 20:35:40.441 2024-02-20 20:35:40.441 29700 TIP 432984 683 6014683 2024-02-20 20:36:19.582 2024-02-20 20:36:19.582 100 FEE 432961 2233 6014684 2024-02-20 20:36:19.582 2024-02-20 20:36:19.582 900 TIP 432961 19502 6014710 2024-02-20 20:38:27.835 2024-02-20 20:38:27.835 1000 FEE 433012 19465 6014722 2024-02-20 20:41:44.584 2024-02-20 20:41:44.584 1000 FEE 433014 16789 6014748 2024-02-20 20:42:03.182 2024-02-20 20:42:03.182 2100 FEE 432913 16950 6014749 2024-02-20 20:42:03.182 2024-02-20 20:42:03.182 18900 TIP 432913 18008 6014778 2024-02-20 20:45:40.203 2024-02-20 20:45:40.203 3000 FEE 433017 19303 6014779 2024-02-20 20:45:40.203 2024-02-20 20:45:40.203 27000 TIP 433017 9109 6014808 2024-02-20 20:48:08.957 2024-02-20 20:48:08.957 2100 FEE 432952 19952 6014809 2024-02-20 20:48:08.957 2024-02-20 20:48:08.957 18900 TIP 432952 4238 6014810 2024-02-20 20:48:15.406 2024-02-20 20:48:15.406 100 FEE 432980 20201 6014811 2024-02-20 20:48:15.406 2024-02-20 20:48:15.406 900 TIP 432980 15139 6014843 2024-02-20 20:58:24.843 2024-02-20 20:58:24.843 10000 FEE 433026 1030 6014851 2024-02-20 20:59:58.45 2024-02-20 20:59:58.45 8300 FEE 432920 21466 6014852 2024-02-20 20:59:58.45 2024-02-20 20:59:58.45 74700 TIP 432920 15526 6014859 2024-02-20 20:59:59.688 2024-02-20 20:59:59.688 8300 FEE 432920 19837 6014860 2024-02-20 20:59:59.688 2024-02-20 20:59:59.688 74700 TIP 432920 837 6014861 2024-02-20 20:59:59.758 2024-02-20 20:59:59.758 8300 FEE 432920 1428 6014862 2024-02-20 20:59:59.758 2024-02-20 20:59:59.758 74700 TIP 432920 18543 6014867 2024-02-20 21:00:00.214 2024-02-20 21:00:00.214 8300 FEE 432920 9349 6014868 2024-02-20 21:00:00.214 2024-02-20 21:00:00.214 74700 TIP 432920 18116 6014873 2024-02-20 21:00:00.739 2024-02-20 21:00:00.739 8300 FEE 432920 20799 6014874 2024-02-20 21:00:00.739 2024-02-20 21:00:00.739 74700 TIP 432920 17212 6014893 2024-02-20 21:00:02.784 2024-02-20 21:00:02.784 8300 FEE 432920 13378 6014894 2024-02-20 21:00:02.784 2024-02-20 21:00:02.784 74700 TIP 432920 20243 6014911 2024-02-20 21:02:44.445 2024-02-20 21:02:44.445 2100 FEE 433027 14080 6014912 2024-02-20 21:02:44.445 2024-02-20 21:02:44.445 18900 TIP 433027 20183 6014920 2024-02-20 21:04:40.348 2024-02-20 21:04:40.348 1100 FEE 432961 2010 6014921 2024-02-20 21:04:40.348 2024-02-20 21:04:40.348 9900 TIP 432961 21019 6014967 2024-02-20 21:08:18.209 2024-02-20 21:08:18.209 8300 FEE 432912 11314 6014968 2024-02-20 21:08:18.209 2024-02-20 21:08:18.209 74700 TIP 432912 21238 6014969 2024-02-20 21:08:18.996 2024-02-20 21:08:18.996 8300 FEE 432929 1505 6014970 2024-02-20 21:08:18.996 2024-02-20 21:08:18.996 74700 TIP 432929 19690 6014973 2024-02-20 21:08:34.651 2024-02-20 21:08:34.651 2100 FEE 433001 21416 6014974 2024-02-20 21:08:34.651 2024-02-20 21:08:34.651 18900 TIP 433001 1802 6014977 2024-02-20 21:08:42.794 2024-02-20 21:08:42.794 8300 FEE 432957 20133 6014978 2024-02-20 21:08:42.794 2024-02-20 21:08:42.794 74700 TIP 432957 19132 6014989 2024-02-20 21:08:44.165 2024-02-20 21:08:44.165 8300 FEE 432957 20710 6014990 2024-02-20 21:08:44.165 2024-02-20 21:08:44.165 74700 TIP 432957 20450 6015014 2024-02-20 21:09:37.46 2024-02-20 21:09:37.46 9000 FEE 433011 5708 6015015 2024-02-20 21:09:37.46 2024-02-20 21:09:37.46 81000 TIP 433011 20623 6015042 2024-02-20 21:12:43.942 2024-02-20 21:12:43.942 9000 FEE 432953 5522 6015043 2024-02-20 21:12:43.942 2024-02-20 21:12:43.942 81000 TIP 432953 19930 6015077 2024-02-20 21:15:57.148 2024-02-20 21:15:57.148 10000 FEE 433036 9171 6015088 2024-02-20 21:19:25.075 2024-02-20 21:19:25.075 2000 FEE 432889 12562 6015089 2024-02-20 21:19:25.075 2024-02-20 21:19:25.075 18000 TIP 432889 20674 6015098 2024-02-20 21:19:42.979 2024-02-20 21:19:42.979 1000 FEE 432992 18873 6015099 2024-02-20 21:19:42.979 2024-02-20 21:19:42.979 9000 TIP 432992 989 6015112 2024-02-20 21:21:23.434 2024-02-20 21:21:23.434 1000 FEE 433041 10016 6015129 2024-02-20 21:26:17.614 2024-02-20 21:26:17.614 90000 FEE 432811 20525 6015130 2024-02-20 21:26:17.614 2024-02-20 21:26:17.614 810000 TIP 432811 732 6015132 2024-02-20 21:27:53.526 2024-02-20 21:27:53.526 2100 FEE 433027 19995 6015133 2024-02-20 21:27:53.526 2024-02-20 21:27:53.526 18900 TIP 433027 11648 6015140 2024-02-20 21:29:19.159 2024-02-20 21:29:19.159 2100 FEE 433037 4819 6015141 2024-02-20 21:29:19.159 2024-02-20 21:29:19.159 18900 TIP 433037 12265 6015154 2024-02-20 21:31:17.028 2024-02-20 21:31:17.028 10000 FEE 433047 10608 6015155 2024-02-20 21:31:17.028 2024-02-20 21:31:17.028 90000 TIP 433047 20094 6015161 2024-02-20 21:32:10.196 2024-02-20 21:32:10.196 0 FEE 433049 18904 6015165 2024-02-20 21:33:44.925 2024-02-20 21:33:44.925 10000 FEE 432920 2748 6015166 2024-02-20 21:33:44.925 2024-02-20 21:33:44.925 90000 TIP 432920 20337 6015170 2024-02-20 21:34:31.862 2024-02-20 21:34:31.862 2700 FEE 432977 17827 6015171 2024-02-20 21:34:31.862 2024-02-20 21:34:31.862 24300 TIP 432977 15588 6015181 2024-02-20 21:35:37.734 2024-02-20 21:35:37.734 1000 FEE 433053 21157 6014351 2024-02-20 19:57:32.351 2024-02-20 19:57:32.351 100 FEE 432881 2188 6014352 2024-02-20 19:57:32.351 2024-02-20 19:57:32.351 900 TIP 432881 13249 6014357 2024-02-20 19:57:35.72 2024-02-20 19:57:35.72 100 FEE 432881 21624 6014358 2024-02-20 19:57:35.72 2024-02-20 19:57:35.72 900 TIP 432881 18528 6014372 2024-02-20 19:58:47.868 2024-02-20 19:58:47.868 100 FEE 187532 21361 6014373 2024-02-20 19:58:47.868 2024-02-20 19:58:47.868 900 TIP 187532 2264 6014379 2024-02-20 19:59:16.855 2024-02-20 19:59:16.855 1000 FEE 432964 1136 6014403 2024-02-20 20:08:57.286 2024-02-20 20:08:57.286 1000 FEE 432970 21323 6014416 2024-02-20 20:10:20.879 2024-02-20 20:10:20.879 200 FEE 432369 18230 6014417 2024-02-20 20:10:20.879 2024-02-20 20:10:20.879 1800 TIP 432369 11789 6014432 2024-02-20 20:11:49.823 2024-02-20 20:11:49.823 100 FEE 296824 18815 6014433 2024-02-20 20:11:49.823 2024-02-20 20:11:49.823 900 TIP 296824 997 6014442 2024-02-20 20:12:38.997 2024-02-20 20:12:38.997 100 FEE 296351 7389 6014443 2024-02-20 20:12:38.997 2024-02-20 20:12:38.997 900 TIP 296351 2718 6014455 2024-02-20 20:13:27.376 2024-02-20 20:13:27.376 1000 FEE 432898 11798 6014456 2024-02-20 20:13:27.376 2024-02-20 20:13:27.376 9000 TIP 432898 1803 6014470 2024-02-20 20:14:22.377 2024-02-20 20:14:22.377 5000 FEE 432977 20871 6014472 2024-02-20 20:14:24.337 2024-02-20 20:14:24.337 2100 FEE 432730 15273 6014473 2024-02-20 20:14:24.337 2024-02-20 20:14:24.337 18900 TIP 432730 19005 6014474 2024-02-20 20:14:55.46 2024-02-20 20:14:55.46 100 FEE 296158 12272 6014475 2024-02-20 20:14:55.46 2024-02-20 20:14:55.46 900 TIP 296158 659 6014480 2024-02-20 20:16:10.482 2024-02-20 20:16:10.482 10000 FEE 432976 19484 6014481 2024-02-20 20:16:10.482 2024-02-20 20:16:10.482 90000 TIP 432976 14080 6014486 2024-02-20 20:16:28.058 2024-02-20 20:16:28.058 100 FEE 432979 18330 6014487 2024-02-20 20:16:28.058 2024-02-20 20:16:28.058 900 TIP 432979 21588 6014488 2024-02-20 20:16:29.994 2024-02-20 20:16:29.994 1000 FEE 432980 964 6014499 2024-02-20 20:18:53.383 2024-02-20 20:18:53.383 0 FEE 432982 3979 6014501 2024-02-20 20:19:06.538 2024-02-20 20:19:06.538 1000 FEE 432984 17209 6014511 2024-02-20 20:20:36.708 2024-02-20 20:20:36.708 1000 FEE 432977 11314 6014512 2024-02-20 20:20:36.708 2024-02-20 20:20:36.708 9000 TIP 432977 8360 6014537 2024-02-20 20:20:40.233 2024-02-20 20:20:40.233 1000 FEE 432977 4323 6014538 2024-02-20 20:20:40.233 2024-02-20 20:20:40.233 9000 TIP 432977 18208 6014544 2024-02-20 20:21:34.562 2024-02-20 20:21:34.562 7100 FEE 431672 12268 6014545 2024-02-20 20:21:34.562 2024-02-20 20:21:34.562 63900 TIP 431672 1426 6014563 2024-02-20 20:22:11.605 2024-02-20 20:22:11.605 1000 FEE 432986 1881 6014564 2024-02-20 20:22:11.605 2024-02-20 20:22:11.605 9000 TIP 432986 20272 6014565 2024-02-20 20:22:12.522 2024-02-20 20:22:12.522 2000 FEE 432986 14213 6014566 2024-02-20 20:22:12.522 2024-02-20 20:22:12.522 18000 TIP 432986 15938 6014588 2024-02-20 20:22:54.165 2024-02-20 20:22:54.165 2100 FEE 432511 19535 6014589 2024-02-20 20:22:54.165 2024-02-20 20:22:54.165 18900 TIP 432511 16145 6014592 2024-02-20 20:23:19.692 2024-02-20 20:23:19.692 2100 FEE 432813 16769 6014593 2024-02-20 20:23:19.692 2024-02-20 20:23:19.692 18900 TIP 432813 1454 6014596 2024-02-20 20:24:07.51 2024-02-20 20:24:07.51 50000 FEE 432991 1039 6014599 2024-02-20 20:24:10.675 2024-02-20 20:24:10.675 2100 FEE 432919 20562 6014600 2024-02-20 20:24:10.675 2024-02-20 20:24:10.675 18900 TIP 432919 8168 6014604 2024-02-20 20:24:25.006 2024-02-20 20:24:25.006 100000 FEE 432991 21427 6014605 2024-02-20 20:24:25.006 2024-02-20 20:24:25.006 900000 TIP 432991 16848 6014613 2024-02-20 20:25:32.627 2024-02-20 20:25:32.627 1000000 FEE 432994 1745 6014623 2024-02-20 20:26:49.83 2024-02-20 20:26:49.83 1000 FEE 432998 666 6014626 2024-02-20 20:26:59.245 2024-02-20 20:26:59.245 0 FEE 432995 1729 6014631 2024-02-20 20:27:49.388 2024-02-20 20:27:49.388 2100 FEE 432933 6688 6014632 2024-02-20 20:27:49.388 2024-02-20 20:27:49.388 18900 TIP 432933 21047 6014640 2024-02-20 20:29:01.691 2024-02-20 20:29:01.691 1000 FEE 433004 15617 6014646 2024-02-20 20:29:49.846 2024-02-20 20:29:49.846 3000 FEE 433004 12277 6014647 2024-02-20 20:29:49.846 2024-02-20 20:29:49.846 27000 TIP 433004 894 6014648 2024-02-20 20:29:50.929 2024-02-20 20:29:50.929 1000 FEE 433005 15925 6014658 2024-02-20 20:31:00.472 2024-02-20 20:31:00.472 1000 FEE 433006 5728 6014660 2024-02-20 20:31:13.425 2024-02-20 20:31:13.425 2100 FEE 432961 16042 6014661 2024-02-20 20:31:13.425 2024-02-20 20:31:13.425 18900 TIP 432961 6471 6014663 2024-02-20 20:32:29.155 2024-02-20 20:32:29.155 1000 FEE 433007 18232 6014664 2024-02-20 20:32:36.605 2024-02-20 20:32:36.605 30000 FEE 432982 21131 6014665 2024-02-20 20:32:36.605 2024-02-20 20:32:36.605 270000 TIP 432982 19303 6014667 2024-02-20 20:33:29.097 2024-02-20 20:33:29.097 1000 FEE 433008 685 6014671 2024-02-20 20:35:40.078 2024-02-20 20:35:40.078 3300 FEE 432984 2735 6014672 2024-02-20 20:35:40.078 2024-02-20 20:35:40.078 29700 TIP 432984 18170 6014679 2024-02-20 20:35:51.07 2024-02-20 20:35:51.07 0 FEE 433008 21048 6014685 2024-02-20 20:36:19.74 2024-02-20 20:36:19.74 100 FEE 432961 766 6014686 2024-02-20 20:36:19.74 2024-02-20 20:36:19.74 900 TIP 432961 19967 6014689 2024-02-20 20:36:51.647 2024-02-20 20:36:51.647 4000 FEE 432873 2402 6014690 2024-02-20 20:36:51.647 2024-02-20 20:36:51.647 36000 TIP 432873 14280 6014691 2024-02-20 20:36:53.384 2024-02-20 20:36:53.384 0 FEE 433009 644 6014694 2024-02-20 20:36:55.589 2024-02-20 20:36:55.589 2000 FEE 432889 2774 6014695 2024-02-20 20:36:55.589 2024-02-20 20:36:55.589 18000 TIP 432889 11314 6014699 2024-02-20 20:37:07.978 2024-02-20 20:37:07.978 1000 FEE 433010 7869 6014700 2024-02-20 20:37:15.16 2024-02-20 20:37:15.16 1000 FEE 433011 3979 6014701 2024-02-20 20:37:42.19 2024-02-20 20:37:42.19 21100 FEE 432957 20022 6014702 2024-02-20 20:37:42.19 2024-02-20 20:37:42.19 189900 TIP 432957 634 6014741 2024-02-20 20:42:00.624 2024-02-20 20:42:00.624 2100 FEE 432563 20185 6014742 2024-02-20 20:42:00.624 2024-02-20 20:42:00.624 18900 TIP 432563 14370 6014743 2024-02-20 20:42:01.072 2024-02-20 20:42:01.072 2100 FEE 432890 9820 6014744 2024-02-20 20:42:01.072 2024-02-20 20:42:01.072 18900 TIP 432890 691 6014746 2024-02-20 20:42:02.159 2024-02-20 20:42:02.159 2100 FEE 432811 11885 6014747 2024-02-20 20:42:02.159 2024-02-20 20:42:02.159 18900 TIP 432811 19189 6014750 2024-02-20 20:42:03.945 2024-02-20 20:42:03.945 2100 FEE 432822 13927 6014751 2024-02-20 20:42:03.945 2024-02-20 20:42:03.945 18900 TIP 432822 13987 6014757 2024-02-20 20:42:06.498 2024-02-20 20:42:06.498 2100 FEE 432921 19117 6014758 2024-02-20 20:42:06.498 2024-02-20 20:42:06.498 18900 TIP 432921 11423 6014761 2024-02-20 20:42:49.443 2024-02-20 20:42:49.443 1000 FEE 432899 837 6014762 2024-02-20 20:42:49.443 2024-02-20 20:42:49.443 9000 TIP 432899 18336 6014771 2024-02-20 20:45:01.646 2024-02-20 20:45:01.646 1000 FEE 433017 1549 6014773 2024-02-20 20:45:12.705 2024-02-20 20:45:12.705 5000 FEE 433013 19836 6014774 2024-02-20 20:45:12.705 2024-02-20 20:45:12.705 45000 TIP 433013 16942 6014775 2024-02-20 20:45:12.709 2024-02-20 20:45:12.709 0 FEE 433014 2338 6014787 2024-02-20 20:47:27.683 2024-02-20 20:47:27.683 1000 FEE 432920 1090 6014788 2024-02-20 20:47:27.683 2024-02-20 20:47:27.683 9000 TIP 432920 20162 6014801 2024-02-20 20:47:56.964 2024-02-20 20:47:56.964 1000 FEE 433014 16684 6014802 2024-02-20 20:47:56.964 2024-02-20 20:47:56.964 9000 TIP 433014 854 6014820 2024-02-20 20:50:30.253 2024-02-20 20:50:30.253 1000 FEE 432245 2614 6014821 2024-02-20 20:50:30.253 2024-02-20 20:50:30.253 9000 TIP 432245 2065 6014825 2024-02-20 20:51:10.374 2024-02-20 20:51:10.374 10000 FEE 433021 6573 6014828 2024-02-20 20:52:40.483 2024-02-20 20:52:40.483 2100 FEE 432986 13753 6014829 2024-02-20 20:52:40.483 2024-02-20 20:52:40.483 18900 TIP 432986 10934 6014831 2024-02-20 20:53:10.42 2024-02-20 20:53:10.42 1000 FEE 433023 6361 6014837 2024-02-20 20:55:25.412 2024-02-20 20:55:25.412 0 FEE 433022 687 6014871 2024-02-20 21:00:00.552 2024-02-20 21:00:00.552 8300 FEE 432920 21332 6014872 2024-02-20 21:00:00.552 2024-02-20 21:00:00.552 74700 TIP 432920 2741 6014897 2024-02-20 21:00:03.169 2024-02-20 21:00:03.169 16600 FEE 432920 16353 6014447 2024-02-20 20:12:57.972 2024-02-20 20:12:57.972 18900 TIP 432899 10586 6014457 2024-02-20 20:13:38.603 2024-02-20 20:13:38.603 100 FEE 296200 634 6014458 2024-02-20 20:13:38.603 2024-02-20 20:13:38.603 900 TIP 296200 2718 6014471 2024-02-20 20:14:24.176 2024-02-20 20:14:24.176 1000 FEE 432978 1094 6014494 2024-02-20 20:18:05.384 2024-02-20 20:18:05.384 3300 FEE 432661 19601 6014495 2024-02-20 20:18:05.384 2024-02-20 20:18:05.384 29700 TIP 432661 15488 6014498 2024-02-20 20:18:40.311 2024-02-20 20:18:40.311 1000 FEE 432983 13878 6014513 2024-02-20 20:20:36.81 2024-02-20 20:20:36.81 1000 FEE 432977 4102 6014514 2024-02-20 20:20:36.81 2024-02-20 20:20:36.81 9000 TIP 432977 18809 6014521 2024-02-20 20:20:37.569 2024-02-20 20:20:37.569 1000 FEE 432977 9347 6014522 2024-02-20 20:20:37.569 2024-02-20 20:20:37.569 9000 TIP 432977 21303 6014557 2024-02-20 20:22:11.037 2024-02-20 20:22:11.037 1000 FEE 432986 12169 6014558 2024-02-20 20:22:11.037 2024-02-20 20:22:11.037 9000 TIP 432986 17713 6014576 2024-02-20 20:22:27.703 2024-02-20 20:22:27.703 2100 FEE 432822 10493 6014577 2024-02-20 20:22:27.703 2024-02-20 20:22:27.703 18900 TIP 432822 684 6014597 2024-02-20 20:24:09.842 2024-02-20 20:24:09.842 2100 FEE 432840 618 6014598 2024-02-20 20:24:09.842 2024-02-20 20:24:09.842 18900 TIP 432840 659 6014614 2024-02-20 20:26:02.069 2024-02-20 20:26:02.069 1000 FEE 432995 20657 6014635 2024-02-20 20:27:58.8 2024-02-20 20:27:58.8 2100 FEE 432646 19980 6014636 2024-02-20 20:27:58.8 2024-02-20 20:27:58.8 18900 TIP 432646 20058 6014638 2024-02-20 20:28:31.071 2024-02-20 20:28:31.071 10000 FEE 433002 14731 6014649 2024-02-20 20:30:02.531 2024-02-20 20:30:02.531 27000 FEE 432833 6515 6014650 2024-02-20 20:30:02.531 2024-02-20 20:30:02.531 243000 TIP 432833 1784 6014656 2024-02-20 20:30:12.635 2024-02-20 20:30:12.635 27000 FEE 432814 18539 6014657 2024-02-20 20:30:12.635 2024-02-20 20:30:12.635 243000 TIP 432814 16154 6014681 2024-02-20 20:36:19.423 2024-02-20 20:36:19.423 100 FEE 432961 18241 6014682 2024-02-20 20:36:19.423 2024-02-20 20:36:19.423 900 TIP 432961 1175 6014696 2024-02-20 20:36:55.732 2024-02-20 20:36:55.732 2000 FEE 432889 20854 6014697 2024-02-20 20:36:55.732 2024-02-20 20:36:55.732 18000 TIP 432889 622 6014706 2024-02-20 20:38:06.759 2024-02-20 20:38:06.759 3000 FEE 433008 18231 6014707 2024-02-20 20:38:06.759 2024-02-20 20:38:06.759 27000 TIP 433008 20778 6014712 2024-02-20 20:39:50.018 2024-02-20 20:39:50.018 1000 FEE 432727 10638 6014713 2024-02-20 20:39:50.018 2024-02-20 20:39:50.018 9000 TIP 432727 20006 6014727 2024-02-20 20:41:53.768 2024-02-20 20:41:53.768 2100 FEE 432674 13042 6014728 2024-02-20 20:41:53.768 2024-02-20 20:41:53.768 18900 TIP 432674 18816 6014731 2024-02-20 20:41:55.378 2024-02-20 20:41:55.378 2100 FEE 432661 20430 6014732 2024-02-20 20:41:55.378 2024-02-20 20:41:55.378 18900 TIP 432661 20911 6014739 2024-02-20 20:41:59.944 2024-02-20 20:41:59.944 2100 FEE 432920 1652 6014740 2024-02-20 20:41:59.944 2024-02-20 20:41:59.944 18900 TIP 432920 20187 6014753 2024-02-20 20:42:04.92 2024-02-20 20:42:04.92 2100 FEE 432705 19524 6014754 2024-02-20 20:42:04.92 2024-02-20 20:42:04.92 18900 TIP 432705 13781 6014781 2024-02-20 20:46:52.322 2024-02-20 20:46:52.322 1000 FEE 433019 17030 6014817 2024-02-20 20:50:12.701 2024-02-20 20:50:12.701 21000 FEE 433020 4225 6014840 2024-02-20 20:57:21.302 2024-02-20 20:57:21.302 1000 FEE 433025 12965 6014865 2024-02-20 21:00:00.125 2024-02-20 21:00:00.125 8300 FEE 432920 20272 6014866 2024-02-20 21:00:00.125 2024-02-20 21:00:00.125 74700 TIP 432920 2293 6014877 2024-02-20 21:00:00.895 2024-02-20 21:00:00.895 8300 FEE 432920 811 6014878 2024-02-20 21:00:00.895 2024-02-20 21:00:00.895 74700 TIP 432920 18169 6014879 2024-02-20 21:00:01.181 2024-02-20 21:00:01.181 8300 FEE 432920 894 6014880 2024-02-20 21:00:01.181 2024-02-20 21:00:01.181 74700 TIP 432920 20912 6014881 2024-02-20 21:00:01.443 2024-02-20 21:00:01.443 8300 FEE 432920 18945 6014882 2024-02-20 21:00:01.443 2024-02-20 21:00:01.443 74700 TIP 432920 19031 6014883 2024-02-20 21:00:02.088 2024-02-20 21:00:02.088 8300 FEE 432920 17927 6014884 2024-02-20 21:00:02.088 2024-02-20 21:00:02.088 74700 TIP 432920 1173 6014889 2024-02-20 21:00:02.192 2024-02-20 21:00:02.192 8300 FEE 432920 15536 6014890 2024-02-20 21:00:02.192 2024-02-20 21:00:02.192 74700 TIP 432920 2000 6014909 2024-02-20 21:02:13.714 2024-02-20 21:02:13.714 2300 FEE 433023 9809 6014910 2024-02-20 21:02:13.714 2024-02-20 21:02:13.714 20700 TIP 433023 9334 6014938 2024-02-20 21:06:29.551 2024-02-20 21:06:29.551 1100 FEE 432894 18817 6014939 2024-02-20 21:06:29.551 2024-02-20 21:06:29.551 9900 TIP 432894 9276 6014947 2024-02-20 21:07:28.312 2024-02-20 21:07:28.312 1000 FEE 432913 21356 6014948 2024-02-20 21:07:28.312 2024-02-20 21:07:28.312 9000 TIP 432913 17218 6014957 2024-02-20 21:08:02.311 2024-02-20 21:08:02.311 9000 FEE 432964 18016 6014958 2024-02-20 21:08:02.311 2024-02-20 21:08:02.311 81000 TIP 432964 6749 6014966 2024-02-20 21:08:13.942 2024-02-20 21:08:13.942 1000 FEE 433030 19663 6014979 2024-02-20 21:08:43.004 2024-02-20 21:08:43.004 8300 FEE 432957 20254 6014980 2024-02-20 21:08:43.004 2024-02-20 21:08:43.004 74700 TIP 432957 18017 6014987 2024-02-20 21:08:44.102 2024-02-20 21:08:44.102 8300 FEE 432957 9494 6014988 2024-02-20 21:08:44.102 2024-02-20 21:08:44.102 74700 TIP 432957 14731 6015008 2024-02-20 21:09:18.442 2024-02-20 21:09:18.442 900 FEE 432986 12245 6015009 2024-02-20 21:09:18.442 2024-02-20 21:09:18.442 8100 TIP 432986 1647 6015010 2024-02-20 21:09:36.373 2024-02-20 21:09:36.373 100 FEE 433011 4079 6015011 2024-02-20 21:09:36.373 2024-02-20 21:09:36.373 900 TIP 433011 4074 6015033 2024-02-20 21:11:33.858 2024-02-20 21:11:33.858 90000 FEE 432977 2513 6015034 2024-02-20 21:11:33.858 2024-02-20 21:11:33.858 810000 TIP 432977 19907 6015036 2024-02-20 21:12:37.371 2024-02-20 21:12:37.371 1000 FEE 432920 19199 6015037 2024-02-20 21:12:37.371 2024-02-20 21:12:37.371 9000 TIP 432920 21412 6015040 2024-02-20 21:12:42.913 2024-02-20 21:12:42.913 900 FEE 432953 20117 6015041 2024-02-20 21:12:42.913 2024-02-20 21:12:42.913 8100 TIP 432953 19613 6015057 2024-02-20 21:14:05.673 2024-02-20 21:14:05.673 100 FEE 433020 18678 6015058 2024-02-20 21:14:05.673 2024-02-20 21:14:05.673 900 TIP 433020 1272 6015063 2024-02-20 21:14:17.006 2024-02-20 21:14:17.006 100 FEE 432920 5036 6015064 2024-02-20 21:14:17.006 2024-02-20 21:14:17.006 900 TIP 432920 18640 6015080 2024-02-20 21:16:44.144 2024-02-20 21:16:44.144 3000 FEE 432913 3213 6015081 2024-02-20 21:16:44.144 2024-02-20 21:16:44.144 27000 TIP 432913 10393 6015094 2024-02-20 21:19:37.964 2024-02-20 21:19:37.964 2000 FEE 432913 13843 6015095 2024-02-20 21:19:37.964 2024-02-20 21:19:37.964 18000 TIP 432913 14651 6015114 2024-02-20 21:22:35.559 2024-02-20 21:22:35.559 1000 FEE 433042 4043 6015190 2024-02-20 21:36:00.854 2024-02-20 21:36:00.854 1000 FEE 432910 9820 6015191 2024-02-20 21:36:00.854 2024-02-20 21:36:00.854 9000 TIP 432910 18412 6015219 2024-02-20 21:38:24.211 2024-02-20 21:38:24.211 1000 FEE 432920 13361 6015220 2024-02-20 21:38:24.211 2024-02-20 21:38:24.211 9000 TIP 432920 14080 6015233 2024-02-20 21:39:37.424 2024-02-20 21:39:37.424 100 FEE 433055 1060 6015234 2024-02-20 21:39:37.424 2024-02-20 21:39:37.424 900 TIP 433055 11073 6015255 2024-02-20 21:41:09.478 2024-02-20 21:41:09.478 4000 FEE 432873 7389 6015256 2024-02-20 21:41:09.478 2024-02-20 21:41:09.478 36000 TIP 432873 17568 6015257 2024-02-20 21:41:11.599 2024-02-20 21:41:11.599 4000 FEE 432920 701 6015258 2024-02-20 21:41:11.599 2024-02-20 21:41:11.599 36000 TIP 432920 15147 6015282 2024-02-20 21:42:09.6 2024-02-20 21:42:09.6 10000 FEE 432619 861 6015283 2024-02-20 21:42:09.6 2024-02-20 21:42:09.6 90000 TIP 432619 761 6015290 2024-02-20 21:43:25.138 2024-02-20 21:43:25.138 1000 FEE 433062 17710 6015307 2024-02-20 21:44:45.438 2024-02-20 21:44:45.438 0 FEE 433062 2204 6015312 2024-02-20 21:45:02.581 2024-02-20 21:45:02.581 1000 FEE 431507 8926 6015313 2024-02-20 21:45:02.581 2024-02-20 21:45:02.581 9000 TIP 431507 18231 6015319 2024-02-20 21:45:11.323 2024-02-20 21:45:11.323 1000 FEE 432804 13921 6015320 2024-02-20 21:45:11.323 2024-02-20 21:45:11.323 9000 TIP 432804 17392 6015344 2024-02-20 21:46:44.147 2024-02-20 21:46:44.147 0 FEE 433067 4322 6014571 2024-02-20 20:22:19.746 2024-02-20 20:22:19.746 18900 TIP 432890 18932 6014587 2024-02-20 20:22:53.196 2024-02-20 20:22:53.196 0 FEE 432981 14906 6014602 2024-02-20 20:24:24.196 2024-02-20 20:24:24.196 3000 FEE 432882 7418 6014603 2024-02-20 20:24:24.196 2024-02-20 20:24:24.196 27000 TIP 432882 9200 6014630 2024-02-20 20:27:25.254 2024-02-20 20:27:25.254 10000 FEE 433001 1003 6014644 2024-02-20 20:29:42.548 2024-02-20 20:29:42.548 3000 FEE 433003 21521 6014645 2024-02-20 20:29:42.548 2024-02-20 20:29:42.548 27000 TIP 433003 2088 6014669 2024-02-20 20:34:19.86 2024-02-20 20:34:19.86 1000 FEE 433009 14791 6014673 2024-02-20 20:35:40.146 2024-02-20 20:35:40.146 3300 FEE 432984 13055 6014674 2024-02-20 20:35:40.146 2024-02-20 20:35:40.146 29700 TIP 432984 13348 6014677 2024-02-20 20:35:43.37 2024-02-20 20:35:43.37 10000 FEE 432984 691 6014678 2024-02-20 20:35:43.37 2024-02-20 20:35:43.37 90000 TIP 432984 1114 6014704 2024-02-20 20:38:05.082 2024-02-20 20:38:05.082 21100 FEE 432873 9916 6014705 2024-02-20 20:38:05.082 2024-02-20 20:38:05.082 189900 TIP 432873 5495 6014718 2024-02-20 20:41:18.224 2024-02-20 20:41:18.224 1000 FEE 432576 618 6014719 2024-02-20 20:41:18.224 2024-02-20 20:41:18.224 9000 TIP 432576 17682 6014720 2024-02-20 20:41:24.272 2024-02-20 20:41:24.272 1000 FEE 432603 16350 6014721 2024-02-20 20:41:24.272 2024-02-20 20:41:24.272 9000 TIP 432603 11776 6014723 2024-02-20 20:41:49.677 2024-02-20 20:41:49.677 2100 FEE 432873 19471 6014724 2024-02-20 20:41:49.677 2024-02-20 20:41:49.677 18900 TIP 432873 16004 6014733 2024-02-20 20:41:55.889 2024-02-20 20:41:55.889 2100 FEE 432899 11477 6014734 2024-02-20 20:41:55.889 2024-02-20 20:41:55.889 18900 TIP 432899 16842 6014737 2024-02-20 20:41:59.585 2024-02-20 20:41:59.585 1000 FEE 432563 1970 6014738 2024-02-20 20:41:59.585 2024-02-20 20:41:59.585 9000 TIP 432563 11942 6014745 2024-02-20 20:42:02.146 2024-02-20 20:42:02.146 0 FEE 433014 11240 6014766 2024-02-20 20:43:22.876 2024-02-20 20:43:22.876 1000 FEE 433000 18524 6014767 2024-02-20 20:43:22.876 2024-02-20 20:43:22.876 9000 TIP 433000 929 6014785 2024-02-20 20:47:27.153 2024-02-20 20:47:27.153 1000 FEE 432920 19785 6014786 2024-02-20 20:47:27.153 2024-02-20 20:47:27.153 9000 TIP 432920 20706 6014791 2024-02-20 20:47:28.934 2024-02-20 20:47:28.934 1000 FEE 432920 21216 6014792 2024-02-20 20:47:28.934 2024-02-20 20:47:28.934 9000 TIP 432920 5306 6014795 2024-02-20 20:47:29.944 2024-02-20 20:47:29.944 1000 FEE 432873 5195 6014796 2024-02-20 20:47:29.944 2024-02-20 20:47:29.944 9000 TIP 432873 18271 6014799 2024-02-20 20:47:40.183 2024-02-20 20:47:40.183 1000 FEE 432961 20353 6014800 2024-02-20 20:47:40.183 2024-02-20 20:47:40.183 9000 TIP 432961 14255 6014833 2024-02-20 20:54:10.214 2024-02-20 20:54:10.214 10000 FEE 433024 12072 6014849 2024-02-20 20:59:58.192 2024-02-20 20:59:58.192 8300 FEE 432920 3686 6014850 2024-02-20 20:59:58.192 2024-02-20 20:59:58.192 74700 TIP 432920 17050 6014853 2024-02-20 20:59:58.506 2024-02-20 20:59:58.506 8300 FEE 432920 21344 6014854 2024-02-20 20:59:58.506 2024-02-20 20:59:58.506 74700 TIP 432920 11018 6014885 2024-02-20 21:00:02.121 2024-02-20 21:00:02.121 8300 FEE 432920 1628 6014886 2024-02-20 21:00:02.121 2024-02-20 21:00:02.121 74700 TIP 432920 19309 6014907 2024-02-20 21:01:49.064 2024-02-20 21:01:49.064 1000 FEE 433029 11314 6014913 2024-02-20 21:02:46.095 2024-02-20 21:02:46.095 2100 FEE 433020 640 6014914 2024-02-20 21:02:46.095 2024-02-20 21:02:46.095 18900 TIP 433020 20683 6014933 2024-02-20 21:05:28.073 2024-02-20 21:05:28.073 1000 FEE 432873 9331 6014934 2024-02-20 21:05:28.073 2024-02-20 21:05:28.073 9000 TIP 432873 828 6014941 2024-02-20 21:07:24.099 2024-02-20 21:07:24.099 1000 FEE 432986 4624 6014942 2024-02-20 21:07:24.099 2024-02-20 21:07:24.099 9000 TIP 432986 21506 6014943 2024-02-20 21:07:25.129 2024-02-20 21:07:25.129 1000 FEE 432957 19417 6014944 2024-02-20 21:07:25.129 2024-02-20 21:07:25.129 9000 TIP 432957 4167 6014945 2024-02-20 21:07:26.94 2024-02-20 21:07:26.94 1000 FEE 432921 18138 6014946 2024-02-20 21:07:26.94 2024-02-20 21:07:26.94 9000 TIP 432921 986 6014960 2024-02-20 21:08:05.143 2024-02-20 21:08:05.143 8300 FEE 433016 19837 6014961 2024-02-20 21:08:05.143 2024-02-20 21:08:05.143 74700 TIP 433016 15843 6014975 2024-02-20 21:08:42.716 2024-02-20 21:08:42.716 8300 FEE 432957 7847 6014976 2024-02-20 21:08:42.716 2024-02-20 21:08:42.716 74700 TIP 432957 21051 6014995 2024-02-20 21:08:51.477 2024-02-20 21:08:51.477 100 FEE 432993 2722 6014996 2024-02-20 21:08:51.477 2024-02-20 21:08:51.477 900 TIP 432993 21437 6015002 2024-02-20 21:09:09.033 2024-02-20 21:09:09.033 900 FEE 432987 18877 6015003 2024-02-20 21:09:09.033 2024-02-20 21:09:09.033 8100 TIP 432987 9036 6015004 2024-02-20 21:09:15.045 2024-02-20 21:09:15.045 9000 FEE 432987 18313 6015005 2024-02-20 21:09:15.045 2024-02-20 21:09:15.045 81000 TIP 432987 20090 6015016 2024-02-20 21:09:39.528 2024-02-20 21:09:39.528 100 FEE 432982 17212 6015017 2024-02-20 21:09:39.528 2024-02-20 21:09:39.528 900 TIP 432982 979 6015018 2024-02-20 21:09:39.73 2024-02-20 21:09:39.73 900 FEE 432982 10007 6015019 2024-02-20 21:09:39.73 2024-02-20 21:09:39.73 8100 TIP 432982 11776 6015032 2024-02-20 21:11:25.22 2024-02-20 21:11:25.22 1000 FEE 433033 19320 6015045 2024-02-20 21:12:56.513 2024-02-20 21:12:56.513 100 FEE 432957 18016 6015046 2024-02-20 21:12:56.513 2024-02-20 21:12:56.513 900 TIP 432957 7989 6015065 2024-02-20 21:14:42.208 2024-02-20 21:14:42.208 1600 FEE 433030 21491 6015066 2024-02-20 21:14:42.208 2024-02-20 21:14:42.208 14400 TIP 433030 19541 6015092 2024-02-20 21:19:30.466 2024-02-20 21:19:30.466 2000 FEE 432899 5128 6015093 2024-02-20 21:19:30.466 2024-02-20 21:19:30.466 18000 TIP 432899 20906 6015121 2024-02-20 21:25:00.297 2024-02-20 21:25:00.297 1000 FEE 433043 7675 6015123 2024-02-20 21:25:49.061 2024-02-20 21:25:49.061 0 FEE 433043 2367 6015147 2024-02-20 21:30:07.683 2024-02-20 21:30:07.683 1000 FEE 433047 7891 6015148 2024-02-20 21:30:07.683 2024-02-20 21:30:07.683 9000 TIP 433047 2309 6015149 2024-02-20 21:30:08.767 2024-02-20 21:30:08.767 0 FEE 433047 20963 6015163 2024-02-20 21:33:32.622 2024-02-20 21:33:32.622 2600 FEE 432980 3478 6015164 2024-02-20 21:33:32.622 2024-02-20 21:33:32.622 23400 TIP 432980 722 6015195 2024-02-20 21:36:15.592 2024-02-20 21:36:15.592 10000 FEE 433047 9438 6015196 2024-02-20 21:36:15.592 2024-02-20 21:36:15.592 90000 TIP 433047 14663 6015214 2024-02-20 21:37:41.216 2024-02-20 21:37:41.216 2600 FEE 432961 20817 6015215 2024-02-20 21:37:41.216 2024-02-20 21:37:41.216 23400 TIP 432961 13854 6015217 2024-02-20 21:38:12.345 2024-02-20 21:38:12.345 1000 FEE 433054 749 6015221 2024-02-20 21:38:33.853 2024-02-20 21:38:33.853 210000 FEE 433056 9026 6015235 2024-02-20 21:39:38.055 2024-02-20 21:39:38.055 200 FEE 433055 1720 6015236 2024-02-20 21:39:38.055 2024-02-20 21:39:38.055 1800 TIP 433055 1046 6015265 2024-02-20 21:41:14.05 2024-02-20 21:41:14.05 4000 FEE 432899 15690 6015266 2024-02-20 21:41:14.05 2024-02-20 21:41:14.05 36000 TIP 432899 19841 6015274 2024-02-20 21:41:20.848 2024-02-20 21:41:20.848 4000 FEE 432982 20840 6015275 2024-02-20 21:41:20.848 2024-02-20 21:41:20.848 36000 TIP 432982 4062 6015287 2024-02-20 21:43:05.775 2024-02-20 21:43:05.775 1000 FEE 433061 21242 6015294 2024-02-20 21:43:56.389 2024-02-20 21:43:56.389 1000 FEE 432661 7097 6015295 2024-02-20 21:43:56.389 2024-02-20 21:43:56.389 9000 TIP 432661 14449 6015310 2024-02-20 21:44:59.82 2024-02-20 21:44:59.82 1000 FEE 432763 12562 6015311 2024-02-20 21:44:59.82 2024-02-20 21:44:59.82 9000 TIP 432763 3745 6015328 2024-02-20 21:45:31.707 2024-02-20 21:45:31.707 10000 FEE 433069 8326 6015343 2024-02-20 21:46:40.334 2024-02-20 21:46:40.334 1000 FEE 433071 17106 6015396 2024-02-20 21:51:12.95 2024-02-20 21:51:12.95 900 FEE 433031 8074 6015397 2024-02-20 21:51:12.95 2024-02-20 21:51:12.95 8100 TIP 433031 11298 6015398 2024-02-20 21:51:13.621 2024-02-20 21:51:13.621 9000 FEE 433031 6430 6015399 2024-02-20 21:51:13.621 2024-02-20 21:51:13.621 81000 TIP 433031 12946 6015445 2024-02-20 21:55:01.154 2024-02-20 21:55:01.154 100 FEE 433066 15060 6015446 2024-02-20 21:55:01.154 2024-02-20 21:55:01.154 900 TIP 433066 11873 6015447 2024-02-20 21:55:01.303 2024-02-20 21:55:01.303 900 FEE 433066 9275 6014659 2024-02-20 20:31:04.172 2024-02-20 20:31:04.172 1000 STREAM 141924 11516 6014668 2024-02-20 20:34:04.209 2024-02-20 20:34:04.209 1000 STREAM 141924 18314 6014670 2024-02-20 20:35:04.23 2024-02-20 20:35:04.23 1000 STREAM 141924 2111 6014680 2024-02-20 20:36:04.232 2024-02-20 20:36:04.232 1000 STREAM 141924 1439 6014698 2024-02-20 20:37:04.229 2024-02-20 20:37:04.229 1000 STREAM 141924 2711 6014711 2024-02-20 20:39:04.252 2024-02-20 20:39:04.252 1000 STREAM 141924 9551 6014717 2024-02-20 20:41:04.376 2024-02-20 20:41:04.376 1000 STREAM 141924 11873 6014763 2024-02-20 20:43:04.297 2024-02-20 20:43:04.297 1000 STREAM 141924 21172 6014772 2024-02-20 20:45:04.311 2024-02-20 20:45:04.311 1000 STREAM 141924 12334 6014780 2024-02-20 20:46:04.337 2024-02-20 20:46:04.337 1000 STREAM 141924 1718 6014782 2024-02-20 20:47:04.339 2024-02-20 20:47:04.339 1000 STREAM 141924 6555 6014805 2024-02-20 20:48:04.353 2024-02-20 20:48:04.353 1000 STREAM 141924 8459 6014816 2024-02-20 20:50:04.369 2024-02-20 20:50:04.369 1000 STREAM 141924 2829 6014826 2024-02-20 20:52:04.396 2024-02-20 20:52:04.396 1000 STREAM 141924 2444 6014832 2024-02-20 20:54:04.6 2024-02-20 20:54:04.6 1000 STREAM 141924 10270 6014838 2024-02-20 20:56:04.643 2024-02-20 20:56:04.643 1000 STREAM 141924 12368 6014736 2024-02-20 20:41:56.556 2024-02-20 20:41:56.556 18900 TIP 432736 16124 6014759 2024-02-20 20:42:09.399 2024-02-20 20:42:09.399 2100 FEE 432615 20551 6014760 2024-02-20 20:42:09.399 2024-02-20 20:42:09.399 18900 TIP 432615 6741 6014764 2024-02-20 20:43:22.359 2024-02-20 20:43:22.359 1000 FEE 433000 2942 6014765 2024-02-20 20:43:22.359 2024-02-20 20:43:22.359 9000 TIP 433000 21138 6014768 2024-02-20 20:43:50.179 2024-02-20 20:43:50.179 10000 FEE 433015 21451 6014776 2024-02-20 20:45:27.803 2024-02-20 20:45:27.803 1000 FEE 433018 2583 6014777 2024-02-20 20:45:30.224 2024-02-20 20:45:30.224 0 FEE 433014 733 6014789 2024-02-20 20:47:28.325 2024-02-20 20:47:28.325 1000 FEE 432920 4570 6014790 2024-02-20 20:47:28.325 2024-02-20 20:47:28.325 9000 TIP 432920 21492 6014797 2024-02-20 20:47:31.364 2024-02-20 20:47:31.364 1000 FEE 432920 15762 6014798 2024-02-20 20:47:31.364 2024-02-20 20:47:31.364 9000 TIP 432920 14247 6014818 2024-02-20 20:50:21.242 2024-02-20 20:50:21.242 1000 FEE 432872 10311 6014819 2024-02-20 20:50:21.242 2024-02-20 20:50:21.242 9000 TIP 432872 20340 6014822 2024-02-20 20:50:38.81 2024-02-20 20:50:38.81 1000 FEE 432899 15052 6014823 2024-02-20 20:50:38.81 2024-02-20 20:50:38.81 9000 TIP 432899 11819 6014834 2024-02-20 20:54:30.498 2024-02-20 20:54:30.498 100 FEE 432992 21249 6014835 2024-02-20 20:54:30.498 2024-02-20 20:54:30.498 900 TIP 432992 21532 6014841 2024-02-20 20:57:48.059 2024-02-20 20:57:48.059 0 FEE 433025 14650 6014842 2024-02-20 20:58:04.193 2024-02-20 20:58:04.193 1000 STREAM 141924 19689 6014844 2024-02-20 20:59:04.195 2024-02-20 20:59:04.195 1000 STREAM 141924 18270 6014845 2024-02-20 20:59:57.966 2024-02-20 20:59:57.966 8300 FEE 432920 10693 6014846 2024-02-20 20:59:57.966 2024-02-20 20:59:57.966 74700 TIP 432920 2342 6014875 2024-02-20 21:00:00.781 2024-02-20 21:00:00.781 8300 FEE 432920 10719 6014876 2024-02-20 21:00:00.781 2024-02-20 21:00:00.781 74700 TIP 432920 1772 6014887 2024-02-20 21:00:02.152 2024-02-20 21:00:02.152 8300 FEE 432920 11750 6014888 2024-02-20 21:00:02.152 2024-02-20 21:00:02.152 74700 TIP 432920 12368 6014895 2024-02-20 21:00:02.888 2024-02-20 21:00:02.888 8300 FEE 432920 9611 6014896 2024-02-20 21:00:02.888 2024-02-20 21:00:02.888 74700 TIP 432920 20840 6014899 2024-02-20 21:00:04.261 2024-02-20 21:00:04.261 1000 STREAM 141924 9551 6014915 2024-02-20 21:02:55.02 2024-02-20 21:02:55.02 21000 DONT_LIKE_THIS 433002 21589 6014916 2024-02-20 21:03:04.234 2024-02-20 21:03:04.234 1000 STREAM 141924 21201 6014940 2024-02-20 21:07:04.349 2024-02-20 21:07:04.349 1000 STREAM 141924 12951 6014953 2024-02-20 21:08:00.783 2024-02-20 21:08:00.783 900 FEE 432964 9476 6014954 2024-02-20 21:08:00.783 2024-02-20 21:08:00.783 8100 TIP 432964 663 6014955 2024-02-20 21:08:01.429 2024-02-20 21:08:01.429 8300 FEE 432910 20802 6014956 2024-02-20 21:08:01.429 2024-02-20 21:08:01.429 74700 TIP 432910 18380 6014959 2024-02-20 21:08:04.365 2024-02-20 21:08:04.365 1000 STREAM 141924 6268 6014962 2024-02-20 21:08:06.211 2024-02-20 21:08:06.211 8300 FEE 433025 8508 6014963 2024-02-20 21:08:06.211 2024-02-20 21:08:06.211 74700 TIP 433025 7983 6014981 2024-02-20 21:08:43.113 2024-02-20 21:08:43.113 8300 FEE 432957 636 6014982 2024-02-20 21:08:43.113 2024-02-20 21:08:43.113 74700 TIP 432957 2776 6014983 2024-02-20 21:08:43.768 2024-02-20 21:08:43.768 8300 FEE 432957 5806 6014984 2024-02-20 21:08:43.768 2024-02-20 21:08:43.768 74700 TIP 432957 5495 6014993 2024-02-20 21:08:44.917 2024-02-20 21:08:44.917 8300 FEE 432957 17183 6014994 2024-02-20 21:08:44.917 2024-02-20 21:08:44.917 74700 TIP 432957 20179 6014999 2024-02-20 21:09:04.415 2024-02-20 21:09:04.415 1000 STREAM 141924 959 6015020 2024-02-20 21:09:40.682 2024-02-20 21:09:40.682 9000 FEE 432982 6383 6015021 2024-02-20 21:09:40.682 2024-02-20 21:09:40.682 81000 TIP 432982 20826 6015030 2024-02-20 21:10:26.681 2024-02-20 21:10:26.681 1000 FEE 433032 8287 6015059 2024-02-20 21:14:05.93 2024-02-20 21:14:05.93 900 FEE 433020 4345 6015060 2024-02-20 21:14:05.93 2024-02-20 21:14:05.93 8100 TIP 433020 20730 6015073 2024-02-20 21:15:04.467 2024-02-20 21:15:04.467 1000 STREAM 141924 20730 6015076 2024-02-20 21:15:10.324 2024-02-20 21:15:10.324 1000 FEE 433035 8095 6015082 2024-02-20 21:16:44.708 2024-02-20 21:16:44.708 27000 FEE 432913 14465 6015083 2024-02-20 21:16:44.708 2024-02-20 21:16:44.708 243000 TIP 432913 18351 6015084 2024-02-20 21:17:04.481 2024-02-20 21:17:04.481 1000 STREAM 141924 9874 6015086 2024-02-20 21:18:04.495 2024-02-20 21:18:04.495 1000 STREAM 141924 1354 6015109 2024-02-20 21:20:04.518 2024-02-20 21:20:04.518 1000 STREAM 141924 5759 6015110 2024-02-20 21:21:04.512 2024-02-20 21:21:04.512 1000 STREAM 141924 2437 6015126 2024-02-20 21:26:04.622 2024-02-20 21:26:04.622 1000 STREAM 141924 21040 6015134 2024-02-20 21:28:04.632 2024-02-20 21:28:04.632 1000 STREAM 141924 5444 6015142 2024-02-20 21:29:19.973 2024-02-20 21:29:19.973 2100 FEE 433020 2748 6015143 2024-02-20 21:29:19.973 2024-02-20 21:29:19.973 18900 TIP 433020 997 6015146 2024-02-20 21:30:04.647 2024-02-20 21:30:04.647 1000 STREAM 141924 8544 6015153 2024-02-20 21:31:04.632 2024-02-20 21:31:04.632 1000 STREAM 141924 18314 6015201 2024-02-20 21:36:36.986 2024-02-20 21:36:36.986 200 FEE 433047 649 6015202 2024-02-20 21:36:36.986 2024-02-20 21:36:36.986 1800 TIP 433047 15336 6015216 2024-02-20 21:38:04.823 2024-02-20 21:38:04.823 1000 STREAM 141924 9346 6015224 2024-02-20 21:38:42.86 2024-02-20 21:38:42.86 2100 FEE 432957 11590 6015225 2024-02-20 21:38:42.86 2024-02-20 21:38:42.86 18900 TIP 432957 21398 6015232 2024-02-20 21:39:04.854 2024-02-20 21:39:04.854 1000 STREAM 141924 14941 6015245 2024-02-20 21:40:02.227 2024-02-20 21:40:02.227 1000 FEE 433057 9426 6015246 2024-02-20 21:40:04.865 2024-02-20 21:40:04.865 1000 STREAM 141924 18170 6015254 2024-02-20 21:41:04.861 2024-02-20 21:41:04.861 1000 STREAM 141924 10862 6015261 2024-02-20 21:41:12.693 2024-02-20 21:41:12.693 4000 FEE 432957 21329 6015262 2024-02-20 21:41:12.693 2024-02-20 21:41:12.693 36000 TIP 432957 18829 6015267 2024-02-20 21:41:15.663 2024-02-20 21:41:15.663 4000 FEE 432661 19980 6015268 2024-02-20 21:41:15.663 2024-02-20 21:41:15.663 36000 TIP 432661 18675 6015269 2024-02-20 21:41:16.31 2024-02-20 21:41:16.31 1000 FEE 433059 1647 6015296 2024-02-20 21:44:04.865 2024-02-20 21:44:04.865 1000 STREAM 141924 20674 6015301 2024-02-20 21:44:23.665 2024-02-20 21:44:23.665 1000 FEE 433064 17148 6015305 2024-02-20 21:44:39.929 2024-02-20 21:44:39.929 1000 FEE 432756 1692 6015306 2024-02-20 21:44:39.929 2024-02-20 21:44:39.929 9000 TIP 432756 9166 6015314 2024-02-20 21:45:03.553 2024-02-20 21:45:03.553 1000 FEE 431507 776 6015315 2024-02-20 21:45:03.553 2024-02-20 21:45:03.553 9000 TIP 431507 5538 6015316 2024-02-20 21:45:04.863 2024-02-20 21:45:04.863 1000 STREAM 141924 18641 6015321 2024-02-20 21:45:16.229 2024-02-20 21:45:16.229 1000 FEE 432898 678 6015322 2024-02-20 21:45:16.229 2024-02-20 21:45:16.229 9000 TIP 432898 2285 6015325 2024-02-20 21:45:25.382 2024-02-20 21:45:25.382 100 FEE 432913 20636 6015326 2024-02-20 21:45:25.382 2024-02-20 21:45:25.382 900 TIP 432913 4126 6015327 2024-02-20 21:45:29.509 2024-02-20 21:45:29.509 1000 FEE 433068 13517 6015333 2024-02-20 21:45:56.827 2024-02-20 21:45:56.827 1000 FEE 433070 20302 6015341 2024-02-20 21:46:11.112 2024-02-20 21:46:11.112 500 FEE 432920 21136 6015342 2024-02-20 21:46:11.112 2024-02-20 21:46:11.112 4500 TIP 432920 15052 6015347 2024-02-20 21:47:03.478 2024-02-20 21:47:03.478 1000 FEE 433072 18873 6015349 2024-02-20 21:47:05.114 2024-02-20 21:47:05.114 1000 STREAM 141924 5779 6015357 2024-02-20 21:48:05.155 2024-02-20 21:48:05.155 1000 STREAM 141924 15273 6015365 2024-02-20 21:48:58.721 2024-02-20 21:48:58.721 1000 FEE 432961 649 6015366 2024-02-20 21:48:58.721 2024-02-20 21:48:58.721 9000 TIP 432961 837 6015372 2024-02-20 21:49:22.849 2024-02-20 21:49:22.849 0 FEE 433075 21012 6015375 2024-02-20 21:49:53.397 2024-02-20 21:49:53.397 1000 FEE 433076 20377 6015385 2024-02-20 21:50:05.228 2024-02-20 21:50:05.228 500 FEE 432910 20254 6015386 2024-02-20 21:50:05.228 2024-02-20 21:50:05.228 4500 TIP 432910 910 6015418 2024-02-20 21:52:05.19 2024-02-20 21:52:05.19 1000 STREAM 141924 20963 6015431 2024-02-20 21:53:10.418 2024-02-20 21:53:10.418 1000 FEE 432834 21208 6015432 2024-02-20 21:53:10.418 2024-02-20 21:53:10.418 9000 TIP 432834 18220 6014898 2024-02-20 21:00:03.169 2024-02-20 21:00:03.169 149400 TIP 432920 861 6014951 2024-02-20 21:08:00.616 2024-02-20 21:08:00.616 100 FEE 432964 19570 6014952 2024-02-20 21:08:00.616 2024-02-20 21:08:00.616 900 TIP 432964 19836 6014964 2024-02-20 21:08:13.11 2024-02-20 21:08:13.11 8300 FEE 432975 706 6014965 2024-02-20 21:08:13.11 2024-02-20 21:08:13.11 74700 TIP 432975 19906 6014985 2024-02-20 21:08:43.93 2024-02-20 21:08:43.93 8300 FEE 432957 13767 6014986 2024-02-20 21:08:43.93 2024-02-20 21:08:43.93 74700 TIP 432957 16267 6015067 2024-02-20 21:14:43.901 2024-02-20 21:14:43.901 90000 FEE 432889 3683 6015068 2024-02-20 21:14:43.901 2024-02-20 21:14:43.901 810000 TIP 432889 15196 6015108 2024-02-20 21:20:01.71 2024-02-20 21:20:01.71 1000 FEE 433039 6798 6015111 2024-02-20 21:21:12.664 2024-02-20 21:21:12.664 1000 FEE 433040 21493 6015150 2024-02-20 21:30:12.224 2024-02-20 21:30:12.224 1000 FEE 433048 9353 6015152 2024-02-20 21:30:57.118 2024-02-20 21:30:57.118 1000 FEE 433050 2460 6015172 2024-02-20 21:34:32.045 2024-02-20 21:34:32.045 2700 FEE 432977 5565 6015173 2024-02-20 21:34:32.045 2024-02-20 21:34:32.045 24300 TIP 432977 913 6015176 2024-02-20 21:34:56.809 2024-02-20 21:34:56.809 10000 FEE 433049 21555 6015177 2024-02-20 21:34:56.809 2024-02-20 21:34:56.809 90000 TIP 433049 4831 6015199 2024-02-20 21:36:34.4 2024-02-20 21:36:34.4 1000 FEE 432918 18310 6015200 2024-02-20 21:36:34.4 2024-02-20 21:36:34.4 9000 TIP 432918 10693 6015212 2024-02-20 21:37:29.197 2024-02-20 21:37:29.197 2600 FEE 433014 19142 6015213 2024-02-20 21:37:29.197 2024-02-20 21:37:29.197 23400 TIP 433014 11967 6015243 2024-02-20 21:39:51.868 2024-02-20 21:39:51.868 1000 FEE 433056 18453 6015244 2024-02-20 21:39:51.868 2024-02-20 21:39:51.868 9000 TIP 433056 4474 6015251 2024-02-20 21:40:45.545 2024-02-20 21:40:45.545 10000 FEE 433043 5746 6015252 2024-02-20 21:40:45.545 2024-02-20 21:40:45.545 90000 TIP 433043 17011 6015276 2024-02-20 21:41:22.296 2024-02-20 21:41:22.296 4000 FEE 432921 1602 6015277 2024-02-20 21:41:22.296 2024-02-20 21:41:22.296 36000 TIP 432921 8269 6015297 2024-02-20 21:44:06.5 2024-02-20 21:44:06.5 3200 FEE 433046 4076 6015298 2024-02-20 21:44:06.5 2024-02-20 21:44:06.5 28800 TIP 433046 8569 6015352 2024-02-20 21:47:27.789 2024-02-20 21:47:27.789 2100 FEE 433066 20291 6015353 2024-02-20 21:47:27.789 2024-02-20 21:47:27.789 18900 TIP 433066 14489 6015378 2024-02-20 21:50:04.742 2024-02-20 21:50:04.742 500 FEE 432910 21249 6015379 2024-02-20 21:50:04.742 2024-02-20 21:50:04.742 4500 TIP 432910 18816 6015389 2024-02-20 21:50:14.797 2024-02-20 21:50:14.797 10000 FEE 433077 15180 6015410 2024-02-20 21:51:43.426 2024-02-20 21:51:43.426 1000 FEE 433067 20539 6015411 2024-02-20 21:51:43.426 2024-02-20 21:51:43.426 9000 TIP 433067 18500 6015436 2024-02-20 21:54:15.647 2024-02-20 21:54:15.647 1000 FEE 432899 20495 6015437 2024-02-20 21:54:15.647 2024-02-20 21:54:15.647 9000 TIP 432899 18351 6015443 2024-02-20 21:54:30.92 2024-02-20 21:54:30.92 1000 FEE 433085 15273 6015454 2024-02-20 21:55:07.595 2024-02-20 21:55:07.595 100 FEE 433074 20778 6015455 2024-02-20 21:55:07.595 2024-02-20 21:55:07.595 900 TIP 433074 10283 6015476 2024-02-20 21:58:34.048 2024-02-20 21:58:34.048 20000 FEE 433088 685 6015477 2024-02-20 21:58:34.048 2024-02-20 21:58:34.048 180000 TIP 433088 17690 6015479 2024-02-20 21:59:06.802 2024-02-20 21:59:06.802 1600 FEE 432873 13046 6015480 2024-02-20 21:59:06.802 2024-02-20 21:59:06.802 14400 TIP 432873 20340 6015490 2024-02-20 22:00:45.151 2024-02-20 22:00:45.151 1000 FEE 238846 7827 6015491 2024-02-20 22:00:45.151 2024-02-20 22:00:45.151 9000 TIP 238846 17494 6015500 2024-02-20 22:01:25.665 2024-02-20 22:01:25.665 8300 FEE 433066 19854 6015501 2024-02-20 22:01:25.665 2024-02-20 22:01:25.665 74700 TIP 433066 2000 6015513 2024-02-20 22:02:10.123 2024-02-20 22:02:10.123 1100 FEE 432920 18736 6015514 2024-02-20 22:02:10.123 2024-02-20 22:02:10.123 9900 TIP 432920 18675 6015518 2024-02-20 22:03:23.979 2024-02-20 22:03:23.979 0 FEE 433093 15119 6015540 2024-02-20 22:06:27.549 2024-02-20 22:06:27.549 1000 FEE 433101 17707 6015548 2024-02-20 22:07:09.87 2024-02-20 22:07:09.87 1000 FEE 433101 2342 6015549 2024-02-20 22:07:09.87 2024-02-20 22:07:09.87 9000 TIP 433101 1617 6015574 2024-02-20 22:09:42.975 2024-02-20 22:09:42.975 1000 FEE 433088 12346 6015575 2024-02-20 22:09:42.975 2024-02-20 22:09:42.975 9000 TIP 433088 2596 6015579 2024-02-20 22:10:05.179 2024-02-20 22:10:05.179 1000 FEE 433107 20058 6015580 2024-02-20 22:10:05.733 2024-02-20 22:10:05.733 100 FEE 433014 6555 6015581 2024-02-20 22:10:05.733 2024-02-20 22:10:05.733 900 TIP 433014 21386 6015592 2024-02-20 22:11:43.271 2024-02-20 22:11:43.271 1000 FEE 433109 12057 6015607 2024-02-20 22:13:49.742 2024-02-20 22:13:49.742 2100 FEE 433108 20257 6015608 2024-02-20 22:13:49.742 2024-02-20 22:13:49.742 18900 TIP 433108 11263 6015616 2024-02-20 22:14:42.689 2024-02-20 22:14:42.689 100000 FEE 433114 21599 6015621 2024-02-20 22:15:18.158 2024-02-20 22:15:18.158 2300 FEE 433108 20897 6015622 2024-02-20 22:15:18.158 2024-02-20 22:15:18.158 20700 TIP 433108 3304 6015633 2024-02-20 22:15:42.471 2024-02-20 22:15:42.471 1000 FEE 433114 15103 6015634 2024-02-20 22:15:42.471 2024-02-20 22:15:42.471 9000 TIP 433114 19581 6015635 2024-02-20 22:15:49.911 2024-02-20 22:15:49.911 1000 FEE 433116 2367 6015636 2024-02-20 22:15:50.388 2024-02-20 22:15:50.388 1000 FEE 433087 5703 6015637 2024-02-20 22:15:50.388 2024-02-20 22:15:50.388 9000 TIP 433087 16348 6015680 2024-02-20 22:21:14.247 2024-02-20 22:21:14.247 1000 FEE 433123 17291 6015681 2024-02-20 22:21:30.812 2024-02-20 22:21:30.812 3000 FEE 433051 876 6015682 2024-02-20 22:21:30.812 2024-02-20 22:21:30.812 27000 TIP 433051 20276 6015691 2024-02-20 22:22:52.829 2024-02-20 22:22:52.829 100 FEE 433123 3461 6015692 2024-02-20 22:22:52.829 2024-02-20 22:22:52.829 900 TIP 433123 19403 6015695 2024-02-20 22:22:53.582 2024-02-20 22:22:53.582 9000 FEE 433123 5708 6015696 2024-02-20 22:22:53.582 2024-02-20 22:22:53.582 81000 TIP 433123 6421 6015700 2024-02-20 22:23:08.478 2024-02-20 22:23:08.478 100 FEE 433042 701 6015701 2024-02-20 22:23:08.478 2024-02-20 22:23:08.478 900 TIP 433042 11430 6015708 2024-02-20 22:23:17.236 2024-02-20 22:23:17.236 900 FEE 433111 2022 6015709 2024-02-20 22:23:17.236 2024-02-20 22:23:17.236 8100 TIP 433111 11522 6015753 2024-02-20 22:28:20.056 2024-02-20 22:28:20.056 3000 FEE 433089 992 6015754 2024-02-20 22:28:20.056 2024-02-20 22:28:20.056 27000 TIP 433089 19148 6015772 2024-02-20 22:29:08.58 2024-02-20 22:29:08.58 7700 FEE 432873 6260 6015773 2024-02-20 22:29:08.58 2024-02-20 22:29:08.58 69300 TIP 432873 20717 6015799 2024-02-20 22:35:47.584 2024-02-20 22:35:47.584 1000 FEE 433130 19941 6015808 2024-02-20 22:37:15.453 2024-02-20 22:37:15.453 100 FEE 433075 1833 6015809 2024-02-20 22:37:15.453 2024-02-20 22:37:15.453 900 TIP 433075 18629 6015836 2024-02-20 22:37:27.05 2024-02-20 22:37:27.05 100 FEE 433075 20973 6015837 2024-02-20 22:37:27.05 2024-02-20 22:37:27.05 900 TIP 433075 20657 6015869 2024-02-20 22:37:32.575 2024-02-20 22:37:32.575 100 FEE 432957 7989 6015870 2024-02-20 22:37:32.575 2024-02-20 22:37:32.575 900 TIP 432957 6749 6015890 2024-02-20 22:39:24.174 2024-02-20 22:39:24.174 1000 FEE 433114 4692 6015891 2024-02-20 22:39:24.174 2024-02-20 22:39:24.174 9000 TIP 433114 686 6015931 2024-02-20 22:44:05.141 2024-02-20 22:44:05.141 1000 FEE 433140 19267 6015983 2024-02-20 22:51:37.119 2024-02-20 22:51:37.119 1000 FEE 433149 20183 6016021 2024-02-20 23:00:16.937 2024-02-20 23:00:16.937 100000 FEE 433156 11750 6016023 2024-02-20 23:01:00.227 2024-02-20 23:01:00.227 1000 FEE 433157 16289 6016042 2024-02-20 23:02:49.667 2024-02-20 23:02:49.667 1000 FEE 433156 720 6016043 2024-02-20 23:02:49.667 2024-02-20 23:02:49.667 9000 TIP 433156 15719 6016066 2024-02-20 23:03:58.797 2024-02-20 23:03:58.797 2000 FEE 433042 6229 6016067 2024-02-20 23:03:58.797 2024-02-20 23:03:58.797 18000 TIP 433042 5057 6016068 2024-02-20 23:04:00.787 2024-02-20 23:04:00.787 1000 FEE 433042 11956 6016069 2024-02-20 23:04:00.787 2024-02-20 23:04:00.787 9000 TIP 433042 1326 6016084 2024-02-20 23:05:41.15 2024-02-20 23:05:41.15 1000 FEE 433161 663 6016093 2024-02-20 23:07:13.745 2024-02-20 23:07:13.745 1000 FEE 433164 20680 6014900 2024-02-20 21:00:28.662 2024-02-20 21:00:28.662 21000 FEE 433027 1320 6014901 2024-02-20 21:00:48.556 2024-02-20 21:00:48.556 300 FEE 432692 13169 6014902 2024-02-20 21:00:48.556 2024-02-20 21:00:48.556 2700 TIP 432692 19465 6014904 2024-02-20 21:01:04.214 2024-02-20 21:01:04.214 1000 STREAM 141924 14791 6014908 2024-02-20 21:02:04.219 2024-02-20 21:02:04.219 1000 STREAM 141924 929 6014919 2024-02-20 21:04:04.237 2024-02-20 21:04:04.237 1000 STREAM 141924 9159 6014926 2024-02-20 21:04:55.015 2024-02-20 21:04:55.015 1000 FEE 433027 18528 6014927 2024-02-20 21:04:55.015 2024-02-20 21:04:55.015 9000 TIP 433027 712 6014930 2024-02-20 21:04:55.661 2024-02-20 21:04:55.661 1000 FEE 433027 18635 6014931 2024-02-20 21:04:55.661 2024-02-20 21:04:55.661 9000 TIP 433027 21418 6014932 2024-02-20 21:05:04.254 2024-02-20 21:05:04.254 1000 STREAM 141924 20073 6014935 2024-02-20 21:06:03.772 2024-02-20 21:06:03.772 1100 FEE 432711 5003 6014936 2024-02-20 21:06:03.772 2024-02-20 21:06:03.772 9900 TIP 432711 12277 6014937 2024-02-20 21:06:04.253 2024-02-20 21:06:04.253 1000 STREAM 141924 2022 6015006 2024-02-20 21:09:18.206 2024-02-20 21:09:18.206 100 FEE 432986 1512 6015007 2024-02-20 21:09:18.206 2024-02-20 21:09:18.206 900 TIP 432986 9084 6015023 2024-02-20 21:09:50.756 2024-02-20 21:09:50.756 100 FEE 432977 880 6015024 2024-02-20 21:09:50.756 2024-02-20 21:09:50.756 900 TIP 432977 16834 6015027 2024-02-20 21:09:52.691 2024-02-20 21:09:52.691 9000 FEE 432977 13903 6015028 2024-02-20 21:09:52.691 2024-02-20 21:09:52.691 81000 TIP 432977 11314 6015029 2024-02-20 21:10:04.477 2024-02-20 21:10:04.477 1000 STREAM 141924 21416 6015031 2024-02-20 21:11:04.448 2024-02-20 21:11:04.448 1000 STREAM 141924 725 6015035 2024-02-20 21:12:04.452 2024-02-20 21:12:04.452 1000 STREAM 141924 21412 6015051 2024-02-20 21:13:04.466 2024-02-20 21:13:04.466 1000 STREAM 141924 19821 6015056 2024-02-20 21:14:04.47 2024-02-20 21:14:04.47 1000 STREAM 141924 9833 6015069 2024-02-20 21:14:46.529 2024-02-20 21:14:46.529 800 FEE 433012 19398 6015070 2024-02-20 21:14:46.529 2024-02-20 21:14:46.529 7200 TIP 433012 11158 6015074 2024-02-20 21:15:07.581 2024-02-20 21:15:07.581 500 FEE 432873 19469 6015075 2024-02-20 21:15:07.581 2024-02-20 21:15:07.581 4500 TIP 432873 19864 6015078 2024-02-20 21:16:04.479 2024-02-20 21:16:04.479 1000 STREAM 141924 4225 6015087 2024-02-20 21:19:04.5 2024-02-20 21:19:04.5 1000 STREAM 141924 15052 6015106 2024-02-20 21:20:00.68 2024-02-20 21:20:00.68 2000 FEE 432987 1175 6015107 2024-02-20 21:20:00.68 2024-02-20 21:20:00.68 18000 TIP 432987 8998 6015113 2024-02-20 21:22:04.525 2024-02-20 21:22:04.525 1000 STREAM 141924 17522 6015115 2024-02-20 21:22:36.317 2024-02-20 21:22:36.317 4000 FEE 432986 15408 6015116 2024-02-20 21:22:36.317 2024-02-20 21:22:36.317 36000 TIP 432986 9242 6015117 2024-02-20 21:23:04.538 2024-02-20 21:23:04.538 1000 STREAM 141924 19759 6015120 2024-02-20 21:24:04.583 2024-02-20 21:24:04.583 1000 STREAM 141924 20280 6015122 2024-02-20 21:25:04.614 2024-02-20 21:25:04.614 1000 STREAM 141924 20970 6015127 2024-02-20 21:26:14.678 2024-02-20 21:26:14.678 90000 FEE 432517 14267 6015128 2024-02-20 21:26:14.678 2024-02-20 21:26:14.678 810000 TIP 432517 940 6015131 2024-02-20 21:27:04.618 2024-02-20 21:27:04.618 1000 STREAM 141924 17209 6015136 2024-02-20 21:29:04.626 2024-02-20 21:29:04.626 1000 STREAM 141924 18040 6015137 2024-02-20 21:29:07.638 2024-02-20 21:29:07.638 2100 FEE 433018 13843 6015138 2024-02-20 21:29:07.638 2024-02-20 21:29:07.638 18900 TIP 433018 6515 6015151 2024-02-20 21:30:19.633 2024-02-20 21:30:19.633 125000 FEE 433049 9342 6015160 2024-02-20 21:32:04.627 2024-02-20 21:32:04.627 1000 STREAM 141924 18446 6015162 2024-02-20 21:33:04.628 2024-02-20 21:33:04.628 1000 STREAM 141924 10273 6015167 2024-02-20 21:34:04.634 2024-02-20 21:34:04.634 1000 STREAM 141924 1008 6015174 2024-02-20 21:34:32.191 2024-02-20 21:34:32.191 2700 FEE 432977 2046 6015175 2024-02-20 21:34:32.191 2024-02-20 21:34:32.191 24300 TIP 432977 1697 6015178 2024-02-20 21:35:04.634 2024-02-20 21:35:04.634 1000 STREAM 141924 899 6015188 2024-02-20 21:35:58.178 2024-02-20 21:35:58.178 1000 FEE 432894 15762 6015189 2024-02-20 21:35:58.178 2024-02-20 21:35:58.178 9000 TIP 432894 16684 6015192 2024-02-20 21:36:04.88 2024-02-20 21:36:04.88 1000 STREAM 141924 9427 6015203 2024-02-20 21:36:48.557 2024-02-20 21:36:48.557 8300 FEE 431844 5758 6015204 2024-02-20 21:36:48.557 2024-02-20 21:36:48.557 74700 TIP 431844 5779 6015205 2024-02-20 21:36:48.938 2024-02-20 21:36:48.938 8300 FEE 431844 17227 6015206 2024-02-20 21:36:48.938 2024-02-20 21:36:48.938 74700 TIP 431844 5499 6015207 2024-02-20 21:37:04.811 2024-02-20 21:37:04.811 1000 STREAM 141924 20133 6015208 2024-02-20 21:37:08.579 2024-02-20 21:37:08.579 1000 FEE 433043 8544 6015209 2024-02-20 21:37:08.579 2024-02-20 21:37:08.579 9000 TIP 433043 17523 6015218 2024-02-20 21:38:14.711 2024-02-20 21:38:14.711 1000 FEE 433055 14818 6015228 2024-02-20 21:38:54.516 2024-02-20 21:38:54.516 2100 FEE 432913 18543 6015229 2024-02-20 21:38:54.516 2024-02-20 21:38:54.516 18900 TIP 432913 666 6015230 2024-02-20 21:38:58.943 2024-02-20 21:38:58.943 2100 FEE 432890 21441 6015231 2024-02-20 21:38:58.943 2024-02-20 21:38:58.943 18900 TIP 432890 1985 6015239 2024-02-20 21:39:39.907 2024-02-20 21:39:39.907 100 FEE 433055 9337 6015240 2024-02-20 21:39:39.907 2024-02-20 21:39:39.907 900 TIP 433055 21334 6015272 2024-02-20 21:41:20.573 2024-02-20 21:41:20.573 10000 FEE 433056 21624 6015273 2024-02-20 21:41:20.573 2024-02-20 21:41:20.573 90000 TIP 433056 16505 6015280 2024-02-20 21:41:58.786 2024-02-20 21:41:58.786 100000 FEE 433060 19633 6015281 2024-02-20 21:42:04.865 2024-02-20 21:42:04.865 1000 STREAM 141924 19815 6015286 2024-02-20 21:43:04.87 2024-02-20 21:43:04.87 1000 STREAM 141924 16177 6015291 2024-02-20 21:43:47.068 2024-02-20 21:43:47.068 1000 FEE 433063 14045 6015302 2024-02-20 21:44:28.446 2024-02-20 21:44:28.446 1000 FEE 432776 8841 6015303 2024-02-20 21:44:28.446 2024-02-20 21:44:28.446 9000 TIP 432776 19462 6015304 2024-02-20 21:44:39.532 2024-02-20 21:44:39.532 1000 FEE 433065 18637 6015323 2024-02-20 21:45:17.851 2024-02-20 21:45:17.851 1000 FEE 432793 16229 6015324 2024-02-20 21:45:17.851 2024-02-20 21:45:17.851 9000 TIP 432793 18556 6015329 2024-02-20 21:45:44.969 2024-02-20 21:45:44.969 10000 FEE 432511 10112 6015330 2024-02-20 21:45:44.969 2024-02-20 21:45:44.969 90000 TIP 432511 1316 6015338 2024-02-20 21:46:04.868 2024-02-20 21:46:04.868 1000 STREAM 141924 20754 6015345 2024-02-20 21:47:02.73 2024-02-20 21:47:02.73 1000 FEE 433056 21063 6015346 2024-02-20 21:47:02.73 2024-02-20 21:47:02.73 9000 TIP 433056 4831 6015369 2024-02-20 21:49:05.166 2024-02-20 21:49:05.166 1000 STREAM 141924 762 6015384 2024-02-20 21:50:05.201 2024-02-20 21:50:05.201 1000 STREAM 141924 16670 6015392 2024-02-20 21:50:53.587 2024-02-20 21:50:53.587 1000 FEE 433078 15282 6015393 2024-02-20 21:51:05.188 2024-02-20 21:51:05.188 1000 STREAM 141924 8133 6015404 2024-02-20 21:51:35.152 2024-02-20 21:51:35.152 100 FEE 430601 16354 6015405 2024-02-20 21:51:35.152 2024-02-20 21:51:35.152 900 TIP 430601 19174 6015420 2024-02-20 21:52:47.904 2024-02-20 21:52:47.904 1000 FEE 433080 19613 6015428 2024-02-20 21:52:56.132 2024-02-20 21:52:56.132 10000 FEE 433031 837 6015429 2024-02-20 21:52:56.132 2024-02-20 21:52:56.132 90000 TIP 433031 19637 6015430 2024-02-20 21:53:05.201 2024-02-20 21:53:05.201 1000 STREAM 141924 13216 6015441 2024-02-20 21:54:22.941 2024-02-20 21:54:22.941 1000 FEE 433083 16432 6015453 2024-02-20 21:55:05.355 2024-02-20 21:55:05.355 1000 STREAM 141924 15146 6015456 2024-02-20 21:55:07.791 2024-02-20 21:55:07.791 900 FEE 433074 20481 6015457 2024-02-20 21:55:07.791 2024-02-20 21:55:07.791 8100 TIP 433074 18423 6015461 2024-02-20 21:56:05.354 2024-02-20 21:56:05.354 1000 STREAM 141924 10698 6015467 2024-02-20 21:57:07.279 2024-02-20 21:57:07.279 1000 FEE 433088 2065 6015494 2024-02-20 22:01:01.448 2024-02-20 22:01:01.448 1000 FEE 433092 17570 6015495 2024-02-20 22:01:05.379 2024-02-20 22:01:05.379 1000 STREAM 141924 20015 6015496 2024-02-20 22:01:11.959 2024-02-20 22:01:11.959 4000 FEE 433074 16356 6015497 2024-02-20 22:01:11.959 2024-02-20 22:01:11.959 36000 TIP 433074 16942 6015498 2024-02-20 22:01:25.411 2024-02-20 22:01:25.411 8300 FEE 433066 2609 6015499 2024-02-20 22:01:25.411 2024-02-20 22:01:25.411 74700 TIP 433066 1959 6015125 2024-02-20 21:26:02.809 2024-02-20 21:26:02.809 810000 TIP 432957 16347 6015135 2024-02-20 21:28:48.21 2024-02-20 21:28:48.21 1000 FEE 433044 2327 6015144 2024-02-20 21:29:44.608 2024-02-20 21:29:44.608 1000 FEE 433046 11450 6015145 2024-02-20 21:29:53.395 2024-02-20 21:29:53.395 100000 FEE 433047 19375 6015156 2024-02-20 21:31:28.498 2024-02-20 21:31:28.498 2500 FEE 432884 8916 6015157 2024-02-20 21:31:28.498 2024-02-20 21:31:28.498 22500 TIP 432884 18412 6015168 2024-02-20 21:34:31.686 2024-02-20 21:34:31.686 5400 FEE 432977 11956 6015169 2024-02-20 21:34:31.686 2024-02-20 21:34:31.686 48600 TIP 432977 9036 6015180 2024-02-20 21:35:34.854 2024-02-20 21:35:34.854 1000 FEE 433052 20599 6015184 2024-02-20 21:35:57.529 2024-02-20 21:35:57.529 900 FEE 433050 21247 6015185 2024-02-20 21:35:57.529 2024-02-20 21:35:57.529 8100 TIP 433050 13587 6015222 2024-02-20 21:38:37.754 2024-02-20 21:38:37.754 2100 FEE 432920 12516 6015223 2024-02-20 21:38:37.754 2024-02-20 21:38:37.754 18900 TIP 432920 4322 6015226 2024-02-20 21:38:43.667 2024-02-20 21:38:43.667 2600 FEE 433043 20187 6015227 2024-02-20 21:38:43.667 2024-02-20 21:38:43.667 23400 TIP 433043 2537 6015259 2024-02-20 21:41:12.289 2024-02-20 21:41:12.289 4000 FEE 432889 8074 6015260 2024-02-20 21:41:12.289 2024-02-20 21:41:12.289 36000 TIP 432889 15119 6015263 2024-02-20 21:41:13.452 2024-02-20 21:41:13.452 4000 FEE 432674 6382 6015264 2024-02-20 21:41:13.452 2024-02-20 21:41:13.452 36000 TIP 432674 20979 6015278 2024-02-20 21:41:25.558 2024-02-20 21:41:25.558 4000 FEE 432987 18837 6015279 2024-02-20 21:41:25.558 2024-02-20 21:41:25.558 36000 TIP 432987 14258 6015284 2024-02-20 21:42:14.251 2024-02-20 21:42:14.251 2600 FEE 433051 9026 6015285 2024-02-20 21:42:14.251 2024-02-20 21:42:14.251 23400 TIP 433051 13782 6015288 2024-02-20 21:43:15.338 2024-02-20 21:43:15.338 1000 FEE 248526 11698 6015289 2024-02-20 21:43:15.338 2024-02-20 21:43:15.338 9000 TIP 248526 6136 6015292 2024-02-20 21:43:50.906 2024-02-20 21:43:50.906 1600 FEE 433044 3396 6015293 2024-02-20 21:43:50.906 2024-02-20 21:43:50.906 14400 TIP 433044 18311 6015317 2024-02-20 21:45:06.267 2024-02-20 21:45:06.267 1000 FEE 432905 1785 6015318 2024-02-20 21:45:06.267 2024-02-20 21:45:06.267 9000 TIP 432905 20660 6015354 2024-02-20 21:47:42.784 2024-02-20 21:47:42.784 10000 FEE 433074 16724 6015355 2024-02-20 21:47:46.63 2024-02-20 21:47:46.63 1000 FEE 433059 21373 6015356 2024-02-20 21:47:46.63 2024-02-20 21:47:46.63 9000 TIP 433059 7668 6015358 2024-02-20 21:48:11.539 2024-02-20 21:48:11.539 1000 FEE 433075 2111 6015373 2024-02-20 21:49:45.634 2024-02-20 21:49:45.634 2100 FEE 432977 2514 6015374 2024-02-20 21:49:45.634 2024-02-20 21:49:45.634 18900 TIP 432977 807 6015376 2024-02-20 21:50:03.625 2024-02-20 21:50:03.625 500 FEE 432889 989 6015377 2024-02-20 21:50:03.625 2024-02-20 21:50:03.625 4500 TIP 432889 17184 6015387 2024-02-20 21:50:10.699 2024-02-20 21:50:10.699 1000 FEE 432811 1316 6015388 2024-02-20 21:50:10.699 2024-02-20 21:50:10.699 9000 TIP 432811 12819 6015400 2024-02-20 21:51:22.492 2024-02-20 21:51:22.492 1000 FEE 432836 19732 6015401 2024-02-20 21:51:22.492 2024-02-20 21:51:22.492 9000 TIP 432836 18601 6015408 2024-02-20 21:51:41.108 2024-02-20 21:51:41.108 900 FEE 433049 9150 6015409 2024-02-20 21:51:41.108 2024-02-20 21:51:41.108 8100 TIP 433049 9333 6015423 2024-02-20 21:52:49.479 2024-02-20 21:52:49.479 2300 FEE 433076 776 6015424 2024-02-20 21:52:49.479 2024-02-20 21:52:49.479 20700 TIP 433076 18663 6015426 2024-02-20 21:52:52.684 2024-02-20 21:52:52.684 1000 FEE 433075 14909 6015427 2024-02-20 21:52:52.684 2024-02-20 21:52:52.684 9000 TIP 433075 2724 6015468 2024-02-20 21:57:10.603 2024-02-20 21:57:10.603 1000 FEE 433089 9290 6015519 2024-02-20 22:03:26.509 2024-02-20 22:03:26.509 1000 FEE 433095 18892 6015534 2024-02-20 22:05:45.292 2024-02-20 22:05:45.292 27000 FEE 433050 1733 6015535 2024-02-20 22:05:45.292 2024-02-20 22:05:45.292 243000 TIP 433050 20481 6015558 2024-02-20 22:07:45.544 2024-02-20 22:07:45.544 1600 FEE 433066 17891 6015559 2024-02-20 22:07:45.544 2024-02-20 22:07:45.544 14400 TIP 433066 11714 6015561 2024-02-20 22:08:22.491 2024-02-20 22:08:22.491 1000 FEE 433104 14669 6015564 2024-02-20 22:09:05.496 2024-02-20 22:09:05.496 4200 FEE 432873 18403 6015565 2024-02-20 22:09:05.496 2024-02-20 22:09:05.496 37800 TIP 432873 21485 6015569 2024-02-20 22:09:33.996 2024-02-20 22:09:33.996 2100 FEE 433056 12024 6015570 2024-02-20 22:09:33.996 2024-02-20 22:09:33.996 18900 TIP 433056 14280 6015588 2024-02-20 22:11:08.653 2024-02-20 22:11:08.653 300 FEE 432983 17392 6015589 2024-02-20 22:11:08.653 2024-02-20 22:11:08.653 2700 TIP 432983 9427 6015601 2024-02-20 22:12:24.583 2024-02-20 22:12:24.583 7100 FEE 433038 21239 6015602 2024-02-20 22:12:24.583 2024-02-20 22:12:24.583 63900 TIP 433038 9026 6015627 2024-02-20 22:15:18.988 2024-02-20 22:15:18.988 2300 FEE 433108 1326 6015628 2024-02-20 22:15:18.988 2024-02-20 22:15:18.988 20700 TIP 433108 5487 6015642 2024-02-20 22:17:18.782 2024-02-20 22:17:18.782 2100 FEE 432957 811 6015643 2024-02-20 22:17:18.782 2024-02-20 22:17:18.782 18900 TIP 432957 16355 6015644 2024-02-20 22:17:23.508 2024-02-20 22:17:23.508 2100 FEE 432957 4776 6015645 2024-02-20 22:17:23.508 2024-02-20 22:17:23.508 18900 TIP 432957 700 6015646 2024-02-20 22:17:45.126 2024-02-20 22:17:45.126 1000 FEE 433118 16178 6015654 2024-02-20 22:19:20.246 2024-02-20 22:19:20.246 2100 FEE 433043 19777 6015655 2024-02-20 22:19:20.246 2024-02-20 22:19:20.246 18900 TIP 433043 15890 6015710 2024-02-20 22:23:23.444 2024-02-20 22:23:23.444 100 FEE 433085 14705 6015711 2024-02-20 22:23:23.444 2024-02-20 22:23:23.444 900 TIP 433085 4763 6015712 2024-02-20 22:23:23.643 2024-02-20 22:23:23.643 900 FEE 433085 9985 6015713 2024-02-20 22:23:23.643 2024-02-20 22:23:23.643 8100 TIP 433085 9330 6015766 2024-02-20 22:29:07.645 2024-02-20 22:29:07.645 7700 FEE 432873 768 6015767 2024-02-20 22:29:07.645 2024-02-20 22:29:07.645 69300 TIP 432873 980 6015768 2024-02-20 22:29:07.83 2024-02-20 22:29:07.83 7700 FEE 432873 2681 6015769 2024-02-20 22:29:07.83 2024-02-20 22:29:07.83 69300 TIP 432873 15239 6015806 2024-02-20 22:37:15.205 2024-02-20 22:37:15.205 100 FEE 433043 3729 6015807 2024-02-20 22:37:15.205 2024-02-20 22:37:15.205 900 TIP 433043 18494 6015816 2024-02-20 22:37:23.081 2024-02-20 22:37:23.081 100 FEE 433043 19094 6015817 2024-02-20 22:37:23.081 2024-02-20 22:37:23.081 900 TIP 433043 18679 6015822 2024-02-20 22:37:24.28 2024-02-20 22:37:24.28 100 FEE 433043 7809 6015823 2024-02-20 22:37:24.28 2024-02-20 22:37:24.28 900 TIP 433043 21627 6015832 2024-02-20 22:37:26.602 2024-02-20 22:37:26.602 100 FEE 433075 2942 6015833 2024-02-20 22:37:26.602 2024-02-20 22:37:26.602 900 TIP 433075 4798 6015849 2024-02-20 22:37:30.919 2024-02-20 22:37:30.919 100 FEE 432957 21556 6015850 2024-02-20 22:37:30.919 2024-02-20 22:37:30.919 900 TIP 432957 3642 6015851 2024-02-20 22:37:31.126 2024-02-20 22:37:31.126 100 FEE 432957 15703 6015852 2024-02-20 22:37:31.126 2024-02-20 22:37:31.126 900 TIP 432957 17217 6015857 2024-02-20 22:37:31.639 2024-02-20 22:37:31.639 2300 FEE 433128 19235 6015858 2024-02-20 22:37:31.639 2024-02-20 22:37:31.639 20700 TIP 433128 697 6015875 2024-02-20 22:37:33.57 2024-02-20 22:37:33.57 2300 FEE 433127 1985 6015876 2024-02-20 22:37:33.57 2024-02-20 22:37:33.57 20700 TIP 433127 16965 6015894 2024-02-20 22:39:24.66 2024-02-20 22:39:24.66 1000 FEE 433114 15282 6015895 2024-02-20 22:39:24.66 2024-02-20 22:39:24.66 9000 TIP 433114 21060 6015896 2024-02-20 22:39:24.916 2024-02-20 22:39:24.916 1000 FEE 433114 2330 6015897 2024-02-20 22:39:24.916 2024-02-20 22:39:24.916 9000 TIP 433114 19943 6015905 2024-02-20 22:40:10.951 2024-02-20 22:40:10.951 1000 FEE 433133 2156 6015907 2024-02-20 22:40:40.652 2024-02-20 22:40:40.652 100 FEE 432980 20897 6015908 2024-02-20 22:40:40.652 2024-02-20 22:40:40.652 900 TIP 432980 13365 6015923 2024-02-20 22:43:02.999 2024-02-20 22:43:02.999 25600 FEE 432674 19987 6015924 2024-02-20 22:43:02.999 2024-02-20 22:43:02.999 230400 TIP 432674 10056 6015937 2024-02-20 22:46:09.872 2024-02-20 22:46:09.872 2300 FEE 433139 2711 6015938 2024-02-20 22:46:09.872 2024-02-20 22:46:09.872 20700 TIP 433139 19906 6015945 2024-02-20 22:46:11.677 2024-02-20 22:46:11.677 2300 FEE 433139 994 6015158 2024-02-20 21:31:49.254 2024-02-20 21:31:49.254 21100 FEE 433049 20811 6015159 2024-02-20 21:31:49.254 2024-02-20 21:31:49.254 189900 TIP 433049 5522 6015179 2024-02-20 21:35:26.436 2024-02-20 21:35:26.436 1000 FEE 433051 17103 6015182 2024-02-20 21:35:57.273 2024-02-20 21:35:57.273 100 FEE 433050 20254 6015183 2024-02-20 21:35:57.273 2024-02-20 21:35:57.273 900 TIP 433050 17517 6015186 2024-02-20 21:35:58.121 2024-02-20 21:35:58.121 9000 FEE 433050 18306 6015187 2024-02-20 21:35:58.121 2024-02-20 21:35:58.121 81000 TIP 433050 20861 6015193 2024-02-20 21:36:08.746 2024-02-20 21:36:08.746 1000 FEE 433025 18640 6015194 2024-02-20 21:36:08.746 2024-02-20 21:36:08.746 9000 TIP 433025 19394 6015197 2024-02-20 21:36:17.542 2024-02-20 21:36:17.542 1000 FEE 432975 13055 6015198 2024-02-20 21:36:17.542 2024-02-20 21:36:17.542 9000 TIP 432975 17710 6015210 2024-02-20 21:37:25.575 2024-02-20 21:37:25.575 1000 FEE 432913 15196 6015211 2024-02-20 21:37:25.575 2024-02-20 21:37:25.575 9000 TIP 432913 14037 6015241 2024-02-20 21:39:51.265 2024-02-20 21:39:51.265 1000 FEE 433044 19652 6015242 2024-02-20 21:39:51.265 2024-02-20 21:39:51.265 9000 TIP 433044 20602 6015247 2024-02-20 21:40:19.031 2024-02-20 21:40:19.031 1000 FEE 432977 5500 6015248 2024-02-20 21:40:19.031 2024-02-20 21:40:19.031 9000 TIP 432977 940 6015299 2024-02-20 21:44:12.536 2024-02-20 21:44:12.536 2100 FEE 433048 8945 6015300 2024-02-20 21:44:12.536 2024-02-20 21:44:12.536 18900 TIP 433048 19511 6015308 2024-02-20 21:44:46.648 2024-02-20 21:44:46.648 100000 FEE 433066 20163 6015367 2024-02-20 21:49:04.654 2024-02-20 21:49:04.654 1000 FEE 432960 980 6015368 2024-02-20 21:49:04.654 2024-02-20 21:49:04.654 9000 TIP 432960 12738 6015419 2024-02-20 21:52:21.942 2024-02-20 21:52:21.942 1000 FEE 433079 9200 6015421 2024-02-20 21:52:49.364 2024-02-20 21:52:49.364 2300 FEE 433076 2734 6015422 2024-02-20 21:52:49.364 2024-02-20 21:52:49.364 20700 TIP 433076 14990 6015438 2024-02-20 21:54:16.903 2024-02-20 21:54:16.903 1000 FEE 433071 19841 6015439 2024-02-20 21:54:16.903 2024-02-20 21:54:16.903 9000 TIP 433071 21287 6015440 2024-02-20 21:54:17.353 2024-02-20 21:54:17.353 21000 FEE 433082 999 6015451 2024-02-20 21:55:02.626 2024-02-20 21:55:02.626 90000 FEE 433066 20715 6015452 2024-02-20 21:55:02.626 2024-02-20 21:55:02.626 810000 TIP 433066 688 6015463 2024-02-20 21:56:14.854 2024-02-20 21:56:14.854 21000 FEE 433087 16154 6015469 2024-02-20 21:57:14.524 2024-02-20 21:57:14.524 10000 FEE 433024 19906 6015470 2024-02-20 21:57:14.524 2024-02-20 21:57:14.524 90000 TIP 433024 663 6015481 2024-02-20 21:59:11.666 2024-02-20 21:59:11.666 100 FEE 433034 11956 6015482 2024-02-20 21:59:11.666 2024-02-20 21:59:11.666 900 TIP 433034 6688 6015504 2024-02-20 22:01:27.435 2024-02-20 22:01:27.435 8300 FEE 433066 21057 6015505 2024-02-20 22:01:27.435 2024-02-20 22:01:27.435 74700 TIP 433066 19267 6015529 2024-02-20 22:05:22.163 2024-02-20 22:05:22.163 1000 FEE 433099 19987 6015532 2024-02-20 22:05:44.139 2024-02-20 22:05:44.139 3000 FEE 433050 18219 6015533 2024-02-20 22:05:44.139 2024-02-20 22:05:44.139 27000 TIP 433050 21520 6015541 2024-02-20 22:06:30.786 2024-02-20 22:06:30.786 800 FEE 432977 17209 6015542 2024-02-20 22:06:30.786 2024-02-20 22:06:30.786 7200 TIP 432977 21371 6015554 2024-02-20 22:07:44.359 2024-02-20 22:07:44.359 5000 FEE 432820 795 6015555 2024-02-20 22:07:44.359 2024-02-20 22:07:44.359 45000 TIP 432820 16341 6015573 2024-02-20 22:09:37.41 2024-02-20 22:09:37.41 1000 FEE 433106 21395 6015582 2024-02-20 22:10:18.789 2024-02-20 22:10:18.789 100 FEE 432961 18581 6015583 2024-02-20 22:10:18.789 2024-02-20 22:10:18.789 900 TIP 432961 21491 6015585 2024-02-20 22:10:44.057 2024-02-20 22:10:44.057 1100 FEE 432920 21374 6015586 2024-02-20 22:10:44.057 2024-02-20 22:10:44.057 9900 TIP 432920 4225 6015615 2024-02-20 22:14:36.93 2024-02-20 22:14:36.93 1000 FEE 433113 18494 6015678 2024-02-20 22:21:04.202 2024-02-20 22:21:04.202 1000 FEE 433122 5500 6015685 2024-02-20 22:22:27.683 2024-02-20 22:22:27.683 8300 FEE 433103 13406 6015686 2024-02-20 22:22:27.683 2024-02-20 22:22:27.683 74700 TIP 433103 6573 6015706 2024-02-20 22:23:17.005 2024-02-20 22:23:17.005 100 FEE 433111 19105 6015707 2024-02-20 22:23:17.005 2024-02-20 22:23:17.005 900 TIP 433111 18989 6015724 2024-02-20 22:24:02.867 2024-02-20 22:24:02.867 900 FEE 433114 965 6015725 2024-02-20 22:24:02.867 2024-02-20 22:24:02.867 8100 TIP 433114 16348 6015734 2024-02-20 22:25:21.802 2024-02-20 22:25:21.802 900 FEE 433087 21218 6015735 2024-02-20 22:25:21.802 2024-02-20 22:25:21.802 8100 TIP 433087 13204 6015755 2024-02-20 22:28:30.968 2024-02-20 22:28:30.968 2100 FEE 432982 20185 6015756 2024-02-20 22:28:30.968 2024-02-20 22:28:30.968 18900 TIP 432982 5377 6015774 2024-02-20 22:29:08.599 2024-02-20 22:29:08.599 7700 FEE 432873 16424 6015775 2024-02-20 22:29:08.599 2024-02-20 22:29:08.599 69300 TIP 432873 14906 6015788 2024-02-20 22:30:20.208 2024-02-20 22:30:20.208 100 FEE 416981 21466 6015789 2024-02-20 22:30:20.208 2024-02-20 22:30:20.208 900 TIP 416981 19096 6015802 2024-02-20 22:35:51.028 2024-02-20 22:35:51.028 4200 FEE 430728 14308 6015803 2024-02-20 22:35:51.028 2024-02-20 22:35:51.028 37800 TIP 430728 15100 6015824 2024-02-20 22:37:24.468 2024-02-20 22:37:24.468 100 FEE 433043 19381 6015825 2024-02-20 22:37:24.468 2024-02-20 22:37:24.468 900 TIP 433043 10719 6015844 2024-02-20 22:37:28.205 2024-02-20 22:37:28.205 1000 FEE 433131 10719 6015855 2024-02-20 22:37:31.527 2024-02-20 22:37:31.527 100 FEE 432957 3409 6015856 2024-02-20 22:37:31.527 2024-02-20 22:37:31.527 900 TIP 432957 16948 6015871 2024-02-20 22:37:32.744 2024-02-20 22:37:32.744 2300 FEE 433128 15925 6015872 2024-02-20 22:37:32.744 2024-02-20 22:37:32.744 20700 TIP 433128 21547 6015884 2024-02-20 22:38:37.878 2024-02-20 22:38:37.878 1000 FEE 433132 21291 6015906 2024-02-20 22:40:16.027 2024-02-20 22:40:16.027 1000 FEE 433134 6419 6015914 2024-02-20 22:41:33.275 2024-02-20 22:41:33.275 4200 FEE 426129 17713 6015915 2024-02-20 22:41:33.275 2024-02-20 22:41:33.275 37800 TIP 426129 2537 6015941 2024-02-20 22:46:10.132 2024-02-20 22:46:10.132 2300 FEE 433139 20208 6015942 2024-02-20 22:46:10.132 2024-02-20 22:46:10.132 20700 TIP 433139 2402 6015950 2024-02-20 22:48:06.075 2024-02-20 22:48:06.075 10000 FEE 433128 17446 6015951 2024-02-20 22:48:06.075 2024-02-20 22:48:06.075 90000 TIP 433128 5852 6015952 2024-02-20 22:48:18.16 2024-02-20 22:48:18.16 1000 FEE 432952 10611 6015953 2024-02-20 22:48:18.16 2024-02-20 22:48:18.16 9000 TIP 432952 6384 6015959 2024-02-20 22:48:54.454 2024-02-20 22:48:54.454 1000 FEE 433144 18637 6015963 2024-02-20 22:49:31.861 2024-02-20 22:49:31.861 1000 FEE 433145 21344 6016004 2024-02-20 22:55:50.396 2024-02-20 22:55:50.396 2300 FEE 433135 11073 6016005 2024-02-20 22:55:50.396 2024-02-20 22:55:50.396 20700 TIP 433135 12139 6016019 2024-02-20 22:59:52.482 2024-02-20 22:59:52.482 1000 FEE 433155 2748 6016034 2024-02-20 23:02:46.832 2024-02-20 23:02:46.832 1000 FEE 433156 12057 6016035 2024-02-20 23:02:46.832 2024-02-20 23:02:46.832 9000 TIP 433156 2952 6016046 2024-02-20 23:02:50.176 2024-02-20 23:02:50.176 2000 FEE 433156 9820 6016047 2024-02-20 23:02:50.176 2024-02-20 23:02:50.176 18000 TIP 433156 8998 6016050 2024-02-20 23:02:53.077 2024-02-20 23:02:53.077 100 FEE 433114 19924 6016051 2024-02-20 23:02:53.077 2024-02-20 23:02:53.077 900 TIP 433114 19961 6016085 2024-02-20 23:05:55.096 2024-02-20 23:05:55.096 2100 FEE 432957 20251 6016086 2024-02-20 23:05:55.096 2024-02-20 23:05:55.096 18900 TIP 432957 9355 6016088 2024-02-20 23:06:25.34 2024-02-20 23:06:25.34 2100 FEE 432563 21091 6016089 2024-02-20 23:06:25.34 2024-02-20 23:06:25.34 18900 TIP 432563 4989 6016095 2024-02-20 23:08:34.331 2024-02-20 23:08:34.331 5000 FEE 431753 13622 6016096 2024-02-20 23:08:34.331 2024-02-20 23:08:34.331 45000 TIP 431753 2013 6016108 2024-02-20 23:09:26.073 2024-02-20 23:09:26.073 2300 FEE 433163 21395 6016109 2024-02-20 23:09:26.073 2024-02-20 23:09:26.073 20700 TIP 433163 17682 6016118 2024-02-20 23:09:37.765 2024-02-20 23:09:37.765 2300 FEE 433162 10490 6016119 2024-02-20 23:09:37.765 2024-02-20 23:09:37.765 20700 TIP 433162 21079 6016120 2024-02-20 23:09:39.48 2024-02-20 23:09:39.48 2300 FEE 433162 9084 6016121 2024-02-20 23:09:39.48 2024-02-20 23:09:39.48 20700 TIP 433162 12024 6015237 2024-02-20 21:39:38.92 2024-02-20 21:39:38.92 100 FEE 433055 9916 6015238 2024-02-20 21:39:38.92 2024-02-20 21:39:38.92 900 TIP 433055 21022 6015249 2024-02-20 21:40:20.358 2024-02-20 21:40:20.358 1000 FEE 432977 20852 6015250 2024-02-20 21:40:20.358 2024-02-20 21:40:20.358 9000 TIP 432977 8284 6015253 2024-02-20 21:40:54.963 2024-02-20 21:40:54.963 1000 FEE 433058 1577 6015270 2024-02-20 21:41:17 2024-02-20 21:41:17 4000 FEE 432977 712 6015271 2024-02-20 21:41:17 2024-02-20 21:41:17 36000 TIP 432977 7966 6015309 2024-02-20 21:44:52.907 2024-02-20 21:44:52.907 10000 FEE 433067 2233 6015331 2024-02-20 21:45:56.546 2024-02-20 21:45:56.546 500 FEE 432920 20525 6015332 2024-02-20 21:45:56.546 2024-02-20 21:45:56.546 4500 TIP 432920 11288 6015334 2024-02-20 21:45:58.196 2024-02-20 21:45:58.196 500 FEE 432873 8729 6015335 2024-02-20 21:45:58.196 2024-02-20 21:45:58.196 4500 TIP 432873 13198 6015336 2024-02-20 21:46:04.741 2024-02-20 21:46:04.741 800 FEE 433057 20245 6015337 2024-02-20 21:46:04.741 2024-02-20 21:46:04.741 7200 TIP 433057 3456 6015339 2024-02-20 21:46:09.522 2024-02-20 21:46:09.522 500 FEE 432920 1773 6015340 2024-02-20 21:46:09.522 2024-02-20 21:46:09.522 4500 TIP 432920 12736 6015350 2024-02-20 21:47:20.019 2024-02-20 21:47:20.019 10000 FEE 433026 684 6015351 2024-02-20 21:47:20.019 2024-02-20 21:47:20.019 90000 TIP 433026 12049 6015359 2024-02-20 21:48:25.276 2024-02-20 21:48:25.276 1000 FEE 432873 1438 6015360 2024-02-20 21:48:25.276 2024-02-20 21:48:25.276 9000 TIP 432873 13365 6015363 2024-02-20 21:48:52.619 2024-02-20 21:48:52.619 1000 FEE 433014 19662 6015364 2024-02-20 21:48:52.619 2024-02-20 21:48:52.619 9000 TIP 433014 21136 6015394 2024-02-20 21:51:12.754 2024-02-20 21:51:12.754 100 FEE 433031 16956 6015395 2024-02-20 21:51:12.754 2024-02-20 21:51:12.754 900 TIP 433031 4958 6015406 2024-02-20 21:51:40.903 2024-02-20 21:51:40.903 100 FEE 433049 20243 6015407 2024-02-20 21:51:40.903 2024-02-20 21:51:40.903 900 TIP 433049 12272 6015412 2024-02-20 21:51:56.326 2024-02-20 21:51:56.326 100 FEE 433056 11750 6015413 2024-02-20 21:51:56.326 2024-02-20 21:51:56.326 900 TIP 433056 2151 6015416 2024-02-20 21:52:03.493 2024-02-20 21:52:03.493 10000 FEE 433066 1051 6015417 2024-02-20 21:52:03.493 2024-02-20 21:52:03.493 90000 TIP 433066 5455 6015425 2024-02-20 21:52:49.802 2024-02-20 21:52:49.802 1000 FEE 433081 11621 6015433 2024-02-20 21:54:01.959 2024-02-20 21:54:01.959 1000 FEE 432957 21577 6015434 2024-02-20 21:54:01.959 2024-02-20 21:54:01.959 9000 TIP 432957 6798 6015444 2024-02-20 21:54:39.064 2024-02-20 21:54:39.064 0 FEE 433081 20254 6015462 2024-02-20 21:56:09.176 2024-02-20 21:56:09.176 1000 FEE 433086 15213 6015485 2024-02-20 22:00:00.374 2024-02-20 22:00:00.374 1000 FEE 433090 4474 6015488 2024-02-20 22:00:26.13 2024-02-20 22:00:26.13 1000 FEE 238837 7998 6015489 2024-02-20 22:00:26.13 2024-02-20 22:00:26.13 9000 TIP 238837 6688 6015492 2024-02-20 22:00:54.862 2024-02-20 22:00:54.862 1000 FEE 238844 19660 6015493 2024-02-20 22:00:54.862 2024-02-20 22:00:54.862 9000 TIP 238844 18930 6015502 2024-02-20 22:01:27.37 2024-02-20 22:01:27.37 8300 FEE 433066 9246 6015503 2024-02-20 22:01:27.37 2024-02-20 22:01:27.37 74700 TIP 433066 5003 6015525 2024-02-20 22:04:54.074 2024-02-20 22:04:54.074 1600 FEE 432913 15560 6015526 2024-02-20 22:04:54.074 2024-02-20 22:04:54.074 14400 TIP 432913 21412 6015556 2024-02-20 22:07:44.786 2024-02-20 22:07:44.786 5000 FEE 432820 21481 6015557 2024-02-20 22:07:44.786 2024-02-20 22:07:44.786 45000 TIP 432820 21214 6015562 2024-02-20 22:08:46.223 2024-02-20 22:08:46.223 1000 FEE 433105 16950 6015566 2024-02-20 22:09:05.63 2024-02-20 22:09:05.63 0 FEE 433103 631 6015590 2024-02-20 22:11:38.405 2024-02-20 22:11:38.405 300 FEE 433005 11967 6015591 2024-02-20 22:11:38.405 2024-02-20 22:11:38.405 2700 TIP 433005 19458 6015595 2024-02-20 22:12:16.154 2024-02-20 22:12:16.154 7100 FEE 433072 20904 6015596 2024-02-20 22:12:16.154 2024-02-20 22:12:16.154 63900 TIP 433072 21339 6015599 2024-02-20 22:12:21.216 2024-02-20 22:12:21.216 7100 FEE 432999 20094 6015600 2024-02-20 22:12:21.216 2024-02-20 22:12:21.216 63900 TIP 432999 717 6015614 2024-02-20 22:14:36.664 2024-02-20 22:14:36.664 1000 FEE 433112 3411 6015617 2024-02-20 22:14:53.29 2024-02-20 22:14:53.29 1000 FEE 433114 2309 6015618 2024-02-20 22:14:53.29 2024-02-20 22:14:53.29 9000 TIP 433114 16350 6015625 2024-02-20 22:15:18.411 2024-02-20 22:15:18.411 2300 FEE 433108 18177 6015626 2024-02-20 22:15:18.411 2024-02-20 22:15:18.411 20700 TIP 433108 9482 6015640 2024-02-20 22:16:42.715 2024-02-20 22:16:42.715 0 FEE 433114 1718 6015652 2024-02-20 22:19:19.288 2024-02-20 22:19:19.288 2100 FEE 433043 3342 6015653 2024-02-20 22:19:19.288 2024-02-20 22:19:19.288 18900 TIP 433043 811 6015656 2024-02-20 22:19:28.958 2024-02-20 22:19:28.958 1000 FEE 433119 17722 6015672 2024-02-20 22:21:00.702 2024-02-20 22:21:00.702 100 FEE 432899 21520 6015673 2024-02-20 22:21:00.702 2024-02-20 22:21:00.702 900 TIP 432899 19857 6015689 2024-02-20 22:22:34.94 2024-02-20 22:22:34.94 8300 FEE 433087 18040 6015690 2024-02-20 22:22:34.94 2024-02-20 22:22:34.94 74700 TIP 433087 20730 6015716 2024-02-20 22:23:26.114 2024-02-20 22:23:26.114 900 FEE 433028 2513 6015717 2024-02-20 22:23:26.114 2024-02-20 22:23:26.114 8100 TIP 433028 18051 6015718 2024-02-20 22:23:30.149 2024-02-20 22:23:30.149 100 FEE 433007 16309 6015719 2024-02-20 22:23:30.149 2024-02-20 22:23:30.149 900 TIP 433007 20340 6015720 2024-02-20 22:23:30.35 2024-02-20 22:23:30.35 900 FEE 433007 16387 6015721 2024-02-20 22:23:30.35 2024-02-20 22:23:30.35 8100 TIP 433007 9307 6015740 2024-02-20 22:26:27.908 2024-02-20 22:26:27.908 100 FEE 424039 17157 6015741 2024-02-20 22:26:27.908 2024-02-20 22:26:27.908 900 TIP 424039 21539 6015743 2024-02-20 22:27:30.936 2024-02-20 22:27:30.936 1000 FEE 433126 965 6015751 2024-02-20 22:28:17.219 2024-02-20 22:28:17.219 2100 FEE 433049 16830 6015752 2024-02-20 22:28:17.219 2024-02-20 22:28:17.219 18900 TIP 433049 5961 6015780 2024-02-20 22:29:09.19 2024-02-20 22:29:09.19 7700 FEE 432873 16704 6015781 2024-02-20 22:29:09.19 2024-02-20 22:29:09.19 69300 TIP 432873 4538 6015800 2024-02-20 22:35:48.83 2024-02-20 22:35:48.83 4200 FEE 430728 1468 6015801 2024-02-20 22:35:48.83 2024-02-20 22:35:48.83 37800 TIP 430728 21588 6015810 2024-02-20 22:37:18.66 2024-02-20 22:37:18.66 200 FEE 433075 18828 6015811 2024-02-20 22:37:18.66 2024-02-20 22:37:18.66 1800 TIP 433075 17106 6015838 2024-02-20 22:37:27.258 2024-02-20 22:37:27.258 100 FEE 433075 19494 6015839 2024-02-20 22:37:27.258 2024-02-20 22:37:27.258 900 TIP 433075 13076 6015863 2024-02-20 22:37:32.143 2024-02-20 22:37:32.143 2300 FEE 433128 9874 6015864 2024-02-20 22:37:32.143 2024-02-20 22:37:32.143 20700 TIP 433128 20412 6015867 2024-02-20 22:37:32.362 2024-02-20 22:37:32.362 100 FEE 432957 12278 6015868 2024-02-20 22:37:32.362 2024-02-20 22:37:32.362 900 TIP 432957 2111 6015919 2024-02-20 22:42:30.368 2024-02-20 22:42:30.368 4000 FEE 433120 3400 6015920 2024-02-20 22:42:30.368 2024-02-20 22:42:30.368 36000 TIP 433120 14195 6015926 2024-02-20 22:43:27.523 2024-02-20 22:43:27.523 1000 FEE 433138 9150 6015929 2024-02-20 22:44:01.478 2024-02-20 22:44:01.478 0 FEE 433136 6041 6015932 2024-02-20 22:44:44.978 2024-02-20 22:44:44.978 10000 FEE 433141 11430 6015947 2024-02-20 22:46:25.45 2024-02-20 22:46:25.45 0 FEE 433135 21088 6015968 2024-02-20 22:50:04.335 2024-02-20 22:50:04.335 1000 FEE 433146 18180 6015981 2024-02-20 22:50:46.438 2024-02-20 22:50:46.438 1000 FEE 433148 15594 6015987 2024-02-20 22:52:50.132 2024-02-20 22:52:50.132 1000 FEE 432920 18956 6015988 2024-02-20 22:52:50.132 2024-02-20 22:52:50.132 9000 TIP 432920 1647 6015993 2024-02-20 22:54:11.36 2024-02-20 22:54:11.36 1000 FEE 433150 6421 6016038 2024-02-20 23:02:47.291 2024-02-20 23:02:47.291 1000 FEE 433156 8133 6016039 2024-02-20 23:02:47.291 2024-02-20 23:02:47.291 9000 TIP 433156 16789 6016044 2024-02-20 23:02:49.73 2024-02-20 23:02:49.73 100 FEE 432913 3709 6016045 2024-02-20 23:02:49.73 2024-02-20 23:02:49.73 900 TIP 432913 13574 6016055 2024-02-20 23:03:31.003 2024-02-20 23:03:31.003 1000 FEE 433123 1273 6016056 2024-02-20 23:03:31.003 2024-02-20 23:03:31.003 9000 TIP 433123 19398 6015348 2024-02-20 21:47:04.546 2024-02-20 21:47:04.546 1000 FEE 433073 21585 6015361 2024-02-20 21:48:30.185 2024-02-20 21:48:30.185 10000 FEE 432801 19533 6015362 2024-02-20 21:48:30.185 2024-02-20 21:48:30.185 90000 TIP 432801 20586 6015370 2024-02-20 21:49:08.207 2024-02-20 21:49:08.207 1000 FEE 432955 6419 6015371 2024-02-20 21:49:08.207 2024-02-20 21:49:08.207 9000 TIP 432955 7772 6015380 2024-02-20 21:50:04.939 2024-02-20 21:50:04.939 500 FEE 432910 21172 6015381 2024-02-20 21:50:04.939 2024-02-20 21:50:04.939 4500 TIP 432910 13249 6015382 2024-02-20 21:50:05.09 2024-02-20 21:50:05.09 500 FEE 432910 16097 6015383 2024-02-20 21:50:05.09 2024-02-20 21:50:05.09 4500 TIP 432910 7553 6015390 2024-02-20 21:50:26.271 2024-02-20 21:50:26.271 10000 FEE 433056 16769 6015391 2024-02-20 21:50:26.271 2024-02-20 21:50:26.271 90000 TIP 433056 21033 6015402 2024-02-20 21:51:22.636 2024-02-20 21:51:22.636 90000 FEE 433031 14909 6015403 2024-02-20 21:51:22.636 2024-02-20 21:51:22.636 810000 TIP 433031 11443 6015414 2024-02-20 21:51:56.569 2024-02-20 21:51:56.569 900 FEE 433056 1785 6015415 2024-02-20 21:51:56.569 2024-02-20 21:51:56.569 8100 TIP 433056 7425 6015442 2024-02-20 21:54:28.676 2024-02-20 21:54:28.676 1000 FEE 433084 9242 6015472 2024-02-20 21:58:12.893 2024-02-20 21:58:12.893 10000 FEE 433066 1003 6015473 2024-02-20 21:58:12.893 2024-02-20 21:58:12.893 90000 TIP 433066 4225 6015487 2024-02-20 22:00:05.886 2024-02-20 22:00:05.886 1000 FEE 433091 5112 6015508 2024-02-20 22:01:53.125 2024-02-20 22:01:53.125 1000 FEE 433093 9427 6015510 2024-02-20 22:02:07.004 2024-02-20 22:02:07.004 0 FEE 433093 12160 6015516 2024-02-20 22:03:03.396 2024-02-20 22:03:03.396 1000 FEE 433094 650 6015538 2024-02-20 22:06:23.861 2024-02-20 22:06:23.861 1000 FEE 203071 9107 6015539 2024-02-20 22:06:23.861 2024-02-20 22:06:23.861 9000 TIP 203071 2196 6015543 2024-02-20 22:06:51.684 2024-02-20 22:06:51.684 4000 FEE 433087 20657 6015544 2024-02-20 22:06:51.684 2024-02-20 22:06:51.684 36000 TIP 433087 1261 6015594 2024-02-20 22:12:10.048 2024-02-20 22:12:10.048 1000 FEE 433110 20614 6015612 2024-02-20 22:14:26.799 2024-02-20 22:14:26.799 10000 FEE 433042 10311 6015613 2024-02-20 22:14:26.799 2024-02-20 22:14:26.799 90000 TIP 433042 20490 6015623 2024-02-20 22:15:18.291 2024-02-20 22:15:18.291 2300 FEE 433108 5495 6015624 2024-02-20 22:15:18.291 2024-02-20 22:15:18.291 20700 TIP 433108 20267 6015657 2024-02-20 22:19:49.708 2024-02-20 22:19:49.708 10000 FEE 433120 17124 6015658 2024-02-20 22:19:57.727 2024-02-20 22:19:57.727 8300 FEE 433108 19785 6015659 2024-02-20 22:19:57.727 2024-02-20 22:19:57.727 74700 TIP 433108 5057 6015660 2024-02-20 22:19:57.946 2024-02-20 22:19:57.946 16600 FEE 433108 18664 6015661 2024-02-20 22:19:57.946 2024-02-20 22:19:57.946 149400 TIP 433108 20778 6015697 2024-02-20 22:23:01.433 2024-02-20 22:23:01.433 1000 FEE 433088 6149 6015698 2024-02-20 22:23:01.433 2024-02-20 22:23:01.433 9000 TIP 433088 19886 6015714 2024-02-20 22:23:25.911 2024-02-20 22:23:25.911 100 FEE 433028 14731 6015715 2024-02-20 22:23:25.911 2024-02-20 22:23:25.911 900 TIP 433028 20187 6015729 2024-02-20 22:24:31.904 2024-02-20 22:24:31.904 1000 FEE 433091 21314 6015730 2024-02-20 22:24:31.904 2024-02-20 22:24:31.904 9000 TIP 433091 12736 6015732 2024-02-20 22:25:21.571 2024-02-20 22:25:21.571 100 FEE 433087 5499 6015733 2024-02-20 22:25:21.571 2024-02-20 22:25:21.571 900 TIP 433087 9845 6015749 2024-02-20 22:28:13.04 2024-02-20 22:28:13.04 2100 FEE 433108 20102 6015750 2024-02-20 22:28:13.04 2024-02-20 22:28:13.04 18900 TIP 433108 17116 6015782 2024-02-20 22:29:09.399 2024-02-20 22:29:09.399 7700 FEE 432873 14074 6015783 2024-02-20 22:29:09.399 2024-02-20 22:29:09.399 69300 TIP 432873 17446 6015784 2024-02-20 22:29:09.571 2024-02-20 22:29:09.571 7700 FEE 432873 6191 6015785 2024-02-20 22:29:09.571 2024-02-20 22:29:09.571 69300 TIP 432873 21427 6015796 2024-02-20 22:35:41.255 2024-02-20 22:35:41.255 12800 FEE 433123 3417 6015797 2024-02-20 22:35:41.255 2024-02-20 22:35:41.255 115200 TIP 433123 20854 6015798 2024-02-20 22:35:41.811 2024-02-20 22:35:41.811 1000 FEE 433129 20094 6015818 2024-02-20 22:37:23.909 2024-02-20 22:37:23.909 300 FEE 433043 18837 6015819 2024-02-20 22:37:23.909 2024-02-20 22:37:23.909 2700 TIP 433043 14037 6015842 2024-02-20 22:37:27.759 2024-02-20 22:37:27.759 100 FEE 433075 20120 6015843 2024-02-20 22:37:27.759 2024-02-20 22:37:27.759 900 TIP 433075 632 6015847 2024-02-20 22:37:30.693 2024-02-20 22:37:30.693 100 FEE 432957 21091 6015848 2024-02-20 22:37:30.693 2024-02-20 22:37:30.693 900 TIP 432957 18923 6015861 2024-02-20 22:37:31.958 2024-02-20 22:37:31.958 100 FEE 432957 13767 6015862 2024-02-20 22:37:31.958 2024-02-20 22:37:31.958 900 TIP 432957 19174 6015879 2024-02-20 22:37:33.913 2024-02-20 22:37:33.913 2300 FEE 433127 18321 6015880 2024-02-20 22:37:33.913 2024-02-20 22:37:33.913 20700 TIP 433127 12245 6015892 2024-02-20 22:39:24.417 2024-02-20 22:39:24.417 1000 FEE 433114 9345 6015893 2024-02-20 22:39:24.417 2024-02-20 22:39:24.417 9000 TIP 433114 691 6015900 2024-02-20 22:39:44.712 2024-02-20 22:39:44.712 100000 FEE 433114 10493 6015901 2024-02-20 22:39:44.712 2024-02-20 22:39:44.712 900000 TIP 433114 20657 6015933 2024-02-20 22:44:45.613 2024-02-20 22:44:45.613 1000 FEE 433142 21527 6015935 2024-02-20 22:45:09.1 2024-02-20 22:45:09.1 0 FEE 433139 669 6015956 2024-02-20 22:48:26.791 2024-02-20 22:48:26.791 9000 FEE 432952 15408 6015957 2024-02-20 22:48:26.791 2024-02-20 22:48:26.791 81000 TIP 432952 2065 6015974 2024-02-20 22:50:15.202 2024-02-20 22:50:15.202 9000 FEE 432859 11516 6015975 2024-02-20 22:50:15.202 2024-02-20 22:50:15.202 81000 TIP 432859 21453 6015979 2024-02-20 22:50:32.555 2024-02-20 22:50:32.555 4000 FEE 433145 21057 6015980 2024-02-20 22:50:32.555 2024-02-20 22:50:32.555 36000 TIP 433145 3706 6016006 2024-02-20 22:55:51.344 2024-02-20 22:55:51.344 4600 FEE 433135 6229 6016007 2024-02-20 22:55:51.344 2024-02-20 22:55:51.344 41400 TIP 433135 626 6016025 2024-02-20 23:01:28.579 2024-02-20 23:01:28.579 1000 FEE 433158 16212 6016036 2024-02-20 23:02:47.075 2024-02-20 23:02:47.075 1000 FEE 433156 775 6016037 2024-02-20 23:02:47.075 2024-02-20 23:02:47.075 9000 TIP 433156 9329 6016048 2024-02-20 23:02:52.555 2024-02-20 23:02:52.555 100 FEE 433114 18119 6016049 2024-02-20 23:02:52.555 2024-02-20 23:02:52.555 900 TIP 433114 5499 6016057 2024-02-20 23:03:31.177 2024-02-20 23:03:31.177 1000 FEE 433123 5173 6016058 2024-02-20 23:03:31.177 2024-02-20 23:03:31.177 9000 TIP 433123 21563 6016061 2024-02-20 23:03:48.479 2024-02-20 23:03:48.479 300 FEE 433056 8505 6016062 2024-02-20 23:03:48.479 2024-02-20 23:03:48.479 2700 TIP 433056 12774 6016064 2024-02-20 23:03:58.437 2024-02-20 23:03:58.437 1000 FEE 433042 20972 6016065 2024-02-20 23:03:58.437 2024-02-20 23:03:58.437 9000 TIP 433042 12346 6016082 2024-02-20 23:05:29.775 2024-02-20 23:05:29.775 1000 FEE 433035 20825 6016083 2024-02-20 23:05:29.775 2024-02-20 23:05:29.775 9000 TIP 433035 7389 6016114 2024-02-20 23:09:37.529 2024-02-20 23:09:37.529 2300 FEE 433162 11522 6016115 2024-02-20 23:09:37.529 2024-02-20 23:09:37.529 20700 TIP 433162 6384 6016123 2024-02-20 23:10:02.655 2024-02-20 23:10:02.655 1000 FEE 432994 14959 6016124 2024-02-20 23:10:02.655 2024-02-20 23:10:02.655 9000 TIP 432994 807 6016144 2024-02-20 23:11:05.857 2024-02-20 23:11:05.857 3300 FEE 433114 21281 6016145 2024-02-20 23:11:05.857 2024-02-20 23:11:05.857 29700 TIP 433114 9246 6016174 2024-02-20 23:12:15.701 2024-02-20 23:12:15.701 1000 FEE 432674 10536 6016175 2024-02-20 23:12:15.701 2024-02-20 23:12:15.701 9000 TIP 432674 2961 6016208 2024-02-20 23:15:58.413 2024-02-20 23:15:58.413 12800 FEE 432341 19633 6016209 2024-02-20 23:15:58.413 2024-02-20 23:15:58.413 115200 TIP 432341 7877 6016230 2024-02-20 23:20:09.033 2024-02-20 23:20:09.033 300 FEE 433172 5942 6016231 2024-02-20 23:20:09.033 2024-02-20 23:20:09.033 2700 TIP 433172 18380 6016238 2024-02-20 23:22:00.207 2024-02-20 23:22:00.207 1000 FEE 433181 3686 6016240 2024-02-20 23:22:49.156 2024-02-20 23:22:49.156 12800 FEE 432551 13843 6016241 2024-02-20 23:22:49.156 2024-02-20 23:22:49.156 115200 TIP 432551 642 6016261 2024-02-20 23:26:06.725 2024-02-20 23:26:06.725 6900 FEE 432710 19335 6016262 2024-02-20 23:26:06.725 2024-02-20 23:26:06.725 62100 TIP 432710 12291 6015435 2024-02-20 21:54:05.204 2024-02-20 21:54:05.204 1000 STREAM 141924 1738 6015466 2024-02-20 21:57:05.358 2024-02-20 21:57:05.358 1000 STREAM 141924 16259 6015471 2024-02-20 21:58:05.351 2024-02-20 21:58:05.351 1000 STREAM 141924 6421 6015478 2024-02-20 21:59:05.358 2024-02-20 21:59:05.358 1000 STREAM 141924 4062 6015486 2024-02-20 22:00:05.405 2024-02-20 22:00:05.405 1000 STREAM 141924 20036 6015517 2024-02-20 22:03:05.391 2024-02-20 22:03:05.391 1000 STREAM 141924 20180 6015448 2024-02-20 21:55:01.303 2024-02-20 21:55:01.303 8100 TIP 433066 20045 6015449 2024-02-20 21:55:01.689 2024-02-20 21:55:01.689 9000 FEE 433066 664 6015450 2024-02-20 21:55:01.689 2024-02-20 21:55:01.689 81000 TIP 433066 16052 6015458 2024-02-20 21:55:29.069 2024-02-20 21:55:29.069 1000 FEE 432811 4415 6015459 2024-02-20 21:55:29.069 2024-02-20 21:55:29.069 9000 TIP 432811 20616 6015464 2024-02-20 21:56:24.876 2024-02-20 21:56:24.876 1000 FEE 433066 2056 6015465 2024-02-20 21:56:24.876 2024-02-20 21:56:24.876 9000 TIP 433066 12272 6015474 2024-02-20 21:58:32.85 2024-02-20 21:58:32.85 10000 FEE 433088 3979 6015475 2024-02-20 21:58:32.85 2024-02-20 21:58:32.85 90000 TIP 433088 2029 6015483 2024-02-20 21:59:56.268 2024-02-20 21:59:56.268 800 FEE 432889 5557 6015484 2024-02-20 21:59:56.268 2024-02-20 21:59:56.268 7200 TIP 432889 20744 6015506 2024-02-20 22:01:33.17 2024-02-20 22:01:33.17 8300 FEE 433049 2188 6015507 2024-02-20 22:01:33.17 2024-02-20 22:01:33.17 74700 TIP 433049 16879 6015511 2024-02-20 22:02:09.75 2024-02-20 22:02:09.75 2200 FEE 432920 787 6015512 2024-02-20 22:02:09.75 2024-02-20 22:02:09.75 19800 TIP 432920 13076 6015515 2024-02-20 22:02:17.633 2024-02-20 22:02:17.633 0 FEE 433093 1577 6015523 2024-02-20 22:04:50.02 2024-02-20 22:04:50.02 1000 FEE 433066 19018 6015524 2024-02-20 22:04:50.02 2024-02-20 22:04:50.02 9000 TIP 433066 10016 6015527 2024-02-20 22:05:00.182 2024-02-20 22:05:00.182 1000 FEE 433098 9349 6015551 2024-02-20 22:07:32.981 2024-02-20 22:07:32.981 500 FEE 432912 15052 6015552 2024-02-20 22:07:32.981 2024-02-20 22:07:32.981 4500 TIP 432912 16440 6015553 2024-02-20 22:07:41.343 2024-02-20 22:07:41.343 1000 FEE 433103 19842 6015584 2024-02-20 22:10:30.286 2024-02-20 22:10:30.286 210000 FEE 433108 5852 6015597 2024-02-20 22:12:18.861 2024-02-20 22:12:18.861 5000 FEE 433049 7869 6015598 2024-02-20 22:12:18.861 2024-02-20 22:12:18.861 45000 TIP 433049 1291 6015606 2024-02-20 22:13:48.591 2024-02-20 22:13:48.591 1000 FEE 433111 646 6015620 2024-02-20 22:15:06.704 2024-02-20 22:15:06.704 1000 FEE 433115 738 6015648 2024-02-20 22:18:26.25 2024-02-20 22:18:26.25 0 FEE 433114 2309 6015650 2024-02-20 22:19:15.793 2024-02-20 22:19:15.793 2100 FEE 433043 16410 6015651 2024-02-20 22:19:15.793 2024-02-20 22:19:15.793 18900 TIP 433043 811 6015667 2024-02-20 22:20:53.397 2024-02-20 22:20:53.397 1000 FEE 433121 10096 6015668 2024-02-20 22:20:59.827 2024-02-20 22:20:59.827 100 FEE 432899 9200 6015669 2024-02-20 22:20:59.827 2024-02-20 22:20:59.827 900 TIP 432899 16442 6015676 2024-02-20 22:21:02.936 2024-02-20 22:21:02.936 100 FEE 432899 17526 6015677 2024-02-20 22:21:02.936 2024-02-20 22:21:02.936 900 TIP 432899 20802 6015687 2024-02-20 22:22:28.727 2024-02-20 22:22:28.727 8300 FEE 433100 13217 6015688 2024-02-20 22:22:28.727 2024-02-20 22:22:28.727 74700 TIP 433100 5557 6015722 2024-02-20 22:24:02.669 2024-02-20 22:24:02.669 100 FEE 433114 15719 6015723 2024-02-20 22:24:02.669 2024-02-20 22:24:02.669 900 TIP 433114 18896 6015727 2024-02-20 22:24:21.395 2024-02-20 22:24:21.395 9000 FEE 433114 11378 6015728 2024-02-20 22:24:21.395 2024-02-20 22:24:21.395 81000 TIP 433114 20182 6015738 2024-02-20 22:25:32.663 2024-02-20 22:25:32.663 1000 FEE 433125 9183 6015759 2024-02-20 22:28:54.432 2024-02-20 22:28:54.432 2100 FEE 433114 5425 6015760 2024-02-20 22:28:54.432 2024-02-20 22:28:54.432 18900 TIP 433114 21491 6015762 2024-02-20 22:29:06.143 2024-02-20 22:29:06.143 7700 FEE 432873 4378 6015763 2024-02-20 22:29:06.143 2024-02-20 22:29:06.143 69300 TIP 432873 16341 6015776 2024-02-20 22:29:08.858 2024-02-20 22:29:08.858 7700 FEE 432873 1751 6015777 2024-02-20 22:29:08.858 2024-02-20 22:29:08.858 69300 TIP 432873 7809 6015826 2024-02-20 22:37:24.709 2024-02-20 22:37:24.709 100 FEE 433043 19553 6015827 2024-02-20 22:37:24.709 2024-02-20 22:37:24.709 900 TIP 433043 985 6015865 2024-02-20 22:37:32.186 2024-02-20 22:37:32.186 100 FEE 432957 4175 6015866 2024-02-20 22:37:32.186 2024-02-20 22:37:32.186 900 TIP 432957 20502 6015882 2024-02-20 22:38:25.085 2024-02-20 22:38:25.085 4000 FEE 433122 12819 6015883 2024-02-20 22:38:25.085 2024-02-20 22:38:25.085 36000 TIP 433122 21492 6015885 2024-02-20 22:38:44.222 2024-02-20 22:38:44.222 2300 FEE 429310 18460 6015886 2024-02-20 22:38:44.222 2024-02-20 22:38:44.222 20700 TIP 429310 12965 6015903 2024-02-20 22:40:06.695 2024-02-20 22:40:06.695 400 FEE 433116 1617 6015904 2024-02-20 22:40:06.695 2024-02-20 22:40:06.695 3600 TIP 433116 4322 6015927 2024-02-20 22:43:42.956 2024-02-20 22:43:42.956 0 FEE 433138 19030 6015928 2024-02-20 22:43:53.694 2024-02-20 22:43:53.694 1000 FEE 433139 4074 6015954 2024-02-20 22:48:23.382 2024-02-20 22:48:23.382 2100 FEE 433087 826 6015955 2024-02-20 22:48:23.382 2024-02-20 22:48:23.382 18900 TIP 433087 7992 6015958 2024-02-20 22:48:36.08 2024-02-20 22:48:36.08 1000 FEE 433143 974 6015976 2024-02-20 22:50:17.513 2024-02-20 22:50:17.513 10000 FEE 432533 20816 6015977 2024-02-20 22:50:17.513 2024-02-20 22:50:17.513 90000 TIP 432533 6327 6015990 2024-02-20 22:53:24.591 2024-02-20 22:53:24.591 1000 FEE 432957 14990 6015991 2024-02-20 22:53:24.591 2024-02-20 22:53:24.591 9000 TIP 432957 17064 6016001 2024-02-20 22:55:40.36 2024-02-20 22:55:40.36 2300 FEE 433148 713 6016002 2024-02-20 22:55:40.36 2024-02-20 22:55:40.36 20700 TIP 433148 16124 6016003 2024-02-20 22:55:45.727 2024-02-20 22:55:45.727 1000 FEE 433153 13753 6016012 2024-02-20 22:57:22.713 2024-02-20 22:57:22.713 10000 FEE 432957 13198 6016013 2024-02-20 22:57:22.713 2024-02-20 22:57:22.713 90000 TIP 432957 19281 6016052 2024-02-20 23:02:54.317 2024-02-20 23:02:54.317 100 FEE 432913 1567 6016053 2024-02-20 23:02:54.317 2024-02-20 23:02:54.317 900 TIP 432913 18904 6016074 2024-02-20 23:05:07.732 2024-02-20 23:05:07.732 1000 FEE 432980 18543 6016075 2024-02-20 23:05:07.732 2024-02-20 23:05:07.732 9000 TIP 432980 2065 6016116 2024-02-20 23:09:37.641 2024-02-20 23:09:37.641 2300 FEE 433162 1162 6016117 2024-02-20 23:09:37.641 2024-02-20 23:09:37.641 20700 TIP 433162 3417 6016126 2024-02-20 23:10:07.466 2024-02-20 23:10:07.466 1000 FEE 433047 20340 6016127 2024-02-20 23:10:07.466 2024-02-20 23:10:07.466 9000 TIP 433047 1490 6016130 2024-02-20 23:10:12.633 2024-02-20 23:10:12.633 800 FEE 432989 21180 6016131 2024-02-20 23:10:12.633 2024-02-20 23:10:12.633 7200 TIP 432989 11165 6016164 2024-02-20 23:11:44.569 2024-02-20 23:11:44.569 1000 FEE 433171 9345 6016188 2024-02-20 23:13:01.421 2024-02-20 23:13:01.421 1000 FEE 433058 18528 6016189 2024-02-20 23:13:01.421 2024-02-20 23:13:01.421 9000 TIP 433058 19841 6016204 2024-02-20 23:14:38.449 2024-02-20 23:14:38.449 2100 FEE 432533 736 6016205 2024-02-20 23:14:38.449 2024-02-20 23:14:38.449 18900 TIP 432533 21320 6016207 2024-02-20 23:15:53.472 2024-02-20 23:15:53.472 1000 FEE 433174 19902 6016223 2024-02-20 23:19:17.886 2024-02-20 23:19:17.886 1000 FEE 433178 21349 6016244 2024-02-20 23:24:27.753 2024-02-20 23:24:27.753 10000 FEE 432301 718 6016245 2024-02-20 23:24:27.753 2024-02-20 23:24:27.753 90000 TIP 432301 16948 6016249 2024-02-20 23:24:47.063 2024-02-20 23:24:47.063 1000 FEE 433183 11648 6016250 2024-02-20 23:24:59.568 2024-02-20 23:24:59.568 2500 FEE 433027 15544 6016251 2024-02-20 23:24:59.568 2024-02-20 23:24:59.568 22500 TIP 433027 7746 6016253 2024-02-20 23:25:18.097 2024-02-20 23:25:18.097 2500 FEE 433037 17552 6016254 2024-02-20 23:25:18.097 2024-02-20 23:25:18.097 22500 TIP 433037 6717 6016271 2024-02-20 23:28:54.379 2024-02-20 23:28:54.379 2500 FEE 433049 19826 6016272 2024-02-20 23:28:54.379 2024-02-20 23:28:54.379 22500 TIP 433049 10638 6016275 2024-02-20 23:30:21.14 2024-02-20 23:30:21.14 2100 FEE 432660 19967 6016276 2024-02-20 23:30:21.14 2024-02-20 23:30:21.14 18900 TIP 432660 714 6016290 2024-02-20 23:32:18.724 2024-02-20 23:32:18.724 100 FEE 433121 19465 6016291 2024-02-20 23:32:18.724 2024-02-20 23:32:18.724 900 TIP 433121 18837 6016296 2024-02-20 23:32:34.42 2024-02-20 23:32:34.42 1000 FEE 433188 11714 6016308 2024-02-20 23:33:41.308 2024-02-20 23:33:41.308 2100 FEE 433123 3686 6016309 2024-02-20 23:33:41.308 2024-02-20 23:33:41.308 18900 TIP 433123 18727 6016311 2024-02-20 23:34:14.043 2024-02-20 23:34:14.043 500 FEE 433066 18941 6016312 2024-02-20 23:34:14.043 2024-02-20 23:34:14.043 4500 TIP 433066 21138 6015460 2024-02-20 21:55:33.688 2024-02-20 21:55:33.688 0 FEE 433082 12346 6015550 2024-02-20 22:07:31.618 2024-02-20 22:07:31.618 1000 FEE 433102 9349 6015571 2024-02-20 22:09:34.835 2024-02-20 22:09:34.835 2100 FEE 433081 6741 6015572 2024-02-20 22:09:34.835 2024-02-20 22:09:34.835 18900 TIP 433081 18454 6015576 2024-02-20 22:09:44.78 2024-02-20 22:09:44.78 1000 FEE 433066 20922 6015577 2024-02-20 22:09:44.78 2024-02-20 22:09:44.78 9000 TIP 433066 20015 6015610 2024-02-20 22:14:18.151 2024-02-20 22:14:18.151 4200 FEE 432980 16948 6015611 2024-02-20 22:14:18.151 2024-02-20 22:14:18.151 37800 TIP 432980 18314 6015629 2024-02-20 22:15:19.866 2024-02-20 22:15:19.866 2300 FEE 433108 17109 6015630 2024-02-20 22:15:19.866 2024-02-20 22:15:19.866 20700 TIP 433108 12821 6015639 2024-02-20 22:16:05.011 2024-02-20 22:16:05.011 1000 FEE 433117 20201 6015662 2024-02-20 22:19:59.38 2024-02-20 22:19:59.38 8300 FEE 433108 21119 6015663 2024-02-20 22:19:59.38 2024-02-20 22:19:59.38 74700 TIP 433108 981 6015670 2024-02-20 22:21:00.224 2024-02-20 22:21:00.224 100 FEE 432899 4128 6015671 2024-02-20 22:21:00.224 2024-02-20 22:21:00.224 900 TIP 432899 18344 6015704 2024-02-20 22:23:15.007 2024-02-20 22:23:15.007 9000 FEE 433042 16513 6015705 2024-02-20 22:23:15.007 2024-02-20 22:23:15.007 81000 TIP 433042 18392 6015736 2024-02-20 22:25:23.3 2024-02-20 22:25:23.3 9000 FEE 433087 21139 6015737 2024-02-20 22:25:23.3 2024-02-20 22:25:23.3 81000 TIP 433087 19147 6015744 2024-02-20 22:27:47.963 2024-02-20 22:27:47.963 27000 FEE 433051 2077 6015745 2024-02-20 22:27:47.963 2024-02-20 22:27:47.963 243000 TIP 433051 1135 6015757 2024-02-20 22:28:33.086 2024-02-20 22:28:33.086 2100 FEE 432921 18829 6015758 2024-02-20 22:28:33.086 2024-02-20 22:28:33.086 18900 TIP 432921 1806 6015786 2024-02-20 22:29:52.872 2024-02-20 22:29:52.872 1000 FEE 433127 18470 6015790 2024-02-20 22:30:43.224 2024-02-20 22:30:43.224 1000 FEE 433128 12102 6015812 2024-02-20 22:37:22.583 2024-02-20 22:37:22.583 100 FEE 433075 15858 6015813 2024-02-20 22:37:22.583 2024-02-20 22:37:22.583 900 TIP 433075 21079 6015820 2024-02-20 22:37:24.014 2024-02-20 22:37:24.014 100 FEE 433043 20655 6015821 2024-02-20 22:37:24.014 2024-02-20 22:37:24.014 900 TIP 433043 1712 6015828 2024-02-20 22:37:24.948 2024-02-20 22:37:24.948 100 FEE 433043 14122 6015829 2024-02-20 22:37:24.948 2024-02-20 22:37:24.948 900 TIP 433043 10490 6015840 2024-02-20 22:37:27.489 2024-02-20 22:37:27.489 100 FEE 433075 12057 6015841 2024-02-20 22:37:27.489 2024-02-20 22:37:27.489 900 TIP 433075 9084 6015859 2024-02-20 22:37:31.736 2024-02-20 22:37:31.736 100 FEE 432957 19583 6015860 2024-02-20 22:37:31.736 2024-02-20 22:37:31.736 900 TIP 432957 1352 6015873 2024-02-20 22:37:32.785 2024-02-20 22:37:32.785 100 FEE 432957 11760 6015874 2024-02-20 22:37:32.785 2024-02-20 22:37:32.785 900 TIP 432957 1175 6015910 2024-02-20 22:41:07.382 2024-02-20 22:41:07.382 1000 FEE 433135 19235 6015912 2024-02-20 22:41:33.215 2024-02-20 22:41:33.215 4200 FEE 426129 20110 6015913 2024-02-20 22:41:33.215 2024-02-20 22:41:33.215 37800 TIP 426129 9816 6015921 2024-02-20 22:42:37.662 2024-02-20 22:42:37.662 4000 FEE 433114 21119 6015922 2024-02-20 22:42:37.662 2024-02-20 22:42:37.662 36000 TIP 433114 12516 6015966 2024-02-20 22:49:50.822 2024-02-20 22:49:50.822 10000 FEE 432338 18897 6015967 2024-02-20 22:49:50.822 2024-02-20 22:49:50.822 90000 TIP 432338 16598 6015984 2024-02-20 22:51:48.068 2024-02-20 22:51:48.068 21800 FEE 433121 21437 6015985 2024-02-20 22:51:48.068 2024-02-20 22:51:48.068 196200 TIP 433121 20849 6015994 2024-02-20 22:54:58.495 2024-02-20 22:54:58.495 100000 FEE 433151 19622 6015996 2024-02-20 22:55:26.176 2024-02-20 22:55:26.176 1000 FEE 433152 14545 6015997 2024-02-20 22:55:38.979 2024-02-20 22:55:38.979 2300 FEE 433148 18170 6015998 2024-02-20 22:55:38.979 2024-02-20 22:55:38.979 20700 TIP 433148 21242 6015999 2024-02-20 22:55:39.311 2024-02-20 22:55:39.311 4600 FEE 433148 12220 6016000 2024-02-20 22:55:39.311 2024-02-20 22:55:39.311 41400 TIP 433148 6499 6016014 2024-02-20 22:57:44.968 2024-02-20 22:57:44.968 1000 FEE 433154 19664 6016016 2024-02-20 22:58:57.01 2024-02-20 22:58:57.01 400 FEE 432674 20778 6016017 2024-02-20 22:58:57.01 2024-02-20 22:58:57.01 3600 TIP 432674 20564 6016029 2024-02-20 23:02:38.095 2024-02-20 23:02:38.095 1000 FEE 433159 8360 6016070 2024-02-20 23:04:00.969 2024-02-20 23:04:00.969 1000 FEE 433042 18068 6016071 2024-02-20 23:04:00.969 2024-02-20 23:04:00.969 9000 TIP 433042 14818 6016080 2024-02-20 23:05:28.196 2024-02-20 23:05:28.196 1000 FEE 433035 1773 6016081 2024-02-20 23:05:28.196 2024-02-20 23:05:28.196 9000 TIP 433035 1564 6016092 2024-02-20 23:07:06.404 2024-02-20 23:07:06.404 1000 FEE 433163 17727 6015509 2024-02-20 22:02:05.381 2024-02-20 22:02:05.381 1000 STREAM 141924 10979 6015522 2024-02-20 22:04:05.396 2024-02-20 22:04:05.396 1000 STREAM 141924 4650 6015520 2024-02-20 22:03:54.701 2024-02-20 22:03:54.701 1000 FEE 433096 16177 6015521 2024-02-20 22:04:03.108 2024-02-20 22:04:03.108 10000 FEE 433097 7553 6015528 2024-02-20 22:05:04.678 2024-02-20 22:05:04.678 1000 STREAM 141924 9367 6015530 2024-02-20 22:05:28.237 2024-02-20 22:05:28.237 1000 FEE 432045 694 6015531 2024-02-20 22:05:28.237 2024-02-20 22:05:28.237 9000 TIP 432045 17741 6015536 2024-02-20 22:05:59.951 2024-02-20 22:05:59.951 1000 FEE 433100 1985 6015537 2024-02-20 22:06:04.678 2024-02-20 22:06:04.678 1000 STREAM 141924 16424 6015545 2024-02-20 22:07:00.342 2024-02-20 22:07:00.342 1000 FEE 203177 3717 6015546 2024-02-20 22:07:00.342 2024-02-20 22:07:00.342 9000 TIP 203177 6555 6015547 2024-02-20 22:07:04.69 2024-02-20 22:07:04.69 1000 STREAM 141924 9362 6015560 2024-02-20 22:08:04.704 2024-02-20 22:08:04.704 1000 STREAM 141924 5557 6015563 2024-02-20 22:09:04.766 2024-02-20 22:09:04.766 1000 STREAM 141924 17517 6015567 2024-02-20 22:09:33.632 2024-02-20 22:09:33.632 300 FEE 432979 1286 6015568 2024-02-20 22:09:33.632 2024-02-20 22:09:33.632 2700 TIP 432979 19151 6015578 2024-02-20 22:10:05.057 2024-02-20 22:10:05.057 1000 STREAM 141924 17321 6015587 2024-02-20 22:11:04.967 2024-02-20 22:11:04.967 1000 STREAM 141924 21591 6015593 2024-02-20 22:12:04.973 2024-02-20 22:12:04.973 1000 STREAM 141924 13921 6015603 2024-02-20 22:12:31.432 2024-02-20 22:12:31.432 7100 FEE 432987 20756 6015604 2024-02-20 22:12:31.432 2024-02-20 22:12:31.432 63900 TIP 432987 14489 6015605 2024-02-20 22:13:05.006 2024-02-20 22:13:05.006 1000 STREAM 141924 7659 6015609 2024-02-20 22:14:05.008 2024-02-20 22:14:05.008 1000 STREAM 141924 19546 6015619 2024-02-20 22:15:05 2024-02-20 22:15:05 1000 STREAM 141924 16848 6015631 2024-02-20 22:15:20.413 2024-02-20 22:15:20.413 2300 FEE 433108 1000 6015632 2024-02-20 22:15:20.413 2024-02-20 22:15:20.413 20700 TIP 433108 20220 6015638 2024-02-20 22:16:05.025 2024-02-20 22:16:05.025 1000 STREAM 141924 776 6015641 2024-02-20 22:17:05.004 2024-02-20 22:17:05.004 1000 STREAM 141924 11523 6015647 2024-02-20 22:18:05.053 2024-02-20 22:18:05.053 1000 STREAM 141924 12951 6015649 2024-02-20 22:19:05.058 2024-02-20 22:19:05.058 1000 STREAM 141924 16598 6015664 2024-02-20 22:20:05.107 2024-02-20 22:20:05.107 1000 STREAM 141924 20993 6015665 2024-02-20 22:20:09.165 2024-02-20 22:20:09.165 1600 FEE 433114 18473 6015666 2024-02-20 22:20:09.165 2024-02-20 22:20:09.165 14400 TIP 433114 1273 6015674 2024-02-20 22:21:01.155 2024-02-20 22:21:01.155 100 FEE 432899 20490 6015675 2024-02-20 22:21:01.155 2024-02-20 22:21:01.155 900 TIP 432899 17552 6015679 2024-02-20 22:21:05.094 2024-02-20 22:21:05.094 1000 STREAM 141924 17800 6015683 2024-02-20 22:22:05.072 2024-02-20 22:22:05.072 1000 STREAM 141924 646 6015684 2024-02-20 22:22:06.788 2024-02-20 22:22:06.788 1000 FEE 433124 5942 6015693 2024-02-20 22:22:52.886 2024-02-20 22:22:52.886 900 FEE 433123 3990 6015694 2024-02-20 22:22:52.886 2024-02-20 22:22:52.886 8100 TIP 433123 2010 6015699 2024-02-20 22:23:05.102 2024-02-20 22:23:05.102 1000 STREAM 141924 21578 6015702 2024-02-20 22:23:08.696 2024-02-20 22:23:08.696 900 FEE 433042 20481 6015703 2024-02-20 22:23:08.696 2024-02-20 22:23:08.696 8100 TIP 433042 20243 6015726 2024-02-20 22:24:05.101 2024-02-20 22:24:05.101 1000 STREAM 141924 16354 6015731 2024-02-20 22:25:05.257 2024-02-20 22:25:05.257 1000 STREAM 141924 18736 6015739 2024-02-20 22:26:05.158 2024-02-20 22:26:05.158 1000 STREAM 141924 18426 6015742 2024-02-20 22:27:05.181 2024-02-20 22:27:05.181 1000 STREAM 141924 1310 6015746 2024-02-20 22:28:04.619 2024-02-20 22:28:04.619 2100 FEE 433066 18923 6015747 2024-02-20 22:28:04.619 2024-02-20 22:28:04.619 18900 TIP 433066 11164 6015748 2024-02-20 22:28:05.181 2024-02-20 22:28:05.181 1000 STREAM 141924 19633 6015761 2024-02-20 22:29:05.193 2024-02-20 22:29:05.193 1000 STREAM 141924 18262 6015764 2024-02-20 22:29:07.443 2024-02-20 22:29:07.443 7700 FEE 432873 14247 6015765 2024-02-20 22:29:07.443 2024-02-20 22:29:07.443 69300 TIP 432873 965 6015770 2024-02-20 22:29:08.326 2024-02-20 22:29:08.326 15400 FEE 432873 20045 6015771 2024-02-20 22:29:08.326 2024-02-20 22:29:08.326 138600 TIP 432873 19121 6015778 2024-02-20 22:29:08.985 2024-02-20 22:29:08.985 7700 FEE 432873 1010 6015779 2024-02-20 22:29:08.985 2024-02-20 22:29:08.985 69300 TIP 432873 16149 6015787 2024-02-20 22:30:05.205 2024-02-20 22:30:05.205 1000 STREAM 141924 18321 6015791 2024-02-20 22:31:05.2 2024-02-20 22:31:05.2 1000 STREAM 141924 19375 6015792 2024-02-20 22:32:05.196 2024-02-20 22:32:05.196 1000 STREAM 141924 21391 6015793 2024-02-20 22:33:05.221 2024-02-20 22:33:05.221 1000 STREAM 141924 10519 6015794 2024-02-20 22:34:05.233 2024-02-20 22:34:05.233 1000 STREAM 141924 4238 6015795 2024-02-20 22:35:05.227 2024-02-20 22:35:05.227 1000 STREAM 141924 1692 6015804 2024-02-20 22:36:05.225 2024-02-20 22:36:05.225 1000 STREAM 141924 937 6015805 2024-02-20 22:37:05.232 2024-02-20 22:37:05.232 1000 STREAM 141924 960 6015814 2024-02-20 22:37:22.907 2024-02-20 22:37:22.907 100 FEE 433043 959 6015815 2024-02-20 22:37:22.907 2024-02-20 22:37:22.907 900 TIP 433043 733 6015830 2024-02-20 22:37:26.402 2024-02-20 22:37:26.402 100 FEE 433075 10719 6015831 2024-02-20 22:37:26.402 2024-02-20 22:37:26.402 900 TIP 433075 1092 6015834 2024-02-20 22:37:26.837 2024-02-20 22:37:26.837 100 FEE 433075 16939 6015835 2024-02-20 22:37:26.837 2024-02-20 22:37:26.837 900 TIP 433075 902 6015845 2024-02-20 22:37:30.52 2024-02-20 22:37:30.52 100 FEE 432957 15052 6015846 2024-02-20 22:37:30.52 2024-02-20 22:37:30.52 900 TIP 432957 20624 6015853 2024-02-20 22:37:31.318 2024-02-20 22:37:31.318 100 FEE 432957 5522 6015854 2024-02-20 22:37:31.318 2024-02-20 22:37:31.318 900 TIP 432957 12738 6015877 2024-02-20 22:37:33.731 2024-02-20 22:37:33.731 2300 FEE 433127 18262 6015878 2024-02-20 22:37:33.731 2024-02-20 22:37:33.731 20700 TIP 433127 18372 6015881 2024-02-20 22:38:05.244 2024-02-20 22:38:05.244 1000 STREAM 141924 21332 6015887 2024-02-20 22:39:05.26 2024-02-20 22:39:05.26 1000 STREAM 141924 16356 6015888 2024-02-20 22:39:23.968 2024-02-20 22:39:23.968 1000 FEE 433114 626 6015889 2024-02-20 22:39:23.968 2024-02-20 22:39:23.968 9000 TIP 433114 20754 6015898 2024-02-20 22:39:25.163 2024-02-20 22:39:25.163 1000 FEE 433114 21216 6015899 2024-02-20 22:39:25.163 2024-02-20 22:39:25.163 9000 TIP 433114 21344 6015902 2024-02-20 22:40:05.298 2024-02-20 22:40:05.298 1000 STREAM 141924 9820 6015909 2024-02-20 22:41:05.277 2024-02-20 22:41:05.277 1000 STREAM 141924 8570 6015911 2024-02-20 22:41:31.331 2024-02-20 22:41:31.331 1000 FEE 433136 21402 6015916 2024-02-20 22:42:05.281 2024-02-20 22:42:05.281 1000 STREAM 141924 6749 6015917 2024-02-20 22:42:22.416 2024-02-20 22:42:22.416 4200 FEE 430426 896 6015918 2024-02-20 22:42:22.416 2024-02-20 22:42:22.416 37800 TIP 430426 21207 6015925 2024-02-20 22:43:05.29 2024-02-20 22:43:05.29 1000 STREAM 141924 7395 6015930 2024-02-20 22:44:03.307 2024-02-20 22:44:03.307 1000 STREAM 141924 720 6015934 2024-02-20 22:45:05.31 2024-02-20 22:45:05.31 1000 STREAM 141924 2703 6015936 2024-02-20 22:46:05.311 2024-02-20 22:46:05.311 1000 STREAM 141924 15337 6015939 2024-02-20 22:46:10.004 2024-02-20 22:46:10.004 2300 FEE 433139 19987 6015940 2024-02-20 22:46:10.004 2024-02-20 22:46:10.004 20700 TIP 433139 15049 6015943 2024-02-20 22:46:10.265 2024-02-20 22:46:10.265 2300 FEE 433139 21361 6015944 2024-02-20 22:46:10.265 2024-02-20 22:46:10.265 20700 TIP 433139 19156 6015948 2024-02-20 22:47:05.329 2024-02-20 22:47:05.329 1000 STREAM 141924 21003 6015949 2024-02-20 22:48:05.328 2024-02-20 22:48:05.328 1000 STREAM 141924 7877 6015960 2024-02-20 22:49:05.344 2024-02-20 22:49:05.344 1000 STREAM 141924 20376 6015964 2024-02-20 22:49:41.955 2024-02-20 22:49:41.955 10000 FEE 432002 822 6015965 2024-02-20 22:49:41.955 2024-02-20 22:49:41.955 90000 TIP 432002 9669 6015969 2024-02-20 22:50:05.378 2024-02-20 22:50:05.378 1000 STREAM 141924 4259 6015970 2024-02-20 22:50:14.187 2024-02-20 22:50:14.187 100 FEE 432859 10056 6015971 2024-02-20 22:50:14.187 2024-02-20 22:50:14.187 900 TIP 432859 6382 6015978 2024-02-20 22:50:32.094 2024-02-20 22:50:32.094 1000 FEE 433147 21314 6015982 2024-02-20 22:51:05.372 2024-02-20 22:51:05.372 1000 STREAM 141924 20891 6015986 2024-02-20 22:52:03.378 2024-02-20 22:52:03.378 1000 STREAM 141924 16348 6015989 2024-02-20 22:53:03.374 2024-02-20 22:53:03.374 1000 STREAM 141924 1489 6015946 2024-02-20 22:46:11.677 2024-02-20 22:46:11.677 20700 TIP 433139 19664 6015961 2024-02-20 22:49:19.777 2024-02-20 22:49:19.777 2100 FEE 433114 20817 6015962 2024-02-20 22:49:19.777 2024-02-20 22:49:19.777 18900 TIP 433114 20681 6015972 2024-02-20 22:50:14.468 2024-02-20 22:50:14.468 900 FEE 432859 18830 6015973 2024-02-20 22:50:14.468 2024-02-20 22:50:14.468 8100 TIP 432859 2639 6016008 2024-02-20 22:55:56.091 2024-02-20 22:55:56.091 2100 FEE 433123 5500 6016009 2024-02-20 22:55:56.091 2024-02-20 22:55:56.091 18900 TIP 433123 1039 6016022 2024-02-20 23:00:50.107 2024-02-20 23:00:50.107 0 FEE 433154 1298 6016026 2024-02-20 23:01:29.836 2024-02-20 23:01:29.836 2100 FEE 432674 19777 6016027 2024-02-20 23:01:29.836 2024-02-20 23:01:29.836 18900 TIP 432674 20681 6016032 2024-02-20 23:02:41.263 2024-02-20 23:02:41.263 2300 FEE 433155 14503 6016033 2024-02-20 23:02:41.263 2024-02-20 23:02:41.263 20700 TIP 433155 19637 6016040 2024-02-20 23:02:48.291 2024-02-20 23:02:48.291 1000 FEE 433156 4064 6016041 2024-02-20 23:02:48.291 2024-02-20 23:02:48.291 9000 TIP 433156 2013 6016063 2024-02-20 23:03:50.579 2024-02-20 23:03:50.579 1000 FEE 433160 3686 6016090 2024-02-20 23:06:30.439 2024-02-20 23:06:30.439 1000 FEE 433162 651 6016097 2024-02-20 23:08:45.044 2024-02-20 23:08:45.044 1000 FEE 433165 18114 6016136 2024-02-20 23:10:29.151 2024-02-20 23:10:29.151 1000 FEE 433170 18372 6016138 2024-02-20 23:11:03.902 2024-02-20 23:11:03.902 3300 FEE 433087 10693 6016139 2024-02-20 23:11:03.902 2024-02-20 23:11:03.902 29700 TIP 433087 21303 6016142 2024-02-20 23:11:04.943 2024-02-20 23:11:04.943 3300 FEE 433087 632 6016143 2024-02-20 23:11:04.943 2024-02-20 23:11:04.943 29700 TIP 433087 900 6016154 2024-02-20 23:11:13.754 2024-02-20 23:11:13.754 6400 FEE 433014 21269 6016155 2024-02-20 23:11:13.754 2024-02-20 23:11:13.754 57600 TIP 433014 964 6016162 2024-02-20 23:11:37.86 2024-02-20 23:11:37.86 12800 FEE 431063 19322 6016163 2024-02-20 23:11:37.86 2024-02-20 23:11:37.86 115200 TIP 431063 897 6016165 2024-02-20 23:11:49.974 2024-02-20 23:11:49.974 10000 FEE 432957 919 6016166 2024-02-20 23:11:49.974 2024-02-20 23:11:49.974 90000 TIP 432957 11192 6016182 2024-02-20 23:12:29.318 2024-02-20 23:12:29.318 12800 FEE 432130 14255 6016183 2024-02-20 23:12:29.318 2024-02-20 23:12:29.318 115200 TIP 432130 18309 6016195 2024-02-20 23:13:59.124 2024-02-20 23:13:59.124 1000 FEE 47002 15386 6016196 2024-02-20 23:13:59.124 2024-02-20 23:13:59.124 9000 TIP 47002 21600 6016210 2024-02-20 23:16:00.452 2024-02-20 23:16:00.452 1000 FEE 433175 5694 6016218 2024-02-20 23:18:44.574 2024-02-20 23:18:44.574 100 FEE 433108 14370 6016219 2024-02-20 23:18:44.574 2024-02-20 23:18:44.574 900 TIP 433108 17183 6016232 2024-02-20 23:20:42.15 2024-02-20 23:20:42.15 1000 FEE 433103 20080 6016233 2024-02-20 23:20:42.15 2024-02-20 23:20:42.15 9000 TIP 433103 14552 6016234 2024-02-20 23:20:44.645 2024-02-20 23:20:44.645 1000 FEE 433087 18068 6016235 2024-02-20 23:20:44.645 2024-02-20 23:20:44.645 9000 TIP 433087 1141 6016286 2024-02-20 23:32:04.65 2024-02-20 23:32:04.65 1000 FEE 433187 14074 6016287 2024-02-20 23:32:04.65 2024-02-20 23:32:04.65 9000 TIP 433187 2529 6016298 2024-02-20 23:32:52.23 2024-02-20 23:32:52.23 6900 FEE 432712 20080 6016299 2024-02-20 23:32:52.23 2024-02-20 23:32:52.23 62100 TIP 432712 19689 6016305 2024-02-20 23:33:16.278 2024-02-20 23:33:16.278 90000 FEE 432987 16998 6016306 2024-02-20 23:33:16.278 2024-02-20 23:33:16.278 810000 TIP 432987 14651 6016319 2024-02-20 23:34:23.229 2024-02-20 23:34:23.229 1600 FEE 432957 19639 6016320 2024-02-20 23:34:23.229 2024-02-20 23:34:23.229 14400 TIP 432957 715 6016321 2024-02-20 23:34:26.81 2024-02-20 23:34:26.81 100 FEE 433161 17321 6016322 2024-02-20 23:34:26.81 2024-02-20 23:34:26.81 900 TIP 433161 20299 6016326 2024-02-20 23:35:31.656 2024-02-20 23:35:31.656 2100 FEE 433083 649 6016327 2024-02-20 23:35:31.656 2024-02-20 23:35:31.656 18900 TIP 433083 11516 6016358 2024-02-20 23:37:36.042 2024-02-20 23:37:36.042 1000 FEE 433191 7966 6016362 2024-02-20 23:38:15.917 2024-02-20 23:38:15.917 2100 FEE 433049 20901 6016363 2024-02-20 23:38:15.917 2024-02-20 23:38:15.917 18900 TIP 433049 21541 6016382 2024-02-20 23:42:09.301 2024-02-20 23:42:09.301 2300 FEE 433197 14258 6016383 2024-02-20 23:42:09.301 2024-02-20 23:42:09.301 20700 TIP 433197 14791 6016384 2024-02-20 23:42:09.424 2024-02-20 23:42:09.424 2300 FEE 433197 4059 6016385 2024-02-20 23:42:09.424 2024-02-20 23:42:09.424 20700 TIP 433197 20889 6016393 2024-02-20 23:43:58.208 2024-02-20 23:43:58.208 1600 FEE 433114 1881 6016394 2024-02-20 23:43:58.208 2024-02-20 23:43:58.208 14400 TIP 433114 1512 6016432 2024-02-20 23:51:28.596 2024-02-20 23:51:28.596 1600 FEE 432873 18932 6016433 2024-02-20 23:51:28.596 2024-02-20 23:51:28.596 14400 TIP 432873 15088 6016439 2024-02-20 23:53:28.65 2024-02-20 23:53:28.65 2500 FEE 432493 7766 6016440 2024-02-20 23:53:28.65 2024-02-20 23:53:28.65 22500 TIP 432493 15119 6016441 2024-02-20 23:53:38.762 2024-02-20 23:53:38.762 2500 FEE 432633 4313 6016442 2024-02-20 23:53:38.762 2024-02-20 23:53:38.762 22500 TIP 432633 19663 6016445 2024-02-20 23:53:58.771 2024-02-20 23:53:58.771 1600 FEE 432899 20861 6016446 2024-02-20 23:53:58.771 2024-02-20 23:53:58.771 14400 TIP 432899 17030 6016460 2024-02-20 23:56:07.743 2024-02-20 23:56:07.743 100 FEE 433025 16638 6016461 2024-02-20 23:56:07.743 2024-02-20 23:56:07.743 900 TIP 433025 21344 6016480 2024-02-20 23:58:11.553 2024-02-20 23:58:11.553 30000 FEE 433188 20840 6016481 2024-02-20 23:58:11.553 2024-02-20 23:58:11.553 270000 TIP 433188 5520 6016483 2024-02-20 23:58:27.901 2024-02-20 23:58:27.901 200 FEE 432705 9845 6016484 2024-02-20 23:58:27.901 2024-02-20 23:58:27.901 1800 TIP 432705 19511 6016485 2024-02-20 23:58:48.152 2024-02-20 23:58:48.152 1000 FEE 433211 18932 6016496 2024-02-21 00:00:14.318 2024-02-21 00:00:14.318 2000 FEE 432920 16839 6016497 2024-02-21 00:00:14.318 2024-02-21 00:00:14.318 18000 TIP 432920 3461 6016499 2024-02-21 00:00:21.11 2024-02-21 00:00:21.11 2100 FEE 433164 18618 6016500 2024-02-21 00:00:21.11 2024-02-21 00:00:21.11 18900 TIP 433164 6260 6016501 2024-02-21 00:00:25.102 2024-02-21 00:00:25.102 1000 FEE 433215 6537 6016502 2024-02-21 00:00:48.118 2024-02-21 00:00:48.118 2500 FEE 433097 4502 6016503 2024-02-21 00:00:48.118 2024-02-21 00:00:48.118 22500 TIP 433097 1064 6016504 2024-02-21 00:00:48.563 2024-02-21 00:00:48.563 1000 FEE 432103 21523 6016505 2024-02-21 00:00:48.563 2024-02-21 00:00:48.563 9000 TIP 432103 2056 6016508 2024-02-21 00:01:08.556 2024-02-21 00:01:08.556 2500 FEE 433021 19905 6016509 2024-02-21 00:01:08.556 2024-02-21 00:01:08.556 22500 TIP 433021 18409 6016510 2024-02-21 00:01:13.48 2024-02-21 00:01:13.48 1000 FEE 433177 8916 6016511 2024-02-21 00:01:13.48 2024-02-21 00:01:13.48 9000 TIP 433177 17817 6016536 2024-02-21 00:02:53.978 2024-02-21 00:02:53.978 2100 FEE 433114 2652 6016537 2024-02-21 00:02:53.978 2024-02-21 00:02:53.978 18900 TIP 433114 19458 6016541 2024-02-21 00:02:54.819 2024-02-21 00:02:54.819 2100 FEE 433114 19663 6016542 2024-02-21 00:02:54.819 2024-02-21 00:02:54.819 18900 TIP 433114 13854 6016555 2024-02-21 00:03:18.044 2024-02-21 00:03:18.044 1000 FEE 433201 5590 6016556 2024-02-21 00:03:18.044 2024-02-21 00:03:18.044 9000 TIP 433201 1845 6016621 2024-02-21 00:07:08.974 2024-02-21 00:07:08.974 3300 FEE 432920 15075 6016622 2024-02-21 00:07:08.974 2024-02-21 00:07:08.974 29700 TIP 432920 9992 6016631 2024-02-21 00:08:48.267 2024-02-21 00:08:48.267 10000 FEE 432981 10393 6016632 2024-02-21 00:08:48.267 2024-02-21 00:08:48.267 90000 TIP 432981 12368 6016658 2024-02-21 00:12:32.693 2024-02-21 00:12:32.693 1000 FEE 433234 15060 6016659 2024-02-21 00:12:48.728 2024-02-21 00:12:48.728 100 FEE 433088 716 6016660 2024-02-21 00:12:48.728 2024-02-21 00:12:48.728 900 TIP 433088 20964 6016667 2024-02-21 00:13:54.613 2024-02-21 00:13:54.613 1000 FEE 433236 7847 6016669 2024-02-21 00:14:25.658 2024-02-21 00:14:25.658 2100 FEE 432920 9333 6016670 2024-02-21 00:14:25.658 2024-02-21 00:14:25.658 18900 TIP 432920 13361 6016686 2024-02-21 00:17:03.834 2024-02-21 00:17:03.834 1000 FEE 433240 18930 6016711 2024-02-21 00:22:10.268 2024-02-21 00:22:10.268 1000 FEE 433193 8400 6016712 2024-02-21 00:22:10.268 2024-02-21 00:22:10.268 9000 TIP 433193 2162 6015992 2024-02-20 22:54:03.451 2024-02-20 22:54:03.451 1000 STREAM 141924 18051 6016010 2024-02-20 22:56:03.47 2024-02-20 22:56:03.47 1000 STREAM 141924 9367 6016015 2024-02-20 22:58:03.472 2024-02-20 22:58:03.472 1000 STREAM 141924 1823 6016020 2024-02-20 23:00:03.53 2024-02-20 23:00:03.53 1000 STREAM 141924 11430 6016024 2024-02-20 23:01:03.492 2024-02-20 23:01:03.492 1000 STREAM 141924 14370 6016028 2024-02-20 23:02:03.506 2024-02-20 23:02:03.506 1000 STREAM 141924 20353 6016072 2024-02-20 23:04:03.52 2024-02-20 23:04:03.52 1000 STREAM 141924 20704 6016091 2024-02-20 23:07:05.559 2024-02-20 23:07:05.559 1000 STREAM 141924 15088 6016170 2024-02-20 23:12:03.58 2024-02-20 23:12:03.58 1000 STREAM 141924 2224 6016215 2024-02-20 23:18:03.604 2024-02-20 23:18:03.604 1000 STREAM 141924 2529 6016252 2024-02-20 23:25:03.707 2024-02-20 23:25:03.707 1000 STREAM 141924 18116 6016267 2024-02-20 23:28:01.735 2024-02-20 23:28:01.735 1000 STREAM 141924 641 6016273 2024-02-20 23:29:03.735 2024-02-20 23:29:03.735 1000 STREAM 141924 688 6016300 2024-02-20 23:33:03.764 2024-02-20 23:33:03.764 1000 STREAM 141924 670 6016310 2024-02-20 23:34:01.77 2024-02-20 23:34:01.77 1000 STREAM 141924 16660 6016330 2024-02-20 23:36:01.789 2024-02-20 23:36:01.789 1000 STREAM 141924 14295 6016374 2024-02-20 23:41:03.81 2024-02-20 23:41:03.81 1000 STREAM 141924 716 6016398 2024-02-20 23:45:03.839 2024-02-20 23:45:03.839 1000 STREAM 141924 7773 6016403 2024-02-20 23:47:03.829 2024-02-20 23:47:03.829 1000 STREAM 141924 18819 6016431 2024-02-20 23:51:03.867 2024-02-20 23:51:03.867 1000 STREAM 141924 19660 6016447 2024-02-20 23:54:01.87 2024-02-20 23:54:01.87 1000 STREAM 141924 1959 6016453 2024-02-20 23:56:01.886 2024-02-20 23:56:01.886 1000 STREAM 141924 1468 6016486 2024-02-20 23:59:03.893 2024-02-20 23:59:03.893 1000 STREAM 141924 5806 6016492 2024-02-21 00:00:01.924 2024-02-21 00:00:01.924 1000 STREAM 141924 21262 6016507 2024-02-21 00:01:05.922 2024-02-21 00:01:05.922 1000 STREAM 141924 18556 6016549 2024-02-21 00:03:01.935 2024-02-21 00:03:01.935 1000 STREAM 141924 827 6016646 2024-02-21 00:11:01.971 2024-02-21 00:11:01.971 1000 STREAM 141924 5828 6016700 2024-02-21 00:21:02.048 2024-02-21 00:21:02.048 1000 STREAM 141924 21361 6016771 2024-02-21 00:29:02.073 2024-02-21 00:29:02.073 1000 STREAM 141924 8541 6016781 2024-02-21 00:31:02.075 2024-02-21 00:31:02.075 1000 STREAM 141924 992 6016788 2024-02-21 00:34:02.081 2024-02-21 00:34:02.081 1000 STREAM 141924 13854 6016792 2024-02-21 00:36:02.093 2024-02-21 00:36:02.093 1000 STREAM 141924 6041 6015995 2024-02-20 22:55:03.464 2024-02-20 22:55:03.464 1000 STREAM 141924 4323 6016011 2024-02-20 22:57:03.471 2024-02-20 22:57:03.471 1000 STREAM 141924 14202 6016018 2024-02-20 22:59:02.365 2024-02-20 22:59:02.365 1000 STREAM 141924 4538 6016054 2024-02-20 23:03:03.508 2024-02-20 23:03:03.508 1000 STREAM 141924 20157 6016073 2024-02-20 23:05:03.526 2024-02-20 23:05:03.526 1000 STREAM 141924 13327 6016087 2024-02-20 23:06:03.541 2024-02-20 23:06:03.541 1000 STREAM 141924 770 6016094 2024-02-20 23:08:03.555 2024-02-20 23:08:03.555 1000 STREAM 141924 9348 6016100 2024-02-20 23:09:03.558 2024-02-20 23:09:03.558 1000 STREAM 141924 16649 6016125 2024-02-20 23:10:03.578 2024-02-20 23:10:03.578 1000 STREAM 141924 18180 6016190 2024-02-20 23:13:03.579 2024-02-20 23:13:03.579 1000 STREAM 141924 20381 6016197 2024-02-20 23:14:03.601 2024-02-20 23:14:03.601 1000 STREAM 141924 21563 6016206 2024-02-20 23:15:03.608 2024-02-20 23:15:03.608 1000 STREAM 141924 15719 6016211 2024-02-20 23:16:03.596 2024-02-20 23:16:03.596 1000 STREAM 141924 2961 6016212 2024-02-20 23:17:03.589 2024-02-20 23:17:03.589 1000 STREAM 141924 651 6016229 2024-02-20 23:20:03.644 2024-02-20 23:20:03.644 1000 STREAM 141924 12951 6016236 2024-02-20 23:21:03.636 2024-02-20 23:21:03.636 1000 STREAM 141924 5519 6016242 2024-02-20 23:23:03.64 2024-02-20 23:23:03.64 1000 STREAM 141924 19888 6016263 2024-02-20 23:27:03.738 2024-02-20 23:27:03.738 1000 STREAM 141924 20299 6016274 2024-02-20 23:30:01.774 2024-02-20 23:30:01.774 1000 STREAM 141924 19732 6016280 2024-02-20 23:31:03.758 2024-02-20 23:31:03.758 1000 STREAM 141924 21040 6016325 2024-02-20 23:35:03.781 2024-02-20 23:35:03.781 1000 STREAM 141924 18449 6016347 2024-02-20 23:37:03.781 2024-02-20 23:37:03.781 1000 STREAM 141924 2111 6016361 2024-02-20 23:38:01.81 2024-02-20 23:38:01.81 1000 STREAM 141924 4238 6016368 2024-02-20 23:39:03.802 2024-02-20 23:39:03.802 1000 STREAM 141924 21201 6016390 2024-02-20 23:43:03.831 2024-02-20 23:43:03.831 1000 STREAM 141924 18892 6016407 2024-02-20 23:48:01.839 2024-02-20 23:48:01.839 1000 STREAM 141924 18169 6016409 2024-02-20 23:49:03.862 2024-02-20 23:49:03.862 1000 STREAM 141924 18817 6016424 2024-02-20 23:50:01.918 2024-02-20 23:50:01.918 1000 STREAM 141924 4768 6016437 2024-02-20 23:53:03.881 2024-02-20 23:53:03.881 1000 STREAM 141924 7966 6016452 2024-02-20 23:55:03.876 2024-02-20 23:55:03.876 1000 STREAM 141924 15560 6016473 2024-02-20 23:57:03.885 2024-02-20 23:57:03.885 1000 STREAM 141924 6382 6016030 2024-02-20 23:02:38.228 2024-02-20 23:02:38.228 21100 FEE 433114 9346 6016031 2024-02-20 23:02:38.228 2024-02-20 23:02:38.228 189900 TIP 433114 14941 6016078 2024-02-20 23:05:08.324 2024-02-20 23:05:08.324 1000 FEE 432980 18809 6016079 2024-02-20 23:05:08.324 2024-02-20 23:05:08.324 9000 TIP 432980 21180 6016098 2024-02-20 23:08:48.663 2024-02-20 23:08:48.663 1000 FEE 433166 8176 6016059 2024-02-20 23:03:36.801 2024-02-20 23:03:36.801 300 FEE 433114 9844 6016060 2024-02-20 23:03:36.801 2024-02-20 23:03:36.801 2700 TIP 433114 1631 6016076 2024-02-20 23:05:08.081 2024-02-20 23:05:08.081 1000 FEE 432980 896 6016077 2024-02-20 23:05:08.081 2024-02-20 23:05:08.081 9000 TIP 432980 19581 6016104 2024-02-20 23:09:24.694 2024-02-20 23:09:24.694 1000 FEE 432957 18208 6016105 2024-02-20 23:09:24.694 2024-02-20 23:09:24.694 9000 TIP 432957 20704 6016180 2024-02-20 23:12:26.121 2024-02-20 23:12:26.121 1000 FEE 433108 4831 6016181 2024-02-20 23:12:26.121 2024-02-20 23:12:26.121 9000 TIP 433108 21287 6016191 2024-02-20 23:13:06.56 2024-02-20 23:13:06.56 1000 FEE 433153 1549 6016192 2024-02-20 23:13:06.56 2024-02-20 23:13:06.56 9000 TIP 433153 21003 6016200 2024-02-20 23:14:11.994 2024-02-20 23:14:11.994 1000 FEE 47045 11091 6016201 2024-02-20 23:14:11.994 2024-02-20 23:14:11.994 9000 TIP 47045 673 6016216 2024-02-20 23:18:04.449 2024-02-20 23:18:04.449 12800 FEE 432388 2233 6016217 2024-02-20 23:18:04.449 2024-02-20 23:18:04.449 115200 TIP 432388 20424 6016220 2024-02-20 23:18:44.702 2024-02-20 23:18:44.702 900 FEE 433108 680 6016221 2024-02-20 23:18:44.702 2024-02-20 23:18:44.702 8100 TIP 433108 21339 6016246 2024-02-20 23:24:29.347 2024-02-20 23:24:29.347 1000 FEE 433182 20701 6016255 2024-02-20 23:25:26.806 2024-02-20 23:25:26.806 1000 POLL 433082 3304 6016264 2024-02-20 23:27:11.944 2024-02-20 23:27:11.944 1000 FEE 433184 21600 6016288 2024-02-20 23:32:17.783 2024-02-20 23:32:17.783 6900 FEE 432728 1673 6016289 2024-02-20 23:32:17.783 2024-02-20 23:32:17.783 62100 TIP 432728 19501 6016297 2024-02-20 23:32:38.916 2024-02-20 23:32:38.916 1000 FEE 433189 12821 6016331 2024-02-20 23:36:02.398 2024-02-20 23:36:02.398 4000 FEE 433047 7989 6016332 2024-02-20 23:36:02.398 2024-02-20 23:36:02.398 36000 TIP 433047 4574 6016335 2024-02-20 23:36:04.194 2024-02-20 23:36:04.194 2100 FEE 433083 11789 6016336 2024-02-20 23:36:04.194 2024-02-20 23:36:04.194 18900 TIP 433083 20588 6016350 2024-02-20 23:37:04.385 2024-02-20 23:37:04.385 2300 FEE 433181 6300 6016351 2024-02-20 23:37:04.385 2024-02-20 23:37:04.385 20700 TIP 433181 11716 6016401 2024-02-20 23:47:01.281 2024-02-20 23:47:01.281 1000 FEE 433170 9353 6016402 2024-02-20 23:47:01.281 2024-02-20 23:47:01.281 9000 TIP 433170 3506 6016405 2024-02-20 23:47:22.68 2024-02-20 23:47:22.68 10000 FEE 432977 1605 6016406 2024-02-20 23:47:22.68 2024-02-20 23:47:22.68 90000 TIP 432977 19044 6016420 2024-02-20 23:49:59.826 2024-02-20 23:49:59.826 2000 FEE 433187 2757 6016421 2024-02-20 23:49:59.826 2024-02-20 23:49:59.826 18000 TIP 433187 19267 6016472 2024-02-20 23:56:55.717 2024-02-20 23:56:55.717 10000 FEE 433208 21323 6016493 2024-02-21 00:00:06.923 2024-02-21 00:00:06.923 1000 FEE 433213 20490 6016512 2024-02-21 00:01:29.257 2024-02-21 00:01:29.257 2100 FEE 432899 12291 6016513 2024-02-21 00:01:29.257 2024-02-21 00:01:29.257 18900 TIP 432899 654 6016550 2024-02-21 00:03:04.199 2024-02-21 00:03:04.199 1000 FEE 433219 1319 6016575 2024-02-21 00:03:47.822 2024-02-21 00:03:47.822 2100 FEE 433087 12609 6016576 2024-02-21 00:03:47.822 2024-02-21 00:03:47.822 18900 TIP 433087 19335 6016579 2024-02-21 00:03:48.064 2024-02-21 00:03:48.064 2100 FEE 433087 8870 6016580 2024-02-21 00:03:48.064 2024-02-21 00:03:48.064 18900 TIP 433087 1617 6016599 2024-02-21 00:04:08.918 2024-02-21 00:04:08.918 27000 FEE 433149 15063 6016600 2024-02-21 00:04:08.918 2024-02-21 00:04:08.918 243000 TIP 433149 16965 6016643 2024-02-21 00:10:32.127 2024-02-21 00:10:32.127 1000 FEE 433229 2195 6016650 2024-02-21 00:11:43.316 2024-02-21 00:11:43.316 0 FEE 433230 4474 6016651 2024-02-21 00:11:47.303 2024-02-21 00:11:47.303 1000 FEE 433232 5487 6016655 2024-02-21 00:12:19.326 2024-02-21 00:12:19.326 1000 FEE 433233 5195 6016665 2024-02-21 00:13:50.083 2024-02-21 00:13:50.083 100 FEE 433118 6471 6016666 2024-02-21 00:13:50.083 2024-02-21 00:13:50.083 900 TIP 433118 21291 6016685 2024-02-21 00:16:32.032 2024-02-21 00:16:32.032 1000 FEE 433239 19352 6016698 2024-02-21 00:20:47.704 2024-02-21 00:20:47.704 1000 FEE 433114 18626 6016699 2024-02-21 00:20:47.704 2024-02-21 00:20:47.704 9000 TIP 433114 1620 6016701 2024-02-21 00:21:33.398 2024-02-21 00:21:33.398 1000 FEE 433245 21540 6016778 2024-02-21 00:30:17.358 2024-02-21 00:30:17.358 1000 FEE 433225 802 6016779 2024-02-21 00:30:17.358 2024-02-21 00:30:17.358 9000 TIP 433225 21164 6016784 2024-02-21 00:31:34.885 2024-02-21 00:31:34.885 1000 FEE 433254 701 6016796 2024-02-21 00:36:23.294 2024-02-21 00:36:23.294 3300 FEE 433256 6798 6016797 2024-02-21 00:36:23.294 2024-02-21 00:36:23.294 29700 TIP 433256 5387 6016825 2024-02-21 00:46:24.354 2024-02-21 00:46:24.354 4200 FEE 433222 15115 6016826 2024-02-21 00:46:24.354 2024-02-21 00:46:24.354 37800 TIP 433222 14990 6016833 2024-02-21 00:47:25.835 2024-02-21 00:47:25.835 27000 FEE 433217 7673 6016834 2024-02-21 00:47:25.835 2024-02-21 00:47:25.835 243000 TIP 433217 19282 6016841 2024-02-21 00:48:28.518 2024-02-21 00:48:28.518 300 FEE 432982 18177 6016842 2024-02-21 00:48:28.518 2024-02-21 00:48:28.518 2700 TIP 432982 17639 6016877 2024-02-21 00:48:34.886 2024-02-21 00:48:34.886 8300 FEE 433260 5646 6016878 2024-02-21 00:48:34.886 2024-02-21 00:48:34.886 74700 TIP 433260 6533 6016879 2024-02-21 00:48:35.214 2024-02-21 00:48:35.214 16600 FEE 433260 876 6016880 2024-02-21 00:48:35.214 2024-02-21 00:48:35.214 149400 TIP 433260 20738 6016901 2024-02-21 00:49:02.196 2024-02-21 00:49:02.196 8300 FEE 433244 2101 6016902 2024-02-21 00:49:02.196 2024-02-21 00:49:02.196 74700 TIP 433244 18769 6016905 2024-02-21 00:49:02.812 2024-02-21 00:49:02.812 8300 FEE 433244 13763 6016906 2024-02-21 00:49:02.812 2024-02-21 00:49:02.812 74700 TIP 433244 19174 6016937 2024-02-21 00:50:06.114 2024-02-21 00:50:06.114 300 FEE 433101 7583 6016938 2024-02-21 00:50:06.114 2024-02-21 00:50:06.114 2700 TIP 433101 18735 6016953 2024-02-21 00:50:35.509 2024-02-21 00:50:35.509 300 FEE 433059 672 6016954 2024-02-21 00:50:35.509 2024-02-21 00:50:35.509 2700 TIP 433059 5809 6016963 2024-02-21 00:51:40.775 2024-02-21 00:51:40.775 300 FEE 433078 6700 6016964 2024-02-21 00:51:40.775 2024-02-21 00:51:40.775 2700 TIP 433078 10280 6016973 2024-02-21 00:51:42.668 2024-02-21 00:51:42.668 300 FEE 433078 20754 6016974 2024-02-21 00:51:42.668 2024-02-21 00:51:42.668 2700 TIP 433078 627 6017001 2024-02-21 01:01:29.979 2024-02-21 01:01:29.979 4000 FEE 433273 10280 6017002 2024-02-21 01:01:29.979 2024-02-21 01:01:29.979 36000 TIP 433273 1122 6017037 2024-02-21 01:13:21.546 2024-02-21 01:13:21.546 2100 FEE 433027 13100 6017038 2024-02-21 01:13:21.546 2024-02-21 01:13:21.546 18900 TIP 433027 1047 6017071 2024-02-21 01:19:23.137 2024-02-21 01:19:23.137 900 FEE 433260 17817 6017072 2024-02-21 01:19:23.137 2024-02-21 01:19:23.137 8100 TIP 433260 8726 6017073 2024-02-21 01:19:23.59 2024-02-21 01:19:23.59 1000 FEE 433260 21339 6017074 2024-02-21 01:19:23.59 2024-02-21 01:19:23.59 9000 TIP 433260 17183 6017087 2024-02-21 01:19:30.257 2024-02-21 01:19:30.257 9000 FEE 433284 20904 6017088 2024-02-21 01:19:30.257 2024-02-21 01:19:30.257 81000 TIP 433284 3518 6017096 2024-02-21 01:20:58.047 2024-02-21 01:20:58.047 1000 FEE 432920 19034 6017097 2024-02-21 01:20:58.047 2024-02-21 01:20:58.047 9000 TIP 432920 831 6017136 2024-02-21 01:29:56.771 2024-02-21 01:29:56.771 3300 FEE 433217 6573 6017137 2024-02-21 01:29:56.771 2024-02-21 01:29:56.771 29700 TIP 433217 20302 6017163 2024-02-21 01:38:03.573 2024-02-21 01:38:03.573 1000 FEE 433294 20585 6017186 2024-02-21 01:38:52.044 2024-02-21 01:38:52.044 1000 FEE 433295 4802 6017211 2024-02-21 01:51:50.337 2024-02-21 01:51:50.337 1000 FEE 433260 19103 6017212 2024-02-21 01:51:50.337 2024-02-21 01:51:50.337 9000 TIP 433260 20108 6017221 2024-02-21 01:54:23.023 2024-02-21 01:54:23.023 1000 FEE 433300 1060 6017228 2024-02-21 01:54:25.408 2024-02-21 01:54:25.408 2700 FEE 433014 19459 6017229 2024-02-21 01:54:25.408 2024-02-21 01:54:25.408 24300 TIP 433014 11956 6017234 2024-02-21 01:56:43.185 2024-02-21 01:56:43.185 2700 FEE 433114 18387 6017235 2024-02-21 01:56:43.185 2024-02-21 01:56:43.185 24300 TIP 433114 19263 6017246 2024-02-21 02:00:26.456 2024-02-21 02:00:26.456 1000 FEE 433301 5112 6017298 2024-02-21 02:06:16.39 2024-02-21 02:06:16.39 7700 FEE 433302 21498 6016099 2024-02-20 23:08:55.724 2024-02-20 23:08:55.724 1000 FEE 433167 2322 6016101 2024-02-20 23:09:14.236 2024-02-20 23:09:14.236 5000 FEE 431861 1549 6016102 2024-02-20 23:09:14.236 2024-02-20 23:09:14.236 45000 TIP 431861 18533 6016103 2024-02-20 23:09:22.596 2024-02-20 23:09:22.596 1000 FEE 433168 8242 6016106 2024-02-20 23:09:25.938 2024-02-20 23:09:25.938 2300 FEE 433163 1723 6016107 2024-02-20 23:09:25.938 2024-02-20 23:09:25.938 20700 TIP 433163 5538 6016110 2024-02-20 23:09:26.242 2024-02-20 23:09:26.242 2300 FEE 433163 17411 6016111 2024-02-20 23:09:26.242 2024-02-20 23:09:26.242 20700 TIP 433163 10549 6016112 2024-02-20 23:09:37.398 2024-02-20 23:09:37.398 2300 FEE 433162 5359 6016113 2024-02-20 23:09:37.398 2024-02-20 23:09:37.398 20700 TIP 433162 18393 6016128 2024-02-20 23:10:08.787 2024-02-20 23:10:08.787 5000 FEE 431934 2329 6016129 2024-02-20 23:10:08.787 2024-02-20 23:10:08.787 45000 TIP 431934 1723 6016134 2024-02-20 23:10:19.576 2024-02-20 23:10:19.576 1000 FEE 359606 1692 6016135 2024-02-20 23:10:19.576 2024-02-20 23:10:19.576 9000 TIP 359606 19126 6016140 2024-02-20 23:11:04.606 2024-02-20 23:11:04.606 3300 FEE 433087 10979 6016141 2024-02-20 23:11:04.606 2024-02-20 23:11:04.606 29700 TIP 433087 2203 6016150 2024-02-20 23:11:08.673 2024-02-20 23:11:08.673 3300 FEE 433039 16571 6016151 2024-02-20 23:11:08.673 2024-02-20 23:11:08.673 29700 TIP 433039 694 6016152 2024-02-20 23:11:08.995 2024-02-20 23:11:08.995 3300 FEE 433039 10273 6016153 2024-02-20 23:11:08.995 2024-02-20 23:11:08.995 29700 TIP 433039 15544 6016158 2024-02-20 23:11:21.881 2024-02-20 23:11:21.881 2100 FEE 432991 16432 6016159 2024-02-20 23:11:21.881 2024-02-20 23:11:21.881 18900 TIP 432991 21320 6016168 2024-02-20 23:12:01.223 2024-02-20 23:12:01.223 1000 FEE 433114 18336 6016169 2024-02-20 23:12:01.223 2024-02-20 23:12:01.223 9000 TIP 433114 18139 6016171 2024-02-20 23:12:12.676 2024-02-20 23:12:12.676 1000 FEE 432889 13921 6016172 2024-02-20 23:12:12.676 2024-02-20 23:12:12.676 9000 TIP 432889 16912 6016173 2024-02-20 23:12:14.293 2024-02-20 23:12:14.293 1000 FEE 433173 1273 6016178 2024-02-20 23:12:24.472 2024-02-20 23:12:24.472 1000 FEE 433049 2203 6016179 2024-02-20 23:12:24.472 2024-02-20 23:12:24.472 9000 TIP 433049 9333 6016184 2024-02-20 23:12:41.881 2024-02-20 23:12:41.881 1000 FEE 433116 8985 6016185 2024-02-20 23:12:41.881 2024-02-20 23:12:41.881 9000 TIP 433116 960 6016186 2024-02-20 23:12:45.554 2024-02-20 23:12:45.554 1000 FEE 432977 7659 6016187 2024-02-20 23:12:45.554 2024-02-20 23:12:45.554 9000 TIP 432977 8416 6016193 2024-02-20 23:13:42.245 2024-02-20 23:13:42.245 1000 FEE 432921 10821 6016194 2024-02-20 23:13:42.245 2024-02-20 23:13:42.245 9000 TIP 432921 9337 6016198 2024-02-20 23:14:05.819 2024-02-20 23:14:05.819 1600 FEE 433151 19329 6016199 2024-02-20 23:14:05.819 2024-02-20 23:14:05.819 14400 TIP 433151 2963 6016213 2024-02-20 23:17:35.45 2024-02-20 23:17:35.45 7000 FEE 433176 11956 6016214 2024-02-20 23:17:57.806 2024-02-20 23:17:57.806 1000 FEE 433177 717 6016224 2024-02-20 23:19:27.231 2024-02-20 23:19:27.231 1000 FEE 432873 19524 6016225 2024-02-20 23:19:27.231 2024-02-20 23:19:27.231 9000 TIP 432873 18524 6016226 2024-02-20 23:19:28.462 2024-02-20 23:19:28.462 1000 FEE 433179 4538 6016237 2024-02-20 23:21:22.405 2024-02-20 23:21:22.405 1000 FEE 433180 8796 6016247 2024-02-20 23:24:31.415 2024-02-20 23:24:31.415 2500 FEE 432794 11776 6016248 2024-02-20 23:24:31.415 2024-02-20 23:24:31.415 22500 TIP 432794 9969 6016256 2024-02-20 23:25:36.109 2024-02-20 23:25:36.109 2500 FEE 433082 19902 6016257 2024-02-20 23:25:36.109 2024-02-20 23:25:36.109 22500 TIP 433082 17797 6016268 2024-02-20 23:28:24.254 2024-02-20 23:28:24.254 2500 FEE 432969 4322 6016269 2024-02-20 23:28:24.254 2024-02-20 23:28:24.254 22500 TIP 432969 18539 6016270 2024-02-20 23:28:52.928 2024-02-20 23:28:52.928 1000 FEE 433185 21051 6016279 2024-02-20 23:30:27.753 2024-02-20 23:30:27.753 1000 FEE 433186 21239 6016282 2024-02-20 23:31:59.289 2024-02-20 23:31:59.289 1600 FEE 433043 16355 6016283 2024-02-20 23:31:59.289 2024-02-20 23:31:59.289 14400 TIP 433043 20573 6016284 2024-02-20 23:32:02.537 2024-02-20 23:32:02.537 0 FEE 433186 9356 6016292 2024-02-20 23:32:18.951 2024-02-20 23:32:18.951 900 FEE 433121 14122 6016293 2024-02-20 23:32:18.951 2024-02-20 23:32:18.951 8100 TIP 433121 9906 6016294 2024-02-20 23:32:29.696 2024-02-20 23:32:29.696 9000 FEE 433121 19488 6016295 2024-02-20 23:32:29.696 2024-02-20 23:32:29.696 81000 TIP 433121 8472 6016301 2024-02-20 23:33:10.581 2024-02-20 23:33:10.581 1000 FEE 433149 16350 6016302 2024-02-20 23:33:10.581 2024-02-20 23:33:10.581 9000 TIP 433149 1833 6016303 2024-02-20 23:33:11.471 2024-02-20 23:33:11.471 9000 FEE 433149 12911 6016304 2024-02-20 23:33:11.471 2024-02-20 23:33:11.471 81000 TIP 433149 1142 6016307 2024-02-20 23:33:30.948 2024-02-20 23:33:30.948 1000 FEE 433190 20276 6016313 2024-02-20 23:34:14.213 2024-02-20 23:34:14.213 100 FEE 433171 14225 6016314 2024-02-20 23:34:14.213 2024-02-20 23:34:14.213 900 TIP 433171 18842 6016317 2024-02-20 23:34:18.029 2024-02-20 23:34:18.029 9000 FEE 433171 1596 6016318 2024-02-20 23:34:18.029 2024-02-20 23:34:18.029 81000 TIP 433171 16594 6016323 2024-02-20 23:34:27.059 2024-02-20 23:34:27.059 900 FEE 433161 18539 6016324 2024-02-20 23:34:27.059 2024-02-20 23:34:27.059 8100 TIP 433161 2203 6016343 2024-02-20 23:37:00.544 2024-02-20 23:37:00.544 2300 FEE 433175 1519 6016344 2024-02-20 23:37:00.544 2024-02-20 23:37:00.544 20700 TIP 433175 15103 6016348 2024-02-20 23:37:04.246 2024-02-20 23:37:04.246 2300 FEE 433181 18241 6016349 2024-02-20 23:37:04.246 2024-02-20 23:37:04.246 20700 TIP 433181 21172 6016354 2024-02-20 23:37:04.676 2024-02-20 23:37:04.676 2300 FEE 433181 20087 6016355 2024-02-20 23:37:04.676 2024-02-20 23:37:04.676 20700 TIP 433181 979 6016356 2024-02-20 23:37:34.049 2024-02-20 23:37:34.049 4000 FEE 433028 20892 6016357 2024-02-20 23:37:34.049 2024-02-20 23:37:34.049 36000 TIP 433028 21212 6016367 2024-02-20 23:38:55.689 2024-02-20 23:38:55.689 1000 FEE 433193 15536 6016370 2024-02-20 23:40:09.395 2024-02-20 23:40:09.395 1000 FEE 433194 15148 6016371 2024-02-20 23:40:18.377 2024-02-20 23:40:18.377 4000 FEE 433193 1180 6016372 2024-02-20 23:40:18.377 2024-02-20 23:40:18.377 36000 TIP 433193 11038 6016373 2024-02-20 23:41:02.794 2024-02-20 23:41:02.794 1000 FEE 433195 20353 6016378 2024-02-20 23:41:30.226 2024-02-20 23:41:30.226 1000 FEE 433197 5520 6016386 2024-02-20 23:42:18.439 2024-02-20 23:42:18.439 4600 FEE 433196 21218 6016387 2024-02-20 23:42:18.439 2024-02-20 23:42:18.439 41400 TIP 433196 18124 6016388 2024-02-20 23:42:18.627 2024-02-20 23:42:18.627 2300 FEE 433196 9290 6016389 2024-02-20 23:42:18.627 2024-02-20 23:42:18.627 20700 TIP 433196 20911 6016391 2024-02-20 23:43:40.583 2024-02-20 23:43:40.583 1000 FEE 433198 19303 6016392 2024-02-20 23:43:45.489 2024-02-20 23:43:45.489 1000 FEE 433199 803 6016404 2024-02-20 23:47:18.708 2024-02-20 23:47:18.708 1000 FEE 433201 20597 6016408 2024-02-20 23:48:55.405 2024-02-20 23:48:55.405 1000 FEE 433202 21444 6016410 2024-02-20 23:49:44.711 2024-02-20 23:49:44.711 2000 FEE 433187 13204 6016411 2024-02-20 23:49:44.711 2024-02-20 23:49:44.711 18000 TIP 433187 18518 6016425 2024-02-20 23:50:02.747 2024-02-20 23:50:02.747 2000 FEE 433187 1605 6016426 2024-02-20 23:50:02.747 2024-02-20 23:50:02.747 18000 TIP 433187 11165 6016427 2024-02-20 23:50:11.125 2024-02-20 23:50:11.125 1000 FEE 433203 1801 6016428 2024-02-20 23:50:16.332 2024-02-20 23:50:16.332 2500 FEE 432921 20299 6016429 2024-02-20 23:50:16.332 2024-02-20 23:50:16.332 22500 TIP 432921 19863 6016434 2024-02-20 23:51:40.896 2024-02-20 23:51:40.896 1600 FEE 432311 636 6016435 2024-02-20 23:51:40.896 2024-02-20 23:51:40.896 14400 TIP 432311 2309 6016438 2024-02-20 23:53:25.73 2024-02-20 23:53:25.73 1000 FEE 433205 981 6016443 2024-02-20 23:53:44.899 2024-02-20 23:53:44.899 2500 FEE 432636 684 6016444 2024-02-20 23:53:44.899 2024-02-20 23:53:44.899 22500 TIP 432636 10638 6016456 2024-02-20 23:56:06.579 2024-02-20 23:56:06.579 100 FEE 433025 10731 6016457 2024-02-20 23:56:06.579 2024-02-20 23:56:06.579 900 TIP 433025 1237 6016458 2024-02-20 23:56:07.052 2024-02-20 23:56:07.052 100 FEE 433025 10283 6016459 2024-02-20 23:56:07.052 2024-02-20 23:56:07.052 900 TIP 433025 21090 6016122 2024-02-20 23:10:01.037 2024-02-20 23:10:01.037 1000 FEE 433169 21323 6016132 2024-02-20 23:10:15.418 2024-02-20 23:10:15.418 5000 FEE 431861 2780 6016133 2024-02-20 23:10:15.418 2024-02-20 23:10:15.418 45000 TIP 431861 21247 6016137 2024-02-20 23:11:02.418 2024-02-20 23:11:02.418 1000 STREAM 141924 14795 6016146 2024-02-20 23:11:05.94 2024-02-20 23:11:05.94 3300 FEE 433114 2709 6016147 2024-02-20 23:11:05.94 2024-02-20 23:11:05.94 29700 TIP 433114 16665 6016148 2024-02-20 23:11:08.417 2024-02-20 23:11:08.417 3300 FEE 433039 11523 6016149 2024-02-20 23:11:08.417 2024-02-20 23:11:08.417 29700 TIP 433039 19981 6016156 2024-02-20 23:11:17.454 2024-02-20 23:11:17.454 10000 FEE 433039 5961 6016157 2024-02-20 23:11:17.454 2024-02-20 23:11:17.454 90000 TIP 433039 16706 6016160 2024-02-20 23:11:24.864 2024-02-20 23:11:24.864 2100 FEE 432986 21103 6016161 2024-02-20 23:11:24.864 2024-02-20 23:11:24.864 18900 TIP 432986 18359 6016167 2024-02-20 23:11:50.116 2024-02-20 23:11:50.116 1000 FEE 433172 20102 6016176 2024-02-20 23:12:18.145 2024-02-20 23:12:18.145 1000 FEE 433087 7185 6016177 2024-02-20 23:12:18.145 2024-02-20 23:12:18.145 9000 TIP 433087 3990 6016202 2024-02-20 23:14:27.688 2024-02-20 23:14:27.688 1000 FEE 47044 15063 6016203 2024-02-20 23:14:27.688 2024-02-20 23:14:27.688 9000 TIP 47044 20439 6016222 2024-02-20 23:19:02.487 2024-02-20 23:19:02.487 1000 STREAM 141924 660 6016227 2024-02-20 23:19:42.545 2024-02-20 23:19:42.545 3300 FEE 433043 13399 6016228 2024-02-20 23:19:42.545 2024-02-20 23:19:42.545 29700 TIP 433043 18507 6016239 2024-02-20 23:22:02.512 2024-02-20 23:22:02.512 1000 STREAM 141924 17218 6016243 2024-02-20 23:24:02.517 2024-02-20 23:24:02.517 1000 STREAM 141924 4798 6016258 2024-02-20 23:25:59.733 2024-02-20 23:25:59.733 2500 FEE 433020 20381 6016259 2024-02-20 23:25:59.733 2024-02-20 23:25:59.733 22500 TIP 433020 1224 6016260 2024-02-20 23:26:02.497 2024-02-20 23:26:02.497 1000 STREAM 141924 18116 6016265 2024-02-20 23:27:20.644 2024-02-20 23:27:20.644 2500 FEE 433056 4958 6016266 2024-02-20 23:27:20.644 2024-02-20 23:27:20.644 22500 TIP 433056 2543 6016285 2024-02-20 23:32:02.789 2024-02-20 23:32:02.789 1000 STREAM 141924 15488 6016328 2024-02-20 23:36:01.277 2024-02-20 23:36:01.277 2100 FEE 433083 20776 6016329 2024-02-20 23:36:01.277 2024-02-20 23:36:01.277 18900 TIP 433083 18449 6016337 2024-02-20 23:36:09.526 2024-02-20 23:36:09.526 2100 FEE 433083 14213 6016338 2024-02-20 23:36:09.526 2024-02-20 23:36:09.526 18900 TIP 433083 19156 6016352 2024-02-20 23:37:04.531 2024-02-20 23:37:04.531 2300 FEE 433181 18815 6016353 2024-02-20 23:37:04.531 2024-02-20 23:37:04.531 20700 TIP 433181 5427 6016364 2024-02-20 23:38:32.402 2024-02-20 23:38:32.402 12800 FEE 433022 17517 6016365 2024-02-20 23:38:32.402 2024-02-20 23:38:32.402 115200 TIP 433022 19037 6016379 2024-02-20 23:42:02.857 2024-02-20 23:42:02.857 1000 STREAM 141924 4259 6016380 2024-02-20 23:42:09.028 2024-02-20 23:42:09.028 2300 FEE 433197 19878 6016381 2024-02-20 23:42:09.028 2024-02-20 23:42:09.028 20700 TIP 433197 671 6016416 2024-02-20 23:49:58.465 2024-02-20 23:49:58.465 2000 FEE 433187 9246 6016417 2024-02-20 23:49:58.465 2024-02-20 23:49:58.465 18000 TIP 433187 656 6016418 2024-02-20 23:49:59.646 2024-02-20 23:49:59.646 2000 FEE 433187 1051 6016419 2024-02-20 23:49:59.646 2024-02-20 23:49:59.646 18000 TIP 433187 650 6016430 2024-02-20 23:50:44.554 2024-02-20 23:50:44.554 1000 FEE 433204 16296 6016450 2024-02-20 23:54:24.985 2024-02-20 23:54:24.985 1000 FEE 433150 16442 6016451 2024-02-20 23:54:24.985 2024-02-20 23:54:24.985 9000 TIP 433150 1272 6016454 2024-02-20 23:56:05.796 2024-02-20 23:56:05.796 100 FEE 433025 9339 6016455 2024-02-20 23:56:05.796 2024-02-20 23:56:05.796 900 TIP 433025 2502 6016488 2024-02-20 23:59:35.117 2024-02-20 23:59:35.117 2100 FEE 433167 1726 6016489 2024-02-20 23:59:35.117 2024-02-20 23:59:35.117 18900 TIP 433167 17162 6016528 2024-02-21 00:02:51.762 2024-02-21 00:02:51.762 2100 FEE 433114 11091 6016529 2024-02-21 00:02:51.762 2024-02-21 00:02:51.762 18900 TIP 433114 20015 6016534 2024-02-21 00:02:53.251 2024-02-21 00:02:53.251 2100 FEE 433114 713 6016535 2024-02-21 00:02:53.251 2024-02-21 00:02:53.251 18900 TIP 433114 1751 6016551 2024-02-21 00:03:10.093 2024-02-21 00:03:10.093 500 FEE 433139 18941 6016552 2024-02-21 00:03:10.093 2024-02-21 00:03:10.093 4500 TIP 433139 19118 6016572 2024-02-21 00:03:33.153 2024-02-21 00:03:33.153 2100 FEE 432957 11873 6016573 2024-02-21 00:03:33.153 2024-02-21 00:03:33.153 18900 TIP 432957 19153 6016589 2024-02-21 00:03:49.021 2024-02-21 00:03:49.021 2100 FEE 433087 16929 6016590 2024-02-21 00:03:49.021 2024-02-21 00:03:49.021 18900 TIP 433087 16867 6016604 2024-02-21 00:04:35.439 2024-02-21 00:04:35.439 1000 FEE 433222 1425 6016616 2024-02-21 00:06:58.797 2024-02-21 00:06:58.797 3300 FEE 433028 794 6016617 2024-02-21 00:06:58.797 2024-02-21 00:06:58.797 29700 TIP 433028 17570 6016629 2024-02-21 00:08:41.568 2024-02-21 00:08:41.568 10000 FEE 417624 951 6016630 2024-02-21 00:08:41.568 2024-02-21 00:08:41.568 90000 TIP 417624 1833 6016637 2024-02-21 00:09:17.893 2024-02-21 00:09:17.893 1000 FEE 433116 18640 6016638 2024-02-21 00:09:17.893 2024-02-21 00:09:17.893 9000 TIP 433116 977 6016641 2024-02-21 00:09:33.053 2024-02-21 00:09:33.053 1000 FEE 433228 2330 6016693 2024-02-21 00:19:14.699 2024-02-21 00:19:14.699 1000 FEE 433243 20133 6016713 2024-02-21 00:22:12.115 2024-02-21 00:22:12.115 1000 FEE 433197 714 6016714 2024-02-21 00:22:12.115 2024-02-21 00:22:12.115 9000 TIP 433197 722 6016769 2024-02-21 00:28:34.458 2024-02-21 00:28:34.458 1000 FEE 433249 19259 6016770 2024-02-21 00:28:34.458 2024-02-21 00:28:34.458 9000 TIP 433249 676 6016810 2024-02-21 00:39:57.473 2024-02-21 00:39:57.473 3000 FEE 433190 8841 6016811 2024-02-21 00:39:57.473 2024-02-21 00:39:57.473 27000 TIP 433190 4521 6016837 2024-02-21 00:48:20.919 2024-02-21 00:48:20.919 3000 FEE 433114 13398 6016838 2024-02-21 00:48:20.919 2024-02-21 00:48:20.919 27000 TIP 433114 670 6016839 2024-02-21 00:48:21.836 2024-02-21 00:48:21.836 27000 FEE 433114 18892 6016840 2024-02-21 00:48:21.836 2024-02-21 00:48:21.836 243000 TIP 433114 2722 6016855 2024-02-21 00:48:31.585 2024-02-21 00:48:31.585 1000 FEE 432957 2711 6016856 2024-02-21 00:48:31.585 2024-02-21 00:48:31.585 9000 TIP 432957 17944 6016859 2024-02-21 00:48:32.181 2024-02-21 00:48:32.181 1000 FEE 432957 20504 6016860 2024-02-21 00:48:32.181 2024-02-21 00:48:32.181 9000 TIP 432957 21254 6016873 2024-02-21 00:48:33.537 2024-02-21 00:48:33.537 200 FEE 433187 12609 6016874 2024-02-21 00:48:33.537 2024-02-21 00:48:33.537 1800 TIP 433187 1478 6016891 2024-02-21 00:48:59.306 2024-02-21 00:48:59.306 1000 FEE 433043 4313 6016892 2024-02-21 00:48:59.306 2024-02-21 00:48:59.306 9000 TIP 433043 1261 6016922 2024-02-21 00:50:01.109 2024-02-21 00:50:01.109 300 FEE 433095 5129 6016923 2024-02-21 00:50:01.109 2024-02-21 00:50:01.109 2700 TIP 433095 9337 6016978 2024-02-21 00:53:03.649 2024-02-21 00:53:03.649 1000 FEE 433271 997 6016985 2024-02-21 00:57:12.688 2024-02-21 00:57:12.688 10000 FEE 433248 18830 6016986 2024-02-21 00:57:12.688 2024-02-21 00:57:12.688 90000 TIP 433248 8544 6017008 2024-02-21 01:03:51.516 2024-02-21 01:03:51.516 1000 FEE 433275 11328 6017052 2024-02-21 01:16:22.345 2024-02-21 01:16:22.345 3000 FEE 433184 3371 6017053 2024-02-21 01:16:22.345 2024-02-21 01:16:22.345 27000 TIP 433184 9427 6017081 2024-02-21 01:19:26.515 2024-02-21 01:19:26.515 9000 FEE 433279 1845 6017082 2024-02-21 01:19:26.515 2024-02-21 01:19:26.515 81000 TIP 433279 909 6017083 2024-02-21 01:19:29.607 2024-02-21 01:19:29.607 100 FEE 433284 20117 6017084 2024-02-21 01:19:29.607 2024-02-21 01:19:29.607 900 TIP 433284 1624 6017102 2024-02-21 01:22:56.808 2024-02-21 01:22:56.808 2100 FEE 433049 1401 6017103 2024-02-21 01:22:56.808 2024-02-21 01:22:56.808 18900 TIP 433049 9352 6017104 2024-02-21 01:22:59.245 2024-02-21 01:22:59.245 2100 FEE 433031 18809 6017105 2024-02-21 01:22:59.245 2024-02-21 01:22:59.245 18900 TIP 433031 18271 6017115 2024-02-21 01:23:25.274 2024-02-21 01:23:25.274 1000 FEE 433288 11821 6017117 2024-02-21 01:23:56.007 2024-02-21 01:23:56.007 1000 FEE 433232 21556 6017118 2024-02-21 01:23:56.007 2024-02-21 01:23:56.007 9000 TIP 433232 20137 6017156 2024-02-21 01:33:08.305 2024-02-21 01:33:08.305 2100 FEE 433247 19843 6016277 2024-02-20 23:30:22.275 2024-02-20 23:30:22.275 2100 FEE 432660 635 6016278 2024-02-20 23:30:22.275 2024-02-20 23:30:22.275 18900 TIP 432660 965 6016281 2024-02-20 23:31:53.207 2024-02-20 23:31:53.207 100000 FEE 433187 18984 6016315 2024-02-20 23:34:14.43 2024-02-20 23:34:14.43 900 FEE 433171 9378 6016316 2024-02-20 23:34:14.43 2024-02-20 23:34:14.43 8100 TIP 433171 18784 6016333 2024-02-20 23:36:03.233 2024-02-20 23:36:03.233 2100 FEE 433083 16912 6016334 2024-02-20 23:36:03.233 2024-02-20 23:36:03.233 18900 TIP 433083 19507 6016339 2024-02-20 23:36:48.59 2024-02-20 23:36:48.59 4000 FEE 433042 1576 6016340 2024-02-20 23:36:48.59 2024-02-20 23:36:48.59 36000 TIP 433042 15243 6016341 2024-02-20 23:37:00.385 2024-02-20 23:37:00.385 2300 FEE 433175 18995 6016342 2024-02-20 23:37:00.385 2024-02-20 23:37:00.385 20700 TIP 433175 1039 6016345 2024-02-20 23:37:01.294 2024-02-20 23:37:01.294 2300 FEE 433175 17082 6016346 2024-02-20 23:37:01.294 2024-02-20 23:37:01.294 20700 TIP 433175 15271 6016366 2024-02-20 23:38:53.775 2024-02-20 23:38:53.775 1000 FEE 433192 8059 6016396 2024-02-20 23:44:40.813 2024-02-20 23:44:40.813 2500 FEE 432987 16355 6016397 2024-02-20 23:44:40.813 2024-02-20 23:44:40.813 22500 TIP 432987 6260 6016400 2024-02-20 23:46:50.173 2024-02-20 23:46:50.173 1000 FEE 433200 14651 6016414 2024-02-20 23:49:45.031 2024-02-20 23:49:45.031 2000 FEE 433187 20581 6016415 2024-02-20 23:49:45.031 2024-02-20 23:49:45.031 18000 TIP 433187 9084 6016470 2024-02-20 23:56:41.139 2024-02-20 23:56:41.139 1000 FEE 433206 17602 6016475 2024-02-20 23:57:59.863 2024-02-20 23:57:59.863 4000 FEE 433208 1959 6016476 2024-02-20 23:57:59.863 2024-02-20 23:57:59.863 36000 TIP 433208 18219 6016478 2024-02-20 23:58:10.874 2024-02-20 23:58:10.874 4000 FEE 432705 17001 6016479 2024-02-20 23:58:10.874 2024-02-20 23:58:10.874 36000 TIP 432705 18262 6016559 2024-02-21 00:03:20.429 2024-02-21 00:03:20.429 2100 FEE 433208 3990 6016560 2024-02-21 00:03:20.429 2024-02-21 00:03:20.429 18900 TIP 433208 18476 6016563 2024-02-21 00:03:21.669 2024-02-21 00:03:21.669 2100 FEE 433208 17639 6016564 2024-02-21 00:03:21.669 2024-02-21 00:03:21.669 18900 TIP 433208 6578 6016568 2024-02-21 00:03:32.049 2024-02-21 00:03:32.049 2100 FEE 432957 7673 6016569 2024-02-21 00:03:32.049 2024-02-21 00:03:32.049 18900 TIP 432957 19664 6016585 2024-02-21 00:03:48.564 2024-02-21 00:03:48.564 2100 FEE 433087 18170 6016586 2024-02-21 00:03:48.564 2024-02-21 00:03:48.564 18900 TIP 433087 20963 6016587 2024-02-21 00:03:48.707 2024-02-21 00:03:48.707 2100 FEE 433087 19826 6016588 2024-02-21 00:03:48.707 2024-02-21 00:03:48.707 18900 TIP 433087 701 6016591 2024-02-21 00:03:49.582 2024-02-21 00:03:49.582 10000 FEE 433218 16178 6016592 2024-02-21 00:03:49.582 2024-02-21 00:03:49.582 90000 TIP 433218 17927 6016593 2024-02-21 00:04:01.331 2024-02-21 00:04:01.331 0 FEE 433220 19394 6016612 2024-02-21 00:06:18.25 2024-02-21 00:06:18.25 8300 FEE 433215 7992 6016613 2024-02-21 00:06:18.25 2024-02-21 00:06:18.25 74700 TIP 433215 18291 6016614 2024-02-21 00:06:18.981 2024-02-21 00:06:18.981 8300 FEE 433225 17106 6016615 2024-02-21 00:06:18.981 2024-02-21 00:06:18.981 74700 TIP 433225 20090 6016623 2024-02-21 00:07:09.184 2024-02-21 00:07:09.184 3300 FEE 432920 7425 6016624 2024-02-21 00:07:09.184 2024-02-21 00:07:09.184 29700 TIP 432920 18717 6016635 2024-02-21 00:09:16.663 2024-02-21 00:09:16.663 1000 FEE 433134 18169 6016636 2024-02-21 00:09:16.663 2024-02-21 00:09:16.663 9000 TIP 433134 18865 6016648 2024-02-21 00:11:28.092 2024-02-21 00:11:28.092 1000 FEE 433231 2614 6016662 2024-02-21 00:13:02.143 2024-02-21 00:13:02.143 1000 FEE 433235 21194 6016671 2024-02-21 00:14:32.094 2024-02-21 00:14:32.094 1000 FEE 433237 1272 6016716 2024-02-21 00:23:07.505 2024-02-21 00:23:07.505 2100 FEE 433176 20647 6016717 2024-02-21 00:23:07.505 2024-02-21 00:23:07.505 18900 TIP 433176 2046 6016718 2024-02-21 00:23:20.451 2024-02-21 00:23:20.451 10000 FEE 433246 17415 6016719 2024-02-21 00:23:46.842 2024-02-21 00:23:46.842 1000 FEE 433247 17526 6016728 2024-02-21 00:24:01.738 2024-02-21 00:24:01.738 2100 FEE 433087 670 6016729 2024-02-21 00:24:01.738 2024-02-21 00:24:01.738 18900 TIP 433087 622 6016730 2024-02-21 00:24:01.963 2024-02-21 00:24:01.963 2100 FEE 433087 866 6016731 2024-02-21 00:24:01.963 2024-02-21 00:24:01.963 18900 TIP 433087 17682 6016745 2024-02-21 00:26:22.509 2024-02-21 00:26:22.509 50000 FEE 433248 21178 6016747 2024-02-21 00:26:32.133 2024-02-21 00:26:32.133 2300 FEE 433245 21492 6016748 2024-02-21 00:26:32.133 2024-02-21 00:26:32.133 20700 TIP 433245 4831 6016750 2024-02-21 00:27:04.485 2024-02-21 00:27:04.485 10000 FEE 432106 5487 6016751 2024-02-21 00:27:04.485 2024-02-21 00:27:04.485 90000 TIP 432106 5646 6016762 2024-02-21 00:27:16.431 2024-02-21 00:27:16.431 1000 FEE 433250 12291 6016773 2024-02-21 00:29:46.089 2024-02-21 00:29:46.089 10100 FEE 433096 13348 6016774 2024-02-21 00:29:46.089 2024-02-21 00:29:46.089 90900 TIP 433096 11153 6016775 2024-02-21 00:29:47.019 2024-02-21 00:29:47.019 10100 FEE 433083 8326 6016776 2024-02-21 00:29:47.019 2024-02-21 00:29:47.019 90900 TIP 433083 19021 6016782 2024-02-21 00:31:18.547 2024-02-21 00:31:18.547 1000 FEE 433238 17838 6016783 2024-02-21 00:31:18.547 2024-02-21 00:31:18.547 9000 TIP 433238 896 6016789 2024-02-21 00:34:19.994 2024-02-21 00:34:19.994 1000 FEE 433256 929 6016798 2024-02-21 00:36:37.856 2024-02-21 00:36:37.856 100000 FEE 433259 17014 6016805 2024-02-21 00:39:08.422 2024-02-21 00:39:08.422 1000 FEE 433263 8287 6016809 2024-02-21 00:39:52.33 2024-02-21 00:39:52.33 0 FEE 433262 20980 6016813 2024-02-21 00:40:30.331 2024-02-21 00:40:30.331 1000 FEE 433264 1960 6016829 2024-02-21 00:47:23.621 2024-02-21 00:47:23.621 1000 FEE 432661 20539 6016830 2024-02-21 00:47:23.621 2024-02-21 00:47:23.621 9000 TIP 432661 18745 6016843 2024-02-21 00:48:28.77 2024-02-21 00:48:28.77 300 FEE 432982 19151 6016844 2024-02-21 00:48:28.77 2024-02-21 00:48:28.77 2700 TIP 432982 20185 6016867 2024-02-21 00:48:33.007 2024-02-21 00:48:33.007 1000 FEE 432957 12516 6016868 2024-02-21 00:48:33.007 2024-02-21 00:48:33.007 9000 TIP 432957 13249 6016871 2024-02-21 00:48:33.527 2024-02-21 00:48:33.527 1000 FEE 432957 1224 6016872 2024-02-21 00:48:33.527 2024-02-21 00:48:33.527 9000 TIP 432957 19488 6016914 2024-02-21 00:49:52.553 2024-02-21 00:49:52.553 1000 FEE 433112 20370 6016915 2024-02-21 00:49:52.553 2024-02-21 00:49:52.553 9000 TIP 433112 18448 6016943 2024-02-21 00:50:08.96 2024-02-21 00:50:08.96 1000 FEE 432736 21619 6016944 2024-02-21 00:50:08.96 2024-02-21 00:50:08.96 9000 TIP 432736 13100 6016957 2024-02-21 00:50:35.95 2024-02-21 00:50:35.95 1000000 FEE 433269 21048 6016991 2024-02-21 00:59:27.02 2024-02-21 00:59:27.02 10100 FEE 433264 7913 6016992 2024-02-21 00:59:27.02 2024-02-21 00:59:27.02 90900 TIP 433264 2188 6017006 2024-02-21 01:03:34.233 2024-02-21 01:03:34.233 2100 FEE 433131 14731 6017007 2024-02-21 01:03:34.233 2024-02-21 01:03:34.233 18900 TIP 433131 12821 6017020 2024-02-21 01:06:41.59 2024-02-21 01:06:41.59 4000 FEE 433260 20015 6017021 2024-02-21 01:06:41.59 2024-02-21 01:06:41.59 36000 TIP 433260 10849 6017041 2024-02-21 01:14:01.121 2024-02-21 01:14:01.121 1000 FEE 433167 1602 6017042 2024-02-21 01:14:01.121 2024-02-21 01:14:01.121 9000 TIP 433167 5779 6017065 2024-02-21 01:19:08.682 2024-02-21 01:19:08.682 100 FEE 433244 4633 6017066 2024-02-21 01:19:08.682 2024-02-21 01:19:08.682 900 TIP 433244 762 6017069 2024-02-21 01:19:22.988 2024-02-21 01:19:22.988 100 FEE 433260 13903 6017070 2024-02-21 01:19:22.988 2024-02-21 01:19:22.988 900 TIP 433260 5794 6017089 2024-02-21 01:19:33.607 2024-02-21 01:19:33.607 100 FEE 433283 12738 6017090 2024-02-21 01:19:33.607 2024-02-21 01:19:33.607 900 TIP 433283 17094 6017100 2024-02-21 01:22:49.007 2024-02-21 01:22:49.007 2100 FEE 433066 10693 6017101 2024-02-21 01:22:49.007 2024-02-21 01:22:49.007 18900 TIP 433066 20291 6017120 2024-02-21 01:24:04.223 2024-02-21 01:24:04.223 2100 FEE 433114 2724 6017121 2024-02-21 01:24:04.223 2024-02-21 01:24:04.223 18900 TIP 433114 20280 6017149 2024-02-21 01:31:39.605 2024-02-21 01:31:39.605 2300 FEE 433276 15484 6017150 2024-02-21 01:31:39.605 2024-02-21 01:31:39.605 20700 TIP 433276 629 6017168 2024-02-21 01:38:27.162 2024-02-21 01:38:27.162 200 FEE 432987 16988 6016359 2024-02-20 23:37:51.427 2024-02-20 23:37:51.427 2100 FEE 433114 20674 6016360 2024-02-20 23:37:51.427 2024-02-20 23:37:51.427 18900 TIP 433114 670 6016369 2024-02-20 23:40:02.89 2024-02-20 23:40:02.89 1000 STREAM 141924 9171 6016375 2024-02-20 23:41:08.969 2024-02-20 23:41:08.969 1000 FEE 433196 17570 6016376 2024-02-20 23:41:24.826 2024-02-20 23:41:24.826 100 FEE 433120 6471 6016377 2024-02-20 23:41:24.826 2024-02-20 23:41:24.826 900 TIP 433120 20073 6016395 2024-02-20 23:44:02.872 2024-02-20 23:44:02.872 1000 STREAM 141924 1208 6016399 2024-02-20 23:46:02.456 2024-02-20 23:46:02.456 1000 STREAM 141924 11561 6016412 2024-02-20 23:49:44.869 2024-02-20 23:49:44.869 2000 FEE 433187 16059 6016413 2024-02-20 23:49:44.869 2024-02-20 23:49:44.869 18000 TIP 433187 19189 6016422 2024-02-20 23:49:59.939 2024-02-20 23:49:59.939 2000 FEE 433187 21178 6016423 2024-02-20 23:49:59.939 2024-02-20 23:49:59.939 18000 TIP 433187 1620 6016436 2024-02-20 23:52:02.536 2024-02-20 23:52:02.536 1000 STREAM 141924 1006 6016448 2024-02-20 23:54:05.188 2024-02-20 23:54:05.188 1600 FEE 432943 9354 6016449 2024-02-20 23:54:05.188 2024-02-20 23:54:05.188 14400 TIP 432943 11458 6016462 2024-02-20 23:56:08.235 2024-02-20 23:56:08.235 100 FEE 433025 641 6016463 2024-02-20 23:56:08.235 2024-02-20 23:56:08.235 900 TIP 433025 21620 6016468 2024-02-20 23:56:40.859 2024-02-20 23:56:40.859 10000 FEE 433108 6749 6016469 2024-02-20 23:56:40.859 2024-02-20 23:56:40.859 90000 TIP 433108 9347 6016474 2024-02-20 23:57:38.355 2024-02-20 23:57:38.355 1000 FEE 433209 10608 6016516 2024-02-21 00:01:45.415 2024-02-21 00:01:45.415 100000 FEE 433217 17800 6016517 2024-02-21 00:01:47.96 2024-02-21 00:01:47.96 500 FEE 433114 13365 6016518 2024-02-21 00:01:47.96 2024-02-21 00:01:47.96 4500 TIP 433114 14909 6016526 2024-02-21 00:02:51.111 2024-02-21 00:02:51.111 2100 FEE 433114 2543 6016527 2024-02-21 00:02:51.111 2024-02-21 00:02:51.111 18900 TIP 433114 20133 6016543 2024-02-21 00:02:59.857 2024-02-21 00:02:59.857 500 FEE 433114 19462 6016544 2024-02-21 00:02:59.857 2024-02-21 00:02:59.857 4500 TIP 433114 6136 6016581 2024-02-21 00:03:48.119 2024-02-21 00:03:48.119 1000 FEE 433201 2188 6016582 2024-02-21 00:03:48.119 2024-02-21 00:03:48.119 9000 TIP 433201 20434 6016583 2024-02-21 00:03:48.313 2024-02-21 00:03:48.313 2100 FEE 433087 19507 6016584 2024-02-21 00:03:48.313 2024-02-21 00:03:48.313 18900 TIP 433087 12708 6016603 2024-02-21 00:04:31.802 2024-02-21 00:04:31.802 0 FEE 433214 19193 6016606 2024-02-21 00:04:51.587 2024-02-21 00:04:51.587 1000 FEE 433224 15052 6016609 2024-02-21 00:05:02.83 2024-02-21 00:05:02.83 1000 FEE 433225 19863 6016618 2024-02-21 00:06:58.966 2024-02-21 00:06:58.966 3300 FEE 433028 17514 6016619 2024-02-21 00:06:58.966 2024-02-21 00:06:58.966 29700 TIP 433028 708 6016625 2024-02-21 00:07:09.767 2024-02-21 00:07:09.767 3300 FEE 432920 1224 6016626 2024-02-21 00:07:09.767 2024-02-21 00:07:09.767 29700 TIP 432920 4692 6016628 2024-02-21 00:08:11.329 2024-02-21 00:08:11.329 1000 FEE 433226 17091 6016647 2024-02-21 00:11:22.584 2024-02-21 00:11:22.584 1000 FEE 433230 17094 6016649 2024-02-21 00:11:33.43 2024-02-21 00:11:33.43 0 FEE 433218 9362 6016675 2024-02-21 00:15:25.869 2024-02-21 00:15:25.869 100 FEE 433218 9078 6016676 2024-02-21 00:15:25.869 2024-02-21 00:15:25.869 900 TIP 433218 16353 6016679 2024-02-21 00:15:59.12 2024-02-21 00:15:59.12 1000 FEE 432920 1092 6016680 2024-02-21 00:15:59.12 2024-02-21 00:15:59.12 9000 TIP 432920 14122 6016681 2024-02-21 00:15:59.684 2024-02-21 00:15:59.684 1000 FEE 432920 704 6016682 2024-02-21 00:15:59.684 2024-02-21 00:15:59.684 9000 TIP 432920 20495 6016684 2024-02-21 00:16:12.654 2024-02-21 00:16:12.654 1000 FEE 433238 7418 6016689 2024-02-21 00:17:29.915 2024-02-21 00:17:29.915 21000 DONT_LIKE_THIS 433117 5809 6016695 2024-02-21 00:19:50.238 2024-02-21 00:19:50.238 1000 FEE 433176 19153 6016696 2024-02-21 00:19:50.238 2024-02-21 00:19:50.238 9000 TIP 433176 12356 6016702 2024-02-21 00:21:40.225 2024-02-21 00:21:40.225 1000 FEE 433139 2088 6016703 2024-02-21 00:21:40.225 2024-02-21 00:21:40.225 9000 TIP 433139 2942 6016706 2024-02-21 00:21:53.122 2024-02-21 00:21:53.122 1000 FEE 433148 16998 6016707 2024-02-21 00:21:53.122 2024-02-21 00:21:53.122 9000 TIP 433148 882 6016709 2024-02-21 00:22:05.883 2024-02-21 00:22:05.883 1000 FEE 433181 4984 6016710 2024-02-21 00:22:05.883 2024-02-21 00:22:05.883 9000 TIP 433181 19156 6016752 2024-02-21 00:27:08.297 2024-02-21 00:27:08.297 2100 FEE 433248 21262 6016753 2024-02-21 00:27:08.297 2024-02-21 00:27:08.297 18900 TIP 433248 985 6016791 2024-02-21 00:35:38.209 2024-02-21 00:35:38.209 1000 FEE 433257 13398 6016801 2024-02-21 00:37:35.632 2024-02-21 00:37:35.632 1000 FEE 433261 11820 6016847 2024-02-21 00:48:29.539 2024-02-21 00:48:29.539 300 FEE 432982 21263 6016848 2024-02-21 00:48:29.539 2024-02-21 00:48:29.539 2700 TIP 432982 18314 6016849 2024-02-21 00:48:29.62 2024-02-21 00:48:29.62 300 FEE 432982 9476 6016850 2024-02-21 00:48:29.62 2024-02-21 00:48:29.62 2700 TIP 432982 16789 6016869 2024-02-21 00:48:33.277 2024-02-21 00:48:33.277 1000 FEE 432957 20588 6016870 2024-02-21 00:48:33.277 2024-02-21 00:48:33.277 9000 TIP 432957 20162 6016875 2024-02-21 00:48:33.878 2024-02-21 00:48:33.878 1000 FEE 432957 20353 6016876 2024-02-21 00:48:33.878 2024-02-21 00:48:33.878 9000 TIP 432957 14990 6016881 2024-02-21 00:48:38.229 2024-02-21 00:48:38.229 8300 FEE 433260 4048 6016882 2024-02-21 00:48:38.229 2024-02-21 00:48:38.229 74700 TIP 433260 4014 6016912 2024-02-21 00:49:26.952 2024-02-21 00:49:26.952 4200 FEE 432889 16543 6016913 2024-02-21 00:49:26.952 2024-02-21 00:49:26.952 37800 TIP 432889 7389 6016926 2024-02-21 00:50:01.46 2024-02-21 00:50:01.46 300 FEE 433095 17316 6016927 2024-02-21 00:50:01.46 2024-02-21 00:50:01.46 2700 TIP 433095 18529 6016996 2024-02-21 01:00:47.814 2024-02-21 01:00:47.814 1000 FEE 433108 4487 6016997 2024-02-21 01:00:47.814 2024-02-21 01:00:47.814 9000 TIP 433108 20179 6017054 2024-02-21 01:16:27.859 2024-02-21 01:16:27.859 10000 FEE 432353 11561 6017055 2024-02-21 01:16:27.859 2024-02-21 01:16:27.859 90000 TIP 432353 14449 6017060 2024-02-21 01:17:27.897 2024-02-21 01:17:27.897 1000 FEE 433285 20182 6017067 2024-02-21 01:19:08.918 2024-02-21 01:19:08.918 900 FEE 433244 15139 6017068 2024-02-21 01:19:08.918 2024-02-21 01:19:08.918 8100 TIP 433244 18581 6017077 2024-02-21 01:19:25.353 2024-02-21 01:19:25.353 100 FEE 433279 2347 6017078 2024-02-21 01:19:25.353 2024-02-21 01:19:25.353 900 TIP 433279 629 6017085 2024-02-21 01:19:29.801 2024-02-21 01:19:29.801 900 FEE 433284 20243 6017086 2024-02-21 01:19:29.801 2024-02-21 01:19:29.801 8100 TIP 433284 10849 6017116 2024-02-21 01:23:51.837 2024-02-21 01:23:51.837 1000 FEE 433289 704 6017133 2024-02-21 01:28:13.966 2024-02-21 01:28:13.966 1000 FEE 433290 13527 6017174 2024-02-21 01:38:30.146 2024-02-21 01:38:30.146 100 FEE 433050 20660 6017175 2024-02-21 01:38:30.146 2024-02-21 01:38:30.146 900 TIP 433050 1162 6017176 2024-02-21 01:38:30.573 2024-02-21 01:38:30.573 100 FEE 433050 13365 6017177 2024-02-21 01:38:30.573 2024-02-21 01:38:30.573 900 TIP 433050 1800 6017192 2024-02-21 01:40:36.886 2024-02-21 01:40:36.886 2100 FEE 433187 10291 6017193 2024-02-21 01:40:36.886 2024-02-21 01:40:36.886 18900 TIP 433187 15732 6017218 2024-02-21 01:52:23.401 2024-02-21 01:52:23.401 1000 FEE 433299 19941 6017265 2024-02-21 02:03:00.902 2024-02-21 02:03:00.902 900 FEE 433302 8380 6017266 2024-02-21 02:03:00.902 2024-02-21 02:03:00.902 8100 TIP 433302 628 6017288 2024-02-21 02:06:15.543 2024-02-21 02:06:15.543 7700 FEE 433302 20841 6017289 2024-02-21 02:06:15.543 2024-02-21 02:06:15.543 69300 TIP 433302 5775 6017296 2024-02-21 02:06:16.219 2024-02-21 02:06:16.219 7700 FEE 433302 20301 6017297 2024-02-21 02:06:16.219 2024-02-21 02:06:16.219 69300 TIP 433302 18533 6017308 2024-02-21 02:06:18.243 2024-02-21 02:06:18.243 7700 FEE 433302 20817 6017309 2024-02-21 02:06:18.243 2024-02-21 02:06:18.243 69300 TIP 433302 16350 6017320 2024-02-21 02:07:56.582 2024-02-21 02:07:56.582 2100 FEE 433156 20564 6017321 2024-02-21 02:07:56.582 2024-02-21 02:07:56.582 18900 TIP 433156 21051 6017325 2024-02-21 02:08:22.533 2024-02-21 02:08:22.533 2100 FEE 433047 10056 6017326 2024-02-21 02:08:22.533 2024-02-21 02:08:22.533 18900 TIP 433047 3353 6016464 2024-02-20 23:56:08.736 2024-02-20 23:56:08.736 100 FEE 433025 12097 6016465 2024-02-20 23:56:08.736 2024-02-20 23:56:08.736 900 TIP 433025 20066 6016494 2024-02-21 00:00:09.851 2024-02-21 00:00:09.851 2000 FEE 432920 20614 6016495 2024-02-21 00:00:09.851 2024-02-21 00:00:09.851 18000 TIP 432920 18241 6016520 2024-02-21 00:02:09.745 2024-02-21 00:02:09.745 500 FEE 433056 673 6016521 2024-02-21 00:02:09.745 2024-02-21 00:02:09.745 4500 TIP 433056 19810 6016532 2024-02-21 00:02:52.369 2024-02-21 00:02:52.369 2100 FEE 433114 18837 6016533 2024-02-21 00:02:52.369 2024-02-21 00:02:52.369 18900 TIP 433114 11158 6016538 2024-02-21 00:02:54.547 2024-02-21 00:02:54.547 2100 FEE 433114 6688 6016539 2024-02-21 00:02:54.547 2024-02-21 00:02:54.547 18900 TIP 433114 13931 6016547 2024-02-21 00:03:01.163 2024-02-21 00:03:01.163 2100 FEE 433066 17827 6016548 2024-02-21 00:03:01.163 2024-02-21 00:03:01.163 18900 TIP 433066 9167 6016570 2024-02-21 00:03:32.566 2024-02-21 00:03:32.566 2100 FEE 432957 4763 6016571 2024-02-21 00:03:32.566 2024-02-21 00:03:32.566 18900 TIP 432957 15196 6016594 2024-02-21 00:04:02.271 2024-02-21 00:04:02.271 400 FEE 433214 18008 6016595 2024-02-21 00:04:02.271 2024-02-21 00:04:02.271 3600 TIP 433214 19689 6016601 2024-02-21 00:04:16.957 2024-02-21 00:04:16.957 5200 FEE 433116 9992 6016602 2024-02-21 00:04:16.957 2024-02-21 00:04:16.957 46800 TIP 433116 5557 6016644 2024-02-21 00:10:38.853 2024-02-21 00:10:38.853 100 FEE 432957 13527 6016645 2024-02-21 00:10:38.853 2024-02-21 00:10:38.853 900 TIP 432957 20852 6016673 2024-02-21 00:15:20.653 2024-02-21 00:15:20.653 3000 FEE 433053 20502 6016674 2024-02-21 00:15:20.653 2024-02-21 00:15:20.653 27000 TIP 433053 4984 6016677 2024-02-21 00:15:45.283 2024-02-21 00:15:45.283 1000 FEE 433123 20889 6016678 2024-02-21 00:15:45.283 2024-02-21 00:15:45.283 9000 TIP 433123 12334 6016688 2024-02-21 00:17:12.945 2024-02-21 00:17:12.945 1000 FEE 433241 16097 6016734 2024-02-21 00:24:03.045 2024-02-21 00:24:03.045 2100 FEE 433087 5776 6016735 2024-02-21 00:24:03.045 2024-02-21 00:24:03.045 18900 TIP 433087 11938 6016746 2024-02-21 00:26:26.909 2024-02-21 00:26:26.909 1000 FEE 433249 15556 6016763 2024-02-21 00:27:41.932 2024-02-21 00:27:41.932 2300 FEE 433248 21296 6016764 2024-02-21 00:27:41.932 2024-02-21 00:27:41.932 20700 TIP 433248 21166 6016803 2024-02-21 00:38:40.238 2024-02-21 00:38:40.238 1000 FEE 433262 5444 6016817 2024-02-21 00:42:55.331 2024-02-21 00:42:55.331 1000 FEE 433266 20026 6016819 2024-02-21 00:43:05.035 2024-02-21 00:43:05.035 0 FEE 433266 1985 6016831 2024-02-21 00:47:25.026 2024-02-21 00:47:25.026 3000 FEE 433217 826 6016832 2024-02-21 00:47:25.026 2024-02-21 00:47:25.026 27000 TIP 433217 2576 6016836 2024-02-21 00:48:15.311 2024-02-21 00:48:15.311 1000 FEE 433268 2088 6016857 2024-02-21 00:48:31.773 2024-02-21 00:48:31.773 1000 FEE 432957 18608 6016858 2024-02-21 00:48:31.773 2024-02-21 00:48:31.773 9000 TIP 432957 21044 6016861 2024-02-21 00:48:32.288 2024-02-21 00:48:32.288 1000 FEE 432957 14260 6016862 2024-02-21 00:48:32.288 2024-02-21 00:48:32.288 9000 TIP 432957 8729 6016863 2024-02-21 00:48:32.546 2024-02-21 00:48:32.546 1000 FEE 432957 6573 6016864 2024-02-21 00:48:32.546 2024-02-21 00:48:32.546 9000 TIP 432957 18815 6016885 2024-02-21 00:48:58.798 2024-02-21 00:48:58.798 1000 FEE 433043 16667 6016886 2024-02-21 00:48:58.798 2024-02-21 00:48:58.798 9000 TIP 433043 20554 6016916 2024-02-21 00:50:00.599 2024-02-21 00:50:00.599 300 FEE 433095 21498 6016917 2024-02-21 00:50:00.599 2024-02-21 00:50:00.599 2700 TIP 433095 1433 6016935 2024-02-21 00:50:05.095 2024-02-21 00:50:05.095 300 FEE 433101 1726 6016936 2024-02-21 00:50:05.095 2024-02-21 00:50:05.095 2700 TIP 433101 11430 6016939 2024-02-21 00:50:06.833 2024-02-21 00:50:06.833 300 FEE 433101 19535 6016940 2024-02-21 00:50:06.833 2024-02-21 00:50:06.833 2700 TIP 433101 14663 6016967 2024-02-21 00:51:41.6 2024-02-21 00:51:41.6 300 FEE 433078 14213 6016968 2024-02-21 00:51:41.6 2024-02-21 00:51:41.6 2700 TIP 433078 11798 6017013 2024-02-21 01:05:40.499 2024-02-21 01:05:40.499 1000 FEE 433278 756 6017024 2024-02-21 01:07:28.25 2024-02-21 01:07:28.25 4000 FEE 433244 16670 6017025 2024-02-21 01:07:28.25 2024-02-21 01:07:28.25 36000 TIP 433244 17552 6017030 2024-02-21 01:10:33.665 2024-02-21 01:10:33.665 1000 FEE 433281 4574 6017031 2024-02-21 01:10:33.665 2024-02-21 01:10:33.665 9000 TIP 433281 4173 6017033 2024-02-21 01:11:55.365 2024-02-21 01:11:55.365 4000 FEE 433259 4175 6017034 2024-02-21 01:11:55.365 2024-02-21 01:11:55.365 36000 TIP 433259 19662 6017048 2024-02-21 01:16:09.224 2024-02-21 01:16:09.224 3000 FEE 433270 18745 6017049 2024-02-21 01:16:09.224 2024-02-21 01:16:09.224 27000 TIP 433270 20306 6017059 2024-02-21 01:17:24.591 2024-02-21 01:17:24.591 1000 FEE 433284 21138 6017079 2024-02-21 01:19:25.534 2024-02-21 01:19:25.534 900 FEE 433279 1319 6017080 2024-02-21 01:19:25.534 2024-02-21 01:19:25.534 8100 TIP 433279 2620 6017135 2024-02-21 01:29:50.978 2024-02-21 01:29:50.978 100000 FEE 433291 20554 6017141 2024-02-21 01:31:38.105 2024-02-21 01:31:38.105 2300 FEE 433276 13046 6017142 2024-02-21 01:31:38.105 2024-02-21 01:31:38.105 20700 TIP 433276 18235 6017147 2024-02-21 01:31:38.632 2024-02-21 01:31:38.632 2300 FEE 433276 3400 6017148 2024-02-21 01:31:38.632 2024-02-21 01:31:38.632 20700 TIP 433276 797 6017172 2024-02-21 01:38:27.895 2024-02-21 01:38:27.895 100 FEE 432987 11999 6017173 2024-02-21 01:38:27.895 2024-02-21 01:38:27.895 900 TIP 432987 21463 6017180 2024-02-21 01:38:31.089 2024-02-21 01:38:31.089 100 FEE 433050 10693 6017181 2024-02-21 01:38:31.089 2024-02-21 01:38:31.089 900 TIP 433050 759 6017202 2024-02-21 01:48:18.135 2024-02-21 01:48:18.135 1000 FEE 433297 660 6017205 2024-02-21 01:50:55.071 2024-02-21 01:50:55.071 2100 FEE 433086 4074 6017206 2024-02-21 01:50:55.071 2024-02-21 01:50:55.071 18900 TIP 433086 20059 6017208 2024-02-21 01:51:44.283 2024-02-21 01:51:44.283 50000 FEE 432920 20840 6017209 2024-02-21 01:51:44.283 2024-02-21 01:51:44.283 450000 TIP 432920 19848 6017243 2024-02-21 01:59:48.07 2024-02-21 01:59:48.07 1000 FEE 433291 12169 6017244 2024-02-21 01:59:48.07 2024-02-21 01:59:48.07 9000 TIP 433291 20376 6017253 2024-02-21 02:02:32.693 2024-02-21 02:02:32.693 100000 FEE 433302 5828 6017254 2024-02-21 02:02:32.693 2024-02-21 02:02:32.693 25000000 BOOST 433302 642 6017279 2024-02-21 02:04:44.333 2024-02-21 02:04:44.333 1300 FEE 428934 18635 6017280 2024-02-21 02:04:44.333 2024-02-21 02:04:44.333 11700 TIP 428934 705 6017286 2024-02-21 02:06:14.914 2024-02-21 02:06:14.914 7700 FEE 433302 10469 6017287 2024-02-21 02:06:14.914 2024-02-21 02:06:14.914 69300 TIP 433302 4650 6017310 2024-02-21 02:06:29.494 2024-02-21 02:06:29.494 100000 FEE 433304 15060 6017322 2024-02-21 02:08:00.642 2024-02-21 02:08:00.642 1000 FEE 433305 9332 6017352 2024-02-21 02:10:59.507 2024-02-21 02:10:59.507 1000 FEE 433309 20554 6017364 2024-02-21 02:13:02.08 2024-02-21 02:13:02.08 2100 FEE 432873 12566 6017365 2024-02-21 02:13:02.08 2024-02-21 02:13:02.08 18900 TIP 432873 8245 6017367 2024-02-21 02:13:06.023 2024-02-21 02:13:06.023 2100 FEE 433066 14404 6017368 2024-02-21 02:13:06.023 2024-02-21 02:13:06.023 18900 TIP 433066 21057 6017369 2024-02-21 02:13:06.419 2024-02-21 02:13:06.419 2100 FEE 433244 18517 6017370 2024-02-21 02:13:06.419 2024-02-21 02:13:06.419 18900 TIP 433244 4692 6017395 2024-02-21 02:13:19.353 2024-02-21 02:13:19.353 2100 FEE 433282 979 6017396 2024-02-21 02:13:19.353 2024-02-21 02:13:19.353 18900 TIP 433282 672 6017411 2024-02-21 02:15:28.148 2024-02-21 02:15:28.148 1100 FEE 432113 9150 6017412 2024-02-21 02:15:28.148 2024-02-21 02:15:28.148 9900 TIP 432113 2735 6017492 2024-02-21 02:38:54.516 2024-02-21 02:38:54.516 2300 FEE 433317 12819 6017493 2024-02-21 02:38:54.516 2024-02-21 02:38:54.516 20700 TIP 433317 21040 6017494 2024-02-21 02:38:54.632 2024-02-21 02:38:54.632 2300 FEE 433317 19633 6017495 2024-02-21 02:38:54.632 2024-02-21 02:38:54.632 20700 TIP 433317 1960 6017537 2024-02-21 02:47:25.47 2024-02-21 02:47:25.47 1000 FEE 433302 650 6017538 2024-02-21 02:47:25.47 2024-02-21 02:47:25.47 9000 TIP 433302 19512 6017595 2024-02-21 03:17:13.794 2024-02-21 03:17:13.794 1000 POLL 433082 9906 6017596 2024-02-21 03:17:55.438 2024-02-21 03:17:55.438 7100 FEE 433312 19096 6016466 2024-02-20 23:56:09.519 2024-02-20 23:56:09.519 100 FEE 433025 7668 6016467 2024-02-20 23:56:09.519 2024-02-20 23:56:09.519 900 TIP 433025 964 6016522 2024-02-21 00:02:18.041 2024-02-21 00:02:18.041 2100 FEE 432899 2741 6016523 2024-02-21 00:02:18.041 2024-02-21 00:02:18.041 18900 TIP 432899 21624 6016530 2024-02-21 00:02:52.082 2024-02-21 00:02:52.082 2100 FEE 433114 15119 6016531 2024-02-21 00:02:52.082 2024-02-21 00:02:52.082 18900 TIP 433114 678 6016557 2024-02-21 00:03:18.201 2024-02-21 00:03:18.201 1000 FEE 433201 1647 6016558 2024-02-21 00:03:18.201 2024-02-21 00:03:18.201 9000 TIP 433201 12245 6016561 2024-02-21 00:03:21.052 2024-02-21 00:03:21.052 2100 FEE 433208 14472 6016562 2024-02-21 00:03:21.052 2024-02-21 00:03:21.052 18900 TIP 433208 1135 6016565 2024-02-21 00:03:22.755 2024-02-21 00:03:22.755 2100 FEE 433208 1320 6016566 2024-02-21 00:03:22.755 2024-02-21 00:03:22.755 18900 TIP 433208 17237 6016577 2024-02-21 00:03:47.947 2024-02-21 00:03:47.947 1000 FEE 433201 20080 6016578 2024-02-21 00:03:47.947 2024-02-21 00:03:47.947 9000 TIP 433201 831 6016634 2024-02-21 00:09:12.523 2024-02-21 00:09:12.523 1000 FEE 433227 20073 6016652 2024-02-21 00:11:50.333 2024-02-21 00:11:50.333 10000 FEE 432899 9916 6016653 2024-02-21 00:11:50.333 2024-02-21 00:11:50.333 90000 TIP 432899 15484 6016656 2024-02-21 00:12:22.2 2024-02-21 00:12:22.2 100 FEE 432975 11263 6016657 2024-02-21 00:12:22.2 2024-02-21 00:12:22.2 900 TIP 432975 19259 6016663 2024-02-21 00:13:02.55 2024-02-21 00:13:02.55 100 FEE 433167 18412 6016664 2024-02-21 00:13:02.55 2024-02-21 00:13:02.55 900 TIP 433167 20889 6016691 2024-02-21 00:18:07.569 2024-02-21 00:18:07.569 1000 FEE 433242 17927 6016694 2024-02-21 00:19:23.055 2024-02-21 00:19:23.055 10000 FEE 433244 5759 6016720 2024-02-21 00:23:56.472 2024-02-21 00:23:56.472 2100 FEE 433135 1236 6016721 2024-02-21 00:23:56.472 2024-02-21 00:23:56.472 18900 TIP 433135 21022 6016737 2024-02-21 00:24:06.296 2024-02-21 00:24:06.296 2100 FEE 433122 676 6016738 2024-02-21 00:24:06.296 2024-02-21 00:24:06.296 18900 TIP 433122 1585 6016793 2024-02-21 00:36:13.671 2024-02-21 00:36:13.671 1000 FEE 433258 9342 6016806 2024-02-21 00:39:18.576 2024-02-21 00:39:18.576 0 FEE 433262 2652 6016815 2024-02-21 00:41:56.972 2024-02-21 00:41:56.972 1000 FEE 433265 4115 6016821 2024-02-21 00:43:43.721 2024-02-21 00:43:43.721 0 FEE 433266 11898 6016828 2024-02-21 00:47:19.704 2024-02-21 00:47:19.704 1000 FEE 433267 21012 6016853 2024-02-21 00:48:30.013 2024-02-21 00:48:30.013 300 FEE 432982 1046 6016854 2024-02-21 00:48:30.013 2024-02-21 00:48:30.013 2700 TIP 432982 16598 6016887 2024-02-21 00:48:58.981 2024-02-21 00:48:58.981 1000 FEE 433043 9906 6016888 2024-02-21 00:48:58.981 2024-02-21 00:48:58.981 9000 TIP 433043 5387 6016889 2024-02-21 00:48:59.199 2024-02-21 00:48:59.199 1000 FEE 433043 19189 6016890 2024-02-21 00:48:59.199 2024-02-21 00:48:59.199 9000 TIP 433043 627 6016895 2024-02-21 00:49:01.429 2024-02-21 00:49:01.429 8300 FEE 433244 5069 6016896 2024-02-21 00:49:01.429 2024-02-21 00:49:01.429 74700 TIP 433244 7558 6016897 2024-02-21 00:49:01.597 2024-02-21 00:49:01.597 8300 FEE 433244 1890 6016898 2024-02-21 00:49:01.597 2024-02-21 00:49:01.597 74700 TIP 433244 4378 6016907 2024-02-21 00:49:03.065 2024-02-21 00:49:03.065 8300 FEE 433244 16939 6016908 2024-02-21 00:49:03.065 2024-02-21 00:49:03.065 74700 TIP 433244 1478 6016910 2024-02-21 00:49:17.75 2024-02-21 00:49:17.75 16600 FEE 433217 15858 6016911 2024-02-21 00:49:17.75 2024-02-21 00:49:17.75 149400 TIP 433217 21296 6016924 2024-02-21 00:50:01.282 2024-02-21 00:50:01.282 300 FEE 433095 21103 6016925 2024-02-21 00:50:01.282 2024-02-21 00:50:01.282 2700 TIP 433095 17221 6016928 2024-02-21 00:50:01.897 2024-02-21 00:50:01.897 300 FEE 433095 14795 6016929 2024-02-21 00:50:01.897 2024-02-21 00:50:01.897 2700 TIP 433095 8541 6016931 2024-02-21 00:50:04.419 2024-02-21 00:50:04.419 600 FEE 433101 16270 6016932 2024-02-21 00:50:04.419 2024-02-21 00:50:04.419 5400 TIP 433101 1577 6016941 2024-02-21 00:50:07.53 2024-02-21 00:50:07.53 300 FEE 433101 6578 6016942 2024-02-21 00:50:07.53 2024-02-21 00:50:07.53 2700 TIP 433101 9341 6016949 2024-02-21 00:50:34.51 2024-02-21 00:50:34.51 300 FEE 433059 16929 6016950 2024-02-21 00:50:34.51 2024-02-21 00:50:34.51 2700 TIP 433059 4388 6016951 2024-02-21 00:50:35.101 2024-02-21 00:50:35.101 300 FEE 433059 21103 6016952 2024-02-21 00:50:35.101 2024-02-21 00:50:35.101 2700 TIP 433059 15491 6016958 2024-02-21 00:50:36.412 2024-02-21 00:50:36.412 300 FEE 433059 19601 6016959 2024-02-21 00:50:36.412 2024-02-21 00:50:36.412 2700 TIP 433059 2056 6016961 2024-02-21 00:51:40.325 2024-02-21 00:51:40.325 300 FEE 433078 21296 6016962 2024-02-21 00:51:40.325 2024-02-21 00:51:40.325 2700 TIP 433078 11158 6016969 2024-02-21 00:51:41.942 2024-02-21 00:51:41.942 300 FEE 433078 17030 6016970 2024-02-21 00:51:41.942 2024-02-21 00:51:41.942 2700 TIP 433078 19987 6016971 2024-02-21 00:51:42.314 2024-02-21 00:51:42.314 300 FEE 433078 4502 6016972 2024-02-21 00:51:42.314 2024-02-21 00:51:42.314 2700 TIP 433078 1800 6016982 2024-02-21 00:56:24.787 2024-02-21 00:56:24.787 10000 FEE 433176 21033 6016983 2024-02-21 00:56:24.787 2024-02-21 00:56:24.787 90000 TIP 433176 6361 6016989 2024-02-21 00:59:17.023 2024-02-21 00:59:17.023 2100 FEE 433217 14818 6016990 2024-02-21 00:59:17.023 2024-02-21 00:59:17.023 18900 TIP 433217 11678 6016994 2024-02-21 01:00:12.333 2024-02-21 01:00:12.333 1000 FEE 433272 19996 6016995 2024-02-21 01:00:16.498 2024-02-21 01:00:16.498 1000 FEE 433273 9334 6017010 2024-02-21 01:04:28.306 2024-02-21 01:04:28.306 1000 FEE 433276 8176 6017012 2024-02-21 01:05:12.573 2024-02-21 01:05:12.573 1000 FEE 433277 20616 6017016 2024-02-21 01:06:28.066 2024-02-21 01:06:28.066 10000 FEE 433260 641 6017017 2024-02-21 01:06:28.066 2024-02-21 01:06:28.066 90000 TIP 433260 20327 6017027 2024-02-21 01:08:37.92 2024-02-21 01:08:37.92 10000 FEE 433283 21578 6017039 2024-02-21 01:13:54.339 2024-02-21 01:13:54.339 2100 FEE 433056 20891 6017040 2024-02-21 01:13:54.339 2024-02-21 01:13:54.339 18900 TIP 433056 11621 6017044 2024-02-21 01:14:20.045 2024-02-21 01:14:20.045 1000 FEE 433130 1729 6017045 2024-02-21 01:14:20.045 2024-02-21 01:14:20.045 9000 TIP 433130 8423 6017050 2024-02-21 01:16:22.195 2024-02-21 01:16:22.195 10000 FEE 432353 21323 6017051 2024-02-21 01:16:22.195 2024-02-21 01:16:22.195 90000 TIP 432353 21320 6017057 2024-02-21 01:17:23.402 2024-02-21 01:17:23.402 1000 FEE 433023 910 6017058 2024-02-21 01:17:23.402 2024-02-21 01:17:23.402 9000 TIP 433023 1490 6017091 2024-02-21 01:19:33.714 2024-02-21 01:19:33.714 900 FEE 433283 1720 6017092 2024-02-21 01:19:33.714 2024-02-21 01:19:33.714 8100 TIP 433283 21334 6017093 2024-02-21 01:19:34.691 2024-02-21 01:19:34.691 9000 FEE 433283 19546 6017094 2024-02-21 01:19:34.691 2024-02-21 01:19:34.691 81000 TIP 433283 2963 6017107 2024-02-21 01:23:05.16 2024-02-21 01:23:05.16 2100 FEE 432991 16956 6017108 2024-02-21 01:23:05.16 2024-02-21 01:23:05.16 18900 TIP 432991 2431 6017109 2024-02-21 01:23:11.553 2024-02-21 01:23:11.553 2100 FEE 432977 16154 6017110 2024-02-21 01:23:11.553 2024-02-21 01:23:11.553 18900 TIP 432977 16848 6017113 2024-02-21 01:23:24.914 2024-02-21 01:23:24.914 2100 FEE 432920 8505 6017114 2024-02-21 01:23:24.914 2024-02-21 01:23:24.914 18900 TIP 432920 21609 6017122 2024-02-21 01:24:06.674 2024-02-21 01:24:06.674 1000 FEE 433108 9307 6017123 2024-02-21 01:24:06.674 2024-02-21 01:24:06.674 9000 TIP 433108 6688 6017127 2024-02-21 01:25:24.335 2024-02-21 01:25:24.335 0 FEE 433288 19005 6017138 2024-02-21 01:30:00.243 2024-02-21 01:30:00.243 1000 FEE 433292 2338 6017153 2024-02-21 01:32:30.677 2024-02-21 01:32:30.677 1000 FEE 433214 16789 6017154 2024-02-21 01:32:30.677 2024-02-21 01:32:30.677 9000 TIP 433214 6430 6017164 2024-02-21 01:38:25.188 2024-02-21 01:38:25.188 2100 FEE 432873 1745 6017165 2024-02-21 01:38:25.188 2024-02-21 01:38:25.188 18900 TIP 432873 19500 6017170 2024-02-21 01:38:27.52 2024-02-21 01:38:27.52 100 FEE 432987 17116 6017171 2024-02-21 01:38:27.52 2024-02-21 01:38:27.52 900 TIP 432987 5003 6017213 2024-02-21 01:51:50.537 2024-02-21 01:51:50.537 1000 FEE 433260 985 6017214 2024-02-21 01:51:50.537 2024-02-21 01:51:50.537 9000 TIP 433260 20381 6016471 2024-02-20 23:56:53.093 2024-02-20 23:56:53.093 1000 FEE 433207 10112 6016477 2024-02-20 23:58:02.647 2024-02-20 23:58:02.647 1000 STREAM 141924 20509 6016482 2024-02-20 23:58:23.308 2024-02-20 23:58:23.308 1000 FEE 433210 9339 6016487 2024-02-20 23:59:05.3 2024-02-20 23:59:05.3 1000 FEE 433212 1224 6016490 2024-02-20 23:59:55.711 2024-02-20 23:59:55.711 3300 FEE 433116 17800 6016491 2024-02-20 23:59:55.711 2024-02-20 23:59:55.711 29700 TIP 433116 20026 6016498 2024-02-21 00:00:16.01 2024-02-21 00:00:16.01 1000 FEE 433214 17797 6016506 2024-02-21 00:00:51.564 2024-02-21 00:00:51.564 1000 FEE 433216 900 6016514 2024-02-21 00:01:42.134 2024-02-21 00:01:42.134 500 FEE 433151 16485 6016515 2024-02-21 00:01:42.134 2024-02-21 00:01:42.134 4500 TIP 433151 9863 6016519 2024-02-21 00:02:04.278 2024-02-21 00:02:04.278 1000 STREAM 141924 11477 6016524 2024-02-21 00:02:41.141 2024-02-21 00:02:41.141 500 FEE 433114 1105 6016525 2024-02-21 00:02:41.141 2024-02-21 00:02:41.141 4500 TIP 433114 4768 6016540 2024-02-21 00:02:54.651 2024-02-21 00:02:54.651 1000 FEE 433218 21019 6016545 2024-02-21 00:03:00.55 2024-02-21 00:03:00.55 2100 FEE 433066 1060 6016546 2024-02-21 00:03:00.55 2024-02-21 00:03:00.55 18900 TIP 433066 6160 6016553 2024-02-21 00:03:17.909 2024-02-21 00:03:17.909 1000 FEE 433201 1286 6016554 2024-02-21 00:03:17.909 2024-02-21 00:03:17.909 9000 TIP 433201 19500 6016567 2024-02-21 00:03:31.234 2024-02-21 00:03:31.234 1000 FEE 433220 1008 6016574 2024-02-21 00:03:40.929 2024-02-21 00:03:40.929 1000 FEE 433221 7877 6016596 2024-02-21 00:04:04.263 2024-02-21 00:04:04.263 1000 STREAM 141924 4502 6016597 2024-02-21 00:04:05.406 2024-02-21 00:04:05.406 3000 FEE 433149 4831 6016598 2024-02-21 00:04:05.406 2024-02-21 00:04:05.406 27000 TIP 433149 19030 6016605 2024-02-21 00:04:36.378 2024-02-21 00:04:36.378 1000 FEE 433223 19557 6016607 2024-02-21 00:04:52.829 2024-02-21 00:04:52.829 0 FEE 433218 21172 6016608 2024-02-21 00:05:02.747 2024-02-21 00:05:02.747 1000 STREAM 141924 19813 6016610 2024-02-21 00:05:34.584 2024-02-21 00:05:34.584 0 FEE 433218 14225 6016611 2024-02-21 00:06:04.267 2024-02-21 00:06:04.267 1000 STREAM 141924 18351 6016620 2024-02-21 00:07:02.781 2024-02-21 00:07:02.781 1000 STREAM 141924 19888 6016627 2024-02-21 00:08:04.263 2024-02-21 00:08:04.263 1000 STREAM 141924 2151 6016633 2024-02-21 00:09:01.972 2024-02-21 00:09:01.972 1000 STREAM 141924 18139 6016639 2024-02-21 00:09:25.161 2024-02-21 00:09:25.161 2000 FEE 433224 20788 6016640 2024-02-21 00:09:25.161 2024-02-21 00:09:25.161 18000 TIP 433224 2529 6016642 2024-02-21 00:10:04.284 2024-02-21 00:10:04.284 1000 STREAM 141924 21201 6016654 2024-02-21 00:12:04.277 2024-02-21 00:12:04.277 1000 STREAM 141924 11220 6016661 2024-02-21 00:13:01.992 2024-02-21 00:13:01.992 1000 STREAM 141924 4313 6016668 2024-02-21 00:14:04.301 2024-02-21 00:14:04.301 1000 STREAM 141924 4173 6016672 2024-02-21 00:15:04.292 2024-02-21 00:15:04.292 1000 STREAM 141924 16351 6016683 2024-02-21 00:16:01.99 2024-02-21 00:16:01.99 1000 STREAM 141924 15159 6016687 2024-02-21 00:17:04.307 2024-02-21 00:17:04.307 1000 STREAM 141924 18816 6016690 2024-02-21 00:18:02.935 2024-02-21 00:18:02.935 1000 STREAM 141924 5761 6016692 2024-02-21 00:19:02.015 2024-02-21 00:19:02.015 1000 STREAM 141924 18667 6016697 2024-02-21 00:20:04.332 2024-02-21 00:20:04.332 1000 STREAM 141924 1236 6016704 2024-02-21 00:21:51.919 2024-02-21 00:21:51.919 1000 FEE 433145 21063 6016705 2024-02-21 00:21:51.919 2024-02-21 00:21:51.919 9000 TIP 433145 5565 6016708 2024-02-21 00:22:04.341 2024-02-21 00:22:04.341 1000 STREAM 141924 17064 6016715 2024-02-21 00:23:02.034 2024-02-21 00:23:02.034 1000 STREAM 141924 9352 6016722 2024-02-21 00:23:57.081 2024-02-21 00:23:57.081 2100 FEE 433135 19087 6016723 2024-02-21 00:23:57.081 2024-02-21 00:23:57.081 18900 TIP 433135 1493 6016724 2024-02-21 00:24:01.36 2024-02-21 00:24:01.36 2100 FEE 433217 9906 6016725 2024-02-21 00:24:01.36 2024-02-21 00:24:01.36 18900 TIP 433217 21406 6016726 2024-02-21 00:24:01.502 2024-02-21 00:24:01.502 2100 FEE 433087 14515 6016727 2024-02-21 00:24:01.502 2024-02-21 00:24:01.502 18900 TIP 433087 17817 6016732 2024-02-21 00:24:02.283 2024-02-21 00:24:02.283 2100 FEE 433087 20599 6016733 2024-02-21 00:24:02.283 2024-02-21 00:24:02.283 18900 TIP 433087 1272 6016736 2024-02-21 00:24:04.331 2024-02-21 00:24:04.331 1000 STREAM 141924 5701 6016741 2024-02-21 00:24:49.88 2024-02-21 00:24:49.88 2100 FEE 433087 14271 6016742 2024-02-21 00:24:49.88 2024-02-21 00:24:49.88 18900 TIP 433087 17109 6016743 2024-02-21 00:25:02.053 2024-02-21 00:25:02.053 1000 STREAM 141924 13398 6016744 2024-02-21 00:26:04.337 2024-02-21 00:26:04.337 1000 STREAM 141924 980 6016749 2024-02-21 00:27:02.049 2024-02-21 00:27:02.049 1000 STREAM 141924 2156 6016765 2024-02-21 00:27:42.631 2024-02-21 00:27:42.631 2300 FEE 433248 17673 6016766 2024-02-21 00:27:42.631 2024-02-21 00:27:42.631 20700 TIP 433248 664 6016767 2024-02-21 00:28:04.571 2024-02-21 00:28:04.571 1000 STREAM 141924 1401 6016768 2024-02-21 00:28:29.895 2024-02-21 00:28:29.895 1000 FEE 433251 1326 6016777 2024-02-21 00:30:04.611 2024-02-21 00:30:04.611 1000 STREAM 141924 672 6016785 2024-02-21 00:32:04.617 2024-02-21 00:32:04.617 1000 STREAM 141924 15282 6016786 2024-02-21 00:33:04.571 2024-02-21 00:33:04.571 1000 STREAM 141924 640 6016787 2024-02-21 00:33:42.288 2024-02-21 00:33:42.288 1000 FEE 433255 3706 6016790 2024-02-21 00:35:04.572 2024-02-21 00:35:04.572 1000 STREAM 141924 15858 6016799 2024-02-21 00:36:51.704 2024-02-21 00:36:51.704 1000 FEE 433260 5129 6016800 2024-02-21 00:37:04.569 2024-02-21 00:37:04.569 1000 STREAM 141924 4225 6016804 2024-02-21 00:39:04.579 2024-02-21 00:39:04.579 1000 STREAM 141924 20502 6016807 2024-02-21 00:39:27.496 2024-02-21 00:39:27.496 3000 FEE 433061 17526 6016808 2024-02-21 00:39:27.496 2024-02-21 00:39:27.496 27000 TIP 433061 18363 6016812 2024-02-21 00:40:02.156 2024-02-21 00:40:02.156 1000 STREAM 141924 20500 6016814 2024-02-21 00:41:04.589 2024-02-21 00:41:04.589 1000 STREAM 141924 14939 6016823 2024-02-21 00:45:04.61 2024-02-21 00:45:04.61 1000 STREAM 141924 12346 6016827 2024-02-21 00:47:02.188 2024-02-21 00:47:02.188 1000 STREAM 141924 11145 6016845 2024-02-21 00:48:29.249 2024-02-21 00:48:29.249 300 FEE 432982 8269 6016846 2024-02-21 00:48:29.249 2024-02-21 00:48:29.249 2700 TIP 432982 20424 6016893 2024-02-21 00:48:59.485 2024-02-21 00:48:59.485 1000 FEE 433043 9351 6016894 2024-02-21 00:48:59.485 2024-02-21 00:48:59.485 9000 TIP 433043 660 6016899 2024-02-21 00:49:01.948 2024-02-21 00:49:01.948 8300 FEE 433244 9809 6016900 2024-02-21 00:49:01.948 2024-02-21 00:49:01.948 74700 TIP 433244 10484 6016909 2024-02-21 00:49:04.65 2024-02-21 00:49:04.65 1000 STREAM 141924 946 6016920 2024-02-21 00:50:00.95 2024-02-21 00:50:00.95 300 FEE 433095 621 6016921 2024-02-21 00:50:00.95 2024-02-21 00:50:00.95 2700 TIP 433095 20454 6016930 2024-02-21 00:50:02.214 2024-02-21 00:50:02.214 1000 STREAM 141924 1394 6016933 2024-02-21 00:50:04.942 2024-02-21 00:50:04.942 300 FEE 433101 671 6016934 2024-02-21 00:50:04.942 2024-02-21 00:50:04.942 2700 TIP 433101 4345 6016945 2024-02-21 00:50:33.708 2024-02-21 00:50:33.708 300 FEE 433059 16543 6016946 2024-02-21 00:50:33.708 2024-02-21 00:50:33.708 2700 TIP 433059 19154 6016960 2024-02-21 00:51:04.627 2024-02-21 00:51:04.627 1000 STREAM 141924 7587 6016980 2024-02-21 00:55:02.228 2024-02-21 00:55:02.228 1000 STREAM 141924 17106 6016998 2024-02-21 01:00:49.866 2024-02-21 01:00:49.866 10100 FEE 433114 5728 6016999 2024-02-21 01:00:49.866 2024-02-21 01:00:49.866 90900 TIP 433114 3686 6017015 2024-02-21 01:06:26.835 2024-02-21 01:06:26.835 1000 FEE 433279 19967 6017018 2024-02-21 01:06:28.669 2024-02-21 01:06:28.669 1000 FEE 433280 618 6017026 2024-02-21 01:08:02.307 2024-02-21 01:08:02.307 1000 STREAM 141924 1723 6017035 2024-02-21 01:12:02.311 2024-02-21 01:12:02.311 1000 STREAM 141924 17817 6017075 2024-02-21 01:19:24.29 2024-02-21 01:19:24.29 9000 FEE 433260 18387 6017076 2024-02-21 01:19:24.29 2024-02-21 01:19:24.29 81000 TIP 433260 16250 6017111 2024-02-21 01:23:16.706 2024-02-21 01:23:16.706 2100 FEE 432957 15282 6017112 2024-02-21 01:23:16.706 2024-02-21 01:23:16.706 18900 TIP 432957 21320 6017215 2024-02-21 01:52:02.916 2024-02-21 01:52:02.916 21800 FEE 433228 14515 6017216 2024-02-21 01:52:02.916 2024-02-21 01:52:02.916 196200 TIP 433228 10280 6016739 2024-02-21 00:24:17.661 2024-02-21 00:24:17.661 2100 FEE 433100 5522 6016740 2024-02-21 00:24:17.661 2024-02-21 00:24:17.661 18900 TIP 433100 12562 6016754 2024-02-21 00:27:09.201 2024-02-21 00:27:09.201 2300 FEE 433217 2156 6016755 2024-02-21 00:27:09.201 2024-02-21 00:27:09.201 20700 TIP 433217 19690 6016756 2024-02-21 00:27:09.35 2024-02-21 00:27:09.35 2300 FEE 433217 6148 6016757 2024-02-21 00:27:09.35 2024-02-21 00:27:09.35 20700 TIP 433217 20120 6016758 2024-02-21 00:27:09.505 2024-02-21 00:27:09.505 2300 FEE 433217 5794 6016759 2024-02-21 00:27:09.505 2024-02-21 00:27:09.505 20700 TIP 433217 12951 6016760 2024-02-21 00:27:09.724 2024-02-21 00:27:09.724 2300 FEE 433217 20993 6016761 2024-02-21 00:27:09.724 2024-02-21 00:27:09.724 20700 TIP 433217 20837 6016772 2024-02-21 00:29:12.067 2024-02-21 00:29:12.067 1000 FEE 433252 14795 6016780 2024-02-21 00:30:47.266 2024-02-21 00:30:47.266 1000 FEE 433253 11670 6016794 2024-02-21 00:36:19.928 2024-02-21 00:36:19.928 1000 FEE 432563 13399 6016795 2024-02-21 00:36:19.928 2024-02-21 00:36:19.928 9000 TIP 432563 17690 6016802 2024-02-21 00:38:03.068 2024-02-21 00:38:03.068 1000 STREAM 141924 9992 6016816 2024-02-21 00:42:03.082 2024-02-21 00:42:03.082 1000 STREAM 141924 19033 6016818 2024-02-21 00:43:03.075 2024-02-21 00:43:03.075 1000 STREAM 141924 4474 6016820 2024-02-21 00:43:22.259 2024-02-21 00:43:22.259 0 FEE 433266 17014 6016822 2024-02-21 00:44:03.079 2024-02-21 00:44:03.079 1000 STREAM 141924 18310 6016824 2024-02-21 00:46:03.084 2024-02-21 00:46:03.084 1000 STREAM 141924 17001 6016835 2024-02-21 00:48:02.203 2024-02-21 00:48:02.203 1000 STREAM 141924 14795 6016851 2024-02-21 00:48:29.786 2024-02-21 00:48:29.786 300 FEE 432982 21051 6016852 2024-02-21 00:48:29.786 2024-02-21 00:48:29.786 2700 TIP 432982 1130 6016865 2024-02-21 00:48:32.792 2024-02-21 00:48:32.792 1000 FEE 432957 14959 6016866 2024-02-21 00:48:32.792 2024-02-21 00:48:32.792 9000 TIP 432957 11678 6016883 2024-02-21 00:48:43.074 2024-02-21 00:48:43.074 16600 FEE 433260 20137 6016884 2024-02-21 00:48:43.074 2024-02-21 00:48:43.074 149400 TIP 433260 2088 6016903 2024-02-21 00:49:02.632 2024-02-21 00:49:02.632 8300 FEE 433244 3745 6016904 2024-02-21 00:49:02.632 2024-02-21 00:49:02.632 74700 TIP 433244 21357 6016918 2024-02-21 00:50:00.772 2024-02-21 00:50:00.772 300 FEE 433095 12261 6016919 2024-02-21 00:50:00.772 2024-02-21 00:50:00.772 2700 TIP 433095 5085 6016947 2024-02-21 00:50:34.104 2024-02-21 00:50:34.104 300 FEE 433059 16808 6016948 2024-02-21 00:50:34.104 2024-02-21 00:50:34.104 2700 TIP 433059 8074 6016955 2024-02-21 00:50:35.874 2024-02-21 00:50:35.874 300 FEE 433059 2776 6016956 2024-02-21 00:50:35.874 2024-02-21 00:50:35.874 2700 TIP 433059 4388 6016965 2024-02-21 00:51:41.214 2024-02-21 00:51:41.214 300 FEE 433078 21361 6016966 2024-02-21 00:51:41.214 2024-02-21 00:51:41.214 2700 TIP 433078 19910 6016975 2024-02-21 00:52:03.265 2024-02-21 00:52:03.265 1000 STREAM 141924 667 6016976 2024-02-21 00:52:24.992 2024-02-21 00:52:24.992 1000 FEE 433270 17517 6016977 2024-02-21 00:53:03.267 2024-02-21 00:53:03.267 1000 STREAM 141924 18500 6016979 2024-02-21 00:54:02.217 2024-02-21 00:54:02.217 1000 STREAM 141924 18016 6016981 2024-02-21 00:56:01.514 2024-02-21 00:56:01.514 1000 STREAM 141924 9552 6016984 2024-02-21 00:57:03.271 2024-02-21 00:57:03.271 1000 STREAM 141924 4538 6016987 2024-02-21 00:58:01.519 2024-02-21 00:58:01.519 1000 STREAM 141924 11996 6016988 2024-02-21 00:59:03.279 2024-02-21 00:59:03.279 1000 STREAM 141924 20861 6016993 2024-02-21 01:00:02.261 2024-02-21 01:00:02.261 1000 STREAM 141924 15386 6017000 2024-02-21 01:01:03.287 2024-02-21 01:01:03.287 1000 STREAM 141924 21600 6017003 2024-02-21 01:01:33.031 2024-02-21 01:01:33.031 1000 FEE 433274 695 6017004 2024-02-21 01:02:03.299 2024-02-21 01:02:03.299 1000 STREAM 141924 16178 6017005 2024-02-21 01:03:01.553 2024-02-21 01:03:01.553 1000 STREAM 141924 16348 6017009 2024-02-21 01:04:03.333 2024-02-21 01:04:03.333 1000 STREAM 141924 10273 6017011 2024-02-21 01:05:01.591 2024-02-21 01:05:01.591 1000 STREAM 141924 811 6017014 2024-02-21 01:06:03.346 2024-02-21 01:06:03.346 1000 STREAM 141924 16004 6017019 2024-02-21 01:06:39.597 2024-02-21 01:06:39.597 1000000 FEE 433281 4323 6017022 2024-02-21 01:07:01.597 2024-02-21 01:07:01.597 1000 STREAM 141924 19281 6017023 2024-02-21 01:07:05.333 2024-02-21 01:07:05.333 10000 FEE 433282 16998 6017028 2024-02-21 01:09:01.632 2024-02-21 01:09:01.632 1000 STREAM 141924 18423 6017029 2024-02-21 01:10:02.318 2024-02-21 01:10:02.318 1000 STREAM 141924 13753 6017032 2024-02-21 01:11:01.661 2024-02-21 01:11:01.661 1000 STREAM 141924 21418 6017036 2024-02-21 01:13:01.686 2024-02-21 01:13:01.686 1000 STREAM 141924 14202 6017043 2024-02-21 01:14:03.392 2024-02-21 01:14:03.392 1000 STREAM 141924 1141 6017046 2024-02-21 01:15:01.713 2024-02-21 01:15:01.713 1000 STREAM 141924 2537 6017047 2024-02-21 01:16:03.414 2024-02-21 01:16:03.414 1000 STREAM 141924 16052 6017056 2024-02-21 01:17:01.728 2024-02-21 01:17:01.728 1000 STREAM 141924 20912 6017061 2024-02-21 01:18:03.413 2024-02-21 01:18:03.413 1000 STREAM 141924 21395 6017062 2024-02-21 01:18:24.666 2024-02-21 01:18:24.666 1000 FEE 433286 1960 6017063 2024-02-21 01:18:25.945 2024-02-21 01:18:25.945 1000 FEE 433287 21540 6017064 2024-02-21 01:19:02.365 2024-02-21 01:19:02.365 1000 STREAM 141924 16354 6017095 2024-02-21 01:20:03.41 2024-02-21 01:20:03.41 1000 STREAM 141924 12774 6017098 2024-02-21 01:21:01.757 2024-02-21 01:21:01.757 1000 STREAM 141924 6578 6017099 2024-02-21 01:22:03.385 2024-02-21 01:22:03.385 1000 STREAM 141924 6383 6017106 2024-02-21 01:23:02.37 2024-02-21 01:23:02.37 1000 STREAM 141924 21503 6017119 2024-02-21 01:24:03.4 2024-02-21 01:24:03.4 1000 STREAM 141924 19576 6017124 2024-02-21 01:24:34.357 2024-02-21 01:24:34.357 2100 FEE 433114 1618 6017125 2024-02-21 01:24:34.357 2024-02-21 01:24:34.357 18900 TIP 433114 15925 6017126 2024-02-21 01:25:01.767 2024-02-21 01:25:01.767 1000 STREAM 141924 4831 6017128 2024-02-21 01:26:03.435 2024-02-21 01:26:03.435 1000 STREAM 141924 1003 6017129 2024-02-21 01:26:59.782 2024-02-21 01:26:59.782 10000 FEE 433108 18114 6017130 2024-02-21 01:26:59.782 2024-02-21 01:26:59.782 90000 TIP 433108 7903 6017131 2024-02-21 01:27:02.377 2024-02-21 01:27:02.377 1000 STREAM 141924 14202 6017132 2024-02-21 01:28:03.441 2024-02-21 01:28:03.441 1000 STREAM 141924 20990 6017134 2024-02-21 01:29:02.383 2024-02-21 01:29:02.383 1000 STREAM 141924 20663 6017139 2024-02-21 01:30:02.42 2024-02-21 01:30:02.42 1000 STREAM 141924 18017 6017140 2024-02-21 01:31:01.93 2024-02-21 01:31:01.93 1000 STREAM 141924 5904 6017143 2024-02-21 01:31:38.291 2024-02-21 01:31:38.291 2300 FEE 433276 20272 6017144 2024-02-21 01:31:38.291 2024-02-21 01:31:38.291 20700 TIP 433276 16289 6017145 2024-02-21 01:31:38.42 2024-02-21 01:31:38.42 2300 FEE 433276 1401 6017146 2024-02-21 01:31:38.42 2024-02-21 01:31:38.42 20700 TIP 433276 661 6017151 2024-02-21 01:32:03.47 2024-02-21 01:32:03.47 1000 STREAM 141924 11288 6017152 2024-02-21 01:32:27.094 2024-02-21 01:32:27.094 1000 FEE 433293 895 6017155 2024-02-21 01:33:01.922 2024-02-21 01:33:01.922 1000 STREAM 141924 20889 6017158 2024-02-21 01:34:03.473 2024-02-21 01:34:03.473 1000 STREAM 141924 1723 6017159 2024-02-21 01:35:02.43 2024-02-21 01:35:02.43 1000 STREAM 141924 14213 6017160 2024-02-21 01:36:03.494 2024-02-21 01:36:03.494 1000 STREAM 141924 954 6017161 2024-02-21 01:37:02.443 2024-02-21 01:37:02.443 1000 STREAM 141924 2162 6017162 2024-02-21 01:38:02.442 2024-02-21 01:38:02.442 1000 STREAM 141924 19142 6017178 2024-02-21 01:38:30.85 2024-02-21 01:38:30.85 100 FEE 433050 2111 6017179 2024-02-21 01:38:30.85 2024-02-21 01:38:30.85 900 TIP 433050 21058 6017182 2024-02-21 01:38:31.389 2024-02-21 01:38:31.389 100 FEE 433050 19836 6017183 2024-02-21 01:38:31.389 2024-02-21 01:38:31.389 900 TIP 433050 1175 6017184 2024-02-21 01:38:36.128 2024-02-21 01:38:36.128 2100 FEE 433260 20738 6017185 2024-02-21 01:38:36.128 2024-02-21 01:38:36.128 18900 TIP 433260 18402 6017187 2024-02-21 01:39:01.995 2024-02-21 01:39:01.995 1000 STREAM 141924 9517 6017191 2024-02-21 01:40:03.535 2024-02-21 01:40:03.535 1000 STREAM 141924 20922 6017194 2024-02-21 01:41:01.989 2024-02-21 01:41:01.989 1000 STREAM 141924 2735 6017195 2024-02-21 01:42:03.531 2024-02-21 01:42:03.531 1000 STREAM 141924 21090 6017197 2024-02-21 01:44:03.526 2024-02-21 01:44:03.526 1000 STREAM 141924 21466 6017157 2024-02-21 01:33:08.305 2024-02-21 01:33:08.305 18900 TIP 433247 20738 6017166 2024-02-21 01:38:26.675 2024-02-21 01:38:26.675 100 FEE 432987 18232 6017167 2024-02-21 01:38:26.675 2024-02-21 01:38:26.675 900 TIP 432987 21506 6017190 2024-02-21 01:39:55.481 2024-02-21 01:39:55.481 1000 FEE 433296 19289 6017226 2024-02-21 01:54:25.24 2024-02-21 01:54:25.24 2700 FEE 433014 19458 6017227 2024-02-21 01:54:25.24 2024-02-21 01:54:25.24 24300 TIP 433014 13217 6017255 2024-02-21 02:02:37.369 2024-02-21 02:02:37.369 1000 FEE 433037 9107 6017256 2024-02-21 02:02:37.369 2024-02-21 02:02:37.369 9000 TIP 433037 21344 6017270 2024-02-21 02:03:04.436 2024-02-21 02:03:04.436 2100 FEE 432557 20840 6017271 2024-02-21 02:03:04.436 2024-02-21 02:03:04.436 18900 TIP 432557 8498 6017276 2024-02-21 02:04:01.774 2024-02-21 02:04:01.774 1000 FEE 432979 15336 6017277 2024-02-21 02:04:01.774 2024-02-21 02:04:01.774 9000 TIP 432979 1692 6017282 2024-02-21 02:05:15.187 2024-02-21 02:05:15.187 1000 FEE 432948 21480 6017283 2024-02-21 02:05:15.187 2024-02-21 02:05:15.187 9000 TIP 432948 989 6017294 2024-02-21 02:06:16.061 2024-02-21 02:06:16.061 7700 FEE 433302 14280 6017295 2024-02-21 02:06:16.061 2024-02-21 02:06:16.061 69300 TIP 433302 20554 6017333 2024-02-21 02:09:04.833 2024-02-21 02:09:04.833 1300 FEE 429107 20577 6017334 2024-02-21 02:09:04.833 2024-02-21 02:09:04.833 11700 TIP 429107 11477 6017347 2024-02-21 02:09:56.693 2024-02-21 02:09:56.693 1300 FEE 428873 16532 6017348 2024-02-21 02:09:56.693 2024-02-21 02:09:56.693 11700 TIP 428873 12024 6017356 2024-02-21 02:13:00.283 2024-02-21 02:13:00.283 2100 FEE 433114 18274 6017357 2024-02-21 02:13:00.283 2024-02-21 02:13:00.283 18900 TIP 433114 9863 6017377 2024-02-21 02:13:12.784 2024-02-21 02:13:12.784 2100 FEE 433087 20231 6017378 2024-02-21 02:13:12.784 2024-02-21 02:13:12.784 18900 TIP 433087 2390 6017381 2024-02-21 02:13:13.672 2024-02-21 02:13:13.672 2100 FEE 432899 4802 6017382 2024-02-21 02:13:13.672 2024-02-21 02:13:13.672 18900 TIP 432899 2338 6017393 2024-02-21 02:13:17.608 2024-02-21 02:13:17.608 2100 FEE 432977 20190 6017394 2024-02-21 02:13:17.608 2024-02-21 02:13:17.608 18900 TIP 432977 8729 6017404 2024-02-21 02:15:07.737 2024-02-21 02:15:07.737 1000 FEE 433312 15049 6017409 2024-02-21 02:15:27.998 2024-02-21 02:15:27.998 1100 FEE 432113 6777 6017410 2024-02-21 02:15:27.998 2024-02-21 02:15:27.998 9900 TIP 432113 9982 6017425 2024-02-21 02:15:30.01 2024-02-21 02:15:30.01 1100 FEE 432511 10493 6017426 2024-02-21 02:15:30.01 2024-02-21 02:15:30.01 9900 TIP 432511 21159 6017515 2024-02-21 02:42:06.721 2024-02-21 02:42:06.721 1300 FEE 432618 18904 6017516 2024-02-21 02:42:06.721 2024-02-21 02:42:06.721 11700 TIP 432618 20218 6017536 2024-02-21 02:47:02.977 2024-02-21 02:47:02.977 1000 FEE 433326 20504 6017544 2024-02-21 02:52:32.301 2024-02-21 02:52:32.301 2100 FEE 433322 15226 6017545 2024-02-21 02:52:32.301 2024-02-21 02:52:32.301 18900 TIP 433322 17927 6017550 2024-02-21 02:54:04.001 2024-02-21 02:54:04.001 2100 FEE 433260 15463 6017551 2024-02-21 02:54:04.001 2024-02-21 02:54:04.001 18900 TIP 433260 695 6017572 2024-02-21 03:03:57.809 2024-02-21 03:03:57.809 1000 FEE 433332 20911 6017615 2024-02-21 03:18:20.684 2024-02-21 03:18:20.684 500 FEE 432563 8945 6017616 2024-02-21 03:18:20.684 2024-02-21 03:18:20.684 4500 TIP 432563 6798 6017617 2024-02-21 03:18:21.554 2024-02-21 03:18:21.554 500 FEE 432957 21194 6017618 2024-02-21 03:18:21.554 2024-02-21 03:18:21.554 4500 TIP 432957 16706 6017672 2024-02-21 03:24:09.523 2024-02-21 03:24:09.523 10000 FEE 433338 21314 6017702 2024-02-21 03:30:08.473 2024-02-21 03:30:08.473 1000 FEE 433340 6030 6017703 2024-02-21 03:30:08.851 2024-02-21 03:30:08.851 1000 FEE 433341 19007 6017732 2024-02-21 03:32:51.295 2024-02-21 03:32:51.295 1000 FEE 433104 6687 6017733 2024-02-21 03:32:51.295 2024-02-21 03:32:51.295 9000 TIP 433104 6700 6017819 2024-02-21 03:36:33.913 2024-02-21 03:36:33.913 1000 FEE 432920 19770 6017820 2024-02-21 03:36:33.913 2024-02-21 03:36:33.913 9000 TIP 432920 929 6017830 2024-02-21 03:37:42.633 2024-02-21 03:37:42.633 0 FEE 433342 670 6017831 2024-02-21 03:37:59.934 2024-02-21 03:37:59.934 1000 FEE 432379 9863 6017832 2024-02-21 03:37:59.934 2024-02-21 03:37:59.934 9000 TIP 432379 19966 6017850 2024-02-21 03:44:12.377 2024-02-21 03:44:12.377 500 FEE 433302 985 6017851 2024-02-21 03:44:12.377 2024-02-21 03:44:12.377 4500 TIP 433302 20987 6017854 2024-02-21 03:44:13.997 2024-02-21 03:44:13.997 500 FEE 433244 19142 6017855 2024-02-21 03:44:13.997 2024-02-21 03:44:13.997 4500 TIP 433244 9482 6017856 2024-02-21 03:44:14.866 2024-02-21 03:44:14.866 500 FEE 433114 16177 6017857 2024-02-21 03:44:14.866 2024-02-21 03:44:14.866 4500 TIP 433114 925 6017860 2024-02-21 03:44:16.086 2024-02-21 03:44:16.086 500 FEE 432920 20340 6017861 2024-02-21 03:44:16.086 2024-02-21 03:44:16.086 4500 TIP 432920 18601 6017870 2024-02-21 03:44:35.314 2024-02-21 03:44:35.314 500 FEE 432957 8459 6017871 2024-02-21 03:44:35.314 2024-02-21 03:44:35.314 4500 TIP 432957 17517 6017880 2024-02-21 03:46:04.359 2024-02-21 03:46:04.359 100 FEE 433244 15119 6017881 2024-02-21 03:46:04.359 2024-02-21 03:46:04.359 900 TIP 433244 21365 6017884 2024-02-21 03:47:02.336 2024-02-21 03:47:02.336 1000 FEE 432957 21155 6017885 2024-02-21 03:47:02.336 2024-02-21 03:47:02.336 9000 TIP 432957 2256 6017903 2024-02-21 03:47:43.608 2024-02-21 03:47:43.608 1000 FEE 433123 21446 6017904 2024-02-21 03:47:43.608 2024-02-21 03:47:43.608 9000 TIP 433123 8074 6017939 2024-02-21 03:51:28.854 2024-02-21 03:51:28.854 100000 FEE 433344 2952 6017940 2024-02-21 03:51:31.592 2024-02-21 03:51:31.592 1000 FEE 433345 11992 6017992 2024-02-21 03:59:08.865 2024-02-21 03:59:08.865 9000 FEE 433344 20452 6017993 2024-02-21 03:59:08.865 2024-02-21 03:59:08.865 81000 TIP 433344 21422 6018035 2024-02-21 04:11:20.301 2024-02-21 04:11:20.301 800 FEE 433028 1245 6018036 2024-02-21 04:11:20.301 2024-02-21 04:11:20.301 7200 TIP 433028 21139 6018072 2024-02-21 04:20:04.258 2024-02-21 04:20:04.258 100 FEE 432899 15941 6018073 2024-02-21 04:20:04.258 2024-02-21 04:20:04.258 900 TIP 432899 20775 6018083 2024-02-21 04:23:56.048 2024-02-21 04:23:56.048 800 FEE 432957 9844 6018084 2024-02-21 04:23:56.048 2024-02-21 04:23:56.048 7200 TIP 432957 15521 6018090 2024-02-21 04:28:52.587 2024-02-21 04:28:52.587 12800 FEE 433010 9261 6018091 2024-02-21 04:28:52.587 2024-02-21 04:28:52.587 115200 TIP 433010 16267 6018139 2024-02-21 04:52:46.567 2024-02-21 04:52:46.567 1000 FEE 433365 712 6018148 2024-02-21 04:53:19.146 2024-02-21 04:53:19.146 800 FEE 433066 8570 6018149 2024-02-21 04:53:19.146 2024-02-21 04:53:19.146 7200 TIP 433066 825 6018152 2024-02-21 04:54:20.148 2024-02-21 04:54:20.148 10000 FEE 433331 20062 6018153 2024-02-21 04:54:20.148 2024-02-21 04:54:20.148 90000 TIP 433331 21379 6018175 2024-02-21 05:01:14.344 2024-02-21 05:01:14.344 800 FEE 433344 20799 6018176 2024-02-21 05:01:14.344 2024-02-21 05:01:14.344 7200 TIP 433344 20291 6018185 2024-02-21 05:02:09.751 2024-02-21 05:02:09.751 1000 FEE 432957 13878 6018186 2024-02-21 05:02:09.751 2024-02-21 05:02:09.751 9000 TIP 432957 803 6018211 2024-02-21 05:18:02.833 2024-02-21 05:18:02.833 1000 FEE 433371 15351 6018258 2024-02-21 05:33:42.167 2024-02-21 05:33:42.167 100 FEE 433373 10549 6018259 2024-02-21 05:33:42.167 2024-02-21 05:33:42.167 900 TIP 433373 1064 6018260 2024-02-21 05:33:42.425 2024-02-21 05:33:42.425 900 FEE 433373 9365 6018261 2024-02-21 05:33:42.425 2024-02-21 05:33:42.425 8100 TIP 433373 1224 6018267 2024-02-21 05:34:06.106 2024-02-21 05:34:06.106 100 FEE 433366 18704 6018268 2024-02-21 05:34:06.106 2024-02-21 05:34:06.106 900 TIP 433366 21417 6018312 2024-02-21 05:37:13.038 2024-02-21 05:37:13.038 100 FEE 433268 3478 6018313 2024-02-21 05:37:13.038 2024-02-21 05:37:13.038 900 TIP 433268 2639 6018334 2024-02-21 05:40:28.252 2024-02-21 05:40:28.252 1000 FEE 433382 12422 6018347 2024-02-21 05:43:26.071 2024-02-21 05:43:26.071 1000 FEE 433386 13100 6018390 2024-02-21 05:53:06.903 2024-02-21 05:53:06.903 1000 FEE 433395 20059 6018417 2024-02-21 05:58:40.146 2024-02-21 05:58:40.146 1000 FEE 433401 18608 6018418 2024-02-21 05:58:43.341 2024-02-21 05:58:43.341 10000 FEE 433377 21323 6018419 2024-02-21 05:58:43.341 2024-02-21 05:58:43.341 90000 TIP 433377 13781 6017169 2024-02-21 01:38:27.162 2024-02-21 01:38:27.162 1800 TIP 432987 10728 6017188 2024-02-21 01:39:51.764 2024-02-21 01:39:51.764 2100 FEE 432982 5487 6017189 2024-02-21 01:39:51.764 2024-02-21 01:39:51.764 18900 TIP 432982 20788 6017196 2024-02-21 01:43:02.025 2024-02-21 01:43:02.025 1000 STREAM 141924 14990 6017203 2024-02-21 01:49:02.086 2024-02-21 01:49:02.086 1000 STREAM 141924 10311 6017210 2024-02-21 01:51:49.536 2024-02-21 01:51:49.536 1000 FEE 433298 925 6017236 2024-02-21 01:56:43.37 2024-02-21 01:56:43.37 2700 FEE 433114 21451 6017237 2024-02-21 01:56:43.37 2024-02-21 01:56:43.37 24300 TIP 433114 14449 6017238 2024-02-21 01:57:02.14 2024-02-21 01:57:02.14 1000 STREAM 141924 18731 6017242 2024-02-21 01:59:02.154 2024-02-21 01:59:02.154 1000 STREAM 141924 3979 6017247 2024-02-21 02:00:48.515 2024-02-21 02:00:48.515 1000 FEE 433259 19148 6017248 2024-02-21 02:00:48.515 2024-02-21 02:00:48.515 9000 TIP 433259 18396 6017250 2024-02-21 02:01:19.646 2024-02-21 02:01:19.646 1000 FEE 433176 1983 6017251 2024-02-21 02:01:19.646 2024-02-21 02:01:19.646 9000 TIP 433176 760 6017272 2024-02-21 02:03:06.523 2024-02-21 02:03:06.523 2100 FEE 432794 12946 6017273 2024-02-21 02:03:06.523 2024-02-21 02:03:06.523 18900 TIP 432794 6393 6017285 2024-02-21 02:06:02.203 2024-02-21 02:06:02.203 1000 STREAM 141924 18994 6017349 2024-02-21 02:10:02.237 2024-02-21 02:10:02.237 1000 STREAM 141924 19826 6017358 2024-02-21 02:13:00.516 2024-02-21 02:13:00.516 2100 FEE 433302 21424 6017359 2024-02-21 02:13:00.516 2024-02-21 02:13:00.516 18900 TIP 433302 19484 6017362 2024-02-21 02:13:01.437 2024-02-21 02:13:01.437 2100 FEE 432920 18016 6017363 2024-02-21 02:13:01.437 2024-02-21 02:13:01.437 18900 TIP 432920 21562 6017375 2024-02-21 02:13:11.788 2024-02-21 02:13:11.788 2100 FEE 433108 8326 6017376 2024-02-21 02:13:11.788 2024-02-21 02:13:11.788 18900 TIP 433108 19770 6017385 2024-02-21 02:13:15.53 2024-02-21 02:13:15.53 2100 FEE 432563 9150 6017386 2024-02-21 02:13:15.53 2024-02-21 02:13:15.53 18900 TIP 432563 10934 6017405 2024-02-21 02:15:27.634 2024-02-21 02:15:27.634 1100 FEE 432113 16966 6017406 2024-02-21 02:15:27.634 2024-02-21 02:15:27.634 9900 TIP 432113 18809 6017413 2024-02-21 02:15:28.249 2024-02-21 02:15:28.249 1100 FEE 432113 1726 6017414 2024-02-21 02:15:28.249 2024-02-21 02:15:28.249 9900 TIP 432113 9351 6017429 2024-02-21 02:16:02.252 2024-02-21 02:16:02.252 1000 STREAM 141924 19615 6017451 2024-02-21 02:24:02.338 2024-02-21 02:24:02.338 1000 STREAM 141924 18231 6017452 2024-02-21 02:24:52.154 2024-02-21 02:24:52.154 1000 FEE 433315 7418 6017453 2024-02-21 02:25:02.333 2024-02-21 02:25:02.333 1000 STREAM 141924 899 6017457 2024-02-21 02:26:25.379 2024-02-21 02:26:25.379 1000 FEE 433316 21374 6017458 2024-02-21 02:27:02.347 2024-02-21 02:27:02.347 1000 STREAM 141924 8004 6017463 2024-02-21 02:32:02.445 2024-02-21 02:32:02.445 1000 STREAM 141924 20287 6017464 2024-02-21 02:33:02.463 2024-02-21 02:33:02.463 1000 STREAM 141924 7389 6017479 2024-02-21 02:36:02.495 2024-02-21 02:36:02.495 1000 STREAM 141924 1605 6017484 2024-02-21 02:37:02.496 2024-02-21 02:37:02.496 1000 STREAM 141924 21320 6017498 2024-02-21 02:39:02.533 2024-02-21 02:39:02.533 1000 STREAM 141924 8498 6017525 2024-02-21 02:43:02.549 2024-02-21 02:43:02.549 1000 STREAM 141924 20080 6017529 2024-02-21 02:44:05.195 2024-02-21 02:44:05.195 10000 FEE 433162 16653 6017530 2024-02-21 02:44:05.195 2024-02-21 02:44:05.195 90000 TIP 433162 15049 6017539 2024-02-21 02:48:02.593 2024-02-21 02:48:02.593 1000 STREAM 141924 631 6017540 2024-02-21 02:49:02.609 2024-02-21 02:49:02.609 1000 STREAM 141924 5701 6017541 2024-02-21 02:50:02.65 2024-02-21 02:50:02.65 1000 STREAM 141924 699 6017543 2024-02-21 02:52:02.641 2024-02-21 02:52:02.641 1000 STREAM 141924 12562 6017549 2024-02-21 02:54:02.662 2024-02-21 02:54:02.662 1000 STREAM 141924 19929 6017552 2024-02-21 02:54:37.786 2024-02-21 02:54:37.786 3000 FEE 433014 14959 6017553 2024-02-21 02:54:37.786 2024-02-21 02:54:37.786 27000 TIP 433014 1712 6017555 2024-02-21 02:56:02.668 2024-02-21 02:56:02.668 1000 STREAM 141924 17201 6017558 2024-02-21 02:58:34.603 2024-02-21 02:58:34.603 1000 FEE 433328 18583 6017565 2024-02-21 03:01:02.697 2024-02-21 03:01:02.697 1000 STREAM 141924 2156 6017570 2024-02-21 03:02:02.688 2024-02-21 03:02:02.688 1000 STREAM 141924 11819 6017571 2024-02-21 03:03:02.693 2024-02-21 03:03:02.693 1000 STREAM 141924 12277 6017573 2024-02-21 03:04:02.694 2024-02-21 03:04:02.694 1000 STREAM 141924 15560 6017583 2024-02-21 03:07:29.81 2024-02-21 03:07:29.81 1000 FEE 433335 1970 6017587 2024-02-21 03:11:02.765 2024-02-21 03:11:02.765 1000 STREAM 141924 16950 6017588 2024-02-21 03:12:02.783 2024-02-21 03:12:02.783 1000 STREAM 141924 19118 6017590 2024-02-21 03:13:02.788 2024-02-21 03:13:02.788 1000 STREAM 141924 7766 6017591 2024-02-21 03:14:02.806 2024-02-21 03:14:02.806 1000 STREAM 141924 8459 6017600 2024-02-21 03:18:01.233 2024-02-21 03:18:01.233 7100 FEE 433267 16355 6017601 2024-02-21 03:18:01.233 2024-02-21 03:18:01.233 63900 TIP 433267 16296 6017609 2024-02-21 03:18:18.136 2024-02-21 03:18:18.136 500 FEE 432311 19394 6017610 2024-02-21 03:18:18.136 2024-02-21 03:18:18.136 4500 TIP 432311 2285 6017623 2024-02-21 03:18:23.27 2024-02-21 03:18:23.27 500 FEE 432320 4989 6017624 2024-02-21 03:18:23.27 2024-02-21 03:18:23.27 4500 TIP 432320 18641 6017625 2024-02-21 03:19:02.806 2024-02-21 03:19:02.806 1000 STREAM 141924 19500 6017626 2024-02-21 03:20:02.806 2024-02-21 03:20:02.806 1000 STREAM 141924 15617 6017631 2024-02-21 03:20:53.281 2024-02-21 03:20:53.281 1000 FEE 433337 17082 6017636 2024-02-21 03:21:02.809 2024-02-21 03:21:02.809 1000 STREAM 141924 18138 6017639 2024-02-21 03:21:38.467 2024-02-21 03:21:38.467 500 FEE 433014 11776 6017640 2024-02-21 03:21:38.467 2024-02-21 03:21:38.467 4500 TIP 433014 20180 6017641 2024-02-21 03:21:38.861 2024-02-21 03:21:38.861 500 FEE 433014 7425 6017642 2024-02-21 03:21:38.861 2024-02-21 03:21:38.861 4500 TIP 433014 13217 6017654 2024-02-21 03:22:18.939 2024-02-21 03:22:18.939 500 FEE 432551 4084 6017655 2024-02-21 03:22:18.939 2024-02-21 03:22:18.939 4500 TIP 432551 21090 6017660 2024-02-21 03:23:02.807 2024-02-21 03:23:02.807 1000 STREAM 141924 6533 6017687 2024-02-21 03:26:41.604 2024-02-21 03:26:41.604 800 FEE 433302 19138 6017688 2024-02-21 03:26:41.604 2024-02-21 03:26:41.604 7200 TIP 433302 18667 6017689 2024-02-21 03:27:02.857 2024-02-21 03:27:02.857 1000 STREAM 141924 18731 6017694 2024-02-21 03:28:47.385 2024-02-21 03:28:47.385 21100 FEE 433187 12268 6017695 2024-02-21 03:28:47.385 2024-02-21 03:28:47.385 189900 TIP 433187 7986 6017719 2024-02-21 03:31:02.884 2024-02-21 03:31:02.884 1000 STREAM 141924 1673 6017740 2024-02-21 03:32:53.85 2024-02-21 03:32:53.85 1000 FEE 433104 21119 6017741 2024-02-21 03:32:53.85 2024-02-21 03:32:53.85 9000 TIP 433104 12965 6017763 2024-02-21 03:33:11.207 2024-02-21 03:33:11.207 1000 FEE 433015 20183 6017764 2024-02-21 03:33:11.207 2024-02-21 03:33:11.207 9000 TIP 433015 20924 6017771 2024-02-21 03:33:28.113 2024-02-21 03:33:28.113 1000 FEE 433003 21379 6017772 2024-02-21 03:33:28.113 2024-02-21 03:33:28.113 9000 TIP 433003 8985 6017779 2024-02-21 03:33:30.556 2024-02-21 03:33:30.556 1000 FEE 433003 18705 6017780 2024-02-21 03:33:30.556 2024-02-21 03:33:30.556 9000 TIP 433003 20163 6017782 2024-02-21 03:34:44.369 2024-02-21 03:34:44.369 1000 FEE 433343 21159 6017792 2024-02-21 03:35:06.204 2024-02-21 03:35:06.204 1000 FEE 432987 3478 6017793 2024-02-21 03:35:06.204 2024-02-21 03:35:06.204 9000 TIP 432987 1697 6017847 2024-02-21 03:42:02.936 2024-02-21 03:42:02.936 1000 STREAM 141924 21214 6017849 2024-02-21 03:44:02.957 2024-02-21 03:44:02.957 1000 STREAM 141924 17041 6017872 2024-02-21 03:45:02.962 2024-02-21 03:45:02.962 1000 STREAM 141924 15463 6017877 2024-02-21 03:46:00.87 2024-02-21 03:46:00.87 10000 FEE 433042 6602 6017878 2024-02-21 03:46:00.87 2024-02-21 03:46:00.87 90000 TIP 433042 19905 6017886 2024-02-21 03:47:02.995 2024-02-21 03:47:02.995 1000 STREAM 141924 16250 6017913 2024-02-21 03:50:03.037 2024-02-21 03:50:03.037 1000 STREAM 141924 8423 6017916 2024-02-21 03:50:06.466 2024-02-21 03:50:06.466 1000 FEE 433217 18995 6017917 2024-02-21 03:50:06.466 2024-02-21 03:50:06.466 9000 TIP 433217 19030 6017920 2024-02-21 03:50:07.991 2024-02-21 03:50:07.991 1000 FEE 433087 2338 6017921 2024-02-21 03:50:07.991 2024-02-21 03:50:07.991 9000 TIP 433087 21555 6017198 2024-02-21 01:45:02.03 2024-02-21 01:45:02.03 1000 STREAM 141924 1213 6017200 2024-02-21 01:47:02.05 2024-02-21 01:47:02.05 1000 STREAM 141924 1124 6017207 2024-02-21 01:51:02.093 2024-02-21 01:51:02.093 1000 STREAM 141924 1002 6017219 2024-02-21 01:53:02.105 2024-02-21 01:53:02.105 1000 STREAM 141924 4064 6017230 2024-02-21 01:55:02.134 2024-02-21 01:55:02.134 1000 STREAM 141924 17237 6017252 2024-02-21 02:02:02.171 2024-02-21 02:02:02.171 1000 STREAM 141924 1389 6017278 2024-02-21 02:04:02.194 2024-02-21 02:04:02.194 1000 STREAM 141924 631 6017323 2024-02-21 02:08:02.207 2024-02-21 02:08:02.207 1000 STREAM 141924 7986 6017354 2024-02-21 02:12:02.239 2024-02-21 02:12:02.239 1000 STREAM 141924 4292 6017402 2024-02-21 02:14:02.238 2024-02-21 02:14:02.238 1000 STREAM 141924 20006 6017435 2024-02-21 02:18:02.282 2024-02-21 02:18:02.282 1000 STREAM 141924 2206 6017439 2024-02-21 02:20:02.338 2024-02-21 02:20:02.338 1000 STREAM 141924 1890 6017445 2024-02-21 02:22:02.34 2024-02-21 02:22:02.34 1000 STREAM 141924 19005 6017446 2024-02-21 02:23:02.333 2024-02-21 02:23:02.333 1000 STREAM 141924 13843 6017456 2024-02-21 02:26:02.348 2024-02-21 02:26:02.348 1000 STREAM 141924 11716 6017459 2024-02-21 02:28:02.354 2024-02-21 02:28:02.354 1000 STREAM 141924 17797 6017460 2024-02-21 02:29:02.569 2024-02-21 02:29:02.569 1000 STREAM 141924 18836 6017468 2024-02-21 02:34:02.467 2024-02-21 02:34:02.467 1000 STREAM 141924 622 6017470 2024-02-21 02:35:02.477 2024-02-21 02:35:02.477 1000 STREAM 141924 7668 6017487 2024-02-21 02:38:02.511 2024-02-21 02:38:02.511 1000 STREAM 141924 19996 6017503 2024-02-21 02:40:02.542 2024-02-21 02:40:02.542 1000 STREAM 141924 2437 6017504 2024-02-21 02:41:02.574 2024-02-21 02:41:02.574 1000 STREAM 141924 3347 6017508 2024-02-21 02:42:02.563 2024-02-21 02:42:02.563 1000 STREAM 141924 18180 6017528 2024-02-21 02:44:02.556 2024-02-21 02:44:02.556 1000 STREAM 141924 16485 6017532 2024-02-21 02:45:02.563 2024-02-21 02:45:02.563 1000 STREAM 141924 650 6017534 2024-02-21 02:46:02.576 2024-02-21 02:46:02.576 1000 STREAM 141924 11038 6017535 2024-02-21 02:47:02.582 2024-02-21 02:47:02.582 1000 STREAM 141924 13544 6017542 2024-02-21 02:51:02.631 2024-02-21 02:51:02.631 1000 STREAM 141924 9242 6017546 2024-02-21 02:53:02.639 2024-02-21 02:53:02.639 1000 STREAM 141924 1120 6017554 2024-02-21 02:55:02.676 2024-02-21 02:55:02.676 1000 STREAM 141924 21600 6017556 2024-02-21 02:57:02.684 2024-02-21 02:57:02.684 1000 STREAM 141924 859 6017557 2024-02-21 02:58:02.689 2024-02-21 02:58:02.689 1000 STREAM 141924 9261 6017560 2024-02-21 02:59:02.691 2024-02-21 02:59:02.691 1000 STREAM 141924 617 6017562 2024-02-21 03:00:02.759 2024-02-21 03:00:02.759 1000 STREAM 141924 20551 6017575 2024-02-21 03:05:02.7 2024-02-21 03:05:02.7 1000 STREAM 141924 2508 6017581 2024-02-21 03:06:02.696 2024-02-21 03:06:02.696 1000 STREAM 141924 27 6017582 2024-02-21 03:07:02.713 2024-02-21 03:07:02.713 1000 STREAM 141924 20854 6017584 2024-02-21 03:08:02.722 2024-02-21 03:08:02.722 1000 STREAM 141924 15941 6017585 2024-02-21 03:09:02.721 2024-02-21 03:09:02.721 1000 STREAM 141924 15326 6017586 2024-02-21 03:10:02.767 2024-02-21 03:10:02.767 1000 STREAM 141924 738 6017592 2024-02-21 03:15:02.789 2024-02-21 03:15:02.789 1000 STREAM 141924 18426 6017593 2024-02-21 03:16:02.8 2024-02-21 03:16:02.8 1000 STREAM 141924 20045 6017594 2024-02-21 03:17:02.818 2024-02-21 03:17:02.818 1000 STREAM 141924 1046 6017602 2024-02-21 03:18:02.804 2024-02-21 03:18:02.804 1000 STREAM 141924 5527 6017647 2024-02-21 03:22:02.802 2024-02-21 03:22:02.802 1000 STREAM 141924 21482 6017663 2024-02-21 03:24:02.827 2024-02-21 03:24:02.827 1000 STREAM 141924 17522 6017675 2024-02-21 03:25:02.853 2024-02-21 03:25:02.853 1000 STREAM 141924 18154 6017682 2024-02-21 03:26:02.851 2024-02-21 03:26:02.851 1000 STREAM 141924 2614 6017691 2024-02-21 03:28:02.862 2024-02-21 03:28:02.862 1000 STREAM 141924 19126 6017696 2024-02-21 03:29:02.874 2024-02-21 03:29:02.874 1000 STREAM 141924 21444 6017701 2024-02-21 03:30:02.892 2024-02-21 03:30:02.892 1000 STREAM 141924 14255 6017730 2024-02-21 03:32:02.883 2024-02-21 03:32:02.883 1000 STREAM 141924 21172 6017752 2024-02-21 03:33:02.883 2024-02-21 03:33:02.883 1000 STREAM 141924 14515 6017781 2024-02-21 03:34:02.895 2024-02-21 03:34:02.895 1000 STREAM 141924 21481 6017783 2024-02-21 03:35:02.901 2024-02-21 03:35:02.901 1000 STREAM 141924 16289 6017816 2024-02-21 03:36:02.899 2024-02-21 03:36:02.899 1000 STREAM 141924 1272 6017829 2024-02-21 03:37:02.909 2024-02-21 03:37:02.909 1000 STREAM 141924 17517 6017835 2024-02-21 03:38:02.9 2024-02-21 03:38:02.9 1000 STREAM 141924 7682 6017844 2024-02-21 03:39:02.912 2024-02-21 03:39:02.912 1000 STREAM 141924 11515 6017845 2024-02-21 03:40:02.929 2024-02-21 03:40:02.929 1000 STREAM 141924 997 6017846 2024-02-21 03:41:02.92 2024-02-21 03:41:02.92 1000 STREAM 141924 2583 6017848 2024-02-21 03:43:02.962 2024-02-21 03:43:02.962 1000 STREAM 141924 8713 6017879 2024-02-21 03:46:02.975 2024-02-21 03:46:02.975 1000 STREAM 141924 20099 6017907 2024-02-21 03:48:03.002 2024-02-21 03:48:03.002 1000 STREAM 141924 999 6017910 2024-02-21 03:49:03.011 2024-02-21 03:49:03.011 1000 STREAM 141924 3706 6017974 2024-02-21 03:55:03.064 2024-02-21 03:55:03.064 1000 STREAM 141924 21472 6017199 2024-02-21 01:46:03.527 2024-02-21 01:46:03.527 1000 STREAM 141924 15732 6017201 2024-02-21 01:48:02.524 2024-02-21 01:48:02.524 1000 STREAM 141924 21103 6017204 2024-02-21 01:50:03.554 2024-02-21 01:50:03.554 1000 STREAM 141924 11328 6017217 2024-02-21 01:52:03.556 2024-02-21 01:52:03.556 1000 STREAM 141924 1772 6017220 2024-02-21 01:54:03.544 2024-02-21 01:54:03.544 1000 STREAM 141924 18830 6017231 2024-02-21 01:56:02.554 2024-02-21 01:56:02.554 1000 STREAM 141924 12483 6017241 2024-02-21 01:58:03.597 2024-02-21 01:58:03.597 1000 STREAM 141924 1433 6017249 2024-02-21 02:01:02.551 2024-02-21 02:01:02.551 1000 STREAM 141924 20669 6017269 2024-02-21 02:03:02.552 2024-02-21 02:03:02.552 1000 STREAM 141924 20713 6017317 2024-02-21 02:07:02.583 2024-02-21 02:07:02.583 1000 STREAM 141924 20713 6017332 2024-02-21 02:09:03.675 2024-02-21 02:09:03.675 1000 STREAM 141924 20201 6017366 2024-02-21 02:13:02.596 2024-02-21 02:13:02.596 1000 STREAM 141924 20500 6017431 2024-02-21 02:17:02.603 2024-02-21 02:17:02.603 1000 STREAM 141924 16653 6017436 2024-02-21 02:19:03.782 2024-02-21 02:19:03.782 1000 STREAM 141924 19174 6017222 2024-02-21 01:54:24.883 2024-02-21 01:54:24.883 2700 FEE 433014 15060 6017223 2024-02-21 01:54:24.883 2024-02-21 01:54:24.883 24300 TIP 433014 19043 6017263 2024-02-21 02:03:00.742 2024-02-21 02:03:00.742 100 FEE 433302 15719 6017264 2024-02-21 02:03:00.742 2024-02-21 02:03:00.742 900 TIP 433302 19463 6017290 2024-02-21 02:06:15.733 2024-02-21 02:06:15.733 7700 FEE 433302 16348 6017291 2024-02-21 02:06:15.733 2024-02-21 02:06:15.733 69300 TIP 433302 20563 6017302 2024-02-21 02:06:16.759 2024-02-21 02:06:16.759 7700 FEE 433302 13798 6017303 2024-02-21 02:06:16.759 2024-02-21 02:06:16.759 69300 TIP 433302 19096 6017304 2024-02-21 02:06:16.938 2024-02-21 02:06:16.938 7700 FEE 433302 16769 6017305 2024-02-21 02:06:16.938 2024-02-21 02:06:16.938 69300 TIP 433302 13169 6017315 2024-02-21 02:06:45.385 2024-02-21 02:06:45.385 1000 FEE 432957 10549 6017316 2024-02-21 02:06:45.385 2024-02-21 02:06:45.385 9000 TIP 432957 1596 6017328 2024-02-21 02:08:41.221 2024-02-21 02:08:41.221 2100 FEE 432953 7916 6017329 2024-02-21 02:08:41.221 2024-02-21 02:08:41.221 18900 TIP 432953 15577 6017339 2024-02-21 02:09:31.016 2024-02-21 02:09:31.016 1000 FEE 433307 1512 6017355 2024-02-21 02:12:05.238 2024-02-21 02:12:05.238 1000 FEE 433310 13361 6017401 2024-02-21 02:13:42.981 2024-02-21 02:13:42.981 1000 FEE 433311 19995 6017476 2024-02-21 02:35:55.839 2024-02-21 02:35:55.839 1000 FEE 433320 14663 6017477 2024-02-21 02:36:01.387 2024-02-21 02:36:01.387 1000 FEE 433291 8162 6017478 2024-02-21 02:36:01.387 2024-02-21 02:36:01.387 9000 TIP 433291 17103 6017509 2024-02-21 02:42:03.586 2024-02-21 02:42:03.586 1300 FEE 432618 19198 6017510 2024-02-21 02:42:03.586 2024-02-21 02:42:03.586 11700 TIP 432618 19795 6017511 2024-02-21 02:42:04.424 2024-02-21 02:42:04.424 1300 FEE 432618 10611 6017512 2024-02-21 02:42:04.424 2024-02-21 02:42:04.424 11700 TIP 432618 19546 6017519 2024-02-21 02:42:11.03 2024-02-21 02:42:11.03 1300 FEE 432618 14663 6017520 2024-02-21 02:42:11.03 2024-02-21 02:42:11.03 11700 TIP 432618 18409 6017531 2024-02-21 02:44:13.414 2024-02-21 02:44:13.414 1000 FEE 433324 21405 6017566 2024-02-21 03:01:19.281 2024-02-21 03:01:19.281 400 FEE 433330 14939 6017567 2024-02-21 03:01:19.281 2024-02-21 03:01:19.281 3600 TIP 433330 10013 6017580 2024-02-21 03:06:00.402 2024-02-21 03:06:00.402 1000 FEE 433334 1316 6017607 2024-02-21 03:18:17.519 2024-02-21 03:18:17.519 500 FEE 432873 1585 6017608 2024-02-21 03:18:17.519 2024-02-21 03:18:17.519 4500 TIP 432873 1245 6017613 2024-02-21 03:18:20.027 2024-02-21 03:18:20.027 500 FEE 432517 636 6017614 2024-02-21 03:18:20.027 2024-02-21 03:18:20.027 4500 TIP 432517 18581 6017648 2024-02-21 03:22:06.626 2024-02-21 03:22:06.626 500 FEE 433123 6741 6017649 2024-02-21 03:22:06.626 2024-02-21 03:22:06.626 4500 TIP 433123 21012 6017650 2024-02-21 03:22:09.236 2024-02-21 03:22:09.236 500 FEE 433123 1122 6017651 2024-02-21 03:22:09.236 2024-02-21 03:22:09.236 4500 TIP 433123 18731 6017661 2024-02-21 03:24:01.223 2024-02-21 03:24:01.223 1000 FEE 432674 1198 6017662 2024-02-21 03:24:01.223 2024-02-21 03:24:01.223 9000 TIP 432674 5809 6017680 2024-02-21 03:26:00.487 2024-02-21 03:26:00.487 1000 FEE 432894 6393 6017681 2024-02-21 03:26:00.487 2024-02-21 03:26:00.487 9000 TIP 432894 9347 6017690 2024-02-21 03:27:21.225 2024-02-21 03:27:21.225 1000 FEE 433339 21296 6017697 2024-02-21 03:29:21.678 2024-02-21 03:29:21.678 1000 FEE 433031 9450 6017698 2024-02-21 03:29:21.678 2024-02-21 03:29:21.678 9000 TIP 433031 2176 6017712 2024-02-21 03:30:27.358 2024-02-21 03:30:27.358 1000 FEE 432889 18877 6017713 2024-02-21 03:30:27.358 2024-02-21 03:30:27.358 9000 TIP 432889 21060 6017714 2024-02-21 03:30:30.329 2024-02-21 03:30:30.329 800 FEE 433302 7654 6017715 2024-02-21 03:30:30.329 2024-02-21 03:30:30.329 7200 TIP 433302 2162 6017731 2024-02-21 03:32:29.294 2024-02-21 03:32:29.294 0 FEE 433342 13174 6017738 2024-02-21 03:32:52.967 2024-02-21 03:32:52.967 1000 FEE 433104 4043 6017739 2024-02-21 03:32:52.967 2024-02-21 03:32:52.967 9000 TIP 433104 21371 6017790 2024-02-21 03:35:05.62 2024-02-21 03:35:05.62 1000 FEE 432987 21338 6017791 2024-02-21 03:35:05.62 2024-02-21 03:35:05.62 9000 TIP 432987 16816 6017833 2024-02-21 03:38:01.374 2024-02-21 03:38:01.374 1000 FEE 432635 1007 6017834 2024-02-21 03:38:01.374 2024-02-21 03:38:01.374 9000 TIP 432635 20573 6017858 2024-02-21 03:44:15.396 2024-02-21 03:44:15.396 500 FEE 432873 19576 6017859 2024-02-21 03:44:15.396 2024-02-21 03:44:15.396 4500 TIP 432873 16042 6017862 2024-02-21 03:44:16.689 2024-02-21 03:44:16.689 500 FEE 432674 1740 6017863 2024-02-21 03:44:16.689 2024-02-21 03:44:16.689 4500 TIP 432674 18618 6017893 2024-02-21 03:47:16.662 2024-02-21 03:47:16.662 1000 FEE 432844 7913 6017894 2024-02-21 03:47:16.662 2024-02-21 03:47:16.662 9000 TIP 432844 17095 6017895 2024-02-21 03:47:22.922 2024-02-21 03:47:22.922 1000 FEE 433014 2437 6017896 2024-02-21 03:47:22.922 2024-02-21 03:47:22.922 9000 TIP 433014 4322 6017905 2024-02-21 03:47:50.899 2024-02-21 03:47:50.899 1000 FEE 432551 17513 6017906 2024-02-21 03:47:50.899 2024-02-21 03:47:50.899 9000 TIP 432551 3353 6017914 2024-02-21 03:50:05.623 2024-02-21 03:50:05.623 1000 FEE 432890 7097 6017915 2024-02-21 03:50:05.623 2024-02-21 03:50:05.623 9000 TIP 432890 2844 6017922 2024-02-21 03:50:08.836 2024-02-21 03:50:08.836 1000 FEE 433302 6327 6017923 2024-02-21 03:50:08.836 2024-02-21 03:50:08.836 9000 TIP 433302 20825 6017937 2024-02-21 03:51:25.306 2024-02-21 03:51:25.306 1000 FEE 432414 9433 6017938 2024-02-21 03:51:25.306 2024-02-21 03:51:25.306 9000 TIP 432414 19810 6017942 2024-02-21 03:52:10.51 2024-02-21 03:52:10.51 3000 FEE 433343 14152 6017943 2024-02-21 03:52:10.51 2024-02-21 03:52:10.51 27000 TIP 433343 19030 6017947 2024-02-21 03:53:10.149 2024-02-21 03:53:10.149 500 FEE 432776 666 6017948 2024-02-21 03:53:10.149 2024-02-21 03:53:10.149 4500 TIP 432776 18526 6017971 2024-02-21 03:54:43.097 2024-02-21 03:54:43.097 500 FEE 433061 21088 6017972 2024-02-21 03:54:43.097 2024-02-21 03:54:43.097 4500 TIP 433061 681 6017979 2024-02-21 03:56:10.165 2024-02-21 03:56:10.165 0 FEE 433349 19795 6017981 2024-02-21 03:57:32.602 2024-02-21 03:57:32.602 10000 FEE 432682 21365 6017982 2024-02-21 03:57:32.602 2024-02-21 03:57:32.602 90000 TIP 432682 14308 6018018 2024-02-21 04:08:21.657 2024-02-21 04:08:21.657 800 FEE 432920 5160 6018019 2024-02-21 04:08:21.657 2024-02-21 04:08:21.657 7200 TIP 432920 18507 6018032 2024-02-21 04:10:50.7 2024-02-21 04:10:50.7 2300 FEE 433333 10060 6018033 2024-02-21 04:10:50.7 2024-02-21 04:10:50.7 20700 TIP 433333 7916 6018048 2024-02-21 04:15:29.611 2024-02-21 04:15:29.611 12800 FEE 432549 19826 6018049 2024-02-21 04:15:29.611 2024-02-21 04:15:29.611 115200 TIP 432549 11491 6018052 2024-02-21 04:17:04.037 2024-02-21 04:17:04.037 10000 FEE 433313 20162 6018053 2024-02-21 04:17:04.037 2024-02-21 04:17:04.037 90000 TIP 433313 8095 6018058 2024-02-21 04:19:56.273 2024-02-21 04:19:56.273 12800 FEE 432609 1007 6018059 2024-02-21 04:19:56.273 2024-02-21 04:19:56.273 115200 TIP 432609 9350 6018062 2024-02-21 04:20:03.262 2024-02-21 04:20:03.262 100 FEE 432899 11527 6018063 2024-02-21 04:20:03.262 2024-02-21 04:20:03.262 900 TIP 432899 15594 6018094 2024-02-21 04:30:02.221 2024-02-21 04:30:02.221 1000 FEE 433358 667 6018121 2024-02-21 04:38:44.267 2024-02-21 04:38:44.267 10000 FEE 433128 7998 6018122 2024-02-21 04:38:44.267 2024-02-21 04:38:44.267 90000 TIP 433128 3729 6018141 2024-02-21 04:53:02.229 2024-02-21 04:53:02.229 83000 DONT_LIKE_THIS 433361 4076 6018154 2024-02-21 04:54:46.506 2024-02-21 04:54:46.506 1000 FEE 433045 18116 6018155 2024-02-21 04:54:46.506 2024-02-21 04:54:46.506 9000 TIP 433045 9355 6018179 2024-02-21 05:02:03.372 2024-02-21 05:02:03.372 1000 FEE 432920 876 6018180 2024-02-21 05:02:03.372 2024-02-21 05:02:03.372 9000 TIP 432920 1478 6018236 2024-02-21 05:28:37.426 2024-02-21 05:28:37.426 100000 FEE 433373 14370 6018250 2024-02-21 05:32:39.314 2024-02-21 05:32:39.314 10000 DONT_LIKE_THIS 433361 1726 6018254 2024-02-21 05:33:12.516 2024-02-21 05:33:12.516 900 FEE 433359 1626 6018255 2024-02-21 05:33:12.516 2024-02-21 05:33:12.516 8100 TIP 433359 11378 6018271 2024-02-21 05:34:06.763 2024-02-21 05:34:06.763 100 FEE 433334 17082 6018272 2024-02-21 05:34:06.763 2024-02-21 05:34:06.763 900 TIP 433334 17800 6017224 2024-02-21 01:54:25.078 2024-02-21 01:54:25.078 2700 FEE 433014 20090 6017225 2024-02-21 01:54:25.078 2024-02-21 01:54:25.078 24300 TIP 433014 18040 6017239 2024-02-21 01:57:39.098 2024-02-21 01:57:39.098 2100 FEE 433282 19553 6017240 2024-02-21 01:57:39.098 2024-02-21 01:57:39.098 18900 TIP 433282 782 6017257 2024-02-21 02:02:42.415 2024-02-21 02:02:42.415 100 FEE 433282 18396 6017258 2024-02-21 02:02:42.415 2024-02-21 02:02:42.415 900 TIP 433282 2519 6017274 2024-02-21 02:03:30.398 2024-02-21 02:03:30.398 1000 FEE 432985 20981 6017275 2024-02-21 02:03:30.398 2024-02-21 02:03:30.398 9000 TIP 432985 21605 6017300 2024-02-21 02:06:16.595 2024-02-21 02:06:16.595 7700 FEE 433302 688 6017301 2024-02-21 02:06:16.595 2024-02-21 02:06:16.595 69300 TIP 433302 6268 6017318 2024-02-21 02:07:23.898 2024-02-21 02:07:23.898 2100 FEE 433302 19132 6017319 2024-02-21 02:07:23.898 2024-02-21 02:07:23.898 18900 TIP 433302 20577 6017342 2024-02-21 02:09:49.471 2024-02-21 02:09:49.471 1300 FEE 428873 895 6017343 2024-02-21 02:09:49.471 2024-02-21 02:09:49.471 11700 TIP 428873 18208 6017346 2024-02-21 02:09:53.537 2024-02-21 02:09:53.537 1000 FEE 433308 831 6017415 2024-02-21 02:15:28.909 2024-02-21 02:15:28.909 1100 FEE 432560 11288 6017416 2024-02-21 02:15:28.909 2024-02-21 02:15:28.909 9900 TIP 432560 2204 6017423 2024-02-21 02:15:29.816 2024-02-21 02:15:29.816 1100 FEE 432511 9427 6017424 2024-02-21 02:15:29.816 2024-02-21 02:15:29.816 9900 TIP 432511 1718 6017427 2024-02-21 02:15:30.454 2024-02-21 02:15:30.454 2200 FEE 432511 14990 6017428 2024-02-21 02:15:30.454 2024-02-21 02:15:30.454 19800 TIP 432511 9982 6017449 2024-02-21 02:23:26.572 2024-02-21 02:23:26.572 1300 FEE 432398 19381 6017450 2024-02-21 02:23:26.572 2024-02-21 02:23:26.572 11700 TIP 432398 16562 6017454 2024-02-21 02:25:53.444 2024-02-21 02:25:53.444 4000 FEE 433282 4250 6017455 2024-02-21 02:25:53.444 2024-02-21 02:25:53.444 36000 TIP 433282 21145 6017467 2024-02-21 02:33:54.77 2024-02-21 02:33:54.77 1000 FEE 433317 716 6017473 2024-02-21 02:35:10.73 2024-02-21 02:35:10.73 1000 FEE 433319 20560 6017480 2024-02-21 02:36:06.851 2024-02-21 02:36:06.851 1000 FEE 433307 18745 6017481 2024-02-21 02:36:06.851 2024-02-21 02:36:06.851 9000 TIP 433307 5637 6017488 2024-02-21 02:38:19.501 2024-02-21 02:38:19.501 1000 FEE 418192 19987 6017489 2024-02-21 02:38:19.501 2024-02-21 02:38:19.501 9000 TIP 418192 21281 6017513 2024-02-21 02:42:05.195 2024-02-21 02:42:05.195 1300 FEE 432618 20502 6017514 2024-02-21 02:42:05.195 2024-02-21 02:42:05.195 11700 TIP 432618 21361 6017547 2024-02-21 02:53:07.295 2024-02-21 02:53:07.295 2100 FEE 433312 5003 6017548 2024-02-21 02:53:07.295 2024-02-21 02:53:07.295 18900 TIP 433312 16684 6017568 2024-02-21 03:01:19.907 2024-02-21 03:01:19.907 400 FEE 433330 2513 6017569 2024-02-21 03:01:19.907 2024-02-21 03:01:19.907 3600 TIP 433330 8269 6017578 2024-02-21 03:05:53.018 2024-02-21 03:05:53.018 4000 FEE 433331 1493 6017579 2024-02-21 03:05:53.018 2024-02-21 03:05:53.018 36000 TIP 433331 19296 6017632 2024-02-21 03:20:56.831 2024-02-21 03:20:56.831 4000 FEE 433302 16653 6017633 2024-02-21 03:20:56.831 2024-02-21 03:20:56.831 36000 TIP 433302 21412 6017645 2024-02-21 03:21:50.459 2024-02-21 03:21:50.459 500 FEE 432379 1983 6017646 2024-02-21 03:21:50.459 2024-02-21 03:21:50.459 4500 TIP 432379 15556 6017652 2024-02-21 03:22:18.544 2024-02-21 03:22:18.544 500 FEE 432551 14906 6017653 2024-02-21 03:22:18.544 2024-02-21 03:22:18.544 4500 TIP 432551 14122 6017670 2024-02-21 03:24:07.814 2024-02-21 03:24:07.814 1000 FEE 432517 2780 6017671 2024-02-21 03:24:07.814 2024-02-21 03:24:07.814 9000 TIP 432517 9874 6017704 2024-02-21 03:30:22.849 2024-02-21 03:30:22.849 1000 FEE 432674 2000 6017705 2024-02-21 03:30:22.849 2024-02-21 03:30:22.849 9000 TIP 432674 17237 6017722 2024-02-21 03:31:21.194 2024-02-21 03:31:21.194 1000 FEE 433123 12072 6017723 2024-02-21 03:31:21.194 2024-02-21 03:31:21.194 9000 TIP 433123 713 6017736 2024-02-21 03:32:52.418 2024-02-21 03:32:52.418 1000 FEE 433104 11144 6017737 2024-02-21 03:32:52.418 2024-02-21 03:32:52.418 9000 TIP 433104 4395 6017742 2024-02-21 03:32:57.494 2024-02-21 03:32:57.494 1000 FEE 433038 18174 6017743 2024-02-21 03:32:57.494 2024-02-21 03:32:57.494 9000 TIP 433038 6578 6017757 2024-02-21 03:33:07.239 2024-02-21 03:33:07.239 1000 FEE 433024 20245 6017758 2024-02-21 03:33:07.239 2024-02-21 03:33:07.239 9000 TIP 433024 4502 6017777 2024-02-21 03:33:29.997 2024-02-21 03:33:29.997 1000 FEE 433003 19941 6017778 2024-02-21 03:33:29.997 2024-02-21 03:33:29.997 9000 TIP 433003 19987 6017788 2024-02-21 03:35:04.926 2024-02-21 03:35:04.926 1000 FEE 432987 7746 6017789 2024-02-21 03:35:04.926 2024-02-21 03:35:04.926 9000 TIP 432987 644 6017804 2024-02-21 03:35:14.282 2024-02-21 03:35:14.282 1000 FEE 432881 18270 6017805 2024-02-21 03:35:14.282 2024-02-21 03:35:14.282 9000 TIP 432881 8269 6017814 2024-02-21 03:35:19.234 2024-02-21 03:35:19.234 1000 FEE 432881 7668 6017815 2024-02-21 03:35:19.234 2024-02-21 03:35:19.234 9000 TIP 432881 13843 6017840 2024-02-21 03:38:25.426 2024-02-21 03:38:25.426 1000 FEE 432894 16653 6017841 2024-02-21 03:38:25.426 2024-02-21 03:38:25.426 9000 TIP 432894 21037 6017887 2024-02-21 03:47:03.166 2024-02-21 03:47:03.166 1000 FEE 432661 1495 6017888 2024-02-21 03:47:03.166 2024-02-21 03:47:03.166 9000 TIP 432661 685 6017901 2024-02-21 03:47:34.498 2024-02-21 03:47:34.498 1000 FEE 432635 711 6017902 2024-02-21 03:47:34.498 2024-02-21 03:47:34.498 9000 TIP 432635 17707 6017926 2024-02-21 03:50:58.666 2024-02-21 03:50:58.666 2100 FEE 433302 12346 6017927 2024-02-21 03:50:58.666 2024-02-21 03:50:58.666 18900 TIP 433302 15474 6017945 2024-02-21 03:52:28.692 2024-02-21 03:52:28.692 1000 FEE 433347 1319 6017952 2024-02-21 03:53:19.716 2024-02-21 03:53:19.716 500 FEE 432414 19235 6017953 2024-02-21 03:53:19.716 2024-02-21 03:53:19.716 4500 TIP 432414 1803 6017956 2024-02-21 03:53:35.174 2024-02-21 03:53:35.174 500 FEE 433088 11714 6017957 2024-02-21 03:53:35.174 2024-02-21 03:53:35.174 4500 TIP 433088 21591 6017962 2024-02-21 03:53:54.536 2024-02-21 03:53:54.536 500 FEE 433279 9494 6017963 2024-02-21 03:53:54.536 2024-02-21 03:53:54.536 4500 TIP 433279 18518 6017977 2024-02-21 03:55:15.69 2024-02-21 03:55:15.69 1000 FEE 433349 989 6018022 2024-02-21 04:08:22.014 2024-02-21 04:08:22.014 800 FEE 432920 2741 6018023 2024-02-21 04:08:22.014 2024-02-21 04:08:22.014 7200 TIP 432920 18372 6018042 2024-02-21 04:12:22.188 2024-02-21 04:12:22.188 800 FEE 433284 18265 6018043 2024-02-21 04:12:22.188 2024-02-21 04:12:22.188 7200 TIP 433284 14472 6018064 2024-02-21 04:20:03.416 2024-02-21 04:20:03.416 100 FEE 432899 708 6018065 2024-02-21 04:20:03.416 2024-02-21 04:20:03.416 900 TIP 432899 13798 6018075 2024-02-21 04:21:51.302 2024-02-21 04:21:51.302 1000 FEE 433356 19826 6018079 2024-02-21 04:23:52.407 2024-02-21 04:23:52.407 10000 FEE 432560 11328 6018080 2024-02-21 04:23:52.407 2024-02-21 04:23:52.407 90000 TIP 432560 20511 6018096 2024-02-21 04:31:19.144 2024-02-21 04:31:19.144 12800 FEE 432829 10591 6018097 2024-02-21 04:31:19.144 2024-02-21 04:31:19.144 115200 TIP 432829 17171 6018105 2024-02-21 04:34:31.441 2024-02-21 04:34:31.441 1000 FEE 432982 16543 6018106 2024-02-21 04:34:31.441 2024-02-21 04:34:31.441 9000 TIP 432982 1145 6018107 2024-02-21 04:34:31.589 2024-02-21 04:34:31.589 1000 FEE 432982 12265 6018108 2024-02-21 04:34:31.589 2024-02-21 04:34:31.589 9000 TIP 432982 3683 6018160 2024-02-21 04:56:23.542 2024-02-21 04:56:23.542 1000 FEE 433066 12774 6018161 2024-02-21 04:56:23.542 2024-02-21 04:56:23.542 9000 TIP 433066 8729 6018164 2024-02-21 04:58:44.993 2024-02-21 04:58:44.993 2100 FEE 429803 14818 6018165 2024-02-21 04:58:44.993 2024-02-21 04:58:44.993 18900 TIP 429803 19841 6018170 2024-02-21 05:00:46.773 2024-02-21 05:00:46.773 2100 FEE 430854 8242 6018171 2024-02-21 05:00:46.773 2024-02-21 05:00:46.773 18900 TIP 430854 20264 6018177 2024-02-21 05:02:02.341 2024-02-21 05:02:02.341 1000 FEE 432674 16229 6018178 2024-02-21 05:02:02.341 2024-02-21 05:02:02.341 9000 TIP 432674 19533 6018237 2024-02-21 05:28:37.863 2024-02-21 05:28:37.863 9000 FEE 433323 19777 6018238 2024-02-21 05:28:37.863 2024-02-21 05:28:37.863 81000 TIP 433323 671 6018243 2024-02-21 05:29:18.572 2024-02-21 05:29:18.572 2100 FEE 433344 16267 6017232 2024-02-21 01:56:43.017 2024-02-21 01:56:43.017 2700 FEE 433114 13042 6017233 2024-02-21 01:56:43.017 2024-02-21 01:56:43.017 24300 TIP 433114 13361 6017245 2024-02-21 02:00:02.621 2024-02-21 02:00:02.621 1000 STREAM 141924 19541 6017259 2024-02-21 02:02:42.612 2024-02-21 02:02:42.612 900 FEE 433282 20706 6017260 2024-02-21 02:02:42.612 2024-02-21 02:02:42.612 8100 TIP 433282 2329 6017261 2024-02-21 02:02:43.149 2024-02-21 02:02:43.149 9000 FEE 433282 15510 6017262 2024-02-21 02:02:43.149 2024-02-21 02:02:43.149 81000 TIP 433282 1632 6017267 2024-02-21 02:03:01.379 2024-02-21 02:03:01.379 9000 FEE 433302 21062 6017268 2024-02-21 02:03:01.379 2024-02-21 02:03:01.379 81000 TIP 433302 20713 6017281 2024-02-21 02:05:02.597 2024-02-21 02:05:02.597 1000 STREAM 141924 1489 6017284 2024-02-21 02:05:39.789 2024-02-21 02:05:39.789 100000 FEE 433303 9916 6017292 2024-02-21 02:06:15.941 2024-02-21 02:06:15.941 7700 FEE 433302 11938 6017293 2024-02-21 02:06:15.941 2024-02-21 02:06:15.941 69300 TIP 433302 10554 6017313 2024-02-21 02:06:40.659 2024-02-21 02:06:40.659 2100 FEE 433297 14308 6017314 2024-02-21 02:06:40.659 2024-02-21 02:06:40.659 18900 TIP 433297 17817 6017330 2024-02-21 02:09:01.972 2024-02-21 02:09:01.972 1300 FEE 429107 10638 6017331 2024-02-21 02:09:01.972 2024-02-21 02:09:01.972 11700 TIP 429107 768 6017335 2024-02-21 02:09:15.289 2024-02-21 02:09:15.289 2100 FEE 433302 16670 6017336 2024-02-21 02:09:15.289 2024-02-21 02:09:15.289 18900 TIP 433302 18507 6017344 2024-02-21 02:09:50.378 2024-02-21 02:09:50.378 1300 FEE 428873 17570 6017345 2024-02-21 02:09:50.378 2024-02-21 02:09:50.378 11700 TIP 428873 628 6017350 2024-02-21 02:10:02.237 2024-02-21 02:10:02.237 1000 FEE 433133 1631 6017351 2024-02-21 02:10:02.237 2024-02-21 02:10:02.237 9000 TIP 433133 21178 6017353 2024-02-21 02:11:02.589 2024-02-21 02:11:02.589 1000 STREAM 141924 14015 6017360 2024-02-21 02:13:01.087 2024-02-21 02:13:01.087 2100 FEE 433217 15491 6017361 2024-02-21 02:13:01.087 2024-02-21 02:13:01.087 18900 TIP 433217 12768 6017379 2024-02-21 02:13:13.132 2024-02-21 02:13:13.132 2100 FEE 432889 20108 6017380 2024-02-21 02:13:13.132 2024-02-21 02:13:13.132 18900 TIP 432889 672 6017391 2024-02-21 02:13:17.248 2024-02-21 02:13:17.248 2100 FEE 432977 11999 6017392 2024-02-21 02:13:17.248 2024-02-21 02:13:17.248 18900 TIP 432977 18664 6017397 2024-02-21 02:13:19.777 2024-02-21 02:13:19.777 2100 FEE 432913 14657 6017398 2024-02-21 02:13:19.777 2024-02-21 02:13:19.777 18900 TIP 432913 5828 6017407 2024-02-21 02:15:27.845 2024-02-21 02:15:27.845 1100 FEE 432113 14381 6017408 2024-02-21 02:15:27.845 2024-02-21 02:15:27.845 9900 TIP 432113 1571 6017417 2024-02-21 02:15:29 2024-02-21 02:15:29 1100 FEE 432560 20687 6017418 2024-02-21 02:15:29 2024-02-21 02:15:29 9900 TIP 432560 20680 6017419 2024-02-21 02:15:29.199 2024-02-21 02:15:29.199 1100 FEE 432560 13378 6017420 2024-02-21 02:15:29.199 2024-02-21 02:15:29.199 9900 TIP 432560 11263 6017434 2024-02-21 02:17:39.301 2024-02-21 02:17:39.301 100000 FEE 433314 16966 6017437 2024-02-21 02:19:27.855 2024-02-21 02:19:27.855 7700 FEE 433155 1162 6017438 2024-02-21 02:19:27.855 2024-02-21 02:19:27.855 69300 TIP 433155 16929 6017444 2024-02-21 02:21:02.636 2024-02-21 02:21:02.636 1000 STREAM 141924 3342 6017447 2024-02-21 02:23:23.418 2024-02-21 02:23:23.418 1300 FEE 432398 9167 6017448 2024-02-21 02:23:23.418 2024-02-21 02:23:23.418 11700 TIP 432398 2098 6017461 2024-02-21 02:30:02.684 2024-02-21 02:30:02.684 1000 STREAM 141924 20599 6017462 2024-02-21 02:31:02.706 2024-02-21 02:31:02.706 1000 STREAM 141924 18731 6017485 2024-02-21 02:37:20.958 2024-02-21 02:37:20.958 1000 FEE 433226 16194 6017486 2024-02-21 02:37:20.958 2024-02-21 02:37:20.958 9000 TIP 433226 1198 6017499 2024-02-21 02:39:05.873 2024-02-21 02:39:05.873 1000 FEE 433321 2437 6017501 2024-02-21 02:39:44.206 2024-02-21 02:39:44.206 8300 FEE 433302 19652 6017502 2024-02-21 02:39:44.206 2024-02-21 02:39:44.206 74700 TIP 433302 956 6017517 2024-02-21 02:42:09.516 2024-02-21 02:42:09.516 1300 FEE 432618 696 6017518 2024-02-21 02:42:09.516 2024-02-21 02:42:09.516 11700 TIP 432618 4692 6017611 2024-02-21 03:18:19.472 2024-02-21 03:18:19.472 500 FEE 432920 4984 6017612 2024-02-21 03:18:19.472 2024-02-21 03:18:19.472 4500 TIP 432920 1983 6017621 2024-02-21 03:18:22.518 2024-02-21 03:18:22.518 500 FEE 432889 2293 6017622 2024-02-21 03:18:22.518 2024-02-21 03:18:22.518 4500 TIP 432889 19911 6017627 2024-02-21 03:20:46.395 2024-02-21 03:20:46.395 500 FEE 432844 21242 6017628 2024-02-21 03:20:46.395 2024-02-21 03:20:46.395 4500 TIP 432844 21482 6017629 2024-02-21 03:20:46.627 2024-02-21 03:20:46.627 500 FEE 432844 16848 6017630 2024-02-21 03:20:46.627 2024-02-21 03:20:46.627 4500 TIP 432844 1120 6017668 2024-02-21 03:24:05.766 2024-02-21 03:24:05.766 1000 FEE 432920 20560 6017669 2024-02-21 03:24:05.766 2024-02-21 03:24:05.766 9000 TIP 432920 20623 6017673 2024-02-21 03:24:56.256 2024-02-21 03:24:56.256 1000 FEE 432576 1425 6017674 2024-02-21 03:24:56.256 2024-02-21 03:24:56.256 9000 TIP 432576 5806 6017683 2024-02-21 03:26:39.661 2024-02-21 03:26:39.661 1000 FEE 432414 10060 6017684 2024-02-21 03:26:39.661 2024-02-21 03:26:39.661 9000 TIP 432414 13517 6017692 2024-02-21 03:28:32.751 2024-02-21 03:28:32.751 10000 FEE 433304 21145 6017693 2024-02-21 03:28:32.751 2024-02-21 03:28:32.751 90000 TIP 433304 13249 6017710 2024-02-21 03:30:25.928 2024-02-21 03:30:25.928 1000 FEE 432957 718 6017711 2024-02-21 03:30:25.928 2024-02-21 03:30:25.928 9000 TIP 432957 11670 6017718 2024-02-21 03:30:51.503 2024-02-21 03:30:51.503 1000 FEE 433342 20717 6017734 2024-02-21 03:32:51.861 2024-02-21 03:32:51.861 1000 FEE 433104 20439 6017735 2024-02-21 03:32:51.861 2024-02-21 03:32:51.861 9000 TIP 433104 644 6017806 2024-02-21 03:35:14.742 2024-02-21 03:35:14.742 1000 FEE 432881 19995 6017807 2024-02-21 03:35:14.742 2024-02-21 03:35:14.742 9000 TIP 432881 1236 6017821 2024-02-21 03:36:34.896 2024-02-21 03:36:34.896 1000 FEE 432563 1060 6017822 2024-02-21 03:36:34.896 2024-02-21 03:36:34.896 9000 TIP 432563 17602 6017825 2024-02-21 03:36:37.319 2024-02-21 03:36:37.319 1000 FEE 432320 20990 6017826 2024-02-21 03:36:37.319 2024-02-21 03:36:37.319 9000 TIP 432320 21314 6017866 2024-02-21 03:44:32.971 2024-02-21 03:44:32.971 500 FEE 432517 21332 6017867 2024-02-21 03:44:32.971 2024-02-21 03:44:32.971 4500 TIP 432517 5171 6017889 2024-02-21 03:47:04.418 2024-02-21 03:47:04.418 1000 FEE 432889 21578 6017890 2024-02-21 03:47:04.418 2024-02-21 03:47:04.418 9000 TIP 432889 21369 6017891 2024-02-21 03:47:06.471 2024-02-21 03:47:06.471 1000 FEE 432320 8059 6017892 2024-02-21 03:47:06.471 2024-02-21 03:47:06.471 9000 TIP 432320 15103 6017918 2024-02-21 03:50:07.025 2024-02-21 03:50:07.025 1000 FEE 432913 21453 6017919 2024-02-21 03:50:07.025 2024-02-21 03:50:07.025 9000 TIP 432913 13217 6017949 2024-02-21 03:53:10.319 2024-02-21 03:53:10.319 0 FEE 433347 17722 6017958 2024-02-21 03:53:41.662 2024-02-21 03:53:41.662 500 FEE 432763 2780 6017959 2024-02-21 03:53:41.662 2024-02-21 03:53:41.662 4500 TIP 432763 1272 6017978 2024-02-21 03:56:03.1 2024-02-21 03:56:03.1 1000 STREAM 141924 12072 6017984 2024-02-21 03:57:51.679 2024-02-21 03:57:51.679 0 FEE 433349 20080 6017994 2024-02-21 03:59:18.669 2024-02-21 03:59:18.669 0 FEE 433349 19795 6017995 2024-02-21 03:59:37.237 2024-02-21 03:59:37.237 100000 FEE 430795 1784 6017996 2024-02-21 03:59:37.237 2024-02-21 03:59:37.237 900000 TIP 430795 6393 6017997 2024-02-21 04:00:03.109 2024-02-21 04:00:03.109 1000 STREAM 141924 13547 6018011 2024-02-21 04:05:23.797 2024-02-21 04:05:23.797 1000 FEE 433323 2101 6018012 2024-02-21 04:05:23.797 2024-02-21 04:05:23.797 9000 TIP 433323 18704 6018013 2024-02-21 04:06:03.104 2024-02-21 04:06:03.104 1000 STREAM 141924 704 6018024 2024-02-21 04:09:03.117 2024-02-21 04:09:03.117 1000 STREAM 141924 4802 6018034 2024-02-21 04:11:03.125 2024-02-21 04:11:03.125 1000 STREAM 141924 17030 6018046 2024-02-21 04:14:03.132 2024-02-21 04:14:03.132 1000 STREAM 141924 21349 6018050 2024-02-21 04:16:03.146 2024-02-21 04:16:03.146 1000 STREAM 141924 20326 6018066 2024-02-21 04:20:03.574 2024-02-21 04:20:03.574 100 FEE 432899 19352 6018067 2024-02-21 04:20:03.574 2024-02-21 04:20:03.574 900 TIP 432899 21233 6018081 2024-02-21 04:23:55.905 2024-02-21 04:23:55.905 800 FEE 432957 896 6017299 2024-02-21 02:06:16.39 2024-02-21 02:06:16.39 69300 TIP 433302 20674 6017306 2024-02-21 02:06:17.112 2024-02-21 02:06:17.112 7700 FEE 433302 17046 6017307 2024-02-21 02:06:17.112 2024-02-21 02:06:17.112 69300 TIP 433302 13767 6017311 2024-02-21 02:06:29.748 2024-02-21 02:06:29.748 200 FEE 433176 8985 6017312 2024-02-21 02:06:29.748 2024-02-21 02:06:29.748 1800 TIP 433176 16834 6017324 2024-02-21 02:08:07.276 2024-02-21 02:08:07.276 77000 DONT_LIKE_THIS 433157 21320 6017337 2024-02-21 02:09:23.656 2024-02-21 02:09:23.656 2100 FEE 433244 12356 6017338 2024-02-21 02:09:23.656 2024-02-21 02:09:23.656 18900 TIP 433244 15119 6017371 2024-02-21 02:13:07.51 2024-02-21 02:13:07.51 2100 FEE 432957 21090 6017372 2024-02-21 02:13:07.51 2024-02-21 02:13:07.51 18900 TIP 432957 9758 6017389 2024-02-21 02:13:16.751 2024-02-21 02:13:16.751 2100 FEE 432517 19663 6017390 2024-02-21 02:13:16.751 2024-02-21 02:13:16.751 18900 TIP 432517 21343 6017399 2024-02-21 02:13:20.706 2024-02-21 02:13:20.706 2100 FEE 432736 7986 6017400 2024-02-21 02:13:20.706 2024-02-21 02:13:20.706 18900 TIP 432736 16753 6017421 2024-02-21 02:15:29.331 2024-02-21 02:15:29.331 1100 FEE 432560 19640 6017422 2024-02-21 02:15:29.331 2024-02-21 02:15:29.331 9900 TIP 432560 1738 6017432 2024-02-21 02:17:14.291 2024-02-21 02:17:14.291 4200 FEE 433302 20614 6017433 2024-02-21 02:17:14.291 2024-02-21 02:17:14.291 37800 TIP 433302 11789 6017440 2024-02-21 02:20:54.55 2024-02-21 02:20:54.55 400 FEE 433290 17953 6017441 2024-02-21 02:20:54.55 2024-02-21 02:20:54.55 3600 TIP 433290 1425 6017442 2024-02-21 02:20:55.262 2024-02-21 02:20:55.262 400 FEE 433293 17147 6017443 2024-02-21 02:20:55.262 2024-02-21 02:20:55.262 3600 TIP 433293 18380 6017471 2024-02-21 02:35:08.113 2024-02-21 02:35:08.113 1000 FEE 433217 15266 6017472 2024-02-21 02:35:08.113 2024-02-21 02:35:08.113 9000 TIP 433217 831 6017500 2024-02-21 02:39:38.606 2024-02-21 02:39:38.606 15000 FEE 433322 9339 6017507 2024-02-21 02:42:01.543 2024-02-21 02:42:01.543 1000 FEE 433323 19952 6017521 2024-02-21 02:42:55.672 2024-02-21 02:42:55.672 800 FEE 433302 2703 6017522 2024-02-21 02:42:55.672 2024-02-21 02:42:55.672 7200 TIP 433302 21523 6017523 2024-02-21 02:42:55.847 2024-02-21 02:42:55.847 800 FEE 433302 2528 6017524 2024-02-21 02:42:55.847 2024-02-21 02:42:55.847 7200 TIP 433302 18932 6017526 2024-02-21 02:43:18.248 2024-02-21 02:43:18.248 10000 FEE 433047 10409 6017527 2024-02-21 02:43:18.248 2024-02-21 02:43:18.248 90000 TIP 433047 11314 6017533 2024-02-21 02:45:47.256 2024-02-21 02:45:47.256 1000 FEE 433325 14449 6017561 2024-02-21 02:59:39.649 2024-02-21 02:59:39.649 1000 FEE 433330 3461 6017563 2024-02-21 03:00:12.518 2024-02-21 03:00:12.518 2100 FEE 433126 20509 6017564 2024-02-21 03:00:12.518 2024-02-21 03:00:12.518 18900 TIP 433126 11967 6017589 2024-02-21 03:12:46.855 2024-02-21 03:12:46.855 1000 FEE 433336 18615 6017605 2024-02-21 03:18:15.692 2024-02-21 03:18:15.692 500 FEE 432674 12744 6017606 2024-02-21 03:18:15.692 2024-02-21 03:18:15.692 4500 TIP 432674 17321 6017637 2024-02-21 03:21:07.288 2024-02-21 03:21:07.288 500 FEE 432844 21239 6017638 2024-02-21 03:21:07.288 2024-02-21 03:21:07.288 4500 TIP 432844 19033 6017716 2024-02-21 03:30:30.5 2024-02-21 03:30:30.5 800 FEE 433302 21457 6017717 2024-02-21 03:30:30.5 2024-02-21 03:30:30.5 7200 TIP 433302 3304 6017724 2024-02-21 03:31:41.133 2024-02-21 03:31:41.133 1000 FEE 432576 20706 6017725 2024-02-21 03:31:41.133 2024-02-21 03:31:41.133 9000 TIP 432576 8841 6017728 2024-02-21 03:32:02.361 2024-02-21 03:32:02.361 1000 FEE 432414 7827 6017729 2024-02-21 03:32:02.361 2024-02-21 03:32:02.361 9000 TIP 432414 11648 6017746 2024-02-21 03:32:58.971 2024-02-21 03:32:58.971 1000 FEE 433038 2460 6017747 2024-02-21 03:32:58.971 2024-02-21 03:32:58.971 9000 TIP 433038 19910 6017755 2024-02-21 03:33:06.615 2024-02-21 03:33:06.615 1000 FEE 433024 15239 6017756 2024-02-21 03:33:06.615 2024-02-21 03:33:06.615 9000 TIP 433024 19043 6017761 2024-02-21 03:33:10.545 2024-02-21 03:33:10.545 1000 FEE 433015 14152 6017762 2024-02-21 03:33:10.545 2024-02-21 03:33:10.545 9000 TIP 433015 1726 6017769 2024-02-21 03:33:17.063 2024-02-21 03:33:17.063 1000 FEE 433015 5519 6017770 2024-02-21 03:33:17.063 2024-02-21 03:33:17.063 9000 TIP 433015 20683 6017773 2024-02-21 03:33:28.735 2024-02-21 03:33:28.735 1000 FEE 433003 18828 6017774 2024-02-21 03:33:28.735 2024-02-21 03:33:28.735 9000 TIP 433003 11967 6017796 2024-02-21 03:35:08.984 2024-02-21 03:35:08.984 1000 FEE 432890 21036 6017797 2024-02-21 03:35:08.984 2024-02-21 03:35:08.984 9000 TIP 432890 21344 6017800 2024-02-21 03:35:10.07 2024-02-21 03:35:10.07 1000 FEE 432890 3213 6017801 2024-02-21 03:35:10.07 2024-02-21 03:35:10.07 9000 TIP 432890 3304 6017808 2024-02-21 03:35:15.535 2024-02-21 03:35:15.535 1000 FEE 432881 18735 6017809 2024-02-21 03:35:15.535 2024-02-21 03:35:15.535 9000 TIP 432881 20424 6017810 2024-02-21 03:35:16.218 2024-02-21 03:35:16.218 1000 FEE 432881 20059 6017811 2024-02-21 03:35:16.218 2024-02-21 03:35:16.218 9000 TIP 432881 18291 6017812 2024-02-21 03:35:16.936 2024-02-21 03:35:16.936 1000 FEE 432881 16353 6017813 2024-02-21 03:35:16.936 2024-02-21 03:35:16.936 9000 TIP 432881 15094 6017864 2024-02-21 03:44:32.256 2024-02-21 03:44:32.256 500 FEE 432311 18817 6017865 2024-02-21 03:44:32.256 2024-02-21 03:44:32.256 4500 TIP 432311 759 6017868 2024-02-21 03:44:33.667 2024-02-21 03:44:33.667 500 FEE 432563 18830 6017869 2024-02-21 03:44:33.667 2024-02-21 03:44:33.667 4500 TIP 432563 9 6017875 2024-02-21 03:45:58.883 2024-02-21 03:45:58.883 100 FEE 433302 14381 6017876 2024-02-21 03:45:58.883 2024-02-21 03:45:58.883 900 TIP 433302 5646 6017882 2024-02-21 03:47:01.042 2024-02-21 03:47:01.042 1000 FEE 432563 651 6017883 2024-02-21 03:47:01.042 2024-02-21 03:47:01.042 9000 TIP 432563 9036 6017899 2024-02-21 03:47:31.138 2024-02-21 03:47:31.138 1000 FEE 432379 700 6017900 2024-02-21 03:47:31.138 2024-02-21 03:47:31.138 9000 TIP 432379 18635 6017928 2024-02-21 03:51:02.478 2024-02-21 03:51:02.478 1000 FEE 432379 15938 6017929 2024-02-21 03:51:02.478 2024-02-21 03:51:02.478 9000 TIP 432379 18989 6017931 2024-02-21 03:51:03.794 2024-02-21 03:51:03.794 1000 FEE 432635 19007 6017932 2024-02-21 03:51:03.794 2024-02-21 03:51:03.794 9000 TIP 432635 14168 6017944 2024-02-21 03:52:25.432 2024-02-21 03:52:25.432 1000 FEE 433346 21070 6017954 2024-02-21 03:53:27.131 2024-02-21 03:53:27.131 500 FEE 432943 5597 6017955 2024-02-21 03:53:27.131 2024-02-21 03:53:27.131 4500 TIP 432943 629 6017969 2024-02-21 03:54:36.808 2024-02-21 03:54:36.808 500 FEE 433086 11165 6017970 2024-02-21 03:54:36.808 2024-02-21 03:54:36.808 4500 TIP 433086 704 6017975 2024-02-21 03:55:07.964 2024-02-21 03:55:07.964 2100 FEE 433217 21157 6017976 2024-02-21 03:55:07.964 2024-02-21 03:55:07.964 18900 TIP 433217 3656 6017999 2024-02-21 04:01:33.069 2024-02-21 04:01:33.069 1000 FEE 433350 2010 6018005 2024-02-21 04:04:39.699 2024-02-21 04:04:39.699 1000 FEE 433105 5522 6018006 2024-02-21 04:04:39.699 2024-02-21 04:04:39.699 9000 TIP 433105 12566 6018020 2024-02-21 04:08:21.831 2024-02-21 04:08:21.831 800 FEE 432920 11819 6018021 2024-02-21 04:08:21.831 2024-02-21 04:08:21.831 7200 TIP 432920 21541 6018030 2024-02-21 04:10:50.637 2024-02-21 04:10:50.637 2300 FEE 433333 671 6018031 2024-02-21 04:10:50.637 2024-02-21 04:10:50.637 20700 TIP 433333 16638 6018055 2024-02-21 04:17:57.672 2024-02-21 04:17:57.672 1000 FEE 433354 20157 6018070 2024-02-21 04:20:04.096 2024-02-21 04:20:04.096 100 FEE 432899 12744 6018071 2024-02-21 04:20:04.096 2024-02-21 04:20:04.096 900 TIP 432899 17953 6018078 2024-02-21 04:23:44.288 2024-02-21 04:23:44.288 1000 FEE 433357 20606 6018104 2024-02-21 04:34:04.924 2024-02-21 04:34:04.924 0 FEE 433362 18769 6018118 2024-02-21 04:37:39.889 2024-02-21 04:37:39.889 12800 FEE 419298 16194 6018119 2024-02-21 04:37:39.889 2024-02-21 04:37:39.889 115200 TIP 419298 19198 6018156 2024-02-21 04:54:48.229 2024-02-21 04:54:48.229 1000 FEE 433045 12102 6018157 2024-02-21 04:54:48.229 2024-02-21 04:54:48.229 9000 TIP 433045 1173 6018173 2024-02-21 05:01:14.145 2024-02-21 05:01:14.145 800 FEE 433344 10668 6018174 2024-02-21 05:01:14.145 2024-02-21 05:01:14.145 7200 TIP 433344 12921 6018218 2024-02-21 05:20:30.725 2024-02-21 05:20:30.725 2100 FEE 433370 7395 6017327 2024-02-21 02:08:39.479 2024-02-21 02:08:39.479 1000 FEE 433306 15941 6017340 2024-02-21 02:09:48.845 2024-02-21 02:09:48.845 1300 FEE 428873 5520 6017341 2024-02-21 02:09:48.845 2024-02-21 02:09:48.845 11700 TIP 428873 21357 6017373 2024-02-21 02:13:11.269 2024-02-21 02:13:11.269 2100 FEE 432674 18243 6017374 2024-02-21 02:13:11.269 2024-02-21 02:13:11.269 18900 TIP 432674 18637 6017383 2024-02-21 02:13:14.205 2024-02-21 02:13:14.205 2100 FEE 433049 679 6017384 2024-02-21 02:13:14.205 2024-02-21 02:13:14.205 18900 TIP 433049 21405 6017387 2024-02-21 02:13:16.111 2024-02-21 02:13:16.111 2100 FEE 432661 21395 6017388 2024-02-21 02:13:16.111 2024-02-21 02:13:16.111 18900 TIP 432661 15732 6017403 2024-02-21 02:15:03.712 2024-02-21 02:15:03.712 1000 STREAM 141924 20636 6017430 2024-02-21 02:16:29.61 2024-02-21 02:16:29.61 10000 FEE 433313 16948 6017465 2024-02-21 02:33:51.395 2024-02-21 02:33:51.395 1000 FEE 433302 15560 6017466 2024-02-21 02:33:51.395 2024-02-21 02:33:51.395 9000 TIP 433302 20663 6017469 2024-02-21 02:34:32.543 2024-02-21 02:34:32.543 1000 FEE 433318 2322 6017474 2024-02-21 02:35:33.824 2024-02-21 02:35:33.824 1000 FEE 433244 19469 6017475 2024-02-21 02:35:33.824 2024-02-21 02:35:33.824 9000 TIP 433244 9364 6017482 2024-02-21 02:36:54.287 2024-02-21 02:36:54.287 1000 FEE 433239 8985 6017483 2024-02-21 02:36:54.287 2024-02-21 02:36:54.287 9000 TIP 433239 19281 6017490 2024-02-21 02:38:54.389 2024-02-21 02:38:54.389 2300 FEE 433317 2537 6017491 2024-02-21 02:38:54.389 2024-02-21 02:38:54.389 20700 TIP 433317 19843 6017496 2024-02-21 02:38:54.772 2024-02-21 02:38:54.772 2300 FEE 433317 19031 6017497 2024-02-21 02:38:54.772 2024-02-21 02:38:54.772 20700 TIP 433317 4487 6017505 2024-02-21 02:41:27.375 2024-02-21 02:41:27.375 2100 FEE 433287 1000 6017506 2024-02-21 02:41:27.375 2024-02-21 02:41:27.375 18900 TIP 433287 5725 6017559 2024-02-21 02:58:53.823 2024-02-21 02:58:53.823 10000 FEE 433329 17984 6017574 2024-02-21 03:04:52.685 2024-02-21 03:04:52.685 1000 FEE 433333 18232 6017576 2024-02-21 03:05:30.967 2024-02-21 03:05:30.967 10000 FEE 433259 15119 6017577 2024-02-21 03:05:30.967 2024-02-21 03:05:30.967 90000 TIP 433259 627 6017598 2024-02-21 03:17:57.376 2024-02-21 03:17:57.376 7100 FEE 433278 18774 6017599 2024-02-21 03:17:57.376 2024-02-21 03:17:57.376 63900 TIP 433278 17064 6017619 2024-02-21 03:18:21.977 2024-02-21 03:18:21.977 500 FEE 432661 8037 6017620 2024-02-21 03:18:21.977 2024-02-21 03:18:21.977 4500 TIP 432661 14663 6017643 2024-02-21 03:21:49.634 2024-02-21 03:21:49.634 500 FEE 432635 17523 6017644 2024-02-21 03:21:49.634 2024-02-21 03:21:49.634 4500 TIP 432635 19622 6017656 2024-02-21 03:22:23.955 2024-02-21 03:22:23.955 500 FEE 432899 1584 6017657 2024-02-21 03:22:23.955 2024-02-21 03:22:23.955 4500 TIP 432899 19494 6017666 2024-02-21 03:24:04.953 2024-02-21 03:24:04.953 1000 FEE 432311 16954 6017667 2024-02-21 03:24:04.953 2024-02-21 03:24:04.953 9000 TIP 432311 21393 6017676 2024-02-21 03:25:25.401 2024-02-21 03:25:25.401 1000 FEE 433171 6533 6017677 2024-02-21 03:25:25.401 2024-02-21 03:25:25.401 9000 TIP 433171 21247 6017678 2024-02-21 03:25:34.461 2024-02-21 03:25:34.461 1000 FEE 432776 11430 6017679 2024-02-21 03:25:34.461 2024-02-21 03:25:34.461 9000 TIP 432776 18494 6017699 2024-02-21 03:29:23.672 2024-02-21 03:29:23.672 1000 FEE 433031 8173 6017700 2024-02-21 03:29:23.672 2024-02-21 03:29:23.672 9000 TIP 433031 16282 6017708 2024-02-21 03:30:24.989 2024-02-21 03:30:24.989 1000 FEE 432517 18581 6017709 2024-02-21 03:30:24.989 2024-02-21 03:30:24.989 9000 TIP 432517 7097 6017744 2024-02-21 03:32:58.322 2024-02-21 03:32:58.322 1000 FEE 433038 6777 6017745 2024-02-21 03:32:58.322 2024-02-21 03:32:58.322 9000 TIP 433038 627 6017748 2024-02-21 03:32:59.533 2024-02-21 03:32:59.533 1000 FEE 433038 685 6017749 2024-02-21 03:32:59.533 2024-02-21 03:32:59.533 9000 TIP 433038 12561 6017759 2024-02-21 03:33:07.849 2024-02-21 03:33:07.849 1000 FEE 433024 12158 6017760 2024-02-21 03:33:07.849 2024-02-21 03:33:07.849 9000 TIP 433024 7809 6017767 2024-02-21 03:33:15.723 2024-02-21 03:33:15.723 1000 FEE 433015 636 6017768 2024-02-21 03:33:15.723 2024-02-21 03:33:15.723 9000 TIP 433015 20603 6017784 2024-02-21 03:35:03.653 2024-02-21 03:35:03.653 1000 FEE 432987 7989 6017785 2024-02-21 03:35:03.653 2024-02-21 03:35:03.653 9000 TIP 432987 1130 6017786 2024-02-21 03:35:04.286 2024-02-21 03:35:04.286 1000 FEE 432987 886 6017787 2024-02-21 03:35:04.286 2024-02-21 03:35:04.286 9000 TIP 432987 8945 6017817 2024-02-21 03:36:32.707 2024-02-21 03:36:32.707 1000 FEE 432873 19613 6017818 2024-02-21 03:36:32.707 2024-02-21 03:36:32.707 9000 TIP 432873 17568 6017823 2024-02-21 03:36:35.992 2024-02-21 03:36:35.992 1000 FEE 432661 19096 6017824 2024-02-21 03:36:35.992 2024-02-21 03:36:35.992 9000 TIP 432661 17162 6017836 2024-02-21 03:38:10.947 2024-02-21 03:38:10.947 1000 FEE 432551 4391 6017837 2024-02-21 03:38:10.947 2024-02-21 03:38:10.947 9000 TIP 432551 19660 6017838 2024-02-21 03:38:17.167 2024-02-21 03:38:17.167 1000 FEE 433171 18114 6017839 2024-02-21 03:38:17.167 2024-02-21 03:38:17.167 9000 TIP 433171 14657 6017873 2024-02-21 03:45:57.997 2024-02-21 03:45:57.997 100 FEE 433302 16942 6017874 2024-02-21 03:45:57.997 2024-02-21 03:45:57.997 900 TIP 433302 1845 6017935 2024-02-21 03:51:18.973 2024-02-21 03:51:18.973 1000 FEE 432894 13399 6017936 2024-02-21 03:51:18.973 2024-02-21 03:51:18.973 9000 TIP 432894 21501 6017960 2024-02-21 03:53:47.681 2024-02-21 03:53:47.681 500 FEE 433116 11018 6017961 2024-02-21 03:53:47.681 2024-02-21 03:53:47.681 4500 TIP 433116 11158 6017964 2024-02-21 03:54:01.979 2024-02-21 03:54:01.979 10000 FEE 433217 16638 6017965 2024-02-21 03:54:01.979 2024-02-21 03:54:01.979 90000 TIP 433217 20187 6017990 2024-02-21 03:59:08.292 2024-02-21 03:59:08.292 1000 FEE 433344 1006 6017991 2024-02-21 03:59:08.292 2024-02-21 03:59:08.292 9000 TIP 433344 5759 6018009 2024-02-21 04:05:13.204 2024-02-21 04:05:13.204 1000 FEE 433300 616 6018010 2024-02-21 04:05:13.204 2024-02-21 04:05:13.204 9000 TIP 433300 3353 6018016 2024-02-21 04:08:21.497 2024-02-21 04:08:21.497 800 FEE 432920 13599 6018017 2024-02-21 04:08:21.497 2024-02-21 04:08:21.497 7200 TIP 432920 9969 6018027 2024-02-21 04:09:56.83 2024-02-21 04:09:56.83 21100 FEE 433344 652 6018028 2024-02-21 04:09:56.83 2024-02-21 04:09:56.83 189900 TIP 433344 1261 6018045 2024-02-21 04:13:45.85 2024-02-21 04:13:45.85 1000 FEE 433352 5427 6018098 2024-02-21 04:31:46.03 2024-02-21 04:31:46.03 1000 FEE 433360 17976 6018111 2024-02-21 04:34:32.07 2024-02-21 04:34:32.07 1000 FEE 432982 19661 6018112 2024-02-21 04:34:32.07 2024-02-21 04:34:32.07 9000 TIP 432982 1705 6018113 2024-02-21 04:34:32.151 2024-02-21 04:34:32.151 1000 FEE 432982 20225 6018114 2024-02-21 04:34:32.151 2024-02-21 04:34:32.151 9000 TIP 432982 19018 6018146 2024-02-21 04:53:18.906 2024-02-21 04:53:18.906 800 FEE 433066 617 6018147 2024-02-21 04:53:18.906 2024-02-21 04:53:18.906 7200 TIP 433066 18679 6018264 2024-02-21 05:33:49.766 2024-02-21 05:33:49.766 1000 FEE 433364 21067 6018265 2024-02-21 05:33:49.766 2024-02-21 05:33:49.766 9000 TIP 433364 704 6018275 2024-02-21 05:34:20.617 2024-02-21 05:34:20.617 100 FEE 433330 2735 6018276 2024-02-21 05:34:20.617 2024-02-21 05:34:20.617 900 TIP 433330 19905 6018299 2024-02-21 05:35:17.439 2024-02-21 05:35:17.439 100 FEE 433248 14515 6018300 2024-02-21 05:35:17.439 2024-02-21 05:35:17.439 900 TIP 433248 21369 6018309 2024-02-21 05:36:56.512 2024-02-21 05:36:56.512 900 FEE 433357 2176 6018310 2024-02-21 05:36:56.512 2024-02-21 05:36:56.512 8100 TIP 433357 20084 6018332 2024-02-21 05:39:39.77 2024-02-21 05:39:39.77 1000 FEE 433381 919 6018339 2024-02-21 05:42:18.529 2024-02-21 05:42:18.529 1000 FEE 433384 1326 6018399 2024-02-21 05:54:53.696 2024-02-21 05:54:53.696 2100 FEE 433205 861 6018400 2024-02-21 05:54:53.696 2024-02-21 05:54:53.696 18900 TIP 433205 16282 6018434 2024-02-21 06:04:06.753 2024-02-21 06:04:06.753 7700 FEE 432247 17798 6018435 2024-02-21 06:04:06.753 2024-02-21 06:04:06.753 69300 TIP 432247 18528 6018454 2024-02-21 06:04:08.91 2024-02-21 06:04:08.91 7700 FEE 432247 20340 6018455 2024-02-21 06:04:08.91 2024-02-21 06:04:08.91 69300 TIP 432247 17522 6018481 2024-02-21 06:12:05.298 2024-02-21 06:12:05.298 2000 FEE 433391 16177 6017597 2024-02-21 03:17:55.438 2024-02-21 03:17:55.438 63900 TIP 433312 21371 6017603 2024-02-21 03:18:07.169 2024-02-21 03:18:07.169 7100 FEE 433318 13042 6017604 2024-02-21 03:18:07.169 2024-02-21 03:18:07.169 63900 TIP 433318 616 6017634 2024-02-21 03:20:57.071 2024-02-21 03:20:57.071 36000 FEE 433302 21247 6017635 2024-02-21 03:20:57.071 2024-02-21 03:20:57.071 324000 TIP 433302 5036 6017658 2024-02-21 03:22:37.239 2024-02-21 03:22:37.239 500 FEE 433114 4388 6017659 2024-02-21 03:22:37.239 2024-02-21 03:22:37.239 4500 TIP 433114 2293 6017664 2024-02-21 03:24:03.196 2024-02-21 03:24:03.196 1000 FEE 432873 8360 6017665 2024-02-21 03:24:03.196 2024-02-21 03:24:03.196 9000 TIP 432873 18837 6017685 2024-02-21 03:26:41.396 2024-02-21 03:26:41.396 800 FEE 433302 20157 6017686 2024-02-21 03:26:41.396 2024-02-21 03:26:41.396 7200 TIP 433302 15484 6017706 2024-02-21 03:30:23.919 2024-02-21 03:30:23.919 1000 FEE 432311 21271 6017707 2024-02-21 03:30:23.919 2024-02-21 03:30:23.919 9000 TIP 432311 2322 6017720 2024-02-21 03:31:09.162 2024-02-21 03:31:09.162 1000 FEE 433014 5308 6017721 2024-02-21 03:31:09.162 2024-02-21 03:31:09.162 9000 TIP 433014 5171 6017726 2024-02-21 03:31:51.151 2024-02-21 03:31:51.151 1000 FEE 432776 19613 6017727 2024-02-21 03:31:51.151 2024-02-21 03:31:51.151 9000 TIP 432776 17116 6017750 2024-02-21 03:33:02.027 2024-02-21 03:33:02.027 1000 FEE 433038 18219 6017751 2024-02-21 03:33:02.027 2024-02-21 03:33:02.027 9000 TIP 433038 18368 6017753 2024-02-21 03:33:05.444 2024-02-21 03:33:05.444 1000 FEE 433024 20108 6017754 2024-02-21 03:33:05.444 2024-02-21 03:33:05.444 9000 TIP 433024 19689 6017765 2024-02-21 03:33:11.913 2024-02-21 03:33:11.913 1000 FEE 433015 21048 6017766 2024-02-21 03:33:11.913 2024-02-21 03:33:11.913 9000 TIP 433015 2232 6017775 2024-02-21 03:33:29.332 2024-02-21 03:33:29.332 1000 FEE 433003 9992 6017776 2024-02-21 03:33:29.332 2024-02-21 03:33:29.332 9000 TIP 433003 17976 6017794 2024-02-21 03:35:08.304 2024-02-21 03:35:08.304 1000 FEE 432890 16769 6017795 2024-02-21 03:35:08.304 2024-02-21 03:35:08.304 9000 TIP 432890 17291 6017798 2024-02-21 03:35:09.473 2024-02-21 03:35:09.473 1000 FEE 432890 21520 6017799 2024-02-21 03:35:09.473 2024-02-21 03:35:09.473 9000 TIP 432890 21208 6017802 2024-02-21 03:35:10.605 2024-02-21 03:35:10.605 1000 FEE 432890 6526 6017803 2024-02-21 03:35:10.605 2024-02-21 03:35:10.605 9000 TIP 432890 12277 6017827 2024-02-21 03:37:02.171 2024-02-21 03:37:02.171 1000 FEE 432844 13782 6017828 2024-02-21 03:37:02.171 2024-02-21 03:37:02.171 9000 TIP 432844 1713 6017842 2024-02-21 03:38:40.588 2024-02-21 03:38:40.588 2100 FEE 433300 993 6017843 2024-02-21 03:38:40.588 2024-02-21 03:38:40.588 18900 TIP 433300 5775 6017852 2024-02-21 03:44:13.25 2024-02-21 03:44:13.25 500 FEE 433217 15243 6017853 2024-02-21 03:44:13.25 2024-02-21 03:44:13.25 4500 TIP 433217 8664 6017897 2024-02-21 03:47:25.828 2024-02-21 03:47:25.828 3000 FEE 433294 8242 6017898 2024-02-21 03:47:25.828 2024-02-21 03:47:25.828 27000 TIP 433294 20840 6017908 2024-02-21 03:48:51.445 2024-02-21 03:48:51.445 3000 FEE 433324 20412 6017909 2024-02-21 03:48:51.445 2024-02-21 03:48:51.445 27000 TIP 433324 20452 6017911 2024-02-21 03:49:05.039 2024-02-21 03:49:05.039 2100 FEE 433329 11621 6017912 2024-02-21 03:49:05.039 2024-02-21 03:49:05.039 18900 TIP 433329 3709 6017933 2024-02-21 03:51:11.554 2024-02-21 03:51:11.554 1000 FEE 433014 19864 6017934 2024-02-21 03:51:11.554 2024-02-21 03:51:11.554 9000 TIP 433014 17513 6017950 2024-02-21 03:53:15.545 2024-02-21 03:53:15.545 500 FEE 432894 1738 6017951 2024-02-21 03:53:15.545 2024-02-21 03:53:15.545 4500 TIP 432894 15337 6017986 2024-02-21 03:58:13.35 2024-02-21 03:58:13.35 0 FEE 433349 11862 6017987 2024-02-21 03:58:22.286 2024-02-21 03:58:22.286 0 FEE 433347 15196 6017989 2024-02-21 03:59:04.268 2024-02-21 03:59:04.268 0 FEE 433349 5519 6018003 2024-02-21 04:04:22.432 2024-02-21 04:04:22.432 1000 FEE 433014 769 6018004 2024-02-21 04:04:22.432 2024-02-21 04:04:22.432 9000 TIP 433014 1718 6018025 2024-02-21 04:09:49.962 2024-02-21 04:09:49.962 10000 FEE 433344 12736 6018026 2024-02-21 04:09:49.962 2024-02-21 04:09:49.962 90000 TIP 433344 16858 6018037 2024-02-21 04:11:20.658 2024-02-21 04:11:20.658 800 FEE 433028 2188 6018038 2024-02-21 04:11:20.658 2024-02-21 04:11:20.658 7200 TIP 433028 691 6018040 2024-02-21 04:12:22.001 2024-02-21 04:12:22.001 800 FEE 433284 15938 6018041 2024-02-21 04:12:22.001 2024-02-21 04:12:22.001 7200 TIP 433284 657 6018060 2024-02-21 04:20:00.708 2024-02-21 04:20:00.708 1000 FEE 433355 5112 6018068 2024-02-21 04:20:03.749 2024-02-21 04:20:03.749 100 FEE 432899 7827 6018069 2024-02-21 04:20:03.749 2024-02-21 04:20:03.749 900 TIP 432899 6229 6018099 2024-02-21 04:32:00.131 2024-02-21 04:32:00.131 512000 FEE 433361 14791 6018124 2024-02-21 04:39:56.575 2024-02-21 04:39:56.575 1000 FEE 433363 21339 6018127 2024-02-21 04:41:38.653 2024-02-21 04:41:38.653 21000 FEE 433364 5752 6018151 2024-02-21 04:54:06.515 2024-02-21 04:54:06.515 1000 FEE 433366 20504 6018200 2024-02-21 05:11:07.145 2024-02-21 05:11:07.145 2100 FEE 432551 4574 6018201 2024-02-21 05:11:07.145 2024-02-21 05:11:07.145 18900 TIP 432551 656 6018220 2024-02-21 05:20:32.961 2024-02-21 05:20:32.961 2100 FEE 433370 3377 6018221 2024-02-21 05:20:32.961 2024-02-21 05:20:32.961 18900 TIP 433370 19902 6018232 2024-02-21 05:28:36.261 2024-02-21 05:28:36.261 100 FEE 433323 20704 6018233 2024-02-21 05:28:36.261 2024-02-21 05:28:36.261 900 TIP 433323 17570 6018234 2024-02-21 05:28:36.589 2024-02-21 05:28:36.589 900 FEE 433323 1697 6018235 2024-02-21 05:28:36.589 2024-02-21 05:28:36.589 8100 TIP 433323 14280 6018240 2024-02-21 05:29:13.95 2024-02-21 05:29:13.95 1000 FEE 433374 20179 6018241 2024-02-21 05:29:16.059 2024-02-21 05:29:16.059 2100 FEE 433344 6164 6018242 2024-02-21 05:29:16.059 2024-02-21 05:29:16.059 18900 TIP 433344 622 6018248 2024-02-21 05:31:48.703 2024-02-21 05:31:48.703 1000 FEE 433376 19094 6018269 2024-02-21 05:34:06.327 2024-02-21 05:34:06.327 900 FEE 433366 5752 6018270 2024-02-21 05:34:06.327 2024-02-21 05:34:06.327 8100 TIP 433366 18209 6018279 2024-02-21 05:34:24.837 2024-02-21 05:34:24.837 100 FEE 433322 20108 6018280 2024-02-21 05:34:24.837 2024-02-21 05:34:24.837 900 TIP 433322 21063 6018283 2024-02-21 05:34:43.827 2024-02-21 05:34:43.827 100 FEE 433313 4574 6018284 2024-02-21 05:34:43.827 2024-02-21 05:34:43.827 900 TIP 433313 5961 6018287 2024-02-21 05:34:54.028 2024-02-21 05:34:54.028 100 FEE 433304 12562 6018288 2024-02-21 05:34:54.028 2024-02-21 05:34:54.028 900 TIP 433304 8380 6018293 2024-02-21 05:35:00.906 2024-02-21 05:35:00.906 1000 FEE 433378 19031 6018295 2024-02-21 05:35:04.858 2024-02-21 05:35:04.858 100 FEE 433281 21556 6018296 2024-02-21 05:35:04.858 2024-02-21 05:35:04.858 900 TIP 433281 2309 6018328 2024-02-21 05:38:02.156 2024-02-21 05:38:02.156 9000 FEE 432932 10979 6018329 2024-02-21 05:38:02.156 2024-02-21 05:38:02.156 81000 TIP 432932 18378 6018368 2024-02-21 05:51:13.975 2024-02-21 05:51:13.975 1000 FEE 432211 9167 6018369 2024-02-21 05:51:13.975 2024-02-21 05:51:13.975 9000 TIP 432211 15925 6018378 2024-02-21 05:52:22.504 2024-02-21 05:52:22.504 700 FEE 433391 19309 6018379 2024-02-21 05:52:22.504 2024-02-21 05:52:22.504 6300 TIP 433391 1465 6018388 2024-02-21 05:52:35.749 2024-02-21 05:52:35.749 1000 FEE 433394 9450 6018404 2024-02-21 05:55:55.274 2024-02-21 05:55:55.274 1000 FEE 433399 16230 6018407 2024-02-21 05:55:59.023 2024-02-21 05:55:59.023 2600 FEE 433373 16956 6018408 2024-02-21 05:55:59.023 2024-02-21 05:55:59.023 23400 TIP 433373 21248 6018432 2024-02-21 06:04:06.306 2024-02-21 06:04:06.306 7700 FEE 432247 20564 6018433 2024-02-21 06:04:06.306 2024-02-21 06:04:06.306 69300 TIP 432247 18601 6018438 2024-02-21 06:04:07.092 2024-02-21 06:04:07.092 7700 FEE 432247 20479 6018439 2024-02-21 06:04:07.092 2024-02-21 06:04:07.092 69300 TIP 432247 1039 6018442 2024-02-21 06:04:07.433 2024-02-21 06:04:07.433 7700 FEE 432247 658 6018443 2024-02-21 06:04:07.433 2024-02-21 06:04:07.433 69300 TIP 432247 12222 6018448 2024-02-21 06:04:07.958 2024-02-21 06:04:07.958 7700 FEE 432247 4225 6018449 2024-02-21 06:04:07.958 2024-02-21 06:04:07.958 69300 TIP 432247 15326 6018452 2024-02-21 06:04:08.322 2024-02-21 06:04:08.322 7700 FEE 432247 6798 6017924 2024-02-21 03:50:54.281 2024-02-21 03:50:54.281 1000 FEE 432844 7097 6017925 2024-02-21 03:50:54.281 2024-02-21 03:50:54.281 9000 TIP 432844 19446 6017967 2024-02-21 03:54:21.997 2024-02-21 03:54:21.997 500 FEE 433103 20963 6017968 2024-02-21 03:54:21.997 2024-02-21 03:54:21.997 4500 TIP 433103 836 6017973 2024-02-21 03:55:00.335 2024-02-21 03:55:00.335 1000 FEE 433348 10862 6017983 2024-02-21 03:57:49.774 2024-02-21 03:57:49.774 0 FEE 433347 987 6018007 2024-02-21 04:04:44.404 2024-02-21 04:04:44.404 1000 FEE 433351 18235 6018051 2024-02-21 04:16:11.301 2024-02-21 04:16:11.301 1000 FEE 433353 5590 6018101 2024-02-21 04:32:13.431 2024-02-21 04:32:13.431 1000 FEE 433362 19810 6018109 2024-02-21 04:34:31.895 2024-02-21 04:34:31.895 1000 FEE 432982 5565 6018110 2024-02-21 04:34:31.895 2024-02-21 04:34:31.895 9000 TIP 432982 2774 6018142 2024-02-21 04:53:06.869 2024-02-21 04:53:06.869 10000 FEE 433364 19795 6018143 2024-02-21 04:53:06.869 2024-02-21 04:53:06.869 90000 TIP 433364 6741 6018182 2024-02-21 05:02:06.467 2024-02-21 05:02:06.467 1000 FEE 432873 1596 6018183 2024-02-21 05:02:06.467 2024-02-21 05:02:06.467 9000 TIP 432873 12959 6018206 2024-02-21 05:14:59.126 2024-02-21 05:14:59.126 2100 FEE 431823 14503 6018207 2024-02-21 05:14:59.126 2024-02-21 05:14:59.126 18900 TIP 431823 1135 6018213 2024-02-21 05:18:18.932 2024-02-21 05:18:18.932 1700 FEE 433066 10611 6018214 2024-02-21 05:18:18.932 2024-02-21 05:18:18.932 15300 TIP 433066 21427 6018217 2024-02-21 05:20:26.807 2024-02-21 05:20:26.807 1000 FEE 433372 15088 6018277 2024-02-21 05:34:22.336 2024-02-21 05:34:22.336 900 FEE 433330 9332 6018278 2024-02-21 05:34:22.336 2024-02-21 05:34:22.336 8100 TIP 433330 8841 6018304 2024-02-21 05:35:52.71 2024-02-21 05:35:52.71 1000 FEE 433379 1769 6018322 2024-02-21 05:37:50.519 2024-02-21 05:37:50.519 9000 FEE 433039 9349 6018323 2024-02-21 05:37:50.519 2024-02-21 05:37:50.519 81000 TIP 433039 20555 6018337 2024-02-21 05:41:46.642 2024-02-21 05:41:46.642 0 FEE 433382 14074 6018345 2024-02-21 05:43:25.114 2024-02-21 05:43:25.114 1000 FEE 433385 7673 6018346 2024-02-21 05:43:25.114 2024-02-21 05:43:25.114 9000 TIP 433385 3979 6018351 2024-02-21 05:45:45.994 2024-02-21 05:45:45.994 1000 FEE 433387 9276 6018352 2024-02-21 05:45:45.994 2024-02-21 05:45:45.994 9000 TIP 433387 9362 6018354 2024-02-21 05:46:50.007 2024-02-21 05:46:50.007 800 FEE 433282 4048 6018355 2024-02-21 05:46:50.007 2024-02-21 05:46:50.007 7200 TIP 433282 2460 6018366 2024-02-21 05:51:01.21 2024-02-21 05:51:01.21 1000 FEE 433392 640 6018374 2024-02-21 05:52:22.07 2024-02-21 05:52:22.07 700 FEE 433391 10519 6018375 2024-02-21 05:52:22.07 2024-02-21 05:52:22.07 6300 TIP 433391 7847 6018394 2024-02-21 05:54:20.894 2024-02-21 05:54:20.894 1000 FEE 433396 1745 6018497 2024-02-21 06:14:25.218 2024-02-21 06:14:25.218 2000 FEE 433001 18945 6018498 2024-02-21 06:14:25.218 2024-02-21 06:14:25.218 18000 TIP 433001 640 6018526 2024-02-21 06:15:05.769 2024-02-21 06:15:05.769 2000 FEE 433373 18678 6018527 2024-02-21 06:15:05.769 2024-02-21 06:15:05.769 18000 TIP 433373 13042 6018577 2024-02-21 06:24:41.857 2024-02-21 06:24:41.857 1000 FEE 433123 20218 6018578 2024-02-21 06:24:41.857 2024-02-21 06:24:41.857 9000 TIP 433123 4102 6018588 2024-02-21 06:30:49.917 2024-02-21 06:30:49.917 1000 FEE 433410 21374 6018596 2024-02-21 06:33:06.01 2024-02-21 06:33:06.01 1000 FEE 433413 16706 6018620 2024-02-21 06:43:21.553 2024-02-21 06:43:21.553 5000 FEE 432899 12291 6018621 2024-02-21 06:43:21.553 2024-02-21 06:43:21.553 45000 TIP 432899 11523 6018622 2024-02-21 06:43:21.859 2024-02-21 06:43:21.859 5000 FEE 432899 15160 6018623 2024-02-21 06:43:21.859 2024-02-21 06:43:21.859 45000 TIP 432899 16948 6018624 2024-02-21 06:43:22.281 2024-02-21 06:43:22.281 5000 FEE 432899 2309 6018625 2024-02-21 06:43:22.281 2024-02-21 06:43:22.281 45000 TIP 432899 9362 6018641 2024-02-21 06:49:44.477 2024-02-21 06:49:44.477 1000 FEE 433248 20201 6018642 2024-02-21 06:49:44.477 2024-02-21 06:49:44.477 9000 TIP 433248 18909 6018656 2024-02-21 06:52:37.82 2024-02-21 06:52:37.82 1000 FEE 433425 21037 6018658 2024-02-21 06:53:22.287 2024-02-21 06:53:22.287 1000 FEE 433391 2151 6018659 2024-02-21 06:53:22.287 2024-02-21 06:53:22.287 9000 TIP 433391 896 6018706 2024-02-21 07:03:15.448 2024-02-21 07:03:15.448 2100 FEE 433326 14381 6018707 2024-02-21 07:03:15.448 2024-02-21 07:03:15.448 18900 TIP 433326 21287 6018735 2024-02-21 07:15:18.431 2024-02-21 07:15:18.431 2100 FEE 432957 16289 6018736 2024-02-21 07:15:18.431 2024-02-21 07:15:18.431 18900 TIP 432957 965 6018768 2024-02-21 07:19:45.483 2024-02-21 07:19:45.483 10000 FEE 433439 902 6018774 2024-02-21 07:21:58.484 2024-02-21 07:21:58.484 1000 FEE 433014 1245 6018775 2024-02-21 07:21:58.484 2024-02-21 07:21:58.484 9000 TIP 433014 674 6018798 2024-02-21 07:29:57.489 2024-02-21 07:29:57.489 10000 FEE 433447 13198 6018800 2024-02-21 07:30:20.187 2024-02-21 07:30:20.187 1000 FEE 433448 1673 6018802 2024-02-21 07:31:54.894 2024-02-21 07:31:54.894 0 FEE 433447 11158 6018831 2024-02-21 07:40:13.753 2024-02-21 07:40:13.753 200 FEE 432386 17217 6018832 2024-02-21 07:40:13.753 2024-02-21 07:40:13.753 1800 TIP 432386 18659 6018835 2024-02-21 07:40:14.228 2024-02-21 07:40:14.228 400 FEE 432386 7553 6018836 2024-02-21 07:40:14.228 2024-02-21 07:40:14.228 3600 TIP 432386 21216 6018841 2024-02-21 07:40:15.028 2024-02-21 07:40:15.028 200 FEE 432386 19735 6018842 2024-02-21 07:40:15.028 2024-02-21 07:40:15.028 1800 TIP 432386 675 6018847 2024-02-21 07:40:15.505 2024-02-21 07:40:15.505 200 FEE 432386 18507 6018848 2024-02-21 07:40:15.505 2024-02-21 07:40:15.505 1800 TIP 432386 21620 6018855 2024-02-21 07:40:16.961 2024-02-21 07:40:16.961 200 FEE 432386 14785 6018856 2024-02-21 07:40:16.961 2024-02-21 07:40:16.961 1800 TIP 432386 11091 6018861 2024-02-21 07:41:33.6 2024-02-21 07:41:33.6 100000 FEE 433455 1030 6018889 2024-02-21 07:48:26.324 2024-02-21 07:48:26.324 7700 FEE 433066 20980 6018890 2024-02-21 07:48:26.324 2024-02-21 07:48:26.324 69300 TIP 433066 20858 6018901 2024-02-21 07:48:27.532 2024-02-21 07:48:27.532 15400 FEE 433066 4776 6018902 2024-02-21 07:48:27.532 2024-02-21 07:48:27.532 138600 TIP 433066 18679 6018909 2024-02-21 07:53:32.1 2024-02-21 07:53:32.1 21000 FEE 433460 17517 6018927 2024-02-21 07:59:41.618 2024-02-21 07:59:41.618 1000 FEE 433463 1519 6018948 2024-02-21 08:04:15.442 2024-02-21 08:04:15.442 3000 FEE 433391 18635 6018949 2024-02-21 08:04:15.442 2024-02-21 08:04:15.442 27000 TIP 433391 10007 6018960 2024-02-21 08:08:54.024 2024-02-21 08:08:54.024 1000 FEE 433469 2709 6018984 2024-02-21 08:15:35.318 2024-02-21 08:15:35.318 2500 FEE 433439 749 6018985 2024-02-21 08:15:35.318 2024-02-21 08:15:35.318 22500 TIP 433439 19615 6018997 2024-02-21 08:20:42.249 2024-02-21 08:20:42.249 1000 FEE 433475 4314 6019023 2024-02-21 08:27:41.131 2024-02-21 08:27:41.131 10000 FEE 433476 9342 6019056 2024-02-21 08:36:01.411 2024-02-21 08:36:01.411 1000 FEE 433480 19557 6019069 2024-02-21 08:40:37.037 2024-02-21 08:40:37.037 800 FEE 433476 21067 6019070 2024-02-21 08:40:37.037 2024-02-21 08:40:37.037 7200 TIP 433476 3709 6019102 2024-02-21 08:52:58.867 2024-02-21 08:52:58.867 2100 FEE 433391 17291 6019103 2024-02-21 08:52:58.867 2024-02-21 08:52:58.867 18900 TIP 433391 18359 6019117 2024-02-21 08:57:58.29 2024-02-21 08:57:58.29 3200 FEE 433274 1881 6019118 2024-02-21 08:57:58.29 2024-02-21 08:57:58.29 28800 TIP 433274 2188 6019120 2024-02-21 08:58:46.208 2024-02-21 08:58:46.208 10000 FEE 433489 616 6019155 2024-02-21 09:08:43.119 2024-02-21 09:08:43.119 1000 FEE 433498 700 6019168 2024-02-21 09:13:00.125 2024-02-21 09:13:00.125 2500 FEE 433067 1515 6019169 2024-02-21 09:13:00.125 2024-02-21 09:13:00.125 22500 TIP 433067 18667 6019180 2024-02-21 09:18:15.74 2024-02-21 09:18:15.74 100000 FEE 433504 2709 6019188 2024-02-21 09:21:16.32 2024-02-21 09:21:16.32 10000 FEE 433507 8926 6019202 2024-02-21 09:25:32.834 2024-02-21 09:25:32.834 1000 FEE 433511 18815 6019214 2024-02-21 09:26:09.088 2024-02-21 09:26:09.088 100 FEE 433436 20663 6019215 2024-02-21 09:26:09.088 2024-02-21 09:26:09.088 900 TIP 433436 1090 6019232 2024-02-21 09:26:40.096 2024-02-21 09:26:40.096 1000 FEE 433344 2735 6019233 2024-02-21 09:26:40.096 2024-02-21 09:26:40.096 9000 TIP 433344 21402 6017930 2024-02-21 03:51:03.031 2024-02-21 03:51:03.031 1000 STREAM 141924 21012 6017941 2024-02-21 03:52:03.035 2024-02-21 03:52:03.035 1000 STREAM 141924 16440 6017946 2024-02-21 03:53:03.058 2024-02-21 03:53:03.058 1000 STREAM 141924 20980 6017966 2024-02-21 03:54:03.06 2024-02-21 03:54:03.06 1000 STREAM 141924 21296 6017980 2024-02-21 03:57:03.086 2024-02-21 03:57:03.086 1000 STREAM 141924 19458 6017985 2024-02-21 03:58:03.091 2024-02-21 03:58:03.091 1000 STREAM 141924 15146 6017988 2024-02-21 03:59:03.096 2024-02-21 03:59:03.096 1000 STREAM 141924 16667 6017998 2024-02-21 04:01:04.654 2024-02-21 04:01:04.654 1000 STREAM 141924 11522 6018000 2024-02-21 04:02:03.11 2024-02-21 04:02:03.11 1000 STREAM 141924 18837 6018001 2024-02-21 04:03:03.11 2024-02-21 04:03:03.11 1000 STREAM 141924 4027 6018002 2024-02-21 04:04:03.109 2024-02-21 04:04:03.109 1000 STREAM 141924 3440 6018008 2024-02-21 04:05:03.114 2024-02-21 04:05:03.114 1000 STREAM 141924 18704 6018014 2024-02-21 04:07:03.113 2024-02-21 04:07:03.113 1000 STREAM 141924 6700 6018015 2024-02-21 04:08:03.119 2024-02-21 04:08:03.119 1000 STREAM 141924 14688 6018029 2024-02-21 04:10:03.138 2024-02-21 04:10:03.138 1000 STREAM 141924 1439 6018039 2024-02-21 04:12:03.126 2024-02-21 04:12:03.126 1000 STREAM 141924 18989 6018044 2024-02-21 04:13:03.132 2024-02-21 04:13:03.132 1000 STREAM 141924 1626 6018047 2024-02-21 04:15:02.987 2024-02-21 04:15:02.987 1000 STREAM 141924 16876 6018054 2024-02-21 04:17:05.11 2024-02-21 04:17:05.11 1000 STREAM 141924 2620 6018056 2024-02-21 04:18:01.646 2024-02-21 04:18:01.646 1000 STREAM 141924 15938 6018057 2024-02-21 04:19:03.121 2024-02-21 04:19:03.121 1000 STREAM 141924 15491 6018061 2024-02-21 04:20:03.155 2024-02-21 04:20:03.155 1000 STREAM 141924 16355 6018074 2024-02-21 04:21:03.146 2024-02-21 04:21:03.146 1000 STREAM 141924 7185 6018076 2024-02-21 04:22:05.184 2024-02-21 04:22:05.184 1000 STREAM 141924 21401 6018077 2024-02-21 04:23:03.173 2024-02-21 04:23:03.173 1000 STREAM 141924 10280 6018085 2024-02-21 04:24:05.144 2024-02-21 04:24:05.144 1000 STREAM 141924 1806 6018086 2024-02-21 04:25:03.178 2024-02-21 04:25:03.178 1000 STREAM 141924 897 6018087 2024-02-21 04:26:03.184 2024-02-21 04:26:03.184 1000 STREAM 141924 12516 6018089 2024-02-21 04:28:03.199 2024-02-21 04:28:03.199 1000 STREAM 141924 18524 6018095 2024-02-21 04:31:03.246 2024-02-21 04:31:03.246 1000 STREAM 141924 8796 6018100 2024-02-21 04:32:03.261 2024-02-21 04:32:03.261 1000 STREAM 141924 1713 6018102 2024-02-21 04:33:03.274 2024-02-21 04:33:03.274 1000 STREAM 141924 1602 6018103 2024-02-21 04:34:03.283 2024-02-21 04:34:03.283 1000 STREAM 141924 20998 6018115 2024-02-21 04:35:03.294 2024-02-21 04:35:03.294 1000 STREAM 141924 20327 6018116 2024-02-21 04:36:03.311 2024-02-21 04:36:03.311 1000 STREAM 141924 1705 6018117 2024-02-21 04:37:03.321 2024-02-21 04:37:03.321 1000 STREAM 141924 20585 6018123 2024-02-21 04:39:03.356 2024-02-21 04:39:03.356 1000 STREAM 141924 14950 6018126 2024-02-21 04:41:03.377 2024-02-21 04:41:03.377 1000 STREAM 141924 1729 6018128 2024-02-21 04:42:03.378 2024-02-21 04:42:03.378 1000 STREAM 141924 15938 6018129 2024-02-21 04:43:03.392 2024-02-21 04:43:03.392 1000 STREAM 141924 2703 6018130 2024-02-21 04:44:03.406 2024-02-21 04:44:03.406 1000 STREAM 141924 20990 6018131 2024-02-21 04:45:03.432 2024-02-21 04:45:03.432 1000 STREAM 141924 20744 6018132 2024-02-21 04:46:03.428 2024-02-21 04:46:03.428 1000 STREAM 141924 18138 6018133 2024-02-21 04:47:03.445 2024-02-21 04:47:03.445 1000 STREAM 141924 11075 6018134 2024-02-21 04:48:03.452 2024-02-21 04:48:03.452 1000 STREAM 141924 974 6018135 2024-02-21 04:49:03.462 2024-02-21 04:49:03.462 1000 STREAM 141924 925 6018137 2024-02-21 04:51:03.547 2024-02-21 04:51:03.547 1000 STREAM 141924 5308 6018150 2024-02-21 04:54:03.511 2024-02-21 04:54:03.511 1000 STREAM 141924 20970 6018159 2024-02-21 04:56:05.531 2024-02-21 04:56:05.531 1000 STREAM 141924 4128 6018163 2024-02-21 04:58:05.561 2024-02-21 04:58:05.561 1000 STREAM 141924 795 6018169 2024-02-21 05:00:05.627 2024-02-21 05:00:05.627 1000 STREAM 141924 9845 6018172 2024-02-21 05:01:03.589 2024-02-21 05:01:03.589 1000 STREAM 141924 4345 6018181 2024-02-21 05:02:03.595 2024-02-21 05:02:03.595 1000 STREAM 141924 20180 6018188 2024-02-21 05:04:03.583 2024-02-21 05:04:03.583 1000 STREAM 141924 5557 6018194 2024-02-21 05:08:03.627 2024-02-21 05:08:03.627 1000 STREAM 141924 3506 6018197 2024-02-21 05:09:03.633 2024-02-21 05:09:03.633 1000 STREAM 141924 12561 6018199 2024-02-21 05:11:03.656 2024-02-21 05:11:03.656 1000 STREAM 141924 7992 6018202 2024-02-21 05:12:03.661 2024-02-21 05:12:03.661 1000 STREAM 141924 2233 6018204 2024-02-21 05:13:03.679 2024-02-21 05:13:03.679 1000 STREAM 141924 19417 6018205 2024-02-21 05:14:03.641 2024-02-21 05:14:03.641 1000 STREAM 141924 1650 6018210 2024-02-21 05:17:03.682 2024-02-21 05:17:03.682 1000 STREAM 141924 1726 6018212 2024-02-21 05:18:03.667 2024-02-21 05:18:03.667 1000 STREAM 141924 1549 6018215 2024-02-21 05:19:03.685 2024-02-21 05:19:03.685 1000 STREAM 141924 8269 6018216 2024-02-21 05:20:03.705 2024-02-21 05:20:03.705 1000 STREAM 141924 21406 6018223 2024-02-21 05:22:03.696 2024-02-21 05:22:03.696 1000 STREAM 141924 19981 6018224 2024-02-21 05:23:03.707 2024-02-21 05:23:03.707 1000 STREAM 141924 1209 6018227 2024-02-21 05:24:03.711 2024-02-21 05:24:03.711 1000 STREAM 141924 652 6018228 2024-02-21 05:25:03.708 2024-02-21 05:25:03.708 1000 STREAM 141924 19524 6018229 2024-02-21 05:26:03.721 2024-02-21 05:26:03.721 1000 STREAM 141924 5497 6018230 2024-02-21 05:27:03.733 2024-02-21 05:27:03.733 1000 STREAM 141924 20137 6018231 2024-02-21 05:28:03.74 2024-02-21 05:28:03.74 1000 STREAM 141924 20424 6018239 2024-02-21 05:29:03.742 2024-02-21 05:29:03.742 1000 STREAM 141924 2264 6018246 2024-02-21 05:30:03.774 2024-02-21 05:30:03.774 1000 STREAM 141924 13622 6018247 2024-02-21 05:31:03.744 2024-02-21 05:31:03.744 1000 STREAM 141924 18453 6018249 2024-02-21 05:32:03.745 2024-02-21 05:32:03.745 1000 STREAM 141924 3440 6018251 2024-02-21 05:33:03.75 2024-02-21 05:33:03.75 1000 STREAM 141924 5961 6018266 2024-02-21 05:34:03.753 2024-02-21 05:34:03.753 1000 STREAM 141924 18372 6018305 2024-02-21 05:36:03.763 2024-02-21 05:36:03.763 1000 STREAM 141924 5377 6018311 2024-02-21 05:37:03.751 2024-02-21 05:37:03.751 1000 STREAM 141924 7986 6018330 2024-02-21 05:38:03.767 2024-02-21 05:38:03.767 1000 STREAM 141924 644 6018331 2024-02-21 05:39:03.774 2024-02-21 05:39:03.774 1000 STREAM 141924 18994 6018333 2024-02-21 05:40:03.839 2024-02-21 05:40:03.839 1000 STREAM 141924 660 6018335 2024-02-21 05:41:03.797 2024-02-21 05:41:03.797 1000 STREAM 141924 21589 6018344 2024-02-21 05:43:03.802 2024-02-21 05:43:03.802 1000 STREAM 141924 17535 6018349 2024-02-21 05:45:03.829 2024-02-21 05:45:03.829 1000 STREAM 141924 20852 6018353 2024-02-21 05:46:03.826 2024-02-21 05:46:03.826 1000 STREAM 141924 11522 6018356 2024-02-21 05:47:03.828 2024-02-21 05:47:03.828 1000 STREAM 141924 17050 6018360 2024-02-21 05:48:03.817 2024-02-21 05:48:03.817 1000 STREAM 141924 19375 6018361 2024-02-21 05:49:03.814 2024-02-21 05:49:03.814 1000 STREAM 141924 16998 6018363 2024-02-21 05:50:03.859 2024-02-21 05:50:03.859 1000 STREAM 141924 19021 6018367 2024-02-21 05:51:03.831 2024-02-21 05:51:03.831 1000 STREAM 141924 15367 6018373 2024-02-21 05:52:03.832 2024-02-21 05:52:03.832 1000 STREAM 141924 16816 6018389 2024-02-21 05:53:03.848 2024-02-21 05:53:03.848 1000 STREAM 141924 20663 6018393 2024-02-21 05:54:03.889 2024-02-21 05:54:03.889 1000 STREAM 141924 21058 6018402 2024-02-21 05:55:03.905 2024-02-21 05:55:03.905 1000 STREAM 141924 19902 6018411 2024-02-21 05:56:03.899 2024-02-21 05:56:03.899 1000 STREAM 141924 705 6018412 2024-02-21 05:57:03.867 2024-02-21 05:57:03.867 1000 STREAM 141924 20691 6018422 2024-02-21 05:59:03.889 2024-02-21 05:59:03.889 1000 STREAM 141924 18116 6018423 2024-02-21 06:00:04.025 2024-02-21 06:00:04.025 1000 STREAM 141924 18170 6018424 2024-02-21 06:01:03.956 2024-02-21 06:01:03.956 1000 STREAM 141924 20218 6018082 2024-02-21 04:23:55.905 2024-02-21 04:23:55.905 7200 TIP 432957 19038 6018088 2024-02-21 04:27:01.762 2024-02-21 04:27:01.762 1000 STREAM 141924 7418 6018092 2024-02-21 04:29:01.73 2024-02-21 04:29:01.73 1000 STREAM 141924 20424 6018093 2024-02-21 04:30:01.786 2024-02-21 04:30:01.786 1000 STREAM 141924 999 6018120 2024-02-21 04:38:01.72 2024-02-21 04:38:01.72 1000 STREAM 141924 4391 6018125 2024-02-21 04:40:01.76 2024-02-21 04:40:01.76 1000 STREAM 141924 20912 6018136 2024-02-21 04:50:02.027 2024-02-21 04:50:02.027 1000 STREAM 141924 19403 6018138 2024-02-21 04:52:02.003 2024-02-21 04:52:02.003 1000 STREAM 141924 13763 6018140 2024-02-21 04:53:02.034 2024-02-21 04:53:02.034 1000 STREAM 141924 891 6018144 2024-02-21 04:53:18.747 2024-02-21 04:53:18.747 800 FEE 433066 18608 6018145 2024-02-21 04:53:18.747 2024-02-21 04:53:18.747 7200 TIP 433066 17001 6018158 2024-02-21 04:55:02.011 2024-02-21 04:55:02.011 1000 STREAM 141924 5519 6018162 2024-02-21 04:57:02.033 2024-02-21 04:57:02.033 1000 STREAM 141924 19263 6018166 2024-02-21 04:59:02.029 2024-02-21 04:59:02.029 1000 STREAM 141924 20036 6018167 2024-02-21 04:59:03.719 2024-02-21 04:59:03.719 4200 FEE 433187 4388 6018168 2024-02-21 04:59:03.719 2024-02-21 04:59:03.719 37800 TIP 433187 7376 6018184 2024-02-21 05:02:08.97 2024-02-21 05:02:08.97 1000 FEE 433367 13361 6018187 2024-02-21 05:03:04.304 2024-02-21 05:03:04.304 1000 STREAM 141924 9200 6018189 2024-02-21 05:05:04.313 2024-02-21 05:05:04.313 1000 STREAM 141924 894 6018190 2024-02-21 05:05:41.617 2024-02-21 05:05:41.617 1000 FEE 433368 21356 6018191 2024-02-21 05:06:02.317 2024-02-21 05:06:02.317 1000 STREAM 141924 18525 6018192 2024-02-21 05:06:40.888 2024-02-21 05:06:40.888 1000 FEE 433369 14545 6018193 2024-02-21 05:07:04.34 2024-02-21 05:07:04.34 1000 STREAM 141924 623 6018195 2024-02-21 05:08:06.689 2024-02-21 05:08:06.689 11100 FEE 430692 1039 6018196 2024-02-21 05:08:06.689 2024-02-21 05:08:06.689 99900 TIP 430692 18178 6018198 2024-02-21 05:10:04.361 2024-02-21 05:10:04.361 1000 STREAM 141924 1237 6018203 2024-02-21 05:12:30.932 2024-02-21 05:12:30.932 1000 FEE 433370 19018 6018208 2024-02-21 05:15:02.551 2024-02-21 05:15:02.551 1000 STREAM 141924 16350 6018209 2024-02-21 05:16:02.548 2024-02-21 05:16:02.548 1000 STREAM 141924 739 6018256 2024-02-21 05:33:15.622 2024-02-21 05:33:15.622 9000 FEE 433359 13055 6018257 2024-02-21 05:33:15.622 2024-02-21 05:33:15.622 81000 TIP 433359 20464 6018281 2024-02-21 05:34:24.897 2024-02-21 05:34:24.897 900 FEE 433322 5129 6018282 2024-02-21 05:34:24.897 2024-02-21 05:34:24.897 8100 TIP 433322 21389 6018294 2024-02-21 05:35:02.648 2024-02-21 05:35:02.648 1000 STREAM 141924 19777 6018307 2024-02-21 05:36:56.365 2024-02-21 05:36:56.365 100 FEE 433357 19732 6018308 2024-02-21 05:36:56.365 2024-02-21 05:36:56.365 900 TIP 433357 21275 6018324 2024-02-21 05:38:01.551 2024-02-21 05:38:01.551 100 FEE 432932 1772 6018325 2024-02-21 05:38:01.551 2024-02-21 05:38:01.551 900 TIP 432932 19044 6018342 2024-02-21 05:43:03.26 2024-02-21 05:43:03.26 1000 FEE 432651 1038 6018343 2024-02-21 05:43:03.26 2024-02-21 05:43:03.26 9000 TIP 432651 21119 6018359 2024-02-21 05:48:00.476 2024-02-21 05:48:00.476 10000 FEE 433390 12268 6018376 2024-02-21 05:52:22.104 2024-02-21 05:52:22.104 700 FEE 433391 2773 6018377 2024-02-21 05:52:22.104 2024-02-21 05:52:22.104 6300 TIP 433391 18865 6018395 2024-02-21 05:54:26.343 2024-02-21 05:54:26.343 2100 FEE 433192 14280 6018396 2024-02-21 05:54:26.343 2024-02-21 05:54:26.343 18900 TIP 433192 811 6018401 2024-02-21 05:54:58.659 2024-02-21 05:54:58.659 1000 FEE 433397 9353 6018414 2024-02-21 05:58:06.893 2024-02-21 05:58:06.893 2600 FEE 433302 19243 6018415 2024-02-21 05:58:06.893 2024-02-21 05:58:06.893 23400 TIP 433302 701 6018430 2024-02-21 06:03:39.856 2024-02-21 06:03:39.856 100000 FEE 433403 19507 6018487 2024-02-21 06:12:17.684 2024-02-21 06:12:17.684 2000 FEE 433304 21539 6018488 2024-02-21 06:12:17.684 2024-02-21 06:12:17.684 18000 TIP 433304 12102 6018503 2024-02-21 06:14:26.229 2024-02-21 06:14:26.229 2000 FEE 433001 19154 6018504 2024-02-21 06:14:26.229 2024-02-21 06:14:26.229 18000 TIP 433001 19890 6018547 2024-02-21 06:18:37.801 2024-02-21 06:18:37.801 5000 FEE 433045 18380 6018548 2024-02-21 06:18:37.801 2024-02-21 06:18:37.801 45000 TIP 433045 6421 6018569 2024-02-21 06:24:40.322 2024-02-21 06:24:40.322 1000 FEE 433123 18119 6018570 2024-02-21 06:24:40.322 2024-02-21 06:24:40.322 9000 TIP 433123 11491 6018573 2024-02-21 06:24:41.158 2024-02-21 06:24:41.158 1000 FEE 433123 21057 6018574 2024-02-21 06:24:41.158 2024-02-21 06:24:41.158 9000 TIP 433123 5306 6018590 2024-02-21 06:31:09.507 2024-02-21 06:31:09.507 21000 FEE 433411 9184 6018603 2024-02-21 06:35:36.548 2024-02-21 06:35:36.548 1000 FEE 433403 21057 6018604 2024-02-21 06:35:36.548 2024-02-21 06:35:36.548 9000 TIP 433403 2735 6018605 2024-02-21 06:35:37.244 2024-02-21 06:35:37.244 9000 FEE 433403 11885 6018606 2024-02-21 06:35:37.244 2024-02-21 06:35:37.244 81000 TIP 433403 761 6018613 2024-02-21 06:39:26.581 2024-02-21 06:39:26.581 10000 FEE 433403 2773 6018614 2024-02-21 06:39:26.581 2024-02-21 06:39:26.581 90000 TIP 433403 13378 6018615 2024-02-21 06:39:32.485 2024-02-21 06:39:32.485 10000 FEE 433418 8535 6018627 2024-02-21 06:44:14.66 2024-02-21 06:44:14.66 4200 FEE 433344 18199 6018628 2024-02-21 06:44:14.66 2024-02-21 06:44:14.66 37800 TIP 433344 671 6018667 2024-02-21 06:54:09.922 2024-02-21 06:54:09.922 1000 FEE 433302 20563 6018668 2024-02-21 06:54:09.922 2024-02-21 06:54:09.922 9000 TIP 433302 19809 6018669 2024-02-21 06:54:10.477 2024-02-21 06:54:10.477 1000 FEE 433302 8423 6018670 2024-02-21 06:54:10.477 2024-02-21 06:54:10.477 9000 TIP 433302 18877 6018743 2024-02-21 07:15:24.465 2024-02-21 07:15:24.465 2100 FEE 433217 848 6018744 2024-02-21 07:15:24.465 2024-02-21 07:15:24.465 18900 TIP 433217 17817 6018749 2024-02-21 07:15:28.253 2024-02-21 07:15:28.253 2100 FEE 433108 718 6018750 2024-02-21 07:15:28.253 2024-02-21 07:15:28.253 18900 TIP 433108 760 6018756 2024-02-21 07:16:30.758 2024-02-21 07:16:30.758 21000 FEE 433435 814 6018778 2024-02-21 07:23:10.455 2024-02-21 07:23:10.455 1000 FEE 433441 2010 6018782 2024-02-21 07:24:09.036 2024-02-21 07:24:09.036 12800 FEE 433429 11956 6018783 2024-02-21 07:24:09.036 2024-02-21 07:24:09.036 115200 TIP 433429 12278 6018791 2024-02-21 07:27:52.217 2024-02-21 07:27:52.217 1000 FEE 433444 7847 6018792 2024-02-21 07:27:58.176 2024-02-21 07:27:58.176 12800 FEE 433348 2596 6018793 2024-02-21 07:27:58.176 2024-02-21 07:27:58.176 115200 TIP 433348 937 6018812 2024-02-21 07:34:37.144 2024-02-21 07:34:37.144 10000 FEE 433187 4768 6018813 2024-02-21 07:34:37.144 2024-02-21 07:34:37.144 90000 TIP 433187 20439 6018824 2024-02-21 07:38:48.04 2024-02-21 07:38:48.04 1000 FEE 433453 16341 6018829 2024-02-21 07:40:13.598 2024-02-21 07:40:13.598 200 FEE 432386 5499 6018830 2024-02-21 07:40:13.598 2024-02-21 07:40:13.598 1800 TIP 432386 15703 6018843 2024-02-21 07:40:15.141 2024-02-21 07:40:15.141 200 FEE 432386 4538 6018844 2024-02-21 07:40:15.141 2024-02-21 07:40:15.141 1800 TIP 432386 11153 6018871 2024-02-21 07:44:49.492 2024-02-21 07:44:49.492 1000 FEE 430338 17392 6018872 2024-02-21 07:44:49.492 2024-02-21 07:44:49.492 9000 TIP 430338 9874 6018880 2024-02-21 07:46:25.202 2024-02-21 07:46:25.202 1000 FEE 433118 21514 6018881 2024-02-21 07:46:25.202 2024-02-21 07:46:25.202 9000 TIP 433118 19281 6018893 2024-02-21 07:48:26.704 2024-02-21 07:48:26.704 7700 FEE 433066 16988 6018894 2024-02-21 07:48:26.704 2024-02-21 07:48:26.704 69300 TIP 433066 19501 6018923 2024-02-21 07:59:34.917 2024-02-21 07:59:34.917 600 FEE 433108 627 6018924 2024-02-21 07:59:34.917 2024-02-21 07:59:34.917 5400 TIP 433108 780 6018931 2024-02-21 08:00:08.424 2024-02-21 08:00:08.424 100000 FEE 433464 20603 6018935 2024-02-21 08:00:24.566 2024-02-21 08:00:24.566 400 FEE 433434 1245 6018936 2024-02-21 08:00:24.566 2024-02-21 08:00:24.566 3600 TIP 433434 21386 6018945 2024-02-21 08:03:34.084 2024-02-21 08:03:34.084 2100 FEE 433194 20555 6018946 2024-02-21 08:03:34.084 2024-02-21 08:03:34.084 18900 TIP 433194 10698 6018970 2024-02-21 08:11:59.979 2024-02-21 08:11:59.979 10000 FEE 433455 1221 6018971 2024-02-21 08:11:59.979 2024-02-21 08:11:59.979 90000 TIP 433455 10393 6019020 2024-02-21 08:26:14.999 2024-02-21 08:26:14.999 0 FEE 2608 4763 6018219 2024-02-21 05:20:30.725 2024-02-21 05:20:30.725 18900 TIP 433370 20327 6018222 2024-02-21 05:21:04.588 2024-02-21 05:21:04.588 1000 STREAM 141924 12102 6018225 2024-02-21 05:23:39.176 2024-02-21 05:23:39.176 100 FEE 433014 18219 6018226 2024-02-21 05:23:39.176 2024-02-21 05:23:39.176 900 TIP 433014 21103 6018245 2024-02-21 05:29:32.73 2024-02-21 05:29:32.73 1000 FEE 433375 17927 6018262 2024-02-21 05:33:42.881 2024-02-21 05:33:42.881 9000 FEE 433373 20788 6018263 2024-02-21 05:33:42.881 2024-02-21 05:33:42.881 81000 TIP 433373 21275 6018285 2024-02-21 05:34:44.062 2024-02-21 05:34:44.062 900 FEE 433313 12024 6018286 2024-02-21 05:34:44.062 2024-02-21 05:34:44.062 8100 TIP 433313 6526 6018303 2024-02-21 05:35:47.37 2024-02-21 05:35:47.37 0 FEE 433377 762 6018316 2024-02-21 05:37:13.81 2024-02-21 05:37:13.81 9000 FEE 433268 6384 6018317 2024-02-21 05:37:13.81 2024-02-21 05:37:13.81 81000 TIP 433268 6361 6018320 2024-02-21 05:37:49.909 2024-02-21 05:37:49.909 900 FEE 433039 21037 6018321 2024-02-21 05:37:49.909 2024-02-21 05:37:49.909 8100 TIP 433039 18583 6018372 2024-02-21 05:51:55.623 2024-02-21 05:51:55.623 1000 FEE 433393 16301 6018380 2024-02-21 05:52:23.821 2024-02-21 05:52:23.821 700 FEE 433391 20225 6018381 2024-02-21 05:52:23.821 2024-02-21 05:52:23.821 6300 TIP 433391 19888 6018397 2024-02-21 05:54:35.737 2024-02-21 05:54:35.737 2100 FEE 433213 732 6018398 2024-02-21 05:54:35.737 2024-02-21 05:54:35.737 18900 TIP 433213 18494 6018416 2024-02-21 05:58:09.388 2024-02-21 05:58:09.388 1000 FEE 433400 13927 6018420 2024-02-21 05:59:02.377 2024-02-21 05:59:02.377 1000 FEE 433400 13759 6018421 2024-02-21 05:59:02.377 2024-02-21 05:59:02.377 9000 TIP 433400 1120 6018426 2024-02-21 06:02:37.636 2024-02-21 06:02:37.636 1000 FEE 433364 1490 6018427 2024-02-21 06:02:37.636 2024-02-21 06:02:37.636 9000 TIP 433364 633 6018436 2024-02-21 06:04:06.918 2024-02-21 06:04:06.918 7700 FEE 432247 16653 6018437 2024-02-21 06:04:06.918 2024-02-21 06:04:06.918 69300 TIP 432247 8506 6018440 2024-02-21 06:04:07.254 2024-02-21 06:04:07.254 7700 FEE 432247 17172 6018441 2024-02-21 06:04:07.254 2024-02-21 06:04:07.254 69300 TIP 432247 8416 6018446 2024-02-21 06:04:07.783 2024-02-21 06:04:07.783 7700 FEE 432247 2206 6018447 2024-02-21 06:04:07.783 2024-02-21 06:04:07.783 69300 TIP 432247 20287 6018456 2024-02-21 06:04:11.482 2024-02-21 06:04:11.482 10000 FEE 433404 21575 6018458 2024-02-21 06:05:45.24 2024-02-21 06:05:45.24 1000 FEE 433405 18219 6018459 2024-02-21 06:05:51.031 2024-02-21 06:05:51.031 1000 FEE 433406 20102 6018463 2024-02-21 06:06:32.207 2024-02-21 06:06:32.207 4200 FEE 432920 4177 6018464 2024-02-21 06:06:32.207 2024-02-21 06:06:32.207 37800 TIP 432920 21091 6018467 2024-02-21 06:08:34.067 2024-02-21 06:08:34.067 1000 FEE 433407 21387 6018469 2024-02-21 06:09:46.054 2024-02-21 06:09:46.054 1000 FEE 433408 4776 6018491 2024-02-21 06:12:26.048 2024-02-21 06:12:26.048 2000 FEE 433373 18313 6018492 2024-02-21 06:12:26.048 2024-02-21 06:12:26.048 18000 TIP 433373 2508 6018505 2024-02-21 06:14:26.502 2024-02-21 06:14:26.502 2000 FEE 433001 21391 6018506 2024-02-21 06:14:26.502 2024-02-21 06:14:26.502 18000 TIP 433001 11678 6018507 2024-02-21 06:14:28.39 2024-02-21 06:14:28.39 2000 FEE 432889 10519 6018508 2024-02-21 06:14:28.39 2024-02-21 06:14:28.39 18000 TIP 432889 19007 6018515 2024-02-21 06:14:45.016 2024-02-21 06:14:45.016 2000 FEE 433391 20272 6018516 2024-02-21 06:14:45.016 2024-02-21 06:14:45.016 18000 TIP 433391 12122 6018519 2024-02-21 06:14:58.142 2024-02-21 06:14:58.142 2000 FEE 433359 20546 6018520 2024-02-21 06:14:58.142 2024-02-21 06:14:58.142 18000 TIP 433359 20058 6018524 2024-02-21 06:15:05.621 2024-02-21 06:15:05.621 2000 FEE 433373 13987 6018525 2024-02-21 06:15:05.621 2024-02-21 06:15:05.621 18000 TIP 433373 4323 6018531 2024-02-21 06:18:29.913 2024-02-21 06:18:29.913 5000 FEE 432996 1394 6018532 2024-02-21 06:18:29.913 2024-02-21 06:18:29.913 45000 TIP 432996 20555 6018543 2024-02-21 06:18:36.814 2024-02-21 06:18:36.814 5000 FEE 433000 18393 6018544 2024-02-21 06:18:36.814 2024-02-21 06:18:36.814 45000 TIP 433000 20555 6018563 2024-02-21 06:22:30.89 2024-02-21 06:22:30.89 2100 FEE 433364 14795 6018564 2024-02-21 06:22:30.89 2024-02-21 06:22:30.89 18900 TIP 433364 11885 6018599 2024-02-21 06:33:09.013 2024-02-21 06:33:09.013 10000 FEE 433414 9342 6018608 2024-02-21 06:36:11.47 2024-02-21 06:36:11.47 5000 FEE 433416 1718 6018635 2024-02-21 06:46:13.296 2024-02-21 06:46:13.296 10000 FEE 433421 18262 6018653 2024-02-21 06:50:51.331 2024-02-21 06:50:51.331 0 FEE 433423 6430 6018687 2024-02-21 06:57:59.632 2024-02-21 06:57:59.632 100 FEE 433422 16270 6018688 2024-02-21 06:57:59.632 2024-02-21 06:57:59.632 900 TIP 433422 3506 6018690 2024-02-21 06:58:15.517 2024-02-21 06:58:15.517 12800 FEE 433402 5377 6018691 2024-02-21 06:58:15.517 2024-02-21 06:58:15.517 115200 TIP 433402 761 6018694 2024-02-21 06:59:33.408 2024-02-21 06:59:33.408 1000 FEE 433123 2774 6018695 2024-02-21 06:59:33.408 2024-02-21 06:59:33.408 9000 TIP 433123 6383 6018700 2024-02-21 07:01:43.654 2024-02-21 07:01:43.654 100 FEE 433391 2061 6018701 2024-02-21 07:01:43.654 2024-02-21 07:01:43.654 900 TIP 433391 937 6018731 2024-02-21 07:15:16.34 2024-02-21 07:15:16.34 2100 FEE 433302 10728 6018732 2024-02-21 07:15:16.34 2024-02-21 07:15:16.34 18900 TIP 433302 9992 6018754 2024-02-21 07:16:26.493 2024-02-21 07:16:26.493 5000 FEE 433114 7998 6018755 2024-02-21 07:16:26.493 2024-02-21 07:16:26.493 45000 TIP 433114 9261 6018795 2024-02-21 07:28:25.429 2024-02-21 07:28:25.429 1000 FEE 433445 20299 6018796 2024-02-21 07:28:43.876 2024-02-21 07:28:43.876 1000 FEE 433446 21044 6018808 2024-02-21 07:33:00.296 2024-02-21 07:33:00.296 5000 FEE 433344 14169 6018809 2024-02-21 07:33:00.296 2024-02-21 07:33:00.296 45000 TIP 433344 11992 6018853 2024-02-21 07:40:16.867 2024-02-21 07:40:16.867 200 FEE 432386 1394 6018854 2024-02-21 07:40:16.867 2024-02-21 07:40:16.867 1800 TIP 432386 9552 6018897 2024-02-21 07:48:27.079 2024-02-21 07:48:27.079 7700 FEE 433066 739 6018898 2024-02-21 07:48:27.079 2024-02-21 07:48:27.079 69300 TIP 433066 6149 6018903 2024-02-21 07:49:02.458 2024-02-21 07:49:02.458 10000 FEE 433459 5725 6018925 2024-02-21 07:59:34.944 2024-02-21 07:59:34.944 100 FEE 433302 18774 6018926 2024-02-21 07:59:34.944 2024-02-21 07:59:34.944 900 TIP 433302 10273 6018951 2024-02-21 08:04:42.211 2024-02-21 08:04:42.211 1000 FEE 433467 678 6018956 2024-02-21 08:06:17.758 2024-02-21 08:06:17.758 1000 FEE 433446 21422 6018957 2024-02-21 08:06:17.758 2024-02-21 08:06:17.758 9000 TIP 433446 4654 6018968 2024-02-21 08:11:41.469 2024-02-21 08:11:41.469 2500 FEE 433404 11458 6018969 2024-02-21 08:11:41.469 2024-02-21 08:11:41.469 22500 TIP 433404 11522 6019022 2024-02-21 08:27:40.874 2024-02-21 08:27:40.874 0 FEE 2608 2010 6019027 2024-02-21 08:28:08.889 2024-02-21 08:28:08.889 10000 FEE 433447 20490 6019028 2024-02-21 08:28:08.889 2024-02-21 08:28:08.889 90000 TIP 433447 21148 6019036 2024-02-21 08:30:04.416 2024-02-21 08:30:04.416 1000 FEE 433477 16329 6019078 2024-02-21 08:43:22.57 2024-02-21 08:43:22.57 3000 FEE 433391 17798 6019079 2024-02-21 08:43:22.57 2024-02-21 08:43:22.57 27000 TIP 433391 7986 6019088 2024-02-21 08:47:54.827 2024-02-21 08:47:54.827 2100 FEE 433344 17209 6019089 2024-02-21 08:47:54.827 2024-02-21 08:47:54.827 18900 TIP 433344 16513 6019113 2024-02-21 08:56:16.047 2024-02-21 08:56:16.047 800 FEE 433271 769 6019114 2024-02-21 08:56:16.047 2024-02-21 08:56:16.047 7200 TIP 433271 14941 6019123 2024-02-21 08:59:03.675 2024-02-21 08:59:03.675 1600 FEE 433335 18119 6019124 2024-02-21 08:59:03.675 2024-02-21 08:59:03.675 14400 TIP 433335 21555 6019132 2024-02-21 09:00:05.136 2024-02-21 09:00:05.136 1000 FEE 433492 5377 6019133 2024-02-21 09:00:05.754 2024-02-21 09:00:05.754 1000 FEE 433493 7772 6019163 2024-02-21 09:11:51.522 2024-02-21 09:11:51.522 210000 FEE 433499 11938 6019182 2024-02-21 09:19:47.589 2024-02-21 09:19:47.589 1000 FEE 433505 18828 6019240 2024-02-21 09:26:43.47 2024-02-21 09:26:43.47 1000 FEE 432899 664 6019241 2024-02-21 09:26:43.47 2024-02-21 09:26:43.47 9000 TIP 432899 9242 6019282 2024-02-21 09:28:02.462 2024-02-21 09:28:02.462 1000 FEE 433278 1439 6019283 2024-02-21 09:28:02.462 2024-02-21 09:28:02.462 9000 TIP 433278 21547 6018244 2024-02-21 05:29:18.572 2024-02-21 05:29:18.572 18900 TIP 433344 8535 6018252 2024-02-21 05:33:12.284 2024-02-21 05:33:12.284 100 FEE 433359 9166 6018253 2024-02-21 05:33:12.284 2024-02-21 05:33:12.284 900 TIP 433359 713 6018273 2024-02-21 05:34:06.929 2024-02-21 05:34:06.929 900 FEE 433334 12368 6018274 2024-02-21 05:34:06.929 2024-02-21 05:34:06.929 8100 TIP 433334 16230 6018291 2024-02-21 05:34:54.428 2024-02-21 05:34:54.428 9000 FEE 433304 1060 6018292 2024-02-21 05:34:54.428 2024-02-21 05:34:54.428 81000 TIP 433304 16665 6018297 2024-02-21 05:35:05.065 2024-02-21 05:35:05.065 900 FEE 433281 19511 6018298 2024-02-21 05:35:05.065 2024-02-21 05:35:05.065 8100 TIP 433281 777 6018306 2024-02-21 05:36:05.864 2024-02-21 05:36:05.864 1000 FEE 433380 21061 6018326 2024-02-21 05:38:01.712 2024-02-21 05:38:01.712 900 FEE 432932 1046 6018327 2024-02-21 05:38:01.712 2024-02-21 05:38:01.712 8100 TIP 432932 7425 6018358 2024-02-21 05:47:57.759 2024-02-21 05:47:57.759 1000 FEE 433389 20606 6018364 2024-02-21 05:50:56.31 2024-02-21 05:50:56.31 100000 FEE 433391 1208 6018365 2024-02-21 05:50:56.31 2024-02-21 05:50:56.31 25000000 BOOST 433391 20430 6018370 2024-02-21 05:51:15.449 2024-02-21 05:51:15.449 22200 FEE 433391 13878 6018371 2024-02-21 05:51:15.449 2024-02-21 05:51:15.449 199800 TIP 433391 9367 6018384 2024-02-21 05:52:23.999 2024-02-21 05:52:23.999 700 FEE 433391 20854 6018385 2024-02-21 05:52:23.999 2024-02-21 05:52:23.999 6300 TIP 433391 15075 6018386 2024-02-21 05:52:24.351 2024-02-21 05:52:24.351 700 FEE 433391 19286 6018387 2024-02-21 05:52:24.351 2024-02-21 05:52:24.351 6300 TIP 433391 14280 6018405 2024-02-21 05:55:56.886 2024-02-21 05:55:56.886 100 FEE 433315 17227 6018406 2024-02-21 05:55:56.886 2024-02-21 05:55:56.886 900 TIP 433315 6268 6018409 2024-02-21 05:55:59.429 2024-02-21 05:55:59.429 2000 FEE 433315 11275 6018410 2024-02-21 05:55:59.429 2024-02-21 05:55:59.429 18000 TIP 433315 1012 6018477 2024-02-21 06:12:04.979 2024-02-21 06:12:04.979 2000 FEE 433391 19640 6018478 2024-02-21 06:12:04.979 2024-02-21 06:12:04.979 18000 TIP 433391 20901 6018511 2024-02-21 06:14:28.805 2024-02-21 06:14:28.805 2000 FEE 432889 12721 6018512 2024-02-21 06:14:28.805 2024-02-21 06:14:28.805 18000 TIP 432889 17064 6018522 2024-02-21 06:15:05.408 2024-02-21 06:15:05.408 2000 FEE 433373 20964 6018523 2024-02-21 06:15:05.408 2024-02-21 06:15:05.408 18000 TIP 433373 16406 6018537 2024-02-21 06:18:33.431 2024-02-21 06:18:33.431 5000 FEE 432887 1236 6018538 2024-02-21 06:18:33.431 2024-02-21 06:18:33.431 45000 TIP 432887 20826 6018567 2024-02-21 06:24:39.739 2024-02-21 06:24:39.739 1000 FEE 433123 18673 6018568 2024-02-21 06:24:39.739 2024-02-21 06:24:39.739 9000 TIP 433123 21012 6018643 2024-02-21 06:49:44.953 2024-02-21 06:49:44.953 1000 FEE 433248 715 6018644 2024-02-21 06:49:44.953 2024-02-21 06:49:44.953 9000 TIP 433248 18583 6018719 2024-02-21 07:10:45.013 2024-02-21 07:10:45.013 1000 FEE 433433 15351 6018733 2024-02-21 07:15:17.656 2024-02-21 07:15:17.656 2100 FEE 433114 16649 6018734 2024-02-21 07:15:17.656 2024-02-21 07:15:17.656 18900 TIP 433114 5387 6018741 2024-02-21 07:15:24.117 2024-02-21 07:15:24.117 2100 FEE 433066 14271 6018742 2024-02-21 07:15:24.117 2024-02-21 07:15:24.117 18900 TIP 433066 17209 6018760 2024-02-21 07:16:58.674 2024-02-21 07:16:58.674 2100 FEE 432889 19795 6018761 2024-02-21 07:16:58.674 2024-02-21 07:16:58.674 18900 TIP 432889 8926 6018779 2024-02-21 07:23:48.473 2024-02-21 07:23:48.473 1000 FEE 433442 9874 6018826 2024-02-21 07:39:53.23 2024-02-21 07:39:53.23 2100 FEE 433344 659 6018827 2024-02-21 07:39:53.23 2024-02-21 07:39:53.23 18900 TIP 433344 16948 6018833 2024-02-21 07:40:13.992 2024-02-21 07:40:13.992 200 FEE 432386 4819 6018834 2024-02-21 07:40:13.992 2024-02-21 07:40:13.992 1800 TIP 432386 10638 6018851 2024-02-21 07:40:16.605 2024-02-21 07:40:16.605 200 FEE 432386 19148 6018852 2024-02-21 07:40:16.605 2024-02-21 07:40:16.605 1800 TIP 432386 985 6018864 2024-02-21 07:42:30.774 2024-02-21 07:42:30.774 0 FEE 433452 18040 6018869 2024-02-21 07:44:37.651 2024-02-21 07:44:37.651 10000 FEE 432889 1439 6018870 2024-02-21 07:44:37.651 2024-02-21 07:44:37.651 90000 TIP 432889 8726 6018918 2024-02-21 07:58:32.756 2024-02-21 07:58:32.756 0 FEE 433461 13987 6018921 2024-02-21 07:59:27.502 2024-02-21 07:59:27.502 1000 FEE 433462 19639 6018932 2024-02-21 08:00:08.809 2024-02-21 08:00:08.809 1000 FEE 433465 17727 6018937 2024-02-21 08:00:25.284 2024-02-21 08:00:25.284 400 FEE 433462 909 6018938 2024-02-21 08:00:25.284 2024-02-21 08:00:25.284 3600 TIP 433462 15337 6018953 2024-02-21 08:05:29.645 2024-02-21 08:05:29.645 0 FEE 433461 11240 6018975 2024-02-21 08:12:57.137 2024-02-21 08:12:57.137 1000 FEE 433472 657 6018994 2024-02-21 08:19:59.331 2024-02-21 08:19:59.331 10000 FEE 432920 16789 6018995 2024-02-21 08:19:59.331 2024-02-21 08:19:59.331 90000 TIP 432920 16571 6018998 2024-02-21 08:21:03.858 2024-02-21 08:21:03.858 0 FEE 433475 9655 6019002 2024-02-21 08:22:27.901 2024-02-21 08:22:27.901 2100 FEE 433455 9347 6019003 2024-02-21 08:22:27.901 2024-02-21 08:22:27.901 18900 TIP 433455 17166 6019014 2024-02-21 08:24:33.358 2024-02-21 08:24:33.358 2100 FEE 433474 17109 6019015 2024-02-21 08:24:33.358 2024-02-21 08:24:33.358 18900 TIP 433474 18230 6019047 2024-02-21 08:33:22.247 2024-02-21 08:33:22.247 0 FEE 433479 9816 6019062 2024-02-21 08:37:11.787 2024-02-21 08:37:11.787 1000 FEE 433481 803 6019097 2024-02-21 08:51:00.079 2024-02-21 08:51:00.079 0 FEE 433486 5557 6019099 2024-02-21 08:51:08.575 2024-02-21 08:51:08.575 0 FEE 433486 10311 6019115 2024-02-21 08:56:24.535 2024-02-21 08:56:24.535 1000 FEE 433488 18174 6019176 2024-02-21 09:15:17.633 2024-02-21 09:15:17.633 1000 FEE 433503 20782 6019191 2024-02-21 09:23:03.115 2024-02-21 09:23:03.115 500 FEE 432689 19398 6019192 2024-02-21 09:23:03.115 2024-02-21 09:23:03.115 4500 TIP 432689 780 6019230 2024-02-21 09:26:38.515 2024-02-21 09:26:38.515 1000 FEE 433217 18241 6019231 2024-02-21 09:26:38.515 2024-02-21 09:26:38.515 9000 TIP 433217 17046 6019236 2024-02-21 09:26:41.616 2024-02-21 09:26:41.616 1000 FEE 433108 12188 6019237 2024-02-21 09:26:41.616 2024-02-21 09:26:41.616 9000 TIP 433108 20058 6019248 2024-02-21 09:26:47.179 2024-02-21 09:26:47.179 1000 FEE 433304 21562 6019249 2024-02-21 09:26:47.179 2024-02-21 09:26:47.179 9000 TIP 433304 18817 6019256 2024-02-21 09:27:46.347 2024-02-21 09:27:46.347 1000 FEE 433451 14280 6019257 2024-02-21 09:27:46.347 2024-02-21 09:27:46.347 9000 TIP 433451 2722 6019274 2024-02-21 09:27:54.976 2024-02-21 09:27:54.976 1000 FEE 433348 2213 6019275 2024-02-21 09:27:54.976 2024-02-21 09:27:54.976 9000 TIP 433348 6164 6019285 2024-02-21 09:28:06.38 2024-02-21 09:28:06.38 1000 FEE 433341 739 6019286 2024-02-21 09:28:06.38 2024-02-21 09:28:06.38 9000 TIP 433341 21320 6019305 2024-02-21 09:28:44.125 2024-02-21 09:28:44.125 1000 FEE 433123 17050 6019306 2024-02-21 09:28:44.125 2024-02-21 09:28:44.125 9000 TIP 433123 20563 6019307 2024-02-21 09:28:44.167 2024-02-21 09:28:44.167 1000 FEE 433232 20972 6019308 2024-02-21 09:28:44.167 2024-02-21 09:28:44.167 9000 TIP 433232 20143 6019313 2024-02-21 09:28:45.965 2024-02-21 09:28:45.965 1000 FEE 433255 20370 6019314 2024-02-21 09:28:45.965 2024-02-21 09:28:45.965 9000 TIP 433255 5306 6019316 2024-02-21 09:28:46.486 2024-02-21 09:28:46.486 1000 FEE 433310 6749 6019317 2024-02-21 09:28:46.486 2024-02-21 09:28:46.486 9000 TIP 433310 828 6019379 2024-02-21 09:29:12.527 2024-02-21 09:29:12.527 1000 FEE 433264 15890 6019380 2024-02-21 09:29:12.527 2024-02-21 09:29:12.527 9000 TIP 433264 9342 6019381 2024-02-21 09:29:12.679 2024-02-21 09:29:12.679 1000 FEE 433272 3392 6019382 2024-02-21 09:29:12.679 2024-02-21 09:29:12.679 9000 TIP 433272 686 6019395 2024-02-21 09:29:22.226 2024-02-21 09:29:22.226 1000 FEE 432873 21430 6019396 2024-02-21 09:29:22.226 2024-02-21 09:29:22.226 9000 TIP 432873 14168 6019408 2024-02-21 09:30:07.407 2024-02-21 09:30:07.407 1000 FEE 433517 2519 6019417 2024-02-21 09:31:57.866 2024-02-21 09:31:57.866 3300 FEE 433480 12334 6019418 2024-02-21 09:31:57.866 2024-02-21 09:31:57.866 29700 TIP 433480 20799 6019419 2024-02-21 09:31:57.947 2024-02-21 09:31:57.947 3300 FEE 433480 18368 6019420 2024-02-21 09:31:57.947 2024-02-21 09:31:57.947 29700 TIP 433480 8074 6018289 2024-02-21 05:34:54.235 2024-02-21 05:34:54.235 900 FEE 433304 18344 6018290 2024-02-21 05:34:54.235 2024-02-21 05:34:54.235 8100 TIP 433304 19449 6018301 2024-02-21 05:35:17.634 2024-02-21 05:35:17.634 900 FEE 433248 17365 6018302 2024-02-21 05:35:17.634 2024-02-21 05:35:17.634 8100 TIP 433248 21482 6018314 2024-02-21 05:37:13.065 2024-02-21 05:37:13.065 900 FEE 433268 1320 6018315 2024-02-21 05:37:13.065 2024-02-21 05:37:13.065 8100 TIP 433268 19502 6018318 2024-02-21 05:37:49.57 2024-02-21 05:37:49.57 100 FEE 433039 18705 6018319 2024-02-21 05:37:49.57 2024-02-21 05:37:49.57 900 TIP 433039 18525 6018336 2024-02-21 05:41:23.109 2024-02-21 05:41:23.109 1000 FEE 433383 11477 6018338 2024-02-21 05:42:02.638 2024-02-21 05:42:02.638 1000 STREAM 141924 4083 6018340 2024-02-21 05:42:38.654 2024-02-21 05:42:38.654 0 FEE 433382 749 6018341 2024-02-21 05:42:41.42 2024-02-21 05:42:41.42 10000 FEE 433385 17042 6018348 2024-02-21 05:44:02.629 2024-02-21 05:44:02.629 1000 STREAM 141924 18705 6018350 2024-02-21 05:45:18.609 2024-02-21 05:45:18.609 1000 FEE 433387 1512 6018357 2024-02-21 05:47:53.113 2024-02-21 05:47:53.113 1000 FEE 433388 18743 6018362 2024-02-21 05:49:06.24 2024-02-21 05:49:06.24 1000 POLL 432211 13854 6018382 2024-02-21 05:52:23.901 2024-02-21 05:52:23.901 700 FEE 433391 19346 6018383 2024-02-21 05:52:23.901 2024-02-21 05:52:23.901 6300 TIP 433391 17519 6018391 2024-02-21 05:53:16.385 2024-02-21 05:53:16.385 100 FEE 433385 11144 6018392 2024-02-21 05:53:16.385 2024-02-21 05:53:16.385 900 TIP 433385 7960 6018403 2024-02-21 05:55:27.884 2024-02-21 05:55:27.884 1000 FEE 433398 14225 6018413 2024-02-21 05:58:02.753 2024-02-21 05:58:02.753 1000 STREAM 141924 20022 6018425 2024-02-21 06:02:02.793 2024-02-21 06:02:02.793 1000 STREAM 141924 1881 6018428 2024-02-21 06:03:02.788 2024-02-21 06:03:02.788 1000 STREAM 141924 5036 6018444 2024-02-21 06:04:07.603 2024-02-21 06:04:07.603 7700 FEE 432247 16194 6018445 2024-02-21 06:04:07.603 2024-02-21 06:04:07.603 69300 TIP 432247 19537 6018450 2024-02-21 06:04:08.148 2024-02-21 06:04:08.148 7700 FEE 432247 21281 6018451 2024-02-21 06:04:08.148 2024-02-21 06:04:08.148 69300 TIP 432247 19690 6018457 2024-02-21 06:05:02.894 2024-02-21 06:05:02.894 1000 STREAM 141924 11329 6018465 2024-02-21 06:07:02.863 2024-02-21 06:07:02.863 1000 STREAM 141924 21480 6018470 2024-02-21 06:10:02.905 2024-02-21 06:10:02.905 1000 STREAM 141924 18387 6018471 2024-02-21 06:10:26.202 2024-02-21 06:10:26.202 7700 FEE 433408 20560 6018472 2024-02-21 06:10:26.202 2024-02-21 06:10:26.202 69300 TIP 433408 18473 6018473 2024-02-21 06:11:02.901 2024-02-21 06:11:02.901 1000 STREAM 141924 17523 6018479 2024-02-21 06:12:05.144 2024-02-21 06:12:05.144 2000 FEE 433391 17797 6018480 2024-02-21 06:12:05.144 2024-02-21 06:12:05.144 18000 TIP 433391 9476 6018485 2024-02-21 06:12:06.003 2024-02-21 06:12:06.003 2000 FEE 433391 21400 6018486 2024-02-21 06:12:06.003 2024-02-21 06:12:06.003 18000 TIP 433391 7119 6018495 2024-02-21 06:13:02.897 2024-02-21 06:13:02.897 1000 STREAM 141924 13169 6018496 2024-02-21 06:14:02.91 2024-02-21 06:14:02.91 1000 STREAM 141924 802 6018499 2024-02-21 06:14:25.823 2024-02-21 06:14:25.823 2000 FEE 433001 20993 6018500 2024-02-21 06:14:25.823 2024-02-21 06:14:25.823 18000 TIP 433001 21532 6018501 2024-02-21 06:14:26.083 2024-02-21 06:14:26.083 2000 FEE 433001 18923 6018502 2024-02-21 06:14:26.083 2024-02-21 06:14:26.083 18000 TIP 433001 3353 6018513 2024-02-21 06:14:44.852 2024-02-21 06:14:44.852 2000 FEE 433391 4322 6018514 2024-02-21 06:14:44.852 2024-02-21 06:14:44.852 18000 TIP 433391 14037 6018517 2024-02-21 06:14:45.172 2024-02-21 06:14:45.172 2000 FEE 433391 8841 6018518 2024-02-21 06:14:45.172 2024-02-21 06:14:45.172 18000 TIP 433391 659 6018521 2024-02-21 06:15:02.954 2024-02-21 06:15:02.954 1000 STREAM 141924 18446 6018528 2024-02-21 06:16:02.924 2024-02-21 06:16:02.924 1000 STREAM 141924 9863 6018529 2024-02-21 06:17:02.938 2024-02-21 06:17:02.938 1000 STREAM 141924 20015 6018530 2024-02-21 06:18:02.944 2024-02-21 06:18:02.944 1000 STREAM 141924 21387 6018539 2024-02-21 06:18:33.842 2024-02-21 06:18:33.842 5000 FEE 432933 21369 6018540 2024-02-21 06:18:33.842 2024-02-21 06:18:33.842 45000 TIP 432933 4624 6018551 2024-02-21 06:21:02.96 2024-02-21 06:21:02.96 1000 STREAM 141924 963 6018575 2024-02-21 06:24:41.536 2024-02-21 06:24:41.536 1000 FEE 433123 20436 6018576 2024-02-21 06:24:41.536 2024-02-21 06:24:41.536 9000 TIP 433123 16406 6018581 2024-02-21 06:25:03.013 2024-02-21 06:25:03.013 1000 STREAM 141924 2224 6018589 2024-02-21 06:31:03.096 2024-02-21 06:31:03.096 1000 STREAM 141924 15271 6018591 2024-02-21 06:31:32.323 2024-02-21 06:31:32.323 1000 FEE 433412 14941 6018592 2024-02-21 06:32:03.097 2024-02-21 06:32:03.097 1000 STREAM 141924 18690 6018607 2024-02-21 06:36:03.135 2024-02-21 06:36:03.135 1000 STREAM 141924 20683 6018610 2024-02-21 06:37:03.143 2024-02-21 06:37:03.143 1000 STREAM 141924 20657 6018611 2024-02-21 06:38:03.155 2024-02-21 06:38:03.155 1000 STREAM 141924 644 6018618 2024-02-21 06:42:03.2 2024-02-21 06:42:03.2 1000 STREAM 141924 15491 6018626 2024-02-21 06:44:03.218 2024-02-21 06:44:03.218 1000 STREAM 141924 5160 6018631 2024-02-21 06:45:03.216 2024-02-21 06:45:03.216 1000 STREAM 141924 687 6018634 2024-02-21 06:46:03.242 2024-02-21 06:46:03.242 1000 STREAM 141924 9843 6018636 2024-02-21 06:47:03.237 2024-02-21 06:47:03.237 1000 STREAM 141924 17727 6018640 2024-02-21 06:49:38.195 2024-02-21 06:49:38.195 1000 FEE 433423 16830 6018647 2024-02-21 06:49:55.129 2024-02-21 06:49:55.129 100 FEE 430926 20168 6018648 2024-02-21 06:49:55.129 2024-02-21 06:49:55.129 900 TIP 430926 8173 6018650 2024-02-21 06:50:03.285 2024-02-21 06:50:03.285 1000 STREAM 141924 15180 6018651 2024-02-21 06:50:40.562 2024-02-21 06:50:40.562 1000 FEE 433376 1478 6018652 2024-02-21 06:50:40.562 2024-02-21 06:50:40.562 9000 TIP 433376 11430 6018654 2024-02-21 06:51:03.266 2024-02-21 06:51:03.266 1000 STREAM 141924 18016 6018681 2024-02-21 06:54:25.232 2024-02-21 06:54:25.232 1000 FEE 432199 1389 6018682 2024-02-21 06:54:25.232 2024-02-21 06:54:25.232 9000 TIP 432199 19512 6018686 2024-02-21 06:57:43.907 2024-02-21 06:57:43.907 0 FEE 433425 15560 6018692 2024-02-21 06:58:22.782 2024-02-21 06:58:22.782 1000 FEE 433428 2188 6018727 2024-02-21 07:14:41.268 2024-02-21 07:14:41.268 1000 FEE 433434 18016 6018747 2024-02-21 07:15:27.428 2024-02-21 07:15:27.428 2100 FEE 433244 20301 6018748 2024-02-21 07:15:27.428 2024-02-21 07:15:27.428 18900 TIP 433244 20470 6018757 2024-02-21 07:16:38.088 2024-02-21 07:16:38.088 1000 POLL 433082 9342 6018758 2024-02-21 07:16:41.057 2024-02-21 07:16:41.057 2100 FEE 433082 20674 6018759 2024-02-21 07:16:41.057 2024-02-21 07:16:41.057 18900 TIP 433082 5308 6018781 2024-02-21 07:24:06.12 2024-02-21 07:24:06.12 1000 FEE 433443 17944 6018804 2024-02-21 07:32:13.254 2024-02-21 07:32:13.254 12800 FEE 433442 20479 6018805 2024-02-21 07:32:13.254 2024-02-21 07:32:13.254 115200 TIP 433442 21441 6018806 2024-02-21 07:32:20.421 2024-02-21 07:32:20.421 1000 FEE 433449 19664 6018839 2024-02-21 07:40:14.77 2024-02-21 07:40:14.77 200 FEE 432386 17316 6018840 2024-02-21 07:40:14.77 2024-02-21 07:40:14.77 1800 TIP 432386 12097 6018862 2024-02-21 07:41:45.032 2024-02-21 07:41:45.032 1000 FEE 433456 18177 6018865 2024-02-21 07:42:39.288 2024-02-21 07:42:39.288 2100 FEE 433049 16440 6018866 2024-02-21 07:42:39.288 2024-02-21 07:42:39.288 18900 TIP 433049 19967 6018887 2024-02-21 07:48:26.188 2024-02-21 07:48:26.188 7700 FEE 433066 17522 6018888 2024-02-21 07:48:26.188 2024-02-21 07:48:26.188 69300 TIP 433066 9552 6018895 2024-02-21 07:48:26.882 2024-02-21 07:48:26.882 7700 FEE 433066 14381 6018896 2024-02-21 07:48:26.882 2024-02-21 07:48:26.882 69300 TIP 433066 1354 6018911 2024-02-21 07:54:03.993 2024-02-21 07:54:03.993 0 FEE 433460 3717 6018914 2024-02-21 07:56:48.43 2024-02-21 07:56:48.43 1000 FEE 433461 5779 6018922 2024-02-21 07:59:28.81 2024-02-21 07:59:28.81 0 FEE 433461 7376 6018933 2024-02-21 08:00:12.392 2024-02-21 08:00:12.392 100 FEE 433042 17891 6018934 2024-02-21 08:00:12.392 2024-02-21 08:00:12.392 900 TIP 433042 19943 6019011 2024-02-21 08:23:45.381 2024-02-21 08:23:45.381 2100 FEE 433403 10536 6019012 2024-02-21 08:23:45.381 2024-02-21 08:23:45.381 18900 TIP 433403 15060 6019031 2024-02-21 08:28:51.093 2024-02-21 08:28:51.093 2100 FEE 433429 854 6018429 2024-02-21 06:03:03.274 2024-02-21 06:03:03.274 1000 FEE 433402 20751 6018431 2024-02-21 06:04:02.801 2024-02-21 06:04:02.801 1000 STREAM 141924 12507 6018460 2024-02-21 06:06:02.864 2024-02-21 06:06:02.864 1000 STREAM 141924 9843 6018461 2024-02-21 06:06:29.66 2024-02-21 06:06:29.66 1000 FEE 433359 21514 6018462 2024-02-21 06:06:29.66 2024-02-21 06:06:29.66 9000 TIP 433359 12606 6018466 2024-02-21 06:08:02.87 2024-02-21 06:08:02.87 1000 STREAM 141924 16571 6018468 2024-02-21 06:09:02.877 2024-02-21 06:09:02.877 1000 STREAM 141924 18556 6018474 2024-02-21 06:12:02.9 2024-02-21 06:12:02.9 1000 STREAM 141924 18472 6018483 2024-02-21 06:12:05.816 2024-02-21 06:12:05.816 2000 FEE 433391 21541 6018484 2024-02-21 06:12:05.816 2024-02-21 06:12:05.816 18000 TIP 433391 15978 6018533 2024-02-21 06:18:31.545 2024-02-21 06:18:31.545 5000 FEE 432997 700 6018534 2024-02-21 06:18:31.545 2024-02-21 06:18:31.545 45000 TIP 432997 12562 6018545 2024-02-21 06:18:37.142 2024-02-21 06:18:37.142 5000 FEE 433018 17798 6018546 2024-02-21 06:18:37.142 2024-02-21 06:18:37.142 45000 TIP 433018 6777 6018549 2024-02-21 06:19:02.935 2024-02-21 06:19:02.935 1000 STREAM 141924 11145 6018552 2024-02-21 06:21:08.848 2024-02-21 06:21:08.848 2100 FEE 433359 14169 6018553 2024-02-21 06:21:08.848 2024-02-21 06:21:08.848 18900 TIP 433359 19524 6018561 2024-02-21 06:22:20.742 2024-02-21 06:22:20.742 2100 FEE 433377 10352 6018562 2024-02-21 06:22:20.742 2024-02-21 06:22:20.742 18900 TIP 433377 8245 6018565 2024-02-21 06:23:02.994 2024-02-21 06:23:02.994 1000 STREAM 141924 909 6018566 2024-02-21 06:24:02.995 2024-02-21 06:24:02.995 1000 STREAM 141924 1465 6018579 2024-02-21 06:24:42.339 2024-02-21 06:24:42.339 1000 FEE 433123 987 6018580 2024-02-21 06:24:42.339 2024-02-21 06:24:42.339 9000 TIP 433123 11670 6018582 2024-02-21 06:26:03.032 2024-02-21 06:26:03.032 1000 STREAM 141924 4173 6018583 2024-02-21 06:27:03.041 2024-02-21 06:27:03.041 1000 STREAM 141924 1618 6018585 2024-02-21 06:29:03.062 2024-02-21 06:29:03.062 1000 STREAM 141924 18359 6018586 2024-02-21 06:30:03.111 2024-02-21 06:30:03.111 1000 STREAM 141924 679 6018595 2024-02-21 06:33:03.118 2024-02-21 06:33:03.118 1000 STREAM 141924 5752 6018597 2024-02-21 06:33:06.863 2024-02-21 06:33:06.863 10000 FEE 433391 9364 6018598 2024-02-21 06:33:06.863 2024-02-21 06:33:06.863 90000 TIP 433391 2639 6018601 2024-02-21 06:34:03.141 2024-02-21 06:34:03.141 1000 STREAM 141924 14503 6018609 2024-02-21 06:37:00.445 2024-02-21 06:37:00.445 1000 FEE 433417 1577 6018612 2024-02-21 06:39:03.174 2024-02-21 06:39:03.174 1000 STREAM 141924 10944 6018616 2024-02-21 06:40:03.214 2024-02-21 06:40:03.214 1000 STREAM 141924 17221 6018617 2024-02-21 06:41:03.195 2024-02-21 06:41:03.195 1000 STREAM 141924 18453 6018619 2024-02-21 06:43:03.209 2024-02-21 06:43:03.209 1000 STREAM 141924 12268 6018637 2024-02-21 06:48:03.249 2024-02-21 06:48:03.249 1000 STREAM 141924 15488 6018638 2024-02-21 06:49:03.256 2024-02-21 06:49:03.256 1000 STREAM 141924 4538 6018639 2024-02-21 06:49:20.397 2024-02-21 06:49:20.397 5000 FEE 433422 10060 6018649 2024-02-21 06:50:01.767 2024-02-21 06:50:01.767 1000 FEE 433424 5306 6018655 2024-02-21 06:52:03.27 2024-02-21 06:52:03.27 1000 STREAM 141924 20157 6018657 2024-02-21 06:53:03.288 2024-02-21 06:53:03.288 1000 STREAM 141924 9352 6018660 2024-02-21 06:54:03.291 2024-02-21 06:54:03.291 1000 STREAM 141924 5746 6018665 2024-02-21 06:54:09.444 2024-02-21 06:54:09.444 1000 FEE 433302 10591 6018666 2024-02-21 06:54:09.444 2024-02-21 06:54:09.444 9000 TIP 433302 1596 6018723 2024-02-21 07:13:27.047 2024-02-21 07:13:27.047 2000 FEE 433391 17124 6018724 2024-02-21 07:13:27.047 2024-02-21 07:13:27.047 18000 TIP 433391 1425 6018725 2024-02-21 07:13:43.533 2024-02-21 07:13:43.533 0 FEE 383547 6741 6018745 2024-02-21 07:15:26.784 2024-02-21 07:15:26.784 2100 FEE 433373 20452 6018746 2024-02-21 07:15:26.784 2024-02-21 07:15:26.784 18900 TIP 433373 12768 6018751 2024-02-21 07:15:28.973 2024-02-21 07:15:28.973 2100 FEE 433304 21292 6018752 2024-02-21 07:15:28.973 2024-02-21 07:15:28.973 18900 TIP 433304 14152 6018763 2024-02-21 07:17:27.665 2024-02-21 07:17:27.665 1000 FEE 433436 8416 6018771 2024-02-21 07:20:55.541 2024-02-21 07:20:55.541 2100 FEE 433110 3304 6018772 2024-02-21 07:20:55.541 2024-02-21 07:20:55.541 18900 TIP 433110 2829 6018818 2024-02-21 07:36:28.714 2024-02-21 07:36:28.714 1000 FEE 433451 21401 6018819 2024-02-21 07:36:28.714 2024-02-21 07:36:28.714 9000 TIP 433451 956 6018845 2024-02-21 07:40:15.266 2024-02-21 07:40:15.266 200 FEE 432386 2735 6018846 2024-02-21 07:40:15.266 2024-02-21 07:40:15.266 1800 TIP 432386 2735 6018849 2024-02-21 07:40:15.739 2024-02-21 07:40:15.739 200 FEE 432386 18774 6018850 2024-02-21 07:40:15.739 2024-02-21 07:40:15.739 1800 TIP 432386 626 6018857 2024-02-21 07:40:24.212 2024-02-21 07:40:24.212 1000 FEE 433342 13246 6018858 2024-02-21 07:40:24.212 2024-02-21 07:40:24.212 9000 TIP 433342 9551 6018859 2024-02-21 07:40:32.799 2024-02-21 07:40:32.799 1000 FEE 433454 21021 6018891 2024-02-21 07:48:26.506 2024-02-21 07:48:26.506 7700 FEE 433066 13204 6018892 2024-02-21 07:48:26.506 2024-02-21 07:48:26.506 69300 TIP 433066 20745 6018915 2024-02-21 07:56:59.397 2024-02-21 07:56:59.397 0 FEE 433461 17046 6018919 2024-02-21 07:58:55.534 2024-02-21 07:58:55.534 0 FEE 433461 4059 6018944 2024-02-21 08:03:17.68 2024-02-21 08:03:17.68 1000 FEE 433466 14545 6018950 2024-02-21 08:04:24.971 2024-02-21 08:04:24.971 0 FEE 433466 5129 6018962 2024-02-21 08:09:26.583 2024-02-21 08:09:26.583 2100 FEE 431474 616 6018963 2024-02-21 08:09:26.583 2024-02-21 08:09:26.583 18900 TIP 431474 20979 6018973 2024-02-21 08:12:39.608 2024-02-21 08:12:39.608 2100 FEE 433459 1244 6018974 2024-02-21 08:12:39.608 2024-02-21 08:12:39.608 18900 TIP 433459 4415 6018977 2024-02-21 08:13:06.091 2024-02-21 08:13:06.091 10000 FEE 432920 20840 6018978 2024-02-21 08:13:06.091 2024-02-21 08:13:06.091 90000 TIP 432920 642 6018982 2024-02-21 08:14:13.65 2024-02-21 08:14:13.65 0 FEE 433473 8570 6019006 2024-02-21 08:22:46.977 2024-02-21 08:22:46.977 2100 FEE 433439 12736 6019007 2024-02-21 08:22:46.977 2024-02-21 08:22:46.977 18900 TIP 433439 20871 6019107 2024-02-21 08:53:26.581 2024-02-21 08:53:26.581 1000 FEE 392558 16649 6019108 2024-02-21 08:53:26.581 2024-02-21 08:53:26.581 9000 TIP 392558 2722 6019121 2024-02-21 08:58:47.388 2024-02-21 08:58:47.388 0 FEE 433488 19661 6019128 2024-02-21 08:59:50.751 2024-02-21 08:59:50.751 800 FEE 433369 16177 6019129 2024-02-21 08:59:50.751 2024-02-21 08:59:50.751 7200 TIP 433369 18291 6019131 2024-02-21 09:00:05.121 2024-02-21 09:00:05.121 100000 FEE 433491 21600 6019144 2024-02-21 09:04:33.713 2024-02-21 09:04:33.713 500 FEE 432473 8133 6019145 2024-02-21 09:04:33.713 2024-02-21 09:04:33.713 4500 TIP 432473 11698 6019151 2024-02-21 09:07:53.247 2024-02-21 09:07:53.247 1000 FEE 433497 3456 6019153 2024-02-21 09:08:31.69 2024-02-21 09:08:31.69 2100 FEE 433484 20757 6019154 2024-02-21 09:08:31.69 2024-02-21 09:08:31.69 18900 TIP 433484 21201 6019218 2024-02-21 09:26:18.548 2024-02-21 09:26:18.548 1000 FEE 433505 2224 6019219 2024-02-21 09:26:18.548 2024-02-21 09:26:18.548 9000 TIP 433505 4984 6019224 2024-02-21 09:26:31.912 2024-02-21 09:26:31.912 1000 FEE 433114 1673 6019225 2024-02-21 09:26:31.912 2024-02-21 09:26:31.912 9000 TIP 433114 18344 6019234 2024-02-21 09:26:41.011 2024-02-21 09:26:41.011 1600 FEE 432489 21418 6019235 2024-02-21 09:26:41.011 2024-02-21 09:26:41.011 14400 TIP 432489 16126 6019251 2024-02-21 09:27:18.274 2024-02-21 09:27:18.274 1000 FEE 433403 12188 6019252 2024-02-21 09:27:18.274 2024-02-21 09:27:18.274 9000 TIP 433403 19878 6019260 2024-02-21 09:27:49.375 2024-02-21 09:27:49.375 1000 FEE 433217 1817 6019261 2024-02-21 09:27:49.375 2024-02-21 09:27:49.375 9000 TIP 433217 18387 6019270 2024-02-21 09:27:53.603 2024-02-21 09:27:53.603 1000 FEE 433448 20022 6019271 2024-02-21 09:27:53.603 2024-02-21 09:27:53.603 9000 TIP 433448 20436 6019280 2024-02-21 09:28:00.246 2024-02-21 09:28:00.246 1000 FEE 433318 16301 6019281 2024-02-21 09:28:00.246 2024-02-21 09:28:00.246 9000 TIP 433318 803 6019287 2024-02-21 09:28:06.895 2024-02-21 09:28:06.895 1000 FEE 433438 17741 6019288 2024-02-21 09:28:06.895 2024-02-21 09:28:06.895 9000 TIP 433438 19843 6019293 2024-02-21 09:28:34.458 2024-02-21 09:28:34.458 1000 FEE 432910 721 6018453 2024-02-21 06:04:08.322 2024-02-21 06:04:08.322 69300 TIP 432247 9345 6018475 2024-02-21 06:12:04.806 2024-02-21 06:12:04.806 2000 FEE 433391 4083 6018476 2024-02-21 06:12:04.806 2024-02-21 06:12:04.806 18000 TIP 433391 18923 6018509 2024-02-21 06:14:28.61 2024-02-21 06:14:28.61 2000 FEE 432889 19153 6018510 2024-02-21 06:14:28.61 2024-02-21 06:14:28.61 18000 TIP 432889 993 6018556 2024-02-21 06:21:58.365 2024-02-21 06:21:58.365 2100 FEE 433344 20153 6018557 2024-02-21 06:21:58.365 2024-02-21 06:21:58.365 18900 TIP 433344 11516 6018559 2024-02-21 06:22:03.181 2024-02-21 06:22:03.181 2100 FEE 433373 10291 6018560 2024-02-21 06:22:03.181 2024-02-21 06:22:03.181 18900 TIP 433373 623 6018571 2024-02-21 06:24:40.754 2024-02-21 06:24:40.754 1000 FEE 433123 17682 6018572 2024-02-21 06:24:40.754 2024-02-21 06:24:40.754 9000 TIP 433123 4115 6018587 2024-02-21 06:30:49.182 2024-02-21 06:30:49.182 1000 FEE 433409 8926 6018600 2024-02-21 06:33:12.73 2024-02-21 06:33:12.73 1000 FEE 433415 15526 6018663 2024-02-21 06:54:08.885 2024-02-21 06:54:08.885 1000 FEE 433302 17415 6018664 2024-02-21 06:54:08.885 2024-02-21 06:54:08.885 9000 TIP 433302 21332 6018671 2024-02-21 06:54:21.46 2024-02-21 06:54:21.46 1000 FEE 432199 19878 6018672 2024-02-21 06:54:21.46 2024-02-21 06:54:21.46 9000 TIP 432199 19906 6018673 2024-02-21 06:54:22.138 2024-02-21 06:54:22.138 1000 FEE 432199 12158 6018674 2024-02-21 06:54:22.138 2024-02-21 06:54:22.138 9000 TIP 432199 20179 6018675 2024-02-21 06:54:22.75 2024-02-21 06:54:22.75 1000 FEE 432199 16680 6018676 2024-02-21 06:54:22.75 2024-02-21 06:54:22.75 9000 TIP 432199 16351 6018677 2024-02-21 06:54:23.319 2024-02-21 06:54:23.319 1000 FEE 432199 20993 6018678 2024-02-21 06:54:23.319 2024-02-21 06:54:23.319 9000 TIP 432199 16004 6018679 2024-02-21 06:54:24.067 2024-02-21 06:54:24.067 1000 FEE 432199 649 6018680 2024-02-21 06:54:24.067 2024-02-21 06:54:24.067 9000 TIP 432199 1320 6018697 2024-02-21 07:00:04.544 2024-02-21 07:00:04.544 100000 FEE 433429 1298 6018698 2024-02-21 07:00:04.965 2024-02-21 07:00:04.965 1000 FEE 433430 18468 6018709 2024-02-21 07:04:47.572 2024-02-21 07:04:47.572 100 FEE 433344 17827 6018710 2024-02-21 07:04:47.572 2024-02-21 07:04:47.572 900 TIP 433344 7983 6018715 2024-02-21 07:09:02.192 2024-02-21 07:09:02.192 100000 FEE 433431 18727 6018717 2024-02-21 07:09:39.709 2024-02-21 07:09:39.709 21000 FEE 433432 19096 6018737 2024-02-21 07:15:19.764 2024-02-21 07:15:19.764 2100 FEE 433344 21104 6018738 2024-02-21 07:15:19.764 2024-02-21 07:15:19.764 18900 TIP 433344 2583 6018739 2024-02-21 07:15:21.595 2024-02-21 07:15:21.595 2100 FEE 433359 632 6018740 2024-02-21 07:15:21.595 2024-02-21 07:15:21.595 18900 TIP 433359 18220 6018770 2024-02-21 07:20:42.012 2024-02-21 07:20:42.012 1000 FEE 433440 1723 6018786 2024-02-21 07:26:11.471 2024-02-21 07:26:11.471 1000 FEE 433347 711 6018787 2024-02-21 07:26:11.471 2024-02-21 07:26:11.471 9000 TIP 433347 18828 6018789 2024-02-21 07:27:17.111 2024-02-21 07:27:17.111 12800 FEE 433347 19303 6018790 2024-02-21 07:27:17.111 2024-02-21 07:27:17.111 115200 TIP 433347 21501 6018873 2024-02-21 07:44:50.381 2024-02-21 07:44:50.381 1000 FEE 430338 2010 6018874 2024-02-21 07:44:50.381 2024-02-21 07:44:50.381 9000 TIP 430338 736 6018876 2024-02-21 07:45:25.613 2024-02-21 07:45:25.613 10000 FEE 433373 12188 6018877 2024-02-21 07:45:25.613 2024-02-21 07:45:25.613 90000 TIP 433373 1493 6018899 2024-02-21 07:48:27.216 2024-02-21 07:48:27.216 7700 FEE 433066 8569 6018900 2024-02-21 07:48:27.216 2024-02-21 07:48:27.216 69300 TIP 433066 11590 6018928 2024-02-21 08:00:01.611 2024-02-21 08:00:01.611 100 FEE 433123 20646 6018929 2024-02-21 08:00:01.611 2024-02-21 08:00:01.611 900 TIP 433123 4083 6018939 2024-02-21 08:00:26.966 2024-02-21 08:00:26.966 400 FEE 433375 19309 6018940 2024-02-21 08:00:26.966 2024-02-21 08:00:26.966 3600 TIP 433375 14774 6018954 2024-02-21 08:06:00.949 2024-02-21 08:06:00.949 1000 FEE 433468 797 6018964 2024-02-21 08:09:44.233 2024-02-21 08:09:44.233 10000 FEE 433470 21357 6018966 2024-02-21 08:11:02.655 2024-02-21 08:11:02.655 1000 FEE 433471 4074 6018980 2024-02-21 08:14:03.618 2024-02-21 08:14:03.618 1000 FEE 433474 21166 6018986 2024-02-21 08:15:47.158 2024-02-21 08:15:47.158 2500 FEE 433435 21238 6018987 2024-02-21 08:15:47.158 2024-02-21 08:15:47.158 22500 TIP 433435 814 6019004 2024-02-21 08:22:41.666 2024-02-21 08:22:41.666 2100 FEE 433435 20222 6019005 2024-02-21 08:22:41.666 2024-02-21 08:22:41.666 18900 TIP 433435 18225 6019033 2024-02-21 08:28:51.978 2024-02-21 08:28:51.978 2100 FEE 433403 5701 6019034 2024-02-21 08:28:51.978 2024-02-21 08:28:51.978 18900 TIP 433403 3506 6019045 2024-02-21 08:32:14.543 2024-02-21 08:32:14.543 0 FEE 433479 19907 6019048 2024-02-21 08:33:44.452 2024-02-21 08:33:44.452 500 FEE 432674 16542 6019049 2024-02-21 08:33:44.452 2024-02-21 08:33:44.452 4500 TIP 432674 20246 6019059 2024-02-21 08:36:28.693 2024-02-21 08:36:28.693 0 FEE 433480 1881 6019064 2024-02-21 08:38:21.476 2024-02-21 08:38:21.476 1000 FEE 433482 10608 6019096 2024-02-21 08:50:36.203 2024-02-21 08:50:36.203 0 FEE 433485 19292 6019122 2024-02-21 08:58:51.623 2024-02-21 08:58:51.623 1000 FEE 433490 19158 6019126 2024-02-21 08:59:29.473 2024-02-21 08:59:29.473 1000 FEE 433485 20754 6019127 2024-02-21 08:59:29.473 2024-02-21 08:59:29.473 9000 TIP 433485 19841 6019138 2024-02-21 09:04:01.084 2024-02-21 09:04:01.084 6400 FEE 433440 16660 6019139 2024-02-21 09:04:01.084 2024-02-21 09:04:01.084 57600 TIP 433440 5646 6019141 2024-02-21 09:04:18.782 2024-02-21 09:04:18.782 500 FEE 432647 9364 6019142 2024-02-21 09:04:18.782 2024-02-21 09:04:18.782 4500 TIP 432647 2075 6019143 2024-02-21 09:04:25.737 2024-02-21 09:04:25.737 1000 FEE 433494 4624 6019149 2024-02-21 09:06:21.018 2024-02-21 09:06:21.018 10000 FEE 433496 19929 6019157 2024-02-21 09:09:16.178 2024-02-21 09:09:16.178 1600 FEE 433391 1785 6019158 2024-02-21 09:09:16.178 2024-02-21 09:09:16.178 14400 TIP 433391 2674 6019172 2024-02-21 09:14:35.018 2024-02-21 09:14:35.018 1000 FEE 433501 13553 6019173 2024-02-21 09:14:53.102 2024-02-21 09:14:53.102 100000 FEE 433502 13931 6019184 2024-02-21 09:20:06.182 2024-02-21 09:20:06.182 10000 FEE 432925 3706 6019185 2024-02-21 09:20:06.182 2024-02-21 09:20:06.182 90000 TIP 432925 15045 6019201 2024-02-21 09:25:15.302 2024-02-21 09:25:15.302 1000 FEE 433510 20514 6019208 2024-02-21 09:26:07.052 2024-02-21 09:26:07.052 100 FEE 433436 20546 6019209 2024-02-21 09:26:07.052 2024-02-21 09:26:07.052 900 TIP 433436 10849 6019210 2024-02-21 09:26:07.358 2024-02-21 09:26:07.358 100 FEE 433436 9307 6019211 2024-02-21 09:26:07.358 2024-02-21 09:26:07.358 900 TIP 433436 1307 6019216 2024-02-21 09:26:09.503 2024-02-21 09:26:09.503 1000 FEE 433514 7418 6019246 2024-02-21 09:26:46.595 2024-02-21 09:26:46.595 1000 FEE 433087 21343 6019247 2024-02-21 09:26:46.595 2024-02-21 09:26:46.595 9000 TIP 433087 10493 6019253 2024-02-21 09:27:25.2 2024-02-21 09:27:25.2 0 FEE 433513 19961 6019262 2024-02-21 09:27:49.747 2024-02-21 09:27:49.747 1000 FEE 433187 16059 6019263 2024-02-21 09:27:49.747 2024-02-21 09:27:49.747 9000 TIP 433187 19535 6019289 2024-02-21 09:28:07.489 2024-02-21 09:28:07.489 1000 FEE 433267 19507 6019290 2024-02-21 09:28:07.489 2024-02-21 09:28:07.489 9000 TIP 433267 14795 6019332 2024-02-21 09:28:51.818 2024-02-21 09:28:51.818 1000 FEE 433449 2748 6019333 2024-02-21 09:28:51.818 2024-02-21 09:28:51.818 9000 TIP 433449 19417 6019338 2024-02-21 09:28:54.402 2024-02-21 09:28:54.402 1000 FEE 433236 21064 6019339 2024-02-21 09:28:54.402 2024-02-21 09:28:54.402 9000 TIP 433236 16505 6019356 2024-02-21 09:29:01.215 2024-02-21 09:29:01.215 1000 FEE 433007 18727 6019357 2024-02-21 09:29:01.215 2024-02-21 09:29:01.215 9000 TIP 433007 15925 6019369 2024-02-21 09:29:06.332 2024-02-21 09:29:06.332 1000 FEE 433023 714 6019370 2024-02-21 09:29:06.332 2024-02-21 09:29:06.332 9000 TIP 433023 18817 6019393 2024-02-21 09:29:18.82 2024-02-21 09:29:18.82 1000 FEE 433199 20776 6019394 2024-02-21 09:29:18.82 2024-02-21 09:29:18.82 9000 TIP 433199 21014 6019403 2024-02-21 09:29:25.544 2024-02-21 09:29:25.544 1000 FEE 433014 18836 6019404 2024-02-21 09:29:25.544 2024-02-21 09:29:25.544 9000 TIP 433014 21413 6019436 2024-02-21 09:33:13.464 2024-02-21 09:33:13.464 1000 FEE 433521 1959 6018482 2024-02-21 06:12:05.298 2024-02-21 06:12:05.298 18000 TIP 433391 15146 6018489 2024-02-21 06:12:18.211 2024-02-21 06:12:18.211 2000 FEE 433304 1465 6018490 2024-02-21 06:12:18.211 2024-02-21 06:12:18.211 18000 TIP 433304 16442 6018493 2024-02-21 06:12:26.084 2024-02-21 06:12:26.084 2000 FEE 433373 19398 6018494 2024-02-21 06:12:26.084 2024-02-21 06:12:26.084 18000 TIP 433373 18306 6018535 2024-02-21 06:18:31.586 2024-02-21 06:18:31.586 5000 FEE 432998 15762 6018536 2024-02-21 06:18:31.586 2024-02-21 06:18:31.586 45000 TIP 432998 20970 6018541 2024-02-21 06:18:34.825 2024-02-21 06:18:34.825 5000 FEE 432819 1245 6018542 2024-02-21 06:18:34.825 2024-02-21 06:18:34.825 45000 TIP 432819 4538 6018550 2024-02-21 06:20:02.771 2024-02-21 06:20:02.771 1000 STREAM 141924 1983 6018554 2024-02-21 06:21:16.161 2024-02-21 06:21:16.161 2100 FEE 433391 19007 6018555 2024-02-21 06:21:16.161 2024-02-21 06:21:16.161 18900 TIP 433391 2789 6018558 2024-02-21 06:22:02.733 2024-02-21 06:22:02.733 1000 STREAM 141924 16485 6018584 2024-02-21 06:28:02.762 2024-02-21 06:28:02.762 1000 STREAM 141924 2577 6018593 2024-02-21 06:32:45.796 2024-02-21 06:32:45.796 12800 FEE 433365 20264 6018594 2024-02-21 06:32:45.796 2024-02-21 06:32:45.796 115200 TIP 433365 2748 6018602 2024-02-21 06:35:02.8 2024-02-21 06:35:02.8 1000 STREAM 141924 21342 6018629 2024-02-21 06:44:39.654 2024-02-21 06:44:39.654 10000 FEE 433419 13055 6018630 2024-02-21 06:44:44.057 2024-02-21 06:44:44.057 1000 FEE 433420 14774 6018632 2024-02-21 06:45:19.122 2024-02-21 06:45:19.122 5000 FEE 433217 1814 6018633 2024-02-21 06:45:19.122 2024-02-21 06:45:19.122 45000 TIP 433217 19030 6018645 2024-02-21 06:49:45.909 2024-02-21 06:49:45.909 1000 FEE 433248 20912 6018646 2024-02-21 06:49:45.909 2024-02-21 06:49:45.909 9000 TIP 433248 21493 6018661 2024-02-21 06:54:08.46 2024-02-21 06:54:08.46 1000 FEE 433302 10013 6018662 2024-02-21 06:54:08.46 2024-02-21 06:54:08.46 9000 TIP 433302 1483 6018683 2024-02-21 06:55:03.055 2024-02-21 06:55:03.055 1000 STREAM 141924 963 6018684 2024-02-21 06:56:03.069 2024-02-21 06:56:03.069 1000 STREAM 141924 2367 6018685 2024-02-21 06:57:03.082 2024-02-21 06:57:03.082 1000 STREAM 141924 21575 6018689 2024-02-21 06:58:03.099 2024-02-21 06:58:03.099 1000 STREAM 141924 20788 6018693 2024-02-21 06:59:03.123 2024-02-21 06:59:03.123 1000 STREAM 141924 5758 6018696 2024-02-21 07:00:03.188 2024-02-21 07:00:03.188 1000 STREAM 141924 18995 6018699 2024-02-21 07:01:03.184 2024-02-21 07:01:03.184 1000 STREAM 141924 1881 6018702 2024-02-21 07:02:03.175 2024-02-21 07:02:03.175 1000 STREAM 141924 11018 6018703 2024-02-21 07:02:13.335 2024-02-21 07:02:13.335 1000 FEE 433302 794 6018704 2024-02-21 07:02:13.335 2024-02-21 07:02:13.335 9000 TIP 433302 18989 6018705 2024-02-21 07:03:03.197 2024-02-21 07:03:03.197 1000 STREAM 141924 18932 6018708 2024-02-21 07:04:03.213 2024-02-21 07:04:03.213 1000 STREAM 141924 18625 6018711 2024-02-21 07:05:03.224 2024-02-21 07:05:03.224 1000 STREAM 141924 1244 6018712 2024-02-21 07:06:03.231 2024-02-21 07:06:03.231 1000 STREAM 141924 8416 6018713 2024-02-21 07:07:03.247 2024-02-21 07:07:03.247 1000 STREAM 141924 19886 6018714 2024-02-21 07:08:03.263 2024-02-21 07:08:03.263 1000 STREAM 141924 5520 6018716 2024-02-21 07:09:03.273 2024-02-21 07:09:03.273 1000 STREAM 141924 4238 6018718 2024-02-21 07:10:03.287 2024-02-21 07:10:03.287 1000 STREAM 141924 19094 6018720 2024-02-21 07:11:03.078 2024-02-21 07:11:03.078 1000 STREAM 141924 21402 6018721 2024-02-21 07:12:03.313 2024-02-21 07:12:03.313 1000 STREAM 141924 18232 6018722 2024-02-21 07:13:04.682 2024-02-21 07:13:04.682 1000 STREAM 141924 21620 6018726 2024-02-21 07:14:04.674 2024-02-21 07:14:04.674 1000 STREAM 141924 635 6018728 2024-02-21 07:15:03.35 2024-02-21 07:15:03.35 1000 STREAM 141924 20006 6018729 2024-02-21 07:15:15.844 2024-02-21 07:15:15.844 2100 FEE 433391 1772 6018730 2024-02-21 07:15:15.844 2024-02-21 07:15:15.844 18900 TIP 433391 12976 6018753 2024-02-21 07:16:03.364 2024-02-21 07:16:03.364 1000 STREAM 141924 11760 6018762 2024-02-21 07:17:03.379 2024-02-21 07:17:03.379 1000 STREAM 141924 9833 6018764 2024-02-21 07:18:03.39 2024-02-21 07:18:03.39 1000 STREAM 141924 7847 6018765 2024-02-21 07:19:03.413 2024-02-21 07:19:03.413 1000 STREAM 141924 4345 6018766 2024-02-21 07:19:11.871 2024-02-21 07:19:11.871 1000 FEE 433437 19511 6018767 2024-02-21 07:19:44.436 2024-02-21 07:19:44.436 1000 FEE 433438 19837 6018769 2024-02-21 07:20:03.411 2024-02-21 07:20:03.411 1000 STREAM 141924 4692 6018773 2024-02-21 07:21:03.079 2024-02-21 07:21:03.079 1000 STREAM 141924 21393 6018776 2024-02-21 07:22:03.087 2024-02-21 07:22:03.087 1000 STREAM 141924 837 6018777 2024-02-21 07:23:04.818 2024-02-21 07:23:04.818 1000 STREAM 141924 19138 6018780 2024-02-21 07:24:03.083 2024-02-21 07:24:03.083 1000 STREAM 141924 19417 6018784 2024-02-21 07:25:03.081 2024-02-21 07:25:03.081 1000 STREAM 141924 5499 6018785 2024-02-21 07:26:03.1 2024-02-21 07:26:03.1 1000 STREAM 141924 5794 6018788 2024-02-21 07:27:04.833 2024-02-21 07:27:04.833 1000 STREAM 141924 8729 6018794 2024-02-21 07:28:03.112 2024-02-21 07:28:03.112 1000 STREAM 141924 16665 6018797 2024-02-21 07:29:04.853 2024-02-21 07:29:04.853 1000 STREAM 141924 1488 6018799 2024-02-21 07:30:03.12 2024-02-21 07:30:03.12 1000 STREAM 141924 9874 6018801 2024-02-21 07:31:03.129 2024-02-21 07:31:03.129 1000 STREAM 141924 21451 6018803 2024-02-21 07:32:04.856 2024-02-21 07:32:04.856 1000 STREAM 141924 20156 6018807 2024-02-21 07:32:22.827 2024-02-21 07:32:22.827 1000 FEE 433450 10771 6018810 2024-02-21 07:33:04.86 2024-02-21 07:33:04.86 1000 STREAM 141924 7986 6018811 2024-02-21 07:34:04.883 2024-02-21 07:34:04.883 1000 STREAM 141924 16329 6018814 2024-02-21 07:34:58.85 2024-02-21 07:34:58.85 1000 FEE 433451 12277 6018815 2024-02-21 07:35:04.884 2024-02-21 07:35:04.884 1000 STREAM 141924 18731 6018816 2024-02-21 07:36:04.882 2024-02-21 07:36:04.882 1000 STREAM 141924 19929 6018817 2024-02-21 07:36:08.375 2024-02-21 07:36:08.375 1000 FEE 433452 21365 6018820 2024-02-21 07:37:04.898 2024-02-21 07:37:04.898 1000 STREAM 141924 1726 6018821 2024-02-21 07:38:04.895 2024-02-21 07:38:04.895 1000 STREAM 141924 1817 6018822 2024-02-21 07:38:18.718 2024-02-21 07:38:18.718 1000 FEE 433326 21427 6018823 2024-02-21 07:38:18.718 2024-02-21 07:38:18.718 9000 TIP 433326 697 6018825 2024-02-21 07:39:03.172 2024-02-21 07:39:03.172 1000 STREAM 141924 18941 6018828 2024-02-21 07:40:03.161 2024-02-21 07:40:03.161 1000 STREAM 141924 21446 6018837 2024-02-21 07:40:14.477 2024-02-21 07:40:14.477 200 FEE 432386 21148 6018838 2024-02-21 07:40:14.477 2024-02-21 07:40:14.477 1800 TIP 432386 19267 6018860 2024-02-21 07:41:04.919 2024-02-21 07:41:04.919 1000 STREAM 141924 19030 6018863 2024-02-21 07:42:03.641 2024-02-21 07:42:03.641 1000 STREAM 141924 14515 6018867 2024-02-21 07:43:03.649 2024-02-21 07:43:03.649 1000 STREAM 141924 6003 6018868 2024-02-21 07:44:03.392 2024-02-21 07:44:03.392 1000 STREAM 141924 21090 6018875 2024-02-21 07:45:03.625 2024-02-21 07:45:03.625 1000 STREAM 141924 19841 6018878 2024-02-21 07:46:03.655 2024-02-21 07:46:03.655 1000 STREAM 141924 17455 6018879 2024-02-21 07:46:09.935 2024-02-21 07:46:09.935 1000 FEE 433457 1394 6018882 2024-02-21 07:47:03.662 2024-02-21 07:47:03.662 1000 STREAM 141924 7966 6018883 2024-02-21 07:47:19.347 2024-02-21 07:47:19.347 1000 FEE 433458 7674 6018884 2024-02-21 07:48:03.655 2024-02-21 07:48:03.655 1000 STREAM 141924 1697 6018885 2024-02-21 07:48:25.62 2024-02-21 07:48:25.62 7700 FEE 433066 18862 6018886 2024-02-21 07:48:25.62 2024-02-21 07:48:25.62 69300 TIP 433066 1576 6018904 2024-02-21 07:49:03.673 2024-02-21 07:49:03.673 1000 STREAM 141924 21033 6018905 2024-02-21 07:50:03.723 2024-02-21 07:50:03.723 1000 STREAM 141924 2757 6018906 2024-02-21 07:51:03.676 2024-02-21 07:51:03.676 1000 STREAM 141924 19189 6018907 2024-02-21 07:52:03.506 2024-02-21 07:52:03.506 1000 STREAM 141924 20969 6018908 2024-02-21 07:53:03.67 2024-02-21 07:53:03.67 1000 STREAM 141924 20087 6018910 2024-02-21 07:54:03.693 2024-02-21 07:54:03.693 1000 STREAM 141924 18769 6018912 2024-02-21 07:55:03.694 2024-02-21 07:55:03.694 1000 STREAM 141924 2232 6018913 2024-02-21 07:56:03.701 2024-02-21 07:56:03.701 1000 STREAM 141924 669 6018916 2024-02-21 07:57:03.709 2024-02-21 07:57:03.709 1000 STREAM 141924 21357 6018917 2024-02-21 07:58:03.703 2024-02-21 07:58:03.703 1000 STREAM 141924 18426 6018920 2024-02-21 07:59:03.712 2024-02-21 07:59:03.712 1000 STREAM 141924 2757 6018930 2024-02-21 08:00:03.749 2024-02-21 08:00:03.749 1000 STREAM 141924 20208 6018941 2024-02-21 08:01:05.051 2024-02-21 08:01:05.051 1000 STREAM 141924 19553 6018942 2024-02-21 08:02:05.066 2024-02-21 08:02:05.066 1000 STREAM 141924 14959 6018943 2024-02-21 08:03:05.068 2024-02-21 08:03:05.068 1000 STREAM 141924 7891 6018947 2024-02-21 08:04:05.076 2024-02-21 08:04:05.076 1000 STREAM 141924 15119 6018952 2024-02-21 08:05:05.109 2024-02-21 08:05:05.109 1000 STREAM 141924 7583 6018955 2024-02-21 08:06:05.096 2024-02-21 08:06:05.096 1000 STREAM 141924 18680 6018958 2024-02-21 08:07:05.103 2024-02-21 08:07:05.103 1000 STREAM 141924 18735 6018959 2024-02-21 08:08:05.093 2024-02-21 08:08:05.093 1000 STREAM 141924 4388 6018961 2024-02-21 08:09:05.109 2024-02-21 08:09:05.109 1000 STREAM 141924 19033 6018965 2024-02-21 08:10:05.168 2024-02-21 08:10:05.168 1000 STREAM 141924 2513 6018967 2024-02-21 08:11:05.139 2024-02-21 08:11:05.139 1000 STREAM 141924 980 6018972 2024-02-21 08:12:05.167 2024-02-21 08:12:05.167 1000 STREAM 141924 20616 6018976 2024-02-21 08:13:05.177 2024-02-21 08:13:05.177 1000 STREAM 141924 21605 6018981 2024-02-21 08:14:05.164 2024-02-21 08:14:05.164 1000 STREAM 141924 19583 6018983 2024-02-21 08:15:05.194 2024-02-21 08:15:05.194 1000 STREAM 141924 9863 6018990 2024-02-21 08:16:05.212 2024-02-21 08:16:05.212 1000 STREAM 141924 9552 6018991 2024-02-21 08:17:05.228 2024-02-21 08:17:05.228 1000 STREAM 141924 8570 6018992 2024-02-21 08:18:05.232 2024-02-21 08:18:05.232 1000 STREAM 141924 16282 6018993 2024-02-21 08:19:05.239 2024-02-21 08:19:05.239 1000 STREAM 141924 706 6018996 2024-02-21 08:20:05.25 2024-02-21 08:20:05.25 1000 STREAM 141924 1162 6018999 2024-02-21 08:21:05.254 2024-02-21 08:21:05.254 1000 STREAM 141924 716 6019035 2024-02-21 08:29:05.33 2024-02-21 08:29:05.33 1000 STREAM 141924 5173 6019052 2024-02-21 08:34:05.376 2024-02-21 08:34:05.376 1000 STREAM 141924 16876 6019055 2024-02-21 08:35:05.388 2024-02-21 08:35:05.388 1000 STREAM 141924 16357 6019061 2024-02-21 08:37:05.399 2024-02-21 08:37:05.399 1000 STREAM 141924 17011 6019063 2024-02-21 08:38:05.41 2024-02-21 08:38:05.41 1000 STREAM 141924 16410 6019081 2024-02-21 08:45:05.457 2024-02-21 08:45:05.457 1000 STREAM 141924 20222 6018979 2024-02-21 08:14:01.619 2024-02-21 08:14:01.619 1000 FEE 433473 16956 6018988 2024-02-21 08:15:54.062 2024-02-21 08:15:54.062 2500 FEE 433436 21451 6018989 2024-02-21 08:15:54.062 2024-02-21 08:15:54.062 22500 TIP 433436 16149 6019000 2024-02-21 08:21:14.368 2024-02-21 08:21:14.368 0 FEE 433475 19795 6019001 2024-02-21 08:22:04.13 2024-02-21 08:22:04.13 1000 STREAM 141924 9916 6019008 2024-02-21 08:22:55.005 2024-02-21 08:22:55.005 2100 FEE 433429 14857 6019009 2024-02-21 08:22:55.005 2024-02-21 08:22:55.005 18900 TIP 433429 928 6019010 2024-02-21 08:23:04.121 2024-02-21 08:23:04.121 1000 STREAM 141924 16706 6019013 2024-02-21 08:24:04.123 2024-02-21 08:24:04.123 1000 STREAM 141924 20102 6019016 2024-02-21 08:25:04.127 2024-02-21 08:25:04.127 1000 STREAM 141924 15351 6019017 2024-02-21 08:25:06.703 2024-02-21 08:25:06.703 2100 FEE 433471 20964 6019018 2024-02-21 08:25:06.703 2024-02-21 08:25:06.703 18900 TIP 433471 18321 6019019 2024-02-21 08:26:04.133 2024-02-21 08:26:04.133 1000 STREAM 141924 18241 6019021 2024-02-21 08:27:04.132 2024-02-21 08:27:04.132 1000 STREAM 141924 15159 6019026 2024-02-21 08:28:04.135 2024-02-21 08:28:04.135 1000 STREAM 141924 4314 6019039 2024-02-21 08:31:21.538 2024-02-21 08:31:21.538 1000 FEE 433478 20788 6019040 2024-02-21 08:31:37.061 2024-02-21 08:31:37.061 2100 FEE 433187 18177 6019041 2024-02-21 08:31:37.061 2024-02-21 08:31:37.061 18900 TIP 433187 18984 6019065 2024-02-21 08:39:04.181 2024-02-21 08:39:04.181 1000 STREAM 141924 20439 6019074 2024-02-21 08:41:57.413 2024-02-21 08:41:57.413 5000 FEE 432771 7425 6019075 2024-02-21 08:41:57.413 2024-02-21 08:41:57.413 45000 TIP 432771 9365 6019076 2024-02-21 08:42:04.166 2024-02-21 08:42:04.166 1000 STREAM 141924 7760 6019077 2024-02-21 08:43:04.174 2024-02-21 08:43:04.174 1000 STREAM 141924 10352 6019083 2024-02-21 08:47:04.196 2024-02-21 08:47:04.196 1000 STREAM 141924 3717 6019090 2024-02-21 08:48:04.186 2024-02-21 08:48:04.186 1000 STREAM 141924 6537 6019093 2024-02-21 08:50:04.211 2024-02-21 08:50:04.211 1000 STREAM 141924 20912 6019094 2024-02-21 08:50:16.93 2024-02-21 08:50:16.93 125000 FEE 433485 21506 6019095 2024-02-21 08:50:28.262 2024-02-21 08:50:28.262 1000 FEE 433486 7913 6019098 2024-02-21 08:51:04.199 2024-02-21 08:51:04.199 1000 STREAM 141924 9364 6019104 2024-02-21 08:53:04.193 2024-02-21 08:53:04.193 1000 STREAM 141924 20353 6019105 2024-02-21 08:53:09.754 2024-02-21 08:53:09.754 1000 FEE 433486 1488 6019106 2024-02-21 08:53:09.754 2024-02-21 08:53:09.754 9000 TIP 433486 20585 6019109 2024-02-21 08:53:53.045 2024-02-21 08:53:53.045 0 FEE 433486 16998 6019110 2024-02-21 08:54:04.217 2024-02-21 08:54:04.217 1000 STREAM 141924 2264 6019116 2024-02-21 08:57:04.246 2024-02-21 08:57:04.246 1000 STREAM 141924 20614 6019125 2024-02-21 08:59:04.261 2024-02-21 08:59:04.261 1000 STREAM 141924 20129 6019137 2024-02-21 09:03:04.33 2024-02-21 09:03:04.33 1000 STREAM 141924 11992 6019140 2024-02-21 09:04:04.328 2024-02-21 09:04:04.328 1000 STREAM 141924 1245 6019146 2024-02-21 09:04:45.777 2024-02-21 09:04:45.777 21000 FEE 433495 6384 6019147 2024-02-21 09:05:04.338 2024-02-21 09:05:04.338 1000 STREAM 141924 7418 6019150 2024-02-21 09:07:04.386 2024-02-21 09:07:04.386 1000 STREAM 141924 889 6019156 2024-02-21 09:09:04.382 2024-02-21 09:09:04.382 1000 STREAM 141924 21457 6019162 2024-02-21 09:11:04.396 2024-02-21 09:11:04.396 1000 STREAM 141924 18629 6019167 2024-02-21 09:12:52.255 2024-02-21 09:12:52.255 1000 FEE 433500 7682 6019170 2024-02-21 09:13:04.397 2024-02-21 09:13:04.397 1000 STREAM 141924 16485 6019171 2024-02-21 09:14:04.406 2024-02-21 09:14:04.406 1000 STREAM 141924 16667 6019174 2024-02-21 09:15:04.398 2024-02-21 09:15:04.398 1000 STREAM 141924 690 6019175 2024-02-21 09:15:16.72 2024-02-21 09:15:16.72 0 FEE 433501 2508 6019179 2024-02-21 09:18:04.411 2024-02-21 09:18:04.411 1000 STREAM 141924 7966 6019181 2024-02-21 09:19:04.435 2024-02-21 09:19:04.435 1000 STREAM 141924 16816 6019183 2024-02-21 09:20:04.423 2024-02-21 09:20:04.423 1000 STREAM 141924 19151 6019186 2024-02-21 09:20:41.032 2024-02-21 09:20:41.032 1000 FEE 433506 18524 6019189 2024-02-21 09:22:04.433 2024-02-21 09:22:04.433 1000 STREAM 141924 2338 6019193 2024-02-21 09:23:04.434 2024-02-21 09:23:04.434 1000 STREAM 141924 14247 6019198 2024-02-21 09:24:38.935 2024-02-21 09:24:38.935 2100 FEE 433494 19813 6019199 2024-02-21 09:24:38.935 2024-02-21 09:24:38.935 18900 TIP 433494 20205 6019203 2024-02-21 09:25:47.476 2024-02-21 09:25:47.476 1000 FEE 433512 19952 6019205 2024-02-21 09:26:04.434 2024-02-21 09:26:04.434 1000 STREAM 141924 16948 6019226 2024-02-21 09:26:33.768 2024-02-21 09:26:33.768 1000 FEE 432957 3304 6019227 2024-02-21 09:26:33.768 2024-02-21 09:26:33.768 9000 TIP 432957 9349 6019228 2024-02-21 09:26:34.696 2024-02-21 09:26:34.696 1000 FEE 432889 2335 6019229 2024-02-21 09:26:34.696 2024-02-21 09:26:34.696 9000 TIP 432889 15858 6019254 2024-02-21 09:27:45.742 2024-02-21 09:27:45.742 1000 FEE 433347 15146 6019255 2024-02-21 09:27:45.742 2024-02-21 09:27:45.742 9000 TIP 433347 3440 6019299 2024-02-21 09:28:39.225 2024-02-21 09:28:39.225 1000 FEE 432920 13042 6019300 2024-02-21 09:28:39.225 2024-02-21 09:28:39.225 9000 TIP 432920 21398 6019301 2024-02-21 09:28:39.659 2024-02-21 09:28:39.659 500 FEE 433500 21222 6019302 2024-02-21 09:28:39.659 2024-02-21 09:28:39.659 4500 TIP 433500 20454 6019303 2024-02-21 09:28:42.515 2024-02-21 09:28:42.515 500 FEE 433391 9109 6019304 2024-02-21 09:28:42.515 2024-02-21 09:28:42.515 4500 TIP 433391 8648 6019311 2024-02-21 09:28:45.349 2024-02-21 09:28:45.349 1000 FEE 433289 4250 6019312 2024-02-21 09:28:45.349 2024-02-21 09:28:45.349 9000 TIP 433289 14552 6019334 2024-02-21 09:28:52.337 2024-02-21 09:28:52.337 1000 FEE 433240 15941 6019335 2024-02-21 09:28:52.337 2024-02-21 09:28:52.337 9000 TIP 433240 12261 6019346 2024-02-21 09:28:57.902 2024-02-21 09:28:57.902 1000 FEE 433216 18138 6019347 2024-02-21 09:28:57.902 2024-02-21 09:28:57.902 9000 TIP 433216 622 6019364 2024-02-21 09:29:04.445 2024-02-21 09:29:04.445 1000 STREAM 141924 19907 6019375 2024-02-21 09:29:09.22 2024-02-21 09:29:09.22 1000 FEE 433034 19533 6019376 2024-02-21 09:29:09.22 2024-02-21 09:29:09.22 9000 TIP 433034 18473 6019385 2024-02-21 09:29:14.41 2024-02-21 09:29:14.41 1000 FEE 433029 20243 6019386 2024-02-21 09:29:14.41 2024-02-21 09:29:14.41 9000 TIP 433029 19346 6019405 2024-02-21 09:29:35.855 2024-02-21 09:29:35.855 1000 FEE 433374 986 6019406 2024-02-21 09:29:35.855 2024-02-21 09:29:35.855 9000 TIP 433374 16858 6019412 2024-02-21 09:31:04.446 2024-02-21 09:31:04.446 1000 STREAM 141924 5500 6019430 2024-02-21 09:32:08.834 2024-02-21 09:32:08.834 1000 FEE 433520 15336 6019431 2024-02-21 09:32:10.154 2024-02-21 09:32:10.154 10000 FEE 433358 1650 6019432 2024-02-21 09:32:10.154 2024-02-21 09:32:10.154 90000 TIP 433358 1628 6019435 2024-02-21 09:33:04.453 2024-02-21 09:33:04.453 1000 STREAM 141924 4322 6019438 2024-02-21 09:34:04.459 2024-02-21 09:34:04.459 1000 STREAM 141924 5085 6019440 2024-02-21 09:35:04.449 2024-02-21 09:35:04.449 1000 STREAM 141924 21457 6019447 2024-02-21 09:36:25.526 2024-02-21 09:36:25.526 1000 FEE 433436 16816 6019448 2024-02-21 09:36:25.526 2024-02-21 09:36:25.526 9000 TIP 433436 21242 6019451 2024-02-21 09:36:35.923 2024-02-21 09:36:35.923 11100 FEE 433518 13249 6019452 2024-02-21 09:36:35.923 2024-02-21 09:36:35.923 99900 TIP 433518 10536 6019460 2024-02-21 09:37:33.8 2024-02-21 09:37:33.8 1000 FEE 433405 14258 6019461 2024-02-21 09:37:33.8 2024-02-21 09:37:33.8 9000 TIP 433405 11443 6019464 2024-02-21 09:38:04.472 2024-02-21 09:38:04.472 1000 STREAM 141924 5387 6019475 2024-02-21 09:38:18.203 2024-02-21 09:38:18.203 1000 FEE 432586 2609 6019476 2024-02-21 09:38:18.203 2024-02-21 09:38:18.203 9000 TIP 432586 21506 6019513 2024-02-21 09:39:32.06 2024-02-21 09:39:32.06 1000 FEE 433342 10342 6019514 2024-02-21 09:39:32.06 2024-02-21 09:39:32.06 9000 TIP 433342 14225 6019515 2024-02-21 09:39:32.864 2024-02-21 09:39:32.864 1000 FEE 433300 18945 6019516 2024-02-21 09:39:32.864 2024-02-21 09:39:32.864 9000 TIP 433300 9833 6019519 2024-02-21 09:40:04.479 2024-02-21 09:40:04.479 1000 STREAM 141924 9969 6019531 2024-02-21 09:42:36.291 2024-02-21 09:42:36.291 1000000 FEE 433533 9816 6019551 2024-02-21 09:47:04.53 2024-02-21 09:47:04.53 1000 STREAM 141924 17147 6019562 2024-02-21 09:49:16.995 2024-02-21 09:49:16.995 2100 FEE 433022 19795 6019024 2024-02-21 08:27:45.306 2024-02-21 08:27:45.306 10000 FEE 433455 16354 6019025 2024-02-21 08:27:45.306 2024-02-21 08:27:45.306 90000 TIP 433455 2596 6019029 2024-02-21 08:28:10.327 2024-02-21 08:28:10.327 1000 FEE 429256 9307 6019030 2024-02-21 08:28:10.327 2024-02-21 08:28:10.327 9000 TIP 429256 17722 6019053 2024-02-21 08:34:24.53 2024-02-21 08:34:24.53 500 FEE 433108 14906 6019054 2024-02-21 08:34:24.53 2024-02-21 08:34:24.53 4500 TIP 433108 20208 6019066 2024-02-21 08:39:23.388 2024-02-21 08:39:23.388 0 FEE 433482 9816 6019086 2024-02-21 08:47:52.024 2024-02-21 08:47:52.024 2100 FEE 433344 8505 6019087 2024-02-21 08:47:52.024 2024-02-21 08:47:52.024 18900 TIP 433344 985 6019101 2024-02-21 08:52:39.921 2024-02-21 08:52:39.921 1000 FEE 433487 20301 6019159 2024-02-21 09:09:28.518 2024-02-21 09:09:28.518 1600 FEE 433302 9 6019160 2024-02-21 09:09:28.518 2024-02-21 09:09:28.518 14400 TIP 433302 1611 6019190 2024-02-21 09:22:51.613 2024-02-21 09:22:51.613 1000 FEE 433508 1010 6019217 2024-02-21 09:26:11.634 2024-02-21 09:26:11.634 1000 FEE 433515 17693 6019242 2024-02-21 09:26:45.348 2024-02-21 09:26:45.348 1000 FEE 433244 14195 6019243 2024-02-21 09:26:45.348 2024-02-21 09:26:45.348 9000 TIP 433244 2022 6019244 2024-02-21 09:26:45.858 2024-02-21 09:26:45.858 1000 FEE 433359 2162 6019245 2024-02-21 09:26:45.858 2024-02-21 09:26:45.858 9000 TIP 433359 21214 6019264 2024-02-21 09:27:50.981 2024-02-21 09:27:50.981 1000 FEE 433156 1142 6019265 2024-02-21 09:27:50.981 2024-02-21 09:27:50.981 9000 TIP 433156 21344 6019266 2024-02-21 09:27:51.459 2024-02-21 09:27:51.459 1000 FEE 433151 19961 6019267 2024-02-21 09:27:51.459 2024-02-21 09:27:51.459 9000 TIP 433151 15052 6019272 2024-02-21 09:27:53.743 2024-02-21 09:27:53.743 1000 FEE 433431 19759 6019273 2024-02-21 09:27:53.743 2024-02-21 09:27:53.743 9000 TIP 433431 1605 6019350 2024-02-21 09:28:59.065 2024-02-21 09:28:59.065 1000 FEE 433188 20022 6019351 2024-02-21 09:28:59.065 2024-02-21 09:28:59.065 9000 TIP 433188 12561 6019352 2024-02-21 09:29:00.373 2024-02-21 09:29:00.373 1000 FEE 433241 18819 6019353 2024-02-21 09:29:00.373 2024-02-21 09:29:00.373 9000 TIP 433241 1611 6019441 2024-02-21 09:35:10.361 2024-02-21 09:35:10.361 1000 FEE 433524 7989 6019445 2024-02-21 09:36:21.308 2024-02-21 09:36:21.308 1000 FEE 433525 17183 6019450 2024-02-21 09:36:28.125 2024-02-21 09:36:28.125 3000000 DONT_LIKE_THIS 433391 20470 6019487 2024-02-21 09:38:33.498 2024-02-21 09:38:33.498 1000 FEE 433530 17514 6019488 2024-02-21 09:38:43.263 2024-02-21 09:38:43.263 1000 FEE 432776 19857 6019489 2024-02-21 09:38:43.263 2024-02-21 09:38:43.263 9000 TIP 432776 1030 6019494 2024-02-21 09:38:45.129 2024-02-21 09:38:45.129 1000 FEE 432772 11527 6019495 2024-02-21 09:38:45.129 2024-02-21 09:38:45.129 9000 TIP 432772 18511 6019511 2024-02-21 09:39:05.123 2024-02-21 09:39:05.123 1000 FEE 433391 2293 6019512 2024-02-21 09:39:05.123 2024-02-21 09:39:05.123 9000 TIP 433391 4487 6019529 2024-02-21 09:42:34.676 2024-02-21 09:42:34.676 500 FEE 433530 14909 6019530 2024-02-21 09:42:34.676 2024-02-21 09:42:34.676 4500 TIP 433530 5825 6019532 2024-02-21 09:42:38.586 2024-02-21 09:42:38.586 500 FEE 433526 12218 6019533 2024-02-21 09:42:38.586 2024-02-21 09:42:38.586 4500 TIP 433526 18387 6019580 2024-02-21 09:50:25.909 2024-02-21 09:50:25.909 1000 FEE 433430 880 6019581 2024-02-21 09:50:25.909 2024-02-21 09:50:25.909 9000 TIP 433430 18068 6019588 2024-02-21 09:51:55.563 2024-02-21 09:51:55.563 2100 FEE 433022 18330 6019589 2024-02-21 09:51:55.563 2024-02-21 09:51:55.563 18900 TIP 433022 1769 6019590 2024-02-21 09:51:55.74 2024-02-21 09:51:55.74 2100 FEE 433022 1142 6019591 2024-02-21 09:51:55.74 2024-02-21 09:51:55.74 18900 TIP 433022 21441 6019592 2024-02-21 09:51:55.978 2024-02-21 09:51:55.978 2100 FEE 433022 9796 6019593 2024-02-21 09:51:55.978 2024-02-21 09:51:55.978 18900 TIP 433022 19981 6019605 2024-02-21 09:55:29.043 2024-02-21 09:55:29.043 2100 FEE 433022 9276 6019606 2024-02-21 09:55:29.043 2024-02-21 09:55:29.043 18900 TIP 433022 16970 6019652 2024-02-21 10:12:06.252 2024-02-21 10:12:06.252 1000 FEE 433553 20586 6019667 2024-02-21 10:16:28.166 2024-02-21 10:16:28.166 10000 FEE 433558 6335 6019676 2024-02-21 10:18:30.457 2024-02-21 10:18:30.457 1000 FEE 433561 20301 6019682 2024-02-21 10:19:33.901 2024-02-21 10:19:33.901 2100 FEE 433520 20299 6019683 2024-02-21 10:19:33.901 2024-02-21 10:19:33.901 18900 TIP 433520 20514 6019701 2024-02-21 10:24:25.323 2024-02-21 10:24:25.323 1000 FEE 433566 1584 6019708 2024-02-21 10:27:08.056 2024-02-21 10:27:08.056 1000 FEE 433567 6137 6019713 2024-02-21 10:30:18.026 2024-02-21 10:30:18.026 6300 FEE 433476 1010 6019714 2024-02-21 10:30:18.026 2024-02-21 10:30:18.026 56700 TIP 433476 732 6019715 2024-02-21 10:30:18.753 2024-02-21 10:30:18.753 1000 FEE 433570 18945 6019716 2024-02-21 10:30:46.324 2024-02-21 10:30:46.324 6300 FEE 433455 10549 6019717 2024-02-21 10:30:46.324 2024-02-21 10:30:46.324 56700 TIP 433455 20208 6019722 2024-02-21 10:32:38.626 2024-02-21 10:32:38.626 1000 FEE 433569 1047 6019723 2024-02-21 10:32:38.626 2024-02-21 10:32:38.626 9000 TIP 433569 21555 6019724 2024-02-21 10:32:47.18 2024-02-21 10:32:47.18 1000 FEE 433572 1439 6019730 2024-02-21 10:33:56.267 2024-02-21 10:33:56.267 1000 FEE 432977 4102 6019731 2024-02-21 10:33:56.267 2024-02-21 10:33:56.267 9000 TIP 432977 1618 6019741 2024-02-21 10:36:47.153 2024-02-21 10:36:47.153 500 FEE 433517 16387 6019742 2024-02-21 10:36:47.153 2024-02-21 10:36:47.153 4500 TIP 433517 21588 6019747 2024-02-21 10:36:47.888 2024-02-21 10:36:47.888 500 FEE 433517 12368 6019748 2024-02-21 10:36:47.888 2024-02-21 10:36:47.888 4500 TIP 433517 20058 6019773 2024-02-21 10:42:04.235 2024-02-21 10:42:04.235 100 FEE 433477 19094 6019774 2024-02-21 10:42:04.235 2024-02-21 10:42:04.235 900 TIP 433477 16406 6019783 2024-02-21 10:45:24.216 2024-02-21 10:45:24.216 4000 FEE 433457 19777 6019784 2024-02-21 10:45:24.216 2024-02-21 10:45:24.216 36000 TIP 433457 12808 6019793 2024-02-21 10:47:19.026 2024-02-21 10:47:19.026 500 FEE 433524 2749 6019794 2024-02-21 10:47:19.026 2024-02-21 10:47:19.026 4500 TIP 433524 896 6019834 2024-02-21 10:57:08.171 2024-02-21 10:57:08.171 500 FEE 433475 19531 6019835 2024-02-21 10:57:08.171 2024-02-21 10:57:08.171 4500 TIP 433475 686 6019859 2024-02-21 11:03:26.4 2024-02-21 11:03:26.4 2100 FEE 433580 21262 6019860 2024-02-21 11:03:26.4 2024-02-21 11:03:26.4 18900 TIP 433580 928 6019880 2024-02-21 11:07:14.491 2024-02-21 11:07:14.491 1000 FEE 433598 21437 6019905 2024-02-21 11:09:16.508 2024-02-21 11:09:16.508 1000 FEE 433599 19199 6019908 2024-02-21 11:09:46.225 2024-02-21 11:09:46.225 2100 FEE 433486 10638 6019909 2024-02-21 11:09:46.225 2024-02-21 11:09:46.225 18900 TIP 433486 16432 6019929 2024-02-21 11:14:47.412 2024-02-21 11:14:47.412 10000 FEE 433608 4763 6019962 2024-02-21 11:18:07.702 2024-02-21 11:18:07.702 4000 FEE 433591 13249 6019963 2024-02-21 11:18:07.702 2024-02-21 11:18:07.702 36000 TIP 433591 12561 6019972 2024-02-21 11:18:27.435 2024-02-21 11:18:27.435 4000 FEE 433373 2577 6019973 2024-02-21 11:18:27.435 2024-02-21 11:18:27.435 36000 TIP 433373 21547 6019976 2024-02-21 11:18:41.446 2024-02-21 11:18:41.446 1000 FEE 433612 4084 6019983 2024-02-21 11:20:28.996 2024-02-21 11:20:28.996 1000 FEE 433615 15549 6020000 2024-02-21 11:23:16.003 2024-02-21 11:23:16.003 1000 FEE 433619 21334 6020013 2024-02-21 11:25:14.884 2024-02-21 11:25:14.884 3200 FEE 433593 19909 6020014 2024-02-21 11:25:14.884 2024-02-21 11:25:14.884 28800 TIP 433593 1647 6020049 2024-02-21 11:30:48.825 2024-02-21 11:30:48.825 800 FEE 433592 20254 6020050 2024-02-21 11:30:48.825 2024-02-21 11:30:48.825 7200 TIP 433592 2256 6020066 2024-02-21 11:32:14.612 2024-02-21 11:32:14.612 2100 FEE 433594 700 6020067 2024-02-21 11:32:14.612 2024-02-21 11:32:14.612 18900 TIP 433594 11522 6020071 2024-02-21 11:32:45.879 2024-02-21 11:32:45.879 2100 FEE 433605 5427 6020072 2024-02-21 11:32:45.879 2024-02-21 11:32:45.879 18900 TIP 433605 18306 6020116 2024-02-21 11:35:35.082 2024-02-21 11:35:35.082 2100 FEE 433593 1628 6020117 2024-02-21 11:35:35.082 2024-02-21 11:35:35.082 18900 TIP 433593 694 6020122 2024-02-21 11:35:38.908 2024-02-21 11:35:38.908 2100 FEE 433601 14910 6020123 2024-02-21 11:35:38.908 2024-02-21 11:35:38.908 18900 TIP 433601 2224 6019032 2024-02-21 08:28:51.093 2024-02-21 08:28:51.093 18900 TIP 433429 17091 6019037 2024-02-21 08:30:05.353 2024-02-21 08:30:05.353 1000 STREAM 141924 12102 6019038 2024-02-21 08:31:05.355 2024-02-21 08:31:05.355 1000 STREAM 141924 14376 6019042 2024-02-21 08:31:53.017 2024-02-21 08:31:53.017 1000 FEE 433479 21405 6019043 2024-02-21 08:32:05.348 2024-02-21 08:32:05.348 1000 STREAM 141924 19857 6019044 2024-02-21 08:32:09.857 2024-02-21 08:32:09.857 0 FEE 433479 15337 6019046 2024-02-21 08:33:05.368 2024-02-21 08:33:05.368 1000 STREAM 141924 16667 6019050 2024-02-21 08:33:55.164 2024-02-21 08:33:55.164 7700 FEE 433114 21424 6019051 2024-02-21 08:33:55.164 2024-02-21 08:33:55.164 69300 TIP 433114 940 6019057 2024-02-21 08:36:05.394 2024-02-21 08:36:05.394 1000 STREAM 141924 635 6019058 2024-02-21 08:36:14.103 2024-02-21 08:36:14.103 0 FEE 433480 714 6019060 2024-02-21 08:36:39.766 2024-02-21 08:36:39.766 0 FEE 433480 19512 6019067 2024-02-21 08:40:05.454 2024-02-21 08:40:05.454 1000 STREAM 141924 20272 6019068 2024-02-21 08:40:34.954 2024-02-21 08:40:34.954 1000 FEE 433483 6533 6019071 2024-02-21 08:41:04.175 2024-02-21 08:41:04.175 1000 STREAM 141924 8004 6019072 2024-02-21 08:41:23.014 2024-02-21 08:41:23.014 100 FEE 433391 14267 6019073 2024-02-21 08:41:23.014 2024-02-21 08:41:23.014 900 TIP 433391 13763 6019080 2024-02-21 08:44:04.184 2024-02-21 08:44:04.184 1000 STREAM 141924 2952 6019082 2024-02-21 08:46:04.18 2024-02-21 08:46:04.18 1000 STREAM 141924 11648 6019084 2024-02-21 08:47:39.137 2024-02-21 08:47:39.137 7700 FEE 432873 6148 6019085 2024-02-21 08:47:39.137 2024-02-21 08:47:39.137 69300 TIP 432873 20597 6019091 2024-02-21 08:49:04.203 2024-02-21 08:49:04.203 1000 STREAM 141924 20084 6019092 2024-02-21 08:49:21.305 2024-02-21 08:49:21.305 1000 FEE 433484 16830 6019100 2024-02-21 08:52:05.522 2024-02-21 08:52:05.522 1000 STREAM 141924 13547 6019111 2024-02-21 08:55:05.558 2024-02-21 08:55:05.558 1000 STREAM 141924 2326 6019112 2024-02-21 08:56:04.228 2024-02-21 08:56:04.228 1000 STREAM 141924 18932 6019119 2024-02-21 08:58:04.257 2024-02-21 08:58:04.257 1000 STREAM 141924 16513 6019130 2024-02-21 09:00:04.297 2024-02-21 09:00:04.297 1000 STREAM 141924 10554 6019134 2024-02-21 09:01:04.308 2024-02-21 09:01:04.308 1000 STREAM 141924 20525 6019135 2024-02-21 09:02:04.313 2024-02-21 09:02:04.313 1000 STREAM 141924 17838 6019136 2024-02-21 09:02:29.468 2024-02-21 09:02:29.468 0 FEE 433488 9551 6019148 2024-02-21 09:06:04.372 2024-02-21 09:06:04.372 1000 STREAM 141924 9992 6019152 2024-02-21 09:08:04.367 2024-02-21 09:08:04.367 1000 STREAM 141924 2775 6019161 2024-02-21 09:10:04.389 2024-02-21 09:10:04.389 1000 STREAM 141924 18769 6019164 2024-02-21 09:11:58.214 2024-02-21 09:11:58.214 2500 FEE 433496 12158 6019165 2024-02-21 09:11:58.214 2024-02-21 09:11:58.214 22500 TIP 433496 18769 6019166 2024-02-21 09:12:04.39 2024-02-21 09:12:04.39 1000 STREAM 141924 10291 6019177 2024-02-21 09:16:04.418 2024-02-21 09:16:04.418 1000 STREAM 141924 21398 6019178 2024-02-21 09:17:04.402 2024-02-21 09:17:04.402 1000 STREAM 141924 19309 6019187 2024-02-21 09:21:04.435 2024-02-21 09:21:04.435 1000 STREAM 141924 14074 6019194 2024-02-21 09:24:04.444 2024-02-21 09:24:04.444 1000 STREAM 141924 17535 6019195 2024-02-21 09:24:13.504 2024-02-21 09:24:13.504 1000 FEE 433509 6700 6019196 2024-02-21 09:24:14.767 2024-02-21 09:24:14.767 2100 FEE 433506 14950 6019197 2024-02-21 09:24:14.767 2024-02-21 09:24:14.767 18900 TIP 433506 1038 6019200 2024-02-21 09:25:04.439 2024-02-21 09:25:04.439 1000 STREAM 141924 3342 6019204 2024-02-21 09:26:04.087 2024-02-21 09:26:04.087 1000 FEE 433513 5852 6019206 2024-02-21 09:26:06.772 2024-02-21 09:26:06.772 100 FEE 433436 20026 6019207 2024-02-21 09:26:06.772 2024-02-21 09:26:06.772 900 TIP 433436 20754 6019212 2024-02-21 09:26:07.72 2024-02-21 09:26:07.72 100 FEE 433436 14271 6019213 2024-02-21 09:26:07.72 2024-02-21 09:26:07.72 900 TIP 433436 1092 6019220 2024-02-21 09:26:27.685 2024-02-21 09:26:27.685 1000 FEE 432920 674 6019221 2024-02-21 09:26:27.685 2024-02-21 09:26:27.685 9000 TIP 432920 14990 6019222 2024-02-21 09:26:30.627 2024-02-21 09:26:30.627 1000 FEE 433066 13843 6019223 2024-02-21 09:26:30.627 2024-02-21 09:26:30.627 9000 TIP 433066 21571 6019238 2024-02-21 09:26:41.953 2024-02-21 09:26:41.953 1000 FEE 433373 11329 6019239 2024-02-21 09:26:41.953 2024-02-21 09:26:41.953 9000 TIP 433373 20881 6019250 2024-02-21 09:27:04.439 2024-02-21 09:27:04.439 1000 STREAM 141924 14651 6019276 2024-02-21 09:27:57.54 2024-02-21 09:27:57.54 1000 FEE 433445 9246 6019277 2024-02-21 09:27:57.54 2024-02-21 09:27:57.54 9000 TIP 433445 17568 6019278 2024-02-21 09:27:58.228 2024-02-21 09:27:58.228 1000 FEE 433312 18892 6019279 2024-02-21 09:27:58.228 2024-02-21 09:27:58.228 9000 TIP 433312 20258 6019284 2024-02-21 09:28:04.443 2024-02-21 09:28:04.443 1000 STREAM 141924 18528 6019318 2024-02-21 09:28:46.99 2024-02-21 09:28:46.99 1000 FEE 433497 8423 6019319 2024-02-21 09:28:46.99 2024-02-21 09:28:46.99 9000 TIP 433497 7766 6019330 2024-02-21 09:28:50.594 2024-02-21 09:28:50.594 1000 FEE 433133 8074 6019331 2024-02-21 09:28:50.594 2024-02-21 09:28:50.594 9000 TIP 433133 20409 6019342 2024-02-21 09:28:55.499 2024-02-21 09:28:55.499 100 FEE 433302 7659 6019343 2024-02-21 09:28:55.499 2024-02-21 09:28:55.499 900 TIP 433302 15200 6019360 2024-02-21 09:29:02.599 2024-02-21 09:29:02.599 1000 FEE 433285 21329 6019361 2024-02-21 09:29:02.599 2024-02-21 09:29:02.599 9000 TIP 433285 13398 6019367 2024-02-21 09:29:05.378 2024-02-21 09:29:05.378 1000 FEE 432980 10979 6019368 2024-02-21 09:29:05.378 2024-02-21 09:29:05.378 9000 TIP 432980 5761 6019389 2024-02-21 09:29:16.719 2024-02-21 09:29:16.719 1000 FEE 433041 769 6019390 2024-02-21 09:29:16.719 2024-02-21 09:29:16.719 9000 TIP 433041 13216 6019391 2024-02-21 09:29:18.282 2024-02-21 09:29:18.282 1000 FEE 433220 10096 6019392 2024-02-21 09:29:18.282 2024-02-21 09:29:18.282 9000 TIP 433220 20495 6019401 2024-02-21 09:29:25.361 2024-02-21 09:29:25.361 1000 FEE 433014 640 6019402 2024-02-21 09:29:25.361 2024-02-21 09:29:25.361 9000 TIP 433014 2256 6019407 2024-02-21 09:30:04.441 2024-02-21 09:30:04.441 1000 STREAM 141924 18995 6019410 2024-02-21 09:30:15.143 2024-02-21 09:30:15.143 33300 FEE 433515 763 6019411 2024-02-21 09:30:15.143 2024-02-21 09:30:15.143 299700 TIP 433515 11477 6019413 2024-02-21 09:31:24.795 2024-02-21 09:31:24.795 0 FEE 433518 636 6019415 2024-02-21 09:31:54.03 2024-02-21 09:31:54.03 10000 FEE 433480 1012 6019416 2024-02-21 09:31:54.03 2024-02-21 09:31:54.03 90000 TIP 433480 9496 6019429 2024-02-21 09:32:04.447 2024-02-21 09:32:04.447 1000 STREAM 141924 659 6019444 2024-02-21 09:36:04.46 2024-02-21 09:36:04.46 1000 STREAM 141924 14905 6019453 2024-02-21 09:37:04.464 2024-02-21 09:37:04.464 1000 STREAM 141924 1213 6019455 2024-02-21 09:37:21.71 2024-02-21 09:37:21.71 100000 FEE 433529 20715 6019485 2024-02-21 09:38:33.138 2024-02-21 09:38:33.138 1000 FEE 432661 6300 6019486 2024-02-21 09:38:33.138 2024-02-21 09:38:33.138 9000 TIP 432661 899 6019506 2024-02-21 09:39:04.481 2024-02-21 09:39:04.481 1000 STREAM 141924 10311 6019522 2024-02-21 09:41:04.482 2024-02-21 09:41:04.482 1000 STREAM 141924 5578 6019528 2024-02-21 09:42:04.492 2024-02-21 09:42:04.492 1000 STREAM 141924 20220 6019534 2024-02-21 09:42:59.033 2024-02-21 09:42:59.033 1000 FEE 433534 7659 6019535 2024-02-21 09:43:04.493 2024-02-21 09:43:04.493 1000 STREAM 141924 5519 6019537 2024-02-21 09:43:53.847 2024-02-21 09:43:53.847 1000 FEE 433344 16177 6019538 2024-02-21 09:43:53.847 2024-02-21 09:43:53.847 9000 TIP 433344 12024 6019542 2024-02-21 09:44:04.504 2024-02-21 09:44:04.504 1000 STREAM 141924 16424 6019545 2024-02-21 09:45:04.514 2024-02-21 09:45:04.514 1000 STREAM 141924 21208 6019546 2024-02-21 09:46:00.591 2024-02-21 09:46:00.591 1000 FEE 433536 2056 6019547 2024-02-21 09:46:04.52 2024-02-21 09:46:04.52 1000 STREAM 141924 15662 6019557 2024-02-21 09:48:04.543 2024-02-21 09:48:04.543 1000 STREAM 141924 18507 6019559 2024-02-21 09:49:04.544 2024-02-21 09:49:04.544 1000 STREAM 141924 4314 6019567 2024-02-21 09:50:04.547 2024-02-21 09:50:04.547 1000 STREAM 141924 17091 6019568 2024-02-21 09:50:12.184 2024-02-21 09:50:12.184 1000 FEE 433540 18321 6019578 2024-02-21 09:50:23.648 2024-02-21 09:50:23.648 1000 FEE 433465 15617 6019579 2024-02-21 09:50:23.648 2024-02-21 09:50:23.648 9000 TIP 433465 19156 6019258 2024-02-21 09:27:47.875 2024-02-21 09:27:47.875 1000 FEE 433442 19533 6019259 2024-02-21 09:27:47.875 2024-02-21 09:27:47.875 9000 TIP 433442 627 6019268 2024-02-21 09:27:53.067 2024-02-21 09:27:53.067 1000 FEE 433403 1002 6019269 2024-02-21 09:27:53.067 2024-02-21 09:27:53.067 9000 TIP 433403 16097 6019295 2024-02-21 09:28:35.131 2024-02-21 09:28:35.131 1000 FEE 432894 21573 6019296 2024-02-21 09:28:35.131 2024-02-21 09:28:35.131 9000 TIP 432894 21036 6019320 2024-02-21 09:28:48.256 2024-02-21 09:28:48.256 1000 FEE 433262 19541 6019321 2024-02-21 09:28:48.256 2024-02-21 09:28:48.256 9000 TIP 433262 1244 6019322 2024-02-21 09:28:48.795 2024-02-21 09:28:48.795 1000 FEE 433266 21352 6019323 2024-02-21 09:28:48.795 2024-02-21 09:28:48.795 9000 TIP 433266 10591 6019344 2024-02-21 09:28:57.316 2024-02-21 09:28:57.316 1000 FEE 433028 6058 6019345 2024-02-21 09:28:57.316 2024-02-21 09:28:57.316 9000 TIP 433028 1567 6019358 2024-02-21 09:29:01.936 2024-02-21 09:29:01.936 1000 FEE 433052 17226 6019359 2024-02-21 09:29:01.936 2024-02-21 09:29:01.936 9000 TIP 433052 6419 6019365 2024-02-21 09:29:04.625 2024-02-21 09:29:04.625 1000 FEE 433288 20490 6019366 2024-02-21 09:29:04.625 2024-02-21 09:29:04.625 9000 TIP 433288 17365 6019371 2024-02-21 09:29:07.559 2024-02-21 09:29:07.559 1000 FEE 432992 9433 6019372 2024-02-21 09:29:07.559 2024-02-21 09:29:07.559 9000 TIP 432992 6777 6019383 2024-02-21 09:29:13.004 2024-02-21 09:29:13.004 1000 FEE 433204 21103 6019384 2024-02-21 09:29:13.004 2024-02-21 09:29:13.004 9000 TIP 433204 20287 6019414 2024-02-21 09:31:50.637 2024-02-21 09:31:50.637 1000 FEE 433519 9351 6019433 2024-02-21 09:33:00.193 2024-02-21 09:33:00.193 12800 FEE 432577 8508 6019434 2024-02-21 09:33:00.193 2024-02-21 09:33:00.193 115200 TIP 432577 2206 6019442 2024-02-21 09:35:40.38 2024-02-21 09:35:40.38 12800 FEE 432750 5085 6019443 2024-02-21 09:35:40.38 2024-02-21 09:35:40.38 115200 TIP 432750 20596 6019454 2024-02-21 09:37:16.509 2024-02-21 09:37:16.509 1000 FEE 433528 670 6019458 2024-02-21 09:37:33.241 2024-02-21 09:37:33.241 1000 FEE 433469 19924 6019459 2024-02-21 09:37:33.241 2024-02-21 09:37:33.241 9000 TIP 433469 2431 6019477 2024-02-21 09:38:21.933 2024-02-21 09:38:21.933 1000 FEE 432899 19309 6019478 2024-02-21 09:38:21.933 2024-02-21 09:38:21.933 9000 TIP 432899 900 6019500 2024-02-21 09:38:59.056 2024-02-21 09:38:59.056 7700 FEE 433526 766 6019501 2024-02-21 09:38:59.056 2024-02-21 09:38:59.056 69300 TIP 433526 18641 6019502 2024-02-21 09:38:59.978 2024-02-21 09:38:59.978 1000 FEE 433500 21562 6019503 2024-02-21 09:38:59.978 2024-02-21 09:38:59.978 9000 TIP 433500 10586 6019550 2024-02-21 09:46:50.326 2024-02-21 09:46:50.326 0 FEE 433535 19961 6019566 2024-02-21 09:49:19.017 2024-02-21 09:49:19.017 0 FEE 433539 16250 6019598 2024-02-21 09:54:12.088 2024-02-21 09:54:12.088 1000 FEE 433542 14213 6019627 2024-02-21 10:03:37.509 2024-02-21 10:03:37.509 1000 FEE 433529 16424 6019628 2024-02-21 10:03:37.509 2024-02-21 10:03:37.509 9000 TIP 433529 18271 6019647 2024-02-21 10:10:28.055 2024-02-21 10:10:28.055 1000 FEE 433552 20511 6019702 2024-02-21 10:24:26.173 2024-02-21 10:24:26.173 0 FEE 433563 17201 6019704 2024-02-21 10:25:50.278 2024-02-21 10:25:50.278 2100 FEE 433566 17183 6019705 2024-02-21 10:25:50.278 2024-02-21 10:25:50.278 18900 TIP 433566 9184 6019712 2024-02-21 10:30:14.003 2024-02-21 10:30:14.003 1000 FEE 433569 656 6019728 2024-02-21 10:33:50.023 2024-02-21 10:33:50.023 1000 FEE 432913 21164 6019729 2024-02-21 10:33:50.023 2024-02-21 10:33:50.023 9000 TIP 432913 2577 6019761 2024-02-21 10:38:54.486 2024-02-21 10:38:54.486 10000 FEE 433554 14472 6019762 2024-02-21 10:38:54.486 2024-02-21 10:38:54.486 90000 TIP 433554 21600 6019795 2024-02-21 10:47:19.219 2024-02-21 10:47:19.219 500 FEE 433524 9378 6019796 2024-02-21 10:47:19.219 2024-02-21 10:47:19.219 4500 TIP 433524 2056 6019797 2024-02-21 10:47:19.739 2024-02-21 10:47:19.739 1000 FEE 433524 9078 6019798 2024-02-21 10:47:19.739 2024-02-21 10:47:19.739 9000 TIP 433524 20660 6019799 2024-02-21 10:47:20.536 2024-02-21 10:47:20.536 500 FEE 433524 1002 6019800 2024-02-21 10:47:20.536 2024-02-21 10:47:20.536 4500 TIP 433524 631 6019803 2024-02-21 10:47:20.901 2024-02-21 10:47:20.901 500 FEE 433524 1326 6019804 2024-02-21 10:47:20.901 2024-02-21 10:47:20.901 4500 TIP 433524 2075 6019810 2024-02-21 10:48:13.047 2024-02-21 10:48:13.047 1000 FEE 433580 20106 6019813 2024-02-21 10:48:25.271 2024-02-21 10:48:25.271 2100 FEE 433579 17221 6019814 2024-02-21 10:48:25.271 2024-02-21 10:48:25.271 18900 TIP 433579 16270 6019843 2024-02-21 11:00:05.135 2024-02-21 11:00:05.135 1000 FEE 433587 16988 6019854 2024-02-21 11:03:16.285 2024-02-21 11:03:16.285 21100 FEE 433591 1439 6019855 2024-02-21 11:03:16.285 2024-02-21 11:03:16.285 189900 TIP 433591 12222 6019871 2024-02-21 11:05:57.265 2024-02-21 11:05:57.265 2100 FEE 433551 6419 6019872 2024-02-21 11:05:57.265 2024-02-21 11:05:57.265 18900 TIP 433551 9378 6019890 2024-02-21 11:08:23.654 2024-02-21 11:08:23.654 100 FEE 433597 2309 6019891 2024-02-21 11:08:23.654 2024-02-21 11:08:23.654 900 TIP 433597 2640 6019894 2024-02-21 11:08:24.929 2024-02-21 11:08:24.929 100 FEE 433597 8926 6019895 2024-02-21 11:08:24.929 2024-02-21 11:08:24.929 900 TIP 433597 11091 6019917 2024-02-21 11:11:00.511 2024-02-21 11:11:00.511 1000 FEE 433603 9275 6019922 2024-02-21 11:11:49.626 2024-02-21 11:11:49.626 0 FEE 433601 2961 6019927 2024-02-21 11:13:13.959 2024-02-21 11:13:13.959 1000 FEE 433607 18235 6019930 2024-02-21 11:14:56.346 2024-02-21 11:14:56.346 10000 FEE 433504 19263 6019931 2024-02-21 11:14:56.346 2024-02-21 11:14:56.346 90000 TIP 433504 11942 6019934 2024-02-21 11:15:31.807 2024-02-21 11:15:31.807 1000 FEE 433610 20973 6019941 2024-02-21 11:17:16.524 2024-02-21 11:17:16.524 100 FEE 433594 1772 6019942 2024-02-21 11:17:16.524 2024-02-21 11:17:16.524 900 TIP 433594 5701 6019949 2024-02-21 11:17:35.169 2024-02-21 11:17:35.169 2100 FEE 433344 15045 6019950 2024-02-21 11:17:35.169 2024-02-21 11:17:35.169 18900 TIP 433344 9364 6019968 2024-02-21 11:18:12.317 2024-02-21 11:18:12.317 4000 FEE 433499 4084 6019969 2024-02-21 11:18:12.317 2024-02-21 11:18:12.317 36000 TIP 433499 21320 6019979 2024-02-21 11:19:19.92 2024-02-21 11:19:19.92 1000 FEE 433614 21599 6019980 2024-02-21 11:19:24.038 2024-02-21 11:19:24.038 1700 FEE 433441 18815 6019981 2024-02-21 11:19:24.038 2024-02-21 11:19:24.038 15300 TIP 433441 8998 6020001 2024-02-21 11:23:25.456 2024-02-21 11:23:25.456 1000 FEE 433524 9695 6020002 2024-02-21 11:23:25.456 2024-02-21 11:23:25.456 9000 TIP 433524 18690 6020016 2024-02-21 11:26:02.158 2024-02-21 11:26:02.158 1000 FEE 433623 5758 6020020 2024-02-21 11:26:50.611 2024-02-21 11:26:50.611 300 FEE 433574 16270 6020021 2024-02-21 11:26:50.611 2024-02-21 11:26:50.611 2700 TIP 433574 7986 6020029 2024-02-21 11:27:53.935 2024-02-21 11:27:53.935 1000 FEE 433624 2502 6020035 2024-02-21 11:28:26.841 2024-02-21 11:28:26.841 1000 FEE 433627 2528 6020040 2024-02-21 11:29:32.095 2024-02-21 11:29:32.095 1700 FEE 433599 2342 6020041 2024-02-21 11:29:32.095 2024-02-21 11:29:32.095 15300 TIP 433599 5942 6020043 2024-02-21 11:30:31.069 2024-02-21 11:30:31.069 800 FEE 433610 3642 6020044 2024-02-21 11:30:31.069 2024-02-21 11:30:31.069 7200 TIP 433610 1801 6020045 2024-02-21 11:30:34.389 2024-02-21 11:30:34.389 800 FEE 433606 980 6020046 2024-02-21 11:30:34.389 2024-02-21 11:30:34.389 7200 TIP 433606 19759 6020051 2024-02-21 11:30:58.393 2024-02-21 11:30:58.393 2100 FEE 433495 21603 6020052 2024-02-21 11:30:58.393 2024-02-21 11:30:58.393 18900 TIP 433495 19537 6020069 2024-02-21 11:32:39.75 2024-02-21 11:32:39.75 2100 FEE 433597 1584 6020070 2024-02-21 11:32:39.75 2024-02-21 11:32:39.75 18900 TIP 433597 20756 6020101 2024-02-21 11:35:19.222 2024-02-21 11:35:19.222 2100 FEE 433373 19286 6020102 2024-02-21 11:35:19.222 2024-02-21 11:35:19.222 18900 TIP 433373 20663 6020111 2024-02-21 11:35:33.167 2024-02-21 11:35:33.167 2100 FEE 433606 18680 6020112 2024-02-21 11:35:33.167 2024-02-21 11:35:33.167 18900 TIP 433606 2156 6020113 2024-02-21 11:35:33.691 2024-02-21 11:35:33.691 2100 FEE 433599 17455 6020114 2024-02-21 11:35:33.691 2024-02-21 11:35:33.691 18900 TIP 433599 18658 6020136 2024-02-21 11:36:44.31 2024-02-21 11:36:44.31 1000 FEE 433634 19735 6019291 2024-02-21 09:28:24.826 2024-02-21 09:28:24.826 100 FEE 432899 16289 6019292 2024-02-21 09:28:24.826 2024-02-21 09:28:24.826 900 TIP 432899 2709 6019309 2024-02-21 09:28:44.949 2024-02-21 09:28:44.949 1000 FEE 433234 21493 6019310 2024-02-21 09:28:44.949 2024-02-21 09:28:44.949 9000 TIP 433234 20901 6019324 2024-02-21 09:28:48.954 2024-02-21 09:28:48.954 2100 FEE 433499 20802 6019325 2024-02-21 09:28:48.954 2024-02-21 09:28:48.954 18900 TIP 433499 14074 6019340 2024-02-21 09:28:54.989 2024-02-21 09:28:54.989 1000 FEE 433458 5825 6019341 2024-02-21 09:28:54.989 2024-02-21 09:28:54.989 9000 TIP 433458 1833 6019348 2024-02-21 09:28:58.461 2024-02-21 09:28:58.461 1000 FEE 433111 672 6019349 2024-02-21 09:28:58.461 2024-02-21 09:28:58.461 9000 TIP 433111 20897 6019362 2024-02-21 09:29:03.936 2024-02-21 09:29:03.936 1000 FEE 433286 18076 6019363 2024-02-21 09:29:03.936 2024-02-21 09:29:03.936 9000 TIP 433286 1495 6019373 2024-02-21 09:29:08.624 2024-02-21 09:29:08.624 1000 FEE 433032 7395 6019374 2024-02-21 09:29:08.624 2024-02-21 09:29:08.624 9000 TIP 433032 15386 6019377 2024-02-21 09:29:10.773 2024-02-21 09:29:10.773 1000 FEE 433252 20555 6019378 2024-02-21 09:29:10.773 2024-02-21 09:29:10.773 9000 TIP 433252 19842 6019387 2024-02-21 09:29:15.255 2024-02-21 09:29:15.255 1000 FEE 433194 19924 6019388 2024-02-21 09:29:15.255 2024-02-21 09:29:15.255 9000 TIP 433194 18507 6019397 2024-02-21 09:29:25.001 2024-02-21 09:29:25.001 1000 FEE 433014 4313 6019398 2024-02-21 09:29:25.001 2024-02-21 09:29:25.001 9000 TIP 433014 2609 6019421 2024-02-21 09:31:59.244 2024-02-21 09:31:59.244 3300 FEE 433480 9177 6019422 2024-02-21 09:31:59.244 2024-02-21 09:31:59.244 29700 TIP 433480 13399 6019423 2024-02-21 09:32:03.629 2024-02-21 09:32:03.629 3300 FEE 433358 17722 6019424 2024-02-21 09:32:03.629 2024-02-21 09:32:03.629 29700 TIP 433358 11956 6019449 2024-02-21 09:36:27.626 2024-02-21 09:36:27.626 1000 FEE 433527 1697 6019456 2024-02-21 09:37:30.221 2024-02-21 09:37:30.221 1000 FEE 433359 14213 6019457 2024-02-21 09:37:30.221 2024-02-21 09:37:30.221 9000 TIP 433359 18119 6019481 2024-02-21 09:38:27.309 2024-02-21 09:38:27.309 1000 FEE 432964 14280 6019482 2024-02-21 09:38:27.309 2024-02-21 09:38:27.309 9000 TIP 432964 15180 6019483 2024-02-21 09:38:28.195 2024-02-21 09:38:28.195 1000 FEE 433355 15858 6019484 2024-02-21 09:38:28.195 2024-02-21 09:38:28.195 9000 TIP 433355 15890 6019492 2024-02-21 09:38:44.582 2024-02-21 09:38:44.582 1000 FEE 432693 10731 6019493 2024-02-21 09:38:44.582 2024-02-21 09:38:44.582 9000 TIP 432693 17331 6019497 2024-02-21 09:38:45.711 2024-02-21 09:38:45.711 1000 FEE 433012 6300 6019498 2024-02-21 09:38:45.711 2024-02-21 09:38:45.711 9000 TIP 433012 11716 6019507 2024-02-21 09:39:04.778 2024-02-21 09:39:04.778 1000 FEE 433391 16848 6019508 2024-02-21 09:39:04.778 2024-02-21 09:39:04.778 9000 TIP 433391 766 6019509 2024-02-21 09:39:04.938 2024-02-21 09:39:04.938 1000 FEE 433391 629 6019510 2024-02-21 09:39:04.938 2024-02-21 09:39:04.938 9000 TIP 433391 20717 6019523 2024-02-21 09:41:14.245 2024-02-21 09:41:14.245 0 FEE 433526 11491 6019536 2024-02-21 09:43:39.951 2024-02-21 09:43:39.951 1000 FEE 433535 8095 6019549 2024-02-21 09:46:32.56 2024-02-21 09:46:32.56 1000 FEE 433537 21393 6019552 2024-02-21 09:47:14.194 2024-02-21 09:47:14.194 1000 FEE 433538 20757 6019576 2024-02-21 09:50:23.31 2024-02-21 09:50:23.31 1000 FEE 433465 3709 6019577 2024-02-21 09:50:23.31 2024-02-21 09:50:23.31 9000 TIP 433465 17217 6019630 2024-02-21 10:04:36.45 2024-02-21 10:04:36.45 1000 FEE 433547 2188 6019657 2024-02-21 10:13:12.023 2024-02-21 10:13:12.023 100000 FEE 433555 7818 6019690 2024-02-21 10:21:01.353 2024-02-21 10:21:01.353 2100 FEE 433558 2529 6019691 2024-02-21 10:21:01.353 2024-02-21 10:21:01.353 18900 TIP 433558 866 6019294 2024-02-21 09:28:34.458 2024-02-21 09:28:34.458 9000 TIP 432910 21140 6019297 2024-02-21 09:28:36.452 2024-02-21 09:28:36.452 1000 FEE 432889 2010 6019298 2024-02-21 09:28:36.452 2024-02-21 09:28:36.452 9000 TIP 432889 9362 6019315 2024-02-21 09:28:46.098 2024-02-21 09:28:46.098 1000 FEE 433516 7983 6019326 2024-02-21 09:28:49.586 2024-02-21 09:28:49.586 1000 FEE 433191 20871 6019327 2024-02-21 09:28:49.586 2024-02-21 09:28:49.586 9000 TIP 433191 9421 6019328 2024-02-21 09:28:50.298 2024-02-21 09:28:50.298 1000 FEE 433042 17014 6019329 2024-02-21 09:28:50.298 2024-02-21 09:28:50.298 9000 TIP 433042 749 6019336 2024-02-21 09:28:52.91 2024-02-21 09:28:52.91 1000 FEE 433437 12959 6019337 2024-02-21 09:28:52.91 2024-02-21 09:28:52.91 9000 TIP 433437 1845 6019354 2024-02-21 09:29:00.811 2024-02-21 09:29:00.811 1000 FEE 433085 9166 6019355 2024-02-21 09:29:00.811 2024-02-21 09:29:00.811 9000 TIP 433085 13587 6019399 2024-02-21 09:29:25.178 2024-02-21 09:29:25.178 1000 FEE 433014 20222 6019400 2024-02-21 09:29:25.178 2024-02-21 09:29:25.178 9000 TIP 433014 16289 6019409 2024-02-21 09:30:10.24 2024-02-21 09:30:10.24 1000 FEE 433518 18828 6019439 2024-02-21 09:34:24.644 2024-02-21 09:34:24.644 1000 FEE 433523 4570 6019446 2024-02-21 09:36:24.514 2024-02-21 09:36:24.514 1000 FEE 433526 1505 6019462 2024-02-21 09:37:37.657 2024-02-21 09:37:37.657 1000 FEE 432563 2390 6019463 2024-02-21 09:37:37.657 2024-02-21 09:37:37.657 9000 TIP 432563 17103 6019465 2024-02-21 09:38:12.9 2024-02-21 09:38:12.9 1000 FEE 432563 16816 6019466 2024-02-21 09:38:12.9 2024-02-21 09:38:12.9 9000 TIP 432563 10611 6019471 2024-02-21 09:38:16.222 2024-02-21 09:38:16.222 1000 FEE 432603 19132 6019472 2024-02-21 09:38:16.222 2024-02-21 09:38:16.222 9000 TIP 432603 4459 6019520 2024-02-21 09:40:26.984 2024-02-21 09:40:26.984 1000 FEE 433532 7097 6019524 2024-02-21 09:41:34.259 2024-02-21 09:41:34.259 2100 FEE 433530 7659 6019525 2024-02-21 09:41:34.259 2024-02-21 09:41:34.259 18900 TIP 433530 18896 6019526 2024-02-21 09:41:37.606 2024-02-21 09:41:37.606 2100 FEE 433532 21405 6019527 2024-02-21 09:41:37.606 2024-02-21 09:41:37.606 18900 TIP 433532 1801 6019544 2024-02-21 09:45:03.306 2024-02-21 09:45:03.306 0 FEE 433535 14381 6019560 2024-02-21 09:49:16.775 2024-02-21 09:49:16.775 2100 FEE 433022 16556 6019561 2024-02-21 09:49:16.775 2024-02-21 09:49:16.775 18900 TIP 433022 20563 6019564 2024-02-21 09:49:17.904 2024-02-21 09:49:17.904 2100 FEE 433022 652 6019565 2024-02-21 09:49:17.904 2024-02-21 09:49:17.904 18900 TIP 433022 19910 6019569 2024-02-21 09:50:15.207 2024-02-21 09:50:15.207 1000 FEE 433493 17514 6019570 2024-02-21 09:50:15.207 2024-02-21 09:50:15.207 9000 TIP 433493 2232 6019586 2024-02-21 09:50:45.987 2024-02-21 09:50:45.987 0 FEE 433533 19094 6019619 2024-02-21 10:02:27.487 2024-02-21 10:02:27.487 1000 FEE 433543 11395 6019620 2024-02-21 10:02:27.487 2024-02-21 10:02:27.487 9000 TIP 433543 15925 6019626 2024-02-21 10:03:17.381 2024-02-21 10:03:17.381 1000 FEE 433546 6260 6019644 2024-02-21 10:09:04.075 2024-02-21 10:09:04.075 1000 FEE 433551 1221 6019658 2024-02-21 10:13:30.828 2024-02-21 10:13:30.828 12800 FEE 433542 19021 6019659 2024-02-21 10:13:30.828 2024-02-21 10:13:30.828 115200 TIP 433542 17157 6019662 2024-02-21 10:14:49.536 2024-02-21 10:14:49.536 1000 FEE 433557 11938 6019670 2024-02-21 10:17:22.816 2024-02-21 10:17:22.816 2100 FEE 433503 17891 6019671 2024-02-21 10:17:22.816 2024-02-21 10:17:22.816 18900 TIP 433503 21247 6019681 2024-02-21 10:19:30.245 2024-02-21 10:19:30.245 1000 FEE 433563 20837 6019735 2024-02-21 10:36:08.786 2024-02-21 10:36:08.786 10000 FEE 433066 10283 6019736 2024-02-21 10:36:08.786 2024-02-21 10:36:08.786 90000 TIP 433066 763 6019751 2024-02-21 10:36:48.238 2024-02-21 10:36:48.238 500 FEE 433517 18454 6019752 2024-02-21 10:36:48.238 2024-02-21 10:36:48.238 4500 TIP 433517 20778 6019755 2024-02-21 10:36:55.634 2024-02-21 10:36:55.634 500 FEE 433500 18581 6019756 2024-02-21 10:36:55.634 2024-02-21 10:36:55.634 4500 TIP 433500 17227 6019764 2024-02-21 10:39:12.481 2024-02-21 10:39:12.481 10000 FEE 432741 16356 6019765 2024-02-21 10:39:12.481 2024-02-21 10:39:12.481 90000 TIP 432741 19638 6019781 2024-02-21 10:45:23.352 2024-02-21 10:45:23.352 4000 FEE 433453 9906 6019782 2024-02-21 10:45:23.352 2024-02-21 10:45:23.352 36000 TIP 433453 19284 6019817 2024-02-21 10:49:25.685 2024-02-21 10:49:25.685 10000 FEE 433582 21509 6019836 2024-02-21 10:57:30.634 2024-02-21 10:57:30.634 2000 FEE 433583 11491 6019837 2024-02-21 10:57:30.634 2024-02-21 10:57:30.634 18000 TIP 433583 17673 6019847 2024-02-21 11:01:04.255 2024-02-21 11:01:04.255 125000 FEE 433591 10359 6019852 2024-02-21 11:02:22.232 2024-02-21 11:02:22.232 1000 FEE 433592 16126 6019863 2024-02-21 11:04:05.924 2024-02-21 11:04:05.924 100000 FEE 433594 6700 6019888 2024-02-21 11:08:23.098 2024-02-21 11:08:23.098 100 FEE 433597 10536 6019889 2024-02-21 11:08:23.098 2024-02-21 11:08:23.098 900 TIP 433597 14260 6019900 2024-02-21 11:08:27.959 2024-02-21 11:08:27.959 100 FEE 433597 766 6019901 2024-02-21 11:08:27.959 2024-02-21 11:08:27.959 900 TIP 433597 10728 6019906 2024-02-21 11:09:41.487 2024-02-21 11:09:41.487 1000 FEE 433600 2077 6019951 2024-02-21 11:17:35.526 2024-02-21 11:17:35.526 2100 FEE 433373 10728 6019952 2024-02-21 11:17:35.526 2024-02-21 11:17:35.526 18900 TIP 433373 9844 6019988 2024-02-21 11:21:02.198 2024-02-21 11:21:02.198 1000 FEE 433565 1741 6019989 2024-02-21 11:21:02.198 2024-02-21 11:21:02.198 9000 TIP 433565 15703 6019994 2024-02-21 11:21:15.916 2024-02-21 11:21:15.916 1000 FEE 433617 10586 6020003 2024-02-21 11:23:31.818 2024-02-21 11:23:31.818 4000 FEE 433606 21405 6020004 2024-02-21 11:23:31.818 2024-02-21 11:23:31.818 36000 TIP 433606 660 6020033 2024-02-21 11:28:12.877 2024-02-21 11:28:12.877 2100 FEE 433538 4776 6020034 2024-02-21 11:28:12.877 2024-02-21 11:28:12.877 18900 TIP 433538 15239 6020036 2024-02-21 11:28:36.085 2024-02-21 11:28:36.085 12800 FEE 433312 20563 6020037 2024-02-21 11:28:36.085 2024-02-21 11:28:36.085 115200 TIP 433312 19198 6020039 2024-02-21 11:29:17.463 2024-02-21 11:29:17.463 1000 FEE 433628 20680 6020086 2024-02-21 11:34:29.376 2024-02-21 11:34:29.376 1000 FEE 433632 12278 6020090 2024-02-21 11:34:59.511 2024-02-21 11:34:59.511 2100 FEE 342249 5759 6020091 2024-02-21 11:34:59.511 2024-02-21 11:34:59.511 18900 TIP 342249 20871 6020095 2024-02-21 11:35:11.112 2024-02-21 11:35:11.112 2100 FEE 433391 21157 6020096 2024-02-21 11:35:11.112 2024-02-21 11:35:11.112 18900 TIP 433391 4079 6020152 2024-02-21 11:37:45.023 2024-02-21 11:37:45.023 1100 FEE 433633 1803 6020153 2024-02-21 11:37:45.023 2024-02-21 11:37:45.023 9900 TIP 433633 20912 6020154 2024-02-21 11:37:48.495 2024-02-21 11:37:48.495 2100 FEE 433359 20023 6020155 2024-02-21 11:37:48.495 2024-02-21 11:37:48.495 18900 TIP 433359 21563 6020218 2024-02-21 11:43:48.08 2024-02-21 11:43:48.08 2100 FEE 433304 15556 6020219 2024-02-21 11:43:48.08 2024-02-21 11:43:48.08 18900 TIP 433304 14705 6020241 2024-02-21 11:49:57.489 2024-02-21 11:49:57.489 1000 FEE 433650 14255 6020255 2024-02-21 11:52:40.328 2024-02-21 11:52:40.328 4000 FEE 433648 4304 6020256 2024-02-21 11:52:40.328 2024-02-21 11:52:40.328 36000 TIP 433648 12769 6020267 2024-02-21 11:53:28.341 2024-02-21 11:53:28.341 300 FEE 433029 17944 6020268 2024-02-21 11:53:28.341 2024-02-21 11:53:28.341 2700 TIP 433029 5522 6020306 2024-02-21 11:59:28.487 2024-02-21 11:59:28.487 1000 FEE 433302 13843 6020307 2024-02-21 11:59:28.487 2024-02-21 11:59:28.487 9000 TIP 433302 18581 6020323 2024-02-21 12:04:02.177 2024-02-21 12:04:02.177 1700 FEE 433623 9833 6020324 2024-02-21 12:04:02.177 2024-02-21 12:04:02.177 15300 TIP 433623 1094 6020344 2024-02-21 12:08:10.778 2024-02-21 12:08:10.778 10000 FEE 433668 9874 6020345 2024-02-21 12:08:10.778 2024-02-21 12:08:10.778 90000 TIP 433668 7916 6020353 2024-02-21 12:10:50.224 2024-02-21 12:10:50.224 10000 FEE 433677 18528 6020362 2024-02-21 12:14:40.085 2024-02-21 12:14:40.085 2100 FEE 433647 2176 6020363 2024-02-21 12:14:40.085 2024-02-21 12:14:40.085 18900 TIP 433647 2444 6020368 2024-02-21 12:16:43.491 2024-02-21 12:16:43.491 1000 FEE 433678 16684 6020375 2024-02-21 12:17:43.728 2024-02-21 12:17:43.728 1000 FEE 433680 14357 6020384 2024-02-21 12:18:40.662 2024-02-21 12:18:40.662 2100 FEE 433669 8726 6019425 2024-02-21 09:32:04.029 2024-02-21 09:32:04.029 3300 FEE 433358 1737 6019426 2024-02-21 09:32:04.029 2024-02-21 09:32:04.029 29700 TIP 433358 9169 6019427 2024-02-21 09:32:04.282 2024-02-21 09:32:04.282 3300 FEE 433358 12911 6019428 2024-02-21 09:32:04.282 2024-02-21 09:32:04.282 29700 TIP 433358 20987 6019467 2024-02-21 09:38:14.517 2024-02-21 09:38:14.517 1000 FEE 432576 7583 6019468 2024-02-21 09:38:14.517 2024-02-21 09:38:14.517 9000 TIP 432576 11192 6019473 2024-02-21 09:38:17.519 2024-02-21 09:38:17.519 1000 FEE 432701 1800 6019474 2024-02-21 09:38:17.519 2024-02-21 09:38:17.519 9000 TIP 432701 19281 6019479 2024-02-21 09:38:26.196 2024-02-21 09:38:26.196 1000 FEE 432943 11527 6019480 2024-02-21 09:38:26.196 2024-02-21 09:38:26.196 9000 TIP 432943 15119 6019490 2024-02-21 09:38:43.835 2024-02-21 09:38:43.835 1000 FEE 433030 9347 6019491 2024-02-21 09:38:43.835 2024-02-21 09:38:43.835 9000 TIP 433030 9345 6019496 2024-02-21 09:38:45.508 2024-02-21 09:38:45.508 0 FEE 433528 8505 6019499 2024-02-21 09:38:57.771 2024-02-21 09:38:57.771 1000 FEE 433531 1244 6019521 2024-02-21 09:40:45.581 2024-02-21 09:40:45.581 0 FEE 433530 2718 6019540 2024-02-21 09:43:59.136 2024-02-21 09:43:59.136 1000 FEE 433528 9290 6019541 2024-02-21 09:43:59.136 2024-02-21 09:43:59.136 9000 TIP 433528 9335 6019548 2024-02-21 09:46:21.825 2024-02-21 09:46:21.825 0 FEE 433535 21466 6019555 2024-02-21 09:47:27.901 2024-02-21 09:47:27.901 25000 FEE 433186 17727 6019556 2024-02-21 09:47:27.901 2024-02-21 09:47:27.901 225000 TIP 433186 18904 6019558 2024-02-21 09:49:04.032 2024-02-21 09:49:04.032 1000 FEE 433539 2709 6019571 2024-02-21 09:50:18.064 2024-02-21 09:50:18.064 1000 FEE 433493 4014 6019572 2024-02-21 09:50:18.064 2024-02-21 09:50:18.064 9000 TIP 433493 15690 6019573 2024-02-21 09:50:21.528 2024-02-21 09:50:21.528 2000 FEE 433022 10280 6019574 2024-02-21 09:50:21.528 2024-02-21 09:50:21.528 18000 TIP 433022 11220 6019575 2024-02-21 09:50:23.138 2024-02-21 09:50:23.138 0 FEE 433540 14651 6019584 2024-02-21 09:50:31.839 2024-02-21 09:50:31.839 200 FEE 433022 787 6019585 2024-02-21 09:50:31.839 2024-02-21 09:50:31.839 1800 TIP 433022 15088 6019601 2024-02-21 09:55:22.778 2024-02-21 09:55:22.778 500 FEE 433178 9363 6019602 2024-02-21 09:55:22.778 2024-02-21 09:55:22.778 4500 TIP 433178 2525 6019603 2024-02-21 09:55:23.2 2024-02-21 09:55:23.2 10100 FEE 433022 631 6019604 2024-02-21 09:55:23.2 2024-02-21 09:55:23.2 90900 TIP 433022 9332 6019636 2024-02-21 10:05:16.39 2024-02-21 10:05:16.39 1000 FEE 433548 16456 6019640 2024-02-21 10:05:21.041 2024-02-21 10:05:21.041 10000 FEE 433550 2233 6019660 2024-02-21 10:13:38.614 2024-02-21 10:13:38.614 1000 FEE 433556 1585 6019672 2024-02-21 10:17:54.152 2024-02-21 10:17:54.152 1000 FEE 433560 12606 6019688 2024-02-21 10:20:57.058 2024-02-21 10:20:57.058 2100 FEE 433555 18138 6019689 2024-02-21 10:20:57.058 2024-02-21 10:20:57.058 18900 TIP 433555 19398 6019698 2024-02-21 10:23:34.032 2024-02-21 10:23:34.032 2100 FEE 433391 5173 6019699 2024-02-21 10:23:34.032 2024-02-21 10:23:34.032 18900 TIP 433391 16879 6019720 2024-02-21 10:31:57.222 2024-02-21 10:31:57.222 0 FEE 433571 10056 6019726 2024-02-21 10:33:42.082 2024-02-21 10:33:42.082 1000 FEE 433049 16598 6019727 2024-02-21 10:33:42.082 2024-02-21 10:33:42.082 9000 TIP 433049 20326 6019737 2024-02-21 10:36:17.511 2024-02-21 10:36:17.511 3000 FEE 433555 16212 6019738 2024-02-21 10:36:17.511 2024-02-21 10:36:17.511 27000 TIP 433555 21506 6019768 2024-02-21 10:40:17.537 2024-02-21 10:40:17.537 50000 FEE 433576 18231 6019770 2024-02-21 10:41:15.222 2024-02-21 10:41:15.222 1000 FEE 433576 705 6019771 2024-02-21 10:41:15.222 2024-02-21 10:41:15.222 9000 TIP 433576 9843 6019809 2024-02-21 10:48:08.318 2024-02-21 10:48:08.318 1000 FEE 433579 7877 6019828 2024-02-21 10:54:20.936 2024-02-21 10:54:20.936 1000 FEE 433584 1803 6019858 2024-02-21 11:03:25.529 2024-02-21 11:03:25.529 10000 FEE 433593 2264 6019867 2024-02-21 11:05:20.314 2024-02-21 11:05:20.314 2100 FEE 433537 11164 6019868 2024-02-21 11:05:20.314 2024-02-21 11:05:20.314 18900 TIP 433537 18452 6019870 2024-02-21 11:05:27.499 2024-02-21 11:05:27.499 1000 FEE 433596 18269 6019874 2024-02-21 11:06:30.344 2024-02-21 11:06:30.344 2100 FEE 433593 7773 6019875 2024-02-21 11:06:30.344 2024-02-21 11:06:30.344 18900 TIP 433593 17519 6019877 2024-02-21 11:06:53.424 2024-02-21 11:06:53.424 0 FEE 433597 21332 6019884 2024-02-21 11:08:15.995 2024-02-21 11:08:15.995 1000 FEE 433595 12265 6019885 2024-02-21 11:08:15.995 2024-02-21 11:08:15.995 9000 TIP 433595 20775 6019886 2024-02-21 11:08:17.364 2024-02-21 11:08:17.364 1000 FEE 433596 20602 6019887 2024-02-21 11:08:17.364 2024-02-21 11:08:17.364 9000 TIP 433596 20201 6019896 2024-02-21 11:08:25.147 2024-02-21 11:08:25.147 100 FEE 433597 15337 6019897 2024-02-21 11:08:25.147 2024-02-21 11:08:25.147 900 TIP 433597 1008 6019937 2024-02-21 11:17:03.738 2024-02-21 11:17:03.738 100 FEE 433555 8926 6019938 2024-02-21 11:17:03.738 2024-02-21 11:17:03.738 900 TIP 433555 11165 6019947 2024-02-21 11:17:33.838 2024-02-21 11:17:33.838 2100 FEE 433591 21036 6019948 2024-02-21 11:17:33.838 2024-02-21 11:17:33.838 18900 TIP 433591 1564 6019955 2024-02-21 11:18:00.658 2024-02-21 11:18:00.658 4000 FEE 433302 14074 6019956 2024-02-21 11:18:00.658 2024-02-21 11:18:00.658 36000 TIP 433302 7418 6019964 2024-02-21 11:18:08.346 2024-02-21 11:18:08.346 4000 FEE 433555 2741 6019965 2024-02-21 11:18:08.346 2024-02-21 11:18:08.346 36000 TIP 433555 2639 6019977 2024-02-21 11:18:53.697 2024-02-21 11:18:53.697 1000 FEE 433613 19267 6019993 2024-02-21 11:21:08.052 2024-02-21 11:21:08.052 1000 FEE 433616 5597 6020009 2024-02-21 11:25:03.373 2024-02-21 11:25:03.373 1000 FEE 433621 13246 6020032 2024-02-21 11:28:07.516 2024-02-21 11:28:07.516 1000 FEE 433626 17827 6020063 2024-02-21 11:32:11.935 2024-02-21 11:32:11.935 2100 FEE 433618 20280 6020064 2024-02-21 11:32:11.935 2024-02-21 11:32:11.935 18900 TIP 433618 15732 6020075 2024-02-21 11:32:51.283 2024-02-21 11:32:51.283 2100 FEE 433591 17218 6020076 2024-02-21 11:32:51.283 2024-02-21 11:32:51.283 18900 TIP 433591 9330 6020084 2024-02-21 11:33:52.667 2024-02-21 11:33:52.667 1000 FEE 433631 19375 6020115 2024-02-21 11:35:34.471 2024-02-21 11:35:34.471 1000 FEE 433634 4388 6020124 2024-02-21 11:35:41.288 2024-02-21 11:35:41.288 2100 FEE 433592 21159 6020125 2024-02-21 11:35:41.288 2024-02-21 11:35:41.288 18900 TIP 433592 7891 6020126 2024-02-21 11:35:44.77 2024-02-21 11:35:44.77 2100 FEE 433589 21061 6020127 2024-02-21 11:35:44.77 2024-02-21 11:35:44.77 18900 TIP 433589 13216 6020130 2024-02-21 11:36:31.911 2024-02-21 11:36:31.911 1000 FEE 433486 14906 6020131 2024-02-21 11:36:31.911 2024-02-21 11:36:31.911 9000 TIP 433486 17714 6020132 2024-02-21 11:36:35.005 2024-02-21 11:36:35.005 1000 FEE 433636 5942 6020166 2024-02-21 11:37:57.701 2024-02-21 11:37:57.701 100 FEE 432114 979 6020167 2024-02-21 11:37:57.701 2024-02-21 11:37:57.701 900 TIP 432114 18629 6020191 2024-02-21 11:39:27.995 2024-02-21 11:39:27.995 0 FEE 433633 18941 6020238 2024-02-21 11:49:41.067 2024-02-21 11:49:41.067 1000 FEE 433499 1618 6020239 2024-02-21 11:49:41.067 2024-02-21 11:49:41.067 9000 TIP 433499 15843 6020243 2024-02-21 11:50:08.569 2024-02-21 11:50:08.569 1100 FEE 433647 937 6020244 2024-02-21 11:50:08.569 2024-02-21 11:50:08.569 9900 TIP 433647 21503 6020247 2024-02-21 11:50:50.371 2024-02-21 11:50:50.371 1600 FEE 433648 3478 6020248 2024-02-21 11:50:50.371 2024-02-21 11:50:50.371 14400 TIP 433648 1145 6020258 2024-02-21 11:53:17.303 2024-02-21 11:53:17.303 1000 FEE 433655 20972 6020269 2024-02-21 11:53:28.545 2024-02-21 11:53:28.545 300 FEE 433029 9517 6020270 2024-02-21 11:53:28.545 2024-02-21 11:53:28.545 2700 TIP 433029 678 6020275 2024-02-21 11:53:29.199 2024-02-21 11:53:29.199 300 FEE 433029 14669 6020276 2024-02-21 11:53:29.199 2024-02-21 11:53:29.199 2700 TIP 433029 21413 6020300 2024-02-21 11:59:20.491 2024-02-21 11:59:20.491 1000 FEE 433574 733 6020301 2024-02-21 11:59:20.491 2024-02-21 11:59:20.491 9000 TIP 433574 18819 6020310 2024-02-21 12:00:04.888 2024-02-21 12:00:04.888 1000 FEE 433662 10311 6020314 2024-02-21 12:02:08.182 2024-02-21 12:02:08.182 1000 FEE 433646 2952 6020315 2024-02-21 12:02:08.182 2024-02-21 12:02:08.182 9000 TIP 433646 16387 6019437 2024-02-21 09:33:44.345 2024-02-21 09:33:44.345 10000 FEE 433522 18517 6019469 2024-02-21 09:38:15.343 2024-02-21 09:38:15.343 1000 FEE 432584 1817 6019470 2024-02-21 09:38:15.343 2024-02-21 09:38:15.343 9000 TIP 432584 17673 6019504 2024-02-21 09:39:00.577 2024-02-21 09:39:00.577 1000 FEE 433509 20858 6019505 2024-02-21 09:39:00.577 2024-02-21 09:39:00.577 9000 TIP 433509 14545 6019517 2024-02-21 09:39:39.847 2024-02-21 09:39:39.847 10000 FEE 433344 802 6019518 2024-02-21 09:39:39.847 2024-02-21 09:39:39.847 90000 TIP 433344 21401 6019539 2024-02-21 09:43:54.476 2024-02-21 09:43:54.476 0 FEE 433535 14122 6019543 2024-02-21 09:44:33.738 2024-02-21 09:44:33.738 0 FEE 433535 21033 6019553 2024-02-21 09:47:18.807 2024-02-21 09:47:18.807 10000 FEE 433296 13622 6019554 2024-02-21 09:47:18.807 2024-02-21 09:47:18.807 90000 TIP 433296 16706 6019615 2024-02-21 10:01:16.616 2024-02-21 10:01:16.616 100000 FEE 433544 16270 6019616 2024-02-21 10:01:16.893 2024-02-21 10:01:16.893 1000 FEE 433344 12268 6019617 2024-02-21 10:01:16.893 2024-02-21 10:01:16.893 9000 TIP 433344 837 6019623 2024-02-21 10:02:43.69 2024-02-21 10:02:43.69 1000 FEE 433545 18403 6019637 2024-02-21 10:05:17.211 2024-02-21 10:05:17.211 1000 FEE 433549 19854 6019638 2024-02-21 10:05:19.816 2024-02-21 10:05:19.816 2100 FEE 433475 768 6019639 2024-02-21 10:05:19.816 2024-02-21 10:05:19.816 18900 TIP 433475 12566 6019664 2024-02-21 10:15:49.59 2024-02-21 10:15:49.59 2100 FEE 433525 20606 6019665 2024-02-21 10:15:49.59 2024-02-21 10:15:49.59 18900 TIP 433525 21406 6019673 2024-02-21 10:18:00.996 2024-02-21 10:18:00.996 2100 FEE 433524 18402 6019674 2024-02-21 10:18:00.996 2024-02-21 10:18:00.996 18900 TIP 433524 21575 6019680 2024-02-21 10:19:21.359 2024-02-21 10:19:21.359 1000 FEE 433562 16847 6019719 2024-02-21 10:31:42.248 2024-02-21 10:31:42.248 0 FEE 433571 14785 6019760 2024-02-21 10:38:37.684 2024-02-21 10:38:37.684 100000 FEE 433574 21591 6019766 2024-02-21 10:39:35.334 2024-02-21 10:39:35.334 1000 FEE 433575 9992 6019775 2024-02-21 10:42:04.391 2024-02-21 10:42:04.391 100 FEE 433477 822 6019776 2024-02-21 10:42:04.391 2024-02-21 10:42:04.391 900 TIP 433477 9332 6019788 2024-02-21 10:46:31.704 2024-02-21 10:46:31.704 2100 FEE 433576 20841 6019789 2024-02-21 10:46:31.704 2024-02-21 10:46:31.704 18900 TIP 433576 5377 6019791 2024-02-21 10:47:18.888 2024-02-21 10:47:18.888 500 FEE 433524 5701 6019792 2024-02-21 10:47:18.888 2024-02-21 10:47:18.888 4500 TIP 433524 21600 6019805 2024-02-21 10:47:21.955 2024-02-21 10:47:21.955 500 FEE 433524 7766 6019806 2024-02-21 10:47:21.955 2024-02-21 10:47:21.955 4500 TIP 433524 828 6019830 2024-02-21 10:55:13.25 2024-02-21 10:55:13.25 500 FEE 433447 15491 6019831 2024-02-21 10:55:13.25 2024-02-21 10:55:13.25 4500 TIP 433447 976 6019861 2024-02-21 11:03:37.052 2024-02-21 11:03:37.052 0 FEE 433593 3342 6019878 2024-02-21 11:06:57.576 2024-02-21 11:06:57.576 0 FEE 433595 16193 6019898 2024-02-21 11:08:25.907 2024-02-21 11:08:25.907 100 FEE 433597 3717 6019899 2024-02-21 11:08:25.907 2024-02-21 11:08:25.907 900 TIP 433597 20450 6019911 2024-02-21 11:10:14.153 2024-02-21 11:10:14.153 0 FEE 433601 13133 6019913 2024-02-21 11:10:39.303 2024-02-21 11:10:39.303 1100 FEE 433594 21417 6019914 2024-02-21 11:10:39.303 2024-02-21 11:10:39.303 9900 TIP 433594 16353 6019925 2024-02-21 11:12:18.922 2024-02-21 11:12:18.922 1000 FEE 433606 15326 6019933 2024-02-21 11:15:19.679 2024-02-21 11:15:19.679 1000 FEE 433609 703 6019953 2024-02-21 11:18:00.357 2024-02-21 11:18:00.357 4000 FEE 433391 19690 6019954 2024-02-21 11:18:00.357 2024-02-21 11:18:00.357 36000 TIP 433391 21214 6019957 2024-02-21 11:18:01.864 2024-02-21 11:18:01.864 2100 FEE 433601 9290 6019958 2024-02-21 11:18:01.864 2024-02-21 11:18:01.864 18900 TIP 433601 21332 6019974 2024-02-21 11:18:33.256 2024-02-21 11:18:33.256 12800 FEE 433607 6383 6019975 2024-02-21 11:18:33.256 2024-02-21 11:18:33.256 115200 TIP 433607 963 6019986 2024-02-21 11:20:33.89 2024-02-21 11:20:33.89 800 FEE 433260 19346 6019987 2024-02-21 11:20:33.89 2024-02-21 11:20:33.89 7200 TIP 433260 5499 6019991 2024-02-21 11:21:06.925 2024-02-21 11:21:06.925 4000 FEE 433555 17001 6019992 2024-02-21 11:21:06.925 2024-02-21 11:21:06.925 36000 TIP 433555 917 6020008 2024-02-21 11:24:25.042 2024-02-21 11:24:25.042 1000 FEE 433620 17011 6020018 2024-02-21 11:26:34.689 2024-02-21 11:26:34.689 300 FEE 433591 16432 6020019 2024-02-21 11:26:34.689 2024-02-21 11:26:34.689 2700 TIP 433591 12976 6020022 2024-02-21 11:26:59.492 2024-02-21 11:26:59.492 1600 FEE 433589 13399 6020023 2024-02-21 11:26:59.492 2024-02-21 11:26:59.492 14400 TIP 433589 18119 6020056 2024-02-21 11:31:21.508 2024-02-21 11:31:21.508 300 FEE 432995 19531 6020057 2024-02-21 11:31:21.508 2024-02-21 11:31:21.508 2700 TIP 432995 16706 6020060 2024-02-21 11:31:59.061 2024-02-21 11:31:59.061 200 FEE 433594 1319 6020061 2024-02-21 11:31:59.061 2024-02-21 11:31:59.061 1800 TIP 433594 12821 6020134 2024-02-21 11:36:43.959 2024-02-21 11:36:43.959 800 FEE 433571 3377 6020135 2024-02-21 11:36:43.959 2024-02-21 11:36:43.959 7200 TIP 433571 20523 6020138 2024-02-21 11:37:04.987 2024-02-21 11:37:04.987 1000 FEE 433638 19103 6020144 2024-02-21 11:37:35.551 2024-02-21 11:37:35.551 2100 FEE 433499 16954 6020145 2024-02-21 11:37:35.551 2024-02-21 11:37:35.551 18900 TIP 433499 19961 6020186 2024-02-21 11:38:57.188 2024-02-21 11:38:57.188 2100 FEE 432477 20788 6020187 2024-02-21 11:38:57.188 2024-02-21 11:38:57.188 18900 TIP 432477 21329 6020198 2024-02-21 11:40:07.611 2024-02-21 11:40:07.611 2100 FEE 433608 11648 6020199 2024-02-21 11:40:07.611 2024-02-21 11:40:07.611 18900 TIP 433608 21026 6020207 2024-02-21 11:40:45.104 2024-02-21 11:40:45.104 2100 FEE 433504 20539 6020208 2024-02-21 11:40:45.104 2024-02-21 11:40:45.104 18900 TIP 433504 18524 6020265 2024-02-21 11:53:28.115 2024-02-21 11:53:28.115 300 FEE 433029 1354 6020266 2024-02-21 11:53:28.115 2024-02-21 11:53:28.115 2700 TIP 433029 16912 6020277 2024-02-21 11:53:29.442 2024-02-21 11:53:29.442 300 FEE 433029 19836 6020278 2024-02-21 11:53:29.442 2024-02-21 11:53:29.442 2700 TIP 433029 5308 6020333 2024-02-21 12:05:24.707 2024-02-21 12:05:24.707 1000 FEE 433670 20912 6020350 2024-02-21 12:09:43.287 2024-02-21 12:09:43.287 1000 FEE 433675 19662 6020372 2024-02-21 12:17:28.502 2024-02-21 12:17:28.502 10000 FEE 433679 660 6020391 2024-02-21 12:20:28.254 2024-02-21 12:20:28.254 4000 FEE 433679 20852 6020392 2024-02-21 12:20:28.254 2024-02-21 12:20:28.254 36000 TIP 433679 9843 6020401 2024-02-21 12:22:02.526 2024-02-21 12:22:02.526 1000 FEE 433687 18896 6020407 2024-02-21 12:22:48.961 2024-02-21 12:22:48.961 1000 FEE 433647 11590 6020408 2024-02-21 12:22:48.961 2024-02-21 12:22:48.961 9000 TIP 433647 658 6020413 2024-02-21 12:23:27.684 2024-02-21 12:23:27.684 11700 FEE 433391 21140 6020414 2024-02-21 12:23:27.684 2024-02-21 12:23:27.684 105300 TIP 433391 4238 6020429 2024-02-21 12:24:44.09 2024-02-21 12:24:44.09 1000 FEE 433679 686 6020430 2024-02-21 12:24:44.09 2024-02-21 12:24:44.09 9000 TIP 433679 21395 6020471 2024-02-21 12:33:24.974 2024-02-21 12:33:24.974 1000 FEE 433697 11018 6020481 2024-02-21 12:35:53.561 2024-02-21 12:35:53.561 500 FEE 433653 7869 6020482 2024-02-21 12:35:53.561 2024-02-21 12:35:53.561 4500 TIP 433653 10007 6020494 2024-02-21 12:37:19.292 2024-02-21 12:37:19.292 1000 FEE 433705 16956 6020502 2024-02-21 12:38:04.022 2024-02-21 12:38:04.022 1100 FEE 433555 18524 6020503 2024-02-21 12:38:04.022 2024-02-21 12:38:04.022 9900 TIP 433555 2963 6020510 2024-02-21 12:38:05.547 2024-02-21 12:38:05.547 1100 FEE 433391 9275 6020511 2024-02-21 12:38:05.547 2024-02-21 12:38:05.547 9900 TIP 433391 15858 6020539 2024-02-21 12:42:08.982 2024-02-21 12:42:08.982 2100 FEE 433687 19557 6020540 2024-02-21 12:42:08.982 2024-02-21 12:42:08.982 18900 TIP 433687 11165 6020563 2024-02-21 12:44:55.656 2024-02-21 12:44:55.656 100 FEE 433403 19566 6020564 2024-02-21 12:44:55.656 2024-02-21 12:44:55.656 900 TIP 433403 11378 6020574 2024-02-21 12:45:13.881 2024-02-21 12:45:13.881 90000 FEE 433403 18446 6020575 2024-02-21 12:45:13.881 2024-02-21 12:45:13.881 810000 TIP 433403 18357 6020578 2024-02-21 12:45:27.39 2024-02-21 12:45:27.39 1000 FEE 433698 2123 6020579 2024-02-21 12:45:27.39 2024-02-21 12:45:27.39 9000 TIP 433698 21373 6019563 2024-02-21 09:49:16.995 2024-02-21 09:49:16.995 18900 TIP 433022 13622 6019582 2024-02-21 09:50:26.371 2024-02-21 09:50:26.371 1000 FEE 433430 21088 6019583 2024-02-21 09:50:26.371 2024-02-21 09:50:26.371 9000 TIP 433430 4633 6019613 2024-02-21 10:01:09.061 2024-02-21 10:01:09.061 1000 FEE 433344 5646 6019614 2024-02-21 10:01:09.061 2024-02-21 10:01:09.061 9000 TIP 433344 19690 6019621 2024-02-21 10:02:28.962 2024-02-21 10:02:28.962 1000 FEE 433178 19911 6019622 2024-02-21 10:02:28.962 2024-02-21 10:02:28.962 9000 TIP 433178 8954 6019624 2024-02-21 10:02:58.021 2024-02-21 10:02:58.021 0 FEE 433545 21451 6019654 2024-02-21 10:12:38.213 2024-02-21 10:12:38.213 2100 FEE 433128 652 6019655 2024-02-21 10:12:38.213 2024-02-21 10:12:38.213 18900 TIP 433128 17172 6019684 2024-02-21 10:19:52.672 2024-02-21 10:19:52.672 1000 FEE 433564 20225 6019686 2024-02-21 10:20:56.097 2024-02-21 10:20:56.097 2100 FEE 433555 20495 6019687 2024-02-21 10:20:56.097 2024-02-21 10:20:56.097 18900 TIP 433555 5578 6019587 2024-02-21 09:51:04.546 2024-02-21 09:51:04.546 1000 STREAM 141924 882 6019596 2024-02-21 09:53:04.555 2024-02-21 09:53:04.555 1000 STREAM 141924 13327 6019597 2024-02-21 09:54:04.554 2024-02-21 09:54:04.554 1000 STREAM 141924 9334 6019599 2024-02-21 09:55:04.551 2024-02-21 09:55:04.551 1000 STREAM 141924 6202 6019607 2024-02-21 09:56:04.547 2024-02-21 09:56:04.547 1000 STREAM 141924 672 6019610 2024-02-21 09:59:04.553 2024-02-21 09:59:04.553 1000 STREAM 141924 766 6019611 2024-02-21 10:00:04.549 2024-02-21 10:00:04.549 1000 STREAM 141924 8954 6019612 2024-02-21 10:01:04.553 2024-02-21 10:01:04.553 1000 STREAM 141924 21254 6019635 2024-02-21 10:05:04.57 2024-02-21 10:05:04.57 1000 STREAM 141924 13327 6019642 2024-02-21 10:07:04.59 2024-02-21 10:07:04.59 1000 STREAM 141924 19449 6019646 2024-02-21 10:10:04.602 2024-02-21 10:10:04.602 1000 STREAM 141924 1717 6019651 2024-02-21 10:12:04.708 2024-02-21 10:12:04.708 1000 STREAM 141924 21247 6019594 2024-02-21 09:52:04.572 2024-02-21 09:52:04.572 1000 STREAM 141924 2961 6019608 2024-02-21 09:57:04.548 2024-02-21 09:57:04.548 1000 STREAM 141924 6749 6019618 2024-02-21 10:02:04.56 2024-02-21 10:02:04.56 1000 STREAM 141924 21424 6019629 2024-02-21 10:04:04.559 2024-02-21 10:04:04.559 1000 STREAM 141924 18524 6019595 2024-02-21 09:52:46.319 2024-02-21 09:52:46.319 10000 FEE 433541 20715 6019600 2024-02-21 09:55:18.12 2024-02-21 09:55:18.12 1000 FEE 433543 17226 6019609 2024-02-21 09:58:05.88 2024-02-21 09:58:05.88 1000 STREAM 141924 15732 6019625 2024-02-21 10:03:05.122 2024-02-21 10:03:05.122 1000 STREAM 141924 11862 6019631 2024-02-21 10:04:42.279 2024-02-21 10:04:42.279 1000 FEE 431241 1985 6019632 2024-02-21 10:04:42.279 2024-02-21 10:04:42.279 9000 TIP 431241 10979 6019633 2024-02-21 10:05:00.515 2024-02-21 10:05:00.515 1000 FEE 429926 21247 6019634 2024-02-21 10:05:00.515 2024-02-21 10:05:00.515 9000 TIP 429926 19335 6019641 2024-02-21 10:06:05.074 2024-02-21 10:06:05.074 1000 STREAM 141924 14195 6019643 2024-02-21 10:08:05.089 2024-02-21 10:08:05.089 1000 STREAM 141924 20108 6019645 2024-02-21 10:09:05.102 2024-02-21 10:09:05.102 1000 STREAM 141924 9352 6019648 2024-02-21 10:10:55.39 2024-02-21 10:10:55.39 1000 FEE 433540 4415 6019649 2024-02-21 10:10:55.39 2024-02-21 10:10:55.39 9000 TIP 433540 7125 6019650 2024-02-21 10:11:05.106 2024-02-21 10:11:05.106 1000 STREAM 141924 18426 6019653 2024-02-21 10:12:22.581 2024-02-21 10:12:22.581 21000 FEE 433554 9351 6019656 2024-02-21 10:13:05.136 2024-02-21 10:13:05.136 1000 STREAM 141924 5519 6019661 2024-02-21 10:14:05.138 2024-02-21 10:14:05.138 1000 STREAM 141924 1319 6019663 2024-02-21 10:15:05.146 2024-02-21 10:15:05.146 1000 STREAM 141924 17953 6019666 2024-02-21 10:16:05.154 2024-02-21 10:16:05.154 1000 STREAM 141924 17541 6019668 2024-02-21 10:17:04.771 2024-02-21 10:17:04.771 1000 STREAM 141924 20018 6019669 2024-02-21 10:17:18.069 2024-02-21 10:17:18.069 1000 FEE 433559 739 6019675 2024-02-21 10:18:05.164 2024-02-21 10:18:05.164 1000 STREAM 141924 6421 6019677 2024-02-21 10:18:50.758 2024-02-21 10:18:50.758 2100 FEE 433513 635 6019678 2024-02-21 10:18:50.758 2024-02-21 10:18:50.758 18900 TIP 433513 19660 6019679 2024-02-21 10:19:05.188 2024-02-21 10:19:05.188 1000 STREAM 141924 701 6019685 2024-02-21 10:20:05.187 2024-02-21 10:20:05.187 1000 STREAM 141924 19292 6019692 2024-02-21 10:21:05.178 2024-02-21 10:21:05.178 1000 STREAM 141924 6030 6019693 2024-02-21 10:22:05.192 2024-02-21 10:22:05.192 1000 STREAM 141924 19502 6019694 2024-02-21 10:23:05.215 2024-02-21 10:23:05.215 1000 STREAM 141924 1389 6019695 2024-02-21 10:23:18.854 2024-02-21 10:23:18.854 2700 FEE 432771 12965 6019696 2024-02-21 10:23:18.854 2024-02-21 10:23:18.854 24300 TIP 432771 19664 6019697 2024-02-21 10:23:28.107 2024-02-21 10:23:28.107 1000 FEE 433565 19132 6019700 2024-02-21 10:24:05.205 2024-02-21 10:24:05.205 1000 STREAM 141924 20969 6019703 2024-02-21 10:25:05.215 2024-02-21 10:25:05.215 1000 STREAM 141924 12959 6019706 2024-02-21 10:26:05.217 2024-02-21 10:26:05.217 1000 STREAM 141924 20185 6019707 2024-02-21 10:27:05.233 2024-02-21 10:27:05.233 1000 STREAM 141924 646 6019709 2024-02-21 10:28:05.243 2024-02-21 10:28:05.243 1000 STREAM 141924 16284 6019710 2024-02-21 10:29:04.841 2024-02-21 10:29:04.841 1000 STREAM 141924 4692 6019711 2024-02-21 10:30:05.005 2024-02-21 10:30:05.005 1000 STREAM 141924 14545 6019718 2024-02-21 10:31:04.987 2024-02-21 10:31:04.987 1000 STREAM 141924 20889 6019721 2024-02-21 10:32:04.996 2024-02-21 10:32:04.996 1000 STREAM 141924 4167 6019725 2024-02-21 10:33:05 2024-02-21 10:33:05 1000 STREAM 141924 21014 6019732 2024-02-21 10:34:05.02 2024-02-21 10:34:05.02 1000 STREAM 141924 20980 6019733 2024-02-21 10:35:05.029 2024-02-21 10:35:05.029 1000 STREAM 141924 10280 6019734 2024-02-21 10:36:05.023 2024-02-21 10:36:05.023 1000 STREAM 141924 21521 6019739 2024-02-21 10:36:46.864 2024-02-21 10:36:46.864 500 FEE 433517 726 6019740 2024-02-21 10:36:46.864 2024-02-21 10:36:46.864 4500 TIP 433517 8133 6019743 2024-02-21 10:36:47.312 2024-02-21 10:36:47.312 500 FEE 433517 6310 6019744 2024-02-21 10:36:47.312 2024-02-21 10:36:47.312 4500 TIP 433517 20776 6019745 2024-02-21 10:36:47.628 2024-02-21 10:36:47.628 500 FEE 433517 681 6019746 2024-02-21 10:36:47.628 2024-02-21 10:36:47.628 4500 TIP 433517 14731 6019749 2024-02-21 10:36:48.051 2024-02-21 10:36:48.051 500 FEE 433517 7376 6019750 2024-02-21 10:36:48.051 2024-02-21 10:36:48.051 4500 TIP 433517 827 6019753 2024-02-21 10:36:48.777 2024-02-21 10:36:48.777 500 FEE 433517 11443 6019754 2024-02-21 10:36:48.777 2024-02-21 10:36:48.777 4500 TIP 433517 11522 6019757 2024-02-21 10:37:05.024 2024-02-21 10:37:05.024 1000 STREAM 141924 10409 6019758 2024-02-21 10:38:05.034 2024-02-21 10:38:05.034 1000 STREAM 141924 768 6019759 2024-02-21 10:38:07.5 2024-02-21 10:38:07.5 100000 FEE 433573 20143 6019763 2024-02-21 10:39:05.033 2024-02-21 10:39:05.033 1000 STREAM 141924 19639 6019767 2024-02-21 10:40:05.061 2024-02-21 10:40:05.061 1000 STREAM 141924 18473 6019769 2024-02-21 10:41:05.03 2024-02-21 10:41:05.03 1000 STREAM 141924 20730 6019772 2024-02-21 10:41:28.634 2024-02-21 10:41:28.634 1000 FEE 433577 2327 6019777 2024-02-21 10:42:05.062 2024-02-21 10:42:05.062 1000 STREAM 141924 1609 6019778 2024-02-21 10:43:05.366 2024-02-21 10:43:05.366 1000 STREAM 141924 17494 6019779 2024-02-21 10:44:02.19 2024-02-21 10:44:02.19 1000 STREAM 141924 15196 6019780 2024-02-21 10:45:05.042 2024-02-21 10:45:05.042 1000 STREAM 141924 15484 6019785 2024-02-21 10:45:25.615 2024-02-21 10:45:25.615 4000 FEE 433512 10493 6019786 2024-02-21 10:45:25.615 2024-02-21 10:45:25.615 36000 TIP 433512 16966 6019787 2024-02-21 10:46:05.048 2024-02-21 10:46:05.048 1000 STREAM 141924 1605 6019790 2024-02-21 10:47:05.047 2024-02-21 10:47:05.047 1000 STREAM 141924 6421 6019801 2024-02-21 10:47:20.747 2024-02-21 10:47:20.747 500 FEE 433524 9246 6019802 2024-02-21 10:47:20.747 2024-02-21 10:47:20.747 4500 TIP 433524 13575 6019807 2024-02-21 10:47:29.067 2024-02-21 10:47:29.067 21000 FEE 433578 705 6019808 2024-02-21 10:48:05.065 2024-02-21 10:48:05.065 1000 STREAM 141924 19021 6019811 2024-02-21 10:48:15.024 2024-02-21 10:48:15.024 2100 FEE 433578 2042 6019812 2024-02-21 10:48:15.024 2024-02-21 10:48:15.024 18900 TIP 433578 7097 6019815 2024-02-21 10:49:05.068 2024-02-21 10:49:05.068 1000 STREAM 141924 5725 6019816 2024-02-21 10:49:09.275 2024-02-21 10:49:09.275 1000 FEE 433581 13599 6019818 2024-02-21 10:50:05.088 2024-02-21 10:50:05.088 1000 STREAM 141924 19507 6019819 2024-02-21 10:51:05.076 2024-02-21 10:51:05.076 1000 STREAM 141924 9036 6019820 2024-02-21 10:51:33.675 2024-02-21 10:51:33.675 1000 FEE 433583 19992 6019821 2024-02-21 10:52:05.071 2024-02-21 10:52:05.071 1000 STREAM 141924 20299 6019822 2024-02-21 10:53:05.083 2024-02-21 10:53:05.083 1000 STREAM 141924 17639 6019823 2024-02-21 10:53:28.023 2024-02-21 10:53:28.023 2100 FEE 398837 5746 6019824 2024-02-21 10:53:28.023 2024-02-21 10:53:28.023 18900 TIP 398837 2757 6019825 2024-02-21 10:53:28.891 2024-02-21 10:53:28.891 2100 FEE 398837 4313 6019826 2024-02-21 10:53:28.891 2024-02-21 10:53:28.891 18900 TIP 398837 21057 6019827 2024-02-21 10:54:05.088 2024-02-21 10:54:05.088 1000 STREAM 141924 1162 6019829 2024-02-21 10:55:05.083 2024-02-21 10:55:05.083 1000 STREAM 141924 20168 6019832 2024-02-21 10:56:05.097 2024-02-21 10:56:05.097 1000 STREAM 141924 12774 6019833 2024-02-21 10:57:05.094 2024-02-21 10:57:05.094 1000 STREAM 141924 19459 6019838 2024-02-21 10:57:43.165 2024-02-21 10:57:43.165 1000 FEE 433585 913 6019839 2024-02-21 10:58:05.101 2024-02-21 10:58:05.101 1000 STREAM 141924 20109 6019840 2024-02-21 10:59:05.118 2024-02-21 10:59:05.118 1000 STREAM 141924 635 6019841 2024-02-21 11:00:04.555 2024-02-21 11:00:04.555 100000 FEE 433586 4062 6019842 2024-02-21 11:00:05.117 2024-02-21 11:00:05.117 1000 STREAM 141924 6688 6019844 2024-02-21 11:00:10.625 2024-02-21 11:00:10.625 1000 FEE 433589 4798 6019845 2024-02-21 11:00:18.82 2024-02-21 11:00:18.82 1000 FEE 433590 9307 6019846 2024-02-21 11:00:19.285 2024-02-21 11:00:19.285 0 FEE 433589 20563 6019848 2024-02-21 11:01:05.138 2024-02-21 11:01:05.138 1000 STREAM 141924 21453 6019849 2024-02-21 11:01:33.047 2024-02-21 11:01:33.047 1000 FEE 433485 11789 6019850 2024-02-21 11:01:33.047 2024-02-21 11:01:33.047 9000 TIP 433485 19813 6019851 2024-02-21 11:02:05.142 2024-02-21 11:02:05.142 1000 STREAM 141924 4984 6019853 2024-02-21 11:03:05.147 2024-02-21 11:03:05.147 1000 STREAM 141924 5308 6019856 2024-02-21 11:03:20.245 2024-02-21 11:03:20.245 2100 FEE 433590 2703 6019857 2024-02-21 11:03:20.245 2024-02-21 11:03:20.245 18900 TIP 433590 20026 6019862 2024-02-21 11:04:05.146 2024-02-21 11:04:05.146 1000 STREAM 141924 18736 6019864 2024-02-21 11:04:57.449 2024-02-21 11:04:57.449 1000 FEE 433595 21437 6019869 2024-02-21 11:05:20.913 2024-02-21 11:05:20.913 0 FEE 433595 19839 6019876 2024-02-21 11:06:36.088 2024-02-21 11:06:36.088 1000 FEE 433597 17638 6019902 2024-02-21 11:08:28.74 2024-02-21 11:08:28.74 100 FEE 433597 5175 6019903 2024-02-21 11:08:28.74 2024-02-21 11:08:28.74 900 TIP 433597 15103 6019907 2024-02-21 11:09:44.965 2024-02-21 11:09:44.965 1000 FEE 433601 20854 6019912 2024-02-21 11:10:20.816 2024-02-21 11:10:20.816 100000 FEE 433602 9099 6019915 2024-02-21 11:10:59.501 2024-02-21 11:10:59.501 1100 FEE 433597 13169 6019916 2024-02-21 11:10:59.501 2024-02-21 11:10:59.501 9900 TIP 433597 21446 6019919 2024-02-21 11:11:09.557 2024-02-21 11:11:09.557 1000 FEE 433604 18291 6019920 2024-02-21 11:11:38.6 2024-02-21 11:11:38.6 1000 FEE 432921 2537 6019921 2024-02-21 11:11:38.6 2024-02-21 11:11:38.6 9000 TIP 432921 1489 6019923 2024-02-21 11:11:59.203 2024-02-21 11:11:59.203 1000 FEE 433605 11716 6019940 2024-02-21 11:17:10.674 2024-02-21 11:17:10.674 0 FEE 200414 17030 6019943 2024-02-21 11:17:31.151 2024-02-21 11:17:31.151 2100 FEE 433391 17707 6019944 2024-02-21 11:17:31.151 2024-02-21 11:17:31.151 18900 TIP 433391 13931 6019970 2024-02-21 11:18:21.097 2024-02-21 11:18:21.097 4000 FEE 433108 16876 6019971 2024-02-21 11:18:21.097 2024-02-21 11:18:21.097 36000 TIP 433108 19905 6019984 2024-02-21 11:20:32.865 2024-02-21 11:20:32.865 4000 FEE 433574 14295 6019985 2024-02-21 11:20:32.865 2024-02-21 11:20:32.865 36000 TIP 433574 14260 6020005 2024-02-21 11:24:01.06 2024-02-21 11:24:01.06 1000 FEE 433559 3729 6020006 2024-02-21 11:24:01.06 2024-02-21 11:24:01.06 9000 TIP 433559 684 6020065 2024-02-21 11:32:13.475 2024-02-21 11:32:13.475 1000 FEE 433629 17838 6020068 2024-02-21 11:32:28.467 2024-02-21 11:32:28.467 1000 FEE 433630 17237 6020078 2024-02-21 11:33:13.732 2024-02-21 11:33:13.732 2100 FEE 433160 10981 6020079 2024-02-21 11:33:13.732 2024-02-21 11:33:13.732 18900 TIP 433160 17552 6020080 2024-02-21 11:33:36.142 2024-02-21 11:33:36.142 2100 FEE 433596 1741 6020081 2024-02-21 11:33:36.142 2024-02-21 11:33:36.142 18900 TIP 433596 16442 6020082 2024-02-21 11:33:36.857 2024-02-21 11:33:36.857 2100 FEE 433595 15806 6020083 2024-02-21 11:33:36.857 2024-02-21 11:33:36.857 18900 TIP 433595 21498 6020097 2024-02-21 11:35:12.918 2024-02-21 11:35:12.918 2100 FEE 433555 11648 6020098 2024-02-21 11:35:12.918 2024-02-21 11:35:12.918 18900 TIP 433555 2508 6020107 2024-02-21 11:35:30.799 2024-02-21 11:35:30.799 2100 FEE 433625 19906 6020108 2024-02-21 11:35:30.799 2024-02-21 11:35:30.799 18900 TIP 433625 6382 6020142 2024-02-21 11:37:34.759 2024-02-21 11:37:34.759 2100 FEE 433217 2322 6020143 2024-02-21 11:37:34.759 2024-02-21 11:37:34.759 18900 TIP 433217 18608 6020162 2024-02-21 11:37:57.334 2024-02-21 11:37:57.334 100 FEE 432114 13046 6020163 2024-02-21 11:37:57.334 2024-02-21 11:37:57.334 900 TIP 432114 9107 6020164 2024-02-21 11:37:57.506 2024-02-21 11:37:57.506 100 FEE 432114 18452 6020165 2024-02-21 11:37:57.506 2024-02-21 11:37:57.506 900 TIP 432114 18601 6020179 2024-02-21 11:38:21.801 2024-02-21 11:38:21.801 2100 FEE 432899 15843 6020180 2024-02-21 11:38:21.801 2024-02-21 11:38:21.801 18900 TIP 432899 14195 6020216 2024-02-21 11:42:50.822 2024-02-21 11:42:50.822 0 FEE 433644 11018 6020220 2024-02-21 11:44:00.954 2024-02-21 11:44:00.954 1000 FEE 433578 2196 6020221 2024-02-21 11:44:00.954 2024-02-21 11:44:00.954 9000 TIP 433578 16442 6020223 2024-02-21 11:44:23.691 2024-02-21 11:44:23.691 300 FEE 433447 20180 6020224 2024-02-21 11:44:23.691 2024-02-21 11:44:23.691 2700 TIP 433447 1046 6020251 2024-02-21 11:51:40.031 2024-02-21 11:51:40.031 1000 FEE 433652 3371 6020254 2024-02-21 11:52:38.135 2024-02-21 11:52:38.135 1000 FEE 433654 12289 6020273 2024-02-21 11:53:29.044 2024-02-21 11:53:29.044 300 FEE 433029 1046 6020274 2024-02-21 11:53:29.044 2024-02-21 11:53:29.044 2700 TIP 433029 5449 6020279 2024-02-21 11:53:29.624 2024-02-21 11:53:29.624 300 FEE 433029 18396 6020280 2024-02-21 11:53:29.624 2024-02-21 11:53:29.624 2700 TIP 433029 963 6020292 2024-02-21 11:56:01.493 2024-02-21 11:56:01.493 1000 FEE 433660 6260 6020321 2024-02-21 12:03:46.344 2024-02-21 12:03:46.344 1000 FEE 433664 19911 6020328 2024-02-21 12:04:43.707 2024-02-21 12:04:43.707 2100 FEE 433665 9167 6020329 2024-02-21 12:04:43.707 2024-02-21 12:04:43.707 18900 TIP 433665 21563 6020334 2024-02-21 12:05:37.583 2024-02-21 12:05:37.583 700 FEE 433645 17523 6020335 2024-02-21 12:05:37.583 2024-02-21 12:05:37.583 6300 TIP 433645 11609 6020341 2024-02-21 12:07:24.226 2024-02-21 12:07:24.226 1100 FEE 433668 650 6020342 2024-02-21 12:07:24.226 2024-02-21 12:07:24.226 9900 TIP 433668 21379 6020348 2024-02-21 12:08:50.225 2024-02-21 12:08:50.225 1000 FEE 433674 1120 6020379 2024-02-21 12:18:15.523 2024-02-21 12:18:15.523 2100 FEE 433676 657 6020380 2024-02-21 12:18:15.523 2024-02-21 12:18:15.523 18900 TIP 433676 11678 6020390 2024-02-21 12:20:24.736 2024-02-21 12:20:24.736 1000 FEE 433683 19815 6020404 2024-02-21 12:22:39.316 2024-02-21 12:22:39.316 1100 FEE 433683 18828 6020405 2024-02-21 12:22:39.316 2024-02-21 12:22:39.316 9900 TIP 433683 1261 6020410 2024-02-21 12:23:04.931 2024-02-21 12:23:04.931 1000 FEE 433344 5527 6020411 2024-02-21 12:23:04.931 2024-02-21 12:23:04.931 9000 TIP 433344 10490 6020424 2024-02-21 12:24:17.799 2024-02-21 12:24:17.799 1000 FEE 432920 12272 6020425 2024-02-21 12:24:17.799 2024-02-21 12:24:17.799 9000 TIP 432920 698 6020434 2024-02-21 12:25:19.036 2024-02-21 12:25:19.036 1100 FEE 433648 7986 6020435 2024-02-21 12:25:19.036 2024-02-21 12:25:19.036 9900 TIP 433648 7989 6020445 2024-02-21 12:26:07.229 2024-02-21 12:26:07.229 7000 FEE 433691 21166 6020452 2024-02-21 12:27:31.987 2024-02-21 12:27:31.987 100000 FEE 433694 21044 6020476 2024-02-21 12:34:18.165 2024-02-21 12:34:18.165 0 FEE 433698 12220 6020492 2024-02-21 12:37:05.62 2024-02-21 12:37:05.62 1100 FEE 433679 5069 6020493 2024-02-21 12:37:05.62 2024-02-21 12:37:05.62 9900 TIP 433679 9985 6020495 2024-02-21 12:37:39.412 2024-02-21 12:37:39.412 1100 FEE 433692 21338 6020496 2024-02-21 12:37:39.412 2024-02-21 12:37:39.412 9900 TIP 433692 9331 6020508 2024-02-21 12:38:05.142 2024-02-21 12:38:05.142 1100 FEE 433391 16717 6020509 2024-02-21 12:38:05.142 2024-02-21 12:38:05.142 9900 TIP 433391 10484 6020512 2024-02-21 12:38:10.078 2024-02-21 12:38:10.078 3300 FEE 433114 8870 6020513 2024-02-21 12:38:10.078 2024-02-21 12:38:10.078 29700 TIP 433114 848 6020532 2024-02-21 12:41:30.457 2024-02-21 12:41:30.457 900 FEE 433457 4819 6020533 2024-02-21 12:41:30.457 2024-02-21 12:41:30.457 8100 TIP 433457 10060 6020534 2024-02-21 12:41:31.231 2024-02-21 12:41:31.231 9000 FEE 433457 19843 6020535 2024-02-21 12:41:31.231 2024-02-21 12:41:31.231 81000 TIP 433457 15147 6020551 2024-02-21 12:42:46.052 2024-02-21 12:42:46.052 90000 FEE 433648 21116 6020552 2024-02-21 12:42:46.052 2024-02-21 12:42:46.052 810000 TIP 433648 6202 6020557 2024-02-21 12:44:38.747 2024-02-21 12:44:38.747 900 FEE 433391 13133 6020558 2024-02-21 12:44:38.747 2024-02-21 12:44:38.747 8100 TIP 433391 21605 6020597 2024-02-21 12:47:01.799 2024-02-21 12:47:01.799 9000 FEE 433455 19043 6020598 2024-02-21 12:47:01.799 2024-02-21 12:47:01.799 81000 TIP 433455 8448 6020602 2024-02-21 12:47:12.971 2024-02-21 12:47:12.971 900 FEE 433460 976 6020603 2024-02-21 12:47:12.971 2024-02-21 12:47:12.971 8100 TIP 433460 16356 6020635 2024-02-21 12:49:20.243 2024-02-21 12:49:20.243 9000 FEE 433491 1718 6020636 2024-02-21 12:49:20.243 2024-02-21 12:49:20.243 81000 TIP 433491 21070 6020643 2024-02-21 12:49:49.057 2024-02-21 12:49:49.057 300 FEE 433701 17091 6020644 2024-02-21 12:49:49.057 2024-02-21 12:49:49.057 2700 TIP 433701 19569 6020648 2024-02-21 12:50:08.12 2024-02-21 12:50:08.12 8300 FEE 433382 2039 6020649 2024-02-21 12:50:08.12 2024-02-21 12:50:08.12 74700 TIP 433382 7558 6020684 2024-02-21 12:51:59.593 2024-02-21 12:51:59.593 100 FEE 433554 10096 6020685 2024-02-21 12:51:59.593 2024-02-21 12:51:59.593 900 TIP 433554 6578 6020693 2024-02-21 12:52:30.905 2024-02-21 12:52:30.905 100 FEE 433555 15336 6020694 2024-02-21 12:52:30.905 2024-02-21 12:52:30.905 900 TIP 433555 21387 6020695 2024-02-21 12:52:32.089 2024-02-21 12:52:32.089 900 FEE 433555 14195 6019865 2024-02-21 11:04:58.241 2024-02-21 11:04:58.241 0 FEE 433593 16717 6019882 2024-02-21 11:08:05.993 2024-02-21 11:08:05.993 100 FEE 433597 20563 6019883 2024-02-21 11:08:05.993 2024-02-21 11:08:05.993 900 TIP 433597 9330 6019936 2024-02-21 11:16:56.863 2024-02-21 11:16:56.863 1000 FEE 433611 3461 6019945 2024-02-21 11:17:33.58 2024-02-21 11:17:33.58 2100 FEE 433555 21401 6019946 2024-02-21 11:17:33.58 2024-02-21 11:17:33.58 18900 TIP 433555 20276 6019959 2024-02-21 11:18:04.405 2024-02-21 11:18:04.405 4000 FEE 433066 19531 6019960 2024-02-21 11:18:04.405 2024-02-21 11:18:04.405 36000 TIP 433066 18897 6019966 2024-02-21 11:18:11.544 2024-02-21 11:18:11.544 4000 FEE 433056 18511 6019967 2024-02-21 11:18:11.544 2024-02-21 11:18:11.544 36000 TIP 433056 15843 6019996 2024-02-21 11:22:40.289 2024-02-21 11:22:40.289 2100 FEE 433617 3544 6019997 2024-02-21 11:22:40.289 2024-02-21 11:22:40.289 18900 TIP 433617 638 6019998 2024-02-21 11:22:58.712 2024-02-21 11:22:58.712 100000 FEE 433618 17392 6020015 2024-02-21 11:26:00.395 2024-02-21 11:26:00.395 1000 FEE 433622 633 6020027 2024-02-21 11:27:52.269 2024-02-21 11:27:52.269 12800 FEE 433620 21148 6020028 2024-02-21 11:27:52.269 2024-02-21 11:27:52.269 115200 TIP 433620 20163 6020053 2024-02-21 11:30:59.477 2024-02-21 11:30:59.477 2100 FEE 433411 19777 6020054 2024-02-21 11:30:59.477 2024-02-21 11:30:59.477 18900 TIP 433411 19601 6020058 2024-02-21 11:31:52.009 2024-02-21 11:31:52.009 12800 FEE 433267 21527 6020059 2024-02-21 11:31:52.009 2024-02-21 11:31:52.009 115200 TIP 433267 6700 6020087 2024-02-21 11:34:42.972 2024-02-21 11:34:42.972 1000 FEE 433633 2056 6020088 2024-02-21 11:34:51.044 2024-02-21 11:34:51.044 300 FEE 433592 20573 6020089 2024-02-21 11:34:51.044 2024-02-21 11:34:51.044 2700 TIP 433592 6149 6020099 2024-02-21 11:35:18.254 2024-02-21 11:35:18.254 12800 FEE 433632 775 6020100 2024-02-21 11:35:18.254 2024-02-21 11:35:18.254 115200 TIP 433632 4027 6020103 2024-02-21 11:35:20.313 2024-02-21 11:35:20.313 2100 FEE 433108 19809 6020104 2024-02-21 11:35:20.313 2024-02-21 11:35:20.313 18900 TIP 433108 20588 6020105 2024-02-21 11:35:23.815 2024-02-21 11:35:23.815 2100 FEE 433631 18124 6020106 2024-02-21 11:35:23.815 2024-02-21 11:35:23.815 18900 TIP 433631 20841 6020120 2024-02-21 11:35:38.416 2024-02-21 11:35:38.416 2100 FEE 433598 9843 6020121 2024-02-21 11:35:38.416 2024-02-21 11:35:38.416 18900 TIP 433598 14857 6020128 2024-02-21 11:35:53.928 2024-02-21 11:35:53.928 1000 FEE 433635 713 6020190 2024-02-21 11:39:27.567 2024-02-21 11:39:27.567 1000 FEE 433641 836 6020195 2024-02-21 11:39:47.767 2024-02-21 11:39:47.767 800 FEE 433331 8926 6020196 2024-02-21 11:39:47.767 2024-02-21 11:39:47.767 7200 TIP 433331 17316 6020200 2024-02-21 11:40:16.376 2024-02-21 11:40:16.376 2100 FEE 433578 11862 6020201 2024-02-21 11:40:16.376 2024-02-21 11:40:16.376 18900 TIP 433578 7659 6020204 2024-02-21 11:40:31.793 2024-02-21 11:40:31.793 1000 FEE 433643 2711 6020214 2024-02-21 11:41:59.926 2024-02-21 11:41:59.926 1000 FEE 433644 17514 6020227 2024-02-21 11:44:50.068 2024-02-21 11:44:50.068 300 FEE 433573 21343 6020228 2024-02-21 11:44:50.068 2024-02-21 11:44:50.068 2700 TIP 433573 20208 6020240 2024-02-21 11:49:41.251 2024-02-21 11:49:41.251 1000 FEE 433649 19967 6020245 2024-02-21 11:50:42.94 2024-02-21 11:50:42.94 0 FEE 433650 6578 6020246 2024-02-21 11:50:46.185 2024-02-21 11:50:46.185 0 FEE 433647 14385 6020263 2024-02-21 11:53:27.904 2024-02-21 11:53:27.904 300 FEE 433029 9758 6020264 2024-02-21 11:53:27.904 2024-02-21 11:53:27.904 2700 TIP 433029 2639 6020286 2024-02-21 11:54:23.813 2024-02-21 11:54:23.813 1000 FEE 433658 20218 6020287 2024-02-21 11:54:32.517 2024-02-21 11:54:32.517 4000 FEE 433586 7989 6020288 2024-02-21 11:54:32.517 2024-02-21 11:54:32.517 36000 TIP 433586 9354 6020302 2024-02-21 11:59:22.075 2024-02-21 11:59:22.075 1000 FEE 433554 10060 6020303 2024-02-21 11:59:22.075 2024-02-21 11:59:22.075 9000 TIP 433554 8535 6020331 2024-02-21 12:05:17.988 2024-02-21 12:05:17.988 11000 FEE 433668 1291 6020370 2024-02-21 12:17:06.335 2024-02-21 12:17:06.335 2100 FEE 433608 1647 6020371 2024-02-21 12:17:06.335 2024-02-21 12:17:06.335 18900 TIP 433608 21088 6020399 2024-02-21 12:21:43.956 2024-02-21 12:21:43.956 100000 FEE 433686 21026 6020406 2024-02-21 12:22:40.119 2024-02-21 12:22:40.119 210000 FEE 433688 14255 6020436 2024-02-21 12:25:19.849 2024-02-21 12:25:19.849 100 FEE 433678 19463 6020437 2024-02-21 12:25:19.849 2024-02-21 12:25:19.849 900 TIP 433678 2543 6020446 2024-02-21 12:26:12.762 2024-02-21 12:26:12.762 0 FEE 433686 20514 6020455 2024-02-21 12:29:30.129 2024-02-21 12:29:30.129 1000 FEE 433695 3717 6020457 2024-02-21 12:30:09.364 2024-02-21 12:30:09.364 5000 FEE 433555 14271 6020458 2024-02-21 12:30:09.364 2024-02-21 12:30:09.364 45000 TIP 433555 13763 6020459 2024-02-21 12:30:36.956 2024-02-21 12:30:36.956 1000 FEE 433696 20156 6020474 2024-02-21 12:34:14.029 2024-02-21 12:34:14.029 2100 FEE 433591 9496 6020475 2024-02-21 12:34:14.029 2024-02-21 12:34:14.029 18900 TIP 433591 21498 6020486 2024-02-21 12:36:36.024 2024-02-21 12:36:36.024 10000 FEE 433702 928 6020490 2024-02-21 12:37:01.349 2024-02-21 12:37:01.349 2000 FEE 433704 685 6020497 2024-02-21 12:37:59.985 2024-02-21 12:37:59.985 10000 FEE 433574 9421 6020498 2024-02-21 12:37:59.985 2024-02-21 12:37:59.985 90000 TIP 433574 19524 6020504 2024-02-21 12:38:04.168 2024-02-21 12:38:04.168 1100 FEE 433555 19930 6020505 2024-02-21 12:38:04.168 2024-02-21 12:38:04.168 9900 TIP 433555 18745 6020543 2024-02-21 12:42:14.783 2024-02-21 12:42:14.783 11700 FEE 433631 19852 6020544 2024-02-21 12:42:14.783 2024-02-21 12:42:14.783 105300 TIP 433631 2514 6020547 2024-02-21 12:42:43.865 2024-02-21 12:42:43.865 900 FEE 433648 17171 6020548 2024-02-21 12:42:43.865 2024-02-21 12:42:43.865 8100 TIP 433648 1534 6020572 2024-02-21 12:45:10.778 2024-02-21 12:45:10.778 1000 FEE 433669 7869 6020573 2024-02-21 12:45:10.778 2024-02-21 12:45:10.778 9000 TIP 433669 18626 6020593 2024-02-21 12:46:59.186 2024-02-21 12:46:59.186 100 FEE 433455 2264 6020594 2024-02-21 12:46:59.186 2024-02-21 12:46:59.186 900 TIP 433455 761 6020600 2024-02-21 12:47:12.674 2024-02-21 12:47:12.674 100 FEE 433460 16950 6020601 2024-02-21 12:47:12.674 2024-02-21 12:47:12.674 900 TIP 433460 19189 6020611 2024-02-21 12:47:42.609 2024-02-21 12:47:42.609 2500 FEE 433679 15386 6020612 2024-02-21 12:47:42.609 2024-02-21 12:47:42.609 22500 TIP 433679 797 6020621 2024-02-21 12:48:34.926 2024-02-21 12:48:34.926 300 FEE 433703 7674 6020622 2024-02-21 12:48:34.926 2024-02-21 12:48:34.926 2700 TIP 433703 770 6020625 2024-02-21 12:48:55.963 2024-02-21 12:48:55.963 100 FEE 433485 4415 6020626 2024-02-21 12:48:55.963 2024-02-21 12:48:55.963 900 TIP 433485 20326 6020641 2024-02-21 12:49:48.979 2024-02-21 12:49:48.979 9000 FEE 433502 16879 6020642 2024-02-21 12:49:48.979 2024-02-21 12:49:48.979 81000 TIP 433502 20412 6020654 2024-02-21 12:50:36.665 2024-02-21 12:50:36.665 500 FEE 433179 3360 6020655 2024-02-21 12:50:36.665 2024-02-21 12:50:36.665 4500 TIP 433179 618 6020709 2024-02-21 12:54:56.159 2024-02-21 12:54:56.159 10000 FEE 433721 20969 6020720 2024-02-21 12:55:29.543 2024-02-21 12:55:29.543 100 FEE 433649 5557 6020721 2024-02-21 12:55:29.543 2024-02-21 12:55:29.543 900 TIP 433649 16212 6020726 2024-02-21 12:55:45.911 2024-02-21 12:55:45.911 900 FEE 433668 8287 6020727 2024-02-21 12:55:45.911 2024-02-21 12:55:45.911 8100 TIP 433668 18051 6020737 2024-02-21 12:56:52.543 2024-02-21 12:56:52.543 900 FEE 433677 18008 6020738 2024-02-21 12:56:52.543 2024-02-21 12:56:52.543 8100 TIP 433677 13100 6020761 2024-02-21 13:02:22.043 2024-02-21 13:02:22.043 1700 FEE 433723 9906 6020762 2024-02-21 13:02:22.043 2024-02-21 13:02:22.043 15300 TIP 433723 19770 6020772 2024-02-21 13:03:54.407 2024-02-21 13:03:54.407 100000 FEE 433729 661 6020781 2024-02-21 13:05:06.001 2024-02-21 13:05:06.001 500 FEE 433591 5057 6020782 2024-02-21 13:05:06.001 2024-02-21 13:05:06.001 4500 TIP 433591 2577 6020808 2024-02-21 13:05:56.458 2024-02-21 13:05:56.458 8300 FEE 433555 4624 6020809 2024-02-21 13:05:56.458 2024-02-21 13:05:56.458 74700 TIP 433555 11038 6020829 2024-02-21 13:06:41.389 2024-02-21 13:06:41.389 100 FEE 433594 685 6020830 2024-02-21 13:06:41.389 2024-02-21 13:06:41.389 900 TIP 433594 21083 6019866 2024-02-21 11:05:05.165 2024-02-21 11:05:05.165 1000 STREAM 141924 704 6019873 2024-02-21 11:06:05.153 2024-02-21 11:06:05.153 1000 STREAM 141924 18199 6019904 2024-02-21 11:09:05.177 2024-02-21 11:09:05.177 1000 STREAM 141924 4173 6019918 2024-02-21 11:11:05.187 2024-02-21 11:11:05.187 1000 STREAM 141924 1141 6019926 2024-02-21 11:13:05.18 2024-02-21 11:13:05.18 1000 STREAM 141924 2402 6019928 2024-02-21 11:14:05.565 2024-02-21 11:14:05.565 1000 STREAM 141924 4798 6019932 2024-02-21 11:15:05.622 2024-02-21 11:15:05.622 1000 STREAM 141924 21422 6019935 2024-02-21 11:16:05.634 2024-02-21 11:16:05.634 1000 STREAM 141924 16193 6019939 2024-02-21 11:17:05.609 2024-02-21 11:17:05.609 1000 STREAM 141924 9833 6019961 2024-02-21 11:18:05.634 2024-02-21 11:18:05.634 1000 STREAM 141924 21405 6019982 2024-02-21 11:20:05.638 2024-02-21 11:20:05.638 1000 STREAM 141924 4798 6019990 2024-02-21 11:21:05.637 2024-02-21 11:21:05.637 1000 STREAM 141924 19502 6020007 2024-02-21 11:24:05.652 2024-02-21 11:24:05.652 1000 STREAM 141924 20180 6020010 2024-02-21 11:25:05.68 2024-02-21 11:25:05.68 1000 STREAM 141924 20133 6020017 2024-02-21 11:26:05.666 2024-02-21 11:26:05.666 1000 STREAM 141924 20817 6020024 2024-02-21 11:27:05.725 2024-02-21 11:27:05.725 1000 STREAM 141924 722 6020085 2024-02-21 11:34:05.741 2024-02-21 11:34:05.741 1000 STREAM 141924 15728 6020129 2024-02-21 11:36:05.728 2024-02-21 11:36:05.728 1000 STREAM 141924 899 6020139 2024-02-21 11:37:05.737 2024-02-21 11:37:05.737 1000 STREAM 141924 17331 6020209 2024-02-21 11:41:05.756 2024-02-21 11:41:05.756 1000 STREAM 141924 20327 6020215 2024-02-21 11:42:01.774 2024-02-21 11:42:01.774 1000 STREAM 141924 2576 6020231 2024-02-21 11:46:05.771 2024-02-21 11:46:05.771 1000 STREAM 141924 2640 6020233 2024-02-21 11:47:05.779 2024-02-21 11:47:05.779 1000 STREAM 141924 20581 6020234 2024-02-21 11:48:05.783 2024-02-21 11:48:05.783 1000 STREAM 141924 1438 6020236 2024-02-21 11:49:05.788 2024-02-21 11:49:05.788 1000 STREAM 141924 3478 6020242 2024-02-21 11:50:01.797 2024-02-21 11:50:01.797 1000 STREAM 141924 5171 6020257 2024-02-21 11:53:02.041 2024-02-21 11:53:02.041 1000 STREAM 141924 12218 6020293 2024-02-21 11:56:02.057 2024-02-21 11:56:02.057 1000 STREAM 141924 16571 6020312 2024-02-21 12:02:06.066 2024-02-21 12:02:06.066 1000 STREAM 141924 8385 6020349 2024-02-21 12:09:02.065 2024-02-21 12:09:02.065 1000 STREAM 141924 15806 6020354 2024-02-21 12:11:06.075 2024-02-21 12:11:06.075 1000 STREAM 141924 9332 6020355 2024-02-21 12:12:02.079 2024-02-21 12:12:02.079 1000 STREAM 141924 16830 6020364 2024-02-21 12:15:02.095 2024-02-21 12:15:02.095 1000 STREAM 141924 12160 6020369 2024-02-21 12:17:02.129 2024-02-21 12:17:02.129 1000 STREAM 141924 1825 6020409 2024-02-21 12:23:02.163 2024-02-21 12:23:02.163 1000 STREAM 141924 21292 6020417 2024-02-21 12:24:02.255 2024-02-21 12:24:02.255 1000 STREAM 141924 2176 6020451 2024-02-21 12:27:02.278 2024-02-21 12:27:02.278 1000 STREAM 141924 11776 6020453 2024-02-21 12:28:02.259 2024-02-21 12:28:02.259 1000 STREAM 141924 2528 6020462 2024-02-21 12:31:02.287 2024-02-21 12:31:02.287 1000 STREAM 141924 19121 6020465 2024-02-21 12:32:02.28 2024-02-21 12:32:02.28 1000 STREAM 141924 9109 6020470 2024-02-21 12:33:02.279 2024-02-21 12:33:02.279 1000 STREAM 141924 18945 6020473 2024-02-21 12:34:02.279 2024-02-21 12:34:02.279 1000 STREAM 141924 17682 6020485 2024-02-21 12:36:02.311 2024-02-21 12:36:02.311 1000 STREAM 141924 10554 6020515 2024-02-21 12:39:02.294 2024-02-21 12:39:02.294 1000 STREAM 141924 19398 6020516 2024-02-21 12:40:02.456 2024-02-21 12:40:02.456 1000 STREAM 141924 798 6019879 2024-02-21 11:07:05.178 2024-02-21 11:07:05.178 1000 STREAM 141924 17316 6019881 2024-02-21 11:08:05.179 2024-02-21 11:08:05.179 1000 STREAM 141924 2681 6019910 2024-02-21 11:10:05.165 2024-02-21 11:10:05.165 1000 STREAM 141924 2162 6019924 2024-02-21 11:12:05.203 2024-02-21 11:12:05.203 1000 STREAM 141924 19381 6019978 2024-02-21 11:19:05.622 2024-02-21 11:19:05.622 1000 STREAM 141924 11314 6019995 2024-02-21 11:22:05.661 2024-02-21 11:22:05.661 1000 STREAM 141924 8400 6019999 2024-02-21 11:23:05.65 2024-02-21 11:23:05.65 1000 STREAM 141924 7654 6020031 2024-02-21 11:28:05.73 2024-02-21 11:28:05.73 1000 STREAM 141924 19375 6020038 2024-02-21 11:29:05.725 2024-02-21 11:29:05.725 1000 STREAM 141924 20525 6020042 2024-02-21 11:30:05.747 2024-02-21 11:30:05.747 1000 STREAM 141924 20099 6020055 2024-02-21 11:31:05.76 2024-02-21 11:31:05.76 1000 STREAM 141924 17095 6020062 2024-02-21 11:32:05.747 2024-02-21 11:32:05.747 1000 STREAM 141924 21242 6020077 2024-02-21 11:33:05.876 2024-02-21 11:33:05.876 1000 STREAM 141924 21480 6020094 2024-02-21 11:35:05.729 2024-02-21 11:35:05.729 1000 STREAM 141924 20802 6020174 2024-02-21 11:38:05.749 2024-02-21 11:38:05.749 1000 STREAM 141924 628 6020188 2024-02-21 11:39:05.737 2024-02-21 11:39:05.737 1000 STREAM 141924 12507 6020197 2024-02-21 11:40:05.74 2024-02-21 11:40:05.74 1000 STREAM 141924 16867 6020222 2024-02-21 11:44:05.766 2024-02-21 11:44:05.766 1000 STREAM 141924 21532 6020230 2024-02-21 11:45:05.776 2024-02-21 11:45:05.776 1000 STREAM 141924 3411 6020253 2024-02-21 11:52:02.042 2024-02-21 11:52:02.042 1000 STREAM 141924 17817 6020285 2024-02-21 11:54:06.042 2024-02-21 11:54:06.042 1000 STREAM 141924 16571 6020290 2024-02-21 11:55:02.046 2024-02-21 11:55:02.046 1000 STREAM 141924 5829 6020296 2024-02-21 11:57:06.049 2024-02-21 11:57:06.049 1000 STREAM 141924 997 6020299 2024-02-21 11:59:06.051 2024-02-21 11:59:06.051 1000 STREAM 141924 4173 6020308 2024-02-21 12:00:02.093 2024-02-21 12:00:02.093 1000 STREAM 141924 14015 6020318 2024-02-21 12:03:02.066 2024-02-21 12:03:02.066 1000 STREAM 141924 18873 6020330 2024-02-21 12:05:06.069 2024-02-21 12:05:06.069 1000 STREAM 141924 6419 6020336 2024-02-21 12:06:02.084 2024-02-21 12:06:02.084 1000 STREAM 141924 15367 6020343 2024-02-21 12:08:06.074 2024-02-21 12:08:06.074 1000 STREAM 141924 11458 6020357 2024-02-21 12:14:06.093 2024-02-21 12:14:06.093 1000 STREAM 141924 2402 6020376 2024-02-21 12:18:02.134 2024-02-21 12:18:02.134 1000 STREAM 141924 15732 6020386 2024-02-21 12:19:02.157 2024-02-21 12:19:02.157 1000 STREAM 141924 17212 6020389 2024-02-21 12:20:02.16 2024-02-21 12:20:02.16 1000 STREAM 141924 686 6020396 2024-02-21 12:21:02.153 2024-02-21 12:21:02.153 1000 STREAM 141924 18629 6020400 2024-02-21 12:22:02.162 2024-02-21 12:22:02.162 1000 STREAM 141924 4177 6020433 2024-02-21 12:25:02.257 2024-02-21 12:25:02.257 1000 STREAM 141924 9084 6020444 2024-02-21 12:26:06.263 2024-02-21 12:26:06.263 1000 STREAM 141924 18784 6020454 2024-02-21 12:29:02.264 2024-02-21 12:29:02.264 1000 STREAM 141924 20990 6020456 2024-02-21 12:30:02.275 2024-02-21 12:30:02.275 1000 STREAM 141924 18511 6020479 2024-02-21 12:35:02.312 2024-02-21 12:35:02.312 1000 STREAM 141924 16679 6020491 2024-02-21 12:37:02.292 2024-02-21 12:37:02.292 1000 STREAM 141924 17001 6020499 2024-02-21 12:38:02.289 2024-02-21 12:38:02.289 1000 STREAM 141924 19930 6019892 2024-02-21 11:08:23.878 2024-02-21 11:08:23.878 100 FEE 433597 6383 6019893 2024-02-21 11:08:23.878 2024-02-21 11:08:23.878 900 TIP 433597 20602 6020011 2024-02-21 11:25:06.507 2024-02-21 11:25:06.507 1000 FEE 433613 17708 6020012 2024-02-21 11:25:06.507 2024-02-21 11:25:06.507 9000 TIP 433613 13399 6020025 2024-02-21 11:27:09.064 2024-02-21 11:27:09.064 2100 FEE 433619 703 6020026 2024-02-21 11:27:09.064 2024-02-21 11:27:09.064 18900 TIP 433619 12334 6020030 2024-02-21 11:27:58.448 2024-02-21 11:27:58.448 1000 FEE 433625 9 6020047 2024-02-21 11:30:38.268 2024-02-21 11:30:38.268 800 FEE 433599 2640 6020048 2024-02-21 11:30:38.268 2024-02-21 11:30:38.268 7200 TIP 433599 15488 6020073 2024-02-21 11:32:46.592 2024-02-21 11:32:46.592 2100 FEE 433614 21079 6020074 2024-02-21 11:32:46.592 2024-02-21 11:32:46.592 18900 TIP 433614 5978 6020092 2024-02-21 11:35:04.591 2024-02-21 11:35:04.591 1000 FEE 433627 12289 6020093 2024-02-21 11:35:04.591 2024-02-21 11:35:04.591 9000 TIP 433627 19103 6020109 2024-02-21 11:35:31.296 2024-02-21 11:35:31.296 2100 FEE 433610 9843 6020110 2024-02-21 11:35:31.296 2024-02-21 11:35:31.296 18900 TIP 433610 19531 6020118 2024-02-21 11:35:36.419 2024-02-21 11:35:36.419 2100 FEE 433621 11153 6020119 2024-02-21 11:35:36.419 2024-02-21 11:35:36.419 18900 TIP 433621 19826 6020133 2024-02-21 11:36:41.314 2024-02-21 11:36:41.314 1000 FEE 433637 19458 6020140 2024-02-21 11:37:29.932 2024-02-21 11:37:29.932 2100 FEE 433344 11192 6020141 2024-02-21 11:37:29.932 2024-02-21 11:37:29.932 18900 TIP 433344 21451 6020156 2024-02-21 11:37:55.669 2024-02-21 11:37:55.669 2100 FEE 432736 20066 6020157 2024-02-21 11:37:55.669 2024-02-21 11:37:55.669 18900 TIP 432736 18270 6020158 2024-02-21 11:37:56.519 2024-02-21 11:37:56.519 100 FEE 432114 20817 6020159 2024-02-21 11:37:56.519 2024-02-21 11:37:56.519 900 TIP 432114 21547 6020168 2024-02-21 11:37:59.027 2024-02-21 11:37:59.027 100 FEE 433079 6003 6020169 2024-02-21 11:37:59.027 2024-02-21 11:37:59.027 900 TIP 433079 711 6020175 2024-02-21 11:38:10.631 2024-02-21 11:38:10.631 2100 FEE 432674 5499 6020176 2024-02-21 11:38:10.631 2024-02-21 11:38:10.631 18900 TIP 432674 2013 6020177 2024-02-21 11:38:13.858 2024-02-21 11:38:13.858 2100 FEE 432517 15386 6020178 2024-02-21 11:38:13.858 2024-02-21 11:38:13.858 18900 TIP 432517 16562 6020189 2024-02-21 11:39:22.647 2024-02-21 11:39:22.647 1000 FEE 433640 4570 6020202 2024-02-21 11:40:20.297 2024-02-21 11:40:20.297 2100 FEE 433571 11498 6020203 2024-02-21 11:40:20.297 2024-02-21 11:40:20.297 18900 TIP 433571 10862 6020212 2024-02-21 11:41:52.041 2024-02-21 11:41:52.041 2100 FEE 433602 18169 6020213 2024-02-21 11:41:52.041 2024-02-21 11:41:52.041 18900 TIP 433602 20963 6020229 2024-02-21 11:44:52.457 2024-02-21 11:44:52.457 1000 FEE 433645 18923 6020235 2024-02-21 11:48:27.303 2024-02-21 11:48:27.303 1000 FEE 433647 641 6020261 2024-02-21 11:53:27.519 2024-02-21 11:53:27.519 300 FEE 433029 1596 6020262 2024-02-21 11:53:27.519 2024-02-21 11:53:27.519 2700 TIP 433029 9246 6020271 2024-02-21 11:53:28.752 2024-02-21 11:53:28.752 300 FEE 433029 622 6020272 2024-02-21 11:53:28.752 2024-02-21 11:53:28.752 2700 TIP 433029 6300 6020284 2024-02-21 11:53:53.473 2024-02-21 11:53:53.473 1000 FEE 433657 5758 6020297 2024-02-21 11:57:08.857 2024-02-21 11:57:08.857 0 FEE 433659 20782 6020304 2024-02-21 11:59:24.168 2024-02-21 11:59:24.168 1000 FEE 433544 5538 6020305 2024-02-21 11:59:24.168 2024-02-21 11:59:24.168 9000 TIP 433544 11144 6020309 2024-02-21 12:00:04.409 2024-02-21 12:00:04.409 100000 FEE 433661 19907 6020346 2024-02-21 12:08:15.517 2024-02-21 12:08:15.517 300 FEE 433673 3409 6020347 2024-02-21 12:08:15.517 2024-02-21 12:08:15.517 2700 TIP 433673 19458 6020365 2024-02-21 12:15:02.88 2024-02-21 12:15:02.88 4000 FEE 433677 1425 6020366 2024-02-21 12:15:02.88 2024-02-21 12:15:02.88 36000 TIP 433677 15978 6020373 2024-02-21 12:17:39.633 2024-02-21 12:17:39.633 2100 FEE 433470 8133 6020374 2024-02-21 12:17:39.633 2024-02-21 12:17:39.633 18900 TIP 433470 16059 6020439 2024-02-21 12:25:26.043 2024-02-21 12:25:26.043 1100 FEE 433574 21387 6020440 2024-02-21 12:25:26.043 2024-02-21 12:25:26.043 9900 TIP 433574 21296 6020443 2024-02-21 12:25:39.682 2024-02-21 12:25:39.682 1000 FEE 433690 980 6020449 2024-02-21 12:26:44.108 2024-02-21 12:26:44.108 1000 FEE 433692 20782 6020483 2024-02-21 12:35:56.765 2024-02-21 12:35:56.765 1000 FEE 433700 21417 6020541 2024-02-21 12:42:09.958 2024-02-21 12:42:09.958 2100 FEE 433687 18945 6020542 2024-02-21 12:42:09.958 2024-02-21 12:42:09.958 18900 TIP 433687 19773 6020549 2024-02-21 12:42:44.773 2024-02-21 12:42:44.773 9000 FEE 433648 1060 6020550 2024-02-21 12:42:44.773 2024-02-21 12:42:44.773 81000 TIP 433648 18524 6020555 2024-02-21 12:44:38.162 2024-02-21 12:44:38.162 100 FEE 433391 7847 6020556 2024-02-21 12:44:38.162 2024-02-21 12:44:38.162 900 TIP 433391 19689 6020576 2024-02-21 12:45:24.454 2024-02-21 12:45:24.454 1000 FEE 433698 20554 6020577 2024-02-21 12:45:24.454 2024-02-21 12:45:24.454 9000 TIP 433698 13878 6020588 2024-02-21 12:46:03.167 2024-02-21 12:46:03.167 1100 FEE 433677 18372 6020589 2024-02-21 12:46:03.167 2024-02-21 12:46:03.167 9900 TIP 433677 19633 6020592 2024-02-21 12:46:57.694 2024-02-21 12:46:57.694 11000 FEE 433710 15075 6020627 2024-02-21 12:48:56.127 2024-02-21 12:48:56.127 900 FEE 433485 650 6020628 2024-02-21 12:48:56.127 2024-02-21 12:48:56.127 8100 TIP 433485 17106 6020631 2024-02-21 12:49:08.733 2024-02-21 12:49:08.733 100 FEE 433491 768 6020632 2024-02-21 12:49:08.733 2024-02-21 12:49:08.733 900 TIP 433491 2347 6020637 2024-02-21 12:49:43.253 2024-02-21 12:49:43.253 100 FEE 433502 5017 6020638 2024-02-21 12:49:43.253 2024-02-21 12:49:43.253 900 TIP 433502 19138 6020668 2024-02-21 12:51:08.311 2024-02-21 12:51:08.311 900 FEE 433504 14278 6020669 2024-02-21 12:51:08.311 2024-02-21 12:51:08.311 8100 TIP 433504 1480 6020689 2024-02-21 12:52:14.827 2024-02-21 12:52:14.827 100000 FEE 433718 13406 6020692 2024-02-21 12:52:25.139 2024-02-21 12:52:25.139 0 FEE 433713 13217 6020697 2024-02-21 12:52:32.853 2024-02-21 12:52:32.853 9000 FEE 433555 681 6020698 2024-02-21 12:52:32.853 2024-02-21 12:52:32.853 81000 TIP 433555 6555 6020715 2024-02-21 12:55:14.098 2024-02-21 12:55:14.098 100 FEE 433626 9339 6020716 2024-02-21 12:55:14.098 2024-02-21 12:55:14.098 900 TIP 433626 20782 6020719 2024-02-21 12:55:22.409 2024-02-21 12:55:22.409 1000 FEE 433722 16950 6020779 2024-02-21 13:05:05.828 2024-02-21 13:05:05.828 500 FEE 433591 14260 6020780 2024-02-21 13:05:05.828 2024-02-21 13:05:05.828 4500 TIP 433591 21201 6020785 2024-02-21 13:05:08.108 2024-02-21 13:05:08.108 1000 FEE 433591 20588 6020786 2024-02-21 13:05:08.108 2024-02-21 13:05:08.108 9000 TIP 433591 5036 6020788 2024-02-21 13:05:48.403 2024-02-21 13:05:48.403 500 FEE 433594 11263 6020789 2024-02-21 13:05:48.403 2024-02-21 13:05:48.403 4500 TIP 433594 4391 6020792 2024-02-21 13:05:49.259 2024-02-21 13:05:49.259 500 FEE 433594 1505 6020793 2024-02-21 13:05:49.259 2024-02-21 13:05:49.259 4500 TIP 433594 19332 6020848 2024-02-21 13:07:45.964 2024-02-21 13:07:45.964 4200 FEE 433066 17827 6020849 2024-02-21 13:07:45.964 2024-02-21 13:07:45.964 37800 TIP 433066 16724 6020850 2024-02-21 13:07:50.491 2024-02-21 13:07:50.491 500 FEE 432736 6137 6020851 2024-02-21 13:07:50.491 2024-02-21 13:07:50.491 4500 TIP 432736 15833 6020852 2024-02-21 13:07:50.817 2024-02-21 13:07:50.817 500 FEE 433586 21019 6020853 2024-02-21 13:07:50.817 2024-02-21 13:07:50.817 4500 TIP 433586 16816 6020883 2024-02-21 13:11:21.173 2024-02-21 13:11:21.173 6300 FEE 433651 7760 6020884 2024-02-21 13:11:21.173 2024-02-21 13:11:21.173 56700 TIP 433651 8448 6020885 2024-02-21 13:11:21.703 2024-02-21 13:11:21.703 6300 FEE 433605 6430 6020886 2024-02-21 13:11:21.703 2024-02-21 13:11:21.703 56700 TIP 433605 1478 6020899 2024-02-21 13:12:26.003 2024-02-21 13:12:26.003 100 FEE 433457 2709 6020900 2024-02-21 13:12:26.003 2024-02-21 13:12:26.003 900 TIP 433457 629 6020926 2024-02-21 13:17:10.841 2024-02-21 13:17:10.841 2100 FEE 433740 844 6020927 2024-02-21 13:17:10.841 2024-02-21 13:17:10.841 18900 TIP 433740 2614 6020934 2024-02-21 13:19:15.4 2024-02-21 13:19:15.4 10000 FEE 216272 5306 6020935 2024-02-21 13:19:15.4 2024-02-21 13:19:15.4 90000 TIP 216272 20220 6020137 2024-02-21 11:36:44.31 2024-02-21 11:36:44.31 9000 TIP 433634 15491 6020146 2024-02-21 11:37:38.437 2024-02-21 11:37:38.437 2100 FEE 432563 616 6020147 2024-02-21 11:37:38.437 2024-02-21 11:37:38.437 18900 TIP 432563 1145 6020148 2024-02-21 11:37:38.468 2024-02-21 11:37:38.468 1600 FEE 433403 19263 6020149 2024-02-21 11:37:38.468 2024-02-21 11:37:38.468 14400 TIP 433403 5708 6020181 2024-02-21 11:38:26.716 2024-02-21 11:38:26.716 2100 FEE 432913 19570 6020182 2024-02-21 11:38:26.716 2024-02-21 11:38:26.716 18900 TIP 432913 17710 6020183 2024-02-21 11:38:27.994 2024-02-21 11:38:27.994 1000 FEE 433639 7659 6020184 2024-02-21 11:38:53.095 2024-02-21 11:38:53.095 2100 FEE 433248 621 6020185 2024-02-21 11:38:53.095 2024-02-21 11:38:53.095 18900 TIP 433248 16876 6020194 2024-02-21 11:39:42.93 2024-02-21 11:39:42.93 1000 FEE 433642 1772 6020210 2024-02-21 11:41:32.392 2024-02-21 11:41:32.392 2100 FEE 433641 9362 6020211 2024-02-21 11:41:32.392 2024-02-21 11:41:32.392 18900 TIP 433641 17693 6020237 2024-02-21 11:49:09.579 2024-02-21 11:49:09.579 100000 FEE 433648 20981 6020289 2024-02-21 11:54:53.917 2024-02-21 11:54:53.917 1000 FEE 433659 20585 6020291 2024-02-21 11:55:59.141 2024-02-21 11:55:59.141 0 FEE 433659 712 6020313 2024-02-21 12:02:06.088 2024-02-21 12:02:06.088 1000 FEE 433663 654 6020327 2024-02-21 12:04:20.472 2024-02-21 12:04:20.472 1000 FEE 433667 19907 6020332 2024-02-21 12:05:20.643 2024-02-21 12:05:20.643 1000 FEE 433669 20980 6020340 2024-02-21 12:07:18.855 2024-02-21 12:07:18.855 1000 FEE 433673 8796 6020377 2024-02-21 12:18:05.278 2024-02-21 12:18:05.278 2100 FEE 433679 5519 6020378 2024-02-21 12:18:05.278 2024-02-21 12:18:05.278 18900 TIP 433679 1465 6020393 2024-02-21 12:20:48.276 2024-02-21 12:20:48.276 1000 FEE 433669 836 6020394 2024-02-21 12:20:48.276 2024-02-21 12:20:48.276 9000 TIP 433669 9183 6020412 2024-02-21 12:23:20.047 2024-02-21 12:23:20.047 0 FEE 433684 18727 6020418 2024-02-21 12:24:10.34 2024-02-21 12:24:10.34 1000 FEE 433679 12160 6020419 2024-02-21 12:24:10.34 2024-02-21 12:24:10.34 9000 TIP 433679 20681 6020428 2024-02-21 12:24:27.925 2024-02-21 12:24:27.925 1000 FEE 433689 10849 6020441 2024-02-21 12:25:39.546 2024-02-21 12:25:39.546 1000 FEE 433591 18008 6020442 2024-02-21 12:25:39.546 2024-02-21 12:25:39.546 9000 TIP 433591 18828 6020460 2024-02-21 12:30:42 2024-02-21 12:30:42 200 FEE 433344 9346 6020461 2024-02-21 12:30:42 2024-02-21 12:30:42 1800 TIP 433344 640 6020480 2024-02-21 12:35:26.719 2024-02-21 12:35:26.719 1000 FEE 433699 13055 6020506 2024-02-21 12:38:05.012 2024-02-21 12:38:05.012 1100 FEE 433391 18470 6020507 2024-02-21 12:38:05.012 2024-02-21 12:38:05.012 9900 TIP 433391 16177 6020514 2024-02-21 12:38:50.642 2024-02-21 12:38:50.642 50000 FEE 433706 642 6020521 2024-02-21 12:40:10.407 2024-02-21 12:40:10.407 1100 FEE 433087 1740 6020522 2024-02-21 12:40:10.407 2024-02-21 12:40:10.407 9900 TIP 433087 17014 6020526 2024-02-21 12:40:52.52 2024-02-21 12:40:52.52 1100 FEE 431378 20094 6020527 2024-02-21 12:40:52.52 2024-02-21 12:40:52.52 9900 TIP 431378 2774 6020559 2024-02-21 12:44:40.055 2024-02-21 12:44:40.055 9000 FEE 433391 18828 6020560 2024-02-21 12:44:40.055 2024-02-21 12:44:40.055 81000 TIP 433391 981 6020565 2024-02-21 12:44:56.168 2024-02-21 12:44:56.168 900 FEE 433403 15617 6020566 2024-02-21 12:44:56.168 2024-02-21 12:44:56.168 8100 TIP 433403 2330 6020585 2024-02-21 12:45:58.73 2024-02-21 12:45:58.73 1000 FEE 433678 1195 6020586 2024-02-21 12:45:58.73 2024-02-21 12:45:58.73 9000 TIP 433678 15239 6020590 2024-02-21 12:46:26.79 2024-02-21 12:46:26.79 10000 FEE 433625 687 6020591 2024-02-21 12:46:26.79 2024-02-21 12:46:26.79 90000 TIP 433625 11938 6020609 2024-02-21 12:47:26.86 2024-02-21 12:47:26.86 900 FEE 433464 661 6020610 2024-02-21 12:47:26.86 2024-02-21 12:47:26.86 8100 TIP 433464 1394 6020616 2024-02-21 12:48:10.235 2024-02-21 12:48:10.235 1000 DONT_LIKE_THIS 433703 19886 6020619 2024-02-21 12:48:15.64 2024-02-21 12:48:15.64 2500 FEE 433578 8289 6020620 2024-02-21 12:48:15.64 2024-02-21 12:48:15.64 22500 TIP 433578 9365 6020701 2024-02-21 12:53:13.088 2024-02-21 12:53:13.088 0 FEE 433713 13553 6020713 2024-02-21 12:55:10.84 2024-02-21 12:55:10.84 900 FEE 433622 21064 6020714 2024-02-21 12:55:10.84 2024-02-21 12:55:10.84 8100 TIP 433622 13398 6020728 2024-02-21 12:55:51.545 2024-02-21 12:55:51.545 100 FEE 433661 19511 6020729 2024-02-21 12:55:51.545 2024-02-21 12:55:51.545 900 TIP 433661 13365 6020750 2024-02-21 12:58:40.873 2024-02-21 12:58:40.873 6400 FEE 433722 13553 6020751 2024-02-21 12:58:40.873 2024-02-21 12:58:40.873 57600 TIP 433722 18116 6020770 2024-02-21 13:03:39.853 2024-02-21 13:03:39.853 900 FEE 433591 15273 6020771 2024-02-21 13:03:39.853 2024-02-21 13:03:39.853 8100 TIP 433591 19735 6020814 2024-02-21 13:06:11.204 2024-02-21 13:06:11.204 100 FEE 433677 12291 6020815 2024-02-21 13:06:11.204 2024-02-21 13:06:11.204 900 TIP 433677 13399 6020818 2024-02-21 13:06:14 2024-02-21 13:06:14 100 FEE 433554 20817 6020819 2024-02-21 13:06:14 2024-02-21 13:06:14 900 TIP 433554 20602 6020842 2024-02-21 13:07:27.465 2024-02-21 13:07:27.465 10000 FEE 433555 1480 6020843 2024-02-21 13:07:27.465 2024-02-21 13:07:27.465 90000 TIP 433555 1741 6020857 2024-02-21 13:08:22.55 2024-02-21 13:08:22.55 8300 FEE 433614 640 6020858 2024-02-21 13:08:22.55 2024-02-21 13:08:22.55 74700 TIP 433614 7773 6020874 2024-02-21 13:10:39.676 2024-02-21 13:10:39.676 4000 FEE 433688 7809 6020875 2024-02-21 13:10:39.676 2024-02-21 13:10:39.676 36000 TIP 433688 15978 6020878 2024-02-21 13:10:46.847 2024-02-21 13:10:46.847 1000 FEE 433735 1737 6020945 2024-02-21 13:20:26.031 2024-02-21 13:20:26.031 2100 FEE 433713 16848 6020946 2024-02-21 13:20:26.031 2024-02-21 13:20:26.031 18900 TIP 433713 8284 6020952 2024-02-21 13:21:16.208 2024-02-21 13:21:16.208 2100 FEE 433720 3371 6020953 2024-02-21 13:21:16.208 2024-02-21 13:21:16.208 18900 TIP 433720 7659 6020988 2024-02-21 13:23:42.286 2024-02-21 13:23:42.286 2500 FEE 433579 1617 6020989 2024-02-21 13:23:42.286 2024-02-21 13:23:42.286 22500 TIP 433579 1745 6020991 2024-02-21 13:23:50.03 2024-02-21 13:23:50.03 1000 FEE 433721 18529 6020992 2024-02-21 13:23:50.03 2024-02-21 13:23:50.03 9000 TIP 433721 2013 6021001 2024-02-21 13:24:15.479 2024-02-21 13:24:15.479 5000 FEE 433594 20015 6021002 2024-02-21 13:24:15.479 2024-02-21 13:24:15.479 45000 TIP 433594 19446 6021013 2024-02-21 13:26:22.249 2024-02-21 13:26:22.249 1000 FEE 433594 1881 6021014 2024-02-21 13:26:22.249 2024-02-21 13:26:22.249 9000 TIP 433594 15239 6021020 2024-02-21 13:27:14.109 2024-02-21 13:27:14.109 100 FEE 433728 10611 6021021 2024-02-21 13:27:14.109 2024-02-21 13:27:14.109 900 TIP 433728 18423 6021042 2024-02-21 13:28:45.413 2024-02-21 13:28:45.413 100 FEE 433710 9845 6021043 2024-02-21 13:28:45.413 2024-02-21 13:28:45.413 900 TIP 433710 14074 6021073 2024-02-21 13:33:30.936 2024-02-21 13:33:30.936 1000 FEE 433758 1352 6021074 2024-02-21 13:33:33.359 2024-02-21 13:33:33.359 2500 FEE 433513 14370 6021075 2024-02-21 13:33:33.359 2024-02-21 13:33:33.359 22500 TIP 433513 814 6021079 2024-02-21 13:33:59.653 2024-02-21 13:33:59.653 2100 FEE 433593 760 6021080 2024-02-21 13:33:59.653 2024-02-21 13:33:59.653 18900 TIP 433593 5036 6021083 2024-02-21 13:34:58.789 2024-02-21 13:34:58.789 2100 FEE 433713 20811 6021084 2024-02-21 13:34:58.789 2024-02-21 13:34:58.789 18900 TIP 433713 17001 6021086 2024-02-21 13:35:07.213 2024-02-21 13:35:07.213 100000 FEE 433761 8400 6021120 2024-02-21 13:41:17.456 2024-02-21 13:41:17.456 800 FEE 433749 18731 6021121 2024-02-21 13:41:17.456 2024-02-21 13:41:17.456 7200 TIP 433749 9365 6021123 2024-02-21 13:42:35.251 2024-02-21 13:42:35.251 1000 FEE 433766 8726 6021134 2024-02-21 13:44:25.012 2024-02-21 13:44:25.012 1600 FEE 433713 10519 6021135 2024-02-21 13:44:25.012 2024-02-21 13:44:25.012 14400 TIP 433713 9482 6021138 2024-02-21 13:44:37.218 2024-02-21 13:44:37.218 2500 FEE 433436 18989 6021139 2024-02-21 13:44:37.218 2024-02-21 13:44:37.218 22500 TIP 433436 6384 6021147 2024-02-21 13:45:28.179 2024-02-21 13:45:28.179 4000 FEE 433766 20179 6021148 2024-02-21 13:45:28.179 2024-02-21 13:45:28.179 36000 TIP 433766 12265 6021164 2024-02-21 13:52:15.193 2024-02-21 13:52:15.193 2100 FEE 433555 18984 6020150 2024-02-21 11:37:42.81 2024-02-21 11:37:42.81 2100 FEE 433087 21047 6020151 2024-02-21 11:37:42.81 2024-02-21 11:37:42.81 18900 TIP 433087 19488 6020160 2024-02-21 11:37:57.075 2024-02-21 11:37:57.075 100 FEE 432114 2734 6020161 2024-02-21 11:37:57.075 2024-02-21 11:37:57.075 900 TIP 432114 16594 6020170 2024-02-21 11:37:59.403 2024-02-21 11:37:59.403 100 FEE 433079 1571 6020171 2024-02-21 11:37:59.403 2024-02-21 11:37:59.403 900 TIP 433079 18769 6020172 2024-02-21 11:38:01.419 2024-02-21 11:38:01.419 2100 FEE 433282 17714 6020173 2024-02-21 11:38:01.419 2024-02-21 11:38:01.419 18900 TIP 433282 802 6020192 2024-02-21 11:39:28.37 2024-02-21 11:39:28.37 800 FEE 433377 17519 6020193 2024-02-21 11:39:28.37 2024-02-21 11:39:28.37 7200 TIP 433377 16847 6020205 2024-02-21 11:40:37.141 2024-02-21 11:40:37.141 2100 FEE 433558 21303 6020206 2024-02-21 11:40:37.141 2024-02-21 11:40:37.141 18900 TIP 433558 11443 6020217 2024-02-21 11:43:02.142 2024-02-21 11:43:02.142 1000 STREAM 141924 9334 6020225 2024-02-21 11:44:43.837 2024-02-21 11:44:43.837 300 FEE 433575 21138 6020226 2024-02-21 11:44:43.837 2024-02-21 11:44:43.837 2700 TIP 433575 21591 6020232 2024-02-21 11:46:23.008 2024-02-21 11:46:23.008 1000 FEE 433646 10409 6020249 2024-02-21 11:51:02.699 2024-02-21 11:51:02.699 1000 STREAM 141924 21155 6020250 2024-02-21 11:51:23.849 2024-02-21 11:51:23.849 1000 FEE 433651 2718 6020252 2024-02-21 11:51:58.903 2024-02-21 11:51:58.903 1000 FEE 433653 644 6020259 2024-02-21 11:53:26.948 2024-02-21 11:53:26.948 300 FEE 433029 16357 6020260 2024-02-21 11:53:26.948 2024-02-21 11:53:26.948 2700 TIP 433029 4126 6020281 2024-02-21 11:53:29.88 2024-02-21 11:53:29.88 300 FEE 433029 19033 6020282 2024-02-21 11:53:29.88 2024-02-21 11:53:29.88 2700 TIP 433029 10934 6020283 2024-02-21 11:53:49.237 2024-02-21 11:53:49.237 1000 FEE 433656 21026 6020294 2024-02-21 11:56:48.727 2024-02-21 11:56:48.727 2100 FEE 433648 18005 6020295 2024-02-21 11:56:48.727 2024-02-21 11:56:48.727 18900 TIP 433648 956 6020298 2024-02-21 11:58:02.212 2024-02-21 11:58:02.212 1000 STREAM 141924 9705 6020311 2024-02-21 12:01:02.236 2024-02-21 12:01:02.236 1000 STREAM 141924 19553 6020316 2024-02-21 12:02:08.92 2024-02-21 12:02:08.92 1000 FEE 433646 18774 6020317 2024-02-21 12:02:08.92 2024-02-21 12:02:08.92 9000 TIP 433646 2734 6020319 2024-02-21 12:03:05.626 2024-02-21 12:03:05.626 2100 FEE 433659 9352 6020320 2024-02-21 12:03:05.626 2024-02-21 12:03:05.626 18900 TIP 433659 1718 6020322 2024-02-21 12:03:49.76 2024-02-21 12:03:49.76 1000 FEE 433665 7376 6020325 2024-02-21 12:04:02.237 2024-02-21 12:04:02.237 1000 STREAM 141924 21437 6020338 2024-02-21 12:06:57.858 2024-02-21 12:06:57.858 10000 FEE 433672 17106 6020351 2024-02-21 12:10:02.26 2024-02-21 12:10:02.26 1000 STREAM 141924 14267 6020356 2024-02-21 12:13:02.255 2024-02-21 12:13:02.255 1000 STREAM 141924 20539 6020358 2024-02-21 12:14:12.252 2024-02-21 12:14:12.252 2100 FEE 433591 11897 6020359 2024-02-21 12:14:12.252 2024-02-21 12:14:12.252 18900 TIP 433591 20059 6020360 2024-02-21 12:14:30.17 2024-02-21 12:14:30.17 1100 FEE 433391 10398 6020361 2024-02-21 12:14:30.17 2024-02-21 12:14:30.17 9900 TIP 433391 18919 6020381 2024-02-21 12:18:29.763 2024-02-21 12:18:29.763 0 FEE 433680 20291 6020397 2024-02-21 12:21:13.91 2024-02-21 12:21:13.91 1000 FEE 433649 2232 6020398 2024-02-21 12:21:13.91 2024-02-21 12:21:13.91 9000 TIP 433649 21036 6020415 2024-02-21 12:23:43.185 2024-02-21 12:23:43.185 1100 FEE 433555 21463 6020416 2024-02-21 12:23:43.185 2024-02-21 12:23:43.185 9900 TIP 433555 19511 6020422 2024-02-21 12:24:16.161 2024-02-21 12:24:16.161 1000 FEE 432873 18392 6020423 2024-02-21 12:24:16.161 2024-02-21 12:24:16.161 9000 TIP 432873 19281 6020450 2024-02-21 12:26:57.809 2024-02-21 12:26:57.809 2000 FEE 433693 12819 6020463 2024-02-21 12:31:24.376 2024-02-21 12:31:24.376 2100 FEE 433691 21485 6020464 2024-02-21 12:31:24.376 2024-02-21 12:31:24.376 18900 TIP 433691 5160 6020472 2024-02-21 12:33:42.89 2024-02-21 12:33:42.89 1000 FEE 433698 14278 6020477 2024-02-21 12:34:43.266 2024-02-21 12:34:43.266 10000 FEE 433647 21342 6020478 2024-02-21 12:34:43.266 2024-02-21 12:34:43.266 90000 TIP 433647 1433 6020500 2024-02-21 12:38:03.582 2024-02-21 12:38:03.582 1100 FEE 433555 19773 6020501 2024-02-21 12:38:03.582 2024-02-21 12:38:03.582 9900 TIP 433555 20636 6020529 2024-02-21 12:41:11.375 2024-02-21 12:41:11.375 1000 FEE 433708 10591 6020530 2024-02-21 12:41:29.545 2024-02-21 12:41:29.545 100 FEE 433457 1000 6020531 2024-02-21 12:41:29.545 2024-02-21 12:41:29.545 900 TIP 433457 19660 6020536 2024-02-21 12:41:36.435 2024-02-21 12:41:36.435 1100 FEE 433568 19021 6020537 2024-02-21 12:41:36.435 2024-02-21 12:41:36.435 9900 TIP 433568 17172 6020570 2024-02-21 12:45:08.278 2024-02-21 12:45:08.278 1000 FEE 433649 4074 6020571 2024-02-21 12:45:08.278 2024-02-21 12:45:08.278 9000 TIP 433649 21374 6020580 2024-02-21 12:45:29.85 2024-02-21 12:45:29.85 2100 FEE 432873 10280 6020581 2024-02-21 12:45:29.85 2024-02-21 12:45:29.85 18900 TIP 432873 17064 6020583 2024-02-21 12:45:48.068 2024-02-21 12:45:48.068 1100 FEE 433568 640 6020584 2024-02-21 12:45:48.068 2024-02-21 12:45:48.068 9900 TIP 433568 20554 6020604 2024-02-21 12:47:13.364 2024-02-21 12:47:13.364 1000 FEE 433711 694 6020617 2024-02-21 12:48:10.466 2024-02-21 12:48:10.466 900 FEE 433470 20022 6020618 2024-02-21 12:48:10.466 2024-02-21 12:48:10.466 8100 TIP 433470 9863 6020633 2024-02-21 12:49:08.99 2024-02-21 12:49:08.99 900 FEE 433491 19320 6020634 2024-02-21 12:49:08.99 2024-02-21 12:49:08.99 8100 TIP 433491 6594 6020639 2024-02-21 12:49:44.237 2024-02-21 12:49:44.237 900 FEE 433502 1142 6020640 2024-02-21 12:49:44.237 2024-02-21 12:49:44.237 8100 TIP 433502 14472 6020656 2024-02-21 12:50:39.278 2024-02-21 12:50:39.278 5000 FEE 433713 18403 6020663 2024-02-21 12:50:58.356 2024-02-21 12:50:58.356 2300 FEE 433382 5497 6020664 2024-02-21 12:50:58.356 2024-02-21 12:50:58.356 20700 TIP 433382 1769 6020681 2024-02-21 12:51:55.185 2024-02-21 12:51:55.185 1000 FEE 433717 8284 6020742 2024-02-21 12:57:19.064 2024-02-21 12:57:19.064 1000 FEE 433723 618 6020747 2024-02-21 12:57:35.502 2024-02-21 12:57:35.502 9000 FEE 433688 19924 6020748 2024-02-21 12:57:35.502 2024-02-21 12:57:35.502 81000 TIP 433688 20594 6020759 2024-02-21 13:01:48.376 2024-02-21 13:01:48.376 10000 FEE 433726 9246 6020766 2024-02-21 13:03:08.521 2024-02-21 13:03:08.521 3200 FEE 433710 5694 6020767 2024-02-21 13:03:08.521 2024-02-21 13:03:08.521 28800 TIP 433710 18735 6020783 2024-02-21 13:05:06.399 2024-02-21 13:05:06.399 500 FEE 433591 15266 6020784 2024-02-21 13:05:06.399 2024-02-21 13:05:06.399 4500 TIP 433591 17227 6020794 2024-02-21 13:05:50.122 2024-02-21 13:05:50.122 500 FEE 433594 18896 6020795 2024-02-21 13:05:50.122 2024-02-21 13:05:50.122 4500 TIP 433594 694 6020804 2024-02-21 13:05:56.274 2024-02-21 13:05:56.274 8300 FEE 433555 17411 6020805 2024-02-21 13:05:56.274 2024-02-21 13:05:56.274 74700 TIP 433555 20891 6020806 2024-02-21 13:05:56.341 2024-02-21 13:05:56.341 8300 FEE 433555 20596 6020807 2024-02-21 13:05:56.341 2024-02-21 13:05:56.341 74700 TIP 433555 13547 6020824 2024-02-21 13:06:25.604 2024-02-21 13:06:25.604 500 FEE 433108 859 6020825 2024-02-21 13:06:25.604 2024-02-21 13:06:25.604 4500 TIP 433108 18472 6020837 2024-02-21 13:06:58.884 2024-02-21 13:06:58.884 1100 FEE 433725 18393 6020838 2024-02-21 13:06:58.884 2024-02-21 13:06:58.884 9900 TIP 433725 18637 6020840 2024-02-21 13:07:21.974 2024-02-21 13:07:21.974 4200 FEE 432873 16250 6020841 2024-02-21 13:07:21.974 2024-02-21 13:07:21.974 37800 TIP 432873 2335 6020846 2024-02-21 13:07:42.029 2024-02-21 13:07:42.029 4200 FEE 433088 717 6020847 2024-02-21 13:07:42.029 2024-02-21 13:07:42.029 37800 TIP 433088 1489 6020866 2024-02-21 13:10:27.321 2024-02-21 13:10:27.321 11700 FEE 433710 732 6020867 2024-02-21 13:10:27.321 2024-02-21 13:10:27.321 105300 TIP 433710 5794 6020872 2024-02-21 13:10:38.68 2024-02-21 13:10:38.68 2100 FEE 433727 21116 6020873 2024-02-21 13:10:38.68 2024-02-21 13:10:38.68 18900 TIP 433727 618 6020889 2024-02-21 13:11:23.345 2024-02-21 13:11:23.345 6300 FEE 433614 20841 6020890 2024-02-21 13:11:23.345 2024-02-21 13:11:23.345 56700 TIP 433614 15049 6020895 2024-02-21 13:12:17.653 2024-02-21 13:12:17.653 1000 FEE 433737 18040 6020326 2024-02-21 12:04:05.123 2024-02-21 12:04:05.123 1000 FEE 433666 11862 6020337 2024-02-21 12:06:20.112 2024-02-21 12:06:20.112 1000 FEE 433671 5701 6020339 2024-02-21 12:07:02.237 2024-02-21 12:07:02.237 1000 STREAM 141924 1737 6020352 2024-02-21 12:10:38.076 2024-02-21 12:10:38.076 10000 FEE 433676 2609 6020367 2024-02-21 12:16:02.281 2024-02-21 12:16:02.281 1000 STREAM 141924 20854 6020382 2024-02-21 12:18:39.906 2024-02-21 12:18:39.906 1000 FEE 433591 6515 6020383 2024-02-21 12:18:39.906 2024-02-21 12:18:39.906 9000 TIP 433591 17064 6020387 2024-02-21 12:19:37.781 2024-02-21 12:19:37.781 1000 FEE 433681 8242 6020402 2024-02-21 12:22:09.938 2024-02-21 12:22:09.938 1100 FEE 433611 2361 6020403 2024-02-21 12:22:09.938 2024-02-21 12:22:09.938 9900 TIP 433611 20509 6020431 2024-02-21 12:24:49.986 2024-02-21 12:24:49.986 1600 FEE 433646 11942 6020432 2024-02-21 12:24:49.986 2024-02-21 12:24:49.986 14400 TIP 433646 768 6020447 2024-02-21 12:26:31.529 2024-02-21 12:26:31.529 2100 FEE 433584 20525 6020448 2024-02-21 12:26:31.529 2024-02-21 12:26:31.529 18900 TIP 433584 19943 6020466 2024-02-21 12:32:03.13 2024-02-21 12:32:03.13 5000 FEE 433679 20452 6020467 2024-02-21 12:32:03.13 2024-02-21 12:32:03.13 45000 TIP 433679 12188 6020487 2024-02-21 12:36:58.469 2024-02-21 12:36:58.469 2100 FEE 433049 17109 6020488 2024-02-21 12:36:58.469 2024-02-21 12:36:58.469 18900 TIP 433049 9345 6020489 2024-02-21 12:37:00.345 2024-02-21 12:37:00.345 1000 FEE 433703 8095 6020525 2024-02-21 12:40:31.842 2024-02-21 12:40:31.842 125000 FEE 433707 20108 6020538 2024-02-21 12:42:02.479 2024-02-21 12:42:02.479 1000 STREAM 141924 17944 6020554 2024-02-21 12:44:02.443 2024-02-21 12:44:02.443 1000 STREAM 141924 18359 6020595 2024-02-21 12:47:00.114 2024-02-21 12:47:00.114 900 FEE 433455 1505 6020596 2024-02-21 12:47:00.114 2024-02-21 12:47:00.114 8100 TIP 433455 4118 6020605 2024-02-21 12:47:20.525 2024-02-21 12:47:20.525 500 FEE 433555 18306 6020606 2024-02-21 12:47:20.525 2024-02-21 12:47:20.525 4500 TIP 433555 21398 6020614 2024-02-21 12:48:10.222 2024-02-21 12:48:10.222 100 FEE 433470 690 6020615 2024-02-21 12:48:10.222 2024-02-21 12:48:10.222 900 TIP 433470 9078 6020623 2024-02-21 12:48:46.437 2024-02-21 12:48:46.437 1100 FEE 433555 20018 6020624 2024-02-21 12:48:46.437 2024-02-21 12:48:46.437 9900 TIP 433555 4027 6020630 2024-02-21 12:49:02.459 2024-02-21 12:49:02.459 1000 STREAM 141924 20187 6020650 2024-02-21 12:50:08.359 2024-02-21 12:50:08.359 8300 FEE 433382 19652 6020651 2024-02-21 12:50:08.359 2024-02-21 12:50:08.359 74700 TIP 433382 1326 6020652 2024-02-21 12:50:33.703 2024-02-21 12:50:33.703 100 FEE 433499 19638 6020653 2024-02-21 12:50:33.703 2024-02-21 12:50:33.703 900 TIP 433499 19857 6020666 2024-02-21 12:51:08.159 2024-02-21 12:51:08.159 100 FEE 433504 8713 6020667 2024-02-21 12:51:08.159 2024-02-21 12:51:08.159 900 TIP 433504 4502 6020672 2024-02-21 12:51:41.023 2024-02-21 12:51:41.023 2300 FEE 433468 1741 6020673 2024-02-21 12:51:41.023 2024-02-21 12:51:41.023 20700 TIP 433468 11275 6020679 2024-02-21 12:51:52.606 2024-02-21 12:51:52.606 300 FEE 433382 2529 6020680 2024-02-21 12:51:52.606 2024-02-21 12:51:52.606 2700 TIP 433382 2529 6020699 2024-02-21 12:53:02.481 2024-02-21 12:53:02.481 1000 STREAM 141924 651 6020702 2024-02-21 12:54:02.484 2024-02-21 12:54:02.484 1000 STREAM 141924 621 6020705 2024-02-21 12:54:48.275 2024-02-21 12:54:48.275 100 FEE 433594 5761 6020706 2024-02-21 12:54:48.275 2024-02-21 12:54:48.275 900 TIP 433594 2829 6020707 2024-02-21 12:54:48.523 2024-02-21 12:54:48.523 900 FEE 433594 17275 6020708 2024-02-21 12:54:48.523 2024-02-21 12:54:48.523 8100 TIP 433594 14381 6020710 2024-02-21 12:55:02.499 2024-02-21 12:55:02.499 1000 STREAM 141924 19322 6020724 2024-02-21 12:55:45.688 2024-02-21 12:55:45.688 100 FEE 433668 814 6020725 2024-02-21 12:55:45.688 2024-02-21 12:55:45.688 900 TIP 433668 21155 6020734 2024-02-21 12:56:02.502 2024-02-21 12:56:02.502 1000 STREAM 141924 13763 6020749 2024-02-21 12:58:02.495 2024-02-21 12:58:02.495 1000 STREAM 141924 21540 6020760 2024-02-21 13:02:02.526 2024-02-21 13:02:02.526 1000 STREAM 141924 21012 6020811 2024-02-21 13:06:02.542 2024-02-21 13:06:02.542 1000 STREAM 141924 977 6020854 2024-02-21 13:08:02.558 2024-02-21 13:08:02.558 1000 STREAM 141924 679 6020881 2024-02-21 13:11:02.579 2024-02-21 13:11:02.579 1000 STREAM 141924 19147 6020892 2024-02-21 13:12:02.583 2024-02-21 13:12:02.583 1000 STREAM 141924 4502 6020907 2024-02-21 13:13:02.576 2024-02-21 13:13:02.576 1000 STREAM 141924 21491 6020925 2024-02-21 13:17:02.605 2024-02-21 13:17:02.605 1000 STREAM 141924 20205 6020930 2024-02-21 13:18:02.628 2024-02-21 13:18:02.628 1000 STREAM 141924 4395 6020940 2024-02-21 13:20:02.647 2024-02-21 13:20:02.647 1000 STREAM 141924 1803 6020951 2024-02-21 13:21:02.634 2024-02-21 13:21:02.634 1000 STREAM 141924 18816 6020997 2024-02-21 13:24:02.638 2024-02-21 13:24:02.638 1000 STREAM 141924 21138 6021005 2024-02-21 13:25:02.655 2024-02-21 13:25:02.655 1000 STREAM 141924 19037 6021010 2024-02-21 13:26:02.639 2024-02-21 13:26:02.639 1000 STREAM 141924 3642 6021017 2024-02-21 13:27:02.652 2024-02-21 13:27:02.652 1000 STREAM 141924 19044 6021034 2024-02-21 13:28:02.657 2024-02-21 13:28:02.657 1000 STREAM 141924 15728 6021072 2024-02-21 13:33:02.729 2024-02-21 13:33:02.729 1000 STREAM 141924 16789 6021088 2024-02-21 13:36:02.778 2024-02-21 13:36:02.778 1000 STREAM 141924 16704 6021110 2024-02-21 13:39:02.81 2024-02-21 13:39:02.81 1000 STREAM 141924 1180 6021122 2024-02-21 13:42:02.842 2024-02-21 13:42:02.842 1000 STREAM 141924 5444 6021150 2024-02-21 13:47:02.894 2024-02-21 13:47:02.894 1000 STREAM 141924 16858 6020385 2024-02-21 12:18:40.662 2024-02-21 12:18:40.662 18900 TIP 433669 16867 6020388 2024-02-21 12:19:48.563 2024-02-21 12:19:48.563 1000 FEE 433682 642 6020395 2024-02-21 12:20:48.684 2024-02-21 12:20:48.684 2000 FEE 433684 811 6020420 2024-02-21 12:24:14.5 2024-02-21 12:24:14.5 1000 FEE 433391 19569 6020421 2024-02-21 12:24:14.5 2024-02-21 12:24:14.5 9000 TIP 433391 19583 6020426 2024-02-21 12:24:25.15 2024-02-21 12:24:25.15 1000 FEE 433555 1474 6020427 2024-02-21 12:24:25.15 2024-02-21 12:24:25.15 9000 TIP 433555 12272 6020438 2024-02-21 12:25:25.166 2024-02-21 12:25:25.166 0 FEE 433686 626 6020468 2024-02-21 12:32:29.187 2024-02-21 12:32:29.187 2100 FEE 433692 20022 6020469 2024-02-21 12:32:29.187 2024-02-21 12:32:29.187 18900 TIP 433692 2774 6020484 2024-02-21 12:36:00.44 2024-02-21 12:36:00.44 100000 FEE 433701 19506 6020517 2024-02-21 12:40:10.095 2024-02-21 12:40:10.095 1100 FEE 433087 16706 6020518 2024-02-21 12:40:10.095 2024-02-21 12:40:10.095 9900 TIP 433087 749 6020519 2024-02-21 12:40:10.373 2024-02-21 12:40:10.373 1100 FEE 433087 11263 6020520 2024-02-21 12:40:10.373 2024-02-21 12:40:10.373 9900 TIP 433087 6717 6020523 2024-02-21 12:40:10.569 2024-02-21 12:40:10.569 1100 FEE 433087 17517 6020524 2024-02-21 12:40:10.569 2024-02-21 12:40:10.569 9900 TIP 433087 21589 6020528 2024-02-21 12:41:02.69 2024-02-21 12:41:02.69 1000 STREAM 141924 20825 6020545 2024-02-21 12:42:42.785 2024-02-21 12:42:42.785 100 FEE 433648 9845 6020546 2024-02-21 12:42:42.785 2024-02-21 12:42:42.785 900 TIP 433648 5728 6020553 2024-02-21 12:43:02.663 2024-02-21 12:43:02.663 1000 STREAM 141924 19570 6020561 2024-02-21 12:44:41.096 2024-02-21 12:44:41.096 2500 FEE 433681 20906 6020562 2024-02-21 12:44:41.096 2024-02-21 12:44:41.096 22500 TIP 433681 732 6020567 2024-02-21 12:44:57.312 2024-02-21 12:44:57.312 9000 FEE 433403 14795 6020568 2024-02-21 12:44:57.312 2024-02-21 12:44:57.312 81000 TIP 433403 21437 6020569 2024-02-21 12:45:02.454 2024-02-21 12:45:02.454 1000 STREAM 141924 20581 6020582 2024-02-21 12:45:45.715 2024-02-21 12:45:45.715 1000 FEE 433709 1209 6020587 2024-02-21 12:46:02.67 2024-02-21 12:46:02.67 1000 STREAM 141924 16633 6020599 2024-02-21 12:47:02.474 2024-02-21 12:47:02.474 1000 STREAM 141924 8472 6020607 2024-02-21 12:47:26.809 2024-02-21 12:47:26.809 100 FEE 433464 13622 6020608 2024-02-21 12:47:26.809 2024-02-21 12:47:26.809 900 TIP 433464 15978 6020613 2024-02-21 12:48:02.466 2024-02-21 12:48:02.466 1000 STREAM 141924 14909 6020629 2024-02-21 12:48:56.914 2024-02-21 12:48:56.914 1000 FEE 433712 17147 6020645 2024-02-21 12:50:01.589 2024-02-21 12:50:01.589 700 FEE 433684 17157 6020646 2024-02-21 12:50:01.589 2024-02-21 12:50:01.589 6300 TIP 433684 1738 6020647 2024-02-21 12:50:02.508 2024-02-21 12:50:02.508 1000 STREAM 141924 20015 6020657 2024-02-21 12:50:45.535 2024-02-21 12:50:45.535 900 FEE 433499 9169 6020658 2024-02-21 12:50:45.535 2024-02-21 12:50:45.535 8100 TIP 433499 18945 6020659 2024-02-21 12:50:47.695 2024-02-21 12:50:47.695 9000 FEE 433499 644 6020660 2024-02-21 12:50:47.695 2024-02-21 12:50:47.695 81000 TIP 433499 4027 6020662 2024-02-21 12:50:55.257 2024-02-21 12:50:55.257 1000 FEE 433715 6555 6020665 2024-02-21 12:51:02.482 2024-02-21 12:51:02.482 1000 STREAM 141924 10728 6020674 2024-02-21 12:51:41.829 2024-02-21 12:51:41.829 2300 FEE 433468 1000 6020675 2024-02-21 12:51:41.829 2024-02-21 12:51:41.829 20700 TIP 433468 21357 6020678 2024-02-21 12:51:51.123 2024-02-21 12:51:51.123 10000 FEE 433716 20871 6020682 2024-02-21 12:51:58.202 2024-02-21 12:51:58.202 200 FEE 433591 8926 6020683 2024-02-21 12:51:58.202 2024-02-21 12:51:58.202 1800 TIP 433591 10112 6020688 2024-02-21 12:52:02.48 2024-02-21 12:52:02.48 1000 STREAM 141924 837 6020690 2024-02-21 12:52:15.886 2024-02-21 12:52:15.886 9000 FEE 433554 9109 6020691 2024-02-21 12:52:15.886 2024-02-21 12:52:15.886 81000 TIP 433554 19458 6020711 2024-02-21 12:55:10.576 2024-02-21 12:55:10.576 100 FEE 433622 17523 6020712 2024-02-21 12:55:10.576 2024-02-21 12:55:10.576 900 TIP 433622 769 6020741 2024-02-21 12:57:02.487 2024-02-21 12:57:02.487 1000 STREAM 141924 20840 6020752 2024-02-21 12:59:02.51 2024-02-21 12:59:02.51 1000 STREAM 141924 17275 6020754 2024-02-21 13:00:00.955 2024-02-21 13:00:00.955 800 FEE 433594 12265 6020755 2024-02-21 13:00:00.955 2024-02-21 13:00:00.955 7200 TIP 433594 8508 6020756 2024-02-21 13:00:02.51 2024-02-21 13:00:02.51 1000 STREAM 141924 16788 6020757 2024-02-21 13:01:02.521 2024-02-21 13:01:02.521 1000 STREAM 141924 17446 6020765 2024-02-21 13:03:02.529 2024-02-21 13:03:02.529 1000 STREAM 141924 1173 6020768 2024-02-21 13:03:39.631 2024-02-21 13:03:39.631 100 FEE 433591 18476 6020769 2024-02-21 13:03:39.631 2024-02-21 13:03:39.631 900 TIP 433591 9906 6020774 2024-02-21 13:04:02.533 2024-02-21 13:04:02.533 1000 STREAM 141924 12334 6020778 2024-02-21 13:05:02.54 2024-02-21 13:05:02.54 1000 STREAM 141924 2614 6020800 2024-02-21 13:05:55.823 2024-02-21 13:05:55.823 8300 FEE 433555 5809 6020801 2024-02-21 13:05:55.823 2024-02-21 13:05:55.823 74700 TIP 433555 10608 6020802 2024-02-21 13:05:56.053 2024-02-21 13:05:56.053 8300 FEE 433555 19890 6020803 2024-02-21 13:05:56.053 2024-02-21 13:05:56.053 74700 TIP 433555 20381 6020835 2024-02-21 13:06:56.21 2024-02-21 13:06:56.21 100 FEE 432920 21506 6020836 2024-02-21 13:06:56.21 2024-02-21 13:06:56.21 900 TIP 432920 20022 6020839 2024-02-21 13:07:02.555 2024-02-21 13:07:02.555 1000 STREAM 141924 20220 6020861 2024-02-21 13:09:02.563 2024-02-21 13:09:02.563 1000 STREAM 141924 7119 6020862 2024-02-21 13:10:02.576 2024-02-21 13:10:02.576 1000 STREAM 141924 19375 6020868 2024-02-21 13:10:36.322 2024-02-21 13:10:36.322 4000 FEE 433594 17522 6020869 2024-02-21 13:10:36.322 2024-02-21 13:10:36.322 36000 TIP 433594 16653 6020898 2024-02-21 13:12:24.841 2024-02-21 13:12:24.841 10000 FEE 433738 19322 6020910 2024-02-21 13:14:02.618 2024-02-21 13:14:02.618 1000 STREAM 141924 6202 6020919 2024-02-21 13:15:02.586 2024-02-21 13:15:02.586 1000 STREAM 141924 3709 6020922 2024-02-21 13:15:28.965 2024-02-21 13:15:28.965 4000 FEE 433740 21303 6020923 2024-02-21 13:15:28.965 2024-02-21 13:15:28.965 36000 TIP 433740 704 6020924 2024-02-21 13:16:02.6 2024-02-21 13:16:02.6 1000 STREAM 141924 21591 6020933 2024-02-21 13:19:02.615 2024-02-21 13:19:02.615 1000 STREAM 141924 20205 6020964 2024-02-21 13:22:02.632 2024-02-21 13:22:02.632 1000 STREAM 141924 15474 6020985 2024-02-21 13:23:02.628 2024-02-21 13:23:02.628 1000 STREAM 141924 18476 6020993 2024-02-21 13:23:51.222 2024-02-21 13:23:51.222 1000 FEE 433713 1673 6020994 2024-02-21 13:23:51.222 2024-02-21 13:23:51.222 9000 TIP 433713 10979 6020999 2024-02-21 13:24:14.285 2024-02-21 13:24:14.285 5000 FEE 433594 4128 6021000 2024-02-21 13:24:14.285 2024-02-21 13:24:14.285 45000 TIP 433594 15488 6021003 2024-02-21 13:24:18.847 2024-02-21 13:24:18.847 2500 FEE 433524 9843 6021004 2024-02-21 13:24:18.847 2024-02-21 13:24:18.847 22500 TIP 433524 11477 6021008 2024-02-21 13:25:17.625 2024-02-21 13:25:17.625 1000 FEE 433747 19243 6021024 2024-02-21 13:27:19.602 2024-02-21 13:27:19.602 1000 FEE 433750 21021 6021048 2024-02-21 13:29:02.676 2024-02-21 13:29:02.676 1000 STREAM 141924 14515 6021052 2024-02-21 13:30:02.678 2024-02-21 13:30:02.678 1000 STREAM 141924 14731 6021057 2024-02-21 13:31:02.684 2024-02-21 13:31:02.684 1000 STREAM 141924 10731 6021067 2024-02-21 13:32:02.696 2024-02-21 13:32:02.696 1000 STREAM 141924 18372 6021068 2024-02-21 13:32:17.251 2024-02-21 13:32:17.251 3100 FEE 433746 9985 6021069 2024-02-21 13:32:17.251 2024-02-21 13:32:17.251 27900 TIP 433746 5128 6021081 2024-02-21 13:34:02.724 2024-02-21 13:34:02.724 1000 STREAM 141924 4802 6021085 2024-02-21 13:35:02.746 2024-02-21 13:35:02.746 1000 STREAM 141924 11648 6021093 2024-02-21 13:37:02.795 2024-02-21 13:37:02.795 1000 STREAM 141924 15139 6021096 2024-02-21 13:37:24.954 2024-02-21 13:37:24.954 4000 FEE 433760 19663 6021097 2024-02-21 13:37:24.954 2024-02-21 13:37:24.954 36000 TIP 433760 2065 6021100 2024-02-21 13:38:02.794 2024-02-21 13:38:02.794 1000 STREAM 141924 8416 6021103 2024-02-21 13:38:36.913 2024-02-21 13:38:36.913 1000 FEE 433762 21624 6021114 2024-02-21 13:40:02.82 2024-02-21 13:40:02.82 1000 STREAM 141924 17291 6021119 2024-02-21 13:41:02.849 2024-02-21 13:41:02.849 1000 STREAM 141924 5036 6021126 2024-02-21 13:42:50.98 2024-02-21 13:42:50.98 12800 FEE 433438 859 6020661 2024-02-21 12:50:52.507 2024-02-21 12:50:52.507 1000 FEE 433714 7553 6020670 2024-02-21 12:51:10.063 2024-02-21 12:51:10.063 2300 FEE 433594 19663 6020671 2024-02-21 12:51:10.063 2024-02-21 12:51:10.063 20700 TIP 433594 20264 6020676 2024-02-21 12:51:43.568 2024-02-21 12:51:43.568 2300 FEE 433468 15326 6020677 2024-02-21 12:51:43.568 2024-02-21 12:51:43.568 20700 TIP 433468 19346 6020686 2024-02-21 12:51:59.831 2024-02-21 12:51:59.831 900 FEE 433554 15858 6020687 2024-02-21 12:51:59.831 2024-02-21 12:51:59.831 8100 TIP 433554 2016 6020700 2024-02-21 12:53:03.357 2024-02-21 12:53:03.357 10000 FEE 433719 7809 6020703 2024-02-21 12:54:40.973 2024-02-21 12:54:40.973 0 FEE 433718 7847 6020730 2024-02-21 12:55:51.591 2024-02-21 12:55:51.591 900 FEE 433661 649 6020731 2024-02-21 12:55:51.591 2024-02-21 12:55:51.591 8100 TIP 433661 20500 6020732 2024-02-21 12:55:51.823 2024-02-21 12:55:51.823 10000 FEE 433688 20826 6020733 2024-02-21 12:55:51.823 2024-02-21 12:55:51.823 90000 TIP 433688 1237 6020745 2024-02-21 12:57:31.601 2024-02-21 12:57:31.601 900 FEE 433688 19806 6020746 2024-02-21 12:57:31.601 2024-02-21 12:57:31.601 8100 TIP 433688 19021 6020773 2024-02-21 13:03:58.715 2024-02-21 13:03:58.715 125000 FEE 433730 1064 6020775 2024-02-21 13:04:35.701 2024-02-21 13:04:35.701 1100 FEE 433721 2508 6020776 2024-02-21 13:04:35.701 2024-02-21 13:04:35.701 9900 TIP 433721 15510 6020790 2024-02-21 13:05:48.749 2024-02-21 13:05:48.749 500 FEE 433594 6160 6020791 2024-02-21 13:05:48.749 2024-02-21 13:05:48.749 4500 TIP 433594 19346 6020796 2024-02-21 13:05:50.648 2024-02-21 13:05:50.648 500 FEE 433594 13143 6020797 2024-02-21 13:05:50.648 2024-02-21 13:05:50.648 4500 TIP 433594 16638 6020798 2024-02-21 13:05:55.762 2024-02-21 13:05:55.762 8300 FEE 433555 15239 6020799 2024-02-21 13:05:55.762 2024-02-21 13:05:55.762 74700 TIP 433555 7097 6020820 2024-02-21 13:06:16.447 2024-02-21 13:06:16.447 500 FEE 433502 1602 6020821 2024-02-21 13:06:16.447 2024-02-21 13:06:16.447 4500 TIP 433502 4633 6020822 2024-02-21 13:06:18.858 2024-02-21 13:06:18.858 100 FEE 433648 17226 6020823 2024-02-21 13:06:18.858 2024-02-21 13:06:18.858 900 TIP 433648 9351 6020826 2024-02-21 13:06:31.689 2024-02-21 13:06:31.689 1000 FEE 433733 19435 6020863 2024-02-21 13:10:18.88 2024-02-21 13:10:18.88 1600 FEE 433217 19034 6020864 2024-02-21 13:10:18.88 2024-02-21 13:10:18.88 14400 TIP 433217 9276 6020891 2024-02-21 13:11:37.131 2024-02-21 13:11:37.131 10000 FEE 433736 18830 6020931 2024-02-21 13:18:12.087 2024-02-21 13:18:12.087 4200 FEE 433713 20179 6020932 2024-02-21 13:18:12.087 2024-02-21 13:18:12.087 37800 TIP 433713 19531 6020943 2024-02-21 13:20:25.716 2024-02-21 13:20:25.716 2100 FEE 216553 5520 6020944 2024-02-21 13:20:25.716 2024-02-21 13:20:25.716 18900 TIP 216553 19103 6021016 2024-02-21 13:26:59.02 2024-02-21 13:26:59.02 1000 FEE 433749 20849 6021029 2024-02-21 13:27:54.103 2024-02-21 13:27:54.103 2500 FEE 433520 21373 6021030 2024-02-21 13:27:54.103 2024-02-21 13:27:54.103 22500 TIP 433520 9863 6021049 2024-02-21 13:29:42.559 2024-02-21 13:29:42.559 1000 FEE 433753 14472 6021076 2024-02-21 13:33:48.812 2024-02-21 13:33:48.812 1000 FEE 433759 11523 6021087 2024-02-21 13:35:32.956 2024-02-21 13:35:32.956 0 FEE 433759 10981 6021091 2024-02-21 13:37:00.555 2024-02-21 13:37:00.555 2100 FEE 433555 13798 6021092 2024-02-21 13:37:00.555 2024-02-21 13:37:00.555 18900 TIP 433555 1784 6021101 2024-02-21 13:38:30.345 2024-02-21 13:38:30.345 1000 FEE 433421 9969 6021102 2024-02-21 13:38:30.345 2024-02-21 13:38:30.345 9000 TIP 433421 4027 6020696 2024-02-21 12:52:32.089 2024-02-21 12:52:32.089 8100 TIP 433555 20817 6020704 2024-02-21 12:54:46.483 2024-02-21 12:54:46.483 1000 FEE 433720 704 6020717 2024-02-21 12:55:14.358 2024-02-21 12:55:14.358 900 FEE 433626 20585 6020718 2024-02-21 12:55:14.358 2024-02-21 12:55:14.358 8100 TIP 433626 20924 6020722 2024-02-21 12:55:29.719 2024-02-21 12:55:29.719 900 FEE 433649 1352 6020723 2024-02-21 12:55:29.719 2024-02-21 12:55:29.719 8100 TIP 433649 18209 6020735 2024-02-21 12:56:52.147 2024-02-21 12:56:52.147 100 FEE 433677 18626 6020736 2024-02-21 12:56:52.147 2024-02-21 12:56:52.147 900 TIP 433677 14503 6020739 2024-02-21 12:56:55.941 2024-02-21 12:56:55.941 9000 FEE 433677 11820 6020740 2024-02-21 12:56:55.941 2024-02-21 12:56:55.941 81000 TIP 433677 20205 6020743 2024-02-21 12:57:31.25 2024-02-21 12:57:31.25 100 FEE 433688 11967 6020744 2024-02-21 12:57:31.25 2024-02-21 12:57:31.25 900 TIP 433688 17494 6020753 2024-02-21 12:59:33.407 2024-02-21 12:59:33.407 1000 FEE 433724 1650 6020758 2024-02-21 13:01:31.024 2024-02-21 13:01:31.024 1000 FEE 433725 5865 6020763 2024-02-21 13:02:32.776 2024-02-21 13:02:32.776 1000 FEE 433727 21485 6020764 2024-02-21 13:02:59.461 2024-02-21 13:02:59.461 1000 FEE 433728 17552 6020777 2024-02-21 13:04:53.975 2024-02-21 13:04:53.975 0 FEE 433728 718 6020787 2024-02-21 13:05:41.898 2024-02-21 13:05:41.898 10000 FEE 433731 21012 6020810 2024-02-21 13:05:56.711 2024-02-21 13:05:56.711 10000 FEE 433732 20551 6020812 2024-02-21 13:06:02.785 2024-02-21 13:06:02.785 500 FEE 432873 18274 6020813 2024-02-21 13:06:02.785 2024-02-21 13:06:02.785 4500 TIP 432873 18772 6020816 2024-02-21 13:06:13.221 2024-02-21 13:06:13.221 100 FEE 433594 19930 6020817 2024-02-21 13:06:13.221 2024-02-21 13:06:13.221 900 TIP 433594 20490 6020827 2024-02-21 13:06:39.538 2024-02-21 13:06:39.538 100 FEE 433677 2773 6020828 2024-02-21 13:06:39.538 2024-02-21 13:06:39.538 900 TIP 433677 2065 6020831 2024-02-21 13:06:44.678 2024-02-21 13:06:44.678 100 FEE 433554 18533 6020832 2024-02-21 13:06:44.678 2024-02-21 13:06:44.678 900 TIP 433554 10273 6020844 2024-02-21 13:07:40.347 2024-02-21 13:07:40.347 500 FEE 433049 14169 6020845 2024-02-21 13:07:40.347 2024-02-21 13:07:40.347 4500 TIP 433049 1272 6020855 2024-02-21 13:08:19.407 2024-02-21 13:08:19.407 8300 FEE 433614 21437 6020856 2024-02-21 13:08:19.407 2024-02-21 13:08:19.407 74700 TIP 433614 6361 6020859 2024-02-21 13:09:02.205 2024-02-21 13:09:02.205 1000 FEE 433114 13927 6020860 2024-02-21 13:09:02.205 2024-02-21 13:09:02.205 9000 TIP 433114 8954 6020870 2024-02-21 13:10:37.185 2024-02-21 13:10:37.185 4000 FEE 433554 10668 6020871 2024-02-21 13:10:37.185 2024-02-21 13:10:37.185 36000 TIP 433554 1245 6020879 2024-02-21 13:10:49.624 2024-02-21 13:10:49.624 4000 FEE 433502 1141 6020880 2024-02-21 13:10:49.624 2024-02-21 13:10:49.624 36000 TIP 433502 9362 6020887 2024-02-21 13:11:22.245 2024-02-21 13:11:22.245 6300 FEE 433597 19117 6020888 2024-02-21 13:11:22.245 2024-02-21 13:11:22.245 56700 TIP 433597 8037 6020893 2024-02-21 13:12:17.311 2024-02-21 13:12:17.311 1700 FEE 433728 3478 6020894 2024-02-21 13:12:17.311 2024-02-21 13:12:17.311 15300 TIP 433728 19652 6020905 2024-02-21 13:12:52.497 2024-02-21 13:12:52.497 400 FEE 348860 769 6020906 2024-02-21 13:12:52.497 2024-02-21 13:12:52.497 3600 TIP 348860 3213 6020915 2024-02-21 13:14:47.135 2024-02-21 13:14:47.135 500 FEE 433648 21627 6020916 2024-02-21 13:14:47.135 2024-02-21 13:14:47.135 4500 TIP 433648 19546 6020921 2024-02-21 13:15:26.24 2024-02-21 13:15:26.24 100000 FEE 433742 7125 6020941 2024-02-21 13:20:24.394 2024-02-21 13:20:24.394 2100 FEE 433713 21492 6020942 2024-02-21 13:20:24.394 2024-02-21 13:20:24.394 18900 TIP 433713 20464 6020947 2024-02-21 13:20:26.874 2024-02-21 13:20:26.874 2100 FEE 433713 13042 6020948 2024-02-21 13:20:26.874 2024-02-21 13:20:26.874 18900 TIP 433713 3504 6020954 2024-02-21 13:21:23.688 2024-02-21 13:21:23.688 8300 FEE 433499 19320 6020955 2024-02-21 13:21:23.688 2024-02-21 13:21:23.688 74700 TIP 433499 9367 6020958 2024-02-21 13:21:24.145 2024-02-21 13:21:24.145 8300 FEE 433499 18291 6020959 2024-02-21 13:21:24.145 2024-02-21 13:21:24.145 74700 TIP 433499 18817 6020960 2024-02-21 13:22:01.512 2024-02-21 13:22:01.512 8300 FEE 433740 712 6020961 2024-02-21 13:22:01.512 2024-02-21 13:22:01.512 74700 TIP 433740 19463 6020967 2024-02-21 13:22:42.956 2024-02-21 13:22:42.956 1000 FEE 433718 18232 6020968 2024-02-21 13:22:42.956 2024-02-21 13:22:42.956 9000 TIP 433718 21520 6020971 2024-02-21 13:22:43.381 2024-02-21 13:22:43.381 1000 FEE 433718 20479 6020972 2024-02-21 13:22:43.381 2024-02-21 13:22:43.381 9000 TIP 433718 16212 6020983 2024-02-21 13:22:45.986 2024-02-21 13:22:45.986 1000 FEE 433718 14404 6020984 2024-02-21 13:22:45.986 2024-02-21 13:22:45.986 9000 TIP 433718 18626 6020998 2024-02-21 13:24:12.248 2024-02-21 13:24:12.248 1000 FEE 433746 16858 6021011 2024-02-21 13:26:16.947 2024-02-21 13:26:16.947 1600 FEE 426918 21600 6021012 2024-02-21 13:26:16.947 2024-02-21 13:26:16.947 14400 TIP 426918 14195 6021015 2024-02-21 13:26:50.612 2024-02-21 13:26:50.612 0 FEE 433745 19952 6021025 2024-02-21 13:27:50.727 2024-02-21 13:27:50.727 3100 FEE 433740 9334 6021026 2024-02-21 13:27:50.727 2024-02-21 13:27:50.727 27900 TIP 433740 14370 6021027 2024-02-21 13:27:51.337 2024-02-21 13:27:51.337 27900 FEE 433740 18387 6021028 2024-02-21 13:27:51.337 2024-02-21 13:27:51.337 251100 TIP 433740 20137 6021033 2024-02-21 13:27:56.997 2024-02-21 13:27:56.997 1000 FEE 433751 20481 6021037 2024-02-21 13:28:30.92 2024-02-21 13:28:30.92 1000 FEE 433752 20287 6021040 2024-02-21 13:28:44.096 2024-02-21 13:28:44.096 100 FEE 433710 12265 6021041 2024-02-21 13:28:44.096 2024-02-21 13:28:44.096 900 TIP 433710 17014 6021046 2024-02-21 13:29:02.008 2024-02-21 13:29:02.008 4000 FEE 433742 929 6021047 2024-02-21 13:29:02.008 2024-02-21 13:29:02.008 36000 TIP 433742 16653 6021050 2024-02-21 13:29:59.059 2024-02-21 13:29:59.059 5000 DONT_LIKE_THIS 433557 21303 6021053 2024-02-21 13:30:15.853 2024-02-21 13:30:15.853 1000 FEE 433754 18667 6021054 2024-02-21 13:30:20.828 2024-02-21 13:30:20.828 5000 DONT_LIKE_THIS 433562 946 6021058 2024-02-21 13:31:31.628 2024-02-21 13:31:31.628 1000 FEE 433740 21365 6021059 2024-02-21 13:31:31.628 2024-02-21 13:31:31.628 9000 TIP 433740 17365 6021064 2024-02-21 13:31:45.198 2024-02-21 13:31:45.198 1000 FEE 433755 730 6021065 2024-02-21 13:31:50.47 2024-02-21 13:31:50.47 5000 FEE 433677 20272 6021066 2024-02-21 13:31:50.47 2024-02-21 13:31:50.47 45000 TIP 433677 20680 6021082 2024-02-21 13:34:48.146 2024-02-21 13:34:48.146 10000 FEE 433760 20143 6021089 2024-02-21 13:36:10 2024-02-21 13:36:10 10000 FEE 433740 18678 6021090 2024-02-21 13:36:10 2024-02-21 13:36:10 90000 TIP 433740 17050 6021094 2024-02-21 13:37:16.299 2024-02-21 13:37:16.299 1600 FEE 433740 19259 6021095 2024-02-21 13:37:16.299 2024-02-21 13:37:16.299 14400 TIP 433740 20546 6021104 2024-02-21 13:38:51.83 2024-02-21 13:38:51.83 8300 FEE 433688 886 6021105 2024-02-21 13:38:51.83 2024-02-21 13:38:51.83 74700 TIP 433688 21514 6021106 2024-02-21 13:38:54.085 2024-02-21 13:38:54.085 8300 FEE 433688 10719 6021107 2024-02-21 13:38:54.085 2024-02-21 13:38:54.085 74700 TIP 433688 11220 6021113 2024-02-21 13:39:28.53 2024-02-21 13:39:28.53 1000 FEE 433763 1985 6021151 2024-02-21 13:47:20.609 2024-02-21 13:47:20.609 1000 FEE 433769 21482 6021159 2024-02-21 13:50:15.905 2024-02-21 13:50:15.905 1000 FEE 433772 20156 6020833 2024-02-21 13:06:53.476 2024-02-21 13:06:53.476 100 FEE 432674 15266 6020834 2024-02-21 13:06:53.476 2024-02-21 13:06:53.476 900 TIP 432674 940 6020865 2024-02-21 13:10:23.294 2024-02-21 13:10:23.294 1000 FEE 433734 10719 6020876 2024-02-21 13:10:45.817 2024-02-21 13:10:45.817 4000 FEE 433403 1726 6020877 2024-02-21 13:10:45.817 2024-02-21 13:10:45.817 36000 TIP 433403 4167 6020882 2024-02-21 13:11:14.2 2024-02-21 13:11:14.2 0 FEE 433735 21067 6020896 2024-02-21 13:12:21.137 2024-02-21 13:12:21.137 1700 FEE 433734 5128 6020897 2024-02-21 13:12:21.137 2024-02-21 13:12:21.137 15300 TIP 433734 9275 6020911 2024-02-21 13:14:19.237 2024-02-21 13:14:19.237 1600 FEE 433555 720 6020912 2024-02-21 13:14:19.237 2024-02-21 13:14:19.237 14400 TIP 433555 18989 6020917 2024-02-21 13:15:01.178 2024-02-21 13:15:01.178 1600 FEE 433677 21463 6020918 2024-02-21 13:15:01.178 2024-02-21 13:15:01.178 14400 TIP 433677 14785 6020949 2024-02-21 13:20:33.377 2024-02-21 13:20:33.377 1000 FEE 433743 21103 6020962 2024-02-21 13:22:01.781 2024-02-21 13:22:01.781 8300 FEE 433740 20153 6020963 2024-02-21 13:22:01.781 2024-02-21 13:22:01.781 74700 TIP 433740 19652 6020969 2024-02-21 13:22:43.159 2024-02-21 13:22:43.159 1000 FEE 433718 19815 6020970 2024-02-21 13:22:43.159 2024-02-21 13:22:43.159 9000 TIP 433718 1354 6020990 2024-02-21 13:23:47.808 2024-02-21 13:23:47.808 1000 FEE 433745 762 6021006 2024-02-21 13:25:11.074 2024-02-21 13:25:11.074 100 FEE 433374 1495 6021007 2024-02-21 13:25:11.074 2024-02-21 13:25:11.074 900 TIP 433374 1585 6021018 2024-02-21 13:27:13.885 2024-02-21 13:27:13.885 100 FEE 433728 10352 6021019 2024-02-21 13:27:13.885 2024-02-21 13:27:13.885 900 TIP 433728 5725 6021035 2024-02-21 13:28:14.572 2024-02-21 13:28:14.572 1000 FEE 433740 19813 6021036 2024-02-21 13:28:14.572 2024-02-21 13:28:14.572 9000 TIP 433740 8287 6021077 2024-02-21 13:33:50.133 2024-02-21 13:33:50.133 11700 FEE 433555 20218 6021078 2024-02-21 13:33:50.133 2024-02-21 13:33:50.133 105300 TIP 433555 2529 6020901 2024-02-21 13:12:40.212 2024-02-21 13:12:40.212 1600 FEE 433574 20922 6020902 2024-02-21 13:12:40.212 2024-02-21 13:12:40.212 14400 TIP 433574 18119 6020903 2024-02-21 13:12:42.279 2024-02-21 13:12:42.279 1600 FEE 433574 1611 6020904 2024-02-21 13:12:42.279 2024-02-21 13:12:42.279 14400 TIP 433574 963 6020908 2024-02-21 13:13:16.191 2024-02-21 13:13:16.191 10000 FEE 433739 21296 6020909 2024-02-21 13:13:43.353 2024-02-21 13:13:43.353 100000 FEE 433740 9333 6020913 2024-02-21 13:14:30.617 2024-02-21 13:14:30.617 1600 FEE 433591 9364 6020914 2024-02-21 13:14:30.617 2024-02-21 13:14:30.617 14400 TIP 433591 20655 6020920 2024-02-21 13:15:02.739 2024-02-21 13:15:02.739 100000 FEE 433741 21070 6020928 2024-02-21 13:17:13.126 2024-02-21 13:17:13.126 21000 FEE 433720 18235 6020929 2024-02-21 13:17:13.126 2024-02-21 13:17:13.126 189000 TIP 433720 16097 6020973 2024-02-21 13:22:43.468 2024-02-21 13:22:43.468 1000 FEE 433718 17673 6020974 2024-02-21 13:22:43.468 2024-02-21 13:22:43.468 9000 TIP 433718 18772 6020981 2024-02-21 13:22:45.332 2024-02-21 13:22:45.332 1000 FEE 433718 19446 6020982 2024-02-21 13:22:45.332 2024-02-21 13:22:45.332 9000 TIP 433718 14267 6021062 2024-02-21 13:31:36.455 2024-02-21 13:31:36.455 27900 FEE 433594 8287 6021063 2024-02-21 13:31:36.455 2024-02-21 13:31:36.455 251100 TIP 433594 6777 6021115 2024-02-21 13:40:12.427 2024-02-21 13:40:12.427 2100 FEE 433759 20597 6021116 2024-02-21 13:40:12.427 2024-02-21 13:40:12.427 18900 TIP 433759 8269 6021118 2024-02-21 13:40:51.758 2024-02-21 13:40:51.758 1000 FEE 433765 1000 6021141 2024-02-21 13:45:08.483 2024-02-21 13:45:08.483 2500 FEE 433578 7766 6021142 2024-02-21 13:45:08.483 2024-02-21 13:45:08.483 22500 TIP 433578 9166 6021180 2024-02-21 13:56:16.338 2024-02-21 13:56:16.338 1000 FEE 433777 20246 6021200 2024-02-21 13:56:55.634 2024-02-21 13:56:55.634 1000 FEE 433740 641 6021201 2024-02-21 13:56:55.634 2024-02-21 13:56:55.634 9000 TIP 433740 11760 6021210 2024-02-21 13:57:01.072 2024-02-21 13:57:01.072 2300 FEE 433688 12218 6021211 2024-02-21 13:57:01.072 2024-02-21 13:57:01.072 20700 TIP 433688 21589 6021225 2024-02-21 13:57:07.717 2024-02-21 13:57:07.717 2300 FEE 433499 2674 6021226 2024-02-21 13:57:07.717 2024-02-21 13:57:07.717 20700 TIP 433499 19664 6021282 2024-02-21 13:58:20.142 2024-02-21 13:58:20.142 2300 FEE 433499 21338 6021283 2024-02-21 13:58:20.142 2024-02-21 13:58:20.142 20700 TIP 433499 14705 6021296 2024-02-21 13:58:21.248 2024-02-21 13:58:21.248 2300 FEE 433499 18904 6021297 2024-02-21 13:58:21.248 2024-02-21 13:58:21.248 20700 TIP 433499 7978 6021333 2024-02-21 13:58:25.087 2024-02-21 13:58:25.087 2300 FEE 433499 20062 6021334 2024-02-21 13:58:25.087 2024-02-21 13:58:25.087 20700 TIP 433499 10352 6021341 2024-02-21 13:58:26.106 2024-02-21 13:58:26.106 2300 FEE 433499 19284 6021342 2024-02-21 13:58:26.106 2024-02-21 13:58:26.106 20700 TIP 433499 11967 6021359 2024-02-21 13:58:29.138 2024-02-21 13:58:29.138 4600 FEE 433499 13169 6021360 2024-02-21 13:58:29.138 2024-02-21 13:58:29.138 41400 TIP 433499 17095 6021365 2024-02-21 13:58:31.031 2024-02-21 13:58:31.031 2300 FEE 433499 822 6021366 2024-02-21 13:58:31.031 2024-02-21 13:58:31.031 20700 TIP 433499 20588 6021374 2024-02-21 13:59:14.541 2024-02-21 13:59:14.541 1000 FEE 433780 10944 6021377 2024-02-21 13:59:45.724 2024-02-21 13:59:45.724 1000 FEE 433737 1737 6021378 2024-02-21 13:59:45.724 2024-02-21 13:59:45.724 9000 TIP 433737 21323 6021385 2024-02-21 14:02:07.724 2024-02-21 14:02:07.724 2100 FEE 433720 16447 6021386 2024-02-21 14:02:07.724 2024-02-21 14:02:07.724 18900 TIP 433720 7903 6021395 2024-02-21 14:02:26.998 2024-02-21 14:02:26.998 2100 FEE 433457 16970 6021396 2024-02-21 14:02:26.998 2024-02-21 14:02:26.998 18900 TIP 433457 1800 6021407 2024-02-21 14:04:28.91 2024-02-21 14:04:28.91 2100 FEE 433782 14449 6021408 2024-02-21 14:04:28.91 2024-02-21 14:04:28.91 18900 TIP 433782 20326 6021411 2024-02-21 14:05:23.318 2024-02-21 14:05:23.318 2100 FEE 433782 794 6021412 2024-02-21 14:05:23.318 2024-02-21 14:05:23.318 18900 TIP 433782 8416 6021416 2024-02-21 14:06:03.86 2024-02-21 14:06:03.86 3100 FEE 433695 18679 6021417 2024-02-21 14:06:03.86 2024-02-21 14:06:03.86 27900 TIP 433695 17411 6021447 2024-02-21 14:06:28.127 2024-02-21 14:06:28.127 2300 FEE 433688 21218 6021448 2024-02-21 14:06:28.127 2024-02-21 14:06:28.127 20700 TIP 433688 18311 6021503 2024-02-21 14:06:34.355 2024-02-21 14:06:34.355 2300 FEE 433688 18663 6021504 2024-02-21 14:06:34.355 2024-02-21 14:06:34.355 20700 TIP 433688 2724 6021523 2024-02-21 14:06:36.434 2024-02-21 14:06:36.434 2300 FEE 433688 13132 6021524 2024-02-21 14:06:36.434 2024-02-21 14:06:36.434 20700 TIP 433688 1493 6021529 2024-02-21 14:06:37.346 2024-02-21 14:06:37.346 2300 FEE 433688 2525 6021530 2024-02-21 14:06:37.346 2024-02-21 14:06:37.346 20700 TIP 433688 18174 6021591 2024-02-21 14:09:13.304 2024-02-21 14:09:13.304 2100 FEE 433499 6003 6021592 2024-02-21 14:09:13.304 2024-02-21 14:09:13.304 18900 TIP 433499 20452 6021596 2024-02-21 14:10:30.077 2024-02-21 14:10:30.077 1000 FEE 433790 18717 6021598 2024-02-21 14:10:45.792 2024-02-21 14:10:45.792 200 FEE 433784 17411 6021599 2024-02-21 14:10:45.792 2024-02-21 14:10:45.792 1800 TIP 433784 698 6021619 2024-02-21 14:12:11.006 2024-02-21 14:12:11.006 2100 FEE 433753 7913 6021620 2024-02-21 14:12:11.006 2024-02-21 14:12:11.006 18900 TIP 433753 4984 6021629 2024-02-21 14:13:59.718 2024-02-21 14:13:59.718 10000 FEE 433795 3347 6021635 2024-02-21 14:14:31.585 2024-02-21 14:14:31.585 2100 FEE 433592 664 6021636 2024-02-21 14:14:31.585 2024-02-21 14:14:31.585 18900 TIP 433592 1090 6021641 2024-02-21 14:15:11.738 2024-02-21 14:15:11.738 1000 FEE 433797 2431 6021647 2024-02-21 14:16:26.394 2024-02-21 14:16:26.394 1000 FEE 433798 18690 6021651 2024-02-21 14:17:27.863 2024-02-21 14:17:27.863 100000 FEE 433799 3979 6021659 2024-02-21 14:20:14.656 2024-02-21 14:20:14.656 100 FEE 433123 18557 6021660 2024-02-21 14:20:14.656 2024-02-21 14:20:14.656 900 TIP 433123 19572 6021668 2024-02-21 14:21:11.773 2024-02-21 14:21:11.773 1000 FEE 433804 2735 6021669 2024-02-21 14:21:28.934 2024-02-21 14:21:28.934 100 FEE 433232 6383 6021670 2024-02-21 14:21:28.934 2024-02-21 14:21:28.934 900 TIP 433232 1224 6021673 2024-02-21 14:22:07.633 2024-02-21 14:22:07.633 100 FEE 433042 16788 6021674 2024-02-21 14:22:07.633 2024-02-21 14:22:07.633 900 TIP 433042 10771 6021693 2024-02-21 14:23:38.703 2024-02-21 14:23:38.703 100 FEE 433186 805 6021694 2024-02-21 14:23:38.703 2024-02-21 14:23:38.703 900 TIP 433186 3440 6021701 2024-02-21 14:24:45.026 2024-02-21 14:24:45.026 1000 FEE 433811 4043 6021730 2024-02-21 14:27:51.777 2024-02-21 14:27:51.777 1000 FEE 433815 1120 6021735 2024-02-21 14:28:14.828 2024-02-21 14:28:14.828 0 FEE 433812 8841 6021769 2024-02-21 14:35:27.324 2024-02-21 14:35:27.324 3100 FEE 433679 992 6021770 2024-02-21 14:35:27.324 2024-02-21 14:35:27.324 27900 TIP 433679 17212 6021774 2024-02-21 14:35:50.104 2024-02-21 14:35:50.104 3200 FEE 433817 20826 6021775 2024-02-21 14:35:50.104 2024-02-21 14:35:50.104 28800 TIP 433817 13204 6021810 2024-02-21 14:41:37.637 2024-02-21 14:41:37.637 2100 FEE 433803 2309 6021811 2024-02-21 14:41:37.637 2024-02-21 14:41:37.637 18900 TIP 433803 1970 6021820 2024-02-21 14:44:06.284 2024-02-21 14:44:06.284 1000 FEE 433831 2596 6021821 2024-02-21 14:44:27.646 2024-02-21 14:44:27.646 2100 FEE 433721 20681 6021822 2024-02-21 14:44:27.646 2024-02-21 14:44:27.646 18900 TIP 433721 20023 6021842 2024-02-21 14:45:38.025 2024-02-21 14:45:38.025 700 FEE 432957 18717 6021843 2024-02-21 14:45:38.025 2024-02-21 14:45:38.025 6300 TIP 432957 1585 6021853 2024-02-21 14:46:07.156 2024-02-21 14:46:07.156 10000 FEE 433832 16229 6021892 2024-02-21 14:49:59.477 2024-02-21 14:49:59.477 1000 FEE 433833 2529 6021893 2024-02-21 14:49:59.477 2024-02-21 14:49:59.477 9000 TIP 433833 20710 6021900 2024-02-21 14:50:00.761 2024-02-21 14:50:00.761 1000 FEE 433833 1712 6021901 2024-02-21 14:50:00.761 2024-02-21 14:50:00.761 9000 TIP 433833 20687 6021904 2024-02-21 14:50:01.355 2024-02-21 14:50:01.355 1000 FEE 433833 9844 6021905 2024-02-21 14:50:01.355 2024-02-21 14:50:01.355 9000 TIP 433833 2176 6021910 2024-02-21 14:50:17.112 2024-02-21 14:50:17.112 100 FEE 433721 1038 6021911 2024-02-21 14:50:17.112 2024-02-21 14:50:17.112 900 TIP 433721 13782 6020936 2024-02-21 13:19:41.685 2024-02-21 13:19:41.685 2500 FEE 433659 11164 6020937 2024-02-21 13:19:41.685 2024-02-21 13:19:41.685 22500 TIP 433659 9276 6020938 2024-02-21 13:19:50.981 2024-02-21 13:19:50.981 2500 FEE 433641 770 6020939 2024-02-21 13:19:50.981 2024-02-21 13:19:50.981 22500 TIP 433641 19639 6020950 2024-02-21 13:21:02.458 2024-02-21 13:21:02.458 98000 FEE 433744 16442 6020956 2024-02-21 13:21:23.963 2024-02-21 13:21:23.963 8300 FEE 433499 21609 6020957 2024-02-21 13:21:23.963 2024-02-21 13:21:23.963 74700 TIP 433499 21222 6020965 2024-02-21 13:22:42.743 2024-02-21 13:22:42.743 1000 FEE 433718 18235 6020966 2024-02-21 13:22:42.743 2024-02-21 13:22:42.743 9000 TIP 433718 19777 6020975 2024-02-21 13:22:44.768 2024-02-21 13:22:44.768 1000 FEE 433718 10519 6020976 2024-02-21 13:22:44.768 2024-02-21 13:22:44.768 9000 TIP 433718 3377 6020977 2024-02-21 13:22:44.969 2024-02-21 13:22:44.969 1000 FEE 433718 18473 6020978 2024-02-21 13:22:44.969 2024-02-21 13:22:44.969 9000 TIP 433718 20424 6020979 2024-02-21 13:22:45.176 2024-02-21 13:22:45.176 1000 FEE 433718 11750 6020980 2024-02-21 13:22:45.176 2024-02-21 13:22:45.176 9000 TIP 433718 18231 6020986 2024-02-21 13:23:19.188 2024-02-21 13:23:19.188 3100 FEE 433629 20554 6020987 2024-02-21 13:23:19.188 2024-02-21 13:23:19.188 27900 TIP 433629 951 6020995 2024-02-21 13:23:55.516 2024-02-21 13:23:55.516 10000 FEE 433730 21343 6020996 2024-02-21 13:23:55.516 2024-02-21 13:23:55.516 90000 TIP 433730 2367 6021009 2024-02-21 13:25:54.972 2024-02-21 13:25:54.972 1000 FEE 433748 5746 6021022 2024-02-21 13:27:15.298 2024-02-21 13:27:15.298 100 FEE 433728 6030 6021023 2024-02-21 13:27:15.298 2024-02-21 13:27:15.298 900 TIP 433728 1751 6021031 2024-02-21 13:27:54.332 2024-02-21 13:27:54.332 1000 FEE 433591 21514 6021032 2024-02-21 13:27:54.332 2024-02-21 13:27:54.332 9000 TIP 433591 19199 6021038 2024-02-21 13:28:39.007 2024-02-21 13:28:39.007 100 FEE 433710 1611 6021039 2024-02-21 13:28:39.007 2024-02-21 13:28:39.007 900 TIP 433710 14774 6021044 2024-02-21 13:28:46.116 2024-02-21 13:28:46.116 100 FEE 433710 2620 6021045 2024-02-21 13:28:46.116 2024-02-21 13:28:46.116 900 TIP 433710 666 6021051 2024-02-21 13:30:01.905 2024-02-21 13:30:01.905 0 FEE 433753 18945 6021055 2024-02-21 13:30:41.68 2024-02-21 13:30:41.68 2500 FEE 433513 4059 6021056 2024-02-21 13:30:41.68 2024-02-21 13:30:41.68 22500 TIP 433513 20912 6021060 2024-02-21 13:31:35.599 2024-02-21 13:31:35.599 3100 FEE 433594 1094 6021061 2024-02-21 13:31:35.599 2024-02-21 13:31:35.599 27900 TIP 433594 21228 6021070 2024-02-21 13:32:18.792 2024-02-21 13:32:18.792 1000 FEE 433756 17727 6021071 2024-02-21 13:32:36.443 2024-02-21 13:32:36.443 1000 FEE 433757 750 6021098 2024-02-21 13:37:54.567 2024-02-21 13:37:54.567 11700 FEE 433677 19506 6021099 2024-02-21 13:37:54.567 2024-02-21 13:37:54.567 105300 TIP 433677 722 6021108 2024-02-21 13:38:57.611 2024-02-21 13:38:57.611 5000 FEE 433757 9026 6021109 2024-02-21 13:38:57.611 2024-02-21 13:38:57.611 45000 TIP 433757 8870 6021111 2024-02-21 13:39:20.94 2024-02-21 13:39:20.94 2100 FEE 433593 19296 6021112 2024-02-21 13:39:20.94 2024-02-21 13:39:20.94 18900 TIP 433593 4502 6021117 2024-02-21 13:40:46.078 2024-02-21 13:40:46.078 10000 FEE 433764 9920 6021124 2024-02-21 13:42:42.072 2024-02-21 13:42:42.072 2100 FEE 433763 15094 6021125 2024-02-21 13:42:42.072 2024-02-21 13:42:42.072 18900 TIP 433763 20680 6021129 2024-02-21 13:43:16.187 2024-02-21 13:43:16.187 1000 FEE 433767 21455 6021130 2024-02-21 13:43:17.801 2024-02-21 13:43:17.801 1000 FEE 433768 3360 6021132 2024-02-21 13:44:11.395 2024-02-21 13:44:11.395 1000 FEE 433760 2016 6021133 2024-02-21 13:44:11.395 2024-02-21 13:44:11.395 9000 TIP 433760 19785 6021145 2024-02-21 13:45:17.642 2024-02-21 13:45:17.642 2500 FEE 433580 7903 6021146 2024-02-21 13:45:17.642 2024-02-21 13:45:17.642 22500 TIP 433580 6003 6021154 2024-02-21 13:48:31.8 2024-02-21 13:48:31.8 3200 FEE 433718 1585 6021155 2024-02-21 13:48:31.8 2024-02-21 13:48:31.8 28800 TIP 433718 19662 6021161 2024-02-21 13:51:03.791 2024-02-21 13:51:03.791 2500 FEE 433760 8095 6021162 2024-02-21 13:51:03.791 2024-02-21 13:51:03.791 22500 TIP 433760 2402 6021170 2024-02-21 13:53:45.415 2024-02-21 13:53:45.415 1000 FEE 433774 16536 6021171 2024-02-21 13:53:59.768 2024-02-21 13:53:59.768 12800 FEE 433341 822 6021172 2024-02-21 13:53:59.768 2024-02-21 13:53:59.768 115200 TIP 433341 16353 6021181 2024-02-21 13:56:19.001 2024-02-21 13:56:19.001 1000 FEE 433778 5791 6021192 2024-02-21 13:56:54.899 2024-02-21 13:56:54.899 1000 FEE 433740 1833 6021193 2024-02-21 13:56:54.899 2024-02-21 13:56:54.899 9000 TIP 433740 17014 6021194 2024-02-21 13:56:54.963 2024-02-21 13:56:54.963 1000 FEE 433740 12821 6021195 2024-02-21 13:56:54.963 2024-02-21 13:56:54.963 9000 TIP 433740 6300 6021196 2024-02-21 13:56:55.224 2024-02-21 13:56:55.224 1000 FEE 433740 20015 6021197 2024-02-21 13:56:55.224 2024-02-21 13:56:55.224 9000 TIP 433740 8095 6021204 2024-02-21 13:56:56.189 2024-02-21 13:56:56.189 1000 FEE 433740 4322 6021205 2024-02-21 13:56:56.189 2024-02-21 13:56:56.189 9000 TIP 433740 11075 6021208 2024-02-21 13:57:00.896 2024-02-21 13:57:00.896 2300 FEE 433688 20257 6021209 2024-02-21 13:57:00.896 2024-02-21 13:57:00.896 20700 TIP 433688 2749 6021212 2024-02-21 13:57:01.314 2024-02-21 13:57:01.314 2300 FEE 433688 11288 6021213 2024-02-21 13:57:01.314 2024-02-21 13:57:01.314 20700 TIP 433688 18663 6021227 2024-02-21 13:57:07.864 2024-02-21 13:57:07.864 2300 FEE 433499 5708 6021228 2024-02-21 13:57:07.864 2024-02-21 13:57:07.864 20700 TIP 433499 7979 6021229 2024-02-21 13:57:08.127 2024-02-21 13:57:08.127 2300 FEE 433499 20218 6021230 2024-02-21 13:57:08.127 2024-02-21 13:57:08.127 20700 TIP 433499 20706 6021239 2024-02-21 13:57:08.822 2024-02-21 13:57:08.822 2300 FEE 433499 20500 6021240 2024-02-21 13:57:08.822 2024-02-21 13:57:08.822 20700 TIP 433499 21352 6021241 2024-02-21 13:57:08.93 2024-02-21 13:57:08.93 2300 FEE 433499 14552 6021242 2024-02-21 13:57:08.93 2024-02-21 13:57:08.93 20700 TIP 433499 1008 6021247 2024-02-21 13:57:21.232 2024-02-21 13:57:21.232 2300 FEE 433722 18274 6021248 2024-02-21 13:57:21.232 2024-02-21 13:57:21.232 20700 TIP 433722 20187 6021254 2024-02-21 13:58:18.077 2024-02-21 13:58:18.077 2300 FEE 433499 21021 6021255 2024-02-21 13:58:18.077 2024-02-21 13:58:18.077 20700 TIP 433499 21491 6021258 2024-02-21 13:58:18.378 2024-02-21 13:58:18.378 2300 FEE 433499 14385 6021259 2024-02-21 13:58:18.378 2024-02-21 13:58:18.378 20700 TIP 433499 2188 6021286 2024-02-21 13:58:20.399 2024-02-21 13:58:20.399 2300 FEE 433499 13587 6021287 2024-02-21 13:58:20.399 2024-02-21 13:58:20.399 20700 TIP 433499 1740 6021315 2024-02-21 13:58:23.424 2024-02-21 13:58:23.424 2300 FEE 433499 10469 6021316 2024-02-21 13:58:23.424 2024-02-21 13:58:23.424 20700 TIP 433499 21556 6021361 2024-02-21 13:58:30.433 2024-02-21 13:58:30.433 2300 FEE 433499 14376 6021362 2024-02-21 13:58:30.433 2024-02-21 13:58:30.433 20700 TIP 433499 14552 6021367 2024-02-21 13:58:31.484 2024-02-21 13:58:31.484 2300 FEE 433499 16267 6021368 2024-02-21 13:58:31.484 2024-02-21 13:58:31.484 20700 TIP 433499 18017 6021369 2024-02-21 13:58:31.635 2024-02-21 13:58:31.635 2300 FEE 433499 21387 6021370 2024-02-21 13:58:31.635 2024-02-21 13:58:31.635 20700 TIP 433499 16649 6021433 2024-02-21 14:06:25.952 2024-02-21 14:06:25.952 2300 FEE 433688 17331 6021434 2024-02-21 14:06:25.952 2024-02-21 14:06:25.952 20700 TIP 433688 19640 6021437 2024-02-21 14:06:26.474 2024-02-21 14:06:26.474 2300 FEE 433688 1474 6021438 2024-02-21 14:06:26.474 2024-02-21 14:06:26.474 20700 TIP 433688 18816 6021441 2024-02-21 14:06:27.061 2024-02-21 14:06:27.061 2300 FEE 433688 21620 6021442 2024-02-21 14:06:27.061 2024-02-21 14:06:27.061 20700 TIP 433688 2329 6021449 2024-02-21 14:06:28.197 2024-02-21 14:06:28.197 2300 FEE 433688 660 6021450 2024-02-21 14:06:28.197 2024-02-21 14:06:28.197 20700 TIP 433688 16052 6021453 2024-02-21 14:06:28.949 2024-02-21 14:06:28.949 2300 FEE 433688 18641 6021454 2024-02-21 14:06:28.949 2024-02-21 14:06:28.949 20700 TIP 433688 895 6021467 2024-02-21 14:06:30.738 2024-02-21 14:06:30.738 2300 FEE 433688 20973 6021468 2024-02-21 14:06:30.738 2024-02-21 14:06:30.738 20700 TIP 433688 9337 6021493 2024-02-21 14:06:33.42 2024-02-21 14:06:33.42 2300 FEE 433688 21427 6021127 2024-02-21 13:42:50.98 2024-02-21 13:42:50.98 115200 TIP 433438 17976 6021128 2024-02-21 13:43:02.855 2024-02-21 13:43:02.855 1000 STREAM 141924 20602 6021131 2024-02-21 13:44:02.855 2024-02-21 13:44:02.855 1000 STREAM 141924 1737 6021136 2024-02-21 13:44:33.447 2024-02-21 13:44:33.447 800 FEE 433761 20782 6021137 2024-02-21 13:44:33.447 2024-02-21 13:44:33.447 7200 TIP 433761 17415 6021140 2024-02-21 13:45:02.87 2024-02-21 13:45:02.87 1000 STREAM 141924 1000 6021143 2024-02-21 13:45:16.961 2024-02-21 13:45:16.961 2500 FEE 433590 14905 6021144 2024-02-21 13:45:16.961 2024-02-21 13:45:16.961 22500 TIP 433590 16848 6021149 2024-02-21 13:46:02.878 2024-02-21 13:46:02.878 1000 STREAM 141924 21521 6021152 2024-02-21 13:48:02.429 2024-02-21 13:48:02.429 1000 STREAM 141924 11275 6021153 2024-02-21 13:48:26.053 2024-02-21 13:48:26.053 1000 FEE 433770 12821 6021156 2024-02-21 13:49:02.45 2024-02-21 13:49:02.45 1000 STREAM 141924 859 6021157 2024-02-21 13:49:52.108 2024-02-21 13:49:52.108 1000 FEE 433771 14152 6021158 2024-02-21 13:50:02.499 2024-02-21 13:50:02.499 1000 STREAM 141924 15833 6021160 2024-02-21 13:51:02.487 2024-02-21 13:51:02.487 1000 STREAM 141924 16542 6021163 2024-02-21 13:52:02.523 2024-02-21 13:52:02.523 1000 STREAM 141924 11821 6021168 2024-02-21 13:53:02.519 2024-02-21 13:53:02.519 1000 STREAM 141924 6616 6021173 2024-02-21 13:54:02.529 2024-02-21 13:54:02.529 1000 STREAM 141924 18177 6021177 2024-02-21 13:55:02.545 2024-02-21 13:55:02.545 1000 STREAM 141924 1737 6021182 2024-02-21 13:56:25.259 2024-02-21 13:56:25.259 2300 FEE 433457 807 6021183 2024-02-21 13:56:25.259 2024-02-21 13:56:25.259 20700 TIP 433457 2213 6021186 2024-02-21 13:56:49.252 2024-02-21 13:56:49.252 2300 FEE 433720 2367 6021187 2024-02-21 13:56:49.252 2024-02-21 13:56:49.252 20700 TIP 433720 18714 6021190 2024-02-21 13:56:54.554 2024-02-21 13:56:54.554 1000 FEE 433740 7395 6021191 2024-02-21 13:56:54.554 2024-02-21 13:56:54.554 9000 TIP 433740 14045 6021202 2024-02-21 13:56:55.792 2024-02-21 13:56:55.792 1000 FEE 433740 703 6021203 2024-02-21 13:56:55.792 2024-02-21 13:56:55.792 9000 TIP 433740 8423 6021220 2024-02-21 13:57:02.09 2024-02-21 13:57:02.09 2300 FEE 433688 18274 6021221 2024-02-21 13:57:02.09 2024-02-21 13:57:02.09 20700 TIP 433688 7673 6021243 2024-02-21 13:57:09.081 2024-02-21 13:57:09.081 2300 FEE 433499 2514 6021244 2024-02-21 13:57:09.081 2024-02-21 13:57:09.081 20700 TIP 433499 21620 6021250 2024-02-21 13:58:17.673 2024-02-21 13:58:17.673 2300 FEE 433499 9816 6021251 2024-02-21 13:58:17.673 2024-02-21 13:58:17.673 20700 TIP 433499 4128 6021266 2024-02-21 13:58:18.898 2024-02-21 13:58:18.898 2300 FEE 433499 21079 6021267 2024-02-21 13:58:18.898 2024-02-21 13:58:18.898 20700 TIP 433499 2460 6021278 2024-02-21 13:58:19.843 2024-02-21 13:58:19.843 2300 FEE 433499 19292 6021279 2024-02-21 13:58:19.843 2024-02-21 13:58:19.843 20700 TIP 433499 16816 6021280 2024-02-21 13:58:19.973 2024-02-21 13:58:19.973 2300 FEE 433499 16354 6021281 2024-02-21 13:58:19.973 2024-02-21 13:58:19.973 20700 TIP 433499 20911 6021288 2024-02-21 13:58:20.49 2024-02-21 13:58:20.49 2300 FEE 433499 13249 6021289 2024-02-21 13:58:20.49 2024-02-21 13:58:20.49 20700 TIP 433499 20657 6021308 2024-02-21 13:58:23.097 2024-02-21 13:58:23.097 2300 FEE 433499 18208 6021309 2024-02-21 13:58:23.097 2024-02-21 13:58:23.097 20700 TIP 433499 7558 6021317 2024-02-21 13:58:23.613 2024-02-21 13:58:23.613 2300 FEE 433499 18517 6021318 2024-02-21 13:58:23.613 2024-02-21 13:58:23.613 20700 TIP 433499 1512 6021323 2024-02-21 13:58:24.359 2024-02-21 13:58:24.359 2300 FEE 433499 18930 6021324 2024-02-21 13:58:24.359 2024-02-21 13:58:24.359 20700 TIP 433499 14657 6021329 2024-02-21 13:58:24.777 2024-02-21 13:58:24.777 2300 FEE 433499 4102 6021330 2024-02-21 13:58:24.777 2024-02-21 13:58:24.777 20700 TIP 433499 19346 6021331 2024-02-21 13:58:24.911 2024-02-21 13:58:24.911 2300 FEE 433499 15139 6021332 2024-02-21 13:58:24.911 2024-02-21 13:58:24.911 20700 TIP 433499 14910 6021347 2024-02-21 13:58:27.305 2024-02-21 13:58:27.305 2300 FEE 433499 19906 6021348 2024-02-21 13:58:27.305 2024-02-21 13:58:27.305 20700 TIP 433499 14255 6021353 2024-02-21 13:58:28.333 2024-02-21 13:58:28.333 2300 FEE 433499 14791 6021354 2024-02-21 13:58:28.333 2024-02-21 13:58:28.333 20700 TIP 433499 1769 6021363 2024-02-21 13:58:30.7 2024-02-21 13:58:30.7 2300 FEE 433499 17116 6021364 2024-02-21 13:58:30.7 2024-02-21 13:58:30.7 20700 TIP 433499 6361 6021405 2024-02-21 14:04:28.631 2024-02-21 14:04:28.631 2100 FEE 433782 17800 6021406 2024-02-21 14:04:28.631 2024-02-21 14:04:28.631 18900 TIP 433782 19087 6021413 2024-02-21 14:05:27.265 2024-02-21 14:05:27.265 100000 FEE 433784 9655 6021420 2024-02-21 14:06:15.243 2024-02-21 14:06:15.243 2100 FEE 433348 21212 6021421 2024-02-21 14:06:15.243 2024-02-21 14:06:15.243 18900 TIP 433348 803 6021461 2024-02-21 14:06:30.233 2024-02-21 14:06:30.233 2300 FEE 433688 19036 6021462 2024-02-21 14:06:30.233 2024-02-21 14:06:30.233 20700 TIP 433688 19398 6021463 2024-02-21 14:06:30.329 2024-02-21 14:06:30.329 2300 FEE 433688 673 6021464 2024-02-21 14:06:30.329 2024-02-21 14:06:30.329 20700 TIP 433688 18690 6021489 2024-02-21 14:06:32.814 2024-02-21 14:06:32.814 2300 FEE 433688 1124 6021490 2024-02-21 14:06:32.814 2024-02-21 14:06:32.814 20700 TIP 433688 21216 6021537 2024-02-21 14:06:38.271 2024-02-21 14:06:38.271 2300 FEE 433688 2640 6021538 2024-02-21 14:06:38.271 2024-02-21 14:06:38.271 20700 TIP 433688 21493 6021541 2024-02-21 14:06:38.765 2024-02-21 14:06:38.765 2300 FEE 433688 6300 6021542 2024-02-21 14:06:38.765 2024-02-21 14:06:38.765 20700 TIP 433688 19148 6021552 2024-02-21 14:06:41.267 2024-02-21 14:06:41.267 2300 FEE 433499 3990 6021553 2024-02-21 14:06:41.267 2024-02-21 14:06:41.267 20700 TIP 433499 21482 6021572 2024-02-21 14:06:43.339 2024-02-21 14:06:43.339 2300 FEE 433499 5377 6021573 2024-02-21 14:06:43.339 2024-02-21 14:06:43.339 20700 TIP 433499 866 6021587 2024-02-21 14:09:04.098 2024-02-21 14:09:04.098 2100 FEE 433688 4102 6021588 2024-02-21 14:09:04.098 2024-02-21 14:09:04.098 18900 TIP 433688 7986 6021610 2024-02-21 14:11:33.318 2024-02-21 14:11:33.318 0 FEE 433792 2335 6021623 2024-02-21 14:12:45.357 2024-02-21 14:12:45.357 2100 FEE 433631 18271 6021624 2024-02-21 14:12:45.357 2024-02-21 14:12:45.357 18900 TIP 433631 1769 6021627 2024-02-21 14:13:13.366 2024-02-21 14:13:13.366 2100 FEE 433625 1130 6021628 2024-02-21 14:13:13.366 2024-02-21 14:13:13.366 18900 TIP 433625 11314 6021165 2024-02-21 13:52:15.193 2024-02-21 13:52:15.193 18900 TIP 433555 16956 6021166 2024-02-21 13:52:55.29 2024-02-21 13:52:55.29 12800 FEE 433278 1047 6021167 2024-02-21 13:52:55.29 2024-02-21 13:52:55.29 115200 TIP 433278 19633 6021169 2024-02-21 13:53:41.631 2024-02-21 13:53:41.631 10000 FEE 433773 20704 6021174 2024-02-21 13:54:36.451 2024-02-21 13:54:36.451 1000 FEE 433775 15510 6021175 2024-02-21 13:54:58.295 2024-02-21 13:54:58.295 12800 FEE 433318 4474 6021176 2024-02-21 13:54:58.295 2024-02-21 13:54:58.295 115200 TIP 433318 20163 6021178 2024-02-21 13:55:59.589 2024-02-21 13:55:59.589 1000 FEE 433776 14152 6021179 2024-02-21 13:56:03.058 2024-02-21 13:56:03.058 1000 STREAM 141924 10611 6021184 2024-02-21 13:56:25.868 2024-02-21 13:56:25.868 2300 FEE 433457 17953 6021185 2024-02-21 13:56:25.868 2024-02-21 13:56:25.868 20700 TIP 433457 4259 6021188 2024-02-21 13:56:54.262 2024-02-21 13:56:54.262 1000 FEE 433740 2098 6021189 2024-02-21 13:56:54.262 2024-02-21 13:56:54.262 9000 TIP 433740 6030 6021198 2024-02-21 13:56:55.392 2024-02-21 13:56:55.392 1000 FEE 433740 3990 6021199 2024-02-21 13:56:55.392 2024-02-21 13:56:55.392 9000 TIP 433740 811 6021206 2024-02-21 13:57:00.869 2024-02-21 13:57:00.869 2300 FEE 433688 4014 6021207 2024-02-21 13:57:00.869 2024-02-21 13:57:00.869 20700 TIP 433688 13527 6021214 2024-02-21 13:57:01.578 2024-02-21 13:57:01.578 2300 FEE 433688 2829 6021215 2024-02-21 13:57:01.578 2024-02-21 13:57:01.578 20700 TIP 433688 15521 6021216 2024-02-21 13:57:01.831 2024-02-21 13:57:01.831 4600 FEE 433688 733 6021217 2024-02-21 13:57:01.831 2024-02-21 13:57:01.831 41400 TIP 433688 9482 6021218 2024-02-21 13:57:01.989 2024-02-21 13:57:01.989 2300 FEE 433688 16347 6021219 2024-02-21 13:57:01.989 2024-02-21 13:57:01.989 20700 TIP 433688 19995 6021222 2024-02-21 13:57:02.357 2024-02-21 13:57:02.357 2300 FEE 433688 19267 6021223 2024-02-21 13:57:02.357 2024-02-21 13:57:02.357 20700 TIP 433688 20817 6021224 2024-02-21 13:57:03.062 2024-02-21 13:57:03.062 1000 STREAM 141924 650 6021231 2024-02-21 13:57:08.232 2024-02-21 13:57:08.232 2300 FEE 433499 13843 6021232 2024-02-21 13:57:08.232 2024-02-21 13:57:08.232 20700 TIP 433499 9611 6021233 2024-02-21 13:57:08.427 2024-02-21 13:57:08.427 2300 FEE 433499 21361 6021234 2024-02-21 13:57:08.427 2024-02-21 13:57:08.427 20700 TIP 433499 20187 6021235 2024-02-21 13:57:08.659 2024-02-21 13:57:08.659 2300 FEE 433499 19132 6021236 2024-02-21 13:57:08.659 2024-02-21 13:57:08.659 20700 TIP 433499 12334 6021237 2024-02-21 13:57:08.678 2024-02-21 13:57:08.678 2300 FEE 433499 16309 6021238 2024-02-21 13:57:08.678 2024-02-21 13:57:08.678 20700 TIP 433499 19501 6021245 2024-02-21 13:57:09.196 2024-02-21 13:57:09.196 2300 FEE 433499 21233 6021246 2024-02-21 13:57:09.196 2024-02-21 13:57:09.196 20700 TIP 433499 686 6021249 2024-02-21 13:58:03.41 2024-02-21 13:58:03.41 1000 STREAM 141924 18174 6021252 2024-02-21 13:58:17.848 2024-02-21 13:58:17.848 2300 FEE 433499 21422 6021253 2024-02-21 13:58:17.848 2024-02-21 13:58:17.848 20700 TIP 433499 14950 6021256 2024-02-21 13:58:18.247 2024-02-21 13:58:18.247 2300 FEE 433499 776 6021257 2024-02-21 13:58:18.247 2024-02-21 13:58:18.247 20700 TIP 433499 9150 6021260 2024-02-21 13:58:18.474 2024-02-21 13:58:18.474 2300 FEE 433499 5173 6021261 2024-02-21 13:58:18.474 2024-02-21 13:58:18.474 20700 TIP 433499 9107 6021262 2024-02-21 13:58:18.592 2024-02-21 13:58:18.592 2300 FEE 433499 14168 6021263 2024-02-21 13:58:18.592 2024-02-21 13:58:18.592 20700 TIP 433499 18231 6021264 2024-02-21 13:58:18.743 2024-02-21 13:58:18.743 2300 FEE 433499 11329 6021265 2024-02-21 13:58:18.743 2024-02-21 13:58:18.743 20700 TIP 433499 18270 6021268 2024-02-21 13:58:19.128 2024-02-21 13:58:19.128 2300 FEE 433499 4570 6021269 2024-02-21 13:58:19.128 2024-02-21 13:58:19.128 20700 TIP 433499 919 6021270 2024-02-21 13:58:19.276 2024-02-21 13:58:19.276 2300 FEE 433499 17570 6021271 2024-02-21 13:58:19.276 2024-02-21 13:58:19.276 20700 TIP 433499 1472 6021272 2024-02-21 13:58:19.423 2024-02-21 13:58:19.423 2300 FEE 433499 16097 6021273 2024-02-21 13:58:19.423 2024-02-21 13:58:19.423 20700 TIP 433499 9347 6021274 2024-02-21 13:58:19.545 2024-02-21 13:58:19.545 2300 FEE 433499 16356 6021275 2024-02-21 13:58:19.545 2024-02-21 13:58:19.545 20700 TIP 433499 9342 6021276 2024-02-21 13:58:19.698 2024-02-21 13:58:19.698 2300 FEE 433499 16839 6021277 2024-02-21 13:58:19.698 2024-02-21 13:58:19.698 20700 TIP 433499 670 6021284 2024-02-21 13:58:20.258 2024-02-21 13:58:20.258 2300 FEE 433499 17331 6021285 2024-02-21 13:58:20.258 2024-02-21 13:58:20.258 20700 TIP 433499 21417 6021290 2024-02-21 13:58:20.651 2024-02-21 13:58:20.651 2300 FEE 433499 12946 6021291 2024-02-21 13:58:20.651 2024-02-21 13:58:20.651 20700 TIP 433499 18040 6021292 2024-02-21 13:58:20.899 2024-02-21 13:58:20.899 2300 FEE 433499 19809 6021293 2024-02-21 13:58:20.899 2024-02-21 13:58:20.899 20700 TIP 433499 19512 6021294 2024-02-21 13:58:21.152 2024-02-21 13:58:21.152 2300 FEE 433499 19263 6021295 2024-02-21 13:58:21.152 2024-02-21 13:58:21.152 20700 TIP 433499 11897 6021298 2024-02-21 13:58:21.375 2024-02-21 13:58:21.375 2300 FEE 433499 684 6021299 2024-02-21 13:58:21.375 2024-02-21 13:58:21.375 20700 TIP 433499 10409 6021300 2024-02-21 13:58:21.52 2024-02-21 13:58:21.52 2300 FEE 433499 1162 6021301 2024-02-21 13:58:21.52 2024-02-21 13:58:21.52 20700 TIP 433499 16830 6021302 2024-02-21 13:58:21.607 2024-02-21 13:58:21.607 2300 FEE 433499 644 6021303 2024-02-21 13:58:21.607 2024-02-21 13:58:21.607 20700 TIP 433499 18518 6021304 2024-02-21 13:58:22.624 2024-02-21 13:58:22.624 2300 FEE 433499 14705 6021305 2024-02-21 13:58:22.624 2024-02-21 13:58:22.624 20700 TIP 433499 15045 6021306 2024-02-21 13:58:22.805 2024-02-21 13:58:22.805 2300 FEE 433499 6573 6021307 2024-02-21 13:58:22.805 2024-02-21 13:58:22.805 20700 TIP 433499 21263 6021310 2024-02-21 13:58:23.123 2024-02-21 13:58:23.123 2300 FEE 433499 9329 6021311 2024-02-21 13:58:23.123 2024-02-21 13:58:23.123 20700 TIP 433499 3683 6021312 2024-02-21 13:58:23.245 2024-02-21 13:58:23.245 2300 FEE 433499 10283 6021313 2024-02-21 13:58:23.245 2024-02-21 13:58:23.245 20700 TIP 433499 4538 6021314 2024-02-21 13:58:23.417 2024-02-21 13:58:23.417 1000 FEE 433779 994 6021319 2024-02-21 13:58:23.651 2024-02-21 13:58:23.651 2300 FEE 433499 8664 6021320 2024-02-21 13:58:23.651 2024-02-21 13:58:23.651 20700 TIP 433499 17237 6021321 2024-02-21 13:58:24.142 2024-02-21 13:58:24.142 6900 FEE 433499 14376 6021322 2024-02-21 13:58:24.142 2024-02-21 13:58:24.142 62100 TIP 433499 13204 6021325 2024-02-21 13:58:24.512 2024-02-21 13:58:24.512 2300 FEE 433499 12102 6021326 2024-02-21 13:58:24.512 2024-02-21 13:58:24.512 20700 TIP 433499 17713 6021327 2024-02-21 13:58:24.668 2024-02-21 13:58:24.668 2300 FEE 433499 18664 6021328 2024-02-21 13:58:24.668 2024-02-21 13:58:24.668 20700 TIP 433499 2188 6021335 2024-02-21 13:58:25.231 2024-02-21 13:58:25.231 2300 FEE 433499 18635 6021336 2024-02-21 13:58:25.231 2024-02-21 13:58:25.231 20700 TIP 433499 658 6021337 2024-02-21 13:58:25.504 2024-02-21 13:58:25.504 2300 FEE 433499 10771 6021338 2024-02-21 13:58:25.504 2024-02-21 13:58:25.504 20700 TIP 433499 20205 6021339 2024-02-21 13:58:25.778 2024-02-21 13:58:25.778 2300 FEE 433499 646 6021340 2024-02-21 13:58:25.778 2024-02-21 13:58:25.778 20700 TIP 433499 10731 6021343 2024-02-21 13:58:26.331 2024-02-21 13:58:26.331 2300 FEE 433499 17316 6021344 2024-02-21 13:58:26.331 2024-02-21 13:58:26.331 20700 TIP 433499 19613 6021345 2024-02-21 13:58:27.288 2024-02-21 13:58:27.288 2300 FEE 433499 4378 6021346 2024-02-21 13:58:27.288 2024-02-21 13:58:27.288 20700 TIP 433499 8059 6021349 2024-02-21 13:58:27.809 2024-02-21 13:58:27.809 2300 FEE 433499 20754 6021350 2024-02-21 13:58:27.809 2024-02-21 13:58:27.809 20700 TIP 433499 20376 6021351 2024-02-21 13:58:27.886 2024-02-21 13:58:27.886 2300 FEE 433499 17494 6021352 2024-02-21 13:58:27.886 2024-02-21 13:58:27.886 20700 TIP 433499 20799 6021355 2024-02-21 13:58:28.343 2024-02-21 13:58:28.343 2300 FEE 433499 18556 6021356 2024-02-21 13:58:28.343 2024-02-21 13:58:28.343 20700 TIP 433499 18815 6021357 2024-02-21 13:58:28.517 2024-02-21 13:58:28.517 2300 FEE 433499 1585 6021358 2024-02-21 13:58:28.517 2024-02-21 13:58:28.517 20700 TIP 433499 18313 6021371 2024-02-21 13:58:38.448 2024-02-21 13:58:38.448 1000 FEE 433664 8385 6021372 2024-02-21 13:58:38.448 2024-02-21 13:58:38.448 9000 TIP 433664 18309 6021383 2024-02-21 14:01:45.841 2024-02-21 14:01:45.841 1000 FEE 433782 11866 6021387 2024-02-21 14:02:07.913 2024-02-21 14:02:07.913 2100 FEE 433720 16309 6021388 2024-02-21 14:02:07.913 2024-02-21 14:02:07.913 18900 TIP 433720 21400 6021397 2024-02-21 14:02:50.236 2024-02-21 14:02:50.236 2100 FEE 433555 8423 6021398 2024-02-21 14:02:50.236 2024-02-21 14:02:50.236 18900 TIP 433555 21540 6021402 2024-02-21 14:03:32.15 2024-02-21 14:03:32.15 27900 FEE 433555 20655 6021403 2024-02-21 14:03:32.15 2024-02-21 14:03:32.15 251100 TIP 433555 21619 6021409 2024-02-21 14:04:51.515 2024-02-21 14:04:51.515 1000 FEE 433783 18076 6021431 2024-02-21 14:06:25.666 2024-02-21 14:06:25.666 2300 FEE 433688 16847 6021432 2024-02-21 14:06:25.666 2024-02-21 14:06:25.666 20700 TIP 433688 803 6021445 2024-02-21 14:06:27.7 2024-02-21 14:06:27.7 2300 FEE 433688 15226 6021446 2024-02-21 14:06:27.7 2024-02-21 14:06:27.7 20700 TIP 433688 18336 6021451 2024-02-21 14:06:28.579 2024-02-21 14:06:28.579 2300 FEE 433688 19878 6021452 2024-02-21 14:06:28.579 2024-02-21 14:06:28.579 20700 TIP 433688 20470 6021455 2024-02-21 14:06:29.547 2024-02-21 14:06:29.547 4600 FEE 433688 663 6021456 2024-02-21 14:06:29.547 2024-02-21 14:06:29.547 41400 TIP 433688 20738 6021465 2024-02-21 14:06:30.668 2024-02-21 14:06:30.668 2300 FEE 433688 695 6021466 2024-02-21 14:06:30.668 2024-02-21 14:06:30.668 20700 TIP 433688 7899 6021469 2024-02-21 14:06:30.896 2024-02-21 14:06:30.896 2300 FEE 433688 20704 6021470 2024-02-21 14:06:30.896 2024-02-21 14:06:30.896 20700 TIP 433688 669 6021471 2024-02-21 14:06:31.03 2024-02-21 14:06:31.03 2300 FEE 433688 19105 6021472 2024-02-21 14:06:31.03 2024-02-21 14:06:31.03 20700 TIP 433688 8498 6021473 2024-02-21 14:06:31.323 2024-02-21 14:06:31.323 2300 FEE 433688 16357 6021474 2024-02-21 14:06:31.323 2024-02-21 14:06:31.323 20700 TIP 433688 1320 6021475 2024-02-21 14:06:31.49 2024-02-21 14:06:31.49 2300 FEE 433688 1836 6021476 2024-02-21 14:06:31.49 2024-02-21 14:06:31.49 20700 TIP 433688 20327 6021527 2024-02-21 14:06:37.145 2024-02-21 14:06:37.145 2300 FEE 433688 15148 6021528 2024-02-21 14:06:37.145 2024-02-21 14:06:37.145 20700 TIP 433688 11760 6021535 2024-02-21 14:06:38.103 2024-02-21 14:06:38.103 2300 FEE 433688 11450 6021536 2024-02-21 14:06:38.103 2024-02-21 14:06:38.103 20700 TIP 433688 17522 6021545 2024-02-21 14:06:39.579 2024-02-21 14:06:39.579 2300 FEE 433688 21458 6021546 2024-02-21 14:06:39.579 2024-02-21 14:06:39.579 20700 TIP 433688 8945 6021560 2024-02-21 14:06:41.991 2024-02-21 14:06:41.991 2300 FEE 433499 19303 6021561 2024-02-21 14:06:41.991 2024-02-21 14:06:41.991 20700 TIP 433499 19888 6021562 2024-02-21 14:06:42.199 2024-02-21 14:06:42.199 2300 FEE 433499 928 6021563 2024-02-21 14:06:42.199 2024-02-21 14:06:42.199 20700 TIP 433499 18832 6021570 2024-02-21 14:06:43.25 2024-02-21 14:06:43.25 2300 FEE 433499 19961 6021571 2024-02-21 14:06:43.25 2024-02-21 14:06:43.25 20700 TIP 433499 2748 6021583 2024-02-21 14:07:51.895 2024-02-21 14:07:51.895 1000 FEE 433788 5761 6021585 2024-02-21 14:08:09.75 2024-02-21 14:08:09.75 1000 FEE 433789 14404 6021600 2024-02-21 14:10:55.147 2024-02-21 14:10:55.147 1000 FEE 433792 18378 6021602 2024-02-21 14:11:08.876 2024-02-21 14:11:08.876 2100 FEE 433594 20816 6021603 2024-02-21 14:11:08.876 2024-02-21 14:11:08.876 18900 TIP 433594 715 6021604 2024-02-21 14:11:13.781 2024-02-21 14:11:13.781 2100 FEE 433648 2710 6021605 2024-02-21 14:11:13.781 2024-02-21 14:11:13.781 18900 TIP 433648 1354 6021613 2024-02-21 14:11:45.486 2024-02-21 14:11:45.486 2100 FEE 433740 6327 6021614 2024-02-21 14:11:45.486 2024-02-21 14:11:45.486 18900 TIP 433740 18005 6021615 2024-02-21 14:12:03.131 2024-02-21 14:12:03.131 2100 FEE 433776 663 6021616 2024-02-21 14:12:03.131 2024-02-21 14:12:03.131 18900 TIP 433776 20717 6021633 2024-02-21 14:14:06.972 2024-02-21 14:14:06.972 2100 FEE 433593 18363 6021634 2024-02-21 14:14:06.972 2024-02-21 14:14:06.972 18900 TIP 433593 11417 6021648 2024-02-21 14:16:30.036 2024-02-21 14:16:30.036 2100 FEE 433471 19909 6021649 2024-02-21 14:16:30.036 2024-02-21 14:16:30.036 18900 TIP 433471 11263 6021686 2024-02-21 14:22:50.487 2024-02-21 14:22:50.487 1000 FEE 433808 9349 6021715 2024-02-21 14:26:41.251 2024-02-21 14:26:41.251 300 FEE 433806 964 6021716 2024-02-21 14:26:41.251 2024-02-21 14:26:41.251 2700 TIP 433806 4043 6021725 2024-02-21 14:26:55.042 2024-02-21 14:26:55.042 0 FEE 433812 17212 6021731 2024-02-21 14:27:56.588 2024-02-21 14:27:56.588 6400 FEE 433812 17095 6021732 2024-02-21 14:27:56.588 2024-02-21 14:27:56.588 57600 TIP 433812 10638 6021742 2024-02-21 14:29:55.417 2024-02-21 14:29:55.417 83000 DONT_LIKE_THIS 433805 18518 6021749 2024-02-21 14:32:01.311 2024-02-21 14:32:01.311 100 FEE 433591 12609 6021750 2024-02-21 14:32:01.311 2024-02-21 14:32:01.311 900 TIP 433591 18994 6021768 2024-02-21 14:35:07.043 2024-02-21 14:35:07.043 0 FEE 433822 17291 6021771 2024-02-21 14:35:28.679 2024-02-21 14:35:28.679 27900 FEE 433679 1584 6021772 2024-02-21 14:35:28.679 2024-02-21 14:35:28.679 251100 TIP 433679 18705 6021782 2024-02-21 14:37:26.321 2024-02-21 14:37:26.321 8300 FEE 433823 20280 6021783 2024-02-21 14:37:26.321 2024-02-21 14:37:26.321 74700 TIP 433823 20180 6021804 2024-02-21 14:40:44.495 2024-02-21 14:40:44.495 1000 FEE 433740 687 6021805 2024-02-21 14:40:44.495 2024-02-21 14:40:44.495 9000 TIP 433740 15662 6021808 2024-02-21 14:41:01.547 2024-02-21 14:41:01.547 1000 FEE 433829 15728 6021830 2024-02-21 14:45:27.85 2024-02-21 14:45:27.85 1100 FEE 433824 14651 6021831 2024-02-21 14:45:27.85 2024-02-21 14:45:27.85 9900 TIP 433824 4126 6021846 2024-02-21 14:45:40.647 2024-02-21 14:45:40.647 700 FEE 432957 19613 6021847 2024-02-21 14:45:40.647 2024-02-21 14:45:40.647 6300 TIP 432957 9611 6021850 2024-02-21 14:45:42 2024-02-21 14:45:42 700 FEE 432957 6191 6021851 2024-02-21 14:45:42 2024-02-21 14:45:42 6300 TIP 432957 18941 6021878 2024-02-21 14:49:57.169 2024-02-21 14:49:57.169 1000 FEE 433833 14152 6021879 2024-02-21 14:49:57.169 2024-02-21 14:49:57.169 9000 TIP 433833 18743 6021888 2024-02-21 14:49:58.846 2024-02-21 14:49:58.846 1000 FEE 433833 5661 6021889 2024-02-21 14:49:58.846 2024-02-21 14:49:58.846 9000 TIP 433833 21506 6021906 2024-02-21 14:50:01.724 2024-02-21 14:50:01.724 1000 FEE 433833 2056 6021907 2024-02-21 14:50:01.724 2024-02-21 14:50:01.724 9000 TIP 433833 13174 6021917 2024-02-21 14:50:27.051 2024-02-21 14:50:27.051 90000 FEE 433721 9969 6021918 2024-02-21 14:50:27.051 2024-02-21 14:50:27.051 810000 TIP 433721 701 6021929 2024-02-21 14:52:30.648 2024-02-21 14:52:30.648 2100 FEE 433688 2640 6021930 2024-02-21 14:52:30.648 2024-02-21 14:52:30.648 18900 TIP 433688 18116 6021946 2024-02-21 14:55:24.251 2024-02-21 14:55:24.251 3400 FEE 433679 17147 6021947 2024-02-21 14:55:24.251 2024-02-21 14:55:24.251 30600 TIP 433679 16667 6021978 2024-02-21 14:58:33.319 2024-02-21 14:58:33.319 100 FEE 433780 12744 6021979 2024-02-21 14:58:33.319 2024-02-21 14:58:33.319 900 TIP 433780 20701 6021992 2024-02-21 14:58:39.887 2024-02-21 14:58:39.887 100 FEE 433688 2285 6021993 2024-02-21 14:58:39.887 2024-02-21 14:58:39.887 900 TIP 433688 8045 6022001 2024-02-21 14:59:59.106 2024-02-21 14:59:59.106 0 FEE 433842 18877 6022026 2024-02-21 15:02:52.144 2024-02-21 15:02:52.144 9000 FEE 433591 2514 6022027 2024-02-21 15:02:52.144 2024-02-21 15:02:52.144 81000 TIP 433591 738 6022083 2024-02-21 15:06:57.71 2024-02-21 15:06:57.71 1000 FEE 433740 1802 6022084 2024-02-21 15:06:57.71 2024-02-21 15:06:57.71 9000 TIP 433740 8648 6022100 2024-02-21 15:08:23.052 2024-02-21 15:08:23.052 1000 FEE 433848 992 6022101 2024-02-21 15:08:28.572 2024-02-21 15:08:28.572 1000 FEE 432811 14657 6022102 2024-02-21 15:08:28.572 2024-02-21 15:08:28.572 9000 TIP 432811 1245 6022107 2024-02-21 15:08:48.494 2024-02-21 15:08:48.494 3400 FEE 433730 19329 6022108 2024-02-21 15:08:48.494 2024-02-21 15:08:48.494 30600 TIP 433730 2734 6022122 2024-02-21 15:11:02.837 2024-02-21 15:11:02.837 3400 FEE 433594 21021 6022123 2024-02-21 15:11:02.837 2024-02-21 15:11:02.837 30600 TIP 433594 4238 6022163 2024-02-21 15:17:24.505 2024-02-21 15:17:24.505 2100 FEE 433851 19613 6022164 2024-02-21 15:17:24.505 2024-02-21 15:17:24.505 18900 TIP 433851 674 6021373 2024-02-21 13:59:03.405 2024-02-21 13:59:03.405 1000 STREAM 141924 20218 6021382 2024-02-21 14:01:03.411 2024-02-21 14:01:03.411 1000 STREAM 141924 21603 6021384 2024-02-21 14:02:03.408 2024-02-21 14:02:03.408 1000 STREAM 141924 7389 6021399 2024-02-21 14:03:03.422 2024-02-21 14:03:03.422 1000 STREAM 141924 8133 6021581 2024-02-21 14:07:03.459 2024-02-21 14:07:03.459 1000 STREAM 141924 20852 6021584 2024-02-21 14:08:03.457 2024-02-21 14:08:03.457 1000 STREAM 141924 5527 6021586 2024-02-21 14:09:03.462 2024-02-21 14:09:03.462 1000 STREAM 141924 9349 6021601 2024-02-21 14:11:03.455 2024-02-21 14:11:03.455 1000 STREAM 141924 7992 6021626 2024-02-21 14:13:03.474 2024-02-21 14:13:03.474 1000 STREAM 141924 6041 6021639 2024-02-21 14:15:03.474 2024-02-21 14:15:03.474 1000 STREAM 141924 762 6021650 2024-02-21 14:17:03.48 2024-02-21 14:17:03.48 1000 STREAM 141924 15161 6021654 2024-02-21 14:19:03.541 2024-02-21 14:19:03.541 1000 STREAM 141924 21369 6021657 2024-02-21 14:20:03.539 2024-02-21 14:20:03.539 1000 STREAM 141924 1483 6021665 2024-02-21 14:21:03.544 2024-02-21 14:21:03.544 1000 STREAM 141924 19640 6021687 2024-02-21 14:23:03.548 2024-02-21 14:23:03.548 1000 STREAM 141924 9494 6021375 2024-02-21 13:59:30.805 2024-02-21 13:59:30.805 2100 FEE 433713 20023 6021376 2024-02-21 13:59:30.805 2024-02-21 13:59:30.805 18900 TIP 433713 1010 6021379 2024-02-21 14:00:03.42 2024-02-21 14:00:03.42 1000 STREAM 141924 15243 6021400 2024-02-21 14:03:31.602 2024-02-21 14:03:31.602 3100 FEE 433555 8508 6021401 2024-02-21 14:03:31.602 2024-02-21 14:03:31.602 27900 TIP 433555 2390 6021404 2024-02-21 14:04:03.434 2024-02-21 14:04:03.434 1000 STREAM 141924 12102 6021410 2024-02-21 14:05:03.439 2024-02-21 14:05:03.439 1000 STREAM 141924 18809 6021415 2024-02-21 14:06:03.451 2024-02-21 14:06:03.451 1000 STREAM 141924 775 6021418 2024-02-21 14:06:04.059 2024-02-21 14:06:04.059 2100 FEE 433523 21520 6021419 2024-02-21 14:06:04.059 2024-02-21 14:06:04.059 18900 TIP 433523 20190 6021425 2024-02-21 14:06:24.442 2024-02-21 14:06:24.442 2300 FEE 433688 9816 6021426 2024-02-21 14:06:24.442 2024-02-21 14:06:24.442 20700 TIP 433688 6749 6021427 2024-02-21 14:06:24.901 2024-02-21 14:06:24.901 2300 FEE 433688 7553 6021428 2024-02-21 14:06:24.901 2024-02-21 14:06:24.901 20700 TIP 433688 5961 6021443 2024-02-21 14:06:27.52 2024-02-21 14:06:27.52 2300 FEE 433688 15409 6021444 2024-02-21 14:06:27.52 2024-02-21 14:06:27.52 20700 TIP 433688 16194 6021457 2024-02-21 14:06:29.873 2024-02-21 14:06:29.873 2300 FEE 433688 1713 6021458 2024-02-21 14:06:29.873 2024-02-21 14:06:29.873 20700 TIP 433688 20015 6021459 2024-02-21 14:06:30.222 2024-02-21 14:06:30.222 2300 FEE 433688 6533 6021460 2024-02-21 14:06:30.222 2024-02-21 14:06:30.222 20700 TIP 433688 11999 6021477 2024-02-21 14:06:31.713 2024-02-21 14:06:31.713 2300 FEE 433688 20099 6021478 2024-02-21 14:06:31.713 2024-02-21 14:06:31.713 20700 TIP 433688 20306 6021479 2024-02-21 14:06:31.85 2024-02-21 14:06:31.85 2300 FEE 433688 20754 6021480 2024-02-21 14:06:31.85 2024-02-21 14:06:31.85 20700 TIP 433688 7986 6021481 2024-02-21 14:06:32.236 2024-02-21 14:06:32.236 2300 FEE 433688 2583 6021482 2024-02-21 14:06:32.236 2024-02-21 14:06:32.236 20700 TIP 433688 20450 6021487 2024-02-21 14:06:32.761 2024-02-21 14:06:32.761 2300 FEE 433688 9426 6021488 2024-02-21 14:06:32.761 2024-02-21 14:06:32.761 20700 TIP 433688 16194 6021495 2024-02-21 14:06:33.593 2024-02-21 14:06:33.593 2300 FEE 433688 20987 6021496 2024-02-21 14:06:33.593 2024-02-21 14:06:33.593 20700 TIP 433688 11956 6021509 2024-02-21 14:06:35.029 2024-02-21 14:06:35.029 2300 FEE 433688 18745 6021510 2024-02-21 14:06:35.029 2024-02-21 14:06:35.029 20700 TIP 433688 16788 6021521 2024-02-21 14:06:36.255 2024-02-21 14:06:36.255 2300 FEE 433688 4074 6021522 2024-02-21 14:06:36.255 2024-02-21 14:06:36.255 20700 TIP 433688 12049 6021543 2024-02-21 14:06:39.062 2024-02-21 14:06:39.062 2300 FEE 433688 19660 6021544 2024-02-21 14:06:39.062 2024-02-21 14:06:39.062 20700 TIP 433688 6717 6021566 2024-02-21 14:06:42.728 2024-02-21 14:06:42.728 2300 FEE 433499 16505 6021567 2024-02-21 14:06:42.728 2024-02-21 14:06:42.728 20700 TIP 433499 15941 6021582 2024-02-21 14:07:21.977 2024-02-21 14:07:21.977 1000 FEE 433787 19640 6021593 2024-02-21 14:09:43.496 2024-02-21 14:09:43.496 2100 FEE 433785 15115 6021594 2024-02-21 14:09:43.496 2024-02-21 14:09:43.496 18900 TIP 433785 19878 6021595 2024-02-21 14:10:03.483 2024-02-21 14:10:03.483 1000 STREAM 141924 8648 6021617 2024-02-21 14:12:03.45 2024-02-21 14:12:03.45 1000 STREAM 141924 9845 6021630 2024-02-21 14:14:03.479 2024-02-21 14:14:03.479 1000 STREAM 141924 861 6021646 2024-02-21 14:16:03.48 2024-02-21 14:16:03.48 1000 STREAM 141924 19154 6021652 2024-02-21 14:18:03.527 2024-02-21 14:18:03.527 1000 STREAM 141924 2528 6021653 2024-02-21 14:19:02.426 2024-02-21 14:19:02.426 1000 FEE 433800 11996 6021672 2024-02-21 14:22:03.553 2024-02-21 14:22:03.553 1000 STREAM 141924 12516 6021723 2024-02-21 14:26:42.082 2024-02-21 14:26:42.082 300 FEE 433806 6688 6021724 2024-02-21 14:26:42.082 2024-02-21 14:26:42.082 2700 TIP 433806 2328 6021760 2024-02-21 14:33:32.848 2024-02-21 14:33:32.848 21000 FEE 406816 1130 6021761 2024-02-21 14:33:32.848 2024-02-21 14:33:32.848 189000 TIP 406816 20179 6021763 2024-02-21 14:33:40.25 2024-02-21 14:33:40.25 1000 FEE 433821 19103 6021765 2024-02-21 14:34:24.977 2024-02-21 14:34:24.977 1000 FEE 433822 15200 6021780 2024-02-21 14:36:38.788 2024-02-21 14:36:38.788 1000 FEE 433825 2338 6021794 2024-02-21 14:37:30.245 2024-02-21 14:37:30.245 2700 FEE 433342 20036 6021795 2024-02-21 14:37:30.245 2024-02-21 14:37:30.245 24300 TIP 433342 18309 6021838 2024-02-21 14:45:36.94 2024-02-21 14:45:36.94 700 FEE 432957 2681 6021839 2024-02-21 14:45:36.94 2024-02-21 14:45:36.94 6300 TIP 432957 18517 6021848 2024-02-21 14:45:41.3 2024-02-21 14:45:41.3 700 FEE 432957 10934 6021849 2024-02-21 14:45:41.3 2024-02-21 14:45:41.3 6300 TIP 432957 18919 6021857 2024-02-21 14:48:02.814 2024-02-21 14:48:02.814 100 FEE 433713 14939 6021858 2024-02-21 14:48:02.814 2024-02-21 14:48:02.814 900 TIP 433713 11491 6021872 2024-02-21 14:49:56.334 2024-02-21 14:49:56.334 1000 FEE 433832 17050 6021873 2024-02-21 14:49:56.334 2024-02-21 14:49:56.334 9000 TIP 433832 20084 6021882 2024-02-21 14:49:57.831 2024-02-21 14:49:57.831 1000 FEE 433833 16267 6021883 2024-02-21 14:49:57.831 2024-02-21 14:49:57.831 9000 TIP 433833 16571 6021884 2024-02-21 14:49:58.156 2024-02-21 14:49:58.156 1000 FEE 433833 1801 6021885 2024-02-21 14:49:58.156 2024-02-21 14:49:58.156 9000 TIP 433833 16754 6021886 2024-02-21 14:49:58.494 2024-02-21 14:49:58.494 1000 FEE 433833 9482 6021887 2024-02-21 14:49:58.494 2024-02-21 14:49:58.494 9000 TIP 433833 17291 6021934 2024-02-21 14:53:43.931 2024-02-21 14:53:43.931 3300 FEE 433677 8570 6021935 2024-02-21 14:53:43.931 2024-02-21 14:53:43.931 29700 TIP 433677 671 6021952 2024-02-21 14:56:03.144 2024-02-21 14:56:03.144 2100 FEE 433758 8713 6021953 2024-02-21 14:56:03.144 2024-02-21 14:56:03.144 18900 TIP 433758 19446 6021961 2024-02-21 14:57:27.215 2024-02-21 14:57:27.215 3400 FEE 433780 2233 6021962 2024-02-21 14:57:27.215 2024-02-21 14:57:27.215 30600 TIP 433780 6003 6021972 2024-02-21 14:58:32.449 2024-02-21 14:58:32.449 100 FEE 433780 1454 6021973 2024-02-21 14:58:32.449 2024-02-21 14:58:32.449 900 TIP 433780 21585 6021976 2024-02-21 14:58:33.158 2024-02-21 14:58:33.158 200 FEE 433780 8726 6021977 2024-02-21 14:58:33.158 2024-02-21 14:58:33.158 1800 TIP 433780 831 6021980 2024-02-21 14:58:33.946 2024-02-21 14:58:33.946 1000 FEE 433828 14941 6021981 2024-02-21 14:58:33.946 2024-02-21 14:58:33.946 9000 TIP 433828 18310 6021990 2024-02-21 14:58:38.244 2024-02-21 14:58:38.244 10000 FEE 433043 13398 6021991 2024-02-21 14:58:38.244 2024-02-21 14:58:38.244 90000 TIP 433043 713 6021997 2024-02-21 14:59:31.724 2024-02-21 14:59:31.724 0 FEE 433841 14357 6022002 2024-02-21 15:00:00.606 2024-02-21 15:00:00.606 4200 FEE 433823 21563 6022003 2024-02-21 15:00:00.606 2024-02-21 15:00:00.606 37800 TIP 433823 1236 6022023 2024-02-21 15:02:23.045 2024-02-21 15:02:23.045 900 FEE 433238 5449 6022024 2024-02-21 15:02:23.045 2024-02-21 15:02:23.045 8100 TIP 433238 14515 6022034 2024-02-21 15:02:56.222 2024-02-21 15:02:56.222 2700 FEE 433677 15488 6022035 2024-02-21 15:02:56.222 2024-02-21 15:02:56.222 24300 TIP 433677 14731 6022038 2024-02-21 15:02:58.026 2024-02-21 15:02:58.026 2700 FEE 433677 18241 6022039 2024-02-21 15:02:58.026 2024-02-21 15:02:58.026 24300 TIP 433677 18581 6022042 2024-02-21 15:02:58.391 2024-02-21 15:02:58.391 2700 FEE 433677 21401 6022043 2024-02-21 15:02:58.391 2024-02-21 15:02:58.391 24300 TIP 433677 20058 6022050 2024-02-21 15:02:59.139 2024-02-21 15:02:59.139 2700 FEE 433677 1352 6022051 2024-02-21 15:02:59.139 2024-02-21 15:02:59.139 24300 TIP 433677 16410 6022092 2024-02-21 15:07:25.991 2024-02-21 15:07:25.991 1600 FEE 433844 19007 6022093 2024-02-21 15:07:25.991 2024-02-21 15:07:25.991 14400 TIP 433844 18372 6022148 2024-02-21 15:14:36.619 2024-02-21 15:14:36.619 2100 FEE 433806 20018 6022149 2024-02-21 15:14:36.619 2024-02-21 15:14:36.619 18900 TIP 433806 14465 6022153 2024-02-21 15:16:51.351 2024-02-21 15:16:51.351 10000 FEE 433857 5160 6022200 2024-02-21 15:21:03.213 2024-02-21 15:21:03.213 100 FEE 433830 12122 6022201 2024-02-21 15:21:03.213 2024-02-21 15:21:03.213 900 TIP 433830 634 6022220 2024-02-21 15:23:39.064 2024-02-21 15:23:39.064 100 FEE 433833 19016 6022221 2024-02-21 15:23:39.064 2024-02-21 15:23:39.064 900 TIP 433833 9329 6021380 2024-02-21 14:00:15.858 2024-02-21 14:00:15.858 1000 FEE 433737 12516 6021381 2024-02-21 14:00:15.858 2024-02-21 14:00:15.858 9000 TIP 433737 21262 6021423 2024-02-21 14:06:24.07 2024-02-21 14:06:24.07 2300 FEE 433688 2444 6021424 2024-02-21 14:06:24.07 2024-02-21 14:06:24.07 20700 TIP 433688 20022 6021439 2024-02-21 14:06:26.994 2024-02-21 14:06:26.994 2300 FEE 433688 21263 6021440 2024-02-21 14:06:26.994 2024-02-21 14:06:26.994 20700 TIP 433688 16284 6021501 2024-02-21 14:06:34.336 2024-02-21 14:06:34.336 2300 FEE 433688 827 6021502 2024-02-21 14:06:34.336 2024-02-21 14:06:34.336 20700 TIP 433688 13378 6021505 2024-02-21 14:06:34.538 2024-02-21 14:06:34.538 2300 FEE 433688 21424 6021506 2024-02-21 14:06:34.538 2024-02-21 14:06:34.538 20700 TIP 433688 6030 6021507 2024-02-21 14:06:34.859 2024-02-21 14:06:34.859 2300 FEE 433688 1105 6021508 2024-02-21 14:06:34.859 2024-02-21 14:06:34.859 20700 TIP 433688 20781 6021517 2024-02-21 14:06:35.906 2024-02-21 14:06:35.906 2300 FEE 433688 18673 6021518 2024-02-21 14:06:35.906 2024-02-21 14:06:35.906 20700 TIP 433688 712 6021531 2024-02-21 14:06:37.497 2024-02-21 14:06:37.497 2300 FEE 433688 3686 6021532 2024-02-21 14:06:37.497 2024-02-21 14:06:37.497 20700 TIP 433688 9427 6021533 2024-02-21 14:06:37.689 2024-02-21 14:06:37.689 2300 FEE 433688 6160 6021534 2024-02-21 14:06:37.689 2024-02-21 14:06:37.689 20700 TIP 433688 20108 6021558 2024-02-21 14:06:41.797 2024-02-21 14:06:41.797 2300 FEE 433499 20825 6021559 2024-02-21 14:06:41.797 2024-02-21 14:06:41.797 20700 TIP 433499 19375 6021574 2024-02-21 14:06:43.64 2024-02-21 14:06:43.64 2300 FEE 433499 16638 6021575 2024-02-21 14:06:43.64 2024-02-21 14:06:43.64 20700 TIP 433499 9476 6021597 2024-02-21 14:10:30.774 2024-02-21 14:10:30.774 100000 FEE 433791 16912 6021631 2024-02-21 14:14:03.582 2024-02-21 14:14:03.582 2100 FEE 433599 9177 6021632 2024-02-21 14:14:03.582 2024-02-21 14:14:03.582 18900 TIP 433599 2213 6021644 2024-02-21 14:15:43.223 2024-02-21 14:15:43.223 2100 FEE 433793 4313 6021645 2024-02-21 14:15:43.223 2024-02-21 14:15:43.223 18900 TIP 433793 8289 6021677 2024-02-21 14:22:17.924 2024-02-21 14:22:17.924 1000 FEE 433807 21523 6021697 2024-02-21 14:24:04.041 2024-02-21 14:24:04.041 1600 FEE 433631 10493 6021698 2024-02-21 14:24:04.041 2024-02-21 14:24:04.041 14400 TIP 433631 12057 6021705 2024-02-21 14:25:03.972 2024-02-21 14:25:03.972 11100 FEE 433811 8133 6021706 2024-02-21 14:25:03.972 2024-02-21 14:25:03.972 99900 TIP 433811 19966 6021741 2024-02-21 14:29:52.428 2024-02-21 14:29:52.428 10000 FEE 433818 13587 6021790 2024-02-21 14:37:29.399 2024-02-21 14:37:29.399 2700 FEE 433342 20585 6021791 2024-02-21 14:37:29.399 2024-02-21 14:37:29.399 24300 TIP 433342 20434 6021806 2024-02-21 14:40:45.157 2024-02-21 14:40:45.157 1000 FEE 433740 20198 6021807 2024-02-21 14:40:45.157 2024-02-21 14:40:45.157 9000 TIP 433740 20353 6021812 2024-02-21 14:41:40.259 2024-02-21 14:41:40.259 3100 FEE 433829 17095 6021813 2024-02-21 14:41:40.259 2024-02-21 14:41:40.259 27900 TIP 433829 928 6021818 2024-02-21 14:43:32.192 2024-02-21 14:43:32.192 210000 FEE 433830 17218 6021826 2024-02-21 14:45:13.792 2024-02-21 14:45:13.792 1100 FEE 433824 14168 6021827 2024-02-21 14:45:13.792 2024-02-21 14:45:13.792 9900 TIP 433824 1051 6021840 2024-02-21 14:45:37.441 2024-02-21 14:45:37.441 700 FEE 432957 3979 6021841 2024-02-21 14:45:37.441 2024-02-21 14:45:37.441 6300 TIP 432957 19996 6021844 2024-02-21 14:45:40 2024-02-21 14:45:40 700 FEE 432957 859 6021845 2024-02-21 14:45:40 2024-02-21 14:45:40 6300 TIP 432957 10490 6021855 2024-02-21 14:47:52.038 2024-02-21 14:47:52.038 2100 FEE 433826 17094 6021856 2024-02-21 14:47:52.038 2024-02-21 14:47:52.038 18900 TIP 433826 6687 6021860 2024-02-21 14:48:03.679 2024-02-21 14:48:03.679 900 FEE 433713 17523 6021861 2024-02-21 14:48:03.679 2024-02-21 14:48:03.679 8100 TIP 433713 18618 6021862 2024-02-21 14:48:15.036 2024-02-21 14:48:15.036 9000 FEE 433713 899 6021863 2024-02-21 14:48:15.036 2024-02-21 14:48:15.036 81000 TIP 433713 3656 6021874 2024-02-21 14:49:56.612 2024-02-21 14:49:56.612 1000 FEE 433833 8162 6021875 2024-02-21 14:49:56.612 2024-02-21 14:49:56.612 9000 TIP 433833 7097 6021876 2024-02-21 14:49:56.861 2024-02-21 14:49:56.861 1000 FEE 433833 19511 6021877 2024-02-21 14:49:56.861 2024-02-21 14:49:56.861 9000 TIP 433833 11716 6021928 2024-02-21 14:52:15.407 2024-02-21 14:52:15.407 1000 FEE 433838 16432 6021932 2024-02-21 14:53:39.525 2024-02-21 14:53:39.525 2100 FEE 433722 18264 6021933 2024-02-21 14:53:39.525 2024-02-21 14:53:39.525 18900 TIP 433722 16351 6021942 2024-02-21 14:55:17.821 2024-02-21 14:55:17.821 3300 FEE 433682 19484 6021943 2024-02-21 14:55:17.821 2024-02-21 14:55:17.821 29700 TIP 433682 15510 6021954 2024-02-21 14:56:03.497 2024-02-21 14:56:03.497 2100 FEE 433837 626 6021955 2024-02-21 14:56:03.497 2024-02-21 14:56:03.497 18900 TIP 433837 2529 6021982 2024-02-21 14:58:34.952 2024-02-21 14:58:34.952 100 FEE 433780 1493 6021983 2024-02-21 14:58:34.952 2024-02-21 14:58:34.952 900 TIP 433780 18626 6021984 2024-02-21 14:58:35.194 2024-02-21 14:58:35.194 100 FEE 433780 4322 6021985 2024-02-21 14:58:35.194 2024-02-21 14:58:35.194 900 TIP 433780 4388 6022007 2024-02-21 15:00:18.706 2024-02-21 15:00:18.706 1000 FEE 433593 4035 6022008 2024-02-21 15:00:18.706 2024-02-21 15:00:18.706 9000 TIP 433593 18543 6022081 2024-02-21 15:06:03.563 2024-02-21 15:06:03.563 2100 FEE 433842 11075 6022082 2024-02-21 15:06:03.563 2024-02-21 15:06:03.563 18900 TIP 433842 16848 6022128 2024-02-21 15:12:24.235 2024-02-21 15:12:24.235 1000 FEE 433852 21339 6022135 2024-02-21 15:12:54.745 2024-02-21 15:12:54.745 4000 FEE 433730 10102 6022136 2024-02-21 15:12:54.745 2024-02-21 15:12:54.745 36000 TIP 433730 2013 6022170 2024-02-21 15:19:05.332 2024-02-21 15:19:05.332 0 FEE 433858 21047 6022190 2024-02-21 15:20:50.994 2024-02-21 15:20:50.994 100 FEE 433499 17494 6022191 2024-02-21 15:20:50.994 2024-02-21 15:20:50.994 900 TIP 433499 11165 6022192 2024-02-21 15:20:51.473 2024-02-21 15:20:51.473 100 FEE 433499 7899 6022193 2024-02-21 15:20:51.473 2024-02-21 15:20:51.473 900 TIP 433499 21172 6022211 2024-02-21 15:21:04.824 2024-02-21 15:21:04.824 100 FEE 433830 1836 6022212 2024-02-21 15:21:04.824 2024-02-21 15:21:04.824 900 TIP 433830 21083 6022215 2024-02-21 15:22:55.756 2024-02-21 15:22:55.756 100000 FEE 433862 1180 6022234 2024-02-21 15:27:24.621 2024-02-21 15:27:24.621 1000 FEE 433866 10668 6022291 2024-02-21 15:37:47.526 2024-02-21 15:37:47.526 2100 FEE 433730 19463 6022292 2024-02-21 15:37:47.526 2024-02-21 15:37:47.526 18900 TIP 433730 21178 6022293 2024-02-21 15:37:54.942 2024-02-21 15:37:54.942 2100 FEE 433591 18378 6022294 2024-02-21 15:37:54.942 2024-02-21 15:37:54.942 18900 TIP 433591 16284 6022302 2024-02-21 15:40:36.583 2024-02-21 15:40:36.583 1000 FEE 433876 2508 6022367 2024-02-21 15:47:27.089 2024-02-21 15:47:27.089 1100 FEE 433688 6149 6022368 2024-02-21 15:47:27.089 2024-02-21 15:47:27.089 9900 TIP 433688 1291 6022373 2024-02-21 15:47:28.501 2024-02-21 15:47:28.501 2100 FEE 433730 20254 6022374 2024-02-21 15:47:28.501 2024-02-21 15:47:28.501 18900 TIP 433730 18557 6022379 2024-02-21 15:47:29.21 2024-02-21 15:47:29.21 1100 FEE 433833 19909 6022380 2024-02-21 15:47:29.21 2024-02-21 15:47:29.21 9900 TIP 433833 18219 6022385 2024-02-21 15:47:32.176 2024-02-21 15:47:32.176 1000 FEE 433806 9275 6022386 2024-02-21 15:47:32.176 2024-02-21 15:47:32.176 9000 TIP 433806 19907 6022393 2024-02-21 15:47:33.236 2024-02-21 15:47:33.236 1000 FEE 433806 4459 6022394 2024-02-21 15:47:33.236 2024-02-21 15:47:33.236 9000 TIP 433806 18877 6022424 2024-02-21 16:00:06.243 2024-02-21 16:00:06.243 0 FEE 433888 9363 6022426 2024-02-21 16:00:36.02 2024-02-21 16:00:36.02 1000 FEE 433893 4624 6022428 2024-02-21 16:01:42.814 2024-02-21 16:01:42.814 0 FEE 433888 794 6022436 2024-02-21 16:02:37.614 2024-02-21 16:02:37.614 1000 FEE 433896 20647 6022437 2024-02-21 16:03:03.192 2024-02-21 16:03:03.192 1000 FEE 433897 17891 6022475 2024-02-21 16:07:24.82 2024-02-21 16:07:24.82 10000 FEE 433900 9169 6022482 2024-02-21 16:07:53.844 2024-02-21 16:07:53.844 2100 FEE 433721 2735 6022483 2024-02-21 16:07:53.844 2024-02-21 16:07:53.844 18900 TIP 433721 15159 6022491 2024-02-21 16:09:43.904 2024-02-21 16:09:43.904 10000 FEE 433903 21344 6021389 2024-02-21 14:02:08.106 2024-02-21 14:02:08.106 2100 FEE 433720 4238 6021390 2024-02-21 14:02:08.106 2024-02-21 14:02:08.106 18900 TIP 433720 18068 6021393 2024-02-21 14:02:26.798 2024-02-21 14:02:26.798 2100 FEE 433457 12289 6021394 2024-02-21 14:02:26.798 2024-02-21 14:02:26.798 18900 TIP 433457 21591 6021414 2024-02-21 14:05:52.772 2024-02-21 14:05:52.772 0 FEE 433780 6741 6021422 2024-02-21 14:06:23.242 2024-02-21 14:06:23.242 10000 FEE 433785 19142 6021435 2024-02-21 14:06:26.129 2024-02-21 14:06:26.129 2300 FEE 433688 19852 6021436 2024-02-21 14:06:26.129 2024-02-21 14:06:26.129 20700 TIP 433688 20781 6021485 2024-02-21 14:06:32.464 2024-02-21 14:06:32.464 2300 FEE 433688 956 6021486 2024-02-21 14:06:32.464 2024-02-21 14:06:32.464 20700 TIP 433688 3304 6021515 2024-02-21 14:06:35.808 2024-02-21 14:06:35.808 2300 FEE 433688 19132 6021516 2024-02-21 14:06:35.808 2024-02-21 14:06:35.808 20700 TIP 433688 959 6021549 2024-02-21 14:06:40.876 2024-02-21 14:06:40.876 0 FEE 433780 19810 6021550 2024-02-21 14:06:41.151 2024-02-21 14:06:41.151 2300 FEE 433499 19637 6021551 2024-02-21 14:06:41.151 2024-02-21 14:06:41.151 20700 TIP 433499 12965 6021589 2024-02-21 14:09:06.79 2024-02-21 14:09:06.79 2100 FEE 433555 14037 6021590 2024-02-21 14:09:06.79 2024-02-21 14:09:06.79 18900 TIP 433555 4102 6021625 2024-02-21 14:13:01.197 2024-02-21 14:13:01.197 1000 FEE 433794 15488 6021656 2024-02-21 14:19:21.911 2024-02-21 14:19:21.911 10000 FEE 433802 11275 6021675 2024-02-21 14:22:13.846 2024-02-21 14:22:13.846 100 FEE 433133 18178 6021676 2024-02-21 14:22:13.846 2024-02-21 14:22:13.846 900 TIP 433133 661 6021691 2024-02-21 14:23:25.271 2024-02-21 14:23:25.271 12800 FEE 433800 20554 6021692 2024-02-21 14:23:25.271 2024-02-21 14:23:25.271 115200 TIP 433800 780 6021695 2024-02-21 14:23:56.107 2024-02-21 14:23:56.107 1000 FEE 433810 1046 6021699 2024-02-21 14:24:12.222 2024-02-21 14:24:12.222 4200 FEE 433782 11164 6021700 2024-02-21 14:24:12.222 2024-02-21 14:24:12.222 37800 TIP 433782 12819 6021711 2024-02-21 14:26:40.898 2024-02-21 14:26:40.898 300 FEE 433806 17713 6021712 2024-02-21 14:26:40.898 2024-02-21 14:26:40.898 2700 TIP 433806 13133 6021717 2024-02-21 14:26:41.42 2024-02-21 14:26:41.42 300 FEE 433806 18243 6021718 2024-02-21 14:26:41.42 2024-02-21 14:26:41.42 2700 TIP 433806 1136 6021719 2024-02-21 14:26:41.631 2024-02-21 14:26:41.631 300 FEE 433806 15337 6021720 2024-02-21 14:26:41.631 2024-02-21 14:26:41.631 2700 TIP 433806 1624 6021728 2024-02-21 14:27:38.723 2024-02-21 14:27:38.723 8300 FEE 433333 14357 6021729 2024-02-21 14:27:38.723 2024-02-21 14:27:38.723 74700 TIP 433333 6229 6021739 2024-02-21 14:29:29.264 2024-02-21 14:29:29.264 10000 FEE 433817 21051 6021744 2024-02-21 14:30:29.663 2024-02-21 14:30:29.663 3300 FEE 433815 1712 6021745 2024-02-21 14:30:29.663 2024-02-21 14:30:29.663 29700 TIP 433815 19263 6021753 2024-02-21 14:32:01.404 2024-02-21 14:32:01.404 100 FEE 433591 1180 6021754 2024-02-21 14:32:01.404 2024-02-21 14:32:01.404 900 TIP 433591 15521 6021756 2024-02-21 14:32:25.063 2024-02-21 14:32:25.063 1000 FEE 433819 15196 6021758 2024-02-21 14:33:08.632 2024-02-21 14:33:08.632 1100 FEE 433745 19815 6021759 2024-02-21 14:33:08.632 2024-02-21 14:33:08.632 9900 TIP 433745 18714 6021800 2024-02-21 14:38:40.148 2024-02-21 14:38:40.148 1000 FEE 433827 17237 6021828 2024-02-21 14:45:25.605 2024-02-21 14:45:25.605 1100 FEE 433824 12946 6021829 2024-02-21 14:45:25.605 2024-02-21 14:45:25.605 9900 TIP 433824 1738 6021836 2024-02-21 14:45:35.677 2024-02-21 14:45:35.677 700 FEE 432957 21166 6021837 2024-02-21 14:45:35.677 2024-02-21 14:45:35.677 6300 TIP 432957 8998 6021869 2024-02-21 14:49:31.676 2024-02-21 14:49:31.676 1000 FEE 433835 15045 6021890 2024-02-21 14:49:59.155 2024-02-21 14:49:59.155 1000 FEE 433833 16660 6021891 2024-02-21 14:49:59.155 2024-02-21 14:49:59.155 9000 TIP 433833 21573 6021916 2024-02-21 14:50:18.649 2024-02-21 14:50:18.649 1000 FEE 433837 17095 6021924 2024-02-21 14:51:20.025 2024-02-21 14:51:20.025 900 FEE 433740 20660 6021925 2024-02-21 14:51:20.025 2024-02-21 14:51:20.025 8100 TIP 433740 3360 6022019 2024-02-21 15:01:50.708 2024-02-21 15:01:50.708 0 FEE 433842 14906 6022025 2024-02-21 15:02:24.466 2024-02-21 15:02:24.466 1000 FEE 433843 675 6022028 2024-02-21 15:02:55.202 2024-02-21 15:02:55.202 2100 FEE 433721 20597 6022029 2024-02-21 15:02:55.202 2024-02-21 15:02:55.202 18900 TIP 433721 15159 6022036 2024-02-21 15:02:56.384 2024-02-21 15:02:56.384 2700 FEE 433677 6202 6022037 2024-02-21 15:02:56.384 2024-02-21 15:02:56.384 24300 TIP 433677 16059 6022048 2024-02-21 15:02:58.934 2024-02-21 15:02:58.934 2700 FEE 433677 15858 6022049 2024-02-21 15:02:58.934 2024-02-21 15:02:58.934 24300 TIP 433677 18830 6022054 2024-02-21 15:02:59.531 2024-02-21 15:02:59.531 2700 FEE 433677 1319 6022055 2024-02-21 15:02:59.531 2024-02-21 15:02:59.531 24300 TIP 433677 20614 6022062 2024-02-21 15:03:30.632 2024-02-21 15:03:30.632 900 FEE 433730 19501 6022063 2024-02-21 15:03:30.632 2024-02-21 15:03:30.632 8100 TIP 433730 20430 6022069 2024-02-21 15:03:33.951 2024-02-21 15:03:33.951 9000 FEE 433833 10554 6022070 2024-02-21 15:03:33.951 2024-02-21 15:03:33.951 81000 TIP 433833 20713 6022090 2024-02-21 15:07:06.051 2024-02-21 15:07:06.051 12100 FEE 433846 20776 6022091 2024-02-21 15:07:06.051 2024-02-21 15:07:06.051 108900 TIP 433846 21498 6022127 2024-02-21 15:12:18.522 2024-02-21 15:12:18.522 1000 FEE 433851 12768 6022146 2024-02-21 15:14:14.972 2024-02-21 15:14:14.972 2100 FEE 433844 20243 6022147 2024-02-21 15:14:14.972 2024-02-21 15:14:14.972 18900 TIP 433844 657 6022152 2024-02-21 15:16:47.768 2024-02-21 15:16:47.768 11000 FEE 433856 11423 6022184 2024-02-21 15:20:11.181 2024-02-21 15:20:11.181 90000 FEE 433828 16432 6022185 2024-02-21 15:20:11.181 2024-02-21 15:20:11.181 810000 TIP 433828 11240 6022207 2024-02-21 15:21:03.727 2024-02-21 15:21:03.727 100 FEE 433830 14074 6022208 2024-02-21 15:21:03.727 2024-02-21 15:21:03.727 900 TIP 433830 20264 6022209 2024-02-21 15:21:04.4 2024-02-21 15:21:04.4 100 FEE 433830 2609 6022210 2024-02-21 15:21:04.4 2024-02-21 15:21:04.4 900 TIP 433830 963 6022216 2024-02-21 15:23:00.23 2024-02-21 15:23:00.23 1000 FEE 433863 18896 6022222 2024-02-21 15:23:39.48 2024-02-21 15:23:39.48 100 FEE 433833 21349 6022223 2024-02-21 15:23:39.48 2024-02-21 15:23:39.48 900 TIP 433833 18526 6022233 2024-02-21 15:27:06.68 2024-02-21 15:27:06.68 10000 FEE 433865 15103 6022315 2024-02-21 15:45:18.123 2024-02-21 15:45:18.123 400 FEE 433740 21424 6022316 2024-02-21 15:45:18.123 2024-02-21 15:45:18.123 3600 TIP 433740 20073 6022323 2024-02-21 15:45:40.477 2024-02-21 15:45:40.477 100 FEE 433849 673 6022324 2024-02-21 15:45:40.477 2024-02-21 15:45:40.477 900 TIP 433849 18311 6022330 2024-02-21 15:46:04.559 2024-02-21 15:46:04.559 1000 FEE 433880 6003 6022336 2024-02-21 15:47:01.014 2024-02-21 15:47:01.014 1100 FEE 433740 21164 6022337 2024-02-21 15:47:01.014 2024-02-21 15:47:01.014 9900 TIP 433740 15409 6022535 2024-02-21 16:17:16.605 2024-02-21 16:17:16.605 100 FEE 431098 21457 6022536 2024-02-21 16:17:16.605 2024-02-21 16:17:16.605 900 TIP 431098 15978 6022578 2024-02-21 16:25:13.881 2024-02-21 16:25:13.881 4200 FEE 433677 736 6022579 2024-02-21 16:25:13.881 2024-02-21 16:25:13.881 37800 TIP 433677 13365 6022584 2024-02-21 16:25:16.636 2024-02-21 16:25:16.636 4200 FEE 433677 9367 6022585 2024-02-21 16:25:16.636 2024-02-21 16:25:16.636 37800 TIP 433677 19961 6022612 2024-02-21 16:26:45.897 2024-02-21 16:26:45.897 1000 FEE 433410 15806 6022613 2024-02-21 16:26:45.897 2024-02-21 16:26:45.897 9000 TIP 433410 20577 6022635 2024-02-21 16:28:02.116 2024-02-21 16:28:02.116 1000 FEE 433929 19839 6022639 2024-02-21 16:28:23.618 2024-02-21 16:28:23.618 2100 FEE 433364 19888 6022640 2024-02-21 16:28:23.618 2024-02-21 16:28:23.618 18900 TIP 433364 981 6022650 2024-02-21 16:29:12.355 2024-02-21 16:29:12.355 2100 FEE 433721 4692 6022651 2024-02-21 16:29:12.355 2024-02-21 16:29:12.355 18900 TIP 433721 632 6022684 2024-02-21 16:30:56.362 2024-02-21 16:30:56.362 2100 FEE 433847 631 6022685 2024-02-21 16:30:56.362 2024-02-21 16:30:56.362 18900 TIP 433847 19138 6022724 2024-02-21 16:32:21.543 2024-02-21 16:32:21.543 2100 FEE 433680 19151 6022725 2024-02-21 16:32:21.543 2024-02-21 16:32:21.543 18900 TIP 433680 9159 6021391 2024-02-21 14:02:26.576 2024-02-21 14:02:26.576 2100 FEE 433457 2232 6021392 2024-02-21 14:02:26.576 2024-02-21 14:02:26.576 18900 TIP 433457 2724 6021429 2024-02-21 14:06:25.499 2024-02-21 14:06:25.499 2300 FEE 433688 7986 6021430 2024-02-21 14:06:25.499 2024-02-21 14:06:25.499 20700 TIP 433688 20026 6021483 2024-02-21 14:06:32.265 2024-02-21 14:06:32.265 2300 FEE 433688 20599 6021484 2024-02-21 14:06:32.265 2024-02-21 14:06:32.265 20700 TIP 433688 19044 6021491 2024-02-21 14:06:33.051 2024-02-21 14:06:33.051 2300 FEE 433688 17157 6021492 2024-02-21 14:06:33.051 2024-02-21 14:06:33.051 20700 TIP 433688 19309 6021511 2024-02-21 14:06:35.385 2024-02-21 14:06:35.385 4600 FEE 433688 18830 6021512 2024-02-21 14:06:35.385 2024-02-21 14:06:35.385 41400 TIP 433688 12911 6021519 2024-02-21 14:06:36.051 2024-02-21 14:06:36.051 2300 FEE 433688 8326 6021520 2024-02-21 14:06:36.051 2024-02-21 14:06:36.051 20700 TIP 433688 21274 6021525 2024-02-21 14:06:36.575 2024-02-21 14:06:36.575 2300 FEE 433688 10484 6021526 2024-02-21 14:06:36.575 2024-02-21 14:06:36.575 20700 TIP 433688 18658 6021554 2024-02-21 14:06:41.444 2024-02-21 14:06:41.444 2300 FEE 433499 18016 6021555 2024-02-21 14:06:41.444 2024-02-21 14:06:41.444 20700 TIP 433499 9809 6021564 2024-02-21 14:06:42.341 2024-02-21 14:06:42.341 2300 FEE 433499 21532 6021565 2024-02-21 14:06:42.341 2024-02-21 14:06:42.341 20700 TIP 433499 18556 6021568 2024-02-21 14:06:42.941 2024-02-21 14:06:42.941 2300 FEE 433499 20781 6021569 2024-02-21 14:06:42.941 2024-02-21 14:06:42.941 20700 TIP 433499 21575 6021576 2024-02-21 14:06:44.211 2024-02-21 14:06:44.211 2300 FEE 433499 1471 6021577 2024-02-21 14:06:44.211 2024-02-21 14:06:44.211 20700 TIP 433499 18667 6021580 2024-02-21 14:07:03.433 2024-02-21 14:07:03.433 100000 FEE 433786 7583 6021606 2024-02-21 14:11:17.626 2024-02-21 14:11:17.626 2100 FEE 433591 13921 6021607 2024-02-21 14:11:17.626 2024-02-21 14:11:17.626 18900 TIP 433591 826 6021611 2024-02-21 14:11:33.523 2024-02-21 14:11:33.523 2100 FEE 433554 17827 6021612 2024-02-21 14:11:33.523 2024-02-21 14:11:33.523 18900 TIP 433554 736 6021621 2024-02-21 14:12:30.339 2024-02-21 14:12:30.339 2100 FEE 433646 1195 6021622 2024-02-21 14:12:30.339 2024-02-21 14:12:30.339 18900 TIP 433646 20479 6021637 2024-02-21 14:14:39.906 2024-02-21 14:14:39.906 2100 FEE 433589 6393 6021638 2024-02-21 14:14:39.906 2024-02-21 14:14:39.906 18900 TIP 433589 1389 6021640 2024-02-21 14:15:04.165 2024-02-21 14:15:04.165 7000 FEE 433796 15890 6021655 2024-02-21 14:19:20.762 2024-02-21 14:19:20.762 1000 FEE 433801 9669 6021661 2024-02-21 14:20:18.874 2024-02-21 14:20:18.874 0 FEE 433793 15978 6021680 2024-02-21 14:22:21.639 2024-02-21 14:22:21.639 100 FEE 433216 2431 6021681 2024-02-21 14:22:21.639 2024-02-21 14:22:21.639 900 TIP 433216 756 6021684 2024-02-21 14:22:22.111 2024-02-21 14:22:22.111 100 FEE 433028 5701 6021685 2024-02-21 14:22:22.111 2024-02-21 14:22:22.111 900 TIP 433028 18359 6021688 2024-02-21 14:23:13.054 2024-02-21 14:23:13.054 4200 FEE 433555 4238 6021689 2024-02-21 14:23:13.054 2024-02-21 14:23:13.054 37800 TIP 433555 19329 6021762 2024-02-21 14:33:35.823 2024-02-21 14:33:35.823 1000 FEE 433820 10490 6021773 2024-02-21 14:35:38.356 2024-02-21 14:35:38.356 1000 FEE 433823 2460 6021778 2024-02-21 14:36:35.559 2024-02-21 14:36:35.559 2100 FEE 433807 959 6021779 2024-02-21 14:36:35.559 2024-02-21 14:36:35.559 18900 TIP 433807 9921 6021786 2024-02-21 14:37:29.032 2024-02-21 14:37:29.032 2700 FEE 433342 20129 6021787 2024-02-21 14:37:29.032 2024-02-21 14:37:29.032 24300 TIP 433342 2156 6021796 2024-02-21 14:37:38.447 2024-02-21 14:37:38.447 1000 FEE 433826 4225 6021797 2024-02-21 14:37:41.322 2024-02-21 14:37:41.322 2100 FEE 433806 646 6021798 2024-02-21 14:37:41.322 2024-02-21 14:37:41.322 18900 TIP 433806 20495 6021823 2024-02-21 14:45:02.117 2024-02-21 14:45:02.117 2100 FEE 433688 19815 6021824 2024-02-21 14:45:02.117 2024-02-21 14:45:02.117 18900 TIP 433688 20180 6021866 2024-02-21 14:48:52.9 2024-02-21 14:48:52.9 1000000 FEE 433833 9985 6021880 2024-02-21 14:49:57.494 2024-02-21 14:49:57.494 1000 FEE 433833 10944 6021881 2024-02-21 14:49:57.494 2024-02-21 14:49:57.494 9000 TIP 433833 690 6021896 2024-02-21 14:50:00.151 2024-02-21 14:50:00.151 1000 FEE 433833 14195 6021897 2024-02-21 14:50:00.151 2024-02-21 14:50:00.151 9000 TIP 433833 20586 6021909 2024-02-21 14:50:06.963 2024-02-21 14:50:06.963 1000 FEE 433836 5759 6021914 2024-02-21 14:50:17.931 2024-02-21 14:50:17.931 9000 FEE 433721 21389 6021915 2024-02-21 14:50:17.931 2024-02-21 14:50:17.931 81000 TIP 433721 10060 6021944 2024-02-21 14:55:23.66 2024-02-21 14:55:23.66 3400 FEE 433679 1038 6021945 2024-02-21 14:55:23.66 2024-02-21 14:55:23.66 30600 TIP 433679 692 6021950 2024-02-21 14:55:55.989 2024-02-21 14:55:55.989 1000 FEE 433840 14295 6021959 2024-02-21 14:57:16.201 2024-02-21 14:57:16.201 3400 FEE 433780 2609 6021960 2024-02-21 14:57:16.201 2024-02-21 14:57:16.201 30600 TIP 433780 9 6021963 2024-02-21 14:57:49.704 2024-02-21 14:57:49.704 2100 FEE 433554 20577 6021964 2024-02-21 14:57:49.704 2024-02-21 14:57:49.704 18900 TIP 433554 16638 6021994 2024-02-21 14:58:44.402 2024-02-21 14:58:44.402 1000 FEE 433841 20897 6021998 2024-02-21 14:59:32.496 2024-02-21 14:59:32.496 4200 FEE 433499 21072 6021999 2024-02-21 14:59:32.496 2024-02-21 14:59:32.496 37800 TIP 433499 3417 6022013 2024-02-21 15:01:48.521 2024-02-21 15:01:48.521 1000 FEE 433589 976 6022014 2024-02-21 15:01:48.521 2024-02-21 15:01:48.521 9000 TIP 433589 2674 6022021 2024-02-21 15:02:22.815 2024-02-21 15:02:22.815 100 FEE 433238 2844 6022022 2024-02-21 15:02:22.815 2024-02-21 15:02:22.815 900 TIP 433238 20613 6022040 2024-02-21 15:02:58.211 2024-02-21 15:02:58.211 2700 FEE 433677 1291 6022041 2024-02-21 15:02:58.211 2024-02-21 15:02:58.211 24300 TIP 433677 15119 6022046 2024-02-21 15:02:58.766 2024-02-21 15:02:58.766 2700 FEE 433677 12606 6022047 2024-02-21 15:02:58.766 2024-02-21 15:02:58.766 24300 TIP 433677 18188 6022064 2024-02-21 15:03:31.695 2024-02-21 15:03:31.695 100000 FEE 433845 2431 6022071 2024-02-21 15:03:34.51 2024-02-21 15:03:34.51 90000 FEE 433833 17237 6022072 2024-02-21 15:03:34.51 2024-02-21 15:03:34.51 810000 TIP 433833 17714 6022103 2024-02-21 15:08:40.071 2024-02-21 15:08:40.071 3400 FEE 433217 831 6022104 2024-02-21 15:08:40.071 2024-02-21 15:08:40.071 30600 TIP 433217 1175 6022120 2024-02-21 15:10:46.653 2024-02-21 15:10:46.653 3400 FEE 433730 20218 6022121 2024-02-21 15:10:46.653 2024-02-21 15:10:46.653 30600 TIP 433730 19813 6022130 2024-02-21 15:12:32.363 2024-02-21 15:12:32.363 1000 FEE 433854 10342 6022138 2024-02-21 15:13:14.617 2024-02-21 15:13:14.617 100 FEE 433828 2022 6022139 2024-02-21 15:13:14.617 2024-02-21 15:13:14.617 900 TIP 433828 13927 6022171 2024-02-21 15:19:06.349 2024-02-21 15:19:06.349 700 FEE 433856 12483 6022172 2024-02-21 15:19:06.349 2024-02-21 15:19:06.349 6300 TIP 433856 822 6022188 2024-02-21 15:20:50.684 2024-02-21 15:20:50.684 100 FEE 433499 20799 6022189 2024-02-21 15:20:50.684 2024-02-21 15:20:50.684 900 TIP 433499 8648 6022203 2024-02-21 15:21:03.341 2024-02-21 15:21:03.341 100 FEE 433830 20182 6022204 2024-02-21 15:21:03.341 2024-02-21 15:21:03.341 900 TIP 433830 19759 6022214 2024-02-21 15:22:51.994 2024-02-21 15:22:51.994 1000 FEE 433861 20624 6022224 2024-02-21 15:23:39.975 2024-02-21 15:23:39.975 100 FEE 433833 18040 6022225 2024-02-21 15:23:39.975 2024-02-21 15:23:39.975 900 TIP 433833 21412 6022237 2024-02-21 15:27:47.288 2024-02-21 15:27:47.288 1000 FEE 433203 21514 6022238 2024-02-21 15:27:47.288 2024-02-21 15:27:47.288 9000 TIP 433203 20691 6022244 2024-02-21 15:29:39.761 2024-02-21 15:29:39.761 300 FEE 433865 2703 6022245 2024-02-21 15:29:39.761 2024-02-21 15:29:39.761 2700 TIP 433865 2077 6022249 2024-02-21 15:30:59.572 2024-02-21 15:30:59.572 0 FEE 433868 20340 6022263 2024-02-21 15:32:51.622 2024-02-21 15:32:51.622 7100 FEE 433747 19417 6022264 2024-02-21 15:32:51.622 2024-02-21 15:32:51.622 63900 TIP 433747 1429 6022296 2024-02-21 15:38:59.34 2024-02-21 15:38:59.34 2100 FEE 433468 14552 6022297 2024-02-21 15:38:59.34 2024-02-21 15:38:59.34 18900 TIP 433468 18016 6022298 2024-02-21 15:39:02.81 2024-02-21 15:39:02.81 4000 FEE 433850 6533 6022299 2024-02-21 15:39:02.81 2024-02-21 15:39:02.81 36000 TIP 433850 20858 6021494 2024-02-21 14:06:33.42 2024-02-21 14:06:33.42 20700 TIP 433688 20376 6021497 2024-02-21 14:06:33.814 2024-02-21 14:06:33.814 2300 FEE 433688 1261 6021498 2024-02-21 14:06:33.814 2024-02-21 14:06:33.814 20700 TIP 433688 20023 6021499 2024-02-21 14:06:34.016 2024-02-21 14:06:34.016 2300 FEE 433688 17797 6021500 2024-02-21 14:06:34.016 2024-02-21 14:06:34.016 20700 TIP 433688 11956 6021513 2024-02-21 14:06:35.569 2024-02-21 14:06:35.569 2300 FEE 433688 18529 6021514 2024-02-21 14:06:35.569 2024-02-21 14:06:35.569 20700 TIP 433688 7891 6021539 2024-02-21 14:06:38.548 2024-02-21 14:06:38.548 2300 FEE 433688 20817 6021540 2024-02-21 14:06:38.548 2024-02-21 14:06:38.548 20700 TIP 433688 11018 6021547 2024-02-21 14:06:39.633 2024-02-21 14:06:39.633 2300 FEE 433688 14015 6021548 2024-02-21 14:06:39.633 2024-02-21 14:06:39.633 20700 TIP 433688 21194 6021556 2024-02-21 14:06:41.677 2024-02-21 14:06:41.677 2300 FEE 433499 1198 6021557 2024-02-21 14:06:41.677 2024-02-21 14:06:41.677 20700 TIP 433499 17014 6021578 2024-02-21 14:06:44.301 2024-02-21 14:06:44.301 4600 FEE 433499 19018 6021579 2024-02-21 14:06:44.301 2024-02-21 14:06:44.301 41400 TIP 433499 1713 6021608 2024-02-21 14:11:23.695 2024-02-21 14:11:23.695 2100 FEE 433677 9347 6021609 2024-02-21 14:11:23.695 2024-02-21 14:11:23.695 18900 TIP 433677 9809 6021618 2024-02-21 14:12:06.12 2024-02-21 14:12:06.12 1000 FEE 433793 19449 6021642 2024-02-21 14:15:30.659 2024-02-21 14:15:30.659 2100 FEE 433677 18472 6021643 2024-02-21 14:15:30.659 2024-02-21 14:15:30.659 18900 TIP 433677 8916 6021658 2024-02-21 14:20:11.817 2024-02-21 14:20:11.817 0 FEE 433793 18784 6021662 2024-02-21 14:20:21.636 2024-02-21 14:20:21.636 100 FEE 432920 20306 6021663 2024-02-21 14:20:21.636 2024-02-21 14:20:21.636 900 TIP 432920 14651 6021664 2024-02-21 14:21:00.417 2024-02-21 14:21:00.417 100000 FEE 433803 827 6021666 2024-02-21 14:21:09.706 2024-02-21 14:21:09.706 100 FEE 433255 19263 6021667 2024-02-21 14:21:09.706 2024-02-21 14:21:09.706 900 TIP 433255 21527 6021671 2024-02-21 14:21:55.719 2024-02-21 14:21:55.719 100000 FEE 433806 5538 6021678 2024-02-21 14:22:21.451 2024-02-21 14:22:21.451 3100 FEE 433760 20613 6021679 2024-02-21 14:22:21.451 2024-02-21 14:22:21.451 27900 TIP 433760 2329 6021682 2024-02-21 14:22:22.04 2024-02-21 14:22:22.04 27900 FEE 433760 13927 6021683 2024-02-21 14:22:22.04 2024-02-21 14:22:22.04 251100 TIP 433760 21493 6021690 2024-02-21 14:23:15.054 2024-02-21 14:23:15.054 1000 FEE 433809 1046 6021696 2024-02-21 14:24:03.014 2024-02-21 14:24:03.014 1000 STREAM 141924 7998 6021702 2024-02-21 14:24:51.042 2024-02-21 14:24:51.042 500 FEE 433797 649 6021703 2024-02-21 14:24:51.042 2024-02-21 14:24:51.042 4500 TIP 433797 20187 6021704 2024-02-21 14:25:02.999 2024-02-21 14:25:02.999 1000 STREAM 141924 21389 6021707 2024-02-21 14:25:09.589 2024-02-21 14:25:09.589 1000 FEE 433812 762 6021708 2024-02-21 14:26:02.993 2024-02-21 14:26:02.993 1000 STREAM 141924 1745 6021709 2024-02-21 14:26:24.022 2024-02-21 14:26:24.022 1000 FEE 433813 15196 6021710 2024-02-21 14:26:30.541 2024-02-21 14:26:30.541 0 FEE 433812 17800 6021713 2024-02-21 14:26:41.08 2024-02-21 14:26:41.08 300 FEE 433806 1836 6021714 2024-02-21 14:26:41.08 2024-02-21 14:26:41.08 2700 TIP 433806 19842 6021721 2024-02-21 14:26:41.831 2024-02-21 14:26:41.831 300 FEE 433806 974 6021722 2024-02-21 14:26:41.831 2024-02-21 14:26:41.831 2700 TIP 433806 2022 6021726 2024-02-21 14:26:58.815 2024-02-21 14:26:58.815 1000 FEE 433814 15161 6021727 2024-02-21 14:27:02.973 2024-02-21 14:27:02.973 1000 STREAM 141924 20481 6021733 2024-02-21 14:28:02.993 2024-02-21 14:28:02.993 1000 STREAM 141924 2367 6021734 2024-02-21 14:28:11.147 2024-02-21 14:28:11.147 0 FEE 433812 4225 6021736 2024-02-21 14:28:26.547 2024-02-21 14:28:26.547 7000 FEE 433816 979 6021737 2024-02-21 14:28:49.32 2024-02-21 14:28:49.32 0 FEE 433816 18581 6021738 2024-02-21 14:29:03.02 2024-02-21 14:29:03.02 1000 STREAM 141924 20892 6021740 2024-02-21 14:29:38.454 2024-02-21 14:29:38.454 0 FEE 433817 4115 6021743 2024-02-21 14:30:03.047 2024-02-21 14:30:03.047 1000 STREAM 141924 18731 6021746 2024-02-21 14:31:03.039 2024-02-21 14:31:03.039 1000 STREAM 141924 8729 6021747 2024-02-21 14:32:00.972 2024-02-21 14:32:00.972 100 FEE 433591 21527 6021748 2024-02-21 14:32:00.972 2024-02-21 14:32:00.972 900 TIP 433591 15890 6021751 2024-02-21 14:32:01.332 2024-02-21 14:32:01.332 100 FEE 433591 1803 6021752 2024-02-21 14:32:01.332 2024-02-21 14:32:01.332 900 TIP 433591 5128 6021755 2024-02-21 14:32:03.055 2024-02-21 14:32:03.055 1000 STREAM 141924 18453 6021757 2024-02-21 14:33:03.046 2024-02-21 14:33:03.046 1000 STREAM 141924 27 6021764 2024-02-21 14:34:03.003 2024-02-21 14:34:03.003 1000 STREAM 141924 5036 6021766 2024-02-21 14:34:43.077 2024-02-21 14:34:43.077 0 FEE 433822 21061 6021767 2024-02-21 14:35:03.011 2024-02-21 14:35:03.011 1000 STREAM 141924 20287 6021776 2024-02-21 14:36:03.066 2024-02-21 14:36:03.066 1000 STREAM 141924 18539 6021777 2024-02-21 14:36:31.495 2024-02-21 14:36:31.495 1000 FEE 433824 18637 6021781 2024-02-21 14:37:03.101 2024-02-21 14:37:03.101 1000 STREAM 141924 699 6021784 2024-02-21 14:37:28.842 2024-02-21 14:37:28.842 2700 FEE 433342 14080 6021785 2024-02-21 14:37:28.842 2024-02-21 14:37:28.842 24300 TIP 433342 18690 6021788 2024-02-21 14:37:29.214 2024-02-21 14:37:29.214 2700 FEE 433342 14959 6021789 2024-02-21 14:37:29.214 2024-02-21 14:37:29.214 24300 TIP 433342 1519 6021792 2024-02-21 14:37:29.593 2024-02-21 14:37:29.593 2700 FEE 433342 5377 6021793 2024-02-21 14:37:29.593 2024-02-21 14:37:29.593 24300 TIP 433342 20143 6021799 2024-02-21 14:38:03.119 2024-02-21 14:38:03.119 1000 STREAM 141924 20776 6021801 2024-02-21 14:39:01.357 2024-02-21 14:39:01.357 10000 FEE 433828 17316 6021802 2024-02-21 14:39:03.134 2024-02-21 14:39:03.134 1000 STREAM 141924 20504 6021803 2024-02-21 14:40:03.159 2024-02-21 14:40:03.159 1000 STREAM 141924 2224 6021809 2024-02-21 14:41:03.153 2024-02-21 14:41:03.153 1000 STREAM 141924 21131 6021814 2024-02-21 14:42:03.167 2024-02-21 14:42:03.167 1000 STREAM 141924 20852 6021815 2024-02-21 14:42:11.675 2024-02-21 14:42:11.675 2100 FEE 433760 14906 6021816 2024-02-21 14:42:11.675 2024-02-21 14:42:11.675 18900 TIP 433760 2576 6021817 2024-02-21 14:43:03.172 2024-02-21 14:43:03.172 1000 STREAM 141924 20924 6021819 2024-02-21 14:44:03.183 2024-02-21 14:44:03.183 1000 STREAM 141924 795 6021825 2024-02-21 14:45:03.191 2024-02-21 14:45:03.191 1000 STREAM 141924 15180 6021832 2024-02-21 14:45:33.699 2024-02-21 14:45:33.699 700 FEE 432957 19193 6021833 2024-02-21 14:45:33.699 2024-02-21 14:45:33.699 6300 TIP 432957 21424 6021834 2024-02-21 14:45:34.993 2024-02-21 14:45:34.993 700 FEE 432957 12169 6021835 2024-02-21 14:45:34.993 2024-02-21 14:45:34.993 6300 TIP 432957 660 6021852 2024-02-21 14:46:03.194 2024-02-21 14:46:03.194 1000 STREAM 141924 997 6021854 2024-02-21 14:47:03.195 2024-02-21 14:47:03.195 1000 STREAM 141924 9982 6021859 2024-02-21 14:48:03.078 2024-02-21 14:48:03.078 1000 STREAM 141924 4388 6021864 2024-02-21 14:48:38.098 2024-02-21 14:48:38.098 3300 FEE 433371 19773 6021865 2024-02-21 14:48:38.098 2024-02-21 14:48:38.098 29700 TIP 433371 17042 6021867 2024-02-21 14:48:59.195 2024-02-21 14:48:59.195 10000 FEE 433834 18265 6021868 2024-02-21 14:49:03.06 2024-02-21 14:49:03.06 1000 STREAM 141924 2718 6021870 2024-02-21 14:49:36.704 2024-02-21 14:49:36.704 2100 FEE 433679 20642 6021871 2024-02-21 14:49:36.704 2024-02-21 14:49:36.704 18900 TIP 433679 16556 6021894 2024-02-21 14:49:59.8 2024-02-21 14:49:59.8 1000 FEE 433833 6765 6021895 2024-02-21 14:49:59.8 2024-02-21 14:49:59.8 9000 TIP 433833 19378 6021898 2024-02-21 14:50:00.446 2024-02-21 14:50:00.446 1000 FEE 433833 4958 6021899 2024-02-21 14:50:00.446 2024-02-21 14:50:00.446 9000 TIP 433833 19909 6021902 2024-02-21 14:50:01.085 2024-02-21 14:50:01.085 1000 FEE 433833 19664 6021903 2024-02-21 14:50:01.085 2024-02-21 14:50:01.085 9000 TIP 433833 10359 6021908 2024-02-21 14:50:03.088 2024-02-21 14:50:03.088 1000 STREAM 141924 17673 6021912 2024-02-21 14:50:17.405 2024-02-21 14:50:17.405 900 FEE 433721 12516 6021913 2024-02-21 14:50:17.405 2024-02-21 14:50:17.405 8100 TIP 433721 704 6021919 2024-02-21 14:50:49.304 2024-02-21 14:50:49.304 1000 FEE 433594 7766 6021920 2024-02-21 14:50:49.304 2024-02-21 14:50:49.304 9000 TIP 433594 5112 6021921 2024-02-21 14:51:03.085 2024-02-21 14:51:03.085 1000 STREAM 141924 18618 6021926 2024-02-21 14:52:03.086 2024-02-21 14:52:03.086 1000 STREAM 141924 15463 6021931 2024-02-21 14:53:03.101 2024-02-21 14:53:03.101 1000 STREAM 141924 18241 6021939 2024-02-21 14:55:03.119 2024-02-21 14:55:03.119 1000 STREAM 141924 18945 6021958 2024-02-21 14:57:03.139 2024-02-21 14:57:03.139 1000 STREAM 141924 954 6021996 2024-02-21 14:59:03.121 2024-02-21 14:59:03.121 1000 STREAM 141924 18956 6022075 2024-02-21 15:04:03.164 2024-02-21 15:04:03.164 1000 STREAM 141924 20424 6022079 2024-02-21 15:05:03.174 2024-02-21 15:05:03.174 1000 STREAM 141924 2711 6022113 2024-02-21 15:09:03.181 2024-02-21 15:09:03.181 1000 STREAM 141924 2749 6022124 2024-02-21 15:11:03.198 2024-02-21 15:11:03.198 1000 STREAM 141924 678 6022126 2024-02-21 15:12:03.197 2024-02-21 15:12:03.197 1000 STREAM 141924 11378 6022137 2024-02-21 15:13:03.233 2024-02-21 15:13:03.233 1000 STREAM 141924 19878 6022145 2024-02-21 15:14:03.206 2024-02-21 15:14:03.206 1000 STREAM 141924 16653 6022151 2024-02-21 15:16:03.23 2024-02-21 15:16:03.23 1000 STREAM 141924 17183 6022165 2024-02-21 15:18:03.253 2024-02-21 15:18:03.253 1000 STREAM 141924 21453 6022169 2024-02-21 15:19:03.255 2024-02-21 15:19:03.255 1000 STREAM 141924 19633 6022177 2024-02-21 15:20:03.295 2024-02-21 15:20:03.295 1000 STREAM 141924 12562 6022213 2024-02-21 15:22:03.283 2024-02-21 15:22:03.283 1000 STREAM 141924 19038 6022217 2024-02-21 15:23:03.304 2024-02-21 15:23:03.304 1000 STREAM 141924 8095 6022229 2024-02-21 15:25:03.303 2024-02-21 15:25:03.303 1000 STREAM 141924 2338 6022231 2024-02-21 15:26:03.314 2024-02-21 15:26:03.314 1000 STREAM 141924 17042 6022232 2024-02-21 15:27:03.328 2024-02-21 15:27:03.328 1000 STREAM 141924 13249 6022241 2024-02-21 15:29:03.339 2024-02-21 15:29:03.339 1000 STREAM 141924 11999 6022246 2024-02-21 15:30:03.363 2024-02-21 15:30:03.363 1000 STREAM 141924 17727 6022269 2024-02-21 15:33:03.357 2024-02-21 15:33:03.357 1000 STREAM 141924 10554 6022295 2024-02-21 15:38:03.361 2024-02-21 15:38:03.361 1000 STREAM 141924 19105 6022301 2024-02-21 15:40:03.403 2024-02-21 15:40:03.403 1000 STREAM 141924 16754 6022304 2024-02-21 15:42:03.4 2024-02-21 15:42:03.4 1000 STREAM 141924 8569 6022307 2024-02-21 15:43:03.422 2024-02-21 15:43:03.422 1000 STREAM 141924 7998 6022329 2024-02-21 15:46:03.415 2024-02-21 15:46:03.415 1000 STREAM 141924 18174 6022344 2024-02-21 15:47:03.474 2024-02-21 15:47:03.474 1000 STREAM 141924 16410 6022397 2024-02-21 15:48:03.443 2024-02-21 15:48:03.443 1000 STREAM 141924 21501 6022399 2024-02-21 15:49:03.434 2024-02-21 15:49:03.434 1000 STREAM 141924 1512 6022400 2024-02-21 15:50:03.452 2024-02-21 15:50:03.452 1000 STREAM 141924 5487 6022401 2024-02-21 15:51:03.451 2024-02-21 15:51:03.451 1000 STREAM 141924 21481 6022408 2024-02-21 15:53:03.463 2024-02-21 15:53:03.463 1000 STREAM 141924 18393 6022410 2024-02-21 15:54:03.456 2024-02-21 15:54:03.456 1000 STREAM 141924 19511 6022412 2024-02-21 15:56:03.489 2024-02-21 15:56:03.489 1000 STREAM 141924 19398 6022414 2024-02-21 15:57:03.512 2024-02-21 15:57:03.512 1000 STREAM 141924 9276 6022415 2024-02-21 15:58:03.479 2024-02-21 15:58:03.479 1000 STREAM 141924 1784 6022427 2024-02-21 16:01:03.51 2024-02-21 16:01:03.51 1000 STREAM 141924 12356 6021922 2024-02-21 14:51:19.819 2024-02-21 14:51:19.819 100 FEE 433740 669 6021923 2024-02-21 14:51:19.819 2024-02-21 14:51:19.819 900 TIP 433740 8289 6021974 2024-02-21 14:58:33.143 2024-02-21 14:58:33.143 100 FEE 433780 1472 6021975 2024-02-21 14:58:33.143 2024-02-21 14:58:33.143 900 TIP 433780 10056 6021986 2024-02-21 14:58:35.752 2024-02-21 14:58:35.752 100 FEE 433780 15577 6021987 2024-02-21 14:58:35.752 2024-02-21 14:58:35.752 900 TIP 433780 9364 6022009 2024-02-21 15:00:19.03 2024-02-21 15:00:19.03 1000 FEE 433593 7869 6022010 2024-02-21 15:00:19.03 2024-02-21 15:00:19.03 9000 TIP 433593 13782 6022044 2024-02-21 15:02:58.627 2024-02-21 15:02:58.627 2700 FEE 433677 9494 6022045 2024-02-21 15:02:58.627 2024-02-21 15:02:58.627 24300 TIP 433677 14663 6022058 2024-02-21 15:03:13.617 2024-02-21 15:03:13.617 90000 FEE 433302 7986 6022059 2024-02-21 15:03:13.617 2024-02-21 15:03:13.617 810000 TIP 433302 21386 6022067 2024-02-21 15:03:33.281 2024-02-21 15:03:33.281 900 FEE 433833 18816 6022068 2024-02-21 15:03:33.281 2024-02-21 15:03:33.281 8100 TIP 433833 18717 6022076 2024-02-21 15:04:20.709 2024-02-21 15:04:20.709 1600 FEE 433833 4084 6022077 2024-02-21 15:04:20.709 2024-02-21 15:04:20.709 14400 TIP 433833 1298 6022085 2024-02-21 15:06:58.024 2024-02-21 15:06:58.024 1000 FEE 433740 20841 6022086 2024-02-21 15:06:58.024 2024-02-21 15:06:58.024 9000 TIP 433740 16212 6022097 2024-02-21 15:07:54.39 2024-02-21 15:07:54.39 100 FEE 433833 14939 6022098 2024-02-21 15:07:54.39 2024-02-21 15:07:54.39 900 TIP 433833 1658 6022105 2024-02-21 15:08:47.782 2024-02-21 15:08:47.782 3400 FEE 433730 21044 6022106 2024-02-21 15:08:47.782 2024-02-21 15:08:47.782 30600 TIP 433730 1352 6022142 2024-02-21 15:13:15.326 2024-02-21 15:13:15.326 9000 FEE 433828 954 6022143 2024-02-21 15:13:15.326 2024-02-21 15:13:15.326 81000 TIP 433828 2196 6022144 2024-02-21 15:13:26.234 2024-02-21 15:13:26.234 1000 FEE 433855 1673 6022176 2024-02-21 15:19:45.913 2024-02-21 15:19:45.913 0 FEE 433858 9 6022196 2024-02-21 15:21:02.405 2024-02-21 15:21:02.405 100 FEE 433830 17797 6022197 2024-02-21 15:21:02.405 2024-02-21 15:21:02.405 900 TIP 433830 16176 6022218 2024-02-21 15:23:38.713 2024-02-21 15:23:38.713 100 FEE 433833 20495 6022219 2024-02-21 15:23:38.713 2024-02-21 15:23:38.713 900 TIP 433833 21556 6022247 2024-02-21 15:30:24.112 2024-02-21 15:30:24.112 300 FEE 433785 13798 6022248 2024-02-21 15:30:24.112 2024-02-21 15:30:24.112 2700 TIP 433785 19030 6022255 2024-02-21 15:32:39.673 2024-02-21 15:32:39.673 7100 FEE 433778 10283 6022256 2024-02-21 15:32:39.673 2024-02-21 15:32:39.673 63900 TIP 433778 11648 6022261 2024-02-21 15:32:50.306 2024-02-21 15:32:50.306 7100 FEE 433768 20080 6022262 2024-02-21 15:32:50.306 2024-02-21 15:32:50.306 63900 TIP 433768 21063 6022265 2024-02-21 15:32:55.137 2024-02-21 15:32:55.137 7100 FEE 433744 8284 6022266 2024-02-21 15:32:55.137 2024-02-21 15:32:55.137 63900 TIP 433744 946 6022274 2024-02-21 15:33:45.142 2024-02-21 15:33:45.142 7100 FEE 433634 3304 6022275 2024-02-21 15:33:45.142 2024-02-21 15:33:45.142 63900 TIP 433634 13931 6022280 2024-02-21 15:35:08.402 2024-02-21 15:35:08.402 10000 FEE 433873 17522 6022327 2024-02-21 15:45:42.201 2024-02-21 15:45:42.201 1000 FEE 433328 15890 6022328 2024-02-21 15:45:42.201 2024-02-21 15:45:42.201 9000 TIP 433328 19259 6022333 2024-02-21 15:46:06.761 2024-02-21 15:46:06.761 1100 FEE 433740 17050 6022334 2024-02-21 15:46:06.761 2024-02-21 15:46:06.761 9900 TIP 433740 19005 6022335 2024-02-21 15:46:46.178 2024-02-21 15:46:46.178 1000 FEE 433881 19929 6022338 2024-02-21 15:47:01.047 2024-02-21 15:47:01.047 1100 FEE 433740 17184 6022339 2024-02-21 15:47:01.047 2024-02-21 15:47:01.047 9900 TIP 433740 6526 6022359 2024-02-21 15:47:25.45 2024-02-21 15:47:25.45 2100 FEE 433499 19841 6022360 2024-02-21 15:47:25.45 2024-02-21 15:47:25.45 18900 TIP 433499 20892 6022363 2024-02-21 15:47:27.01 2024-02-21 15:47:27.01 2100 FEE 433677 13782 6022364 2024-02-21 15:47:27.01 2024-02-21 15:47:27.01 18900 TIP 433677 694 6022387 2024-02-21 15:47:32.635 2024-02-21 15:47:32.635 2000 FEE 433806 675 6022388 2024-02-21 15:47:32.635 2024-02-21 15:47:32.635 18000 TIP 433806 19613 6022407 2024-02-21 15:52:47.458 2024-02-21 15:52:47.458 100000 FEE 433885 9333 6022409 2024-02-21 15:53:36.763 2024-02-21 15:53:36.763 10000 FEE 433886 19878 6022433 2024-02-21 16:02:09.286 2024-02-21 16:02:09.286 10000 FEE 433895 21369 6022439 2024-02-21 16:03:06.754 2024-02-21 16:03:06.754 3000 FEE 433527 20577 6022440 2024-02-21 16:03:06.754 2024-02-21 16:03:06.754 27000 TIP 433527 16667 6022450 2024-02-21 16:04:50.072 2024-02-21 16:04:50.072 100 FEE 433844 20495 6022451 2024-02-21 16:04:50.072 2024-02-21 16:04:50.072 900 TIP 433844 1483 6022480 2024-02-21 16:07:48.483 2024-02-21 16:07:48.483 2100 FEE 433828 690 6022481 2024-02-21 16:07:48.483 2024-02-21 16:07:48.483 18900 TIP 433828 21090 6022487 2024-02-21 16:09:36.926 2024-02-21 16:09:36.926 3400 FEE 433851 18311 6022488 2024-02-21 16:09:36.926 2024-02-21 16:09:36.926 30600 TIP 433851 18815 6022505 2024-02-21 16:11:35.755 2024-02-21 16:11:35.755 0 FEE 433905 21040 6022542 2024-02-21 16:17:52.245 2024-02-21 16:17:52.245 100 FEE 427193 5557 6022543 2024-02-21 16:17:52.245 2024-02-21 16:17:52.245 900 TIP 427193 21588 6022544 2024-02-21 16:17:55.9 2024-02-21 16:17:55.9 0 FEE 433913 9874 6022567 2024-02-21 16:22:17.367 2024-02-21 16:22:17.367 10000 FEE 433922 1983 6022572 2024-02-21 16:24:18.897 2024-02-21 16:24:18.897 1000 FEE 433923 7510 6022588 2024-02-21 16:25:47.037 2024-02-21 16:25:47.037 100000 FEE 433924 8326 6022616 2024-02-21 16:26:47.403 2024-02-21 16:26:47.403 1000 FEE 433886 20660 6022617 2024-02-21 16:26:47.403 2024-02-21 16:26:47.403 9000 TIP 433886 19153 6022623 2024-02-21 16:27:04.173 2024-02-21 16:27:04.173 2000 FEE 433730 17513 6022624 2024-02-21 16:27:04.173 2024-02-21 16:27:04.173 18000 TIP 433730 13143 6022645 2024-02-21 16:29:02.697 2024-02-21 16:29:02.697 2100 FEE 433919 2444 6022646 2024-02-21 16:29:02.697 2024-02-21 16:29:02.697 18900 TIP 433919 21145 6022677 2024-02-21 16:30:43.746 2024-02-21 16:30:43.746 1000 FEE 433740 15806 6022678 2024-02-21 16:30:43.746 2024-02-21 16:30:43.746 9000 TIP 433740 4128 6022687 2024-02-21 16:31:04.105 2024-02-21 16:31:04.105 3100 FEE 433828 20018 6022688 2024-02-21 16:31:04.105 2024-02-21 16:31:04.105 27900 TIP 433828 658 6022695 2024-02-21 16:31:25.175 2024-02-21 16:31:25.175 2100 FEE 433648 14015 6022696 2024-02-21 16:31:25.175 2024-02-21 16:31:25.175 18900 TIP 433648 19282 6022698 2024-02-21 16:31:37.995 2024-02-21 16:31:37.995 1000 FEE 433930 13143 6022699 2024-02-21 16:31:37.995 2024-02-21 16:31:37.995 9000 TIP 433930 768 6022710 2024-02-21 16:31:48.399 2024-02-21 16:31:48.399 3200 FEE 433908 11516 6022711 2024-02-21 16:31:48.399 2024-02-21 16:31:48.399 28800 TIP 433908 20911 6022715 2024-02-21 16:32:03.712 2024-02-21 16:32:03.712 2100 FEE 433677 19458 6022716 2024-02-21 16:32:03.712 2024-02-21 16:32:03.712 18900 TIP 433677 623 6022718 2024-02-21 16:32:14.018 2024-02-21 16:32:14.018 100 FEE 433937 6041 6022719 2024-02-21 16:32:14.018 2024-02-21 16:32:14.018 900 TIP 433937 19664 6022733 2024-02-21 16:33:48.172 2024-02-21 16:33:48.172 1000 FEE 433938 5761 6022759 2024-02-21 16:37:34.451 2024-02-21 16:37:34.451 100000 FEE 433940 17927 6022768 2024-02-21 16:38:27.172 2024-02-21 16:38:27.172 1000 FEE 433435 15337 6022769 2024-02-21 16:38:27.172 2024-02-21 16:38:27.172 9000 TIP 433435 13878 6022795 2024-02-21 16:39:38.036 2024-02-21 16:39:38.036 1000 FEE 433947 777 6022808 2024-02-21 16:39:39.209 2024-02-21 16:39:39.209 100 FEE 433943 12218 6022809 2024-02-21 16:39:39.209 2024-02-21 16:39:39.209 900 TIP 433943 1162 6022812 2024-02-21 16:39:39.668 2024-02-21 16:39:39.668 100 FEE 433943 1060 6022813 2024-02-21 16:39:39.668 2024-02-21 16:39:39.668 900 TIP 433943 17446 6022814 2024-02-21 16:39:39.886 2024-02-21 16:39:39.886 100 FEE 433943 7983 6022815 2024-02-21 16:39:39.886 2024-02-21 16:39:39.886 900 TIP 433943 2347 6022840 2024-02-21 16:41:45.03 2024-02-21 16:41:45.03 100 FEE 432422 3478 6022841 2024-02-21 16:41:45.03 2024-02-21 16:41:45.03 900 TIP 432422 6268 6022861 2024-02-21 16:42:36.731 2024-02-21 16:42:36.731 5000 FEE 433870 19043 6022862 2024-02-21 16:42:36.731 2024-02-21 16:42:36.731 45000 TIP 433870 19966 6021927 2024-02-21 14:52:05.73 2024-02-21 14:52:05.73 100000 DONT_LIKE_THIS 433732 16754 6021940 2024-02-21 14:55:15.424 2024-02-21 14:55:15.424 2100 FEE 433594 9669 6021941 2024-02-21 14:55:15.424 2024-02-21 14:55:15.424 18900 TIP 433594 794 6021956 2024-02-21 14:56:21.665 2024-02-21 14:56:21.665 1100 FEE 433760 1718 6021957 2024-02-21 14:56:21.665 2024-02-21 14:56:21.665 9900 TIP 433760 5661 6021966 2024-02-21 14:58:30.379 2024-02-21 14:58:30.379 1000 FEE 433833 20106 6021967 2024-02-21 14:58:30.379 2024-02-21 14:58:30.379 9000 TIP 433833 7913 6021970 2024-02-21 14:58:32.173 2024-02-21 14:58:32.173 100 FEE 433780 2013 6021971 2024-02-21 14:58:32.173 2024-02-21 14:58:32.173 900 TIP 433780 2046 6021988 2024-02-21 14:58:35.895 2024-02-21 14:58:35.895 100 FEE 433780 21562 6021989 2024-02-21 14:58:35.895 2024-02-21 14:58:35.895 900 TIP 433780 21555 6021995 2024-02-21 14:58:52.459 2024-02-21 14:58:52.459 1000 FEE 433842 14939 6022012 2024-02-21 15:01:41.425 2024-02-21 15:01:41.425 0 FEE 433842 5829 6022015 2024-02-21 15:01:48.694 2024-02-21 15:01:48.694 1000 FEE 433589 20687 6022016 2024-02-21 15:01:48.694 2024-02-21 15:01:48.694 9000 TIP 433589 17218 6022032 2024-02-21 15:02:56.056 2024-02-21 15:02:56.056 2700 FEE 433677 17592 6022033 2024-02-21 15:02:56.056 2024-02-21 15:02:56.056 24300 TIP 433677 2703 6022056 2024-02-21 15:03:02.103 2024-02-21 15:03:02.103 210000 FEE 433844 9820 6022060 2024-02-21 15:03:30.435 2024-02-21 15:03:30.435 100 FEE 433730 18679 6022061 2024-02-21 15:03:30.435 2024-02-21 15:03:30.435 900 TIP 433730 5794 6022095 2024-02-21 15:07:42.917 2024-02-21 15:07:42.917 1000 FEE 433594 14280 6022096 2024-02-21 15:07:42.917 2024-02-21 15:07:42.917 9000 TIP 433594 15060 6022109 2024-02-21 15:08:50.346 2024-02-21 15:08:50.346 3400 FEE 433730 1833 6022110 2024-02-21 15:08:50.346 2024-02-21 15:08:50.346 30600 TIP 433730 21342 6022111 2024-02-21 15:08:55.404 2024-02-21 15:08:55.404 1600 FEE 433825 2042 6022112 2024-02-21 15:08:55.404 2024-02-21 15:08:55.404 14400 TIP 433825 17392 6022114 2024-02-21 15:09:44.077 2024-02-21 15:09:44.077 1000 FEE 433357 21352 6022115 2024-02-21 15:09:44.077 2024-02-21 15:09:44.077 9000 TIP 433357 20560 6022119 2024-02-21 15:10:10.673 2024-02-21 15:10:10.673 1000 FEE 433849 15266 6022125 2024-02-21 15:11:09.27 2024-02-21 15:11:09.27 1000 FEE 433850 769 6022131 2024-02-21 15:12:36.51 2024-02-21 15:12:36.51 51500 FEE 433828 20811 6022132 2024-02-21 15:12:36.51 2024-02-21 15:12:36.51 463500 TIP 433828 3518 6022140 2024-02-21 15:13:14.847 2024-02-21 15:13:14.847 900 FEE 433828 656 6022141 2024-02-21 15:13:14.847 2024-02-21 15:13:14.847 8100 TIP 433828 16876 6022154 2024-02-21 15:16:58.876 2024-02-21 15:16:58.876 2100 FEE 433713 19581 6022155 2024-02-21 15:16:58.876 2024-02-21 15:16:58.876 18900 TIP 433713 688 6022157 2024-02-21 15:17:18.118 2024-02-21 15:17:18.118 2100 FEE 433828 20254 6022158 2024-02-21 15:17:18.118 2024-02-21 15:17:18.118 18900 TIP 433828 4035 6022178 2024-02-21 15:20:07.883 2024-02-21 15:20:07.883 1000 FEE 433851 738 6022179 2024-02-21 15:20:07.883 2024-02-21 15:20:07.883 9000 TIP 433851 736 6022235 2024-02-21 15:27:46.188 2024-02-21 15:27:46.188 1000 FEE 433243 10608 6022236 2024-02-21 15:27:46.188 2024-02-21 15:27:46.188 9000 TIP 433243 12946 6022242 2024-02-21 15:29:06.158 2024-02-21 15:29:06.158 4000 FEE 433865 14385 6022243 2024-02-21 15:29:06.158 2024-02-21 15:29:06.158 36000 TIP 433865 20981 6022251 2024-02-21 15:31:17.291 2024-02-21 15:31:17.291 1000 FEE 433869 12744 6022253 2024-02-21 15:32:18.838 2024-02-21 15:32:18.838 7100 FEE 433848 21070 6022254 2024-02-21 15:32:18.838 2024-02-21 15:32:18.838 63900 TIP 433848 797 6022276 2024-02-21 15:33:55.518 2024-02-21 15:33:55.518 1000 FEE 433360 20555 6022277 2024-02-21 15:33:55.518 2024-02-21 15:33:55.518 9000 TIP 433360 14045 6022285 2024-02-21 15:36:14.231 2024-02-21 15:36:14.231 10000 FEE 433875 8648 6022305 2024-02-21 15:42:45.398 2024-02-21 15:42:45.398 10000 DONT_LIKE_THIS 433783 19852 6022313 2024-02-21 15:45:17.481 2024-02-21 15:45:17.481 400 FEE 433740 9969 6022314 2024-02-21 15:45:17.481 2024-02-21 15:45:17.481 3600 TIP 433740 16543 6022317 2024-02-21 15:45:26.961 2024-02-21 15:45:26.961 100 FEE 433842 14152 6022318 2024-02-21 15:45:26.961 2024-02-21 15:45:26.961 900 TIP 433842 6537 6022319 2024-02-21 15:45:27.112 2024-02-21 15:45:27.112 900 FEE 433842 15326 6022320 2024-02-21 15:45:27.112 2024-02-21 15:45:27.112 8100 TIP 433842 9426 6022331 2024-02-21 15:46:06.537 2024-02-21 15:46:06.537 2200 FEE 433740 2749 6022332 2024-02-21 15:46:06.537 2024-02-21 15:46:06.537 19800 TIP 433740 16341 6022342 2024-02-21 15:47:01.38 2024-02-21 15:47:01.38 1100 FEE 433740 12507 6022343 2024-02-21 15:47:01.38 2024-02-21 15:47:01.38 9900 TIP 433740 20168 6022353 2024-02-21 15:47:23.307 2024-02-21 15:47:23.307 2100 FEE 433828 19601 6022354 2024-02-21 15:47:23.307 2024-02-21 15:47:23.307 18900 TIP 433828 16542 6022357 2024-02-21 15:47:25.1 2024-02-21 15:47:25.1 2100 FEE 433721 7992 6022358 2024-02-21 15:47:25.1 2024-02-21 15:47:25.1 18900 TIP 433721 19446 6022361 2024-02-21 15:47:26.556 2024-02-21 15:47:26.556 2100 FEE 433713 9916 6022362 2024-02-21 15:47:26.556 2024-02-21 15:47:26.556 18900 TIP 433713 19601 6022377 2024-02-21 15:47:29.207 2024-02-21 15:47:29.207 2100 FEE 433648 20624 6022378 2024-02-21 15:47:29.207 2024-02-21 15:47:29.207 18900 TIP 433648 15890 6022395 2024-02-21 15:47:42.314 2024-02-21 15:47:42.314 4000 FEE 433828 20110 6022396 2024-02-21 15:47:42.314 2024-02-21 15:47:42.314 36000 TIP 433828 876 6022398 2024-02-21 15:48:59.554 2024-02-21 15:48:59.554 1000 FEE 433882 20788 6022402 2024-02-21 15:52:01.898 2024-02-21 15:52:01.898 100000 FEE 433883 11898 6022419 2024-02-21 15:59:44.526 2024-02-21 15:59:44.526 1000 FEE 433890 20326 6022420 2024-02-21 15:59:45.843 2024-02-21 15:59:45.843 1000 FEE 433891 4259 6022458 2024-02-21 16:05:13.506 2024-02-21 16:05:13.506 100 FEE 433878 3409 6022459 2024-02-21 16:05:13.506 2024-02-21 16:05:13.506 900 TIP 433878 20782 6022495 2024-02-21 16:11:06.892 2024-02-21 16:11:06.892 1000 FEE 433905 6164 6022496 2024-02-21 16:11:23.305 2024-02-21 16:11:23.305 0 FEE 433905 1825 6022497 2024-02-21 16:11:23.313 2024-02-21 16:11:23.313 100 FEE 433889 20464 6022498 2024-02-21 16:11:23.313 2024-02-21 16:11:23.313 900 TIP 433889 21296 6022520 2024-02-21 16:16:25.948 2024-02-21 16:16:25.948 3300 FEE 433851 18119 6022521 2024-02-21 16:16:25.948 2024-02-21 16:16:25.948 29700 TIP 433851 1564 6022537 2024-02-21 16:17:27.405 2024-02-21 16:17:27.405 1000 FEE 433913 15728 6022549 2024-02-21 16:19:33.896 2024-02-21 16:19:33.896 100000 FEE 433917 1130 6022618 2024-02-21 16:26:48.989 2024-02-21 16:26:48.989 2100 FEE 433924 19638 6022619 2024-02-21 16:26:48.989 2024-02-21 16:26:48.989 18900 TIP 433924 13763 6022625 2024-02-21 16:27:11.552 2024-02-21 16:27:11.552 2100 FEE 433889 17455 6022626 2024-02-21 16:27:11.552 2024-02-21 16:27:11.552 18900 TIP 433889 11885 6022667 2024-02-21 16:30:33.681 2024-02-21 16:30:33.681 1000 FEE 433931 20901 6022671 2024-02-21 16:30:42.303 2024-02-21 16:30:42.303 1000 FEE 433740 5057 6022672 2024-02-21 16:30:42.303 2024-02-21 16:30:42.303 9000 TIP 433740 20272 6022697 2024-02-21 16:31:35.966 2024-02-21 16:31:35.966 10000 FEE 433936 2942 6022708 2024-02-21 16:31:41.462 2024-02-21 16:31:41.462 1600 FEE 433926 19132 6022709 2024-02-21 16:31:41.462 2024-02-21 16:31:41.462 14400 TIP 433926 21532 6022722 2024-02-21 16:32:20.722 2024-02-21 16:32:20.722 9000 FEE 433937 1726 6022723 2024-02-21 16:32:20.722 2024-02-21 16:32:20.722 81000 TIP 433937 14045 6022734 2024-02-21 16:33:52.269 2024-02-21 16:33:52.269 10000 FEE 433883 12158 6022735 2024-02-21 16:33:52.269 2024-02-21 16:33:52.269 90000 TIP 433883 2961 6022775 2024-02-21 16:38:34.484 2024-02-21 16:38:34.484 1100 FEE 433828 18336 6022776 2024-02-21 16:38:34.484 2024-02-21 16:38:34.484 9900 TIP 433828 814 6022780 2024-02-21 16:39:11.387 2024-02-21 16:39:11.387 1100 FEE 433878 1519 6022781 2024-02-21 16:39:11.387 2024-02-21 16:39:11.387 9900 TIP 433878 11443 6022782 2024-02-21 16:39:11.593 2024-02-21 16:39:11.593 1000 FEE 433945 629 6022832 2024-02-21 16:41:38.858 2024-02-21 16:41:38.858 5000 FEE 433828 4345 6022833 2024-02-21 16:41:38.858 2024-02-21 16:41:38.858 45000 TIP 433828 20980 6022834 2024-02-21 16:41:39.103 2024-02-21 16:41:39.103 5000 FEE 433828 13249 6021936 2024-02-21 14:54:03.113 2024-02-21 14:54:03.113 1000 STREAM 141924 2367 6021951 2024-02-21 14:56:03.125 2024-02-21 14:56:03.125 1000 STREAM 141924 19848 6021965 2024-02-21 14:58:03.143 2024-02-21 14:58:03.143 1000 STREAM 141924 17710 6022004 2024-02-21 15:00:03.117 2024-02-21 15:00:03.117 1000 STREAM 141924 16270 6022011 2024-02-21 15:01:03.148 2024-02-21 15:01:03.148 1000 STREAM 141924 9334 6022020 2024-02-21 15:02:03.139 2024-02-21 15:02:03.139 1000 STREAM 141924 18743 6022057 2024-02-21 15:03:03.159 2024-02-21 15:03:03.159 1000 STREAM 141924 861 6022080 2024-02-21 15:06:03.172 2024-02-21 15:06:03.172 1000 STREAM 141924 17727 6022089 2024-02-21 15:07:03.158 2024-02-21 15:07:03.158 1000 STREAM 141924 620 6022099 2024-02-21 15:08:03.179 2024-02-21 15:08:03.179 1000 STREAM 141924 19138 6022118 2024-02-21 15:10:03.204 2024-02-21 15:10:03.204 1000 STREAM 141924 14939 6022150 2024-02-21 15:15:03.213 2024-02-21 15:15:03.213 1000 STREAM 141924 17103 6022156 2024-02-21 15:17:03.247 2024-02-21 15:17:03.247 1000 STREAM 141924 11648 6022202 2024-02-21 15:21:03.286 2024-02-21 15:21:03.286 1000 STREAM 141924 20775 6022228 2024-02-21 15:24:03.298 2024-02-21 15:24:03.298 1000 STREAM 141924 644 6022239 2024-02-21 15:28:03.334 2024-02-21 15:28:03.334 1000 STREAM 141924 9438 6022250 2024-02-21 15:31:03.346 2024-02-21 15:31:03.346 1000 STREAM 141924 1195 6022252 2024-02-21 15:32:03.355 2024-02-21 15:32:03.355 1000 STREAM 141924 20987 6022278 2024-02-21 15:34:03.361 2024-02-21 15:34:03.361 1000 STREAM 141924 4175 6022279 2024-02-21 15:35:03.397 2024-02-21 15:35:03.397 1000 STREAM 141924 19929 6022282 2024-02-21 15:36:03.362 2024-02-21 15:36:03.362 1000 STREAM 141924 2293 6022286 2024-02-21 15:37:03.365 2024-02-21 15:37:03.365 1000 STREAM 141924 4304 6022300 2024-02-21 15:39:03.373 2024-02-21 15:39:03.373 1000 STREAM 141924 16939 6022303 2024-02-21 15:41:03.38 2024-02-21 15:41:03.38 1000 STREAM 141924 18235 6022308 2024-02-21 15:44:03.418 2024-02-21 15:44:03.418 1000 STREAM 141924 9352 6022311 2024-02-21 15:45:03.42 2024-02-21 15:45:03.42 1000 STREAM 141924 27 6022403 2024-02-21 15:52:03.442 2024-02-21 15:52:03.442 1000 STREAM 141924 10013 6022411 2024-02-21 15:55:03.475 2024-02-21 15:55:03.475 1000 STREAM 141924 21083 6022416 2024-02-21 15:59:03.499 2024-02-21 15:59:03.499 1000 STREAM 141924 3683 6022423 2024-02-21 16:00:03.52 2024-02-21 16:00:03.52 1000 STREAM 141924 4692 6021937 2024-02-21 14:54:37.708 2024-02-21 14:54:37.708 2100 FEE 433740 21218 6021938 2024-02-21 14:54:37.708 2024-02-21 14:54:37.708 18900 TIP 433740 663 6021948 2024-02-21 14:55:24.796 2024-02-21 14:55:24.796 3400 FEE 433679 11820 6021949 2024-02-21 14:55:24.796 2024-02-21 14:55:24.796 30600 TIP 433679 15160 6021968 2024-02-21 14:58:31.737 2024-02-21 14:58:31.737 1000 FEE 433832 21033 6021969 2024-02-21 14:58:31.737 2024-02-21 14:58:31.737 9000 TIP 433832 1983 6022000 2024-02-21 14:59:34.633 2024-02-21 14:59:34.633 0 FEE 433842 11522 6022005 2024-02-21 15:00:14.08 2024-02-21 15:00:14.08 7700 FEE 433833 10849 6022006 2024-02-21 15:00:14.08 2024-02-21 15:00:14.08 69300 TIP 433833 10490 6022017 2024-02-21 15:01:50.472 2024-02-21 15:01:50.472 4000 FEE 433833 632 6022018 2024-02-21 15:01:50.472 2024-02-21 15:01:50.472 36000 TIP 433833 5694 6022030 2024-02-21 15:02:55.861 2024-02-21 15:02:55.861 2700 FEE 433677 20782 6022031 2024-02-21 15:02:55.861 2024-02-21 15:02:55.861 24300 TIP 433677 3439 6022052 2024-02-21 15:02:59.33 2024-02-21 15:02:59.33 2700 FEE 433677 1673 6022053 2024-02-21 15:02:59.33 2024-02-21 15:02:59.33 24300 TIP 433677 20596 6022065 2024-02-21 15:03:33.073 2024-02-21 15:03:33.073 100 FEE 433833 20464 6022066 2024-02-21 15:03:33.073 2024-02-21 15:03:33.073 900 TIP 433833 8498 6022073 2024-02-21 15:03:46.43 2024-02-21 15:03:46.43 4000 FEE 433843 9844 6022074 2024-02-21 15:03:46.43 2024-02-21 15:03:46.43 36000 TIP 433843 3353 6022078 2024-02-21 15:04:27.481 2024-02-21 15:04:27.481 1000 FEE 433846 12609 6022087 2024-02-21 15:07:00.409 2024-02-21 15:07:00.409 100 FEE 433740 19038 6022088 2024-02-21 15:07:00.409 2024-02-21 15:07:00.409 900 TIP 433740 15925 6022094 2024-02-21 15:07:40.767 2024-02-21 15:07:40.767 1000 FEE 433847 21352 6022116 2024-02-21 15:09:53.814 2024-02-21 15:09:53.814 1000 FEE 433416 18680 6022117 2024-02-21 15:09:53.814 2024-02-21 15:09:53.814 9000 TIP 433416 5057 6022129 2024-02-21 15:12:29.674 2024-02-21 15:12:29.674 17000 FEE 433853 5500 6022133 2024-02-21 15:12:48.631 2024-02-21 15:12:48.631 4000 FEE 433713 8080 6022134 2024-02-21 15:12:48.631 2024-02-21 15:12:48.631 36000 TIP 433713 19886 6022159 2024-02-21 15:17:20.576 2024-02-21 15:17:20.576 300 FEE 433749 2543 6022160 2024-02-21 15:17:20.576 2024-02-21 15:17:20.576 2700 TIP 433749 4323 6022161 2024-02-21 15:17:24.218 2024-02-21 15:17:24.218 700 FEE 433752 1060 6022162 2024-02-21 15:17:24.218 2024-02-21 15:17:24.218 6300 TIP 433752 18309 6022166 2024-02-21 15:18:20.17 2024-02-21 15:18:20.17 1700 FEE 433796 12278 6022167 2024-02-21 15:18:20.17 2024-02-21 15:18:20.17 15300 TIP 433796 20225 6022168 2024-02-21 15:18:41.368 2024-02-21 15:18:41.368 1000 FEE 433859 18446 6022175 2024-02-21 15:19:45.119 2024-02-21 15:19:45.119 1000 FEE 433860 17331 6022180 2024-02-21 15:20:08.544 2024-02-21 15:20:08.544 9000 FEE 433851 4167 6022181 2024-02-21 15:20:08.544 2024-02-21 15:20:08.544 81000 TIP 433851 1316 6022182 2024-02-21 15:20:10.174 2024-02-21 15:20:10.174 90000 FEE 433851 17103 6022183 2024-02-21 15:20:10.174 2024-02-21 15:20:10.174 810000 TIP 433851 13217 6022186 2024-02-21 15:20:47.282 2024-02-21 15:20:47.282 2100 FEE 408183 9290 6022187 2024-02-21 15:20:47.282 2024-02-21 15:20:47.282 18900 TIP 408183 19174 6022194 2024-02-21 15:21:02.19 2024-02-21 15:21:02.19 100 FEE 433830 736 6022195 2024-02-21 15:21:02.19 2024-02-21 15:21:02.19 900 TIP 433830 19759 6022198 2024-02-21 15:21:02.774 2024-02-21 15:21:02.774 200 FEE 433830 5173 6022199 2024-02-21 15:21:02.774 2024-02-21 15:21:02.774 1800 TIP 433830 5728 6022205 2024-02-21 15:21:03.516 2024-02-21 15:21:03.516 100 FEE 433830 4177 6022206 2024-02-21 15:21:03.516 2024-02-21 15:21:03.516 900 TIP 433830 20973 6022240 2024-02-21 15:28:20.756 2024-02-21 15:28:20.756 1000 FEE 433867 16194 6022257 2024-02-21 15:32:41.592 2024-02-21 15:32:41.592 7100 FEE 433775 20554 6022258 2024-02-21 15:32:41.592 2024-02-21 15:32:41.592 63900 TIP 433775 9476 6022272 2024-02-21 15:33:36.768 2024-02-21 15:33:36.768 7100 FEE 433700 20087 6022273 2024-02-21 15:33:36.768 2024-02-21 15:33:36.768 63900 TIP 433700 9078 6022283 2024-02-21 15:36:12.384 2024-02-21 15:36:12.384 6400 FEE 433862 18896 6022284 2024-02-21 15:36:12.384 2024-02-21 15:36:12.384 57600 TIP 433862 16309 6022345 2024-02-21 15:47:19.83 2024-02-21 15:47:19.83 2100 FEE 433878 21044 6022346 2024-02-21 15:47:19.83 2024-02-21 15:47:19.83 18900 TIP 433878 21022 6022351 2024-02-21 15:47:22.891 2024-02-21 15:47:22.891 2100 FEE 433828 1245 6022352 2024-02-21 15:47:22.891 2024-02-21 15:47:22.891 18900 TIP 433828 2029 6022365 2024-02-21 15:47:27.019 2024-02-21 15:47:27.019 1100 FEE 433688 15063 6022366 2024-02-21 15:47:27.019 2024-02-21 15:47:27.019 9900 TIP 433688 18231 6022369 2024-02-21 15:47:27.304 2024-02-21 15:47:27.304 1100 FEE 433688 4250 6022370 2024-02-21 15:47:27.304 2024-02-21 15:47:27.304 9900 TIP 433688 18528 6022371 2024-02-21 15:47:28.228 2024-02-21 15:47:28.228 2100 FEE 433594 21356 6022372 2024-02-21 15:47:28.228 2024-02-21 15:47:28.228 18900 TIP 433594 18393 6022383 2024-02-21 15:47:30.872 2024-02-21 15:47:30.872 2100 FEE 433679 18995 6022384 2024-02-21 15:47:30.872 2024-02-21 15:47:30.872 18900 TIP 433679 20018 6022429 2024-02-21 16:02:02.138 2024-02-21 16:02:02.138 1000 FEE 433894 2748 6022434 2024-02-21 16:02:10.671 2024-02-21 16:02:10.671 2100 FEE 433828 9426 6022435 2024-02-21 16:02:10.671 2024-02-21 16:02:10.671 18900 TIP 433828 9275 6022441 2024-02-21 16:03:26.869 2024-02-21 16:03:26.869 1600 FEE 433886 12097 6022442 2024-02-21 16:03:26.869 2024-02-21 16:03:26.869 14400 TIP 433886 21103 6022443 2024-02-21 16:03:43.412 2024-02-21 16:03:43.412 3000 FEE 433721 11075 6022444 2024-02-21 16:03:43.412 2024-02-21 16:03:43.412 27000 TIP 433721 7877 6022445 2024-02-21 16:03:58.773 2024-02-21 16:03:58.773 2100 FEE 433403 15088 6022446 2024-02-21 16:03:58.773 2024-02-21 16:03:58.773 18900 TIP 433403 5444 6022452 2024-02-21 16:04:50.247 2024-02-21 16:04:50.247 900 FEE 433844 18704 6022453 2024-02-21 16:04:50.247 2024-02-21 16:04:50.247 8100 TIP 433844 14169 6022462 2024-02-21 16:05:14.125 2024-02-21 16:05:14.125 9000 FEE 433878 19198 6022463 2024-02-21 16:05:14.125 2024-02-21 16:05:14.125 81000 TIP 433878 8376 6022466 2024-02-21 16:06:35.886 2024-02-21 16:06:35.886 1000 FEE 432920 11443 6022467 2024-02-21 16:06:35.886 2024-02-21 16:06:35.886 9000 TIP 432920 16259 6022468 2024-02-21 16:06:41.789 2024-02-21 16:06:41.789 100 FEE 433889 17535 6022469 2024-02-21 16:06:41.789 2024-02-21 16:06:41.789 900 TIP 433889 1426 6022470 2024-02-21 16:06:42.022 2024-02-21 16:06:42.022 900 FEE 433889 20710 6022471 2024-02-21 16:06:42.022 2024-02-21 16:06:42.022 8100 TIP 433889 12072 6022489 2024-02-21 16:09:38.269 2024-02-21 16:09:38.269 3400 FEE 433851 18892 6022490 2024-02-21 16:09:38.269 2024-02-21 16:09:38.269 30600 TIP 433851 4059 6022499 2024-02-21 16:11:23.94 2024-02-21 16:11:23.94 100 FEE 433889 8380 6022500 2024-02-21 16:11:23.94 2024-02-21 16:11:23.94 900 TIP 433889 20979 6022507 2024-02-21 16:12:20.323 2024-02-21 16:12:20.323 1000 FEE 433906 8289 6022508 2024-02-21 16:12:52.139 2024-02-21 16:12:52.139 10000 FEE 433208 12976 6022509 2024-02-21 16:12:52.139 2024-02-21 16:12:52.139 90000 TIP 433208 7913 6022522 2024-02-21 16:16:32.39 2024-02-21 16:16:32.39 100000 FEE 433911 20222 6022523 2024-02-21 16:16:41.32 2024-02-21 16:16:41.32 2100 FEE 433721 16154 6022524 2024-02-21 16:16:41.32 2024-02-21 16:16:41.32 18900 TIP 433721 21612 6022541 2024-02-21 16:17:42.679 2024-02-21 16:17:42.679 1000 FEE 433915 1480 6022553 2024-02-21 16:21:11.727 2024-02-21 16:21:11.727 100 FEE 433901 21022 6022554 2024-02-21 16:21:11.727 2024-02-21 16:21:11.727 900 TIP 433901 15978 6022173 2024-02-21 15:19:30.377 2024-02-21 15:19:30.377 21800 FEE 433859 1970 6022174 2024-02-21 15:19:30.377 2024-02-21 15:19:30.377 196200 TIP 433859 4798 6022271 2024-02-21 15:33:12.631 2024-02-21 15:33:12.631 1000 FEE 433871 18265 6022287 2024-02-21 15:37:29.794 2024-02-21 15:37:29.794 2100 FEE 433721 18629 6022288 2024-02-21 15:37:29.794 2024-02-21 15:37:29.794 18900 TIP 433721 21413 6022289 2024-02-21 15:37:38.654 2024-02-21 15:37:38.654 6400 FEE 433713 18472 6022290 2024-02-21 15:37:38.654 2024-02-21 15:37:38.654 57600 TIP 433713 9169 6022312 2024-02-21 15:45:15.02 2024-02-21 15:45:15.02 1000 FEE 433879 21539 6022325 2024-02-21 15:45:41.689 2024-02-21 15:45:41.689 900 FEE 433849 8004 6022326 2024-02-21 15:45:41.689 2024-02-21 15:45:41.689 8100 TIP 433849 16847 6022340 2024-02-21 15:47:01.133 2024-02-21 15:47:01.133 1100 FEE 433740 21139 6022341 2024-02-21 15:47:01.133 2024-02-21 15:47:01.133 9900 TIP 433740 15703 6022418 2024-02-21 15:59:16.56 2024-02-21 15:59:16.56 10000 FEE 433889 12356 6022421 2024-02-21 15:59:48.809 2024-02-21 15:59:48.809 3000 FEE 433833 9355 6022422 2024-02-21 15:59:48.809 2024-02-21 15:59:48.809 27000 TIP 433833 20623 6022431 2024-02-21 16:02:08.897 2024-02-21 16:02:08.897 2100 FEE 433828 999 6022432 2024-02-21 16:02:08.897 2024-02-21 16:02:08.897 18900 TIP 433828 12976 6022456 2024-02-21 16:04:53.873 2024-02-21 16:04:53.873 100000 FEE 433898 4819 6022460 2024-02-21 16:05:13.625 2024-02-21 16:05:13.625 900 FEE 433878 2502 6022461 2024-02-21 16:05:13.625 2024-02-21 16:05:13.625 8100 TIP 433878 19557 6022464 2024-02-21 16:05:23.693 2024-02-21 16:05:23.693 1000 FEE 433899 17446 6022472 2024-02-21 16:06:44.637 2024-02-21 16:06:44.637 9000 FEE 433889 16956 6022473 2024-02-21 16:06:44.637 2024-02-21 16:06:44.637 81000 TIP 433889 1429 6022478 2024-02-21 16:07:42.648 2024-02-21 16:07:42.648 2100 FEE 433833 2111 6022479 2024-02-21 16:07:42.648 2024-02-21 16:07:42.648 18900 TIP 433833 21400 6022493 2024-02-21 16:10:07.547 2024-02-21 16:10:07.547 1000 FEE 433904 15119 6022503 2024-02-21 16:11:30.677 2024-02-21 16:11:30.677 100 FEE 433886 21620 6022504 2024-02-21 16:11:30.677 2024-02-21 16:11:30.677 900 TIP 433886 6003 6022516 2024-02-21 16:15:43.281 2024-02-21 16:15:43.281 1000 FEE 433910 18262 6022525 2024-02-21 16:16:50.461 2024-02-21 16:16:50.461 10000 FEE 433912 20624 6022574 2024-02-21 16:25:12.2 2024-02-21 16:25:12.2 4200 FEE 433677 9349 6022575 2024-02-21 16:25:12.2 2024-02-21 16:25:12.2 37800 TIP 433677 738 6022637 2024-02-21 16:28:05.631 2024-02-21 16:28:05.631 2100 FEE 433639 19329 6022638 2024-02-21 16:28:05.631 2024-02-21 16:28:05.631 18900 TIP 433639 19286 6022656 2024-02-21 16:29:26.861 2024-02-21 16:29:26.861 0 FEE 433929 21296 6022683 2024-02-21 16:30:51.8 2024-02-21 16:30:51.8 1000 FEE 433935 20744 6022693 2024-02-21 16:31:15.934 2024-02-21 16:31:15.934 2100 FEE 433730 760 6022694 2024-02-21 16:31:15.934 2024-02-21 16:31:15.934 18900 TIP 433730 635 6022704 2024-02-21 16:31:39.566 2024-02-21 16:31:39.566 1000 FEE 433930 19198 6022705 2024-02-21 16:31:39.566 2024-02-21 16:31:39.566 9000 TIP 433930 19235 6022712 2024-02-21 16:32:01.287 2024-02-21 16:32:01.287 6400 FEE 433913 5852 6022713 2024-02-21 16:32:01.287 2024-02-21 16:32:01.287 57600 TIP 433913 9337 6022738 2024-02-21 16:34:19.812 2024-02-21 16:34:19.812 2100 FEE 433915 21469 6022739 2024-02-21 16:34:19.812 2024-02-21 16:34:19.812 18900 TIP 433915 14663 6022762 2024-02-21 16:38:25.632 2024-02-21 16:38:25.632 1000 FEE 433435 12291 6022763 2024-02-21 16:38:25.632 2024-02-21 16:38:25.632 9000 TIP 433435 1426 6022770 2024-02-21 16:38:27.831 2024-02-21 16:38:27.831 1000 FEE 433435 1429 6022771 2024-02-21 16:38:27.831 2024-02-21 16:38:27.831 9000 TIP 433435 9705 6022778 2024-02-21 16:39:00.185 2024-02-21 16:39:00.185 1000 FEE 433944 11298 6022824 2024-02-21 16:39:52.531 2024-02-21 16:39:52.531 3100 FEE 433941 15594 6022825 2024-02-21 16:39:52.531 2024-02-21 16:39:52.531 27900 TIP 433941 19826 6022827 2024-02-21 16:40:19.616 2024-02-21 16:40:19.616 500 FEE 433828 9330 6022828 2024-02-21 16:40:19.616 2024-02-21 16:40:19.616 4500 TIP 433828 18402 6022851 2024-02-21 16:41:59.531 2024-02-21 16:41:59.531 1000 FEE 433940 20555 6022852 2024-02-21 16:41:59.531 2024-02-21 16:41:59.531 9000 TIP 433940 687 6022886 2024-02-21 16:44:50.856 2024-02-21 16:44:50.856 1000 FEE 433955 16680 6022907 2024-02-21 16:46:39.593 2024-02-21 16:46:39.593 1000 FEE 433959 19909 6022910 2024-02-21 16:47:06.168 2024-02-21 16:47:06.168 1000 FEE 433961 14357 6022952 2024-02-21 16:49:42.278 2024-02-21 16:49:42.278 1000 FEE 433966 4395 6023000 2024-02-21 16:54:08.155 2024-02-21 16:54:08.155 100 FEE 433828 3717 6023001 2024-02-21 16:54:08.155 2024-02-21 16:54:08.155 900 TIP 433828 989 6023010 2024-02-21 16:54:09.687 2024-02-21 16:54:09.687 300 FEE 433828 1490 6023011 2024-02-21 16:54:09.687 2024-02-21 16:54:09.687 2700 TIP 433828 8173 6023033 2024-02-21 16:57:04.97 2024-02-21 16:57:04.97 2100 FEE 433942 19770 6023034 2024-02-21 16:57:04.97 2024-02-21 16:57:04.97 18900 TIP 433942 21271 6023039 2024-02-21 16:57:05.907 2024-02-21 16:57:05.907 2100 FEE 433942 19375 6023040 2024-02-21 16:57:05.907 2024-02-21 16:57:05.907 18900 TIP 433942 6533 6023048 2024-02-21 16:58:20.852 2024-02-21 16:58:20.852 1000 FEE 433878 15890 6023049 2024-02-21 16:58:20.852 2024-02-21 16:58:20.852 9000 TIP 433878 18941 6023087 2024-02-21 17:02:20.994 2024-02-21 17:02:20.994 1000 FEE 433981 20102 6023100 2024-02-21 17:02:46.478 2024-02-21 17:02:46.478 27900 FEE 433970 642 6023101 2024-02-21 17:02:46.478 2024-02-21 17:02:46.478 251100 TIP 433970 11275 6023104 2024-02-21 17:02:50.375 2024-02-21 17:02:50.375 4000 FEE 433844 18402 6023105 2024-02-21 17:02:50.375 2024-02-21 17:02:50.375 36000 TIP 433844 20816 6023147 2024-02-21 17:05:43.479 2024-02-21 17:05:43.479 1000 FEE 433990 21166 6023168 2024-02-21 17:08:56.493 2024-02-21 17:08:56.493 10000 FEE 433997 14168 6023174 2024-02-21 17:10:19.77 2024-02-21 17:10:19.77 1000 FEE 434001 2213 6023200 2024-02-21 17:11:25.743 2024-02-21 17:11:25.743 3300 FEE 433849 17690 6023201 2024-02-21 17:11:25.743 2024-02-21 17:11:25.743 29700 TIP 433849 8173 6023223 2024-02-21 17:12:50.254 2024-02-21 17:12:50.254 9000 FEE 434000 21391 6023224 2024-02-21 17:12:50.254 2024-02-21 17:12:50.254 81000 TIP 434000 6717 6023225 2024-02-21 17:12:50.84 2024-02-21 17:12:50.84 90000 FEE 434000 12606 6023226 2024-02-21 17:12:50.84 2024-02-21 17:12:50.84 810000 TIP 434000 18359 6023233 2024-02-21 17:12:57.378 2024-02-21 17:12:57.378 6600 FEE 433828 21585 6023234 2024-02-21 17:12:57.378 2024-02-21 17:12:57.378 59400 TIP 433828 12738 6023243 2024-02-21 17:14:02.568 2024-02-21 17:14:02.568 3300 FEE 433828 681 6023244 2024-02-21 17:14:02.568 2024-02-21 17:14:02.568 29700 TIP 433828 14258 6023253 2024-02-21 17:16:32.074 2024-02-21 17:16:32.074 11000 FEE 434010 8242 6023262 2024-02-21 17:17:52.593 2024-02-21 17:17:52.593 222200 FEE 433740 21532 6023263 2024-02-21 17:17:52.593 2024-02-21 17:17:52.593 1999800 TIP 433740 1064 6023265 2024-02-21 17:18:29.296 2024-02-21 17:18:29.296 8300 FEE 433919 8569 6023266 2024-02-21 17:18:29.296 2024-02-21 17:18:29.296 74700 TIP 433919 20987 6023297 2024-02-21 17:20:15.676 2024-02-21 17:20:15.676 27900 FEE 433978 889 6023298 2024-02-21 17:20:15.676 2024-02-21 17:20:15.676 251100 TIP 433978 4102 6023299 2024-02-21 17:20:38.246 2024-02-21 17:20:38.246 100 FEE 434012 11776 6023300 2024-02-21 17:20:38.246 2024-02-21 17:20:38.246 900 TIP 434012 19036 6023301 2024-02-21 17:20:38.431 2024-02-21 17:20:38.431 100 FEE 434012 667 6023302 2024-02-21 17:20:38.431 2024-02-21 17:20:38.431 900 TIP 434012 12779 6023307 2024-02-21 17:20:39.32 2024-02-21 17:20:39.32 100 FEE 434012 5806 6023308 2024-02-21 17:20:39.32 2024-02-21 17:20:39.32 900 TIP 434012 20502 6023311 2024-02-21 17:20:48.49 2024-02-21 17:20:48.49 1000 FEE 434014 21521 6023326 2024-02-21 17:21:40.237 2024-02-21 17:21:40.237 1000 FEE 434017 11314 6023336 2024-02-21 17:22:19.853 2024-02-21 17:22:19.853 4000 FEE 434011 10311 6023337 2024-02-21 17:22:19.853 2024-02-21 17:22:19.853 36000 TIP 434011 16684 6023344 2024-02-21 17:22:52.839 2024-02-21 17:22:52.839 100 FEE 433828 20109 6023345 2024-02-21 17:22:52.839 2024-02-21 17:22:52.839 900 TIP 433828 18809 6023351 2024-02-21 17:24:05.692 2024-02-21 17:24:05.692 1000 FEE 434023 20660 6022226 2024-02-21 15:23:40.615 2024-02-21 15:23:40.615 100 FEE 433833 14037 6022227 2024-02-21 15:23:40.615 2024-02-21 15:23:40.615 900 TIP 433833 10821 6022230 2024-02-21 15:25:47.105 2024-02-21 15:25:47.105 10000 FEE 433864 1620 6022259 2024-02-21 15:32:46.641 2024-02-21 15:32:46.641 7100 FEE 433774 21339 6022260 2024-02-21 15:32:46.641 2024-02-21 15:32:46.641 63900 TIP 433774 9482 6022267 2024-02-21 15:33:00.06 2024-02-21 15:33:00.06 7100 FEE 433740 6191 6022268 2024-02-21 15:33:00.06 2024-02-21 15:33:00.06 63900 TIP 433740 6419 6022270 2024-02-21 15:33:12.459 2024-02-21 15:33:12.459 1000 FEE 433870 6717 6022281 2024-02-21 15:35:24.415 2024-02-21 15:35:24.415 1000 FEE 433874 2285 6022306 2024-02-21 15:42:50.804 2024-02-21 15:42:50.804 5000 FEE 433878 6137 6022321 2024-02-21 15:45:32.385 2024-02-21 15:45:32.385 9000 FEE 433842 913 6022322 2024-02-21 15:45:32.385 2024-02-21 15:45:32.385 81000 TIP 433842 18618 6022347 2024-02-21 15:47:22.138 2024-02-21 15:47:22.138 2100 FEE 433688 20058 6022348 2024-02-21 15:47:22.138 2024-02-21 15:47:22.138 18900 TIP 433688 616 6022349 2024-02-21 15:47:22.469 2024-02-21 15:47:22.469 2100 FEE 433740 20826 6022350 2024-02-21 15:47:22.469 2024-02-21 15:47:22.469 18900 TIP 433740 16912 6022375 2024-02-21 15:47:28.789 2024-02-21 15:47:28.789 1100 FEE 433833 16536 6022376 2024-02-21 15:47:28.789 2024-02-21 15:47:28.789 9900 TIP 433833 11829 6022389 2024-02-21 15:47:32.877 2024-02-21 15:47:32.877 1000 FEE 433806 1092 6022390 2024-02-21 15:47:32.877 2024-02-21 15:47:32.877 9000 TIP 433806 768 6022404 2024-02-21 15:52:07.702 2024-02-21 15:52:07.702 1000 FEE 433884 17568 6022405 2024-02-21 15:52:32.053 2024-02-21 15:52:32.053 800 FEE 433838 1319 6022406 2024-02-21 15:52:32.053 2024-02-21 15:52:32.053 7200 TIP 433838 20162 6022413 2024-02-21 15:56:32.637 2024-02-21 15:56:32.637 1000 FEE 433887 20841 6022417 2024-02-21 15:59:14.451 2024-02-21 15:59:14.451 1000 FEE 433888 20464 6022454 2024-02-21 16:04:50.823 2024-02-21 16:04:50.823 9000 FEE 433844 7425 6022455 2024-02-21 16:04:50.823 2024-02-21 16:04:50.823 81000 TIP 433844 21138 6022476 2024-02-21 16:07:25.875 2024-02-21 16:07:25.875 3100 FEE 433855 9421 6022477 2024-02-21 16:07:25.875 2024-02-21 16:07:25.875 27900 TIP 433855 17838 6022510 2024-02-21 16:12:54.748 2024-02-21 16:12:54.748 1000 FEE 433907 1316 6022528 2024-02-21 16:16:55.561 2024-02-21 16:16:55.561 100 FEE 430620 19500 6022529 2024-02-21 16:16:55.561 2024-02-21 16:16:55.561 900 TIP 430620 10536 6022531 2024-02-21 16:17:05.135 2024-02-21 16:17:05.135 100 FEE 430621 2123 6022532 2024-02-21 16:17:05.135 2024-02-21 16:17:05.135 900 TIP 430621 8162 6022533 2024-02-21 16:17:12.613 2024-02-21 16:17:12.613 100 FEE 430937 6382 6022534 2024-02-21 16:17:12.613 2024-02-21 16:17:12.613 900 TIP 430937 20509 6022538 2024-02-21 16:17:30.198 2024-02-21 16:17:30.198 1000 FEE 433914 12346 6022546 2024-02-21 16:18:07.684 2024-02-21 16:18:07.684 1000 FEE 433916 13046 6022548 2024-02-21 16:19:22.184 2024-02-21 16:19:22.184 0 FEE 433913 6717 6022555 2024-02-21 16:21:11.916 2024-02-21 16:21:11.916 900 FEE 433901 19346 6022556 2024-02-21 16:21:11.916 2024-02-21 16:21:11.916 8100 TIP 433901 16289 6022559 2024-02-21 16:21:14.888 2024-02-21 16:21:14.888 900 FEE 433891 10693 6022560 2024-02-21 16:21:14.888 2024-02-21 16:21:14.888 8100 TIP 433891 10586 6022561 2024-02-21 16:21:24.068 2024-02-21 16:21:24.068 21100 FEE 433878 6202 6022562 2024-02-21 16:21:24.068 2024-02-21 16:21:24.068 189900 TIP 433878 14651 6022566 2024-02-21 16:22:14.169 2024-02-21 16:22:14.169 1000 FEE 433921 10981 6022580 2024-02-21 16:25:14.844 2024-02-21 16:25:14.844 4200 FEE 433677 9275 6022581 2024-02-21 16:25:14.844 2024-02-21 16:25:14.844 37800 TIP 433677 2576 6022592 2024-02-21 16:26:06.72 2024-02-21 16:26:06.72 1000 FEE 433925 8269 6022593 2024-02-21 16:26:07.743 2024-02-21 16:26:07.743 1000 FEE 433926 15690 6022608 2024-02-21 16:26:44.992 2024-02-21 16:26:44.992 1000 FEE 433410 1650 6022609 2024-02-21 16:26:44.992 2024-02-21 16:26:44.992 9000 TIP 433410 2338 6022634 2024-02-21 16:27:54.747 2024-02-21 16:27:54.747 1000 FEE 433928 13046 6022652 2024-02-21 16:29:12.774 2024-02-21 16:29:12.774 1000 FEE 433878 21627 6022653 2024-02-21 16:29:12.774 2024-02-21 16:29:12.774 9000 TIP 433878 10484 6022657 2024-02-21 16:29:32.324 2024-02-21 16:29:32.324 1000 FEE 433864 20109 6022658 2024-02-21 16:29:32.324 2024-02-21 16:29:32.324 9000 TIP 433864 1571 6022663 2024-02-21 16:29:50.58 2024-02-21 16:29:50.58 1000 FEE 433856 6421 6022664 2024-02-21 16:29:50.58 2024-02-21 16:29:50.58 9000 TIP 433856 16536 6022673 2024-02-21 16:30:42.875 2024-02-21 16:30:42.875 1000 FEE 433740 19622 6022674 2024-02-21 16:30:42.875 2024-02-21 16:30:42.875 9000 TIP 433740 2459 6022689 2024-02-21 16:31:04.326 2024-02-21 16:31:04.326 2100 FEE 433059 20704 6022690 2024-02-21 16:31:04.326 2024-02-21 16:31:04.326 18900 TIP 433059 6229 6022743 2024-02-21 16:35:35.795 2024-02-21 16:35:35.795 100 FEE 433937 18930 6022744 2024-02-21 16:35:35.795 2024-02-21 16:35:35.795 900 TIP 433937 4692 6022752 2024-02-21 16:36:15.385 2024-02-21 16:36:15.385 2100 FEE 433844 2709 6022753 2024-02-21 16:36:15.385 2024-02-21 16:36:15.385 18900 TIP 433844 17331 6022766 2024-02-21 16:38:26.582 2024-02-21 16:38:26.582 1000 FEE 433435 9552 6022767 2024-02-21 16:38:26.582 2024-02-21 16:38:26.582 9000 TIP 433435 16542 6022783 2024-02-21 16:39:34.059 2024-02-21 16:39:34.059 3000 DONT_LIKE_THIS 433920 15147 6022829 2024-02-21 16:40:21.031 2024-02-21 16:40:21.031 500 FEE 433833 19637 6022830 2024-02-21 16:40:21.031 2024-02-21 16:40:21.031 4500 TIP 433833 19488 6022863 2024-02-21 16:42:59.634 2024-02-21 16:42:59.634 5000 FEE 433815 18291 6022864 2024-02-21 16:42:59.634 2024-02-21 16:42:59.634 45000 TIP 433815 14705 6022902 2024-02-21 16:45:55.316 2024-02-21 16:45:55.316 1000 FEE 433956 19284 6022921 2024-02-21 16:47:26.467 2024-02-21 16:47:26.467 100 FEE 433713 19511 6022922 2024-02-21 16:47:26.467 2024-02-21 16:47:26.467 900 TIP 433713 756 6022953 2024-02-21 16:49:43.53 2024-02-21 16:49:43.53 4000 FEE 433962 1480 6022954 2024-02-21 16:49:43.53 2024-02-21 16:49:43.53 36000 TIP 433962 1425 6022956 2024-02-21 16:49:49.06 2024-02-21 16:49:49.06 500 FEE 433816 986 6022957 2024-02-21 16:49:49.06 2024-02-21 16:49:49.06 4500 TIP 433816 10698 6022964 2024-02-21 16:50:36.134 2024-02-21 16:50:36.134 4200 FEE 433954 14122 6022965 2024-02-21 16:50:36.134 2024-02-21 16:50:36.134 37800 TIP 433954 12738 6022966 2024-02-21 16:50:59.615 2024-02-21 16:50:59.615 1000 FEE 433969 18291 6022973 2024-02-21 16:53:08.68 2024-02-21 16:53:08.68 0 FEE 433970 7553 6022990 2024-02-21 16:54:04.84 2024-02-21 16:54:04.84 1000 FEE 433966 18717 6022991 2024-02-21 16:54:04.84 2024-02-21 16:54:04.84 9000 TIP 433966 4776 6022996 2024-02-21 16:54:06.119 2024-02-21 16:54:06.119 1000 FEE 433966 7903 6022997 2024-02-21 16:54:06.119 2024-02-21 16:54:06.119 9000 TIP 433966 1567 6023061 2024-02-21 16:59:37.296 2024-02-21 16:59:37.296 100 FEE 433974 644 6023062 2024-02-21 16:59:37.296 2024-02-21 16:59:37.296 900 TIP 433974 20756 6023106 2024-02-21 17:02:53.497 2024-02-21 17:02:53.497 4000 FEE 433889 9177 6023107 2024-02-21 17:02:53.497 2024-02-21 17:02:53.497 36000 TIP 433889 12768 6023137 2024-02-21 17:05:33.423 2024-02-21 17:05:33.423 1000 FEE 433985 4043 6023138 2024-02-21 17:05:33.423 2024-02-21 17:05:33.423 9000 TIP 433985 7903 6023139 2024-02-21 17:05:33.824 2024-02-21 17:05:33.824 1000 FEE 433985 17106 6023140 2024-02-21 17:05:33.824 2024-02-21 17:05:33.824 9000 TIP 433985 10291 6023141 2024-02-21 17:05:34.255 2024-02-21 17:05:34.255 1000 FEE 433985 5171 6023142 2024-02-21 17:05:34.255 2024-02-21 17:05:34.255 9000 TIP 433985 1959 6023154 2024-02-21 17:07:01.114 2024-02-21 17:07:01.114 3100 FEE 433973 18378 6023155 2024-02-21 17:07:01.114 2024-02-21 17:07:01.114 27900 TIP 433973 18769 6023237 2024-02-21 17:13:02.704 2024-02-21 17:13:02.704 3100 FEE 433997 10063 6023238 2024-02-21 17:13:02.704 2024-02-21 17:13:02.704 27900 TIP 433997 8954 6023240 2024-02-21 17:13:10.998 2024-02-21 17:13:10.998 1000 FEE 434006 18199 6023247 2024-02-21 17:14:37.187 2024-02-21 17:14:37.187 2100 FEE 434001 12356 6023248 2024-02-21 17:14:37.187 2024-02-21 17:14:37.187 18900 TIP 434001 3353 6023251 2024-02-21 17:15:18.459 2024-02-21 17:15:18.459 1000 FEE 434009 910 6022309 2024-02-21 15:44:47.786 2024-02-21 15:44:47.786 112100 FEE 433878 7675 6022310 2024-02-21 15:44:47.786 2024-02-21 15:44:47.786 1008900 TIP 433878 17201 6022355 2024-02-21 15:47:23.989 2024-02-21 15:47:23.989 2100 FEE 433833 18904 6022356 2024-02-21 15:47:23.989 2024-02-21 15:47:23.989 18900 TIP 433833 4313 6022381 2024-02-21 15:47:29.525 2024-02-21 15:47:29.525 2100 FEE 433760 1836 6022382 2024-02-21 15:47:29.525 2024-02-21 15:47:29.525 18900 TIP 433760 3506 6022391 2024-02-21 15:47:33.225 2024-02-21 15:47:33.225 2100 FEE 433554 18517 6022392 2024-02-21 15:47:33.225 2024-02-21 15:47:33.225 18900 TIP 433554 19038 6022425 2024-02-21 16:00:34.395 2024-02-21 16:00:34.395 1000 FEE 433892 21417 6022430 2024-02-21 16:02:03.584 2024-02-21 16:02:03.584 1000 STREAM 141924 986 6022438 2024-02-21 16:03:03.576 2024-02-21 16:03:03.576 1000 STREAM 141924 12946 6022447 2024-02-21 16:04:00.215 2024-02-21 16:04:00.215 2100 FEE 433403 5085 6022448 2024-02-21 16:04:00.215 2024-02-21 16:04:00.215 18900 TIP 433403 10094 6022449 2024-02-21 16:04:03.577 2024-02-21 16:04:03.577 1000 STREAM 141924 20133 6022457 2024-02-21 16:05:03.61 2024-02-21 16:05:03.61 1000 STREAM 141924 19854 6022465 2024-02-21 16:06:03.618 2024-02-21 16:06:03.618 1000 STREAM 141924 21522 6022474 2024-02-21 16:07:03.619 2024-02-21 16:07:03.619 1000 STREAM 141924 664 6022484 2024-02-21 16:08:03.179 2024-02-21 16:08:03.179 1000 STREAM 141924 15159 6022485 2024-02-21 16:09:03.184 2024-02-21 16:09:03.184 1000 STREAM 141924 1605 6022486 2024-02-21 16:09:23.498 2024-02-21 16:09:23.498 1000 FEE 433902 8726 6022492 2024-02-21 16:10:03.22 2024-02-21 16:10:03.22 1000 STREAM 141924 18601 6022494 2024-02-21 16:11:03.21 2024-02-21 16:11:03.21 1000 STREAM 141924 21119 6022506 2024-02-21 16:12:03.202 2024-02-21 16:12:03.202 1000 STREAM 141924 940 6022511 2024-02-21 16:13:03.242 2024-02-21 16:13:03.242 1000 STREAM 141924 21620 6022512 2024-02-21 16:14:03.225 2024-02-21 16:14:03.225 1000 STREAM 141924 900 6022514 2024-02-21 16:15:03.232 2024-02-21 16:15:03.232 1000 STREAM 141924 16998 6022515 2024-02-21 16:15:22.022 2024-02-21 16:15:22.022 1000 FEE 433909 15833 6022517 2024-02-21 16:15:47.19 2024-02-21 16:15:47.19 2100 FEE 433902 21514 6022518 2024-02-21 16:15:47.19 2024-02-21 16:15:47.19 18900 TIP 433902 20287 6022519 2024-02-21 16:16:03.227 2024-02-21 16:16:03.227 1000 STREAM 141924 17708 6022526 2024-02-21 16:16:53.453 2024-02-21 16:16:53.453 100 FEE 428331 2176 6022527 2024-02-21 16:16:53.453 2024-02-21 16:16:53.453 900 TIP 428331 876 6022530 2024-02-21 16:17:03.229 2024-02-21 16:17:03.229 1000 STREAM 141924 16680 6022539 2024-02-21 16:17:35.675 2024-02-21 16:17:35.675 3300 FEE 433828 9844 6022540 2024-02-21 16:17:35.675 2024-02-21 16:17:35.675 29700 TIP 433828 18892 6022545 2024-02-21 16:18:03.242 2024-02-21 16:18:03.242 1000 STREAM 141924 20563 6022547 2024-02-21 16:19:03.261 2024-02-21 16:19:03.261 1000 STREAM 141924 19980 6022550 2024-02-21 16:20:03.267 2024-02-21 16:20:03.267 1000 STREAM 141924 9336 6022551 2024-02-21 16:20:11.064 2024-02-21 16:20:11.064 1000 FEE 433918 1286 6022552 2024-02-21 16:21:03.277 2024-02-21 16:21:03.277 1000 STREAM 141924 1845 6022557 2024-02-21 16:21:14.527 2024-02-21 16:21:14.527 100 FEE 433891 739 6022558 2024-02-21 16:21:14.527 2024-02-21 16:21:14.527 900 TIP 433891 20623 6022563 2024-02-21 16:21:35.045 2024-02-21 16:21:35.045 1000 FEE 433919 11750 6022564 2024-02-21 16:22:03.265 2024-02-21 16:22:03.265 1000 STREAM 141924 14449 6022568 2024-02-21 16:23:03.279 2024-02-21 16:23:03.279 1000 STREAM 141924 18500 6022571 2024-02-21 16:24:03.291 2024-02-21 16:24:03.291 1000 STREAM 141924 1488 6022573 2024-02-21 16:25:03.308 2024-02-21 16:25:03.308 1000 STREAM 141924 21386 6022586 2024-02-21 16:25:26.762 2024-02-21 16:25:26.762 4000 FEE 433916 20551 6022587 2024-02-21 16:25:26.762 2024-02-21 16:25:26.762 36000 TIP 433916 11038 6022591 2024-02-21 16:26:03.326 2024-02-21 16:26:03.326 1000 STREAM 141924 6383 6022598 2024-02-21 16:26:14.466 2024-02-21 16:26:14.466 1000 FEE 433346 18664 6022599 2024-02-21 16:26:14.466 2024-02-21 16:26:14.466 9000 TIP 433346 13931 6022604 2024-02-21 16:26:42.323 2024-02-21 16:26:42.323 1000 FEE 433832 16594 6022605 2024-02-21 16:26:42.323 2024-02-21 16:26:42.323 9000 TIP 433832 20573 6022614 2024-02-21 16:26:46.442 2024-02-21 16:26:46.442 1000 FEE 433410 20439 6022615 2024-02-21 16:26:46.442 2024-02-21 16:26:46.442 9000 TIP 433410 12160 6022622 2024-02-21 16:27:03.33 2024-02-21 16:27:03.33 1000 STREAM 141924 18735 6022636 2024-02-21 16:28:03.344 2024-02-21 16:28:03.344 1000 STREAM 141924 19488 6022647 2024-02-21 16:29:03.355 2024-02-21 16:29:03.355 1000 STREAM 141924 10638 6022665 2024-02-21 16:30:03.381 2024-02-21 16:30:03.381 1000 STREAM 141924 6555 6022668 2024-02-21 16:30:34.155 2024-02-21 16:30:34.155 1000 FEE 433932 3409 6022670 2024-02-21 16:30:39.185 2024-02-21 16:30:39.185 125000 FEE 433934 20509 6022686 2024-02-21 16:31:03.366 2024-02-21 16:31:03.366 1000 STREAM 141924 13174 6022714 2024-02-21 16:32:03.376 2024-02-21 16:32:03.376 1000 STREAM 141924 19021 6022730 2024-02-21 16:33:03.387 2024-02-21 16:33:03.387 1000 STREAM 141924 2952 6022736 2024-02-21 16:34:03.396 2024-02-21 16:34:03.396 1000 STREAM 141924 21591 6022740 2024-02-21 16:35:03.427 2024-02-21 16:35:03.427 1000 STREAM 141924 19622 6022751 2024-02-21 16:36:03.419 2024-02-21 16:36:03.419 1000 STREAM 141924 18511 6022758 2024-02-21 16:37:03.437 2024-02-21 16:37:03.437 1000 STREAM 141924 19151 6022761 2024-02-21 16:38:03.47 2024-02-21 16:38:03.47 1000 STREAM 141924 12769 6022779 2024-02-21 16:39:03.469 2024-02-21 16:39:03.469 1000 STREAM 141924 20094 6022826 2024-02-21 16:40:03.508 2024-02-21 16:40:03.508 1000 STREAM 141924 2508 6022831 2024-02-21 16:41:03.513 2024-02-21 16:41:03.513 1000 STREAM 141924 717 6022853 2024-02-21 16:42:03.504 2024-02-21 16:42:03.504 1000 STREAM 141924 2013 6022865 2024-02-21 16:43:03.52 2024-02-21 16:43:03.52 1000 STREAM 141924 19502 6022884 2024-02-21 16:44:03.532 2024-02-21 16:44:03.532 1000 STREAM 141924 1729 6022889 2024-02-21 16:45:03.551 2024-02-21 16:45:03.551 1000 STREAM 141924 16356 6022905 2024-02-21 16:46:03.564 2024-02-21 16:46:03.564 1000 STREAM 141924 13398 6022909 2024-02-21 16:47:03.61 2024-02-21 16:47:03.61 1000 STREAM 141924 19484 6022945 2024-02-21 16:48:03.583 2024-02-21 16:48:03.583 1000 STREAM 141924 20826 6022951 2024-02-21 16:49:03.596 2024-02-21 16:49:03.596 1000 STREAM 141924 7760 6022960 2024-02-21 16:50:03.613 2024-02-21 16:50:03.613 1000 STREAM 141924 5794 6022967 2024-02-21 16:51:03.612 2024-02-21 16:51:03.612 1000 STREAM 141924 19138 6022970 2024-02-21 16:52:03.613 2024-02-21 16:52:03.613 1000 STREAM 141924 21131 6022972 2024-02-21 16:53:03.639 2024-02-21 16:53:03.639 1000 STREAM 141924 9365 6022989 2024-02-21 16:54:03.64 2024-02-21 16:54:03.64 1000 STREAM 141924 651 6023018 2024-02-21 16:55:03.657 2024-02-21 16:55:03.657 1000 STREAM 141924 7553 6023029 2024-02-21 16:56:03.656 2024-02-21 16:56:03.656 1000 STREAM 141924 21437 6023032 2024-02-21 16:57:03.662 2024-02-21 16:57:03.662 1000 STREAM 141924 6137 6023043 2024-02-21 16:58:03.674 2024-02-21 16:58:03.674 1000 STREAM 141924 15728 6023057 2024-02-21 16:59:03.684 2024-02-21 16:59:03.684 1000 STREAM 141924 2013 6023070 2024-02-21 17:00:03.766 2024-02-21 17:00:03.766 1000 STREAM 141924 16296 6023083 2024-02-21 17:01:03.701 2024-02-21 17:01:03.701 1000 STREAM 141924 814 6023086 2024-02-21 17:02:03.713 2024-02-21 17:02:03.713 1000 STREAM 141924 11885 6023108 2024-02-21 17:03:03.717 2024-02-21 17:03:03.717 1000 STREAM 141924 15282 6023118 2024-02-21 17:04:03.729 2024-02-21 17:04:03.729 1000 STREAM 141924 12921 6023128 2024-02-21 17:05:03.722 2024-02-21 17:05:03.722 1000 STREAM 141924 999 6023150 2024-02-21 17:06:03.727 2024-02-21 17:06:03.727 1000 STREAM 141924 946 6023156 2024-02-21 17:07:03.747 2024-02-21 17:07:03.747 1000 STREAM 141924 19198 6023165 2024-02-21 17:08:03.743 2024-02-21 17:08:03.743 1000 STREAM 141924 19535 6023169 2024-02-21 17:09:03.757 2024-02-21 17:09:03.757 1000 STREAM 141924 5701 6023172 2024-02-21 17:10:03.761 2024-02-21 17:10:03.761 1000 STREAM 141924 634 6023181 2024-02-21 17:11:03.849 2024-02-21 17:11:03.849 1000 STREAM 141924 7654 6023215 2024-02-21 17:12:03.848 2024-02-21 17:12:03.848 1000 STREAM 141924 11477 6023239 2024-02-21 17:13:03.877 2024-02-21 17:13:03.877 1000 STREAM 141924 660 6023245 2024-02-21 17:14:03.862 2024-02-21 17:14:03.862 1000 STREAM 141924 11609 6023250 2024-02-21 17:15:03.872 2024-02-21 17:15:03.872 1000 STREAM 141924 14404 6022501 2024-02-21 16:11:30.09 2024-02-21 16:11:30.09 100 FEE 433886 1180 6022502 2024-02-21 16:11:30.09 2024-02-21 16:11:30.09 900 TIP 433886 21547 6022513 2024-02-21 16:14:23.255 2024-02-21 16:14:23.255 1000 FEE 433908 11866 6022565 2024-02-21 16:22:09.609 2024-02-21 16:22:09.609 1000 FEE 433920 11240 6022569 2024-02-21 16:23:27.913 2024-02-21 16:23:27.913 11700 FEE 433796 1426 6022570 2024-02-21 16:23:27.913 2024-02-21 16:23:27.913 105300 TIP 433796 2722 6022576 2024-02-21 16:25:13.189 2024-02-21 16:25:13.189 4200 FEE 433677 11992 6022577 2024-02-21 16:25:13.189 2024-02-21 16:25:13.189 37800 TIP 433677 5387 6022582 2024-02-21 16:25:15.785 2024-02-21 16:25:15.785 4200 FEE 433677 19199 6022583 2024-02-21 16:25:15.785 2024-02-21 16:25:15.785 37800 TIP 433677 21352 6022589 2024-02-21 16:25:55.354 2024-02-21 16:25:55.354 2100 FEE 433877 6749 6022590 2024-02-21 16:25:55.354 2024-02-21 16:25:55.354 18900 TIP 433877 13217 6022594 2024-02-21 16:26:13.592 2024-02-21 16:26:13.592 1000 FEE 433346 15060 6022595 2024-02-21 16:26:13.592 2024-02-21 16:26:13.592 9000 TIP 433346 21444 6022596 2024-02-21 16:26:14.049 2024-02-21 16:26:14.049 1000 FEE 433346 828 6022597 2024-02-21 16:26:14.049 2024-02-21 16:26:14.049 9000 TIP 433346 19813 6022600 2024-02-21 16:26:15.053 2024-02-21 16:26:15.053 1000 FEE 433346 21589 6022601 2024-02-21 16:26:15.053 2024-02-21 16:26:15.053 9000 TIP 433346 21254 6022602 2024-02-21 16:26:15.505 2024-02-21 16:26:15.505 1000 FEE 433346 2327 6022603 2024-02-21 16:26:15.505 2024-02-21 16:26:15.505 9000 TIP 433346 1272 6022606 2024-02-21 16:26:44.561 2024-02-21 16:26:44.561 1000 FEE 433410 2749 6022607 2024-02-21 16:26:44.561 2024-02-21 16:26:44.561 9000 TIP 433410 13527 6022610 2024-02-21 16:26:45.456 2024-02-21 16:26:45.456 1000 FEE 433410 716 6022611 2024-02-21 16:26:45.456 2024-02-21 16:26:45.456 9000 TIP 433410 20539 6022620 2024-02-21 16:26:57.291 2024-02-21 16:26:57.291 1000 FEE 433760 5377 6022621 2024-02-21 16:26:57.291 2024-02-21 16:26:57.291 9000 TIP 433760 19570 6022627 2024-02-21 16:27:22.691 2024-02-21 16:27:22.691 300 FEE 433888 20479 6022628 2024-02-21 16:27:22.691 2024-02-21 16:27:22.691 2700 TIP 433888 21424 6022629 2024-02-21 16:27:26.658 2024-02-21 16:27:26.658 1000 FEE 433543 2402 6022630 2024-02-21 16:27:26.658 2024-02-21 16:27:26.658 9000 TIP 433543 10096 6022631 2024-02-21 16:27:29.286 2024-02-21 16:27:29.286 1000 FEE 433927 20924 6022632 2024-02-21 16:27:43.001 2024-02-21 16:27:43.001 3100 FEE 433925 19837 6022633 2024-02-21 16:27:43.001 2024-02-21 16:27:43.001 27900 TIP 433925 14074 6022641 2024-02-21 16:28:24.668 2024-02-21 16:28:24.668 2100 FEE 433364 11897 6022642 2024-02-21 16:28:24.668 2024-02-21 16:28:24.668 18900 TIP 433364 5359 6022643 2024-02-21 16:28:43.622 2024-02-21 16:28:43.622 1000 FEE 433828 8648 6022644 2024-02-21 16:28:43.622 2024-02-21 16:28:43.622 9000 TIP 433828 20162 6022648 2024-02-21 16:29:07.264 2024-02-21 16:29:07.264 2000 FEE 433883 18583 6022649 2024-02-21 16:29:07.264 2024-02-21 16:29:07.264 18000 TIP 433883 16543 6022654 2024-02-21 16:29:25.176 2024-02-21 16:29:25.176 5000 FEE 433873 13216 6022655 2024-02-21 16:29:25.176 2024-02-21 16:29:25.176 45000 TIP 433873 1468 6022659 2024-02-21 16:29:38.404 2024-02-21 16:29:38.404 2100 FEE 433916 18819 6022660 2024-02-21 16:29:38.404 2024-02-21 16:29:38.404 18900 TIP 433916 1713 6022661 2024-02-21 16:29:41.035 2024-02-21 16:29:41.035 2100 FEE 433850 1483 6022662 2024-02-21 16:29:41.035 2024-02-21 16:29:41.035 18900 TIP 433850 21527 6022666 2024-02-21 16:30:25.541 2024-02-21 16:30:25.541 1000 FEE 433930 11590 6022669 2024-02-21 16:30:36.904 2024-02-21 16:30:36.904 10000 FEE 433933 1571 6022675 2024-02-21 16:30:43.257 2024-02-21 16:30:43.257 1000 FEE 433740 17741 6022676 2024-02-21 16:30:43.257 2024-02-21 16:30:43.257 9000 TIP 433740 17541 6022679 2024-02-21 16:30:43.86 2024-02-21 16:30:43.86 1000 FEE 433740 848 6022680 2024-02-21 16:30:43.86 2024-02-21 16:30:43.86 9000 TIP 433740 16282 6022681 2024-02-21 16:30:48.668 2024-02-21 16:30:48.668 2100 FEE 433843 21493 6022682 2024-02-21 16:30:48.668 2024-02-21 16:30:48.668 18900 TIP 433843 861 6022691 2024-02-21 16:31:05.215 2024-02-21 16:31:05.215 27900 FEE 433828 21600 6022692 2024-02-21 16:31:05.215 2024-02-21 16:31:05.215 251100 TIP 433828 18321 6022700 2024-02-21 16:31:38.533 2024-02-21 16:31:38.533 1000 FEE 433930 17517 6022701 2024-02-21 16:31:38.533 2024-02-21 16:31:38.533 9000 TIP 433930 11789 6022702 2024-02-21 16:31:39.025 2024-02-21 16:31:39.025 1000 FEE 433930 19581 6022703 2024-02-21 16:31:39.025 2024-02-21 16:31:39.025 9000 TIP 433930 622 6022706 2024-02-21 16:31:39.934 2024-02-21 16:31:39.934 1000 FEE 433930 10398 6022707 2024-02-21 16:31:39.934 2024-02-21 16:31:39.934 9000 TIP 433930 1567 6022717 2024-02-21 16:32:05.181 2024-02-21 16:32:05.181 100000 FEE 433937 15544 6022720 2024-02-21 16:32:14.198 2024-02-21 16:32:14.198 900 FEE 433937 15367 6022721 2024-02-21 16:32:14.198 2024-02-21 16:32:14.198 8100 TIP 433937 20412 6022726 2024-02-21 16:32:23.59 2024-02-21 16:32:23.59 4000 FEE 433931 21048 6022727 2024-02-21 16:32:23.59 2024-02-21 16:32:23.59 36000 TIP 433931 20509 6022728 2024-02-21 16:32:56.799 2024-02-21 16:32:56.799 3100 FEE 433851 11220 6022729 2024-02-21 16:32:56.799 2024-02-21 16:32:56.799 27900 TIP 433851 9084 6022741 2024-02-21 16:35:35.396 2024-02-21 16:35:35.396 100 FEE 433937 836 6022742 2024-02-21 16:35:35.396 2024-02-21 16:35:35.396 900 TIP 433937 8289 6022745 2024-02-21 16:35:36.292 2024-02-21 16:35:36.292 100 FEE 433937 19446 6022746 2024-02-21 16:35:36.292 2024-02-21 16:35:36.292 900 TIP 433937 19570 6022747 2024-02-21 16:35:36.875 2024-02-21 16:35:36.875 100 FEE 433937 21012 6022748 2024-02-21 16:35:36.875 2024-02-21 16:35:36.875 900 TIP 433937 974 6022749 2024-02-21 16:35:37.219 2024-02-21 16:35:37.219 100 FEE 433937 795 6022750 2024-02-21 16:35:37.219 2024-02-21 16:35:37.219 900 TIP 433937 658 6022754 2024-02-21 16:36:53.283 2024-02-21 16:36:53.283 800 FEE 433499 19929 6022755 2024-02-21 16:36:53.283 2024-02-21 16:36:53.283 7200 TIP 433499 2326 6022756 2024-02-21 16:36:56.899 2024-02-21 16:36:56.899 1600 FEE 433828 1769 6022757 2024-02-21 16:36:56.899 2024-02-21 16:36:56.899 14400 TIP 433828 21527 6022760 2024-02-21 16:37:44.421 2024-02-21 16:37:44.421 1000 FEE 433941 18904 6022764 2024-02-21 16:38:26.102 2024-02-21 16:38:26.102 1000 FEE 433435 14785 6022765 2024-02-21 16:38:26.102 2024-02-21 16:38:26.102 9000 TIP 433435 2709 6022774 2024-02-21 16:38:29.551 2024-02-21 16:38:29.551 1000 FEE 433942 20066 6022777 2024-02-21 16:38:57.276 2024-02-21 16:38:57.276 100000 FEE 433943 2614 6022784 2024-02-21 16:39:36.634 2024-02-21 16:39:36.634 1000 FEE 433946 691 6022785 2024-02-21 16:39:37.469 2024-02-21 16:39:37.469 100 FEE 433943 1603 6022786 2024-02-21 16:39:37.469 2024-02-21 16:39:37.469 900 TIP 433943 21072 6022787 2024-02-21 16:39:37.558 2024-02-21 16:39:37.558 100 FEE 433943 18625 6022788 2024-02-21 16:39:37.558 2024-02-21 16:39:37.558 900 TIP 433943 739 6022789 2024-02-21 16:39:37.649 2024-02-21 16:39:37.649 200 FEE 433943 20087 6022790 2024-02-21 16:39:37.649 2024-02-21 16:39:37.649 1800 TIP 433943 21588 6022791 2024-02-21 16:39:37.876 2024-02-21 16:39:37.876 100 FEE 433943 19527 6022792 2024-02-21 16:39:37.876 2024-02-21 16:39:37.876 900 TIP 433943 704 6022796 2024-02-21 16:39:38.091 2024-02-21 16:39:38.091 100 FEE 433943 1814 6022797 2024-02-21 16:39:38.091 2024-02-21 16:39:38.091 900 TIP 433943 8472 6022798 2024-02-21 16:39:38.223 2024-02-21 16:39:38.223 100 FEE 433943 2156 6022799 2024-02-21 16:39:38.223 2024-02-21 16:39:38.223 900 TIP 433943 14258 6022800 2024-02-21 16:39:38.326 2024-02-21 16:39:38.326 100 FEE 433943 11091 6022801 2024-02-21 16:39:38.326 2024-02-21 16:39:38.326 900 TIP 433943 4323 6022802 2024-02-21 16:39:38.66 2024-02-21 16:39:38.66 200 FEE 433943 3347 6022803 2024-02-21 16:39:38.66 2024-02-21 16:39:38.66 1800 TIP 433943 21405 6022804 2024-02-21 16:39:38.799 2024-02-21 16:39:38.799 100 FEE 433943 10102 6022805 2024-02-21 16:39:38.799 2024-02-21 16:39:38.799 900 TIP 433943 631 6022806 2024-02-21 16:39:38.957 2024-02-21 16:39:38.957 100 FEE 433943 15526 6022807 2024-02-21 16:39:38.957 2024-02-21 16:39:38.957 900 TIP 433943 8074 6022820 2024-02-21 16:39:40.314 2024-02-21 16:39:40.314 100 FEE 433943 6515 6022731 2024-02-21 16:33:18.085 2024-02-21 16:33:18.085 27900 FEE 433851 20613 6022732 2024-02-21 16:33:18.085 2024-02-21 16:33:18.085 251100 TIP 433851 19484 6022737 2024-02-21 16:34:16.996 2024-02-21 16:34:16.996 1000 FEE 433939 19660 6022772 2024-02-21 16:38:28.415 2024-02-21 16:38:28.415 1000 FEE 433435 21589 6022773 2024-02-21 16:38:28.415 2024-02-21 16:38:28.415 9000 TIP 433435 2741 6022793 2024-02-21 16:39:37.975 2024-02-21 16:39:37.975 100 FEE 433943 16329 6022794 2024-02-21 16:39:37.975 2024-02-21 16:39:37.975 900 TIP 433943 2322 6022810 2024-02-21 16:39:39.424 2024-02-21 16:39:39.424 100 FEE 433943 12609 6022811 2024-02-21 16:39:39.424 2024-02-21 16:39:39.424 900 TIP 433943 16542 6022816 2024-02-21 16:39:40.028 2024-02-21 16:39:40.028 100 FEE 433943 21609 6022817 2024-02-21 16:39:40.028 2024-02-21 16:39:40.028 900 TIP 433943 11956 6022818 2024-02-21 16:39:40.153 2024-02-21 16:39:40.153 100 FEE 433943 18040 6022819 2024-02-21 16:39:40.153 2024-02-21 16:39:40.153 900 TIP 433943 18815 6022822 2024-02-21 16:39:43.983 2024-02-21 16:39:43.983 22700 FEE 433851 19812 6022823 2024-02-21 16:39:43.983 2024-02-21 16:39:43.983 204300 TIP 433851 8004 6022858 2024-02-21 16:42:33.083 2024-02-21 16:42:33.083 1000 FEE 433951 16649 6022859 2024-02-21 16:42:35.461 2024-02-21 16:42:35.461 300 FEE 433938 2204 6022860 2024-02-21 16:42:35.461 2024-02-21 16:42:35.461 2700 TIP 433938 660 6022866 2024-02-21 16:43:07.963 2024-02-21 16:43:07.963 5000 FEE 433711 649 6022867 2024-02-21 16:43:07.963 2024-02-21 16:43:07.963 45000 TIP 433711 20581 6022879 2024-02-21 16:43:35.398 2024-02-21 16:43:35.398 5000 FEE 433646 13843 6022880 2024-02-21 16:43:35.398 2024-02-21 16:43:35.398 45000 TIP 433646 954 6022882 2024-02-21 16:43:54.217 2024-02-21 16:43:54.217 3100 FEE 433824 19030 6022883 2024-02-21 16:43:54.217 2024-02-21 16:43:54.217 27900 TIP 433824 4128 6022890 2024-02-21 16:45:10.794 2024-02-21 16:45:10.794 5000 FEE 433943 2609 6022891 2024-02-21 16:45:10.794 2024-02-21 16:45:10.794 45000 TIP 433943 16858 6022896 2024-02-21 16:45:37.37 2024-02-21 16:45:37.37 300 FEE 433946 16543 6022897 2024-02-21 16:45:37.37 2024-02-21 16:45:37.37 2700 TIP 433946 9863 6022903 2024-02-21 16:45:57.357 2024-02-21 16:45:57.357 5000 FEE 433679 20087 6022904 2024-02-21 16:45:57.357 2024-02-21 16:45:57.357 45000 TIP 433679 9350 6022911 2024-02-21 16:47:09.677 2024-02-21 16:47:09.677 3000 DONT_LIKE_THIS 433911 10270 6022912 2024-02-21 16:47:10.524 2024-02-21 16:47:10.524 1000 FEE 433962 20208 6022923 2024-02-21 16:47:26.704 2024-02-21 16:47:26.704 100 FEE 433713 2508 6022924 2024-02-21 16:47:26.704 2024-02-21 16:47:26.704 900 TIP 433713 706 6022994 2024-02-21 16:54:05.757 2024-02-21 16:54:05.757 1000 FEE 433966 17552 6022995 2024-02-21 16:54:05.757 2024-02-21 16:54:05.757 9000 TIP 433966 18663 6023019 2024-02-21 16:55:15.523 2024-02-21 16:55:15.523 1000 FEE 433974 750 6023044 2024-02-21 16:58:17.897 2024-02-21 16:58:17.897 1000 FEE 433937 19902 6023045 2024-02-21 16:58:17.897 2024-02-21 16:58:17.897 9000 TIP 433937 9200 6023069 2024-02-21 17:00:00.6 2024-02-21 17:00:00.6 1000 FEE 433980 14939 6023096 2024-02-21 17:02:33.639 2024-02-21 17:02:33.639 1000 FEE 433980 1145 6023097 2024-02-21 17:02:33.639 2024-02-21 17:02:33.639 9000 TIP 433980 14280 6023098 2024-02-21 17:02:45.882 2024-02-21 17:02:45.882 3100 FEE 433970 18016 6023099 2024-02-21 17:02:45.882 2024-02-21 17:02:45.882 27900 TIP 433970 19193 6023117 2024-02-21 17:03:50.308 2024-02-21 17:03:50.308 1000 FEE 433984 1105 6023119 2024-02-21 17:04:07.62 2024-02-21 17:04:07.62 1000 FEE 433985 630 6023122 2024-02-21 17:04:36.705 2024-02-21 17:04:36.705 10000 FEE 433986 4126 6023151 2024-02-21 17:06:09.795 2024-02-21 17:06:09.795 0 FEE 433983 16347 6023161 2024-02-21 17:07:29.754 2024-02-21 17:07:29.754 3100 FEE 433975 21575 6023162 2024-02-21 17:07:29.754 2024-02-21 17:07:29.754 27900 TIP 433975 9705 6023167 2024-02-21 17:08:52.849 2024-02-21 17:08:52.849 1000 FEE 433996 8074 6023170 2024-02-21 17:09:51.142 2024-02-21 17:09:51.142 1000 FEE 433998 17592 6023171 2024-02-21 17:09:52.063 2024-02-21 17:09:52.063 1000 FEE 433999 16839 6023173 2024-02-21 17:10:06.551 2024-02-21 17:10:06.551 1000 FEE 434000 19243 6023208 2024-02-21 17:11:30.494 2024-02-21 17:11:30.494 3300 FEE 433740 21048 6023209 2024-02-21 17:11:30.494 2024-02-21 17:11:30.494 29700 TIP 433740 1571 6023241 2024-02-21 17:13:11.863 2024-02-21 17:13:11.863 900000 FEE 434000 17541 6023242 2024-02-21 17:13:11.863 2024-02-21 17:13:11.863 8100000 TIP 434000 6777 6023276 2024-02-21 17:18:42.244 2024-02-21 17:18:42.244 8300 FEE 433849 20892 6023277 2024-02-21 17:18:42.244 2024-02-21 17:18:42.244 74700 TIP 433849 20276 6023285 2024-02-21 17:19:35.25 2024-02-21 17:19:35.25 100000 FEE 434013 11678 6023286 2024-02-21 17:19:54.416 2024-02-21 17:19:54.416 100 FEE 434013 2652 6023287 2024-02-21 17:19:54.416 2024-02-21 17:19:54.416 900 TIP 434013 20881 6023295 2024-02-21 17:20:14.883 2024-02-21 17:20:14.883 3100 FEE 433978 3400 6023296 2024-02-21 17:20:14.883 2024-02-21 17:20:14.883 27900 TIP 433978 16270 6023303 2024-02-21 17:20:38.475 2024-02-21 17:20:38.475 2100 FEE 433986 2709 6023304 2024-02-21 17:20:38.475 2024-02-21 17:20:38.475 18900 TIP 433986 12779 6023314 2024-02-21 17:21:01.363 2024-02-21 17:21:01.363 5000 FEE 433810 9695 6023315 2024-02-21 17:21:01.363 2024-02-21 17:21:01.363 45000 TIP 433810 12049 6023379 2024-02-21 17:26:21.519 2024-02-21 17:26:21.519 100000 FEE 434027 6164 6023395 2024-02-21 17:27:05.999 2024-02-21 17:27:05.999 1000 FEE 434028 1692 6023414 2024-02-21 17:27:34.703 2024-02-21 17:27:34.703 300 FEE 434027 16347 6023415 2024-02-21 17:27:34.703 2024-02-21 17:27:34.703 2700 TIP 434027 4304 6023440 2024-02-21 17:28:24.476 2024-02-21 17:28:24.476 2100 FEE 433849 6537 6023441 2024-02-21 17:28:24.476 2024-02-21 17:28:24.476 18900 TIP 433849 18862 6023468 2024-02-21 17:28:42.929 2024-02-21 17:28:42.929 1000 FEE 433844 1162 6023469 2024-02-21 17:28:42.929 2024-02-21 17:28:42.929 9000 TIP 433844 20551 6023513 2024-02-21 17:29:02.965 2024-02-21 17:29:02.965 1000 FEE 434039 18264 6023519 2024-02-21 17:29:13.698 2024-02-21 17:29:13.698 100 FEE 433052 16848 6023520 2024-02-21 17:29:13.698 2024-02-21 17:29:13.698 900 TIP 433052 6717 6023537 2024-02-21 17:29:27.315 2024-02-21 17:29:27.315 9000 FEE 433695 11395 6023538 2024-02-21 17:29:27.315 2024-02-21 17:29:27.315 81000 TIP 433695 13399 6023588 2024-02-21 17:29:44.491 2024-02-21 17:29:44.491 2300 FEE 433844 19031 6023589 2024-02-21 17:29:44.491 2024-02-21 17:29:44.491 20700 TIP 433844 1534 6023598 2024-02-21 17:29:46.126 2024-02-21 17:29:46.126 2300 FEE 433844 5444 6023599 2024-02-21 17:29:46.126 2024-02-21 17:29:46.126 20700 TIP 433844 20251 6023658 2024-02-21 17:33:18.675 2024-02-21 17:33:18.675 3300 FEE 434007 1428 6023659 2024-02-21 17:33:18.675 2024-02-21 17:33:18.675 29700 TIP 434007 4763 6023662 2024-02-21 17:33:28.585 2024-02-21 17:33:28.585 0 FEE 434045 21131 6023663 2024-02-21 17:33:37.057 2024-02-21 17:33:37.057 0 FEE 434045 18640 6023688 2024-02-21 17:35:07.031 2024-02-21 17:35:07.031 3300 FEE 433746 1970 6023689 2024-02-21 17:35:07.031 2024-02-21 17:35:07.031 29700 TIP 433746 20596 6023700 2024-02-21 17:36:59.223 2024-02-21 17:36:59.223 1000 FEE 434049 6471 6023708 2024-02-21 17:37:25.273 2024-02-21 17:37:25.273 2300 FEE 434026 11522 6023709 2024-02-21 17:37:25.273 2024-02-21 17:37:25.273 20700 TIP 434026 866 6023711 2024-02-21 17:37:53.327 2024-02-21 17:37:53.327 50000 FEE 433555 19854 6023712 2024-02-21 17:37:53.327 2024-02-21 17:37:53.327 450000 TIP 433555 2361 6023715 2024-02-21 17:38:56.833 2024-02-21 17:38:56.833 1000 FEE 434052 18932 6023740 2024-02-21 17:41:38.541 2024-02-21 17:41:38.541 4000 FEE 434038 9705 6023741 2024-02-21 17:41:38.541 2024-02-21 17:41:38.541 36000 TIP 434038 19235 6023758 2024-02-21 17:41:48.06 2024-02-21 17:41:48.06 2300 FEE 433943 10273 6023759 2024-02-21 17:41:48.06 2024-02-21 17:41:48.06 20700 TIP 433943 8168 6023777 2024-02-21 17:42:08.404 2024-02-21 17:42:08.404 10000 FEE 434060 14663 6023783 2024-02-21 17:43:02.188 2024-02-21 17:43:02.188 2100 FEE 433981 6003 6023784 2024-02-21 17:43:02.188 2024-02-21 17:43:02.188 18900 TIP 433981 5499 6023786 2024-02-21 17:43:07.08 2024-02-21 17:43:07.08 1600 FEE 434056 10409 6023787 2024-02-21 17:43:07.08 2024-02-21 17:43:07.08 14400 TIP 434056 1141 6022821 2024-02-21 16:39:40.314 2024-02-21 16:39:40.314 900 TIP 433943 20433 6022847 2024-02-21 16:41:59.087 2024-02-21 16:41:59.087 1000 FEE 433940 11750 6022848 2024-02-21 16:41:59.087 2024-02-21 16:41:59.087 9000 TIP 433940 16124 6022849 2024-02-21 16:41:59.315 2024-02-21 16:41:59.315 1000 FEE 433940 1245 6022850 2024-02-21 16:41:59.315 2024-02-21 16:41:59.315 9000 TIP 433940 12158 6022887 2024-02-21 16:44:53.205 2024-02-21 16:44:53.205 300 FEE 433854 21263 6022888 2024-02-21 16:44:53.205 2024-02-21 16:44:53.205 2700 TIP 433854 1198 6022919 2024-02-21 16:47:26.294 2024-02-21 16:47:26.294 100 FEE 433713 19553 6022920 2024-02-21 16:47:26.294 2024-02-21 16:47:26.294 900 TIP 433713 16542 6022927 2024-02-21 16:47:27.185 2024-02-21 16:47:27.185 100 FEE 433713 21603 6022928 2024-02-21 16:47:27.185 2024-02-21 16:47:27.185 900 TIP 433713 5308 6022950 2024-02-21 16:48:44.288 2024-02-21 16:48:44.288 1000 FEE 433965 21207 6022968 2024-02-21 16:51:11.93 2024-02-21 16:51:11.93 3100 FEE 433969 10342 6022969 2024-02-21 16:51:11.93 2024-02-21 16:51:11.93 27900 TIP 433969 10981 6022974 2024-02-21 16:53:23.08 2024-02-21 16:53:23.08 125000 FEE 433971 12222 6022985 2024-02-21 16:53:47.452 2024-02-21 16:53:47.452 1000 FEE 433948 19533 6022986 2024-02-21 16:53:47.452 2024-02-21 16:53:47.452 9000 TIP 433948 21417 6022998 2024-02-21 16:54:06.487 2024-02-21 16:54:06.487 1000 FEE 433966 2829 6022999 2024-02-21 16:54:06.487 2024-02-21 16:54:06.487 9000 TIP 433966 9351 6023012 2024-02-21 16:54:09.83 2024-02-21 16:54:09.83 100 FEE 433828 21514 6023013 2024-02-21 16:54:09.83 2024-02-21 16:54:09.83 900 TIP 433828 623 6023026 2024-02-21 16:55:19.631 2024-02-21 16:55:19.631 1000 FEE 433713 15386 6023027 2024-02-21 16:55:19.631 2024-02-21 16:55:19.631 9000 TIP 433713 9366 6023035 2024-02-21 16:57:05.32 2024-02-21 16:57:05.32 2100 FEE 433942 19259 6023036 2024-02-21 16:57:05.32 2024-02-21 16:57:05.32 18900 TIP 433942 21393 6023037 2024-02-21 16:57:05.434 2024-02-21 16:57:05.434 2100 FEE 433942 9332 6023038 2024-02-21 16:57:05.434 2024-02-21 16:57:05.434 18900 TIP 433942 16809 6023058 2024-02-21 16:59:24.491 2024-02-21 16:59:24.491 1000 FEE 433979 1534 6023059 2024-02-21 16:59:37.02 2024-02-21 16:59:37.02 100 FEE 433974 18188 6023060 2024-02-21 16:59:37.02 2024-02-21 16:59:37.02 900 TIP 433974 19809 6023075 2024-02-21 17:00:36.659 2024-02-21 17:00:36.659 2100 FEE 433870 20381 6023076 2024-02-21 17:00:36.659 2024-02-21 17:00:36.659 18900 TIP 433870 6149 6023079 2024-02-21 17:00:54.132 2024-02-21 17:00:54.132 2100 FEE 433966 19174 6023080 2024-02-21 17:00:54.132 2024-02-21 17:00:54.132 18900 TIP 433966 8945 6023084 2024-02-21 17:01:33.37 2024-02-21 17:01:33.37 10000 FEE 433943 17682 6023085 2024-02-21 17:01:33.37 2024-02-21 17:01:33.37 90000 TIP 433943 7125 6023092 2024-02-21 17:02:32.491 2024-02-21 17:02:32.491 1000 FEE 433980 21048 6023093 2024-02-21 17:02:32.491 2024-02-21 17:02:32.491 9000 TIP 433980 19843 6023120 2024-02-21 17:04:31.778 2024-02-21 17:04:31.778 1600 FEE 433889 12261 6023121 2024-02-21 17:04:31.778 2024-02-21 17:04:31.778 14400 TIP 433889 20301 6023126 2024-02-21 17:04:53.545 2024-02-21 17:04:53.545 2100 FEE 433976 4084 6023127 2024-02-21 17:04:53.545 2024-02-21 17:04:53.545 18900 TIP 433976 18119 6023160 2024-02-21 17:07:28.854 2024-02-21 17:07:28.854 1000 FEE 433992 21022 6023164 2024-02-21 17:07:53.345 2024-02-21 17:07:53.345 1000 FEE 433994 2322 6023175 2024-02-21 17:10:21.761 2024-02-21 17:10:21.761 1000 FEE 434002 18529 6023227 2024-02-21 17:12:51.949 2024-02-21 17:12:51.949 3300 FEE 433740 11038 6023228 2024-02-21 17:12:51.949 2024-02-21 17:12:51.949 29700 TIP 433740 2437 6023255 2024-02-21 17:17:16.387 2024-02-21 17:17:16.387 2100 FEE 433859 6160 6023256 2024-02-21 17:17:16.387 2024-02-21 17:17:16.387 18900 TIP 433859 13133 6023280 2024-02-21 17:18:46.813 2024-02-21 17:18:46.813 8300 FEE 433842 10311 6023281 2024-02-21 17:18:46.813 2024-02-21 17:18:46.813 74700 TIP 433842 621 6023283 2024-02-21 17:19:21.17 2024-02-21 17:19:21.17 1000 FEE 433977 19346 6023284 2024-02-21 17:19:21.17 2024-02-21 17:19:21.17 9000 TIP 433977 19524 6023290 2024-02-21 17:19:55.32 2024-02-21 17:19:55.32 100 FEE 434013 12808 6023291 2024-02-21 17:19:55.32 2024-02-21 17:19:55.32 900 TIP 434013 21180 6023305 2024-02-21 17:20:38.628 2024-02-21 17:20:38.628 100 FEE 434012 15100 6023306 2024-02-21 17:20:38.628 2024-02-21 17:20:38.628 900 TIP 434012 1273 6023312 2024-02-21 17:21:00.283 2024-02-21 17:21:00.283 5000 FEE 433953 20026 6023313 2024-02-21 17:21:00.283 2024-02-21 17:21:00.283 45000 TIP 433953 5757 6023329 2024-02-21 17:21:56.216 2024-02-21 17:21:56.216 10100 FEE 433713 20436 6023330 2024-02-21 17:21:56.216 2024-02-21 17:21:56.216 90900 TIP 433713 667 6023361 2024-02-21 17:24:31.621 2024-02-21 17:24:31.621 1000 FEE 434025 20502 6023367 2024-02-21 17:25:48.237 2024-02-21 17:25:48.237 3100 FEE 433844 2789 6023368 2024-02-21 17:25:48.237 2024-02-21 17:25:48.237 27900 TIP 433844 1577 6023384 2024-02-21 17:26:55.955 2024-02-21 17:26:55.955 8300 FEE 433889 15103 6023385 2024-02-21 17:26:55.955 2024-02-21 17:26:55.955 74700 TIP 433889 21501 6023410 2024-02-21 17:27:34.111 2024-02-21 17:27:34.111 300 FEE 434027 17953 6023411 2024-02-21 17:27:34.111 2024-02-21 17:27:34.111 2700 TIP 434027 21166 6023432 2024-02-21 17:28:12.882 2024-02-21 17:28:12.882 1000 FEE 434035 13553 6023448 2024-02-21 17:28:29.983 2024-02-21 17:28:29.983 2100 FEE 433921 17157 6023449 2024-02-21 17:28:29.983 2024-02-21 17:28:29.983 18900 TIP 433921 2844 6023472 2024-02-21 17:28:43.368 2024-02-21 17:28:43.368 100 FEE 433788 20841 6023473 2024-02-21 17:28:43.368 2024-02-21 17:28:43.368 900 TIP 433788 12769 6023511 2024-02-21 17:28:59.458 2024-02-21 17:28:59.458 8300 FEE 433844 2256 6023512 2024-02-21 17:28:59.458 2024-02-21 17:28:59.458 74700 TIP 433844 21249 6023515 2024-02-21 17:29:05.99 2024-02-21 17:29:05.99 1000 FEE 434038 17042 6023516 2024-02-21 17:29:05.99 2024-02-21 17:29:05.99 9000 TIP 434038 9758 6023533 2024-02-21 17:29:26.224 2024-02-21 17:29:26.224 100 FEE 433695 15408 6023534 2024-02-21 17:29:26.224 2024-02-21 17:29:26.224 900 TIP 433695 13527 6023544 2024-02-21 17:29:38.94 2024-02-21 17:29:38.94 2300 FEE 433844 687 6023545 2024-02-21 17:29:38.94 2024-02-21 17:29:38.94 20700 TIP 433844 18139 6023554 2024-02-21 17:29:39.49 2024-02-21 17:29:39.49 2300 FEE 433844 992 6023555 2024-02-21 17:29:39.49 2024-02-21 17:29:39.49 20700 TIP 433844 688 6023564 2024-02-21 17:29:40.169 2024-02-21 17:29:40.169 2300 FEE 433844 21269 6023565 2024-02-21 17:29:40.169 2024-02-21 17:29:40.169 20700 TIP 433844 1094 6023566 2024-02-21 17:29:42.862 2024-02-21 17:29:42.862 2300 FEE 433844 11220 6023567 2024-02-21 17:29:42.862 2024-02-21 17:29:42.862 20700 TIP 433844 659 6023568 2024-02-21 17:29:42.992 2024-02-21 17:29:42.992 2300 FEE 433844 14213 6023569 2024-02-21 17:29:42.992 2024-02-21 17:29:42.992 20700 TIP 433844 20981 6023574 2024-02-21 17:29:43.426 2024-02-21 17:29:43.426 2300 FEE 433844 7746 6023575 2024-02-21 17:29:43.426 2024-02-21 17:29:43.426 20700 TIP 433844 21269 6023578 2024-02-21 17:29:43.709 2024-02-21 17:29:43.709 2300 FEE 433844 657 6023579 2024-02-21 17:29:43.709 2024-02-21 17:29:43.709 20700 TIP 433844 9334 6023592 2024-02-21 17:29:44.888 2024-02-21 17:29:44.888 2300 FEE 433844 17535 6023593 2024-02-21 17:29:44.888 2024-02-21 17:29:44.888 20700 TIP 433844 17891 6023594 2024-02-21 17:29:45.713 2024-02-21 17:29:45.713 2300 FEE 433844 895 6023595 2024-02-21 17:29:45.713 2024-02-21 17:29:45.713 20700 TIP 433844 5293 6023602 2024-02-21 17:29:46.311 2024-02-21 17:29:46.311 2300 FEE 433844 21591 6023603 2024-02-21 17:29:46.311 2024-02-21 17:29:46.311 20700 TIP 433844 1273 6023620 2024-02-21 17:31:08.671 2024-02-21 17:31:08.671 1000000 FEE 434044 18409 6023635 2024-02-21 17:32:54.514 2024-02-21 17:32:54.514 7700 FEE 433853 18507 6023636 2024-02-21 17:32:54.514 2024-02-21 17:32:54.514 69300 TIP 433853 18956 6023643 2024-02-21 17:32:55.406 2024-02-21 17:32:55.406 7700 FEE 433853 14939 6023644 2024-02-21 17:32:55.406 2024-02-21 17:32:55.406 69300 TIP 433853 7675 6023692 2024-02-21 17:35:11.134 2024-02-21 17:35:11.134 6900 FEE 433746 18830 6023693 2024-02-21 17:35:11.134 2024-02-21 17:35:11.134 62100 TIP 433746 889 6023699 2024-02-21 17:36:18.34 2024-02-21 17:36:18.34 0 FEE 434030 20802 6022835 2024-02-21 16:41:39.103 2024-02-21 16:41:39.103 45000 TIP 433828 16638 6022842 2024-02-21 16:41:57.431 2024-02-21 16:41:57.431 1000 FEE 433948 14545 6022843 2024-02-21 16:41:58.633 2024-02-21 16:41:58.633 1000 FEE 433940 21037 6022844 2024-02-21 16:41:58.633 2024-02-21 16:41:58.633 9000 TIP 433940 19732 6022845 2024-02-21 16:41:58.822 2024-02-21 16:41:58.822 1000 FEE 433940 1465 6022846 2024-02-21 16:41:58.822 2024-02-21 16:41:58.822 9000 TIP 433940 19639 6022854 2024-02-21 16:42:04.416 2024-02-21 16:42:04.416 1000 FEE 433949 20180 6022855 2024-02-21 16:42:25.986 2024-02-21 16:42:25.986 1000 FEE 433950 11789 6022868 2024-02-21 16:43:19.785 2024-02-21 16:43:19.785 1100 FEE 433851 20434 6022869 2024-02-21 16:43:19.785 2024-02-21 16:43:19.785 9900 TIP 433851 19902 6022881 2024-02-21 16:43:39.162 2024-02-21 16:43:39.162 1000 FEE 433953 20906 6022898 2024-02-21 16:45:39.064 2024-02-21 16:45:39.064 3100 FEE 433886 2233 6022899 2024-02-21 16:45:39.064 2024-02-21 16:45:39.064 27900 TIP 433886 20973 6022908 2024-02-21 16:46:41.401 2024-02-21 16:46:41.401 1000 FEE 433960 1983 6022939 2024-02-21 16:47:28.492 2024-02-21 16:47:28.492 100 FEE 433713 17316 6022940 2024-02-21 16:47:28.492 2024-02-21 16:47:28.492 900 TIP 433713 19332 6022946 2024-02-21 16:48:37.733 2024-02-21 16:48:37.733 3100 FEE 433860 10409 6022947 2024-02-21 16:48:37.733 2024-02-21 16:48:37.733 27900 TIP 433860 20906 6022963 2024-02-21 16:50:27.794 2024-02-21 16:50:27.794 1000 FEE 433968 5761 6022977 2024-02-21 16:53:36.185 2024-02-21 16:53:36.185 2100 FEE 433952 2576 6022978 2024-02-21 16:53:36.185 2024-02-21 16:53:36.185 18900 TIP 433952 21430 6023004 2024-02-21 16:54:08.569 2024-02-21 16:54:08.569 100 FEE 433828 20657 6023005 2024-02-21 16:54:08.569 2024-02-21 16:54:08.569 900 TIP 433828 21172 6023006 2024-02-21 16:54:08.75 2024-02-21 16:54:08.75 100 FEE 433828 1493 6023007 2024-02-21 16:54:08.75 2024-02-21 16:54:08.75 900 TIP 433828 1814 6023008 2024-02-21 16:54:08.895 2024-02-21 16:54:08.895 100 FEE 433828 5701 6023009 2024-02-21 16:54:08.895 2024-02-21 16:54:08.895 900 TIP 433828 18784 6023014 2024-02-21 16:54:09.913 2024-02-21 16:54:09.913 100 FEE 433828 21393 6023015 2024-02-21 16:54:09.913 2024-02-21 16:54:09.913 900 TIP 433828 11760 6023071 2024-02-21 17:00:04.699 2024-02-21 17:00:04.699 7700 FEE 433955 913 6023072 2024-02-21 17:00:04.699 2024-02-21 17:00:04.699 69300 TIP 433955 8173 6023109 2024-02-21 17:03:07.796 2024-02-21 17:03:07.796 1000 FEE 433982 11516 6023132 2024-02-21 17:05:06.695 2024-02-21 17:05:06.695 2100 FEE 433828 19435 6023133 2024-02-21 17:05:06.695 2024-02-21 17:05:06.695 18900 TIP 433828 20190 6023152 2024-02-21 17:06:36.396 2024-02-21 17:06:36.396 2100 FEE 433982 19465 6023153 2024-02-21 17:06:36.396 2024-02-21 17:06:36.396 18900 TIP 433982 10771 6023157 2024-02-21 17:07:06.187 2024-02-21 17:07:06.187 1000 FEE 433991 5306 6023176 2024-02-21 17:10:24.587 2024-02-21 17:10:24.587 1000 FEE 434003 20596 6023177 2024-02-21 17:10:45.986 2024-02-21 17:10:45.986 3300 FEE 433958 15326 6023178 2024-02-21 17:10:45.986 2024-02-21 17:10:45.986 29700 TIP 433958 4633 6023188 2024-02-21 17:11:08.286 2024-02-21 17:11:08.286 900 FEE 433934 4128 6023189 2024-02-21 17:11:08.286 2024-02-21 17:11:08.286 8100 TIP 433934 9177 6023194 2024-02-21 17:11:22.259 2024-02-21 17:11:22.259 100 FEE 433943 9036 6023195 2024-02-21 17:11:22.259 2024-02-21 17:11:22.259 900 TIP 433943 635 6023202 2024-02-21 17:11:27.016 2024-02-21 17:11:27.016 9000 FEE 433943 21541 6023203 2024-02-21 17:11:27.016 2024-02-21 17:11:27.016 81000 TIP 433943 6741 6023210 2024-02-21 17:11:30.68 2024-02-21 17:11:30.68 3300 FEE 433740 12277 6023211 2024-02-21 17:11:30.68 2024-02-21 17:11:30.68 29700 TIP 433740 5942 6023235 2024-02-21 17:13:01.882 2024-02-21 17:13:01.882 27900 FEE 433994 20924 6023236 2024-02-21 17:13:01.882 2024-02-21 17:13:01.882 251100 TIP 433994 622 6023246 2024-02-21 17:14:31.517 2024-02-21 17:14:31.517 1000 FEE 434007 9426 6023278 2024-02-21 17:18:43.248 2024-02-21 17:18:43.248 8300 FEE 433849 6741 6023279 2024-02-21 17:18:43.248 2024-02-21 17:18:43.248 74700 TIP 433849 21589 6023322 2024-02-21 17:21:29.401 2024-02-21 17:21:29.401 1000 FEE 434015 18618 6023341 2024-02-21 17:22:35.006 2024-02-21 17:22:35.006 1000 FEE 434021 15386 6023346 2024-02-21 17:22:57.267 2024-02-21 17:22:57.267 1000 FEE 434022 17064 6023348 2024-02-21 17:23:35.083 2024-02-21 17:23:35.083 1000 FEE 433991 8385 6023349 2024-02-21 17:23:35.083 2024-02-21 17:23:35.083 9000 TIP 433991 19966 6023352 2024-02-21 17:24:08.777 2024-02-21 17:24:08.777 3100 FEE 433688 19511 6023353 2024-02-21 17:24:08.777 2024-02-21 17:24:08.777 27900 TIP 433688 9796 6023362 2024-02-21 17:24:36.165 2024-02-21 17:24:36.165 10100 FEE 433943 5746 6023363 2024-02-21 17:24:36.165 2024-02-21 17:24:36.165 90900 TIP 433943 11992 6023373 2024-02-21 17:26:07.792 2024-02-21 17:26:07.792 1000 FEE 433844 1552 6023374 2024-02-21 17:26:07.792 2024-02-21 17:26:07.792 9000 TIP 433844 678 6023375 2024-02-21 17:26:08.528 2024-02-21 17:26:08.528 10100 FEE 433962 17011 6023376 2024-02-21 17:26:08.528 2024-02-21 17:26:08.528 90900 TIP 433962 12744 6023377 2024-02-21 17:26:11.378 2024-02-21 17:26:11.378 2100 FEE 434011 20854 6023378 2024-02-21 17:26:11.378 2024-02-21 17:26:11.378 18900 TIP 434011 15146 6023404 2024-02-21 17:27:20.59 2024-02-21 17:27:20.59 1000 FEE 434029 19484 6023406 2024-02-21 17:27:33.107 2024-02-21 17:27:33.107 300 FEE 434027 12959 6023407 2024-02-21 17:27:33.107 2024-02-21 17:27:33.107 2700 TIP 434027 4064 6023418 2024-02-21 17:27:46.519 2024-02-21 17:27:46.519 1000 FEE 434033 19158 6023428 2024-02-21 17:28:11.224 2024-02-21 17:28:11.224 8300 FEE 433978 19021 6023429 2024-02-21 17:28:11.224 2024-02-21 17:28:11.224 74700 TIP 433978 21242 6023458 2024-02-21 17:28:35.864 2024-02-21 17:28:35.864 900 FEE 433835 703 6023459 2024-02-21 17:28:35.864 2024-02-21 17:28:35.864 8100 TIP 433835 18225 6023484 2024-02-21 17:28:49.242 2024-02-21 17:28:49.242 100 FEE 433828 21247 6023485 2024-02-21 17:28:49.242 2024-02-21 17:28:49.242 900 TIP 433828 20023 6023494 2024-02-21 17:28:55.837 2024-02-21 17:28:55.837 100000 FEE 434038 3392 6023497 2024-02-21 17:28:57.414 2024-02-21 17:28:57.414 8300 FEE 433844 17162 6023498 2024-02-21 17:28:57.414 2024-02-21 17:28:57.414 74700 TIP 433844 680 6023503 2024-02-21 17:28:57.885 2024-02-21 17:28:57.885 8300 FEE 433844 2330 6023504 2024-02-21 17:28:57.885 2024-02-21 17:28:57.885 74700 TIP 433844 16717 6023509 2024-02-21 17:28:58.738 2024-02-21 17:28:58.738 8300 FEE 433844 19043 6023510 2024-02-21 17:28:58.738 2024-02-21 17:28:58.738 74700 TIP 433844 21356 6023517 2024-02-21 17:29:11.51 2024-02-21 17:29:11.51 2100 FEE 434005 1740 6023518 2024-02-21 17:29:11.51 2024-02-21 17:29:11.51 18900 TIP 434005 4487 6023521 2024-02-21 17:29:16.919 2024-02-21 17:29:16.919 0 FEE 434031 9351 6023524 2024-02-21 17:29:18.864 2024-02-21 17:29:18.864 100 FEE 433782 5865 6023525 2024-02-21 17:29:18.864 2024-02-21 17:29:18.864 900 TIP 433782 661 6023542 2024-02-21 17:29:38.535 2024-02-21 17:29:38.535 4600 FEE 433844 5557 6023543 2024-02-21 17:29:38.535 2024-02-21 17:29:38.535 41400 TIP 433844 18208 6023556 2024-02-21 17:29:39.639 2024-02-21 17:29:39.639 2300 FEE 433844 19981 6023557 2024-02-21 17:29:39.639 2024-02-21 17:29:39.639 20700 TIP 433844 19417 6023562 2024-02-21 17:29:40.049 2024-02-21 17:29:40.049 2300 FEE 433844 19117 6023563 2024-02-21 17:29:40.049 2024-02-21 17:29:40.049 20700 TIP 433844 1003 6023596 2024-02-21 17:29:45.882 2024-02-21 17:29:45.882 2300 FEE 433844 1983 6023597 2024-02-21 17:29:45.882 2024-02-21 17:29:45.882 20700 TIP 433844 20573 6023604 2024-02-21 17:29:46.45 2024-02-21 17:29:46.45 2300 FEE 433844 15549 6023605 2024-02-21 17:29:46.45 2024-02-21 17:29:46.45 20700 TIP 433844 9365 6023612 2024-02-21 17:29:47.031 2024-02-21 17:29:47.031 2300 FEE 433844 11942 6023613 2024-02-21 17:29:47.031 2024-02-21 17:29:47.031 20700 TIP 433844 825 6023625 2024-02-21 17:31:41.008 2024-02-21 17:31:41.008 10000 FEE 433469 7185 6023626 2024-02-21 17:31:41.008 2024-02-21 17:31:41.008 90000 TIP 433469 676 6023633 2024-02-21 17:32:54.324 2024-02-21 17:32:54.324 15400 FEE 433853 20087 6023634 2024-02-21 17:32:54.324 2024-02-21 17:32:54.324 138600 TIP 433853 14818 6023645 2024-02-21 17:32:55.602 2024-02-21 17:32:55.602 7700 FEE 433853 11716 6022836 2024-02-21 16:41:44.387 2024-02-21 16:41:44.387 100 FEE 432422 5942 6022837 2024-02-21 16:41:44.387 2024-02-21 16:41:44.387 900 TIP 432422 20062 6022838 2024-02-21 16:41:44.66 2024-02-21 16:41:44.66 100 FEE 432422 18659 6022839 2024-02-21 16:41:44.66 2024-02-21 16:41:44.66 900 TIP 432422 7983 6022856 2024-02-21 16:42:28.521 2024-02-21 16:42:28.521 1100 FEE 433828 5761 6022857 2024-02-21 16:42:28.521 2024-02-21 16:42:28.521 9900 TIP 433828 20776 6022871 2024-02-21 16:43:26.119 2024-02-21 16:43:26.119 5000 FEE 433682 17568 6022872 2024-02-21 16:43:26.119 2024-02-21 16:43:26.119 45000 TIP 433682 20504 6022885 2024-02-21 16:44:04.666 2024-02-21 16:44:04.666 1000 FEE 433954 19813 6022894 2024-02-21 16:45:31.416 2024-02-21 16:45:31.416 300 FEE 433945 19576 6022895 2024-02-21 16:45:31.416 2024-02-21 16:45:31.416 2700 TIP 433945 8926 6022948 2024-02-21 16:48:40.395 2024-02-21 16:48:40.395 2100 FEE 433958 7682 6022949 2024-02-21 16:48:40.395 2024-02-21 16:48:40.395 18900 TIP 433958 12277 6022958 2024-02-21 16:49:53.128 2024-02-21 16:49:53.128 2100 FEE 433956 5455 6022959 2024-02-21 16:49:53.128 2024-02-21 16:49:53.128 18900 TIP 433956 1428 6022979 2024-02-21 16:53:44.047 2024-02-21 16:53:44.047 1000 FEE 433948 1162 6022980 2024-02-21 16:53:44.047 2024-02-21 16:53:44.047 9000 TIP 433948 13753 6022988 2024-02-21 16:54:02.936 2024-02-21 16:54:02.936 1000 FEE 433973 16356 6023016 2024-02-21 16:54:33.975 2024-02-21 16:54:33.975 10100 FEE 433828 12368 6023017 2024-02-21 16:54:33.975 2024-02-21 16:54:33.975 90900 TIP 433828 11516 6023020 2024-02-21 16:55:18.368 2024-02-21 16:55:18.368 1000 FEE 433713 2285 6023021 2024-02-21 16:55:18.368 2024-02-21 16:55:18.368 9000 TIP 433713 10060 6023022 2024-02-21 16:55:18.561 2024-02-21 16:55:18.561 1000 FEE 433713 14939 6023023 2024-02-21 16:55:18.561 2024-02-21 16:55:18.561 9000 TIP 433713 1389 6023028 2024-02-21 16:55:23.937 2024-02-21 16:55:23.937 1000 FEE 433975 4487 6023030 2024-02-21 16:56:46.622 2024-02-21 16:56:46.622 1000 FEE 433976 18494 6023063 2024-02-21 16:59:37.743 2024-02-21 16:59:37.743 100 FEE 433974 11821 6023064 2024-02-21 16:59:37.743 2024-02-21 16:59:37.743 900 TIP 433974 20276 6023067 2024-02-21 16:59:38.748 2024-02-21 16:59:38.748 100 FEE 433974 21131 6023068 2024-02-21 16:59:38.748 2024-02-21 16:59:38.748 900 TIP 433974 11192 6023077 2024-02-21 17:00:43.73 2024-02-21 17:00:43.73 2100 FEE 433975 5425 6023078 2024-02-21 17:00:43.73 2024-02-21 17:00:43.73 18900 TIP 433975 18618 6023113 2024-02-21 17:03:25.089 2024-02-21 17:03:25.089 2100 FEE 433740 20120 6023114 2024-02-21 17:03:25.089 2024-02-21 17:03:25.089 18900 TIP 433740 19524 6023115 2024-02-21 17:03:29.513 2024-02-21 17:03:29.513 1000 FEE 433799 19469 6023116 2024-02-21 17:03:29.513 2024-02-21 17:03:29.513 9000 TIP 433799 18629 6023125 2024-02-21 17:04:40.066 2024-02-21 17:04:40.066 1000 FEE 433987 3642 6023130 2024-02-21 17:05:05.306 2024-02-21 17:05:05.306 2100 FEE 433833 6030 6023131 2024-02-21 17:05:05.306 2024-02-21 17:05:05.306 18900 TIP 433833 19943 6023143 2024-02-21 17:05:34.603 2024-02-21 17:05:34.603 1000 FEE 433985 19044 6023144 2024-02-21 17:05:34.603 2024-02-21 17:05:34.603 9000 TIP 433985 18524 6023145 2024-02-21 17:05:34.915 2024-02-21 17:05:34.915 1000 FEE 433985 11678 6023146 2024-02-21 17:05:34.915 2024-02-21 17:05:34.915 9000 TIP 433985 1425 6023182 2024-02-21 17:11:05.102 2024-02-21 17:11:05.102 3300 FEE 433833 6798 6023183 2024-02-21 17:11:05.102 2024-02-21 17:11:05.102 29700 TIP 433833 15271 6023186 2024-02-21 17:11:08.094 2024-02-21 17:11:08.094 100 FEE 433934 1439 6023187 2024-02-21 17:11:08.094 2024-02-21 17:11:08.094 900 TIP 433934 21083 6023192 2024-02-21 17:11:21.367 2024-02-21 17:11:21.367 0 FEE 433999 5865 6023206 2024-02-21 17:11:30.357 2024-02-21 17:11:30.357 3300 FEE 433740 20969 6023207 2024-02-21 17:11:30.357 2024-02-21 17:11:30.357 29700 TIP 433740 19570 6023214 2024-02-21 17:11:38.318 2024-02-21 17:11:38.318 1000 FEE 434005 965 6023219 2024-02-21 17:12:49.376 2024-02-21 17:12:49.376 100 FEE 434000 15273 6023220 2024-02-21 17:12:49.376 2024-02-21 17:12:49.376 900 TIP 434000 16858 6023229 2024-02-21 17:12:52.182 2024-02-21 17:12:52.182 3300 FEE 433740 21492 6023230 2024-02-21 17:12:52.182 2024-02-21 17:12:52.182 29700 TIP 433740 21391 6023257 2024-02-21 17:17:21.384 2024-02-21 17:17:21.384 1000 FEE 434011 4958 6023267 2024-02-21 17:18:33.457 2024-02-21 17:18:33.457 8300 FEE 433882 20168 6023268 2024-02-21 17:18:33.457 2024-02-21 17:18:33.457 74700 TIP 433882 11073 6023269 2024-02-21 17:18:34.225 2024-02-21 17:18:34.225 1000 FEE 434012 20594 6023272 2024-02-21 17:18:36.211 2024-02-21 17:18:36.211 8300 FEE 433901 2342 6023273 2024-02-21 17:18:36.211 2024-02-21 17:18:36.211 74700 TIP 433901 6360 6023292 2024-02-21 17:19:58.697 2024-02-21 17:19:58.697 1000 FEE 432785 617 6023293 2024-02-21 17:19:58.697 2024-02-21 17:19:58.697 9000 TIP 432785 20137 6023316 2024-02-21 17:21:01.591 2024-02-21 17:21:01.591 5000 FEE 433810 13217 6023317 2024-02-21 17:21:01.591 2024-02-21 17:21:01.591 45000 TIP 433810 20924 6023327 2024-02-21 17:21:50.766 2024-02-21 17:21:50.766 2100 FEE 433356 5387 6023328 2024-02-21 17:21:50.766 2024-02-21 17:21:50.766 18900 TIP 433356 711 6023332 2024-02-21 17:21:59.334 2024-02-21 17:21:59.334 100 FEE 433114 18231 6023333 2024-02-21 17:21:59.334 2024-02-21 17:21:59.334 900 TIP 433114 18896 6023356 2024-02-21 17:24:10.71 2024-02-21 17:24:10.71 1000 FEE 434024 861 6023369 2024-02-21 17:25:49.944 2024-02-21 17:25:49.944 27900 FEE 433844 10016 6023370 2024-02-21 17:25:49.944 2024-02-21 17:25:49.944 251100 TIP 433844 10818 6023392 2024-02-21 17:26:58.977 2024-02-21 17:26:58.977 8300 FEE 433889 13348 6023393 2024-02-21 17:26:58.977 2024-02-21 17:26:58.977 74700 TIP 433889 21357 6023396 2024-02-21 17:27:13.215 2024-02-21 17:27:13.215 8300 FEE 433886 18178 6023397 2024-02-21 17:27:13.215 2024-02-21 17:27:13.215 74700 TIP 433886 895 6023405 2024-02-21 17:27:25.709 2024-02-21 17:27:25.709 1000 FEE 434030 14037 6023417 2024-02-21 17:27:40.276 2024-02-21 17:27:40.276 1000 FEE 434032 1801 6023438 2024-02-21 17:28:23.807 2024-02-21 17:28:23.807 8300 FEE 434019 848 6023439 2024-02-21 17:28:23.807 2024-02-21 17:28:23.807 74700 TIP 434019 6160 6023442 2024-02-21 17:28:29.448 2024-02-21 17:28:29.448 8300 FEE 434034 21437 6023443 2024-02-21 17:28:29.448 2024-02-21 17:28:29.448 74700 TIP 434034 17514 6023452 2024-02-21 17:28:33.244 2024-02-21 17:28:33.244 8300 FEE 434017 2844 6023453 2024-02-21 17:28:33.244 2024-02-21 17:28:33.244 74700 TIP 434017 11516 6023456 2024-02-21 17:28:35.628 2024-02-21 17:28:35.628 100 FEE 433835 1173 6023457 2024-02-21 17:28:35.628 2024-02-21 17:28:35.628 900 TIP 433835 16442 6023460 2024-02-21 17:28:36.533 2024-02-21 17:28:36.533 9000 FEE 433835 13133 6023461 2024-02-21 17:28:36.533 2024-02-21 17:28:36.533 81000 TIP 433835 20647 6023499 2024-02-21 17:28:57.614 2024-02-21 17:28:57.614 8300 FEE 433844 9350 6023500 2024-02-21 17:28:57.614 2024-02-21 17:28:57.614 74700 TIP 433844 5497 6023530 2024-02-21 17:29:22.252 2024-02-21 17:29:22.252 1000 FEE 434040 1221 6023539 2024-02-21 17:29:29.375 2024-02-21 17:29:29.375 1000 FEE 434041 15337 6023540 2024-02-21 17:29:38.264 2024-02-21 17:29:38.264 2300 FEE 433844 18114 6023541 2024-02-21 17:29:38.264 2024-02-21 17:29:38.264 20700 TIP 433844 11776 6023552 2024-02-21 17:29:39.465 2024-02-21 17:29:39.465 2300 FEE 433844 1632 6023553 2024-02-21 17:29:39.465 2024-02-21 17:29:39.465 20700 TIP 433844 20849 6023558 2024-02-21 17:29:39.762 2024-02-21 17:29:39.762 2300 FEE 433844 21418 6023559 2024-02-21 17:29:39.762 2024-02-21 17:29:39.762 20700 TIP 433844 17535 6023560 2024-02-21 17:29:39.887 2024-02-21 17:29:39.887 2300 FEE 433844 21159 6023561 2024-02-21 17:29:39.887 2024-02-21 17:29:39.887 20700 TIP 433844 631 6023582 2024-02-21 17:29:43.986 2024-02-21 17:29:43.986 2300 FEE 433844 12265 6023583 2024-02-21 17:29:43.986 2024-02-21 17:29:43.986 20700 TIP 433844 17091 6023610 2024-02-21 17:29:46.88 2024-02-21 17:29:46.88 2300 FEE 433844 12175 6023611 2024-02-21 17:29:46.88 2024-02-21 17:29:46.88 20700 TIP 433844 19966 6023618 2024-02-21 17:30:41.535 2024-02-21 17:30:41.535 1000 FEE 434043 617 6023627 2024-02-21 17:31:55.358 2024-02-21 17:31:55.358 50000 FEE 433359 21233 6023628 2024-02-21 17:31:55.358 2024-02-21 17:31:55.358 450000 TIP 433359 19153 6022870 2024-02-21 16:43:21.848 2024-02-21 16:43:21.848 1000 FEE 433952 679 6022877 2024-02-21 16:43:29.847 2024-02-21 16:43:29.847 5000 FEE 433682 21509 6022878 2024-02-21 16:43:29.847 2024-02-21 16:43:29.847 45000 TIP 433682 1673 6022892 2024-02-21 16:45:19.401 2024-02-21 16:45:19.401 300 FEE 433929 19488 6022893 2024-02-21 16:45:19.401 2024-02-21 16:45:19.401 2700 TIP 433929 18040 6022900 2024-02-21 16:45:39.87 2024-02-21 16:45:39.87 27900 FEE 433886 1609 6022901 2024-02-21 16:45:39.87 2024-02-21 16:45:39.87 251100 TIP 433886 9809 6022913 2024-02-21 16:47:25.665 2024-02-21 16:47:25.665 100 FEE 433713 12562 6022914 2024-02-21 16:47:25.665 2024-02-21 16:47:25.665 900 TIP 433713 19524 6022917 2024-02-21 16:47:26.05 2024-02-21 16:47:26.05 100 FEE 433713 20912 6022918 2024-02-21 16:47:26.05 2024-02-21 16:47:26.05 900 TIP 433713 15146 6022925 2024-02-21 16:47:26.906 2024-02-21 16:47:26.906 100 FEE 433713 2724 6022926 2024-02-21 16:47:26.906 2024-02-21 16:47:26.906 900 TIP 433713 15408 6022929 2024-02-21 16:47:27.387 2024-02-21 16:47:27.387 100 FEE 433713 657 6022930 2024-02-21 16:47:27.387 2024-02-21 16:47:27.387 900 TIP 433713 15941 6022933 2024-02-21 16:47:27.832 2024-02-21 16:47:27.832 100 FEE 433713 1603 6022934 2024-02-21 16:47:27.832 2024-02-21 16:47:27.832 900 TIP 433713 1236 6022937 2024-02-21 16:47:28.317 2024-02-21 16:47:28.317 100 FEE 433713 2596 6022938 2024-02-21 16:47:28.317 2024-02-21 16:47:28.317 900 TIP 433713 6798 6022941 2024-02-21 16:47:38.268 2024-02-21 16:47:38.268 1000 FEE 433963 21067 6022971 2024-02-21 16:52:04.384 2024-02-21 16:52:04.384 1000 FEE 433970 21088 6022975 2024-02-21 16:53:35.469 2024-02-21 16:53:35.469 2100 FEE 433949 11522 6022976 2024-02-21 16:53:35.469 2024-02-21 16:53:35.469 18900 TIP 433949 18363 6022983 2024-02-21 16:53:46.117 2024-02-21 16:53:46.117 2000 FEE 433948 18040 6022984 2024-02-21 16:53:46.117 2024-02-21 16:53:46.117 18000 TIP 433948 16341 6022987 2024-02-21 16:53:53.201 2024-02-21 16:53:53.201 1000 FEE 433972 4650 6022992 2024-02-21 16:54:05.393 2024-02-21 16:54:05.393 1000 FEE 433966 19576 6022993 2024-02-21 16:54:05.393 2024-02-21 16:54:05.393 9000 TIP 433966 627 6023002 2024-02-21 16:54:08.342 2024-02-21 16:54:08.342 100 FEE 433828 8173 6023003 2024-02-21 16:54:08.342 2024-02-21 16:54:08.342 900 TIP 433828 9341 6023024 2024-02-21 16:55:18.77 2024-02-21 16:55:18.77 1000 FEE 433713 1745 6023025 2024-02-21 16:55:18.77 2024-02-21 16:55:18.77 9000 TIP 433713 16270 6023031 2024-02-21 16:56:49.446 2024-02-21 16:56:49.446 1000 FEE 433977 1618 6023041 2024-02-21 16:57:06.103 2024-02-21 16:57:06.103 2100 FEE 433942 5128 6023042 2024-02-21 16:57:06.103 2024-02-21 16:57:06.103 18900 TIP 433942 21212 6023046 2024-02-21 16:58:19.168 2024-02-21 16:58:19.168 1000 FEE 433886 21212 6023047 2024-02-21 16:58:19.168 2024-02-21 16:58:19.168 9000 TIP 433886 8400 6023052 2024-02-21 16:58:55.304 2024-02-21 16:58:55.304 98000 FEE 433978 19488 6023065 2024-02-21 16:59:38.397 2024-02-21 16:59:38.397 100 FEE 433974 11648 6023066 2024-02-21 16:59:38.397 2024-02-21 16:59:38.397 900 TIP 433974 20979 6023073 2024-02-21 17:00:12.403 2024-02-21 17:00:12.403 2100 FEE 433928 16638 6023074 2024-02-21 17:00:12.403 2024-02-21 17:00:12.403 18900 TIP 433928 20972 6023088 2024-02-21 17:02:31.459 2024-02-21 17:02:31.459 1000 FEE 433980 1596 6023089 2024-02-21 17:02:31.459 2024-02-21 17:02:31.459 9000 TIP 433980 20129 6023090 2024-02-21 17:02:31.909 2024-02-21 17:02:31.909 1000 FEE 433980 18076 6023091 2024-02-21 17:02:31.909 2024-02-21 17:02:31.909 9000 TIP 433980 1030 6023094 2024-02-21 17:02:33.011 2024-02-21 17:02:33.011 1000 FEE 433980 17184 6023095 2024-02-21 17:02:33.011 2024-02-21 17:02:33.011 9000 TIP 433980 21412 6023102 2024-02-21 17:02:49.673 2024-02-21 17:02:49.673 100000 FEE 433927 21275 6023103 2024-02-21 17:02:49.673 2024-02-21 17:02:49.673 900000 TIP 433927 2065 6023112 2024-02-21 17:03:22.696 2024-02-21 17:03:22.696 1000 FEE 433983 21022 6023129 2024-02-21 17:05:04.787 2024-02-21 17:05:04.787 10000 FEE 433988 19572 6023134 2024-02-21 17:05:21.702 2024-02-21 17:05:21.702 1000 FEE 433989 20109 6023184 2024-02-21 17:11:05.234 2024-02-21 17:11:05.234 3300 FEE 433833 5794 6023185 2024-02-21 17:11:05.234 2024-02-21 17:11:05.234 29700 TIP 433833 13574 6023196 2024-02-21 17:11:22.514 2024-02-21 17:11:22.514 900 FEE 433943 3706 6023197 2024-02-21 17:11:22.514 2024-02-21 17:11:22.514 8100 TIP 433943 21539 6023198 2024-02-21 17:11:24.108 2024-02-21 17:11:24.108 3300 FEE 433849 1617 6023199 2024-02-21 17:11:24.108 2024-02-21 17:11:24.108 29700 TIP 433849 18556 6023216 2024-02-21 17:12:17.821 2024-02-21 17:12:17.821 0 FEE 433999 17217 6023231 2024-02-21 17:12:54.888 2024-02-21 17:12:54.888 3100 FEE 433994 18995 6023232 2024-02-21 17:12:54.888 2024-02-21 17:12:54.888 27900 TIP 433994 16276 6023258 2024-02-21 17:17:32.617 2024-02-21 17:17:32.617 10000 FEE 433934 16259 6023259 2024-02-21 17:17:32.617 2024-02-21 17:17:32.617 90000 TIP 433934 900 6023270 2024-02-21 17:18:34.318 2024-02-21 17:18:34.318 8300 FEE 434005 679 6023271 2024-02-21 17:18:34.318 2024-02-21 17:18:34.318 74700 TIP 434005 21379 6023288 2024-02-21 17:19:54.807 2024-02-21 17:19:54.807 100 FEE 434013 2537 6023289 2024-02-21 17:19:54.807 2024-02-21 17:19:54.807 900 TIP 434013 18873 6023318 2024-02-21 17:21:02.194 2024-02-21 17:21:02.194 0 FEE 434014 7682 6023324 2024-02-21 17:21:35.021 2024-02-21 17:21:35.021 2100 FEE 433831 10359 6023325 2024-02-21 17:21:35.021 2024-02-21 17:21:35.021 18900 TIP 433831 2156 6023335 2024-02-21 17:22:09.388 2024-02-21 17:22:09.388 1000 FEE 434019 9353 6023338 2024-02-21 17:22:21.7 2024-02-21 17:22:21.7 1000 FEE 434020 18372 6023339 2024-02-21 17:22:22.033 2024-02-21 17:22:22.033 1000 FEE 433114 4175 6023340 2024-02-21 17:22:22.033 2024-02-21 17:22:22.033 9000 TIP 433114 2757 6023371 2024-02-21 17:26:03.435 2024-02-21 17:26:03.435 1000 FEE 434026 19346 6023398 2024-02-21 17:27:13.359 2024-02-21 17:27:13.359 8300 FEE 433886 1490 6023399 2024-02-21 17:27:13.359 2024-02-21 17:27:13.359 74700 TIP 433886 16842 6023434 2024-02-21 17:28:17.518 2024-02-21 17:28:17.518 8300 FEE 434019 19812 6023435 2024-02-21 17:28:17.518 2024-02-21 17:28:17.518 74700 TIP 434019 623 6023446 2024-02-21 17:28:29.767 2024-02-21 17:28:29.767 8300 FEE 434034 14045 6023447 2024-02-21 17:28:29.767 2024-02-21 17:28:29.767 74700 TIP 434034 16329 6023466 2024-02-21 17:28:41.712 2024-02-21 17:28:41.712 8300 FEE 433878 19777 6023467 2024-02-21 17:28:41.712 2024-02-21 17:28:41.712 74700 TIP 433878 685 6023474 2024-02-21 17:28:43.816 2024-02-21 17:28:43.816 900 FEE 433788 894 6023475 2024-02-21 17:28:43.816 2024-02-21 17:28:43.816 8100 TIP 433788 13931 6023482 2024-02-21 17:28:48.467 2024-02-21 17:28:48.467 10000 FEE 433901 8385 6023483 2024-02-21 17:28:48.467 2024-02-21 17:28:48.467 90000 TIP 433901 19267 6023486 2024-02-21 17:28:49.487 2024-02-21 17:28:49.487 100 FEE 433779 20087 6023487 2024-02-21 17:28:49.487 2024-02-21 17:28:49.487 900 TIP 433779 2309 6023488 2024-02-21 17:28:49.696 2024-02-21 17:28:49.696 900 FEE 433779 2734 6023489 2024-02-21 17:28:49.696 2024-02-21 17:28:49.696 8100 TIP 433779 17082 6023492 2024-02-21 17:28:53.585 2024-02-21 17:28:53.585 10000 FEE 433934 17172 6023493 2024-02-21 17:28:53.585 2024-02-21 17:28:53.585 90000 TIP 433934 16214 6023505 2024-02-21 17:28:57.973 2024-02-21 17:28:57.973 8300 FEE 433844 16809 6023506 2024-02-21 17:28:57.973 2024-02-21 17:28:57.973 74700 TIP 433844 21498 6023526 2024-02-21 17:29:19.01 2024-02-21 17:29:19.01 900 FEE 433782 20062 6023527 2024-02-21 17:29:19.01 2024-02-21 17:29:19.01 8100 TIP 433782 4027 6023528 2024-02-21 17:29:19.621 2024-02-21 17:29:19.621 9000 FEE 433782 16876 6023529 2024-02-21 17:29:19.621 2024-02-21 17:29:19.621 81000 TIP 433782 8448 6023550 2024-02-21 17:29:39.433 2024-02-21 17:29:39.433 90000 FEE 433555 21334 6023551 2024-02-21 17:29:39.433 2024-02-21 17:29:39.433 810000 TIP 433555 997 6023580 2024-02-21 17:29:43.845 2024-02-21 17:29:43.845 2300 FEE 433844 20904 6023581 2024-02-21 17:29:43.845 2024-02-21 17:29:43.845 20700 TIP 433844 6419 6023586 2024-02-21 17:29:44.345 2024-02-21 17:29:44.345 2300 FEE 433844 19930 6023587 2024-02-21 17:29:44.345 2024-02-21 17:29:44.345 20700 TIP 433844 20018 6023614 2024-02-21 17:29:49.907 2024-02-21 17:29:49.907 1000 FEE 434035 9551 6022873 2024-02-21 16:43:26.637 2024-02-21 16:43:26.637 5000 FEE 433682 20674 6022874 2024-02-21 16:43:26.637 2024-02-21 16:43:26.637 45000 TIP 433682 20257 6022875 2024-02-21 16:43:29.548 2024-02-21 16:43:29.548 5000 FEE 433682 16357 6022876 2024-02-21 16:43:29.548 2024-02-21 16:43:29.548 45000 TIP 433682 19638 6022906 2024-02-21 16:46:34.651 2024-02-21 16:46:34.651 1000 FEE 433958 12738 6022915 2024-02-21 16:47:25.923 2024-02-21 16:47:25.923 100 FEE 433713 20970 6022916 2024-02-21 16:47:25.923 2024-02-21 16:47:25.923 900 TIP 433713 9418 6022931 2024-02-21 16:47:27.626 2024-02-21 16:47:27.626 100 FEE 433713 21248 6022932 2024-02-21 16:47:27.626 2024-02-21 16:47:27.626 900 TIP 433713 654 6022935 2024-02-21 16:47:28.082 2024-02-21 16:47:28.082 100 FEE 433713 4570 6022936 2024-02-21 16:47:28.082 2024-02-21 16:47:28.082 900 TIP 433713 787 6022942 2024-02-21 16:47:51.926 2024-02-21 16:47:51.926 1000 FEE 433964 20717 6022943 2024-02-21 16:47:51.983 2024-02-21 16:47:51.983 66600 FEE 433878 13217 6022944 2024-02-21 16:47:51.983 2024-02-21 16:47:51.983 599400 TIP 433878 21421 6022955 2024-02-21 16:49:48.245 2024-02-21 16:49:48.245 1000 FEE 433967 11750 6022961 2024-02-21 16:50:03.936 2024-02-21 16:50:03.936 3100 FEE 433965 1141 6022962 2024-02-21 16:50:03.936 2024-02-21 16:50:03.936 27900 TIP 433965 1617 6022981 2024-02-21 16:53:45.016 2024-02-21 16:53:45.016 1000 FEE 433948 1198 6022982 2024-02-21 16:53:45.016 2024-02-21 16:53:45.016 9000 TIP 433948 11760 6023050 2024-02-21 16:58:42.071 2024-02-21 16:58:42.071 1000 FEE 433688 18291 6023051 2024-02-21 16:58:42.071 2024-02-21 16:58:42.071 9000 TIP 433688 6616 6023053 2024-02-21 16:59:00.808 2024-02-21 16:59:00.808 2100 FEE 433833 2529 6023054 2024-02-21 16:59:00.808 2024-02-21 16:59:00.808 18900 TIP 433833 16998 6023055 2024-02-21 16:59:01.439 2024-02-21 16:59:01.439 1600 FEE 433937 9906 6023056 2024-02-21 16:59:01.439 2024-02-21 16:59:01.439 14400 TIP 433937 12911 6023081 2024-02-21 17:00:56.267 2024-02-21 17:00:56.267 2100 FEE 433973 17103 6023082 2024-02-21 17:00:56.267 2024-02-21 17:00:56.267 18900 TIP 433973 12220 6023110 2024-02-21 17:03:18.97 2024-02-21 17:03:18.97 1000 FEE 433937 16124 6023111 2024-02-21 17:03:18.97 2024-02-21 17:03:18.97 9000 TIP 433937 14267 6023123 2024-02-21 17:04:39.157 2024-02-21 17:04:39.157 2100 FEE 433594 4538 6023124 2024-02-21 17:04:39.157 2024-02-21 17:04:39.157 18900 TIP 433594 14357 6023135 2024-02-21 17:05:26.289 2024-02-21 17:05:26.289 2100 FEE 433591 17227 6023136 2024-02-21 17:05:26.289 2024-02-21 17:05:26.289 18900 TIP 433591 18446 6023148 2024-02-21 17:05:50.639 2024-02-21 17:05:50.639 2100 FEE 433844 16830 6023149 2024-02-21 17:05:50.639 2024-02-21 17:05:50.639 18900 TIP 433844 18359 6023158 2024-02-21 17:07:24.726 2024-02-21 17:07:24.726 3100 FEE 433983 19842 6023159 2024-02-21 17:07:24.726 2024-02-21 17:07:24.726 27900 TIP 433983 12278 6023163 2024-02-21 17:07:30.279 2024-02-21 17:07:30.279 1000 FEE 433993 20157 6023166 2024-02-21 17:08:13.58 2024-02-21 17:08:13.58 1000 FEE 433995 19886 6023179 2024-02-21 17:10:47.142 2024-02-21 17:10:47.142 3300 FEE 433965 13987 6023180 2024-02-21 17:10:47.142 2024-02-21 17:10:47.142 29700 TIP 433965 7675 6023190 2024-02-21 17:11:09.162 2024-02-21 17:11:09.162 9000 FEE 433934 14657 6023191 2024-02-21 17:11:09.162 2024-02-21 17:11:09.162 81000 TIP 433934 18269 6023193 2024-02-21 17:11:22.054 2024-02-21 17:11:22.054 10000 FEE 434004 9329 6023204 2024-02-21 17:11:27.864 2024-02-21 17:11:27.864 3300 FEE 433833 21090 6023205 2024-02-21 17:11:27.864 2024-02-21 17:11:27.864 29700 TIP 433833 12516 6023212 2024-02-21 17:11:31.236 2024-02-21 17:11:31.236 3300 FEE 433740 19557 6023213 2024-02-21 17:11:31.236 2024-02-21 17:11:31.236 29700 TIP 433740 673 6023217 2024-02-21 17:12:45.635 2024-02-21 17:12:45.635 10100 FEE 433878 20594 6023218 2024-02-21 17:12:45.635 2024-02-21 17:12:45.635 90900 TIP 433878 631 6023221 2024-02-21 17:12:49.56 2024-02-21 17:12:49.56 900 FEE 434000 1401 6023222 2024-02-21 17:12:49.56 2024-02-21 17:12:49.56 8100 TIP 434000 21541 6023249 2024-02-21 17:14:52.615 2024-02-21 17:14:52.615 1000 FEE 434008 15060 6023309 2024-02-21 17:20:39.721 2024-02-21 17:20:39.721 100 FEE 434012 695 6023310 2024-02-21 17:20:39.721 2024-02-21 17:20:39.721 900 TIP 434012 13132 6023323 2024-02-21 17:21:29.753 2024-02-21 17:21:29.753 1000 FEE 434016 3717 6023331 2024-02-21 17:21:59.078 2024-02-21 17:21:59.078 1000 FEE 434018 20564 6023342 2024-02-21 17:22:39.286 2024-02-21 17:22:39.286 2100 FEE 433934 807 6023343 2024-02-21 17:22:39.286 2024-02-21 17:22:39.286 18900 TIP 433934 640 6023380 2024-02-21 17:26:23.695 2024-02-21 17:26:23.695 10100 FEE 433937 11498 6023381 2024-02-21 17:26:23.695 2024-02-21 17:26:23.695 90900 TIP 433937 12278 6023382 2024-02-21 17:26:42.768 2024-02-21 17:26:42.768 1000 FEE 434027 1044 6023383 2024-02-21 17:26:42.768 2024-02-21 17:26:42.768 9000 TIP 434027 1512 6023386 2024-02-21 17:26:56.471 2024-02-21 17:26:56.471 8300 FEE 433889 10818 6023387 2024-02-21 17:26:56.471 2024-02-21 17:26:56.471 74700 TIP 433889 1784 6023388 2024-02-21 17:26:56.776 2024-02-21 17:26:56.776 8300 FEE 433889 20109 6023389 2024-02-21 17:26:56.776 2024-02-21 17:26:56.776 74700 TIP 433889 17157 6023400 2024-02-21 17:27:13.561 2024-02-21 17:27:13.561 8300 FEE 433886 21357 6023401 2024-02-21 17:27:13.561 2024-02-21 17:27:13.561 74700 TIP 433886 776 6023421 2024-02-21 17:27:59.765 2024-02-21 17:27:59.765 100 FEE 433437 2774 6023422 2024-02-21 17:27:59.765 2024-02-21 17:27:59.765 900 TIP 433437 8173 6023427 2024-02-21 17:28:11.046 2024-02-21 17:28:11.046 0 FEE 434030 2724 6023450 2024-02-21 17:28:30.098 2024-02-21 17:28:30.098 16600 FEE 434034 6526 6023451 2024-02-21 17:28:30.098 2024-02-21 17:28:30.098 149400 TIP 434034 797 6023477 2024-02-21 17:28:45.135 2024-02-21 17:28:45.135 9000 FEE 433788 1959 6023478 2024-02-21 17:28:45.135 2024-02-21 17:28:45.135 81000 TIP 433788 1173 6023479 2024-02-21 17:28:45.556 2024-02-21 17:28:45.556 1000 FEE 434037 19633 6023570 2024-02-21 17:29:43.143 2024-02-21 17:29:43.143 2300 FEE 433844 12261 6023571 2024-02-21 17:29:43.143 2024-02-21 17:29:43.143 20700 TIP 433844 19907 6023590 2024-02-21 17:29:44.609 2024-02-21 17:29:44.609 2300 FEE 433844 2022 6023591 2024-02-21 17:29:44.609 2024-02-21 17:29:44.609 20700 TIP 433844 19449 6023608 2024-02-21 17:29:46.726 2024-02-21 17:29:46.726 2300 FEE 433844 7583 6023609 2024-02-21 17:29:46.726 2024-02-21 17:29:46.726 20700 TIP 433844 1480 6023639 2024-02-21 17:32:54.82 2024-02-21 17:32:54.82 7700 FEE 433853 19087 6023640 2024-02-21 17:32:54.82 2024-02-21 17:32:54.82 69300 TIP 433853 5444 6023673 2024-02-21 17:33:55.844 2024-02-21 17:33:55.844 1000 FEE 434046 10519 6023701 2024-02-21 17:37:02.864 2024-02-21 17:37:02.864 0 FEE 434045 1960 6023710 2024-02-21 17:37:32.849 2024-02-21 17:37:32.849 0 FEE 434049 8176 6023714 2024-02-21 17:38:52.825 2024-02-21 17:38:52.825 1000 FEE 434051 15148 6023773 2024-02-21 17:42:01.859 2024-02-21 17:42:01.859 2300 FEE 433833 617 6023774 2024-02-21 17:42:01.859 2024-02-21 17:42:01.859 20700 TIP 433833 21491 6023799 2024-02-21 17:43:41.312 2024-02-21 17:43:41.312 8300 FEE 434048 17291 6023800 2024-02-21 17:43:41.312 2024-02-21 17:43:41.312 74700 TIP 434048 10554 6023801 2024-02-21 17:43:41.422 2024-02-21 17:43:41.422 8300 FEE 434048 21398 6023802 2024-02-21 17:43:41.422 2024-02-21 17:43:41.422 74700 TIP 434048 21498 6023807 2024-02-21 17:43:41.818 2024-02-21 17:43:41.818 8300 FEE 434048 2829 6023808 2024-02-21 17:43:41.818 2024-02-21 17:43:41.818 74700 TIP 434048 20490 6023855 2024-02-21 17:44:13.253 2024-02-21 17:44:13.253 4000 FEE 434063 18828 6023856 2024-02-21 17:44:13.253 2024-02-21 17:44:13.253 36000 TIP 434063 21026 6023881 2024-02-21 17:46:37.245 2024-02-21 17:46:37.245 500 FEE 433828 12959 6023882 2024-02-21 17:46:37.245 2024-02-21 17:46:37.245 4500 TIP 433828 21523 6023885 2024-02-21 17:47:08.294 2024-02-21 17:47:08.294 100 FEE 433962 10719 6023886 2024-02-21 17:47:08.294 2024-02-21 17:47:08.294 900 TIP 433962 19138 6023892 2024-02-21 17:47:55.554 2024-02-21 17:47:55.554 700 FEE 434010 2774 6023893 2024-02-21 17:47:55.554 2024-02-21 17:47:55.554 6300 TIP 434010 16816 6023897 2024-02-21 17:48:18.99 2024-02-21 17:48:18.99 500 FEE 433851 21194 6023898 2024-02-21 17:48:18.99 2024-02-21 17:48:18.99 4500 TIP 433851 15488 6023252 2024-02-21 17:16:03.886 2024-02-21 17:16:03.886 1000 STREAM 141924 663 6023264 2024-02-21 17:18:03.915 2024-02-21 17:18:03.915 1000 STREAM 141924 794 6023350 2024-02-21 17:24:03.929 2024-02-21 17:24:03.929 1000 STREAM 141924 18557 6023372 2024-02-21 17:26:03.944 2024-02-21 17:26:03.944 1000 STREAM 141924 17984 6023394 2024-02-21 17:27:03.952 2024-02-21 17:27:03.952 1000 STREAM 141924 14905 6023423 2024-02-21 17:28:03.954 2024-02-21 17:28:03.954 1000 STREAM 141924 2711 6023616 2024-02-21 17:30:03.978 2024-02-21 17:30:03.978 1000 STREAM 141924 1740 6023619 2024-02-21 17:31:03.982 2024-02-21 17:31:03.982 1000 STREAM 141924 21036 6023653 2024-02-21 17:33:03.983 2024-02-21 17:33:03.983 1000 STREAM 141924 10611 6023674 2024-02-21 17:34:03.992 2024-02-21 17:34:03.992 1000 STREAM 141924 17030 6023685 2024-02-21 17:35:03.993 2024-02-21 17:35:03.993 1000 STREAM 141924 1697 6023702 2024-02-21 17:37:04.031 2024-02-21 17:37:04.031 1000 STREAM 141924 14168 6023713 2024-02-21 17:38:04.035 2024-02-21 17:38:04.035 1000 STREAM 141924 4259 6023724 2024-02-21 17:40:04.053 2024-02-21 17:40:04.053 1000 STREAM 141924 1320 6023731 2024-02-21 17:41:04.054 2024-02-21 17:41:04.054 1000 STREAM 141924 16178 6023840 2024-02-21 17:44:04.065 2024-02-21 17:44:04.065 1000 STREAM 141924 12139 6023873 2024-02-21 17:45:04.091 2024-02-21 17:45:04.091 1000 STREAM 141924 18705 6023878 2024-02-21 17:46:04.079 2024-02-21 17:46:04.079 1000 STREAM 141924 902 6023944 2024-02-21 17:51:04.103 2024-02-21 17:51:04.103 1000 STREAM 141924 12072 6023974 2024-02-21 17:52:04.109 2024-02-21 17:52:04.109 1000 STREAM 141924 12356 6023986 2024-02-21 17:53:04.128 2024-02-21 17:53:04.128 1000 STREAM 141924 16753 6024052 2024-02-21 17:56:04.196 2024-02-21 17:56:04.196 1000 STREAM 141924 21292 6024055 2024-02-21 17:57:04.198 2024-02-21 17:57:04.198 1000 STREAM 141924 6515 6024076 2024-02-21 17:59:04.224 2024-02-21 17:59:04.224 1000 STREAM 141924 9906 6024145 2024-02-21 18:02:04.234 2024-02-21 18:02:04.234 1000 STREAM 141924 2046 6024263 2024-02-21 18:07:04.258 2024-02-21 18:07:04.258 1000 STREAM 141924 12606 6024268 2024-02-21 18:08:04.245 2024-02-21 18:08:04.245 1000 STREAM 141924 12277 6024294 2024-02-21 18:10:04.264 2024-02-21 18:10:04.264 1000 STREAM 141924 19905 6024309 2024-02-21 18:11:04.265 2024-02-21 18:11:04.265 1000 STREAM 141924 19689 6024330 2024-02-21 18:13:04.283 2024-02-21 18:13:04.283 1000 STREAM 141924 646 6024357 2024-02-21 18:14:04.289 2024-02-21 18:14:04.289 1000 STREAM 141924 1718 6024399 2024-02-21 18:16:04.436 2024-02-21 18:16:04.436 1000 STREAM 141924 19309 6024414 2024-02-21 18:17:04.46 2024-02-21 18:17:04.46 1000 STREAM 141924 13931 6024422 2024-02-21 18:18:04.468 2024-02-21 18:18:04.468 1000 STREAM 141924 20225 6024435 2024-02-21 18:19:04.446 2024-02-21 18:19:04.446 1000 STREAM 141924 1474 6024553 2024-02-21 18:23:04.469 2024-02-21 18:23:04.469 1000 STREAM 141924 21072 6024625 2024-02-21 18:25:04.497 2024-02-21 18:25:04.497 1000 STREAM 141924 1970 6024646 2024-02-21 18:26:04.49 2024-02-21 18:26:04.49 1000 STREAM 141924 4126 6024656 2024-02-21 18:27:04.505 2024-02-21 18:27:04.505 1000 STREAM 141924 21090 6024666 2024-02-21 18:29:04.511 2024-02-21 18:29:04.511 1000 STREAM 141924 4692 6024674 2024-02-21 18:30:04.52 2024-02-21 18:30:04.52 1000 STREAM 141924 16126 6024689 2024-02-21 18:32:04.53 2024-02-21 18:32:04.53 1000 STREAM 141924 21527 6024692 2024-02-21 18:33:04.543 2024-02-21 18:33:04.543 1000 STREAM 141924 16562 6024712 2024-02-21 18:35:04.565 2024-02-21 18:35:04.565 1000 STREAM 141924 8870 6024751 2024-02-21 18:37:04.576 2024-02-21 18:37:04.576 1000 STREAM 141924 12930 6024760 2024-02-21 18:38:04.58 2024-02-21 18:38:04.58 1000 STREAM 141924 20539 6024795 2024-02-21 18:42:04.687 2024-02-21 18:42:04.687 1000 STREAM 141924 20616 6024820 2024-02-21 18:45:04.723 2024-02-21 18:45:04.723 1000 STREAM 141924 1712 6024825 2024-02-21 18:46:04.733 2024-02-21 18:46:04.733 1000 STREAM 141924 21357 6024857 2024-02-21 18:48:04.761 2024-02-21 18:48:04.761 1000 STREAM 141924 3642 6024931 2024-02-21 18:51:04.772 2024-02-21 18:51:04.772 1000 STREAM 141924 21033 6024938 2024-02-21 18:52:04.783 2024-02-21 18:52:04.783 1000 STREAM 141924 736 6024958 2024-02-21 18:53:04.796 2024-02-21 18:53:04.796 1000 STREAM 141924 19126 6024973 2024-02-21 18:55:04.803 2024-02-21 18:55:04.803 1000 STREAM 141924 5175 6023254 2024-02-21 17:17:03.887 2024-02-21 17:17:03.887 1000 STREAM 141924 19394 6023282 2024-02-21 17:19:03.905 2024-02-21 17:19:03.905 1000 STREAM 141924 666 6023294 2024-02-21 17:20:03.909 2024-02-21 17:20:03.909 1000 STREAM 141924 18264 6023319 2024-02-21 17:21:03.901 2024-02-21 17:21:03.901 1000 STREAM 141924 14295 6023334 2024-02-21 17:22:03.921 2024-02-21 17:22:03.921 1000 STREAM 141924 14152 6023347 2024-02-21 17:23:03.917 2024-02-21 17:23:03.917 1000 STREAM 141924 805 6023364 2024-02-21 17:25:03.93 2024-02-21 17:25:03.93 1000 STREAM 141924 9364 6023514 2024-02-21 17:29:03.961 2024-02-21 17:29:03.961 1000 STREAM 141924 3544 6023629 2024-02-21 17:32:03.975 2024-02-21 17:32:03.975 1000 STREAM 141924 21387 6023698 2024-02-21 17:36:03.999 2024-02-21 17:36:03.999 1000 STREAM 141924 1272 6023718 2024-02-21 17:39:04.039 2024-02-21 17:39:04.039 1000 STREAM 141924 2596 6023775 2024-02-21 17:42:04.068 2024-02-21 17:42:04.068 1000 STREAM 141924 9655 6023785 2024-02-21 17:43:04.065 2024-02-21 17:43:04.065 1000 STREAM 141924 21400 6023884 2024-02-21 17:47:04.084 2024-02-21 17:47:04.084 1000 STREAM 141924 10981 6023894 2024-02-21 17:48:04.08 2024-02-21 17:48:04.08 1000 STREAM 141924 20084 6023913 2024-02-21 17:49:04.082 2024-02-21 17:49:04.082 1000 STREAM 141924 9346 6023935 2024-02-21 17:50:04.105 2024-02-21 17:50:04.105 1000 STREAM 141924 1817 6024022 2024-02-21 17:54:04.132 2024-02-21 17:54:04.132 1000 STREAM 141924 780 6024032 2024-02-21 17:55:04.146 2024-02-21 17:55:04.146 1000 STREAM 141924 18640 6024063 2024-02-21 17:58:04.197 2024-02-21 17:58:04.197 1000 STREAM 141924 17552 6024084 2024-02-21 18:00:04.281 2024-02-21 18:00:04.281 1000 STREAM 141924 1801 6024112 2024-02-21 18:01:04.24 2024-02-21 18:01:04.24 1000 STREAM 141924 5293 6024189 2024-02-21 18:03:04.236 2024-02-21 18:03:04.236 1000 STREAM 141924 726 6024199 2024-02-21 18:04:04.232 2024-02-21 18:04:04.232 1000 STREAM 141924 20306 6024219 2024-02-21 18:05:04.237 2024-02-21 18:05:04.237 1000 STREAM 141924 11561 6024254 2024-02-21 18:06:04.244 2024-02-21 18:06:04.244 1000 STREAM 141924 6688 6024280 2024-02-21 18:09:04.258 2024-02-21 18:09:04.258 1000 STREAM 141924 19664 6024310 2024-02-21 18:12:04.276 2024-02-21 18:12:04.276 1000 STREAM 141924 19320 6024391 2024-02-21 18:15:04.324 2024-02-21 18:15:04.324 1000 STREAM 141924 1124 6024466 2024-02-21 18:20:04.461 2024-02-21 18:20:04.461 1000 STREAM 141924 6149 6024505 2024-02-21 18:21:04.466 2024-02-21 18:21:04.466 1000 STREAM 141924 11527 6024521 2024-02-21 18:22:04.485 2024-02-21 18:22:04.485 1000 STREAM 141924 6268 6024580 2024-02-21 18:24:04.507 2024-02-21 18:24:04.507 1000 STREAM 141924 19878 6024659 2024-02-21 18:28:04.504 2024-02-21 18:28:04.504 1000 STREAM 141924 15326 6024681 2024-02-21 18:31:04.55 2024-02-21 18:31:04.55 1000 STREAM 141924 886 6024693 2024-02-21 18:34:04.542 2024-02-21 18:34:04.542 1000 STREAM 141924 9529 6024742 2024-02-21 18:36:04.572 2024-02-21 18:36:04.572 1000 STREAM 141924 9845 6024761 2024-02-21 18:39:04.678 2024-02-21 18:39:04.678 1000 STREAM 141924 3417 6024783 2024-02-21 18:40:04.701 2024-02-21 18:40:04.701 1000 STREAM 141924 9433 6024791 2024-02-21 18:41:04.691 2024-02-21 18:41:04.691 1000 STREAM 141924 21480 6024802 2024-02-21 18:43:04.722 2024-02-21 18:43:04.722 1000 STREAM 141924 12334 6024811 2024-02-21 18:44:04.719 2024-02-21 18:44:04.719 1000 STREAM 141924 6471 6024828 2024-02-21 18:47:04.741 2024-02-21 18:47:04.741 1000 STREAM 141924 2513 6024860 2024-02-21 18:49:04.768 2024-02-21 18:49:04.768 1000 STREAM 141924 19583 6024885 2024-02-21 18:50:04.777 2024-02-21 18:50:04.777 1000 STREAM 141924 620 6024968 2024-02-21 18:54:04.774 2024-02-21 18:54:04.774 1000 STREAM 141924 900 6023260 2024-02-21 17:17:45.291 2024-02-21 17:17:45.291 1000 FEE 433740 18280 6023261 2024-02-21 17:17:45.291 2024-02-21 17:17:45.291 9000 TIP 433740 8080 6023274 2024-02-21 17:18:40.099 2024-02-21 17:18:40.099 8300 FEE 433891 6327 6023275 2024-02-21 17:18:40.099 2024-02-21 17:18:40.099 74700 TIP 433891 11898 6023320 2024-02-21 17:21:04.44 2024-02-21 17:21:04.44 5000 FEE 433663 17976 6023321 2024-02-21 17:21:04.44 2024-02-21 17:21:04.44 45000 TIP 433663 17217 6023354 2024-02-21 17:24:09.152 2024-02-21 17:24:09.152 27900 FEE 433688 21036 6023355 2024-02-21 17:24:09.152 2024-02-21 17:24:09.152 251100 TIP 433688 2652 6023359 2024-02-21 17:24:17.198 2024-02-21 17:24:17.198 2100 FEE 433900 20179 6023360 2024-02-21 17:24:17.198 2024-02-21 17:24:17.198 18900 TIP 433900 18452 6023365 2024-02-21 17:25:27.209 2024-02-21 17:25:27.209 10100 FEE 434011 19690 6023366 2024-02-21 17:25:27.209 2024-02-21 17:25:27.209 90900 TIP 434011 9844 6023390 2024-02-21 17:26:58.033 2024-02-21 17:26:58.033 8300 FEE 433889 20599 6023391 2024-02-21 17:26:58.033 2024-02-21 17:26:58.033 74700 TIP 433889 19021 6023402 2024-02-21 17:27:15.578 2024-02-21 17:27:15.578 12800 FEE 433992 705 6023403 2024-02-21 17:27:15.578 2024-02-21 17:27:15.578 115200 TIP 433992 9450 6023412 2024-02-21 17:27:34.366 2024-02-21 17:27:34.366 300 FEE 434027 12218 6023413 2024-02-21 17:27:34.366 2024-02-21 17:27:34.366 2700 TIP 434027 11829 6023416 2024-02-21 17:27:35.699 2024-02-21 17:27:35.699 1000 FEE 434031 4378 6023430 2024-02-21 17:28:11.799 2024-02-21 17:28:11.799 8300 FEE 433978 10771 6023431 2024-02-21 17:28:11.799 2024-02-21 17:28:11.799 74700 TIP 433978 1733 6023433 2024-02-21 17:28:13.823 2024-02-21 17:28:13.823 1000 FEE 434036 17275 6023444 2024-02-21 17:28:29.6 2024-02-21 17:28:29.6 8300 FEE 434034 16966 6023445 2024-02-21 17:28:29.6 2024-02-21 17:28:29.6 74700 TIP 434034 18526 6023462 2024-02-21 17:28:39.544 2024-02-21 17:28:39.544 90000 FEE 433835 12049 6023463 2024-02-21 17:28:39.544 2024-02-21 17:28:39.544 810000 TIP 433835 2203 6023464 2024-02-21 17:28:41.63 2024-02-21 17:28:41.63 24900 FEE 433878 11698 6023465 2024-02-21 17:28:41.63 2024-02-21 17:28:41.63 224100 TIP 433878 6765 6023480 2024-02-21 17:28:47.226 2024-02-21 17:28:47.226 1000 FEE 433688 1833 6023481 2024-02-21 17:28:47.226 2024-02-21 17:28:47.226 9000 TIP 433688 21040 6023495 2024-02-21 17:28:57.197 2024-02-21 17:28:57.197 8300 FEE 433844 6268 6023496 2024-02-21 17:28:57.197 2024-02-21 17:28:57.197 74700 TIP 433844 17455 6023507 2024-02-21 17:28:58.111 2024-02-21 17:28:58.111 8300 FEE 433844 9517 6023508 2024-02-21 17:28:58.111 2024-02-21 17:28:58.111 74700 TIP 433844 8133 6023522 2024-02-21 17:29:18.221 2024-02-21 17:29:18.221 10000 FEE 433882 7966 6023523 2024-02-21 17:29:18.221 2024-02-21 17:29:18.221 90000 TIP 433882 4395 6023531 2024-02-21 17:29:25.877 2024-02-21 17:29:25.877 10000 FEE 433894 21393 6023532 2024-02-21 17:29:25.877 2024-02-21 17:29:25.877 90000 TIP 433894 15213 6023548 2024-02-21 17:29:39.22 2024-02-21 17:29:39.22 2300 FEE 433844 825 6023549 2024-02-21 17:29:39.22 2024-02-21 17:29:39.22 20700 TIP 433844 14795 6023572 2024-02-21 17:29:43.272 2024-02-21 17:29:43.272 2300 FEE 433844 19329 6023573 2024-02-21 17:29:43.272 2024-02-21 17:29:43.272 20700 TIP 433844 14939 6023576 2024-02-21 17:29:43.577 2024-02-21 17:29:43.577 2300 FEE 433844 20881 6023577 2024-02-21 17:29:43.577 2024-02-21 17:29:43.577 20700 TIP 433844 20102 6023584 2024-02-21 17:29:44.201 2024-02-21 17:29:44.201 2300 FEE 433844 9367 6023585 2024-02-21 17:29:44.201 2024-02-21 17:29:44.201 20700 TIP 433844 19996 6023600 2024-02-21 17:29:46.155 2024-02-21 17:29:46.155 2300 FEE 433844 20015 6023601 2024-02-21 17:29:46.155 2024-02-21 17:29:46.155 20700 TIP 433844 16847 6023606 2024-02-21 17:29:46.582 2024-02-21 17:29:46.582 2300 FEE 433844 17552 6023607 2024-02-21 17:29:46.582 2024-02-21 17:29:46.582 20700 TIP 433844 21562 6023631 2024-02-21 17:32:42.899 2024-02-21 17:32:42.899 1000 FEE 434045 15560 6023686 2024-02-21 17:35:06.827 2024-02-21 17:35:06.827 3300 FEE 433746 14657 6023687 2024-02-21 17:35:06.827 2024-02-21 17:35:06.827 29700 TIP 433746 946 6023726 2024-02-21 17:40:38.133 2024-02-21 17:40:38.133 1000 FEE 434054 2367 6023727 2024-02-21 17:40:41.225 2024-02-21 17:40:41.225 5000 FEE 433943 2757 6023728 2024-02-21 17:40:41.225 2024-02-21 17:40:41.225 45000 TIP 433943 19284 6023748 2024-02-21 17:41:47.224 2024-02-21 17:41:47.224 2300 FEE 433943 15161 6023749 2024-02-21 17:41:47.224 2024-02-21 17:41:47.224 20700 TIP 433943 4624 6023762 2024-02-21 17:41:59.497 2024-02-21 17:41:59.497 1000 FEE 434059 9353 6023769 2024-02-21 17:42:00.751 2024-02-21 17:42:00.751 2300 FEE 433833 18664 6023770 2024-02-21 17:42:00.751 2024-02-21 17:42:00.751 20700 TIP 433833 20370 6023780 2024-02-21 17:42:40.996 2024-02-21 17:42:40.996 2100 FEE 433929 1474 6023781 2024-02-21 17:42:40.996 2024-02-21 17:42:40.996 18900 TIP 433929 667 6023797 2024-02-21 17:43:41.278 2024-02-21 17:43:41.278 8300 FEE 434048 17275 6023798 2024-02-21 17:43:41.278 2024-02-21 17:43:41.278 74700 TIP 434048 4989 6023803 2024-02-21 17:43:41.569 2024-02-21 17:43:41.569 8300 FEE 434048 10530 6023804 2024-02-21 17:43:41.569 2024-02-21 17:43:41.569 74700 TIP 434048 10291 6023819 2024-02-21 17:43:43.428 2024-02-21 17:43:43.428 8300 FEE 434048 13249 6023820 2024-02-21 17:43:43.428 2024-02-21 17:43:43.428 74700 TIP 434048 20623 6023821 2024-02-21 17:43:44.169 2024-02-21 17:43:44.169 8300 FEE 434048 16594 6023822 2024-02-21 17:43:44.169 2024-02-21 17:43:44.169 74700 TIP 434048 9200 6023838 2024-02-21 17:43:55.823 2024-02-21 17:43:55.823 3300 FEE 433589 20825 6023839 2024-02-21 17:43:55.823 2024-02-21 17:43:55.823 29700 TIP 433589 20849 6023843 2024-02-21 17:44:04.546 2024-02-21 17:44:04.546 8300 FEE 433828 16753 6023844 2024-02-21 17:44:04.546 2024-02-21 17:44:04.546 74700 TIP 433828 19967 6023845 2024-02-21 17:44:04.647 2024-02-21 17:44:04.647 8300 FEE 433828 13204 6023846 2024-02-21 17:44:04.647 2024-02-21 17:44:04.647 74700 TIP 433828 20603 6023865 2024-02-21 17:44:57.711 2024-02-21 17:44:57.711 1200 FEE 433902 18736 6023866 2024-02-21 17:44:57.711 2024-02-21 17:44:57.711 10800 TIP 433902 17568 6023869 2024-02-21 17:45:00.674 2024-02-21 17:45:00.674 3300 FEE 433910 7998 6023870 2024-02-21 17:45:00.674 2024-02-21 17:45:00.674 29700 TIP 433910 1723 6023888 2024-02-21 17:47:30.432 2024-02-21 17:47:30.432 4000 FEE 434040 8074 6023889 2024-02-21 17:47:30.432 2024-02-21 17:47:30.432 36000 TIP 434040 19981 6023907 2024-02-21 17:48:37.211 2024-02-21 17:48:37.211 10000 FEE 434048 2961 6023908 2024-02-21 17:48:37.211 2024-02-21 17:48:37.211 90000 TIP 434048 19664 6023924 2024-02-21 17:49:41.692 2024-02-21 17:49:41.692 500 FEE 433978 721 6023925 2024-02-21 17:49:41.692 2024-02-21 17:49:41.692 4500 TIP 433978 928 6023945 2024-02-21 17:51:04.833 2024-02-21 17:51:04.833 500 FEE 433835 18673 6023946 2024-02-21 17:51:04.833 2024-02-21 17:51:04.833 4500 TIP 433835 6361 6023970 2024-02-21 17:52:03.151 2024-02-21 17:52:03.151 1100 FEE 434075 15703 6023971 2024-02-21 17:52:03.151 2024-02-21 17:52:03.151 9900 TIP 434075 20710 6024001 2024-02-21 17:53:20.214 2024-02-21 17:53:20.214 1000 FEE 434025 21090 6024002 2024-02-21 17:53:20.214 2024-02-21 17:53:20.214 9000 TIP 434025 15858 6024011 2024-02-21 17:53:21.493 2024-02-21 17:53:21.493 1000 FEE 434023 21585 6024012 2024-02-21 17:53:21.493 2024-02-21 17:53:21.493 9000 TIP 434023 20906 6024013 2024-02-21 17:53:21.624 2024-02-21 17:53:21.624 1000 FEE 434023 21501 6024014 2024-02-21 17:53:21.624 2024-02-21 17:53:21.624 9000 TIP 434023 19759 6024017 2024-02-21 17:53:29.287 2024-02-21 17:53:29.287 1000 FEE 434084 4570 6024021 2024-02-21 17:54:01.522 2024-02-21 17:54:01.522 10000 FEE 434086 1652 6024082 2024-02-21 17:59:57.06 2024-02-21 17:59:57.06 2100 FEE 433835 17124 6024083 2024-02-21 17:59:57.06 2024-02-21 17:59:57.06 18900 TIP 433835 7587 6024111 2024-02-21 18:01:04.057 2024-02-21 18:01:04.057 10000 FEE 434102 15148 6024123 2024-02-21 18:01:27.052 2024-02-21 18:01:27.052 100 FEE 433960 13517 6024124 2024-02-21 18:01:27.052 2024-02-21 18:01:27.052 900 TIP 433960 13327 6024129 2024-02-21 18:01:28.307 2024-02-21 18:01:28.307 2100 FEE 433555 6393 6024130 2024-02-21 18:01:28.307 2024-02-21 18:01:28.307 18900 TIP 433555 21416 6024134 2024-02-21 18:01:30.716 2024-02-21 18:01:30.716 900 FEE 433996 699 6023357 2024-02-21 17:24:15.125 2024-02-21 17:24:15.125 10300 FEE 433943 8289 6023358 2024-02-21 17:24:15.125 2024-02-21 17:24:15.125 92700 TIP 433943 11298 6023408 2024-02-21 17:27:33.555 2024-02-21 17:27:33.555 600 FEE 434027 1120 6023409 2024-02-21 17:27:33.555 2024-02-21 17:27:33.555 5400 TIP 434027 18265 6023419 2024-02-21 17:27:56.299 2024-02-21 17:27:56.299 1000 FEE 434029 21453 6023420 2024-02-21 17:27:56.299 2024-02-21 17:27:56.299 9000 TIP 434029 12278 6023424 2024-02-21 17:28:10.822 2024-02-21 17:28:10.822 8300 FEE 433978 730 6023425 2024-02-21 17:28:10.822 2024-02-21 17:28:10.822 74700 TIP 433978 12566 6023426 2024-02-21 17:28:10.855 2024-02-21 17:28:10.855 1000 FEE 434034 1493 6023436 2024-02-21 17:28:17.822 2024-02-21 17:28:17.822 10000 FEE 433842 18402 6023437 2024-02-21 17:28:17.822 2024-02-21 17:28:17.822 90000 TIP 433842 763 6023454 2024-02-21 17:28:34.788 2024-02-21 17:28:34.788 2100 FEE 434017 6777 6023455 2024-02-21 17:28:34.788 2024-02-21 17:28:34.788 18900 TIP 434017 19995 6023470 2024-02-21 17:28:43.181 2024-02-21 17:28:43.181 10000 FEE 433891 8985 6023471 2024-02-21 17:28:43.181 2024-02-21 17:28:43.181 90000 TIP 433891 1389 6023476 2024-02-21 17:28:44.28 2024-02-21 17:28:44.28 0 FEE 434030 3729 6023490 2024-02-21 17:28:50.249 2024-02-21 17:28:50.249 9000 FEE 433779 20841 6023491 2024-02-21 17:28:50.249 2024-02-21 17:28:50.249 81000 TIP 433779 21051 6023501 2024-02-21 17:28:57.735 2024-02-21 17:28:57.735 8300 FEE 433844 21520 6023502 2024-02-21 17:28:57.735 2024-02-21 17:28:57.735 74700 TIP 433844 18309 6023535 2024-02-21 17:29:26.343 2024-02-21 17:29:26.343 900 FEE 433695 21155 6023536 2024-02-21 17:29:26.343 2024-02-21 17:29:26.343 8100 TIP 433695 5791 6023546 2024-02-21 17:29:39.077 2024-02-21 17:29:39.077 2300 FEE 433844 673 6023547 2024-02-21 17:29:39.077 2024-02-21 17:29:39.077 20700 TIP 433844 685 6023617 2024-02-21 17:30:32.24 2024-02-21 17:30:32.24 1000 FEE 434042 17212 6023621 2024-02-21 17:31:32.825 2024-02-21 17:31:32.825 10000 FEE 433397 9552 6023622 2024-02-21 17:31:32.825 2024-02-21 17:31:32.825 90000 TIP 433397 21040 6023630 2024-02-21 17:32:25.291 2024-02-21 17:32:25.291 0 FEE 434030 11298 6023664 2024-02-21 17:33:40.321 2024-02-21 17:33:40.321 10200 FEE 433886 989 6023665 2024-02-21 17:33:40.321 2024-02-21 17:33:40.321 91800 TIP 433886 19987 6023677 2024-02-21 17:34:15.507 2024-02-21 17:34:15.507 3300 FEE 433594 20754 6023678 2024-02-21 17:34:15.507 2024-02-21 17:34:15.507 29700 TIP 433594 2709 6023722 2024-02-21 17:39:21.344 2024-02-21 17:39:21.344 4000 FEE 434051 19524 6023723 2024-02-21 17:39:21.344 2024-02-21 17:39:21.344 36000 TIP 434051 7682 6023725 2024-02-21 17:40:29.091 2024-02-21 17:40:29.091 1000 FEE 434053 10359 6023734 2024-02-21 17:41:34.485 2024-02-21 17:41:34.485 3300 FEE 433679 4989 6023735 2024-02-21 17:41:34.485 2024-02-21 17:41:34.485 29700 TIP 433679 12976 6023738 2024-02-21 17:41:34.798 2024-02-21 17:41:34.798 3300 FEE 433679 17797 6023739 2024-02-21 17:41:34.798 2024-02-21 17:41:34.798 29700 TIP 433679 1890 6023742 2024-02-21 17:41:40.84 2024-02-21 17:41:40.84 3300 FEE 433721 13921 6023743 2024-02-21 17:41:40.84 2024-02-21 17:41:40.84 29700 TIP 433721 8916 6023746 2024-02-21 17:41:47.16 2024-02-21 17:41:47.16 2300 FEE 433943 1175 6023747 2024-02-21 17:41:47.16 2024-02-21 17:41:47.16 20700 TIP 433943 4570 6023752 2024-02-21 17:41:47.588 2024-02-21 17:41:47.588 2300 FEE 433943 20563 6023753 2024-02-21 17:41:47.588 2024-02-21 17:41:47.588 20700 TIP 433943 4167 6023767 2024-02-21 17:42:00.482 2024-02-21 17:42:00.482 4600 FEE 433833 21119 6023768 2024-02-21 17:42:00.482 2024-02-21 17:42:00.482 41400 TIP 433833 2775 6023782 2024-02-21 17:42:59.005 2024-02-21 17:42:59.005 1000 FEE 434061 2703 6023789 2024-02-21 17:43:12.72 2024-02-21 17:43:12.72 1000 FEE 434059 18363 6023790 2024-02-21 17:43:12.72 2024-02-21 17:43:12.72 9000 TIP 434059 18511 6023811 2024-02-21 17:43:42.142 2024-02-21 17:43:42.142 8300 FEE 434048 1733 6023812 2024-02-21 17:43:42.142 2024-02-21 17:43:42.142 74700 TIP 434048 1008 6023877 2024-02-21 17:45:42.728 2024-02-21 17:45:42.728 1000 FEE 434069 18449 6023879 2024-02-21 17:46:36.792 2024-02-21 17:46:36.792 500 FEE 433828 19527 6023880 2024-02-21 17:46:36.792 2024-02-21 17:46:36.792 4500 TIP 433828 19810 6023903 2024-02-21 17:48:21.868 2024-02-21 17:48:21.868 1000 FEE 434073 13553 6023916 2024-02-21 17:49:09.549 2024-02-21 17:49:09.549 1000 FEE 434075 19174 6023921 2024-02-21 17:49:36.917 2024-02-21 17:49:36.917 1000 FEE 434076 21371 6023947 2024-02-21 17:51:05.568 2024-02-21 17:51:05.568 500 FEE 433835 1823 6023948 2024-02-21 17:51:05.568 2024-02-21 17:51:05.568 4500 TIP 433835 16679 6023965 2024-02-21 17:51:29.272 2024-02-21 17:51:29.272 100 FEE 433886 16154 6023966 2024-02-21 17:51:29.272 2024-02-21 17:51:29.272 900 TIP 433886 17316 6023978 2024-02-21 17:52:09.397 2024-02-21 17:52:09.397 2100 FEE 433937 8385 6023979 2024-02-21 17:52:09.397 2024-02-21 17:52:09.397 18900 TIP 433937 13132 6024015 2024-02-21 17:53:21.807 2024-02-21 17:53:21.807 1000 FEE 434023 1307 6024016 2024-02-21 17:53:21.807 2024-02-21 17:53:21.807 9000 TIP 434023 21178 6024020 2024-02-21 17:53:57.766 2024-02-21 17:53:57.766 1000 FEE 434085 2459 6024043 2024-02-21 17:55:31.347 2024-02-21 17:55:31.347 50000 FEE 434056 20775 6024044 2024-02-21 17:55:31.347 2024-02-21 17:55:31.347 450000 TIP 434056 19033 6024049 2024-02-21 17:55:49.725 2024-02-21 17:55:49.725 50000 FEE 434084 5637 6024050 2024-02-21 17:55:49.725 2024-02-21 17:55:49.725 450000 TIP 434084 4633 6024074 2024-02-21 17:59:01.628 2024-02-21 17:59:01.628 2100 FEE 433943 13798 6024075 2024-02-21 17:59:01.628 2024-02-21 17:59:01.628 18900 TIP 433943 8074 6024080 2024-02-21 17:59:41.613 2024-02-21 17:59:41.613 2100 FEE 433889 959 6024081 2024-02-21 17:59:41.613 2024-02-21 17:59:41.613 18900 TIP 433889 6327 6024095 2024-02-21 18:00:45.063 2024-02-21 18:00:45.063 2100 FEE 433713 5761 6024096 2024-02-21 18:00:45.063 2024-02-21 18:00:45.063 18900 TIP 433713 16839 6024108 2024-02-21 18:00:56.412 2024-02-21 18:00:56.412 1000 FEE 434101 6260 6024109 2024-02-21 18:01:00.894 2024-02-21 18:01:00.894 2100 FEE 433677 10818 6024110 2024-02-21 18:01:00.894 2024-02-21 18:01:00.894 18900 TIP 433677 2502 6024114 2024-02-21 18:01:14.611 2024-02-21 18:01:14.611 2100 FEE 433594 12566 6024115 2024-02-21 18:01:14.611 2024-02-21 18:01:14.611 18900 TIP 433594 21033 6024116 2024-02-21 18:01:18.588 2024-02-21 18:01:18.588 1000 FEE 434103 16724 6024125 2024-02-21 18:01:27.283 2024-02-21 18:01:27.283 2100 FEE 434100 761 6024126 2024-02-21 18:01:27.283 2024-02-21 18:01:27.283 18900 TIP 434100 5961 6024142 2024-02-21 18:01:43.865 2024-02-21 18:01:43.865 900 FEE 433797 1609 6024143 2024-02-21 18:01:43.865 2024-02-21 18:01:43.865 8100 TIP 433797 20669 6024178 2024-02-21 18:02:42.5 2024-02-21 18:02:42.5 1000 FEE 434106 899 6024232 2024-02-21 18:05:32.019 2024-02-21 18:05:32.019 1000 FEE 433889 5757 6024233 2024-02-21 18:05:32.019 2024-02-21 18:05:32.019 9000 TIP 433889 19281 6024250 2024-02-21 18:06:01.88 2024-02-21 18:06:01.88 4000 FEE 434097 21148 6024251 2024-02-21 18:06:01.88 2024-02-21 18:06:01.88 36000 TIP 434097 2502 6024255 2024-02-21 18:06:07.217 2024-02-21 18:06:07.217 5000 FEE 434044 4388 6024256 2024-02-21 18:06:07.217 2024-02-21 18:06:07.217 45000 TIP 434044 19668 6024284 2024-02-21 18:09:24.577 2024-02-21 18:09:24.577 1000 FEE 434038 1890 6024285 2024-02-21 18:09:24.577 2024-02-21 18:09:24.577 9000 TIP 434038 5487 6024297 2024-02-21 18:10:30.047 2024-02-21 18:10:30.047 10000 FEE 434079 19151 6024298 2024-02-21 18:10:30.047 2024-02-21 18:10:30.047 90000 TIP 434079 8998 6024299 2024-02-21 18:10:46.369 2024-02-21 18:10:46.369 1000 FEE 434118 8242 6024300 2024-02-21 18:10:46.369 2024-02-21 18:10:46.369 9000 TIP 434118 16948 6024347 2024-02-21 18:13:17.109 2024-02-21 18:13:17.109 100 FEE 434061 15474 6024348 2024-02-21 18:13:17.109 2024-02-21 18:13:17.109 900 TIP 434061 16270 6024381 2024-02-21 18:14:45.341 2024-02-21 18:14:45.341 1000 FEE 434120 19142 6024382 2024-02-21 18:14:45.341 2024-02-21 18:14:45.341 9000 TIP 434120 919 6024418 2024-02-21 18:17:44.793 2024-02-21 18:17:44.793 0 FEE 434121 1286 6024437 2024-02-21 18:19:10.202 2024-02-21 18:19:10.202 2100 FEE 433828 20852 6024438 2024-02-21 18:19:10.202 2024-02-21 18:19:10.202 18900 TIP 433828 14074 6023615 2024-02-21 17:29:49.907 2024-02-21 17:29:49.907 9000 TIP 434035 18618 6023623 2024-02-21 17:31:36.585 2024-02-21 17:31:36.585 10000 FEE 433405 19449 6023624 2024-02-21 17:31:36.585 2024-02-21 17:31:36.585 90000 TIP 433405 15386 6023637 2024-02-21 17:32:54.652 2024-02-21 17:32:54.652 7700 FEE 433853 16289 6023638 2024-02-21 17:32:54.652 2024-02-21 17:32:54.652 69300 TIP 433853 16747 6023641 2024-02-21 17:32:55.109 2024-02-21 17:32:55.109 7700 FEE 433853 15488 6023642 2024-02-21 17:32:55.109 2024-02-21 17:32:55.109 69300 TIP 433853 21472 6023656 2024-02-21 17:33:18.139 2024-02-21 17:33:18.139 3300 FEE 434007 3709 6023657 2024-02-21 17:33:18.139 2024-02-21 17:33:18.139 29700 TIP 434007 5497 6023660 2024-02-21 17:33:26.779 2024-02-21 17:33:26.779 10000 FEE 434007 3353 6023661 2024-02-21 17:33:26.779 2024-02-21 17:33:26.779 90000 TIP 434007 12272 6023666 2024-02-21 17:33:42.209 2024-02-21 17:33:42.209 2100 FEE 433898 19462 6023667 2024-02-21 17:33:42.209 2024-02-21 17:33:42.209 18900 TIP 433898 2776 6023679 2024-02-21 17:34:24.832 2024-02-21 17:34:24.832 2100 FEE 434028 20306 6023680 2024-02-21 17:34:24.832 2024-02-21 17:34:24.832 18900 TIP 434028 12265 6023684 2024-02-21 17:35:01.518 2024-02-21 17:35:01.518 1000 FEE 434048 13100 6023690 2024-02-21 17:35:07.209 2024-02-21 17:35:07.209 3300 FEE 433746 2188 6023691 2024-02-21 17:35:07.209 2024-02-21 17:35:07.209 29700 TIP 433746 14152 6023694 2024-02-21 17:35:40.283 2024-02-21 17:35:40.283 2100 FEE 434038 9362 6023695 2024-02-21 17:35:40.283 2024-02-21 17:35:40.283 18900 TIP 434038 9336 6023744 2024-02-21 17:41:41.112 2024-02-21 17:41:41.112 3300 FEE 433721 15094 6023745 2024-02-21 17:41:41.112 2024-02-21 17:41:41.112 29700 TIP 433721 15196 6023750 2024-02-21 17:41:47.511 2024-02-21 17:41:47.511 2300 FEE 433943 646 6023751 2024-02-21 17:41:47.511 2024-02-21 17:41:47.511 20700 TIP 433943 20087 6023754 2024-02-21 17:41:47.762 2024-02-21 17:41:47.762 2300 FEE 433943 797 6023755 2024-02-21 17:41:47.762 2024-02-21 17:41:47.762 20700 TIP 433943 14552 6023771 2024-02-21 17:42:01.743 2024-02-21 17:42:01.743 2300 FEE 433833 9496 6023772 2024-02-21 17:42:01.743 2024-02-21 17:42:01.743 20700 TIP 433833 956 6023776 2024-02-21 17:42:06.2 2024-02-21 17:42:06.2 0 FEE 434059 2156 6023792 2024-02-21 17:43:15.901 2024-02-21 17:43:15.901 1000 FEE 434064 9261 6023809 2024-02-21 17:43:41.961 2024-02-21 17:43:41.961 8300 FEE 434048 21292 6023810 2024-02-21 17:43:41.961 2024-02-21 17:43:41.961 74700 TIP 434048 21079 6023847 2024-02-21 17:44:04.874 2024-02-21 17:44:04.874 8300 FEE 433828 687 6023848 2024-02-21 17:44:04.874 2024-02-21 17:44:04.874 74700 TIP 433828 776 6023857 2024-02-21 17:44:18.746 2024-02-21 17:44:18.746 1000 FEE 434066 7553 6023867 2024-02-21 17:45:00.52 2024-02-21 17:45:00.52 3300 FEE 433910 738 6023868 2024-02-21 17:45:00.52 2024-02-21 17:45:00.52 29700 TIP 433910 9177 6023890 2024-02-21 17:47:41.685 2024-02-21 17:47:41.685 1000 FEE 434072 18336 6023914 2024-02-21 17:49:05.801 2024-02-21 17:49:05.801 500 FEE 434045 1060 6023915 2024-02-21 17:49:05.801 2024-02-21 17:49:05.801 4500 TIP 434045 666 6023936 2024-02-21 17:50:07.724 2024-02-21 17:50:07.724 4000 FEE 434077 618 6023937 2024-02-21 17:50:07.724 2024-02-21 17:50:07.724 36000 TIP 434077 5455 6023949 2024-02-21 17:51:08.002 2024-02-21 17:51:08.002 500 FEE 433555 16267 6023950 2024-02-21 17:51:08.002 2024-02-21 17:51:08.002 4500 TIP 433555 730 6023955 2024-02-21 17:51:24.348 2024-02-21 17:51:24.348 100 FEE 433878 2596 6023956 2024-02-21 17:51:24.348 2024-02-21 17:51:24.348 900 TIP 433878 20370 6023997 2024-02-21 17:53:19.869 2024-02-21 17:53:19.869 1000 FEE 434025 10469 6023998 2024-02-21 17:53:19.869 2024-02-21 17:53:19.869 9000 TIP 434025 1465 6024003 2024-02-21 17:53:20.36 2024-02-21 17:53:20.36 1000 FEE 434025 14247 6024004 2024-02-21 17:53:20.36 2024-02-21 17:53:20.36 9000 TIP 434025 11527 6024027 2024-02-21 17:54:51.053 2024-02-21 17:54:51.053 1000 FEE 434089 19553 6024047 2024-02-21 17:55:48.825 2024-02-21 17:55:48.825 50000 FEE 434084 1495 6024048 2024-02-21 17:55:48.825 2024-02-21 17:55:48.825 450000 TIP 434084 16178 6024056 2024-02-21 17:57:37.437 2024-02-21 17:57:37.437 1000 FEE 434094 19890 6024091 2024-02-21 18:00:35.567 2024-02-21 18:00:35.567 1000 FEE 434098 1480 6024092 2024-02-21 18:00:36.626 2024-02-21 18:00:36.626 2100 FEE 433740 9353 6024093 2024-02-21 18:00:36.626 2024-02-21 18:00:36.626 18900 TIP 433740 21446 6024097 2024-02-21 18:00:45.4 2024-02-21 18:00:45.4 1000 FEE 434081 13599 6024098 2024-02-21 18:00:45.4 2024-02-21 18:00:45.4 9000 TIP 434081 3686 6024101 2024-02-21 18:00:46.131 2024-02-21 18:00:46.131 1000 FEE 434081 624 6024102 2024-02-21 18:00:46.131 2024-02-21 18:00:46.131 9000 TIP 434081 19284 6024117 2024-02-21 18:01:21.6 2024-02-21 18:01:21.6 0 FEE 434099 19034 6024132 2024-02-21 18:01:30.569 2024-02-21 18:01:30.569 100 FEE 433996 6555 6024133 2024-02-21 18:01:30.569 2024-02-21 18:01:30.569 900 TIP 433996 712 6024158 2024-02-21 18:02:12.148 2024-02-21 18:02:12.148 1000 FEE 434006 7682 6024159 2024-02-21 18:02:12.148 2024-02-21 18:02:12.148 9000 TIP 434006 18660 6024160 2024-02-21 18:02:16.867 2024-02-21 18:02:16.867 100 FEE 433631 18704 6024161 2024-02-21 18:02:16.867 2024-02-21 18:02:16.867 900 TIP 433631 21157 6024181 2024-02-21 18:02:49.966 2024-02-21 18:02:49.966 1000 FEE 434026 20687 6024182 2024-02-21 18:02:49.966 2024-02-21 18:02:49.966 9000 TIP 434026 9655 6024187 2024-02-21 18:03:01.652 2024-02-21 18:03:01.652 900 FEE 432153 18673 6024188 2024-02-21 18:03:01.652 2024-02-21 18:03:01.652 8100 TIP 432153 18904 6024197 2024-02-21 18:03:57.305 2024-02-21 18:03:57.305 1000 FEE 433943 9335 6024198 2024-02-21 18:03:57.305 2024-02-21 18:03:57.305 9000 TIP 433943 1738 6024209 2024-02-21 18:04:44.061 2024-02-21 18:04:44.061 1000 FEE 434077 20826 6024210 2024-02-21 18:04:44.061 2024-02-21 18:04:44.061 9000 TIP 434077 20220 6024217 2024-02-21 18:04:48.534 2024-02-21 18:04:48.534 1000 FEE 434077 19126 6024218 2024-02-21 18:04:48.534 2024-02-21 18:04:48.534 9000 TIP 434077 7869 6024244 2024-02-21 18:06:00.145 2024-02-21 18:06:00.145 4000 FEE 434097 5306 6024245 2024-02-21 18:06:00.145 2024-02-21 18:06:00.145 36000 TIP 434097 18378 6024246 2024-02-21 18:06:01.07 2024-02-21 18:06:01.07 4000 FEE 434097 738 6024247 2024-02-21 18:06:01.07 2024-02-21 18:06:01.07 36000 TIP 434097 18449 6024252 2024-02-21 18:06:04.142 2024-02-21 18:06:04.142 2100 FEE 434056 15833 6024253 2024-02-21 18:06:04.142 2024-02-21 18:06:04.142 18900 TIP 434056 19886 6024276 2024-02-21 18:08:45.922 2024-02-21 18:08:45.922 2100 FEE 433796 9242 6024277 2024-02-21 18:08:45.922 2024-02-21 18:08:45.922 18900 TIP 433796 15367 6024281 2024-02-21 18:09:12.33 2024-02-21 18:09:12.33 1000 FEE 434112 2402 6024286 2024-02-21 18:09:24.739 2024-02-21 18:09:24.739 1000 FEE 434038 16351 6024287 2024-02-21 18:09:24.739 2024-02-21 18:09:24.739 9000 TIP 434038 13204 6024291 2024-02-21 18:09:56.196 2024-02-21 18:09:56.196 2100 FEE 433951 21291 6024292 2024-02-21 18:09:56.196 2024-02-21 18:09:56.196 18900 TIP 433951 1697 6024305 2024-02-21 18:10:48.118 2024-02-21 18:10:48.118 1000 FEE 434118 19863 6024306 2024-02-21 18:10:48.118 2024-02-21 18:10:48.118 9000 TIP 434118 9833 6024313 2024-02-21 18:12:04.671 2024-02-21 18:12:04.671 900 FEE 434071 21600 6024314 2024-02-21 18:12:04.671 2024-02-21 18:12:04.671 8100 TIP 434071 17411 6024331 2024-02-21 18:13:07.89 2024-02-21 18:13:07.89 100 FEE 434056 13348 6024332 2024-02-21 18:13:07.89 2024-02-21 18:13:07.89 900 TIP 434056 5522 6024335 2024-02-21 18:13:11.744 2024-02-21 18:13:11.744 100 FEE 434079 21334 6024336 2024-02-21 18:13:11.744 2024-02-21 18:13:11.744 900 TIP 434079 4062 6024345 2024-02-21 18:13:15.855 2024-02-21 18:13:15.855 900 FEE 434073 18829 6024346 2024-02-21 18:13:15.855 2024-02-21 18:13:15.855 8100 TIP 434073 1003 6024355 2024-02-21 18:14:03.958 2024-02-21 18:14:03.958 1000 FEE 434110 18454 6024356 2024-02-21 18:14:03.958 2024-02-21 18:14:03.958 9000 TIP 434110 6616 6024358 2024-02-21 18:14:07.56 2024-02-21 18:14:07.56 1000 FEE 434120 1307 6024363 2024-02-21 18:14:08.937 2024-02-21 18:14:08.937 1000 FEE 434056 18396 6024364 2024-02-21 18:14:08.937 2024-02-21 18:14:08.937 9000 TIP 434056 6191 6024373 2024-02-21 18:14:17.389 2024-02-21 18:14:17.389 1000 FEE 434074 9426 6023632 2024-02-21 17:32:49.001 2024-02-21 17:32:49.001 0 FEE 434030 7847 6023654 2024-02-21 17:33:17.4 2024-02-21 17:33:17.4 3300 FEE 434007 18357 6023655 2024-02-21 17:33:17.4 2024-02-21 17:33:17.4 29700 TIP 434007 21083 6023671 2024-02-21 17:33:52.356 2024-02-21 17:33:52.356 2100 FEE 433844 5112 6023672 2024-02-21 17:33:52.356 2024-02-21 17:33:52.356 18900 TIP 433844 5425 6023682 2024-02-21 17:34:53.252 2024-02-21 17:34:53.252 700 FEE 433894 16571 6023683 2024-02-21 17:34:53.252 2024-02-21 17:34:53.252 6300 TIP 433894 5865 6023696 2024-02-21 17:35:48.782 2024-02-21 17:35:48.782 100 FEE 433247 10398 6023697 2024-02-21 17:35:48.782 2024-02-21 17:35:48.782 900 TIP 433247 19158 6023729 2024-02-21 17:40:44.057 2024-02-21 17:40:44.057 1000 FEE 434055 6202 6023733 2024-02-21 17:41:06.578 2024-02-21 17:41:06.578 1000 FEE 434058 6777 6023756 2024-02-21 17:41:47.908 2024-02-21 17:41:47.908 2300 FEE 433943 2514 6023757 2024-02-21 17:41:47.908 2024-02-21 17:41:47.908 20700 TIP 433943 650 6023805 2024-02-21 17:43:41.802 2024-02-21 17:43:41.802 8300 FEE 434048 18116 6023806 2024-02-21 17:43:41.802 2024-02-21 17:43:41.802 74700 TIP 434048 20642 6023813 2024-02-21 17:43:42.326 2024-02-21 17:43:42.326 8300 FEE 434048 19842 6023814 2024-02-21 17:43:42.326 2024-02-21 17:43:42.326 74700 TIP 434048 18124 6023817 2024-02-21 17:43:43.376 2024-02-21 17:43:43.376 8300 FEE 434048 2010 6023818 2024-02-21 17:43:43.376 2024-02-21 17:43:43.376 74700 TIP 434048 11477 6023825 2024-02-21 17:43:44.507 2024-02-21 17:43:44.507 8300 FEE 434048 21063 6023826 2024-02-21 17:43:44.507 2024-02-21 17:43:44.507 74700 TIP 434048 12483 6023833 2024-02-21 17:43:45.939 2024-02-21 17:43:45.939 3300 FEE 433593 859 6023834 2024-02-21 17:43:45.939 2024-02-21 17:43:45.939 29700 TIP 433593 1310 6023859 2024-02-21 17:44:53 2024-02-21 17:44:53 100 FEE 433937 20646 6023860 2024-02-21 17:44:53 2024-02-21 17:44:53 900 TIP 433937 19007 6023863 2024-02-21 17:44:53.894 2024-02-21 17:44:53.894 3300 FEE 433902 20409 6023864 2024-02-21 17:44:53.894 2024-02-21 17:44:53.894 29700 TIP 433902 19465 6023917 2024-02-21 17:49:11.546 2024-02-21 17:49:11.546 500 FEE 433886 994 6023918 2024-02-21 17:49:11.546 2024-02-21 17:49:11.546 4500 TIP 433886 11967 6023929 2024-02-21 17:49:55.667 2024-02-21 17:49:55.667 500 FEE 433594 11477 6023930 2024-02-21 17:49:55.667 2024-02-21 17:49:55.667 4500 TIP 433594 11329 6023931 2024-02-21 17:50:02.554 2024-02-21 17:50:02.554 500 FEE 433597 20087 6023932 2024-02-21 17:50:02.554 2024-02-21 17:50:02.554 4500 TIP 433597 17797 6023968 2024-02-21 17:52:02.344 2024-02-21 17:52:02.344 1100 FEE 434075 4650 6023969 2024-02-21 17:52:02.344 2024-02-21 17:52:02.344 9900 TIP 434075 13782 6023972 2024-02-21 17:52:03.212 2024-02-21 17:52:03.212 1100 FEE 434075 12609 6023973 2024-02-21 17:52:03.212 2024-02-21 17:52:03.212 9900 TIP 434075 19435 6023999 2024-02-21 17:53:20.01 2024-02-21 17:53:20.01 1000 FEE 434025 18735 6024000 2024-02-21 17:53:20.01 2024-02-21 17:53:20.01 9000 TIP 434025 19138 6024005 2024-02-21 17:53:20.547 2024-02-21 17:53:20.547 1000 FEE 434025 18453 6024006 2024-02-21 17:53:20.547 2024-02-21 17:53:20.547 9000 TIP 434025 1738 6024033 2024-02-21 17:55:18.565 2024-02-21 17:55:18.565 2100 FEE 434054 15806 6024034 2024-02-21 17:55:18.565 2024-02-21 17:55:18.565 18900 TIP 434054 4624 6024039 2024-02-21 17:55:23.479 2024-02-21 17:55:23.479 2100 FEE 434077 21417 6024040 2024-02-21 17:55:23.479 2024-02-21 17:55:23.479 18900 TIP 434077 19296 6024059 2024-02-21 17:57:59.324 2024-02-21 17:57:59.324 1100 FEE 433816 21166 6024060 2024-02-21 17:57:59.324 2024-02-21 17:57:59.324 9900 TIP 433816 18269 6024061 2024-02-21 17:58:00.419 2024-02-21 17:58:00.419 9000 FEE 433833 4415 6024062 2024-02-21 17:58:00.419 2024-02-21 17:58:00.419 81000 TIP 433833 20555 6024064 2024-02-21 17:58:15.071 2024-02-21 17:58:15.071 200 FEE 434077 14295 6024065 2024-02-21 17:58:15.071 2024-02-21 17:58:15.071 1800 TIP 434077 1658 6024089 2024-02-21 18:00:12.517 2024-02-21 18:00:12.517 2100 FEE 433828 10821 6024090 2024-02-21 18:00:12.517 2024-02-21 18:00:12.517 18900 TIP 433828 1319 6024107 2024-02-21 18:00:53.879 2024-02-21 18:00:53.879 1000 FEE 434100 2722 6024119 2024-02-21 18:01:23.626 2024-02-21 18:01:23.626 100 FEE 433975 9365 6024120 2024-02-21 18:01:23.626 2024-02-21 18:01:23.626 900 TIP 433975 6555 6024127 2024-02-21 18:01:27.904 2024-02-21 18:01:27.904 900 FEE 433960 769 6024128 2024-02-21 18:01:27.904 2024-02-21 18:01:27.904 8100 TIP 433960 15662 6024154 2024-02-21 18:02:11.456 2024-02-21 18:02:11.456 1000 FEE 434006 679 6024155 2024-02-21 18:02:11.456 2024-02-21 18:02:11.456 9000 TIP 434006 1605 6024162 2024-02-21 18:02:17.102 2024-02-21 18:02:17.102 900 FEE 433631 19553 6024163 2024-02-21 18:02:17.102 2024-02-21 18:02:17.102 8100 TIP 433631 4502 6024176 2024-02-21 18:02:38.293 2024-02-21 18:02:38.293 900 FEE 433796 10693 6024177 2024-02-21 18:02:38.293 2024-02-21 18:02:38.293 8100 TIP 433796 4768 6024183 2024-02-21 18:02:51.4 2024-02-21 18:02:51.4 10000 FEE 433943 621 6024184 2024-02-21 18:02:51.4 2024-02-21 18:02:51.4 90000 TIP 433943 16126 6024205 2024-02-21 18:04:42.747 2024-02-21 18:04:42.747 1000 FEE 434077 16670 6024206 2024-02-21 18:04:42.747 2024-02-21 18:04:42.747 9000 TIP 434077 17103 6024211 2024-02-21 18:04:44.928 2024-02-21 18:04:44.928 1000 FEE 434077 20205 6024212 2024-02-21 18:04:44.928 2024-02-21 18:04:44.928 9000 TIP 434077 18658 6024213 2024-02-21 18:04:45.531 2024-02-21 18:04:45.531 1000 FEE 434077 1564 6024214 2024-02-21 18:04:45.531 2024-02-21 18:04:45.531 9000 TIP 434077 1603 6024224 2024-02-21 18:05:17.327 2024-02-21 18:05:17.327 3300 FEE 434051 15703 6024225 2024-02-21 18:05:17.327 2024-02-21 18:05:17.327 29700 TIP 434051 20647 6024228 2024-02-21 18:05:31.4 2024-02-21 18:05:31.4 1000 FEE 433889 20310 6024229 2024-02-21 18:05:31.4 2024-02-21 18:05:31.4 9000 TIP 433889 4048 6024238 2024-02-21 18:05:55.522 2024-02-21 18:05:55.522 4000 FEE 434105 21022 6024239 2024-02-21 18:05:55.522 2024-02-21 18:05:55.522 36000 TIP 434105 20162 6024240 2024-02-21 18:05:55.727 2024-02-21 18:05:55.727 2100 FEE 434097 13133 6024241 2024-02-21 18:05:55.727 2024-02-21 18:05:55.727 18900 TIP 434097 20776 6024264 2024-02-21 18:07:31.888 2024-02-21 18:07:31.888 2100 FEE 433889 5646 6024265 2024-02-21 18:07:31.888 2024-02-21 18:07:31.888 18900 TIP 433889 12049 6024271 2024-02-21 18:08:19.777 2024-02-21 18:08:19.777 1000 FEE 434111 14552 6024296 2024-02-21 18:10:25.448 2024-02-21 18:10:25.448 1000 FEE 434118 9433 6024311 2024-02-21 18:12:04.467 2024-02-21 18:12:04.467 100 FEE 434071 14857 6024312 2024-02-21 18:12:04.467 2024-02-21 18:12:04.467 900 TIP 434071 18862 6024339 2024-02-21 18:13:14.719 2024-02-21 18:13:14.719 100 FEE 434110 18618 6024340 2024-02-21 18:13:14.719 2024-02-21 18:13:14.719 900 TIP 434110 1195 6024416 2024-02-21 18:17:06.073 2024-02-21 18:17:06.073 1000 FEE 434075 5806 6024417 2024-02-21 18:17:06.073 2024-02-21 18:17:06.073 9000 TIP 434075 711 6024431 2024-02-21 18:18:59.45 2024-02-21 18:18:59.45 4000 FEE 433934 1094 6024432 2024-02-21 18:18:59.45 2024-02-21 18:18:59.45 36000 TIP 433934 11158 6024436 2024-02-21 18:19:08.029 2024-02-21 18:19:08.029 10000 FEE 434130 6149 6024441 2024-02-21 18:19:11.938 2024-02-21 18:19:11.938 2100 FEE 433828 12289 6024442 2024-02-21 18:19:11.938 2024-02-21 18:19:11.938 18900 TIP 433828 19138 6024443 2024-02-21 18:19:11.987 2024-02-21 18:19:11.987 2100 FEE 433828 18310 6024444 2024-02-21 18:19:11.987 2024-02-21 18:19:11.987 18900 TIP 433828 1195 6024476 2024-02-21 18:20:25.599 2024-02-21 18:20:25.599 2100 FEE 433447 18896 6024477 2024-02-21 18:20:25.599 2024-02-21 18:20:25.599 18900 TIP 433447 17693 6024480 2024-02-21 18:20:25.979 2024-02-21 18:20:25.979 2100 FEE 433447 20901 6024481 2024-02-21 18:20:25.979 2024-02-21 18:20:25.979 18900 TIP 433447 16513 6024495 2024-02-21 18:20:54.748 2024-02-21 18:20:54.748 1000 FEE 434125 4378 6024496 2024-02-21 18:20:54.748 2024-02-21 18:20:54.748 9000 TIP 434125 9335 6024533 2024-02-21 18:22:16.786 2024-02-21 18:22:16.786 1000 FEE 434077 736 6024534 2024-02-21 18:22:16.786 2024-02-21 18:22:16.786 9000 TIP 434077 16638 6024547 2024-02-21 18:23:02.612 2024-02-21 18:23:02.612 1000 FEE 434077 21003 6024548 2024-02-21 18:23:02.612 2024-02-21 18:23:02.612 9000 TIP 434077 20376 6023646 2024-02-21 17:32:55.602 2024-02-21 17:32:55.602 69300 TIP 433853 18446 6023647 2024-02-21 17:32:55.802 2024-02-21 17:32:55.802 7700 FEE 433853 16289 6023648 2024-02-21 17:32:55.802 2024-02-21 17:32:55.802 69300 TIP 433853 13753 6023649 2024-02-21 17:32:55.99 2024-02-21 17:32:55.99 7700 FEE 433853 16230 6023650 2024-02-21 17:32:55.99 2024-02-21 17:32:55.99 69300 TIP 433853 7659 6023651 2024-02-21 17:32:56.154 2024-02-21 17:32:56.154 7700 FEE 433853 13878 6023652 2024-02-21 17:32:56.154 2024-02-21 17:32:56.154 69300 TIP 433853 17227 6023668 2024-02-21 17:33:45.606 2024-02-21 17:33:45.606 0 FEE 434045 17690 6023669 2024-02-21 17:33:50.721 2024-02-21 17:33:50.721 2100 FEE 433924 1817 6023670 2024-02-21 17:33:50.721 2024-02-21 17:33:50.721 18900 TIP 433924 20500 6023675 2024-02-21 17:34:14.998 2024-02-21 17:34:14.998 3300 FEE 433594 12169 6023676 2024-02-21 17:34:14.998 2024-02-21 17:34:14.998 29700 TIP 433594 6137 6023681 2024-02-21 17:34:45.359 2024-02-21 17:34:45.359 1000 FEE 434047 1549 6023704 2024-02-21 17:37:24.57 2024-02-21 17:37:24.57 2300 FEE 434026 19333 6023705 2024-02-21 17:37:24.57 2024-02-21 17:37:24.57 20700 TIP 434026 17171 6023716 2024-02-21 17:38:57.733 2024-02-21 17:38:57.733 10000 FEE 434045 6148 6023717 2024-02-21 17:38:57.733 2024-02-21 17:38:57.733 90000 TIP 434045 5728 6023719 2024-02-21 17:39:06.177 2024-02-21 17:39:06.177 3300 FEE 433889 12160 6023720 2024-02-21 17:39:06.177 2024-02-21 17:39:06.177 29700 TIP 433889 19836 6023730 2024-02-21 17:40:55.787 2024-02-21 17:40:55.787 1000 FEE 434056 9356 6023732 2024-02-21 17:41:04.271 2024-02-21 17:41:04.271 1000 FEE 434057 21088 6023736 2024-02-21 17:41:34.687 2024-02-21 17:41:34.687 3300 FEE 433679 19296 6023737 2024-02-21 17:41:34.687 2024-02-21 17:41:34.687 29700 TIP 433679 21532 6023760 2024-02-21 17:41:48.193 2024-02-21 17:41:48.193 2300 FEE 433943 1307 6023761 2024-02-21 17:41:48.193 2024-02-21 17:41:48.193 20700 TIP 433943 9450 6023763 2024-02-21 17:42:00.106 2024-02-21 17:42:00.106 2300 FEE 433833 18016 6023764 2024-02-21 17:42:00.106 2024-02-21 17:42:00.106 20700 TIP 433833 3717 6023765 2024-02-21 17:42:00.182 2024-02-21 17:42:00.182 2300 FEE 433833 14906 6023766 2024-02-21 17:42:00.182 2024-02-21 17:42:00.182 20700 TIP 433833 18387 6023778 2024-02-21 17:42:20.697 2024-02-21 17:42:20.697 1000 FEE 434044 4102 6023779 2024-02-21 17:42:20.697 2024-02-21 17:42:20.697 9000 TIP 434044 21412 6023791 2024-02-21 17:43:15.243 2024-02-21 17:43:15.243 1000 FEE 434063 19924 6023795 2024-02-21 17:43:41.025 2024-02-21 17:43:41.025 8300 FEE 434048 21393 6023796 2024-02-21 17:43:41.025 2024-02-21 17:43:41.025 74700 TIP 434048 18679 6023827 2024-02-21 17:43:44.678 2024-02-21 17:43:44.678 8300 FEE 434048 15337 6023828 2024-02-21 17:43:44.678 2024-02-21 17:43:44.678 74700 TIP 434048 2046 6023829 2024-02-21 17:43:44.948 2024-02-21 17:43:44.948 8300 FEE 434048 1705 6023830 2024-02-21 17:43:44.948 2024-02-21 17:43:44.948 74700 TIP 434048 12222 6023849 2024-02-21 17:44:05.154 2024-02-21 17:44:05.154 8300 FEE 433828 19795 6023850 2024-02-21 17:44:05.154 2024-02-21 17:44:05.154 74700 TIP 433828 20744 6023853 2024-02-21 17:44:05.44 2024-02-21 17:44:05.44 8300 FEE 433828 21457 6023854 2024-02-21 17:44:05.44 2024-02-21 17:44:05.44 74700 TIP 433828 621 6023858 2024-02-21 17:44:23.79 2024-02-21 17:44:23.79 1000 FEE 434067 16665 6023861 2024-02-21 17:44:53.485 2024-02-21 17:44:53.485 3300 FEE 433902 2195 6023862 2024-02-21 17:44:53.485 2024-02-21 17:44:53.485 29700 TIP 433902 700 6023887 2024-02-21 17:47:17.857 2024-02-21 17:47:17.857 100000 FEE 434071 17162 6023891 2024-02-21 17:47:50.37 2024-02-21 17:47:50.37 0 FEE 434068 17673 6023899 2024-02-21 17:48:19.244 2024-02-21 17:48:19.244 500 FEE 433851 21103 6023900 2024-02-21 17:48:19.244 2024-02-21 17:48:19.244 4500 TIP 433851 18476 6023919 2024-02-21 17:49:13.64 2024-02-21 17:49:13.64 2100 FEE 434070 9482 6023920 2024-02-21 17:49:13.64 2024-02-21 17:49:13.64 18900 TIP 434070 14357 6023938 2024-02-21 17:50:28.783 2024-02-21 17:50:28.783 1000 FEE 434078 3396 6023953 2024-02-21 17:51:23.904 2024-02-21 17:51:23.904 100 FEE 433878 20514 6023954 2024-02-21 17:51:23.904 2024-02-21 17:51:23.904 900 TIP 433878 21140 6023963 2024-02-21 17:51:29.068 2024-02-21 17:51:29.068 100 FEE 433886 16834 6023964 2024-02-21 17:51:29.068 2024-02-21 17:51:29.068 900 TIP 433886 3745 6023967 2024-02-21 17:52:00.455 2024-02-21 17:52:00.455 1000 FEE 434080 9332 6023981 2024-02-21 17:52:33.019 2024-02-21 17:52:33.019 4000 FEE 434079 1483 6023982 2024-02-21 17:52:33.019 2024-02-21 17:52:33.019 36000 TIP 434079 8729 6024018 2024-02-21 17:53:57.467 2024-02-21 17:53:57.467 1000 FEE 434019 9921 6024019 2024-02-21 17:53:57.467 2024-02-21 17:53:57.467 9000 TIP 434019 3371 6024026 2024-02-21 17:54:31.903 2024-02-21 17:54:31.903 1000 FEE 434088 5578 6024045 2024-02-21 17:55:33.221 2024-02-21 17:55:33.221 50000 FEE 434056 11491 6024046 2024-02-21 17:55:33.221 2024-02-21 17:55:33.221 450000 TIP 434056 20327 6024077 2024-02-21 17:59:32.235 2024-02-21 17:59:32.235 10000 FEE 434097 14857 6024078 2024-02-21 17:59:40.317 2024-02-21 17:59:40.317 1000 FEE 434096 16350 6024079 2024-02-21 17:59:40.317 2024-02-21 17:59:40.317 9000 TIP 434096 19193 6024094 2024-02-21 18:00:43.445 2024-02-21 18:00:43.445 1000 FEE 434099 5449 6024113 2024-02-21 18:01:06.197 2024-02-21 18:01:06.197 0 FEE 434099 19309 6024146 2024-02-21 18:02:09.022 2024-02-21 18:02:09.022 1000 FEE 434006 16633 6024147 2024-02-21 18:02:09.022 2024-02-21 18:02:09.022 9000 TIP 434006 1692 6024152 2024-02-21 18:02:10.804 2024-02-21 18:02:10.804 900 FEE 433711 9363 6024153 2024-02-21 18:02:10.804 2024-02-21 18:02:10.804 8100 TIP 433711 1142 6024190 2024-02-21 18:03:10.92 2024-02-21 18:03:10.92 1000 FEE 433816 6741 6024191 2024-02-21 18:03:10.92 2024-02-21 18:03:10.92 9000 TIP 433816 7659 6024194 2024-02-21 18:03:17.694 2024-02-21 18:03:17.694 1000 FEE 434107 12272 6024257 2024-02-21 18:06:20.033 2024-02-21 18:06:20.033 10000 FEE 434109 18877 6024266 2024-02-21 18:07:43.501 2024-02-21 18:07:43.501 2100 FEE 433886 5557 6024267 2024-02-21 18:07:43.501 2024-02-21 18:07:43.501 18900 TIP 433886 21036 6024274 2024-02-21 18:08:33.128 2024-02-21 18:08:33.128 2100 FEE 433760 1806 6024275 2024-02-21 18:08:33.128 2024-02-21 18:08:33.128 18900 TIP 433760 1800 6024289 2024-02-21 18:09:36.558 2024-02-21 18:09:36.558 1000 FEE 434114 20106 6024290 2024-02-21 18:09:47.399 2024-02-21 18:09:47.399 1000 FEE 434115 18402 6024301 2024-02-21 18:10:46.906 2024-02-21 18:10:46.906 1000 FEE 434118 20825 6024302 2024-02-21 18:10:46.906 2024-02-21 18:10:46.906 9000 TIP 434118 17082 6024323 2024-02-21 18:12:57.78 2024-02-21 18:12:57.78 100 FEE 434013 20168 6024324 2024-02-21 18:12:57.78 2024-02-21 18:12:57.78 900 TIP 434013 19961 6024327 2024-02-21 18:12:58.52 2024-02-21 18:12:58.52 1000 FEE 434119 19332 6024351 2024-02-21 18:13:56.807 2024-02-21 18:13:56.807 100 FEE 434097 9758 6024352 2024-02-21 18:13:56.807 2024-02-21 18:13:56.807 900 TIP 434097 18984 6024379 2024-02-21 18:14:32.144 2024-02-21 18:14:32.144 1000 FEE 434039 20198 6024380 2024-02-21 18:14:32.144 2024-02-21 18:14:32.144 9000 TIP 434039 21233 6024392 2024-02-21 18:15:09.334 2024-02-21 18:15:09.334 5000 FEE 434062 18816 6024393 2024-02-21 18:15:09.334 2024-02-21 18:15:09.334 45000 TIP 434062 11942 6024395 2024-02-21 18:15:25.121 2024-02-21 18:15:25.121 100000 FEE 434124 14045 6024396 2024-02-21 18:15:35.189 2024-02-21 18:15:35.189 0 FEE 434123 1490 6024400 2024-02-21 18:16:05.704 2024-02-21 18:16:05.704 1100 FEE 433833 9348 6024401 2024-02-21 18:16:05.704 2024-02-21 18:16:05.704 9900 TIP 433833 699 6024402 2024-02-21 18:16:06.853 2024-02-21 18:16:06.853 1000 FEE 434126 676 6024403 2024-02-21 18:16:10.934 2024-02-21 18:16:10.934 1000 FEE 434127 21492 6024459 2024-02-21 18:19:53.346 2024-02-21 18:19:53.346 1000 FEE 433943 3353 6024460 2024-02-21 18:19:53.346 2024-02-21 18:19:53.346 9000 TIP 433943 10849 6024461 2024-02-21 18:19:58.397 2024-02-21 18:19:58.397 2100 FEE 434013 669 6024462 2024-02-21 18:19:58.397 2024-02-21 18:19:58.397 18900 TIP 434013 18659 6024467 2024-02-21 18:20:06.34 2024-02-21 18:20:06.34 2400 FEE 433289 18454 6024468 2024-02-21 18:20:06.34 2024-02-21 18:20:06.34 21600 TIP 433289 21249 6024486 2024-02-21 18:20:41.672 2024-02-21 18:20:41.672 4200 FEE 403677 19622 6023703 2024-02-21 17:37:18.315 2024-02-21 17:37:18.315 1000 FEE 434050 18170 6023706 2024-02-21 17:37:24.756 2024-02-21 17:37:24.756 2300 FEE 434026 1806 6023707 2024-02-21 17:37:24.756 2024-02-21 17:37:24.756 20700 TIP 434026 18896 6023721 2024-02-21 17:39:07.882 2024-02-21 17:39:07.882 0 FEE 434051 19809 6023788 2024-02-21 17:43:09.937 2024-02-21 17:43:09.937 100000 FEE 434062 16830 6023793 2024-02-21 17:43:30.025 2024-02-21 17:43:30.025 800 FEE 433878 4624 6023794 2024-02-21 17:43:30.025 2024-02-21 17:43:30.025 7200 TIP 433878 12245 6023815 2024-02-21 17:43:42.384 2024-02-21 17:43:42.384 8300 FEE 434048 807 6023816 2024-02-21 17:43:42.384 2024-02-21 17:43:42.384 74700 TIP 434048 6555 6023831 2024-02-21 17:43:45.87 2024-02-21 17:43:45.87 8300 FEE 434048 6058 6023832 2024-02-21 17:43:45.87 2024-02-21 17:43:45.87 74700 TIP 434048 14357 6023835 2024-02-21 17:43:46.023 2024-02-21 17:43:46.023 8300 FEE 434048 10771 6023836 2024-02-21 17:43:46.023 2024-02-21 17:43:46.023 74700 TIP 434048 9494 6023837 2024-02-21 17:43:50.403 2024-02-21 17:43:50.403 1000 FEE 434065 2046 6023874 2024-02-21 17:45:30.508 2024-02-21 17:45:30.508 1000 FEE 434068 21421 6023875 2024-02-21 17:45:40.53 2024-02-21 17:45:40.53 100 FEE 428170 20327 6023876 2024-02-21 17:45:40.53 2024-02-21 17:45:40.53 900 TIP 428170 1825 6023883 2024-02-21 17:46:43.076 2024-02-21 17:46:43.076 1000 FEE 434070 20854 6023895 2024-02-21 17:48:18.706 2024-02-21 17:48:18.706 500 FEE 433851 18449 6023896 2024-02-21 17:48:18.706 2024-02-21 17:48:18.706 4500 TIP 433851 16998 6023911 2024-02-21 17:49:00.162 2024-02-21 17:49:00.162 100 FEE 433828 9906 6023912 2024-02-21 17:49:00.162 2024-02-21 17:49:00.162 900 TIP 433828 20225 6023922 2024-02-21 17:49:38.531 2024-02-21 17:49:38.531 100 FEE 433978 7673 6023923 2024-02-21 17:49:38.531 2024-02-21 17:49:38.531 900 TIP 433978 3304 6023928 2024-02-21 17:49:55.46 2024-02-21 17:49:55.46 21000 FEE 434077 20183 6023939 2024-02-21 17:50:56.345 2024-02-21 17:50:56.345 500 FEE 433555 19909 6023940 2024-02-21 17:50:56.345 2024-02-21 17:50:56.345 4500 TIP 433555 20094 6023941 2024-02-21 17:51:01.931 2024-02-21 17:51:01.931 1000 FEE 434079 15386 6023957 2024-02-21 17:51:28.501 2024-02-21 17:51:28.501 100 FEE 433886 14906 6023958 2024-02-21 17:51:28.501 2024-02-21 17:51:28.501 900 TIP 433886 650 6023959 2024-02-21 17:51:28.702 2024-02-21 17:51:28.702 100 FEE 433886 8095 6023960 2024-02-21 17:51:28.702 2024-02-21 17:51:28.702 900 TIP 433886 1488 6023961 2024-02-21 17:51:28.893 2024-02-21 17:51:28.893 100 FEE 433886 17116 6023962 2024-02-21 17:51:28.893 2024-02-21 17:51:28.893 900 TIP 433886 20998 6023975 2024-02-21 17:52:08.53 2024-02-21 17:52:08.53 1000 FEE 434081 11450 6023976 2024-02-21 17:52:08.921 2024-02-21 17:52:08.921 1100 FEE 433886 2039 6023977 2024-02-21 17:52:08.921 2024-02-21 17:52:08.921 9900 TIP 433886 16284 6023985 2024-02-21 17:52:51.491 2024-02-21 17:52:51.491 1000 FEE 434083 19770 6023989 2024-02-21 17:53:14.956 2024-02-21 17:53:14.956 1000 FEE 434054 19952 6023990 2024-02-21 17:53:14.956 2024-02-21 17:53:14.956 9000 TIP 434054 21026 6024009 2024-02-21 17:53:21.285 2024-02-21 17:53:21.285 1000 FEE 434023 4984 6024010 2024-02-21 17:53:21.285 2024-02-21 17:53:21.285 9000 TIP 434023 16842 6024028 2024-02-21 17:54:55.266 2024-02-21 17:54:55.266 2100 FEE 434080 13544 6024029 2024-02-21 17:54:55.266 2024-02-21 17:54:55.266 18900 TIP 434080 14260 6024041 2024-02-21 17:55:24.305 2024-02-21 17:55:24.305 1000 FEE 434090 622 6024042 2024-02-21 17:55:27.047 2024-02-21 17:55:27.047 1000 FEE 434091 1326 6024053 2024-02-21 17:56:27.534 2024-02-21 17:56:27.534 1000 FEE 434092 11789 6024073 2024-02-21 17:58:58.34 2024-02-21 17:58:58.34 10000 FEE 434096 1472 6024118 2024-02-21 18:01:23.506 2024-02-21 18:01:23.506 1000 FEE 434104 18664 6024131 2024-02-21 18:01:29.819 2024-02-21 18:01:29.819 0 FEE 434101 19394 6024138 2024-02-21 18:01:35.233 2024-02-21 18:01:35.233 1100 FEE 433816 21562 6024139 2024-02-21 18:01:35.233 2024-02-21 18:01:35.233 9900 TIP 433816 2039 6024148 2024-02-21 18:02:09.882 2024-02-21 18:02:09.882 1000 FEE 434006 8004 6024149 2024-02-21 18:02:09.882 2024-02-21 18:02:09.882 9000 TIP 434006 1051 6024164 2024-02-21 18:02:17.791 2024-02-21 18:02:17.791 9000 FEE 433631 19967 6024165 2024-02-21 18:02:17.791 2024-02-21 18:02:17.791 81000 TIP 433631 3461 6024172 2024-02-21 18:02:32.809 2024-02-21 18:02:32.809 1000 FEE 434009 15556 6024173 2024-02-21 18:02:32.809 2024-02-21 18:02:32.809 9000 TIP 434009 21562 6024179 2024-02-21 18:02:43.146 2024-02-21 18:02:43.146 9000 FEE 433796 18005 6024180 2024-02-21 18:02:43.146 2024-02-21 18:02:43.146 81000 TIP 433796 16059 6024226 2024-02-21 18:05:25.066 2024-02-21 18:05:25.066 4000 FEE 434071 8459 6024227 2024-02-21 18:05:25.066 2024-02-21 18:05:25.066 36000 TIP 434071 10063 6024230 2024-02-21 18:05:31.831 2024-02-21 18:05:31.831 1000 FEE 433889 1272 6024231 2024-02-21 18:05:31.831 2024-02-21 18:05:31.831 9000 TIP 433889 19886 6024288 2024-02-21 18:09:24.811 2024-02-21 18:09:24.811 5000 FEE 434113 16301 6024293 2024-02-21 18:09:57.072 2024-02-21 18:09:57.072 100000 FEE 434116 5377 6024315 2024-02-21 18:12:12.779 2024-02-21 18:12:12.779 8300 FEE 434026 20490 6024316 2024-02-21 18:12:12.779 2024-02-21 18:12:12.779 74700 TIP 434026 21422 6024319 2024-02-21 18:12:47.366 2024-02-21 18:12:47.366 100 FEE 434010 891 6024320 2024-02-21 18:12:47.366 2024-02-21 18:12:47.366 900 TIP 434010 20023 6024333 2024-02-21 18:13:08.091 2024-02-21 18:13:08.091 900 FEE 434056 11789 6024334 2024-02-21 18:13:08.091 2024-02-21 18:13:08.091 8100 TIP 434056 16424 6024341 2024-02-21 18:13:14.89 2024-02-21 18:13:14.89 900 FEE 434110 674 6024342 2024-02-21 18:13:14.89 2024-02-21 18:13:14.89 8100 TIP 434110 1030 6024384 2024-02-21 18:15:01.55 2024-02-21 18:15:01.55 700 FEE 433844 20969 6024385 2024-02-21 18:15:01.55 2024-02-21 18:15:01.55 6300 TIP 433844 20168 6024390 2024-02-21 18:15:03.556 2024-02-21 18:15:03.556 1000 FEE 434122 18923 6024411 2024-02-21 18:16:38.695 2024-02-21 18:16:38.695 1000 FEE 434128 20963 6024415 2024-02-21 18:17:05.145 2024-02-21 18:17:05.145 0 FEE 434123 1490 6024424 2024-02-21 18:18:41.364 2024-02-21 18:18:41.364 0 FEE 434129 5128 6024446 2024-02-21 18:19:14.639 2024-02-21 18:19:14.639 2100 FEE 433943 721 6024447 2024-02-21 18:19:14.639 2024-02-21 18:19:14.639 18900 TIP 433943 21555 6024452 2024-02-21 18:19:43.156 2024-02-21 18:19:43.156 2100 FEE 433978 12744 6024453 2024-02-21 18:19:43.156 2024-02-21 18:19:43.156 18900 TIP 433978 21417 6024482 2024-02-21 18:20:29.805 2024-02-21 18:20:29.805 2100 FEE 246990 21418 6024483 2024-02-21 18:20:29.805 2024-02-21 18:20:29.805 18900 TIP 246990 19031 6024497 2024-02-21 18:20:55.324 2024-02-21 18:20:55.324 1000 FEE 434125 4776 6024498 2024-02-21 18:20:55.324 2024-02-21 18:20:55.324 9000 TIP 434125 21320 6024499 2024-02-21 18:20:55.764 2024-02-21 18:20:55.764 1000 FEE 434125 20243 6024500 2024-02-21 18:20:55.764 2024-02-21 18:20:55.764 9000 TIP 434125 20596 6024514 2024-02-21 18:21:18.687 2024-02-21 18:21:18.687 900 FEE 434121 705 6024515 2024-02-21 18:21:18.687 2024-02-21 18:21:18.687 8100 TIP 434121 14370 6024529 2024-02-21 18:22:11.946 2024-02-21 18:22:11.946 1000 FEE 434077 2513 6024530 2024-02-21 18:22:11.946 2024-02-21 18:22:11.946 9000 TIP 434077 13854 6024541 2024-02-21 18:22:20.267 2024-02-21 18:22:20.267 1000 FEE 434077 4225 6024542 2024-02-21 18:22:20.267 2024-02-21 18:22:20.267 9000 TIP 434077 628 6024544 2024-02-21 18:22:37.755 2024-02-21 18:22:37.755 1000 FEE 434137 20187 6024545 2024-02-21 18:22:58.42 2024-02-21 18:22:58.42 1000 FEE 434138 20897 6024558 2024-02-21 18:23:06.972 2024-02-21 18:23:06.972 1000 FEE 434077 16665 6024559 2024-02-21 18:23:06.972 2024-02-21 18:23:06.972 9000 TIP 434077 19446 6024566 2024-02-21 18:23:18.615 2024-02-21 18:23:18.615 5000 FEE 434140 5590 6024581 2024-02-21 18:24:21.876 2024-02-21 18:24:21.876 1000 FEE 434142 21398 6024594 2024-02-21 18:24:43.292 2024-02-21 18:24:43.292 1100 FEE 433721 19848 6024595 2024-02-21 18:24:43.292 2024-02-21 18:24:43.292 9900 TIP 433721 21058 6024619 2024-02-21 18:24:58.808 2024-02-21 18:24:58.808 1000 FEE 434137 730 6024620 2024-02-21 18:24:58.808 2024-02-21 18:24:58.808 9000 TIP 434137 1823 6024623 2024-02-21 18:24:59.543 2024-02-21 18:24:59.543 1000 FEE 434137 18402 6023823 2024-02-21 17:43:44.424 2024-02-21 17:43:44.424 16600 FEE 434048 5293 6023824 2024-02-21 17:43:44.424 2024-02-21 17:43:44.424 149400 TIP 434048 20245 6023841 2024-02-21 17:44:04.425 2024-02-21 17:44:04.425 8300 FEE 433828 16004 6023842 2024-02-21 17:44:04.425 2024-02-21 17:44:04.425 74700 TIP 433828 20849 6023851 2024-02-21 17:44:05.299 2024-02-21 17:44:05.299 8300 FEE 433828 4692 6023852 2024-02-21 17:44:05.299 2024-02-21 17:44:05.299 74700 TIP 433828 4345 6023871 2024-02-21 17:45:00.905 2024-02-21 17:45:00.905 3300 FEE 433910 9275 6023872 2024-02-21 17:45:00.905 2024-02-21 17:45:00.905 29700 TIP 433910 814 6023901 2024-02-21 17:48:19.876 2024-02-21 17:48:19.876 500 FEE 433851 21578 6023902 2024-02-21 17:48:19.876 2024-02-21 17:48:19.876 4500 TIP 433851 20301 6023906 2024-02-21 17:48:32.973 2024-02-21 17:48:32.973 1000 FEE 434074 1697 6023909 2024-02-21 17:48:59.624 2024-02-21 17:48:59.624 100 FEE 433828 20220 6023910 2024-02-21 17:48:59.624 2024-02-21 17:48:59.624 900 TIP 433828 16296 6023926 2024-02-21 17:49:53.148 2024-02-21 17:49:53.148 2100 FEE 433688 18265 6023927 2024-02-21 17:49:53.148 2024-02-21 17:49:53.148 18900 TIP 433688 797 6023933 2024-02-21 17:50:03.863 2024-02-21 17:50:03.863 500 FEE 433597 21571 6023934 2024-02-21 17:50:03.863 2024-02-21 17:50:03.863 4500 TIP 433597 17800 6023951 2024-02-21 17:51:23.485 2024-02-21 17:51:23.485 100 FEE 433878 15719 6023952 2024-02-21 17:51:23.485 2024-02-21 17:51:23.485 900 TIP 433878 8059 6023983 2024-02-21 17:52:33.918 2024-02-21 17:52:33.918 4000 FEE 434079 17838 6023984 2024-02-21 17:52:33.918 2024-02-21 17:52:33.918 36000 TIP 434079 9551 6023987 2024-02-21 17:53:14.761 2024-02-21 17:53:14.761 1000 FEE 434054 16004 6023988 2024-02-21 17:53:14.761 2024-02-21 17:53:14.761 9000 TIP 434054 2832 6023991 2024-02-21 17:53:15.176 2024-02-21 17:53:15.176 1000 FEE 434054 5129 6023992 2024-02-21 17:53:15.176 2024-02-21 17:53:15.176 9000 TIP 434054 18815 6023993 2024-02-21 17:53:15.446 2024-02-21 17:53:15.446 1000 FEE 434054 21493 6023994 2024-02-21 17:53:15.446 2024-02-21 17:53:15.446 9000 TIP 434054 19826 6023995 2024-02-21 17:53:15.854 2024-02-21 17:53:15.854 1000 FEE 434054 7119 6023996 2024-02-21 17:53:15.854 2024-02-21 17:53:15.854 9000 TIP 434054 12097 6024007 2024-02-21 17:53:21.141 2024-02-21 17:53:21.141 1000 FEE 434023 8569 6024008 2024-02-21 17:53:21.141 2024-02-21 17:53:21.141 9000 TIP 434023 18507 6024025 2024-02-21 17:54:23.978 2024-02-21 17:54:23.978 1000 FEE 434087 2741 6024030 2024-02-21 17:55:00.881 2024-02-21 17:55:00.881 2100 FEE 433943 20778 6024031 2024-02-21 17:55:00.881 2024-02-21 17:55:00.881 18900 TIP 433943 7960 6024051 2024-02-21 17:55:57.485 2024-02-21 17:55:57.485 0 FEE 434088 15337 6024057 2024-02-21 17:57:44.289 2024-02-21 17:57:44.289 2100 FEE 433833 21481 6024058 2024-02-21 17:57:44.289 2024-02-21 17:57:44.289 18900 TIP 433833 18076 6024068 2024-02-21 17:58:24.135 2024-02-21 17:58:24.135 2100 FEE 434093 8505 6024069 2024-02-21 17:58:24.135 2024-02-21 17:58:24.135 18900 TIP 434093 19906 6024072 2024-02-21 17:58:47.114 2024-02-21 17:58:47.114 1000 FEE 434095 6700 6024085 2024-02-21 18:00:04.744 2024-02-21 18:00:04.744 2100 FEE 433878 19886 6024086 2024-02-21 18:00:04.744 2024-02-21 18:00:04.744 18900 TIP 433878 7746 6024103 2024-02-21 18:00:46.519 2024-02-21 18:00:46.519 1000 FEE 434081 20596 6024104 2024-02-21 18:00:46.519 2024-02-21 18:00:46.519 9000 TIP 434081 21072 6024105 2024-02-21 18:00:47.139 2024-02-21 18:00:47.139 1000 FEE 434081 16097 6024106 2024-02-21 18:00:47.139 2024-02-21 18:00:47.139 9000 TIP 434081 15075 6024121 2024-02-21 18:01:23.821 2024-02-21 18:01:23.821 900 FEE 433975 1354 6024122 2024-02-21 18:01:23.821 2024-02-21 18:01:23.821 8100 TIP 433975 20168 6024195 2024-02-21 18:03:19.908 2024-02-21 18:03:19.908 9000 FEE 433816 2264 6024196 2024-02-21 18:03:19.908 2024-02-21 18:03:19.908 81000 TIP 433816 2039 6024200 2024-02-21 18:04:27.998 2024-02-21 18:04:27.998 1000 FEE 434108 16704 6024201 2024-02-21 18:04:41.899 2024-02-21 18:04:41.899 1000 FEE 434077 698 6024202 2024-02-21 18:04:41.899 2024-02-21 18:04:41.899 9000 TIP 434077 19943 6024236 2024-02-21 18:05:32.333 2024-02-21 18:05:32.333 1000 FEE 433889 2098 6024237 2024-02-21 18:05:32.333 2024-02-21 18:05:32.333 9000 TIP 433889 2327 6024242 2024-02-21 18:05:57.863 2024-02-21 18:05:57.863 2100 FEE 434077 20370 6024243 2024-02-21 18:05:57.863 2024-02-21 18:05:57.863 18900 TIP 434077 18199 6024248 2024-02-21 18:06:01.561 2024-02-21 18:06:01.561 4000 FEE 434097 11515 6024249 2024-02-21 18:06:01.561 2024-02-21 18:06:01.561 36000 TIP 434097 15266 6024282 2024-02-21 18:09:23.079 2024-02-21 18:09:23.079 1000 FEE 434038 1611 6024283 2024-02-21 18:09:23.079 2024-02-21 18:09:23.079 9000 TIP 434038 14465 6024295 2024-02-21 18:10:23.102 2024-02-21 18:10:23.102 10000 FEE 434117 5637 6024317 2024-02-21 18:12:30.73 2024-02-21 18:12:30.73 9000 FEE 434097 18008 6024318 2024-02-21 18:12:30.73 2024-02-21 18:12:30.73 81000 TIP 434097 27 6024337 2024-02-21 18:13:11.949 2024-02-21 18:13:11.949 900 FEE 434079 7979 6024338 2024-02-21 18:13:11.949 2024-02-21 18:13:11.949 8100 TIP 434079 12158 6024343 2024-02-21 18:13:15.708 2024-02-21 18:13:15.708 100 FEE 434073 11522 6024344 2024-02-21 18:13:15.708 2024-02-21 18:13:15.708 900 TIP 434073 16704 6024371 2024-02-21 18:14:10.386 2024-02-21 18:14:10.386 1100 FEE 434089 657 6024372 2024-02-21 18:14:10.386 2024-02-21 18:14:10.386 9900 TIP 434089 12779 6024397 2024-02-21 18:15:38.021 2024-02-21 18:15:38.021 1000 FEE 434125 14657 6024398 2024-02-21 18:15:41.824 2024-02-21 18:15:41.824 0 FEE 434121 20623 6024408 2024-02-21 18:16:22.672 2024-02-21 18:16:22.672 1100 FEE 433688 7587 6024409 2024-02-21 18:16:22.672 2024-02-21 18:16:22.672 9900 TIP 433688 14857 6024412 2024-02-21 18:16:59.675 2024-02-21 18:16:59.675 1000 FEE 433958 20168 6024413 2024-02-21 18:16:59.675 2024-02-21 18:16:59.675 9000 TIP 433958 15094 6024423 2024-02-21 18:18:30.404 2024-02-21 18:18:30.404 100000 FEE 434129 1237 6024425 2024-02-21 18:18:44.931 2024-02-21 18:18:44.931 4000 FEE 433878 2224 6024426 2024-02-21 18:18:44.931 2024-02-21 18:18:44.931 36000 TIP 433878 9150 6023904 2024-02-21 17:48:24.106 2024-02-21 17:48:24.106 4000 FEE 434056 19864 6023905 2024-02-21 17:48:24.106 2024-02-21 17:48:24.106 36000 TIP 434056 18679 6023942 2024-02-21 17:51:03.052 2024-02-21 17:51:03.052 500 FEE 433835 21400 6023943 2024-02-21 17:51:03.052 2024-02-21 17:51:03.052 4500 TIP 433835 19842 6023980 2024-02-21 17:52:27.089 2024-02-21 17:52:27.089 1000 FEE 434082 1135 6024023 2024-02-21 17:54:15.09 2024-02-21 17:54:15.09 1600 FEE 433978 15213 6024024 2024-02-21 17:54:15.09 2024-02-21 17:54:15.09 14400 TIP 433978 19961 6024035 2024-02-21 17:55:20.775 2024-02-21 17:55:20.775 2100 FEE 434025 20585 6024036 2024-02-21 17:55:20.775 2024-02-21 17:55:20.775 18900 TIP 434025 633 6024037 2024-02-21 17:55:21.703 2024-02-21 17:55:21.703 2100 FEE 434023 17494 6024038 2024-02-21 17:55:21.703 2024-02-21 17:55:21.703 18900 TIP 434023 919 6024054 2024-02-21 17:56:28.732 2024-02-21 17:56:28.732 21000 FEE 434093 18635 6024066 2024-02-21 17:58:22.074 2024-02-21 17:58:22.074 2100 FEE 434069 2543 6024067 2024-02-21 17:58:22.074 2024-02-21 17:58:22.074 18900 TIP 434069 21605 6024070 2024-02-21 17:58:24.72 2024-02-21 17:58:24.72 2100 FEE 434093 20646 6024071 2024-02-21 17:58:24.72 2024-02-21 17:58:24.72 18900 TIP 434093 822 6024087 2024-02-21 18:00:08.16 2024-02-21 18:00:08.16 2100 FEE 433844 678 6024088 2024-02-21 18:00:08.16 2024-02-21 18:00:08.16 18900 TIP 433844 13587 6024099 2024-02-21 18:00:45.842 2024-02-21 18:00:45.842 1000 FEE 434081 21166 6024100 2024-02-21 18:00:45.842 2024-02-21 18:00:45.842 9000 TIP 434081 17162 6024136 2024-02-21 18:01:32.819 2024-02-21 18:01:32.819 2100 FEE 433499 16667 6024137 2024-02-21 18:01:32.819 2024-02-21 18:01:32.819 18900 TIP 433499 20623 6024144 2024-02-21 18:01:58.094 2024-02-21 18:01:58.094 1000 FEE 434105 8360 6024166 2024-02-21 18:02:18.156 2024-02-21 18:02:18.156 2100 FEE 434097 18529 6024167 2024-02-21 18:02:18.156 2024-02-21 18:02:18.156 18900 TIP 434097 2077 6024170 2024-02-21 18:02:32.681 2024-02-21 18:02:32.681 2000 FEE 434009 4538 6024171 2024-02-21 18:02:32.681 2024-02-21 18:02:32.681 18000 TIP 434009 16424 6024185 2024-02-21 18:03:01.49 2024-02-21 18:03:01.49 100 FEE 432153 14785 6024186 2024-02-21 18:03:01.49 2024-02-21 18:03:01.49 900 TIP 432153 10398 6024215 2024-02-21 18:04:46.262 2024-02-21 18:04:46.262 1000 FEE 434077 6268 6024216 2024-02-21 18:04:46.262 2024-02-21 18:04:46.262 9000 TIP 434077 8870 6024220 2024-02-21 18:05:10.481 2024-02-21 18:05:10.481 3300 FEE 433962 5522 6024221 2024-02-21 18:05:10.481 2024-02-21 18:05:10.481 29700 TIP 433962 13544 6024222 2024-02-21 18:05:15.543 2024-02-21 18:05:15.543 5000 FEE 433886 18448 6024223 2024-02-21 18:05:15.543 2024-02-21 18:05:15.543 45000 TIP 433886 718 6024259 2024-02-21 18:06:28.128 2024-02-21 18:06:28.128 300 FEE 434052 17514 6024260 2024-02-21 18:06:28.128 2024-02-21 18:06:28.128 2700 TIP 434052 759 6024278 2024-02-21 18:08:50.103 2024-02-21 18:08:50.103 2100 FEE 433938 7119 6024279 2024-02-21 18:08:50.103 2024-02-21 18:08:50.103 18900 TIP 433938 15624 6024303 2024-02-21 18:10:47.379 2024-02-21 18:10:47.379 1000 FEE 434118 16387 6024304 2024-02-21 18:10:47.379 2024-02-21 18:10:47.379 9000 TIP 434118 16556 6024307 2024-02-21 18:10:48.501 2024-02-21 18:10:48.501 1000 FEE 434118 10493 6024308 2024-02-21 18:10:48.501 2024-02-21 18:10:48.501 9000 TIP 434118 18830 6024321 2024-02-21 18:12:47.573 2024-02-21 18:12:47.573 900 FEE 434010 1617 6024322 2024-02-21 18:12:47.573 2024-02-21 18:12:47.573 8100 TIP 434010 20102 6024325 2024-02-21 18:12:57.933 2024-02-21 18:12:57.933 900 FEE 434013 1585 6024326 2024-02-21 18:12:57.933 2024-02-21 18:12:57.933 8100 TIP 434013 17455 6024353 2024-02-21 18:13:57.069 2024-02-21 18:13:57.069 900 FEE 434097 641 6024354 2024-02-21 18:13:57.069 2024-02-21 18:13:57.069 8100 TIP 434097 20185 6024367 2024-02-21 18:14:09.105 2024-02-21 18:14:09.105 1000 FEE 434056 18330 6024368 2024-02-21 18:14:09.105 2024-02-21 18:14:09.105 9000 TIP 434056 979 6024383 2024-02-21 18:14:47.551 2024-02-21 18:14:47.551 1000 FEE 434121 14791 6024407 2024-02-21 18:16:14.833 2024-02-21 18:16:14.833 0 FEE 434125 6310 6024419 2024-02-21 18:17:47.104 2024-02-21 18:17:47.104 1100 FEE 433937 1286 6024420 2024-02-21 18:17:47.104 2024-02-21 18:17:47.104 9900 TIP 433937 16788 6024421 2024-02-21 18:18:01.512 2024-02-21 18:18:01.512 0 FEE 434121 9346 6024445 2024-02-21 18:19:13.878 2024-02-21 18:19:13.878 1000 FEE 434131 15271 6024450 2024-02-21 18:19:19.544 2024-02-21 18:19:19.544 1600 FEE 434097 20554 6024451 2024-02-21 18:19:19.544 2024-02-21 18:19:19.544 14400 TIP 434097 10536 6024465 2024-02-21 18:20:03.101 2024-02-21 18:20:03.101 1000 FEE 434132 21509 6024516 2024-02-21 18:21:19.327 2024-02-21 18:21:19.327 9000 FEE 434121 21614 6024517 2024-02-21 18:21:19.327 2024-02-21 18:21:19.327 81000 TIP 434121 17693 6024527 2024-02-21 18:22:11.27 2024-02-21 18:22:11.27 1000 FEE 434077 726 6024528 2024-02-21 18:22:11.27 2024-02-21 18:22:11.27 9000 TIP 434077 2576 6024537 2024-02-21 18:22:18.417 2024-02-21 18:22:18.417 1000 FEE 434077 14959 6024538 2024-02-21 18:22:18.417 2024-02-21 18:22:18.417 9000 TIP 434077 980 6024556 2024-02-21 18:23:06.022 2024-02-21 18:23:06.022 1000 FEE 434077 18658 6024557 2024-02-21 18:23:06.022 2024-02-21 18:23:06.022 9000 TIP 434077 2224 6024564 2024-02-21 18:23:09.336 2024-02-21 18:23:09.336 1000 FEE 434077 14909 6024565 2024-02-21 18:23:09.336 2024-02-21 18:23:09.336 9000 TIP 434077 20826 6024569 2024-02-21 18:23:24.676 2024-02-21 18:23:24.676 1000 FEE 434141 16004 6024588 2024-02-21 18:24:42.076 2024-02-21 18:24:42.076 1100 FEE 433677 10849 6024589 2024-02-21 18:24:42.076 2024-02-21 18:24:42.076 9900 TIP 433677 4173 6024592 2024-02-21 18:24:42.998 2024-02-21 18:24:42.998 700 FEE 434139 15556 6024593 2024-02-21 18:24:42.998 2024-02-21 18:24:42.998 6300 TIP 434139 18892 6024608 2024-02-21 18:24:54.811 2024-02-21 18:24:54.811 1100 FEE 433833 21352 6024609 2024-02-21 18:24:54.811 2024-02-21 18:24:54.811 9900 TIP 433833 19005 6024654 2024-02-21 18:26:55.124 2024-02-21 18:26:55.124 4000 FEE 434069 20546 6024655 2024-02-21 18:26:55.124 2024-02-21 18:26:55.124 36000 TIP 434069 19826 6024688 2024-02-21 18:31:57.049 2024-02-21 18:31:57.049 1000 FEE 434153 2519 6024700 2024-02-21 18:34:45.823 2024-02-21 18:34:45.823 10000 FEE 434156 10060 6024705 2024-02-21 18:34:49.471 2024-02-21 18:34:49.471 700 FEE 433934 1632 6024706 2024-02-21 18:34:49.471 2024-02-21 18:34:49.471 6300 TIP 433934 15491 6024723 2024-02-21 18:35:39.318 2024-02-21 18:35:39.318 1000 FEE 434054 20254 6024724 2024-02-21 18:35:39.318 2024-02-21 18:35:39.318 9000 TIP 434054 3456 6024739 2024-02-21 18:36:01.497 2024-02-21 18:36:01.497 1000 FEE 434025 20180 6024740 2024-02-21 18:36:01.497 2024-02-21 18:36:01.497 9000 TIP 434025 17011 6024785 2024-02-21 18:40:43.524 2024-02-21 18:40:43.524 1000 FEE 434160 19981 6024786 2024-02-21 18:40:43.524 2024-02-21 18:40:43.524 9000 TIP 434160 19569 6024787 2024-02-21 18:40:49.53 2024-02-21 18:40:49.53 4000 FEE 434141 13763 6024788 2024-02-21 18:40:49.53 2024-02-21 18:40:49.53 36000 TIP 434141 18984 6024810 2024-02-21 18:43:32.869 2024-02-21 18:43:32.869 1000 FEE 434171 20782 6024845 2024-02-21 18:47:58.126 2024-02-21 18:47:58.126 1000 FEE 433889 21012 6024846 2024-02-21 18:47:58.126 2024-02-21 18:47:58.126 9000 TIP 433889 11996 6024853 2024-02-21 18:47:58.638 2024-02-21 18:47:58.638 1000 FEE 433889 18180 6024854 2024-02-21 18:47:58.638 2024-02-21 18:47:58.638 9000 TIP 433889 18956 6024879 2024-02-21 18:50:00.142 2024-02-21 18:50:00.142 2300 FEE 432811 760 6024880 2024-02-21 18:50:00.142 2024-02-21 18:50:00.142 20700 TIP 432811 732 6024894 2024-02-21 18:50:29.372 2024-02-21 18:50:29.372 3300 FEE 434115 14037 6024895 2024-02-21 18:50:29.372 2024-02-21 18:50:29.372 29700 TIP 434115 7847 6024908 2024-02-21 18:50:32.525 2024-02-21 18:50:32.525 1000 FEE 434094 18873 6024909 2024-02-21 18:50:32.525 2024-02-21 18:50:32.525 9000 TIP 434094 17184 6024934 2024-02-21 18:51:13.962 2024-02-21 18:51:13.962 3300 FEE 434037 21491 6024935 2024-02-21 18:51:13.962 2024-02-21 18:51:13.962 29700 TIP 434037 18630 6024941 2024-02-21 18:52:20.892 2024-02-21 18:52:20.892 100 FEE 434045 5069 6024942 2024-02-21 18:52:20.892 2024-02-21 18:52:20.892 900 TIP 434045 13198 6024949 2024-02-21 18:52:25.78 2024-02-21 18:52:25.78 3300 FEE 433760 12609 6024135 2024-02-21 18:01:30.716 2024-02-21 18:01:30.716 8100 TIP 433996 21387 6024140 2024-02-21 18:01:43.632 2024-02-21 18:01:43.632 100 FEE 433797 15858 6024141 2024-02-21 18:01:43.632 2024-02-21 18:01:43.632 900 TIP 433797 6382 6024150 2024-02-21 18:02:10.631 2024-02-21 18:02:10.631 100 FEE 433711 976 6024151 2024-02-21 18:02:10.631 2024-02-21 18:02:10.631 900 TIP 433711 5776 6024156 2024-02-21 18:02:11.711 2024-02-21 18:02:11.711 1000 FEE 434006 20243 6024157 2024-02-21 18:02:11.711 2024-02-21 18:02:11.711 9000 TIP 434006 20376 6024168 2024-02-21 18:02:32.661 2024-02-21 18:02:32.661 3000 FEE 434009 1650 6024169 2024-02-21 18:02:32.661 2024-02-21 18:02:32.661 27000 TIP 434009 9363 6024174 2024-02-21 18:02:38.075 2024-02-21 18:02:38.075 100 FEE 433796 1751 6024175 2024-02-21 18:02:38.075 2024-02-21 18:02:38.075 900 TIP 433796 16684 6024192 2024-02-21 18:03:14.635 2024-02-21 18:03:14.635 3300 FEE 433937 641 6024193 2024-02-21 18:03:14.635 2024-02-21 18:03:14.635 29700 TIP 433937 1051 6024203 2024-02-21 18:04:42.067 2024-02-21 18:04:42.067 1000 FEE 434077 1094 6024204 2024-02-21 18:04:42.067 2024-02-21 18:04:42.067 9000 TIP 434077 3504 6024207 2024-02-21 18:04:43.454 2024-02-21 18:04:43.454 1000 FEE 434077 19806 6024208 2024-02-21 18:04:43.454 2024-02-21 18:04:43.454 9000 TIP 434077 8173 6024234 2024-02-21 18:05:32.196 2024-02-21 18:05:32.196 1000 FEE 433889 7772 6024235 2024-02-21 18:05:32.196 2024-02-21 18:05:32.196 9000 TIP 433889 10549 6024258 2024-02-21 18:06:20.168 2024-02-21 18:06:20.168 1000 FEE 434110 19557 6024261 2024-02-21 18:06:41.296 2024-02-21 18:06:41.296 700 FEE 434104 9844 6024262 2024-02-21 18:06:41.296 2024-02-21 18:06:41.296 6300 TIP 434104 10342 6024269 2024-02-21 18:08:18.943 2024-02-21 18:08:18.943 2100 FEE 433978 20981 6024270 2024-02-21 18:08:18.943 2024-02-21 18:08:18.943 18900 TIP 433978 10409 6024272 2024-02-21 18:08:28.697 2024-02-21 18:08:28.697 2100 FEE 433713 986 6024273 2024-02-21 18:08:28.697 2024-02-21 18:08:28.697 18900 TIP 433713 678 6024328 2024-02-21 18:12:58.966 2024-02-21 18:12:58.966 9000 FEE 434013 5637 6024329 2024-02-21 18:12:58.966 2024-02-21 18:12:58.966 81000 TIP 434013 20624 6024349 2024-02-21 18:13:17.361 2024-02-21 18:13:17.361 900 FEE 434061 19292 6024350 2024-02-21 18:13:17.361 2024-02-21 18:13:17.361 8100 TIP 434061 12516 6024359 2024-02-21 18:14:08.424 2024-02-21 18:14:08.424 1100 FEE 434089 661 6024360 2024-02-21 18:14:08.424 2024-02-21 18:14:08.424 9900 TIP 434089 20272 6024361 2024-02-21 18:14:08.754 2024-02-21 18:14:08.754 1000 FEE 434056 20500 6024362 2024-02-21 18:14:08.754 2024-02-21 18:14:08.754 9000 TIP 434056 18735 6024365 2024-02-21 18:14:09.073 2024-02-21 18:14:09.073 1100 FEE 434089 17707 6024366 2024-02-21 18:14:09.073 2024-02-21 18:14:09.073 9900 TIP 434089 657 6024369 2024-02-21 18:14:09.264 2024-02-21 18:14:09.264 1000 FEE 434056 20987 6024370 2024-02-21 18:14:09.264 2024-02-21 18:14:09.264 9000 TIP 434056 19524 6024375 2024-02-21 18:14:28.176 2024-02-21 18:14:28.176 1000 FEE 434073 21062 6024376 2024-02-21 18:14:28.176 2024-02-21 18:14:28.176 9000 TIP 434073 1438 6024388 2024-02-21 18:15:03.39 2024-02-21 18:15:03.39 700 FEE 433844 20137 6024389 2024-02-21 18:15:03.39 2024-02-21 18:15:03.39 6300 TIP 433844 664 6024394 2024-02-21 18:15:12.626 2024-02-21 18:15:12.626 10000 FEE 434123 2576 6024404 2024-02-21 18:16:13.121 2024-02-21 18:16:13.121 0 FEE 434121 18139 6024410 2024-02-21 18:16:27.968 2024-02-21 18:16:27.968 0 FEE 434121 2016 6024433 2024-02-21 18:19:00.714 2024-02-21 18:19:00.714 4000 FEE 433978 8569 6024434 2024-02-21 18:19:00.714 2024-02-21 18:19:00.714 36000 TIP 433978 9796 6024439 2024-02-21 18:19:10.873 2024-02-21 18:19:10.873 6300 FEE 433828 3360 6024440 2024-02-21 18:19:10.873 2024-02-21 18:19:10.873 56700 TIP 433828 18454 6024448 2024-02-21 18:19:17.107 2024-02-21 18:19:17.107 2100 FEE 433555 19569 6024449 2024-02-21 18:19:17.107 2024-02-21 18:19:17.107 18900 TIP 433555 1221 6024455 2024-02-21 18:19:45.802 2024-02-21 18:19:45.802 1000 FEE 433844 19462 6024456 2024-02-21 18:19:45.802 2024-02-21 18:19:45.802 9000 TIP 433844 20811 6024457 2024-02-21 18:19:51.284 2024-02-21 18:19:51.284 1000 FEE 433889 18393 6024458 2024-02-21 18:19:51.284 2024-02-21 18:19:51.284 9000 TIP 433889 1237 6024472 2024-02-21 18:20:13.717 2024-02-21 18:20:13.717 2100 FEE 433738 20901 6024473 2024-02-21 18:20:13.717 2024-02-21 18:20:13.717 18900 TIP 433738 989 6024488 2024-02-21 18:20:41.833 2024-02-21 18:20:41.833 2100 FEE 403677 18837 6024489 2024-02-21 18:20:41.833 2024-02-21 18:20:41.833 18900 TIP 403677 21344 6024506 2024-02-21 18:21:04.847 2024-02-21 18:21:04.847 2100 FEE 433738 20258 6024507 2024-02-21 18:21:04.847 2024-02-21 18:21:04.847 18900 TIP 433738 12779 6024508 2024-02-21 18:21:10.246 2024-02-21 18:21:10.246 2100 FEE 433833 9611 6024509 2024-02-21 18:21:10.246 2024-02-21 18:21:10.246 18900 TIP 433833 21062 6024510 2024-02-21 18:21:12.644 2024-02-21 18:21:12.644 2100 FEE 433878 1985 6024511 2024-02-21 18:21:12.644 2024-02-21 18:21:12.644 18900 TIP 433878 21532 6024531 2024-02-21 18:22:12.815 2024-02-21 18:22:12.815 1000 FEE 434077 20972 6024532 2024-02-21 18:22:12.815 2024-02-21 18:22:12.815 9000 TIP 434077 9109 6024582 2024-02-21 18:24:40.688 2024-02-21 18:24:40.688 1100 FEE 433760 16670 6024583 2024-02-21 18:24:40.688 2024-02-21 18:24:40.688 9900 TIP 433760 15925 6024606 2024-02-21 18:24:54.248 2024-02-21 18:24:54.248 1100 FEE 433943 16747 6024607 2024-02-21 18:24:54.248 2024-02-21 18:24:54.248 9900 TIP 433943 940 6024610 2024-02-21 18:24:55.654 2024-02-21 18:24:55.654 1100 FEE 433878 17064 6024611 2024-02-21 18:24:55.654 2024-02-21 18:24:55.654 9900 TIP 433878 2749 6024617 2024-02-21 18:24:58.424 2024-02-21 18:24:58.424 1000 FEE 434137 1433 6024618 2024-02-21 18:24:58.424 2024-02-21 18:24:58.424 9000 TIP 434137 18543 6024628 2024-02-21 18:25:14.741 2024-02-21 18:25:14.741 1000 FEE 434118 13854 6024629 2024-02-21 18:25:14.741 2024-02-21 18:25:14.741 9000 TIP 434118 1051 6024637 2024-02-21 18:25:21.372 2024-02-21 18:25:21.372 500 FEE 433713 20599 6024638 2024-02-21 18:25:21.372 2024-02-21 18:25:21.372 4500 TIP 433713 9906 6024640 2024-02-21 18:25:33.04 2024-02-21 18:25:33.04 1000 FEE 434146 14202 6024657 2024-02-21 18:27:06.36 2024-02-21 18:27:06.36 1000 FEE 434149 4802 6024658 2024-02-21 18:27:41.222 2024-02-21 18:27:41.222 1000 FEE 434150 1173 6024661 2024-02-21 18:28:29.122 2024-02-21 18:28:29.122 700 FEE 434052 19638 6024662 2024-02-21 18:28:29.122 2024-02-21 18:28:29.122 6300 TIP 434052 678 6024667 2024-02-21 18:29:10.159 2024-02-21 18:29:10.159 1000 FEE 434152 19668 6024679 2024-02-21 18:31:04.366 2024-02-21 18:31:04.366 200 FEE 434139 12561 6024680 2024-02-21 18:31:04.366 2024-02-21 18:31:04.366 1800 TIP 434139 9350 6024682 2024-02-21 18:31:04.847 2024-02-21 18:31:04.847 200 FEE 434139 8713 6024683 2024-02-21 18:31:04.847 2024-02-21 18:31:04.847 1800 TIP 434139 20852 6024695 2024-02-21 18:34:37.599 2024-02-21 18:34:37.599 100000 FEE 434155 9695 6024698 2024-02-21 18:34:45.288 2024-02-21 18:34:45.288 1000 FEE 433943 12483 6024699 2024-02-21 18:34:45.288 2024-02-21 18:34:45.288 9000 TIP 433943 18177 6024701 2024-02-21 18:34:48.957 2024-02-21 18:34:48.957 700 FEE 433934 6421 6024702 2024-02-21 18:34:48.957 2024-02-21 18:34:48.957 6300 TIP 433934 7903 6024711 2024-02-21 18:34:57.942 2024-02-21 18:34:57.942 0 FEE 434155 21627 6024715 2024-02-21 18:35:07.322 2024-02-21 18:35:07.322 1000 FEE 434157 21140 6024733 2024-02-21 18:35:51.529 2024-02-21 18:35:51.529 1000 FEE 434023 20597 6024734 2024-02-21 18:35:51.529 2024-02-21 18:35:51.529 9000 TIP 434023 20646 6024754 2024-02-21 18:37:17.605 2024-02-21 18:37:17.605 27900 FEE 434146 18494 6024755 2024-02-21 18:37:17.605 2024-02-21 18:37:17.605 251100 TIP 434146 17014 6024758 2024-02-21 18:37:43.379 2024-02-21 18:37:43.379 1000 FEE 433721 20840 6024759 2024-02-21 18:37:43.379 2024-02-21 18:37:43.379 9000 TIP 433721 8945 6024769 2024-02-21 18:39:39.632 2024-02-21 18:39:39.632 1000 FEE 434159 19810 6024770 2024-02-21 18:39:39.632 2024-02-21 18:39:39.632 9000 TIP 434159 16230 6024771 2024-02-21 18:39:40.042 2024-02-21 18:39:40.042 1000 FEE 434159 2101 6024772 2024-02-21 18:39:40.042 2024-02-21 18:39:40.042 9000 TIP 434159 1713 6024916 2024-02-21 18:50:36.639 2024-02-21 18:50:36.639 3300 FEE 434149 4062 6024374 2024-02-21 18:14:17.389 2024-02-21 18:14:17.389 9000 TIP 434074 18533 6024377 2024-02-21 18:14:29.64 2024-02-21 18:14:29.64 1000 FEE 434061 20782 6024378 2024-02-21 18:14:29.64 2024-02-21 18:14:29.64 9000 TIP 434061 13544 6024386 2024-02-21 18:15:01.625 2024-02-21 18:15:01.625 700 FEE 433844 1620 6024387 2024-02-21 18:15:01.625 2024-02-21 18:15:01.625 6300 TIP 433844 20327 6024405 2024-02-21 18:16:14.255 2024-02-21 18:16:14.255 1100 FEE 433943 21057 6024406 2024-02-21 18:16:14.255 2024-02-21 18:16:14.255 9900 TIP 433943 16432 6024427 2024-02-21 18:18:52.592 2024-02-21 18:18:52.592 4000 FEE 433943 21427 6024428 2024-02-21 18:18:52.592 2024-02-21 18:18:52.592 36000 TIP 433943 1261 6024429 2024-02-21 18:18:57.368 2024-02-21 18:18:57.368 4000 FEE 433886 18678 6024430 2024-02-21 18:18:57.368 2024-02-21 18:18:57.368 36000 TIP 433886 9177 6024454 2024-02-21 18:19:45.577 2024-02-21 18:19:45.577 0 FEE 434121 21239 6024484 2024-02-21 18:20:41.323 2024-02-21 18:20:41.323 2100 FEE 403677 997 6024485 2024-02-21 18:20:41.323 2024-02-21 18:20:41.323 18900 TIP 403677 18230 6024493 2024-02-21 18:20:54.229 2024-02-21 18:20:54.229 1000 FEE 434125 3683 6024494 2024-02-21 18:20:54.229 2024-02-21 18:20:54.229 9000 TIP 434125 13854 6024503 2024-02-21 18:21:03.945 2024-02-21 18:21:03.945 2100 FEE 433738 17184 6024504 2024-02-21 18:21:03.945 2024-02-21 18:21:03.945 18900 TIP 433738 661 6024518 2024-02-21 18:21:30.01 2024-02-21 18:21:30.01 100 FEE 433914 20781 6024519 2024-02-21 18:21:30.01 2024-02-21 18:21:30.01 900 TIP 433914 1552 6024549 2024-02-21 18:23:03.454 2024-02-21 18:23:03.454 1000 FEE 434077 1959 6024550 2024-02-21 18:23:03.454 2024-02-21 18:23:03.454 9000 TIP 434077 5806 6024554 2024-02-21 18:23:05.269 2024-02-21 18:23:05.269 1000 FEE 434077 20099 6024555 2024-02-21 18:23:05.269 2024-02-21 18:23:05.269 9000 TIP 434077 12289 6024570 2024-02-21 18:23:27.915 2024-02-21 18:23:27.915 2100 FEE 434130 5759 6024571 2024-02-21 18:23:27.915 2024-02-21 18:23:27.915 18900 TIP 434130 1825 6024576 2024-02-21 18:23:31.352 2024-02-21 18:23:31.352 100 FEE 433937 15843 6024577 2024-02-21 18:23:31.352 2024-02-21 18:23:31.352 900 TIP 433937 17157 6024586 2024-02-21 18:24:41.691 2024-02-21 18:24:41.691 1100 FEE 434013 18615 6024587 2024-02-21 18:24:41.691 2024-02-21 18:24:41.691 9900 TIP 434013 688 6024596 2024-02-21 18:24:48.728 2024-02-21 18:24:48.728 1100 FEE 433555 16410 6024597 2024-02-21 18:24:48.728 2024-02-21 18:24:48.728 9900 TIP 433555 19812 6024598 2024-02-21 18:24:49.28 2024-02-21 18:24:49.28 1100 FEE 433937 18909 6024599 2024-02-21 18:24:49.28 2024-02-21 18:24:49.28 9900 TIP 433937 10979 6024644 2024-02-21 18:26:04.475 2024-02-21 18:26:04.475 800 FEE 433943 1236 6024645 2024-02-21 18:26:04.475 2024-02-21 18:26:04.475 7200 TIP 433943 19839 6024648 2024-02-21 18:26:35.228 2024-02-21 18:26:35.228 3100 FEE 434090 11491 6024649 2024-02-21 18:26:35.228 2024-02-21 18:26:35.228 27900 TIP 434090 17953 6024650 2024-02-21 18:26:41.469 2024-02-21 18:26:41.469 3100 FEE 434077 5499 6024651 2024-02-21 18:26:41.469 2024-02-21 18:26:41.469 27900 TIP 434077 9331 6024663 2024-02-21 18:28:36.674 2024-02-21 18:28:36.674 1000 FEE 434151 10484 6024675 2024-02-21 18:30:50.093 2024-02-21 18:30:50.093 21000 FEE 434139 21040 6024676 2024-02-21 18:30:50.093 2024-02-21 18:30:50.093 189000 TIP 434139 19878 6024677 2024-02-21 18:31:03.58 2024-02-21 18:31:03.58 200 FEE 434139 826 6024678 2024-02-21 18:31:03.58 2024-02-21 18:31:03.58 1800 TIP 434139 21145 6024694 2024-02-21 18:34:24.875 2024-02-21 18:34:24.875 210000 FEE 434154 12368 6024703 2024-02-21 18:34:49.189 2024-02-21 18:34:49.189 700 FEE 433934 909 6024704 2024-02-21 18:34:49.189 2024-02-21 18:34:49.189 6300 TIP 433934 9348 6024729 2024-02-21 18:35:44.602 2024-02-21 18:35:44.602 100 FEE 433543 21214 6024730 2024-02-21 18:35:44.602 2024-02-21 18:35:44.602 900 TIP 433543 21048 6024743 2024-02-21 18:36:05.459 2024-02-21 18:36:05.459 3300 FEE 433943 9921 6024744 2024-02-21 18:36:05.459 2024-02-21 18:36:05.459 29700 TIP 433943 20340 6024750 2024-02-21 18:36:52.747 2024-02-21 18:36:52.747 1000 FEE 434161 12097 6024784 2024-02-21 18:40:10.522 2024-02-21 18:40:10.522 1000 FEE 434164 1046 6024818 2024-02-21 18:44:55.84 2024-02-21 18:44:55.84 1000 FEE 434074 836 6024819 2024-02-21 18:44:55.84 2024-02-21 18:44:55.84 9000 TIP 434074 5112 6024833 2024-02-21 18:47:41.769 2024-02-21 18:47:41.769 1000 FEE 434134 14795 6024834 2024-02-21 18:47:41.769 2024-02-21 18:47:41.769 9000 TIP 434134 21014 6024912 2024-02-21 18:50:36.037 2024-02-21 18:50:36.037 1000 FEE 434158 17218 6024913 2024-02-21 18:50:36.037 2024-02-21 18:50:36.037 9000 TIP 434158 691 6024957 2024-02-21 18:53:02.993 2024-02-21 18:53:02.993 1000 FEE 434177 910 6025003 2024-02-21 18:59:50.087 2024-02-21 18:59:50.087 1000 FEE 434187 18313 6025018 2024-02-21 19:03:11.791 2024-02-21 19:03:11.791 1000 FEE 434193 21180 6025035 2024-02-21 19:04:18.315 2024-02-21 19:04:18.315 2300 FEE 433934 21493 6025036 2024-02-21 19:04:18.315 2024-02-21 19:04:18.315 20700 TIP 433934 19335 6025064 2024-02-21 19:07:19.659 2024-02-21 19:07:19.659 1000 FEE 434191 20613 6025065 2024-02-21 19:07:19.659 2024-02-21 19:07:19.659 9000 TIP 434191 13782 6025078 2024-02-21 19:08:09.432 2024-02-21 19:08:09.432 2100 FEE 433878 9307 6025079 2024-02-21 19:08:09.432 2024-02-21 19:08:09.432 18900 TIP 433878 759 6025080 2024-02-21 19:08:18.936 2024-02-21 19:08:18.936 2100 FEE 433934 21444 6025081 2024-02-21 19:08:18.936 2024-02-21 19:08:18.936 18900 TIP 433934 16679 6025100 2024-02-21 19:09:56.414 2024-02-21 19:09:56.414 10000 FEE 434203 16556 6025128 2024-02-21 19:14:45.175 2024-02-21 19:14:45.175 1000 FEE 434210 19537 6025129 2024-02-21 19:14:47.119 2024-02-21 19:14:47.119 100 FEE 434160 14910 6025130 2024-02-21 19:14:47.119 2024-02-21 19:14:47.119 900 TIP 434160 18139 6025137 2024-02-21 19:15:15.573 2024-02-21 19:15:15.573 0 FEE 434209 9290 6025143 2024-02-21 19:15:24.529 2024-02-21 19:15:24.529 9000 FEE 434172 11263 6025144 2024-02-21 19:15:24.529 2024-02-21 19:15:24.529 81000 TIP 434172 21573 6025146 2024-02-21 19:15:34.345 2024-02-21 19:15:34.345 100 FEE 434204 13527 6025147 2024-02-21 19:15:34.345 2024-02-21 19:15:34.345 900 TIP 434204 18017 6025161 2024-02-21 19:17:54.457 2024-02-21 19:17:54.457 7000 FEE 434213 19459 6025172 2024-02-21 19:19:55.44 2024-02-21 19:19:55.44 1000 FEE 434192 19638 6025173 2024-02-21 19:19:55.44 2024-02-21 19:19:55.44 9000 TIP 434192 16562 6025180 2024-02-21 19:19:56.116 2024-02-21 19:19:56.116 1000 FEE 434192 21314 6025181 2024-02-21 19:19:56.116 2024-02-21 19:19:56.116 9000 TIP 434192 18313 6025190 2024-02-21 19:20:33.885 2024-02-21 19:20:33.885 1000 FEE 434141 17984 6025191 2024-02-21 19:20:33.885 2024-02-21 19:20:33.885 9000 TIP 434141 9246 6025216 2024-02-21 19:22:04.549 2024-02-21 19:22:04.549 2100 FEE 434139 19689 6025217 2024-02-21 19:22:04.549 2024-02-21 19:22:04.549 18900 TIP 434139 17082 6025226 2024-02-21 19:23:39.147 2024-02-21 19:23:39.147 1000 FEE 434192 21090 6025227 2024-02-21 19:23:39.147 2024-02-21 19:23:39.147 9000 TIP 434192 4079 6025233 2024-02-21 19:25:16.963 2024-02-21 19:25:16.963 1100 FEE 303421 12139 6025234 2024-02-21 19:25:16.963 2024-02-21 19:25:16.963 9900 TIP 303421 18005 6025249 2024-02-21 19:26:15.888 2024-02-21 19:26:15.888 2100 FEE 434212 1310 6025250 2024-02-21 19:26:15.888 2024-02-21 19:26:15.888 18900 TIP 434212 4776 6025259 2024-02-21 19:27:33.83 2024-02-21 19:27:33.83 7700 FEE 433943 18363 6025260 2024-02-21 19:27:33.83 2024-02-21 19:27:33.83 69300 TIP 433943 21216 6025261 2024-02-21 19:27:34.421 2024-02-21 19:27:34.421 7700 FEE 433943 11714 6025262 2024-02-21 19:27:34.421 2024-02-21 19:27:34.421 69300 TIP 433943 19037 6025285 2024-02-21 19:30:29.447 2024-02-21 19:30:29.447 8300 FEE 434139 9177 6025286 2024-02-21 19:30:29.447 2024-02-21 19:30:29.447 74700 TIP 434139 7766 6025301 2024-02-21 19:32:39.268 2024-02-21 19:32:39.268 2100 FEE 434192 3642 6025302 2024-02-21 19:32:39.268 2024-02-21 19:32:39.268 18900 TIP 434192 1046 6025312 2024-02-21 19:33:00.536 2024-02-21 19:33:00.536 8300 FEE 434141 4345 6025313 2024-02-21 19:33:00.536 2024-02-21 19:33:00.536 74700 TIP 434141 18262 6025342 2024-02-21 19:34:30.611 2024-02-21 19:34:30.611 100 FEE 434026 21401 6025343 2024-02-21 19:34:30.611 2024-02-21 19:34:30.611 900 TIP 434026 759 6024463 2024-02-21 18:20:01.375 2024-02-21 18:20:01.375 2100 FEE 434071 18468 6024464 2024-02-21 18:20:01.375 2024-02-21 18:20:01.375 18900 TIP 434071 9336 6024469 2024-02-21 18:20:08.376 2024-02-21 18:20:08.376 0 FEE 434124 712 6024470 2024-02-21 18:20:09.537 2024-02-21 18:20:09.537 2100 FEE 433795 9809 6024471 2024-02-21 18:20:09.537 2024-02-21 18:20:09.537 18900 TIP 433795 5522 6024474 2024-02-21 18:20:18.105 2024-02-21 18:20:18.105 10000 FEE 434032 9261 6024475 2024-02-21 18:20:18.105 2024-02-21 18:20:18.105 90000 TIP 434032 4079 6024478 2024-02-21 18:20:25.657 2024-02-21 18:20:25.657 2100 FEE 433447 10112 6024479 2024-02-21 18:20:25.657 2024-02-21 18:20:25.657 18900 TIP 433447 14688 6024512 2024-02-21 18:21:18.512 2024-02-21 18:21:18.512 100 FEE 434121 11329 6024513 2024-02-21 18:21:18.512 2024-02-21 18:21:18.512 900 TIP 434121 638 6024520 2024-02-21 18:21:40.179 2024-02-21 18:21:40.179 1000 FEE 434134 15049 6024522 2024-02-21 18:22:04.78 2024-02-21 18:22:04.78 1000 FEE 434135 19886 6024525 2024-02-21 18:22:10.44 2024-02-21 18:22:10.44 1000 FEE 434077 11819 6024526 2024-02-21 18:22:10.44 2024-02-21 18:22:10.44 9000 TIP 434077 8729 6024535 2024-02-21 18:22:17.55 2024-02-21 18:22:17.55 1000 FEE 434077 3717 6024536 2024-02-21 18:22:17.55 2024-02-21 18:22:17.55 9000 TIP 434077 21451 6024546 2024-02-21 18:22:59.14 2024-02-21 18:22:59.14 100000 FEE 434139 14225 6024560 2024-02-21 18:23:07.696 2024-02-21 18:23:07.696 1000 FEE 434077 21386 6024561 2024-02-21 18:23:07.696 2024-02-21 18:23:07.696 9000 TIP 434077 13327 6024562 2024-02-21 18:23:08.564 2024-02-21 18:23:08.564 1000 FEE 434077 17331 6024563 2024-02-21 18:23:08.564 2024-02-21 18:23:08.564 9000 TIP 434077 695 6024574 2024-02-21 18:23:31.207 2024-02-21 18:23:31.207 100 FEE 433937 12289 6024575 2024-02-21 18:23:31.207 2024-02-21 18:23:31.207 900 TIP 433937 19320 6024600 2024-02-21 18:24:50.669 2024-02-21 18:24:50.669 1100 FEE 433978 9844 6024601 2024-02-21 18:24:50.669 2024-02-21 18:24:50.669 9900 TIP 433978 1751 6024602 2024-02-21 18:24:52.118 2024-02-21 18:24:52.118 1100 FEE 433688 20980 6024603 2024-02-21 18:24:52.118 2024-02-21 18:24:52.118 9900 TIP 433688 11423 6024612 2024-02-21 18:24:56.1 2024-02-21 18:24:56.1 1000 FEE 434143 19030 6024613 2024-02-21 18:24:56.15 2024-02-21 18:24:56.15 1100 FEE 433828 5308 6024614 2024-02-21 18:24:56.15 2024-02-21 18:24:56.15 9900 TIP 433828 2111 6024626 2024-02-21 18:25:14.303 2024-02-21 18:25:14.303 1000 FEE 434118 21269 6024627 2024-02-21 18:25:14.303 2024-02-21 18:25:14.303 9000 TIP 434118 18873 6024634 2024-02-21 18:25:16.143 2024-02-21 18:25:16.143 1000 FEE 434118 2514 6024635 2024-02-21 18:25:16.143 2024-02-21 18:25:16.143 9000 TIP 434118 3706 6024636 2024-02-21 18:25:18.741 2024-02-21 18:25:18.741 1000 FEE 434144 19193 6024639 2024-02-21 18:25:29.684 2024-02-21 18:25:29.684 1000 FEE 434145 13097 6024643 2024-02-21 18:25:50.228 2024-02-21 18:25:50.228 1000 FEE 434147 20110 6024686 2024-02-21 18:31:05.776 2024-02-21 18:31:05.776 200 FEE 434139 20812 6024687 2024-02-21 18:31:05.776 2024-02-21 18:31:05.776 1800 TIP 434139 21386 6024696 2024-02-21 18:34:42.328 2024-02-21 18:34:42.328 1000 FEE 433943 776 6024697 2024-02-21 18:34:42.328 2024-02-21 18:34:42.328 9000 TIP 433943 638 6024709 2024-02-21 18:34:52.915 2024-02-21 18:34:52.915 1000 FEE 433943 15196 6024710 2024-02-21 18:34:52.915 2024-02-21 18:34:52.915 9000 TIP 433943 18119 6024713 2024-02-21 18:35:05.078 2024-02-21 18:35:05.078 2100 FEE 434150 663 6024714 2024-02-21 18:35:05.078 2024-02-21 18:35:05.078 18900 TIP 434150 900 6024718 2024-02-21 18:35:26.658 2024-02-21 18:35:26.658 1000 FEE 434158 21481 6024719 2024-02-21 18:35:28.666 2024-02-21 18:35:28.666 100 FEE 433178 16665 6024720 2024-02-21 18:35:28.666 2024-02-21 18:35:28.666 900 TIP 433178 899 6024721 2024-02-21 18:35:33.672 2024-02-21 18:35:33.672 2100 FEE 433799 21208 6024722 2024-02-21 18:35:33.672 2024-02-21 18:35:33.672 18900 TIP 433799 16505 6024731 2024-02-21 18:35:48.964 2024-02-21 18:35:48.964 2100 FEE 433831 5487 6024732 2024-02-21 18:35:48.964 2024-02-21 18:35:48.964 18900 TIP 433831 951 6024737 2024-02-21 18:35:57.988 2024-02-21 18:35:57.988 2100 FEE 433907 20891 6024738 2024-02-21 18:35:57.988 2024-02-21 18:35:57.988 18900 TIP 433907 19449 6024741 2024-02-21 18:36:03.001 2024-02-21 18:36:03.001 1000 FEE 434159 15351 6024745 2024-02-21 18:36:42.676 2024-02-21 18:36:42.676 3100 FEE 434095 20972 6024746 2024-02-21 18:36:42.676 2024-02-21 18:36:42.676 27900 TIP 434095 19664 6024747 2024-02-21 18:36:43.226 2024-02-21 18:36:43.226 21000 FEE 434160 19843 6024748 2024-02-21 18:36:47.658 2024-02-21 18:36:47.658 3100 FEE 434106 14381 6024749 2024-02-21 18:36:47.658 2024-02-21 18:36:47.658 27900 TIP 434106 15100 6024764 2024-02-21 18:39:38.692 2024-02-21 18:39:38.692 1000 FEE 434159 708 6024765 2024-02-21 18:39:38.692 2024-02-21 18:39:38.692 9000 TIP 434159 21444 6024781 2024-02-21 18:40:04.304 2024-02-21 18:40:04.304 1000 FEE 434153 1352 6024782 2024-02-21 18:40:04.304 2024-02-21 18:40:04.304 9000 TIP 434153 718 6024790 2024-02-21 18:41:01.18 2024-02-21 18:41:01.18 1000 FEE 434166 16747 6024792 2024-02-21 18:41:23.127 2024-02-21 18:41:23.127 4000 FEE 434139 14939 6024793 2024-02-21 18:41:23.127 2024-02-21 18:41:23.127 36000 TIP 434139 21402 6024796 2024-02-21 18:42:18.472 2024-02-21 18:42:18.472 279000 FEE 434077 10280 6024797 2024-02-21 18:42:18.472 2024-02-21 18:42:18.472 2511000 TIP 434077 21556 6024798 2024-02-21 18:42:27.972 2024-02-21 18:42:27.972 1000 FEE 434168 650 6024803 2024-02-21 18:43:09.037 2024-02-21 18:43:09.037 1100 FEE 434139 16808 6024804 2024-02-21 18:43:09.037 2024-02-21 18:43:09.037 9900 TIP 434139 652 6024805 2024-02-21 18:43:17.349 2024-02-21 18:43:17.349 10000 FEE 433943 6003 6024806 2024-02-21 18:43:17.349 2024-02-21 18:43:17.349 90000 TIP 433943 14705 6024821 2024-02-21 18:45:31.281 2024-02-21 18:45:31.281 10000 FEE 434172 16954 6024829 2024-02-21 18:47:35.294 2024-02-21 18:47:35.294 1000 FEE 434113 18068 6024830 2024-02-21 18:47:35.294 2024-02-21 18:47:35.294 9000 TIP 434113 679 6024831 2024-02-21 18:47:36.446 2024-02-21 18:47:36.446 1000 FEE 434140 21437 6024832 2024-02-21 18:47:36.446 2024-02-21 18:47:36.446 9000 TIP 434140 21037 6024835 2024-02-21 18:47:56.424 2024-02-21 18:47:56.424 1000 FEE 433889 802 6024836 2024-02-21 18:47:56.424 2024-02-21 18:47:56.424 9000 TIP 433889 5522 6024843 2024-02-21 18:47:58.004 2024-02-21 18:47:58.004 1000 FEE 433889 2232 6024844 2024-02-21 18:47:58.004 2024-02-21 18:47:58.004 9000 TIP 433889 9331 6024847 2024-02-21 18:47:58.237 2024-02-21 18:47:58.237 1000 FEE 433889 1611 6024848 2024-02-21 18:47:58.237 2024-02-21 18:47:58.237 9000 TIP 433889 10862 6024851 2024-02-21 18:47:58.503 2024-02-21 18:47:58.503 1000 FEE 433889 15732 6024852 2024-02-21 18:47:58.503 2024-02-21 18:47:58.503 9000 TIP 433889 14015 6024861 2024-02-21 18:49:16.949 2024-02-21 18:49:16.949 3300 FEE 433859 19117 6024862 2024-02-21 18:49:16.949 2024-02-21 18:49:16.949 29700 TIP 433859 1611 6024863 2024-02-21 18:49:30.573 2024-02-21 18:49:30.573 3300 FEE 433942 822 6024864 2024-02-21 18:49:30.573 2024-02-21 18:49:30.573 29700 TIP 433942 21469 6024883 2024-02-21 18:50:00.618 2024-02-21 18:50:00.618 2300 FEE 432811 1039 6024884 2024-02-21 18:50:00.618 2024-02-21 18:50:00.618 20700 TIP 432811 10591 6024886 2024-02-21 18:50:09.66 2024-02-21 18:50:09.66 3300 FEE 434046 5387 6024887 2024-02-21 18:50:09.66 2024-02-21 18:50:09.66 29700 TIP 434046 18615 6024888 2024-02-21 18:50:09.942 2024-02-21 18:50:09.942 3300 FEE 434046 621 6024889 2024-02-21 18:50:09.942 2024-02-21 18:50:09.942 29700 TIP 434046 826 6024890 2024-02-21 18:50:10.011 2024-02-21 18:50:10.011 3300 FEE 434046 1549 6024891 2024-02-21 18:50:10.011 2024-02-21 18:50:10.011 29700 TIP 434046 3396 6024900 2024-02-21 18:50:31.852 2024-02-21 18:50:31.852 1000 FEE 434094 9348 6024901 2024-02-21 18:50:31.852 2024-02-21 18:50:31.852 9000 TIP 434094 20597 6024902 2024-02-21 18:50:31.994 2024-02-21 18:50:31.994 1000 FEE 434094 19303 6024903 2024-02-21 18:50:31.994 2024-02-21 18:50:31.994 9000 TIP 434094 2748 6024904 2024-02-21 18:50:32.167 2024-02-21 18:50:32.167 1000 FEE 434094 12265 6024905 2024-02-21 18:50:32.167 2024-02-21 18:50:32.167 9000 TIP 434094 21563 6024906 2024-02-21 18:50:32.312 2024-02-21 18:50:32.312 1000 FEE 434094 1208 6024487 2024-02-21 18:20:41.672 2024-02-21 18:20:41.672 37800 TIP 403677 2508 6024490 2024-02-21 18:20:51.709 2024-02-21 18:20:51.709 1000 FEE 434133 814 6024491 2024-02-21 18:20:53.645 2024-02-21 18:20:53.645 1000 FEE 434125 20180 6024492 2024-02-21 18:20:53.645 2024-02-21 18:20:53.645 9000 TIP 434125 14308 6024501 2024-02-21 18:21:03.841 2024-02-21 18:21:03.841 2100 FEE 433738 20084 6024502 2024-02-21 18:21:03.841 2024-02-21 18:21:03.841 18900 TIP 433738 17147 6024523 2024-02-21 18:22:09.804 2024-02-21 18:22:09.804 1000 FEE 434077 16912 6024524 2024-02-21 18:22:09.804 2024-02-21 18:22:09.804 9000 TIP 434077 9695 6024539 2024-02-21 18:22:18.999 2024-02-21 18:22:18.999 1000 FEE 434077 17221 6024540 2024-02-21 18:22:18.999 2024-02-21 18:22:18.999 9000 TIP 434077 9450 6024543 2024-02-21 18:22:26.554 2024-02-21 18:22:26.554 100000 FEE 434136 1596 6024551 2024-02-21 18:23:04.2 2024-02-21 18:23:04.2 1000 FEE 434077 11018 6024552 2024-02-21 18:23:04.2 2024-02-21 18:23:04.2 9000 TIP 434077 11885 6024567 2024-02-21 18:23:24.589 2024-02-21 18:23:24.589 1100 FEE 433978 20511 6024568 2024-02-21 18:23:24.589 2024-02-21 18:23:24.589 9900 TIP 433978 17817 6024572 2024-02-21 18:23:31.03 2024-02-21 18:23:31.03 100 FEE 433937 1618 6024573 2024-02-21 18:23:31.03 2024-02-21 18:23:31.03 900 TIP 433937 18177 6024578 2024-02-21 18:23:44.017 2024-02-21 18:23:44.017 2100 FEE 434122 2961 6024579 2024-02-21 18:23:44.017 2024-02-21 18:23:44.017 18900 TIP 434122 19857 6024615 2024-02-21 18:24:58.018 2024-02-21 18:24:58.018 1000 FEE 434137 6533 6024616 2024-02-21 18:24:58.018 2024-02-21 18:24:58.018 9000 TIP 434137 3461 6024621 2024-02-21 18:24:59.206 2024-02-21 18:24:59.206 1000 FEE 434137 1122 6024622 2024-02-21 18:24:59.206 2024-02-21 18:24:59.206 9000 TIP 434137 14515 6024652 2024-02-21 18:26:42.477 2024-02-21 18:26:42.477 27900 FEE 434077 21424 6024653 2024-02-21 18:26:42.477 2024-02-21 18:26:42.477 251100 TIP 434077 11522 6024660 2024-02-21 18:28:08.016 2024-02-21 18:28:08.016 0 FEE 434139 19938 6024668 2024-02-21 18:29:42.5 2024-02-21 18:29:42.5 100 FEE 434151 7097 6024669 2024-02-21 18:29:42.5 2024-02-21 18:29:42.5 900 TIP 434151 632 6024690 2024-02-21 18:33:03.023 2024-02-21 18:33:03.023 10000 FEE 433828 11820 6024691 2024-02-21 18:33:03.023 2024-02-21 18:33:03.023 90000 TIP 433828 1237 6024707 2024-02-21 18:34:49.82 2024-02-21 18:34:49.82 1000 FEE 433943 21291 6024708 2024-02-21 18:34:49.82 2024-02-21 18:34:49.82 9000 TIP 433943 2156 6024756 2024-02-21 18:37:34.692 2024-02-21 18:37:34.692 100 FEE 433647 14906 6024757 2024-02-21 18:37:34.692 2024-02-21 18:37:34.692 900 TIP 433647 19995 6024762 2024-02-21 18:39:38.166 2024-02-21 18:39:38.166 1000 FEE 434159 6137 6024763 2024-02-21 18:39:38.166 2024-02-21 18:39:38.166 9000 TIP 434159 21389 6024799 2024-02-21 18:42:30.096 2024-02-21 18:42:30.096 2100 FEE 434167 21588 6024800 2024-02-21 18:42:30.096 2024-02-21 18:42:30.096 18900 TIP 434167 635 6024807 2024-02-21 18:43:18.859 2024-02-21 18:43:18.859 2100 FEE 433943 4062 6024808 2024-02-21 18:43:18.859 2024-02-21 18:43:18.859 18900 TIP 433943 797 6024814 2024-02-21 18:44:41.269 2024-02-21 18:44:41.269 10000 FEE 434030 17800 6024815 2024-02-21 18:44:41.269 2024-02-21 18:44:41.269 90000 TIP 434030 1060 6024816 2024-02-21 18:44:54.856 2024-02-21 18:44:54.856 1000 FEE 434048 10270 6024817 2024-02-21 18:44:54.856 2024-02-21 18:44:54.856 9000 TIP 434048 20973 6024867 2024-02-21 18:49:37.958 2024-02-21 18:49:37.958 3300 FEE 433995 19189 6024868 2024-02-21 18:49:37.958 2024-02-21 18:49:37.958 29700 TIP 433995 21172 6024875 2024-02-21 18:49:59.782 2024-02-21 18:49:59.782 2300 FEE 432811 14515 6024876 2024-02-21 18:49:59.782 2024-02-21 18:49:59.782 20700 TIP 432811 19689 6024896 2024-02-21 18:50:29.914 2024-02-21 18:50:29.914 3300 FEE 434115 15719 6024897 2024-02-21 18:50:29.914 2024-02-21 18:50:29.914 29700 TIP 434115 1733 6024898 2024-02-21 18:50:30.362 2024-02-21 18:50:30.362 3300 FEE 434115 18615 6024899 2024-02-21 18:50:30.362 2024-02-21 18:50:30.362 29700 TIP 434115 20058 6024914 2024-02-21 18:50:36.451 2024-02-21 18:50:36.451 3300 FEE 434149 2233 6024915 2024-02-21 18:50:36.451 2024-02-21 18:50:36.451 29700 TIP 434149 937 6024930 2024-02-21 18:50:49.994 2024-02-21 18:50:49.994 1000 FEE 434174 21527 6024932 2024-02-21 18:51:05.079 2024-02-21 18:51:05.079 1000 FEE 428585 18378 6024933 2024-02-21 18:51:05.079 2024-02-21 18:51:05.079 9000 TIP 428585 10693 6024953 2024-02-21 18:52:33.364 2024-02-21 18:52:33.364 3300 FEE 434038 661 6024954 2024-02-21 18:52:33.364 2024-02-21 18:52:33.364 29700 TIP 434038 1552 6024966 2024-02-21 18:53:59.384 2024-02-21 18:53:59.384 1000 FEE 433942 21037 6024967 2024-02-21 18:53:59.384 2024-02-21 18:53:59.384 9000 TIP 433942 13169 6024981 2024-02-21 18:56:50.512 2024-02-21 18:56:50.512 1000 FEE 434183 11516 6025029 2024-02-21 19:04:09.138 2024-02-21 19:04:09.138 360000 FEE 433828 18897 6025030 2024-02-21 19:04:09.138 2024-02-21 19:04:09.138 3240000 TIP 433828 17411 6025057 2024-02-21 19:06:07.179 2024-02-21 19:06:07.179 100000 FEE 434199 2749 6025058 2024-02-21 19:06:47.826 2024-02-21 19:06:47.826 1000 FEE 434200 692 6025068 2024-02-21 19:07:24.49 2024-02-21 19:07:24.49 200 FEE 433943 21090 6025069 2024-02-21 19:07:24.49 2024-02-21 19:07:24.49 1800 TIP 433943 21575 6025073 2024-02-21 19:08:02.33 2024-02-21 19:08:02.33 2100 FEE 433943 2460 6025074 2024-02-21 19:08:02.33 2024-02-21 19:08:02.33 18900 TIP 433943 6687 6025102 2024-02-21 19:10:05.437 2024-02-21 19:10:05.437 2100 FEE 303421 21088 6025103 2024-02-21 19:10:05.437 2024-02-21 19:10:05.437 18900 TIP 303421 9529 6025126 2024-02-21 19:14:28.486 2024-02-21 19:14:28.486 1000 FEE 434208 20026 6025174 2024-02-21 19:19:55.585 2024-02-21 19:19:55.585 1000 FEE 434192 18525 6025175 2024-02-21 19:19:55.585 2024-02-21 19:19:55.585 9000 TIP 434192 8168 6025182 2024-02-21 19:19:56.272 2024-02-21 19:19:56.272 1000 FEE 434192 5387 6025183 2024-02-21 19:19:56.272 2024-02-21 19:19:56.272 9000 TIP 434192 1488 6025196 2024-02-21 19:20:59.654 2024-02-21 19:20:59.654 2100 FEE 433849 1105 6025197 2024-02-21 19:20:59.654 2024-02-21 19:20:59.654 18900 TIP 433849 10821 6025201 2024-02-21 19:21:09.867 2024-02-21 19:21:09.867 1000 FEE 434218 19381 6025208 2024-02-21 19:21:53.63 2024-02-21 19:21:53.63 1000 FEE 434219 18174 6025214 2024-02-21 19:22:04.546 2024-02-21 19:22:04.546 2100 FEE 434139 987 6025215 2024-02-21 19:22:04.546 2024-02-21 19:22:04.546 18900 TIP 434139 4313 6025251 2024-02-21 19:26:16.657 2024-02-21 19:26:16.657 2100 FEE 434212 7809 6025252 2024-02-21 19:26:16.657 2024-02-21 19:26:16.657 18900 TIP 434212 1136 6025258 2024-02-21 19:27:26.949 2024-02-21 19:27:26.949 1000 FEE 434222 14688 6025263 2024-02-21 19:27:34.684 2024-02-21 19:27:34.684 7700 FEE 433943 9863 6025264 2024-02-21 19:27:34.684 2024-02-21 19:27:34.684 69300 TIP 433943 4250 6025279 2024-02-21 19:30:07.578 2024-02-21 19:30:07.578 100 FEE 434046 9844 6025280 2024-02-21 19:30:07.578 2024-02-21 19:30:07.578 900 TIP 434046 9833 6025306 2024-02-21 19:32:53.285 2024-02-21 19:32:53.285 2100 FEE 434223 13878 6025307 2024-02-21 19:32:53.285 2024-02-21 19:32:53.285 18900 TIP 434223 20464 6025315 2024-02-21 19:33:18.432 2024-02-21 19:33:18.432 100 FEE 432943 12562 6025316 2024-02-21 19:33:18.432 2024-02-21 19:33:18.432 900 TIP 432943 6602 6025338 2024-02-21 19:34:16.499 2024-02-21 19:34:16.499 100 FEE 433537 2844 6025339 2024-02-21 19:34:16.499 2024-02-21 19:34:16.499 900 TIP 433537 17541 6025426 2024-02-21 19:39:06.739 2024-02-21 19:39:06.739 1000 FEE 434235 14280 6025478 2024-02-21 19:42:39.508 2024-02-21 19:42:39.508 10000 FEE 434027 963 6025479 2024-02-21 19:42:39.508 2024-02-21 19:42:39.508 90000 TIP 434027 7395 6025486 2024-02-21 19:43:31.372 2024-02-21 19:43:31.372 100000 FEE 434241 2111 6025490 2024-02-21 19:44:33.124 2024-02-21 19:44:33.124 100 FEE 433156 19322 6025491 2024-02-21 19:44:33.124 2024-02-21 19:44:33.124 900 TIP 433156 9418 6025499 2024-02-21 19:46:20.225 2024-02-21 19:46:20.225 1000 FEE 434244 642 6025539 2024-02-21 19:51:10.186 2024-02-21 19:51:10.186 100 FEE 434148 3461 6025540 2024-02-21 19:51:10.186 2024-02-21 19:51:10.186 900 TIP 434148 2543 6025545 2024-02-21 19:52:27.41 2024-02-21 19:52:27.41 100 FEE 434242 20972 6025546 2024-02-21 19:52:27.41 2024-02-21 19:52:27.41 900 TIP 434242 1180 6024584 2024-02-21 18:24:41.68 2024-02-21 18:24:41.68 700 FEE 434139 18154 6024585 2024-02-21 18:24:41.68 2024-02-21 18:24:41.68 6300 TIP 434139 15266 6024590 2024-02-21 18:24:42.817 2024-02-21 18:24:42.817 1100 FEE 433594 13599 6024591 2024-02-21 18:24:42.817 2024-02-21 18:24:42.817 9900 TIP 433594 14295 6024604 2024-02-21 18:24:52.627 2024-02-21 18:24:52.627 1100 FEE 433886 17050 6024605 2024-02-21 18:24:52.627 2024-02-21 18:24:52.627 9900 TIP 433886 9099 6024630 2024-02-21 18:25:15.097 2024-02-21 18:25:15.097 1000 FEE 434118 9363 6024631 2024-02-21 18:25:15.097 2024-02-21 18:25:15.097 9000 TIP 434118 18690 6024632 2024-02-21 18:25:15.494 2024-02-21 18:25:15.494 1000 FEE 434118 919 6024633 2024-02-21 18:25:15.494 2024-02-21 18:25:15.494 9000 TIP 434118 4128 6024641 2024-02-21 18:25:37.026 2024-02-21 18:25:37.026 2100 FEE 433799 6229 6024642 2024-02-21 18:25:37.026 2024-02-21 18:25:37.026 18900 TIP 433799 4314 6024647 2024-02-21 18:26:29.973 2024-02-21 18:26:29.973 1000 FEE 434148 20840 6024664 2024-02-21 18:28:38.25 2024-02-21 18:28:38.25 1700 FEE 434104 19854 6024665 2024-02-21 18:28:38.25 2024-02-21 18:28:38.25 15300 TIP 434104 16769 6024684 2024-02-21 18:31:05.194 2024-02-21 18:31:05.194 200 FEE 434139 20464 6024685 2024-02-21 18:31:05.194 2024-02-21 18:31:05.194 1800 TIP 434139 2514 6024725 2024-02-21 18:35:39.561 2024-02-21 18:35:39.561 2100 FEE 433829 13843 6024726 2024-02-21 18:35:39.561 2024-02-21 18:35:39.561 18900 TIP 433829 15148 6024727 2024-02-21 18:35:41.245 2024-02-21 18:35:41.245 7700 FEE 433594 16336 6024728 2024-02-21 18:35:41.245 2024-02-21 18:35:41.245 69300 TIP 433594 2039 6024752 2024-02-21 18:37:14.676 2024-02-21 18:37:14.676 3100 FEE 434146 13903 6024753 2024-02-21 18:37:14.676 2024-02-21 18:37:14.676 27900 TIP 434146 13544 6024775 2024-02-21 18:40:02.936 2024-02-21 18:40:02.936 1000 FEE 434153 12744 6024776 2024-02-21 18:40:02.936 2024-02-21 18:40:02.936 9000 TIP 434153 14906 6024801 2024-02-21 18:42:30.727 2024-02-21 18:42:30.727 1000 FEE 434169 4395 6024809 2024-02-21 18:43:21.872 2024-02-21 18:43:21.872 1000 FEE 434170 21271 6024812 2024-02-21 18:44:13.853 2024-02-21 18:44:13.853 1000 FEE 433961 5444 6024813 2024-02-21 18:44:13.853 2024-02-21 18:44:13.853 9000 TIP 433961 19929 6024822 2024-02-21 18:45:40.386 2024-02-21 18:45:40.386 2100 FEE 434169 18357 6024823 2024-02-21 18:45:40.386 2024-02-21 18:45:40.386 18900 TIP 434169 928 6024826 2024-02-21 18:47:03.966 2024-02-21 18:47:03.966 2100 FEE 434173 1552 6024827 2024-02-21 18:47:03.966 2024-02-21 18:47:03.966 18900 TIP 434173 18116 6024837 2024-02-21 18:47:56.953 2024-02-21 18:47:56.953 1000 FEE 433889 20180 6024838 2024-02-21 18:47:56.953 2024-02-21 18:47:56.953 9000 TIP 433889 1124 6024839 2024-02-21 18:47:57.736 2024-02-21 18:47:57.736 1000 FEE 433889 1135 6024840 2024-02-21 18:47:57.736 2024-02-21 18:47:57.736 9000 TIP 433889 4250 6024841 2024-02-21 18:47:57.869 2024-02-21 18:47:57.869 1000 FEE 433889 18241 6024842 2024-02-21 18:47:57.869 2024-02-21 18:47:57.869 9000 TIP 433889 1713 6024849 2024-02-21 18:47:58.371 2024-02-21 18:47:58.371 1000 FEE 433889 18154 6024850 2024-02-21 18:47:58.371 2024-02-21 18:47:58.371 9000 TIP 433889 9418 6024855 2024-02-21 18:47:59.479 2024-02-21 18:47:59.479 1000 FEE 433889 15243 6024856 2024-02-21 18:47:59.479 2024-02-21 18:47:59.479 9000 TIP 433889 7395 6024858 2024-02-21 18:48:57.176 2024-02-21 18:48:57.176 3300 FEE 433851 16042 6024859 2024-02-21 18:48:57.176 2024-02-21 18:48:57.176 29700 TIP 433851 21620 6024873 2024-02-21 18:49:59.617 2024-02-21 18:49:59.617 2300 FEE 432811 16410 6024874 2024-02-21 18:49:59.617 2024-02-21 18:49:59.617 20700 TIP 432811 3417 6024881 2024-02-21 18:50:00.37 2024-02-21 18:50:00.37 2300 FEE 432811 21386 6024882 2024-02-21 18:50:00.37 2024-02-21 18:50:00.37 20700 TIP 432811 9354 6024892 2024-02-21 18:50:19.674 2024-02-21 18:50:19.674 2100 FEE 434038 12122 6024893 2024-02-21 18:50:19.674 2024-02-21 18:50:19.674 18900 TIP 434038 797 6024910 2024-02-21 18:50:35.901 2024-02-21 18:50:35.901 1000 FEE 434158 5961 6024911 2024-02-21 18:50:35.901 2024-02-21 18:50:35.901 9000 TIP 434158 14906 6024928 2024-02-21 18:50:39.113 2024-02-21 18:50:39.113 1000 FEE 434171 2111 6024929 2024-02-21 18:50:39.113 2024-02-21 18:50:39.113 9000 TIP 434171 9426 6024951 2024-02-21 18:52:33.236 2024-02-21 18:52:33.236 3300 FEE 434038 1784 6024952 2024-02-21 18:52:33.236 2024-02-21 18:52:33.236 29700 TIP 434038 17046 6024961 2024-02-21 18:53:16.664 2024-02-21 18:53:16.664 1000 FEE 434178 9529 6024974 2024-02-21 18:55:13.218 2024-02-21 18:55:13.218 1000 FEE 434180 5173 6024977 2024-02-21 18:56:14.53 2024-02-21 18:56:14.53 1000 FEE 434182 14122 6024990 2024-02-21 18:57:22.964 2024-02-21 18:57:22.964 1000 FEE 434185 18265 6024997 2024-02-21 18:59:37.539 2024-02-21 18:59:37.539 1000 FEE 434025 1310 6024998 2024-02-21 18:59:37.539 2024-02-21 18:59:37.539 9000 TIP 434025 2042 6025021 2024-02-21 19:03:32.822 2024-02-21 19:03:32.822 1000 FEE 434192 17148 6025022 2024-02-21 19:03:32.822 2024-02-21 19:03:32.822 9000 TIP 434192 1713 6025025 2024-02-21 19:04:07.985 2024-02-21 19:04:07.985 4000 FEE 433828 9844 6025026 2024-02-21 19:04:07.985 2024-02-21 19:04:07.985 36000 TIP 433828 4083 6025031 2024-02-21 19:04:17.151 2024-02-21 19:04:17.151 1600 FEE 434195 11477 6025032 2024-02-21 19:04:17.151 2024-02-21 19:04:17.151 14400 TIP 434195 13204 6025048 2024-02-21 19:05:25.803 2024-02-21 19:05:25.803 800 FEE 434141 956 6025049 2024-02-21 19:05:25.803 2024-02-21 19:05:25.803 7200 TIP 434141 18017 6025060 2024-02-21 19:07:19.327 2024-02-21 19:07:19.327 1000 FEE 434191 20464 6025061 2024-02-21 19:07:19.327 2024-02-21 19:07:19.327 9000 TIP 434191 15049 6025091 2024-02-21 19:09:28.333 2024-02-21 19:09:28.333 1000 FEE 434202 13763 6025092 2024-02-21 19:09:32.723 2024-02-21 19:09:32.723 2100 FEE 434092 5794 6025093 2024-02-21 19:09:32.723 2024-02-21 19:09:32.723 18900 TIP 434092 18714 6025165 2024-02-21 19:18:08.677 2024-02-21 19:18:08.677 0 FEE 434209 21079 6025170 2024-02-21 19:19:55.216 2024-02-21 19:19:55.216 1000 FEE 434192 15549 6025171 2024-02-21 19:19:55.216 2024-02-21 19:19:55.216 9000 TIP 434192 4250 6025184 2024-02-21 19:19:56.809 2024-02-21 19:19:56.809 3000 FEE 434124 15180 6025185 2024-02-21 19:19:56.809 2024-02-21 19:19:56.809 27000 TIP 434124 21514 6025194 2024-02-21 19:20:34.217 2024-02-21 19:20:34.217 1000 FEE 434141 4074 6025195 2024-02-21 19:20:34.217 2024-02-21 19:20:34.217 9000 TIP 434141 21417 6025198 2024-02-21 19:21:00.462 2024-02-21 19:21:00.462 3200 FEE 433833 9184 6025199 2024-02-21 19:21:00.462 2024-02-21 19:21:00.462 28800 TIP 433833 8326 6025276 2024-02-21 19:29:59.769 2024-02-21 19:29:59.769 100 FEE 433942 9906 6025277 2024-02-21 19:29:59.769 2024-02-21 19:29:59.769 900 TIP 433942 21021 6025283 2024-02-21 19:30:29.319 2024-02-21 19:30:29.319 8300 FEE 434139 4654 6025284 2024-02-21 19:30:29.319 2024-02-21 19:30:29.319 74700 TIP 434139 14295 6025287 2024-02-21 19:30:31.983 2024-02-21 19:30:31.983 100 FEE 434149 5758 6025288 2024-02-21 19:30:31.983 2024-02-21 19:30:31.983 900 TIP 434149 20889 6025319 2024-02-21 19:33:24.252 2024-02-21 19:33:24.252 100 FEE 433355 2735 6025320 2024-02-21 19:33:24.252 2024-02-21 19:33:24.252 900 TIP 433355 20963 6025327 2024-02-21 19:33:35.756 2024-02-21 19:33:35.756 100 FEE 432899 15938 6025328 2024-02-21 19:33:35.756 2024-02-21 19:33:35.756 900 TIP 432899 660 6025331 2024-02-21 19:34:01.286 2024-02-21 19:34:01.286 100 FEE 433943 21609 6025332 2024-02-21 19:34:01.286 2024-02-21 19:34:01.286 900 TIP 433943 10981 6025341 2024-02-21 19:34:24.096 2024-02-21 19:34:24.096 1000 FEE 434231 15045 6025356 2024-02-21 19:34:31.799 2024-02-21 19:34:31.799 100 FEE 434026 9418 6025357 2024-02-21 19:34:31.799 2024-02-21 19:34:31.799 900 TIP 434026 4323 6025366 2024-02-21 19:34:36.737 2024-02-21 19:34:36.737 100 FEE 434026 15146 6025367 2024-02-21 19:34:36.737 2024-02-21 19:34:36.737 900 TIP 434026 2213 6025379 2024-02-21 19:35:52.626 2024-02-21 19:35:52.626 1100 FEE 434097 889 6025380 2024-02-21 19:35:52.626 2024-02-21 19:35:52.626 9900 TIP 434097 20218 6025393 2024-02-21 19:35:55.894 2024-02-21 19:35:55.894 1100 FEE 434097 21603 6025394 2024-02-21 19:35:55.894 2024-02-21 19:35:55.894 9900 TIP 434097 1180 6025429 2024-02-21 19:39:27.675 2024-02-21 19:39:27.675 100 FEE 428914 18984 6024624 2024-02-21 18:24:59.543 2024-02-21 18:24:59.543 9000 TIP 434137 9874 6024670 2024-02-21 18:29:42.715 2024-02-21 18:29:42.715 100 FEE 434151 21416 6024671 2024-02-21 18:29:42.715 2024-02-21 18:29:42.715 900 TIP 434151 9418 6024672 2024-02-21 18:29:42.919 2024-02-21 18:29:42.919 100 FEE 434151 1307 6024673 2024-02-21 18:29:42.919 2024-02-21 18:29:42.919 900 TIP 434151 980 6024716 2024-02-21 18:35:16.975 2024-02-21 18:35:16.975 2100 FEE 434146 21588 6024717 2024-02-21 18:35:16.975 2024-02-21 18:35:16.975 18900 TIP 434146 20201 6024735 2024-02-21 18:35:53.014 2024-02-21 18:35:53.014 2100 FEE 433855 3456 6024736 2024-02-21 18:35:53.014 2024-02-21 18:35:53.014 18900 TIP 433855 18736 6024766 2024-02-21 18:39:39.173 2024-02-21 18:39:39.173 1000 FEE 434159 7772 6024767 2024-02-21 18:39:39.173 2024-02-21 18:39:39.173 9000 TIP 434159 897 6024768 2024-02-21 18:39:39.609 2024-02-21 18:39:39.609 1000 FEE 434162 10549 6024773 2024-02-21 18:40:02.435 2024-02-21 18:40:02.435 1000 FEE 434153 657 6024774 2024-02-21 18:40:02.435 2024-02-21 18:40:02.435 9000 TIP 434153 6393 6024777 2024-02-21 18:40:03.341 2024-02-21 18:40:03.341 1000 FEE 434153 21248 6024778 2024-02-21 18:40:03.341 2024-02-21 18:40:03.341 9000 TIP 434153 5825 6024779 2024-02-21 18:40:03.789 2024-02-21 18:40:03.789 1000 FEE 434153 16670 6024780 2024-02-21 18:40:03.789 2024-02-21 18:40:03.789 9000 TIP 434153 17148 6024789 2024-02-21 18:40:57.332 2024-02-21 18:40:57.332 1000 FEE 434165 16356 6024794 2024-02-21 18:41:42.167 2024-02-21 18:41:42.167 1000 FEE 434167 4167 6024824 2024-02-21 18:46:03.542 2024-02-21 18:46:03.542 1000 FEE 434173 17217 6024865 2024-02-21 18:49:37.78 2024-02-21 18:49:37.78 3300 FEE 433995 21026 6024866 2024-02-21 18:49:37.78 2024-02-21 18:49:37.78 29700 TIP 433995 634 6024869 2024-02-21 18:49:38.61 2024-02-21 18:49:38.61 3300 FEE 433995 19309 6024870 2024-02-21 18:49:38.61 2024-02-21 18:49:38.61 29700 TIP 433995 9352 6024871 2024-02-21 18:49:59.412 2024-02-21 18:49:59.412 2300 FEE 432811 8472 6024872 2024-02-21 18:49:59.412 2024-02-21 18:49:59.412 20700 TIP 432811 20596 6024877 2024-02-21 18:50:00.001 2024-02-21 18:50:00.001 2300 FEE 432811 21047 6024878 2024-02-21 18:50:00.001 2024-02-21 18:50:00.001 20700 TIP 432811 9985 6024920 2024-02-21 18:50:38.512 2024-02-21 18:50:38.512 1000 FEE 434171 8168 6024921 2024-02-21 18:50:38.512 2024-02-21 18:50:38.512 9000 TIP 434171 18690 6024924 2024-02-21 18:50:39.039 2024-02-21 18:50:39.039 1000 FEE 434171 21609 6024925 2024-02-21 18:50:39.039 2024-02-21 18:50:39.039 9000 TIP 434171 14950 6024926 2024-02-21 18:50:39.057 2024-02-21 18:50:39.057 1000 FEE 434171 9982 6024927 2024-02-21 18:50:39.057 2024-02-21 18:50:39.057 9000 TIP 434171 17526 6024939 2024-02-21 18:52:08.243 2024-02-21 18:52:08.243 4000 FEE 432553 18178 6024940 2024-02-21 18:52:08.243 2024-02-21 18:52:08.243 36000 TIP 432553 3979 6024947 2024-02-21 18:52:25.631 2024-02-21 18:52:25.631 3300 FEE 433760 21369 6024948 2024-02-21 18:52:25.631 2024-02-21 18:52:25.631 29700 TIP 433760 21402 6024959 2024-02-21 18:53:12.54 2024-02-21 18:53:12.54 1000 FEE 434013 2077 6024960 2024-02-21 18:53:12.54 2024-02-21 18:53:12.54 9000 TIP 434013 20231 6024983 2024-02-21 18:57:00.334 2024-02-21 18:57:00.334 1100 FEE 433886 15703 6024984 2024-02-21 18:57:00.334 2024-02-21 18:57:00.334 9900 TIP 433886 21140 6024991 2024-02-21 18:57:27.512 2024-02-21 18:57:27.512 4200 FEE 434178 10979 6024992 2024-02-21 18:57:27.512 2024-02-21 18:57:27.512 37800 TIP 434178 13921 6025020 2024-02-21 19:03:26.074 2024-02-21 19:03:26.074 100000 FEE 434195 14818 6025023 2024-02-21 19:03:52.625 2024-02-21 19:03:52.625 1000 FEE 434196 21571 6025027 2024-02-21 19:04:08.586 2024-02-21 19:04:08.586 36000 FEE 433828 1836 6025028 2024-02-21 19:04:08.586 2024-02-21 19:04:08.586 324000 TIP 433828 21138 6025037 2024-02-21 19:04:18.474 2024-02-21 19:04:18.474 2300 FEE 433934 20245 6025038 2024-02-21 19:04:18.474 2024-02-21 19:04:18.474 20700 TIP 433934 18641 6025066 2024-02-21 19:07:24.017 2024-02-21 19:07:24.017 200 FEE 433943 5308 6025067 2024-02-21 19:07:24.017 2024-02-21 19:07:24.017 1800 TIP 433943 13753 6025094 2024-02-21 19:09:43.8 2024-02-21 19:09:43.8 2300 FEE 434154 21275 6025095 2024-02-21 19:09:43.8 2024-02-21 19:09:43.8 20700 TIP 434154 2233 6025110 2024-02-21 19:12:06.949 2024-02-21 19:12:06.949 1000 FEE 434206 1394 6025113 2024-02-21 19:12:31.363 2024-02-21 19:12:31.363 3200 FEE 434092 2722 6025114 2024-02-21 19:12:31.363 2024-02-21 19:12:31.363 28800 TIP 434092 19576 6025115 2024-02-21 19:12:59.868 2024-02-21 19:12:59.868 3300 FEE 434030 14990 6025116 2024-02-21 19:12:59.868 2024-02-21 19:12:59.868 29700 TIP 434030 673 6025127 2024-02-21 19:14:44.381 2024-02-21 19:14:44.381 1000 FEE 434209 16267 6025131 2024-02-21 19:14:47.217 2024-02-21 19:14:47.217 900 FEE 434160 7847 6025132 2024-02-21 19:14:47.217 2024-02-21 19:14:47.217 8100 TIP 434160 1394 6025133 2024-02-21 19:15:02.208 2024-02-21 19:15:02.208 1000 FEE 433943 14260 6025134 2024-02-21 19:15:02.208 2024-02-21 19:15:02.208 9000 TIP 433943 11789 6025141 2024-02-21 19:15:24.056 2024-02-21 19:15:24.056 900 FEE 434172 8726 6025142 2024-02-21 19:15:24.056 2024-02-21 19:15:24.056 8100 TIP 434172 11885 6025192 2024-02-21 19:20:34.044 2024-02-21 19:20:34.044 1000 FEE 434141 13055 6025193 2024-02-21 19:20:34.044 2024-02-21 19:20:34.044 9000 TIP 434141 4798 6025204 2024-02-21 19:21:26.033 2024-02-21 19:21:26.033 2100 FEE 433833 15161 6025205 2024-02-21 19:21:26.033 2024-02-21 19:21:26.033 18900 TIP 433833 8998 6025209 2024-02-21 19:22:03.589 2024-02-21 19:22:03.589 2100 FEE 434139 19309 6025210 2024-02-21 19:22:03.589 2024-02-21 19:22:03.589 18900 TIP 434139 11458 6025222 2024-02-21 19:23:12.468 2024-02-21 19:23:12.468 2100 FEE 433268 18139 6025223 2024-02-21 19:23:12.468 2024-02-21 19:23:12.468 18900 TIP 433268 17082 6025235 2024-02-21 19:25:49.41 2024-02-21 19:25:49.41 500 FEE 433943 12139 6025236 2024-02-21 19:25:49.41 2024-02-21 19:25:49.41 4500 TIP 433943 18601 6025243 2024-02-21 19:26:15.353 2024-02-21 19:26:15.353 2100 FEE 434212 1983 6025244 2024-02-21 19:26:15.353 2024-02-21 19:26:15.353 18900 TIP 434212 19103 6025265 2024-02-21 19:27:35.098 2024-02-21 19:27:35.098 15400 FEE 433943 20586 6025266 2024-02-21 19:27:35.098 2024-02-21 19:27:35.098 138600 TIP 433943 2529 6025269 2024-02-21 19:28:23.61 2024-02-21 19:28:23.61 10000 FEE 434223 13174 6025275 2024-02-21 19:29:59.518 2024-02-21 19:29:59.518 1000 FEE 434224 20133 6025281 2024-02-21 19:30:29.001 2024-02-21 19:30:29.001 8300 FEE 434139 2703 6025282 2024-02-21 19:30:29.001 2024-02-21 19:30:29.001 74700 TIP 434139 2326 6025298 2024-02-21 19:32:13.822 2024-02-21 19:32:13.822 100 FEE 433943 1094 6025299 2024-02-21 19:32:13.822 2024-02-21 19:32:13.822 900 TIP 433943 5495 6025304 2024-02-21 19:32:49.852 2024-02-21 19:32:49.852 2100 FEE 434160 6164 6025305 2024-02-21 19:32:49.852 2024-02-21 19:32:49.852 18900 TIP 434160 1136 6025308 2024-02-21 19:33:00.119 2024-02-21 19:33:00.119 8300 FEE 434141 21343 6025309 2024-02-21 19:33:00.119 2024-02-21 19:33:00.119 74700 TIP 434141 14381 6025326 2024-02-21 19:33:35.008 2024-02-21 19:33:35.008 1000 FEE 434230 985 6025344 2024-02-21 19:34:30.759 2024-02-21 19:34:30.759 100 FEE 434026 17693 6025345 2024-02-21 19:34:30.759 2024-02-21 19:34:30.759 900 TIP 434026 20015 6025346 2024-02-21 19:34:30.908 2024-02-21 19:34:30.908 100 FEE 434026 9341 6025347 2024-02-21 19:34:30.908 2024-02-21 19:34:30.908 900 TIP 434026 706 6025352 2024-02-21 19:34:31.48 2024-02-21 19:34:31.48 100 FEE 434026 19952 6025353 2024-02-21 19:34:31.48 2024-02-21 19:34:31.48 900 TIP 434026 641 6025364 2024-02-21 19:34:35.433 2024-02-21 19:34:35.433 100 FEE 434026 2196 6025365 2024-02-21 19:34:35.433 2024-02-21 19:34:35.433 900 TIP 434026 3439 6025376 2024-02-21 19:35:43.148 2024-02-21 19:35:43.148 100 FEE 431844 2952 6025377 2024-02-21 19:35:43.148 2024-02-21 19:35:43.148 900 TIP 431844 20302 6025389 2024-02-21 19:35:54.721 2024-02-21 19:35:54.721 2200 FEE 434097 16970 6025390 2024-02-21 19:35:54.721 2024-02-21 19:35:54.721 19800 TIP 434097 17212 6025399 2024-02-21 19:35:59.692 2024-02-21 19:35:59.692 5000 FEE 434222 12057 6025400 2024-02-21 19:35:59.692 2024-02-21 19:35:59.692 45000 TIP 434222 8287 6025401 2024-02-21 19:35:59.889 2024-02-21 19:35:59.889 1100 FEE 434097 10112 6024907 2024-02-21 18:50:32.312 2024-02-21 18:50:32.312 9000 TIP 434094 18984 6024922 2024-02-21 18:50:38.633 2024-02-21 18:50:38.633 1000 FEE 434171 21578 6024923 2024-02-21 18:50:38.633 2024-02-21 18:50:38.633 9000 TIP 434171 12291 6024936 2024-02-21 18:51:20.04 2024-02-21 18:51:20.04 1000 FEE 434175 11263 6024937 2024-02-21 18:52:00.896 2024-02-21 18:52:00.896 1000 FEE 434176 18412 6024943 2024-02-21 18:52:21.849 2024-02-21 18:52:21.849 900 FEE 434045 20730 6024944 2024-02-21 18:52:21.849 2024-02-21 18:52:21.849 8100 TIP 434045 20306 6024945 2024-02-21 18:52:22.27 2024-02-21 18:52:22.27 9000 FEE 434045 20738 6024946 2024-02-21 18:52:22.27 2024-02-21 18:52:22.27 81000 TIP 434045 19296 6024962 2024-02-21 18:53:26.916 2024-02-21 18:53:26.916 1000 FEE 433844 18667 6024963 2024-02-21 18:53:26.916 2024-02-21 18:53:26.916 9000 TIP 433844 18380 6024965 2024-02-21 18:53:52.616 2024-02-21 18:53:52.616 1000 FEE 434179 8648 6024971 2024-02-21 18:54:29.949 2024-02-21 18:54:29.949 1000 FEE 433995 749 6024972 2024-02-21 18:54:29.949 2024-02-21 18:54:29.949 9000 TIP 433995 18500 6024995 2024-02-21 18:58:31.234 2024-02-21 18:58:31.234 5000 DONT_LIKE_THIS 433984 1825 6025007 2024-02-21 19:01:03.936 2024-02-21 19:01:03.936 1000 FEE 433796 19462 6025008 2024-02-21 19:01:03.936 2024-02-21 19:01:03.936 9000 TIP 433796 18635 6025012 2024-02-21 19:02:14.178 2024-02-21 19:02:14.178 1000 FEE 434190 16347 6025013 2024-02-21 19:02:15.546 2024-02-21 19:02:15.546 700 FEE 433990 20190 6025014 2024-02-21 19:02:15.546 2024-02-21 19:02:15.546 6300 TIP 433990 21180 6025015 2024-02-21 19:02:40.569 2024-02-21 19:02:40.569 1000 FEE 434191 4521 6025041 2024-02-21 19:04:18.823 2024-02-21 19:04:18.823 2300 FEE 433934 21140 6025042 2024-02-21 19:04:18.823 2024-02-21 19:04:18.823 20700 TIP 433934 15806 6025044 2024-02-21 19:04:48.984 2024-02-21 19:04:48.984 1000 FEE 433943 18842 6025045 2024-02-21 19:04:48.984 2024-02-21 19:04:48.984 9000 TIP 433943 9336 6025050 2024-02-21 19:05:37.924 2024-02-21 19:05:37.924 200 FEE 434195 1632 6025051 2024-02-21 19:05:37.924 2024-02-21 19:05:37.924 1800 TIP 434195 2519 6025062 2024-02-21 19:07:19.535 2024-02-21 19:07:19.535 1000 FEE 434191 21172 6025063 2024-02-21 19:07:19.535 2024-02-21 19:07:19.535 9000 TIP 434191 19005 6025072 2024-02-21 19:08:01.716 2024-02-21 19:08:01.716 1000 FEE 434201 1298 6025096 2024-02-21 19:09:45.973 2024-02-21 19:09:45.973 2300 FEE 434154 20353 6025097 2024-02-21 19:09:45.973 2024-02-21 19:09:45.973 20700 TIP 434154 1959 6025104 2024-02-21 19:10:07.153 2024-02-21 19:10:07.153 2100 FEE 303441 14080 6025105 2024-02-21 19:10:07.153 2024-02-21 19:10:07.153 18900 TIP 303441 5425 6025106 2024-02-21 19:10:51.13 2024-02-21 19:10:51.13 1000 FEE 434204 9916 6025120 2024-02-21 19:13:07.601 2024-02-21 19:13:07.601 1000 FEE 433889 20452 6025121 2024-02-21 19:13:07.601 2024-02-21 19:13:07.601 9000 TIP 433889 18945 6025162 2024-02-21 19:17:58.658 2024-02-21 19:17:58.658 1000 FEE 434214 12160 6025176 2024-02-21 19:19:55.761 2024-02-21 19:19:55.761 1000 FEE 434192 2123 6025177 2024-02-21 19:19:55.761 2024-02-21 19:19:55.761 9000 TIP 434192 10094 6025178 2024-02-21 19:19:55.937 2024-02-21 19:19:55.937 1000 FEE 434192 21344 6025179 2024-02-21 19:19:55.937 2024-02-21 19:19:55.937 9000 TIP 434192 19930 6025211 2024-02-21 19:22:03.795 2024-02-21 19:22:03.795 2100 FEE 434139 20470 6025212 2024-02-21 19:22:03.795 2024-02-21 19:22:03.795 18900 TIP 434139 10484 6025228 2024-02-21 19:23:52.597 2024-02-21 19:23:52.597 3300 FEE 433978 17392 6025229 2024-02-21 19:23:52.597 2024-02-21 19:23:52.597 29700 TIP 433978 3717 6025237 2024-02-21 19:25:57.609 2024-02-21 19:25:57.609 1000 FEE 434221 21430 6025238 2024-02-21 19:26:00.531 2024-02-21 19:26:00.531 500 FEE 433943 19813 6025239 2024-02-21 19:26:00.531 2024-02-21 19:26:00.531 4500 TIP 433943 2577 6025241 2024-02-21 19:26:09.108 2024-02-21 19:26:09.108 500 FEE 433844 13553 6025242 2024-02-21 19:26:09.108 2024-02-21 19:26:09.108 4500 TIP 433844 8926 6025247 2024-02-21 19:26:15.713 2024-02-21 19:26:15.713 7100 FEE 434218 16176 6025248 2024-02-21 19:26:15.713 2024-02-21 19:26:15.713 63900 TIP 434218 2327 6025255 2024-02-21 19:27:00.83 2024-02-21 19:27:00.83 3200 FEE 433740 19664 6025256 2024-02-21 19:27:00.83 2024-02-21 19:27:00.83 28800 TIP 433740 10311 6025270 2024-02-21 19:28:34.026 2024-02-21 19:28:34.026 1000 FEE 434195 21357 6025271 2024-02-21 19:28:34.026 2024-02-21 19:28:34.026 9000 TIP 434195 21493 6025310 2024-02-21 19:33:00.362 2024-02-21 19:33:00.362 8300 FEE 434141 21026 6025311 2024-02-21 19:33:00.362 2024-02-21 19:33:00.362 74700 TIP 434141 16440 6025350 2024-02-21 19:34:31.343 2024-02-21 19:34:31.343 100 FEE 434026 2514 6025351 2024-02-21 19:34:31.343 2024-02-21 19:34:31.343 900 TIP 434026 636 6025360 2024-02-21 19:34:32.141 2024-02-21 19:34:32.141 100 FEE 434026 5499 6025361 2024-02-21 19:34:32.141 2024-02-21 19:34:32.141 900 TIP 434026 21218 6025391 2024-02-21 19:35:55.289 2024-02-21 19:35:55.289 1100 FEE 434097 704 6025392 2024-02-21 19:35:55.289 2024-02-21 19:35:55.289 9900 TIP 434097 11698 6025397 2024-02-21 19:35:57.028 2024-02-21 19:35:57.028 1100 FEE 434097 6573 6025398 2024-02-21 19:35:57.028 2024-02-21 19:35:57.028 9900 TIP 434097 21178 6025408 2024-02-21 19:36:13.264 2024-02-21 19:36:13.264 100 FEE 431854 1836 6025409 2024-02-21 19:36:13.264 2024-02-21 19:36:13.264 900 TIP 431854 1213 6025413 2024-02-21 19:36:28.663 2024-02-21 19:36:28.663 100 FEE 432032 17001 6025414 2024-02-21 19:36:28.663 2024-02-21 19:36:28.663 900 TIP 432032 17976 6025455 2024-02-21 19:41:01.818 2024-02-21 19:41:01.818 100 FEE 434177 6594 6025456 2024-02-21 19:41:01.818 2024-02-21 19:41:01.818 900 TIP 434177 21342 6025466 2024-02-21 19:41:04.787 2024-02-21 19:41:04.787 100 FEE 434177 21400 6025467 2024-02-21 19:41:04.787 2024-02-21 19:41:04.787 900 TIP 434177 19335 6025475 2024-02-21 19:42:28.244 2024-02-21 19:42:28.244 1000 FEE 434239 976 6025500 2024-02-21 19:46:23.898 2024-02-21 19:46:23.898 2100 FEE 434236 17171 6025501 2024-02-21 19:46:23.898 2024-02-21 19:46:23.898 18900 TIP 434236 16447 6025514 2024-02-21 19:49:53.937 2024-02-21 19:49:53.937 0 FEE 434242 1047 6025562 2024-02-21 19:56:05.663 2024-02-21 19:56:05.663 100 FEE 434050 17218 6025563 2024-02-21 19:56:05.663 2024-02-21 19:56:05.663 900 TIP 434050 17365 6025564 2024-02-21 19:56:05.913 2024-02-21 19:56:05.913 100 FEE 434050 16680 6025565 2024-02-21 19:56:05.913 2024-02-21 19:56:05.913 900 TIP 434050 7558 6025576 2024-02-21 19:59:13.064 2024-02-21 19:59:13.064 0 FEE 434248 11999 6025589 2024-02-21 20:01:50.333 2024-02-21 20:01:50.333 8300 FEE 434243 1142 6025590 2024-02-21 20:01:50.333 2024-02-21 20:01:50.333 74700 TIP 434243 11038 6025595 2024-02-21 20:01:50.681 2024-02-21 20:01:50.681 8300 FEE 434243 3377 6025596 2024-02-21 20:01:50.681 2024-02-21 20:01:50.681 74700 TIP 434243 16867 6025612 2024-02-21 20:07:02.94 2024-02-21 20:07:02.94 10000 FEE 434202 19615 6025613 2024-02-21 20:07:02.94 2024-02-21 20:07:02.94 90000 TIP 434202 3478 6025619 2024-02-21 20:09:28.269 2024-02-21 20:09:28.269 100 FEE 434127 18736 6025620 2024-02-21 20:09:28.269 2024-02-21 20:09:28.269 900 TIP 434127 20717 6025651 2024-02-21 20:16:55.545 2024-02-21 20:16:55.545 1000 FEE 433943 13249 6025652 2024-02-21 20:16:55.545 2024-02-21 20:16:55.545 9000 TIP 433943 19463 6025657 2024-02-21 20:16:58.58 2024-02-21 20:16:58.58 1000 FEE 433833 16571 6025658 2024-02-21 20:16:58.58 2024-02-21 20:16:58.58 9000 TIP 433833 7674 6025696 2024-02-21 20:17:44.041 2024-02-21 20:17:44.041 1000 FEE 434260 16753 6025697 2024-02-21 20:17:44.041 2024-02-21 20:17:44.041 9000 TIP 434260 21140 6025721 2024-02-21 20:18:04.762 2024-02-21 20:18:04.762 1000 FEE 434211 21233 6025722 2024-02-21 20:18:04.762 2024-02-21 20:18:04.762 9000 TIP 434211 21395 6025733 2024-02-21 20:18:26.495 2024-02-21 20:18:26.495 1000 FEE 434189 16447 6025734 2024-02-21 20:18:26.495 2024-02-21 20:18:26.495 9000 TIP 434189 8544 6025750 2024-02-21 20:19:03.647 2024-02-21 20:19:03.647 4200 FEE 434158 17124 6025751 2024-02-21 20:19:03.647 2024-02-21 20:19:03.647 37800 TIP 434158 18174 6025753 2024-02-21 20:19:16.703 2024-02-21 20:19:16.703 1000 FEE 434170 17201 6025754 2024-02-21 20:19:16.703 2024-02-21 20:19:16.703 9000 TIP 434170 20616 6025794 2024-02-21 20:28:34.735 2024-02-21 20:28:34.735 1000 FEE 434268 5852 6024917 2024-02-21 18:50:36.639 2024-02-21 18:50:36.639 29700 TIP 434149 14795 6024918 2024-02-21 18:50:36.827 2024-02-21 18:50:36.827 3300 FEE 434149 13327 6024919 2024-02-21 18:50:36.827 2024-02-21 18:50:36.827 29700 TIP 434149 16839 6024955 2024-02-21 18:52:45.664 2024-02-21 18:52:45.664 1000 FEE 433499 4084 6024956 2024-02-21 18:52:45.664 2024-02-21 18:52:45.664 9000 TIP 433499 4027 6024978 2024-02-21 18:56:37.029 2024-02-21 18:56:37.029 0 FEE 434180 20454 6024993 2024-02-21 18:57:35.491 2024-02-21 18:57:35.491 1000 FEE 434186 1512 6025001 2024-02-21 18:59:43.278 2024-02-21 18:59:43.278 1000 FEE 434171 10398 6025002 2024-02-21 18:59:43.278 2024-02-21 18:59:43.278 9000 TIP 434171 1806 6025005 2024-02-21 19:00:51.834 2024-02-21 19:00:51.834 21000 FEE 434189 2963 6025009 2024-02-21 19:01:53.712 2024-02-21 19:01:53.712 100 FEE 433196 1038 6025010 2024-02-21 19:01:53.712 2024-02-21 19:01:53.712 900 TIP 433196 3504 6025033 2024-02-21 19:04:18.131 2024-02-21 19:04:18.131 2300 FEE 433934 8498 6025034 2024-02-21 19:04:18.131 2024-02-21 19:04:18.131 20700 TIP 433934 5809 6025039 2024-02-21 19:04:18.65 2024-02-21 19:04:18.65 2300 FEE 433934 837 6025040 2024-02-21 19:04:18.65 2024-02-21 19:04:18.65 20700 TIP 433934 18051 6025054 2024-02-21 19:05:53.42 2024-02-21 19:05:53.42 2100 FEE 434172 17014 6025055 2024-02-21 19:05:53.42 2024-02-21 19:05:53.42 18900 TIP 434172 12160 6025070 2024-02-21 19:07:27.547 2024-02-21 19:07:27.547 10000 FEE 434038 3411 6025071 2024-02-21 19:07:27.547 2024-02-21 19:07:27.547 90000 TIP 434038 5293 6025082 2024-02-21 19:08:22.342 2024-02-21 19:08:22.342 2100 FEE 433889 640 6025083 2024-02-21 19:08:22.342 2024-02-21 19:08:22.342 18900 TIP 433889 11862 6025084 2024-02-21 19:08:32.16 2024-02-21 19:08:32.16 2100 FEE 433978 9345 6025085 2024-02-21 19:08:32.16 2024-02-21 19:08:32.16 18900 TIP 433978 20973 6025086 2024-02-21 19:08:39.279 2024-02-21 19:08:39.279 2100 FEE 434187 18690 6025087 2024-02-21 19:08:39.279 2024-02-21 19:08:39.279 18900 TIP 434187 13782 6025089 2024-02-21 19:09:23.741 2024-02-21 19:09:23.741 2100 FEE 433937 20788 6025090 2024-02-21 19:09:23.741 2024-02-21 19:09:23.741 18900 TIP 433937 1468 6025122 2024-02-21 19:13:30.173 2024-02-21 19:13:30.173 3300 FEE 433934 18470 6025123 2024-02-21 19:13:30.173 2024-02-21 19:13:30.173 29700 TIP 433934 6310 6025159 2024-02-21 19:17:16.804 2024-02-21 19:17:16.804 0 FEE 434209 19583 6025166 2024-02-21 19:18:20.558 2024-02-21 19:18:20.558 1000 FEE 434216 21248 6025218 2024-02-21 19:22:05.388 2024-02-21 19:22:05.388 0 FEE 434218 21269 6025219 2024-02-21 19:22:13.734 2024-02-21 19:22:13.734 3200 FEE 433937 11144 6025220 2024-02-21 19:22:13.734 2024-02-21 19:22:13.734 28800 TIP 433937 20906 6025245 2024-02-21 19:26:15.617 2024-02-21 19:26:15.617 2100 FEE 434212 18873 6025246 2024-02-21 19:26:15.617 2024-02-21 19:26:15.617 18900 TIP 434212 20353 6025272 2024-02-21 19:28:51.011 2024-02-21 19:28:51.011 4000 FEE 434223 18274 6025273 2024-02-21 19:28:51.011 2024-02-21 19:28:51.011 36000 TIP 434223 19284 6025294 2024-02-21 19:31:55.239 2024-02-21 19:31:55.239 1000 FEE 434226 638 6025354 2024-02-21 19:34:31.638 2024-02-21 19:34:31.638 100 FEE 434026 19863 6025355 2024-02-21 19:34:31.638 2024-02-21 19:34:31.638 900 TIP 434026 19038 6025375 2024-02-21 19:35:22.399 2024-02-21 19:35:22.399 0 FEE 434230 19198 6025383 2024-02-21 19:35:53.364 2024-02-21 19:35:53.364 1100 FEE 434097 7760 6025384 2024-02-21 19:35:53.364 2024-02-21 19:35:53.364 9900 TIP 434097 10016 6025427 2024-02-21 19:39:24.187 2024-02-21 19:39:24.187 100 FEE 428907 5759 6025428 2024-02-21 19:39:24.187 2024-02-21 19:39:24.187 900 TIP 428907 14791 6025445 2024-02-21 19:40:48.117 2024-02-21 19:40:48.117 0 FEE 434231 21509 6025446 2024-02-21 19:40:52.599 2024-02-21 19:40:52.599 0 FEE 434231 5557 6025451 2024-02-21 19:41:01.329 2024-02-21 19:41:01.329 100 FEE 434177 1286 6025452 2024-02-21 19:41:01.329 2024-02-21 19:41:01.329 900 TIP 434177 17171 6025482 2024-02-21 19:43:04.384 2024-02-21 19:43:04.384 100 FEE 426767 21521 6025483 2024-02-21 19:43:04.384 2024-02-21 19:43:04.384 900 TIP 426767 17212 6025509 2024-02-21 19:48:12.581 2024-02-21 19:48:12.581 12800 FEE 433851 11776 6025510 2024-02-21 19:48:12.581 2024-02-21 19:48:12.581 115200 TIP 433851 7746 6025513 2024-02-21 19:49:13.106 2024-02-21 19:49:13.106 1000 FEE 434247 5520 6025515 2024-02-21 19:50:02.021 2024-02-21 19:50:02.021 0 FEE 434242 9438 6025523 2024-02-21 19:51:07.049 2024-02-21 19:51:07.049 100 FEE 434148 2224 6025524 2024-02-21 19:51:07.049 2024-02-21 19:51:07.049 900 TIP 434148 8045 6025533 2024-02-21 19:51:08.564 2024-02-21 19:51:08.564 100 FEE 434148 16847 6025534 2024-02-21 19:51:08.564 2024-02-21 19:51:08.564 900 TIP 434148 16638 6025556 2024-02-21 19:56:05.115 2024-02-21 19:56:05.115 100 FEE 434050 2056 6025557 2024-02-21 19:56:05.115 2024-02-21 19:56:05.115 900 TIP 434050 1488 6025606 2024-02-21 20:04:41.333 2024-02-21 20:04:41.333 1000 FEE 434258 9184 6025611 2024-02-21 20:06:38.979 2024-02-21 20:06:38.979 10000 FEE 434261 5487 6025621 2024-02-21 20:09:28.424 2024-02-21 20:09:28.424 100 FEE 434127 21334 6025622 2024-02-21 20:09:28.424 2024-02-21 20:09:28.424 900 TIP 434127 684 6025627 2024-02-21 20:09:29.844 2024-02-21 20:09:29.844 100 FEE 434127 7903 6025628 2024-02-21 20:09:29.844 2024-02-21 20:09:29.844 900 TIP 434127 21014 6025633 2024-02-21 20:09:31.788 2024-02-21 20:09:31.788 100 FEE 434127 21040 6025634 2024-02-21 20:09:31.788 2024-02-21 20:09:31.788 900 TIP 434127 663 6025636 2024-02-21 20:11:02.165 2024-02-21 20:11:02.165 3100 FEE 434257 20781 6025637 2024-02-21 20:11:02.165 2024-02-21 20:11:02.165 27900 TIP 434257 951 6025659 2024-02-21 20:16:59.511 2024-02-21 20:16:59.511 1000 FEE 433934 21356 6025660 2024-02-21 20:16:59.511 2024-02-21 20:16:59.511 9000 TIP 433934 7827 6025680 2024-02-21 20:17:15.354 2024-02-21 20:17:15.354 1000 FEE 433677 12139 6025681 2024-02-21 20:17:15.354 2024-02-21 20:17:15.354 9000 TIP 433677 5565 6025716 2024-02-21 20:18:02.095 2024-02-21 20:18:02.095 1000 FEE 434213 8726 6025717 2024-02-21 20:18:02.095 2024-02-21 20:18:02.095 9000 TIP 434213 651 6025723 2024-02-21 20:18:05.835 2024-02-21 20:18:05.835 2100 FEE 434235 18836 6025724 2024-02-21 20:18:05.835 2024-02-21 20:18:05.835 18900 TIP 434235 19263 6025727 2024-02-21 20:18:16.885 2024-02-21 20:18:16.885 2100 FEE 434204 2583 6025728 2024-02-21 20:18:16.885 2024-02-21 20:18:16.885 18900 TIP 434204 16176 6025735 2024-02-21 20:18:26.903 2024-02-21 20:18:26.903 1000 FEE 434189 21072 6025736 2024-02-21 20:18:26.903 2024-02-21 20:18:26.903 9000 TIP 434189 18330 6025767 2024-02-21 20:23:53.176 2024-02-21 20:23:53.176 1100 FEE 434189 18663 6025768 2024-02-21 20:23:53.176 2024-02-21 20:23:53.176 9900 TIP 434189 7583 6025777 2024-02-21 20:23:53.833 2024-02-21 20:23:53.833 1100 FEE 434189 16679 6025778 2024-02-21 20:23:53.833 2024-02-21 20:23:53.833 9900 TIP 434189 5978 6025809 2024-02-21 20:34:45.645 2024-02-21 20:34:45.645 2300 FEE 434251 16149 6025810 2024-02-21 20:34:45.645 2024-02-21 20:34:45.645 20700 TIP 434251 1733 6025839 2024-02-21 20:39:16.839 2024-02-21 20:39:16.839 100 FEE 434205 1970 6025840 2024-02-21 20:39:16.839 2024-02-21 20:39:16.839 900 TIP 434205 19243 6025861 2024-02-21 20:39:25.562 2024-02-21 20:39:25.562 100 FEE 434008 21393 6025862 2024-02-21 20:39:25.562 2024-02-21 20:39:25.562 900 TIP 434008 1008 6025900 2024-02-21 20:44:30.237 2024-02-21 20:44:30.237 1000 FEE 434267 19770 6025901 2024-02-21 20:44:30.237 2024-02-21 20:44:30.237 9000 TIP 434267 10586 6024950 2024-02-21 18:52:25.78 2024-02-21 18:52:25.78 29700 TIP 433760 19471 6024964 2024-02-21 18:53:31.738 2024-02-21 18:53:31.738 0 FEE 434178 1836 6024979 2024-02-21 18:56:49.479 2024-02-21 18:56:49.479 1100 FEE 433943 16259 6024980 2024-02-21 18:56:49.479 2024-02-21 18:56:49.479 9900 TIP 433943 18984 6024982 2024-02-21 18:57:00.221 2024-02-21 18:57:00.221 10000 FEE 434184 20337 6025016 2024-02-21 19:03:02.921 2024-02-21 19:03:02.921 100000 FEE 434192 2528 6025043 2024-02-21 19:04:34.473 2024-02-21 19:04:34.473 2000 FEE 434197 1611 6025098 2024-02-21 19:09:46.137 2024-02-21 19:09:46.137 2300 FEE 434154 10490 6025099 2024-02-21 19:09:46.137 2024-02-21 19:09:46.137 20700 TIP 434154 13903 6025108 2024-02-21 19:11:16.47 2024-02-21 19:11:16.47 1000 FEE 434205 4692 6025111 2024-02-21 19:12:08.796 2024-02-21 19:12:08.796 1000 FEE 434141 19511 6025112 2024-02-21 19:12:08.796 2024-02-21 19:12:08.796 9000 TIP 434141 649 6025124 2024-02-21 19:13:58.917 2024-02-21 19:13:58.917 1000 FEE 434207 19198 6025138 2024-02-21 19:15:20.274 2024-02-21 19:15:20.274 10000 FEE 434211 18448 6025139 2024-02-21 19:15:23.859 2024-02-21 19:15:23.859 100 FEE 434172 18138 6025140 2024-02-21 19:15:23.859 2024-02-21 19:15:23.859 900 TIP 434172 15521 6025145 2024-02-21 19:15:27.704 2024-02-21 19:15:27.704 0 FEE 434209 2022 6025150 2024-02-21 19:15:45.81 2024-02-21 19:15:45.81 2100 FEE 434210 2513 6025151 2024-02-21 19:15:45.81 2024-02-21 19:15:45.81 18900 TIP 434210 19806 6025155 2024-02-21 19:16:06.366 2024-02-21 19:16:06.366 2100 FEE 434192 9365 6025156 2024-02-21 19:16:06.366 2024-02-21 19:16:06.366 18900 TIP 434192 4570 6025160 2024-02-21 19:17:31.948 2024-02-21 19:17:31.948 1000 FEE 434212 19902 6025164 2024-02-21 19:18:07.774 2024-02-21 19:18:07.774 1000 FEE 434215 9275 6025188 2024-02-21 19:20:33.712 2024-02-21 19:20:33.712 1000 FEE 434141 9833 6025189 2024-02-21 19:20:33.712 2024-02-21 19:20:33.712 9000 TIP 434141 13547 6025202 2024-02-21 19:21:15.4 2024-02-21 19:21:15.4 2100 FEE 434048 11018 6025203 2024-02-21 19:21:15.4 2024-02-21 19:21:15.4 18900 TIP 434048 18828 6025231 2024-02-21 19:24:28.135 2024-02-21 19:24:28.135 1000 FEE 434220 19346 6025290 2024-02-21 19:31:06.009 2024-02-21 19:31:06.009 10000 FEE 434013 4973 6025291 2024-02-21 19:31:06.009 2024-02-21 19:31:06.009 90000 TIP 434013 14650 6025292 2024-02-21 19:31:43.232 2024-02-21 19:31:43.232 3300 FEE 434220 7760 6025293 2024-02-21 19:31:43.232 2024-02-21 19:31:43.232 29700 TIP 434220 19813 6025296 2024-02-21 19:32:10.853 2024-02-21 19:32:10.853 2100 FEE 434091 7773 6025297 2024-02-21 19:32:10.853 2024-02-21 19:32:10.853 18900 TIP 434091 1007 6025300 2024-02-21 19:32:33.667 2024-02-21 19:32:33.667 1000 FEE 434227 11153 6025303 2024-02-21 19:32:49.054 2024-02-21 19:32:49.054 1000 FEE 434228 19622 6025317 2024-02-21 19:33:24.008 2024-02-21 19:33:24.008 100 FEE 433233 8400 6025318 2024-02-21 19:33:24.008 2024-02-21 19:33:24.008 900 TIP 433233 2293 6025323 2024-02-21 19:33:29.148 2024-02-21 19:33:29.148 100 FEE 432945 19117 6025324 2024-02-21 19:33:29.148 2024-02-21 19:33:29.148 900 TIP 432945 670 6025335 2024-02-21 19:34:03.923 2024-02-21 19:34:03.923 900 FEE 419187 17157 6025336 2024-02-21 19:34:03.923 2024-02-21 19:34:03.923 8100 TIP 419187 20646 6025340 2024-02-21 19:34:18.91 2024-02-21 19:34:18.91 0 FEE 434230 974 6025372 2024-02-21 19:34:47.06 2024-02-21 19:34:47.06 100 FEE 433049 16970 6025373 2024-02-21 19:34:47.06 2024-02-21 19:34:47.06 900 TIP 433049 5779 6025378 2024-02-21 19:35:49.194 2024-02-21 19:35:49.194 1000 FEE 434232 12819 6025381 2024-02-21 19:35:52.788 2024-02-21 19:35:52.788 100 FEE 431904 12768 6025382 2024-02-21 19:35:52.788 2024-02-21 19:35:52.788 900 TIP 431904 18262 6025395 2024-02-21 19:35:56.334 2024-02-21 19:35:56.334 1100 FEE 434097 8945 6025396 2024-02-21 19:35:56.334 2024-02-21 19:35:56.334 9900 TIP 434097 18139 6025412 2024-02-21 19:36:28.627 2024-02-21 19:36:28.627 1000 FEE 434233 18640 6025447 2024-02-21 19:41:00.94 2024-02-21 19:41:00.94 100 FEE 434177 721 6025448 2024-02-21 19:41:00.94 2024-02-21 19:41:00.94 900 TIP 434177 3518 6025459 2024-02-21 19:41:03.053 2024-02-21 19:41:03.053 100 FEE 434177 12609 6025460 2024-02-21 19:41:03.053 2024-02-21 19:41:03.053 900 TIP 434177 16556 6025469 2024-02-21 19:41:37.43 2024-02-21 19:41:37.43 100000 FEE 434238 17519 6025487 2024-02-21 19:43:43.182 2024-02-21 19:43:43.182 4200 FEE 433788 21514 6025488 2024-02-21 19:43:43.182 2024-02-21 19:43:43.182 37800 TIP 433788 698 6025498 2024-02-21 19:46:05.832 2024-02-21 19:46:05.832 210000 FEE 434243 20715 6025502 2024-02-21 19:46:47.171 2024-02-21 19:46:47.171 2100 FEE 434240 19309 6025503 2024-02-21 19:46:47.171 2024-02-21 19:46:47.171 18900 TIP 434240 21072 6025517 2024-02-21 19:50:12.358 2024-02-21 19:50:12.358 1000 FEE 434248 18264 6025518 2024-02-21 19:50:15.916 2024-02-21 19:50:15.916 1000 FEE 434249 989 6025527 2024-02-21 19:51:07.317 2024-02-21 19:51:07.317 100 FEE 434148 10398 6025528 2024-02-21 19:51:07.317 2024-02-21 19:51:07.317 900 TIP 434148 18169 6025535 2024-02-21 19:51:09.092 2024-02-21 19:51:09.092 100 FEE 434148 20117 6025536 2024-02-21 19:51:09.092 2024-02-21 19:51:09.092 900 TIP 434148 12368 6025537 2024-02-21 19:51:09.619 2024-02-21 19:51:09.619 100 FEE 434148 20904 6025538 2024-02-21 19:51:09.619 2024-02-21 19:51:09.619 900 TIP 434148 9353 6025541 2024-02-21 19:51:10.707 2024-02-21 19:51:10.707 100 FEE 434148 20776 6025542 2024-02-21 19:51:10.707 2024-02-21 19:51:10.707 900 TIP 434148 15243 6025568 2024-02-21 19:56:07.272 2024-02-21 19:56:07.272 100 FEE 434050 2514 6025569 2024-02-21 19:56:07.272 2024-02-21 19:56:07.272 900 TIP 434050 20022 6025570 2024-02-21 19:56:07.495 2024-02-21 19:56:07.495 100 FEE 434050 1751 6025571 2024-02-21 19:56:07.495 2024-02-21 19:56:07.495 900 TIP 434050 894 6025593 2024-02-21 20:01:50.567 2024-02-21 20:01:50.567 8300 FEE 434243 21138 6025594 2024-02-21 20:01:50.567 2024-02-21 20:01:50.567 74700 TIP 434243 15351 6025648 2024-02-21 20:15:30.011 2024-02-21 20:15:30.011 2100 FEE 433896 2748 6025649 2024-02-21 20:15:30.011 2024-02-21 20:15:30.011 18900 TIP 433896 4059 6025663 2024-02-21 20:17:02.541 2024-02-21 20:17:02.541 1000 FEE 433878 14941 6025664 2024-02-21 20:17:02.541 2024-02-21 20:17:02.541 9000 TIP 433878 17275 6025674 2024-02-21 20:17:11.487 2024-02-21 20:17:11.487 1000 FEE 433555 16830 6025675 2024-02-21 20:17:11.487 2024-02-21 20:17:11.487 9000 TIP 433555 21228 6025702 2024-02-21 20:17:45.615 2024-02-21 20:17:45.615 1000 FEE 434260 18675 6025703 2024-02-21 20:17:45.615 2024-02-21 20:17:45.615 9000 TIP 434260 20102 6025739 2024-02-21 20:18:36.08 2024-02-21 20:18:36.08 8300 FEE 433962 5160 6025740 2024-02-21 20:18:36.08 2024-02-21 20:18:36.08 74700 TIP 433962 687 6025741 2024-02-21 20:18:37.251 2024-02-21 20:18:37.251 8300 FEE 433962 19759 6025742 2024-02-21 20:18:37.251 2024-02-21 20:18:37.251 74700 TIP 433962 6361 6025785 2024-02-21 20:23:54.583 2024-02-21 20:23:54.583 1100 FEE 434243 10608 6025786 2024-02-21 20:23:54.583 2024-02-21 20:23:54.583 9900 TIP 434243 18640 6025799 2024-02-21 20:31:51.835 2024-02-21 20:31:51.835 1000 FEE 434270 17030 6025811 2024-02-21 20:34:45.784 2024-02-21 20:34:45.784 2300 FEE 434251 11516 6025812 2024-02-21 20:34:45.784 2024-02-21 20:34:45.784 20700 TIP 434251 8870 6025828 2024-02-21 20:35:49.93 2024-02-21 20:35:49.93 300 FEE 433641 1959 6025829 2024-02-21 20:35:49.93 2024-02-21 20:35:49.93 2700 TIP 433641 704 6025853 2024-02-21 20:39:24.687 2024-02-21 20:39:24.687 100 FEE 434008 951 6025854 2024-02-21 20:39:24.687 2024-02-21 20:39:24.687 900 TIP 434008 9433 6025863 2024-02-21 20:39:25.843 2024-02-21 20:39:25.843 100 FEE 434008 7989 6025864 2024-02-21 20:39:25.843 2024-02-21 20:39:25.843 900 TIP 434008 21291 6025865 2024-02-21 20:39:26.011 2024-02-21 20:39:26.011 100 FEE 434008 9845 6025866 2024-02-21 20:39:26.011 2024-02-21 20:39:26.011 900 TIP 434008 17109 6025884 2024-02-21 20:40:42.681 2024-02-21 20:40:42.681 1000 FEE 434274 18877 6025920 2024-02-21 20:48:47.517 2024-02-21 20:48:47.517 800 FEE 433849 5775 6025921 2024-02-21 20:48:47.517 2024-02-21 20:48:47.517 7200 TIP 433849 7389 6025929 2024-02-21 20:49:29.595 2024-02-21 20:49:29.595 21000 DONT_LIKE_THIS 434202 684 6025937 2024-02-21 20:50:46.156 2024-02-21 20:50:46.156 10000 FEE 433597 20299 6024969 2024-02-21 18:54:06.383 2024-02-21 18:54:06.383 1000 FEE 434046 19263 6024970 2024-02-21 18:54:06.383 2024-02-21 18:54:06.383 9000 TIP 434046 4079 6024975 2024-02-21 18:55:40.999 2024-02-21 18:55:40.999 1000 FEE 434181 8954 6024976 2024-02-21 18:56:03.751 2024-02-21 18:56:03.751 1000 STREAM 141924 18832 6024985 2024-02-21 18:57:04.025 2024-02-21 18:57:04.025 1000 STREAM 141924 2264 6024986 2024-02-21 18:57:10.88 2024-02-21 18:57:10.88 1100 FEE 433937 951 6024987 2024-02-21 18:57:10.88 2024-02-21 18:57:10.88 9900 TIP 433937 20479 6024988 2024-02-21 18:57:18.574 2024-02-21 18:57:18.574 1100 FEE 434071 1401 6024989 2024-02-21 18:57:18.574 2024-02-21 18:57:18.574 9900 TIP 434071 12959 6024994 2024-02-21 18:58:03.764 2024-02-21 18:58:03.764 1000 STREAM 141924 3504 6024996 2024-02-21 18:59:03.774 2024-02-21 18:59:03.774 1000 STREAM 141924 18511 6024999 2024-02-21 18:59:38.894 2024-02-21 18:59:38.894 1000 FEE 434023 5646 6025000 2024-02-21 18:59:38.894 2024-02-21 18:59:38.894 9000 TIP 434023 7097 6025004 2024-02-21 19:00:03.841 2024-02-21 19:00:03.841 1000 STREAM 141924 651 6025006 2024-02-21 19:01:03.791 2024-02-21 19:01:03.791 1000 STREAM 141924 9166 6025011 2024-02-21 19:02:03.799 2024-02-21 19:02:03.799 1000 STREAM 141924 725 6025017 2024-02-21 19:03:03.816 2024-02-21 19:03:03.816 1000 STREAM 141924 12024 6025019 2024-02-21 19:03:14.427 2024-02-21 19:03:14.427 1000 FEE 434194 2016 6025024 2024-02-21 19:04:03.819 2024-02-21 19:04:03.819 1000 STREAM 141924 20778 6025046 2024-02-21 19:05:03.818 2024-02-21 19:05:03.818 1000 STREAM 141924 13348 6025047 2024-02-21 19:05:20.733 2024-02-21 19:05:20.733 1000 FEE 434198 2402 6025052 2024-02-21 19:05:39.436 2024-02-21 19:05:39.436 200 FEE 434195 20906 6025053 2024-02-21 19:05:39.436 2024-02-21 19:05:39.436 1800 TIP 434195 3360 6025056 2024-02-21 19:06:03.822 2024-02-21 19:06:03.822 1000 STREAM 141924 19148 6025059 2024-02-21 19:07:03.827 2024-02-21 19:07:03.827 1000 STREAM 141924 9920 6025075 2024-02-21 19:08:03.834 2024-02-21 19:08:03.834 1000 STREAM 141924 21070 6025076 2024-02-21 19:08:06.279 2024-02-21 19:08:06.279 2100 FEE 433844 20353 6025077 2024-02-21 19:08:06.279 2024-02-21 19:08:06.279 18900 TIP 433844 18468 6025088 2024-02-21 19:09:03.866 2024-02-21 19:09:03.866 1000 STREAM 141924 959 6025101 2024-02-21 19:10:03.872 2024-02-21 19:10:03.872 1000 STREAM 141924 21061 6025107 2024-02-21 19:11:03.856 2024-02-21 19:11:03.856 1000 STREAM 141924 7376 6025109 2024-02-21 19:12:03.852 2024-02-21 19:12:03.852 1000 STREAM 141924 5003 6025117 2024-02-21 19:13:03.868 2024-02-21 19:13:03.868 1000 STREAM 141924 9969 6025118 2024-02-21 19:13:04.36 2024-02-21 19:13:04.36 1000 FEE 433943 19094 6025119 2024-02-21 19:13:04.36 2024-02-21 19:13:04.36 9000 TIP 433943 21088 6025125 2024-02-21 19:14:03.885 2024-02-21 19:14:03.885 1000 STREAM 141924 2576 6025135 2024-02-21 19:15:03.898 2024-02-21 19:15:03.898 1000 STREAM 141924 12483 6025136 2024-02-21 19:15:07.452 2024-02-21 19:15:07.452 0 FEE 434209 1712 6025148 2024-02-21 19:15:35.064 2024-02-21 19:15:35.064 900 FEE 434204 5497 6025149 2024-02-21 19:15:35.064 2024-02-21 19:15:35.064 8100 TIP 434204 5036 6025152 2024-02-21 19:15:48.098 2024-02-21 19:15:48.098 9000 FEE 434204 21614 6025153 2024-02-21 19:15:48.098 2024-02-21 19:15:48.098 81000 TIP 434204 21458 6025154 2024-02-21 19:16:03.91 2024-02-21 19:16:03.91 1000 STREAM 141924 21033 6025157 2024-02-21 19:16:43.447 2024-02-21 19:16:43.447 0 FEE 434209 9421 6025158 2024-02-21 19:17:03.91 2024-02-21 19:17:03.91 1000 STREAM 141924 18743 6025163 2024-02-21 19:18:03.926 2024-02-21 19:18:03.926 1000 STREAM 141924 20094 6025167 2024-02-21 19:19:03.914 2024-02-21 19:19:03.914 1000 STREAM 141924 9969 6025168 2024-02-21 19:19:55.04 2024-02-21 19:19:55.04 1000 FEE 434192 21296 6025169 2024-02-21 19:19:55.04 2024-02-21 19:19:55.04 9000 TIP 434192 21491 6025186 2024-02-21 19:20:03.943 2024-02-21 19:20:03.943 1000 STREAM 141924 14225 6025187 2024-02-21 19:20:32.657 2024-02-21 19:20:32.657 1000 FEE 434217 15243 6025200 2024-02-21 19:21:03.941 2024-02-21 19:21:03.941 1000 STREAM 141924 11942 6025206 2024-02-21 19:21:30.824 2024-02-21 19:21:30.824 2100 FEE 433828 1030 6025207 2024-02-21 19:21:30.824 2024-02-21 19:21:30.824 18900 TIP 433828 2620 6025213 2024-02-21 19:22:03.945 2024-02-21 19:22:03.945 1000 STREAM 141924 20713 6025221 2024-02-21 19:23:03.948 2024-02-21 19:23:03.948 1000 STREAM 141924 19638 6025224 2024-02-21 19:23:30.976 2024-02-21 19:23:30.976 20000 FEE 433828 10586 6025225 2024-02-21 19:23:30.976 2024-02-21 19:23:30.976 180000 TIP 433828 859 6025230 2024-02-21 19:24:03.955 2024-02-21 19:24:03.955 1000 STREAM 141924 1618 6025232 2024-02-21 19:25:03.964 2024-02-21 19:25:03.964 1000 STREAM 141924 15271 6025240 2024-02-21 19:26:03.969 2024-02-21 19:26:03.969 1000 STREAM 141924 20504 6025253 2024-02-21 19:26:24.079 2024-02-21 19:26:24.079 500 FEE 433677 20280 6025254 2024-02-21 19:26:24.079 2024-02-21 19:26:24.079 4500 TIP 433677 2640 6025257 2024-02-21 19:27:03.966 2024-02-21 19:27:03.966 1000 STREAM 141924 10862 6025267 2024-02-21 19:28:03.97 2024-02-21 19:28:03.97 1000 STREAM 141924 10359 6025268 2024-02-21 19:28:04.171 2024-02-21 19:28:04.171 7000 DONT_LIKE_THIS 433944 20430 6025274 2024-02-21 19:29:03.974 2024-02-21 19:29:03.974 1000 STREAM 141924 21026 6025278 2024-02-21 19:30:04.006 2024-02-21 19:30:04.006 1000 STREAM 141924 19864 6025289 2024-02-21 19:31:03.992 2024-02-21 19:31:03.992 1000 STREAM 141924 16532 6025295 2024-02-21 19:32:03.986 2024-02-21 19:32:03.986 1000 STREAM 141924 20222 6025314 2024-02-21 19:33:03.985 2024-02-21 19:33:03.985 1000 STREAM 141924 19668 6025321 2024-02-21 19:33:24.732 2024-02-21 19:33:24.732 100 FEE 433251 6202 6025322 2024-02-21 19:33:24.732 2024-02-21 19:33:24.732 900 TIP 433251 19044 6025325 2024-02-21 19:33:32.995 2024-02-21 19:33:32.995 1000 FEE 434229 18409 6025329 2024-02-21 19:34:00.952 2024-02-21 19:34:00.952 100 FEE 433943 21090 6025330 2024-02-21 19:34:00.952 2024-02-21 19:34:00.952 900 TIP 433943 11590 6025333 2024-02-21 19:34:03.769 2024-02-21 19:34:03.769 100 FEE 419187 705 6025334 2024-02-21 19:34:03.769 2024-02-21 19:34:03.769 900 TIP 419187 9482 6025337 2024-02-21 19:34:04.005 2024-02-21 19:34:04.005 1000 STREAM 141924 2528 6025348 2024-02-21 19:34:31.094 2024-02-21 19:34:31.094 100 FEE 434026 17042 6025349 2024-02-21 19:34:31.094 2024-02-21 19:34:31.094 900 TIP 434026 2431 6025368 2024-02-21 19:34:37.15 2024-02-21 19:34:37.15 100 FEE 434026 2327 6025369 2024-02-21 19:34:37.15 2024-02-21 19:34:37.15 900 TIP 434026 17639 6025374 2024-02-21 19:35:03.991 2024-02-21 19:35:03.991 1000 STREAM 141924 13553 6025385 2024-02-21 19:35:53.422 2024-02-21 19:35:53.422 100 FEE 431896 10283 6025386 2024-02-21 19:35:53.422 2024-02-21 19:35:53.422 900 TIP 431896 14669 6025387 2024-02-21 19:35:53.764 2024-02-21 19:35:53.764 1100 FEE 434097 10342 6025388 2024-02-21 19:35:53.764 2024-02-21 19:35:53.764 9900 TIP 434097 18704 6025403 2024-02-21 19:36:01.735 2024-02-21 19:36:01.735 1100 FEE 434097 20825 6025404 2024-02-21 19:36:01.735 2024-02-21 19:36:01.735 9900 TIP 434097 3478 6025407 2024-02-21 19:36:04.008 2024-02-21 19:36:04.008 1000 STREAM 141924 9863 6025410 2024-02-21 19:36:20.761 2024-02-21 19:36:20.761 100 FEE 431956 20376 6025411 2024-02-21 19:36:20.761 2024-02-21 19:36:20.761 900 TIP 431956 19458 6025416 2024-02-21 19:37:04 2024-02-21 19:37:04 1000 STREAM 141924 19296 6025418 2024-02-21 19:37:56.552 2024-02-21 19:37:56.552 0 FEE 434231 1712 6025419 2024-02-21 19:38:04.014 2024-02-21 19:38:04.014 1000 STREAM 141924 2196 6025421 2024-02-21 19:38:52.28 2024-02-21 19:38:52.28 1000 FEE 434232 20327 6025422 2024-02-21 19:38:52.28 2024-02-21 19:38:52.28 9000 TIP 434232 19199 6025423 2024-02-21 19:39:03.613 2024-02-21 19:39:03.613 100 FEE 428886 20751 6025424 2024-02-21 19:39:03.613 2024-02-21 19:39:03.613 900 TIP 428886 16556 6025425 2024-02-21 19:39:04.012 2024-02-21 19:39:04.012 1000 STREAM 141924 14122 6025435 2024-02-21 19:40:04.042 2024-02-21 19:40:04.042 1000 STREAM 141924 10981 6025436 2024-02-21 19:40:12.721 2024-02-21 19:40:12.721 100 FEE 429032 17722 6025437 2024-02-21 19:40:12.721 2024-02-21 19:40:12.721 900 TIP 429032 12346 6025438 2024-02-21 19:40:19.178 2024-02-21 19:40:19.178 1000 FEE 434236 11263 6025439 2024-02-21 19:40:29.001 2024-02-21 19:40:29.001 100 FEE 429182 768 6025440 2024-02-21 19:40:29.001 2024-02-21 19:40:29.001 900 TIP 429182 16956 6025358 2024-02-21 19:34:31.989 2024-02-21 19:34:31.989 100 FEE 434026 17095 6025359 2024-02-21 19:34:31.989 2024-02-21 19:34:31.989 900 TIP 434026 18372 6025362 2024-02-21 19:34:32.727 2024-02-21 19:34:32.727 100 FEE 434026 20023 6025363 2024-02-21 19:34:32.727 2024-02-21 19:34:32.727 900 TIP 434026 14202 6025370 2024-02-21 19:34:38.136 2024-02-21 19:34:38.136 100 FEE 434026 6202 6025371 2024-02-21 19:34:38.136 2024-02-21 19:34:38.136 900 TIP 434026 20102 6025405 2024-02-21 19:36:03.45 2024-02-21 19:36:03.45 1100 FEE 434097 1647 6025406 2024-02-21 19:36:03.45 2024-02-21 19:36:03.45 9900 TIP 434097 4763 6025417 2024-02-21 19:37:07.379 2024-02-21 19:37:07.379 1000 FEE 434234 9816 6025420 2024-02-21 19:38:24.306 2024-02-21 19:38:24.306 0 FEE 434231 620 6025431 2024-02-21 19:39:31.468 2024-02-21 19:39:31.468 100 FEE 428919 17798 6025432 2024-02-21 19:39:31.468 2024-02-21 19:39:31.468 900 TIP 428919 18016 6025433 2024-02-21 19:39:59.24 2024-02-21 19:39:59.24 100 FEE 429026 803 6025434 2024-02-21 19:39:59.24 2024-02-21 19:39:59.24 900 TIP 429026 21373 6025457 2024-02-21 19:41:02.56 2024-02-21 19:41:02.56 100 FEE 434177 18830 6025458 2024-02-21 19:41:02.56 2024-02-21 19:41:02.56 900 TIP 434177 4502 6025464 2024-02-21 19:41:04.204 2024-02-21 19:41:04.204 100 FEE 434177 1692 6025465 2024-02-21 19:41:04.204 2024-02-21 19:41:04.204 900 TIP 434177 20751 6025470 2024-02-21 19:41:44.817 2024-02-21 19:41:44.817 100 FEE 426711 20190 6025471 2024-02-21 19:41:44.817 2024-02-21 19:41:44.817 900 TIP 426711 16042 6025511 2024-02-21 19:48:58.651 2024-02-21 19:48:58.651 1000 FEE 434246 18372 6025525 2024-02-21 19:51:07.196 2024-02-21 19:51:07.196 100 FEE 434148 18351 6025526 2024-02-21 19:51:07.196 2024-02-21 19:51:07.196 900 TIP 434148 683 6025531 2024-02-21 19:51:08.044 2024-02-21 19:51:08.044 100 FEE 434148 2711 6025532 2024-02-21 19:51:08.044 2024-02-21 19:51:08.044 900 TIP 434148 1733 6025623 2024-02-21 20:09:28.724 2024-02-21 20:09:28.724 100 FEE 434127 19570 6025624 2024-02-21 20:09:28.724 2024-02-21 20:09:28.724 900 TIP 434127 768 6025625 2024-02-21 20:09:28.906 2024-02-21 20:09:28.906 100 FEE 434127 19864 6025626 2024-02-21 20:09:28.906 2024-02-21 20:09:28.906 900 TIP 434127 1564 6025644 2024-02-21 20:13:28.213 2024-02-21 20:13:28.213 17000 FEE 434263 2309 6025678 2024-02-21 20:17:14.174 2024-02-21 20:17:14.174 1000 FEE 434192 909 6025679 2024-02-21 20:17:14.174 2024-02-21 20:17:14.174 9000 TIP 434192 21481 6025692 2024-02-21 20:17:36.864 2024-02-21 20:17:36.864 10000 FEE 434189 2741 6025693 2024-02-21 20:17:36.864 2024-02-21 20:17:36.864 90000 TIP 434189 11678 6025698 2024-02-21 20:17:44.652 2024-02-21 20:17:44.652 1000 FEE 434260 9874 6025699 2024-02-21 20:17:44.652 2024-02-21 20:17:44.652 9000 TIP 434260 4259 6025744 2024-02-21 20:18:43.672 2024-02-21 20:18:43.672 4200 FEE 433943 19759 6025745 2024-02-21 20:18:43.672 2024-02-21 20:18:43.672 37800 TIP 433943 6430 6025746 2024-02-21 20:18:54.895 2024-02-21 20:18:54.895 1000 FEE 433943 19537 6025747 2024-02-21 20:18:54.895 2024-02-21 20:18:54.895 9000 TIP 433943 15351 6025756 2024-02-21 20:20:38.511 2024-02-21 20:20:38.511 1000 FEE 434266 16270 6025765 2024-02-21 20:23:53.032 2024-02-21 20:23:53.032 1100 FEE 434189 12736 6025766 2024-02-21 20:23:53.032 2024-02-21 20:23:53.032 9900 TIP 434189 9552 6025804 2024-02-21 20:34:43.582 2024-02-21 20:34:43.582 1000 FEE 434272 17124 6025815 2024-02-21 20:34:46.002 2024-02-21 20:34:46.002 2300 FEE 434251 6268 6025816 2024-02-21 20:34:46.002 2024-02-21 20:34:46.002 20700 TIP 434251 8729 6025826 2024-02-21 20:35:42.993 2024-02-21 20:35:42.993 300 FEE 433641 19286 6025827 2024-02-21 20:35:42.993 2024-02-21 20:35:42.993 2700 TIP 433641 19836 6025843 2024-02-21 20:39:23.809 2024-02-21 20:39:23.809 100 FEE 434008 15617 6025844 2024-02-21 20:39:23.809 2024-02-21 20:39:23.809 900 TIP 434008 18608 6025845 2024-02-21 20:39:24.009 2024-02-21 20:39:24.009 100 FEE 434008 2013 6025846 2024-02-21 20:39:24.009 2024-02-21 20:39:24.009 900 TIP 434008 19815 6025855 2024-02-21 20:39:25.005 2024-02-21 20:39:25.005 100 FEE 434008 21036 6025856 2024-02-21 20:39:25.005 2024-02-21 20:39:25.005 900 TIP 434008 18178 6025859 2024-02-21 20:39:25.453 2024-02-21 20:39:25.453 100 FEE 434008 1534 6025860 2024-02-21 20:39:25.453 2024-02-21 20:39:25.453 900 TIP 434008 5852 6025871 2024-02-21 20:39:26.724 2024-02-21 20:39:26.724 100 FEE 434008 18784 6025872 2024-02-21 20:39:26.724 2024-02-21 20:39:26.724 900 TIP 434008 7510 6025873 2024-02-21 20:39:26.938 2024-02-21 20:39:26.938 100 FEE 434008 624 6025874 2024-02-21 20:39:26.938 2024-02-21 20:39:26.938 900 TIP 434008 10934 6025887 2024-02-21 20:41:36.721 2024-02-21 20:41:36.721 10000 FEE 434013 12769 6025888 2024-02-21 20:41:36.721 2024-02-21 20:41:36.721 90000 TIP 434013 20564 6025896 2024-02-21 20:44:27.786 2024-02-21 20:44:27.786 1600 FEE 433851 20026 6025897 2024-02-21 20:44:27.786 2024-02-21 20:44:27.786 14400 TIP 433851 1803 6025902 2024-02-21 20:44:47.928 2024-02-21 20:44:47.928 1600 FEE 433123 797 6025903 2024-02-21 20:44:47.928 2024-02-21 20:44:47.928 14400 TIP 433123 20889 6025910 2024-02-21 20:47:11.617 2024-02-21 20:47:11.617 6400 FEE 434000 19103 6025911 2024-02-21 20:47:11.617 2024-02-21 20:47:11.617 57600 TIP 434000 21212 6025912 2024-02-21 20:47:32.928 2024-02-21 20:47:32.928 10000 FEE 433943 705 6025913 2024-02-21 20:47:32.928 2024-02-21 20:47:32.928 90000 TIP 433943 5852 6025914 2024-02-21 20:47:40.062 2024-02-21 20:47:40.062 1600 FEE 434048 19309 6025915 2024-02-21 20:47:40.062 2024-02-21 20:47:40.062 14400 TIP 434048 18344 6025916 2024-02-21 20:48:01.786 2024-02-21 20:48:01.786 1000 FEE 434279 1006 6025968 2024-02-21 21:01:30.587 2024-02-21 21:01:30.587 2600 FEE 434282 18517 6025969 2024-02-21 21:01:30.587 2024-02-21 21:01:30.587 23400 TIP 434282 2780 6025973 2024-02-21 21:02:20.152 2024-02-21 21:02:20.152 1700 FEE 434265 18529 6025974 2024-02-21 21:02:20.152 2024-02-21 21:02:20.152 15300 TIP 434265 18809 6025976 2024-02-21 21:03:10.039 2024-02-21 21:03:10.039 5000 FEE 434112 9177 6025977 2024-02-21 21:03:10.039 2024-02-21 21:03:10.039 45000 TIP 434112 732 6025986 2024-02-21 21:03:30.563 2024-02-21 21:03:30.563 500 FEE 434139 12222 6025987 2024-02-21 21:03:30.563 2024-02-21 21:03:30.563 4500 TIP 434139 6687 6025996 2024-02-21 21:07:16.197 2024-02-21 21:07:16.197 2100 FEE 434213 2710 6025997 2024-02-21 21:07:16.197 2024-02-21 21:07:16.197 18900 TIP 434213 21400 6026012 2024-02-21 21:12:34.433 2024-02-21 21:12:34.433 1000 FEE 434256 20624 6026013 2024-02-21 21:12:34.433 2024-02-21 21:12:34.433 9000 TIP 434256 9345 6026021 2024-02-21 21:13:09.267 2024-02-21 21:13:09.267 100000 FEE 434290 11314 6026029 2024-02-21 21:15:42.273 2024-02-21 21:15:42.273 2100 FEE 433828 19126 6026030 2024-02-21 21:15:42.273 2024-02-21 21:15:42.273 18900 TIP 433828 17046 6026032 2024-02-21 21:15:56.606 2024-02-21 21:15:56.606 10000 FEE 434293 1751 6026039 2024-02-21 21:17:31.297 2024-02-21 21:17:31.297 100 FEE 434139 11821 6026040 2024-02-21 21:17:31.297 2024-02-21 21:17:31.297 900 TIP 434139 20514 6026067 2024-02-21 21:24:17.468 2024-02-21 21:24:17.468 1000 FEE 434298 18717 6026083 2024-02-21 21:26:37.332 2024-02-21 21:26:37.332 3100 FEE 434294 17927 6026084 2024-02-21 21:26:37.332 2024-02-21 21:26:37.332 27900 TIP 434294 3304 6026101 2024-02-21 21:27:13.084 2024-02-21 21:27:13.084 1000 FEE 434297 4958 6026102 2024-02-21 21:27:13.084 2024-02-21 21:27:13.084 9000 TIP 434297 16485 6026103 2024-02-21 21:27:29.525 2024-02-21 21:27:29.525 1000 FEE 434303 1489 6026105 2024-02-21 21:27:39.421 2024-02-21 21:27:39.421 0 FEE 434298 21444 6026117 2024-02-21 21:28:06.437 2024-02-21 21:28:06.437 1000 FEE 434289 6384 6026118 2024-02-21 21:28:06.437 2024-02-21 21:28:06.437 9000 TIP 434289 13177 6026119 2024-02-21 21:28:07.104 2024-02-21 21:28:07.104 1000 FEE 434289 985 6026120 2024-02-21 21:28:07.104 2024-02-21 21:28:07.104 9000 TIP 434289 19494 6026123 2024-02-21 21:28:24.469 2024-02-21 21:28:24.469 1000 FEE 434245 826 6026124 2024-02-21 21:28:24.469 2024-02-21 21:28:24.469 9000 TIP 434245 11038 6026125 2024-02-21 21:28:50.442 2024-02-21 21:28:50.442 1000 FEE 434251 17041 6026126 2024-02-21 21:28:50.442 2024-02-21 21:28:50.442 9000 TIP 434251 1605 6026129 2024-02-21 21:28:58.472 2024-02-21 21:28:58.472 1000 FEE 434305 1652 6025402 2024-02-21 19:35:59.889 2024-02-21 19:35:59.889 9900 TIP 434097 18817 6025415 2024-02-21 19:36:35.135 2024-02-21 19:36:35.135 0 FEE 434230 21514 6025441 2024-02-21 19:40:37.355 2024-02-21 19:40:37.355 100 FEE 429237 18452 6025442 2024-02-21 19:40:37.355 2024-02-21 19:40:37.355 900 TIP 429237 20964 6025453 2024-02-21 19:41:01.637 2024-02-21 19:41:01.637 100 FEE 434177 2460 6025454 2024-02-21 19:41:01.637 2024-02-21 19:41:01.637 900 TIP 434177 6268 6025472 2024-02-21 19:41:55.765 2024-02-21 19:41:55.765 100 FEE 426808 7983 6025473 2024-02-21 19:41:55.765 2024-02-21 19:41:55.765 900 TIP 426808 6537 6025480 2024-02-21 19:42:52.014 2024-02-21 19:42:52.014 0 FEE 434239 17171 6025520 2024-02-21 19:50:24.536 2024-02-21 19:50:24.536 7100 FEE 434243 16176 6025521 2024-02-21 19:50:24.536 2024-02-21 19:50:24.536 63900 TIP 434243 836 6025554 2024-02-21 19:56:04.984 2024-02-21 19:56:04.984 100 FEE 434050 17365 6025555 2024-02-21 19:56:04.984 2024-02-21 19:56:04.984 900 TIP 434050 19018 6025566 2024-02-21 19:56:06.438 2024-02-21 19:56:06.438 100 FEE 434050 1433 6025567 2024-02-21 19:56:06.438 2024-02-21 19:56:06.438 900 TIP 434050 21555 6025577 2024-02-21 19:59:45.08 2024-02-21 19:59:45.08 1000 FEE 433934 2961 6025578 2024-02-21 19:59:45.08 2024-02-21 19:59:45.08 9000 TIP 433934 19531 6025581 2024-02-21 20:00:04.763 2024-02-21 20:00:04.763 100000 FEE 434253 20179 6025605 2024-02-21 20:04:18.239 2024-02-21 20:04:18.239 1000 FEE 434257 21527 6025607 2024-02-21 20:04:41.728 2024-02-21 20:04:41.728 1000 FEE 434259 16447 6025609 2024-02-21 20:05:30.981 2024-02-21 20:05:30.981 10000 FEE 434260 696 6025629 2024-02-21 20:09:30.429 2024-02-21 20:09:30.429 100 FEE 434127 9099 6025630 2024-02-21 20:09:30.429 2024-02-21 20:09:30.429 900 TIP 434127 20381 6025631 2024-02-21 20:09:30.927 2024-02-21 20:09:30.927 200 FEE 434127 6030 6025632 2024-02-21 20:09:30.927 2024-02-21 20:09:30.927 1800 TIP 434127 2620 6025639 2024-02-21 20:11:22.174 2024-02-21 20:11:22.174 1000 FEE 434262 4831 6025653 2024-02-21 20:16:56.285 2024-02-21 20:16:56.285 1000 FEE 433828 20802 6025654 2024-02-21 20:16:56.285 2024-02-21 20:16:56.285 9000 TIP 433828 18543 6025668 2024-02-21 20:17:05.41 2024-02-21 20:17:05.41 2100 FEE 434139 2703 6025669 2024-02-21 20:17:05.41 2024-02-21 20:17:05.41 18900 TIP 434139 1493 6025670 2024-02-21 20:17:07.939 2024-02-21 20:17:07.939 1000 FEE 433688 2711 6025671 2024-02-21 20:17:07.939 2024-02-21 20:17:07.939 9000 TIP 433688 10693 6025710 2024-02-21 20:18:01.242 2024-02-21 20:18:01.242 8300 FEE 433937 2016 6025711 2024-02-21 20:18:01.242 2024-02-21 20:18:01.242 74700 TIP 433937 19193 6025712 2024-02-21 20:18:01.477 2024-02-21 20:18:01.477 8300 FEE 433937 19189 6025713 2024-02-21 20:18:01.477 2024-02-21 20:18:01.477 74700 TIP 433937 1740 6025714 2024-02-21 20:18:01.506 2024-02-21 20:18:01.506 8300 FEE 433937 19500 6025715 2024-02-21 20:18:01.506 2024-02-21 20:18:01.506 74700 TIP 433937 13055 6025718 2024-02-21 20:18:03.535 2024-02-21 20:18:03.535 1000 FEE 434223 3213 6025719 2024-02-21 20:18:03.535 2024-02-21 20:18:03.535 9000 TIP 434223 15560 6025729 2024-02-21 20:18:25.809 2024-02-21 20:18:25.809 1000 FEE 434189 14267 6025730 2024-02-21 20:18:25.809 2024-02-21 20:18:25.809 9000 TIP 434189 20713 6025737 2024-02-21 20:18:27.29 2024-02-21 20:18:27.29 1000 FEE 434189 19854 6025738 2024-02-21 20:18:27.29 2024-02-21 20:18:27.29 9000 TIP 434189 9346 6025761 2024-02-21 20:22:16.428 2024-02-21 20:22:16.428 1000 FEE 434267 20826 6025771 2024-02-21 20:23:53.41 2024-02-21 20:23:53.41 1100 FEE 434189 6383 6025772 2024-02-21 20:23:53.41 2024-02-21 20:23:53.41 9900 TIP 434189 17212 6025791 2024-02-21 20:27:16.939 2024-02-21 20:27:16.939 1600 FEE 434077 6594 6025792 2024-02-21 20:27:16.939 2024-02-21 20:27:16.939 14400 TIP 434077 19352 6025796 2024-02-21 20:29:32.243 2024-02-21 20:29:32.243 1000 FEE 434269 17602 6025824 2024-02-21 20:35:29.358 2024-02-21 20:35:29.358 500 FEE 433659 902 6025825 2024-02-21 20:35:29.358 2024-02-21 20:35:29.358 4500 TIP 433659 19535 6025879 2024-02-21 20:39:27.669 2024-02-21 20:39:27.669 100 FEE 434008 18832 6025880 2024-02-21 20:39:27.669 2024-02-21 20:39:27.669 900 TIP 434008 17046 6025881 2024-02-21 20:39:27.906 2024-02-21 20:39:27.906 100 FEE 434008 998 6025882 2024-02-21 20:39:27.906 2024-02-21 20:39:27.906 900 TIP 434008 20924 6025886 2024-02-21 20:41:21.773 2024-02-21 20:41:21.773 1000 FEE 434275 928 6025927 2024-02-21 20:49:25.051 2024-02-21 20:49:25.051 1600 FEE 433042 19033 6025928 2024-02-21 20:49:25.051 2024-02-21 20:49:25.051 14400 TIP 433042 1195 6025930 2024-02-21 20:49:47.11 2024-02-21 20:49:47.11 1600 FEE 433835 18313 6025931 2024-02-21 20:49:47.11 2024-02-21 20:49:47.11 14400 TIP 433835 21585 6025939 2024-02-21 20:50:46.657 2024-02-21 20:50:46.657 2100 FEE 434195 16562 6025940 2024-02-21 20:50:46.657 2024-02-21 20:50:46.657 18900 TIP 434195 7583 6025949 2024-02-21 20:55:59.769 2024-02-21 20:55:59.769 4000 FEE 434243 8095 6025950 2024-02-21 20:55:59.769 2024-02-21 20:55:59.769 36000 TIP 434243 21555 6026001 2024-02-21 21:10:00.477 2024-02-21 21:10:00.477 7100 FEE 434097 827 6026002 2024-02-21 21:10:00.477 2024-02-21 21:10:00.477 63900 TIP 434097 21139 6026008 2024-02-21 21:11:35.112 2024-02-21 21:11:35.112 0 FEE 434288 2293 6026014 2024-02-21 21:12:54.969 2024-02-21 21:12:54.969 1000 FEE 434257 16769 6026015 2024-02-21 21:12:54.969 2024-02-21 21:12:54.969 9000 TIP 434257 13042 6026037 2024-02-21 21:17:15.248 2024-02-21 21:17:15.248 300 FEE 433435 16357 6026038 2024-02-21 21:17:15.248 2024-02-21 21:17:15.248 2700 TIP 433435 9078 6026048 2024-02-21 21:19:02.927 2024-02-21 21:19:02.927 700 FEE 433578 20302 6026049 2024-02-21 21:19:02.927 2024-02-21 21:19:02.927 6300 TIP 433578 1620 6026055 2024-02-21 21:21:26.445 2024-02-21 21:21:26.445 1000 FEE 434296 7978 6026099 2024-02-21 21:27:12.58 2024-02-21 21:27:12.58 1000 FEE 434297 16267 6026100 2024-02-21 21:27:12.58 2024-02-21 21:27:12.58 9000 TIP 434297 20326 6026104 2024-02-21 21:27:34.697 2024-02-21 21:27:34.697 1000 FEE 434304 19815 6026106 2024-02-21 21:27:39.8 2024-02-21 21:27:39.8 300 FEE 434211 3709 6026107 2024-02-21 21:27:39.8 2024-02-21 21:27:39.8 2700 TIP 434211 7978 6026121 2024-02-21 21:28:19.397 2024-02-21 21:28:19.397 1000 FEE 434177 811 6026122 2024-02-21 21:28:19.397 2024-02-21 21:28:19.397 9000 TIP 434177 14663 6026137 2024-02-21 21:30:57.43 2024-02-21 21:30:57.43 10000 FEE 433943 16350 6026138 2024-02-21 21:30:57.43 2024-02-21 21:30:57.43 90000 TIP 433943 14651 6026142 2024-02-21 21:31:25.296 2024-02-21 21:31:25.296 100 FEE 434119 8287 6026143 2024-02-21 21:31:25.296 2024-02-21 21:31:25.296 900 TIP 434119 980 6026158 2024-02-21 21:33:10.224 2024-02-21 21:33:10.224 0 FEE 434307 946 6026173 2024-02-21 21:33:56.249 2024-02-21 21:33:56.249 0 FEE 434307 1244 6026181 2024-02-21 21:34:17.268 2024-02-21 21:34:17.268 100 FEE 434274 16309 6026182 2024-02-21 21:34:17.268 2024-02-21 21:34:17.268 900 TIP 434274 6335 6026183 2024-02-21 21:34:17.544 2024-02-21 21:34:17.544 900 FEE 434274 1772 6026184 2024-02-21 21:34:17.544 2024-02-21 21:34:17.544 8100 TIP 434274 16230 6026185 2024-02-21 21:34:18.866 2024-02-21 21:34:18.866 9000 FEE 434274 17172 6026186 2024-02-21 21:34:18.866 2024-02-21 21:34:18.866 81000 TIP 434274 8423 6026189 2024-02-21 21:34:37.525 2024-02-21 21:34:37.525 900 FEE 434031 1180 6026190 2024-02-21 21:34:37.525 2024-02-21 21:34:37.525 8100 TIP 434031 21042 6026212 2024-02-21 21:35:29.383 2024-02-21 21:35:29.383 0 FEE 434307 18904 6026220 2024-02-21 21:36:42.258 2024-02-21 21:36:42.258 1000 FEE 434312 20036 6026222 2024-02-21 21:37:58.786 2024-02-21 21:37:58.786 1000 FEE 434313 8168 6026257 2024-02-21 21:48:21.336 2024-02-21 21:48:21.336 3300 FEE 433890 749 6026258 2024-02-21 21:48:21.336 2024-02-21 21:48:21.336 29700 TIP 433890 9551 6026259 2024-02-21 21:48:21.56 2024-02-21 21:48:21.56 3300 FEE 433890 20377 6026260 2024-02-21 21:48:21.56 2024-02-21 21:48:21.56 29700 TIP 433890 891 6026264 2024-02-21 21:48:36.654 2024-02-21 21:48:36.654 1000 FEE 434320 9330 6026266 2024-02-21 21:49:00.352 2024-02-21 21:49:00.352 0 FEE 434320 19524 6026286 2024-02-21 21:51:17.79 2024-02-21 21:51:17.79 1000 FEE 434309 10821 6026287 2024-02-21 21:51:17.79 2024-02-21 21:51:17.79 9000 TIP 434309 1000 6025430 2024-02-21 19:39:27.675 2024-02-21 19:39:27.675 900 TIP 428914 738 6025443 2024-02-21 19:40:39.319 2024-02-21 19:40:39.319 100 FEE 429119 3304 6025444 2024-02-21 19:40:39.319 2024-02-21 19:40:39.319 900 TIP 429119 14247 6025449 2024-02-21 19:41:01.162 2024-02-21 19:41:01.162 100 FEE 434177 14074 6025450 2024-02-21 19:41:01.162 2024-02-21 19:41:01.162 900 TIP 434177 15843 6025476 2024-02-21 19:42:36.912 2024-02-21 19:42:36.912 10000 FEE 434240 20205 6025477 2024-02-21 19:42:38.312 2024-02-21 19:42:38.312 0 FEE 434237 14213 6025484 2024-02-21 19:43:17.369 2024-02-21 19:43:17.369 100 FEE 426799 19633 6025485 2024-02-21 19:43:17.369 2024-02-21 19:43:17.369 900 TIP 426799 8541 6025493 2024-02-21 19:44:45.456 2024-02-21 19:44:45.456 10000 FEE 434222 1718 6025494 2024-02-21 19:44:45.456 2024-02-21 19:44:45.456 90000 TIP 434222 16351 6025505 2024-02-21 19:47:13.728 2024-02-21 19:47:13.728 1000 FEE 434245 18232 6025543 2024-02-21 19:52:01.454 2024-02-21 19:52:01.454 1000 FEE 434250 13046 6025558 2024-02-21 19:56:05.392 2024-02-21 19:56:05.392 200 FEE 434050 11165 6025559 2024-02-21 19:56:05.392 2024-02-21 19:56:05.392 1800 TIP 434050 10728 6025560 2024-02-21 19:56:05.533 2024-02-21 19:56:05.533 100 FEE 434050 11821 6025561 2024-02-21 19:56:05.533 2024-02-21 19:56:05.533 900 TIP 434050 9159 6025573 2024-02-21 19:57:58.546 2024-02-21 19:57:58.546 100000 FEE 434252 20299 6025583 2024-02-21 20:00:52.295 2024-02-21 20:00:52.295 1000 FEE 434255 12808 6025587 2024-02-21 20:01:41.518 2024-02-21 20:01:41.518 1000 FEE 433978 3347 6025588 2024-02-21 20:01:41.518 2024-02-21 20:01:41.518 9000 TIP 433978 20087 6025600 2024-02-21 20:03:24.638 2024-02-21 20:03:24.638 9000 FEE 433978 2293 6025601 2024-02-21 20:03:24.638 2024-02-21 20:03:24.638 81000 TIP 433978 21520 6025642 2024-02-21 20:13:25.258 2024-02-21 20:13:25.258 4000 FEE 434260 11716 6025643 2024-02-21 20:13:25.258 2024-02-21 20:13:25.258 36000 TIP 434260 18995 6025682 2024-02-21 20:17:16.787 2024-02-21 20:17:16.787 1000 FEE 433594 10063 6025683 2024-02-21 20:17:16.787 2024-02-21 20:17:16.787 9000 TIP 433594 18040 6025704 2024-02-21 20:18:00.878 2024-02-21 20:18:00.878 8300 FEE 433937 17984 6025705 2024-02-21 20:18:00.878 2024-02-21 20:18:00.878 74700 TIP 433937 11590 6025763 2024-02-21 20:23:05.119 2024-02-21 20:23:05.119 10000 FEE 427993 14731 6025764 2024-02-21 20:23:05.119 2024-02-21 20:23:05.119 90000 TIP 427993 19848 6025779 2024-02-21 20:23:54.247 2024-02-21 20:23:54.247 1100 FEE 434243 5387 6025780 2024-02-21 20:23:54.247 2024-02-21 20:23:54.247 9900 TIP 434243 9166 6025781 2024-02-21 20:23:54.367 2024-02-21 20:23:54.367 1100 FEE 434243 21338 6025782 2024-02-21 20:23:54.367 2024-02-21 20:23:54.367 9900 TIP 434243 19094 6025807 2024-02-21 20:34:45.51 2024-02-21 20:34:45.51 2300 FEE 434251 18344 6025808 2024-02-21 20:34:45.51 2024-02-21 20:34:45.51 20700 TIP 434251 1286 6025822 2024-02-21 20:35:14.935 2024-02-21 20:35:14.935 1100 FEE 433950 16341 6025823 2024-02-21 20:35:14.935 2024-02-21 20:35:14.935 9900 TIP 433950 20987 6025835 2024-02-21 20:38:07.331 2024-02-21 20:38:07.331 1100 FEE 433889 2775 6025836 2024-02-21 20:38:07.331 2024-02-21 20:38:07.331 9900 TIP 433889 5637 6025837 2024-02-21 20:38:44.228 2024-02-21 20:38:44.228 1000 FEE 434273 21164 6025851 2024-02-21 20:39:24.632 2024-02-21 20:39:24.632 100 FEE 434008 11716 6025852 2024-02-21 20:39:24.632 2024-02-21 20:39:24.632 900 TIP 434008 4167 6025867 2024-02-21 20:39:26.216 2024-02-21 20:39:26.216 100 FEE 434008 20087 6025868 2024-02-21 20:39:26.216 2024-02-21 20:39:26.216 900 TIP 434008 21427 6025918 2024-02-21 20:48:18.369 2024-02-21 20:48:18.369 1600 FEE 433382 16571 6025919 2024-02-21 20:48:18.369 2024-02-21 20:48:18.369 14400 TIP 433382 3478 6025933 2024-02-21 20:50:12.837 2024-02-21 20:50:12.837 800 FEE 433050 20817 6025934 2024-02-21 20:50:12.837 2024-02-21 20:50:12.837 7200 TIP 433050 20439 6026005 2024-02-21 21:10:39.819 2024-02-21 21:10:39.819 21000 FEE 434288 20756 6026010 2024-02-21 21:12:29.386 2024-02-21 21:12:29.386 1000 FEE 434131 6191 6026011 2024-02-21 21:12:29.386 2024-02-21 21:12:29.386 9000 TIP 434131 21391 6026016 2024-02-21 21:12:55.634 2024-02-21 21:12:55.634 1000 FEE 434262 6335 6026017 2024-02-21 21:12:55.634 2024-02-21 21:12:55.634 9000 TIP 434262 20514 6026026 2024-02-21 21:14:49.439 2024-02-21 21:14:49.439 300 FEE 432944 5758 6026027 2024-02-21 21:14:49.439 2024-02-21 21:14:49.439 2700 TIP 432944 6003 6026060 2024-02-21 21:22:35.123 2024-02-21 21:22:35.123 2100 FEE 434243 18608 6026061 2024-02-21 21:22:35.123 2024-02-21 21:22:35.123 18900 TIP 434243 18368 6026068 2024-02-21 21:24:26.081 2024-02-21 21:24:26.081 21000 FEE 434299 620 6026076 2024-02-21 21:25:45.481 2024-02-21 21:25:45.481 1000 FEE 433943 18170 6026077 2024-02-21 21:25:45.481 2024-02-21 21:25:45.481 9000 TIP 433943 14213 6026097 2024-02-21 21:27:11.963 2024-02-21 21:27:11.963 1000 FEE 434297 5173 6026098 2024-02-21 21:27:11.963 2024-02-21 21:27:11.963 9000 TIP 434297 19484 6026113 2024-02-21 21:28:05.609 2024-02-21 21:28:05.609 1000 FEE 434289 10013 6026114 2024-02-21 21:28:05.609 2024-02-21 21:28:05.609 9000 TIP 434289 15367 6026149 2024-02-21 21:32:38.558 2024-02-21 21:32:38.558 1000 FEE 87857 19329 6026150 2024-02-21 21:32:38.558 2024-02-21 21:32:38.558 9000 TIP 87857 10493 6026153 2024-02-21 21:33:02.708 2024-02-21 21:33:02.708 4000 FEE 434307 16954 6026154 2024-02-21 21:33:02.708 2024-02-21 21:33:02.708 36000 TIP 434307 21386 6026155 2024-02-21 21:33:05.141 2024-02-21 21:33:05.141 4000 FEE 434307 10728 6026156 2024-02-21 21:33:05.141 2024-02-21 21:33:05.141 36000 TIP 434307 10270 6026162 2024-02-21 21:33:17.999 2024-02-21 21:33:17.999 1000 FEE 433740 14705 6026163 2024-02-21 21:33:17.999 2024-02-21 21:33:17.999 9000 TIP 433740 2335 6026177 2024-02-21 21:34:12.026 2024-02-21 21:34:12.026 900 FEE 434098 6149 6026178 2024-02-21 21:34:12.026 2024-02-21 21:34:12.026 8100 TIP 434098 19121 6026204 2024-02-21 21:35:13.744 2024-02-21 21:35:13.744 1000 FEE 433333 19909 6026205 2024-02-21 21:35:13.744 2024-02-21 21:35:13.744 9000 TIP 433333 17209 6026210 2024-02-21 21:35:29.192 2024-02-21 21:35:29.192 9000 FEE 434300 917 6026211 2024-02-21 21:35:29.192 2024-02-21 21:35:29.192 81000 TIP 434300 27 6026219 2024-02-21 21:36:12.648 2024-02-21 21:36:12.648 0 FEE 434307 17638 6026239 2024-02-21 21:44:59.514 2024-02-21 21:44:59.514 10000 FEE 434278 17522 6026240 2024-02-21 21:44:59.514 2024-02-21 21:44:59.514 90000 TIP 434278 11145 6026243 2024-02-21 21:45:24.361 2024-02-21 21:45:24.361 1000 FEE 434316 17183 6026268 2024-02-21 21:49:11.263 2024-02-21 21:49:11.263 1000 FEE 434319 11458 6026269 2024-02-21 21:49:11.263 2024-02-21 21:49:11.263 9000 TIP 434319 19661 6026293 2024-02-21 21:52:07.605 2024-02-21 21:52:07.605 1000 FEE 434320 1468 6026294 2024-02-21 21:52:07.605 2024-02-21 21:52:07.605 9000 TIP 434320 13174 6026304 2024-02-21 21:53:05.277 2024-02-21 21:53:05.277 200 FEE 434319 4177 6026305 2024-02-21 21:53:05.277 2024-02-21 21:53:05.277 1800 TIP 434319 20299 6026306 2024-02-21 21:53:05.654 2024-02-21 21:53:05.654 400 FEE 434319 21233 6026307 2024-02-21 21:53:05.654 2024-02-21 21:53:05.654 3600 TIP 434319 21441 6026318 2024-02-21 21:53:23.772 2024-02-21 21:53:23.772 2100 FEE 434319 19660 6026319 2024-02-21 21:53:23.772 2024-02-21 21:53:23.772 18900 TIP 434319 18690 6026333 2024-02-21 21:54:45.249 2024-02-21 21:54:45.249 3300 FEE 433797 9529 6026334 2024-02-21 21:54:45.249 2024-02-21 21:54:45.249 29700 TIP 433797 20623 6026376 2024-02-21 21:58:17.697 2024-02-21 21:58:17.697 1000000 FEE 434332 7913 6026383 2024-02-21 21:58:19.021 2024-02-21 21:58:19.021 1000 FEE 433878 1605 6026384 2024-02-21 21:58:19.021 2024-02-21 21:58:19.021 9000 TIP 433878 17227 6026385 2024-02-21 21:58:19.302 2024-02-21 21:58:19.302 1000 FEE 433878 18372 6026386 2024-02-21 21:58:19.302 2024-02-21 21:58:19.302 9000 TIP 433878 12278 6026393 2024-02-21 21:58:53.47 2024-02-21 21:58:53.47 1000 FEE 434333 19037 6026398 2024-02-21 21:59:02.082 2024-02-21 21:59:02.082 3300 FEE 434322 825 6026399 2024-02-21 21:59:02.082 2024-02-21 21:59:02.082 29700 TIP 434322 657 6026403 2024-02-21 21:59:52.005 2024-02-21 21:59:52.005 1000 FEE 434335 20022 6026431 2024-02-21 22:02:15.945 2024-02-21 22:02:15.945 1000 FEE 433943 20826 6026432 2024-02-21 22:02:15.945 2024-02-21 22:02:15.945 9000 TIP 433943 7659 6025461 2024-02-21 19:41:03.561 2024-02-21 19:41:03.561 100 FEE 434177 11329 6025462 2024-02-21 19:41:03.561 2024-02-21 19:41:03.561 900 TIP 434177 5455 6025468 2024-02-21 19:41:25.724 2024-02-21 19:41:25.724 1000 FEE 434237 20110 6025492 2024-02-21 19:44:33.3 2024-02-21 19:44:33.3 0 FEE 434239 18271 6025496 2024-02-21 19:45:31.075 2024-02-21 19:45:31.075 1000 FEE 434242 21501 6025506 2024-02-21 19:47:31.952 2024-02-21 19:47:31.952 12800 FEE 433851 27 6025507 2024-02-21 19:47:31.952 2024-02-21 19:47:31.952 115200 TIP 433851 18309 6025519 2024-02-21 19:50:16.451 2024-02-21 19:50:16.451 0 FEE 434242 15282 6025529 2024-02-21 19:51:07.544 2024-02-21 19:51:07.544 100 FEE 434148 20756 6025530 2024-02-21 19:51:07.544 2024-02-21 19:51:07.544 900 TIP 434148 2056 6025550 2024-02-21 19:55:46.668 2024-02-21 19:55:46.668 100 FEE 427434 20436 6025551 2024-02-21 19:55:46.668 2024-02-21 19:55:46.668 900 TIP 427434 20837 6025552 2024-02-21 19:56:01.507 2024-02-21 19:56:01.507 1000 FEE 434251 20745 6025584 2024-02-21 20:00:53.902 2024-02-21 20:00:53.902 1000 FEE 434019 20596 6025585 2024-02-21 20:00:53.902 2024-02-21 20:00:53.902 9000 TIP 434019 16309 6025599 2024-02-21 20:03:05.34 2024-02-21 20:03:05.34 1000 FEE 434256 20573 6025646 2024-02-21 20:14:16.432 2024-02-21 20:14:16.432 10000 FEE 434264 21338 6025655 2024-02-21 20:16:57.547 2024-02-21 20:16:57.547 1000 FEE 433844 14465 6025656 2024-02-21 20:16:57.547 2024-02-21 20:16:57.547 9000 TIP 433844 20577 6025661 2024-02-21 20:17:00.802 2024-02-21 20:17:00.802 1000 FEE 433978 11075 6025662 2024-02-21 20:17:00.802 2024-02-21 20:17:00.802 9000 TIP 433978 20614 6025665 2024-02-21 20:17:03.703 2024-02-21 20:17:03.703 1000 FEE 433889 13599 6025666 2024-02-21 20:17:03.703 2024-02-21 20:17:03.703 9000 TIP 433889 9985 6025672 2024-02-21 20:17:09.509 2024-02-21 20:17:09.509 1000 FEE 434139 21148 6025673 2024-02-21 20:17:09.509 2024-02-21 20:17:09.509 9000 TIP 434139 1320 6025676 2024-02-21 20:17:13.264 2024-02-21 20:17:13.264 1000 FEE 433886 714 6025677 2024-02-21 20:17:13.264 2024-02-21 20:17:13.264 9000 TIP 433886 27 6025690 2024-02-21 20:17:22.162 2024-02-21 20:17:22.162 1000 FEE 434243 18199 6025691 2024-02-21 20:17:22.162 2024-02-21 20:17:22.162 9000 TIP 434243 12606 6025700 2024-02-21 20:17:45.12 2024-02-21 20:17:45.12 1000 FEE 434260 18873 6025701 2024-02-21 20:17:45.12 2024-02-21 20:17:45.12 9000 TIP 434260 19907 6025706 2024-02-21 20:18:00.954 2024-02-21 20:18:00.954 8300 FEE 433937 15161 6025707 2024-02-21 20:18:00.954 2024-02-21 20:18:00.954 74700 TIP 433937 9816 6025708 2024-02-21 20:18:01.045 2024-02-21 20:18:01.045 1000 FEE 434213 17041 6025709 2024-02-21 20:18:01.045 2024-02-21 20:18:01.045 9000 TIP 434213 827 6025731 2024-02-21 20:18:26.164 2024-02-21 20:18:26.164 1000 FEE 434189 1571 6025732 2024-02-21 20:18:26.164 2024-02-21 20:18:26.164 9000 TIP 434189 17838 6025743 2024-02-21 20:18:38.489 2024-02-21 20:18:38.489 11000 FEE 434265 21019 6025757 2024-02-21 20:20:50.478 2024-02-21 20:20:50.478 10000 FEE 434160 15326 6025758 2024-02-21 20:20:50.478 2024-02-21 20:20:50.478 90000 TIP 434160 2711 6025773 2024-02-21 20:23:53.522 2024-02-21 20:23:53.522 1100 FEE 434189 16214 6025774 2024-02-21 20:23:53.522 2024-02-21 20:23:53.522 9900 TIP 434189 20179 6025775 2024-02-21 20:23:53.667 2024-02-21 20:23:53.667 1100 FEE 434189 17064 6025776 2024-02-21 20:23:53.667 2024-02-21 20:23:53.667 9900 TIP 434189 17817 6025805 2024-02-21 20:34:45.432 2024-02-21 20:34:45.432 2300 FEE 434251 664 6025806 2024-02-21 20:34:45.432 2024-02-21 20:34:45.432 20700 TIP 434251 20110 6025813 2024-02-21 20:34:45.879 2024-02-21 20:34:45.879 2300 FEE 434251 620 6025814 2024-02-21 20:34:45.879 2024-02-21 20:34:45.879 20700 TIP 434251 19030 6025831 2024-02-21 20:36:14.396 2024-02-21 20:36:14.396 1100 FEE 433520 12049 6025832 2024-02-21 20:36:14.396 2024-02-21 20:36:14.396 9900 TIP 433520 2576 6025849 2024-02-21 20:39:24.389 2024-02-21 20:39:24.389 100 FEE 434008 21269 6025850 2024-02-21 20:39:24.389 2024-02-21 20:39:24.389 900 TIP 434008 780 6025869 2024-02-21 20:39:26.471 2024-02-21 20:39:26.471 100 FEE 434008 8998 6025870 2024-02-21 20:39:26.471 2024-02-21 20:39:26.471 900 TIP 434008 19943 6025875 2024-02-21 20:39:27.185 2024-02-21 20:39:27.185 100 FEE 434008 13553 6025876 2024-02-21 20:39:27.185 2024-02-21 20:39:27.185 900 TIP 434008 20099 6025877 2024-02-21 20:39:27.4 2024-02-21 20:39:27.4 100 FEE 434008 1010 6025878 2024-02-21 20:39:27.4 2024-02-21 20:39:27.4 900 TIP 434008 10731 6025892 2024-02-21 20:43:32.812 2024-02-21 20:43:32.812 100000 FEE 434277 9350 6025907 2024-02-21 20:45:27.624 2024-02-21 20:45:27.624 10000 FEE 434278 2101 6025924 2024-02-21 20:48:56.692 2024-02-21 20:48:56.692 800 FEE 433962 20776 6025925 2024-02-21 20:48:56.692 2024-02-21 20:48:56.692 7200 TIP 433962 16329 6025935 2024-02-21 20:50:33.532 2024-02-21 20:50:33.532 800 FEE 433121 2309 6025936 2024-02-21 20:50:33.532 2024-02-21 20:50:33.532 7200 TIP 433121 14404 6025978 2024-02-21 21:03:29.114 2024-02-21 21:03:29.114 500 FEE 434139 19435 6025979 2024-02-21 21:03:29.114 2024-02-21 21:03:29.114 4500 TIP 434139 21242 6025993 2024-02-21 21:05:50.881 2024-02-21 21:05:50.881 100000 FEE 434285 11220 6026022 2024-02-21 21:13:46.497 2024-02-21 21:13:46.497 1000 FEE 434291 12188 6026047 2024-02-21 21:18:55.896 2024-02-21 21:18:55.896 1000 FEE 434295 6578 6026058 2024-02-21 21:22:23.711 2024-02-21 21:22:23.711 2100 FEE 434139 1617 6026059 2024-02-21 21:22:23.711 2024-02-21 21:22:23.711 18900 TIP 434139 20183 6026074 2024-02-21 21:25:40.939 2024-02-21 21:25:40.939 4200 FEE 433878 3461 6026075 2024-02-21 21:25:40.939 2024-02-21 21:25:40.939 37800 TIP 433878 14152 6026080 2024-02-21 21:25:58.488 2024-02-21 21:25:58.488 1000 FEE 433844 15226 6026081 2024-02-21 21:25:58.488 2024-02-21 21:25:58.488 9000 TIP 433844 18556 6026085 2024-02-21 21:26:39.201 2024-02-21 21:26:39.201 3100 FEE 434296 981 6026086 2024-02-21 21:26:39.201 2024-02-21 21:26:39.201 27900 TIP 434296 763 6026092 2024-02-21 21:27:08.726 2024-02-21 21:27:08.726 1000 FEE 434302 11648 6026110 2024-02-21 21:28:04.581 2024-02-21 21:28:04.581 1000 FEE 434289 19662 6026111 2024-02-21 21:28:04.581 2024-02-21 21:28:04.581 9000 TIP 434289 19852 6026127 2024-02-21 21:28:55.698 2024-02-21 21:28:55.698 100 FEE 434030 11750 6026128 2024-02-21 21:28:55.698 2024-02-21 21:28:55.698 900 TIP 434030 8796 6026136 2024-02-21 21:30:46.456 2024-02-21 21:30:46.456 1000 FEE 434306 11288 6026144 2024-02-21 21:32:03.798 2024-02-21 21:32:03.798 1000 FEE 434307 13055 6026152 2024-02-21 21:32:47.858 2024-02-21 21:32:47.858 1000 FEE 434310 15115 6026191 2024-02-21 21:34:38.092 2024-02-21 21:34:38.092 9000 FEE 434031 691 6026192 2024-02-21 21:34:38.092 2024-02-21 21:34:38.092 81000 TIP 434031 17106 6026208 2024-02-21 21:35:29.132 2024-02-21 21:35:29.132 900 FEE 434300 21155 6026209 2024-02-21 21:35:29.132 2024-02-21 21:35:29.132 8100 TIP 434300 9036 6026255 2024-02-21 21:48:21.144 2024-02-21 21:48:21.144 3300 FEE 433890 1433 6026256 2024-02-21 21:48:21.144 2024-02-21 21:48:21.144 29700 TIP 433890 17708 6026265 2024-02-21 21:48:51.562 2024-02-21 21:48:51.562 10000 FEE 434321 7809 6026275 2024-02-21 21:50:26.468 2024-02-21 21:50:26.468 3300 FEE 434276 19502 6026276 2024-02-21 21:50:26.468 2024-02-21 21:50:26.468 29700 TIP 434276 12072 6026277 2024-02-21 21:50:27.088 2024-02-21 21:50:27.088 3300 FEE 434276 21172 6026278 2024-02-21 21:50:27.088 2024-02-21 21:50:27.088 29700 TIP 434276 720 6026279 2024-02-21 21:50:55.837 2024-02-21 21:50:55.837 1000 FEE 434278 21062 6026280 2024-02-21 21:50:55.837 2024-02-21 21:50:55.837 9000 TIP 434278 2010 6026288 2024-02-21 21:52:03.909 2024-02-21 21:52:03.909 1000 FEE 434319 5758 6026289 2024-02-21 21:52:03.909 2024-02-21 21:52:03.909 9000 TIP 434319 20660 6026302 2024-02-21 21:53:05.14 2024-02-21 21:53:05.14 200 FEE 434319 20370 6026303 2024-02-21 21:53:05.14 2024-02-21 21:53:05.14 1800 TIP 434319 17817 6026326 2024-02-21 21:53:42.604 2024-02-21 21:53:42.604 1000 FEE 434326 21491 6026327 2024-02-21 21:53:42.845 2024-02-21 21:53:42.845 2100 FEE 434319 20143 6026328 2024-02-21 21:53:42.845 2024-02-21 21:53:42.845 18900 TIP 434319 1124 6026330 2024-02-21 21:54:30.265 2024-02-21 21:54:30.265 0 FEE 434319 18678 6026346 2024-02-21 21:55:25.589 2024-02-21 21:55:25.589 300 FEE 434298 15100 6025463 2024-02-21 19:41:04.023 2024-02-21 19:41:04.023 1000 STREAM 141924 19613 6025474 2024-02-21 19:42:04.026 2024-02-21 19:42:04.026 1000 STREAM 141924 19142 6025489 2024-02-21 19:44:04.041 2024-02-21 19:44:04.041 1000 STREAM 141924 12819 6025495 2024-02-21 19:45:04.045 2024-02-21 19:45:04.045 1000 STREAM 141924 19906 6025504 2024-02-21 19:47:04.049 2024-02-21 19:47:04.049 1000 STREAM 141924 18311 6025508 2024-02-21 19:48:04.059 2024-02-21 19:48:04.059 1000 STREAM 141924 21612 6025512 2024-02-21 19:49:04.054 2024-02-21 19:49:04.054 1000 STREAM 141924 18174 6025547 2024-02-21 19:53:04.083 2024-02-21 19:53:04.083 1000 STREAM 141924 20871 6025572 2024-02-21 19:57:04.11 2024-02-21 19:57:04.11 1000 STREAM 141924 6537 6025575 2024-02-21 19:59:04.128 2024-02-21 19:59:04.128 1000 STREAM 141924 4014 6025597 2024-02-21 20:02:04.14 2024-02-21 20:02:04.14 1000 STREAM 141924 13097 6025598 2024-02-21 20:03:04.135 2024-02-21 20:03:04.135 1000 STREAM 141924 18426 6025604 2024-02-21 20:04:04.137 2024-02-21 20:04:04.137 1000 STREAM 141924 17014 6025610 2024-02-21 20:06:04.149 2024-02-21 20:06:04.149 1000 STREAM 141924 12175 6025614 2024-02-21 20:07:04.143 2024-02-21 20:07:04.143 1000 STREAM 141924 8095 6025635 2024-02-21 20:10:04.196 2024-02-21 20:10:04.196 1000 STREAM 141924 8162 6025640 2024-02-21 20:12:04.188 2024-02-21 20:12:04.188 1000 STREAM 141924 9333 6025641 2024-02-21 20:13:04.191 2024-02-21 20:13:04.191 1000 STREAM 141924 19546 6025647 2024-02-21 20:15:04.196 2024-02-21 20:15:04.196 1000 STREAM 141924 19103 6025667 2024-02-21 20:17:04.196 2024-02-21 20:17:04.196 1000 STREAM 141924 14857 6025755 2024-02-21 20:20:04.221 2024-02-21 20:20:04.221 1000 STREAM 141924 6765 6025760 2024-02-21 20:22:04.202 2024-02-21 20:22:04.202 1000 STREAM 141924 1738 6025762 2024-02-21 20:23:04.214 2024-02-21 20:23:04.214 1000 STREAM 141924 20109 6025787 2024-02-21 20:24:04.217 2024-02-21 20:24:04.217 1000 STREAM 141924 9365 6025797 2024-02-21 20:30:04.243 2024-02-21 20:30:04.243 1000 STREAM 141924 19533 6025798 2024-02-21 20:31:04.257 2024-02-21 20:31:04.257 1000 STREAM 141924 14357 6025801 2024-02-21 20:33:04.262 2024-02-21 20:33:04.262 1000 STREAM 141924 20551 6025821 2024-02-21 20:35:04.28 2024-02-21 20:35:04.28 1000 STREAM 141924 10270 6025830 2024-02-21 20:36:04.274 2024-02-21 20:36:04.274 1000 STREAM 141924 19661 6025834 2024-02-21 20:38:04.287 2024-02-21 20:38:04.287 1000 STREAM 141924 18040 6025838 2024-02-21 20:39:04.29 2024-02-21 20:39:04.29 1000 STREAM 141924 19668 6025883 2024-02-21 20:40:04.301 2024-02-21 20:40:04.301 1000 STREAM 141924 19662 6025889 2024-02-21 20:42:04.3 2024-02-21 20:42:04.3 1000 STREAM 141924 674 6025891 2024-02-21 20:43:04.308 2024-02-21 20:43:04.308 1000 STREAM 141924 20302 6025926 2024-02-21 20:49:04.34 2024-02-21 20:49:04.34 1000 STREAM 141924 17714 6025944 2024-02-21 20:52:04.334 2024-02-21 20:52:04.334 1000 STREAM 141924 19735 6025945 2024-02-21 20:53:04.341 2024-02-21 20:53:04.341 1000 STREAM 141924 10934 6025946 2024-02-21 20:54:04.346 2024-02-21 20:54:04.346 1000 STREAM 141924 18412 6025947 2024-02-21 20:55:04.341 2024-02-21 20:55:04.341 1000 STREAM 141924 19267 6025481 2024-02-21 19:43:04.037 2024-02-21 19:43:04.037 1000 STREAM 141924 12188 6025497 2024-02-21 19:46:04.051 2024-02-21 19:46:04.051 1000 STREAM 141924 17976 6025516 2024-02-21 19:50:04.059 2024-02-21 19:50:04.059 1000 STREAM 141924 19864 6025522 2024-02-21 19:51:04.078 2024-02-21 19:51:04.078 1000 STREAM 141924 19469 6025544 2024-02-21 19:52:04.078 2024-02-21 19:52:04.078 1000 STREAM 141924 16858 6025548 2024-02-21 19:54:04.09 2024-02-21 19:54:04.09 1000 STREAM 141924 766 6025549 2024-02-21 19:55:04.112 2024-02-21 19:55:04.112 1000 STREAM 141924 16988 6025553 2024-02-21 19:56:04.113 2024-02-21 19:56:04.113 1000 STREAM 141924 2061 6025574 2024-02-21 19:58:04.137 2024-02-21 19:58:04.137 1000 STREAM 141924 17517 6025580 2024-02-21 20:00:04.167 2024-02-21 20:00:04.167 1000 STREAM 141924 919 6025586 2024-02-21 20:01:04.132 2024-02-21 20:01:04.132 1000 STREAM 141924 7682 6025608 2024-02-21 20:05:04.145 2024-02-21 20:05:04.145 1000 STREAM 141924 19263 6025615 2024-02-21 20:08:04.158 2024-02-21 20:08:04.158 1000 STREAM 141924 21400 6025616 2024-02-21 20:09:04.18 2024-02-21 20:09:04.18 1000 STREAM 141924 797 6025638 2024-02-21 20:11:04.192 2024-02-21 20:11:04.192 1000 STREAM 141924 8985 6025645 2024-02-21 20:14:04.189 2024-02-21 20:14:04.189 1000 STREAM 141924 1208 6025650 2024-02-21 20:16:04.194 2024-02-21 20:16:04.194 1000 STREAM 141924 1624 6025720 2024-02-21 20:18:04.21 2024-02-21 20:18:04.21 1000 STREAM 141924 1785 6025752 2024-02-21 20:19:04.199 2024-02-21 20:19:04.199 1000 STREAM 141924 19458 6025759 2024-02-21 20:21:04.211 2024-02-21 20:21:04.211 1000 STREAM 141924 21044 6025788 2024-02-21 20:25:04.221 2024-02-21 20:25:04.221 1000 STREAM 141924 15624 6025789 2024-02-21 20:26:04.226 2024-02-21 20:26:04.226 1000 STREAM 141924 15719 6025790 2024-02-21 20:27:04.226 2024-02-21 20:27:04.226 1000 STREAM 141924 9809 6025793 2024-02-21 20:28:04.233 2024-02-21 20:28:04.233 1000 STREAM 141924 1836 6025795 2024-02-21 20:29:04.241 2024-02-21 20:29:04.241 1000 STREAM 141924 14370 6025800 2024-02-21 20:32:04.261 2024-02-21 20:32:04.261 1000 STREAM 141924 2327 6025803 2024-02-21 20:34:04.265 2024-02-21 20:34:04.265 1000 STREAM 141924 10063 6025833 2024-02-21 20:37:04.292 2024-02-21 20:37:04.292 1000 STREAM 141924 12334 6025885 2024-02-21 20:41:04.293 2024-02-21 20:41:04.293 1000 STREAM 141924 12738 6025893 2024-02-21 20:44:04.312 2024-02-21 20:44:04.312 1000 STREAM 141924 20218 6025906 2024-02-21 20:45:04.296 2024-02-21 20:45:04.296 1000 STREAM 141924 4487 6025908 2024-02-21 20:46:04.305 2024-02-21 20:46:04.305 1000 STREAM 141924 9705 6025909 2024-02-21 20:47:04.31 2024-02-21 20:47:04.31 1000 STREAM 141924 9036 6025917 2024-02-21 20:48:04.318 2024-02-21 20:48:04.318 1000 STREAM 141924 2098 6025932 2024-02-21 20:50:04.325 2024-02-21 20:50:04.325 1000 STREAM 141924 20225 6025941 2024-02-21 20:51:04.328 2024-02-21 20:51:04.328 1000 STREAM 141924 20663 6025579 2024-02-21 19:59:55.888 2024-02-21 19:59:55.888 0 FEE 434248 18409 6025582 2024-02-21 20:00:05.161 2024-02-21 20:00:05.161 1000 FEE 434254 18426 6025591 2024-02-21 20:01:50.486 2024-02-21 20:01:50.486 8300 FEE 434243 11897 6025592 2024-02-21 20:01:50.486 2024-02-21 20:01:50.486 74700 TIP 434243 9346 6025602 2024-02-21 20:03:40.637 2024-02-21 20:03:40.637 1000 FEE 433958 9184 6025603 2024-02-21 20:03:40.637 2024-02-21 20:03:40.637 9000 TIP 433958 18539 6025617 2024-02-21 20:09:28.185 2024-02-21 20:09:28.185 100 FEE 434127 6202 6025618 2024-02-21 20:09:28.185 2024-02-21 20:09:28.185 900 TIP 434127 20854 6025684 2024-02-21 20:17:17.761 2024-02-21 20:17:17.761 1000 FEE 434013 18409 6025685 2024-02-21 20:17:17.761 2024-02-21 20:17:17.761 9000 TIP 434013 2206 6025686 2024-02-21 20:17:19.109 2024-02-21 20:17:19.109 1000 FEE 434243 8380 6025687 2024-02-21 20:17:19.109 2024-02-21 20:17:19.109 9000 TIP 434243 7125 6025688 2024-02-21 20:17:20.986 2024-02-21 20:17:20.986 1000 FEE 433499 9421 6025689 2024-02-21 20:17:20.986 2024-02-21 20:17:20.986 9000 TIP 433499 2075 6025694 2024-02-21 20:17:43.018 2024-02-21 20:17:43.018 1000 FEE 434260 2748 6025695 2024-02-21 20:17:43.018 2024-02-21 20:17:43.018 9000 TIP 434260 18772 6025725 2024-02-21 20:18:10.674 2024-02-21 20:18:10.674 2100 FEE 434208 7960 6025726 2024-02-21 20:18:10.674 2024-02-21 20:18:10.674 18900 TIP 434208 1712 6025748 2024-02-21 20:18:56.427 2024-02-21 20:18:56.427 20000 FEE 434160 14818 6025749 2024-02-21 20:18:56.427 2024-02-21 20:18:56.427 180000 TIP 434160 19924 6025769 2024-02-21 20:23:53.307 2024-02-21 20:23:53.307 1100 FEE 434189 11477 6025770 2024-02-21 20:23:53.307 2024-02-21 20:23:53.307 9900 TIP 434189 9026 6025783 2024-02-21 20:23:54.473 2024-02-21 20:23:54.473 1100 FEE 434243 15266 6025784 2024-02-21 20:23:54.473 2024-02-21 20:23:54.473 9900 TIP 434243 20554 6025817 2024-02-21 20:34:46.137 2024-02-21 20:34:46.137 2300 FEE 434251 18556 6025818 2024-02-21 20:34:46.137 2024-02-21 20:34:46.137 20700 TIP 434251 15409 6025819 2024-02-21 20:34:46.433 2024-02-21 20:34:46.433 4600 FEE 434251 21541 6025820 2024-02-21 20:34:46.433 2024-02-21 20:34:46.433 41400 TIP 434251 15351 6025841 2024-02-21 20:39:22.233 2024-02-21 20:39:22.233 100 FEE 434008 14785 6025842 2024-02-21 20:39:22.233 2024-02-21 20:39:22.233 900 TIP 434008 2098 6025847 2024-02-21 20:39:24.201 2024-02-21 20:39:24.201 100 FEE 434008 19243 6025848 2024-02-21 20:39:24.201 2024-02-21 20:39:24.201 900 TIP 434008 5160 6025890 2024-02-21 20:42:14.887 2024-02-21 20:42:14.887 1000 FEE 434276 18076 6025898 2024-02-21 20:44:29.244 2024-02-21 20:44:29.244 1000 FEE 434267 15594 6025899 2024-02-21 20:44:29.244 2024-02-21 20:44:29.244 9000 TIP 434267 1723 6025904 2024-02-21 20:44:59.467 2024-02-21 20:44:59.467 800 FEE 434026 1307 6025905 2024-02-21 20:44:59.467 2024-02-21 20:44:59.467 7200 TIP 434026 4167 6025951 2024-02-21 20:56:02.59 2024-02-21 20:56:02.59 4000 FEE 434013 9366 6025952 2024-02-21 20:56:02.59 2024-02-21 20:56:02.59 36000 TIP 434013 15544 6025955 2024-02-21 20:57:15.294 2024-02-21 20:57:15.294 2100 FEE 433844 21373 6025956 2024-02-21 20:57:15.294 2024-02-21 20:57:15.294 18900 TIP 433844 16410 6025964 2024-02-21 21:01:03.948 2024-02-21 21:01:03.948 100000 FEE 434283 6191 6025980 2024-02-21 21:03:29.23 2024-02-21 21:03:29.23 500 FEE 434139 715 6025981 2024-02-21 21:03:29.23 2024-02-21 21:03:29.23 4500 TIP 434139 17392 6025984 2024-02-21 21:03:30.217 2024-02-21 21:03:30.217 500 FEE 434139 2326 6025985 2024-02-21 21:03:30.217 2024-02-21 21:03:30.217 4500 TIP 434139 2543 6026006 2024-02-21 21:11:02.319 2024-02-21 21:11:02.319 100000 FEE 434289 17944 6026073 2024-02-21 21:25:34.422 2024-02-21 21:25:34.422 10000 FEE 434301 1985 6026089 2024-02-21 21:26:42.529 2024-02-21 21:26:42.529 3100 FEE 434275 5776 6026090 2024-02-21 21:26:42.529 2024-02-21 21:26:42.529 27900 TIP 434275 21493 6026108 2024-02-21 21:27:53.32 2024-02-21 21:27:53.32 100 FEE 434047 1224 6026109 2024-02-21 21:27:53.32 2024-02-21 21:27:53.32 900 TIP 434047 7510 6026140 2024-02-21 21:31:14.391 2024-02-21 21:31:14.391 100 FEE 433761 21140 6026141 2024-02-21 21:31:14.391 2024-02-21 21:31:14.391 900 TIP 433761 17523 6026146 2024-02-21 21:32:11.703 2024-02-21 21:32:11.703 1000 FEE 434308 5865 6026151 2024-02-21 21:32:45.266 2024-02-21 21:32:45.266 1000 FEE 434309 3686 6026171 2024-02-21 21:33:54.684 2024-02-21 21:33:54.684 700 FEE 434278 940 6026172 2024-02-21 21:33:54.684 2024-02-21 21:33:54.684 6300 TIP 434278 2710 6026175 2024-02-21 21:34:11.784 2024-02-21 21:34:11.784 100 FEE 434098 15560 6026176 2024-02-21 21:34:11.784 2024-02-21 21:34:11.784 900 TIP 434098 20674 6026195 2024-02-21 21:35:00.252 2024-02-21 21:35:00.252 900 FEE 433999 9109 6026196 2024-02-21 21:35:00.252 2024-02-21 21:35:00.252 8100 TIP 433999 18581 6026202 2024-02-21 21:35:09.43 2024-02-21 21:35:09.43 4000 FEE 434302 917 6026203 2024-02-21 21:35:09.43 2024-02-21 21:35:09.43 36000 TIP 434302 5865 6026247 2024-02-21 21:47:52.212 2024-02-21 21:47:52.212 3300 FEE 434292 19773 6026248 2024-02-21 21:47:52.212 2024-02-21 21:47:52.212 29700 TIP 434292 20606 6026316 2024-02-21 21:53:23.568 2024-02-21 21:53:23.568 2100 FEE 434319 12946 6026317 2024-02-21 21:53:23.568 2024-02-21 21:53:23.568 18900 TIP 434319 2709 6026337 2024-02-21 21:54:53.591 2024-02-21 21:54:53.591 1000 FEE 434310 2077 6026338 2024-02-21 21:54:53.591 2024-02-21 21:54:53.591 9000 TIP 434310 9427 6026344 2024-02-21 21:55:17.867 2024-02-21 21:55:17.867 1700 FEE 434318 16353 6026345 2024-02-21 21:55:17.867 2024-02-21 21:55:17.867 15300 TIP 434318 20636 6026351 2024-02-21 21:55:52.888 2024-02-21 21:55:52.888 2100 FEE 434319 19952 6026352 2024-02-21 21:55:52.888 2024-02-21 21:55:52.888 18900 TIP 434319 20133 6026368 2024-02-21 21:57:38.898 2024-02-21 21:57:38.898 1000 FEE 434331 6164 6026391 2024-02-21 21:58:52.177 2024-02-21 21:58:52.177 1000 FEE 434300 12268 6026392 2024-02-21 21:58:52.177 2024-02-21 21:58:52.177 9000 TIP 434300 3979 6026408 2024-02-21 22:00:30.268 2024-02-21 22:00:30.268 1000 FEE 434337 20730 6026409 2024-02-21 22:00:51.393 2024-02-21 22:00:51.393 200 FEE 434333 2963 6026410 2024-02-21 22:00:51.393 2024-02-21 22:00:51.393 1800 TIP 434333 726 6026421 2024-02-21 22:01:33.886 2024-02-21 22:01:33.886 1000 FEE 406903 6137 6026422 2024-02-21 22:01:33.886 2024-02-21 22:01:33.886 9000 TIP 406903 12220 6026423 2024-02-21 22:01:34.111 2024-02-21 22:01:34.111 1000 FEE 406903 20825 6026424 2024-02-21 22:01:34.111 2024-02-21 22:01:34.111 9000 TIP 406903 12736 6026433 2024-02-21 22:02:16.486 2024-02-21 22:02:16.486 1000 FEE 433828 3304 6026434 2024-02-21 22:02:16.486 2024-02-21 22:02:16.486 9000 TIP 433828 15159 6026438 2024-02-21 22:02:36.276 2024-02-21 22:02:36.276 1000 FEE 433851 18470 6026439 2024-02-21 22:02:36.276 2024-02-21 22:02:36.276 9000 TIP 433851 993 6026440 2024-02-21 22:02:36.611 2024-02-21 22:02:36.611 0 FEE 434341 14990 6026464 2024-02-21 22:06:23.338 2024-02-21 22:06:23.338 1000 FEE 434176 13046 6026465 2024-02-21 22:06:23.338 2024-02-21 22:06:23.338 9000 TIP 434176 8400 6026476 2024-02-21 22:10:07.228 2024-02-21 22:10:07.228 2100 FEE 434278 836 6026477 2024-02-21 22:10:07.228 2024-02-21 22:10:07.228 18900 TIP 434278 6164 6026514 2024-02-21 22:18:08.051 2024-02-21 22:18:08.051 1000 FEE 434300 20109 6026515 2024-02-21 22:18:08.051 2024-02-21 22:18:08.051 9000 TIP 434300 19576 6026521 2024-02-21 22:21:11.507 2024-02-21 22:21:11.507 100 FEE 434260 19156 6026522 2024-02-21 22:21:11.507 2024-02-21 22:21:11.507 900 TIP 434260 17713 6026551 2024-02-21 22:23:00.443 2024-02-21 22:23:00.443 100 FEE 434223 16357 6026552 2024-02-21 22:23:00.443 2024-02-21 22:23:00.443 900 TIP 434223 4798 6026560 2024-02-21 22:24:00.553 2024-02-21 22:24:00.553 100 FEE 434338 8648 6026561 2024-02-21 22:24:00.553 2024-02-21 22:24:00.553 900 TIP 434338 21159 6026604 2024-02-21 22:27:54.099 2024-02-21 22:27:54.099 1000 FEE 434358 20110 6026615 2024-02-21 22:30:32.974 2024-02-21 22:30:32.974 1000 FEE 434342 20433 6026616 2024-02-21 22:30:32.974 2024-02-21 22:30:32.974 9000 TIP 434342 18209 6026617 2024-02-21 22:30:41.294 2024-02-21 22:30:41.294 1000 FEE 433828 20090 6026618 2024-02-21 22:30:41.294 2024-02-21 22:30:41.294 9000 TIP 433828 726 6026619 2024-02-21 22:30:41.363 2024-02-21 22:30:41.363 1000 FEE 434310 17673 6025802 2024-02-21 20:33:20.247 2024-02-21 20:33:20.247 100000 FEE 434271 20133 6025857 2024-02-21 20:39:25.137 2024-02-21 20:39:25.137 100 FEE 434008 5129 6025858 2024-02-21 20:39:25.137 2024-02-21 20:39:25.137 900 TIP 434008 20301 6025894 2024-02-21 20:44:20.522 2024-02-21 20:44:20.522 200 FEE 434047 14080 6025895 2024-02-21 20:44:20.522 2024-02-21 20:44:20.522 1800 TIP 434047 2188 6025922 2024-02-21 20:48:54.324 2024-02-21 20:48:54.324 1000 FEE 202207 661 6025923 2024-02-21 20:48:54.324 2024-02-21 20:48:54.324 9000 TIP 202207 13878 6025959 2024-02-21 20:59:29.143 2024-02-21 20:59:29.143 1700 FEE 434213 21424 6025960 2024-02-21 20:59:29.143 2024-02-21 20:59:29.143 15300 TIP 434213 5961 6025970 2024-02-21 21:01:31.797 2024-02-21 21:01:31.797 2600 FEE 434282 1162 6025971 2024-02-21 21:01:31.797 2024-02-21 21:01:31.797 23400 TIP 434282 782 6025982 2024-02-21 21:03:29.365 2024-02-21 21:03:29.365 500 FEE 434139 960 6025983 2024-02-21 21:03:29.365 2024-02-21 21:03:29.365 4500 TIP 434139 8133 6025988 2024-02-21 21:03:43.587 2024-02-21 21:03:43.587 1000 FEE 434284 11527 6025998 2024-02-21 21:07:57.805 2024-02-21 21:07:57.805 1000 FEE 434286 7772 6026031 2024-02-21 21:15:49.616 2024-02-21 21:15:49.616 1000 FEE 434292 5661 6026034 2024-02-21 21:17:03.993 2024-02-21 21:17:03.993 2100 FEE 434289 11898 6026035 2024-02-21 21:17:03.993 2024-02-21 21:17:03.993 18900 TIP 434289 18525 6026043 2024-02-21 21:18:42.474 2024-02-21 21:18:42.474 3100 FEE 434278 18453 6026044 2024-02-21 21:18:42.474 2024-02-21 21:18:42.474 27900 TIP 434278 4538 6026065 2024-02-21 21:23:59.402 2024-02-21 21:23:59.402 0 FEE 434297 18945 6026095 2024-02-21 21:27:11.486 2024-02-21 21:27:11.486 1000 FEE 434297 21019 6026096 2024-02-21 21:27:11.486 2024-02-21 21:27:11.486 9000 TIP 434297 1631 6026197 2024-02-21 21:35:01.342 2024-02-21 21:35:01.342 4000 FEE 434311 17041 6026198 2024-02-21 21:35:01.342 2024-02-21 21:35:01.342 36000 TIP 434311 21262 6026213 2024-02-21 21:35:38.352 2024-02-21 21:35:38.352 0 FEE 434307 19640 6026216 2024-02-21 21:36:01.408 2024-02-21 21:36:01.408 4000 FEE 434299 6136 6026217 2024-02-21 21:36:01.408 2024-02-21 21:36:01.408 36000 TIP 434299 11716 6026229 2024-02-21 21:40:56.375 2024-02-21 21:40:56.375 1100 FEE 434297 20254 6026230 2024-02-21 21:40:56.375 2024-02-21 21:40:56.375 9900 TIP 434297 1713 6026282 2024-02-21 21:51:05.54 2024-02-21 21:51:05.54 4000 FEE 434321 13854 6026283 2024-02-21 21:51:05.54 2024-02-21 21:51:05.54 36000 TIP 434321 18271 6026284 2024-02-21 21:51:07.068 2024-02-21 21:51:07.068 4600 FEE 434092 14791 6026285 2024-02-21 21:51:07.068 2024-02-21 21:51:07.068 41400 TIP 434092 756 6026322 2024-02-21 21:53:30.907 2024-02-21 21:53:30.907 1000 FEE 434324 4166 6026323 2024-02-21 21:53:32.651 2024-02-21 21:53:32.651 1000 FEE 434325 20817 6026342 2024-02-21 21:55:01.486 2024-02-21 21:55:01.486 0 FEE 434319 1814 6026361 2024-02-21 21:56:25.252 2024-02-21 21:56:25.252 2100 FEE 434319 19501 6026362 2024-02-21 21:56:25.252 2024-02-21 21:56:25.252 18900 TIP 434319 19484 6026372 2024-02-21 21:58:10.457 2024-02-21 21:58:10.457 3300 FEE 433682 10016 6026373 2024-02-21 21:58:10.457 2024-02-21 21:58:10.457 29700 TIP 433682 17673 6026428 2024-02-21 22:01:37.811 2024-02-21 22:01:37.811 4000 FEE 434337 1208 6026429 2024-02-21 22:01:37.811 2024-02-21 22:01:37.811 36000 TIP 434337 21138 6026462 2024-02-21 22:06:18.472 2024-02-21 22:06:18.472 1000 FEE 434183 16789 6026463 2024-02-21 22:06:18.472 2024-02-21 22:06:18.472 9000 TIP 434183 889 6026478 2024-02-21 22:10:24.75 2024-02-21 22:10:24.75 2100 FEE 434276 18368 6026479 2024-02-21 22:10:24.75 2024-02-21 22:10:24.75 18900 TIP 434276 19863 6026504 2024-02-21 22:16:10.615 2024-02-21 22:16:10.615 1000 FEE 433014 6741 6026505 2024-02-21 22:16:10.615 2024-02-21 22:16:10.615 9000 TIP 433014 18828 6026507 2024-02-21 22:17:42.346 2024-02-21 22:17:42.346 10000 FEE 433218 16485 6026508 2024-02-21 22:17:42.346 2024-02-21 22:17:42.346 90000 TIP 433218 20710 6026530 2024-02-21 22:21:50.856 2024-02-21 22:21:50.856 100 FEE 434289 2718 6026531 2024-02-21 22:21:50.856 2024-02-21 22:21:50.856 900 TIP 434289 11073 6026543 2024-02-21 22:22:21.937 2024-02-21 22:22:21.937 100 FEE 434213 20861 6026544 2024-02-21 22:22:21.937 2024-02-21 22:22:21.937 900 TIP 434213 4059 6026548 2024-02-21 22:22:42.056 2024-02-21 22:22:42.056 1000 FEE 434353 19924 6026562 2024-02-21 22:24:00.769 2024-02-21 22:24:00.769 900 FEE 434338 19907 6026563 2024-02-21 22:24:00.769 2024-02-21 22:24:00.769 8100 TIP 434338 12561 6026569 2024-02-21 22:24:02.747 2024-02-21 22:24:02.747 900 FEE 434243 19576 6026570 2024-02-21 22:24:02.747 2024-02-21 22:24:02.747 8100 TIP 434243 5703 6026626 2024-02-21 22:31:24.927 2024-02-21 22:31:24.927 900 FEE 433978 21342 6026627 2024-02-21 22:31:24.927 2024-02-21 22:31:24.927 8100 TIP 433978 9332 6026632 2024-02-21 22:31:41.583 2024-02-21 22:31:41.583 900 FEE 433886 16355 6026633 2024-02-21 22:31:41.583 2024-02-21 22:31:41.583 8100 TIP 433886 7659 6026728 2024-02-21 22:51:49.306 2024-02-21 22:51:49.306 100 FEE 434313 5904 6026729 2024-02-21 22:51:49.306 2024-02-21 22:51:49.306 900 TIP 434313 10934 6026776 2024-02-21 22:53:23.322 2024-02-21 22:53:23.322 5000 FEE 434243 21455 6026777 2024-02-21 22:53:23.322 2024-02-21 22:53:23.322 45000 TIP 434243 21157 6026791 2024-02-21 22:53:26.292 2024-02-21 22:53:26.292 5000 FEE 434243 9529 6026792 2024-02-21 22:53:26.292 2024-02-21 22:53:26.292 45000 TIP 434243 3213 6026797 2024-02-21 22:53:26.861 2024-02-21 22:53:26.861 5000 FEE 434243 21472 6026798 2024-02-21 22:53:26.861 2024-02-21 22:53:26.861 45000 TIP 434243 17046 6026803 2024-02-21 22:53:27.359 2024-02-21 22:53:27.359 5000 FEE 434243 5794 6026804 2024-02-21 22:53:27.359 2024-02-21 22:53:27.359 45000 TIP 434243 739 6026825 2024-02-21 22:53:31.664 2024-02-21 22:53:31.664 8300 FEE 434278 16309 6026826 2024-02-21 22:53:31.664 2024-02-21 22:53:31.664 74700 TIP 434278 20594 6026852 2024-02-21 22:54:07.187 2024-02-21 22:54:07.187 1000 FEE 434373 20337 6026853 2024-02-21 22:54:07.187 2024-02-21 22:54:07.187 9000 TIP 434373 4167 6026863 2024-02-21 22:54:53.095 2024-02-21 22:54:53.095 16600 FEE 433359 8059 6026864 2024-02-21 22:54:53.095 2024-02-21 22:54:53.095 149400 TIP 433359 3456 6026894 2024-02-21 22:55:09.055 2024-02-21 22:55:09.055 8300 FEE 434285 20143 6026895 2024-02-21 22:55:09.055 2024-02-21 22:55:09.055 74700 TIP 434285 16440 6026952 2024-02-21 22:59:42.521 2024-02-21 22:59:42.521 1000 FEE 434349 17103 6026953 2024-02-21 22:59:42.521 2024-02-21 22:59:42.521 9000 TIP 434349 8870 6026954 2024-02-21 22:59:44.03 2024-02-21 22:59:44.03 1000 FEE 434349 9816 6026955 2024-02-21 22:59:44.03 2024-02-21 22:59:44.03 9000 TIP 434349 1092 6026975 2024-02-21 23:00:17.053 2024-02-21 23:00:17.053 2700 FEE 434285 19664 6026976 2024-02-21 23:00:17.053 2024-02-21 23:00:17.053 24300 TIP 434285 19198 6026992 2024-02-21 23:06:01.575 2024-02-21 23:06:01.575 2500 FEE 434355 11621 6026993 2024-02-21 23:06:01.575 2024-02-21 23:06:01.575 22500 TIP 434355 2459 6026995 2024-02-21 23:06:46.975 2024-02-21 23:06:46.975 2600 FEE 434370 18816 6026996 2024-02-21 23:06:46.975 2024-02-21 23:06:46.975 23400 TIP 434370 18114 6027034 2024-02-21 23:14:02.072 2024-02-21 23:14:02.072 100 FEE 432044 18101 6027035 2024-02-21 23:14:02.072 2024-02-21 23:14:02.072 900 TIP 432044 21088 6027040 2024-02-21 23:14:02.532 2024-02-21 23:14:02.532 100 FEE 432044 10818 6027041 2024-02-21 23:14:02.532 2024-02-21 23:14:02.532 900 TIP 432044 18731 6027044 2024-02-21 23:14:02.823 2024-02-21 23:14:02.823 100 FEE 432044 17953 6027045 2024-02-21 23:14:02.823 2024-02-21 23:14:02.823 900 TIP 432044 20198 6027053 2024-02-21 23:14:03.422 2024-02-21 23:14:03.422 100 FEE 432044 667 6027054 2024-02-21 23:14:03.422 2024-02-21 23:14:03.422 900 TIP 432044 18243 6027055 2024-02-21 23:14:03.577 2024-02-21 23:14:03.577 100 FEE 432044 18830 6027056 2024-02-21 23:14:03.577 2024-02-21 23:14:03.577 900 TIP 432044 10359 6027099 2024-02-21 23:19:57.385 2024-02-21 23:19:57.385 1000 FEE 434025 19296 6027100 2024-02-21 23:19:57.385 2024-02-21 23:19:57.385 9000 TIP 434025 21164 6027104 2024-02-21 23:20:17.502 2024-02-21 23:20:17.502 6900 FEE 433771 12774 6027105 2024-02-21 23:20:17.502 2024-02-21 23:20:17.502 62100 TIP 433771 21222 6027111 2024-02-21 23:20:55.629 2024-02-21 23:20:55.629 1000 FEE 434026 1236 6025938 2024-02-21 20:50:46.156 2024-02-21 20:50:46.156 90000 TIP 433597 21469 6025942 2024-02-21 20:51:08.44 2024-02-21 20:51:08.44 10000 FEE 434160 19546 6025943 2024-02-21 20:51:08.44 2024-02-21 20:51:08.44 90000 TIP 434160 18460 6025948 2024-02-21 20:55:35.951 2024-02-21 20:55:35.951 1000 FEE 434280 13100 6025953 2024-02-21 20:56:05.124 2024-02-21 20:56:05.124 1000 STREAM 141924 1717 6025954 2024-02-21 20:57:05.09 2024-02-21 20:57:05.09 1000 STREAM 141924 20225 6025957 2024-02-21 20:58:05.087 2024-02-21 20:58:05.087 1000 STREAM 141924 19005 6025958 2024-02-21 20:59:05.106 2024-02-21 20:59:05.106 1000 STREAM 141924 1519 6025961 2024-02-21 20:59:45.221 2024-02-21 20:59:45.221 10000 FEE 434281 726 6025962 2024-02-21 21:00:05.111 2024-02-21 21:00:05.111 1000 STREAM 141924 19888 6025963 2024-02-21 21:00:21.081 2024-02-21 21:00:21.081 1000 FEE 434282 9246 6025965 2024-02-21 21:01:05.1 2024-02-21 21:01:05.1 1000 STREAM 141924 20854 6025966 2024-02-21 21:01:15.226 2024-02-21 21:01:15.226 1700 FEE 434279 889 6025967 2024-02-21 21:01:15.226 2024-02-21 21:01:15.226 15300 TIP 434279 7395 6025972 2024-02-21 21:02:05.151 2024-02-21 21:02:05.151 1000 STREAM 141924 21571 6025975 2024-02-21 21:03:05.12 2024-02-21 21:03:05.12 1000 STREAM 141924 4173 6025989 2024-02-21 21:04:05.134 2024-02-21 21:04:05.134 1000 STREAM 141924 13216 6025990 2024-02-21 21:05:04.017 2024-02-21 21:05:04.017 2600 FEE 434242 20585 6025991 2024-02-21 21:05:04.017 2024-02-21 21:05:04.017 23400 TIP 434242 977 6025992 2024-02-21 21:05:05.13 2024-02-21 21:05:05.13 1000 STREAM 141924 19857 6025994 2024-02-21 21:06:05.138 2024-02-21 21:06:05.138 1000 STREAM 141924 1426 6025995 2024-02-21 21:07:05.148 2024-02-21 21:07:05.148 1000 STREAM 141924 21373 6025999 2024-02-21 21:08:05.154 2024-02-21 21:08:05.154 1000 STREAM 141924 711 6026000 2024-02-21 21:09:05.163 2024-02-21 21:09:05.163 1000 STREAM 141924 928 6026003 2024-02-21 21:10:05.165 2024-02-21 21:10:05.165 1000 STREAM 141924 7766 6026004 2024-02-21 21:10:12.932 2024-02-21 21:10:12.932 1000 FEE 434287 9336 6026007 2024-02-21 21:11:05.175 2024-02-21 21:11:05.175 1000 STREAM 141924 19910 6026009 2024-02-21 21:12:05.176 2024-02-21 21:12:05.176 1000 STREAM 141924 18241 6026018 2024-02-21 21:12:56.105 2024-02-21 21:12:56.105 1000 FEE 434275 18241 6026019 2024-02-21 21:12:56.105 2024-02-21 21:12:56.105 9000 TIP 434275 640 6026020 2024-02-21 21:13:05.19 2024-02-21 21:13:05.19 1000 STREAM 141924 15351 6026023 2024-02-21 21:14:05.179 2024-02-21 21:14:05.179 1000 STREAM 141924 981 6026024 2024-02-21 21:14:30.36 2024-02-21 21:14:30.36 300 FEE 434265 12774 6026025 2024-02-21 21:14:30.36 2024-02-21 21:14:30.36 2700 TIP 434265 20094 6026028 2024-02-21 21:15:05.204 2024-02-21 21:15:05.204 1000 STREAM 141924 8729 6026033 2024-02-21 21:16:05.178 2024-02-21 21:16:05.178 1000 STREAM 141924 1320 6026036 2024-02-21 21:17:05.211 2024-02-21 21:17:05.211 1000 STREAM 141924 11038 6026041 2024-02-21 21:17:49.132 2024-02-21 21:17:49.132 1000 FEE 434294 2088 6026042 2024-02-21 21:18:05.223 2024-02-21 21:18:05.223 1000 STREAM 141924 16543 6026045 2024-02-21 21:18:42.558 2024-02-21 21:18:42.558 27900 FEE 434278 20849 6026046 2024-02-21 21:18:42.558 2024-02-21 21:18:42.558 251100 TIP 434278 13767 6026050 2024-02-21 21:19:04.581 2024-02-21 21:19:04.581 1000 STREAM 141924 1006 6026051 2024-02-21 21:19:24.35 2024-02-21 21:19:24.35 1000 FEE 434283 5387 6026052 2024-02-21 21:19:24.35 2024-02-21 21:19:24.35 9000 TIP 434283 21627 6026053 2024-02-21 21:20:05.228 2024-02-21 21:20:05.228 1000 STREAM 141924 21509 6026054 2024-02-21 21:21:05.219 2024-02-21 21:21:05.219 1000 STREAM 141924 17446 6026056 2024-02-21 21:21:40.403 2024-02-21 21:21:40.403 10000 FEE 434297 1047 6026057 2024-02-21 21:22:05.242 2024-02-21 21:22:05.242 1000 STREAM 141924 10342 6026062 2024-02-21 21:23:05.25 2024-02-21 21:23:05.25 1000 STREAM 141924 17148 6026063 2024-02-21 21:23:25.901 2024-02-21 21:23:25.901 11700 FEE 434099 13327 6026064 2024-02-21 21:23:25.901 2024-02-21 21:23:25.901 105300 TIP 434099 17014 6026066 2024-02-21 21:24:05.261 2024-02-21 21:24:05.261 1000 STREAM 141924 16839 6026069 2024-02-21 21:25:05.239 2024-02-21 21:25:05.239 1000 STREAM 141924 4378 6026070 2024-02-21 21:25:29.942 2024-02-21 21:25:29.942 1000 FEE 434300 20973 6026071 2024-02-21 21:25:31.854 2024-02-21 21:25:31.854 4000 FEE 434298 2652 6026072 2024-02-21 21:25:31.854 2024-02-21 21:25:31.854 36000 TIP 434298 10554 6026078 2024-02-21 21:25:53.012 2024-02-21 21:25:53.012 1000 FEE 433828 18828 6026079 2024-02-21 21:25:53.012 2024-02-21 21:25:53.012 9000 TIP 433828 10484 6026082 2024-02-21 21:26:05.256 2024-02-21 21:26:05.256 1000 STREAM 141924 15060 6026087 2024-02-21 21:26:41.609 2024-02-21 21:26:41.609 300 FEE 434211 19759 6026088 2024-02-21 21:26:41.609 2024-02-21 21:26:41.609 2700 TIP 434211 11670 6026091 2024-02-21 21:27:05.274 2024-02-21 21:27:05.274 1000 STREAM 141924 20849 6026093 2024-02-21 21:27:10.987 2024-02-21 21:27:10.987 1000 FEE 434297 716 6026094 2024-02-21 21:27:10.987 2024-02-21 21:27:10.987 9000 TIP 434297 10056 6026112 2024-02-21 21:28:05.261 2024-02-21 21:28:05.261 1000 STREAM 141924 20299 6026115 2024-02-21 21:28:05.679 2024-02-21 21:28:05.679 1000 FEE 434289 770 6026116 2024-02-21 21:28:05.679 2024-02-21 21:28:05.679 9000 TIP 434289 2963 6026130 2024-02-21 21:29:05.242 2024-02-21 21:29:05.242 1000 STREAM 141924 2264 6026131 2024-02-21 21:30:05.27 2024-02-21 21:30:05.27 1000 STREAM 141924 2151 6026139 2024-02-21 21:31:05.285 2024-02-21 21:31:05.285 1000 STREAM 141924 18235 6026147 2024-02-21 21:32:26.442 2024-02-21 21:32:26.442 1000 FEE 434283 1236 6026148 2024-02-21 21:32:26.442 2024-02-21 21:32:26.442 9000 TIP 434283 2748 6026157 2024-02-21 21:33:05.28 2024-02-21 21:33:05.28 1000 STREAM 141924 2010 6026164 2024-02-21 21:33:22.693 2024-02-21 21:33:22.693 1000 FEE 433760 13587 6026165 2024-02-21 21:33:22.693 2024-02-21 21:33:22.693 9000 TIP 433760 21371 6026166 2024-02-21 21:33:22.811 2024-02-21 21:33:22.811 3200 FEE 434297 21365 6026167 2024-02-21 21:33:22.811 2024-02-21 21:33:22.811 28800 TIP 434297 17592 6026168 2024-02-21 21:33:25.709 2024-02-21 21:33:25.709 0 FEE 434309 1652 6026169 2024-02-21 21:33:25.97 2024-02-21 21:33:25.97 1000 FEE 433555 16424 6026170 2024-02-21 21:33:25.97 2024-02-21 21:33:25.97 9000 TIP 433555 21214 6026174 2024-02-21 21:34:05.303 2024-02-21 21:34:05.303 1000 STREAM 141924 776 6026193 2024-02-21 21:35:00.126 2024-02-21 21:35:00.126 100 FEE 433999 1881 6026194 2024-02-21 21:35:00.126 2024-02-21 21:35:00.126 900 TIP 433999 20201 6026199 2024-02-21 21:35:05.319 2024-02-21 21:35:05.319 1000 STREAM 141924 1319 6026200 2024-02-21 21:35:08.898 2024-02-21 21:35:08.898 1600 FEE 434299 18663 6026201 2024-02-21 21:35:08.898 2024-02-21 21:35:08.898 14400 TIP 434299 7989 6026206 2024-02-21 21:35:28.252 2024-02-21 21:35:28.252 100 FEE 434300 2335 6026207 2024-02-21 21:35:28.252 2024-02-21 21:35:28.252 900 TIP 434300 3360 6026214 2024-02-21 21:35:52.907 2024-02-21 21:35:52.907 4000 FEE 434278 2293 6026215 2024-02-21 21:35:52.907 2024-02-21 21:35:52.907 36000 TIP 434278 16387 6026218 2024-02-21 21:36:05.308 2024-02-21 21:36:05.308 1000 STREAM 141924 14376 6026223 2024-02-21 21:38:05.334 2024-02-21 21:38:05.334 1000 STREAM 141924 9985 6026224 2024-02-21 21:38:27.756 2024-02-21 21:38:27.756 1000 FEE 434291 1124 6026225 2024-02-21 21:38:27.756 2024-02-21 21:38:27.756 9000 TIP 434291 8498 6026233 2024-02-21 21:42:15.378 2024-02-21 21:42:15.378 4000 FEE 434309 11314 6026234 2024-02-21 21:42:15.378 2024-02-21 21:42:15.378 36000 TIP 434309 20129 6026245 2024-02-21 21:46:58.2 2024-02-21 21:46:58.2 21000 FEE 434317 21083 6026249 2024-02-21 21:47:52.381 2024-02-21 21:47:52.381 3300 FEE 434292 1038 6026250 2024-02-21 21:47:52.381 2024-02-21 21:47:52.381 29700 TIP 434292 14213 6026254 2024-02-21 21:48:16.395 2024-02-21 21:48:16.395 1000 FEE 434318 19281 6026263 2024-02-21 21:48:26.631 2024-02-21 21:48:26.631 2000 FEE 434319 1729 6026273 2024-02-21 21:50:26.276 2024-02-21 21:50:26.276 3300 FEE 434276 1806 6026274 2024-02-21 21:50:26.276 2024-02-21 21:50:26.276 29700 TIP 434276 20201 6026295 2024-02-21 21:52:13.866 2024-02-21 21:52:13.866 1000 FEE 434322 8176 6026296 2024-02-21 21:52:35.772 2024-02-21 21:52:35.772 1000 FEE 434323 16842 6026299 2024-02-21 21:52:50.589 2024-02-21 21:52:50.589 2100 FEE 434319 2022 6026300 2024-02-21 21:52:50.589 2024-02-21 21:52:50.589 18900 TIP 434319 5538 6026132 2024-02-21 21:30:21.164 2024-02-21 21:30:21.164 1000 FEE 433961 14489 6026133 2024-02-21 21:30:21.164 2024-02-21 21:30:21.164 9000 TIP 433961 5794 6026134 2024-02-21 21:30:23.828 2024-02-21 21:30:23.828 1000 FEE 434289 8926 6026135 2024-02-21 21:30:23.828 2024-02-21 21:30:23.828 9000 TIP 434289 1354 6026145 2024-02-21 21:32:04.641 2024-02-21 21:32:04.641 1000 STREAM 141924 18877 6026159 2024-02-21 21:33:10.492 2024-02-21 21:33:10.492 1000 FEE 433886 2329 6026160 2024-02-21 21:33:10.492 2024-02-21 21:33:10.492 9000 TIP 433886 17535 6026161 2024-02-21 21:33:16.917 2024-02-21 21:33:16.917 1000 FEE 434311 5495 6026179 2024-02-21 21:34:16.44 2024-02-21 21:34:16.44 9000 FEE 434098 20687 6026180 2024-02-21 21:34:16.44 2024-02-21 21:34:16.44 81000 TIP 434098 21494 6026187 2024-02-21 21:34:37.222 2024-02-21 21:34:37.222 100 FEE 434031 14225 6026188 2024-02-21 21:34:37.222 2024-02-21 21:34:37.222 900 TIP 434031 7891 6026221 2024-02-21 21:37:04.707 2024-02-21 21:37:04.707 1000 STREAM 141924 21058 6026226 2024-02-21 21:39:04.708 2024-02-21 21:39:04.708 1000 STREAM 141924 826 6026227 2024-02-21 21:40:04.763 2024-02-21 21:40:04.763 1000 STREAM 141924 18862 6026228 2024-02-21 21:40:56.329 2024-02-21 21:40:56.329 1000 FEE 434314 803 6026231 2024-02-21 21:41:04.738 2024-02-21 21:41:04.738 1000 STREAM 141924 4459 6026232 2024-02-21 21:42:04.739 2024-02-21 21:42:04.739 1000 STREAM 141924 19943 6026235 2024-02-21 21:43:04.768 2024-02-21 21:43:04.768 1000 STREAM 141924 11776 6026236 2024-02-21 21:44:04.778 2024-02-21 21:44:04.778 1000 STREAM 141924 1291 6026237 2024-02-21 21:44:54.194 2024-02-21 21:44:54.194 11700 FEE 434310 19005 6026238 2024-02-21 21:44:54.194 2024-02-21 21:44:54.194 105300 TIP 434310 19033 6026241 2024-02-21 21:45:04.803 2024-02-21 21:45:04.803 1000 STREAM 141924 13246 6026242 2024-02-21 21:45:05.894 2024-02-21 21:45:05.894 1000 FEE 434315 4313 6026244 2024-02-21 21:46:04.832 2024-02-21 21:46:04.832 1000 STREAM 141924 20153 6026246 2024-02-21 21:47:04.862 2024-02-21 21:47:04.862 1000 STREAM 141924 9705 6026251 2024-02-21 21:47:52.593 2024-02-21 21:47:52.593 3300 FEE 434292 18679 6026252 2024-02-21 21:47:52.593 2024-02-21 21:47:52.593 29700 TIP 434292 21212 6026253 2024-02-21 21:48:04.897 2024-02-21 21:48:04.897 1000 STREAM 141924 4322 6026261 2024-02-21 21:48:24.876 2024-02-21 21:48:24.876 10000 FEE 433890 15139 6026262 2024-02-21 21:48:24.876 2024-02-21 21:48:24.876 90000 TIP 433890 979 6026267 2024-02-21 21:49:04.905 2024-02-21 21:49:04.905 1000 STREAM 141924 5942 6026270 2024-02-21 21:49:12.418 2024-02-21 21:49:12.418 1000 FEE 434297 15271 6026271 2024-02-21 21:49:12.418 2024-02-21 21:49:12.418 9000 TIP 434297 20094 6026272 2024-02-21 21:50:04.961 2024-02-21 21:50:04.961 1000 STREAM 141924 20663 6026281 2024-02-21 21:51:04.768 2024-02-21 21:51:04.768 1000 STREAM 141924 21393 6026290 2024-02-21 21:52:04.128 2024-02-21 21:52:04.128 1000 FEE 434319 19890 6026291 2024-02-21 21:52:04.128 2024-02-21 21:52:04.128 9000 TIP 434319 20663 6026292 2024-02-21 21:52:04.743 2024-02-21 21:52:04.743 1000 STREAM 141924 3656 6026301 2024-02-21 21:53:04.751 2024-02-21 21:53:04.751 1000 STREAM 141924 15941 6026312 2024-02-21 21:53:23.191 2024-02-21 21:53:23.191 2100 FEE 434319 16052 6026313 2024-02-21 21:53:23.191 2024-02-21 21:53:23.191 18900 TIP 434319 6419 6026329 2024-02-21 21:54:04.769 2024-02-21 21:54:04.769 1000 STREAM 141924 18714 6026357 2024-02-21 21:56:17.636 2024-02-21 21:56:17.636 700 FEE 434310 5160 6026358 2024-02-21 21:56:17.636 2024-02-21 21:56:17.636 6300 TIP 434310 2309 6026411 2024-02-21 22:00:52.651 2024-02-21 22:00:52.651 1000 FEE 431918 19966 6026412 2024-02-21 22:00:52.651 2024-02-21 22:00:52.651 9000 TIP 431918 9992 6026417 2024-02-21 22:01:33.043 2024-02-21 22:01:33.043 1000 FEE 434338 2942 6026420 2024-02-21 22:01:33.722 2024-02-21 22:01:33.722 1000 FEE 434339 21339 6026425 2024-02-21 22:01:34.368 2024-02-21 22:01:34.368 1000 FEE 406903 19732 6026426 2024-02-21 22:01:34.368 2024-02-21 22:01:34.368 9000 TIP 406903 2703 6026443 2024-02-21 22:02:53.216 2024-02-21 22:02:53.216 10000 FEE 434319 1105 6026444 2024-02-21 22:02:53.216 2024-02-21 22:02:53.216 90000 TIP 434319 11192 6026454 2024-02-21 22:04:44.391 2024-02-21 22:04:44.391 0 FEE 375108 8284 6026469 2024-02-21 22:08:00.231 2024-02-21 22:08:00.231 1000 FEE 434345 7558 6026480 2024-02-21 22:10:36.458 2024-02-21 22:10:36.458 100 FEE 434276 1512 6026481 2024-02-21 22:10:36.458 2024-02-21 22:10:36.458 900 TIP 434276 5520 6026512 2024-02-21 22:18:07.911 2024-02-21 22:18:07.911 1000 FEE 434300 1272 6026513 2024-02-21 22:18:07.911 2024-02-21 22:18:07.911 9000 TIP 434300 13246 6026529 2024-02-21 22:21:49.149 2024-02-21 22:21:49.149 100000 FEE 434352 12102 6026547 2024-02-21 22:22:33.34 2024-02-21 22:22:33.34 0 FEE 434352 20179 6026549 2024-02-21 22:22:42.11 2024-02-21 22:22:42.11 2100 FEE 433737 9200 6026550 2024-02-21 22:22:42.11 2024-02-21 22:22:42.11 18900 TIP 433737 14381 6026593 2024-02-21 22:26:08.197 2024-02-21 22:26:08.197 900 FEE 434319 1845 6026594 2024-02-21 22:26:08.197 2024-02-21 22:26:08.197 8100 TIP 434319 18040 6026595 2024-02-21 22:26:26.774 2024-02-21 22:26:26.774 2100 FEE 434077 9433 6026596 2024-02-21 22:26:26.774 2024-02-21 22:26:26.774 18900 TIP 434077 3717 6026612 2024-02-21 22:30:26.267 2024-02-21 22:30:26.267 1000 FEE 434341 910 6026613 2024-02-21 22:30:26.267 2024-02-21 22:30:26.267 9000 TIP 434341 5171 6026628 2024-02-21 22:31:36.058 2024-02-21 22:31:36.058 9000 FEE 433978 19036 6026629 2024-02-21 22:31:36.058 2024-02-21 22:31:36.058 81000 TIP 433978 18359 6026636 2024-02-21 22:31:50.207 2024-02-21 22:31:50.207 900 FEE 433958 4167 6026637 2024-02-21 22:31:50.207 2024-02-21 22:31:50.207 8100 TIP 433958 1785 6026657 2024-02-21 22:36:52.663 2024-02-21 22:36:52.663 2300 FEE 434318 1817 6026658 2024-02-21 22:36:52.663 2024-02-21 22:36:52.663 20700 TIP 434318 6393 6026669 2024-02-21 22:36:59.516 2024-02-21 22:36:59.516 2300 FEE 434310 6430 6026670 2024-02-21 22:36:59.516 2024-02-21 22:36:59.516 20700 TIP 434310 18769 6026675 2024-02-21 22:37:02.369 2024-02-21 22:37:02.369 2300 FEE 434278 19282 6026676 2024-02-21 22:37:02.369 2024-02-21 22:37:02.369 20700 TIP 434278 2832 6026684 2024-02-21 22:37:03.039 2024-02-21 22:37:03.039 2300 FEE 434278 14552 6026685 2024-02-21 22:37:03.039 2024-02-21 22:37:03.039 20700 TIP 434278 642 6026698 2024-02-21 22:40:03.171 2024-02-21 22:40:03.171 1000 STREAM 141924 1751 6026704 2024-02-21 22:46:03.177 2024-02-21 22:46:03.177 1000 STREAM 141924 3360 6026707 2024-02-21 22:48:03.202 2024-02-21 22:48:03.202 1000 STREAM 141924 11590 6026726 2024-02-21 22:51:44.284 2024-02-21 22:51:44.284 900 FEE 434290 18470 6026727 2024-02-21 22:51:44.284 2024-02-21 22:51:44.284 8100 TIP 434290 989 6026730 2024-02-21 22:51:49.635 2024-02-21 22:51:49.635 900 FEE 434313 17494 6026731 2024-02-21 22:51:49.635 2024-02-21 22:51:49.635 8100 TIP 434313 17411 6026734 2024-02-21 22:51:55.166 2024-02-21 22:51:55.166 1000 FEE 434367 14225 6026764 2024-02-21 22:53:21.68 2024-02-21 22:53:21.68 5000 FEE 434243 9276 6026765 2024-02-21 22:53:21.68 2024-02-21 22:53:21.68 45000 TIP 434243 5746 6026772 2024-02-21 22:53:22.362 2024-02-21 22:53:22.362 5000 FEE 434243 10862 6026773 2024-02-21 22:53:22.362 2024-02-21 22:53:22.362 45000 TIP 434243 18359 6026819 2024-02-21 22:53:31.369 2024-02-21 22:53:31.369 8300 FEE 434278 20434 6026820 2024-02-21 22:53:31.369 2024-02-21 22:53:31.369 74700 TIP 434278 9171 6026831 2024-02-21 22:53:32.025 2024-02-21 22:53:32.025 8300 FEE 434278 12218 6026832 2024-02-21 22:53:32.025 2024-02-21 22:53:32.025 74700 TIP 434278 18529 6026869 2024-02-21 22:54:53.368 2024-02-21 22:54:53.368 8300 FEE 433359 1120 6026870 2024-02-21 22:54:53.368 2024-02-21 22:54:53.368 74700 TIP 433359 14731 6026881 2024-02-21 22:54:59.654 2024-02-21 22:54:59.654 8300 FEE 433943 12220 6026882 2024-02-21 22:54:59.654 2024-02-21 22:54:59.654 74700 TIP 433943 13781 6026885 2024-02-21 22:55:00.306 2024-02-21 22:55:00.306 8300 FEE 433943 21491 6026886 2024-02-21 22:55:00.306 2024-02-21 22:55:00.306 74700 TIP 433943 9335 6026902 2024-02-21 22:55:09.65 2024-02-21 22:55:09.65 8300 FEE 434285 14818 6026903 2024-02-21 22:55:09.65 2024-02-21 22:55:09.65 74700 TIP 434285 5487 6026914 2024-02-21 22:55:11.004 2024-02-21 22:55:11.004 8300 FEE 434285 19839 6026915 2024-02-21 22:55:11.004 2024-02-21 22:55:11.004 74700 TIP 434285 21145 6026297 2024-02-21 21:52:50.485 2024-02-21 21:52:50.485 2100 FEE 434319 20683 6026298 2024-02-21 21:52:50.485 2024-02-21 21:52:50.485 18900 TIP 434319 20738 6026320 2024-02-21 21:53:28.855 2024-02-21 21:53:28.855 2100 FEE 433123 3304 6026321 2024-02-21 21:53:28.855 2024-02-21 21:53:28.855 18900 TIP 433123 8284 6026339 2024-02-21 21:54:55.136 2024-02-21 21:54:55.136 9000 FEE 434310 18230 6026340 2024-02-21 21:54:55.136 2024-02-21 21:54:55.136 81000 TIP 434310 19911 6026387 2024-02-21 21:58:19.526 2024-02-21 21:58:19.526 1000 FEE 433878 10719 6026388 2024-02-21 21:58:19.526 2024-02-21 21:58:19.526 9000 TIP 433878 18472 6026389 2024-02-21 21:58:19.752 2024-02-21 21:58:19.752 1000 FEE 433878 7425 6026390 2024-02-21 21:58:19.752 2024-02-21 21:58:19.752 9000 TIP 433878 21599 6026405 2024-02-21 22:00:08.619 2024-02-21 22:00:08.619 1000 FEE 434336 20706 6026406 2024-02-21 22:00:19.691 2024-02-21 22:00:19.691 1800 FEE 434319 5775 6026407 2024-02-21 22:00:19.691 2024-02-21 22:00:19.691 16200 TIP 434319 11275 6026453 2024-02-21 22:04:14.187 2024-02-21 22:04:14.187 0 FEE 434341 14774 6026482 2024-02-21 22:10:36.627 2024-02-21 22:10:36.627 900 FEE 434276 21588 6026483 2024-02-21 22:10:36.627 2024-02-21 22:10:36.627 8100 TIP 434276 15180 6026484 2024-02-21 22:10:37.395 2024-02-21 22:10:37.395 9000 FEE 434276 5057 6026485 2024-02-21 22:10:37.395 2024-02-21 22:10:37.395 81000 TIP 434276 10060 6026516 2024-02-21 22:18:08.184 2024-02-21 22:18:08.184 1000 FEE 434300 10638 6026517 2024-02-21 22:18:08.184 2024-02-21 22:18:08.184 9000 TIP 434300 21222 6026523 2024-02-21 22:21:11.693 2024-02-21 22:21:11.693 900 FEE 434260 18270 6026524 2024-02-21 22:21:11.693 2024-02-21 22:21:11.693 8100 TIP 434260 15161 6026525 2024-02-21 22:21:16.887 2024-02-21 22:21:16.887 100 FEE 434263 21287 6026526 2024-02-21 22:21:16.887 2024-02-21 22:21:16.887 900 TIP 434263 20924 6026527 2024-02-21 22:21:16.9 2024-02-21 22:21:16.9 900 FEE 434263 16848 6026528 2024-02-21 22:21:16.9 2024-02-21 22:21:16.9 8100 TIP 434263 13143 6026537 2024-02-21 22:22:09.093 2024-02-21 22:22:09.093 100 FEE 434184 17519 6026538 2024-02-21 22:22:09.093 2024-02-21 22:22:09.093 900 TIP 434184 19583 6026556 2024-02-21 22:23:03.14 2024-02-21 22:23:03.14 1000 FEE 434354 1114 6026558 2024-02-21 22:23:27.234 2024-02-21 22:23:27.234 2100 FEE 434299 20597 6026559 2024-02-21 22:23:27.234 2024-02-21 22:23:27.234 18900 TIP 434299 4654 6026577 2024-02-21 22:24:48.158 2024-02-21 22:24:48.158 9000 FEE 434278 14449 6026578 2024-02-21 22:24:48.158 2024-02-21 22:24:48.158 81000 TIP 434278 16004 6026599 2024-02-21 22:26:50.544 2024-02-21 22:26:50.544 100 FEE 434321 1626 6026600 2024-02-21 22:26:50.544 2024-02-21 22:26:50.544 900 TIP 434321 12930 6026667 2024-02-21 22:36:59.356 2024-02-21 22:36:59.356 2300 FEE 434310 19259 6026668 2024-02-21 22:36:59.356 2024-02-21 22:36:59.356 20700 TIP 434310 11498 6026671 2024-02-21 22:37:02.018 2024-02-21 22:37:02.018 2300 FEE 434278 8729 6026672 2024-02-21 22:37:02.018 2024-02-21 22:37:02.018 20700 TIP 434278 2749 6026715 2024-02-21 22:51:01.649 2024-02-21 22:51:01.649 6900 FEE 434022 2502 6026716 2024-02-21 22:51:01.649 2024-02-21 22:51:01.649 62100 TIP 434022 5828 6026719 2024-02-21 22:51:09.679 2024-02-21 22:51:09.679 1000 FEE 434366 19910 6026722 2024-02-21 22:51:35.251 2024-02-21 22:51:35.251 5000 FEE 433967 20812 6026723 2024-02-21 22:51:35.251 2024-02-21 22:51:35.251 45000 TIP 433967 10393 6026724 2024-02-21 22:51:44.11 2024-02-21 22:51:44.11 100 FEE 434290 20198 6026725 2024-02-21 22:51:44.11 2024-02-21 22:51:44.11 900 TIP 434290 11956 6026758 2024-02-21 22:53:18.388 2024-02-21 22:53:18.388 5000 FEE 434243 8269 6026759 2024-02-21 22:53:18.388 2024-02-21 22:53:18.388 45000 TIP 434243 5775 6026766 2024-02-21 22:53:21.838 2024-02-21 22:53:21.838 5000 FEE 434243 21457 6026767 2024-02-21 22:53:21.838 2024-02-21 22:53:21.838 45000 TIP 434243 9552 6026778 2024-02-21 22:53:23.54 2024-02-21 22:53:23.54 5000 FEE 434243 8726 6026779 2024-02-21 22:53:23.54 2024-02-21 22:53:23.54 45000 TIP 434243 19463 6026780 2024-02-21 22:53:23.714 2024-02-21 22:53:23.714 5000 FEE 434243 6430 6026781 2024-02-21 22:53:23.714 2024-02-21 22:53:23.714 45000 TIP 434243 19037 6026793 2024-02-21 22:53:26.497 2024-02-21 22:53:26.497 5000 FEE 434243 20892 6026794 2024-02-21 22:53:26.497 2024-02-21 22:53:26.497 45000 TIP 434243 19469 6026807 2024-02-21 22:53:27.677 2024-02-21 22:53:27.677 5000 FEE 434243 4225 6026808 2024-02-21 22:53:27.677 2024-02-21 22:53:27.677 45000 TIP 434243 7960 6026809 2024-02-21 22:53:30.807 2024-02-21 22:53:30.807 8300 FEE 434278 10608 6026810 2024-02-21 22:53:30.807 2024-02-21 22:53:30.807 74700 TIP 434278 5961 6026817 2024-02-21 22:53:31.308 2024-02-21 22:53:31.308 8300 FEE 434278 20852 6026818 2024-02-21 22:53:31.308 2024-02-21 22:53:31.308 74700 TIP 434278 21624 6026827 2024-02-21 22:53:31.831 2024-02-21 22:53:31.831 8300 FEE 434278 6384 6026828 2024-02-21 22:53:31.831 2024-02-21 22:53:31.831 74700 TIP 434278 1769 6026859 2024-02-21 22:54:52.729 2024-02-21 22:54:52.729 8300 FEE 433359 681 6026860 2024-02-21 22:54:52.729 2024-02-21 22:54:52.729 74700 TIP 433359 795 6026867 2024-02-21 22:54:53.254 2024-02-21 22:54:53.254 8300 FEE 433359 1769 6026868 2024-02-21 22:54:53.254 2024-02-21 22:54:53.254 74700 TIP 433359 16809 6026873 2024-02-21 22:54:54.253 2024-02-21 22:54:54.253 8300 FEE 433359 15266 6026874 2024-02-21 22:54:54.253 2024-02-21 22:54:54.253 74700 TIP 433359 27 6026883 2024-02-21 22:55:00.06 2024-02-21 22:55:00.06 8300 FEE 433943 13553 6026884 2024-02-21 22:55:00.06 2024-02-21 22:55:00.06 74700 TIP 433943 15728 6026896 2024-02-21 22:55:09.187 2024-02-21 22:55:09.187 8300 FEE 434285 4474 6026897 2024-02-21 22:55:09.187 2024-02-21 22:55:09.187 74700 TIP 434285 17237 6026941 2024-02-21 22:56:02.144 2024-02-21 22:56:02.144 5000 FEE 433844 1814 6026942 2024-02-21 22:56:02.144 2024-02-21 22:56:02.144 45000 TIP 433844 11314 6026961 2024-02-21 23:00:15.767 2024-02-21 23:00:15.767 2700 FEE 434285 19976 6026962 2024-02-21 23:00:15.767 2024-02-21 23:00:15.767 24300 TIP 434285 12808 6026986 2024-02-21 23:03:21.559 2024-02-21 23:03:21.559 1600 FEE 434285 2681 6026987 2024-02-21 23:03:21.559 2024-02-21 23:03:21.559 14400 TIP 434285 6164 6027002 2024-02-21 23:07:10.051 2024-02-21 23:07:10.051 2500 FEE 433903 18380 6027003 2024-02-21 23:07:10.051 2024-02-21 23:07:10.051 22500 TIP 433903 7877 6027009 2024-02-21 23:08:58.803 2024-02-21 23:08:58.803 10000 FEE 433832 20102 6027010 2024-02-21 23:08:58.803 2024-02-21 23:08:58.803 90000 TIP 433832 18601 6027021 2024-02-21 23:12:25.04 2024-02-21 23:12:25.04 1000 FEE 434383 769 6027025 2024-02-21 23:12:44.449 2024-02-21 23:12:44.449 1300 FEE 434328 16193 6027026 2024-02-21 23:12:44.449 2024-02-21 23:12:44.449 11700 TIP 434328 21492 6027029 2024-02-21 23:13:51.717 2024-02-21 23:13:51.717 1000 FEE 434386 16177 6027042 2024-02-21 23:14:02.676 2024-02-21 23:14:02.676 100 FEE 432044 684 6027043 2024-02-21 23:14:02.676 2024-02-21 23:14:02.676 900 TIP 432044 19996 6027046 2024-02-21 23:14:02.983 2024-02-21 23:14:02.983 100 FEE 432044 18994 6027047 2024-02-21 23:14:02.983 2024-02-21 23:14:02.983 900 TIP 432044 7877 6027069 2024-02-21 23:14:04.822 2024-02-21 23:14:04.822 100 FEE 432044 20129 6027070 2024-02-21 23:14:04.822 2024-02-21 23:14:04.822 900 TIP 432044 20669 6027093 2024-02-21 23:19:10.665 2024-02-21 23:19:10.665 400 FEE 434296 1092 6027094 2024-02-21 23:19:10.665 2024-02-21 23:19:10.665 3600 TIP 434296 19633 6027124 2024-02-21 23:23:15.826 2024-02-21 23:23:15.826 1000 FEE 433524 18470 6027125 2024-02-21 23:23:15.826 2024-02-21 23:23:15.826 9000 TIP 433524 12736 6027153 2024-02-21 23:27:15.536 2024-02-21 23:27:15.536 300 FEE 309870 4128 6027154 2024-02-21 23:27:15.536 2024-02-21 23:27:15.536 2700 TIP 309870 6594 6027170 2024-02-21 23:28:13.604 2024-02-21 23:28:13.604 1000 FEE 433590 20581 6027171 2024-02-21 23:28:13.604 2024-02-21 23:28:13.604 9000 TIP 433590 20680 6027183 2024-02-21 23:33:48.575 2024-02-21 23:33:48.575 210000 FEE 434396 1142 6027196 2024-02-21 23:36:27.428 2024-02-21 23:36:27.428 1000 FEE 434398 19153 6027208 2024-02-21 23:38:34.454 2024-02-21 23:38:34.454 11000 FEE 434402 15100 6027258 2024-02-21 23:44:22.662 2024-02-21 23:44:22.662 0 FEE 434408 1773 6027280 2024-02-21 23:47:41.089 2024-02-21 23:47:41.089 500 FEE 433844 18518 6026308 2024-02-21 21:53:05.909 2024-02-21 21:53:05.909 200 FEE 434319 18828 6026309 2024-02-21 21:53:05.909 2024-02-21 21:53:05.909 1800 TIP 434319 20502 6026314 2024-02-21 21:53:23.496 2024-02-21 21:53:23.496 2100 FEE 434319 11158 6026315 2024-02-21 21:53:23.496 2024-02-21 21:53:23.496 18900 TIP 434319 16753 6026324 2024-02-21 21:53:41.86 2024-02-21 21:53:41.86 2100 FEE 434319 6700 6026325 2024-02-21 21:53:41.86 2024-02-21 21:53:41.86 18900 TIP 434319 20564 6026341 2024-02-21 21:54:55.612 2024-02-21 21:54:55.612 1000 FEE 434327 21352 6026349 2024-02-21 21:55:52.482 2024-02-21 21:55:52.482 2100 FEE 434319 20218 6026350 2024-02-21 21:55:52.482 2024-02-21 21:55:52.482 18900 TIP 434319 1047 6026365 2024-02-21 21:57:04.081 2024-02-21 21:57:04.081 1700 FEE 434326 18543 6026366 2024-02-21 21:57:04.081 2024-02-21 21:57:04.081 15300 TIP 434326 20370 6026381 2024-02-21 21:58:18.842 2024-02-21 21:58:18.842 1000 FEE 433878 18556 6026382 2024-02-21 21:58:18.842 2024-02-21 21:58:18.842 9000 TIP 433878 17800 6026396 2024-02-21 21:59:01.926 2024-02-21 21:59:01.926 3300 FEE 434322 19403 6026397 2024-02-21 21:59:01.926 2024-02-21 21:59:01.926 29700 TIP 434322 9341 6026401 2024-02-21 21:59:07.629 2024-02-21 21:59:07.629 1000 FEE 434334 15351 6026414 2024-02-21 22:01:04.7 2024-02-21 22:01:04.7 0 FEE 434331 19296 6026446 2024-02-21 22:03:06.516 2024-02-21 22:03:06.516 100 FEE 434334 16259 6026447 2024-02-21 22:03:06.516 2024-02-21 22:03:06.516 900 TIP 434334 1650 6026472 2024-02-21 22:09:03.838 2024-02-21 22:09:03.838 1000 FEE 434346 18583 6026493 2024-02-21 22:13:23.044 2024-02-21 22:13:23.044 1000 FEE 434347 21578 6026494 2024-02-21 22:13:23.044 2024-02-21 22:13:23.044 9000 TIP 434347 9200 6026533 2024-02-21 22:22:03.523 2024-02-21 22:22:03.523 1000 FEE 434352 866 6026534 2024-02-21 22:22:03.523 2024-02-21 22:22:03.523 9000 TIP 434352 17095 6026553 2024-02-21 22:23:01.085 2024-02-21 22:23:01.085 900 FEE 434223 20108 6026554 2024-02-21 22:23:01.085 2024-02-21 22:23:01.085 8100 TIP 434223 15045 6026573 2024-02-21 22:24:35.421 2024-02-21 22:24:35.421 100 FEE 434278 7960 6026574 2024-02-21 22:24:35.421 2024-02-21 22:24:35.421 900 TIP 434278 19151 6026580 2024-02-21 22:25:15.059 2024-02-21 22:25:15.059 1000 FEE 434356 19458 6026585 2024-02-21 22:25:33.55 2024-02-21 22:25:33.55 9000 FEE 434285 19018 6026586 2024-02-21 22:25:33.55 2024-02-21 22:25:33.55 81000 TIP 434285 929 6026591 2024-02-21 22:26:07.981 2024-02-21 22:26:07.981 100 FEE 434319 17415 6026592 2024-02-21 22:26:07.981 2024-02-21 22:26:07.981 900 TIP 434319 18076 6026597 2024-02-21 22:26:33.746 2024-02-21 22:26:33.746 2100 FEE 433670 12808 6026598 2024-02-21 22:26:33.746 2024-02-21 22:26:33.746 18900 TIP 433670 16679 6026614 2024-02-21 22:30:30.637 2024-02-21 22:30:30.637 1000 FEE 434359 19952 6026624 2024-02-21 22:31:24.643 2024-02-21 22:31:24.643 100 FEE 433978 14122 6026625 2024-02-21 22:31:24.643 2024-02-21 22:31:24.643 900 TIP 433978 660 6026640 2024-02-21 22:31:54.122 2024-02-21 22:31:54.122 900 FEE 434001 18291 6026641 2024-02-21 22:31:54.122 2024-02-21 22:31:54.122 8100 TIP 434001 19572 6026648 2024-02-21 22:33:48.995 2024-02-21 22:33:48.995 10000 FEE 434360 8376 6026655 2024-02-21 22:36:13.064 2024-02-21 22:36:13.064 100 FEE 433943 644 6026656 2024-02-21 22:36:13.064 2024-02-21 22:36:13.064 900 TIP 433943 2347 6026663 2024-02-21 22:36:59.032 2024-02-21 22:36:59.032 2300 FEE 434310 11897 6026664 2024-02-21 22:36:59.032 2024-02-21 22:36:59.032 20700 TIP 434310 15719 6026713 2024-02-21 22:50:13.679 2024-02-21 22:50:13.679 5000 FEE 434278 10352 6026714 2024-02-21 22:50:13.679 2024-02-21 22:50:13.679 45000 TIP 434278 20326 6026770 2024-02-21 22:53:22.171 2024-02-21 22:53:22.171 5000 FEE 434243 5725 6026771 2024-02-21 22:53:22.171 2024-02-21 22:53:22.171 45000 TIP 434243 19036 6026811 2024-02-21 22:53:31.03 2024-02-21 22:53:31.03 8300 FEE 434278 4177 6026812 2024-02-21 22:53:31.03 2024-02-21 22:53:31.03 74700 TIP 434278 9347 6026813 2024-02-21 22:53:31.059 2024-02-21 22:53:31.059 8300 FEE 434278 2367 6026814 2024-02-21 22:53:31.059 2024-02-21 22:53:31.059 74700 TIP 434278 8508 6026815 2024-02-21 22:53:31.161 2024-02-21 22:53:31.161 8300 FEE 434278 9669 6026816 2024-02-21 22:53:31.161 2024-02-21 22:53:31.161 74700 TIP 434278 634 6026834 2024-02-21 22:53:32.672 2024-02-21 22:53:32.672 8300 FEE 434278 9845 6026835 2024-02-21 22:53:32.672 2024-02-21 22:53:32.672 74700 TIP 434278 18387 6026836 2024-02-21 22:53:32.954 2024-02-21 22:53:32.954 8300 FEE 434278 5978 6026837 2024-02-21 22:53:32.954 2024-02-21 22:53:32.954 74700 TIP 434278 21140 6026838 2024-02-21 22:53:33.071 2024-02-21 22:53:33.071 8300 FEE 434278 7510 6026839 2024-02-21 22:53:33.071 2024-02-21 22:53:33.071 74700 TIP 434278 11873 6026844 2024-02-21 22:53:33.416 2024-02-21 22:53:33.416 8300 FEE 434278 17513 6026845 2024-02-21 22:53:33.416 2024-02-21 22:53:33.416 74700 TIP 434278 1454 6026854 2024-02-21 22:54:27.071 2024-02-21 22:54:27.071 1000 FEE 434374 18178 6026879 2024-02-21 22:54:59.161 2024-02-21 22:54:59.161 8300 FEE 433943 12158 6026880 2024-02-21 22:54:59.161 2024-02-21 22:54:59.161 74700 TIP 433943 15159 6026890 2024-02-21 22:55:08.374 2024-02-21 22:55:08.374 24900 FEE 434285 6382 6026891 2024-02-21 22:55:08.374 2024-02-21 22:55:08.374 224100 TIP 434285 1483 6026900 2024-02-21 22:55:09.431 2024-02-21 22:55:09.431 8300 FEE 434285 20987 6026901 2024-02-21 22:55:09.431 2024-02-21 22:55:09.431 74700 TIP 434285 27 6026924 2024-02-21 22:55:11.976 2024-02-21 22:55:11.976 8300 FEE 434285 9150 6026925 2024-02-21 22:55:11.976 2024-02-21 22:55:11.976 74700 TIP 434285 1124 6026933 2024-02-21 22:55:16.576 2024-02-21 22:55:16.576 900 FEE 433914 10102 6026934 2024-02-21 22:55:16.576 2024-02-21 22:55:16.576 8100 TIP 433914 6268 6026963 2024-02-21 23:00:15.956 2024-02-21 23:00:15.956 2700 FEE 434285 21371 6026964 2024-02-21 23:00:15.956 2024-02-21 23:00:15.956 24300 TIP 434285 3342 6027082 2024-02-21 23:17:53.8 2024-02-21 23:17:53.8 1000 FEE 434278 8508 6027083 2024-02-21 23:17:53.8 2024-02-21 23:17:53.8 9000 TIP 434278 15806 6027084 2024-02-21 23:17:54.758 2024-02-21 23:17:54.758 1000 FEE 433844 20370 6027085 2024-02-21 23:17:54.758 2024-02-21 23:17:54.758 9000 TIP 433844 14990 6027091 2024-02-21 23:18:47.317 2024-02-21 23:18:47.317 1000 FEE 434390 17953 6027106 2024-02-21 23:20:38.4 2024-02-21 23:20:38.4 6900 FEE 433879 2309 6027107 2024-02-21 23:20:38.4 2024-02-21 23:20:38.4 62100 TIP 433879 19458 6027122 2024-02-21 23:23:09.093 2024-02-21 23:23:09.093 1000 FEE 433524 18667 6027123 2024-02-21 23:23:09.093 2024-02-21 23:23:09.093 9000 TIP 433524 21180 6027130 2024-02-21 23:25:06.775 2024-02-21 23:25:06.775 6900 FEE 433932 21083 6027131 2024-02-21 23:25:06.775 2024-02-21 23:25:06.775 62100 TIP 433932 2101 6027141 2024-02-21 23:26:16.072 2024-02-21 23:26:16.072 1000 FEE 434026 11776 6027142 2024-02-21 23:26:16.072 2024-02-21 23:26:16.072 9000 TIP 434026 965 6027149 2024-02-21 23:26:45.192 2024-02-21 23:26:45.192 1000 FEE 434393 20470 6027192 2024-02-21 23:36:14.58 2024-02-21 23:36:14.58 100 FEE 434383 19281 6027193 2024-02-21 23:36:14.58 2024-02-21 23:36:14.58 900 TIP 434383 18526 6027194 2024-02-21 23:36:21.843 2024-02-21 23:36:21.843 1000 FEE 434243 11942 6027195 2024-02-21 23:36:21.843 2024-02-21 23:36:21.843 9000 TIP 434243 20560 6027201 2024-02-21 23:37:19.942 2024-02-21 23:37:19.942 500 FEE 434171 18040 6027202 2024-02-21 23:37:19.942 2024-02-21 23:37:19.942 4500 TIP 434171 15577 6027213 2024-02-21 23:39:18.255 2024-02-21 23:39:18.255 1700 FEE 434360 8796 6027214 2024-02-21 23:39:18.255 2024-02-21 23:39:18.255 15300 TIP 434360 4692 6027233 2024-02-21 23:41:46.387 2024-02-21 23:41:46.387 100 FEE 433943 16747 6027234 2024-02-21 23:41:46.387 2024-02-21 23:41:46.387 900 TIP 433943 20817 6027235 2024-02-21 23:41:46.866 2024-02-21 23:41:46.866 100 FEE 433943 2196 6027236 2024-02-21 23:41:46.866 2024-02-21 23:41:46.866 900 TIP 433943 19795 6027241 2024-02-21 23:41:59.005 2024-02-21 23:41:59.005 3100 FEE 434307 660 6027242 2024-02-21 23:41:59.005 2024-02-21 23:41:59.005 27900 TIP 434307 14705 6027278 2024-02-21 23:47:40.348 2024-02-21 23:47:40.348 500 FEE 434278 19142 6027279 2024-02-21 23:47:40.348 2024-02-21 23:47:40.348 4500 TIP 434278 826 6027282 2024-02-21 23:47:42.131 2024-02-21 23:47:42.131 500 FEE 433828 19966 6026310 2024-02-21 21:53:06.115 2024-02-21 21:53:06.115 200 FEE 434319 3377 6026311 2024-02-21 21:53:06.115 2024-02-21 21:53:06.115 1800 TIP 434319 10063 6026331 2024-02-21 21:54:44.695 2024-02-21 21:54:44.695 3300 FEE 433797 21083 6026332 2024-02-21 21:54:44.695 2024-02-21 21:54:44.695 29700 TIP 433797 20302 6026335 2024-02-21 21:54:53.482 2024-02-21 21:54:53.482 1800 FEE 433797 21585 6026336 2024-02-21 21:54:53.482 2024-02-21 21:54:53.482 16200 TIP 433797 17455 6026343 2024-02-21 21:55:02.448 2024-02-21 21:55:02.448 1000 STREAM 141924 16939 6026353 2024-02-21 21:55:54.048 2024-02-21 21:55:54.048 2100 FEE 434319 2065 6026354 2024-02-21 21:55:54.048 2024-02-21 21:55:54.048 18900 TIP 434319 2789 6026355 2024-02-21 21:55:59.754 2024-02-21 21:55:59.754 10000 FEE 434328 15484 6026356 2024-02-21 21:56:02.436 2024-02-21 21:56:02.436 1000 STREAM 141924 18995 6026359 2024-02-21 21:56:23.459 2024-02-21 21:56:23.459 2100 FEE 434319 7097 6026360 2024-02-21 21:56:23.459 2024-02-21 21:56:23.459 18900 TIP 434319 21291 6026367 2024-02-21 21:57:34.96 2024-02-21 21:57:34.96 1000 FEE 434330 19471 6026369 2024-02-21 21:57:51.974 2024-02-21 21:57:51.974 1100 FEE 433943 16788 6026370 2024-02-21 21:57:51.974 2024-02-21 21:57:51.974 9900 TIP 433943 739 6026400 2024-02-21 21:59:02.455 2024-02-21 21:59:02.455 1000 STREAM 141924 20504 6026413 2024-02-21 22:01:02.481 2024-02-21 22:01:02.481 1000 STREAM 141924 681 6026418 2024-02-21 22:01:33.677 2024-02-21 22:01:33.677 1000 FEE 406903 19037 6026419 2024-02-21 22:01:33.677 2024-02-21 22:01:33.677 9000 TIP 406903 14857 6026427 2024-02-21 22:01:37.763 2024-02-21 22:01:37.763 1000 FEE 434340 929 6026436 2024-02-21 22:02:25.255 2024-02-21 22:02:25.255 1600 FEE 434319 16259 6026437 2024-02-21 22:02:25.255 2024-02-21 22:02:25.255 14400 TIP 434319 21578 6026445 2024-02-21 22:03:02.505 2024-02-21 22:03:02.505 1000 STREAM 141924 20376 6026448 2024-02-21 22:03:06.69 2024-02-21 22:03:06.69 900 FEE 434334 10731 6026449 2024-02-21 22:03:06.69 2024-02-21 22:03:06.69 8100 TIP 434334 2519 6026455 2024-02-21 22:04:47.89 2024-02-21 22:04:47.89 2100 FEE 434341 21441 6026456 2024-02-21 22:04:47.89 2024-02-21 22:04:47.89 18900 TIP 434341 19016 6026470 2024-02-21 22:08:02.537 2024-02-21 22:08:02.537 1000 STREAM 141924 9985 6026471 2024-02-21 22:09:02.549 2024-02-21 22:09:02.549 1000 STREAM 141924 4763 6026473 2024-02-21 22:09:52.038 2024-02-21 22:09:52.038 1000 FEE 434292 7899 6026474 2024-02-21 22:09:52.038 2024-02-21 22:09:52.038 9000 TIP 434292 20117 6026488 2024-02-21 22:11:59.944 2024-02-21 22:11:59.944 0 FEE 434347 21371 6026491 2024-02-21 22:13:21.836 2024-02-21 22:13:21.836 1000 FEE 434280 5565 6026492 2024-02-21 22:13:21.836 2024-02-21 22:13:21.836 9000 TIP 434280 1603 6026495 2024-02-21 22:14:02.597 2024-02-21 22:14:02.597 1000 STREAM 141924 19506 6026496 2024-02-21 22:14:16.723 2024-02-21 22:14:16.723 1000 FEE 434348 684 6026497 2024-02-21 22:15:02.619 2024-02-21 22:15:02.619 1000 STREAM 141924 1751 6026499 2024-02-21 22:15:15.071 2024-02-21 22:15:15.071 10000 FEE 433934 10530 6026500 2024-02-21 22:15:15.071 2024-02-21 22:15:15.071 90000 TIP 433934 994 6026501 2024-02-21 22:15:29.673 2024-02-21 22:15:29.673 10000 FEE 434350 21427 6026503 2024-02-21 22:16:02.614 2024-02-21 22:16:02.614 1000 STREAM 141924 20922 6026509 2024-02-21 22:18:02.63 2024-02-21 22:18:02.63 1000 STREAM 141924 21585 6026519 2024-02-21 22:20:02.666 2024-02-21 22:20:02.666 1000 STREAM 141924 20539 6026545 2024-02-21 22:22:22.136 2024-02-21 22:22:22.136 900 FEE 434213 2046 6026546 2024-02-21 22:22:22.136 2024-02-21 22:22:22.136 8100 TIP 434213 1495 6026557 2024-02-21 22:23:04.988 2024-02-21 22:23:04.988 1000 FEE 434355 21578 6026564 2024-02-21 22:24:01.191 2024-02-21 22:24:01.191 9000 FEE 434338 1326 6026565 2024-02-21 22:24:01.191 2024-02-21 22:24:01.191 81000 TIP 434338 13517 6026575 2024-02-21 22:24:35.669 2024-02-21 22:24:35.669 900 FEE 434278 696 6026576 2024-02-21 22:24:35.669 2024-02-21 22:24:35.669 8100 TIP 434278 18774 6026581 2024-02-21 22:25:31.635 2024-02-21 22:25:31.635 100 FEE 434285 13575 6026582 2024-02-21 22:25:31.635 2024-02-21 22:25:31.635 900 TIP 434285 20816 6026583 2024-02-21 22:25:31.889 2024-02-21 22:25:31.889 900 FEE 434285 18119 6026584 2024-02-21 22:25:31.889 2024-02-21 22:25:31.889 8100 TIP 434285 19044 6026587 2024-02-21 22:25:37.187 2024-02-21 22:25:37.187 1000 FEE 434357 9366 6026588 2024-02-21 22:25:42.463 2024-02-21 22:25:42.463 90000 FEE 434285 21339 6026589 2024-02-21 22:25:42.463 2024-02-21 22:25:42.463 810000 TIP 434285 2213 6026590 2024-02-21 22:26:02.693 2024-02-21 22:26:02.693 1000 STREAM 141924 14465 6026601 2024-02-21 22:26:50.749 2024-02-21 22:26:50.749 900 FEE 434321 9337 6026602 2024-02-21 22:26:50.749 2024-02-21 22:26:50.749 8100 TIP 434321 15833 6026610 2024-02-21 22:30:18.357 2024-02-21 22:30:18.357 1000 FEE 434325 14015 6026611 2024-02-21 22:30:18.357 2024-02-21 22:30:18.357 9000 TIP 434325 21485 6026621 2024-02-21 22:30:42.013 2024-02-21 22:30:42.013 9000 FEE 434310 1802 6026622 2024-02-21 22:30:42.013 2024-02-21 22:30:42.013 81000 TIP 434310 2101 6026644 2024-02-21 22:32:02.746 2024-02-21 22:32:02.746 1000 STREAM 141924 21571 6026679 2024-02-21 22:37:02.681 2024-02-21 22:37:02.681 2300 FEE 434278 13599 6026680 2024-02-21 22:37:02.681 2024-02-21 22:37:02.681 20700 TIP 434278 14195 6026681 2024-02-21 22:37:02.796 2024-02-21 22:37:02.796 1000 STREAM 141924 12821 6026688 2024-02-21 22:37:04.374 2024-02-21 22:37:04.374 2300 FEE 434278 1567 6026689 2024-02-21 22:37:04.374 2024-02-21 22:37:04.374 20700 TIP 434278 18392 6026690 2024-02-21 22:37:04.504 2024-02-21 22:37:04.504 2300 FEE 434278 4570 6026691 2024-02-21 22:37:04.504 2024-02-21 22:37:04.504 20700 TIP 434278 20614 6026694 2024-02-21 22:37:58.766 2024-02-21 22:37:58.766 1000 FEE 434362 16966 6026700 2024-02-21 22:42:02.851 2024-02-21 22:42:02.851 1000 STREAM 141924 18735 6026706 2024-02-21 22:47:38.108 2024-02-21 22:47:38.108 7000 FEE 434364 18945 6026710 2024-02-21 22:50:04.635 2024-02-21 22:50:04.635 1000 FEE 434365 713 6026711 2024-02-21 22:50:13.433 2024-02-21 22:50:13.433 5000 FEE 434278 20337 6026712 2024-02-21 22:50:13.433 2024-02-21 22:50:13.433 45000 TIP 434278 15544 6026732 2024-02-21 22:51:53.155 2024-02-21 22:51:53.155 9000 FEE 434313 19785 6026733 2024-02-21 22:51:53.155 2024-02-21 22:51:53.155 81000 TIP 434313 19826 6026754 2024-02-21 22:52:50.684 2024-02-21 22:52:50.684 1000 FEE 434370 18500 6026756 2024-02-21 22:53:17.281 2024-02-21 22:53:17.281 6900 FEE 433876 1401 6026757 2024-02-21 22:53:17.281 2024-02-21 22:53:17.281 62100 TIP 433876 20782 6026760 2024-02-21 22:53:18.536 2024-02-21 22:53:18.536 5000 FEE 434243 21292 6026761 2024-02-21 22:53:18.536 2024-02-21 22:53:18.536 45000 TIP 434243 15925 6026782 2024-02-21 22:53:23.945 2024-02-21 22:53:23.945 5000 FEE 434243 10342 6026783 2024-02-21 22:53:23.945 2024-02-21 22:53:23.945 45000 TIP 434243 20826 6026789 2024-02-21 22:53:26.128 2024-02-21 22:53:26.128 5000 FEE 434243 18139 6026790 2024-02-21 22:53:26.128 2024-02-21 22:53:26.128 45000 TIP 434243 15386 6026799 2024-02-21 22:53:27.046 2024-02-21 22:53:27.046 5000 FEE 434243 10818 6026800 2024-02-21 22:53:27.046 2024-02-21 22:53:27.046 45000 TIP 434243 15180 6026846 2024-02-21 22:53:33.58 2024-02-21 22:53:33.58 8300 FEE 434278 8505 6026847 2024-02-21 22:53:33.58 2024-02-21 22:53:33.58 74700 TIP 434278 1468 6026849 2024-02-21 22:53:43.421 2024-02-21 22:53:43.421 5000 FEE 434077 19980 6026850 2024-02-21 22:53:43.421 2024-02-21 22:53:43.421 45000 TIP 434077 11423 6026857 2024-02-21 22:54:41.037 2024-02-21 22:54:41.037 8300 FEE 434346 902 6026858 2024-02-21 22:54:41.037 2024-02-21 22:54:41.037 74700 TIP 434346 11073 6026892 2024-02-21 22:55:09.017 2024-02-21 22:55:09.017 24900 FEE 434285 4084 6026893 2024-02-21 22:55:09.017 2024-02-21 22:55:09.017 224100 TIP 434285 19500 6026904 2024-02-21 22:55:09.771 2024-02-21 22:55:09.771 8300 FEE 434285 2577 6026905 2024-02-21 22:55:09.771 2024-02-21 22:55:09.771 74700 TIP 434285 2749 6026906 2024-02-21 22:55:09.904 2024-02-21 22:55:09.904 8300 FEE 434285 16301 6026907 2024-02-21 22:55:09.904 2024-02-21 22:55:09.904 74700 TIP 434285 725 6026922 2024-02-21 22:55:11.75 2024-02-21 22:55:11.75 8300 FEE 434285 15049 6026923 2024-02-21 22:55:11.75 2024-02-21 22:55:11.75 74700 TIP 434285 1845 6026926 2024-02-21 22:55:12.487 2024-02-21 22:55:12.487 100 FEE 434085 2525 6026347 2024-02-21 21:55:25.589 2024-02-21 21:55:25.589 2700 TIP 434298 16353 6026348 2024-02-21 21:55:26.219 2024-02-21 21:55:26.219 0 FEE 434325 2460 6026363 2024-02-21 21:56:59.279 2024-02-21 21:56:59.279 1000 FEE 434329 21208 6026364 2024-02-21 21:57:02.436 2024-02-21 21:57:02.436 1000 STREAM 141924 16276 6026371 2024-02-21 21:58:02.443 2024-02-21 21:58:02.443 1000 STREAM 141924 21578 6026374 2024-02-21 21:58:17.135 2024-02-21 21:58:17.135 1000 FEE 434309 21627 6026375 2024-02-21 21:58:17.135 2024-02-21 21:58:17.135 9000 TIP 434309 17541 6026377 2024-02-21 21:58:18.389 2024-02-21 21:58:18.389 1000 FEE 433878 10719 6026378 2024-02-21 21:58:18.389 2024-02-21 21:58:18.389 9000 TIP 433878 20981 6026379 2024-02-21 21:58:18.51 2024-02-21 21:58:18.51 1000 FEE 433878 18727 6026380 2024-02-21 21:58:18.51 2024-02-21 21:58:18.51 9000 TIP 433878 929 6026394 2024-02-21 21:59:01.757 2024-02-21 21:59:01.757 3300 FEE 434322 18507 6026395 2024-02-21 21:59:01.757 2024-02-21 21:59:01.757 29700 TIP 434322 3439 6026402 2024-02-21 21:59:22.155 2024-02-21 21:59:22.155 0 FEE 434333 18396 6026404 2024-02-21 22:00:02.49 2024-02-21 22:00:02.49 1000 STREAM 141924 4048 6026415 2024-02-21 22:01:26.75 2024-02-21 22:01:26.75 700 FEE 434329 16432 6026416 2024-02-21 22:01:26.75 2024-02-21 22:01:26.75 6300 TIP 434329 11298 6026430 2024-02-21 22:02:02.496 2024-02-21 22:02:02.496 1000 STREAM 141924 1472 6026435 2024-02-21 22:02:22.92 2024-02-21 22:02:22.92 1000 FEE 434341 11263 6026450 2024-02-21 22:03:07.652 2024-02-21 22:03:07.652 9000 FEE 434334 17183 6026451 2024-02-21 22:03:07.652 2024-02-21 22:03:07.652 81000 TIP 434334 16948 6026452 2024-02-21 22:04:02.522 2024-02-21 22:04:02.522 1000 STREAM 141924 17984 6026457 2024-02-21 22:05:02.519 2024-02-21 22:05:02.519 1000 STREAM 141924 928 6026459 2024-02-21 22:05:14.223 2024-02-21 22:05:14.223 1000 FEE 434031 16126 6026460 2024-02-21 22:05:14.223 2024-02-21 22:05:14.223 9000 TIP 434031 21242 6026461 2024-02-21 22:06:02.532 2024-02-21 22:06:02.532 1000 STREAM 141924 19267 6026466 2024-02-21 22:07:02.569 2024-02-21 22:07:02.569 1000 STREAM 141924 12102 6026475 2024-02-21 22:10:02.56 2024-02-21 22:10:02.56 1000 STREAM 141924 19795 6026486 2024-02-21 22:11:02.562 2024-02-21 22:11:02.562 1000 STREAM 141924 14152 6026487 2024-02-21 22:11:44.822 2024-02-21 22:11:44.822 1000 FEE 434347 21591 6026490 2024-02-21 22:13:02.591 2024-02-21 22:13:02.591 1000 STREAM 141924 16788 6026498 2024-02-21 22:15:10.011 2024-02-21 22:15:10.011 1000 FEE 434349 21344 6026510 2024-02-21 22:18:04.855 2024-02-21 22:18:04.855 1000 FEE 434336 4166 6026511 2024-02-21 22:18:04.855 2024-02-21 22:18:04.855 9000 TIP 434336 18330 6026532 2024-02-21 22:22:02.658 2024-02-21 22:22:02.658 1000 STREAM 141924 5752 6026541 2024-02-21 22:22:21.58 2024-02-21 22:22:21.58 2100 FEE 433950 5017 6026542 2024-02-21 22:22:21.58 2024-02-21 22:22:21.58 18900 TIP 433950 20205 6026566 2024-02-21 22:24:02.508 2024-02-21 22:24:02.508 100 FEE 434243 20861 6026567 2024-02-21 22:24:02.508 2024-02-21 22:24:02.508 900 TIP 434243 18124 6026568 2024-02-21 22:24:02.684 2024-02-21 22:24:02.684 1000 STREAM 141924 19966 6026571 2024-02-21 22:24:10.01 2024-02-21 22:24:10.01 9000 FEE 434243 700 6026572 2024-02-21 22:24:10.01 2024-02-21 22:24:10.01 81000 TIP 434243 21624 6026605 2024-02-21 22:28:02.712 2024-02-21 22:28:02.712 1000 STREAM 141924 1047 6026606 2024-02-21 22:29:00.929 2024-02-21 22:29:00.929 1000 FEE 434319 21466 6026607 2024-02-21 22:29:00.929 2024-02-21 22:29:00.929 9000 TIP 434319 16052 6026608 2024-02-21 22:29:02.727 2024-02-21 22:29:02.727 1000 STREAM 141924 985 6026609 2024-02-21 22:30:02.748 2024-02-21 22:30:02.748 1000 STREAM 141924 19796 6026630 2024-02-21 22:31:40.763 2024-02-21 22:31:40.763 100 FEE 433886 15624 6026631 2024-02-21 22:31:40.763 2024-02-21 22:31:40.763 900 TIP 433886 20218 6026638 2024-02-21 22:31:53.9 2024-02-21 22:31:53.9 100 FEE 434001 21357 6026639 2024-02-21 22:31:53.9 2024-02-21 22:31:53.9 900 TIP 434001 1584 6026645 2024-02-21 22:32:03.037 2024-02-21 22:32:03.037 9000 FEE 433886 21323 6026646 2024-02-21 22:32:03.037 2024-02-21 22:32:03.037 81000 TIP 433886 15762 6026650 2024-02-21 22:34:02.771 2024-02-21 22:34:02.771 1000 STREAM 141924 5495 6026692 2024-02-21 22:37:51.437 2024-02-21 22:37:51.437 21000 FEE 434243 21361 6026693 2024-02-21 22:37:51.437 2024-02-21 22:37:51.437 189000 TIP 434243 6537 6026697 2024-02-21 22:39:25.705 2024-02-21 22:39:25.705 1000 FEE 434363 5449 6026736 2024-02-21 22:52:06.864 2024-02-21 22:52:06.864 5000 FEE 434054 20891 6026737 2024-02-21 22:52:06.864 2024-02-21 22:52:06.864 45000 TIP 434054 6136 6026738 2024-02-21 22:52:07.929 2024-02-21 22:52:07.929 1000 FEE 434368 10016 6026745 2024-02-21 22:52:15.082 2024-02-21 22:52:15.082 5000 FEE 434171 4128 6026746 2024-02-21 22:52:15.082 2024-02-21 22:52:15.082 45000 TIP 434171 14271 6026750 2024-02-21 22:52:35.313 2024-02-21 22:52:35.313 5000 FEE 433943 9350 6026751 2024-02-21 22:52:35.313 2024-02-21 22:52:35.313 45000 TIP 433943 20669 6026768 2024-02-21 22:53:21.987 2024-02-21 22:53:21.987 5000 FEE 434243 15510 6026769 2024-02-21 22:53:21.987 2024-02-21 22:53:21.987 45000 TIP 434243 2046 6026795 2024-02-21 22:53:26.684 2024-02-21 22:53:26.684 5000 FEE 434243 12289 6026796 2024-02-21 22:53:26.684 2024-02-21 22:53:26.684 45000 TIP 434243 17798 6026829 2024-02-21 22:53:31.915 2024-02-21 22:53:31.915 8300 FEE 434278 21164 6026830 2024-02-21 22:53:31.915 2024-02-21 22:53:31.915 74700 TIP 434278 2016 6026875 2024-02-21 22:54:58.963 2024-02-21 22:54:58.963 8300 FEE 433943 19259 6026876 2024-02-21 22:54:58.963 2024-02-21 22:54:58.963 74700 TIP 433943 10549 6026888 2024-02-21 22:55:07.986 2024-02-21 22:55:07.986 8300 FEE 434285 1773 6026889 2024-02-21 22:55:07.986 2024-02-21 22:55:07.986 74700 TIP 434285 18040 6026908 2024-02-21 22:55:10.091 2024-02-21 22:55:10.091 8300 FEE 434285 2309 6026909 2024-02-21 22:55:10.091 2024-02-21 22:55:10.091 74700 TIP 434285 16633 6026916 2024-02-21 22:55:11.234 2024-02-21 22:55:11.234 8300 FEE 434285 4378 6026917 2024-02-21 22:55:11.234 2024-02-21 22:55:11.234 74700 TIP 434285 21522 6026967 2024-02-21 23:00:16.337 2024-02-21 23:00:16.337 2700 FEE 434285 794 6026968 2024-02-21 23:00:16.337 2024-02-21 23:00:16.337 24300 TIP 434285 13782 6026980 2024-02-21 23:01:19.065 2024-02-21 23:01:19.065 1000 FEE 434377 768 6027004 2024-02-21 23:07:30.939 2024-02-21 23:07:30.939 10000 FEE 434379 20258 6027028 2024-02-21 23:13:43.596 2024-02-21 23:13:43.596 100000 FEE 434385 10611 6027036 2024-02-21 23:14:02.219 2024-02-21 23:14:02.219 100 FEE 432044 21090 6027037 2024-02-21 23:14:02.219 2024-02-21 23:14:02.219 900 TIP 432044 896 6027049 2024-02-21 23:14:03.124 2024-02-21 23:14:03.124 100 FEE 432044 1272 6027050 2024-02-21 23:14:03.124 2024-02-21 23:14:03.124 900 TIP 432044 21145 6027078 2024-02-21 23:17:17.183 2024-02-21 23:17:17.183 1000 FEE 434389 5449 6027088 2024-02-21 23:17:57.265 2024-02-21 23:17:57.265 1000 FEE 433943 21393 6027089 2024-02-21 23:17:57.265 2024-02-21 23:17:57.265 9000 TIP 433943 2328 6027096 2024-02-21 23:19:18.12 2024-02-21 23:19:18.12 1000 FEE 434242 20023 6027097 2024-02-21 23:19:18.12 2024-02-21 23:19:18.12 9000 TIP 434242 6700 6027114 2024-02-21 23:21:15.165 2024-02-21 23:21:15.165 1000 FEE 434318 19535 6027115 2024-02-21 23:21:15.165 2024-02-21 23:21:15.165 9000 TIP 434318 19103 6027126 2024-02-21 23:23:49.108 2024-02-21 23:23:49.108 4000 FEE 434382 18309 6027127 2024-02-21 23:23:49.108 2024-02-21 23:23:49.108 36000 TIP 434382 18932 6027135 2024-02-21 23:26:07.812 2024-02-21 23:26:07.812 300 FEE 434358 9356 6027136 2024-02-21 23:26:07.812 2024-02-21 23:26:07.812 2700 TIP 434358 19995 6027137 2024-02-21 23:26:14.72 2024-02-21 23:26:14.72 1000 FEE 434026 7978 6027138 2024-02-21 23:26:14.72 2024-02-21 23:26:14.72 9000 TIP 434026 732 6027166 2024-02-21 23:28:13.38 2024-02-21 23:28:13.38 1000 FEE 433590 3342 6027167 2024-02-21 23:28:13.38 2024-02-21 23:28:13.38 9000 TIP 433590 18139 6027174 2024-02-21 23:30:31.47 2024-02-21 23:30:31.47 1000 FEE 434394 20817 6027175 2024-02-21 23:30:58.838 2024-02-21 23:30:58.838 1000 FEE 434395 16348 6027177 2024-02-21 23:31:05.801 2024-02-21 23:31:05.801 300 FEE 433765 20198 6027178 2024-02-21 23:31:05.801 2024-02-21 23:31:05.801 2700 TIP 433765 19459 6027205 2024-02-21 23:38:14.572 2024-02-21 23:38:14.572 2100 FEE 434058 21138 6026441 2024-02-21 22:02:49.193 2024-02-21 22:02:49.193 2100 FEE 434325 2529 6026442 2024-02-21 22:02:49.193 2024-02-21 22:02:49.193 18900 TIP 434325 20826 6026458 2024-02-21 22:05:04.191 2024-02-21 22:05:04.191 1000 FEE 434342 15719 6026467 2024-02-21 22:07:08.258 2024-02-21 22:07:08.258 100000 FEE 434343 11522 6026468 2024-02-21 22:07:13.618 2024-02-21 22:07:13.618 1000 FEE 434344 673 6026489 2024-02-21 22:12:01.575 2024-02-21 22:12:01.575 1000 STREAM 141924 21248 6026502 2024-02-21 22:15:59.322 2024-02-21 22:15:59.322 10000 FEE 434351 21588 6026506 2024-02-21 22:17:01.569 2024-02-21 22:17:01.569 1000 STREAM 141924 21412 6026520 2024-02-21 22:21:01.591 2024-02-21 22:21:01.591 1000 STREAM 141924 18984 6026535 2024-02-21 22:22:04.395 2024-02-21 22:22:04.395 100 FEE 434329 18310 6026536 2024-02-21 22:22:04.395 2024-02-21 22:22:04.395 900 TIP 434329 2013 6026539 2024-02-21 22:22:09.3 2024-02-21 22:22:09.3 900 FEE 434184 730 6026540 2024-02-21 22:22:09.3 2024-02-21 22:22:09.3 8100 TIP 434184 4014 6026555 2024-02-21 22:23:01.621 2024-02-21 22:23:01.621 1000 STREAM 141924 19938 6026649 2024-02-21 22:33:49.628 2024-02-21 22:33:49.628 1000 FEE 434361 5112 6026661 2024-02-21 22:36:53.134 2024-02-21 22:36:53.134 2300 FEE 434318 9347 6026662 2024-02-21 22:36:53.134 2024-02-21 22:36:53.134 20700 TIP 434318 797 6026665 2024-02-21 22:36:59.188 2024-02-21 22:36:59.188 2300 FEE 434310 715 6026666 2024-02-21 22:36:59.188 2024-02-21 22:36:59.188 20700 TIP 434310 762 6026677 2024-02-21 22:37:02.512 2024-02-21 22:37:02.512 2300 FEE 434278 827 6026678 2024-02-21 22:37:02.512 2024-02-21 22:37:02.512 20700 TIP 434278 20059 6026686 2024-02-21 22:37:04.138 2024-02-21 22:37:04.138 2300 FEE 434278 21575 6026687 2024-02-21 22:37:04.138 2024-02-21 22:37:04.138 20700 TIP 434278 17517 6026739 2024-02-21 22:52:11.975 2024-02-21 22:52:11.975 5000 FEE 434025 16929 6026740 2024-02-21 22:52:11.975 2024-02-21 22:52:11.975 45000 TIP 434025 1471 6026741 2024-02-21 22:52:12.12 2024-02-21 22:52:12.12 6900 FEE 434306 20302 6026742 2024-02-21 22:52:12.12 2024-02-21 22:52:12.12 62100 TIP 434306 16124 6026743 2024-02-21 22:52:14.869 2024-02-21 22:52:14.869 5000 FEE 434171 1130 6026744 2024-02-21 22:52:14.869 2024-02-21 22:52:14.869 45000 TIP 434171 685 6026748 2024-02-21 22:52:34.8 2024-02-21 22:52:34.8 5000 FEE 433943 5865 6026749 2024-02-21 22:52:34.8 2024-02-21 22:52:34.8 45000 TIP 433943 19501 6026752 2024-02-21 22:52:36.693 2024-02-21 22:52:36.693 5000 FEE 433943 18659 6026753 2024-02-21 22:52:36.693 2024-02-21 22:52:36.693 45000 TIP 433943 14909 6026762 2024-02-21 22:53:20.863 2024-02-21 22:53:20.863 5000 FEE 434243 1549 6026763 2024-02-21 22:53:20.863 2024-02-21 22:53:20.863 45000 TIP 434243 2620 6026801 2024-02-21 22:53:27.211 2024-02-21 22:53:27.211 5000 FEE 434243 20073 6026802 2024-02-21 22:53:27.211 2024-02-21 22:53:27.211 45000 TIP 434243 6191 6026833 2024-02-21 22:53:32.42 2024-02-21 22:53:32.42 1000 FEE 434372 21296 6026842 2024-02-21 22:53:33.405 2024-02-21 22:53:33.405 8300 FEE 434278 19044 6026843 2024-02-21 22:53:33.405 2024-02-21 22:53:33.405 74700 TIP 434278 13399 6026848 2024-02-21 22:53:33.595 2024-02-21 22:53:33.595 1000 FEE 434373 2213 6026871 2024-02-21 22:54:54.143 2024-02-21 22:54:54.143 8300 FEE 433359 20430 6026872 2024-02-21 22:54:54.143 2024-02-21 22:54:54.143 74700 TIP 433359 21361 6026877 2024-02-21 22:54:59.03 2024-02-21 22:54:59.03 8300 FEE 433943 9353 6026878 2024-02-21 22:54:59.03 2024-02-21 22:54:59.03 74700 TIP 433943 18690 6026910 2024-02-21 22:55:10.133 2024-02-21 22:55:10.133 8300 FEE 434285 15488 6026911 2024-02-21 22:55:10.133 2024-02-21 22:55:10.133 74700 TIP 434285 14258 6026912 2024-02-21 22:55:10.258 2024-02-21 22:55:10.258 8300 FEE 434285 14074 6026913 2024-02-21 22:55:10.258 2024-02-21 22:55:10.258 74700 TIP 434285 6164 6026920 2024-02-21 22:55:11.641 2024-02-21 22:55:11.641 8300 FEE 434285 1044 6026921 2024-02-21 22:55:11.641 2024-02-21 22:55:11.641 74700 TIP 434285 5085 6026951 2024-02-21 22:59:25.885 2024-02-21 22:59:25.885 1000 FEE 434376 16440 6026959 2024-02-21 23:00:15.569 2024-02-21 23:00:15.569 2700 FEE 434285 3729 6026960 2024-02-21 23:00:15.569 2024-02-21 23:00:15.569 24300 TIP 434285 17321 6026971 2024-02-21 23:00:16.671 2024-02-21 23:00:16.671 2700 FEE 434285 15938 6026972 2024-02-21 23:00:16.671 2024-02-21 23:00:16.671 24300 TIP 434285 9246 6026981 2024-02-21 23:01:31.793 2024-02-21 23:01:31.793 7000 FEE 434378 15762 6026983 2024-02-21 23:02:30.862 2024-02-21 23:02:30.862 6900 FEE 433771 20439 6026984 2024-02-21 23:02:30.862 2024-02-21 23:02:30.862 62100 TIP 433771 13174 6027023 2024-02-21 23:12:42.964 2024-02-21 23:12:42.964 1300 FEE 434328 2196 6027024 2024-02-21 23:12:42.964 2024-02-21 23:12:42.964 11700 TIP 434328 636 6027057 2024-02-21 23:14:03.733 2024-02-21 23:14:03.733 100 FEE 432044 9337 6027058 2024-02-21 23:14:03.733 2024-02-21 23:14:03.733 900 TIP 432044 894 6027063 2024-02-21 23:14:04.23 2024-02-21 23:14:04.23 100 FEE 432044 1352 6027064 2024-02-21 23:14:04.23 2024-02-21 23:14:04.23 900 TIP 432044 5776 6027065 2024-02-21 23:14:04.442 2024-02-21 23:14:04.442 100 FEE 432044 18507 6027066 2024-02-21 23:14:04.442 2024-02-21 23:14:04.442 900 TIP 432044 14213 6027079 2024-02-21 23:17:51.228 2024-02-21 23:17:51.228 0 FEE 434389 3717 6027108 2024-02-21 23:20:43.015 2024-02-21 23:20:43.015 1000 FEE 433851 21064 6027109 2024-02-21 23:20:43.015 2024-02-21 23:20:43.015 9000 TIP 433851 4175 6027160 2024-02-21 23:28:12.755 2024-02-21 23:28:12.755 1000 FEE 433590 14357 6027161 2024-02-21 23:28:12.755 2024-02-21 23:28:12.755 9000 TIP 433590 1006 6027168 2024-02-21 23:28:13.423 2024-02-21 23:28:13.423 1000 FEE 433590 20470 6027169 2024-02-21 23:28:13.423 2024-02-21 23:28:13.423 9000 TIP 433590 715 6027219 2024-02-21 23:39:57.736 2024-02-21 23:39:57.736 2300 FEE 434385 19773 6027220 2024-02-21 23:39:57.736 2024-02-21 23:39:57.736 20700 TIP 434385 21021 6027249 2024-02-21 23:42:54.757 2024-02-21 23:42:54.757 300 FEE 434285 5761 6027250 2024-02-21 23:42:54.757 2024-02-21 23:42:54.757 2700 TIP 434285 19267 6027253 2024-02-21 23:43:33.825 2024-02-21 23:43:33.825 1000 FEE 434407 5565 6027262 2024-02-21 23:45:27.201 2024-02-21 23:45:27.201 500 FEE 434318 1624 6027263 2024-02-21 23:45:27.201 2024-02-21 23:45:27.201 4500 TIP 434318 13587 6027300 2024-02-21 23:47:55.756 2024-02-21 23:47:55.756 500 FEE 433978 664 6027301 2024-02-21 23:47:55.756 2024-02-21 23:47:55.756 4500 TIP 433978 12911 6027317 2024-02-21 23:48:56.581 2024-02-21 23:48:56.581 1000 FEE 434412 1745 6027342 2024-02-21 23:51:07.664 2024-02-21 23:51:07.664 1000 FEE 434416 21624 6027356 2024-02-21 23:53:40.76 2024-02-21 23:53:40.76 1000 FEE 433844 14308 6027357 2024-02-21 23:53:40.76 2024-02-21 23:53:40.76 9000 TIP 433844 21042 6027383 2024-02-21 23:57:37.833 2024-02-21 23:57:37.833 1000 FEE 433326 14791 6027384 2024-02-21 23:57:37.833 2024-02-21 23:57:37.833 9000 TIP 433326 11866 6027399 2024-02-22 00:00:40.35 2024-02-22 00:00:40.35 1000 FEE 434425 18378 6027403 2024-02-22 00:02:22.493 2024-02-22 00:02:22.493 1000 FEE 433828 6602 6027404 2024-02-22 00:02:22.493 2024-02-22 00:02:22.493 9000 TIP 433828 19810 6027423 2024-02-22 00:04:00.765 2024-02-22 00:04:00.765 1000 FEE 434171 4415 6027424 2024-02-22 00:04:00.765 2024-02-22 00:04:00.765 9000 TIP 434171 11240 6027426 2024-02-22 00:04:41.172 2024-02-22 00:04:41.172 1000 FEE 434026 15544 6027427 2024-02-22 00:04:41.172 2024-02-22 00:04:41.172 9000 TIP 434026 20272 6027450 2024-02-22 00:14:03.681 2024-02-22 00:14:03.681 1000 FEE 434429 7659 6027469 2024-02-22 00:16:02.109 2024-02-22 00:16:02.109 1000 FEE 434425 814 6027470 2024-02-22 00:16:02.109 2024-02-22 00:16:02.109 9000 TIP 434425 16440 6027482 2024-02-22 00:16:17.327 2024-02-22 00:16:17.327 1000 FEE 434400 20084 6027483 2024-02-22 00:16:17.327 2024-02-22 00:16:17.327 9000 TIP 434400 4043 6027486 2024-02-22 00:16:18.149 2024-02-22 00:16:18.149 1000 FEE 434400 18476 6027487 2024-02-22 00:16:18.149 2024-02-22 00:16:18.149 9000 TIP 434400 9517 6027511 2024-02-22 00:22:21.375 2024-02-22 00:22:21.375 1000 FEE 433844 1817 6027512 2024-02-22 00:22:21.375 2024-02-22 00:22:21.375 9000 TIP 433844 14503 6026518 2024-02-21 22:19:01.583 2024-02-21 22:19:01.583 1000 STREAM 141924 21556 6026579 2024-02-21 22:25:01.617 2024-02-21 22:25:01.617 1000 STREAM 141924 19689 6026603 2024-02-21 22:27:01.599 2024-02-21 22:27:01.599 1000 STREAM 141924 21040 6026623 2024-02-21 22:31:01.657 2024-02-21 22:31:01.657 1000 STREAM 141924 17838 6026705 2024-02-21 22:47:01.706 2024-02-21 22:47:01.706 1000 STREAM 141924 16965 6026946 2024-02-21 22:57:01.787 2024-02-21 22:57:01.787 1000 STREAM 141924 5865 6026985 2024-02-21 23:03:01.822 2024-02-21 23:03:01.822 1000 STREAM 141924 3409 6027011 2024-02-21 23:09:02.464 2024-02-21 23:09:02.464 1000 STREAM 141924 12188 6027073 2024-02-21 23:15:02.54 2024-02-21 23:15:02.54 1000 STREAM 141924 2681 6026620 2024-02-21 22:30:41.363 2024-02-21 22:30:41.363 9000 TIP 434310 11091 6026634 2024-02-21 22:31:49.994 2024-02-21 22:31:49.994 100 FEE 433958 10490 6026635 2024-02-21 22:31:49.994 2024-02-21 22:31:49.994 900 TIP 433958 667 6026642 2024-02-21 22:31:55.663 2024-02-21 22:31:55.663 9000 FEE 434001 20922 6026643 2024-02-21 22:31:55.663 2024-02-21 22:31:55.663 81000 TIP 434001 18717 6026647 2024-02-21 22:33:01.656 2024-02-21 22:33:01.656 1000 STREAM 141924 2681 6026651 2024-02-21 22:34:33.841 2024-02-21 22:34:33.841 7100 FEE 434338 974 6026652 2024-02-21 22:34:33.841 2024-02-21 22:34:33.841 63900 TIP 434338 12277 6026653 2024-02-21 22:35:05.164 2024-02-21 22:35:05.164 1000 STREAM 141924 1983 6026654 2024-02-21 22:36:03.101 2024-02-21 22:36:03.101 1000 STREAM 141924 7510 6026659 2024-02-21 22:36:52.988 2024-02-21 22:36:52.988 4600 FEE 434318 21402 6026660 2024-02-21 22:36:52.988 2024-02-21 22:36:52.988 41400 TIP 434318 1800 6026673 2024-02-21 22:37:02.162 2024-02-21 22:37:02.162 2300 FEE 434278 17535 6026674 2024-02-21 22:37:02.162 2024-02-21 22:37:02.162 20700 TIP 434278 8506 6026682 2024-02-21 22:37:02.834 2024-02-21 22:37:02.834 2300 FEE 434278 21501 6026683 2024-02-21 22:37:02.834 2024-02-21 22:37:02.834 20700 TIP 434278 16149 6026695 2024-02-21 22:38:01.671 2024-02-21 22:38:01.671 1000 STREAM 141924 624 6026696 2024-02-21 22:39:03.098 2024-02-21 22:39:03.098 1000 STREAM 141924 21356 6026699 2024-02-21 22:41:01.693 2024-02-21 22:41:01.693 1000 STREAM 141924 2176 6026701 2024-02-21 22:43:05.153 2024-02-21 22:43:05.153 1000 STREAM 141924 4958 6026702 2024-02-21 22:44:03.172 2024-02-21 22:44:03.172 1000 STREAM 141924 18679 6026703 2024-02-21 22:45:01.692 2024-02-21 22:45:01.692 1000 STREAM 141924 2061 6026708 2024-02-21 22:49:02.239 2024-02-21 22:49:02.239 1000 STREAM 141924 20710 6026709 2024-02-21 22:50:02.95 2024-02-21 22:50:02.95 1000 STREAM 141924 732 6026717 2024-02-21 22:51:02.238 2024-02-21 22:51:02.238 1000 STREAM 141924 9982 6026718 2024-02-21 22:51:04.892 2024-02-21 22:51:04.892 100000 DONT_LIKE_THIS 434351 5085 6026720 2024-02-21 22:51:34.42 2024-02-21 22:51:34.42 5000 FEE 433967 9334 6026721 2024-02-21 22:51:34.42 2024-02-21 22:51:34.42 45000 TIP 433967 987 6026735 2024-02-21 22:52:03.248 2024-02-21 22:52:03.248 1000 STREAM 141924 20757 6026747 2024-02-21 22:52:22.963 2024-02-21 22:52:22.963 1000 FEE 434369 12222 6026755 2024-02-21 22:53:01.765 2024-02-21 22:53:01.765 1000 STREAM 141924 21503 6026774 2024-02-21 22:53:22.678 2024-02-21 22:53:22.678 10000 FEE 434243 15577 6026775 2024-02-21 22:53:22.678 2024-02-21 22:53:22.678 90000 TIP 434243 19309 6026784 2024-02-21 22:53:25.06 2024-02-21 22:53:25.06 5000 FEE 434243 20509 6026785 2024-02-21 22:53:25.06 2024-02-21 22:53:25.06 45000 TIP 434243 19777 6026786 2024-02-21 22:53:25.8 2024-02-21 22:53:25.8 1000 FEE 434371 19332 6026787 2024-02-21 22:53:25.9 2024-02-21 22:53:25.9 5000 FEE 434243 4378 6026788 2024-02-21 22:53:25.9 2024-02-21 22:53:25.9 45000 TIP 434243 1124 6026805 2024-02-21 22:53:27.514 2024-02-21 22:53:27.514 5000 FEE 434243 17011 6026806 2024-02-21 22:53:27.514 2024-02-21 22:53:27.514 45000 TIP 434243 8926 6026821 2024-02-21 22:53:31.498 2024-02-21 22:53:31.498 8300 FEE 434278 756 6026822 2024-02-21 22:53:31.498 2024-02-21 22:53:31.498 74700 TIP 434278 19484 6026823 2024-02-21 22:53:31.569 2024-02-21 22:53:31.569 8300 FEE 434278 18735 6026824 2024-02-21 22:53:31.569 2024-02-21 22:53:31.569 74700 TIP 434278 2046 6026840 2024-02-21 22:53:33.199 2024-02-21 22:53:33.199 8300 FEE 434278 3706 6026841 2024-02-21 22:53:33.199 2024-02-21 22:53:33.199 74700 TIP 434278 19138 6026851 2024-02-21 22:54:02.937 2024-02-21 22:54:02.937 1000 STREAM 141924 20500 6026855 2024-02-21 22:54:30.285 2024-02-21 22:54:30.285 5000 FEE 433979 20990 6026856 2024-02-21 22:54:30.285 2024-02-21 22:54:30.285 45000 TIP 433979 1495 6026861 2024-02-21 22:54:52.812 2024-02-21 22:54:52.812 8300 FEE 433359 10013 6026862 2024-02-21 22:54:52.812 2024-02-21 22:54:52.812 74700 TIP 433359 19034 6026865 2024-02-21 22:54:53.131 2024-02-21 22:54:53.131 8300 FEE 433359 20816 6026866 2024-02-21 22:54:53.131 2024-02-21 22:54:53.131 74700 TIP 433359 9261 6026887 2024-02-21 22:55:01.765 2024-02-21 22:55:01.765 1000 STREAM 141924 21104 6026898 2024-02-21 22:55:09.349 2024-02-21 22:55:09.349 8300 FEE 434285 19352 6026899 2024-02-21 22:55:09.349 2024-02-21 22:55:09.349 74700 TIP 434285 18017 6026928 2024-02-21 22:55:12.673 2024-02-21 22:55:12.673 900 FEE 434085 19044 6026929 2024-02-21 22:55:12.673 2024-02-21 22:55:12.673 8100 TIP 434085 5978 6026930 2024-02-21 22:55:13.071 2024-02-21 22:55:13.071 1000 FEE 434375 5661 6026935 2024-02-21 22:55:20.883 2024-02-21 22:55:20.883 100 FEE 433881 21624 6026936 2024-02-21 22:55:20.883 2024-02-21 22:55:20.883 900 TIP 433881 10690 6026945 2024-02-21 22:56:02.953 2024-02-21 22:56:02.953 1000 STREAM 141924 18357 6026947 2024-02-21 22:58:03.25 2024-02-21 22:58:03.25 1000 STREAM 141924 8074 6026950 2024-02-21 22:59:01.786 2024-02-21 22:59:01.786 1000 STREAM 141924 7818 6026977 2024-02-21 23:00:17.43 2024-02-21 23:00:17.43 5400 FEE 434285 21343 6026978 2024-02-21 23:00:17.43 2024-02-21 23:00:17.43 48600 TIP 434285 15474 6026982 2024-02-21 23:02:03.29 2024-02-21 23:02:03.29 1000 STREAM 141924 20657 6026991 2024-02-21 23:05:01.838 2024-02-21 23:05:01.838 1000 STREAM 141924 7877 6026994 2024-02-21 23:06:03.331 2024-02-21 23:06:03.331 1000 STREAM 141924 14791 6026997 2024-02-21 23:06:52.59 2024-02-21 23:06:52.59 2600 FEE 434368 18923 6026998 2024-02-21 23:06:52.59 2024-02-21 23:06:52.59 23400 TIP 434368 1122 6027005 2024-02-21 23:08:02.997 2024-02-21 23:08:02.997 1000 STREAM 141924 12356 6027008 2024-02-21 23:08:54.304 2024-02-21 23:08:54.304 1000 FEE 434380 16350 6027015 2024-02-21 23:11:03.756 2024-02-21 23:11:03.756 10000 FEE 434382 19118 6027022 2024-02-21 23:12:27.442 2024-02-21 23:12:27.442 1000 FEE 434384 4313 6027027 2024-02-21 23:13:02.981 2024-02-21 23:13:02.981 1000 STREAM 141924 19147 6027030 2024-02-21 23:14:01.8 2024-02-21 23:14:01.8 100 FEE 432044 980 6027031 2024-02-21 23:14:01.8 2024-02-21 23:14:01.8 900 TIP 432044 18306 6027032 2024-02-21 23:14:01.945 2024-02-21 23:14:01.945 100 FEE 432044 14910 6027033 2024-02-21 23:14:01.945 2024-02-21 23:14:01.945 900 TIP 432044 5904 6027048 2024-02-21 23:14:03.021 2024-02-21 23:14:03.021 1000 STREAM 141924 1785 6027051 2024-02-21 23:14:03.279 2024-02-21 23:14:03.279 100 FEE 432044 16097 6027052 2024-02-21 23:14:03.279 2024-02-21 23:14:03.279 900 TIP 432044 672 6027080 2024-02-21 23:17:51.598 2024-02-21 23:17:51.598 1000 FEE 433499 811 6027081 2024-02-21 23:17:51.598 2024-02-21 23:17:51.598 9000 TIP 433499 9 6027092 2024-02-21 23:19:03.045 2024-02-21 23:19:03.045 1000 STREAM 141924 19581 6027110 2024-02-21 23:20:43.084 2024-02-21 23:20:43.084 1000 FEE 434392 17082 6027113 2024-02-21 23:21:03.045 2024-02-21 23:21:03.045 1000 STREAM 141924 20291 6027116 2024-02-21 23:22:03.053 2024-02-21 23:22:03.053 1000 STREAM 141924 11145 6027119 2024-02-21 23:23:03.051 2024-02-21 23:23:03.051 1000 STREAM 141924 19030 6027139 2024-02-21 23:26:15.915 2024-02-21 23:26:15.915 1000 FEE 434026 13587 6027140 2024-02-21 23:26:15.915 2024-02-21 23:26:15.915 9000 TIP 434026 15858 6027150 2024-02-21 23:27:03.079 2024-02-21 23:27:03.079 1000 STREAM 141924 3990 6027159 2024-02-21 23:28:03.067 2024-02-21 23:28:03.067 1000 STREAM 141924 1729 6027164 2024-02-21 23:28:13.119 2024-02-21 23:28:13.119 1000 FEE 433590 20891 6027165 2024-02-21 23:28:13.119 2024-02-21 23:28:13.119 9000 TIP 433590 18909 6027173 2024-02-21 23:30:03.113 2024-02-21 23:30:03.113 1000 STREAM 141924 2342 6027176 2024-02-21 23:31:03.095 2024-02-21 23:31:03.095 1000 STREAM 141924 20310 6027182 2024-02-21 23:33:03.101 2024-02-21 23:33:03.101 1000 STREAM 141924 8459 6027186 2024-02-21 23:34:03.097 2024-02-21 23:34:03.097 1000 STREAM 141924 8242 6027188 2024-02-21 23:35:03.101 2024-02-21 23:35:03.101 1000 STREAM 141924 1439 6027191 2024-02-21 23:36:03.104 2024-02-21 23:36:03.104 1000 STREAM 141924 18769 6027198 2024-02-21 23:37:02.004 2024-02-21 23:37:02.004 1000 STREAM 141924 8284 6027199 2024-02-21 23:37:18.185 2024-02-21 23:37:18.185 500 FEE 434025 20854 6027200 2024-02-21 23:37:18.185 2024-02-21 23:37:18.185 4500 TIP 434025 10016 6027204 2024-02-21 23:38:03.116 2024-02-21 23:38:03.116 1000 STREAM 141924 9816 6027207 2024-02-21 23:38:20.151 2024-02-21 23:38:20.151 1000 FEE 434401 1046 6026918 2024-02-21 22:55:11.351 2024-02-21 22:55:11.351 8300 FEE 434285 4313 6026919 2024-02-21 22:55:11.351 2024-02-21 22:55:11.351 74700 TIP 434285 5978 6026931 2024-02-21 22:55:16.354 2024-02-21 22:55:16.354 100 FEE 433914 8242 6026932 2024-02-21 22:55:16.354 2024-02-21 22:55:16.354 900 TIP 433914 19533 6026939 2024-02-21 22:56:01.184 2024-02-21 22:56:01.184 6900 FEE 433748 19087 6026940 2024-02-21 22:56:01.184 2024-02-21 22:56:01.184 62100 TIP 433748 12188 6026988 2024-02-21 23:03:38.154 2024-02-21 23:03:38.154 1600 FEE 434278 1425 6026989 2024-02-21 23:03:38.154 2024-02-21 23:03:38.154 14400 TIP 434278 17321 6027006 2024-02-21 23:08:18.863 2024-02-21 23:08:18.863 2100 FEE 433066 18667 6027007 2024-02-21 23:08:18.863 2024-02-21 23:08:18.863 18900 TIP 433066 21506 6027012 2024-02-21 23:09:21.594 2024-02-21 23:09:21.594 1000 FEE 434381 2748 6027016 2024-02-21 23:11:34.905 2024-02-21 23:11:34.905 12800 FEE 434276 9351 6027017 2024-02-21 23:11:34.905 2024-02-21 23:11:34.905 115200 TIP 434276 21287 6027061 2024-02-21 23:14:04.044 2024-02-21 23:14:04.044 100 FEE 432044 1890 6027062 2024-02-21 23:14:04.044 2024-02-21 23:14:04.044 900 TIP 432044 976 6027067 2024-02-21 23:14:04.66 2024-02-21 23:14:04.66 100 FEE 432044 7682 6027068 2024-02-21 23:14:04.66 2024-02-21 23:14:04.66 900 TIP 432044 19044 6027071 2024-02-21 23:14:05.216 2024-02-21 23:14:05.216 100 FEE 432044 782 6027072 2024-02-21 23:14:05.216 2024-02-21 23:14:05.216 900 TIP 432044 14688 6027077 2024-02-21 23:17:12.215 2024-02-21 23:17:12.215 1000 FEE 434388 18231 6027086 2024-02-21 23:17:55.899 2024-02-21 23:17:55.899 1000 FEE 433828 2735 6027087 2024-02-21 23:17:55.899 2024-02-21 23:17:55.899 9000 TIP 433828 18473 6027098 2024-02-21 23:19:25.198 2024-02-21 23:19:25.198 1000 FEE 434391 21466 6027145 2024-02-21 23:26:37.609 2024-02-21 23:26:37.609 700 FEE 434364 18995 6027146 2024-02-21 23:26:37.609 2024-02-21 23:26:37.609 6300 TIP 434364 4487 6027147 2024-02-21 23:26:41.988 2024-02-21 23:26:41.988 700 FEE 434378 18533 6027148 2024-02-21 23:26:41.988 2024-02-21 23:26:41.988 6300 TIP 434378 20264 6027151 2024-02-21 23:27:14.56 2024-02-21 23:27:14.56 300 FEE 309872 1970 6027152 2024-02-21 23:27:14.56 2024-02-21 23:27:14.56 2700 TIP 309872 9367 6027157 2024-02-21 23:27:53.441 2024-02-21 23:27:53.441 6900 FEE 434285 18637 6027158 2024-02-21 23:27:53.441 2024-02-21 23:27:53.441 62100 TIP 434285 5171 6027162 2024-02-21 23:28:12.847 2024-02-21 23:28:12.847 1000 FEE 433590 11821 6027163 2024-02-21 23:28:12.847 2024-02-21 23:28:12.847 9000 TIP 433590 16154 6027179 2024-02-21 23:31:34.993 2024-02-21 23:31:34.993 300 FEE 433756 628 6027180 2024-02-21 23:31:34.993 2024-02-21 23:31:34.993 2700 TIP 433756 10944 6027184 2024-02-21 23:33:53.785 2024-02-21 23:33:53.785 6900 FEE 433783 20555 6027185 2024-02-21 23:33:53.785 2024-02-21 23:33:53.785 62100 TIP 433783 8459 6027197 2024-02-21 23:36:33.547 2024-02-21 23:36:33.547 1000 FEE 434399 18524 6027229 2024-02-21 23:41:04.8 2024-02-21 23:41:04.8 2100 FEE 434395 9450 6027230 2024-02-21 23:41:04.8 2024-02-21 23:41:04.8 18900 TIP 434395 21063 6027274 2024-02-21 23:47:37.994 2024-02-21 23:47:37.994 500 FEE 433688 20023 6027275 2024-02-21 23:47:37.994 2024-02-21 23:47:37.994 4500 TIP 433688 7809 6027286 2024-02-21 23:47:44.32 2024-02-21 23:47:44.32 500 FEE 433833 9669 6027287 2024-02-21 23:47:44.32 2024-02-21 23:47:44.32 4500 TIP 433833 19142 6027296 2024-02-21 23:47:51.911 2024-02-21 23:47:51.911 500 FEE 433886 4126 6027297 2024-02-21 23:47:51.911 2024-02-21 23:47:51.911 4500 TIP 433886 20201 6027377 2024-02-21 23:57:08.927 2024-02-21 23:57:08.927 1000 FEE 433849 20799 6027378 2024-02-21 23:57:08.927 2024-02-21 23:57:08.927 9000 TIP 433849 13217 6027385 2024-02-21 23:57:50.482 2024-02-21 23:57:50.482 1000 FEE 434300 1273 6027386 2024-02-21 23:57:50.482 2024-02-21 23:57:50.482 9000 TIP 434300 21562 6027397 2024-02-22 00:00:13.203 2024-02-22 00:00:13.203 3100 FEE 434348 20782 6027398 2024-02-22 00:00:13.203 2024-02-22 00:00:13.203 27900 TIP 434348 19967 6027405 2024-02-22 00:02:24.252 2024-02-22 00:02:24.252 1000 FEE 434278 13406 6027406 2024-02-22 00:02:24.252 2024-02-22 00:02:24.252 9000 TIP 434278 5708 6027445 2024-02-22 00:11:33.073 2024-02-22 00:11:33.073 100 FEE 434371 15052 6027446 2024-02-22 00:11:33.073 2024-02-22 00:11:33.073 900 TIP 434371 2233 6027458 2024-02-22 00:15:14.555 2024-02-22 00:15:14.555 1000 FEE 434393 21228 6027459 2024-02-22 00:15:14.555 2024-02-22 00:15:14.555 9000 TIP 434393 666 6027499 2024-02-22 00:20:19.173 2024-02-22 00:20:19.173 100 FEE 434408 6030 6027500 2024-02-22 00:20:19.173 2024-02-22 00:20:19.173 900 TIP 434408 14280 6027526 2024-02-22 00:23:30.394 2024-02-22 00:23:30.394 1000 FEE 433722 21262 6027527 2024-02-22 00:23:30.394 2024-02-22 00:23:30.394 9000 TIP 433722 12959 6027528 2024-02-22 00:23:41.029 2024-02-22 00:23:41.029 1000 FEE 433842 9335 6027529 2024-02-22 00:23:41.029 2024-02-22 00:23:41.029 9000 TIP 433842 14489 6027536 2024-02-22 00:25:18.335 2024-02-22 00:25:18.335 100 FEE 434107 13365 6027537 2024-02-22 00:25:18.335 2024-02-22 00:25:18.335 900 TIP 434107 7877 6027555 2024-02-22 00:29:23.893 2024-02-22 00:29:23.893 1000 FEE 434437 8664 6027572 2024-02-22 00:34:22.59 2024-02-22 00:34:22.59 900 FEE 434361 4167 6027573 2024-02-22 00:34:22.59 2024-02-22 00:34:22.59 8100 TIP 434361 11967 6027598 2024-02-22 00:38:00.965 2024-02-22 00:38:00.965 4000 FEE 434385 2010 6027599 2024-02-22 00:38:00.965 2024-02-22 00:38:00.965 36000 TIP 434385 3544 6027613 2024-02-22 00:46:55.155 2024-02-22 00:46:55.155 1000 FEE 434446 14271 6027622 2024-02-22 00:48:31.956 2024-02-22 00:48:31.956 500 FEE 434278 14990 6027623 2024-02-22 00:48:31.956 2024-02-22 00:48:31.956 4500 TIP 434278 3717 6027628 2024-02-22 00:48:35.136 2024-02-22 00:48:35.136 500 FEE 433833 5661 6027629 2024-02-22 00:48:35.136 2024-02-22 00:48:35.136 4500 TIP 433833 19147 6027632 2024-02-22 00:48:37.335 2024-02-22 00:48:37.335 500 FEE 434285 20409 6027633 2024-02-22 00:48:37.335 2024-02-22 00:48:37.335 4500 TIP 434285 13622 6027634 2024-02-22 00:48:37.812 2024-02-22 00:48:37.812 500 FEE 433740 19512 6027635 2024-02-22 00:48:37.812 2024-02-22 00:48:37.812 4500 TIP 433740 11561 6027651 2024-02-22 00:53:52.518 2024-02-22 00:53:52.518 9000 FEE 434410 15544 6027652 2024-02-22 00:53:52.518 2024-02-22 00:53:52.518 81000 TIP 434410 18454 6027654 2024-02-22 00:54:04.086 2024-02-22 00:54:04.086 100 FEE 434385 8242 6027655 2024-02-22 00:54:04.086 2024-02-22 00:54:04.086 900 TIP 434385 1751 6027660 2024-02-22 00:54:07.853 2024-02-22 00:54:07.853 100 FEE 434396 8074 6027661 2024-02-22 00:54:07.853 2024-02-22 00:54:07.853 900 TIP 434396 2000 6027680 2024-02-22 00:54:34.419 2024-02-22 00:54:34.419 4000 FEE 434449 18865 6027681 2024-02-22 00:54:34.419 2024-02-22 00:54:34.419 36000 TIP 434449 21136 6027690 2024-02-22 00:55:10.829 2024-02-22 00:55:10.829 3300 FEE 434426 16145 6027691 2024-02-22 00:55:10.829 2024-02-22 00:55:10.829 29700 TIP 434426 18311 6027705 2024-02-22 00:57:02.491 2024-02-22 00:57:02.491 1000 FEE 434440 14791 6027706 2024-02-22 00:57:02.491 2024-02-22 00:57:02.491 9000 TIP 434440 21242 6027718 2024-02-22 00:57:03.904 2024-02-22 00:57:03.904 1000 FEE 434440 7983 6027719 2024-02-22 00:57:03.904 2024-02-22 00:57:03.904 9000 TIP 434440 19569 6027767 2024-02-22 00:57:34.743 2024-02-22 00:57:34.743 2300 FEE 434441 688 6027768 2024-02-22 00:57:34.743 2024-02-22 00:57:34.743 20700 TIP 434441 3439 6027769 2024-02-22 00:57:35.502 2024-02-22 00:57:35.502 2300 FEE 434441 21139 6027770 2024-02-22 00:57:35.502 2024-02-22 00:57:35.502 20700 TIP 434441 12561 6027783 2024-02-22 00:58:09.478 2024-02-22 00:58:09.478 1000 FEE 434440 6777 6027784 2024-02-22 00:58:09.478 2024-02-22 00:58:09.478 9000 TIP 434440 2326 6027821 2024-02-22 00:58:11.642 2024-02-22 00:58:11.642 2300 FEE 434285 19842 6027822 2024-02-22 00:58:11.642 2024-02-22 00:58:11.642 20700 TIP 434285 21036 6027852 2024-02-22 01:02:55.403 2024-02-22 01:02:55.403 2100 FEE 434453 18705 6027853 2024-02-22 01:02:55.403 2024-02-22 01:02:55.403 18900 TIP 434453 16230 6027861 2024-02-22 01:03:42.905 2024-02-22 01:03:42.905 2100 FEE 434213 18072 6027862 2024-02-22 01:03:42.905 2024-02-22 01:03:42.905 18900 TIP 434213 18862 6027870 2024-02-22 01:06:00.478 2024-02-22 01:06:00.478 1000 FEE 433861 12930 6026927 2024-02-21 22:55:12.487 2024-02-21 22:55:12.487 900 TIP 434085 19289 6026937 2024-02-21 22:55:21.075 2024-02-21 22:55:21.075 900 FEE 433881 18500 6026938 2024-02-21 22:55:21.075 2024-02-21 22:55:21.075 8100 TIP 433881 17365 6026943 2024-02-21 22:56:02.645 2024-02-21 22:56:02.645 5000 FEE 433844 2652 6026944 2024-02-21 22:56:02.645 2024-02-21 22:56:02.645 45000 TIP 433844 21386 6026948 2024-02-21 22:58:28.465 2024-02-21 22:58:28.465 7100 FEE 434328 11075 6026949 2024-02-21 22:58:28.465 2024-02-21 22:58:28.465 63900 TIP 434328 6164 6026956 2024-02-21 22:59:45.674 2024-02-21 22:59:45.674 1000 FEE 434349 15243 6026957 2024-02-21 22:59:45.674 2024-02-21 22:59:45.674 9000 TIP 434349 19033 6026958 2024-02-21 23:00:03.282 2024-02-21 23:00:03.282 1000 STREAM 141924 669 6026965 2024-02-21 23:00:16.158 2024-02-21 23:00:16.158 2700 FEE 434285 632 6026966 2024-02-21 23:00:16.158 2024-02-21 23:00:16.158 24300 TIP 434285 18923 6026969 2024-02-21 23:00:16.51 2024-02-21 23:00:16.51 2700 FEE 434285 1044 6026970 2024-02-21 23:00:16.51 2024-02-21 23:00:16.51 24300 TIP 434285 19886 6026973 2024-02-21 23:00:16.862 2024-02-21 23:00:16.862 2700 FEE 434285 4102 6026974 2024-02-21 23:00:16.862 2024-02-21 23:00:16.862 24300 TIP 434285 12483 6026979 2024-02-21 23:01:03.285 2024-02-21 23:01:03.285 1000 STREAM 141924 21166 6026990 2024-02-21 23:04:03.308 2024-02-21 23:04:03.308 1000 STREAM 141924 7966 6026999 2024-02-21 23:06:56.459 2024-02-21 23:06:56.459 2100 FEE 433463 19435 6027000 2024-02-21 23:06:56.459 2024-02-21 23:06:56.459 18900 TIP 433463 20998 6027001 2024-02-21 23:07:02.423 2024-02-21 23:07:02.423 1000 STREAM 141924 11648 6027013 2024-02-21 23:10:02.986 2024-02-21 23:10:02.986 1000 STREAM 141924 762 6027014 2024-02-21 23:11:02.478 2024-02-21 23:11:02.478 1000 STREAM 141924 696 6027018 2024-02-21 23:11:39.18 2024-02-21 23:11:39.18 2500 FEE 434276 17082 6027019 2024-02-21 23:11:39.18 2024-02-21 23:11:39.18 22500 TIP 434276 992 6027020 2024-02-21 23:12:02.984 2024-02-21 23:12:02.984 1000 STREAM 141924 19449 6027038 2024-02-21 23:14:02.374 2024-02-21 23:14:02.374 100 FEE 432044 4250 6027039 2024-02-21 23:14:02.374 2024-02-21 23:14:02.374 900 TIP 432044 6136 6027059 2024-02-21 23:14:03.892 2024-02-21 23:14:03.892 100 FEE 432044 13100 6027060 2024-02-21 23:14:03.892 2024-02-21 23:14:03.892 900 TIP 432044 21424 6027074 2024-02-21 23:16:03.029 2024-02-21 23:16:03.029 1000 STREAM 141924 21019 6027075 2024-02-21 23:17:01.57 2024-02-21 23:17:01.57 1000 FEE 434387 18526 6027076 2024-02-21 23:17:03.034 2024-02-21 23:17:03.034 1000 STREAM 141924 19044 6027090 2024-02-21 23:18:03.037 2024-02-21 23:18:03.037 1000 STREAM 141924 13204 6027095 2024-02-21 23:19:14.305 2024-02-21 23:19:14.305 0 FEE 434390 12965 6027101 2024-02-21 23:20:03.049 2024-02-21 23:20:03.049 1000 STREAM 141924 20993 6027102 2024-02-21 23:20:08.523 2024-02-21 23:20:08.523 1000 FEE 434171 19583 6027103 2024-02-21 23:20:08.523 2024-02-21 23:20:08.523 9000 TIP 434171 16350 6027117 2024-02-21 23:22:07.78 2024-02-21 23:22:07.78 1000 FEE 434012 14688 6027118 2024-02-21 23:22:07.78 2024-02-21 23:22:07.78 9000 TIP 434012 794 6027128 2024-02-21 23:24:03.05 2024-02-21 23:24:03.05 1000 STREAM 141924 5978 6027134 2024-02-21 23:26:03.066 2024-02-21 23:26:03.066 1000 STREAM 141924 13782 6027143 2024-02-21 23:26:16.773 2024-02-21 23:26:16.773 1000 FEE 434026 9363 6027144 2024-02-21 23:26:16.773 2024-02-21 23:26:16.773 9000 TIP 434026 17365 6027172 2024-02-21 23:29:03.071 2024-02-21 23:29:03.071 1000 STREAM 141924 19263 6027181 2024-02-21 23:32:03.092 2024-02-21 23:32:03.092 1000 STREAM 141924 5128 6027187 2024-02-21 23:34:51.971 2024-02-21 23:34:51.971 1000 FEE 434397 1571 6027225 2024-02-21 23:40:03.119 2024-02-21 23:40:03.119 1000 STREAM 141924 4502 6027248 2024-02-21 23:42:40.63 2024-02-21 23:42:40.63 1000 FEE 434405 16830 6027251 2024-02-21 23:43:03.155 2024-02-21 23:43:03.155 1000 STREAM 141924 20340 6027257 2024-02-21 23:44:03.148 2024-02-21 23:44:03.148 1000 STREAM 141924 19735 6027261 2024-02-21 23:45:20.922 2024-02-21 23:45:20.922 0 FEE 434408 20837 6027271 2024-02-21 23:47:33.644 2024-02-21 23:47:33.644 1000 FEE 434411 16282 6027288 2024-02-21 23:47:45.287 2024-02-21 23:47:45.287 500 FEE 433302 9796 6027289 2024-02-21 23:47:45.287 2024-02-21 23:47:45.287 4500 TIP 433302 17217 6027315 2024-02-21 23:48:37.082 2024-02-21 23:48:37.082 27900 FEE 434363 20973 6027316 2024-02-21 23:48:37.082 2024-02-21 23:48:37.082 251100 TIP 434363 16406 6027318 2024-02-21 23:49:03.384 2024-02-21 23:49:03.384 1000 STREAM 141924 9171 6027332 2024-02-21 23:49:52.173 2024-02-21 23:49:52.173 6300 FEE 434049 19005 6027333 2024-02-21 23:49:52.173 2024-02-21 23:49:52.173 56700 TIP 434049 17944 6027341 2024-02-21 23:51:03.691 2024-02-21 23:51:03.691 1000 STREAM 141924 3642 6027345 2024-02-21 23:52:58.185 2024-02-21 23:52:58.185 3300 FEE 434416 19037 6027346 2024-02-21 23:52:58.185 2024-02-21 23:52:58.185 29700 TIP 434416 3213 6027362 2024-02-21 23:54:03.724 2024-02-21 23:54:03.724 1000 STREAM 141924 787 6027365 2024-02-21 23:55:52.294 2024-02-21 23:55:52.294 4000 FEE 434417 889 6027366 2024-02-21 23:55:52.294 2024-02-21 23:55:52.294 36000 TIP 434417 20156 6027389 2024-02-21 23:58:03.745 2024-02-21 23:58:03.745 1000 STREAM 141924 16950 6027390 2024-02-21 23:58:26.926 2024-02-21 23:58:26.926 6300 FEE 434243 9347 6027391 2024-02-21 23:58:26.926 2024-02-21 23:58:26.926 56700 TIP 434243 16097 6027394 2024-02-21 23:59:21.23 2024-02-21 23:59:21.23 1000 FEE 434423 20377 6027400 2024-02-22 00:01:03.773 2024-02-22 00:01:03.773 1000 STREAM 141924 15762 6027421 2024-02-22 00:03:58.905 2024-02-22 00:03:58.905 1000 FEE 434025 14669 6027422 2024-02-22 00:03:58.905 2024-02-22 00:03:58.905 9000 TIP 434025 18923 6027425 2024-02-22 00:04:03.814 2024-02-22 00:04:03.814 1000 STREAM 141924 9844 6027431 2024-02-22 00:05:04.135 2024-02-22 00:05:04.135 1000 FEE 433835 3729 6027432 2024-02-22 00:05:04.135 2024-02-22 00:05:04.135 9000 TIP 433835 15337 6027454 2024-02-22 00:15:13.729 2024-02-22 00:15:13.729 1000 FEE 434393 6383 6027455 2024-02-22 00:15:13.729 2024-02-22 00:15:13.729 9000 TIP 434393 7746 6027475 2024-02-22 00:16:03.45 2024-02-22 00:16:03.45 1000 FEE 434425 21614 6027476 2024-02-22 00:16:03.45 2024-02-22 00:16:03.45 9000 TIP 434425 2789 6027478 2024-02-22 00:16:03.894 2024-02-22 00:16:03.894 1000 FEE 434425 5175 6027479 2024-02-22 00:16:03.894 2024-02-22 00:16:03.894 9000 TIP 434425 716 6027497 2024-02-22 00:19:03.432 2024-02-22 00:19:03.432 1000 FEE 434433 2614 6027538 2024-02-22 00:25:18.506 2024-02-22 00:25:18.506 100 FEE 434107 1632 6027539 2024-02-22 00:25:18.506 2024-02-22 00:25:18.506 900 TIP 434107 17535 6027550 2024-02-22 00:27:56.61 2024-02-22 00:27:56.61 1000 FEE 434436 19449 6027557 2024-02-22 00:30:23.781 2024-02-22 00:30:23.781 1000 FEE 434438 14472 6027558 2024-02-22 00:30:28.323 2024-02-22 00:30:28.323 1000 FEE 434439 17147 6027566 2024-02-22 00:33:27.191 2024-02-22 00:33:27.191 4000 FEE 434439 4126 6027567 2024-02-22 00:33:27.191 2024-02-22 00:33:27.191 36000 TIP 434439 11750 6027574 2024-02-22 00:34:25.193 2024-02-22 00:34:25.193 9000 FEE 434361 20470 6027575 2024-02-22 00:34:25.193 2024-02-22 00:34:25.193 81000 TIP 434361 2342 6027667 2024-02-22 00:54:23.137 2024-02-22 00:54:23.137 4000 FEE 434449 1038 6027668 2024-02-22 00:54:23.137 2024-02-22 00:54:23.137 36000 TIP 434449 1008 6027676 2024-02-22 00:54:30.236 2024-02-22 00:54:30.236 4000 FEE 434444 4062 6027677 2024-02-22 00:54:30.236 2024-02-22 00:54:30.236 36000 TIP 434444 20326 6027686 2024-02-22 00:54:50.667 2024-02-22 00:54:50.667 1000 FEE 434453 11450 6027703 2024-02-22 00:57:02.296 2024-02-22 00:57:02.296 1000 FEE 434440 16059 6027704 2024-02-22 00:57:02.296 2024-02-22 00:57:02.296 9000 TIP 434440 13763 6027708 2024-02-22 00:57:02.632 2024-02-22 00:57:02.632 1000 FEE 434440 16289 6027709 2024-02-22 00:57:02.632 2024-02-22 00:57:02.632 9000 TIP 434440 20376 6027722 2024-02-22 00:57:04.081 2024-02-22 00:57:04.081 1000 FEE 434440 10591 6027723 2024-02-22 00:57:04.081 2024-02-22 00:57:04.081 9000 TIP 434440 722 6027726 2024-02-22 00:57:04.536 2024-02-22 00:57:04.536 500 FEE 433590 15521 6027727 2024-02-22 00:57:04.536 2024-02-22 00:57:04.536 4500 TIP 433590 17042 6027730 2024-02-22 00:57:04.786 2024-02-22 00:57:04.786 1000 FEE 434440 15088 6027731 2024-02-22 00:57:04.786 2024-02-22 00:57:04.786 9000 TIP 434440 21047 6027112 2024-02-21 23:20:55.629 2024-02-21 23:20:55.629 9000 TIP 434026 7992 6027120 2024-02-21 23:23:08.825 2024-02-21 23:23:08.825 2000 FEE 433524 2162 6027121 2024-02-21 23:23:08.825 2024-02-21 23:23:08.825 18000 TIP 433524 1401 6027129 2024-02-21 23:25:03.456 2024-02-21 23:25:03.456 1000 STREAM 141924 18897 6027132 2024-02-21 23:25:58.567 2024-02-21 23:25:58.567 300 FEE 434366 16830 6027133 2024-02-21 23:25:58.567 2024-02-21 23:25:58.567 2700 TIP 434366 8284 6027155 2024-02-21 23:27:42.957 2024-02-21 23:27:42.957 300 FEE 434193 21296 6027156 2024-02-21 23:27:42.957 2024-02-21 23:27:42.957 2700 TIP 434193 2674 6027189 2024-02-21 23:35:42.443 2024-02-21 23:35:42.443 1000 FEE 434396 20881 6027190 2024-02-21 23:35:42.443 2024-02-21 23:35:42.443 9000 TIP 434396 17217 6027203 2024-02-21 23:37:45.184 2024-02-21 23:37:45.184 1000 FEE 434400 5527 6027226 2024-02-21 23:40:04.193 2024-02-21 23:40:04.193 500 FEE 434026 18309 6027227 2024-02-21 23:40:04.193 2024-02-21 23:40:04.193 4500 TIP 434026 6741 6027231 2024-02-21 23:41:25.946 2024-02-21 23:41:25.946 1600 FEE 434396 2016 6027232 2024-02-21 23:41:25.946 2024-02-21 23:41:25.946 14400 TIP 434396 18363 6027244 2024-02-21 23:42:11.855 2024-02-21 23:42:11.855 3100 FEE 434310 985 6027245 2024-02-21 23:42:11.855 2024-02-21 23:42:11.855 27900 TIP 434310 1472 6027246 2024-02-21 23:42:12.862 2024-02-21 23:42:12.862 27900 FEE 434310 4958 6027247 2024-02-21 23:42:12.862 2024-02-21 23:42:12.862 251100 TIP 434310 17147 6027254 2024-02-21 23:43:53.655 2024-02-21 23:43:53.655 1000 FEE 434408 19435 6027255 2024-02-21 23:43:57.338 2024-02-21 23:43:57.338 300 FEE 434396 7587 6027256 2024-02-21 23:43:57.338 2024-02-21 23:43:57.338 2700 TIP 434396 11073 6027276 2024-02-21 23:47:39.351 2024-02-21 23:47:39.351 500 FEE 433499 21164 6027277 2024-02-21 23:47:39.351 2024-02-21 23:47:39.351 4500 TIP 433499 10608 6027284 2024-02-21 23:47:43.085 2024-02-21 23:47:43.085 500 FEE 433943 670 6027285 2024-02-21 23:47:43.085 2024-02-21 23:47:43.085 4500 TIP 433943 11314 6027298 2024-02-21 23:47:53.977 2024-02-21 23:47:53.977 500 FEE 433740 15147 6027299 2024-02-21 23:47:53.977 2024-02-21 23:47:53.977 4500 TIP 433740 19996 6027311 2024-02-21 23:48:24.518 2024-02-21 23:48:24.518 27900 FEE 434318 16847 6027312 2024-02-21 23:48:24.518 2024-02-21 23:48:24.518 251100 TIP 434318 18220 6027328 2024-02-21 23:49:43.201 2024-02-21 23:49:43.201 6300 FEE 433837 11996 6027329 2024-02-21 23:49:43.201 2024-02-21 23:49:43.201 56700 TIP 433837 7185 6027339 2024-02-21 23:50:51.418 2024-02-21 23:50:51.418 9243200 FEE 433828 12097 6027340 2024-02-21 23:50:51.418 2024-02-21 23:50:51.418 83188800 TIP 433828 19463 6027360 2024-02-21 23:53:43.099 2024-02-21 23:53:43.099 1000 FEE 433499 21338 6027361 2024-02-21 23:53:43.099 2024-02-21 23:53:43.099 9000 TIP 433499 21060 6027387 2024-02-21 23:57:51.671 2024-02-21 23:57:51.671 1000 FEE 434045 13042 6027388 2024-02-21 23:57:51.671 2024-02-21 23:57:51.671 9000 TIP 434045 2513 6027395 2024-02-21 23:59:58.447 2024-02-21 23:59:58.447 21000 FEE 434424 10493 6027417 2024-02-22 00:03:39.861 2024-02-22 00:03:39.861 1000 FEE 434404 12959 6027418 2024-02-22 00:03:39.861 2024-02-22 00:03:39.861 9000 TIP 434404 18403 6027419 2024-02-22 00:03:42.883 2024-02-22 00:03:42.883 1000 FEE 434366 14489 6027420 2024-02-22 00:03:42.883 2024-02-22 00:03:42.883 9000 TIP 434366 20993 6027433 2024-02-22 00:05:12.688 2024-02-22 00:05:12.688 1000 FEE 433326 20243 6027434 2024-02-22 00:05:12.688 2024-02-22 00:05:12.688 9000 TIP 433326 5427 6027506 2024-02-22 00:21:18.982 2024-02-22 00:21:18.982 21800 FEE 434410 4177 6027507 2024-02-22 00:21:18.982 2024-02-22 00:21:18.982 196200 TIP 434410 18615 6027517 2024-02-22 00:22:28.309 2024-02-22 00:22:28.309 1000 FEE 433302 9611 6027518 2024-02-22 00:22:28.309 2024-02-22 00:22:28.309 9000 TIP 433302 3409 6027578 2024-02-22 00:35:40.044 2024-02-22 00:35:40.044 0 FEE 434442 14552 6027584 2024-02-22 00:37:27.696 2024-02-22 00:37:27.696 3100 FEE 434442 20257 6027585 2024-02-22 00:37:27.696 2024-02-22 00:37:27.696 27900 TIP 434442 7979 6027592 2024-02-22 00:37:54.568 2024-02-22 00:37:54.568 2600 FEE 433769 19044 6027593 2024-02-22 00:37:54.568 2024-02-22 00:37:54.568 23400 TIP 433769 1772 6027616 2024-02-22 00:48:27.911 2024-02-22 00:48:27.911 500 FEE 433828 2156 6027617 2024-02-22 00:48:27.911 2024-02-22 00:48:27.911 4500 TIP 433828 5425 6027638 2024-02-22 00:50:57.808 2024-02-22 00:50:57.808 10000 FEE 434447 987 6027640 2024-02-22 00:51:42.665 2024-02-22 00:51:42.665 1000 FEE 434428 16706 6027641 2024-02-22 00:51:42.665 2024-02-22 00:51:42.665 9000 TIP 434428 7773 6027643 2024-02-22 00:52:25.339 2024-02-22 00:52:25.339 1000 FEE 434448 20892 6027656 2024-02-22 00:54:04.26 2024-02-22 00:54:04.26 900 FEE 434385 13378 6027657 2024-02-22 00:54:04.26 2024-02-22 00:54:04.26 8100 TIP 434385 1505 6027658 2024-02-22 00:54:05.487 2024-02-22 00:54:05.487 9000 FEE 434385 8242 6027659 2024-02-22 00:54:05.487 2024-02-22 00:54:05.487 81000 TIP 434385 4378 6027670 2024-02-22 00:54:26.398 2024-02-22 00:54:26.398 4000 FEE 434447 13216 6027671 2024-02-22 00:54:26.398 2024-02-22 00:54:26.398 36000 TIP 434447 20162 6027692 2024-02-22 00:55:11.605 2024-02-22 00:55:11.605 3300 FEE 434426 20099 6027693 2024-02-22 00:55:11.605 2024-02-22 00:55:11.605 29700 TIP 434426 2013 6027699 2024-02-22 00:57:02.098 2024-02-22 00:57:02.098 1000 FEE 434440 3504 6027700 2024-02-22 00:57:02.098 2024-02-22 00:57:02.098 9000 TIP 434440 4048 6027724 2024-02-22 00:57:04.277 2024-02-22 00:57:04.277 1000 FEE 434440 9482 6027725 2024-02-22 00:57:04.277 2024-02-22 00:57:04.277 9000 TIP 434440 20599 6027736 2024-02-22 00:57:05.309 2024-02-22 00:57:05.309 2300 FEE 434452 705 6027737 2024-02-22 00:57:05.309 2024-02-22 00:57:05.309 20700 TIP 434452 12169 6027777 2024-02-22 00:57:59.715 2024-02-22 00:57:59.715 500 FEE 434171 14195 6027778 2024-02-22 00:57:59.715 2024-02-22 00:57:59.715 4500 TIP 434171 21609 6027785 2024-02-22 00:58:09.629 2024-02-22 00:58:09.629 1000 FEE 434440 21503 6027786 2024-02-22 00:58:09.629 2024-02-22 00:58:09.629 9000 TIP 434440 2195 6027799 2024-02-22 00:58:10.395 2024-02-22 00:58:10.395 1000 FEE 434440 21509 6027800 2024-02-22 00:58:10.395 2024-02-22 00:58:10.395 9000 TIP 434440 15063 6027801 2024-02-22 00:58:10.493 2024-02-22 00:58:10.493 2300 FEE 434285 2328 6027802 2024-02-22 00:58:10.493 2024-02-22 00:58:10.493 20700 TIP 434285 624 6027817 2024-02-22 00:58:11.399 2024-02-22 00:58:11.399 1000 FEE 434440 20340 6027818 2024-02-22 00:58:11.399 2024-02-22 00:58:11.399 9000 TIP 434440 19021 6027838 2024-02-22 00:59:15.077 2024-02-22 00:59:15.077 7700 FEE 415012 16830 6027839 2024-02-22 00:59:15.077 2024-02-22 00:59:15.077 69300 TIP 415012 15326 6027859 2024-02-22 01:03:35.531 2024-02-22 01:03:35.531 2100 FEE 433816 20424 6027860 2024-02-22 01:03:35.531 2024-02-22 01:03:35.531 18900 TIP 433816 19795 6027882 2024-02-22 01:08:38.938 2024-02-22 01:08:38.938 4000 FEE 434455 11522 6027883 2024-02-22 01:08:38.938 2024-02-22 01:08:38.938 36000 TIP 434455 20891 6027891 2024-02-22 01:09:18.603 2024-02-22 01:09:18.603 8300 FEE 434395 19309 6027892 2024-02-22 01:09:18.603 2024-02-22 01:09:18.603 74700 TIP 434395 1658 6027911 2024-02-22 01:11:34.363 2024-02-22 01:11:34.363 2100 FEE 434385 20613 6027912 2024-02-22 01:11:34.363 2024-02-22 01:11:34.363 18900 TIP 434385 6749 6027915 2024-02-22 01:11:35.826 2024-02-22 01:11:35.826 8300 FEE 434441 21413 6027916 2024-02-22 01:11:35.826 2024-02-22 01:11:35.826 74700 TIP 434441 1845 6027917 2024-02-22 01:11:37.777 2024-02-22 01:11:37.777 2100 FEE 434410 18511 6027918 2024-02-22 01:11:37.777 2024-02-22 01:11:37.777 18900 TIP 434410 20904 6027923 2024-02-22 01:11:50.774 2024-02-22 01:11:50.774 9000 FEE 434434 11240 6027924 2024-02-22 01:11:50.774 2024-02-22 01:11:50.774 81000 TIP 434434 16649 6027925 2024-02-22 01:11:51.614 2024-02-22 01:11:51.614 2100 FEE 434441 7654 6027926 2024-02-22 01:11:51.614 2024-02-22 01:11:51.614 18900 TIP 434441 21291 6027934 2024-02-22 01:12:28.411 2024-02-22 01:12:28.411 2700 FEE 434424 14357 6027935 2024-02-22 01:12:28.411 2024-02-22 01:12:28.411 24300 TIP 434424 18829 6027939 2024-02-22 01:12:45.47 2024-02-22 01:12:45.47 1000 FEE 433943 18016 6027940 2024-02-22 01:12:45.47 2024-02-22 01:12:45.47 9000 TIP 433943 17218 6027945 2024-02-22 01:14:08.561 2024-02-22 01:14:08.561 2100 FEE 434286 1286 6027206 2024-02-21 23:38:14.572 2024-02-21 23:38:14.572 18900 TIP 434058 20026 6027209 2024-02-21 23:38:48.046 2024-02-21 23:38:48.046 0 FEE 434399 20972 6027210 2024-02-21 23:39:00.407 2024-02-21 23:39:00.407 500 FEE 433722 2264 6027211 2024-02-21 23:39:00.407 2024-02-21 23:39:00.407 4500 TIP 433722 21357 6027215 2024-02-21 23:39:21.104 2024-02-21 23:39:21.104 500 FEE 433851 16329 6027216 2024-02-21 23:39:21.104 2024-02-21 23:39:21.104 4500 TIP 433851 16406 6027217 2024-02-21 23:39:24.174 2024-02-21 23:39:24.174 1000 FEE 434403 680 6027218 2024-02-21 23:39:25.025 2024-02-21 23:39:25.025 1000 FEE 434404 20108 6027221 2024-02-21 23:39:57.903 2024-02-21 23:39:57.903 2300 FEE 434385 9177 6027222 2024-02-21 23:39:57.903 2024-02-21 23:39:57.903 20700 TIP 434385 1047 6027223 2024-02-21 23:39:57.997 2024-02-21 23:39:57.997 2300 FEE 434385 18919 6027224 2024-02-21 23:39:57.997 2024-02-21 23:39:57.997 20700 TIP 434385 18583 6027237 2024-02-21 23:41:47.034 2024-02-21 23:41:47.034 100 FEE 433943 18667 6027238 2024-02-21 23:41:47.034 2024-02-21 23:41:47.034 900 TIP 433943 21405 6027239 2024-02-21 23:41:47.181 2024-02-21 23:41:47.181 100 FEE 433943 19398 6027240 2024-02-21 23:41:47.181 2024-02-21 23:41:47.181 900 TIP 433943 19446 6027259 2024-02-21 23:44:36.138 2024-02-21 23:44:36.138 1000 FEE 434409 726 6027264 2024-02-21 23:45:59.325 2024-02-21 23:45:59.325 10000 FEE 434278 11263 6027265 2024-02-21 23:45:59.325 2024-02-21 23:45:59.325 90000 TIP 434278 21012 6027272 2024-02-21 23:47:35.98 2024-02-21 23:47:35.98 500 FEE 433555 1650 6027273 2024-02-21 23:47:35.98 2024-02-21 23:47:35.98 4500 TIP 433555 2734 6027290 2024-02-21 23:47:46.251 2024-02-21 23:47:46.251 500 FEE 433878 7389 6027291 2024-02-21 23:47:46.251 2024-02-21 23:47:46.251 4500 TIP 433878 8713 6027292 2024-02-21 23:47:49.407 2024-02-21 23:47:49.407 500 FEE 434285 4118 6027293 2024-02-21 23:47:49.407 2024-02-21 23:47:49.407 4500 TIP 434285 9611 6027294 2024-02-21 23:47:50.715 2024-02-21 23:47:50.715 500 FEE 433934 20168 6027295 2024-02-21 23:47:50.715 2024-02-21 23:47:50.715 4500 TIP 433934 7827 6027307 2024-02-21 23:48:10.921 2024-02-21 23:48:10.921 200 FEE 434278 3347 6027308 2024-02-21 23:48:10.921 2024-02-21 23:48:10.921 1800 TIP 434278 9184 6027319 2024-02-21 23:49:08.312 2024-02-21 23:49:08.312 0 FEE 434412 5725 6027349 2024-02-21 23:52:58.393 2024-02-21 23:52:58.393 3300 FEE 434416 6041 6027350 2024-02-21 23:52:58.393 2024-02-21 23:52:58.393 29700 TIP 434416 18629 6027354 2024-02-21 23:53:39.094 2024-02-21 23:53:39.094 1000 FEE 433828 16556 6027355 2024-02-21 23:53:39.094 2024-02-21 23:53:39.094 9000 TIP 433828 664 6027358 2024-02-21 23:53:42.004 2024-02-21 23:53:42.004 1000 FEE 434278 15408 6027359 2024-02-21 23:53:42.004 2024-02-21 23:53:42.004 9000 TIP 434278 20412 6027370 2024-02-21 23:56:26.882 2024-02-21 23:56:26.882 1000 FEE 433835 2196 6027371 2024-02-21 23:56:26.882 2024-02-21 23:56:26.882 9000 TIP 433835 16447 6027375 2024-02-21 23:57:06.978 2024-02-21 23:57:06.978 1000 FEE 433842 20152 6027376 2024-02-21 23:57:06.978 2024-02-21 23:57:06.978 9000 TIP 433842 19864 6027402 2024-02-22 00:02:13.724 2024-02-22 00:02:13.724 1000 FEE 434426 9346 6027409 2024-02-22 00:02:27.988 2024-02-22 00:02:27.988 1000 FEE 433833 16809 6027410 2024-02-22 00:02:27.988 2024-02-22 00:02:27.988 9000 TIP 433833 684 6027411 2024-02-22 00:02:29.484 2024-02-22 00:02:29.484 1000 FEE 433878 1354 6027412 2024-02-22 00:02:29.484 2024-02-22 00:02:29.484 9000 TIP 433878 2042 6027428 2024-02-22 00:04:54.33 2024-02-22 00:04:54.33 1000 FEE 434012 18454 6027429 2024-02-22 00:04:54.33 2024-02-22 00:04:54.33 9000 TIP 434012 15100 6027466 2024-02-22 00:15:39.809 2024-02-22 00:15:39.809 100 FEE 434318 16633 6027467 2024-02-22 00:15:39.809 2024-02-22 00:15:39.809 900 TIP 434318 9833 6027488 2024-02-22 00:16:18.682 2024-02-22 00:16:18.682 1000 FEE 434400 21334 6027489 2024-02-22 00:16:18.682 2024-02-22 00:16:18.682 9000 TIP 434400 16355 6027501 2024-02-22 00:20:19.345 2024-02-22 00:20:19.345 900 FEE 434408 666 6027502 2024-02-22 00:20:19.345 2024-02-22 00:20:19.345 8100 TIP 434408 7746 6027513 2024-02-22 00:22:24.049 2024-02-22 00:22:24.049 1000 FEE 433499 20655 6027514 2024-02-22 00:22:24.049 2024-02-22 00:22:24.049 9000 TIP 433499 9863 6027547 2024-02-22 00:27:06.259 2024-02-22 00:27:06.259 1000 FEE 434435 1006 6027564 2024-02-22 00:33:02.802 2024-02-22 00:33:02.802 0 FEE 434441 12736 6027577 2024-02-22 00:35:25.219 2024-02-22 00:35:25.219 1000 FEE 434442 721 6027586 2024-02-22 00:37:38.133 2024-02-22 00:37:38.133 27900 FEE 434442 622 6027587 2024-02-22 00:37:38.133 2024-02-22 00:37:38.133 251100 TIP 434442 20370 6027588 2024-02-22 00:37:39.474 2024-02-22 00:37:39.474 4000 FEE 434410 5085 6027589 2024-02-22 00:37:39.474 2024-02-22 00:37:39.474 36000 TIP 434410 18989 6027646 2024-02-22 00:53:08.465 2024-02-22 00:53:08.465 1000 FEE 434450 12721 6027647 2024-02-22 00:53:50.033 2024-02-22 00:53:50.033 100 FEE 434410 14271 6027648 2024-02-22 00:53:50.033 2024-02-22 00:53:50.033 900 TIP 434410 797 6027665 2024-02-22 00:54:10.124 2024-02-22 00:54:10.124 9000 FEE 434396 18581 6027666 2024-02-22 00:54:10.124 2024-02-22 00:54:10.124 81000 TIP 434396 19531 6027672 2024-02-22 00:54:28.285 2024-02-22 00:54:28.285 4000 FEE 434444 19156 6027673 2024-02-22 00:54:28.285 2024-02-22 00:54:28.285 36000 TIP 434444 1454 6027682 2024-02-22 00:54:34.738 2024-02-22 00:54:34.738 4000 FEE 434449 831 6027683 2024-02-22 00:54:34.738 2024-02-22 00:54:34.738 36000 TIP 434449 17331 6027701 2024-02-22 00:57:02.148 2024-02-22 00:57:02.148 500 FEE 433590 4043 6027702 2024-02-22 00:57:02.148 2024-02-22 00:57:02.148 4500 TIP 433590 17446 6027712 2024-02-22 00:57:03.53 2024-02-22 00:57:03.53 1000 FEE 434440 18072 6027713 2024-02-22 00:57:03.53 2024-02-22 00:57:03.53 9000 TIP 434440 803 6027744 2024-02-22 00:57:05.85 2024-02-22 00:57:05.85 2300 FEE 434452 1692 6027745 2024-02-22 00:57:05.85 2024-02-22 00:57:05.85 20700 TIP 434452 1959 6027747 2024-02-22 00:57:20.115 2024-02-22 00:57:20.115 500 FEE 434318 2330 6027748 2024-02-22 00:57:20.115 2024-02-22 00:57:20.115 4500 TIP 434318 13599 6027757 2024-02-22 00:57:32.385 2024-02-22 00:57:32.385 2300 FEE 434441 1806 6027758 2024-02-22 00:57:32.385 2024-02-22 00:57:32.385 20700 TIP 434441 21627 6027797 2024-02-22 00:58:10.276 2024-02-22 00:58:10.276 2300 FEE 434285 2111 6027798 2024-02-22 00:58:10.276 2024-02-22 00:58:10.276 20700 TIP 434285 1713 6027807 2024-02-22 00:58:10.8 2024-02-22 00:58:10.8 2300 FEE 434285 681 6027808 2024-02-22 00:58:10.8 2024-02-22 00:58:10.8 20700 TIP 434285 20904 6027823 2024-02-22 00:58:12.112 2024-02-22 00:58:12.112 1000 FEE 434440 6030 6027824 2024-02-22 00:58:12.112 2024-02-22 00:58:12.112 9000 TIP 434440 19352 6027829 2024-02-22 00:58:41.579 2024-02-22 00:58:41.579 500 FEE 434026 20481 6027830 2024-02-22 00:58:41.579 2024-02-22 00:58:41.579 4500 TIP 434026 1803 6027831 2024-02-22 00:58:50.653 2024-02-22 00:58:50.653 500 FEE 433842 19016 6027832 2024-02-22 00:58:50.653 2024-02-22 00:58:50.653 4500 TIP 433842 21451 6027833 2024-02-22 00:58:51.097 2024-02-22 00:58:51.097 500 FEE 433849 16753 6027834 2024-02-22 00:58:51.097 2024-02-22 00:58:51.097 4500 TIP 433849 6361 6027878 2024-02-22 01:08:38.332 2024-02-22 01:08:38.332 8000 FEE 434455 20525 6027879 2024-02-22 01:08:38.332 2024-02-22 01:08:38.332 72000 TIP 434455 20788 6027880 2024-02-22 01:08:38.669 2024-02-22 01:08:38.669 4000 FEE 434455 11789 6027881 2024-02-22 01:08:38.669 2024-02-22 01:08:38.669 36000 TIP 434455 19036 6027887 2024-02-22 01:09:16.959 2024-02-22 01:09:16.959 8300 FEE 434405 13361 6027888 2024-02-22 01:09:16.959 2024-02-22 01:09:16.959 74700 TIP 434405 17517 6027900 2024-02-22 01:10:52.39 2024-02-22 01:10:52.39 8300 FEE 434385 8472 6027901 2024-02-22 01:10:52.39 2024-02-22 01:10:52.39 74700 TIP 434385 18736 6027212 2024-02-21 23:39:02.013 2024-02-21 23:39:02.013 1000 STREAM 141924 16789 6027228 2024-02-21 23:41:03.148 2024-02-21 23:41:03.148 1000 STREAM 141924 10818 6027243 2024-02-21 23:42:03.135 2024-02-21 23:42:03.135 1000 STREAM 141924 19576 6027260 2024-02-21 23:45:03.145 2024-02-21 23:45:03.145 1000 STREAM 141924 17800 6027344 2024-02-21 23:52:03.709 2024-02-21 23:52:03.709 1000 STREAM 141924 19570 6027351 2024-02-21 23:53:03.719 2024-02-21 23:53:03.719 1000 STREAM 141924 12921 6027363 2024-02-21 23:55:03.724 2024-02-21 23:55:03.724 1000 STREAM 141924 5308 6027367 2024-02-21 23:56:03.739 2024-02-21 23:56:03.739 1000 STREAM 141924 8472 6027374 2024-02-21 23:57:03.746 2024-02-21 23:57:03.746 1000 STREAM 141924 21491 6027393 2024-02-21 23:59:03.779 2024-02-21 23:59:03.779 1000 STREAM 141924 5701 6027414 2024-02-22 00:03:03.827 2024-02-22 00:03:03.827 1000 STREAM 141924 19462 6027252 2024-02-21 23:43:08.274 2024-02-21 23:43:08.274 1000 FEE 434406 2961 6027267 2024-02-21 23:46:54.163 2024-02-21 23:46:54.163 500 FEE 434012 12921 6027268 2024-02-21 23:46:54.163 2024-02-21 23:46:54.163 4500 TIP 434012 2013 6027270 2024-02-21 23:47:19.578 2024-02-21 23:47:19.578 10000 FEE 434410 17455 6027302 2024-02-21 23:48:00.843 2024-02-21 23:48:00.843 500 FEE 433889 12277 6027303 2024-02-21 23:48:00.843 2024-02-21 23:48:00.843 4500 TIP 433889 20490 6027304 2024-02-21 23:48:01.9 2024-02-21 23:48:01.9 500 FEE 433594 8074 6027305 2024-02-21 23:48:01.9 2024-02-21 23:48:01.9 4500 TIP 433594 16667 6027309 2024-02-21 23:48:22.846 2024-02-21 23:48:22.846 3100 FEE 434318 695 6027310 2024-02-21 23:48:22.846 2024-02-21 23:48:22.846 27900 TIP 434318 19773 6027313 2024-02-21 23:48:36.02 2024-02-21 23:48:36.02 3100 FEE 434363 21541 6027314 2024-02-21 23:48:36.02 2024-02-21 23:48:36.02 27900 TIP 434363 5752 6027323 2024-02-21 23:49:21.295 2024-02-21 23:49:21.295 500 FEE 434045 18663 6027324 2024-02-21 23:49:21.295 2024-02-21 23:49:21.295 4500 TIP 434045 16769 6027325 2024-02-21 23:49:33.788 2024-02-21 23:49:33.788 500 FEE 433842 14515 6027326 2024-02-21 23:49:33.788 2024-02-21 23:49:33.788 4500 TIP 433842 5293 6027352 2024-02-21 23:53:37.193 2024-02-21 23:53:37.193 1000 FEE 433943 4313 6027353 2024-02-21 23:53:37.193 2024-02-21 23:53:37.193 9000 TIP 433943 889 6027372 2024-02-21 23:56:27.236 2024-02-21 23:56:27.236 1000 FEE 434420 19320 6027379 2024-02-21 23:57:15.152 2024-02-21 23:57:15.152 2100 FEE 434285 21365 6027380 2024-02-21 23:57:15.152 2024-02-21 23:57:15.152 18900 TIP 434285 9099 6027392 2024-02-21 23:58:59.594 2024-02-21 23:58:59.594 1000 FEE 434422 20922 6027462 2024-02-22 00:15:15.243 2024-02-22 00:15:15.243 1000 FEE 434393 976 6027463 2024-02-22 00:15:15.243 2024-02-22 00:15:15.243 9000 TIP 434393 726 6027468 2024-02-22 00:15:44.078 2024-02-22 00:15:44.078 1000 FEE 434430 985 6027473 2024-02-22 00:16:03.001 2024-02-22 00:16:03.001 1000 FEE 434425 19813 6027474 2024-02-22 00:16:03.001 2024-02-22 00:16:03.001 9000 TIP 434425 19941 6027492 2024-02-22 00:18:00.241 2024-02-22 00:18:00.241 2100 FEE 434410 14357 6027493 2024-02-22 00:18:00.241 2024-02-22 00:18:00.241 18900 TIP 434410 18524 6027522 2024-02-22 00:23:07.329 2024-02-22 00:23:07.329 1000 FEE 433851 15577 6027523 2024-02-22 00:23:07.329 2024-02-22 00:23:07.329 9000 TIP 433851 2309 6027594 2024-02-22 00:37:55.838 2024-02-22 00:37:55.838 4000 FEE 434319 20022 6027595 2024-02-22 00:37:55.838 2024-02-22 00:37:55.838 36000 TIP 434319 15890 6027630 2024-02-22 00:48:36.357 2024-02-22 00:48:36.357 500 FEE 433555 9261 6027631 2024-02-22 00:48:36.357 2024-02-22 00:48:36.357 4500 TIP 433555 2459 6027649 2024-02-22 00:53:50.224 2024-02-22 00:53:50.224 900 FEE 434410 18511 6027650 2024-02-22 00:53:50.224 2024-02-22 00:53:50.224 8100 TIP 434410 19322 6027662 2024-02-22 00:54:08.046 2024-02-22 00:54:08.046 900 FEE 434396 2056 6027663 2024-02-22 00:54:08.046 2024-02-22 00:54:08.046 8100 TIP 434396 8162 6027678 2024-02-22 00:54:30.53 2024-02-22 00:54:30.53 4000 FEE 434444 18836 6027679 2024-02-22 00:54:30.53 2024-02-22 00:54:30.53 36000 TIP 434444 19333 6027697 2024-02-22 00:57:01.916 2024-02-22 00:57:01.916 1000 FEE 434440 9275 6027698 2024-02-22 00:57:01.916 2024-02-22 00:57:01.916 9000 TIP 434440 10818 6027740 2024-02-22 00:57:05.583 2024-02-22 00:57:05.583 1000 FEE 434440 20594 6027741 2024-02-22 00:57:05.583 2024-02-22 00:57:05.583 9000 TIP 434440 1737 6027742 2024-02-22 00:57:05.763 2024-02-22 00:57:05.763 1000 FEE 434440 20222 6027743 2024-02-22 00:57:05.763 2024-02-22 00:57:05.763 9000 TIP 434440 5761 6027746 2024-02-22 00:57:13.909 2024-02-22 00:57:13.909 1000 FEE 434455 20243 6027763 2024-02-22 00:57:33.61 2024-02-22 00:57:33.61 2300 FEE 434441 21119 6027764 2024-02-22 00:57:33.61 2024-02-22 00:57:33.61 20700 TIP 434441 1549 6027765 2024-02-22 00:57:34.329 2024-02-22 00:57:34.329 2300 FEE 434441 2639 6027766 2024-02-22 00:57:34.329 2024-02-22 00:57:34.329 20700 TIP 434441 5758 6027813 2024-02-22 00:58:11.17 2024-02-22 00:58:11.17 2300 FEE 434285 20751 6027814 2024-02-22 00:58:11.17 2024-02-22 00:58:11.17 20700 TIP 434285 733 6027815 2024-02-22 00:58:11.283 2024-02-22 00:58:11.283 2300 FEE 434285 8664 6027816 2024-02-22 00:58:11.283 2024-02-22 00:58:11.283 20700 TIP 434285 9166 6027842 2024-02-22 00:59:15.413 2024-02-22 00:59:15.413 7700 FEE 415012 9353 6027843 2024-02-22 00:59:15.413 2024-02-22 00:59:15.413 69300 TIP 415012 1038 6027844 2024-02-22 00:59:15.578 2024-02-22 00:59:15.578 7700 FEE 415012 20980 6027845 2024-02-22 00:59:15.578 2024-02-22 00:59:15.578 69300 TIP 415012 13217 6027857 2024-02-22 01:03:25.252 2024-02-22 01:03:25.252 4000 FEE 434455 16956 6027858 2024-02-22 01:03:25.252 2024-02-22 01:03:25.252 36000 TIP 434455 2775 6027884 2024-02-22 01:08:41.359 2024-02-22 01:08:41.359 4000 FEE 434455 21398 6027885 2024-02-22 01:08:41.359 2024-02-22 01:08:41.359 36000 TIP 434455 19841 6027909 2024-02-22 01:11:33.89 2024-02-22 01:11:33.89 5000 FEE 434396 4084 6027910 2024-02-22 01:11:33.89 2024-02-22 01:11:33.89 45000 TIP 434396 20058 6027921 2024-02-22 01:11:50.326 2024-02-22 01:11:50.326 1000 FEE 434434 4502 6027922 2024-02-22 01:11:50.326 2024-02-22 01:11:50.326 9000 TIP 434434 18448 6027955 2024-02-22 01:14:19.128 2024-02-22 01:14:19.128 2100 FEE 434406 762 6027956 2024-02-22 01:14:19.128 2024-02-22 01:14:19.128 18900 TIP 434406 20326 6027266 2024-02-21 23:46:03.545 2024-02-21 23:46:03.545 1000 STREAM 141924 17227 6027269 2024-02-21 23:47:03.251 2024-02-21 23:47:03.251 1000 STREAM 141924 19961 6027436 2024-02-22 00:06:03.437 2024-02-22 00:06:03.437 1000 STREAM 141924 1773 6027438 2024-02-22 00:07:03.445 2024-02-22 00:07:03.445 1000 STREAM 141924 6058 6027444 2024-02-22 00:11:03.482 2024-02-22 00:11:03.482 1000 STREAM 141924 21194 6027494 2024-02-22 00:18:03.528 2024-02-22 00:18:03.528 1000 STREAM 141924 1740 6027505 2024-02-22 00:21:03.559 2024-02-22 00:21:03.559 1000 STREAM 141924 9426 6027521 2024-02-22 00:23:03.598 2024-02-22 00:23:03.598 1000 STREAM 141924 16351 6027544 2024-02-22 00:26:03.617 2024-02-22 00:26:03.617 1000 STREAM 141924 14278 6027556 2024-02-22 00:30:03.636 2024-02-22 00:30:03.636 1000 STREAM 141924 2013 6027560 2024-02-22 00:31:03.629 2024-02-22 00:31:03.629 1000 STREAM 141924 18460 6027281 2024-02-21 23:47:41.089 2024-02-21 23:47:41.089 4500 TIP 433844 14905 6027327 2024-02-21 23:49:40.579 2024-02-21 23:49:40.579 1000 FEE 434414 12356 6027330 2024-02-21 23:49:51.452 2024-02-21 23:49:51.452 6300 FEE 433840 5444 6027331 2024-02-21 23:49:51.452 2024-02-21 23:49:51.452 56700 TIP 433840 6268 6027336 2024-02-21 23:50:39.559 2024-02-21 23:50:39.559 2100 FEE 433986 917 6027337 2024-02-21 23:50:39.559 2024-02-21 23:50:39.559 18900 TIP 433986 627 6027338 2024-02-21 23:50:41.805 2024-02-21 23:50:41.805 0 FEE 434415 16145 6027343 2024-02-21 23:51:54.846 2024-02-21 23:51:54.846 1000 FEE 434417 21262 6027364 2024-02-21 23:55:40.878 2024-02-21 23:55:40.878 1000 FEE 434419 6268 6027373 2024-02-21 23:57:02.668 2024-02-21 23:57:02.668 1000 FEE 434421 14308 6027407 2024-02-22 00:02:25.464 2024-02-22 00:02:25.464 1000 FEE 433688 17523 6027408 2024-02-22 00:02:25.464 2024-02-22 00:02:25.464 9000 TIP 433688 20481 6027413 2024-02-22 00:02:51.946 2024-02-22 00:02:51.946 100000 FEE 434427 14465 6027415 2024-02-22 00:03:32.744 2024-02-22 00:03:32.744 1000 FEE 434421 15226 6027416 2024-02-22 00:03:32.744 2024-02-22 00:03:32.744 9000 TIP 434421 6471 6027456 2024-02-22 00:15:14.098 2024-02-22 00:15:14.098 1000 FEE 434393 16665 6027457 2024-02-22 00:15:14.098 2024-02-22 00:15:14.098 9000 TIP 434393 9329 6027471 2024-02-22 00:16:02.588 2024-02-22 00:16:02.588 1000 FEE 434425 956 6027472 2024-02-22 00:16:02.588 2024-02-22 00:16:02.588 9000 TIP 434425 13143 6027491 2024-02-22 00:17:40.401 2024-02-22 00:17:40.401 1000 FEE 434431 19375 6027495 2024-02-22 00:19:00.836 2024-02-22 00:19:00.836 1000 FEE 434432 3304 6027503 2024-02-22 00:20:20.82 2024-02-22 00:20:20.82 9000 FEE 434408 14785 6027504 2024-02-22 00:20:20.82 2024-02-22 00:20:20.82 81000 TIP 434408 8133 6027509 2024-02-22 00:22:17.952 2024-02-22 00:22:17.952 1000 FEE 433943 940 6027510 2024-02-22 00:22:17.952 2024-02-22 00:22:17.952 9000 TIP 433943 2711 6027519 2024-02-22 00:22:28.421 2024-02-22 00:22:28.421 21800 FEE 434424 16717 6027520 2024-02-22 00:22:28.421 2024-02-22 00:22:28.421 196200 TIP 434424 19837 6027534 2024-02-22 00:25:18.077 2024-02-22 00:25:18.077 100 FEE 434107 2326 6027535 2024-02-22 00:25:18.077 2024-02-22 00:25:18.077 900 TIP 434107 19662 6027548 2024-02-22 00:27:47.164 2024-02-22 00:27:47.164 3100 FEE 434435 15536 6027549 2024-02-22 00:27:47.164 2024-02-22 00:27:47.164 27900 TIP 434435 9367 6027561 2024-02-22 00:31:39.312 2024-02-22 00:31:39.312 210000 FEE 434441 674 6027582 2024-02-22 00:36:53.37 2024-02-22 00:36:53.37 1000 FEE 434443 5036 6027596 2024-02-22 00:37:57.78 2024-02-22 00:37:57.78 2600 FEE 434101 16948 6027597 2024-02-22 00:37:57.78 2024-02-22 00:37:57.78 23400 TIP 434101 20340 6027618 2024-02-22 00:48:29.791 2024-02-22 00:48:29.791 500 FEE 433943 746 6027619 2024-02-22 00:48:29.791 2024-02-22 00:48:29.791 4500 TIP 433943 16505 6027644 2024-02-22 00:52:37.153 2024-02-22 00:52:37.153 1000 FEE 434449 21070 6027674 2024-02-22 00:54:29.792 2024-02-22 00:54:29.792 4000 FEE 434444 21421 6027675 2024-02-22 00:54:29.792 2024-02-22 00:54:29.792 36000 TIP 434444 12819 6027710 2024-02-22 00:57:02.806 2024-02-22 00:57:02.806 1000 FEE 434440 20979 6027711 2024-02-22 00:57:02.806 2024-02-22 00:57:02.806 9000 TIP 434440 10611 6027714 2024-02-22 00:57:03.727 2024-02-22 00:57:03.727 1000 FEE 434440 13174 6027715 2024-02-22 00:57:03.727 2024-02-22 00:57:03.727 9000 TIP 434440 21481 6027716 2024-02-22 00:57:03.793 2024-02-22 00:57:03.793 500 FEE 433590 19863 6027717 2024-02-22 00:57:03.793 2024-02-22 00:57:03.793 4500 TIP 433590 889 6027728 2024-02-22 00:57:04.617 2024-02-22 00:57:04.617 2300 FEE 434452 9330 6027729 2024-02-22 00:57:04.617 2024-02-22 00:57:04.617 20700 TIP 434452 16351 6027734 2024-02-22 00:57:05.214 2024-02-22 00:57:05.214 500 FEE 433590 1046 6027735 2024-02-22 00:57:05.214 2024-02-22 00:57:05.214 4500 TIP 433590 16988 6027773 2024-02-22 00:57:43.386 2024-02-22 00:57:43.386 500 FEE 434396 722 6027774 2024-02-22 00:57:43.386 2024-02-22 00:57:43.386 4500 TIP 434396 5444 6027775 2024-02-22 00:57:53.601 2024-02-22 00:57:53.601 500 FEE 434395 19662 6027776 2024-02-22 00:57:53.601 2024-02-22 00:57:53.601 4500 TIP 434395 17162 6027779 2024-02-22 00:58:01.233 2024-02-22 00:58:01.233 500 FEE 434025 21430 6027780 2024-02-22 00:58:01.233 2024-02-22 00:58:01.233 4500 TIP 434025 19105 6027791 2024-02-22 00:58:09.988 2024-02-22 00:58:09.988 1000 FEE 434440 19911 6027792 2024-02-22 00:58:09.988 2024-02-22 00:58:09.988 9000 TIP 434440 19021 6027825 2024-02-22 00:58:16.491 2024-02-22 00:58:16.491 500 FEE 433851 19531 6027826 2024-02-22 00:58:16.491 2024-02-22 00:58:16.491 4500 TIP 433851 19852 6027836 2024-02-22 00:59:14.903 2024-02-22 00:59:14.903 7700 FEE 415012 15147 6027837 2024-02-22 00:59:14.903 2024-02-22 00:59:14.903 69300 TIP 415012 21556 6027866 2024-02-22 01:04:38.706 2024-02-22 01:04:38.706 1000 FEE 434459 17212 6027876 2024-02-22 01:08:28.495 2024-02-22 01:08:28.495 4000 FEE 434447 2077 6027877 2024-02-22 01:08:28.495 2024-02-22 01:08:28.495 36000 TIP 434447 18945 6027896 2024-02-22 01:10:52.084 2024-02-22 01:10:52.084 8300 FEE 434385 18678 6027897 2024-02-22 01:10:52.084 2024-02-22 01:10:52.084 74700 TIP 434385 20152 6027930 2024-02-22 01:12:28.059 2024-02-22 01:12:28.059 2700 FEE 434424 20220 6027931 2024-02-22 01:12:28.059 2024-02-22 01:12:28.059 24300 TIP 434424 16830 6027936 2024-02-22 01:12:29.605 2024-02-22 01:12:29.605 2700 FEE 434424 9985 6027937 2024-02-22 01:12:29.605 2024-02-22 01:12:29.605 24300 TIP 434424 1141 6027947 2024-02-22 01:14:14.775 2024-02-22 01:14:14.775 2100 FEE 434321 19117 6027948 2024-02-22 01:14:14.775 2024-02-22 01:14:14.775 18900 TIP 434321 10979 6027283 2024-02-21 23:47:42.131 2024-02-21 23:47:42.131 4500 TIP 433828 19471 6027306 2024-02-21 23:48:03.258 2024-02-21 23:48:03.258 1000 STREAM 141924 1298 6027320 2024-02-21 23:49:18.907 2024-02-21 23:49:18.907 500 FEE 434300 14503 6027321 2024-02-21 23:49:18.907 2024-02-21 23:49:18.907 4500 TIP 434300 770 6027322 2024-02-21 23:49:19.341 2024-02-21 23:49:19.341 1000 FEE 434413 638 6027334 2024-02-21 23:50:02.108 2024-02-21 23:50:02.108 1000 STREAM 141924 19976 6027335 2024-02-21 23:50:26.024 2024-02-21 23:50:26.024 10000 FEE 434415 2022 6027347 2024-02-21 23:52:58.234 2024-02-21 23:52:58.234 3300 FEE 434416 8059 6027348 2024-02-21 23:52:58.234 2024-02-21 23:52:58.234 29700 TIP 434416 2330 6027368 2024-02-21 23:56:14.318 2024-02-21 23:56:14.318 1000 FEE 433722 17082 6027369 2024-02-21 23:56:14.318 2024-02-21 23:56:14.318 9000 TIP 433722 987 6027396 2024-02-22 00:00:03.343 2024-02-22 00:00:03.343 1000 STREAM 141924 18453 6027401 2024-02-22 00:02:03.422 2024-02-22 00:02:03.422 1000 STREAM 141924 5427 6027430 2024-02-22 00:05:02.223 2024-02-22 00:05:02.223 1000 STREAM 141924 21521 6027435 2024-02-22 00:05:16.35 2024-02-22 00:05:16.35 0 FEE 434421 19581 6027437 2024-02-22 00:06:44.837 2024-02-22 00:06:44.837 1000 FEE 434428 20852 6027439 2024-02-22 00:08:03.473 2024-02-22 00:08:03.473 1000 STREAM 141924 5522 6027440 2024-02-22 00:09:03.462 2024-02-22 00:09:03.462 1000 STREAM 141924 1737 6027441 2024-02-22 00:10:03.499 2024-02-22 00:10:03.499 1000 STREAM 141924 18124 6027442 2024-02-22 00:10:33.218 2024-02-22 00:10:33.218 1000 FEE 434335 20691 6027443 2024-02-22 00:10:33.218 2024-02-22 00:10:33.218 9000 TIP 434335 1493 6027447 2024-02-22 00:12:02.271 2024-02-22 00:12:02.271 1000 STREAM 141924 21262 6027448 2024-02-22 00:13:03.493 2024-02-22 00:13:03.493 1000 STREAM 141924 18169 6027449 2024-02-22 00:14:03.507 2024-02-22 00:14:03.507 1000 STREAM 141924 21063 6027451 2024-02-22 00:14:44.749 2024-02-22 00:14:44.749 10000 FEE 434099 10591 6027452 2024-02-22 00:14:44.749 2024-02-22 00:14:44.749 90000 TIP 434099 12175 6027453 2024-02-22 00:15:03.523 2024-02-22 00:15:03.523 1000 STREAM 141924 679 6027460 2024-02-22 00:15:14.945 2024-02-22 00:15:14.945 1000 FEE 434393 8168 6027461 2024-02-22 00:15:14.945 2024-02-22 00:15:14.945 9000 TIP 434393 4538 6027464 2024-02-22 00:15:34.589 2024-02-22 00:15:34.589 10000 FEE 434429 19462 6027465 2024-02-22 00:15:34.589 2024-02-22 00:15:34.589 90000 TIP 434429 16704 6027477 2024-02-22 00:16:03.511 2024-02-22 00:16:03.511 1000 STREAM 141924 4989 6027480 2024-02-22 00:16:16.87 2024-02-22 00:16:16.87 1000 FEE 434400 626 6027481 2024-02-22 00:16:16.87 2024-02-22 00:16:16.87 9000 TIP 434400 15690 6027484 2024-02-22 00:16:17.729 2024-02-22 00:16:17.729 1000 FEE 434400 18673 6027485 2024-02-22 00:16:17.729 2024-02-22 00:16:17.729 9000 TIP 434400 20434 6027490 2024-02-22 00:17:02.29 2024-02-22 00:17:02.29 1000 STREAM 141924 17041 6027496 2024-02-22 00:19:02.292 2024-02-22 00:19:02.292 1000 STREAM 141924 21051 6027498 2024-02-22 00:20:02.315 2024-02-22 00:20:02.315 1000 STREAM 141924 16753 6027508 2024-02-22 00:22:03.59 2024-02-22 00:22:03.59 1000 STREAM 141924 8376 6027515 2024-02-22 00:22:25.684 2024-02-22 00:22:25.684 1000 FEE 433555 21242 6027516 2024-02-22 00:22:25.684 2024-02-22 00:22:25.684 9000 TIP 433555 21062 6027533 2024-02-22 00:25:03.595 2024-02-22 00:25:03.595 1000 STREAM 141924 2942 6027542 2024-02-22 00:25:50.726 2024-02-22 00:25:50.726 4000 FEE 434411 21379 6027543 2024-02-22 00:25:50.726 2024-02-22 00:25:50.726 36000 TIP 434411 21369 6027546 2024-02-22 00:27:02.344 2024-02-22 00:27:02.344 1000 STREAM 141924 937 6027551 2024-02-22 00:28:02.339 2024-02-22 00:28:02.339 1000 STREAM 141924 17944 6027552 2024-02-22 00:29:02.321 2024-02-22 00:29:02.321 1000 STREAM 141924 13517 6027559 2024-02-22 00:30:49.354 2024-02-22 00:30:49.354 10000 FEE 434440 20129 6027562 2024-02-22 00:32:03.632 2024-02-22 00:32:03.632 1000 STREAM 141924 1006 6027563 2024-02-22 00:33:02.359 2024-02-22 00:33:02.359 1000 STREAM 141924 16754 6027565 2024-02-22 00:33:15.732 2024-02-22 00:33:15.732 0 FEE 434435 683 6027569 2024-02-22 00:34:22.11 2024-02-22 00:34:22.11 0 FEE 434441 965 6027576 2024-02-22 00:35:02.373 2024-02-22 00:35:02.373 1000 STREAM 141924 20555 6027580 2024-02-22 00:36:02.685 2024-02-22 00:36:02.685 4000 FEE 434440 20603 6027581 2024-02-22 00:36:02.685 2024-02-22 00:36:02.685 36000 TIP 434440 19289 6027601 2024-02-22 00:38:15.957 2024-02-22 00:38:15.957 700 FEE 434438 21012 6027602 2024-02-22 00:38:15.957 2024-02-22 00:38:15.957 6300 TIP 434438 6164 6027604 2024-02-22 00:40:02.437 2024-02-22 00:40:02.437 1000 STREAM 141924 7673 6027607 2024-02-22 00:43:02.466 2024-02-22 00:43:02.466 1000 STREAM 141924 8648 6027609 2024-02-22 00:45:00.345 2024-02-22 00:45:00.345 1000 FEE 434444 5708 6027610 2024-02-22 00:45:02.474 2024-02-22 00:45:02.474 1000 STREAM 141924 20979 6027612 2024-02-22 00:46:50.848 2024-02-22 00:46:50.848 10000 FEE 434445 12175 6027614 2024-02-22 00:47:02.465 2024-02-22 00:47:02.465 1000 STREAM 141924 5761 6027615 2024-02-22 00:48:02.475 2024-02-22 00:48:02.475 1000 STREAM 141924 19992 6027626 2024-02-22 00:48:34.941 2024-02-22 00:48:34.941 500 FEE 433688 15049 6027627 2024-02-22 00:48:34.941 2024-02-22 00:48:34.941 4500 TIP 433688 683 6027637 2024-02-22 00:50:02.514 2024-02-22 00:50:02.514 1000 STREAM 141924 20891 6027642 2024-02-22 00:52:02.486 2024-02-22 00:52:02.486 1000 STREAM 141924 6499 6027653 2024-02-22 00:54:02.489 2024-02-22 00:54:02.489 1000 STREAM 141924 711 6027687 2024-02-22 00:55:02.515 2024-02-22 00:55:02.515 1000 STREAM 141924 20599 6027688 2024-02-22 00:55:10.66 2024-02-22 00:55:10.66 3300 FEE 434426 16282 6027689 2024-02-22 00:55:10.66 2024-02-22 00:55:10.66 29700 TIP 434426 1319 6027707 2024-02-22 00:57:02.535 2024-02-22 00:57:02.535 1000 STREAM 141924 19235 6027732 2024-02-22 00:57:05.047 2024-02-22 00:57:05.047 1000 FEE 434440 20464 6027733 2024-02-22 00:57:05.047 2024-02-22 00:57:05.047 9000 TIP 434440 17275 6027751 2024-02-22 00:57:31.505 2024-02-22 00:57:31.505 2300 FEE 434441 11829 6027752 2024-02-22 00:57:31.505 2024-02-22 00:57:31.505 20700 TIP 434441 6653 6027781 2024-02-22 00:58:02.515 2024-02-22 00:58:02.515 1000 STREAM 141924 20979 6027789 2024-02-22 00:58:09.932 2024-02-22 00:58:09.932 2300 FEE 434285 18528 6027790 2024-02-22 00:58:09.932 2024-02-22 00:58:09.932 20700 TIP 434285 6594 6027803 2024-02-22 00:58:10.642 2024-02-22 00:58:10.642 2300 FEE 434285 12779 6027804 2024-02-22 00:58:10.642 2024-02-22 00:58:10.642 20700 TIP 434285 8506 6027805 2024-02-22 00:58:10.76 2024-02-22 00:58:10.76 1000 FEE 434440 2151 6027806 2024-02-22 00:58:10.76 2024-02-22 00:58:10.76 9000 TIP 434440 1141 6027819 2024-02-22 00:58:11.42 2024-02-22 00:58:11.42 2300 FEE 434285 2322 6027820 2024-02-22 00:58:11.42 2024-02-22 00:58:11.42 20700 TIP 434285 21373 6027827 2024-02-22 00:58:23.886 2024-02-22 00:58:23.886 500 FEE 433851 9184 6027828 2024-02-22 00:58:23.886 2024-02-22 00:58:23.886 4500 TIP 433851 21577 6027835 2024-02-22 00:59:02.543 2024-02-22 00:59:02.543 1000 STREAM 141924 19199 6027840 2024-02-22 00:59:15.271 2024-02-22 00:59:15.271 7700 FEE 415012 6533 6027841 2024-02-22 00:59:15.271 2024-02-22 00:59:15.271 69300 TIP 415012 16808 6027851 2024-02-22 01:02:02.675 2024-02-22 01:02:02.675 1000 STREAM 141924 13574 6027864 2024-02-22 01:04:11.679 2024-02-22 01:04:11.679 2100 FEE 432153 18635 6027865 2024-02-22 01:04:11.679 2024-02-22 01:04:11.679 18900 TIP 432153 21083 6027872 2024-02-22 01:06:02.716 2024-02-22 01:06:02.716 1000 STREAM 141924 2529 6027873 2024-02-22 01:07:02.726 2024-02-22 01:07:02.726 1000 STREAM 141924 19992 6027886 2024-02-22 01:09:02.732 2024-02-22 01:09:02.732 1000 STREAM 141924 21480 6027895 2024-02-22 01:10:02.724 2024-02-22 01:10:02.724 1000 STREAM 141924 1316 6027905 2024-02-22 01:11:33.37 2024-02-22 01:11:33.37 8300 FEE 434154 10342 6027906 2024-02-22 01:11:33.37 2024-02-22 01:11:33.37 74700 TIP 434154 12346 6027913 2024-02-22 01:11:35.554 2024-02-22 01:11:35.554 8300 FEE 434441 16684 6027914 2024-02-22 01:11:35.554 2024-02-22 01:11:35.554 74700 TIP 434441 20094 6027919 2024-02-22 01:11:45.205 2024-02-22 01:11:45.205 2100 FEE 434396 714 6027920 2024-02-22 01:11:45.205 2024-02-22 01:11:45.205 18900 TIP 434396 8535 6027938 2024-02-22 01:12:43.048 2024-02-22 01:12:43.048 1000 FEE 434461 16665 6027941 2024-02-22 01:13:02.749 2024-02-22 01:13:02.749 1000 STREAM 141924 7916 6027524 2024-02-22 00:23:17.365 2024-02-22 00:23:17.365 1000 FEE 434318 20581 6027525 2024-02-22 00:23:17.365 2024-02-22 00:23:17.365 9000 TIP 434318 18832 6027530 2024-02-22 00:23:43.487 2024-02-22 00:23:43.487 1000 FEE 433849 15588 6027531 2024-02-22 00:23:43.487 2024-02-22 00:23:43.487 9000 TIP 433849 19637 6027532 2024-02-22 00:24:02.322 2024-02-22 00:24:02.322 1000 STREAM 141924 19905 6027540 2024-02-22 00:25:18.668 2024-02-22 00:25:18.668 100 FEE 434107 2309 6027541 2024-02-22 00:25:18.668 2024-02-22 00:25:18.668 900 TIP 434107 15336 6027545 2024-02-22 00:26:30.131 2024-02-22 00:26:30.131 10000 FEE 434434 16270 6027553 2024-02-22 00:29:11.136 2024-02-22 00:29:11.136 700 FEE 434410 18494 6027554 2024-02-22 00:29:11.136 2024-02-22 00:29:11.136 6300 TIP 434410 14906 6027568 2024-02-22 00:34:02.384 2024-02-22 00:34:02.384 1000 STREAM 141924 7877 6027570 2024-02-22 00:34:22.411 2024-02-22 00:34:22.411 100 FEE 434361 19848 6027571 2024-02-22 00:34:22.411 2024-02-22 00:34:22.411 900 TIP 434361 17227 6027579 2024-02-22 00:36:02.396 2024-02-22 00:36:02.396 1000 STREAM 141924 11992 6027583 2024-02-22 00:37:02.402 2024-02-22 00:37:02.402 1000 STREAM 141924 21012 6027590 2024-02-22 00:37:51.34 2024-02-22 00:37:51.34 4000 FEE 434285 2460 6027591 2024-02-22 00:37:51.34 2024-02-22 00:37:51.34 36000 TIP 434285 20511 6027600 2024-02-22 00:38:02.422 2024-02-22 00:38:02.422 1000 STREAM 141924 17682 6027603 2024-02-22 00:39:02.409 2024-02-22 00:39:02.409 1000 STREAM 141924 12911 6027605 2024-02-22 00:41:02.445 2024-02-22 00:41:02.445 1000 STREAM 141924 21541 6027606 2024-02-22 00:42:02.448 2024-02-22 00:42:02.448 1000 STREAM 141924 8729 6027608 2024-02-22 00:44:02.46 2024-02-22 00:44:02.46 1000 STREAM 141924 5694 6027611 2024-02-22 00:46:02.473 2024-02-22 00:46:02.473 1000 STREAM 141924 21620 6027620 2024-02-22 00:48:29.826 2024-02-22 00:48:29.826 500 FEE 433844 17552 6027621 2024-02-22 00:48:29.826 2024-02-22 00:48:29.826 4500 TIP 433844 831 6027624 2024-02-22 00:48:33.691 2024-02-22 00:48:33.691 500 FEE 433499 5293 6027625 2024-02-22 00:48:33.691 2024-02-22 00:48:33.691 4500 TIP 433499 940 6027636 2024-02-22 00:49:02.474 2024-02-22 00:49:02.474 1000 STREAM 141924 14037 6027639 2024-02-22 00:51:02.498 2024-02-22 00:51:02.498 1000 STREAM 141924 2111 6027645 2024-02-22 00:53:02.479 2024-02-22 00:53:02.479 1000 STREAM 141924 21070 6027664 2024-02-22 00:54:09.294 2024-02-22 00:54:09.294 1000 FEE 434451 18743 6027669 2024-02-22 00:54:23.368 2024-02-22 00:54:23.368 1000 FEE 434452 5538 6027684 2024-02-22 00:54:36.879 2024-02-22 00:54:36.879 3100 FEE 434451 19690 6027685 2024-02-22 00:54:36.879 2024-02-22 00:54:36.879 27900 TIP 434451 18507 6027694 2024-02-22 00:55:19.176 2024-02-22 00:55:19.176 0 FEE 434453 638 6027695 2024-02-22 00:55:58.009 2024-02-22 00:55:58.009 1000 FEE 434454 16649 6027696 2024-02-22 00:56:02.507 2024-02-22 00:56:02.507 1000 STREAM 141924 632 6027720 2024-02-22 00:57:04.019 2024-02-22 00:57:04.019 500 FEE 433590 6430 6027721 2024-02-22 00:57:04.019 2024-02-22 00:57:04.019 4500 TIP 433590 2537 6027753 2024-02-22 00:57:31.672 2024-02-22 00:57:31.672 2300 FEE 434441 2029 6027754 2024-02-22 00:57:31.672 2024-02-22 00:57:31.672 20700 TIP 434441 802 6027755 2024-02-22 00:57:32.095 2024-02-22 00:57:32.095 2300 FEE 434441 21218 6027756 2024-02-22 00:57:32.095 2024-02-22 00:57:32.095 20700 TIP 434441 21585 6027759 2024-02-22 00:57:32.535 2024-02-22 00:57:32.535 2300 FEE 434441 10283 6027760 2024-02-22 00:57:32.535 2024-02-22 00:57:32.535 20700 TIP 434441 16753 6027771 2024-02-22 00:57:36.119 2024-02-22 00:57:36.119 2300 FEE 434441 16954 6027772 2024-02-22 00:57:36.119 2024-02-22 00:57:36.119 20700 TIP 434441 21619 6027782 2024-02-22 00:58:07.535 2024-02-22 00:58:07.535 1000 FEE 434456 8176 6027787 2024-02-22 00:58:09.803 2024-02-22 00:58:09.803 1000 FEE 434440 21589 6027788 2024-02-22 00:58:09.803 2024-02-22 00:58:09.803 9000 TIP 434440 15159 6027793 2024-02-22 00:58:10.073 2024-02-22 00:58:10.073 2300 FEE 434285 20704 6027794 2024-02-22 00:58:10.073 2024-02-22 00:58:10.073 20700 TIP 434285 5308 6027811 2024-02-22 00:58:11.119 2024-02-22 00:58:11.119 1000 FEE 434440 16154 6027812 2024-02-22 00:58:11.119 2024-02-22 00:58:11.119 9000 TIP 434440 12507 6027846 2024-02-22 00:59:15.737 2024-02-22 00:59:15.737 7700 FEE 415012 16867 6027847 2024-02-22 00:59:15.737 2024-02-22 00:59:15.737 69300 TIP 415012 15484 6027848 2024-02-22 01:00:02.553 2024-02-22 01:00:02.553 1000 STREAM 141924 720 6027849 2024-02-22 01:01:02.694 2024-02-22 01:01:02.694 1000 STREAM 141924 19044 6027850 2024-02-22 01:01:56.811 2024-02-22 01:01:56.811 10000 FEE 434457 6602 6027854 2024-02-22 01:03:02.687 2024-02-22 01:03:02.687 1000 STREAM 141924 3729 6027855 2024-02-22 01:03:24.569 2024-02-22 01:03:24.569 4000 FEE 434455 20018 6027856 2024-02-22 01:03:24.569 2024-02-22 01:03:24.569 36000 TIP 434455 2075 6027863 2024-02-22 01:04:02.697 2024-02-22 01:04:02.697 1000 STREAM 141924 3504 6027869 2024-02-22 01:05:02.723 2024-02-22 01:05:02.723 1000 STREAM 141924 1114 6027874 2024-02-22 01:08:02.724 2024-02-22 01:08:02.724 1000 STREAM 141924 8945 6027875 2024-02-22 01:08:14.164 2024-02-22 01:08:14.164 1000 FEE 434460 20084 6027902 2024-02-22 01:11:02.736 2024-02-22 01:11:02.736 1000 STREAM 141924 2361 6027929 2024-02-22 01:12:02.723 2024-02-22 01:12:02.723 1000 STREAM 141924 13759 6027932 2024-02-22 01:12:28.232 2024-02-22 01:12:28.232 2700 FEE 434424 8423 6027933 2024-02-22 01:12:28.232 2024-02-22 01:12:28.232 24300 TIP 434424 12356 6027942 2024-02-22 01:13:33.251 2024-02-22 01:13:33.251 7700 FEE 293478 7772 6027943 2024-02-22 01:13:33.251 2024-02-22 01:13:33.251 69300 TIP 293478 717 6027738 2024-02-22 00:57:05.373 2024-02-22 00:57:05.373 1000 FEE 434440 21088 6027739 2024-02-22 00:57:05.373 2024-02-22 00:57:05.373 9000 TIP 434440 21562 6027749 2024-02-22 00:57:31.079 2024-02-22 00:57:31.079 2300 FEE 434441 8954 6027750 2024-02-22 00:57:31.079 2024-02-22 00:57:31.079 20700 TIP 434441 4118 6027761 2024-02-22 00:57:33.005 2024-02-22 00:57:33.005 2300 FEE 434441 1602 6027762 2024-02-22 00:57:33.005 2024-02-22 00:57:33.005 20700 TIP 434441 5495 6027795 2024-02-22 00:58:10.158 2024-02-22 00:58:10.158 1000 FEE 434440 1135 6027796 2024-02-22 00:58:10.158 2024-02-22 00:58:10.158 9000 TIP 434440 854 6027809 2024-02-22 00:58:11.054 2024-02-22 00:58:11.054 2300 FEE 434285 17116 6027810 2024-02-22 00:58:11.054 2024-02-22 00:58:11.054 20700 TIP 434285 18380 6027867 2024-02-22 01:04:58.488 2024-02-22 01:04:58.488 1000 FEE 433814 21062 6027868 2024-02-22 01:04:58.488 2024-02-22 01:04:58.488 9000 TIP 433814 20439 6027889 2024-02-22 01:09:17.086 2024-02-22 01:09:17.086 8300 FEE 434405 7992 6027890 2024-02-22 01:09:17.086 2024-02-22 01:09:17.086 74700 TIP 434405 2151 6027893 2024-02-22 01:09:20.117 2024-02-22 01:09:20.117 8300 FEE 434406 20258 6027894 2024-02-22 01:09:20.117 2024-02-22 01:09:20.117 74700 TIP 434406 2046 6027903 2024-02-22 01:11:33.241 2024-02-22 01:11:33.241 8300 FEE 434154 11527 6027904 2024-02-22 01:11:33.241 2024-02-22 01:11:33.241 74700 TIP 434154 21498 6027907 2024-02-22 01:11:33.466 2024-02-22 01:11:33.466 8300 FEE 434154 19021 6027908 2024-02-22 01:11:33.466 2024-02-22 01:11:33.466 74700 TIP 434154 20109 6027927 2024-02-22 01:11:58.668 2024-02-22 01:11:58.668 2100 FEE 434319 19770 6027928 2024-02-22 01:11:58.668 2024-02-22 01:11:58.668 18900 TIP 434319 15100 6027949 2024-02-22 01:14:16.524 2024-02-22 01:14:16.524 2100 FEE 434332 15336 6027950 2024-02-22 01:14:16.524 2024-02-22 01:14:16.524 18900 TIP 434332 20080 6027953 2024-02-22 01:14:17.948 2024-02-22 01:14:17.948 2100 FEE 434404 21026 6027954 2024-02-22 01:14:17.948 2024-02-22 01:14:17.948 18900 TIP 434404 9246 6027871 2024-02-22 01:06:00.478 2024-02-22 01:06:00.478 9000 TIP 433861 21387 6027898 2024-02-22 01:10:52.211 2024-02-22 01:10:52.211 8300 FEE 434385 917 6027899 2024-02-22 01:10:52.211 2024-02-22 01:10:52.211 74700 TIP 434385 7983 6027944 2024-02-22 01:14:03.864 2024-02-22 01:14:03.864 1000 STREAM 141924 10013 6027946 2024-02-22 01:14:08.561 2024-02-22 01:14:08.561 18900 TIP 434286 20218 6027951 2024-02-22 01:14:17.276 2024-02-22 01:14:17.276 2100 FEE 434396 3360 6027952 2024-02-22 01:14:17.276 2024-02-22 01:14:17.276 18900 TIP 434396 1495 2831007 2022-12-19 23:25:03.56 2022-12-19 23:25:03.56 1000 STREAM 109138 9517 2831009 2022-12-19 23:25:03.573 2022-12-19 23:25:03.573 1000 STREAM 109142 11328 2831056 2022-12-19 23:26:01.863 2022-12-19 23:26:01.863 1000 STREAM 109142 675 2831058 2022-12-19 23:26:01.913 2022-12-19 23:26:01.913 1000 STREAM 109138 11158 2831059 2022-12-19 23:27:03.836 2022-12-19 23:27:03.836 1000 STREAM 109142 17106 2831062 2022-12-19 23:27:03.907 2022-12-19 23:27:03.907 1000 STREAM 109138 17519 2831072 2022-12-19 23:28:02.125 2022-12-19 23:28:02.125 1000 STREAM 109138 2832 2831074 2022-12-19 23:28:02.193 2022-12-19 23:28:02.193 1000 STREAM 109142 18511 2831085 2022-12-19 23:29:03.836 2022-12-19 23:29:03.836 1000 STREAM 109142 18896 2831088 2022-12-19 23:29:03.897 2022-12-19 23:29:03.897 1000 STREAM 109138 1959 2831107 2022-12-19 23:30:02.148 2022-12-19 23:30:02.148 1000 STREAM 109142 7986 2831110 2022-12-19 23:30:02.163 2022-12-19 23:30:02.163 1000 STREAM 109138 21287 2831163 2022-12-19 23:31:03.663 2022-12-19 23:31:03.663 1000 STREAM 109142 18727 2831164 2022-12-19 23:31:03.667 2022-12-19 23:31:03.667 1000 STREAM 109138 19037 2831171 2022-12-19 23:32:02.18 2022-12-19 23:32:02.18 1000 STREAM 109142 18989 2831173 2022-12-19 23:32:02.209 2022-12-19 23:32:02.209 1000 STREAM 109138 19189 2831194 2022-12-19 23:33:02.659 2022-12-19 23:33:02.659 1000 STREAM 109142 16440 2831196 2022-12-19 23:33:02.724 2022-12-19 23:33:02.724 1000 STREAM 109138 1401 2831238 2022-12-19 23:34:02.51 2022-12-19 23:34:02.51 1000 STREAM 109142 18177 2831241 2022-12-19 23:34:02.571 2022-12-19 23:34:02.571 1000 STREAM 109138 11798 2831289 2022-12-19 23:35:02.31 2022-12-19 23:35:02.31 1000 STREAM 109142 762 2831292 2022-12-19 23:35:02.321 2022-12-19 23:35:02.321 1000 STREAM 109138 628 2831294 2022-12-19 23:36:02.597 2022-12-19 23:36:02.597 1000 STREAM 109142 21395 2831296 2022-12-19 23:36:02.601 2022-12-19 23:36:02.601 1000 STREAM 109138 21164 2831299 2022-12-19 23:37:02.103 2022-12-19 23:37:02.103 1000 STREAM 109142 17041 2831300 2022-12-19 23:37:02.108 2022-12-19 23:37:02.108 1000 STREAM 109138 3979 2831302 2022-12-19 23:38:02.573 2022-12-19 23:38:02.573 1000 STREAM 109138 4167 2831305 2022-12-19 23:38:02.586 2022-12-19 23:38:02.586 1000 STREAM 109142 19663 2831307 2022-12-19 23:39:03.794 2022-12-19 23:39:03.794 1000 STREAM 109138 15941 2831309 2022-12-19 23:39:03.858 2022-12-19 23:39:03.858 1000 STREAM 109142 18784 2831311 2022-12-19 23:40:02.305 2022-12-19 23:40:02.305 1000 STREAM 109138 11018 2831314 2022-12-19 23:40:02.326 2022-12-19 23:40:02.326 1000 STREAM 109142 19243 2831316 2022-12-19 23:41:02.647 2022-12-19 23:41:02.647 1000 STREAM 109138 16214 2831318 2022-12-19 23:41:02.684 2022-12-19 23:41:02.684 1000 STREAM 109142 2329 2831320 2022-12-19 23:42:02.343 2022-12-19 23:42:02.343 1000 STREAM 109142 15474 2831322 2022-12-19 23:42:02.371 2022-12-19 23:42:02.371 1000 STREAM 109138 20162 2831326 2022-12-19 23:43:02.34 2022-12-19 23:43:02.34 1000 STREAM 109142 19087 2831329 2022-12-19 23:43:02.377 2022-12-19 23:43:02.377 1000 STREAM 109138 721 2831342 2022-12-19 23:44:02.567 2022-12-19 23:44:02.567 1000 STREAM 109142 21344 2831345 2022-12-19 23:44:02.617 2022-12-19 23:44:02.617 1000 STREAM 109138 10719 2831351 2022-12-19 23:45:02.497 2022-12-19 23:45:02.497 1000 STREAM 109142 2459 2831353 2022-12-19 23:45:02.507 2022-12-19 23:45:02.507 1000 STREAM 109138 19569 2831355 2022-12-19 23:46:02.518 2022-12-19 23:46:02.518 1000 STREAM 109138 1890 2831357 2022-12-19 23:46:02.581 2022-12-19 23:46:02.581 1000 STREAM 109142 2596 2831359 2022-12-19 23:47:03.894 2022-12-19 23:47:03.894 1000 STREAM 109142 3478 2831361 2022-12-19 23:47:03.915 2022-12-19 23:47:03.915 1000 STREAM 109138 16970 2831375 2022-12-19 23:48:02.605 2022-12-19 23:48:02.605 1000 STREAM 109138 20299 2831376 2022-12-19 23:48:02.608 2022-12-19 23:48:02.608 1000 STREAM 109142 20454 2831432 2022-12-19 23:49:02.376 2022-12-19 23:49:02.376 1000 STREAM 109142 1726 2831434 2022-12-19 23:49:02.429 2022-12-19 23:49:02.429 1000 STREAM 109138 687 2831506 2022-12-19 23:50:02.477 2022-12-19 23:50:02.477 1000 STREAM 109142 19198 2831508 2022-12-19 23:50:02.529 2022-12-19 23:50:02.529 1000 STREAM 109138 20287 2831546 2022-12-19 23:51:02.963 2022-12-19 23:51:02.963 1000 STREAM 109142 9482 2831548 2022-12-19 23:51:03.033 2022-12-19 23:51:03.033 1000 STREAM 109138 18930 2831550 2022-12-19 23:52:03.207 2022-12-19 23:52:03.207 1000 STREAM 109142 21239 2831552 2022-12-19 23:52:03.232 2022-12-19 23:52:03.232 1000 STREAM 109138 4322 2831555 2022-12-19 23:53:03.002 2022-12-19 23:53:03.002 1000 STREAM 109142 19535 2831557 2022-12-19 23:53:03.069 2022-12-19 23:53:03.069 1000 STREAM 109138 11522 2831559 2022-12-19 23:54:03.039 2022-12-19 23:54:03.039 1000 STREAM 109142 21405 2831560 2022-12-19 23:54:03.045 2022-12-19 23:54:03.045 1000 STREAM 109138 9335 2831578 2022-12-19 23:55:03.015 2022-12-19 23:55:03.015 1000 STREAM 109138 9351 2831579 2022-12-19 23:55:03.021 2022-12-19 23:55:03.021 1000 STREAM 109142 18124 2831612 2022-12-19 23:56:02.537 2022-12-19 23:56:02.537 1000 STREAM 109142 21338 2831615 2022-12-19 23:56:02.6 2022-12-19 23:56:02.6 1000 STREAM 109138 1631 2831620 2022-12-19 23:57:02.121 2022-12-19 23:57:02.121 1000 STREAM 109142 16594 2831621 2022-12-19 23:57:02.131 2022-12-19 23:57:02.131 1000 STREAM 109138 18468 2831630 2022-12-19 23:58:02.352 2022-12-19 23:58:02.352 1000 STREAM 109138 20062 2831633 2022-12-19 23:58:02.443 2022-12-19 23:58:02.443 1000 STREAM 109142 14465 2831636 2022-12-19 23:59:02.357 2022-12-19 23:59:02.357 1000 STREAM 109142 21401 2831637 2022-12-19 23:59:02.362 2022-12-19 23:59:02.362 1000 STREAM 109138 1474 2831643 2022-12-20 00:00:03.137 2022-12-20 00:00:03.137 1000 STREAM 109138 12951 2831645 2022-12-20 00:00:03.182 2022-12-20 00:00:03.182 1000 STREAM 109142 704 2831648 2022-12-20 00:01:02.842 2022-12-20 00:01:02.842 1000 STREAM 109138 21427 2831650 2022-12-20 00:01:02.9 2022-12-20 00:01:02.9 1000 STREAM 109142 21338 2831653 2022-12-20 00:02:02.028 2022-12-20 00:02:02.028 1000 STREAM 109138 9367 2831655 2022-12-20 00:02:02.095 2022-12-20 00:02:02.095 1000 STREAM 109142 19878 2831657 2022-12-20 00:03:02.611 2022-12-20 00:03:02.611 1000 STREAM 109138 9159 2831659 2022-12-20 00:03:02.634 2022-12-20 00:03:02.634 1000 STREAM 109142 4084 2831665 2022-12-20 00:04:02.689 2022-12-20 00:04:02.689 1000 STREAM 109142 4984 2831667 2022-12-20 00:04:02.707 2022-12-20 00:04:02.707 1000 STREAM 109138 620 2831670 2022-12-20 00:05:02.934 2022-12-20 00:05:02.934 1000 STREAM 109142 1326 2831673 2022-12-20 00:05:02.949 2022-12-20 00:05:02.949 1000 STREAM 109138 20854 2831675 2022-12-20 00:06:02.8 2022-12-20 00:06:02.8 1000 STREAM 109138 18232 2831677 2022-12-20 00:06:02.834 2022-12-20 00:06:02.834 1000 STREAM 109142 705 2831681 2022-12-20 00:07:02.783 2022-12-20 00:07:02.783 1000 STREAM 109138 4076 2831682 2022-12-20 00:07:02.847 2022-12-20 00:07:02.847 1000 STREAM 109142 17106 2831684 2022-12-20 00:08:02.66 2022-12-20 00:08:02.66 1000 STREAM 109138 14795 2831686 2022-12-20 00:08:02.711 2022-12-20 00:08:02.711 1000 STREAM 109142 12976 2831688 2022-12-20 00:09:02.142 2022-12-20 00:09:02.142 1000 STREAM 109138 19639 2831690 2022-12-20 00:09:02.218 2022-12-20 00:09:02.218 1000 STREAM 109142 20257 2831692 2022-12-20 00:10:02.703 2022-12-20 00:10:02.703 1000 STREAM 109138 10849 2831694 2022-12-20 00:10:02.789 2022-12-20 00:10:02.789 1000 STREAM 109142 3979 2831696 2022-12-20 00:11:02.706 2022-12-20 00:11:02.706 1000 STREAM 109142 4166 2831698 2022-12-20 00:11:02.727 2022-12-20 00:11:02.727 1000 STREAM 109138 20470 2831700 2022-12-20 00:12:02.131 2022-12-20 00:12:02.131 1000 STREAM 109138 1060 2831702 2022-12-20 00:12:02.175 2022-12-20 00:12:02.175 1000 STREAM 109142 21509 2831704 2022-12-20 00:13:02.733 2022-12-20 00:13:02.733 1000 STREAM 109142 16788 2831706 2022-12-20 00:13:02.747 2022-12-20 00:13:02.747 1000 STREAM 109138 925 2831710 2022-12-20 00:14:02.533 2022-12-20 00:14:02.533 1000 STREAM 109142 6058 2831711 2022-12-20 00:14:02.624 2022-12-20 00:14:02.624 1000 STREAM 109138 9529 \. -- -- Data for Name: ItemForward; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemForward" (id, created_at, updated_at, "itemId", "userId", pct) FROM stdin; \. -- -- Data for Name: ItemUpload; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ItemUpload" (created_at, updated_at, "itemId", "uploadId") FROM stdin; \. -- -- Data for Name: LnAuth; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."LnAuth" (id, created_at, updated_at, k1, pubkey) FROM stdin; \. -- -- Data for Name: LnWith; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."LnWith" (id, created_at, updated_at, k1, "userId", "withdrawalId") FROM stdin; \. -- -- Data for Name: Log; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Log" (id, created_at, level, name, message, env, context) FROM stdin; \. -- -- Data for Name: Mention; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Mention" (id, created_at, updated_at, "itemId", "userId") FROM stdin; \. -- -- Data for Name: Message; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Message" (id, text, "userId") FROM stdin; \. -- -- Data for Name: Mute; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Mute" ("muterId", "mutedId", created_at, updated_at) FROM stdin; \. -- -- Data for Name: MuteSub; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."MuteSub" (created_at, updated_at, "subName", "userId") FROM stdin; \. -- -- Data for Name: NostrRelay; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."NostrRelay" (addr, created_at, updated_at) FROM stdin; \. -- -- Data for Name: OFAC; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."OFAC" (id, "startIP", "endIP", country, "countryCode") FROM stdin; \. -- -- Data for Name: Pin; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Pin" (id, created_at, updated_at, cron, timezone, "position") FROM stdin; \. -- -- Data for Name: PollOption; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PollOption" (id, created_at, updated_at, "itemId", option) FROM stdin; \. -- -- Data for Name: PollVote; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PollVote" (id, created_at, updated_at, "userId", "itemId", "pollOptionId") FROM stdin; \. -- -- Data for Name: PushSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."PushSubscription" (id, "userId", endpoint, p256dh, auth, created_at) FROM stdin; \. -- -- Data for Name: ReferralAct; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ReferralAct" (id, created_at, updated_at, "referrerId", "itemActId", msats) FROM stdin; \. -- -- Data for Name: Snl; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Snl" (id, live) FROM stdin; \. -- -- Data for Name: Streak; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Streak" (id, created_at, updated_at, "startedAt", "endedAt", "userId") FROM stdin; \. -- -- Data for Name: Sub; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Sub" (name, created_at, updated_at, "postTypes", "rankingType", "baseCost", "desc", "billedLastAt", "billingCost", "billingType", "parentName", path, status, "userId", "rewardsPct", "billingAutoRenew", "allowFreebies", moderated, "moderatedCount", "statusUpdatedAt", nsfw, "billPaidUntil") FROM stdin; libertarian 2023-12-10 05:21:58.325 2024-01-11 05:17:57.862 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N libertarian ACTIVE 19320 50 f t f 0 \N f \N builders 2023-12-05 22:08:22.389 2024-02-06 08:46:24.875 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N builders ACTIVE 19309 50 f t f 0 \N f \N lol 2024-02-16 19:57:07.18 2024-02-29 16:46:08.738 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N lol ACTIVE 20023 50 f t f 0 \N f \N events 2023-12-06 10:39:30.966 2024-01-11 10:39:35.156 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N events ACTIVE 18664 50 f t f 0 \N f \N jobs 2022-02-28 23:39:28.28 2022-02-28 23:39:28.28 {JOB} AUCTION 1 \N 2024-03-07 15:09:39.716 0 ONCE \N jobs ACTIVE 19465 50 f t f 0 \N f \N podcasts 2023-12-06 11:21:03.675 2024-02-13 12:01:09.135 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N podcasts ACTIVE 787 50 f t f 0 \N f \N espanol 2023-12-05 20:01:53.454 2024-01-10 20:01:56.33 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N espanol ACTIVE 4654 50 f t f 0 \N f \N DeepDive 2024-01-19 17:18:48.285 2024-02-24 17:18:49.516 {DISCUSSION,BOUNTY} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N deepdive ACTIVE 21037 50 f t f 0 \N f \N charts 2024-02-17 19:39:28.787 2024-02-20 01:44:19.216 {DISCUSSION} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N charts ACTIVE 19117 50 f t f 0 \N f \N NSFW_porn 2023-12-06 09:54:34.247 2024-01-11 09:54:35.947 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N nsfw_porn ACTIVE 14465 50 f t f 0 \N f \N mostly_harmless 2023-12-06 16:57:37.873 2024-02-06 23:34:27.293 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N mostly_harmless ACTIVE 7992 50 f t f 0 \N f \N oracle 2023-12-06 05:04:28.732 2024-02-12 22:37:27.616 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N oracle ACTIVE 6573 50 f t f 0 \N f \N bitcoin_beginners 2023-12-06 11:41:39.841 2024-02-20 10:53:41.259 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N bitcoin_beginners ACTIVE 15577 50 f t f 0 \N f \N conspiracy 2024-02-20 03:47:36.977 2024-02-29 16:45:50.473 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N conspiracy ACTIVE 5519 50 f t f 0 \N f \N polls 2023-12-09 00:49:13.078 2024-01-14 00:49:15.074 {POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N polls ACTIVE 16939 50 f t f 0 \N f \N art 2023-12-05 21:21:30.76 2023-12-09 13:13:51.942 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N art ACTIVE 20788 50 f t f 0 \N f \N health 2023-12-06 17:48:25.661 2024-01-11 05:16:46.441 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N health ACTIVE 17838 50 f t f 0 \N f \N Personal_Finance 2023-12-20 20:48:40.336 2024-02-25 15:02:36.272 {DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N personal_finance ACTIVE 19795 50 f t f 0 \N f \N history 2023-12-10 05:33:37.441 2024-01-11 05:21:26.926 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N history ACTIVE 9496 50 f t f 0 \N f \N crypto 2023-12-22 09:01:29.22 2024-02-28 12:24:04.881 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N crypto ACTIVE 2734 50 f t f 0 \N f \N bitcoin 2023-05-02 17:02:54.484 2024-02-19 19:01:48.482 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N bitcoin ACTIVE 19381 50 f t f 0 \N f \N radio 2023-12-21 03:12:57.286 2024-01-26 03:13:00.312 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N radio ACTIVE 17984 50 f t f 0 \N f \N lightning 2023-12-05 21:37:29.319 2024-02-18 21:50:06.659 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N lightning ACTIVE 19668 50 f t f 0 \N f \N tech 2023-06-12 21:51:26.202 2024-02-19 19:02:17.175 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N tech ACTIVE 11522 50 f t f 0 \N f \N nostr 2023-05-02 17:02:54.484 2024-02-19 19:02:48.535 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N nostr ACTIVE 21386 50 f t f 0 \N f \N Dogs_And_Cats 2023-12-05 19:30:43.717 2024-02-05 19:40:11.993 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N dogs_and_cats ACTIVE 9362 50 f t f 0 \N f \N meta 2023-06-20 18:04:02.34 2023-12-11 00:01:02.917 {LINK,DISCUSSION,POLL,BOUNTY} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N meta ACTIVE 18556 50 f t f 0 \N f \N AI 2023-12-06 00:09:29.572 2024-01-11 00:09:33.259 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ai ACTIVE 7389 50 f t f 0 \N f \N opensource 2023-12-09 21:32:34.92 2024-02-14 01:23:38.581 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N opensource ACTIVE 16276 50 f t f 0 \N f \N marketplace 2023-12-22 17:51:03.005 2024-01-27 17:51:04.242 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N marketplace ACTIVE 12808 50 f t f 0 \N f \N culture 2023-12-10 18:02:19.897 2024-02-15 18:02:21.985 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N culture ACTIVE 11561 50 f t f 0 \N f \N bitdevs 2023-12-15 02:25:20.168 2023-12-15 02:25:20.168 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N bitdevs ACTIVE 20619 50 f t f 0 \N f \N startups 2023-12-26 09:44:45.488 2024-03-01 09:44:47.829 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N startups ACTIVE 21026 50 f t f 0 \N f \N Fitness 2023-12-06 03:20:19.324 2024-01-11 03:20:21.413 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N fitness ACTIVE 21540 50 f t f 0 \N f \N econ 2023-12-05 20:20:49.338 2024-02-05 20:20:49.423 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N econ ACTIVE 7916 50 f t f 0 \N f \N B2B 2024-01-16 23:15:07.87 2024-02-16 23:15:07.921 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N b2b ACTIVE 5852 50 f t f 0 \N f \N Memes 2023-12-06 10:55:39.674 2024-01-11 10:55:43.264 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N memes ACTIVE 756 50 f t f 0 \N f \N Stacker_Sports 2023-12-05 21:29:03.724 2024-02-05 21:29:03.868 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N stacker_sports ACTIVE 10096 50 f t f 0 \N f \N news 2023-12-05 22:13:29.375 2024-02-17 08:08:27.918 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N news ACTIVE 21591 50 f t f 0 \N f \N hiphop 2023-12-09 21:34:57.439 2024-02-14 01:24:12.635 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N hiphop ACTIVE 21373 50 f t f 0 \N f \N privacy 2023-12-05 20:44:54.262 2024-02-20 01:42:10.461 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N privacy ACTIVE 9290 50 f t f 0 \N f \N retrogaming 2023-12-05 21:53:58.448 2024-02-20 05:18:26.337 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N retrogaming ACTIVE 20201 50 f t f 0 \N f \N Ask_SN 2023-12-06 18:56:58.345 2024-01-11 18:57:00.676 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ask_sn ACTIVE 8176 50 f t f 0 \N f \N christianity 2023-12-05 23:20:45.342 2024-02-06 00:38:28.396 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N christianity ACTIVE 929 50 f t f 0 \N f \N ecash 2024-01-07 16:14:53.442 2024-02-07 21:44:09.412 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ecash ACTIVE 17673 50 f t f 0 \N f \N AccessTribe 2024-02-08 07:14:53.962 2024-02-08 07:22:42.101 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N accesstribe ACTIVE 2711 50 f t f 0 \N f \N movies 2023-12-06 04:18:57.254 2024-02-11 04:18:59.636 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N movies ACTIVE 9418 50 f t f 0 \N f \N AMA 2023-12-08 16:15:51.937 2024-02-11 16:17:37.655 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ama ACTIVE 15386 50 f t f 0 \N f \N ru 2023-12-06 21:09:15.247 2024-02-11 21:09:16.92 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ru ACTIVE 1002 50 f t f 0 \N f \N Outdoors 2023-12-09 02:47:20.395 2024-02-18 04:42:00.46 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N outdoors ACTIVE 19890 50 f t f 0 \N f \N education 2023-12-08 23:23:52.692 2024-02-13 23:23:54.61 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N education ACTIVE 21342 50 f t f 0 \N f \N Design 2024-01-10 17:51:56.776 2024-02-25 09:16:08.249 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N design ACTIVE 669 50 f t f 0 \N f \N Photography 2023-12-09 09:09:42.934 2024-02-28 00:50:54.928 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N photography ACTIVE 13100 50 f t f 0 \N f \N chess 2023-12-08 23:15:34.632 2024-01-13 23:15:36.353 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N chess ACTIVE 19501 50 f t f 0 \N f \N litdevs 2023-12-15 02:14:50.836 2024-01-20 02:14:54.032 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N litdevs ACTIVE 16571 50 f t f 0 \N f \N BooksAndArticles 2023-12-05 19:33:35.92 2024-02-29 10:57:50.146 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N booksandarticles ACTIVE 16660 50 f t f 0 \N f \N Value4ValueEducation 2023-12-10 07:12:15.872 2024-02-15 07:12:18.271 {DISCUSSION,BOUNTY,LINK,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N value4valueeducation ACTIVE 981 50 f t f 0 \N f \N UFOs 2023-12-05 19:42:33.156 2024-02-05 19:42:33.172 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ufos ACTIVE 16410 50 f t f 0 \N f \N earth 2023-12-05 20:41:51.76 2024-02-05 20:41:52.501 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N earth ACTIVE 12738 50 f t f 0 \N f \N sanfrancisco 2023-12-09 21:45:15.437 2024-02-14 21:45:18.847 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N sanfrancisco ACTIVE 17147 50 f t f 0 \N f \N funny 2023-12-12 17:13:57.166 2024-01-17 17:13:59.004 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N funny ACTIVE 18351 50 f t f 0 \N f \N VirtualReality 2023-12-11 11:42:57.917 2024-01-16 11:43:00.039 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N virtualreality ACTIVE 19690 50 f t f 0 \N f \N japan 2023-12-11 18:15:16.113 2024-01-16 18:15:20.962 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N japan ACTIVE 10821 50 f t f 0 \N f \N Mining_Self_Hosting_FOSS 2023-12-06 13:44:41.982 2024-01-11 13:44:46.823 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N mining_self_hosting_foss ACTIVE 798 50 f t f 0 \N f \N Psychedelics 2023-12-18 01:05:00.178 2024-01-23 01:05:02.209 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N psychedelics ACTIVE 8954 50 f t f 0 \N f \N stocks 2023-12-11 18:46:34.47 2024-01-16 18:46:37.211 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N stocks ACTIVE 775 50 f t f 0 \N f \N Cannabis 2023-12-17 21:38:56.297 2024-02-19 16:28:38.658 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N cannabis ACTIVE 725 50 f t f 0 \N f \N security 2023-12-16 07:20:51.854 2024-02-28 12:24:56.855 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N security ACTIVE 6149 50 f t f 0 \N f \N AGORA 2023-12-23 09:19:33.931 2024-02-25 20:25:34.749 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N agora ACTIVE 3683 50 f t f 0 \N f \N PlebeianMarket 2023-12-15 11:21:03.031 2024-01-20 11:21:06.442 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N plebeianmarket ACTIVE 19759 50 f t f 0 \N f \N science 2023-12-06 00:24:45.115 2024-02-06 08:20:14.458 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N science ACTIVE 18526 50 f t f 0 \N f \N dotnet 2023-12-23 21:04:13.934 2024-01-04 06:29:59.938 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N dotnet ACTIVE 794 50 f t f 0 \N f \N DIY 2023-12-29 18:07:02.548 2023-12-29 18:07:02.548 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N diy ACTIVE 9796 50 f t f 0 \N f \N mempool 2024-01-02 01:11:41.097 2024-01-02 03:57:40.611 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N mempool ACTIVE 20245 50 f t f 0 \N f \N devs 2024-01-02 18:17:05.237 2024-01-02 23:53:54.884 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N devs ACTIVE 1723 50 f t f 0 \N f \N language_learning 2023-12-31 13:46:37.293 2024-02-05 13:46:39.33 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N language_learning ACTIVE 2256 50 f t f 0 \N f \N apps 2024-01-01 15:17:07.01 2024-02-06 15:17:10.38 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N apps ACTIVE 5694 50 f t f 0 \N f \N videos 2023-12-06 06:03:15.627 2024-02-11 06:03:18.702 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N videos ACTIVE 4391 50 f t f 0 \N f \N Music 2023-12-05 22:48:40.792 2024-02-24 09:11:28.22 {DISCUSSION,BOUNTY,POLL,LINK} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N music ACTIVE 21541 50 f t f 0 \N f \N ideasfromtheedge 2023-12-29 21:11:21.299 2024-02-29 21:11:21.812 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N ideasfromtheedge ACTIVE 19458 50 f t f 0 \N f \N NixOS 2023-12-28 23:15:49.455 2024-02-29 23:15:50.322 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N nixos ACTIVE 1006 50 f t f 0 \N f \N A_bit_of_Good_News 2024-01-01 18:44:22.389 2024-02-06 18:44:24.551 {LINK,DISCUSSION,BOUNTY,POLL} WOT 1 \N 2024-03-07 15:09:39.716 0 ONCE \N a_bit_of_good_news ACTIVE 20439 50 f t f 0 \N f \N \. -- -- Data for Name: SubAct; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."SubAct" (id, created_at, updated_at, "userId", "subName", msats, type) FROM stdin; 1194 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 802 builders 100000000 REVENUE 1266 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 9969 ru 100000000 REVENUE 2248 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 17944 art 1550 REVENUE 2616 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 21194 art 50000 REVENUE 1622 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 21238 podcasts 3150 REVENUE 3338 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 21248 radio 5000 REVENUE 592 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 11609 devs 68650 REVENUE 1947 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 21145 ideasfromtheedge 25250 REVENUE 2098 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 19044 culture 24180 REVENUE 3348 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 19910 Music 21000 REVENUE 768 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 2583 japan 18019 REVENUE 170 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 18311 bitdevs 10000 REVENUE 653 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 16348 Cannabis 1111950 REVENUE 2439 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 15577 stocks 93350 REVENUE 3010 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 19812 Music 87850 REVENUE 1937 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 9482 lightning 125300 REVENUE 2292 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 19810 startups 154700 REVENUE 1159 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 2390 Dogs_And_Cats 12636500 REVENUE 1701 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 701 earth 76400 REVENUE 3257 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 19857 Dogs_And_Cats 18600 REVENUE 3404 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 6653 oracle 8100 REVENUE 358 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 5160 Photography 69000 REVENUE 2217 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 1136 DIY 512600 REVENUE 359 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 21090 art 4000 REVENUE 3247 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 1881 science 5000 REVENUE 3215 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 6798 culture 1330 REVENUE 3409 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 10409 art 1250 REVENUE 307 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 16816 conspiracy 10000 REVENUE 2037 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 21271 Memes 351350 REVENUE 916 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 17710 polls 29197 REVENUE 1860 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 12946 A_bit_of_Good_News 12000 REVENUE 415 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 21103 christianity 5050 REVENUE 1885 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 10981 A_bit_of_Good_News 15248 REVENUE 1955 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 2748 Fitness 25395 REVENUE 2994 2024-02-18 04:42:00.46 2024-02-18 04:42:00.46 3213 Dogs_And_Cats 91250 BILLING 1985 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 964 AI 25400 REVENUE 2046 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 928 art 203900 REVENUE 3429 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12291 AI 24700 REVENUE 474 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 16505 funny 139811 REVENUE 855 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 4084 history 22250 REVENUE 847 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 1970 DIY 23650 REVENUE 1276 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 2065 sanfrancisco 6050 REVENUE 1549 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 17944 retrogaming 17917 REVENUE 2221 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 19346 Outdoors 158912 REVENUE 911 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 18828 Music 31200 REVENUE 2234 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 4102 devs 5500 REVENUE 1508 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 20826 videos 1025000 REVENUE 522 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 11561 DIY 4200 REVENUE 2533 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 20525 science 177750 REVENUE 1809 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 686 hiphop 89550 REVENUE 1576 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 21612 education 336100 REVENUE 473 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 2327 econ 44950 REVENUE 353 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 21292 health 15800 REVENUE 2782 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 11165 Dogs_And_Cats 5000 REVENUE 932 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 998 privacy 5650 REVENUE 1005 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 16966 AGORA 35400 REVENUE 2017 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 17001 litdevs 90949 REVENUE 920 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 15719 startups 82050 REVENUE 2185 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 19038 movies 104987 REVENUE 1711 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 20585 ideasfromtheedge 122113 REVENUE 2795 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 6515 stocks 28150 REVENUE 2182 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 10280 lightning 37250 REVENUE 2515 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 2162 bitdevs 5950 REVENUE 540 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 1647 startups 10500 REVENUE 1883 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 929 Memes 5000 REVENUE 2366 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 19976 earth 88450 REVENUE 696 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 1000 mempool 18664 REVENUE 208 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 7553 bitcoin_beginners 8050 REVENUE 3007 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 9026 hiphop 10600 REVENUE 1654 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 19638 econ 8100 REVENUE 2855 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 20340 bitcoin_beginners 228750 REVENUE 3168 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 19198 movies 4500 REVENUE 3022 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 20911 art 221400 REVENUE 1551 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 17275 ru 1288150 REVENUE 1468 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 1505 DIY 77350 REVENUE 1861 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 18815 health 18300 REVENUE 646 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 8472 lightning 11700 REVENUE 205 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 805 bitcoin_beginners 5000 REVENUE 1414 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 18678 history 13870 REVENUE 2278 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 21239 mempool 256903 REVENUE 237 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 7989 news 481900 REVENUE 2874 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 19852 Fitness 52550 REVENUE 2827 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 20744 news 86995 REVENUE 1340 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 21274 privacy 25250 REVENUE 289 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 18219 econ 1176300 REVENUE 2497 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 2162 Memes 12395 REVENUE 1295 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 10102 security 400906 REVENUE 2242 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 10690 retrogaming 31500 REVENUE 1481 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 2162 DIY 12400 REVENUE 2699 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 2749 dotnet 5000 REVENUE 1015 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 19292 Design 92150 REVENUE 2272 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 21329 crypto 50950 REVENUE 761 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 650 Outdoors 6050 REVENUE 471 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 12278 news 56700 REVENUE 762 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 1890 art 100000000 REVENUE 2713 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 15556 Stacker_Sports 298900 REVENUE 2733 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 19037 econ 41400 REVENUE 2004 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 19198 Design 107000 REVENUE 595 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 19796 bitdevs 62652 REVENUE 2833 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 15762 Dogs_And_Cats 83750 REVENUE 2186 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 3347 videos 122868 REVENUE 1367 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 2514 Psychedelics 546665 REVENUE 1455 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 9159 ideasfromtheedge 299300 REVENUE 86 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 2029 econ 46550 REVENUE 1329 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 21589 health 23669 REVENUE 529 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 21614 econ 55000 REVENUE 1467 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 17171 retrogaming 5000 REVENUE 723 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 9261 A_bit_of_Good_News 4050 REVENUE 852 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 11678 earth 85000 REVENUE 276 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 21036 bitdevs 14245 REVENUE 2541 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 19158 security 3050 REVENUE 2344 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 14037 crypto 84800 REVENUE 3202 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 713 christianity 32900 REVENUE 2898 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 5171 hiphop 7500 REVENUE 2641 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 18291 bitcoin_beginners 50150 REVENUE 2309 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 1173 health 3643 REVENUE 2085 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 20452 Cannabis 176100 REVENUE 1674 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 7766 bitcoin_beginners 4000 REVENUE 989 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 18640 builders 51550 REVENUE 1078 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1602 Cannabis 5000 REVENUE 1858 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 21424 stocks 55000 REVENUE 1761 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 624 health 41790 REVENUE 428 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 5427 japan 138900 REVENUE 3293 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 14260 hiphop 5250 REVENUE 576 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 14791 NixOS 100000000 REVENUE 2549 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 19381 polls 9000 REVENUE 311 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 7960 bitcoin_beginners 129050 REVENUE 1911 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 13406 crypto 93300 REVENUE 1693 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 1720 espanol 100500 REVENUE 2306 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 2326 security 1196475 REVENUE 3261 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 9418 Stacker_Sports 63651 REVENUE 639 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 5637 builders 78550 REVENUE 736 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 6419 A_bit_of_Good_News 18150 REVENUE 1805 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21042 builders 19750 REVENUE 605 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 5703 econ 911300 REVENUE 135 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 14168 NSFW_porn 5500 REVENUE 1341 2024-01-05 19:31:32.376 2024-01-05 19:31:32.376 630 AI 53350 BILLING 3268 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 15526 AI 64750 REVENUE 1530 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 2543 ru 43950 REVENUE 1519 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 17095 Dogs_And_Cats 33845 REVENUE 3408 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 6471 Music 72948 REVENUE 3190 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 992 opensource 68092 REVENUE 3153 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 776 lightning 25872 REVENUE 1813 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 2844 mempool 100000000 REVENUE 35 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 12951 christianity 96200 REVENUE 1932 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 21019 education 65484 REVENUE 931 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 5661 lightning 52000 REVENUE 1618 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20436 devs 5000 REVENUE 1589 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 876 builders 19220 REVENUE 1035 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 19546 oracle 100000000 REVENUE 1871 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 20704 earth 3200 REVENUE 444 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 5794 radio 91950 REVENUE 604 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 7674 Memes 151750 REVENUE 502 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19777 earth 36350 REVENUE 1055 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21369 DeepDive 309800 REVENUE 2132 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 10608 lightning 203250 REVENUE 484 2023-12-17 21:38:56.297 2023-12-17 21:38:56.297 16532 health 50000 BILLING 2467 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 18306 bitdevs 79622 REVENUE 1027 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 20433 videos 138450 REVENUE 46 2023-12-06 11:41:39.841 2023-12-06 11:41:39.841 16638 bitcoin_beginners 126200 BILLING 882 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19506 Photography 39000 REVENUE 1217 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 19570 NixOS 101700 REVENUE 980 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 19668 builders 247309 REVENUE 322 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 1273 Stacker_Sports 1700 REVENUE 1823 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 692 chess 512090 REVENUE 831 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 9167 econ 600900 REVENUE 2442 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 21067 education 243200 REVENUE 1629 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 20669 espanol 10631050 REVENUE 990 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 11430 Design 27100 REVENUE 867 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 12808 art 22050 REVENUE 884 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 20881 crypto 217050 REVENUE 2310 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 21614 mostly_harmless 248050 REVENUE 2636 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 21485 Stacker_Sports 20450 REVENUE 1876 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 20185 apps 164181 REVENUE 813 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 14465 earth 47700 REVENUE 934 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 5646 history 16550 REVENUE 3283 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 21600 podcasts 46300 REVENUE 1997 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 974 charts 32350 REVENUE 898 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 12160 NSFW_porn 59700 REVENUE 2711 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 11430 security 50100 REVENUE 1347 2024-01-05 21:29:04.71 2024-01-05 21:29:04.71 20225 art 7100 BILLING 1503 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 699 art 100000000 REVENUE 1709 2024-01-13 21:55:14.474 2024-01-13 21:55:14.474 20969 bitdevs 3550 BILLING 2092 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 19154 Personal_Finance 18200 REVENUE 2294 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 14202 lightning 156000 REVENUE 3411 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12222 builders 5550 REVENUE 862 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 15075 hiphop 10100 REVENUE 1630 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 882 bitcoin_beginners 52100 REVENUE 2665 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 696 econ 515300 REVENUE 1122 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 16542 UFOs 81850 REVENUE 2437 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 4570 econ 58950 REVENUE 2909 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 14280 mempool 1000000000 REVENUE 1063 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 7983 Cannabis 54650 REVENUE 542 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 9426 podcasts 160600 REVENUE 1032 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 19759 art 66000 REVENUE 3201 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 1628 Music 162100 REVENUE 890 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 12072 Ask_SN 1450 REVENUE 2877 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 14959 libertarian 1100 REVENUE 1715 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 1480 litdevs 33418 REVENUE 3321 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 20490 NixOS 38555 REVENUE 1875 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 859 oracle 40050 REVENUE 161 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 1692 health 93450 REVENUE 1049 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 1394 Design 76450 REVENUE 3399 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 18170 podcasts 15500 REVENUE 3243 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 21116 Music 78892 REVENUE 346 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 3686 history 122800 REVENUE 2422 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 20781 culture 83500 REVENUE 3374 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 10981 AGORA 48750 REVENUE 2322 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 14037 health 1050 REVENUE 1018 2023-12-29 21:11:21.299 2023-12-29 21:11:21.299 17041 Memes 1157050 BILLING 901 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19398 culture 5526950 REVENUE 787 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 2196 Dogs_And_Cats 10200 REVENUE 1620 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 679 movies 406900 REVENUE 1002 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 977 retrogaming 10500 REVENUE 366 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 12738 science 4750 REVENUE 687 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 15474 hiphop 157050 REVENUE 2776 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 15139 Design 25500 REVENUE 2371 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 21437 security 1055500 REVENUE 1128 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 4102 Mining_Self_Hosting_FOSS 73050 REVENUE 824 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 2674 Outdoors 10000 REVENUE 2034 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 711 AI 176600 REVENUE 1373 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 4048 earth 10000 REVENUE 2280 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 1454 mostly_harmless 209300 REVENUE 1719 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 3506 AMA 5395 REVENUE 2191 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 21532 science 139675 REVENUE 738 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 21320 privacy 195700 REVENUE 291 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 18524 AGORA 1050 REVENUE 680 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 876 japan 8150 REVENUE 2331 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 19335 AccessTribe 5000 REVENUE 136 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 644 movies 1488900 REVENUE 61 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 1030 startups 132800 REVENUE 2070 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 697 podcasts 9000 REVENUE 833 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 5519 UFOs 55700 REVENUE 1162 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 18673 japan 1050 REVENUE 2772 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 7746 lightning 167350 REVENUE 350 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 11153 crypto 42450 REVENUE 223 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 21485 sanfrancisco 113700 REVENUE 822 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 750 education 80100 REVENUE 1655 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 902 libertarian 17000 REVENUE 1393 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 19322 Value4ValueEducation 75250 REVENUE 1518 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 19121 BooksAndArticles 5000 REVENUE 1834 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 16633 art 15700 REVENUE 3137 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 19662 Dogs_And_Cats 4900 REVENUE 2709 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 14939 videos 6500 REVENUE 2500 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 15088 news 314700 REVENUE 3349 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 19471 Music 848250 REVENUE 301 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 9333 Photography 100000000 REVENUE 693 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 14515 health 63500 REVENUE 744 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19911 science 21692 REVENUE 2585 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 1803 builders 5000 REVENUE 1003 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 14909 science 6050 REVENUE 2659 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 16680 builders 106550 REVENUE 2572 2024-02-05 21:53:58.685 2024-02-05 21:53:58.685 6419 culture 7400 BILLING 3468 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 2528 art 3000 REVENUE 2916 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 14258 podcasts 37722 REVENUE 2456 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 18526 Cannabis 12150 REVENUE 3001 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 17082 builders 5000 REVENUE 2627 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 21356 Design 192200 REVENUE 258 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 18177 movies 731404 REVENUE 670 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 11288 AGORA 118050 REVENUE 129 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 6594 builders 145499 REVENUE 627 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 16998 history 16514 REVENUE 2386 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 9920 podcasts 100000000 REVENUE 3419 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 20218 movies 79799 REVENUE 1292 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 18409 news 49050 REVENUE 3263 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 10698 Photography 21350 REVENUE 2580 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 9367 Design 163250 REVENUE 3353 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 624 bitcoin_beginners 11100 REVENUE 32 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 16998 japan 15250 REVENUE 1084 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 10608 videos 13050 REVENUE 2640 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 21014 AGORA 9300 REVENUE 95 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 15624 marketplace 91500 REVENUE 193 2023-12-10 07:12:15.872 2023-12-10 07:12:15.872 20906 BooksAndArticles 14500 BILLING 1684 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 16848 AccessTribe 145300 REVENUE 2135 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 976 hiphop 51250 REVENUE 3253 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 18690 earth 78550 REVENUE 2707 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 12277 builders 14600 REVENUE 1304 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 894 earth 31100 REVENUE 1615 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20973 hiphop 1345725 REVENUE 2067 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 21418 stocks 224600 REVENUE 2732 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 960 art 13800 REVENUE 2375 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 721 A_bit_of_Good_News 6330 REVENUE 409 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 15890 opensource 100000000 REVENUE 3439 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 19996 AMA 1066027 REVENUE 2264 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 13132 AGORA 207400 REVENUE 470 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 10638 econ 27950 REVENUE 1849 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 1733 videos 72400 REVENUE 766 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 2681 libertarian 6050 REVENUE 117 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 21057 culture 12612750 REVENUE 3154 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 9482 hiphop 219850 REVENUE 1126 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 951 privacy 249350 REVENUE 900 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 9450 radio 3500 REVENUE 1008 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 17592 culture 100000000 REVENUE 1650 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 5961 news 251300 REVENUE 3462 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 15200 espanol 158550 REVENUE 3242 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 7119 econ 266250 REVENUE 62 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 18727 espanol 181800 REVENUE 3170 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 5129 security 104500 REVENUE 3056 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 4692 earth 5000 REVENUE 3303 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 21547 crypto 56500 REVENUE 312 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 17602 Cannabis 171000 REVENUE 448 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 18528 news 17550 REVENUE 2887 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 20840 mostly_harmless 100000000 REVENUE 12 2023-12-05 22:08:22.389 2023-12-05 22:08:22.389 16282 DIY 25000 BILLING 2446 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 11956 UFOs 8650 REVENUE 2556 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 20168 AGORA 10500 REVENUE 1752 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 1195 AGORA 44150 REVENUE 1640 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 18745 Ask_SN 13150 REVENUE 1586 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 14515 Photography 1064184 REVENUE 1046 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21522 science 263100 REVENUE 551 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 8168 Personal_Finance 131500 REVENUE 1385 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 7119 Dogs_And_Cats 554550 REVENUE 3335 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 17523 ecash 3600 REVENUE 2973 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 2537 privacy 14800 REVENUE 2802 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 12821 Photography 423100 REVENUE 2912 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20623 Photography 100000000 REVENUE 1447 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 12606 science 10000 REVENUE 3244 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 2514 DIY 21900 REVENUE 1927 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 1515 espanol 183150 REVENUE 2179 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 21218 NixOS 3950 REVENUE 524 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19812 AMA 75072 REVENUE 2919 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 17172 Photography 1050 REVENUE 870 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 12097 bitdevs 19476 REVENUE 1114 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 8505 Outdoors 5500 REVENUE 1415 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 4650 Stacker_Sports 10500 REVENUE 1941 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 617 lol 297100 REVENUE 460 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 19198 news 501200 REVENUE 81 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 9084 Outdoors 81600 REVENUE 1944 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 20655 history 96250 REVENUE 2336 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 19103 econ 253250 REVENUE 2516 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 19021 oracle 1050 REVENUE 2717 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 5904 hiphop 7500 REVENUE 3391 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 20837 conspiracy 12655250 REVENUE 2295 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 1136 Stacker_Sports 17750 REVENUE 354 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 3371 Outdoors 26500 REVENUE 3307 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 21248 art 35250 REVENUE 150 2023-12-09 21:32:34.92 2023-12-09 21:32:34.92 6136 videos 25050 BILLING 1501 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 20022 christianity 126450 REVENUE 1150 2024-01-01 15:17:07.01 2024-01-01 15:17:07.01 2681 espanol 115000 BILLING 2651 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 10818 news 375250 REVENUE 776 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 1609 culture 54200 REVENUE 1382 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 21091 ru 14290 REVENUE 2239 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 15474 Outdoors 8850 REVENUE 2670 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 6058 BooksAndArticles 17700 REVENUE 1857 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 19103 NSFW_porn 21650 REVENUE 255 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 1489 art 114100 REVENUE 3476 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 1094 econ 329350 REVENUE 2562 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 18154 Photography 200900 REVENUE 152 2023-12-09 21:45:15.437 2023-12-09 21:45:15.437 19888 Personal_Finance 36500 BILLING 861 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 5160 AMA 26750 REVENUE 1580 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 4570 bitcoin_beginners 4000 REVENUE 2725 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 18556 AGORA 23550 REVENUE 842 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 16406 security 678897 REVENUE 1585 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 2609 NixOS 210111 REVENUE 3206 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 2614 retrogaming 659000 REVENUE 2303 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 11621 security 108900 REVENUE 2377 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 9026 charts 5000 REVENUE 2260 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 14280 lightning 16050 REVENUE 972 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 1628 Design 569600 REVENUE 1355 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 15226 mostly_harmless 29450 REVENUE 1613 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 11698 ecash 52850 REVENUE 2779 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 18468 oracle 5742600 REVENUE 191 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 9099 culture 5750 REVENUE 99 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 18815 BooksAndArticles 205200 REVENUE 1787 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 749 Photography 218700 REVENUE 1574 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 18862 art 5101650 REVENUE 91 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 18357 bitcoin_beginners 81450 REVENUE 3427 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12959 Design 188550 REVENUE 2054 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 9150 Stacker_Sports 70100 REVENUE 488 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 11829 Memes 35300 REVENUE 2267 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 12024 bitcoin_beginners 7700 REVENUE 3002 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 8729 science 92800 REVENUE 2096 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 21578 news 320630 REVENUE 2265 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 4633 Music 70550 REVENUE 2529 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 17707 conspiracy 32350 REVENUE 2634 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 17592 NixOS 1050 REVENUE 679 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 18008 privacy 68200 REVENUE 1554 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 9820 privacy 573795 REVENUE 1282 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 627 espanol 2107350 REVENUE 1592 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 715 earth 15000 REVENUE 922 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19995 chess 313330 REVENUE 2775 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 17365 videos 159900 REVENUE 846 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 19759 libertarian 348135 REVENUE 1314 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 685 art 12581460 REVENUE 2584 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 18945 health 54780 REVENUE 678 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 18816 earth 184907 REVENUE 1714 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 13544 econ 199750 REVENUE 1906 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 21492 sanfrancisco 96600 REVENUE 2357 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 18314 culture 93850 REVENUE 1755 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 2459 language_learning 50000 REVENUE 2121 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 18387 charts 50250 REVENUE 2692 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 2224 Mining_Self_Hosting_FOSS 50000 REVENUE 1017 2023-12-29 18:07:02.548 2023-12-29 18:07:02.548 726 builders 239950 BILLING 3256 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 5293 lightning 100000000 REVENUE 1966 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 5057 BooksAndArticles 649150 REVENUE 1596 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 21138 Personal_Finance 3330 REVENUE 2202 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 2328 bitcoin_beginners 5550 REVENUE 2913 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 5171 oracle 12100 REVENUE 298 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 15732 oracle 157450 REVENUE 296 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19661 builders 365925 REVENUE 2274 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 2502 DIY 100000000 REVENUE 987 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 994 health 7050 REVENUE 1477 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 18409 Memes 349550 REVENUE 1717 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 2741 Fitness 100000000 REVENUE 557 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 5427 Mining_Self_Hosting_FOSS 100200 REVENUE 964 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 2061 bitdevs 105500 REVENUE 2246 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 964 Cannabis 324050 REVENUE 2393 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 16830 Value4ValueEducation 13800 REVENUE 3346 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 21541 podcasts 130150 REVENUE 788 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 20546 Music 17650 REVENUE 1287 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 19043 art 3750 REVENUE 2252 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 628 japan 15250 REVENUE 434 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 20218 lightning 31790 REVENUE 107 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 19289 bitcoin_beginners 20150 REVENUE 218 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 20730 NixOS 150500 REVENUE 2158 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 13622 news 17850 REVENUE 2394 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 19910 startups 39300 REVENUE 1992 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 20701 Stacker_Sports 79950 REVENUE 489 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19911 Photography 5000 REVENUE 1945 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 5776 events 238295 REVENUE 2029 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 7673 podcasts 11900 REVENUE 2204 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 21037 lightning 291279 REVENUE 1584 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 1401 privacy 190950 REVENUE 28 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 16706 podcasts 90000 REVENUE 2935 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 2639 history 353000 REVENUE 380 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 17693 education 473050 REVENUE 1394 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 19375 libertarian 24400 REVENUE 355 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 811 Mining_Self_Hosting_FOSS 28550 REVENUE 53 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 16670 apps 115000 REVENUE 1137 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 1394 lightning 111950 REVENUE 2266 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 7960 podcasts 52870 REVENUE 2328 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 20993 science 10100 REVENUE 76 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 1609 AMA 10500 REVENUE 797 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 2013 libertarian 9000 REVENUE 2316 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 3353 health 136600 REVENUE 2282 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 7989 econ 1053369 REVENUE 6 2023-12-05 20:41:51.76 2023-12-05 20:41:51.76 10549 Music 63294 BILLING 1053 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 20062 podcasts 10516 REVENUE 2245 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 766 history 17650 REVENUE 2991 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 18529 Photography 55000 REVENUE 3200 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 20185 sanfrancisco 19500 REVENUE 197 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 11862 bitdevs 36900 REVENUE 2435 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 1047 videos 73550 REVENUE 3383 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 6688 Dogs_And_Cats 819850 REVENUE 493 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 659 earth 8500 REVENUE 1413 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 1806 history 220480 REVENUE 1745 2024-01-14 08:24:19.238 2024-01-14 08:24:19.238 16848 movies 18550 BILLING 1139 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 19044 crypto 128000 REVENUE 2825 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 21072 polls 5000 REVENUE 48 2023-12-06 16:57:37.873 2023-12-06 16:57:37.873 12609 AGORA 30400 BILLING 338 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 8926 history 627200 REVENUE 3470 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 20514 opensource 6450 REVENUE 3460 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 11038 privacy 12530 REVENUE 2283 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 2776 art 9700 REVENUE 1882 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 20775 Photography 46450 REVENUE 3192 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 13574 Cannabis 122050 REVENUE 2547 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 10934 AGORA 2550 REVENUE 482 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 20254 hiphop 13050 REVENUE 2063 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 18736 Photography 10000 REVENUE 2945 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 1426 Memes 57900 REVENUE 3406 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 4831 health 5000 REVENUE 156 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 18816 science 197900 REVENUE 132 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 19286 libertarian 8000 REVENUE 3479 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 20781 lightning 212341 REVENUE 439 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 17682 ru 4050 REVENUE 558 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 20424 oracle 225550 REVENUE 1738 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 17953 UFOs 54150 REVENUE 913 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19938 bitcoin_beginners 26350 REVENUE 2313 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 9275 Mining_Self_Hosting_FOSS 96500 REVENUE 1930 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 13361 art 14950 REVENUE 973 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 19507 NixOS 26210250 REVENUE 2011 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 18076 NSFW_porn 1550 REVENUE 2116 2024-01-24 14:43:35.305 2024-01-24 14:43:35.305 15617 bitcoin_beginners 12918300 BILLING 2021 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 21401 AMA 5050 REVENUE 613 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 1008 earth 59100 REVENUE 1940 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 18306 opensource 30850 REVENUE 1319 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 787 security 62100 REVENUE 2955 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 10096 security 94000 REVENUE 1914 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 16354 radio 193250 REVENUE 2535 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 18731 Music 211800 REVENUE 278 2023-12-12 17:13:57.166 2023-12-12 17:13:57.166 12102 crypto 19700 BILLING 760 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 19981 UFOs 23350 REVENUE 1999 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 20433 videos 214600 REVENUE 1511 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 14168 mostly_harmless 60850 REVENUE 2748 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 12278 econ 1000000000 REVENUE 618 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 17064 ecash 121150 REVENUE 417 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 9084 education 58900 REVENUE 2951 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 14260 science 5050 REVENUE 1599 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 5942 hiphop 69294 REVENUE 2685 2024-02-08 19:35:12.403 2024-02-08 19:35:12.403 20756 privacy 84600 BILLING 3341 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 18675 Photography 77700 REVENUE 1356 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 6383 science 5100 REVENUE 257 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 11038 podcasts 50500 REVENUE 711 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 7659 stocks 22500 REVENUE 1026 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 18731 science 41950 REVENUE 1657 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 20133 AGORA 20150 REVENUE 249 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 685 privacy 5000 REVENUE 953 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 11714 mostly_harmless 27550 REVENUE 3223 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 8916 devs 100550 REVENUE 1127 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 15226 BooksAndArticles 270850 REVENUE 1255 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 13527 Personal_Finance 91100 REVENUE 1934 2024-01-20 00:24:53.658 2024-01-20 00:24:53.658 12808 christianity 55300 BILLING 288 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 1237 Stacker_Sports 50000 REVENUE 2404 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 21048 mostly_harmless 105350 REVENUE 2148 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 18351 education 33800 REVENUE 3219 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 20889 A_bit_of_Good_News 5000 REVENUE 68 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 1769 earth 19450 REVENUE 944 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 6229 health 578100 REVENUE 2315 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 11038 hiphop 44800 REVENUE 2822 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 21047 earth 50100 REVENUE 3300 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 17171 bitdevs 52150 REVENUE 2979 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 18225 retrogaming 134850 REVENUE 1649 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 13398 podcasts 5200 REVENUE 2168 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 2042 Fitness 17750 REVENUE 2117 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 2614 BooksAndArticles 58050 REVENUE 2918 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 13398 art 42350 REVENUE 1424 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 16145 Ask_SN 5000 REVENUE 393 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 6003 news 114400 REVENUE 2436 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 11897 opensource 10830 REVENUE 2921 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 19417 bitdevs 30111 REVENUE 1399 2024-01-06 12:43:07.704 2024-01-06 12:43:07.704 20185 videos 181700 BILLING 402 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1490 AMA 26650 REVENUE 741 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19583 Stacker_Sports 55900 REVENUE 2090 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 17526 Design 71950 REVENUE 1740 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 1051 econ 50000 REVENUE 666 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 20182 litdevs 67200 REVENUE 3241 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 2620 UFOs 251600 REVENUE 715 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 20972 Outdoors 5000 REVENUE 158 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 4984 privacy 10000 REVENUE 1822 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 18919 health 108540 REVENUE 3221 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 19322 videos 3000 REVENUE 2890 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 20243 Music 50500 REVENUE 1499 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 21131 funny 27150 REVENUE 1943 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 4313 libertarian 37050 REVENUE 3199 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 658 history 57200 REVENUE 357 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 4225 ru 58298 REVENUE 2203 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 13921 news 27150 REVENUE 1547 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 7818 Stacker_Sports 23450 REVENUE 1643 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 20987 crypto 266880 REVENUE 1203 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 20179 privacy 1186350 REVENUE 1877 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 15103 NSFW_porn 194000 REVENUE 2164 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 1008 bitdevs 2100 REVENUE 1874 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 19910 Cannabis 5000 REVENUE 1544 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 8796 AMA 23850 REVENUE 1189 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 16789 art 5000 REVENUE 654 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 9084 Memes 27100 REVENUE 1164 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 4487 news 5000 REVENUE 2033 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 18675 AMA 93649 REVENUE 1249 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 11609 history 151100 REVENUE 1571 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 19243 opensource 16050 REVENUE 2657 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 16556 retrogaming 15800 REVENUE 778 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 18330 art 27250 REVENUE 3103 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21116 libertarian 23900 REVENUE 3446 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 21091 chess 10100 REVENUE 1733 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 657 bitcoin_beginners 34550 REVENUE 765 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 17944 videos 21300 REVENUE 546 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 15139 earth 450400 REVENUE 2537 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 9351 culture 100000000 REVENUE 844 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 937 devs 55000 REVENUE 1567 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 21048 polls 96964 REVENUE 2496 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 5500 Music 2250 REVENUE 1366 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 2203 Memes 98500 REVENUE 1747 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 11862 art 76550 REVENUE 3426 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 1626 lightning 52700 REVENUE 3204 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 18941 Ask_SN 14392 REVENUE 1575 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 2326 news 25500 REVENUE 938 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 11750 polls 571900 REVENUE 808 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 20306 bitdevs 55000 REVENUE 41 2023-12-06 06:03:15.627 2023-12-06 06:03:15.627 19381 Photography 28900 BILLING 598 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 15690 radio 2150 REVENUE 3176 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 5128 bitdevs 83776 REVENUE 2723 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 19267 security 93894 REVENUE 2172 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 9335 lightning 158550 REVENUE 1106 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1726 art 3000 REVENUE 648 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 15409 ideasfromtheedge 53000 REVENUE 519 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 21159 Fitness 323750 REVENUE 559 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 8729 crypto 5000 REVENUE 3060 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 11288 polls 50000 REVENUE 1831 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 16680 culture 143550 REVENUE 178 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 704 security 124800 REVENUE 1843 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 9330 bitcoin_beginners 6200 REVENUE 1956 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 20087 BooksAndArticles 128200 REVENUE 668 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 1584 Cannabis 56550 REVENUE 564 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 18008 NixOS 12600 REVENUE 1856 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 21271 security 1550 REVENUE 891 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 14515 Psychedelics 16650 REVENUE 1993 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 16301 lightning 26000 REVENUE 1639 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 7773 ideasfromtheedge 83529 REVENUE 732 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 16680 videos 13157 REVENUE 2262 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 18372 BooksAndArticles 14600 REVENUE 1182 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1814 devs 46009 REVENUE 3319 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 18704 stocks 11000 REVENUE 629 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 8059 libertarian 25600 REVENUE 1256 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 859 opensource 216900 REVENUE 814 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 1316 Dogs_And_Cats 4950 REVENUE 1962 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 1603 Fitness 13150 REVENUE 1409 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 8380 Stacker_Sports 12550 REVENUE 1546 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 17148 Dogs_And_Cats 102100 REVENUE 2736 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 618 AMA 17500 REVENUE 975 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 20109 news 20100 REVENUE 1507 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 717 Music 12997200 REVENUE 3480 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 2502 BooksAndArticles 102850 REVENUE 1121 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 21357 opensource 30800 REVENUE 112 2023-12-08 23:15:34.632 2023-12-08 23:15:34.632 2065 ru 135200 BILLING 651 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 715 Music 11150 REVENUE 2507 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 11527 bitdevs 1050 REVENUE 352 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 2056 Photography 53250 REVENUE 1716 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 2402 builders 37050 REVENUE 2803 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 807 startups 10550 REVENUE 3328 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 16357 ecash 139700 REVENUE 2760 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 15408 AI 125950 REVENUE 2587 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 11609 Dogs_And_Cats 7600 REVENUE 3191 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 19863 AGORA 1631380 REVENUE 1489 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 20106 events 503350 REVENUE 1352 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 21148 BooksAndArticles 12593700 REVENUE 3013 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 1474 Photography 25750 REVENUE 3030 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 10719 christianity 256400 REVENUE 1579 2024-01-10 17:51:56.776 2024-01-10 17:51:56.776 2459 ecash 25850 BILLING 1886 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 18208 startups 172750 REVENUE 1656 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 664 Dogs_And_Cats 7000 REVENUE 1028 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 2734 retrogaming 8000 REVENUE 308 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 5757 ecash 147850 REVENUE 2677 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 20680 bitcoin_beginners 393300 REVENUE 126 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 1823 BooksAndArticles 43077 REVENUE 2678 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 20599 polls 196850 REVENUE 2256 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 10056 Dogs_And_Cats 739900 REVENUE 1226 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 2196 libertarian 156550 REVENUE 259 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 831 history 54050 REVENUE 2373 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 20970 culture 13650 REVENUE 331 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 14258 earth 44300 REVENUE 820 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 897 podcasts 424150 REVENUE 479 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21051 devs 150400 REVENUE 106 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 3360 Memes 13300 REVENUE 3405 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 18815 christianity 17650 REVENUE 2971 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 16329 DIY 225930 REVENUE 3120 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 20980 bitdevs 26450 REVENUE 3078 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 20280 bitcoin_beginners 24700 REVENUE 1234 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 12951 Fitness 16900 REVENUE 2370 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 11898 devs 5000 REVENUE 459 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 6360 A_bit_of_Good_News 100000000 REVENUE 1800 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 9354 privacy 16850 REVENUE 2980 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 691 AI 420150 REVENUE 1905 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 20616 security 90050 REVENUE 684 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 12220 Dogs_And_Cats 105700 REVENUE 3357 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 766 BooksAndArticles 213428 REVENUE 2235 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 20084 history 34850 REVENUE 407 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 16289 ecash 56650 REVENUE 594 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 10112 hiphop 2500 REVENUE 2483 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 646 BooksAndArticles 63000 REVENUE 1402 2024-01-07 04:52:27.308 2024-01-07 04:52:27.308 16348 ecash 100000000 BILLING 1267 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 20987 Music 45043 REVENUE 1936 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 20511 security 1029525 REVENUE 2147 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 15336 news 187050 REVENUE 3122 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 15858 news 156050 REVENUE 166 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 9332 events 100000000 REVENUE 3229 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 761 Personal_Finance 15650 REVENUE 782 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 9348 Mining_Self_Hosting_FOSS 5500 REVENUE 1036 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 20218 history 176150 REVENUE 1260 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 9809 hiphop 52600 REVENUE 796 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 11417 econ 9200 REVENUE 2259 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 21391 DIY 21699 REVENUE 859 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 4650 retrogaming 15850 REVENUE 2115 2024-01-24 13:51:54.735 2024-01-24 13:51:54.735 18626 earth 10000 BILLING 1838 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 16347 econ 189700 REVENUE 889 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 17227 podcasts 16150 REVENUE 262 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 16250 AMA 5400 REVENUE 1798 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21437 education 17650 REVENUE 1557 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 6777 econ 1050 REVENUE 2863 2024-02-14 01:24:12.635 2024-02-14 01:24:12.635 5725 AI 10000 BILLING 1057 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 6765 builders 551200 REVENUE 100 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 18618 bitdevs 243345 REVENUE 2470 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 649 BooksAndArticles 26550 REVENUE 1542 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 1094 econ 100000000 REVENUE 1680 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 3409 podcasts 130150 REVENUE 587 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 21386 A_bit_of_Good_News 168550 REVENUE 3264 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 10280 Ask_SN 38950 REVENUE 984 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 13169 econ 29041 REVENUE 2269 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 5557 A_bit_of_Good_News 177250 REVENUE 692 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 17707 lightning 100000000 REVENUE 73 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 21275 builders 10000 REVENUE 2801 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 13132 polls 13500 REVENUE 119 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 13076 charts 32250 REVENUE 480 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 18271 Photography 89154 REVENUE 638 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 21275 earth 32700 REVENUE 2275 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 14795 Design 64600 REVENUE 429 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 15978 earth 3150 REVENUE 33 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 910 opensource 30700 REVENUE 2891 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 14906 Mining_Self_Hosting_FOSS 46550 REVENUE 1951 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 18909 devs 10550 REVENUE 2505 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 7903 stocks 14555 REVENUE 1965 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 803 NixOS 25350 REVENUE 739 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 20208 Personal_Finance 70100 REVENUE 1135 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 20353 Cannabis 12450 REVENUE 2332 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 5809 culture 127950 REVENUE 1702 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 21421 econ 38750 REVENUE 825 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 14663 earth 19500 REVENUE 3388 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 10291 Cannabis 1550 REVENUE 3334 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 19352 Stacker_Sports 386550 REVENUE 580 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 664 crypto 12000 REVENUE 2710 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 624 security 211850 REVENUE 1272 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 11298 Photography 261852 REVENUE 2928 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 18402 Ask_SN 26400 REVENUE 2726 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 19507 Dogs_And_Cats 21750 REVENUE 1775 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 11866 AGORA 82255 REVENUE 1368 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 19154 NixOS 207134 REVENUE 2669 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 21058 ideasfromtheedge 89950 REVENUE 1616 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 17976 AccessTribe 1111999 REVENUE 2719 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 20340 Personal_Finance 49000 REVENUE 202 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 20924 Stacker_Sports 66850 REVENUE 1274 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 16665 hiphop 16800 REVENUE 2253 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 18264 crypto 13500 REVENUE 927 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 11091 art 32450 REVENUE 877 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 21062 AGORA 825950 REVENUE 1449 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 16301 mostly_harmless 53550 REVENUE 1158 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 19524 builders 114800 REVENUE 146 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 21600 oracle 88650 REVENUE 755 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 20231 culture 150500 REVENUE 2281 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 18663 Mining_Self_Hosting_FOSS 140600 REVENUE 1681 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 19910 AGORA 616550 REVENUE 2970 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 10979 education 31250 REVENUE 2416 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 18704 Personal_Finance 170050 REVENUE 3454 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 19732 Music 100000000 REVENUE 2304 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 4027 AI 161400 REVENUE 3305 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 6499 BooksAndArticles 1432 REVENUE 835 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 16354 apps 80850 REVENUE 3332 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 20302 art 49650 REVENUE 532 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 977 earth 16550 REVENUE 1744 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 11590 BooksAndArticles 514850 REVENUE 1149 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 7891 Memes 153450 REVENUE 3089 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 20776 AGORA 82450 REVENUE 13 2023-12-05 22:13:29.375 2023-12-05 22:13:29.375 21589 Outdoors 543400 BILLING 1418 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 15588 Dogs_And_Cats 109150 REVENUE 2785 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 12218 Dogs_And_Cats 198550 REVENUE 1209 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 16704 AI 50000 REVENUE 3365 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 16193 Value4ValueEducation 169271 REVENUE 2419 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 1124 Memes 216000 REVENUE 1093 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 12289 econ 203870 REVENUE 1331 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 19506 Stacker_Sports 13791 REVENUE 1169 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 13327 econ 43400 REVENUE 886 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 21373 Personal_Finance 5600 REVENUE 1371 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 12334 earth 9750 REVENUE 1948 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 5160 oracle 1050 REVENUE 2626 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 1806 Ask_SN 62300 REVENUE 659 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 1245 libertarian 86050 REVENUE 1573 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 21599 stocks 63000 REVENUE 1506 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 19105 earth 1277582 REVENUE 2047 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 2195 startups 17550 REVENUE 1062 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21061 builders 48950 REVENUE 3024 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 8095 devs 21500 REVENUE 2045 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 2206 Fitness 65500 REVENUE 1995 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 11298 econ 25200 REVENUE 1308 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 1008 DIY 75400 REVENUE 1131 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 20564 privacy 9100 REVENUE 160 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 15526 PlebeianMarket 498562 REVENUE 925 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 13527 radio 26050 REVENUE 2365 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 16942 sanfrancisco 11400 REVENUE 2998 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 11789 builders 21500 REVENUE 1045 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 11073 hiphop 11050 REVENUE 253 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 21178 litdevs 6050 REVENUE 2208 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 5597 DIY 17700 REVENUE 1241 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 21320 libertarian 35590 REVENUE 172 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 20562 opensource 218650 REVENUE 392 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1650 DIY 8450 REVENUE 1920 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 1236 Photography 14701 REVENUE 3385 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 10979 language_learning 10250 REVENUE 708 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 16059 A_bit_of_Good_News 115650 REVENUE 838 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 16276 privacy 112850 REVENUE 2261 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 17237 builders 128700 REVENUE 88 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 16598 lightning 78750 REVENUE 2222 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 16154 oracle 10501050 REVENUE 560 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 18199 history 6050 REVENUE 3453 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 673 art 6000 REVENUE 3384 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 17064 builders 69475 REVENUE 1827 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 18557 NSFW_porn 5000 REVENUE 1954 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 2780 Cannabis 21700 REVENUE 3403 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 2460 B2B 205250 REVENUE 1818 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 13547 Music 10500 REVENUE 477 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 8242 bitcoin_beginners 33900 REVENUE 3232 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 698 apps 1100 REVENUE 3126 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 20094 earth 15300 REVENUE 2618 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 9 Ask_SN 5000 REVENUE 2157 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 6202 ideasfromtheedge 42300 REVENUE 1379 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 19322 news 5750 REVENUE 1852 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 4395 health 182603 REVENUE 1140 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 13246 education 117500 REVENUE 1869 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 19417 health 5850 REVENUE 526 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 20157 BooksAndArticles 100000000 REVENUE 3347 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 5522 opensource 6050 REVENUE 1230 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 617 hiphop 149150 REVENUE 1671 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 8095 events 12000 REVENUE 1647 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 14774 Stacker_Sports 1050 REVENUE 3209 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 16571 science 32950 REVENUE 2718 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 8535 videos 2180800 REVENUE 1811 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 20554 bitdevs 259530 REVENUE 3233 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 20756 Outdoors 22100 REVENUE 2372 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 19566 NixOS 47225 REVENUE 881 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 1135 japan 2150 REVENUE 2395 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 6191 culture 155009 REVENUE 1840 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 20264 DIY 100000000 REVENUE 2578 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 20433 econ 76445 REVENUE 365 2023-12-15 02:25:20.168 2023-12-15 02:25:20.168 17106 health 1021450 BILLING 93 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 720 polls 123700 REVENUE 1440 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 9339 chess 135850 REVENUE 2861 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 20162 mostly_harmless 38050 REVENUE 1558 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 19156 conspiracy 7000 REVENUE 328 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 19668 radio 33200 REVENUE 566 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 7773 news 12100 REVENUE 3019 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 9167 funny 101900 REVENUE 78 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 20222 retrogaming 100000000 REVENUE 3474 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 21413 Stacker_Sports 74400 REVENUE 1332 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 19292 bitdevs 37800 REVENUE 80 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 20272 culture 52500 REVENUE 1354 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 5173 retrogaming 49350 REVENUE 297 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 15337 libertarian 132150 REVENUE 937 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 6335 econ 5000 REVENUE 2206 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 3353 ideasfromtheedge 10000 REVENUE 549 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 825 lightning 16500 REVENUE 2455 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 16282 DIY 220590 REVENUE 865 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 21539 retrogaming 43650 REVENUE 664 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 10270 earth 16800 REVENUE 1483 2024-01-08 23:23:52.909 2024-01-08 23:23:52.909 20744 devs 214000 BILLING 789 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 1326 Dogs_And_Cats 98550 REVENUE 163 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 17798 espanol 17800 REVENUE 2057 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 16485 movies 1050 REVENUE 1949 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 20980 lightning 447200 REVENUE 1178 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 946 AGORA 212850 REVENUE 274 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 7125 NixOS 2250 REVENUE 1263 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 2583 crypto 79900 REVENUE 985 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 6268 movies 647900 REVENUE 573 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 1175 earth 8000 REVENUE 2103 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 21609 history 62450 REVENUE 1364 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 11714 Dogs_And_Cats 100750 REVENUE 2858 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 20137 builders 90800 REVENUE 860 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 12821 DIY 114450 REVENUE 2573 2024-02-05 22:08:23.034 2024-02-05 22:08:23.034 20218 ecash 10500 BILLING 1460 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 8459 Stacker_Sports 5000 REVENUE 3302 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 19909 art 1550 REVENUE 368 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1881 litdevs 51100 REVENUE 1350 2024-01-06 04:27:21.657 2024-01-06 04:27:21.657 19147 retrogaming 250661 BILLING 1502 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 6798 Cannabis 12687550 REVENUE 1987 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 21406 radio 100000000 REVENUE 315 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 7827 japan 1975 REVENUE 2251 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 10728 builders 21524 REVENUE 2643 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 13177 BooksAndArticles 120300 REVENUE 2842 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 20562 bitcoin_beginners 284100 REVENUE 572 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 16965 BooksAndArticles 243660 REVENUE 3006 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 1130 earth 100000000 REVENUE 1780 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 3461 christianity 13250 REVENUE 2646 2024-02-07 21:44:09.412 2024-02-07 21:44:09.412 19640 builders 100000000 BILLING 1406 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 8416 ideasfromtheedge 8400 REVENUE 2334 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 20775 language_learning 346543 REVENUE 3061 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 4798 ecash 18150 REVENUE 260 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 21356 DIY 12050 REVENUE 3315 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 626 history 39400 REVENUE 2338 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 16354 mostly_harmless 33500 REVENUE 3193 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 1611 education 23656 REVENUE 1741 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 21216 events 90700 REVENUE 3354 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 18177 Stacker_Sports 33550 REVENUE 1478 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 1741 bitdevs 33200 REVENUE 506 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 17522 devs 67750 REVENUE 2468 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 749 history 49000 REVENUE 2809 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 18923 science 12150 REVENUE 547 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 18310 bitcoin_beginners 433400 REVENUE 3185 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 20157 health 100000000 REVENUE 3091 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 4415 funny 97850 REVENUE 2682 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 18675 econ 92450 REVENUE 1119 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 19773 movies 490450 REVENUE 1229 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 925 UFOs 11350 REVENUE 2932 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 15703 conspiracy 793350 REVENUE 2181 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 634 libertarian 45800 REVENUE 3301 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 21427 lightning 18350 REVENUE 856 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 14472 Dogs_And_Cats 17933650 REVENUE 57 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 963 education 49377 REVENUE 2671 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 11288 Ask_SN 11400 REVENUE 3425 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 1209 security 10250 REVENUE 3372 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 19732 Memes 68750 REVENUE 2896 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 1261 privacy 233000 REVENUE 1033 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21458 Personal_Finance 53300 REVENUE 1825 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 12821 Music 32700 REVENUE 1233 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 1046 lightning 1550 REVENUE 2557 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 16505 crypto 225300 REVENUE 2697 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 14857 health 111000 REVENUE 317 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 18269 podcasts 12683000 REVENUE 2250 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 18232 ideasfromtheedge 168880 REVENUE 320 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 4304 art 19750 REVENUE 3340 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 2206 charts 63345 REVENUE 418 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 636 crypto 100250 REVENUE 3378 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 12821 chess 1500 REVENUE 472 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 4570 Ask_SN 799950 REVENUE 2728 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 15146 Fitness 35500 REVENUE 1392 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 1576 libertarian 60100 REVENUE 960 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 11942 devs 108100 REVENUE 2076 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 8664 retrogaming 322800 REVENUE 511 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 20738 devs 100000000 REVENUE 1974 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 684 retrogaming 24650 REVENUE 1777 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 21019 Stacker_Sports 83100 REVENUE 3234 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 7772 funny 177950 REVENUE 2777 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 659 builders 221200 REVENUE 179 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 16879 ecash 928600 REVENUE 1401 2024-01-06 22:06:17.183 2024-01-06 22:06:17.183 20272 bitcoin_beginners 11450 BILLING 1783 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 20788 Value4ValueEducation 126375 REVENUE 2716 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 20564 Stacker_Sports 16050 REVENUE 1790 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 19995 Photography 50000 REVENUE 1443 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 21061 education 16000 REVENUE 2102 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 20026 Photography 9050 REVENUE 458 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21494 lol 58185 REVENUE 243 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 19118 christianity 626900 REVENUE 2843 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 21585 videos 63805 REVENUE 2288 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 17011 NixOS 130045 REVENUE 2320 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 16939 bitcoin_beginners 90424 REVENUE 2743 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 20409 education 72500 REVENUE 2150 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 21532 education 21250 REVENUE 414 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 1472 crypto 185800 REVENUE 344 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 18525 builders 12050 REVENUE 1493 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 18280 bitcoin_beginners 53479 REVENUE 3195 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 2537 apps 1500 REVENUE 3390 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 4538 videos 87178 REVENUE 858 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 1145 Photography 73469 REVENUE 3099 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 20892 Stacker_Sports 1050 REVENUE 3179 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 21571 Mining_Self_Hosting_FOSS 46600 REVENUE 1323 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 12566 retrogaming 635800 REVENUE 287 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 6749 security 7600 REVENUE 441 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 20730 AGORA 14975 REVENUE 1644 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 21578 BooksAndArticles 25556950 REVENUE 2854 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 19581 stocks 158750 REVENUE 2522 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 2328 movies 10500 REVENUE 174 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 17321 science 100000000 REVENUE 1603 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20744 bitcoin_beginners 667565 REVENUE 155 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 21343 lightning 1050 REVENUE 339 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 8664 science 25750 REVENUE 1700 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 20137 chess 46800 REVENUE 1231 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 5809 history 22750 REVENUE 1758 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 19462 radio 14700 REVENUE 2428 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 19403 AGORA 150400 REVENUE 2995 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 18124 UFOs 5000 REVENUE 3085 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21180 opensource 11300 REVENUE 1210 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 8544 Photography 59600 REVENUE 3005 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 1647 builders 142300 REVENUE 1958 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 19810 ideasfromtheedge 110109 REVENUE 2197 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 640 hiphop 259495 REVENUE 1198 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 12516 AMA 29800 REVENUE 2311 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 3706 opensource 39673 REVENUE 3023 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 11328 devs 21700 REVENUE 3140 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 15196 espanol 33150 REVENUE 3052 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 8505 BooksAndArticles 89750 REVENUE 1891 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 2056 lightning 218600 REVENUE 1605 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 803 Ask_SN 226350 REVENUE 2968 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 979 lightning 10000 REVENUE 195 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 1474 devs 37343 REVENUE 2539 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 18423 history 19600 REVENUE 1050 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 18815 security 27050 REVENUE 2969 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 16276 opensource 430450 REVENUE 3158 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 15119 retrogaming 166900 REVENUE 3445 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 797 AGORA 32385 REVENUE 1061 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 992 Photography 121581 REVENUE 1432 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 20254 lightning 182050 REVENUE 216 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 17517 ecash 100200 REVENUE 1417 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 19815 Fitness 7000 REVENUE 1708 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 12566 oracle 2100 REVENUE 2473 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 20495 chess 158100 REVENUE 1774 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 3504 devs 105000 REVENUE 923 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 13169 security 227469 REVENUE 2163 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 12921 news 22100 REVENUE 3361 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 16282 Photography 853263 REVENUE 1092 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1817 Music 5000 REVENUE 2125 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 8506 Photography 33000 REVENUE 626 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 5377 Outdoors 193600 REVENUE 2701 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 6268 bitdevs 25000 REVENUE 2806 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 19463 Outdoors 100000000 REVENUE 1893 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 7983 Stacker_Sports 16995 REVENUE 416 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 10056 hiphop 118750 REVENUE 204 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 9992 podcasts 5000 REVENUE 750 2023-12-23 21:04:13.934 2023-12-23 21:04:13.934 21329 builders 1937700 BILLING 959 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 16178 culture 5000 REVENUE 3116 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 664 mempool 12650 REVENUE 1116 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 678 events 329350 REVENUE 1000 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 977 devs 193350 REVENUE 261 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 19007 culture 6500 REVENUE 694 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 11075 Design 28350 REVENUE 3316 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 21482 science 47600 REVENUE 1821 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 1136 polls 25000 REVENUE 1298 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 15052 Design 574003 REVENUE 2663 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 12334 Ask_SN 3500 REVENUE 3131 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 1051 videos 148266 REVENUE 3066 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 18994 AI 137223 REVENUE 2020 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 7760 videos 118350 REVENUE 3036 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 2508 AMA 712850 REVENUE 1108 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 16965 history 5650 REVENUE 3138 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 21422 art 14200 REVENUE 236 2023-12-11 18:46:34.47 2023-12-11 18:46:34.47 16532 retrogaming 7900 BILLING 1083 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 7772 Ask_SN 10000 REVENUE 591 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 18262 lightning 228600 REVENUE 1227 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 9084 science 317800 REVENUE 3145 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 15326 christianity 487800 REVENUE 2349 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 17184 polls 10750 REVENUE 200 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 986 lightning 44540 REVENUE 1040 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 17291 Photography 37400 REVENUE 3375 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 11873 Music 15050 REVENUE 229 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 18468 Stacker_Sports 57300 REVENUE 391 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 4776 education 286012 REVENUE 1553 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 14376 education 197400 REVENUE 2337 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 16124 lightning 7100 REVENUE 97 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 11516 AMA 425300 REVENUE 2120 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 2338 mostly_harmless 13050 REVENUE 1839 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 15594 Music 78600 REVENUE 2647 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 8506 privacy 4200 REVENUE 1734 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 18409 ideasfromtheedge 11000 REVENUE 1451 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 21437 culture 604950 REVENUE 3245 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 1319 Ask_SN 78443 REVENUE 2180 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 1472 startups 24400 REVENUE 1076 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 670 earth 56550 REVENUE 2107 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 15147 retrogaming 116619 REVENUE 1756 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 19796 BooksAndArticles 3150 REVENUE 2155 2024-01-26 04:19:53.587 2024-01-26 04:19:53.587 20826 polls 98750 BILLING 332 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 1564 art 24950 REVENUE 1320 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 12245 art 161707 REVENUE 1094 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 21371 Personal_Finance 5679 REVENUE 379 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 20326 culture 231350 REVENUE 1330 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 12102 Value4ValueEducation 100000000 REVENUE 662 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 21104 BooksAndArticles 5000 REVENUE 3469 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 1596 podcasts 54350 REVENUE 1617 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20642 econ 35000 REVENUE 774 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 2711 science 197450 REVENUE 2503 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 11450 health 111954 REVENUE 1473 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 16830 Design 61900 REVENUE 649 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 9529 Music 100000000 REVENUE 1277 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 20201 christianity 128800 REVENUE 1666 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 2098 Mining_Self_Hosting_FOSS 82100 REVENUE 1346 2024-01-05 20:50:53.512 2024-01-05 20:50:53.512 720 bitdevs 21050 BILLING 3021 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 17050 libertarian 5000 REVENUE 1334 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 20892 BooksAndArticles 95000 REVENUE 3112 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 17976 UFOs 106050 REVENUE 1112 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 837 art 555450 REVENUE 1223 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 19502 hiphop 100000000 REVENUE 2702 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 712 Photography 37750 REVENUE 1343 2024-01-05 19:42:34.104 2024-01-05 19:42:34.104 1549 culture 83450 BILLING 1089 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 17331 Cannabis 959556 REVENUE 2499 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 1307 culture 136700 REVENUE 769 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 16406 hiphop 100000000 REVENUE 2058 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 19417 bitcoin_beginners 12050 REVENUE 2729 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 5961 culture 128350 REVENUE 2237 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 11776 art 87400 REVENUE 450 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21480 videos 78250 REVENUE 364 2023-12-15 02:14:50.836 2023-12-15 02:14:50.836 16858 Music 100000000 BILLING 1104 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20301 lightning 53500 REVENUE 874 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 20826 Music 25900 REVENUE 2335 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 21605 art 35358 REVENUE 3110 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 19796 lol 673724 REVENUE 2130 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 16532 chess 14000 REVENUE 2908 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 17166 BooksAndArticles 51950 REVENUE 527 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 16296 retrogaming 30250 REVENUE 3020 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 1195 econ 55500 REVENUE 2380 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 4521 NSFW_porn 3000000000 REVENUE 2448 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 18040 lightning 251995 REVENUE 1960 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 4763 funny 9600 REVENUE 3076 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 6537 opensource 44400 REVENUE 272 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 4084 B2B 100000000 REVENUE 1645 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 9332 Dogs_And_Cats 100000000 REVENUE 1866 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 20243 opensource 128882 REVENUE 2532 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 20245 retrogaming 257050 REVENUE 701 2023-12-22 17:51:03.005 2023-12-22 17:51:03.005 18640 AGORA 314350 BILLING 945 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 760 Stacker_Sports 293300 REVENUE 1578 2024-01-10 15:02:54.137 2024-01-10 15:02:54.137 9809 news 110700 BILLING 499 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 8245 retrogaming 59606 REVENUE 374 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 16505 culture 100000000 REVENUE 929 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 16660 builders 100000000 REVENUE 2984 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 21527 movies 79700 REVENUE 2550 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 20861 science 25500 REVENUE 1979 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 7992 UFOs 27050 REVENUE 2906 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20080 health 164150 REVENUE 3389 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 15060 libertarian 173850 REVENUE 3175 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 18524 privacy 68450 REVENUE 1634 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 1673 AGORA 41708 REVENUE 2553 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 9920 Photography 21000 REVENUE 1153 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1047 dotnet 91800 REVENUE 530 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 12356 radio 44350 REVENUE 2762 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 9482 movies 63800 REVENUE 1004 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 8176 Music 53450 REVENUE 979 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 6393 christianity 24350 REVENUE 183 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 2525 opensource 52783 REVENUE 2603 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 14037 NSFW_porn 44550 REVENUE 2086 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 16598 earth 120750 REVENUE 2787 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 13177 privacy 56750 REVENUE 2931 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 20998 videos 9750 REVENUE 140 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 1647 art 70350 REVENUE 1124 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 15336 lightning 1100 REVENUE 2418 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 17522 bitcoin_beginners 443783 REVENUE 2056 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 21369 Dogs_And_Cats 61700 REVENUE 3136 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 9167 BooksAndArticles 63350 REVENUE 1444 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 635 retrogaming 18335 REVENUE 2405 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 763 lightning 209450 REVENUE 1166 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 18626 sanfrancisco 56150 REVENUE 908 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19488 opensource 141948 REVENUE 3423 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12507 dotnet 37150 REVENUE 2501 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 11996 AMA 231800 REVENUE 1244 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 8870 UFOs 5000 REVENUE 9 2023-12-05 21:29:03.724 2023-12-05 21:29:03.724 21619 chess 5900 BILLING 577 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 4014 health 295600 REVENUE 438 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 16341 Fitness 100000000 REVENUE 2985 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 17696 startups 570600 REVENUE 2948 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 2042 builders 34790 REVENUE 271 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 10493 movies 5500 REVENUE 1147 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 20327 A_bit_of_Good_News 102900 REVENUE 996 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 647 ecash 2250 REVENUE 1469 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 15925 lightning 4800 REVENUE 3065 2024-02-20 03:47:36.977 2024-02-20 03:47:36.977 14295 earth 35500 BILLING 70 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 18264 opensource 422844 REVENUE 3161 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 16177 Cannabis 100000000 REVENUE 2942 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 19785 bitcoin_beginners 378200 REVENUE 2293 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 19263 BooksAndArticles 502450 REVENUE 3184 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 18842 health 29250 REVENUE 940 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 15594 retrogaming 696000 REVENUE 2686 2024-02-08 21:21:07.326 2024-02-08 21:21:07.326 19352 videos 10250 BILLING 2800 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 18557 AGORA 5000 REVENUE 2291 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 20424 Personal_Finance 23500 REVENUE 1889 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 1173 christianity 378200 REVENUE 1351 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 4958 culture 89050 REVENUE 1482 2024-01-08 21:31:46.963 2024-01-08 21:31:46.963 1245 Value4ValueEducation 100000000 BILLING 2223 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 21238 builders 239250 REVENUE 1010 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 8284 security 70250 REVENUE 868 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 919 Music 238350 REVENUE 3252 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 685 Dogs_And_Cats 100000000 REVENUE 2263 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 8926 DIY 170650 REVENUE 1888 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 17517 christianity 50500 REVENUE 2414 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 940 art 13633 REVENUE 628 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 13143 Ask_SN 402100 REVENUE 1165 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 17011 Dogs_And_Cats 3550 REVENUE 3231 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 16350 news 5856 REVENUE 3146 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 20452 hiphop 2100 REVENUE 2055 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 18984 videos 54750 REVENUE 2552 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 9366 BooksAndArticles 7900 REVENUE 1935 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 12220 bitcoin_beginners 2830 REVENUE 3228 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 20276 retrogaming 69950 REVENUE 2734 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 20881 econ 93200 REVENUE 1476 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 21057 startups 21885 REVENUE 3205 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 10979 ecash 41300 REVENUE 3274 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 21249 news 10500 REVENUE 2487 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 1010 Music 124150 REVENUE 1492 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 21148 stocks 71600 REVENUE 3147 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 8570 oracle 52348 REVENUE 2126 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 9845 videos 53550 REVENUE 2615 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 2614 litdevs 112441 REVENUE 1465 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 8472 AGORA 1550 REVENUE 1772 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 1094 polls 11550 REVENUE 2758 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 10818 libertarian 7018 REVENUE 65 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 18169 health 45494 REVENUE 2385 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 19581 history 100000000 REVENUE 1307 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 21444 bitcoin_beginners 993100 REVENUE 2095 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 21424 Personal_Finance 289277 REVENUE 3144 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 21405 ecash 160363 REVENUE 30 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 14258 chess 5900 REVENUE 3014 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 698 art 17600 REVENUE 2031 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 5746 AGORA 118450 REVENUE 1685 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 4115 Psychedelics 21250 REVENUE 879 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 18989 BooksAndArticles 111350 REVENUE 812 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 19961 B2B 15000 REVENUE 2986 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 1772 NSFW_porn 5000 REVENUE 2672 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 20276 stocks 100000000 REVENUE 234 2023-12-11 11:42:57.917 2023-12-11 11:42:57.917 17094 econ 13550 BILLING 3467 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 2232 history 5500 REVENUE 758 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 18727 news 120250 REVENUE 300 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 10519 conspiracy 98850 REVENUE 1423 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 11144 privacy 15900 REVENUE 2559 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 6687 christianity 32350 REVENUE 742 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19815 AGORA 56225 REVENUE 290 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 18291 Stacker_Sports 50500 REVENUE 1034 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21521 DIY 65700 REVENUE 1262 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 16178 chess 362314 REVENUE 246 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 9517 history 50000 REVENUE 2347 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 3347 ecash 41950 REVENUE 1021 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 11776 Photography 89850 REVENUE 2330 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 14909 sanfrancisco 150250 REVENUE 1996 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 8535 AMA 11000 REVENUE 2839 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 1195 Cannabis 82744 REVENUE 2831 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 7418 health 27200 REVENUE 2679 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 20301 A_bit_of_Good_News 84200 REVENUE 993 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 21379 crypto 1500 REVENUE 615 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 21451 builders 28550 REVENUE 2834 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 1428 education 23750 REVENUE 1924 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 18675 AGORA 104604 REVENUE 1042 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21291 retrogaming 16080 REVENUE 1520 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 4175 crypto 100000000 REVENUE 2440 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 7587 podcasts 153900 REVENUE 2721 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 21481 earth 10000 REVENUE 3086 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 20087 Personal_Finance 232550 REVENUE 1100 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20036 bitdevs 5500 REVENUE 1583 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 2326 Ask_SN 131500 REVENUE 3296 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 12779 oracle 403350 REVENUE 2184 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 19531 culture 56820 REVENUE 617 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 2204 Design 266500 REVENUE 2664 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 15367 movies 54250 REVENUE 265 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 8459 lol 56450 REVENUE 2886 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 7558 devs 111350 REVENUE 1206 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 16354 crypto 25125500 REVENUE 1115 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 8570 science 6845 REVENUE 3054 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 19907 mostly_harmless 131950 REVENUE 3428 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 20554 Personal_Finance 160100 REVENUE 2477 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 2681 Design 59188 REVENUE 2781 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 18309 BooksAndArticles 76750 REVENUE 3115 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 649 builders 26550 REVENUE 781 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 9356 opensource 98850 REVENUE 1786 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 10690 bitdevs 126650 REVENUE 2432 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 1237 health 1055000 REVENUE 1984 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 13903 dotnet 3173350 REVENUE 1396 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 13097 UFOs 6800 REVENUE 2312 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 21469 Ask_SN 193400 REVENUE 1222 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 673 AGORA 11000 REVENUE 1689 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 20264 privacy 5050 REVENUE 2703 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 21239 UFOs 16000 REVENUE 586 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 18470 privacy 7500 REVENUE 1846 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 21578 Fitness 89300 REVENUE 1464 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 19930 hiphop 675000 REVENUE 2218 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 20562 ecash 26050 REVENUE 2136 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 19282 privacy 5600 REVENUE 2668 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 19938 BooksAndArticles 21250 REVENUE 3251 2024-02-24 13:27:33.042 2024-02-24 13:27:33.042 20062 movies 191600 BILLING 3106 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 11670 Stacker_Sports 5750 REVENUE 1890 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 15703 AGORA 53300 REVENUE 2915 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 9331 econ 11150 REVENUE 1197 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 21614 builders 108150 REVENUE 631 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 17411 earth 644150 REVENUE 1283 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 16556 news 335000 REVENUE 211 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 15386 videos 42700 REVENUE 1472 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 21532 videos 2100 REVENUE 2359 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 3347 bitcoin_beginners 85100 REVENUE 2192 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 12774 econ 5000 REVENUE 251 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 21058 retrogaming 45950 REVENUE 2176 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 13055 lightning 59100 REVENUE 1125 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 19459 news 65550 REVENUE 2301 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 20701 NixOS 28700 REVENUE 2954 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 19929 events 19100 REVENUE 153 2023-12-10 05:21:58.325 2023-12-10 05:21:58.325 1602 mempool 101550 BILLING 2740 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 15510 AI 76350 REVENUE 1802 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 13587 earth 4500 REVENUE 306 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 3717 health 510869 REVENUE 3111 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 3440 podcasts 110778 REVENUE 2934 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 10493 history 36729 REVENUE 2510 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 2098 Outdoors 165300 REVENUE 1607 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 844 UFOs 1050 REVENUE 1540 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 8998 Dogs_And_Cats 34100 REVENUE 348 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 2942 lightning 100000000 REVENUE 1604 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 12562 crypto 22550 REVENUE 427 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 694 Design 100000000 REVENUE 2938 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 2620 culture 60500 REVENUE 1564 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 1836 Design 21650 REVENUE 1163 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 18409 crypto 100000000 REVENUE 1850 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 5449 AMA 73500 REVENUE 1509 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 14657 AMA 100000000 REVENUE 3046 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 20585 Outdoors 134650 REVENUE 783 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 6578 polls 7500 REVENUE 784 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 18460 health 18650 REVENUE 1453 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 19289 bitdevs 56550 REVENUE 2402 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 14688 movies 100000000 REVENUE 84 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 20310 Design 165400 REVENUE 556 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 18452 AI 68250 REVENUE 1763 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 18525 econ 7000 REVENUE 1297 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 5791 BooksAndArticles 559750 REVENUE 1523 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 15159 crypto 10000 REVENUE 1408 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 15273 art 15800 REVENUE 1097 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20201 Music 179400 REVENUE 98 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 18679 earth 120568 REVENUE 3237 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 15063 A_bit_of_Good_News 208250 REVENUE 26 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 20738 history 5050 REVENUE 3272 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 15139 hiphop 107250 REVENUE 3401 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 21003 builders 51850 REVENUE 2747 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 21036 education 85050 REVENUE 3133 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 899 funny 13750 REVENUE 1193 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1320 news 8050 REVENUE 509 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 12609 lightning 1050 REVENUE 1673 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 9438 AI 8000 REVENUE 504 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 15762 polls 51600 REVENUE 1899 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 18877 culture 115500 REVENUE 1670 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 5791 podcasts 103559 REVENUE 2073 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 7979 crypto 140700 REVENUE 3394 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 18543 UFOs 7550 REVENUE 1588 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 12921 BooksAndArticles 294650 REVENUE 3055 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 2101 opensource 20250 REVENUE 3125 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 20551 AI 147500 REVENUE 60 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 876 security 153300 REVENUE 250 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 18232 mostly_harmless 50369 REVENUE 2602 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 20306 BooksAndArticles 29948 REVENUE 2131 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 11866 history 4000 REVENUE 182 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 913 bitdevs 44500 REVENUE 2520 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 4650 science 11050 REVENUE 1710 2024-01-13 23:34:44.627 2024-01-13 23:34:44.627 18243 movies 108230 BILLING 919 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 9107 libertarian 22050 REVENUE 181 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 11275 startups 93666 REVENUE 2872 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 16301 devs 68650 REVENUE 1145 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 17050 art 38250 REVENUE 512 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19938 Outdoors 21000 REVENUE 924 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 1307 startups 149050 REVENUE 442 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 21275 retrogaming 115000 REVENUE 2220 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 19320 Personal_Finance 9550 REVENUE 3027 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 19289 espanol 164250 REVENUE 2926 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 20511 Stacker_Sports 21000 REVENUE 1748 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 11522 Design 103150 REVENUE 4 2023-12-05 20:01:53.454 2023-12-05 20:01:53.454 1488 health 7650 BILLING 1900 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 9551 Stacker_Sports 8750 REVENUE 1675 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 15858 podcasts 4500 REVENUE 2077 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 16649 Dogs_And_Cats 100000000 REVENUE 3458 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 695 news 11050 REVENUE 1170 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 9845 A_bit_of_Good_News 5506050 REVENUE 1854 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 9758 Dogs_And_Cats 193200 REVENUE 2028 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 9167 radio 21550 REVENUE 974 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 10979 bitcoin_beginners 13250 REVENUE 676 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 18637 Photography 107000 REVENUE 1176 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 9529 christianity 11450 REVENUE 372 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 20841 litdevs 23490 REVENUE 151 2023-12-09 21:34:57.439 2023-12-09 21:34:57.439 7966 culture 58500 BILLING 2346 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 14663 retrogaming 7100 REVENUE 2140 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 15549 Stacker_Sports 520450 REVENUE 962 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 787 Dogs_And_Cats 184750 REVENUE 1606 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 6260 Stacker_Sports 29600 REVENUE 2209 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 18735 apps 10050 REVENUE 375 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 768 lightning 113550 REVENUE 1387 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 650 apps 6000 REVENUE 3230 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 17494 startups 54650 REVENUE 323 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 17693 Stacker_Sports 5000 REVENUE 2427 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 1960 Outdoors 2050 REVENUE 2859 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 11153 Outdoors 458822 REVENUE 1148 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 8176 history 5000 REVENUE 1627 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 19394 privacy 297516 REVENUE 1868 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 20588 econ 76150 REVENUE 3377 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 20563 BooksAndArticles 175250 REVENUE 1390 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 9333 chess 100000000 REVENUE 2773 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 899 Music 302400 REVENUE 2486 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 17091 litdevs 9000 REVENUE 1833 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 13622 earth 9910 REVENUE 3477 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 4973 news 1600 REVENUE 957 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 21603 UFOs 45100 REVENUE 1898 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 11561 health 76450 REVENUE 581 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 14705 earth 60050 REVENUE 1909 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 16753 hiphop 10550 REVENUE 1242 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 10849 radio 35150 REVENUE 691 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 18941 Outdoors 282364 REVENUE 1688 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 2844 BooksAndArticles 139000 REVENUE 887 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19660 UFOs 1107705 REVENUE 2138 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 5017 econ 25550 REVENUE 1662 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 16633 Music 121050 REVENUE 2154 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 11164 videos 262900 REVENUE 1155 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 18675 espanol 401400 REVENUE 2430 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 19494 litdevs 453900 REVENUE 137 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 19843 bitcoin_beginners 60600 REVENUE 1646 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 6041 news 12647 REVENUE 2345 2024-01-30 18:17:42.339 2024-01-30 18:17:42.339 20377 health 3500 BILLING 3326 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 18660 VirtualReality 4550 REVENUE 1692 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 20525 Design 245000 REVENUE 1848 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 5500 lightning 138600 REVENUE 992 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 20015 science 5511000 REVENUE 727 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 10849 Dogs_And_Cats 485450 REVENUE 1814 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 19435 Dogs_And_Cats 339200 REVENUE 531 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 19126 Personal_Finance 63700 REVENUE 3098 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 1845 AMA 108250 REVENUE 1729 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 18209 security 148150 REVENUE 1750 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 14278 builders 102825 REVENUE 3196 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 17710 Music 18050 REVENUE 1623 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 21424 Outdoors 23000 REVENUE 942 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 18608 AGORA 61500 REVENUE 2987 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 17602 sanfrancisco 62100 REVENUE 714 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 16970 Music 55059 REVENUE 185 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 16341 ru 110550 REVENUE 2384 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 14465 privacy 129300 REVENUE 1342 2024-01-05 19:34:16.618 2024-01-05 19:34:16.618 5427 ideasfromtheedge 207750 BILLING 1762 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 5806 privacy 218700 REVENUE 235 2023-12-11 18:15:16.113 2023-12-11 18:15:16.113 18640 startups 157150 BILLING 3254 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 14472 privacy 5550 REVENUE 642 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 11873 oracle 85500 REVENUE 746 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 5725 Value4ValueEducation 133050 REVENUE 1375 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 20481 polls 57500 REVENUE 1771 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 20564 sanfrancisco 550000 REVENUE 3329 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 12721 lightning 212500 REVENUE 122 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 16966 startups 57850 REVENUE 1676 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 12911 movies 13950 REVENUE 3262 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 21021 science 16800 REVENUE 309 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 10979 libertarian 333250 REVENUE 857 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 8729 litdevs 1050 REVENUE 256 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 18359 BooksAndArticles 13200 REVENUE 2406 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 20701 opensource 146750 REVENUE 970 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 20470 Music 10600 REVENUE 164 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 5359 ru 60650 REVENUE 1743 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 9969 Ask_SN 73800 REVENUE 2788 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 2347 BooksAndArticles 29400 REVENUE 2460 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 4173 NSFW_porn 2600 REVENUE 1953 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 12175 B2B 27050 REVENUE 1038 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 10013 videos 100000000 REVENUE 3059 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 1162 econ 34450 REVENUE 492 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 10280 dotnet 5000 REVENUE 2356 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 20205 Personal_Finance 217450 REVENUE 1316 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 17519 bitcoin_beginners 44600 REVENUE 310 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19857 christianity 278150 REVENUE 2606 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 9334 libertarian 3000 REVENUE 2883 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 960 bitcoin_beginners 86000 REVENUE 1778 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 17030 christianity 114844 REVENUE 1037 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 13378 bitdevs 26050 REVENUE 597 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 19198 hiphop 305000 REVENUE 254 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 777 Music 63500 REVENUE 731 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19910 podcasts 7100 REVENUE 2088 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 2776 podcasts 14950 REVENUE 1167 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 18680 art 644650 REVENUE 3276 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 12606 security 5500 REVENUE 941 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 12965 BooksAndArticles 15350 REVENUE 3009 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 20586 movies 37350 REVENUE 2035 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 20168 podcasts 59496 REVENUE 1853 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 15075 apps 21100 REVENUE 227 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 20525 Music 55830 REVENUE 2161 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 6687 videos 134400 REVENUE 2097 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 21212 charts 100000000 REVENUE 2810 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 11527 art 394738 REVENUE 2137 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 730 podcasts 671700 REVENUE 2789 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 2330 AGORA 109800 REVENUE 327 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 16440 lightning 5500 REVENUE 74 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 19906 NSFW_porn 139136 REVENUE 1120 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 1478 Stacker_Sports 70050 REVENUE 3080 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 19488 ideasfromtheedge 6050 REVENUE 3312 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 19541 BooksAndArticles 150500 REVENUE 1664 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 20272 Dogs_And_Cats 22100 REVENUE 593 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 20981 opensource 19100 REVENUE 2006 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 1800 retrogaming 463900 REVENUE 2167 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 20555 privacy 123100 REVENUE 1970 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 12921 oracle 82400 REVENUE 1560 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 18072 builders 26350 REVENUE 1068 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 11873 espanol 5000 REVENUE 334 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 21498 libertarian 10000 REVENUE 2082 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 10638 Memes 420300 REVENUE 2374 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 7766 bitcoin_beginners 6050 REVENUE 3400 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 19507 Personal_Finance 20945 REVENUE 3029 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 1319 ecash 265481 REVENUE 1327 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 9705 bitdevs 23350 REVENUE 897 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 706 education 20500 REVENUE 2869 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 11819 Stacker_Sports 150250 REVENUE 3150 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 10934 Stacker_Sports 10000 REVENUE 59 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 5757 christianity 8700 REVENUE 1281 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 1803 polls 30200 REVENUE 871 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 1438 security 3250 REVENUE 2780 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 5359 Stacker_Sports 100000000 REVENUE 1942 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 1817 christianity 9350 REVENUE 2805 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 14657 mempool 100000000 REVENUE 1631 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 11450 NSFW_porn 56050 REVENUE 2188 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 10981 polls 280700 REVENUE 734 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 4654 christianity 36100 REVENUE 2050 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 1438 Fitness 156389 REVENUE 3235 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 5425 A_bit_of_Good_News 5500 REVENUE 2162 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 3729 AI 206550 REVENUE 619 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 19848 dotnet 15550 REVENUE 1484 2024-01-09 02:47:20.661 2024-01-09 02:47:20.661 3686 Photography 27000 BILLING 2362 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 20701 sanfrancisco 11550 REVENUE 2119 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 5171 Personal_Finance 55000 REVENUE 2134 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 11430 health 217280 REVENUE 2449 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 638 Memes 1333100 REVENUE 1192 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 18511 startups 55000 REVENUE 2653 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 1465 mostly_harmless 226400 REVENUE 2071 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 19462 bitdevs 24150 REVENUE 1174 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 8726 BooksAndArticles 49700 REVENUE 58 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 11873 news 3000 REVENUE 2075 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 9184 NSFW_porn 4500 REVENUE 1978 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 1825 history 5850 REVENUE 2996 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 7891 stocks 96900 REVENUE 1421 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 20993 builders 55200 REVENUE 2383 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 6164 Outdoors 163900 REVENUE 2577 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 18601 podcasts 19550 REVENUE 90 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 17030 retrogaming 48150 REVENUE 2604 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 1236 Stacker_Sports 513000 REVENUE 2676 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 18601 art 1050 REVENUE 2403 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 18269 history 43500 REVENUE 3277 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 20276 funny 163950 REVENUE 497 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 21026 startups 35000 REVENUE 3309 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 2098 news 100000000 REVENUE 2838 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 19329 Stacker_Sports 5100 REVENUE 578 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 1692 radio 2600 REVENUE 3182 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 16598 Music 89900 REVENUE 706 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 16282 Photography 22050 REVENUE 966 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 5538 Stacker_Sports 100000000 REVENUE 2152 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 17331 hiphop 178850 REVENUE 239 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 21600 Ask_SN 54250 REVENUE 854 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 20778 opensource 110850 REVENUE 2339 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 1740 UFOs 342000 REVENUE 3350 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 16214 oracle 13200 REVENUE 2638 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 4395 history 5000 REVENUE 1306 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 20225 Personal_Finance 45200 REVENUE 217 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 17714 health 364900 REVENUE 1612 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 19156 Cannabis 133800 REVENUE 1196 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 12562 startups 14800 REVENUE 2817 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 19148 stocks 8500 REVENUE 1765 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 18460 Cannabis 29200 REVENUE 635 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 1488 mostly_harmless 10000 REVENUE 2720 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 16485 hiphop 75525 REVENUE 3016 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 17707 Dogs_And_Cats 3000000000 REVENUE 2452 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 13100 Personal_Finance 6050 REVENUE 1475 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 14376 litdevs 282341 REVENUE 538 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 698 news 40550 REVENUE 1250 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 4250 BooksAndArticles 100000000 REVENUE 2705 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 1603 christianity 59300 REVENUE 1086 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 750 mostly_harmless 96714 REVENUE 895 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 1741 security 5550 REVENUE 700 2023-12-22 09:01:29.22 2023-12-22 09:01:29.22 12122 movies 38550 BILLING 3092 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 1316 videos 26650 REVENUE 1412 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 13622 builders 8100 REVENUE 340 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 21494 oracle 42400 REVENUE 906 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 717 Mining_Self_Hosting_FOSS 1150 REVENUE 3376 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 17014 lightning 164809 REVENUE 2681 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 17707 VirtualReality 120500 REVENUE 282 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 1515 AGORA 106900 REVENUE 2112 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 5487 history 83700 REVENUE 111 2023-12-08 16:15:51.937 2023-12-08 16:15:51.937 1471 ideasfromtheedge 161550 BILLING 2940 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 11288 BooksAndArticles 127650 REVENUE 1315 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 20280 movies 7650 REVENUE 1919 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 19848 ru 66050 REVENUE 2341 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 17494 Outdoors 154050 REVENUE 1133 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 8648 japan 56050 REVENUE 1928 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 7583 christianity 14404 REVENUE 2907 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 19660 Personal_Finance 157400 REVENUE 2108 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 13903 devs 100000000 REVENUE 1669 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 7899 A_bit_of_Good_News 113800 REVENUE 1859 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 21139 language_learning 259850 REVENUE 2846 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 1631 japan 3900 REVENUE 514 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 5791 hiphop 139080 REVENUE 3028 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 11716 builders 7700 REVENUE 2488 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 725 conspiracy 1585500 REVENUE 232 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 11498 crypto 5650 REVENUE 1425 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 17148 lightning 87815 REVENUE 3444 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 13132 news 532100 REVENUE 2864 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 20094 news 95700 REVENUE 683 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 1472 AGORA 6650 REVENUE 2612 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 1726 security 27700 REVENUE 3135 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 1480 Dogs_And_Cats 50000 REVENUE 3141 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 20585 movies 5550 REVENUE 1628 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 21248 ecash 24850 REVENUE 2093 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 895 science 104900 REVENUE 3337 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 20036 mostly_harmless 20000 REVENUE 875 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 2652 startups 78500 REVENUE 2700 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 21491 Memes 8500 REVENUE 3421 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 19806 crypto 43450 REVENUE 3259 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 1060 language_learning 100000000 REVENUE 3258 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 18177 ideasfromtheedge 232000 REVENUE 483 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 16754 education 12250 REVENUE 641 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 17707 Outdoors 8000 REVENUE 3371 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 21026 news 5950 REVENUE 730 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 1142 lightning 12350 REVENUE 1353 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 17552 Dogs_And_Cats 244400 REVENUE 1088 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 21037 bitdevs 71800 REVENUE 3282 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 16353 culture 16000 REVENUE 2614 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 18815 Stacker_Sports 5500 REVENUE 851 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 787 education 9600 REVENUE 336 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 17275 libertarian 25079 REVENUE 2894 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 11430 privacy 38845 REVENUE 1400 2024-01-06 17:46:24.205 2024-01-06 17:46:24.205 16680 mostly_harmless 1050 BILLING 3313 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 5806 bitdevs 46192 REVENUE 3299 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 17157 startups 120678 REVENUE 2769 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 19996 health 279771 REVENUE 2494 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 705 Photography 59650 REVENUE 1712 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 21103 conspiracy 91100 REVENUE 159 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 5776 art 19145 REVENUE 1183 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1221 lightning 10000 REVENUE 719 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 17218 UFOs 150475 REVENUE 2224 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 986 security 4500 REVENUE 2074 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 13132 NixOS 37000 REVENUE 2993 2024-02-17 19:39:28.787 2024-02-17 19:39:28.787 2195 christianity 1050 BILLING 3033 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 713 Design 255100 REVENUE 2622 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 15510 AI 5000 REVENUE 2708 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 4173 NixOS 7500 REVENUE 3088 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 10283 AMA 13500 REVENUE 2048 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 959 BooksAndArticles 17650 REVENUE 1513 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 21048 Music 278350 REVENUE 2041 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 21527 Mining_Self_Hosting_FOSS 61200 REVENUE 2153 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 20841 NSFW_porn 100000000 REVENUE 1925 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 20205 Photography 10000 REVENUE 952 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 5758 security 198850 REVENUE 3032 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 5978 opensource 6050 REVENUE 1563 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 21103 bitcoin_beginners 33600 REVENUE 1686 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 9348 NixOS 24200 REVENUE 733 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19863 B2B 2100 REVENUE 3101 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 782 crypto 52726 REVENUE 3031 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 2326 history 96650 REVENUE 1048 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 18423 Outdoors 92150 REVENUE 96 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 5128 art 5000 REVENUE 1216 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 5495 AGORA 10050 REVENUE 658 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 2162 AGORA 10500 REVENUE 2321 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 4323 Stacker_Sports 31050 REVENUE 2062 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 14202 builders 17050 REVENUE 3345 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 1002 crypto 261129 REVENUE 1570 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 9845 news 177800 REVENUE 968 2023-12-28 23:15:49.455 2023-12-28 23:15:49.455 4474 Fitness 5935 BILLING 410 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 16149 health 186245 REVENUE 2519 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 15762 AMA 119800 REVENUE 1023 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 19394 education 327650 REVENUE 3457 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 635 startups 120646 REVENUE 3073 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 642 AI 3850 REVENUE 273 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 21216 NixOS 280600 REVENUE 144 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 21421 Dogs_And_Cats 406050 REVENUE 1442 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 7869 DIY 5050 REVENUE 1117 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 951 Photography 22850 REVENUE 2660 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 20340 Cannabis 130150 REVENUE 1730 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 13927 lightning 118850 REVENUE 1011 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 10698 sanfrancisco 366300 REVENUE 432 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 21591 privacy 40300 REVENUE 1913 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 18897 builders 1000000000 REVENUE 330 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 20802 health 106000 REVENUE 82 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 21532 security 4200 REVENUE 3155 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 17030 education 135650 REVENUE 2142 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 3347 health 26350 REVENUE 2144 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 10608 Music 26800 REVENUE 2757 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 21104 crypto 268600 REVENUE 3273 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 20599 opensource 74977 REVENUE 2543 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 1480 movies 8500 REVENUE 2423 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 20563 econ 84700 REVENUE 622 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 1738 security 15550 REVENUE 3306 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 13348 news 199100 REVENUE 589 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 15762 libertarian 10550 REVENUE 2759 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 20969 A_bit_of_Good_News 107950 REVENUE 1526 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 15978 privacy 1304650 REVENUE 904 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 17166 privacy 32850 REVENUE 3178 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 3439 culture 100000000 REVENUE 1437 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 16284 startups 10850 REVENUE 2885 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 11145 UFOs 45500 REVENUE 2079 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 17103 health 59550 REVENUE 571 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 21287 econ 5000 REVENUE 247 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 18378 news 37300 REVENUE 121 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 11192 devs 48650 REVENUE 1895 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 20555 podcasts 3300 REVENUE 749 2023-12-23 09:19:33.931 2023-12-23 09:19:33.931 12959 bitcoin_beginners 6936 BILLING 419 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 20452 ideasfromtheedge 61750 REVENUE 2451 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 18262 security 126550 REVENUE 3436 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 2335 AI 51950 REVENUE 1887 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 18615 security 871135 REVENUE 1235 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 1605 japan 528250 REVENUE 342 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 16149 Photography 573150 REVENUE 1582 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 15925 privacy 281150 REVENUE 1098 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 17184 bitcoin_beginners 25395 REVENUE 476 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 18363 art 275600 REVENUE 828 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 8569 BooksAndArticles 19750 REVENUE 1254 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 20301 christianity 39500 REVENUE 3422 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 18956 Music 11900 REVENUE 173 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 15100 Stacker_Sports 29200 REVENUE 141 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 7510 NSFW_porn 141400 REVENUE 461 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 20826 DIY 91778 REVENUE 3420 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12245 funny 595650 REVENUE 1769 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 16942 builders 2100 REVENUE 423 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 21180 health 5000 REVENUE 3227 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 12721 health 116950 REVENUE 513 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 20246 science 64800 REVENUE 1659 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 18581 econ 100000000 REVENUE 801 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 19689 Fitness 307829 REVENUE 184 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 21398 opensource 309650 REVENUE 2247 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 20434 earth 1000000000 REVENUE 1931 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 5175 UFOs 4000 REVENUE 516 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19836 podcasts 218000 REVENUE 1505 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 5522 polls 4000 REVENUE 3172 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 19652 japan 6050 REVENUE 2911 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20825 UFOs 131250 REVENUE 1419 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 11430 devs 173900 REVENUE 467 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 725 NixOS 11500 REVENUE 201 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 1738 bitdevs 523100 REVENUE 1243 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 15282 bitdevs 10500 REVENUE 1820 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21573 ecash 604100 REVENUE 1299 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 9844 opensource 19050 REVENUE 2462 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 4043 DIY 2500 REVENUE 2904 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20881 AGORA 56250 REVENUE 3447 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 21296 health 53050 REVENUE 1929 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 10469 AGORA 5000 REVENUE 1172 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 633 AGORA 16550 REVENUE 747 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19924 Stacker_Sports 105400 REVENUE 52 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 4175 bitcoin_beginners 1050 REVENUE 1248 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 1273 sanfrancisco 114250 REVENUE 486 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 13406 crypto 506950 REVENUE 3208 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 18008 AccessTribe 35050 REVENUE 2326 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 19036 science 7000 REVENUE 2010 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 21247 startups 3000 REVENUE 2852 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 21164 health 30884 REVENUE 3308 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 20922 opensource 22900 REVENUE 1793 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 17411 retrogaming 216000 REVENUE 3064 2024-02-19 22:35:36.353 2024-02-19 22:35:36.353 15843 privacy 19700 BILLING 2493 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 5112 UFOs 9300 REVENUE 411 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 18040 lightning 208200 REVENUE 2407 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 18116 NSFW_porn 106050 REVENUE 2845 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 20258 news 26659 REVENUE 1205 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 620 startups 298965 REVENUE 2879 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 993 Memes 145200 REVENUE 56 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 18154 culture 239550 REVENUE 2398 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 17592 Music 509342 REVENUE 2978 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 19335 builders 27000 REVENUE 503 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 9200 stocks 1100 REVENUE 313 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 21148 opensource 14150 REVENUE 3413 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 4128 Fitness 35850 REVENUE 1043 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 9353 history 108850 REVENUE 1313 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 1003 Dogs_And_Cats 302000 REVENUE 3478 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 18680 Dogs_And_Cats 25650 REVENUE 1219 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 4048 health 8550 REVENUE 145 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 6030 videos 39800 REVENUE 1339 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 1038 startups 23200 REVENUE 1855 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 2724 health 50000 REVENUE 3324 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 16505 oracle 15200 REVENUE 2376 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 15544 culture 388400 REVENUE 1090 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 5776 charts 10000 REVENUE 267 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 18735 videos 28150 REVENUE 176 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 17714 builders 12600 REVENUE 1081 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20660 Dogs_And_Cats 698250 REVENUE 1240 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 18314 oracle 183650 REVENUE 50 2023-12-06 18:56:58.345 2023-12-06 18:56:58.345 20208 Ask_SN 13000 BILLING 1454 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 11873 Music 63850 REVENUE 113 2023-12-08 23:23:52.692 2023-12-08 23:23:52.692 20162 art 322298 BILLING 3443 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 16950 ideasfromtheedge 115448 REVENUE 37 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 12566 BooksAndArticles 123400 REVENUE 3435 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 1198 bitdevs 210050 REVENUE 1896 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 5646 Fitness 15500 REVENUE 623 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 20439 news 120850 REVENUE 498 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 9337 retrogaming 15150 REVENUE 978 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 21155 retrogaming 42500 REVENUE 1972 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 19929 movies 2100 REVENUE 3407 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 6202 Music 1500 REVENUE 1522 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 18923 movies 40750 REVENUE 85 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 8569 podcasts 241750 REVENUE 1471 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 21166 Design 100000000 REVENUE 1749 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 18101 history 3150 REVENUE 1912 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 21599 history 12050 REVENUE 790 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 9494 crypto 12000 REVENUE 843 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 844 art 243530 REVENUE 2271 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 16769 Stacker_Sports 116150 REVENUE 2151 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 18745 privacy 9900 REVENUE 2947 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 20837 sanfrancisco 2050 REVENUE 17 2023-12-06 00:24:45.115 2023-12-06 00:24:45.115 1136 BooksAndArticles 501681 BILLING 2514 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 13143 apps 29150 REVENUE 2210 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 13753 chess 15550 REVENUE 154 2023-12-10 05:33:37.441 2023-12-10 05:33:37.441 11897 chess 65400 BILLING 1142 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 9167 health 23370 REVENUE 3132 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 20272 Stacker_Sports 86950 REVENUE 3265 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 5646 christianity 84730 REVENUE 1677 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 19622 Stacker_Sports 25600 REVENUE 2019 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 6229 bitdevs 94900 REVENUE 3222 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 5758 Stacker_Sports 16650 REVENUE 1069 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 2039 privacy 9050 REVENUE 89 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 20205 opensource 54700 REVENUE 2106 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 19886 A_bit_of_Good_News 50900 REVENUE 537 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 17030 libertarian 89300 REVENUE 3339 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 20655 BooksAndArticles 130700 REVENUE 946 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 17392 Stacker_Sports 66000 REVENUE 681 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 17316 B2B 282129 REVENUE 1388 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 5057 art 2100 REVENUE 2127 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 21070 security 5074800 REVENUE 3246 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 711 privacy 82775 REVENUE 2566 2024-02-05 19:39:00.785 2024-02-05 19:39:00.785 9078 news 517832 BILLING 988 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 17041 devs 10500 REVENUE 1080 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 19007 hiphop 100000000 REVENUE 2170 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 21249 bitcoin_beginners 12900 REVENUE 545 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 19637 security 10000 REVENUE 1816 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 20681 art 366350 REVENUE 748 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 18517 lightning 9100 REVENUE 3180 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 1650 retrogaming 5000 REVENUE 2466 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 676 retrogaming 592540 REVENUE 424 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 1429 health 5500 REVENUE 1071 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1596 oracle 7100 REVENUE 791 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 1737 Stacker_Sports 6600 REVENUE 319 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19601 bitcoin_beginners 2703400 REVENUE 2471 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 12774 earth 8550 REVENUE 1224 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 16505 Dogs_And_Cats 106982 REVENUE 2061 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 6191 lightning 120500 REVENUE 1975 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 21532 science 643278 REVENUE 951 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 18017 earth 16859 REVENUE 2333 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 21088 podcasts 813450 REVENUE 104 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 880 apps 183050 REVENUE 2201 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 16193 ecash 6500 REVENUE 1946 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 14168 hiphop 334117 REVENUE 1293 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 626 oracle 140350 REVENUE 2043 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 21400 Stacker_Sports 60750 REVENUE 1880 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 10719 christianity 406750 REVENUE 2433 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 713 AI 59314 REVENUE 1545 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 2338 lightning 12150 REVENUE 616 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 11153 retrogaming 13600 REVENUE 2691 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 1959 ecash 287650 REVENUE 143 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 925 DIY 25500 REVENUE 1923 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 11942 Personal_Finance 2450 REVENUE 3442 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 19512 movies 272550 REVENUE 1218 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 16301 mostly_harmless 100000000 REVENUE 878 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 19535 lightning 5500 REVENUE 775 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 19174 econ 19400 REVENUE 1801 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21104 Dogs_And_Cats 98300 REVENUE 3117 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 19235 devs 321450 REVENUE 1180 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1298 econ 74650 REVENUE 2621 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 15213 econ 43150 REVENUE 1561 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 8289 security 301578 REVENUE 2609 2024-02-06 11:48:06.007 2024-02-06 11:48:06.007 4989 retrogaming 54450 BILLING 2704 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 2000 oracle 100000000 REVENUE 2053 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 12769 Music 4550 REVENUE 2457 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 17064 privacy 193900 REVENUE 268 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 886 Personal_Finance 10350 REVENUE 2784 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 20892 history 20700 REVENUE 1781 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 21427 videos 54350 REVENUE 582 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 2789 devs 55300 REVENUE 3177 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 21281 charts 73500 REVENUE 1533 2024-01-09 22:17:24.92 2024-01-09 22:17:24.92 18402 ru 50926 BILLING 3286 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 10393 UFOs 10000 REVENUE 2791 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 1772 crypto 342447 REVENUE 1897 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 6421 mostly_harmless 25000 REVENUE 2481 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 6268 Music 195200 REVENUE 233 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 695 Photography 25000 REVENUE 2936 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 19613 podcasts 252100 REVENUE 1039 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 19303 hiphop 130400 REVENUE 764 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 6616 videos 6050 REVENUE 1779 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 19924 lightning 138200 REVENUE 2999 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 20642 videos 79700 REVENUE 3097 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21405 bitdevs 100000000 REVENUE 1383 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 4079 security 100000000 REVENUE 3174 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 20525 Memes 20300 REVENUE 1541 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 18526 Ask_SN 68150 REVENUE 1161 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 21233 ecash 76100 REVENUE 452 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 626 econ 3550 REVENUE 950 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 19282 science 270600 REVENUE 640 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 17817 AGORA 136400 REVENUE 2925 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 20143 lightning 53100 REVENUE 2318 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 635 news 56050 REVENUE 212 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 21003 AGORA 353000 REVENUE 2474 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 738 builders 100350 REVENUE 2878 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 14651 Music 398050 REVENUE 1056 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 14122 Cannabis 737850 REVENUE 3164 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 18232 health 23600 REVENUE 2821 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 10273 ecash 55100 REVENUE 815 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 2213 earth 554348 REVENUE 292 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19281 podcasts 23050 REVENUE 2032 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 16004 podcasts 113900 REVENUE 1609 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 1833 startups 169000 REVENUE 2198 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 14037 ideasfromtheedge 271400 REVENUE 1096 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 18956 news 8578 REVENUE 652 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 21058 chess 100000000 REVENUE 792 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 6602 Dogs_And_Cats 100000000 REVENUE 1535 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 6383 security 1550 REVENUE 981 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 2529 AI 365100 REVENUE 539 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 20301 Outdoors 64600 REVENUE 2080 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 18180 retrogaming 411750 REVENUE 45 2023-12-06 11:21:03.675 2023-12-06 11:21:03.675 18625 podcasts 5000 BILLING 2100 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 19038 polls 59100 REVENUE 481 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 6003 bitcoin_beginners 113750 REVENUE 51 2023-12-06 21:09:15.247 2023-12-06 21:09:15.247 16356 health 201300 BILLING 541 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 4314 AGORA 58050 REVENUE 2008 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 15732 mostly_harmless 87700 REVENUE 3366 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 5978 Stacker_Sports 104750 REVENUE 400 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 6749 startups 65650 REVENUE 817 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 1806 Music 31500 REVENUE 3067 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21242 builders 64100 REVENUE 1485 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 18919 health 12500 REVENUE 2286 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 18051 AGORA 126300 REVENUE 1916 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 1135 Stacker_Sports 95650 REVENUE 180 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 1195 radio 578950 REVENUE 15 2023-12-05 23:20:45.342 2023-12-05 23:20:45.342 16988 DIY 78007 BILLING 695 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 19911 crypto 210100 REVENUE 2447 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 17237 devs 223700 REVENUE 1109 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 11776 japan 49600 REVENUE 1369 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 1439 art 9800 REVENUE 3051 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 16998 opensource 12562350 REVENUE 316 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 956 ecash 21200 REVENUE 2238 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 18507 earth 54200 REVENUE 147 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 18280 hiphop 104050 REVENUE 621 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 20018 econ 34500 REVENUE 425 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 20258 Dogs_And_Cats 116200 REVENUE 1285 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 20504 lightning 22500 REVENUE 1703 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 8074 movies 234060 REVENUE 2482 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 21369 funny 76150 REVENUE 786 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 18154 podcasts 389150 REVENUE 1556 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 11776 bitcoin_beginners 627350 REVENUE 1491 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 999 AI 72600 REVENUE 2649 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 21532 science 100000000 REVENUE 47 2023-12-06 13:44:41.982 2023-12-06 13:44:41.982 20594 privacy 186200 BILLING 1699 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 12278 espanol 50000 REVENUE 1977 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 9845 sanfrancisco 622795 REVENUE 685 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 11477 libertarian 40250 REVENUE 2434 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 1650 science 344389 REVENUE 382 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 11164 ru 5900 REVENUE 728 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 9332 builders 45850 REVENUE 115 2023-12-09 02:47:20.395 2023-12-09 02:47:20.395 13133 Design 18350 BILLING 242 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 20577 culture 7500 REVENUE 1812 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 5487 health 100000000 REVENUE 735 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 11648 Psychedelics 93500 REVENUE 3167 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 17365 ecash 158900 REVENUE 396 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1316 A_bit_of_Good_News 20550 REVENUE 3463 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 8284 ideasfromtheedge 51100 REVENUE 1237 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 6361 Music 96100 REVENUE 2897 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 976 bitcoin_beginners 217850 REVENUE 2378 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 9200 stocks 16100 REVENUE 1504 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 15351 libertarian 15000 REVENUE 1311 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 1549 BooksAndArticles 24600 REVENUE 2297 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 19021 libertarian 100500 REVENUE 2981 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 21070 NSFW_porn 17600 REVENUE 116 2023-12-09 09:09:42.934 2023-12-09 09:09:42.934 20993 security 295889 BILLING 101 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 1047 Personal_Finance 5300 REVENUE 373 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 7869 Stacker_Sports 161700 REVENUE 3090 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 14370 Mining_Self_Hosting_FOSS 322550 REVENUE 912 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 19494 ideasfromtheedge 110000 REVENUE 149 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 11378 christianity 392652 REVENUE 1474 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 19235 earth 62900 REVENUE 3159 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 1723 bitdevs 1273800 REVENUE 1902 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 19662 crypto 6000 REVENUE 2124 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 8448 BooksAndArticles 152200 REVENUE 2254 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 12277 Photography 31650 REVENUE 2174 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 18690 bitcoin_beginners 38550 REVENUE 1980 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 1195 Photography 125100 REVENUE 2943 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 9169 videos 19600 REVENUE 1013 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 5129 bitcoin_beginners 3000000000 REVENUE 2961 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 20990 Ask_SN 220479 REVENUE 2600 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 20551 Music 337050 REVENUE 2786 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 12049 christianity 34441 REVENUE 2873 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 676 AMA 8550 REVENUE 269 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 8544 Dogs_And_Cats 1585450 REVENUE 2059 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 18526 crypto 28234 REVENUE 1077 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 15697 movies 5000 REVENUE 1168 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 15703 Dogs_And_Cats 9900 REVENUE 1259 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 21620 Photography 56100 REVENUE 1512 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 10821 AGORA 185250 REVENUE 25 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 20495 science 11000 REVENUE 521 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 20481 AI 112050 REVENUE 1024 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 2735 education 96550 REVENUE 1384 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 9337 espanol 203850 REVENUE 3363 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 7983 japan 8500 REVENUE 2823 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 16638 health 57100 REVENUE 567 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 10608 litdevs 141050 REVENUE 1917 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 19639 Cannabis 86600 REVENUE 2956 2024-02-16 19:57:07.18 2024-02-16 19:57:07.18 1008 Cannabis 206550 BILLING 3183 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 15119 news 51650 REVENUE 1054 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 994 dotnet 10500 REVENUE 508 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 15196 NixOS 36245 REVENUE 2844 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 2151 history 97550 REVENUE 771 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 16948 devs 5250 REVENUE 1982 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 1198 funny 125350 REVENUE 2611 2024-02-07 03:25:18.994 2024-02-07 03:25:18.994 986 Photography 171300 BILLING 2983 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 4083 retrogaming 13031100 REVENUE 1258 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 18219 DIY 5000 REVENUE 324 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 5497 ecash 10000 REVENUE 603 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 1738 privacy 716293 REVENUE 1791 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 15213 education 40700 REVENUE 795 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 20646 videos 20350 REVENUE 79 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 21003 B2B 78350 REVENUE 1204 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 3371 Music 72200 REVENUE 1766 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 13076 earth 72600 REVENUE 1881 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 18658 lightning 87300 REVENUE 902 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 1195 Music 14253800 REVENUE 3325 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 19622 Music 11350 REVENUE 743 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 2614 Personal_Finance 843200 REVENUE 3279 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 6003 videos 1174950 REVENUE 3216 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 836 NixOS 9300 REVENUE 2525 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 9353 culture 5600 REVENUE 2698 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 19690 health 100000000 REVENUE 2597 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 2437 videos 30000 REVENUE 834 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 20430 UFOs 36000 REVENUE 534 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 10591 earth 100000000 REVENUE 2229 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 794 ideasfromtheedge 256000 REVENUE 2959 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 16250 AccessTribe 266850 REVENUE 38 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 18678 privacy 2000 REVENUE 935 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 14169 japan 70350 REVENUE 1111 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 19668 science 332600 REVENUE 1653 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 1039 AGORA 21050 REVENUE 2324 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 21145 Stacker_Sports 116600 REVENUE 2813 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 21159 Cannabis 14300 REVENUE 528 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 9517 Dogs_And_Cats 100000000 REVENUE 2232 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 14168 NixOS 32500 REVENUE 837 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 20799 UFOs 5000 REVENUE 1173 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 2046 Psychedelics 11500 REVENUE 475 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 19189 AI 290000 REVENUE 105 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 15521 health 12600 REVENUE 630 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 656 podcasts 100000000 REVENUE 2799 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 5775 NixOS 32400 REVENUE 3214 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 17094 BooksAndArticles 63645 REVENUE 1539 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 21042 Personal_Finance 712150 REVENUE 3130 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 19806 radio 39550 REVENUE 2972 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 725 funny 63050 REVENUE 655 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 12139 devs 5000 REVENUE 2536 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 4167 AccessTribe 2050 REVENUE 770 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 9496 econ 13800400 REVENUE 880 2023-12-26 09:44:45.488 2023-12-26 09:44:45.488 20594 bitcoin_beginners 8050 BILLING 569 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 1006 movies 28350 REVENUE 22 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 20871 earth 69250 REVENUE 1456 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 18626 retrogaming 98800 REVENUE 2472 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 18271 DeepDive 1854050 REVENUE 893 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 12220 opensource 37100 REVENUE 192 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 8326 lightning 22700 REVENUE 3412 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12334 japan 30000 REVENUE 1521 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 1433 radio 5500 REVENUE 167 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 16267 lightning 5000 REVENUE 917 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 21131 bitcoin_beginners 4300 REVENUE 1967 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 9332 Stacker_Sports 40550 REVENUE 2563 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 20117 Design 26000 REVENUE 1079 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 12507 Music 19950 REVENUE 2875 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 1474 podcasts 84450 REVENUE 2656 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 981 art 65000 REVENUE 10 2023-12-05 21:37:29.319 2023-12-05 21:37:29.319 21466 science 97300 BILLING 3166 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 15049 privacy 200500 REVENUE 3045 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 20179 devs 5000 REVENUE 387 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1611 opensource 28300 REVENUE 496 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19572 libertarian 189830 REVENUE 1154 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 3456 news 2100 REVENUE 219 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 721 hiphop 217127 REVENUE 384 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1784 Dogs_And_Cats 5550 REVENUE 3148 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 20153 Cannabis 521100 REVENUE 2530 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 16536 funny 267200 REVENUE 2524 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 20409 crypto 100000000 REVENUE 2351 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 11789 Dogs_And_Cats 19750 REVENUE 967 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 21430 ru 48495 REVENUE 620 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 14545 charts 291195 REVENUE 1370 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 16939 bitdevs 357500 REVENUE 138 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 16353 lol 11550 REVENUE 903 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 17157 Outdoors 8050 REVENUE 2625 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 20704 VirtualReality 10050 REVENUE 1826 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21060 privacy 12908500 REVENUE 1847 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 8284 Value4ValueEducation 21000 REVENUE 1129 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 13547 startups 20158 REVENUE 1926 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 20744 bitdevs 101222 REVENUE 3026 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 21393 mempool 4850 REVENUE 466 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21521 Memes 1052900 REVENUE 563 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 16052 health 26000 REVENUE 3271 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 18351 Photography 11500 REVENUE 1682 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 14280 libertarian 5000 REVENUE 2101 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 10096 ideasfromtheedge 169600 REVENUE 2363 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 13246 BooksAndArticles 18200 REVENUE 536 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 13348 AGORA 1050 REVENUE 2564 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 21249 opensource 17500 REVENUE 2049 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 8796 Music 36150 REVENUE 1365 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 21503 retrogaming 2607 REVENUE 899 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 17148 AccessTribe 10750 REVENUE 1074 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 798 AI 145869 REVENUE 2941 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 7903 chess 68850 REVENUE 3018 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 20080 B2B 100000000 REVENUE 579 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 21064 security 208850 REVENUE 2637 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 4574 Fitness 5000 REVENUE 3096 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 4378 econ 15550 REVENUE 2750 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 9150 opensource 69007 REVENUE 2030 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 987 education 512000 REVENUE 1208 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 27 news 86700 REVENUE 1326 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 11018 BooksAndArticles 208800 REVENUE 1434 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 8380 Music 171500 REVENUE 11 2023-12-05 21:53:58.448 2023-12-05 21:53:58.448 20981 Design 24927 BILLING 1118 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 19524 science 65100 REVENUE 1380 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 4633 movies 52500 REVENUE 421 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 4238 privacy 32311 REVENUE 1480 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 20663 culture 99600 REVENUE 2492 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 21627 opensource 8750 REVENUE 2771 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 20588 bitcoin_beginners 9200 REVENUE 930 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 14688 econ 16550 REVENUE 2146 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 15088 Dogs_And_Cats 60700 REVENUE 3240 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 21493 builders 176750 REVENUE 203 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 7654 christianity 12850 REVENUE 405 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 14939 mostly_harmless 171950 REVENUE 1921 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 20683 ecash 100000000 REVENUE 321 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 16706 privacy 132550 REVENUE 665 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 2757 crypto 49500 REVENUE 612 2023-12-21 03:12:57.286 2023-12-21 03:12:57.286 19583 privacy 162145 BILLING 225 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 11491 Design 22650 REVENUE 3415 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 3709 security 22050 REVENUE 395 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 8380 privacy 49200 REVENUE 2023 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 16998 Design 233150 REVENUE 637 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 20881 opensource 125150 REVENUE 1901 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 1124 BooksAndArticles 91610 REVENUE 1679 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 9758 health 11000 REVENUE 40 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 8448 Value4ValueEducation 1275872 REVENUE 3128 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 2077 podcasts 2887 REVENUE 2091 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 18909 Photography 8050 REVENUE 3331 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 20623 earth 235600 REVENUE 430 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 19796 libertarian 32200 REVENUE 1835 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 15536 AI 219000 REVENUE 3165 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 20701 art 21050 REVENUE 709 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 10291 builders 5500 REVENUE 517 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 7675 NixOS 105000 REVENUE 3197 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 9337 Music 551696 REVENUE 2730 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 20906 lol 20000 REVENUE 2889 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 1970 opensource 60200 REVENUE 1132 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 21051 DIY 153671 REVENUE 1338 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 18984 funny 19150 REVENUE 523 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 18138 health 77350 REVENUE 252 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 9921 AI 51833 REVENUE 1486 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 20205 culture 60850 REVENUE 2589 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 16145 econ 163700 REVENUE 3063 2024-02-19 18:24:09.614 2024-02-19 18:24:09.614 20218 science 17150 BILLING 1705 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 16193 devs 3000000000 REVENUE 1215 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 10280 Ask_SN 65750 REVENUE 449 2023-12-16 07:20:51.854 2023-12-16 07:20:51.854 18581 culture 100000000 BILLING 1832 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 11165 libertarian 57150 REVENUE 1652 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 17927 movies 436850 REVENUE 553 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 20464 history 177100 REVENUE 142 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 20586 health 609050 REVENUE 412 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 749 A_bit_of_Good_News 13100 REVENUE 491 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 18832 UFOs 66109 REVENUE 2517 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 10283 news 112500 REVENUE 3224 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 19007 ideasfromtheedge 2850 REVENUE 1961 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 776 ideasfromtheedge 72400 REVENUE 2327 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 15858 builders 10500 REVENUE 1559 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 20623 funny 55000 REVENUE 785 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 21406 podcasts 288950 REVENUE 3114 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 9365 bitcoin_beginners 376850 REVENUE 3280 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 19289 AGORA 50050 REVENUE 240 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 19527 Stacker_Sports 235200 REVENUE 3015 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 19660 opensource 19250 REVENUE 1981 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 14280 econ 87250 REVENUE 1784 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 1584 security 100000000 REVENUE 283 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 21389 events 79400 REVENUE 633 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 9695 AGORA 6975 REVENUE 3040 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 21194 A_bit_of_Good_News 21000 REVENUE 3360 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 21400 UFOs 22050 REVENUE 1007 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 17891 Music 132330 REVENUE 656 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 16145 Music 75650 REVENUE 2431 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 10719 bitcoin_beginners 112650 REVENUE 244 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 7877 Stacker_Sports 56300 REVENUE 3288 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 5017 Mining_Self_Hosting_FOSS 7040 REVENUE 2966 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 16956 oracle 221100 REVENUE 600 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 910 crypto 46600 REVENUE 2087 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 13216 Outdoors 314400 REVENUE 1555 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 15159 DIY 26100 REVENUE 3104 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 20084 bitcoin_beginners 8800 REVENUE 2177 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 660 privacy 3150 REVENUE 2544 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 1733 art 74850 REVENUE 1704 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 6137 BooksAndArticles 22500 REVENUE 1566 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 14650 earth 15000 REVENUE 1301 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 9150 sanfrancisco 102800 REVENUE 1865 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 5578 Outdoors 55500 REVENUE 2667 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 3461 NSFW_porn 220300 REVENUE 1713 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 16950 opensource 9300 REVENUE 16 2023-12-06 00:09:29.572 2023-12-06 00:09:29.572 2101 christianity 156000 BILLING 2952 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 16753 privacy 1000000000 REVENUE 2598 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 1985 builders 16250 REVENUE 3108 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 7960 retrogaming 46500 REVENUE 1309 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 18310 BooksAndArticles 68202 REVENUE 270 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 14449 stocks 246150 REVENUE 1736 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 6555 news 5000 REVENUE 2241 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 644 history 293327 REVENUE 3095 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 8998 libertarian 6550 REVENUE 345 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 18446 AccessTribe 61550 REVENUE 3094 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21303 movies 174550 REVENUE 2240 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 19668 startups 15500 REVENUE 1776 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 20691 AMA 10750 REVENUE 2495 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 21356 videos 68450 REVENUE 2849 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 16214 Photography 68450 REVENUE 1252 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 19531 Stacker_Sports 13086550 REVENUE 1696 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 6164 Music 995095 REVENUE 1019 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 1454 retrogaming 10500 REVENUE 279 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19987 libertarian 108950 REVENUE 3266 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 10519 crypto 772150 REVENUE 1687 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 14657 Outdoors 604200 REVENUE 1151 2024-01-01 18:44:22.389 2024-01-01 18:44:22.389 1584 education 164150 BILLING 1581 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 18274 movies 55050 REVENUE 2605 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 14552 opensource 3150 REVENUE 2967 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 951 earth 15650 REVENUE 1824 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 12606 Stacker_Sports 8650 REVENUE 221 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 18309 Dogs_And_Cats 71800 REVENUE 1452 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 5522 Ask_SN 23100 REVENUE 3198 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 18473 Music 56500 REVENUE 2633 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 14959 podcasts 41300 REVENUE 2923 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 640 DIY 10000 REVENUE 1357 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 19837 Memes 50000 REVENUE 2829 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 19537 AI 3395 REVENUE 3343 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 18829 polls 6500 REVENUE 1728 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 2942 DIY 20500 REVENUE 2465 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 13781 Music 156300 REVENUE 1459 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 636 health 623859 REVENUE 1146 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 20243 movies 117050 REVENUE 2424 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 704 security 90600 REVENUE 848 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 2963 bitdevs 5000 REVENUE 2840 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 6058 language_learning 66750 REVENUE 2358 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 17984 Photography 10400 REVENUE 1872 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 1602 polls 536100 REVENUE 1202 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 19902 BooksAndArticles 2192800 REVENUE 3071 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21493 econ 134800 REVENUE 303 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 9985 privacy 283600 REVENUE 2900 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 19506 movies 241150 REVENUE 1265 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 15386 security 158772 REVENUE 2962 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 4502 sanfrancisco 270900 REVENUE 386 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 18076 Cannabis 63725 REVENUE 2756 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 9167 news 10000 REVENUE 1064 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 17513 hiphop 154300 REVENUE 1938 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 20502 opensource 253750 REVENUE 1134 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 5160 security 50000 REVENUE 2960 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 20340 stocks 100000000 REVENUE 703 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 16042 Dogs_And_Cats 205850 REVENUE 3074 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 673 builders 1055000 REVENUE 436 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 9261 bitcoin_beginners 6050 REVENUE 2364 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 6653 polls 50279 REVENUE 2213 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 10591 health 12500 REVENUE 1532 2024-01-09 12:55:19.382 2024-01-09 12:55:19.382 718 ideasfromtheedge 6050 BILLING 1101 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20680 AGORA 1677000 REVENUE 2820 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 21014 movies 58239 REVENUE 2133 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 12220 espanol 65600 REVENUE 2156 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 4633 mostly_harmless 8500 REVENUE 811 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 19142 lightning 769100 REVENUE 1188 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 8037 AI 501050 REVENUE 3434 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 2774 hiphop 110500 REVENUE 3466 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 1060 bitcoin_beginners 45500 REVENUE 810 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 20036 privacy 14112200 REVENUE 1487 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 21155 BooksAndArticles 115150 REVENUE 177 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 15624 events 116800 REVENUE 2026 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 909 Psychedelics 85600 REVENUE 1663 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 16556 UFOs 7150 REVENUE 2811 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 1237 libertarian 58000 REVENUE 27 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 20778 Stacker_Sports 13542 REVENUE 3323 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 13527 christianity 30800 REVENUE 2066 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 18528 crypto 6900 REVENUE 2596 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 14168 Design 23050 REVENUE 1528 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 1697 Psychedelics 6250 REVENUE 2104 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 15160 BooksAndArticles 298100 REVENUE 114 2023-12-09 00:49:13.078 2023-12-09 00:49:13.078 18896 Photography 37900 BILLING 1691 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 7587 bitdevs 8100 REVENUE 1113 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 16350 education 97750 REVENUE 2464 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 8570 security 93900 REVENUE 2930 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 18836 news 207100 REVENUE 802 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 21254 earth 2100 REVENUE 2143 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 11192 lightning 7350 REVENUE 1537 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 16956 A_bit_of_Good_News 89119 REVENUE 3008 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 686 movies 24600 REVENUE 2957 2024-02-16 23:15:07.921 2024-02-16 23:15:07.921 1389 culture 98900 BILLING 2594 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 14045 art 670000 REVENUE 2804 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 1175 libertarian 43400 REVENUE 2089 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 20897 BooksAndArticles 158100 REVENUE 2308 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 17552 Value4ValueEducation 214900 REVENUE 698 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 628 Cannabis 1050 REVENUE 1517 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 1439 christianity 100000000 REVENUE 2421 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 21509 AccessTribe 136050 REVENUE 1878 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 10818 Music 7050 REVENUE 103 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 7978 education 11100350 REVENUE 1427 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 954 bitdevs 250500 REVENUE 1270 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 13987 Design 5000 REVENUE 3344 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 20546 health 37100 REVENUE 1807 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21541 ecash 2133900 REVENUE 3414 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 18896 earth 6050 REVENUE 3003 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 15337 privacy 25928750 REVENUE 1157 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1120 bitcoin_beginners 10500 REVENUE 2920 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20594 Music 109650 REVENUE 3437 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 19043 Photography 36700 REVENUE 2588 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 16347 A_bit_of_Good_News 30050 REVENUE 1269 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 802 Outdoors 14200 REVENUE 836 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 2046 events 5000 REVENUE 1648 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 5359 health 231000 REVENUE 2299 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 999 Photography 88350 REVENUE 672 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 21194 science 15350 REVENUE 1751 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 19987 lightning 1050 REVENUE 2738 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 5522 movies 439000 REVENUE 2783 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 946 videos 76800 REVENUE 2361 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 4570 ecash 1000000000 REVENUE 949 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 3400 history 2500 REVENUE 2022 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 825 bitcoin_beginners 698000 REVENUE 314 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 13249 earth 49300 REVENUE 3417 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 6765 ecash 238250 REVENUE 2997 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 21036 japan 118050 REVENUE 3143 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 9335 radio 86350 REVENUE 2888 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 14169 Photography 118250 REVENUE 1742 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 6765 startups 20000 REVENUE 139 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 21412 charts 256395 REVENUE 2910 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 21103 DIY 3000 REVENUE 2368 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 20756 Ask_SN 97750 REVENUE 1303 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 3392 history 11500 REVENUE 1072 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 16747 Personal_Finance 3344 REVENUE 3255 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 18473 earth 27850 REVENUE 2005 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 5791 devs 167150 REVENUE 2216 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 9421 UFOs 193481 REVENUE 2561 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 1845 art 269650 REVENUE 961 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 1620 podcasts 192679 REVENUE 1177 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 805 oracle 201969 REVENUE 337 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 18635 bitdevs 506233 REVENUE 2215 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 15094 econ 16550 REVENUE 171 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 1237 lol 6000 REVENUE 1025 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 16747 privacy 57400 REVENUE 2548 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 19878 ecash 5000 REVENUE 2268 2024-01-28 10:26:45.992 2024-01-28 10:26:45.992 20964 sanfrancisco 248100 BILLING 1448 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 4415 news 11050 REVENUE 1195 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 1611 AI 100000000 REVENUE 3440 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 7966 science 171035 REVENUE 725 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 21401 podcasts 12772750 REVENUE 1910 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 20980 japan 134570 REVENUE 2639 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 1602 japan 31650 REVENUE 554 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 20073 events 27995 REVENUE 108 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 15337 UFOs 22750 REVENUE 3123 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 2652 science 12941350 REVENUE 361 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 10469 ecash 12450 REVENUE 823 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 16229 retrogaming 36500 REVENUE 2949 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 2748 devs 396950 REVENUE 2841 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 19735 podcasts 54195 REVENUE 853 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 20816 earth 30900 REVENUE 3402 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 2338 japan 19527400 REVENUE 1438 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 19507 apps 120968 REVENUE 1760 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 20602 science 15100 REVENUE 717 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 18660 Dogs_And_Cats 314800 REVENUE 1971 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 6268 Personal_Finance 26900 REVENUE 1391 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 11996 news 118050 REVENUE 2990 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 13599 mostly_harmless 537850 REVENUE 2444 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 9200 dotnet 50000 REVENUE 2113 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 19941 marketplace 87800 REVENUE 818 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 15549 econ 240700 REVENUE 2187 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 13249 art 20345 REVENUE 245 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 5017 Outdoors 10500 REVENUE 2571 2024-02-05 21:29:03.868 2024-02-05 21:29:03.868 2264 radio 164100 BILLING 2903 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20781 christianity 128200 REVENUE 399 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 15588 videos 114400 REVENUE 1764 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 7682 retrogaming 91100 REVENUE 275 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 19292 funny 63100 REVENUE 505 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 4292 bitcoin_beginners 6050 REVENUE 1593 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 16848 videos 309824 REVENUE 3037 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 1650 earth 1515084 REVENUE 2081 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 12736 libertarian 152250 REVENUE 1199 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 5708 privacy 71800 REVENUE 67 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 2528 Photography 55450 REVENUE 454 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21417 chess 355318 REVENUE 669 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 14545 A_bit_of_Good_News 50000 REVENUE 1009 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 16250 bitdevs 66800 REVENUE 1548 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 9365 christianity 217550 REVENUE 909 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 1090 earth 26000 REVENUE 66 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 13076 art 34550 REVENUE 905 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 20504 christianity 46239 REVENUE 2592 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 7097 radio 50000 REVENUE 2118 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 15147 security 83050 REVENUE 2044 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 1468 podcasts 242450 REVENUE 826 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 8004 history 237745 REVENUE 210 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 9169 econ 90800 REVENUE 624 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 20681 chess 14600 REVENUE 2619 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 8133 art 10500 REVENUE 1795 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21222 lightning 2100 REVENUE 341 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 629 BooksAndArticles 256050 REVENUE 1082 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20340 startups 17100 REVENUE 1797 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 5128 Music 81200 REVENUE 2565 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 756 health 48700 REVENUE 2400 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 19484 mostly_harmless 770617 REVENUE 2715 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 9365 Photography 9000 REVENUE 2675 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 721 health 61850 REVENUE 408 2023-12-15 11:21:03.031 2023-12-15 11:21:03.031 2342 builders 29800 BILLING 1550 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 4487 Value4ValueEducation 66050 REVENUE 1804 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 18101 econ 39700 REVENUE 43 2023-12-06 10:39:30.966 2023-12-06 10:39:30.966 712 news 1048834 BILLING 1141 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 12057 DIY 72950 REVENUE 1102 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 11956 lightning 1050 REVENUE 1433 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 13931 videos 2500 REVENUE 548 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 20452 videos 10100 REVENUE 2582 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 14545 Dogs_And_Cats 6050 REVENUE 1466 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 11873 ecash 501950 REVENUE 650 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 19007 Fitness 256000 REVENUE 3129 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 21605 NixOS 291350 REVENUE 44 2023-12-06 10:55:39.674 2023-12-06 10:55:39.674 17415 Music 100000000 BILLING 1422 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 17741 news 1050 REVENUE 2369 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 2264 Ask_SN 183500 REVENUE 431 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 15337 christianity 273250 REVENUE 398 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1890 builders 48250 REVENUE 2410 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 17722 ideasfromtheedge 21350 REVENUE 697 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 15833 art 6000 REVENUE 2230 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 4692 Outdoors 67858 REVENUE 241 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 20327 Personal_Finance 16750 REVENUE 704 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 21062 crypto 100000000 REVENUE 1212 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 19967 lightning 183250 REVENUE 1950 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 1881 history 33500 REVENUE 3070 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 5806 earth 173724 REVENUE 2160 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 8284 bitcoin_beginners 28000 REVENUE 3102 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21343 startups 1000000000 REVENUE 1067 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 20464 AGORA 562200 REVENUE 599 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 6430 bitdevs 10000 REVENUE 3236 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 19142 Ask_SN 138073 REVENUE 873 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 4225 education 64500 REVENUE 1963 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 18641 Photography 969618 REVENUE 1933 2024-01-19 17:18:48.285 2024-01-19 17:18:48.285 21589 Design 163600 BILLING 2381 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 18472 UFOs 5800 REVENUE 463 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 726 culture 5000 REVENUE 636 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 20412 Music 100000000 REVENUE 671 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 18994 startups 31350 REVENUE 490 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 1741 oracle 118950 REVENUE 1130 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 16410 AGORA 40350 REVENUE 3217 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 1124 Outdoors 25200 REVENUE 1446 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 19332 sanfrancisco 276172 REVENUE 713 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 21600 conspiracy 5000 REVENUE 1536 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 20327 opensource 2666677 REVENUE 2742 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 11018 builders 501050 REVENUE 1725 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 895 sanfrancisco 50450 REVENUE 451 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 18119 Music 225550 REVENUE 213 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 11716 ecash 70600 REVENUE 2412 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 11378 BooksAndArticles 5500 REVENUE 2673 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 5829 Stacker_Sports 12650 REVENUE 1110 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 21520 podcasts 65886 REVENUE 2426 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 3392 apps 164750 REVENUE 1707 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 8544 Photography 50000 REVENUE 565 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 12808 bitdevs 56100 REVENUE 3382 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 866 startups 18750 REVENUE 2744 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 9365 retrogaming 20300 REVENUE 1279 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 837 BooksAndArticles 100000000 REVENUE 2739 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 10944 Dogs_And_Cats 50550 REVENUE 2408 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 18829 culture 3000 REVENUE 2196 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 19583 BooksAndArticles 5500 REVENUE 2352 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 21522 history 18600 REVENUE 969 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 16347 BooksAndArticles 592115 REVENUE 1782 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 21070 DIY 6050 REVENUE 607 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 919 UFOs 129900 REVENUE 809 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 11527 Personal_Finance 22650 REVENUE 1695 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 2774 UFOs 13600 REVENUE 2425 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 674 ru 55500 REVENUE 1312 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 18809 podcasts 41550 REVENUE 2527 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 12289 security 16050 REVENUE 1152 2024-01-02 01:11:41.097 2024-01-02 01:11:41.097 15326 AGORA 100000000 BILLING 186 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 19622 ideasfromtheedge 233685 REVENUE 281 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 16329 bitcoin_beginners 19350 REVENUE 378 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 946 DIY 79300 REVENUE 737 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 10771 BooksAndArticles 100200 REVENUE 3304 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 19864 japan 145000 REVENUE 510 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 826 econ 100000000 REVENUE 1500 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 3440 Mining_Self_Hosting_FOSS 55799 REVENUE 864 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 17838 lightning 53100 REVENUE 1632 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 20187 news 119850 REVENUE 2899 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 9438 hiphop 42800 REVENUE 660 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 20120 videos 81800 REVENUE 2706 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 16124 science 6500 REVENUE 2819 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 20683 Stacker_Sports 370650 REVENUE 2992 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 19153 devs 90850 REVENUE 799 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 12821 bitcoin_beginners 27250 REVENUE 390 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1571 bitdevs 8550 REVENUE 2892 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 10352 Dogs_And_Cats 70300 REVENUE 1641 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 19469 earth 123600 REVENUE 756 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 21233 chess 121450 REVENUE 2200 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 4378 lol 52050 REVENUE 1337 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 14774 news 128350 REVENUE 1915 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 5728 science 76644 REVENUE 102 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 18630 culture 106100 REVENUE 794 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 12976 startups 62000 REVENUE 3239 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 814 news 870639 REVENUE 3292 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 9426 AI 6050 REVENUE 2683 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 4166 christianity 100000000 REVENUE 608 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 681 videos 459628 REVENUE 2722 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 19148 privacy 16500 REVENUE 2083 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 20757 econ 53050 REVENUE 1587 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 15719 Personal_Finance 62300 REVENUE 1066 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 16536 hiphop 147950 REVENUE 552 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 4035 oracle 130300 REVENUE 1908 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 21103 BooksAndArticles 62050 REVENUE 3249 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 2022 Stacker_Sports 56000 REVENUE 1698 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 2111 polls 100000000 REVENUE 2105 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 20871 mostly_harmless 100000000 REVENUE 2064 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 20267 BooksAndArticles 413095 REVENUE 1768 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 11417 Design 1055000 REVENUE 128 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 3371 Stacker_Sports 14750 REVENUE 955 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 6573 news 10000 REVENUE 3449 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 20614 movies 57280 REVENUE 131 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 13843 econ 202550 REVENUE 3186 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 1114 BooksAndArticles 1550 REVENUE 1907 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 1000 news 1100 REVENUE 199 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 8664 Stacker_Sports 1163850 REVENUE 440 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 7583 hiphop 23350 REVENUE 2114 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 2537 econ 552800 REVENUE 3248 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 19506 Ask_SN 5000 REVENUE 36 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 1733 espanol 196400 REVENUE 2684 2024-02-08 07:14:53.962 2024-02-08 07:14:53.962 18524 DIY 13550 BILLING 1527 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 19907 art 21700 REVENUE 3083 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 1705 libertarian 55000 REVENUE 2445 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 19118 news 262150 REVENUE 2287 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 1833 BooksAndArticles 109450 REVENUE 376 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 635 polls 33150 REVENUE 220 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 17041 Dogs_And_Cats 57900 REVENUE 2226 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 1426 podcasts 28000 REVENUE 1377 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 1720 espanol 546162 REVENUE 3004 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 20187 privacy 218000 REVENUE 49 2023-12-06 17:48:25.661 2023-12-06 17:48:25.661 17953 education 16450 BILLING 863 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 670 science 473100 REVENUE 2343 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 18344 radio 117550 REVENUE 2714 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 19640 Photography 10500 REVENUE 2165 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 6573 japan 188100 REVENUE 702 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 19996 dotnet 143200 REVENUE 2591 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 21222 science 31800 REVENUE 2724 2024-02-09 17:12:56.682 2024-02-09 17:12:56.682 2773 hiphop 558106 BILLING 1310 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 21417 health 4750 REVENUE 1376 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 18829 security 85200 REVENUE 533 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 2832 bitcoin_beginners 28155 REVENUE 1957 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 20257 libertarian 5000 REVENUE 1494 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 825 privacy 230339 REVENUE 1291 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 16536 ideasfromtheedge 54598 REVENUE 443 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 21339 education 342100 REVENUE 277 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 7097 bitcoin_beginners 203500 REVENUE 3042 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 16432 ideasfromtheedge 5450 REVENUE 1185 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 13217 security 511350 REVENUE 1059 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 9695 podcasts 23100 REVENUE 3320 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 17707 crypto 11050 REVENUE 3464 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 15484 Personal_Finance 158050 REVENUE 3459 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 10493 lightning 177766 REVENUE 360 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 4048 science 17150 REVENUE 2512 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 10273 hiphop 212350 REVENUE 601 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 14905 science 15000 REVENUE 2397 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 4079 litdevs 5500 REVENUE 333 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 16848 Memes 118000 REVENUE 1595 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 19809 libertarian 14145 REVENUE 721 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 20504 culture 60230 REVENUE 2558 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 13169 oracle 66150 REVENUE 3270 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 2176 culture 18150 REVENUE 1405 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 4064 events 265150 REVENUE 347 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 20892 ideasfromtheedge 27300 REVENUE 3367 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 917 bitdevs 145050 REVENUE 3410 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 19243 libertarian 277167 REVENUE 2 2023-12-05 19:33:35.92 2023-12-05 19:33:35.92 17568 conspiracy 22980 BILLING 806 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 2256 Stacker_Sports 5500 REVENUE 2666 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 21521 podcasts 24100 REVENUE 2963 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 6136 devs 17350 REVENUE 1773 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 16858 econ 63400 REVENUE 3062 2024-02-19 16:28:38.658 2024-02-19 16:28:38.658 20597 AMA 180800 BILLING 5 2023-12-05 20:20:49.338 2023-12-05 20:20:49.338 19995 oracle 38100 BILLING 1894 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 7766 sanfrancisco 21000 REVENUE 2976 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 21047 builders 141750 REVENUE 3069 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 14074 oracle 42350 REVENUE 1052 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 8004 NSFW_porn 43682 REVENUE 2648 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 701 podcasts 233750 REVENUE 21 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 15161 opensource 518621 REVENUE 1345 2024-01-05 20:41:51.832 2024-01-05 20:41:51.832 7978 health 20003 BILLING 3188 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 674 bitdevs 639250 REVENUE 2570 2024-02-05 20:41:52.501 2024-02-05 20:41:52.501 13759 crypto 40000 BILLING 478 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 12516 Outdoors 39500 REVENUE 1336 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 18008 japan 12100 REVENUE 2450 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 20058 polls 101050 REVENUE 562 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 15491 culture 87300 REVENUE 675 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 20479 econ 34350 REVENUE 1867 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 4314 movies 66450 REVENUE 1095 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1483 videos 57050 REVENUE 2751 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 14552 bitcoin_beginners 5500 REVENUE 343 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 14213 culture 42150 REVENUE 1060 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 10519 devs 33500 REVENUE 729 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 11866 NSFW_porn 25900 REVENUE 718 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 11263 BooksAndArticles 15850 REVENUE 413 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 1970 UFOs 1052700 REVENUE 3081 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21589 Dogs_And_Cats 3550 REVENUE 647 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 14278 NixOS 655950 REVENUE 2881 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 7125 bitdevs 11550 REVENUE 2166 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 16988 libertarian 9450 REVENUE 1569 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 19446 Value4ValueEducation 30833 REVENUE 7 2023-12-05 20:44:54.262 2023-12-05 20:44:54.262 1738 art 90650 BILLING 71 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 2204 NixOS 12500 REVENUE 2317 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 20015 libertarian 5000 REVENUE 2617 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 18101 Fitness 63300 REVENUE 1597 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20272 Stacker_Sports 1171450 REVENUE 585 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 1012 hiphop 9200 REVENUE 3269 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 18557 Photography 9100 REVENUE 1658 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 2101 Personal_Finance 100000000 REVENUE 165 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 20647 art 293650 REVENUE 1333 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 13843 retrogaming 36500 REVENUE 872 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 13527 Outdoors 100000000 REVENUE 326 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 16276 christianity 18599 REVENUE 767 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 14515 builders 52100 REVENUE 1610 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 6202 Outdoors 602554 REVENUE 2814 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 9099 privacy 74150 REVENUE 18 2023-12-06 03:20:19.324 2023-12-06 03:20:19.324 19967 lol 73600 BILLING 2478 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 16830 bitdevs 18000 REVENUE 2645 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 6688 Music 17575 REVENUE 2946 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 15938 Dogs_And_Cats 100000000 REVENUE 2289 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 2016 earth 31450 REVENUE 1211 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 4115 Dogs_And_Cats 11550 REVENUE 3475 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 1198 stocks 17050 REVENUE 2173 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 20616 privacy 63419 REVENUE 1300 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 4538 NSFW_porn 67264 REVENUE 677 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 17696 AGORA 310745 REVENUE 3327 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 19842 AGORA 29100 REVENUE 3362 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 10536 culture 61750 REVENUE 1614 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 11288 econ 54250 REVENUE 495 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 17109 Cannabis 5000 REVENUE 667 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 14267 opensource 36850 REVENUE 1788 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 20969 startups 100000000 REVENUE 1397 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 20015 libertarian 6050 REVENUE 1672 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 20904 devs 192500 REVENUE 20 2023-12-06 05:04:28.732 2023-12-06 05:04:28.732 20108 oracle 36300 BILLING 1398 2024-01-06 11:50:51.666 2024-01-06 11:50:51.666 2098 bitcoin_beginners 14200 BILLING 485 2023-12-18 01:05:00.178 2023-12-18 01:05:00.178 13398 earth 137385 BILLING 1328 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 21070 dotnet 28550 REVENUE 3418 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 12965 health 76150 REVENUE 2227 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 1751 conspiracy 56225 REVENUE 2015 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 1008 devs 104000 REVENUE 299 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 18310 litdevs 5150 REVENUE 663 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 19759 Value4ValueEducation 193849 REVENUE 2461 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 10611 privacy 209550 REVENUE 793 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 8289 christianity 18300 REVENUE 2257 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 18717 Mining_Self_Hosting_FOSS 20750 REVENUE 435 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 5519 privacy 168800 REVENUE 963 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 18372 mostly_harmless 180248 REVENUE 2024 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 20655 movies 100000000 REVENUE 72 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 20701 movies 74849 REVENUE 1757 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 917 BooksAndArticles 41950 REVENUE 2929 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 18932 funny 5869 REVENUE 3157 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 4128 bitcoin_beginners 23550 REVENUE 2072 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 20636 ru 3550 REVENUE 2767 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 13781 Cannabis 7050 REVENUE 520 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 19282 builders 37500 REVENUE 1879 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 13927 libertarian 25250 REVENUE 2768 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 787 earth 80550 REVENUE 2624 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 20852 BooksAndArticles 100000000 REVENUE 2867 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 8796 BooksAndArticles 16000 REVENUE 1844 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 7916 security 77750 REVENUE 645 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 1751 movies 27400 REVENUE 362 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 18454 privacy 31500 REVENUE 3119 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 5128 BooksAndArticles 25850 REVENUE 3017 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 18452 Photography 60900 REVENUE 1842 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 4692 libertarian 10850 REVENUE 1275 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 642 Music 210000 REVENUE 1737 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 1564 Outdoors 138630 REVENUE 169 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 15890 opensource 5850 REVENUE 2498 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 16653 ru 53150 REVENUE 625 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 13246 bitcoin_beginners 35750 REVENUE 2793 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 1705 Dogs_And_Cats 53537 REVENUE 3359 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 20073 Personal_Finance 21700 REVENUE 1236 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 21070 security 35100 REVENUE 999 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 5761 polls 10000 REVENUE 356 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 763 health 15600 REVENUE 754 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 12272 Cannabis 12700 REVENUE 2797 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 19553 bitdevs 79100 REVENUE 29 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 17523 podcasts 41000 REVENUE 2818 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 722 Music 24150 REVENUE 2390 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 9332 Music 113000 REVENUE 3424 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 16665 lightning 1050 REVENUE 1103 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 18138 podcasts 21700 REVENUE 2629 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 20981 history 48650 REVENUE 2411 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 1718 news 12636500 REVENUE 1817 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 11018 education 1050 REVENUE 726 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 2942 lightning 50450 REVENUE 2856 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 18772 security 1750 REVENUE 1144 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 19906 startups 5000 REVENUE 1001 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 20381 crypto 20150 REVENUE 2630 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 16456 health 13550 REVENUE 1271 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 11967 ideasfromtheedge 316500 REVENUE 1735 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 19864 security 108550 REVENUE 2531 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 18690 Stacker_Sports 1361250 REVENUE 2485 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 703 ecash 35100 REVENUE 189 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 19121 Stacker_Sports 92600 REVENUE 1232 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 1310 news 7100 REVENUE 918 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 15728 videos 156650 REVENUE 175 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 18271 B2B 19850 REVENUE 422 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 1697 podcasts 6300 REVENUE 3284 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 21339 Ask_SN 72700 REVENUE 228 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 19034 mostly_harmless 160550 REVENUE 3211 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 19332 libertarian 51300 REVENUE 1344 2024-01-05 20:20:49.689 2024-01-05 20:20:49.689 17570 education 10650 BILLING 2236 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 4062 science 287095 REVENUE 2340 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 12821 bitcoin_beginners 20600 REVENUE 3160 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 12516 movies 18100 REVENUE 2413 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 1105 education 206900 REVENUE 2145 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 20514 AMA 100050 REVENUE 2178 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 18678 education 18350 REVENUE 803 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 1162 dotnet 50000 REVENUE 2761 2024-02-10 12:03:35.776 2024-02-10 12:03:35.776 919 bitdevs 74250 BILLING 2001 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 9342 ru 86650 REVENUE 614 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 859 oracle 135300 REVENUE 2807 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 9337 ecash 104000 REVENUE 385 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 768 culture 425500 REVENUE 928 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 861 lol 11300 REVENUE 977 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 2039 health 72064 REVENUE 821 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 895 culture 303828 REVENUE 773 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 1039 Ask_SN 9300 REVENUE 2508 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 16154 Fitness 1500 REVENUE 1420 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 18690 UFOs 8550 REVENUE 2014 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 14169 opensource 25500 REVENUE 2857 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 828 Photography 759150 REVENUE 1516 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 4763 retrogaming 9500 REVENUE 1678 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 15226 privacy 22050 REVENUE 1976 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 1802 science 57100 REVENUE 3473 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 6749 Mining_Self_Hosting_FOSS 308100 REVENUE 209 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 12024 AGORA 3050 REVENUE 3352 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 993 Mining_Self_Hosting_FOSS 20650 REVENUE 590 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 18393 polls 6100 REVENUE 3298 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 20182 art 50000 REVENUE 295 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 16704 Fitness 1117750 REVENUE 2745 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 1800 Dogs_And_Cats 241950 REVENUE 1317 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 2709 DIY 11150 REVENUE 263 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 20730 retrogaming 54500 REVENUE 2631 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 9820 Personal_Finance 152904 REVENUE 3355 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 21395 lightning 20650 REVENUE 772 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 20430 earth 52400 REVENUE 426 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 18426 Ask_SN 27000 REVENUE 2870 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 9036 health 114350 REVENUE 3162 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 19174 education 5650 REVENUE 712 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 20479 bitdevs 77423 REVENUE 2650 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 18524 oracle 186100 REVENUE 3451 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 20129 B2B 20300 REVENUE 3285 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 11430 history 8800 REVENUE 839 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 19857 AMA 1050 REVENUE 198 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 21620 UFOs 123900 REVENUE 3038 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 12566 BooksAndArticles 53800 REVENUE 583 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 17927 science 46950 REVENUE 23 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 1474 Stacker_Sports 11050 REVENUE 3289 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 11967 Design 115750 REVENUE 1973 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 2206 opensource 17061 REVENUE 2824 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 21242 retrogaming 8084 REVENUE 2233 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 20272 ecash 6450 REVENUE 1767 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 18904 libertarian 11225 REVENUE 77 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 6430 Dogs_And_Cats 7100 REVENUE 2387 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 17927 funny 5100 REVENUE 2746 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 2711 Photography 5500 REVENUE 305 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19854 events 49750 REVENUE 2635 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 15938 BooksAndArticles 187100 REVENUE 280 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 10270 AGORA 104550 REVENUE 1598 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 10311 security 56850 REVENUE 2122 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 21418 econ 38500 REVENUE 371 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 16406 privacy 31450 REVENUE 1720 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 18139 builders 126150 REVENUE 293 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 18452 mostly_harmless 16350 REVENUE 2350 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 9330 devs 9200 REVENUE 2211 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 19147 history 208600 REVENUE 1552 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 1738 Personal_Finance 365700 REVENUE 2816 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 3353 art 121100 REVENUE 1694 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 18601 Dogs_And_Cats 54700 REVENUE 2680 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 11298 bitcoin_beginners 30000 REVENUE 2741 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 13348 Stacker_Sports 90100 REVENUE 3395 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 11820 libertarian 114000 REVENUE 3047 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 2942 startups 523150 REVENUE 2924 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 15858 bitdevs 11600 REVENUE 3294 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 8245 Outdoors 62950 REVENUE 2828 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 20023 charts 5000 REVENUE 2355 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 9 christianity 12100 REVENUE 1952 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 16357 Design 143150 REVENUE 75 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 19941 econ 5500 REVENUE 690 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 20546 ecash 232500 REVENUE 2273 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 1959 DeepDive 235818 REVENUE 2319 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 17316 lightning 260900 REVENUE 1479 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 1130 opensource 33550 REVENUE 1030 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 19638 charts 10372 REVENUE 2964 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 17064 builders 7150 REVENUE 389 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1135 radio 53200 REVENUE 3278 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 730 movies 5250 REVENUE 2654 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 21514 science 213750 REVENUE 2244 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 4989 B2B 117050 REVENUE 3368 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 17696 funny 8790 REVENUE 588 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 11498 bitcoin_beginners 134650 REVENUE 1221 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 16229 lightning 510200 REVENUE 1815 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 15271 Photography 28150 REVENUE 3386 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 9334 crypto 46950 REVENUE 1918 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 9843 videos 118900 REVENUE 2927 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 15115 crypto 46550 REVENUE 207 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 21585 econ 19050 REVENUE 1220 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 20479 science 335750 REVENUE 2099 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 20454 Dogs_And_Cats 2150 REVENUE 2443 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 19924 privacy 363700 REVENUE 2231 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 9363 marketplace 237490 REVENUE 986 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 16351 oracle 12788 REVENUE 1020 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 3518 UFOs 158550 REVENUE 377 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 19398 Cannabis 256000 REVENUE 866 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 19016 AI 7000 REVENUE 1389 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 16788 stocks 27774 REVENUE 1190 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 9339 art 36200 REVENUE 936 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 628 education 56000 REVENUE 1381 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 16267 startups 122250 REVENUE 3149 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 21180 science 482389 REVENUE 3392 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 10484 devs 11850 REVENUE 926 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 11145 podcasts 585150 REVENUE 2111 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 9356 Value4ValueEducation 129950 REVENUE 3058 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 1620 Personal_Finance 44600 REVENUE 2285 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 12072 Stacker_Sports 269989 REVENUE 535 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 1959 bitcoin_beginners 190450 REVENUE 264 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 12160 Dogs_And_Cats 1750 REVENUE 2277 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 5565 earth 50000 REVENUE 3082 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 7425 japan 15500 REVENUE 705 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 17415 movies 2330300 REVENUE 2399 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 18357 stocks 102150 REVENUE 816 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 18500 devs 167630 REVENUE 3356 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 14202 Outdoors 872861 REVENUE 2808 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 749 opensource 153000 REVENUE 2012 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 16929 sanfrancisco 12750 REVENUE 2417 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 7510 ru 157450 REVENUE 2882 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 16348 lightning 10050 REVENUE 3084 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 21356 Personal_Finance 128950 REVENUE 2367 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 1319 art 27150 REVENUE 134 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 9433 Personal_Finance 100000000 REVENUE 2581 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 2123 AccessTribe 10550 REVENUE 1531 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 1825 crypto 13050 REVENUE 757 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 19103 podcasts 76730 REVENUE 2546 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 16229 AGORA 26525 REVENUE 2642 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 616 Outdoors 5309450 REVENUE 779 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 21398 UFOs 1250 REVENUE 187 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 17226 Cannabis 11050 REVENUE 2944 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 9084 hiphop 50000 REVENUE 2567 2024-02-05 19:40:11.993 2024-02-05 19:40:11.993 20257 lightning 15000 BILLING 2243 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 5701 sanfrancisco 98700 REVENUE 1247 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 9261 Photography 25850 REVENUE 1619 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 15336 Music 22050 REVENUE 914 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 9482 polls 1050 REVENUE 2965 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 940 chess 55250 REVENUE 2171 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 1130 Fitness 602414 REVENUE 3379 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 715 Outdoors 106750 REVENUE 995 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 21062 history 50000 REVENUE 2396 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 19981 crypto 132200 REVENUE 3438 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 16341 lightning 1078300 REVENUE 3433 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 1468 AGORA 60450 REVENUE 2270 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 6384 Photography 115700 REVENUE 2052 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 4388 podcasts 12100 REVENUE 1789 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 1272 bitcoin_beginners 21800 REVENUE 1721 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 21444 science 113300 REVENUE 1324 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 21058 espanol 582150 REVENUE 367 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 20376 ru 27046 REVENUE 500 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 5791 art 20000 REVENUE 148 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 1272 Photography 51850 REVENUE 3290 2024-02-25 15:02:36.272 2024-02-25 15:02:36.272 15060 Cannabis 678845 BILLING 2712 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 7185 builders 82305 REVENUE 2078 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 18393 radio 384737 REVENUE 2065 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 18321 art 5000 REVENUE 507 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 1833 Stacker_Sports 202998 REVENUE 3481 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 17124 privacy 7100 REVENUE 1123 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 9916 devs 12800 REVENUE 3461 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 3304 hiphop 36450 REVENUE 304 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 21352 art 104800 REVENUE 266 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 15052 Design 203700 REVENUE 2749 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 2065 podcasts 109900 REVENUE 465 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 716 japan 140950 REVENUE 453 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 8095 UFOs 49700 REVENUE 2847 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 657 devs 35100 REVENUE 2586 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 11038 Design 100395 REVENUE 2902 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 2233 BooksAndArticles 9200 REVENUE 2002 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 14939 education 6050 REVENUE 2796 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 18714 B2B 10750 REVENUE 3333 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 18380 builders 100000000 REVENUE 1515 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 19463 dotnet 8050 REVENUE 1590 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20586 dotnet 60700 REVENUE 2479 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 3400 earth 181250 REVENUE 109 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 14705 science 47100 REVENUE 2353 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 16809 podcasts 126550 REVENUE 2696 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 1723 opensource 1134650 REVENUE 1983 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 760 earth 52050 REVENUE 2901 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 1825 DIY 83900 REVENUE 1436 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 766 NixOS 3600 REVENUE 2258 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 16543 history 1573750 REVENUE 2389 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 1064 B2B 9750 REVENUE 238 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 10693 Outdoors 33050 REVENUE 1322 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 15337 bitdevs 15950 REVENUE 3118 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 1751 videos 26050 REVENUE 2475 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 9796 Design 47050 REVENUE 954 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 5776 japan 104900 REVENUE 1228 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 18177 art 100000000 REVENUE 2480 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 20674 science 29171050 REVENUE 1470 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 16410 news 1100 REVENUE 501 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 706 Dogs_And_Cats 21500 REVENUE 2175 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 1162 oracle 227816 REVENUE 2068 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 5728 bitcoin_beginners 111050 REVENUE 2388 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 2176 Photography 78650 REVENUE 1335 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 2176 privacy 75165 REVENUE 455 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21079 startups 380355 REVENUE 437 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 13174 Photography 2500 REVENUE 1302 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 9275 security 219650 REVENUE 1458 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 11776 devs 235495 REVENUE 644 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 5293 devs 11534 REVENUE 561 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 623 radio 104045 REVENUE 2193 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 18426 science 12600 REVENUE 3351 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 9845 bitcoin_beginners 8800 REVENUE 570 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 2224 history 13000 REVENUE 1184 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 8080 sanfrancisco 614275 REVENUE 1136 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 18357 radio 67500 REVENUE 2195 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 18500 christianity 13534079 REVENUE 2314 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 14202 econ 153650 REVENUE 457 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 9494 UFOs 259150 REVENUE 3124 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 18119 startups 104350 REVENUE 2610 2024-02-06 23:34:27.293 2024-02-06 23:34:27.293 19622 ideasfromtheedge 11350 BILLING 1290 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 20614 art 126400 REVENUE 1044 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 2232 funny 136250 REVENUE 1621 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 1825 podcasts 26600 REVENUE 3194 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 14260 movies 28650 REVENUE 544 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 1881 Design 19050 REVENUE 1014 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 15719 mempool 1072250 REVENUE 2658 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 10719 art 6100 REVENUE 3034 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 5829 Music 5250 REVENUE 2025 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 5557 oracle 11000 REVENUE 1171 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 642 hiphop 456990 REVENUE 3380 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 13046 Outdoors 5000 REVENUE 2249 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 9552 UFOs 31000 REVENUE 661 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 20911 oracle 24650 REVENUE 2307 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 11820 AGORA 22800 REVENUE 2225 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 21386 news 5000 REVENUE 2977 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 658 Memes 11100 REVENUE 1318 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 20858 Stacker_Sports 17080 REVENUE 1445 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 17638 Design 100000000 REVENUE 720 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 9 libertarian 100000000 REVENUE 1873 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 11263 science 11300 REVENUE 456 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 20816 history 256750 REVENUE 543 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 3304 DeepDive 117950 REVENUE 3068 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 14731 builders 10504550 REVENUE 335 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 10818 bitcoin_beginners 6100 REVENUE 2526 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 19494 security 2100 REVENUE 1828 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 1733 Memes 3000 REVENUE 606 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 21063 culture 23450 REVENUE 716 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 16809 libertarian 44600 REVENUE 3314 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 9517 culture 502300 REVENUE 1892 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 12024 espanol 91400 REVENUE 2939 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 19435 bitcoin_beginners 10150 REVENUE 3452 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 18270 Stacker_Sports 112988 REVENUE 3432 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 11523 Dogs_And_Cats 26225 REVENUE 1430 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 6149 econ 87900 REVENUE 1625 2024-01-11 21:41:19.171 2024-01-11 21:41:19.171 19507 privacy 13150 BILLING 798 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 5725 UFOs 15800 REVENUE 3050 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 4062 litdevs 167955 REVENUE 447 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 8713 science 12015 REVENUE 2830 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 1817 science 29700 REVENUE 2778 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 20744 videos 92700 REVENUE 1386 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 1273 earth 42900 REVENUE 3072 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 16177 history 41261 REVENUE 94 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 8713 Memes 3150 REVENUE 1031 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 20563 Memes 181650 REVENUE 686 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 16284 DIY 19500 REVENUE 1360 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 3979 espanol 256400 REVENUE 1722 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 5809 lightning 88450 REVENUE 2027 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 13365 libertarian 55750 REVENUE 3210 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 19821 privacy 5500 REVENUE 2595 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 19096 startups 365045 REVENUE 1321 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 1007 security 226250 REVENUE 3456 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 6030 mostly_harmless 4700 REVENUE 602 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 13177 culture 100000000 REVENUE 1363 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 13553 AMA 26000 REVENUE 1087 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 802 Outdoors 47850 REVENUE 401 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 21214 Dogs_And_Cats 1050 REVENUE 896 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 11897 culture 62952 REVENUE 487 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 14213 bitdevs 5000 REVENUE 1239 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 3409 AI 5000 REVENUE 804 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 1802 bitcoin_beginners 116150 REVENUE 1524 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 18735 privacy 113400 REVENUE 2551 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 3304 lightning 250250 REVENUE 2694 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 20560 news 86900 REVENUE 1577 2024-01-10 12:08:05.757 2024-01-10 12:08:05.757 18640 hiphop 118900 BILLING 420 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 10771 retrogaming 26650 REVENUE 2438 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 3745 Photography 16050 REVENUE 3393 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 11263 BooksAndArticles 5000 REVENUE 1810 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 9920 ru 235700 REVENUE 2159 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 17927 videos 243950 REVENUE 643 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 20756 polls 1395 REVENUE 976 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 18232 mostly_harmless 100000000 REVENUE 214 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 8269 science 97700 REVENUE 2832 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 20099 hiphop 52250 REVENUE 971 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 9992 bitdevs 1350 REVENUE 2774 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 7587 marketplace 735900 REVENUE 830 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 17682 Dogs_And_Cats 754700 REVENUE 699 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 837 lightning 43900 REVENUE 1461 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 19863 culture 37250 REVENUE 188 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 21491 Music 174300 REVENUE 632 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 704 events 141150 REVENUE 1181 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 777 Stacker_Sports 17600 REVENUE 92 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 21514 news 32950 REVENUE 1012 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 19148 polls 105198 REVENUE 1594 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20837 AI 112620 REVENUE 381 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 11714 security 11750 REVENUE 1624 2024-01-11 21:22:52.524 2024-01-11 21:22:52.524 4062 Mining_Self_Hosting_FOSS 58700 BILLING 1636 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 12169 Dogs_And_Cats 100000000 REVENUE 807 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 18270 science 10800 REVENUE 3225 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 894 videos 124550 REVENUE 1904 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 11073 culture 11300 REVENUE 369 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 19637 opensource 4500 REVENUE 3127 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 14267 news 11000650 REVENUE 1431 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 20090 Photography 810984 REVENUE 2528 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 20892 chess 2050 REVENUE 2325 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 15843 econ 25130 REVENUE 2194 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 1237 Dogs_And_Cats 240000 REVENUE 2815 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 11942 history 8850 REVENUE 3207 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 18528 christianity 100000000 REVENUE 302 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 15491 devs 31950 REVENUE 1667 2024-01-13 02:07:32.814 2024-01-13 02:07:32.814 21591 Stacker_Sports 69250 BILLING 1626 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 2367 Personal_Finance 1143709 REVENUE 2922 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 5761 Design 10800 REVENUE 1288 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 4474 ideasfromtheedge 37850 REVENUE 3310 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 20602 libertarian 26450 REVENUE 991 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 16816 AMA 106229 REVENUE 1724 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 19094 DIY 101050 REVENUE 3173 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 15115 art 100000000 REVENUE 1362 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 11288 Outdoors 22000 REVENUE 325 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 759 Music 835546 REVENUE 2608 2024-02-06 08:20:14.458 2024-02-06 08:20:14.458 18909 lightning 137200 BILLING 1075 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 9107 videos 34250 REVENUE 2727 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 20751 AGORA 183700 REVENUE 2190 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 1785 econ 131235 REVENUE 688 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 19863 Outdoors 78050 REVENUE 1280 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 17526 startups 2100 REVENUE 2880 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 1261 christianity 75750 REVENUE 2094 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 16230 bitdevs 2584 REVENUE 1718 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 18659 Photography 108000 REVENUE 845 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 17727 news 331090 REVENUE 1105 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 10519 history 1051950 REVENUE 1187 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 14278 science 131191 REVENUE 1543 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 15978 privacy 95700 REVENUE 127 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 21395 Value4ValueEducation 9000 REVENUE 2469 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 721 videos 15500 REVENUE 1238 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 642 builders 101800 REVENUE 124 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 1729 lightning 17550 REVENUE 1651 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 19806 builders 175050 REVENUE 2228 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 18380 earth 259375 REVENUE 1991 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 10273 Photography 512000 REVENUE 462 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 2195 education 26050 REVENUE 800 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 1008 BooksAndArticles 10500 REVENUE 1294 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 6310 Photography 50850 REVENUE 1568 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 13987 retrogaming 99100 REVENUE 1404 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 7877 news 174000 REVENUE 722 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 20969 builders 74350 REVENUE 2214 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 696 Psychedelics 22750 REVENUE 3213 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 8985 Design 212850 REVENUE 1051 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 14663 science 54100 REVENUE 286 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 1136 UFOs 100000000 REVENUE 1378 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 17984 Stacker_Sports 161900 REVENUE 1836 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 1620 startups 123750 REVENUE 2937 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 647 charts 60500 REVENUE 1994 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 9350 Photography 143645 REVENUE 1830 2024-01-16 23:15:07.87 2024-01-16 23:15:07.87 16706 Music 10200 BILLING 3093 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 9529 security 11550 REVENUE 1359 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 17157 privacy 82800 REVENUE 1642 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 1433 lightning 23600 REVENUE 2866 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 1712 Ask_SN 13250 REVENUE 1731 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 14785 science 24250 REVENUE 2613 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 11298 health 11200 REVENUE 2415 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 16966 culture 226250 REVENUE 3181 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 956 japan 55500 REVENUE 494 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 17798 builders 12550 REVENUE 832 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 811 AMA 75859 REVENUE 2982 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 12708 culture 589350 REVENUE 34 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 19796 education 58455 REVENUE 915 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 11760 privacy 208000 REVENUE 2521 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 6653 science 135550 REVENUE 2770 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 18518 Outdoors 23550 REVENUE 2644 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 18897 japan 23539 REVENUE 3012 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 3353 security 416850 REVENUE 2391 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 1825 Music 10000 REVENUE 2491 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 20744 B2B 82300 REVENUE 2039 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 21145 Dogs_And_Cats 64950 REVENUE 2199 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 18526 AGORA 2182700 REVENUE 1462 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 2776 lol 38584 REVENUE 805 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 2206 Fitness 6000 REVENUE 1441 2024-01-07 16:14:53.442 2024-01-07 16:14:53.442 16447 Music 8500 BILLING 1727 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 987 japan 108750 REVENUE 885 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 18923 privacy 27850 REVENUE 2632 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 9705 lightning 1008395 REVENUE 2860 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 11798 VirtualReality 1114500 REVENUE 2000 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 759 retrogaming 8500 REVENUE 752 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 21503 econ 164100 REVENUE 2518 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 18116 christianity 2895 REVENUE 1191 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 9421 lightning 36400 REVENUE 3358 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 9969 retrogaming 88150 REVENUE 2219 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 20691 podcasts 100000000 REVENUE 1683 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 12721 builders 88050 REVENUE 910 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 9 language_learning 11250 REVENUE 1374 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 20502 polls 67150 REVENUE 1257 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 2176 christianity 37700 REVENUE 1968 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 1122 news 69350 REVENUE 1602 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 19878 movies 92650 REVENUE 1514 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 18897 espanol 5000 REVENUE 2836 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 18119 AGORA 512000 REVENUE 1851 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 11829 news 109700 REVENUE 2792 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 994 libertarian 50000 REVENUE 2765 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 5538 culture 157750 REVENUE 1668 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 21067 builders 59309 REVENUE 674 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 9345 devs 42200 REVENUE 1600 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 673 earth 66800 REVENUE 3317 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 19469 Cannabis 127100 REVENUE 349 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 1092 culture 1018750 REVENUE 3163 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 10668 Dogs_And_Cats 100000000 REVENUE 120 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 14959 health 186482 REVENUE 682 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 16341 Value4ValueEducation 28750 REVENUE 2183 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 2162 christianity 82550 REVENUE 2895 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 7986 bitcoin_beginners 8050 REVENUE 1457 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 20179 education 458409 REVENUE 1372 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 21222 movies 5000 REVENUE 1410 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 15060 apps 124785 REVENUE 1637 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 9820 NixOS 12650 REVENUE 3212 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 20657 oracle 71300 REVENUE 2628 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 6164 builders 7150 REVENUE 2007 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 9184 libertarian 36330 REVENUE 2128 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 19652 chess 9550 REVENUE 1325 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 20922 podcasts 5000 REVENUE 1213 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 690 Personal_Finance 1650 REVENUE 1435 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 20619 art 178800 REVENUE 351 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 19037 Stacker_Sports 54700 REVENUE 3281 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 5578 lightning 16013869 REVENUE 14 2023-12-05 22:48:40.792 2023-12-05 22:48:40.792 5590 AGORA 5000 BILLING 745 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 12516 mostly_harmless 12080 REVENUE 1022 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 3706 charts 18750 REVENUE 2169 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 13133 videos 84100 REVENUE 707 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 18426 ecash 43249 REVENUE 2458 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 20502 devs 6100 REVENUE 130 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 18472 Personal_Finance 13700 REVENUE 2129 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 16789 education 15900 REVENUE 998 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 13177 movies 165550 REVENUE 1510 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 16684 A_bit_of_Good_News 5500 REVENUE 2110 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 4798 history 130300 REVENUE 2441 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 12779 econ 191950 REVENUE 1591 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 9366 education 38050 REVENUE 2329 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 5455 bitdevs 192039 REVENUE 285 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 5825 Personal_Finance 10000 REVENUE 1358 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 20647 retrogaming 163900 REVENUE 446 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 9026 hiphop 11300 REVENUE 1395 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 20436 Photography 473150 REVENUE 1964 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 21365 BooksAndArticles 5500 REVENUE 1305 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 16351 bitcoin_beginners 45000 REVENUE 1160 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 11498 econ 71350 REVENUE 2392 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 13169 devs 27861 REVENUE 1201 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 12819 ideasfromtheedge 129800 REVENUE 1361 2024-01-06 06:00:06.436 2024-01-06 06:00:06.436 1483 news 609950 REVENUE 1179 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 20117 ideasfromtheedge 67250 REVENUE 2850 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 762 movies 83230 REVENUE 2835 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 6229 econ 100000000 REVENUE 777 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 21349 hiphop 45000 REVENUE 69 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 21547 bitcoin_beginners 11050 REVENUE 2060 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 20187 Stacker_Sports 28300 REVENUE 1829 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 17172 startups 337950 REVENUE 464 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 20603 conspiracy 129300 REVENUE 1808 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 8269 startups 17650 REVENUE 759 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 20922 NSFW_porn 348250 REVENUE 388 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 12272 retrogaming 26000 REVENUE 3416 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 7899 Design 321200 REVENUE 2290 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 20906 opensource 44900 REVENUE 2695 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 9796 science 5500 REVENUE 1099 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 16839 DIY 2250 REVENUE 2579 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 17147 history 555250 REVENUE 1939 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 681 AI 21550 REVENUE 2674 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 19622 NixOS 1019750 REVENUE 1450 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 11996 earth 68100 REVENUE 3431 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 20826 radio 213748 REVENUE 1156 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 3518 espanol 35077 REVENUE 1138 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 2757 bitcoin_beginners 55750 REVENUE 445 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 2046 NSFW_porn 74950 REVENUE 2379 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 10007 AGORA 398650 REVENUE 2476 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 2513 privacy 31850 REVENUE 118 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 18675 Dogs_And_Cats 7000 REVENUE 2794 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 876 econ 365150 REVENUE 2851 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 10016 security 56100 REVENUE 2484 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 7673 privacy 79150 REVENUE 2623 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 11819 AGORA 98500 REVENUE 3287 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 1478 culture 8250 REVENUE 1463 2024-01-08 06:00:05.788 2024-01-08 06:00:05.788 19907 art 373800 REVENUE 133 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 4415 history 114050 REVENUE 888 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 1741 opensource 16165 REVENUE 2848 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 21523 lightning 25750 REVENUE 1739 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 10698 Dogs_And_Cats 5250 REVENUE 3049 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 19660 security 8800 REVENUE 403 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 20218 UFOs 175573 REVENUE 1635 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 21406 Photography 91400 REVENUE 2189 2024-01-26 06:00:07.808 2024-01-26 06:00:07.808 6149 news 343743 REVENUE 2560 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 13169 builders 526950 REVENUE 1488 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 19615 art 5000 REVENUE 3465 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 15577 devs 192800 REVENUE 3471 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 21238 security 155050 REVENUE 2205 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 20563 news 67450 REVENUE 2655 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 16954 libertarian 15500 REVENUE 2568 2024-02-05 19:42:33.172 2024-02-05 19:42:33.172 7675 econ 289050 BILLING 2575 2024-02-06 00:38:28.396 2024-02-06 00:38:28.396 19449 security 10000 BILLING 849 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 16842 DIY 281250 REVENUE 224 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 1801 Music 1597350 REVENUE 2042 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 18076 AMA 12550 REVENUE 3100 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 10818 art 7700 REVENUE 753 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 10393 apps 144050 REVENUE 1841 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 2502 culture 224200 REVENUE 2463 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 13327 AccessTribe 44550 REVENUE 383 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 2711 mostly_harmless 1050 REVENUE 819 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 1213 AGORA 126600 REVENUE 2003 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 21522 education 640950 REVENUE 2538 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 8037 polls 25980 REVENUE 2490 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 17523 PlebeianMarket 493012 REVENUE 226 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 18124 Stacker_Sports 107123 REVENUE 3035 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 17291 Photography 5000 REVENUE 1225 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 1272 movies 72500 REVENUE 2905 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 6537 podcasts 6245 REVENUE 850 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 20412 libertarian 5300 REVENUE 1845 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 18528 Dogs_And_Cats 255815 REVENUE 1565 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 739 NixOS 8500 REVENUE 1264 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 2576 news 39800 REVENUE 110 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 14045 Dogs_And_Cats 2000 REVENUE 1047 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 21503 bitdevs 33050 REVENUE 2013 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 7587 opensource 98000 REVENUE 1538 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 18116 Stacker_Sports 10500 REVENUE 3203 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 13753 Music 26000 REVENUE 611 2023-12-20 20:48:40.336 2023-12-20 20:48:40.336 16440 A_bit_of_Good_News 236000 BILLING 3075 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 19403 AGORA 5000 REVENUE 329 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 11328 art 53650 REVENUE 2360 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 5487 libertarian 17000 REVENUE 710 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 9552 lightning 45850 REVENUE 55 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 15703 econ 99200 REVENUE 1278 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 20133 econ 17200 REVENUE 1726 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 19638 Outdoors 72600 REVENUE 2540 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 20272 ecash 232250 REVENUE 2149 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 652 DeepDive 64389 REVENUE 2620 2024-02-07 06:00:07.447 2024-02-07 06:00:07.447 21481 culture 16650 REVENUE 3373 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 976 news 11550 REVENUE 1268 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 4322 AMA 81950 REVENUE 2454 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 13174 apps 85750 REVENUE 1864 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 10821 Mining_Self_Hosting_FOSS 68400 REVENUE 1253 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 19463 Personal_Finance 85268 REVENUE 1989 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 20464 apps 5000 REVENUE 125 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 769 BooksAndArticles 105900 REVENUE 1016 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 18556 econ 3050 REVENUE 2523 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 16954 science 20500 REVENUE 2038 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 8284 education 720100 REVENUE 3107 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 17827 sanfrancisco 536050 REVENUE 2853 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 4102 oracle 309400 REVENUE 3342 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 9494 econ 54350 REVENUE 2917 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 17552 stocks 18750 REVENUE 3450 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 8242 Memes 318150 REVENUE 1534 2024-01-10 00:29:08.137 2024-01-10 00:29:08.137 13763 devs 56050 BILLING 397 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 20143 bitcoin_beginners 229050 REVENUE 3472 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 8448 dotnet 11550 REVENUE 555 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 925 stocks 627000 REVENUE 1284 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 10549 education 55000 REVENUE 965 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 2016 sanfrancisco 30000 REVENUE 63 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 20299 security 202850 REVENUE 3311 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 977 BooksAndArticles 2000 REVENUE 468 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 21047 earth 180300 REVENUE 2576 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 21624 econ 482000 REVENUE 1732 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 19546 Stacker_Sports 4650 REVENUE 248 2023-12-12 06:00:06.815 2023-12-12 06:00:06.815 18640 podcasts 2100 REVENUE 982 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 2285 security 11550 REVENUE 318 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 19795 B2B 12642550 REVENUE 907 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 5444 oracle 4400 REVENUE 2489 2024-02-03 06:00:06.195 2024-02-03 06:00:06.195 15273 lightning 5000 REVENUE 3087 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 14906 history 589950 REVENUE 1348 2024-01-05 21:53:58.911 2024-01-05 21:53:58.911 736 earth 164949 BILLING 215 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 2101 Music 5000 REVENUE 2953 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 882 lightning 267350 REVENUE 2502 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 2674 BooksAndArticles 33995 REVENUE 3364 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 17064 news 12380 REVENUE 1660 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 1720 privacy 16450 REVENUE 196 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 2529 Stacker_Sports 89150 REVENUE 1175 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 733 econ 10300 REVENUE 1041 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 6300 Memes 15650 REVENUE 1959 2024-01-20 06:00:04.967 2024-01-20 06:00:04.967 19902 hiphop 6600 REVENUE 3295 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 647 movies 191600 REVENUE 2693 2024-02-09 06:00:08.689 2024-02-09 06:00:08.689 20511 security 449989 REVENUE 515 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 15159 retrogaming 97700 REVENUE 689 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 13763 A_bit_of_Good_News 12650 REVENUE 3318 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 15282 podcasts 21800 REVENUE 3156 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 630 Personal_Finance 289550 REVENUE 1107 2023-12-31 13:46:37.293 2023-12-31 13:46:37.293 21216 news 25708 BILLING 596 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 3656 oracle 158900 REVENUE 3152 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 19018 devs 7100 REVENUE 1837 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 19118 mempool 11000 REVENUE 3322 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 14909 builders 45000 REVENUE 609 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 20291 movies 31950 REVENUE 2754 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 19471 hiphop 292400 REVENUE 2036 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 2674 Design 38520 REVENUE 231 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 18008 ecash 256500 REVENUE 3441 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 3686 retrogaming 22750 REVENUE 469 2023-12-17 06:00:05.819 2023-12-17 06:00:05.819 16193 marketplace 6500 REVENUE 2401 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 2741 art 6050 REVENUE 939 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 16194 videos 150850 REVENUE 87 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 19494 Psychedelics 521000 REVENUE 2755 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 16432 chess 11050 REVENUE 1723 2024-01-14 06:00:07.367 2024-01-14 06:00:07.367 5794 NixOS 5100 REVENUE 284 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 12220 podcasts 536435 REVENUE 19 2023-12-06 04:18:57.254 2023-12-06 04:18:57.254 1729 health 18900 BILLING 876 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 706 health 31050 REVENUE 1214 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 20353 hiphop 3000 REVENUE 3142 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 20495 econ 10000 REVENUE 610 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 965 Design 171250 REVENUE 1403 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 1051 security 466145 REVENUE 1759 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 12188 science 71950 REVENUE 2323 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 10693 Design 113750 REVENUE 2212 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 19613 litdevs 64900 REVENUE 2752 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 780 Personal_Finance 164100 REVENUE 751 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 19732 culture 285026 REVENUE 1638 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 1713 Personal_Finance 33852 REVENUE 1986 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 5791 science 107380 REVENUE 780 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 15588 art 139000 REVENUE 1706 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 9985 startups 312700 REVENUE 3250 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 17455 news 32600 REVENUE 2753 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 2326 privacy 159100 REVENUE 2554 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 18583 DIY 6500 REVENUE 2255 2024-01-28 06:00:03.863 2024-01-28 06:00:03.863 17172 earth 121700 REVENUE 1065 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 5597 christianity 3000 REVENUE 2513 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 17523 NixOS 100000000 REVENUE 3121 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 20509 hiphop 453100 REVENUE 2593 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 19147 Outdoors 128212 REVENUE 2342 2024-01-30 06:00:10.959 2024-01-30 06:00:10.959 20337 hiphop 68550 REVENUE 2302 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 15617 Music 500200 REVENUE 2051 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 8400 AI 50050 REVENUE 3369 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 9242 privacy 10395 REVENUE 2504 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 15588 UFOs 9000 REVENUE 921 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 21079 DIY 395543 REVENUE 1753 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 19282 AMA 10000 REVENUE 2826 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 17827 sanfrancisco 5200 REVENUE 1988 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 1047 NSFW_porn 1050 REVENUE 1903 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 7827 Dogs_And_Cats 564850 REVENUE 1070 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1534 security 1500 REVENUE 2662 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 19500 news 7100 REVENUE 933 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 20376 culture 23250 REVENUE 2545 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 19126 Music 54950 REVENUE 2382 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 8284 builders 2565350 REVENUE 3113 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 1141 Memes 253850 REVENUE 3079 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 736 Stacker_Sports 68200 REVENUE 1690 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 2773 podcasts 84200 REVENUE 3297 2024-02-26 06:00:05.904 2024-02-26 06:00:05.904 4624 Outdoors 11100 REVENUE 123 2023-12-09 17:02:37.151 2023-12-09 17:02:37.151 10731 hiphop 6050 REVENUE 1286 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 4035 libertarian 100000000 REVENUE 3043 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 1480 science 100000000 REVENUE 2988 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 16848 security 100000000 REVENUE 2574 2024-02-05 22:48:41.779 2024-02-05 22:48:41.779 19284 NixOS 265159 BILLING 2735 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 6602 B2B 8550 REVENUE 2599 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 9109 lol 64150 REVENUE 2123 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 2000 Fitness 5500 REVENUE 2509 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 18306 Music 21000 REVENUE 3041 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 18378 health 10000 REVENUE 39 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 21216 Fitness 53200 REVENUE 2069 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 633 podcasts 36150 REVENUE 3238 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 20710 earth 39403 REVENUE 3448 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 763 privacy 281000 REVENUE 518 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 14381 mempool 33600 REVENUE 1273 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 6202 lightning 100000000 REVENUE 1792 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 5597 culture 27550 REVENUE 3011 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 18731 mostly_harmless 97950 REVENUE 2298 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 17707 bitcoin_beginners 85250 REVENUE 2763 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 21047 econ 50850 REVENUE 956 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 6360 podcasts 209950 REVENUE 2453 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 16867 security 80100 REVENUE 1785 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21412 Design 432150 REVENUE 3260 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 9476 culture 100000000 REVENUE 3077 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 12222 AMA 60050 REVENUE 3397 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 6777 ecash 1500 REVENUE 1407 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 15728 BooksAndArticles 55350 REVENUE 1746 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 4027 podcasts 233350 REVENUE 2893 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 19335 oracle 112150 REVENUE 1697 2024-01-13 06:00:04.926 2024-01-13 06:00:04.926 768 news 69550 REVENUE 3109 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 15484 christianity 10000 REVENUE 54 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 18008 Ask_SN 239283 REVENUE 1665 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 19541 lol 132900 REVENUE 1601 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 16753 lightning 13150 REVENUE 550 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 1552 videos 10600 REVENUE 1411 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 18727 science 33650 REVENUE 2764 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 9982 health 66250 REVENUE 190 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 2330 japan 16026 REVENUE 892 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 16270 opensource 38393 REVENUE 157 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 16259 devs 17150 REVENUE 894 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 14906 security 143300 REVENUE 3396 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 19435 Ask_SN 519150 REVENUE 194 2023-12-10 18:02:19.897 2023-12-10 18:02:19.897 9427 Fitness 32950 BILLING 1 2023-12-05 19:30:43.717 2023-12-05 19:30:43.717 3979 Design 55500 BILLING 2084 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 8168 AI 197950 REVENUE 3267 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 5519 history 15950 REVENUE 394 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 1012 Fitness 100000000 REVENUE 657 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 18016 Fitness 232250 REVENUE 1806 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 9177 lol 8500 REVENUE 2569 2024-02-05 20:20:49.423 2024-02-05 20:20:49.423 7827 UFOs 3250 BILLING 2914 2024-02-15 06:00:09.367 2024-02-15 06:00:09.367 20424 DeepDive 183600 REVENUE 3044 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 18507 health 134150 REVENUE 2884 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 19465 Stacker_Sports 95300 REVENUE 574 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 10586 history 18950 REVENUE 2975 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 18170 crypto 12649000 REVENUE 206 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 8926 Dogs_And_Cats 74200 REVENUE 2812 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 6430 privacy 20750 REVENUE 1611 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 20811 VirtualReality 210000 REVENUE 1633 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 9329 Cannabis 86150 REVENUE 1608 2024-01-11 06:00:06.278 2024-01-11 06:00:06.278 11378 Fitness 6383 REVENUE 883 2023-12-27 06:00:05.989 2023-12-27 06:00:05.989 20981 DIY 9150 REVENUE 1794 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 18909 podcasts 80500 REVENUE 3370 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 9517 privacy 31250 REVENUE 673 2023-12-22 06:00:06.319 2023-12-22 06:00:06.319 9275 startups 319345 REVENUE 1754 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 2444 polls 1050 REVENUE 42 2023-12-06 09:54:34.247 2023-12-06 09:54:34.247 11798 builders 32050 BILLING 1498 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 21274 radio 100000 REVENUE 829 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 20562 AGORA 515200 REVENUE 2429 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 14308 ideasfromtheedge 22850 REVENUE 2276 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 10393 security 66580 REVENUE 31 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 18727 oracle 255250 REVENUE 2958 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 4345 Music 56750 REVENUE 1091 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 1261 earth 60602 REVENUE 840 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 21180 ru 10500 REVENUE 1525 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 16145 news 38100 REVENUE 2139 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 803 AGORA 603273 REVENUE 2652 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 19905 Outdoors 67600 REVENUE 168 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 4459 science 64300 REVENUE 827 2023-12-25 06:00:06.427 2023-12-25 06:00:06.427 7827 culture 567150 REVENUE 3139 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 4126 builders 57450 REVENUE 2300 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 16788 opensource 422900 REVENUE 1922 2024-01-19 06:00:04.045 2024-01-19 06:00:04.045 21136 apps 81500 REVENUE 1416 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 1483 bitcoin_beginners 90450 REVENUE 2009 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 21320 econ 961461 REVENUE 1799 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 9099 Photography 19550 REVENUE 3151 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 15560 bitcoin_beginners 73950 REVENUE 3455 2024-03-01 06:00:10.343 2024-03-01 06:00:10.343 641 art 20550 REVENUE 2868 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 17365 oracle 14650 REVENUE 1289 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 13854 news 106315 REVENUE 2661 2024-02-08 06:00:09.857 2024-02-08 06:00:09.857 18629 oracle 5050 REVENUE 1870 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 17523 crypto 229750 REVENUE 947 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 6003 mostly_harmless 121150 REVENUE 1439 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 21521 ecash 1088550 REVENUE 1261 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 1319 bitcoin_beginners 532500 REVENUE 1562 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 14650 podcasts 109700 REVENUE 222 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 20301 bitdevs 162950 REVENUE 2871 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 1881 Dogs_And_Cats 20150 REVENUE 2607 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 8954 podcasts 105254 REVENUE 2354 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 16341 B2B 128200 REVENUE 406 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 13361 BooksAndArticles 125200 REVENUE 2601 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 4958 opensource 44900 REVENUE 2141 2024-01-25 06:00:06.362 2024-01-25 06:00:06.362 9552 Value4ValueEducation 78096 REVENUE 948 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 20906 NSFW_porn 100000000 REVENUE 1085 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 11165 earth 15200 REVENUE 3398 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 9365 lol 129100 REVENUE 2731 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 20479 AGORA 14200 REVENUE 584 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 15045 Personal_Finance 257450 REVENUE 1863 2024-01-18 02:58:18.95 2024-01-18 02:58:18.95 17184 Fitness 45300 BILLING 2737 2024-02-10 06:00:06.646 2024-02-10 06:00:06.646 1647 Stacker_Sports 10600 REVENUE 1496 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 13763 BooksAndArticles 100000000 REVENUE 1796 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 21588 ecash 88969 REVENUE 634 2023-12-21 17:07:46.566 2023-12-21 17:07:46.566 2176 funny 105350 REVENUE 433 2023-12-16 06:00:06.328 2023-12-16 06:00:06.328 19929 language_learning 37524 REVENUE 1296 2024-01-05 06:00:06.677 2024-01-05 06:00:06.677 1784 AMA 5000 REVENUE 2305 2024-01-29 21:15:12.085 2024-01-29 21:15:12.085 19087 Mining_Self_Hosting_FOSS 87750 BILLING 2511 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 20525 Stacker_Sports 39600 REVENUE 1819 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 12808 espanol 11400 REVENUE 370 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 2176 art 182950 REVENUE 2555 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 9833 Personal_Finance 189604 REVENUE 2109 2024-01-24 06:00:07.243 2024-01-24 06:00:07.243 4654 podcasts 9345 REVENUE 2933 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 19096 podcasts 6369 REVENUE 1803 2024-01-16 06:00:05.328 2024-01-16 06:00:05.328 733 earth 64478 REVENUE 1661 2024-01-12 06:00:09.319 2024-01-12 06:00:09.319 5757 Outdoors 100000000 REVENUE 1428 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 2832 AGORA 173150 REVENUE 568 2023-12-19 06:00:04.633 2023-12-19 06:00:04.633 10690 espanol 68800 REVENUE 841 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 11192 Design 5000 REVENUE 2534 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 9171 movies 5000 REVENUE 1490 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 20243 privacy 5000 REVENUE 763 2023-12-24 06:00:07.397 2023-12-24 06:00:07.397 2652 news 77805 REVENUE 2348 2024-01-31 06:00:05.467 2024-01-31 06:00:05.467 9809 radio 19935 REVENUE 2989 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 20606 health 11500 REVENUE 1006 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 18114 ecash 26950 REVENUE 3171 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 17331 dotnet 50050 REVENUE 1245 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 21275 retrogaming 6750 REVENUE 2459 2024-02-02 06:00:06.624 2024-02-02 06:00:06.624 21437 Stacker_Sports 3800 REVENUE 1495 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 16684 NSFW_porn 105600 REVENUE 983 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 21588 econ 197200 REVENUE 2296 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 20599 funny 50000 REVENUE 1207 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 21600 Ask_SN 14122 REVENUE 2409 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 886 crypto 775850 REVENUE 575 2023-12-20 18:03:38.886 2023-12-20 18:03:38.886 9347 crypto 11000 REVENUE 1426 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 20254 devs 38000 REVENUE 3025 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 19148 econ 2000 REVENUE 1186 2024-01-02 06:00:05.42 2024-01-02 06:00:05.42 13781 PlebeianMarket 29850 REVENUE 2837 2024-02-13 06:00:07.079 2024-02-13 06:00:07.079 27 Design 314000 REVENUE 1349 2024-01-05 22:48:41.305 2024-01-05 22:48:41.305 16684 Music 132950 BILLING 2542 2024-02-05 06:00:08.045 2024-02-05 06:00:08.045 19961 hiphop 768000 REVENUE 1497 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 21374 Cannabis 11000 REVENUE 1246 2024-01-03 06:00:04.85 2024-01-03 06:00:04.85 5128 builders 49900 REVENUE 3218 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 21514 christianity 61050 REVENUE 2798 2024-02-12 06:00:04.985 2024-02-12 06:00:04.985 4692 mempool 14400 REVENUE 2950 2024-02-16 06:00:04.888 2024-02-16 06:00:04.888 7983 health 5000 REVENUE 1572 2024-01-10 06:00:04.623 2024-01-10 06:00:04.623 27 movies 3100 REVENUE 2590 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 1534 Dogs_And_Cats 50500 REVENUE 1058 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 13133 Music 22550 REVENUE 8 2023-12-05 21:21:30.76 2023-12-05 21:21:30.76 19465 news 106900 BILLING 3275 2024-02-25 06:00:06.842 2024-02-25 06:00:06.842 21138 polls 180900 REVENUE 3381 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 5173 opensource 33600 REVENUE 1770 2024-01-15 06:00:03.874 2024-01-15 06:00:03.874 20825 education 78850 REVENUE 3134 2024-02-21 06:00:06.552 2024-02-21 06:00:06.552 1426 Memes 19950 REVENUE 1862 2024-01-17 06:00:05.26 2024-01-17 06:00:05.26 20490 Personal_Finance 152650 REVENUE 2506 2024-02-04 06:00:03.775 2024-02-04 06:00:03.775 17162 science 166140 REVENUE 997 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 6798 opensource 1006500 REVENUE 2040 2024-01-23 06:00:07.308 2024-01-23 06:00:07.308 17519 history 311600 REVENUE 2279 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 20573 oracle 50000 REVENUE 1029 2023-12-30 06:00:06.546 2023-12-30 06:00:06.546 19929 Ask_SN 14950 REVENUE 83 2023-12-08 06:00:42.903 2023-12-08 06:00:42.903 18291 privacy 3500 REVENUE 3336 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 3706 NixOS 268150 REVENUE 3187 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 11443 ideasfromtheedge 14150 REVENUE 2974 2024-02-17 06:00:08.835 2024-02-17 06:00:08.835 15409 devs 30750 REVENUE 1998 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 647 Dogs_And_Cats 10300 REVENUE 1990 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 20353 Music 49990 REVENUE 1143 2024-01-01 06:00:07.601 2024-01-01 06:00:07.601 9352 news 17600 REVENUE 162 2023-12-10 06:00:05.602 2023-12-10 06:00:05.602 19930 mostly_harmless 150600 REVENUE 2207 2024-01-27 06:00:07.654 2024-01-27 06:00:07.654 1046 crypto 10500 REVENUE 3430 2024-02-29 06:00:16.997 2024-02-29 06:00:16.997 20087 christianity 178100 REVENUE 1884 2024-01-18 06:00:04.185 2024-01-18 06:00:04.185 7510 Mining_Self_Hosting_FOSS 5250 REVENUE 3169 2024-02-22 06:00:08.136 2024-02-22 06:00:08.136 17415 art 145900 REVENUE 869 2023-12-26 06:00:05.646 2023-12-26 06:00:05.646 19531 crypto 98650 REVENUE 3048 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 18423 Mining_Self_Hosting_FOSS 68350 REVENUE 3291 2024-02-25 20:23:05.152 2024-02-25 20:23:05.152 18830 science 13650 BILLING 363 2023-12-14 15:16:36.283 2023-12-14 15:16:36.283 9084 retrogaming 81050 REVENUE 3220 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 10693 espanol 16550 REVENUE 1073 2023-12-31 06:00:07.814 2023-12-31 06:00:07.814 18180 mostly_harmless 14150 REVENUE 24 2023-12-06 06:00:05.351 2023-12-06 06:00:05.351 889 news 163300 REVENUE 2583 2024-02-06 06:00:09.231 2024-02-06 06:00:09.231 1549 privacy 40700 REVENUE 1251 2024-01-04 06:00:06.712 2024-01-04 06:00:06.712 5308 retrogaming 327450 REVENUE 3330 2024-02-27 06:00:08.39 2024-02-27 06:00:08.39 21172 opensource 49800 REVENUE 2876 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 17201 retrogaming 135850 REVENUE 994 2023-12-29 06:00:06.511 2023-12-29 06:00:06.511 20613 econ 2350 REVENUE 294 2023-12-13 06:00:09.19 2023-12-13 06:00:09.19 20691 Photography 47300 REVENUE 3387 2024-02-28 06:00:10.068 2024-02-28 06:00:10.068 19151 B2B 50850 REVENUE 1429 2024-01-07 06:00:07.558 2024-01-07 06:00:07.558 18336 startups 5000 REVENUE 64 2023-12-07 06:00:06.571 2023-12-07 06:00:06.571 18072 news 54395 REVENUE 2284 2024-01-29 06:00:07.007 2024-01-29 06:00:07.007 10549 earth 100000000 REVENUE 2016 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 1433 ideasfromtheedge 100000000 REVENUE 3053 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 15833 podcasts 151542 REVENUE 3039 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 20162 ideasfromtheedge 140400 REVENUE 404 2023-12-15 06:00:06.162 2023-12-15 06:00:06.162 4973 science 135850 REVENUE 943 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 17741 earth 22000 REVENUE 958 2023-12-28 06:00:07.373 2023-12-28 06:00:07.373 713 Photography 18173 REVENUE 724 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 20183 privacy 159150 REVENUE 1969 2024-01-21 06:00:04.144 2024-01-21 06:00:04.144 11275 Personal_Finance 440579 REVENUE 740 2023-12-23 06:00:09.641 2023-12-23 06:00:09.641 15271 Mining_Self_Hosting_FOSS 81250 REVENUE 2865 2024-02-14 06:00:07.208 2024-02-14 06:00:07.208 11996 Stacker_Sports 10500 REVENUE 3057 2024-02-19 06:00:06.7 2024-02-19 06:00:06.7 13599 BooksAndArticles 2000 REVENUE 2018 2024-01-22 06:00:06.492 2024-01-22 06:00:06.492 20180 Music 9200 REVENUE 3000 2024-02-18 06:00:04.508 2024-02-18 06:00:04.508 19494 BooksAndArticles 83950 REVENUE 2790 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 627 security 169650 REVENUE 2862 2024-02-14 01:23:38.581 2024-02-14 01:23:38.581 7674 health 1500 BILLING 3226 2024-02-24 06:00:05.468 2024-02-24 06:00:05.468 21104 lightning 100000000 REVENUE 525 2023-12-18 06:00:07.324 2023-12-18 06:00:07.324 660 Music 26500 REVENUE 3189 2024-02-23 06:00:07.872 2024-02-23 06:00:07.872 1428 security 50100 REVENUE 2766 2024-02-11 06:00:07.295 2024-02-11 06:00:07.295 9362 opensource 8050 REVENUE 3 2023-12-05 19:42:33.156 2023-12-05 19:42:33.156 21441 builders 58903 BILLING 1200 2024-01-02 18:17:05.237 2024-01-02 18:17:05.237 16193 Design 1050450 BILLING 3105 2024-02-20 06:00:06.083 2024-02-20 06:00:06.083 5444 videos 17800 REVENUE 230 2023-12-11 06:00:06.384 2023-12-11 06:00:06.384 913 NixOS 40250 REVENUE 2420 2024-02-01 06:00:09.015 2024-02-01 06:00:09.015 21603 language_learning 8500 REVENUE 1529 2024-01-09 06:00:05.234 2024-01-09 06:00:05.234 20981 hiphop 103400 REVENUE \. -- -- Data for Name: SubSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."SubSubscription" ("userId", "subName", created_at) FROM stdin; 20979 lol 2024-02-26 19:26:56.548 13177 events 2024-02-26 19:26:56.548 1047 podcasts 2024-02-26 19:26:56.548 12291 espanol 2024-02-26 19:26:56.548 1471 DeepDive 2024-02-26 19:26:56.548 946 charts 2024-02-26 19:26:56.548 17095 NSFW_porn 2024-02-26 19:26:56.548 13575 mostly_harmless 2024-02-26 19:26:56.548 6030 oracle 2024-02-26 19:26:56.548 4166 bitcoin_beginners 2024-02-26 19:26:56.548 20979 conspiracy 2024-02-26 19:26:56.548 19524 polls 2024-02-26 19:26:56.548 17106 art 2024-02-26 19:26:56.548 14195 health 2024-02-26 19:26:56.548 2514 Personal_Finance 2024-02-26 19:26:56.548 14195 history 2024-02-26 19:26:56.548 11314 builders 2024-02-26 19:26:56.548 6030 crypto 2024-02-26 19:26:56.548 14260 radio 2024-02-26 19:26:56.548 8945 lightning 2024-02-26 19:26:56.548 4166 Dogs_And_Cats 2024-02-26 19:26:56.548 1738 startups 2024-02-26 19:26:56.548 8796 AI 2024-02-26 19:26:56.548 1745 opensource 2024-02-26 19:26:56.548 19524 marketplace 2024-02-26 19:26:56.548 19569 culture 2024-02-26 19:26:56.548 2329 bitdevs 2024-02-26 19:26:56.548 7418 Fitness 2024-02-26 19:26:56.548 1145 econ 2024-02-26 19:26:56.548 16406 B2B 2024-02-26 19:26:56.548 14195 libertarian 2024-02-26 19:26:56.548 19446 Memes 2024-02-26 19:26:56.548 6136 Stacker_Sports 2024-02-26 19:26:56.548 18557 news 2024-02-26 19:26:56.548 1745 hiphop 2024-02-26 19:26:56.548 5746 privacy 2024-02-26 19:26:56.548 811 retrogaming 2024-02-26 19:26:56.548 19459 Ask_SN 2024-02-26 19:26:56.548 684 christianity 2024-02-26 19:26:56.548 6687 ecash 2024-02-26 19:26:56.548 19417 AccessTribe 2024-02-26 19:26:56.548 16594 movies 2024-02-26 19:26:56.548 14195 AMA 2024-02-26 19:26:56.548 4166 BooksAndArticles 2024-02-26 19:26:56.548 658 ru 2024-02-26 19:26:56.548 19527 Outdoors 2024-02-26 19:26:56.548 11091 Photography 2024-02-26 19:26:56.548 19524 education 2024-02-26 19:26:56.548 20439 Design 2024-02-26 19:26:56.548 19524 chess 2024-02-26 19:26:56.548 2329 litdevs 2024-02-26 19:26:56.548 6594 Value4ValueEducation 2024-02-26 19:26:56.548 15200 earth 2024-02-26 19:26:56.548 1745 sanfrancisco 2024-02-26 19:26:56.548 17106 funny 2024-02-26 19:26:56.548 9529 VirtualReality 2024-02-26 19:26:56.548 19569 japan 2024-02-26 19:26:56.548 19292 Mining_Self_Hosting_FOSS 2024-02-26 19:26:56.548 9529 Psychedelics 2024-02-26 19:26:56.548 946 stocks 2024-02-26 19:26:56.548 19759 Cannabis 2024-02-26 19:26:56.548 6030 security 2024-02-26 19:26:56.548 12483 AGORA 2024-02-26 19:26:56.548 4570 PlebeianMarket 2024-02-26 19:26:56.548 1298 science 2024-02-26 19:26:56.548 16301 dotnet 2024-02-26 19:26:56.548 1970 NixOS 2024-02-26 19:26:56.548 20102 DIY 2024-02-26 19:26:56.548 3656 mempool 2024-02-26 19:26:56.548 5757 devs 2024-02-26 19:26:56.548 1745 ideasfromtheedge 2024-02-26 19:26:56.548 1298 language_learning 2024-02-26 19:26:56.548 2952 apps 2024-02-26 19:26:56.548 1286 videos 2024-02-26 19:26:56.548 15491 Music 2024-02-26 19:26:56.548 19524 A_bit_of_Good_News 2024-02-26 19:26:56.548 12821 econ 2024-02-26 21:32:25.329 4118 meta 2024-02-26 21:52:50.769 4118 bitcoin 2024-02-26 21:53:10.597 4118 Stacker_Sports 2024-02-26 21:53:43.33 20137 AGORA 2024-02-27 07:32:53.157 20062 AGORA 2024-02-27 07:33:06.781 1175 NixOS 2024-02-27 10:20:28.77 21522 startups 2024-02-27 19:59:00.316 21532 bitcoin 2024-02-28 00:32:10.463 21532 lightning 2024-02-28 00:33:57.803 21314 retrogaming 2024-02-28 09:32:59.166 5173 UFOs 2024-02-29 01:00:38.011 \. -- -- Data for Name: ThreadSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."ThreadSubscription" ("userId", "itemId", created_at) FROM stdin; \. -- -- Data for Name: Upload; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Upload" (id, created_at, updated_at, type, size, width, height, "userId", paid) FROM stdin; \. -- -- Data for Name: UserNostrRelay; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."UserNostrRelay" ("userId", "nostrRelayAddr", created_at, updated_at) FROM stdin; \. -- -- Data for Name: UserSubscription; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."UserSubscription" ("followerId", "followeeId", created_at, updated_at, "commentsSubscribedAt", "postsSubscribedAt") FROM stdin; \. -- -- Data for Name: Wallet; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Wallet" (id, created_at, updated_at, "userId", label, priority, type, wallet) FROM stdin; \. -- -- Data for Name: WalletLND; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletLND" (id, "walletId", created_at, updated_at, socket, macaroon, cert) FROM stdin; \. -- -- Data for Name: WalletLightningAddress; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."WalletLightningAddress" (id, "walletId", created_at, updated_at, address) FROM stdin; \. -- -- Data for Name: Withdrawl; Type: TABLE DATA; Schema: public; Owner: - -- COPY public."Withdrawl" (id, created_at, updated_at, "userId", hash, bolt11, "msatsPaying", "msatsPaid", "msatsFeePaying", "msatsFeePaid", status, "autoWithdraw") FROM stdin; \. -- -- Data for Name: _prisma_migrations; Type: TABLE DATA; Schema: public; Owner: - -- COPY public._prisma_migrations (id, checksum, finished_at, migration_name, logs, rolled_back_at, started_at, applied_steps_count) FROM stdin; 684af2a3-f939-438c-be65-8993b6d41202 92936bb04455f9158a8a51b06961c7f8e28fe9793d78b481b5cf61860179f71f 2021-06-06 09:10:09.036702-05 20210427152429_init \N \N 2021-06-06 09:10:08.849197-05 1 86039021-e09f-4238-84bb-d50d4fd18a4b ee50e4ef4e377d1e9879a7b10e64b93910617dc5a0c41e60a69ee9186aa03173 2021-09-02 13:40:14.050192-05 20210902174121_story_name \N \N 2021-09-02 13:40:14.032255-05 1 04479261-ef39-4896-aaa9-cee3abba81d0 d57b7293ef9e60e452eae6d94b5abdd8cd5f3cea4d087a2f37dd8e6f3d7c4eec 2021-06-06 09:10:09.059664-05 20210507005624_invoices \N \N 2021-06-06 09:10:09.039278-05 1 05a2ffd1-036d-4f60-9344-68cba50c7344 282edfd6c8fd7ac1e56ddc698daa812eb03ae89856d37b58ff9fec36de630b61 2021-07-10 09:22:33.824731-05 20210710130454_withdraw_hash_nounique \N \N 2021-07-10 09:22:33.805446-05 1 370fb5f5-cc25-4043-a859-11a49e4f6f6a 9146d8cb806dc9756cf6f3308cc8de40ce088da39c2bee7338af6400ac7b1a12 2021-06-06 09:10:09.068595-05 20210510175729_msats \N \N 2021-06-06 09:10:09.062337-05 1 27ecac01-435d-45be-8d68-37230081a428 c81b1b29c5d992c84236065b387962876e47640bbb77aac51a96fbbcb28c6654 2021-06-06 09:10:09.081103-05 20210511163249_function \N \N 2021-06-06 09:10:09.071542-05 1 64819b6b-7346-4994-99c8-9e62145da4ff 126d7e731a938bf477df4005442cb7c9f6bc1c48198c925f7373139b9a6ac282 2021-06-06 09:10:09.092288-05 20210511170231_vote \N \N 2021-06-06 09:10:09.083903-05 1 3ef20730-eb4c-4494-aaee-d70b744bd1f8 643d20518ad02478959bdd2ae04e39aa702d04ffd847ec653e9ce6d6f2718f02 2021-07-10 09:22:33.857089-05 20210710132315_new_withdraw_funcs \N \N 2021-07-10 09:22:33.827942-05 1 a3fe3cb7-b38c-472b-855f-897fbb9e619e 4ca69080dfa6bf2a3b1a4e83b54ab2b22d94cb0c4dae52b86d7af39234d5268e 2021-06-06 09:10:09.115307-05 20210513002346_withdrawl \N \N 2021-06-06 09:10:09.094814-05 1 582e2cef-51ea-4ad3-8303-8c7396414451 444d61bd84cdb857158d9ac27bd35fd25064cc7dbfa94dea5d652f7e20a9443b 2021-06-06 09:10:09.12516-05 20210513002503_withdrawl_funcs \N \N 2021-06-06 09:10:09.117954-05 1 bf25e61d-686e-42a2-bd24-6507606070d0 071fdd8792f9632f9bd1b6f25f8c3f1a0dd6ef660ed864fac3bcb2c5802b0ad6 2021-06-06 09:10:09.133755-05 20210513191840_enum \N \N 2021-06-06 09:10:09.127755-05 1 5a10e920-78ca-48b8-9ccf-df9ff6be8c72 5da39fa381ce2524b8e361bf9413670881ebd7b8a8a56bf74723544a338c9384 2021-08-11 15:45:46.111727-05 20210810195449_fix_item_path_trigger \N \N 2021-08-11 15:45:46.0889-05 1 45c373c1-78c9-4e25-a4ec-2ab9ff0aeb20 a17ac94cda68d3917571d0ac88276d165af2b17a884d3f1e52936ddd1a82b340 2021-06-06 09:10:09.143062-05 20210521192356_name_trigger \N \N 2021-06-06 09:10:09.136571-05 1 46f77201-dc4c-41d5-bdcf-11a2a7d7028a 7a7ec506c6ae4b3057aed70ac77671bb58324db5623e5e605af53c5f81bef8dd 2021-06-06 09:10:09.172284-05 20210521234940_reserved_names \N \N 2021-06-06 09:10:09.145887-05 1 a5d1f53d-d311-4413-a5cf-70efbec8c23e daa75379136340c93c3f35b334c927644c09ad01b4a1095b4c91d017713102f3 2021-09-02 17:30:34.485572-05 20210902220036_case_insensitive_names \N \N 2021-09-02 17:30:34.386-05 1 0a0e7f50-4bac-4692-89c9-7105431acf9c c51aff9774024db4a0bffb85209ca877b5ed19e072ef9ebd11212baf6474087e 2021-06-06 09:10:09.181833-05 20210524211524_freebies \N \N 2021-06-06 09:10:09.174898-05 1 f50bb95f-dabb-4089-9c4b-61a3e8c58cb9 5ff654c1531a726e94fa0158390e37192f65d9b03022e8736dbf16c75e2b7ddf 2021-08-18 18:17:16.015007-05 20210818204542_mentions \N \N 2021-08-18 18:17:15.960466-05 1 02a4c27a-ba89-4a49-976a-8e6c3388e672 68656f356577bdc50f8cbc5d89652349a5bb619ed300c4815c525a220d64e820 2021-06-06 09:10:09.189771-05 20210601001008_null_names \N \N 2021-06-06 09:10:09.184347-05 1 60bd2089-2b0f-4813-baf9-1a700d2d3cd0 d8b41ed097d94bfaa47b7351d0cd4c838b75e4555512b26a8d714319a80338d5 2021-06-24 19:14:06.954305-05 20210624171900_checked_notes_at \N \N 2021-06-24 19:14:06.933271-05 1 dd81d3c0-ee7e-4ac6-95aa-ec6b88e8451e 4522bceebe3d2146305b8c16cd737db33c5e43c596b0597ca8203ebb36c8934a 2021-06-26 22:22:59.39913-05 20210626191129_lnurl_auth \N \N 2021-06-26 22:22:59.346216-05 1 5cc1882e-55fa-4c13-ac9e-068ae903a345 164cf1dd55ea288bec156531d8ae30b011efaa531cf478a24fe807c42023c984 2021-08-18 18:17:16.028754-05 20210818220200_mention_unique \N \N 2021-08-18 18:17:16.018646-05 1 fb5661be-d719-4a53-bcfe-6a6920a39c3a 6aea9bbe74091add6b75577a876c529ea4a38781cdd00f5a02e1a96c0e1c2d99 2021-09-24 18:16:36.920994-05 20210922214428_create_bio \N \N 2021-09-24 18:16:36.903534-05 1 9ed7d4f2-a435-4564-bd2a-0b03401db010 143eff2f7f517f34a5b07d2bf9e27504d0d69f0443a6ca65a841e76f842041cc 2021-08-20 14:08:32.403632-05 20210819213404_user_withdrawal \N \N 2021-08-20 14:08:32.376237-05 1 29b2c134-ba4b-41a5-a929-e1412e7d471d 566c09d6235a45f0f69dae0a3b658f9933f2a1dca25e085c4347e0f06c2471fd 2021-09-09 14:51:25.79793-05 20210908193444_tips \N \N 2021-09-09 14:51:25.66715-05 1 efb2a785-0387-47bc-a579-381c1e03bae8 314bc25b1d08fd8b75d784f3404c2c85f3b20a30b3c6197ddce3aebcb4053802 2021-08-20 14:08:32.414781-05 20210819213613_user_withdrawals \N \N 2021-08-20 14:08:32.407186-05 1 b0b2f792-4790-4035-bd3a-7ddce97a055f 7b58c48ec1493806daf3a1919f77f54aeb15af6cc3234b0c2dd628b81e676e46 2021-08-20 14:08:32.425823-05 20210819213954_user_withdraw \N \N 2021-08-20 14:08:32.418588-05 1 cb028a23-36d1-4580-a043-7203d2eddc37 45990ec74002ef6edddf75fc37b91b5347eebb0a1d5e8c13b86fc4565d2a29ad 2021-11-09 17:15:40.482162-06 20211104210749_theme \N \N 2021-11-09 17:15:40.461514-06 1 ac8bfef9-d7ae-475f-bcf1-b439866bd7f0 3a71b78af6c3f2ce82e8df17b56a34a67dd7d31550e35c494bc214355d6170dd 2021-09-12 11:58:04.506123-05 20210911215322_tip_default \N \N 2021-09-12 11:58:04.480617-05 1 f6022322-7805-47dc-b621-bb6485b504ba 7011f19f9f061531f09c05e00707921955c6fccb469789bd69a8d7dd7533e725 2021-10-06 09:45:30.224044-05 20211006144214_created_at_indices \N \N 2021-10-06 09:45:29.971015-05 1 9f8f10a9-b4c0-4571-a913-4f2bdbc360f3 fefab76980f65e10b7bd7fb2bfd2be32c81302df28498b3dc06f83cc9af4a834 2021-09-14 12:58:06.684997-05 20210914173926_item_boost \N \N 2021-09-14 12:58:06.650172-05 1 0860a1d0-9e45-4128-9516-f0553e957cab ac82d8afe42b23cfa383a6038dce7912a5e4b285772e2b477bd801bde1b489da 2021-09-24 18:16:36.900468-05 20210921232401_user_bio \N \N 2021-09-24 18:16:36.870371-05 1 a4e1398e-0f04-4470-8679-e996b00b96d9 04c8190f474afb773619c9228e3f7c88fdd6fe5429fa3e7324acab3ed82737ec 2021-10-25 13:21:53.251082-05 20211025174239_item_act_replace \N \N 2021-10-25 13:21:53.219221-05 1 a245b8fb-e597-4166-978a-60c5df551942 52497bc9123fbae6013a4b97e974d17bd3eb1d3cf453fc80ef3c79e1de20f44d 2021-10-15 18:15:42.874169-05 20211012203507_invite_modeld \N \N 2021-10-15 18:15:42.81996-05 1 c5f2a7a6-f823-445a-9155-4ec5552006f9 c3d65416252b769b1c2abbfe4ced548ac78912eea667c5a79ff01ef64341a207 2021-10-15 18:15:42.891436-05 20211015180613_invite_func \N \N 2021-10-15 18:15:42.877318-05 1 ec6baf4b-5e9a-40fe-bd57-f50bccf63e34 a8653dc1f2e57007e53dcffd4284fb8b2d8194de7b5774ec4ae58bfe96c5ee29 2021-10-28 17:30:14.787075-05 20211027231327_lnwith_withid_optional \N \N 2021-10-28 17:30:14.780407-05 1 4d7eb477-99c6-46a4-ba9a-fb73ff4eda9b a88bfb2e702b5064a09d5d3c966cba44362e0bb8bfc835039c319641f605335e 2021-10-28 17:30:14.77757-05 20211027230800_lnwith \N \N 2021-10-28 17:30:14.744321-05 1 b303d53b-53b8-4354-9980-f95077685f40 fe66a307179e6b8597f9e21bbecbf8a9c10670c02fe859e579fab6929c9d87a4 2021-11-11 14:29:27.92873-06 20211111202609_item_act_tip_bug \N \N 2021-11-11 14:29:27.894998-06 1 63146dca-588a-4480-bc5b-a158b87fa44b 7f8989885b385bc31c0eb07b024c07aa6b23d2f6e5190118a82b770c5935243d 2021-12-13 13:55:42.5432-06 20211206213650_popovers \N \N 2021-12-13 13:55:42.520574-06 1 dbaa9bc9-a6a6-4f69-93aa-7e0cdd929994 7294113843494cd3f52bf7c2f7bcf50c7f8cb6697f0749c0369f0d8d9096c8b7 2021-12-13 13:55:42.564998-06 20211213194823_tip_default \N \N 2021-12-13 13:55:42.549647-06 1 a9c39caa-f862-45e4-959f-cf13e4c1d363 fd521fb0fb68b61566e59da7b864e04f35cdeea5903c3c73c60ad3a491b6dac7 2022-01-07 13:15:08.996569-06 20220104214008_wallet_funcs \N \N 2022-01-07 13:15:08.97549-06 1 8961e627-0024-48f5-bc00-b6c45bbefe67 1b4a74b24610191bf40ee4885f8d9599291b8f99f2b9d832af4a3c81fd5569f7 2022-01-07 13:15:09.037845-06 20220106220010_pins \N \N 2022-01-07 13:15:08.999387-06 1 8a800689-05d0-4216-b387-b30fbaf3d96c f7b0885c81e3b3a57fc439a6392ae13977a0a88ada15385e971c9616af5d839e 2022-01-07 13:30:28.190574-06 20220107192624_pgcrypto \N \N 2022-01-07 13:30:28.133148-06 1 4560ea8c-2f26-4bcd-b142-c586b6296e7d d6b1fc6f2d098306535726def2cc384ea63936478a9385d4a321947dd090aeb7 2022-01-14 11:55:11.470248-06 20220114153043_drop_theme \N \N 2022-01-14 11:55:11.445964-06 1 6caa9cd7-b377-4ac2-bf32-6eb77f9045f6 02626eccedca53c66928b0b5e37b4898c0e343dc2906d351c6375602833e210a 2022-05-16 15:56:10.993679-05 20220516144530_profile_photo \N \N 2022-05-16 15:56:10.767793-05 1 e379d6cb-5d12-473d-9973-6bf42716583f f144f4babcec395ccb36d5f9dab6fd33a9bcdb4ddf4df82143f16c8d494a0475 2022-01-18 11:29:07.668326-06 20220114153522_add_trust \N \N 2022-01-18 11:29:07.648781-06 1 e16f891f-f6a2-4ec9-8606-58a603880fed 561aaae268927b51d20e6b32d41aa03106405503a73ae22b882d221f5d22b8ca 2022-03-10 16:53:23.198987-06 20220310192618_a_few_more_indices \N \N 2022-03-10 16:53:23.166758-06 1 30a9c170-4083-470a-83b4-29c0160df2c8 4f43913bb457a99ef5c330860f0829333916d9f00fc2e23f98f99bde0036de8e 2022-01-21 12:29:34.367927-06 20220119215304_statistics_names \N \N 2022-01-21 12:29:34.352847-06 1 2a314258-7d2f-4e32-80d4-e9ea30fe5cf4 174cd321277590c2ed50e4d11412e32466b9a16300f3481df6c3b5addcbffad3 2022-01-21 12:29:34.383371-06 20220119221313_item_act_var_tip_bug \N \N 2022-01-21 12:29:34.370628-06 1 9fa9221c-dcc9-4606-91d0-e5dcf6882b23 972f703116aaff9d4078c94c3fd5d9b3719dd8ec144e48e86a0b9d2447b1c62c 2022-04-13 16:45:01.975078-05 20220412203904_default_tip_10 \N \N 2022-04-13 16:45:01.967022-05 1 05b4e4d6-1f2b-4d0e-8f66-33ceabbe633a 9a6584dfce086a502fa2c4174231defdaadfb70ed8b5a8abe04a46fb325ec351 2022-01-28 12:49:20.565193-06 20220126155041_search_triggers \N \N 2022-01-28 12:49:20.540085-06 1 769ddf14-3899-4356-a5a2-220b7ef41a3c cdf0bf12b0f9b1eb41a3ba5151e30b9cceb5c52c9d547f1df0a9c174b27ec877 2022-03-14 11:46:38.037257-05 20220314162449_last_seen \N \N 2022-03-14 11:46:37.973123-05 1 9433df07-b842-4527-8018-ac3a9b21451e e9ed57dfb0eca9f3d7ab92e91949bb79e5bda08b01ae1c79533286570908a2d6 2022-02-28 17:39:28.419577-06 20220214215140_subs \N \N 2022-02-28 17:39:28.225355-06 1 bf1d2ad2-1915-4927-8c84-46871eb94bc0 ec99e92247d5c046f7aa8e10193fbb952a82fb9279a5d369e94bb69168ff2101 2022-02-28 17:39:28.595619-06 20220218193307_sub_desc \N \N 2022-02-28 17:39:28.472913-06 1 bf5c5db8-e5c4-4b79-9940-7a4a96394a40 45eb09faf7a221691760a5edc5d4c2c7973ac4dbfc622959737e3036fbda08b4 2022-02-28 17:39:28.775288-06 20220224203227_item_status \N \N 2022-02-28 17:39:28.648782-06 1 50577564-2aed-4c3d-a5a0-44fe879b0ec1 2309960f3a118e7ae70d9e76d8bcd3b88c3eed699b9b5f1c425a8187300ff0a7 2022-03-18 07:36:57.368737-05 20220315171015_item_act_stream \N \N 2022-03-18 07:36:57.357117-05 1 9fbec261-8a9e-45ae-bf2f-bdd4f8e749c3 12263dd9ce3dabae207a9329d8d2eebdfe54adc878ff6a38d29a713fbba5ce43 2022-02-28 17:39:28.957428-06 20220224205443_run_auction \N \N 2022-02-28 17:39:28.830839-06 1 02044f15-f558-4131-924e-e343b091f288 9002968253aace02a040650615611e7d86fc5d51f080a61b9244ac91004c6595 2022-03-02 14:59:25.015276-06 20220301201244_auction_fix \N \N 2022-03-02 14:59:24.993042-06 1 61c1d25a-da3a-4207-90e2-4d371b96d873 afedeb8db95b76b624c7e2ce395639fb4079e66f86d8c836a3690ce68918cb13 2022-04-23 18:59:16.777084-05 20220421195241_note_settings \N \N 2022-04-23 18:59:16.768686-05 1 547967b2-10f7-43d1-8fc3-637825858c70 db3c96680c7b9418738cf69c2c385097dc9c6bbc3bf076ad96a37c8d9f8ba7ba 2022-03-03 13:01:06.950487-06 20220303170859_exp_auction \N \N 2022-03-03 13:01:06.880082-06 1 d0cfa7be-4868-4b89-aab9-4b6db89b5419 de577449e60e0cb0d7416462cdd47ced3ddb38b6f3db6f8d501a90b03ada8d56 2022-03-18 07:36:57.39886-05 20220316212238_earn \N \N 2022-03-18 07:36:57.372327-05 1 b13b23ce-daf0-478c-9d01-f9b183b6d44a d6a9b4a65a352206695cb398050703c7f0fc8857faa7a58fa2ebbaaa26b3b216 2022-03-07 16:09:21.746136-06 20220307181836_sats_min \N \N 2022-03-07 16:09:21.722727-06 1 aa2c0563-bbd2-4ffb-88e1-8b8bfea77203 863082ab0a12666778426507f7484f00b6d8445e71867f4a6e172809d49b9ed0 2022-03-07 16:09:21.755428-06 20220307201437_job_col \N \N 2022-03-07 16:09:21.748686-06 1 f0d81281-052c-465d-8afc-c564d27c6dcb 961f0943419d89d958fb6fc8a34ae4005751e4f7a95e00b630acdbdbae39b4ae 2022-04-13 16:45:01.983453-05 20220412205824_path_index_prisma \N \N 2022-04-13 16:45:01.977961-05 1 0846d902-e7bf-4de0-a1e5-085758d75b87 4d70c2c1a1866487e686797034e525c6ad5fecd003c1412c21a7dacb9a02f23c 2022-03-10 16:53:23.151139-06 20220310191658_more_indexes \N \N 2022-03-10 16:53:23.041672-06 1 b10f7f34-ac8b-404e-b5f6-764e37a3096c 2cb2532da64ec61edc068b1ad3a0035256f06913cf820a0aa913faec4febe379 2022-04-04 17:05:33.674234-05 20220404191617_stacked \N \N 2022-04-04 17:05:33.549007-05 1 97b47f51-e382-42f9-9fe1-af7431136f0f 6e2a2a1beb1974ce73eb928f01c45ce90ab7611cf397c14123c55fa5efea2ed9 \N 20220412190704_item_path_index \N 2022-04-13 16:44:32.828785-05 2022-04-12 14:26:21.757405-05 0 1a81b15e-e275-4b33-a350-c84de5457df8 7be995b4b6a20fc232fe93b96b66bf3bb38c3859fc59dd2b62b0573c6735ced0 2022-04-17 08:18:31.118298-05 20220415193617_exp_comments \N \N 2022-04-17 08:18:31.110817-05 1 6c3b1938-b104-4d94-b4a8-123aac4790a0 32231a373675ec77d4bc09ba6813f6caaeb1b56d1e5f734bf578fa291f4bf715 2022-04-13 16:45:01.963962-05 20220412190704_item_path_index \N \N 2022-04-13 16:45:01.959318-05 1 eac533cd-4844-4bb4-a4d4-580e785b6f6e dc16ac4667f83b7bb8499a6c14366aad2fdbe63247de12b8d57028f69652c935 2022-04-19 13:43:54.461249-05 20220418173838_forward \N \N 2022-04-19 13:43:54.445634-05 1 a2c6ec4a-07c7-4dfd-bed2-eda89f8f423e b650dd225f0bd760f3db9cd77e3eb354a28ace4d160ea22fdf2e4ea5653d8050 2022-05-09 13:04:06.434788-05 20220508141357_jobs_indicator \N \N 2022-05-09 13:04:06.428189-05 1 4d4c820a-755f-4a7f-9b68-cf59dc143287 a82214f40385ca7e019f5f5e012637ccd2d9c6f4a7d7d66eebc4d5f6e04737b2 2022-04-19 13:43:54.470524-05 20220419162551_fwd_item_act \N \N 2022-04-19 13:43:54.464015-05 1 ef6db977-6768-4080-8dac-d2f4104f6f26 18b6be647dcdd9381759257177b46aa29ce00d64412c39914385ff2043570896 2022-05-17 15:01:15.130594-05 20220517192333_boost_denorm \N \N 2022-05-17 15:01:14.841248-05 1 876c622e-e12c-43b1-ad2f-5e061875e282 7ef30706f56fafb480965f036da416ee024707e3dd48ee0004cec9ca2846a4bb 2022-05-16 15:56:10.756075-05 20220511171526_upload \N \N 2022-05-16 15:56:10.596512-05 1 1ae881d2-b9c5-48b1-91cc-a4f21a437edf dca085ede5f213e3c396aa673c4f6ed29906ef569c377150d875e1ae13b3de47 2022-05-17 15:01:14.833153-05 20220517173200_weighted_votes_denorm \N \N 2022-05-17 15:01:13.389421-05 1 5a5ea398-c6e8-4d1f-9be3-fb9d1b5b45db 7a6891f041ae4f072692fdfcef685ececba003f0f1e7eca301b9b91d57225060 2022-07-07 14:43:17.953274-05 20220630170204_upvote_trust \N \N 2022-07-07 14:43:17.945197-05 1 b5820d61-8bba-407a-bc08-96a3b04c0cc8 091f6414c7a2138b882d993eb7747be9924ac78c641743743d759ab9a977f0f4 2022-07-21 18:03:53.364896-05 20220720211644_item_uploads \N \N 2022-07-21 18:03:53.355359-05 1 41b129eb-5586-47df-a69f-b57e9478911a c0ec904cff89d91ea461f5befbb41a53a42f719d04a0efcf8488753cb2d1ddf7 2022-07-30 08:59:33.103337-05 20220727194641_polls \N \N 2022-07-30 08:59:32.825212-05 1 a26d3211-8f80-49a9-aed1-5ee55f06102f b75ac6e7ad7a5fd318001af0312cd2f110202eb7f2b5ee247e296f9d664d52ed 2022-07-30 08:59:33.113087-05 20220727194920_poll_functions \N \N 2022-07-30 08:59:33.106128-05 1 a3c38aae-3365-46af-a55c-f910923022be dc6bc6accecb9283f79153fe2f685193caa7c7648dc1514dcb0a2e1dbe978479 2022-07-30 08:59:33.124903-05 20220727203003_poll_functions2 \N \N 2022-07-30 08:59:33.115827-05 1 ee9220ff-7684-48fc-ade7-9526e1afc79c 58e6f705f86ff5922ea97fac1616ef5460d66cb9ed179e1f31f2f640309844ae 2022-08-06 17:07:41.804072-05 20220806220043_no_free_comments \N \N 2022-08-06 17:07:41.796021-05 1 f9bb2879-2367-48b7-acf7-8e4bf3912222 bb44cf9ab80c026acf213067e35640bda1a6c66d92768497a964c84b8f45032f 2022-08-11 16:00:42.178946-05 20220810162813_item_spam \N \N 2022-08-11 16:00:42.171384-05 1 a6c0bbd2-61a4-4bb1-be4f-444751c6e41c f67a97e2259f4ea63977eeee61e396e66ed9d78a1b21e26e6e080efcaaf86386 2022-08-11 16:00:42.190456-05 20220810203210_item_spam2 \N \N 2022-08-11 16:00:42.181775-05 1 1da4621e-379b-41d9-a92c-c3a6419a9c35 089c4ed351aa3908d5fd56e79927f84ad898aeb4f72e6930e265876fcbc6266a 2022-08-27 10:54:08.868546-05 20220827143828_positive_ints \N \N 2022-08-27 10:54:08.842115-05 1 5a892bef-d7ca-4615-8aa0-da33b8d2870e f06cebae8050ddf12aec361abdd47c6830dc6694015afdeb6273b295553514c4 2022-08-18 17:11:19.28946-05 20220815195309_edit_funcs \N \N 2022-08-18 17:11:19.282308-05 1 ede5b2b7-75ea-462a-8a79-e51805066e31 36d34415ed6dc2f09fa47c89274070ad748dd94d6572d0ed7c086a54a61a2421 2022-08-30 15:40:40.064791-05 20220830183739_create_invoice \N \N 2022-08-30 15:40:40.056266-05 1 429f6b48-e3b8-4ccf-872e-04ca007e44b7 ef9b26b7abf6cea5e6b58cf23b1f44da1095eb1bbc01b81c5bcfc4aef9a1c49d 2022-09-23 09:26:14.988843-05 20220922210703_outlaw \N \N 2022-09-23 09:26:14.980583-05 1 c1dac7b9-e549-481b-9702-b81e78f7c2fb e362fb489ebc48aa2ff814a82abc9c83915b3eb438456fb430a77eb4256380a4 2022-09-02 12:09:51.1541-05 20220830213020_hide_invoice_desc \N \N 2022-09-02 12:09:51.14432-05 1 ce88421f-63bb-43db-83de-aa9eed3fff0a 24c0029efe1c9ce30d51fd2bacb7608888b688d9eb0ca1aec18229967423e5ce 2022-09-02 12:09:51.171774-05 20220830222623_ext_pg_trgm \N \N 2022-09-02 12:09:51.156519-05 1 88205500-c5fe-4456-b54d-a04f627fee18 cde3dd097504bbb6afb6c10f78a12b2e3ba731875d1069dd5debafeb08876b81 2022-09-02 12:10:15.9594-05 20220831205352_item_and_comment_stats \N \N 2022-09-02 12:09:51.174747-05 1 0fbdc8a9-da6e-48bd-afb0-3b8162c049a5 29e4f62733b2a741687f27edb0654a36955775d5540d4f4612d5418147d9847d 2022-09-23 10:46:26.40482-05 20220923153826_outlaw_float \N \N 2022-09-23 10:46:26.395195-05 1 f011d539-c659-42fe-9364-8cd2a86f6ba1 117d0bc6018e7df5eb384b91b9e5b91ed7284334fdf673a4ab5527c1e282f332 2022-09-14 17:05:04.054654-05 20220913173806_earn_columns \N \N 2022-09-14 17:05:03.994316-05 1 c60ef0dc-6120-43f1-acbf-2cf8894e17a9 0c26535b8f85ccafc24f9e11add55b452d74bdb837587c2ee7c9549356ce2d1e 2022-09-14 17:05:04.066617-05 20220913173826_earn_function \N \N 2022-09-14 17:05:04.058479-05 1 9aaedba8-4217-48f6-b3c6-2822688e3aad 21f8e8a3f8cbcdeadd634a772bf53c1e2d0b1d9b62d61b7afd178641211c285d 2022-11-01 14:37:40.559253-05 20221101183505_create_item_freebie \N \N 2022-11-01 14:37:40.549265-05 1 b9226050-fe79-4cff-9800-33957935ef00 ce0287e231ea6b49895e7183212f77d689f72152f6e50904ffc9801c5fa4462b 2022-09-21 15:04:10.390529-05 20220920152500_downvotes \N \N 2022-09-21 15:04:10.355395-05 1 d3fcf6ad-af66-40b7-9bee-d3bf7dd350d3 9ff07dff3ca3454061f8e5f8220ba8b80fd0c4a306ffbaace5b6f6de99339dc4 2022-09-27 17:21:34.948078-05 20220926201629_freebies \N \N 2022-09-27 17:21:34.938651-05 1 7ec45f36-2369-4fea-8636-f8ee142a6bed 7208b03908d28c7aeac8b85bae605923ed766824339087e2446ac2941af53665 2022-09-21 15:04:10.409712-05 20220920195257_dont_like_this \N \N 2022-09-21 15:04:10.3933-05 1 08f6a76b-656c-4541-b111-ab9adddbfa46 9285c3f412b7a27bd443bc54133d8cd27ceb45ac069d4a174907954ddc0235dc 2022-09-27 17:21:34.961237-05 20220926204325_item_bio \N \N 2022-09-27 17:21:34.950989-05 1 08fa34a2-8ff9-4639-bdce-6be38927ba0c e1c143f386f3c84c3df93b9b3cd8d6c508a66236dea40f904c10751c0a277a5f \N 20221106181637_item_path_index \N 2022-11-06 13:03:22.969741-06 2022-11-06 12:52:20.671744-06 0 2938e838-7625-42d0-8858-f5deef3b9c4d c668c8be9df89fd157ae2c431dfb10aa27ba2e25d051ce900bb7bd001b49b4a6 2022-09-27 17:21:34.97188-05 20220927214007_reserve_names \N \N 2022-09-27 17:21:34.963683-05 1 ace252cd-b2ba-43de-b43c-5639951387ed e1c143f386f3c84c3df93b9b3cd8d6c508a66236dea40f904c10751c0a277a5f \N 20221106181637_item_path_index \N 2022-11-06 12:44:33.239593-06 2022-11-06 12:33:43.915213-06 0 08a21173-449e-40aa-8d72-70b1aca63264 92f11dd0d40d050f55eee8e0ad28904fcff425a6d39b9cefb16ab97e252d3882 2022-09-29 15:46:58.540332-05 20220929183848_job_funcs \N \N 2022-09-29 15:46:58.530119-05 1 3dbd4666-8039-4127-b19d-6fe1f1c0ee8f 261e0385089e1b6bba3b9c6acb98ecd8874246c302ac7d742b5234287189fb0e 2022-10-04 17:43:44.033571-05 20220913010100_fiat_currency \N \N 2022-10-04 17:43:44.023623-05 1 65336ff1-a99e-4aa0-a86c-93f90149cf82 062871b4840c3f773c9c6e09db2254922c433a45c1298eeb5ee981932e642b4c 2022-10-05 15:14:10.648322-05 20221005192538_auction_update \N \N 2022-10-05 15:14:10.639536-05 1 c869d1b0-3b16-48ff-aa36-2a53bca8d03c e1c143f386f3c84c3df93b9b3cd8d6c508a66236dea40f904c10751c0a277a5f 2022-11-06 13:03:22.973153-06 20221106181637_item_path_index \N \N 2022-11-06 13:03:22.973153-06 0 f0a6ad2e-79b4-49c1-96fb-634c36d3caac 6129d26d1f818e0a5e50337c251aeb3052239ef3d00cbafaa09e3ca4d7ae0e76 2022-11-06 14:41:21.251627-06 20221106203216_item_indices \N \N 2022-11-06 14:41:20.52453-06 1 aa0969fc-6ec4-4f17-8ff2-965129911ce0 9f410fc19973e5a6aeb49d893c5c44518ce33aacbb895dc2926d577527e5ac9d 2022-11-06 13:05:37.086708-06 20221106184713_item_path_index \N \N 2022-11-06 13:05:34.30149-06 1 c8cdaca2-d63c-4ebc-91ff-04761ac917e3 1c36abb677a6e8ed47453bcce6a3232116c9000c300978d5b6b17a9c295a00a6 2022-11-15 17:05:21.037808-06 20221110190205_msats_bigint \N \N 2022-11-15 17:03:03.768273-06 1 d58dc5aa-7a61-49c2-9c00-e5cdf10c2e3e 7881f464a5486550e9a24bbd69c6d66a08565470d90b867ae0869bb40f5030bb 2022-11-23 12:17:47.09946-06 20221116223041_tipcut \N \N 2022-11-23 12:17:47.089199-06 1 26cfa2f7-c39e-4f18-a7b0-d8daef949989 d73fc07f0f11f89d84451efce2667d095c4940526c3e5b778dfd94739cc63b0b 2022-11-15 17:05:21.062606-06 20221110224543_msats_funcs \N \N 2022-11-15 17:05:21.041638-06 1 cd08619b-87d0-466f-a91f-aa68d8560909 87d7eb2f37feace29949792e0f00b0b6e6fb3a2c7f6ff2a6d5e894b55b4e9f29 2022-11-23 12:17:58.155345-06 20221118202137_tipcut_funcs \N \N 2022-11-23 12:17:47.102559-06 1 dc9b1d09-2497-4df2-93dc-718e2fe90a39 305193360a6c14b3613eab2c28ace4b323d15c0597755f2a536180c9ce03f86d 2022-12-09 14:36:04.704184-06 20221206213226_donate \N \N 2022-12-09 14:36:04.675087-06 1 66aa6bf6-5d80-422e-bcbe-9fd3c373a555 738f98396d7cd58d1391a46332ca1c0309930efcb73c6bd21aae02d1d8e166d9 2022-12-01 17:17:42.732531-06 20221128224540_job_cost \N \N 2022-12-01 17:17:42.720942-06 1 773c7a72-44dd-4359-897d-70a9229e3a41 6a66002ce30b0ecfab366b9d3e5967e828e9e507f72da75343d9a62f91f04654 2022-12-01 17:17:42.746902-06 20221129182008_hide_top_users \N \N 2022-12-01 17:17:42.736445-06 1 c563603e-68e9-428f-99b1-84545ff378fd c1040cacb36d69f5b7f72dc4d76e0239c75c7b9cd6c0b36210fb6319abe602c1 2023-01-06 19:03:12.57444-06 20230106183533_nip05 \N \N 2023-01-06 19:03:12.563336-06 1 7bd2d38b-1a63-47b4-902f-a3ec7f9549ef 1f23375e1520b622e0319c609677557a80b572f82aef1be4d407b740e594cfb1 2022-12-09 14:36:04.715025-06 20221207212053_donate_func \N \N 2022-12-09 14:36:04.707158-06 1 efecd155-7005-4a2f-a405-8dadd2ae8915 384170c516eb6b8ed746e1d70e8d3c5e0ce8b36e3c91b26f52bd800ce2b2318a 2022-12-09 14:36:04.724842-06 20221208224752_turbo_tipping \N \N 2022-12-09 14:36:04.717831-06 1 2906582b-735b-4b32-92ee-2af41083818c b95ad5f42cfd7832efa8e2305c1f259a86070b2d5c2fd66be77ccf598497ffda 2023-01-22 14:28:17.670841-06 20230119155952_ots \N \N 2023-01-22 14:28:17.660858-06 1 adf417df-ecff-45ff-a190-bba29e9f5365 b852a09e39758336fc26d68c8fca027712349838b0727899d3cee322f8b24c69 2022-12-09 14:36:04.733878-06 20221209201457_donate_func2 \N \N 2022-12-09 14:36:04.727818-06 1 bc6bf59b-1edd-4ae0-ab4b-c13d86e48128 5f537ce9f3ae6b2de3bea0c7091b0cf2f1f169bbe5ebc60edc3c0ade79f384c9 2023-01-06 19:03:12.607777-06 20230106200624_nostr_relays \N \N 2023-01-06 19:03:12.577015-06 1 4a546b8c-2c37-4aa4-a582-2d2c0a2ae645 79d14b4e29920a0e30f6c52881cccaf103a6dc0ea540b5f6c2e1e9f76a6ffb88 2022-12-19 17:24:54.971312-06 20221213220945_referral \N \N 2022-12-19 17:24:54.958821-06 1 f364c393-62af-4f58-998e-c82798559e64 1edcbbf363f4902e4eabe1a47fd8ed8114db57f692152ae1afe5f13ba77503b8 2022-12-19 17:24:54.993648-06 20221214175911_referral_act \N \N 2022-12-19 17:24:54.973913-06 1 8def4209-718c-46de-ba31-803ba590270e 4e6c2f121c7963b379d3c86a8365d574d98b6fce372db4eb8c91e70888033c98 2022-12-19 17:24:55.188208-06 20221214201527_referral_funcs \N \N 2022-12-19 17:24:54.996979-06 1 04f087fb-c94b-43cc-ad3e-d23efd55ba9c 90b367792e9c75d41c746cbb41e35215a84b431eb18be81534f7330864dab12d 2023-01-13 13:22:17.827968-06 20230112205950_delete_item \N \N 2023-01-13 13:22:17.819711-06 1 0a206e5a-40bf-4cd7-b074-c053f73fed6a 80d5d642dceea8f97a110a781d39dec1d00472b5715e41813733c6fd1f448c0b 2023-02-09 13:13:26.229761-06 20230208232335_run_auction_fix \N \N 2023-02-09 13:13:26.218357-06 1 8ad7eb70-27cc-47d1-967a-41368d2338e7 2345f5e00d1e95e957dd47712d5e66444f8edb7baf1a53e2aa9d247510bfc5bc 2023-01-18 13:10:35.115868-06 20230117185647_slashtags \N \N 2023-01-18 13:10:35.065663-06 1 613eb05f-c4d8-4cf6-aed8-d8bbbe9eafea 77abdb3a2849062af296af1ac7191c091f86b5c5f070439d43a978126eca8fcd 2023-01-22 14:28:17.686889-06 20230119161144_ots_trigger \N \N 2023-01-22 14:28:17.673883-06 1 a357e775-fda9-4f0a-b633-c90f83cfa780 07a85bf220781aee557b85d74b66cb0ee8ef6458893d5922f5590cea83ddc198 2023-02-02 14:06:55.169844-06 20230202164411_streak_trigger \N \N 2023-02-02 14:06:55.157576-06 1 93874e01-66f4-4edc-96b8-3fce0e4e765d 1cc715cd26cf1546ae041cacf6558ff85ebb2c879b85701f21caebe6e1be8631 2023-01-23 12:12:49.450006-06 20230123180433_subs_timestamp_fix \N \N 2023-01-23 12:12:49.439142-06 1 8f4fa4f6-3aaa-4410-aac1-5802a3c3018c 2db070510a1eefbc583390850f5c73439f8e834d8eb6e53d27cbdcecb42bf114 2023-01-26 10:23:07.034942-06 20221213203919_add_bounty \N \N 2023-01-26 10:23:07.020185-06 1 dadb8d68-cc46-4904-aea2-2f322a117403 8897169043bb55ac35cb355fbc167fe087f0dd6626a2ee31e0e0f9a3005e1430 2023-01-26 13:13:15.754123-06 20230126180748_root_id \N \N 2023-01-26 13:13:15.632879-06 1 53ffec97-9197-4a15-ae76-703edbc534a9 48ebedb3efd1df085c69d7f2c71037666e481699c79be06a68dc4c7153b14791 2023-02-04 07:25:50.867235-06 20230203193108_streak_user_denorm \N \N 2023-02-04 07:25:50.858289-06 1 ca6f94da-270e-41a6-b9d7-4986f7a91794 0f92ce01bab66b44732281b7111f61e902288096eae35f578b9cdfb7fa420934 2023-01-26 13:14:24.469028-06 20230126184544_root_id_funcs \N \N 2023-01-26 13:13:15.758027-06 1 429b70bd-b7d9-44a1-ae8b-6019115a5737 9abf4ff2aa839564c0450c2d8054ebf9dcec3e76b2c515ab27479df4e23bdc4d 2023-01-26 17:36:06.312759-06 20230126213820_bounty_paid_to \N \N 2023-01-26 17:36:06.305183-06 1 642f2ef3-a8d8-4913-8b8b-16044dfaf142 7dddb4cde148006f572780b8123145d61b8c6a38a8b19f809ca9d1a48aa58dca 2023-05-02 12:02:54.469918-05 20230426200416_more_subs \N \N 2023-05-02 12:02:54.455075-05 1 1a7c5e67-0692-4637-bcfd-d40a8e74c079 f993da3011753cafaded8a36b5faaf6bd2154ef06bf955761fa88bd9195a026a 2023-01-26 17:36:06.325027-06 20230126214014_bounty_paid_denorm \N \N 2023-01-26 17:36:06.315156-06 1 45c30160-366b-46f2-9bb8-1f82ca1b9dd6 199086064f121f9c5a6d14d31ba29b2ac5c82afcabe1c3c87dc96864ec32c9a3 2023-02-04 07:25:50.884027-06 20230203193324_streak_update \N \N 2023-02-04 07:25:50.870236-06 1 48d44b1e-d9aa-4ac2-9a4a-8fd6bd6cb5a8 b19180476fa9a3834d0302ef57e11c8e7e11c7b1e90b73a4fe3ae9c7de2feaf2 2023-02-01 17:51:42.287558-06 20230131163315_streaks \N \N 2023-02-01 17:51:42.256992-06 1 864d95ac-fda6-4cac-98fa-a395682d7a4f 2b0871ee1817055e5390455c9667142ac958172076447f0e21e132be2f1daa06 2023-02-15 11:23:06.199948-06 20230215152142_desc_on_invoice \N \N 2023-02-15 11:23:06.192408-06 1 103c6be5-d6f8-49aa-ace3-72b2881a5fd4 dfe2682b5a3dd03ee5627734224136fe4985cd5a4fd3f2f0b662d49d0a579763 2023-02-01 17:51:42.300238-06 20230131221524_note_cowboy_hat \N \N 2023-02-01 17:51:42.291053-06 1 0b7f8088-5332-484f-954c-f70bde864e7c c8f13809d6ab34dfd510b46d07b327a8c814f59726dfcf1f23a00cbaf028dbe3 2023-02-15 11:23:06.212636-06 20230215153049_desc_invoice_function \N \N 2023-02-15 11:23:06.202518-06 1 1895d5c2-a95a-43e5-a314-c0d0db3b7784 c37fec8b76682fbdbed80fa8d2c6a0324cb9ae8c1b9881f69a4fbbff5b7c0f30 2023-05-02 12:03:09.309643-05 20230501205951_hide_cowboy \N \N 2023-05-02 12:03:09.292669-05 1 e5d535f8-e07a-4dd7-9f0c-daa31999bf19 7dd67fa943fc9c45a4f2abda29805b02a8f3e9d72b081c0838028b7fc5f27be2 2023-02-16 17:23:07.541909-06 20230212001152_bookmarks \N \N 2023-02-16 17:23:07.522893-06 1 d69248a0-1338-4ddb-a62b-6037c99837eb 493367ab3b24328c4f1cb5f8840c8b6c8516cfdea55424cf79211507a43f7573 2023-05-02 12:02:54.479987-05 20230426222617_poll_subs \N \N 2023-05-02 12:02:54.473064-05 1 b014abd7-ba09-4ca9-bf9f-801d94dc4f04 d978d1d0b66448e255e274a5d6a2f973b14f7d2906f9dec680be9cbeedb5c5a1 2023-02-24 10:45:43.457045-06 20230224163301_item_act_compound_index \N \N 2023-02-24 10:45:38.907978-06 1 de8cdbcf-7337-4097-aa6d-f789c63e2e86 551abfc9015e66b5551ae7596c5fbe975590a0ac24b98f07e44bde4c89cb30a5 2023-05-02 12:03:09.32937-05 20230501212659_hide_cowboy_rename \N \N 2023-05-02 12:03:09.314814-05 1 c5d60b7e-3be4-4969-9f47-f4d1aea99d1a d2d6cb1208d8e673d8f1ef23200a940bfc5d0627a6ab3c6138d8019529748490 2023-05-02 12:03:09.28766-05 20230428230115_subscriptions \N \N 2023-05-02 12:02:54.482712-05 1 ef227c06-dc15-4f6e-98d3-d1aa9373bbd1 b6252a91a47de338a70ca20ec2ae66f381b1ae14020d8414cae2d088838fadbc 2023-05-06 20:35:02.154072-05 20230506214933_comments_func \N \N 2023-05-06 20:35:02.143826-05 1 d94ae6f2-b129-4166-b010-2811c51584d5 5024d1350ae3bdb46b78ddec25545bc92850cc328956d0bc6ee8e8c02b338e20 2023-05-19 17:44:40.958985-05 20230518191821_views \N \N 2023-05-19 17:44:24.048556-05 1 f480de38-4867-4ff7-a4f2-5309bb3bc38a 9f8dd7e1bd892399ddeaa5286b9621a16f46e1233ae9497cd97cfd948c1cc321 2023-05-06 20:35:02.163562-05 20230506224746_comments_with_user \N \N 2023-05-06 20:35:02.156954-05 1 214477f0-f10a-474c-9192-bb8f05cce720 ad4ccda98e2be7c58d7f365f810177d9d3f9aa5b026a09209eb452e8e0999334 2023-05-06 20:35:02.175039-05 20230506232839_higher_tip_default \N \N 2023-05-06 20:35:02.16645-05 1 a63fd550-851c-4473-aafb-57b9d8801768 bb4c2ad1ca43e217ca895119d4e1499a89e72ea0d9b96583f61673a7f7216150 2023-05-06 20:35:29.135891-05 20230506233136_denorm_upvotes \N \N 2023-05-06 20:35:02.177775-05 1 0baf1994-2b2a-488e-bca3-cfebcdf0cf9a 65b2e13b16f16fde3cd252abb9b4ac778e1f6e4ab33c0d563fe73b1bda0df524 2023-06-12 16:51:26.209977-05 20230612113342_tech_sub \N \N 2023-06-12 16:51:26.201065-05 1 c6d22175-bf6e-4592-b7c9-d65d417a914c acbb8381f225465e4a48425be05212bf6ab8a5a6b575e8aa6fdd8f912b66a217 2023-07-04 17:27:40.846967-05 20230619022841_push_subscriptions \N \N 2023-07-04 17:27:40.821333-05 1 363c2447-4c70-4777-9c2f-5746296ba9f4 3ff8132e52e92dacd366b3328ebde037adb013289ab0a4472e9c98f11422c223 2023-05-06 20:35:29.149348-05 20230507005859_comments_func_meta \N \N 2023-05-06 20:35:29.141885-05 1 fd086c14-250f-4267-a7e3-7ef0f5edca99 b06040c0f25b3b66c12e860404a5a21cbb343ea38a8f61eeeca1581c77f9fa7f 2023-05-19 17:44:48.289847-05 20230519022855_user_stats_views \N \N 2023-05-19 17:44:40.962502-05 1 18ec955f-257c-41cd-8175-c04d4a8f37bc d1f409d10814a140d0eb26bbb7b1b2c3efbbc21935afa412dffdfc80c3a576dd 2023-05-06 21:18:24.018933-05 20230507020956_comments_func_tz \N \N 2023-05-06 21:18:24.007916-05 1 8dfa5efe-1f3a-4503-ac49-a333b2c6077d 3cbf38732e8391cac0ed13cae86cee08da75f742c2097db95365c6b2649e3793 2023-05-08 17:35:16.759615-05 20230507205613_update_job_priority \N \N 2023-05-08 17:35:16.745554-05 1 e6cd35f8-adb1-43b9-a610-bcaebcb08c68 a1502e80edf634ca69cd22105d542413cfcece725de6bb1bee86a22680391345 2023-05-08 17:35:16.771764-05 20230508202036_item_comments_users \N \N 2023-05-08 17:35:16.762783-05 1 916dbdbe-7d48-4d25-b51b-d33ec514acd4 16881e41d5f389cb14fffe9c20528e9d78f707e61939e875567df7d9f4347f00 2023-05-19 17:45:05.975179-05 20230519194614_more_indices \N \N 2023-05-19 17:44:48.293195-05 1 06839064-e29a-4e5a-8a73-75289ab7efbc bf6970ece3516c146a7dfb99d10eaa68edb47488a8a67f825279a9e267a10a28 2023-05-09 14:52:14.601115-05 20230508223532_earn_add \N \N 2023-05-09 14:52:14.589861-05 1 556943c1-8f69-4ff7-a6ac-28d677efbd02 0f60b8534f68d7d784cb918cfdc5a33106c60f4e92612901bb697a06b481f9ec 2023-05-09 14:52:14.614994-05 20230508232041_comment_weight \N \N 2023-05-09 14:52:14.604564-05 1 a349cc0e-0a32-43d4-9843-df5cf93c2d12 b40bd5f055e18e51fcde6d333d418188e40505843f0d7fa5795f1862f1c365cc 2023-05-09 14:52:53.201943-05 20230509171046_comment_weight_funcs \N \N 2023-05-09 14:52:14.618584-05 1 ba147587-fb8d-451e-bc0a-4032e7fd7164 7b35b8f033b317032dc5a4fe148948703c4a8182a75f822bf6daf8bec12f14c6 \N 20230519215240_another_idx \N 2023-05-21 21:19:56.894106-05 2023-05-19 17:45:05.978977-05 0 d023ed1f-11b7-46ee-ac18-30b0b658ace3 2a9feabdff85b71761014a70f561d80f5a1af1b4b36807a4861937681dd74623 2023-05-09 14:53:09.246478-05 20230509190222_earn_add_retroactive \N \N 2023-05-09 14:52:53.206005-05 1 8d19a7be-eaba-4ad6-8c74-2931edbef26a 7b35b8f033b317032dc5a4fe148948703c4a8182a75f822bf6daf8bec12f14c6 2023-05-21 21:19:56.898448-05 20230519215240_another_idx \N \N 2023-05-21 21:19:56.898448-05 0 06d832f5-0934-49a8-a24e-e06936ceab2d b54b5100a0e45f881322a6849f045396b615232ea3c9f731087a1039fd95cf08 2023-05-24 02:38:19.366552-05 20230524062059_rank_again \N \N 2023-05-24 02:38:19.131756-05 1 d646f3c8-918b-44a4-8907-c7ee6c0932e1 7276430c712679c5b935edb71f5d88050c77270bc113bb83b0ae60c9a5420558 2023-05-21 21:20:34.343023-05 20230521171442_fix_user_view_post \N \N 2023-05-21 21:20:28.140559-05 1 5f4b7cdb-63c4-46f2-b8e6-6e4de40123a2 7471f2b1d0a3356750ad53bee1cbb41d32af94dc201583a22cc5f46829ed58f2 2023-05-21 21:25:55.281456-05 20230522022207_users_stats_day_idx \N \N 2023-05-21 21:25:54.884386-05 1 8543a2db-ad97-44a2-92a6-9a3286bb56e0 531d7d7f0e64bace616e7bf34045857e79f883bd8662d38a1651b6c85375c58b 2023-06-12 16:51:27.139313-05 20230612195325_hn_move_to_tech \N \N 2023-06-12 16:51:26.213152-05 1 06c4b739-bc30-489a-8538-1a412a2ba89a 9f1e3a7275a9035f8f74427385e79f41316358ed36209652330ae6f64d30ad10 2023-05-23 10:03:55.167329-05 20230522122328_hot_ranking_view \N \N 2023-05-23 10:03:53.461655-05 1 7b572470-a481-4210-94f2-59fad364d2b5 f3971e1cc37526fe263bbe56867212ac63e769a80f7f27d62102d989a84bb68d 2023-06-01 15:01:54.1638-05 20230531043651_thread_subscription \N \N 2023-06-01 15:01:54.141608-05 1 f096be17-abba-4ffa-a0f6-170547fbef8f 98cbd3e84de20f765611a477a785f185360df296d4ca072e7b6bbb1b6590dfe6 2023-05-23 10:03:55.182703-05 20230522153900_schedule_jobs \N \N 2023-05-23 10:03:55.171128-05 1 35d4a765-2525-4570-af07-4a6f01e78c06 8149b81c09fcf8f9b3f8026c3fe88dcf4197a9dede224792da9f23fd5cc0da87 2023-06-01 15:01:54.176797-05 20230601003219_comments_with_me_subscription \N \N 2023-06-01 15:01:54.167278-05 1 28e7d63d-166c-4378-802a-4e1be37b22fd a576297ca8d475c31020b8b3834147008930a3d1af6747b1835c418bfc849027 2023-07-31 16:22:18.459066-05 20230726173732_remove_dupe_funcs \N \N 2023-07-31 16:22:18.443956-05 1 e5c4be0c-cb48-4860-9cb2-794741750608 a4449715914405649e3b0945c22cc7bbc5081f674988807f49d43f7feaced1d1 2023-06-20 13:04:02.309932-05 20230619193610_daily_squatter \N \N 2023-06-20 13:04:02.296203-05 1 d91c35b0-dee8-459a-ac7f-346de7e12e75 a3a425951ac627151b54673babfe245901179a9a582b422760871c09e82ec2f7 2023-06-20 13:04:02.33246-05 20230620011238_snl \N \N 2023-06-20 13:04:02.314652-05 1 37778eb5-8bbb-4a6f-94d2-db7d670e0d5e 8744bb5cb4cbeac13233773251943f86362c5734603dd1e81197eb8aee073833 2023-08-07 15:17:55.375999-05 20230807195244_twitter_oauthv1 \N \N 2023-08-07 15:17:55.366716-05 1 28f002a2-eb0c-4332-87e1-4df18bed54cb 34afb8f199b857b714c705266da54837b24acf3bc98350c0bb1ca1a1d068c115 2023-06-20 13:04:03.414146-05 20230620152940_meta_sub \N \N 2023-06-20 13:04:02.336165-05 1 dcb3b102-6c3b-4a74-9a3b-913dcd482757 2e373d790ed2bd2cf0c00469b32742c0b4ee244fa80e522dbfecd6adc87ae8b2 2023-07-31 16:22:18.581267-05 20230727184222_next_auth_4 \N \N 2023-07-31 16:22:18.461901-05 1 cc8ed058-bccb-4d46-aebd-785d4756afad d98c8348b39ef2d71b8b0ae8b5b11da74cd38c54af945441cfaf5ac09be9f6bb 2023-06-20 13:04:03.431104-05 20230620164842_freebies4ever \N \N 2023-06-20 13:04:03.41883-05 1 4b6186fd-3e72-4cce-8ad4-5c49ced80405 baf087e5c6989abb96b0db02e09cd650c0e7c059e20c2ad96674228e39dd0107 2023-07-31 16:22:18.59268-05 20230731135152_timezone_utc \N \N 2023-07-31 16:22:18.583726-05 1 e81fca07-cdd3-4edf-be92-b0713ab1fb0d f32c9c20b3f344dbe94c9fdbf9d945ce83e9918c309b57de80559cb4fcc60055 2023-08-16 18:31:14.095282-05 20230816193946_constants \N \N 2023-08-16 18:31:13.715714-05 1 476ef7f7-d0d2-4944-8029-8399e34b89e5 5fd5d8c428a5fc0047f6f960dc2876c897328d2d391d5981ee354213e514b087 2023-08-09 22:34:55.784449-05 20230809220717_rewards_indices \N \N 2023-08-09 22:34:51.456187-05 1 764f50ee-1cd8-44f8-8b20-116a7d9b9d7b bc3ad2dd58dfe978c411171f99510abb9a45c8931a2991ce6d94d31e29d0d940 2023-08-08 18:01:00.864978-05 20230727214058_nostr_auth_pubkey \N \N 2023-08-08 18:01:00.831779-05 1 d8d4970b-98f4-439c-81b0-0b2b5bf7a984 b6efcd90e66cf095de960d50b8dd468776a630a3a36a5814a480251a5f7902fa 2023-08-12 10:02:57.6628-05 20230719195700_anon_update \N \N 2023-08-12 10:02:57.653775-05 1 36e37091-981d-4a3d-a9ea-1b10c697078e 77967ba89bc2ebf4f376dd654e8e3ec2a25335b6f457399f40bfc9b4bdf4ec5c 2023-08-12 10:02:57.675424-05 20230719195700_disable_fee_escalation_for_anons \N \N 2023-08-12 10:02:57.665214-05 1 45d22978-46a6-41a2-8947-6d77f3ef6532 2d29e0b2f9e7bc34831f8878fbdcf7e953ccc9faccb66073ffe07f07c4d9ef23 2023-08-12 10:02:57.687627-05 20230810234326_anon_func_exemptions \N \N 2023-08-12 10:02:57.677893-05 1 0505985f-4a4c-4b20-a165-3a2876ef347e 173333f7afad7ad5af6c470a7a25eb42798071a5d7860c99ce8b200abd53fbb9 2023-09-12 17:09:50.640129-05 20230829205147_welcome_banner \N \N 2023-09-12 17:09:50.629731-05 1 e7c9d408-a1a0-4b6f-97c6-1e51a512568c 71aa6f3c6e86d0c5574c4d5faf6e2f0f720aeb8c0427272e9de8994a9904bca1 2023-08-16 18:31:14.101978-05 20230816232257_boost_power_typo \N \N 2023-08-16 18:31:14.096989-05 1 947f43d4-16d6-42e9-807f-6ccf3f331b8e ddf6c2b2a2e4fa4db482bbc7c3146fba193ec4748f892d699325e5b6cfc7527d 2023-08-12 10:02:57.696995-05 20230811172050_denorm_anon_tips \N \N 2023-08-12 10:02:57.689946-05 1 df14ed48-6183-4c68-a185-8b3c5c695f33 324100ba8e2a5b7b0e49aad84c0dacf5407f154e2dd886e7faa84ab9228e011d 2023-08-12 10:02:57.71865-05 20230811180730_anon_bio \N \N 2023-08-12 10:02:57.699318-05 1 7cd4006d-32c9-4a80-ac50-327276f26009 4170e972b76d3ab259c9ceda02c42ae41abe450bf93e4e283769757d2c140ca8 2023-08-15 14:01:01.251495-05 20230814220924_settings_click_to_load_img \N \N 2023-08-15 14:00:54.481524-05 1 89f4b70a-a491-4c25-8a4f-5fba1ee8f587 4e237868fc43edbcd31ec9648e3918d02c39c905f394e1e772779d2c4b5bc114 2023-08-27 14:58:33.221198-05 20230814233157_multiforward \N \N 2023-08-27 14:58:33.006811-05 1 0e30abc6-784c-4545-8911-6fd5e06be11f 59229e26f1b6e9cc3deb15cee9c3ef37923f921189b956ec0ff1a4cb64ba400e 2023-10-01 18:17:43.111543-05 20230920192620_item_imgproxy_urls \N \N 2023-10-01 18:17:42.000284-05 1 17e48fe0-69e6-43bc-bc93-8f8a49fc0812 0efb0ea0f661fc6a473da322c79dbd80c2f4570b0dae9e4e07c858a45b5f4d86 2023-08-27 14:58:33.23102-05 20230818184016_hide_bookmarks \N \N 2023-08-27 14:58:33.223102-05 1 6e52985b-2b7c-4088-bb19-2a5b4c247630 d2e6163c8e84a0f983d4031fc7f82c75da88b5715afc8d22b9403b1de8ac6169 2023-09-12 17:09:50.6516-05 20230831144120_thread_sub_forward_user \N \N 2023-09-12 17:09:50.64251-05 1 2e6764b0-db9a-4192-9231-5442ed42ebcf acf7480e0a8c6551f8efd95d84b79240b38c76f9ac9ecd6a5a02e024ba2622e0 2023-08-27 14:58:33.248345-05 20230824064857_new_create_item \N \N 2023-08-27 14:58:33.233557-05 1 0181a9ba-5a41-4a45-9267-7049c41d9865 95dd67a7d3eb8a645de2654849527627bce82a8aed1159640b8ebff053065053 2023-08-30 12:03:18.338456-05 20230826005627_user_subscription \N \N 2023-08-30 12:03:18.30866-05 1 f2d2c21f-eaa4-4efd-8f2c-1b3afaa8cf94 8c29d39b96dddb257356fb8dc2b8b462a7701ff04e5d3d8d3a0cb4ca2c47acfb 2023-08-31 12:59:46.943413-05 20230822133848_invoice_preimages \N \N 2023-08-31 12:59:46.790546-05 1 b07281ec-0662-4627-9b68-2cf58e7f6040 73997f068cb28b4a0880fff38277b7f9a87d9de68d017f26304ca7c910e45a42 2023-09-28 18:02:31.265068-05 20230927235403_comments_with_mutes \N \N 2023-09-28 18:02:31.257648-05 1 0f33e1f1-b28d-48c1-95a2-49bf732ac3ac 029a77ebd784e276e531d5a8ae37223526b37289cfd782536b9cc411ce8e6842 2023-08-31 12:59:46.949964-05 20230824124501_invoice_is_held \N \N 2023-08-31 12:59:46.94481-05 1 20a3a385-17dc-42bc-a9f3-b2f82f380d01 a7856523550901f99a0c2463d64aa4308e904df40d6e209941351e65472a442b 2023-09-12 17:09:50.659445-05 20230901185713_notify_fwd_zap \N \N 2023-09-12 17:09:50.653486-05 1 d05f3dc4-c584-4d30-bdbe-6ec56ec13070 b2457666af0853d7bd2dc4acde0fc0ce536aaba2163436ae76707d6b7d637c40 2023-09-12 17:09:50.667492-05 20230912122629_hide_wallet_balance \N \N 2023-09-12 17:09:50.661458-05 1 0da679c8-7391-4148-8fef-36e2ca67f0da 60ae26aef75d233efeae1af9c3ccff9afb6faf85172cf0abbfc1c828efaacff8 2023-10-22 18:30:37.430533-05 20230817221949_trust_arcs \N \N 2023-10-22 18:30:37.410788-05 1 b0fe2ac1-a05b-434a-a653-d1f8c54de0e3 3d057eb8b65442fee7583be8e203fc36d1bb70a62505d8cbc36b099342614e46 2023-09-13 21:10:41.204745-05 20230914005420_variable_down_zap \N \N 2023-09-13 21:10:41.194192-05 1 d3de5480-9f49-4d48-a452-5b1ed11e11dd 3b3d22b9f734747e09429e2fb0d6bf4bdeed157a6d3a660125d6f3f32520c0f6 2023-10-01 18:17:44.057988-05 20230929193801_daily_discuss_to_saloon \N \N 2023-10-01 18:17:43.113563-05 1 2d6c93a4-619c-417f-ae9f-1b342b570c30 f25118ced38d0dc3feb1bb32128cd7b8977e4ef7eb45658434fb492376b20503 2023-09-14 10:49:50.278922-05 20230914154000_quote_ident \N \N 2023-09-14 10:49:50.265794-05 1 ffd1a20d-93a3-4245-897f-539a1b46a06f 02302af5f0863b05b0ca00315ecc5074331c5dbb2d27547d1dc639b7d371b35e 2023-09-18 19:52:19.793266-05 20230904010326_subscribe_posts_comments \N \N 2023-09-18 19:52:19.780886-05 1 cf516228-3737-4ae4-b72d-545fe90e97ac 876e12511d0fbd64fbc3f95bc297056d1b12b76ce3bd83bcbe8c2ed819d621cf 2023-09-18 19:52:19.802009-05 20230906010648_verified_contributors \N \N 2023-09-18 19:52:19.794638-05 1 95d8f883-83ad-4640-8e28-1f66fedfd5b7 9c36d334c3c2d880cd34d93fb0f953f163b3b759ae17e0a4d960a3df9b20b0ba 2023-10-04 16:39:22.430669-05 20230827005527_add_nostr_crosspost \N \N 2023-10-04 16:39:22.420366-05 1 24a619f8-93d8-442c-b32f-10abcde7842f 5e7f47d7c099b0440f4ba4ad4edcc437a5b909dd3af150fbeb1646d3e445dd0a 2023-09-18 19:52:19.82742-05 20230908211455_diagnostics \N \N 2023-09-18 19:52:19.803388-05 1 6c99f6fa-9046-4e11-81f4-aa02baed265b 9d54ec97c6b08065ec5e6d7f36a8abb97853cb0623c8abdf363c247af05c6fb0 2023-09-26 16:48:49.611266-05 20230915234627_lnaddr_pay_comments \N \N 2023-09-26 16:48:49.587635-05 1 911255a2-8720-471e-b41f-d1508ad1e6f7 4d90a691599a5722030e7cc8b8a3be3cecbfddfb400443194db999af95f541ab 2023-09-28 18:02:31.255992-05 20230927194433_mute \N \N 2023-09-28 18:02:31.22976-05 1 da9b6311-401f-4846-87c6-242dd3e58378 7ea834d714d6fb09e2e5fafd112597e51a6138b3151c6f4072019cc6ba5d09bb 2023-10-04 16:39:22.44407-05 20230927235726_lud18_lnurlp_requests \N \N 2023-10-04 16:39:22.433329-05 1 fe1a5e82-fbf4-4c7d-b202-6baaa3e72c2f 00923ebf519ba218bf4955fa91eab6e9f1eb2512c9516f00b72438bef8111817 2023-10-22 18:30:37.439405-05 20231010110432_withdraw_max_fee_default \N \N 2023-10-22 18:30:37.432379-05 1 cf98a4fd-ce8e-43e2-a113-c85549da6d1f 9a99b727b981160d4bcb9338779e9f472f2b4a1a864eedd2a49381fe3bfcd541 2023-10-04 16:39:22.454299-05 20231003134505_rename_to_imgproxy_only \N \N 2023-10-04 16:39:22.446601-05 1 13ef2afe-afc7-4860-82eb-aace1b589242 ec24552c54aab51e0986d999b8da50a278b9f14dab2b89edd0537610d78b7cdd 2023-10-06 19:35:29.84713-05 20231005215415_fix_freebies \N \N 2023-10-06 19:35:20.485568-05 1 1651c361-527b-4293-871e-9203c269dac5 a4e342636b7b36188e8f413212f59f2b6c81c8f8cfbc2d2d1bd451091516c820 2023-10-30 20:34:40.053617-05 20231016223000_self_subscription \N \N 2023-10-30 20:34:39.323258-05 1 cbc84a3a-0a1a-4a35-acb5-019d34f56e68 9b0d95e883ead5dc94d8b0cf6b121ee5fc811e1fbd1e0886bddf912a8bbe84a2 2023-10-22 18:30:37.449687-05 20231011205945_arc_to_idx \N \N 2023-10-22 18:30:37.44091-05 1 93752d4d-c21d-4f21-b4fd-10800cdf6b1a 3de8141e24cc2d0f3c1b282e2a9fe0ad6ca20c742e5cb2bc947fcde80d93ab34 2023-10-22 18:30:38.171529-05 20231013002652_pwot_views \N \N 2023-10-22 18:30:37.451262-05 1 deca8b57-441a-42e8-99cc-d4e1f8692b63 73e2ad509fd744254d01d3efc140a613b3f46216e59d7dc033721554a389f203 2023-10-22 18:30:38.180251-05 20231022223943_found_notes \N \N 2023-10-22 18:30:38.173823-05 1 ac6c5c00-45bf-473c-bb45-f2866067d25a 9e43d927ba8441cee85f8e517d55d8a4e32c8c49d0e5e9aeecb97d0fa49cdbdb 2023-10-22 23:46:36.131917-05 20231023040755_child_comments_fix \N \N 2023-10-22 23:46:36.123115-05 1 3e1256de-5ca3-4efb-a0f8-138c4d86d0a7 56517411fbeaaf652e10daac419469215137d69a7903e3da759f67209f4bc9d8 2023-11-06 17:54:16.679576-06 20231025203103_delete_unused_images_schedule \N \N 2023-11-06 17:54:16.667374-06 1 0b3bc86c-015f-4243-ab5d-e8177d8d56ee ac3f8d73adeca515235616cc9057235c337bdbc04d9ecdfa6226f0f109d3f6f7 2023-11-06 17:54:16.664652-06 20231025000727_upload_paid \N \N 2023-11-06 17:54:16.645624-06 1 f78e7f37-f4bf-4c1c-827a-9fed7268623e 3af0da6d3485d20ca489c08678eb6f718fd860503a5ba282b980332364bd8f15 2023-11-06 17:54:16.69467-06 20231026154807_image_fees_info \N \N 2023-11-06 17:54:16.683259-06 1 7b55dcaa-f988-4252-a592-d6c7208b4ffa 2f5dc8d45d88d9bd1d6cd99556beb4734d1014d0663f450050b9e2630b10eb9e 2023-11-06 17:54:16.734986-06 20231105221559_item_uploads \N \N 2023-11-06 17:54:16.698199-06 1 be5beba2-10cc-435f-b6e6-692c62cfc2b7 eaede39f200d46b98f43640833681d43ba0c11328479439675b02e5c065e9c4f 2023-11-06 17:54:17.008779-06 20231106204318_upload_id_idx \N \N 2023-11-06 17:54:16.738164-06 1 d616c1db-0fda-4afb-b4e9-74e7bc419178 85a474a151dd6dc53d2c86098078a124dc20c8d2709b81af296238bf23f41286 2023-11-12 12:14:54.995734-06 20231026142112_auto_drop_bolt11s \N \N 2023-11-12 12:14:54.97916-06 1 02508553-31ba-4f82-8834-cef5b0ef28e7 b31371c1b928bd12e2cac2824b027c48cdffb73b322e2fbf82dc6065835c948c 2023-11-12 12:14:55.011106-06 20231110182629_create_item_base_cost \N \N 2023-11-12 12:14:54.998655-06 1 3b805353-4172-4486-b166-d78269507ed4 e46947aa31ddb9789fd265d086a1ff55086d3bc2854ac161f361d4329f0b10d6 2024-01-12 09:01:01.430558-06 20240104004135_invoice_confirmed_index \N \N 2024-01-12 09:01:01.316303-06 1 12ec5482-de0f-44c0-92eb-ab508c8e7a2d 4a267916b51a9ebc791fe2d49408ea3c165314e506cebae7aa969e9cca6e7799 2023-11-12 12:14:55.022664-06 20231111223156_no_op_item_spam \N \N 2023-11-12 12:14:55.013892-06 1 76f55cca-5ea4-4b73-865f-8c220a87abcc 8f2191564dfa8fdf249d6c39af2ef0cb37bff0219b381985d141143bbc7b66ba 2023-11-12 20:34:25.857113-06 20231113022909_fix_null_subnam \N \N 2023-11-12 20:34:25.844661-06 1 070fe02d-8745-438b-a979-33c4e111bd31 d9426f966e0de650fa23bca0034fe2f47c222e0630ca12609b9adcc10fe823a2 2023-12-05 13:06:04.930209-06 20231201014953_territory \N \N 2023-12-05 13:05:43.053336-06 1 911953c7-5494-4f90-a125-4e4e88515ca4 c0bcaa0b3ae8805788b89b1270a8a5ceee1847721566c78c8eefb867089284fa 2024-01-12 09:01:01.440962-06 20240105190205_replace_polling_with_lnd_subscriptions \N \N 2024-01-12 09:01:01.432066-06 1 accc441a-4a7e-455c-b4ba-29c6b593c75b e7e558e5451426d13547a5abba7e6e230d6acc66cfc6716b22825558b6d6e1aa 2023-12-08 18:36:03.929252-06 20231208191418_territory_renew \N \N 2023-12-08 18:36:03.921851-06 1 cd73a231-323a-4bc1-b46b-2d89ed7aa910 c03f26ffe578b1a73f103be58bb88ec3c811d1ea9d6f319c4e4e5985b4b3b2d4 2023-12-10 17:49:17.065226-06 20231210180256_allow_freebies \N \N 2023-12-10 17:49:17.050602-06 1 f0a6c84d-e38b-48ae-bbd8-fadf76252fb4 ba07c7512995b779ce69bffd56f7bb2a8c7f033dfb39fa309e8c3c8aef101dbb 2024-02-14 18:02:10.894498-06 20240212203105_add_sub_stats_views \N \N 2024-02-14 18:02:01.23039-06 1 d0dcbb6f-8d53-4e09-a230-605d71d5f72f a2f3366a074241502004245a5db72051bf300b31c3efa0b84419b4738d297b92 2023-12-10 17:49:17.077018-06 20231210222855_anon_create_item \N \N 2023-12-10 17:49:17.067504-06 1 7aa16b99-3a3d-40b2-8c7c-011cb65d01e6 f203cead0e9e247b8a11982d745502b98b7da98a618ddc7dc9c4eaaa2e573708 2024-01-12 09:01:01.451687-06 20240109235224_auto_withdraw \N \N 2024-01-12 09:01:01.442566-06 1 524d29e0-6e67-4e92-82e4-e6b5dfec968e d5d3046bd8b102821cca9f9a54918659c561fee9320d1132e761dee8808b1fe6 2023-12-15 14:09:16.612613-06 20231212235400_ofac \N \N 2023-12-15 14:09:16.487722-06 1 492f3a11-4fa8-4d10-aaab-0254981104f2 a6a2f8449c4c583066f80ea4d8adeeef3cd5633066810b1f08eed6ce29cfd538 2023-12-20 18:58:33.105507-06 20231015221558_add_nostr_event_id \N \N 2023-12-20 18:58:32.726429-06 1 57b6b654-47ea-4619-8c25-4bf61cdfd35d aa86ae840a44a71b0b41bafe349339af8a1ed268aed88396d58ec2397660b9e5 2024-02-13 13:30:08.620678-06 20240205161535_add_nsfw_to_sub \N \N 2024-02-13 13:30:08.61015-06 1 2e358b65-753b-4a10-b0ba-d4046557a6bd 4d1a1e5ee030d98e12a74d4cc52b1b84433c0d7ecd382bc96d0219459119b510 2023-12-20 18:58:33.114973-06 20231220004234_dont_like_sats \N \N 2023-12-20 18:58:33.107345-06 1 be106a4c-a495-482a-9271-b67a1567da94 9591d0854abc0240aa8402380b3cd67f0ff241013e8d5b5c3427ce9491f3815b 2024-01-12 09:01:01.457856-06 20240110195551_territory_posts_notifications \N \N 2024-01-12 09:01:01.4531-06 1 353da8ab-d9a2-42a4-8b06-4596025cad6e b400e2e7d8f34168667b55c538ebd713f66907accd1e890f45764fce5246f905 2023-12-27 10:44:06.464829-06 20231226230356_item_act_negative \N \N 2023-12-27 10:44:06.452775-06 1 021ab3ad-ecf5-45ba-89da-5fb9f03e42df 022ad047e88de0cd79dca98f6209b2c73d4ce7ad6e9054420492f7ac9d91a72a 2023-12-31 11:00:44.882121-06 20231229204305_moderate \N \N 2023-12-31 11:00:44.873454-06 1 a0b6b48e-ab55-483b-9eb3-1a9856f4fdb6 1503fa08a968370e6c0f6e8a923c3af707e497b2e6a28f618aae5fccdb5cd4f8 2023-12-31 11:00:44.916453-06 20231230015539_mute_sub \N \N 2023-12-31 11:00:44.883757-06 1 8425c204-5bb6-4108-80cf-b5ee33445105 99d3da700501aa5d28c64f8b5093bcabe2f67fdf0f1ea85ae8df13f9c4479493 2024-01-12 09:01:01.556189-06 20240111203534_territory_name_change \N \N 2024-01-12 09:01:01.459248-06 1 19aa8730-6926-4c70-90a3-cbe133cebec9 a98475952d9453f00c235300d3c1613f3d2482b26dbc3e7a8f5bdac19b2118cd 2024-01-03 16:34:52.950155-06 20240103184950_territory_status \N \N 2024-01-03 16:34:52.927791-06 1 811621e4-5a14-4091-bc4d-cd87a64c773d a0e809e37709d625203eb75cc8c2339514ac48c89ad17afc7e739a6611c1dbed 2024-02-13 13:30:39.756193-06 20240207173333_add_nsfw_mode_to_user \N \N 2024-02-13 13:30:08.622523-06 1 8c68fa55-bb63-4ddb-bd44-fdedd4a41c81 5ee818eeefd6859cb5ec4680b643e5fcbad4350386e20cc5715e78b78665de8e 2024-01-19 15:43:34.893236-06 20240118194607_growth_views \N \N 2024-01-19 15:41:36.915189-06 1 2b8da2cd-3b63-4359-b9d8-a496e67cd24f c2844183cfb186167f858352ea712f3ee00b19be1499df8d571577584d3f71f6 2024-01-19 20:42:56.164349-06 20240119215929_fix_spending_growth_view \N \N 2024-01-19 20:42:37.378401-06 1 b2f39dd4-c8ed-49c6-bc46-ada38768502d 5ca8b1ba6e4b6e265a0975b0a5df58b776828676af01517e5b9063189bb108a1 2024-02-16 13:18:29.08157-06 20240216003921_territory_billing_trigger \N \N 2024-02-16 13:18:29.004351-06 1 71b58baf-e33c-41fa-8346-bb5f4fc6934a e96d579a7e2d1870b4d19a1879b7de373ac20c6b07378c3f3f035fe28b627511 2024-01-30 11:09:21.976827-06 20240124000131_fix_user_stats_post \N \N 2024-01-30 11:08:22.501828-06 1 6adacd34-92a1-4f68-8096-117af619b51c 9499b0f7be89352d3eee00ab8d26b2d17aa0cc8586da5dcff945749516bf6146 2024-02-13 13:30:39.784026-06 20240209001227_update_image_fees \N \N 2024-02-13 13:30:39.758137-06 1 5d61de64-d31d-4a4a-bb58-01f59b11080a 50d76149e00cf60187560e94c0feefe8fa00a1777709ddfeda20cb1c0c4e6ea6 2024-01-30 11:09:23.056649-06 20240130165240_existing_pins_null_sub \N \N 2024-01-30 11:09:21.979465-06 1 12423eef-7440-4482-8458-276c7fb82d70 7d1c28971c2257c6cbd7779119a1e6d87fad204f2dace5e3f9c55d09865e9d9d 2024-02-14 18:02:10.901334-06 20240214010003_add_linked_social_ids \N \N 2024-02-14 18:02:10.896007-06 1 70f8557c-581c-41fa-930b-e1020abeaa18 fd2b69d42ea93ef1c96a33bfb424f4960f06cad53aba38d886966d9394f9a020 2024-02-13 13:30:40.219916-06 20240209013150_attach_wallets \N \N 2024-02-13 13:30:39.794638-06 1 27ee44c7-8787-4029-a3ae-cb7e3f32b94d 549334fd8be633d9bbab817545c65ccbf32e91a72cab521184f27b2d04ff50e4 2024-02-14 18:02:01.228902-06 20240209183940_hide_linked_profiles \N \N 2024-02-14 18:02:01.216895-06 1 31d50e9b-a9a3-43d6-82f5-de6058ba3065 aaf3c4743c84aa77ca8b69d0acf8fb6866d2e0d7a358ab71354dbabc16322d88 2024-02-15 11:34:37.056386-06 20240215144824_fix_sub_spent_calculation \N \N 2024-02-15 11:34:08.264108-06 1 2a334445-4a4f-4dd1-9618-a841fb2396e5 c9f3e8fc91277abdf16d5022a735ca04a2dea6947b4dc5f8fa774ed576a3fc22 2024-02-26 13:26:56.479584-06 20240219144139_add_poll_expires_at \N \N 2024-02-26 13:26:53.961421-06 1 50c57edf-e993-457e-b91e-9af704627c97 862c162fc50b6e0932fbc990ebe20446f3fc89ad5b42e073881f8efb380e3dd8 2024-02-26 13:26:56.493784-06 20240219195648_update_update_item_for_poll_expired_at_updates \N \N 2024-02-26 13:26:56.482786-06 1 99c44227-dcea-4c4b-a7ec-c802a42b8f0e d1325f12c461b18a3585fd9710e4c2ae2c059f7b0cbe1f50580666466a22cbc0 2024-02-26 13:26:56.507247-06 20240219225338_zap_undos \N \N 2024-02-26 13:26:56.497012-06 1 0bed4c03-8fdd-4376-8280-cd42c22c5ed1 0f2adf7843273715b69ec6cb6da0bf47d873c032f401b2cdc647c38148d216d0 2024-02-26 13:26:56.539657-06 20240222003614_territory_notifications \N \N 2024-02-26 13:26:56.50994-06 1 f41e3589-cdec-4fa3-8596-8797cc530185 f8377be1053453eaa07b703d3c86ff4c52dddb0859171af6ce18e93f5531b461 2024-02-26 13:26:56.568165-06 20240222032317_drop_territory_notification_settings \N \N 2024-02-26 13:26:56.542539-06 1 e70767e0-5c87-41a1-bca5-b783c23d3a62 cc92c5a7a00018e1403ba86f511b1424dd52845a1353ba0f9f83a8a1a3d5d074 2024-02-26 13:26:56.583665-06 20240224215425_fix_duplicate_image_conflict \N \N 2024-02-26 13:26:56.571046-06 1 6dd90d9b-5ce9-4448-8bf5-30499b79a402 acbd39b25e2575bbd94e62a3d9e1f2aa8b7a9c46e891b479540b1a28e7727840 2024-02-26 13:26:56.594525-06 20240224220605_remove_unused_create_item_function \N \N 2024-02-26 13:26:56.58646-06 1 \. -- -- Data for Name: accounts; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.accounts (id, created_at, updated_at, user_id, provider_type, provider_id, provider_account_id, refresh_token, access_token, access_token_expires, id_token, scope, session_state, token_type, oauth_token, oauth_token_secret) FROM stdin; \. -- -- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.sessions (id, created_at, updated_at, user_id, expires, session_token) FROM stdin; \. -- -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.users (id, created_at, updated_at, name, email, email_verified, image, msats, "freeComments", "freePosts", "checkedNotesAt", pubkey, "tipDefault", "bioId", "inviteId", "tipPopover", "upvotePopover", trust, "lastSeenAt", "stackedMsats", "noteAllDescendants", "noteDeposits", "noteEarning", "noteInvites", "noteItemSats", "noteMentions", "lastCheckedJobs", "noteJobIndicator", "photoId", "upvoteTrust", "hideInvoiceDesc", "wildWestMode", "greeterMode", "fiatCurrency", "hideFromTopUsers", "turboTipping", "referrerId", "nostrPubkey", "slashtagId", "noteCowboyHat", streak, subs, "hideCowboyHat", "nostrAuthPubkey", "imgproxyOnly", "hideBookmarks", "hideWelcomeBanner", "noteForwardedSats", "hideWalletBalance", "hideIsContributor", diagnostics, "nostrCrossposting", "withdrawMaxFeeDefault", "foundNotesAt", "autoDropBolt11s", "autoWithdrawMaxFeePercent", "autoWithdrawThreshold", "lnAddr", "noteTerritoryPosts", "nsfwMode", "hideGithub", "hideNostr", "hideTwitter", "githubId", "twitterId", "zapUndos") FROM stdin; 732 2023-04-29 20:15:20.055 2023-02-04 02:00:39.258 SeanRayXWF \N \N \N 135839349 5 2 \N \N 100 \N \N f f 0 \N 708621964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 616 2022-05-23 13:59:11.965 2023-06-18 18:54:30.415 LeviDuncanRF6 \N \N \N 205482641 5 2 \N \N 100 \N \N f f 0 \N 1371458512 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10112 2022-08-30 20:29:42.242 2022-03-20 13:54:38.838 ChristineCurryTAG \N \N \N 87477127 5 2 \N \N 100 \N \N f f 0 \N 1673350311 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8037 2022-06-21 03:05:07.114 2022-02-27 18:32:12.516 JennaJarvisNV8 \N \N \N 201511673 5 2 \N \N 100 \N \N f f 0 \N 837814140 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6335 2023-03-19 00:41:44.012 2022-03-23 12:23:27.766 RicardoSellers2PH \N \N \N 158424970 5 2 \N \N 100 \N \N f f 0 \N 2139639251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20849 2021-12-05 02:57:35.886 2022-03-14 15:06:44.438 MarkDixonMSW \N \N \N 105671897 5 2 \N \N 100 \N \N f f 0 \N 1665490749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20073 2023-05-08 23:48:15.343 2023-05-09 16:17:18.072 LoganNicholson7X9 \N \N \N 28731266 5 2 \N \N 100 \N \N f f 0 \N 711478366 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4763 2022-04-23 14:25:48.003 2021-10-22 18:49:35.196 SherylRiddle3TD \N \N \N 73962965 5 2 \N \N 100 \N \N f f 0 \N 642285132 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16912 2021-10-30 05:14:40.966 2021-12-04 18:14:08.4 CaitlinMorris4KQ \N \N \N 113056886 5 2 \N \N 100 \N \N f f 0 \N 1737595154 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5904 2023-09-07 08:50:19.002 2021-12-27 10:05:12.062 RyanKeithF5U \N \N \N 216557555 5 2 \N \N 100 \N \N f f 0 \N 413836300 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17095 2022-03-22 07:55:02.51 2023-09-20 05:09:31.622 DakotaJacobson7CR \N \N \N 143894760 5 2 \N \N 100 \N \N f f 0 \N 1638035382 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20450 2023-05-05 02:57:28.342 2022-02-01 12:09:34.69 VickiMurrayRL6 \N \N \N 104224399 5 2 \N \N 100 \N \N f f 0 \N 2229080781 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10821 2023-06-08 05:45:37.969 2022-03-31 06:56:12.591 JoseCastro5DC \N \N \N 110583870 5 2 \N \N 100 \N \N f f 0 \N 1559415120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 684 2022-04-22 13:29:08.962 2023-09-10 02:59:53.496 BridgetReeseTT6 \N \N \N 158108425 5 2 \N \N 100 \N \N f f 0 \N 1171028069 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15510 2022-10-05 20:06:44.027 2023-10-15 16:28:19.667 DorothyHood2X0 \N \N \N 9975402 5 2 \N \N 100 \N \N f f 0 \N 2111991172 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2111 2023-08-05 02:57:49.761 2023-01-03 10:52:52.191 BrittanyDaughertyNZP \N \N \N 210433723 5 2 \N \N 100 \N \N f f 0 \N 196826893 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4650 2022-05-03 04:28:58.941 2021-11-20 22:30:03.148 EduardoCherryD8D \N \N \N 68184100 5 2 \N \N 100 \N \N f f 0 \N 527322739 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20152 2021-10-26 19:15:53.056 2022-12-10 11:47:21.742 RoyBradfordYCJ \N \N \N 232401744 5 2 \N \N 100 \N \N f f 0 \N 1718794489 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6327 2022-06-04 15:38:06.033 2021-11-05 00:20:38.949 JordanReedXEA \N \N \N 198264067 5 2 \N \N 100 \N \N f f 0 \N 199343611 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20481 2024-02-05 18:23:28.297 2022-03-22 22:50:47.332 ShaunStone5XZ \N \N \N 214455024 5 2 \N \N 100 \N \N f f 0 \N 1586910347 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16847 2022-01-18 17:06:29.586 2023-01-15 00:46:38.807 EileenDaughertyKQT \N \N \N 50921933 5 2 \N \N 100 \N \N f f 0 \N 1299665910 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20523 2024-01-29 00:27:55.41 2024-01-18 23:45:37.342 TeresaBrowningB4L \N \N \N 176499196 5 2 \N \N 100 \N \N f f 0 \N 1813875446 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16769 2023-01-19 09:36:42.553 2022-03-21 21:18:04.013 JudithRussellS7V \N \N \N 233148724 5 2 \N \N 100 \N \N f f 0 \N 717419673 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3656 2023-05-04 19:34:17.415 2022-07-25 23:09:52.111 ChristineMedinaZS4 \N \N \N 33179959 5 2 \N \N 100 \N \N f f 0 \N 334570642 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6515 2023-07-28 00:32:16.411 2021-12-16 20:41:41.344 PhyllisCervantesVPK \N \N \N 53500319 5 2 \N \N 100 \N \N f f 0 \N 1246657120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2614 2023-01-29 01:27:05.244 2023-11-21 14:58:11.573 JoshuaHawkinsS4H \N \N \N 249670244 5 2 \N \N 100 \N \N f f 0 \N 1366286163 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9418 2023-12-16 09:50:37.023 2023-06-02 14:26:50.613 BrentBeasley17U \N \N \N 148991308 5 2 \N \N 100 \N \N f f 0 \N 214655411 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12774 2023-10-19 12:58:44.878 2022-04-20 09:27:27.671 ZoeFerrellDGN \N \N \N 227511896 5 2 \N \N 100 \N \N f f 0 \N 637854996 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7960 2023-10-12 07:41:46.039 2023-04-06 19:10:46.136 DarrylDeanI6N \N \N \N 12319252 5 2 \N \N 100 \N \N f f 0 \N 604096084 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6430 2022-01-16 00:12:08.276 2024-01-11 08:24:49.944 StephanieBurgessIEN \N \N \N 88919452 5 2 \N \N 100 \N \N f f 0 \N 1224326323 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16929 2022-09-10 19:02:10.901 2022-12-25 21:53:59.391 CassandraAliDV3 \N \N \N 12563288 5 2 \N \N 100 \N \N f f 0 \N 1297611240 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13100 2021-12-20 13:10:56.207 2022-02-04 09:32:12.127 AndreLozano8NC \N \N \N 97901560 5 2 \N \N 100 \N \N f f 0 \N 151169675 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12169 2023-08-08 09:49:13.415 2023-02-10 05:57:08.907 KylieFarleyG6A \N \N \N 246158586 5 2 \N \N 100 \N \N f f 0 \N 1132363981 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1617 2022-01-30 11:12:49.609 2021-11-12 11:26:26.968 FranciscoDonovanOF8 \N \N \N 199209527 5 2 \N \N 100 \N \N f f 0 \N 345844114 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8080 2024-01-14 23:34:22.951 2023-06-22 15:53:31.497 JamieChaneyT3L \N \N \N 97212717 5 2 \N \N 100 \N \N f f 0 \N 1362157478 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2233 2022-09-02 08:56:30.441 2022-11-17 17:28:09.047 MaryMoss44D \N \N \N 31882384 5 2 \N \N 100 \N \N f f 0 \N 1566915688 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16178 2023-05-31 08:57:40.839 2023-11-08 22:32:45.455 WayneMillsQE4 \N \N \N 160969518 5 2 \N \N 100 \N \N f f 0 \N 1473436033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19033 2022-06-28 02:01:14.848 2023-09-13 03:38:20.735 JakeSheppardMBN \N \N \N 21631254 5 2 \N \N 100 \N \N f f 0 \N 1770490143 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21547 2022-10-02 00:38:27.223 2021-11-23 21:37:01.107 LeahCarterS0C \N \N \N 24723947 5 2 \N \N 100 \N \N f f 0 \N 1664299395 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13767 2021-11-21 07:09:36.535 2023-06-22 09:58:43.645 SherylSawyerY4D \N \N \N 6801016 5 2 \N \N 100 \N \N f f 0 \N 262514178 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5557 2023-10-03 15:29:49.05 2024-01-08 02:21:32.369 SheriTucker11O \N \N \N 73947681 5 2 \N \N 100 \N \N f f 0 \N 2010607214 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 986 2022-04-01 09:36:11.789 2023-02-19 14:25:26.806 CodyHendrixER8 \N \N \N 177893349 5 2 \N \N 100 \N \N f f 0 \N 2108235200 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3440 2022-07-12 19:19:25.624 2023-03-02 20:19:57.712 DerrickGreerB8H \N \N \N 209123604 5 2 \N \N 100 \N \N f f 0 \N 685911255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1180 2021-10-15 13:18:06.055 2022-04-23 10:22:22.038 TerranceDorsey0BP \N \N \N 223456759 5 2 \N \N 100 \N \N f f 0 \N 1038837868 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21491 2023-04-10 11:43:21.771 2022-05-24 01:03:30.173 PatrickWeissVOO \N \N \N 118617674 5 2 \N \N 100 \N \N f f 0 \N 1380880744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4102 2024-01-22 20:19:22.839 2022-01-30 02:41:50.401 GlendaOconnorY8P \N \N \N 66883464 5 2 \N \N 100 \N \N f f 0 \N 1428891870 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1720 2021-12-11 14:05:37.271 2021-10-07 12:41:48.719 RandyFrancisRSD \N \N \N 2906744 5 2 \N \N 100 \N \N f f 0 \N 933687495 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5565 2021-11-12 22:10:44.848 2023-02-08 23:12:23.243 DrewJonesKIZ \N \N \N 53662981 5 2 \N \N 100 \N \N f f 0 \N 720314260 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 679 2022-01-06 02:27:21.326 2023-05-03 05:49:00.936 AnthonyCarneyCG4 \N \N \N 203710975 5 2 \N \N 100 \N \N f f 0 \N 1331909738 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6499 2022-08-11 00:29:53.289 2022-10-19 20:10:58.693 ColinCollinsCQM \N \N \N 55336773 5 2 \N \N 100 \N \N f f 0 \N 1374698788 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15491 2023-09-30 03:55:26.585 2022-10-27 11:53:55.197 JaimeIrwin8E0 \N \N \N 114260264 5 2 \N \N 100 \N \N f f 0 \N 716931612 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14376 2023-05-17 16:49:08.063 2023-04-26 00:05:08.76 PamelaHoldenMTA \N \N \N 215739633 5 2 \N \N 100 \N \N f f 0 \N 695210995 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9171 2022-07-28 17:31:39.97 2022-04-12 07:27:15.183 ElaineTaylorGBS \N \N \N 157574783 5 2 \N \N 100 \N \N f f 0 \N 418950244 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21619 2022-01-17 01:56:37.726 2023-09-07 15:18:36.363 DorothyHannaCKP \N \N \N 161647171 5 2 \N \N 100 \N \N f f 0 \N 1242436189 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21441 2022-08-21 16:56:20.248 2021-12-15 01:07:15.652 IvanBradleyAW0 \N \N \N 144833200 5 2 \N \N 100 \N \N f f 0 \N 306487049 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20904 2022-05-23 04:39:54.272 2021-12-28 22:49:25.774 KirstenNealBGI \N \N \N 176961339 5 2 \N \N 100 \N \N f f 0 \N 648123366 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19966 2022-02-11 12:28:04.656 2021-12-02 16:11:32.917 MarilynCarrilloE0Q \N \N \N 228397765 5 2 \N \N 100 \N \N f f 0 \N 1393982919 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2942 2022-05-11 04:28:41.237 2023-03-25 08:44:02.286 ElijahKirbySCO \N \N \N 79031133 5 2 \N \N 100 \N \N f f 0 \N 857593155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7903 2021-12-15 22:02:34.78 2023-06-19 10:22:09.366 KathrynCopelandW7S \N \N \N 21962784 5 2 \N \N 100 \N \N f f 0 \N 2197329593 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2639 2023-06-18 13:50:50.542 2022-07-20 19:02:22.074 WyattRiversYWG \N \N \N 55248481 5 2 \N \N 100 \N \N f f 0 \N 2334540513 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1291 2021-10-17 09:03:06.88 2022-12-07 07:08:55.733 TamaraKirbyQXX \N \N \N 61150810 5 2 \N \N 100 \N \N f f 0 \N 1192057066 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5359 2023-01-25 09:11:58.611 2023-05-21 04:43:08.43 LatashaBeckerHYH \N \N \N 231224871 5 2 \N \N 100 \N \N f f 0 \N 1025663740 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10719 2023-10-27 19:17:06.544 2023-09-21 02:56:17.276 MindyFigueroa6EW \N \N \N 29560199 5 2 \N \N 100 \N \N f f 0 \N 1909310185 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19663 2022-01-19 12:48:36.043 2022-05-23 18:39:18.843 MasonDyerT9C \N \N \N 154534124 5 2 \N \N 100 \N \N f f 0 \N 711464803 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11378 2023-10-21 02:06:59.196 2023-01-27 02:32:36.369 KennethEspinozaS8N \N \N \N 30568435 5 2 \N \N 100 \N \N f f 0 \N 1288633687 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1030 2023-01-03 10:58:28.431 2023-07-16 13:34:28.646 CalvinFullerP6O \N \N \N 132936889 5 2 \N \N 100 \N \N f f 0 \N 624886964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11776 2022-05-14 00:43:59.485 2022-01-09 05:56:29.395 KelseyHartN31 \N \N \N 85170654 5 2 \N \N 100 \N \N f f 0 \N 331545709 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 623 2022-08-23 00:27:42.24 2023-09-24 22:03:16.396 NancyClementsHKM \N \N \N 248808536 5 2 \N \N 100 \N \N f f 0 \N 18105351 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8168 2021-11-09 15:35:40.782 2024-01-19 11:35:53.555 TinaGonzalesUQL \N \N \N 197272952 5 2 \N \N 100 \N \N f f 0 \N 1607444941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1310 2022-11-24 07:42:54.932 2023-12-02 11:04:50.097 IanLaneFCG \N \N \N 5822064 5 2 \N \N 100 \N \N f f 0 \N 751152552 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15213 2023-02-13 15:18:37.841 2023-11-18 13:35:18.559 CindyHoganFCH \N \N \N 81160232 5 2 \N \N 100 \N \N f f 0 \N 677350981 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18449 2022-12-17 12:21:07.855 2022-03-03 01:19:52.893 ParkerBarker0P3 \N \N \N 49782639 5 2 \N \N 100 \N \N f f 0 \N 1579181126 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10611 2023-04-01 20:30:41.256 2022-05-03 16:55:08.799 DennisMckee4SF \N \N \N 231082999 5 2 \N \N 100 \N \N f f 0 \N 2048899864 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2206 2023-07-06 22:22:23.545 2022-01-22 12:17:58.588 CalvinHardin0KG \N \N \N 93877928 5 2 \N \N 100 \N \N f f 0 \N 1435171239 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10638 2022-11-04 09:18:46.445 2022-03-18 20:26:25.754 AngelCastilloHX5 \N \N \N 239189444 5 2 \N \N 100 \N \N f f 0 \N 1088797930 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8176 2022-12-07 19:23:31.601 2023-07-17 21:32:51.854 JohnHouse7S9 \N \N \N 177275606 5 2 \N \N 100 \N \N f f 0 \N 2020683619 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14785 2024-01-21 23:09:19.636 2021-10-21 17:29:12.601 MaryMolina1DC \N \N \N 22246609 5 2 \N \N 100 \N \N f f 0 \N 1383666798 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21455 2023-03-29 02:48:01.373 2022-02-05 13:17:15.943 JoannaShepherdNF0 \N \N \N 55132856 5 2 \N \N 100 \N \N f f 0 \N 590468593 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19570 2023-08-24 23:06:55.031 2022-03-08 11:54:57.367 PennyLongC19 \N \N \N 84784348 5 2 \N \N 100 \N \N f f 0 \N 647450486 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19980 2022-10-16 20:30:10.209 2022-03-05 06:38:36.105 AlexFranklinE3E \N \N \N 191079676 5 2 \N \N 100 \N \N f f 0 \N 1467208155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20990 2023-01-08 20:14:18.994 2023-04-11 19:54:35.768 MeghanHesterOBL \N \N \N 101673288 5 2 \N \N 100 \N \N f f 0 \N 1490630637 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21402 2022-07-21 17:26:06.331 2021-11-09 05:54:58.008 SheenaAlexanderTBS \N \N \N 27200011 5 2 \N \N 100 \N \N f f 0 \N 979730527 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11075 2023-04-05 08:50:10.203 2023-09-30 17:00:34.566 KarenKeith0MQ \N \N \N 43115602 5 2 \N \N 100 \N \N f f 0 \N 2384091171 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1505 2023-01-28 05:29:28.463 2022-09-22 21:03:08.491 JeremyBergH4W \N \N \N 8353147 5 2 \N \N 100 \N \N f f 0 \N 362123646 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21522 2023-08-27 18:00:31.941 2022-03-16 17:00:41.723 WilliamAtkinson80A \N \N \N 64868045 5 2 \N \N 100 \N \N f f 0 \N 90399072 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11992 2023-07-24 00:50:03.314 2022-04-01 00:14:50.615 MeredithVargasONL \N \N \N 105766531 5 2 \N \N 100 \N \N f f 0 \N 388245153 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21292 2021-12-15 01:23:14.441 2023-03-27 06:44:54.527 ShaneMaysYNS \N \N \N 205280242 5 2 \N \N 100 \N \N f f 0 \N 372925456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13132 2024-02-10 16:35:16.854 2023-08-13 04:36:58.337 JasminOrozco2PX \N \N \N 183112699 5 2 \N \N 100 \N \N f f 0 \N 1180682459 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19087 2023-12-26 09:25:52.622 2022-09-19 14:48:43.238 LindaBrayY3Z \N \N \N 79132228 5 2 \N \N 100 \N \N f f 0 \N 1338920474 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21138 2023-10-12 05:05:17.658 2023-06-26 04:36:23.131 BrookePrinceSJG \N \N \N 18087734 5 2 \N \N 100 \N \N f f 0 \N 593700243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5057 2023-02-26 17:20:10.58 2023-08-17 01:30:17.387 AlexisDelacruzMJH \N \N \N 203217784 5 2 \N \N 100 \N \N f f 0 \N 1471482730 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9334 2022-07-14 04:38:46.022 2023-06-23 19:28:22.245 JadeAlexander8OS \N \N \N 179617162 5 2 \N \N 100 \N \N f f 0 \N 2113257095 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9438 2023-07-26 14:08:12.336 2022-01-31 13:13:16.652 NathanFrostF3H \N \N \N 188412222 5 2 \N \N 100 \N \N f f 0 \N 356143227 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12356 2022-10-29 02:48:20.168 2023-04-22 15:34:49.853 MorganLynchXCJ \N \N \N 108929941 5 2 \N \N 100 \N \N f f 0 \N 1918771562 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6058 2023-12-29 06:17:07.821 2022-01-29 14:06:56.737 JoannRangelCRK \N \N \N 129680471 5 2 \N \N 100 \N \N f f 0 \N 2466950952 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15049 2023-04-21 04:09:40.431 2023-02-09 16:41:23.322 ClaudiaWilkinsonFJ6 \N \N \N 111241421 5 2 \N \N 100 \N \N f f 0 \N 785623132 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14122 2023-03-29 13:17:33.337 2022-07-28 14:57:33.512 ReginaShermanR3T \N \N \N 66949378 5 2 \N \N 100 \N \N f f 0 \N 404121244 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3544 2022-05-14 17:19:49.231 2022-02-27 01:37:23.681 DeanNguyenFFN \N \N \N 247678472 5 2 \N \N 100 \N \N f f 0 \N 2139450429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7998 2023-02-02 18:57:56.283 2023-07-29 14:00:20.011 CarlBlankenshipAKB \N \N \N 210746942 5 2 \N \N 100 \N \N f f 0 \N 2092770801 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5455 2022-09-08 04:14:01.666 2022-09-22 15:55:49.418 DianeLongW0J \N \N \N 1622291 5 2 \N \N 100 \N \N f f 0 \N 2267795354 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2293 2021-12-12 10:18:43.667 2021-12-13 09:03:28.607 JerryMyersUL1 \N \N \N 89396290 5 2 \N \N 100 \N \N f f 0 \N 2031244287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 726 2023-09-13 13:50:28.95 2023-07-10 06:38:59.027 AnnaMurphyY0T \N \N \N 61180973 5 2 \N \N 100 \N \N f f 0 \N 2110897497 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 811 2022-03-24 16:52:56.557 2023-10-01 03:21:33.404 MariaRubio5GP \N \N \N 102580889 5 2 \N \N 100 \N \N f f 0 \N 2029822126 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 929 2023-11-13 21:31:49.383 2022-08-08 08:50:03.339 TammyLesterIYX \N \N \N 207615175 5 2 \N \N 100 \N \N f f 0 \N 647385738 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1136 2022-06-26 23:49:50.196 2022-07-05 06:27:49.6 HaileyMedinaNXQ \N \N \N 47380104 5 2 \N \N 100 \N \N f f 0 \N 1324598656 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1273 2023-03-01 05:40:12.84 2022-01-03 02:56:26.912 ErnestNolanQLN \N \N \N 243668444 5 2 \N \N 100 \N \N f f 0 \N 422074490 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1751 2023-10-17 17:05:33.602 2023-09-24 06:02:28.886 MarilynUnderwoodEU3 \N \N \N 131383730 5 2 \N \N 100 \N \N f f 0 \N 337370825 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2342 2021-12-02 20:24:30.252 2022-06-14 16:29:41.355 EugeneDrakeJMV \N \N \N 230034704 5 2 \N \N 100 \N \N f f 0 \N 210620008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2789 2023-03-25 20:04:02.221 2023-12-01 03:26:01.883 BryceRuizJIB \N \N \N 67458601 5 2 \N \N 100 \N \N f f 0 \N 1572660122 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3353 2022-08-17 03:14:45.414 2023-09-04 05:45:19.668 AimeeSimmons7TS \N \N \N 249281214 5 2 \N \N 100 \N \N f f 0 \N 29109960 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3439 2022-09-01 16:26:45.598 2022-05-26 06:34:43.535 TannerTrujillo3F2 \N \N \N 247696955 5 2 \N \N 100 \N \N f f 0 \N 417080665 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3456 2022-08-26 11:49:47.263 2023-05-31 10:51:45.581 KiaraShieldsT4H \N \N \N 50774042 5 2 \N \N 100 \N \N f f 0 \N 1069668355 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3717 2021-11-20 17:00:29.149 2022-08-13 16:17:27.87 RebeccaCarrilloYFK \N \N \N 153156434 5 2 \N \N 100 \N \N f f 0 \N 2223965568 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4415 2022-06-20 15:13:23.979 2023-08-25 04:13:20.489 RicardoNewton38I \N \N \N 63475179 5 2 \N \N 100 \N \N f f 0 \N 669224722 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5809 2023-01-25 05:21:13.174 2022-06-28 22:19:18.73 MeredithVillanuevaIQ0 \N \N \N 39830608 5 2 \N \N 100 \N \N f f 0 \N 1784867099 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6030 2023-04-01 04:41:38.45 2024-01-23 01:32:06.052 CharlotteHughes5CB \N \N \N 75122184 5 2 \N \N 100 \N \N f f 0 \N 692272655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6421 2023-06-11 17:12:57.87 2023-12-05 02:21:57.768 MakaylaBryanCMV \N \N \N 90195128 5 2 \N \N 100 \N \N f f 0 \N 724044075 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 917 2021-12-26 18:15:35.114 2022-09-05 02:16:49.436 BrittneySchwartzOHG \N \N \N 141201358 5 2 \N \N 100 \N \N f f 0 \N 2266315735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7583 2024-02-07 17:46:37.544 2023-02-24 04:02:43.737 HaleyBeckerD80 \N \N \N 169715649 5 2 \N \N 100 \N \N f f 0 \N 1960276517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7827 2022-03-13 15:57:20.495 2023-11-24 20:38:34.432 AimeeWoodward1Z7 \N \N \N 118748664 5 2 \N \N 100 \N \N f f 0 \N 1655056620 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7983 2021-10-30 22:56:43.462 2024-01-28 13:17:13.81 NathanZimmermanUQ0 \N \N \N 13330895 5 2 \N \N 100 \N \N f f 0 \N 1039216129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8045 2023-11-19 10:15:49.678 2024-02-17 20:36:07.178 ClaudiaEspinozaZFX \N \N \N 4202265 5 2 \N \N 100 \N \N f f 0 \N 795524728 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8326 2023-12-04 18:35:42.772 2022-01-07 22:56:39.956 StaceyRayQKB \N \N \N 150917365 5 2 \N \N 100 \N \N f f 0 \N 1820574751 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9099 2022-05-30 23:32:43.712 2023-10-16 15:51:28.413 GabrielaValenzuela4CJ \N \N \N 56629036 5 2 \N \N 100 \N \N f f 0 \N 739468922 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10981 2023-09-18 17:02:15.823 2022-08-12 09:52:37.122 ErinMayer50R \N \N \N 80359603 5 2 \N \N 100 \N \N f f 0 \N 2199957486 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11275 2024-02-13 17:26:01.717 2023-09-06 05:29:56.023 StefanieStricklandMIV \N \N \N 79170763 5 2 \N \N 100 \N \N f f 0 \N 537162970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12808 2023-02-08 03:45:22.382 2022-10-12 14:24:03.454 AudreyAbbottNWT \N \N \N 157953315 5 2 \N \N 100 \N \N f f 0 \N 1860045705 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12819 2022-03-26 05:52:15.715 2023-07-13 22:20:48.88 EdwinSaundersEOS \N \N \N 209277233 5 2 \N \N 100 \N \N f f 0 \N 1285926777 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12946 2023-05-25 03:15:09.736 2023-05-18 01:27:30.76 JoelTorresCBX \N \N \N 142090276 5 2 \N \N 100 \N \N f f 0 \N 1763001085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12959 2023-03-30 10:43:25.389 2022-10-21 14:42:59.316 TannerNolan9TF \N \N \N 27646472 5 2 \N \N 100 \N \N f f 0 \N 1875402113 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12965 2022-02-05 03:34:49.095 2022-03-20 05:14:29.487 ClaytonPowersWY5 \N \N \N 108012588 5 2 \N \N 100 \N \N f f 0 \N 1036419785 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13055 2021-12-29 21:43:36.493 2022-05-01 09:14:35.87 DwayneBradshawDGH \N \N \N 122073264 5 2 \N \N 100 \N \N f f 0 \N 1092106026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13174 2022-06-22 08:40:01.716 2022-05-24 22:03:28.966 AlexandriaLangGZ0 \N \N \N 170460613 5 2 \N \N 100 \N \N f f 0 \N 46407531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13327 2024-01-05 14:12:14.929 2023-05-18 00:42:20.436 SuzanneMonroeJVL \N \N \N 247312969 5 2 \N \N 100 \N \N f f 0 \N 1659661264 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13398 2024-01-06 19:11:33.324 2023-09-11 08:38:48.509 VanessaUnderwoodKFS \N \N \N 117284826 5 2 \N \N 100 \N \N f f 0 \N 1032220141 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13587 2022-05-22 07:58:22.763 2022-01-16 00:18:49.28 BrandyVegaMXZ \N \N \N 129674126 5 2 \N \N 100 \N \N f f 0 \N 2292982714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13599 2022-11-01 00:00:18.746 2023-04-19 06:29:46.453 MckenzieGayDTS \N \N \N 132784525 5 2 \N \N 100 \N \N f f 0 \N 908226035 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13854 2023-08-16 18:49:00.783 2022-05-20 10:21:36.033 BryanRobersonOZD \N \N \N 190393901 5 2 \N \N 100 \N \N f f 0 \N 2467423120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14255 2022-10-07 09:16:06.526 2023-07-11 13:37:03.551 CatherineGreeneKUG \N \N \N 150519973 5 2 \N \N 100 \N \N f f 0 \N 854542622 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14818 2024-02-16 07:32:39.297 2023-07-01 14:25:11.091 EricBurtonRML \N \N \N 26825659 5 2 \N \N 100 \N \N f f 0 \N 2058502774 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15243 2023-05-28 11:40:26.756 2021-10-22 16:22:47.431 CesarHolderWY8 \N \N \N 151478404 5 2 \N \N 100 \N \N f f 0 \N 1141409729 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15577 2021-11-10 15:56:15.362 2023-06-07 06:15:20.146 EdwardNewmanT01 \N \N \N 85871884 5 2 \N \N 100 \N \N f f 0 \N 1277410446 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15662 2021-11-06 09:00:14.224 2022-10-07 23:07:09.061 FrankTucker0RR \N \N \N 132327031 5 2 \N \N 100 \N \N f f 0 \N 701845570 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15941 2023-09-20 08:24:14.429 2023-12-24 12:32:22.681 KellieJarvisSJ4 \N \N \N 143113193 5 2 \N \N 100 \N \N f f 0 \N 437785018 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 828 2023-09-03 09:18:45.316 2024-02-08 12:13:17.198 GordonMorales8Y2 \N \N \N 201886641 5 2 \N \N 100 \N \N f f 0 \N 1646220794 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15978 2022-05-03 08:39:09.281 2022-12-01 23:04:21.184 TamiReeseOZ2 \N \N \N 228671021 5 2 \N \N 100 \N \N f f 0 \N 668074153 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16059 2023-02-20 18:25:05.828 2024-01-04 00:54:46.068 KaraBest15F \N \N \N 244787139 5 2 \N \N 100 \N \N f f 0 \N 939253176 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16124 2023-02-21 07:09:31.146 2021-11-25 06:57:48.488 BelindaSavageSL7 \N \N \N 124965281 5 2 \N \N 100 \N \N f f 0 \N 1622505432 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16149 2024-01-02 13:15:04.635 2022-12-07 23:01:14.4 DebbieBlairME3 \N \N \N 238176037 5 2 \N \N 100 \N \N f f 0 \N 1918903355 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16176 2023-06-08 16:24:28.701 2023-01-15 14:02:37.554 JackAlexanderB6X \N \N \N 156308712 5 2 \N \N 100 \N \N f f 0 \N 1104924010 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16250 2024-01-24 18:41:39.041 2023-03-07 00:49:43.065 PamMontesPN6 \N \N \N 77939549 5 2 \N \N 100 \N \N f f 0 \N 1007268875 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16259 2022-06-06 20:22:29.05 2023-07-16 00:14:50.951 PeggyAvilaZIU \N \N \N 187629712 5 2 \N \N 100 \N \N f f 0 \N 785337127 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16301 2022-12-23 18:52:16.457 2023-10-30 01:19:04.571 JeanetteHowell04L \N \N \N 199132654 5 2 \N \N 100 \N \N f f 0 \N 2290919441 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16387 2022-12-04 19:23:31.178 2022-07-30 12:54:34.982 TravisCopelandVDK \N \N \N 65048053 5 2 \N \N 100 \N \N f f 0 \N 2023423421 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16410 2023-07-17 18:11:50.74 2022-05-13 06:01:01.209 LydiaBeanDYO \N \N \N 226866009 5 2 \N \N 100 \N \N f f 0 \N 2094313167 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16440 2022-12-03 02:23:21.07 2022-06-30 03:02:26.254 StevenFuller4SH \N \N \N 190853021 5 2 \N \N 100 \N \N f f 0 \N 718612407 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16456 2021-12-07 15:52:06.94 2022-05-18 09:40:20.196 AnneTrujilloV6Y \N \N \N 83294032 5 2 \N \N 100 \N \N f f 0 \N 847101912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16536 2023-12-21 22:20:56.498 2023-12-17 16:53:34.264 DylanFrank3T6 \N \N \N 176637627 5 2 \N \N 100 \N \N f f 0 \N 174333950 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16562 2023-12-28 00:01:58.82 2023-06-25 18:44:01.32 StanleyLoveV4W \N \N \N 172748522 5 2 \N \N 100 \N \N f f 0 \N 1296866167 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16660 2021-10-28 03:45:17.039 2023-08-27 20:25:20.9 SaraStein6KQ \N \N \N 108998549 5 2 \N \N 100 \N \N f f 0 \N 883125651 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16665 2023-09-12 09:19:31.974 2022-07-14 22:24:14.434 KarlaRayH7K \N \N \N 60686476 5 2 \N \N 100 \N \N f f 0 \N 100807033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16667 2022-06-19 22:11:15.207 2022-07-25 20:34:47.268 TammieDownsBMW \N \N \N 129336321 5 2 \N \N 100 \N \N f f 0 \N 1693209199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16679 2022-07-12 05:25:25.452 2023-07-21 11:38:53.717 FranciscoRobinson867 \N \N \N 71237585 5 2 \N \N 100 \N \N f f 0 \N 1176994049 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16788 2022-09-05 03:36:29.214 2024-01-16 08:21:00.636 PriscillaWilliamsonM9E \N \N \N 182624725 5 2 \N \N 100 \N \N f f 0 \N 1814415236 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16939 2023-06-09 16:41:18.766 2022-10-08 17:58:09.648 TomSellersU5H \N \N \N 196794579 5 2 \N \N 100 \N \N f f 0 \N 2468239731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16942 2022-09-10 15:25:05.952 2022-04-17 09:15:06.615 AlejandroMossQBN \N \N \N 44268542 5 2 \N \N 100 \N \N f f 0 \N 1023189507 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16954 2023-12-13 01:46:46.651 2023-11-22 04:42:15.224 StanleyAtkinsW86 \N \N \N 82604047 5 2 \N \N 100 \N \N f f 0 \N 174518223 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16988 2023-06-11 11:22:27.462 2022-01-30 12:38:30.631 TracieHendricks3SE \N \N \N 68812056 5 2 \N \N 100 \N \N f f 0 \N 1893969011 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17011 2022-03-27 21:42:06.769 2023-09-01 03:11:03.141 SallyAllisonHM2 \N \N \N 81832622 5 2 \N \N 100 \N \N f f 0 \N 747830375 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17030 2023-02-11 18:49:58.365 2022-06-16 10:04:15.421 NatashaDaughertyR4K \N \N \N 19077812 5 2 \N \N 100 \N \N f f 0 \N 543639505 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17042 2024-01-21 21:59:50.926 2022-12-14 07:23:35.598 KathyMcneil4B1 \N \N \N 66850310 5 2 \N \N 100 \N \N f f 0 \N 597956561 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17050 2024-02-15 16:30:49.139 2022-11-02 07:03:44.164 MarcoMcknightFWN \N \N \N 220377634 5 2 \N \N 100 \N \N f f 0 \N 2303422889 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17082 2022-03-21 09:28:31.266 2022-06-24 22:22:35.9 TeresaHuffmanMOL \N \N \N 64260833 5 2 \N \N 100 \N \N f f 0 \N 410679658 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17201 2022-12-23 13:35:36.008 2023-01-11 16:32:52.946 DawnKirby7I0 \N \N \N 144338246 5 2 \N \N 100 \N \N f f 0 \N 1990113156 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1010 2023-04-30 20:13:46.083 2022-12-14 04:07:03.293 SoniaFowlerID7 \N \N \N 117649555 5 2 \N \N 100 \N \N f f 0 \N 676599999 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17275 2022-10-09 18:40:05.723 2021-10-15 01:57:41.338 KirstenOsborn5TS \N \N \N 154559789 5 2 \N \N 100 \N \N f f 0 \N 451610540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17291 2023-02-12 05:36:59.062 2022-02-02 09:06:30.774 NatashaWolfeAJ2 \N \N \N 74420482 5 2 \N \N 100 \N \N f f 0 \N 758036636 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17316 2023-04-07 15:44:18.874 2022-05-16 12:49:44.849 SoniaDuarteGRV \N \N \N 165894362 5 2 \N \N 100 \N \N f f 0 \N 2142551268 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17321 2021-11-28 02:01:23.014 2023-09-24 06:17:52.765 JeromeSpenceBSC \N \N \N 200620022 5 2 \N \N 100 \N \N f f 0 \N 1716720591 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17682 2023-03-28 18:45:19.935 2022-11-14 16:59:04.573 JustinReynoldsJC6 \N \N \N 233708635 5 2 \N \N 100 \N \N f f 0 \N 1215730949 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18241 2021-12-29 15:10:02.839 2023-12-29 13:03:19.28 JasonAnthonyELZ \N \N \N 60558795 5 2 \N \N 100 \N \N f f 0 \N 2216475695 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18309 2021-10-18 16:42:32.128 2021-11-03 23:28:18.063 KariZhangR33 \N \N \N 105036569 5 2 \N \N 100 \N \N f f 0 \N 1777752896 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18717 2023-04-07 21:18:03.458 2023-08-14 10:13:07.578 LouisPearsonGNI \N \N \N 230011521 5 2 \N \N 100 \N \N f f 0 \N 243036088 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18727 2023-02-09 21:28:48.494 2023-05-25 04:03:38.765 ShelbySheltonEMS \N \N \N 29303107 5 2 \N \N 100 \N \N f f 0 \N 1520199234 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18731 2022-10-12 05:23:43.734 2023-07-19 16:39:16.241 GabrielleNealHP2 \N \N \N 202067055 5 2 \N \N 100 \N \N f f 0 \N 2262395012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19016 2022-10-18 04:32:12.093 2021-12-05 14:29:05.05 CaitlinVelazquezUU8 \N \N \N 72645484 5 2 \N \N 100 \N \N f f 0 \N 943565326 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19126 2021-11-08 08:03:20.378 2021-11-29 00:29:00.23 PaulCamposANV \N \N \N 168900852 5 2 \N \N 100 \N \N f f 0 \N 1386341671 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19138 2023-11-26 17:34:31.719 2022-04-03 08:37:36.104 CharlesMathis6I4 \N \N \N 235460101 5 2 \N \N 100 \N \N f f 0 \N 1399016732 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19535 2024-02-15 20:43:15.693 2024-01-26 16:55:03.593 CharleneLoweryYKS \N \N \N 220933691 5 2 \N \N 100 \N \N f f 0 \N 587738386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20243 2023-08-16 15:31:57.066 2023-09-23 20:24:35.381 ShelleyGreeneUXJ \N \N \N 157772099 5 2 \N \N 100 \N \N f f 0 \N 2200770731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20454 2023-03-11 16:48:59.635 2023-03-17 04:33:46.036 MindyHopkinsSD7 \N \N \N 159010413 5 2 \N \N 100 \N \N f f 0 \N 1377884176 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21233 2022-02-27 09:01:56.938 2022-06-26 05:17:03.546 ChristyPatterson8NB \N \N \N 214641256 5 2 \N \N 100 \N \N f f 0 \N 441633380 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21599 2021-10-13 01:41:05.032 2024-02-19 06:02:04.094 JermaineHullRFC \N \N \N 52970735 5 2 \N \N 100 \N \N f f 0 \N 1508073049 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 638 2023-05-21 22:18:14.246 2023-02-16 13:03:49.2 ArthurHoustonIAG \N \N \N 92838020 5 2 \N \N 100 \N \N f f 0 \N 1274486906 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 641 2021-11-01 03:50:45.137 2023-04-08 12:26:49.445 AnnetteGillespieZCN \N \N \N 159360211 5 2 \N \N 100 \N \N f f 0 \N 1547883099 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 646 2024-02-17 04:48:43.13 2023-09-16 07:16:09.937 AmberAtkinson50Y \N \N \N 1038869 5 2 \N \N 100 \N \N f f 0 \N 2107985962 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 651 2023-05-19 17:16:09.49 2023-12-26 21:45:57.171 ConnorEsparzaDS3 \N \N \N 61839763 5 2 \N \N 100 \N \N f f 0 \N 1243529621 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 652 2023-09-02 20:27:40.004 2023-01-18 22:11:02.202 EvanBuchanan365 \N \N \N 139172406 5 2 \N \N 100 \N \N f f 0 \N 2060532978 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 686 2022-01-19 06:34:11.575 2022-08-10 20:02:41.98 RicardoAndradeGDE \N \N \N 187248935 5 2 \N \N 100 \N \N f f 0 \N 2080943672 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 688 2022-05-22 07:15:24.36 2023-05-24 14:39:24.647 DebraOrtizQHM \N \N \N 52081550 5 2 \N \N 100 \N \N f f 0 \N 648199307 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 698 2022-02-25 12:33:37.835 2023-09-12 15:49:07.903 ShirleyHardyRZE \N \N \N 66096956 5 2 \N \N 100 \N \N f f 0 \N 2270380628 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 699 2023-12-05 00:04:53.801 2023-12-15 15:33:20.237 MarieWaltersMIL \N \N \N 138037439 5 2 \N \N 100 \N \N f f 0 \N 2089439477 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 701 2021-12-18 06:53:34.248 2022-05-02 23:54:06.374 MicheleKellerNDV \N \N \N 119177381 5 2 \N \N 100 \N \N f f 0 \N 625370344 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 725 2021-11-10 00:48:24.39 2021-12-07 00:35:05.45 AnneMatthewsYMO \N \N \N 75496138 5 2 \N \N 100 \N \N f f 0 \N 1366666155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 746 2022-08-23 22:04:48.79 2022-09-15 01:06:01.035 WyattObrien0OI \N \N \N 187991797 5 2 \N \N 100 \N \N f f 0 \N 1995517458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 759 2022-06-24 16:36:41.382 2022-03-28 10:10:58.6 GinaCookeRPI \N \N \N 183876584 5 2 \N \N 100 \N \N f f 0 \N 1877718838 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 775 2023-12-06 12:42:29.247 2022-06-19 03:12:46.679 AlisonStokesTIN \N \N \N 63951128 5 2 \N \N 100 \N \N f f 0 \N 271046872 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1124 2022-01-14 21:51:49.348 2022-04-25 07:23:05.128 MartinCrossT7Y \N \N \N 34654763 5 2 \N \N 100 \N \N f f 0 \N 2202019542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1213 2021-12-01 22:35:41.711 2023-06-02 13:39:10.034 MasonGloverSB0 \N \N \N 21467202 5 2 \N \N 100 \N \N f f 0 \N 73661038 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1236 2023-11-24 22:03:25.336 2022-05-03 19:39:01.419 RoseWeissY7Z \N \N \N 121149734 5 2 \N \N 100 \N \N f f 0 \N 1304083204 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1237 2023-07-05 22:03:14.565 2023-05-18 11:11:13.898 TammieFarleyWGV \N \N \N 150534014 5 2 \N \N 100 \N \N f f 0 \N 25137012 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1298 2023-01-03 15:56:14.558 2022-09-07 23:47:19.033 BrandyLi38R \N \N \N 243690892 5 2 \N \N 100 \N \N f f 0 \N 1034836362 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1433 2022-06-26 04:13:56.025 2023-06-14 19:52:01.493 LeroyHinesV11 \N \N \N 130378690 5 2 \N \N 100 \N \N f f 0 \N 895250453 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1439 2023-11-30 20:45:45.772 2022-09-05 19:55:15.388 JefferyGeorgeLZ1 \N \N \N 51853327 5 2 \N \N 100 \N \N f f 0 \N 769239441 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1465 2022-04-16 13:53:48.335 2023-09-20 14:44:26.218 NatashaRayH91 \N \N \N 221506024 5 2 \N \N 100 \N \N f f 0 \N 1013975151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1472 2021-10-15 22:43:20.514 2023-02-24 07:47:44.441 JillianMontgomeryMLC \N \N \N 42657888 5 2 \N \N 100 \N \N f f 0 \N 397531685 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1474 2023-12-14 06:45:46.981 2023-11-09 14:55:52.661 RicardoClay4IY \N \N \N 189316090 5 2 \N \N 100 \N \N f f 0 \N 475599963 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1480 2023-04-08 17:27:35.755 2023-12-06 01:23:24.312 RitaGoodman977 \N \N \N 123374517 5 2 \N \N 100 \N \N f f 0 \N 908757444 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1483 2023-11-25 01:23:49.557 2023-10-14 01:28:47.149 JerryHurleyPA1 \N \N \N 200976211 5 2 \N \N 100 \N \N f f 0 \N 1799819359 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1488 2024-01-11 01:41:16.534 2022-07-01 13:44:42.178 MarkLangOIY \N \N \N 132306642 5 2 \N \N 100 \N \N f f 0 \N 217402498 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1489 2023-12-23 11:21:56.709 2022-07-25 22:06:19.543 AndresHodges3LX \N \N \N 232293803 5 2 \N \N 100 \N \N f f 0 \N 878664901 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1490 2023-04-12 18:17:50.136 2022-11-19 08:59:11.627 JonathonAnthonyP4U \N \N \N 61565658 5 2 \N \N 100 \N \N f f 0 \N 576660363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1512 2023-03-09 13:40:14.209 2023-08-27 11:07:58.698 LeroyNicholsQDI \N \N \N 207312096 5 2 \N \N 100 \N \N f f 0 \N 1913352857 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1515 2022-02-16 21:18:13.931 2024-02-07 10:06:16.484 WayneGriffinAD4 \N \N \N 54759904 5 2 \N \N 100 \N \N f f 0 \N 628551357 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1519 2021-10-27 12:31:07.009 2023-02-08 00:59:09.886 TashaMckeeMST \N \N \N 155976947 5 2 \N \N 100 \N \N f f 0 \N 2093739606 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1534 2022-03-10 08:54:47.682 2024-02-02 05:25:22.188 MargaretBarryHKW \N \N \N 210374048 5 2 \N \N 100 \N \N f f 0 \N 2445500077 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1584 2022-10-20 13:25:00.648 2023-06-25 19:12:45.357 DarleneVillaQMM \N \N \N 94401642 5 2 \N \N 100 \N \N f f 0 \N 1996728938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1585 2023-04-09 16:21:28.444 2023-02-17 00:52:55.557 BillyHancock9YE \N \N \N 216251137 5 2 \N \N 100 \N \N f f 0 \N 2003671976 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1602 2023-09-21 02:18:18.61 2023-10-31 16:08:24.4 TracieEstes9KS \N \N \N 186813803 5 2 \N \N 100 \N \N f f 0 \N 1734317307 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1605 2022-09-28 06:58:29.816 2024-01-10 23:17:17.15 AngelicaBlackwellQYN \N \N \N 10703787 5 2 \N \N 100 \N \N f f 0 \N 939746378 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1609 2021-11-11 22:18:47.629 2022-08-25 16:55:02.88 KristenHornFE0 \N \N \N 25723838 5 2 \N \N 100 \N \N f f 0 \N 521406716 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1620 2022-05-16 17:07:59.349 2023-10-12 19:49:57.638 NataliePageIO6 \N \N \N 138372240 5 2 \N \N 100 \N \N f f 0 \N 577429574 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1624 2023-10-06 13:48:05.934 2022-12-11 18:01:25.773 AdrianaMckay1T7 \N \N \N 56514475 5 2 \N \N 100 \N \N f f 0 \N 55426602 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1697 2022-11-30 20:39:59.874 2021-10-20 12:28:51.797 EdwinHuangWEW \N \N \N 18759581 5 2 \N \N 100 \N \N f f 0 \N 1841634690 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1713 2022-06-14 04:40:41.151 2022-08-23 17:18:18.813 DesireeMooneySBD \N \N \N 178161520 5 2 \N \N 100 \N \N f f 0 \N 872930674 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1733 2022-04-17 05:41:44.964 2021-12-02 07:12:40.81 TinaMcconnell7IB \N \N \N 176040865 5 2 \N \N 100 \N \N f f 0 \N 2012250922 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1737 2021-12-18 23:47:01.6 2023-09-06 21:39:13.512 JessicaVangDRP \N \N \N 29597149 5 2 \N \N 100 \N \N f f 0 \N 2450838294 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1769 2022-03-10 13:03:39.595 2021-10-10 04:26:10.574 BreannaDominguezYSY \N \N \N 9420505 5 2 \N \N 100 \N \N f f 0 \N 2360798016 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2640 2023-01-03 02:32:37.647 2021-11-08 20:45:54.365 EllenLopez5EH \N \N \N 84169383 5 2 \N \N 100 \N \N f f 0 \N 578138721 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5522 2023-03-04 15:22:46.287 2022-09-26 09:08:33.987 NatashaHuffman8EC \N \N \N 201164109 5 2 \N \N 100 \N \N f f 0 \N 1030396978 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 928 2023-08-22 15:10:46.068 2021-11-29 17:44:38.169 HectorDeleonNZ5 \N \N \N 195343858 5 2 \N \N 100 \N \N f f 0 \N 632988750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 946 2022-01-06 23:49:39.52 2022-10-04 18:38:41.479 StephenCarpenterO0O \N \N \N 187365553 5 2 \N \N 100 \N \N f f 0 \N 514979940 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1175 2021-10-31 22:52:55.764 2023-02-05 22:59:24.533 StanleyGibbsW07 \N \N \N 193066067 5 2 \N \N 100 \N \N f f 0 \N 1025076276 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1723 2022-09-25 11:55:57.205 2023-12-12 08:11:06.763 ReginaLoweryPJK \N \N \N 47157014 5 2 \N \N 100 \N \N f f 0 \N 2346681761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1970 2022-03-09 12:56:29.903 2022-04-13 05:39:36.394 ToniBarry53J \N \N \N 5375325 5 2 \N \N 100 \N \N f f 0 \N 556233067 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2000 2023-05-15 22:01:02.177 2022-09-16 04:02:38.254 AnaRiveraI1H \N \N \N 77028876 5 2 \N \N 100 \N \N f f 0 \N 2423125242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2039 2023-12-23 10:13:42.19 2023-12-23 03:10:20.399 FeliciaFritzV8M \N \N \N 163338143 5 2 \N \N 100 \N \N f f 0 \N 1292245640 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2329 2023-04-07 05:54:16.101 2023-10-27 07:47:31.961 AlexaGoldenOX8 \N \N \N 108893925 5 2 \N \N 100 \N \N f f 0 \N 2260394356 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2431 2021-11-20 22:45:34.173 2022-07-17 10:15:03.143 NatashaMcknight7JC \N \N \N 76358790 5 2 \N \N 100 \N \N f f 0 \N 484627017 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2703 2022-07-23 15:23:36.238 2022-07-30 14:53:18.585 NormanValenciaOCR \N \N \N 168963757 5 2 \N \N 100 \N \N f f 0 \N 1103723704 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2709 2024-01-03 22:17:33.591 2022-04-29 05:12:39.231 AndrewPittsVKV \N \N \N 155943437 5 2 \N \N 100 \N \N f f 0 \N 50890582 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2722 2022-10-12 19:52:34.739 2022-07-08 15:33:41.793 MiguelFoster2TV \N \N \N 167056767 5 2 \N \N 100 \N \N f f 0 \N 1336958515 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3304 2023-07-06 12:42:13.458 2022-01-30 15:05:14.63 PatrickThorntonKN0 \N \N \N 5074393 5 2 \N \N 100 \N \N f f 0 \N 2446907476 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3371 2021-11-25 16:39:11.425 2022-09-02 23:39:34.672 JoseWebsterEGO \N \N \N 161959912 5 2 \N \N 100 \N \N f f 0 \N 710304408 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4166 2021-10-31 12:16:11.769 2022-03-14 23:31:19.398 GeneBlackburnC9H \N \N \N 33730040 5 2 \N \N 100 \N \N f f 0 \N 735028426 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4177 2023-11-22 16:16:21.116 2024-01-20 01:50:31.601 ClaytonWardK6K \N \N \N 93331519 5 2 \N \N 100 \N \N f f 0 \N 1446520910 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4292 2023-06-17 10:57:00.844 2021-12-24 03:33:49.886 MarcWarnerDF7 \N \N \N 193436693 5 2 \N \N 100 \N \N f f 0 \N 1658325682 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4502 2023-11-20 05:34:22.637 2021-12-27 15:20:44.191 ChristieBrennanQDS \N \N \N 177063823 5 2 \N \N 100 \N \N f f 0 \N 1127617895 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5495 2021-12-17 14:23:37.673 2023-08-24 05:45:13.174 CatherineMurillo415 \N \N \N 78825876 5 2 \N \N 100 \N \N f f 0 \N 631181068 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5497 2021-11-06 01:55:08.357 2023-04-25 19:52:59.06 AlishaHolt43M \N \N \N 60533616 5 2 \N \N 100 \N \N f f 0 \N 352701658 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5746 2022-03-23 02:35:00.122 2022-07-13 04:22:05.388 JulieGuzmanQJ6 \N \N \N 213131359 5 2 \N \N 100 \N \N f f 0 \N 2417677597 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5829 2022-05-20 20:19:12.705 2023-11-28 13:59:19.7 SpencerTaylorGRB \N \N \N 186428269 5 2 \N \N 100 \N \N f f 0 \N 621790335 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5961 2023-08-26 16:46:06.809 2023-10-20 12:31:46.294 BonnieDawson19G \N \N \N 19812970 5 2 \N \N 100 \N \N f f 0 \N 729569971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6136 2022-06-30 03:25:06.92 2023-02-05 16:41:56.69 MarioLynn2O0 \N \N \N 137961889 5 2 \N \N 100 \N \N f f 0 \N 517688782 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6148 2021-10-17 04:35:02.201 2022-03-11 09:42:50.923 VickieDiaz0U8 \N \N \N 50597516 5 2 \N \N 100 \N \N f f 0 \N 1331024868 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6688 2023-08-11 19:34:41.284 2022-05-28 04:39:58.041 CarlaPattonONU \N \N \N 249252934 5 2 \N \N 100 \N \N f f 0 \N 1356388113 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6749 2023-06-03 22:35:28.975 2022-04-16 05:27:43.536 LatashaGibson2O0 \N \N \N 234823255 5 2 \N \N 100 \N \N f f 0 \N 396338417 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5527 2022-02-15 18:59:27.168 2023-10-20 10:36:56.319 BaileySolomonSZM \N \N \N 109442601 5 2 \N \N 100 \N \N f f 0 \N 1525043934 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7119 2023-08-06 16:53:35.417 2023-07-26 01:07:10.783 LorraineZamoraB4Y \N \N \N 211259349 5 2 \N \N 100 \N \N f f 0 \N 645524677 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7675 2021-11-11 17:25:17.681 2022-10-23 15:59:43.236 BriannaSavageFGG \N \N \N 41716931 5 2 \N \N 100 \N \N f f 0 \N 1195006247 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8173 2022-06-19 05:28:54.05 2023-05-08 08:15:59.786 AlejandroBaldwinWBX \N \N \N 218552723 5 2 \N \N 100 \N \N f f 0 \N 1381619803 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9450 2022-03-04 14:51:08.901 2022-05-05 07:30:10.932 CoryCareyO0D \N \N \N 238389734 5 2 \N \N 100 \N \N f f 0 \N 617154375 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10311 2024-02-19 08:21:08.133 2023-02-06 09:06:27.474 StephenAlvarado17W \N \N \N 38563270 5 2 \N \N 100 \N \N f f 0 \N 648366136 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10554 2022-07-15 05:44:52.908 2021-12-28 02:46:31.729 CristinaTrujilloIIT \N \N \N 143146872 5 2 \N \N 100 \N \N f f 0 \N 146115569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10862 2022-04-06 17:42:17.818 2022-02-27 20:04:20.821 ShaunBrowningL6O \N \N \N 168292909 5 2 \N \N 100 \N \N f f 0 \N 1619518707 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11158 2023-06-13 15:41:18.612 2021-11-12 09:25:47.049 JosephHebert2SC \N \N \N 128441198 5 2 \N \N 100 \N \N f f 0 \N 1906173049 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11395 2023-01-01 09:47:01.558 2023-04-05 03:41:10.447 CraigZhangSB6 \N \N \N 55667484 5 2 \N \N 100 \N \N f f 0 \N 1749486199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12097 2022-01-05 12:11:45.897 2021-12-08 01:24:42.657 CarlWilcoxJET \N \N \N 167267223 5 2 \N \N 100 \N \N f f 0 \N 1724209984 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12261 2021-10-27 11:33:02.491 2022-03-05 08:08:42.594 BrianaBrockIDF \N \N \N 211159648 5 2 \N \N 100 \N \N f f 0 \N 1115909484 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12278 2023-09-17 18:28:09.146 2023-06-13 16:18:44.442 RobinWatsonM3U \N \N \N 88905039 5 2 \N \N 100 \N \N f f 0 \N 1584304022 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12561 2024-01-05 21:56:36.284 2023-11-01 06:31:04.807 JohnathanTorresALD \N \N \N 240998623 5 2 \N \N 100 \N \N f f 0 \N 1513221 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13076 2023-05-15 05:33:35.698 2023-07-02 11:17:03.05 AndreaJordanHH7 \N \N \N 23456093 5 2 \N \N 100 \N \N f f 0 \N 504837020 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13097 2023-02-16 14:56:10.709 2022-05-18 05:23:36.974 VickieSweeney3CI \N \N \N 236026066 5 2 \N \N 100 \N \N f f 0 \N 1660045417 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13798 2022-01-21 06:59:15 2023-10-30 15:32:34.583 LatoyaCarneyMLB \N \N \N 64343794 5 2 \N \N 100 \N \N f f 0 \N 427996703 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14080 2022-02-25 23:58:02.47 2022-04-16 17:00:09.637 CheyenneForbesB60 \N \N \N 29555851 5 2 \N \N 100 \N \N f f 0 \N 746827705 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14472 2023-03-31 17:25:20.496 2023-12-15 15:07:33.573 AllisonNoble9GD \N \N \N 186848364 5 2 \N \N 100 \N \N f f 0 \N 1412235765 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14774 2023-04-08 08:23:54.358 2024-01-21 01:25:40.812 BrianaMartinezOXQ \N \N \N 215538961 5 2 \N \N 100 \N \N f f 0 \N 252032618 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15200 2022-02-19 06:13:14.765 2022-08-01 01:58:29.723 KaraConnerK6R \N \N \N 96523495 5 2 \N \N 100 \N \N f f 0 \N 2440403602 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15409 2023-08-04 03:42:26.029 2022-02-12 07:45:47.44 DebraMahoneyTLI \N \N \N 229308599 5 2 \N \N 100 \N \N f f 0 \N 1126866387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16145 2022-04-26 18:46:00.532 2023-06-26 17:43:59.519 HaydenArmstrongJI3 \N \N \N 148914732 5 2 \N \N 100 \N \N f f 0 \N 664721714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16229 2021-12-20 18:56:15.554 2022-12-17 18:44:38.748 ClaireHuertaI3N \N \N \N 156844970 5 2 \N \N 100 \N \N f f 0 \N 1665042121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16329 2022-11-18 19:08:25.161 2022-01-26 19:28:56.004 JeanetteDuncanTZ7 \N \N \N 202947485 5 2 \N \N 100 \N \N f f 0 \N 1494539933 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16653 2023-01-11 19:25:16.511 2022-08-05 19:55:30.224 GavinMataB1I \N \N \N 121582884 5 2 \N \N 100 \N \N f f 0 \N 2251518946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16680 2023-04-12 21:22:40.423 2023-12-05 16:50:49.343 RobynHarper075 \N \N \N 47981205 5 2 \N \N 100 \N \N f f 0 \N 502636505 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16966 2022-08-16 20:38:21.547 2023-12-30 09:01:23.45 LanceFosterD7U \N \N \N 212136622 5 2 \N \N 100 \N \N f f 0 \N 277558527 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17109 2023-04-25 05:05:33.761 2021-12-03 05:00:41.38 KurtHuntCTT \N \N \N 168981545 5 2 \N \N 100 \N \N f f 0 \N 1845978733 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17116 2023-06-04 20:06:41.631 2022-08-22 23:48:19.009 ValeriePerezBC5 \N \N \N 179527611 5 2 \N \N 100 \N \N f f 0 \N 2041930283 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17226 2023-05-14 00:35:21.983 2023-10-23 03:47:54.003 JackBrightPV8 \N \N \N 25877006 5 2 \N \N 100 \N \N f f 0 \N 1469922649 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17411 2024-01-08 23:32:23.205 2022-03-05 12:44:44.941 CoryBraunDNX \N \N \N 89241128 5 2 \N \N 100 \N \N f f 0 \N 824904386 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17415 2022-12-24 02:32:44.8 2023-09-24 01:03:37.477 RussellJenningsRH1 \N \N \N 3759195 5 2 \N \N 100 \N \N f f 0 \N 656454297 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17455 2022-10-18 19:48:13.633 2022-07-01 09:51:46.921 VickieLyonsVVB \N \N \N 43941942 5 2 \N \N 100 \N \N f f 0 \N 1615041823 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17494 2023-06-05 04:04:26.444 2021-12-04 20:23:39.824 DeanDaviesAH1 \N \N \N 216503654 5 2 \N \N 100 \N \N f f 0 \N 816802508 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17517 2022-07-19 10:46:53.019 2022-07-27 17:30:18.259 ZoeFarleyWBC \N \N \N 137640351 5 2 \N \N 100 \N \N f f 0 \N 2052708841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17519 2023-02-28 07:00:59.521 2022-03-16 04:16:28.778 WyattKruegerF8C \N \N \N 213644375 5 2 \N \N 100 \N \N f f 0 \N 869074190 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17526 2022-08-03 22:41:28.822 2022-07-04 12:42:06.684 HaroldHardingHTR \N \N \N 208554785 5 2 \N \N 100 \N \N f f 0 \N 1536161611 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17552 2022-01-12 21:34:39.945 2023-02-17 15:30:50.457 RhondaMorrisonN4E \N \N \N 11254684 5 2 \N \N 100 \N \N f f 0 \N 2436562699 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17638 2023-07-02 06:38:18.323 2022-03-17 20:45:41.088 ConnorSteele9P0 \N \N \N 150483938 5 2 \N \N 100 \N \N f f 0 \N 1468942060 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17639 2023-10-14 03:33:54.149 2023-07-30 00:47:57.78 CesarRussellYXF \N \N \N 239938864 5 2 \N \N 100 \N \N f f 0 \N 1070412942 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17727 2022-02-17 21:45:08.679 2023-01-20 05:14:06.076 LeslieBellQ4J \N \N \N 30685811 5 2 \N \N 100 \N \N f f 0 \N 891686494 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17798 2023-12-31 06:28:33.34 2023-07-02 07:53:14.829 JoelDillonT2R \N \N \N 216690686 5 2 \N \N 100 \N \N f f 0 \N 2363308102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17891 2022-08-23 20:26:13.624 2023-07-15 00:29:34.936 JakeMartin6YI \N \N \N 29325362 5 2 \N \N 100 \N \N f f 0 \N 1710711361 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17953 2022-05-10 21:32:10.033 2023-10-28 18:35:05.857 TroySchultzHLC \N \N \N 220076179 5 2 \N \N 100 \N \N f f 0 \N 1665848247 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1983 2023-03-04 16:37:44.01 2021-11-04 07:31:24.931 LeslieFuentesX5M \N \N \N 179773717 5 2 \N \N 100 \N \N f f 0 \N 719314285 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4014 2024-02-16 04:26:41.723 2023-05-28 15:30:52.713 BarryDickson652 \N \N \N 121150897 5 2 \N \N 100 \N \N f f 0 \N 404304469 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5173 2023-03-30 08:40:27.523 2022-01-18 02:27:00.201 RandallBrown1LM \N \N \N 35990297 5 2 \N \N 100 \N \N f f 0 \N 1481370767 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6268 2023-10-04 21:26:46.519 2023-06-13 05:28:11.719 PaulMaynardT5S \N \N \N 247970736 5 2 \N \N 100 \N \N f f 0 \N 1841185130 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7891 2023-04-08 17:40:17.551 2022-04-14 10:57:19.387 ChloeWolfL6H \N \N \N 248002321 5 2 \N \N 100 \N \N f f 0 \N 520745921 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8423 2023-01-23 03:06:15.604 2023-12-05 21:03:12.743 CharlotteHinton7MS \N \N \N 178679742 5 2 \N \N 100 \N \N f f 0 \N 1195038614 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9985 2023-08-24 07:41:49.807 2022-03-19 04:42:21.8 BradleyWongEIA \N \N \N 17727019 5 2 \N \N 100 \N \N f f 0 \N 500855736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11967 2022-05-10 05:14:02.914 2022-12-26 00:58:57.334 MollySchultzP4Q \N \N \N 180125531 5 2 \N \N 100 \N \N f f 0 \N 2327789655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12072 2022-08-18 01:32:30.334 2023-12-27 14:02:28.51 JakeWigginsRIG \N \N \N 119940503 5 2 \N \N 100 \N \N f f 0 \N 2491616205 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12368 2021-10-04 01:51:49.427 2023-08-30 09:13:44.303 HelenBeckerWVV \N \N \N 83039722 5 2 \N \N 100 \N \N f f 0 \N 277566024 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13378 2023-10-12 09:04:47.76 2023-08-13 13:06:13.152 DeannaPowersQ8L \N \N \N 244669588 5 2 \N \N 100 \N \N f f 0 \N 2414804116 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14465 2022-03-30 17:42:26.331 2021-11-26 05:51:20.167 AnnTranGUQ \N \N \N 39084538 5 2 \N \N 100 \N \N f f 0 \N 879828338 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14663 2023-11-17 02:03:17.971 2021-10-19 10:50:59.875 ConnieLeCPG \N \N \N 153271210 5 2 \N \N 100 \N \N f f 0 \N 1956398035 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14909 2022-05-11 17:06:08.996 2024-02-01 10:48:29.794 RebekahSolomonV2P \N \N \N 59102691 5 2 \N \N 100 \N \N f f 0 \N 1963575802 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 712 2022-12-01 23:15:32.675 2023-03-11 20:11:57.033 KaitlinMcknight5EY \N \N \N 56777692 5 2 \N \N 100 \N \N f f 0 \N 1757310654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17209 2022-04-07 10:06:42.35 2022-04-23 17:40:15.503 SherylColeJP0 \N \N \N 175794744 5 2 \N \N 100 \N \N f f 0 \N 193302011 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19527 2021-11-03 15:29:29.799 2023-09-30 19:40:19.515 GabrielleMckayVOK \N \N \N 70132113 5 2 \N \N 100 \N \N f f 0 \N 740053148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19735 2022-02-13 06:54:12.527 2023-06-01 10:54:02.279 PhilipMccullough20S \N \N \N 208647599 5 2 \N \N 100 \N \N f f 0 \N 1448682878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19992 2023-07-30 03:00:12.945 2023-06-26 01:36:47.298 CharlotteCarrollTGU \N \N \N 114444814 5 2 \N \N 100 \N \N f f 0 \N 1778495756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20190 2022-01-26 08:30:50.241 2023-08-31 08:17:08.429 DerrickMosesJUD \N \N \N 42270590 5 2 \N \N 100 \N \N f f 0 \N 587705578 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21349 2022-05-23 04:49:31.529 2022-04-03 19:35:02.463 OliviaBirdR0D \N \N \N 58921841 5 2 \N \N 100 \N \N f f 0 \N 2142568631 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21393 2024-02-13 03:32:25.299 2021-10-27 11:12:00.417 KarlaFlynnYG6 \N \N \N 87788440 5 2 \N \N 100 \N \N f f 0 \N 1659870701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21400 2024-02-11 06:50:23.89 2023-08-07 14:28:30.582 AllenLongOZ4 \N \N \N 248562637 5 2 \N \N 100 \N \N f f 0 \N 2065922390 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21506 2022-01-16 23:18:09.039 2022-06-24 18:09:56.857 ChristyHogan1ZW \N \N \N 236890575 5 2 \N \N 100 \N \N f f 0 \N 855482296 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21540 2023-04-26 09:39:55.688 2022-04-10 18:51:48.323 BradyJohnstonZ9D \N \N \N 163517856 5 2 \N \N 100 \N \N f f 0 \N 2083101698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 617 2023-07-24 17:28:20.39 2022-11-02 07:14:43.004 PamAdkinsN19 \N \N \N 211811801 5 2 \N \N 100 \N \N f f 0 \N 1105179973 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 650 2022-10-04 06:33:31.737 2022-05-24 21:06:06.93 GlennBeasley4LR \N \N \N 172199427 5 2 \N \N 100 \N \N f f 0 \N 1281803088 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 761 2022-01-31 23:46:39.921 2023-06-05 02:55:09.674 SuzanneKnoxRRB \N \N \N 86867696 5 2 \N \N 100 \N \N f f 0 \N 1992930094 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 798 2022-12-14 14:36:38.769 2021-11-22 09:22:26.502 JacobGoodmanWG7 \N \N \N 240363300 5 2 \N \N 100 \N \N f f 0 \N 224696970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 826 2022-08-16 15:24:52.613 2023-09-24 10:44:54.209 JoannGalloway5NX \N \N \N 13175647 5 2 \N \N 100 \N \N f f 0 \N 1335408576 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 940 2023-07-08 10:20:24.861 2023-02-16 00:21:07.808 DarleneMunozCZ6 \N \N \N 64429840 5 2 \N \N 100 \N \N f f 0 \N 2043499715 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 980 2023-08-14 02:41:19.233 2023-03-12 11:36:02.747 OmarRileyRJ2 \N \N \N 37494665 5 2 \N \N 100 \N \N f f 0 \N 422627404 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1046 2021-10-12 03:37:04.484 2023-10-24 09:46:43.288 PamelaWhitneyQNP \N \N \N 231749887 5 2 \N \N 100 \N \N f f 0 \N 1582444545 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1092 2022-11-23 03:49:04.669 2022-06-17 02:29:32.876 CarlDurhamKE9 \N \N \N 150522789 5 2 \N \N 100 \N \N f f 0 \N 1748805601 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1478 2023-12-19 10:47:04.494 2022-03-27 01:27:04.152 BreannaKhan2TF \N \N \N 204010772 5 2 \N \N 100 \N \N f f 0 \N 1819692085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1712 2022-03-26 07:53:10.127 2023-02-17 23:12:05.128 EugeneSinghYHN \N \N \N 141149866 5 2 \N \N 100 \N \N f f 0 \N 1923359162 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1773 2023-07-15 08:18:54.01 2022-02-23 11:26:32.591 VictoriaMirandaBHU \N \N \N 174572887 5 2 \N \N 100 \N \N f f 0 \N 213079992 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1825 2024-01-08 01:29:28.536 2022-01-08 11:08:29.919 JoeKennedySGL \N \N \N 121662899 5 2 \N \N 100 \N \N f f 0 \N 168871490 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1959 2023-02-03 17:09:44.697 2022-11-02 07:39:20.993 KathleenWangL2H \N \N \N 185331330 5 2 \N \N 100 \N \N f f 0 \N 2439500329 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2213 2022-06-15 19:10:33.961 2023-05-18 02:34:43.293 CalvinJordanG9O \N \N \N 162645645 5 2 \N \N 100 \N \N f f 0 \N 1803334496 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2537 2022-02-16 19:24:01.522 2023-05-30 20:50:19.018 JeromeStrongSQP \N \N \N 39864441 5 2 \N \N 100 \N \N f f 0 \N 14517871 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2681 2022-07-09 17:49:36.364 2022-05-09 16:29:51.962 MaryCamposJPL \N \N \N 235101450 5 2 \N \N 100 \N \N f f 0 \N 2395092537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4079 2023-08-29 10:26:22.351 2024-01-13 12:07:43.779 SheilaRowlandJA5 \N \N \N 204704866 5 2 \N \N 100 \N \N f f 0 \N 696575336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4654 2022-10-22 10:09:50.622 2023-02-21 16:20:47.76 JaimeDaniel6VQ \N \N \N 52097756 5 2 \N \N 100 \N \N f f 0 \N 898403207 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4768 2022-04-07 14:46:41.622 2021-12-07 06:51:41.029 SabrinaDoughertyXD8 \N \N \N 157305944 5 2 \N \N 100 \N \N f f 0 \N 463349971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5175 2023-05-13 17:49:28.571 2024-01-27 14:12:01.96 HaleyFord2G2 \N \N \N 41524102 5 2 \N \N 100 \N \N f f 0 \N 1079729749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5499 2023-02-21 16:01:37.396 2024-01-13 02:59:29.773 AndrewSingletonK7F \N \N \N 81978521 5 2 \N \N 100 \N \N f f 0 \N 1018569133 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5708 2024-01-16 20:34:14.548 2022-04-22 08:23:38.78 MarcoLarsenO0Z \N \N \N 34290794 5 2 \N \N 100 \N \N f f 0 \N 1894018060 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5794 2023-07-08 03:20:29.579 2023-03-27 23:21:28.092 OliviaRichardsV37 \N \N \N 86743635 5 2 \N \N 100 \N \N f f 0 \N 1547181985 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5865 2022-12-08 06:32:57.412 2023-05-17 13:32:53.496 BlakeRiceZ7N \N \N \N 65018854 5 2 \N \N 100 \N \N f f 0 \N 1078949923 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5942 2023-04-21 09:41:26.384 2021-10-09 08:55:20.843 MiaSnow6HQ \N \N \N 220503570 5 2 \N \N 100 \N \N f f 0 \N 1997373093 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6149 2022-03-19 20:21:15.546 2022-10-18 12:08:51.187 ChristineMonroeO5T \N \N \N 80612919 5 2 \N \N 100 \N \N f f 0 \N 1660686016 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6160 2022-05-17 01:45:30.491 2024-01-22 06:07:14.252 EvelynLongVK0 \N \N \N 122329430 5 2 \N \N 100 \N \N f f 0 \N 1818644295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6361 2023-08-31 01:28:27.117 2023-02-26 14:56:49.902 JenniferMendozaEZM \N \N \N 10229717 5 2 \N \N 100 \N \N f f 0 \N 1692244290 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6687 2021-11-24 10:33:53.735 2023-08-20 06:02:26.62 DorisDayVUN \N \N \N 79661772 5 2 \N \N 100 \N \N f f 0 \N 2384038820 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7389 2023-05-17 22:11:15.506 2023-04-17 13:53:27.738 DominicDaltonLW6 \N \N \N 138543719 5 2 \N \N 100 \N \N f f 0 \N 543248591 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7766 2022-05-03 12:40:44.634 2022-10-31 14:12:16.049 KennethGuerreroRC7 \N \N \N 34408425 5 2 \N \N 100 \N \N f f 0 \N 1997372717 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8498 2023-03-16 22:04:01.656 2022-01-02 19:25:17.234 JeanneButlerIME \N \N \N 185235282 5 2 \N \N 100 \N \N f f 0 \N 464152726 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8570 2024-01-10 00:41:39.842 2021-10-31 17:21:44.307 MathewVilla7MZ \N \N \N 54834040 5 2 \N \N 100 \N \N f f 0 \N 2130409731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9183 2022-08-11 01:35:28.853 2023-10-19 02:50:20.493 MadelineHurleyBQ0 \N \N \N 145817758 5 2 \N \N 100 \N \N f f 0 \N 2147986348 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9261 2022-06-18 10:54:18.372 2023-05-08 19:26:20.589 DakotaDrake6B8 \N \N \N 225583599 5 2 \N \N 100 \N \N f f 0 \N 1065155026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9916 2021-10-12 11:37:43.364 2021-11-04 13:33:36.413 JoanneCannonQ7Y \N \N \N 85039872 5 2 \N \N 100 \N \N f f 0 \N 1321037841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10273 2022-12-15 18:54:08.328 2023-11-10 21:00:38.437 GeorgeStevensonQM1 \N \N \N 3414371 5 2 \N \N 100 \N \N f f 0 \N 1557288406 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11220 2023-10-13 17:30:40.896 2022-05-31 04:39:25.946 RodneyTerrellMV8 \N \N \N 194575498 5 2 \N \N 100 \N \N f f 0 \N 1554524813 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11314 2021-12-12 10:40:58 2023-08-24 02:05:54.498 MargaretEspinoza3UF \N \N \N 244696477 5 2 \N \N 100 \N \N f f 0 \N 1754282557 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13763 2023-03-05 15:30:15.013 2023-01-06 10:11:49.609 DeanDeanPJF \N \N \N 189116956 5 2 \N \N 100 \N \N f f 0 \N 1042583865 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14037 2022-07-04 11:00:21.407 2023-07-03 22:48:35.582 LouisCrawfordXSG \N \N \N 115231673 5 2 \N \N 100 \N \N f f 0 \N 1885605719 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14271 2023-10-01 04:31:49.381 2022-05-18 14:11:16.709 VickieDiazC6D \N \N \N 131781337 5 2 \N \N 100 \N \N f f 0 \N 2225910754 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15762 2022-03-14 22:49:52.868 2023-04-18 08:31:51.685 BreannaHaydenQ9P \N \N \N 160740586 5 2 \N \N 100 \N \N f f 0 \N 2487999742 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16214 2022-04-08 06:01:59.457 2021-11-08 23:55:54.129 KurtHarrison88R \N \N \N 210573268 5 2 \N \N 100 \N \N f f 0 \N 1282693475 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12821 2022-01-26 16:23:37.333 2024-02-14 02:03:30.391 DrewMilesLED \N \N \N 76593785 5 2 \N \N 100 \N \N f f 0 \N 235765496 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16212 2023-05-11 12:24:45.257 2022-03-20 05:41:35.558 MelindaRamosENN \N \N \N 99070245 5 2 \N \N 100 \N \N f f 0 \N 766923429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18743 2022-02-12 14:20:39.068 2024-01-09 22:51:02.192 AndresPeckBR4 \N \N \N 106224442 5 2 \N \N 100 \N \N f f 0 \N 1439436865 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20912 2021-12-04 00:40:19.712 2022-05-01 00:15:18.672 SelenaFranklinV8C \N \N \N 188983001 5 2 \N \N 100 \N \N f f 0 \N 112697402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9529 2023-06-11 13:41:22.451 2022-07-03 16:22:25.432 CarlosHayes0NY \N \N \N 88691582 5 2 \N \N 100 \N \N f f 0 \N 1373397836 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17106 2022-03-27 15:28:54.157 2022-08-13 01:25:01.651 KerriAcostaKL5 \N \N \N 120020953 5 2 \N \N 100 \N \N f f 0 \N 662391987 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1047 2022-09-10 17:49:50.732 2023-07-02 17:13:20.937 PattyHansonZHY \N \N \N 240255678 5 2 \N \N 100 \N \N f f 0 \N 277734109 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 925 2022-11-26 13:18:13.259 2022-12-07 03:28:56.907 SydneyCarpenterL51 \N \N \N 123706187 5 2 \N \N 100 \N \N f f 0 \N 2236764955 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2952 2022-06-20 15:35:37.255 2023-04-17 05:41:33.043 MeaganBenderPFI \N \N \N 49908044 5 2 \N \N 100 \N \N f f 0 \N 2213513219 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18557 2021-10-11 22:36:55.195 2022-02-05 13:07:58.585 FredHerman76P \N \N \N 119092101 5 2 \N \N 100 \N \N f f 0 \N 1421527393 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19524 2022-12-20 09:08:47.862 2022-12-08 10:31:58.911 BettyLoganJ5G \N \N \N 77942294 5 2 \N \N 100 \N \N f f 0 \N 2439971939 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12483 2023-02-03 00:31:42.427 2022-12-10 22:50:06.781 AllenGates82F \N \N \N 77141854 5 2 \N \N 100 \N \N f f 0 \N 1945909449 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1471 2022-06-09 13:56:26.265 2022-06-21 07:00:07.871 PamelaCookeMT5 \N \N \N 143809982 5 2 \N \N 100 \N \N f f 0 \N 2434918024 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1745 2024-02-02 22:35:13.542 2021-12-15 19:00:24.846 RussellHayden2TG \N \N \N 241451657 5 2 \N \N 100 \N \N f f 0 \N 126376879 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8945 2022-10-28 07:13:12.232 2023-05-19 23:00:05.283 AlfredHaasGBA \N \N \N 7696477 5 2 \N \N 100 \N \N f f 0 \N 829330528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19417 2022-09-26 00:24:03.069 2022-08-05 13:49:25.941 JeffShermanPEY \N \N \N 25618803 5 2 \N \N 100 \N \N f f 0 \N 924134059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4570 2023-05-20 04:29:50.333 2023-05-11 23:20:48.905 MistyYoderLRB \N \N \N 68432756 5 2 \N \N 100 \N \N f f 0 \N 1462202936 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14260 2022-04-25 12:17:42.723 2023-03-31 09:01:43.944 XavierKimLA7 \N \N \N 140439144 5 2 \N \N 100 \N \N f f 0 \N 80615736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16406 2022-12-03 01:52:01.636 2021-11-05 19:15:31.993 MelissaWilkersonFPB \N \N \N 158058132 5 2 \N \N 100 \N \N f f 0 \N 1094488089 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5757 2022-02-25 07:18:41.155 2023-09-17 00:27:59.003 ChristineHensleyFSQ \N \N \N 109895432 5 2 \N \N 100 \N \N f f 0 \N 284486752 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11091 2021-12-06 23:58:02.219 2023-06-19 17:17:24.638 DeannaChavezOSD \N \N \N 220605668 5 2 \N \N 100 \N \N f f 0 \N 2042183939 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12291 2023-02-07 13:15:46.794 2023-11-09 14:51:29.262 ChrisChangCDY \N \N \N 242090665 5 2 \N \N 100 \N \N f f 0 \N 934962113 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13575 2021-11-15 13:43:42.285 2023-01-24 10:16:27.689 KimberlyMcclureWY3 \N \N \N 42887125 5 2 \N \N 100 \N \N f f 0 \N 1595076088 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16594 2023-12-04 11:13:16.627 2021-10-25 16:47:56.199 JimMcdonaldN4W \N \N \N 33081386 5 2 \N \N 100 \N \N f f 0 \N 2100825833 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19459 2022-03-15 05:00:56.978 2021-12-25 13:30:29.49 TammieCarlsonE2Z \N \N \N 41244278 5 2 \N \N 100 \N \N f f 0 \N 337958976 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19446 2024-01-03 15:52:36.448 2021-11-07 05:39:12.298 NicholeKochJJA \N \N \N 58100720 5 2 \N \N 100 \N \N f f 0 \N 2316305008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8796 2023-05-20 08:47:54.726 2022-05-31 19:56:10.363 BarbaraCruzGI5 \N \N \N 58645017 5 2 \N \N 100 \N \N f f 0 \N 2032042313 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1145 2023-09-25 02:54:20.688 2023-01-21 04:31:00.213 TinaCarpenterWNO \N \N \N 214421045 5 2 \N \N 100 \N \N f f 0 \N 1064991166 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 658 2022-12-19 01:49:02.832 2023-06-25 05:43:28.849 JesusWolfePF4 \N \N \N 183023132 5 2 \N \N 100 \N \N f f 0 \N 2338401893 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19759 2022-08-13 03:19:21.651 2022-08-11 02:44:07.558 AlexisKhanKTF \N \N \N 77770879 5 2 \N \N 100 \N \N f f 0 \N 1355755849 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20979 2022-09-16 20:47:25.085 2024-01-04 02:47:12.683 ShawnHarmonCLC \N \N \N 181219222 5 2 \N \N 100 \N \N f f 0 \N 2100596990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1286 2024-02-03 10:57:11.754 2023-04-15 19:22:03.663 FranciscoChangCCM \N \N \N 136160883 5 2 \N \N 100 \N \N f f 0 \N 2161193524 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2514 2022-06-13 04:35:30.712 2023-11-05 04:57:48.955 BeverlyHicks5ND \N \N \N 11937188 5 2 \N \N 100 \N \N f f 0 \N 1299671808 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20102 2022-01-15 19:17:11.702 2022-01-14 20:12:17.899 ClintonMillsQRC \N \N \N 120288258 5 2 \N \N 100 \N \N f f 0 \N 1225664436 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 713 2024-02-07 01:13:05.879 2021-10-28 16:02:55.903 RayPageQD6 \N \N \N 226837133 5 2 \N \N 100 \N \N f f 0 \N 464161534 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20439 2022-03-25 03:40:41.513 2022-06-30 15:02:48.838 LarryMayW9L \N \N \N 43685165 5 2 \N \N 100 \N \N f f 0 \N 1027451535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1738 2021-10-02 07:46:26.715 2022-10-07 21:16:51.417 LeonSimmonsRQK \N \N \N 174792647 5 2 \N \N 100 \N \N f f 0 \N 802955568 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13177 2023-05-08 15:22:36.529 2023-10-21 16:20:55.578 JerryLloydF4I \N \N \N 144377478 5 2 \N \N 100 \N \N f f 0 \N 994387675 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6594 2022-04-02 06:02:13.934 2021-11-20 19:21:22.262 RobertoSextonGOV \N \N \N 92358012 5 2 \N \N 100 \N \N f f 0 \N 509095507 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19569 2023-05-06 15:31:50.976 2023-06-10 03:44:28.83 AustinDunnQN2 \N \N \N 237428735 5 2 \N \N 100 \N \N f f 0 \N 1405810720 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19292 2022-03-04 18:47:46.101 2023-12-15 04:55:35.449 EugeneRollins9XP \N \N \N 238499253 5 2 \N \N 100 \N \N f f 0 \N 898031218 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14195 2021-11-04 05:06:15.7 2023-11-30 09:14:41.661 LuisLewis4IN \N \N \N 207675579 5 2 \N \N 100 \N \N f f 0 \N 1060283917 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7418 2024-02-07 12:22:02.274 2022-06-27 12:12:16.995 ShelbyAyalaPIV \N \N \N 3180772 5 2 \N \N 100 \N \N f f 0 \N 107198807 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 715 2023-03-18 17:42:41.988 2022-11-10 06:05:30.229 KathyShepherdG7N \N \N \N 187599796 5 2 \N \N 100 \N \N f f 0 \N 1652172774 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 762 2021-11-26 07:52:45.356 2024-01-08 17:28:08.829 BlakePonce1L7 \N \N \N 186559031 5 2 \N \N 100 \N \N f f 0 \N 63251516 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 776 2023-06-29 11:17:58.921 2023-02-10 15:52:04.804 TaraDuarte8QN \N \N \N 111693845 5 2 \N \N 100 \N \N f f 0 \N 1660858922 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 827 2022-03-07 11:43:13.011 2022-01-15 05:44:54.544 GabriellaCalhounIGM \N \N \N 51511856 5 2 \N \N 100 \N \N f f 0 \N 722889425 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1244 2023-06-30 04:12:27.468 2023-01-09 16:06:26.946 SheriTerryBQ7 \N \N \N 78463716 5 2 \N \N 100 \N \N f f 0 \N 2136458994 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1319 2022-10-24 21:41:05.141 2023-08-22 09:58:56.229 ValerieCrawfordOXV \N \N \N 127784686 5 2 \N \N 100 \N \N f f 0 \N 2121171215 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1618 2022-03-06 08:14:38.834 2023-11-27 22:37:44.672 DannyWhitakerAS2 \N \N \N 144963294 5 2 \N \N 100 \N \N f f 0 \N 379856015 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1652 2023-12-26 06:38:24.462 2024-01-16 12:52:44.104 GreggFloresJVK \N \N \N 146426325 5 2 \N \N 100 \N \N f f 0 \N 367921274 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1718 2022-06-13 20:03:08.641 2021-12-16 21:25:47.629 LaurieDudleyDNM \N \N \N 89501359 5 2 \N \N 100 \N \N f f 0 \N 163455210 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1729 2022-02-15 00:05:06.713 2023-10-15 16:07:05.893 KaitlynVelezO85 \N \N \N 110989566 5 2 \N \N 100 \N \N f f 0 \N 1116315108 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1785 2023-03-10 20:44:08.602 2022-10-10 19:06:10.488 KerriBarberRL2 \N \N \N 10827816 5 2 \N \N 100 \N \N f f 0 \N 2112819866 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1800 2023-05-04 00:14:02.78 2023-05-24 10:13:22.485 DevonGutierrezYRS \N \N \N 38434992 5 2 \N \N 100 \N \N f f 0 \N 443472863 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1801 2024-01-04 05:57:34.664 2022-11-06 02:13:30.441 ArthurNavarroX10 \N \N \N 222968920 5 2 \N \N 100 \N \N f f 0 \N 2253275146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2016 2022-07-17 21:38:02.554 2023-05-17 03:59:07.662 KeithMcconnellI7W \N \N \N 83156542 5 2 \N \N 100 \N \N f f 0 \N 462603549 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2022 2023-01-17 04:58:58.181 2022-03-11 17:08:06.373 JasmineDudleyIOQ \N \N \N 202672851 5 2 \N \N 100 \N \N f f 0 \N 1651540134 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2322 2023-01-31 02:07:31.427 2023-01-12 14:28:02.219 BeckyMarks6BC \N \N \N 181830688 5 2 \N \N 100 \N \N f f 0 \N 958910080 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2326 2022-04-04 11:16:24.432 2022-03-31 23:50:23.695 StaceyGuzmanEWY \N \N \N 115713611 5 2 \N \N 100 \N \N f f 0 \N 152485548 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3745 2022-09-26 14:28:03.598 2023-01-25 12:22:22.015 PhillipDaySVG \N \N \N 182932949 5 2 \N \N 100 \N \N f f 0 \N 1166878296 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4118 2023-06-09 14:48:29.222 2022-04-11 21:01:07.18 HenryDuarteM5D \N \N \N 227386540 5 2 \N \N 100 \N \N f f 0 \N 1718879915 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4313 2023-03-02 04:20:55.772 2023-04-23 10:57:05.012 ChelseyWongPX0 \N \N \N 15398001 5 2 \N \N 100 \N \N f f 0 \N 2371571226 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4314 2022-04-06 17:06:46.88 2022-06-10 23:06:24.044 StuartMannKDJ \N \N \N 12159958 5 2 \N \N 100 \N \N f f 0 \N 1287422908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5129 2022-07-15 03:18:25.489 2023-05-28 19:13:36.204 KaitlynWilsonWBO \N \N \N 213761704 5 2 \N \N 100 \N \N f f 0 \N 310026863 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5195 2024-01-11 16:20:34.335 2023-01-22 20:25:26.619 NicolasGoodX94 \N \N \N 203179330 5 2 \N \N 100 \N \N f f 0 \N 2119709097 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5293 2021-11-08 10:04:20.012 2022-08-28 09:27:10.016 BaileyPetersenUL8 \N \N \N 46885164 5 2 \N \N 100 \N \N f f 0 \N 1722168840 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5306 2022-11-17 22:20:39.821 2024-01-05 00:46:40.557 AlfredMacdonald8E1 \N \N \N 132450276 5 2 \N \N 100 \N \N f f 0 \N 1200274090 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5308 2023-03-20 04:52:29.797 2023-09-13 23:33:44.64 MiaLittleWUC \N \N \N 173624902 5 2 \N \N 100 \N \N f f 0 \N 435673143 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5500 2022-11-26 19:22:46.888 2023-11-24 02:41:38.371 KathyPotter779 \N \N \N 125077980 5 2 \N \N 100 \N \N f f 0 \N 870701382 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5519 2023-07-18 01:11:44.444 2022-11-25 14:12:37.918 YolandaShepherd261 \N \N \N 115487386 5 2 \N \N 100 \N \N f f 0 \N 1317041997 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5646 2023-08-04 00:16:53.294 2023-04-10 14:56:28.021 KathyLandry4LQ \N \N \N 37231792 5 2 \N \N 100 \N \N f f 0 \N 326579759 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6360 2023-10-30 09:20:38.065 2023-10-12 07:22:31.429 GeneBrayX5I \N \N \N 220356975 5 2 \N \N 100 \N \N f f 0 \N 1439633699 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6526 2022-09-24 03:01:17.638 2022-01-27 00:24:45.837 ReginaKeller778 \N \N \N 96408100 5 2 \N \N 100 \N \N f f 0 \N 1564135388 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7097 2023-05-04 17:17:47.898 2023-08-13 11:10:30.575 ChaseBurtonEC3 \N \N \N 64292193 5 2 \N \N 100 \N \N f f 0 \N 129278691 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7185 2022-03-10 20:29:06.489 2023-11-01 03:21:01.374 JayPrattSAN \N \N \N 108619720 5 2 \N \N 100 \N \N f f 0 \N 2225751116 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7654 2022-05-23 01:19:21.914 2022-06-04 21:47:48.414 GrantFreyWBZ \N \N \N 31422471 5 2 \N \N 100 \N \N f f 0 \N 1141742790 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7668 2021-11-25 17:24:09.332 2022-10-02 18:16:01.98 JamieFrancisHYR \N \N \N 167239371 5 2 \N \N 100 \N \N f f 0 \N 398896989 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7673 2024-01-20 00:29:17.849 2022-12-11 02:55:46.865 LauraOrtegaJV9 \N \N \N 16785089 5 2 \N \N 100 \N \N f f 0 \N 1904976941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7760 2023-10-29 21:23:02.616 2023-09-16 10:21:00.039 EdwardDurhamC5P \N \N \N 185674532 5 2 \N \N 100 \N \N f f 0 \N 1580080293 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7809 2022-05-04 18:18:16.256 2024-01-17 22:53:27.232 ShawnZamoraC14 \N \N \N 115622359 5 2 \N \N 100 \N \N f f 0 \N 539697672 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7877 2021-11-14 11:14:54.924 2022-05-15 09:34:12.51 CaitlynTerryJX8 \N \N \N 17348955 5 2 \N \N 100 \N \N f f 0 \N 1248756317 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8242 2023-02-08 17:58:44.388 2022-06-27 07:22:53.497 DerrickArellanoMX6 \N \N \N 116984888 5 2 \N \N 100 \N \N f f 0 \N 1194504329 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8472 2021-12-31 08:22:08.555 2023-02-02 03:23:31.358 CoryMeza5RJ \N \N \N 185213101 5 2 \N \N 100 \N \N f f 0 \N 2143998640 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9200 2022-11-27 02:22:59.905 2023-01-28 09:19:13.686 AlexisMccullough0S2 \N \N \N 86597813 5 2 \N \N 100 \N \N f f 0 \N 1415804155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9307 2023-09-05 03:04:54.243 2021-12-06 17:51:08.38 BridgetBeltranG1B \N \N \N 116927693 5 2 \N \N 100 \N \N f f 0 \N 814645774 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9552 2023-07-15 08:53:58.822 2022-09-03 09:51:59.835 FrancesHuber8WV \N \N \N 236230753 5 2 \N \N 100 \N \N f f 0 \N 2308990233 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9843 2022-06-24 10:12:10.81 2023-06-26 17:00:21.093 CathyRoberts5PU \N \N \N 212983910 5 2 \N \N 100 \N \N f f 0 \N 2385733330 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9863 2022-04-16 08:19:53.562 2022-07-24 15:47:02.279 DouglasMonroeWDG \N \N \N 6477731 5 2 \N \N 100 \N \N f f 0 \N 2279508348 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9921 2021-12-23 21:08:22.851 2023-02-22 18:05:22.189 TracieRamosZQW \N \N \N 179582376 5 2 \N \N 100 \N \N f f 0 \N 2437864454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10096 2022-10-23 07:44:28.183 2024-02-19 16:25:23.273 BryceGillY2L \N \N \N 34016602 5 2 \N \N 100 \N \N f f 0 \N 1883446865 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10490 2022-02-21 16:43:41.129 2022-09-19 03:23:51.23 CristianEaton0UD \N \N \N 81889126 5 2 \N \N 100 \N \N f f 0 \N 1295081997 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10690 2022-07-28 02:45:14.262 2023-08-18 12:51:12.932 CristinaAlvaradoE8B \N \N \N 214333629 5 2 \N \N 100 \N \N f f 0 \N 2158044316 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10818 2022-05-26 01:45:50.38 2023-02-28 11:50:42.711 MackenzieGutierrezYBC \N \N \N 179654505 5 2 \N \N 100 \N \N f f 0 \N 2406461601 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11144 2023-01-22 05:57:08.414 2022-05-26 18:22:11.361 ShannonRichardsonGPI \N \N \N 199283970 5 2 \N \N 100 \N \N f f 0 \N 1515430897 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11491 2023-12-28 08:37:39.195 2023-04-29 10:34:45.99 JamieRowe6TR \N \N \N 68900039 5 2 \N \N 100 \N \N f f 0 \N 2281130786 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11609 2024-01-02 14:56:12.949 2022-05-03 18:47:45.803 LawrenceValentineB6S \N \N \N 212061620 5 2 \N \N 100 \N \N f f 0 \N 985131465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 632 2023-12-27 11:18:08.932 2022-02-24 04:19:27.272 JonDelgadoJOM \N \N \N 246366083 5 2 \N \N 100 \N \N f f 0 \N 2321901641 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 633 2021-10-04 05:19:46.393 2022-03-20 19:39:03.73 LeonBallardC0E \N \N \N 119243438 5 2 \N \N 100 \N \N f f 0 \N 2024155733 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 634 2022-02-16 16:06:01.048 2021-11-12 21:59:31.09 AntonioMayUXX \N \N \N 149112619 5 2 \N \N 100 \N \N f f 0 \N 495059037 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 635 2023-11-19 09:07:42.819 2022-12-02 16:19:48.699 TrevorWyatt08X \N \N \N 228236228 5 2 \N \N 100 \N \N f f 0 \N 813205203 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 636 2022-12-09 22:39:10.038 2021-11-12 23:28:38.172 ToddPace5I8 \N \N \N 56607237 5 2 \N \N 100 \N \N f f 0 \N 1569693021 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 640 2023-08-02 18:12:59.281 2023-12-13 04:22:25.915 ChadSullivan3WZ \N \N \N 227880727 5 2 \N \N 100 \N \N f f 0 \N 1023136887 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 642 2022-05-11 11:25:05.273 2022-11-06 13:55:13.839 StephanieNavarroULU \N \N \N 117708453 5 2 \N \N 100 \N \N f f 0 \N 348692059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 644 2022-12-15 16:15:15.52 2022-02-07 08:15:09.84 ZoeArroyoPD4 \N \N \N 13735958 5 2 \N \N 100 \N \N f f 0 \N 2482007328 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 647 2023-03-29 21:38:16.342 2022-08-09 15:18:51.751 JuliaCastroV0H \N \N \N 53496028 5 2 \N \N 100 \N \N f f 0 \N 50991990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 656 2022-08-12 13:40:03.989 2022-04-17 13:15:03.422 JacobMckeeW00 \N \N \N 216880809 5 2 \N \N 100 \N \N f f 0 \N 1230053280 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 657 2022-12-25 09:08:49.642 2022-09-26 19:33:47.654 SelenaHodgesC4M \N \N \N 69760801 5 2 \N \N 100 \N \N f f 0 \N 1467482963 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 659 2022-10-28 09:25:55.16 2024-01-12 04:38:01.66 ScottOdomEBX \N \N \N 6418519 5 2 \N \N 100 \N \N f f 0 \N 198408858 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 663 2022-12-07 22:38:06.474 2021-11-09 19:54:42.032 DarleneBradfordMB2 \N \N \N 50271310 5 2 \N \N 100 \N \N f f 0 \N 2235102730 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 664 2022-09-07 00:02:54.749 2023-01-08 17:57:42.756 BelindaDouglasRL6 \N \N \N 39617691 5 2 \N \N 100 \N \N f f 0 \N 1612351998 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 666 2023-03-14 15:00:43.644 2022-08-10 19:18:49.029 LarryHoldenOYZ \N \N \N 185350314 5 2 \N \N 100 \N \N f f 0 \N 895738502 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 667 2022-08-11 14:02:11.391 2022-01-11 02:02:04.004 BruceMontesGYC \N \N \N 82748192 5 2 \N \N 100 \N \N f f 0 \N 1116060347 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 672 2022-03-09 14:28:03.607 2024-02-10 20:40:00.16 CassieDouglasWFQ \N \N \N 236134539 5 2 \N \N 100 \N \N f f 0 \N 820931251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 674 2023-06-14 20:28:47.92 2021-10-14 10:26:41.792 JeremiahVillanuevaTRU \N \N \N 209235879 5 2 \N \N 100 \N \N f f 0 \N 1424592096 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 675 2021-11-27 14:39:22.368 2022-02-23 12:37:02.835 GracePetersMKM \N \N \N 167480304 5 2 \N \N 100 \N \N f f 0 \N 336078123 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 676 2023-11-03 02:24:57.578 2023-11-08 18:07:02.371 JosephObrien77L \N \N \N 183504076 5 2 \N \N 100 \N \N f f 0 \N 384898202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 680 2022-10-20 04:41:44.882 2022-06-26 17:36:51.066 RoyBartonB46 \N \N \N 108752219 5 2 \N \N 100 \N \N f f 0 \N 1392269448 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 681 2022-01-24 08:32:25.288 2023-04-03 09:30:59.612 CristianBeasleyR57 \N \N \N 215599952 5 2 \N \N 100 \N \N f f 0 \N 1873555764 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 683 2022-09-21 06:34:49.32 2023-11-24 21:35:18.16 NeilReynoldsG4M \N \N \N 42114067 5 2 \N \N 100 \N \N f f 0 \N 1148568302 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 687 2024-02-12 19:36:53.237 2022-02-06 16:17:43.882 OliviaBurton3L3 \N \N \N 107012248 5 2 \N \N 100 \N \N f f 0 \N 1869777843 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 691 2023-01-09 06:18:25.267 2023-09-01 03:29:24.932 KristinHuertaEJ3 \N \N \N 185089305 5 2 \N \N 100 \N \N f f 0 \N 1593556999 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 692 2024-01-09 21:07:25.104 2023-12-13 18:40:30.95 RonaldFaulknerR1Z \N \N \N 132200898 5 2 \N \N 100 \N \N f f 0 \N 2216256511 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 696 2022-01-24 22:01:55.155 2023-05-02 23:21:16.638 OscarHardinP0I \N \N \N 240259559 5 2 \N \N 100 \N \N f f 0 \N 2297256372 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 700 2023-04-17 06:33:06.573 2023-06-17 18:52:55.341 DavePerezV2Y \N \N \N 174764727 5 2 \N \N 100 \N \N f f 0 \N 2203715879 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 704 2022-09-30 17:34:50.513 2022-10-18 17:10:08.138 SylviaMeyer918 \N \N \N 9793970 5 2 \N \N 100 \N \N f f 0 \N 1973574520 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 705 2023-08-06 01:47:09.089 2022-07-08 22:10:07.524 KendraParkM3J \N \N \N 122952280 5 2 \N \N 100 \N \N f f 0 \N 72210333 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 708 2021-10-31 20:13:50.812 2023-12-31 10:48:03.389 ErikaStephenson3MY \N \N \N 238518703 5 2 \N \N 100 \N \N f f 0 \N 22802903 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 714 2023-03-18 08:58:27.974 2023-08-17 06:44:59.161 DwayneDeckerDBS \N \N \N 90862412 5 2 \N \N 100 \N \N f f 0 \N 1847626418 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 721 2022-06-27 12:47:14.597 2023-03-01 14:31:31.384 JoePetersen42S \N \N \N 76630434 5 2 \N \N 100 \N \N f f 0 \N 561256115 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 836 2022-04-06 06:42:28.536 2023-10-16 00:04:22.921 KatrinaSantanaJIQ \N \N \N 173438156 5 2 \N \N 100 \N \N f f 0 \N 1609336145 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 899 2022-01-20 08:45:52.309 2023-09-15 18:54:02.334 AnthonyFranklin6PD \N \N \N 56675388 5 2 \N \N 100 \N \N f f 0 \N 544754881 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1114 2021-10-27 01:05:33.842 2023-07-23 20:58:38.979 SoniaSimmonsY03 \N \N \N 83027975 5 2 \N \N 100 \N \N f f 0 \N 2217316431 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1173 2022-12-10 00:33:32.529 2022-07-24 16:08:46.65 YolandaMejiaFR2 \N \N \N 20500049 5 2 \N \N 100 \N \N f f 0 \N 2275180120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1316 2022-11-13 05:00:38.484 2021-10-07 14:56:24.206 MaureenRitterH6O \N \N \N 220620913 5 2 \N \N 100 \N \N f f 0 \N 2138807285 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1320 2023-03-28 19:56:35.319 2022-04-30 08:08:27.676 DarylPetersenUFX \N \N \N 153649203 5 2 \N \N 100 \N \N f f 0 \N 2181201852 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1389 2023-03-16 08:02:17.055 2022-03-21 22:31:42.559 FranklinRios5DJ \N \N \N 230589272 5 2 \N \N 100 \N \N f f 0 \N 1716209321 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1401 2022-12-14 09:25:24.497 2021-12-25 20:02:34.563 GarrettSchultz5HZ \N \N \N 233848798 5 2 \N \N 100 \N \N f f 0 \N 1383823043 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1428 2023-04-10 19:00:40.696 2023-05-29 05:12:07.201 EricDuke0PY \N \N \N 186595492 5 2 \N \N 100 \N \N f f 0 \N 2350840747 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1429 2021-10-19 13:03:15.823 2022-01-02 04:34:06.882 AbigailHarmon2IF \N \N \N 129079209 5 2 \N \N 100 \N \N f f 0 \N 987914561 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1493 2022-10-17 08:07:00.742 2022-05-29 09:52:20.036 AngelChang78G \N \N \N 174976858 5 2 \N \N 100 \N \N f f 0 \N 974204682 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1567 2023-01-04 08:19:17.193 2022-07-30 12:04:04.578 JennaSchaeferJOQ \N \N \N 74085338 5 2 \N \N 100 \N \N f f 0 \N 1142675447 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1596 2023-03-17 02:32:48.916 2022-04-01 13:39:48.254 BrandiOlsonOC0 \N \N \N 33782338 5 2 \N \N 100 \N \N f f 0 \N 1115101217 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1814 2022-03-17 15:30:23.36 2022-07-12 13:39:22.375 EmmaCervantes8L7 \N \N \N 189667601 5 2 \N \N 100 \N \N f f 0 \N 1504693769 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11423 2022-04-14 20:11:10.841 2023-06-22 20:48:15.673 TerryElliott7GG \N \N \N 174084447 5 2 \N \N 100 \N \N f f 0 \N 948728419 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1632 2023-06-24 09:06:17.626 2022-06-12 12:31:37.152 DevinSantanaM8J \N \N \N 36787440 5 2 \N \N 100 \N \N f f 0 \N 34964377 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1673 2021-11-20 10:08:58.508 2023-03-13 17:45:18.459 PeterPonceH0O \N \N \N 12361982 5 2 \N \N 100 \N \N f f 0 \N 2106992004 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1692 2023-07-04 15:27:30.925 2023-11-10 19:27:34.571 SheriPotter4SG \N \N \N 112607469 5 2 \N \N 100 \N \N f f 0 \N 1289981547 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2010 2021-11-22 18:17:55.185 2023-08-11 07:43:56.136 BryceKeith778 \N \N \N 101013695 5 2 \N \N 100 \N \N f f 0 \N 1541915899 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2013 2022-06-30 04:14:18.977 2021-12-01 08:57:04.812 AnthonyRochaH13 \N \N \N 30622183 5 2 \N \N 100 \N \N f f 0 \N 2340961822 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2098 2021-12-01 05:04:22.185 2023-09-07 13:27:11.556 JaredCoffey2MV \N \N \N 102927491 5 2 \N \N 100 \N \N f f 0 \N 2257045846 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2335 2023-09-19 06:25:05.206 2022-09-19 05:19:22.664 DouglasLiuCEZ \N \N \N 3498508 5 2 \N \N 100 \N \N f f 0 \N 282546886 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3400 2022-12-14 00:58:57.514 2021-11-02 08:33:42.828 FeliciaMccann5NP \N \N \N 105000886 5 2 \N \N 100 \N \N f f 0 \N 940599520 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4989 2023-08-06 21:22:51.888 2022-06-26 09:35:32.669 SueLynchW5F \N \N \N 3118789 5 2 \N \N 100 \N \N f f 0 \N 1795452332 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5978 2023-06-09 15:22:59.055 2023-05-17 09:34:09.237 DeniseWatersEMH \N \N \N 93706639 5 2 \N \N 100 \N \N f f 0 \N 1133919406 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7674 2023-01-03 15:06:37.72 2023-01-18 20:39:06.843 AlvinBentonUJ6 \N \N \N 171332509 5 2 \N \N 100 \N \N f f 0 \N 753302463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9166 2022-04-18 19:05:38.946 2021-12-02 14:13:54.965 LeeHerringQI1 \N \N \N 121970505 5 2 \N \N 100 \N \N f f 0 \N 1195000930 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9169 2023-08-20 21:23:33.197 2022-11-22 04:21:13.514 GuyHutchinsonFY2 \N \N \N 184691081 5 2 \N \N 100 \N \N f f 0 \N 2360467155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9494 2022-10-20 14:58:30.682 2022-09-27 21:11:02.242 SandraGoodmanRLA \N \N \N 148504250 5 2 \N \N 100 \N \N f f 0 \N 692702286 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9496 2023-05-25 07:23:26.443 2023-11-18 21:55:51.266 CathyMackZV2 \N \N \N 6775837 5 2 \N \N 100 \N \N f f 0 \N 2373403408 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9695 2023-12-10 08:00:22.013 2022-05-09 02:04:59.025 ClaytonKellerD8O \N \N \N 200478137 5 2 \N \N 100 \N \N f f 0 \N 2233479962 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9705 2022-10-24 00:47:42.357 2024-01-04 01:01:33.169 NicholeBennettN45 \N \N \N 10993981 5 2 \N \N 100 \N \N f f 0 \N 1020261684 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9969 2022-11-26 03:53:20.261 2023-04-07 17:00:37.49 AlexanderBraunK0J \N \N \N 108238677 5 2 \N \N 100 \N \N f f 0 \N 1656503617 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9992 2023-11-09 03:45:13.764 2023-01-25 06:09:46.283 DonFriedmanWD4 \N \N \N 153114221 5 2 \N \N 100 \N \N f f 0 \N 1594397494 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10013 2022-12-25 09:57:48.332 2023-12-10 11:48:33.741 HannahHallCYC \N \N \N 46622696 5 2 \N \N 100 \N \N f f 0 \N 719152182 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10016 2022-08-15 11:58:48.752 2023-08-12 23:16:23.222 ChrisThomasDON \N \N \N 99106192 5 2 \N \N 100 \N \N f f 0 \N 884924765 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10280 2022-04-27 20:07:44.333 2023-12-29 13:07:25.525 JessicaAlvarado36I \N \N \N 40878040 5 2 \N \N 100 \N \N f f 0 \N 59268054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10283 2023-08-01 17:48:05.014 2023-05-07 21:11:05.93 DiamondColonMZQ \N \N \N 88037836 5 2 \N \N 100 \N \N f f 0 \N 300327719 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10944 2022-02-10 06:38:05.443 2023-05-10 20:54:13.07 LouisRomeroQD4 \N \N \N 96687025 5 2 \N \N 100 \N \N f f 0 \N 1208502531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11038 2023-04-28 23:42:35.736 2022-07-30 08:16:35.679 TravisChristian31I \N \N \N 180856570 5 2 \N \N 100 \N \N f f 0 \N 1787981824 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11153 2023-07-30 10:45:45.776 2021-10-25 15:28:13.807 AutumnChristensenTWE \N \N \N 115286055 5 2 \N \N 100 \N \N f f 0 \N 1296752280 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11164 2022-07-01 16:31:07.412 2022-05-28 16:48:27.715 PaulaJenkinsG0C \N \N \N 172769523 5 2 \N \N 100 \N \N f f 0 \N 2183633537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14688 2022-12-23 01:11:26.207 2024-01-25 17:27:57.542 BethanyNicholsTDK \N \N \N 126198949 5 2 \N \N 100 \N \N f f 0 \N 580203963 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17162 2023-09-15 16:52:34.573 2022-05-26 00:42:02.413 SoniaTerry310 \N \N \N 80458194 5 2 \N \N 100 \N \N f f 0 \N 2259721062 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1003 2023-11-07 07:49:36.974 2023-09-06 07:33:24.765 ToniNielsenWRI \N \N \N 178309837 5 2 \N \N 100 \N \N f f 0 \N 897379274 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1985 2021-10-24 12:06:17.086 2023-02-27 21:22:01.158 KimCalderonVNI \N \N \N 116870456 5 2 \N \N 100 \N \N f f 0 \N 220069231 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2203 2022-11-03 19:33:30.449 2022-11-14 09:11:02 TamaraConwayLKS \N \N \N 58215774 5 2 \N \N 100 \N \N f f 0 \N 186169948 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2361 2023-02-04 15:15:28.441 2022-02-21 03:09:36.564 NormaHahnGPK \N \N \N 173491446 5 2 \N \N 100 \N \N f f 0 \N 912377571 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2502 2022-06-25 21:56:58.272 2022-12-28 12:24:08.162 WillieRiceUK1 \N \N \N 29009773 5 2 \N \N 100 \N \N f f 0 \N 1098659514 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2757 2023-06-01 08:03:16.787 2023-05-13 09:00:54.413 ShaneLloyd8ON \N \N \N 219045768 5 2 \N \N 100 \N \N f f 0 \N 1371583009 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3377 2022-08-05 14:47:58.323 2022-01-04 10:23:50.094 MadisonTerrellTTQ \N \N \N 45879073 5 2 \N \N 100 \N \N f f 0 \N 1197463367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4538 2022-01-11 12:19:48.376 2022-09-03 16:03:28.242 AlecHolderWMF \N \N \N 169101724 5 2 \N \N 100 \N \N f f 0 \N 2054211144 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16267 2023-04-02 02:01:43.871 2022-07-06 18:55:00.108 AlecAguirreH1Q \N \N \N 52652806 5 2 \N \N 100 \N \N f f 0 \N 1762967454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4692 2023-05-23 08:55:04.085 2023-12-09 09:50:09.62 CarrieClarkOW4 \N \N \N 28224443 5 2 \N \N 100 \N \N f f 0 \N 2449416478 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9026 2023-05-02 00:44:12.995 2022-04-01 03:37:27.88 HarryWiley42B \N \N \N 85649697 5 2 \N \N 100 \N \N f f 0 \N 400149277 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9378 2023-07-31 04:13:54.418 2022-07-07 04:58:38.072 DevinLarsonC1Z \N \N \N 97370797 5 2 \N \N 100 \N \N f f 0 \N 1058179437 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9551 2022-04-18 22:14:40.369 2022-04-29 13:00:31.025 BruceMiddletonL1U \N \N \N 81654539 5 2 \N \N 100 \N \N f f 0 \N 1980191827 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11018 2022-11-06 06:19:24.214 2022-07-02 20:35:52.352 HeidiDanielDS8 \N \N \N 174565906 5 2 \N \N 100 \N \N f f 0 \N 87142168 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11999 2022-12-23 14:00:01.927 2022-11-13 17:55:45.6 KaitlinRomeroFHQ \N \N \N 148632908 5 2 \N \N 100 \N \N f f 0 \N 754675527 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12049 2024-01-21 17:57:31.298 2023-11-09 02:11:14.18 MelissaBenton1QS \N \N \N 143411930 5 2 \N \N 100 \N \N f f 0 \N 206420890 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13143 2023-05-04 00:32:17.11 2023-09-28 00:38:17.047 EmilyMarquezKU0 \N \N \N 123533249 5 2 \N \N 100 \N \N f f 0 \N 1527206100 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13169 2023-12-20 23:10:28.237 2022-05-02 02:35:03.748 SandraOsbornKUQ \N \N \N 156469461 5 2 \N \N 100 \N \N f f 0 \N 1239819805 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13399 2022-08-25 09:27:36.048 2021-11-05 03:14:43.07 JuliaNorton33K \N \N \N 210589130 5 2 \N \N 100 \N \N f f 0 \N 2295115817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13878 2023-05-03 17:55:23.755 2022-03-18 05:41:06.251 JesseHaynesUYL \N \N \N 99462447 5 2 \N \N 100 \N \N f f 0 \N 856016053 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14169 2023-06-25 00:56:17.412 2022-05-07 00:23:18.701 VictorWells57R \N \N \N 82882187 5 2 \N \N 100 \N \N f f 0 \N 1804859540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14357 2021-10-11 02:02:30.964 2023-09-27 23:24:50.503 ManuelCastroTIO \N \N \N 169407288 5 2 \N \N 100 \N \N f f 0 \N 1971096080 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15060 2022-02-13 09:32:29.629 2022-05-14 21:25:25.222 MakaylaZavalaYZJ \N \N \N 123677196 5 2 \N \N 100 \N \N f f 0 \N 878899731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15146 2022-03-28 03:23:07.031 2022-03-23 13:00:19.274 PatriciaMckayT3R \N \N \N 235644427 5 2 \N \N 100 \N \N f f 0 \N 1274198655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15147 2023-10-02 00:09:00.567 2022-10-20 14:37:32.235 RileyLeachJ2H \N \N \N 126908507 5 2 \N \N 100 \N \N f f 0 \N 673461378 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15148 2021-11-22 10:25:58.971 2022-04-29 10:00:12.97 LeslieShermanJIO \N \N \N 242898920 5 2 \N \N 100 \N \N f f 0 \N 765385821 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15239 2022-03-03 13:05:55.609 2022-07-19 10:32:05.063 GeneWattsMY1 \N \N \N 218805385 5 2 \N \N 100 \N \N f f 0 \N 2034831157 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15463 2023-06-27 13:06:08.228 2023-12-08 05:11:54.467 CoryGilesFQN \N \N \N 40081936 5 2 \N \N 100 \N \N f f 0 \N 954858528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15544 2023-05-08 12:07:11.318 2022-08-22 13:37:47.714 PedroHigginsFWH \N \N \N 212042368 5 2 \N \N 100 \N \N f f 0 \N 1205274239 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16347 2022-06-09 11:27:12.143 2021-11-15 18:47:30.123 TimothyRomanNHQ \N \N \N 228282714 5 2 \N \N 100 \N \N f f 0 \N 1403055638 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16348 2022-05-12 07:16:26.469 2023-12-10 00:59:56.797 AudreyCochranX8S \N \N \N 90313662 5 2 \N \N 100 \N \N f f 0 \N 617670548 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16350 2024-01-08 10:03:39.032 2023-09-07 21:21:40.729 DonaldWatkinsY8O \N \N \N 24555217 5 2 \N \N 100 \N \N f f 0 \N 493149213 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16351 2023-05-17 15:15:21.185 2023-04-25 17:55:18.909 AliceCallahanNT1 \N \N \N 113083918 5 2 \N \N 100 \N \N f f 0 \N 66664882 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16353 2023-06-08 07:06:27.511 2024-02-08 00:57:07.048 RebekahOneillDON \N \N \N 177362083 5 2 \N \N 100 \N \N f f 0 \N 2328897525 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1836 2023-03-02 22:04:44.58 2023-07-06 05:39:36.976 MarcusMckenzieW2V \N \N \N 10252067 5 2 \N \N 100 \N \N f f 0 \N 1995800237 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16354 2023-04-21 17:31:04.827 2022-06-20 21:20:01.742 AntonioGravesH54 \N \N \N 174098218 5 2 \N \N 100 \N \N f f 0 \N 2384428507 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16356 2024-01-20 23:05:29.713 2022-11-17 19:01:38.104 KarlLeeLMH \N \N \N 50205793 5 2 \N \N 100 \N \N f f 0 \N 2309159169 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16357 2022-02-22 07:47:26.578 2021-12-16 11:31:41.014 EdgarBarnesPEN \N \N \N 218411407 5 2 \N \N 100 \N \N f f 0 \N 2389555340 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16513 2022-01-03 11:10:53.193 2022-05-13 21:06:31.378 DebbieKnightHOH \N \N \N 57960383 5 2 \N \N 100 \N \N f f 0 \N 2448040760 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16789 2024-02-03 13:59:34.405 2023-01-20 00:05:06.555 PhillipBraun658 \N \N \N 58071877 5 2 \N \N 100 \N \N f f 0 \N 1658577115 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16808 2023-08-05 06:49:08.27 2022-12-14 23:50:49.263 JaneMcmillanDP2 \N \N \N 92522861 5 2 \N \N 100 \N \N f f 0 \N 165155535 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16809 2021-12-18 03:05:02.023 2024-02-02 12:09:10.994 AlanRogersR83 \N \N \N 54475433 5 2 \N \N 100 \N \N f f 0 \N 595689838 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16816 2022-12-27 01:32:34.919 2023-12-14 17:37:24.802 SydneyStarkZ41 \N \N \N 249229177 5 2 \N \N 100 \N \N f f 0 \N 1364137443 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16834 2023-01-20 08:29:23.393 2023-08-23 07:20:50.136 JaneTran0OD \N \N \N 227843865 5 2 \N \N 100 \N \N f f 0 \N 1424728738 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17014 2021-12-13 06:46:49.569 2022-06-22 15:17:20.456 NoahGentryPS4 \N \N \N 67818485 5 2 \N \N 100 \N \N f f 0 \N 614470909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17041 2023-08-19 00:29:11.548 2022-09-30 00:12:37.714 EvanTaylor0CB \N \N \N 160099274 5 2 \N \N 100 \N \N f f 0 \N 406588803 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17183 2022-06-09 12:03:23.666 2021-11-14 16:11:45.212 LorettaPettyQBR \N \N \N 144799841 5 2 \N \N 100 \N \N f f 0 \N 557450566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17184 2024-01-05 18:17:38.059 2023-05-20 18:38:39.984 WhitneyGross7EL \N \N \N 167754624 5 2 \N \N 100 \N \N f f 0 \N 1806186173 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17838 2023-02-19 16:05:07.537 2021-12-19 07:34:06.108 KelliMills6GM \N \N \N 165098390 5 2 \N \N 100 \N \N f f 0 \N 1967791508 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18005 2023-08-21 05:51:50.628 2024-01-10 10:53:32.04 ArthurMitchell732 \N \N \N 27453132 5 2 \N \N 100 \N \N f f 0 \N 1736011019 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18114 2022-04-05 07:06:13.566 2023-08-14 00:25:37.498 GregoryHardy50Z \N \N \N 129140010 5 2 \N \N 100 \N \N f f 0 \N 748681867 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18265 2023-05-21 21:20:39.445 2023-06-26 20:27:20.379 NatashaAshleyW1R \N \N \N 173434190 5 2 \N \N 100 \N \N f f 0 \N 895187016 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18269 2021-10-02 22:28:29.579 2023-05-11 05:17:16.529 SavannahLeachBZ5 \N \N \N 81931183 5 2 \N \N 100 \N \N f f 0 \N 1434607033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18270 2023-02-13 02:52:07.192 2023-04-30 05:32:43.599 DarrenWagnerQLF \N \N \N 24791942 5 2 \N \N 100 \N \N f f 0 \N 1430972261 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18271 2021-12-18 21:56:59.417 2023-11-21 18:50:30.728 BobSloanA0O \N \N \N 190640894 5 2 \N \N 100 \N \N f f 0 \N 1345840161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18274 2023-12-22 09:38:55.722 2023-11-21 09:16:02.375 AustinConway98L \N \N \N 165545590 5 2 \N \N 100 \N \N f f 0 \N 764426299 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18314 2022-12-11 04:49:11.603 2022-07-18 16:44:51.169 JimGlennROP \N \N \N 169811915 5 2 \N \N 100 \N \N f f 0 \N 640011971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18525 2023-05-17 04:04:34.669 2022-10-18 01:54:54.107 KimAllisonUUM \N \N \N 227996837 5 2 \N \N 100 \N \N f f 0 \N 1192926246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18526 2023-01-08 09:02:02.597 2022-10-28 20:30:31.024 AllisonShepardVGX \N \N \N 223985923 5 2 \N \N 100 \N \N f f 0 \N 1971937071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18637 2023-11-02 08:38:28.28 2022-02-23 09:09:59.976 GabriellaCamachoNJ0 \N \N \N 109865699 5 2 \N \N 100 \N \N f f 0 \N 1381861346 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18678 2022-09-11 19:39:00.461 2023-02-25 08:35:38.315 DylanJonesFFA \N \N \N 34116295 5 2 \N \N 100 \N \N f f 0 \N 1087115928 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18772 2023-07-13 08:46:10.44 2023-12-21 00:19:05.856 TaylorHuntBKO \N \N \N 215920691 5 2 \N \N 100 \N \N f f 0 \N 551664603 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19018 2023-01-07 14:26:59.278 2022-07-11 22:00:15.135 LouisCowanW20 \N \N \N 4328214 5 2 \N \N 100 \N \N f f 0 \N 1511020470 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19198 2022-05-15 03:59:19.413 2023-12-24 07:49:36.331 MargaretGrimesSML \N \N \N 162376937 5 2 \N \N 100 \N \N f f 0 \N 890148474 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19333 2023-11-21 13:18:03.669 2022-01-06 04:35:52.364 JonathanCowan67S \N \N \N 217443831 5 2 \N \N 100 \N \N f f 0 \N 1241532396 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19375 2023-12-10 16:52:09.527 2023-05-13 06:22:10.273 VanessaGardner9WU \N \N \N 188898004 5 2 \N \N 100 \N \N f f 0 \N 894870416 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19403 2021-11-09 04:10:09.086 2022-07-11 01:53:12.41 HayleyBryantGI8 \N \N \N 23011628 5 2 \N \N 100 \N \N f f 0 \N 902070822 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19471 2022-03-29 21:19:11.463 2022-12-10 17:40:53.018 HollyGay3KX \N \N \N 213242827 5 2 \N \N 100 \N \N f f 0 \N 2417736265 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19668 2023-07-15 08:04:57.436 2022-08-26 20:43:05.368 JodyNicholson8IX \N \N \N 66405443 5 2 \N \N 100 \N \N f f 0 \N 1829891285 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19888 2023-07-30 04:09:53.326 2021-10-02 04:32:39.299 NoahJonesI7A \N \N \N 6230564 5 2 \N \N 100 \N \N f f 0 \N 1724535756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19930 2022-11-03 12:47:37.079 2023-09-19 02:08:00.235 TravisStarkXU8 \N \N \N 192331584 5 2 \N \N 100 \N \N f f 0 \N 195039463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20245 2023-06-08 19:50:43.968 2022-07-31 00:13:05.745 RayShahN08 \N \N \N 117593183 5 2 \N \N 100 \N \N f f 0 \N 1178623129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20306 2023-04-11 10:44:46.095 2022-11-26 05:22:27.407 ChadSummersHE4 \N \N \N 208102947 5 2 \N \N 100 \N \N f f 0 \N 785486025 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20436 2024-01-20 12:24:05.376 2023-10-13 03:34:18.683 AndreaBrayGMN \N \N \N 7031209 5 2 \N \N 100 \N \N f f 0 \N 99633005 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20490 2023-07-02 19:44:25.131 2022-03-13 21:38:54.951 JeffreyBlairNQV \N \N \N 95743756 5 2 \N \N 100 \N \N f f 0 \N 2343995428 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20500 2023-09-10 11:05:01.785 2021-10-15 18:04:15.896 PeggyMcmillanWHS \N \N \N 216772895 5 2 \N \N 100 \N \N f f 0 \N 518347243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20504 2023-08-08 15:53:34.088 2023-03-24 18:40:55.261 ChristyMossZML \N \N \N 37863881 5 2 \N \N 100 \N \N f f 0 \N 957525228 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20511 2024-01-06 23:38:35.499 2022-04-06 07:18:31.997 DonWebb6NY \N \N \N 41461555 5 2 \N \N 100 \N \N f f 0 \N 422063527 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20525 2024-01-23 19:44:35.38 2023-10-06 03:08:32.03 MelindaBrown2I3 \N \N \N 73008771 5 2 \N \N 100 \N \N f f 0 \N 988129133 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20554 2024-01-28 13:02:58.197 2022-08-27 04:24:04.494 RickyKruegerUIQ \N \N \N 167840407 5 2 \N \N 100 \N \N f f 0 \N 458996789 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20562 2023-07-16 06:16:20.593 2024-02-01 05:00:16.073 EileenDominguez8T8 \N \N \N 89206039 5 2 \N \N 100 \N \N f f 0 \N 1994078048 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20563 2023-02-20 17:19:15.179 2023-09-04 11:18:42.387 JonathanHallHQW \N \N \N 168254896 5 2 \N \N 100 \N \N f f 0 \N 689858596 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20636 2023-03-29 16:17:33.527 2023-04-22 12:35:50.626 MiaTannerTDV \N \N \N 162058006 5 2 \N \N 100 \N \N f f 0 \N 1615459455 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20660 2022-04-09 23:31:47.783 2023-06-15 23:21:58.146 RaymondGillDFE \N \N \N 74772770 5 2 \N \N 100 \N \N f f 0 \N 752802129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20669 2022-10-16 09:35:31.814 2023-08-04 00:12:57.005 TammieMuellerHTB \N \N \N 78763765 5 2 \N \N 100 \N \N f f 0 \N 957310434 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20674 2023-11-24 11:11:55.806 2024-01-16 04:44:00.684 JoeColeEG5 \N \N \N 114247936 5 2 \N \N 100 \N \N f f 0 \N 2133052287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20681 2022-08-28 21:05:58.194 2023-12-31 16:23:23.721 AaronCarrD5J \N \N \N 90459500 5 2 \N \N 100 \N \N f f 0 \N 2108790863 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21492 2023-09-10 07:37:09.298 2023-03-25 03:42:40.497 SherylMeza84G \N \N \N 44084724 5 2 \N \N 100 \N \N f f 0 \N 1546906324 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20715 2022-12-11 03:56:21.752 2022-04-14 22:15:28.477 LorettaMcdonaldGZO \N \N \N 177045778 5 2 \N \N 100 \N \N f f 0 \N 1579197900 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20754 2023-05-20 11:49:12.303 2022-08-13 19:21:08.561 CoreyMcdanielP8G \N \N \N 22386383 5 2 \N \N 100 \N \N f f 0 \N 1639072490 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20778 2022-03-30 09:46:49.543 2022-08-25 16:04:00.832 AndreKochGBB \N \N \N 145865259 5 2 \N \N 100 \N \N f f 0 \N 2495116785 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20802 2021-11-29 03:42:53.922 2023-03-27 15:08:02.657 AndreKempCIW \N \N \N 103846705 5 2 \N \N 100 \N \N f f 0 \N 1198725666 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20826 2023-02-05 12:38:54.108 2021-12-18 09:34:32.269 DorothyMccartyD4R \N \N \N 22726447 5 2 \N \N 100 \N \N f f 0 \N 1689323003 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20897 2021-12-03 08:31:22.77 2023-09-26 21:26:18.913 HaileyHood4S5 \N \N \N 13907402 5 2 \N \N 100 \N \N f f 0 \N 1886705154 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20901 2022-02-14 22:40:00.688 2023-11-10 01:01:50.701 BethanyHickman39O \N \N \N 152874423 5 2 \N \N 100 \N \N f f 0 \N 1303674607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20911 2022-05-15 00:52:54.081 2024-01-25 18:29:16.859 VanessaWrightG7F \N \N \N 215744733 5 2 \N \N 100 \N \N f f 0 \N 2027239698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20922 2023-02-01 14:51:20.622 2022-06-24 20:32:11.708 AntonioMathis6LL \N \N \N 96794760 5 2 \N \N 100 \N \N f f 0 \N 2167939047 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20981 2023-06-18 19:32:15.076 2022-01-05 19:42:57.588 JaneBlanchardWWY \N \N \N 95880795 5 2 \N \N 100 \N \N f f 0 \N 1031791560 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21088 2023-08-10 19:52:04.274 2024-01-05 04:05:41.528 JacquelineRay53R \N \N \N 71524646 5 2 \N \N 100 \N \N f f 0 \N 743699087 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21104 2022-07-14 14:02:27.532 2021-11-24 01:33:34.43 TaraOconnellRYF \N \N \N 228623359 5 2 \N \N 100 \N \N f f 0 \N 188735075 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21116 2022-01-15 07:31:09.87 2022-06-28 02:39:24.265 MarvinParkT1G \N \N \N 89674679 5 2 \N \N 100 \N \N f f 0 \N 2198084257 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21139 2024-02-11 19:39:38.809 2021-11-14 22:48:55.934 VincentPollardGUP \N \N \N 117410887 5 2 \N \N 100 \N \N f f 0 \N 710244627 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21148 2023-10-03 06:24:48.809 2023-11-17 20:15:51.121 DebraCostaB8F \N \N \N 182831756 5 2 \N \N 100 \N \N f f 0 \N 939129906 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21164 2022-04-21 10:02:45.635 2023-12-16 08:30:06.821 DarylMolinaO22 \N \N \N 51557364 5 2 \N \N 100 \N \N f f 0 \N 281926655 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21228 2022-12-18 14:46:10.063 2022-07-12 13:03:32.162 JenniferKiddA4L \N \N \N 41545302 5 2 \N \N 100 \N \N f f 0 \N 2112604482 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21247 2024-01-20 14:15:50.638 2021-11-25 00:17:07.474 DiamondCooley0L8 \N \N \N 12119043 5 2 \N \N 100 \N \N f f 0 \N 2451456332 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21287 2023-11-27 16:24:10.047 2023-10-08 12:20:13.875 TravisGilmore7AY \N \N \N 169171611 5 2 \N \N 100 \N \N f f 0 \N 1366702987 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21338 2023-01-04 08:31:38.586 2022-08-09 14:28:42.144 RickFaulknerONT \N \N \N 238981027 5 2 \N \N 100 \N \N f f 0 \N 2205761804 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21413 2023-11-25 00:32:44.981 2024-02-11 05:46:09.112 ChasePeterson9D0 \N \N \N 13968807 5 2 \N \N 100 \N \N f f 0 \N 1484491027 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21430 2022-01-04 12:35:08.053 2023-01-03 07:21:19.251 BreannaToddQCX \N \N \N 4255497 5 2 \N \N 100 \N \N f f 0 \N 1679764904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21444 2023-08-12 07:30:56.826 2022-06-25 10:12:40.637 LeahTapia9VQ \N \N \N 131105631 5 2 \N \N 100 \N \N f f 0 \N 887654469 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21520 2022-02-28 06:38:38.997 2022-03-27 06:05:54.226 DylanHardy5HI \N \N \N 7743848 5 2 \N \N 100 \N \N f f 0 \N 2460162278 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21539 2022-08-21 16:59:58.594 2023-03-12 08:53:45.912 KatherineMercerD0Y \N \N \N 110799130 5 2 \N \N 100 \N \N f f 0 \N 1372530105 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 886 2023-08-12 20:06:05.422 2023-10-26 21:11:14.047 TimothyDickerson0UM \N \N \N 4297809 5 2 \N \N 100 \N \N f f 0 \N 745721023 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1038 2021-10-06 06:58:03.331 2023-05-24 05:17:26.485 DaleParksN8U \N \N \N 38791591 5 2 \N \N 100 \N \N f f 0 \N 1207413314 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1890 2022-04-04 17:43:33.424 2023-05-26 00:15:11.713 AngelaMcintyre2Q8 \N \N \N 190543589 5 2 \N \N 100 \N \N f f 0 \N 2124866507 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1564 2022-12-10 13:31:36.349 2022-04-18 22:07:39.552 AlisonVillanuevaNZN \N \N \N 172696749 5 2 \N \N 100 \N \N f f 0 \N 1866020429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3392 2022-07-14 03:55:52.588 2021-10-20 20:13:08.846 MicheleVargas8O5 \N \N \N 3207200 5 2 \N \N 100 \N \N f f 0 \N 990112377 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9036 2023-03-11 19:54:25.737 2022-12-15 21:19:44.923 HeatherPachecoWBD \N \N \N 21223996 5 2 \N \N 100 \N \N f f 0 \N 2146938666 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10549 2022-11-09 22:26:14.45 2022-08-02 09:25:06.239 CollinKleinKYF \N \N \N 145302286 5 2 \N \N 100 \N \N f f 0 \N 2311610914 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10979 2023-04-22 22:00:14.443 2023-09-06 10:00:24.467 JasminCarson1DA \N \N \N 212698039 5 2 \N \N 100 \N \N f f 0 \N 1930937029 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11263 2022-06-26 06:24:24.625 2022-08-07 08:21:42.431 MikeChambersQC0 \N \N \N 103814923 5 2 \N \N 100 \N \N f f 0 \N 140064059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11417 2023-07-15 01:20:55.64 2023-08-05 05:34:50.35 NathanArmstrongNSJ \N \N \N 183075027 5 2 \N \N 100 \N \N f f 0 \N 1332619025 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11522 2023-03-29 02:43:18.51 2024-01-07 23:49:06.077 KristiHowardYKV \N \N \N 395743 5 2 \N \N 100 \N \N f f 0 \N 1730151405 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11523 2022-07-22 20:14:37.65 2023-04-04 17:47:45.841 GloriaHaydenT3F \N \N \N 168745737 5 2 \N \N 100 \N \N f f 0 \N 430656500 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12507 2022-11-15 00:48:36.976 2022-04-22 07:10:26.014 JonathanMorrowQZR \N \N \N 211936505 5 2 \N \N 100 \N \N f f 0 \N 751329115 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12736 2023-06-17 05:53:40.526 2022-08-06 05:27:48.544 ShelleyCosta5WV \N \N \N 9250270 5 2 \N \N 100 \N \N f f 0 \N 166801969 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12768 2022-02-06 05:34:32.014 2023-12-22 04:29:20.007 AprilMerrittFXL \N \N \N 139825554 5 2 \N \N 100 \N \N f f 0 \N 1166907488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12921 2023-05-08 18:18:56.534 2022-01-01 22:06:18.266 TracyMcdanielUHQ \N \N \N 152226048 5 2 \N \N 100 \N \N f f 0 \N 314027795 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13198 2023-04-20 17:32:37.994 2021-12-22 03:39:40.246 DebbieSanchezU7N \N \N \N 67756388 5 2 \N \N 100 \N \N f f 0 \N 397732385 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13759 2022-04-15 03:42:17.881 2021-10-11 23:15:22.562 KathyBarry9QX \N \N \N 155856992 5 2 \N \N 100 \N \N f f 0 \N 1000038502 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14225 2022-12-08 22:51:05.311 2023-06-11 19:39:20.438 ParkerGreeneKOS \N \N \N 155444577 5 2 \N \N 100 \N \N f f 0 \N 2056956168 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14295 2022-11-19 10:38:00.982 2021-10-22 02:30:53.671 BrittneyWallaceUD8 \N \N \N 12004529 5 2 \N \N 100 \N \N f f 0 \N 1045552494 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14370 2023-10-01 07:19:55.895 2022-03-25 19:57:14.796 TriciaFuentesPLY \N \N \N 171439550 5 2 \N \N 100 \N \N f f 0 \N 16557384 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14650 2023-09-10 19:20:19.227 2022-09-06 12:49:33.794 LonniePerkinsTSW \N \N \N 212061738 5 2 \N \N 100 \N \N f f 0 \N 1100040008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14990 2023-08-28 10:59:05.74 2023-03-30 10:25:00.021 LindaPriceE6P \N \N \N 129128055 5 2 \N \N 100 \N \N f f 0 \N 2354167736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15408 2024-01-14 05:01:04.116 2021-12-29 16:52:55.234 MichaelaSutton4BO \N \N \N 79615535 5 2 \N \N 100 \N \N f f 0 \N 211670350 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15588 2023-09-15 22:09:04.28 2022-04-04 09:45:18.02 BobWebbOOJ \N \N \N 222616700 5 2 \N \N 100 \N \N f f 0 \N 1716708659 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15624 2022-04-07 04:08:58.63 2023-01-22 11:13:29.901 MarcoAcevedo4KZ \N \N \N 236274782 5 2 \N \N 100 \N \N f f 0 \N 1776256120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15719 2021-10-22 17:57:22.408 2023-03-27 23:54:17.155 KirkButlerPOV \N \N \N 11645567 5 2 \N \N 100 \N \N f f 0 \N 121730515 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15728 2021-11-11 07:44:53.653 2022-10-19 06:31:33.955 BrittanyKentJKN \N \N \N 19827982 5 2 \N \N 100 \N \N f f 0 \N 1415134046 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15843 2021-12-26 23:07:34.751 2022-10-26 10:02:48.98 CollinPopeL1E \N \N \N 25818602 5 2 \N \N 100 \N \N f f 0 \N 1359291579 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15858 2022-07-23 23:50:01.77 2023-03-16 04:22:18.069 LouisMcneilDSD \N \N \N 177759046 5 2 \N \N 100 \N \N f f 0 \N 1637048581 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16126 2023-01-14 16:08:41.404 2023-03-26 05:21:17.856 LatoyaHodgesWTZ \N \N \N 246162093 5 2 \N \N 100 \N \N f f 0 \N 485238456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16230 2023-09-24 23:21:51.758 2023-12-13 03:47:26.762 MckenzieHouston8XH \N \N \N 189254298 5 2 \N \N 100 \N \N f f 0 \N 2459267586 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16276 2021-10-22 09:19:21.706 2022-05-23 21:03:37.258 BiancaStoutL17 \N \N \N 147722019 5 2 \N \N 100 \N \N f f 0 \N 1312691174 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16289 2023-04-28 08:24:11.788 2023-04-09 01:08:38.41 CoryHart82X \N \N \N 178669431 5 2 \N \N 100 \N \N f f 0 \N 1606882116 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16447 2022-04-27 00:10:35.915 2023-12-02 00:14:39.52 KrystalBergerNFZ \N \N \N 168414580 5 2 \N \N 100 \N \N f f 0 \N 1504808744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16543 2022-03-13 15:04:44.318 2022-06-11 02:11:54.338 DawnShepardXJW \N \N \N 74741586 5 2 \N \N 100 \N \N f f 0 \N 1795164793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16638 2022-08-12 22:51:28.082 2022-07-31 11:50:12.62 JohnnyWolfBIU \N \N \N 154490182 5 2 \N \N 100 \N \N f f 0 \N 2146477177 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16684 2021-10-02 05:15:41.573 2021-10-24 00:14:13.399 IsabellaHardy56N \N \N \N 93764942 5 2 \N \N 100 \N \N f f 0 \N 1231063596 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16753 2023-09-01 06:36:16.179 2022-09-21 16:21:01.036 PaigeTerryOY3 \N \N \N 7214413 5 2 \N \N 100 \N \N f f 0 \N 1331063379 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 27 2022-05-08 16:35:31.435 2022-06-01 20:17:28.451 CharlesParrishS7D \N \N \N 189517410 5 2 \N \N 100 \N \N f f 0 \N 228789105 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 618 2021-10-10 11:47:06.788 2021-12-07 10:51:01.663 DuaneShepherdOAU \N \N \N 976119 5 2 \N \N 100 \N \N f f 0 \N 1661002195 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 738 2022-06-12 01:06:24.108 2024-01-17 04:16:30.02 KentIbarra9WE \N \N \N 204712155 5 2 \N \N 100 \N \N f f 0 \N 1826682944 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 749 2022-12-26 22:28:54.309 2023-09-28 12:37:18.643 CarmenTaylorRZA \N \N \N 103963508 5 2 \N \N 100 \N \N f f 0 \N 1044768462 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 763 2022-09-07 06:15:27.683 2022-12-05 00:56:37.251 VanessaMendezBDR \N \N \N 183271759 5 2 \N \N 100 \N \N f f 0 \N 1659237483 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 766 2022-04-23 21:24:55.629 2023-09-01 13:58:57.063 KellyNortonGXI \N \N \N 178195600 5 2 \N \N 100 \N \N f f 0 \N 2498194654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 780 2021-11-02 10:01:37.862 2022-01-29 22:05:26.708 AlanGarzaIFR \N \N \N 151656780 5 2 \N \N 100 \N \N f f 0 \N 1870953609 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 797 2023-11-12 06:46:33.896 2022-05-20 07:36:52.738 StevenRobbinsBC7 \N \N \N 118195696 5 2 \N \N 100 \N \N f f 0 \N 2431809794 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 814 2023-02-08 14:24:18.409 2023-09-20 10:08:17.949 MiguelGonzalez18K \N \N \N 108137233 5 2 \N \N 100 \N \N f f 0 \N 1693445815 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 837 2022-05-04 22:50:38.852 2022-10-15 05:38:01.962 RickWaltersRUX \N \N \N 51511935 5 2 \N \N 100 \N \N f f 0 \N 2159891105 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 876 2023-11-28 09:19:28.033 2022-02-13 17:59:42.348 KylieMiller3HF \N \N \N 247254316 5 2 \N \N 100 \N \N f f 0 \N 236589486 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 882 2022-11-14 05:18:48.762 2022-12-08 00:20:42.645 AshleeFarrell3DB \N \N \N 154025649 5 2 \N \N 100 \N \N f f 0 \N 87137767 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 889 2022-09-28 17:35:12.001 2023-01-04 23:36:04.379 EmmaGardner3NX \N \N \N 124758422 5 2 \N \N 100 \N \N f f 0 \N 382219981 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 891 2022-01-05 19:08:10.893 2024-02-02 09:50:12.444 JoannBartonSKY \N \N \N 162307875 5 2 \N \N 100 \N \N f f 0 \N 784529537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 894 2023-04-22 02:13:41.661 2021-10-21 22:25:54.404 FrancisNielsen15Z \N \N \N 162826087 5 2 \N \N 100 \N \N f f 0 \N 111724243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 902 2022-07-04 16:43:44.473 2022-11-08 23:12:19.038 KatiePetersonIFE \N \N \N 224970602 5 2 \N \N 100 \N \N f f 0 \N 654295615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 910 2023-06-13 22:03:12.639 2022-06-07 13:59:07.249 RileyVillaUSP \N \N \N 205976873 5 2 \N \N 100 \N \N f f 0 \N 675116849 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 913 2023-05-23 18:33:22.597 2022-11-15 00:49:59.803 CathyMasonI8X \N \N \N 128606936 5 2 \N \N 100 \N \N f f 0 \N 32874595 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 959 2024-01-20 13:42:20.35 2022-01-24 16:50:42.734 IsaiahYangUJA \N \N \N 24979601 5 2 \N \N 100 \N \N f f 0 \N 466775594 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 974 2022-02-10 06:54:55.073 2023-01-21 15:29:12.396 DylanReevesP4Y \N \N \N 8477979 5 2 \N \N 100 \N \N f f 0 \N 304922225 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 985 2024-01-17 22:17:08.572 2021-11-22 04:09:22.366 RobertFosterMQF \N \N \N 113039544 5 2 \N \N 100 \N \N f f 0 \N 351376996 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1007 2023-05-01 13:07:12.031 2024-01-08 19:39:26.608 CraigMcintyreHUF \N \N \N 20860640 5 2 \N \N 100 \N \N f f 0 \N 2385718085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1012 2022-02-10 12:56:23.451 2021-12-22 15:03:39.903 AngelDonaldsonRYN \N \N \N 45669863 5 2 \N \N 100 \N \N f f 0 \N 1329241452 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1039 2023-07-23 10:53:51.117 2022-11-29 19:31:55.439 AlexaBraunIBV \N \N \N 167123179 5 2 \N \N 100 \N \N f f 0 \N 616776082 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1044 2021-10-26 19:21:42.43 2022-04-23 21:15:41.772 SabrinaFreemanRYV \N \N \N 144386825 5 2 \N \N 100 \N \N f f 0 \N 356392210 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1051 2023-06-27 19:16:36.039 2023-10-26 12:43:51.205 RebeccaSweeney7B4 \N \N \N 223808416 5 2 \N \N 100 \N \N f f 0 \N 108556882 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1090 2022-11-09 01:42:22.088 2023-09-07 23:11:02.635 AnthonyVegaC6S \N \N \N 73079645 5 2 \N \N 100 \N \N f f 0 \N 1890409652 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1135 2022-12-28 17:05:58.287 2024-01-02 08:59:23.012 RebekahSextonS1G \N \N \N 187720968 5 2 \N \N 100 \N \N f f 0 \N 1073754969 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1142 2023-02-09 17:46:57.473 2023-08-12 06:20:39.614 JoGilmoreWH7 \N \N \N 66993090 5 2 \N \N 100 \N \N f f 0 \N 840204764 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1162 2023-07-20 10:22:19.942 2022-09-12 01:17:39.451 PrestonPhamXOJ \N \N \N 62468753 5 2 \N \N 100 \N \N f f 0 \N 832771348 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1208 2023-04-21 08:44:25.448 2022-10-20 00:08:17.661 PaulaBartlettHLM \N \N \N 183192084 5 2 \N \N 100 \N \N f f 0 \N 2125153249 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1221 2022-11-09 19:48:03.888 2022-08-20 16:32:59.389 StephanieHuberXXH \N \N \N 148312251 5 2 \N \N 100 \N \N f f 0 \N 2249293834 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1224 2024-01-13 18:30:12.043 2022-08-07 18:58:13.585 TerriChurch7LX \N \N \N 87701517 5 2 \N \N 100 \N \N f f 0 \N 1039973448 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1245 2023-07-24 21:24:46.19 2023-02-10 04:35:05.022 BernardWhitneyNLC \N \N \N 143615214 5 2 \N \N 100 \N \N f f 0 \N 1702798733 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1261 2023-05-20 02:12:50.163 2024-01-01 22:42:13.457 RickeyGayWG1 \N \N \N 127879447 5 2 \N \N 100 \N \N f f 0 \N 351216957 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1272 2024-01-23 22:23:56.098 2022-04-06 12:18:05.318 TammyRichard8IP \N \N \N 193342625 5 2 \N \N 100 \N \N f f 0 \N 2240430298 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1354 2022-09-01 03:48:38.726 2023-03-14 18:22:59.011 StacyDean5BB \N \N \N 48079970 5 2 \N \N 100 \N \N f f 0 \N 982457331 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1454 2023-02-26 22:12:23.371 2021-12-24 07:58:35.623 EvelynRiceHE9 \N \N \N 64867020 5 2 \N \N 100 \N \N f f 0 \N 2352518652 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1468 2023-09-28 02:32:16.475 2022-06-03 06:25:22.327 AdamClarkC11 \N \N \N 129630209 5 2 \N \N 100 \N \N f f 0 \N 970587159 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1552 2022-08-20 19:03:53.216 2023-02-07 19:55:50.506 TaraWatersJ3P \N \N \N 160443652 5 2 \N \N 100 \N \N f f 0 \N 1746565627 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1571 2022-09-01 14:45:09.982 2022-02-20 21:44:31.101 RoseHolmesAJM \N \N \N 122871903 5 2 \N \N 100 \N \N f f 0 \N 167178599 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1576 2022-09-03 12:54:29.805 2023-06-08 01:45:26.886 BaileyMcgrathXHT \N \N \N 153275236 5 2 \N \N 100 \N \N f f 0 \N 1680154848 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1577 2022-05-28 19:51:26.224 2021-11-14 06:14:59.92 IsaiahFullerNZT \N \N \N 12606473 5 2 \N \N 100 \N \N f f 0 \N 419650901 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1603 2021-11-28 04:43:52.134 2022-04-17 15:47:56.514 GeoffreyColeman3SE \N \N \N 205571940 5 2 \N \N 100 \N \N f f 0 \N 1870163194 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1611 2023-06-02 05:30:53.132 2022-03-25 02:45:26.435 TravisLaraG8D \N \N \N 174252323 5 2 \N \N 100 \N \N f f 0 \N 264409462 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1628 2023-12-03 21:01:05.886 2023-11-03 07:45:33.581 RoseSingletonJW1 \N \N \N 218162520 5 2 \N \N 100 \N \N f f 0 \N 263374826 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1631 2022-04-10 15:41:42.391 2022-06-14 12:29:16.593 DonaldEsparzaY6S \N \N \N 226020342 5 2 \N \N 100 \N \N f f 0 \N 2042923334 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1650 2022-10-27 19:12:51.974 2023-04-06 11:56:55.23 LeahBentleyHBR \N \N \N 243270923 5 2 \N \N 100 \N \N f f 0 \N 299773488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1784 2023-05-22 11:53:09.678 2021-10-23 10:09:42.606 LarryVargasM7X \N \N \N 242732206 5 2 \N \N 100 \N \N f f 0 \N 1364426484 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1802 2024-02-15 02:39:51.551 2022-06-30 21:38:14.108 NormanJacksonX2X \N \N \N 228283566 5 2 \N \N 100 \N \N f f 0 \N 889174941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1806 2022-09-22 16:12:43.161 2023-11-11 05:34:42.048 MonicaBooneD2R \N \N \N 147327446 5 2 \N \N 100 \N \N f f 0 \N 2297256082 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1817 2023-12-13 15:53:45.211 2023-12-18 17:42:24.255 JeremiahGregoryM5O \N \N \N 73317943 5 2 \N \N 100 \N \N f f 0 \N 1695124183 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1823 2022-11-02 10:12:11.987 2021-10-31 15:40:29.884 RyanLesterYIU \N \N \N 109874644 5 2 \N \N 100 \N \N f f 0 \N 112092646 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1960 2022-12-05 16:14:04.57 2023-08-13 01:07:43.952 RogerKrueger0CQ \N \N \N 238077721 5 2 \N \N 100 \N \N f f 0 \N 2106123775 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2029 2022-12-26 08:23:20.056 2022-11-10 09:52:46.355 CarolSullivanK4R \N \N \N 117475999 5 2 \N \N 100 \N \N f f 0 \N 278790902 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2046 2022-07-20 08:54:29.685 2022-09-27 08:14:47.631 ReginaNewton5DX \N \N \N 225733403 5 2 \N \N 100 \N \N f f 0 \N 1763647634 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2065 2021-12-02 09:20:09.292 2022-04-04 21:05:05.943 MarcCantrell4FB \N \N \N 167963391 5 2 \N \N 100 \N \N f f 0 \N 1671829424 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2075 2023-09-05 04:47:46.93 2022-04-09 09:04:01.993 BradleyWaltonJR4 \N \N \N 89003831 5 2 \N \N 100 \N \N f f 0 \N 1549464635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2077 2021-10-27 08:03:44.766 2022-11-19 14:51:51.889 TracieDay1FH \N \N \N 8469377 5 2 \N \N 100 \N \N f f 0 \N 846716631 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2101 2022-01-06 20:24:35.649 2021-11-17 23:38:43.352 KarenBrennan1JY \N \N \N 161194093 5 2 \N \N 100 \N \N f f 0 \N 1514631008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2123 2022-04-08 06:49:29.904 2024-01-02 02:29:39.061 PhyllisChangNBQ \N \N \N 60650991 5 2 \N \N 100 \N \N f f 0 \N 387057044 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2151 2021-10-12 11:55:45.272 2023-07-21 21:12:05.171 AudreyPhillipsRVR \N \N \N 169455667 5 2 \N \N 100 \N \N f f 0 \N 2347624280 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2156 2022-03-07 01:04:37.796 2023-05-13 18:23:06.754 BernardDavila0G8 \N \N \N 199379278 5 2 \N \N 100 \N \N f f 0 \N 1938407803 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2188 2022-02-24 13:27:17.476 2022-07-03 03:05:33.074 KirkBeltran2GP \N \N \N 230350346 5 2 \N \N 100 \N \N f f 0 \N 1325873021 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2195 2022-01-09 05:38:52.352 2022-10-06 20:19:51.716 AshleyPenningtonI55 \N \N \N 225442859 5 2 \N \N 100 \N \N f f 0 \N 2321402283 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2196 2021-11-07 07:18:32.316 2023-08-20 10:56:17.053 HowardArcher6OJ \N \N \N 135485879 5 2 \N \N 100 \N \N f f 0 \N 817328071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2204 2022-03-24 17:48:28.987 2023-01-19 07:58:26.042 AnthonySheltonOAU \N \N \N 42296488 5 2 \N \N 100 \N \N f f 0 \N 536118191 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2224 2023-08-20 03:22:24.754 2022-10-01 01:23:19.338 SergioBallT80 \N \N \N 131843733 5 2 \N \N 100 \N \N f f 0 \N 215835638 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2264 2022-10-18 19:40:49.941 2022-01-03 17:06:50.276 DonaldDickerson5BJ \N \N \N 70959692 5 2 \N \N 100 \N \N f f 0 \N 2419153634 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2285 2023-02-04 12:16:54.253 2023-08-01 18:53:19.38 ErikDanielZNM \N \N \N 127105189 5 2 \N \N 100 \N \N f f 0 \N 1964582197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2330 2021-10-02 01:53:00.325 2022-10-25 16:45:37.721 ShariMurray4HH \N \N \N 155669549 5 2 \N \N 100 \N \N f f 0 \N 1951481991 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2367 2022-03-09 17:39:17.356 2023-06-22 09:10:16.472 KaraRobertson3KT \N \N \N 177312013 5 2 \N \N 100 \N \N f f 0 \N 2297120909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2459 2021-11-17 06:13:05.941 2023-11-24 20:50:42.344 NatalieMorenoHQY \N \N \N 107359350 5 2 \N \N 100 \N \N f f 0 \N 973899689 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2460 2021-10-08 01:27:39.43 2023-03-02 08:32:07.569 EdgarBrockR28 \N \N \N 224015725 5 2 \N \N 100 \N \N f f 0 \N 671364915 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2513 2022-06-27 02:02:40.275 2024-02-10 09:41:10.097 TraceyDominguezLZJ \N \N \N 192232243 5 2 \N \N 100 \N \N f f 0 \N 850112161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2525 2022-08-15 18:14:58.548 2023-11-09 01:50:28.09 MckenzieEwingXMR \N \N \N 201110858 5 2 \N \N 100 \N \N f f 0 \N 392827109 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2576 2022-06-03 00:19:25.278 2024-01-16 01:00:16.489 AlfredBooneEGG \N \N \N 78467689 5 2 \N \N 100 \N \N f f 0 \N 597897247 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2609 2023-08-20 02:44:41.085 2022-09-10 11:20:26.531 CesarSellersOU3 \N \N \N 205683221 5 2 \N \N 100 \N \N f f 0 \N 699396499 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2652 2023-04-20 00:38:51.12 2021-12-27 07:27:02.586 JoannaTateEVK \N \N \N 239963611 5 2 \N \N 100 \N \N f f 0 \N 1993114569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2710 2023-11-17 03:11:24.426 2023-03-05 19:23:31.848 MelindaPierce0OB \N \N \N 50543429 5 2 \N \N 100 \N \N f f 0 \N 2331901377 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2741 2023-06-18 10:44:08.162 2023-08-12 20:05:44.314 SonyaBlackwellT0V \N \N \N 106223959 5 2 \N \N 100 \N \N f f 0 \N 2192922185 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2748 2022-05-14 08:46:46.613 2024-02-02 09:10:16.988 FrederickSchwartzYDB \N \N \N 184209096 5 2 \N \N 100 \N \N f f 0 \N 1439570223 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2749 2022-11-19 17:17:11.464 2022-03-27 05:15:06.079 DeannaOrtiz3PO \N \N \N 81995788 5 2 \N \N 100 \N \N f f 0 \N 1937955941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2773 2022-03-14 17:37:21.849 2023-10-23 05:41:15.75 KristinaComptonIZW \N \N \N 58141470 5 2 \N \N 100 \N \N f f 0 \N 741777798 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2780 2023-02-12 20:02:16.652 2022-07-25 11:14:37.361 JesusHarringtonH78 \N \N \N 127429850 5 2 \N \N 100 \N \N f f 0 \N 15162542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2829 2023-02-27 10:28:22.633 2022-01-15 05:54:49.685 TashaMcmahon96E \N \N \N 32742938 5 2 \N \N 100 \N \N f f 0 \N 780574876 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2832 2022-07-30 06:19:40.186 2022-02-21 23:01:58.371 MarieMckenzie4FF \N \N \N 39352598 5 2 \N \N 100 \N \N f f 0 \N 1619493054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2961 2023-02-27 17:58:25.598 2023-09-17 17:38:04.907 RandallCooleyU9X \N \N \N 33963769 5 2 \N \N 100 \N \N f f 0 \N 1222952220 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2963 2023-07-03 21:10:51.59 2023-10-31 07:10:05.977 BonnieWiley8DW \N \N \N 105722648 5 2 \N \N 100 \N \N f f 0 \N 632685955 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3213 2021-10-19 05:22:14.237 2022-10-13 03:34:00.614 MarisaHowellFY2 \N \N \N 65547812 5 2 \N \N 100 \N \N f f 0 \N 735286396 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3342 2023-09-15 12:44:10.675 2022-05-04 00:51:08.985 LukeRiveraK18 \N \N \N 5164679 5 2 \N \N 100 \N \N f f 0 \N 2438813108 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3347 2023-06-18 12:11:43.785 2023-08-20 17:36:18.145 RitaCarlsonRNC \N \N \N 242354289 5 2 \N \N 100 \N \N f f 0 \N 500092692 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3360 2021-10-11 13:42:59.757 2023-02-17 18:36:39.13 IanFisherHW1 \N \N \N 127674286 5 2 \N \N 100 \N \N f f 0 \N 701281413 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3409 2023-10-07 01:15:12.974 2022-04-02 07:50:59.461 JaneDavidsonDVE \N \N \N 189320593 5 2 \N \N 100 \N \N f f 0 \N 2416327926 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3417 2022-12-23 18:22:40.204 2024-02-07 05:17:21.354 SergioMathisWOQ \N \N \N 151394729 5 2 \N \N 100 \N \N f f 0 \N 1377635644 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3461 2023-01-20 12:03:33.434 2023-10-26 14:47:15.366 ManuelDiazLJ1 \N \N \N 42424095 5 2 \N \N 100 \N \N f f 0 \N 2385024243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3506 2021-10-22 14:41:04.436 2022-06-12 12:42:08.228 LeslieMackQBV \N \N \N 206232581 5 2 \N \N 100 \N \N f f 0 \N 441729686 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3518 2022-01-27 19:51:26.586 2022-01-02 14:23:21.059 TraciOrozcoD4K \N \N \N 75158625 5 2 \N \N 100 \N \N f f 0 \N 1280782279 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3642 2022-08-15 08:56:23.693 2022-04-05 01:43:13.516 RavenDuncanMWA \N \N \N 206980855 5 2 \N \N 100 \N \N f f 0 \N 548232578 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3683 2021-10-08 11:27:50.853 2023-04-28 02:21:33.937 AshleeStaffordU8P \N \N \N 64385635 5 2 \N \N 100 \N \N f f 0 \N 678478302 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3706 2022-01-13 20:24:31.849 2023-09-03 18:28:49.181 LeonardMilesS1G \N \N \N 70932917 5 2 \N \N 100 \N \N f f 0 \N 2124051724 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3990 2022-10-09 13:51:59.086 2023-09-23 21:47:20.614 JoyCastilloB3W \N \N \N 230490540 5 2 \N \N 100 \N \N f f 0 \N 1401689201 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4027 2021-12-06 06:39:29.019 2022-07-30 01:00:46.488 KerryRichardsTHP \N \N \N 247059340 5 2 \N \N 100 \N \N f f 0 \N 1591045004 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4076 2022-09-27 05:53:48.688 2024-02-08 13:52:40.728 JocelynFuentesQMK \N \N \N 158378442 5 2 \N \N 100 \N \N f f 0 \N 1757692441 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4126 2022-09-07 22:58:06.142 2023-09-04 23:30:10.418 MarissaBestP8U \N \N \N 126764055 5 2 \N \N 100 \N \N f f 0 \N 2238836034 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4128 2023-06-01 07:58:17.573 2022-08-04 06:17:12.933 MelodyBruceBR5 \N \N \N 24347023 5 2 \N \N 100 \N \N f f 0 \N 74285170 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4167 2022-06-04 12:06:37.311 2023-06-26 22:51:27.086 MirandaChoiX9Z \N \N \N 5984377 5 2 \N \N 100 \N \N f f 0 \N 466385974 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4173 2023-08-06 09:42:18.596 2023-01-12 15:33:20.715 DavePhamDTI \N \N \N 148591776 5 2 \N \N 100 \N \N f f 0 \N 206429867 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4175 2021-10-08 14:14:01.759 2024-02-09 16:56:25.132 KristinDorseyYXT \N \N \N 179897228 5 2 \N \N 100 \N \N f f 0 \N 2325733652 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4250 2021-12-18 22:29:17.168 2022-06-01 21:10:38.701 GreggMiranda8S1 \N \N \N 54187101 5 2 \N \N 100 \N \N f f 0 \N 226871706 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4259 2022-06-05 20:22:51.441 2022-10-03 05:49:54.281 StephanieBlackburn16R \N \N \N 136176459 5 2 \N \N 100 \N \N f f 0 \N 1013852745 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4304 2022-08-17 01:54:40.151 2022-04-19 05:31:18.246 BobbyAndersonQR0 \N \N \N 42228010 5 2 \N \N 100 \N \N f f 0 \N 1111217131 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4322 2022-11-29 15:32:49.117 2023-09-14 14:21:08.837 TerranceSosaU73 \N \N \N 202091768 5 2 \N \N 100 \N \N f f 0 \N 699574070 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4323 2022-09-20 23:30:12.611 2022-02-08 10:42:02.235 ReginaldOdomKAV \N \N \N 89923912 5 2 \N \N 100 \N \N f f 0 \N 98967360 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4345 2023-09-13 10:50:04.079 2022-02-15 01:29:20.222 DaisyHarrisU73 \N \N \N 91389566 5 2 \N \N 100 \N \N f f 0 \N 1898427600 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4378 2023-10-05 17:05:28.006 2023-04-13 14:14:18.255 MeaganBairdMH8 \N \N \N 110483084 5 2 \N \N 100 \N \N f f 0 \N 1373842540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4388 2022-12-22 05:48:02.538 2023-03-25 08:15:13.305 DominiqueLeblancCNI \N \N \N 68162365 5 2 \N \N 100 \N \N f f 0 \N 1856801341 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4391 2022-09-06 09:26:39.411 2023-02-04 01:33:59.811 MarieRhodesONP \N \N \N 140273559 5 2 \N \N 100 \N \N f f 0 \N 1137559670 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4459 2022-09-02 22:31:28.322 2022-11-22 08:31:33.723 MicheleHallTO7 \N \N \N 197307505 5 2 \N \N 100 \N \N f f 0 \N 739883433 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4474 2024-01-12 13:33:45.383 2022-03-08 10:21:56.777 TonyaWatkins0DT \N \N \N 11475483 5 2 \N \N 100 \N \N f f 0 \N 134498607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4521 2022-05-29 21:17:33.346 2021-11-18 18:13:40.113 TammieStrong4YK \N \N \N 134903599 5 2 \N \N 100 \N \N f f 0 \N 1302122972 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4633 2022-10-01 16:00:34.005 2022-08-02 15:40:00.912 XavierEspinozaMTR \N \N \N 67700958 5 2 \N \N 100 \N \N f f 0 \N 1780689554 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4798 2023-07-04 12:49:03.953 2021-10-11 08:34:00.419 AngelicaMontgomeryXJI \N \N \N 97010716 5 2 \N \N 100 \N \N f f 0 \N 260251536 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4802 2023-04-22 21:56:27.743 2022-08-07 10:58:58.15 MistyKing3DI \N \N \N 13567833 5 2 \N \N 100 \N \N f f 0 \N 604284273 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4831 2023-09-28 22:42:40.953 2024-01-23 19:27:46.39 HayleyVangHWV \N \N \N 131068417 5 2 \N \N 100 \N \N f f 0 \N 1027033984 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4973 2021-10-06 00:17:56.086 2022-04-19 21:44:31.323 TracieGomez6HM \N \N \N 213332705 5 2 \N \N 100 \N \N f f 0 \N 176447765 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4984 2022-02-15 16:05:15.887 2023-03-09 23:30:04.859 SuePopeN3A \N \N \N 130876539 5 2 \N \N 100 \N \N f f 0 \N 650039620 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5003 2023-12-17 19:14:30.937 2023-02-10 10:37:45.257 TonyLloyd03U \N \N \N 181336267 5 2 \N \N 100 \N \N f f 0 \N 719813430 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5036 2023-04-18 10:24:35.579 2021-11-11 22:49:16.878 MarieGouldODX \N \N \N 167922057 5 2 \N \N 100 \N \N f f 0 \N 1619416163 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5085 2021-12-21 18:21:32.195 2022-06-10 05:46:12.062 JuanMoody64J \N \N \N 49680776 5 2 \N \N 100 \N \N f f 0 \N 2175229326 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5112 2022-08-14 08:15:33.299 2024-01-16 10:49:50.573 TraceyJacobs323 \N \N \N 43999646 5 2 \N \N 100 \N \N f f 0 \N 2178955554 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5128 2022-05-19 22:17:58.259 2022-09-29 19:33:14.057 JayRojasZOI \N \N \N 76499510 5 2 \N \N 100 \N \N f f 0 \N 138925159 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5171 2022-10-03 00:09:33.054 2021-12-13 23:37:45.19 BernardFrancisO1U \N \N \N 68355940 5 2 \N \N 100 \N \N f f 0 \N 2434471831 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5377 2022-03-05 00:57:32.779 2022-10-17 02:33:06.668 ThomasHolderDJS \N \N \N 171959995 5 2 \N \N 100 \N \N f f 0 \N 329578143 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5387 2022-08-06 12:29:53.282 2022-01-15 04:15:59.597 JoelBowmanUF2 \N \N \N 192887801 5 2 \N \N 100 \N \N f f 0 \N 781507033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5427 2021-12-13 23:32:05.666 2022-12-31 20:17:19.51 GeraldBautistaPKT \N \N \N 77275705 5 2 \N \N 100 \N \N f f 0 \N 35289996 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5449 2023-07-10 00:18:09.83 2022-07-04 01:56:58.027 TaraFarleyQBJ \N \N \N 10142968 5 2 \N \N 100 \N \N f f 0 \N 711148973 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5538 2023-04-08 21:53:40.192 2023-10-12 10:19:56.24 MadelineYangH8U \N \N \N 93431050 5 2 \N \N 100 \N \N f f 0 \N 405273542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5590 2022-06-19 17:23:06.726 2021-12-31 07:07:08.069 JeremiahBallardWNT \N \N \N 212674951 5 2 \N \N 100 \N \N f f 0 \N 2266481706 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5597 2022-12-14 19:13:28.933 2022-06-21 22:38:41.749 AlexaGregoryRZE \N \N \N 123150003 5 2 \N \N 100 \N \N f f 0 \N 1144200004 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5637 2022-10-10 17:04:30.028 2022-12-13 22:53:04.245 GeorgeRollinsYUD \N \N \N 159523481 5 2 \N \N 100 \N \N f f 0 \N 1750829054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5703 2024-01-15 18:09:37.623 2022-08-29 05:14:52.054 TommyVaughanNLZ \N \N \N 174459546 5 2 \N \N 100 \N \N f f 0 \N 2010889026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5752 2022-10-03 14:25:11.306 2023-02-20 01:57:14.351 ClaudiaSteeleD9N \N \N \N 116604114 5 2 \N \N 100 \N \N f f 0 \N 805501732 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 866 2023-09-22 21:34:55.701 2023-01-11 20:53:24.108 LarryWalsh5UM \N \N \N 218076082 5 2 \N \N 100 \N \N f f 0 \N 1292975556 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5758 2022-01-29 20:15:10.888 2021-12-04 05:07:10.94 BreannaAbbottUM7 \N \N \N 184587970 5 2 \N \N 100 \N \N f f 0 \N 2163821831 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5775 2021-12-08 17:39:43.568 2022-07-26 00:52:24.347 SamuelCline15O \N \N \N 221907034 5 2 \N \N 100 \N \N f f 0 \N 672629457 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5776 2023-06-13 08:36:32.21 2022-10-14 12:48:35.621 DorisMorseVBF \N \N \N 198302871 5 2 \N \N 100 \N \N f f 0 \N 487188589 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5779 2021-10-18 08:21:14.292 2023-07-16 20:38:53.214 ArianaGreeneDEU \N \N \N 235272064 5 2 \N \N 100 \N \N f f 0 \N 1580987947 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5825 2023-08-30 19:42:33.557 2023-06-29 04:09:36.22 CollinCarter238 \N \N \N 171808054 5 2 \N \N 100 \N \N f f 0 \N 838146786 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5828 2022-04-15 16:23:08.367 2023-10-05 05:05:08.128 RicardoBuckley5ZC \N \N \N 75774796 5 2 \N \N 100 \N \N f f 0 \N 243876801 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5852 2022-08-08 21:08:50.298 2023-09-22 18:06:23.102 ArielGross06C \N \N \N 81172045 5 2 \N \N 100 \N \N f f 0 \N 2306628693 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6041 2022-01-17 01:26:44.695 2024-01-10 05:24:21.007 DiamondGuerreroJGH \N \N \N 76484516 5 2 \N \N 100 \N \N f f 0 \N 77866379 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6164 2021-11-09 19:16:07.582 2023-11-29 17:12:57.981 TimSheppardLLT \N \N \N 212281793 5 2 \N \N 100 \N \N f f 0 \N 2149744881 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6229 2022-09-26 20:51:33.316 2023-02-20 19:48:17.559 PhillipSchroederOBK \N \N \N 244574806 5 2 \N \N 100 \N \N f f 0 \N 1741909988 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6300 2023-05-29 20:43:14.99 2023-10-30 14:27:49.959 JimMorenoGKB \N \N \N 76832268 5 2 \N \N 100 \N \N f f 0 \N 2235520442 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6310 2022-11-03 12:30:10.433 2022-04-27 06:50:44.006 AlexisBowmanEHT \N \N \N 229767953 5 2 \N \N 100 \N \N f f 0 \N 388424975 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6382 2023-04-02 06:58:34.907 2022-01-13 06:08:44.869 CoreyShermanEAQ \N \N \N 78805244 5 2 \N \N 100 \N \N f f 0 \N 945786071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6384 2021-12-26 13:57:24.132 2022-08-14 03:52:14.546 TristanHammond44G \N \N \N 223229832 5 2 \N \N 100 \N \N f f 0 \N 40386891 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6393 2022-12-19 02:42:30.153 2022-04-26 12:08:34.485 LeonHutchinson23T \N \N \N 89353567 5 2 \N \N 100 \N \N f f 0 \N 766393923 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6419 2023-02-10 08:34:57.938 2021-12-10 05:59:51.673 GarrettButlerG4F \N \N \N 53252577 5 2 \N \N 100 \N \N f f 0 \N 2201417323 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6471 2022-05-08 16:53:47.493 2023-01-25 06:56:54.647 WesleyMcgeeKYX \N \N \N 208542289 5 2 \N \N 100 \N \N f f 0 \N 1026808846 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6533 2024-02-06 08:20:03.957 2022-10-23 05:15:49.779 JayLloydH34 \N \N \N 176088005 5 2 \N \N 100 \N \N f f 0 \N 1628374428 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6537 2023-01-31 07:27:00.69 2024-01-04 22:55:09.458 GregOnealZRD \N \N \N 4291314 5 2 \N \N 100 \N \N f f 0 \N 488473400 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6555 2022-11-09 18:14:27.721 2022-04-01 10:50:48.075 TraciGarrisonXTK \N \N \N 190247189 5 2 \N \N 100 \N \N f f 0 \N 641422207 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6573 2022-05-07 10:19:26.956 2023-07-01 21:43:11.436 SierraSheppardG2B \N \N \N 104903785 5 2 \N \N 100 \N \N f f 0 \N 2489301855 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6578 2023-02-04 12:43:41.685 2023-06-21 15:04:20.414 AdamBowman5H8 \N \N \N 189214010 5 2 \N \N 100 \N \N f f 0 \N 2133286938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6602 2022-03-01 20:44:10.424 2022-03-14 05:06:11.483 KaitlynLawrenceJ2I \N \N \N 221260267 5 2 \N \N 100 \N \N f f 0 \N 2066009887 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6616 2023-04-09 23:42:43.921 2023-10-25 04:58:34.417 SherylSuarezFSH \N \N \N 149450761 5 2 \N \N 100 \N \N f f 0 \N 1281816542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6653 2023-05-22 10:13:49.857 2022-09-27 23:24:01.683 JakeTrevinoN0L \N \N \N 43110612 5 2 \N \N 100 \N \N f f 0 \N 479830837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6741 2022-09-22 09:39:34.203 2023-06-16 01:55:43.061 HunterKramerIOG \N \N \N 196983704 5 2 \N \N 100 \N \N f f 0 \N 824656661 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6765 2021-10-26 09:40:43.149 2023-12-23 05:17:16.8 RandyCampbellYUI \N \N \N 197821033 5 2 \N \N 100 \N \N f f 0 \N 1099219371 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6777 2024-01-05 09:34:30.87 2023-07-17 06:32:09.288 RhondaBarajasYKP \N \N \N 85534826 5 2 \N \N 100 \N \N f f 0 \N 837544850 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7125 2022-04-25 13:19:53.391 2021-12-11 07:46:34.338 RonaldGambleTCG \N \N \N 236930206 5 2 \N \N 100 \N \N f f 0 \N 1743305577 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7395 2023-01-06 09:29:51.093 2023-06-01 23:03:58.575 DorisWashingtonGCX \N \N \N 97311636 5 2 \N \N 100 \N \N f f 0 \N 392139120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7510 2022-07-17 00:06:33.495 2023-03-05 20:27:27.329 MichaelRiveraSH3 \N \N \N 187284989 5 2 \N \N 100 \N \N f f 0 \N 1939356672 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7587 2022-08-09 02:33:01.952 2022-10-16 17:41:33.659 KevinMilesU0M \N \N \N 141325696 5 2 \N \N 100 \N \N f f 0 \N 632705660 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7659 2021-12-12 01:47:18.358 2023-11-02 06:41:48.53 BillyYuRFJ \N \N \N 205150910 5 2 \N \N 100 \N \N f f 0 \N 511412748 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7682 2022-09-27 20:59:02.55 2023-01-14 14:35:41.496 BethanyQuinnO57 \N \N \N 151888436 5 2 \N \N 100 \N \N f f 0 \N 1768788714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7746 2022-06-30 01:31:17.419 2022-03-12 22:28:47.765 HaydenGillespieB8E \N \N \N 97150934 5 2 \N \N 100 \N \N f f 0 \N 953033177 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7772 2023-10-03 04:03:32.492 2022-12-17 05:13:53.864 YeseniaAdamsQVZ \N \N \N 6082747 5 2 \N \N 100 \N \N f f 0 \N 356113773 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7773 2022-04-12 06:40:14.279 2022-11-17 12:03:56.955 WayneWileyHKN \N \N \N 9682291 5 2 \N \N 100 \N \N f f 0 \N 1189115290 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7899 2023-02-04 08:56:00.582 2023-11-01 16:00:16.702 BrentVillegasSCH \N \N \N 34560125 5 2 \N \N 100 \N \N f f 0 \N 2438976703 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7913 2022-12-12 03:17:38.768 2023-08-13 07:57:26.21 BradyKeyDLP \N \N \N 161287127 5 2 \N \N 100 \N \N f f 0 \N 1125808966 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7916 2022-12-26 21:04:39.413 2023-06-12 23:31:52.838 DebraHobbs6ZT \N \N \N 1665232 5 2 \N \N 100 \N \N f f 0 \N 2062045223 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7978 2022-10-02 02:21:40.535 2023-09-09 15:30:00.436 MadelineBryanV6P \N \N \N 167713330 5 2 \N \N 100 \N \N f f 0 \N 1725503748 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7986 2024-01-10 21:34:05.128 2023-11-14 22:13:44.016 RachelNovakZQ8 \N \N \N 14563297 5 2 \N \N 100 \N \N f f 0 \N 1389228270 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7992 2023-05-01 23:25:53.401 2023-03-04 11:04:32.241 YvonneMcintoshWY4 \N \N \N 82714557 5 2 \N \N 100 \N \N f f 0 \N 1814578728 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8004 2023-04-18 02:50:01.217 2023-02-14 09:11:42.947 BriannaDownsQ5H \N \N \N 242839898 5 2 \N \N 100 \N \N f f 0 \N 2410223665 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8059 2022-07-29 22:30:42.247 2023-08-25 02:21:13.397 AustinSwansonNCU \N \N \N 76375850 5 2 \N \N 100 \N \N f f 0 \N 1744808686 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8095 2023-08-12 19:30:55.463 2021-11-05 03:44:53.179 CoreyWiseKEF \N \N \N 136514177 5 2 \N \N 100 \N \N f f 0 \N 1184903222 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8133 2023-06-17 21:15:50.87 2023-11-30 19:41:12.359 FranklinDuncanC8R \N \N \N 34511609 5 2 \N \N 100 \N \N f f 0 \N 1494611594 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8162 2023-11-01 23:10:57.262 2023-04-29 14:36:37.697 ColtonCohen03B \N \N \N 71646330 5 2 \N \N 100 \N \N f f 0 \N 1343469794 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8269 2022-12-17 06:22:55.533 2021-10-19 00:43:56.581 SoniaGoodman7VY \N \N \N 113881115 5 2 \N \N 100 \N \N f f 0 \N 810237322 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8289 2023-10-25 05:34:38.15 2022-10-24 17:09:11.583 VincentGallowaySPP \N \N \N 65767430 5 2 \N \N 100 \N \N f f 0 \N 2461524531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8360 2023-03-06 16:25:00.594 2022-04-05 22:33:08.553 DanielCrawfordZEJ \N \N \N 180557824 5 2 \N \N 100 \N \N f f 0 \N 256645192 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8376 2022-04-03 18:17:40.463 2022-04-10 13:03:59.517 BillHorneEOS \N \N \N 72053484 5 2 \N \N 100 \N \N f f 0 \N 480828772 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8385 2023-12-19 06:52:58.474 2022-03-16 04:52:57.07 JoBentleySMZ \N \N \N 68437462 5 2 \N \N 100 \N \N f f 0 \N 1670235776 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8400 2022-03-07 09:39:30.947 2022-01-31 14:14:00.726 TraceyMullins8XX \N \N \N 33600178 5 2 \N \N 100 \N \N f f 0 \N 2227470929 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8448 2023-10-10 14:48:19.81 2021-10-30 04:40:06.139 LindsayWalton38V \N \N \N 241707942 5 2 \N \N 100 \N \N f f 0 \N 1637584010 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8505 2021-10-14 02:43:37.355 2023-09-18 23:14:11.637 FrancisRodriguezI0D \N \N \N 67462924 5 2 \N \N 100 \N \N f f 0 \N 1423746583 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8506 2022-07-11 14:47:46.901 2022-06-04 23:36:21.547 ColleenFryZQE \N \N \N 118511994 5 2 \N \N 100 \N \N f f 0 \N 918117185 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8508 2022-03-03 12:24:42.317 2021-12-06 06:57:19.242 SheriCarpenter2KM \N \N \N 229382098 5 2 \N \N 100 \N \N f f 0 \N 675807618 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8535 2022-02-23 02:24:09.42 2023-04-19 17:03:27.197 JonathonHaynesK2Y \N \N \N 214710660 5 2 \N \N 100 \N \N f f 0 \N 1074584243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8541 2022-10-12 01:15:48.97 2022-08-06 15:14:18.881 MichaelaSkinnerGKK \N \N \N 193701614 5 2 \N \N 100 \N \N f f 0 \N 2281129260 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8544 2023-10-03 08:56:12.728 2021-10-29 02:49:11.9 MarisaLewisSX7 \N \N \N 31546586 5 2 \N \N 100 \N \N f f 0 \N 1082614403 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8569 2023-08-19 18:53:33.721 2021-12-06 05:35:15.741 ShellyCooper1LR \N \N \N 206864140 5 2 \N \N 100 \N \N f f 0 \N 283658497 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8648 2021-11-27 01:57:26.084 2021-12-31 19:33:20.709 ZoeDoughertyK2N \N \N \N 173464505 5 2 \N \N 100 \N \N f f 0 \N 1855156787 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8664 2022-06-09 09:15:00.201 2022-01-04 18:35:39.89 DevinGentry5MB \N \N \N 156665711 5 2 \N \N 100 \N \N f f 0 \N 2371846035 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8713 2022-12-06 23:51:12.162 2021-10-24 14:44:07.502 DanOrtegaV3Y \N \N \N 25236049 5 2 \N \N 100 \N \N f f 0 \N 1261255326 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8726 2023-10-02 23:31:41.51 2023-01-11 19:38:58.503 FranciscoDawson29D \N \N \N 94512923 5 2 \N \N 100 \N \N f f 0 \N 244462469 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8841 2023-07-11 20:42:09.59 2022-05-27 07:06:35.082 AlexanderKimGBB \N \N \N 124772439 5 2 \N \N 100 \N \N f f 0 \N 557984645 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8916 2022-02-12 17:44:09.17 2023-09-29 21:37:26.95 RobinWillis4MC \N \N \N 50798901 5 2 \N \N 100 \N \N f f 0 \N 1249198255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8954 2024-02-15 16:30:46.652 2024-02-18 07:03:21.045 AnneSalazarP9F \N \N \N 46363610 5 2 \N \N 100 \N \N f f 0 \N 239523154 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8998 2023-01-30 02:38:42.095 2023-02-06 13:14:06.33 BrittneyRiveraQG7 \N \N \N 168648175 5 2 \N \N 100 \N \N f f 0 \N 2083756159 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9084 2021-10-31 15:16:18.675 2022-05-24 18:08:27.857 DeniseDougherty6BG \N \N \N 152884642 5 2 \N \N 100 \N \N f f 0 \N 592090830 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9107 2023-03-08 17:43:36.735 2024-01-18 06:35:34.205 CharlotteHester8B8 \N \N \N 60093075 5 2 \N \N 100 \N \N f f 0 \N 1657652331 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9109 2023-01-24 11:40:35.879 2022-08-13 23:47:19.409 NeilGrayJHV \N \N \N 68186680 5 2 \N \N 100 \N \N f f 0 \N 1687119338 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9150 2022-07-07 12:24:03.121 2022-09-23 21:33:30.508 KaylaPitts2QF \N \N \N 116375792 5 2 \N \N 100 \N \N f f 0 \N 1575148981 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9159 2023-05-06 17:30:20.989 2022-01-03 02:47:46.365 KendraCareyKWM \N \N \N 150104382 5 2 \N \N 100 \N \N f f 0 \N 1911530600 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9167 2022-01-06 23:27:24.507 2023-08-12 02:42:05.519 RandallJuarezIN6 \N \N \N 231670069 5 2 \N \N 100 \N \N f f 0 \N 1907121654 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9177 2022-05-25 23:49:14.533 2023-10-14 23:24:02.953 TimShermanN4Y \N \N \N 2976144 5 2 \N \N 100 \N \N f f 0 \N 1545422662 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9184 2023-11-24 10:52:09.598 2022-06-08 15:11:06.996 AnnOconnorSQL \N \N \N 8974593 5 2 \N \N 100 \N \N f f 0 \N 917579836 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9242 2023-02-04 02:31:08.94 2023-02-20 17:35:16.613 GlennScottOVN \N \N \N 20404879 5 2 \N \N 100 \N \N f f 0 \N 2213702653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9246 2021-10-17 23:58:52.699 2022-12-12 12:13:24.781 KimMarquez7G5 \N \N \N 176532124 5 2 \N \N 100 \N \N f f 0 \N 2071486279 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9275 2022-12-21 01:54:27.924 2022-04-25 23:49:30.635 DevonHortonKHL \N \N \N 11818232 5 2 \N \N 100 \N \N f f 0 \N 776125081 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9276 2024-02-12 18:57:22.361 2022-07-14 12:19:05.478 HeatherGuerraY4X \N \N \N 86672279 5 2 \N \N 100 \N \N f f 0 \N 2495755909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9290 2023-03-30 06:13:07.546 2021-11-19 08:13:20.978 JodyGoodwinKWW \N \N \N 42227108 5 2 \N \N 100 \N \N f f 0 \N 490525392 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9330 2022-12-21 12:46:21.783 2022-07-10 13:09:58.776 MarcoHooverF7M \N \N \N 77452598 5 2 \N \N 100 \N \N f f 0 \N 2155879844 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9331 2022-03-05 19:30:30.763 2023-06-30 13:55:39.596 MichelleRothZ80 \N \N \N 147754022 5 2 \N \N 100 \N \N f f 0 \N 2115277677 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9341 2021-12-28 00:26:51.839 2023-11-09 16:37:22.945 ShawnWileyNSU \N \N \N 231473402 5 2 \N \N 100 \N \N f f 0 \N 1806174008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9342 2023-08-03 00:23:38.328 2022-11-17 08:29:23.214 HaileyMccoyV8X \N \N \N 37791964 5 2 \N \N 100 \N \N f f 0 \N 2051016767 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9345 2023-09-14 22:32:19.231 2022-07-29 07:13:41.155 MarvinGilmoreLIT \N \N \N 88821080 5 2 \N \N 100 \N \N f f 0 \N 2459382633 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9426 2023-03-27 01:09:23.685 2022-02-26 07:09:11.279 LaurieMurillo5OT \N \N \N 220103330 5 2 \N \N 100 \N \N f f 0 \N 106414657 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9427 2023-06-14 22:30:07.893 2022-09-23 10:20:58.878 BeverlyChandlerGSL \N \N \N 194873361 5 2 \N \N 100 \N \N f f 0 \N 2244926849 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9476 2022-01-16 07:26:39.552 2022-05-02 19:09:26.936 AlejandroHall6FJ \N \N \N 153789128 5 2 \N \N 100 \N \N f f 0 \N 1343222095 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9482 2023-11-06 16:23:09.64 2022-10-16 01:57:10.254 SandyLevyTKU \N \N \N 232567979 5 2 \N \N 100 \N \N f f 0 \N 196782479 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9517 2023-02-06 11:49:08.207 2022-07-07 17:52:56.735 ErikaBarreraLBI \N \N \N 210024235 5 2 \N \N 100 \N \N f f 0 \N 684418703 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9655 2023-03-18 22:58:51.492 2021-11-22 06:51:41.99 ShelbyRhodesWB1 \N \N \N 193558079 5 2 \N \N 100 \N \N f f 0 \N 1069526421 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9809 2023-01-22 20:43:32.915 2022-08-22 23:02:26.033 ShirleyParsonsFCN \N \N \N 91154244 5 2 \N \N 100 \N \N f f 0 \N 1383988831 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9816 2021-10-16 00:53:38.256 2022-09-25 19:18:18.772 AlanRiceQUD \N \N \N 241989029 5 2 \N \N 100 \N \N f f 0 \N 953458355 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9833 2021-10-08 02:25:37.915 2023-08-03 04:13:46.582 JulianLaneX0F \N \N \N 118404902 5 2 \N \N 100 \N \N f f 0 \N 263288560 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9844 2022-07-12 15:51:41.128 2022-12-14 09:04:29.797 TaylorValdezVA9 \N \N \N 115355574 5 2 \N \N 100 \N \N f f 0 \N 2434472367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9874 2023-01-23 10:18:44.901 2022-09-06 14:00:17.53 JoyRamosJAN \N \N \N 165802140 5 2 \N \N 100 \N \N f f 0 \N 831888185 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9982 2023-09-18 22:49:59.254 2023-04-26 12:49:34.446 AdrianaValenzuela85L \N \N \N 186692150 5 2 \N \N 100 \N \N f f 0 \N 1282474498 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10007 2023-06-18 17:58:06.716 2022-08-24 23:16:51.054 BryceMathisHCL \N \N \N 143760173 5 2 \N \N 100 \N \N f f 0 \N 2187473408 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10056 2022-09-10 01:16:11.249 2023-12-13 15:39:27.015 RobynPhelpsNI2 \N \N \N 114236178 5 2 \N \N 100 \N \N f f 0 \N 2373805977 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10094 2021-10-19 04:37:32.719 2022-12-19 04:47:34.051 VeronicaSmall5SP \N \N \N 43164196 5 2 \N \N 100 \N \N f f 0 \N 2475790912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10270 2022-12-18 15:21:26.267 2022-02-15 22:31:42.952 RobertoRoweW4U \N \N \N 86226317 5 2 \N \N 100 \N \N f f 0 \N 1521727934 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10291 2022-10-13 00:07:38.94 2023-08-04 21:48:37.745 ClaudiaBrooksGFC \N \N \N 227382316 5 2 \N \N 100 \N \N f f 0 \N 931014788 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10359 2021-10-27 22:06:16.54 2022-05-03 21:05:41.99 TracyBerg0TB \N \N \N 51671656 5 2 \N \N 100 \N \N f f 0 \N 1448283160 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10398 2022-06-07 23:49:04.72 2022-11-23 02:25:09.484 DerrickClarkeY0R \N \N \N 104731566 5 2 \N \N 100 \N \N f f 0 \N 337441117 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10409 2023-04-30 00:41:28.354 2023-12-20 14:11:02.304 RalphMilesKUX \N \N \N 112859221 5 2 \N \N 100 \N \N f f 0 \N 2403363615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10469 2022-04-15 01:19:45.974 2022-09-02 03:59:34.007 CoreyPatel77F \N \N \N 36325281 5 2 \N \N 100 \N \N f f 0 \N 441014402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10484 2021-11-25 01:28:39.574 2023-10-15 19:49:16.966 GabrielMorton4ON \N \N \N 19435424 5 2 \N \N 100 \N \N f f 0 \N 670248437 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10493 2023-11-16 17:56:38.763 2022-03-12 14:39:52.476 SoniaHebertXCY \N \N \N 56612809 5 2 \N \N 100 \N \N f f 0 \N 1918122851 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10519 2023-02-26 14:49:35.099 2022-08-13 18:04:56.971 KimberlyWalkerJG3 \N \N \N 49988615 5 2 \N \N 100 \N \N f f 0 \N 2447366345 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10536 2022-05-21 09:42:24.97 2023-10-30 03:14:52.515 BiancaGreen6Z1 \N \N \N 78418028 5 2 \N \N 100 \N \N f f 0 \N 493116592 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10591 2023-08-03 03:58:05.327 2022-02-12 10:29:03.065 JenniferCurryMKB \N \N \N 48388109 5 2 \N \N 100 \N \N f f 0 \N 766284894 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10608 2021-12-12 23:45:23.858 2023-01-16 10:04:23.18 MercedesPowers3KL \N \N \N 167485849 5 2 \N \N 100 \N \N f f 0 \N 738527050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10693 2022-04-25 18:42:24.642 2024-02-07 21:08:34.836 KaitlinBuck7KA \N \N \N 7748576 5 2 \N \N 100 \N \N f f 0 \N 1308776528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10698 2022-01-25 18:25:31.93 2021-11-23 22:48:17.223 RickyVillaG1S \N \N \N 42219432 5 2 \N \N 100 \N \N f f 0 \N 1554511401 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10771 2023-02-03 07:39:09.107 2023-08-21 12:59:59.35 PaigeDuffyE0H \N \N \N 159032622 5 2 \N \N 100 \N \N f f 0 \N 782052853 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10934 2022-02-24 13:20:55.857 2023-10-23 21:02:44.102 JennyDukeA0X \N \N \N 34902786 5 2 \N \N 100 \N \N f f 0 \N 1897611356 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11073 2021-11-14 06:01:23.273 2023-09-01 17:51:35.981 SoniaNorrisVPX \N \N \N 101359967 5 2 \N \N 100 \N \N f f 0 \N 2273689806 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11165 2022-06-29 18:24:19.196 2021-10-07 02:31:07.874 GlennRussellFYD \N \N \N 114240584 5 2 \N \N 100 \N \N f f 0 \N 2483744457 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11192 2023-09-05 22:43:39.773 2024-01-28 18:17:32.275 MikaylaAlexanderK77 \N \N \N 142885004 5 2 \N \N 100 \N \N f f 0 \N 991526140 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11240 2022-10-13 15:47:21.703 2024-01-19 10:16:01.048 LeonardMeyerHCX \N \N \N 215365601 5 2 \N \N 100 \N \N f f 0 \N 1495075069 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11288 2023-10-24 23:13:39.726 2021-12-28 11:25:34.023 BrandyPerez24F \N \N \N 36934003 5 2 \N \N 100 \N \N f f 0 \N 2446233124 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11298 2024-02-10 18:11:41.008 2023-01-20 08:38:19.313 TheresaCarneyGRV \N \N \N 44747033 5 2 \N \N 100 \N \N f f 0 \N 462242202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11430 2022-11-27 06:58:22.577 2022-09-28 15:26:12.191 TiffanyLutzMT4 \N \N \N 101891845 5 2 \N \N 100 \N \N f f 0 \N 1255514933 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11443 2022-11-05 18:16:24.064 2023-11-21 01:02:19.992 JillFritzGPY \N \N \N 136394 5 2 \N \N 100 \N \N f f 0 \N 1046581149 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11458 2021-11-02 22:55:06.531 2023-10-20 08:54:23.48 PatrickMcmahonUSC \N \N \N 118934893 5 2 \N \N 100 \N \N f f 0 \N 2318018999 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11477 2021-12-16 21:01:55.419 2021-12-12 18:15:22.17 OliviaDiazR1H \N \N \N 136671771 5 2 \N \N 100 \N \N f f 0 \N 1977366817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11527 2023-04-26 23:59:10.657 2022-06-05 01:17:02.391 GabrielMarsh7VR \N \N \N 74288745 5 2 \N \N 100 \N \N f f 0 \N 1913666642 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11561 2024-02-02 16:06:03.792 2023-03-11 23:15:55.195 HollyTownsendEZV \N \N \N 117613794 5 2 \N \N 100 \N \N f f 0 \N 258644415 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11621 2021-10-03 08:30:19.637 2022-09-25 20:59:55.272 AprilDelacruzY1Z \N \N \N 79914468 5 2 \N \N 100 \N \N f f 0 \N 1476934999 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11648 2023-01-23 10:24:21.328 2023-10-17 17:47:28.921 AlbertHintonCUI \N \N \N 132559051 5 2 \N \N 100 \N \N f f 0 \N 315008278 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11698 2024-01-03 01:46:16.035 2023-12-13 14:27:48.429 GlennCherry65K \N \N \N 145149982 5 2 \N \N 100 \N \N f f 0 \N 1467111803 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11714 2022-02-01 03:55:06.826 2022-01-18 21:03:48.095 RobynRios8H2 \N \N \N 6065133 5 2 \N \N 100 \N \N f f 0 \N 1797830114 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11750 2023-01-02 14:15:31.122 2022-09-08 12:07:42.056 IsaacJamesNJI \N \N \N 76926875 5 2 \N \N 100 \N \N f f 0 \N 65108961 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11760 2023-08-12 00:08:00.919 2022-06-17 18:44:29.051 ErnestZamoraUKN \N \N \N 235740156 5 2 \N \N 100 \N \N f f 0 \N 2076767896 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11798 2022-08-09 06:31:25.038 2023-11-05 20:52:56.114 MistyMcdonaldYP7 \N \N \N 44296399 5 2 \N \N 100 \N \N f f 0 \N 2262933878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11819 2021-12-25 10:03:29.687 2024-01-07 04:25:30.401 WhitneySwansonHOT \N \N \N 171350718 5 2 \N \N 100 \N \N f f 0 \N 477292372 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11820 2022-03-27 01:37:33.045 2022-09-10 15:50:40.634 SherrySanchez6CC \N \N \N 7099714 5 2 \N \N 100 \N \N f f 0 \N 1990896637 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11862 2022-02-01 08:33:25.148 2022-02-11 20:44:53.864 MichaelaHarrell7NB \N \N \N 151116897 5 2 \N \N 100 \N \N f f 0 \N 1894817246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11866 2022-01-19 10:04:24.282 2022-05-03 22:24:10.722 BrandonBruceC3L \N \N \N 111731905 5 2 \N \N 100 \N \N f f 0 \N 869365941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11873 2021-11-19 20:25:58.707 2022-09-25 16:13:43.371 KennethNichols3IT \N \N \N 61342166 5 2 \N \N 100 \N \N f f 0 \N 2122513053 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11897 2023-04-04 12:17:28.464 2021-10-18 06:07:25.123 NathanPadillaTTR \N \N \N 152970347 5 2 \N \N 100 \N \N f f 0 \N 2098974374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11938 2021-12-18 21:20:38.28 2022-09-21 03:30:20.527 ClaytonBaird8FH \N \N \N 170780233 5 2 \N \N 100 \N \N f f 0 \N 1560220001 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11942 2023-12-30 03:02:26.778 2023-10-13 22:13:12.511 BrittanyHouston76R \N \N \N 185050591 5 2 \N \N 100 \N \N f f 0 \N 895041729 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11996 2023-03-26 22:12:27.589 2023-05-12 12:22:23.531 KristinaSalasQI7 \N \N \N 97382565 5 2 \N \N 100 \N \N f f 0 \N 461225638 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12057 2023-10-26 16:00:33.26 2023-01-10 08:42:26.986 SavannahBurke2F6 \N \N \N 203589835 5 2 \N \N 100 \N \N f f 0 \N 401104622 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12122 2023-09-30 07:01:01.76 2023-10-15 21:48:41.206 KentAguilar30R \N \N \N 51284265 5 2 \N \N 100 \N \N f f 0 \N 218135829 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12139 2022-03-27 16:05:08.322 2022-07-16 16:30:39.626 JeanneWyattRNF \N \N \N 55634110 5 2 \N \N 100 \N \N f f 0 \N 1165054306 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12222 2021-10-27 23:19:50.737 2023-08-06 05:04:58.036 HaleyPrattZGY \N \N \N 18254858 5 2 \N \N 100 \N \N f f 0 \N 1192836340 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12265 2023-12-27 00:58:44.756 2022-04-19 14:25:51.363 DanKellerZ4I \N \N \N 41155525 5 2 \N \N 100 \N \N f f 0 \N 1220708540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12268 2023-11-09 20:09:02.9 2022-05-15 11:52:21.51 TrevorFriedmanXOG \N \N \N 124575819 5 2 \N \N 100 \N \N f f 0 \N 1977701461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12272 2023-01-02 20:19:17.134 2022-07-31 04:08:33.926 BruceRodriguez0GB \N \N \N 182436842 5 2 \N \N 100 \N \N f f 0 \N 1999615767 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12277 2022-09-01 05:53:41.144 2022-05-17 08:40:35.506 StacieGreenYIM \N \N \N 110640026 5 2 \N \N 100 \N \N f f 0 \N 327158158 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12289 2023-01-29 01:36:45.105 2023-06-03 16:03:38.415 CraigNoble460 \N \N \N 32566532 5 2 \N \N 100 \N \N f f 0 \N 242672295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12334 2023-11-16 08:36:55.039 2022-11-11 18:28:08.11 HerbertGilmoreTF5 \N \N \N 8473760 5 2 \N \N 100 \N \N f f 0 \N 573883357 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12346 2022-09-01 01:44:19.678 2023-09-03 21:30:53.109 JohnWoodwardQRX \N \N \N 97884885 5 2 \N \N 100 \N \N f f 0 \N 121691999 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12422 2022-09-04 14:08:46.31 2021-11-25 03:31:05.514 JoshuaJordan02Q \N \N \N 213413528 5 2 \N \N 100 \N \N f f 0 \N 876988376 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12516 2023-05-10 03:10:34.141 2023-05-08 11:55:38.606 TraciKruegerFV2 \N \N \N 247220245 5 2 \N \N 100 \N \N f f 0 \N 29288810 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12562 2023-03-17 19:44:47.892 2023-10-30 11:27:53.184 KarlaMurphy84Q \N \N \N 116108300 5 2 \N \N 100 \N \N f f 0 \N 1043160355 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12606 2022-02-20 19:01:07.769 2023-11-24 19:56:18.849 AlexaKnappPJ8 \N \N \N 179200637 5 2 \N \N 100 \N \N f f 0 \N 42345537 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12609 2023-04-07 17:43:08.93 2023-08-05 02:38:06.882 YvonnePhelpsGOS \N \N \N 39833405 5 2 \N \N 100 \N \N f f 0 \N 644083528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12708 2024-01-14 12:09:02.764 2022-04-14 23:00:27.015 KelseyParrish8U9 \N \N \N 54404736 5 2 \N \N 100 \N \N f f 0 \N 240164284 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12721 2022-02-18 01:18:44.877 2022-06-15 05:07:18.301 KirstenFarrellTYL \N \N \N 76058315 5 2 \N \N 100 \N \N f f 0 \N 1401027273 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12738 2022-04-04 06:05:51.434 2023-05-31 17:14:50.386 SylviaCohenBN3 \N \N \N 77270624 5 2 \N \N 100 \N \N f f 0 \N 2176208042 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12744 2023-11-13 18:15:35.618 2024-02-17 02:48:46.679 GeraldOlsonQUY \N \N \N 79733888 5 2 \N \N 100 \N \N f f 0 \N 542578454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12769 2023-11-09 21:25:39.008 2022-06-17 13:32:48.843 JerryLaneDI1 \N \N \N 207520185 5 2 \N \N 100 \N \N f f 0 \N 12380819 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12779 2022-04-20 01:04:23.107 2022-02-16 12:22:57.539 MarcMarksPLU \N \N \N 136034818 5 2 \N \N 100 \N \N f f 0 \N 1555078047 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12930 2024-01-18 23:57:53.523 2024-01-01 13:31:01.202 BillHartmanXC2 \N \N \N 141119391 5 2 \N \N 100 \N \N f f 0 \N 534384929 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12951 2023-03-22 08:58:52.08 2022-11-09 07:01:03.162 RalphScottRFC \N \N \N 173303302 5 2 \N \N 100 \N \N f f 0 \N 961080289 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12976 2021-12-15 23:50:39.696 2022-04-22 06:15:01.311 AliciaMelendezM0Q \N \N \N 136216840 5 2 \N \N 100 \N \N f f 0 \N 1534097391 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13042 2023-01-10 07:02:06.721 2023-09-23 17:28:14.005 OmarBridges9NM \N \N \N 216103153 5 2 \N \N 100 \N \N f f 0 \N 1647458473 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13046 2022-01-04 05:07:20.82 2022-02-28 05:48:48.03 GlennBallHLE \N \N \N 168912132 5 2 \N \N 100 \N \N f f 0 \N 933344183 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13133 2023-12-20 08:46:11.58 2023-11-04 19:58:02.005 KentCampbellQRN \N \N \N 233474469 5 2 \N \N 100 \N \N f f 0 \N 1416829242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13216 2023-05-24 04:14:36.044 2021-10-29 05:55:31.121 AntonioCummingsYQO \N \N \N 208408641 5 2 \N \N 100 \N \N f f 0 \N 1104798384 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13217 2022-11-18 13:36:09.985 2022-03-23 19:27:10.413 NicholasBurchO0B \N \N \N 11648376 5 2 \N \N 100 \N \N f f 0 \N 1290965462 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13249 2022-12-18 16:35:07.286 2023-01-07 18:41:11.517 NatalieWernerB48 \N \N \N 61114864 5 2 \N \N 100 \N \N f f 0 \N 371447545 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13348 2023-03-01 07:12:40.509 2023-06-08 20:44:30.918 JamieSherman7V3 \N \N \N 187001010 5 2 \N \N 100 \N \N f f 0 \N 208803513 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13361 2024-02-16 04:23:06.709 2022-07-07 01:42:16.538 DeanFischerPSY \N \N \N 100457749 5 2 \N \N 100 \N \N f f 0 \N 876081322 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13365 2023-07-15 04:10:58.427 2023-06-02 11:33:08.188 JimmyWatkinsHH2 \N \N \N 168882193 5 2 \N \N 100 \N \N f f 0 \N 566765780 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13406 2022-08-05 23:57:43.212 2021-12-21 06:39:31.332 BryanLevine206 \N \N \N 100581328 5 2 \N \N 100 \N \N f f 0 \N 2130545856 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13517 2023-05-18 21:13:05.24 2023-03-15 21:41:08.187 BarryHardingXCP \N \N \N 176076639 5 2 \N \N 100 \N \N f f 0 \N 1226865813 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13544 2022-07-18 00:53:01.599 2024-02-14 06:01:04.01 SheenaHollandYFK \N \N \N 37979294 5 2 \N \N 100 \N \N f f 0 \N 1723545440 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13547 2022-01-11 16:50:28.968 2022-12-27 03:37:45.392 DarrylBridgesKP3 \N \N \N 114761354 5 2 \N \N 100 \N \N f f 0 \N 1862928945 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13553 2023-09-28 03:41:34.324 2023-02-02 02:07:30.472 CollinCopeland4E8 \N \N \N 200654488 5 2 \N \N 100 \N \N f f 0 \N 1399594749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13574 2022-08-22 03:48:43.226 2023-01-21 02:42:00.828 LoganNealG26 \N \N \N 166050357 5 2 \N \N 100 \N \N f f 0 \N 1730476323 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13622 2021-11-22 09:00:09.28 2022-05-28 01:46:15.989 AmberRodgersTEG \N \N \N 20447523 5 2 \N \N 100 \N \N f f 0 \N 911144811 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13782 2022-07-26 01:45:38.652 2023-02-14 15:06:16.951 RobertaBrandt1V8 \N \N \N 30113547 5 2 \N \N 100 \N \N f f 0 \N 802595174 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13843 2022-08-06 07:38:32.369 2022-01-20 03:51:18.876 TaraHuynh520 \N \N \N 81267949 5 2 \N \N 100 \N \N f f 0 \N 126977785 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13903 2023-08-20 05:55:13.605 2022-10-06 18:32:32.859 ChelseaFrazierZ7D \N \N \N 238103674 5 2 \N \N 100 \N \N f f 0 \N 21666752 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13921 2021-10-12 16:52:44.994 2022-09-02 08:10:14.381 HunterBeanXQN \N \N \N 77760151 5 2 \N \N 100 \N \N f f 0 \N 980260961 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13927 2022-01-17 09:58:11.182 2022-12-08 00:19:05.905 GordonMoore3R8 \N \N \N 46705845 5 2 \N \N 100 \N \N f f 0 \N 891071458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13931 2022-11-08 13:36:58.395 2023-08-29 05:34:20.253 AlishaHollandTNJ \N \N \N 25065426 5 2 \N \N 100 \N \N f f 0 \N 544889846 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14015 2024-01-08 04:46:43.185 2022-08-11 11:06:08.708 CoryMaxwellQAW \N \N \N 113422783 5 2 \N \N 100 \N \N f f 0 \N 915480061 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14045 2023-11-20 08:41:50.232 2022-02-28 15:43:07.646 LydiaDownsGEB \N \N \N 175209358 5 2 \N \N 100 \N \N f f 0 \N 865499678 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14074 2023-12-16 17:31:36.003 2022-05-16 06:37:26.911 JerryCrosbyXE2 \N \N \N 101381942 5 2 \N \N 100 \N \N f f 0 \N 1081470905 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14152 2021-12-13 15:42:16.76 2022-11-27 11:50:53.309 AlishaBryanEWQ \N \N \N 48937466 5 2 \N \N 100 \N \N f f 0 \N 1474784924 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14247 2023-04-26 00:35:07.881 2022-06-10 23:03:15.975 StevenRoblesMMT \N \N \N 231686644 5 2 \N \N 100 \N \N f f 0 \N 1458590547 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14258 2022-09-07 21:41:53.33 2023-03-30 00:34:04.207 WayneEllisL44 \N \N \N 137894138 5 2 \N \N 100 \N \N f f 0 \N 604407303 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14267 2022-08-08 16:29:01.105 2022-10-05 15:05:17.868 KimSchultzUQP \N \N \N 119458696 5 2 \N \N 100 \N \N f f 0 \N 2049248750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14278 2022-01-31 21:18:46.997 2023-10-16 07:42:34.211 MarieBallardVBV \N \N \N 79473123 5 2 \N \N 100 \N \N f f 0 \N 1789892652 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14308 2022-03-18 00:24:12.157 2022-04-18 10:54:40.649 MariahObrienTBW \N \N \N 197900026 5 2 \N \N 100 \N \N f f 0 \N 579052051 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14381 2021-12-03 01:53:58.847 2023-09-22 05:03:55.328 MalloryGarrettD6Z \N \N \N 25874202 5 2 \N \N 100 \N \N f f 0 \N 1048327433 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14385 2022-07-19 08:58:43.165 2023-01-08 17:10:07.435 CalebHarveyY4L \N \N \N 64811596 5 2 \N \N 100 \N \N f f 0 \N 384271922 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14404 2021-11-01 00:01:56.826 2023-11-21 21:51:06.257 TheodoreHerreraLA1 \N \N \N 94665586 5 2 \N \N 100 \N \N f f 0 \N 646832760 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14449 2023-12-04 15:50:45.092 2022-01-02 00:34:21.466 MaryConleySC2 \N \N \N 218558730 5 2 \N \N 100 \N \N f f 0 \N 421863148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14489 2022-05-30 17:09:46.43 2022-07-18 09:24:32.098 MercedesFrench6XH \N \N \N 5601553 5 2 \N \N 100 \N \N f f 0 \N 1583686959 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14515 2023-11-05 18:07:31.953 2022-01-16 03:54:30.203 CarlaHebertML0 \N \N \N 50776056 5 2 \N \N 100 \N \N f f 0 \N 1563579079 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14545 2023-11-30 12:47:58.103 2023-08-03 01:08:00.29 MicheleBooth1YS \N \N \N 24976439 5 2 \N \N 100 \N \N f f 0 \N 1991394461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14552 2023-04-23 18:48:16.077 2021-12-13 10:07:23.337 BethHansenKRX \N \N \N 78703890 5 2 \N \N 100 \N \N f f 0 \N 855134992 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14651 2022-01-07 12:59:42.506 2022-05-04 14:16:58.552 CassandraBanks0QF \N \N \N 121069298 5 2 \N \N 100 \N \N f f 0 \N 57130052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14657 2023-07-27 12:26:45.218 2024-02-08 03:38:52.546 LeroyMarquezLD1 \N \N \N 57711301 5 2 \N \N 100 \N \N f f 0 \N 1093998542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14669 2023-10-31 04:47:43.016 2022-07-12 09:01:00.371 JuanBensonY9J \N \N \N 178391341 5 2 \N \N 100 \N \N f f 0 \N 526899262 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14705 2022-12-31 02:15:41.032 2023-06-02 23:05:37.751 PamelaWoodard852 \N \N \N 92995904 5 2 \N \N 100 \N \N f f 0 \N 128010186 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14791 2022-04-01 18:23:55.462 2022-09-28 08:36:51.304 TiffanyPonceERQ \N \N \N 163291891 5 2 \N \N 100 \N \N f f 0 \N 2141942245 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14857 2023-06-07 09:50:30.489 2022-07-12 19:45:05.595 MartinAlexanderRDU \N \N \N 54161745 5 2 \N \N 100 \N \N f f 0 \N 98108946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14905 2021-12-19 13:55:05.711 2022-07-16 12:45:48.679 MarciaKiddGPO \N \N \N 160384399 5 2 \N \N 100 \N \N f f 0 \N 1510844233 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14910 2022-11-22 03:03:36.354 2022-03-08 21:50:15.66 GeraldSalinasW46 \N \N \N 205940104 5 2 \N \N 100 \N \N f f 0 \N 1446082234 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14939 2023-04-25 07:20:51.973 2022-12-24 15:35:30.349 LarryButlerBXJ \N \N \N 79186464 5 2 \N \N 100 \N \N f f 0 \N 1947768571 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14941 2022-10-07 21:59:06.369 2022-04-19 22:01:32.355 SarahVincent5G9 \N \N \N 36634146 5 2 \N \N 100 \N \N f f 0 \N 1823030635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14959 2022-04-30 21:07:29.444 2021-10-09 04:25:46.461 WendySotoORJ \N \N \N 17399899 5 2 \N \N 100 \N \N f f 0 \N 1315654059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15052 2022-04-04 01:17:37.537 2021-10-23 11:16:40.715 CatherineFrazierKJV \N \N \N 72780716 5 2 \N \N 100 \N \N f f 0 \N 2363940061 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15075 2023-02-13 12:17:33.885 2023-01-20 18:17:20.894 AdrienneMayer09D \N \N \N 189577283 5 2 \N \N 100 \N \N f f 0 \N 1929186964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15088 2022-06-21 22:56:02.986 2022-03-15 16:04:58.82 AnnaHeathV9N \N \N \N 181495647 5 2 \N \N 100 \N \N f f 0 \N 644166199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15094 2023-05-13 09:09:16.569 2022-06-25 18:57:49.174 AlecBuckleyWPE \N \N \N 243364954 5 2 \N \N 100 \N \N f f 0 \N 1871592573 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15100 2021-11-01 08:39:47.593 2022-02-17 15:14:52.698 MicheleJoyceBXE \N \N \N 34333408 5 2 \N \N 100 \N \N f f 0 \N 2102708292 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15103 2022-06-26 16:38:26.38 2022-03-31 15:02:37.239 AnnaPatterson8HB \N \N \N 231216942 5 2 \N \N 100 \N \N f f 0 \N 1892520192 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15115 2023-11-04 06:13:14.319 2022-07-03 06:33:08.874 ChloeBradleyF0W \N \N \N 173077531 5 2 \N \N 100 \N \N f f 0 \N 1406770028 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15119 2023-11-11 08:49:33.01 2023-10-27 17:56:28.698 PaigeHorneCVG \N \N \N 52327898 5 2 \N \N 100 \N \N f f 0 \N 1068748676 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15139 2022-05-13 10:41:12.032 2022-04-08 07:08:47.729 BeckyWallace5FD \N \N \N 186667302 5 2 \N \N 100 \N \N f f 0 \N 697231701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15159 2022-09-26 09:37:24.276 2021-10-21 06:37:01.828 ColtonHamptonEW9 \N \N \N 233637082 5 2 \N \N 100 \N \N f f 0 \N 2193438623 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15161 2021-10-01 05:00:49.045 2022-09-15 02:26:34.988 EthanPetersonRHM \N \N \N 117212831 5 2 \N \N 100 \N \N f f 0 \N 1040185810 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15180 2022-03-04 22:53:45.403 2023-08-03 07:35:38.704 RicardoZunigaM75 \N \N \N 46194050 5 2 \N \N 100 \N \N f f 0 \N 1165380881 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15196 2022-09-06 12:57:07.208 2023-08-22 18:52:08.177 TamaraHensleyYF2 \N \N \N 102623538 5 2 \N \N 100 \N \N f f 0 \N 2191084155 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15226 2022-10-29 06:32:19.051 2022-06-07 09:32:00.583 PhillipBates5GB \N \N \N 138943162 5 2 \N \N 100 \N \N f f 0 \N 502316625 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15266 2023-03-11 13:42:16.479 2022-03-05 04:49:46.026 DarrenLarsonU82 \N \N \N 164894823 5 2 \N \N 100 \N \N f f 0 \N 1412376235 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15271 2022-03-27 11:06:42.832 2021-10-07 09:45:45.84 AmandaBlanchardHQX \N \N \N 176978228 5 2 \N \N 100 \N \N f f 0 \N 1661954990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15282 2022-12-17 16:37:32.331 2023-10-16 03:07:26.314 MarkMcknight1YJ \N \N \N 193749506 5 2 \N \N 100 \N \N f f 0 \N 895153504 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15326 2022-07-16 04:12:39.645 2022-01-18 19:17:24.653 JacquelineWigginsYTE \N \N \N 150892884 5 2 \N \N 100 \N \N f f 0 \N 739664318 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15337 2024-01-24 20:48:05.013 2022-08-03 10:01:15.05 JoyMcmahon0ES \N \N \N 128051028 5 2 \N \N 100 \N \N f f 0 \N 1587172489 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15367 2023-11-21 04:13:11.007 2022-08-15 02:08:54.507 AmyMason8C1 \N \N \N 85443676 5 2 \N \N 100 \N \N f f 0 \N 1204428816 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15386 2024-01-19 21:06:27.399 2023-01-25 17:30:36.489 DanaCopelandVS4 \N \N \N 172446885 5 2 \N \N 100 \N \N f f 0 \N 2138512067 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15474 2022-02-07 14:52:00.211 2022-03-16 16:48:53.547 BreannaZhangZFJ \N \N \N 29693777 5 2 \N \N 100 \N \N f f 0 \N 1532783418 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15488 2022-04-10 19:48:37.248 2022-04-05 04:11:38.733 TannerPrinceVO3 \N \N \N 28398210 5 2 \N \N 100 \N \N f f 0 \N 451246026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15521 2021-10-28 20:02:39.82 2021-10-08 22:41:51.459 JeffreyStrongM3B \N \N \N 207537804 5 2 \N \N 100 \N \N f f 0 \N 572527299 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15536 2022-10-12 12:59:14.649 2022-07-22 18:16:16.046 BridgetMannFR7 \N \N \N 68620375 5 2 \N \N 100 \N \N f f 0 \N 389037594 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15549 2023-06-26 03:37:32.834 2023-09-25 00:01:10.529 AlexSilvaNE4 \N \N \N 155775539 5 2 \N \N 100 \N \N f f 0 \N 1157422929 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15560 2022-09-26 19:15:33.69 2023-07-14 13:48:10.906 PeggyHoYPV \N \N \N 41573572 5 2 \N \N 100 \N \N f f 0 \N 1391468236 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15594 2023-11-27 18:58:50.524 2023-11-15 08:04:03.4 NatalieWalshYCL \N \N \N 101910495 5 2 \N \N 100 \N \N f f 0 \N 955024007 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15617 2023-07-29 08:14:54.95 2022-05-14 16:41:10.379 SophiaCortezQNN \N \N \N 88546182 5 2 \N \N 100 \N \N f f 0 \N 940274632 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15690 2022-10-06 02:41:07.72 2023-06-29 07:02:02.871 PriscillaZamora4J5 \N \N \N 210596842 5 2 \N \N 100 \N \N f f 0 \N 127782037 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15697 2021-12-11 04:36:40.593 2023-09-26 16:36:20.882 NormanArcherGA3 \N \N \N 156102999 5 2 \N \N 100 \N \N f f 0 \N 2101953764 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15703 2022-01-12 20:02:21.255 2024-01-26 02:49:31.137 RobinTravisMXB \N \N \N 113911078 5 2 \N \N 100 \N \N f f 0 \N 1475826711 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15732 2022-07-07 17:55:37.808 2022-07-11 23:44:57.29 AlexandraFletcherRKI \N \N \N 236260095 5 2 \N \N 100 \N \N f f 0 \N 1923856204 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15806 2022-02-01 05:10:42.592 2023-12-31 19:06:42.309 GarrettGomezREF \N \N \N 185500469 5 2 \N \N 100 \N \N f f 0 \N 615680794 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15833 2021-12-22 07:58:12.067 2023-09-10 04:34:07.463 BethMurphyK9F \N \N \N 209926825 5 2 \N \N 100 \N \N f f 0 \N 1561121825 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15890 2023-04-11 09:39:24.275 2023-09-06 16:15:32.639 TerryCaseyWF5 \N \N \N 136861983 5 2 \N \N 100 \N \N f f 0 \N 1093693728 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15925 2022-08-04 18:05:19.325 2022-09-05 18:20:45.378 KrystalKnappG03 \N \N \N 216730622 5 2 \N \N 100 \N \N f f 0 \N 2251038257 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15938 2022-08-04 12:49:51.884 2022-03-19 16:43:59.691 DianaCarey25Q \N \N \N 242307041 5 2 \N \N 100 \N \N f f 0 \N 1578863544 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16004 2023-12-04 09:37:57.125 2024-01-27 10:53:47.06 DeanConradGZF \N \N \N 184096833 5 2 \N \N 100 \N \N f f 0 \N 1846560805 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16042 2022-04-14 20:29:40.2 2023-09-01 10:22:49.601 CandiceOrtizEW8 \N \N \N 90813601 5 2 \N \N 100 \N \N f f 0 \N 281734832 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16154 2022-07-18 05:59:21.592 2024-02-09 12:44:15.355 AngelaMooreOPJ \N \N \N 142200766 5 2 \N \N 100 \N \N f f 0 \N 539194639 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16177 2023-04-22 10:06:19.913 2022-12-14 06:31:37.392 ClaudiaDeanD0N \N \N \N 77214887 5 2 \N \N 100 \N \N f f 0 \N 1980797568 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16193 2022-09-26 05:07:23.806 2021-10-07 00:41:23.986 MartinGeorgeY1Y \N \N \N 162605612 5 2 \N \N 100 \N \N f f 0 \N 1704911123 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16858 2022-07-11 02:05:58.47 2022-09-19 19:47:22.819 NicoleLawsonCN9 \N \N \N 203264974 5 2 \N \N 100 \N \N f f 0 \N 2097839015 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16194 2022-07-18 13:33:44.53 2022-01-28 11:59:17.081 DanDawsonHN0 \N \N \N 237151436 5 2 \N \N 100 \N \N f f 0 \N 1880201085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16282 2023-09-10 12:40:35.474 2021-12-22 08:42:38.605 MelissaSheppardXT6 \N \N \N 64536350 5 2 \N \N 100 \N \N f f 0 \N 1294374684 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16284 2023-04-12 01:48:09.902 2022-01-03 08:56:17.859 CrystalDickerson0M4 \N \N \N 11112970 5 2 \N \N 100 \N \N f f 0 \N 2097518735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16296 2022-08-25 22:16:44.602 2021-12-18 14:30:55.754 PamelaBowers75E \N \N \N 109014143 5 2 \N \N 100 \N \N f f 0 \N 376497000 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16309 2023-12-13 19:51:52.228 2022-05-07 09:13:03.679 ShelbyArmstrongL32 \N \N \N 246690253 5 2 \N \N 100 \N \N f f 0 \N 237287926 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16336 2021-12-20 10:02:53.242 2023-03-12 23:16:49.07 BeckyMeza7SG \N \N \N 139640264 5 2 \N \N 100 \N \N f f 0 \N 1611823502 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16341 2023-09-03 02:54:18.172 2023-07-09 16:23:02.083 HunterArmstrongKPH \N \N \N 63377101 5 2 \N \N 100 \N \N f f 0 \N 833948057 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16355 2023-06-11 23:01:28.149 2021-12-02 18:39:18.287 BonnieGill82J \N \N \N 86061819 5 2 \N \N 100 \N \N f f 0 \N 619137517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16432 2022-11-22 11:45:35.206 2023-11-17 19:25:12.373 GilbertBarnettPIO \N \N \N 218162992 5 2 \N \N 100 \N \N f f 0 \N 1759010733 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16442 2022-06-11 10:03:25.015 2023-08-19 09:33:59.225 AntonioMullen8C0 \N \N \N 123383575 5 2 \N \N 100 \N \N f f 0 \N 277914284 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16485 2022-10-11 11:22:08.183 2022-04-07 03:58:13.623 AnthonyWebsterKRL \N \N \N 148545012 5 2 \N \N 100 \N \N f f 0 \N 644832544 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16505 2024-01-24 02:30:35.907 2024-01-14 11:34:08.591 GaryHartman8AB \N \N \N 157670501 5 2 \N \N 100 \N \N f f 0 \N 1492373619 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16532 2022-07-10 21:51:12.962 2022-06-01 11:13:24.609 JanetLindsey18E \N \N \N 136313662 5 2 \N \N 100 \N \N f f 0 \N 2106385935 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16542 2022-08-26 15:06:46.135 2023-02-21 16:28:38.079 RobertoBergerCMZ \N \N \N 249405658 5 2 \N \N 100 \N \N f f 0 \N 1426018914 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16556 2022-07-25 13:31:12.155 2022-02-24 19:45:02.672 WendyChungCTK \N \N \N 161953035 5 2 \N \N 100 \N \N f f 0 \N 2244799938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16571 2023-09-30 22:45:37.7 2023-12-02 12:28:05.547 LindaGilmoreENB \N \N \N 223772331 5 2 \N \N 100 \N \N f f 0 \N 990072129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16598 2023-08-28 10:27:02.425 2023-04-13 03:36:10.682 BrookeGonzalezVOG \N \N \N 20307078 5 2 \N \N 100 \N \N f f 0 \N 2148937319 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16633 2023-08-11 17:29:24.464 2022-06-18 15:11:39.412 HaydenUnderwoodI1B \N \N \N 103436695 5 2 \N \N 100 \N \N f f 0 \N 1912419847 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16649 2023-02-12 22:58:33.334 2023-01-26 03:00:36.47 SamanthaGutierrezVOB \N \N \N 206861134 5 2 \N \N 100 \N \N f f 0 \N 1683716305 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16704 2023-10-29 03:44:02.061 2023-07-09 22:24:01.951 TonyNovakXEQ \N \N \N 217073248 5 2 \N \N 100 \N \N f f 0 \N 799841407 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16706 2022-03-21 03:02:12.696 2022-03-28 23:20:41.405 JacobJonesP2D \N \N \N 152829829 5 2 \N \N 100 \N \N f f 0 \N 1783434389 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16717 2022-07-24 21:59:15.966 2023-12-15 00:43:11.085 JenniferPugh0RG \N \N \N 221652299 5 2 \N \N 100 \N \N f f 0 \N 206901136 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16724 2021-11-21 16:31:07.479 2022-12-03 08:37:09.265 MaryTuckerPSU \N \N \N 170502178 5 2 \N \N 100 \N \N f f 0 \N 1770189776 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16747 2023-03-09 06:28:11.289 2022-02-16 11:50:45.102 MauriceHobbsCRX \N \N \N 174725013 5 2 \N \N 100 \N \N f f 0 \N 581618238 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16754 2023-07-16 18:24:49.66 2023-06-02 22:12:46.367 PedroSchmittDPC \N \N \N 180788113 5 2 \N \N 100 \N \N f f 0 \N 15572402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16830 2023-07-01 16:00:37.349 2023-02-15 14:55:24.437 TiffanyHerring8BO \N \N \N 115912961 5 2 \N \N 100 \N \N f f 0 \N 233371299 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16839 2023-07-15 13:32:56.129 2023-09-23 16:57:55.433 TimothyPaulYK2 \N \N \N 239159095 5 2 \N \N 100 \N \N f f 0 \N 2491665295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16842 2023-04-27 13:18:54.712 2023-12-22 02:17:21.08 RachelWallsV4K \N \N \N 87293365 5 2 \N \N 100 \N \N f f 0 \N 5074665 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16848 2022-03-09 08:05:00.648 2022-11-20 18:27:30.032 MelodyParkHOE \N \N \N 246841538 5 2 \N \N 100 \N \N f f 0 \N 958906850 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16867 2022-06-09 15:46:37.283 2021-12-26 12:02:57.811 DeannaColeDNW \N \N \N 144187068 5 2 \N \N 100 \N \N f f 0 \N 2147143782 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16879 2023-06-28 03:32:09.231 2023-04-08 00:54:29.927 DuaneMaloneW55 \N \N \N 148659282 5 2 \N \N 100 \N \N f f 0 \N 2418592094 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16956 2023-11-09 11:44:00.551 2022-03-26 16:12:37.233 KiaraCookUPW \N \N \N 105059012 5 2 \N \N 100 \N \N f f 0 \N 1863423211 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16998 2023-01-01 16:43:34.39 2022-06-17 22:44:18.317 OliviaUnderwoodA0C \N \N \N 6199593 5 2 \N \N 100 \N \N f f 0 \N 2100234615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17064 2024-01-15 04:07:18.484 2022-12-26 07:26:51.265 TamiRichardsVRW \N \N \N 137705230 5 2 \N \N 100 \N \N f f 0 \N 2152430853 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17103 2024-01-04 11:03:19.64 2023-01-16 21:45:04.566 ManuelConradJHI \N \N \N 116949005 5 2 \N \N 100 \N \N f f 0 \N 310684920 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17124 2022-09-20 04:31:15.474 2023-09-11 12:49:58.984 RachelTuckerZQJ \N \N \N 42223767 5 2 \N \N 100 \N \N f f 0 \N 939049937 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17147 2022-03-15 07:34:30.024 2022-06-04 07:50:54.348 ChloeRileyPG3 \N \N \N 173342008 5 2 \N \N 100 \N \N f f 0 \N 148595417 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17148 2024-01-26 12:24:08.396 2024-02-11 14:02:13.538 KaitlynBecker5T6 \N \N \N 124472291 5 2 \N \N 100 \N \N f f 0 \N 279297688 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17157 2022-10-26 03:59:07.832 2022-07-18 10:54:05.244 PaulaFieldsY4N \N \N \N 48313846 5 2 \N \N 100 \N \N f f 0 \N 887419702 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17171 2023-12-22 19:05:11.89 2023-09-01 20:39:37.16 SheliaSandersP9G \N \N \N 52288593 5 2 \N \N 100 \N \N f f 0 \N 416737522 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17217 2023-10-01 15:06:15.814 2023-09-05 02:07:07.878 ChelseyWaltersOBN \N \N \N 155217171 5 2 \N \N 100 \N \N f f 0 \N 1282497950 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17218 2023-02-11 13:33:51.336 2022-01-03 10:07:02.188 LarrySalazarIP1 \N \N \N 135119006 5 2 \N \N 100 \N \N f f 0 \N 1261294982 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17221 2022-03-19 14:39:36.953 2023-09-20 23:23:58.855 CassidyAtkins8PE \N \N \N 106659021 5 2 \N \N 100 \N \N f f 0 \N 555358209 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17227 2022-02-24 02:28:51.096 2022-11-12 07:13:15.515 DarinSteeleEX0 \N \N \N 130311453 5 2 \N \N 100 \N \N f f 0 \N 1843855750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17365 2022-08-23 21:39:08.646 2022-03-20 00:04:03.282 MichelleMonroeXQ8 \N \N \N 157166513 5 2 \N \N 100 \N \N f f 0 \N 682265531 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17392 2023-07-01 19:36:34.802 2022-11-18 07:03:48.685 SherryBurnettSTZ \N \N \N 229061529 5 2 \N \N 100 \N \N f f 0 \N 1248572420 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17446 2023-06-19 04:41:41.046 2023-10-09 03:31:04.638 MeghanJacobsonZS7 \N \N \N 51151372 5 2 \N \N 100 \N \N f f 0 \N 226000750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17513 2022-12-11 00:46:30.723 2021-10-26 19:30:10.059 KellyEllison3R2 \N \N \N 167684838 5 2 \N \N 100 \N \N f f 0 \N 1814907687 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17514 2023-11-24 14:19:34.145 2023-08-11 18:07:01.181 BriannaFord0SC \N \N \N 23491332 5 2 \N \N 100 \N \N f f 0 \N 1841018775 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17602 2022-08-28 15:46:22.148 2022-02-11 05:36:37.038 AngieWalsh6VZ \N \N \N 140313202 5 2 \N \N 100 \N \N f f 0 \N 1404616548 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17707 2021-12-26 21:13:27.92 2022-01-10 19:50:27.784 RogerBryanTI7 \N \N \N 97829860 5 2 \N \N 100 \N \N f f 0 \N 1610500040 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17710 2022-11-11 15:53:12.372 2022-04-24 12:11:17.189 ArianaBennettCR0 \N \N \N 52896084 5 2 \N \N 100 \N \N f f 0 \N 2296652360 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17713 2022-10-07 08:44:09.524 2023-01-23 04:04:23.591 NancyRiggsYZQ \N \N \N 18926844 5 2 \N \N 100 \N \N f f 0 \N 287302945 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17714 2022-09-18 07:48:18.027 2022-06-02 21:16:22.194 NathanWallace3DP \N \N \N 45725804 5 2 \N \N 100 \N \N f f 0 \N 823811766 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17722 2022-09-12 23:53:47.778 2023-03-12 09:21:08.391 MarilynCain1I6 \N \N \N 227671803 5 2 \N \N 100 \N \N f f 0 \N 544174315 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17741 2023-12-02 05:41:35.02 2023-08-31 04:58:31.409 JeanneHinton4ES \N \N \N 223004659 5 2 \N \N 100 \N \N f f 0 \N 1216416987 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17800 2022-07-22 10:42:01.95 2023-02-07 13:48:26.973 YolandaBarr0T5 \N \N \N 52729 5 2 \N \N 100 \N \N f f 0 \N 687322846 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17817 2023-03-16 03:05:56.905 2022-03-05 06:25:48.176 ColtonGilmoreNK2 \N \N \N 77998627 5 2 \N \N 100 \N \N f f 0 \N 1660562135 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17827 2022-02-03 21:32:14.166 2022-08-20 13:43:21.393 KendraVegaJU6 \N \N \N 5497213 5 2 \N \N 100 \N \N f f 0 \N 703337673 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17944 2023-04-05 18:59:06.638 2023-05-10 23:54:10.683 MackenzieSullivanY4Q \N \N \N 168502484 5 2 \N \N 100 \N \N f f 0 \N 1462214737 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17976 2022-12-14 21:00:09.33 2021-12-20 13:21:56.793 DarylHiggins8ZT \N \N \N 216117629 5 2 \N \N 100 \N \N f f 0 \N 1276828561 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18008 2023-12-31 09:07:53.494 2022-04-04 21:07:10.437 CurtisHull7DT \N \N \N 19461971 5 2 \N \N 100 \N \N f f 0 \N 1625316176 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18016 2022-04-25 17:26:20.353 2021-10-01 11:56:27.701 GregMillsRSY \N \N \N 106224252 5 2 \N \N 100 \N \N f f 0 \N 1110086679 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18017 2023-11-24 21:08:45.472 2022-07-19 20:37:33.14 DamonCombsF45 \N \N \N 132185111 5 2 \N \N 100 \N \N f f 0 \N 211260710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18051 2023-04-15 05:29:22.998 2024-02-17 16:44:56.052 JodyDrake0UH \N \N \N 148185789 5 2 \N \N 100 \N \N f f 0 \N 67623736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18068 2022-10-26 07:03:02.249 2022-05-15 12:07:17.498 VanessaWatkinsUJZ \N \N \N 114801741 5 2 \N \N 100 \N \N f f 0 \N 707901698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18072 2023-02-28 06:06:26.578 2022-07-03 22:18:58.68 AntonioHahnDTH \N \N \N 229856836 5 2 \N \N 100 \N \N f f 0 \N 2134473585 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18076 2023-08-03 14:06:08.71 2023-12-21 18:58:17.989 CarolSheaO8F \N \N \N 46678655 5 2 \N \N 100 \N \N f f 0 \N 2131105304 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18101 2022-07-31 10:14:37.744 2022-01-05 07:02:23.865 DeanWareGR5 \N \N \N 69757371 5 2 \N \N 100 \N \N f f 0 \N 686229497 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18116 2023-10-16 16:23:15.997 2022-08-23 06:51:58.368 BillySotoUUY \N \N \N 4834733 5 2 \N \N 100 \N \N f f 0 \N 771309626 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18119 2023-01-07 14:30:17.009 2022-11-06 21:24:10.134 BradyWaller4HX \N \N \N 214474115 5 2 \N \N 100 \N \N f f 0 \N 2456649351 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18124 2023-03-20 16:46:34.649 2023-09-04 11:45:11.034 MariahGordon30W \N \N \N 86521367 5 2 \N \N 100 \N \N f f 0 \N 922868436 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18138 2022-08-10 07:07:29.102 2022-11-04 08:35:43.38 TonyaBaileyOA4 \N \N \N 73931311 5 2 \N \N 100 \N \N f f 0 \N 101279224 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18139 2023-06-25 19:59:26.415 2023-06-07 02:31:49.657 DannyAndradeR3J \N \N \N 223867212 5 2 \N \N 100 \N \N f f 0 \N 289484635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18154 2023-09-26 10:46:34.479 2022-11-02 20:15:23.176 WendyRoy0K2 \N \N \N 205965332 5 2 \N \N 100 \N \N f f 0 \N 1029327967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18169 2022-12-13 08:37:50.088 2024-02-06 11:40:56.194 JosephHannaQQF \N \N \N 128027588 5 2 \N \N 100 \N \N f f 0 \N 1782261212 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18170 2022-09-11 03:39:55.649 2023-02-24 12:50:56.312 SherriEllisonTA1 \N \N \N 114163379 5 2 \N \N 100 \N \N f f 0 \N 239652416 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18174 2022-05-01 16:34:26.389 2022-01-28 21:49:34.63 LoriCoxVU8 \N \N \N 88676006 5 2 \N \N 100 \N \N f f 0 \N 508617932 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18177 2023-08-17 21:34:31.316 2023-05-23 21:17:12.798 LynnPrestonAL7 \N \N \N 43658078 5 2 \N \N 100 \N \N f f 0 \N 1220123805 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18178 2022-11-26 22:40:12.472 2022-11-23 08:15:03.871 JeanneCombsJPG \N \N \N 132559624 5 2 \N \N 100 \N \N f f 0 \N 94836684 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18180 2023-03-09 20:59:40.404 2023-08-22 21:05:28.995 AlexisFloydU3G \N \N \N 182146327 5 2 \N \N 100 \N \N f f 0 \N 1851152389 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18188 2024-01-06 20:55:51.31 2023-07-09 04:52:10.735 TyroneFaulknerTDD \N \N \N 22751355 5 2 \N \N 100 \N \N f f 0 \N 2103538458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18199 2021-10-20 12:51:20.723 2022-01-23 10:32:05.557 RobertGlover8PN \N \N \N 14950289 5 2 \N \N 100 \N \N f f 0 \N 227324714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18208 2022-09-26 06:05:21.285 2023-05-28 08:32:59.851 MarissaNewmanUYZ \N \N \N 187950234 5 2 \N \N 100 \N \N f f 0 \N 1706144229 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18209 2022-11-20 23:07:35.134 2023-12-08 04:34:07.178 SethHall7M6 \N \N \N 26258615 5 2 \N \N 100 \N \N f f 0 \N 768727772 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18219 2023-04-19 11:02:28.059 2022-03-19 19:35:07.342 RileyOliverSWB \N \N \N 169050182 5 2 \N \N 100 \N \N f f 0 \N 1897520050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18225 2022-02-28 12:48:30.246 2023-04-19 02:09:00.588 KeithLarsonORE \N \N \N 187984521 5 2 \N \N 100 \N \N f f 0 \N 866426798 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18230 2022-03-07 02:21:20.359 2022-01-20 06:08:09.772 ChristianFaulknerOTN \N \N \N 135461598 5 2 \N \N 100 \N \N f f 0 \N 884410986 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18231 2023-06-18 10:31:29.587 2023-02-26 00:34:48.788 KristieGriffinP80 \N \N \N 183379595 5 2 \N \N 100 \N \N f f 0 \N 900929282 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18232 2021-10-27 18:14:01.801 2023-04-04 04:47:36.582 AnnaChapmanW36 \N \N \N 3449512 5 2 \N \N 100 \N \N f f 0 \N 2466433236 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18235 2023-10-19 18:55:41.918 2024-01-19 12:52:08.12 TerrenceBautistaR4G \N \N \N 5986699 5 2 \N \N 100 \N \N f f 0 \N 2459776072 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18243 2022-05-05 22:33:57.125 2023-03-18 21:09:38.907 CarlosHammondXNO \N \N \N 200298701 5 2 \N \N 100 \N \N f f 0 \N 1037589585 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18262 2023-01-15 13:15:09.273 2022-08-08 03:08:10.62 MarcoSnow74C \N \N \N 211169777 5 2 \N \N 100 \N \N f f 0 \N 649641336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18264 2024-01-17 21:24:16.816 2022-02-18 12:52:12.287 SabrinaGarnerCDX \N \N \N 28591030 5 2 \N \N 100 \N \N f f 0 \N 265753457 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18280 2024-02-07 06:26:07.605 2022-11-22 12:04:21.862 MichelleOdonnellJSP \N \N \N 127601239 5 2 \N \N 100 \N \N f f 0 \N 721004057 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18291 2024-02-08 12:05:21.376 2021-11-30 06:58:20.208 FrancisPittmanJI0 \N \N \N 66935131 5 2 \N \N 100 \N \N f f 0 \N 2342957279 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18306 2023-09-05 00:12:05.471 2023-08-28 15:20:41.258 LukeHesterBBN \N \N \N 104713660 5 2 \N \N 100 \N \N f f 0 \N 147355208 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18310 2022-06-21 04:13:53.325 2023-11-05 02:07:10.025 MarilynHammond28Y \N \N \N 29503985 5 2 \N \N 100 \N \N f f 0 \N 1993387035 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18311 2022-10-16 21:53:08.001 2022-10-09 06:14:40.972 RickeyNixon54I \N \N \N 145142232 5 2 \N \N 100 \N \N f f 0 \N 2079237570 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18313 2023-01-23 09:31:29.836 2023-05-11 14:15:00.173 SherryWeeksHZE \N \N \N 103632827 5 2 \N \N 100 \N \N f f 0 \N 1876103425 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18321 2022-01-30 05:47:54.661 2023-06-13 10:13:33.623 AutumnRasmussenXBN \N \N \N 92799807 5 2 \N \N 100 \N \N f f 0 \N 971641959 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18330 2022-08-20 17:34:22.744 2023-11-18 07:10:20.213 SoniaBradfordTLN \N \N \N 212825796 5 2 \N \N 100 \N \N f f 0 \N 1432299202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18336 2022-05-22 10:13:34.555 2024-02-03 21:00:28.857 TerriBoyd8FC \N \N \N 3679384 5 2 \N \N 100 \N \N f f 0 \N 1306499009 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18344 2022-01-24 02:30:48.748 2022-06-28 21:21:07.162 TonyFuentes013 \N \N \N 185975872 5 2 \N \N 100 \N \N f f 0 \N 1087588244 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18351 2023-03-29 12:07:46.473 2022-01-24 18:17:11.333 TomRangelFKV \N \N \N 174179507 5 2 \N \N 100 \N \N f f 0 \N 1201386814 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18357 2023-09-09 16:57:13.906 2023-01-16 16:16:21.19 SheilaWagnerH5N \N \N \N 176555123 5 2 \N \N 100 \N \N f f 0 \N 837044615 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18359 2022-04-05 23:13:10.381 2022-01-05 20:07:34.785 JamesBurkeJTX \N \N \N 113102195 5 2 \N \N 100 \N \N f f 0 \N 293046251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18363 2022-07-19 15:39:49.809 2022-07-11 11:53:15.281 CherylDoughertyQY8 \N \N \N 137079968 5 2 \N \N 100 \N \N f f 0 \N 2015596761 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18368 2023-11-06 19:34:04.662 2023-04-24 12:06:38.443 PeterSalazarGO0 \N \N \N 231544295 5 2 \N \N 100 \N \N f f 0 \N 1500172241 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18372 2023-04-21 07:25:37.654 2023-10-29 13:40:24.966 JeffBlevinsPPW \N \N \N 166924302 5 2 \N \N 100 \N \N f f 0 \N 2127841793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18378 2022-04-30 08:30:03.935 2023-08-02 12:33:05.229 TommyAliYL5 \N \N \N 28351949 5 2 \N \N 100 \N \N f f 0 \N 908947150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18380 2023-05-08 09:27:30.062 2022-06-16 11:31:13.883 MauriceRoblesNFC \N \N \N 192627838 5 2 \N \N 100 \N \N f f 0 \N 1457661046 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18387 2023-10-08 14:39:29.389 2022-07-05 21:38:07.348 JacksonCantrellEBS \N \N \N 41367395 5 2 \N \N 100 \N \N f f 0 \N 1431417335 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18392 2022-11-23 18:20:51.677 2021-10-10 04:58:00.136 MelanieOdonnellLTK \N \N \N 139426685 5 2 \N \N 100 \N \N f f 0 \N 1207943653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18393 2022-04-18 01:01:02.872 2022-11-13 12:30:29.937 HectorLaneCWO \N \N \N 18755656 5 2 \N \N 100 \N \N f f 0 \N 121821605 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18396 2023-10-25 10:10:48.839 2022-11-22 00:34:53.114 AliciaBradshawI7J \N \N \N 84916938 5 2 \N \N 100 \N \N f f 0 \N 665407148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18402 2023-10-17 09:08:26.349 2023-08-12 18:50:49.392 JeremiahStanleyUXB \N \N \N 66370123 5 2 \N \N 100 \N \N f f 0 \N 1051031401 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18403 2022-02-15 20:52:36.701 2023-07-12 09:27:09.184 CharlesSalinasE61 \N \N \N 47445606 5 2 \N \N 100 \N \N f f 0 \N 1605693569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18409 2022-04-10 06:36:40.108 2022-10-26 19:23:58.029 DebbieFergusonJPX \N \N \N 130497119 5 2 \N \N 100 \N \N f f 0 \N 1537855556 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18618 2022-11-14 21:20:39.518 2023-01-15 19:10:34.731 EvelynMercerTO7 \N \N \N 79746066 5 2 \N \N 100 \N \N f f 0 \N 2005038657 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18412 2021-11-15 02:32:13.979 2022-02-18 22:34:22.276 SherryMarksIUS \N \N \N 116437547 5 2 \N \N 100 \N \N f f 0 \N 774017496 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18423 2022-08-27 18:33:13.997 2023-12-20 16:04:26.027 NatalieNash8B3 \N \N \N 20877633 5 2 \N \N 100 \N \N f f 0 \N 475589806 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18426 2023-11-03 18:32:54.628 2022-12-17 14:40:36.916 ShaunKellyA1S \N \N \N 229657461 5 2 \N \N 100 \N \N f f 0 \N 2149900041 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18446 2022-06-28 21:30:15.715 2023-04-30 10:02:49.675 JoyceMartinezP4P \N \N \N 198924721 5 2 \N \N 100 \N \N f f 0 \N 2419947526 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18448 2022-01-29 11:35:29.089 2023-05-26 05:00:32.543 TristanHancock8HH \N \N \N 105085982 5 2 \N \N 100 \N \N f f 0 \N 1148327302 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18452 2023-01-29 12:12:17.772 2022-09-17 12:23:39.258 DaleBuckley6R6 \N \N \N 159102074 5 2 \N \N 100 \N \N f f 0 \N 1644492788 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18453 2022-03-13 22:14:41.044 2022-10-14 15:27:26.476 KariVillanueva2VL \N \N \N 60671205 5 2 \N \N 100 \N \N f f 0 \N 2018280923 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18454 2023-07-05 21:20:05.563 2024-01-26 17:24:44.56 GordonVincentUGF \N \N \N 185332489 5 2 \N \N 100 \N \N f f 0 \N 2487807785 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18460 2023-09-09 11:00:38.808 2022-06-05 02:50:05.306 LukeRochaGGY \N \N \N 105876961 5 2 \N \N 100 \N \N f f 0 \N 1483044735 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18468 2022-07-31 17:59:59.256 2022-10-24 07:04:12.067 JaredReidVFL \N \N \N 104505993 5 2 \N \N 100 \N \N f f 0 \N 114193974 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18470 2023-07-24 04:46:09.314 2023-11-07 22:13:57.801 KeithSpearsLDB \N \N \N 243476554 5 2 \N \N 100 \N \N f f 0 \N 2058990131 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18472 2022-07-09 11:14:08.985 2021-12-10 12:19:43.356 DaleHaydenLOT \N \N \N 5310667 5 2 \N \N 100 \N \N f f 0 \N 625435028 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18473 2023-07-16 02:19:27.766 2022-08-09 05:22:51.956 CherylContrerasLGK \N \N \N 14808255 5 2 \N \N 100 \N \N f f 0 \N 298447246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18476 2023-03-24 01:47:57.239 2023-06-08 23:39:36.286 KatrinaSmallQD3 \N \N \N 70320455 5 2 \N \N 100 \N \N f f 0 \N 1492129131 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18494 2022-09-02 08:21:14.373 2022-01-06 20:14:34.863 JocelynRobbinsBQW \N \N \N 214872890 5 2 \N \N 100 \N \N f f 0 \N 1853898461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18500 2022-05-31 23:04:16.253 2022-02-08 04:42:13.117 TomPadillaE1L \N \N \N 108416495 5 2 \N \N 100 \N \N f f 0 \N 1623572161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18507 2022-02-20 11:11:18.827 2023-02-10 19:33:04.862 AmberHollowayDKE \N \N \N 96053646 5 2 \N \N 100 \N \N f f 0 \N 2486508566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18511 2022-01-08 23:14:57.472 2022-06-26 22:53:00.403 MarilynRussoHOR \N \N \N 196956480 5 2 \N \N 100 \N \N f f 0 \N 613082121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18517 2022-06-20 00:30:39.708 2022-07-06 13:36:53.675 SaraSullivanUKJ \N \N \N 236699201 5 2 \N \N 100 \N \N f f 0 \N 938777255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18518 2022-02-09 02:42:46.755 2023-12-09 09:53:38.583 AngelicaMoranFCM \N \N \N 148549585 5 2 \N \N 100 \N \N f f 0 \N 698890756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18524 2022-03-22 19:04:58.586 2023-03-28 04:12:41.009 AngelicaBishop7BW \N \N \N 44362065 5 2 \N \N 100 \N \N f f 0 \N 374874817 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18528 2022-11-02 01:33:35.659 2022-09-08 22:00:44.737 ArielMaynardRDI \N \N \N 135451831 5 2 \N \N 100 \N \N f f 0 \N 289119928 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18529 2023-07-11 09:56:04.104 2021-12-21 19:55:11.946 RebeccaBooth7ZR \N \N \N 137259928 5 2 \N \N 100 \N \N f f 0 \N 1729057857 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18533 2022-09-14 13:30:39.69 2023-04-14 19:46:54.928 MistyBrooksFNO \N \N \N 194664593 5 2 \N \N 100 \N \N f f 0 \N 1710490756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18539 2022-09-07 00:58:30.15 2023-04-12 08:45:59.158 KarinaSerrano8DB \N \N \N 34887228 5 2 \N \N 100 \N \N f f 0 \N 472240050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18543 2022-07-25 02:44:30.757 2023-11-12 21:24:36.23 IsaacGrossKGR \N \N \N 52562050 5 2 \N \N 100 \N \N f f 0 \N 218370071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18556 2022-01-12 04:33:01.976 2022-03-22 17:03:17.826 AndreaMccartyMCZ \N \N \N 178076459 5 2 \N \N 100 \N \N f f 0 \N 1948772697 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18581 2023-12-18 01:19:48.349 2021-11-03 03:15:55.806 JonPollard6LC \N \N \N 127864218 5 2 \N \N 100 \N \N f f 0 \N 1876964870 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18583 2023-01-25 07:08:00.445 2023-11-03 15:48:42.449 RachaelBranchJ2D \N \N \N 41656124 5 2 \N \N 100 \N \N f f 0 \N 1474402690 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18601 2022-03-03 09:27:22.041 2022-12-02 07:43:35.544 TommyDanielCF5 \N \N \N 145867072 5 2 \N \N 100 \N \N f f 0 \N 2139054872 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18608 2022-05-08 04:19:39.75 2022-05-06 03:58:54.153 StefanieRushN1M \N \N \N 26441403 5 2 \N \N 100 \N \N f f 0 \N 74951412 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18615 2023-12-10 09:04:51.878 2023-07-24 03:10:40.131 HannahRamsey0ZG \N \N \N 223928933 5 2 \N \N 100 \N \N f f 0 \N 1841906252 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18625 2022-11-30 18:46:22.512 2021-11-29 21:16:05.373 JesseJensen5SR \N \N \N 187784875 5 2 \N \N 100 \N \N f f 0 \N 2228198509 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18626 2022-07-23 08:44:19.757 2023-03-23 00:23:45.298 DianeFergusonZDJ \N \N \N 16840601 5 2 \N \N 100 \N \N f f 0 \N 1009702714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18629 2022-08-28 20:12:08.825 2022-05-28 04:34:29.554 JeremiahCarpenterFDT \N \N \N 184588399 5 2 \N \N 100 \N \N f f 0 \N 2064393645 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18635 2022-03-11 19:24:17.692 2022-12-22 06:41:00.799 WarrenMcdowellVVH \N \N \N 243247287 5 2 \N \N 100 \N \N f f 0 \N 2310129585 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18640 2022-04-06 18:33:29.836 2023-11-29 07:28:45.725 MackenzieHaney8J9 \N \N \N 11931354 5 2 \N \N 100 \N \N f f 0 \N 2174138993 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18641 2022-05-07 01:53:40.236 2024-01-22 09:15:35.343 RicardoDawsonL18 \N \N \N 146871703 5 2 \N \N 100 \N \N f f 0 \N 763746566 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18658 2024-01-13 20:09:14.57 2021-10-30 13:17:44.963 SheliaVillegasIFZ \N \N \N 98533113 5 2 \N \N 100 \N \N f f 0 \N 10273405 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18659 2022-05-24 10:02:19.336 2022-11-08 20:08:46.732 ChrisRasmussenF3G \N \N \N 240782369 5 2 \N \N 100 \N \N f f 0 \N 1823709892 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18660 2023-10-07 18:06:54.854 2023-07-10 02:32:53.561 DonCross697 \N \N \N 96384133 5 2 \N \N 100 \N \N f f 0 \N 2121158770 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18663 2023-06-09 01:58:57.164 2024-01-31 01:49:34.064 BriannaHardinM3S \N \N \N 93871537 5 2 \N \N 100 \N \N f f 0 \N 1843689095 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18664 2023-06-29 23:30:35.758 2022-07-14 23:19:58.45 EddieValenciaM7M \N \N \N 127043303 5 2 \N \N 100 \N \N f f 0 \N 377076938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18667 2022-11-29 04:05:13.243 2023-06-18 20:14:21.238 BlakeCamachoUTY \N \N \N 36921393 5 2 \N \N 100 \N \N f f 0 \N 2371395963 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18673 2021-12-11 16:31:52.24 2022-10-08 14:54:05.232 MartinLunaDUG \N \N \N 197207057 5 2 \N \N 100 \N \N f f 0 \N 890677460 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18675 2023-10-07 05:44:56.081 2022-06-21 07:17:08.578 KeithStafford121 \N \N \N 92383838 5 2 \N \N 100 \N \N f f 0 \N 1591368765 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18679 2022-12-31 01:25:14.638 2022-08-31 09:54:17.792 PatrickHollowayMFC \N \N \N 102790598 5 2 \N \N 100 \N \N f f 0 \N 2180128601 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18680 2021-12-25 14:37:38.817 2023-10-16 10:37:49.755 MollyCrawford6UL \N \N \N 160738119 5 2 \N \N 100 \N \N f f 0 \N 1552514609 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18690 2023-07-05 22:19:04.528 2022-10-07 10:53:46.362 BradleyMirandaZQN \N \N \N 247599310 5 2 \N \N 100 \N \N f f 0 \N 2408557374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18704 2023-08-29 07:45:44.38 2023-03-06 10:23:46.686 DesireeChandlerPNN \N \N \N 156492921 5 2 \N \N 100 \N \N f f 0 \N 1614121883 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18705 2023-05-12 20:32:49.646 2022-12-09 04:18:23.981 CarlaSnow1TB \N \N \N 110838280 5 2 \N \N 100 \N \N f f 0 \N 2233170840 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18714 2022-05-15 14:29:04.335 2023-02-20 20:50:53.532 SteveAyersGPC \N \N \N 242939718 5 2 \N \N 100 \N \N f f 0 \N 2017948653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18735 2022-11-11 15:23:08 2021-10-23 17:23:38.03 TonyWyatt76R \N \N \N 43234767 5 2 \N \N 100 \N \N f f 0 \N 1017899273 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18736 2024-02-08 11:05:18.862 2021-11-24 18:08:14.196 BrianaKellerXX1 \N \N \N 214641116 5 2 \N \N 100 \N \N f f 0 \N 1677133688 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18745 2024-02-07 16:47:15.473 2021-12-19 19:40:04.736 ChristineJosephJ4H \N \N \N 142323769 5 2 \N \N 100 \N \N f f 0 \N 1558451748 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18751 2021-10-05 13:17:51.475 2023-06-25 08:51:17.74 ValerieOwens4ZY \N \N \N 109314961 5 2 \N \N 100 \N \N f f 0 \N 527259112 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18774 2024-01-08 01:10:55.568 2023-02-12 03:49:20.633 LindsayRich05G \N \N \N 65985616 5 2 \N \N 100 \N \N f f 0 \N 2342436357 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18784 2023-08-04 02:16:02.432 2023-07-22 17:04:48.089 ChristopherMcdanielB33 \N \N \N 227488485 5 2 \N \N 100 \N \N f f 0 \N 588151756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18809 2023-06-26 21:47:03.84 2023-02-10 03:59:30.229 AllisonMillerBEF \N \N \N 114878416 5 2 \N \N 100 \N \N f f 0 \N 1389415501 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18815 2023-03-28 11:52:28.756 2022-12-29 02:22:37.869 ChristianSoto0TB \N \N \N 242249618 5 2 \N \N 100 \N \N f f 0 \N 28956045 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18816 2022-05-21 13:13:25.623 2021-12-23 19:30:34.647 BrandonHoffmanDVK \N \N \N 157818728 5 2 \N \N 100 \N \N f f 0 \N 198097141 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18817 2023-06-04 10:49:45.713 2023-03-21 08:08:33.638 BradBuckY1P \N \N \N 11837331 5 2 \N \N 100 \N \N f f 0 \N 2047954349 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18819 2023-04-24 09:24:37.941 2022-02-15 13:30:48.512 BobBergS33 \N \N \N 223149062 5 2 \N \N 100 \N \N f f 0 \N 148828813 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 937 2022-09-04 07:57:03.827 2023-09-19 06:04:42.082 NoahSchmidtCP7 \N \N \N 158384325 5 2 \N \N 100 \N \N f f 0 \N 1847041389 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18828 2022-10-08 04:42:46.519 2022-10-26 21:11:22.078 ReneeLivingstonO7F \N \N \N 224515378 5 2 \N \N 100 \N \N f f 0 \N 2241708355 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18829 2023-11-08 08:17:43.246 2021-12-25 11:14:37.317 BridgetRoyDYD \N \N \N 164474746 5 2 \N \N 100 \N \N f f 0 \N 2277294259 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18830 2024-02-08 03:54:19.038 2022-10-02 04:28:50.615 EllenLi8LH \N \N \N 18184803 5 2 \N \N 100 \N \N f f 0 \N 334014177 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18832 2024-01-16 02:33:01.425 2023-11-06 21:10:14.449 CarrieRiggsZR0 \N \N \N 12972818 5 2 \N \N 100 \N \N f f 0 \N 943301553 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18836 2022-02-01 17:45:10.484 2023-11-26 14:44:31.563 CarriePattonPDI \N \N \N 203473270 5 2 \N \N 100 \N \N f f 0 \N 2462459828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18837 2022-02-28 00:43:12.522 2023-02-05 17:46:21.858 CameronAcevedo573 \N \N \N 102536731 5 2 \N \N 100 \N \N f f 0 \N 395057336 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18842 2023-10-12 04:13:10.142 2021-11-14 05:45:49.942 BrittneyFrazierGFV \N \N \N 139649500 5 2 \N \N 100 \N \N f f 0 \N 216364610 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18862 2022-08-27 15:51:22.844 2022-04-07 10:58:19.649 DarrellWarren4XH \N \N \N 214323492 5 2 \N \N 100 \N \N f f 0 \N 1993780878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18873 2022-02-21 03:45:33.27 2023-11-16 09:37:18.973 SandraFoley3P2 \N \N \N 127503195 5 2 \N \N 100 \N \N f f 0 \N 879376939 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18877 2023-12-12 21:34:22.343 2021-12-27 03:11:50.397 JayDuranZMJ \N \N \N 181052022 5 2 \N \N 100 \N \N f f 0 \N 892478743 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18892 2022-06-20 09:54:04.133 2021-10-23 12:58:32.478 RebekahTravis11L \N \N \N 229317477 5 2 \N \N 100 \N \N f f 0 \N 1971613697 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18896 2022-12-15 14:32:38.99 2022-07-02 15:09:48.872 MariaRobertsB87 \N \N \N 65900080 5 2 \N \N 100 \N \N f f 0 \N 2037095030 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18897 2021-12-01 19:58:11.917 2021-11-07 14:14:08.953 MollyCaldwellJUT \N \N \N 108061189 5 2 \N \N 100 \N \N f f 0 \N 1061427988 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18904 2023-02-24 22:15:49.96 2023-03-14 03:57:28.081 YvonneFrostQ7J \N \N \N 111973688 5 2 \N \N 100 \N \N f f 0 \N 2011656033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18909 2023-01-25 08:55:37.015 2022-03-28 18:40:38.32 LanceKaufmanZ1Y \N \N \N 153389968 5 2 \N \N 100 \N \N f f 0 \N 1709120375 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18919 2024-01-12 10:34:07.527 2023-06-24 17:01:44.185 KristieLoveGBJ \N \N \N 35399538 5 2 \N \N 100 \N \N f f 0 \N 1909734321 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18923 2023-06-19 16:24:57.374 2022-08-24 02:56:56.083 JaclynTownsendPAD \N \N \N 4621985 5 2 \N \N 100 \N \N f f 0 \N 1154881257 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18930 2023-10-18 01:07:49.09 2022-11-22 19:30:26.922 AdrianFloydSRC \N \N \N 181949134 5 2 \N \N 100 \N \N f f 0 \N 2413305991 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18932 2023-03-03 00:42:26.248 2022-04-25 15:28:26.32 ShaunCamposQTL \N \N \N 158397515 5 2 \N \N 100 \N \N f f 0 \N 1497954064 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18941 2021-11-04 09:09:20.212 2022-08-08 14:42:09.656 KaitlynTownsend2S2 \N \N \N 113254848 5 2 \N \N 100 \N \N f f 0 \N 212561621 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18945 2023-02-02 02:15:26.635 2022-10-24 20:36:12.301 MasonEvansRQJ \N \N \N 19293569 5 2 \N \N 100 \N \N f f 0 \N 2093029841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18956 2023-01-17 10:21:38.208 2021-10-14 12:22:08.023 RoseCardenasT2K \N \N \N 241917758 5 2 \N \N 100 \N \N f f 0 \N 986563816 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18984 2023-10-07 02:29:54.366 2022-08-02 11:02:27.008 GeneFarrellGEX \N \N \N 185174509 5 2 \N \N 100 \N \N f f 0 \N 381648756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18989 2022-03-30 14:52:34.309 2023-08-31 19:20:36.927 JayBallLEG \N \N \N 211521519 5 2 \N \N 100 \N \N f f 0 \N 1356941111 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18994 2023-01-23 01:58:05.327 2023-03-29 17:37:24.866 LonnieLiJZU \N \N \N 116719479 5 2 \N \N 100 \N \N f f 0 \N 98394199 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18995 2022-05-28 07:21:45.558 2022-11-07 03:50:09.582 BrettReevesYUL \N \N \N 130370123 5 2 \N \N 100 \N \N f f 0 \N 673263210 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19005 2022-11-14 04:04:54.186 2023-01-23 07:03:19.592 MelodyGoodGY1 \N \N \N 85233224 5 2 \N \N 100 \N \N f f 0 \N 495513480 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19007 2021-11-13 21:53:56.968 2023-01-28 11:08:15.832 JosephBatesHWK \N \N \N 234649518 5 2 \N \N 100 \N \N f f 0 \N 2217268619 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19021 2023-12-19 17:23:11.469 2022-12-09 10:08:11.461 LoganRiversHT8 \N \N \N 72770291 5 2 \N \N 100 \N \N f f 0 \N 2028027841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19030 2023-08-24 20:38:48.986 2022-02-01 00:53:44.285 CherylCoffeyE20 \N \N \N 232668870 5 2 \N \N 100 \N \N f f 0 \N 1919021237 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19031 2022-11-16 08:15:19.047 2022-11-01 11:20:11.614 KirkAcostaGIH \N \N \N 167234351 5 2 \N \N 100 \N \N f f 0 \N 2315282601 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 880 2023-03-05 13:28:48.611 2022-08-03 14:02:41.934 TaylorPittsUWD \N \N \N 178023822 5 2 \N \N 100 \N \N f f 0 \N 2288349723 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19034 2022-01-28 01:05:39.255 2023-05-04 00:15:01.047 BrandiMerrittQJ6 \N \N \N 112474740 5 2 \N \N 100 \N \N f f 0 \N 2283688468 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19036 2023-08-06 19:35:40.121 2023-02-21 08:30:20.86 TylerWebster6NU \N \N \N 101542290 5 2 \N \N 100 \N \N f f 0 \N 1124852060 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19037 2023-06-20 04:51:54.518 2023-05-09 10:53:09.837 DennisMcconnell8EK \N \N \N 79838576 5 2 \N \N 100 \N \N f f 0 \N 1065166496 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19038 2022-09-12 19:10:25.711 2021-10-11 19:10:47.623 JadeStewart9G0 \N \N \N 77839605 5 2 \N \N 100 \N \N f f 0 \N 1175639166 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19043 2023-01-03 18:51:53.387 2021-12-09 07:53:05.777 SergioBlankenshipRCV \N \N \N 38601844 5 2 \N \N 100 \N \N f f 0 \N 924555206 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19044 2023-05-17 22:41:38.481 2023-11-23 14:59:26.652 RodneyCrawford7B6 \N \N \N 52944680 5 2 \N \N 100 \N \N f f 0 \N 2315030814 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19096 2023-06-28 02:13:01.998 2022-02-13 04:41:23.072 JulieClarkeOF6 \N \N \N 43499855 5 2 \N \N 100 \N \N f f 0 \N 1040087794 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19103 2023-08-29 11:48:29.927 2023-12-02 22:35:46.591 SethLeeZ99 \N \N \N 206481446 5 2 \N \N 100 \N \N f f 0 \N 468677588 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19105 2022-05-15 11:58:54.501 2021-12-27 20:32:15.674 LeslieMcculloughUTJ \N \N \N 89826936 5 2 \N \N 100 \N \N f f 0 \N 709095092 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19117 2022-04-26 03:09:16.854 2022-11-25 08:25:56.105 JoanneGravesITC \N \N \N 57568425 5 2 \N \N 100 \N \N f f 0 \N 1601417451 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19118 2023-12-28 13:11:54.512 2023-02-08 05:44:27.058 ChadBoyd7UO \N \N \N 23477741 5 2 \N \N 100 \N \N f f 0 \N 1170689396 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19121 2023-02-23 02:38:44.247 2023-09-11 08:57:48.131 ArianaCrossUQJ \N \N \N 163375253 5 2 \N \N 100 \N \N f f 0 \N 493314948 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19132 2022-12-27 20:59:59.757 2021-11-13 07:15:58.841 SheilaWoodsLID \N \N \N 8576816 5 2 \N \N 100 \N \N f f 0 \N 21893762 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19142 2023-08-02 14:24:49.751 2022-10-04 16:59:19 ZoeHardin18Z \N \N \N 100931873 5 2 \N \N 100 \N \N f f 0 \N 2361137509 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19147 2022-08-02 06:43:45.876 2023-01-18 21:29:42.997 AlisonHowellOGR \N \N \N 161036543 5 2 \N \N 100 \N \N f f 0 \N 301769362 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19148 2022-07-30 08:02:32.747 2022-08-10 10:07:02.741 BriannaBeltranK6J \N \N \N 69708428 5 2 \N \N 100 \N \N f f 0 \N 356982569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19151 2021-11-30 04:56:54.566 2022-08-21 21:11:00.734 AdamKeyX7X \N \N \N 157563595 5 2 \N \N 100 \N \N f f 0 \N 1142114071 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19153 2023-08-28 16:09:16.854 2023-12-28 21:29:47.208 MarciaMorseLTT \N \N \N 205102063 5 2 \N \N 100 \N \N f f 0 \N 1435921848 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19154 2021-10-26 17:42:41.141 2021-10-13 07:32:10.135 AlyssaGloverHDG \N \N \N 209277761 5 2 \N \N 100 \N \N f f 0 \N 812888333 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19156 2022-04-18 01:01:13.653 2023-10-04 17:40:59.041 DennisWilkinsDEG \N \N \N 151556143 5 2 \N \N 100 \N \N f f 0 \N 289168291 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19158 2023-09-01 06:59:26.835 2022-04-02 23:03:21.491 BrianMeyerET2 \N \N \N 234325853 5 2 \N \N 100 \N \N f f 0 \N 3142270 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19174 2022-01-11 04:12:38.225 2023-07-25 14:56:34.543 PattyChung6MK \N \N \N 217595470 5 2 \N \N 100 \N \N f f 0 \N 1947862544 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19189 2021-12-10 04:51:23.99 2021-12-19 04:18:23.635 ChrisDelacruz82A \N \N \N 214914764 5 2 \N \N 100 \N \N f f 0 \N 1183323908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19193 2023-11-01 04:08:00.69 2023-08-29 23:49:18.932 HaydenMartinC6V \N \N \N 215053465 5 2 \N \N 100 \N \N f f 0 \N 1302474960 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19199 2023-03-11 05:05:48.879 2023-12-22 08:23:05.425 JavierGuerreroJQ9 \N \N \N 10473228 5 2 \N \N 100 \N \N f f 0 \N 2312397004 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19243 2022-09-20 20:21:02.55 2022-06-06 09:52:26.098 TerranceIngramVB4 \N \N \N 69093165 5 2 \N \N 100 \N \N f f 0 \N 230991885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19263 2021-10-16 07:08:00.369 2022-09-15 18:02:57.151 BonnieCantu669 \N \N \N 221422135 5 2 \N \N 100 \N \N f f 0 \N 2168192115 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19267 2022-03-21 22:34:20.203 2023-05-26 22:37:08.279 JamieStrongFUM \N \N \N 227215001 5 2 \N \N 100 \N \N f f 0 \N 1619627356 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19281 2024-02-13 09:17:39.434 2023-11-04 05:47:36.635 MelindaDaugherty7NL \N \N \N 26981625 5 2 \N \N 100 \N \N f f 0 \N 2019747033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19282 2021-12-18 04:36:08.862 2023-06-07 13:57:56.133 RobinHensleyYLP \N \N \N 151474959 5 2 \N \N 100 \N \N f f 0 \N 2131892739 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19284 2021-12-13 18:27:52.252 2022-05-21 12:15:29.766 DylanBishopOWO \N \N \N 242034574 5 2 \N \N 100 \N \N f f 0 \N 1785860392 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19286 2022-04-18 18:15:46.171 2022-11-30 20:35:49.246 LindaChungMC0 \N \N \N 49882207 5 2 \N \N 100 \N \N f f 0 \N 910274731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19296 2022-04-10 17:28:13.859 2023-02-13 00:51:14.185 HarryBurnsF6Q \N \N \N 226047206 5 2 \N \N 100 \N \N f f 0 \N 180106710 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19309 2021-12-31 20:39:31.126 2022-02-16 17:16:12.275 PriscillaHatfield2HB \N \N \N 132892594 5 2 \N \N 100 \N \N f f 0 \N 399271076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19320 2022-05-10 06:12:55.953 2023-05-25 11:41:24.456 AlexPerezOJC \N \N \N 50971260 5 2 \N \N 100 \N \N f f 0 \N 422742997 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19322 2022-03-23 01:28:47.12 2021-10-10 19:17:42.617 ColleenDicksonLH5 \N \N \N 62786575 5 2 \N \N 100 \N \N f f 0 \N 2385466412 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19329 2023-12-11 22:27:09.75 2024-01-03 14:49:54.507 ClaireVelazquezW43 \N \N \N 30445713 5 2 \N \N 100 \N \N f f 0 \N 77214235 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19332 2023-09-14 16:13:28.591 2023-04-27 20:29:13.333 SabrinaRangel3KU \N \N \N 22643348 5 2 \N \N 100 \N \N f f 0 \N 2183647054 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19335 2022-10-19 14:20:40.873 2022-03-19 06:58:54.899 SabrinaShepardQKA \N \N \N 156741815 5 2 \N \N 100 \N \N f f 0 \N 995765152 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19346 2021-12-14 23:53:42.959 2023-09-17 17:41:39.162 OmarSchmitt5GZ \N \N \N 95723582 5 2 \N \N 100 \N \N f f 0 \N 1504619499 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19352 2024-02-02 20:06:52.748 2023-04-25 15:24:32.57 LindsayHardingZ41 \N \N \N 161858428 5 2 \N \N 100 \N \N f f 0 \N 2302068985 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19378 2023-01-03 12:04:38.118 2022-12-24 15:27:03.604 BiancaBookerWVA \N \N \N 57357308 5 2 \N \N 100 \N \N f f 0 \N 808444490 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19394 2023-07-28 08:17:21.963 2024-01-02 18:52:44.323 EricVelasquez1P3 \N \N \N 204451408 5 2 \N \N 100 \N \N f f 0 \N 707335179 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19398 2022-05-26 00:42:41.017 2022-07-13 08:27:33.176 RitaPowellR16 \N \N \N 132863041 5 2 \N \N 100 \N \N f f 0 \N 952326440 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19435 2024-02-05 18:30:18.313 2023-09-13 18:26:21.937 MckenzieIbarraPQC \N \N \N 183547148 5 2 \N \N 100 \N \N f f 0 \N 590796131 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19449 2022-05-07 14:18:52.606 2023-05-12 11:17:42.978 EmmaHart2QQ \N \N \N 62264967 5 2 \N \N 100 \N \N f f 0 \N 1464986592 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19458 2022-12-19 22:10:47.524 2022-04-11 10:39:39.099 RavenFitzpatrick4EL \N \N \N 232448344 5 2 \N \N 100 \N \N f f 0 \N 16265972 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19462 2024-01-01 21:15:33.959 2022-03-04 19:26:03.944 IsaiahMcdanielPFZ \N \N \N 52957887 5 2 \N \N 100 \N \N f f 0 \N 453454515 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19463 2022-09-27 11:23:04.674 2023-01-21 13:23:42.069 KennethBellRKP \N \N \N 230449332 5 2 \N \N 100 \N \N f f 0 \N 566666843 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19465 2023-04-09 16:57:47.306 2023-06-09 21:53:44.572 KentOrtega9OS \N \N \N 99264186 5 2 \N \N 100 \N \N f f 0 \N 2471258252 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19469 2022-04-13 13:13:38.256 2023-09-26 18:16:06.041 CarolineWestOSC \N \N \N 148512083 5 2 \N \N 100 \N \N f f 0 \N 290992178 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19484 2023-08-07 17:53:12.867 2023-02-24 13:30:16.808 DeniseAndersenIQ6 \N \N \N 223993497 5 2 \N \N 100 \N \N f f 0 \N 1672969616 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19488 2023-08-29 15:02:35.031 2023-01-23 18:33:24.234 TerriPachecoFN7 \N \N \N 41113661 5 2 \N \N 100 \N \N f f 0 \N 332540860 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19494 2022-03-29 12:57:58.119 2023-06-09 18:38:54.948 BrettMckeeJGY \N \N \N 203260164 5 2 \N \N 100 \N \N f f 0 \N 120603816 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19500 2022-01-12 13:34:48.664 2023-11-05 03:33:30.796 CatherineBarnesIX0 \N \N \N 8908817 5 2 \N \N 100 \N \N f f 0 \N 1320453924 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19501 2023-04-11 13:46:31.578 2021-10-16 13:46:10.01 SierraRobbinsQB8 \N \N \N 236137294 5 2 \N \N 100 \N \N f f 0 \N 2220386707 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19502 2022-04-14 08:46:48.412 2022-10-30 08:22:39.951 TylerVillanuevaU2H \N \N \N 202829428 5 2 \N \N 100 \N \N f f 0 \N 2270087678 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19506 2022-11-02 09:47:17.982 2022-10-31 08:50:01.258 DawnMasseyPSC \N \N \N 152318925 5 2 \N \N 100 \N \N f f 0 \N 1217438789 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19507 2023-09-04 16:00:13.099 2023-09-19 17:44:20.274 TylerCarrilloQXO \N \N \N 60172349 5 2 \N \N 100 \N \N f f 0 \N 1521540587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20106 2024-01-04 14:13:48.336 2024-02-17 01:53:51.317 IsaiahWatsonM4O \N \N \N 61854294 5 2 \N \N 100 \N \N f f 0 \N 671634490 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19511 2021-10-21 23:54:33.291 2022-10-04 12:59:33.278 AshleyWoodwardAPC \N \N \N 80275510 5 2 \N \N 100 \N \N f f 0 \N 106818303 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19531 2021-10-11 15:37:34.168 2022-09-17 08:11:39.873 NormaFrancisMPM \N \N \N 216969762 5 2 \N \N 100 \N \N f f 0 \N 1446021283 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19533 2021-12-08 14:51:40.778 2021-12-30 07:02:29.92 AlexisGriffin0NW \N \N \N 94308395 5 2 \N \N 100 \N \N f f 0 \N 1989950596 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19537 2023-01-15 02:38:22.993 2021-12-26 03:28:44.748 BrookeMurray9UJ \N \N \N 141054789 5 2 \N \N 100 \N \N f f 0 \N 1877660628 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19541 2022-10-06 05:31:21.324 2023-05-12 01:44:35.243 AdrienneTerry2MB \N \N \N 42512579 5 2 \N \N 100 \N \N f f 0 \N 661319010 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19546 2022-07-16 06:41:55.686 2022-12-03 08:22:07.2 MarcBruce17I \N \N \N 82337460 5 2 \N \N 100 \N \N f f 0 \N 1671623744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19553 2023-11-28 09:29:52.19 2023-03-16 09:47:01.55 TonyMendozaFVV \N \N \N 17459882 5 2 \N \N 100 \N \N f f 0 \N 2410229201 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19557 2021-11-20 02:24:57.336 2022-09-28 14:06:17.492 DorisCarneyXHP \N \N \N 64098618 5 2 \N \N 100 \N \N f f 0 \N 438846962 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19566 2023-12-08 00:28:25.097 2022-10-19 01:02:10.404 TinaMercerP0S \N \N \N 176183132 5 2 \N \N 100 \N \N f f 0 \N 810282073 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19572 2021-12-21 23:29:51.058 2023-06-13 05:51:50.48 VickieEvans0VD \N \N \N 30409432 5 2 \N \N 100 \N \N f f 0 \N 1815149724 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19576 2023-09-09 07:40:18.221 2024-01-16 10:48:24.697 CassieRossPRC \N \N \N 234880169 5 2 \N \N 100 \N \N f f 0 \N 2038662241 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19581 2023-03-10 03:27:47.69 2023-08-11 01:43:15.256 CarrieFlowersJV6 \N \N \N 88515474 5 2 \N \N 100 \N \N f f 0 \N 1447114918 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19583 2022-01-27 06:01:48.933 2022-12-27 13:01:06.934 StephenAnthony4W2 \N \N \N 99416849 5 2 \N \N 100 \N \N f f 0 \N 1691198575 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19601 2022-08-01 03:22:47.509 2023-07-19 04:49:39.403 RodneyStevenson7TD \N \N \N 221780886 5 2 \N \N 100 \N \N f f 0 \N 1639248540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19613 2023-01-24 01:36:48.266 2022-09-02 22:34:58.711 StanleyBuchananZO6 \N \N \N 219592240 5 2 \N \N 100 \N \N f f 0 \N 744258842 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19615 2022-11-21 18:48:07.632 2022-12-09 15:27:35.927 JeanneWhitakerDZT \N \N \N 71187888 5 2 \N \N 100 \N \N f f 0 \N 488655446 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19622 2022-03-12 19:21:40.202 2022-08-29 01:38:47.69 MaxwellDuranI3M \N \N \N 90743620 5 2 \N \N 100 \N \N f f 0 \N 1054200373 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19633 2022-07-24 18:41:48.047 2024-01-30 11:21:03.309 GrantMccannP12 \N \N \N 118713891 5 2 \N \N 100 \N \N f f 0 \N 1210999828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19637 2022-12-05 11:00:49.404 2022-06-26 13:42:29.462 MeganJimenezDGJ \N \N \N 92398080 5 2 \N \N 100 \N \N f f 0 \N 784441271 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19638 2022-08-30 09:32:49.61 2022-09-12 12:35:11.48 EvelynShieldsYN8 \N \N \N 206414527 5 2 \N \N 100 \N \N f f 0 \N 1835003688 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19639 2023-06-19 22:22:55.608 2022-05-04 21:55:25.484 WaynePenaUWZ \N \N \N 46904810 5 2 \N \N 100 \N \N f f 0 \N 1261859725 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19640 2023-03-28 08:55:18.06 2024-01-15 05:54:38.692 ScottBurkeJXY \N \N \N 27740850 5 2 \N \N 100 \N \N f f 0 \N 1170789598 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19652 2022-04-28 13:13:40.536 2022-06-05 21:45:38.167 HeidiPenaONC \N \N \N 69258007 5 2 \N \N 100 \N \N f f 0 \N 1676029662 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19660 2023-07-03 17:13:22.351 2021-10-18 04:20:21.576 KrystalMcneil5PV \N \N \N 9314141 5 2 \N \N 100 \N \N f f 0 \N 1049496872 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19661 2024-01-04 06:26:27.21 2023-06-07 14:34:06.225 DanaRhodesUSY \N \N \N 78967438 5 2 \N \N 100 \N \N f f 0 \N 1252186124 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19662 2022-03-22 22:12:12.865 2022-02-04 03:13:02.512 AnnaBenjaminOOZ \N \N \N 197693117 5 2 \N \N 100 \N \N f f 0 \N 1204411625 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19664 2022-09-01 23:38:28.03 2021-11-29 08:16:05.82 KennethVelezHRX \N \N \N 151580542 5 2 \N \N 100 \N \N f f 0 \N 622979456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19689 2023-11-23 17:04:01.228 2022-10-13 18:15:24.193 MiaMontoya25W \N \N \N 211189036 5 2 \N \N 100 \N \N f f 0 \N 1791118000 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19690 2022-04-30 16:48:01.823 2023-12-29 11:20:33.749 SteveEspinoza2EQ \N \N \N 225759777 5 2 \N \N 100 \N \N f f 0 \N 1787073214 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19732 2022-12-25 09:33:57.179 2023-04-07 02:39:23.641 TerriTorresTGH \N \N \N 241700929 5 2 \N \N 100 \N \N f f 0 \N 1133847225 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19770 2023-05-07 19:55:28.156 2022-01-31 13:29:59.802 GregEatonDXU \N \N \N 232026214 5 2 \N \N 100 \N \N f f 0 \N 380979087 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19773 2023-07-18 11:12:36.24 2022-07-05 13:57:34.043 JoseMorton6HP \N \N \N 49141755 5 2 \N \N 100 \N \N f f 0 \N 2494763498 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19777 2021-12-01 10:49:29.616 2024-01-22 13:54:44.958 CollinMarshVV0 \N \N \N 80065530 5 2 \N \N 100 \N \N f f 0 \N 504579402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19785 2022-03-29 11:49:41.648 2022-03-27 10:06:42.46 HerbertBridgesY0J \N \N \N 92057508 5 2 \N \N 100 \N \N f f 0 \N 167559890 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19795 2023-09-03 21:15:11.103 2023-07-24 01:38:44.511 KatieThorntonEFT \N \N \N 75191950 5 2 \N \N 100 \N \N f f 0 \N 177886050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19796 2024-01-07 16:07:31.944 2023-05-12 01:17:03.317 PennyWilson1V6 \N \N \N 31986275 5 2 \N \N 100 \N \N f f 0 \N 1252818409 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19806 2022-06-22 04:07:08.469 2023-05-07 06:35:58.412 MarkPooleE1R \N \N \N 65973527 5 2 \N \N 100 \N \N f f 0 \N 841271640 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19809 2022-07-21 08:24:05.498 2023-04-22 04:40:22.282 AlexanderFryVVO \N \N \N 168940504 5 2 \N \N 100 \N \N f f 0 \N 2072258248 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19810 2023-10-28 18:53:36.954 2022-05-09 05:23:00.386 CindyVilla6PR \N \N \N 109445606 5 2 \N \N 100 \N \N f f 0 \N 597074970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19812 2021-10-23 07:11:40.505 2023-02-22 03:02:36.542 CassieWillis6O3 \N \N \N 191528471 5 2 \N \N 100 \N \N f f 0 \N 2469628724 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19813 2022-03-04 12:33:44.743 2022-11-03 12:55:28.728 ChloeMaloneVJ5 \N \N \N 174548383 5 2 \N \N 100 \N \N f f 0 \N 2242082908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19815 2021-12-31 16:36:22.901 2024-02-06 18:01:00.868 BreannaBishopS35 \N \N \N 125816214 5 2 \N \N 100 \N \N f f 0 \N 91513513 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19826 2022-11-10 04:20:30.43 2024-01-05 02:31:00.314 JudyRivas4MZ \N \N \N 134443678 5 2 \N \N 100 \N \N f f 0 \N 248658022 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19836 2022-01-21 06:19:08.095 2023-12-31 19:28:17.034 ShelleyBrockY7S \N \N \N 35978933 5 2 \N \N 100 \N \N f f 0 \N 2130390306 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19837 2021-12-01 19:08:23.668 2022-01-21 06:36:18.001 JoanneAshley3IT \N \N \N 240863618 5 2 \N \N 100 \N \N f f 0 \N 595452951 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19839 2023-05-02 05:15:58.95 2023-03-03 03:31:20.828 ChristinaMedinaNAU \N \N \N 170301162 5 2 \N \N 100 \N \N f f 0 \N 471760490 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19841 2022-01-15 02:49:53.631 2022-12-22 17:00:34.306 CristinaLivingstonIXW \N \N \N 22991050 5 2 \N \N 100 \N \N f f 0 \N 1658344953 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19843 2022-10-13 04:55:41.092 2023-08-17 18:32:31.527 CameronNicholsonI0O \N \N \N 86629835 5 2 \N \N 100 \N \N f f 0 \N 436803454 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19848 2022-11-12 23:39:08.57 2022-09-22 01:51:19.058 EdgarHodge3SC \N \N \N 54252376 5 2 \N \N 100 \N \N f f 0 \N 2425723823 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19852 2023-07-26 17:13:24.066 2021-10-11 04:53:09.163 DeniseBeasleyCU4 \N \N \N 172612617 5 2 \N \N 100 \N \N f f 0 \N 600271342 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19854 2023-06-23 19:59:19.33 2022-02-14 10:01:07.336 TheresaMorrison85H \N \N \N 66173169 5 2 \N \N 100 \N \N f f 0 \N 1254128434 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19857 2022-06-06 16:09:06.952 2024-02-16 09:44:47.159 IsaiahPruitt73F \N \N \N 211158139 5 2 \N \N 100 \N \N f f 0 \N 51559589 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19863 2021-11-17 14:43:22.586 2023-06-24 20:37:48.608 BriannaEdwardsXSP \N \N \N 168243532 5 2 \N \N 100 \N \N f f 0 \N 2111694581 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19864 2022-05-16 09:17:48.298 2022-09-10 13:35:23.616 AliciaPetersonF9L \N \N \N 129201668 5 2 \N \N 100 \N \N f f 0 \N 1282688208 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19878 2021-10-26 21:05:56.664 2023-01-17 10:07:36.499 BaileySchmittGJ6 \N \N \N 55672577 5 2 \N \N 100 \N \N f f 0 \N 1012264406 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19886 2023-06-19 01:03:10.234 2022-09-14 15:31:55.932 HelenZhang2KT \N \N \N 25847807 5 2 \N \N 100 \N \N f f 0 \N 645632771 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19890 2021-12-15 07:56:04.381 2022-12-08 02:01:46.308 ClaytonShafferT6M \N \N \N 169455108 5 2 \N \N 100 \N \N f f 0 \N 137813074 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19902 2023-10-10 17:15:14.303 2022-02-07 09:27:41.813 JohnathanFreyU1A \N \N \N 115333185 5 2 \N \N 100 \N \N f f 0 \N 1117466492 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19905 2023-06-17 14:20:31.276 2022-12-12 09:35:17.035 MariahWalkerCFO \N \N \N 96219122 5 2 \N \N 100 \N \N f f 0 \N 2472982942 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19906 2023-04-18 08:19:22.04 2022-01-03 06:22:51.256 LoganStrongEQS \N \N \N 143648058 5 2 \N \N 100 \N \N f f 0 \N 810056973 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19907 2022-11-06 03:23:05.686 2022-03-07 04:39:03.383 KarinaWalters2H0 \N \N \N 160136402 5 2 \N \N 100 \N \N f f 0 \N 894669933 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19909 2022-11-09 02:45:24.808 2023-12-30 18:11:33.499 JeanneCharlesAXF \N \N \N 22266079 5 2 \N \N 100 \N \N f f 0 \N 171759647 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19910 2021-12-25 00:50:28.113 2021-10-27 11:42:47.398 ChelseaMarshJDX \N \N \N 186843240 5 2 \N \N 100 \N \N f f 0 \N 1166391748 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19911 2022-11-28 05:26:06.13 2023-06-05 07:21:14.017 LeslieGonzalesS8O \N \N \N 186953442 5 2 \N \N 100 \N \N f f 0 \N 1826306000 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19924 2022-07-02 07:21:28.244 2022-06-22 14:24:16.791 AlecMcintoshZ46 \N \N \N 236040213 5 2 \N \N 100 \N \N f f 0 \N 2139295686 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19929 2023-05-03 23:11:32.06 2022-10-05 02:30:41.331 RyanWelch48O \N \N \N 146210726 5 2 \N \N 100 \N \N f f 0 \N 1646325681 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19938 2022-01-28 07:56:42.179 2021-11-30 03:12:56.31 FrederickRichmond0HQ \N \N \N 170412773 5 2 \N \N 100 \N \N f f 0 \N 1315063281 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19941 2022-01-16 13:35:12.125 2022-11-10 01:49:36.943 SherryWilkinsI0V \N \N \N 240111219 5 2 \N \N 100 \N \N f f 0 \N 255795013 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19943 2022-04-10 00:07:35.905 2023-11-28 13:23:36.911 EddieHullEGF \N \N \N 185853203 5 2 \N \N 100 \N \N f f 0 \N 1878344106 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19952 2021-10-23 14:57:58.13 2023-02-17 05:08:16.898 RuthJenkins2V1 \N \N \N 32720580 5 2 \N \N 100 \N \N f f 0 \N 1487224910 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19961 2022-04-19 11:12:25.563 2022-12-28 09:06:54.757 DestinyMedinaS58 \N \N \N 83525199 5 2 \N \N 100 \N \N f f 0 \N 2043331346 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19967 2023-05-08 15:33:50.576 2022-08-05 16:59:00.766 ErnestPotter84U \N \N \N 111395171 5 2 \N \N 100 \N \N f f 0 \N 223941523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19976 2023-10-26 02:03:39.259 2021-12-16 22:05:23.437 SteveDodsonD0Y \N \N \N 156033497 5 2 \N \N 100 \N \N f f 0 \N 412733554 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19981 2022-11-29 10:26:01.052 2023-01-11 12:08:50.681 DarinTravisREQ \N \N \N 90840318 5 2 \N \N 100 \N \N f f 0 \N 1268489667 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19987 2023-12-25 23:31:23.041 2023-03-03 10:19:38.014 CristianCox2TP \N \N \N 150669707 5 2 \N \N 100 \N \N f f 0 \N 117430528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19995 2023-02-18 06:35:41.211 2024-01-10 11:23:28.881 RussellOwenGX0 \N \N \N 142151599 5 2 \N \N 100 \N \N f f 0 \N 1122522721 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19996 2023-06-15 15:08:30.228 2023-06-09 20:24:00.562 CarlyLeM1P \N \N \N 103148841 5 2 \N \N 100 \N \N f f 0 \N 758935885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20006 2023-05-21 15:19:47.504 2023-07-04 14:21:52.736 BenjaminShepherdXCY \N \N \N 151818122 5 2 \N \N 100 \N \N f f 0 \N 824474358 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20015 2023-03-13 06:14:48.422 2022-06-07 20:03:02.182 MarcoZavalaFEB \N \N \N 178419126 5 2 \N \N 100 \N \N f f 0 \N 1834920603 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20018 2021-11-21 04:00:29.413 2022-02-08 00:34:43.818 JacobBarr6J5 \N \N \N 49298359 5 2 \N \N 100 \N \N f f 0 \N 1915920972 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20022 2023-08-02 01:38:17.563 2022-12-14 17:29:23.594 GabrielaMcdanielG6Q \N \N \N 126756066 5 2 \N \N 100 \N \N f f 0 \N 2357134625 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20023 2023-02-14 09:33:33.211 2022-04-22 12:20:19.8 JacksonRogersKTT \N \N \N 12035933 5 2 \N \N 100 \N \N f f 0 \N 1252945406 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20026 2022-01-13 11:16:24.697 2022-12-31 10:11:11.22 StacieChristensenGCQ \N \N \N 113793576 5 2 \N \N 100 \N \N f f 0 \N 1047539815 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20036 2021-10-21 13:47:31.891 2022-01-29 09:54:03.891 BillyCervantesWN8 \N \N \N 158772913 5 2 \N \N 100 \N \N f f 0 \N 2312748416 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20045 2024-01-25 09:59:56.106 2024-01-22 16:37:09.903 VictorOlsenJVC \N \N \N 78624660 5 2 \N \N 100 \N \N f f 0 \N 1771268191 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20058 2021-12-17 18:40:02.369 2022-03-28 08:44:39.477 AustinNixon8LK \N \N \N 164965984 5 2 \N \N 100 \N \N f f 0 \N 1872664783 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20059 2022-11-28 16:29:47.777 2023-08-09 09:57:49.227 TabithaMcdaniel4K3 \N \N \N 220670231 5 2 \N \N 100 \N \N f f 0 \N 1636479243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20062 2022-09-04 17:36:15.62 2022-06-29 20:04:06.901 DorisSuttonK1Q \N \N \N 221968461 5 2 \N \N 100 \N \N f f 0 \N 700085704 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20066 2023-09-29 16:54:08.044 2023-10-15 09:55:22.578 AnnetteWeaverG3G \N \N \N 37326442 5 2 \N \N 100 \N \N f f 0 \N 2150940132 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20080 2022-07-14 06:27:32.228 2023-12-29 19:09:47.949 DustinLangGN8 \N \N \N 242278083 5 2 \N \N 100 \N \N f f 0 \N 1592590053 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20084 2022-07-16 22:08:31.353 2023-12-16 05:24:13.604 EduardoHansonFX2 \N \N \N 184792589 5 2 \N \N 100 \N \N f f 0 \N 1612382085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20087 2023-06-01 06:08:49.401 2022-03-14 09:27:04.691 JackCabreraH3S \N \N \N 54912429 5 2 \N \N 100 \N \N f f 0 \N 449272252 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20090 2023-03-22 01:49:38.215 2021-10-02 02:13:00.268 TamaraQuinnG9Z \N \N \N 11563455 5 2 \N \N 100 \N \N f f 0 \N 2144789352 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20094 2022-07-01 22:13:03.478 2023-12-31 17:33:29.474 MeredithDavidsonC4E \N \N \N 65959884 5 2 \N \N 100 \N \N f f 0 \N 907002648 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20099 2023-04-08 03:42:24.05 2022-07-07 20:54:42.885 ConnorHensleyP42 \N \N \N 80434926 5 2 \N \N 100 \N \N f f 0 \N 1410025211 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 895 2024-01-24 08:44:49.907 2022-11-16 21:35:52.728 LarryWallA4Y \N \N \N 223829226 5 2 \N \N 100 \N \N f f 0 \N 1701271783 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20108 2022-12-24 15:23:22.748 2021-12-19 08:44:56.542 CarolEdwardsZS5 \N \N \N 176292487 5 2 \N \N 100 \N \N f f 0 \N 1352704184 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20109 2021-12-05 19:01:06.268 2023-08-05 04:46:38.624 ElaineRiveraBGX \N \N \N 206637546 5 2 \N \N 100 \N \N f f 0 \N 852841500 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20110 2023-11-27 03:00:14.649 2021-11-11 00:49:23.26 DouglasDudley7HP \N \N \N 44761544 5 2 \N \N 100 \N \N f f 0 \N 1517077396 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20117 2021-11-01 22:10:08.706 2022-07-16 02:15:57.698 ZacharyPowersMKJ \N \N \N 178846021 5 2 \N \N 100 \N \N f f 0 \N 57845612 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20120 2022-03-27 08:58:16.006 2022-04-07 08:29:01.587 JodiBurke01Y \N \N \N 94963176 5 2 \N \N 100 \N \N f f 0 \N 567832674 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20129 2023-12-14 17:53:30.61 2023-05-01 14:35:54.869 DonCohenBB2 \N \N \N 34769276 5 2 \N \N 100 \N \N f f 0 \N 1366030708 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20133 2022-03-27 11:35:51.652 2022-11-03 13:50:55.332 RhondaShafferE8Y \N \N \N 222325317 5 2 \N \N 100 \N \N f f 0 \N 2171553022 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20137 2023-01-13 10:49:48.643 2022-12-05 14:34:38.331 EdwardSchmittGGC \N \N \N 215659062 5 2 \N \N 100 \N \N f f 0 \N 719147912 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20143 2024-01-31 15:47:49.943 2021-11-18 22:14:03.281 MarcoHurleyZ3Q \N \N \N 50785285 5 2 \N \N 100 \N \N f f 0 \N 2065347676 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20153 2023-05-28 20:16:53.448 2022-07-04 18:31:38.737 TerrenceDavilaEKR \N \N \N 181507517 5 2 \N \N 100 \N \N f f 0 \N 1924229646 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20156 2023-04-01 21:06:34.969 2022-12-28 08:44:42.322 GaryBaxter99L \N \N \N 125696667 5 2 \N \N 100 \N \N f f 0 \N 1189158160 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20157 2022-07-18 17:21:51.984 2023-12-10 09:38:15.386 KeithDeckerLX4 \N \N \N 188848075 5 2 \N \N 100 \N \N f f 0 \N 66275391 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20162 2023-03-04 06:31:07.513 2023-03-01 22:54:58.556 MarilynParker6T5 \N \N \N 193678074 5 2 \N \N 100 \N \N f f 0 \N 1034092008 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20163 2022-09-02 17:31:37.971 2023-10-24 03:17:04.238 RodneyBoydQBX \N \N \N 151671992 5 2 \N \N 100 \N \N f f 0 \N 418596341 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20168 2021-12-14 05:58:24.869 2022-05-13 13:51:17.749 RachelChangPHD \N \N \N 185904461 5 2 \N \N 100 \N \N f f 0 \N 1721786776 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20179 2022-05-29 11:34:43.968 2023-04-13 10:01:10.804 ErikaPaul0ZO \N \N \N 248732775 5 2 \N \N 100 \N \N f f 0 \N 231434105 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20180 2023-04-22 06:28:12.797 2022-07-26 19:33:44.544 AnnetteRamos8NY \N \N \N 245760962 5 2 \N \N 100 \N \N f f 0 \N 1949341116 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20183 2023-02-04 11:11:18.684 2022-08-26 10:03:28.791 AprilMorton3LU \N \N \N 238236273 5 2 \N \N 100 \N \N f f 0 \N 619047125 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20185 2023-02-15 20:35:11.704 2022-07-06 10:07:59.712 TanyaBolton4GW \N \N \N 40987454 5 2 \N \N 100 \N \N f f 0 \N 685659650 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20187 2023-06-19 08:57:38.827 2023-02-18 16:50:58.653 CraigStantonL6Y \N \N \N 49890227 5 2 \N \N 100 \N \N f f 0 \N 391716920 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20198 2024-01-15 13:02:49.907 2022-03-05 08:42:57.25 KathrynRamseyEPO \N \N \N 242281107 5 2 \N \N 100 \N \N f f 0 \N 1943826090 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20201 2023-07-02 17:05:13.378 2022-09-16 21:37:04.217 SherylTerryYSL \N \N \N 3202394 5 2 \N \N 100 \N \N f f 0 \N 1781136985 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20205 2021-10-15 11:57:14.185 2022-12-04 09:33:35.085 BrettLandryGE4 \N \N \N 123563487 5 2 \N \N 100 \N \N f f 0 \N 1242261495 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20208 2022-12-23 01:42:15.932 2022-03-18 22:47:26.415 SarahVangEQD \N \N \N 5032597 5 2 \N \N 100 \N \N f f 0 \N 2373317115 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20218 2021-11-25 13:00:15.66 2023-08-23 04:35:38.468 HaroldCharlesC95 \N \N \N 231632753 5 2 \N \N 100 \N \N f f 0 \N 2032768666 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20220 2022-08-15 09:10:35.491 2022-03-10 00:42:45.759 DeanRobertsENJ \N \N \N 44824736 5 2 \N \N 100 \N \N f f 0 \N 40907782 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20222 2023-11-01 19:13:59.193 2023-04-25 10:08:15.373 MichealParkCFB \N \N \N 769174 5 2 \N \N 100 \N \N f f 0 \N 2429138964 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20225 2023-07-21 03:25:26.529 2021-10-04 06:55:29.673 LucasMarksMLJ \N \N \N 14375842 5 2 \N \N 100 \N \N f f 0 \N 739950090 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20246 2023-02-22 04:51:42.242 2023-01-23 06:09:34.267 TraciLuna73C \N \N \N 114529037 5 2 \N \N 100 \N \N f f 0 \N 783964667 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20251 2022-12-01 11:56:12.327 2022-02-28 10:14:35.324 NormaStevenson5J0 \N \N \N 13355744 5 2 \N \N 100 \N \N f f 0 \N 1792500072 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20254 2023-11-26 00:31:37.278 2022-07-11 13:40:41.595 MindyDaniels1YO \N \N \N 197332397 5 2 \N \N 100 \N \N f f 0 \N 159152803 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20257 2023-05-14 05:59:31.504 2022-11-16 02:19:51.063 FrederickMuellerLKE \N \N \N 192061483 5 2 \N \N 100 \N \N f f 0 \N 2136241952 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20258 2023-07-03 13:57:30.904 2023-10-08 05:09:35.714 DaleYatesWEN \N \N \N 109894449 5 2 \N \N 100 \N \N f f 0 \N 631948291 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20264 2023-10-21 04:07:01.335 2022-11-08 06:57:35.396 ArielBeanAE4 \N \N \N 193238054 5 2 \N \N 100 \N \N f f 0 \N 1285455667 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20267 2023-01-07 09:16:20.071 2023-10-25 12:57:23.321 CheyenneMataKFJ \N \N \N 75821634 5 2 \N \N 100 \N \N f f 0 \N 2275872595 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20272 2023-01-12 14:58:32.777 2023-09-17 00:58:40.703 ParkerChambersK1H \N \N \N 226932499 5 2 \N \N 100 \N \N f f 0 \N 1858109026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20276 2022-02-13 14:56:50.873 2023-05-02 09:27:59.508 MikeVelazquezEAN \N \N \N 142141679 5 2 \N \N 100 \N \N f f 0 \N 2116074509 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20280 2022-06-15 07:30:53.021 2024-01-20 11:18:46.187 KristenClayH3B \N \N \N 206782469 5 2 \N \N 100 \N \N f f 0 \N 1390721914 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20287 2022-02-07 11:03:43.887 2022-12-07 21:16:51.999 NeilOconnellTL5 \N \N \N 176459588 5 2 \N \N 100 \N \N f f 0 \N 1835966427 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20301 2022-09-29 07:37:40.294 2022-10-13 10:20:55.049 JavierRiveraLD2 \N \N \N 41973375 5 2 \N \N 100 \N \N f f 0 \N 467247096 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20302 2021-12-23 07:36:54.286 2023-10-26 18:51:47.901 BeckyDaughertyZOJ \N \N \N 219197688 5 2 \N \N 100 \N \N f f 0 \N 2265130635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20310 2022-01-09 08:15:10.122 2022-01-22 19:00:45.7 EdgarKellyMEU \N \N \N 34577609 5 2 \N \N 100 \N \N f f 0 \N 300486900 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20326 2021-11-30 19:10:22.721 2022-04-29 09:44:45.867 NicholeBautistaFDP \N \N \N 202264275 5 2 \N \N 100 \N \N f f 0 \N 804736607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20337 2023-05-16 14:00:28.114 2023-07-10 01:53:19.302 ThomasEscobar11I \N \N \N 152122644 5 2 \N \N 100 \N \N f f 0 \N 2365636412 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20340 2022-07-25 00:47:13.024 2021-12-17 08:58:58.667 LaceyRivasB2U \N \N \N 162999393 5 2 \N \N 100 \N \N f f 0 \N 959053612 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20353 2022-01-26 23:54:13.477 2022-01-02 16:17:45.413 SamuelHansonCO1 \N \N \N 179309561 5 2 \N \N 100 \N \N f f 0 \N 164021986 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20370 2022-01-11 20:51:28.789 2023-03-26 18:05:58.095 TheodoreWeberDJO \N \N \N 156940802 5 2 \N \N 100 \N \N f f 0 \N 393015346 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20377 2023-06-28 02:15:11.834 2022-10-05 07:55:10.122 CherylToddXTP \N \N \N 83729203 5 2 \N \N 100 \N \N f f 0 \N 1903624274 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20381 2023-10-19 14:39:31.823 2022-01-25 07:33:11.941 MichelleBray0SU \N \N \N 58769382 5 2 \N \N 100 \N \N f f 0 \N 1713771828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20409 2023-02-06 23:59:00.433 2022-06-15 19:15:08.235 DorisThorntonOPU \N \N \N 139369605 5 2 \N \N 100 \N \N f f 0 \N 1644391251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20412 2023-11-07 01:05:04.569 2022-11-11 11:58:26.348 BettySnyderG7X \N \N \N 11924610 5 2 \N \N 100 \N \N f f 0 \N 428652385 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20424 2024-01-31 20:58:40.498 2023-01-17 20:57:05.453 LisaBuck6GE \N \N \N 215582993 5 2 \N \N 100 \N \N f f 0 \N 1937159378 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20430 2022-12-28 02:08:08.948 2022-09-07 18:41:16.548 DarrylChandlerS94 \N \N \N 157817936 5 2 \N \N 100 \N \N f f 0 \N 2464457018 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20433 2023-06-26 08:59:46.786 2021-11-12 13:18:25.303 JesseNashR41 \N \N \N 65042336 5 2 \N \N 100 \N \N f f 0 \N 66726139 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20434 2022-01-07 23:14:22.09 2022-06-20 12:51:15.697 BreannaWhiteZME \N \N \N 192586438 5 2 \N \N 100 \N \N f f 0 \N 1766553878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20452 2021-11-27 05:55:34.256 2022-09-15 16:21:51.778 SallyShepardKSW \N \N \N 83794092 5 2 \N \N 100 \N \N f f 0 \N 2346921985 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20464 2021-11-01 09:35:16.122 2022-08-09 17:49:08.847 ErikaWarner8VI \N \N \N 122041898 5 2 \N \N 100 \N \N f f 0 \N 360973151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20470 2024-01-14 08:32:13.085 2023-06-23 00:29:49.039 TeresaFisher8QQ \N \N \N 205548678 5 2 \N \N 100 \N \N f f 0 \N 2433089837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20479 2021-10-15 05:51:57.932 2024-02-08 11:18:02.715 RaymondGrossMGX \N \N \N 179946469 5 2 \N \N 100 \N \N f f 0 \N 1471984762 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20495 2023-10-16 08:03:29.316 2023-07-28 08:05:31.029 AprilRichardsonE15 \N \N \N 123566110 5 2 \N \N 100 \N \N f f 0 \N 1525534629 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20502 2022-06-08 12:47:08.176 2022-07-23 17:12:57.281 MarvinTranG7C \N \N \N 189877421 5 2 \N \N 100 \N \N f f 0 \N 2046517872 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20509 2022-11-11 01:08:05.619 2023-04-20 06:58:06.631 AntonioDeleonBM1 \N \N \N 248528308 5 2 \N \N 100 \N \N f f 0 \N 699914246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20514 2023-07-05 04:09:21.052 2022-04-20 15:17:21.709 IsabelHurleyKNN \N \N \N 34686859 5 2 \N \N 100 \N \N f f 0 \N 13504350 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20539 2022-01-05 10:51:09.226 2024-01-16 16:13:04.775 ChristopherEspinozaU7P \N \N \N 35510334 5 2 \N \N 100 \N \N f f 0 \N 2065175202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20546 2023-10-07 11:36:05.158 2022-12-16 16:02:30.64 MikaylaPittman656 \N \N \N 220917444 5 2 \N \N 100 \N \N f f 0 \N 2114903084 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20551 2022-10-15 07:45:06.619 2023-11-13 21:36:05.844 AlexaBlankenshipFKS \N \N \N 12349716 5 2 \N \N 100 \N \N f f 0 \N 1457539851 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20555 2022-08-22 15:07:50.132 2022-04-03 09:45:39.317 PamelaTravisG8N \N \N \N 1956474 5 2 \N \N 100 \N \N f f 0 \N 1726908304 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20560 2023-11-14 19:29:41.187 2024-01-27 17:10:47.099 RileyGibbs33I \N \N \N 33133011 5 2 \N \N 100 \N \N f f 0 \N 993486266 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20564 2023-11-19 11:16:50.309 2023-04-29 12:46:32.551 TammieCooperNEV \N \N \N 244462160 5 2 \N \N 100 \N \N f f 0 \N 346212450 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20811 2023-07-03 03:42:05.954 2023-03-20 06:33:04.313 DianaHardingDUX \N \N \N 218952710 5 2 \N \N 100 \N \N f f 0 \N 1160036026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20573 2022-06-17 18:17:42.095 2023-02-02 20:15:28.723 PatriciaGould86T \N \N \N 225005942 5 2 \N \N 100 \N \N f f 0 \N 256294862 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20577 2023-09-20 13:40:02.685 2022-08-24 03:16:16.203 KennethBuckley0T2 \N \N \N 123868526 5 2 \N \N 100 \N \N f f 0 \N 338903445 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20581 2023-11-22 10:26:32.95 2023-08-13 02:32:04.837 JoyceBullock0FW \N \N \N 69712363 5 2 \N \N 100 \N \N f f 0 \N 2012731990 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20585 2021-11-11 17:39:11.446 2022-02-21 07:43:43.918 MonicaCarson0SZ \N \N \N 220199432 5 2 \N \N 100 \N \N f f 0 \N 2106364967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20586 2021-10-19 10:22:54.302 2022-05-27 13:18:23.304 MelanieGillespieM3H \N \N \N 114268360 5 2 \N \N 100 \N \N f f 0 \N 1786396784 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20588 2024-02-10 17:09:44.613 2023-11-12 04:42:09.226 NinaPhelpsOCZ \N \N \N 97921618 5 2 \N \N 100 \N \N f f 0 \N 1699511385 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20594 2023-11-02 20:19:34.898 2022-07-03 14:54:19.522 DeannaPittmanHA1 \N \N \N 85333532 5 2 \N \N 100 \N \N f f 0 \N 1468060563 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20596 2022-01-26 14:29:35.826 2022-07-19 10:32:03.913 EmmaJeffersonTPC \N \N \N 173310781 5 2 \N \N 100 \N \N f f 0 \N 2079128076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20597 2024-02-11 21:04:04.074 2023-07-12 18:13:44.031 AndreaChapmanF45 \N \N \N 111614564 5 2 \N \N 100 \N \N f f 0 \N 1319141489 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20599 2023-04-12 09:08:51.309 2023-02-08 02:00:39.33 MalikJordanGED \N \N \N 213329506 5 2 \N \N 100 \N \N f f 0 \N 872511699 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20602 2022-10-19 12:55:48.131 2023-05-14 18:43:04.509 JudithBurtonET4 \N \N \N 159394093 5 2 \N \N 100 \N \N f f 0 \N 573161050 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20603 2023-11-22 22:17:24.599 2023-12-12 06:02:33.695 SusanHuertaJ4P \N \N \N 42397423 5 2 \N \N 100 \N \N f f 0 \N 434146119 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20606 2022-05-29 19:31:21.248 2023-03-08 00:41:32.979 CandaceGilesMQH \N \N \N 135510390 5 2 \N \N 100 \N \N f f 0 \N 141569121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20613 2023-02-06 01:00:04.754 2022-08-19 15:37:54.449 JulianPetersonRIC \N \N \N 238707772 5 2 \N \N 100 \N \N f f 0 \N 1782286621 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20614 2023-11-04 07:47:37.825 2023-02-05 08:37:28.306 JackieBurton7TZ \N \N \N 36611569 5 2 \N \N 100 \N \N f f 0 \N 1443547698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20616 2022-07-05 18:53:57.366 2023-07-11 03:13:20.305 MadelineCooperX4G \N \N \N 34581076 5 2 \N \N 100 \N \N f f 0 \N 1940428010 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20619 2023-03-05 20:53:03.996 2023-10-08 13:55:51.444 RobertoSheppard6ET \N \N \N 107607733 5 2 \N \N 100 \N \N f f 0 \N 1186082064 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20623 2022-10-08 01:27:50.305 2023-03-19 04:08:47.92 KristyDaviesYQ1 \N \N \N 27301070 5 2 \N \N 100 \N \N f f 0 \N 848471030 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20624 2023-10-30 06:29:06.686 2022-06-23 00:59:46.139 HarryCostaB4H \N \N \N 249295625 5 2 \N \N 100 \N \N f f 0 \N 362462460 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20642 2023-06-18 00:50:25.217 2021-10-19 23:37:26.111 JeremiahFlemingNL7 \N \N \N 95348592 5 2 \N \N 100 \N \N f f 0 \N 519381957 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20646 2022-03-05 12:56:55.243 2022-05-16 16:02:19.766 AllisonToddS93 \N \N \N 11922526 5 2 \N \N 100 \N \N f f 0 \N 448170026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20647 2022-01-27 04:25:37.122 2023-09-22 16:47:46.373 KendraDillonXRF \N \N \N 54288403 5 2 \N \N 100 \N \N f f 0 \N 443660121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20655 2023-05-05 06:27:51.173 2022-08-01 17:30:41.206 DorisSuarez8NF \N \N \N 79385209 5 2 \N \N 100 \N \N f f 0 \N 2135571276 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20852 2023-10-01 13:19:56.98 2023-02-07 21:54:06.846 MollyPottsTMM \N \N \N 180601601 5 2 \N \N 100 \N \N f f 0 \N 1816867497 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20657 2022-07-12 15:06:51.34 2023-11-19 07:17:37.53 RonaldMosleyDR8 \N \N \N 192090883 5 2 \N \N 100 \N \N f f 0 \N 2260115341 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20663 2024-02-05 23:50:22.296 2021-11-07 07:06:51.602 CassieWilkersonIG7 \N \N \N 172302861 5 2 \N \N 100 \N \N f f 0 \N 1047461609 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20680 2022-08-09 08:25:58.096 2023-05-17 01:36:19.954 FaithPittsIHR \N \N \N 207145456 5 2 \N \N 100 \N \N f f 0 \N 777167218 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20683 2022-07-12 18:26:43.096 2021-12-18 12:59:43.584 KellyOdomD88 \N \N \N 168897461 5 2 \N \N 100 \N \N f f 0 \N 2120891266 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20687 2022-02-24 13:19:59.864 2022-08-13 13:18:51.522 MalikVaughnPAX \N \N \N 84281865 5 2 \N \N 100 \N \N f f 0 \N 2214765073 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20691 2022-04-10 03:00:45.869 2022-12-14 22:01:43.778 JamieHernandezAQW \N \N \N 59554736 5 2 \N \N 100 \N \N f f 0 \N 1707340944 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20701 2023-08-31 04:46:36.388 2022-07-17 18:18:07.017 LorraineBean8TR \N \N \N 181277156 5 2 \N \N 100 \N \N f f 0 \N 1331722197 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20704 2023-01-26 19:56:09.784 2024-02-19 14:01:56.004 AnneShepherdN2B \N \N \N 234012157 5 2 \N \N 100 \N \N f f 0 \N 1585600403 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20706 2023-04-09 06:51:14.809 2022-12-26 04:10:29.954 WilliamBlanchardKH3 \N \N \N 33595064 5 2 \N \N 100 \N \N f f 0 \N 1812434845 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20710 2022-09-23 21:31:56.937 2022-04-18 13:55:23.299 DaveGibsonJ39 \N \N \N 121542243 5 2 \N \N 100 \N \N f f 0 \N 644500757 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20713 2023-07-09 02:52:53.212 2022-01-24 12:40:40.193 YvetteDeckerAYD \N \N \N 16976000 5 2 \N \N 100 \N \N f f 0 \N 1534899403 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20717 2024-02-02 07:22:27.712 2023-08-24 14:01:21.026 MaxMalone4GQ \N \N \N 92237001 5 2 \N \N 100 \N \N f f 0 \N 257286477 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20738 2023-10-04 12:30:53.499 2022-08-27 10:58:23.571 CliffordCrosbyRLK \N \N \N 74018496 5 2 \N \N 100 \N \N f f 0 \N 1794834586 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20744 2023-06-13 20:51:24.99 2022-09-02 21:03:40.768 LeahAguilar2PR \N \N \N 24743038 5 2 \N \N 100 \N \N f f 0 \N 704526011 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20745 2022-07-02 21:24:30.071 2021-11-08 09:50:29.042 RyanSheppardAOD \N \N \N 143808747 5 2 \N \N 100 \N \N f f 0 \N 992414259 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20751 2023-04-30 18:57:49.518 2023-05-28 12:08:47.244 LeroyHodgeQ26 \N \N \N 107787827 5 2 \N \N 100 \N \N f f 0 \N 762425923 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20756 2022-01-23 13:24:55.328 2023-05-02 05:12:42.269 LisaGoldenBKA \N \N \N 216902126 5 2 \N \N 100 \N \N f f 0 \N 2074473120 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20757 2023-07-14 08:54:40.577 2022-10-15 19:08:13.932 ChristinaWallerCGY \N \N \N 234654208 5 2 \N \N 100 \N \N f f 0 \N 467342980 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20775 2023-11-18 16:45:08.37 2023-12-26 08:46:07.274 ShannonBest8GY \N \N \N 166424319 5 2 \N \N 100 \N \N f f 0 \N 533588113 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20776 2022-02-28 12:59:33.96 2022-04-02 02:05:26.693 TomWalterN77 \N \N \N 40438014 5 2 \N \N 100 \N \N f f 0 \N 678635428 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20781 2024-02-11 07:09:32.854 2023-04-02 11:09:44.837 BeckyFitzpatrick2KI \N \N \N 169955594 5 2 \N \N 100 \N \N f f 0 \N 1116013722 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20782 2022-04-13 03:02:10.175 2022-12-16 05:12:11.964 KrystalStrongM7C \N \N \N 222621675 5 2 \N \N 100 \N \N f f 0 \N 420374692 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20788 2023-05-06 02:32:29.753 2023-09-10 23:35:34.2 BrianaForbesLN1 \N \N \N 85521230 5 2 \N \N 100 \N \N f f 0 \N 2129564648 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20799 2024-01-07 22:01:26.454 2023-11-03 06:38:56.235 JimmyBentley4G1 \N \N \N 216096343 5 2 \N \N 100 \N \N f f 0 \N 198160100 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20812 2023-10-06 14:56:16.975 2023-07-20 15:33:16.189 CarrieHollandCKV \N \N \N 205886380 5 2 \N \N 100 \N \N f f 0 \N 1110381664 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20816 2022-07-01 03:53:09.663 2023-12-13 19:53:58.961 JeremiahGross4V8 \N \N \N 219236656 5 2 \N \N 100 \N \N f f 0 \N 949754587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20817 2023-06-30 20:41:41.103 2021-10-27 19:51:06.278 KristieGarner8UX \N \N \N 77180034 5 2 \N \N 100 \N \N f f 0 \N 130548757 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20825 2023-01-25 10:21:14.531 2022-11-27 10:53:07.309 RobynSkinnerI7O \N \N \N 222473513 5 2 \N \N 100 \N \N f f 0 \N 1639942907 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20837 2023-01-23 03:15:46.957 2021-12-11 00:58:17.303 JoSchmittF8X \N \N \N 3770030 5 2 \N \N 100 \N \N f f 0 \N 922671130 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20840 2022-02-15 17:48:27.873 2023-06-14 04:11:48.242 SydneyGuerra430 \N \N \N 191450897 5 2 \N \N 100 \N \N f f 0 \N 1030253221 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20841 2022-09-12 13:17:43.134 2022-03-27 04:25:29.724 JuanSparksI8W \N \N \N 240956137 5 2 \N \N 100 \N \N f f 0 \N 1910976972 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 896 2023-06-05 10:51:29.786 2024-01-09 20:58:27.421 HayleyBeckDC8 \N \N \N 87396914 5 2 \N \N 100 \N \N f f 0 \N 252478859 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20854 2022-09-12 06:30:43.315 2023-02-10 04:45:37.188 JuliaMay6NZ \N \N \N 53804375 5 2 \N \N 100 \N \N f f 0 \N 367019333 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20858 2022-07-09 00:35:32.198 2023-02-09 14:55:28.494 SoniaNovak7UX \N \N \N 111314457 5 2 \N \N 100 \N \N f f 0 \N 106163203 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20861 2023-10-12 10:02:57.915 2023-12-13 14:34:23.826 KellyVaughanWIX \N \N \N 70745834 5 2 \N \N 100 \N \N f f 0 \N 456789731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20871 2023-01-22 20:51:43.297 2022-10-17 18:06:15.557 LorettaMejiaFHI \N \N \N 129639243 5 2 \N \N 100 \N \N f f 0 \N 1132455832 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20881 2022-12-18 03:40:06.886 2022-11-18 04:56:23.782 RoyHenryBYF \N \N \N 234533320 5 2 \N \N 100 \N \N f f 0 \N 1855221313 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20889 2022-11-06 03:21:46.283 2023-05-31 19:06:42.541 EarlPayneTPN \N \N \N 90660022 5 2 \N \N 100 \N \N f f 0 \N 1197690324 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20891 2023-09-26 19:10:48.402 2022-05-28 05:08:37.154 GabrielLeeZZQ \N \N \N 14242478 5 2 \N \N 100 \N \N f f 0 \N 984849363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20892 2022-05-06 18:45:41.974 2024-02-10 04:21:48.679 DeniseRandolph3W1 \N \N \N 242388533 5 2 \N \N 100 \N \N f f 0 \N 316583121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20906 2023-07-30 05:33:40.718 2022-08-11 20:25:14.887 JorgeBautista4Q0 \N \N \N 24625979 5 2 \N \N 100 \N \N f f 0 \N 539664802 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20924 2023-01-16 15:41:44.2 2023-04-23 20:58:02.659 JeanColeman1X5 \N \N \N 13571245 5 2 \N \N 100 \N \N f f 0 \N 1264613339 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20963 2022-07-17 22:20:41.974 2021-12-03 00:19:08.09 GarrettMyersBS8 \N \N \N 21952923 5 2 \N \N 100 \N \N f f 0 \N 2092850966 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20964 2022-05-28 06:56:30.608 2023-12-31 21:12:08.025 LaceyHensley3UB \N \N \N 158289776 5 2 \N \N 100 \N \N f f 0 \N 2281351687 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20969 2022-08-17 21:03:58.447 2023-05-08 05:46:16.497 WesleySellersEJK \N \N \N 129551824 5 2 \N \N 100 \N \N f f 0 \N 2301285793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20970 2022-07-07 15:14:38.653 2022-04-12 21:18:12.931 YvonneCisnerosVM1 \N \N \N 126113467 5 2 \N \N 100 \N \N f f 0 \N 452623621 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20972 2021-10-11 09:48:05.206 2022-02-20 11:19:25.134 LorraineWoodDZN \N \N \N 245731732 5 2 \N \N 100 \N \N f f 0 \N 1259629486 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20973 2023-12-25 19:06:16.915 2021-11-30 06:54:13.43 ArthurBarnes25J \N \N \N 234577273 5 2 \N \N 100 \N \N f f 0 \N 2310124766 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20980 2023-10-13 00:12:33.487 2022-02-22 12:52:08.086 ColtonShelton8XL \N \N \N 79388310 5 2 \N \N 100 \N \N f f 0 \N 2360831967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20987 2021-10-31 19:49:00.796 2022-07-07 20:37:07.764 DaltonJenkinsYT2 \N \N \N 167613829 5 2 \N \N 100 \N \N f f 0 \N 1640762347 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20993 2022-01-31 13:39:16.081 2022-10-16 15:22:07.887 ElaineVegaJW2 \N \N \N 95869277 5 2 \N \N 100 \N \N f f 0 \N 2212415153 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20998 2023-09-15 18:50:22 2022-04-17 21:39:36.809 TraciYangNP5 \N \N \N 171817766 5 2 \N \N 100 \N \N f f 0 \N 297142878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21003 2023-07-03 01:29:34.429 2023-03-23 02:04:26.312 ColtonGrantJIK \N \N \N 172139960 5 2 \N \N 100 \N \N f f 0 \N 1773227866 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21012 2023-07-07 04:50:23.102 2022-09-06 15:53:06.061 KentMckeeJUY \N \N \N 66591206 5 2 \N \N 100 \N \N f f 0 \N 2474740205 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21014 2023-08-24 08:41:02.625 2024-02-15 02:24:55.847 BradMcfarlandVK3 \N \N \N 225578786 5 2 \N \N 100 \N \N f f 0 \N 1286844656 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21019 2022-12-21 00:01:16.738 2022-02-05 12:50:30.264 GregCarrollPM5 \N \N \N 149919367 5 2 \N \N 100 \N \N f f 0 \N 976081815 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21021 2021-12-02 08:46:46.291 2021-10-14 09:13:24.858 JohnnyRobinson84M \N \N \N 222310312 5 2 \N \N 100 \N \N f f 0 \N 1011256347 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21022 2023-02-25 10:19:07.326 2023-02-28 18:30:46.486 LucasGreene40R \N \N \N 170817973 5 2 \N \N 100 \N \N f f 0 \N 594608184 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21026 2022-12-02 01:28:59.771 2022-04-14 02:28:55.081 DiamondBernardKR5 \N \N \N 3896852 5 2 \N \N 100 \N \N f f 0 \N 701214565 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21033 2022-12-31 07:14:06.94 2022-01-14 23:14:47.655 AprilMccarthyBTI \N \N \N 35480076 5 2 \N \N 100 \N \N f f 0 \N 1370939002 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21036 2023-09-19 18:15:32.484 2022-05-19 13:25:16.518 WarrenCookeG5E \N \N \N 141230125 5 2 \N \N 100 \N \N f f 0 \N 2063560925 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21037 2022-01-16 22:59:42.394 2022-08-07 18:33:03.732 TonyaReyesYGX \N \N \N 228539890 5 2 \N \N 100 \N \N f f 0 \N 1665671062 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21040 2022-05-18 01:53:57.608 2022-07-25 07:20:45.499 ChadSaundersQGC \N \N \N 3890328 5 2 \N \N 100 \N \N f f 0 \N 1226943614 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 897 2023-03-17 05:22:52.163 2023-12-20 03:04:07.691 KayleeGrimesC9C \N \N \N 154905526 5 2 \N \N 100 \N \N f f 0 \N 1293011243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21042 2022-03-03 03:50:23.522 2024-01-26 22:58:09.261 AndrewChristensenNYD \N \N \N 53933678 5 2 \N \N 100 \N \N f f 0 \N 1051511948 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21044 2022-01-19 10:01:47.022 2023-04-19 12:50:43.562 AntonioMoonDFC \N \N \N 15737804 5 2 \N \N 100 \N \N f f 0 \N 1122623520 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21047 2022-01-31 02:59:48.89 2024-01-08 18:47:08.764 KristopherEllisonXWX \N \N \N 89105265 5 2 \N \N 100 \N \N f f 0 \N 748526759 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21048 2021-11-26 02:07:19.718 2022-05-23 20:26:56.875 JamesMirandaLIS \N \N \N 89434618 5 2 \N \N 100 \N \N f f 0 \N 243022357 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21051 2023-06-29 04:10:40.575 2023-03-10 08:33:05.802 ErinWangJ10 \N \N \N 3098158 5 2 \N \N 100 \N \N f f 0 \N 1999707603 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21057 2021-10-24 11:57:44.063 2021-12-15 16:35:10.683 MelodyMcknightADE \N \N \N 26792003 5 2 \N \N 100 \N \N f f 0 \N 2082880717 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21058 2023-02-20 18:53:26.876 2022-03-15 20:09:13.883 VictoriaRoth4GX \N \N \N 150886697 5 2 \N \N 100 \N \N f f 0 \N 18514062 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21060 2022-12-18 20:04:21.834 2024-01-13 03:13:36.737 CassieBooneZAU \N \N \N 174096184 5 2 \N \N 100 \N \N f f 0 \N 1048332065 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21332 2023-09-27 09:05:45.788 2022-06-02 01:17:27.33 CarlaDelgado5QX \N \N \N 41614442 5 2 \N \N 100 \N \N f f 0 \N 1362819006 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21061 2022-11-03 05:55:30.016 2022-03-14 04:36:41.161 RussellFuller78I \N \N \N 97908447 5 2 \N \N 100 \N \N f f 0 \N 992302374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21062 2022-03-19 09:33:02.903 2024-01-13 13:19:53.295 BillFlemingIX1 \N \N \N 24969866 5 2 \N \N 100 \N \N f f 0 \N 465521429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21063 2022-04-23 10:45:51.193 2023-07-27 03:16:09.236 JudithMcdonaldTJ3 \N \N \N 25559360 5 2 \N \N 100 \N \N f f 0 \N 165391577 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21064 2023-07-01 13:46:34.992 2021-11-08 16:19:16.917 KennethWallaceBEM \N \N \N 19408109 5 2 \N \N 100 \N \N f f 0 \N 655689837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21067 2022-10-01 18:04:54.043 2022-07-15 15:27:39.897 KathrynHensleyU5R \N \N \N 79651720 5 2 \N \N 100 \N \N f f 0 \N 780037253 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21070 2021-10-29 11:05:27.793 2023-07-30 12:09:46.303 GilbertStantonV7O \N \N \N 156919003 5 2 \N \N 100 \N \N f f 0 \N 327025668 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21072 2021-11-30 08:08:04.464 2022-06-23 07:32:11.174 BrentOlsenELI \N \N \N 28537638 5 2 \N \N 100 \N \N f f 0 \N 257902221 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21079 2022-03-26 18:46:51.216 2024-01-16 02:28:38.665 MarvinRojas6O7 \N \N \N 135457501 5 2 \N \N 100 \N \N f f 0 \N 277083607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21083 2023-06-22 17:00:47.395 2023-01-29 12:42:39.031 SoniaFrankTQ4 \N \N \N 154635270 5 2 \N \N 100 \N \N f f 0 \N 2215416565 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21090 2023-06-12 20:37:58.729 2022-03-15 11:02:16.833 CassieGonzalezBHJ \N \N \N 166586861 5 2 \N \N 100 \N \N f f 0 \N 1849246043 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21091 2021-10-09 21:53:20.951 2023-07-19 13:02:25.39 TamiEllis3EZ \N \N \N 201808200 5 2 \N \N 100 \N \N f f 0 \N 2060607161 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21103 2023-10-18 10:40:16.562 2023-10-07 21:20:57.298 RileyJohnsonGWE \N \N \N 214907183 5 2 \N \N 100 \N \N f f 0 \N 2124580565 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21119 2024-01-16 05:10:06.008 2021-10-23 16:46:59.23 JeremyHensonC1J \N \N \N 222689880 5 2 \N \N 100 \N \N f f 0 \N 532127168 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21131 2022-06-22 10:50:42.399 2021-12-15 06:34:55.728 MitchellWhitneyXMJ \N \N \N 178635278 5 2 \N \N 100 \N \N f f 0 \N 1164291035 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21136 2022-11-10 19:43:35.38 2021-11-29 23:18:43.044 RobynHartZBY \N \N \N 58512330 5 2 \N \N 100 \N \N f f 0 \N 788700338 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21140 2022-03-15 23:57:07.153 2024-01-01 20:30:32.052 JoeHubbardVXE \N \N \N 107907611 5 2 \N \N 100 \N \N f f 0 \N 977184955 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21145 2022-04-14 06:16:15.213 2022-01-12 06:17:10.546 DorisRivasN14 \N \N \N 178384509 5 2 \N \N 100 \N \N f f 0 \N 1022280901 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21155 2021-10-02 19:48:18.849 2022-02-27 07:27:52.205 GlennDyer3PX \N \N \N 87062795 5 2 \N \N 100 \N \N f f 0 \N 1596019835 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21157 2024-01-23 08:20:30.518 2023-08-26 00:41:54.065 LydiaWallaceBDP \N \N \N 119689349 5 2 \N \N 100 \N \N f f 0 \N 1730660398 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21159 2022-12-11 08:22:12.984 2022-10-27 08:23:02.623 EileenReidHZU \N \N \N 35207520 5 2 \N \N 100 \N \N f f 0 \N 263978146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21166 2023-04-17 08:09:47.831 2023-10-21 18:32:24.932 AimeeWilcoxWQN \N \N \N 205231605 5 2 \N \N 100 \N \N f f 0 \N 25696921 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21172 2021-12-08 08:24:49.763 2022-10-10 01:03:10.8 AimeeStevens7RC \N \N \N 219132600 5 2 \N \N 100 \N \N f f 0 \N 829765573 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21178 2023-05-09 13:55:30.829 2022-07-14 00:59:30.17 KathrynRosePWK \N \N \N 1801688 5 2 \N \N 100 \N \N f f 0 \N 1514728246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21180 2023-05-21 12:49:39.175 2022-12-20 14:47:48.433 GwendolynDavidIOB \N \N \N 239711118 5 2 \N \N 100 \N \N f f 0 \N 1071303611 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21207 2023-04-04 13:01:01.147 2022-08-01 23:15:50.841 DakotaBurns2NA \N \N \N 206983061 5 2 \N \N 100 \N \N f f 0 \N 1730105869 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21208 2022-03-22 19:07:01.806 2023-01-30 10:10:55.067 MercedesGallagher95C \N \N \N 58230327 5 2 \N \N 100 \N \N f f 0 \N 1577142473 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21212 2023-03-31 02:14:11.84 2023-04-23 20:21:25 BillyLeblancHPJ \N \N \N 2151151 5 2 \N \N 100 \N \N f f 0 \N 547969834 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21214 2022-05-31 12:37:28.598 2023-02-06 20:07:24.413 EvelynFoster4SH \N \N \N 53990452 5 2 \N \N 100 \N \N f f 0 \N 843470979 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21216 2022-12-22 21:42:51.334 2023-12-23 07:02:20.547 LoriBeckNCY \N \N \N 186762831 5 2 \N \N 100 \N \N f f 0 \N 1592294037 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21218 2022-02-05 06:52:48.059 2022-10-12 00:32:06.35 PaulSimsD6I \N \N \N 97500184 5 2 \N \N 100 \N \N f f 0 \N 1388091041 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21222 2022-05-08 19:37:05.49 2022-05-28 13:50:33.26 RogerLloydRUD \N \N \N 22450957 5 2 \N \N 100 \N \N f f 0 \N 1417420232 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21239 2022-10-21 17:36:53.655 2021-12-15 12:34:00.728 AlexanderBlevinsIC4 \N \N \N 185900849 5 2 \N \N 100 \N \N f f 0 \N 35148429 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21242 2021-10-31 02:17:39.443 2023-10-21 23:20:23.252 KristenRogersRI4 \N \N \N 194692983 5 2 \N \N 100 \N \N f f 0 \N 456816833 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21248 2023-04-27 04:32:57.52 2023-07-26 20:16:43.143 TyroneRogersVFC \N \N \N 152242825 5 2 \N \N 100 \N \N f f 0 \N 1229724488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21249 2023-08-30 17:44:35.868 2022-05-12 19:02:39.948 ParkerFrost6QH \N \N \N 17907024 5 2 \N \N 100 \N \N f f 0 \N 2263166771 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21254 2023-03-19 19:05:13.584 2023-07-26 13:03:38.441 ColinRoweSIT \N \N \N 74443747 5 2 \N \N 100 \N \N f f 0 \N 2335873572 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21262 2021-10-03 19:52:39.523 2022-06-09 17:22:01.774 TimHodge0JI \N \N \N 169066241 5 2 \N \N 100 \N \N f f 0 \N 2251563167 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21263 2023-12-16 22:35:21.61 2023-08-11 20:06:52.283 LindaKennedyNW4 \N \N \N 136473318 5 2 \N \N 100 \N \N f f 0 \N 223422645 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21269 2023-10-23 17:36:52.312 2022-03-11 16:00:29.67 TraceyFaulknerQLM \N \N \N 41483255 5 2 \N \N 100 \N \N f f 0 \N 1678938627 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21271 2021-10-19 01:03:01.91 2023-10-05 14:21:03.686 StephanieMora2P9 \N \N \N 187759408 5 2 \N \N 100 \N \N f f 0 \N 2452333915 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21274 2023-11-29 04:52:31.84 2023-09-16 01:18:12.404 DesireeMcmahonYDD \N \N \N 209501713 5 2 \N \N 100 \N \N f f 0 \N 1035274930 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21275 2021-10-16 00:19:52.909 2023-05-30 16:47:52.313 RogerLevineLMY \N \N \N 83757723 5 2 \N \N 100 \N \N f f 0 \N 1125652242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21281 2022-11-16 21:15:12.839 2023-04-28 05:23:29.569 RyanPopeW7D \N \N \N 96409625 5 2 \N \N 100 \N \N f f 0 \N 2471612911 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21291 2023-08-27 17:14:31.628 2022-10-22 23:15:34.329 TroyMonroeUP1 \N \N \N 247903050 5 2 \N \N 100 \N \N f f 0 \N 439456347 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21296 2022-08-14 13:59:27.52 2023-02-01 19:38:21.61 AlexandriaHobbsNKM \N \N \N 83174825 5 2 \N \N 100 \N \N f f 0 \N 319809832 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21303 2022-07-15 14:03:19.734 2022-01-18 16:18:56.916 EvelynYatesTOI \N \N \N 25653940 5 2 \N \N 100 \N \N f f 0 \N 1692163095 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21314 2022-08-21 04:36:25.28 2023-05-10 04:26:42.711 JoeVargasE64 \N \N \N 97299744 5 2 \N \N 100 \N \N f f 0 \N 1185870679 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21320 2021-12-15 13:47:58.326 2022-07-12 16:27:40.55 JordanMoreno64S \N \N \N 137559062 5 2 \N \N 100 \N \N f f 0 \N 2486920026 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21329 2023-12-04 07:58:00.186 2023-03-21 06:34:14.481 HaleyMarksEK2 \N \N \N 105701871 5 2 \N \N 100 \N \N f f 0 \N 1374735435 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21334 2023-04-24 09:21:51.412 2023-01-01 04:42:26.674 EvanSerranoYSR \N \N \N 223869072 5 2 \N \N 100 \N \N f f 0 \N 531950559 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21339 2024-02-06 09:20:18.788 2023-07-04 14:44:59.086 KirkWarrenNNU \N \N \N 240682730 5 2 \N \N 100 \N \N f f 0 \N 921300953 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21342 2023-07-25 03:39:50.416 2023-12-10 17:49:33.206 TraciSolisR0D \N \N \N 35929743 5 2 \N \N 100 \N \N f f 0 \N 380573675 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21343 2021-10-10 04:25:21.904 2023-11-29 02:41:32.063 SteveHaynes2Z8 \N \N \N 81059433 5 2 \N \N 100 \N \N f f 0 \N 698983578 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21344 2023-09-27 04:34:55.646 2022-02-16 17:36:59.742 MikeFox8TD \N \N \N 115609741 5 2 \N \N 100 \N \N f f 0 \N 1515025432 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21352 2022-06-25 06:19:19.621 2021-10-09 10:08:45.16 NathanWilliamsonX28 \N \N \N 77237037 5 2 \N \N 100 \N \N f f 0 \N 1886313617 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21356 2022-11-25 19:18:34.963 2023-11-13 12:20:44.519 HelenMezaFSI \N \N \N 221359340 5 2 \N \N 100 \N \N f f 0 \N 543057430 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 900 2023-01-01 11:29:01.88 2022-05-15 13:32:45.129 MindyHenryE7U \N \N \N 223149270 5 2 \N \N 100 \N \N f f 0 \N 346020205 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21361 2022-08-29 12:10:29.602 2021-10-03 16:43:49.44 CassidySheppardF12 \N \N \N 129838229 5 2 \N \N 100 \N \N f f 0 \N 2465204081 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21365 2023-03-28 04:18:02.167 2023-03-06 00:46:31.339 RebekahSingh2BK \N \N \N 75629635 5 2 \N \N 100 \N \N f f 0 \N 1632992636 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21369 2023-12-08 07:03:29.783 2023-07-04 10:41:07.806 NicolasTannerY59 \N \N \N 46624995 5 2 \N \N 100 \N \N f f 0 \N 2429055127 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21371 2023-12-18 02:11:41.576 2022-11-25 15:58:25.311 CheyenneBoydXAX \N \N \N 109381275 5 2 \N \N 100 \N \N f f 0 \N 449320725 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21373 2023-05-11 23:23:42.073 2022-11-24 05:04:30.137 CarlaChandler25C \N \N \N 155274097 5 2 \N \N 100 \N \N f f 0 \N 282632509 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21374 2022-11-18 12:01:31.322 2022-04-10 03:37:43.727 RobertoMoonUDG \N \N \N 140474297 5 2 \N \N 100 \N \N f f 0 \N 1639424737 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21379 2021-11-22 09:49:18.956 2021-11-23 11:31:55.57 SamanthaDennisT8O \N \N \N 128051520 5 2 \N \N 100 \N \N f f 0 \N 1376869949 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21386 2023-01-01 00:30:04.8 2023-09-28 03:29:23.699 FranklinFoxNW6 \N \N \N 182971232 5 2 \N \N 100 \N \N f f 0 \N 337899195 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21387 2023-10-09 11:20:05.505 2022-11-17 21:31:43.158 KirkHamilton2M2 \N \N \N 144249392 5 2 \N \N 100 \N \N f f 0 \N 806798924 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21389 2023-12-02 21:46:41.979 2023-08-02 07:33:57.953 SandraJimenezJPW \N \N \N 27130533 5 2 \N \N 100 \N \N f f 0 \N 694880736 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21391 2023-02-27 14:03:45.537 2024-01-06 21:00:40.103 JohnHamilton2VF \N \N \N 70285809 5 2 \N \N 100 \N \N f f 0 \N 262493239 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21395 2022-10-11 07:37:36.038 2022-11-26 19:59:19.975 SuzanneLindseySZF \N \N \N 81673105 5 2 \N \N 100 \N \N f f 0 \N 1389839461 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21398 2022-09-14 09:09:50.177 2023-10-15 10:15:09.229 HeidiMonroe56U \N \N \N 86337817 5 2 \N \N 100 \N \N f f 0 \N 471154801 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21401 2023-08-09 08:42:22.566 2022-03-31 19:40:15.491 BrandiTravis3TQ \N \N \N 203749393 5 2 \N \N 100 \N \N f f 0 \N 317802974 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21406 2021-10-14 00:21:00.26 2023-12-26 04:11:39.583 JodiMeadowsZMH \N \N \N 227103353 5 2 \N \N 100 \N \N f f 0 \N 538716216 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21417 2021-12-17 15:37:23.844 2023-07-22 00:12:04.478 BrettAcevedoFE6 \N \N \N 14517128 5 2 \N \N 100 \N \N f f 0 \N 488943194 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21418 2024-01-21 12:12:50.766 2024-01-13 10:12:44.141 BrettByrdB58 \N \N \N 226710547 5 2 \N \N 100 \N \N f f 0 \N 530837213 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21421 2022-12-29 06:41:15.597 2023-07-02 19:44:19.771 PaigeLutzOBH \N \N \N 20813768 5 2 \N \N 100 \N \N f f 0 \N 630782941 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21422 2021-12-08 17:24:34.904 2023-03-01 02:05:08.351 CandaceRichMHX \N \N \N 234254655 5 2 \N \N 100 \N \N f f 0 \N 2276971374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21424 2022-04-03 00:51:44.595 2022-08-25 21:30:58.19 ErikDonaldsonEHW \N \N \N 200338123 5 2 \N \N 100 \N \N f f 0 \N 372277362 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21427 2023-10-21 02:04:31.913 2024-01-26 10:57:49.315 GuyFowler2Y5 \N \N \N 22982916 5 2 \N \N 100 \N \N f f 0 \N 1533962294 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21437 2022-12-19 01:28:45.299 2022-10-08 05:43:46.469 DennisRusso662 \N \N \N 213355007 5 2 \N \N 100 \N \N f f 0 \N 420936122 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21451 2022-07-18 20:33:03.859 2023-06-10 11:03:34.841 GwendolynCainINL \N \N \N 42456930 5 2 \N \N 100 \N \N f f 0 \N 130138994 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21453 2022-04-19 17:18:59.426 2021-12-01 20:54:11.258 MathewMahoney586 \N \N \N 47010565 5 2 \N \N 100 \N \N f f 0 \N 899767291 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21457 2022-02-06 21:30:24.766 2024-01-07 02:18:24.353 EvanReid5EL \N \N \N 243355688 5 2 \N \N 100 \N \N f f 0 \N 1516066553 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21458 2022-06-01 01:46:37.187 2022-01-23 21:52:28.187 DillonPopeWE8 \N \N \N 132007960 5 2 \N \N 100 \N \N f f 0 \N 161278417 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21463 2022-11-16 18:12:55.174 2022-08-26 22:55:51.587 JoeMarquezZ5N \N \N \N 8948217 5 2 \N \N 100 \N \N f f 0 \N 2247631358 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21466 2022-12-12 22:35:32.473 2022-08-19 01:09:17.604 StuartKlineVHX \N \N \N 205248658 5 2 \N \N 100 \N \N f f 0 \N 865636967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21472 2023-05-15 16:07:50.306 2023-04-12 22:18:53.827 AntonioDaughertyS75 \N \N \N 177150119 5 2 \N \N 100 \N \N f f 0 \N 717274345 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21480 2022-01-13 00:34:08.99 2022-09-12 16:13:45.53 LukeEnglishMSD \N \N \N 52093299 5 2 \N \N 100 \N \N f f 0 \N 230975437 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21481 2022-05-31 00:21:06.004 2021-11-12 03:14:19.795 DakotaEllisSVV \N \N \N 155281183 5 2 \N \N 100 \N \N f f 0 \N 2237736447 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21482 2023-02-25 20:21:01.011 2022-09-14 18:45:03.548 PhilipPaulUHR \N \N \N 162568919 5 2 \N \N 100 \N \N f f 0 \N 128787721 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21485 2023-10-04 15:31:02.496 2021-11-05 02:49:30.385 HaileyEspinozaQKL \N \N \N 241592530 5 2 \N \N 100 \N \N f f 0 \N 76201339 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21494 2022-09-10 10:56:41.516 2023-07-31 16:15:09.275 AntonioMcpherson3ZZ \N \N \N 240155286 5 2 \N \N 100 \N \N f f 0 \N 1430629498 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21498 2022-09-05 09:51:41.987 2023-01-18 04:37:21.294 TerrenceLiuCS6 \N \N \N 241900626 5 2 \N \N 100 \N \N f f 0 \N 913905569 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21501 2023-12-12 06:41:12.748 2022-10-28 13:14:47.165 JeremiahWilkinsonRBH \N \N \N 159606122 5 2 \N \N 100 \N \N f f 0 \N 1596868255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21509 2023-06-05 00:17:49.965 2022-03-10 04:54:05.742 DarrylBraunN9K \N \N \N 118158075 5 2 \N \N 100 \N \N f f 0 \N 131062947 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21514 2022-03-11 23:32:16.932 2024-02-09 14:53:47.011 DannyZhang318 \N \N \N 151407219 5 2 \N \N 100 \N \N f f 0 \N 256858799 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21521 2022-09-06 16:52:30.579 2022-11-18 00:01:48.148 ChloeAvilaKOM \N \N \N 109461361 5 2 \N \N 100 \N \N f f 0 \N 135409363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21523 2023-11-14 23:56:47.393 2023-06-21 22:09:37.38 TracieRodriguezU7I \N \N \N 18133853 5 2 \N \N 100 \N \N f f 0 \N 933873899 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21541 2022-12-14 12:18:44.089 2024-01-05 17:15:45.343 CharleneCowanN2O \N \N \N 249702244 5 2 \N \N 100 \N \N f f 0 \N 2333603550 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21555 2023-04-15 21:13:15.525 2023-04-11 04:09:47.189 GregPachecoW30 \N \N \N 179824214 5 2 \N \N 100 \N \N f f 0 \N 649891147 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21556 2022-11-06 09:34:49.857 2022-07-19 12:37:39.865 AllisonSandersRCK \N \N \N 106522691 5 2 \N \N 100 \N \N f f 0 \N 1264130387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21562 2022-03-01 18:57:13.67 2024-02-01 05:48:42.434 SamuelHansen6RY \N \N \N 233737440 5 2 \N \N 100 \N \N f f 0 \N 2320984270 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21563 2022-11-06 05:28:28.864 2023-09-16 09:21:36.359 DrewStricklandTK8 \N \N \N 219791337 5 2 \N \N 100 \N \N f f 0 \N 1646019612 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21571 2023-09-10 17:42:05.238 2022-05-19 15:32:39.078 JaniceOsbornP6R \N \N \N 92058414 5 2 \N \N 100 \N \N f f 0 \N 313135128 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21573 2022-09-26 08:09:41.71 2022-06-29 18:21:35.031 CathyConnerN4E \N \N \N 40203721 5 2 \N \N 100 \N \N f f 0 \N 2290336947 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21575 2023-09-04 10:30:34.147 2023-12-19 22:21:41.519 HarryBrightVSE \N \N \N 144645105 5 2 \N \N 100 \N \N f f 0 \N 2427681946 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21577 2024-02-03 10:51:48.969 2023-01-20 05:55:37.264 MartinZamora5ZY \N \N \N 6419726 5 2 \N \N 100 \N \N f f 0 \N 674802609 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21578 2022-01-19 12:30:36.271 2022-04-07 07:39:13.552 RicardoHolmes0AP \N \N \N 82726263 5 2 \N \N 100 \N \N f f 0 \N 1986911908 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21585 2023-12-06 14:31:56.654 2023-05-22 08:48:53.195 JeromeOwensXWH \N \N \N 53383846 5 2 \N \N 100 \N \N f f 0 \N 1314783295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21589 2023-05-08 12:51:13.716 2023-01-11 10:24:35.929 JoannLynn04T \N \N \N 165424479 5 2 \N \N 100 \N \N f f 0 \N 1507978681 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21591 2022-11-10 12:36:41.861 2022-08-11 10:31:55.494 DarrylLeonU9L \N \N \N 99033439 5 2 \N \N 100 \N \N f f 0 \N 192223714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21600 2024-01-22 18:40:40.622 2023-01-31 16:08:12.075 MauriceRobertsonQYD \N \N \N 169128431 5 2 \N \N 100 \N \N f f 0 \N 634750432 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21603 2023-11-08 23:26:41.808 2021-10-01 03:05:59.102 KirstenParsonsX3G \N \N \N 240149037 5 2 \N \N 100 \N \N f f 0 \N 322659842 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21605 2023-05-10 16:21:48.113 2021-11-06 15:48:12.043 TylerBrockD40 \N \N \N 91433940 5 2 \N \N 100 \N \N f f 0 \N 1233110774 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21609 2023-12-18 08:14:32.601 2021-10-14 04:12:12.634 ReneeLynch1VX \N \N \N 5359177 5 2 \N \N 100 \N \N f f 0 \N 1188931617 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21612 2022-06-03 15:23:08.817 2022-12-05 16:00:24.56 DustinRiley4J7 \N \N \N 29213672 5 2 \N \N 100 \N \N f f 0 \N 522699622 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21614 2022-04-17 04:36:48.769 2023-04-19 23:27:59.756 GregGainesVQJ \N \N \N 52262951 5 2 \N \N 100 \N \N f f 0 \N 408589868 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21620 2023-06-12 11:41:41.71 2023-11-22 08:45:32.942 FranklinBautista6HV \N \N \N 118575833 5 2 \N \N 100 \N \N f f 0 \N 1585964829 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21624 2023-10-02 12:15:21.418 2023-09-22 00:40:59.228 ChasePerkins762 \N \N \N 99888984 5 2 \N \N 100 \N \N f f 0 \N 1486810252 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21627 2022-10-28 15:12:08.052 2023-10-14 11:23:36.063 ThomasToddUOM \N \N \N 75098382 5 2 \N \N 100 \N \N f f 0 \N 675637878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 963 2022-10-25 12:11:19.28 2022-07-08 07:11:20.428 MeghanEatonRAC \N \N \N 128609249 5 2 \N \N 100 \N \N f f 0 \N 2149415401 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1120 2022-11-18 15:36:43.747 2023-09-22 23:58:03.269 AlexBarr8KC \N \N \N 237181783 5 2 \N \N 100 \N \N f f 0 \N 2147685037 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1352 2023-09-09 15:51:38.795 2022-12-22 02:32:28.624 GilbertShortP6M \N \N \N 70448648 5 2 \N \N 100 \N \N f f 0 \N 2355879853 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1705 2022-11-04 10:24:32.681 2022-05-11 10:40:42.511 KendraBarton80D \N \N \N 122119609 5 2 \N \N 100 \N \N f f 0 \N 223019717 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2042 2024-01-11 05:39:38.674 2021-11-11 02:19:13.495 VernonOdom63D \N \N \N 27716066 5 2 \N \N 100 \N \N f f 0 \N 1112875751 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2402 2023-02-19 23:30:54.369 2023-10-20 13:53:58.314 CraigPattonK7C \N \N \N 88075770 5 2 \N \N 100 \N \N f f 0 \N 497631583 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2519 2022-03-17 02:45:15.983 2021-12-04 17:24:26.273 MaxwellDunnYIV \N \N \N 101568722 5 2 \N \N 100 \N \N f f 0 \N 122720168 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2529 2023-03-03 22:31:14.386 2021-11-29 05:38:11.768 JodySingh56Q \N \N \N 228053286 5 2 \N \N 100 \N \N f f 0 \N 2376161354 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2543 2022-04-08 04:31:05.116 2022-10-15 04:10:28.989 HaleyChungZE5 \N \N \N 129824777 5 2 \N \N 100 \N \N f f 0 \N 1701961685 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2577 2021-10-14 13:55:31.188 2023-07-28 07:05:27.994 DaisyBrooksWZB \N \N \N 99971188 5 2 \N \N 100 \N \N f f 0 \N 263657547 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2674 2022-05-11 23:41:55.546 2023-04-12 17:08:12.617 BeverlyBuckVVL \N \N \N 111398506 5 2 \N \N 100 \N \N f f 0 \N 819809151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2711 2023-04-16 17:38:00.418 2022-07-10 17:52:13.484 LanceLoganBTO \N \N \N 160499821 5 2 \N \N 100 \N \N f f 0 \N 2144113374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2776 2022-12-07 04:09:41.597 2023-06-14 04:20:32.901 KerryWatkinsXN7 \N \N \N 169473760 5 2 \N \N 100 \N \N f f 0 \N 1184792671 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3411 2022-07-14 13:32:58.603 2022-08-13 04:36:54.63 RichardWilliamsonRE8 \N \N \N 57482982 5 2 \N \N 100 \N \N f f 0 \N 1210412158 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3478 2023-11-05 01:15:21.527 2021-11-28 22:02:09.061 MonicaMorrisB0X \N \N \N 132704182 5 2 \N \N 100 \N \N f f 0 \N 808526505 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3504 2022-04-20 08:52:29.061 2022-09-26 22:01:14.164 MiguelCraigMUK \N \N \N 90660804 5 2 \N \N 100 \N \N f f 0 \N 712293957 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3729 2023-07-27 08:07:32.586 2022-04-26 19:28:33.638 LonnieChambersPVG \N \N \N 45485716 5 2 \N \N 100 \N \N f f 0 \N 1842943013 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3979 2023-12-21 18:44:20.884 2023-06-08 00:13:55.009 AshleyClayton444 \N \N \N 197950455 5 2 \N \N 100 \N \N f f 0 \N 1444237052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4035 2023-11-18 15:23:17.373 2023-01-15 17:28:32.632 AllisonAyersK17 \N \N \N 242652611 5 2 \N \N 100 \N \N f f 0 \N 1355654374 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4043 2023-12-21 14:08:46.947 2023-01-19 11:20:27.878 LanceClineAU6 \N \N \N 225844375 5 2 \N \N 100 \N \N f f 0 \N 1502067460 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4048 2023-09-02 08:00:53.035 2022-08-19 20:38:03.576 PamBranch2ED \N \N \N 241607452 5 2 \N \N 100 \N \N f f 0 \N 1283426405 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4062 2022-09-20 11:52:00.918 2023-08-13 18:46:07.297 DuaneMooreY2W \N \N \N 57902228 5 2 \N \N 100 \N \N f f 0 \N 969687749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4064 2023-07-19 18:36:36.674 2022-04-23 06:33:20.651 VeronicaDrake0MV \N \N \N 202213516 5 2 \N \N 100 \N \N f f 0 \N 1860364844 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4074 2022-02-08 03:45:57.945 2022-11-14 16:43:02.912 AudreyBarton4C4 \N \N \N 89490097 5 2 \N \N 100 \N \N f f 0 \N 757869938 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4083 2023-07-05 17:09:49.248 2023-05-05 08:21:36.377 JohnathanMcconnellHU2 \N \N \N 125168356 5 2 \N \N 100 \N \N f f 0 \N 2423791361 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4084 2022-11-20 04:03:04.613 2022-08-27 18:03:06.864 BiancaHubbard7D8 \N \N \N 238939825 5 2 \N \N 100 \N \N f f 0 \N 1525585532 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4115 2023-08-03 08:57:52.119 2023-05-01 10:04:57.235 GaryRyanUQU \N \N \N 85257327 5 2 \N \N 100 \N \N f f 0 \N 111325886 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5520 2023-10-21 04:41:03.209 2023-04-26 15:30:05.546 AshleyFosterI9F \N \N \N 198650445 5 2 \N \N 100 \N \N f f 0 \N 2286637598 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5694 2023-07-08 01:19:23.819 2023-12-05 21:33:16.669 MarcusCrossTN2 \N \N \N 121093782 5 2 \N \N 100 \N \N f f 0 \N 1650298560 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5761 2023-06-14 00:26:41.28 2023-01-07 16:08:26.993 RoyReyes4MM \N \N \N 100814789 5 2 \N \N 100 \N \N f f 0 \N 1998898705 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5806 2022-07-24 04:11:26.922 2022-04-10 23:13:53.541 ShelleyWeissOLV \N \N \N 162957755 5 2 \N \N 100 \N \N f f 0 \N 811156632 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6137 2022-01-11 14:53:01.452 2022-06-24 05:04:28.857 DarrenNielsenH1P \N \N \N 203465073 5 2 \N \N 100 \N \N f f 0 \N 2300330616 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6191 2022-11-26 21:04:25.498 2021-10-13 08:18:31.778 BrianaZhangVXV \N \N \N 195809139 5 2 \N \N 100 \N \N f f 0 \N 816824248 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6202 2023-04-27 13:40:27.758 2023-08-11 10:37:35.859 KaraDownsL7P \N \N \N 151926341 5 2 \N \N 100 \N \N f f 0 \N 1599092457 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6260 2022-05-19 00:02:05.193 2021-12-28 17:00:58.529 SethValdezHZH \N \N \N 58632323 5 2 \N \N 100 \N \N f f 0 \N 386554587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2338 2022-02-11 15:32:42.745 2022-04-17 20:16:42.225 AlecFlowers302 \N \N \N 248881819 5 2 \N \N 100 \N \N f f 0 \N 2292220303 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4776 2021-11-16 08:38:24.45 2022-08-03 21:49:40.503 SheriBarrBA4 \N \N \N 67157898 5 2 \N \N 100 \N \N f f 0 \N 2349402891 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7847 2023-06-22 20:38:43.75 2022-01-23 16:18:14.93 BarbaraHaynesSG8 \N \N \N 164929094 5 2 \N \N 100 \N \N f f 0 \N 30611673 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10731 2023-09-29 19:36:38.398 2022-10-23 17:18:41.489 MarioNunezITG \N \N \N 56406791 5 2 \N \N 100 \N \N f f 0 \N 2219599131 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13753 2022-11-03 04:45:42.986 2023-01-24 07:11:40.823 WillieDunnQE5 \N \N \N 194787269 5 2 \N \N 100 \N \N f f 0 \N 250091839 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14168 2022-08-05 23:44:38.874 2022-05-13 15:08:26.405 MarilynJosephZOI \N \N \N 157871407 5 2 \N \N 100 \N \N f f 0 \N 227191204 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15160 2022-06-27 02:30:02.66 2023-11-17 06:31:51.208 MalloryHendersonN8Y \N \N \N 215826107 5 2 \N \N 100 \N \N f f 0 \N 2228921744 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16876 2023-11-04 00:02:49.22 2024-01-05 20:50:06.824 AdrianaWilliamsDRZ \N \N \N 58338413 5 2 \N \N 100 \N \N f f 0 \N 1090667693 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17673 2022-02-04 01:12:44.796 2022-07-21 02:39:48.991 GraceSharpUC2 \N \N \N 189788099 5 2 \N \N 100 \N \N f f 0 \N 2271189644 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 621 2023-08-18 21:31:25.431 2022-04-06 06:05:57.745 KathleenRojasVWW \N \N \N 157591061 5 2 \N \N 100 \N \N f f 0 \N 1855670829 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 622 2023-02-15 16:44:11.278 2023-05-31 21:59:51.422 BobFrazierR47 \N \N \N 7200748 5 2 \N \N 100 \N \N f f 0 \N 1498391971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 624 2023-08-12 07:13:56.636 2021-12-04 15:23:10.424 AnthonyCarterPIB \N \N \N 245176959 5 2 \N \N 100 \N \N f f 0 \N 2431805926 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 626 2022-07-13 16:25:28.839 2024-02-14 22:49:31.909 RandyFarleyICU \N \N \N 55517160 5 2 \N \N 100 \N \N f f 0 \N 1673992571 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 627 2024-01-12 19:49:08.338 2023-04-20 23:56:28.067 DuaneBlackburnHD0 \N \N \N 141455960 5 2 \N \N 100 \N \N f f 0 \N 1639237293 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 628 2022-02-20 13:01:07.917 2023-06-08 07:23:05.37 JamesMarshallQF0 \N \N \N 41136788 5 2 \N \N 100 \N \N f f 0 \N 975940415 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 629 2023-09-30 12:17:02.061 2022-04-16 22:56:40.569 HeatherWilkerson51M \N \N \N 106611577 5 2 \N \N 100 \N \N f f 0 \N 2106056148 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 630 2023-12-07 22:17:12.515 2023-06-11 07:18:31.454 SylviaPotts2U2 \N \N \N 816312 5 2 \N \N 100 \N \N f f 0 \N 387958405 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 631 2022-03-27 19:41:55.301 2022-12-19 00:04:55.461 JohnathanHigginsRGH \N \N \N 177114876 5 2 \N \N 100 \N \N f f 0 \N 306639772 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 654 2024-01-31 03:47:26.958 2022-09-21 01:24:23.215 DannyCrawfordWO8 \N \N \N 41071574 5 2 \N \N 100 \N \N f f 0 \N 1930756211 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 919 2022-05-21 08:19:00.832 2022-09-26 04:09:19.552 RobertContrerasSGN \N \N \N 225507172 5 2 \N \N 100 \N \N f f 0 \N 172017045 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1726 2022-02-22 21:27:35.619 2024-01-20 13:53:19.516 PamelaSherman1OV \N \N \N 38168700 5 2 \N \N 100 \N \N f f 0 \N 764241250 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2061 2024-01-31 09:25:27.757 2023-01-28 17:32:29.764 JackieWong3P5 \N \N \N 140264681 5 2 \N \N 100 \N \N f f 0 \N 879293583 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2328 2023-10-11 08:00:33.448 2022-07-21 23:59:02.493 VickieGallegosCZW \N \N \N 168159875 5 2 \N \N 100 \N \N f f 0 \N 130876243 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2437 2022-07-23 20:08:31.169 2023-11-10 11:25:30.152 CristianAndradeX7K \N \N \N 104668559 5 2 \N \N 100 \N \N f f 0 \N 571692179 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2718 2022-06-25 12:30:59.883 2023-04-14 21:57:30.415 RileyWilcox10E \N \N \N 61919944 5 2 \N \N 100 \N \N f f 0 \N 2265893281 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3396 2022-03-25 12:33:13.109 2023-05-11 13:07:50.403 AllenPerez81K \N \N \N 5803935 5 2 \N \N 100 \N \N f f 0 \N 1586101601 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3686 2023-06-14 18:59:19.113 2023-10-20 11:41:20.048 AustinEverettA7A \N \N \N 130690184 5 2 \N \N 100 \N \N f f 0 \N 2065530982 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4395 2022-12-30 12:35:19.06 2022-05-04 22:32:48.745 RhondaMaynardPZ6 \N \N \N 73508149 5 2 \N \N 100 \N \N f f 0 \N 415457913 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4624 2022-01-27 18:09:16.306 2022-12-02 07:24:28.309 KristinShaw3BN \N \N \N 129150390 5 2 \N \N 100 \N \N f f 0 \N 1425858552 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4819 2023-07-22 09:00:42.783 2023-03-08 16:58:28.148 HelenBarajasP6C \N \N \N 5047162 5 2 \N \N 100 \N \N f f 0 \N 482470852 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4958 2024-01-18 02:02:06.182 2022-04-07 12:04:26.967 YeseniaLamIN7 \N \N \N 61341352 5 2 \N \N 100 \N \N f f 0 \N 106914969 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5017 2022-09-16 12:11:37.276 2023-06-29 09:37:49.15 TammyWaltersDCJ \N \N \N 209588327 5 2 \N \N 100 \N \N f f 0 \N 91778172 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5425 2023-12-09 09:53:55.928 2022-01-05 12:57:20.703 AlexaRoachYYJ \N \N \N 198455124 5 2 \N \N 100 \N \N f f 0 \N 173608127 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5444 2023-03-07 14:08:47.022 2021-12-30 08:45:46.869 MandyMejiaXFI \N \N \N 232580616 5 2 \N \N 100 \N \N f f 0 \N 90637801 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5578 2022-10-28 16:01:42.552 2022-09-02 01:01:45.919 RandySheaPLV \N \N \N 138401991 5 2 \N \N 100 \N \N f f 0 \N 1945619162 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5661 2022-07-25 01:56:04.896 2022-08-20 00:19:03.308 CourtneyFarleyS84 \N \N \N 17349332 5 2 \N \N 100 \N \N f f 0 \N 2026211524 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5725 2021-12-09 19:30:31.025 2024-01-08 20:02:20.354 KristinaWigginsKGS \N \N \N 9677213 5 2 \N \N 100 \N \N f f 0 \N 927822275 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5759 2022-06-09 18:27:30.38 2023-06-29 22:01:11.364 ColleenDominguez8OX \N \N \N 30943479 5 2 \N \N 100 \N \N f f 0 \N 1834724231 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 620 2021-12-11 14:01:46.21 2023-06-17 15:46:05.017 DannyTylerYV1 \N \N \N 52961047 5 2 \N \N 100 \N \N f f 0 \N 1004935931 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 649 2023-08-14 00:28:05.335 2022-10-04 14:01:41.635 EvanShields466 \N \N \N 103934974 5 2 \N \N 100 \N \N f f 0 \N 1068455698 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 660 2023-06-16 02:00:49.836 2022-01-08 17:29:19.901 KerrySantanaPW4 \N \N \N 13051013 5 2 \N \N 100 \N \N f f 0 \N 2292178877 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 661 2023-02-04 02:19:25.811 2023-12-28 16:20:19.475 CaitlynLambertZ98 \N \N \N 59860196 5 2 \N \N 100 \N \N f f 0 \N 1040201452 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 669 2022-03-13 17:02:43.33 2022-07-04 15:26:05.522 MalikGarrett4NM \N \N \N 184134443 5 2 \N \N 100 \N \N f f 0 \N 1765476258 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 670 2022-07-01 01:53:30.945 2022-08-12 04:27:22.215 JudithLivingstonFYO \N \N \N 142440708 5 2 \N \N 100 \N \N f f 0 \N 2125878377 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 671 2022-03-19 09:08:03.646 2023-08-01 11:50:31.629 NormanCantuL6B \N \N \N 179881287 5 2 \N \N 100 \N \N f f 0 \N 2215952036 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 673 2023-12-27 08:59:55.193 2023-05-20 13:38:46.098 RogerLucasNU5 \N \N \N 14981967 5 2 \N \N 100 \N \N f f 0 \N 1423272902 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 678 2023-04-06 00:58:18.246 2022-06-10 14:32:27.346 ChaseBoyle7EF \N \N \N 70895104 5 2 \N \N 100 \N \N f f 0 \N 443198242 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 685 2022-01-06 22:19:25.736 2022-07-30 16:56:49.123 PamelaSchroederR5T \N \N \N 23211475 5 2 \N \N 100 \N \N f f 0 \N 2254476192 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 690 2022-01-28 08:56:35.548 2022-12-30 14:41:13.701 JeremiahKempG2Z \N \N \N 178351170 5 2 \N \N 100 \N \N f f 0 \N 2040468208 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 694 2023-12-07 08:00:04.916 2023-08-28 03:47:28.195 EdwinRothTPS \N \N \N 70551452 5 2 \N \N 100 \N \N f f 0 \N 32285298 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 695 2022-10-02 13:07:09.365 2023-12-11 19:25:41.321 SylviaArroyoBD4 \N \N \N 79453670 5 2 \N \N 100 \N \N f f 0 \N 1511524893 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 697 2021-11-24 03:30:49.719 2023-06-10 00:53:30.915 AllisonGould3MQ \N \N \N 228121777 5 2 \N \N 100 \N \N f f 0 \N 2094833842 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 703 2023-02-11 03:14:00.282 2022-10-01 13:22:09.135 CherylTuckerCGL \N \N \N 248265076 5 2 \N \N 100 \N \N f f 0 \N 2029028558 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 706 2023-05-24 11:00:11.991 2023-06-15 11:50:08.687 JoannaHillIR5 \N \N \N 90899057 5 2 \N \N 100 \N \N f f 0 \N 968400341 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 711 2021-10-03 00:19:38.236 2022-02-11 11:40:35.765 RandallLewis6DG \N \N \N 24482627 5 2 \N \N 100 \N \N f f 0 \N 2337527936 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 716 2022-10-07 12:13:23.72 2023-07-02 07:04:35.753 CesarHessGTD \N \N \N 104720045 5 2 \N \N 100 \N \N f f 0 \N 1221832406 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 717 2022-08-25 10:18:29.441 2022-07-04 17:06:39.584 TravisAllen8BQ \N \N \N 132344951 5 2 \N \N 100 \N \N f f 0 \N 612017613 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 718 2021-11-14 06:05:03.814 2021-11-08 11:59:47.998 MartinVasquezAW3 \N \N \N 97807311 5 2 \N \N 100 \N \N f f 0 \N 705718953 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 720 2023-03-24 15:08:44.255 2022-03-10 04:43:51.735 MarciaWatsonRJL \N \N \N 36031618 5 2 \N \N 100 \N \N f f 0 \N 1979286389 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 722 2023-05-23 09:08:47.341 2022-12-13 03:12:14.796 CharlesNunez05Z \N \N \N 182387535 5 2 \N \N 100 \N \N f f 0 \N 1497052837 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 730 2023-09-12 15:02:00.791 2021-10-01 08:34:57.832 KariCameron1BM \N \N \N 160369551 5 2 \N \N 100 \N \N f f 0 \N 1893724302 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 736 2022-10-22 17:03:18.392 2022-01-12 09:58:20.128 CristinaColeman8NY \N \N \N 118418911 5 2 \N \N 100 \N \N f f 0 \N 2227727046 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 739 2022-03-22 14:37:09.968 2023-09-25 05:58:31.797 ChrisCarsonTJ4 \N \N \N 19646724 5 2 \N \N 100 \N \N f f 0 \N 1427919774 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 750 2023-01-11 03:39:29.987 2022-10-28 23:45:45.304 RachaelMaloneK1Y \N \N \N 171453678 5 2 \N \N 100 \N \N f f 0 \N 2245572467 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 756 2021-12-30 16:09:09.679 2022-10-09 13:37:05.556 PriscillaHenryO7X \N \N \N 206142773 5 2 \N \N 100 \N \N f f 0 \N 693859044 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 760 2023-06-19 10:57:06.415 2024-01-26 18:03:10.443 TammyDunnM4B \N \N \N 21172120 5 2 \N \N 100 \N \N f f 0 \N 1374767274 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 768 2021-12-24 13:31:36.635 2024-01-20 11:57:55.898 MiaRichHLC \N \N \N 18038133 5 2 \N \N 100 \N \N f f 0 \N 55184150 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 769 2022-10-31 12:34:50.549 2022-06-07 10:12:44.398 HaydenChristensenPY9 \N \N \N 235761372 5 2 \N \N 100 \N \N f f 0 \N 2061756793 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 770 2022-02-25 06:15:09.384 2022-07-26 16:33:21.611 WandaSnowN3H \N \N \N 107570688 5 2 \N \N 100 \N \N f f 0 \N 1898629288 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 782 2022-11-19 18:12:37.101 2022-06-13 16:39:19.832 MorganSloanF9U \N \N \N 163163836 5 2 \N \N 100 \N \N f f 0 \N 860239066 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 795 2023-04-04 19:11:01.513 2022-09-10 14:28:20.211 ZacharyRothIFM \N \N \N 129351780 5 2 \N \N 100 \N \N f f 0 \N 1972955691 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 802 2022-06-14 21:24:40.467 2023-06-01 02:18:58.639 DerekValdezU1N \N \N \N 216254762 5 2 \N \N 100 \N \N f f 0 \N 1608365975 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 805 2021-10-31 08:35:00.84 2021-12-16 06:01:35.661 WendyHarperLVN \N \N \N 122496312 5 2 \N \N 100 \N \N f f 0 \N 795117844 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 807 2023-12-16 04:51:31.19 2021-11-05 07:25:29.556 HayleyMillerEW4 \N \N \N 60086513 5 2 \N \N 100 \N \N f f 0 \N 2316955776 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 822 2023-06-12 23:49:52.424 2024-02-12 15:20:25.469 MeganWarnerYPF \N \N \N 10560355 5 2 \N \N 100 \N \N f f 0 \N 1221774343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 825 2022-07-14 06:59:02.464 2021-11-20 22:30:58.476 PatrickGarzaO2C \N \N \N 226567418 5 2 \N \N 100 \N \N f f 0 \N 1650548088 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 831 2024-01-03 12:20:45.415 2023-05-05 01:20:37.515 JoyceCantuOPF \N \N \N 19271206 5 2 \N \N 100 \N \N f f 0 \N 362987920 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 848 2023-11-09 19:46:21.87 2023-01-14 11:29:47.969 DarrellClements8FN \N \N \N 151462129 5 2 \N \N 100 \N \N f f 0 \N 2411672064 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 854 2022-06-26 07:50:46.355 2021-12-06 05:50:55.47 CharleneBoone98K \N \N \N 8222954 5 2 \N \N 100 \N \N f f 0 \N 1174555136 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 859 2023-04-01 18:16:28.201 2022-04-10 14:45:15.158 GabrielaSchaeferCQ3 \N \N \N 104650492 5 2 \N \N 100 \N \N f f 0 \N 40864266 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 861 2023-03-02 18:16:02.398 2023-12-29 15:25:48.977 KiaraKleinQPJ \N \N \N 32124505 5 2 \N \N 100 \N \N f f 0 \N 211423178 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 951 2023-10-20 23:03:12.77 2023-10-28 01:36:19.345 NancyCoffey4KG \N \N \N 47087846 5 2 \N \N 100 \N \N f f 0 \N 48927921 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 956 2022-01-08 04:15:12.29 2022-01-09 23:13:38.949 DonHarrisJV1 \N \N \N 11552162 5 2 \N \N 100 \N \N f f 0 \N 2081585151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 960 2022-08-02 18:57:17.589 2022-01-22 02:14:26.007 PhyllisGrimesPPH \N \N \N 207559888 5 2 \N \N 100 \N \N f f 0 \N 387232257 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 964 2023-04-15 16:28:50.453 2023-04-29 15:50:57.45 BiancaTuckerEZF \N \N \N 149420476 5 2 \N \N 100 \N \N f f 0 \N 1121719709 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 965 2023-02-15 17:20:36.406 2023-09-29 19:08:01.242 DanielPrice47G \N \N \N 121478213 5 2 \N \N 100 \N \N f f 0 \N 2235292047 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 976 2023-09-05 10:57:09.044 2024-02-17 22:09:54.045 JocelynLuceroLP9 \N \N \N 210710542 5 2 \N \N 100 \N \N f f 0 \N 1052310855 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 977 2022-08-05 10:17:25.322 2023-08-23 07:33:56.871 JeanetteGillespieBDS \N \N \N 119511154 5 2 \N \N 100 \N \N f f 0 \N 2425494608 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 979 2022-09-22 15:04:14.663 2024-01-31 05:27:53.833 JoannaTyler7LX \N \N \N 53978461 5 2 \N \N 100 \N \N f f 0 \N 1889911760 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 981 2023-09-08 04:50:31.717 2022-05-21 20:37:25.302 MichealWatkinsGLB \N \N \N 238483582 5 2 \N \N 100 \N \N f f 0 \N 903642979 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 987 2022-11-15 05:23:51.705 2023-08-25 04:28:08.993 JasmineHansen2WY \N \N \N 223029309 5 2 \N \N 100 \N \N f f 0 \N 296796643 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 989 2024-01-15 05:58:41.514 2022-05-12 12:25:43.221 JaimeAlexanderPHA \N \N \N 228134601 5 2 \N \N 100 \N \N f f 0 \N 329188449 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 992 2023-07-23 05:22:02.743 2023-10-10 15:57:06.579 KristyBallTML \N \N \N 71274021 5 2 \N \N 100 \N \N f f 0 \N 1644878805 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 993 2022-01-01 06:20:50.437 2022-01-11 21:23:41.942 JocelynSparksV5W \N \N \N 118310649 5 2 \N \N 100 \N \N f f 0 \N 2492680318 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 994 2024-01-27 21:51:50.223 2022-03-28 14:28:10.577 ArielKnight6DU \N \N \N 150550954 5 2 \N \N 100 \N \N f f 0 \N 1659026929 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 997 2022-04-12 10:30:28.1 2022-10-03 01:17:48.677 SavannahMcneilQSJ \N \N \N 176976153 5 2 \N \N 100 \N \N f f 0 \N 1007050759 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 998 2022-12-29 09:19:10.775 2023-06-15 11:15:13.941 JoelOsborn788 \N \N \N 154963168 5 2 \N \N 100 \N \N f f 0 \N 1839005146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 999 2023-05-16 15:16:04.189 2021-10-02 06:25:27.22 FranklinPotts7TW \N \N \N 209777017 5 2 \N \N 100 \N \N f f 0 \N 1029352098 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1000 2023-04-07 05:35:35.902 2022-03-13 01:11:48.158 JayGarcia8OF \N \N \N 218251287 5 2 \N \N 100 \N \N f f 0 \N 1209669118 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1002 2022-07-21 19:29:55.785 2022-11-01 22:42:56.771 TheresaPottsSOQ \N \N \N 247177910 5 2 \N \N 100 \N \N f f 0 \N 1213933777 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1006 2022-03-05 16:16:05.125 2022-01-10 01:35:42.633 ConnieKrauseFDR \N \N \N 142595085 5 2 \N \N 100 \N \N f f 0 \N 2096914251 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1008 2022-09-09 04:40:32.161 2022-09-05 05:13:35.12 DeannaKent9PV \N \N \N 195986785 5 2 \N \N 100 \N \N f f 0 \N 787821586 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1772 2022-01-01 15:43:20.861 2023-08-18 19:47:10.848 GailHart3YH \N \N \N 225457731 5 2 \N \N 100 \N \N f f 0 \N 1217064179 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12911 2022-06-28 13:11:33.012 2022-01-13 09:55:23.437 DeannaPennington2T4 \N \N \N 100954005 5 2 \N \N 100 \N \N f f 0 \N 172289963 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13246 2024-02-11 19:20:18.337 2023-12-16 06:12:18.19 PedroChandlerZ86 \N \N \N 144331150 5 2 \N \N 100 \N \N f f 0 \N 1747160443 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17001 2023-12-01 19:30:58.233 2022-07-02 01:49:25.678 JeromeSchaeferYVM \N \N \N 36689116 5 2 \N \N 100 \N \N f f 0 \N 1066044098 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17212 2023-08-09 23:38:17.104 2022-10-10 09:52:33.591 TravisStuart5K2 \N \N \N 45468815 5 2 \N \N 100 \N \N f f 0 \N 2041928523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19094 2023-01-22 22:46:03.422 2024-02-07 20:05:59.118 DeannaCarpenterVR5 \N \N \N 209000848 5 2 \N \N 100 \N \N f f 0 \N 422437323 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2774 2021-12-26 14:41:07.531 2022-06-10 15:58:35.355 GabrielleHortonBHH \N \N \N 197104224 5 2 \N \N 100 \N \N f f 0 \N 218924965 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17166 2022-05-30 04:31:11.302 2022-01-30 19:41:03.722 AaronRushTPQ \N \N \N 193628510 5 2 \N \N 100 \N \N f f 0 \N 1474610606 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8870 2023-09-26 17:58:30.556 2023-10-30 14:54:49.532 KerriSkinnerC7U \N \N \N 224970151 5 2 \N \N 100 \N \N f f 0 \N 2458711306 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14906 2023-11-05 02:21:46.815 2022-03-14 21:10:35.449 KendraBishop3AG \N \N \N 2926327 5 2 \N \N 100 \N \N f f 0 \N 882719135 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10393 2021-11-10 02:07:09.287 2023-05-19 16:16:00.792 MichaelHerringSU1 \N \N \N 67972981 5 2 \N \N 100 \N \N f f 0 \N 1135438784 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12158 2022-06-21 23:35:18.4 2022-12-13 02:26:39.542 GregoryPhillipsYVF \N \N \N 30247262 5 2 \N \N 100 \N \N f f 0 \N 1218431437 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19842 2022-08-22 13:33:16.348 2023-04-02 23:14:06.091 EarlCabreraRZL \N \N \N 45466280 5 2 \N \N 100 \N \N f f 0 \N 970243350 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17094 2023-07-01 01:33:05.537 2022-05-04 13:48:57.234 MarciaSinghMZV \N \N \N 118761397 5 2 \N \N 100 \N \N f f 0 \N 361774768 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17535 2022-10-25 06:25:40.134 2023-07-03 22:24:40.291 TerriMarshQKP \N \N \N 106898902 5 2 \N \N 100 \N \N f f 0 \N 2085560416 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16670 2023-02-23 23:54:41.976 2022-02-02 08:59:06.537 CollinBlankenship8M4 \N \N \N 196471816 5 2 \N \N 100 \N \N f f 0 \N 2242834098 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17984 2022-12-18 07:50:09.724 2022-11-05 16:24:35.698 RileyMiddletonMZQ \N \N \N 241193609 5 2 \N \N 100 \N \N f f 0 \N 1673038456 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 777 2021-11-06 22:27:48.583 2023-03-05 04:10:20.899 KaraLongSFV \N \N \N 74772203 5 2 \N \N 100 \N \N f f 0 \N 1069850618 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 787 2021-10-26 03:09:31.598 2022-09-07 06:41:13.527 JeremyCastroEMZ \N \N \N 118151835 5 2 \N \N 100 \N \N f f 0 \N 1670005459 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 803 2022-12-04 08:13:35.423 2024-02-01 19:42:16.812 AngelRomeroZTQ \N \N \N 26101113 5 2 \N \N 100 \N \N f f 0 \N 1236050673 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 909 2022-04-30 04:37:47.262 2023-10-03 02:39:54.035 AndreaMoore2VY \N \N \N 109591329 5 2 \N \N 100 \N \N f f 0 \N 2039478200 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 954 2023-11-02 04:44:14.535 2023-07-09 15:30:30.711 SonyaCervantes4AS \N \N \N 234295335 5 2 \N \N 100 \N \N f f 0 \N 983874713 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1060 2022-04-25 13:55:48.248 2021-10-24 04:53:16.154 XavierBondRO5 \N \N \N 194793608 5 2 \N \N 100 \N \N f f 0 \N 1847300057 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1105 2022-08-28 16:55:09.601 2023-04-29 00:17:18.787 KerriTaylorM0I \N \N \N 124893518 5 2 \N \N 100 \N \N f f 0 \N 230751117 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1122 2022-03-10 19:33:00.548 2023-04-07 04:04:24.027 GailPoole0KN \N \N \N 161785116 5 2 \N \N 100 \N \N f f 0 \N 196553129 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1130 2022-03-22 10:55:16.682 2022-10-31 21:52:38.908 AbigailMaciasWLX \N \N \N 214878120 5 2 \N \N 100 \N \N f f 0 \N 2230430574 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1141 2022-02-20 10:41:11.41 2024-02-03 07:45:26.778 TerryPearson3CE \N \N \N 74864033 5 2 \N \N 100 \N \N f f 0 \N 1702570137 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1195 2022-12-27 06:30:32.663 2022-07-08 03:38:36.179 AlecMeyersUB9 \N \N \N 123977741 5 2 \N \N 100 \N \N f f 0 \N 2430680690 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1198 2021-12-09 18:41:54.14 2023-09-08 13:37:27.634 HunterHarmon5ER \N \N \N 187239190 5 2 \N \N 100 \N \N f f 0 \N 305584967 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1307 2023-08-21 04:47:44.357 2023-09-29 22:04:50.379 LaceyBullockXMA \N \N \N 248356224 5 2 \N \N 100 \N \N f f 0 \N 1624392987 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1326 2023-05-29 02:53:55.082 2023-11-04 10:45:49.973 DarinGilbert80T \N \N \N 5071993 5 2 \N \N 100 \N \N f f 0 \N 2018551546 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1394 2023-10-13 03:53:21.062 2022-12-03 02:34:50.221 ClaudiaSteeleUYX \N \N \N 216131742 5 2 \N \N 100 \N \N f f 0 \N 1133586462 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1425 2023-05-17 20:00:46.504 2022-09-11 11:10:04.718 BrentWilkinson3WR \N \N \N 191968872 5 2 \N \N 100 \N \N f f 0 \N 2335466679 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1426 2023-11-10 08:16:28.655 2023-02-28 19:08:21.737 JonathanAguirreWRE \N \N \N 121909999 5 2 \N \N 100 \N \N f f 0 \N 2090490707 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1438 2023-03-11 10:41:49.172 2022-11-22 21:27:51.102 DanStuart9X5 \N \N \N 15954778 5 2 \N \N 100 \N \N f f 0 \N 1189295114 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1495 2022-08-08 20:58:36.044 2023-07-27 23:01:51.609 BryanAlexander1XY \N \N \N 83002681 5 2 \N \N 100 \N \N f f 0 \N 309035824 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1549 2022-12-27 03:18:51.637 2023-04-08 01:30:43.981 RickeyWyattF1S \N \N \N 66847213 5 2 \N \N 100 \N \N f f 0 \N 2295793384 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1647 2023-06-10 15:00:33.241 2023-07-27 04:47:23.513 GilbertMaxwellSZH \N \N \N 68907661 5 2 \N \N 100 \N \N f f 0 \N 2266161305 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1717 2023-03-07 19:32:13.43 2023-04-28 00:29:29.253 AnaHarveyYEY \N \N \N 165996067 5 2 \N \N 100 \N \N f f 0 \N 2212339887 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1740 2022-08-08 23:33:32.353 2021-12-21 12:42:30.548 JudithHigginsSUC \N \N \N 23982454 5 2 \N \N 100 \N \N f f 0 \N 1576568085 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1803 2022-06-12 18:59:05.33 2022-12-19 08:34:40.048 CodyTaylorSKE \N \N \N 227611049 5 2 \N \N 100 \N \N f f 0 \N 1473492904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1833 2024-01-08 03:29:36.972 2023-12-01 12:11:37.776 AshleeJordanJQ5 \N \N \N 56297677 5 2 \N \N 100 \N \N f f 0 \N 1041546697 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1881 2022-06-16 04:23:08.405 2023-05-21 12:24:06.029 TerranceZamoraX48 \N \N \N 74378067 5 2 \N \N 100 \N \N f f 0 \N 861844090 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2056 2024-02-18 03:34:49.209 2022-11-14 06:55:07.327 CharleneAlvaradoCXT \N \N \N 52490468 5 2 \N \N 100 \N \N f f 0 \N 1674569952 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2088 2022-06-10 12:08:48.459 2022-10-29 00:24:58.366 HeatherCruzT5M \N \N \N 52355505 5 2 \N \N 100 \N \N f f 0 \N 2335188465 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2232 2023-01-03 13:18:29.464 2022-03-10 10:20:46.74 JayReidC64 \N \N \N 15315998 5 2 \N \N 100 \N \N f f 0 \N 2205191890 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2327 2022-02-05 18:47:42.393 2021-11-17 01:41:55.358 MikeFranklin6KF \N \N \N 247583508 5 2 \N \N 100 \N \N f f 0 \N 953316582 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2347 2021-10-20 03:18:22.909 2022-03-10 10:18:27.04 JamiePaceRRL \N \N \N 211412529 5 2 \N \N 100 \N \N f f 0 \N 1898580900 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2508 2024-01-31 23:49:45.26 2021-11-27 12:00:50.558 HectorOliver2CH \N \N \N 34439518 5 2 \N \N 100 \N \N f f 0 \N 2400838523 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2583 2022-04-22 08:03:18.632 2022-12-20 22:44:45.883 LukeGlassHJF \N \N \N 136718520 5 2 \N \N 100 \N \N f f 0 \N 1089864344 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2596 2023-12-22 04:46:30.66 2023-08-06 21:44:37.832 LisaHuynhXOF \N \N \N 132562023 5 2 \N \N 100 \N \N f f 0 \N 2388013485 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2724 2021-11-24 07:11:10.588 2023-06-13 00:27:25.523 MargaretRileyCYT \N \N \N 205747677 5 2 \N \N 100 \N \N f f 0 \N 1656231519 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2734 2022-12-13 22:37:12.371 2022-06-07 08:04:32.322 BethHubbardK4Q \N \N \N 137802409 5 2 \N \N 100 \N \N f f 0 \N 515813142 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2735 2022-03-17 21:29:25.533 2023-06-05 11:57:22.717 DuanePierce5V4 \N \N \N 185059312 5 2 \N \N 100 \N \N f f 0 \N 1423879749 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2775 2022-12-05 10:16:20.236 2023-02-15 23:23:27.335 AndreaRamirezFJ6 \N \N \N 133642633 5 2 \N \N 100 \N \N f f 0 \N 2322399974 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5487 2022-06-26 00:14:00.858 2023-10-24 11:02:54.179 DylanBrayZAH \N \N \N 99750544 5 2 \N \N 100 \N \N f f 0 \N 948075792 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13987 2023-05-14 04:23:19.39 2022-01-04 17:20:08.827 KristyHughesQI4 \N \N \N 79363427 5 2 \N \N 100 \N \N f f 0 \N 197408600 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16965 2023-03-07 14:16:11.568 2023-04-26 02:54:54.689 RebeccaMcdonald8E1 \N \N \N 57665679 5 2 \N \N 100 \N \N f f 0 \N 300437121 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17331 2023-04-30 02:30:25.29 2022-05-19 16:30:22.968 RebekahPooleL3V \N \N \N 25725651 5 2 \N \N 100 \N \N f f 0 \N 763782836 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17696 2023-10-14 04:48:24.127 2023-06-23 14:30:24.132 AliciaAdkinsWWI \N \N \N 146433474 5 2 \N \N 100 \N \N f f 0 \N 1554138365 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21532 2022-09-05 09:30:28.865 2023-07-04 15:20:23.873 DakotaObrienTSP \N \N \N 146248994 5 2 \N \N 100 \N \N f f 0 \N 577110181 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 794 2023-09-16 05:32:41.309 2023-10-03 06:26:31.703 LaceyRiddle1UE \N \N \N 158898490 5 2 \N \N 100 \N \N f f 0 \N 1755829497 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 844 2022-07-12 20:35:39.458 2024-01-18 22:28:20.407 DebbieKeithUVR \N \N \N 237845621 5 2 \N \N 100 \N \N f f 0 \N 1698564961 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1094 2021-11-11 20:13:38.4 2022-06-24 09:19:10.163 RobertHardinPT6 \N \N \N 165899707 5 2 \N \N 100 \N \N f f 0 \N 1526564002 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1209 2023-01-06 17:18:07.996 2023-02-28 14:58:53.815 GarrettRiosI2D \N \N \N 8529166 5 2 \N \N 100 \N \N f f 0 \N 1816238285 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10063 2022-04-09 01:17:45.838 2022-01-09 18:30:55.445 KristaYoderQX0 \N \N \N 234547825 5 2 \N \N 100 \N \N f f 0 \N 661166458 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10342 2022-06-15 13:57:37.6 2023-12-15 09:46:08.923 CarolBurgessSAK \N \N \N 78190290 5 2 \N \N 100 \N \N f f 0 \N 1323640367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16097 2022-01-09 18:09:50.38 2023-04-22 17:14:57.029 AlishaValdezUQW \N \N \N 173087091 5 2 \N \N 100 \N \N f f 0 \N 152395136 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16270 2021-12-23 15:52:40.853 2023-03-18 19:20:20.46 TabithaFisher5GS \N \N \N 45564585 5 2 \N \N 100 \N \N f f 0 \N 724818255 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17172 2022-02-14 01:43:51.504 2022-10-04 13:45:24.088 KelliStewartEJN \N \N \N 102348871 5 2 \N \N 100 \N \N f f 0 \N 1159643766 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17237 2024-02-06 01:16:05.185 2023-06-20 01:13:38.344 KristopherWebsterUEX \N \N \N 149724079 5 2 \N \N 100 \N \N f f 0 \N 266132300 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17522 2022-10-26 22:34:11.536 2022-11-04 09:08:50.126 NicholasBenjamin3Y5 \N \N \N 195863004 5 2 \N \N 100 \N \N f f 0 \N 2226843529 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17541 2022-09-17 04:45:13.673 2021-12-30 02:26:53.73 ChelseaRivasJSY \N \N \N 173243383 5 2 \N \N 100 \N \N f f 0 \N 841775488 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17570 2021-12-13 18:12:52.565 2024-01-08 01:20:12.017 ReginaldNolanWFY \N \N \N 104691038 5 2 \N \N 100 \N \N f f 0 \N 439708741 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2176 2022-10-06 22:02:53.999 2023-10-13 20:57:59.164 JanetAlexander5P5 \N \N \N 119238809 5 2 \N \N 100 \N \N f f 0 \N 1541684325 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5069 2023-08-22 20:37:59.681 2022-11-12 02:41:43.994 RonaldCraig1GZ \N \N \N 117558625 5 2 \N \N 100 \N \N f f 0 \N 1737654958 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7818 2022-06-21 03:28:11.698 2023-12-10 12:31:09.993 TannerFriedmanK3E \N \N \N 32755787 5 2 \N \N 100 \N \N f f 0 \N 2439362813 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7966 2023-06-13 10:00:28.049 2023-07-29 01:23:54.995 AdriennePorterZWX \N \N \N 187745959 5 2 \N \N 100 \N \N f f 0 \N 105045387 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8287 2022-01-08 15:12:32.966 2022-09-26 10:50:13.938 KendraYoungYQY \N \N \N 247887059 5 2 \N \N 100 \N \N f f 0 \N 1249364756 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8459 2023-05-12 12:06:53.369 2021-11-27 19:50:40.92 ChristinaColeTVX \N \N \N 108778883 5 2 \N \N 100 \N \N f f 0 \N 1103045528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8926 2021-10-31 02:19:49.112 2022-07-22 19:41:20.396 TylerGainesWG8 \N \N \N 19200384 5 2 \N \N 100 \N \N f f 0 \N 1241877409 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11328 2022-08-22 05:28:28.592 2023-02-14 22:16:26.615 DaltonNormanQOL \N \N \N 136099826 5 2 \N \N 100 \N \N f f 0 \N 955550683 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11515 2022-05-05 19:13:37.721 2022-03-27 20:47:23.938 HollyPerryYLC \N \N \N 17897846 5 2 \N \N 100 \N \N f f 0 \N 2222270246 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11590 2022-11-24 21:02:44.125 2022-01-18 15:40:32.767 JefferyPowersBO1 \N \N \N 17269000 5 2 \N \N 100 \N \N f f 0 \N 978530971 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15351 2022-04-03 21:26:35.935 2023-01-02 19:14:06.982 SueShafferXTA \N \N \N 197239050 5 2 \N \N 100 \N \N f f 0 \N 61417261 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11678 2022-10-22 07:16:48.96 2022-11-30 12:38:20.529 AlejandroBanks5ET \N \N \N 240484300 5 2 \N \N 100 \N \N f f 0 \N 1614333184 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11716 2022-10-11 19:20:22.785 2023-06-17 08:25:17.042 JamieDickerson7FS \N \N \N 104216302 5 2 \N \N 100 \N \N f f 0 \N 1713865697 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11789 2022-09-17 21:19:17.077 2023-04-28 18:26:46.795 JoanneStanley9LJ \N \N \N 214490150 5 2 \N \N 100 \N \N f f 0 \N 2020259377 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11829 2023-08-15 21:28:45.193 2022-12-23 08:33:57.3 MaryPatel7VY \N \N \N 60636472 5 2 \N \N 100 \N \N f f 0 \N 1377655146 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9 2023-02-25 04:21:12.38 2024-01-15 08:14:33.087 MelanieWhitehead4SS \N \N \N 76570367 5 2 \N \N 100 \N \N f f 0 \N 2292247126 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7558 2024-01-18 21:57:29.825 2023-04-15 12:20:34.859 CarrieJefferson1XM \N \N \N 20883122 5 2 \N \N 100 \N \N f f 0 \N 2243097363 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14280 2023-12-20 23:26:43.728 2023-06-27 10:41:13.615 SuzanneChristianJYO \N \N \N 239153162 5 2 \N \N 100 \N \N f f 0 \N 1245868800 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15484 2022-09-01 02:16:20.067 2023-03-07 11:34:50.565 ThomasAliUSL \N \N \N 89476896 5 2 \N \N 100 \N \N f f 0 \N 565592217 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15526 2022-07-21 19:48:41.168 2022-09-24 13:44:54.007 DaltonWheelerCJ4 \N \N \N 64194269 5 2 \N \N 100 \N \N f f 0 \N 420813118 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16948 2021-11-19 14:20:50.948 2022-11-28 17:55:02.353 MalikHuber051 \N \N \N 242444716 5 2 \N \N 100 \N \N f f 0 \N 1890716466 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16950 2023-04-04 16:41:55.419 2021-12-24 23:43:42.661 LindsayCalhounU3N \N \N \N 227025295 5 2 \N \N 100 \N \N f f 0 \N 300132202 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17046 2023-11-16 04:08:24.587 2023-04-21 19:37:54.343 AlbertAndersonHQ4 \N \N \N 70872543 5 2 \N \N 100 \N \N f f 0 \N 1736852613 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17568 2021-12-30 14:44:19.538 2023-03-27 12:50:24.805 JimmyHodge7T0 \N \N \N 218436583 5 2 \N \N 100 \N \N f f 0 \N 1727524706 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17592 2023-02-09 12:51:01.229 2023-01-23 15:48:18.764 TiffanyKingAM0 \N \N \N 56862388 5 2 \N \N 100 \N \N f f 0 \N 2337904894 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17690 2024-02-03 12:56:36.382 2023-02-14 14:22:26.308 WalterMullenUCR \N \N \N 207555441 5 2 \N \N 100 \N \N f f 0 \N 743318437 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17708 2021-10-26 05:56:47.871 2023-02-01 09:48:57.383 DerekDuncanEPM \N \N \N 98044877 5 2 \N \N 100 \N \N f f 0 \N 2084432287 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17797 2023-10-09 01:07:54.992 2023-12-03 15:07:34.548 BethanySkinnerVPG \N \N \N 135857755 5 2 \N \N 100 \N \N f f 0 \N 2114132772 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2620 2022-10-22 23:42:30.92 2021-11-30 15:02:39.919 GordonRobbinsKXS \N \N \N 187271607 5 2 \N \N 100 \N \N f f 0 \N 2223573127 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2844 2022-03-21 06:12:12.108 2022-01-01 21:20:33.514 GloriaMccallIBU \N \N \N 140854477 5 2 \N \N 100 \N \N f f 0 \N 2140923758 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4225 2023-04-29 03:45:44.735 2023-08-31 06:10:45.971 SandyNorrisUOU \N \N \N 88148139 5 2 \N \N 100 \N \N f f 0 \N 1189836814 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4238 2023-03-29 09:07:19.44 2022-03-26 00:10:38.954 BreannaZuniga501 \N \N \N 42813672 5 2 \N \N 100 \N \N f f 0 \N 64360607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5728 2022-04-30 15:26:06.454 2022-05-17 22:49:01.243 JamieCarr11L \N \N \N 99052812 5 2 \N \N 100 \N \N f f 0 \N 877662324 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7425 2022-11-29 23:00:08.471 2023-04-10 16:13:16.481 GlennPrince5WR \N \N \N 117933655 5 2 \N \N 100 \N \N f f 0 \N 419801562 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7869 2022-02-20 06:07:10.606 2023-05-17 02:36:48.432 BrandiHernandezHY1 \N \N \N 239573938 5 2 \N \N 100 \N \N f f 0 \N 1495178031 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8416 2021-10-10 19:34:55.132 2023-05-20 16:04:26.757 BillyBensonFQS \N \N \N 130747333 5 2 \N \N 100 \N \N f f 0 \N 2086035900 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8729 2023-12-31 07:38:50.719 2022-06-19 01:51:09.394 TammyHowell9MZ \N \N \N 173859213 5 2 \N \N 100 \N \N f f 0 \N 1933032101 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8985 2022-06-06 01:21:53.845 2022-09-12 14:06:12.625 JordanVillanuevaG15 \N \N \N 208576456 5 2 \N \N 100 \N \N f f 0 \N 1728110714 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9329 2022-10-28 19:31:14.194 2023-03-14 13:22:34.393 ChristieMueller7EV \N \N \N 123760968 5 2 \N \N 100 \N \N f f 0 \N 970234995 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9332 2022-06-19 09:40:50.559 2023-11-08 19:28:19.388 DestinyHancockRQY \N \N \N 179036049 5 2 \N \N 100 \N \N f f 0 \N 948537411 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9333 2023-04-28 11:52:55.046 2023-08-23 22:12:00.728 ValerieHolderNGG \N \N \N 192444918 5 2 \N \N 100 \N \N f f 0 \N 1872125056 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9335 2024-02-17 14:55:55.203 2024-02-06 00:48:26.272 HarrySanford1GU \N \N \N 7005337 5 2 \N \N 100 \N \N f f 0 \N 738642503 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9336 2023-09-04 12:04:48.433 2022-12-07 09:32:08.058 BradyArmstrong6QH \N \N \N 126215107 5 2 \N \N 100 \N \N f f 0 \N 320809559 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7989 2023-07-23 22:38:44.291 2023-10-09 09:24:34.514 RalphBooneS54 \N \N \N 136857700 5 2 \N \N 100 \N \N f f 0 \N 1817306809 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9337 2023-03-24 12:47:46.678 2023-08-14 16:21:07.434 JeanNealCST \N \N \N 162433184 5 2 \N \N 100 \N \N f f 0 \N 600665207 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9339 2021-11-16 04:43:51.171 2022-01-20 08:07:53.815 AllisonAndrewsU6N \N \N \N 60294245 5 2 \N \N 100 \N \N f f 0 \N 793691102 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9346 2023-04-20 15:37:01.317 2022-03-28 04:07:30.335 CarolBergerTB5 \N \N \N 82370398 5 2 \N \N 100 \N \N f f 0 \N 1038268626 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9347 2023-10-19 19:45:54.682 2023-04-21 05:22:11.815 RyanDudley25K \N \N \N 22674361 5 2 \N \N 100 \N \N f f 0 \N 300569200 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9348 2022-12-24 04:01:00.226 2023-10-07 18:07:19.494 ClaireLeonardVPC \N \N \N 78812698 5 2 \N \N 100 \N \N f f 0 \N 361924705 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9349 2023-01-10 12:46:11.738 2023-09-27 13:22:16.241 KathleenHarrington4FC \N \N \N 144057920 5 2 \N \N 100 \N \N f f 0 \N 2304420076 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9350 2023-03-10 12:00:40.379 2023-07-11 18:41:32.483 HeatherYangF6Y \N \N \N 56968728 5 2 \N \N 100 \N \N f f 0 \N 2203791635 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9351 2023-11-13 14:11:55.556 2022-11-24 13:26:25.714 EthanFrostPZ1 \N \N \N 242623571 5 2 \N \N 100 \N \N f f 0 \N 503577427 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9352 2022-12-28 03:38:34.809 2022-10-28 05:27:17.657 SpencerRichmondP8C \N \N \N 162435985 5 2 \N \N 100 \N \N f f 0 \N 811679283 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9353 2023-01-17 07:59:10.685 2023-05-02 13:40:59.126 MichealShahDI5 \N \N \N 42142015 5 2 \N \N 100 \N \N f f 0 \N 1064917540 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9354 2021-11-20 21:38:02.565 2022-12-22 11:52:38.879 NoahRomanZGB \N \N \N 209995064 5 2 \N \N 100 \N \N f f 0 \N 1401036894 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9355 2022-03-23 05:08:37.323 2023-12-05 09:41:49.494 MaxGarrisonR5S \N \N \N 114319672 5 2 \N \N 100 \N \N f f 0 \N 972196194 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9356 2023-01-30 01:00:55.194 2021-11-30 15:39:34.281 DianeKiddTXE \N \N \N 203135756 5 2 \N \N 100 \N \N f f 0 \N 755027970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9362 2022-12-08 22:21:17.876 2023-12-07 04:20:07.263 JohnathanEstesIG5 \N \N \N 113572521 5 2 \N \N 100 \N \N f f 0 \N 2054907074 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9363 2022-05-27 10:35:20.237 2023-11-30 16:22:53.717 StacieEspinoza380 \N \N \N 47846475 5 2 \N \N 100 \N \N f f 0 \N 1875770517 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9364 2023-01-13 09:01:44.547 2023-01-02 03:08:03.433 ChristineClarkBOG \N \N \N 57419042 5 2 \N \N 100 \N \N f f 0 \N 2010335581 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9365 2022-08-26 22:43:10.298 2021-10-26 01:36:30.325 RobynBergerRE4 \N \N \N 139321181 5 2 \N \N 100 \N \N f f 0 \N 1704999298 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9366 2023-01-17 14:20:59.339 2023-04-26 05:47:54.12 SonyaLeonTXI \N \N \N 79033673 5 2 \N \N 100 \N \N f f 0 \N 1702284936 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9367 2022-11-21 14:47:48.921 2021-11-30 16:51:20.777 CarlyGilmoreCDE \N \N \N 158588813 5 2 \N \N 100 \N \N f f 0 \N 1205095661 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9421 2023-06-06 02:20:59.687 2022-08-12 20:29:31.226 GailSimonFL9 \N \N \N 96569183 5 2 \N \N 100 \N \N f f 0 \N 2079805514 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9611 2022-04-24 04:53:30.938 2023-12-25 07:24:32.809 KaylaHarrisonNGY \N \N \N 129646739 5 2 \N \N 100 \N \N f f 0 \N 901589779 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9669 2022-02-16 00:37:28.469 2024-01-01 06:30:20.296 GregoryKimMK1 \N \N \N 97671347 5 2 \N \N 100 \N \N f f 0 \N 281993542 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9758 2022-03-23 05:04:08.292 2022-10-31 05:32:51.971 SheliaMeadowsZ1C \N \N \N 33898117 5 2 \N \N 100 \N \N f f 0 \N 2298469159 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9796 2023-07-01 16:12:43.667 2022-02-12 04:08:18.975 KristyHurstFHP \N \N \N 70973955 5 2 \N \N 100 \N \N f f 0 \N 2462081400 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9820 2022-03-09 12:37:25.612 2023-01-02 03:07:32.846 ColleenWashingtonKOJ \N \N \N 16172756 5 2 \N \N 100 \N \N f f 0 \N 734928410 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9845 2022-06-11 11:56:16.877 2023-04-28 23:20:45.036 MeghanParsons44Z \N \N \N 241511324 5 2 \N \N 100 \N \N f f 0 \N 98736160 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9906 2021-10-03 09:39:39.614 2023-12-08 11:40:34.063 BrettWoodsS9M \N \N \N 34908926 5 2 \N \N 100 \N \N f f 0 \N 1370451165 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9920 2022-01-08 22:18:42.041 2021-10-12 00:41:34.587 SuzanneMayoOND \N \N \N 160353930 5 2 \N \N 100 \N \N f f 0 \N 650047253 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10060 2023-07-10 22:35:33.505 2022-09-04 02:29:34.79 VirginiaHessGLV \N \N \N 163501677 5 2 \N \N 100 \N \N f f 0 \N 443043572 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10102 2022-01-04 14:10:23.174 2022-10-20 16:59:35.722 ChelseyMackPZE \N \N \N 71592149 5 2 \N \N 100 \N \N f f 0 \N 53020217 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10849 2023-10-20 13:50:35.611 2023-12-11 02:08:38.936 NicholasReidQ7E \N \N \N 12794487 5 2 \N \N 100 \N \N f f 0 \N 775417622 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11145 2023-11-28 13:36:55.798 2021-11-30 14:14:37.288 WillieDillonBK5 \N \N \N 82305742 5 2 \N \N 100 \N \N f f 0 \N 1185129528 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11498 2023-08-09 07:54:12.682 2023-05-23 02:24:27.181 GregWrightL34 \N \N \N 187851177 5 2 \N \N 100 \N \N f f 0 \N 1712698557 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11516 2023-06-07 10:58:47.544 2022-01-03 23:28:27.008 AnthonyBautistaGVE \N \N \N 155800377 5 2 \N \N 100 \N \N f f 0 \N 1221131232 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11670 2023-11-21 09:10:27.388 2023-01-17 22:02:55.821 CourtneyBlairT5E \N \N \N 208861227 5 2 \N \N 100 \N \N f f 0 \N 1928154131 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11885 2022-10-11 19:07:33.331 2022-05-11 02:47:22.386 TannerVelezGOI \N \N \N 126368026 5 2 \N \N 100 \N \N f f 0 \N 197778295 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12220 2022-04-30 11:26:33.712 2022-08-27 10:29:51.004 CherylMccormickOWT \N \N \N 211619692 5 2 \N \N 100 \N \N f f 0 \N 2149494311 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12245 2022-05-09 03:17:44.126 2021-12-13 17:20:29.006 LoriStanleyE4H \N \N \N 151027918 5 2 \N \N 100 \N \N f f 0 \N 2295843077 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17523 2022-02-24 18:53:12.589 2022-12-28 21:10:09.252 MarilynMurrayFCX \N \N \N 170410106 5 2 \N \N 100 \N \N f f 0 \N 1203784441 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5701 2023-01-24 00:29:19.794 2022-02-02 23:49:00.197 MarthaBerry5J0 \N \N \N 136040572 5 2 \N \N 100 \N \N f f 0 \N 2403730587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15063 2022-04-19 01:46:09.628 2022-12-16 00:26:05.255 CarrieAlexander6LT \N \N \N 97448012 5 2 \N \N 100 \N \N f f 0 \N 2413510339 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13204 2023-09-24 17:56:57.125 2022-01-09 16:55:27.578 BrentDudleyTNW \N \N \N 50719066 5 2 \N \N 100 \N \N f f 0 \N 374732570 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16970 2022-07-17 01:30:14.531 2023-08-06 17:55:18.949 OscarFriedmanY6L \N \N \N 103039943 5 2 \N \N 100 \N \N f f 0 \N 694871353 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14795 2022-07-22 09:31:56.876 2022-01-30 21:41:15.295 SeanArellano75N \N \N \N 49790699 5 2 \N \N 100 \N \N f f 0 \N 1356954605 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9078 2022-09-04 04:37:57.259 2023-09-27 10:04:09.066 WillieMorrisonOWE \N \N \N 5349826 5 2 \N \N 100 \N \N f f 0 \N 840827392 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21527 2023-10-22 10:55:45.134 2022-06-13 00:46:34.361 SandraSalazarBHY \N \N \N 176117290 5 2 \N \N 100 \N \N f f 0 \N 643469442 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11821 2022-12-04 12:57:08.509 2022-11-21 20:50:12.526 TomWatkins6RU \N \N \N 213663295 5 2 \N \N 100 \N \N f f 0 \N 2333328602 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5791 2022-04-30 09:47:15.106 2023-04-16 11:40:27.941 PeterFletcherCNV \N \N \N 244085534 5 2 \N \N 100 \N \N f f 0 \N 2034986151 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 5160 2021-11-13 11:32:27.512 2021-10-31 14:06:08.463 DianaFryeZZR \N \N \N 33473479 5 2 \N \N 100 \N \N f f 0 \N 2205071106 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12566 2022-06-14 17:52:16.438 2022-03-01 04:05:24.71 DonnaPham75D \N \N \N 84943658 5 2 \N \N 100 \N \N f f 0 \N 1861790919 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21493 2023-06-28 03:27:13.87 2023-07-13 18:07:13.761 ChristopherEwing4LM \N \N \N 170775821 5 2 \N \N 100 \N \N f f 0 \N 467128252 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18220 2022-01-29 10:19:37.014 2023-04-02 19:58:18.656 JasonRamseyFX3 \N \N \N 236736464 5 2 \N \N 100 \N \N f f 0 \N 1201206003 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16052 2023-10-31 01:21:58.221 2023-09-14 07:04:49.453 HunterBeckerPDO \N \N \N 248296625 5 2 \N \N 100 \N \N f f 0 \N 1071419340 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1845 2023-10-07 17:05:30.982 2023-09-13 12:56:23.169 TamiSpears6WT \N \N \N 33130875 5 2 \N \N 100 \N \N f f 0 \N 107250603 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20291 2022-12-28 05:48:23.79 2023-02-13 00:01:33.225 RichardDurhamH68 \N \N \N 234748641 5 2 \N \N 100 \N \N f f 0 \N 925370689 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15336 2022-06-04 02:33:47.891 2023-11-19 03:47:54.472 TashaMoon2SF \N \N \N 143513981 5 2 \N \N 100 \N \N f f 0 \N 639457261 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20231 2022-10-12 03:40:07.553 2022-03-03 17:08:52.374 LoganPenningtonKP3 \N \N \N 141406366 5 2 \N \N 100 \N \N f f 0 \N 1777175315 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7553 2023-10-28 00:14:47.353 2023-02-19 08:09:13.534 LaurieMaddenYI8 \N \N \N 143296658 5 2 \N \N 100 \N \N f f 0 \N 1486273558 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11956 2023-10-30 21:44:03.969 2023-11-22 09:13:19.267 LorettaFieldsAP6 \N \N \N 44664265 5 2 \N \N 100 \N \N f f 0 \N 45357275 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15045 2021-10-02 08:38:26.508 2022-09-30 17:41:26.388 DustinOlsonS5S \N \N \N 68925443 5 2 \N \N 100 \N \N f f 0 \N 422565715 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6700 2023-03-06 14:13:53.88 2022-12-18 08:27:50.396 DarleneSotoF86 \N \N \N 44872383 5 2 \N \N 100 \N \N f f 0 \N 2045933808 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8284 2023-01-19 22:36:20.442 2023-05-07 19:53:58.853 JillMcmillanB0I \N \N \N 201471026 5 2 \N \N 100 \N \N f f 0 \N 261385515 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19381 2024-01-17 17:14:31.677 2023-08-03 04:50:40.812 RobertaMiranda3ZI \N \N \N 193836067 5 2 \N \N 100 \N \N f f 0 \N 1558685664 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 16424 2023-03-24 18:06:34.317 2023-03-30 07:37:12.707 BryceLiu3ZG \N \N \N 205003379 5 2 \N \N 100 \N \N f f 0 \N 628531385 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18040 2023-04-28 10:13:22.442 2021-12-13 12:03:31.035 AnnaStokes4JJ \N \N \N 31203804 5 2 \N \N 100 \N \N f f 0 \N 1728358463 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12024 2022-12-19 15:47:22.732 2023-12-01 15:05:43.989 RubenOrtega7RB \N \N \N 151265934 5 2 \N \N 100 \N \N f f 0 \N 103453442 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10586 2023-03-15 13:42:09.58 2021-11-29 10:43:20.009 JadeChristian3MD \N \N \N 48934983 5 2 \N \N 100 \N \N f f 0 \N 1084190267 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10668 2022-05-09 16:17:33.866 2021-10-20 17:00:15.224 HowardRichmond1S4 \N \N \N 108942823 5 2 \N \N 100 \N \N f f 0 \N 1224409052 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19821 2022-07-29 15:04:41.586 2023-09-24 22:40:04.93 DerrickHaleyBAM \N \N \N 70487273 5 2 \N \N 100 \N \N f f 0 \N 1875884587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15273 2022-12-07 00:02:01.075 2023-11-14 14:49:47.445 TomHernandezTJ0 \N \N \N 34312755 5 2 \N \N 100 \N \N f f 0 \N 1511348652 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21323 2022-04-20 00:54:24.754 2023-07-02 22:27:35.141 MandyParkLNC \N \N \N 32575749 5 2 \N \N 100 \N \N f f 0 \N 35375568 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1064 2022-02-25 04:46:25.309 2023-10-25 05:01:03.696 ClaudiaPham5JT \N \N \N 41095016 5 2 \N \N 100 \N \N f f 0 \N 996824419 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20299 2021-12-03 14:50:04.351 2021-10-13 10:31:22.896 JimmyPayneJY3 \N \N \N 182256704 5 2 \N \N 100 \N \N f f 0 \N 2174525112 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7376 2023-05-01 20:18:58.651 2022-01-12 07:13:11.136 KristieBarnesHTP \N \N \N 190455431 5 2 \N \N 100 \N \N f f 0 \N 703229746 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19512 2024-01-03 06:23:10.404 2023-03-12 07:43:15.703 CynthiaEvansPA1 \N \N \N 2075350 5 2 \N \N 100 \N \N f f 0 \N 2225893575 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12102 2022-11-28 14:20:11.584 2022-08-10 05:33:30.764 CalvinYangTHV \N \N \N 247294291 5 2 \N \N 100 \N \N f f 0 \N 1768690713 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8074 2023-10-22 05:18:22.992 2023-09-28 08:53:57.964 MackenzieParksYGI \N \N \N 197806981 5 2 \N \N 100 \N \N f f 0 \N 830162156 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11450 2022-05-10 13:26:47.249 2022-10-15 19:59:25.597 MistyCarrollB12 \N \N \N 35708602 5 2 \N \N 100 \N \N f f 0 \N 2157819018 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 15556 2022-07-03 10:45:22.2 2023-07-08 14:25:10.502 CassandraBauerEY9 \N \N \N 134129914 5 2 \N \N 100 \N \N f f 0 \N 2043799731 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2256 2022-07-17 07:41:52.47 2023-12-23 20:24:54.92 TaraFrederick4LT \N \N \N 116487652 5 2 \N \N 100 \N \N f f 0 \N 1900914343 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6798 2022-10-11 04:18:45.985 2024-01-11 06:43:51.738 CassieBurns3TW \N \N \N 124921446 5 2 \N \N 100 \N \N f f 0 \N 1941904634 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12218 2022-10-01 18:03:13.885 2023-09-19 01:34:58.003 FaithGreerGWL \N \N \N 19739461 5 2 \N \N 100 \N \N f f 0 \N 614981487 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12175 2021-12-04 00:31:51.914 2022-10-07 23:34:47.423 AlejandraLopez4MS \N \N \N 152426425 5 2 \N \N 100 \N \N f f 0 \N 1179932371 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21503 2023-04-19 04:39:00.882 2022-11-08 00:22:20.384 JeremiahDurhamGYA \N \N \N 209574400 5 2 \N \N 100 \N \N f f 0 \N 879236402 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17927 2023-07-15 19:26:59.431 2022-12-03 21:52:32.131 LindaRogersW7S \N \N \N 128390493 5 2 \N \N 100 \N \N f f 0 \N 2175070750 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2390 2023-04-15 07:20:32.107 2023-05-07 10:35:32.936 CarlyHenry4C4 \N \N \N 14572854 5 2 \N \N 100 \N \N f f 0 \N 158926904 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2528 2022-12-17 21:51:53.92 2022-12-24 05:24:51.541 BradyArroyoAW0 \N \N \N 111602727 5 2 \N \N 100 \N \N f f 0 \N 984888929 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 3709 2021-11-02 13:32:06.016 2023-06-11 01:05:07.7 BarryMatthewsDUZ \N \N \N 237046621 5 2 \N \N 100 \N \N f f 0 \N 1400104143 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20182 2021-10-23 16:39:47.605 2023-09-07 07:46:40.945 LeroyLoweryYJX \N \N \N 30849534 5 2 \N \N 100 \N \N f f 0 \N 379009082 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 733 2023-03-28 07:51:28.43 2022-03-12 05:39:14.421 HerbertMcdowellFEU \N \N \N 164773984 5 2 \N \N 100 \N \N f f 0 \N 2045310089 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1626 2022-03-06 17:43:04.758 2022-08-04 21:16:48.999 WarrenCurtisBZQ \N \N \N 79878981 5 2 \N \N 100 \N \N f f 0 \N 48718367 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1658 2021-11-06 15:38:15.948 2023-11-24 04:20:10.263 JaclynHendrix5HF \N \N \N 194844339 5 2 \N \N 100 \N \N f f 0 \N 1171416226 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 1741 2024-02-09 19:30:45.646 2023-06-15 02:19:17.125 DeannaWuU5K \N \N \N 161342332 5 2 \N \N 100 \N \N f f 0 \N 387459788 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2162 2022-04-25 22:21:50.789 2023-11-20 02:16:06.81 CindyNealJI0 \N \N \N 152759000 5 2 \N \N 100 \N \N f f 0 \N 2388930333 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2309 2022-08-13 09:58:37.018 2022-03-27 21:54:04.817 ChristyCollierOVG \N \N \N 62346 5 2 \N \N 100 \N \N f f 0 \N 748802847 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 2444 2024-01-30 11:53:26.123 2023-03-14 03:18:27.159 LukeMcknightI57 \N \N \N 127052625 5 2 \N \N 100 \N \N f f 0 \N 1564573059 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4059 2022-12-18 07:53:21.925 2024-01-30 15:23:03.323 MelanieCookeHDM \N \N \N 188976049 5 2 \N \N 100 \N \N f f 0 \N 2259041587 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4487 2022-10-22 13:30:29.559 2022-05-02 02:36:20.108 MichaelGill0ZG \N \N \N 147280638 5 2 \N \N 100 \N \N f f 0 \N 391423290 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 4574 2021-12-29 18:51:41.244 2023-11-21 01:56:33.202 ErikDuncanJK6 \N \N \N 112143226 5 2 \N \N 100 \N \N f f 0 \N 1905995874 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6003 2023-12-10 07:31:27.382 2023-07-21 10:13:22.51 RussellPopeNXH \N \N \N 104929944 5 2 \N \N 100 \N \N f f 0 \N 543656067 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6383 2021-11-10 09:51:26.793 2023-04-09 00:02:06.105 SamuelIngramY57 \N \N \N 39644770 5 2 \N \N 100 \N \N f f 0 \N 1678235878 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 6717 2021-10-20 15:07:16.281 2023-08-26 01:43:25.682 KristyPhillipsN7D \N \N \N 65826981 5 2 \N \N 100 \N \N f f 0 \N 538439869 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 7979 2021-11-20 18:00:44.256 2021-10-30 18:15:27.692 ChelseyJohnsonYGC \N \N \N 220009639 5 2 \N \N 100 \N \N f f 0 \N 105925629 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8245 2021-12-18 11:58:22.891 2023-12-01 01:14:41.029 MarvinHeathH0E \N \N \N 161503897 5 2 \N \N 100 \N \N f f 0 \N 1493354728 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 9433 2023-04-26 18:25:53.313 2022-03-18 04:49:38.781 SherriHornVT9 \N \N \N 216630899 5 2 \N \N 100 \N \N f f 0 \N 1506696217 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10352 2022-12-19 21:08:25.779 2023-03-23 17:38:55.772 HectorDuncanLMH \N \N \N 80595881 5 2 \N \N 100 \N \N f f 0 \N 2237320041 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10530 2023-09-20 11:40:24.134 2022-08-27 08:49:20.756 CarrieBrock5YY \N \N \N 10618987 5 2 \N \N 100 \N \N f f 0 \N 2408511828 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 10728 2021-11-03 03:20:02.431 2022-01-03 15:07:43.689 ChristopherBridgesX9D \N \N \N 36369925 5 2 \N \N 100 \N \N f f 0 \N 2496118062 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11329 2022-11-22 14:39:49.167 2021-10-24 19:45:05.436 JackieLinURZ \N \N \N 196427365 5 2 \N \N 100 \N \N f f 0 \N 672421436 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 11898 2022-07-08 22:43:48.765 2022-07-02 14:59:49.851 RobertoAndrews792 \N \N \N 221586211 5 2 \N \N 100 \N \N f f 0 \N 2154761739 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12160 2024-02-19 00:01:46.14 2022-12-17 09:27:53.119 EugeneMorrisNUM \N \N \N 227152863 5 2 \N \N 100 \N \N f f 0 \N 381545410 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 12188 2022-08-05 18:57:40.085 2022-09-14 11:57:31.305 ReginaldRivasLC1 \N \N \N 185179131 5 2 \N \N 100 \N \N f f 0 \N 1511650449 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13527 2021-10-27 12:34:32.168 2023-02-04 07:29:00.285 SandraBrady96D \N \N \N 231242584 5 2 \N \N 100 \N \N f f 0 \N 714688389 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 13781 2024-01-19 09:37:39.512 2021-11-27 07:02:17.796 LeviParksMWD \N \N \N 31182023 5 2 \N \N 100 \N \N f f 0 \N 981584845 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14202 2022-01-10 14:44:15.111 2022-08-07 06:56:27.246 DarrellGravesJNH \N \N \N 121766001 5 2 \N \N 100 \N \N f f 0 \N 2146318504 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14213 2022-11-16 19:15:52.344 2023-11-18 22:31:52.377 EileenPetersHJT \N \N \N 5933474 5 2 \N \N 100 \N \N f f 0 \N 1068085398 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14503 2022-09-04 04:25:49.769 2022-04-11 07:05:52.896 BrandyWright40G \N \N \N 170145798 5 2 \N \N 100 \N \N f f 0 \N 1877852841 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14731 2022-06-09 12:30:31.428 2022-04-11 18:55:28.816 AlejandraHaasE19 \N \N \N 230179851 5 2 \N \N 100 \N \N f f 0 \N 2032089223 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 14950 2021-11-16 06:40:33.238 2023-01-07 15:37:11.921 AnitaMedinaRZ5 \N \N \N 167206533 5 2 \N \N 100 \N \N f f 0 \N 1227755700 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17091 2022-01-16 22:25:53.097 2023-05-06 22:48:59.847 CaitlynKaiserSV6 \N \N \N 249981246 5 2 \N \N 100 \N \N f f 0 \N 1427802885 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 17693 2022-12-02 03:46:40.596 2022-03-07 12:48:02.275 ScottPatton5UO \N \N \N 63879889 5 2 \N \N 100 \N \N f f 0 \N 2312213701 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18630 2022-12-07 12:40:27.717 2021-10-02 19:59:01.358 SydneyBennettJ5P \N \N \N 231587504 5 2 \N \N 100 \N \N f f 0 \N 738957680 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18769 2023-04-03 10:37:22.783 2023-10-29 17:58:10.907 AngieStoutKVF \N \N \N 236169459 5 2 \N \N 100 \N \N f f 0 \N 716587445 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 18865 2022-10-05 02:31:04.822 2021-10-19 03:33:44.326 JaniceFerrellJM9 \N \N \N 9415812 5 2 \N \N 100 \N \N f f 0 \N 2474816205 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19235 2023-03-24 08:48:38.352 2023-05-27 23:56:06.113 BrandiSingh0WU \N \N \N 100115648 5 2 \N \N 100 \N \N f f 0 \N 1097928909 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19259 2024-02-02 16:03:09.461 2021-11-04 01:08:17.612 LindseyFowlerYUM \N \N \N 102550263 5 2 \N \N 100 \N \N f f 0 \N 1342976030 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19289 2023-06-30 22:38:56.069 2023-07-25 10:07:03.072 JacquelineHarveyNTT \N \N \N 19242629 5 2 \N \N 100 \N \N f f 0 \N 405435679 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 19303 2022-10-23 08:07:26.628 2022-01-14 11:44:04.01 RobinMoyer14U \N \N \N 226349649 5 2 \N \N 100 \N \N f f 0 \N 2431915664 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20327 2022-06-10 17:02:00.459 2023-07-08 19:58:20.787 EugeneHebertBOA \N \N \N 148855450 5 2 \N \N 100 \N \N f f 0 \N 1244115101 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20376 2022-04-04 03:49:34.679 2022-10-06 23:23:51.827 TerrenceRobbinsNCI \N \N \N 106564496 5 2 \N \N 100 \N \N f f 0 \N 488412033 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 20730 2022-05-08 22:09:05.043 2022-12-05 17:55:59.251 JacksonJohnson7B0 \N \N \N 225865056 5 2 \N \N 100 \N \N f f 0 \N 178176434 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21194 2022-06-19 06:35:14.529 2022-09-02 20:17:08.834 BridgetBarryMX3 \N \N \N 219719064 5 2 \N \N 100 \N \N f f 0 \N 1640353959 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21201 2023-07-08 02:15:00.498 2023-06-25 19:48:57.922 RonaldMcgee87X \N \N \N 83231477 5 2 \N \N 100 \N \N f f 0 \N 823214970 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21238 2023-05-13 06:22:03.939 2022-10-16 04:37:19.48 PerryOneal2NR \N \N \N 63627475 5 2 \N \N 100 \N \N f f 0 \N 1709654285 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21357 2023-06-15 19:22:34.911 2023-08-29 22:16:37.421 KimberlyLarsenWM1 \N \N \N 12147661 5 2 \N \N 100 \N \N f f 0 \N 356842227 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21405 2023-05-08 17:15:52.519 2023-09-05 08:53:13.397 SuzanneKellyPN3 \N \N \N 95358738 5 2 \N \N 100 \N \N f f 0 \N 872889530 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21412 2022-06-07 15:36:29.889 2023-01-24 14:00:29.474 BlakeOliverWJ4 \N \N \N 221906135 5 2 \N \N 100 \N \N f f 0 \N 906745320 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21416 2023-12-13 22:01:56.179 2022-11-28 05:05:39.281 BiancaRiceXTB \N \N \N 239335096 5 2 \N \N 100 \N \N f f 0 \N 1849165013 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21446 2022-10-17 21:37:15.659 2023-07-10 15:13:27.508 CristinaWadeF2P \N \N \N 116669478 5 2 \N \N 100 \N \N f f 0 \N 732179607 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21469 2024-01-03 21:55:59.632 2023-08-05 14:57:04.916 JacobNielsenB26 \N \N \N 188087177 5 2 \N \N 100 \N \N f f 0 \N 1141629486 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 21588 2023-04-16 16:05:45.348 2022-12-17 09:44:10.368 MichelleWalshDUM \N \N \N 112398871 5 2 \N \N 100 \N \N f f 0 \N 1656727393 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f 8380 2022-05-04 02:09:47.331 2022-12-21 21:32:07.192 ChristopherEstradaVKV \N \N \N 160146991 5 2 \N \N 100 \N \N f f 0 \N 49013653 t t t t t t \N t \N 0 f f f USD f f \N \N \N t \N \N f \N f f f t f f f f 10 \N f \N \N \N t f t t t \N \N f \. -- -- Data for Name: verification_requests; Type: TABLE DATA; Schema: public; Owner: - -- COPY public.verification_requests (id, created_at, updated_at, identifier, token, expires) FROM stdin; \. -- -- Name: Donation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Donation_id_seq"', 2801, true); -- -- Name: Earn_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Earn_id_seq"', 168655, true); -- -- Name: Invoice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Invoice_id_seq"', 157745, true); -- -- Name: ItemForward_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."ItemForward_id_seq"', 1444, true); -- -- Name: Item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Item_id_seq"', 445105, true); -- -- Name: LnAuth_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."LnAuth_id_seq"', 67474, true); -- -- Name: LnWith_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."LnWith_id_seq"', 6747, true); -- -- Name: Log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Log_id_seq"', 392325, true); -- -- Name: Mention_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Mention_id_seq"', 23632, true); -- -- Name: Message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Message_id_seq"', 1, true); -- -- Name: OFAC_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."OFAC_id_seq"', 1211065, true); -- -- Name: Pin_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Pin_id_seq"', 178, true); -- -- Name: PollOption_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PollOption_id_seq"', 4879, true); -- -- Name: PollVote_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PollVote_id_seq"', 23432, true); -- -- Name: PushSubscription_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."PushSubscription_id_seq"', 1868, true); -- -- Name: ReferralAct_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."ReferralAct_id_seq"', 350311, true); -- -- Name: Snl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Snl_id_seq"', 1, true); -- -- Name: Streak_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Streak_id_seq"', 12940, true); -- -- Name: SubAct_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."SubAct_id_seq"', 3481, true); -- -- Name: Upload_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Upload_id_seq"', 18260, true); -- -- Name: Vote_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Vote_id_seq"', 6126164, true); -- -- Name: WalletLND_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletLND_id_seq"', 1, true); -- -- Name: WalletLightningAddress_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."WalletLightningAddress_id_seq"', 160, true); -- -- Name: Wallet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Wallet_id_seq"', 160, true); -- -- Name: Withdrawl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public."Withdrawl_id_seq"', 27610, true); -- -- Name: accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.accounts_id_seq', 3915, true); -- -- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.sessions_id_seq', 30, true); -- -- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.users_id_seq', 21627, true); -- -- Name: verification_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- SELECT pg_catalog.setval('public.verification_requests_id_seq', 22509, true); -- -- Name: job job_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.job ADD CONSTRAINT job_pkey PRIMARY KEY (id); -- -- Name: schedule schedule_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.schedule ADD CONSTRAINT schedule_pkey PRIMARY KEY (name); -- -- Name: subscription subscription_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.subscription ADD CONSTRAINT subscription_pkey PRIMARY KEY (event, name); -- -- Name: version version_pkey; Type: CONSTRAINT; Schema: pgboss; Owner: - -- ALTER TABLE ONLY pgboss.version ADD CONSTRAINT version_pkey PRIMARY KEY (version); -- -- Name: Arc Arc_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Arc" ADD CONSTRAINT "Arc_pkey" PRIMARY KEY ("fromId", "toId"); -- -- Name: Bookmark Bookmark_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Bookmark" ADD CONSTRAINT "Bookmark_pkey" PRIMARY KEY ("userId", "itemId"); -- -- Name: Donation Donation_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Donation" ADD CONSTRAINT "Donation_pkey" PRIMARY KEY (id); -- -- Name: Earn Earn_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Earn" ADD CONSTRAINT "Earn_pkey" PRIMARY KEY (id); -- -- Name: Invite Invite_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invite" ADD CONSTRAINT "Invite_pkey" PRIMARY KEY (id); -- -- Name: Invoice Invoice_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ADD CONSTRAINT "Invoice_pkey" PRIMARY KEY (id); -- -- Name: ItemForward ItemForward_pct_range_check; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."ItemForward" ADD CONSTRAINT "ItemForward_pct_range_check" CHECK (((pct >= 0) AND (pct <= 100))) NOT VALID; -- -- Name: ItemForward ItemForward_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ADD CONSTRAINT "ItemForward_pkey" PRIMARY KEY (id); -- -- Name: ItemUpload ItemUpload_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUpload" ADD CONSTRAINT "ItemUpload_pkey" PRIMARY KEY ("itemId", "uploadId"); -- -- Name: Item Item_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_pkey" PRIMARY KEY (id); -- -- Name: LnAuth LnAuth_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnAuth" ADD CONSTRAINT "LnAuth_pkey" PRIMARY KEY (id); -- -- Name: LnWith LnWith_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."LnWith" ADD CONSTRAINT "LnWith_pkey" PRIMARY KEY (id); -- -- Name: Log Log_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Log" ADD CONSTRAINT "Log_pkey" PRIMARY KEY (id); -- -- Name: Mention Mention_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ADD CONSTRAINT "Mention_pkey" PRIMARY KEY (id); -- -- Name: Message Message_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Message" ADD CONSTRAINT "Message_pkey" PRIMARY KEY (id); -- -- Name: MuteSub MuteSub_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."MuteSub" ADD CONSTRAINT "MuteSub_pkey" PRIMARY KEY ("userId", "subName"); -- -- Name: Mute Mute_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mute" ADD CONSTRAINT "Mute_pkey" PRIMARY KEY ("muterId", "mutedId"); -- -- Name: NostrRelay NostrRelay_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."NostrRelay" ADD CONSTRAINT "NostrRelay_pkey" PRIMARY KEY (addr); -- -- Name: OFAC OFAC_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."OFAC" ADD CONSTRAINT "OFAC_pkey" PRIMARY KEY (id); -- -- Name: Pin Pin_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Pin" ADD CONSTRAINT "Pin_pkey" PRIMARY KEY (id); -- -- Name: PollOption PollOption_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollOption" ADD CONSTRAINT "PollOption_pkey" PRIMARY KEY (id); -- -- Name: PollVote PollVote_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_pkey" PRIMARY KEY (id); -- -- Name: PushSubscription PushSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PushSubscription" ADD CONSTRAINT "PushSubscription_pkey" PRIMARY KEY (id); -- -- Name: ReferralAct ReferralAct_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ADD CONSTRAINT "ReferralAct_pkey" PRIMARY KEY (id); -- -- Name: Snl Snl_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Snl" ADD CONSTRAINT "Snl_pkey" PRIMARY KEY (id); -- -- Name: Streak Streak_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Streak" ADD CONSTRAINT "Streak_pkey" PRIMARY KEY (id); -- -- Name: SubAct SubAct_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ADD CONSTRAINT "SubAct_pkey" PRIMARY KEY (id); -- -- Name: SubSubscription SubSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubSubscription" ADD CONSTRAINT "SubSubscription_pkey" PRIMARY KEY ("userId", "subName"); -- -- Name: Sub Sub_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Sub" ADD CONSTRAINT "Sub_pkey" PRIMARY KEY (name); -- -- Name: ThreadSubscription ThreadSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ThreadSubscription" ADD CONSTRAINT "ThreadSubscription_pkey" PRIMARY KEY ("userId", "itemId"); -- -- Name: Upload Upload_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ADD CONSTRAINT "Upload_pkey" PRIMARY KEY (id); -- -- Name: UserNostrRelay UserNostrRelay_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserNostrRelay" ADD CONSTRAINT "UserNostrRelay_pkey" PRIMARY KEY ("userId", "nostrRelayAddr"); -- -- Name: UserSubscription UserSubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubscription" ADD CONSTRAINT "UserSubscription_pkey" PRIMARY KEY ("followerId", "followeeId"); -- -- Name: ItemAct Vote_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "Vote_pkey" PRIMARY KEY (id); -- -- Name: WalletLND WalletLND_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLND" ADD CONSTRAINT "WalletLND_pkey" PRIMARY KEY (id); -- -- Name: WalletLightningAddress WalletLightningAddress_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLightningAddress" ADD CONSTRAINT "WalletLightningAddress_pkey" PRIMARY KEY (id); -- -- Name: Wallet Wallet_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Wallet" ADD CONSTRAINT "Wallet_pkey" PRIMARY KEY (id); -- -- Name: Withdrawl Withdrawl_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ADD CONSTRAINT "Withdrawl_pkey" PRIMARY KEY (id); -- -- Name: _prisma_migrations _prisma_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public._prisma_migrations ADD CONSTRAINT _prisma_migrations_pkey PRIMARY KEY (id); -- -- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.accounts ADD CONSTRAINT accounts_pkey PRIMARY KEY (id); -- -- Name: Sub baseCost_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Sub" ADD CONSTRAINT "baseCost_positive" CHECK (("baseCost" >= 0)) NOT VALID; -- -- Name: Item boost_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT boost_positive CHECK ((boost >= 0)) NOT VALID; -- -- Name: Item bounty; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT bounty CHECK (((bounty IS NULL) OR (bounty > 0))) NOT VALID; -- -- Name: users freeComments_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "freeComments_positive" CHECK (("freeComments" >= 0)) NOT VALID; -- -- Name: users freePosts_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "freePosts_positive" CHECK (("freePosts" >= 0)) NOT VALID; -- -- Name: Invite gift_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invite" ADD CONSTRAINT gift_positive CHECK (((gift IS NULL) OR (gift >= 0))) NOT VALID; -- -- Name: Upload height_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Upload" ADD CONSTRAINT height_positive CHECK (((height IS NULL) OR (height >= 0))) NOT VALID; -- -- Name: Invite limit_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invite" ADD CONSTRAINT limit_positive CHECK ((("limit" IS NULL) OR ("limit" >= 0))) NOT VALID; -- -- Name: Item maxBid_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "maxBid_positive" CHECK ((("maxBid" IS NULL) OR ("maxBid" >= 0))) NOT VALID; -- -- Name: Item maxSalary_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "maxSalary_positive" CHECK ((("maxSalary" IS NULL) OR ("maxSalary" >= 0))) NOT VALID; -- -- Name: Item minSalary_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "minSalary_positive" CHECK ((("minSalary" IS NULL) OR ("minSalary" >= 0))) NOT VALID; -- -- Name: Withdrawl msatsFeePaid_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsFeePaid_positive" CHECK ((("msatsFeePaid" IS NULL) OR ("msatsFeePaid" >= 0))) NOT VALID; -- -- Name: Withdrawl msatsFeePaying_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsFeePaying_positive" CHECK (("msatsFeePaying" >= 0)) NOT VALID; -- -- Name: Withdrawl msatsPaid_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsPaid_positive" CHECK ((("msatsPaid" IS NULL) OR ("msatsPaid" >= 0))) NOT VALID; -- -- Name: Withdrawl msatsPaying_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Withdrawl" ADD CONSTRAINT "msatsPaying_positive" CHECK (("msatsPaying" >= 0)) NOT VALID; -- -- Name: Invoice msatsReceived_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invoice" ADD CONSTRAINT "msatsReceived_positive" CHECK ((("msatsReceived" IS NULL) OR ("msatsReceived" >= 0))) NOT VALID; -- -- Name: Invoice msatsRequested_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Invoice" ADD CONSTRAINT "msatsRequested_positive" CHECK (("msatsRequested" >= 0)) NOT VALID; -- -- Name: Earn msats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Earn" ADD CONSTRAINT msats_positive CHECK ((msats >= 0)) NOT VALID; -- -- Name: users msats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT msats_positive CHECK ((msats >= 0)) NOT VALID; -- -- Name: Item pollCost_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT "pollCost_positive" CHECK ((("pollCost" IS NULL) OR ("pollCost" >= 0))) NOT VALID; -- -- Name: Sub rewardsPct; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Sub" ADD CONSTRAINT "rewardsPct" CHECK ((("rewardsPct" >= 0) AND ("rewardsPct" <= 100))) NOT VALID; -- -- Name: ItemAct sats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."ItemAct" ADD CONSTRAINT sats_positive CHECK ((msats >= 0)) NOT VALID; -- -- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.sessions ADD CONSTRAINT sessions_pkey PRIMARY KEY (id); -- -- Name: Upload size_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Upload" ADD CONSTRAINT size_positive CHECK ((size >= 0)) NOT VALID; -- -- Name: users stackedMsats_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "stackedMsats_positive" CHECK (("stackedMsats" >= 0)) NOT VALID; -- -- Name: users tipDefault_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public.users ADD CONSTRAINT "tipDefault_positive" CHECK (("tipDefault" >= 0)) NOT VALID; -- -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: verification_requests verification_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.verification_requests ADD CONSTRAINT verification_requests_pkey PRIMARY KEY (id); -- -- Name: Item weighted_down_votes_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT weighted_down_votes_positive CHECK (("weightedDownVotes" >= (0)::double precision)) NOT VALID; -- -- Name: Item weighted_votes_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Item" ADD CONSTRAINT weighted_votes_positive CHECK (("weightedVotes" >= (0)::double precision)) NOT VALID; -- -- Name: Upload width_positive; Type: CHECK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE public."Upload" ADD CONSTRAINT width_positive CHECK (((width IS NULL) OR (width >= 0))) NOT VALID; -- -- Name: archive_archivedon_idx; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX archive_archivedon_idx ON pgboss.archive USING btree (archivedon); -- -- Name: archive_id_idx; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX archive_id_idx ON pgboss.archive USING btree (id); -- -- Name: job_fetch; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX job_fetch ON pgboss.job USING btree (name text_pattern_ops, startafter) WHERE (state < 'active'::pgboss.job_state); -- -- Name: job_name; Type: INDEX; Schema: pgboss; Owner: - -- CREATE INDEX job_name ON pgboss.job USING btree (name text_pattern_ops); -- -- Name: job_singleton_queue; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singleton_queue ON pgboss.job USING btree (name, singletonkey) WHERE ((state < 'active'::pgboss.job_state) AND (singletonon IS NULL) AND (singletonkey ~~ '\_\_pgboss\_\_singleton\_queue%'::text)); -- -- Name: job_singletonkey; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singletonkey ON pgboss.job USING btree (name, singletonkey) WHERE ((state < 'completed'::pgboss.job_state) AND (singletonon IS NULL) AND (NOT (singletonkey ~~ '\_\_pgboss\_\_singleton\_queue%'::text))); -- -- Name: job_singletonkeyon; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singletonkeyon ON pgboss.job USING btree (name, singletonon, singletonkey) WHERE (state < 'expired'::pgboss.job_state); -- -- Name: job_singletonon; Type: INDEX; Schema: pgboss; Owner: - -- CREATE UNIQUE INDEX job_singletonon ON pgboss.job USING btree (name, singletonon) WHERE ((state < 'expired'::pgboss.job_state) AND (singletonkey IS NULL)); -- -- Name: Arc_toId_fromId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Arc_toId_fromId_idx" ON public."Arc" USING btree ("toId", "fromId"); -- -- Name: Bookmark.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Bookmark.created_at_index" ON public."Bookmark" USING btree (created_at); -- -- Name: Donation.created_at_day_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Donation.created_at_day_index" ON public."Donation" USING btree (date_trunc('day'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: Earn.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Earn.created_at_index" ON public."Earn" USING btree (created_at); -- -- Name: Earn.created_at_userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Earn.created_at_userId_index" ON public."Earn" USING btree (created_at, "userId"); -- -- Name: Earn.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Earn.userId_index" ON public."Earn" USING btree ("userId"); -- -- Name: Invite.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invite.created_at_index" ON public."Invite" USING btree (created_at); -- -- Name: Invite.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invite.userId_index" ON public."Invite" USING btree ("userId"); -- -- Name: Invoice.confirmedIndex_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice.confirmedIndex_index" ON public."Invoice" USING btree ("confirmedIndex"); -- -- Name: Invoice.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice.created_at_index" ON public."Invoice" USING btree (created_at); -- -- Name: Invoice.hash_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Invoice.hash_unique" ON public."Invoice" USING btree (hash); -- -- Name: Invoice.preimage_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Invoice.preimage_unique" ON public."Invoice" USING btree (preimage); -- -- Name: Invoice.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Invoice.userId_index" ON public."Invoice" USING btree ("userId"); -- -- Name: Item.bio_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.bio_index" ON public."Item" USING btree (bio); -- -- Name: Item.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.created_at_index" ON public."Item" USING btree (created_at); -- -- Name: Item.freebie_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.freebie_index" ON public."Item" USING btree (freebie); -- -- Name: Item.maxBid_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.maxBid_index" ON public."Item" USING btree ("maxBid"); -- -- Name: Item.noteId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Item.noteId_unique" ON public."Item" USING btree ("noteId"); -- -- Name: Item.parentId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.parentId_index" ON public."Item" USING btree ("parentId"); -- -- Name: Item.path_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.path_index" ON public."Item" USING gist (path public.gist_ltree_ops (siglen='2024')); -- -- Name: Item.path_index0; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.path_index0" ON public."Item" USING gist (path); -- -- Name: Item.pinId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.pinId_index" ON public."Item" USING btree ("pinId"); -- -- Name: Item.rootId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.rootId_index" ON public."Item" USING btree ("rootId"); -- -- Name: Item.statusUpdatedAt_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.statusUpdatedAt_index" ON public."Item" USING btree ("statusUpdatedAt"); -- -- Name: Item.status_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.status_index" ON public."Item" USING btree (status); -- -- Name: Item.subName_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.subName_index" ON public."Item" USING btree ("subName"); -- -- Name: Item.sumVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.sumVotes_index" ON public."Item" USING btree ((("weightedVotes" - "weightedDownVotes"))); -- -- Name: Item.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.userId_index" ON public."Item" USING btree ("userId"); -- -- Name: Item.weightedDownVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.weightedDownVotes_index" ON public."Item" USING btree ("weightedDownVotes"); -- -- Name: Item.weightedVotes_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item.weightedVotes_index" ON public."Item" USING btree ("weightedVotes"); -- -- Name: ItemAct.act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.act_index" ON public."ItemAct" USING btree (act); -- -- Name: ItemAct.created_at_day_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_day_index" ON public."ItemAct" USING btree (date_trunc('day'::text, timezone('America/Chicago'::text, timezone('UTC'::text, created_at)))); -- -- Name: ItemAct.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_index" ON public."ItemAct" USING btree (created_at); -- -- Name: ItemAct.created_at_itemId_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.created_at_itemId_act_index" ON public."ItemAct" USING btree (created_at, "itemId", act); -- -- Name: ItemAct.itemId_created_at_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.itemId_created_at_act_index" ON public."ItemAct" USING btree ("itemId", created_at, act); -- -- Name: ItemAct.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.itemId_index" ON public."ItemAct" USING btree ("itemId"); -- -- Name: ItemAct.itemId_userId_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.itemId_userId_act_index" ON public."ItemAct" USING btree ("itemId", "userId", act); -- -- Name: ItemAct.userId_created_at_act_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.userId_created_at_act_index" ON public."ItemAct" USING btree ("userId", created_at, act); -- -- Name: ItemAct.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemAct.userId_index" ON public."ItemAct" USING btree ("userId"); -- -- Name: ItemForward.createdAt_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemForward.createdAt_index" ON public."ItemForward" USING btree (created_at); -- -- Name: ItemForward.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemForward.itemId_index" ON public."ItemForward" USING btree ("itemId"); -- -- Name: ItemForward.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemForward.userId_index" ON public."ItemForward" USING btree ("userId"); -- -- Name: ItemUpload_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUpload_created_at_idx" ON public."ItemUpload" USING btree (created_at); -- -- Name: ItemUpload_itemId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUpload_itemId_idx" ON public."ItemUpload" USING btree ("itemId"); -- -- Name: ItemUpload_uploadId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ItemUpload_uploadId_idx" ON public."ItemUpload" USING btree ("uploadId"); -- -- Name: Item_uploadId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Item_uploadId_idx" ON public."Item" USING btree ("uploadId"); -- -- Name: LnAuth.k1_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "LnAuth.k1_unique" ON public."LnAuth" USING btree (k1); -- -- Name: LnWith.k1_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "LnWith.k1_unique" ON public."LnWith" USING btree (k1); -- -- Name: Log.name_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Log.name_index" ON public."Log" USING btree (created_at, name); -- -- Name: Mention.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mention.created_at_index" ON public."Mention" USING btree (created_at); -- -- Name: Mention.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mention.itemId_index" ON public."Mention" USING btree ("itemId"); -- -- Name: Mention.itemId_userId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Mention.itemId_userId_unique" ON public."Mention" USING btree ("itemId", "userId"); -- -- Name: Mention.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mention.userId_index" ON public."Mention" USING btree ("userId"); -- -- Name: MuteSub_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "MuteSub_created_at_idx" ON public."MuteSub" USING btree (created_at); -- -- Name: MuteSub_subName_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "MuteSub_subName_idx" ON public."MuteSub" USING btree ("subName"); -- -- Name: Mute_mutedId_muterId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Mute_mutedId_muterId_idx" ON public."Mute" USING btree ("mutedId", "muterId"); -- -- Name: OFAC_start_ip_end_ip_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "OFAC_start_ip_end_ip_idx" ON public."OFAC" USING gist (public.iprange("startIP", "endIP")); -- -- Name: PollOption.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollOption.itemId_index" ON public."PollOption" USING btree ("itemId"); -- -- Name: PollVote.itemId_userId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "PollVote.itemId_userId_unique" ON public."PollVote" USING btree ("itemId", "userId"); -- -- Name: PollVote.pollOptionId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollVote.pollOptionId_index" ON public."PollVote" USING btree ("pollOptionId"); -- -- Name: PollVote.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PollVote.userId_index" ON public."PollVote" USING btree ("userId"); -- -- Name: PushSubscription.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "PushSubscription.userId_index" ON public."PushSubscription" USING btree ("userId"); -- -- Name: ReferralAct_itemActId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ReferralAct_itemActId_idx" ON public."ReferralAct" USING btree ("itemActId"); -- -- Name: ReferralAct_referrerId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ReferralAct_referrerId_idx" ON public."ReferralAct" USING btree ("referrerId"); -- -- Name: Streak.startedAt_userId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "Streak.startedAt_userId_unique" ON public."Streak" USING btree ("startedAt", "userId"); -- -- Name: Streak.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Streak.userId_index" ON public."Streak" USING btree ("userId"); -- -- Name: SubAct_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_created_at_idx" ON public."SubAct" USING btree (created_at); -- -- Name: SubAct_created_at_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_created_at_type_idx" ON public."SubAct" USING btree (created_at, type); -- -- Name: SubAct_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_type_idx" ON public."SubAct" USING btree (type); -- -- Name: SubAct_userId_created_at_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_userId_created_at_type_idx" ON public."SubAct" USING btree ("userId", created_at, type); -- -- Name: SubAct_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_userId_idx" ON public."SubAct" USING btree ("userId"); -- -- Name: SubAct_userId_type_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubAct_userId_type_idx" ON public."SubAct" USING btree ("userId", type); -- -- Name: SubSubscription.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "SubSubscription.created_at_index" ON public."SubSubscription" USING btree (created_at); -- -- Name: Sub_created_at_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_created_at_idx" ON public."Sub" USING btree (created_at); -- -- Name: Sub_parentName_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_parentName_idx" ON public."Sub" USING btree ("parentName"); -- -- Name: Sub_path_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_path_idx" ON public."Sub" USING gist (path public.gist_ltree_ops (siglen='2024')); -- -- Name: Sub_statusUpdatedAt_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_statusUpdatedAt_idx" ON public."Sub" USING btree ("statusUpdatedAt"); -- -- Name: Sub_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Sub_userId_idx" ON public."Sub" USING btree ("userId"); -- -- Name: ThreadSubscription.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "ThreadSubscription.created_at_index" ON public."ThreadSubscription" USING btree (created_at); -- -- Name: Upload.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Upload.created_at_index" ON public."Upload" USING btree (created_at); -- -- Name: Upload.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Upload.userId_index" ON public."Upload" USING btree ("userId"); -- -- Name: UserSubscription.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "UserSubscription.created_at_index" ON public."UserSubscription" USING btree (created_at); -- -- Name: UserSubscription.followee_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "UserSubscription.followee_index" ON public."UserSubscription" USING btree ("followeeId"); -- -- Name: UserSubscription.follower_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "UserSubscription.follower_index" ON public."UserSubscription" USING btree ("followerId"); -- -- Name: Vote.itemId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Vote.itemId_index" ON public."ItemAct" USING btree ("itemId"); -- -- Name: Vote.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Vote.userId_index" ON public."ItemAct" USING btree ("userId"); -- -- Name: WalletLND_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletLND_walletId_key" ON public."WalletLND" USING btree ("walletId"); -- -- Name: WalletLightningAddress_walletId_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "WalletLightningAddress_walletId_key" ON public."WalletLightningAddress" USING btree ("walletId"); -- -- Name: Wallet_userId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Wallet_userId_idx" ON public."Wallet" USING btree ("userId"); -- -- Name: Withdrawl.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl.created_at_index" ON public."Withdrawl" USING btree (created_at); -- -- Name: Withdrawl.userId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "Withdrawl.userId_index" ON public."Withdrawl" USING btree ("userId"); -- -- Name: accounts.user_id_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "accounts.user_id_index" ON public.accounts USING btree (user_id); -- -- Name: accounts_provider_id_provider_account_id_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX accounts_provider_id_provider_account_id_key ON public.accounts USING btree (provider_id, provider_account_id); -- -- Name: hot_tf_zap_rank_personal_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX hot_tf_zap_rank_personal_view_idx ON public.zap_rank_personal_view USING btree ("viewerId", tf_hot_score DESC NULLS LAST, id DESC); -- -- Name: item_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX item_growth_days_idx ON public.item_growth_days USING btree (t); -- -- Name: item_growth_hour_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX item_growth_hour_idx ON public.item_growth_hours USING btree (t); -- -- Name: item_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX item_growth_months_idx ON public.item_growth_months USING btree (t); -- -- Name: reg_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX reg_growth_days_idx ON public.reg_growth_days USING btree (t); -- -- Name: reg_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX reg_growth_hours_idx ON public.reg_growth_hours USING btree (t); -- -- Name: reg_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX reg_growth_months_idx ON public.reg_growth_months USING btree (t); -- -- Name: sat_rank_tender_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sat_rank_tender_view_idx ON public.sat_rank_tender_view USING btree (rank); -- -- Name: sat_rank_wwm_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sat_rank_wwm_view_idx ON public.sat_rank_wwm_view USING btree (rank); -- -- Name: sessions.session_token_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "sessions.session_token_unique" ON public.sessions USING btree (session_token); -- -- Name: spender_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spender_growth_days_idx ON public.spender_growth_days USING btree (t, "userId", type); -- -- Name: spender_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spender_growth_hours_idx ON public.spender_growth_hours USING btree (t, "userId", type); -- -- Name: spender_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spender_growth_months_idx ON public.spender_growth_months USING btree (t, "userId", type); -- -- Name: spending_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spending_growth_days_idx ON public.spending_growth_days USING btree (t); -- -- Name: spending_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spending_growth_hours_idx ON public.spending_growth_hours USING btree (t); -- -- Name: spending_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX spending_growth_months_idx ON public.spending_growth_months USING btree (t); -- -- Name: stackers_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stackers_growth_days_idx ON public.stackers_growth_days USING btree (t, "userId", type); -- -- Name: stackers_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stackers_growth_hours_idx ON public.stackers_growth_hours USING btree (t, "userId", type); -- -- Name: stackers_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stackers_growth_months_idx ON public.stackers_growth_months USING btree (t, "userId", type); -- -- Name: stacking_growth_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stacking_growth_days_idx ON public.stacking_growth_days USING btree (t); -- -- Name: stacking_growth_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stacking_growth_hours_idx ON public.stacking_growth_hours USING btree (t); -- -- Name: stacking_growth_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX stacking_growth_months_idx ON public.stacking_growth_months USING btree (t); -- -- Name: sub_stats_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sub_stats_days_idx ON public.sub_stats_days USING btree (t, sub_name); -- -- Name: sub_stats_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sub_stats_hours_idx ON public.sub_stats_hours USING btree (t, sub_name); -- -- Name: sub_stats_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX sub_stats_months_idx ON public.sub_stats_months USING btree (t, sub_name); -- -- Name: top_tf_zap_rank_personal_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX top_tf_zap_rank_personal_view_idx ON public.zap_rank_personal_view USING btree ("viewerId", tf_top_score DESC NULLS LAST, id DESC); -- -- Name: user_stats_days_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_stats_days_idx ON public.user_stats_days USING btree (t, id); -- -- Name: user_stats_hours_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_stats_hours_idx ON public.user_stats_hours USING btree (t, id); -- -- Name: user_stats_months_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX user_stats_months_idx ON public.user_stats_months USING btree (t, id); -- -- Name: users.created_at_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users.created_at_index" ON public.users USING btree (created_at); -- -- Name: users.email_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.email_unique" ON public.users USING btree (email); -- -- Name: users.inviteId_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users.inviteId_index" ON public.users USING btree ("inviteId"); -- -- Name: users.name_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.name_unique" ON public.users USING btree (name); -- -- Name: users.nostrAuthPubkey_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.nostrAuthPubkey_unique" ON public.users USING btree ("nostrAuthPubkey"); -- -- Name: users.pubkey_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.pubkey_unique" ON public.users USING btree (pubkey); -- -- Name: users.slashtagId_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "users.slashtagId_unique" ON public.users USING btree ("slashtagId"); -- -- Name: users_photoId_idx; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX "users_photoId_idx" ON public.users USING btree ("photoId"); -- -- Name: verification_requests.token_unique; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX "verification_requests.token_unique" ON public.verification_requests USING btree (token); -- -- Name: verification_requests_identifier_token_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX verification_requests_identifier_token_key ON public.verification_requests USING btree (identifier, token); -- -- Name: zap_rank_personal_view_viewer_id_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX zap_rank_personal_view_viewer_id_idx ON public.zap_rank_personal_view USING btree ("viewerId", id); -- -- Name: zap_rank_tender_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX zap_rank_tender_view_idx ON public.zap_rank_tender_view USING btree (rank); -- -- Name: zap_rank_wwm_view_idx; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX zap_rank_wwm_view_idx ON public.zap_rank_wwm_view USING btree (rank); -- -- Name: Item index_item; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER index_item AFTER INSERT OR UPDATE ON public."Item" FOR EACH ROW EXECUTE FUNCTION public.index_item(); -- -- Name: ItemForward item_forward_pct_total_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE CONSTRAINT TRIGGER item_forward_pct_total_trigger AFTER INSERT OR UPDATE ON public."ItemForward" DEFERRABLE INITIALLY DEFERRED FOR EACH ROW EXECUTE FUNCTION public.item_forward_pct_total_trigger_func(); -- -- Name: users name_tgr; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER name_tgr BEFORE INSERT ON public.users FOR EACH ROW EXECUTE FUNCTION public.assign_name(); -- -- Name: Item ncomments_after_comment_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER ncomments_after_comment_trigger AFTER INSERT ON public."Item" FOR EACH ROW EXECUTE FUNCTION public.ncomments_after_comment(); -- -- Name: Item path_tgr; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER path_tgr BEFORE INSERT OR UPDATE ON public."Item" FOR EACH ROW EXECUTE FUNCTION public.update_item_path(); -- -- Name: Pin pin_delete_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER pin_delete_trigger AFTER DELETE ON public."Pin" FOR EACH ROW EXECUTE FUNCTION public.pin_delete_trigger_func(); -- -- Name: Pin pin_upsert_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER pin_upsert_trigger AFTER INSERT OR UPDATE ON public."Pin" FOR EACH ROW EXECUTE FUNCTION public.pin_upsert_trigger_func(); -- -- Name: Sub sub_path_tgr; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER sub_path_tgr BEFORE INSERT OR UPDATE ON public."Sub" FOR EACH ROW EXECUTE FUNCTION public.update_sub_path(); -- -- Name: Item timestamp_item_on_insert; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER timestamp_item_on_insert AFTER INSERT ON public."Item" FOR EACH ROW EXECUTE FUNCTION public.timestamp_item_on_insert(); -- -- Name: Sub update_territory_billing_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER update_territory_billing_trigger AFTER INSERT OR UPDATE ON public."Sub" FOR EACH ROW WHEN ((new.status = 'ACTIVE'::public."Status")) EXECUTE FUNCTION public.update_territory_billing(); -- -- Name: users user_auto_withdraw_trigger; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER user_auto_withdraw_trigger AFTER UPDATE ON public.users FOR EACH ROW WHEN (((new."autoWithdrawThreshold" IS NOT NULL) AND (new."autoWithdrawMaxFeePercent" IS NOT NULL) AND (((new.msats - (new."autoWithdrawThreshold" * 1000)))::numeric >= (((new."autoWithdrawThreshold" * 1000))::numeric * 0.1)))) EXECUTE FUNCTION public.user_auto_withdraw(); -- -- Name: users user_streak; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER user_streak AFTER UPDATE ON public.users FOR EACH ROW WHEN ((new.msats < old.msats)) EXECUTE FUNCTION public.user_streak_check(); -- -- Name: WalletLightningAddress wallet_lnaddr_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_lnaddr_as_jsonb AFTER INSERT OR UPDATE ON public."WalletLightningAddress" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: WalletLND wallet_lnd_as_jsonb; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER wallet_lnd_as_jsonb AFTER INSERT OR UPDATE ON public."WalletLND" FOR EACH ROW EXECUTE FUNCTION public.wallet_wallet_type_as_jsonb(); -- -- Name: Arc Arc_fromId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Arc" ADD CONSTRAINT "Arc_fromId_fkey" FOREIGN KEY ("fromId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Arc Arc_toId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Arc" ADD CONSTRAINT "Arc_toId_fkey" FOREIGN KEY ("toId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Bookmark Bookmark_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Bookmark" ADD CONSTRAINT "Bookmark_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Bookmark Bookmark_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Bookmark" ADD CONSTRAINT "Bookmark_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Donation Donation_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Donation" ADD CONSTRAINT "Donation_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Earn Earn_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Earn" ADD CONSTRAINT "Earn_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Invite Invite_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invite" ADD CONSTRAINT "Invite_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Invoice Invoice_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Invoice" ADD CONSTRAINT "Invoice_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemAct ItemAct_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "ItemAct_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemAct ItemAct_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemAct" ADD CONSTRAINT "ItemAct_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemForward ItemForward_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ADD CONSTRAINT "ItemForward_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemForward ItemForward_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemForward" ADD CONSTRAINT "ItemForward_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemUpload ItemUpload_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUpload" ADD CONSTRAINT "ItemUpload_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ItemUpload ItemUpload_uploadId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ItemUpload" ADD CONSTRAINT "ItemUpload_uploadId_fkey" FOREIGN KEY ("uploadId") REFERENCES public."Upload"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Item Item_parentId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_parentId_fkey" FOREIGN KEY ("parentId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_pinId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_pinId_fkey" FOREIGN KEY ("pinId") REFERENCES public."Pin"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_rootId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_rootId_fkey" FOREIGN KEY ("rootId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Item Item_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Item Item_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Item" ADD CONSTRAINT "Item_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mention Mention_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ADD CONSTRAINT "Mention_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mention Mention_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mention" ADD CONSTRAINT "Mention_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Message Message_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Message" ADD CONSTRAINT "Message_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: MuteSub MuteSub_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."MuteSub" ADD CONSTRAINT "MuteSub_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: MuteSub MuteSub_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."MuteSub" ADD CONSTRAINT "MuteSub_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mute Mute_mutedId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mute" ADD CONSTRAINT "Mute_mutedId_fkey" FOREIGN KEY ("mutedId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Mute Mute_muterId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Mute" ADD CONSTRAINT "Mute_muterId_fkey" FOREIGN KEY ("muterId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollOption PollOption_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollOption" ADD CONSTRAINT "PollOption_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollVote PollVote_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollVote PollVote_pollOptionId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_pollOptionId_fkey" FOREIGN KEY ("pollOptionId") REFERENCES public."PollOption"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PollVote PollVote_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PollVote" ADD CONSTRAINT "PollVote_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: PushSubscription PushSubscription_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."PushSubscription" ADD CONSTRAINT "PushSubscription_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ReferralAct ReferralAct_itemActId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ADD CONSTRAINT "ReferralAct_itemActId_fkey" FOREIGN KEY ("itemActId") REFERENCES public."ItemAct"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ReferralAct ReferralAct_referrerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ReferralAct" ADD CONSTRAINT "ReferralAct_referrerId_fkey" FOREIGN KEY ("referrerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Streak Streak_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Streak" ADD CONSTRAINT "Streak_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubAct SubAct_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ADD CONSTRAINT "SubAct_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubAct SubAct_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubAct" ADD CONSTRAINT "SubAct_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubSubscription SubSubscription_subName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubSubscription" ADD CONSTRAINT "SubSubscription_subName_fkey" FOREIGN KEY ("subName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: SubSubscription SubSubscription_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."SubSubscription" ADD CONSTRAINT "SubSubscription_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Sub Sub_parentName_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Sub" ADD CONSTRAINT "Sub_parentName_fkey" FOREIGN KEY ("parentName") REFERENCES public."Sub"(name) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: Sub Sub_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Sub" ADD CONSTRAINT "Sub_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ThreadSubscription ThreadSubscription_itemId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ThreadSubscription" ADD CONSTRAINT "ThreadSubscription_itemId_fkey" FOREIGN KEY ("itemId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: ThreadSubscription ThreadSubscription_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."ThreadSubscription" ADD CONSTRAINT "ThreadSubscription_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Upload Upload_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Upload" ADD CONSTRAINT "Upload_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserNostrRelay UserNostrRelay_nostrRelayAddr_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserNostrRelay" ADD CONSTRAINT "UserNostrRelay_nostrRelayAddr_fkey" FOREIGN KEY ("nostrRelayAddr") REFERENCES public."NostrRelay"(addr) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserNostrRelay UserNostrRelay_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserNostrRelay" ADD CONSTRAINT "UserNostrRelay_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserSubscription UserSubscription_followeeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubscription" ADD CONSTRAINT "UserSubscription_followeeId_fkey" FOREIGN KEY ("followeeId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: UserSubscription UserSubscription_followerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."UserSubscription" ADD CONSTRAINT "UserSubscription_followerId_fkey" FOREIGN KEY ("followerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLND WalletLND_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLND" ADD CONSTRAINT "WalletLND_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: WalletLightningAddress WalletLightningAddress_walletId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."WalletLightningAddress" ADD CONSTRAINT "WalletLightningAddress_walletId_fkey" FOREIGN KEY ("walletId") REFERENCES public."Wallet"(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Wallet Wallet_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Wallet" ADD CONSTRAINT "Wallet_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: Withdrawl Withdrawl_userId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public."Withdrawl" ADD CONSTRAINT "Withdrawl_userId_fkey" FOREIGN KEY ("userId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: accounts accounts_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.accounts ADD CONSTRAINT accounts_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: sessions sessions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.sessions ADD CONSTRAINT sessions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: users users_bioId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_bioId_fkey" FOREIGN KEY ("bioId") REFERENCES public."Item"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: users users_inviteId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_inviteId_fkey" FOREIGN KEY ("inviteId") REFERENCES public."Invite"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: users users_photoId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_photoId_fkey" FOREIGN KEY ("photoId") REFERENCES public."Upload"(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: users users_referrerId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.users ADD CONSTRAINT "users_referrerId_fkey" FOREIGN KEY ("referrerId") REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: item_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.item_growth_days; -- -- Name: item_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.item_growth_hours; -- -- Name: item_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.item_growth_months; -- -- Name: reg_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.reg_growth_days; -- -- Name: reg_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.reg_growth_hours; -- -- Name: reg_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.reg_growth_months; -- -- Name: sat_rank_tender_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sat_rank_tender_view; -- -- Name: sat_rank_wwm_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sat_rank_wwm_view; -- -- Name: spender_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spender_growth_days; -- -- Name: spender_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spender_growth_hours; -- -- Name: spender_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spender_growth_months; -- -- Name: spending_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spending_growth_days; -- -- Name: spending_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spending_growth_hours; -- -- Name: spending_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.spending_growth_months; -- -- Name: stackers_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stackers_growth_days; -- -- Name: stackers_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stackers_growth_hours; -- -- Name: stackers_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stackers_growth_months; -- -- Name: stacking_growth_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stacking_growth_days; -- -- Name: stacking_growth_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stacking_growth_hours; -- -- Name: stacking_growth_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.stacking_growth_months; -- -- Name: sub_stats_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sub_stats_days; -- -- Name: sub_stats_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sub_stats_hours; -- -- Name: sub_stats_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.sub_stats_months; -- -- Name: user_stats_days; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_stats_days; -- -- Name: user_stats_hours; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_stats_hours; -- -- Name: user_stats_months; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.user_stats_months; -- -- Name: zap_rank_personal_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.zap_rank_personal_view; -- -- Name: zap_rank_tender_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.zap_rank_tender_view; -- -- Name: zap_rank_wwm_view; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: - -- REFRESH MATERIALIZED VIEW public.zap_rank_wwm_view; -- -- PostgreSQL database dump complete -- CREATE OR REPLACE FUNCTION timewarp() RETURNS VOID LANGUAGE plpgsql AS $$ DECLARE r RECORD; max_timestamp TIMESTAMP; interval_to_add INTERVAL; BEGIN FOR r IN SELECT c.table_schema, c.table_name, c.column_name FROM information_schema.columns c JOIN information_schema.tables t ON c.table_schema = t.table_schema AND c.table_name = t.table_name WHERE c.data_type IN ('timestamp without time zone', 'timestamp with time zone') AND c.table_schema NOT IN ('pg_catalog', 'information_schema') -- Exclude system schemas AND t.table_type = 'BASE TABLE' -- Ensure targeting only user-defined tables (excluding views) AND t.table_schema NOT LIKE 'pg_%' -- Exclude other potential PostgreSQL system schemas LOOP -- Calculate the maximum value in the column EXECUTE format('SELECT max(%I) FROM %I.%I', r.column_name, r.table_schema, r.table_name) INTO max_timestamp; -- If there's a maximum value, calculate the interval and update the column IF max_timestamp IS NOT NULL THEN interval_to_add := now() - max_timestamp; EXECUTE format('UPDATE %I.%I SET %I = %I + %L', r.table_schema, r.table_name, r.column_name, r.column_name, interval_to_add); END IF; END LOOP; END; $$; SELECT timewarp(); UPDATE "Item" p SET (ncomments, "commentMsats") = (SELECT COALESCE(count(*), 0), COALESCE(sum(msats), 0) FROM "Item" c WHERE c.path <@ p.path AND p.id <> c.id); CREATE OR REPLACE FUNCTION RefreshAllMaterializedViews(schema_arg TEXT DEFAULT 'public') RETURNS INT AS $$ DECLARE r RECORD; BEGIN RAISE NOTICE 'Refreshing materialized view in schema %', schema_arg; FOR r IN SELECT matviewname FROM pg_matviews WHERE schemaname = schema_arg LOOP RAISE NOTICE 'Refreshing %.%', schema_arg, r.matviewname; EXECUTE 'REFRESH MATERIALIZED VIEW ' || schema_arg || '.' || r.matviewname; END LOOP; RETURN 1; END $$ LANGUAGE plpgsql; SELECT RefreshAllMaterializedViews(); INSERT INTO pgboss.job (name) VALUES ('indexAllItems');